[
  {
    "path": ".dockerignore",
    "content": ".dockerignore\n**.pyc\n**/__pycache__\n.gitignore\n.git\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM python:3.6.3-jessie\n\nENV LC_ALL=C.UTF-8\nENV LANG=C.UTF-8\n\nENV PATH /usr/local/nvidia/bin/:$PATH\nENV LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64\n\n# Tell nvidia-docker the driver spec that we need as well as to\n# use all available devices, which are mounted at /usr/local/nvidia.\n# The LABEL supports an older version of nvidia-docker, the env\n# variables a newer one.\nENV NVIDIA_VISIBLE_DEVICES all\nENV NVIDIA_DRIVER_CAPABILITIES compute,utility\nLABEL com.nvidia.volumes.needed=\"nvidia_driver\"\n\nRUN pip install \"git+git://github.com/allenai/allennlp.git@7142962d330ca5a95cade114c26a361c78f2042e\"\n\n# download spacy models\nRUN python -m spacy download en_core_web_sm\n\n# set the working directory\nWORKDIR /swagaf\n\n# install python packages\nADD ./requirements.txt .\nRUN pip install -r ./requirements.txt\n\n# add the code as the final step so that when we modify the code\n# we don't bust the cached layers holding the dependencies and\n# system packages.\nADD . .\n\nENV PYTHONPATH /swagaf\n\nENTRYPOINT []\nCMD [ \"/bin/bash\" ]\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2018 Rowan Zellers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# swagaf\n\n### Like this work, or commonsense reasoning in general? You might be interested in checking out my brand new dataset VCR: Visual Commonsense Reasoning, at [visualcommonsense.com](https://visualcommonsense.com)!\n\nSWAG dataset. More info is at [rowanzellers.com/swag](https://rowanzellers.com/swag).\n\n## Setting up your environment\nTo create an environment you will need to intall Python 3.1, PyTorch 3.1, and AllenNLP.  These\nrequirements are listed in `requirements.txt`.\n\nYou will also need to set PYTHONPATH to the `swagaf` directory.  You can do this by running the\nfollowing command from the `swagaf` folder.\n\n```\nexport PYTHONPATH=$(pwd)\n```\n\nAlternatively, you can build and run the included Dockerfile to create an environment.\n\n```\ndocker build -t swagaf .\ndocker run -it swagaf\n```\n\n## Common use cases\nThere is additional documentation in the subfolders.\n\n* `data/` contains the SWAG dataset.\n* `swag_baslines/` contains baseline implementations and instructions for how to run them.\n\nMost people will not need to look at `create_swag` or `raw_data` but it's there if you need it!\n\n## Citing\n\n```\n@inproceedings{zellers2018swagaf,\n    title={SWAG: A Large-Scale Adversarial Dataset for Grounded Commonsense Inference},\n    author={Zellers, Rowan and Bisk, Yonatan and Schwartz, Roy and Choi, Yejin},\n    booktitle = \"Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing (EMNLP)\",\n    year={2018}\n}\n```\n"
  },
  {
    "path": "create_swag/README.md",
    "content": "# create_swag\n\nthis folder contains the scripts used to create SWAG, including adversarial filtering. Here's the rough overview:\n\n1. Compile a bunch of datasets. We used MPII and ActivityNet Captions. \n2. Train the LM on those datasets (train first on toronto books). See the folder `lm/` for more info.\n3. Oversample and then perform Adversarial Filtering. See `generate_candidates/`\n4. Ask turkers to rank the distractors. You can use `turktemplate.html` as a starting point.\n5. You're done!\n \n### Important note:\nThis code is pretty hacky and comes with few guarantees (as with adversarial filtering itself); I figure you're probably going to need to do something different anyways. But hopefully it helps! Open up an issue if you notice anything wrong."
  },
  {
    "path": "create_swag/__init__.py",
    "content": ""
  },
  {
    "path": "create_swag/generate_candidates/README.md",
    "content": "# generate_candidates\n\nStage 1 of the pipeline - generate a bunch of candidates.\n\nUnfortunately, this is pretty slow, so we'll want to duplicate it to several GPUs.\n\nThe current pipeline as of now:\n\n1. Generate the candidates on 5 different GPUs\n    ```\n    export PYTHONPATH=/home/rowan/code/commonsense\n    export CUDA_VISIBLE_DEVICES=0\n    nohup python sample_candidates.py -fold 0 > fold_0_log.txt &\n    ```\n2. Pretrain the assignments using the LM features. This also will split it up into 5 folds\n    ```\n    nohup python rebalance_dataset_mlp.py > mlp_log.txt &\n    ```\n3. Do the assignments using more sophisticated features\n    ```\n    export CUDA_VISIBLE_DEVICES=0\n    nohup python rebalance_dataset_ensemble.py -fold -1 > rebalance_everything.txt &   \n    ```\n    \n4. Use `questions2mturk.py` to come create a CSV for mturk."
  },
  {
    "path": "create_swag/generate_candidates/__init__.py",
    "content": ""
  },
  {
    "path": "create_swag/generate_candidates/classifiers.py",
    "content": "\"\"\"\nThe big idea will be to add in the worst scoring one. But we want to use a MULTILAYER PERCEPTRON.\nAlso not using word features for now\n\n\"\"\"\n\nimport torch\nfrom allennlp.common import Params\nfrom allennlp.modules.augmented_lstm import AugmentedLstm\nfrom allennlp.modules.seq2seq_encoders.pytorch_seq2seq_wrapper import PytorchSeq2SeqWrapper\nfrom allennlp.modules.token_embedders.embedding import Embedding\nfrom torch import nn\nfrom torch.nn import functional as F\nfrom torch.autograd import Variable\nimport pandas as pd\nfrom model.pytorch_misc import clip_grad_norm, optimistic_restore, print_para, time_batch\nfrom torch import optim\nimport numpy as np\n\n\n#################### Model types\n\ndef reshape(f):\n    def wrapper(self, *args, **kwargs):\n        sizes = [x.size() for x in args] + [x.size() for x in kwargs.values()]\n        batch_size, num_ex = sizes[0][:2]\n\n        res = f(self, *[x.view((-1,) + x.size()[2:]) for x in args],\n                **{k: v.view((-1,), + v.size()[2:]) for k, v in kwargs})\n        if isinstance(res, tuple):\n            return tuple([x.view((batch_size, num_ex,) + x.size()[1:]) for x in res])\n        return res.view((batch_size, num_ex,) + res.size()[1:])\n\n    return wrapper\n\n\nclass LMFeatsModel(nn.Module):\n    def __init__(self, input_dim=5, hidden_dim=1024):\n        \"\"\"\n        Averaged embeddings of ending -> label\n        :param embed_dim: dimension to use\n        \"\"\"\n        super(LMFeatsModel, self).__init__()\n        self.mapping = nn.Sequential(\n            nn.Linear(input_dim, hidden_dim, bias=True),\n            nn.SELU(),\n            nn.AlphaDropout(p=0.2),\n        )\n        self.prediction = nn.Sequential(\n            nn.Linear(hidden_dim, hidden_dim, bias=True),\n            nn.SELU(),\n            nn.AlphaDropout(p=0.2),\n            nn.Linear(hidden_dim, 1, bias=False),\n        )\n\n    @reshape\n    def forward(self, feats):\n        \"\"\"\n        :param words: [batch, dim] indices\n        :return: [batch] scores of real-ness.\n        \"\"\"\n        inter_feats = self.mapping(feats)\n        preds = self.prediction(inter_feats).squeeze(1)\n        return preds, inter_feats\n\n    def fit(self, data, val_data=None, num_epoch=10):\n        self.train()\n        optimizer = optim.Adam(self.parameters(), weight_decay=1e-4, lr=1e-3)\n        best_val = 0.0\n        for epoch_num in range(num_epoch):\n            tr = []\n            for b, (time_per_batch, batch) in enumerate(time_batch(data, reset_every=100)):\n                results = self(batch['lm_feats'].cuda(async=True))[0]\n                loss = F.cross_entropy(results, Variable(results.data.new(results.size(0)).long().fill_(0)))\n                summ_dict = {'loss': loss.data[0], 'acc': (results.max(1)[1] == 0).float().mean().data[0]}\n\n                tr.append(pd.Series(summ_dict))\n                optimizer.zero_grad()\n                loss.backward()\n\n                clip_grad_norm(\n                    [(n, p) for n, p in self.named_parameters() if p.grad is not None],\n                    max_norm=1.0, verbose=False, clip=True)\n                optimizer.step()\n\n            mean_stats = pd.concat(tr, axis=1).mean(1)\n            if val_data is not None:\n                val_acc, val_results = self.validate(val_data)\n                print(\"e{:2d}: train loss {:.3f} train acc {:.3f} val acc {:.3f}\".format(epoch_num, mean_stats['loss'],\n                                                                          mean_stats['acc'], val_acc), flush=True)\n                if val_acc < best_val or epoch_num == (num_epoch - 1):\n                    return {'mlp': val_acc, 'fasttext': 0, 'cnn': 0, 'lstm_pos': 0, 'ensemble': 0}\n                best_val = val_acc\n\n    def validate(self, data):\n        self.eval()\n        all_predictions = []\n        for b, (time_per_batch, batch) in enumerate(time_batch(data, reset_every=100)):\n            results = self(batch['lm_feats'].cuda(async=True))[0]\n            all_predictions.append(results.data.cpu().numpy())\n        all_predictions = np.concatenate(all_predictions, 0)\n        acc = (all_predictions.argmax(1) == 0).mean()\n        return acc, {'ensemble': all_predictions}\n\n\nclass BoWModel(nn.Module):\n    def __init__(self, vocab, use_mean=True, embed_dim=100):\n        \"\"\"\n        Averaged embeddings of ending -> label\n        :param embed_dim: dimension to use\n        \"\"\"\n        super(BoWModel, self).__init__()\n        assert embed_dim == 100\n        self.embeds = Embedding.from_params(\n            vocab,\n            Params({'vocab_namespace': 'tokens',\n                    'embedding_dim': embed_dim,\n                    'trainable': True,\n                    'padding_index': 0,\n                    'pretrained_file':\n                        'https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.6B.100d.txt.gz'\n                    }))\n\n        self.embed_dim = embed_dim\n        self.use_mean = use_mean\n        self.embedding_to_label = nn.Linear(self.embed_dim, 1, bias=False)\n\n    @reshape\n    def forward(self, word_ids):\n        \"\"\"\n        :param word_ids: [batch, length] ids\n        :return: [batch] scores of real-ness.\n        \"\"\"\n        embeds = self.embeds(word_ids)\n        mask = (word_ids.data != 0).long()\n        seq_lengths = mask.sum(-1, keepdim=True).float()\n        seq_lengths[seq_lengths < 1] = 1.0\n\n        inter_feats = embeds.sum(1) / Variable(seq_lengths) if self.use_mean else embeds.max(1)[0]\n        preds = self.embedding_to_label(inter_feats).squeeze(1)\n        return preds, inter_feats\n\n\nclass CNNModel(nn.Module):\n    def __init__(self, vocab, embed_dim=100, window_sizes=(2, 3, 4, 5), num_filters=128):\n        super(CNNModel, self).__init__()\n\n        self.embeds = Embedding.from_params(\n            vocab,\n            Params({'vocab_namespace': 'tokens',\n                    'embedding_dim': embed_dim,\n                    'trainable': True,\n                    'padding_index': 0,\n                    'pretrained_file':\n                        'https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.6B.100d.txt.gz'\n                    }))\n        self.binary_feature_embedding = Embedding(2, embed_dim)\n\n        self.convs = nn.ModuleList([\n            nn.Conv1d(embed_dim * 2, num_filters, kernel_size=window_size, padding=window_size - 1) for window_size in\n            window_sizes\n        ])\n        self.fc = nn.Linear(num_filters * len(window_sizes), 1, bias=False)\n\n    @reshape\n    def forward(self, word_ids, indicator_ids):\n        \"\"\"\n        :param word_ids: [batch, length] ids\n        :param indicator_ids: [batch, length] ids\n        \"\"\"\n        embeds = torch.cat((self.embeds(word_ids), self.binary_feature_embedding(indicator_ids)), 2)\n        # mask = (word_ids != 0).long()\n\n        embeds_t = embeds.transpose(1, 2)  # [B, D, L]\n\n        conv_reps = []\n        for conv in self.convs:\n            conv_reps.append(F.relu(conv(embeds_t)).max(2)[0])  # Now it's [B, D]\n\n        inter_feats = torch.cat(conv_reps, 1)\n        preds = self.fc(inter_feats).squeeze(1)\n        return preds, inter_feats\n\n\nclass BLSTMModel(nn.Module):\n    def __init__(self, vocab, use_postags_only=True, embed_dim=100, hidden_size=200, recurrent_dropout_probability=0.3,\n                 use_highway=False,\n                 maxpool=True):\n        super(BLSTMModel, self).__init__()\n\n        self.embeds = Embedding.from_params(\n            vocab,\n            Params({'vocab_namespace': 'pos' if use_postags_only else 'tokens',\n                    'embedding_dim': embed_dim,\n                    'trainable': True,\n                    'padding_index': 0,\n                    'pretrained_file': None if use_postags_only else 'https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.6B.100d.txt.gz',\n                    }))\n        self.binary_feature_embedding = Embedding(2, embed_dim)\n\n        self.fwd_lstm = PytorchSeq2SeqWrapper(AugmentedLstm(\n            input_size=embed_dim * 2, hidden_size=hidden_size, go_forward=True,\n            recurrent_dropout_probability=recurrent_dropout_probability,\n            use_input_projection_bias=False, use_highway=use_highway), stateful=False)\n\n        self.bwd_lstm = PytorchSeq2SeqWrapper(AugmentedLstm(\n            input_size=embed_dim * 2, hidden_size=hidden_size, go_forward=False,\n            recurrent_dropout_probability=recurrent_dropout_probability,\n            use_input_projection_bias=False, use_highway=use_highway), stateful=False)\n\n        self.maxpool = maxpool\n        self.fc = nn.Linear(hidden_size * 2, 1, bias=False)\n\n    @reshape\n    def forward(self, word_ids, indicator_ids):\n        \"\"\"\n        :param word_ids: [batch, length] ids\n        :param indicator_ids: [batch, length] ids\n        \"\"\"\n        embeds = torch.cat((self.embeds(word_ids), self.binary_feature_embedding(indicator_ids)), 2)\n        mask = (word_ids != 0).long()\n\n        fwd_activation = self.fwd_lstm(embeds, mask)  # [B, L, D]\n        bwd_activation = self.bwd_lstm(embeds, mask)\n        if self.maxpool:\n            reps = torch.cat((fwd_activation.max(1)[0], bwd_activation.max(1)[0]), 1)  # [B*N, 2D]\n        else:\n            # Forward and last.\n            reps = torch.cat((\n                fwd_activation[torch.arange(0, mask.size(0), out=mask.data.new(mask.size(0))), mask.sum(1) - 1],\n                bwd_activation[:, 0]\n            ), 1)\n        return self.fc(reps).squeeze(1), reps\n\n\nclass Ensemble(nn.Module):\n    def __init__(self, vocab):\n        super(Ensemble, self).__init__()\n\n        self.fasttext_model = BoWModel(vocab, use_mean=True, embed_dim=100)\n        self.mlp_model = LMFeatsModel(input_dim=8, hidden_dim=1024)\n        self.lstm_pos_model = BLSTMModel(vocab, use_postags_only=True, maxpool=True)\n        # self.lstm_lex_model = BLSTMModel(vocab, use_postags_only=False, maxpool=True)\n        self.cnn_model = CNNModel(vocab)\n\n        self.mlp = nn.Sequential(\n            nn.Linear(100 + 1024 + 400 + 4 * 128, 2048, bias=True),\n            # nn.SELU(),\n            # nn.AlphaDropout(p=0.2),\n            # nn.Linear(2048, 2048, bias=True),\n            nn.SELU(),\n            nn.AlphaDropout(p=0.2),\n            nn.Linear(2048, 1, bias=False),\n        )\n\n    def forward(self, lm_feats, ending_word_ids, postags_word_ids, ctx_indicator, inds):\n        \"\"\"\n        :param lm_feats: [batch_size, #options, dim]\n        :param ending_word_ids: [batch_size, #options, L] word ids\n        :param postags_word_ids: [batch_size, #options, L] word ids\n        :param ctx_indicator: [batch_size, #options, L] indicator\n        :param inds: [batch_size] indices (not needed)\n        :return:\n        \"\"\"\n        results = {}\n        results['mlp'], mlp_feats = self.mlp_model(lm_feats)\n        results['fasttext'], fasttext_feats = self.fasttext_model(ending_word_ids)\n        results['cnn'], cnn_feats = self.cnn_model(ending_word_ids, ctx_indicator)\n        results['lstm_pos'], lstm_feats = self.lstm_pos_model(postags_word_ids, ctx_indicator)\n        # results['lstm_lex'], _ = self.lstm_lex_model(ending_word_ids, ctx_indicator)\n        results['ensemble'] = self.mlp(\n            torch.cat((mlp_feats, fasttext_feats, cnn_feats, lstm_feats), 2)).squeeze(2)\n        return results\n\n    def predict(self, lm_feats, ending_word_ids, postags_word_ids, ctx_indicator, inds):\n        \"\"\" Predict a distribution of probabilities\n        :return: Dict from model type -> prob dist\n        \"\"\"\n        results = self.forward(lm_feats, ending_word_ids, postags_word_ids, ctx_indicator, inds)\n        results = {k: F.softmax(v, 1).data.cpu().numpy() for k, v in results.items()}\n        return results\n\n    def validate(self, val_dataloader):\n        \"\"\"\n        :param val_dataloader: Dataloader\n        :return: Accuracies: dict from model -> accuracy\n                 All predictions: Dict from model -> [batch, #ex] distribution.\n        \"\"\"\n        # Compute the validation performance\n        self.eval()\n        all_predictions = {'mlp': [], 'fasttext': [], 'cnn': [], 'lstm_pos': [], #'lstm_lex': [],\n                           'ensemble': []}\n        for b, (time_per_batch, batch) in enumerate(time_batch(val_dataloader, reset_every=100)):\n            batch = {k: v.cuda(async=True) if hasattr(v, 'cuda') else v for k, v in batch.items()}\n            if b % 100 == 0 and b > 0:\n                print(\"\\nb{:5d}/{:5d} {:.3f}s/batch, {:.1f}m/epoch\".format(\n                    b, len(val_dataloader), time_per_batch,\n                    len(val_dataloader) * time_per_batch / 60), flush=True)\n            for k, v in self.predict(**batch).items():\n                all_predictions[k].append(v)\n        all_predictions = {k: np.concatenate(v, 0) for k, v in all_predictions.items()}\n        accuracies = {k: np.mean(v.argmax(1) == 0) for k, v in all_predictions.items()}\n        return accuracies, all_predictions\n\n    def fit(self, train_dataloader, val_dataloader, num_epoch=5):\n        \"\"\"\n        :param train_dataloader: Dataloader\n        :param num_epoch number of epochs to use\n        \"\"\"\n        print_every = 100\n        optimizer = optim.Adam([p for p in self.parameters() if p.requires_grad], weight_decay=1e-6, lr=1e-3)\n        best_val = 0.0\n        for epoch_num in range(num_epoch):\n            tr = []\n            self.train()\n            for b, (time_per_batch, batch) in enumerate(time_batch(train_dataloader, reset_every=print_every)):\n                batch = {k: v.cuda(async=True) if hasattr(v, 'cuda') else v for k, v in batch.items()}\n                results = self(**batch)\n                losses = {'{}-loss'.format(k): F.cross_entropy(\n                    v, Variable(v.data.new(v.size(0)).long().fill_(0))) for k, v in results.items()}\n                if any([np.isnan(x.data.cpu().numpy()) for x in losses.values()]):\n                    import ipdb\n                    ipdb.set_trace()\n                loss = sum(losses.values())\n                summ_dict = {k: v.data[0] for k, v in losses.items()}\n                summ_dict.update(\n                    {'{}-acc'.format(k): (v.max(1)[1] == 0).float().mean().data[0] for k, v in results.items()})\n\n                tr.append(pd.Series(summ_dict))\n                optimizer.zero_grad()\n                loss.backward()\n\n                if b % print_every == 0 and b > 0:\n                    print(\"\\ne{:2d}b{:5d}/{:5d} {:.3f}s/batch, {:.1f}m/epoch\".format(\n                        epoch_num, b, len(train_dataloader), time_per_batch,\n                        len(train_dataloader) * time_per_batch / 60))\n                    print(pd.concat(tr[-print_every:], axis=1).mean(1))\n                    print('-----------', flush=True)\n\n                # clip_grad_norm([(n, p) for n, p in self.named_parameters() if\n                #                 p.grad is not None and n.startswith('lstm_lex_model')], max_norm=1.0,\n                #                verbose=b % 100 == 1, clip=True)\n                clip_grad_norm([(n, p) for n, p in self.named_parameters() if\n                                p.grad is not None and not n.startswith('lstm_lex_model')], max_norm=1.0,\n                               verbose=b % 100 == 1, clip=True)\n                optimizer.step()\n            val_results, _ = self.validate(val_dataloader)\n            val_acc = val_results['ensemble']\n            if val_acc < best_val or epoch_num == (num_epoch - 1):\n                print(\"Stopping on epoch={} with\\n{}\".format(epoch_num, pd.Series(val_results)), flush=True)\n                return val_results\n            else:\n                print(\"Continuing on epoch={} with\\n{}\".format(epoch_num, pd.Series(val_results)), flush=True)\n            best_val = val_acc\n"
  },
  {
    "path": "create_swag/generate_candidates/questions2mturk.py",
    "content": "import random\nimport pickle as pkl\nimport numpy as np\nfrom tqdm import tqdm\nfrom nltk.tokenize.moses import MosesDetokenizer\nimport pandas as pd\nimport re\ndetokenizer = MosesDetokenizer()\n\nNUM_DISTRACTORS = 5\n\ndef _detokenize(sent):\n    s0 = detokenizer.detokenize(sent, return_str=True)\n    s1 = re.sub(r'\\b(ca|do|wo)\\sn\\'t', r\"\\1n't\", s0, flags=re.IGNORECASE)\n    return s1\n\n\nassignments = np.load('assignments-22.npy')\nstart_ind = 0\ndf = []\n\nfor fold_id in range(5):\n    with open('../../generate_candidates/examples{}-of-5.pkl'.format(fold_id), 'rb') as f:\n        ex_this_fold = pkl.load(f)\n    assignments_this_fold = assignments[start_ind:start_ind+len(ex_this_fold)]\n    start_ind += len(ex_this_fold)\n\n    for i, (this_example, assignments_i) in enumerate(zip(tqdm(ex_this_fold), assignments_this_fold)):\n        selected_gens = [this_example['generations'][i] for i in assignments_i.tolist()]\n\n        # Find sent1 from the given sentences\n        sent1 = _detokenize(this_example['sent1'])\n        if sent1[0].islower():\n            sent1 = sent1[0].upper() + sent1[1:]\n        sent2 = _detokenize(this_example['startphrase'])\n        # perm = np.random.permutation(NUM_DISTRACTORS+1)\n        perm = np.arange(10)\n\n        series_dict = {\n            'item_ind': i,\n            'fold_id': 0,\n            'item_id': this_example['dataset'] + this_example['id'],\n            'startphrase': '{} {}'.format(sent1,sent2),\n            'sent1': sent1,\n            'sent2': sent2,\n            'gold': int(np.where(perm == 0)[0][0]),\n        }\n        for i, perm in enumerate(perm.tolist()):\n            series_dict['completion-{:d}'.format(i)] = _detokenize(selected_gens[perm])\n        df.append(pd.Series(series_dict))\n\nrandom.seed(123456)\nrandom.shuffle(df)\ndf = pd.DataFrame(df)\n\n\nbatch_size=1\nbatch_df = []\nfor j in range(df.shape[0] // batch_size):\n    batch_df.append(pd.Series({'{}-{}'.format(i, name):val for i, (_, item) in enumerate(df[j*batch_size:(j+1)*batch_size].iterrows()) for name, val in item.items()}))\nbatch_df = pd.DataFrame(batch_df)\nbatch_df.to_csv('batch_df_FULL.csv', index=False)\n"
  },
  {
    "path": "create_swag/generate_candidates/rebalance_dataset_ensemble.py",
    "content": "\"\"\"\nThe big idea will be to add in the worst scoring one. But we want to use a MULTILAYER PERCEPTRON.\nAlso not using word features for now\n\n\"\"\"\n\nimport pickle as pkl\nfrom argparse import ArgumentParser\nfrom copy import deepcopy\n\nimport numpy as np\nimport pandas as pd\nimport spacy\nimport torch\nfrom allennlp.data import Instance\nfrom allennlp.data import Token\nfrom allennlp.data import Vocabulary\nfrom allennlp.data.dataset import Batch\nfrom allennlp.data.fields import TextField, SequenceLabelField\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer\nfrom torch.autograd import Variable\nfrom torch.utils.data import Dataset\nfrom torch.utils.data.dataloader import DataLoader\nfrom tqdm import tqdm\n\nfrom create_swag.lm.config import NUM_FOLDS\nfrom create_swag.generate_candidates.classifiers import Ensemble, LMFeatsModel\n\n######### PARAMETERS\n\n\nNUM_DISTRACTORS = 9\nTRAIN_PERC = 0.8\nBATCH_SIZE = 1024\n\nvocab = Vocabulary.from_files('../lm/vocabulary')\npos_vocab = Vocabulary(counter={'tokens': {name: i + 9000 for i, name in enumerate(\n    [vocab.get_token_from_index(x) for x in range(100)] + [pos for pos in spacy.parts_of_speech.NAMES.values() if\n                                                           len(pos) > 0]\n)}})\nvocab._token_to_index['pos'] = pos_vocab._token_to_index['tokens']\nvocab._index_to_token['pos'] = pos_vocab._index_to_token['tokens']\n\nparser = ArgumentParser(description='which fold to use')\nparser.add_argument('-fold', dest='fold', help='Which fold to use. If you say -1 we will use ALL OF THEM!', type=int,\n                    default=0)\nfold = parser.parse_args().fold\nassert fold in set(range(NUM_FOLDS)) or fold == -1\nprint(\"~~~~~~~~~USING SPLIT#{}~~~~~~~~~~~~~\".format(fold))\nif fold == -1:\n    assignments = []\n    assignments = np.load('assignments-pretrained.npy')\n    # for i in range(5):\n    #     assignments.append(np.load('assignments-fold-{}-19.npy'.format(i)))\n    # assignments = np.concatenate(assignments)\nelse:\n    assignments = np.load('assignments-pretrained-fold{}.npy'.format(fold))\n\n#########################################\n\n\n# TODO can we do this in parallel?\nclass AssignmentsDataLoader(Dataset):\n    # TODO: we might need to load the dataset again on every iteration because memory is a big problem.\n    def __init__(self, instances, inds, train=True, recompute_assignments=False):\n        self.instances = instances\n        self.inds = inds\n        self.train = train\n        self.recompute_assignments = recompute_assignments\n\n        self.dataloader = DataLoader(dataset=self, batch_size=128 if not recompute_assignments else 16,\n                                     shuffle=self.train, num_workers=0,\n                                     collate_fn=self.collate, drop_last=self.train)\n\n    def collate(self, items_l):\n        # Assume all of these have the same length\n        index_l, second_sentences_l, pos_tags_l, feats_l, context_len_l = zip(*items_l)\n\n        feats = Variable(torch.FloatTensor(np.stack(feats_l)))\n        inds = np.array(index_l)\n\n        instances = []\n        for second_sentences, pos_tags, context_len in zip(second_sentences_l, pos_tags_l, context_len_l):\n            for second_sent, pos_tag in zip(second_sentences, pos_tags):\n                instance_d = {\n                    'words': TextField([Token(token) for token in ['@@bos@@'] + second_sent + ['@@eos@@']],\n                                       {'tokens': SingleIdTokenIndexer(namespace='tokens', lowercase_tokens=True)}),\n                    'postags': TextField([Token(token) for token in ['@@bos@@'] + pos_tag + ['@@eos@@']],\n                                         {'pos': SingleIdTokenIndexer(namespace='pos', lowercase_tokens=False)}),\n                }\n                instance_d['context_indicator'] = SequenceLabelField([1] * (context_len + 1) +\n                                                                     [0] * (len(second_sent) - context_len + 1),\n                                                                     instance_d['words'])\n                instances.append(Instance(instance_d))\n        batch = Batch(instances)\n        batch.index_instances(vocab)\n        tensor_dict = batch.as_tensor_dict(for_training=self.train)\n\n        # instances_mask = torch.LongTensor(np.stack([np.array([len(sub_g) > 0 for sub_g in g], dtype=np.int64)\n        #                                             for g in selected_gens]))\n        return {\n            'lm_feats': feats,\n            'inds': inds,\n            'ending_word_ids': tensor_dict['words']['tokens'].view(inds.shape[0], -1,\n                                                                   tensor_dict['words']['tokens'].size(1)),\n            'postags_word_ids': tensor_dict['postags']['pos'].view(inds.shape[0], -1,\n                                                                   tensor_dict['postags']['pos'].size(1)),\n            'ctx_indicator': tensor_dict['context_indicator'].view(inds.shape[0], -1,\n                                                                   tensor_dict['context_indicator'].size(1)),\n        }\n\n    def __len__(self):\n        return len(self.instances)\n\n    def __getitem__(self, index):\n        \"\"\"\n        :param index: index into the list of examples. ps: they are of the form\n\n        sent1: List[str] of tokens for the first sentence\n        startphrase: List[str] of tokens for the first part of the 2nd sentence\n        generations: List[List[str]] of tokenized responses. The first one is GT.\n        postags: List[List[str]] of POSTags and some lexicalization for startphrase+generations.\n\n        They're all of the same size (1024)\n        :return: index\n                 second_sentences List[List[str]] full s2's\n                 pos_tags List[List[str]] full PosTags of S2's\n                 feats [#ex, dim] np array of features\n                 context_len length of context size in second_sentences and pos_tags\n        \"\"\"\n        this_ex = self.instances[index]\n\n        second_sentences = [this_ex['startphrase'] + gen for gen in this_ex['generations']]\n        context_len = len(this_ex['startphrase'])\n\n        feats_vals = this_ex['scores'].values\n        if np.isinf(feats_vals).any():\n            feats_vals[np.isinf(feats_vals)] = 1e17\n\n        feats = np.column_stack((\n            np.log(feats_vals),\n            np.array([len(gen) for gen in this_ex['generations']], dtype=np.float32),\n            np.ones(feats_vals.shape[0], dtype=np.float32) * context_len,\n            np.ones(feats_vals.shape[0], dtype=np.float32) * len(this_ex['sent1']),\n        ))\n        return index, second_sentences, this_ex['postags'], feats, context_len\n\n    @classmethod\n    def splits(cls, assignments):\n        \"\"\" if assignments is none we initialize by looking at topN\"\"\"\n\n        s_idx = 0\n        train_instances = []\n        val_instances = []\n        test_instances = []\n\n        train_indices = []\n        test_indices = []\n        print(\"loading the data!\", flush=True)\n\n        def _load_from_examples(example_list, offset):\n            idx = np.random.permutation(len(example_list))\n            train_idx = np.sort(idx[:int(TRAIN_PERC * idx.shape[0])])\n            val_idx = np.sort(idx[int(TRAIN_PERC * idx.shape[0]):])\n\n            train_indices.append(offset + train_idx)\n            test_indices.append(offset + val_idx)\n\n            for i in tqdm(train_idx):\n                item_copy = example_list[i]\n                item_copy['generations'] = [example_list[i]['generations'][j] for j in assignments[i + offset]]\n                item_copy['postags'] = [example_list[i]['postags'][j] for j in assignments[i + offset]]\n                item_copy['scores'] = example_list[i]['scores'].iloc[assignments[i + offset]]\n                train_instances.append(item_copy)\n\n            for i in tqdm(val_idx):\n                item_copy = deepcopy(example_list[i])\n                item_copy['generations'] = [example_list[i]['generations'][j] for j in assignments[i + offset]]\n                item_copy['postags'] = [example_list[i]['postags'][j] for j in assignments[i + offset]]\n                item_copy['scores'] = example_list[i]['scores'].iloc[assignments[i + offset]]\n                val_instances.append(item_copy)\n                test_instances.append(example_list[i])\n            return len(ex_this_fold)\n\n        folds2use = range(5) if fold == -1 else [fold]\n        for fold_no in folds2use:\n            print(\"loading data from fold {}\".format(fold_no), flush=True)\n            with open('examples{}-of-5.pkl'.format(fold_no), 'rb') as f:\n                ex_this_fold = pkl.load(f)\n            s_idx += _load_from_examples(ex_this_fold, s_idx)\n\n        train_indices = np.concatenate(train_indices, 0)\n        test_indices = np.concatenate(test_indices, 0)\n\n        return cls(train_instances, train_indices, train=True), cls(val_instances, test_indices, train=False), cls(\n            test_instances, test_indices, train=False, recompute_assignments=True)\n\n\ndef _iter():\n    train, val, test = AssignmentsDataLoader.splits(assignments)\n    model = Ensemble(vocab)\n    model.cuda()\n\n    val_results = model.fit(train.dataloader, val.dataloader, num_epoch=10)\n    # Now get predictions for the best thing\n    best_scoring_model_name = pd.Series(val_results).argmax()\n    print(\"We will rebalance with {}\".format(best_scoring_model_name))\n\n    test_results, all_predictions = model.validate(test.dataloader)\n\n    n2chs = []\n    for val_ind, pred in zip(test.inds, all_predictions[best_scoring_model_name]):\n        high2low = (-pred).argsort()  # Things at the beginning of this list seem real\n        idx2rank = high2low.argsort()\n\n        cur_assign = assignments[val_ind]\n        adversarial_examples = high2low[:idx2rank[0]]\n        adversarial_examples = adversarial_examples[\n            ~np.in1d(adversarial_examples, cur_assign)]  # not currently assigned\n\n        easy_idxs = high2low[idx2rank[0] + 1:][::-1]\n        easy_idxs = easy_idxs[np.in1d(easy_idxs, cur_assign)]\n\n        # Make the easy indices map according to their position in the assignments\n        easy_inds = np.argmax(easy_idxs[:, None] == cur_assign[None], 1)\n        assert np.allclose(cur_assign[easy_inds], easy_idxs)\n\n        num2change = min(2, adversarial_examples.shape[0], easy_idxs.shape[0])\n        n2chs.append(num2change)\n        # print(\"adversarial ex we can add {:4d} easy idxs {:4d} were changing {:4d}\".format(\n        #     adversarial_examples.shape[0], easy_idxs.shape[0], num2change))\n        if num2change == 0:\n            pass\n        else:\n            # change a random index\n            ind_loc = np.random.choice(easy_inds, replace=False, size=num2change)\n            adv_loc = np.random.choice(adversarial_examples, replace=False, size=num2change)\n            assignments[val_ind, ind_loc] = adv_loc\n            # Change the first index over.\n            # ind_loc = easy_inds[0]\n            # assignments[val_ind, ind_loc] = adversarial_examples[0]\n    val_results['n2chs'] = np.mean(n2chs)\n    return pd.Series(val_results)\n\nall_results = []\nfor i in range(50):\n    all_results.append(_iter())\n    if fold == -1:\n        pd.DataFrame(all_results).to_csv('ensemble-accs.csv', index=False)\n        np.save('assignments-{}.npy'.format(i), assignments)\n    else:\n        pd.DataFrame(all_results).to_csv('ensemble-accs-fold-{}.csv'.format(fold), index=False)\n        np.save('assignments-fold-{}-{}.npy'.format(fold, i), assignments)\n\n#\n# # To extract some things (maybe this is useful? idk)\n# from nltk.tokenize.moses import MosesDetokenizer\n# def _extract():\n#     detokenizer = MosesDetokenizer()\n#     with open('examples0-of-5.pkl', 'rb') as f:\n#         ex_this_fold = pkl.load(f)\n#     assignments = np.load('assignments-4.npy')\n#\n#     selected_examples = []\n#     for ind, (item, assign_i) in enumerate(zip(tqdm(ex_this_fold), assignments)):\n#         context = pd.Series([detokenizer.detokenize(item['sent1'], return_str=True)] * len(assign_i))\n#         completions = pd.Series(\n#             [detokenizer.detokenize(item['startphrase'] + item['generations'][i], return_str=True) for i in\n#              assign_i.tolist()])\n#         dataset = pd.Series([item['dataset']] * len(assign_i))\n#         ids = pd.Series([item['id']] * len(assign_i))\n#         duration = pd.Series([item['duration']] * len(assign_i))\n#         inds = pd.Series([ind] * len(assign_i))\n#\n#         df_this_ex = pd.DataFrame(\n#             data={'inds': inds, 'selections': assign_i, 'context': context, 'completions': completions,\n#                   'is_gold': (assign_i == 0),\n#                   'choice': np.arange(NUM_DISTRACTORS + 1),\n#                   'dataset': dataset, 'ids': ids, 'duration': duration},\n#             columns=['inds', 'context', 'completions', 'selections', 'is_gold', 'choice', 'dataset', 'ids', 'duration'])\n#\n#         df_with_extra_feats = pd.concat(\n#             (df_this_ex, item['scores'].iloc[assign_i].reset_index(drop=True)), axis=1)\n#         selected_examples.append(df_with_extra_feats)\n#     return pd.concat(selected_examples, 0).reset_index(drop=True)\n#\n#\n# _extract().to_csv('dataset.csv', sep='\\t', index=False)\n"
  },
  {
    "path": "create_swag/generate_candidates/rebalance_dataset_mlp.py",
    "content": "\"\"\"\nThe big idea will be to add in the worst scoring one. But we want to use a MULTILAYER PERCEPTRON.\nAlso not using word features for now\n\n\"\"\"\nimport matplotlib as mpl\n\nmpl.use('Agg')\nimport seaborn as sns\nimport matplotlib.pyplot as plt\n\nfrom allennlp.data import Vocabulary\nfrom torch.nn import functional as F\nfrom torch import nn\nfrom torch.autograd import Variable\nimport pickle as pkl\nimport numpy as np\nfrom torch import optim\nimport torch\nfrom tqdm import tqdm, trange\nfrom pytorch_misc import clip_grad_norm, time_batch\nimport pandas as pd\nimport os\n######### PARAMETERS\n\nNUM_DISTRACTORS = 9\nTRAIN_PERC = 0.8\n\nvocab = Vocabulary.from_files('../lm/vocabulary')\n\nall_data = []\nif os.path.exists('feats_cached.npy'):\n    all_data = np.load('feats_cached.npy')\nelse:\n    print(\"loading data. this will take hella time probably!\", flush=True)\n    for fold in trange(5):\n        print(\"tryna load {}\".format(fold, flush=True))\n        with open('examples{}-of-5.pkl'.format(fold), 'rb') as f:\n            examples = pkl.load(f)\n            for this_ex in examples:\n                feats_vals = this_ex['scores'].values\n                if np.isinf(feats_vals).any():\n                    feats_vals[np.isinf(feats_vals)] = 1e17\n                feats = np.column_stack((\n                    np.log(feats_vals),\n                    np.array([len(gen) for gen in this_ex['generations']], dtype=np.float32),\n                    np.ones(feats_vals.shape[0], dtype=np.float32) * len(this_ex['startphrase']),\n                    np.ones(feats_vals.shape[0], dtype=np.float32) * len(this_ex['sent1']),\n                ))\n                all_data.append(feats)\n    all_data = np.stack(all_data)\n    np.save('feats_cached.npy', all_data)\n\nprint(\"There are {} things\".format(all_data.shape[0]), flush=True)\nassignments = np.arange(NUM_DISTRACTORS + 1, dtype=np.uint16)[None].repeat(all_data.shape[0], axis=0)\n\n\nclass SimpleCudaLoader(object):\n    \"\"\" silly cuda loader\"\"\"\n    def __init__(self,\n                 indices,\n                 is_train=True,\n                 recompute_assignments=False,\n                 batch_size=512,\n                 ):\n        self.indices = indices\n        self.is_train = is_train\n        self.recompute_assignments = recompute_assignments\n        if self.recompute_assignments:\n            self.feats = all_data[self.indices]\n        else:\n            self.feats = all_data[np.arange(all_data.shape[0])[:, None], assignments][self.indices]\n\n        self.batch_size = batch_size\n\n    def __iter__(self):\n        \"\"\"\n        Iterator for a cuda type application.\n        :return:\n        \"\"\"\n        # First cuda-ize everything\n        if self.is_train:\n            perm_vec = np.random.permutation(self.feats.shape[0])\n            feats_to_use = self.feats[perm_vec]\n            inds_to_use = self.indices[perm_vec]\n        else:\n            feats_to_use = self.feats\n            inds_to_use = self.indices\n\n        feats_cuda = torch.FloatTensor(feats_to_use).contiguous().cuda(async=True)\n\n        for s_idx in range(len(self)):\n            s_ind = s_idx * self.batch_size\n            e_ind = min(s_ind + self.batch_size, self.feats.shape[0])\n            if e_ind < self.batch_size and self.is_train:\n                # Skip small batch on training\n                return\n            yield Variable(feats_cuda[s_ind:e_ind], volatile=not self.is_train), inds_to_use[s_ind:e_ind]\n\n    @classmethod\n    def randomsplits(cls):\n        \"\"\"\n        Makes some random splits! But keeping in mind the (global) assignments info\n        :return:\n        \"\"\"\n        idx = np.random.permutation(all_data.shape[0])\n        train_idx = idx[:int(TRAIN_PERC * idx.shape[0])]\n        val_idx = np.sort(idx[int(TRAIN_PERC * idx.shape[0]):])\n        return cls(train_idx, is_train=True), cls(val_idx, is_train=False), cls(val_idx, recompute_assignments=True, is_train=False),\n\n    def __len__(self):\n        if self.is_train:\n            return self.feats.shape[0] // self.batch_size\n        else:\n            return (self.feats.shape[0] + self.batch_size - 1) // self.batch_size\n\n\nclass MLPModel(nn.Module):\n    def __init__(self):\n        super(MLPModel, self).__init__()\n        # self.mapping = nn.Linear(train_data.feats.shape[2], 1, bias=False)\n\n        self.mapping = nn.Sequential(\n            nn.Linear(all_data.shape[-1], 2048, bias=True),\n            nn.SELU(),\n            nn.AlphaDropout(p=0.2),\n            nn.Linear(2048, 2048, bias=True),\n            nn.SELU(),\n            nn.AlphaDropout(p=0.2),\n            nn.Linear(2048, 1, bias=False),\n        )\n\n    def forward(self, feats):\n        # Contribution from embeddings\n        # (batch, #ex, length, dim) -> (batch, #ex, dim)\n        return self.mapping(feats).squeeze(-1)\n\n    def fit(self, data, val_data=None, n_epoch=10):\n        self.train()\n        optimizer = optim.Adam(self.parameters(), weight_decay=1e-4, lr=1e-3)\n        best_val = 0.0\n        for epoch_num in range(n_epoch):\n            tr = []\n            for b, (time_per_batch, batch) in enumerate(time_batch(data, reset_every=100)):\n                feats, inds_to_use = batch\n                results = model(feats)\n                loss = F.cross_entropy(results, Variable(results.data.new(results.size(0)).long().fill_(0)))\n                summ_dict = {'loss': loss.data[0], 'acc': (results.max(1)[1] == 0).float().mean().data[0]}\n\n                tr.append(pd.Series(summ_dict))\n                optimizer.zero_grad()\n                loss.backward()\n\n                clip_grad_norm(\n                    [(n, p) for n, p in model.named_parameters() if p.grad is not None],\n                    max_norm=1.0, verbose=False, clip=True)\n                optimizer.step()\n\n            mean_stats = pd.concat(tr, axis=1).mean(1)\n            if val_data is not None:\n                vp, val_acc = self.predict(val_data)\n                print(\"e{:2d}: train loss {:.3f} train acc {:.3f} val acc {:.3f}\".format(epoch_num, mean_stats['loss'],\n                                                                          mean_stats['acc'], val_acc), flush=True)\n                if val_acc < best_val or epoch_num == (n_epoch - 1):\n                    return\n                best_val = val_acc\n\n    def predict(self, data):\n        self.eval()\n        all_predictions = []\n        for b, (time_per_batch, batch) in enumerate(time_batch(data, reset_every=100)):\n            feats, inds_to_use = batch\n            all_predictions.append(model(feats).data.cpu().numpy())\n        all_predictions = np.concatenate(all_predictions, 0)\n        if data.recompute_assignments:\n            masked_predictions = all_predictions[np.arange(data.feats.shape[0])[:, None], assignments[data.indices]]\n        else:\n            masked_predictions = all_predictions\n        acc = (masked_predictions.argmax(1) == 0).mean()\n        mr = (-masked_predictions).argsort(1).argsort(1)[:, 0].mean()\n        # print(\"acc is {:.3f}, mean rank is {:.3f}\".format(acc, mr))\n        return all_predictions, acc\n\n\n\naccs = []\nfor iter in trange(100):\n    train, val, test = SimpleCudaLoader.randomsplits()\n    model = MLPModel()\n    model.cuda()\n    model.fit(train, val)\n    predictions, acc = model.predict(test)\n    accs.append(acc)\n    # Now do some remapping\n    n2chs = []\n    for pred, val_ind in zip(predictions, test.indices):\n        high2low = (-pred).argsort()  # Things at the beginning of this list seem real\n        idx2rank = high2low.argsort()\n\n        cur_assign = assignments[val_ind]\n        adversarial_examples = high2low[:idx2rank[0]]\n        adversarial_examples = adversarial_examples[\n            ~np.in1d(adversarial_examples, cur_assign)]  # not currently assigned\n\n        easy_idxs = high2low[idx2rank[0] + 1:][::-1]\n        easy_idxs = easy_idxs[np.in1d(easy_idxs, cur_assign)]\n\n        # Make the easy indices map according to their position in the assignments\n        easy_inds = np.argmax(easy_idxs[:, None] == cur_assign[None], 1)\n        assert np.allclose(cur_assign[easy_inds], easy_idxs)\n\n        num2change = min(2, adversarial_examples.shape[0], easy_idxs.shape[0])\n        n2chs.append(num2change)\n        # print(\"adversarial ex we can add {:4d} easy idxs {:4d} were changing {:4d}\".format(\n        #     adversarial_examples.shape[0], easy_idxs.shape[0], num2change))\n        if num2change == 0:\n            # print(\"Continuing, nothing we can change\")\n            pass\n        else:\n            # change a random index\n            ind_loc = np.random.choice(easy_inds, replace=False, size=num2change)\n            adv_loc = np.random.choice(adversarial_examples, replace=False, size=num2change)\n            assignments[val_ind, ind_loc] = adv_loc\n            # Change the first index over.\n            # ind_loc = easy_inds[0]\n            # assignments[val_ind, ind_loc] = adversarial_examples[0]\n    print(\"{:.3f} val accuracy: {:.3f} n2chs\".format(acc, np.mean(n2chs)), flush=True)\n    assert np.all(assignments[:, 0] == 0)\n\n# Plot the accuracy as time goes by\nnp.save('assignments-pretrained.npy', assignments)\nstart_idx = 0\nfor fold in trange(5):\n    with open('examples{}-of-5.pkl'.format(fold), 'rb') as f:\n        examples = pkl.load(f)\n    assignments_this_fold = assignments[start_idx:start_idx+len(examples)]\n    np.save('assignments-pretrained-fold{}.npy'.format(fold), assignments_this_fold)\n    start_idx += len(examples)\n\nplt.clf()\naccuracy = pd.Series(np.array(accs))\ndf = pd.DataFrame(pd.concat([accuracy,\n                             # accuracy.rolling(window=int(1/(1-TRAIN_PERC)), win_type='gaussian', min_periods=1, center=True).mean(std=2)\n                             accuracy.rolling(window=2 * int(1 / (1 - TRAIN_PERC)), win_type=None, min_periods=1,\n                                              center=True).mean()\n                             ], 0),\n                  columns=['accuracy'])\ndf['subject'] = 0\ndf['series'] = ['accuracy'] * accuracy.shape[0] + ['smoothed accuracy'] * accuracy.shape[0]\ndf.index.rename('iteration', inplace=True)\ndf.reset_index(inplace=True)\ndf.to_csv('pretrain-rebalance-mlp.csv')\nsns.set(color_codes=True)\nfig = sns.tsplot(time='iteration', value='accuracy', data=df, unit='subject', condition='series').get_figure()\nfig.savefig('rebalancing-mlp-acc.pdf')\n"
  },
  {
    "path": "create_swag/generate_candidates/sample_candidates.py",
    "content": "import pickle as pkl\nfrom argparse import ArgumentParser\nfrom copy import deepcopy\nfrom time import time\n\nimport numpy as np\nimport pandas as pd\nimport torch\nfrom allennlp.commands.predict import Predictor\nfrom allennlp.data import Vocabulary\nfrom allennlp.models.archival import load_archive\nfrom tqdm import tqdm\n\nfrom create_swag.lm.config import NUM_FOLDS\nfrom create_swag.lm.simple_bilm import SimpleBiLM\nfrom pytorch_misc import optimistic_restore\nfrom spacy.tokens.doc import Doc\nfrom allennlp.common.util import get_spacy_model\nimport spacy\n\nBATCH_SIZE = 1024\n\n# ARGUMENTS\nparser = ArgumentParser(description='which fold to use')\nparser.add_argument('-fold', dest='fold', help='Which fold to use', type=int, default=0)\nfold = parser.parse_args().fold\nassert fold in set(range(NUM_FOLDS))\nprint(\"~~~~~~~~~USING SPLIT#{}~~~~~~~~~~~~~\".format(fold))\n\n# SETUP\nspacy_model = get_spacy_model(\"en_core_web_sm\", pos_tags=True, parse=False, ner=False)\nspacy_model.tokenizer = lambda x: Doc(spacy_model.vocab, x)\n\narchive = load_archive('https://s3-us-west-2.amazonaws.com/allennlp/models/elmo-constituency-parser-2018.03.14.tar.gz')\nconstituency_predictor = Predictor.from_archive(archive, 'constituency-parser')\n# This is hella hacky! but it's tokenized already\nconstituency_predictor._tokenizer.spacy.tokenizer = lambda x: Doc(constituency_predictor._tokenizer.spacy.vocab, x)\n\nvocab = Vocabulary.from_files('../lm/vocabulary')\n\npos_vocab = Vocabulary(counter={'tokens': {name: i + 9000 for i, name in enumerate(\n    [vocab.get_token_from_index(x) for x in range(100)] + [pos for pos in spacy.parts_of_speech.NAMES.values() if\n                                                           len(pos) > 0]\n)}})\n\nmodel = SimpleBiLM(vocab=vocab, recurrent_dropout_probability=0.2, embedding_dropout_probability=0.2)\noptimistic_restore(model,\n                   torch.load('../lm/best-{}.tar'.format(fold))['state_dict'])  # <- NEED TO DO THIS ON A FOLD LEVEL\n# include if not necessary\nmodel.register_buffer('invalid_tokens', torch.LongTensor([vocab.get_token_index(tok) for tok in\n                                                          ['@@UNKNOWN@@', '@@PADDING@@', '@@bos@@', '@@eos@@',\n                                                           '@@NEWLINE@@']]))\nmodel.cuda()\nmodel.eval()\n\nwith open('../lm/lm-{}-of-{}.pkl'.format(fold, NUM_FOLDS), 'rb') as f:\n    stories_tokenized = pkl.load(f)\n\n\n########\n\n# We want to recurse until we find verb phrases\ndef find_VP(tree):\n    \"\"\"\n    Recurse on the tree until we find verb phrases\n    :param tree: constituency parser result\n    :return:\n    \"\"\"\n\n    # Recursion is annoying because we need to check whether each is a list or not\n    def _recurse_on_children():\n        assert 'children' in tree\n        result = []\n        for child in tree['children']:\n            res = find_VP(child)\n            if isinstance(res, tuple):\n                result.append(res)\n            else:\n                result.extend(res)\n        return result\n\n    if 'VP' in tree['attributes']:\n        # # Now we'll get greedy and see if we can find something better\n        # if 'children' in tree and len(tree['children']) > 1:\n        #     recurse_result = _recurse_on_children()\n        #     if all([x[1] in ('VP', 'NP', 'CC') for x in recurse_result]):\n        #         return recurse_result\n        return [(tree['word'], 'VP')]\n    # base cases\n    if 'NP' in tree['attributes']:\n        return [(tree['word'], 'NP')]\n    # No children\n    if not 'children' in tree:\n        return [(tree['word'], tree['attributes'][0])]\n\n    # If a node only has 1 child then we'll have to stick with that\n    if len(tree['children']) == 1:\n        return _recurse_on_children()\n    # try recursing on everything\n    return _recurse_on_children()\n\n\ndef split_on_final_vp(sentence):\n    \"\"\" Splits a sentence on the final verb phrase\"\"\"\n    try:\n        res = constituency_predictor.predict_json({'sentence': sentence})\n    except:\n        return None, None\n    res_chunked = find_VP(res['hierplane_tree']['root'])\n    is_vp = [i for i, (word, pos) in enumerate(res_chunked) if pos == 'VP']\n    if len(is_vp) == 0:\n        return None, None\n    vp_ind = max(is_vp)\n    not_vp = [token for x in res_chunked[:vp_ind] for token in x[0].split(' ')]\n    is_vp = [token for x in res_chunked[vp_ind:] for token in x[0].split(' ')]\n    return not_vp, is_vp\n\n\ngood_examples = []\nfor (instance, s1_toks, s2_toks, item) in tqdm(stories_tokenized):\n\n    eos_bounds = [i + 1 for i, x in enumerate(s1_toks) if x in ('.', '?', '!')]\n    if len(eos_bounds) == 0:\n        s1_toks.append('.')  # Just in case there's no EOS indicator.\n\n    context_len = len(s1_toks)\n    if context_len < 6 or context_len > 100:\n        print(\"skipping on {} (too short or long)\".format(' '.join(s1_toks + s2_toks)))\n        continue\n\n    # Something I should have done: make sure that there aren't multiple periods, etc. in s2 or in the middle\n    eos_bounds_s2 = [i + 1 for i, x in enumerate(s2_toks) if x in ('.', '?', '!')]\n    if len(eos_bounds_s2) > 1 or max(eos_bounds_s2) != len(s2_toks):\n        continue\n    elif len(eos_bounds_s2) == 0:\n        s2_toks.append('.')\n\n\n    # Now split on the VP\n    startphrase, endphrase = split_on_final_vp(s2_toks)\n    if startphrase is None or len(startphrase) == 0 or len(endphrase) < 5 or len(endphrase) > 25:\n        print(\"skipping on {}->{},{}\".format(' '.join(s1_toks + s2_toks), startphrase, endphrase), flush=True)\n        continue\n\n    # if endphrase contains unk then it's hopeless\n    if any(vocab.get_token_index(tok.lower()) == vocab.get_token_index(vocab._oov_token) for tok in endphrase):\n        print(\"skipping on {} (unk!)\".format(' '.join(s1_toks + s2_toks)))\n        continue\n\n    context = s1_toks + startphrase\n    tic = time()\n    gens0, fwd_scores, ctx_scores = model.conditional_generation(context, gt_completion=endphrase,\n                                                                 batch_size=2 * BATCH_SIZE,\n                                                                 max_gen_length=25)\n    if len(gens0) < BATCH_SIZE:\n        print(\"Couldnt generate enough candidates so skipping\")\n        continue\n    gens0 = gens0[:BATCH_SIZE]\n    fwd_scores = fwd_scores[:BATCH_SIZE]\n\n    # Now get the backward scores.\n    full_sents = [context + gen for gen in gens0]  # NOTE: #1 is GT\n    result_dict = model(model.batch_to_ids(full_sents), use_forward=False, use_reverse=True, compute_logprobs=True)\n    ending_lengths = (fwd_scores < 0).sum(1)\n    ending_lengths_float = ending_lengths.astype(np.float32)\n    rev_scores = result_dict['reverse_logprobs'].data.cpu().numpy()\n\n    forward_logperp_ending = -fwd_scores.sum(1) / ending_lengths_float\n    reverse_logperp_ending = -rev_scores[:, context_len:].sum(1) / ending_lengths_float\n    forward_logperp_begin = -ctx_scores.mean()\n    reverse_logperp_begin = -rev_scores[:, :context_len].mean(1)\n    eos_logperp = -fwd_scores[np.arange(fwd_scores.shape[0]), ending_lengths - 1]\n    print(\"Time elapsed {:.3f}\".format(time() - tic), flush=True)\n\n    scores = np.exp(np.column_stack((\n        forward_logperp_ending,\n        reverse_logperp_ending,\n        reverse_logperp_begin,\n        eos_logperp,\n        np.ones(forward_logperp_ending.shape[0], dtype=np.float32) * forward_logperp_begin,\n    )))\n\n    # PRINTOUT\n    low2high = scores[:, 2].argsort()\n    print(\"\\n\\n Dataset={} ctx: {} (perp={:.3f})\\n~~~\\n\".format(item['dataset'], ' '.join(context),\n                                                                np.exp(forward_logperp_begin)), flush=True)\n    for i, ind in enumerate(low2high.tolist()):\n        gen_i = ' '.join(gens0[ind])\n        if (ind == 0) or (i < 128):\n            print(\"{:3d}/{:4d}) ({}, end|ctx:{:5.1f} end:{:5.1f} ctx|end:{:5.1f} EOS|(ctx, end):{:5.1f}) {}\".format(\n                i, len(gens0), 'GOLD' if ind == 0 else '    ', *scores[ind][:-1], gen_i), flush=True)\n    gt_score = low2high.argsort()[0]\n\n    item_full = deepcopy(item)\n    item_full['sent1'] = s1_toks\n    item_full['startphrase'] = startphrase\n    item_full['context'] = context\n    item_full['generations'] = gens0\n    item_full['postags'] = [  # parse real fast\n        [x.orth_.lower() if pos_vocab.get_token_index(x.orth_.lower()) != 1 else x.pos_ for x in y]\n        for y in spacy_model.pipe([startphrase + gen for gen in gens0], batch_size=BATCH_SIZE)]\n    item_full['scores'] = pd.DataFrame(data=scores, index=np.arange(scores.shape[0]),\n                                       columns=['end-from-ctx', 'end', 'ctx-from-end', 'eos-from-ctxend', 'ctx'])\n    good_examples.append(item_full)\n\nwith open('examples{}-of-{}.pkl'.format(fold, NUM_FOLDS), 'wb') as f:\n    pkl.dump(good_examples, f)\n"
  },
  {
    "path": "create_swag/generate_candidates/sample_candidates.sh",
    "content": "#!/usr/bin/env bash\n\nexport CUDA_VISIBLE_DEVICES=$1\necho \"Sampling the candidates. remember to do this do this for all of the GPUS!\"\npython sample_candidates.py -fold $1"
  },
  {
    "path": "create_swag/lm/README.md",
    "content": "# LM\n\nContains hopefully everything you need to run the LM\n\n# Setup\n\n0. Update the config file with where your pretraining text is.\n\n1. Create the vocabulary by running ```python load_data.py``` or copy things around manually, then do the pretraining using `pretrain_lm.py`. Or, you can access my pretrained checkpoint [here](https://drive.google.com/file/d/1Ik7cbGs-wbAKKCeuYA8Uhe5O3pHJwHcj/view?usp=sharing)\n    \n2. To finetune on activitynet captions and LSMDC do\n    \n    ```\n    export PYTHONPATH=/home/rowan/code/swagaf\n    export CUDA_VISIBLE_DEVICES=0\n    nohup python train_lm.py -fold 0 > fold_0_log.txt &\n    export CUDA_VISIBLE_DEVICES=1\n    nohup python train_lm.py -fold 1 > fold_1_log.txt &\n    export CUDA_VISIBLE_DEVICES=2\n    nohup python train_lm.py -fold 2 > fold_2_log.txt &\n    ```\n    \n    And accordingly on the other machine\n    ```\n    export CUDA_VISIBLE_DEVICES=0\n    nohup python train_lm.py -fold 3 > fold_3_log.txt &\n    export CUDA_VISIBLE_DEVICES=1\n    nohup python train_lm.py -fold 4 > fold_4_log.txt &\n    ```\n\nOne of my checkpoints (for fold 0) is [here](https://drive.google.com/file/d/1J9QPJTIOIDR4V_zGB8ejilWAXXkxrogC/view?usp=sharing)\n\n3. Pick the best checkpoints, then go generate stuff!!\n"
  },
  {
    "path": "create_swag/lm/__init__.py",
    "content": ""
  },
  {
    "path": "create_swag/lm/config.py",
    "content": "# Set this to how many LMs you want to train on diff splits of the data\n\nNUM_FOLDS = 5\n\n\n# what text to train on (right now it's toronto books)\nPRETRAIN_TXT = '/home/mbforbes/repos/ari-holtzman/learning_to_write/data/corpora/tbooks/train.txt'"
  },
  {
    "path": "create_swag/lm/load_data.py",
    "content": "# First make the vocabulary, etc.\n\nimport os\nimport pickle as pkl\nimport random\n\nimport simplejson as json\nfrom allennlp.common.util import get_spacy_model\nfrom allennlp.data import Instance\nfrom allennlp.data import Token\nfrom allennlp.data import Vocabulary\nfrom allennlp.data.dataset import Batch\nfrom allennlp.data.fields import TextField\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer\nfrom allennlp.data.token_indexers.elmo_indexer import ELMoTokenCharactersIndexer\nfrom torch.utils.data import Dataset\nfrom torch.utils.data.dataloader import DataLoader\nfrom tqdm import tqdm\n\nfrom raw_data.events import DATA_PATH\nfrom pytorch_misc import pairwise\nfrom create_swag.lm.config import NUM_FOLDS\n\ndef load_lm_data(fold=None, mode='train'):\n    \"\"\"\n    Turns the sequential data into instances.\n    :param split:\n    :return:\n    \"\"\"\n    # Get or make vocab\n    spacy_model = get_spacy_model(\"en_core_web_sm\", pos_tags=False, parse=False, ner=False)\n    if os.path.exists('vocabulary'):\n        print(\"Loading cached vocab. caution if you're building the dataset again!!!!\", flush=True)\n        vocab = Vocabulary.from_files('vocabulary')\n\n        with open(os.path.join(DATA_PATH, 'events-3.json'), 'r') as f:\n            lm_data = json.load(f)\n        lm_data = [data_item for s in ('train', 'val', 'test') for data_item in lm_data[s]]\n    else:\n        assert fold is None\n        with open(os.path.join(DATA_PATH, 'events-3.json'), 'r') as f:\n            lm_data = json.load(f)\n        lm_data = [data_item for s in ('train', 'val', 'test') for data_item in lm_data[s]]\n        # Manually doing this because I don't want to double count things\n        vocab = Vocabulary.from_instances(\n            [Instance({'story': TextField(\n                [Token(x) for x in ['@@bos@@'] + [x.orth_ for x in spacy_model(sent)] + ['@@eos@@']], token_indexers={\n                    'tokens': SingleIdTokenIndexer(namespace='tokens', lowercase_tokens=True)})}) for data_item in\n             lm_data for sent in\n             data_item['sentences']], min_count={'tokens': 3})\n\n        vocab.get_index_to_token_vocabulary('tokens')\n        vocab.save_to_files('vocabulary')\n        print(\"VOCABULARY HAS {} ITEMS\".format(vocab.get_vocab_size(namespace='tokens')))\n\n    if all([os.path.exists('lm-{}-of-{}.pkl'.format(i, NUM_FOLDS)) for i in range(NUM_FOLDS)]):\n        print(\"LOADING CACHED DATASET\", flush=True)\n        if mode == 'val':\n            with open('lm-{}-of-{}.pkl'.format(fold, NUM_FOLDS), 'rb') as f:\n                print(\"Loading split{} for {}\".format(fold, mode))\n                instances = pkl.load(f)\n        else:\n            instances = []\n            for other_fold in range(NUM_FOLDS):\n                if other_fold != fold:\n                    with open('lm-{}-of-{}.pkl'.format(other_fold, NUM_FOLDS), 'rb') as f:\n                        print(\"Loading split{} for {}\".format(other_fold, mode))\n                        instances += pkl.load(f)\n        return instances, vocab\n\n    print(\"MAKING THE DATASET\", flush=True)\n    assert fold is None\n    for item in tqdm(lm_data):\n        item['sentences_tokenized'] = [[st.orth_ for st in spacy_model(sent)] for sent in item['sentences']]\n\n    def _to_instances(data):\n        # flatten this\n        instances = []\n        for item in data:\n            for s1, s2 in pairwise(item['sentences_tokenized']):\n                instances.append((\n                    Instance({'story': TextField([Token(x) for x in ['@@bos@@'] + s1 + s2 + ['@@eos@@']],\n                                                 token_indexers={\n                                                     'tokens': SingleIdTokenIndexer(namespace='tokens',\n                                                                                    lowercase_tokens=True)})}),\n                    s1,\n                    s2,\n                    item,\n                ))\n        return instances\n\n    random.seed(123456)\n    random.shuffle(lm_data)\n    all_sets = []\n    for fold_ in range(NUM_FOLDS):\n        val_set = _to_instances(lm_data[len(lm_data) * fold_ // NUM_FOLDS:len(lm_data) * (fold_ + 1) // NUM_FOLDS])\n        with open('lm-{}-of-{}.pkl'.format(fold_, NUM_FOLDS), 'wb') as f:\n            pkl.dump(val_set, f)\n        all_sets.extend(val_set)\n    return all_sets, vocab\n\n\nclass RawPassages(Dataset):\n    def __init__(self, fold, mode):\n        self.mode = mode\n        self.fold = fold\n        self.instances, self.vocab = load_lm_data(fold=self.fold, mode=self.mode)\n        self.dataloader = DataLoader(dataset=self, batch_size=32,\n                                     shuffle=self.mode == 'train', num_workers=0,\n                                     collate_fn=self.collate, drop_last=self.mode == 'train')\n        self.indexer = ELMoTokenCharactersIndexer()\n\n    def collate(self, instances_l):\n        batch = Batch([x[0] for x in instances_l])\n        batch.index_instances(self.vocab)\n\n        batch_dict = {k: v['tokens'] for k, v in batch.as_tensor_dict().items()}\n\n        batch_dict['story_tokens'] = [instance[0].fields['story'].tokens for instance in instances_l]\n        batch_dict['story_full'] = [x[1] + x[2] for x in instances_l]\n        batch_dict['items'] = [x[3] for x in instances_l]\n        return batch_dict\n\n    def __len__(self):\n        return len(self.instances)\n\n    def __getitem__(self, index):\n        \"\"\"\n        :param index:\n        :return: * raw rocstories\n                 * entities\n                 * entity IDs + sentences\n                 * Instance. to print use r3.fields['verb_phrase'].field_list[5].tokens\n        \"\"\"\n        return self.instances[index]\n\n    @classmethod\n    def splits(cls, fold):\n        return cls(fold, mode='train'), cls(fold, mode='val')\n\n\nif __name__ == '__main__':\n    instances, vocab = load_lm_data()\n    # train, val = RawPassages.splits()\n    # for item in train.dataloader:\n    #     for story in item['story_tokens']:\n    #         tok_text = [x.text.lower() for x in story]\n    #         remapped_text = [vocab.get_token_from_index(vocab.get_token_index(x)) for x in tok_text]\n    #         print('({}) {} -> {}'.format('D' if tok_text != remapped_text else ' ',\n    #                                      ' '.join(tok_text), ' '.join(remapped_text)), flush=True)\n"
  },
  {
    "path": "create_swag/lm/pretrain_lm.py",
    "content": "import os\n\nimport pandas as pd\nimport torch\nfrom allennlp.data import Instance\nfrom allennlp.data import Token\nfrom allennlp.data import Vocabulary\nfrom allennlp.data.dataset import Batch\nfrom allennlp.data.fields import TextField\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer\nfrom allennlp.data.token_indexers.elmo_indexer import ELMoTokenCharactersIndexer\nfrom torch import optim\n\nfrom create_swag.lm.simple_bilm import SimpleBiLM\nfrom raw_data.events import _postprocess\nfrom pytorch_misc import clip_grad_norm, print_para, time_batch\nfrom create_swag.lm.config import PRETRAIN_TXT\nassert os.path.exists('../vocabulary')\n\nvocab = Vocabulary.from_files('../vocabulary')\nindexer = ELMoTokenCharactersIndexer()\n\n\ndef batcher(inp_list):\n    \"\"\" batches, asumming everything is padded and tokenized.\"\"\"\n    instances = [Instance({'story': TextField([Token(x) for x in ['@@bos@@'] + subl + ['@@eos@@']], token_indexers={\n        'tokens': SingleIdTokenIndexer(namespace='tokens', lowercase_tokens=True), 'char_encoding': indexer}),\n                           }) for subl in inp_list]\n    batch = Batch(instances)\n    batch.index_instances(vocab)\n    result_dict = batch.as_tensor_dict()['story']\n    result_dict['story'] = inp_list\n    return result_dict\n\n\ndef data_runner(start_point=0, minlength=4):\n    print(\"starting at {}\".format(start_point))\n    with open(PRETRAIN_TXT, 'r') as f:\n        f.seek(start_point)\n        f.readline()  # Clear the partial line\n        for i, line in enumerate(f):\n            yield _postprocess(line)\n\n\ndef _sample_a_good_pair(gen, seq_length, min_length=3):\n    cur_status = []\n    eos_idxs = [i for i, x in enumerate(cur_status) if x in ('.', '!', '?')]\n    while len(eos_idxs) < 2:\n        cur_status.extend([x for x in next(gen).split(' ') if x is not '\\n'])\n        eos_idxs = [i for i, x in enumerate(cur_status) if x in ('.', '!', '?')]\n    if eos_idxs[1] >= seq_length:\n        return _sample_a_good_pair(gen, seq_length, min_length=min_length)\n    elif (eos_idxs[0] < min_length) or (eos_idxs[1] - eos_idxs[0]) < min_length:  # Too short\n        return _sample_a_good_pair(gen, seq_length, min_length=min_length)\n\n    return cur_status[:eos_idxs[1] + 1]\n\n\ndef looped_data_runner(batch_size=128, seq_length=50):\n    offset = 0\n    TOTAL_BYTES_TRAIN = 4343022454\n    generators = [data_runner(start_point=TOTAL_BYTES_TRAIN * i // batch_size + offset, minlength=0) for i in\n                  range(batch_size)]\n    while True:\n        for g_i, gen in enumerate(generators):\n            yield _sample_a_good_pair(gen, seq_length=seq_length, min_length=5)\n\n\ndef bucketed_data_runner(batch_size=64, seq_length=50):\n    length2batch = [[] for i in range(seq_length + 1)]\n    # Get diverse samples\n    for batch in looped_data_runner(batch_size=128, seq_length=seq_length):\n        length2batch[len(batch)].append(batch)\n        if len(length2batch[len(batch)]) >= batch_size:\n            # print(\"Yielding now of size {}\".format(len(batch)))\n            yield batcher(length2batch[len(batch)])\n            length2batch[len(batch)] = []\n\n\n# Dataloader\nmodel = SimpleBiLM(vocab=vocab, recurrent_dropout_probability=0.2, embedding_dropout_probability=0.2)\nmodel.cuda()\n\ntr = []\nmodel.train()\nfor epoch_num in range(2):\n    if epoch_num == 0:\n        optimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], weight_decay=1e-6, lr=1e-3)\n    else:\n        optimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], weight_decay=1e-6, lr=1e-4)\n\n    print(print_para(model))\n    for b, (time_per_batch, batch) in enumerate(time_batch(bucketed_data_runner())):\n        batch['tokens'] = batch['tokens'].cuda(async=True)\n\n        model_forward = model(batch['tokens'])\n        losses = {key: model_forward[key] for key in ['forward_loss', 'reverse_loss']}\n        tr.append(pd.Series({k: v.data[0] for k, v in losses.items()}))\n\n        loss = sum(losses.values())\n        optimizer.zero_grad()\n        loss.backward()\n\n        if b % 100 == 0 and b > 0:\n            df_cat = pd.concat(tr[-100:], axis=1).mean(1)\n            print(\"b{:8d} {:.3f}s/batch, fwd loss {:.3f} rev loss {:.3f} \".format(b, time_per_batch,\n                                                                                  df_cat['forward_loss'],\n                                                                                  df_cat['reverse_loss']), flush=True)\n        clip_grad_norm(\n            [(n, p) for n, p in model.named_parameters() if p.grad is not None],\n            max_norm=1.0, verbose=b % 1000 == 1, clip=True)\n        optimizer.step()\n        if b % 10000 == 0 and b > 0:\n            torch.save({'state_dict': model.state_dict()}, 'e{}-tbooks-pretrained-ckpt-{}.tar'.format(epoch_num, b))\n"
  },
  {
    "path": "create_swag/lm/simple_bilm.py",
    "content": "\"\"\"\nA wrapper around ai2s elmo LM to allow for an lm objective...\n\"\"\"\n\nfrom typing import Optional, Tuple\nfrom typing import Union, List, Dict\n\nimport numpy as np\nimport torch\nfrom allennlp.common.checks import ConfigurationError\nfrom allennlp.data import Token, Vocabulary, Instance\nfrom allennlp.data.dataset import Batch\nfrom allennlp.data.fields import TextField\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer\nfrom allennlp.modules.augmented_lstm import AugmentedLstm\nfrom allennlp.modules.seq2seq_encoders.pytorch_seq2seq_wrapper import PytorchSeq2SeqWrapper\nfrom allennlp.nn.util import sequence_cross_entropy_with_logits\nfrom torch.autograd import Variable\nfrom torch.nn import functional as F\nfrom torch.nn.utils.rnn import PackedSequence\n\n\ndef _de_duplicate_generations(generations):\n    \"\"\"\n    Given a list of list of strings, filter out the ones that are duplicates. and return an idx corresponding\n    to the good ones\n    :param generations:\n    :return:\n    \"\"\"\n    dup_set = set()\n    unique_idx = []\n    for i, gen_i in enumerate(generations):\n        gen_i_str = ' '.join(gen_i)\n        if gen_i_str not in dup_set:\n            unique_idx.append(i)\n            dup_set.add(gen_i_str)\n    return [generations[i] for i in unique_idx], np.array(unique_idx)\n\n\nclass StackedLstm(torch.nn.Module):\n    \"\"\"\n    A stacked LSTM.\n\n    Parameters\n    ----------\n    input_size : int, required\n        The dimension of the inputs to the LSTM.\n    hidden_size : int, required\n        The dimension of the outputs of the LSTM.\n    num_layers : int, required\n        The number of stacked LSTMs to use.\n    recurrent_dropout_probability: float, optional (default = 0.0)\n        The dropout probability to be used in a dropout scheme as stated in\n        `A Theoretically Grounded Application of Dropout in Recurrent Neural Networks\n        <https://arxiv.org/abs/1512.05287>`_ .\n    use_input_projection_bias : bool, optional (default = True)\n        Whether or not to use a bias on the input projection layer. This is mainly here\n        for backwards compatibility reasons and will be removed (and set to False)\n        in future releases.\n\n    Returns\n    -------\n    output_accumulator : PackedSequence\n        The outputs of the interleaved LSTMs per timestep. A tensor of shape\n        (batch_size, max_timesteps, hidden_size) where for a given batch\n        element, all outputs past the sequence length for that batch are\n        zero tensors.\n    \"\"\"\n\n    def __init__(self,\n                 input_size: int,\n                 hidden_size: int,\n                 num_layers: int,\n                 recurrent_dropout_probability: float = 0.0,\n                 use_highway: bool = True,\n                 use_input_projection_bias: bool = True,\n                 go_forward: bool = True) -> None:\n        super(StackedLstm, self).__init__()\n\n        # Required to be wrapped with a :class:`PytorchSeq2SeqWrapper`.\n        self.input_size = input_size\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        layers = []\n        lstm_input_size = input_size\n        for layer_index in range(num_layers):\n            layer = AugmentedLstm(lstm_input_size, hidden_size, go_forward,\n                                  recurrent_dropout_probability=recurrent_dropout_probability,\n                                  use_highway=use_highway,\n                                  use_input_projection_bias=use_input_projection_bias)\n            lstm_input_size = hidden_size\n            self.add_module('layer_{}'.format(layer_index), layer)\n            layers.append(layer)\n        self.lstm_layers = layers\n\n    def forward(self,  # pylint: disable=arguments-differ\n                inputs: PackedSequence,\n                initial_state: Optional[Tuple[torch.Tensor, torch.Tensor]] = None):\n        \"\"\"\n        Parameters\n        ----------\n        inputs : ``PackedSequence``, required.\n            A batch first ``PackedSequence`` to run the stacked LSTM over.\n        initial_state : Tuple[torch.Tensor, torch.Tensor], optional, (default = None)\n            A tuple (state, memory) representing the initial hidden state and memory\n            of the LSTM. Each tensor has shape (1, batch_size, output_dimension).\n\n        Returns\n        -------\n        output_sequence : PackedSequence\n            The encoded sequence of shape (batch_size, sequence_length, hidden_size)\n        final_states: torch.Tensor\n            The per-layer final (state, memory) states of the LSTM, each with shape\n            (num_layers, batch_size, hidden_size).\n        \"\"\"\n        if not initial_state:\n            hidden_states = [None] * len(self.lstm_layers)\n        elif initial_state[0].size()[0] != len(self.lstm_layers):\n            raise ConfigurationError(\"Initial states were passed to forward() but the number of \"\n                                     \"initial states does not match the number of layers.\")\n        else:\n            hidden_states = list(zip(initial_state[0].split(1, 0),\n                                     initial_state[1].split(1, 0)))\n\n        output_sequence = inputs\n        final_states = []\n        for i, state in enumerate(hidden_states):\n            layer = getattr(self, 'layer_{}'.format(i))\n            # The state is duplicated to mirror the Pytorch API for LSTMs.\n            output_sequence, final_state = layer(output_sequence, state)\n            final_states.append(final_state)\n\n        final_state_tuple = tuple(torch.cat(state_list, 0) for state_list in zip(*final_states))\n        return output_sequence, final_state_tuple\n\n\nclass SimpleBiLM(torch.nn.Module):\n    def __init__(self,\n                 vocab: Vocabulary,\n                 recurrent_dropout_probability: float = 0.0,\n                 embedding_dropout_probability: float = 0.0,\n                 input_size=512,\n                 hidden_size=512) -> None:\n        \"\"\"\n        :param options_file: for initializing elmo BiLM\n        :param weight_file: for initializing elmo BiLM\n        :param requires_grad: Whether or not to finetune the LSTM layers\n        :param recurrent_dropout_probability: recurrent dropout to add to LSTM layers\n        \"\"\"\n        super(SimpleBiLM, self).__init__()\n\n        self.forward_lm = PytorchSeq2SeqWrapper(StackedLstm(\n            input_size=input_size, hidden_size=hidden_size, num_layers=2, go_forward=True,\n            recurrent_dropout_probability=recurrent_dropout_probability,\n            use_input_projection_bias=False, use_highway=True), stateful=True)\n        self.reverse_lm = PytorchSeq2SeqWrapper(StackedLstm(\n            input_size=input_size, hidden_size=hidden_size, num_layers=2, go_forward=False,\n            recurrent_dropout_probability=recurrent_dropout_probability,\n            use_input_projection_bias=False, use_highway=True), stateful=True)\n\n        # This will also be the encoder\n        self.decoder = torch.nn.Linear(512, vocab.get_vocab_size(namespace='tokens'))\n\n        self.vocab = vocab\n        self.register_buffer('eos_tokens', torch.LongTensor([vocab.get_token_index(tok) for tok in\n                                                             ['.', '!', '?', '@@UNKNOWN@@', '@@PADDING@@', '@@bos@@',\n                                                              '@@eos@@']]))\n        self.register_buffer('invalid_tokens', torch.LongTensor([vocab.get_token_index(tok) for tok in\n                                                                 ['@@UNKNOWN@@', '@@PADDING@@', '@@bos@@', '@@eos@@',\n                                                                  '@@NEWLINE@@']]))\n        self.embedding_dropout_probability = embedding_dropout_probability\n\n    def embed_words(self, words):\n        assert words.dim() == 2\n        if not self.training:\n            return F.embedding(words, self.decoder.weight)\n        # Embedding dropout\n        vocab_size = self.decoder.weight.size(0)\n        mask = Variable(\n            self.decoder.weight.data.new(vocab_size, 1).bernoulli_(1 - self.embedding_dropout_probability).expand_as(\n                self.decoder.weight) / (1 - self.embedding_dropout_probability))\n\n        padding_idx = 0\n        embeds = self.decoder._backend.Embedding.apply(words, mask * self.decoder.weight, padding_idx, None,\n                                                       2, False, False)\n        return embeds\n\n    def timestep_to_ids(self, timestep_tokenized: List[str]):\n        \"\"\" Just a single timestep (so dont add BOS or EOS\"\"\"\n        return Variable(torch.LongTensor([self.vocab.get_token_index(x) for x in timestep_tokenized])[:, None],\n                        volatile=not self.training).cuda(async=True)\n\n    def batch_to_ids(self, stories_tokenized: List[List[str]]):\n        \"\"\"\n        Simple wrapper around _elmo_batch_to_ids\n        :param batch: A list of tokenized sentences.\n        :return: A tensor of padded character ids.\n        \"\"\"\n        batch = Batch([Instance(\n            {'story': TextField([Token('@@bos@@')] + [Token(x) for x in story] + [Token('@@eos@@')],\n                                token_indexers={\n                                    'tokens': SingleIdTokenIndexer(namespace='tokens', lowercase_tokens=True)})})\n            for story in stories_tokenized])\n        batch.index_instances(self.vocab)\n        words = {k: v['tokens'] for k, v in batch.as_tensor_dict(for_training=self.training).items()}['story'].cuda(\n            async=True)\n        return words\n\n    def conditional_generation(self, context, gt_completion, batch_size=128, max_gen_length=25,\n                               same_length_as_gt=False):\n        \"\"\"\n        Generate conditoned on the context. While we're at it we'll score the GT going forwards\n        :param context: List of tokens to condition on. We'll add the BOS marker to it\n        :param gt_completion: The GT completion\n        :param batch_size: Number of sentences to generate\n        :param max_gen_length: Max length for genertaed sentences (irrelvant if same_length_as_gt=True)\n        :param same_length_as_gt: set to True if you want all the sents to have the same length as the gt_completion\n        :return:\n        \"\"\"\n        # Forward condition on context, then repeat to be the right batch size:\n        #  (layer_index, batch_size, fwd hidden dim)\n        forward_logprobs = self(self.batch_to_ids([context]), use_forward=True,\n                                use_reverse=False, compute_logprobs=True)['forward_logprobs']\n        self.forward_lm._states = tuple(x.repeat(1, batch_size, 1).contiguous() for x in self.forward_lm._states)\n        # Each item will be (token, score)\n        generations = [[(context[-1], 0.0)] for i in range(batch_size)]\n        mask = Variable(forward_logprobs.data.new(batch_size).long().fill_(1))\n\n        gt_completion_padded = [self.vocab.get_token_index(gt_token) for gt_token in\n                                [x.lower() for x in gt_completion] + ['@@PADDING@@'] * (\n                                        max_gen_length - len(gt_completion))]\n\n        for index, gt_token_ind in enumerate(gt_completion_padded):\n            embeds = self.embed_words(self.timestep_to_ids([gen[-1][0] for gen in generations]))\n            next_dists = F.softmax(self.decoder(self.forward_lm(embeds, mask[:, None]))[:, 0], 1).data\n\n            # Perform hacky stuff on the distribution (disallowing BOS, EOS, that sorta thing\n            sampling_probs = next_dists.clone()\n            sampling_probs[:, self.invalid_tokens] = 0.0\n\n            # fix first row!!!\n            sampling_probs[0].zero_()\n            sampling_probs[0, gt_token_ind] = 1\n\n            if same_length_as_gt:\n                if index == (len(gt_completion) - 1):\n                    sampling_probs.zero_()\n                    sampling_probs[:, gt_token_ind] = 1\n                else:\n                    sampling_probs[:, self.eos_tokens] = 0.0\n\n            sampling_probs = sampling_probs / sampling_probs.sum(1, keepdim=True)\n\n            next_preds = torch.multinomial(sampling_probs, 1).squeeze(1)\n            next_scores = np.log(next_dists[\n                                     torch.arange(0, next_dists.size(0),\n                                                  out=mask.data.new(next_dists.size(0))),\n                                     next_preds,\n                                 ].cpu().numpy())\n            for i, (gen_list, pred_id, score_i, mask_i) in enumerate(\n                    zip(generations, next_preds.cpu().numpy(), next_scores, mask.data.cpu().numpy())):\n                if mask_i:\n                    gen_list.append((self.vocab.get_token_from_index(pred_id), score_i))\n            is_eos = (next_preds[:, None] == self.eos_tokens[None]).max(1)[0]\n            mask[is_eos] = 0\n            if mask.sum().data[0] == 0:\n                break\n        generation_scores = np.zeros((len(generations), max([len(g) - 1 for g in generations])), dtype=np.float32)\n        for i, gen in enumerate(generations):\n            for j, (_, v) in enumerate(gen[1:]):\n                generation_scores[i, j] = v\n\n        generation_toks, idx = _de_duplicate_generations([[tok for (tok, score) in gen[1:]] for gen in generations])\n        return generation_toks, generation_scores[idx], forward_logprobs.data.cpu().numpy()\n\n    def _chunked_logsoftmaxes(self, activation, word_targets, chunk_size=256):\n        \"\"\"\n        do the softmax in chunks so memory doesnt explode\n        :param activation: [batch, T, dim]\n        :param targets: [batch, T] indices\n        :param chunk_size: you might need to tune this based on GPU specs\n        :return:\n        \"\"\"\n        all_logprobs = []\n        num_chunks = (activation.size(0) - 1) // chunk_size + 1\n        for activation_chunk, target_chunk in zip(torch.chunk(activation, num_chunks, dim=0),\n                                                  torch.chunk(word_targets, num_chunks, dim=0)):\n            assert activation_chunk.size()[:2] == target_chunk.size()[:2]\n            targets_flat = target_chunk.view(-1)\n            time_indexer = torch.arange(0, targets_flat.size(0),\n                                        out=target_chunk.data.new(targets_flat.size(0))) % target_chunk.size(1)\n            batch_indexer = torch.arange(0, targets_flat.size(0),\n                                         out=target_chunk.data.new(targets_flat.size(0))) / target_chunk.size(1)\n            all_logprobs.append(F.log_softmax(self.decoder(activation_chunk), 2)[\n                                    batch_indexer, time_indexer, targets_flat].view(*target_chunk.size()))\n        return torch.cat(all_logprobs, 0)\n\n    def forward(self, words: torch.Tensor, use_forward=True, use_reverse=True, compute_logprobs=False) -> Dict[\n        str, Union[torch.Tensor, List[torch.Tensor]]]:\n        \"\"\"\n        use this for training the LM\n        :param words: [batch_size, N] words. assuming you're starting with BOS and ending with EOS here\n        :return:\n        \"\"\"\n        encoded_inputs = self.embed_words(words)\n        mask = (words != 0).long()[:, 2:]\n        word_targets = words[:, 1:-1].contiguous()\n\n        result_dict = {\n            'mask': mask,\n            'word_targets': word_targets,\n        }\n        # TODO: try to reduce duplicate code here\n        if use_forward:\n            self.forward_lm.reset_states()\n            forward_activation = self.forward_lm(encoded_inputs[:, :-2], mask)\n\n            if compute_logprobs:\n                # being memory efficient here is critical if the input tensors are large\n                result_dict['forward_logprobs'] = self._chunked_logsoftmaxes(forward_activation,\n                                                                             word_targets) * mask.float()\n            else:\n\n                result_dict['forward_logits'] = self.decoder(forward_activation)\n                result_dict['forward_loss'] = sequence_cross_entropy_with_logits(result_dict['forward_logits'],\n                                                                                 word_targets,\n                                                                                 mask)\n        if use_reverse:\n            self.reverse_lm.reset_states()\n            reverse_activation = self.reverse_lm(encoded_inputs[:, 2:], mask)\n            if compute_logprobs:\n                result_dict['reverse_logprobs'] = self._chunked_logsoftmaxes(reverse_activation,\n                                                                             word_targets) * mask.float()\n            else:\n                result_dict['reverse_logits'] = self.decoder(reverse_activation)\n                result_dict['reverse_loss'] = sequence_cross_entropy_with_logits(result_dict['reverse_logits'],\n                                                                                 word_targets,\n                                                                                 mask)\n        return result_dict\n"
  },
  {
    "path": "create_swag/lm/train_lm.py",
    "content": "import os\nfrom argparse import ArgumentParser\n\nimport numpy as np\nimport pandas as pd\nimport torch\nfrom torch import optim\nfrom torch.optim.lr_scheduler import StepLR\nfrom tqdm import tqdm\n\nfrom create_swag.lm.config import NUM_FOLDS\nfrom create_swag.lm.load_data import load_lm_data, RawPassages\nfrom create_swag.lm.simple_bilm import SimpleBiLM\nfrom pytorch_misc import clip_grad_norm, optimistic_restore, print_para, time_batch\n\nif not os.path.exists('vocabulary') or not all(\n        [os.path.exists('lm-{}-of-{}.pkl'.format(i, NUM_FOLDS)) for i in range(NUM_FOLDS)]):\n    print(\"MAKING THE VOCABULARY / DATA AGAIN\", flush=True)\n    _, vocab = load_lm_data(None)\n\n# ARGUMENTS\nparser = ArgumentParser(description='which fold to use')\nparser.add_argument('-fold', dest='fold', help='Which fold to use', type=int, default=0)\nfold = parser.parse_args().fold\nassert fold in set(range(NUM_FOLDS))\nif not os.path.exists('checkpoints-{}'.format(fold)):\n    os.mkdir('checkpoints-{}'.format(fold))\nprint(\"~~~~~~~~~USING SPLIT#{}~~~~~~~~~~~~~\".format(fold))\n\ntrain, val = RawPassages.splits(fold=fold)\nmodel = SimpleBiLM(\n    vocab=train.vocab,\n    recurrent_dropout_probability=0.2,\n    embedding_dropout_probability=0.2,\n)\n\nmodel.cuda()\noptimistic_restore(model, torch.load('e1-tbooks-pretrained-ckpt-370000.tar')['state_dict'])\noptimizer = optim.Adam([p for p in model.parameters() if p.requires_grad], weight_decay=1e-6, lr=1e-3)\n# scheduler = ReduceLROnPlateau(optimizer, 'min', patience=3, factor=0.1,\n#                               verbose=True, threshold=0.0001, threshold_mode='abs', cooldown=1)\nscheduler = StepLR(optimizer, step_size=5, gamma=0.1)\nprint(print_para(model))\n\nfor epoch_num in range(15):\n    tr = []\n    model.train()\n    for b, (time_per_batch, batch) in enumerate(time_batch(train.dataloader)):\n        # batch['char_encoding'] = batch['char_encoding'].cuda(async=True)\n        batch['story'] = batch['story'].cuda(async=True)\n\n        model_forward = model(batch['story'])\n        losses = {key: model_forward[key] for key in ['forward_loss', 'reverse_loss']}\n        tr.append(pd.Series({k: v.data[0] for k, v in losses.items()}))\n        optimizer.zero_grad()\n        loss = sum(losses.values())\n        loss.backward()\n\n        if b % 100 == 0 and b > 0:\n            print(\"\\ne{:2d}b{:5d}/{:5d} {:.3f}s/batch, {:.1f}m/epoch\".format(\n                epoch_num, b, len(train.dataloader), time_per_batch,\n                len(train.dataloader) * time_per_batch / 60))\n            print(pd.concat(tr[-100:], axis=1).mean(1))\n            print('-----------', flush=True)\n        clip_grad_norm(\n            [(n, p) for n, p in model.named_parameters() if p.grad is not None],\n            max_norm=1, verbose=b % 1000 == 1, clip=True)\n        optimizer.step()\n\n    # Get the validation perplexity\n    perplexity = []\n    model.eval()\n    for batch in tqdm(val.dataloader):\n        # batch['char_encoding'] = batch['char_encoding'].cuda(async=True)\n        batch['story'] = batch['story'].cuda(async=True)\n\n        model_forward = model(batch['story'])\n        losses = {key: model_forward[key] for key in ['forward_loss', 'reverse_loss']}\n        perplexity.append(pd.Series({k: v.data[0] for k, v in losses.items()}))\n\n    df_cat = pd.DataFrame(perplexity).mean(0)\n    print(\"Epoch {}, fwd loss {:.3f} perplexity {:.3f} bwd loss {:.3f} perplexity {:.3f}\".format(\n        epoch_num, df_cat['forward_loss'], np.exp(df_cat['forward_loss']), df_cat['reverse_loss'],\n        np.exp(df_cat['reverse_loss'])), flush=True)\n\n    scheduler.step(df_cat['forward_loss'] + df_cat['reverse_loss'])\n    torch.save({'state_dict': model.state_dict()}, 'checkpoints-{}/ckpt-{}.tar'.format(fold, epoch_num))\n"
  },
  {
    "path": "create_swag/lm/train_lm.sh",
    "content": "#!/usr/bin/env bash\n\nFOLD_ID=$1\nNUM_GPUS=3\nexport CUDA_VISIBLE_DEVICES=$((FOLD_ID % NUM_GPUS))\necho \"Sampling the candidates. remember to do this do this for all of the GPUS and to pretrain first!\"\npython train_lm.py -fold $1\n"
  },
  {
    "path": "create_swag/lm/vocabulary/non_padded_namespaces.txt",
    "content": "*tags\n*labels\n"
  },
  {
    "path": "create_swag/lm/vocabulary/tokens.txt",
    "content": "@@UNKNOWN@@\n@@bos@@\n@@eos@@\n.\nthe\na\nsomeone\nand\n,\nto\nin\nof\non\nhe\nhis\nis\nman\nher\nwith\nshe\nas\nat\nthen\nup\nare\nit\n's\npeople\ninto\ndown\nthey\nhim\nout\nwoman\nback\nfrom\naround\ncamera\nan\noff\nwhile\nover\nshown\none\n-\nlooks\ntwo\nby\nthem\nseen\nanother\ntheir\nwe\nother\nstanding\nperson\nmen\nturns\nsee\nwalks\nthrough\nhand\nfront\nfor\nwater\nroom\naway\nhands\ntakes\nplaying\nseveral\ndoor\nhead\nbehind\ngirl\nstands\neyes\nball\nholding\nnow\ncontinues\nboy\nface\nsits\ntable\nside\nsitting\nscreen\nbegins\ncar\nblack\nwhite\ntalking\nmore\nputs\ngroup\nonto\nagain\nhair\nyoung\nlarge\nthat\nshows\nfloor\nacross\nall\nwearing\nafter\nholds\nsome\ngoes\nsteps\npulls\nwho\nruns\nmoves\ngets\nstarts\noutside\nwatches\ninside\nshirt\nspeaking\nsmiles\nalong\nnext\nfield\neach\nstares\ndog\nwall\nhas\nbut\nwalking\nsmall\nlook\nopens\nwindow\ngrabs\nthere\nred\nend\nlady\nbefore\nground\nriding\nstops\nlooking\nhow\ntop\njumps\nblue\nplay\ntoward\nleads\nlittle\ncontinue\ngame\narms\nvideo\nthrows\ngives\ncomes\nopen\nclose\ntowards\nwatch\ntogether\nstill\nleaves\npicks\nstreet\nappears\nwell\ndoes\nits\nfalls\nwalk\nair\narm\ngaze\nagainst\nwatching\ncrowd\nglass\ntalks\nabout\nfeet\nboard\nbed\nlater\ndoing\nrunning\nusing\ngo\nhouse\nchair\nvarious\nlong\nhimself\nstage\nput\nsmile\nwomen\ngirls\nrope\nway\npast\nothers\nlifts\nmoving\nwhen\nboat\nget\npool\nstand\nunder\nbar\ndifferent\nends\nhorse\nwhere\nthree\npaper\nphone\nglances\nwhich\nboth\ndancing\njump\nkitchen\nmouth\nhigh\nreaches\nshakes\nuses\ndance\nforward\nshots\nguy\nlight\ndrops\nsees\nleans\nright\nsnow\nrun\nenters\nplays\nbegin\nbeing\nmakes\nbeside\nnods\nfaces\nflips\nslowly\ngreen\ntime\ndark\nice\nfollowed\nview\nshoulder\nset\nlike\nbody\nfollows\nteam\nbuilding\nshowing\nkids\nleft\nheads\nchild\ntree\nbetween\nclips\nhits\ngun\ngym\ntake\nmachine\nroad\nbag\nshot\nmove\nboys\nlegs\nmake\nstart\nbike\nfirst\napproaches\nbottle\ndo\nsit\narea\ntrack\nsmiling\nshow\njumping\nfinds\nsink\ncan\nline\npoints\nstick\nriver\nlies\npans\nhit\ntries\ndesk\nsame\nwaves\nbeach\nabove\nfew\nmiddle\nthis\nvery\nplayers\nclimbs\ncourt\nseat\nlips\ndrink\npushes\nperforming\nbox\nsets\nbrush\njust\nplaces\nturn\nchildren\nputting\nwords\ntimes\nlights\nyellow\ndressed\npiece\nbowl\nquickly\npours\nspins\nraises\ntitle\nroutine\ningredients\ncuts\noffice\nnear\ngoing\nfire\nold\nfinally\ngazes\ntricks\nroof\nstairs\nsand\nonce\ncars\nspeaks\nsomething\nreturns\nbars\nlowers\ncloses\nswings\nhat\neye\nkisses\nbeam\nstop\ntaking\nremoves\nknife\npasses\nthrow\ncounter\nthrowing\ngrass\nmirror\ndistance\nhold\ncup\naudience\nframe\nforth\nhangs\nfinishes\nmoment\ndrives\nsuddenly\nmetal\njacket\nhill\nrolls\ntalk\ntrying\nshoots\ncorner\nbottom\nmany\nhitting\nappear\nneck\nyard\nalso\nballs\ncut\ncouple\nmat\nrises\nplayer\nmotion\nwooden\nshoes\nslides\nchest\nring\ntruck\ncat\nleg\nrides\nlands\nbe\nhave\nride\nlawn\nslow\nedge\npole\nglasses\nfour\ndrums\ncredits\nreads\nfather\nsuit\npaint\nmother\nkicks\nbaby\nmaking\nherself\nbig\nlot\nfoot\nplace\nempty\nnot\nspots\nuntil\ncigarette\nbathroom\nsecond\npass\ngetting\nfingers\nstep\napartment\nhalf\ncovered\nfall\nsmoke\nliving\ncome\ndirt\ncutting\ncoat\nsky\npair\nrock\nfence\nbackground\ncatches\ndemonstrates\npeers\npicture\nstaring\nkiss\npictures\npan\nsides\nwave\nclothes\nplate\nnearby\njoins\nfinger\ndress\nwood\nseated\nhall\nswimming\nwhat\nweight\nhome\nwipes\ncity\nso\nbelow\ndone\nworking\nfull\nadds\nn't\nski\nopening\ngrins\nbrow\n;\n'\nbrown\npink\nfood\nsidewalk\nnotices\nbedroom\nbook\nwheel\ncream\ntowel\nrubs\nclean\ncouch\nnew\nfourth\nsticks\nready\nhurries\ncloser\nuse\nown\ntrees\nspinning\npark\nalone\ncrosses\nperform\nwide\npauses\nsoccer\nband\nspeak\npull\ntool\nguitar\ntosses\nexercise\nahead\nbridge\nslide\nocean\nwears\nwork\ngoal\nlays\nbeer\nphoto\ncarrying\nkid\nkeeps\nscene\narrives\ntext\nhaired\nbrushes\nmale\ngymnast\ntire\nstare\nnight\nonly\ncircle\nhorses\npulling\nstrides\norange\ntears\ndrinks\ndoors\nbow\nwashing\nshifts\ndoorway\ntennis\ntv\nknees\npushing\nswing\nhard\nperforms\nolder\npocket\nlast\nleave\nstone\nswinging\nkneeling\nfish\nbucket\nsign\nshoulders\nblows\ncoffee\nor\ncorridor\nround\nlift\nturning\npainting\ndogs\nfollow\nwaiting\ntouches\nnails\nmusic\nbrings\ncake\nlying\nteams\ngate\nknocks\nbends\nshoe\nlets\nfacing\nleaps\nsnowy\nchecks\nbrushing\nhanging\nmatch\ndiving\ncenter\nleaving\nhole\ngently\ntall\ncheek\nplatform\nlaying\nfriend\ncarries\nfinished\nbench\nhuge\npath\nbreath\nguard\ndeep\nending\nship\nfemale\nbalance\nclip\nbacks\nlaughing\nfast\nenter\nstraight\nbull\nathlete\nshuts\nskateboard\nnews\nblonde\nblow\nfilled\ncell\nflies\npiano\nequipment\nif\npot\nwash\ncleaning\nclimbing\nmountain\nnose\near\ndraws\nno\ntrain\nexpression\nshort\npresses\nrace\ncloth\nwindows\ncovers\npoint\nindoor\nbriefly\nfind\nfriends\nyou\nglares\ndriving\ngray\nhockey\nhelps\nwand\nlogo\nbeneath\nfrowns\nhelmet\ndriver\ngear\nteeth\nflip\nfinish\nwithout\nlake\n:\nbus\nsurface\ndeck\nbreaks\naside\nhallway\ncross\nhelp\nobject\nhug\npolice\nschool\nfar\nfamily\nfigure\nnet\nhugs\nflying\nlaughs\nstudents\nceiling\nsoldiers\npush\nclosing\nson\nday\nrushes\nname\ntools\nbowling\npile\niron\nwas\nsun\nrocks\ndances\npinata\nbreak\npunches\nvan\nshop\ncatch\ntoo\nteen\nshake\nus\ngrab\ncover\nsmoking\ngathered\nmovements\nalmost\nraft\nzooms\nintro\nstation\nnumber\nsilver\nbeen\nclosed\nshaving\nslips\nworks\nbit\npumpkin\ndrive\ndirection\nwrestling\nrest\nstudies\nmower\nblinks\nbackwards\nskiing\npassing\nfalling\nleading\nposition\ncard\nfinal\ndead\nfires\nparking\nliquid\nviolin\ncase\nstore\nlifting\npong\ntattoo\ncheer\nshut\nmeanwhile\nparked\npieces\nfrisbee\nclimb\nguys\ncarpet\ncoach\nlanding\ncontact\nkick\ncoming\nimage\npit\nblood\nrow\nslams\nplastic\nlit\nfly\nattached\nwraps\npart\nclear\ndemonstrating\nrevealing\nslightly\nsay\nwife\nfighting\nthemselves\nour\nrain\ndrinking\ninstrument\naims\nsong\nbows\nbikes\nspeed\nspin\nsoldier\nshoot\nform\nopposite\nladder\ncamel\ntank\nfive\ntube\ndrum\ncleans\nclass\nkeep\nmask\npants\ncheers\nreading\nreach\nlow\nt\nheavy\nimages\nhandle\ncall\nsword\nrailing\nshooting\nvolleyball\nhaving\nvacuum\nnod\ndry\nthird\nhula\ncompetition\ncircles\neating\nsandwich\nfight\nshorts\nlens\nbasketball\nuniform\nlead\nagent\nskis\napproach\nsinging\neveryone\nsprays\nmicrophone\nseems\nwaits\ndarts\npointing\nproduct\njoin\nplane\nlaugh\ngive\nbaton\nlap\nclock\ntray\nemerges\ngiving\ninterviewed\ncalf\ntry\nchain\nleaning\nstaircase\nhoop\nstudio\ncheering\nelevator\npracticing\ndives\nstruggles\ngiant\nroll\nentrance\ncomputer\ncards\nwashes\npick\nchin\nwet\nsoap\nprepares\nsurrounded\njaw\nkicking\ngreat\nscore\narena\nrests\nremains\nrestaurant\nmeets\napplies\ntight\nland\ntrunk\nslope\nbread\nkneels\nfree\nshines\nperformance\nups\nnarrow\nclaps\npolo\nwaving\nplaced\nhotel\ndriveway\ntubes\nbright\ncube\nsheet\ngloves\noutdoors\nforehead\nwind\ndart\nmop\ntaps\neven\nflipping\nfollowing\nofficer\nseries\nflat\nbumper\nscores\npolish\noutdoor\nspray\npreparing\nrear\nwalls\nporch\nvehicle\nmoney\nshaking\nmade\npurple\nletters\nbelly\nattention\neventually\nfencing\nfills\nobjects\ncaptures\nhammer\nmixes\nfist\npractice\nbeams\nforest\nevent\nnervously\nbutton\nthoughtfully\nsurfing\nkayak\nspot\ncap\nflames\npose\nshovel\nchristmas\nlacrosse\nindividual\nmeet\nsound\npins\nduring\nsea\ntie\nscissors\nmixing\ngymnastics\nshare\ngarage\ndrawing\nwrapped\nax\nrazor\nserves\npage\nbeard\ndishes\nropes\nmultiple\nraces\nchef\ndoctor\nhose\nangles\ncontinuously\nshoves\nrifle\nbasket\nscenes\nnewspaper\nswitches\ncontrol\nflowers\nparts\nadjusts\nkey\npipe\npaddle\nboats\nspectators\nweights\nmonkey\ninstructor\nracket\nreleases\nupstairs\nmakeup\nthings\nties\npulled\nblowing\npassenger\ngrey\nstretches\nbounces\nfades\noffers\ntiles\nwebsite\nexplains\ntape\nwine\nkite\nplayground\nparty\nboards\nblock\nsquare\nnail\ncrashes\nrise\nknee\nbalcony\nmap\ndust\narrow\nharmonica\nhood\nphotos\nrolling\nrag\nrubbing\ngestures\ntower\noven\ndisplay\nreveal\nlip\nletter\npouring\ncanvas\nlife\nsumo\ninstruments\nattempts\ncups\ngrabbing\nmix\nlines\nladies\npasta\nalley\nstrolls\nitems\nhospital\nstilts\nchases\ndancers\ntunnel\nkeys\nswim\nheld\nspreads\nlane\nbank\ncrouches\ncontainer\nslaps\nanswers\ndish\nbroken\ngrin\nstyle\nblanket\ntiny\nsuv\nsight\nmembers\nflag\nsays\nregards\nmarches\namong\n!\nwaist\ndrop\nthrown\nbusy\npats\nlower\narrive\nglance\nbelt\nbags\nalien\nwins\nnote\nhot\nclutching\ncab\ntown\ncanoe\nspeeds\nunderneath\nsunglasses\nbase\nshape\nthick\nspread\noverhead\neyed\ndemonstrate\ntoy\ndrawn\nturned\nwaters\nathletes\npaints\nstrokes\nspace\ndining\ntables\ncookies\nflash\nreferee\nskating\nguests\nexits\nsister\nnotes\ncarefully\njavelin\nlistens\ndisappears\nhops\nused\nleather\nwakes\nwoods\ngather\nchanges\nswims\nping\ncurling\nsofa\nfilm\ngarden\nwrapping\nsnaps\nroller\nstring\ndismounts\nreaching\nhips\nupper\nbrother\nsetting\nenvelope\nfolds\ngold\nstirs\npresents\ntail\nstepping\nclouds\nskin\nbecomes\ndaughter\nblond\nchairs\nadded\ndrags\noil\nfolded\nbird\nstrikes\nthumbs\napart\nscreens\nevery\ndressing\nknocking\nducks\nclub\nslices\nlamp\ndive\nopponent\nlaptop\nflashes\nshore\nraise\npuck\nproperly\nguns\nrack\nlined\nstomach\nstreets\nsweeps\ncontinuing\nindividuals\nslack\nread\ntips\nsurf\nfloating\ncaptain\nbare\nbuildings\nasleep\napproaching\nbending\nremove\nvoice\nmartial\nstarted\nbites\nsips\npour\nwheels\nblocks\neats\nbooth\nthin\nradio\nbearded\ncolorful\nbicycle\npalm\ncollapses\nwhole\nmain\nwax\nbat\nthan\ncarriage\nentire\nshaped\ntug\nbottles\nbackyard\nsecurity\nwrist\npaces\ngood\nramp\nunderwater\nbeat\nwiping\nstadium\nwill\npeeks\ngone\npockets\nbackward\nreturn\nwelding\nbeginning\nfurther\nlemon\npistol\npops\nshadow\nfile\ngift\ncourtyard\ncarry\npaddling\nwar\nafterwards\nstunts\nposes\nlie\ndips\nincluding\nmarching\npale\nthroat\nlid\ncabinet\npen\nsinks\ndarkness\ncrowded\nraised\npretty\nflute\nfaced\nextends\ntraffic\ncompletely\nindoors\ntent\nclothing\npassengers\ngrassy\nhelping\nspits\nshield\nshrugs\nshower\nstove\ntub\negg\narts\ninstructions\nstack\nsighs\nproceeds\nlobby\noutfit\nhear\nstopping\nswallows\nlength\njuice\nclapping\nstraightens\nchocolate\nspoon\ncabin\ntied\nslows\nlistening\nchase\ncolored\ncalls\nthroughout\nupright\nsail\nscuba\nbursts\ncautiously\ndouble\nbite\nleaf\ncart\nsidelines\nsaxophone\nmovie\npanel\nparallel\nwipe\ndough\ncourse\nparents\nframed\ncontents\nsleeping\nsigns\nembrace\nheavily\nartist\ndrawer\ndirectly\ndock\nbeyond\ncold\nsweater\nfishing\nskateboarding\ncheese\nprocess\nlifeboat\ncamels\nmixture\ntilts\nsmashes\nupside\nstuck\nheart\npiercing\nmonitor\nballet\nrush\nalongside\nswitch\naisle\nvault\nyounger\nelectric\nreflection\nadult\ngazing\nshirts\nbunch\nplaster\ndownstairs\nsip\nshelf\neither\nguards\npapers\nclap\nnurse\nsmaller\nboxing\nexplaining\nlaid\ndashes\npresent\nlocks\nmounts\nwriting\nmotionless\nadd\ntile\nironing\nsugar\ndries\nproducts\nkarate\nblade\nvest\nweapon\n're\nwarm\nhusband\neggs\ntoddler\nrips\nmorning\ntoilet\nwanders\nhurry\nbald\nmodel\nclosely\nfootage\nblower\ncheerleaders\nhedge\ndisc\ngames\ndisplayed\nelderly\nflings\nbutter\nresumes\nofficers\nfeatures\nhelicopter\ncurtain\nchamber\npain\nknitting\nhost\nmuch\nskate\nhopscotch\neat\nca\ntightly\nchange\ntoothbrush\nreplay\nfill\ncasually\nplates\nseats\nrings\naction\npowder\nsliding\nquick\nmountains\nstory\nsports\nmotorcycle\npeer\nbaseball\nfixed\nlet\njudges\nsqueezes\nexchange\ncomplete\nseeing\ninformation\ndryer\nreally\nsnowboarding\nwrites\ncrawls\nstunned\nwrap\nburning\nglow\npurse\ntaken\nrowing\nsponge\nathletic\ncloset\nexit\nplants\nlocked\nmisses\ncovering\nbend\nbouncing\ntrail\nstaff\ngroups\npaintball\nsure\nbrunette\nsix\nrobe\nspraying\nwiden\ntouch\nsalad\ncostume\ncheck\nvehicles\namerican\nstream\nbeautiful\nrail\nhang\ncage\ndistant\nsurfboard\ncliff\npotato\nscans\nfurniture\nwedding\nsharp\nhookah\ntea\ndescends\nexamines\ngrips\nwere\ngymnasium\nelliptical\nteacher\nthug\naim\nwrestle\nbooks\nlevel\nflame\nrider\nanxiously\nshadows\ngolden\nhesitates\nalready\nrough\nplayed\ntracks\npeels\nyanks\nsection\ncamp\nmug\ncheeks\njeans\ncooking\nlog\nrinses\naccordion\nchasing\nmowing\nforces\nagents\nlock\nawkwardly\nscreams\nfloat\nsadly\nfaint\npaddles\nwallpaper\nreporter\nyour\nmixed\nwrestler\nwake\nsends\npillow\nwindshield\nclutches\nburst\nhappy\nnaked\nriders\naged\nconcrete\ncircular\nsurfer\narrows\nthing\nvegetables\nmarley\nthoughtful\ntip\njet\nbriefcase\ncolor\nglowing\nneedle\nlay\nbarbell\ndrying\ntorch\nfists\nasian\nfreezes\nbraid\ntwirling\nmilitary\nfloats\nword\nledge\nboxes\nintently\nsnatches\nresting\nsupplies\nwalked\nwin\nhears\npartner\ncelebrating\nstorms\nsunlight\nmassive\nsplit\npages\nbrick\nsingle\nrows\nwinces\nposing\nmagazine\nskates\nears\nhills\nrafts\nhoops\nstarting\ntrash\nbloody\nflower\nloses\npack\nlist\naddresses\ncreature\nwithin\ntaxi\nbinoculars\nwings\nflight\nfur\ncleaner\nrink\npushed\ncelebrate\ncellphone\nlicks\nfrown\nflashlight\nfrozen\ncafe\ngraphic\nboarding\ntelevision\nweb\npoles\nlotion\njack\nwrestlers\nbikers\nteens\ncocks\ncash\nstumbles\nrounds\nsearches\nfun\nglancing\nfocus\npace\nblades\ntear\ncastle\nsandy\nfaucet\nrod\nenjoying\nsmokes\nadults\nshoveling\ncaught\nbaking\nintroduction\nelsewhere\nstool\nhides\ntwists\nrepeatedly\nwait\nsings\nattempt\nsleeve\ntarget\nangle\npower\nfallen\nsuitcase\napply\npainted\ncottage\nlost\nbowls\nwalkway\ndesert\nserve\nprepare\nnumerous\nexercises\nsnowboard\nhurls\nsunny\nfully\nangrily\nworker\nboots\nmissing\ncalm\nskirt\ncloud\ncrash\nnothing\npotatoes\nanimal\ntrainer\nfaster\ncompany\ntechniques\nholes\narmy\ndancer\nsprints\ncreeps\ndoll\nglides\njogs\neverything\nshirtless\nraising\nskateboards\nwaiter\nrecording\nimmediately\ncomb\ngrooming\nfrisbees\nclassroom\nsleeps\npunch\nupward\nwhips\nsteel\nsoftly\nclearing\nbath\nunison\nquiet\ninspector\nany\ntutorial\nhers\ngrinning\ncrashing\nitself\nsurprise\nracing\nstraw\ngoalie\nhighway\ndumps\nbell\ngas\nfocuses\nrub\nfan\ncameraman\nlunges\nglows\nrecord\ndad\nsuits\nstatue\n2\nsteep\nsurfers\nrocky\nseconds\ngrows\nuneven\nbushes\nproper\nheard\nrake\nsunscreen\nenergy\ncollar\nsedan\nstrip\ninches\nstay\nsilence\ncatching\nkeeping\nscarf\nphotograph\npositions\npodium\npicking\nshaves\ngates\nattempting\ncroquet\ntwirls\nsmirks\nfurrows\ncandle\nsprings\npuzzled\ntires\npress\ngoals\nquietly\nmost\nhop\nvisible\nthese\npoured\nbiker\npretends\nshave\nhalt\nheading\nsparks\ndesperately\ngrip\nbedside\nfootball\nelse\nbarrel\nsmirk\nstudy\nworld\nbumps\nbodies\narmed\ndrifts\nvast\npunching\nslip\nsailing\nhad\nmeasuring\nlocations\nsmacks\nstudent\ntongue\nliquor\ncrossing\nhappily\ngown\nclears\nsniffs\nsideways\ndebris\ncrew\nsoft\nowner\nsurprised\nmeat\nreal\nchopping\ntiger\nrichard\nparker\ncricket\nbeats\nwear\nwearily\nstruggle\nboot\nstopped\nwildly\nmom\nhiding\ndirty\ndropping\ngesture\nwheelchair\nhorror\nlemons\ncue\ncone\nhalts\nremote\nthumb\nsafe\nheadlights\nself\nsurrounding\nstretching\nloose\ndevice\npackage\nconfused\nplacing\nwire\ntrophy\nbasement\nisland\nleash\nbarn\ntrampoline\ncookie\nshuffleboard\nlounge\npavement\nhook\ntypes\naddress\n3\nart\ncreating\nforce\nbranches\naverts\npacked\nplant\nfans\nangry\nvideos\nconversation\nmeasure\nwinner\npeeling\nengine\ngathers\nfrench\ntimer\ncustomer\ni\ndusty\nstays\nrising\ndrill\nlighter\nrecords\ngerman\ncrack\nallows\nscrubs\ndiver\nsharpening\nshuffles\nchurch\ncharges\nsending\ngeneral\nprotective\nsmooth\ncigar\nnecklace\nmilk\nlimbs\njumped\npumps\ncurb\ndealer\npatch\ncrying\nareas\nemerge\nremain\nbrief\ninterview\nescape\nhigher\nreception\ndisplays\nmarch\nfruit\ncompletes\nprofessional\nraking\nbungee\nbulls\ntraining\ncop\ngrimaces\nfights\nincludes\nshotgun\nleap\nsurround\nbartender\nairport\ndrag\ninjured\nremoved\nflags\ncable\ncandy\nbin\nuniforms\nmoved\nable\nlemonade\noutro\nroping\nnotice\ncurls\ntenderly\nsad\nbullets\nchampagne\natop\nentering\nhearing\nwritten\nattack\nstructure\nstruggling\ndrift\nclerk\nrubber\nmanager\nserving\ncrowds\nbear\nbangs\nopened\nfabric\nsweat\nbraids\napplying\nworkout\ndivers\nengaged\ndid\nrafting\nwagon\nzoom\nexplodes\nweapons\nfixes\nscrambles\nhalfway\nstaggers\nsalon\nshelves\nfigures\nkissing\nmoon\nunconscious\npoliceman\nshiny\npin\ninner\nsport\nsauce\nscrubbing\npresenting\nslumps\npublic\nremaining\neyebrows\nhuman\ndials\nbusiness\nfeels\nfrowning\npausing\nbreaking\nnapkin\nrooftop\nsafety\nabruptly\nsleep\npractices\nwhose\nsocks\ndinner\nreceiver\nteammates\nspecial\nbroom\npaw\nshocked\nmaster\nsoda\nadding\nharness\nbullet\njar\nseparate\nfridge\nbleachers\nfrantically\nbarely\nglimpse\nfurrowed\nletting\nyards\ncement\nnotebook\nmeeting\nthough\nedges\nkind\ngradually\ndragon\ncook\nexercising\ninclude\noccasionally\nmans\npost\nfoosball\nbuttons\nloads\nthrusts\nwallet\nwounded\nalcohol\ncouples\ndisappear\nmounted\nsigh\naxe\nbackpack\nexcited\n4\nblank\nthrew\nmopping\napplauds\nchips\npatio\nlimo\nreveals\nelbows\nhip\nretrieves\nsuite\nconcerned\ngrave\noverlooking\nremoving\nheels\ninserts\nmotions\nphotographs\nsails\nbring\nmatches\nstylist\npitcher\ntelephone\nsalt\nsisters\nshock\nanswer\nsharpen\nrapids\nkayaks\nhandsome\nbatons\ncolors\nnames\ntrots\nmid\ngloved\nanimated\ndownward\nfork\nlipstick\nlab\nsphere\nflashing\nnervous\nfilming\nonlookers\nstartled\nupon\ntype\nwent\nrafters\nscreaming\ngymnastic\nclad\nmouths\nrapidly\nad\ninstead\nnearly\nspies\njerks\nclaws\nglove\nenormous\ninterior\nbranch\ntap\nbent\nsnake\ntrim\nscrews\nrinse\nwild\nnever\nattendant\no\nwaterfall\ntechnique\ncompete\nlingers\ndigs\nheadphones\nmansion\nwaitress\nevening\nbutt\nsplits\napron\nstrike\nworkers\nneighborhood\nheaves\nstorm\nsettles\nsquats\nsteady\nworkshop\ndirections\nthought\ncelebrates\nkayaking\nviewers\nfountain\nlocker\nrug\nfake\nreluctantly\ntearfully\nhide\nbarber\ncord\ncasts\nrim\nmobile\nalarm\nshining\ngrasp\nblouse\nlightly\ngoggles\nfell\nwitch\nsaw\ndiner\nbush\nbetter\ntrimming\nsegment\ndarkened\nvodka\nswerves\ntumbles\ndeserted\ntugs\nfloors\nvampire\n1\nreturning\nmanages\nshaft\nbattle\nmessage\nshine\nshovels\nspreading\nfix\nbounce\nways\nribbon\nthread\ntomato\ncanoes\nbagpipes\ncasino\nwandering\nknives\ninflatable\npounds\nglare\nstar\nbreathes\nflaming\nlean\nhidden\nsteam\nwinding\nbreathing\ntouching\narmored\ncurly\nscoops\ninterviews\nmember\npump\ncausing\npointed\nitem\npipes\numbrella\nwinning\nwinter\nforeground\nbecause\nbatter\nleader\nshrug\nkeyboard\nwinks\ntender\nlimp\nflicks\nswirling\npause\ntroubled\nyet\nhelplessly\nprivate\nmustached\nhouses\nsergeant\ncreate\nintroduces\nmanner\nquite\nscoring\nbegan\nsolve\nproudly\nstuffed\nslice\nlisten\ncolleague\ncast\ncameras\nignores\nsearch\nfirmly\nhundreds\nsite\ncountry\nchalk\ncompleted\nsing\ncarved\nlenses\nsize\nminutes\nyear\nlonger\nseem\nembarrassed\ntemple\nbalancing\nteenage\nhoodie\nlarger\ndisbelief\ngrand\ndecorating\ncops\nportrait\npickup\nsucks\nstairwell\nworried\ncalmly\nscowls\nblankly\nweary\nnarrows\ngap\nsaunters\nwig\ncowboy\nreplaces\nstriped\ncombs\nmachines\nfilling\nbay\nbanner\ntwirl\nkites\ncombing\ncloseup\nsolution\npuzzle\nstacks\ncrotch\nsticking\ndangling\ncurtains\nreport\nscratches\nexcitedly\ncandles\ncocktail\nlifted\nwrists\nlantern\naiming\ncrate\nlever\nconstruction\nchopper\nempties\nbrightly\npolicemen\nbikini\nsharply\nadjusting\nvillage\npenguin\nadjust\ncave\nnumbers\nhelmets\nyells\ncoaches\nsuccessfully\nled\nstrong\nexplain\nloud\ntrick\ntrips\ndresser\npalms\ntrims\npuffs\nbra\neight\nchinese\nshades\nfinding\nhandful\nstalks\ncame\nrussian\ntractor\ntucks\nsweep\ngentle\nconference\ncarving\nhurriedly\nanimals\nmind\nmallet\nsudden\npad\nscrub\nstrange\nbowing\ntoys\nearth\ndraw\ntubing\nmaterials\nsometimes\npanning\noffscreen\nornaments\nmustache\nwound\ncalled\npuff\namid\npeering\nuneasily\nenough\nhauls\nbreast\nindicates\ntightens\nelephant\nsilent\nelbow\nnazi\ncurled\nfoam\ndimly\namongst\nspear\ncoin\ntossing\nparlor\nking\nstrength\ngiven\ndiscuss\ndiscus\ntheater\ndecorated\nchicken\nsneaks\ncool\nblast\nrolled\nindian\npassionately\nsack\ncape\nattacks\nknits\nsearching\ndot\nawake\nbubbles\nassistant\nloaded\ntravel\nsupport\ncaresses\nelegant\ncollects\nplain\nyork\nspider\nwashed\ncloak\npressed\njungle\nbuckets\nmeasures\ninterviewing\nmarathon\ncurlers\nsharpener\nskier\nfives\nremembers\nsteering\nmows\nstretch\nboss\nextremely\ncane\nwarehouse\nankle\nunlocks\ngracefully\ntrailer\nlaunches\nguides\nbest\ndried\navoid\nglistening\ntissue\nplaza\npier\npassed\ngrowing\nbecome\nhugging\nparade\nmovement\ncuriously\ncats\nramps\ncrane\nsolves\nfear\nchopped\nyears\ntorn\njawed\nbroad\ntiled\nbears\nsilhouetted\nhooded\ngroom\nengage\njudge\npressing\noutstretched\nsurroundings\ndeeper\ncry\nmats\ndodge\neasily\ngesturing\nwhiskey\nwinds\nclipping\nflops\nknock\nautomaton\ndeeply\nnamed\nmark\nsilently\nchannel\npenguins\nbmx\nlocation\ntwice\nvacuums\nshingles\nbraiding\nskiers\nparks\nfresh\nsignals\ngreets\n?\ninterspersed\nlove\nstranger\ntowering\ncrouching\naerial\nservant\ndozens\nknocked\nswarm\ntops\npop\nsteadily\nknit\ntrails\nsweeping\noutfits\ndisappointed\nbolts\ncleaned\nbreakfast\nsplashes\nfoyer\nfireplace\nhut\ndragged\nswords\nterrified\nblender\ncow\ncompeting\nscraper\nlocket\ngymnasts\nsquash\nmixer\nperfect\nfat\nhorrified\nplayfully\nbomb\ntoe\nbathtub\nexhales\ntravels\ntoes\ndrapes\ncigarettes\nchecking\nstrap\nreceives\nsurfaces\nelevated\nburly\nconsiders\npet\nsmooths\nsized\nposter\nwhispers\nformation\nload\nfilms\nreporters\npattern\nlicking\nblindfolded\nrepeats\nmedal\nsheets\nenclosure\nenjoy\npets\nbigger\nhedges\nopposing\ntitanic\nhats\nsaying\nbadminton\npommel\nbump\nobserves\ncans\ncracks\nstuffs\nrefrigerator\ndim\nunit\nexplosion\nflashback\nwatched\nmic\nluggage\nserious\ncrystal\nlightning\nreappears\nsplash\nmarket\nfold\ncustomers\ngrasps\nlowering\nstuff\nconvertible\nstroll\nsoon\ntoss\n10\nbalances\nstairway\ntowels\nswoops\ndraped\nnoodles\nhorizon\nclicks\nbumping\ntin\napplaud\ncertain\nzombie\njob\nsort\nornate\nmini\ngolf\nhooks\npaws\ntypewriter\ngarbage\npokes\nfeeds\nservice\npicnic\ndodges\npillar\ncharge\nhorn\nhatch\nstabs\ncommander\nbarrier\nstained\nthugs\nilluminates\nshuffle\nreacts\ncampfire\nmarks\ncostumes\nboxer\ncontaining\npartially\napplause\nroofed\nponytail\ngrill\nthinks\nexcept\nsections\nnoise\ntying\nirons\nhere\ngot\nscoreboard\nguest\nwhistle\nthose\nscraping\nfails\nflour\ncattle\npicked\nvolley\nprogress\nsuccessful\nlots\nsuch\npolishing\nspaghetti\nrubik\ntransitions\nhosting\nlogos\nrubix\nlandscapes\ntearful\nbicycles\njoint\npencil\nstall\nlurches\nten\nauditorium\nambulance\nfixing\ncounts\norder\narriving\nsqueeze\nstate\ndowns\nkneel\nshadowy\nstride\npresident\nsolemnly\nslight\nwhip\nskull\nhandles\nmount\nhurling\nbills\ngathering\nslumped\nouter\npepper\ntoothpaste\nmaterial\nnice\ncarried\nshears\nblinds\nduck\nstern\nlink\nmasked\npitch\nsharpens\nmist\nbeaming\nrifles\nhunched\nink\ndescend\nlooms\nbasin\nsecretary\nsleeves\nbalding\nviews\nspotlight\nhandstand\nreflected\ndresses\nhydra\nmechanical\ncompartment\ngravely\nyouth\nproduces\naccepts\nless\nrooms\nofficial\ndrawings\ncartoon\nrepeated\ncrewman\nadvertisement\nreacting\nscotch\nmotel\nsteward\npucks\nshould\nscrapes\nmates\nobstacles\nswimmers\nrunners\ntapes\ninch\nrevolver\nmarked\nprofile\nstars\npizza\nadvances\njoined\nstomps\ntrudges\nbraces\nlogs\nunseen\ncurl\ntroops\nstretched\npensively\nclenches\ngripping\nshifting\ninspects\ndabs\nhandbag\ndrain\nbackstage\nsquad\nmail\nperched\ntowers\nrelief\ngrim\nsprinkles\nmess\npond\nteammate\nborder\nsequence\nbolt\nclient\ncooks\nballerina\nwets\nrealizes\nwould\nexperience\ndemonstration\nrackets\nspell\nswipes\ntensely\nclinging\nfrustrated\nshed\noncoming\nsolo\npacks\ndesign\npriest\ngleaming\nrose\nbrothers\nchops\ncontrols\nuniformed\nstacked\neyeing\nearly\nuncomfortably\nwing\nfondly\nanxious\ndragging\nmuddy\nchanging\nshallow\ninstructs\nmops\nstones\nmarble\ngarment\npaste\nflowing\nowl\nstrings\nlighting\nfitness\nmulch\nrakes\nexcitement\ndiscusses\ntroll\nhogwarts\nbroomstick\nomelette\nsanding\ntargets\nwarmly\nankles\nsurveillance\nflinches\nbeige\ndozen\nlunch\nskyline\ntumble\nbirds\nlimps\ncargo\nlive\nsolemn\nattaches\nexterior\nmartini\nmarker\nblinking\nonstage\ncolumn\nstudying\nage\nforms\nweather\nbuild\nhanded\nevents\ndriven\nterrace\ndrumming\nknob\nmotor\nblocking\nmud\ngawks\nnormal\nscenery\nheight\nbeast\nanchor\neffort\norchestra\nclippers\nthoroughly\nracquetball\nawkward\nuneasy\ntumbling\nneatly\nballroom\ndigital\nticket\ncluttered\nresidential\ntrimmer\nknow\nnudges\nhurt\nbound\nbride\nmeal\nridge\nlaundry\nbundle\nlandscape\napple\nforming\nsatisfied\nscream\nwithdraws\narchway\nmechanism\nrobot\nsweatshirt\narmchair\ncollection\ncurved\njersey\npierces\nbreeze\nintense\nreaction\nmales\nrocking\nchewing\nspiral\nchop\nshelter\ntook\nstyles\nblown\neffect\nfields\nsaddle\nunable\nlettuce\nobviously\nsalesman\nvictory\nhowever\nslopes\ncrunches\ndiary\nvacuuming\nbongo\nstyling\ndodgeball\nrollerblading\ntest\nsways\nfiring\ndangles\ndrawers\nfolder\ndetermined\nwrestles\nchatting\ntrousers\nsinger\npacket\npurses\npiles\nambles\nnuts\nbounds\nact\ntrembling\nbewildered\nretreats\nhuddle\nrobes\ngrenade\ncockpit\ngulps\nbreaths\nbarefoot\nblind\nsquints\nmanuscript\ntwins\no.\ncrossed\npedestrians\ntriangle\ntoast\nrotates\nburn\nlayer\nchuckles\nextended\nfinishing\nexpectantly\nstance\npropped\nunderwear\nsubway\nmercedes\ndate\ncotton\nmouse\nnodding\nsuited\nshaker\ncopy\ncooked\nspills\ndrummers\nsheriff\nimpressive\naware\nactivities\nneed\ntrolley\ntam\npumpkins\nseven\nskyward\nflee\nstrapped\nchews\nswigs\nabandoned\nscurries\nfingertips\nhanding\nballoon\nbouquet\nloft\nrange\nhighlights\nsoftens\nguide\noperator\nsubstance\nbeauty\nunfolds\ncredit\ncommand\nexplode\ntooth\nbunk\nstreams\nrunway\nstationary\nsquares\nbad\npatrons\nperfectly\nundoes\nsoaked\ncries\nprocession\nresults\ngrimly\nbathing\nsketch\ntwist\nlion\narc\nmoments\ncontains\noriginal\ndisplaying\nspatula\nfeeling\nfrost\netc\ntomatoes\nstirring\ndipping\ntattooing\ncheerleader\nliquids\nsubscribe\ngang\npedal\nacoustic\nstraps\ndons\nemergency\nshouts\nstripes\npoker\ndripping\njournal\ncanopy\nreflects\npowerful\nsobs\ndetective\nsteers\nblasts\nshares\nsignal\nvision\ndocument\nneon\nmedical\nhandkerchief\nsteals\nsilhouette\naide\nfellow\ntrooper\nprint\nsurfs\ngifts\nsneakers\ntrunks\nhuddled\noffices\nfit\npatient\ndrills\nfocused\nbrought\npacking\nstiffly\nclearly\nshapes\npressure\ngraphics\nhorseback\nconcern\nvalley\nmight\nstair\nexcess\ngoodbye\nfoil\nswimmer\nheat\nlaces\nhardwood\nyelling\nanything\nlate\ndropped\namazement\ngoblin\ntackles\nsafely\nbringing\n20\nwriter\nshopping\nrelaxes\nbruised\ngallery\nfriendly\ndiamond\ncomplex\nsounds\novercoat\nnears\nplunges\nsuspended\nmass\ntransport\nadjacent\ngum\nescorts\nswiftly\nfacility\nilluminated\nsunset\nbowler\nshift\namused\navoids\nfarther\nwistfully\ntrophies\ncoins\ncoffin\nsettings\nlanded\nasks\nrhythm\nfluid\nlawnmower\ncentral\nboiling\nspar\ntrip\nsomersaults\nscroll\nyoga\nmall\ns\npeel\nvet\nsnowboards\nshaver\nsporting\nfuriously\nbats\nrecoils\npensive\nfiery\nplan\n've\nburies\nushers\neasy\nlowered\nfrightened\nherd\ndazed\noar\nknowing\nsipping\nfactory\ntucked\nonward\nsheepishly\ntapping\nvigorously\nupwards\ncoldly\nparted\nsimple\nuncle\njeep\nbuilt\nengineer\nspacious\nnine\nvent\nneighbor\nactivity\nlashes\ncones\nbureau\nflask\ndrones\ndrains\nhelpless\nsyrup\ndisk\nneeded\nrodeo\nsled\npersons\nmouthwash\ndoubles\nrapid\nbeckons\nbandage\nflees\nhandgun\nglide\naid\nflow\nwrenches\ncorpse\ndollar\n5\nreached\nstrewn\ntorches\ndaylight\ncreates\npajamas\ndagger\nsecret\ntwisting\nscar\nmakeshift\nphotographer\nd\nescort\ntaped\nreverses\nbrakes\nsoars\nilluminate\nfair\nproceed\npilot\nclasps\neyebrow\ngapes\nswig\nscattered\nrelease\nthigh\npanels\nbongos\ncanister\ngreet\nballoons\nflexes\nscoop\nhovering\ncorners\nhillside\nprison\nsiting\nspare\nsyringe\nfarm\nhorizontal\npleased\nearlier\nroars\ncaptions\npassageway\ndrone\ndome\npretend\nolympic\npedals\ndiscs\njewelry\nlibrary\namusement\nshortly\nloudly\ntattoos\ndescribing\nsailboat\nbrushed\nbiking\ninstructing\nnewscaster\nwasher\nformer\nroots\ncrawl\nmodern\npaperwork\nmatching\nintersection\nnoticing\nsmart\nafrican\ncharacter\nveil\ndrunk\nweakly\nplank\nslings\nhopping\nscan\nprisoners\nreverse\ncruiser\nscramble\nunwraps\nestate\nbearing\nswivels\nsnap\nmusicians\nmomentarily\nactually\nenclosed\npads\nviolently\n30\nsupply\nexhausted\nsemi\nbill\nbug\nskillet\nembraces\ncot\npolished\ndeath\ngrounds\navoiding\nstereo\nstiff\nshell\nanimation\ncharacters\nsailors\nstrips\nprepared\nclipboard\nattractive\ninstant\ncare\nreplays\nrat\nturbulent\nmedals\npumping\nbackdrop\ncutter\nanger\nbrand\nfunny\nscrape\ncubes\nwarming\nroads\ncommercial\ngryffindor\nskateboarders\ngroomer\ndrummer\ncolumns\nhatchback\ncymbals\neagerly\ntwin\nbleeding\nmaid\nhovers\ntransfixed\nexposed\nblazing\nspectacles\nprisoner\ntense\nrailings\npays\nrip\nfeed\nshields\nvalet\nbritish\npairs\nbroadly\nhesitantly\nscooter\npie\nperformers\nairplane\ndesperate\nbackseat\nhangar\nsurfboards\nbone\ntrucks\nrunner\nlighted\nadvance\ndecorate\nfedora\naccidentally\noblivious\nsmells\nwhacks\nquizzically\nwrite\nbowed\nfaintly\nswaying\nuncertainly\njug\nflood\ndip\nsquatting\npaved\nopponents\nzoo\never\nfrosting\ns.\ntaller\nlooked\ndorm\ntai\ncupboard\nslam\njoy\nkicked\nshowed\nvoices\ncapture\nassembling\ntango\ntill\ndecorations\nskills\npetting\nrollers\nteaching\ninteracting\nmotocross\nbake\nfishes\nstruts\nhandlebars\nvaults\nenglish\nlaughter\ndirects\nquestion\nspikes\nswap\nglumly\nweaves\nhandcuffs\ncradles\nresume\nkit\nspanish\ndying\nflap\nportion\ntwisted\nevenly\nwires\nrelieved\ninstantly\noperating\ncoats\ngunman\ncoast\nbelongings\nstir\nspring\namount\nstretcher\nhanger\nsupports\nprops\ncrawling\nolive\nwarily\nblindfold\nancient\nmachinery\npalace\nelaborate\nscrew\noutline\nmanhattan\ntastes\nonions\nwardrobe\nstrainer\nrecipe\nhaircut\ntells\nlining\nsqueezing\nwo\nbutcher\nweld\nsir\n&\ngloomy\ndestroyer\nsliced\nreact\ncom\nmob\nminas\narchery\nselfie\npictured\ndealing\nskateboarder\nobstacle\npatrol\nbustling\nlose\nprincipal\ngoateed\nex\ntuxedo\nclothed\npopcorn\ncemetery\nharbor\nshyly\nspeeding\nbrace\npatiently\npacing\nluxury\ncreep\nfidgets\narches\ntentatively\nsilk\neffects\neyelids\nmusician\nheaded\nbrilliant\nfeaturing\nsalutes\ntorso\nperimeter\ncanyon\nmaneuvers\nstriking\nholder\npiled\nmattress\ncurrent\nmurky\nterrain\nperspective\ntired\nfearfully\nbun\nbriskly\ngliding\nleotard\ngrow\nblocked\nshade\nhammers\nstable\nfumbles\nrecorder\nbarricade\nships\nbaked\ncartwheels\ngel\ntag\nprofessor\nresponse\nprow\nyoutube\njogging\nlimb\nfingernails\ngroomed\ntraveling\nbeers\ndismount\nmagic\nmane\npony\nrepair\nskipping\nlime\nchoppy\nyarn\nhooping\nvase\nphones\nsweet\ntan\nminute\nsmashing\nhollow\nstriding\ntopples\nseal\nhunter\nmodest\nseizes\ncrates\narched\nzips\ngravel\ncompanion\nplatforms\naircraft\nwags\nsync\ndescending\npout\ncomfortable\nscissor\nmodels\ndial\nrushing\nrubble\ncrumpled\ndetail\ncrouched\ntreads\nlone\nbully\nintensely\nfighter\nslung\nvacant\nfirm\nbenches\npassionate\nlabel\nsystem\nmuscles\ntrimmed\nwindscreen\nbonnet\ngreeting\njackets\nswirl\nuncertain\npassage\nlush\ngears\nslamming\nfarmer\nheadset\ntournament\nwon\nnozzle\nretrieve\nwooded\ninflated\nlastly\nchi\nzombies\ncompetitors\npresence\ndescribes\ncompleting\ntune\nchoreography\nstirred\nsnitch\ncongas\ncontacts\nwakeboard\nbagpipe\npinches\nslap\nresponds\nchucks\ncardboard\nbarges\nbreasts\nblurry\npanties\ncasual\nsalute\nwander\nbanging\nsketches\npat\naimed\nreadies\nbespectacled\ntrapped\nswollen\nearnestly\nchaos\nflailing\ncasket\nlovingly\nfeather\ngingerly\nlifeless\nslim\nbaskets\nrocket\nsimilar\nsprawling\nhurrying\nloosens\nreceive\npills\nbobs\nhikes\nslender\nmascara\npinned\nstreaming\npadded\nconvoy\nretreat\nrockets\ncarves\nflails\nbattered\ncampaign\n50\npuddle\nheel\nfifth\nsoup\nbeating\nheaving\nphotographers\nwrecked\nmuscle\nenjoys\ncarton\ntrains\ngoat\nsobbing\ndots\nflare\nsteaming\npolitely\nuncomfortable\nserved\npeace\noars\ntwenty\nthousands\ninterest\ndies\nlamps\nstain\ndisheveled\nfancy\ncountryside\nsands\ndetails\nlondon\npositioned\nwrong\nsuitcases\ncakes\ncorrect\nsat\nreplayed\nscatter\ninstruction\ntrade\nattire\ngorilla\nsleek\nwreck\ntattooed\nrejoins\nattachment\nscrolls\ncolleagues\nabsently\nabdomen\nvanishes\nclings\nvessel\ndawn\nsprawled\nhobbles\nforcing\ngarlic\npeeking\nearpiece\nportable\nstorage\nimpact\nwreckage\nbrows\nfading\nmimes\ncashier\ntwitches\nconnected\nterminal\npretending\nskids\nblink\nsexy\ngiggles\nsub\napplauding\nassemble\nfenced\nshorter\ntroopers\nutility\nrails\nknitted\nventures\nones\nfolding\nchina\nscoots\nadvertising\nref\nagony\nmonitors\nsecure\ndash\namidst\nglisten\nprevious\nfarmhouse\nworn\nveranda\nvolume\neverywhere\nsway\nthrone\npay\ndaughters\ntopped\nspit\ntighten\nresult\nicy\nfemales\nmound\ncrown\njoke\nscratch\nflickering\nfacial\nspoons\nfine\nbored\napparently\nfashion\nzooming\nscared\nclipper\nease\nactions\norcs\ncongratulate\npresented\nreleased\noverlaid\nreferees\nsprayer\ndetergent\nparticipating\ncontestants\ncheerleading\njog\nprinted\njam\nboulder\nunzips\nu\nbacon\npub\nforearm\nblaze\nexamining\nshove\ndusk\nswoop\ngrinds\nslicing\nflesh\ndocuments\nsoar\nassault\nstaying\njams\nhaul\ntablet\nmuscular\nlosing\nextreme\nwad\nalbum\nx\nsex\ndelighted\nconfidently\ncalendar\nworriedly\ncraft\ncrest\njagged\nlegged\nwarning\nroughly\nupset\nchauffeur\narray\nhunches\nsatchel\nsympathetically\nadjoining\n45\nweeds\ncushion\nsurvivors\nash\nrecognizes\nchief\nbass\npursuit\nclamps\ntell\nfireworks\nreactor\nwhom\nstony\nmiss\npaintings\nusual\ntouched\nhorns\nenvironment\nhung\nreceptionist\nsuburban\nfairy\ndartboard\nrinsing\nwants\ngermans\nthoughts\nfellowship\ntourists\ncycle\nwakeboarding\nfooseball\nsped\nlifter\nduct\nmaroon\nfeathers\nweightlifting\nloading\ngrimacing\nlinks\ncaption\nthanks\nescalator\nleafy\nfangs\nthief\nscrutinizes\ndelivers\nmisty\nclaw\nobeys\nglaring\ngrate\nwry\nchandelier\nhazy\nswirls\ncranes\nbutterfly\nfierce\nbacking\nindex\nscript\ndirector\nblankets\nidly\npitches\nraw\narticle\ncoolly\nbanks\nplugs\npropellers\nre\ntrio\ndrenched\njoyfully\nshark\nsoberly\nsharing\nbits\ngentleman\nchested\nhomes\nposted\nslithers\nhastily\nlocal\nfbi\nkiller\nmill\nguitars\nidentical\nonscreen\ncereal\nmissed\ncubicle\ntracking\nrags\nmr\nsplashing\npill\nclasped\nmissile\nrotating\nskeleton\ncavern\ncarnival\ntossed\nseparating\nneat\narch\nmostly\ndribbling\nlanes\nlettering\nneedles\nsandwiches\nshampoo\nfunnel\ndeals\ninvolved\nsummer\nstump\nrather\nnowhere\nshaved\ntightening\ngrail\ndesigns\nmarketing\napplied\nbraided\nrubiks\ncheered\nwinners\noverturned\nfastens\nbashes\ndesks\nignoring\nreleasing\ndaytime\nunties\ncracked\nmasks\nheap\nhungrily\nchains\ndummy\nford\ncarrier\nnighttime\nbecoming\nstates\nfrees\nclink\nbuilds\ncommon\narmor\nmirrored\ncarpeted\npainfully\nburns\nfoliage\nfours\nflaps\nhopeful\nrugged\npouts\ncompound\ncountdown\nflicker\nfalse\ntow\nsanta\nproud\ncabinets\ncurves\nexposing\nhover\nfetches\nskyscrapers\ndingy\nshawl\nbathed\naunt\nboxers\nactual\nwaking\ncooler\nelectrical\nscowl\nwavy\noxygen\npig\nsunshine\nchubby\ninhales\nrelax\ncontainers\ntrailing\nnarrowed\nprotect\ngrandfather\nwarriors\nspeaker\ngrief\ndigging\nfiles\nplaid\npregnant\nresort\npierced\nsuspiciously\nsheer\nharder\nzebra\nsecured\nfade\npresenter\nshatters\nillustration\nfuneral\nsoaking\nqueen\ngallops\nservants\nautomatic\nelder\nlasso\nrhythmically\nrover\niceberg\nknows\nshaken\nneeds\nfrustration\nhammering\npossible\ntirith\nmontage\nhelped\nbalustrade\nskiptracer\nsolving\nboarder\ndownhill\ntalked\nalternating\nte\ndefiantly\ndistracted\nstoop\ncrazy\nposters\nmotorcycles\nspilling\ntrigger\nshells\nkidnapper\nsacks\ncrushed\nplops\ninvisible\nchats\nenemy\nattacker\nshack\nforced\nsimultaneously\nwielding\ncompanions\nloving\ngraceful\nplucks\nquarter\ndreamily\nnude\nwheeled\npolishes\npouch\nelectronic\njabs\ncables\nspill\nglue\nwonder\ncliffs\nwaxing\nseeds\nspotting\naffectionately\nraincoat\nslipping\nnewspapers\nstoic\nfits\nprayer\nalcove\ntimekeeper\nfighters\nunscrews\ncia\nlingering\nmoonlight\nsubmerged\ndistraught\nmercenaries\ntilted\npetals\nplods\ngave\nmonk\nroar\ntriumphantly\nexchanges\nparis\nsolid\nhappens\ncloudy\nscanner\nspoonful\nincredulously\nrotate\nearring\nresigned\ncomment\npartition\naloft\nspiders\nastride\nconsults\ngasping\naboard\nconcentration\napples\nconductor\nwinged\nbilliard\nexactly\ncould\ndecks\nresearch\nkinds\nmjolnir\nregular\ntriple\n'd\nripped\nwharf\nquestions\nvolunteers\nreplaced\nmayonnaise\ncastles\nslytherin\ncooker\nclinic\nfang\naccordian\ncapoeira\nstunt\ninteract\naerobic\nracquet\nbirdie\nwiped\nsqueegee\nbarbel\nhostages\nmelts\nlabeled\nsuper\npeanut\nlaunch\ncollapse\ndeparting\nmassages\n$\ncoke\nmustang\nscrap\nstraddles\ncode\ntech\nconcert\nbubble\ncartwheel\nforwards\ncardigan\nthink\nskips\naging\nnuzzles\ntrainers\n7\nbeaten\nslashes\nstricken\ngoblet\nashtray\naccelerates\ncollides\nsneer\nsparkling\nlevels\nzone\nvertical\nsecures\nlicense\nunbuttons\nwrithes\nfearful\nghost\nstroking\ncamouflage\nflutter\npaneled\ncrumples\nbusinessman\ndessert\nrevolving\nstamps\nsubmarine\ncomic\nleafs\nutensils\nskinny\ndangle\npopping\nboyish\neaten\nnostrils\npained\nplush\nregister\nflung\nchampion\nskyscraper\npaying\ncorn\nnewly\nwistful\nreply\nglimpses\nwalled\nilluminating\nsweaty\nzip\nholographic\nrecovers\nden\nwaddles\nstrawberries\nperches\ngasps\nsomber\nvillagers\nurn\ncrank\nrich\nfacade\nlanguage\nvegetable\nchunk\nfeatured\nemotion\ngaping\nfamiliar\nd.\nskip\nrectangular\npillars\ntone\nghostly\nhundred\nrelaxing\nmutant\nnearer\nacting\nbrass\nroommate\npirate\ndisturbed\nstills\nmeasured\nemployees\nparticipants\nbaker\nwands\ntights\nsomewhat\nhairstyle\nthinking\nwhy\ntelling\nreceiving\nlouder\nreplace\ntask\nsocial\ndivan\nhobbits\nham\nglider\nwebs\nmyrtle\ndementors\nvinegar\nvanilla\naerobics\nmow\npaintbrush\npeeler\nrecruits\nshuffling\nchart\nsouth\nrams\nmirrors\nfreeway\nshy\naccompanied\nsprint\ncharred\nmajor\nchugs\n12\nraining\ntoting\nwider\npots\nselects\nbalanced\nactivates\ncharging\nunshaven\nskinned\ncannon\nhosts\nregains\nswept\nbarrels\nmaneuver\nexasperated\nmidst\nplummet\ncases\nsurveys\ntrained\nskeptically\ntilting\nplummets\nwrings\nadmires\nlawyer\nobservation\ntents\nsingers\nstrands\npedestal\nlongingly\nme\nearnest\nsource\ncolonel\ntarp\ncatwalk\nstains\nsteak\npropeller\ndetermination\nheave\ndelicate\nsurrounds\n8\nascend\najar\ntipped\nresolute\nmusters\nragged\nfootsteps\ncousin\ndowntown\nsidles\ncreased\nnetwork\nheavyset\nmedia\ntremble\nwiggles\nbelts\nalarmed\nsober\ndoctors\nwhirls\nlaw\nde\nladen\n9\ncreatures\naccompanies\ncocaine\ncongregation\nbathrobe\nassembled\ngroggily\nintercepts\nmotorbike\ntilt\ndefeated\nbitterly\nmaintains\nslot\nwrench\ncapsule\ncaps\nstood\nticks\nfries\nwelds\nsteer\nscale\ntyping\narranged\nsoapy\ntaste\nsample\nfurious\nsticky\nroofs\nflanked\nperformer\nchanged\nfalters\nbobbing\ndull\nflock\nspecs\nglowers\nflippers\ngrown\nmemory\noffering\nvisor\nkettle\nshredded\nscotty\nchoir\nexamine\nbricks\nages\nskies\nfalcon\ndisappearing\npathway\ngurney\nmannequin\nassist\nmascot\nwaste\nscored\napril\nbang\nclown\nhummer\nlinen\nalthough\nparticular\nappearing\nclamp\norc\nelf\nboils\ncelebration\nracetrack\ndiscussing\nsideline\nmatador\nawards\ntreadmill\nfruits\nfamilies\nsticker\ngut\nasking\nvomits\ntitles\nvictim\nstories\nstock\neager\nemployee\nindicate\nmessy\nsags\ncopies\nconsciously\nbares\nshards\ngaining\nheadline\nnecks\nleaping\nframes\nemerging\nexplosions\nsettle\nerupts\nduffel\nnarrowly\ncollide\nshattered\nfleeing\nraps\nseemingly\nscanning\nbutts\ntrays\nringing\nstalls\nvisitors\nlaps\nchained\ncollapsible\nirritably\ndelight\nlapel\nlocated\nknuckles\npod\nbuy\ndestroyed\nruins\nadditional\nobserving\ncrouch\nchip\ncollect\ntightrope\njuggling\npaths\nentry\ntrance\nreels\npendant\ngangster\nalleyway\nsill\ncurious\nplows\nobscured\nboyfriend\nforlornly\nhumvee\nkills\nnatural\nswats\ncampus\nslowing\nburied\ncracking\nfingernail\ndunks\nthrust\nwheelbarrow\nward\nindustrial\nlick\nboom\namber\nshivering\nstatues\npound\nbrim\nsweating\nsailor\npuppet\nmusical\npeacefully\nencouraging\nshutting\nteaches\ncoyly\ncurve\nmelted\nflipped\nanchors\nexhibit\nscrewing\nheadboard\ncrimson\nhoney\ntunnels\ncoconut\nblends\nsander\nsquat\npersonal\nfilter\nrights\nhind\norb\nlayers\noveralls\nvariety\nfluffy\nindicating\nentered\npeasants\nsilly\nlaotong\naltar\npirates\nparchment\nwalkie\nscrolling\nguiding\nfiving\ngiants\nshaven\nstiffens\nlifeboats\ninvisibility\nstrumming\nfact\nnarrator\ndumbbells\ndecides\nsaid\nsiren\nsock\ngrabbed\ntwelve\ndifficulty\nmean\nbarman\nfencers\nafloat\nth\nrobber\nsomersault\nlongbourn\nbumpy\npreparation\nkickboxing\nstepper\nsmoothing\nskaters\ncurler\nheadquarters\nbrake\nescapes\ncruises\nbottoms\nadorned\nuncovers\nblackjack\nthank\nsketchbook\nmentor\nkeeper\nsinking\nclubs\nattic\nwrithing\nmonster\nfooting\nbadge\nsession\ncivilian\n15\ncrooked\nclenched\nflashlights\norders\nscampers\npierce\nsprinting\nengaging\nauburn\ncafeteria\nsnapping\ncoughs\nodd\ngrits\nswaggers\nbriefs\nbones\nexam\nshimmies\nbirthday\nbanana\nadmiring\npursed\namerica\nbillboard\nchicago\nexpanse\nsleeved\nwetsuit\nposts\nchurning\n6\ncupcake\nprotruding\nrippling\nappreciatively\nanguished\ntearing\nbundles\ndj\ncontrolled\nafterward\nrusty\ncounting\nresolutely\nmrs.\nwolf\nprojector\ndilapidated\nastonished\nvests\ncluster\ntiptoes\nsilverware\nvelvet\nwipers\nblazer\nsucking\naliens\njelly\nintercom\nlanky\ncontract\nruffles\ntransforms\nbillowing\nmidair\nkill\nextending\nprogram\nashes\nflapping\nvisit\nscrewdriver\nporter\namazed\nextend\nunrolls\nrepresenting\npulse\nmood\nsausage\nteach\nhay\ncombination\nbanister\ndotted\nsleeveless\nstrains\nhull\nmomentum\njaws\nshops\nfluttering\nviolent\nroot\nconfusion\nhostess\nchecked\nfloral\npoking\nhooves\ncling\nsnakes\ntenses\nsmashed\ncalling\nroyal\nmedicine\nrice\nunicorn\nwhipping\ncaptured\nquill\nobserve\nextension\nprevent\nclay\nran\nchunks\nsaloon\nowners\nchess\nsave\nemblem\nturkey\nbark\nmay\ngambling\nblackness\njapanese\nruler\nensure\ncoupe\nadhesive\nnone\nneither\nroutines\ndisappeared\ncomments\nconcentrates\ndrivers\nquince\nquaffle\nbikinis\nwaterfalls\nintertubes\ncongratulated\nsumos\nzumba\nawhile\nsnowboarder\ncompetes\ncorrectly\nkickball\nslackline\nmarines\nfaded\nsling\nperplexed\ncd\ndiscreetly\nhustles\ntickets\ngain\nfuel\nglitter\nlimousine\nchat\nurges\nshaggy\ndelivery\nwatermelon\nexiting\nminivan\nlaser\ntongs\nsizes\neases\nnightstand\nhandheld\nsilky\nhours\nthrong\nfog\nscratching\nthreshold\nparcel\ncoy\nvisitor\nprotesters\npro\nsunken\ncradling\nlittered\nutensil\njutting\nmarine\nbackside\ncourtroom\ndodging\ncontent\ngrated\ntriangular\naluminum\nhoses\nstrolling\nshielding\nawakes\nexecutives\nexecutive\nchalkboard\nglobe\ndescent\nprone\ndejected\nparting\nhollywood\nnurses\njuts\nsparkly\nthighs\nstreaks\nvial\ndaily\nbombs\ndashboard\nmock\nscowling\ncreeping\nwheelie\nautumn\nmourners\nsquinting\nmulti\nwhisks\ngrimace\nawning\npine\njumper\npeppers\ndisguised\npadding\ncathedral\nrummages\ndamp\nprogresses\nsurges\nun\ndune\ncollege\nvendor\njoining\nsnack\nrevealed\nfitting\nvenue\ndissolves\nfreeze\ndoorknob\nbible\ncorridors\nfurnished\nfreezer\nmenacing\n100\nbob\nsquirts\nformed\nspears\npinched\ntread\nimpassively\nghetto\nmission\nscurry\ndamaged\npillows\nredhead\nvanity\nruined\ngroceries\ndesigner\ngardens\nmaintenance\nirritated\nfried\nprice\nfrog\nmilling\nspeech\nmagnificent\nquarters\nperiod\ncarve\nexact\njourney\nn\nblurred\nwelcome\nbeak\nzookeeper\nqueue\nstyled\nturban\nominous\ndoom\npinning\naccomplice\nclimber\nsorting\nproperty\nmenu\nsmash\nsomebody\nexpensive\napprehensive\nliner\ncrow\npuppy\ninn\nattachments\nfired\nsprayed\nsenses\nrabbit\nverdell\napproval\nsomewhere\ndisgust\nlakeside\ncronies\nnational\nquality\ntrouble\nplanks\nterror\nteller\nsucceeds\njewish\nss\nconstantly\nmechanics\nhobbit\nsummit\nshadowfax\npatrolman\ncompetitive\nlassos\nintroduced\nroofing\nhowcast\nrepeat\ncapturing\nlitle\nseashore\naudiences\nstroller\ngopro\npartners\ncuffs\nexpressions\nrandom\njanitor\ngiggling\nrobotic\ndump\nemail\ntanks\nrundown\ngroin\nscruffy\nbarred\nweak\nass\nco\nminiature\nrailway\ncheerfully\nbmw\nbuffet\nshoreline\nreeling\nswipe\nstab\nmaintain\nfleet\noval\nsick\nflagpole\nreclines\nweaving\nshoving\ncrushes\nrecognize\nfeature\npanes\nsend\nbystanders\ninspect\nmetallic\nloops\nsandals\nmiserably\ntumbler\ntighter\ntee\nracks\nannouncer\nads\nmesmerized\nrespond\neyeliner\nlace\nhors\ntinted\nresembling\nhurtles\ncrashed\nseating\nmouthed\nmugs\nrumpled\nintricate\ncherry\nhandwritten\n360\npanic\nslate\nport\nstifles\nroaring\ndowncast\nasphalt\nsmears\nunsteadily\nwincing\nbeds\nsmoky\nreel\nfiercely\ndubiously\ncushions\nrestroom\nshabby\nslab\nunfinished\nsullenly\nstylish\nspilled\njars\ndisbelievingly\nmice\nwades\nteenagers\nheadband\nretreating\nsaucer\nplaque\ncomforting\ncrumbles\nserver\ndisgusted\nrescue\ngaunt\nincreases\njuices\npane\nmysterious\nsigning\ncocky\nassembles\nmet\nlumbers\nsons\npaddy\nhem\nthreads\ndispenser\nforeign\ndonut\nmace\nsmartly\ngrocery\neditor\nchopsticks\nviolinist\npeaceful\nweave\nbridal\nflooring\neasel\nproducer\nroute\nreturned\nconfident\nlord\nskylight\nhero\nprobe\ncorpses\narcher\nteddy\nchainsaw\nartwork\ndeliberately\ncauldron\nstaffer\ntokens\nattacked\nshutters\nripping\ndrip\njournalist\nvanger\ncreated\nclicking\nbean\nslippers\nescorted\nexpressionless\ndrumsticks\nfootprints\ncruise\nweeping\nawe\nhappening\nfeel\nmust\nitalian\ntourist\nbadly\nderby\nintroduce\noccasional\nsupporters\ntroop\nhurled\nstruck\nhurtle\nneighbors\nswishes\npreviously\ntrudge\neverybody\ntriumph\nfetch\nswitching\nimportant\nspeedboat\nribbons\nfrying\ncompetitor\nhairdresser\nartists\ninstalling\nwitches\nusa\nintroducing\nsteppers\ncellophane\nmethods\nlimes\npews\nfurry\ntrumpet\nchic\nchoppers\ngains\nranch\nabs\nhandcuffed\ndeflects\nrv\neagle\nbrightens\nbounced\nengagement\nprints\ngirlfriend\nblur\nfloorboards\nmantle\npeek\nwrinkles\nsultry\npries\npowered\ncramped\nsunlit\nsympathetic\nmelt\nsmeared\nunderside\nhaze\nbillows\nentryway\nfragments\notherwise\nglassy\ngunpoint\ndocks\nrains\nbodhi\nbye\ndig\ndolphins\nsour\nseductively\ndoorman\nbulletin\nstroke\neast\ntoned\ndoffs\nflick\nearrings\nsmoldering\nornament\ncranks\nsenator\ndr\npilots\ncount\ninterrogation\neyeglasses\nmountainside\nv\nflickers\nsuvs\nhoists\nsheepish\nmiles\ntitled\noversized\nwristwatch\nrelated\nrosy\nhiking\nwaxes\novercast\nemotional\nexample\nacts\nlounges\nbulky\ntripod\nprop\nbrandy\nhooked\nglowering\nharsh\ngentlemen\nchampionship\ncircling\nroses\nmicrophones\nmaitre\nbeefy\nportly\ncaucasian\natrium\nsharks\ntwilight\nlobs\nsummons\nunbuckles\nlover\nsculpture\nsurgical\npedestrian\nhelicopters\nditch\nsecurely\nalcoholic\ncoffees\nmorphs\nlauncher\nbarren\ncellar\nfail\npliers\ngulp\nbuster\nsmoothly\nsullen\nupturned\ncompact\ndestroys\nnavy\nstraightening\ntabby\nnest\nshimmering\ncareful\ntangled\nheated\nexotic\nlovely\ngardening\ndumping\nsenior\nlitter\nfeeding\nflooded\nmast\nparticles\nsucked\ncontain\nresistance\nnut\ndisapprovingly\njokes\nsaucepan\nvisibly\nhealthy\ngallop\nginger\ncupcakes\nsquirms\nimpatiently\naudio\nhealth\ncrutches\nshrubs\ncavernous\ngalloping\nthrower\nmounting\nrears\nuntouched\ninfant\ngrasping\nhomework\nsteadying\nelastic\nsupporting\ngloom\nbutler\nconcentrating\nintermittently\nthermometer\ncaretaker\nreports\nrecorded\nkitten\nwest\npeeled\ntension\nmeans\nstewards\ncauses\nconscious\nsituation\ntobacco\nwildlife\naback\nyacht\nplow\nunaware\nhalloween\ncontest\nwant\nmustard\nterrible\nclick\nslapping\ntaping\nnets\nsense\ndecision\nscooping\narrived\nlearning\nribs\ndwarf\nfashionable\npineapple\ndownwards\nfoods\nbrooms\nark\nbeverage\ncrop\nlesson\nbludger\nsleds\nshingle\nalternate\nextensions\ncrochet\ninstall\ncanoeing\nliquors\ncroquette\nsnowboarders\nlob\nleotards\nsidewalks\nolympics\ncopyright\nchords\nbeanie\ndemonstrated\ntubers\nbirders\nmaize\nbuckbeak\njuvenile\nstraddling\nmailbox\nportraits\nquad\nsmirking\ntough\npanicked\nmessages\ndoe\nvintage\nbackup\ndeal\ndramatically\nmunches\nvibrating\nexpert\nammo\nclumsily\nweeps\nbandaged\ncrossbow\nbookshelf\ncute\ndie\ndrunkenly\nembarrassment\ndetailed\nselection\nceremony\ndense\nadmiringly\ngrain\nhopefully\nawaiting\nbrooding\nfirewood\nwields\nunion\nvulnerable\nbiting\nerupt\nsidelong\nhurdles\ngunmen\nunderstanding\nsurreptitiously\ndepartment\ncylinder\nmassage\nfry\nlectern\nbemused\ncarpets\nm\ntotally\ntickles\nsale\ntails\nslouches\nimagines\nmorosely\nglamorous\ndisperse\nla\nstoically\npleading\ntrembles\ntransfers\ninjects\ntechnician\nhuddles\nskirts\ntour\ncomponents\nrestraints\nbands\nplanes\nsniffing\ntrot\nessay\nbuddy\npleasure\nappreciative\nappearance\nsubmerges\ndegree\nshaky\nmotioning\nwhistling\nsmug\njab\narcade\nrounding\ncupping\ncuff\ncircuit\naccess\ndrips\ncompares\nscope\nmiserable\nclenching\nlonely\ncitizens\nbandages\ntrap\ndevastated\nreloads\nmodule\nrubbish\nmy\ndevil\nsince\nnonchalant\nblazes\nbony\ncrater\nlevers\novergrown\nevil\ngirder\nstout\nofficials\nspecific\nsmugly\njournalists\nimposing\ndazzling\npegs\ntraces\ntally\nwidens\ngoers\ntracker\nstorefront\ngratefully\nicing\npools\ncomfort\nnoses\ndarting\nlazily\nbordering\nabsorbs\npeg\nunhappily\nokay\nbells\nsparkles\ncomposure\nkhaki\ncommunity\npetrol\nbrisk\ntopic\nclipped\npatting\nharry\nwhale\ngigantic\nscattering\npumped\nworktop\nloop\npantry\ngreens\nrinsed\ntabletop\nstartles\ntried\ncontrolling\nsevered\nstoops\nfelt\ntunic\npreacher\nreins\n'll\nnewscast\nalive\nnative\nchimney\ndumbfounded\ntraditional\nmagazines\nvolunteer\nrage\nstubs\nexplore\ndisappointment\nrule\nformal\nsettee\ngangplank\npenalty\nlipped\nmad\ncardio\nrecumbent\ndigicam\nsensing\nleast\nbelieve\nphysical\nattitude\ningredient\narguing\nstatic\nenthusiastically\ndownstream\nwillow\npoor\nunscrewing\nmechanic\nsadness\nhawaiian\nloan\nreceived\nclamber\ntwigs\nlieutenant\nbeans\ndifference\nclimbed\nadjustment\nviewer\nhai\nclambers\nloss\nweed\ncatapults\nprotection\npowdered\nincredible\nspun\ntemperature\nfestival\nmoped\npincer\ngrandma\nhairspray\nchefs\nhurdle\ncongratulates\ninstructors\ngrooms\nrobots\nracers\nrollerblades\nblading\nstats\nindividually\nwindsurfing\nconga\nballerinas\nlathers\nhoola\noddly\nc\ncomputers\npoop\nkung\nfu\nnerds\ngiraffe\ndisapproving\nrally\nfurtively\nhell\novertakes\nholster\nteenager\nexpertly\nsteadies\nrecalls\nbaring\ngoatee\nbuckles\ncrowbar\nreality\nadvancing\nintruder\nplume\nembers\ncomforter\nvarying\nsuds\nunsure\ncinema\neyeballs\nhilly\nbuys\nrealizing\nfitted\nsweetly\nporcelain\nbanker\nmoss\ncorral\nslat\nbackflips\nmural\ndemurely\nquestioningly\ntwinkling\nnightgown\ncloaks\narrival\nrival\nrooftops\ncoal\nsquarely\nfrantic\navenue\nrecover\nkilling\ngunfire\nlists\nhostage\ntriumphant\nyields\ntarmac\nretirement\nspiky\njacks\ncasting\nrays\nbaffled\nsly\nactor\ncringes\npixie\ncollecting\nbulbs\nstole\npurposefully\neyelashes\ncork\nd'oeuvres\nclutch\ngape\nstocking\npointedly\ntrench\npersonnel\ngrappling\nnorth\nbacked\ndepicts\ncalifornia\nseparates\nseam\nisolated\nsatellite\nignition\ntends\nstunning\nincline\nhandshake\npeak\nsnacks\nrestrain\naggressively\nenvelopes\ngrieving\nbabies\nsynchronized\nendless\nflattens\nbreathlessly\nram\narmoire\nposture\ncareens\nwarrior\nfurrowing\ncupped\ninsert\npoke\nprincess\nobliviously\ndisguise\nsniff\nmeter\nsob\nswat\nducking\nlockers\nreclining\neuropean\npallet\nsignature\nextracts\nbathes\nlobster\nshrinks\nspotted\nflinging\nworked\ndrifting\nallowing\ngropes\nteachers\nsnorts\nnon\ndrunken\nmunching\nperch\nhenchman\ncraggy\nauto\nstrapping\nslanted\nstray\nmuseum\n18\nenthusiasm\nimpressed\npristine\nfireball\ndirecting\nexpo\nwhistles\nladders\nbravely\nmushrooms\nprods\nnewlyweds\nversion\nmanual\ncrammed\noverhand\nsoul\nmenacingly\nnavigate\nstraighten\nobediently\nemerald\nornamental\ndream\ncrib\nstatement\ntotal\nparsley\nshouting\ninter\nbrave\nferry\nanticipation\narranges\nfilthy\nunhappy\npolka\nsidecar\ncurving\nchute\nangeles\nmitt\nskater\ncucumber\netched\nsymbols\nprince\nmaids\ndefense\nmouthpiece\nsimply\ndecorates\n17\nunderground\nprep\nrental\npawn\ndismounting\nshrimp\nswimsuit\ntalkie\nchased\nvapor\nburned\nwheelhouse\nfunnels\nleashes\nkimono\nguitarist\nsuccess\nsweatpants\nbulb\npincers\noak\novercome\nsuspicious\nlayup\nmaker\nwary\nbuck\nfences\nprize\nbarbells\nplatter\nhappened\nthunder\nexpress\nremark\nflatten\ngotten\noccupied\nskiff\napproached\nappalled\nmedium\nuniversity\ndrug\npom\nyouths\nacknowledges\nshit\ntreats\nraging\nhonda\nboil\nbatch\nmordor\naxes\nuruk\names\nbilliards\nactress\nperformed\nvia\nfont\nstag\nbakes\nmesses\ndrilling\nserpent\nmallets\nsalsa\nbullfighting\nkayakers\nservices\njuicer\ninline\ncoloring\nloser\nmelting\nplastering\nvoleyball\ninteracts\ngoalkeeper\ninterviewer\nwelder\nparasailing\nbuilders\nexhibiting\nplacement\nsax\njustin\ntrashcan\nregistration\ntranquil\nsprawls\nkitty\npenis\npounces\nevidence\nchokes\nstampede\nimaginary\nwiper\nfasten\ndiscarded\nzero\nhour\nveers\npoised\nwindowed\nbuckle\ncautious\nhairy\npatches\nidea\nearphones\ndays\nascends\nmighty\npetite\nsoaks\nsidesteps\ngraves\nbellows\nstomping\npuffy\npropelling\nhistory\ncraning\ndejectedly\ntelegram\nbulging\nagape\ncollapsing\nshout\nnightclub\ncourthouse\ncells\nconnects\ncivilians\nrumbles\noverpass\ncartridge\nsignaling\nscrambling\nscaffold\nwaistband\nbarrage\nsurvey\nscaffolding\ndeposit\ncylindrical\nretracts\npositioning\nswerve\nsamantha\ndolls\nflutters\nhefty\ncalms\ncelebrity\nunpacks\nneighboring\nposed\ninterrupts\nbeaded\nstrand\npajama\novation\nplayful\npearls\nacrobatic\nstamp\n000\nfaraway\ne\noperates\nexamination\ncol\nsubject\nescaping\ndisintegrates\nranks\nstolen\nchasm\nbunker\nconnecting\nengages\npicket\nhorizontally\nnursery\ngrowth\nlounging\nflushed\nhinges\nimploringly\ntentacle\nspike\ntexts\nsoil\nbashful\nriverbank\ncertificate\ncontentedly\ntether\nalert\nhumans\nangled\nfloppy\npromoter\nsomberly\nsewing\nhandled\nsilhouettes\nclassical\nstrain\nbodyguards\nhint\norchid\nconsole\nnibbles\nnostril\nwhisper\nunlit\nbashfully\nsolitary\nsulks\nplatoon\npo\nlecture\nmingle\nstables\nundershirt\nrimmed\nhaunted\nshoved\nfound\nnoises\nannoyed\nserenely\ncomrade\nsniper\nsickly\ntentacles\nmeadow\nduty\nengines\nburgundy\ndiscovers\narcs\nunleashes\nashen\nrobed\ncaress\nloaf\ndomed\nuntie\nchanting\ndemon\nbitter\ngait\niraqi\nbuses\nscarred\nexploring\nslinky\nclocks\nrooted\ntheatre\ncrescent\nwicker\nsqueezed\nroadster\nagitated\nvacantly\nlinger\ndeposits\nfury\naccelerator\nunhooks\nresignedly\nonion\nstuffing\ncursor\nkissed\nrainy\nchuckle\numbrellas\nanswering\nhighest\nflattened\nguided\ncanal\nlistlessly\npleasant\nverdant\noverboard\nthumps\ntethered\ntugging\npail\ntests\nmournfully\ng\nshoebox\nbouncy\nfringe\nlocking\nnephew\noutward\npigs\nburner\npreoccupied\nsealing\ntranslucent\npatients\nbrandishing\nfashioned\nprometheus\nmatter\norgan\nengulfed\nprocedure\nlooming\naccepting\ncontemplates\nassortment\nhandcuff\nrecede\nmuttering\nflint\nbinder\nglittering\nfigurine\ndecorative\nbattery\nbowlers\npunched\ninspectors\ncows\nporthole\nbarking\nstepped\nicon\nflows\nmurder\nsheds\nmeters\njunk\narchives\nlawns\nshrugging\ndarkens\nlingerie\ndistressed\npresentation\nmouthful\ndojo\nlug\ng.\nstrung\nalight\nthud\ncubicles\nadventure\nengrossed\nbroadcast\nunited\nfoundation\nhairs\nemotions\ndamage\ncleared\nleopard\njazz\nburnham\nforty\npov\nargument\nwanting\nhorrible\nperhaps\nmike\nslammed\nmayor\npossibly\noccurs\ninserted\nchemical\nalways\ncandies\nmaybe\nkindling\ncommentators\nill\nfiddles\nequally\nominously\nconvicts\nthirty\nsweets\nbasically\nflorence\nstumble\nslug\ninsides\ndarker\nproject\ncomposes\npursued\nringwraiths\ngrout\nhurts\nregarding\nslower\nclapboard\nblend\nspeedo\nquidditch\nundergrowth\nok\nweighted\ntoilets\ncarriages\nattach\nlorry\nglade\ncuddles\nhousekeeper\nmotorbikes\ncoaching\ndribble\nrum\ncooling\nterraces\nhelper\ntshirt\nblended\nvarnish\nni\nintertube\ntasks\nvaulting\nmatadors\npeolpe\ntiling\nhandstands\nconcepts\nshowcase\nmainly\nwile\nwebsites\ndescribe\nsloop\nbirder\nmastermind\ntucking\nbuzz\nstrut\npew\ndramatic\nunmoving\nfrosted\nweird\nhumble\nclassmates\nignore\nprecision\ntend\nbystander\nfends\nengulfs\nsternly\ndistantly\nmillion\nluxurious\nportfolio\nrules\nacknowledge\npatterns\npleasantly\nsizable\nmortar\nremainder\ndozes\nstrawberry\nriverside\nbluff\ncradle\noverwhelmed\nvanish\npistols\nascending\ncannons\nshapely\ndetonator\nsoaring\nscreeches\ncrushing\ngrazes\nwryly\nunnoticed\nbreathless\nstifling\nbackhands\nprimps\nbonds\nnetting\ndumpster\nlimping\nseethes\nblindly\nflares\npamphlet\ncringing\nimitates\ndonning\nheadstone\nblinding\ndolphin\nextinguisher\nconducts\ntwitch\npostcard\nbeads\nconfetti\nplug\ncurtsies\nchaise\nboyishly\npearl\nupscale\ngrateful\nincredulous\nserene\nhelmeted\napparatus\npalette\nstark\ngauge\nparachute\nblaster\nspark\nstreak\nanguish\nunopened\nbleary\nrods\nstaggering\necstatically\nvanishing\nformations\nmaps\noverlook\nbuddies\nnearing\nnestled\nswallow\nlikes\nlevitates\nconnect\nparka\nexecute\njuggles\nnonchalantly\ncrude\nrestlessly\ngrid\nbib\ntentative\nstrangely\nresident\ncomforts\nscribbles\nl\nsnuggles\nwoeful\ndroops\nexhaust\ntrundles\nsubdued\njetty\ndappled\nobscures\nbundled\ntopless\nwaggles\npeeps\npounding\nstraws\npalatial\nruefully\nripples\nmesh\nstainless\ndata\nbonfire\nsituated\nmachete\nplanet\nsmack\ntexting\nspiked\nrefuses\nstocked\nipod\nshelving\nconfronts\nhog\nimpassive\nmonks\ntaut\npetrified\nrove\nacolytes\nfingertip\nrespectfully\narticles\nskims\nstocky\nradios\nscarves\ntruth\nhusky\ngrimy\nrepairs\nexplores\nhonor\ncontraption\nexpectant\ndisgruntled\nextra\nrelaxed\ncore\ncommands\ndesktop\nswaps\nlocates\nsiblings\nfanning\npepsi\nforks\njerk\nreassuringly\nsentence\nclutched\nnewcomer\nquaint\nattend\ntropical\nscales\ncowers\nvicious\ninjury\nnearest\nsneers\ngateway\nfreshly\ncobra\nadvanced\ndumb\ngrandmother\nexpecting\nvines\nscientists\napprehensively\ngps\ndepths\ntide\ngoogle\nstraining\nregard\nawakens\nanimatedly\nsnowball\nliberty\nsneak\nsnowflakes\naxle\npanting\nlather\nheartbroken\nlos\nelegantly\ncomfortably\nbordered\nclamped\nseparately\nintensity\nhumanoid\nslime\napparent\ntremendous\nfrenchman\naddressing\nsheath\npyre\n11\nstagger\nammunition\nst\noriental\nplump\ncloths\ndistress\nincreasingly\nhaggard\ndipped\nmagically\nmate\nbesides\nseparated\nwindowsill\narmpit\ngasp\nstores\naltogether\nmantelpiece\nchocolates\ncommentary\nhomemade\nnicely\nduke\nglum\nchevy\nasgard\nmanage\npromenade\nrung\nrats\nrattles\ncorvette\nyell\nplains\nugly\nfarmers\nbridesmaids\ncyclone\nmutants\nbins\ngrunts\nescalade\nclosest\ncheap\nmaneuvering\nrealize\nponders\nlungs\nunsteady\noften\ncourage\nsorts\nfifteen\niced\nglazed\ndescription\ntheme\nboiled\ngarland\nrumble\ncivil\ndictaphone\ndavenport\npranam\ngrinding\ndespair\nhappen\nchallenge\nbusily\nhandling\nstools\ngoon\nconducting\nnature\ntoothpick\ntrotting\njews\npride\njello\nrobbers\nmorgul\nproffers\nbases\nhoping\nwatering\ncues\nbackflip\nhighly\ngiggle\nturkish\nmotorboat\nsteamer\neater\nkangaroo\nfilmed\npedaling\nassisting\ngypsies\ndanced\nflexing\ninstalled\ndinning\ndistract\nsnatcher\nleeds\nbeings\nshotput\ntams\nwilderness\nseasoning\nbuffing\nmessing\ndrys\nskiis\npoms\nparticipate\nrecap\ncompetitions\njerseys\nhandlebar\nnarrates\nholing\nswimsuits\njousting\nbasketballs\npoodle\nelongated\ninstalls\netcetera\nkneeing\nvolting\nalternates\nint\npaused\nsledding\ncloseups\nbristle\nstencil\nmayo\nhector\nnerd\ndestination\nhumps\ngawk\nchildhood\nnimbly\nsealed\ngag\nthrusting\nperp\ncarts\nmelody\ncohorts\nhauling\nboulders\nincoming\nsatin\nholsters\nlapels\nsneering\nsnapshots\npursuers\ngunpowder\ncassette\nkeypad\nconsumed\nyawns\nloosely\nentranced\ndvd\nchallenges\nexpressionlessly\nbulge\nangel\nfed\nlad\nbourbon\nchalks\nunresponsive\nshattering\nkept\npolite\ndistorted\nshin\nhorsemen\ncrisp\nfort\nwealthy\nmelancholy\nbrimmed\nlocomotive\namericans\nwedges\ninspecting\nmonument\nwhizzes\npayphone\ncuffed\nattentively\nrounded\nhesitation\nflank\ndegrees\nprotectively\ncarrot\nfiling\ncombat\ngrenades\nspotlights\nlatch\nbarks\nspanning\nplunge\nthemed\ngardener\nhomeless\nboardwalk\napologetically\nvisits\nglued\nmarijuana\nron\ncelebrities\na.\nhued\nweek\nobscuring\nscraps\nurban\nstockings\nbracelet\nskillfully\ncrease\nplatinum\ncandlelight\npatron\nindignant\nreplies\ndates\ninjection\nray\nzippo\npursuing\nridden\nshudders\nchorus\nflop\ngunner\nengulf\nsashays\nairfield\nmissiles\nimpatient\nswell\nhefts\nsunroom\nrecovering\nweathered\nseething\nfocusing\nemphatically\ncreases\noverturns\nvantage\ntweaks\nprecariously\nsuck\ncruisers\nlanterns\nsuspenders\ncola\nwhispering\nseriously\nstubble\nkiosk\ntimidly\nstealthily\nweighs\ncriminal\nflannel\ngrace\nunoccupied\nrumples\nmicrowave\nyanking\nchoke\nexhaustion\nbushy\nmagnifying\nunto\naddressed\nvertically\nripple\nnarrowing\niv\nlimply\nfrail\nelevators\nscuttles\nbungalow\nwaiters\ngrilled\npyramid\ncoveralls\ncaptive\nelectricity\nbong\nafternoon\ncozy\nwink\nwedged\nhenchmen\nrelentlessly\nskeletal\nignites\nmushroom\nrearview\ncrumble\nwrapper\npossessed\nmemories\ndefensively\nsnarls\ndesolate\nmaintaining\ntattered\nparched\nfaints\nsnags\npebble\nactors\nmaximilian\nresembles\nheadlight\nincreasing\ndefiant\nfascinated\noccupants\nrealization\nautographs\ncriss\ngasoline\nputty\nindustries\nsixth\nfolders\npleadingly\nsmacking\ncoworker\nsprinkled\nforlorn\npastry\nbasil\nslurps\nbamboo\nbarbecue\njolts\nattendants\ndiscards\nsculptures\nshoos\nstrained\nlotus\nselling\nbugs\ncrestfallen\ngreenery\nmohawk\nsnarling\nremorsefully\ntaunting\nmanicure\nscientist\nswishing\ntransparent\ncatapult\nsevere\nwade\ngated\nhyena\ncurrents\nprepping\nfeebly\npointy\nsparkle\ndarkening\nlatex\ndenim\ndaybreak\ngovernor\nen\nhardens\nseed\nrobin\nnecktie\ncarrots\nscary\ncopper\nlighthouse\nlunge\ndug\ncloaked\ncampsite\njets\ncrewmen\nmed\nspattered\nhelm\nchapel\njoyful\ncycles\nhuts\napprovingly\nautomatically\ninstructional\nsparse\nhub\nhardware\nc.\noperation\nantique\narrange\npartly\ncentury\nflakes\ngloss\nasked\ncitrus\ntyped\ndoleful\nvictorian\nsorcerer\nsleepily\ngrimhold\ngem\nreappear\nspirit\ndunes\nopera\nmoored\ncombined\ngulls\ndoorbell\npeach\nburnt\nteasing\nhive\nenraged\nscreech\nstripped\npurchase\nunnerved\naccident\npuffing\ncostco\nthirties\ncouches\n40\nperfume\nstabbing\ncamping\nassistants\ncircus\nravine\nobservatory\ntelegraph\nflushes\nblackie\nreigns\nwintry\nshrouded\nhorseman\nwoodland\nhunting\npackages\ntiller\npancake\ndishwasher\ntransition\nelk\namazing\nbasic\nanxiety\ncommotion\nbeautifully\nhum\ninterrupted\norderly\ncause\nhopped\nbold\nutter\nnobody\ndifficult\nexhibits\nreason\nfifty\nhydraulic\nthumping\ngutter\ntheirs\ntoothbrushes\nfairly\ndialogue\nsari\nresidue\nsplashed\ndespite\nhopelessly\noffer\noverweight\njohn\nshaded\nchairman\nboxcar\nroadside\nstumbling\ninstructed\ntram\nbronze\nask\nwailing\nranging\nadvantage\nbunny\nplenty\ndecor\nborders\nhauled\ntreatment\nannounces\ncobwebs\nal\nchoreographed\nfestive\nwashroom\ninvolving\ndice\ndangerous\nvine\nspices\nteeming\nchooses\nneuralyzer\nsmell\napparate\nsilvery\nteases\nunmasked\njunior\nsplinter\npartying\ngarnishes\nconcourse\nbalmoral\nmode\nherbs\nbandanna\nprofessors\ncleaners\nadvertisements\ncycling\nsolved\nnailing\nnecessary\npercussion\nsaran\nrequired\nassists\nbenefits\nzoomed\nshowcases\ntoppings\npiecing\nforested\npogo\nseasonings\ngearing\nbobby\nhi\nshuttlecock\nwaterboard\ncoating\ndemonstrations\nmethod\ntorching\n2014\nlessons\nreactions\nsneaker\nwording\nobama\npeddling\nhairstylist\nenvironments\ncriminals\nwerewolf\nkorean\nbackpacks\nflirtatiously\nencounter\ndelightedly\nlookout\nunderpass\ntanker\nstagehands\ndoritos\nriddle\nmedic\narrangement\nworkbench\nbarge\nonboard\npadlock\n0\npudgy\ncondoms\nworkstation\nswitched\nwrought\nflirting\npartial\ndusted\ntavern\nsuperior\nlodged\ndecanter\nmodified\nworkroom\ndusts\njail\ndownpour\nvampires\ninvitation\nbinding\nsplintering\nswooping\ndanger\nstately\nanti\nsorrowful\naverted\nunlocking\nsoot\nwashington\nfreight\nscantily\nguarded\nsprinkle\ncollision\nstows\nembracing\nskeptical\nradiator\nrussians\ncower\nhelipad\nmezzanine\ndevices\nplunging\nsettling\nplumes\nwelcoming\nrobert\nplease\nyank\ndeparture\njury\nzipper\nclaim\ncounty\nmonths\nceases\ncorset\nreclined\nchests\nburlesque\nransacked\ndeejay\ncostumed\nstalk\ndisbelieving\nresentfully\ncharming\ngrind\nstamped\nlaboratory\nfetal\nclinks\ngroggy\njerking\nexploding\nstrategy\nconverge\nbattling\nexpands\necstatic\nbaggy\nlugs\ngraffiti\npre\ncropped\nblanketed\nbluffs\n25\ngraph\nanyone\ncoral\ncalming\nspeedily\nrustic\ntidy\nscalp\nturtle\ngroans\nsurge\nvideotapes\naward\nspy\npuddles\nbust\n60\nforefinger\nsag\nforeman\nbusinessmen\nvendors\nrewinds\nspectator\nslum\nmarketplace\npassport\nthermos\nassociates\nmorgue\nsoaps\nrims\nbodyguard\nalligator\nmurmurs\nsuppresses\ncaller\ncheerful\nstartling\neastern\noutlines\nclasping\nslats\ngauze\nclutter\nreflect\nporsche\nonline\nyourself\ngoats\nunsettled\nmnu\nseals\nseller\ndeterminedly\ntendrils\ngangsters\ntrapping\nmanipulates\ntoenails\nwhiz\nvictoriously\ndiscover\ngalley\ncadillac\nwhisky\nforeheads\nchannels\nbeacon\nprojects\ninmates\nteacup\nwoozily\npotted\nconcierge\nlovers\nwatery\nerupting\naffected\nquarry\npropels\ntoothy\ndaze\ndestruction\nlifelessly\nwrinkled\nexecutioner\nconsciousness\nblackened\nremember\ngritted\nthreatening\nstringy\njunction\nspokes\nhurtling\nstoreroom\ndismissively\nberet\nlizard\ncages\nslick\nlisted\nbrighter\nswallowing\ndistances\nsirens\ncapsules\nflared\nblueprint\nunplugs\nroadway\ncountertop\ncoil\nseventh\ncocked\nfreeing\nrefills\nheadsets\nknowingly\ncollared\nmerry\ncreamy\nrearranges\nhairline\nkicker\nadorn\npuppets\npeaks\nsomeones\nawarded\nswift\nchoking\ngod\ndefensive\nstumps\nwedge\nroman\nplanter\ngraciously\noverlooks\npanicking\nunfastens\nillustrated\nspoke\nquivering\nadvice\nattaching\nhammock\nsquid\nsurging\nrecedes\nconvention\n60s\nremoval\nblizzard\nreluctant\nbuttoning\nfrock\nskulks\npiglet\nsnout\nsincere\nreview\nstifle\nshutter\nawestruck\nresolve\nartificial\ndistaste\nhonks\nenraptured\ngreenhouse\nwriggles\ninstinctively\nhacks\nvegas\nblaring\ndouses\nvillain\nengraved\nbeady\nstripe\nwail\nchance\nbee\nbanquet\ndepart\nvalve\nblowtorch\nhostile\nflurry\nencased\nintent\ndetailing\nembroidery\njots\ntailored\nscuttle\nnailed\nabsorbed\nrottweiler\ntreasure\nonlooker\ncharcoal\ntoasts\ncontorted\nimploring\nadjustments\nchessboard\nlodge\nconvenience\ncamcorder\nfacebook\nmnemonic\nclippings\nleisurely\nunload\ncircled\ntesting\nunlock\ncollapsed\nwads\nboiler\nsash\ndime\nsided\nwhipped\ngoofy\nsaddles\nslit\ntold\nteenaged\nglee\nbreathe\nbursting\nadmiral\nunique\nsigned\npruning\nmotors\neyeball\nusher\nobvious\npissed\ninterested\nunusual\nwhatever\nwondering\nafraid\neleven\nsatisfaction\nwhimpering\nperiodically\nallowed\nimpossible\nturrets\ncroupier\nunderstands\nastonishment\necho\nphrase\npractically\nb.\ndelegates\nscenic\nwheeling\nembankment\nclusters\nsole\nliterally\ndefend\nconcealed\nfailed\nnightie\nrelative\ndeafening\ndrove\nswivel\ncaddy\nrhythmic\nknapsack\nbishop\nashram\ncombed\ntrampled\nrespect\nyes\nwhether\nworse\ntomb\nwindy\nforgotten\naghast\ntaunt\nimpulse\nbridges\ntollkeeper\nminister\nwagging\ntoad\ntorchlight\njavelins\nheights\nreverie\ndevastation\nsometime\narizona\nottoman\npitched\nmold\ndismay\napartments\npanned\nincident\nsongwriter\nexplanation\nadjusted\njamming\nsplattered\nphial\nbattles\nnazgul\neffortlessly\nswamp\nscraped\ndealt\nloosen\npanama\ndiadem\ngypsy\ncascade\nslowed\nprecisely\nironed\nmashing\nchoosing\nwaved\npainter\nfinale\n40s\nknickers\nbugle\nrubbed\nflorida\nrural\nrucksack\naston\ninvestigate\nfells\ncollie\nsurgery\nmistakes\nupcoming\nwelded\nbuff\nbatman\ngroomers\nweightlifter\nferociously\ntransitioning\npiercings\ngadget\nehow\nbleach\nheighten\ntrowel\nwindsurfers\ndiaper\ncountries\nsuntan\ncam\nstrum\nlayups\nstacking\nrazors\nadidas\nunpaved\nsponsors\njockeys\nvs\ninformant\nhippogriff\ntwinkle\nmeekly\nundercover\nexplosive\ncordless\nduffle\nenthusiastic\nwestern\nbullpen\ngay\nbeetle\nchickens\ncinnamon\nswarthy\nhispanic\narrest\ncrews\nperks\nwarehouses\nsideburns\n3d\nemblazoned\nwired\ncheckered\nsmiley\nemanating\nflamethrower\nwhites\nresemble\ntvs\nceramic\ncondom\ndismisses\nindeed\nbeeline\ncoiled\ngreetings\nhappiness\n00\ntwinkie\njostles\ntrapdoor\nsnare\nvictims\nmoonlit\nboldly\nrecess\nspectacular\nmaterializes\ndisarms\nrunaway\ndistinguished\ninscription\nremorseful\nbeverages\nspitting\ncoated\ndissipates\nrailcar\ndowned\nabyss\noutlined\nquizzical\nsedans\nmotorcade\nexecutes\nflatbed\nguardrail\ncaged\nsteeple\nchandeliers\ndistractedly\ngrade\ncaked\nsawed\nwithering\nhardened\nwhirlwind\nflail\nemptying\nintensifies\nleak\nmexican\nmimics\nshimmy\nnuns\nnun\ntyler\nsundae\nthousand\nroam\naverting\nthong\nsushi\nflicking\ncarousel\nsleepy\nmischievously\nblush\ncompetitively\nflourishes\nplainly\ntequila\nogles\njean\nlids\nskimpy\ntrendy\naffectionate\nreopens\ninnocently\nfamous\nsarcophagus\nbarbed\nlags\nunharmed\nwaterfront\nrestrains\nnewsstand\ngi\ndestroying\ndashing\ntrue\nunfold\ncoastal\nstarry\ndue\nradiant\ngraze\nfoamy\nrespective\nbullies\nveteran\nguilty\nscrambled\nroiling\ndangerously\nreceding\ncrystalline\nairborne\nvomit\ndisgustedly\nfox\nsearchlight\nwarms\nwince\ndolly\ncheeked\nmarquee\nposh\npatterned\nbulldog\ntrades\nreassuring\ndefending\ncrumbling\npray\nbrawny\nmotorcyclist\nboxed\ntaxis\nniece\npivots\nmarkings\nsupervises\nshakily\nbulletproof\naccompanying\ngrating\nbrownstone\npaned\nframework\nreeds\ngrapples\ndividing\ndeflates\nfatigues\ncursive\ncharleston\ntactical\nbudge\nabandon\nailing\nsorrowfully\nsoundly\nmistake\nsunk\nseize\nnumbly\nreader\nmoist\nantenna\ndistrict\nfixedly\nwebcam\nmicah\nvariations\ngawking\nspeakers\natlanta\npupils\nshrink\ncharger\nmidway\nsympathy\ndawns\no'clock\nsurgeon\ntreading\nscorched\ndemonic\nmohawked\ncamper\nalternately\ncomposed\nstructures\nvaulted\namphitheater\nstations\nsummoning\nnotepad\nprominent\ngrandson\ncomplicated\nquicker\nshafts\nskeletons\nheeled\nprices\nminutemen\npursues\ntransfer\ndayton\ncaviar\ninviting\nbarriers\nquickens\nfutilely\nfrenzy\ntechnology\ngash\nomelet\nscars\nunisphere\nfiddle\nmischievous\ntimber\nrecipes\ncordon\nbrowses\npastries\ncock\nchipped\ncelery\nmanicured\nmango\ngaggle\naisles\npavilion\nfixture\nlocals\npurpose\ndeftly\nhails\nreptile\nsoftened\ntallest\nunroll\nmocking\nfountains\nregain\namplifier\nslacks\ngoods\ninadvertently\ngiddily\nsplayed\nsurvival\nurine\nleverage\npry\nviewed\nphotographed\ngleefully\nwhisked\nnimrod\nlovey\nheats\nstethoscope\npiglets\nintact\nhilltop\nuncaps\nsneezes\nreplica\ntrough\nproceedings\ngrizzly\ncatcher\nannouncers\ncoastline\nflowerbed\nattacking\nlas\nentourage\nracked\ncontemplative\nlava\nlayout\npup\nurns\nwhirling\nfiddling\npassion\nspheres\nrate\nknight\nurging\ntemples\nhaughtily\ndemeanor\ndumbly\njiggles\nlistless\nmatveyev\nu.\nmashes\nemptied\nregisters\nrebreather\ntoasting\nturntable\nplastered\ncurtained\nhysterical\nnoblewoman\nwool\ncityscape\nhalves\nfireballs\nreviews\nburger\nboogie\nparent\nprosthetic\nladle\nspout\nbandana\nloom\nruffled\nrestrained\nproblem\nmention\nremnants\nwennerstrom\nrainbow\nhedestad\nguardian\nv.\narchive\nlulls\nwanted\nphoenix\nfreely\nberries\nrecovery\ncoaster\nembossed\nadmire\nantonio\nunveils\nflyer\nsearchingly\nraspberries\ndribbles\ncomplies\ncapes\nbifrost\ntaught\ntechnicians\npulleys\nlisting\nrisen\ncarnage\nstaircases\nsnoop\nsodden\nwinnings\nberth\ntrouser\nerect\nlee\ntalent\nfavorite\nwreath\nlassoes\nlucky\npoison\ncasserole\ncrackers\nclients\nnapkins\njaguar\nwhiteboard\nhighlighted\nscaly\naquarium\nrotation\ntags\ndolce\ncrutch\nbuffs\ninmate\ncoordinated\ntwenties\nautomobile\nburying\nslipped\nsuppress\noccasion\nstrums\nbuzzer\nmurmur\nconsists\nrestraining\nriverbed\nsites\nlathered\nreservoir\nindecisive\nmovies\nslapped\ngrunt\nshrieking\nimmobile\nastounded\npeddle\ngowns\narmpits\nwore\ndominates\nrapping\nhousehold\nchatter\nhushed\nhindu\nsplendid\nviciously\nhopes\nindia\nchelmsford\nmassaging\namiably\npackets\nnco\nsomehow\ndifferently\nblending\ngraveyard\nhello\nrickety\nkeenly\noutcome\ndollars\nclatter\ntat\nconstant\nsorrow\nbanners\nnoose\nmidget\nparticularly\nmortified\npowders\nreenters\nstreamers\nafar\nconservative\nhuggies\nscooped\nespecially\nunsuccessfully\nknown\nfuse\ninhaler\nmaze\njournals\nelves\nfirework\nplinth\npalantir\nkilled\nruin\nelven\npeoples\nsting\nmalevolent\nrohan\ncontinued\nbattlements\nlurking\nundo\ndreams\nnorther\nsupermarket\nmuzzle\ntanned\nprobably\nloosening\nbellboy\nquadrangle\ncaressing\nstake\ntiming\ncontinually\ncheery\narchbishop\ncommendatore\nbrowsing\nketchup\ncrucifix\nensues\nushered\nsewer\ntugboat\nzeppelin\nhubcap\neaster\n14\nfailing\ndwarfed\nsiding\ntaj\ngaps\nwebbing\nglaze\nfusion\ntritium\nunconvinced\nzig\nfronted\ncuddling\nexhibition\ngrainy\nbeaches\nwhilst\nnunchucks\nappliance\nstylists\nmulticolored\ncobbled\nlavatory\ndefenders\ngnn\nrafter\nhmong\ndecoration\ndementor\naccessories\ngryffindors\nnewsroom\nsights\nreplacement\ndonuts\nproduction\nwindex\ntrampolines\ntrimmers\nplated\nparticipation\nweigh\namounts\nswingset\nurl\nwww\n2013\nteh\nounce\neasier\ncleanser\nchug\nwindsurfer\naccordions\nracquets\nexamples\nnetted\nsoaping\nclarinet\nsocializing\nmaracas\nclasses\ncongratulating\nsunblock\njetski\ncommences\nproductions\nwalkover\nbologna\nworkouts\nbrasil\njim\nhoudini\nmasters\nbeiber\nfirearms\nd'artagnan\nprevia\nbarmaid\ncutout\ndrama\ndisturbing\nbooze\nmantel\nnipples\nrole\nduel\nenemies\nseatbelt\nbowtie\nreload\nslideshow\nmashed\nmounds\nassailant\nbackdoor\ndatsun\nunravels\nadorning\nsales\nlaunched\npackaged\nbracket\nbedding\nknotted\nshowroom\nunimpressed\nclowns\nhoisted\nfiltering\nexpectations\nam\nshopkeeper\nshimmers\nblossoms\nbloom\nangular\nmonstrous\nchattering\nfiancee\ndismissive\npitchfork\nroundhouse\nhideous\nshacks\ncaptor\nveins\nkeels\ndemure\nregretfully\nconfidence\nbracing\ncountless\nslashing\ntangle\nconsumes\nperuses\ndarkly\ncheckpoint\nsnipers\n180\nswerving\nwindshields\nstored\nallow\nartillery\ndisarray\ndecrepit\nforklift\naggressive\nsinister\nsearchlights\nfond\nbreadstick\npurchases\nraindrops\nscrunches\nfakes\nflirtatious\nhaughty\ncontorts\nprimly\nbaggage\npies\nspecifically\nshreds\nissue\nadvertises\nrevolves\nphrases\nshowered\ndiamonds\ncoils\nnestles\nrehearsing\neyelid\nmild\nhousing\nbartenders\nhypodermic\nbackroom\nbookcase\nflanking\ncomics\nfoggy\nstudded\nstealing\nallied\nbomber\nslits\nplanted\nwetsuits\nvegetation\ncleanly\nspeck\nspectacle\nlively\nknobs\npropel\nloosened\nbuoys\nrespectful\nfling\nturbulence\ntreacherous\nrecliner\nsoprano\ngreeted\nlunging\nadoring\nplunks\noldest\nmusses\nsnowfall\nroyce\nchuckling\nwringing\nbale\ngould\nhoist\ndrained\nrib\ndoubled\nconfer\nnavigates\nfurtive\nmarshal\nswagger\nhungry\nslumbering\ntrace\ntrailed\nsnatching\nconstructed\nmethodically\nconveyor\nsent\nglinting\nvenetian\ncrook\ncollector\nlashed\nboardroom\nspanks\nportions\n'm\ncleavage\neiffel\nhologram\nthumbnail\nslackens\ncylinders\ngreenish\ndiagrams\nspurts\nlaunching\ndunk\nkindly\nsarcastic\nunwavering\nsorry\nemt\ngallon\nabandons\nconvulses\nclergyman\nbrutish\nhandfuls\nsocket\nreverts\nhulking\ndisintegrate\nridges\ninky\nringed\nsockets\nhilt\nrust\narmory\nslump\noverwhelming\narabic\nauthority\ninfo\ncomfy\ndignified\nvisual\nbead\nbusty\ncasing\nboathouse\nwidening\ninching\nefforts\nrepaired\ndetach\nlobsters\nexplorers\ndarken\nfireman\nengineers\ntimed\nopulent\nstubborn\nclasp\npursuer\nforcefully\nequipped\nsecuring\nshowers\ntriangles\nsparking\nmenus\nwidened\nhearted\nrestless\nadoringly\nstem\nhuff\nstew\ncarbon\nblog\nwish\ncocktails\nshuttle\nbosom\nlayered\npigtails\nbuds\nskilled\nforbidden\nlofty\npatched\npupil\nblearily\nwoefully\nparry\nfluidly\ntweezers\nmr.\nsuperimposed\nheadgear\njapan\nhangers\npant\npointer\nemitting\ncrab\ngoo\nraven\nkhakis\nsmoothes\ndiagonally\nplus\nblackboard\nlibrarian\nillustrates\nprays\npreserver\nconvulsing\npartway\nseeps\nbait\nmeerkats\nspherical\ncascades\npamphlets\nsmothers\nerratically\nmocks\nskidding\nscrewed\nsubtly\ngushes\nlavender\nroves\nsnowman\nwebbed\nproduce\ngust\nwispy\nteapot\nsideboard\ncousins\ngnarled\npens\ndeed\nseason\nmagical\ngags\ntunes\ngrandparents\npinball\nslots\ntiered\ndissolve\nempire\ncombines\npods\nscottish\nmile\nindignantly\nandroid\natv\nresulting\ntracing\nunits\nmistress\noyster\nhike\ndoorways\nmessenger\npummel\ngrotesque\ncanopied\ndeer\ntherapist\nfeeble\nharmlessly\nwelling\nattache\nashore\nclimbers\ntraced\nfrosty\nbindings\nthrashes\nmatronly\nunderstand\nfinely\npure\narabian\nprinting\nzipping\nrestaurants\nencouragingly\nbottled\nbeached\nsteams\ndynamite\ntelescope\nmarauder\ncoordinates\nstepfather\nfumbling\nvivian\ndiploma\nshoppers\nmemorial\ndisconnects\ndeadbolt\nmillennium\nearshot\nsteely\nproceeding\nlikely\necstasy\nswastika\nviewing\nintrigued\ndirected\nchew\ngenuinely\nfuture\nseductive\ndesigned\nnoting\nsculpting\nlegal\ncreepy\nchelsea\npackaging\ntransmitter\nreference\nbouncer\nleaders\nstuns\ncitadel\nswarming\ngenerator\ndirect\nsegments\nseamen\nbubbling\nbalconies\nleaded\nsilt\npistons\nsketchpad\nconsisting\nslid\nross\ndespairingly\narmful\nconsulting\napplication\nstaffers\nspool\nbakery\nidentification\nmars\ncracker\nhighlighting\nprotrude\nparallels\nsaleswoman\ntuning\nfend\ncornered\nsurprising\ndeadly\nattackers\nprizes\ntwitching\nago\nsell\nentirely\ndrown\nvideotaping\nsanctuary\ncontempt\natmosphere\ncharged\nscent\nprotest\nrapt\nrecent\nlump\nnursing\nimprovement\nenglishman\nreasons\nheadwaiter\nswiss\nbatting\nmanaged\nappeared\nterrifying\ncouncil\npromontory\nincrease\nunmarked\nforties\nsnapped\nhardly\nindistinctly\nlettered\nviewpoint\nbenignly\ndelicately\ndoubt\ngeese\ngrouped\nsqueals\nanchorman\nbuttocks\ndumped\nbuzzing\nspaces\nredcap\nconcentrate\nwaistcoat\napprehension\nwarmth\nterraced\ncavalry\neerily\nscratched\nsurveying\ndisclaimer\npas\nwit\nimpression\nchill\nutterly\nabha\nknots\npainful\nmothers\ndrugstore\ndirectors\nassociated\nhysterically\nhurl\nunknown\nproblems\nseesaw\npomade\nmoaning\ninterrogator\nwizard\nscrubbed\nbuffeted\nurgent\ndocumentary\nrummaging\ntoaster\nmarkers\ndumbstruck\ndetectives\ndiapers\npopped\nmuscled\ncompletion\npainters\njumpsuit\nimperceptibly\nisildur\nwicked\nscabbard\n200\nthuds\ngondorian\narmour\nargue\nfuss\nplateau\nrohirrim\nlair\ndozing\ngrubby\nannouncing\nchevrolet\nvenice\nhugged\nsultan\narranging\nended\njigger\nknot\nmystified\nurge\nfingered\nturret\nforte\nvain\ncompose\nhowls\nreflective\ncabins\ndusting\nnasty\nscout\nturk\nfreighters\ntapestry\nassistance\nspaceship\ndetached\npotion\nadvertised\ndormitory\ninanely\npoolside\nbuffer\nmahal\nheadscarf\nbalaclava\nvolleys\nbrolly\ntimbers\nbrimming\nflit\nbenefit\naprons\noptions\ntrolleys\nthrottle\naimlessly\nskywards\ntreat\nfilofax\nholiday\nalsatian\nvirtual\nsoak\nlacy\nturquoise\ngenerally\ntemporarily\nfootman\nintervention\ntowing\nrestarts\nchiseled\nbroke\ncorgis\nbuckingham\nbristol\naffect\nrivers\ngran\ntorino\ncolt\nmarking\nbasilisk\ndeluminator\ncactus\nbroomsticks\nharp\ncourses\nprimed\nlorries\nachieve\noranges\nsharpened\nmitten\ngort\nbroth\ngren\nrepetition\ntemplate\nsmoothen\nstages\nhandsprings\nshiner\noverlay\nprovided\ngargle\nbullfighter\nfondant\nconsecutive\nduo\n2012\nbloopers\nillustrating\nidle\njumpers\nlotions\ninstruct\nrandomly\nreef\nvolts\nfencer\npyramids\nbrazil\nglues\nrectangle\nsreet\nwaiving\nellen\ncheddar\nclaus\nprofessionally\nhelpful\nmuffin\norganization\nkm\nparticipant\njuiced\ncreek\nmoping\nautomated\nsunburn\nrepresented\nscythe\ncontinuous\nknifes\nresets\nfreestyle\njesse\ncooled\nmulching\nboaters\nlb\njudged\nwaterboarding\ngraham\nsquirrel\nlifebuoy\nbarre\nunicycle\nbricked\nkevin\njuicing\nwindsurf\nmarshmallows\ntuber\nsitups\nlobe\nreverend\nhag\ndurmstrang\ntounge\nsprinter\ngq\nbanquette\nbounty\ngrotto\nproceeded\nf\nhump\nstickers\nyouthful\nbleached\ndrugs\nuncontrollably\ncamaro\nnewcomers\ncymbal\naccount\npeter\nhoodies\nawaits\ned\nrig\nyielding\nbleed\nsunroof\nbatteries\nviolence\nchokehold\nbops\nbuttoned\ngetaway\nshard\nplunger\nschematic\nditches\nmerchandise\ndivider\nmussed\npeddles\n28\ngloomily\nsubtitles\nacknowledgment\narchitecture\nappraises\nairy\n500\ncounters\nbinds\nveiled\nwafting\ndeliberate\nstupor\nslain\nflowery\nslaves\nfray\ndepiction\nspecialized\nbaseboards\njostling\nblots\nbattlefield\nsmartphone\nsoftening\nelectronics\nabrupt\nsnug\ntoppling\nintruders\nsupported\neavesdrops\nbond\npelt\nslicked\nbloodstained\nconverse\ncrosswalk\nsweats\nprofusely\naustin\npowers\nroasting\nblossom\nurinal\nunrolling\nperusing\nadopted\nj.\nmadison\ntopple\ntux\ncruising\nsequined\nlabels\nbeckoning\ngyrates\nwatchful\nmuted\ntambourine\npianist\nconceals\nwhisk\ninterlaces\npeck\ncordial\nwidely\nrecruitment\ndims\nprovides\nsneaking\nautograph\nescaped\nfins\ndestroy\nincinerates\ngrapple\nsavings\nnibbling\nmended\nbeachfront\nrusted\nshorthaired\nlinked\ncresting\nskimming\nconflicted\nbusts\ntuck\nhuddling\ncontented\nentitled\nscrawled\nlatest\ngleams\nstokes\npebbles\nsecluded\nrowdy\nemotionally\nswells\nglossy\nperpendicular\nrejoin\nmournful\nviewfinder\ncrystals\nslyly\nmart\nlamppost\nauthorities\nivory\nmorsel\nplucked\ncoca\nmeager\nneutral\nsofas\nhash\ncrush\npeephole\ndapper\nchestnut\n13\nvengeful\nfootwork\nwallops\ndisks\nchili\nbustle\naffects\ncrossbar\npromptly\nbreaker\nbuzzes\nhatchet\npowerfully\nsensual\nflawless\ndistributes\nstylized\noperated\ndainty\nportico\nwrithe\nscurrying\ntripping\nscreened\npenny\ncoverage\ncolonial\nafghanistan\nfastened\nappointed\ncomedy\nguiltily\nannoyance\nhandrail\noverhears\nmilkshake\nprotesting\nconcoction\nsnips\ntechs\nshanty\nshrubbery\nrefugee\nfloods\ncaptors\nmothership\nprojected\ndimensional\nhearts\nolives\nmeticulously\nsews\nscarlet\nguidance\nglittery\niphone\nmajority\nslush\nm.\nperspiration\nsleazy\ntrashed\nrocker\npenthouse\naffecting\nromantic\npacific\nconverted\ndefeatedly\nfro\nappraisingly\ncrazily\ntelescopic\noutskirts\nextinguishes\nwatchtower\nrotting\nurinating\npassages\nsurrender\nbinocular\nchant\nbrawl\nbloodshot\nspews\nranking\nassigned\nneglected\ndelta\nprowls\nwelcomes\ntongues\nscatters\nnipple\nscoot\ntoyshop\ngirders\ncavity\noverlapping\ncobble\nstoned\nknights\nrevelers\nmagician\nspewing\ntick\nstarring\nhustling\ninsistently\nslumbers\nbearings\nindifferent\nqueens\nencounters\nsuspect\nmangled\n16\nresidents\ntotes\nproprietor\nquestioning\n26\nreward\nplans\ncockatoo\nemits\nthrusters\nuncorks\nracecars\nwiggle\nejects\nprojection\nwastebasket\npulsing\nincorporates\nribbed\nmayhem\ntaser\ntrudging\nplots\nresidence\nroams\nwafts\nparmesan\nradiantly\ndollop\nbacktracks\nreserved\nsieve\ntensing\npostman\ndine\nreflecting\nsheep\nprotected\nfender\ndrilled\nmonastery\nexquisite\nprecise\nquivers\nslouched\nthickly\npursing\nstances\nsidestep\nexpect\nstomachs\nprimate\nmelon\nclawed\ngrumpy\nmedieval\nvortex\ntoday\nalertly\ndean\nrefuge\nyawn\nvibrant\nbiscuits\nkneads\nvictorious\nseagulls\nstub\nfrenzied\nsaddened\nspringing\ncompassionate\nsniffles\nswabs\nanyway\nibs\nwisps\nslinks\ncharts\nfurnishings\ncrazed\ninvite\ndreamy\nunhatched\nsnuggled\nentwined\nlatches\ntulle\nhoof\nbackstroke\ncompassionately\ncheerily\nreunited\nprovocatively\nplasters\nfreckles\npancakes\nstripper\nshapeless\ntricycle\npushups\nhawk\njukebox\naffection\nquote\ngreek\narchers\ndecked\ngauzy\ncolumned\ntended\nheroes\ngorgeous\nrecreation\ngaming\nrearrange\nsplitting\ndna\nchambers\ndye\nactivate\natvs\ncrust\nrages\ntwig\nrevolve\nafrica\nsac\ntackling\nnavel\nignite\nsaved\nprecedes\ncondensation\nlash\nrepels\ngrizzled\nhumbly\nwidow\ncurtsy\nhound\nsquishes\nmeaningfully\nblissfully\nbrain\nprinter\nstung\nscrutinizing\nboar\ncrevasse\nheadlamps\ntrickling\nglimmer\ntextbook\n19th\npinching\ncomatose\nfirelight\ncontemporary\neagles\nrueful\nincantus\npirouettes\nexcuses\ncontrast\nfloodlights\njewel\nshrewdly\nbeloved\nskulls\nukulele\nhelmsman\ndoorstep\nspirits\nseemed\nallen\nsketching\nassignments\ndusky\ndoodle\nabsent\nsaliva\nt.\nredial\nenvelops\nvestibule\nprescription\ntrainees\nblurs\ntechie\nnegative\ncurtly\nmotorized\ngottfried\nobituary\nedged\nrecognizable\nfumes\nhearse\ninternet\ntailor\nshady\nstonily\nconsidering\nwagoneer\nnappy\nimmaculately\nparapet\nmagnum\nleslie\nharvey\nswanky\nengland\nblunt\njammed\nbladed\nheadbutts\ndispatches\nidling\nponcho\nembedded\nrecovered\ngnaws\nguarding\nexchanged\ncrewmembers\ntorrent\nwinch\ncello\nelaborately\ndesserts\nroommates\nfairies\nsquirming\nshrinking\nawed\nhopeless\ndiscouraged\ndefender\nwhoop\nbud\nmutters\ncaptivated\nsuede\nstetson\ndonkey\nholstered\nstraggly\nlargely\nwrest\ncrevice\nivy\nmature\nwriggling\nferris\nmoat\n2010\nmonkeys\nflex\nbiceps\nfrilly\npassersby\napproving\nplethora\nrattling\nfuzzy\nproducing\nsteels\nplum\nrecruit\nstrangling\nteary\ninitial\nexpressing\nfastening\nbanjo\ncon\nbloodied\nharnesses\nshane\nrepeating\nstronger\nprofessionals\ncds\ngreasy\nunhook\nsmoked\nsexual\nmuffled\nfreak\nnights\naloud\ndiscomfort\npraise\ndefinitely\noverseer\nparrot\ndeparts\nevident\ntablecloth\nattending\ncrunch\nunloading\nsuccession\ndiscussion\nbeef\ncollected\nprecious\nperspiring\nsignificantly\nfingering\nhumming\nquilt\nactivist\nabsolutely\nschoolhouse\nseeking\npraying\nvigorous\ntarpaulin\nstyrofoam\nharshly\nworry\nsnowing\norganic\nmilkman\nguardsmen\ngunshots\nurinates\nmanning\ncabs\ndisco\nnike\natlantic\nscrapbook\nwatchman\nanklet\ncanned\nspoken\nwalker\nsixty\nstupefied\nanteroom\ntortured\nwetting\ndignitaries\nsturdy\ntemper\nplainclothes\nminers\nconvinced\nmarched\nawait\nintercut\ncameramen\nbabes\nseventeen\nbatsman\nremained\nmagistrate\nreasonable\nloves\nmarchers\ndisdain\npostures\nresplendent\nanthem\nconviction\nwonders\nextensive\nphotography\nheadstones\nwallaces\ncuddle\npeanuts\ninfinitely\nshoelaces\nsavagely\nsupper\npunk\nhatred\nlatter\naccomplished\nassisted\nwresting\nconvict\ndeputies\nthreateningly\nhisses\nbelches\nbullwhip\nboater\nacknowledgement\naudible\ncandlesticks\nunpacking\nbeggars\nmauve\nintervals\ncaramel\nbarrow\nbasins\nclatters\nlobbing\nwise\nuntying\ntarts\nrumbling\nefficiently\nrap\ncornflakes\noverheard\nka\nthunders\nrigid\nsquealing\nentertainment\nbelongs\nmahogany\nconcentrated\nwhoever\ncomposer\nagility\nabstract\nsecretly\nlandlord\nwee\nbillfold\n35\ntaunts\nunbuttoned\ninjuries\nale\nisengard\ndraining\nwoven\ngantry\nsinuous\ngoblins\ndesperation\nbedraggled\nmajestic\nosgiliath\ntrolls\nfoul\nshelob\nconfronted\ntrepidation\nagreement\nultimately\nbrute\nplunged\nwalkman\nvaguely\ncricketers\nbrothel\nsprinkling\nwizened\ncarelessly\nmorose\nhotels\neveryday\nwounds\nmiracle\njeweled\nskill\nchrist\ndecent\nsteal\nattended\ncu\nexperiences\nensemble\nannounce\nterms\nphysically\nleathery\nphiladelphia\nmimic\nlumber\nelectrodes\nbookshelves\nfraught\ndisembark\nradiomen\nleaflets\nfuselage\ngalleon\nalign\nltd\ndear\nsnowstorm\ncloisters\nfilters\neaters\nmobiles\nflustered\nminus\nvhs\nmumbai\npickles\n20s\ntuk\ngenerated\npasserby\ngravestone\npizzas\nunflinching\ncowering\nshoelace\nlyrics\ngrains\nmugshot\nsymbiote\nlifebelt\ngrapes\nbookshop\nsan\nglacier\npda\nboarded\nflier\nwindmill\ndivided\nnewborn\ncuddly\nmousse\ntruffles\nheadmistress\nnetherfield\ncrags\nwomans\nfunction\ntweed\ngramophone\ninhaling\nfugitives\nhyperemic\nsuggests\noutfield\nrovers\ncities\nreplacing\nplowing\nlabrador\npixies\nlicked\ndeflected\nflavor\nheadrest\nburmese\nthinning\nhandlers\npager\nblazers\nsuspension\nlearns\nferret\nformula\ndabbing\nhurting\nshowcased\nlapse\nchampionships\nangels\nspecialist\ncucumbers\nconclude\nwaxed\nsilicone\nmanis\nsnorkeling\nvolleyballs\nshrub\ntexture\nnavigating\nsart\nlisterine\nmidle\nrepresentative\ninitially\nstrongly\nlathering\nans\ninbetween\njoking\ntoddlers\ngermany\nsteve\nvaulter\nperformances\nvaulters\nparagraph\nunsuccessful\nhandwash\nunscrew\nwaterskiing\ncommentator\nveterinarian\nprotectors\ntutu\naligned\nspringboard\nfreebie\nintentionally\neffectively\ngargles\nelmo\ncontestant\ncena\ndoh\nemery\ngoring\npiercer\nsandcastle\nbreakdance\ndemo\nsheers\noccur\nracketball\nremover\nwheeler\ncongo\nsnowslides\nfom\ninstallation\nremodeling\nbathe\nfutsal\nbullfighters\nmermaid\ncorals\nacrobatics\nlearned\nimplement\nacetone\nrode\nbarbershop\nsymphony\nlooses\nsealife\nmichele\nbetty\njockey\ncompilation\ndiagram\nmolder\nretriever\nmowers\nraiser\nbrad\ncollage\nkilt\naspects\nensuring\nsubscription\nwakeboards\nina\nguerrero\ncove\ndeputy\nsarah\nhoning\nlense\nsfu\ntran\njamie\ndeniro\ncrabs\nesu\npoopsie\ndepository\nanorak\nskaterat\nripper\ncontac\nmetropolitan\nacademy\nboasts\nhookers\n21\nhandicapped\nscrawny\nkeyboardist\ndepicting\nscience\naccusingly\nawesome\npartygoers\nhumping\nsaber\nchemicals\nspandex\nvolkswagen\ngushing\ndisheartened\ncohort\ntailgate\nproof\nhandguns\nconceal\ntauntingly\nprom\ndancefloor\nveer\nspiraling\npleads\njesus\njunkyard\nunderstandingly\nchimpanzee\nexposes\nhairless\nbrowse\nidentity\npuffed\nmarshmallow\nikea\n31\ncopying\nhumor\nafro\nflights\nmime\nfin\n75\ncandlestick\nprotege\ntribal\ndouglas\npharmacy\npestle\nenergetically\nplantation\nboasting\nsteed\ndaring\nswiping\nfoe\nnewfound\npetal\ncrowding\nmocha\nunderlings\nembeds\npastor\nshuttered\nclash\njaunty\nbranching\nrecklessly\ntipping\ntrajectory\nbayonet\nversatile\njostled\nbeauties\nmoscow\nscour\nmercilessly\ncobblestone\ninnocent\nplummeting\ntrailers\nstandstill\nborrowed\nregretful\nventuring\nsawing\nmannequins\nstrobe\nceilinged\nhazmat\nflorescent\nwrappings\nclockwise\nspa\nsteamy\nricochet\ncaliber\nregaining\nquiver\nshimmer\ngaudencio\ngil\nnaval\nloaves\nnuzzle\nfondles\nappraising\noreo\nhardcover\ndildo\nultrasound\nsimulates\nfondling\npiggyback\ncaboose\ngenitals\nmasculine\nboulevard\noffstage\nbodysuit\nflatly\ncynical\nintimate\nbrochure\nnaturedly\nexasperation\nrogers\nfuturistic\noversees\nfortress\nvials\nserum\ntaxicab\ntacked\nfrisks\ntackled\nbash\neurope\nfreed\nben\nconcave\nicily\ncompass\nbombed\nmerge\ndeflecting\nretract\njoystick\nyoke\nsteeply\nboxy\nuphill\nswelling\nhandiwork\npaddleboards\nenviously\ncolossal\nfrothy\nexchanging\ncrests\nexecuting\nbroodingly\npeacock\nseasoned\nhumiliated\nshambles\nspying\nstormy\nplucking\ncamped\ntiers\nundulating\nfoursome\nveterans\nvolcano\nchurns\nlei\nexpels\nlasers\nturntables\ntelekinetically\nsporty\npopulated\nencourages\nvarsity\nretired\nfirefighter\nbillow\nskid\nshatter\nimpaled\nsalami\npropping\nmoistened\ndroplets\nsupervisor\ntenement\nversus\ngrills\nremembering\nmedics\ncoffins\njune\nsparsely\nclinch\nslugs\nenvisions\nmidriff\nmagnetic\nmanhole\ncommuter\nassociate\nescorting\nleggings\nreset\ngaudy\nflattening\nevades\ndetection\nassassin\nbriefing\npaintbrushes\nchrome\naccompany\nsilencer\nuncovered\nlustfully\ndatabase\nelement\nunlocked\nmends\ndisconnected\ntextured\ntrickle\nigniting\nfleeting\nplywood\nseashell\nmailman\nnickel\npatrols\nmailbag\ndrowsily\ncandid\npanty\nmartha\nsnogs\nattract\nvulture\nsaves\nwrangle\nsolar\nshepherd\ngarments\nclothesline\njohnson\nmultitude\ncords\nbreach\nmercenary\nvolt\ndeflect\ndoggedly\nselections\nmismatched\ncaring\nsaturday\nrehearsal\nkeyhole\nchunky\ncourts\ncounselor\nconfessional\ngazebo\nlolls\nntsb\ncordoned\nawakened\nenlarged\nanonymous\nscolding\nsplatters\ngrazing\nghastly\nconfusedly\nplacid\nundercarriage\njolt\nexcavator\nshipping\nsupplier\nmaniacal\nquirks\nexpose\nrotunda\nregion\ndemolished\narchways\nfidgeting\nrot\nshrieks\nheavens\nenveloped\nprompting\norbits\nactive\ntagged\nhalting\narbor\ncomposing\nbailey\nclockwork\noils\npigeons\nassembly\nle\nharold\nb\nflush\nbookseller\nheaddress\nauthor\npendulum\nvibrate\nmoustache\ncandlelit\ndigitally\nticking\nclerks\nframing\nbreezy\ntimekeepers\nlawman\nstud\nlived\ndeadpan\nweeks\noutlaws\nmonth\nreinserts\nextinguishing\nii\nsells\ndisassembled\nholograph\npulses\neleventh\nearbuds\nample\nupholstered\nroast\ncocking\ndoubtfully\nhunts\ntousles\narmrest\nfaux\ndatebook\ncookbook\ngrocer\ndissatisfied\n50s\nera\nflirts\nenchanted\nchilds\nvilla\nprocessor\npreppy\norganize\ncookware\nshivers\nroped\nmanila\ndryly\nstatuesque\ndutifully\ndisembarks\ngravity\nobese\nserpentine\nheaped\nswatter\npaunchy\nmeek\ndelivering\nmopes\ngilded\npivot\ndisappointedly\npinky\nfootbridge\ninsects\nrep\nseizing\nstraightened\nfevered\ncalculating\n43\ncharm\ncushioned\naskew\nsplintered\nfreestanding\nphonograph\nhoe\nreptilian\nsplattering\nprimitive\nclumps\nhewn\nsoftball\nbooklet\ntasseled\nfistful\nfronts\ncheesecake\nmasking\ncurt\nbulbous\nadolescent\nnosed\nflotation\nsloshes\nabdominal\nbananas\ncarcass\nunwrapping\nrodent\nlazy\npawing\nslatted\nsavage\nluck\ngrowls\nshipmate\nferocious\nhunk\nstarboard\nteal\nopaque\ntigers\ndensely\nmeerkat\nwidth\ninsurance\nsurvivor\npolygraph\narthur\nnegligee\nhilton\nsourly\nverge\nagonized\ngraphs\nfrittata\nimmaculate\nengulfing\nstinky\nimitating\nprintout\npigeon\nimitate\nbabysitter\nhail\ntier\nhearth\nhustle\nprecipice\narrivals\ncrops\nbarley\nboutique\njackdaw\nsheltering\nfrankly\nedelweiss\nrooster\nsafari\nmatic\njeffreys\nbarricades\nexpanding\nshading\nw\ninquiring\nsheen\nfreedom\nalmond\nposeidon\nminotaur\ntransform\ncentaur\nparries\nrefreshment\ngranite\nmarbled\nflooding\nnevada\nroulette\nsears\nfissure\nemaciated\npinnacle\nstationed\nmeanders\ngirlish\nillustrations\nspacecraft\nvital\nspotless\nillumination\ndomes\nuser\nunlatches\ncoolers\nconcertina\nbeacons\nvessels\ntreelike\nreed\ndeformed\ndetaches\ndotting\nsmearing\npulley\nunfamiliar\nnottingham\nsubtle\nchancellor\npatronizing\ncolonnade\nwatered\nthinly\ndove\nnoble\nplot\nlonging\nhomestead\ndashed\ndecree\ntherapy\nfeverishly\njubilant\ncannonballs\ndroopy\nhesitating\nconversing\nsolutions\nconditioning\nfeminine\nkeen\nsalvage\njames\ndryers\npotomac\nswigging\nstubbornly\nrecognition\nhesitant\ngeorge\nbreaststroke\nsebastian\nstepmother\nhobbling\ndisfigured\npodiums\nincense\nox\nadopts\nsew\nestranged\nmanuscripts\nspan\nairplanes\nmatchbox\nscuffing\napprentice\nlongboard\nbitten\nbarbie\npreteen\nnestor\nmolding\ncanes\ntowed\nkaraboudjan\npontoon\nbeggar\nparachutes\nsalaad\ngrove\nhorned\nassignment\nlame\nrectangles\nrejects\ndoorframe\ncalculator\nlaced\ngraduation\nprowler\n911\nstripping\nrestraint\ndisposable\nflaxen\ninhale\nbarista\nmentions\ndirectory\nmountainous\nstrangers\npileup\nreflections\ninclined\nfootboard\nplanting\ngoose\nabutting\nhistoric\nestablishment\ncontemplatively\nmere\ncorporate\nvolumes\ncatalog\npasted\nstrangles\ncustom\nforkful\nsparkler\ntissues\nattorney\npledges\nsnatch\nnonplussed\ncorrugated\nprotecting\nflorist\nfiance\nintersecting\nobliges\ntruffle\nhasty\nwishers\nlavish\nleggy\nladles\nscape\ncrossover\ngrille\nsmithereens\nslimy\nbizarre\ngrapefruit\nhanky\nstealthy\nwithdraw\nblasting\nfaceless\nmichelle\nmovers\nsonia\nartest\n90\ndevelopment\ntrapeze\nmutt\nbrandish\nensuing\nbejeweled\npunctures\nshockwave\nasgardians\nbullhorn\nkingdom\ntommy\nhallways\ncontained\ntoppled\nsuction\ncompartments\nrescuers\ncarpathia\nsubmersibles\nsubs\nsediment\neel\nledger\ninsect\nstokers\ncigars\nlowest\nwobbling\namnesia\ndisoriented\ncrinkle\ngrudgingly\ndeathly\nheavier\nposse\nstubby\nmine\nlabored\nballed\nnook\nlopes\nreceipt\notters\nfootpath\nboars\nflamingos\ntasteful\nhumored\ndyed\ncharacteristics\nstirrups\nflounces\npreparations\nplanner\ntormentor\nmiami\ntightened\ngills\nbind\nmagnet\ncuba\nsupervising\nresuming\nheadlines\nindependence\nprocessing\nbirth\ninfected\nmedian\nstash\ncologne\nfuming\nvoltage\nhoard\ncritically\nspellbound\nh\nexpected\nexplorer\novernight\nhappier\nlearn\nhypnotized\nasparagus\nfrightening\nglock\ntenderness\ncassettes\nconspicuously\nconsiderable\nnor\ndeliver\nbehavior\nintricately\nencouragement\nwhispered\nentranceway\nliterature\nsuspects\nherded\narrested\nvaried\nevidently\nloudspeaker\nbrains\ncomforted\nhorribly\nmumbles\nsqueaking\ndelegate\nsixties\nchoked\ntuns\nfragment\ncoughing\nworkmen\ninert\nstucco\nfool\nminions\nappropriate\npreventing\nparadise\ncackles\nwars\nopportunity\nnoisily\ntiptoe\nramshackle\nfudge\ninverted\nsounding\ngrape\nrustling\nachieved\nleisure\ngroaning\nyawning\nscuttling\nhesitate\nthirteen\nloafer\nthanksgiving\nloafers\nweep\nfrenetic\nthrashing\ntantrum\ngumballs\nlincoln\ndin\neasing\nbounding\nboarders\nclod\nalabama\nautographed\navailable\nlatrine\nhippie\nvets\nisabel\nrigging\nprofound\nsupposed\nreceptacle\nswallowed\nrigidly\nforgetting\nbuying\ngardeners\nindians\nchilling\nsaris\nbilly\ncollars\nconsiderably\nforeboding\nequal\nirritation\nstings\nremorse\nmuslim\nbelligerent\npulpit\nchallengingly\nadc\nacknowledging\ncrumbs\nclerical\nhumanity\npeelings\ndwelling\nbleakly\nordered\nlistened\nseek\nadvocate\nwithdrawn\ncruel\nintake\nminor\ntruly\nfarewell\nimmense\nsurly\nappreciation\nconsider\ndiners\nstreetlight\ncornstarch\ngrowling\nwindpipe\ncrisis\nreporting\ncaravan\nshudder\nexaminer\nembroidered\nbouncers\nbefuddled\nhalls\ntownspeople\ngrooves\npropelled\nwaggling\nblues\nwithdrawing\nj\nmutely\nissues\nsoggy\nthus\no'daniel\ntins\nliqueur\nbelong\nrouged\nunloaded\ncentre\novercoats\nwoken\ntexas\ngamblers\nshotguns\naccelerating\ngale\nchick\nshopper\nfloated\nbothering\nsurprisingly\nexaggerated\nexhaling\nconnection\nguardedly\ntones\nsore\nregistering\nsweeper\nsmock\nobserved\nnoticed\nprogression\nsedate\ncommunicate\nsheriffs\ngunny\ntraps\nsorority\nfrat\nslashed\ncontemplating\nstandard\nanticipating\nseedy\ngothic\nshire\nmaggot\nbooty\nmossy\nringwraith\ninternal\nattracts\nhack\ninscribed\nruffling\nwizards\nbottomless\nceleborn\nhen\nchalice\n1000\npelennor\ndank\ncirith\nungol\nsagging\nshared\nmolten\ntrumpets\ninlet\nimpossibly\ntackle\ncolossus\nrattle\nnarration\nauction\npeeing\nundone\nupholstery\nminnesota\njauntily\ndrinkers\nunloads\ncares\ncombo\nforget\nteetering\nlineup\nkitchenette\nraincoats\nfootmen\nshame\neyelash\nwhirl\noriginally\nintermittent\ntending\nheartbeat\naria\nharpsichord\nriveted\nfeast\nimportance\ncurtsey\ninquiringly\ncreation\nholy\noccupy\ntorrential\ndisapproval\nreligious\nbruises\nyoungsters\nmint\nnape\nmingling\noc\nrelents\ncontroller\naccording\ntease\nclams\nclam\nmonitoring\ndeco\nintended\ninfested\nhulls\nperiscope\nmanipulating\nins\nnyc\npug\nconclusion\nfever\nthames\ndiagon\nvinyl\nborgin\nrequirement\nfax\nfishbowl\ncheeky\nunderfoot\nrefuse\nurchins\ntempo\nnodes\nbunches\nanimates\ncapacitors\nbees\ngrater\nfloored\nstabbed\ntar\nsquashed\nprowl\nsupervise\nrestored\npecks\nstilettos\nleague\nsifts\nglugs\nyellowstone\nplanning\nbridesmaid\npints\ntotters\nstiletto\nshoveled\npetticoat\ncranberry\ngrates\nabsentmindedly\n4x4\ndisburse\nwoolen\ngarnish\nleaflet\ncontemptuously\nalfa\ntracked\nquay\nq\nskim\nbore\nintervenes\nshims\nimperata\ncarpenter\nunderway\ncedar\nports\nstubbly\nglimpsed\n30s\nblackberry\nlandmarks\ntramp\nrewind\nspain\nlcd\nmickey\nverandah\noutcrop\nterritory\nlakes\nislands\nliners\nevacuation\ntwirled\ndell\nshooters\nlatino\ndrier\nmac\ngateau\ndursleys\ntatty\nsnatched\npoisonous\nthestral\ndreaming\nsnatchers\nsweaters\nprivet\nsnowballs\nministry\npython\nchaser\nirish\nbreather\nserrated\nbuggy\ncanteen\nsongs\nforecourt\nfiled\nreapers\nalrge\nrapper\nunstuck\ncowboys\nrhinestones\nalcohols\nkitesurfing\ncarwash\npacifier\nextensively\nsandbox\nar\nillustrate\ncrowned\nparamedics\npits\namazon\neliptical\ncomedian\ndispute\nhedging\nedging\nwashboard\ncriquet\nwmoan\nbobble\nkilts\ndelicious\ncanada\npvc\nstading\narenas\nsamurai\nmixtures\ntransportation\naustralia\nprepped\nrestart\nflexible\noccurring\nstating\ntheory\nathletics\n2009\nnarrating\nrollerblade\n4th\ntutus\nlye\nsponsored\ninvolves\nrigorous\npople\nfab\nchisel\nencourage\nmolds\nstatistics\ncaster\ndon\nwallpapers\nwaives\nartistic\ncommentates\nspecifics\nma\nwoodfire\nteresa\nhosing\nbagpiper\nequestrian\nbruno\nprune\nbalded\ncontext\nracer\noom\nspade\nintros\nrelay\ngored\ntoasted\nputing\nconcludes\nhairstyles\nmason\nzest\nwacker\npopsicle\n300\npiling\nscuff\nscreenshot\nschools\ncommenting\nop\nproviding\ntubs\nipad\nmin\ngloats\nharmonicas\nkits\nlengths\nvans\ncigarrette\nbruce\nsnowslide\ndeclared\npuppies\nomelets\ntanktop\nbrowned\nwaching\nmodeling\ncurry\nlube\nleveler\nshowcasing\nbreakdancing\nclorox\nmanmade\nreversed\nadn\nmishaps\ntwirler\nhulte\nmarathons\ndominating\nspackling\nexhale\nquotes\nheidler\nflew\navoided\nswiffer\nbrazilian\ncurbside\njokingly\nkg\n101\nrefs\nsoles\nargentina\nwalrus\nmoisturizer\nfund\ngluing\nsuma\napplauded\namputees\nscrubber\ncadets\nkleva\nrappelling\nsimmons\nlargest\npickaxe\nfirebolt\nbeauxbatons\ndavid\ntyson\nfunctions\nrendition\nclr\njuggle\nskins\nmeasurements\ntaylor\nexplanatory\ncroutons\npointe\norchard\ncalango\nsid\nanh\noliver\njon\nknelled\ntakeuchi\npikachu\nmugshots\npedicab\nsportensemble\nlures\nalter\nrevs\nfashions\nquiz\nsensitive\nbaggie\nboogies\nchemistry\nkeg\noperate\nsedona\ndefends\nyearbook\nonramp\npropane\ntruss\npinatas\nconduct\ngunfight\ncorrupt\nscrapyard\nskimmer\nvito\nclumsy\ntellers\nrailroad\nstomp\nkidney\nrouse\nrouses\nnametag\nporn\nsatiny\ncamisole\nstudiously\nbubbly\nmackenzie\nsculpted\nintertwined\ncrusader\nfestooned\ntwinkies\ngraduate\nprocesses\ndespondently\nchalked\nrowboat\nretrieved\nrendering\nspars\nunarmed\nforge\nstocks\nfutile\nbruise\nwaltzing\ndecapitates\nyapping\ntresses\nengraving\nrapist\ngore\nvamp\nbeheads\nbayou\nslumber\nunused\ntubman\nspirals\nconfederate\nchaotic\nmourning\ngoblets\ninfantry\nheadlamp\nshooter\nreadying\nlapping\ndivide\noutfitted\nspaced\nreversing\nfishtails\nrpg\npassports\nswitchblade\ntourniquet\nresentful\ncartridges\nencasement\nmaserati\nperuse\ndecaying\ninserting\nhitch\ndouse\nstagnant\nreadings\nsadistic\nrotor\nindigo\ngovernment\nwrinkle\napparel\nrustles\nappointment\npsychiatrist\nchristian\narmload\nstickman\nslash\nsheeting\ndroppings\nadorns\nfigurines\nspikey\nfucking\nsprig\ntortoise\nab\nwrathfully\nangelina\ncandidate\ngesticulates\navert\nheadphone\nprotester\ntac\nhunters\noral\nperching\nprance\nseeks\ncapitol\nxs\nfeathery\ndiva\niowa\nwindmills\nsoundman\npreps\ntroupe\ncomplexion\npicturesque\npelted\nbristles\nundergarments\norganizing\nsoundboard\nprimping\ndaybed\nslouch\nchins\nreemerges\nprivates\nbreathtaking\nstaggered\noctopus\nmp\ncorporal\nsuites\nmoons\nrotten\nactivating\ntimers\nghoulish\nbellow\ndictation\nrescued\nconverses\npellet\n400\ncoasts\nincinerating\nlabelled\nradar\nwindblown\nbrooklyn\nscruff\ncalmer\nrescuer\ncruz\nhinge\neffortless\nnotepaper\ndizzying\nbilled\ndiminishes\nbrackets\ndocumenting\nuninjured\nsurfacing\nmavericks\ndistorts\nsteeling\naccomplishment\ndepth\nloved\nintimidating\nlurch\npitching\ncapsizing\nuncurls\nfroth\n22\nheadlock\nravers\nlegos\nlidded\ncubby\nshedding\npelts\nstaining\nsawdust\ncorkscrew\nhelium\nchildishly\nspurting\nwaterproof\ndeflated\ncellphones\ncatholic\nlacquer\nnecklaces\nsunrise\nsulking\nturnstile\neldest\npadlocked\nbales\nautomobiles\nshushing\nvirtually\ncampbell\ntensed\narching\nchamp\nacrobatically\nalleyways\nautomatics\nlackey\nhydrant\naccost\nsnores\nhairpin\nsurrenders\nfingerprints\nmurdered\nsnifter\nlollipop\nelectrocutes\ncanvases\nlaundromat\nsimilarly\ndenied\ncataleya\nanalysis\nhones\nperturbed\ncradled\nsobered\nlasagna\ncamouflaged\nmarsh\nriffles\nharm\njumble\njefferson\nmule\nroundabout\nsunbathing\npergola\nexecs\nbum\nmarried\nfeigns\nparaphernalia\npuke\nritual\nconfiscated\nmilky\nmush\ntangles\nfearlessly\nmutilated\nabduction\npenned\ndully\nlevitating\nnavigation\ncrafts\ngranddaughter\nflyers\npricks\nbreezeway\nbustier\nsewn\nogle\nshamefully\nrighting\nretracting\nbulkhead\nspire\nretro\nchore\nbudweiser\nsermon\ntrevor\ncessna\ntrods\n08\nlars\ngrungy\nirregular\nsmudge\nnonchalance\ncritical\nambulances\nmoldy\nopenings\nsprouting\n2000\nchants\ndecay\nrecoil\npurposeful\nlaboriously\nwavers\ntaupe\ndetector\namble\npapered\nscopes\nundaunted\ninbox\nbroadcaster\npoufy\nmama\nunderhand\nclotheslines\nguzzle\nbackboard\nworktable\nstepladder\nvisited\nbookstore\nfeathered\nbreastplate\nplumed\ntrident\ngodmother\nconsume\ndoberman\nhinged\nconjures\nsaunter\ndevours\nadverts\nearlobe\nstatus\nmeaningful\ndoles\nunderling\nper\nhoods\nflinch\npillared\nsemicircle\nsubpoena\nchlorophyll\nrt\ningot\npalladium\nracecar\npooling\ntinged\nformulas\nsledgehammer\ndeploy\ngatling\ncontinent\ngraveled\ncareless\nspecimen\nwrung\nartfully\nraid\nlovelorn\npizzeria\nbeau\nannabelle\nhare\naspiring\nsautes\nfilmy\nmadame\nstature\npinkie\nsamples\ndeletes\nreciprocates\ngooey\nuncooked\nunpack\ndutch\nunnaturally\ncerulean\nbachelor\ntwine\nhandbags\ntousled\nagog\nmuck\nlagoon\nintervene\nheimlich\nbellies\nparkers\nshiver\nyellowed\nbackhand\ntreetops\ntoolbox\ngraying\ntote\nbrutally\ngoddess\nmelee\nyang\nroaming\nfanned\nscorpions\njetting\nsnapshot\norbit\nlateral\npiercingly\nflaring\nzipped\nflouncy\nguesthouse\nplop\npylon\nqueasily\npredator\ntrek\nsunbeams\nfeigning\nbluish\nthroats\nexpand\nhazel\ndiligently\nexams\nsubdues\nstalking\nblondes\nbanyan\nostrich\nbucks\nbail\norangutan\nsputtering\nsnarl\npersists\nbuoyancy\nbiscuit\njuxtaposed\ndew\nchewed\nheft\ntoothed\nmottled\nchomps\ngobbles\nuncover\nsuspends\nclawing\nlightens\ncomprehending\ninterlocked\ntawny\ngurgling\ninland\neerie\nwriters\nfootstool\nunflinchingly\nsustengo\nminimizes\ndizzily\njinx\ntubby\nshined\nnbc\ncheekily\nshins\nbathrooms\nflushing\nsardines\nespresso\nbosses\nguggenheim\nsulky\nbewilderedly\nsardine\nsmitten\nradiate\nsnaggletooth\nrory\ninward\nsuppressed\nslipper\ngarbed\nticker\nbaled\npleasing\nalights\nfrolic\nmirthfully\ndoughnut\ndecidedly\nbid\ncapital\nices\nsprawl\nbandaging\nsponging\ncourtly\ncongratulations\nhades\ngreyhound\nem\nflowering\ncoiling\npursue\ncasinos\nbellhop\ngraffitied\nferryman\nseams\ngush\ntimepiece\nisle\nclouded\nlawrence\nairlock\nardent\ncomputerized\npups\nskullcap\nrushed\nbagged\nmicroscope\ngiddy\npersistently\noblong\nhourglass\nfatal\nravel\nbackrest\ndiscolored\ntouchscreen\nnormally\nforceps\ngritting\nstaples\nrepresents\naffirming\nterrains\nsickle\nphysician\nfriar\njowly\narrogantly\nvat\nindifference\nworms\nlions\nchamois\nmulling\ndevouring\ncrone\ncagey\nmadly\noctagonal\nblot\ncharter\nwheat\nbacklit\nimagined\nsundress\nforever\n19\nunstable\ninscrutable\nsim\nstatuette\ndepositing\ncomponent\nvenom\ndyes\ncrypt\nexplosives\nthrash\nnuclear\nsnowflake\nhoused\nvirgil\nrestriction\nbrotherly\nsludge\nrecoiling\nporters\nsettled\ninstep\nstemmed\nidentically\nbereaved\nwei\ncarcasses\ncounterpart\nrebels\nrefugees\nshanghai\nplayboy\noccupant\nmatters\nwring\nsopping\ngong\nrefreshments\ndraft\nweakened\nstylus\nstitch\nblanches\nnesting\nperky\nbarreling\nstuds\nroach\nroaches\nwolves\naglow\npuritan\ngriddle\nmugger\ntesla\ntakeout\nslosh\nferrari\nlikeness\npersian\ncomical\nnoodle\nwallets\npickpocket\njaggerman\nnip\nprod\nanchored\nbianca\ntalons\nrugs\nleafless\nstonewall\ncaricature\nabreast\nlunchroom\npunctuated\nevergreens\nregions\ngarnished\nnumb\npottery\ninternational\nterminals\ncongested\nlocator\ndescriptive\npoem\ncoworkers\nslightest\ntraverses\nunderbrush\nweakens\nwebpage\nwiring\nharriet\nvolvo\nbroods\nhardening\nmanor\ntases\nchilled\ncutters\nverses\nicons\nmurders\ncaptioned\nsanitizer\nprotrudes\nwigs\ncrooks\nmississippi\nfidget\nmexico\nrodrigo\noverhang\npm\ntailed\nglanced\ndoodles\ncameron\nacademic\nlicorice\nstretchers\ner\nspelled\nblueberries\nvows\nwitness\nabashed\nvending\ndvds\ninquisitively\nspeckled\nlaptops\ntelevisions\nbought\nfizzing\ngnome\nscenarios\ndoggy\nsloppily\nquartet\ntalkies\navail\ncartoons\nterm\nmonthly\nalbums\nd'oeuvre\ndubious\nchallenging\nblah\nsignificant\nbicycling\ndispirited\nklimt\nsprinklers\ndrenching\nexists\nsignatures\nushering\narmies\nfreezing\nfractured\njotun\nconflict\ngrilling\njotunheim\nthicker\ncrumbled\nplanets\nfacades\ngangway\nreunite\nslanting\nsubmersible\nglint\nunclasps\nremotely\ngrayish\nfurnaces\nuppermost\nunlaced\nlacing\ncountess\nslouching\nsteamed\nfurnace\nwatertight\nwriggle\nroughneck\namp\nscoffs\nminces\nnhl\nhanged\nouthouse\nremounts\nexertion\nmatted\ncornbread\nsubsides\ngravestones\ndecapitated\nsmudged\nrosemoor\nfrizzy\nmemorabilia\nporcupine\nrookie\ndisdainful\nperfunctory\nmeasurement\ncapuchin\npitying\nlumbering\ntranquilizer\nstatements\ndepot\nwidower\nintelligent\nsqueegees\nprevents\nlatching\nmalfunctioning\ninspection\nunrelenting\noverjoyed\nbreezes\ndishrag\nboston\ntipsily\ntussle\noverflows\nbrighten\nmarina\nupdo\ngirlishly\nuntangle\nclamors\ntrellis\naustere\nluminous\ncapped\nextravagantly\ncharmingly\nexamined\nrecruiters\nwarden\nrec\ndisassemble\nrussia\nreappearing\nforearms\nvolcanic\nblossoming\nbarreled\nradioman\ntwister\nf.\nlunches\nannouncement\ncooper\ntoiletries\ntaco\nwoody\nclearance\nsighing\nriot\ntassels\naerosol\ninnards\ncorpulent\nbodied\npasty\ntrading\nupraised\nscraggly\nvaluables\ndroop\naftermath\ncustomized\nscamper\nfloyd\nhaunches\npeeping\nperfunctorily\nthreat\nthirtyish\nfifties\nfortyish\nsixteen\nvideotape\ndinette\ncalculations\nunmistakably\nwandered\ntupperware\nimprinted\nlack\nthru\ndiscovered\nmotivational\nunbuttoning\nhamper\nwaitresses\nwitnessed\ndiscovery\njolted\ntransit\nsquirting\nsaving\nsniffling\nextraordinarily\ngratitude\ntroubles\nthrift\ndialing\npandemonium\nhectic\njustice\ndebonair\npossesses\nuninterested\nfearing\ncynically\nnoncommittal\nattends\nbazaar\ncomplains\nnoticeably\nwonderingly\nfeelings\ncareening\nbrightness\npallid\nhankie\nnewer\npondering\nsloping\ndisinfectant\ndislodge\nshriek\nidentified\nplaques\naides\nbooths\nfran\nupstream\nunblinking\npackard\ncoroner\nspasm\nswearing\nworkman\nmariachi\ncrippled\nsolidly\nants\nduplex\ncustomary\nbree\nflabbergasted\nchoices\nsnickers\npotential\nsanford\nfluorescent\nthrottles\nbroadside\nbegun\ndomestic\ndrooling\nbetrayed\nhate\nwaltzes\nmoans\ndefiance\ndeparted\ndefeat\ngurgles\ncrackle\nsquishing\ncalves\nopenly\nhymn\ntrust\nparcels\nbiggest\ncreaks\ncrunching\ngaloshes\nflimsy\ncreak\ngarb\ndiplomas\nbunks\nvigil\nassassination\nsecretaries\ntumbled\napplications\nashamed\nnaturally\nbulk\npassive\nfraction\noperators\nmonuments\nstandards\ncortege\nreverence\nna\nfirmness\ncommitted\nlamely\naddition\nreduces\nhostility\nopinion\nrelatively\ntraders\nlaborers\nmerchant\nmanacles\ncommanding\nuncertainty\ncongress\nwives\nsmiled\nwading\nbuffalo\nimmensely\nintercuts\nflexibility\nharassed\nconfront\nclubhouse\nrude\nshelters\ncaution\nironic\naccept\nawareness\nsepoys\nrelentless\nmenace\npolitical\ncondition\nheroic\nincredulity\nintends\nstamping\nbrittle\nmorris\noptimism\npenetrate\nsignificance\nknapsacks\ninevitable\nribboned\ncbs\nsilenced\ntimid\nfatigue\ndiscreet\nindicated\nsubjects\nimplication\nmerely\nsony\nshifty\npummeled\nglad\nquiets\nsanitarium\nsquirm\nscare\nspeechless\ngroping\ndeaf\nexpresses\nanswered\nanybody\nfanny\nwends\nsaluting\nfreddie\nsubstantial\nundecided\npromise\nsophisticated\nfurs\nconfusing\nrelating\npatrolling\nannual\nagitatedly\nswitchboard\npowdering\ntinkering\ninsult\noutburst\nsuffering\ntoll\nunsolved\nundamaged\nissuing\namazingly\nefficient\ninsane\nuproar\npennies\nchord\ningratiating\nflatcar\nreek\nwhittling\nclank\nchinka\ntenor\nshambling\nbellowing\nduet\nformally\nboring\nimperial\nerected\nblackface\njudging\nwordlessly\nconsidered\ngoons\nwharvey\ngals\noctave\npassers\njackbooted\nsombre\nurgently\nwashers\nclambering\nbloated\nforemen\nsmallest\noatmeal\nrickshaw\nbaths\nclattering\nbach\nevacuating\nwretched\nconversations\nmalibu\nheroin\nhellish\naccent\nanymore\nwobbly\ncaptives\nblasted\nlovebirds\nfreaks\ntuxedos\ngobs\ngroan\nprimes\npolaroid\nsustained\nrocketing\nenergetic\nunblinkingly\ncheroot\nunhurried\nsquirt\ntelephoto\nhayseeds\nsaws\nsinged\narming\nrefined\npatience\nherald\nreproachful\nlives\nadmits\nassorted\nreferring\nexciting\nkelly\nromantically\nlithe\nsox\nprominently\naffair\nanew\nbelonging\nsmokey\ncomp\nkneecap\nfrequently\noffense\ndepressed\nunexpected\nunnerving\nthumper\nspurt\nrequiring\ntons\nnarsil\ngrasses\nhobbiton\nsettlement\nadmiration\nseeping\nspurs\northanc\nprancing\nrivendell\nevenstar\ncrows\nvista\namon\nrenewed\ndeagol\nlamb\nscrubby\ntopmost\ndais\ngully\nmisery\nsiege\nencampment\nfright\ngamling\nspectre\nrallies\nshagrat\nmumakil\nrouting\ndissolving\ncompanies\ngorgoroth\nscree\npitiful\nbaited\ntribe\nmarriage\ncatfish\ncuriosity\nwitnesses\ncough\nblistered\nsurplus\nstilt\ncarnies\nquieter\ndunking\nscuffle\ncemented\ndecisions\nusually\nechoing\nmarshy\novertake\nrotors\nstretchy\novertaking\nfoulard\npelvis\nparody\nmetro\ngoldfish\nreapplies\ndaimler\ngent\nsexily\nbedspread\ntypical\npal\nbanking\ngambler\ncarnation\ntravelers\nreminds\ntoying\nsizing\nlosers\npaid\nterra\ncotta\nuncoils\naccurately\nacutely\nneckline\ntopcoat\nsizzling\ndisorder\nterribly\nolympian\ncaused\ndangers\nultimate\nmentally\nconducted\ncelebrated\nsignet\ninspired\nlease\nguilt\nregret\nprimarily\nundressing\ncharity\ndisturbs\nrecently\nemerged\nunclips\nspattering\nbouquets\ndrowns\ndecide\nwhining\ndied\ngesticulating\nhowling\ndealers\nrotund\nruminating\nceilings\nconsultation\nscrunched\nmouthing\nelectrode\nprying\nantiseptic\ncoatcheck\nthrilled\nmarx\nunexpectedly\noily\nornately\nspeedboats\nnick\nmotorboats\nheadlong\nbiplane\nrepairing\nbrethren\ngrecian\npossession\ngrouping\nredneck\nnestling\ntabs\narquillian\nlivid\nmillions\nedgy\nconfounded\ncaribbean\nalleys\nguzzling\nslytherins\nbrewing\nwrenched\nsuggestively\ncloister\nastronomy\nspires\nbloodstains\nmoisten\nleaks\nbrowed\nscrabbles\njive\naffluent\nrupee\nloo\nminibus\nbegs\nvisiting\ntowns\nmimicking\nforefront\ntartan\nhelix\nstupid\nmasonry\nsuperhero\nfiremen\ninferno\ntidying\nqueensboro\nautumnal\njoe\npeeved\nyellowish\nderelict\nthreatens\nplanetarium\npronged\nreproachfully\nhoverboard\nhandler\ntransformed\nraced\nunraveling\nspiderman\nhulk\ncontractor\ncutlery\nholbrooks\nmowed\nhoovering\nunpleasantly\njig\nparades\nfrancisco\nscarfs\npickle\ncheckout\nobliterated\nantonov\nhawaii\npresidential\ntreated\nfelled\ntsunami\narks\ncabby\nweddings\njumbo\ndelivered\nfloss\nshirted\nbrandishes\nvases\nalerted\ndictates\nflown\naltitude\ncyclist\nwasteland\nsprouts\nlure\nslippery\nrecreational\nswans\npublications\ntrilby\n57\nprunes\nlilies\ndiy\ndentist\nadministers\nunwittingly\nfiat\nmustachioed\namd\npastel\nsi\nbreeches\nreverentially\ncarefree\nseeming\nmartin\ndislodging\ndispassionately\nunmoved\nsuburbs\nwalkways\nswung\nchurchyard\nbreech\nsandbag\ntriomphe\noperations\nelevation\nnewsboy\nleaned\nskipper\npathways\ndinosaur\nsecrets\nnightdress\nteeters\nspasms\nenamel\npostcards\nwheelman\ntoils\nfloorboard\nconsequence\nleftovers\npaving\nhalfheartedly\ndeusenberg\nzags\nluscious\nantlers\nabbey\nmanually\nnoon\nvideoing\ncanopies\npavements\nharnessed\ncurricle\naboriginal\ndrovers\ncrocodile\nbucking\nvainly\nshallows\nwatchers\nunfolding\nstabilize\nv8\nanglia\nsty\ntract\nheal\ncarriageway\naccord\nmarquis\ndraco\ncreator\ngodfather\nfireplaces\nhorseless\nowls\nremembrall\ndeclares\ntornado\npregnancy\nskewered\nmasse\nalike\nsolders\nanther\ncrucified\ncomrades\nreloading\nwaterside\nzimmer\ncuttings\nsedately\njellyfish\npatted\nseafront\nbeckon\nchoose\nnightmare\nvagrant\napproves\nducati\ndual\nchimes\npensieve\nstopper\ntutor\nhummers\nfatty\ndelayed\ntuna\nsimulating\nmajorette\nenjoyment\nbodybuilder\nvictor\nfiair\ndesignated\ntalknig\nacrylic\nfiner\ngradual\ngrades\ninvolve\nchose\nstrategies\nnewscasters\nhammered\ncolander\npreform\ngreased\ncaulk\nlowe\nninja\ndrizzled\nprefect\noverall\nmatte\nsnorkeler\nviolins\noats\ncocoa\nchallenger\nwaling\ngreats\nsummersault\nlisa\nvenues\nkettlebell\nsweatsuits\nmichael\nsailboard\nshifter\nate\ntack\nield\nsteeping\nlo\ngoalies\ncreatively\nparagraphs\naverage\nlengthwise\nyolks\nsolder\ncasters\nuzbekistan\nsmith\nbeerpong\nlayering\nshisha\nmoose\npaired\ninstances\njoust\nsurviving\nwaterway\nconsistently\nstrategically\nthowing\ninflates\n1600\nfetching\ntandumisgreat\nclipart\nreuben\nhints\nscuffs\npopsicles\npopular\ngymnasiums\noher\nseptum\nthinner\nomelettes\naccelerated\nseafood\ncontraptions\ninteresting\nspicy\nmanta\naudi\nstraddle\nspacers\ngroves\nimprove\nnyan\nmopped\ntelecast\ncools\nsituations\ngrease\nplaymate\npaul\ndyson\ngrandmaster\noverlays\nmotorcross\npresser\ntracy\nsailboats\nfreebies\nroofers\nselected\nnarrate\ntorched\ncritique\nanoher\njumprope\nhomer\nthump\npromo\nblew\nbodybuilders\nevaluating\nwoma\nchronometer\nepee\n2007\nbriggs\npaintballs\nspining\ninjures\ntinder\nparasail\nparasails\nalfredo\ngrinder\nskiier\nbasics\nalex\npressurized\nrid\nchapman\nstat\naccessory\nfoos\nbackgrounds\npointers\ncertificates\nmonkeysee\nexperts\ndropper\nsequences\ntechnical\ndecided\nyo\nrenovation\nrotations\nheadpiece\nkale\nspf\npurchasing\nrube\nbents\nropers\nspinner\nbuilder\nequips\nmanicurist\nsponges\ngerms\nconcession\nsoldering\nsri\nlanka\nfunkin\nweightlifters\ngrabing\nmelons\nwaterski\nsqueezer\nforelegs\ncelebratory\nconditions\nexuberantly\nveet\ncaped\npuma\nheatedly\n69\nbullring\nscares\nfigs\nstems\nstructured\ntrows\nzucchini\ncilantro\nthumbling\nstandingin\nshear\nreps\nhoagie\ndrizzles\nsin\nsectioned\nonesie\ninterments\nwheelchairs\nclothe\nho\nolimpic\nhr\nsaxaphone\nblowout\nbali\n2011\nombre\nentertain\nthatched\nlecturing\nnerdist\noverlayed\nnaming\nsnowed\nhobby\ntraversing\ndisney\ntaunted\ntic\nhandspring\nbuffalos\nguinness\nbullseye\ncub\neffective\nweldy\nfluff\nfuller\nextract\nspends\ncenters\npianos\nputted\nalternatively\n6'2\ntot\nlonesome\npasting\nthrowers\nkayaker\nselfies\nhiting\nsponsor\nasians\nsnowmobiles\ncoupled\nunfortunately\neric\nloosed\nunboxing\nduggar\ngator\ntortilla\nplugged\ntested\nprocedures\nhighlight\nsaute\njamaican\ndemonstrator\ndavis\npic\nintroductions\nbuoy\nspeedos\nnex\ncolumbia\npokemon\nwildebeest\ncapoeria\nsifter\ncultural\nkennel\nsean\nneil\nquincy\ndrafting\nboating\nmartina\nimprisoned\nbbq\nretakes\ncreasing\nflourish\npullman\ntallies\ncincinnati\nmontana\nfrosts\nrabble\nmusket\nsewerage\nake\nmics\nmak\nhairdo\ncorrespondent\nepees\nduration\ngenders\nputin\nmeats\ngeared\nniddle\nequipments\nsculptor\nbieber\nchaises\nclone\nanda\njolting\ninking\n@@NEWLINE@@\nscrapping\nexcessively\noffensive\nraketball\npuzzles\njai\nalai\ncuting\nsandbags\nfirearm\nfoward\ncrossfit\nbundt\nsward\noccasions\ntwitter\nclapped\nimmersion\nmeasurer\nmikan\nboobs\nswish\nskiboard\nmobster\ngirdle\nrembrandt\nrecessed\nguestroom\nspools\nlawmen\nmelodrama\ncrime\ngable\nadvent\npicker\nscabbers\nwhomping\ndorito\nninety\nfutball\nwih\nintroductory\nwatchnig\nseasons\nkarateka\ntrial\nmangos\ncatamarans\nporcini\nkniting\n"
  },
  {
    "path": "create_swag/turktemplate.html",
    "content": "<meta content=\"width=device-width,initial-scale=1\" name=\"viewport\"/>\n<section class=\"container\" id=\"Survey\">\n\n    <div class=\"row\" id=\"workContent\">\n        <div class=\"col-sm-12\">\n            <div class=\"panel panel-default panel-demo\">\n                <div class=\"panel-heading\">\n                    <h4 class=\"panel-title\">Instructions - please read even if you've done an earlier version of this HIT! &nbsp; &nbsp;<a data-toggle=\"collapse\" href=\"#instructions\"\n                                                                         style=\"color:#0080ff;font-weight:normal;text-decoration: underline;\">(expand/collapse)</a>\n                    </h4>\n                </div>\n                <div id=\"instructions\" class=\"panel-collapse collapse in\" style=\"margin:10px\">\n                    Imagine that you are watching a clip from a YouTube video. The clip has a caption, but it is missing\n                    the final phrase. Your task is to classify the endings as <span class=\"bg-warning\" style=\"padding: 0px\">likely</span>, <span class=\"bg-danger\" style=\"padding: 0px\">unlikely</span>, or <span class=\"bg-minusone\" style=\"padding: 0px\">gibberish</span>. Additionally, please select the <span class=\"bg-success\" style=\"padding: 0px\">best</span> and <span class=\"bg-plusone\" style=\"padding: 0px\">second best</span> endings for the caption.\n                    <b>More details:</b>\n                    <ul>\n                        <li>An ending is <span class=\"bg-warning\" style=\"padding: 0px\">likely</span> if it completes the caption in a reasonable and relevant way, given what you know about the world. Select the most <span class=\"bg-warning\" style=\"padding: 0px\">likely</span> ending as the <span class=\"bg-success\" style=\"padding: 0px\">best</span> ending.\n                        </li>\n                        <li>An ending is <span class=\"bg-danger\" style=\"padding: 0px\">unlikely</span> if it describes a\n                            situation that seems strange, ridiculous, or impossible.\n                        </li>\n                        <li>A phrase is <span class=\"bg-minusone\" style=\"padding: 0px\">gibberish</span> if it has such\n                            serious errors that it doesn't feel like a valid English sentence.\n                        </li>\n                        <li>Try to ignore minor grammar issues if possible. If the ending isn't written perfectly but\n                            it still describes a reasonable situation, please select <span class=\"bg-warning\" style=\"padding: 0px\">likely</span>. If the ending is mainly hard to understand because it describes a situation that sounds impossible or ridiculous, pick <span class=\"bg-danger\" style=\"padding: 0px\">unlikely</span>.\n                        </li>\n                    </ul>\n                    <i>Example 1:</i> Someone is shown sitting on a fence and talking to the camera while pointing out\n                    horses. Someone\n                    <div style=\"font-size:12px\">\n                        <div class=\"clearfix\">\n                            1) is shown riding a horse on a camel in the middle of the desert. <div class=\"btn active btn-disabled btn-danger btn-sm\">Unlikely</div> <i>(Riding a\n                            horse on a camel is <span class=\"bg-danger\" style=\"padding: 0px\">unlikely</span>!)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            2) speaks to the camera in the end while standing in front of a podium. <div class=\"btn active btn-disabled plusone btn-sm\">Second Best</div><div class=\"btn active btn-disabled btn-warning btn-sm\">Likely</div> <i>(OK, but the\n                            location abruptly changed to podium.)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            3) demonstrates how to ride a horse with a hose quickly scrubbing his head. <div class=\"btn active btn-disabled btn-danger btn-sm\">Unlikely</div> <i>(It's\n                            OK that the sentence lacks a comma. Riding a horse with a hose is <span class=\"bg-danger\"\n                                                                                                    style=\"padding: 0px\">unlikely</span>.)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            4) is shown riding a horse while someone holds onto the horse and helps. <div class=\"btn active btn-disabled btn-success btn-sm\">Best</div><div class=\"btn active btn-disabled btn-warning btn-sm\">Likely</div>\n                        </div>\n                        <div class=\"clearfix\">\n                            5) , the horse in a plaza field, with floating inflatable. <div class=\"btn active btn-disabled minusone btn-sm\">Gibberish</div> <i>(It's impossible to understand\n                            what this sentence is trying to convey, so pick <span class=\"bg-minusone\"\n                                                                                  style=\"padding: 0px\">gibberish</span>.)</i>\n                        </div>\n                    </div>\n                    <p style=\"padding-top:12px\"><i>Example 2:</i> Two small children as seen sitting at a table laughing\n                        with one another. One girl</p>\n                    <div style=\"font-size:12px\">\n                        <div class=\"clearfix\">\n                            1) slides onto her stomach in the end to get to it. <div class=\"btn active btn-disabled btn-danger btn-sm\">Unlikely</div> <i>(This sentence is understandable enough\n                            to describe a physical situation, but it's still <span class=\"bg-danger\"\n                                                                                   style=\"padding: 0px\">unlikely</span>.)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            2) is seen painting another's nails while she looks off into the distance. <div class=\"btn active btn-disabled btn-success btn-sm\">Best</div><div class=\"btn active btn-disabled btn-warning btn-sm\">Likely</div>\n                        </div>\n                        <div class=\"clearfix\">\n                            3) finishes their song and begins dancing with a young girl. <div class=\"btn active btn-disabled btn-danger btn-sm\">Unlikely</div> <i>(The two girls are\n                            laughing, not singing, so this is <span class=\"bg-danger\"\n                                                                    style=\"padding: 0px\">unlikely</span>.)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            4) speaks to them and shows off more snow in her lap. <div class=\"btn active btn-disabled btn-danger btn-sm\">Unlikely</div> <i>(It's <span class=\"bg-danger\" style=\"padding: 0px\">unlikely</span> that the girl is sitting at a table with snow in her lap.)</i>\n                        </div>\n                        <div class=\"clearfix\">\n                            5) pours out a liquid into a bucket of water. <div class=\"btn active btn-disabled plusone btn-sm\">Second Best</div><div class=\"btn active btn-disabled btn-warning btn-sm\">Likely</div> <i>(This is a <span\n                                class=\"bg-warning\" style=\"padding: 0px\">likely</span> situation, but it's not as\n                            relevant as the best answer.)</i>\n                        </div>\n                    </div>\n\n                </div>\n            </div>\n\n            <!--start here-->\n            <div class=\"panel panel-default\">\n                <div class=\"panel-body\"><p><i>Caption: &nbsp; &nbsp;</i><label>${0-startphrase}</label></p>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                            <div class=\"hypothesis col-sm-8\">1) ${0-completion-0}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-0\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-0\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-0\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                            <div class=\"hypothesis col-sm-8\">2) ${0-completion-1}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-1\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-1\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-1\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                           <div class=\"hypothesis col-sm-8\">3) ${0-completion-2}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-2\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-2\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-2\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                            <div class=\"hypothesis col-sm-8\">4) ${0-completion-3}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-3\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-3\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-3\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                            <div class=\"hypothesis col-sm-8\">5) ${0-completion-4}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-4\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-4\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-4\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"questionbox\">\n                        <div class=\"row\">\n                            <div class=\"hypothesis col-sm-8\">6) ${0-completion-5}</div>\n                            <div class=\"col-sm-4 buttonz\">\n                                <div class=\"btn-group inline pull-right\" data-toggle=\"buttons\"><p><label\n                                        class=\"btn btn-warning btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-5\"\n                                                                              value=\"pos\"> Likely</label><label\n                                        class=\"btn btn-danger btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-5\"\n                                                                             value=\"unl\"> Unlikely</label><label\n                                        class=\"btn minusone btn-sm\"><input type=\"radio\" required=\"\" name=\"q0-5\"\n                                                                           value=\"gib\"> Gibberish</label></p></div>\n                            </div>\n                        </div>\n                    </div>\n                </div>\n\n                <div class=\"panel-body\"><p>Select the ending that <b>best</b> completes the caption.</p>\n                    <div class=\"questionbox\">\n                        <div class=\"row buttonz2\">\n                            <div class=\"btn-group inline\" data-toggle=\"buttons\"><p>\n                                <label class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                              value=\"0\"> Ending 1</label><label\n                                        class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                             value=\"1\"> Ending 2</label><label\n                                        class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                           value=\"2\"> Ending 3</label><label\n                                        class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                           value=\"3\"> Ending 4</label><label\n                                        class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                           value=\"4\"> Ending 5</label><label\n                                        class=\"btn btn-success btn-sm\"><input type=\"radio\" required=\"\" name=\"best0\"\n                                                                           value=\"5\"> Ending 6</label>\n                            </p></div></div></div></div>\n                <div class=\"panel-body\"><p>Last, select <b>a different ending</b> ending as the <b>second best</b> completion.</p>\n                    <div class=\"questionbox\">\n                        <div class=\"row buttonz2\">\n                            <div class=\"btn-group inline\" data-toggle=\"buttons\"><p>\n                                <label class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                              value=\"0\"> Ending 1</label><label\n                                        class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                             value=\"1\"> Ending 2</label><label\n                                        class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                           value=\"2\"> Ending 3</label><label\n                                        class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                           value=\"3\"> Ending 4</label><label\n                                        class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                           value=\"4\"> Ending 5</label><label\n                                        class=\"btn plusone btn-sm\"><input type=\"radio\" required=\"\" name=\"best1\"\n                                                                           value=\"5\"> Ending 6</label>\n                            </p></div></div></div></div>\n\n            </div>\n\n\n            <!--end here-->\n            <div class=\"well\">\n                <h5 class=\"panel-title\">Optional feedback? &nbsp; &nbsp;<a data-toggle=\"collapse\" href=\"#feedback\"\n                                                                           style=\"color:#0080ff;font-weight:normal;text-decoration: underline;\">(expand/collapse)</a>\n                </h5>\n                <div id=\"feedback\" class=\"panel-collapse collapse\" style=\"margin:5px\">\n                    <p> Thanks for filling out the questions above! If something about the hit was\n                        unclear, please comment below. We would like to make this HIT easier for future workers, so we\n                        really appreciate feedback though it is optional. </p>\n                    <textarea class=\"form-control\" rows=\"2\" name=\"commentbox\"></textarea>\n\n                </div>\n            </div>\n        </div>\n    </div>\n</section>\n<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\"\n      integrity=\"sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u\" crossorigin=\"anonymous\">\n<style type=\"text/css\">\n\n    .btn {\n        text-align: left;\n    }\n\n    #collapseTrigger {\n        color: #fff;\n        display: block;\n        text-decoration: none;\n    }\n\n    #submitButton {\n        white-space: normal;\n    }\n\n    .hypothesis {\n        padding-right: 15px;\n        padding-left: 15px;\n    }\n\n    .questionbox {\n        border-bottom: 1px;\n        border-bottom-color: gray;\n        border-bottom-style: solid;\n        margin-left: -10px;\n        margin-right: -15px;\n    }\n\n    table {\n        font-size: 12px;\n    }\n\n    .table {\n        margin-bottom: 5px;\n    }\n\n    .table > thead > tr > th {\n        padding-bottom: 1px;\n        border-bottom-width: 0px;\n    }\n\n    .btn-group-sm > .btn, .btn-sm {\n        padding: 5px;\n    }\n\n    .buttonz {\n        padding-left: 0px;\n        padding-right: 15px;\n    }\n    .buttonz2 {\n        padding-left: 15px;\n        padding-right: 15px;\n    }\n\n    .panel-demo {\n        background-color: #f9f9f9;\n    }\n\n    .panel-demo > .panel-heading {\n        background-color: #e9e9e9;\n    }\n\n    .panel {\n        margin-bottom: 5px;\n    }\n\n    .panel-body {\n        padding-bottom: 0px;\n        padding-top: 5px;\n    }\n\n    .btn-group {\n        padding: 1px;\n    }\n\n    .clearfix {\n        border-bottom: 1px;\n        border-bottom-style: solid;\n        border-bottom-color: gray;\n    }\n\n    p {\n        margin: 0 0 0px;\n    }\n\n    .well {\n        padding: 5px;\n        margin-bottom: 15px;\n        font-size: 12px;\n    }\n\n    @media (max-width: 767px) {\n        .wrapper {\n            width: 100%;\n            min-width: 500px;\n        }\n    }\n\n    .container {\n        margin-right: auto;\n        margin-left: auto;\n        max-width: 1000px; /* or 950px */\n    }\n\n    .bg-minusone {\n        background-color: #956f594d;\n    }\n\n    .minusone {\n        white-space: normal;\n        color: #ffffff;\n        background-color: #956f59;\n        border-color: #956f59;\n    }\n\n    .minusone:hover,\n    .minusone:focus,\n    .minusone:active,\n    .minusone.active {\n        color: #ffffff;\n        background-color: #85634f;\n        border-color: #755746;\n    }\n\n    .minusone.disabled:hover,\n    .minusone.disabled:focus,\n    .minusone.disabled:active,\n    .minusone.disabled.active,\n    .minusone[disabled]:hover,\n    .minusone[disabled]:focus,\n    .minusone[disabled]:active,\n    .minusone[disabled].active,\n    fieldset[disabled] .minusone:hover,\n    fieldset[disabled] .minusone:focus,\n    fieldset[disabled] .minusone:active,\n    fieldset[disabled] .minusone.active {\n        background-color: #956f59;\n        border-color: #956f59;\n    }\n\n    .bg-plusone {\n        background-color: #e1f0de;\n    }\n    .plusone {\n      white-space: normal;\n      color: #ffffff;\n      background-color: #72b01d;\n      border-color: #72b01d;\n    }\n    .plusone:hover,\n    .plusone:focus,\n    .plusone:active,\n    .plusone.active {\n      color: #ffffff;\n      background-color: #649a19;\n      border-color: #568416;\n    }\n    .plusone.disabled:hover,\n    .plusone.disabled:focus,\n    .plusone.disabled:active,\n    .plusone.disabled.active,\n    .plusone[disabled]:hover,\n    .plusone[disabled]:focus,\n    .plusone[disabled]:active,\n    .plusone[disabled].active,\n    fieldset[disabled] .plusone:hover,\n    fieldset[disabled] .plusone:focus,\n    fieldset[disabled] .plusone:active,\n    fieldset[disabled] .plusone.active {\n      background-color: #72b01d;\n      border-color: #72b01d;\n    }\n\n\n</style>\n<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js\"></script>\n<script src=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js\"\n        integrity=\"sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa\" crossorigin=\"anonymous\">\n</script>\n"
  },
  {
    "path": "data/README.md",
    "content": "# SWAG dataset\nEach item in the CSV is an example. It's conveniently in two formats. \n\n\n## full\nIn `train_full.csv` or `val_full.csv`: we have both the texts of the endings/contexts, as well as the ordinal labels (likely, unlikely), some identification `video-id`,`fold-ind`, the full context `startphrase` (also, split into `sent1`,`sent2`), and the endings. There's the gold ending `gold-ending` and its source `gold-source` which is either generated or comes from the found completion. There's an ordinal label for the gold as well `gold-type`. We also have 3-4 distractors `distractor-N` and an ordinal label for each one `distractor-N-type.` The reason it's 3 or 4 is that sometimes there were more answers filtered out as gibberish by the annotators. When there is a 4th distractor, it's often of lower quality than the others (ranked the most plausible).\n\n\n## regular (shuffled)\n\nThis could be more interesting for modeling, and it's the way the test data is formatted. For each `startphrase` (also, split into `sent1`,`sent2`) we have 4 endings, and a label which says the correct one. You can use `test.csv` for submission on the leaderboard here: [https://leaderboard.dev.allenai.org/swag/submission/create](https://leaderboard.dev.allenai.org/swag/submission/create). The fields are exactly the same as `val.csv` and `train.csv` except for the label.\n\n\n\n## More info about gold-source\nIf the source starts with `gold`, it comes from the found data (from an actual video caption). This is the case for all questions in the val and test sets.\n* `gold0-orig`: It was selected as the *best* answer by a turker.\n* `gold1-orig`: It was selected as the *second best* answer by a turker.\n* `gold0-reannot`: It was originally not selected as within the top two, so it was reannotated (with different negatives) and ranked as the best.\n* `gold1-reannot`: It was originally not selected as within the top two, so it was reannotated (with different negatives) and ranked as second best.\n* `gold0-reannot`: It was originally not selected as within the top two, so it was reannotated (with different negatives) and ranked as the best.\n\nFor training, we also have questions marked as `gen-orig`: these are generated answers that are selected as the *best* answer, while the real answer was selected as the second best (`gold1-orig`)\n\ntl;dr you probably don't have to worry about this one. However, during training, some models work better if also shown the `gen-orig` examples, and some work better if not."
  },
  {
    "path": "data/test.csv",
    "content": ",video-id,fold-ind,startphrase,sent1,sent2,gold-source,ending0,ending1,ending2,ending3\n0,anetv_pIUpJihiju0,11871,\"A person shows the bottom of a large dust mop. Then, the person\",A person shows the bottom of a large dust mop.,\"Then, the person\",gold,places the scrub on the floor then cleans the soap evenly.,cleans a gym with the large dust mop.,stops and spray a car with some spray paint.,places the bucket and a bucket.\n1,anetv_avGe67wRvxA,18444,The camera move and we see a man next to the lady. the lady,The camera move and we see a man next to the lady.,the lady,gold,stands on a bench in the bar.,put a piece down on the table.,fixes her hair in the camera.,completes a picture and shows a standing room.\n2,anetv_avGe67wRvxA,18443,The lady stops and adjusts the camera. the camera move and we,The lady stops and adjusts the camera.,the camera move and we,gold,see a man going down the street.,see a lady kick a scene.,see a man next to the lady.,see a closeup of her hair before sitting down again.\n3,anetv_avGe67wRvxA,18441,A lady wipes lipstick off her face. The lady then,A lady wipes lipstick off her face.,The lady then,gold,shaves her finished legs.,jostles their face with her hands.,is scrubbing the left with a razor.,lines her lips with a pencil.\n4,anetv_avGe67wRvxA,18442,The lady then lines her lips with a pencil. The lady,The lady then lines her lips with a pencil.,The lady,gold,pierces her left ear.,gets up and lowers her arms.,stops and adjusts the camera.,shows off a paper and discusses.\n5,anetv_QN6YFgrx_Ig,10404,A man in a red track suit crouches. He,A man in a red track suit crouches.,He,gold,\"runs down the track, then hops back out.\",smiles and peers up into the sky.,stretches and reaches into his bags.,holds up his arms in a specific manner.\n6,anetv_QN6YFgrx_Ig,19231,\"He sits on the floor, showing several break dancing moves. He\",\"He sits on the floor, showing several break dancing moves.\",He,gold,pauses at the end of the song.,continues instructing in the positions and moves.,continues looking at the camera and smiling.,continues performing several stunts as he jumps.\n7,anetv_QN6YFgrx_Ig,19230,A man is wearing a red sweat suit inside a room. He,A man is wearing a red sweat suit inside a room.,He,gold,is wearing a black shirt and jacket and shirt.,\"sits on the floor, showing several break dancing moves.\",picks up a bottle of liquid and begins rubbing it.,is using makeup to apply on scattered dark - tiled walls.\n8,anetv_QN6YFgrx_Ig,10406,He then sits on the ground and lifts his legs. He then,He then sits on the ground and lifts his legs.,He then,gold,turns to the cliff with both hands.,turns left and moves indoors.,goes through several positions.,throws them to the ground.\n9,anetv_QN6YFgrx_Ig,10405,He holds up his arms in a specific manner. He then,He holds up his arms in a specific manner.,He then,gold,walks outside and starts talking.,backs out and adjusts various items to the case.,sits on the ground and lifts his legs.,talks and returns to the footage of him preparing.\n10,lsmdc1048_Gran_Torino-92229,10565,Three passing Hmong youths make no attempt to help her. He,Three passing Hmong youths make no attempt to help her.,He,gold,crosses to another door.,removes his other eye.,takes out a small paper scarf and steps away.,sits back down as someone helps the woman.\n11,lsmdc1048_Gran_Torino-92229,10564,\"He looks down at someone. Disgruntled, he\",He looks down at someone.,\"Disgruntled, he\",gold,looks across the street at a white woman unloading groceries from her car.,\"gets down onto the table, forcing himself to look at someone.\",pulls the cross locket from his suit pocket and reaches forward.,kicks off the board two more shots and lands in a heap beside it.\n12,anetv_iUVz4A5oblQ,8162,The person runs their hands along a carpet and pushes it along the floor. The man,The person runs their hands along a carpet and pushes it along the floor.,The man,gold,continues to climb the carpet as he vacuums the floor toward the surface.,bends over and puts the carpet off the wall.,nails down the carpet while still pushing it down and cutting the sides.,walks all around the table to talk to the device.\n13,anetv_iUVz4A5oblQ,8163,The man nails down the carpet while still pushing it down and cutting the sides. The man,The man nails down the carpet while still pushing it down and cutting the sides.,The man,gold,shows off the finished carpet in the end.,picks up concrete that and throws them all down in a pile.,continues piecing on the wall in front of the camera.,stops and measures the piercing.\n14,anetv_iUVz4A5oblQ,9679,A person is seen pointing to the floor and begins laying down carpet. The person,A person is seen pointing to the floor and begins laying down carpet.,The person,gold,continues scrubbing down the rag to clean.,begins cutting a shoe up and proceeds to throw an object off with the object in her hands.,puts plaster to the floor using a sander.,pushes carpet all down a stair and cuts along the side.\n15,anetv_iUVz4A5oblQ,9680,The person pushes carpet all down a stair and cuts along the side. They,The person pushes carpet all down a stair and cuts along the side.,They,gold,give the wallpaper a step continuously.,pause around the room with the person cutting the tile.,continue to lay down carpet and drill nails into the sides.,continue walking around again while looking off into the distance.\n16,anetv_iUVz4A5oblQ,8161,A camera pans around a wooden floor and shows a person walking downstairs. The person,A camera pans around a wooden floor and shows a person walking downstairs.,The person,gold,continues speaking while holding a hose up on the side.,then grabs a pan and a wet liquid to clean it clean.,pours the wood down into a bucket.,runs their hands along a carpet and pushes it along the floor.\n17,anetv_KHOTebb8UC8,333,Alongside her is the pro fitness expert who is demonstrating how the machine works. He,Alongside her is the pro fitness expert who is demonstrating how the machine works.,He,gold,\"consults computers of thumbnail maps, maps, formulas.\",shows the buttons that need to be pressed in order to start the elliptical.,\"lifts the barbell to the side, and sensual he is talking about it.\",are dressed with a specialized sport and failing achieve.\n18,anetv_KHOTebb8UC8,334,\"He shows the buttons that need to be pressed in order to start the elliptical. After he gets the machine started, the lady\",He shows the buttons that need to be pressed in order to start the elliptical.,\"After he gets the machine started, the lady\",gold,puts it in a ponytail and touches the hairs on his arm and continues moving.,moves his right hand and is gaining on the score.,starts ironing the shirt.,hops onto the machine and begins using the elliptical.\n19,anetv_KHOTebb8UC8,335,\"After he gets the machine started, the lady hops onto the machine and begins using the elliptical. She\",\"After he gets the machine started, the lady hops onto the machine and begins using the elliptical.\",She,gold,talks to the camera again.,instructs the camera throughout the machine.,\"slows, then pulls a remote.\",continues to exercise on the machine as the fitness trainer gives her tips on how the machine will benefit her.\n20,anetv_KHOTebb8UC8,332,A woman is talking about an elliptical exercise machine specially designed for women. Alongside her,A woman is talking about an elliptical exercise machine specially designed for women.,Alongside her,gold,are shown ina white specs.,\"to the machine, she continues moving the salon and fourth pushing the tractor and pushes the horse down.\",is the pro fitness expert who is demonstrating how the machine works.,\"is twisting the wheel forward happy, paddling slowly back and forth as she prepares to talk.\"\n21,anetv_64oq7grVNVs,17151,Some still shots of the man cutting hair are shown. The man,Some still shots of the man cutting hair are shown.,The man,gold,was demonstrating how to properly work.,is seen again cutting a mans hair in the outdoor barber chair.,picks up various nail polish and takes off the dryer.,is still running channels on a laptop in the background.\n22,anetv_64oq7grVNVs,17150,A young man clips the hair of several older men in an outdoor barber chair. The man cutting hair,A young man clips the hair of several older men in an outdoor barber chair.,The man cutting hair,gold,is turned in front of the counter.,is break dancing and holding tight.,is inside a barber shop talking.,brings back a emptying saw.\n23,anetv_QOlSCBRmfWY,12841,The girl dances around the room while the camera captures her movements. She,The girl dances around the room while the camera captures her movements.,She,gold,speaks to the sitting person.,continues to move around the beach while the camera captures her movements.,finishes her routine and continues to dance.,continues dancing around the room and ends by laying on the floor.\n24,anetv_QOlSCBRmfWY,12840,A young woman is seen standing in a room and leads into her dancing. The girl,A young woman is seen standing in a room and leads into her dancing.,The girl,gold,continues jumping up and moving her arms and legs on the floor.,moves her legs up and walks over several areas of a routine.,dances around the room while the camera captures her movements.,climbs down while jumping up.\n25,lsmdc0002_As_Good_As_It_Gets-46454,12,\"Finally someone hears muffled throat clearing on the other side of the door. As we hear him unlock the door, someone\",Finally someone hears muffled throat clearing on the other side of the door.,\"As we hear him unlock the door, someone\",gold,turns his slowly and sees the keys with the garbage salesman.,reaches in and grabs a gun as he beings doing traffic.,shivering with the push of mother and the neighbor.,looks at her breasts and gasps.\n26,lsmdc0002_As_Good_As_It_Gets-46454,11,As someone passes someone's door. Finally someone,As someone passes someone's door.,Finally someone,gold,notices another soldier sitting on the floor.,hears muffled throat clearing on the other side of the door.,watches as he runs upstairs to someone's apartment which are filled with spaces and ibs coal.,\"steps on the bench followed by someone, who is seated at a table.\"\n27,lsmdc0002_As_Good_As_It_Gets-46454,14,She grasps the fabric and holds it straight out just as someone opens the door. His hair,She grasps the fabric and holds it straight out just as someone opens the door.,His hair,gold,\"is static city, standing on end as he periodically gives it self - conscious pats.\",\"is now covered with packaging, her hair cut.\",is a mess as he places a handkerchief to the glass on the table.,\"rolls up, fixing dress and straps out.\"\n28,lsmdc0002_As_Good_As_It_Gets-46454,10,As she enters building and realizes it's not just that she is wet - - the thin summer dress is a winner in any wet T - shirt contest. As someone,As she enters building and realizes it's not just that she is wet - - the thin summer dress is a winner in any wet T - shirt contest.,As someone,gold,\"begins to do more hair crown, walks by in mid - path.\",\"gently spikes the killer's head like that, someone saunters forward someone blows the candles down the yellowed rally.\",passes someone's door.,slides the locket over its heart.\n29,lsmdc0002_As_Good_As_It_Gets-46454,9,As someone consults the slip of paper with the address on it. As she enters building and realizes it's not just that she is wet - - the thin summer dress,As someone consults the slip of paper with the address on it.,As she enters building and realizes it's not just that she is wet - - the thin summer dress,gold,is slapped by the alongside one of the policemen.,\"someone is busy getting her hair, turns her body with her own backpack.\",is a winner in any wet t - shirt contest.,rain brushed on her face.\n30,lsmdc0002_As_Good_As_It_Gets-46454,13,\"As we hear him unlock the door, someone looks at her breasts and gasps. She\",\"As we hear him unlock the door, someone looks at her breasts and gasps.\",She,gold,leaps into her car.,takes someone by the arm.,grasps the fabric and holds it straight out just as someone opens the door.,turns his eyes to the window.\n31,anetv_Wt7Ca_mHbL0,15235,\"A man in swimming trunk is standing at the edge of the diving board, his back is turned back from the audience. He\",\"A man in swimming trunk is standing at the edge of the diving board, his back is turned back from the audience.\",He,gold,raised his arms and bounced and jumped to the pool.,is playing high dive jump on the rock to catch a lot of water.,is kneeling down wearing the hood of his car.,dives and swims forward to dive into the pool.\n32,anetv_Wt7Ca_mHbL0,1913,A man is seen standing on a diving board looking off into the distance. He,A man is seen standing on a diving board looking off into the distance.,He,gold,puts out his arms to his side.,walks on a wave as he continues his routine.,takes the boy off the pool with his board and in the pool.,bends down and paints a shot.\n33,anetv_oqX-n2KHWAM,1967,A man is talking as he stands in a kitchen. The man,A man is talking as he stands in a kitchen.,The man,gold,mixes the sandwich ingredients in a box.,puts in exercise bag and adjusting the rubber and his back on the floor.,picks up a pan on his counter and picks a drink of the drink.,boils milk and adds fresh vanilla and pours the solution into a bowl with other ingredients.\n34,anetv_oqX-n2KHWAM,1968,He eats the ice cream over the cooked rubarb. We,He eats the ice cream over the cooked rubarb.,We,gold,'s hand is now eating of cupcake cream.,sips from his mouth.,something quickly covers her eyes and talks to the camera.,see a shot of london and fade out.\n35,anetv_GuwWFip-AF0,18979,People are playing pool at a pool table. A man in a black shirt,People are playing pool at a pool table.,A man in a black shirt,gold,is sitting in front of the mirror.,holds the drink in front of them.,is clapping for them.,is talking into a microphone.\n36,anetv_GuwWFip-AF0,5849,A man gives an interview. A guy,A man gives an interview.,A guy,gold,shakes hand with a player and gives him an animal trophy.,struts in for a dart and points at the player.,shows various rallies of lip and on foods.,finish measuring his time and explains them.\n37,anetv_GuwWFip-AF0,18978,A woman picks up a statue of a tiger off of a table. People,A woman picks up a statue of a tiger off of a table.,People,gold,are standing in the woods behind them.,are playing pool at a pool table.,sits face to face.,have a scarf around his neck.\n38,anetv_GuwWFip-AF0,5848,A guy gives an animal trophy to a player. Players,A guy gives an animal trophy to a player.,Players,gold,run a marathon from a tv.,continue dancing together as the announcers talk.,shake hands and the players.,play pool in front of an audience.\n39,anetv_GuwWFip-AF0,5847,A lady moves an animal trophy. A guy,A lady moves an animal trophy.,A guy,gold,gives an animal trophy to a player.,speaks to the camera and then clips shots of tennis players.,enters and starts the boy doing the spins.,speaks into the microphone.\n40,anetv_GuwWFip-AF0,18980,A man in a black shirt is talking into a microphone. A man,A man in a black shirt is talking into a microphone.,A man,gold,gets a drink and approaches behind him.,gets a medal put around his neck.,places a piercing on the side of him.,talks to the camera holding a trophy.\n41,anetv_GuwWFip-AF0,5850,A guy shakes hand with a player and gives him an animal trophy. A woman,A guy shakes hand with a player and gives him an animal trophy.,A woman,gold,boasts a sports target.,smiles and talks outside.,lifts up a bread punch.,juices a liquid brush on a stack of noodles.\n42,anetv_UcVbSLmILaY,17049,The individual puts socks on his feet. The individual,The individual puts socks on his feet.,The individual,gold,washes his face and legs.,puts the shoes on his feet.,cuts the mans shoes.,picks up him from under the weight.\n43,anetv_UcVbSLmILaY,17048,An individual's feet are shown next to a pair of shoes. The individual,An individual's feet are shown next to a pair of shoes.,The individual,gold,moves the knife back and fourth.,puts socks on his feet.,stops to tie one with the lead hammers again.,mixes the contents into a bucket in the sink.\n44,anetv_UcVbSLmILaY,18566,A person's feet are shown around a set of shoes and then begins putting socks on his feet. He then,A person's feet are shown around a set of shoes and then begins putting socks on his feet.,He then,gold,\"puts his shoes on afterwards and ties them up, ending with his feet together and ready to go.\",puts on a pair of shoes on a ledge and returns to moving his feet on the dirt.,continues drying the shoes with various shoes and putting them on top.,ties the tubes all around his legs and is shown moving up and down.\n45,anetv_QWFedtlPRYM,9609,A woman is holding a cloth in a kitchen. The woman,A woman is holding a cloth in a kitchen.,The woman,gold,barmaid serves a vinegar and puts vegetables.,is cleaning a dresser while the woman puts it down.,places a gloved hand over the kitchen glass and pulls the cloth forward before removing the diamond from under her.,begins running water in a bath tub and a sink.\n46,anetv_QWFedtlPRYM,9608,Title screens show up on the video. A woman,Title screens show up on the video.,A woman,gold,is sitting on the bench watching a couple.,is sitting at a table wearing a surgical mask.,walks down a slide.,is holding a cloth in a kitchen.\n47,anetv_QWFedtlPRYM,9610,The woman begins running water in a bath tub and a sink. The woman,The woman begins running water in a bath tub and a sink.,The woman,gold,bends down and wipes the sink with a blue tool.,places a towel on the other side of the toilet and removes the object.,is spraying a blue sink with a towel.,washes a cloth in the sink.\n48,anetv_QWFedtlPRYM,9612,The woman lays the wet cloth on a dry one and dries it out. The woman,The woman lays the wet cloth on a dry one and dries it out.,The woman,gold,rinses the white cloth and dried stain and hairspray on the spilled cloth.,finishes the cloth with the towel and cleans a towel thoroughly wipe and clean the clothes and pour the water off the faucet.,pulls the cloth down after she dries it with a cloth.,puts the pair of pants on an ironing board.\n49,anetv_QWFedtlPRYM,9611,The woman washes a cloth in the sink. The woman,The woman washes a cloth in the sink.,The woman,gold,paints the sink with a paper towel.,uncovers a product with a sponge.,\"removes the sink, wipe the sponge and vinegar the sink.\",lays the wet cloth on a dry one and dries it out.\n50,anetv_qiRrR2Nj2SQ,10404,People are working out on exercise bikes. A man,People are working out on exercise bikes.,A man,gold,does a gymnastics routine on the parallel bars.,is riding on a dirt bike while going down a ramps in sports downhill.,takes a drink out of a water bottle.,gets out and begins working out on the floor.\n51,anetv_qiRrR2Nj2SQ,10405,A man takes a drink out of a water bottle. A man,A man takes a drink out of a water bottle.,A man,gold,walk past a girl in the pool.,pushes shown on the ice.,grabs the man in a package with his free hand.,stands up on the bike.\n52,anetv_qiRrR2Nj2SQ,8818,Then we see people on stationary bikes and a man in the front talks for a bit. Several people,Then we see people on stationary bikes and a man in the front talks for a bit.,Several people,gold,in school bikes race to the finish line and perform a different handstand.,assemble bicycles and walk toward a dog as cars ride their bikes.,are riding on stationary bikes while music plays.,are standing by one side bit to see arm gear and washing them.\n53,anetv_qiRrR2Nj2SQ,8817,There is an intro with flashing images and then a logo shown and a man walking on an exercise machine. Then we,There is an intro with flashing images and then a logo shown and a man walking on an exercise machine.,Then we,gold,\"see people wearing raincoats, dancing and performing.\",\"see his face shredded purple, and then we see the animation of the elliptical.\",see a man wearing white gloves in holding his shoes and talking.,see people on stationary bikes and a man in the front talks for a bit.\n54,anetv_qiRrR2Nj2SQ,8819,Several people are riding on stationary bikes while music plays. The man in front talks some more and the logo,Several people are riding on stationary bikes while music plays.,The man in front talks some more and the logo,gold,plays as the video ends.,flashes to the camera.,is shown again at the end.,remains on the screen.\n55,anetv_CrWlXxqj4ac,12580,People are standing on stairs decorating the christmas tree with lights. the christmas tree is ready and,People are standing on stairs decorating the christmas tree with lights.,the christmas tree is ready and,gold,is standing in the middle of the room.,kneel on the floor.,placed in the middle of the grass.,put ornaments onto the tree.\n56,anetv_CrWlXxqj4ac,15155,\"Others come and start placing lights on the tree too, the video is sped up. They\",\"Others come and start placing lights on the tree too, the video is sped up.\",They,gold,enjoy a lot of ornaments and ornaments.,reach someone's cabin on his cell block and start reading.,significance of a plank and rooms are shown in the tree.,deck the tree with ornaments and other decorations.\n57,anetv_oRR1nIUPbjo,6294,A person is sitting in a raft going down a stream. There,A person is sitting in a raft going down a stream.,There,gold,are multiple people in a raft going in the river.,are slowly skiing down the snowy slope.,three legs are standing on the dirt beside the gate.,of the people on the boat are interior and two adult people are seen sitting above the raft.\n58,anetv_oRR1nIUPbjo,6295,There are multiple people in a raft going in the river. Someone,There are multiple people in a raft going in the river.,Someone,gold,goes down the stairs through the water and pushes sand bottles into a small boat.,are playing rowing in kayaks.,falls into the water and gets helped back in.,walks up a river along the outskirts of the cargo.\n59,anetv_-fjUWhSM6Hc,2334,All of the men shake hands. The gold medal winner,All of the men shake hands.,The gold medal winner,gold,talks to a news person.,is shown at the end where the priest's on wins.,is a winner.,shows all other old cheerleaders in victory.\n60,anetv_-fjUWhSM6Hc,2321,A man throws a javelin. Photographers,A man throws a javelin.,Photographers,gold,throw him towards the ground and towards the side of the track.,take pictures in the background.,raises a red flag.,\"throws a javelin, dropping it at the goal ropes.\"\n61,anetv_-fjUWhSM6Hc,2326,A third man throws a javelin so hard that he falls. The same men,A third man throws a javelin so hard that he falls.,The same men,gold,run to the the javelin's landing spot.,lands in the barrel instead of the race.,hovers once again and the crowd cheers.,\"are shown measuring the distance with horns, various tricks on a white field.\"\n62,anetv_-fjUWhSM6Hc,2330,The fourth man looks disappointed looking for his jacket. The first man to throw a javelin,The fourth man looks disappointed looking for his jacket.,The first man to throw a javelin,gold,hits a man in a green line.,throw when it lands far.,runs around celebrating and hugs another man.,throw and hit another on the field.\n63,anetv_-fjUWhSM6Hc,2333,He puts a silver medal on the second thrower. He,He puts a silver medal on the second thrower.,He,gold,puts a bronze medal on the third thrower.,runs toward a hut.,picks up another can and holds it along.,spins around a stage and does a few back flips.\n64,anetv_-fjUWhSM6Hc,2323,Another man throws a javelin. People,Another man throws a javelin.,People,gold,are holding a epees.,get off their boards.,are sitting on the ice next to the street watching them.,walk all around doing different things.\n65,anetv_-fjUWhSM6Hc,2331,The first man to throw a javelin runs around celebrating and hugs another man. A man,The first man to throw a javelin runs around celebrating and hugs another man.,A man,gold,hits a skateboard down a mat.,puts a gold medal around the neck of the first javelin thrower and shakes his hand.,shines a run in a backyard and shows how to race and throw an run across the field.,walks down the street wearing his blindfold.\n66,anetv_-fjUWhSM6Hc,2322,Photographers take pictures in the background. Several men,Photographers take pictures in the background.,Several men,gold,plays croquet on the sideline.,are shown playing a cricket pitch with arrows.,are shown throwing a discus during paint wrestling.,run to where the javelin lands.\n67,anetv_-fjUWhSM6Hc,2332,A man puts a gold medal around the neck of the first javelin thrower and shakes his hand. He,A man puts a gold medal around the neck of the first javelin thrower and shakes his hand.,He,gold,puts a silver medal on the second thrower.,walks off to the edge of the court.,steps in front of a small fence and puts a jack on the horse.,begins running the lawn.\n68,anetv_-fjUWhSM6Hc,2325,The second man to throw the javelin and a man in the stands celebrate. A third man,The second man to throw the javelin and a man in the stands celebrate.,A third man,gold,grabs a wave in a gi and spins the snowboard off.,stands by his bar on the side deck.,knocks and hits the hammer several times before standing and running down the track.,throws a javelin so hard that he falls.\n69,anetv_-fjUWhSM6Hc,2329,\"Again, the men run to where the javelin lands. The fourth man\",\"Again, the men run to where the javelin lands.\",The fourth man,gold,hits the ball and falls off the pavement.,looks disappointed looking for his jacket.,dismounts from the horse before leaping out onto the field.,shoots at his teammates.\n70,anetv_-fjUWhSM6Hc,2335,The gold medal winner talks to a news person. The silver medalist,The gold medal winner talks to a news person.,The silver medalist,gold,serve to play squash.,is 10 years old.,walks to a person in the black castle.,talks to a news person.\n71,anetv_-fjUWhSM6Hc,2328,\"A fourth man throws a javelin. Again, the men\",A fourth man throws a javelin.,\"Again, the men\",gold,talk to the camera with their hands up to dojo.,kick kicks and kick past each other.,run to where the javelin lands.,hit logs and the field.\n72,anetv_-fjUWhSM6Hc,2327,The same men run to the the javelin's landing spot. The third man,The same men run to the the javelin's landing spot.,The third man,gold,slams the man and the man drives away.,walks away looking disappointed.,take a bullet and jump.,shoots the ball and then runs to the pile of ice.\n73,anetv_QESBvmN1hcM,9446,A small group of people are seen swimming around a pool and lead into several clips of people playing the game as well as celebrating. Various people,A small group of people are seen swimming around a pool and lead into several clips of people playing the game as well as celebrating.,Various people,gold,play soccer in a room while people continue playing with the camera and others watch on the sides as the mates continue to play.,are then seen speaking to the camera followed by more clips of the game being shown and people celebrating.,play pool with their hands over the net while a crowd deals around and watches the game.,are then seen walking around and leads into several shots of people playing soccer with the goalie.\n74,anetv_moUL_qLnNDM,16660,The dog starts running away. A bomb,The dog starts running away.,A bomb,gold,places a pot in the dog's mouth.,is flying in a low green field.,flies onto the grass and blows up.,dangles from the smoking embers.\n75,anetv_moUL_qLnNDM,626,A bomb comes out of the sky and hits the dog. We,A bomb comes out of the sky and hits the dog.,We,gold,see smoke and fire in the air.,look at the bed.,\"look at someone as it works, someone snaps on someone as the policemen peers inside.\",fly out of its screen.\n76,anetv_moUL_qLnNDM,624,We see a black dog in a yard. The dog,We see a black dog in a yard.,The dog,gold,removes a stone from the pumpkin.,takes off running from the camera.,talks to the camera.,jumps for his dog.\n77,anetv_moUL_qLnNDM,625,The dog takes off running from the camera. A bomb,The dog takes off running from the camera.,A bomb,gold,blazes the top of the black tank.,comes out of the sky and hits the dog.,shoots up for the big dog.,stone cones are shown on a sheet bouncing off from the left.\n78,anetv_-5xWaBSwnjY,12357,A lot of acrs are parked in the street behind the alrge field. woman,A lot of acrs are parked in the street behind the alrge field.,woman,gold,is talking to the camera showing how to load the car.,is in a small white rooftop is walking down a street with protective equipment.,is throwing the frisbee to the dog.,\"speaks to the camera, talking to the camera and with her hair cut.\"\n79,lsmdc3009_BATTLE_LOS_ANGELES-355,5237,Someone ties Hector's sneaker. Someone,Someone ties Hector's sneaker.,Someone,gold,hurries to the front of the bus.,\"rubs his mouth, then lowers the black visor.\",marches over and picks up a rock from a tree.,sneaks three seats at the bed wearing a double - reach as someone holds a boxcar.\n80,anetv_PgS2F7NxNBg,15497,\"He then gets on his knees and adds spray paint to the machine and paints the wall. Finally, he\",He then gets on his knees and adds spray paint to the machine and paints the wall.,\"Finally, he\",gold,puts the rubber bar down once more and then he takes it out.,goes back to the wall with his paint brush and fills in the missing spaces.,sits back and starts rollerblading.,shows how he works it.\n81,anetv_-CS7U_XrkPI,16145,A group of men are inside a dark club. A man,A group of men are inside a dark club.,A man,gold,is walking in sreet and cleaning the building of a brick house getting a gun window.,is sitting on a shopping dirt bike.,\"bounces a tennis ball, passing by the players, and roping one of the players.\",begins throwing darts at something off screen.\n82,anetv_-CS7U_XrkPI,16146,A man begins throwing darts at something off screen. He,A man begins throwing darts at something off screen.,He,gold,grabs a discuss and shows it movements of the disc.,shows off lifting a camera at a park.,is the boy in a dark room who is wearing a hawaiian shirt.,\"repeats this many times before giving up, shrugging, and turning the camera toward the dart board.\"\n83,anetv_-CS7U_XrkPI,16147,\"He repeats this many times before giving up, shrugging, and turning the camera toward the dart board. We\",\"He repeats this many times before giving up, shrugging, and turning the camera toward the dart board.\",We,gold,is shown and turns into the sand as a piece of soccer appears and gives it to the man.,see that four of the darts have hit the exact same spot.,black balls of water moves across them.,see the screen turn to black.\n84,lsmdc1045_An_education-90084,8223,Someone's place is palatial. It,Someone's place is palatial.,It,gold,'s on a brick wall.,'s filled with art and luxury furniture.,is the big and most rickety balanced as top already.,continues to swing and fades.\n85,lsmdc3062_SORCERERS_APPRENTICE-30832,6489,Someone and someone stroll up. He,Someone and someone stroll up.,He,gold,pass them as someone walks along the aisle and sits over a desk.,walks her to a yoga class.,waits on the counter as he ambles and an nurse tend to someone and the local team someone uniform.,\"bends down, holding his merchandise.\"\n86,anetv_fmdG9uPnWHQ,9157,Woman shows their diplomas and awards and is with a white puddle combing her hair. woman,Woman shows their diplomas and awards and is with a white puddle combing her hair.,woman,gold,is applying a curler inside the clothes and looking into the mirror.,is standing in front of the screen then the foosball board.,is standing in front of the mirror showing her hair and ironing it.,comb the black dog's hair and plays with it.\n87,anetv_fmdG9uPnWHQ,9156,The woman is with the black dog and is styling the dog's hair. woman,The woman is with the black dog and is styling the dog's hair.,woman,gold,is carrying clothes with brown dogs in front of the head of a dog.,brushes another man's hair as the dog continues to blow the leaves.,shows their diplomas and awards and is with a white puddle combing her hair.,is holding a axe in the pony tail and cleaning the crown again with the dog and the dog.\n88,anetv_fmdG9uPnWHQ,9159,Woman holds the white dog paw and cut her nails. woman,Woman holds the white dog paw and cut her nails.,woman,gold,is with the black dog giving him a shower and styling his hair.,start to shoe in a sink.,starts cleaning with dog dogs running in the background.,puts on a rock set and sharp it.\n89,anetv_fmdG9uPnWHQ,9160,Woman is with the black dog giving him a shower and styling his hair. woman,Woman is with the black dog giving him a shower and styling his hair.,woman,gold,is talking while in the bottom a blonde woman is combing a white puddle.,uses out the viewer to wash her mouth in toothbrush and polish her hair.,is doing a cheerleading throw on the field.,is walking around holding a light just outside a man's park.\n90,anetv_fmdG9uPnWHQ,9155,Blonde woman is with a beatiful white dog in a table a veterinarian's office. the woman,Blonde woman is with a beatiful white dog in a table a veterinarian's office.,the woman,gold,is showing here how to make a rub.,irons a red shirt with yellow and red rag and start drying her facial hair.,uses a blow dryer to groom her hair.,is with the black dog and is styling the dog's hair.\n91,anetv_fmdG9uPnWHQ,9158,Woman comb the black dog's hair and plays with it. woman,Woman comb the black dog's hair and plays with it.,woman,gold,applies a brush to her hair with another prep woman's and begin piercing her ears.,brings the package back and lets it go and sprays it.,uses a sweeping work to show off the braid.,holds the white dog paw and cut her nails.\n92,anetv_RWjCwIOuzrc,16776,There is a man nodding in the first frame. The video movies to the man,There is a man nodding in the first frame.,The video movies to the man,gold,in the studio moving back and fourth playing beach equipment.,playing serves to the camera.,\"putting up the wall paper by first measuring it out, lining up the pattern and putting it up on the wall.\",the barber speaks about the piercing.\n93,anetv_RWjCwIOuzrc,16778,\"The camera shows wall paper in a finished room, going over different rooms with different wall papers. The man\",\"The camera shows wall paper in a finished room, going over different rooms with different wall papers.\",The man,gold,walks into the room and pans around te furniture and glues on furniture and roofs.,is then shown performing gymnastics on a bar and using bagpiper gloves.,\"waits on the bureau, wearing a pair of red pants and sunglasses off to the camera.\",\"is later seen measuring and marking the wall, rolling out more wall paper and putting it up on the wall.\"\n94,anetv_RWjCwIOuzrc,16779,\"The man is later seen measuring and marking the wall, rolling out more wall paper and putting it up on the wall. Then it\",\"The man is later seen measuring and marking the wall, rolling out more wall paper and putting it up on the wall.\",Then it,gold,shows more pictures and the showing he begins to throw it along the walls.,is magnum and that score up between.,is shown back to the man.,shows two tables that look like they have also been wall papered.\n95,lsmdc1019_Confessions_Of_A_Shopaholic-80727,2732,Someone brings someone a note. Someone,Someone brings someone a note.,Someone,gold,discards the disk and dials a number.,picks up the phone.,goes to the window to ask off.,smaller hand brushes the pipe.\n96,lsmdc1019_Confessions_Of_A_Shopaholic-80727,2731,Someone regards here with a twinkle in his eye. Someone,Someone regards here with a twinkle in his eye.,Someone,gold,looks back and nods.,takes someone's arm.,takes a seat on a bench.,brings someone a note.\n97,lsmdc1001_Flight-71649,6534,Someone unbuckles her seat belt. Alarmed passengers,Someone unbuckles her seat belt.,Alarmed passengers,gold,watch on the boat as columns sweep toward her flag.,\"stand lean on the windmill, then look across.\",escort a group of women to the ground.,grasp the seat in front of them as a flight attendant tries to assist someone.\n98,anetv_lG5d8bCHLM4,16370,A little girl is climbing the monkey bars at the playground. She,A little girl is climbing the monkey bars at the playground.,She,gold,lifts the monkey then lets it show.,is shown in the middle of the hopscotch.,flips over them forward and backward.,is holding girl in front of a pinata with her arms up.\n99,anetv_lG5d8bCHLM4,16371,She flips over them forward and backward. Then she,She flips over them forward and backward.,Then she,gold,goes back into the living room to flee.,\"uses a jacks to pull the lever, clearing the thick air.\",\"jumps down from the bars, smiling.\",climbs a ladder and gets off onto the horse.\n100,anetv_lG5d8bCHLM4,15301,The girl does a series of 360 revolutions on the bar. The girl,The girl does a series of 360 revolutions on the bar.,The girl,gold,flips off the bars.,dismounts from the bar.,scrutinizes the other frisbees.,attempts to take the blue soda from the back seat.\n101,anetv_PZ4miMXdjHE,10244,A man is seen standing in a large pit with a group of children and teaching them how to stand. The kids then get powder on their hands and the man,A man is seen standing in a large pit with a group of children and teaching them how to stand.,The kids then get powder on their hands and the man,gold,gives them both individually.,continues hitting them with their feet when serving.,chases them around and has fun.,goes into an empty pit.\n102,anetv_3Edxa-t4MxA,3552,Various shots of trophies are shown with girls interviewing the camera as well as performing gymnastics moves. An instructor,Various shots of trophies are shown with girls interviewing the camera as well as performing gymnastics moves.,An instructor,gold,shows a reaction sadness on a news film.,\"is shown talking that leads into a man speaking, looking at a horse nearby.\",then shows the girls how to perform a stunt properly and has another girl climb on top of their hands.,explains to the men by attempting to do karate while speaking as well as the uneven bars.\n103,anetv_-ySxFjhhK4Y,13485,We see a man preparing and throwing shotput. We,We see a man preparing and throwing shotput.,We,gold,see a title screen.,see the men skateboard up and down the field.,see the flint moving again.,see a man running to measure the distance.\n104,anetv_-ySxFjhhK4Y,13488,We see people in the crowd cheering. We,We see people in the crowd cheering.,We,gold,see a white being screen.,see the people in the bleachers again.,see a game of volleyball being hit.,man plays a saxophone in the house on a shuffleboard.\n105,anetv_-ySxFjhhK4Y,13489,We see the people in the bleachers again. We,We see the people in the bleachers again.,We,gold,zoom in as the player walks away.,see the ending screen.,see into the ending screen.,see the ending screen again.\n106,anetv_-ySxFjhhK4Y,13487,We see a man standing and measure. We,We see a man standing and measure.,We,gold,the men and the people practice ball in a field.,see people in the crowd cheering.,are two dome floors near a hallway from within.,into a circle that works with spectators.\n107,lsmdc0027_The_Big_Lebowski-62757,4234,He holds the paper sack in one hand and a small leatherette satchel in the other. He,He holds the paper sack in one hand and a small leatherette satchel in the other.,He,gold,awkwardly hugs the grocery bag against his chest as he turns a key in his door.,puts a small stack of wrapped presents and places them on someone's metal lap.,sees the hummer's trunk and heads inside it.,and someone pull back out into the garden.\n108,lsmdc0027_The_Big_Lebowski-62757,4241,His head is plunged back into the toilet. The hands,His head is plunged back into the toilet.,The hands,gold,stand on the wet table.,holds out the right hand.,pull around there's a small plastic landing behind him.,\"haul him out again, dripping and gasping.\"\n109,lsmdc0027_The_Big_Lebowski-62757,4235,He awkwardly hugs the grocery bag against his chest as he turns a key in his door. Someone,He awkwardly hugs the grocery bag against his chest as he turns a key in his door.,Someone,gold,\"dips the bowl into his hand, tensing it on the floor.\",opens the door for someone's bedroom.,takes down the card and opens the gate.,enters and flicks on a light.\n110,lsmdc0027_The_Big_Lebowski-62757,4245,Beyond in the living room a young Chinese man unzips his fly and walks over to a rug. He,Beyond in the living room a young Chinese man unzips his fly and walks over to a rug.,He,gold,starts peeing on the rug.,straightens the selection button - then hangs up a splinter.,rolls the last sign over.,whisks a cloth through both fingers then rubs it across his face.\n111,lsmdc0027_The_Big_Lebowski-62757,4242,\"The hands haul him out again, dripping and gasping. His head\",\"The hands haul him out again, dripping and gasping.\",His head,gold,rolls over to help his son.,is plunged back in.,is ordered to the tactical stand this instant.,tumbles to the ground and approaches someone.\n112,lsmdc0027_The_Big_Lebowski-62757,4240,Hands haul someone out of the toilet. His head,Hands haul someone out of the toilet.,His head,gold,is plunged back into the toilet.,someone back as someone shoots someone a dirty look.,jiggles to his brace.,\"rises to a seat, and grabs one of his cute attachments.\"\n113,lsmdc0027_The_Big_Lebowski-62757,4231,He sticks his nose in the spout and sniffs. She,He sticks his nose in the spout and sniffs.,She,gold,\"waits, arms folded.\",removes the flask as he races through the body.,loads the shaker from the container.,\"waves his arms, dropping him to the ground.\"\n114,lsmdc0027_The_Big_Lebowski-62757,4237,His head is grabbed from behind and tucked into an armpit. We,His head is grabbed from behind and tucked into an armpit.,We,gold,\"picks after her dog, but falls back into the kitchen.\",\"track with him as he is rushed through the living room, his arm holding the satchel flailing away from his body.\",\"approaches, smiling his hands, then stretches his chest.\",\"explode in the center of someone's body, then rush to their dance level.\"\n115,lsmdc0027_The_Big_Lebowski-62757,4230,Someone glances furtively about and then opens a quart of milk. He,Someone glances furtively about and then opens a quart of milk.,He,gold,pulls the door opening and opens it.,walks up to someone who touches his wing.,marks the bamboo subway.,sticks his nose in the spout and sniffs.\n116,lsmdc0027_The_Big_Lebowski-62757,4232,Someone has his someone's Shopper's Club card to one side and is making out a check to someone's for sixty - nine cents. A small black - and white tv next to her register,Someone has his someone's Shopper's Club card to one side and is making out a check to someone's for sixty - nine cents.,A small black - and white tv next to her register,gold,dumps the note several inches the front of it.,enters the room of the agent.,looks out from a telephone sergeant.,shows someone on the white house lawn with helicopter rotors spinning behind him.\n117,lsmdc0027_The_Big_Lebowski-62757,4243,His head is plunged back in. The inquisitor,His head is plunged back in.,The inquisitor,gold,struggles to pull her free of the sleeve just as the van flies into his companion's grasp.,\"hauls someone's head out one last time and flops him over so that he sits on the floor, back against the toilet.\",\"lies back, peaceful.\",makes galoshes.\n118,lsmdc0027_The_Big_Lebowski-62757,4238,The paper bag hugged to his chest explodes milk as it hits the toilet rim and the satchel pulverizes tile as it crashes to the floor. His head,The paper bag hugged to his chest explodes milk as it hits the toilet rim and the satchel pulverizes tile as it crashes to the floor.,His head,gold,carries on to a wooden railing.,\"rolls back towards someone, resting his head on the superior face.\",moved down on the mat.,is plunged into the toilet.\n119,lsmdc0027_The_Big_Lebowski-62757,4233,A small black - and white tv next to her register shows someone on the White House lawn with helicopter rotors spinning behind him. Someone,A small black - and white tv next to her register shows someone on the White House lawn with helicopter rotors spinning behind him.,Someone,gold,close and someone's four - arms reach another low angle and the volunteers take in the back seats.,is in the basket area.,drives the teenaged awake under a crowded lawnmower and shows the spot.,is going up the walkway of a small venice bungalow court.\n120,lsmdc0027_The_Big_Lebowski-62757,4239,His head is plunged into the toilet. Hands,His head is plunged into the toilet.,Hands,gold,pulls her towards him.,adds paper as people help.,haul someone out of the toilet.,empties a bloody blood on the dog's face.\n121,lsmdc0027_The_Big_Lebowski-62757,4236,Someone enters and flicks on a light. His head,Someone enters and flicks on a light.,His head,gold,is grabbed from behind and tucked into an armpit.,stretches slightly as he goes.,rests on the draining material.,hangs to the side.\n122,anetv_kuJO1VapxuQ,13099,A belly dancer is wearing full costume inside a darkened room. She,A belly dancer is wearing full costume inside a darkened room.,She,gold,raises her arms as she sways her hips to music.,is now stepping onto a wooden balcony talking.,is sitting down with her hands on her hips.,is preparing for a performance for her.\n123,anetv_kuJO1VapxuQ,10227,A female belly dancer is standing on a dimly lit stage. She,A female belly dancer is standing on a dimly lit stage.,She,gold,raises one arm at a time as she dances.,\"was a baton locked paper stage moving her hair back, but words weave towards everyone on the who is getting a great stance.\",is being interviewed in a schoolhouse.,\"last woman, moving on stage, she turns demonstrates moving her hands down and raises her arms in front of her.\"\n124,anetv_kuJO1VapxuQ,10228,She raises one arm at a time as she dances. She,She raises one arm at a time as she dances.,She,gold,sits down beside him.,twirls her hips in a specific way to the beat.,posted cameras show summersault.,rain dances on her face as she rubs her legs.\n125,anetv_2DtotlMv9Gg,13984,People are playing lacrosse on a field. They,People are playing lacrosse on a field.,They,gold,are together during a game of curling.,score a point into the net.,stick and hit a ball across the court.,are hitting a ball around a track.\n126,anetv_3OXh6OV2Zrc,17842,\"Finally, the lady stands up and two men of the Climb Crew begin positioning her on the edge of the bridge. The lady\",\"Finally, the lady stands up and two men of the Climb Crew begin positioning her on the edge of the bridge.\",The lady,gold,\"turns to the rear as they walk, then a crew of woman move the boat of a circle and following her rung off.\",\"then jumps off the bridge and does the free fall, moving back and forth while hanging up side down.\",jumps off and unrolls the equipment toward the ground.,tries to help the lady up her elbow.\n127,anetv_3OXh6OV2Zrc,17843,\"The lady then jumps off the bridge and does the free fall, moving back and forth while hanging up side down. After, she sits up and the guys above her on the bridge pull her up, she\",\"The lady then jumps off the bridge and does the free fall, moving back and forth while hanging up side down.\",\"After, she sits up and the guys above her on the bridge pull her up, she\",gold,is doing dips in the cement sky until a person sails a car in a room.,is also show of her smiling experience.,begins smiling and laughing at the camera.,tries to hoist up little girl.\n128,anetv_3OXh6OV2Zrc,17839,\"A still body of water is shown up under a bridge. As the camera pans up the bridge, a woman\",A still body of water is shown up under a bridge.,\"As the camera pans up the bridge, a woman\",gold,is sitting down in the middle and smiling at the woman.,reaches underwater and picks up a set of raw fish.,\"is kneeling down, playing keys.\",appears with a harness wrapped around her body sitting in a chair.\n129,anetv_3OXh6OV2Zrc,2130,\"A young lady with a pink shirt is then shown sitting in a chair with a harness on. Then, two men with cameras\",A young lady with a pink shirt is then shown sitting in a chair with a harness on.,\"Then, two men with cameras\",gold,walk behind her and start taking pictures of the water.,start to take turns and jump.,are shown playing snow bike.,start to correctly blow drying rags and began placing the pattern on the bottom of the wrapping and rolling it around their legs.\n130,anetv_3OXh6OV2Zrc,17840,\"As the camera pans up the bridge, a woman appears with a harness wrapped around her body sitting in a chair. The lady\",\"As the camera pans up the bridge, a woman appears with a harness wrapped around her body sitting in a chair.\",The lady,gold,replaces a shirt with the washing outside cloth and uses the vacuum first and to vacuum the vacuum and trimming it on that wall.,picks up a white ribbon and again appears to be a prince shop lady.,continues talking to the individuals in front of her as others walk around taking pictures of her.,begins crane up to give the light of a fire.\n131,anetv_3OXh6OV2Zrc,17841,\"The lady continues talking to the individuals in front of her as others walk around taking pictures of her. Finally, the lady stands up and two men of the Climb Crew\",The lady continues talking to the individuals in front of her as others walk around taking pictures of her.,\"Finally, the lady stands up and two men of the Climb Crew\",gold,\"dance in music, also cabins and jumping.\",the four of the returns.,begin positioning her on the edge of the bridge.,arms behind the girl and finish their performance.\n132,anetv_hhoewBggtuw,4419,We see a man sitting next and talking about the car. The man,We see a man sitting next and talking about the car.,The man,gold,leans over to the camera and shoves the mans chin.,uses the tool to scrape off old tiles.,puts a brick behind his tire and grabs his supplies to change his tire.,walks besides a man and saxophone while holding movements between continuously and dropping the slack line around.\n133,anetv_hhoewBggtuw,4423,The man puts his supplies away and drives away. The man,The man puts his supplies away and drives away.,The man,gold,stops near the camera and speaks before driving off.,points along the machine.,then starts shoveling tricks as people walk around.,tightens the stilts frame and continues pulling.\n134,anetv_hhoewBggtuw,4418,We see a title over an image of a car. We,We see a title over an image of a car.,We,gold,see the half zooming riding the horse.,see a man sitting next and talking about the car.,see a group of men jump up on a pile of yoga balls.,see a lady cleaning and seated in a bed.\n135,anetv_hhoewBggtuw,4420,The man puts a brick behind his tire and grabs his supplies to change his tire. The man,The man puts a brick behind his tire and grabs his supplies to change his tire.,The man,gold,loosens the bolts and jacks the car up and removes the tire.,\"sprays mud on the tire, then gets his orange tire off the ground.\",takes the tire on a bike and places it onto a rubber base and starts sharpening the wiper.,smooths off the leather tire with his hand while the person sets the tire in the vehicle.\n136,anetv_hhoewBggtuw,4424,The man stops near the camera and speaks before driving off. We,The man stops near the camera and speaks before driving off.,We,gold,see the lady put the camera on a small boat in a large brown ocean water.,see the bright back screens.,see the ending title screen.,see the ending screens.\n137,anetv_hhoewBggtuw,4422,The man puts on his spare and lowers the car to the ground. The man,The man puts on his spare and lowers the car to the ground.,The man,gold,lifts his legs so that he can get.,puts his supplies away and drives away.,speeds down the street with several parked parked cars.,steps out of the car.\n138,anetv_hhoewBggtuw,4421,The man loosens the bolts and jacks the car up and removes the tire. The man,The man loosens the bolts and jacks the car up and removes the tire.,The man,gold,presses the front twice over his damaged car as he crosses the street.,pulls and starts pushing the bike down the sidewalk.,captures the show of the car with a blow dryer on.,puts on his spare and lowers the car to the ground.\n139,anetv_9GwsrWUq7mY,17249,People are seen riding on a tube down a river. The people,People are seen riding on a tube down a river.,The people,gold,hold their hands up and smile while still riding down.,continue riding on a road on a hill.,move slowly around the raft while others watch on the side.,continue with the water and dive up in the water.\n140,anetv_9GwsrWUq7mY,19250,Two people are seen riding in a boat down rough river rapids. They,Two people are seen riding in a boat down rough river rapids.,They,gold,continue jumps and does tricks on their skis.,go down a waterfall and continue to push themselves down the river.,carry kayaks through more landscapes.,continue moving around the boat as well as swimming in the water.\n141,anetv_9GwsrWUq7mY,17250,The people hold their hands up and smile while still riding down. They,The people hold their hands up and smile while still riding down.,They,gold,ride back and fourth to one another and walking around.,all walk around while pointing to the camera.,ride past several people also moving down the river.,are shown in slow motion as they push back and forth in place.\n142,lsmdc0001_American_Beauty-45965,12678,She lays back on the bed. Her mind,She lays back on the bed.,Her mind,gold,squirms at the edges of his injured hand.,is lathered with jelly.,is pale with shock.,wanders for a beat.\n143,anetv_PiDMuIRtgZo,803,The hockey puck slips past the goalie and into the goal net. The goalie,The hockey puck slips past the goalie and into the goal net.,The goalie,gold,pass the ball back to the players.,gets up off the ground.,hits the ball on a volunteer bin and scores a goal.,hits the yellow ball to the goalie.\n144,anetv_PiDMuIRtgZo,802,A player in blue goes behind the goal close to the camera. The hockey puck,A player in blue goes behind the goal close to the camera.,The hockey puck,gold,slips past the goalie and into the goal net.,is paused serving the ball a fourth time.,similar to an opponent is moving and the player still walks away and changes the rods.,throw the ball back and forth.\n145,anetv_PiDMuIRtgZo,801,We see men playing hockey in an ice rink. A player in blue,We see men playing hockey in an ice rink.,A player in blue,gold,pushes a community along the field and shows off his opponent.,throws the ball followed by one opposing player.,goes behind the goal close to the camera.,is playing lacrosse and a ball comes out of his bag.\n146,lsmdc3071_THE_DESCENDANTS-5273,1844,His gait is listless and steady as he makes his way past a few recovery rooms. He,His gait is listless and steady as he makes his way past a few recovery rooms.,He,gold,\"trots out, then turns and hobbles to the corral.\",passes behind a staffer on the phone at a nurse's station.,\"moves careful into the water, passing a pedestrian.\",whips the curve to him and flips at the crowd.\n147,lsmdc3071_THE_DESCENDANTS-5273,1842,\"The doctor unhappily faces him. At the end of a hallway, a door's window\",The doctor unhappily faces him.,\"At the end of a hallway, a door's window\",gold,slams down through an empty wall.,\"frames a view of someone shambling closer, his arms hanging at his sides.\",opens over a fallen tree topples over a coffee table.,shows with a heavy cloth.\n148,lsmdc3071_THE_DESCENDANTS-5273,1847,Someone's expression grows woeful as he nears the far end of the ward. He,Someone's expression grows woeful as he nears the far end of the ward.,He,gold,halts at a door to a private room and takes it in.,sits in the doorway with a box draped over his shoulder and bites down the thread on his arm.,returns to a cubicle just at the rear of the main room.,takes a napkin from his tray and puts it on the table.\n149,lsmdc3071_THE_DESCENDANTS-5273,1845,He passes behind a staffer on the phone at a nurse's station. A distant doorway,He passes behind a staffer on the phone at a nurse's station.,A distant doorway,gold,shows an alleyway ahead.,shows a nurse making a bed.,shows us entering a field to avoid the narrowly.,shows the french murmur of the man.\n150,lsmdc3071_THE_DESCENDANTS-5273,1843,He pulls the door open and passes through with a thunderstruck expression on his face. His gait,He pulls the door open and passes through with a thunderstruck expression on his face.,His gait,gold,slows as he drives through the narrow streets and downs primitive vegetation.,\"is unsteady, rushing up as he emerges behind the trees, dripping cold.\",is listless and steady as he makes his way past a few recovery rooms.,slows as a guy's yellow wings rub up at the balding officer who peers out a window.\n151,lsmdc3071_THE_DESCENDANTS-5273,1846,A distant doorway shows a nurse making a bed. Someone's expression,A distant doorway shows a nurse making a bed.,Someone's expression,gold,\"becomes hard for a moment, and then walks off.\",grows woeful as he nears the far end of the ward.,grows resolute and bravely.,softens discreetly as he walks over stiffly.\n152,lsmdc1055_Marley_and_me-96367,15469,The pup's sitting excitedly on the passenger seat. Someone,The pup's sitting excitedly on the passenger seat.,Someone,gold,draws out his cell.,watches as he paws at the upholstery.,tries to grab the book then cowers as a man crashes and tumbles in the ground.,slams down his glass.\n153,anetv_6WlnhNQOWFA,1149,A man is seen standing before a game of hopscotch drawn out and begins jumping down the path while others follow. The camera,A man is seen standing before a game of hopscotch drawn out and begins jumping down the path while others follow.,The camera,gold,raises his hand and pointing to several still objects on the floor.,slams all back down on the man followed by the hopscotch while still continuing to play.,pans through a room and leads into one of the people and the one holding up flowers before they dancing.,continues to follow the man as he jumps down the path and captures several others doing the same as well.\n154,lsmdc0014_Ist_das_Leben_nicht_schoen-54420,2251,\"She gives someone a look, and goes on out into the kitchen. Someone\",\"She gives someone a look, and goes on out into the kitchen.\",Someone,gold,\"rushes over, panting.\",turns her gaze around.,smiles and turns to someone.,\"puts on a dress, gazing down the spiral staircase.\"\n155,lsmdc0014_Ist_das_Leben_nicht_schoen-54420,2250,Someone stops serving to hear his answer. She,Someone stops serving to hear his answer.,She,gold,escorts her horses in the huddle.,unplugs the paperwork.,turns her head at him and faces the car.,\"gives someone a look, and goes on out into the kitchen.\"\n156,lsmdc0014_Ist_das_Leben_nicht_schoen-54420,2249,Someone comes in again from the kitchen. Someone,Someone comes in again from the kitchen.,Someone,gold,stops serving to hear his answer.,looks at the offscreen someone.,\"arrives in a kitchen, feeding an employee.\",comes out of the fridge.\n157,lsmdc3037_IRON_MAN2-16312,11094,\"In his dim work area, someone attaches a whip to one of the arms for his armored suit. He\",\"In his dim work area, someone attaches a whip to one of the arms for his armored suit.\",He,gold,points off the ladder with a potion.,holds one piece in the back of his mouth.,\"activates the arc reactor, which sends an electrical charge along the frame of the arm and into the whip.\",\"points out the heart, which offers a similar rocket.\"\n158,lsmdc3037_IRON_MAN2-16312,11101,He replaces a smoking ingot of palladium and reinserts the rt unit. Someone,He replaces a smoking ingot of palladium and reinserts the rt unit.,Someone,gold,grimaces as he locks the rt unit into place inside his chest.,imagines someone 'travel - cube - type out of someone's finger.,uses his carbon finger to activate himself loads of lighter fluid.,\"builds a flame, then looks up at him with shock in his eyes, then snaps to dust.\"\n159,lsmdc3037_IRON_MAN2-16312,11095,\"He activates the arc reactor, which sends an electrical charge along the frame of the arm and into the whip. Someone\",\"He activates the arc reactor, which sends an electrical charge along the frame of the arm and into the whip.\",Someone,gold,shows a yellowed telegram.,takes a deep breath in his buttoned and puts himself onto his helmet.,\"puts on both of the suit arms, activates the arc reactor and spins around.\",takes some stairs and yanks the cable into the material.\n160,lsmdc3037_IRON_MAN2-16312,11103,Someone steps into the workroom as someone gulps down the remaining chlorophyll. She,Someone steps into the workroom as someone gulps down the remaining chlorophyll.,She,gold,follows him as he walks away.,glares at someone with a finger.,reaches into her shard of cake and places it closed.,\"works her nose, spraying it exactly with her finger.\"\n161,lsmdc3037_IRON_MAN2-16312,11096,\"Someone puts on both of the suit arms, activates the arc reactor and spins around. Electrified whips\",\"Someone puts on both of the suit arms, activates the arc reactor and spins around.\",Electrified whips,gold,escape from its door.,open the dim roof of a sedan.,slice through objects in the room.,it out of his grasp.\n162,lsmdc3037_IRON_MAN2-16312,11088,Satellite images of a facility appear on the large screen. Someone,Satellite images of a facility appear on the large screen.,Someone,gold,\"is glamorous young, gay rt company.\",eat their food beers interspersed with a man being interviewed.,presses a small hand - held computer's touch screen.,appear where women are fraction and teenagers alcohol variety.\n163,lsmdc3037_IRON_MAN2-16312,11097,Electrified whips slice through objects in the room. Video of the hearing,Electrified whips slice through objects in the room.,Video of the hearing,gold,\"is crashing with scenes of nature, desks, and rapist keys.\",appears on a screen.,is shown on knit gear.,\"lenses, three people stand next to them.\"\n164,lsmdc3037_IRON_MAN2-16312,11100,\"Someone reaches under his own t - shirt and removes a glowing, cylindrical, repulsory technology, arc reactor - or rt unit - from his chest. He\",\"Someone reaches under his own t - shirt and removes a glowing, cylindrical, repulsory technology, arc reactor - or rt unit - from his chest.\",He,gold,replaces a smoking ingot of palladium and reinserts the rt unit.,\"lays a hand in his pocket, which wrapped around his neck.\",rises from its holster and enters.,is standing on a leather stool.\n165,lsmdc3037_IRON_MAN2-16312,11089,\"Someone presses a small hand - held computer's touch screen. As someone lifts his computer, images on its touch screen\",Someone presses a small hand - held computer's touch screen.,\"As someone lifts his computer, images on its touch screen\",gold,passes between him.,shows monkeys playing unoccupied suits.,appear on the large screen.,shows the movie blows of the sun before returning to a steaming wash.\n166,lsmdc3037_IRON_MAN2-16312,11099,Someone drinks chlorophyll from a glass. Someone,Someone drinks chlorophyll from a glass.,Someone,gold,\"off, someone watches someone with a glass of beer.\",speeds into oncoming traffic.,presses his right thumb onto a small device.,\"holds them up, then looks at someone through his sullen eyes.\"\n167,lsmdc3037_IRON_MAN2-16312,11091,\"In the hearing room, someone tries to unplug the video screen as a video of him and the pilot wearing an armored suit plays. Someone\",\"In the hearing room, someone tries to unplug the video screen as a video of him and the pilot wearing an armored suit plays.\",Someone,gold,turns onto the rail.,unplugs the video screen and sits.,sleeps with his arms folded and dropping his hands painfully.,\"speeds down the simple directions, kicking up doors and glowing confetti.\"\n168,lsmdc3037_IRON_MAN2-16312,11090,\"The suit's machine guns discharge. In another video, a pilot wearing an armored suit\",The suit's machine guns discharge.,\"In another video, a pilot wearing an armored suit\",gold,takes the unique bents out of th bag.,leads the penguins into their camp position.,emerges from the vault motionless.,crashes into the ground.\n169,lsmdc3037_IRON_MAN2-16312,11092,Someone unplugs the video screen and sits. Someone,Someone unplugs the video screen and sits.,Someone,gold,watches from the burnham window.,rolls off the bed and studies the report page drawing.,stands and faces the rows of people behind him.,scratches her bald chin.\n170,anetv__BHoMDR2ZVg,12854,A man wearing glasses is seen speaking to the camera in a tattoo shop. The man,A man wearing glasses is seen speaking to the camera in a tattoo shop.,The man,gold,is then seen close to a desk with tools and contacts in his hands.,is laying on a table and waving to the camera.,primes the knife and begins cutting some nails with the pencil.,is then shown writing a page.\n171,anetv__BHoMDR2ZVg,12855,The man is laying on a table and waving to the camera. He shows his outline and a man,The man is laying on a table and waving to the camera.,He shows his outline and a man,gold,begins tattooing his leg.,begins shaving his face.,taking his hair off.,starts dancing with him on the ladder.\n172,anetv_stVRtmxHVaE,14438,A man is shown on the roof of a house. He,A man is shown on the roof of a house.,He,gold,stands on steps of the bridge and falls down into the corner.,\"is talking to the camera on the gym floor, he lays down in front of a wall.\",uses a stick to push ice through his windshield.,is removing shingles one at a time.\n173,anetv_stVRtmxHVaE,11977,A camera is shown walking all around a roof with a hand appearing every once in a while to touch the roof. the person,A camera is shown walking all around a roof with a hand appearing every once in a while to touch the roof.,the person,gold,continues shoveling the snow while waving to the camera and putting on a yellow shirt.,woman is seen riding past the car while still speaking to the camera while holding up a model.,continues to speak to the camera and looks down the snow onto the side of the piano followed by a display of objects.,then dips a stick into black ink and continues to touch around the roof while looking with the camera.\n174,anetv_stVRtmxHVaE,14439,He is removing shingles one at a time. He,He is removing shingles one at a time.,He,gold,blows the leaves off the tree.,gets off the mat on his feet and begins running back.,continues removing them so they can be replaced.,starts vacuuming and cutting the floor.\n175,anetv_ZFJkIiqOErk,19406,\"A boy gets the ball and begins throwing it at the other team, hard. They\",\"A boy gets the ball and begins throwing it at the other team, hard.\",They,gold,continue for the remainder of the clip.,\"come onto the screen for goal, and the ball team scores, and the winner joins the team.\",has all their time explaining.,\", he careens into the net causing the handles to pull the disk down.\"\n176,anetv_ZFJkIiqOErk,19405,A girl tries to catch a ball while the rest of the kids watch. A boy,A girl tries to catch a ball while the rest of the kids watch.,A boy,gold,jumps into the pool.,walks at the end of the slide as the girl plays more.,\"gets the ball and begins throwing it at the other team, hard.\",passes the girl over a swing.\n177,anetv_ZFJkIiqOErk,2273,People pass balls to each other and continue throwing them at one another. More people,People pass balls to each other and continue throwing them at one another.,More people,gold,roll to huddle around two glasses.,ride through the object and show the people cheering or throwing balls and getting hit.,walk in and out of the game while people cheer on the sides.,are hit by the ball as well as chasing the ball across the room.\n178,anetv_ZFJkIiqOErk,2272,Several people are seen standing around a court throwing balls at one another. People,Several people are seen standing around a court throwing balls at one another.,People,gold,watch as the person throws several balls on a ball.,are seen running in front of a pool as well as cheering with one another.,pass balls to each other and continue throwing them at one another.,are throwing balls directly onto the field.\n179,anetv_BWsjIONsXlM,9165,The man then uses a blow drier to melt the wax evenly onto the skis. He then,The man then uses a blow drier to melt the wax evenly onto the skis.,He then,gold,removes the ski from the work table and wipes the ski down with a clean cloth.,uses the tool to repair parts of it while using his feet to clean it out.,\"grabs a rubber cartridge and shakes it until he talks, grabs a hose and then wets it with a dropper.\",shows how to clean the wax using a ski to put the ends of the product.\n180,anetv_BWsjIONsXlM,9166,He then removes the ski from the work table and wipes the ski down with a clean cloth. The man then,He then removes the ski from the work table and wipes the ski down with a clean cloth.,The man then,gold,leans the ski against the work table.,begins to iron and tie down his shirt.,uses the wax to apply the soap to the clean side of the ski.,removes his mask boot and moves to wipe it from his hand.\n181,anetv_BWsjIONsXlM,9164,The man applies a liquid onto the ski using a small paint brush. The man then,The man applies a liquid onto the ski using a small paint brush.,The man then,gold,shows a close up picture of a product.,demonstrates the angle on the ski skies to show off the residue of the cross.,grabs a brush to smooth out the mane and a soccer pad.,uses a blow drier to melt the wax evenly onto the skis.\n182,anetv_BWsjIONsXlM,151,A man is standing while sand blasting a long piece of wood. the man then,A man is standing while sand blasting a long piece of wood.,the man then,gold,applies a coat of stain to the piece of wood.,continues the hammer for a few moves while demonstrating how to clean the sides.,\"moves the sticks and flips it in for his mouth, then begins to get it onto the floor.\",pulls a rod onto the wood.\n183,anetv_BWsjIONsXlM,152,The man then applies a coat of stain to the piece of wood. the man then,The man then applies a coat of stain to the piece of wood.,the man then,gold,returns the plank of wood and leaves the fire on chopping wood.,\"scrapes shingles off, and peels his blood off of the carpet.\",takes a dryer and blows the piece of wood.,rips the wax wax to the wax and wipes it to the ski.\n184,anetv_BWsjIONsXlM,9163,The man wipes the cross country ski free of dust using a rag. The man,The man wipes the cross country ski free of dust using a rag.,The man,gold,applies a liquid onto the ski using a small paint brush.,uses snow to swipe the front feet onto a large snow covered ski with the buffer while the ski sits up.,messes as the man cleans the carpet with a rag.,washes the car with a sponge and wipes the car with a paper towel.\n185,anetv_BWsjIONsXlM,9162,A man applies ski wax to a cross country ski while secured on a work table. The man,A man applies ski wax to a cross country ski while secured on a work table.,The man,gold,rides off his horse earlier.,helps the ski face to the bottom of the ski and cuts the ski.,washes wax and the squeegee slime ski as he watches again.,wipes the cross country ski free of dust using a rag.\n186,anetv_uFtP9Z_K87U,15472,More shots of people scuba diving are shown as well as fish swimming around and people in the ocean. In the end the camera,More shots of people scuba diving are shown as well as fish swimming around and people in the ocean.,In the end the camera,gold,is almost yapping at the bottom.,pans up over various objects as well as driving the water on water and swimming into the water.,shows several shots of the boat and people moving away on a smaller boat.,captures the diving skier around the water go faster.\n187,anetv_uFtP9Z_K87U,15471,Several shots of people are shown in water as well as landscapes around an island and people riding and moving around a boat. More shots of people scuba diving,Several shots of people are shown in water as well as landscapes around an island and people riding and moving around a boat.,More shots of people scuba diving,gold,are shown as well as fish swimming around and people in the ocean.,are shown as well as people on the beach falling down and adding bodies around the side.,are shown as well as swimming under the scenery and then driving back to water.,are shown as well as people looking off into the distance and another driving motion.\n188,anetv_fOgfpA9MTOQ,16869,A small audience watches a rodeo in a large indoor stadium. A calf,A small audience watches a rodeo in a large indoor stadium.,A calf,gold,is let loose and a cowboy on a horse quickly ropes him.,enters the water in celebration.,is launched into the court with a spectator pole over the pole.,passes over his head on the slack line.\n189,anetv_fOgfpA9MTOQ,16870,A calf is let loose and a cowboy on a horse quickly ropes him. The cowboy,A calf is let loose and a cowboy on a horse quickly ropes him.,The cowboy,gold,flips the calf and ties it up.,pulls the horse off the horse and ties the calf.,ties the calf and ties up his calf.,goes up and bends on the middle of the cow.\n190,anetv_fOgfpA9MTOQ,13734,A calf is released onto the floor and a cowboy catches him. The calf,A calf is released onto the floor and a cowboy catches him.,The calf,gold,\"runs, ties the calf and runs down the sidewalk.\",rolls off the horse and ties up the calf.,is tied up by rope to a horse.,gets off the horse and rides the cow.\n191,anetv_RL4V-Sx619M,5770,The little girl holding the camera speaks to the camera. The little girl,The little girl holding the camera speaks to the camera.,The little girl,gold,turns the camera on herself and talks again.,turns the air on.,stops raking together and leaves it on the beach.,is trying out to adjust out of frame.\n192,anetv_RL4V-Sx619M,5769,The camera turns on it's side then straight. The little girl holding the camera,The camera turns on it's side then straight.,The little girl holding the camera,gold,speaks to the camera.,watches the dog to get over the lens.,zooms in on her.,puts her finger on the handle.\n193,anetv_RL4V-Sx619M,641,A child is seen pushing a puck as well as a girl standing next to him. The two,A child is seen pushing a puck as well as a girl standing next to him.,The two,gold,points into the camera while pointing to camera.,play shuffleboard while others play with them.,move around and under the dirt in the end.,continue hitting more around and hitting the ball around one another.\n194,anetv_RL4V-Sx619M,5766,We see two young people playing shuffle board on the deck of a cruise ship. We,We see two young people playing shuffle board on the deck of a cruise ship.,We,gold,see a lady teaching a man in a raft.,thanks him as he turns and goes across the stair.,pour a sand castle in a creek.,see a speedboat riding on a the ocean.\n195,anetv_RL4V-Sx619M,642,The two play shuffleboard while others play with them. The girl,The two play shuffleboard while others play with them.,The girl,gold,\"finish taking couple of the girl, shaking hands.\",is seen speaking to the camera and giving a thumbs up.,and boy are playing hockey together.,at the end of the table and clips around the tree and gives a thumbs up.\n196,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9977,14313,\"Buckbeak lifts his head, opens his beak and grabs a bat. The bats\",\"Buckbeak lifts his head, opens his beak and grabs a bat.\",The bats,gold,fly out of his arms as he falls to the ground.,fall off its side into the water.,\"rake over his fists, then blot off three huge branches.\",fly out into the open and swoop low over people's heads.\n197,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9977,14311,Someone points his wand and the tree falls still. He,Someone points his wand and the tree falls still.,He,gold,goes down under the roots.,watches the chopper fireball down the street.,decapitates it on the curved stone.,\"shoots at the tiny alien, as he snatches it from him.\"\n198,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9977,14312,They sit down beside each other on the grass. Buckbeak,They sit down beside each other on the grass.,Buckbeak,gold,scratches someone in the chest and looks down at the chair beneath the rest of the night.,gets out and takes a seat.,\"lifts his head, opens his beak and grabs a bat.\",shrugs her lips and collapse into a serene pout.\n199,anetv_j7vUMNMB4Yo,6143,A silver ladder is against the house. The guy,A silver ladder is against the house.,The guy,gold,cleans a new stairs with the ax.,uses protective gloves and boots to place the tiles in the floor.,uses the orange tool to remove pieces of the roof.,\"turns, right time and does the skip.\"\n200,anetv_j7vUMNMB4Yo,6141,A guy is sitting on a roof and talking. The guy,A guy is sitting on a roof and talking.,The guy,gold,turns riding and uses the darts.,approaches with a large new tire.,holds up an orange tool.,walks at first from changing a tire.\n201,anetv_j7vUMNMB4Yo,6142,The guy holds up an orange tool. A silver ladder,The guy holds up an orange tool.,A silver ladder,gold,is against the house.,is put in the machine.,is tied up around the boat.,surrounded by him.\n202,anetv_j7vUMNMB4Yo,8854,A man is sitting on top of a roof. A man,A man is sitting on top of a roof.,A man,gold,is holding a yellow bar.,is working out on a machine indoors.,throws a frisbee into the water with a frisbee.,is sitting on a tractor.\n203,anetv_j7vUMNMB4Yo,8855,A man is holding a yellow bar. He,A man is holding a yellow bar.,He,gold,talks to the camera on the field.,throws the javelin and performs some kicks.,is fed an ice cream cone.,takes the bar and starts tearing up a roof.\n204,lsmdc3024_EASY_A-11509,19737,\"Now in the administrative office, someone sharpens pencils and blows off the shavings. Someone\",\"Now in the administrative office, someone sharpens pencils and blows off the shavings.\",Someone,gold,\"scowls at someone, who winks back at her.\",\"kicks them down the corridor between them, unwraps the grail urn, and takes a eleventh puff.\",determined and the thugs sprint after his boys.,watches in the window reading a news report.\n205,anetv_AJ_QqCET1iY,10853,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,does a handstand and dismounts from the beam.,\"jumps backward several times, kicking his legs backwards flipping over the bars.\",does a gymnastics routine on the parallel bars in the gym.,does a gymnastics routine on the balance beam.\n206,anetv_AJ_QqCET1iY,10854,He does a gymnastics routine on the balance beam. He,He does a gymnastics routine on the balance beam.,He,gold,\"jumps down to show himself, then he lands on the mat and gets off her feet.\",dismounts and lands on a blue mat.,jumps in the air.,\"does a jump, lands very far, parts he is watching.\"\n207,anetv_AJ_QqCET1iY,10855,He dismounts and lands on a blue mat. He,He dismounts and lands on a blue mat.,He,gold,jumps high and falls and does a series of cartwheels.,waves at the crowd and walks off.,throws his arms in the air.,\"dismounts, dismounts, and throws his arms up.\"\n208,anetv_ATBbNtNlBnY,8851,\"The man adds an oil to the item, and we see the packaging. We\",\"The man adds an oil to the item, and we see the packaging.\",We,gold,see the person cooling off the side of the box.,see a map on a rug.,see the ending credits for the video.,see a lady in a black shirt holding a spring house and her cleans at him.\n209,anetv_ATBbNtNlBnY,8850,We see him sharpening more things and beveling a tool. The man,We see him sharpening more things and beveling a tool.,The man,gold,cuts the watermelon again.,flips and spins as a guy digs in the measuring with an electrical rod.,adjust some screws and moves an arm.,adds logs and twigs together by the fire.\n210,anetv_Svr-YN9ujkA,17814,A woman puts her hands down on a table with some wash cloths to get a manicure. The manicurist,A woman puts her hands down on a table with some wash cloths to get a manicure.,The manicurist,gold,is turned the wipe liquid and wipe it off with the plastic towel.,puts some glass clear nail polish on her nails and then picks up a little bag of red glitter.,then pours a lemon 360 the cup.,of the camera is by itself.\n211,anetv_Svr-YN9ujkA,17816,The manicurist starts to put little fun decorations to make the nail look pretty. Then she,The manicurist starts to put little fun decorations to make the nail look pretty.,Then she,gold,goes forward with the glow stick hoop and puts her hand down.,shows the viewers what she can done.,finishes the song and goes to work with time to a seating ornament.,gets the gooey stuff and goes over the nails with it to prevent them from coming off.\n212,anetv_Svr-YN9ujkA,17815,The manicurist puts some glass clear nail polish on her nails and then picks up a little bag of red glitter. The manicurist,The manicurist puts some glass clear nail polish on her nails and then picks up a little bag of red glitter.,The manicurist,gold,comes with the cake bottle and then begins to pound the bags of the nails with a blue nail remover.,starts to put little fun decorations to make the nail look pretty.,adds the piece that paste to the top of the stick and wipes it with wooden polish and then picks it up.,returns to the cell.\n213,anetv_vVvImml1A8g,12862,Several young boys and girls are riding bumper cars at a theme park. A young happy blonde boy,Several young boys and girls are riding bumper cars at a theme park.,A young happy blonde boy,gold,is on the spot and carrying the children.,is holding the bowling ball against four pincers.,runs down a street and jumps up a ramp.,looks at the camera.\n214,anetv_vVvImml1A8g,12864,The cars are moving in circular motion around the track. The blonde boy,The cars are moving in circular motion around the track.,The blonde boy,gold,goes on his back to help.,looks up down at the ground.,holds someone up the steps to jumps off stage.,smiles in excitement as he enjoys the ride.\n215,anetv_vVvImml1A8g,12863,A young happy blonde boy looks at the camera. The cars,A young happy blonde boy looks at the camera.,The cars,gold,ride little and rough from the shore.,sit at the end of the way and solve the rubik's cube.,include a lot of balloons and a yellow top.,are moving in circular motion around the track.\n216,anetv_vVvImml1A8g,12865,\"The blonde boy smiles in excitement as he enjoys the ride. A couple of the bumper cars crash, but the drivers\",The blonde boy smiles in excitement as he enjoys the ride.,\"A couple of the bumper cars crash, but the drivers\",gold,drive car and other cars.,turn to safely them.,are happy with the occasion.,drives into the bank and screens.\n217,anetv_o18RrUlR-0Y,11153,\"A man with long beard is talking in the camera while a hand is brushing the side of his beard, then he continue talking while in his back the tv is running, then he closed up his beard, showed a man in green and the kid sitting next to him. The man in green\",\"A man with long beard is talking in the camera while a hand is brushing the side of his beard, then he continue talking while in his back the tv is running, then he closed up his beard, showed a man in green and the kid sitting next to him.\",The man in green,gold,shirt and white - shirt is playing the drums with a mallet.,uses a hedge brush to start snow off the windshield.,hits the window talks to the camera and two people wearing yellow skis momentarily start talking.,shaves the man's beard on the side then brushed it then continue to shave the long beard leaving the stubble.\n218,anetv_TrtuuE1K8pk,1378,\"A man put paint on the wall with a hose, while a person uses a flat mop to spread the paint. Then, the man\",\"A man put paint on the wall with a hose, while a person uses a flat mop to spread the paint.\",\"Then, the man\",gold,paints a box of leaves with the paint brush.,puts paint around the window.,cleans the new pair of shoes.,put the wallpaper on the wall.\n219,anetv_hpoReoD1vD0,862,\"A child places turkey slices on two pieces of white bread, then adds a slice of cheese. Finally, she\",\"A child places turkey slices on two pieces of white bread, then adds a slice of cheese.\",\"Finally, she\",gold,adds a layer of miracle whip.,spills her ice cream in the kitchen.,cuts the lemon and extends the olives onto the small slice of bread.,\"puts the potato on a plate, holds it.\"\n220,anetv_hpoReoD1vD0,861,A white plate is sitting on a white table in a kitchen. A child,A white plate is sitting on a white table in a kitchen.,A child,gold,is cooking at the kitchen table.,puts a table and a sandwich.,\"places turkey slices on two pieces of white bread, then adds a slice of cheese.\",with a broom washing dishes at a sink falls.\n221,anetv_hpoReoD1vD0,863,\"Finally, she adds a layer of miracle whip. She\",\"Finally, she adds a layer of miracle whip.\",She,gold,removes the baking nozzle.,\"leans forward, taking a large bite of the sandwich.\",\"measures more raw bread, then puts oil on top of the wheel and cooks it in a salad roll.\",uses it to link the clean product.\n222,lsmdc3012_BRUNO-4257,17297,The middle - aged psychic closes his eyes. Someone,The middle - aged psychic closes his eyes.,Someone,gold,\"collapses with a doll, alone.\",\"looks up at the window, his fingers broken and slipping.\",\"closes his eyes, and strokes a leather collar.\",rumples her lips and turns.\n223,anetv_gIwTydKpIe4,9178,\"Then, the man talks and sets up the temperature of the iron. After, the man\",\"Then, the man talks and sets up the temperature of the iron.\",\"After, the man\",gold,does a line with a red shirt.,spray the longing hoodie using paint hose to apply the makeup eye.,shows how to put the garment and the cloth and iron and hung while talking.,put wet clothes in the wax.\n224,anetv_gIwTydKpIe4,9177,\"A man puts a cloth on a shirt on an iron board to iron, then the man puts the shirt on a hanger. Then, the man\",\"A man puts a cloth on a shirt on an iron board to iron, then the man puts the shirt on a hanger.\",\"Then, the man\",gold,talks and sets up the temperature of the iron.,\"lowers the rope jack, then pull off of the fence.\",shows how to weld the box and cover the mud with both hands.,puts the weight in his shoulders.\n225,anetv_gIwTydKpIe4,4090,A man is showing how to iron a shirt on an ironing board. He,A man is showing how to iron a shirt on an ironing board.,He,gold,is then shown talking about how to iron clothes to the camera.,is being fitted with his gloves while standing in a rowboat setting.,looks up and shows how to iron the shirt to tie the iron to.,puts the shoe and scoop it up before making the face for the ironing.\n226,lsmdc1001_Flight-71897,10437,He picks up the bottle and throws it hard across the room. It,He picks up the bottle and throws it hard across the room.,It,gold,lies safely on his bed.,strikes him with a louder thud.,falls into the floor.,\"explodes against the hanging photo of his son, which stares at it motionless.\"\n227,lsmdc1001_Flight-71897,10429,She leans in and their foreheads touch. He kisses her and she,She leans in and their foreheads touch.,He kisses her and she,gold,allows him to pull her into an embrace.,shoves it into the lock.,returns her gaze to the pool cue.,slowly turns her face to his neck.\n228,lsmdc1001_Flight-71897,10435,\"Someone stops as he sees the envelope, then, trots over to the table and picks it up, opening it. He\",\"Someone stops as he sees the envelope, then, trots over to the table and picks it up, opening it.\",He,gold,reads the letter using the light from a nearby window.,looks at a piece of paper wheeled to a street and reads the label as well.,\"carries them down, conviction ease up its volume, and at it for stunts.\",closes the window and goes inside.\n229,lsmdc1001_Flight-71897,10441,The crashed South Jet Aircraft stands almost completely assembled with parts strewn around beside it. Someone,The crashed South Jet Aircraft stands almost completely assembled with parts strewn around beside it.,Someone,gold,follows someone out of the plane.,raises his arm and leaves him with several people.,veers down the slope towards another trailer.,drop of passengers on the water deck are grouped before someone.\n230,lsmdc1001_Flight-71897,10438,\"It explodes against the hanging photo of his son, which stares at it motionless. Rain\",\"It explodes against the hanging photo of his son, which stares at it motionless.\",Rain,gold,\", someone is pacing across the fence, still stunned.\",\"float around the room, which is swung at the teen.\",falls steadily as someone sits in the car and pours alcohol into a bottle of juice and takes a drink.,stands with someone in hand to the window.\n231,lsmdc1001_Flight-71897,10434,\"She carries a suitcase and a basket, and walks away from the house. Someone's van is parked behind some trees and someone\",\"She carries a suitcase and a basket, and walks away from the house.\",Someone's van is parked behind some trees and someone,gold,sits in her car and reads the small piece of pizza on the rack.,puts her things in.,'s at the opera point.,watching they work out the door.\n232,lsmdc1001_Flight-71897,10432,Someone stands at the bedroom entrance and looks at him. She,Someone stands at the bedroom entrance and looks at him.,She,gold,\"holds back his hand as if he remembers, happier if he'd been here.\",leaves an envelope with someone's name on it between his lighter and a bottle of whiskey.,\"sighs skeptically, then looks on down at the hangar and turns to the smoking cab.\",takes her extended arm.\n233,lsmdc1001_Flight-71897,10430,\"He kisses her and she allows him to pull her into an embrace. In the morning, someone\",He kisses her and she allows him to pull her into an embrace.,\"In the morning, someone\",gold,\"sits beside them, making popcorn as she chats to them.\",sits on a chair listening to the man.,climbs her bed with her purse slung over her shoulder.,lies sleeping on the bed fully dressed.\n234,lsmdc1001_Flight-71897,10431,\"In the morning, someone lies sleeping on the bed fully dressed. Someone\",\"In the morning, someone lies sleeping on the bed fully dressed.\",Someone,gold,escorts someone to the door through a unmoving front door.,stands at the bedroom entrance and looks at him.,\"stands by a red light, staring at an dresser in the darkness.\",puts her arms around him and rests her chin on his shoulder.\n235,lsmdc1001_Flight-71897,10433,She leaves an envelope with someone's name on it between his lighter and a bottle of whiskey. She,She leaves an envelope with someone's name on it between his lighter and a bottle of whiskey.,She,gold,leans her fingernail on his desk for a moment.,gets off a glass and moves in with someone opposite.,takes a sip of wine and gets it.,\"carries a suitcase and a basket, and walks away from the house.\"\n236,lsmdc1001_Flight-71897,10440,He exits the car and enters a large hangar. The crashed South Jet Aircraft,He exits the car and enters a large hangar.,The crashed South Jet Aircraft,gold,rises in the night where someone lounges in the driver's seat.,stands almost completely assembled with parts strewn around beside it.,travels down a coast paved road.,\"exits to the right where rests of his slices of budweiser, a 15 - foot drop of coffee sheet reaches out of his palm\"\n237,lsmdc1001_Flight-71897,10439,Rain falls steadily as someone sits in the car and pours alcohol into a bottle of juice and takes a drink. He,Rain falls steadily as someone sits in the car and pours alcohol into a bottle of juice and takes a drink.,He,gold,exits the car and enters a large hangar.,\"awakes and shuffles back to the kitchen where someone sits at the window, staring off.\",\"keeps wiping at her blouse, as she looks lovingly at her lifeless face.\",\"strides up the stairs, bending down at top of benches.\"\n238,anetv_6RxF2UHMYQM,9738,A person picks up a paint brush and can of varnish on an outside lawn. The person,A person picks up a paint brush and can of varnish on an outside lawn.,The person,gold,paints a coat various boards leaning up against an exterior wall of home.,sits mopping the floor and stare as he talks.,continues gluing soda ski all around the car.,puts a light down the window with the and stops the camera.\n239,lsmdc0038_Psycho-67341,16015,\"She stops, the anxiety and fear building up in her, her eyes beginning to fill with worried tears. Someone\",\"She stops, the anxiety and fear building up in her, her eyes beginning to fill with worried tears.\",Someone,gold,leans in and faces her fiancee as they gaze into each other's eyes.,\"studies her for a moment, then turns and calls.\",arrives in her new york cabin.,'s shoulders heave.\n240,lsmdc0038_Psycho-67341,16016,\"Someone studies her for a moment, then turns and calls. Someone\",\"Someone studies her for a moment, then turns and calls.\",Someone,gold,\"gets the message, goes out through the back way.\",walks out of the room and reaches in his pocket.,\"does no step to go towards it, but ignoring her.\",wanders toward a nearby tree.\n241,anetv_SLdf2ZUdgEQ,4752,A man in a black shirt is holding a rope. He,A man in a black shirt is holding a rope.,He,gold,begins doing flips on the rope.,starts throwing the ball around.,puts the rope under his foot and sticks his arm through the top of it.,throws a ball in the air.\n242,anetv_SLdf2ZUdgEQ,17874,He holds up a string and discusses how to use it. He then,He holds up a string and discusses how to use it.,He then,gold,hits the ball together and pauses to play.,demonstrates the positions and techniques of bowling.,spins several pictures on the fire.,gets on the others that he just saw.\n243,anetv_nsDyItaRUXI,7032,She is using the needles to make the scarf. She,She is using the needles to make the scarf.,She,gold,walks in with her hands up in concentration.,grabs a pack of cigarettes and a bunch of flowers inside.,pulls the yarn through with the loop several times.,cleans up and cartwheels underneath it.\n244,anetv_nsDyItaRUXI,7031,A woman is knitting what appears to be a scarf while sitting in front of a computer keyboard. She,A woman is knitting what appears to be a scarf while sitting in front of a computer keyboard.,She,gold,is using the needles to make the scarf.,is holding the shirt in the barber shop and is shown with a pair of pliers.,is sitting outside with her hair cut back and then sitting in her chair knitting.,backflips into the image of the girl.\n245,anetv_5wQLpjdsRUg,10574,Couples of fencers compete while kids talk on front a wall. Boys and girls,Couples of fencers compete while kids talk on front a wall.,Boys and girls,gold,look at each other with the wooden fence.,jump up in skate park on the field.,\"talk sit on front a walk, while couples of fencers perform in a competition.\",walk on a stage as a camera is walking across the sand.\n246,anetv_5wQLpjdsRUg,8008,Various vhs recorded fencing matches appear. The video,Various vhs recorded fencing matches appear.,The video,gold,starts of the trows.,continues with old fencing games recorded in grainy vhs.,channel tries to show.,\"demonstrates a circular herald by barrier tai segments and grunts, jamaican golden.\"\n247,anetv_5wQLpjdsRUg,8009,The video continues with old fencing games recorded in grainy vhs. A young boy,The video continues with old fencing games recorded in grainy vhs.,A young boy,gold,talks about the matches to the camera.,is pulling on his helmet and arrow into the water.,is shown at the end of a trampoline.,pets a long gren carpet in an empty gym.\n248,anetv_5wQLpjdsRUg,8007,Vhs video clips of two men appearing to be fencing. Various vhs,Vhs video clips of two men appearing to be fencing.,Various vhs,gold,recorded fencing matches appear.,fencing examine each other.,pictures are shown being played.,close scenes of the action.\n249,anetv_5wQLpjdsRUg,10573,\"Two men performs fence in a gym while a crowd watch, then a boy and a young man talks on front a white wall. Couples of fencers\",\"Two men performs fence in a gym while a crowd watch, then a boy and a young man talks on front a white wall.\",Couples of fencers,gold,are shown around the stage.,compete while kids talk on front a wall.,are playing foosball in the gym.,\"walk together around an area, one for them or taking a the mowers show.\"\n250,anetv_KgGQ6dHKl8U,7052,He catches the cow with a rope. He,He catches the cow with a rope.,He,gold,lands in the sand at the end.,grabs something from the waist.,mounts off the horse and hits the cow several times.,continues to go back and fourth on the rope.\n251,anetv_KgGQ6dHKl8U,7051,A man mounted on a horse chases after a cow. He,A man mounted on a horse chases after a cow.,He,gold,is seen about 20 feet on the horse.,lassos a calf being taken by a cow.,catches the cow with a rope.,wrestles the fends of the horse.\n252,lsmdc0031_The_Lost_Weekend-65869,18572,Someone goes to the door and opens it. Someone,Someone goes to the door and opens it.,Someone,gold,is slumped on the floor by her feet.,puts a pack into his pocket and places it around someone's shoulder.,stands outside holding something under his wet raincoat.,\"sets down with her hands folded behind her back, still bowed.\"\n253,lsmdc0031_The_Lost_Weekend-65869,18573,Someone stands outside holding something under his wet raincoat. He,Someone stands outside holding something under his wet raincoat.,He,gold,sprays him onto a mirror and glows with it.,grabs him and carries him up a flight of stairs.,veers away from the railing.,pulls out someone's typewriter.\n254,anetv_9Ds9DvdPQkM,7994,A woman is talking while holding a saxophone. She,A woman is talking while holding a saxophone.,She,gold,demonstrates how to play a flute.,begins to play the saxophone.,pours her hand flute in and sits her on a sofa.,starts to fly a monkey.\n255,anetv_50b9lVikSeo,19297,Two fingers turn a silver knob clockwise on a vacuum cleaner. The person,Two fingers turn a silver knob clockwise on a vacuum cleaner.,The person,gold,uses the vacuum cleaner to clean the carpet.,is welding it with a hand.,continues mopping the floor.,presents a rag handle hose of a vacuum.\n256,anetv_50b9lVikSeo,19298,The person uses the vacuum cleaner to clean the carpet. The person,The person uses the vacuum cleaner to clean the carpet.,The person,gold,cleans the window with a towel.,empties the vacuum cleaner in a trash.,repeats the process carefully while the camera pans.,uses a rag to clean the window.\n257,anetv_50b9lVikSeo,6112,A close up of a machine is shown followed by a close up of a vacuum and a person using her foot. The person pushing the vacuum along the floor and,A close up of a machine is shown followed by a close up of a vacuum and a person using her foot.,The person pushing the vacuum along the floor and,gold,scrubs the carpet and shows it vacuuming gently.,followed by working on the mop.,then empties out the filter into the trash.,to look down into the room while still talking to the camera.\n258,anetv_ZJk05q3y5iM,18150,\"The toddler with the brush continues to dip the brush in the pain and paints her friend's nail while laughing. After, the girl\",The toddler with the brush continues to dip the brush in the pain and paints her friend's nail while laughing.,\"After, the girl\",gold,looks to the camera and begins smiling.,takes off her sunglasses and continues talking.,teaches the girl how to use paint her brush.,dips the mop quickly over one smooth foundation.\n259,anetv_ZJk05q3y5iM,15074,Girl dips the brush into the polish. Girl,Girl dips the brush into the polish.,Girl,gold,laughs into the camera.,gets and brushes her brush.,talks to the camera for shoe polish.,rides while she wets her shoes.\n260,anetv_ZJk05q3y5iM,15073,Girl paints the fingernails of another girl. Girl,Girl paints the fingernails of another girl.,Girl,gold,dips the brush into the polish.,speaks to the camera holding a cat.,pierces a circle of her face several times.,watch the woman clean gloves with paper.\n261,anetv_ZJk05q3y5iM,18149,An African American toddler's right hand is placed on a white rag while another young girl pants her nails with burgundy polish. The toddler with the brush,An African American toddler's right hand is placed on a white rag while another young girl pants her nails with burgundy polish.,The toddler with the brush,gold,on the other adult ski her the nail.,is soaking the sweating brush.,continues to dip the brush in the pain and paints her friend's nail while laughing.,\"takes a nail paper, paints it over and applies glue to her nails.\"\n262,anetv_Kcy0A0DuckE,14977,A small group of kids are seen moving around a gymnasium throwing balls around. The kids,A small group of kids are seen moving around a gymnasium throwing balls around.,The kids,gold,begin playing spin while they hold sticks between the blades.,break the ball up and twirl each other over and over.,continuously turns hitting the ball.,throw the balls to one another while playing a game.\n263,anetv_Kcy0A0DuckE,14978,The kids throw the balls to one another while playing a game. The game,The kids throw the balls to one another while playing a game.,The game,gold,ends with several more clips of the game hitting the ball to the camera.,continues on while the kids jump and down.,continues on as more others return for the camera.,continues to hit the ball around while the camera pans around.\n264,anetv_yKdvz5dgro4,7484,\"Also, a teen wash a cup of steel and dancing. A woman\",\"Also, a teen wash a cup of steel and dancing.\",A woman,gold,enters and then leave the kitchen.,mounts the ball and hands it to a female coach.,is showing practice environments in a stable.,uses a washed fist with windex.\n265,anetv_LV0nevBELso,14813,\"A young man stands outdoors on a porch speaking to the camera, the words Zack's Glass Cleaning appears on screen. He\",\"A young man stands outdoors on a porch speaking to the camera, the words Zack's Glass Cleaning appears on screen.\",He,gold,is then shown running from a lane road and pushes it along the fence as people are flanked by the completely black background.,'s in the net font of men being interviewed while men walk by and begin riding each other in the same way.,\"brings out tools and starts cleaning the window, explaining the process to the camera.\",plays a harmonica in his hand for a little while while he attempts not to play.\n266,anetv_LV0nevBELso,14814,\"He brings out tools and starts cleaning the window, explaining the process to the camera. He\",\"He brings out tools and starts cleaning the window, explaining the process to the camera.\",He,gold,appears at another location cleaning a large commercial window.,is looking as to the result of the ski before.,puts still and resumes explaining why to snowboard on.,continues to job the snow out of the back.\n267,anetv_LV0nevBELso,3070,\"A young boy is standing outside of a window demonstrating the proper way to clean it. First, he\",A young boy is standing outside of a window demonstrating the proper way to clean it.,\"First, he\",gold,grabs the sponge like mom and wets the window and grabs a razor like tool to clean it.,continues to smooth tiles all around the street very quickly.,picks up the soap and then uses a ruler to replace it in the car.,adds the black container to the cleaned one by measure and begins cleaning the area.\n268,lsmdc3035_INSIDE_MAN-1707,1306,\"As his partner gets in, someone takes the wheel. It\",\"As his partner gets in, someone takes the wheel.\",It,gold,drops the chain necklace near his gorilla helmet.,'s like he can not keep it.,shows police cars surrounding the bank.,see him in with his car.\n269,anetv_zuBJzdDI9MY,1098,A man puts olive oil into a boiling pot on the stove. He,A man puts olive oil into a boiling pot on the stove.,He,gold,puts noodles into the pot.,shows the pasta in the pot.,fills a red pot on the stove.,cooks the sauce and work on the stove.\n270,anetv_zuBJzdDI9MY,16964,A man stands in his kitchen discussing. The man,A man stands in his kitchen discussing.,The man,gold,\"walks back to the chopping board, starts to discuss again about that.\",pulls his feet front and opens the hoops of a string routine.,adds oil and salt to a pot on the stove.,moves the white potatoes towards the male who sharpen a knife.\n271,anetv_zuBJzdDI9MY,16965,The man adds oil and salt to a pot on the stove. The man,The man adds oil and salt to a pot on the stove.,The man,gold,puts oranges and soda.,pour the ingredients into a pan with a stencil and a man puts cream on a nice bread slice.,grabs a pot of oil in the boiled water to cook the drink and dove before turning it off the stove.,places in pasta noodles one at a time to the pot.\n272,anetv_zuBJzdDI9MY,1097,A man is standing in a kitchen. A man,A man is standing in a kitchen.,A man,gold,talks while showing how to exercise and preparing to shave your legs.,stands up from a hookah and demonstrates how he is about to shave the beard.,puts olive oil into a boiling pot on the stove.,sits on a stool next to him and smiles excitedly while he mops the floor.\n273,anetv__m8WprCWHF4,7922,\"A wooden board appears at an outdoor area an it say's clam beach county park welcome north day use parking, then in yellow some text appears that say the dog walk. Various still shots of people walking with dogs or walking alone along a road\",\"A wooden board appears at an outdoor area an it say's clam beach county park welcome north day use parking, then in yellow some text appears that say the dog walk.\",Various still shots of people walking with dogs or walking alone along a road,gold,appear along with various shots of the area and titles of what they are.,are shown several more of the people dealing their cleaning equipment and still speaking from the foreign language their mom being shown with is.,are shown with some items that are shown and it's already moving the sidewalk using a leaf blower.,pushing two cars in a yard.\n274,lsmdc0043_Thelma_and_Luise-68397,12261,Someone careens back onto the road. Someone,Someone careens back onto the road.,Someone,gold,slams on the brakes.,drapes his arm over someone's shoulder as the road clings to it.,opens the pickup chamber to a shelf full of steam.,wears beige colored blue jeans.\n275,lsmdc0043_Thelma_and_Luise-68397,12262,Someone slams on the brakes. Someone,Someone slams on the brakes.,Someone,gold,bumps fists against each other as the guys linger.,sees someone and looks at him.,\"shouts towards the tugboat, becoming the elf, his burning red - pale, white body.\",stops yelling for a moment groping for self - control.\n276,anetv_dGHCQVdC27c,4742,A person works behind the wall. The person,A person works behind the wall.,The person,gold,squeezes the post and cuts it off at the end.,taps the smaller piece of wood in the wood.,whips the board around to hang the equipment.,is covering the last section of the wall.\n277,anetv_dGHCQVdC27c,4741,A man covers a wall with cement using a hose. A person,A man covers a wall with cement using a hose.,A person,gold,works behind the wall.,is standing on stairs in a public room.,is using it to wipe down the tiles.,is using a vacuum hose to open the trash.\n278,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2153,He gingerly removes her hand and sits up. He,He gingerly removes her hand and sits up.,He,gold,slips out of bed without waking her and pulls on his dressing gown.,places the jigger in his hand.,\"sways restlessly, and lips quiver.\",\"notices the attractive, blonde man dressed someone.\"\n279,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2156,Someone's sleeve dispenses coffee. Smiling someone,Someone's sleeve dispenses coffee.,Smiling someone,gold,wipes the corner of someone's mouth.,watches her visitor claps as someone returns.,\"takes off his glasses, which speeds out of the hospital.\",leaves someone and rolls his gaze down chin - length hair as he crosses his room.\n280,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2141,Someone slips her hand beneath his robe. She,Someone slips her hand beneath his robe.,She,gold,\"pushes it open, caressing his chest and looks up at him coyly.\",sets down her purse and limps down the hall.,gives her sister a hug then dashes off with and climbs into a black black background.,\"tips on a bloody hand, and she pulls it close.\"\n281,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2155,\"In the morning, someone, someone and their dad have breakfast on the patio right in front of ocean. Someone\",\"In the morning, someone, someone and their dad have breakfast on the patio right in front of ocean.\",Someone,gold,lets someone take his seat.,stows the bowl around his shoulders.,pulls them away and grits his teeth.,come into the vast double doors.\n282,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2150,\"Later, someone's leg pokes out from under a sheet. Someone's arm\",\"Later, someone's leg pokes out from under a sheet.\",Someone's arm,gold,is hidden through three plastic sheets.,is tied under a blanket.,\"opens, revealing a dark suit with no many wild eyes.\",\"lies draped across his stomach, her hand to his, as she sleeps.\"\n283,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2140,\"Cradling his head in her hand, she draws his mouth to hers again. Someone\",\"Cradling his head in her hand, she draws his mouth to hers again.\",Someone,gold,gazes after her as she pushes it away.,slips her hand beneath his robe.,covers his mouth and returns his examination to the railing.,grins as someone cradles her head behind.\n284,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2142,Someone's hand brushes under her hair and his gentle kisses grow more impassioned. Later he,Someone's hand brushes under her hair and his gentle kisses grow more impassioned.,Later he,gold,lies on top of her as their mouths meet in a series of light caresses.,enters a caged alley; women have him on dining tables.,claps his hands and salutes.,enters a modest apartment filled with household items and dresses.\n285,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2136,He shyly sips his drink. Someone,He shyly sips his drink.,Someone,gold,'s gaze drifts toward the golden sky.,swigs a glass of champagne and glares at them.,\"watches her go, then spots someone standing in her doorway.\",\"gives a wry, knowing smirk, and sets his wine aside.\"\n286,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2154,\"He slips out of bed without waking her and pulls on his dressing gown. In the morning, someone, someone and their dad\",He slips out of bed without waking her and pulls on his dressing gown.,\"In the morning, someone, someone and their dad\",gold,have breakfast on the patio right in front of ocean.,leave someone's dorm with rain and floors.,sit on a couch filled with leaves.,\"are alone as they are sitting on the bar, close together, sipping a glass of glass.\"\n287,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2138,\"Facing someone again, he finds her staring longingly at him. Holding his gaze, she\",\"Facing someone again, he finds her staring longingly at him.\",\"Holding his gaze, she\",gold,\"leans in, lays a hand on his chest and plants a tender kiss on his lips.\",reaches for his spectacles and brushes his cheek.,finds her face in his lap.,listens to an already distant voice.\n288,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2152,\"As his sister limps down the hall, someone looks at someone, who slumbers on. He\",\"As his sister limps down the hall, someone looks at someone, who slumbers on.\",He,gold,looks on the backyard with mass of wafting tenderness.,grasps her arms and shoves it back onto the table.,gingerly removes her hand and sits up.,pushes the patient's face in to someone's neck and falls to the floor.\n289,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2146,\"Later they lie beneath the sheets as they kiss with mounting intensity. As someone lies on his back, someone\",Later they lie beneath the sheets as they kiss with mounting intensity.,\"As someone lies on his back, someone\",gold,stares tensely below his bruised eyes.,reads a penis.,plants a row of kisses down his abdomen.,watches his family share a doleful smirk.\n290,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2149,\"He draws her into a kiss and their interlocked hands drift off the mattress. Later, someone's leg\",He draws her into a kiss and their interlocked hands drift off the mattress.,\"Later, someone's leg\",gold,is pressed tightly against the truck entrance.,pokes out from under a sheet.,lies on a loose pillow next to a lolls bed.,\", someone, peers out of the rink in the frat house.\"\n291,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2147,His hand caresses her back. Later someone,His hand caresses her back.,Later someone,gold,follows someone across a set of school police stadium.,sits on someone's bed.,\"lies on top of someone, regarding him with a tender smile.\",frowns with a formed angry sword.\n292,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2144,With someone between her legs someone brings one leg toward her chest. Now he,With someone between her legs someone brings one leg toward her chest.,Now he,gold,reaches out and pulls the trooper up of his face with all his might.,sneaks into an elegant den dressed in a maroon bathing suit.,rests a hand on her heaving chest as he plants kisses along her thigh.,pushes his back in and opens the joint above his head.\n293,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2139,\"Her lips coyly brush his. Cradling his head in her hand, she\",Her lips coyly brush his.,\"Cradling his head in her hand, she\",gold,pulls the flap closed.,draws his mouth to hers again.,pulls him into a hug.,gives her weak smile.\n294,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2145,Now he rests a hand on her heaving chest as he plants kisses along her thigh. Later they,Now he rests a hand on her heaving chest as he plants kisses along her thigh.,Later they,gold,head into motel room.,drive across a big construction site.,sit at a table with someone.,lie beneath the sheets as they kiss with mounting intensity.\n295,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2151,\"Someone's arm lies draped across his stomach, her hand to his, as she sleeps. In the hall, someone\",\"Someone's arm lies draped across his stomach, her hand to his, as she sleeps.\",\"In the hall, someone\",gold,places a bloody tissue on her cheek gently.,groggily walks into the saw a woman in half box.,sees a blurred figure lying in bed.,sits naked with her foot in a magic bathtub.\n296,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2148,\"Later someone lies on top of someone, regarding him with a tender smile. He draws her into a kiss and their interlocked hands\",\"Later someone lies on top of someone, regarding him with a tender smile.\",He draws her into a kiss and their interlocked hands,gold,kiss passionately as they lie on top of her.,drift off the mattress.,gently smooth her back.,hold each other's arms.\n297,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2143,Later he lies on top of her as their mouths meet in a series of light caresses. With someone between her legs someone,Later he lies on top of her as their mouths meet in a series of light caresses.,With someone between her legs someone,gold,stares over her shoulder.,staggers to his feet and breathes restlessly.,brings one leg toward her chest.,holds up the silky veil after it.\n298,lsmdc3026_FRIENDS_WITH_BENEFITS-1475,2137,\"Someone gives a wry, knowing smirk, and sets his wine aside. Facing someone again, he\",\"Someone gives a wry, knowing smirk, and sets his wine aside.\",\"Facing someone again, he\",gold,finds her staring longingly at him.,tucks the condom aside and someone averts his gaze.,wraps his arms around his daughters's torso.,shifts his exasperated gaze.\n299,anetv_SHZ9fsusMGc,6840,He then starts to turn it. He,He then starts to turn it.,He,gold,\"chugs the last time, then sticks it in his mouth.\",points out a screen on the bottom of the christmas shirt a brown tool.,stops and looks it over.,mounds of dirt goes downhill on the slopes.\n300,anetv_SHZ9fsusMGc,6839,A man is holding a rubiks cube. He then,A man is holding a rubiks cube.,He then,gold,starts to turn it.,picks up a rubik cube cube and sets it down.,places a small cube in kneels.,measures the puzzle to create an image of the flower of the triangle.\n301,anetv_SHZ9fsusMGc,6841,He stops and looks it over. Eventually he,He stops and looks it over.,Eventually he,gold,pulls the top of his bike into place.,doubles over again and sits up.,solves it and shows his time.,\"pauses, still sees earth.\"\n302,anetv_WvpiEwrWmWE,9253,\"Then, she takes another rod to perform and spins at the same time the rods. After, the cheerleader\",\"Then, she takes another rod to perform and spins at the same time the rods.\",\"After, the cheerleader\",gold,is shown and gets her jumprope looking back danced on the floor and then back to a rack of be toilets.,performs tricks with her fingers and hobby the air.,walks up to the stage with a man spotlight.,put one rod on the floor and continue performing only with one rod.\n303,anetv_WvpiEwrWmWE,9252,\"A cheerleader perform graciously using a rod that spins in her right hand. Then, she\",A cheerleader perform graciously using a rod that spins in her right hand.,\"Then, she\",gold,\"does some elliptical moves, flipping and playing of the bar bar.\",flips off the bar and baton dancing she throw several times.,takes another rod to perform and spins at the same time the rods.,lifts the barbell over her head and sits up.\n304,anetv_zlXs92vjuSU,9297,He then tries a rubber mallet to force the earring in. He,He then tries a rubber mallet to force the earring in.,He,gold,slams the blade on the horn then walks on.,throws the fish and they finally allow a good to swim sucked into it.,cries and sobs in pain at his unsuccessful attempt of piercing his own ear lobe.,\"withdraws the knife that he uses out, starts down back the construction splits and sharpens again.\"\n305,anetv_zlXs92vjuSU,9295,He is demonstrating how to pierce his ear with stud earrings. He,He is demonstrating how to pierce his ear with stud earrings.,He,gold,expresses severe pain as he tries to pierce his ear lobe.,\"is bowling, cleaner and swollen.\",caresses with scissors to draw polish and smooths it on with excess brush.,\"shows how the raincoat can and does it, styling it.\"\n306,anetv_zlXs92vjuSU,9296,He tries using a thumbtack to help the piercing but ends up causing severe bleeding in his ear. He then,He tries using a thumbtack to help the piercing but ends up causing severe bleeding in his ear.,He then,gold,tries a rubber mallet to force the earring in.,continues speaking to more and laying there hair.,goes to multiple different steps until he's done and approaches someone with his hand.,builds the tattoo attaching excitedly.\n307,anetv_zlXs92vjuSU,9294,A young man named Sean wearing a beanie hat and black earring studs. He,A young man named Sean wearing a beanie hat and black earring studs.,He,gold,touches someone's hand with a tool.,is demonstrating how to pierce his ear with stud earrings.,sits in front of a display dryer and discusses the tattoo.,begins talking about the shoes that he suede.\n308,anetv_UfjR8ewF8xo,7065,Man is standing in a basket court practicing free throws. man with white shirt,Man is standing in a basket court practicing free throws.,man with white shirt,gold,is practicing in the background.,walks past the man to perform billiards.,is playing basketball the ball in a darts court.,holds a long stick to hit a ball using a racket.\n309,anetv_UfjR8ewF8xo,7066,Man with white shirt is practicing in the background. man stnanding in court,Man with white shirt is practicing in the background.,man stnanding in court,gold,is balancing tape on a grassy intersection.,talks while being in yellow terraces.,is playing in front of the stairs.,is talking to the camera and explaining how to play.\n310,anetv_sObM6mb3hgs,10240,\"A group of young men are showcased one by one, with an onscreen name template, rollerblading stunts on stairs and stair railings, jumping in the air, sliding on rails and landing. The men\",\"A group of young men are showcased one by one, with an onscreen name template, rollerblading stunts on stairs and stair railings, jumping in the air, sliding on rails and landing.\",The men,gold,\"spin to cross the track and spin, flipping, flipping and flipping through many jumps, pole vaulting.\",\"showcase some mishaps in which they fall after the stunt, but then perform more stunts successfully.\",perform a gymnastics beam in the air and he performs a gymnastics routine on the parallel bars.,arrive by kayaks with each other on numerous different rafting events and rafting down the water.\n311,anetv_sObM6mb3hgs,10239,\"Several young men exhibit rollerblading stunts using many different pedestrian environments to showcase the stunts including, sidewalks, stairwells, stair railings, walls and parking lots. A camera\",\"Several young men exhibit rollerblading stunts using many different pedestrian environments to showcase the stunts including, sidewalks, stairwells, stair railings, walls and parking lots.\",A camera,gold,view from a bathroom shows a pair of shredded vegetables and oil sculptures hanging down their wall.,\"picks up several candid environment shots picking up lines of palm trees, and a vast cityscape filled with buildings and some foliage.\",zooms in on a person pushing them before the children.,clip the video of the city in front of a white square.\n312,lsmdc0004_Charade-47779,14233,He takes the bag to the bed where he dumps out the contents. As someone,He takes the bag to the bed where he dumps out the contents.,As someone,gold,walks up to someone.,\"swerves up the basement stairs, someone falls asleep.\",\"pulls out his liquor, he stops in the middle of the street.\",begins to examine the items one by one.\n313,lsmdc0004_Charade-47779,14235,He hands her the glasses and she looks through them. He,He hands her the glasses and she looks through them.,He,gold,smiles triumphantly at the witch then jerks her wand to her husband.,leads someone and someone.,licks his lips then stares out of the window at her.,shakes some powder into his hand and tastes it.\n314,lsmdc0004_Charade-47779,14234,As someone begins to examine the items one by one. He,As someone begins to examine the items one by one.,He,gold,takes it out of the envelope and takes out his glasses before reading it.,picks up more corpses.,\"lifts her handbag, steps out to her side.\",passes by as he chews.\n315,anetv_OUPEzXXawCs,13532,People are riding horses on a field. A dog and a person,People are riding horses on a field.,A dog and a person,gold,come out of the ice.,providing it to themselves.,cross in front of the camera.,stand on a horse.\n316,anetv_OUPEzXXawCs,13533,A dog and a person cross in front of the camera. The horses,A dog and a person cross in front of the camera.,The horses,gold,continue several tricks as they walk away.,are running around on the field.,begin snowboarding while people watch on the sides.,do a high kick in the water then briefly bring in another man.\n317,lsmdc0033_Amadeus-66898,7207,\"Someone looks furiously at him, then at someone. Someone\",\"Someone looks furiously at him, then at someone.\",Someone,gold,goes outside and closes the door.,pushes the ax away from the cliff's edge and fires wildly.,\"stares at someone, then nods as someone signs it.\",hops up her feet.\n318,anetv_woLR9wHe0Vs,16310,We see the man talking and see the yard as he rakes. We then,We see the man talking and see the yard as he rakes.,We then,gold,see the man as he blows it with a leaf blower and a vacuum.,see the ending title credits.,see the cuts and a few men walking around snow.,see the ending screen on a table.\n319,anetv_woLR9wHe0Vs,16309,We see a tree trunk and leaves falling. We,We see a tree trunk and leaves falling.,We,gold,see two men in front of a tree holding lacrosse sticks.,see a person point to the tree.,see the images put away on the window.,see the man talking and see the yard as he rakes.\n320,anetv_woLR9wHe0Vs,16308,We see a man in a yard raking with a title on the screen. We,We see a man in a yard raking with a title on the screen.,We,gold,see one of a foot red door with a canvas.,\"see the title again, gradually dark images.\",see a tree trunk and leaves falling.,see a man on a coffee table kissing.\n321,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7979,Someone steps into a shaft of moonlight. Paranoia,Someone steps into a shaft of moonlight.,Paranoia,gold,pulls off his wrist.,looks at every boy in the ocean.,ducks into the oldest family woodland crate.,blazes in his eyes.\n322,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7987,\"Someone looks at someone, each knowing the other has heard it. The ring\",\"Someone looks at someone, each knowing the other has heard it.\",The ring,gold,lies between them on the table.,is full with clearly someone than the red.,is returned to the dead guy's jaw.,is tall and half - blown towards someone.\n323,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7982,\"Someone pulls the envelope out of an old chest. Without a word, someone\",Someone pulls the envelope out of an old chest.,\"Without a word, someone\",gold,takes the envelope and tosses it into the fireplace.,\"stares at operator, who removes her hat.\",leaves the church alone with others.,pulls the wedding ring from his pocket.\n324,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7980,Paranoia blazes in his eyes. His clothes,Paranoia blazes in his eyes.,His clothes,gold,\"spread, crashing into a gentle crevice.\",are strewn with clothes.,are dirty and ragged from much traveling.,stretch out under the covers to the glass.\n325,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7976,All is quiet. someone peers uneasily into the darkened living room. a large figure,All is quiet. someone peers uneasily into the darkened living room.,a large figure,gold,emerges from inside the tent.,sits on the hillside.,\"looms out of the shadows, reaching for someone.\",sits outside a elevated wall wall as the door swings into focus.\n326,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7978,\"Someone lets out a startled cry, pulls himself free and spins around to face his Assailant. Someone\",\"Someone lets out a startled cry, pulls himself free and spins around to face his Assailant.\",Someone,gold,\"leaps out, then wrestles someone disgustedly.\",\"go down the street, run out to the top.\",looks down the main room.,steps into a shaft of moonlight.\n327,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7975,\"Someone enters Bag End. he immediately Pauses, sensing that something is amiss. All\",\"Someone enters Bag End. he immediately Pauses, sensing that something is amiss.\",All,gold,lies on the floor with a set of pillows.,is quiet.,\"drops the bottle, then interrupts the stranger.\",\"can see the crowd, watching them as they fight.\"\n328,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7981,His clothes are dirty and ragged from much traveling. Someone,His clothes are dirty and ragged from much traveling.,Someone,gold,goes down a manipulating day to their bottoms.,flinches and injects like a dagger.,pulls the envelope out of an old chest.,\"becomes more terrible, then there is no winter attention and trails of the professor of a layout.\"\n329,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7983,\"Without a word, someone takes the envelope and tosses it into the fireplace. Flames\",\"Without a word, someone takes the envelope and tosses it into the fireplace.\",Flames,gold,instantly consume the envelope.,lights cheerily on a red twilight sky and piles up.,darken the palm of the tree.,screams through his window as he scurries toward it.\n330,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7985,Someone reaches into the fire with a pair of tongs. he lifts the ring out. Someone,Someone reaches into the fire with a pair of tongs. he lifts the ring out.,Someone,gold,nods and removes the photo from his ear.,walks past the women who sits as a chair.,pulls the axe in his hand and sits at his brother's feet.,drops the ring into someone's hand.\n331,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7977,\"A large figure looms out of the shadows, reaching for someone. Someone\",\"A large figure looms out of the shadows, reaching for someone.\",Someone,gold,\"lets out a startled cry, pulls himself free and spins around to face his assailant.\",wife faces a hay - woven verdell.,releases someone and hurls the disc with his feet.,\"stares at it for a moment, then looks away.\"\n332,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59918,7984,\"Flames instantly consume the envelope. revealing the ring, as it sinks into the red hot embers. Someone reaches into the fire with a pair of tongs. he\",\"Flames instantly consume the envelope. revealing the ring, as it sinks into the red hot embers.\",Someone reaches into the fire with a pair of tongs. he,gold,looks from around the pool.,lifts the ring out.,fires a long outdoor on hooked keys.,kicks the canvas onto the ground.\n333,anetv_nMFEEBtIu-Y,19904,A group of men are seen playing instruments together. The band,A group of men are seen playing instruments together.,The band,gold,continues as the man up front sings into the microphone.,begins to dance while then down to one another.,continues playing the piano while people playing on the side.,uses harmonicas with the instructor smiling to the camera.\n334,anetv_nMFEEBtIu-Y,19905,The band continues as the man up front sings into the microphone. The men,The band continues as the man up front sings into the microphone.,The men,gold,playing the stage with the children standing before him.,sit on black where people place their leg up in the water and attach others ear to back.,continue to play together and end by stopping and looking around.,nod broadly and leave the room.\n335,lsmdc0027_The_Big_Lebowski-63198,3258,Someone is peeling the plastic lid off the coffee can. The wind,Someone is peeling the plastic lid off the coffee can.,The wind,gold,is racked by some overlapping options.,spills the cup into a small garbage pan.,blows a gust of light onto the radio.,\"has blown all of the ashes into someone, standing just to the side of and behind someone.\"\n336,lsmdc0027_The_Big_Lebowski-63198,3259,\"Finished eulogizing, someone looks back. He\",\"Finished eulogizing, someone looks back.\",He,gold,hurries behind the boy who narrows his eyes as his back turns away.,pulls someone up at a towering structure decorated with twin fireworks.,\"glimpse the dark - haired someone, who jumps into the water.\",starts brushing off someone with his hands.\n337,lsmdc0027_The_Big_Lebowski-63198,3260,\"He starts brushing off someone with his hands. Heretofore motionless, someone finally\",He starts brushing off someone with his hands.,\"Heretofore motionless, someone finally\",gold,picks up his pace then drinks some of his beer.,gets it in under his head.,notices the branches of his fountain peeking away from someone's bloody mitt.,\"explodes, slapping someone's hands away.\"\n338,lsmdc3071_THE_DESCENDANTS-5748,5242,\"As she leans in to hug him, someone tilts his head and gives her a full kiss on the lips instead. With an intense stare, he\",\"As she leans in to hug him, someone tilts his head and gives her a full kiss on the lips instead.\",\"With an intense stare, he\",gold,\"heads off, leaving someone confused.\",points a finger at her nose.,marches into the room as someone steps up to the girls and hugs her.,\"shifts her gaze to the clearing, then leans his head back on the couch and faces forward.\"\n339,lsmdc3071_THE_DESCENDANTS-5748,5241,Someone lowers his remorseful gaze and his lips pucker. His jaw tightens and he,Someone lowers his remorseful gaze and his lips pucker.,His jaw tightens and he,gold,\"holds someone in a weary, disdainful stare.\",slides out his quill.,glances back with his stick.,lowers his gaze to his beautiful hair.\n340,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16866,The men turn to the ignored bone and notice that the dogs are missing. They,The men turn to the ignored bone and notice that the dogs are missing.,They,gold,zips back and consists of a different fellow teens in a garbage bag.,continues his search.,takes a drag from the pipe.,\"look up to see a beautiful woman with long, dark hair.\"\n341,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16860,Someone throws a pouch down in front of the men. Coins,Someone throws a pouch down in front of the men.,Coins,gold,explode out of the room.,\", spinning, march back toward someone who explodes in beams.\",and someone exchange a look.,spill out catching the mercenaries attention.\n342,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16862,\"Outside, a large man with long, blonde hair takes the dogs and leads the men out of town. Someone\",\"Outside, a large man with long, blonde hair takes the dogs and leads the men out of town.\",Someone,gold,watches then saunters off smoking a pipe.,\"a close - air view shows someone standing, in his fedora, lifting a shirt.\",tourists speed along a pedestrian backstage.,vacuums deeper into a potion.\n343,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16865,The light casts eerily shadows into the gloom as the nervous trackers huddle around the meager flames. One of the men,The light casts eerily shadows into the gloom as the nervous trackers huddle around the meager flames.,One of the men,gold,takes up his rifle and aims it at his mother.,picks up a bone and casts it to the dogs.,walks out of the den and fastens his collar.,\"hauls out a lever, hurls it at the other.\"\n344,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16864,\"Deep in the dark forest, an unbroken swathe of trees stretches to the horizon. A fire\",\"Deep in the dark forest, an unbroken swathe of trees stretches to the horizon.\",A fire,gold,pulls in his left hand.,is lit in a small clearing.,rides in on the sun.,has moved toward the house of angry creatures that set his left close up zone below.\n345,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16863,\"Someone watches then saunters off smoking a pipe. Deep in the dark forest, an unbroken swathe of trees\",Someone watches then saunters off smoking a pipe.,\"Deep in the dark forest, an unbroken swathe of trees\",gold,stretches to the horizon.,lies on the edge of his bed.,continues to progress out towards a market.,lies in a pond.\n346,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16861,\"Coins spill out catching the mercenaries attention. Outside, a large man with long, blonde hair\",Coins spill out catching the mercenaries attention.,\"Outside, a large man with long, blonde hair\",gold,takes the dogs and leads the men out of town.,leaves a flight of stairs indoors.,rolls up a strip in his trousers.,picks up a framed photo.\n347,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1592,16867,\"They look up to see a beautiful woman with long, dark hair. The\",\"They look up to see a beautiful woman with long, dark hair.\",The,gold,sits on a sidewalk opposite him with a look of concern.,\"swallows hard as she walks toward someone, who also swings downcast.\",\"spot grazes outdoors again, studying.\",slowly get up and approach the stranger.\n348,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15051,\"He turns back, bewildered. An intricate carving\",\"He turns back, bewildered.\",An intricate carving,gold,caresses its face.,shows a man in a living room.,\"appears in the stone wall in front of him, and then a large archway.\",shows the chamber - like a finger.\n349,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15052,\"An intricate carving appears in the stone wall in front of him, and then a large archway. As someone watches, the carved stone\",\"An intricate carving appears in the stone wall in front of him, and then a large archway.\",\"As someone watches, the carved stone\",gold,escapes into view as blank screens appear on the wooden stone chamber.,doors burst open and the shaggy - haired man looks down.,\"becomes a pair of huge, wooden double doors.\",has drawn down his signature to an article on a blue - white cloth.\n350,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15053,\"As someone watches, the carved stone becomes a pair of huge, wooden double doors. The doors\",\"As someone watches, the carved stone becomes a pair of huge, wooden double doors.\",The doors,gold,\"take the closing catapults, revealing the two men who accurately someone and someone.\",\"swing open, revealing a long room lined with shadowy mirrors.\",creaks open by a wave which explodes as a swinging dragon is followed by a closing fire watching them.,swing upside down to reveal someone and someone watching with trepidation.\n351,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15049,\"Someone hurries away from the bullying people. Walking along the corridor, an odd sound\",Someone hurries away from the bullying people.,\"Walking along the corridor, an odd sound\",gold,is visible on the hill.,causes him to stop.,fills the door of a mansion.,drifts through a smoky trail on steps.\n352,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15050,\"Walking along the corridor, an odd sound causes him to stop. He\",\"Walking along the corridor, an odd sound causes him to stop.\",He,gold,\"turns back, bewildered.\",pushes a rose and covering them.,ends the gesture again.,falls a few pretends to be asleep.\n353,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94948,15048,Someone watches from a high tower as they return to school. Someone,Someone watches from a high tower as they return to school.,Someone,gold,joins the guys in the park.,leans close as she gives him instructions.,steps onto a platform.,opens a private door and sees an open door in it.\n354,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-228,8202,\"Someone watches, then eyes the other smiling girls. At the library, someone\",\"Someone watches, then eyes the other smiling girls.\",\"At the library, someone\",gold,'s face softens.,reads a plaque on a broken glass case.,faces her stroking daughter.,looks at the door and coughs deeply.\n355,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-228,8201,Someone turns for someone to wrap the necklace around her neck. Someone,Someone turns for someone to wrap the necklace around her neck.,Someone,gold,\"smiles, then smirks.\",\"steps back, and lifts the knit cap.\",seems to walk away from the metal flower.,\"watches, then eyes the other smiling girls.\"\n356,lsmdc1060_Yes_man-99487,15314,\"Someone's leaning against the bar, looking morose. Someone\",\"Someone's leaning against the bar, looking morose.\",Someone,gold,taps him on his left shoulder and leans round to his right.,holds a fist tightly.,edges to study someone by the collar but barely so.,takes out a coffee thermos.\n357,lsmdc3074_THE_ROOMMATE-4399,6279,Someone grips the gun with both hands. She,Someone grips the gun with both hands.,She,gold,\"starts cutting the coffins from the mask, holding them at her sides.\",\"flinches, her smile vanishing.\",leaves off the space.,\"opening the compartment, he turns through a laptop case.\"\n358,lsmdc3074_THE_ROOMMATE-4399,6277,Someone grabs the gun from someone's waist. She,Someone grabs the gun from someone's waist.,She,gold,catches up with someone.,\"lowers the door, then collapses.\",\"scrambles to his feet, then grabs him, posing the passengers.\",smiles and reaches out.\n359,lsmdc3074_THE_ROOMMATE-4399,6280,\"She flinches, her smile vanishing. Someone\",\"She flinches, her smile vanishing.\",Someone,gold,squeezes the trigger again.,stares at the wreck.,stares at someone and smiles.,sets down someone's coat.\n360,lsmdc3074_THE_ROOMMATE-4399,6276,He pulled her back through the window. Someone,He pulled her back through the window.,Someone,gold,\"opens her door, putting her hair on shoulders.\",stands in the doorway.,looks down at her computer and enters.,smiles down at her.\n361,lsmdc3074_THE_ROOMMATE-4399,6281,Someone squeezes the trigger again. Someone,Someone squeezes the trigger again.,Someone,gold,seems to forget what she sees.,hurls the lock mid someone's neck curiously.,gives a dejected pout.,advances on the lower tier.\n362,lsmdc1046_Australia-90895,8269,\"She runs and passes it to someone, who brands a steer, which is being held down. Someone, minding the horses,\",\"She runs and passes it to someone, who brands a steer, which is being held down.\",\"Someone, minding the horses,\",gold,\"looks up and sees his grandfather, waiting for him.\",is open to free them.,approaches a red dance car then completes it.,\"comes out, all of them, hand in hand, up a bench on his toes.\"\n363,lsmdc1046_Australia-90895,8267,He whirls a lariat as the wild horse canters around him. He,He whirls a lariat as the wild horse canters around him.,He,gold,hits the wall and rocks back and forth.,drags himself over and leads him.,stands at the contented thought.,\"launches the rope, which slips around the horse's neck.\"\n364,lsmdc1046_Australia-90895,8268,\"He launches the rope, which slips around the horse's neck. Someone\",\"He launches the rope, which slips around the horse's neck.\",Someone,gold,advances on someone who fall onto a thick horse.,spikes the tree to someone.,drops to a beam then jumps to the bars.,heats a brand in the fire.\n365,lsmdc1046_Australia-90895,8272,The plain behind her is empty. Someone,The plain behind her is empty.,Someone,gold,\"fills her shredded wine, then strides out of the kitchen.\",lies down in front of her.,\"is over the top, entering with the water, in a full black leather jacket.\",stares into the distance.\n366,lsmdc1046_Australia-90895,8270,\"Someone, minding the horses, looks up and sees his grandfather, waiting for him. In the paddock, someone\",\"Someone, minding the horses, looks up and sees his grandfather, waiting for him.\",\"In the paddock, someone\",gold,\"works the wild horse, hauling on the rope to prevent it from bucking.\",leans up against the gas - car window watching the others outside.,swipes holes through her sweatshirt and licks them on his pursed lips.,is doing a great job then notices the darkened corner of the house.\n367,lsmdc1046_Australia-90895,8271,\"He looks into her eyes, then across at his grandfather. The Brumby\",\"He looks into her eyes, then across at his grandfather.\",The Brumby,gold,disappear down on the high - school portrait.,of honor holds someone's arms.,\"trots towards someone, who holds out his hand to it.\",of her face are white with terror.\n368,anetv_ArGF2CfOxkY,4834,\"A horse is behind a yellow gate as a man sits on top holding a rope. The gate is opened, and a black calf\",A horse is behind a yellow gate as a man sits on top holding a rope.,\"The gate is opened, and a black calf\",gold,holds for three second.,starts wearing snow mountain.,gets up from his pony like a horse.,comes running out into the field of dirt.\n369,anetv_ArGF2CfOxkY,4835,\"The gate is opened, and a black calf comes running out into the field of dirt. Almost instantly, the man\",\"The gate is opened, and a black calf comes running out into the field of dirt.\",\"Almost instantly, the man\",gold,falls several times on the horse and grabs a calf.,bounds into a clearing then finally stops to let it go.,comes up and steps onto the stairs.,throws his lasso and jumps off to secure the cow.\n370,anetv_ArGF2CfOxkY,4836,\"Almost instantly, the man throws his lasso and jumps off to secure the cow. Once he is finished, the man gets back on the horse and other individuals\",\"Almost instantly, the man throws his lasso and jumps off to secure the cow.\",\"Once he is finished, the man gets back on the horse and other individuals\",gold,are watching them on when the ball go to and they help them off the jumprope.,are spraying the calf with the rope.,come out to take the calf out.,sit at the end.\n371,anetv_AwoZxz8M8Jg,9988,A man in red turban stands in a kitchen. He,A man in red turban stands in a kitchen.,He,gold,talks to the camera and plays with grooming.,sets the cross down and picks it up.,is washing cement in a sink.,pours some ingredients into a glass.\n372,anetv_AwoZxz8M8Jg,9990,He explains his methods holding a spoon. He then,He explains his methods holding a spoon.,He then,gold,trims it evenly against the thick wall.,begins demonstrating how to play the keyboard.,finishes playing and talks to the camera.,finishes the drink with a garnish.\n373,anetv_AwoZxz8M8Jg,9989,He pours some ingredients into a glass. He,He pours some ingredients into a glass.,He,gold,continues to mix the pan with oil and salt.,explains his methods holding a spoon.,listed grapple: eggs are seen on the screen.,is lined.\n374,lsmdc3023_DISTRICT_9-10815,7863,\"As someone trembles, his fingernail comes off. He\",\"As someone trembles, his fingernail comes off.\",He,gold,snaps coins at the demon.,sets it down on the desk.,presses his left lips to the top monk.,holds up one hand to his son's head.\n375,lsmdc3023_DISTRICT_9-10815,7865,Now he crosses the office floor. He,Now he crosses the office floor.,He,gold,passes a co - worker at a water cooler and enters the bathroom.,checks the cement to the doorway of a room.,leaps off the catwalk.,lays down on a bunk.\n376,lsmdc3023_DISTRICT_9-10815,7861,\"In the headquarters, someone leans back in a cubicle holding his head. He\",\"In the headquarters, someone leans back in a cubicle holding his head.\",He,gold,moves his mind to the side.,watches another anxious display on a blond banker.,approaches an ironing desk where two three sit huddled on a table near an electric independence taking a slow to compose himself.,coughs into a napkin.\n377,lsmdc3023_DISTRICT_9-10815,7864,He sets it down on the desk. Now he,He sets it down on the desk.,Now he,gold,\"leans against the kitchen table, drinking both hands.\",grabs a mug and presents it to his son.,\"shows a country swollen, then sits on his desk.\",crosses the office floor.\n378,lsmdc3023_DISTRICT_9-10815,7862,He coughs into a napkin. He,He coughs into a napkin.,He,gold,quickly crosses the room to shake the sack.,hands it look to the barman.,flips to another page.,picks up the bank.\n379,lsmdc3023_DISTRICT_9-10815,7860,\"Now, the truck enters the mnu facility. In the headquarters, someone\",\"Now, the truck enters the mnu facility.\",\"In the headquarters, someone\",gold,stares sideways at a display of civilians.,leans back in a cubicle holding his head.,demurely climbs down from her unlaced pontoon.,aims at someone and steers his way down the busy stage.\n380,lsmdc3040_JULIE_AND_JULIA-18230,16786,She shoves her arms into the sleeves of a sweater draped over her shoulders. The postman,She shoves her arms into the sleeves of a sweater draped over her shoulders.,The postman,gold,leans out of the taxi.,pulls off the hood and aims her gun at someone.,stops him and turns away.,hands her an envelope and leaves.\n381,lsmdc3040_JULIE_AND_JULIA-18230,16782,\"She slurps a sample from a wooden spoon, smacks her lips, and smiles. She\",\"She slurps a sample from a wooden spoon, smacks her lips, and smiles.\",She,gold,scoops up a chunk and eats it.,winds up in someone and stays on his shoulder.,swigs from a flask and looks at a message in her phone.,joins the mother with the grocery bag she just eats.\n382,lsmdc3040_JULIE_AND_JULIA-18230,16784,Someone opens up and shivers. Someone,Someone opens up and shivers.,Someone,gold,puts his bowl onto the noodles.,returns his polo card.,seems to be losing the gunfire.,signs on a clipboard.\n383,lsmdc3040_JULIE_AND_JULIA-18230,16781,\"Later, the editor faces the pot, skeptically tensing her lips. She\",\"Later, the editor faces the pot, skeptically tensing her lips.\",She,gold,\"nods and nods again, then pumps her bananas and walks away.\",\"slurps a sample from a wooden spoon, smacks her lips, and smiles.\",marks an article on a shelf at it.,poses with her name.\n384,lsmdc3040_JULIE_AND_JULIA-18230,16787,The postman hands her an envelope and leaves. Someone,The postman hands her an envelope and leaves.,Someone,gold,loads half of the missile onto a transport ship before captain arrives.,is reading a file inside.,\"gazes solemnly at her father, then herself deep forward.\",clutches the letter to her chest and glances nervously inside the house.\n385,lsmdc3040_JULIE_AND_JULIA-18230,16789,\"Creeping across the porch, the chef summons a breath and paces. She\",\"Creeping across the porch, the chef summons a breath and paces.\",She,gold,looks out into the cavern.,smiles in an armchair.,approaches the room and leaves the kitchen.,\"takes a seat on a cushion wicker bench, opens the envelope, and reads.\"\n386,lsmdc3040_JULIE_AND_JULIA-18230,16785,Someone signs on a clipboard. She,Someone signs on a clipboard.,She,gold,walks close to him.,shoves her arms into the sleeves of a sweater draped over her shoulders.,pulls out the passport and bubble bin.,joins a young woman with a mustache.\n387,lsmdc3040_JULIE_AND_JULIA-18230,16779,\"Someone exhales wearily through pursed lips, then picks up the box containing the manuscript and leans back in her chair. As she reads, a smile\",\"Someone exhales wearily through pursed lips, then picks up the box containing the manuscript and leans back in her chair.\",\"As she reads, a smile\",gold,falls across someone's face.,appears on someone's lips.,spreads across someone's cheeks as he watches his bare feet.,spreads across her face.\n388,lsmdc3040_JULIE_AND_JULIA-18230,16778,A preppy editor reads the title page. Someone,A preppy editor reads the title page.,Someone,gold,fills revealing information of the company's blog photo.,\", shocked, stands down from the veranda, gun in hand.\",\"exhales wearily through pursed lips, then picks up the box containing the manuscript and leans back in her chair.\",\"reads, twenty wife, boys, young, and hockey students.\"\n389,lsmdc3040_JULIE_AND_JULIA-18230,16780,\"As she reads, a smile spreads across her face. Now she\",\"As she reads, a smile spreads across her face.\",Now she,gold,pours red wine into a stock pot on the stove.,brushes leaves out of a bucket.,\"stands with someone, later, at a wine line.\",presses a button on the floor.\n390,lsmdc3040_JULIE_AND_JULIA-18230,16777,He wraps his arm around her and kisses her forehead. A preppy editor,He wraps his arm around her and kisses her forehead.,A preppy editor,gold,hangs back from the table.,checks in her rental office.,reads the title page.,arrives at someone 'table.\n391,anetv_eXUcFgDxslw,11381,The people in the background clap for the lady. The lady then,The people in the background clap for the lady.,The lady then,gold,dive forward and dances with joy.,goes back to the food and continues talking.,lowers the camera slowly.,walks off camera while laughing.\n392,anetv_eXUcFgDxslw,11380,The lady spins and does a pliea. The people in the background,The lady spins and does a pliea.,The people in the background,gold,zooms in on the girl.,clap for the lady.,go along the aisle.,give the lady a high five.\n393,anetv_ResZdSbk9kE,6641,Man in river is sitting in yellow kayak holding a row. man,Man in river is sitting in yellow kayak holding a row.,man,gold,is fighting against the current in a kayak.,is sitting to the top of a raft sitting with canoes at flowing waterfall.,\"is finishing a tiny, purple cup.\",drives horizontally along the shore toward a river.\n394,anetv_ResZdSbk9kE,6640,Man wearing a blue helmet is kayaking in river showing how to use a row. man in river,Man wearing a blue helmet is kayaking in river showing how to use a row.,man in river,gold,is being pulled in a raft.,holds fish in the water.,is sitting in yellow kayak holding a row.,runs over the ramp on a board.\n395,lsmdc0003_CASABLANCA-46891,17453,People approach the table from the bar. As he,People approach the table from the bar.,As he,gold,sees someone he stops short.,\"scored, he watches the customer recede.\",lowers the corner of his mouth.,holsters her gun.\n396,lsmdc0003_CASABLANCA-46891,17452,For a long moment he just looks at her. People,For a long moment he just looks at her.,People,gold,look on as she picks her up and sets him aside.,approach the table from the bar.,are kissing her through the nose.,\"are in the hotel room, holding their weapons.\"\n397,lsmdc0027_The_Big_Lebowski-63034,1481,People are pulling up in front of a dilapidated house sitting on a scrubby lot. It,People are pulling up in front of a dilapidated house sitting on a scrubby lot.,It,gold,see someone talking on the phone by someone's car.,is opened by a matronly spanish woman.,looks into the camera.,disappears into a fiery fluid in a sheet of stairs.\n398,lsmdc0046_Chasing_Amy-68674,12660,It ricochets off the ceiling and through the glass of an old pinball machine. Someone,It ricochets off the ceiling and through the glass of an old pinball machine.,Someone,gold,walks up then aims at the aliens.,grows almost defeatedly as he turns to face someone.,blows through the furniture boxes.,\"looks around, nervously.\"\n399,anetv_9qUbxwjh-4A,10232,We see a young girl light a cigarette. She then,We see a young girl light a cigarette.,She then,gold,takes the cigarette out of her mouth and talks.,gets the substance out of her hand and begins polishing it with her hand.,picks up a cigarette and puts mascara onto her face.,turns on a pair of lights flash.\n400,anetv_9qUbxwjh-4A,10233,She then takes the cigarette out of her mouth and talks. She,She then takes the cigarette out of her mouth and talks.,She,gold,polishes the pedals structure.,hands the lighter to another person and puts her hand on her hip.,and is blowing her tongue a very long time.,\"brushes her straw, puts it in her mouth, then puts the cigarette in her mouth.\"\n401,lsmdc1038_The_Great_Gatsby-87742,13589,Someone sees a bereft someone and frowns with concern. Policemen,Someone sees a bereft someone and frowns with concern.,Policemen,gold,sit down on a bench.,burst from inside the cab.,are standing and writing at the table.,hold the crowd back.\n402,lsmdc1038_The_Great_Gatsby-87742,13592,\"Someone holds his hand up to the cop. Tearful, someone\",Someone holds his hand up to the cop.,\"Tearful, someone\",gold,puts a hand on hers.,\"gets in the garage, wearing a bag standing over his face.\",shakes his head and looks at someone.,goes right out of the way.\n403,lsmdc1038_The_Great_Gatsby-87742,13591,\"One of them lays a sheet over Myrtle's body, which lies on a table. Someone\",\"One of them lays a sheet over Myrtle's body, which lies on a table.\",Someone,gold,lies on the floor.,\"reaches out and pulls the sheet back, revealing myrtle's blood - spattered corpse.\",the lawyer tilts his head.,gulps down a glass of water.\n404,lsmdc1038_The_Great_Gatsby-87742,13590,Policemen hold the crowd back. One of them,Policemen hold the crowd back.,One of them,gold,watches the intruder with other arms.,walks toward the camera.,climbs the ladder and looks up at the dog.,\"lays a sheet over myrtle's body, which lies on a table.\"\n405,anetv_uM3RiCL0g2U,10488,The camera pans out to reveal a dog standing in the room with the man with a white frisbee in its mouth. The man,The camera pans out to reveal a dog standing in the room with the man with a white frisbee in its mouth.,The man,gold,lays his hand on a truck lid with a silver scissor blow.,proceeds to throw frisbees at which point the dog catches the frisbee.,is holding big purple head frisbee with a leash.,is using orange and blue pink as to throw frisbee on the coach.\n406,anetv_uM3RiCL0g2U,10490,\"The dog then performs tricks including rolling over, jumping on the man's back all in the effort to get the frisbee from the man. The dog then\",\"The dog then performs tricks including rolling over, jumping on the man's back all in the effort to get the frisbee from the man.\",The dog then,gold,jumps in the man's arms at the man's command as the scene fades out.,shows the package to the dog when he attempts to catch his dog near the frisbee.,trails his hand along the air riding the sleeping dog and bends down to catch the frisbee on the ground.,catches the boys as well as the girl who was joined in.\n407,anetv_uM3RiCL0g2U,10489,The man proceeds to throw frisbees at which point the dog catches the frisbee. The dog then,The man proceeds to throw frisbees at which point the dog catches the frisbee.,The dog then,gold,\"performs tricks including rolling over, jumping on the man's back all in the effort to get the frisbee from the man.\",rides away from the dog again.,brushes up the weeds to the dog and throws it on the ground.,hits the frisbee with his hand.\n408,anetv_uM3RiCL0g2U,10487,A man talks to a camera inside of a room while holding many white frisbees in his hand. The camera,A man talks to a camera inside of a room while holding many white frisbees in his hand.,The camera,gold,pans various parts to the side of the screen.,flashes around the turning circle several times while paying no attention to the camera.,starts to sequence a step names and a male athletes stand behind along talking.,pans out to reveal a dog standing in the room with the man with a white frisbee in its mouth.\n409,anetv_uM3RiCL0g2U,10486,A man demonstrates how to train a dog to catch a frisbee inside of a gym room where the room is lined with frisbees. A man,A man demonstrates how to train a dog to catch a frisbee inside of a gym room where the room is lined with frisbees.,A man,gold,holds a white dog face to the shoe mower and a man with some tails and plays again.,is playing in the studio.,talks to a camera inside of a room while holding many white frisbees in his hand.,\"walks to the end, then goes to the other side and starts walking again when cuts the grass to catch the frisbee.\"\n410,anetv_uM3RiCL0g2U,7060,A man holding an array of white frisbees in his hand talks to a camera The camera pans out and a dog is seen in the background with a frisbee in its mouth. The man then,A man holding an array of white frisbees in his hand talks to a camera The camera pans out and a dog is seen in the background with a frisbee in its mouth.,The man then,gold,goes to the man and catches the ball and continues to talk about how to make a drink for this.,demonstrates how to swim in the water and do a 360 around the top as two other divers swims near the wall.,\"begins with flash rope, explaining how to place the leash in his mouth that him to jump through it.\",\"begins throwing frisbees in the air strategically, talking to the camera after each throw, explaining the training process.\"\n411,anetv_uM3RiCL0g2U,7059,A man demonstrates how to train a dog to catch frisbees and perform tricks and stunts while doing so. A man holding an array of white frisbees in his hand talks to a camera The camera pans out and a dog,A man demonstrates how to train a dog to catch frisbees and perform tricks and stunts while doing so.,A man holding an array of white frisbees in his hand talks to a camera The camera pans out and a dog,gold,is shown on the way outside a set of platforms jumping rope.,runs taking the boy on the sidewalk making the dog run to him.,is swimming in the middle and then plays with the dog looking into the camera.,is seen in the background with a frisbee in its mouth.\n412,anetv_uM3RiCL0g2U,7061,\"The man then begins throwing frisbees in the air strategically, talking to the camera after each throw, explaining the training process. The dog\",\"The man then begins throwing frisbees in the air strategically, talking to the camera after each throw, explaining the training process.\",The dog,gold,runs cheerfully through the field as the newlyweds make long turns and gesture towards the frisbees.,\"jumps, rolls over, begs, runs and moves about during the training session.\",returns to performing with his dog standing to catch the other action.,disappeared into the receptacle as the man drops the frisbee and walks away.\n413,anetv_q7Ap96aMkZ8,6273,We see people jogging on a city street. We,We see people jogging on a city street.,We,gold,see a man start singing and the baby speaks to him.,zoom in on a shirtless man juggling.,see a lady holding a donkey.,see the camera operator.\n414,anetv_q7Ap96aMkZ8,6274,We zoom in on a shirtless man juggling. We,We zoom in on a shirtless man juggling.,We,gold,pan backwards towards the other runners.,see an elephant sleeping on a table in a grassy yard.,\"see a series of steps in a pool, we see men skating and playing the sport.\",man in the audience gives him a kick.\n415,anetv_4qstg-tiRvQ,18097,The girls then perform a routine. The girls break into three groups and the two on the sides,The girls then perform a routine.,The girls break into three groups and the two on the sides,gold,shake their hands and swing.,begin to do 360 tricks.,grab at the other after the girl jumps out of the way.,kneel while the middle group squats.\n416,lsmdc3058_RUBY_SPARKS-28444,2684,\"As he sits beside her on the couch, someone turns off the tv. She\",\"As he sits beside her on the couch, someone turns off the tv.\",She,gold,moves into the room with a patient.,chucks the remote aside then sits up sucking in her lips remorsefully.,smokes a cigarette as someone plays the windows.,turns on a hunk of beer.\n417,lsmdc3058_RUBY_SPARKS-28444,2691,\"Clutching her drink, someone wanders the party and sighs. She\",\"Clutching her drink, someone wanders the party and sighs.\",She,gold,follows her through the window as she sulks off.,\"grins with the cheerily knitted scarf, then heads back into the hall where she has risen.\",spies someone with a woman.,grabs it from someone.\n418,lsmdc3058_RUBY_SPARKS-28444,2675,\"Now, words type out on a page. Seated before his typewriter, someone\",\"Now, words type out on a page.\",\"Seated before his typewriter, someone\",gold,sits at the roulette table.,finds someone in the hospital room.,lowers his hands to his lap.,creeps down a flight of stairs.\n419,lsmdc3058_RUBY_SPARKS-28444,2693,\"Looking pass the woman, he notices someone drinking on her own. She meets his gaze and he\",\"Looking pass the woman, he notices someone drinking on her own.\",She meets his gaze and he,gold,raises his champagne flute.,glances up to her behind.,backs away and smiles back.,\"glances across helplessly, her gaze downcast.\"\n420,lsmdc3058_RUBY_SPARKS-28444,2678,Half - eaten snacks litter the coffee table and a blanket covers her feet. Someone,Half - eaten snacks litter the coffee table and a blanket covers her feet.,Someone,gold,hangs various overhead lamp fixed on him.,shines its headlights under a solitary light setting.,hoists her naked body onto a bar and passes to the woman with her.,hurries in with dry cleaning.\n421,lsmdc3058_RUBY_SPARKS-28444,2692,\"She spies someone with a woman. Looking pass the woman, he\",She spies someone with a woman.,\"Looking pass the woman, he\",gold,heads back to an office.,returns the camera to a gentleman reading a cabinet behind her.,notices someone drinking on her own.,clutches a single vase over the washing table.\n422,lsmdc3058_RUBY_SPARKS-28444,2685,She chucks the remote aside then sits up sucking in her lips remorsefully. Someone,She chucks the remote aside then sits up sucking in her lips remorsefully.,Someone,gold,blinks as an image goes to an right.,\"sits with his hands on his knees, staring with a furrowed brow.\",puts her hand on her heart.,notices his teacher breaking strands of concern.\n423,lsmdc3058_RUBY_SPARKS-28444,2690,\"Someone stares then swaps awkward smiles with someone. Clutching her drink, someone\",Someone stares then swaps awkward smiles with someone.,\"Clutching her drink, someone\",gold,shakes her head then leans against her desk impatiently.,hurries between the men.,sips another bottle of beer.,wanders the party and sighs.\n424,lsmdc3058_RUBY_SPARKS-28444,2676,\"Seated before his typewriter, someone lowers his hands to his lap. He\",\"Seated before his typewriter, someone lowers his hands to his lap.\",He,gold,lifts his gaze and takes a calming breath.,picks up some pen.,leans forward and kisses the top of someone's head.,lifts his head out of the window.\n425,lsmdc3058_RUBY_SPARKS-28444,2683,\"Someone takes in her unstable state then sets down the dry cleaning. As he sits beside her on the couch, someone\",Someone takes in her unstable state then sets down the dry cleaning.,\"As he sits beside her on the couch, someone\",gold,\"points his wand to someone, who turns an airplane on the machine behind his head.\",\"rises, closing the door.\",turns off the tv.,holds a hopping piano.\n426,lsmdc3058_RUBY_SPARKS-28444,2689,\"Someone looks to someone hopefully. Now in a large house with walls of exposed stone, someone\",Someone looks to someone hopefully.,\"Now in a large house with walls of exposed stone, someone\",gold,dances awkwardly among his chatting guests.,watches a display of a billboard from a distance above the ship.,watches knapsacks out across the study.,touches the inky wardrobe.\n427,lsmdc3058_RUBY_SPARKS-28444,2674,\"Someone raises her arms over her head. Now, words\",Someone raises her arms over her head.,\"Now, words\",gold,appear in london over five hours.,type out on a page.,appear below the screen's bed.,appear beneath someone's hospital crucifix.\n428,lsmdc3058_RUBY_SPARKS-28444,2686,\"Someone sits with his hands on his knees, staring with a furrowed brow. Someone\",\"Someone sits with his hands on his knees, staring with a furrowed brow.\",Someone,gold,\"stands in front of someone, then spits out his nose.\",opens the front door.,\"gazes at the doorway in a moment, then lowers it.\",folds his hands and looks away.\n429,lsmdc3058_RUBY_SPARKS-28444,2681,Someone starts toward the couch. Someone,Someone starts toward the couch.,Someone,gold,snatches the remote back up and curls around it protectively.,steps forward and takes someone's arm.,lifts the phone to her ear and narrows her eyes solemnly.,\"darts across a cubicle in disarray, and crouches over his surroundings.\"\n430,lsmdc3058_RUBY_SPARKS-28444,2679,Someone hurries in with dry cleaning. She,Someone hurries in with dry cleaning.,She,gold,turns the tv back on and throws down the remote.,\"looks at the other boys, who keg an iraqi pan with their bats.\",takes out some washed books out by someone as he sits and smells someone's belongings.,pulls a bundle of documents from a coffee pot.\n431,lsmdc3058_RUBY_SPARKS-28444,2680,She turns the tv back on and throws down the remote. Someone,She turns the tv back on and throws down the remote.,Someone,gold,starts toward the couch.,lands on the back.,lowers her eyes and tries to compose herself herself.,can't save him.\n432,anetv_-6prmNqkAN8,13654,A large snowy mountain is seen as people gather on the ice. They,A large snowy mountain is seen as people gather on the ice.,They,gold,break into a rock building and end up skiing down a hill.,see men riding down a hill on tubes as they go over to the hills.,are shown tubes down a large rough followed by a car skiing down a dirt mountain.,\"hit several pucks, sweeping them in a game.\"\n433,anetv_ugDN2gDN99E,4415,\"As he is sitting down in the gym, he grabs the bar and begins moving back and forth on the seat. While he is seated, his legs\",\"As he is sitting down in the gym, he grabs the bar and begins moving back and forth on the seat.\",\"While he is seated, his legs\",gold,\"move from a straight position to a ninety degree angle each time, while simultaneously pulling the bar.\",break to move up from his leg and starts showing the mechanics of the workout.,all get upright and he finishes.,are scrubbed with soap.\n434,anetv_ugDN2gDN99E,4414,\"A young man is sitting on a rowing machine with a red and white polo shirt, Adidas sweat shorts, and Adidas shoes. As he is sitting down in the gym, he\",\"A young man is sitting on a rowing machine with a red and white polo shirt, Adidas sweat shorts, and Adidas shoes.\",\"As he is sitting down in the gym, he\",gold,rubs buttons and quickly performs an over seconds as the face slowly moves into it.,grabs the bar and begins moving back and forth on the seat.,is sitting on yoga position with an exercise machine on his chest talking.,plucks the pole up and begins swinging himself back and forth on the bars.\n435,anetv_ugDN2gDN99E,16043,A person is seen sitting on a piece of exercise equipment with his arms out in front. The person then,A person is seen sitting on a piece of exercise equipment with his arms out in front.,The person then,gold,demonstrates several weight ups on the bike while still speaking.,flips himself onto the bars while using several forward jumping squat and vaulting.,moves back and fourth on the machine while rowing his arms back and fourth.,picks up other objects and begins putting something on.\n436,anetv_5GZNSTv1rVs,2514,A man is seen sitting on a bucket on the ice fishing through a hole in the ice. He,A man is seen sitting on a bucket on the ice fishing through a hole in the ice.,He,gold,joins them and points to one another while another man watches them.,begins or demonstrating how to properly talk.,sticks various fish into a hole and pulls out a fish.,catches a fish and then puts it back in the water under the ice.\n437,anetv_5GZNSTv1rVs,2513,A boy is shown holding a fish with the words Paddle fish caught ice fishing?. A man,A boy is shown holding a fish with the words Paddle fish caught ice fishing?.,A man,gold,is seen sitting on a bucket on the ice fishing through a hole in the ice.,is trying to keep the fishing line from under the fishing hole.,comes paddles and plays the bagpipes.,is shaking a bath liquid in his hands.\n438,anetv_5GZNSTv1rVs,1155,The man grabs a fish and shows it to the camera and puts the fish back in. He,The man grabs a fish and shows it to the camera and puts the fish back in.,He,gold,\"chucks the pumpkin stick into the air, and uses it to play the water.\",lifts his ice cream and takes the fish out of the hole.,grabs several more fish to show to the camera while putting them back in afterwards.,begins taking off the fish what they say and how to use his hands to make sure the cookies are located.\n439,anetv_5GZNSTv1rVs,1154,A man is seen sitting on a bucket in front of an ice hole holding a pole. The man,A man is seen sitting on a bucket in front of an ice hole holding a pole.,The man,gold,grabs a fish and shows it to the camera and puts the fish back in.,holds up a piece of the paper while looking about and water a power attachment.,sprays a hole through the hole in the end washing it off with his cane and walking down quickly.,turns around to show the rubix cube while looking down at the camera.\n440,anetv_5GZNSTv1rVs,2515,He catches a fish and then puts it back in the water under the ice. He then,He catches a fish and then puts it back in the water under the ice.,He then,gold,catches a few more fish afterwards.,flips the fish into the water and also stuff more fish.,puts the fish down and shows how to apply ice to the small fish.,takes a large hose from the back of a bike and has also hit it.\n441,anetv_x4QVVFhamJ4,2073,Several pictures are shown of people's hand performing sign language as well as holding up various objects. A doctor,Several pictures are shown of people's hand performing sign language as well as holding up various objects.,A doctor,gold,is shown on the screen for a video about washing a new car.,hands the child to the camera while performing onto a leather chair.,is then seen putting a machine on a person as well as using a needle for an iv and checking the monitor.,is seen tattooing the top and standing around laughing.\n442,anetv_x4QVVFhamJ4,2074,A doctor is then seen putting a machine on a person as well as using a needle for an iv and checking the monitor. The nurse,A doctor is then seen putting a machine on a person as well as using a needle for an iv and checking the monitor.,The nurse,gold,grabs a bottle of soap from a brush and puts it back into the sink.,cuts the items evenly reclined then wipes the bench while continues drying her hair.,wipes down a table and then demonstrates how to properly wash your hands.,stands with her arms extended at the end with a laughing blackface resting with some cord over her head.\n443,anetv_x4QVVFhamJ4,873,\"Hands are shown in several images, holding babies, hands, feet, and fruits. The images\",\"Hands are shown in several images, holding babies, hands, feet, and fruits.\",The images,gold,continue in artistic ways.,show showing how to models different pieces of clothing.,are shown with the title of youtube.,are cut and spread evenly in intertubes.\n444,anetv_x4QVVFhamJ4,872,A woman is seen holding a rose in various poses. Hands,A woman is seen holding a rose in various poses.,Hands,gold,shaving bows to the water while stroking.,climb up onto the furniture.,moves behind the fence while more people walk around.,\"are shown in several images, holding babies, hands, feet, and fruits.\"\n445,anetv_8vcO5DRxP6c,18913,People measure the distance on the field. The man,People measure the distance on the field.,The man,gold,is replayed in slow motion.,puts on a white t shirt and puts his arms in the air.,goes back into frame and perform several tricks before walking away.,turns to see the arrow booth.\n446,anetv_8vcO5DRxP6c,18914,The man puts on a white t shirt and puts his arms in the air. Another man,The man puts on a white t shirt and puts his arms in the air.,Another man,gold,strokes the right side of his face.,launches a ball onto the field.,is holding the weight under his head.,is sitting at a table as strings of chains are inflated.\n447,anetv_8vcO5DRxP6c,18911,A man picks up a ball and puts it behind his neck and throws it onto the field. Another man in a blue shirt,A man picks up a ball and puts it behind his neck and throws it onto the field.,Another man in a blue shirt,gold,stands in front of the goal where another man in a green shirt wins the ball.,is sitting next to him in front of the net.,picks up a ball and puts it behind his ear and throws it onto the field.,is near the ground out on the yard with a gun.\n448,anetv_8vcO5DRxP6c,18912,Another man in a blue shirt picks up a ball and puts it behind his ear and throws it onto the field. People,Another man in a blue shirt picks up a ball and puts it behind his ear and throws it onto the field.,People,gold,talk to someone without success.,continue running around the alley.,points his stick directly into the goal where he is the last fighting.,measure the distance on the field.\n449,anetv_ZGL-PmMopeM,14574,They cover something in the snow with a shovel. They,They cover something in the snow with a shovel.,They,gold,begin to do tricks on skis down a hill.,watch the warriors from their backs and glide off stone concrete steps.,have melted fire along the asphalt.,pull up scraping of a van and pull off the snow on the bottom of the street and puts it very fast.\n450,anetv_ZGL-PmMopeM,14573,A person is taking skis off their feet. They,A person is taking skis off their feet.,They,gold,are performing a jump of the camera.,continue pulling the rope with the rope.,cover something in the snow with a shovel.,hit the car and bump into each other.\n451,anetv_NiaE7amNW7s,8690,Another female gymnast walks past the balance beam in the background. The female gymnast,Another female gymnast walks past the balance beam in the background.,The female gymnast,gold,performs a long jump.,strolls around a beam around her mounts.,watches in stiff smooths.,prepares for her dismount.\n452,anetv_NiaE7amNW7s,8694,The gymnast waves while spinning in a circle and then runs to the side of the gym floor. Three Asian gymnasts in yellow,The gymnast waves while spinning in a circle and then runs to the side of the gym floor.,Three Asian gymnasts in yellow,gold,\"bows down before the large beam, and dismounts.\",jump flips dramatically from the bars to split.,tightens his feet to show balance on a side side.,watch and clap without smiling.\n453,anetv_NiaE7amNW7s,8688,The gymnast performs a difficult tumbling sequence and the crowd cheers louder than before. People in the crowd that is watching the gymnast,The gymnast performs a difficult tumbling sequence and the crowd cheers louder than before.,People in the crowd that is watching the gymnast,gold,as they make routine in unison and play.,do a high dive into a water pool.,jump to the higher floor during the performance of the club.,enter the gym and find seats while others stand up and exit the gym.\n454,anetv_NiaE7amNW7s,8691,The female gymnast prepares for her dismount. The female gymnast runs and,The female gymnast prepares for her dismount.,The female gymnast runs and,gold,flips herself very quickly.,flips her baton in half.,jumps high in the air.,completes a tumbling sequence to exit the balance beam.\n455,anetv_NiaE7amNW7s,8695,Three Asian gymnasts in yellow watch and clap without smiling. The gymnast in red hugs and talks to her other teammates and her coach while several photographers,Three Asian gymnasts in yellow watch and clap without smiling.,The gymnast in red hugs and talks to her other teammates and her coach while several photographers,gold,stand on the sidelines behind them.,are in the bleachers dance on the stage and clap her hands.,are seen watching an the race for rafting.,take photos of her.\n456,anetv_NiaE7amNW7s,8683,A young female gymnast wearing red prepares for her balance beam routine in the Olympics. The female gymnast,A young female gymnast wearing red prepares for her balance beam routine in the Olympics.,The female gymnast,gold,does a ballet tango performance on a stage.,runs to the springboard and jumps from it to the balance beam.,mounts a snarling bell and spins her flips.,spins for the balance beam and somersaults from the bar and lands on the ground.\n457,anetv_NiaE7amNW7s,8696,The gymnast in red hugs and talks to her other teammates and her coach while several photographers take photos of her. The commentators,The gymnast in red hugs and talks to her other teammates and her coach while several photographers take photos of her.,The commentators,gold,\"show their scores and scenes of the team scoring goals, one without japan and host.\",try to walk away.,move her body to an array of metal bars before doing a routine.,replay several of the gymnasts more difficult tumbling sequences and her dismount in slow motion while explaining what she is doing.\n458,anetv_NiaE7amNW7s,8699,Several gymnasts from other teams also walk past. The female gymnast,Several gymnasts from other teams also walk past.,The female gymnast,gold,stands and runs on bars after entering another court in pairs with a practice.,mounts the chalk to back off the beam.,\"jumps backward, then a small and raises facing it again and the gymnasts jump over and lift her.\",talks with her team while waiting for her score to be displayed.\n459,anetv_NiaE7amNW7s,8687,An Asian man walks to the balance beam and pulls the springboard away from the beam. The gymnast performs a difficult tumbling sequence and the crowd,An Asian man walks to the balance beam and pulls the springboard away from the beam.,The gymnast performs a difficult tumbling sequence and the crowd,gold,stands on the sideline in front of an audience.,cheers and claps as the males continue to perform.,cheers louder than before.,stands in slow motion and approaches the stage.\n460,anetv_NiaE7amNW7s,8697,The commentators replay several of the gymnasts more difficult tumbling sequences and her dismount in slow motion while explaining what she is doing. The female gymnast,The commentators replay several of the gymnasts more difficult tumbling sequences and her dismount in slow motion while explaining what she is doing.,The female gymnast,gold,performs on the stage and stands in a bar motion with her hands ready her score and hangs on the bottom of the bar.,practice the events.,hugs another coach and another one of her teammates while a man films them with a large camera.,gives after alternating tricks off the bars quickly and then lands on the monkey bars.\n461,anetv_NiaE7amNW7s,8689,People in the crowd that is watching the gymnast enter the gym and find seats while others stand up and exit the gym. Another female gymnast,People in the crowd that is watching the gymnast enter the gym and find seats while others stand up and exit the gym.,Another female gymnast,gold,steps up near a balcony with both of her practice in the background.,\"is dressed, practicing herself in a competition with a lot of several items speaking to the camera.\",walks past the balance beam in the background.,\"comes in circles and repeats her routine across the bars in her bedroom, missing one flip.\"\n462,anetv_NiaE7amNW7s,8698,The female gymnast hugs another coach and another one of her teammates while a man films them with a large camera. All of the gymnasts on the United States team and their coaches,The female gymnast hugs another coach and another one of her teammates while a man films them with a large camera.,All of the gymnasts on the United States team and their coaches,gold,\"stand at their side, pointing their arms, making the circle and shaking the sword.\",perform more.,shows how to score the white high five.,walk through the gym while the crowd cheers very loudly.\n463,anetv_NiaE7amNW7s,8684,The female gymnast runs to the springboard and jumps from it to the balance beam. The female gymnast then,The female gymnast runs to the springboard and jumps from it to the balance beam.,The female gymnast then,gold,does her tumbling routine on the balance beam while commentators explain what she is doing and how difficult it is.,jumps the baton in a ways and performs twice several times in the air.,tackles her down as she tries to get up over a mat.,\"climbs a dive bridge and jumps off the balance beam, then does a flip.\"\n464,anetv_NiaE7amNW7s,8692,The female gymnast lands perfectly and throws her arms straight up in the air with a huge smile on her face Other gymnasts in the background watch and clap. A large group of photographers,The female gymnast lands perfectly and throws her arms straight up in the air with a huge smile on her face Other gymnasts in the background watch and clap.,A large group of photographers,gold,are gathered at a high given the dust attempt but fail on cheerleaders.,shows cheerleaders standing next to the machine.,watch and take photographs of the gymnast.,is shown sitting a the group waiting at the tower far end.\n465,anetv_NiaE7amNW7s,8685,The female gymnast then does her tumbling routine on the balance beam while commentators explain what she is doing and how difficult it is. A huge crowd,The female gymnast then does her tumbling routine on the balance beam while commentators explain what she is doing and how difficult it is.,A huge crowd,gold,of girls fall over doors and leap onto the beam.,has come onto the screen.,stands above him as she stands on a bar in a split while a gymnast twirls a baton around her waist.,watches and cheers the gymnast on.\n466,anetv_NiaE7amNW7s,8686,A huge crowd watches and cheers the gymnast on. An Asian man,A huge crowd watches and cheers the gymnast on.,An Asian man,gold,stands behind the gymnast.,walks to the balance beam and pulls the springboard away from the beam.,gets in front of the gymnast while an american player dangles from the mat.,is seen spinning around several times while the camera captures a man and two more wrestlers from a large circle like men.\n467,anetv_NiaE7amNW7s,8693,A large group of photographers watch and take photographs of the gymnast. The gymnast,A large group of photographers watch and take photographs of the gymnast.,The gymnast,gold,is seen performing a game routine in front of the marching band.,waves while spinning in a circle and then runs to the side of the gym floor.,chases after the gymnast and spins with the rake.,stands on the hula bars and attempts back flips and jumps in the air.\n468,anetv_s69uPXLvzIg,15544,Some beams in the wotkshop are shown. men,Some beams in the wotkshop are shown.,men,gold,hold a paper dive over their pool table.,pull on horses boarding a trail.,are bouncing their jumps on a different court.,is standing in a workshop welding beams and showing the workshop.\n469,anetv_s69uPXLvzIg,13859,A person is welding a piece of metal in a room. White metal sheets,A person is welding a piece of metal in a room.,White metal sheets,gold,are shown stacked up.,move out and a sheet of coats cover the floor.,shine down hot iron along the floor.,are shown on the screen.\n470,anetv_s69uPXLvzIg,13860,White metal sheets are shown stacked up. The person,White metal sheets are shown stacked up.,The person,gold,begins blow drying the box.,carry the vacuum in the living room.,finishes rubbing the hopscotch on a hookah pipe.,continues to weld metal.\n471,anetv_gwZleaX_ZR8,10840,Men are standing in the edge of a trampoline preparing to amke a jump into a pool in a roofed pool. people,Men are standing in the edge of a trampoline preparing to amke a jump into a pool in a roofed pool.,people,gold,are dancing on a pool while doing the whole thing.,are diving through a large pool on the sea.,are around the pool watching the men.,\"are burning around high in the pool, another is riding backed by the puck.\"\n472,anetv_gwZleaX_ZR8,6924,A person is seen diving off a board while others watch. Several more clips,A person is seen diving off a board while others watch.,Several more clips,gold,are shown of people fencing back and fourth and ends with several members kneeling in and out of frame.,are shown of people playing around one another as well as driving the board and skateboarding to the end.,are shown of people diving into the water.,are shown of people surfing in the water.\n473,anetv_gwZleaX_ZR8,6925,Several more clips are shown of people diving into the water. They,Several more clips are shown of people diving into the water.,They,gold,continue diving one after the other.,continue dancing around while others watch on the side.,are then shown in murky water with other fish.,find equipment to secure it.\n474,anetv_zTrI4pPFIlw,8637,A gymnast prepares to mount a beam. He,A gymnast prepares to mount a beam.,He,gold,lands in the sand and jumps onto the balance beam.,\"spins flips, dismount, lands gracefully, then moves forward.\",\"mounts, then proceeds to do many flips and handsprings.\",jumps and splits numerous times during the jump and lands.\n475,anetv_g8Yx4qWzNH0,12638,A man is bent down on a mat. He,A man is bent down on a mat.,He,gold,throws a razor into the air.,is punched sitting on the parallel bars.,begins to lift a barbell up to his chest.,picks up a large weight and lifts it over his head.\n476,anetv_A6CBFa22oJc,3555,\"Then, a man appears pulled by a dog, then adds display information about a retractable dog leash. After, a couple\",\"Then, a man appears pulled by a dog, then adds display information about a retractable dog leash.\",\"After, a couple\",gold,\"smokes puffs and blows them out, while still narrates a recording.\",leaves the man over the dog's tail to cut a bit of land.,fall out of the radiator.,pulls two dogs from leashes.\n477,anetv_A6CBFa22oJc,3556,\"After, a couple pulls two dogs from leashes. After,\",\"After, a couple pulls two dogs from leashes.\",\"After,\",gold,the man raises a leash on a croquet table.,the women take turns cutting and shoots the boy into the arms of the camera.,the woman hard and pets the grooming the dog.,adds display information about the leash.\n478,anetv_3DQTz4Ke50Q,18862,A truck is seen backing up and blowing leaves around while the camera captures the area around the truck. The truck,A truck is seen backing up and blowing leaves around while the camera captures the area around the truck.,The truck,gold,continues firing down the road and riding around as well as using the equipment and looking off into the distance.,continues to ride around and is shown.,is seen again in several locations backing up and pushing leaves back away from the truck.,continues to blow all over cars while people watch along the side.\n479,anetv_Dh3bLRYJkiY,2971,The boy takes off running. the boy then,The boy takes off running.,the boy then,gold,\"reaches over, flips his legs and walks out of the men waiting him for a sidewalk.\",gives his friends a high five and bounces back and forth across the mat before sliding hug after tugging.,jumps in a pile of sand.,gets up and goes for it to watch.\n480,anetv_Dh3bLRYJkiY,9239,\"Then, a person from Japan performs long jump. Am athlete from Brasil,\",\"Then, a person from Japan performs long jump.\",\"Am athlete from Brasil,\",gold,\"wife practice, flips, jumps with high sync rafts and scores.\",refreshments taylor structured jewelry and fancy style a string of other trophies in square stones.,also performs long jump and wins.,shown on the dirt track.\n481,anetv_Dh3bLRYJkiY,2972,The boy then jumps in a pile of sand. another boy,The boy then jumps in a pile of sand.,another boy,gold,jumps as the fight run away.,repeats the pattern of the first boy.,kicks on the drive.,is throwing a ball.\n482,anetv_mk3srKjFB3A,10596,A man is seen with his arm up and waves to an audience. He then,A man is seen with his arm up and waves to an audience.,He then,gold,demonstrates a spin routine on the wall while several people watch on the sides.,climbs up on a beam and begins spinning around.,continues dancing in the dining room.,looks up and performs window flips.\n483,anetv_mk3srKjFB3A,1235,\"People in the background sit, stand and walk around while watching and doing other things. The man\",\"People in the background sit, stand and walk around while watching and doing other things.\",The man,gold,easily transfers his bird up in front of the boy.,finishes his routine and dismounts.,jumps out of the lawnmower and waves.,stops and poses with the man.\n484,anetv_mk3srKjFB3A,1236,The man finishes his routine and dismounts. He,The man finishes his routine and dismounts.,He,gold,walks up and speaks to his camera of his own comments.,bows and walks to the side meeting up with another man congratulating him.,slowly picks up the ring and lands on it with his hands extended.,has difficulty pushing himself up and down on the mat.\n485,anetv_mk3srKjFB3A,1234,A man does a pommel horse routine. People in the background,A man does a pommel horse routine.,People in the background,gold,cheer and play them on with your hands on the side.,talk to the camera.,stand on front the stage.,\"sit, stand and walk around while watching and doing other things.\"\n486,anetv_mk3srKjFB3A,10597,He then climbs up on a beam and begins spinning around. He,He then climbs up on a beam and begins spinning around.,He,gold,continues spinning and ends by jumping down and bowing to the audience.,ends by jumping around the platform and moving his hands.,moves to a beam as the beam continues.,moves back and fourth while speaking to the camera.\n487,anetv_ctHNLEOtgPY,11081,A man crouches in a dance studio. He,A man crouches in a dance studio.,He,gold,holds up three fake steel cutters.,is showing how to play the flute.,starts to act on a reporter.,lifts himself onto his hands.\n488,anetv_ctHNLEOtgPY,11083,He holds his feet up in the air. He then,He holds his feet up in the air.,He then,gold,\"goes on the bounce, flipping back and forth.\",puts one of the back back down.,jumps off and hops onto the back.,lays on his back on the ground.\n489,anetv_ctHNLEOtgPY,11082,He lifts himself onto his hands. He,He lifts himself onto his hands.,He,gold,puts his helmet on downwards.,holds his feet up in the air.,flips the other's arms in the air.,\"flips him away, to measure his performance area.\"\n490,anetv_4dyn1oKJO34,2072,Various clips are shown of people playing lacrosse followed by a man holding the stick and speaking to the camera. He,Various clips are shown of people playing lacrosse followed by a man holding the stick and speaking to the camera.,He,gold,pulls up a window and continues to paint it.,pulls the javelin out of the field and the graphics are shown shown again again.,moves the stick all around demonstrating how to properly play.,see people clapping the hockey gloves.\n491,lsmdc3058_RUBY_SPARKS-28495,4887,\"She watches him cross the upper floor then lowers her frustrated gaze and feels her brow with both hands. In the office, someone\",She watches him cross the upper floor then lowers her frustrated gaze and feels her brow with both hands.,\"In the office, someone\",gold,switches on a desk lamp.,missile it toward someone.,rolls her eyes as she enters and sets her purse on the edge of a beat.,removes his shirt and put a polishing cloth on the dresser.\n492,lsmdc3058_RUBY_SPARKS-28495,4892,Someone adds a page to the typewriter. He,Someone adds a page to the typewriter.,He,gold,takes his seat in front of the bus driver.,steps into the globe and takes a swing.,takes it against his mouth.,cranks a knob on the side of the typewriter's carriage.\n493,lsmdc3058_RUBY_SPARKS-28495,4893,He cranks a knob on the side of the typewriter's carriage. Someone,He cranks a knob on the side of the typewriter's carriage.,Someone,gold,\"faces him, dressed to leave with her bag slung over her shoulder.\",smells a trash can.,continues scooping across the farm in the quarry.,stares chase as he crosses the roof.\n494,lsmdc3058_RUBY_SPARKS-28495,4896,Someone gathers herself and tries to walk out again. She,Someone gathers herself and tries to walk out again.,She,gold,moves to the glass door and glances around.,tries as he reaches her and picks up a bag with tequila from the edge.,covers her face with her hands.,races along a dark corridor in a doorway.\n495,lsmdc3058_RUBY_SPARKS-28495,4889,\"He takes off his jacket and drapes it over the back of the chair. Lifting the typewriter, he\",He takes off his jacket and drapes it over the back of the chair.,\"Lifting the typewriter, he\",gold,hands it to someone and lights it up.,flops onto his bed.,puts it back on.,grabs the key to the desk drawer hidden underneath.\n496,lsmdc3058_RUBY_SPARKS-28495,4888,\"In the office, someone switches on a desk lamp. He\",\"In the office, someone switches on a desk lamp.\",He,gold,makes his way across the hall to the closed office door.,shifts on his feet and turns toward the desk again.,\"notes, someone lowers his gaze and turns her head to read the red - robed bridge.\",takes off his jacket and drapes it over the back of the chair.\n497,lsmdc3058_RUBY_SPARKS-28495,4895,Someone shakes his head softly. Someone,Someone shakes his head softly.,Someone,gold,\"turns the face briefly, then lifts his gaze, urging a bedside look into her window.\",sits tucked beneath his black shorts.,gathers herself and tries to walk out again.,stares with a furrowed brow.\n498,lsmdc3058_RUBY_SPARKS-28495,4898,\"Standing, someone offers her the page. Someone\",\"Standing, someone offers her the page.\",Someone,gold,swings the spoon and gives someone a likeness of someone.,reads to a truck.,glances aside then crosses to the desk and takes the page from his hand.,steps forward and takes hold of his hand.\n499,lsmdc3058_RUBY_SPARKS-28495,4891,Someone grabs an article of clothing from a hanger and packs a bag. Someone,Someone grabs an article of clothing from a hanger and packs a bag.,Someone,gold,sweeps across the campaign and out of campus.,adds a page to the typewriter.,\"aims a chunk of paper at someone, who clamps it around her queasily lit neck.\",trots over to a collection of bushes in her front.\n500,lsmdc3058_RUBY_SPARKS-28495,4899,With tears in her eyes she reads. Someone,With tears in her eyes she reads.,Someone,gold,steps from the porch.,uses the phone to help someone.,hands her the manuscript.,slips on the keyboard.\n501,anetv_vlIAZsrj6yk,10277,We see a black title screen. We,We see a black title screen.,We,gold,see a man having his facial hair trimmed with an electric shaver.,see a man playing and a man.,see a man in a green shirt in a room.,see we screen title screen.\n502,anetv_vlIAZsrj6yk,10278,We see a man having his facial hair trimmed with an electric shaver. We,We see a man having his facial hair trimmed with an electric shaver.,We,gold,sit on the barber's leg wearing a pair of clippers and both rolled up and dry.,see a man being shaved with a straight razor.,then see the black title screen.,guy is shaving the hand of the snarling.\n503,anetv_vlIAZsrj6yk,10279,We see a man being shaved with a straight razor. We then,We see a man being shaved with a straight razor.,We then,gold,see a man in a green standing up by the newscaster talking.,see the closing screen.,see hundreds of clips that are being shown in third scenes.,see a man standing close up with his arms standing underneath his frame.\n504,anetv_IkjulgI7gzg,2274,One of the bodybuilders is lifting the weights while the other is explaining the correct method of doing it. He bodybuilder,One of the bodybuilders is lifting the weights while the other is explaining the correct method of doing it.,He bodybuilder,gold,lifts the weight gradually at first and then swiftly picks himself up to raise the weights.,works the tool like long kevin colossus for additional greats on the machine.,\"the arms to the floor, continues clipped the weights and spins around while spinning his arms around his shoulders.\",\"bends and picks up the weight, begins a salsa pace, runs his hands around his weight, and spins and back.\"\n505,anetv_IkjulgI7gzg,2273,There are two body builders dressed in a black shirts demonstrating weightlifting in a gym. One of the bodybuilders,There are two body builders dressed in a black shirts demonstrating weightlifting in a gym.,One of the bodybuilders,gold,in the chest serves up the ball in the gym.,is doing some tutorial explaining some karate moves and early comments to the background.,is mixed involving black and other men playing drums.,is lifting the weights while the other is explaining the correct method of doing it.\n506,anetv_IkjulgI7gzg,2275,He bodybuilder lifts the weight gradually at first and then swiftly picks himself up to raise the weights. The other bodybuilder,He bodybuilder lifts the weight gradually at first and then swiftly picks himself up to raise the weights.,The other bodybuilder,gold,clears the bar while the man then bends to his feet again.,grab the barbell and he drops it and holds it up.,cheers them on as they forms in a close stance grabbing the other's fist with one foot.,continues to explain the weightlifting strategies that is used professionally.\n507,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73443,4494,Lean shapely someone pads off. Someone,Lean shapely someone pads off.,Someone,gold,sits back in her chair.,breaks into a smile.,\"walks over to someone, bewildered.\",looks him in the eye.\n508,anetv_vB00ah6E5E4,3316,A young boy plays the violin. He,A young boy plays the violin.,He,gold,stops playing the violin.,plays a big fast harmonica.,starts playing the violin.,takes it out of his mouth and begins drumming the guitar.\n509,anetv_a-6lVnhqU4w,14955,The young woman continues to video the track with her tablet. The man in the orange shirt,The young woman continues to video the track with her tablet.,The man in the orange shirt,gold,leaves the bicycle as the horse approaches.,turns to help her up.,is running across the grass again.,stops and picks up his shorts and skates off.\n510,anetv_a-6lVnhqU4w,14953,A man is running across the grass field with an orange shirt and a flag on the grass in the middle of the track. Another man in a black shirt,A man is running across the grass field with an orange shirt and a flag on the grass in the middle of the track.,Another man in a black shirt,gold,runs towards the man in the orange shirt.,is standing behind a trampoline and cheers using a lasso.,kicked the ball back and forth against the sand.,is pressing his cue after bending out again then gets up off the bench and starts up the instrument.\n511,anetv_a-6lVnhqU4w,14958,Everyone starts clapping together in the stands. There,Everyone starts clapping together in the stands.,There,gold,see people making castles.,is almost plated with a giant colorful wave.,are registering their asian capoeira moves.,is a photo with a guy wearing a track uniform.\n512,anetv_a-6lVnhqU4w,14952,A young woman is holding a tablet to record a video of people running in a race and she is standing in the stands at a track filled with people. A man,A young woman is holding a tablet to record a video of people running in a race and she is standing in the stands at a track filled with people.,A man,gold,took a yellow turn at the horse's start to demonstrate it from several angles.,\"is talking to the camera, then a woman is pointing to the painting and the one standing next to her.\",walks in front of a cricket and puts final slice of alcohol around her and begins to show cream on her face.,is running across the grass field with an orange shirt and a flag on the grass in the middle of the track.\n513,anetv_a-6lVnhqU4w,14957,The young woman puts her tablet down after trying to video the game and looks off into the distance at the people on the track. Everyone,The young woman puts her tablet down after trying to video the game and looks off into the distance at the people on the track.,Everyone,gold,directs as people dance as one of the boys and the drums sit upright before the scene fades out.,starts clapping together in the stands.,kicks their arms in the air.,moves while running and flips around the bar then continues to move the to find her where her front legs fall to the floor.\n514,anetv_a-6lVnhqU4w,14956,The man in the orange shirt is running across the grass again. The young woman,The man in the orange shirt is running across the grass again.,The young woman,gold,\"started to hit the ball short the left, but she walked into the field.\",climbed the fence just started to lean back.,puts her tablet down after trying to video the game and looks off into the distance at the people on the track.,went around the pool.\n515,anetv_a-6lVnhqU4w,14954,Another man in a black shirt runs towards the man in the orange shirt. The young woman,Another man in a black shirt runs towards the man in the orange shirt.,The young woman,gold,grabs her and puts her hammer on it.,continues to video the track with her tablet.,smokes and raises the hoop.,practices on the parallel bar with two older men doing tricks.\n516,anetv_fmRio4-6Xqc,15694,A lot of people are gathered around a path watching the motocross competition. motorbikers,A lot of people are gathered around a path watching the motocross competition.,motorbikers,gold,push them up a rock and run a distance together.,do capoeira turns in different directions.,are on dusty path going on their bikes.,\"is wearing a long sweater, sitting and walking on monkey bars.\"\n517,anetv_fmRio4-6Xqc,4987,There are several men dressed in biking gear and helmets participating in a dirt bike competition. There,There are several men dressed in biking gear and helmets participating in a dirt bike competition.,There,gold,\"race is then shown with several people in the boat playing a cool sport, while people shake hands and look at the floor.\",30 desperately in people is mixing the drivers in the car.,are several spectators watching the event.,man in a black shirt is leading the men as a woman as they sled on a long row of skates with them.\n518,anetv_fmRio4-6Xqc,15693,Men are doing motocross in a competition. a lot of people,Men are doing motocross in a competition.,a lot of people,gold,are gathered around a path watching the motocross competition.,are sitting to them.,are riding in the middle of a road.,\"are running, trying to start a competition.\"\n519,anetv_fmRio4-6Xqc,4989,They are driving at high speed on a circular race track. The bikers,They are driving at high speed on a circular race track.,The bikers,gold,start running off and split in a split in the runway bunks.,watching expectantly for a competition in the marathon.,take a huge leap and jump over the obstacle and land on the other side of the race track.,\"are jumping through and running, bumping their dirt as they bump each other in different positions.\"\n520,anetv_fmRio4-6Xqc,4988,There are several spectators watching the event. They,There are several spectators watching the event.,They,gold,are driving at high speed on a circular race track.,run across a pipe.,show them on their bikes.,\"hop rope, hugging and at the discus point.\"\n521,anetv_Y6rHCVo28kM,3957,A person is seen sitting in a chair with a woman standing behind him cutting his hair. She,A person is seen sitting in a chair with a woman standing behind him cutting his hair.,She,gold,ties the cut around his face and gives it a pat.,continuously combs his hair and measures it along the side.,picks it off and begins putting it on.,begins moving the pin over the hair with a brush.\n522,anetv_Y6rHCVo28kM,3958,She continuously combs his hair and measures it along the side. She,She continuously combs his hair and measures it along the side.,She,gold,uses the mouthing sections to prepare to record the hairstyle to skateboarders.,uses the iron to hold the product.,finally finishes the cut and fades away from his face.,lifts the iron several times and sprays the pole.\n523,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95077,10708,A snake tattooed on a man's arm twists and writhes. A woman with wild hair,A snake tattooed on a man's arm twists and writhes.,A woman with wild hair,gold,blows back neck extensions.,lays out a picture on a snarling pov.,runs her tongue over the snake tattooed on her arm.,ends the carved in scenes.\n524,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95077,10707,The wind blows wisps of straw across the room. Someone,The wind blows wisps of straw across the room.,Someone,gold,looks out of the window.,winks at him and rushes into the kitchen.,takes off her shirt and takes off her nightgown.,quietly climbs down in beside her.\n525,anetv_rZ8tVgFyY84,9802,The surgeon then wets his hands and ads soap. The surgeon then,The surgeon then wets his hands and ads soap.,The surgeon then,gold,flips down the entire board.,grabs the toothbrush and hands it to the camera as the crowd watches.,rubs the palms together and builds a lather.,lowers his wet attachments and nods to the camera and continues talking.\n526,anetv_rZ8tVgFyY84,9801,A man wearing surgical clothes demonstrates the proper way to wash hands for surgical procedures and first removes jewelry. The surgeon then,A man wearing surgical clothes demonstrates the proper way to wash hands for surgical procedures and first removes jewelry.,The surgeon then,gold,removes a piece of water and washes his face in a water box.,takes a picture of face shaving cream.,wets his hands and ads soap.,moves his hands together thoughtful to show the results.\n527,anetv_rZ8tVgFyY84,9804,He then rubs back of hand with palm. The surgeon then,He then rubs back of hand with palm.,The surgeon then,gold,touches the back of the wheel without looking at him.,sees the vacuum in front of.,wipes the shaver up and the men are turning on the clean lines.,rubs the back of fingers with hands.\n528,anetv_rZ8tVgFyY84,9806,He then rubs the thumbs with the palm clasping thumb. Then he,He then rubs the thumbs with the palm clasping thumb.,Then he,gold,rubs the tips of the fingers into palm.,straightens the helmet once again and his color change.,shows it backstage and begins to move out before speaking and showing off his beard for work.,uses an electric tool to work out a small address.\n529,anetv_rZ8tVgFyY84,9803,The surgeon then rubs the palms together and builds a lather. He then,The surgeon then rubs the palms together and builds a lather.,He then,gold,cleans up the legs of plenty patterned motorcycle.,rubs back of hand with palm.,pours the iron in it and uses the tool to spray her lips.,sprays lotion on the feet and scrubs him thoroughly.\n530,anetv_rZ8tVgFyY84,9805,The surgeon then rubs the back of fingers with hands. He then,The surgeon then rubs the back of fingers with hands.,He then,gold,grabs the vacuum and places it back in the blow dryer.,rubs the thumbs with the palm clasping thumb.,unrolls the polish from his face and a towel.,welds the glowing pan into the back of the bucket.\n531,anetv_N8nv95D4-pw,15879,A woman is in a gym talking. the woman,A woman is in a gym talking.,the woman,gold,begins scanning the muddy floor while washing and rinse the shoe and drain the cleaning.,is painting a set of metal bars using a tool.,demonstrates how to do an exercise with a step.,rides on a cellphone biking.\n532,anetv_z4qaGiWt-bo,14147,\"A team is on a field as a runner throws the ball, which the batter hits and is caught. The coach\",\"A team is on a field as a runner throws the ball, which the batter hits and is caught.\",The coach,gold,instructs the players as they continue the game.,talks more about the ball easily.,gets on the cart and quickly walks the court.,serves the ball to a ball running into a net close several players and hits it.\n533,anetv_sWtwatYMbX0,6633,Liquid is shown being poured into a glass and leads with a bartender mixing various liquids into a mixer. She then,Liquid is shown being poured into a glass and leads with a bartender mixing various liquids into a mixer.,She then,gold,mixes more liquors into a mixer and mixes it over by mixing it together.,mixes ingredients into the glass and pours it into a pan full of vodka.,shakes the mixer up and pours it into a glass while still speaking to the camera.,drills a circular glass in the glass and takes a sip from the order's cup and drink.\n534,anetv_sWtwatYMbX0,2444,A woman stands behind a bar. the woman,A woman stands behind a bar.,the woman,gold,stops talking and puts the bar down.,kneels on the bar laughing.,turns her ladies hands away.,waves and starts talking.\n535,anetv_sWtwatYMbX0,2446,The woman points at various items on the bar. the woman,The woman points at various items on the bar.,the woman,gold,holds up a mixer and begins to make a drink.,talks to the camera while continuing to fence.,talks as she irons weights on a table.,mixes the leafs in a large bowl filled with oil and zucchini.\n536,anetv_sWtwatYMbX0,2445,The woman waves and starts talking. the woman,The woman waves and starts talking.,the woman,gold,points at various items on the bar.,uses water to pick toys up in a bucket.,flips and walks around the wooden table.,shakes a bowl on the boy in front of the mirror.\n537,anetv_mmRpNwb0NZ0,2614,A woman is seen speaking to the camera as well as clips of her warming up on the floor. She,A woman is seen speaking to the camera as well as clips of her warming up on the floor.,She,gold,continues to speak and show more clips of her dancing as a ballerina around a room.,continues scrubbing her legs with one hand off while still speaking to the camera.,\"zooms out on the table, holding up various objects and holding a small bag.\",continues spinning on the machine and ends by jumping up and down on the machine.\n538,anetv_mmRpNwb0NZ0,14122,An introduction leads into a woman being interviewed by the camera and several shots of her warming up. More shots of her dancing,An introduction leads into a woman being interviewed by the camera and several shots of her warming up.,More shots of her dancing,gold,are shown doing various leaps and leg lifts while still speaking to the camera.,are shown as well as others pass by in the background.,are shown followed by a person turning off a shirt with her in her arms.,are shown as well as a man walking into frame and smiling into the camera.\n539,anetv_mmRpNwb0NZ0,2615,She continues to speak and show more clips of her dancing as a ballerina around a room. She,She continues to speak and show more clips of her dancing as a ballerina around a room.,She,gold,is shown on her butt as well as her dancing and speaking to the camera.,is speaking down to the camera.,'s shown dancing on stage while continuing to speak.,continues up and twirls his finger as she continues to rotate her legs and nails.\n540,anetv_mmRpNwb0NZ0,14123,More shots of her dancing are shown doing various leaps and leg lifts while still speaking to the camera. Shots of her dancing on stage,More shots of her dancing are shown doing various leaps and leg lifts while still speaking to the camera.,Shots of her dancing on stage,gold,appear out over the women with her and several spectators claps and cheering.,are shown and leads back into her on the dance floor.,are shown as well as several more people performing tricks in the water.,is shown before a woman speaking and smiling at the audience.\n541,lsmdc1018_Body_Of_Lies-80469,8449,\"Holding someone's phone, someone runs over to a small jet. Someone\",\"Holding someone's phone, someone runs over to a small jet.\",Someone,gold,\"takes a picture from a wires, and polishes it with a shiny mural.\",snaps her hand which left now she's on.,brings his foot down the carpet and dips.,gets off with a bag slung on his shoulder.\n542,lsmdc1018_Body_Of_Lies-80469,8448,\"At an airport, a hangar door opens. Holding someone's phone, someone\",\"At an airport, a hangar door opens.\",\"Holding someone's phone, someone\",gold,runs over to a small jet.,helps someone down the hill.,sits on her cell phone.,stares at the man's wife.\n543,anetv_fSUwyioi_ws,13198,A man is then shown standing in a large yard behind a small table with the cutting board on it and begins talking. A small triangular square,A man is then shown standing in a large yard behind a small table with the cutting board on it and begins talking.,A small triangular square,gold,appears to be shown of a small car with a dirt slowly are shown afterwards.,is seen put in the backyard and pauses and paints the tool while the camera captures his movements.,is then shown and placed in a pan of water and laid on a piece of folded up napkin.,is then placed next to the ceiling that leads into the man sitting on the table with the baby with a cracked smile.\n544,anetv_fSUwyioi_ws,13197,A small tomato is cut in half on the counter and a large knife begins cutting slices. A man,A small tomato is cut in half on the counter and a large knife begins cutting slices.,A man,gold,sits on an ornate chair with the rolling knife in the middle of the cutting block of the campfire.,picks a razor on the cutting board and begins stacked it up.,is then shown standing in a large yard behind a small table with the cutting board on it and begins talking.,brings a knife to the animal and then extends a knife to a bow to cuts it close.\n545,anetv_fSUwyioi_ws,654,He puts a piece of white wood into a pan of water. He then,He puts a piece of white wood into a pan of water.,He then,gold,\"demonstrates how to trim the sward by adding seasonings to it, who continues mixing the leaves.\",picks up a pan and paint on a stove.,sharpens his knife with a knife sharpener.,begins to stir something with his spoon.\n546,anetv_fSUwyioi_ws,13199,A small triangular square is then shown and placed in a pan of water and laid on a piece of folded up napkin. The knife,A small triangular square is then shown and placed in a pan of water and laid on a piece of folded up napkin.,The knife,gold,is placed right on the right and cuts the holes in the bag.,stops fixing the table and tells how it will be done.,then begins to hang into the end.,is then moved back and forth across the block and then over a piece of kitchen steel.\n547,anetv_Xd_xJnlUHm0,18953,\"He removes things from drawers, like lip gloss and puts it on for the camera. He\",\"He removes things from drawers, like lip gloss and puts it on for the camera.\",He,gold,applies messy makeup and poses for the camera.,glasses approaches the ends of.,is a teenager at off.,shows two images forming a chuckle.\n548,anetv_Xd_xJnlUHm0,18952,A young boy is talking to the camera in his bedroom. He,A young boy is talking to the camera in his bedroom.,He,gold,is in a room practicing and drum on front a drum set.,smiles at the camera as he jumps into the pool.,plays a guitar in the foreground.,\"removes things from drawers, like lip gloss and puts it on for the camera.\"\n549,anetv_62h9hnNTKWM,5020,Then she does some back hand springs on the horse bar. she,Then she does some back hand springs on the horse bar.,she,gold,stops playing and talks back the camera.,\"does various flips on the mat, after a break in her arms stands up and holds her arms up.\",swiftly jumps on the horse bar while maintaining complete control over body and balance.,moves her hips matter of times as she jumps off her feet before her start - dancing table.\n550,anetv_62h9hnNTKWM,5021,She swiftly jumps on the horse bar while maintaining complete control over body and balance. She,She swiftly jumps on the horse bar while maintaining complete control over body and balance.,She,gold,flips off the beam several times.,\"man successfully lays her motion over the sand, then jumps over the bench and faces the judges.\",come down the slopes as she does a heavy flip in the air.,\"does a final back flip and a front flip and then, gets off the horse bar.\"\n551,anetv_62h9hnNTKWM,5022,\"She does a final back flip and a front flip and then, gets off the horse bar. The spectators\",\"She does a final back flip and a front flip and then, gets off the horse bar.\",The spectators,gold,spring out and look up in their medals.,cheer for her as she walks away.,\"is shown with her, more shots of people competing are shown in slow motion.\",troop for her.\n552,anetv_62h9hnNTKWM,5019,She jumps right onto the horse bar and does some front and back flips. Then she,She jumps right onto the horse bar and does some front and back flips.,Then she,gold,does some back hand springs on the horse bar.,jumps onto the balance beam with her arms in the air.,\"does several flips, flips, dives over the bar several times.\",walks away and vaults backward several times as she turns on her back and skateboard.\n553,anetv_62h9hnNTKWM,5018,\"Alexandra Raisman from Massachusetts is seen wearing purple leotards, getting ready to do gymnastics on the horse bar. She\",\"Alexandra Raisman from Massachusetts is seen wearing purple leotards, getting ready to do gymnastics on the horse bar.\",She,gold,jumps right onto the horse bar and does some front and back flips.,takes two hoops out of the bars and balances on numerous raketball areas.,is up on a beam with a baton using her legs to spin around.,jumps off a bike by jumping and touching it to a large gym.\n554,lsmdc0005_Chinatown-47957,9009,\"Someone nods, walks on in. Someone\",\"Someone nods, walks on in.\",Someone,gold,\"walks over to her and again flashes a warm, sympathetic smile.\",goes to another bulletin ship where someone square in the early decor.,\", suddenly, he bounces up someone's head.\",disappears from view before people walk past them and illuminates the boys' apartment.\n555,lsmdc0005_Chinatown-47957,9008,Someone rises when someone enters. Someone,Someone rises when someone enters.,Someone,gold,enters the apartment and immediately raises the doors open.,gazes anxiously at the open phone.,steps up on the cab and looks intently at someone.,\"nods, walks on in.\"\n556,lsmdc0005_Chinatown-47957,9006,He is now walking him past someone who pointedly averts her gaze. He,He is now walking him past someone who pointedly averts her gaze.,He,gold,\"shrugs someone's hand, then glares at a doctor some figurines.\",throws an arm around curly and flashes a dazzling smile.,takes down her slinks and gloves.,\"nods, is at it, expected a cloak from, without breaking her expression.\"\n557,lsmdc0005_Chinatown-47957,9007,He shuts the door on him and the smile disappears. Someone,He shuts the door on him and the smile disappears.,Someone,gold,leans on with his elbow raised.,gives a portico nod.,looks stunned as he leaves.,rises when someone enters.\n558,anetv_BbQ39yhaC54,2497,He talks about how to pose and swing the racquet. He,He talks about how to pose and swing the racquet.,He,gold,demonstrates by hitting the ball back and forth against the wall.,falls with the basketball practice for a towel.,goes to to both crowd and only the other team go to look then get closer to him.,throws the ball to the ground then immediately tries to pick his leg.\n559,anetv_BbQ39yhaC54,2496,A man is talking in a racquetball court. He,A man is talking in a racquetball court.,He,gold,is trying to solve a rubik.,rolls into the living room and grabs a canister.,talks about how to pose and swing the racquet.,is explaining about technique and the pie and rules.\n560,anetv_Hs1fGDcU6Js,18322,The man then flips over and begins doing leg exercises. His,The man then flips over and begins doing leg exercises.,His,gold,\"drops over to bar, swinging up and down, and ends up running down.\",continues moving around and pulling back and looking back while speaking to the camera.,dips the beam into his arms and begins spinning around.,moves his body all around demonstrating proper exercises while still looking over and speaking to the camera.\n561,anetv_Hs1fGDcU6Js,18321,A man is seen kneeling on the floor and speaking to the camera. The man then,A man is seen kneeling on the floor and speaking to the camera.,The man then,gold,flips over and begins doing leg exercises.,continues throwing all around the room creating an object off into the distance.,throws powder into a dog while dipping out into a bucket and throws it.,begins putting plaster all around the fence while kneeling by the end.\n562,anetv_aoIGBV31OT4,4488,The person rides all along the water while the camera captures his movements. More people,The person rides all along the water while the camera captures his movements.,More people,gold,speak as people continue rafting around the pit.,are seen riding around as well as falling down in the water.,are seen riding down the hill one last time as well as ending and well clapping.,speak to the camera as well as washing the soap around them and eventually washes and speaking to the camera.\n563,anetv_aoIGBV31OT4,222,A man sails on a sailboard on front the mountains. The man,A man sails on a sailboard on front the mountains.,The man,gold,takes out his hand and draws a hose.,squats the river several times.,does something and a man climbing on the wall.,meets also a person sailing in the ocean.\n564,anetv_aoIGBV31OT4,223,\"The man meets also a person sailing in the ocean. The man falls from his sailboard, but he\",The man meets also a person sailing in the ocean.,\"The man falls from his sailboard, but he\",gold,manages to meet two men as skis.,surfs lost in the water.,immediately gets up and continue sailing.,does then sit on the sand beside a boat.\n565,anetv_aoIGBV31OT4,224,\"The man falls from his sailboard, but he immediately gets up and continue sailing. The man\",\"The man falls from his sailboard, but he immediately gets up and continue sailing.\",The man,gold,with blue boots is sitting behind trophy once more and where he is seen walking and turning from himself to someone.,passes on front sailor when sailing in the sea.,approaches the end and they get off the plane.,takes a higher street from others and the crowd claps for him.\n566,anetv_aoIGBV31OT4,4487,A person is seen riding a surf board along the water with a sail. The person,A person is seen riding a surf board along the water with a sail.,The person,gold,rides all along the water while the camera captures his movements.,continues moving around the water while others watch on the side.,goes along some water current on the side and lifts the paddle until the people finish.,continues riding along the water in tubes while speaking to the camera and leading a group of people in the water.\n567,anetv_aoIGBV31OT4,225,\"The man passes on front sailor when sailing in the sea. Then, he\",The man passes on front sailor when sailing in the sea.,\"Then, he\",gold,does several big flips on the board and wave in slow motion.,\"finishes the rope and jumps through the waters, landing on the river.\",meets several people sailing in the ocean.,jumps rope and gets on the boat.\n568,anetv_aj2cioE_yG0,1577,The man plays a bit followed by holding up a beer can and presenting it to the camera. The man then,The man plays a bit followed by holding up a beer can and presenting it to the camera.,The man then,gold,demonstrates two more shots.,slips it into place in a shaker and holds it out while the other man continues playing.,continues to play while the camera zooms in on the table.,drinks the rest of the glass while the bartender smiles to the camera.\n569,anetv_aj2cioE_yG0,1576,A man is seen wearing a red shirt and standing next to a fooseball table. The man,A man is seen wearing a red shirt and standing next to a fooseball table.,The man,gold,resumes hitting it with the racket and throws it around.,plays a bit followed by holding up a beer can and presenting it to the camera.,sits up and returns the spoon to left in the goal.,in black goes inside and removes the object out of his palm.\n570,lsmdc3018_CINDERELLA_MAN-7908,959,Someone gives her the money. He,Someone gives her the money.,He,gold,takes a phone receiver.,\"strokes her hair, steps back, and folds his arms with a smile.\",someone follows to someone.,\"fishes her glasses, then her stare after the businessman.\"\n571,lsmdc3018_CINDERELLA_MAN-7908,958,\"Pacing with aimless steps, someone smiles over a wad of bills. Someone\",\"Pacing with aimless steps, someone smiles over a wad of bills.\",Someone,gold,gives her the money.,stares at her for a moment.,\"takes a few paces, then leaves his seat.\",reads a note at a foggy street.\n572,anetv_CYj2ltxPNDo,19283,The man continues twirling and flipping on the bars for his gymnastic routine while audience members cheer loudly. The video,The man continues twirling and flipping on the bars for his gymnastic routine while audience members cheer loudly.,The video,gold,ends while backing away.,slows down and shows the highlights of the routine in slow motion.,continues to watch the man playing the drums.,ends with text across the screen at the end.\n573,anetv_CYj2ltxPNDo,19282,A foreign commentator comments on his routine while he flips himself through the air. The man,A foreign commentator comments on his routine while he flips himself through the air.,The man,gold,continues twirling and flipping on the bars for his gymnastic routine while audience members cheer loudly.,does a hand stand and starts jumping across the pole and landing backward into a very horizontal mat.,\"turns and straightening while looking for the camera, then holding back up with other arm and looking around.\",\"stops, turns around from a stiff look, brings the book shut and hurls himself into the screen.\"\n574,anetv_CYj2ltxPNDo,19281,An athlete stands eagerly awaiting his turn while the judges prepare for his routine. A foreign commentator,An athlete stands eagerly awaiting his turn while the judges prepare for his routine.,A foreign commentator,gold,titled title appears on the screen.,comments on his routine while he flips himself through the air.,takes a few flips.,lays up on the screen.\n575,anetv_xKDHIyd_tWA,16965,\"At one point, another woman in the background runs across the screen while jump roping. The video\",\"At one point, another woman in the background runs across the screen while jump roping.\",The video,gold,ends with a title screen.,continues with several clips of men riding bikes around a vehicle one of them appears.,is over as the woman is demonstrating how to do a curling exercise in many different locations.,ends with both women speaking to the camera and a final title sequence.\n576,anetv_xKDHIyd_tWA,16963,A woman and child are in a park with a jump rope. The woman,A woman and child are in a park with a jump rope.,The woman,gold,stands on the mat and lets the child fall.,begins to demonstrate how to use the jump rope while the child attempts to copy her.,turn and sit up and licking herself.,does a back flip at the hopscotch.\n577,anetv_xKDHIyd_tWA,16964,\"The woman begins to demonstrate how to use the jump rope while the child attempts to copy her. At one point, another woman in the background\",The woman begins to demonstrate how to use the jump rope while the child attempts to copy her.,\"At one point, another woman in the background\",gold,comes and gets pole shots of his head as the cop speaks to the camera.,does many jump tips and then springs on the board and turns to her final portrait of the bike just doing a handstand.,talks as the entire guard states her finger tips as well.,runs across the screen while jump roping.\n578,anetv_xKDHIyd_tWA,16962,The video begins with a title slide. A woman and child,The video begins with a title slide.,A woman and child,gold,are balancing at a set of hopscotch on the ground.,take their awards to show how they cut the grass while bouncing and poking.,are in a park with a jump rope.,are shown hit while text is heard.\n579,anetv_JW0VZ5NoC8A,10473,\"The man and woman are doing tricks with billiard balls by using different balls or triangle. The woman is lying on the pool table and the man hit the ball and bounced on the woman's arms and leg, they also\",The man and woman are doing tricks with billiard balls by using different balls or triangle.,\"The woman is lying on the pool table and the man hit the ball and bounced on the woman's arms and leg, they also\",gold,hit the ball around the pool and came down onto the cup.,have a good game and stare and lost in the pool.,kissing as the both of them hit the balls.,hammer a pinata using it to hit the pinata.\n580,anetv_JW0VZ5NoC8A,10472,\"The man hit the ball and went in the hole, on the opposite side the woman hit the ball and went in the hole. The man and woman\",\"The man hit the ball and went in the hole, on the opposite side the woman hit the ball and went in the hole.\",The man and woman,gold,are doing tricks with billiard balls by using different balls or triangle.,\"is just scoring more clips, fast and really hard a man made a shot.\",hit a yellow ball and jumped onto the floor and hit the ball back and forth.,threw a ball in the air at the same time and play back and forth.\n581,anetv_JW0VZ5NoC8A,1661,A close up of a pool table is shown with a person standing next to it. Several clips,A close up of a pool table is shown with a person standing next to it.,Several clips,gold,are shown of the person throwing a potato into a bucket.,and players running down the concrete followed by a man playing a game with his stick.,are then shown of people playing pool all around the table.,are shown of kids walking up on a steps to the camera.\n582,anetv_JW0VZ5NoC8A,1662,Several clips are then shown of people playing pool all around the table. People,Several clips are then shown of people playing pool all around the table.,People,gold,are using tennis rackets to use up and fourth playing shuffleboard.,\"perform tricks while laying on the table, doing tricks, as well as kissing on one another.\",move around and hit the ball back and fourth on the field tennis racket.,are then seen running around into the water and doing swings around throwing balls.\n583,anetv_cCYLiE1fiEo,6131,They continue stepping on the mat in the new shoes. They,They continue stepping on the mat in the new shoes.,They,gold,take those shoes off and walk away.,moves to one side then begins to drop down across the table surface.,in an audience cheer as they do a dance moves and t - sync.,continue to cross the ring like it were the index of the team.\n584,anetv_cCYLiE1fiEo,6129,A person steps on a tan mat several times. They,A person steps on a tan mat several times.,They,gold,then grab each bar on the pads.,take their shoes off and put a different pair of shoes on.,\"walk down the side, on the concrete.\",are shown in different sports.\n585,anetv_cCYLiE1fiEo,6130,They take their shoes off and put a different pair of shoes on. They,They take their shoes off and put a different pair of shoes on.,They,gold,continue stepping on the mat in the new shoes.,return to the beach playing 08.,are then shown cleaning the clothes on the floor and a man dressed.,continue to kick and run and escape with black shoes.\n586,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16558,\"Someone pats his clothing, searching for his papers. Someone\",\"Someone pats his clothing, searching for his papers.\",Someone,gold,glares at him as someone waves his cell.,\"looks up pensively, then opens the box to climb out of the car.\",laughs and pulls out a newspaper.,sets him safely on the table.\n587,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16549,\"The Woman walks away, leaving someone alone in the crowd. Someone\",\"The Woman walks away, leaving someone alone in the crowd.\",Someone,gold,unwraps the bottle for someone and snatches it from her head.,shoulders his way through the mob toward someone.,stands tensely led for his opponent.,takes the phone out of her breast pocket.\n588,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16559,Someone shows the newspaper to the Second Man. Someone,Someone shows the newspaper to the Second Man.,Someone,gold,watches in an observed gaze.,\"gently lifts the cans from the cabinet, shows off the men working their books.\",\"puts the newspaper in front of the second man's face, then punches him through the newspaper.\",\"takes out a envelope, as he opens his other arm.\"\n589,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16545,\"Someone disembarks from the train along with the other passengers, a cross - section of arabs and tusks. A Man in the crowd\",\"Someone disembarks from the train along with the other passengers, a cross - section of arabs and tusks.\",A Man in the crowd,gold,holds a khaki flag that lies in overalls.,is doggy by the bike though he does n't move.,hovers the instrument slowly over their heads.,holds out a cup of water to someone.\n590,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16552,Someone searches in his coat pocket for the map as a sinister man approaches. Someone,Someone searches in his coat pocket for the map as a sinister man approaches.,Someone,gold,\"turns around with a hose, past someone.\",puts the map back in his pocket.,slides a stack of tools onto a nearby crate.,watches the soldier leave.\n591,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16551,\"They meet and hug, then begin to walk. Someone\",\"They meet and hug, then begin to walk.\",Someone,gold,follows someone as they walk towards home.,\"reaches out, pulls open its flap, and faces him.\",looks up at him and gazes calmly at him.,searches in his coat pocket for the map as a sinister man approaches.\n592,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16553,Someone puts the map back in his pocket. The Sinister Man,Someone puts the map back in his pocket.,The Sinister Man,gold,pulls him to his fellow's leg and stands up at its edge.,holds up the flame of someone's amber lit machine.,clicks his heels and bows quickly.,takes a small bite of his mouth.\n593,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16557,Someone puts someone's luggage down and glances at someone. Someone,Someone puts someone's luggage down and glances at someone.,Someone,gold,gets out of bed and sees someone lying with his back to someone.,smiles down at the inside holding his gun.,purses his lips as he dips beneath them.,\"pats his clothing, searching for his papers.\"\n594,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16555,Someone takes off his hat. The man,Someone takes off his hat.,The man,gold,settles on the dresser and picks up a pocket lighter.,drinks from a can of perfume fluid.,headbutts someone the open door of the church.,turns and joins a second man.\n595,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16550,Someone shoulders his way through the mob toward someone. They,Someone shoulders his way through the mob toward someone.,They,gold,cruise into the airport.,rush down to someone.,\"meet and hug, then begin to walk.\",scratch desperately with his gun.\n596,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16554,The Sinister Man clicks his heels and bows quickly. Someone,The Sinister Man clicks his heels and bows quickly.,Someone,gold,\"replaces the loose notebook, stubborn on someone's shelf.\",levels his neck on the dead body.,rises back from them and turns to them.,takes off his hat.\n597,lsmdc0050_Indiana_Jones_and_the_last_crusade-70344,16547,Someone continues through the crowd past various street vendors. A Woman,Someone continues through the crowd past various street vendors.,A Woman,gold,picks up a briefcase.,stops in front of the train north and finds several different sets of paintball guns on clothes.,pouts man with his usual enthusiasm delight.,holds a chicken out to him.\n598,lsmdc3018_CINDERELLA_MAN-7808,1332,Someone rises from his chair. Someone's tear - filled eyes,Someone rises from his chair.,Someone's tear - filled eyes,gold,displaying someone boy.,roll in on someone.,dart away from someone.,appear onto someone's advanced round wrathfully.\n599,lsmdc3018_CINDERELLA_MAN-7808,1330,\"Someone glances around the room then heads toward someone. Passing framed pictures and a mirror, he\",Someone glances around the room then heads toward someone.,\"Passing framed pictures and a mirror, he\",gold,lifts his head up in a nearby toast.,reaches his old manager at the desk.,slides on a bed beside a young man.,shrugs one of the husband's back.\n600,lsmdc3018_CINDERELLA_MAN-7808,1333,Someone reaches into his pocket. Someone,Someone reaches into his pocket.,Someone,gold,\"one elbow on ground table, and on someone's face with doe eyes, as he appears and sashays off of the backseat.\",places the man's hands on his table as he extends his hand.,\"leaps into the trash, but a little group of guards timber him.\",sets down their luggage.\n601,lsmdc3018_CINDERELLA_MAN-7808,1334,\"Someone sets down their luggage. In the bedroom, someone\",Someone sets down their luggage.,\"In the bedroom, someone\",gold,looks into the neighbor's apartment.,wipes from under a lamp and looks up.,jumps on a bed.,jogs out through kitchen doors.\n602,lsmdc3018_CINDERELLA_MAN-7808,1322,An older gentleman adds a few coins. He,An older gentleman adds a few coins.,He,gold,fills out a boy's pink sack and pours it out onto the newly made page.,taps the pie in both hands.,puts it down and approaches.,looks at two more gentlemen.\n603,lsmdc3018_CINDERELLA_MAN-7808,1321,The hefty man places a bill in someone's cap. An older gentleman,The hefty man places a bill in someone's cap.,An older gentleman,gold,adds a few coins.,is talking on someone's phone.,pats him on the shoulder.,drops someone's bottle of perfume.\n604,lsmdc3018_CINDERELLA_MAN-7808,1320,He reaches into his pocket and signals for someone to step forward. The hefty man,He reaches into his pocket and signals for someone to step forward.,The hefty man,gold,places a bill in someone's cap.,looks up from his datebook.,clenches his jaw as the horn breaks.,swaggers up and follows someone out.\n605,lsmdc3018_CINDERELLA_MAN-7808,1331,\"Passing framed pictures and a mirror, he reaches his old manager at the desk. Someone\",\"Passing framed pictures and a mirror, he reaches his old manager at the desk.\",Someone,gold,closes the door and climbs out.,leans on the steering wheel to make sure it's dried.,rises from his chair.,puts on fighting glasses as he moves in.\n606,lsmdc3018_CINDERELLA_MAN-7808,1327,The promoter reaches into his pocket then lets a handful of coins slide into the hat. Another gentleman,The promoter reaches into his pocket then lets a handful of coins slide into the hat.,Another gentleman,gold,goes to a door.,stands in a tall chair.,is sheepishly at the bar.,drops in a few bills.\n607,lsmdc3018_CINDERELLA_MAN-7808,1319,A hefty patron looks around the room then gets up. He,A hefty patron looks around the room then gets up.,He,gold,hands his glasses away to his friend.,notices himself drunk through a bottle of beer.,reaches into his pocket and signals for someone to step forward.,\"turns to someone, taking his foot up, patting him on the leg.\"\n608,lsmdc3018_CINDERELLA_MAN-7808,1323,He looks at two more gentlemen. They,He looks at two more gentlemen.,They,gold,find someone's parents waiting by someone's car.,turn their heads and walk away.,are sharing a conversation with a man.,roll over and he gives the thumbs up.\n609,lsmdc3018_CINDERELLA_MAN-7808,1337,\"He shifts his attention to someone playing with a doll. Bright sun, several families\",He shifts his attention to someone playing with a doll.,\"Bright sun, several families\",gold,take in their classical gowns.,gather around a birthday cake.,\"adorn the huge lounge, in shade.\",are in moving blankets.\n610,lsmdc3018_CINDERELLA_MAN-7808,1329,The decommissioned boxer meets his gaze. Someone,The decommissioned boxer meets his gaze.,Someone,gold,glances around the room then heads toward someone.,can't see her.,\"closes her eyes, shakes her head.\",pushes on the brakes as he opens the passenger door.\n611,lsmdc3018_CINDERELLA_MAN-7808,1335,\"In the bedroom, someone jumps on a bed. Someone\",\"In the bedroom, someone jumps on a bed.\",Someone,gold,\"approaches the elevator, reaches for the handle, and opens the door for him.\",\"straightens up and raises his arms above the tank's head, shaking with sweat.\",takes a seat at the kitchen table and watches his boys.,lowers both hands in the sink.\n612,lsmdc3018_CINDERELLA_MAN-7808,1317,\"With tears in his eyes, someone swallows. Keeping still, the businessmen\",\"With tears in his eyes, someone swallows.\",\"Keeping still, the businessmen\",gold,look at each other forlornly.,eye the man standing before them.,look at the others.,begin to look at each other.\n613,lsmdc3018_CINDERELLA_MAN-7808,1324,\"They turn their heads and walk away. Seated at a desk, someone\",They turn their heads and walk away.,\"Seated at a desk, someone\",gold,looks down at the reception player.,scans the one magazine.,places papers open across his mouth.,gazes off and rubs his lips.\n614,lsmdc3018_CINDERELLA_MAN-7808,1318,\"Keeping still, the businessmen eye the man standing before them. A hefty patron\",\"Keeping still, the businessmen eye the man standing before them.\",A hefty patron,gold,pushes a small wave.,looks around the room then gets up.,knocks him down break.,approaches with a palm box.\n615,lsmdc3073_THE_GUILT_TRIP-34657,6669,\"A receptionist shows someone into a conference room, where three executives wait around a large table. The executives\",\"A receptionist shows someone into a conference room, where three executives wait around a large table.\",The executives,gold,are in a shirt on the floor.,stare at him blankly.,shine their faces as they run.,\"hover in the game, and the president takes off his chair.\"\n616,anetv_o-aSCtwxsTw,12546,It does many tricks in the air. It,It does many tricks in the air.,It,gold,\", choppy waters are shown ahead.\",spins in the air rapidly.,fires a blast through the wall.,\", they are chatting.\"\n617,anetv_o-aSCtwxsTw,14391,The kite swirls in various motions all around the sky. The kite,The kite swirls in various motions all around the sky.,The kite,gold,continues moving while people underneath look up and watch.,flies well into the water sky.,begins to swirl around underwater laboriously.,is seen blowing the wind spinning off of it.\n618,anetv_o-aSCtwxsTw,12544,A kite is being flown in a desert. Several people,A kite is being flown in a desert.,Several people,gold,are on the water rafting.,are playing in the park.,are shown inside a pool with sun product.,are standing around watching it.\n619,anetv_o-aSCtwxsTw,12545,Several people are standing around watching it. It,Several people are standing around watching it.,It,gold,stands people watching them from across the road.,is a close up of a pumpkin.,\"come on into the bull, fumbles and running up, away from the enemy.\",does many tricks in the air.\n620,anetv_o-aSCtwxsTw,14390,A large kite is seen flying in he sky with a small group of people underneath. The kite,A large kite is seen flying in he sky with a small group of people underneath.,The kite,gold,walked up the snowy streets from the sky of the mountain.,pans up to the side and leads.,is being held up in front of the target pointing out a man.,swirls in various motions all around the sky.\n621,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10022,2484,\"Buckbeak flies people back to the school. Swooping over Hogwarts Castle, the hippogriff\",Buckbeak flies people back to the school.,\"Swooping over Hogwarts Castle, the hippogriff\",gold,glides down towards the dark tower where someone is imprisoned.,ducks under the last bird.,grabs a three - carved cross and vanishes partway down the chimney.,roll down the fuller bread and curl into the sunshine.\n622,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10022,2485,\"Swooping over Hogwarts Castle, the hippogriff glides down towards the dark tower where someone is imprisoned. Someone\",\"Swooping over Hogwarts Castle, the hippogriff glides down towards the dark tower where someone is imprisoned.\",Someone,gold,\"jumps up from her bunk, then finds a photo of herself in the nude.\",shows a hook through someone.,draws from the utility tree.,opens the barred door of his cell.\n623,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10022,2487,\"Buckbeak carries people away from the dark tower. Beating its huge wings, the hippogriff\",Buckbeak carries people away from the dark tower.,\"Beating its huge wings, the hippogriff\",gold,grabs the fork and moves them to the ground.,slides up behind the others.,swoops down towards the ground.,ticks a bony oars in the aisle.\n624,anetv_l9HcwQPNvWo,4666,A man sits down with a harmonica on his neck and plays a guitar. He,A man sits down with a harmonica on his neck and plays a guitar.,He,gold,continues to play guitar while people play instruments behind him.,\"plays a guitar and adjusts his guitar, after he plays a harmonica and the girl gently tambourine.\",starts playing the harmonica while still playing the guitar.,lines the man with a stick and talks to the camera.\n625,anetv_l9HcwQPNvWo,16026,He plays the harmonica while playing the guitar. He,He plays the harmonica while playing the guitar.,He,gold,continues to sing as he continues to play the saxophone.,is being concentrated on the man singing as he strums the song.,finishes his song and finishes a song on the guitar.,stops leans over and turns off the camera.\n626,anetv_l9HcwQPNvWo,16025,He thumps his hand on the guitar to make a beat. He,He thumps his hand on the guitar to make a beat.,He,gold,plays the harmonica while playing the guitar.,gazes at the end of the song.,tries to get more and moves the drum between the blades.,gazes through bright glasses.\n627,anetv_l9HcwQPNvWo,16024,A man sitting outside a house plays a song while playing the guitar and harmonica at the same time. He,A man sitting outside a house plays a song while playing the guitar and harmonica at the same time.,He,gold,is a little wet then the singer stops playing and the male begins playing.,moves a bit during the song and still singing and plays the violin.,drums continuously around others and ends by smiling to the camera.,thumps his hand on the guitar to make a beat.\n628,anetv_l9HcwQPNvWo,4667,He starts playing the harmonica while still playing the guitar. He,He starts playing the harmonica while still playing the guitar.,He,gold,\"finishes playing the instrument, smiling, and still plays the piano.\",finishes playing and leans over in front of him.,continues to play as he plays.,plays it and it fades.\n629,anetv_Y9wrTRY3mUI,6072,A group of men and a woman talk to a camera while showcasing fish caught and live fishing in ice holes on a snow and ice covered terrain. Several people,A group of men and a woman talk to a camera while showcasing fish caught and live fishing in ice holes on a snow and ice covered terrain.,Several people,gold,appear in the lake and some are gear cuts around and are riding boats up the mountain of barefoot in the morning.,fish in ice holes with children nearby while other drive across the ice terrain.,\"are visible in the sky drives past and rough aspects thing water, moving and together.\",ride the intertubes around an cavern with the filming.\n630,anetv_Y9wrTRY3mUI,6071,\"A group of people, children and families live, travel, and ice fish on a vast ice and snow covered piece of land. A group of men and a woman\",\"A group of people, children and families live, travel, and ice fish on a vast ice and snow covered piece of land.\",A group of men and a woman,gold,\"sit in small photographs together and they float, and each cheeks curtsey and shake.\",carry a cattle rafting then they pass by holding a large baby that is in the river recovering and doing a standing toddler.,talk to a camera while showcasing fish caught and live fishing in ice holes on a snow and ice covered terrain.,marketing scurry around on the beach.\n631,lsmdc3062_SORCERERS_APPRENTICE-30764,308,\"On the griddle, pentagrams sear themselves into the tops of two burgers. The cook\",\"On the griddle, pentagrams sear themselves into the tops of two burgers.\",The cook,gold,buys salt and stir.,trips someone and rubs her ankle - hard face.,hang on the tomato and rod.,looks over his shoulder at the customer window.\n632,lsmdc3062_SORCERERS_APPRENTICE-30764,307,\"He notices someone wearing an identical pair. Now, a neon sign over a burger stand\",He notices someone wearing an identical pair.,\"Now, a neon sign over a burger stand\",gold,\"reads, snickers and crisp and someone uncorks a liquor bottle.\",\"reads, the corner.\",burns a bowl with some sprinkles.,\"juts up to the walls, the national police officer arrives at a table for a school.\"\n633,lsmdc3062_SORCERERS_APPRENTICE-30764,306,He tosses shoes to someone. He,He tosses shoes to someone.,He,gold,cocks them as someone leaves.,notices someone wearing an identical pair.,turns out of elevator and hall.,winds the handcuffs out of the trunk.\n634,lsmdc0017_Pianist-56200,13008,\"The Jewish workers start to assemble on the site in haphazard ranks as an ss Captain strides in. The ss Captain, with much jollity and jokes,\",The Jewish workers start to assemble on the site in haphazard ranks as an ss Captain strides in.,\"The ss Captain, with much jollity and jokes,\",gold,\"rushes over, turning the crowd off.\",checks a document over someone's shoulder when the cop pushes his hand to a window.,\"hops up on to scaffolding and stands, beaming broadly, surveying the workers.\",\"looks up at the captain, who's coolly taking the ring out of his pocket.\"\n635,lsmdc0017_Pianist-56200,13006,\"The store, a wooden hut, contains wood, nails, tools, paint, metal brackets. Someone\",\"The store, a wooden hut, contains wood, nails, tools, paint, metal brackets.\",Someone,gold,\"hangs over the retreating back door of someone's house, rolling out, and moves his attention to the shelving unit.\",\"continues a sunny, round witch with a terra raised racetrack.\",is burning in place as the houses continue to burn.,makes a record in a ledger of the tools each worker takes out on the site.\n636,anetv_P2hrv6QzDPI,17782,Two more men walk into frame and all begin playing instruments together. The,Two more men walk into frame and all begin playing instruments together.,The,gold,continue playing with one another.,continue playing with their sticks with other people riding around the cars.,hold their hands up and take a picture.,play together with kayaks into a bucket while looking down into the water.\n637,anetv_P2hrv6QzDPI,17781,A man is seen playing an instrument when another man walks in playing. Two more men walk into frame and all,A man is seen playing an instrument when another man walks in playing.,Two more men walk into frame and all,gold,begin playing instruments together.,close together at a table.,run into the camera frame.,are dancing together moving around the room.\n638,anetv_AEer099-yUM,6763,She throws several darts at the board. She,She throws several darts at the board.,She,gold,flings a puck far away from his opponent.,fit into a yellow yellow pleasant black shirt.,flips the board into the air then shoots darts at her breasts.,throws darts in slow motion.\n639,anetv_AEer099-yUM,6762,She is throwing darts at a board. She,She is throwing darts at a board.,She,gold,is throwing darts at bowling pins.,spins a hoop around several times.,throws several darts at the board.,hits a bag over and over.\n640,anetv_AEer099-yUM,6761,A woman stands in a red dress. She,A woman stands in a red dress.,She,gold,and she do a ballet thing at the end.,\"notices a mirror in her head, next to a mirror to the camera.\",walks and walks back into a covered pool.,is throwing darts at a board.\n641,anetv_dFVX_2UQ2WY,14501,\"A woman sits on front a red shoe. Then, the woman\",A woman sits on front a red shoe.,\"Then, the woman\",gold,is polishing a skirt.,talks a toothbrush and brushes the red shoe.,applies wall paper with several parts of it.,put a piece of polish on the wheelbarrow.\n642,anetv_dFVX_2UQ2WY,14502,\"Then, the woman talks a toothbrush and brushes the red shoe. Next, the woman\",\"Then, the woman talks a toothbrush and brushes the red shoe.\",\"Next, the woman\",gold,shows them the venom and shows how you make appear to create a colored color change.,puts the shoe on the table and continues talking.,combs the cat brown hair to fit plaster in the tub.,holds the brush on the paw then sharpen it on the sink.\n643,anetv_dFVX_2UQ2WY,8587,The woman grabs the toothbrush and cleans the heel. woman,The woman grabs the toothbrush and cleans the heel.,woman,gold,cleans the face with white paint.,is showing how to clean a high heel with a toothbrush.,extend some coats using the sticks.,rinses and washes the snow in water.\n644,anetv_dFVX_2UQ2WY,8586,Woman is standing in front of a table with red boots and a toothbrush in front. the woman,Woman is standing in front of a table with red boots and a toothbrush in front.,the woman,gold,is doing smoking cigarettes inside the room.,puts a straw with her shoe.,grabs the toothbrush and cleans the heel.,shows how to rub on the roller.\n645,lsmdc0011_Gandhi-52931,19453,\"Someone hesitates, and then he sits, holding someone's hand in his lap. He\",\"Someone hesitates, and then he sits, holding someone's hand in his lap.\",He,gold,glances over her shoulder.,playfully sucks in a breath.,looks across at someone and nods for her to go.,eases ahead when someone sees the train leaving.\n646,lsmdc0011_Gandhi-52931,19454,He looks across at someone and nods for her to go. Someone,He looks across at someone and nods for her to go.,Someone,gold,shoves the card in his pocket.,bites her lip and someone opens the lacing.,\"smiles weakly, gives someone a last little rub of farewell and stands.\",\"approaches the one on the way, who head mounted.\"\n647,lsmdc0011_Gandhi-52931,19455,\"Someone smiles weakly, gives someone a last little rub of farewell and stands. Someone\",\"Someone smiles weakly, gives someone a last little rub of farewell and stands.\",Someone,gold,\"stands, letting someone pass before him and do down the corridor with someone.\",studies someone's smooth drawing.,turns from side to side of the ship.,\"skids to a stop outside a bright wooden pedestal, featuring a young woman and her daughter in a deathly pale face.\"\n648,lsmdc3051_NANNY_MCPHEE_RETURNS-24546,5796,He produces a candy bar. Someone,He produces a candy bar.,Someone,gold,shuts the door behind her.,\", he replaces a chart.\",eats the last bite and tosses the wrapper at him.,notices unsteady shimmering lines drawn on someone's finger.\n649,lsmdc3051_NANNY_MCPHEE_RETURNS-24546,5795,\"In yellow checked knickerbockers, someone leans foppishly on the car. He\",\"In yellow checked knickerbockers, someone leans foppishly on the car.\",He,gold,rubs his knuckles on the desk.,puts apart the glass wheels.,finds someone out on his bike.,produces a candy bar.\n650,lsmdc0016_O_Brother_Where_Art_Thou-55721,13382,A wall of water is crashing through the hollow. The cabin itself is ripped away; the Soggy Bottom Boys are knocked off their feet and all,A wall of water is crashing through the hollow.,The cabin itself is ripped away; the Soggy Bottom Boys are knocked off their feet and all,gold,burst through the bodies in shredded ribs.,is noise and confusion.,are gathering in iron anchors.,emptied into the steaming cleaning reflection.\n651,lsmdc0016_O_Brother_Where_Art_Thou-55721,13383,The cabin itself is ripped away; the Soggy Bottom Boys are knocked off their feet and all is noise and confusion. Someone,The cabin itself is ripped away; the Soggy Bottom Boys are knocked off their feet and all is noise and confusion.,Someone,gold,checks the supply bag.,grab out a few green condoms.,pours him a cup of water.,tumbles in the current in natural slow motion.\n652,lsmdc0016_O_Brother_Where_Art_Thou-55721,13384,Someone tumbles in the current in natural slow motion. Suspended around him,Someone tumbles in the current in natural slow motion.,Suspended around him,gold,\", someone puts low eyes and then talks on the phone.\",fearfully before firmly closes his eyes.,\", he reaches out to face someone.\",are scores of tins of dapper someone pomade.\n653,anetv_QhiKgeJV3k0,4656,Another man is seen off in the distance and the man with the guitar begins playing. He,Another man is seen off in the distance and the man with the guitar begins playing.,He,gold,continues playing the game and ends with different games again.,walks up playing the instrument and continues playing.,continues playing guitar and stops to high five others in the end.,switches off his slow motion instrument and shows the man playing the guitar and a record behind the couple.\n654,anetv_QhiKgeJV3k0,15866,One of the friends plays a song on his guitar and the others listen. One friend,One of the friends plays a song on his guitar and the others listen.,One friend,gold,stands up and moves his guitar towards.,begins playing the drums while the other man laughs and is expressing his thanks.,falls back into the chair in amazement after the song.,is playing the camera when a large boy is able to join his drumming rhythm.\n655,anetv_QhiKgeJV3k0,15867,One friend falls back into the chair in amazement after the song. The two friends,One friend falls back into the chair in amazement after the song.,The two friends,gold,catch up on him.,starts to walk on the parallel bars.,push each other again.,congratulate the man for his guitar performance and shake hands.\n656,anetv_zryPDx9WL08,5221,Several shots are shown of a man warming up as well as performing martial arts tricks. A man,Several shots are shown of a man warming up as well as performing martial arts tricks.,A man,gold,runs with another ball on his legs.,jumps up without the rope and several men warming up.,speaks to the camera while several clips are shown of people flipping and doing tricks in various locations.,watches on stilts as well as rowing jumping back and fourth in a competition.\n657,anetv_ztD4lVJATws,17296,The woman begins turning her body with the equipment while speaking to the camera. She,The woman begins turning her body with the equipment while speaking to the camera.,She,gold,continues speaking to the camera and show off her shoes as well as people enjoying their work.,continues pulling onto the lever while looking back to the camera.,\"pushes the metal ball close, spins it around and moves it to several settings.\",continues riding around in the water and climbing up and down.\n658,anetv_ztD4lVJATws,17295,A woman is seen kneeling on the floor and pulling onto a piece of exercise equipment. The woman,A woman is seen kneeling on the floor and pulling onto a piece of exercise equipment.,The woman,gold,continues to crane the camel while the camera captures her from several angles.,begins turning her body with the equipment while speaking to the camera.,continues to show a walkway while dancing and singing.,is while rotating her hands up and down in the air while the camera watches her movements.\n659,anetv_UYzgXZIRUR8,16768,\"A skateboard leans on a tree. Then, the boy\",A skateboard leans on a tree.,\"Then, the boy\",gold,jumps in the pit and return and walk away.,skateboard on small ramps and then continues skateboarding in the street.,holds over a ball.,puts the shoes on.\n660,anetv_UYzgXZIRUR8,16767,A boy skateboard on a road jumping and flipping the skateboard in the street. A skateboard,A boy skateboard on a road jumping and flipping the skateboard in the street.,A skateboard,gold,drives down the road in turns over the bars.,lies on his skateboard in a small dirt lane.,\"stands up, takes off his helmet and hits the car and rides away.\",leans on a tree.\n661,lsmdc1018_Body_Of_Lies-80097,11415,\"They stop and look across at a large, flat - roofed building. People\",\"They stop and look across at a large, flat - roofed building.\",People,gold,stand at a coffee store.,drive down a wide road in spots.,stand at the beach.,are at the edge of the river.\n662,lsmdc1018_Body_Of_Lies-80097,11410,They walk through the glass door and into the meeting room. Someone,They walk through the glass door and into the meeting room.,Someone,gold,wraps a ribbon around someone's neck.,kneels down beside someone.,turns back to where someone is watching her.,slides the glass door shut.\n663,lsmdc1018_Body_Of_Lies-80097,11414,\"In the surveillance room, people drive along a narrow street that opens out onto a market square. They\",\"In the surveillance room, people drive along a narrow street that opens out onto a market square.\",They,gold,cliffs along the dusty road heading down into an airport.,\"stop and look across at a large, flat - roofed building.\",stems off of a high school like they belong to their major.,look frosted glass windows on the veranda over it.\n664,lsmdc1018_Body_Of_Lies-80097,11412,\"Someone takes a thick file from his case. His brow furrowed, someone\",Someone takes a thick file from his case.,\"His brow furrowed, someone\",gold,faces his own group.,closes his eyes and smiles wistfully.,opens the file and looks through photographs of groups of men.,scrutinizes his colleague's slim shoulder.\n665,lsmdc1018_Body_Of_Lies-80097,11411,Someone slides the glass door shut. Someone,Someone slides the glass door shut.,Someone,gold,\"sets his bags on a table, and shuts the door.\",takes a thick file from his case.,roams with some kind of plush jello.,\"pulls goggles on to a deck, then slams safely onto the driver's seat.\"\n666,anetv_Lfh5p8ReOYo,8157,A woman is seen sitting at the end of a bed taking her shoes off and then baby's feet walking. Shots of furniture,A woman is seen sitting at the end of a bed taking her shoes off and then baby's feet walking.,Shots of furniture,gold,\"is shown that leads into a woman speaking, followed by several people vacuuming and stepping onto the carpet.\",are seen followed by a close up of a garage of shoes followed by a woman kneeling beside a people.,are seen and leads into a man standing on an ironing board and talking to the camera.,are shown where she makes her dreams.\n667,anetv_Lfh5p8ReOYo,8158,\"Shots of furniture is shown that leads into a woman speaking, followed by several people vacuuming and stepping onto the carpet. A person\",\"Shots of furniture is shown that leads into a woman speaking, followed by several people vacuuming and stepping onto the carpet.\",A person,gold,\"adjusts the vacuum and continues using it while the woman speaks, and leads into a man playing with a baby.\",is seen speaking to the camera while standing in front of a camera and begins pouring the mop into the dishes.,plays the trumpet while the camera watches while speaking.,leaves in a bucket and dances with a bucket while a group of dogs watch her.\n668,lsmdc3081_THOR-37939,11956,\"Someone hurries someone out of the room. Eyes darting, he\",Someone hurries someone out of the room.,\"Eyes darting, he\",gold,\"removes a page of his running club, then lies down beside his bound son.\",stays by someone's side as they walk outdoors.,turns with her back to him.,races into his hotel room and heads behind him.\n669,lsmdc3081_THOR-37939,11955,Someone walks into the interrogation room. Someone,Someone walks into the interrogation room.,Someone,gold,picks up his lighter and turns to window.,hands the capsules to the guys.,hurries to the floor.,hurries someone out of the room.\n670,lsmdc3081_THOR-37939,11958,\"Passing a table filled with confiscated materials, someone snatches someone's notebook. Later, in a smoky club someone and someone\",\"Passing a table filled with confiscated materials, someone snatches someone's notebook.\",\"Later, in a smoky club someone and someone\",gold,enter the opera room.,come to someone's office.,stand and kick their arms in front of someone.,sit at the bar.\n671,lsmdc3081_THOR-37939,11954,\"On a nearby computer screen, a driver's license baring someone's photo is marked falsified data. Someone\",\"On a nearby computer screen, a driver's license baring someone's photo is marked falsified data.\",Someone,gold,switches on his laptop and dials.,checks the chopper's rear window.,walks into the interrogation room.,\"coolly sips his drink, then exits.\"\n672,anetv_KX-vl2o8U1w,9157,\"The band is playing, while the man is singing, the drummer fell off the his chair. The marching band play their drums, then one of the drummers fell on the ground, a person\",\"The band is playing, while the man is singing, the drummer fell off the his chair.\",\"The marching band play their drums, then one of the drummers fell on the ground, a person\",gold,holding the violin wins and began dancing.,falls on the ground.,came to help him.,placed the music on the violin.\n673,anetv_KX-vl2o8U1w,9156,\"A boy with earphones is drumming and the stick got stuck in the instrument. The band is playing, while the man is singing, the drummer\",A boy with earphones is drumming and the stick got stuck in the instrument.,\"The band is playing, while the man is singing, the drummer\",gold,fell off the his chair.,stops playing the flute.,talks in his blue way.,goes down the navy wins and stops.\n674,anetv_KX-vl2o8U1w,9155,\"A boy in blue shirt hit the drum, but the big drum keeps moving, then it fell. A boy with earphones is drumming and the stick\",\"A boy in blue shirt hit the drum, but the big drum keeps moving, then it fell.\",A boy with earphones is drumming and the stick,gold,is watching the drum of the song.,is strumming from his guitar.,is playing drum on the bongos.,got stuck in the instrument.\n675,anetv_KX-vl2o8U1w,9158,\"The marching band play their drums, then one of the drummers fell on the ground, a person came to help him. A drummer on stage\",\"The marching band play their drums, then one of the drummers fell on the ground, a person came to help him.\",A drummer on stage,gold,gets the warming up and it's with a gold ball.,fell of the stage.,wins the match during the music.,\"catching the band talking, holding people seated as two plays with the disc.\"\n676,lsmdc1005_Signs-4635,2310,Someone stares up at someone. Someone,Someone stares up at someone.,Someone,gold,smokes but someone looks at it.,gazes with the bracing happiness.,bows his head and lifts his head.,\"gazes apprehensively down at someone, then laughs.\"\n677,lsmdc1005_Signs-4635,2311,\"Someone gazes apprehensively down at someone, then laughs. He\",\"Someone gazes apprehensively down at someone, then laughs.\",He,gold,is consumed by the flames.,turns his weapon collar to his neck and grins.,gives someone a pamphlet.,stamps out of the window.\n678,anetv_VEwZJ-5u_Xs,8470,Several kites fly in the sky. A man,Several kites fly in the sky.,A man,gold,walks up to him in front of the house.,holds a kite string pool while flying a kite.,is shown stuck in his skateboard.,flies off into the street.\n679,anetv_VEwZJ-5u_Xs,8469,People fly kites from a rooftop holding kite string pools. Several kites,People fly kites from a rooftop holding kite string pools.,Several kites,gold,\"fly around the sky, preparing to light in the waves.\",are then shown as they swoop above and show a fish in a forest park.,fly in the sky.,fly into the air.\n680,anetv_w9CC0wf27zs,18047,One is assisting the other one with her knitting. She,One is assisting the other one with her knitting.,She,gold,helps her adjust her hand position on the needle and yarn.,counts on the phone.,puts on the tape and crease them together.,kneels when she pushes herself into the room.\n681,anetv_w9CC0wf27zs,8970,They have food and knitting supplies in front of them. One woman,They have food and knitting supplies in front of them.,One woman,gold,is helping the other as she is knitting.,describes someone with it.,melts a lemon through the spaghetti and adds some garlic with the whipping mix.,empties a wheelbarrow of kindling in the stand.\n682,anetv_w9CC0wf27zs,18046,Two elderly women are seated at a table covered in food items. One,Two elderly women are seated at a table covered in food items.,One,gold,man is talking into the camera in a kitchen.,puts women into a jewelry box.,is assisting the other one with her knitting.,are wearing out bowls of food with children high.\n683,anetv_w9CC0wf27zs,8969,A couple of older women are seated at a restaurant table. They,A couple of older women are seated at a restaurant table.,They,gold,continue drinking and playing cards at a table.,are using finger jacks.,are playing dodgeball with each other.,have food and knitting supplies in front of them.\n684,anetv_ZBAQx9DxYTo,18943,Man is shirtless talking to the camera in a camp in an open field while people is walking behind him. men are insisde a tent selling shirts and th man,Man is shirtless talking to the camera in a camp in an open field while people is walking behind him.,men are insisde a tent selling shirts and th man,gold,is wearing a red shirt and red shorts is laughing and doing doing stunts and tattoos.,is talking to the camera.,is playing hurling using an orange ball.,laying the scoops of a city with lights.\n685,anetv_ZBAQx9DxYTo,18942,Man is standing holdnig a pofessional camera and doing weightlifting. man,Man is standing holdnig a pofessional camera and doing weightlifting.,man,gold,is shirtless talking to the camera in a camp in an open field while people is walking behind him.,is skateboarding on a track with other mates from their bikes and walking behind the man.,is doing a conservative hurdle of rope holding tightrope.,walks toward a harmonica playing and talks to the camera.\n686,anetv_ZBAQx9DxYTo,14408,The man is then seen talking the the camera while walking through a crowd. the man then,The man is then seen talking the the camera while walking through a crowd.,the man then,gold,leads into several shots of people playing weird and laughing with one another.,demonstrates the use of a bow and arrow.,stands in a parking room.,speaks to the camera and walks on the path to assist his father by pushing the lawn mower.\n687,anetv_55FFh89yqVw,6540,The lady towel dries her face. The lady,The lady towel dries her face.,The lady,gold,puts the towel out the floor as the lady rinses her face the towel.,tapes her shirt for more.,passes her braids and shakes the ends.,puts spots of white lotion on her face and rubs it in.\n688,anetv_55FFh89yqVw,6541,The lady puts spots of white lotion on her face and rubs it in. The lady,The lady puts spots of white lotion on her face and rubs it in.,The lady,gold,shaves her leg with the clamp.,presents a small tube product.,mixes the rube all over the shaver.,turns off the shaver and speaks.\n689,anetv_55FFh89yqVw,6539,\"The credits of the clip are shown. The lady puts contents of a bottle in her palms, and the lady\",The credits of the clip are shown.,\"The lady puts contents of a bottle in her palms, and the lady\",gold,leans back to clean the hair.,puts on a few bottles.,puts lipstick on her mouth.,rubs it on her face.\n690,lsmdc1004_Juno-6641,10490,He snatches the tape from her and they watch the film. A sinister man,He snatches the tape from her and they watch the film.,A sinister man,gold,'s gun steps back in a glass stone circle to still the executives.,\"appears on the screen as a burst of flames spreads across an aisle, its lights running from a nearby gathering hall.\",drives a stake through a woman's stomach.,sways from side to side.\n691,anetv_t3wyR2VQy20,1259,He jumps off the side of the rail and back down again. He,He jumps off the side of the rail and back down again.,He,gold,adjusts the wheelie then drops it.,get up and run past the water.,does a flip this time into the grass while the camera shows his face close up.,gets cues back on the machine.\n692,anetv_t3wyR2VQy20,12449,A person is seen standing on stilts jumping up and down before a set of stairs. The person then,A person is seen standing on stilts jumping up and down before a set of stairs.,The person then,gold,throws the ball on the calf and throws it back into the camera.,throws the discus on roller blades several times before returning it to the ground.,performs a routine onto a beam while the crowd cheers and claps at the ends.,runs down the ramp on the stilts jumping and running back to the start.\n693,anetv_t3wyR2VQy20,12450,The person then runs down the ramp on the stilts jumping and running back to the start. He,The person then runs down the ramp on the stilts jumping and running back to the start.,He,gold,close up of this side is shown followed by shot joining more running tricks and skateboarding.,continue in ramp jump to start rope jump control of the bike and stay on another way on it.,runs and jumps up again into some grass and lays down laughing.,get multiple girls running by in a circle and walking on top of the trails.\n694,anetv_fdYyIOWkycU,18733,A man is seen standing ready holding a dart and looking off into the distance. The man then,A man is seen standing ready holding a dart and looking off into the distance.,The man then,gold,shoots throwing the shot put and ends with another man throwing up a dart off of the wall wall.,throws the dart in slow motion while the camera continues to follow him.,begins playing drums on a table near one another and then playing on the play.,begins playing the instrument while others watch on the side.\n695,lsmdc0028_The_Crying_Game-63372,8498,Someone has a gun in his hand. Someone,Someone has a gun in his hand.,Someone,gold,watches from the lower bunk.,throws someone back into the tunnel.,\"takes someone, whose hands are still tied behind his back, by the elbow.\",\"sits back in his chair, props himself up in his psychiatrist.\"\n696,lsmdc0028_The_Crying_Game-63372,8497,Someone opens the door to the greenhouse and clicks the chamber of his gun. Someone,Someone opens the door to the greenhouse and clicks the chamber of his gun.,Someone,gold,\"stands at the end of the hallway, waving his arms over the air.\",has a gun in his hand.,guided himself to a nearby door.,shifts his attention to a fast shuffling machine.\n697,lsmdc0028_The_Crying_Game-63372,8496,The farmhouse covered in mist. Someone,The farmhouse covered in mist.,Someone,gold,cautiously cautiously peeks through the door tract.,wears a thick blue robe.,opens the door to the greenhouse and clicks the chamber of his gun.,peeks out from behind the trees.\n698,lsmdc0028_The_Crying_Game-63372,8499,Someone turns with sudden fierceness. He,Someone turns with sudden fierceness.,He,gold,is busy with the.,pulls someone through the fields.,\"follows, slithers towards some ark.\",is on the pretty runway.\n699,anetv_BadeHG8y4PQ,6481,A man is holding a volleyball while standing on a court and speaking. Female players,A man is holding a volleyball while standing on a court and speaking.,Female players,gold,train and practice behind him while he speaks.,climb the top of a rope along the field.,are shown behind a white ball being led back to different angles.,are standing on a field and are seated as they play.\n700,anetv_SSqVGeD2XaQ,6972,The winner gets to kiss the man and the loser gets to slap him. Several shots,The winner gets to kiss the man and the loser gets to slap him.,Several shots,gold,are then shown of a man performing instruments with bagpipes.,are shown of him slapping and kissing girls as well as running around the area to find more people.,are cautiously pointing out of circles as the people watch then continue to talk.,are shown as he paint his bride that are to be trimmed for a match.\n701,anetv_SSqVGeD2XaQ,6971,Three men are seen speaking and waving to the camera that leads into the men playing games with strangers on the street. The winner gets to kiss the man and the loser,Three men are seen speaking and waving to the camera that leads into the men playing games with strangers on the street.,The winner gets to kiss the man and the loser,gold,slaps his face and ends by holding up a wad and hitting his butt.,goes flying a few times.,walks out onto the screen.,gets to slap him.\n702,anetv_4pSWTD4vAz0,14935,The group prepare a chair on a sled with a rope on shore. A man,The group prepare a chair on a sled with a rope on shore.,A man,gold,pushing a raft and long oars to kayak from the water to get on the water.,is pulled on a sled from the shore then on the lake.,is then seen walking on a congregation camel while people watch on the side.,reach a shed then approaches the ski rail.\n703,anetv_4pSWTD4vAz0,14936,A man is pulled on a sled from the shore then on the lake. The group,A man is pulled on a sled from the shore then on the lake.,The group,gold,is riding on the calm river in wake.,rides up the hill at the top of the hill.,is sitting on the kayaks as they surf in the water.,removes the sled from the water and lifts it to drain the water.\n704,anetv_4pSWTD4vAz0,14933,People water ski behind a boat on a calm lake. The person,People water ski behind a boat on a calm lake.,The person,gold,lets go of the tug rope and glides towards the shore of the lake.,turns to go on and then joins.,ski down and scoops rock from a wall.,are riding down the river as a man is oil mounted on the roof of a van nearby.\n705,anetv_4pSWTD4vAz0,14932,A dog rides on a boat with his owners. A crab,A dog rides on a boat with his owners.,A crab,gold,goes steams in the mesh to the green grassy area.,is seen crawling on the bottom of a lake.,comes out of the bikers talking.,walks down a staircase.\n706,lsmdc3060_SANCTUM-29506,15130,\"He dives into the water. As someone swims around a corner in a narrow passageway, someone\",He dives into the water.,\"As someone swims around a corner in a narrow passageway, someone\",gold,loses his grip and throws himself into the water.,spots the wad of cash in the hold.,\"reaches out onto a hut, clinging to his side.\",catches up and grabs on to his leg.\n707,lsmdc3060_SANCTUM-29506,15129,\"He scans the submerged cave, then takes off his bag and lets it fall to the ground. He\",\"He scans the submerged cave, then takes off his bag and lets it fall to the ground.\",He,gold,leans up against his stone throne and stares man out.,lies on top of it.,dives into the water.,lands in mid - air.\n708,lsmdc3060_SANCTUM-29506,15132,\"But finds the cave ceiling above, holding him underwater. His hands\",\"But finds the cave ceiling above, holding him underwater.\",His hands,gold,dangling wildly then buries his head in his hands.,fall floating and windsurf through a brief - period of air.,feeling for a break in the rock.,are weakly reeling by a wood door.\n709,lsmdc3060_SANCTUM-29506,15131,\"As someone swims around a corner in a narrow passageway, someone catches up and grabs on to his leg. But\",\"As someone swims around a corner in a narrow passageway, someone catches up and grabs on to his leg.\",But,gold,\"finds the cave ceiling above, holding him underwater.\",\"leans across, taking a bite of the whip.\",flops down onto someone's lap.,dives off into the water at gunpoint.\n710,lsmdc3060_SANCTUM-29506,15127,\"Trudging past stalagmites, he and someone find an underwater cave on the opposite side of the chamber. At the water's edge, someone\",\"Trudging past stalagmites, he and someone find an underwater cave on the opposite side of the chamber.\",\"At the water's edge, someone\",gold,\"bends at the waist, resting his hands on his legs.\",thrusts the bone into a human form.,\"is startled at the attack, tackles him to the ground.\",peers around the corner.\n711,lsmdc3060_SANCTUM-29506,15128,\"As they stare at the dark water, someone joins them. He\",\"As they stare at the dark water, someone joins them.\",He,gold,approaches someone by his rocky friends as people play their banjo.,exhibits his wife's leg.,\"scans the submerged cave, then takes off his bag and lets it fall to the ground.\",\"glances toward the back, then heads over the back.\"\n712,anetv_rA7qVOp47Qg,10431,\"A girl is riding on a white horse that is in an enclosed obstacle course, but it's just walking, trotting and running around the perimeter doing laps. Another girl is now the focus and she\",\"A girl is riding on a white horse that is in an enclosed obstacle course, but it's just walking, trotting and running around the perimeter doing laps.\",Another girl is now the focus and she,gold,begins running and running with other girls.,'s undulating and starts bouncing across the rope again.,'s walking in a line that runs on a blue field.,\"'s riding on a taller brown horse who begins walking, trotting and they also stay on the perimeter of the area.\"\n713,anetv_J3coWVRd5do,2730,\"She takes a huge jump, hurling herself over a bar. She\",\"She takes a huge jump, hurling herself over a bar.\",She,gold,is shown performing the act again in slow motion.,throws a rope and swings the rope before dismounting.,lifts a drawer from a hanger and sets it before him.,presses her lips together.\n714,anetv_J3coWVRd5do,2729,A girl runs down a track in slow motion. She,A girl runs down a track in slow motion.,She,gold,jumps in a different sand pit.,\"takes a huge jump, hurling herself over a bar.\",breaks into a run.,puts her arms down and runs.\n715,anetv_bdDzTqaiB3E,4484,A woman is standing in the bathtub using the shower to wash her clothes. She,A woman is standing in the bathtub using the shower to wash her clothes.,She,gold,takes her toothbrush and washes her face in the sink.,jumps in wet clothes on a wet towel.,kicks the clothes around and steps around and kind of dances on them.,continues brushing the teeth with a toothbrush.\n716,anetv_bdDzTqaiB3E,4486,\"Her boyfriend is recording her and himself in the mirror. He continues to watch her as she steps on the clothed, and then he\",Her boyfriend is recording her and himself in the mirror.,\"He continues to watch her as she steps on the clothed, and then he\",gold,turns off a lamp that starts to burn with the music.,turns the camera to his mother.,sits with his eyes open and arms folded.,puts two small plates on top of her.\n717,anetv_bdDzTqaiB3E,4485,She kicks the clothes around and steps around and kind of dances on them. Her boyfriend,She kicks the clothes around and steps around and kind of dances on them.,Her boyfriend,gold,puts her claws and checks her arm from around her shoulders.,is recording her and himself in the mirror.,has her all beat and put in front of her.,has obviously entered in.\n718,lsmdc3069_THE_BOUNTY_HUNTER-4705,5020,Someone works his jaw driving his blue convertible past them. She,Someone works his jaw driving his blue convertible past them.,She,gold,offers him a wad of cash.,stares at himself in a mirror.,catches up with them.,see both middle - aged sedan - - the horn on the back of the bike.\n719,lsmdc3069_THE_BOUNTY_HUNTER-4705,5018,He replaces the gas nozzle. He,He replaces the gas nozzle.,He,gold,opens the freezer and spots them.,is on all fours rail a high road.,puts away another shoe.,leans on his open window.\n720,lsmdc3069_THE_BOUNTY_HUNTER-4705,5019,He leans on his open window. Someone,He leans on his open window.,Someone,gold,enters.,cautiously leads the two blades.,works his jaw driving his blue convertible past them.,\"at the process, the pendant's shaped like a small hole inside the present over the model.\"\n721,lsmdc1046_Australia-90951,15907,The planes continue to completely obliterate the town. People,The planes continue to completely obliterate the town.,People,gold,sit on their horses amid the smoke and blazing buildings.,lie on fire with the helicopter as water spills over someone's head as he lies in a lab pressure tub.,are reflected in the water.,serve someone someone and someone.\n722,lsmdc1046_Australia-90951,15895,Someone signs the contract to buy Faraway Downs. He,Someone signs the contract to buy Faraway Downs.,He,gold,\"grabs her cell, then shuts the door.\",\"hangs a napkin, and inspects his tie.\",turns and walks out onto the balcony surrounding his office at the top of a high clock tower.,takes out the tray of food.\n723,lsmdc1046_Australia-90951,15881,Fighters take off at dawn from an aircraft carrier. Mission Island,Fighters take off at dawn from an aircraft carrier.,Mission Island,gold,lands on the millennium bridge as an orange white sea arrives into a busy city.,\"sits peacefully in the grey sea, beneath the cloudy sky.\",explodes into two thick smoke above them and heads outside as the automobile drives past.,yellow drones cock their heads.\n724,lsmdc1046_Australia-90951,15905,\"As the soldiers stand helpless in their truck and smoke billows over the town, someone walks slowly out through the burning prison gates. Pillars of fire\",\"As the soldiers stand helpless in their truck and smoke billows over the town, someone walks slowly out through the burning prison gates.\",Pillars of fire,gold,surround a large drones statue in front of a raised tent.,swamp him to the ground.,\"shoot at someone, beginning to probe around the sphere.\",leap skywards as the bombs fall.\n725,lsmdc1046_Australia-90951,15899,\"On his balcony, someone watches the approaching black dots in the air. Planes\",\"On his balcony, someone watches the approaching black dots in the air.\",Planes,gold,sit on the couch.,peel off from the formation to start their attack.,gather for long - focus product.,continues down the busy streets.\n726,lsmdc1046_Australia-90951,15889,Four planes peel away from the mass of fighters and swoop towards him. Someone,Four planes peel away from the mass of fighters and swoop towards him.,Someone,gold,\"flicks his wand, then leans toward someone.\",watch as the chamber flashes into a flash of bright white light.,walks into the army operations room.,lurches to the sky and zombies pass ahead.\n727,lsmdc1046_Australia-90951,15898,\"Fighters appear in the sky over someone. On his balcony, someone\",Fighters appear in the sky over someone.,\"On his balcony, someone\",gold,wears a brooding mask.,roars through the woods.,hangs back and looks over.,watches the approaching black dots in the air.\n728,lsmdc1046_Australia-90951,15888,\"On the beach on the island, someone looks skywards. Four planes\",\"On the beach on the island, someone looks skywards.\",Four planes,gold,\"float across the studio, killing the last of the students.\",peel away from the mass of fighters and swoop towards him.,are dropped on the muddy ground.,are being treated with retreating feet.\n729,lsmdc1046_Australia-90951,15883,The children are asleep in their dormitory. Someone,The children are asleep in their dormitory.,Someone,gold,is eating someone.,goes to his mother.,wakes up with a start.,lifts someone from the chessboard and takes him from his father.\n730,lsmdc1046_Australia-90951,15903,Someone bellows orders and the policemen let prisoners out of their cells. Soldiers climb into a truck and someone,Someone bellows orders and the policemen let prisoners out of their cells.,Soldiers climb into a truck and someone,gold,does the driver - out vehicle with their guns in someone's hand.,dodging the truck patrolman aims a guns.,walks out of the prison.,\"hurls a wielding pod inside, vault follows.\"\n731,lsmdc1046_Australia-90951,15908,People sit on their horses amid the smoke and blazing buildings. Someone,People sit on their horses amid the smoke and blazing buildings.,Someone,gold,stares in shock at the carnage.,rise out of the clouds and run along the snow.,\"leaps towards someone, pushing itself down in front of him.\",gathered with a white - skinned girl with long gray hair and blue hair.\n732,lsmdc1046_Australia-90951,15906,Pillars of fire leap skywards as the bombs fall. Someone,Pillars of fire leap skywards as the bombs fall.,Someone,gold,\"removes her wand from its string, thrusts it towards it then ducks down.\",returns the cap to the remaining professional.,\"flies, reaching the dragon down in a fetal position in the wall's nest.\",stands and watches the destruction rage all around him.\n733,lsmdc1046_Australia-90951,15904,\"Soldiers climb into a truck and someone walks out of the prison. As the soldiers stand helpless in their truck and smoke billows over the town, someone\",Soldiers climb into a truck and someone walks out of the prison.,\"As the soldiers stand helpless in their truck and smoke billows over the town, someone\",gold,knocks a man off of zombies.,is two bodyguard soldiers.,walks slowly out through the burning prison gates.,jumps to his plantation.\n734,lsmdc1046_Australia-90951,15900,Planes peel off from the formation to start their attack. Someone,Planes peel off from the formation to start their attack.,Someone,gold,hands someone coolly examination.,retreat as someone watches the soldier sawing away.,sways over various electrical arches on a lowest level.,stands up and slowly removes her headset as she stares out of the window.\n735,lsmdc1046_Australia-90951,15893,\"A plane targets the hut. As the bomb obliterates the radio shack, someone\",A plane targets the hut.,\"As the bomb obliterates the radio shack, someone\",gold,looks out through the barred window of his cell.,strikes the back of the limo and someone rides aboard.,sees the stream of headlight on the stairs.,loses his helmsman and fires a flamethrower.\n736,lsmdc1046_Australia-90951,15890,She looks at Cath with concern. Someone,She looks at Cath with concern.,Someone,gold,arrives on a penguin facing the open door.,continues to stare at the planes.,slams the gun into a wall.,plunges her eyes into the deck.\n737,lsmdc1046_Australia-90951,15896,He turns and walks out onto the balcony surrounding his office at the top of a high clock tower. Someone,He turns and walks out onto the balcony surrounding his office at the top of a high clock tower.,Someone,gold,lays down and carves in the paint for his office door.,\"'s tie is now huge, and he is caught.\",\"is at a blue bar, his grizzled gentleman in his suit coat and long mustache is hanging nodding at her wrist.\",\"pauses, hearing the noise.\"\n738,lsmdc1046_Australia-90951,15880,Someone turns away and tears fill someone's eyes. Their vehicles,Someone turns away and tears fill someone's eyes.,Their vehicles,gold,blossom over a beach.,raise a cloud of dust on the other side of the river they are camping next to.,\"meet close together, as balance and spurt out on the road.\",line up on the new someone.\n739,lsmdc1046_Australia-90951,15882,\"Mission Island sits peacefully in the grey sea, beneath the cloudy sky. The children\",\"Mission Island sits peacefully in the grey sea, beneath the cloudy sky.\",The children,gold,are asleep in their dormitory.,ride cautiously to the bottom of the river as they go down the snowy river of faraway downs.,\"climb into the white fence, utterly enchanted.\",retreat as they walk through twinkling long hazmat suits.\n740,lsmdc1046_Australia-90951,15887,\"The Japanese fighters fly over Mission Island. Squatting in his cell, someone\",The Japanese fighters fly over Mission Island.,\"Squatting in his cell, someone\",gold,flips a mouthful of popcorn.,examines outside of the photo.,chokes on the broomstick.,raises his head and looks up.\n741,lsmdc1046_Australia-90951,15886,People gallop across a plain. The Japanese fighters,People gallop across a plain.,The Japanese fighters,gold,walk alongside a menu line.,are gloved for their approval.,walk nervously along the station to hogwarts.,fly over mission island.\n742,lsmdc1046_Australia-90951,15902,\"Someone is engulfed in smoke, flame and flying glass. Someone bellows orders and the policemen\",\"Someone is engulfed in smoke, flame and flying glass.\",Someone bellows orders and the policemen,gold,let prisoners out of their cells.,grab someone by the handle of two capuchin guns.,hurtle through the air towards the smoke.,embrace then shields him back and put him.\n743,anetv_thvpt_lUxTI,17915,Two buses are parked in a parking lot. People,Two buses are parked in a parking lot.,People,gold,are holding a skateboard down a rough street next to the other house.,are riding horses down the open roads of the gallery.,are walking in front of it in the snow.,follow the water and pass a bridge over a waterfall.\n744,anetv_thvpt_lUxTI,17916,People are walking in front of it in the snow. A person,People are walking in front of it in the snow.,A person,gold,is raking the snow faster.,is holding a slack blower as jet skis pass behind them.,is using a leaf blower in a trampoline room.,is shoveling the snow in front of them.\n745,anetv_Ff8QLpH5T1c,15065,A man is paddling the canoe down a river. He,A man is paddling the canoe down a river.,He,gold,\"talks as he canoes, pulling it through shallow areas of water and rocks before getting back in.\",stops and listens in.,come to the back of a house who the kids is sitting in the kayaks.,'s seen riding sitting on a canoe while using a sail in the ocean.\n746,anetv_Ff8QLpH5T1c,15066,\"He talks as he canoes, pulling it through shallow areas of water and rocks before getting back in. The man\",\"He talks as he canoes, pulling it through shallow areas of water and rocks before getting back in.\",The man,gold,\"starts skating down on the grass, as he rides.\",\"drinks and eats in the canoe, then continues down river.\",jumps off the side of the boat while he is towed.,moves his feet out of the netted area and finally requiring himself to stop the base.\n747,anetv_Ff8QLpH5T1c,6105,A man is canoeing through a long river. He,A man is canoeing through a long river.,He,gold,runs down the river while others wander over him.,uses a paddle to navigate the waters.,is running back down the path by himself.,swims out and mentions the other side.\n748,anetv_Ff8QLpH5T1c,15064,An underside of a canoe and paddle is shown. A man,An underside of a canoe and paddle is shown.,A man,gold,uses a motorbike to hit a tree.,is talking to the camera while holding a red sunset and skis.,is paddling the canoe down a river.,chats with a female woman holding a bow in one hand.\n749,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1420,\"As someone lies dying, the evenstar falls from her fingers. A guard\",\"As someone lies dying, the evenstar falls from her fingers.\",A guard,gold,sockets someone's eyes as she takes the two sorcerer stone in.,stands in the doorway.,spills from her brother as she runs to someone.,pierces one of someone's ear.\n750,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1421,A guard stands in the doorway. Someone,A guard stands in the doorway.,Someone,gold,looks up as someone enters.,puts someone's arm around his shoulder.,looks back at someone.,looks round at the brown - haired steward.\n751,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1418,The hooded figure slowly rides up the narrow zigzag track leading up to the plateau. Someone,The hooded figure slowly rides up the narrow zigzag track leading up to the plateau.,Someone,gold,'s are looking around nervously.,tries to lead someone to the ground!,\"tosses in his sleep, disturbed by images and voices.\",lowers his pass and has gort on the machine protruding from the flat surface.\n752,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1419,\"Someone tosses in his sleep, disturbed by images and voices. As someone lies dying, the evenstar\",\"Someone tosses in his sleep, disturbed by images and voices.\",\"As someone lies dying, the evenstar\",gold,falls from her fingers.,shines - light slowly to someone's cheeks.,is buries in his face.,trails off.\n753,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1415,\"In his excitement, he draws his sword. Someone\",\"In his excitement, he draws his sword.\",Someone,gold,reveals a warrior purple in his genitals and stained hair.,bursts from a deep shaft.,\"smiles encouragingly, someone slashes on his wrist.\",\"steps back, laughing.\"\n754,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1417,\"Someone turns on both of them. At the plateau edge, a guard\",Someone turns on both of them.,\"At the plateau edge, a guard\",gold,aims a grubby officer as the lookout squats on.,caresses a long o brass clock with the weighted lens.,looks down the steep precipice as a horse and rider move along the ridge.,slides one last ribbon on the carrot rack.\n755,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1424,The figure stands and pulls back the hood to reveal someone. Someone's face,The figure stands and pulls back the hood to reveal someone.,Someone's face,gold,is not visible as she did.,is etched with pain.,\"is captured, pouring blank.\",looks up as it go out at the cloud of dust leaving to the right of it.\n756,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1422,Someone looks up as someone enters. Someone,Someone looks up as someone enters.,Someone,gold,\"bows slightly to the hooded figure and leaves, shooting someone a strange look as he goes.\",sees flames rising from the sulky young man and comes up behind him.,\"rushes round at someone, who enters with a gun on his shoulder.\",nods to a balding man before walking back.\n757,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1423,\"Someone bows slightly to the hooded figure and leaves, shooting someone a strange look as he goes. The figure\",\"Someone bows slightly to the hooded figure and leaves, shooting someone a strange look as he goes.\",The figure,gold,holds someone's gaze for a moment and then stares at him.,moves off and face the stern of the bank.,sees below women in similar backs.,stands and pulls back the hood to reveal someone.\n758,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1409,Someone stands before the road as though transfixed. A ghostly figure,Someone stands before the road as though transfixed.,A ghostly figure,gold,emerges from the rubble.,stretches out from her hand.,seems to emerge from the gloom.,is eight feet from the water.\n759,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1413,Someone casts another look back at the ancient standing stones before following someone. All,Someone casts another look back at the ancient standing stones before following someone.,All,gold,see the name of its clock.,\"returns to the house to reveal a last page and when it is long enough, it stops.\",is quiet in the encampment.,see someone's pulse.\n760,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1416,\"Someone steps back, laughing. As people leave the tent, someone and gamling\",\"Someone steps back, laughing.\",\"As people leave the tent, someone and gamling\",gold,hold their tubes in their hands.,stare past the troopers with rifle guns.,watch the fire fluttering.,\"are sitting nearby, finishing a meal.\"\n761,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1410,A ghostly figure seems to emerge from the gloom. Someone,A ghostly figure seems to emerge from the gloom.,Someone,gold,turns back to us.,starts in fright as.,stops several feet above.,stands up and pulls the snake out of the creature's head.\n762,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60973,1414,All is quiet in the encampment. Someone,All is quiet in the encampment.,Someone,gold,exhales - - excited and terrified in equal measure.,looks at the window wildly.,turns on the board.,goes to tiptoe someone the direction of the paper briefcase including someone.\n763,lsmdc3032_HOW_DO_YOU_KNOW-2242,5064,Someone sneaks glances at her as he chews. His date,Someone sneaks glances at her as he chews.,His date,gold,\"eats ice cream, then licks his lips.\",hits the same boat dock with a rod.,\"shifts her worried gaze, occasionally eyeing him impassively.\",hits the table of someone's old - ass home.\n764,lsmdc3032_HOW_DO_YOU_KNOW-2242,5071,\"Someone creases her lips, sizing him up. Someone\",\"Someone creases her lips, sizing him up.\",Someone,gold,cocks her cracker as she brushes someone's hair out of her face.,meets his gaze.,smiles and members of the workers including tense the guard on the train.,watches her go with his boyish grin.\n765,lsmdc3032_HOW_DO_YOU_KNOW-2242,5063,Someone cuts a chunk of tomato and eats it. Someone,Someone cuts a chunk of tomato and eats it.,Someone,gold,has a hand holding cheese - covered case.,smiles as someone maintains his gaze.,takes the cardboard pan from his wing.,sneaks glances at her as he chews.\n766,lsmdc3032_HOW_DO_YOU_KNOW-2242,5066,\"His brow lifts and he stops chewing. Catching him staring, someone\",His brow lifts and he stops chewing.,\"Catching him staring, someone\",gold,faces his assistant then points a sip of scotch as the younger teen taps his hands on her slim hips.,gives a nervous half - smile and looks down.,\"quickly lights another cigarette, takes the gun away and follows headphones with closed eyes.\",grimaces when he is done.\n767,lsmdc3032_HOW_DO_YOU_KNOW-2242,5072,Someone watches her go with his boyish grin. Now someone,Someone watches her go with his boyish grin.,Now someone,gold,uses his cellphone as he leaves his building.,drags from an drink on a monitor.,leads someone through the airport in the surveillance room.,\"sits hunched backward, her eyes narrowing as she presses her fingers together.\"\n768,lsmdc3032_HOW_DO_YOU_KNOW-2242,5062,\"Later, they dine on spaghetti and meatballs. Someone\",\"Later, they dine on spaghetti and meatballs.\",Someone,gold,cuts a chunk of tomato and eats it.,sniffs the floor and closes the door.,approaches a desk and cradles someone's hand.,takes another from the bottle and pours it in his ear.\n769,lsmdc3032_HOW_DO_YOU_KNOW-2242,5069,He opens the restaurant door for someone and follows her out with a goofy grin. He,He opens the restaurant door for someone and follows her out with a goofy grin.,He,gold,picks her up as she leaves.,shrugs and beams at her.,taps on his wristwatch while she dances.,rides back on the stage and a wedding band joins him.\n770,lsmdc3032_HOW_DO_YOU_KNOW-2242,5076,\"Now someone plods up a flight of stairs. Dozens of other notes surround the gift, and someone\",Now someone plods up a flight of stairs.,\"Dozens of other notes surround the gift, and someone\",gold,sits behind the display.,ticks up to zero.,slaps the fan in his male bag.,jumps down a large balcony.\n771,lsmdc3032_HOW_DO_YOU_KNOW-2242,5073,\"Now someone uses his cellphone as he leaves his building. In a bar, someone\",Now someone uses his cellphone as he leaves his building.,\"In a bar, someone\",gold,helps his son out of the sunny gym.,waits in his cell.,hands someone a honing sub.,talks on the phone.\n772,lsmdc3032_HOW_DO_YOU_KNOW-2242,5065,\"His date shifts her worried gaze, occasionally eyeing him impassively. Someone\",\"His date shifts her worried gaze, occasionally eyeing him impassively.\",Someone,gold,stops eating and leans back in her seat.,\"looks from her door to the left, then goes flying through a stone bridge in the opposite direction.\",\"cradles her head in his hand, and takes his hand from hers.\",\"shakes his head, sits in front of a curtain, bends her slightly, and grips her head.\"\n773,lsmdc3032_HOW_DO_YOU_KNOW-2242,5068,Someone's lips curl into a dreamy - eyed smile. He,Someone's lips curl into a dreamy - eyed smile.,He,gold,clenches his jaw with an amused smirk.,takes up his backpack and walks out of the room.,displays a weary smile.,opens the restaurant door for someone and follows her out with a goofy grin.\n774,lsmdc3032_HOW_DO_YOU_KNOW-2242,5061,He amiably shuts his mouth and faces his menu. Someone,He amiably shuts his mouth and faces his menu.,Someone,gold,sits for an instant.,\"fidgets her fingers, allows a small half - smile, and nods.\",fetches his cell call.,writhes and holds out his arms.\n775,lsmdc3032_HOW_DO_YOU_KNOW-2242,5074,\"In a bar, someone talks on the phone. Someone\",\"In a bar, someone talks on the phone.\",Someone,gold,slips from his headset.,pulls away from his car.,\"faces someone, the doorman.\",watches as someone steps away.\n776,lsmdc3020_DEAR_JOHN-9355,3773,Guests mill about a someone beach house's natural un - landscaped yard. Someone and someone,Guests mill about a someone beach house's natural un - landscaped yard.,Someone and someone,gold,sit on the snowy ground.,follow the route to a elegant restaurant in a dining room.,sit in an unlit fire pit.,travel out to the adjacent living room.\n777,lsmdc3020_DEAR_JOHN-9355,3776,Someone brings someone a beer. Someone,Someone brings someone a beer.,Someone,gold,\"eyes him, coolly.\",picks up her jacket slightly and shakes her head.,tries to cup the contents of his black drink.,\"watches him, and turns to gaze at someone, then shakes himself off.\"\n778,lsmdc3020_DEAR_JOHN-9355,3774,Someone and someone sit in an unlit fire pit. Someone,Someone and someone sit in an unlit fire pit.,Someone,gold,notices a bulky ring on someone's finger.,uses cigarettes to push him.,pushes the skateboard off the wall and takes a yellow breath.,\", in his short jacket, and someone resting on a nearby court below.\"\n779,lsmdc3020_DEAR_JOHN-9355,3772,As someone stares at someone. They,As someone stares at someone.,They,gold,head off side by side.,look back at someone and the elevator separate.,enter sunroom.,hobbit dispatches their outstretched hands.\n780,anetv_bXT72HACH4I,15441,\"There are 4 different people standing on an indoor court, and 3 are holding ends of 2 different jump ropes and 1 person is rope jumping. Various clips of people rope jumping play and sometimes there's just 1 person jumping alone, but most times there are between 2 and 4 and a lot of times they\",\"There are 4 different people standing on an indoor court, and 3 are holding ends of 2 different jump ropes and 1 person is rope jumping.\",\"Various clips of people rope jumping play and sometimes there's just 1 person jumping alone, but most times there are between 2 and 4 and a lot of times they\",gold,are in forty five the story.,are and does n't even notice.,are alternating between jumping and holding the rope.,are going to do turns while aerobics and getting back up bottoms.\n781,anetv_hsI_BHN5h_0,15111,People are pushing a wheelbarrow of sand. People,People are pushing a wheelbarrow of sand.,People,gold,are sitting on horses on sticks next to them.,are hitting the silver ball.,are playing lacrosse on a grassy field.,are playing volleyball on the beach.\n782,anetv_hsI_BHN5h_0,7075,Salerno Dal 14 Luglio Al 4 Agosto La Tradizione Continua animates on screen. Several men,Salerno Dal 14 Luglio Al 4 Agosto La Tradizione Continua animates on screen.,Several men,gold,speak to the camera and laugh.,are bowling down a humvee.,are riding next to the tubes as they riding bicycles on their dirt bikes.,talk at each other pressing up latches and grease a red sedan.\n783,anetv_hsI_BHN5h_0,15112,A crowd of people is applauding. A man in a yellow shirt,A crowd of people is applauding.,A man in a yellow shirt,gold,is talking to the camera.,is standing in front of her watching.,is standing up watching them.,walks up and throws a discus on a blue mat.\n784,anetv_hsI_BHN5h_0,7074,\"People set up a beach soccer area with marking, fences and fireworks. A game\",\"People set up a beach soccer area with marking, fences and fireworks.\",A game,gold,is being played on the beach field with an large crowd watching.,is shown taking place.,\"commences with other teams, playing the game from the win.\",is also shown with a pure star on the banner in the stadium.\n785,anetv_CG-7jcSB5_c,8788,\"Then, the toddler try to catch another ball, but it rolls under a chair. Next, the toddler\",\"Then, the toddler try to catch another ball, but it rolls under a chair.\",\"Next, the toddler\",gold,catch a ball and throw to the floor and the ball bounce.,grabs the pole and run over to the head.,puts the drumsticks under the big hands before raking the mop.,wave off the toddler and carry him.\n786,anetv_CG-7jcSB5_c,8787,\"A toddler holds a lacrosse stick, then he catches a ball with the lacrosse stick and throws to the floor. Then, the toddler try to catch another ball, but it\",\"A toddler holds a lacrosse stick, then he catches a ball with the lacrosse stick and throws to the floor.\",\"Then, the toddler try to catch another ball, but it\",gold,rolls under a chair.,misses another floor after that throw.,goes too fast as it pulls a disc.,sticks to his opponent to the side.\n787,anetv_CG-7jcSB5_c,8789,\"Next, the toddler catch a ball and throw to the floor and the ball bounce. After, the toddler catch the bouncing ball and throw to the backyard, then the toddler\",\"Next, the toddler catch a ball and throw to the floor and the ball bounce.\",\"After, the toddler catch the bouncing ball and throw to the backyard, then the toddler\",gold,obeys and a man hits the ball.,steps down a step.,falls in the sink.,pile the tree in a pile.\n788,lsmdc0027_The_Big_Lebowski-62868,8575,\"The door swings open and a beer - swilling middle - aged man looks dully out at someone, who looks hesitantly up. He\",\"The door swings open and a beer - swilling middle - aged man looks dully out at someone, who looks hesitantly up.\",He,gold,\"continues to leave the stage, leaving the case in.\",sits on the approaching side of the booth and springs an arrow with a shelf.,reaches out and cradles her arm.,slips a little black box out of his shirt pocket.\n789,lsmdc0027_The_Big_Lebowski-62868,8576,He slips a little black box out of his shirt pocket. Someone,He slips a little black box out of his shirt pocket.,Someone,gold,ten is shown entering the theater.,has been watching someone.,wags his finger towards it.,\"skims the box, then smiles.\"\n790,lsmdc0027_The_Big_Lebowski-62868,8574,\"We see someone, in pressed jeans and a stretchy sweater, walking up a stoop in a residential neighborhood and zinging the bell. The door swings open and a beer - swilling middle - aged man\",\"We see someone, in pressed jeans and a stretchy sweater, walking up a stoop in a residential neighborhood and zinging the bell.\",The door swings open and a beer - swilling middle - aged man,gold,\"looks dully out at someone, who looks hesitantly up.\",follows behind wearing headsets.,rides on the pavement and approaching someone.,reads the pages of the video.\n791,anetv_hfZQBDePOOE,6104,A person is doing tricks on a wakeboard behind a boat. A man in sunglasses and a black shirt,A person is doing tricks on a wakeboard behind a boat.,A man in sunglasses and a black shirt,gold,is talking to camera.,is waving his black hair off.,keeps talking in between clips.,is sitting on the boat board.\n792,anetv_hfZQBDePOOE,19082,\"A professional wake boarder interviews on camera in between shots of him demonstrating tricks and stunts on a wakeboard in the water. A man in black shades interviews with a camera, while\",A professional wake boarder interviews on camera in between shots of him demonstrating tricks and stunts on a wakeboard in the water.,\"A man in black shades interviews with a camera, while\",gold,sitting only two people arm wrestle.,holding a bow and talking to a lady group.,sitting in front of a body of water.,being interviewed by others pointing at each films.\n793,anetv_5HLW2AI1Ink,13637,A swimmer is shown putting on his goggles and spreading his hands out before he dives into a pool. A side view of the man,A swimmer is shown putting on his goggles and spreading his hands out before he dives into a pool.,A side view of the man,gold,is shown as he does the side stroke underneath the water.,is shown again in different motion going around and stopping to glide the camera.,shoots the ball around the swimming pool and then flips them off in the end water.,is shown throwing the board back to the camera.\n794,anetv_5HLW2AI1Ink,13638,A side view of the man is shown as he does the side stroke underneath the water. The male continues to swim and several techniques of his,A side view of the man is shown as he does the side stroke underneath the water.,The male continues to swim and several techniques of his,gold,jumping down the room while throwing the shoes.,are highlighted such as the way his hand is cuffed and the position of his legs.,movements as he casts it down.,\"handstand, and eventually flips off the surfboard.\"\n795,anetv_2zl0O1VRDC4,2768,\"A person puts sealing material around steel planks and a roof. Then, the man\",A person puts sealing material around steel planks and a roof.,\"Then, the man\",gold,paints a roof with black paint.,put the tires into dust at the end.,remove shingles of a small store windows.,peels a carpet very evenly the tiles on the floor.\n796,anetv_drarkco9LfQ,6238,A man is about to do an arm wrestling match with an older gentlemen. The older man,A man is about to do an arm wrestling match with an older gentlemen.,The older man,gold,is struggling from the faces that he is making.,continues to begin skiing as the man plays while interviewing kids anxiously.,is shown throwing a badminton stick to the rolling man.,kneels down beside her on the waist then wraps his arm around her.\n797,anetv_drarkco9LfQ,6239,The older man is struggling from the faces that he is making. The camera's,The older man is struggling from the faces that he is making.,The camera's,gold,swims towards the water's hand then moves back towards the water.,disfigured now a city street flag.,are getting all in their faces basically.,work with swinging ends.\n798,lsmdc3045_LAND_OF_THE_LOST-21257,13556,Someone touches his shoulder and he pauses. They,Someone touches his shoulder and he pauses.,They,gold,share a tender look.,see people holding boards and silver flowers with a canopied topic.,\"tilts through the doorway, leaving someone walking around.\",\"flinches for breath and smiles, then looks into the dining room.\"\n799,lsmdc3045_LAND_OF_THE_LOST-21257,13557,They share a tender look. He,They share a tender look.,He,gold,\"strokes someone's arm with his thumb, then lowers her fingers and flexes his fingers.\",\"removes his khaki shirt, leaving his t - shirt on.\",teases a rod with his extended fingertips and gives it a squeeze.,\"kisses her cheek, then lovingly cups his eyes tenderly.\"\n800,anetv_IRvFx8K0gAI,17060,Two people are seen standing on a stage facing one another and leads into them performing a dance routine with one another. People,Two people are seen standing on a stage facing one another and leads into them performing a dance routine with one another.,People,gold,continue to dance in the end as well as others walking around the top and ends by speaking to the camera.,continue dancing around and flipping with one another while dancing and bowing.,perform a routine around a stage and ends by waving to each of the audience.,watch the couple dance from the sidelines as the couple continues to move and end by holding a pose.\n801,anetv_IRvFx8K0gAI,12140,A woman and a man face each other inside a film strip drawing. The music plays and the scene,A woman and a man face each other inside a film strip drawing.,The music plays and the scene,gold,transitions to several vases of white fabric being put away under their needles.,switches to the music of the song.,focuses on a game record tv.,zooms in on the couple as they begin to dance together.\n802,anetv_IRvFx8K0gAI,12141,The music plays and the scene zooms in on the couple as they begin to dance together. The man and woman,The music plays and the scene zooms in on the couple as they begin to dance together.,The man and woman,gold,dance around while others sit at tables and watch them.,begin dancing together in the middle of stage with their arms wrapped around their hands.,begin tapping forlornly at the back of the stagehands as they sit down.,\"talk to each other as they watch, smiling.\"\n803,anetv_nQgmUkyblgc,18597,A barefoot woman in a purple outfit and beige headscarf is kneeling and washing dishes in an outdoor body of water in front of grass and a wooden platform. The woman,A barefoot woman in a purple outfit and beige headscarf is kneeling and washing dishes in an outdoor body of water in front of grass and a wooden platform.,The woman,gold,is then shown sitting in shade behind a mirror and looking to the camera.,stands next to a red male male who is wearing a red suit and a t - shirt.,\"stands in the snow, then turns to the crowd and demonstrates how to reach the skis with her broom.\",rinses a bronze platter in the narrow body of water and proceeds to place it in an orange plastic bucket.\n804,anetv_nQgmUkyblgc,18598,The woman rinses a bronze platter in the narrow body of water and proceeds to place it in an orange plastic bucket. The woman,The woman rinses a bronze platter in the narrow body of water and proceeds to place it in an orange plastic bucket.,The woman,gold,rinses the sink several times and sprays the water with her solution.,continues to wash other dishes and place them in the orange basket.,cleans a garment stool and puts the curler and the baking sheet down.,smells the bottle and shows how to mix liquid with a cloth and drink it.\n805,anetv_LsK452h29ng,18817,We see a man talking while sitting on a rowing machine. The man,We see a man talking while sitting on a rowing machine.,The man,gold,plays and plugs on a machine.,stands up and puts tools into the machine.,pulls the handle on the machine.,holds the curler in his hands while talking.\n806,anetv_LsK452h29ng,7048,\"After the introduction, he grabs the bar, while his feet are placed solidly in the straps and begins moving it back and forth in sort of a rowing position. However, throughout the entire process the guy never\",\"After the introduction, he grabs the bar, while his feet are placed solidly in the straps and begins moving it back and forth in sort of a rowing position.\",\"However, throughout the entire process the guy never\",gold,gets with the fishing stick and stands up as he continues to take the potato all over the man.,just pushed his paddles off so the head should stand in place to use three colors to make it appear.,goes back to prevent at the speed from 1 degree angle.,stops talking and giving tips and technique about the proper way to use the machine.\n807,anetv_LsK452h29ng,18818,The man pulls the handle on the machine. The man,The man pulls the handle on the machine.,The man,gold,turns the paddle off and drives away.,talks to the camera.,talks to the camera again.,works out on the machine.\n808,anetv_LsK452h29ng,18819,The man works out on the machine. The man,The man works out on the machine.,The man,gold,remove a wax drill from their car.,kicks the snow off his chair.,lets go of the handle.,points at an object then discards his belt.\n809,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4409,\"With the sound of tortured metal, the massive gates begin to open. People\",\"With the sound of tortured metal, the massive gates begin to open.\",People,gold,look on in trepidation.,\"stain someone into the cellar, this bloody stabbing scar and someone.\",swarm around the curve.,\"stand still, funnels in the cold air.\"\n810,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4407,They pull up less than 50 yards from the towering gates. Someone,They pull up less than 50 yards from the towering gates.,Someone,gold,plants the power line on the knife - shaped section of the rock.,takes a prisoner by his bonds.,\"fights himself to his feet, chase the bomber in the stern of the sea.\",\"is slumped on the ground, unable to move.\"\n811,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4390,Someone wearing a breast plate emblazoned with the. He,Someone wearing a breast plate emblazoned with the.,He,gold,rides at the head of a column of 500 foot soldiers from rohan and someone.,\"slurps out a list, and gives the british a look.\",tv shows a shaped screen with a deadbolt is captioned.,\", at his hotel restaurant, someone remains with his digicam on the bonnet and folds his right leg; he stomps on the foot\"\n812,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4393,\"People moving across a hellish dry landscape of twisted volcanic rock and steaming fissures. 40 miles away, mount doom\",People moving across a hellish dry landscape of twisted volcanic rock and steaming fissures.,\"40 miles away, mount doom\",gold,is unmistakably a sticky landscape.,becomes the swirling mist.,is racing toward the base zone.,rises out of the plain.\n813,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4400,\"At the black gates, someone musters his men. Someone\",\"At the black gates, someone musters his men.\",Someone,gold,draws a white stone from his belt beside the axe to his left.,lies beside someone on a dark dagger.,settles on a bike pile on the pavement in the white hall.,\"is walking half - bowed, often stumbling.\"\n814,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4403,\"His left hand often rises, as if to ward off some invisible blow. Someone\",\"His left hand often rises, as if to ward off some invisible blow.\",Someone,gold,\"reaches back, takes the contact out to face him and rubs her hand to his face.\",\"watches him, concern etched across his face.\",\"lets a tourniquet around his wrist, and lets out a deep breath, then moves over the effort to relax.\",\"closes it, then goes right to the old set, but sketches.\"\n815,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4402,His right hand is pressed against his chest supporting a heavy weight. His left hand often,His right hand is pressed against his chest supporting a heavy weight.,His left hand often,gold,used to apply paper to the man's buttocks.,\"rises, as if to ward off some invisible blow.\",\"yanks by his back, falling to the four bongos.\",\"rips down the back of his head, at arm's length, from below, plunging an image into the stone face.\"\n816,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4406,People galloping towards the black gates. They,People galloping towards the black gates.,They,gold,are unscrewing and move them by their hands.,now come closer and eagerly trimming the sides as he watches.,\"flies through the crowd, whistling around in the fierce wind.\",pull up less than 50 yards from the towering gates.\n817,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4395,Someone's force of 500 approaches the great black gates of mordor. He,Someone's force of 500 approaches the great black gates of mordor.,He,gold,positions his troops about half a mile from the.,smokes a few moments and breaks to a stop.,goes over his hooked web.,\"releases the train whole, as rusty sound drops on its door in front of a squad car.\"\n818,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4394,\"40 miles away, mount doom rises out of the plain. Someone's force of 500\",\"40 miles away, mount doom rises out of the plain.\",Someone's force of 500,gold,approaches the great black gates of mordor.,lands in the large paddy field.,hits the stone bug's head.,roars past shadowfax and mercenaries on the field.\n819,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4412,Some men are backing away losing their nerve. Someone,Some men are backing away losing their nerve.,Someone,gold,gallops in front of his army.,\"is crooked out with nowhere, under big surprise.\",continues twirling his guns.,\"and someone are taken back awkwardly, cheered by the suits.\"\n820,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4392,\"People ride directly behind him. People, still disguised in the orc armour,\",People ride directly behind him.,\"People, still disguised in the orc armour,\",gold,are fiddling with the evident.,slide down scree bank and land on the road below.,are all looking forward to watch.,\"cross to the gryffindor and the unconscious owner now, kneeling on unsteady, helpless, balanced hard and motionless.\"\n821,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4396,He positions his troops about half a mile from the. Someone,He positions his troops about half a mile from the.,Someone,gold,is running at a crouch.,comes to hurrying straight after him.,slumped against a rock.,rises across his face.\n822,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4397,Someone slumped against a rock. He,Someone slumped against a rock.,He,gold,tries to drink from his water bottle but finds it empty.,\"carefully crashes through a wall of cork doors, now masked and reveals a fluffy red dress.\",is drawn behind the statue of the four.,spots him through open door.\n823,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4401,\"Someone is walking half - bowed, often stumbling. His right hand\",\"Someone is walking half - bowed, often stumbling.\",His right hand,gold,desperately also to linger.,\"is on a nun, but their eyes are open and keeping ready.\",is lightly illuminated nervously.,is pressed against his chest supporting a heavy weight.\n824,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4411,\"People gallop back towards their small army as the orc masses slowly march toward them. Behind them, the eye of someone\",People gallop back towards their small army as the orc masses slowly march toward them.,\"Behind them, the eye of someone\",gold,watches someone in car.,is tauntingly now.,is directed toward them.,leans across a bridge of an enormous raft.\n825,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4399,Someone gratefully takes a small sip from someone's bottle. Someone,Someone gratefully takes a small sip from someone's bottle.,Someone,gold,tilts his head slightly.,picks her up and carries her out.,arranges its gaze on someone.,offers someone his hand and pulls him up.\n826,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4408,\"Someone is slumped on the ground, unable to move. Someone\",\"Someone is slumped on the ground, unable to move.\",Someone,gold,moves his horse forward.,grabs someone from behind and knocks him off the wall.,spies on the car.,stands with his gun as someone does his best.\n827,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4405,Someone throws himself to the ground. Someone,Someone throws himself to the ground.,Someone,gold,\"turns to the light, unable to stop himself.\",picks up the tin.,dives into her arms.,hears the sound of the locket and finds it locked.\n828,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4410,\"People look on in trepidation. With the eye of someone sweeping the plains around them, someone\",People look on in trepidation.,\"With the eye of someone sweeping the plains around them, someone\",gold,gets to his feet.,and someone sits in the stacks.,gets on a bus and looks for the number of people.,is fully - turned on his father - in - law.\n829,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4398,He tries to drink from his water bottle but finds it empty. Someone,He tries to drink from his water bottle but finds it empty.,Someone,gold,pours on the men as the bowl sits in a smaller bowl.,gratefully takes a small sip from someone's bottle.,stands at the bar.,drops his cup of champagne and gazes on waves.\n830,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61513,4391,He rides at the head of a column of 500 foot soldiers from rohan and someone. People,He rides at the head of a column of 500 foot soldiers from rohan and someone.,People,gold,hurry to the cargo sedan.,ride directly behind him.,gazing up his goggles as he smiles at her face.,by with the rockets from the lifeboat.\n831,lsmdc3049_MORNING_GLORY-23673,9966,She smiles at him warmly. He,She smiles at him warmly.,He,gold,smiles back at him.,meets someone's gaze then leans his head against her bedside.,nods pensively and gazes ahead.,looks someone in the eye and walks away.\n832,lsmdc3049_MORNING_GLORY-23673,9965,Someone looks down and shakes her head. She,Someone looks down and shakes her head.,She,gold,looks up then follows and beams.,lowers her voice towards someone and purses her lips.,smiles at him warmly.,leans close and plants another kiss on his lips.\n833,anetv_Hk-wwGuHuC0,10116,A man is mopping inside an airy building. The floors,A man is mopping inside an airy building.,The floors,gold,are filled with helmets and adhesive tiles.,shine as he moves the mop over the surface.,are covered wearing gray tiles.,are steadily covered with weights.\n834,anetv_Hk-wwGuHuC0,5753,He is mopping the floor of a hallway. A red cart,He is mopping the floor of a hallway.,A red cart,gold,is parked in the house.,arrives at the end of a big facility shaft.,is laid under the sneakers.,is next to the man in the hallway.\n835,anetv_Hk-wwGuHuC0,5752,A man is mopping the floor. He,A man is mopping the floor.,He,gold,gets in and starts mopping the floor.,is mopping the floor of a hallway.,dries his hands on the pool table.,is printing the tiles as he spits.\n836,anetv_Hk-wwGuHuC0,10117,The floors shine as he moves the mop over the surface. He,The floors shine as he moves the mop over the surface.,He,gold,uses him to clean the floor.,\"continues mopping, making sure every inch is clean.\",\"is boiling into the sea, feeling some drops of sprinkles on the surface.\",continues welding the wood floor with the sander and the furniture.\n837,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19937,He gets under the silky covers. Words,He gets under the silky covers.,Words,gold,retrieve it.,appear one minute later.,\"lie still, while she sits in a tunnel and stares off by the bed.\",\"brown note that was lying on the porch, he turns on his heel.\"\n838,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19935,They look into each other's eyes. Someone,They look into each other's eyes.,Someone,gold,gives him a kiss.,gazes down at someone's bed as he heads off.,smiles a little annoyed.,\"sits troubled, his face grim.\"\n839,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19941,Now someone rests with her hair in a messy pile above her bare shoulders. Someone,Now someone rests with her hair in a messy pile above her bare shoulders.,Someone,gold,\"stares off, transfixed.\",places the board in her face.,holds the hand of the tiger's lantern.,\"removes the lens, then mixes it into room.\"\n840,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19936,\"As someone's face hovers over her, he smiles. He\",\"As someone's face hovers over her, he smiles.\",He,gold,gets under the silky covers.,shoot up dead people as they stare at each other.,looks up at someone.,lies curled up beside her on a dance floor.\n841,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19939,Now someone and someone lie side - by - side. Someone,Now someone and someone lie side - by - side.,Someone,gold,peers down on the roof.,stares at the screen.,runs her fingertips between the straps of her white camisole.,waits sadly as the stands stands on the horizon line.\n842,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19934,Now under luxurious bedding someone lies on top of someone. They,Now under luxurious bedding someone lies on top of someone.,They,gold,look into each other's eyes.,\"glow on a narrow catwalk, and someone's a girl, emaciated, parachute leaps into the boat.\",hold him down in his lap as he brings people.,power drills on a shelf.\n843,lsmdc3003_40_YEAR_OLD_VIRGIN-1303,19938,Words appear one minute later. Now someone and someone,Words appear one minute later.,Now someone and someone,gold,twist quickly from open - linked walkway doors.,lie side - by - side.,jog down the hallway.,\"run downstairs and rock through the steep, rundown paths.\"\n844,anetv_sEGceBU8icE,6870,A man is painting on a large black canvas. He,A man is painting on a large black canvas.,He,gold,ties a white piece of paper.,uses a brush to polish the bottom of the carpet.,uses an electric cutter.,flips the painting around.\n845,anetv_sEGceBU8icE,11740,A man is standing on a black stage. He,A man is standing on a black stage.,He,gold,is holding the sax as he plays a violin.,is talking to the camera about the bicycle.,puts his nose up in a bow.,is using paints on a large black canvas.\n846,anetv_sEGceBU8icE,11741,He is using paints on a large black canvas. He,He is using paints on a large black canvas.,He,gold,is giving an diagram on the layer of the dead plants.,\"works quickly, producing a piece of art work.\",steps along his couch with the paint brush and paint and his roller.,paint beige tape down several palette.\n847,anetv_6lYTHj9vImo,18828,\"They then take off running to the beach to grab more water as the boy comes and looks at their work. Once they are done, both of the girls\",They then take off running to the beach to grab more water as the boy comes and looks at their work.,\"Once they are done, both of the girls\",gold,get together as the hoops continue riding around on their boards taking places.,take off running to the water but then stop midway to come back and get their floats.,get out of the water and swim to form another sand ball.,are next away and stand and talk.\n848,anetv_6lYTHj9vImo,18827,The girls have about six sand castles and a large circle surrounding it filled with water. They then,The girls have about six sand castles and a large circle surrounding it filled with water.,They then,gold,suddenly catch up and they walk to the edge of the pool.,take off running to the beach to grab more water as the boy comes and looks at their work.,use the yellow board to remove their skin and make a black splash.,try the water as well as.\n849,anetv_6lYTHj9vImo,18826,\"Four kids are outside in the beach playing in the sand, two boys on the left and two girls on the right. The girls\",\"Four kids are outside in the beach playing in the sand, two boys on the left and two girls on the right.\",The girls,gold,run and fall and get into a sand bucket and walk down the aisle.,have about six sand castles and a large circle surrounding it filled with water.,take their own wedding digs and she poses with their hands and makes to ornament on the tree.,lift all alike to the ground above the water splash when lands on the snow and the black dog watches.\n850,lsmdc3049_MORNING_GLORY-23491,15998,They walk slowly into someone's dark apartment. Someone,They walk slowly into someone's dark apartment.,Someone,gold,opens a pair of suitcases for the floor.,\"stands, staring intently at his nephew.\",walks through different rooms in the huge apartment.,arrives at the window.\n851,lsmdc3049_MORNING_GLORY-23491,15999,Someone walks through different rooms in the huge apartment. Someone,Someone walks through different rooms in the huge apartment.,Someone,gold,extends the womans hand.,walks through a dark room towards another lamp lit room.,steps out and finds someone in the stairway.,pauses and looks up in surprise.\n852,lsmdc3049_MORNING_GLORY-23491,15995,She shoves him into a taxi. The taxi,She shoves him into a taxi.,The taxi,gold,breaks away at its curb and waits for someone to stand in front of a neighboring building.,drives off without her.,pulls out then someone get into the car's.,follows past behind someone.\n853,lsmdc3049_MORNING_GLORY-23491,15997,It pulls up outside an apartment building. They,It pulls up outside an apartment building.,They,gold,\"run by someone, ejects the automatic.\",walk slowly into someone's dark apartment.,leave - looking confused.,\"closes his hood, strides to the settee and pulls the signal.\"\n854,lsmdc3049_MORNING_GLORY-23491,15996,The taxi drives off without her. It,The taxi drives off without her.,It,gold,pulls up outside an apartment building.,does some stunts to someone.,holds up her spool.,falls close to her face.\n855,lsmdc1029_Pride_And_Prejudice_Disk_One-83813,14753,\"People are hurrying excitedly over to their house, Longbourn. They\",\"People are hurrying excitedly over to their house, Longbourn.\",They,gold,are trying to go barefoot.,closes the door behind her and she closes her hands.,burst through the front door.,rise up from it.\n856,anetv_kUQ4bTeoG-Y,9319,\"Several runners are gathered, ready to begin a race. They\",\"Several runners are gathered, ready to begin a race.\",They,gold,slam into each other's arms.,take of running together toward the ultimate finish line.,pass a large girl at the back of the court.,are all in a bowl.\n857,anetv_kUQ4bTeoG-Y,11767,The man poses and runs around in a parking lot. The man,The man poses and runs around in a parking lot.,The man,gold,gets to his feet and perform the volts stadium.,jumps around and dances in a crowded area.,walks to fluff up the shoes.,walks away on the slack line.\n858,anetv_kUQ4bTeoG-Y,11766,A man plays with his nipple while another man watches. The man,A man plays with his nipple while another man watches.,The man,gold,plays the movie a more times.,poses and runs around in a parking lot.,gives the pints of water into his mouth and plays.,balances gracefully with a cord on the drum.\n859,anetv_kUQ4bTeoG-Y,9318,A man is shown dancing around in a parking lot. Several runners,A man is shown dancing around in a parking lot.,Several runners,gold,\"are gathered, ready to begin a race.\",are set in the terrain and other women watch on the sides.,are shown performing various poses from various locations.,stand behind he gently punching.\n860,anetv_kUQ4bTeoG-Y,11771,The man interacts with others. The man,The man interacts with others.,The man,gold,smiles and pulls his mask on.,sets down their cue and adjusts the object in the end.,talks as he sweeps the pole across the surface.,squats and stretches in a parking lot.\n861,anetv_kUQ4bTeoG-Y,11770,Still images of the man are shown. The man,Still images of the man are shown.,The man,gold,dances with bananas in hand.,is being interviewed by the grooming dogs.,stands on the rod to talk about doing tricks.,continues to rap with a bat.\n862,anetv_kUQ4bTeoG-Y,11769,The man jumps a railing and hugs two others. The man,The man jumps a railing and hugs two others.,The man,gold,leaves the couple leaves the rope with the musician.,climbs the bus to a shop.,\"runs in a marathon alongside others, while spectators watch.\",flaps the levers then uses the boat.\n863,lsmdc3039_JACK_AND_JILL-2613,10109,Someone wears a lobster taped to his back. Someone,Someone wears a lobster taped to his back.,Someone,gold,wakes on the floor.,pitches his sunglasses on.,looks over the audience.,squirts his hands against his own mouth.\n864,anetv_p4KNKI2UZLc,9950,\"After the gymnast jumps, spins and turns. The gymnast stands on the end of the beam, then she\",\"After the gymnast jumps, spins and turns.\",\"The gymnast stands on the end of the beam, then she\",gold,leads the gymnast up to the mat.,does her routine off the arms doing a few gymnastics moves.,leap and falls on the ground on her side.,runs and flips to times and end stand on the mat.\n865,anetv_p4KNKI2UZLc,9951,\"The gymnast stands on the end of the beam, then she runs and flips to times and end stand on the mat. After, the gymnast raise her arms and she\",\"The gymnast stands on the end of the beam, then she runs and flips to times and end stand on the mat.\",\"After, the gymnast raise her arms and she\",gold,is congratulated by people.,\"grabs several batons, then does cartwheels in front of the crowd.\",jumps repeatedly raising the entire hand.,\"holds no arms and bounces on them, then does several flips and flips in the air.\"\n866,anetv_p4KNKI2UZLc,9949,\"An American gymnast climbs the balance beam, the she performs four flips backwards and one flip forward. Then, the gymnast spins backward one time on her side, then she\",\"An American gymnast climbs the balance beam, the she performs four flips backwards and one flip forward.\",\"Then, the gymnast spins backward one time on her side, then she\",gold,\"jumps on the mat, and does some flips in the air.\",jumps and flips two times backwards.,dismounts and walks onto a mat.,moves her arms in different directions.\n867,anetv_6-cHUULLVGQ,8920,A guy is power washing a car. The guy,A guy is power washing a car.,The guy,gold,builds the man pressure paint.,lathers up the car.,falls off and jacks the car.,shovels the snow with a hose.\n868,anetv_6-cHUULLVGQ,8921,The guy lathers up the car. A white rug,The guy lathers up the car.,A white rug,gold,is on the hood of a black car.,is visible in the same living box.,scrapes the window before breaking newspaper dumps.,shaves the man a finger over his eye.\n869,anetv_6-cHUULLVGQ,13921,They start wiping the car with a soapy sponge. They,They start wiping the car with a soapy sponge.,They,gold,zooms in and adds to the grains of water before water away.,\"take ropes up their signs from there several times and combines the tiles, clean it, show it to each side.\",spray the soap off of the car with the hose.,rinse the water with their hand and put them all around the faucet.\n870,anetv_6-cHUULLVGQ,13920,A person is spraying a car with a hose. They,A person is spraying a car with a hose.,They,gold,smears their hands up and down.,is talking on a cell phone.,continue kicking up photos of the paper.,start wiping the car with a soapy sponge.\n871,lsmdc0020_Raising_Arizona-57109,19106,As another police officer starts to lead him away. Struggling to call back over his shoulder as he,As another police officer starts to lead him away.,Struggling to call back over his shoulder as he,gold,is firmly led out the door.,peers down at people on the desk.,peers on his counter radio.,follows his limo across a freeway.\n872,lsmdc0020_Raising_Arizona-57109,19105,Looking up through her tears as someone is led away. As another police officer,Looking up through her tears as someone is led away.,As another police officer,gold,leaves carrying her rollers.,\"enters, the lamp freezes.\",promptly walks into the office.,starts to lead him away.\n873,lsmdc0020_Raising_Arizona-57109,19107,As someone is once again escorted toward his cell. Someone,As someone is once again escorted toward his cell.,Someone,gold,gets shot to the water.,\"is now in the middle - background, having worked his way about halfway up the corridor since last time we saw him.\",is a ref racing over someone's body and tackles it down next to him.,takes the coat to someone but finds cocaine.\n874,anetv_gnVupEzu59g,8214,People are snowboarding down a hill of snow. A man in red goggles,People are snowboarding down a hill of snow.,A man in red goggles,gold,begins talking to the camera.,is talking while a young man stands behind him.,is standing in the snow.,is laying in the snow.\n875,anetv_gnVupEzu59g,8215,A man in red goggles is standing in the snow. People,A man in red goggles is standing in the snow.,People,gold,is jumping on the sands wood snow covered sand.,are getting ready to ride in a car.,are riding a ski lift up the mountain.,are standing on front of the fence.\n876,anetv_aYC7F72n924,17495,\"A construction worker is standing in a building, holding a mop and bucket. He\",\"A construction worker is standing in a building, holding a mop and bucket.\",He,gold,\"shows off the bucket and solution, then mops the floor in a demonstration.\",removed the car in a bottle of water from a hanger.,listens outside while doing several different tricks and weightlifting etcetera.,needs a mop pad on the floor.\n877,anetv_aYC7F72n924,17496,\"He shows off the bucket and solution, then mops the floor in a demonstration. He\",\"He shows off the bucket and solution, then mops the floor in a demonstration.\",He,gold,gets the floor completely clean and shiny before standing to one side.,goes through a bucket with a spray and many bottles of beer in front of him.,dips to a bucket of water inside a bucket and sits even more.,demonstrates how to break the shoe.\n878,anetv_qWdjYyFfrTM,158,The man is shown back without the sunglasses. Another window displaying the performer,The man is shown back without the sunglasses.,Another window displaying the performer,gold,\"is overlaid, is shown in the focus and the final screen then real, glitter is shown.\",'s exhibits is shown on the screen.,has no change from his attitude.,is shown in the corner of the video.\n879,anetv_qWdjYyFfrTM,157,\"The man is now wearing sunglasses while playing, grooving to the music. The man\",\"The man is now wearing sunglasses while playing, grooving to the music.\",The man,gold,plays with his own in front of his face.,returns to the current man and gives him a high five each time.,finishes and scenes of the woman making a video of her playing.,is shown back without the sunglasses.\n880,anetv_qWdjYyFfrTM,156,A production graphic is shown along with a link for more media. This,A production graphic is shown along with a link for more media.,This,gold,teeters springs out of his way.,fades into a man starting to play the saxophone in his living room up to a microphone.,engages in a game of jousting.,\"uses a glass number, and demonstrates how to use something on the tone of a elliptical.\"\n881,lsmdc3085_TRUE_GRIT-40466,10647,\"Smiling, she goes and strokes its nose. Someone\",\"Smiling, she goes and strokes its nose.\",Someone,gold,picks up her clipboard.,closes her eyes as she stares down the glass.,reaches for a package.,sits in the saddle.\n882,lsmdc0001_American_Beauty-45812,10704,The garage is in the process of becoming someone's sanctuary. Someone,The garage is in the process of becoming someone's sanctuary.,Someone,gold,\", lost in the sketchbook.\",\", someone, someone engaging in emotional pain, pulling the death escort out of the bag and tosses them off the bed.\",is heading for her door.,\"finishes his last rep, straining, then puts the weights in their rack and sits up.\"\n883,lsmdc0001_American_Beauty-45812,10706,\"Someone looks up, squinting at: The door raises to reveal someone, silhouetted against the bright sunlight outside, pointing a remote at us. Someone\",\"Someone looks up, squinting at: The door raises to reveal someone, silhouetted against the bright sunlight outside, pointing a remote at us.\",Someone,gold,turns and smiles at her.,leans back on the bench and grabs the weights.,\"sits next to someone, adjusts her head, and replaces her helmet.\",heads toward the cage.\n884,lsmdc0001_American_Beauty-45812,10703,\"Someone, in a T - shirt and gym shorts, lies on a new weight bench, doing bench presses with shiny new barbells. The garage\",\"Someone, in a T - shirt and gym shorts, lies on a new weight bench, doing bench presses with shiny new barbells.\",The garage,gold,is dark behind his floors.,is in the process of becoming someone's sanctuary.,is filled with bloodstained debris.,\"is full of dust, colorful information an asked angel to begin.\"\n885,lsmdc0001_American_Beauty-45812,10705,\"Someone finishes his last rep, straining, then puts the weights in their rack and sits up. Someone looks up, squinting at: The door\",\"Someone finishes his last rep, straining, then puts the weights in their rack and sits up.\",\"Someone looks up, squinting at: The door\",gold,between the shop doors closed.,\"raises to reveal someone, silhouetted against the bright sunlight outside, pointing a remote at us.\",\"spun just above the wide open leather, as if in a trance.\",and precedes him onward.\n886,lsmdc0001_American_Beauty-45812,10701,\"Someone stops and sniffs the air, frowning. She\",\"Someone stops and sniffs the air, frowning.\",She,gold,holds her hand out.,stares fixedly at his bearded reflection.,peers through the window.,offers someone back - the tray.\n887,lsmdc0001_American_Beauty-45812,10707,\"Someone is seated behind his desk, reading a document. Someone\",\"Someone is seated behind his desk, reading a document.\",Someone,gold,\"sits across from him, smiling.\",fills his wine glass.,wants to help at her breakfast.,carries with a pair of walkie - talkie.\n888,lsmdc0001_American_Beauty-45812,10700,\"Someone, carrying a basket of fresh cut roses, passes by the garage window. Someone\",\"Someone, carrying a basket of fresh cut roses, passes by the garage window.\",Someone,gold,\"stops and sniffs the air, frowning.\",picks out a thread and pulls it out from under him.,contains a cart over some boards.,inserts a key into the open backseat.\n889,lsmdc0001_American_Beauty-45812,10702,\"She peers through the window. Someone, in a T - shirt and gym shorts,\",She peers through the window.,\"Someone, in a T - shirt and gym shorts,\",gold,\"comes halfway down the stairs, but leans down and does the same.\",\"lies on a new weight bench, doing bench presses with shiny new barbells.\",\"steps into a house, watched by an airborne camera.\",is a bullet rifle in his.\n890,anetv_8wB0BOjuyes,17648,One of the men reach down with their stick and hits the ball that is on the grass and it goes rolling fast. The horses all go running and the man once again reaches down and hits the ball with his stick and they all,One of the men reach down with their stick and hits the ball that is on the grass and it goes rolling fast.,The horses all go running and the man once again reaches down and hits the ball with his stick and they all,gold,jump between the tree before hitting themselves into the sand.,shake some chips while they raise the money.,continue to ride on their running horses.,run out the door and walk on their path.\n891,anetv_8wB0BOjuyes,9331,The man in white hits the ball again. Both men,The man in white hits the ball again.,Both men,gold,are balls towards the man skate board.,continue to arm wrestle.,shake off the rake and throw the ball.,turn their horses around.\n892,lsmdc0043_Thelma_and_Luise-68343,17103,\"People, both looking a little rougher than we've seen so far, drive away. Someone, fbi Man, various other police and detective types,\",\"People, both looking a little rougher than we've seen so far, drive away.\",\"Someone, fbi Man, various other police and detective types,\",gold,pull up in front of the house.,starts side - them.,is shown with a broken telephone number.,approaches the prisoners something accidentally by himself.\n893,anetv_1WR4jgFCqRw,15844,An older gentleman in a blue shirt is painting a wooden fence. He,An older gentleman in a blue shirt is painting a wooden fence.,He,gold,is using a wood tree in his yard.,talk about the process that the gentleman was making.,picks up the paint bucket and walks up the sidewalk.,is climbing the fence with his back talking.\n894,anetv_TGVWaA_xTGE,1471,A woman is seen sitting behind a set of bongo drums and playing along while speaking to the camera. The woman,A woman is seen sitting behind a set of bongo drums and playing along while speaking to the camera.,The woman,gold,continues her movements while pausing to speak to the camera and showing several more shots of her well plays.,continues hitting the drums while speaking to the camera and singing along.,continues speaking and ends by moving away in place.,continues playing the trumpet while speaking to the camera while speaking to the camera.\n895,lsmdc0022_Reservoir_Dogs-59201,16207,\"Someone finishes his playing possum piss, and walks past the sheriffs over to the sink. He\",\"Someone finishes his playing possum piss, and walks past the sheriffs over to the sink.\",He,gold,sets the shoes and switches his feet to the polishing board frame.,\"takes a few steps into the boat's laundry room, gently reenters the backdoor.\",moves his feet up.,looks down and watches someone wash his hands.\n896,lsmdc0022_Reservoir_Dogs-59201,16208,He looks down and watches someone wash his hands. Someone,He looks down and watches someone wash his hands.,Someone,gold,glances back at the photographs of someone in the pews.,sets the flower on her lap and stands next to someone.,peeks into the common room.,walks away from the cop.\n897,anetv_ay_YB-S4qR0,17783,A close up of a dart board is shown as well as several darts coming in off the distance. The video,A close up of a dart board is shown as well as several darts coming in off the distance.,The video,gold,continues showing the darts moving closer in slow motion.,ends with the man putting plaster down while still to the camera.,ends with the closing graphics shown on the screen.,captures the people afterwards throwing up at the camera and ends with a person running at the end.\n898,anetv_ay_YB-S4qR0,12955,Gradually darts begin to move into frame. More darts,Gradually darts begin to move into frame.,More darts,gold,are shown followed by with the goalie blocking.,\"are shown all into the shop, zooming in and out.\",are seen moving into frame.,are shooting out as the camera panning to the moon of the overlook.\n899,anetv_ay_YB-S4qR0,12954,A close up of a dart board is shown. Gradually darts,A close up of a dart board is shown.,Gradually darts,gold,begin to move into frame.,are shown while the camera watches her on her sides.,are shown on a wall and a nice distance.,are shown with several shots running are shown.\n900,lsmdc3084_TOOTH_FAIRY-39738,11774,He heads to the kitchen. Someone,He heads to the kitchen.,Someone,gold,gets whipped cream and strawberries from the fridge.,\"his keys, someone leans against the wall and beams.\",she takes another bottle of vodka.,\"to meet him in their attic cafe, a lieutenant approaches.\"\n901,lsmdc3084_TOOTH_FAIRY-39738,11777,\"In the kitchen, light flashes and someone finds himself in his tooth fairy uniform. Someone\",\"In the kitchen, light flashes and someone finds himself in his tooth fairy uniform.\",Someone,gold,\"takes the pliers from his ear, speaks, and slowly walks towards him.\",spots a shapely girl devouring him with food.,rushes outside and answers his phone.,slips on the side of the front wall and gazes up as someone glares at someone.\n902,lsmdc3084_TOOTH_FAIRY-39738,11775,Someone gets whipped cream and strawberries from the fridge. As he,Someone gets whipped cream and strawberries from the fridge.,As he,gold,picks up a chainsaw.,sips his vodka he gives to a loaf for taste.,returns to the living room.,\"glances about the other, an ankle nears just below the floor into the sea.\"\n903,lsmdc3084_TOOTH_FAIRY-39738,11773,He grabs it from a nearby table and reads a text message. He,He grabs it from a nearby table and reads a text message.,He,gold,sits very close to the camera.,unbuttons someone's calm blue robe.,heads to the kitchen.,approaches someone on the phone.\n904,lsmdc3026_FRIENDS_WITH_BENEFITS-1575,12062,He turns to look at the actual structures. Now someone,He turns to look at the actual structures.,Now someone,gold,sets his shades on the floor as the tattoo artist picks someone up.,peers out from the rooftop overlooking manhattan.,races through the crowded.,saunters off in a bay scream.\n905,anetv_2QydTDAYJsA,15803,He lassos a calf with his rope. He,He lassos a calf with his rope.,He,gold,\"off the horse, he dismounts the saddle.\",\"back to the horse, and ties the calf in the air like calf.\",continues throwing the calf and ties up the calf.,jumps down and ties up the calf.\n906,anetv_2QydTDAYJsA,14844,A large group of people are seen sitting around an arena with a man sitting on top of a horse. The man then,A large group of people are seen sitting around an arena with a man sitting on top of a horse.,The man then,gold,stretches down the lady and walks away from the camera.,begins jumping over the bar while others watch on the sidelines.,rides into the pit and ropes up the calf running around.,cuts off the horse while holding the rope over his head.\n907,anetv_2QydTDAYJsA,14845,The man then rides into the pit and ropes up the calf running around. The man,The man then rides into the pit and ropes up the calf running around.,The man,gold,continues pumping the calf and jumping back along to his horse.,lays down on the horse and points the horse.,jumps up and runs after a calf and straps him on calf.,ties up the calf and walks away from roping it up.\n908,anetv_2QydTDAYJsA,15802,A cowboy is released from a gate on a horse. He,A cowboy is released from a gate on a horse.,He,gold,ropes a calf while other man.,lassos a cow by a red calf and ties it up.,lassos a calf with his rope.,jumps off the horse and chases after another tree.\n909,anetv_pASyH2NPOOw,9511,The man does a spin kick. The man,The man does a spin kick.,The man,gold,does several flips and flips.,spins the man on top of the bars.,flips himself on to the balance beam.,does a spin and duck.\n910,anetv_pASyH2NPOOw,9510,We see a man flipping and performing Capoeira cut with blue title screens. The man,We see a man flipping and performing Capoeira cut with blue title screens.,The man,gold,does a spin kick.,checks out the video screen.,turns to see through the chefs.,shoots the man a face.\n911,anetv_pASyH2NPOOw,9509,We see a blue opening screen. We,We see a blue opening screen.,We,gold,see a man holding a girl talking in front of him.,see the man raiser his bike and slide.,see a man working down the wall.,see a man flipping and performing capoeira cut with blue title screens.\n912,lsmdc3076_THE_SOCIAL_NETWORK-35335,16245,\"In his fists, he turns and heads out. Someone\",\"In his fists, he turns and heads out.\",Someone,gold,\"runs her fingertips over his chest until he feels very deep - - irons, gray.\",twirls them into the club.,\"walks into the sitting room, folds his papers.\",strolls over and hands him a check.\n913,lsmdc3076_THE_SOCIAL_NETWORK-35335,16248,\"Turning on the spot, someone faces the staff and shrugs playfully. Facing someone, someone\",\"Turning on the spot, someone faces the staff and shrugs playfully.\",\"Facing someone, someone\",gold,puts a hand on his shoulder.,sits facing his mentor.,gives someone a nod.,walks up the steps of the bus.\n914,lsmdc3076_THE_SOCIAL_NETWORK-35335,16246,\"Someone winds up to punch someone, who recoils cravenly. Someone\",\"Someone winds up to punch someone, who recoils cravenly.\",Someone,gold,stares after his friend with a furrowed brow and swallows hard.,plants his feet atop the banister and tumbles down the street.,cheers the crone as someone flee.,\"aggressively steps back on the rod barrier, then draws someone to belly iv and comes up.\"\n915,anetv_rczR9C00KOM,18490,A man uses a scraper to remove paint from a ceiling. He then,A man uses a scraper to remove paint from a ceiling.,He then,gold,talks to the camera and sits up in a pile of snow.,replaces it with a light brown color.,uses a rag to wipe them down.,uses a paint nozzle to clean out the heel of the roof.\n916,anetv_rczR9C00KOM,5971,The first man stops plastering and talks to the second man some more. The first man,The first man stops plastering and talks to the second man some more.,The first man,gold,shoots three rounds of stands with his left in a hand location and giving his mouth signal.,laughs at the camera while holding the bench he had been standing on.,talks to the camera about something on the field.,walks with the ends of the disc and he speaks to the others.\n917,anetv_rczR9C00KOM,5964,A man applies plaster to the ceiling with tools while two others work at other tasks in the background. A closeup of the ceiling section,A man applies plaster to the ceiling with tools while two others work at other tasks in the background.,A closeup of the ceiling section,gold,is shown where the person understands.,is shown while the man gets more plaster.,is shown as a girl in a red movie is climbing on his back.,is shown with another white and some man cleaning.\n918,anetv_rczR9C00KOM,5965,A closeup of the ceiling section is shown while the man gets more plaster. The man,A closeup of the ceiling section is shown while the man gets more plaster.,The man,gold,is holding a lesson while gesturing to a camera to watch photos of people on the ground above the camera.,continues to apply plaster to the ceiling.,holds up a camera and paints a hand in front of the mirror at the ceiling.,demonstrates how to paint a wall with artwork.\n919,anetv_rczR9C00KOM,5967,The man resumes plastering the ceiling. One of the other men,The man resumes plastering the ceiling.,One of the other men,gold,picks up a rope.,talk to the man plastering the ceiling.,is watching the boy juggling.,sets the box up on top of the tree and bends closer to the boy.\n920,anetv_rczR9C00KOM,5968,One of the other men talk to the man plastering the ceiling. The first man,One of the other men talk to the man plastering the ceiling.,The first man,gold,reaches down hop in the rope written up behind a tree.,stops plastering and responds to the second man.,blows smoke covering the windows.,walks over and lifts the metal shoe up with his hands.\n921,anetv_rczR9C00KOM,5966,The talks to the camera as he gets more plaster. The man,The talks to the camera as he gets more plaster.,The man,gold,spits again and washes the shirt with the towel before laying it back down.,resumes plastering the ceiling.,finishes the video quick and hugs his arms and goes to the spot.,blows the male another bit all around while a bald man stands behind him.\n922,anetv_rczR9C00KOM,5969,The first man stops plastering and responds to the second man. The second man,The first man stops plastering and responds to the second man.,The second man,gold,\"holds him close, then lifts his head and reaches with his shoulder.\",uses his black razor to show how amazing a cat is.,hands up a seven.,continues to talk to the first man while using a pipe as a penis.\n923,anetv_rczR9C00KOM,5970,The second man continues to talk to the first man while using a pipe as a penis. The first man,The second man continues to talk to the first man while using a pipe as a penis.,The first man,gold,\"is shown on the wall using a ring of the other pug, but he reaches an end of a rope.\",passes a couple and away as intense camera sniper and allows a reaction below.,pulls a hanging from his front windshield and pins it in between an older woman smiling.,stops plastering and talks to the second man some more.\n924,anetv_4vdclFJFrdk,10590,\"The first woman is shown practicing more floor gymnastics, with occasional slow motion replays of her action. The second woman\",\"The first woman is shown practicing more floor gymnastics, with occasional slow motion replays of her action.\",The second woman,gold,stands by excitedly and then alternates her ballet chair before talking to the camera eating before her behind the ground.,is shown performing some sort of pose.,'s leg is off and she is getting to her feet.,starts to jump from the ski set.\n925,anetv_4vdclFJFrdk,10591,The second woman is shown performing some sort of pose. The first woman,The second woman is shown performing some sort of pose.,The first woman,gold,\"kneels, swings slowly forward, backwards.\",is shown performing gymnastics once again.,disappears onto the wall.,begins to play badminton.\n926,anetv_4vdclFJFrdk,10593,The second woman is shown stretching her leg in the air. The first woman,The second woman is shown stretching her leg in the air.,The first woman,gold,sits down at her mat and shaves her legs up and down her sides and body.,is shown performing gymnastics once more.,put her leg up off the ground and went back to do yoga.,does the skates and lifts the weight and left.\n927,anetv_4vdclFJFrdk,10595,The second woman is shown in some sort of pose once again. The first woman,The second woman is shown in some sort of pose once again.,The first woman,gold,is interviewed in the room and goes to the camera.,is briefly shown about what she has been holding.,is shown performing gymnastics yet again.,\"is then shown tossing the full dress for the camera, then taking it with her.\"\n928,anetv_4vdclFJFrdk,10594,The first woman is shown performing gymnastics once more. The second woman,The first woman is shown performing gymnastics once more.,The second woman,gold,walks away one pass her and continues performing tricks and flipping around.,presents the darts and begins walking back and fourth speaking to the camera.,enters to interact with several men.,is shown in some sort of pose once again.\n929,anetv_4vdclFJFrdk,10589,The two women are shown performing the same action in turn. The first woman,The two women are shown performing the same action in turn.,The first woman,gold,throws the ball and the credits of the clip are shown.,introduces her friend someone.,talks in the background several slow motion videos.,\"is shown practicing more floor gymnastics, with occasional slow motion replays of her action.\"\n930,anetv_4vdclFJFrdk,10592,The first woman is shown performing gymnastics once again. The second woman,The first woman is shown performing gymnastics once again.,The second woman,gold,shows the girl all the fun spinning.,is shown stretching her leg in the air.,is shown again talking to him around and swinging mjolnir.,is shown twisting the pole very close to the location.\n931,anetv_Z-kXPcLsxBg,13770,\"A purple rope is attached to a blue one, which is then stretched between two trees. A man\",\"A purple rope is attached to a blue one, which is then stretched between two trees.\",A man,gold,bounces and balances on the rope as three other men watch.,tried rake soft on the tree.,stands on a flat object and spins around in the middle of his arms.,is standing behind another cow.\n932,anetv_iZlG0UOtImQ,18119,\"The boy grabs another stick from under the pool table, puts it on the table, chalks his stick, and then successfully hits the ball into the hole despite a woman trying to distract him. The boy goes around the table and continues to hit the remaining balls into the holes, the crowd cheers him on, and he\",\"The boy grabs another stick from under the pool table, puts it on the table, chalks his stick, and then successfully hits the ball into the hole despite a woman trying to distract him.\",\"The boy goes around the table and continues to hit the remaining balls into the holes, the crowd cheers him on, and he\",gold,continues to spin away and resumes hit still.,goes around the crowd and gives everyone high fives.,cheers with the customers who both win.,is still trying to defend them.\n933,anetv_gx6QvOXwetM,518,They grab some pieces and use the scissors to cut it up. Then,They grab some pieces and use the scissors to cut it up.,Then,gold,are shown on the roof tiles on the porch.,get in a tank showing how to wash and clean it off.,throw the grass they cut back behind them.,peel away off the pair of associated pictures then a man standing on the floor.\n934,anetv_gx6QvOXwetM,517,Two boys are kneeling in the grass cutting the grass with a pair of scissors. They,Two boys are kneeling in the grass cutting the grass with a pair of scissors.,They,gold,shoot the tree and scan the area.,grab some pieces and use the scissors to cut it up.,throw the ball in the grass as the two kids come in all the area to walk off the grass.,reach out gently to paint the frost on the tree.\n935,anetv_gx6QvOXwetM,519,\"Then throw the grass they cut back behind them. They are going at it kind of quickly, they\",Then throw the grass they cut back behind them.,\"They are going at it kind of quickly, they\",gold,put the parasails on the tree again.,\"make it up, lets it go.\",seem like very bored little kids with nothing else to do.,found in each other to wait the first after.\n936,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,210,Someone begins to run his hands over the walls - - frantic. Someone,Someone begins to run his hands over the walls - - frantic.,Someone,gold,\"sits on a chair which tips back, hitting the wall behind it.\",leads someone on his way back to the davenport.,is empty the subway.,comes in as well.\n937,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,194,Four nazi radiomen and the Woman are still hard at work with controls and coordinates. Suddenly the Woman,Four nazi radiomen and the Woman are still hard at work with controls and coordinates.,Suddenly the Woman,gold,looks up and spots people.,walks up to prep the tattoo for the tattoo and then puts the paper on it.,move from right up side down.,is holding a dot of.\n938,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,212,He rolls down the stairs. Someone,He rolls down the stairs.,Someone,gold,stops them and disappears for a moment.,lowers a milk bottle on his arm.,flourishes a piece of fabric binding his wrist.,follows someone down the staircase.\n939,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,205,\"Someone strides purposefully down the hallway. He barks an order, and two more someone\",Someone strides purposefully down the hallway.,\"He barks an order, and two more someone\",gold,reach someone's bag.,leads someone to the mezzanine.,fall into step with him.,walk off.\n940,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,219,As someone and the people rush to the dock. Someone,As someone and the people rush to the dock.,Someone,gold,sees that a motorboat is missing.,\"drifts hurriedly over to someone, who sags helplessly.\",throws the cat at its feet and stares at him expectantly.,grabs someone and looks through the window.\n941,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,215,\"We see motorboats, gunboats, supply boats, etc. Someone\",\"We see motorboats, gunboats, supply boats, etc.\",Someone,gold,looks up from a bottle.,boards one of the motorboats and starts the motor.,drinks out of the glass.,walks over to him.\n942,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,192,Their backs are turned to people. Someone's foot,Their backs are turned to people.,Someone's foot,gold,runs into his foot.,hits the grill again.,slips out on the umbrella case.,lie on someone's chest.\n943,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,208,People step into an empty room. Someone,People step into an empty room.,Someone,gold,looks horrified by what he is been forced to do as someone searches frantically for an exit.,approaches with families relieved their posters.,holds his shirt closed.,sits at his office room reading a laptop.\n944,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,211,The floor at someone's feet suddenly begins dropping away! He,The floor at someone's feet suddenly begins dropping away!,He,gold,comes up to his niece.,rolls down the stairs.,places a hand in front of someone's face and slams him into the wall.,let out a sigh as little someone steps away from someone.\n945,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,220,Someone sees that a motorboat is missing. He,Someone sees that a motorboat is missing.,He,gold,sinks on the roof.,walks to the deck where someone burns his fingers.,orders the people into a boat.,unlocks it and removes his overcoat.\n946,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,191,\"Where a nazi radioman wearing headphones sits at an elaborate panel of dials, switches and meters, and a woman stands over a map plotting coordinates. Their backs\",\"Where a nazi radioman wearing headphones sits at an elaborate panel of dials, switches and meters, and a woman stands over a map plotting coordinates.\",Their backs,gold,vinyl panels push out of black - and gap between the lines and lower lines.,\"are held close by the words, the screen by the logo.\",down from a still game of hockey.,are turned to people.\n947,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,198,\"The Radiomen move cautiously toward the flame, shielding their faces with one hand, holding their guns with the other. They\",\"The Radiomen move cautiously toward the flame, shielding their faces with one hand, holding their guns with the other.\",They,gold,try to struggle one of the fires.,glimpse his helmet as he moves deeper into the forest.,help him out of the car.,'ve hidden themselves up the chimney.\n948,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,190,Someone struggles to free his hands. His foot,Someone struggles to free his hands.,His foot,gold,trails off of them.,kicks out and accidentally hits a metal grill that operates a secret door.,slows again as his approach reads the ancient's name.,bounds someone's side.\n949,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,199,They've hidden themselves up the chimney. And now they,They've hidden themselves up the chimney.,And now they,gold,\"drop down, behind the radiomen.\",are a nice place.,are hiding behind a tree.,just get awake in bed.\n950,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,202,\"Someone presses against the wall, which rotates again. The other someone\",\"Someone presses against the wall, which rotates again.\",The other someone,gold,watch a monitor on the wall.,rush forward to him.,caresses his clock's shoulder and embeds him against a wall.,climbs in to split the open steps.\n951,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,207,He hands the case to someone and they begin to run. People,He hands the case to someone and they begin to run.,People,gold,pass around through local people in wetsuits.,\", a bunch of young people black clothes with colorful packets of braces are lying on it.\",roll around someone's body as someone high blocks their feet.,step into an empty room.\n952,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,200,\"And now they drop down, behind the Radiomen. As they struggle they\",\"And now they drop down, behind the Radiomen.\",As they struggle they,gold,blow fans along with one being knocked back and running.,separate and wave him down under the water.,\"fall against the rotating wall and disappear into the next room, leaving a frightened someone behind.\",reach up the plates.\n953,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,206,\"He barks an order, and two more someone fall into step with him. Someone\",\"He barks an order, and two more someone fall into step with him.\",Someone,gold,\"hurries to bed, who stands with his back to the door and holds it.\",sits in the kitchen aid with some candy on her mouth.,\"grabs his whip, his leather sack and someone's case from a table.\",falls down a flight of stairs.\n954,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,197,The Radiomen appear in the fireplace on the other side - - but there is no sign of people. The Radiomen,The Radiomen appear in the fireplace on the other side - - but there is no sign of people.,The Radiomen,gold,\"emerges from the the pool, shows a moments of vapor within range until it falls to its flat.\",\"move cautiously toward the flame, shielding their faces with one hand, holding their guns with the other.\",swings a knife of his own wand at the swim figure.,are being cut down.\n955,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,209,Someone looks horrified by what he is been forced to do as someone searches frantically for an exit. Someone,Someone looks horrified by what he is been forced to do as someone searches frantically for an exit.,Someone,gold,\", in shield, blows their left rupee.\",begins to run his hands over the walls - - frantic.,runs down the street.,opens a glass door.\n956,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,196,They activate the lever and begin to rotate through the Secret Door. The Radiomen appear in the fireplace on the other side - - but there,They activate the lever and begin to rotate through the Secret Door.,The Radiomen appear in the fireplace on the other side - - but there,gold,is a sound at this end.,is a smile on someone's face.,is no sign of people.,is one roll of blue letters shining on the side of the lobby and its wind screen.\n957,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,204,\"Someone picks up a bust of someone and uses it to jam the rotating wall in place, sealing someone inside the burning room. Someone\",\"Someone picks up a bust of someone and uses it to jam the rotating wall in place, sealing someone inside the burning room.\",Someone,gold,ii heavily lined the stage.,\"is reaching down for a small canister of liquid, then toward someone's doorway.\",sets the urn in her locker cage.,strides purposefully down the hallway.\n958,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,193,Someone's foot hits the grill again. Four nazi radiomen and the Woman,Someone's foot hits the grill again.,Four nazi radiomen and the Woman,gold,hold bits of fruit from one.,are still hard at work with controls and coordinates.,flip together on tam - topped white coveralls!,fend off the drones.\n959,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,201,\"As they struggle they fall against the rotating wall and disappear into the next room, leaving a frightened someone behind. Someone\",\"As they struggle they fall against the rotating wall and disappear into the next room, leaving a frightened someone behind.\",Someone,gold,\"presses against the wall, which rotates again.\",snatches his wand from his broomstick.,grabs the bomb and drops it into a pile.,rises from his knees and hands him a gun and controlling this with a bolt of lightning.\n960,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,214,The stairway deposits people into an enormous watery cavern beneath the mountain on which the castle was built. A full - scale Nazi boat dock,The stairway deposits people into an enormous watery cavern beneath the mountain on which the castle was built.,A full - scale Nazi boat dock,gold,is within a square.,stands next the shallow bank of the river.,has been built inside the cavern.,\"lies momentarily over a pedestal, blown and broken amongst the corpses covered in coal of debris.\"\n961,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,195,All four Radiomen now have their guns drawn. They,All four Radiomen now have their guns drawn.,They,gold,scan the rolls gallery staring at the footprints.,activate the lever and begin to rotate through the secret door.,go down the slide.,go down to people and take their shoes off.\n962,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,216,Someone boards one of the motorboats and starts the motor. Someone,Someone boards one of the motorboats and starts the motor.,Someone,gold,dives into the air as it moves all along it.,tosses his case at someone who catches it and angrily throws it back to his father.,joins the music but is startled by the germans.,checks his clock using the successful bells.\n963,lsmdc0050_Indiana_Jones_and_the_last_crusade-70386,189,Finally they turn their heads in the same direction. Someone,Finally they turn their heads in the same direction.,Someone,gold,comes out to the driver's side window.,struggles to free his hands.,set their friends reach their place to arm wrestle.,are to race too.\n964,anetv_7ZbH4vHTmVs,19807,Two girls put dead leaves in a plastic container. People,Two girls put dead leaves in a plastic container.,People,gold,blow dried leaves blow a rabbit together.,continues cleaning the yard.,paints the smooth nails with a silver roller.,is with the box holding a phone.\n965,anetv_7ZbH4vHTmVs,19806,A group of people pick up dead leaves in a back yard using leaf rakes. Two girls,A group of people pick up dead leaves in a back yard using leaf rakes.,Two girls,gold,are seen kneeling on a lawn clinging to another person's yard.,are seen walking around holding beer sticks and talking to the camera.,put dead leaves in a plastic container.,keep running from the small trough at the sandy beach where people are playing.\n966,anetv_7ZbH4vHTmVs,4352,People are raking leaves in a front yard. Two girls,People are raking leaves in a front yard.,Two girls,gold,are putting ornaments on their wheels.,are doing sit ups curling the tree.,are lifting the leaves up and putting them into a garbage can.,put down on their horses to get away.\n967,anetv_7ZbH4vHTmVs,19808,People continues cleaning the yard. A man an two boys,People continues cleaning the yard.,A man an two boys,gold,turn side to side.,sit in the grass in front of a farmer.,are inside a car.,to snow blowing the leaves.\n968,anetv_vlX9sU9bM9s,16389,A large track is shown with a person holding a javelin. The person,A large track is shown with a person holding a javelin.,The person,gold,moves all around a circle and leads into a game practicing on a chain around a large game.,begins running down the track.,swings a javelin over several times and lands on the surfboard.,slides down the pit to the person in a paintball pit.\n969,anetv_vlX9sU9bM9s,16390,The person begins running down the track. The person then,The person begins running down the track.,The person then,gold,rides his jump on the skateboard and pushes it all down the track.,throws the javelin off into the distance.,runs down the track again.,\"throws the object across the track, spinning around and hitting it.\"\n970,anetv_vlX9sU9bM9s,5194,\"An athlete run holding a javelin. The, the man\",An athlete run holding a javelin.,\"The, the man\",gold,shoot the javelin while people stand on the sides watching.,runs down the track and jumps onto the sand.,goes backwards and flips on the net.,chases the man from the center of the net.\n971,lsmdc0004_Charade-47652,8891,They continue going through the items from the bag. Someone,They continue going through the items from the bag.,Someone,gold,ride snow down alongside some of black cars.,has passed us by the dark pawn.,\"takes the list, examines it, then folds it and puts it in his pocket.\",is shown in front of him.\n972,lsmdc0004_Charade-47652,8890,\"Someone has put the wallet aside and now picks up the letter, removing it from the envelope and reading it. They\",\"Someone has put the wallet aside and now picks up the letter, removing it from the envelope and reading it.\",They,gold,\"goes to melt some more, then climbs a drink and fills it with more clear liquid.\",turns right to the window and sits down on the ledge with.,sits back in the chair next to the envelope and plants his hands on the table.,continue going through the items from the bag.\n973,lsmdc0004_Charade-47652,8889,\"He looks up, then joins someone. Someone\",\"He looks up, then joins someone.\",Someone,gold,reads someone's notes.,\"empties the contents of the bag on the table, then starts examining the various items.\",\"'s crew follow, as someone sweeps his men out of the way.\",heaves a sigh with excitement as he finds someone standing upright.\n974,lsmdc0004_Charade-47652,8892,\"Someone takes the list, examines it, then folds it and puts it in his pocket. They\",\"Someone takes the list, examines it, then folds it and puts it in his pocket.\",They,gold,finish with the items from the bag.,\"toast and someone pats him, patting the back.\",archer pumps his sleeve.,drop to the floor.\n975,anetv_as7KugARkLE,6345,Woman is standing in the botom of the parallels. little girl wearing a green bdy,Woman is standing in the botom of the parallels.,little girl wearing a green bdy,gold,is coming out the pool.,is dressed in spanish with pink.,showing a necklace is talking on the table in front of a mirror and white cushions.,is talking about the howcast of a goddess outward and shows it's screen.\n976,anetv_as7KugARkLE,2808,\"One girl walks off while the other is positioned in front of the chalk, putting it on her hand. Lastly, there\",\"One girl walks off while the other is positioned in front of the chalk, putting it on her hand.\",\"Lastly, there\",gold,is a long pause while another woman watch him.,'s the third girl who is standing at the top of the bars and ends up doing a flip into the pit of foam.,is a display of marijuana on a table and a handful of present.,is flowers in the construction and then the little girl goes to address the young.\n977,lsmdc3086_UGLY_TRUTH-5977,4508,\"She enters and flips a switch, lighting the cheerily decorated apartment. It\",\"She enters and flips a switch, lighting the cheerily decorated apartment.\",It,gold,hugs her and turns back to the table.,\"enters the code, fixes one.\",is circled between a laptop.,rubs against her ankle.\n978,lsmdc3086_UGLY_TRUTH-5977,4507,A view from her living room window shows her passing outside. She,A view from her living room window shows her passing outside.,She,gold,\"enters and flips a switch, lighting the cheerily decorated apartment.\",crosses the kitchen block.,holds up someone's tablet.,watches the film set.\n979,lsmdc3086_UGLY_TRUTH-5977,4511,He chucks it in the trash. He,He chucks it in the trash.,He,gold,nears russians take out.,\"stops the mustang, walks away from the tip of the knife toward front of the fire, and looks out of the window.\",pays a six - foot man.,pours gasoline in the trash can.\n980,lsmdc3086_UGLY_TRUTH-5977,4509,\"Bending over, someone pets the cat. Someone\",\"Bending over, someone pets the cat.\",Someone,gold,enters from the bathroom.,stays in place beside the figure then creeps toward him.,'s anguished face releases him.,eyes his cousin who leaves.\n981,lsmdc3086_UGLY_TRUTH-5977,4506,Later someone walks alone through the courtyard leading to her apartment. A view from her living room window,Later someone walks alone through the courtyard leading to her apartment.,A view from her living room window,gold,shows the tally moving across the yard.,shows a large figure hung out of the doorway.,shows her passing outside.,shows the harbor disheveled.\n982,anetv_u1upxlAgsqM,3775,Three people do a basketball drill of driving to the hoop. They,Three people do a basketball drill of driving to the hoop.,They,gold,push the girl down next to the camera watching.,then fix the shirt back up.,take turns playing different positions and doing a layup.,begin to make very long michael and each kicks five boys.\n983,anetv_I52lhI6txNo,11853,People are sitting on tubes in the snow. They,People are sitting on tubes in the snow.,They,gold,sit down a river.,begin sledding down the hill on the tubes.,are going in biking gear either going down the snowy slopes.,\"are climbing behind the tree, going down the hill with shiny wooden snow gear.\"\n984,anetv_I52lhI6txNo,11854,They begin sledding down the hill on the tubes. A woman,They begin sledding down the hill on the tubes.,A woman,gold,stands up and walks away.,is standing in the snow on the snow.,sits down next to a bike.,enters with a object strapped to her stomach.\n985,anetv_I52lhI6txNo,18608,A group of people are sitting in their donut tubes up on a snowy mountain. They,A group of people are sitting in their donut tubes up on a snowy mountain.,They,gold,are riding down the hills with their paddles following alongside them.,are going up in hills at a steady pace underneath.,snow tube down the mountain together.,are sitting on inter tubes.\n986,lsmdc1007_Spider-Man1-74735,18646,\"Hearing a noise, he turns. He\",\"Hearing a noise, he turns.\",He,gold,moves as if in a trance.,runs into the escalade.,glides over the pond.,\"hears someone exchange a quick glance, obviously beside it when an answer comes.\"\n987,lsmdc1007_Spider-Man1-74735,18645,\"At the Osborn home, someone is pouring himself a drink from a decanter. He\",\"At the Osborn home, someone is pouring himself a drink from a decanter.\",He,gold,plunks her hands on a cupboard and tosses him away on the stove top.,knocks a bar of steve's hand.,takes a large gulp.,pulls him up and kneels on to cushions.\n988,anetv_2WKy0FvMtCM,11801,Ingredients are being added to a glass bowl and being mixed together. Chocolate chips,Ingredients are being added to a glass bowl and being mixed together.,Chocolate chips,gold,are added to the kitchen.,are added to a fruit mixture.,are added to the dough.,are added to the salad.\n989,anetv_2WKy0FvMtCM,11800,'a cookie is shown on a plate. Ingredients,'a cookie is shown on a plate.,Ingredients,gold,\"person is stands on front of it, then a person pours a sun box and bake the cake.\",cooked pop warriors at each egg.,are being added to a glass bowl and being mixed together.,is showing tiny bite pieces of dough which flies into cake nyan.\n990,anetv_2WKy0FvMtCM,11803,The dough is flattened out onto a cookie sheet. Chocolate,The dough is flattened out onto a cookie sheet.,Chocolate,gold,is drizzled over the top.,is a cookie on a plate.,is cooked in a pan of cake and chocolate.,is covered in bowl.\n991,anetv_2WKy0FvMtCM,11806,The cookie is cut and placed on a plate. A fork,The cookie is cut and placed on a plate.,A fork,gold,is shoved into a small oven.,is shown eating the cookie.,is sliced on a plate.,is cooking in an oven.\n992,anetv_2WKy0FvMtCM,11802,Chocolate chips are added to the dough. The dough,Chocolate chips are added to the dough.,The dough,gold,\"is placed in a bowl, dough, and blended.\",is added into halves.,is flattened out onto a cookie sheet.,is removed from an oven.\n993,anetv_2WKy0FvMtCM,11804,Chocolate is drizzled over the top. Candies,Chocolate is drizzled over the top.,Candies,gold,'s poured into a red pot and the lemonade is served in a blender.,are added to more baking.,are placed on top of the cookie.,sandwich placement is skewered.\n994,anetv_2WKy0FvMtCM,11805,Candies are placed on top of the cookie. The cookie,Candies are placed on top of the cookie.,The cookie,gold,is cut and placed on a plate.,is made and put them on the oven.,is baked over on the plates.,is put on the cookie.\n995,lsmdc1029_Pride_And_Prejudice_Disk_One-83626,14952,\"They make their way into the village, carriages rolling past and people talking on corners. People\",\"They make their way into the village, carriages rolling past and people talking on corners.\",People,gold,\"join them, noticing him, pulling away.\",react across the street.,rush ahead and stop at a shop window.,can make a silhouette as people dance around it and consider someone the is not scared.\n996,lsmdc1029_Pride_And_Prejudice_Disk_One-83626,14951,He is exhausted from the walk. They,He is exhausted from the walk.,They,gold,walks towards a table and that was written in gray.,turns to avoid them.,\"make their way into the village, carriages rolling past and people talking on corners.\",come out of the corral and haul the girl - someone inside.\n997,anetv_lxtG6PbeaqY,3897,The game begins with a team of men against a team of women each taking turns throwing dodge balls at each other violently. The teams then,The game begins with a team of men against a team of women each taking turns throwing dodge balls at each other violently.,The teams then,gold,change sides on the gym floor with the women on the left and the men on the right.,begin hitting balls in the goal at the bowler hitting the ball.,begins to play another game of tug of war with each group on the beach trying to teach the dart game.,intercuts back to hockey with people in the beginning.\n998,anetv_lxtG6PbeaqY,3898,The teams then change sides on the gym floor with the women on the left and the men on the right. The game ends and both teams,The teams then change sides on the gym floor with the women on the left and the men on the right.,The game ends and both teams,gold,rush the ball and dunks it to their opponent and then take on the back of a large ball.,maintain hitting and stand together in the hot.,meet in the middle of the floor and give each other high fives.,walk away then break the game down in green while one team scores a goal.\n999,anetv_lxtG6PbeaqY,3896,Two dodgeball teams play against each other in an interior gym surrounded by onlookers in bleachers. The game,Two dodgeball teams play against each other in an interior gym surrounded by onlookers in bleachers.,The game,gold,begins with a team of men against a team of women each taking turns throwing dodge balls at each other violently.,stops to celebrate with men playing volley ball.,continues to show clips of the people in the gym playing.,\"is showing two teams celebrating fast playing, where other players help with the credits.\"\n1000,anetv_LnMvFpR0xCY,16304,A woman walks into a kitchen. She,A woman walks into a kitchen.,She,gold,puts pastries on the spaghetti.,puts a blue rag and hands through a sink.,starts mopping the floor of the kitchen.,holds a black pot and a cup of coffee.\n1001,anetv_LnMvFpR0xCY,17951,A woman is seen bending over speaking to the camera and leads into her mopping the floor. She,A woman is seen bending over speaking to the camera and leads into her mopping the floor.,She,gold,sprays water around the sink and continues mopping the floor while dancing.,uses a brush that used to push the first small stick from the floor as it shows her relaxing.,continues moving up and down and ends with him standing around in the end.,continues with her exercise move on the floor while speaking to the camera while on a mat and looking to the camera.\n1002,anetv_LnMvFpR0xCY,17952,She sprays water around the sink and continues mopping the floor while dancing. The girl then,She sprays water around the sink and continues mopping the floor while dancing.,The girl then,gold,shows how to hold the mop and showing tips to nail polish while still talking to the camera.,washes back and fourth speaking to the camera and continues washing the dishes.,dries the floor with a towel and still dances around the floor.,\"bends down, folds her arms and looks out on the floor while pointing her back up.\"\n1003,anetv_LnMvFpR0xCY,16307,She dances while she mops the floor. She,She dances while she mops the floor.,She,gold,\"brushes her legs off with her foot, with her.\",takes a chair out from the bathroom and pours it into her face.,holds the carpet with a rag.,puts a purple towel down and dries the floor.\n1004,anetv_LnMvFpR0xCY,16306,She pours soap into the sink. She,She pours soap into the sink.,She,gold,grabs the breaststroke in the sink.,turns the sink to the sink.,dances while she mops the floor.,cleans the legs of the sink.\n1005,anetv_isUCIXYjOXE,16138,Two men are talking outside a building. A woman and another man,Two men are talking outside a building.,A woman and another man,gold,align under a podium fire.,are standing in a gym outside.,walk away as the two men continue their conversation.,are laying cars in front of the rock.\n1006,anetv_isUCIXYjOXE,2030,The men are seen playing pool with one hitting a ball. He,The men are seen playing pool with one hitting a ball.,He,gold,throws the ball and walks away.,puts on the baseball.,dives one after another and shoots.,knocks in several balls and hands the stick to a man and walks away.\n1007,anetv_isUCIXYjOXE,16139,A woman and another man walk away as the two men continue their conversation. The men,A woman and another man walk away as the two men continue their conversation.,The men,gold,runs up and down a long table in the yard.,\"engage in a game of pool, shooting the balls into the corner pockets and taking turns.\",talk then hand the man a boat while laughing and laughing with each other in front of her phone.,trim their shrubs and a tear falls off the other on the side.\n1008,anetv_isUCIXYjOXE,2029,Two men are seen speaking to one another with one walking away. The men,Two men are seen speaking to one another with one walking away.,The men,gold,then begin playing instruments with one another.,are seen playing pool with one hitting a ball.,continuously play pong until one man serves the ball to the man.,then run into one another with the other and take them to try and flip into the venue.\n1009,lsmdc0017_Pianist-56478,17324,\"The woman also turns, but the German soldier drops to one knee and fires. The woman clutches her stomach, drops slowly to her knees and collapses on the street in an awkward kneeling position, and that\",\"The woman also turns, but the German soldier drops to one knee and fires.\",\"The woman clutches her stomach, drops slowly to her knees and collapses on the street in an awkward kneeling position, and that\",gold,is promo - receipt.,is the first time on the roof.,is dressed in white.,'s how she remains.\n1010,lsmdc0017_Pianist-56478,17323,\"The man turns and disappears. The woman also turns, but the German soldier\",The man turns and disappears.,\"The woman also turns, but the German soldier\",gold,drops to one knee and fires.,stands leaning against him.,goes down into the room.,raises both hands above her head.\n1011,lsmdc0017_Pianist-56478,17325,\"Then, he hears voices outside his door, shouts, footsteps, panic. He\",\"Then, he hears voices outside his door, shouts, footsteps, panic.\",He,gold,runs to his front door and listens.,walks into the magnificent house living room.,heads halfway inside a forest followed by the cold.,pulls someone's foot off and presses to the front of the house.\n1012,lsmdc0017_Pianist-56478,17322,A horse - drawn cab rounds a corner and clatters down the street. He,A horse - drawn cab rounds a corner and clatters down the street.,He,gold,\"walks in front of them as someone passes, leaving someone again sprinting to her car.\",\"is about to draw back when he sees, directly beneath him, a man and woman walking with their hands in the air.\",speeds behind a parallel building.,steps onto a runway then glances over his shoulder.\n1013,lsmdc1057_Seven_pounds-97779,18728,She hurries to the children. She,She hurries to the children.,She,gold,quietly crosses her side door.,follow someone turns to someone.,\"escorts them out to their room, then returns.\",\"is lying on the back seat, clutching her abdomen.\"\n1014,lsmdc1057_Seven_pounds-97779,18727,He nods towards her ribs. She,He nods towards her ribs.,She,gold,straightens her chin then removes the windows.,hangs her head over his shoulder.,opens his mouth and stares at.,hurries to the children.\n1015,lsmdc0021_Rear_Window-59012,17813,\"Someone, tense and wide - eyed, watches someone climb the fire escape. While someone starts up the fire escape, we\",\"Someone, tense and wide - eyed, watches someone climb the fire escape.\",\"While someone starts up the fire escape, we\",gold,see someone running toward the wall in the foreground to climb over it.,see a giant rock billowing from the gas target.,see someone railway his sparkler.,\"see someone pops the spider with his wand, shielding his face.\"\n1016,lsmdc0021_Rear_Window-59012,17814,\"While someone starts up the fire escape, we see someone running toward the wall in the foreground to climb over it. Someone\",\"While someone starts up the fire escape, we see someone running toward the wall in the foreground to climb over it.\",Someone,gold,come out of the water.,climbs the fire escape to the second floor and the outside of someone's apartment.,\"see someone in the backs, kicking and throwing themselves down on the floor, scattering unseen toys to the ground.\",takes using someone's newspaper for cameras.\n1017,lsmdc0021_Rear_Window-59012,17811,The shovel is lying on the ground beside someone. Someone,The shovel is lying on the ground beside someone.,Someone,gold,smears stains on his forehead.,\"rubs his thumb against it, then shakes it onto his lower stomach.\",\", he bounds up the stairs at a pretty square tower.\",has abandoned the shovel and left the flowers and dirt strewn over the walk.\n1018,lsmdc0021_Rear_Window-59012,17815,Someone climbs the fire escape to the second floor and the outside of someone's apartment. She,Someone climbs the fire escape to the second floor and the outside of someone's apartment.,She,gold,heads out of the water and into the end of the club.,\"tries, unsuccessfully, to get through the window which opens into the kitchen from the fire escape.\",slams open the door behind him.,works at the front as a boat to his own building on television set as the service sergeant shows the flag.\n1019,lsmdc0013_Halloween-53602,9966,\"The father's hand reaches up and rips off the Halloween mask, revealing someone, 6, underneath, a bright - eyed boy with a calm, quiet smile on his face. Camera\",\"The father's hand reaches up and rips off the Halloween mask, revealing someone, 6, underneath, a bright - eyed boy with a calm, quiet smile on his face.\",Camera,gold,\"pulls back, revealing the blood - stained butcher knife in his hand, then further back.\",shows someone long standing on a one bed dialing in the dark.,holds his foot as sting swings mjolnir from the pit and twists into the others.,are close to a ruined fish.\n1020,anetv_ogOrhXUgna0,5998,\"Couples and people are shown floating in ocean water, as well as surfing. They\",\"Couples and people are shown floating in ocean water, as well as surfing.\",They,gold,use nearby boats to stay in the water as well as riding around and interacting with people.,\"ride the waves inside and out, avoiding the other people in the water.\",\"continue to make the waves, and dark people begin tuber more braids and ending by jumping on their boards.\",take turns kayaking on the boat as people use boats.\n1021,anetv_ogOrhXUgna0,1170,People walk in the beach as waves come in. Others,People walk in the beach as waves come in.,Others,gold,join the game in soccer in hedestad.,swarm along the ocean buildings shaking their heads.,try to surf on the waves as they come in.,dash through the door as people come past it.\n1022,anetv_VdeYnCIbRJ4,9725,An athletic man is seen standing at the beginning of a long track with several people standing on the sidelines. He,An athletic man is seen standing at the beginning of a long track with several people standing on the sidelines.,He,gold,\"walks off and his dives into the water, where someone holds onto his hands and moves.\",takes away his jog and he performs his routine on an electric mat.,show in on one more and are still flipping by the interviewing and across next to them for a long period.,begins running down the track and jumping with a few others walk around him in the distance.\n1023,anetv_QFz-keqof9g,7891,A rope is strung between two trees. A man,A rope is strung between two trees.,A man,gold,walks on the rope.,stands on a horse.,puts the tug rope with his feet.,is in a workshop speaking to the camera.\n1024,anetv_QFz-keqof9g,7893,He falls several times off the rope. Eventually he,He falls several times off the rope.,Eventually he,gold,lets go of his little rope and then continues to ski back to the edge.,is able to balance and walks back and forth.,\"lands, turns off the rope, and pulls on his side.\",moves himself back and ties the rope by holding the rope.\n1025,anetv_QFz-keqof9g,7892,A man walks on the rope. He,A man walks on the rope.,He,gold,jumps onto the side end of the rope.,\"jumps over a rope and lands on concrete, and gets against the trees.\",grabs some paper and spins it around as he spins a ball around and launches it at each other.,falls several times off the rope.\n1026,anetv_xZOzVaTezm8,8328,She is then pushed down the ramp. Eventually she,She is then pushed down the ramp.,Eventually she,gold,\"turns, and finishes by turning around again, followed by various other things.\",gets on the bench and rides off down the hill.,comes to a stop.,lifts him up to her shoulders and puts her down on a bar.\n1027,anetv_xZOzVaTezm8,8326,A person in a green jacket walks around on the snow. A young girl,A person in a green jacket walks around on the snow.,A young girl,gold,pushes her hair up.,lays in a tube on the snow.,looks down at the tools she's using.,is shown putting snow all over a fence and tries to speak to a person using a brush.\n1028,anetv_xZOzVaTezm8,8327,A young girl lays in a tube on the snow. She,A young girl lays in a tube on the snow.,She,gold,walks slowly to put down the list.,climbs down a hill of snow and lets the snow slide over the water.,is then pushed down the ramp.,\"run on a sled, landing down a slope.\"\n1029,anetv_ZkIGGQ9iOSA,5576,The woman lays back down and starts doing situps. The woman flips her hair back while still doing situps and the camera person,The woman lays back down and starts doing situps.,The woman flips her hair back while still doing situps and the camera person,gold,sits on the edge.,stops right to look at herself.,walks around and shows her at different angles.,puts on her hair.\n1030,anetv_ZkIGGQ9iOSA,1110,She starts doing sit ups on the ground. The person,She starts doing sit ups on the ground.,The person,gold,filming walks around them.,puts the soap into her hair.,is hanging her head off the ground.,stops her to the end.\n1031,anetv_ZkIGGQ9iOSA,1109,A girl is laying on a black mat next to a swimming pool. She,A girl is laying on a black mat next to a swimming pool.,She,gold,is swinging back and forth in the water.,\"sits on the ground, the woman adjusting the pistol in one hand.\",starts hula hooping with her hand.,starts doing sit ups on the ground.\n1032,anetv_ZkIGGQ9iOSA,5575,A blonde woman is lying down next to a pool with her knees up and she sits up to kick her sandals off. The woman,A blonde woman is lying down next to a pool with her knees up and she sits up to kick her sandals off.,The woman,gold,then gestures in front of the camera and leans on the polish.,lays back down and starts doing situps.,shoots the pool tilting the right side and then throws the ball again.,stands up using a toothbrush to toothbrush and then starts wiping down the camera for a bit to door.\n1033,anetv_dcMFJ-8Eo7g,17245,A blue piece of floor with holes in the middle is covered by a bald man in black jacket. The covered floor,A blue piece of floor with holes in the middle is covered by a bald man in black jacket.,The covered floor,gold,is displayed tot a small table.,is shown followed by the machine that cuts the tiles and adhesive to be used.,\"is filled with stickers on it, followed by pictures of footage of different people in the clips.\",is assembled with some pixies.\n1034,anetv_dcMFJ-8Eo7g,4878,A close up of plaster is shown followed by several pictures of floor boards and a truck parked outside. More pictures,A close up of plaster is shown followed by several pictures of floor boards and a truck parked outside.,More pictures,gold,\"are shown of plaster, tiling, and people working, ending with finished results of the tile shown in various pictures.\",are shown of capture interviewing at different areas of the mountain in several different locations as well as being shown.,are shown of the people moving around and laying on a device.,are shown of people walking on goals and speaking to one another.\n1035,anetv_dcMFJ-8Eo7g,17246,\"The adhesive is mixed and applied to the floor and put the tile little by little, the picture of the entire room with the tile installed are shown. A small swimming pool with dolphin image\",\"The adhesive is mixed and applied to the floor and put the tile little by little, the picture of the entire room with the tile installed are shown.\",A small swimming pool with dolphin image,gold,\"is back, the yard and words of the chapman appears on screen.\",is shown in a blue blue black and gray intro.,is shown and the information regarding the tiling expert.,\"is the surface tread, which is on a vault stand.\"\n1036,lsmdc3030_GROWN_UPS-13947,14392,He eyes a tattoo of o. j. Simpson on her calf. A heavy - set blond on a massage table,He eyes a tattoo of o. j. Simpson on her calf.,A heavy - set blond on a massage table,gold,\"looks up, her hair hiding her face.\",sits up from the couch next to the building.,sits down in bed.,digs out the attache case and answers it.\n1037,lsmdc3030_GROWN_UPS-13947,14393,\"A heavy - set blond on a massage table looks up, her hair hiding her face. She\",\"A heavy - set blond on a massage table looks up, her hair hiding her face.\",She,gold,holds it up and piles it at her.,helps it to her feet.,'s an old woman!,thrusts the wind cat's ears.\n1038,lsmdc0021_Rear_Window-58861,6188,\"He flushes with anger and embarrassment, and his mouth twists into unpleasant shapes as he slaps degrading words back at her, telling her what she is. She\",\"He flushes with anger and embarrassment, and his mouth twists into unpleasant shapes as he slaps degrading words back at her, telling her what she is.\",She,gold,laughs at the laugh.,\"seems perplexed up - there, sweetly at him.\",screams at him to get out.,\"brothers stand before a makeshift wooden table, looking out at the distant as they hit the floor.\"\n1039,lsmdc0021_Rear_Window-58861,6185,\"As she sips her drink and look at him over the rim of the glass, he tosses his off with nervous dispatch. He\",\"As she sips her drink and look at him over the rim of the glass, he tosses his off with nervous dispatch.\",He,gold,\", he sits at his desk.\",\"deflects the tiny smile, then points.\",\"moves toward her, this time more cautiously.\",pulls to her side.\n1040,lsmdc0021_Rear_Window-58861,6189,She screams at him to get out. He,She screams at him to get out.,He,gold,follows after others and follows the man.,observes his pillared panic.,\"leaves, slamming the door behind him.\",\"watches her go again and savagely dives out of the kitchen, continuing into her surroundings.\"\n1041,lsmdc0021_Rear_Window-58861,6187,Suddenly and fiercely she pushes him away. He,Suddenly and fiercely she pushes him away.,He,gold,glances over her shoulder and they stop.,steps forward and lays his arm in hers.,tries to fight him from that.,\"moves back with shock as she loudly and emphatically orders him out, out, out.\"\n1042,lsmdc0021_Rear_Window-58861,6190,\"She goes back dumbly to the spilled liquor, makes a futile effort to clean it up, and the collapses onto the rug sobbing hard enough to shake her whole body. Someone\",\"She goes back dumbly to the spilled liquor, makes a futile effort to clean it up, and the collapses onto the rug sobbing hard enough to shake her whole body.\",Someone,gold,\"grabs a book from the counter and tosses it out, then places the bowl open into the bottom of her trousers.\",drops the boy's butt over his back.,\"gently joins his boss, his hand limp in his lap.\",turns away from someone's chair to get a cigarette from the table.\n1043,lsmdc0021_Rear_Window-58861,6186,\"He moves toward her, this time more cautiously. He\",\"He moves toward her, this time more cautiously.\",He,gold,turns to look at himself as he widens in.,\"begins kissing her cheek, her ear, her neck.\",is pulled up by the treasure then lit a fire.,moves to the door and peers around the room at her.\n1044,anetv_7H5oYHs7EJw,6660,\"He starts, holding a ticker in one hand and bringing his body down so that he picks up more speed. Once he's going fast enough he stands up and then squats again, he\",\"He starts, holding a ticker in one hand and bringing his body down so that he picks up more speed.\",\"Once he's going fast enough he stands up and then squats again, he\",gold,goes off a small boat down a long slope.,spins at the end rope.,seems to have a technique that works for him.,walks off and and lies.\n1045,anetv_7H5oYHs7EJw,14180,He is holding onto the camera and speeding down the snow quickly. He,He is holding onto the camera and speeding down the snow quickly.,He,gold,grabs two drunk pills and starts to drag them on.,is completely decked out in protective ski gear.,enters the street and is skateboarding in slow motion.,rides over the road really fast as he watches.\n1046,anetv_7H5oYHs7EJw,14179,A man is skiing down a snow covered hill. He,A man is skiing down a snow covered hill.,He,gold,jumps off the ski and falls off with a body of water.,is holding onto the camera and speeding down the snow quickly.,is skateboarding with the traffic on the water.,is riding on a boat to the top of a hill.\n1047,lsmdc3038_ITS_COMPLICATED-17544,9277,He sheepishly looks up from his bite. He,He sheepishly looks up from his bite.,He,gold,sits down and slaps his feet.,holds the door to his mouth and leaves.,shows someone in a patterned sweater.,goes to the dear bag and goes to get out.\n1048,anetv_b0LY869JBrE,2553,A bottle of acetone is shown. The acetone,A bottle of acetone is shown.,The acetone,gold,racquets are shown drinking.,spraying with cold cream up from the walls and with an intro is shown.,are shown one more time.,is being poured into a small glass.\n1049,anetv_b0LY869JBrE,2560,A clear bottle of nail polish is shown. She then,A clear bottle of nail polish is shown.,She then,gold,paints that over her nails.,sprays the polish back on the tool.,picks up a strip of tape and newly placed letters over the top of the paper.,puts polish onto your nails.\n1050,anetv_b0LY869JBrE,2558,They use the makeup brush and dip it in the acetone. They,They use the makeup brush and dip it in the acetone.,They,gold,put and trims all the nails with a black iron.,rub the shoe on the shoe.,drop out of the makeup office.,rub the brush on their fingernail.\n1051,anetv_b0LY869JBrE,2556,Another bottle of nail polish is shown. The person,Another bottle of nail polish is shown.,The person,gold,continues painting their nails.,mixes the rag items.,then ties a piece of paper and braid.,dips a polish into a clear glass of polish.\n1052,anetv_b0LY869JBrE,2554,The acetone is being poured into a small glass. A woman,The acetone is being poured into a small glass.,A woman,gold,is now holding a napkin.,mixes it with shots of her lemonade.,is mixing another blender with a needle in a whisky box.,pours the drinks in front of the camera.\n1053,anetv_b0LY869JBrE,2559,They rub the brush on their fingernail. They,They rub the brush on their fingernail.,They,gold,put onto an iron and wipe down the cloth.,use a wooden stick to clean the side of their nails.,finish shaving the skin along with spray paint.,continue to the right driveway again.\n1054,anetv_b0LY869JBrE,2555,A bottle of nail polish is shown. A person,A bottle of nail polish is shown.,A person,gold,rub a white piece of paper in front of the red sanding.,starts painting their fingernails.,holds up a bottle of paint on a rag.,sprays polish on nails.\n1055,anetv_b0LY869JBrE,2557,The person continues painting their nails. They,The person continues painting their nails.,They,gold,continue painting the exterior.,use the makeup brush and dip it in the acetone.,\"then puts the paper in the sink, then washes the little brush with a smaller tool.\",paint the bushes with the paint.\n1056,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60396,8888,\"Someone, slowly paddling in the stern. Someone slowly\",\"Someone, slowly paddling in the stern.\",Someone slowly,gold,pushes the man's hand toward his face.,\"turns around, placing his head to the corpse's waist.\",runs her fingers through her hair.,\"looks up, his eyes widening with amazement.\"\n1057,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60396,8889,\"Someone slowly looks up, his eyes widening with amazement. He\",\"Someone slowly looks up, his eyes widening with amazement.\",He,gold,has dark plastic mask on a pinning tip of his shoulders.,\"speaks, almost as if to himself.\",struggles out the bib just past a marble corner.,meets his gaze.\n1058,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60396,8887,\"The Three Elven boats drift slowly through the steep rocky gorge in the Pre - dawn light. Someone,\",The Three Elven boats drift slowly through the steep rocky gorge in the Pre - dawn light.,\"Someone,\",gold,\"beckoning him, goes their tumbling.\",\"surfing through the binoculars, finds them approaching through an opening.\",\"clinging by his roots, shakes the buzz.\",slowly paddling in the stern.\n1059,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60396,8890,They loom over the boats with power and majesty. The fellowship,They loom over the boats with power and majesty.,The fellowship,gold,sit at another well - dressed bench looking around the canyon.,stare in stunned silence as the current takes them through the narrow gap between the statues' feet.,is being pulled by water down decks by the sound of a rough tank.,\"journey down the rough river, rapids on the water's ornate mold.\"\n1060,anetv_kK9k01CtXnE,17120,This is a how to film on how to apply a seal to a roof. Black things,This is a how to film on how to apply a seal to a roof.,Black things,gold,are added to a wired car with cleaning equipment.,are put on the side of the roof.,are shown beneath a piece of tiles.,are finally drawing and there is a good end recording.\n1061,anetv_c-aDlEaZmFk,774,She successfully completes her round and jumps off of the bars. The crowd,She successfully completes her round and jumps off of the bars.,The crowd,gold,\"cheers along the dance floor, her belly fast.\",applauds for the team as they kick.,cheers loudly as they applaud for the gymnast.,looks toward the camera.\n1062,anetv_c-aDlEaZmFk,773,She flawlessly jumps on the bar and swings back and forth from one bar to another without falling off. She,She flawlessly jumps on the bar and swings back and forth from one bar to another without falling off.,She,gold,comes walking and gets to her feet.,look in the right direction as she goes down and gets the her gun and begins moving again toward the camera.,is still dancing and feeling changing to see as two man talking to her in the background.,successfully completes her round and jumps off of the bars.\n1063,anetv_z3xkE5Ox-2A,12696,The guy wraps white toilet paper on a pumpkin carving. A guy,The guy wraps white toilet paper on a pumpkin carving.,A guy,gold,holds a pumpkin in the far corner of the room.,takes a picture of his carving.,puts an accordion in his mouth and cheers him.,shows how to use the carving pumpkin.\n1064,anetv_z3xkE5Ox-2A,12693,The guy sits and discusses. The guy,The guy sits and discusses.,The guy,gold,sticks a left fist up a hair tattoo holder.,sharpens a knife on a piece of paper.,talks to the camera by walking on step aerobics.,is carving unique face on the surface of pumpkins.\n1065,anetv_z3xkE5Ox-2A,13087,A man stands in a corner room. the man,A man stands in a corner room.,the man,gold,casually lifts his hands in a squat.,starts carving a pumpkin.,hit the ball with a racket.,is talking to the other.\n1066,anetv_z3xkE5Ox-2A,12694,The guy is carving unique face on the surface of pumpkins. The guy,The guy is carving unique face on the surface of pumpkins.,The guy,gold,points the interrogation tools together into the silver fishing cage.,looks in a mirror while he mimics punching himself.,switches to the paint bear into the outline.,is now strung the food along the tree.\n1067,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60075,14848,\"Someone stands over the Palantir, his hands cupping the massive eye. Someone\",\"Someone stands over the Palantir, his hands cupping the massive eye.\",Someone,gold,is seated as his orc overseer approaches.,leans in a closed hatch.,raises the iron and wipes it up.,pins him into the sand.\n1068,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60075,14846,\"An apple is thrown to someone, who deftly catches it. Another, aimed at someone,\",\"An apple is thrown to someone, who deftly catches it.\",\"Another, aimed at someone,\",gold,pulls up a lever.,presenting her back to him and someone.,scribbles on the birth card.,catches him on the forehead.\n1069,anetv_2GCNxOKMtBo,13961,\"A wooden contraption signals that a fish has been caught, the man pulls the fish out of the water. Buttons on an electronic navigation tool\",\"A wooden contraption signals that a fish has been caught, the man pulls the fish out of the water.\",Buttons on an electronic navigation tool,gold,is demonstrating how to tai a stunt.,is holding a board and showing various instruction techniques.,are pressed switching through several screens.,are shown as well as the tubes.\n1070,anetv_2GCNxOKMtBo,13962,Buttons on an electronic navigation tool are pressed switching through several screens. Several men,Buttons on an electronic navigation tool are pressed switching through several screens.,Several men,gold,are shown driving through cars.,\"are then shown in various groups attempting several flips and smiling around the stage, including many batons and being back to the camera.\",continue to fish on the snowy ice and drill holes.,show how to lower their ears and speak to each other and shown deep down.\n1071,anetv_2GCNxOKMtBo,7739,A fish is shown under the water. He,A fish is shown under the water.,He,gold,pulls the fish up and holds it.,walks up the board behind the boat.,combs something out of the hole.,turns away and flipping to the camera.\n1072,anetv_2GCNxOKMtBo,13960,\"A man sitting on a skimmobile is icefishing next to a hole in the snow. A wooden contraption signals that a fish has been caught, the man\",A man sitting on a skimmobile is icefishing next to a hole in the snow.,\"A wooden contraption signals that a fish has been caught, the man\",gold,pulls the fish out of the water.,plays the first hole of a rock face on the bottom.,pulls the equipment back and lets them in.,tending to the hole prepped with the ice tiller.\n1073,anetv_2GCNxOKMtBo,7740,He pulls the fish up and holds it. A man,He pulls the fish up and holds it.,A man,gold,is outside talking and jump roping.,stands on his borders.,is drilling holes into the ice with a drill.,\"stands on some side, then picks the ball, dips it under the water and picks it up in return.\"\n1074,anetv_2GCNxOKMtBo,13963,Several men continue to fish on the snowy ice and drill holes. The Modern Ice Age and Small Mouth Bass publications,Several men continue to fish on the snowy ice and drill holes.,The Modern Ice Age and Small Mouth Bass publications,gold,are loudly at different speeds.,are shown on screen.,is shown on a screen that men's people are shown on riding the stage.,causes the flier from the captive pretty in the lake force.\n1075,anetv_2GCNxOKMtBo,7737,A man is sitting on a snow mobile on the ice. The,A man is sitting on a snow mobile on the ice.,The,gold,is standing on the border of the boat and dancing.,are getting ready to exit a car.,puts a fishing pole into a hole in the ice.,walks down the driveway.\n1076,anetv_2GCNxOKMtBo,7738,The puts a fishing pole into a hole in the ice. A fish,The puts a fishing pole into a hole in the ice.,A fish,gold,is fishing next to a fish.,stands in front of her.,is shown under the water.,catches the fish and brings it to the camera.\n1077,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1618,19411,Maggots lie among the remains of the tracker. Someone,Maggots lie among the remains of the tracker.,Someone,gold,\"felt white, armed staff appear too, and there is camp in the festive suburbs.\",wipes away from some debris.,\"moves on, blocking him from all things, and search on his attacker.\",carries her through a loaded trunk.\n1078,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1618,19410,The man explodes from his stomach sending gore flying in all directions. Maggots,The man explodes from his stomach sending gore flying in all directions.,Maggots,gold,lie among the remains of the tracker.,\"kicks off, cringing marley from the end.\",empties his nose in the pot.,dashes through a sliding side door.\n1079,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1618,19409,Someone moves someone in front of him as a shield. The man,Someone moves someone in front of him as a shield.,The man,gold,explodes from his stomach sending gore flying in all directions.,in the pulpit is wheeled around dr.,matches someone's spell.,flippers the basilisk.\n1080,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1618,19408,The tracker starts to gag and retch. Someone,The tracker starts to gag and retch.,Someone,gold,moves someone in front of him as a shield.,walks back to the bureau and places back on the wheel.,\"merchant, man in business.\",stares happily in the half - time contains entirely.\n1081,lsmdc1055_Marley_and_me-96529,8859,\"He arrives back home at night, driving his old blue Honda and parks up behind their new people carrier. Gloomily, he\",\"He arrives back home at night, driving his old blue Honda and parks up behind their new people carrier.\",\"Gloomily, he\",gold,\"looks out at the building, where a young man, someone, has a small plastic duck.\",slides a bicycle wheel forward into a garbage truck.,\"watches their downpour disappear across a parking park, leading each other down a lawn.\",\"glances up, and through a window, sees someone holding the baby with marley bouncing around, playfully.\"\n1082,lsmdc1055_Marley_and_me-96529,8862,\"Someone spots him sitting in the car and gestures to him, asking if he is actually going to come indoors. He\",\"Someone spots him sitting in the car and gestures to him, asking if he is actually going to come indoors.\",He,gold,\"steps back onto the benches near the brothel, and into a quieter room.\",\"'s looking over his shoulder, leaving someone was already, still raising his gun.\",smooths his hair as he rises and walks through the crowd.,gets reluctantly out of the car.\n1083,lsmdc1055_Marley_and_me-96529,8861,He leans back thoughtfully in the driving seat. Someone,He leans back thoughtfully in the driving seat.,Someone,gold,\"spots him sitting in the car and gestures to him, asking if he is actually going to come indoors.\",walks through the station parking.,watches soberly as someone wheels around.,forces his eyes to the keys on the counter light.\n1084,lsmdc1055_Marley_and_me-96529,8860,\"Gloomily, he glances up, and through a window, sees someone holding the baby with Marley bouncing around, playfully. He\",\"Gloomily, he glances up, and through a window, sees someone holding the baby with Marley bouncing around, playfully.\",He,gold,starts to stand across the room.,leans back thoughtfully in the driving seat.,\"enters, unnoticed by someone.\",\"hugs her, and she brings him to a section of the street.\"\n1085,lsmdc1055_Marley_and_me-96529,8858,\"Someone frowns at the implication, and the moment's captured on camera. He\",\"Someone frowns at the implication, and the moment's captured on camera.\",He,gold,keeps someone walking on the porch.,brushes his agitated head for concrete.,appears on cushions with a machine and revealing a compact reflection.,\"arrives back home at night, driving his old blue honda and parks up behind their new people carrier.\"\n1086,anetv_d-sWAcDYsbc,18291,\"He begins playing the drums, which are located inside of a living room. The playing\",\"He begins playing the drums, which are located inside of a living room.\",The playing,gold,moves until the stereo is being plugged.,continues and little are moving down the track.,continues until he puts down the drum sticks and looks at the camera with a shocked look.,begins with a voice that is seen from both sides of the room.\n1087,anetv_d-sWAcDYsbc,18292,The playing continues until he puts down the drum sticks and looks at the camera with a shocked look. The video,The playing continues until he puts down the drum sticks and looks at the camera with a shocked look.,The video,gold,\"ends with the closing credits shown on the screen, two men playing tennis.\",ends with the man getting up to turn off the camera.,continues with the house of the casino and more people continue playing the drums while men watch on the side.,ends with the closing captions shown again while the card is still seated.\n1088,anetv_d-sWAcDYsbc,18290,A young man sits down on a chair in front of a drum set. He,A young man sits down on a chair in front of a drum set.,He,gold,takes two turns doing the same with his hand on the keyboard.,\"begins playing the drums, which are located inside of a living room.\",\"demonstrates how to play a harmonica while talking, and pulls a kayak and more exercises are seen.\",adjusts the foot very much in multiple elevator tiling.\n1089,lsmdc1048_Gran_Torino-92580,4266,Someone glares across the aisle at someone. The family,Someone glares across the aisle at someone.,The family,gold,are gathered for the reading of the will.,excitedly turns and fiving the steward.,takes a swig of his beer and strolls to him.,sets down the hall for a threat.\n1090,anetv_Wgh8e4V8hBc,3928,A man is standing and holding onto a pinata and then quickly lets go when he looks at the little girl in front of it with a stick. The little girl then,A man is standing and holding onto a pinata and then quickly lets go when he looks at the little girl in front of it with a stick.,The little girl then,gold,\"gets in the end and hugs each other, trying to run her hands back and forth.\",placed a fly in the air.,hits the pinata two times and then hands it off to a man behind her.,runs by his friend who continues talking.\n1091,anetv_Wgh8e4V8hBc,13030,A girl is holding a bat. She,A girl is holding a bat.,She,gold,lifts it up as her child swoops beside her while in its arms.,swings at a pinata hanging from the ceiling.,begins swinging at the pinata.,puts it in front of the girl and begin to break it down.\n1092,anetv_Wgh8e4V8hBc,13031,She swings at a pinata hanging from the ceiling. She,She swings at a pinata hanging from the ceiling.,She,gold,hands the bat to a boy in a red shirt.,places the ax behind the stump.,bounces on the ground and try to keep swing.,\"moves out of the tortoise's side, flings it on the swing and kicks it away.\"\n1093,anetv_Wgh8e4V8hBc,3929,The little girl then hits the pinata two times and then hands it off to a man behind her. A boy behind her,The little girl then hits the pinata two times and then hands it off to a man behind her.,A boy behind her,gold,looks up while standing in the air.,gets from ear seats back by the man as the other girl takes the leap as the crowd claps for her and the audience.,attempts to throw the pinata and misses and continues chasing the pinata.,walks up to the pinata and stares at it while the standing man tries to stabilize it.\n1094,anetv_VYOKYSmoyk0,9438,She attempts to hit a yellow ball through a hole. A man,She attempts to hit a yellow ball through a hole.,A man,gold,grabs the hammer and attempts to hit a blue ball through the same hole the woman tried to get the yellow ball through.,\"is screaming on the side, as she grabs a piece of paper and places it in a hand.\",pours sparks onto the ball.,pulls it around from the side to confront him.\n1095,anetv_VYOKYSmoyk0,4738,A woman plays croquet and then talks. A guy,A woman plays croquet and then talks.,A guy,gold,\"plays croquet, misses the goal, and shows disappointment.\",gropes his arm in the air.,takes a razor to trim the woman's hair with scissors.,helps her jump off.\n1096,anetv_VYOKYSmoyk0,4739,\"A guy plays croquet, misses the goal, and shows disappointment. The guy\",\"A guy plays croquet, misses the goal, and shows disappointment.\",The guy,gold,rubs his arm with his hand.,begins to play a target for the ball.,runs and throws the ball in the court.,appears with a baton and celebrates.\n1097,anetv_VYOKYSmoyk0,9437,A woman stands holding a hammer. She,A woman stands holding a hammer.,She,gold,attempts to hit a yellow ball through a hole.,moves aside and throws a shot put.,lifts the woman onto the ground.,holds her hands out and starts to demonstrate how to create a process.\n1098,anetv_VYOKYSmoyk0,9439,A man grabs the hammer and attempts to hit a blue ball through the same hole the woman tried to get the yellow ball through. The woman hands the camera to the man and he,A man grabs the hammer and attempts to hit a blue ball through the same hole the woman tried to get the yellow ball through.,The woman hands the camera to the man and he,gold,hits the golden ball into the white net and separates the ball for a little time.,films her hitting a red ball towards the hole.,hits the ball once.,hits the ball over the net to another female who continues taking the ball to sand it.\n1099,anetv_VYOKYSmoyk0,4741,A man stands with his hands formed on the lawn. The woman,A man stands with his hands formed on the lawn.,The woman,gold,enters the castle and performs numerous black on the stage.,walks behind the man wearing a tray.,looks at the mirror.,\"walks over and hits a red, croquet ball.\"\n1100,anetv_Mu8-AwcMqaw,13569,A young woman is seen speaking to the camera and leads into her showing off her hair then tying it into a ponytail. She,A young woman is seen speaking to the camera and leads into her showing off her hair then tying it into a ponytail.,She,gold,sprays down her hair and then braids her bangs followed by pushing the braid back into a ponytail.,is then seen climbing into her speaking in front of her face and ends with her following with her while putting her sunglasses attached.,studio ends with more screen in the background.,speaks up and ends followed by talking and the woman breaking stuff and speaking to the camera while making it in a clamp.\n1101,anetv_Mu8-AwcMqaw,13570,She sprays down her hair and then braids her bangs followed by pushing the braid back into a ponytail. She,She sprays down her hair and then braids her bangs followed by pushing the braid back into a ponytail.,She,gold,continues combing her hair several times and starts walking again.,slowly shakes her hair around the back of her head and shows her makeup to the other.,puts a bow in her hair in the end and smiles off to the camera.,continues standing in front of the camera and continues brushing her hair in the end and jumps.\n1102,lsmdc0016_O_Brother_Where_Art_Thou-55661,7799,\"The band has launched into 'Man of Constant Sorrow', precipitating the huge reaction. Someone, still trying to get someone's attention,\",\"The band has launched into 'Man of Constant Sorrow', precipitating the huge reaction.\",\"Someone, still trying to get someone's attention,\",gold,\"looks up, stunned at the ovation.\",walks past the booth.,sends him towards the stage.,returns attention to someone.\n1103,anetv_dcEdjqyHj8M,18861,The men cut wood in various ways in front of a large audience. One,The men cut wood in various ways in front of a large audience.,One,gold,man crashes his back into the seat and the people holding him carry him in and out of frame.,men begin to play the game with sticks in their hands as well as playing crochet and taking cards and celebrating with one another.,shows people in the back garden.,finishes before the other and is shown again in slow motion.\n1104,anetv_dcEdjqyHj8M,13470,\"Next, they move to do the same thing again with different trees. Finally, the man in the red shirt\",\"Next, they move to do the same thing again with different trees.\",\"Finally, the man in the red shirt\",gold,\"dances with a instructor talking happily, showing the ball in his hand before assisting him on.\",uses a wire stick to indicate the exterior methods that he uses.,finishes and wins and begins to cheer as his replay begins.,\"stops diving, forgetting what he is near.\"\n1105,anetv_dcEdjqyHj8M,18860,Two men are seen chainsawing on a stage while a man stands in the middle. The men,Two men are seen chainsawing on a stage while a man stands in the middle.,The men,gold,begin wrestling one another while eating.,continue dancing around in sync with one another.,cut wood in various ways in front of a large audience.,continue to play with one another while the camera pans around their movements.\n1106,anetv_WidcZbpPEC0,10264,\"Then, the men compete arm wrestling and the winner looks happy, while people applaud. A man\",\"Then, the men compete arm wrestling and the winner looks happy, while people applaud.\",A man,gold,walks in the middle of the court and flips one jump and takes a break.,talks to the camera.,drinks beer from a bottle.,adjusts the screen and sits in a chair.\n1107,anetv_WidcZbpPEC0,10263,\"People are in a room talk to each other. Then, the men compete arm wrestling and the winner\",People are in a room talk to each other.,\"Then, the men compete arm wrestling and the winner\",gold,\"looks happy, while people applaud.\",wins the match and wins.,can win the contest.,puts more cards on a table.\n1108,anetv_-5c9WHk408g,6164,A man is holding a paintball gun in his hand. He,A man is holding a paintball gun in his hand.,He,gold,begins to eat and looking at the man.,is holding a stick in his hands and talks to the camera.,is tackled by the boys.,\"runs out from behind a building, shooting at the other players.\"\n1109,anetv_-5c9WHk408g,12558,They hide behind several obstacles in the field. Then they,They hide behind several obstacles in the field.,Then they,gold,glance up to see the herd hitting a path.,jump out and shoot at each other with the paint bullets.,remove shingles across their crates and pass through tall towns.,object right to one side of the remaining children.\n1110,anetv_-5c9WHk408g,6165,\"He runs out from behind a building, shooting at the other players. The players\",\"He runs out from behind a building, shooting at the other players.\",The players,gold,shoot back as he runs at top speed.,\"stand over the backs of the pucks, leaning on the lane talking.\",grudgingly and swerves back to take his place during this task.,paired up 10 balls as the students tumble into a round classroom.\n1111,anetv_-5c9WHk408g,12557,A group of people put on paintball gear. They,A group of people put on paintball gear.,They,gold,play a game of soccer in the field.,ride the horses around on a dirt track.,hide behind several obstacles in the field.,lead the race and a ride down the slope.\n1112,anetv_-5c9WHk408g,6166,The players shoot back as he runs at top speed. They,The players shoot back as he runs at top speed.,They,gold,explode on the opposite end of the road.,keep the ball up in the air.,fly high over a single bomb and an upward black painted screen approaches him.,\"continue through the course, reloading.\"\n1113,lsmdc0050_Indiana_Jones_and_the_last_crusade-70547,2729,Someone is revealed coming down the stairs toward people. Someone,Someone is revealed coming down the stairs toward people.,Someone,gold,\"drives his car through the crowded streets, someone beside him and someone in the back seat.\",holds the hand down to someone's face.,\"raises his hands as someone is forlornly, on the other side behind the door.\",is the only one indian player.\n1114,lsmdc0050_Indiana_Jones_and_the_last_crusade-70547,2730,Someone waves his arms and shouts to a camel herder. Someone,Someone waves his arms and shouts to a camel herder.,Someone,gold,removes his hat and hits someone with it.,\"tosses a baton, helps him into and hold her.\",joins in by a bouquet of flowers and kisses them.,parts hurdles the cage!\n1115,anetv_RTM6iJxc-G0,843,Another group of people are seen out in public playing together. One last shot,Another group of people are seen out in public playing together.,One last shot,gold,is another again with a young girl sitting down in the pool.,rolls in and singing to play on one more while he goes under the ball.,fires a man higher and stands behind them.,is shown of the group playing together.\n1116,anetv_RTM6iJxc-G0,842,A group of people are seen playing instruments together. Another group of people,A group of people are seen playing instruments together.,Another group of people,gold,are shown hitting balls to one another and ends placing them down in the middle.,are seen wandering around while the camera pans around in a closeup of the women.,are seen playing a game of curling.,are seen out in public playing together.\n1117,lsmdc1045_An_education-90161,18424,\"He smiles lovingly at her, looks down. Very slowly they\",\"He smiles lovingly at her, looks down.\",Very slowly they,gold,share a tender kiss.,lean together and kiss.,put their rosy lips together and kiss.,can't take his gaze off someone.\n1118,lsmdc1045_An_education-90161,18425,They smile then sit awkwardly. Someone,They smile then sit awkwardly.,Someone,gold,puts her handbag on the kitchen table.,opens them once out and takes a seat.,\"jumps into her own chair, upraised hand on her hips.\",rises slightly onto his lap.\n1119,lsmdc1045_An_education-90161,18428,Someone stops her cake baking. She,Someone stops her cake baking.,She,gold,display a big wonder package after she enters guests with someone's food items.,collects her footprints in a bin.,goes to look at the book.,raises her hands to the moist can.\n1120,lsmdc1045_An_education-90161,18426,Someone puts her handbag on the kitchen table. She,Someone puts her handbag on the kitchen table.,She,gold,\"walks away, watching her go.\",shows it to her father.,\"folds her glasses, and takes them in the platter.\",grabs two of the comp book bottles and joins them in the process.\n1121,lsmdc0020_Raising_Arizona-57618,5848,Someone's eyes are fixed on something in the road ahead. Someone's attention,Someone's eyes are fixed on something in the road ahead.,Someone's attention,gold,is still on the calendar.,is still on the road.,is drawn to her watching.,is suspended on the road.\n1122,lsmdc0020_Raising_Arizona-57618,5852,\"As someone bursts in the front door, holding someone. They\",\"As someone bursts in the front door, holding someone.\",They,gold,\", someone wraps his arms around someone.\",burst into action and sees one.,\"look up, dumbstruck and mortified, from the sofa where the have been watching tv.\",can see his license plate.\n1123,lsmdc0020_Raising_Arizona-57618,5854,She storms into the bedroom and slams the door. There,She storms into the bedroom and slams the door.,There,gold,is an awkward silence as someone studies his thumb and someone stares at the ceiling.,girl stockings up and slips inside.,knocking clay the pogo stick into the mud.,looks up and smiles.\n1124,lsmdc0020_Raising_Arizona-57618,5849,Someone's attention is still on the road. He,Someone's attention is still on the road.,He,gold,\"is opening his door, even though the car is still racing along.\",turns to a doorway and looks down from the dashboard.,notices his drink like lying on a hole beneath it.,\"stares at someone, then steps forward and sets his hands on her hips.\"\n1125,lsmdc0020_Raising_Arizona-57618,5850,\"As the car passes the carton, someone's hand reaches from the passenger door and snags it. As someone\",\"As the car passes the carton, someone's hand reaches from the passenger door and snags it.\",As someone,gold,\"hooks his tactical belt, then takes the wheel for the hatchback.\",\"listens to the footsteps of someone, someone's van pulls away.\",pulls the carton in and slams his door shut.,reaches on to seat.\n1126,lsmdc0020_Raising_Arizona-57618,5853,\"They look up, dumbstruck and mortified, from the sofa where the have been watching tv. She\",\"They look up, dumbstruck and mortified, from the sofa where the have been watching tv.\",She,gold,listens as he plays for another movie.,storms into the bedroom and slams the door.,comes in and starts decorating the christmas tree or sitting on a bench.,is just saying the latest trick is.\n1127,lsmdc0020_Raising_Arizona-57618,5851,Crane up in the car speeding away. As someone,Crane up in the car speeding away.,As someone,gold,\"trudges briskly across the street a remote control appears to him, knocking someone off.\",\"pulls back down, a bird connects its paw to his neck, resembling a thin branch.\",\"bursts in the front door, holding someone.\",\"continues, someone approaches, dead.\"\n1128,anetv_1cccnJAK7TI,2640,The lady is in pain. The guy,The lady is in pain.,The guy,gold,gives a thumbs up card.,does a hand stand and lifts the mans helmet.,gets on his underwear and put the right tire on.,whips with a white paper towel.\n1129,lsmdc1045_An_education-90257,10958,She slams down her book. She,She slams down her book.,She,gold,nods quickly to answer.,dives down a wave towards the pool edge.,follows him in circles.,opens the bedroom window.\n1130,lsmdc1045_An_education-90257,10959,\"She opens the bedroom window. Smoking, she\",She opens the bedroom window.,\"Smoking, she\",gold,looks out to the street lights.,enters the bathroom and closes the doors.,marches into the office.,climbs her living room chair.\n1131,lsmdc1045_An_education-90257,10956,Her eyes wheel up as she looks at him. He,Her eyes wheel up as she looks at him.,He,gold,tries to take her hand.,is shocked to something else.,claps his hands as the door slams shut.,\"stands next to him, entranced him.\"\n1132,lsmdc1045_An_education-90257,10960,\"Smoking, she looks out to the street lights. Her parents\",\"Smoking, she looks out to the street lights.\",Her parents,gold,are listening to the receptionist phone.,uncomfortable in the truck.,are downstairs in the kitchen.,slide the mattress against the back.\n1133,lsmdc1045_An_education-90257,10961,Her parents are downstairs in the kitchen. Someone,Her parents are downstairs in the kitchen.,Someone,gold,watches her parents doing the washing up.,is awakened by the sound of someone's appearance.,is filming a field of woman from an empty kitchen.,picks them up and sets them in the basket.\n1134,lsmdc1045_An_education-90257,10957,\"Back at home, she sits studying. She\",\"Back at home, she sits studying.\",She,gold,throws her one last slip to the side.,uses a gun bat.,slams down her book.,\"dabs sleepily, then laughs.\"\n1135,lsmdc3062_SORCERERS_APPRENTICE-30798,19568,\"As we revolve around him, we discover someone glowering behind his shoulder. At the Wall Street Bull sculpture, someone\",\"As we revolve around him, we discover someone glowering behind his shoulder.\",\"At the Wall Street Bull sculpture, someone\",gold,is dragged toward a bianca compound.,rises from top of his knees.,continues to shovel drawing of someone on his heels.,thoughtfully takes in his surrounding.\n1136,lsmdc3062_SORCERERS_APPRENTICE-30798,19566,\"Now someone rejoins someone, passing two cops. He\",\"Now someone rejoins someone, passing two cops.\",He,gold,gets thrown sideways his head.,holds up his fists.,stands and points at a table.,takes his frozen speed off with an emotional jump.\n1137,lsmdc3062_SORCERERS_APPRENTICE-30798,19569,\"At the Wall Street Bull sculpture, someone thoughtfully takes in his surrounding. He\",\"At the Wall Street Bull sculpture, someone thoughtfully takes in his surrounding.\",He,gold,casts a glance at the humanoid figures.,wanders overlook where a moss dusted ominous tools sits on the plain.,finds someone signing autographs for fans.,glances back to see the building as it rests.\n1138,lsmdc3062_SORCERERS_APPRENTICE-30798,19567,\"Someone gazes wistfully after the departing train. As we revolve around him, we\",Someone gazes wistfully after the departing train.,\"As we revolve around him, we\",gold,\"see his typewriter through the window, and the tall tall marching teacher.\",watch the mocha - eyed razor into a desert glint in the full moon.,discover someone glowering behind his shoulder.,\"find men reaching his murky, blue, mountain road.\"\n1139,anetv_Ue2EbbpegkE,2353,\"Then, the man performs toeside using a snow skateboard. The man\",\"Then, the man performs toeside using a snow skateboard.\",The man,gold,rides his bike with a big sign.,continues explaining and performs a turn.,walks along the parallel rails.,ride the skateboard with the 9 arms.\n1140,anetv_4oZtb0kglx4,407,\"Bright pink french cancan candy wrap is shown. The materials, tools and and how to make it\",Bright pink french cancan candy wrap is shown.,\"The materials, tools and and how to make it\",gold,go over the interior of the tiled wallpapers.,\"out, take place between the stacks of layers.\",are demonstrated step by step.,thumper for small fire coordinated.\n1141,anetv_4oZtb0kglx4,4820,\"French cancan candy wrap, you need tissue paper, you fold it down really nicely. Then you get scissors and you cut off some of it, you\",\"French cancan candy wrap, you need tissue paper, you fold it down really nicely.\",\"Then you get scissors and you cut off some of it, you\",gold,bought the lipstick on the mugs.,can take the package up and finish battling the ultimate company.,are on the wet side and then put the needle back in a shoe.,put the gift in a different piece of tissue paper and fold it up nicely.\n1142,anetv_4oZtb0kglx4,4822,\"After that you put it in the center of your wrap, twist the two ends and get some ribbon to tie the ends. Then you\",\"After that you put it in the center of your wrap, twist the two ends and get some ribbon to tie the ends.\",Then you,gold,return the fish to the sand and put it into a pile.,can unfold the bottom of the tissue paper to make a flower look.,catch a dryer and put lipstick on a brush.,\"are all hair skiboard, as well as demonstrating and posing, text is given each video of how you should curl it.\"\n1143,anetv_4oZtb0kglx4,408,\"The materials, tools and and how to make it are demonstrated step by step. After wrapping the ribbon is used to tie the ends and ruffles\",\"The materials, tools and and how to make it are demonstrated step by step.\",After wrapping the ribbon is used to tie the ends and ruffles,gold,them in the end.,are made on each end.,are all over the top.,\"evenly on the board, he then rings it.\"\n1144,anetv_4oZtb0kglx4,4821,\"Then you get scissors and you cut off some of it, you put the gift in a different piece of tissue paper and fold it up nicely. After that you\",\"Then you get scissors and you cut off some of it, you put the gift in a different piece of tissue paper and fold it up nicely.\",After that you,gold,appear you stole tools that should be the size of a grey tube.,put the paper down and put it on a shoe in front of them.,\"put it in the center of your wrap, twist the two ends and get some ribbon to tie the ends.\",return the steeling present and give it a week.\n1145,anetv_PVed6JEd3ZM,16680,He crosses the monkey bars one bar at a time while swinging. He,He crosses the monkey bars one bar at a time while swinging.,He,gold,continues to ride the horse that is more focused in the perfume.,\"swings the open rope, giving a back flip into the water, then sees the french man crouching at the beach.\",\"swings it onto the table, swinging back and forth as he comes.\",gets to the end and does some pull ups on the last bar.\n1146,anetv_PVed6JEd3ZM,16679,A man in a red tank top is crossing the monkey bars. He,A man in a red tank top is crossing the monkey bars.,He,gold,takes several stunts around the air.,riding the bikes in front of the bars.,crosses the monkey bars one bar at a time while swinging.,using the skateboard near a board to flip in the block.\n1147,anetv_PVed6JEd3ZM,16681,He gets to the end and does some pull ups on the last bar. Then he,He gets to the end and does some pull ups on the last bar.,Then he,gold,goes to throw the ball while winning and are not successful.,leans back and takes off his seat scout.,jumps down into the grass.,demonstrates how to do proper techniques to get all backwards up fake.\n1148,anetv_PVed6JEd3ZM,329,A man is seen climbing a set of monkey bars back and fourth on a bar. He,A man is seen climbing a set of monkey bars back and fourth on a bar.,He,gold,continues by swinging the instrument off the floor while others watch.,continues to perform a bumper routine while speaking to the camera.,swings all around the parallel bars.,climbs all the way to the end and jumps down.\n1149,anetv_O4LdjwlsGKI,15518,\"After demonstrating a stance on the board, he picks it up and walks back several yards, and places the skateboard on the ground, tiling it up with one foot on the end. He\",\"After demonstrating a stance on the board, he picks it up and walks back several yards, and places the skateboard on the ground, tiling it up with one foot on the end.\",He,gold,continues to spin in new parts of the field and ends up inching it toward land.,turns it back and forth as he moves the rest of it to the ground to roll it down.,\"puts it down flat, and begins to skate forward on the board.\",stops and gets to the top of the wall.\n1150,anetv_O4LdjwlsGKI,15519,\"He flips around on the board, doing a tricky move, and then heads back to where he began to skate. 60 After speaking for a little longer, and gesturing to the board, he\",\"He flips around on the board, doing a tricky move, and then heads back to where he began to skate.\",\"60 After speaking for a little longer, and gesturing to the board, he\",gold,calls the last time score to say no.,goes back and forth until it has chord.,\"repeats the move again, heading back once again to the spot he started from.\",pulls himself toward the other shelf.\n1151,lsmdc3002_30_MINUTES_OR_LESS-842,956,Now someone steps onto the roof. Someone,Now someone steps onto the roof.,Someone,gold,stands on the opposite side.,gazes at the array.,\"dumps two cans into a shaker, tosses the mitt to the air.\",gapes as she sinks down.\n1152,lsmdc3002_30_MINUTES_OR_LESS-842,954,Someone talks on his cell as he runs into the building with the flower store. Someone,Someone talks on his cell as he runs into the building with the flower store.,Someone,gold,takes off his glasses and strides to a duffel bag in his room and walks off revealing the dark tweed suit.,leads someone across the street away into the front hall.,staggers up the front steps.,gazes into the corridor for a long moment as he slowly steps back to those music matches.\n1153,lsmdc3002_30_MINUTES_OR_LESS-842,952,\"Now someone sprints across a bridge, crossing the river in his buttoned up green army jacket. As he reaches the other side, someone\",\"Now someone sprints across a bridge, crossing the river in his buttoned up green army jacket.\",\"As he reaches the other side, someone\",gold,anchors the ramp of his feet with a heavy torch and rushing about 20 yards away.,crosses towards an empty van that is clinging to a sheet that gives tight between his legs.,arrives at the start of the bridge and stops to catch his breath.,grabs the slim sword shield which he spikes him.\n1154,lsmdc3002_30_MINUTES_OR_LESS-842,955,Someone staggers up the front steps. Now someone,Someone staggers up the front steps.,Now someone,gold,glances down the crowded hallway.,races to a staircase outside a terminal building.,steps onto the roof.,takes off his coat and a chain around the seat.\n1155,anetv_cTZw5NUK1-c,17501,Various shots of beaches are shown followed by the camera panning over several shots of waves. A person,Various shots of beaches are shown followed by the camera panning over several shots of waves.,A person,gold,is then seen riding a surfboard through various shots in the camera.,is seen standing ready in front of several men running around and throwing a javelin.,walks into frame waving to the camera with his camera.,puts cigarettes in a locker before joining into several shots.\n1156,anetv_cTZw5NUK1-c,17503,People are shown speaking to the camera when another person crashing on their board several times. More people,People are shown speaking to the camera when another person crashing on their board several times.,More people,gold,are seen swimming around the pool while the camera follows them.,are shown preparing to jump and running down the track while the referee is seen running behind the wall and continue to perform tricks.,are seen walking down as more surfers continue riding the waves.,snowboard several more while riding in the water as they are capturing more of their ride.\n1157,anetv_njPRhj-YgE0,17884,A man begins to talk about what seems like a dog stylist parlor. There,A man begins to talk about what seems like a dog stylist parlor.,There,gold,'s a close up of shoes.,are many dogs being groomed and getting cute fancy hair cuts.,\"comes in a second, smiles to the host.\",is shown up by a young lady and a smooth shaving artist.\n1158,anetv_njPRhj-YgE0,17883,\"Many different women wearing many different shoes are walking a dog on the sidewalk, one wearing wedges walks up some stairs. A man\",\"Many different women wearing many different shoes are walking a dog on the sidewalk, one wearing wedges walks up some stairs.\",A man,gold,begins to talk about what seems like a dog stylist parlor.,jumps towards the dance stage.,walks in front of a dresser looking at the wooden tables.,is standing and near to the board he is shoveling into and dries boards.\n1159,anetv_njPRhj-YgE0,17885,There are many dogs being groomed and getting cute fancy hair cuts. One of them,There are many dogs being groomed and getting cute fancy hair cuts.,One of them,gold,grabs the lash and begins to do it with free hands.,ends up with the other women.,is wagging it's tails very excited enjoying the situation.,remains standing on the sidewalk in the end.\n1160,anetv_b7_ok8iTlT8,13543,He then shreds cheese onto a place with a shredder. He,He then shreds cheese onto a place with a shredder.,He,gold,puts the shredded cheese onto the original plate.,is in the living room and spread the ashes across a bowl.,\"bounces it, creating sparks, trying to insert it out of the box.\",is playing the bagpipes.\n1161,anetv_b7_ok8iTlT8,13539,\"There are distant view shots of areas around Los Angeles, Hollywood, and surrounding areas. A man then\",\"There are distant view shots of areas around Los Angeles, Hollywood, and surrounding areas.\",A man then,gold,jumps before green into a mixing field after another with a skateboard while another thug moves into a building.,places a drug's area using the outside and makes a sign to somebody.,plays as the film cuts between a closeup of his mouth getting dried up.,talks behind a table full of ingredients and cooking utensils.\n1162,anetv_b7_ok8iTlT8,13548,He also adds a different type of oil to the plate. There,He also adds a different type of oil to the plate.,There,gold,are the other ingredients added in and begins to stir it.,are then different clips and angles of the finished food plate.,is still sitting on the referee table.,\", he cuts the dough and puts some ingredients into a slice.\"\n1163,anetv_b7_ok8iTlT8,13545,\"After, he picks some herbs and places them on a plate. He then\",\"After, he picks some herbs and places them on a plate.\",He then,gold,places a funnel to the mix.,puts them together in a dish washer.,adds salt and more pepper to the original plate.,adds salt and eggs and adds a bigger knife to the steel.\n1164,anetv_b7_ok8iTlT8,13547,He then talks about a bottle of oil and adds some to the original plate. He also,He then talks about a bottle of oil and adds some to the original plate.,He also,gold,dips the eggs and mixes it over a white bowl.,demonstrates how to stir the noodles with the club.,eats some cream in the office.,adds a different type of oil to the plate.\n1165,anetv_b7_ok8iTlT8,13540,A man then talks behind a table full of ingredients and cooking utensils. The man then,A man then talks behind a table full of ingredients and cooking utensils.,The man then,gold,places ingredients in a bowl with a pumpkin and ingredients into a shaker.,adds chopped parsley and pours parsley to a small pot.,begins stirring the noodles in a bin with baking lime cone and plays it.,shows off some of his vegetables and ingredients and smells them.\n1166,anetv_b7_ok8iTlT8,13544,\"He puts the shredded cheese onto the original plate. After, he\",He puts the shredded cheese onto the original plate.,\"After, he\",gold,picks some herbs and places them on a plate.,rubs the chin with the clipper and mix it in the pan.,goes to a sink and prep the adhesive.,sits on front the pasta and cooks it with a knife.\n1167,anetv_b7_ok8iTlT8,13541,The man then shows off some of his vegetables and ingredients and smells them. He,The man then shows off some of his vegetables and ingredients and smells them.,He,gold,starts cooking by squeezing a lemon into a bowl of soaked vegetables.,\"suit, he continues shoveling the area.\",then cuts the vegetables and now treats are prepared for a food and then add in a recipe.,shows off the color solution.\n1168,anetv_b7_ok8iTlT8,13546,He then adds salt and more pepper to the original plate. He then,He then adds salt and more pepper to the original plate.,He then,gold,rakes the horse over and over again.,talks about a bottle of oil and adds some to the original plate.,\"adds to the garlic, and then pours them into a pasta pot.\",adds spaghetti to the pan and adds some pasta to the water and season it.\n1169,anetv_b7_ok8iTlT8,13542,\"He starts cooking by squeezing a lemon into a bowl of soaked vegetables. Then, he\",He starts cooking by squeezing a lemon into a bowl of soaked vegetables.,\"Then, he\",gold,\"puts onions, lemon juice, pepper, oil, which he smells, and some other vegetables on a plate.\",cuts slices of sausage and places his knife on a stonewall polishing table.,\"uses a hash to clear a bowl of chocolate and used it with his spatula, making juice in a juicer.\",talks and shows how to use the noodles to cook.\n1170,lsmdc1047_Defiance-91589,3624,One Jewish man hiding in a doorway peers towards the floodlit square where German guards are on duty in front of the barb wired entrance to the ghetto. He,One Jewish man hiding in a doorway peers towards the floodlit square where German guards are on duty in front of the barb wired entrance to the ghetto.,He,gold,\"picks himself up and walks into the office, where a student parents are on tv on the watchnig field.\",strides behind the tent and holds it open.,beckons to someone across the dark narrow street where the people have gathered.,\"looks at a bundle beneath the bank, then approaches someone.\"\n1171,lsmdc1047_Defiance-91589,3628,Someone addresses an elderly man. Someone,Someone addresses an elderly man.,Someone,gold,shows the man a loose trigger on a rifle.,takes a pen off the hook.,whirls around the four soldiers.,gazes calmly at a lettered suited man who runs attentively.\n1172,lsmdc1047_Defiance-91589,3622,Someone addresses two women in the room. Someone,Someone addresses two women in the room.,Someone,gold,jumps in the trips.,wakes with his start.,reaches for it on their bedside laptop.,looks despairingly at someone.\n1173,lsmdc1047_Defiance-91589,3623,\"A beautiful young woman steps forward. Under a cover of darkness, as the ghetto people\",A beautiful young woman steps forward.,\"Under a cover of darkness, as the ghetto people\",gold,\"arrive, they place picks up a circular tomb.\",stream out of a house tearing off their yellow stars.,\"carefully clean off her, he glumly leads her past an arch.\",\"stare at us, they use the bows.\"\n1174,lsmdc1047_Defiance-91589,3627,She and her parents hug each other. Someone,She and her parents hug each other.,Someone,gold,looks back at someone as she gazes toward his uncle.,addresses an elderly man.,twists a scarf around her ears.,looks at the old child.\n1175,anetv_69DNcmkoapw,16414,Two kids are washing their clothes in a sink. They,Two kids are washing their clothes in a sink.,They,gold,rinse the soap off their hands.,are washing their hands in the bath.,begin fighting under a faucet and wiping their hands.,put the clean clothes in a bucket on the floor.\n1176,anetv_69DNcmkoapw,8583,A couple of small children are playing with a tub. They,A couple of small children are playing with a tub.,They,gold,connect a mottled paper with a plastic roll.,step into a room and attach them.,clean the front door of the girl.,are using an old wash board in the water.\n1177,anetv_69DNcmkoapw,8584,They are using an old wash board in the water. They,They are using an old wash board in the water.,They,gold,are all washed and clean as the camera is scrubbed.,go under water and using water.,\"rub clothes up and down the board, pretending to wash them.\",dive diving into the water of the pool.\n1178,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17885,\"Slowly, she brings the phone to her ear, flashing a smile at a man who's just got into the lift. Someone\",\"Slowly, she brings the phone to her ear, flashing a smile at a man who's just got into the lift.\",Someone,gold,walks back to his seat.,\"stands po - faced, not moving a muscle.\",hangs sway beneath the tree.,gets up from a chair and looks down at the tv.\n1179,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17880,She rides the escalator with a soft smile on her face. A man in a gray coat,She rides the escalator with a soft smile on her face.,A man in a gray coat,gold,rides a lower escalator.,demonstrates several clips of the bike.,pulls the devil around him.,looks away from a stained fence.\n1180,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17887,\"He looks up, and their eyes meet. A slow, smug smile\",\"He looks up, and their eyes meet.\",\"A slow, smug smile\",gold,spreads over someone's pale face.,spreads across someone's face as someone chases them away.,appears on someone's young face.,spreads across his face.\n1181,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17884,\"She brings out her mobile and scrolls down past someone, Bloomingdale's, and Chanel to someone. Slowly, she\",\"She brings out her mobile and scrolls down past someone, Bloomingdale's, and Chanel to someone.\",\"Slowly, she\",gold,stops as she watches her work.,wraps his arms around her.,\"brings the phone to her ear, flashing a smile at a man who's just got into the lift.\",sees someone having just walked off by someone.\n1182,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17888,\"A slow, smug smile spreads across his face. She\",\"A slow, smug smile spreads across his face.\",She,gold,leads someone dejected.,\"pass the truck, get in from a gymnasium zone.\",dashes for the stairs.,looks at one of the rafters in the ocean.\n1183,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17879,\"Next morning, someone comes into work in a red dress, with a fluffy orange shrug, swinging a matching orange bag. She\",\"Next morning, someone comes into work in a red dress, with a fluffy orange shrug, swinging a matching orange bag.\",She,gold,\"slings her pearls around her head,, lights out her wedding dress.\",\"tears herself beneath the bottle of someone, grabs her wrist, and drops the mop.\",remains at her side.,rides the escalator with a soft smile on her face.\n1184,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17886,\"Someone cancels the call and shoves the phone back into her bag. In horror, she\",Someone cancels the call and shoves the phone back into her bag.,\"In horror, she\",gold,collects a coin with a shield.,sits kitty corner dripping security on her best friend.,hangs up the phone.,scrabbles into the bag.\n1185,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17882,\"She struts away coolly, then bursts into a run and dives into a lift. A black briefcase\",\"She struts away coolly, then bursts into a run and dives into a lift.\",A black briefcase,gold,falls onto a table top.,rushes towards the class then sweeps through the room.,blocks the closing doors.,\"stands on the ground by the pole, she does a ballet disk.\"\n1186,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17881,A man in a gray coat rides a lower escalator. She,A man in a gray coat rides a lower escalator.,She,gold,watches as an averts someone.,walks up the hand and pauses for just a moment to walk around.,\"joins the woman of the boys, looking up wistfully.\",\"struts away coolly, then bursts into a run and dives into a lift.\"\n1187,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17883,A number of people get out. Someone,A number of people get out.,Someone,gold,peers in a retreating cabinet.,goes forward by the stairs.,glances across at her.,and someone enter the long room.\n1188,lsmdc1019_Confessions_Of_A_Shopaholic-80840,17889,She dashes for the stairs. She,She dashes for the stairs.,She,gold,straightens someone's dress which hangs in the air.,is dark - haired for a moment.,strolls up the corridor towards an unmoving backdoor.,\"runs through the office door, just as someone steps out of the lift.\"\n1189,anetv_SMNXIkCGh_0,9810,A person is rafting in choppy water. He,A person is rafting in choppy water.,He,gold,is trying to climb it.,goes down a river.,is paddling through the water in the river.,turns the camera around and gives a thumbs up.\n1190,anetv_SMNXIkCGh_0,8982,A camera shows a rough lake and landscapes as well as people off in the distance and a man giving the camera a thumbs up. The camera,A camera shows a rough lake and landscapes as well as people off in the distance and a man giving the camera a thumbs up.,The camera,gold,moves away on the road as the man rides outside the house.,zooms in to the bleachers and movements motioning to the camera's movements.,zooms in on people riding along in tubes.,zooms out in the boat as well as a man speaking in the water.\n1191,anetv_17zMW3rzlR4,11473,\"As they continue to place wax, they use tools to grind and smooth the skis. Finally, the use of cloths by the workers\",\"As they continue to place wax, they use tools to grind and smooth the skis.\",\"Finally, the use of cloths by the workers\",gold,use manual soap to clean the statuesque man.,extend the rope to the back.,take off how they would manage to look doing the area with some paper in it.,smooths and shines the skis.\n1192,anetv_17zMW3rzlR4,11472,\"Several professional men are placing wax on all types of skis. As they continue to place wax, they\",Several professional men are placing wax on all types of skis.,\"As they continue to place wax, they\",gold,use tools to grind and smooth the skis.,cause numerous manmade areas and wire testing.,shine the shingles with the oars.,kneel in buckets to do wakeboard underneath.\n1193,lsmdc3056_PUBLIC_ENEMIES-2991,17520,\"From the stairwell, our gaze lingers on the door, then drifts over to a set of elevators. He\",\"From the stairwell, our gaze lingers on the door, then drifts over to a set of elevators.\",He,gold,\"steps at the starting console, then glances at the bird.\",descends halfway across a mat and takes a bus.,turns her over to him.,steps off and heads for the door.\n1194,lsmdc3056_PUBLIC_ENEMIES-2991,17492,Her full lips curl into a smile. They,Her full lips curl into a smile.,They,gold,travel the train speedily to the paved floor.,\"closing her eyes, she imitates someone.\",gaze into each other's eyes.,melts into a smile.\n1195,lsmdc3056_PUBLIC_ENEMIES-2991,17533,\"As the two criminals get into the parked car. Outside, two agents\",As the two criminals get into the parked car.,\"Outside, two agents\",gold,stand in the middle of another car.,\"kiss a dark - haired guard, who scratches the back of the table.\",pull their car up as their superior exits the building.,drop someone on the far side of the building's roof.\n1196,lsmdc3056_PUBLIC_ENEMIES-2991,17503,\"He flashes a puckish grin. Later, the Pierce - Arrow\",He flashes a puckish grin.,\"Later, the Pierce - Arrow\",gold,rolls to another cabinet then stands under the bar.,runs across a blue awning and up parts of a winch sitting in a car.,pulls up to a curb.,stands on the rocky path with his head down its body and peer up closer to someone.\n1197,lsmdc3056_PUBLIC_ENEMIES-2991,17474,The exotic beauty drops her gaze. He,The exotic beauty drops her gaze.,He,gold,heads out a secret door at an open house by a door.,happens at night as he catfish them in three sections.,squeezes his hand away.,gets someone's coat.\n1198,lsmdc3056_PUBLIC_ENEMIES-2991,17490,\"Someone lifts the present from its box, staring at it. She\",\"Someone lifts the present from its box, staring at it.\",She,gold,holds the receiver to someone's ear.,lifts her gaze to the baby's gaping lips.,looks back at someone's reflection in a mirror.,\"swallows, then raises her tender gaze to meet someone's.\"\n1199,lsmdc3056_PUBLIC_ENEMIES-2991,17529,\"He rises, leaving a lifeless someone. Outside, someone\",\"He rises, leaving a lifeless someone.\",\"Outside, someone\",gold,stands to pull back an french bar.,carries a wicker handkerchief from a porcelain rack.,holds the van up at a top speed.,sees two men hurrying down the alley steps.\n1200,lsmdc3056_PUBLIC_ENEMIES-2991,17499,\"Later still, someone strolls in her slip to a window seat. Open suitcases\",\"Later still, someone strolls in her slip to a window seat.\",Open suitcases,gold,sit out with survivors on their property.,\"occupy every inch, filled to the brim with neatly packed clothes.\",\"are being wheeled into their home and she fails, hammering more buttons.\",hang from the side - promenade's stall - - - the fashionable baggy.\n1201,lsmdc3056_PUBLIC_ENEMIES-2991,17473,\"Yanking the man's wrist over the counter, someone snatches his claim ticket. Someone\",\"Yanking the man's wrist over the counter, someone snatches his claim ticket.\",Someone,gold,stares at him with a crumpled scowl.,stares as he finds the man's coat.,is safely in.,soberly scans the other patients.\n1202,lsmdc3056_PUBLIC_ENEMIES-2991,17508,\"Someone leads him across the street to a tawny white apartment building. Inside, they\",Someone leads him across the street to a tawny white apartment building.,\"Inside, they\",gold,\"enter a long, dim hallway.\",find an old - building built in a narrow garden.,\"walk behind a tall wrought - paneled entrance, open walls, and walls.\",approach a modern white house and the looming cemetery.\n1203,lsmdc3056_PUBLIC_ENEMIES-2991,17527,Someone watches with a clenched jaw. His expression grows solemn and he,Someone watches with a clenched jaw.,His expression grows solemn and he,gold,reaches for his ear.,runs toward it looking fairly gondorian.,removes his protective glass.,glares down the hall.\n1204,lsmdc3056_PUBLIC_ENEMIES-2991,17513,\"Someone steps toward the doorway. As he enters, someone\",Someone steps toward the doorway.,\"As he enters, someone\",gold,raises his glass and stops.,hurriedly takes the box and heads inside.,lingers in the hall.,has given him the agitated curtsy.\n1205,lsmdc3056_PUBLIC_ENEMIES-2991,17504,\"Later, the Pierce - Arrow pulls up to a curb. Someone\",\"Later, the Pierce - Arrow pulls up to a curb.\",Someone,gold,climbs into the suv into the center of the lake.,\"pauses, poised inside the center of the cooker.\",drives with someone at his side.,lowers a cable past its mother's inner doors.\n1206,lsmdc3056_PUBLIC_ENEMIES-2991,17514,She holds out the open wallet as well. Someone,She holds out the open wallet as well.,Someone,gold,turns all the way into a clear receiver and off into the main station.,eyes it and gives a nod.,gives him the message on someone's page.,turns to her and goes out of the shop.\n1207,lsmdc3056_PUBLIC_ENEMIES-2991,17475,He gets someone's coat. He,He gets someone's coat.,He,gold,washes a handkerchief and flicks it.,holds her coat open.,moves to the snowy backseat.,\"leaves, shoving someone's staff down.\"\n1208,lsmdc3056_PUBLIC_ENEMIES-2991,17483,\"Someone complies and looks around with a faint smile. Behind her, someone\",Someone complies and looks around with a faint smile.,\"Behind her, someone\",gold,\"bangs his hand against the door, admiring his troubled face.\",appears in his undershirt and leans through an open - air interior window.,addresses the others on her cell.,\"stands, prompting her.\"\n1209,lsmdc3056_PUBLIC_ENEMIES-2991,17525,\"Glancing warily ahead, he crouches. Someone 'mouth\",\"Glancing warily ahead, he crouches.\",Someone 'mouth,gold,rises as he catches sight of a vast presenter.,slides out a few inches.,drops open as he stares downward.,hangs open as flames creep from his eyes.\n1210,lsmdc3056_PUBLIC_ENEMIES-2991,17505,Someone drives with someone at his side. Two other g - men,Someone drives with someone at his side.,Two other g - men,gold,approach the luxury car.,are led toward a bar.,arrive at a grove - covered road.,drive in a parking space.\n1211,lsmdc3056_PUBLIC_ENEMIES-2991,17501,His gaze pours over her face and he grins. Someone gazes dreamily at him and he,His gaze pours over her face and he grins.,Someone gazes dreamily at him and he,gold,forces a pleased smile.,\"pulls away, slowly lowering his legs.\",gives her another smile.,licks his lips lips and turns toward someone then joins someone who sits facing the bald man's basket.\n1212,lsmdc3056_PUBLIC_ENEMIES-2991,17509,\"Someone leads Agent Barton to a door, then readies his hand on his gun. We\",\"Someone leads Agent Barton to a door, then readies his hand on his gun.\",We,gold,watch the agents from afar as they prepare.,\"peers in the office door, then steps over with a stone and staggers jogging past him.\",stare at each other.,\"oven lid opens, revealing a package, which's thrust into the walking tire.\"\n1213,lsmdc3056_PUBLIC_ENEMIES-2991,17478,\"With a coy smirk, she steps out from behind the counter and slips into her coat. Someone\",\"With a coy smirk, she steps out from behind the counter and slips into her coat.\",Someone,gold,leads someone down a hall into a luxurious living room.,watches him as he avoids her father's gaze lingers for a moment.,\"looks on and mixes on the loving strokes of someone's boat, which does n't be touched aloft.\",\"packs a packet bag her luggage, stands at it, and gives the key.\"\n1214,lsmdc3056_PUBLIC_ENEMIES-2991,17526,\"On the floor, a blood pool spreads beneath someone. Someone\",\"On the floor, a blood pool spreads beneath someone.\",Someone,gold,lies sleeping in the mother's bed.,watches with a clenched jaw.,jogs and folds his pillow behind his head.,\"walks on the bring floor, leaving her father alone with her.\"\n1215,lsmdc3056_PUBLIC_ENEMIES-2991,17506,Two other g - men approach the luxury car. One of the street agents,Two other g - men approach the luxury car.,One of the street agents,gold,looks off with a troubled expression.,take someone out in a square street.,pulls the door shut with his club.,looks to his young partner who bows his head.\n1216,lsmdc3056_PUBLIC_ENEMIES-2991,17532,He takes cover behind a garden plant. As the two criminals,He takes cover behind a garden plant.,As the two criminals,gold,get into the parked car.,walk in and angle back with him.,come out behind the carriage.,walk into view to find a tree branch on the bodhi tree.\n1217,lsmdc3056_PUBLIC_ENEMIES-2991,17519,\"Squinting, he steps into the hallway and lets the door swing shut behind him. From the stairwell, our gaze\",\"Squinting, he steps into the hallway and lets the door swing shut behind him.\",\"From the stairwell, our gaze\",gold,\"lands on the walkways pump, turns away from its father, then dismounts from the cottage.\",\"lingers on the door, then drifts over to a set of elevators.\",drifts to someone standing in front of a window of the toilet mirror.,lingers in the bay.\n1218,lsmdc3056_PUBLIC_ENEMIES-2991,17521,He steps off and heads for the door. Someone,He steps off and heads for the door.,Someone,gold,smiles as someone kneels on top of him.,draws some more back across the cellar.,eyes the invisibility jacket.,sees the rugged man behind him.\n1219,lsmdc3056_PUBLIC_ENEMIES-2991,17515,Someone eyes it and gives a nod. Someone,Someone eyes it and gives a nod.,Someone,gold,turns his face up to someone.,pulls his own wand from his vest pocket.,\"leaves, shutting the door.\",grins as her hands cross to the key.\n1220,lsmdc3056_PUBLIC_ENEMIES-2991,17495,A recent flashback shows them writhing ecstatically. Another flash,A recent flashback shows them writhing ecstatically.,Another flash,gold,shines from the inside of their jumpers.,comes a light from inside the arena.,shows someone kiss her mouth.,reflects another's light video.\n1221,lsmdc3056_PUBLIC_ENEMIES-2991,17539,A banker leads someone to a vault. As someone,A banker leads someone to a vault.,As someone,gold,talks on the phone.,\"shuffles away from the touch of paths, his speed increases.\",arrives under the trio again.,leads someone on campus.\n1222,lsmdc3056_PUBLIC_ENEMIES-2991,17480,\"As she takes in the space, he sets a chair near a sofa and looks to her. Someone\",\"As she takes in the space, he sets a chair near a sofa and looks to her.\",Someone,gold,glances up on an extra floor.,\"bites her thumb and walks down to someone's house, with a enormous shovel that spins his shoulders up.\",doffs his glasses and frowns obliviously.,\"joins him, slipping off her coat.\"\n1223,lsmdc3056_PUBLIC_ENEMIES-2991,17511,Someone lifts his knuckles to the door. It,Someone lifts his knuckles to the door.,It,gold,shows someone removing the packaging.,\"opens, revealing a young woman in a demure house dress.\",figures walk on a path off.,shuts his eyes.\n1224,lsmdc3056_PUBLIC_ENEMIES-2991,17491,\"She swallows, then raises her tender gaze to meet someone's. Her full lips\",\"She swallows, then raises her tender gaze to meet someone's.\",Her full lips,gold,lingering in a warm kiss.,curl into a smile.,form a long line.,set up a gold shade.\n1225,lsmdc3056_PUBLIC_ENEMIES-2991,17489,\"Folding back the layer, she finds a camel hair coat with a thick fur collar. Someone\",\"Folding back the layer, she finds a camel hair coat with a thick fur collar.\",Someone,gold,runs to her front room.,gazes up at the screen shuttered overlooking a city.,\"lifts the present from its box, staring at it.\",is in a dark suit.\n1226,lsmdc3056_PUBLIC_ENEMIES-2991,17497,\"His face withdraws down her chest. Later as they cuddle, they\",His face withdraws down her chest.,\"Later as they cuddle, they\",gold,share a warm smile.,smile at each other.,stare at each other's contents.,are on off the hike.\n1227,lsmdc3056_PUBLIC_ENEMIES-2991,17523,Someone races toward the building. Someone,Someone races toward the building.,Someone,gold,leaps from the bar onto the roof of the diner.,stops and slides a phone behind her ear.,reaches outside and presses the wooden handle.,whips out his gun and peers at a car parked in the alley.\n1228,lsmdc3056_PUBLIC_ENEMIES-2991,17510,We watch the agents from afar as they prepare. Someone,We watch the agents from afar as they prepare.,Someone,gold,follows a small group of people lying on a canopied floor with miles away.,lifts his knuckles to the door.,shovels onions in the back seat of a rental truck.,\"opens the door, revealing a smiling display of monitors.\"\n1229,lsmdc3056_PUBLIC_ENEMIES-2991,17522,\"In the street, someone turns. Someone\",\"In the street, someone turns.\",Someone,gold,hurries off and someone barges past him.,returns to the police car window.,runs through a retirement home.,races toward the building.\n1230,lsmdc3056_PUBLIC_ENEMIES-2991,17516,\"Someone leaves, shutting the door. The woman\",\"Someone leaves, shutting the door.\",The woman,gold,kneels next to the base of her new hoof and adds the blow.,\"adjusts her seat as he uses it to dance, then hunches forward and shakes his head as he cocks his arms.\",takes his hand in his and playfully writes down the picture.,looks wearily to the stout gentleman at the dining table.\n1231,lsmdc3056_PUBLIC_ENEMIES-2991,17494,Glimpses of someone thrusting into someone from behind interspersed with their nuzzling face - to - face. A recent flashback,Glimpses of someone thrusting into someone from behind interspersed with their nuzzling face - to - face.,A recent flashback,gold,shows them writhing ecstatically.,wings for someone lady.,shows him standing on a couch as he talks in his office.,shows us dancers.\n1232,lsmdc3056_PUBLIC_ENEMIES-2991,17535,\"The agent shifts his rueful gaze. With a slow, deliberate stride, someone\",The agent shifts his rueful gaze.,\"With a slow, deliberate stride, someone\",gold,steps closer to his man.,attempts to gain a text from someone.,swivels his back on the seat.,grips the horn of his collar.\n1233,lsmdc3056_PUBLIC_ENEMIES-2991,17512,\"It opens, revealing a young woman in a demure house dress. Someone\",\"It opens, revealing a young woman in a demure house dress.\",Someone,gold,steps toward the doorway.,grins and sniffs it.,notices a bag on the dresser beside someone and picks up her cell.,\"pulls back the tie, then gets out of the house.\"\n1234,lsmdc3056_PUBLIC_ENEMIES-2991,17536,\"With a slow, deliberate stride, someone steps closer to his man. His frustrated gaze\",\"With a slow, deliberate stride, someone steps closer to his man.\",His frustrated gaze,gold,\"scans the agents, his breath puffing visibly in the night air.\",\"fixed on the street, someone drops the gun from the thug's head.\",\"beam around him rapidly, as if she were again for a few moments, but the door behind him has composes.\",joins someone's friend.\n1235,lsmdc3056_PUBLIC_ENEMIES-2991,17502,Someone gazes dreamily at him and he gives her another smile. His thumb,Someone gazes dreamily at him and he gives her another smile.,His thumb,gold,slides down her cheek and down her cheeks.,billows against the corners and he lifts his eyes to the man as if he is staring at them in the darkness.,caresses her cheek in a gently rhythm.,is turned close to her and her look back at someone.\n1236,lsmdc3056_PUBLIC_ENEMIES-2991,17493,\"Later on a bed, they smother each other with kisses. Her head, revealing a silvery blue slip, then\",\"Later on a bed, they smother each other with kisses.\",\"Her head, revealing a silvery blue slip, then\",gold,\"with long, brown, pleasant hair, sits at three feet on top of deck.\",files round the corner in her two apartment.,leans over on top of someone.,strikes thick with naked chinese ink.\n1237,lsmdc3056_PUBLIC_ENEMIES-2991,17538,\"Someone encounters a guard, sucker punches him, and bangs his head against the counter. Without breaking his stride, someone\",\"Someone encounters a guard, sucker punches him, and bangs his head against the counter.\",\"Without breaking his stride, someone\",gold,draws a gun in each hand.,pulls the lever up and taps it with both hands.,drops into a pile of spears that the half - size way someone tries to hook him across the side.,faces the young man.\n1238,lsmdc3056_PUBLIC_ENEMIES-2991,17517,\"Rushing from the building, he runs across the street to Agent someone. In the stairwell, someone\",\"Rushing from the building, he runs across the street to Agent someone.\",\"In the stairwell, someone\",gold,jogs out to another room.,peers through a window in the door.,turns on the ignition.,rushes to the church house and approaches.\n1239,lsmdc3056_PUBLIC_ENEMIES-2991,17487,Someone allows a subdued smile then shifts boyishly in his seat. Someone,Someone allows a subdued smile then shifts boyishly in his seat.,Someone,gold,\"smiles resignedly, and brings out a flask.\",springs to his feet.,\"removes the lid, finding forest green tissue paper over the contents.\",grabs onto boxing gloves and drags him underneath.\n1240,lsmdc3056_PUBLIC_ENEMIES-2991,17537,\"Daytime, a bank's door is open and three men in long coats enter. Our gaze\",\"Daytime, a bank's door is open and three men in long coats enter.\",Our gaze,gold,moves away from someone's pickup as they get out of the car.,drifts up to find someone between someone and a heavyset thug.,follows the clouds that is carried before us.,roves across the distant face of the long tunnel.\n1241,lsmdc3056_PUBLIC_ENEMIES-2991,17498,\"Later as they cuddle, they share a warm smile. Later still, someone\",\"Later as they cuddle, they share a warm smile.\",\"Later still, someone\",gold,strolls in her slip to a window seat.,presents someone's coffee yellow cab.,starts down the hill.,stands on a bed without a silky skin.\n1242,lsmdc3056_PUBLIC_ENEMIES-2991,17488,\"Someone removes the lid, finding forest green tissue paper over the contents. Folding back the layer, she\",\"Someone removes the lid, finding forest green tissue paper over the contents.\",\"Folding back the layer, she\",gold,can swiftly bake sure its clients terribly sneakers.,finds a camel hair coat with a thick fur collar.,replaces the cataleya jet.,hurries out a door.\n1243,lsmdc3056_PUBLIC_ENEMIES-2991,17477,\"Someone eyes it, then looks to a staring co - worker. With a coy smirk, she\",\"Someone eyes it, then looks to a staring co - worker.\",\"With a coy smirk, she\",gold,closes her eyes in disgust and rolls up the attendant's license and money.,steps out from behind the counter and slips into her coat.,consults her handwritten card in an envelope.,\"wedges his shoes onto the shelf, then twirls to someone over her shoulder.\"\n1244,lsmdc3056_PUBLIC_ENEMIES-2991,17484,\"Behind her, someone appears in his undershirt and leans through an open - air interior window. He\",\"Behind her, someone appears in his undershirt and leans through an open - air interior window.\",He,gold,gets a couple of glasses from a counter.,\"cringes, sending an actual train into the air.\",pushes himself into a cave open pit.,holds him up and sets him down outside.\n1245,lsmdc3056_PUBLIC_ENEMIES-2991,17486,Someone sits facing someone and lays his hand on the large box. Someone,Someone sits facing someone and lays his hand on the large box.,Someone,gold,cocks his head to the far side of the room.,\"incinerating it, but the bullet hits.\",allows a subdued smile then shifts boyishly in his seat.,\"pulls the inspector's cap off, then uses his fingers to draw someone's attention.\"\n1246,lsmdc3056_PUBLIC_ENEMIES-2991,17481,\"Someone joins him, slipping off her coat. Someone\",\"Someone joins him, slipping off her coat.\",Someone,gold,\"stares to her laotong as she shifts her gaze to the bride, who shrugs as she sucks on his breath.\",sets a simple cardboard box on the coffee table.,runs after her with the stricken thief on her arm.,\"braids her hair behind her back, then bows proudly to the woman.\"\n1247,lsmdc3056_PUBLIC_ENEMIES-2991,17500,\"She lays her head on his shoulder. Rolling over to face her, he\",She lays her head on his shoulder.,\"Rolling over to face her, he\",gold,looks around the length of the ceiling.,\"staggers back and shifts his wary gaze, then glances to her with a furrowed brow.\",shoves her up to the site as the safe stampede under them.,strokes her cheek and neck.\n1248,lsmdc3056_PUBLIC_ENEMIES-2991,17528,His expression grows solemn and he glares down the hall. He,His expression grows solemn and he glares down the hall.,He,gold,\"rises, leaving a lifeless someone.\",goes into his berth of an office.,looks out over the parking parking lot.,peers over his shoulder.\n1249,lsmdc3056_PUBLIC_ENEMIES-2991,17534,\"Outside, two agents pull their car up as their superior exits the building. The agent\",\"Outside, two agents pull their car up as their superior exits the building.\",The agent,gold,shifts his rueful gaze.,continues to battle him.,climbs out of the open box.,slaps down someone's cigarette.\n1250,lsmdc3056_PUBLIC_ENEMIES-2991,17524,\"Someone whips out his gun and peers at a car parked in the alley. Inside, someone\",Someone whips out his gun and peers at a car parked in the alley.,\"Inside, someone\",gold,enters the hallway and raises his gun.,appears behind it and carries it towards the house.,shoots an arrow at the shoot's.,finds someone sitting on the couch in a fishing cage.\n1251,lsmdc3056_PUBLIC_ENEMIES-2991,17531,The baby - faced shooter raises a someone gun. He,The baby - faced shooter raises a someone gun.,He,gold,takes cover behind a garden plant.,pauses and shakes someone's hand.,tosses the backseat to a truck opposite.,looks over its rotating blade as he rounds over the rocky wall.\n1252,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72749,13244,Someone's eyes closed and his head tilts back. It,Someone's eyes closed and his head tilts back.,It,gold,buries his face into someone's pillows.,turns away by her.,thuds against the high - backed chair.,waves as he looks up and around the stage.\n1253,anetv_NDyc4PZE954,331,An old black man is polishing the other man's shoes as he sits in the chair. The old man,An old black man is polishing the other man's shoes as he sits in the chair.,The old man,gold,continues to wipe down the table while someone watches them.,\"is wearing a shirt and gloves, coat that is looking into the window.\",is reading a boy while he is sitting on the chair.,is standing with a metal stick in his hair.\n1254,anetv_NDyc4PZE954,4496,A news caster is talking before moving images. A man,A news caster is talking before moving images.,A man,gold,is talking while he discusses.,\"is shown talking inside and outside a store, where he shines shoes for customers.\",is playing water polo.,carves a design and a holographic paper is on the wall in front of him.\n1255,anetv_NDyc4PZE954,4495,A countdown from ten is shown on the screen. A news caster,A countdown from ten is shown on the screen.,A news caster,gold,is about for water appears.,is shown being played with a marketing segment.,is talking at outside corner of a gym holding the racket.,is talking before moving images.\n1256,anetv_HPNZi_WsUeY,8726,The individual ads some other ingredients to the pan and mixes the contents together. The individual,The individual ads some other ingredients to the pan and mixes the contents together.,The individual,gold,mixes the eggs into a central bowl and mixes it together.,is poured into several more ingredients.,cooks on a pan with the top of the pan.,places the pan on a wooden platform.\n1257,anetv_HPNZi_WsUeY,8728,The individual mixes cooked pasta into the pan. The individual,The individual mixes cooked pasta into the pan.,The individual,gold,spoons out a bowl of the pan's contents.,stands up and turns to the owner.,slides cream into a different lane and cooks the toast on a plate.,rearranges the pan on the rim of a plate.\n1258,anetv_HPNZi_WsUeY,8729,The individual spoons out a bowl of the pan's contents. The individual,The individual spoons out a bowl of the pan's contents.,The individual,gold,garnishes and tastes the bowl's contents.,sprinkles slices of food down on the sandwich piece.,adds additional items to the pot and pours it into the bowl and quickly clears the top of the pot.,rubs the teacup soda into the pitcher on the fridge.\n1259,anetv_HPNZi_WsUeY,8723,An individual drizzles olive oil into a pan. The individual,An individual drizzles olive oil into a pan.,The individual,gold,removes the white scoop from the pot.,adds chicken to the pan and cooks it.,adds sugar in a dinner bowl with chocolate.,takes out a knife for a mug of chopped.\n1260,anetv_HPNZi_WsUeY,8724,The individual adds chicken to the pan and cooks it. The individual,The individual adds chicken to the pan and cooks it.,The individual,gold,\"adds more ingredients, and adds the pasta on a plate.\",mixes some food into a plate and egg it into a bowl.,finishes the egg omelette then carves with a plate.,adds chopped onions and mushrooms to the pan and cooks them.\n1261,anetv_HPNZi_WsUeY,9040,A close up of a pan is seen followed by a person pouring ingredients into a pan. The man,A close up of a pan is seen followed by a person pouring ingredients into a pan.,The man,gold,continues to pour more ingredients in and then puts it on a table.,leads up ingredients to the ingredients and sped up his coffee.,mixes it into a pan and begins measuring into the pan.,then scrubs off the camera and leads into the man wiping a plate down in a towel.\n1262,anetv_HPNZi_WsUeY,8725,The individual adds chopped onions and mushrooms to the pan and cooks them. The individual ads some other ingredients to the pan and,The individual adds chopped onions and mushrooms to the pan and cooks them.,The individual ads some other ingredients to the pan and,gold,pushes the lemon back down.,add a syrup into the bowl.,mixes the contents together.,pours more liquid in the bowl.\n1263,anetv_HPNZi_WsUeY,8727,The individual places the pan on a wooden platform. The individual,The individual places the pan on a wooden platform.,The individual,gold,mixes cooked pasta into the pan.,releases the ball and begins dancing.,places the body on the floor.,adds her hand to the pot.\n1264,anetv_HPNZi_WsUeY,8722,An introductory title screen with the video description is shown. An individual,An introductory title screen with the video description is shown.,An individual,gold,sits on a rubiks cube and solves it with a rubix cube mallet.,drizzles olive oil into a pan.,uses the brush on the snow and the credits of the video are shown.,used a machine on a corporal's tattoo.\n1265,anetv_pzHDfjY-pFY,5544,\"The boat floats away slowly, pulling the child as he stands in his raft. He\",\"The boat floats away slowly, pulling the child as he stands in his raft.\",He,gold,swims down to a waterfall on either side of it.,\"looks at a red place, strikes it and gestures at it.\",is then pulled up toward the two men in the boat.,looks at his feet as if on the iceberg.\n1266,anetv_pzHDfjY-pFY,5543,A boy is floating in a raft as his father holds a rope attached to it. The boat,A boy is floating in a raft as his father holds a rope attached to it.,The boat,gold,lands hard behind the man.,rides in the circle.,\"floats away slowly, pulling the child as he stands in his raft.\",is wake boarding away from the boat.\n1267,anetv_YptHsVTHquc,8334,A girl moves around with a hula hoop doing various movements. The People,A girl moves around with a hula hoop doing various movements.,The People,gold,holds the baton and does cartwheels spins spins around on the beam.,spin around hula hoop together and dances a tennis chair.,laugh with the camera while another goes back and fourth around while others watch on the side.,continuing dancing around her in various motions.\n1268,anetv_YptHsVTHquc,8335,The People continuing dancing around her in various motions. The girl,The People continuing dancing around her in various motions.,The girl,gold,continues to jump all along the set.,continues playing and standing on one side.,spins her hula hoop around her head.,spins smoking the diving hoop.\n1269,lsmdc1023_Horrible_Bosses-81978,15165,He reorientates the phone screen and throws a food wrapper out of the car window. Someone,He reorientates the phone screen and throws a food wrapper out of the car window.,Someone,gold,someone walks near the tail of the cab but someone makes it right behind him and heads back down the street.,jogs up in a mismatched designer track suit.,\"puts his hand to the driver's side, and morosely seems to be just lost three more days.\",takes the pail of groceries for champagne as people dump cash into the box which slides out the grieving bank.\n1270,lsmdc1023_Horrible_Bosses-81978,15167,\"Preoccupied with his iPhone, someone does n't see him. Someone\",\"Preoccupied with his iPhone, someone does n't see him.\",Someone,gold,picks up the wrapper and glowers.,\"moves on front the chalkboard, frowning.\",stands at a crowded cabinet.,\"pounds, turns and walks away.\"\n1271,lsmdc1023_Horrible_Bosses-81978,15166,\"Someone jogs up in a mismatched designer track suit. Preoccupied with his iPhone, someone\",Someone jogs up in a mismatched designer track suit.,\"Preoccupied with his iPhone, someone\",gold,shaves hair and chest growing summersault.,does n't see him.,looks with someone in the elevator.,mounts a blue control board.\n1272,anetv_TpURw9nc8ks,11527,Several people are seen standing around one another holding sticks and looking around. The people,Several people are seen standing around one another holding sticks and looking around.,The people,gold,continue speaking to one another while others watch on the side.,continues speaking to one another while still speaking to the camera.,hit a ball across a lawn one at a time and are seen laughing and smiling at one another.,continue wrestling with one another while the play ends and then looking at one another.\n1273,anetv_ie9PgZt9svA,6371,A group of girls jump rope individually. Three girls,A group of girls jump rope individually.,Three girls,gold,wear a giant leap in the air and land on a balance mat.,jump rope with two holding a single rope on each end.,are seen standing on a diving board trying to make a goal into the pool.,ram the stone on their knees and continue balancing on the mat while the instructor attempts and turns back to the camera.\n1274,anetv_ie9PgZt9svA,6373,Three girls jump together inside of a single rope. A group of girls,Three girls jump together inside of a single rope.,A group of girls,gold,hold two ropes and take turns doing double dutch while members run through and jump the rope.,wearing pink shirts climb on their boards and descend over the railing and get their own out.,climb all outfits from with colorful fields and play of ballet dancers.,jump up in unison.\n1275,anetv_ie9PgZt9svA,6372,Three girls jump rope with two holding a single rope on each end. Three girls,Three girls jump rope with two holding a single rope on each end.,Three girls,gold,flip and wave over their heads.,join the girls and put them on the same rope.,jump together inside of a single rope.,wear blue shorts run and jump in different directions at different angles performing on the stilts.\n1276,anetv_EQK_o1qHx7M,19128,\"There's a young boy standing in his kitchen with a jug of water, some lemons and some apples behind him on the counter. He\",\"There's a young boy standing in his kitchen with a jug of water, some lemons and some apples behind him on the counter.\",He,gold,is pointing to the lemons.,dips the lemons in a glass bowl as he instructs a glass.,adds a few drips of juice he squeezes it into the blender and pours it which on a glass.,takes some pasta out of his mouth.\n1277,anetv_EQK_o1qHx7M,19129,He is pointing to the lemons. His mother,He is pointing to the lemons.,His mother,gold,is washing his shirt with the shaver.,\"ends, showing their distance while watching him.\",sets his glasses down on a business table he is near.,comes and helps him squeeze the juice out of the lemons.\n1278,anetv_EQK_o1qHx7M,19131,\"The mother makes sure that all the juice is properly squeezed out of the lemons, so she uses her hands. Then she\",\"The mother makes sure that all the juice is properly squeezed out of the lemons, so she uses her hands.\",Then she,gold,removes a metal bar and then pours it into a shaker and pours the drink into a glass.,shows the limes and lemon glasses that is once added into.,put some easy ice on the cookie dough to look like ice.,adds some food coloring to the lemonade and stirs it well.\n1279,anetv_EQK_o1qHx7M,19130,His mother comes and helps him squeeze the juice out of the lemons. Both the mother and son,His mother comes and helps him squeeze the juice out of the lemons.,Both the mother and son,gold,drink directly at each other.,use a lemon juicer to squeeze the juice and add it to the jug of water.,are washing eyes and putting oxygen around their issues.,make sand that is used to eat at the same time on the table.\n1280,anetv_EQK_o1qHx7M,19132,Then she adds some food coloring to the lemonade and stirs it well. She then,Then she adds some food coloring to the lemonade and stirs it well.,She then,gold,shaves the shorter time slower then adds it to the pot.,pours the lemonade in a glass with ice and gives it to her son.,pours a pan of eggs into a pan and mixes the ingredients onto a pan.,takes a large jug and stirs it up and mixes the contents.\n1281,anetv_EQK_o1qHx7M,19133,She then pours the lemonade in a glass with ice and gives it to her son. He,She then pours the lemonade in a glass with ice and gives it to her son.,He,gold,squeezes the batter and the batter crashes down to the first one.,continues to eat in a cocktail restaurant at the final gulp.,uses a gift to paint off a makeup table that will fill the lens with sugar and chips.,takes a sip of the lemonade and smiles.\n1282,lsmdc0014_Ist_das_Leben_nicht_schoen-54752,8990,They slowly walk over to someone's old car and look at it silently. Someone,They slowly walk over to someone's old car and look at it silently.,Someone,gold,approaches as he picks out the torch then straightens and looks down as he enters through the window and stops his left threateningly still.,looks from someone to a german as if a riverside is still sitting there.,is standing on a high stoop overlooking the pumping air.,is lighting a big cigar which he has just given someone.\n1283,lsmdc0014_Ist_das_Leben_nicht_schoen-54752,8988,There is handshaking all around as people get into their car. The big black limousine,There is handshaking all around as people get into their car.,The big black limousine,gold,is parked on the street.,pulls up to the neighborhood.,\"glides away, leaving someone standing with his arm around someone, gazing broodingly after it.\",passes around the women.\n1284,lsmdc0014_Ist_das_Leben_nicht_schoen-54752,8989,\"The big black limousine glides away, leaving someone standing with his arm around someone, gazing broodingly after it. They slowly\",\"The big black limousine glides away, leaving someone standing with his arm around someone, gazing broodingly after it.\",They slowly,gold,drag the finger from his mouth in the middle of someone's room.,inches toward each other's legs.,walk over to someone's old car and look at it silently.,see a menacing shape.\n1285,lsmdc0014_Ist_das_Leben_nicht_schoen-54752,8991,Someone is lighting a big cigar which he has just given someone. The goon,Someone is lighting a big cigar which he has just given someone.,The goon,gold,puts the knife on his head.,is outside a shawl.,is leaning into it.,\"is beside someone's chair, as usual.\"\n1286,anetv_jBKlpn2mE8I,13702,\"She then walks away from the camera, continuing to brush. She\",\"She then walks away from the camera, continuing to brush.\",She,gold,\"turns and goes outside, putting her arms in.\",\"stands upright, then bends over to brush some more.\",\"stops opening the door, pauses to see what she seems to be looking at.\",takes a brush and holds up a brush.\n1287,anetv_jBKlpn2mE8I,13700,\"A woman walks into a backyard, and flips her hair forward. She\",\"A woman walks into a backyard, and flips her hair forward.\",She,gold,catches her leg up.,starts to move on the floor while the camera pans to show the baby looking at her.,\"looks in a mirror and adjusts her ear, then other girl is talking to the camera.\",\"brushes her hair for a long time, smoothing and tossing it.\"\n1288,anetv_jBKlpn2mE8I,13701,\"She brushes her hair for a long time, smoothing and tossing it. She then\",\"She brushes her hair for a long time, smoothing and tossing it.\",She then,gold,rinses her wet bangs back in her hands.,\"walks away from the camera, continuing to brush.\",is braiding the hair closer and looking out as well.,\"dismounts, then takes her styles across her hair and mows it in for a split.\"\n1289,lsmdc0012_Get_Shorty-53486,15081,\"Beer in hand, someone sits in a chaise longue by the pool. Someone\",\"Beer in hand, someone sits in a chaise longue by the pool.\",Someone,gold,\"turns to the man, who is wearing his shirt.\",watches him a moment from the doorway.,sips a beer from a glass - bottle glass on one moving glass.,approaches from behind and gapes across the water then laughs.\n1290,lsmdc0012_Get_Shorty-53486,15083,\"Someone looks at someone a moment. Feeling him staring, she\",Someone looks at someone a moment.,\"Feeling him staring, she\",gold,shoves him across the dance floor.,\"keeps her eyes on the sunset, and tries to change the subject.\",touches her brow and looks at his watch.,blinks back tears and looks down at the bottles in her hands.\n1291,lsmdc0012_Get_Shorty-53486,15082,\"She comes over, sits down. Someone\",\"She comes over, sits down.\",Someone,gold,looks at someone a moment.,\"lowers her arms, ready to strike.\",pulls herself up to the boat and remains dozing.,straightens up in an exaggerated martial - style manner.\n1292,lsmdc0012_Get_Shorty-53486,15080,Someone looks pleadingly at someone. Someone,Someone looks pleadingly at someone.,Someone,gold,stares at him in dismay.,smiles and punches him.,\"glares to the four men then hurry to someone's suv, doing the same door in his motorboat, followed by the fighter.\",rolls over on to his side.\n1293,anetv_lLHAzwAs_9I,8323,A man is shown installing the chair onto a set. Then we,A man is shown installing the chair onto a set.,Then we,gold,see a girl moving an item behind the vacuum while she is scrubbing the dog.,can repeat the process of turning off the vacuum and puts the tiles on.,see the people cross the carpet and immediately on the machine.,see several images of a happy baby girl being swung back and forth by her father in the swing.\n1294,anetv_lLHAzwAs_9I,16734,A woman is standing in front of the baby pushing them in the swing. A man,A woman is standing in front of the baby pushing them in the swing.,A man,gold,sits with a leaf blower in her hand and asks.,is sitting on the ground with weeping in the middle.,is standing behind the baby in the swing.,\"pushes the girl in the swing too, and a little lost sliding.\"\n1295,anetv_lLHAzwAs_9I,8322,A child's swing chair is on the ground. A man,A child's swing chair is on the ground.,A man,gold,slips from the upper floor onto the ledge and takes a seat.,is shown installing the chair onto a set.,appears being dragged from the street.,grabs a small child and is magician a plant tattoo on the floor.\n1296,anetv_lLHAzwAs_9I,16733,A baby is sitting in a swing. A woman,A baby is sitting in a swing.,A woman,gold,is standing in front of the baby pushing them in the swing.,extinguishes roses.,is talking in front of the camera talking.,is holding a baby in front of the pinata.\n1297,anetv_Oyi0X-rwUg8,4349,A man is holding another man on his shoulders in a wrestling ring as the crowd cheers and watches. the man,A man is holding another man on his shoulders in a wrestling ring as the crowd cheers and watches.,the man,gold,holds a yellow ball and throws it down.,throws the man on his shoulder to the ground.,falls on his knees.,tries to get up.\n1298,anetv_Oyi0X-rwUg8,4350,The man throws the man on his shoulder to the ground. Both men,The man throws the man on his shoulder to the ground.,Both men,gold,lay on the ground int he ring.,return with the bull.,begin weightlifting and interacting in with kids.,lift a javelin in the air.\n1299,anetv_H1_5M9mQ79w,3833,A man wearing headphones is seen speaking into a microphone and begins playing a harmonica into the mic. The man continues playing and the camera,A man wearing headphones is seen speaking into a microphone and begins playing a harmonica into the mic.,The man continues playing and the camera,gold,pans behind him while the man sings with him.,ends with a close up of the instrument.,pans around the table rising and offering him a closeup.,continues to capture several cups and the man playing the violin.\n1300,anetv_rVLkm3MLzns,16198,A man in ski gear is standing on a snowy hill. He and others,A man in ski gear is standing on a snowy hill.,He and others,gold,fall from a shop then slide down on the rock and begins snow over the hill.,\"begin skiing down the slopes, kicking up snow and traveling through tunnels.\",are sliding down a slope.,stand doing snowboard on underwater.\n1301,anetv_MVUqd8iVUEk,1392,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,of the lowering are shown on the little bars.,\"jumps on the bars, then does a gymnastics routine on the balance beam.\",\"spins and spins, kicking and twirling.\",does a gymnastics routine on the balance beam.\n1302,anetv_MVUqd8iVUEk,18760,A gymnast mounts a low beam in front of the judges. He,A gymnast mounts a low beam in front of the judges.,He,gold,dismounts from the beam.,mounts the horse to discuss and dismounts.,spins around in circles on the beam.,turns and runs off from the beam.\n1303,anetv_MVUqd8iVUEk,1393,He does a gymnastics routine on the balance beam. He,He does a gymnastics routine on the balance beam.,He,gold,jumps up and down on the balance beam.,\"leaps, flips, then jumps backward.\",does several martial arts moves while jumping.,dismounts and lands on a mat.\n1304,anetv_MVUqd8iVUEk,18761,He spins around in circles on the beam. He,He spins around in circles on the beam.,He,gold,continues to do as it does this time before.,\"dismounts, his arms in the air.\",continues the beam a couple of times and talks.,lifts his legs into a sling and bends to pick up the weights.\n1305,lsmdc3039_JACK_AND_JILL-2360,19284,Someone puts down his window. The indraft,Someone puts down his window.,The indraft,gold,wears a searching expression.,attempts to bleed by the surrounding.,\"is coming down in street shots that, sleek dark - ridden car set into a backyard.\",pins the cockatoo against the back of the cage.\n1306,anetv_sAi1aMHR89A,12709,Another man holds the ankles of the laying man. the man then,Another man holds the ankles of the laying man.,the man then,gold,tries another and then ties the others into a room behind him.,hides the glove from his head and punches a metal drill.,begins pushing around another boy in a pink shirt.,begins doing sit ups.\n1307,anetv_sAi1aMHR89A,12708,A man is laying on the floor. another man,A man is laying on the floor.,another man,gold,holds the ankles of the laying man.,is shown laying down.,is spraying the strange mask with a white rag attached to his furniture.,walks into frame and pauses to take the piece back off.\n1308,anetv_Czw85LWCGes,2524,A man approaches a table with his soldiering gun. The man,A man approaches a table with his soldiering gun.,The man,gold,opens a case and shows how to use it.,soldiers on a piece of metal.,grabs something and throws it into the block.,shoots the ice back near the arena.\n1309,anetv_Czw85LWCGes,4689,The individual stops welding and puts the tool down. The individual,The individual stops welding and puts the tool down.,The individual,gold,moves toward and reaches for the camera.,applies the wax to the carpet.,runs a wooden object down the machine and then speaks again.,drops the machine to the ground.\n1310,anetv_Czw85LWCGes,4688,An individual wearing a protective mask welds something on a table. The individual,An individual wearing a protective mask welds something on a table.,The individual,gold,puts a shot back in the truck.,moves hips equipment back and forth as the board sweeps the water beneath it.,stops welding and puts the tool down.,places a black glasses hanger in a pair of glasses.\n1311,anetv_Czw85LWCGes,2525,The man soldiers on a piece of metal. The man,The man soldiers on a piece of metal.,The man,gold,lights a long drink.,bats his tools from the wall and follow.,picks up a stick into his mouth and sits down.,stops and walks away from his table.\n1312,anetv_4kriQ6h6ymI,6966,A graphic shows and then photos follow of a girl growing up with horseback riding. Three years after those photos the girl moves and she,A graphic shows and then photos follow of a girl growing up with horseback riding.,Three years after those photos the girl moves and she,gold,is shown riding horses.,looks on a sunny day paddling the camera.,hops together into a crowded pool.,\"goes very fast, past a new girl almost dancing in the room, having fun each time.\"\n1313,anetv_4kriQ6h6ymI,6967,Three years after those photos the girl moves and she is shown riding horses. The girl,Three years after those photos the girl moves and she is shown riding horses.,The girl,gold,stops outside the room talking and walking to the front of the horse and.,is shown with other girls posing with some awards for horseback riding.,throws a frisbee for the dog as the dog ties her back and begins riding her horse.,goes to his trip sink then set up for the event.\n1314,anetv_4kriQ6h6ymI,6968,The girl is shown with other girls posing with some awards for horseback riding. Another video,The girl is shown with other girls posing with some awards for horseback riding.,Another video,gold,\"holds the end of the bulls, too.\",shows the camera fading.,ends with pictures of people being washed and the girl on the grass.,is shown of the girl riding the horse indoors.\n1315,lsmdc3086_UGLY_TRUTH-6008,5916,Now someone sits at the news desk. Someone and someone,Now someone sits at the news desk.,Someone and someone,gold,\"sit on the dance bench, arm in hand.\",sit to his left.,go into the next room.,play the funeral in their home.\n1316,anetv_Rn5qprCWXFg,7976,The man fills he bucket and dumps it out. The boy,The man fills he bucket and dumps it out.,The boy,gold,pours egg into the hole in the bucket of water ski.,stirs someone's wall with a towel.,turns a shower and wipes it off before wiping his hands on a towel.,\"stands and walks to a bag, grabs something and goes back.\"\n1317,anetv_Rn5qprCWXFg,18111,A man is kneeling in sand. a man,A man is kneeling in sand.,a man,gold,is seen kneeling down cleaning the plaster.,takes a shovel and begins filling a bucket with sand.,is whipping in circles over him.,walks over the pole and lands in a pile of sand.\n1318,anetv_Rn5qprCWXFg,7977,\"The boy stands and walks to a bag, grabs something and goes back. The boy\",\"The boy stands and walks to a bag, grabs something and goes back.\",The boy,gold,leaves and runs to the christmas tree.,carries the mop down off the floor.,digs for the lesson.,sits down and rocks back and forth.\n1319,anetv_Rn5qprCWXFg,7975,We see a man and a boy playing in the sand. The man,We see a man and a boy playing in the sand.,The man,gold,swings and tries to hammer the pinata.,fills he bucket and dumps it out.,jumps up a mountain in a lake.,follows the young boy into the park.\n1320,anetv_Rn5qprCWXFg,18112,A man takes a shovel and begins filling a bucket with sand. a boy sitting across from the man,A man takes a shovel and begins filling a bucket with sand.,a boy sitting across from the man,gold,swings a shovel to get the gear in the areas.,puts his left shoe on and skis.,kicks the ball across the room and another red boy surfs in the river.,begins pointing and instructing the man.\n1321,anetv_Jy9kiITFsjI,16461,People are in the stands of an arena. A bull,People are in the stands of an arena.,A bull,gold,is chasing up the bull with the send a bull.,is chasing a bull with the bull.,gets drug out of the arena by horses.,is thrown in front of several males on stage.\n1322,anetv_Jy9kiITFsjI,16462,A bull gets drug out of the arena by horses. A woman,A bull gets drug out of the arena by horses.,A woman,gold,meets a bull lined up at the podium.,interacts with a woman.,is talking to the camera.,\"puts on seeing the bull, together.\"\n1323,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95853,5769,\"A white feather rises from the desk and floats across the room towards tiny someone, who is standing on a pile of books. Someone 'face\",\"A white feather rises from the desk and floats across the room towards tiny someone, who is standing on a pile of books.\",Someone 'face,gold,appears with the deluminator.,\"scenes ceases to talk, then then motions with someone.\",is broken and worn.,is smudged with soot.\n1324,anetv_YfWKbMPFmcU,12456,The outside of homes is shown by a woman in a pink shirt. She,The outside of homes is shown by a woman in a pink shirt.,She,gold,smiles as she dabs cream on the side of her hair.,is painting one of the houses with blue paint.,drives a sauce up the wheel of a plant.,is showing a set of scissors and holding up a product.\n1325,anetv_YfWKbMPFmcU,12457,She is painting one of the houses with blue paint. She,She is painting one of the houses with blue paint.,She,gold,is holding a bucket of paint.,begins mixing the colors of white paint.,sprays up paint on her finger in the face.,\"moves backwards, grimacing afterwards.\"\n1326,anetv_IQvSj-3BGPo,16233,\"In the middle of the routine, he grabs several frisbees and gives them to the dog one by one as he kneels down in front of him. Several tricks are done, and then the dog appears jump roping in the field, they go back to their regular routines and the owner\",\"In the middle of the routine, he grabs several frisbees and gives them to the dog one by one as he kneels down in front of him.\",\"Several tricks are done, and then the dog appears jump roping in the field, they go back to their regular routines and the owner\",gold,jumps on the bleachers and gets to his feet.,picks up the dog and waves to the crowd.,strikes his fourth giant with the other.,hugs his body again.\n1327,anetv_IQvSj-3BGPo,16231,A man and a dog are standing in the middle of the field playing while he is holding a group of Frisbees. The man then throws all of the frisbees and the dog,A man and a dog are standing in the middle of the field playing while he is holding a group of Frisbees.,The man then throws all of the frisbees and the dog,gold,walks out his garage.,runs after them several times and catches them.,begins getting over and fourth into cheers in a roofed circle.,falls on his face as several other women have incredible stunts.\n1328,anetv_IQvSj-3BGPo,16232,\"The man then throws all of the frisbees and the dog runs after them several times and catches them. In the middle of the routine, he\",The man then throws all of the frisbees and the dog runs after them several times and catches them.,\"In the middle of the routine, he\",gold,backs up and runs to the field.,grabs several frisbees and gives them to the dog one by one as he kneels down in front of him.,uses the frisbees to watch the dog while the head is shown swinging for the frisbee.,get down and the other one spots a dog on the sidelines.\n1329,anetv_TspdPLMqTx0,11243,A young man stands in a room holding a violin. the man then,A young man stands in a room holding a violin.,the man then,gold,places the instrument in front of him.,enters and begins playing the piano.,begins playing the violin.,\"takes his violin, stops and plays his guitar just when he is done playing the saxophone.\"\n1330,anetv_TspdPLMqTx0,11581,Medications are shown on a table. A woman,Medications are shown on a table.,A woman,gold,is walking in the snow next to a tree.,opens a folding cloth of a washing machine.,\"talks as she washes a lot long potato, coloring it in a jar.\",puts a newfound flag on his boot.\n1331,anetv_TspdPLMqTx0,11580,A man is standing in front of a window playing a violin. Medications,A man is standing in front of a window playing a violin.,Medications,gold,are shown on a table.,stands then looks at someone.,is playing the violin in front of a violin.,are on the bar and a dog walks next to him dancing and in the stage.\n1332,anetv_TspdPLMqTx0,11582,A woman is walking in the snow next to a tree. The man,A woman is walking in the snow next to a tree.,The man,gold,is making her hair up with soap.,talks on the components of the bike.,continues to play his violin.,is sitting on the grass with several other dogs.\n1333,anetv_-KbDXeEoQ1E,9560,Various pictures of shown of a girl and a horse and leads into a person riding a horse over jumps. More pictures,Various pictures of shown of a girl and a horse and leads into a person riding a horse over jumps.,More pictures,gold,are shown off the horse and person together followed by more clips of the girl riding the horse.,are shown of people riding around on horses while as well as speaking as well as a woman kissing.,are shown of horses followed by a person holding a horse and showing off riding the horse behind the leash.,bow normally before getting closer.\n1334,lsmdc1009_Spider-Man3-76563,5941,\"Someone, wearing a blue jumper over a blue shirt and jeans and clutching a small posy of flowers, stops in his tracks as he spots someone standing alone in the middle of a graceful cast iron bridge. He\",\"Someone, wearing a blue jumper over a blue shirt and jeans and clutching a small posy of flowers, stops in his tracks as he spots someone standing alone in the middle of a graceful cast iron bridge.\",He,gold,storms off of a village.,doffs his hat cap and slips down the edge of the sidewalk.,rests on a bench in the darkened hall.,hurries on to meet her.\n1335,lsmdc1009_Spider-Man3-76563,5943,He offers up the flowers. She,He offers up the flowers.,She,gold,hurries outside to help him up.,looks at them unhappily.,stops and looks at someone critically.,looks up at her husband.\n1336,lsmdc1009_Spider-Man3-76563,5942,He hurries on to meet her. He,He hurries on to meet her.,He,gold,'s checking his i d. as someone goes.,sees someone in the photo.,offers up the flowers.,talks to them again.\n1337,anetv_OS-h1xzAZno,10399,A person in a red shirt walks by. She,A person in a red shirt walks by.,She,gold,does a flip off the beam and lands on a mat.,begins to play a game with water polo.,backs back and forth on the rake.,\"stops, giving the drink.\"\n1338,anetv_OS-h1xzAZno,6008,\"She performs on the beam, flipping forward and back again. She\",\"She performs on the beam, flipping forward and back again.\",She,gold,spins and throws the baton at her floor.,\"dismounts, arms put in the air.\",audience and onlookers do some tricks.,walks up to them and hits her mat.\n1339,anetv_OS-h1xzAZno,6007,A gymnast mounts a beam in a gym. She,A gymnast mounts a beam in a gym.,She,gold,flips off by her baton.,\"performs on the beam, flipping forward and back again.\",mounts the bars in front of him.,does her baton routine on the mat.\n1340,anetv_l8TsSm4Yh4M,16433,A person is seen walking around a paintball course and leads into clips of people playing paintball and speaking to one another. A man,A person is seen walking around a paintball course and leads into clips of people playing paintball and speaking to one another.,A man,gold,is shown playing a game with others standing behind them and helps her into the goal.,points to the camera and leads into more shots of people playing and working with one another.,throws several arrows and is followed by a man measuring off his board and hitting another on the board.,talks to the camera and leads into him swinging balls with a racquet while players watch.\n1341,anetv_UXc2y7lR5t0,13230,A boy hangs on monkey bars. He,A boy hangs on monkey bars.,He,gold,crosses the obstacle easily.,shuffles over for avail to hang out with other kids.,spins on the bars.,begins sliding down a slide.\n1342,anetv_UXc2y7lR5t0,13232,He looks proud of himself. He,He looks proud of himself.,He,gold,is shown with small sunscreen so still her board in his hand.,can not say anything for a while.,has pinched her brow knitted about her ribs.,smiles at the camera.\n1343,anetv_UXc2y7lR5t0,13231,He crosses the obstacle easily. He,He crosses the obstacle easily.,He,gold,\"rolls away toward his truck, shrugging it onto his vest.\",looks proud of himself.,takes one leg off beside a ridge.,loses his footing on the ground.\n1344,anetv_5vv5e_E93gM,8145,\"A man is shown lying in a hospital bed, then another in another room. They\",\"A man is shown lying in a hospital bed, then another in another room.\",They,gold,are shown on video having injured themselves on a snowy hill.,are shaving the muscles of a man in small pink razor.,are wrapped in a yellow towel.,cover a picture of lone individual with a chamois on the table.\n1345,anetv_5vv5e_E93gM,10576,A man is laying in a hospital bed. A nurse,A man is laying in a hospital bed.,A nurse,gold,comes out behind him in another tub.,is standing next to the bed.,is sitting behind him reading and reading.,screams onto the screen.\n1346,anetv_5vv5e_E93gM,8146,They are shown on video having injured themselves on a snowy hill. The men,They are shown on video having injured themselves on a snowy hill.,The men,gold,are then pulled the kite to rocks.,stop shaving with them and their aprons.,begin to take hills and then jump off of the lift.,\"wrecked on their skis, flipping numerous times.\"\n1347,lsmdc1023_Horrible_Bosses-81851,1049,Someone gives smiley blonde someone a hug. They,Someone gives smiley blonde someone a hug.,They,gold,\"turn to a troubled - looking someone, who forces a smile.\",pass another student from the school.,leave the wrecked car as the mustang speeds across the street.,\"dance together, the scoreboard hand leaning over the someone's chauffeur exterior faux closely.\"\n1348,anetv_FsS_NCZEfaI,14080,People are scuba diving under the water. Fish,People are scuba diving under the water.,Fish,gold,are seen under the water swimming.,finish and look after them.,are preparing to pull themselves across the water.,are standing next to it smoking out the smoke.\n1349,anetv_FsS_NCZEfaI,14081,Fish are seen under the water swimming. An old car,Fish are seen under the water swimming.,An old car,gold,is shown as well as well as several others watching on the side.,drives up on the water.,is seen under the water.,is moving behind them.\n1350,anetv_FsS_NCZEfaI,14079,People are sitting on a boat in the water. People,People are sitting on a boat in the water.,People,gold,are doing drinks before waking up.,are standing on a river that are surrounded by other kayakers.,are scuba diving under the water.,are sailing surfing waves in the ocean.\n1351,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92777,12666,\"Hogwarts School is housed in a handsome castle surrounded by stone outbuildings and long Victorian greenhouses. In one of these, a class of students\",Hogwarts School is housed in a handsome castle surrounded by stone outbuildings and long Victorian greenhouses.,\"In one of these, a class of students\",gold,is followed by a barrage of students.,are hand upon to a tall narrow - stone staircase that carries a small four - dark - school.,\"sit on exercise bikes on equipment, students, show off the building.\",stand waiting around a long bench filled with rows of potted plants.\n1352,lsmdc1044_Pride_And_Prejudice_Disk_Two-89526,8027,\"Someone emerges from the parsonage, lips drawn tight, and pulls on his dark leather gloves. Inside, someone\",\"Someone emerges from the parsonage, lips drawn tight, and pulls on his dark leather gloves.\",\"Inside, someone\",gold,finds black explorer crawling by him.,runs beneath the snitch.,begins to pace around the drawing room.,heaves a pistol from a chair and maintains an severe scar as he struggles back off then bends over.\n1353,anetv_CmS2nSm5n2Q,5828,There's a man in a blue shirt walking into a tall building where there's an indoor fencing arena. He,There's a man in a blue shirt walking into a tall building where there's an indoor fencing arena.,He,gold,walks into the arena and talks with two fencers.,walks away performing different part of the basketball tracks.,gets on his back and talks to the camera.,looks up from behind the bleachers and waves a long stick before launching away to a distance.\n1354,anetv_CmS2nSm5n2Q,5830,One of the fencers puts on a fencing suit on the man. The fencer then,One of the fencers puts on a fencing suit on the man.,The fencer then,gold,gets on a horse behind him and walks further.,\"demonstrates, doing several martial arts moves with the dress for practice.\",demonstrates and gives the man a lesson in fencing.,begins again performing martial arts moves behind him.\n1355,anetv_CmS2nSm5n2Q,5831,The fencer then demonstrates and gives the man a lesson in fencing. He,The fencer then demonstrates and gives the man a lesson in fencing.,He,gold,shows the man the various skills involved in fencing.,pours more color in his tattoo.,is both thirteen again.,ties up the black and man with white tips.\n1356,anetv_CmS2nSm5n2Q,5829,He walks into the arena and talks with two fencers. One of the fencers,He walks into the arena and talks with two fencers.,One of the fencers,gold,appears as he leads a band from a forest.,spins up and shakes him.,puts on a fencing suit on the man.,holds up a mak.\n1357,anetv_CmS2nSm5n2Q,5832,The man is able to miss and evade every move of the fencer as he goes untouched by the sword. Then both the fencers,The man is able to miss and evade every move of the fencer as he goes untouched by the sword.,Then both the fencers,gold,remove their masks and shake hands.,are seen checking out on various comments shown of the previous movies look after them.,kneel and serve the red pawn.,fight and push him in the gym.\n1358,anetv_CmS2nSm5n2Q,5833,Then both the fencers remove their masks and shake hands. The fencer,Then both the fencers remove their masks and shake hands.,The fencer,gold,fill with items of detail.,do their smiles and put their hands in the air.,continue playing of shuffleboard when they move back and forth holding a trophy.,talks about his experience with the master fencer.\n1359,anetv_NttjvRpSdsI,19391,The people are in robes. They,The people are in robes.,They,gold,are wearing colorful costumes.,are doing karate moves on the floor.,shake hands on their hips.,do a flip to the bag.\n1360,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72234,2702,People watch as someone snatches his walking stick from someone. Someone,People watch as someone snatches his walking stick from someone.,Someone,gold,skulks out into space.,puts a hand on her breast and rubs it.,sees someone and smirks.,eats a spoonful of a doughnut.\n1361,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72234,2701,Someone erects an invisible shield across the gates. People,Someone erects an invisible shield across the gates.,People,gold,watch as someone snatches his walking stick from someone.,are sitting on a canvas in a lecture and someone chooses a letter.,sit on the school bus.,drag someone out of the station as someone flies his way through them.\n1362,anetv_Vtsv9iPHDqg,1056,She gets up and walks away. They also,She gets up and walks away.,They also,gold,untie someone's corset.,hold hands as they shave.,continue backing and tossing around doing other things.,play a replay of her jumping several times.\n1363,anetv_Vtsv9iPHDqg,1060,It shows her replays and she walks down the track and waves at fans. The results,It shows her replays and she walks down the track and waves at fans.,The results,gold,turn to black and the woman speaks still with her hair.,are impressed by a race below it.,are shown giving the tallies a thumbs up.,come up on the screen.\n1364,anetv_Vtsv9iPHDqg,1058,She walks up the track. Another woman,She walks up the track.,Another woman,gold,\"comes, in a bike, and flips around a few times before dismounting.\",runs down the stairs with a paddle - string.,starts running down the track and jumps.,holds a coat in a pile of dirt around her.\n1365,anetv_Vtsv9iPHDqg,1055,She jumps over a barrier and lands in the sand. She,She jumps over a barrier and lands in the sand.,She,gold,moves up her collar to indicate that she is about to be enjoying the medal of fun.,gets up and walks away.,\"lets go of the rope, losing her balance, and drops off.\",lands on a bench then shakes her hand.\n1366,anetv_Vtsv9iPHDqg,1054,Another woman starts running down the track sprinting. She,Another woman starts running down the track sprinting.,She,gold,sits in front of him and does a back flip and bumps.,hits some other camels as they try.,stands next to a boy on the horse and brings her hand to his arm.,jumps over a barrier and lands in the sand.\n1367,anetv_Vtsv9iPHDqg,1053,She is walking down the track with her hand on her hip. Another woman,She is walking down the track with her hand on her hip.,Another woman,gold,is sitting in the chair behind her.,starts running down the track sprinting.,\"steps next to her, opens a portfolio and read it.\",sits jumping on the bench behind her.\n1368,anetv_Vtsv9iPHDqg,1059,Another woman starts running down the track and jumps. It shows her replays and she,Another woman starts running down the track and jumps.,It shows her replays and she,gold,walks down the track and waves at fans.,does a gymnastics routine on the balance beam.,demonstrates how to do different leap.,spins in circles and eventually performs a performance.\n1369,anetv_Vtsv9iPHDqg,1057,They also play a replay of her jumping several times. She,They also play a replay of her jumping several times.,She,gold,shoots through a player and hurls her coach.,interview on a balance performance stick game in slow motion.,points to her feet and show a woman on the edge with the camera.,walks up the track.\n1370,anetv_Vtsv9iPHDqg,1050,A woman starts running down a track sprinting. She,A woman starts running down a track sprinting.,She,gold,runs onto a mat in front of her and spins herself around on her step.,jumps over a barrier and lands in some sand.,lifts the springboard high into the air and lands easily in the air at high speed.,is then seen curling on a wall with a baton held up with her hands.\n1371,anetv_Vtsv9iPHDqg,19596,An athletic woman is seen running into a large sand pit and is shown again in slow motion. Another woman,An athletic woman is seen running into a large sand pit and is shown again in slow motion.,Another woman,gold,steps up to run into the pit and gets up walking away.,walks in and out of frame with her arms back and fourth.,leads into more clips shown of people hitting the ball and ends with a picture of her in a soccer field.,is seen swimming close beside her and another person watching on the sides.\n1372,anetv_Vtsv9iPHDqg,1051,She jumps over a barrier and lands in some sand. They,She jumps over a barrier and lands in some sand.,They,gold,drive the horses through the crowd.,\"pass behind the buses, which scuttle across the grass towards a tent.\",hover over his head.,play a replay of her jumping several times.\n1373,anetv_rs7er4e67ec,2684,The video begins with details of a field hockey team's victory in the final championship game. The stadium,The video begins with details of a field hockey team's victory in the final championship game.,The stadium,gold,shows a sand covered in ice and the white team holds the ball that gets the ball hit the goal.,stands as the player stands and backs toward the ball.,rolls back and forth as a group of teams clad kids surf into those on the sand having put baseball balls in the stands.,shows the two teams competing in the game hockey.\n1374,anetv_rs7er4e67ec,2685,The stadium shows the two teams competing in the game hockey. The crowd,The stadium shows the two teams competing in the game hockey.,The crowd,gold,talks about winning ladies and then practice out with happiness.,is a great sport to be rid of.,applauds as the men get ready to begin.,is loudly cheering as one team becomes victorious.\n1375,anetv_rs7er4e67ec,2686,The crowd is loudly cheering as one team becomes victorious. The players,The crowd is loudly cheering as one team becomes victorious.,The players,gold,continue to decorate the fence ways but return to smiling to the crowd and children.,have the same teammates in the opposite direction with hitting the ball.,jump between the blocks and begin hitting the balls over the goal as they cheer behind her.,jump on each other with joy as they celebrate.\n1376,anetv_rs7er4e67ec,2687,The players jump on each other with joy as they celebrate. There,The players jump on each other with joy as they celebrate.,There,gold,join the boys before the match.,are going on the sand pathway.,is shown riding in the slow motion someone.,is a stage of singers performing live music as they celebrate the victory of the winning team.\n1377,anetv_Sw4QZTF7sOI,119,She moves on to cut a lot of mushrooms. She,She moves on to cut a lot of mushrooms.,She,gold,travels with a woman using ice cream in a large red pan.,moves around the mushrooms she just cut up.,\"cuts the sandwich with a small, rectangular towel.\",takes a bite of the sandwich when the boys are over.\n1378,anetv_Sw4QZTF7sOI,118,A chef speaks to the camera. She,A chef speaks to the camera.,She,gold,\"stops to talk, with the mixture being sliced onto a gleaming plate.\",moves on to cut a lot of mushrooms.,sharpens the sharpener and uses two tongs to cut the tomato.,is shown close up and showing how to sharpen a knife throwing different knives.\n1379,lsmdc0011_Gandhi-52479,11488,\"Someone faces him stonily, a seed of panic taking root deep in his gut. The camera\",\"Someone faces him stonily, a seed of panic taking root deep in his gut.\",The camera,gold,is panning slowly along a section of the wall.,spins someone on him.,stays for his friend.,focuses on one of the buildings adorned with colorful lights.\n1380,lsmdc0011_Gandhi-52479,11487,\"The Indian barrister stares at him a moment, then simply lowers his eyes to his notes. Someone\",\"The Indian barrister stares at him a moment, then simply lowers his eyes to his notes.\",Someone,gold,\"is smiling, looking disapprovingly at someone.\",glances over her shoulder at them.,looks at him quickly.,\"looks at someone, cringing.\"\n1381,lsmdc3035_INSIDE_MAN-1701,10060,\"The slim policeman approaches the entrance and tries the doors. Peering inside, he\",The slim policeman approaches the entrance and tries the doors.,\"Peering inside, he\",gold,tries another and reaches for his shoulder radio.,birder cautiously peers through the wavy door then stumbles.,finds on the young skyline surrounded by black leather.,opens himself to someone and kisses her.\n1382,anetv_dcARAWmvWSo,17460,We see a man throwing shingles into a trailer. Three men,We see a man throwing shingles into a trailer.,Three men,gold,are laying carpet tiles on the floor.,throw shingles off the roof.,puts on his roof as someone wrestles than a car.,are behind him watering the grass.\n1383,anetv_dcARAWmvWSo,17459,We see the rolls of roofing materials. We,We see the rolls of roofing materials.,We,gold,skies the boat.,\"we bag walking down the street, a see him pushing the mower aside.\",class is shown on an outdoor ski area.,see a man throwing shingles into a trailer.\n1384,anetv_dcARAWmvWSo,17457,We see the men on the front part of the roof. We,We see the men on the front part of the roof.,We,gold,see a man throwing shingles into a trailer on the ground.,see a strange english street.,see a car in the snow spraying the pumpkin with a snow sprayer.,we see the lady ironing the garment.\n1385,anetv_dcARAWmvWSo,17456,We see the supplies on the ground. We,We see the supplies on the ground.,We,gold,see the men on the front part of the roof.,general types on his cell phone.,see a lady using their vows cards.,then see the lady throw her food on bread.\n1386,anetv_dcARAWmvWSo,17458,We see a man throwing shingles into a trailer on the ground. We,We see a man throwing shingles into a trailer on the ground.,We,gold,see the man remove shoe boards in a dirt bike park.,see a man in the doorway being attacked.,see the rolls of roofing materials.,see the bull on his roof.\n1387,anetv_dcARAWmvWSo,17455,We see men working on a roof on a ranch style house. We,We see men working on a roof on a ranch style house.,We,gold,see the supplies on the ground.,see the title screen.,see people working on the roof.,see the man start with a close razor.\n1388,anetv_0cYB-WFrVxk,4731,They stand up and start water skiing behind the boat. The person,They stand up and start water skiing behind the boat.,The person,gold,ski down a hill while the people fire to them.,walks into the water underwater and jumps into the water.,falls and lets go of the rope.,ride off the kayak and back into the boat.\n1389,anetv_0cYB-WFrVxk,4730,A boat pulls a person out of the water. They,A boat pulls a person out of the water.,They,gold,stand up and start water skiing behind the boat.,see the man swim and swim before him.,ride their canoes in the light.,is dancing on a large wave on a poop deck.\n1390,lsmdc1034_Super_8-7932,19755,\"In it one of the boys, someone, is playing a detective character. Someone pulls a gun, but someone\",\"In it one of the boys, someone, is playing a detective character.\",\"Someone pulls a gun, but someone\",gold,turns on his heel and follows.,shoots someone in the face.,knocks him along with his right foot.,knocks it from his hand.\n1391,lsmdc1034_Super_8-7932,19756,\"They tussle, and someone shoves someone back onto some spikes on the wall, impaling him. Blood\",\"They tussle, and someone shoves someone back onto some spikes on the wall, impaling him.\",Blood,gold,spills from someone's mouth.,gather around the ring and follows hers off.,\"is playing on someone's street, staring at the monstrous underwear.\",\", someone smiles, straightening his jaw as he removes the bar.\"\n1392,lsmdc3018_CINDERELLA_MAN-7875,13803,\"Pressing against him, someone puts her free hand on his shoulder as she turns the meat. Daytime, At the docks, someone\",\"Pressing against him, someone puts her free hand on his shoulder as she turns the meat.\",\"Daytime, At the docks, someone\",gold,helps her younger sister up.,hands the leather supply case to someone who stands next to someone.,flexes his right hand and glances at the padlocked gate.,reads the note once more.\n1393,lsmdc3018_CINDERELLA_MAN-7875,13797,Someone stands behind the children wringing. A tentative smile,Someone stands behind the children wringing.,A tentative smile,gold,lingers on her ribs.,spreads across her chest.,settles on her face.,spreads over the set.\n1394,lsmdc3018_CINDERELLA_MAN-7875,13798,A tentative smile settles on her face. Someone,A tentative smile settles on her face.,Someone,gold,\"wakes, then stares off, blowing his breath.\",\"steps out from under a couch and unfolds a letter, pretending for money in the notebook.\",holds up some money.,jostles in the bedroom as someone makes a shot at the hurrying employee messages.\n1395,lsmdc3018_CINDERELLA_MAN-7875,13799,Someone holds up some money. The children,Someone holds up some money.,The children,gold,occasionally petting a dog and drinking.,hold each others gaze.,rush to their father.,rush past the someone.\n1396,lsmdc3018_CINDERELLA_MAN-7875,13796,\"Someone sits wearily, his gaze turned downward. He\",\"Someone sits wearily, his gaze turned downward.\",He,gold,rides away untying trousers.,look around the room front his eyes to find the damage on the back.,\"reaches into his vest pocket, takes something out, and palms it.\",turns her head and walks away.\n1397,lsmdc3018_CINDERELLA_MAN-7875,13807,\"Motioning someone aside, someone shows him a sports page headline. Someone\",\"Motioning someone aside, someone shows him a sports page headline.\",Someone,gold,\"hesitates for a moment, then steps and slides off the porch with his black leather overcoat.\",rests his hand on someone's fingernail.,\"regards the paper, nods and smiles.\",\"looks away, then follows it as someone dies.\"\n1398,lsmdc3018_CINDERELLA_MAN-7875,13805,\"Later, a man hands someone a pair of meat hooks. Someone\",\"Later, a man hands someone a pair of meat hooks.\",Someone,gold,pushes someone off the back room.,heads toward the dock.,\"swings through a bamboo rail area, out on the pair.\",removes food from a table.\n1399,lsmdc3018_CINDERELLA_MAN-7875,13804,\"Daytime, At the docks, someone flexes his right hand and glances at the padlocked gate. Someone\",\"Daytime, At the docks, someone flexes his right hand and glances at the padlocked gate.\",Someone,gold,turns a dial on someone's finger hook.,peers through the gate.,tries to push it away.,holds his ear to his neck as someone heads out.\n1400,lsmdc3018_CINDERELLA_MAN-7875,13806,\"Someone heads toward the dock. Motioning someone aside, someone\",Someone heads toward the dock.,\"Motioning someone aside, someone\",gold,makes his way back past the wolf.,taps another grave - over half - time head.,shows him a sports page headline.,sees a tuk emblazoned on someone's wall.\n1401,anetv_wz_kM0oBW5g,3196,\"We see two ladies, a different lady, then others. We\",\"We see two ladies, a different lady, then others.\",We,gold,\", the young lady indicated the line and make a jump.\",see an opening screen with inflatable cattle.,see a team of player throw the stones.,see pictures of the drink.\n1402,anetv_wz_kM0oBW5g,3193,Arrows point to stones on the court. A lady,Arrows point to stones on the court.,A lady,gold,smiles and hugs people.,walks off and returns.,lays down on them.,performs on a road beam.\n1403,anetv_wz_kM0oBW5g,3198,We see the crowd clap. We,We see the crowd clap.,We,gold,drops to his knees on the stage.,see the score appear on the screen.,\", the ladies march into the air and jump on their bikes.\",see a huge dancing arena.\n1404,anetv_wz_kM0oBW5g,3194,A lady walks off and returns. Arrows,A lady walks off and returns.,Arrows,gold,the girls talk to a computer.,can be seen scenes.,sprays the rear windshield with spray and puts them on.,appear to point to the stones.\n1405,anetv_wz_kM0oBW5g,3192,We see a shuffle curling court. Arrows,We see a shuffle curling court.,Arrows,gold,spin and throw the balls on.,point to stones on the court.,stretch and a yellow team stands watching them.,stand in the middle of a court.\n1406,anetv_nypZiLC1_Z8,4931,The camera zooms in on the bars and the person pours liquid into the side. The man,The camera zooms in on the bars and the person pours liquid into the side.,The man,gold,spins carefully while holding a cup off to the camera.,continues working and ends by putting the handlebars back and riding away.,continues to paint the fence and the camera zooms in on the black.,pours the liquid into the glass and pours the liquid into the mouth.\n1407,anetv_eudqfH7Vz_c,14582,Three boys play a game of croquet on a large green lawn with croquet mallets and croquet balls. The boy,Three boys play a game of croquet on a large green lawn with croquet mallets and croquet balls.,The boy,gold,dismounts and catches a ball on the other end of the ball.,sit on a bench outside with a bag of croquet mallets and balls and talk to each other.,is seen fighting and motion to the camera holding a different paintball sports stick.,continues to play the ball while the other man runs the bases.\n1408,anetv_eudqfH7Vz_c,14583,The boy sit on a bench outside with a bag of croquet mallets and balls and talk to each other. The boys then,The boy sit on a bench outside with a bag of croquet mallets and balls and talk to each other.,The boys then,gold,lay clap and dip the rake with one sponge and one another ball.,hit the ball back and forth while the two men sit around the drink and continue eating.,plays like a man watches a violin and throw.,enter the field and hurt themselves trying to untangle the croquet tools.\n1409,anetv_AOteP9srRpw,10326,The sail waves a little as the surfer loses control. The surfer,The sail waves a little as the surfer loses control.,The surfer,gold,falls into the water and recovers.,appears on the water as he swims.,does flips around the water.,swims the currents and flips in the air as he rides on dirt.\n1410,anetv_AOteP9srRpw,4415,A man is parasailing on the ocean. He,A man is parasailing on the ocean.,He,gold,has a piece of grey floating down his feet then he is going along the sea while reverend on a canoe.,falls out of the water as he goes back and forth.,turns flips and continues sailing quickly.,is holding a baby in his arms.\n1411,anetv_AOteP9srRpw,10325,We see a man kitesurfing. The sail,We see a man kitesurfing.,The sail,gold,glides over the surfer and the waters.,slides apart and starts around.,waves a little as the surfer loses control.,\"is still making up on the gopro, the end credits appear.\"\n1412,anetv_4efxBizoKyQ,5720,His wife is cleaning off a piece of white bedframe quickly. The man again shows his face and,His wife is cleaning off a piece of white bedframe quickly.,The man again shows his face and,gold,takes out the cake and stack it into a plate.,goes back to his wife.,wipes the served clean with a towel.,shows off more flowers.\n1413,anetv_RkCSfz8GeNg,7518,She then ties her hair up and proceeds to blow dry her hair while a comb. Then,She then ties her hair up and proceeds to blow dry her hair while a comb.,Then,gold,puts a towel in the end and walks out of the room.,completes an image of her new friend and continues blow drying her hair in a style record mode.,takes her hair down and runs lotion through her hair while still looking to the camera.,ends in on her finger and turns when the young lady gives her touch an interview.\n1414,anetv_RkCSfz8GeNg,7517,A man is seen playing with her hair in front of the camera and leads into her brushing her hair. She then,A man is seen playing with her hair in front of the camera and leads into her brushing her hair.,She then,gold,ties her hair up and proceeds to blow dry her hair while a comb.,curls her hair into sections and curls it into sections.,takes her dress off while looking to the camera and brushes her hair.,finishes braiding her hair and leads into her braiding her hair.\n1415,anetv_eI_LceS_qnQ,12460,A woman in a pink skirt is standing in front of them leading the dance. They,A woman in a pink skirt is standing in front of them leading the dance.,They,gold,\"woman in a white shirt has loud backup, as the man plays salsa music behind the woman.\",continue dancing together in the room.,\"spin and twirl, twist around twirling the ropes, and dance, and hula hoops spins in a circle.\",are standing in front of the camera while juggling a red ball on their hip.\n1416,anetv_eI_LceS_qnQ,2144,Several women are in a dimly lit room dancing back and forth exercising. The instructor,Several women are in a dimly lit room dancing back and forth exercising.,The instructor,gold,is in the front with a whistle in her mouth as she is instructing the class.,continues talking to the camera again various few different angles and showing her movements.,started to push the chair forward.,\"has moved, using their hands to perform their stepping movements in sync that is drawn into the air.\"\n1417,anetv_eI_LceS_qnQ,12459,Women are dancing together in a room. A woman in a pink skirt,Women are dancing together in a room.,A woman in a pink skirt,gold,is looking into the camera while standing behind him knitting.,hops and fells on the floor.,is standing in front of them leading the dance.,is playing drums in the room.\n1418,anetv_Jp8L9h4aaV4,1522,Women are in a small room doing exercise in steps. women,Women are in a small room doing exercise in steps.,women,gold,are standing in a gym or without machine rowing.,are doing a choreography in steps following the instructor.,are standing behind the mug stepping up and down.,are dancing on the stone floor with a stone bucket.\n1419,anetv_Jp8L9h4aaV4,5272,\"Women exercise stepping on aerobic steppers while dancing, going around and extending the arms. Then, the women\",\"Women exercise stepping on aerobic steppers while dancing, going around and extending the arms.\",\"Then, the women\",gold,\"perform with quick steps while people women in front and stands behind them, talking to each other.\",raise her hands and holds light up in hair stylists.,stand up for behind closing exercising on her bars.,finish their aerobic workout and clap their hands.\n1420,anetv_Jp8L9h4aaV4,1523,Women are doing a choreography in steps following the instructor. in the background there,Women are doing a choreography in steps following the instructor.,in the background there,gold,are people with small blue flags on signs excitedly.,are part of her on their knees.,are two people swimming around them.,'s a room with exercise machines.\n1421,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86640,10035,\"Seeing it, she laughs. He\",\"Seeing it, she laughs.\",He,gold,throws down a handful of pins.,looks up to see someone scratching her face.,sits on the bed.,stops someone's tank.\n1422,anetv_JDfFAljt4JM,13103,Two people are seen doing a ballet dance on stage followed by a woman doing a dance while others watch on the side. The woman,Two people are seen doing a ballet dance on stage followed by a woman doing a dance while others watch on the side.,The woman,gold,continue spinning with the man walking in and out of frame and ends with her bowing to the audience.,continues smiling while moving her hands all around while the woman captures his movements and walks to the camera.,continues to continue dancing around the stage with one ref walking around all of her movements and stopping and pose.,continues to dance around the camera as she dances around the table.\n1423,anetv_2fs09c8gFsk,15876,The girl in black gets stuck the gets going. The cars then,The girl in black gets stuck the gets going.,The cars then,gold,twist out the foot of the car and drive.,turn and run towards a lake.,come to a stop.,placed on squares in the background.\n1424,anetv_Sma-ydx49eQ,9615,A man starts jump roping on a stage. People,A man starts jump roping on a stage.,People,gold,watch on the sidelines as the man jumps off the bar.,\"walk in the crowd, while a hand stands behind them talking.\",run around the arena and walk away with their arms.,are in the audience watching him.\n1425,anetv_Sma-ydx49eQ,9616,People are in the audience watching him. Two men,People are in the audience watching him.,Two men,gold,are in a room playing instruments.,get several of them.,are sitting on a bench talking.,stand behind cameras filming him.\n1426,anetv_huFuRGoZt9I,6282,A dealer is shown laying out cards on a table while other people's hands are shown on the side. The person then,A dealer is shown laying out cards on a table while other people's hands are shown on the side.,The person then,gold,lays out cards while another person lays out their chips.,is shown wearing blue gloves while eventually putting sunglasses on down the picture.,runs using a stick and presents a long bow on one end.,puts some items together and holds it out before the paragraph in the third title and stands it up.\n1427,anetv_9RcCkU6dVD0,963,\"The bat falls and the girl picks it up. Behind her, a boy\",The bat falls and the girl picks it up.,\"Behind her, a boy\",gold,demonstrates how she should hit and cheers her on.,sings over a horn.,leaps out on his back.,takes soap off his hand.\n1428,lsmdc3085_TRUE_GRIT-40794,13954,\"She tries to free her foot but can not. Breathless, she\",She tries to free her foot but can not.,\"Breathless, she\",gold,tucks the knapsack on his face.,lets her toes flail in her hand.,stares up through the narrow cave mouth.,empties her abandoned bowl in the hallway.\n1429,lsmdc3085_TRUE_GRIT-40794,13936,Someone blasts him through the chest. The man,Someone blasts him through the chest.,The man,gold,climbs back onto the roof.,\"tumbles from his horse, cracking his head against a rock in a shower of blood.\",swings his bag chest back over his knee as he draws his sword off its chest.,pulls out thin metal body near the ledge.\n1430,lsmdc3085_TRUE_GRIT-40794,13956,She slowly looks the dead man over. Someone,She slowly looks the dead man over.,Someone,gold,gestures angrily at someone's mouth.,reaches out and grasps one of the man's boots.,wears a green sport coat from a woman's waist.,wraps her arms around his periscope hips and bends down beside it.\n1431,lsmdc3085_TRUE_GRIT-40794,13947,Someone rests it free of his grasp. She,Someone rests it free of his grasp.,She,gold,\"quickly opens it, drawing out a sketch of someone.\",\"catches up with him, his head bowing galloping beneath the leathery fur.\",approach a pond - painted car and signs a sign above the reservoir.,makes sure the gun is cocked.\n1432,lsmdc3085_TRUE_GRIT-40794,13948,\"She makes sure the gun is cocked. Scowling, he\",She makes sure the gun is cocked.,\"Scowling, he\",gold,does as he's told.,suddenly pulls the trigger and slows.,\"slaps her, and someone looks at her.\",opens the apartment door and strides towards the door.\n1433,lsmdc3085_TRUE_GRIT-40794,13964,He sucks poison from the wound and spits it out. He,He sucks poison from the wound and spits it out.,He,gold,checks the resigned hand of someone's armpit.,cuts her foot free of the tree root and returns the knife to his back pocket.,aims his wand back to pure aim.,eats the wavers.\n1434,lsmdc3085_TRUE_GRIT-40794,13955,She glances about the cave and frowns as her eyes alight on a dead body lying just a few feet away. She slowly,She glances about the cave and frowns as her eyes alight on a dead body lying just a few feet away.,She slowly,gold,looks the dead man over.,\"slides down the middle of a top cabinet, her hand poised to extending.\",steps past by the window and sees a bit of bible sew in the ceiling.,\"reaches for a flashlight chamber, lifts it to her mouth, then replaces it before removing her blouse.\"\n1435,lsmdc3085_TRUE_GRIT-40794,13952,Light pours in through the dust shrouded mouth of the cave. Someone,Light pours in through the dust shrouded mouth of the cave.,Someone,gold,races from between them.,'s eyes flutter open as the dragon flies off its tail.,grimaces in pain and sits up slightly.,\"peers down the long passage from the right side of the stone diving board lying on a narrow, troubled ground.\"\n1436,lsmdc3085_TRUE_GRIT-40794,13960,A snake glides onto someone's shoulder and she flings it aside. As someone,A snake glides onto someone's shoulder and she flings it aside.,As someone,gold,\"kicks it, a performer incline his head in a forest.\",descends clutching the rope.,\"turns on someone, some of the limbs stand.\",\"stretches for his grip, a bedside lamp consumes the position.\"\n1437,lsmdc3085_TRUE_GRIT-40794,13942,Someone squints down the barrel of his rifle as he takes aim. Someone,Someone squints down the barrel of his rifle as he takes aim.,Someone,gold,glances at the puck.,limply points and cocks his pistol.,stamps on the door.,flings one of his limbs like a gun.\n1438,lsmdc3085_TRUE_GRIT-40794,13950,\"Someone trips over a log and tumbles backwards through a crevice into a subterranean cave. Bouncing down a steep rocky slope, she\",Someone trips over a log and tumbles backwards through a crevice into a subterranean cave.,\"Bouncing down a steep rocky slope, she\",gold,sees a long column of strands of black.,soars through the endless spiral of sky.,lands on her back and snags her foot on a tree root.,rushes to the landing prometheus.\n1439,lsmdc3085_TRUE_GRIT-40794,13935,Another puts a bullet through someone's shoulder. Someone,Another puts a bullet through someone's shoulder.,Someone,gold,backs away from someone.,grimaces as he runs to the center.,blasts him through the chest.,lunges off above him.\n1440,lsmdc3085_TRUE_GRIT-40794,13946,Someone quickly grabs his rifle but someone gets hold of the barrel. Someone,Someone quickly grabs his rifle but someone gets hold of the barrel.,Someone,gold,fires out the number backwards.,rests it free of his grasp.,hacks a trooper in the road.,\"tries to climb out, who leaps to the ground.\"\n1441,lsmdc3085_TRUE_GRIT-40794,13963,He reaches someone who grimaces in pain. She,He reaches someone who grimaces in pain.,She,gold,stab and stab before it punches another zombie in the head.,\"closes briefly, then takes a boot.\",unplugs the phone abruptly.,nods at her hand which he grasps.\n1442,lsmdc3085_TRUE_GRIT-40794,13951,\"Bouncing down a steep rocky slope, she lands on her back and snags her foot on a tree root. Light\",\"Bouncing down a steep rocky slope, she lands on her back and snags her foot on a tree root.\",Light,gold,soars down into the air.,pours in through the dust shrouded mouth of the cave.,\"braces herself as she flips one stick a little, then stands up before joining someone on the grass.\",reverses as it rides through the traffic.\n1443,lsmdc3085_TRUE_GRIT-40794,13953,Someone grimaces in pain and sits up slightly. She,Someone grimaces in pain and sits up slightly.,She,gold,turns on her indignant pout.,smiles as someone pulls the red bolts out of the bifrost grasp.,rubs the ice cream off his lips and goes back to work.,tries to free her foot but can not.\n1444,lsmdc3085_TRUE_GRIT-40794,13943,\"Someone is but a tiny speck far below on the plain. Still astride his horse, someone\",Someone is but a tiny speck far below on the plain.,\"Still astride his horse, someone\",gold,turns and faces someone softly.,drives someone in heavy pursuit.,does n't move a muscle.,puts one foot up.\n1445,lsmdc3085_TRUE_GRIT-40794,13937,Someone buckles and someone's horse goes down. Someone,Someone buckles and someone's horse goes down.,Someone,gold,\"shakes someone's hand, then incorporates some rustling movement.\",stands sharply and gasps.,turns and walks back past the water gathering.,runs into the grotto.\n1446,lsmdc3085_TRUE_GRIT-40794,13959,She sits up and fumbles with the tree root. Someone,She sits up and fumbles with the tree root.,Someone,gold,\"keeps in and climbs in, into the driver's seat.\",removes a wet ribbon around her wrist.,throws a rope into the cave.,watches placed her collar.\n1447,lsmdc3085_TRUE_GRIT-40794,13944,\"Still astride his horse, someone does n't move a muscle. Someone\",\"Still astride his horse, someone does n't move a muscle.\",Someone,gold,gives a small frightened smile.,takes his arm's outstretched hand.,reaches for his hand and lifts his left hand.,looks up from his gun and frowns.\n1448,lsmdc3085_TRUE_GRIT-40794,13965,\"He cuts her foot free of the tree root and returns the knife to his back pocket. Wrapping the rope around them both, he then\",He cuts her foot free of the tree root and returns the knife to his back pocket.,\"Wrapping the rope around them both, he then\",gold,grabs onto the handle.,climbs back to the camel.,drops back in the hole.,takes someone in his arms.\n1449,lsmdc3085_TRUE_GRIT-40794,13957,\"Someone reaches out and grasps one of the man's boots. As she does so, his leg\",Someone reaches out and grasps one of the man's boots.,\"As she does so, his leg\",gold,reaches out and pulls her up on the ledge.,reaches out to scoop him.,comes apart at the knee.,is gravel resting on the deck as someone levels his gaze at someone's head.\n1450,lsmdc3085_TRUE_GRIT-40794,13934,Someone shoots and one of someone's men slumps down the side of his saddle. Another,Someone shoots and one of someone's men slumps down the side of his saddle.,Another,gold,\"lunges at him, who start his punching bag over the parallel rails.\",smaller agent shoots him a tumbling glance.,puts a bullet through someone's shoulder.,lowers the gun and bows his running head.\n1451,lsmdc3085_TRUE_GRIT-40794,13940,His leg is trapped beneath it. Someone,His leg is trapped beneath it.,Someone,gold,holds the agent as he zips up his body.,rises from her sullen face and forces her listless expression.,\"approaches, sitting slumped on his horse.\",inhales and draws an agonized face between the bodies.\n1452,lsmdc3085_TRUE_GRIT-40794,13958,\"As she does so, his leg comes apart at the knee. She instead\",\"As she does so, his leg comes apart at the knee.\",She instead,gold,slides down someone wiping out of cracks in the camera.,pulls his thigh and then his shirt.,climbs down by the trapped figure and tosses his salad.,slides the leg paws up a stretching back legs.\n1453,lsmdc3085_TRUE_GRIT-40794,13945,\"Someone bashes someone on the head with a boulder, knocking him unconscious. Someone quickly grabs his rifle but someone\",\"Someone bashes someone on the head with a boulder, knocking him unconscious.\",Someone quickly grabs his rifle but someone,gold,shoves his dog towards the alien.,hauls him back and carries him to the vault.,grabs him by the throat.,gets hold of the barrel.\n1454,lsmdc3085_TRUE_GRIT-40794,13939,A dust cloud rises from the ground where someone's horse has fallen. His leg,A dust cloud rises from the ground where someone's horse has fallen.,His leg,gold,is trapped beneath it.,suddenly throws into the ground.,is tossed down onto a bed of grass.,is pushed to the ground.\n1455,lsmdc3085_TRUE_GRIT-40794,13949,\"Scowling, he does as he's told. She\",\"Scowling, he does as he's told.\",She,gold,\"grimaces, anxious eyed.\",is having fun in his gown.,blasts him off the cliff edge.,fights back with the class.\n1456,lsmdc3085_TRUE_GRIT-40794,13962,Someone shoots his pistol at the ground. He,Someone shoots his pistol at the ground.,He,gold,bares his gritted teeth.,\"lifts his head up with a knife plank using his frail hand, shows the thug.\",flexes his fingers then jerks his arms with his free hand.,reaches someone who grimaces in pain.\n1457,lsmdc3085_TRUE_GRIT-40794,13938,Someone stands sharply and gasps. A dust cloud,Someone stands sharply and gasps.,A dust cloud,gold,\"billows out from the hood, its red tail and its tail appears.\",rises from the ground where someone's horse has fallen.,in their heads towards the house.,looms around the inn.\n1458,lsmdc3085_TRUE_GRIT-40794,13941,\"Someone approaches, sitting slumped on his horse. Someone\",\"Someone approaches, sitting slumped on his horse.\",Someone,gold,chops at someone with circles.,helps his friend stand up to follow him.,squints down the barrel of his rifle as he takes aim.,out and goes away to his.\n1459,lsmdc3085_TRUE_GRIT-40794,13961,As someone descends clutching the rope. Someone,As someone descends clutching the rope.,Someone,gold,\"takes someone bravely, and then hurls him into the water.\",shoots his pistol at the ground.,ducks on as someone punches one of them hard.,turns at his radio.\n1460,lsmdc0019_Pulp_Fiction-56626,12727,English someone slams the door in our faces. The spacious club,English someone slams the door in our faces.,The spacious club,gold,collides with butter and four dogs.,\"opens from inside the sizable ornate, quaint basement walls and landing by the carpets crucifix.\",is empty this time of day.,lights enter the apartment block.\n1461,lsmdc0019_Pulp_Fiction-56626,12726,Someone looks really cool behind the wheel of a 1964 cherry red Chevy Malibu convertible. English someone,Someone looks really cool behind the wheel of a 1964 cherry red Chevy Malibu convertible.,English someone,gold,enters from a distant door and calls upstairs.,slowly comes out to her and shuts the door.,slams the door in our faces.,\"reads the start screen and skate drive down the busy road along a leafy freeway, road.\"\n1462,anetv_Y-UOZRZ01hI,14129,A page with a video structured to look similar to Youtube is shown. A seated woman,A page with a video structured to look similar to Youtube is shown.,A seated woman,gold,is playing a blue harmonica as she talks while zooming along.,is talking and showing the yarn to the players.,is standing across a desk and restaurant a fruit in a jar.,\"talks to the camera, interspersed by scenes of individuals shown welding.\"\n1463,anetv_Y-UOZRZ01hI,14130,\"A seated woman talks to the camera, interspersed by scenes of individuals shown welding. A man\",\"A seated woman talks to the camera, interspersed by scenes of individuals shown welding.\",A man,gold,talks to the camera.,chop the metal in a gray area.,gives thumbs to a push machine and then shown in his photos booth.,\"explains demonstrate how to use machine guns, razor and shave.\"\n1464,anetv_9PxPcJS47js,1578,Two people are seen walking into frame looking into one another followed by one balancing on rope. The men then,Two people are seen walking into frame looking into one another followed by one balancing on rope.,The men then,gold,begin performing moves and tricks with one another and moving behind them.,begin paddling down the water while people watch on the side.,begin performing tricks on one and spinning around.,take turns bouncing up and down on a rope while looking back at one another.\n1465,anetv_9PxPcJS47js,14454,A bald headed man performs tricks on a yellow trick line. The man wearing a baseball cap,A bald headed man performs tricks on a yellow trick line.,The man wearing a baseball cap,gold,performs tricks on a traditional line.,gets on a rope and balances.,walks around to the camera.,falls on the slack line.\n1466,anetv_9PxPcJS47js,14453,Two men meet to compete in a slack line competition. A bald headed man,Two men meet to compete in a slack line competition.,A bald headed man,gold,hits a bar and lands on an empty mat.,demonstrates his drill legs.,throws one ball successfully.,performs tricks on a yellow trick line.\n1467,anetv_9PxPcJS47js,14455,The camera pans back to the bald man performing trick on the slack line and back to the man wearing a baseball cap performing tricks on the traditional line. The slack line athletes,The camera pans back to the bald man performing trick on the slack line and back to the man wearing a baseball cap performing tricks on the traditional line.,The slack line athletes,gold,take their turns on his arms in the air.,switch and they shake and talk while the camera moves in the middle outro.,finish competing and shake hands at the finish.,begin bouncing and riding around before walking back on the mat in the end.\n1468,anetv_EsVxUf4Ae2c,1483,The man unhooks the hook from the fish's mouth. The man,The man unhooks the hook from the fish's mouth.,The man,gold,surfs the ice with it.,grabs a few waterfalls from his mouth and throws it at the camera.,pans up to show a man standing on top of the hole and the man with him continue to talk.,kisses the fish and releases it back into the hole.\n1469,anetv_EsVxUf4Ae2c,1479,A man is standing on ice with his pole standing straight up beside him. The man,A man is standing on ice with his pole standing straight up beside him.,The man,gold,grabs his fishing pole and starts fishing in the hole in the ice.,stands up and bows another line.,lifts up various wrappings and moves her head out of the way.,turns to face a male who bends down and plants his hands on his heart.\n1470,anetv_EsVxUf4Ae2c,1482,The man pulls a fish out of the water and poses with it. The man,The man pulls a fish out of the water and poses with it.,The man,gold,pulls the fish out of the hole in the water.,blows the fish into a hole as well.,unhooks the hook from the fish's mouth.,grabs a fish and takes out a hole.\n1471,anetv_EsVxUf4Ae2c,1480,The man grabs his fishing pole and starts fishing in the hole in the ice. The man,The man grabs his fishing pole and starts fishing in the hole in the ice.,The man,gold,appears to have caught something and kneels down to pull his fishing line by hand.,\"tosses the fishing stick in the hole, then moves the fish into the hole.\",takes a bow and gives a thumbs up.,twirls to the fishing box then moves the stick from edge to grab a fish.\n1472,anetv_EsVxUf4Ae2c,1481,The man appears to have caught something and kneels down to pull his fishing line by hand. The man,The man appears to have caught something and kneels down to pull his fishing line by hand.,The man,gold,then starts playing the water and pulling the kayak from it to take a bit of the men at the same time.,places the bow into the end and stands together over the hole.,plays around and ends with him speaking as he moves the boat away and inspecting it.,pulls a fish out of the water and poses with it.\n1473,anetv_fJyxb59mA-A,5828,We see a man sitting on a couch. The man,We see a man sitting on a couch.,The man,gold,holds a rubiks cube on his counter.,walks up the street and talks to the camera.,starts wiping out smoke.,is playing the bagpipe.\n1474,anetv_fJyxb59mA-A,5829,The man is playing the bagpipe. The man,The man is playing the bagpipe.,The man,gold,shake hands holding up his instrument as the band play.,begins playing the drums while he continues to play.,plays the drums in front of the camera.,laughs and stops playing.\n1475,anetv_fJyxb59mA-A,5832,The man stops playing the bagpipe. The man,The man stops playing the bagpipe.,The man,gold,waves his hand in front of the camera.,does the same and gets to his feet as he looks around.,continues brushing someone's hair.,stops playing the accordion and a video saxophone.\n1476,anetv_fJyxb59mA-A,5830,The man laughs and stops playing. The man,The man laughs and stops playing.,The man,gold,removes the cards from the corner of the booth.,continues to play the guitar while his opponent to set the sticks against the ground.,then ends to play the drums with his stick and swishing the music up again.,starts playing the bagpipe again.\n1477,anetv_GGv0sCOf_tM,4098,A lady is outside wringing a cloth on a bench. The lady,A lady is outside wringing a cloth on a bench.,The lady,gold,places the pink cloth down on the bench.,vacuums the davenport dancing in place.,hands an iron dryer.,brushes a piece of wood back inside.\n1478,anetv_GGv0sCOf_tM,1933,\"She is using water from a dispenser, pouring it onto material. She\",\"She is using water from a dispenser, pouring it onto material.\",She,gold,is mixing the ornament into small pieces.,is showing how to use billiard balls.,sits back and showing the rack.,cleans the pink item with the water.\n1479,anetv_GGv0sCOf_tM,4099,The lady places the pink cloth down on the bench. The lady,The lady places the pink cloth down on the bench.,The lady,gold,uses white tape to base her nails and puts in on a nail shot of the face.,lets the brush snow down and removes the helmet again.,points to her shoes to bake.,removes a green hose from the brown bench.\n1480,anetv_GGv0sCOf_tM,1932,A woman is standing at a picnic table outside an rv. She,A woman is standing at a picnic table outside an rv.,She,gold,gets in the van and goes to the final product.,is putting makeup over his face.,\"is using water from a dispenser, pouring it onto material.\",irons a black shirt in front of them.\n1481,anetv_X9AnhFjdiXA,10172,Man is sitting in a room playing the guitar to the camera. man,Man is sitting in a room playing the guitar to the camera.,man,gold,is holding an acoustic guitar playing it.,is in the room playing the piano.,is playing an accordion and talking in front of the camera.,is sitting on the sidewalk playing the guitar.\n1482,anetv_X9AnhFjdiXA,3453,A man tunes his guitar and then starts to strum it. The man,A man tunes his guitar and then starts to strum it.,The man,gold,shows how to play the drums as the film cuts to another beautiful photograph.,pauses then shows how to use the bends on the table to talk the flute.,plays a few chords and continues to fiddle with his guitar.,bends down and spins the baby back and fourth.\n1483,anetv_X9AnhFjdiXA,10171,Man is holding a guitar and is talking to the camera. man,Man is holding a guitar and is talking to the camera.,man,gold,is sitting in a room playing the guitar to the camera.,is sitting on a stool talking to the phone.,starts playing the harmonica.,is holding onto a white ball and begins helping it.\n1484,anetv_uwQDvcWzBy0,16875,A woman is seen speaking to the camera and leads into her putting several ingredients inside a mason jar. The woman,A woman is seen speaking to the camera and leads into her putting several ingredients inside a mason jar.,The woman,gold,pours pasta to a mixer and mixes the ingredients into a clear bowl.,uses tongs to layer items into the jar and then puts a lid on top.,finishes washing her side and leads into the man mopping the sink again.,mixes the ingredients together to mix them with the eggs and then pours them into the beak beside them.\n1485,anetv_uwQDvcWzBy0,16876,The woman uses tongs to layer items into the jar and then puts a lid on top. The woman,The woman uses tongs to layer items into the jar and then puts a lid on top.,The woman,gold,cleans the pan to clear her hair into a pan then takes it and puts it in the oven next the case.,cooks the mix ups on a cooking plate.,puts a ribbon around the side as well as a label and smiles to the camera.,walks in alone with the cookies child shown sitting next to the dish.\n1486,anetv_o86qcfpzO0g,17119,Two women are seen smoking a cigarette with one another while laughing and smiling. The women,Two women are seen smoking a cigarette with one another while laughing and smiling.,The women,gold,continue speaking to one another while smoking and looking deep into the camera.,speak to the camera while smoking a cigarette while looking into the camera.,continue to talk more while drinking pasta and moving her turn to speak to the camera while one takes a picture.,continue drinking and speak to one another while still speaking to the camera.\n1487,anetv_o86qcfpzO0g,5308,They sit at a table and smoke their cigarettes. They,They sit at a table and smoke their cigarettes.,They,gold,have a cigarette.,blow smoke rings into the air in front of them.,\"into the mouth, someone stands stiffly in front of the gleaming trophy with one hand pointing.\",hold each other tight.\n1488,anetv_o86qcfpzO0g,5307,Two women light each others cigarettes. They,Two women light each others cigarettes.,They,gold,continue dropping the stones that they've finished and the orchestra starts cutting.,sit at a table and smoke their cigarettes.,\"reach a fire, which opens and fire around.\",hold the phones and reading to a boy.\n1489,lsmdc3035_INSIDE_MAN-2181,12359,Someone lifts a large white hood off the sink. It,Someone lifts a large white hood off the sink.,It,gold,nods to a younger woman.,takes his finger as the car makes his turn.,'s spattered with a blood red stain and attached to a hose and hand pump.,pinches the bridge of her nose.\n1490,lsmdc3035_INSIDE_MAN-2181,12362,\"Someone faces an esu officer. Outside, a police transport bus\",Someone faces an esu officer.,\"Outside, a police transport bus\",gold,sits inside the marketplace.,\"trundles toward someone, who lands a short distance away.\",pulls to a stop at one end of the street.,rides away at home.\n1491,lsmdc3035_INSIDE_MAN-2181,12360,They file into the supply room. They,They file into the supply room.,They,gold,wrapped strips sit around each other's shoulders.,stare people down the hallway.,dump out loads of men and women's clothing.,play tug of war with someone.\n1492,lsmdc3035_INSIDE_MAN-2181,12358,He joins someone and someone in the ladies' room. Someone,He joins someone and someone in the ladies' room.,Someone,gold,lifts a large white hood off the sink.,does a high dance routine with someone.,dry exhales on his ear.,sits up as someone goes through a reception desk.\n1493,anetv_c-8GvZKndyQ,44,A young Asian female with a pink leotard is standing in an auditorium taking deep breaths and becoming focus. The girl then,A young Asian female with a pink leotard is standing in an auditorium taking deep breaths and becoming focus.,The girl then,gold,does a austere routine on the platform and begins doing her gymnastics routine on the choreography.,lifts her head and does a cartwheel onto the balance beam to begin her routine.,stands up and begins dancing very gracefully and womans back to the camera.,stops to exercise on the snowboard form on a platform.\n1494,anetv_c-8GvZKndyQ,45,The girl then lifts her head and does a cartwheel onto the balance beam to begin her routine. She,The girl then lifts her head and does a cartwheel onto the balance beam to begin her routine.,She,gold,\"hops off the bar and lands on the mat, jumping over and flipping herself in the air.\",gets off the beam and then flips off the beam onto the mat.,\"does several flips, toe touches, turns and flips during her routine before jumping off and sticking her landing on a blue mat.\",steps forward and lands on the bars and then lifts her off the ground to take her feet.\n1495,anetv_c-8GvZKndyQ,5762,She does her routine on the balance beam. She,She does her routine on the balance beam.,She,gold,jumps the batons down.,runs and flips across her mat.,does a flip and falls into the water.,does a large flip off and lands on a blue mat with her hands in the air.\n1496,anetv_USaP2UCPBEc,9127,Text appears on the screen with a link. People in uniform,Text appears on the screen with a link.,People in uniform,gold,march down the street.,are cutting the grass in front of a wall.,are at the anchors talking.,are in a game on olympics.\n1497,anetv_USaP2UCPBEc,9134,Two woman wave flags around. The rest of the people,Two woman wave flags around.,The rest of the people,gold,continue to march down the street.,throw themselves forward onto the ground begins to move and some crowd cheers.,begin to huddle throughout the streets with a couple.,get out and dance on a stage.\n1498,anetv_USaP2UCPBEc,9131,Another set of uniformed people walk down the street. They,Another set of uniformed people walk down the street.,They,gold,ride through a cavernous town at the bumps against their little red sedan in the corner.,move to the main part of the workshop where someone comes down the stairs.,stop and wave to the crowd.,get into an elevator.\n1499,anetv_USaP2UCPBEc,9130,A marchign band begins to walk down the street. Another set of uniformed people,A marchign band begins to walk down the street.,Another set of uniformed people,gold,walk down the street.,are gathered behind the beach area.,is jogging along a sidewalk.,come down the stairs with their arms raised.\n1500,anetv_USaP2UCPBEc,9128,People in uniform march down the street. It,People in uniform march down the street.,It,gold,is dragged by a policeman shoving the car in a ditch.,cuts to the crowd looking on.,behind fence are among them.,men are gathered when one of the roofers has returned with the chewed piece.\n1501,anetv_USaP2UCPBEc,9133,It goes back to the marching band. A horse and carriage,It goes back to the marching band.,A horse and carriage,gold,are followed by one huge by crowds watching them.,walk down the street followed by the people in uniform.,are walked in the garbage.,is standing in front of the mountain house.\n1502,anetv_USaP2UCPBEc,9132,They stop and wave to the crowd. It,They stop and wave to the crowd.,It,gold,lands on the slopes of a new mountain road.,is a short man.,goes back to the marching band.,shakes his head as he writes in front of them.\n1503,anetv_USaP2UCPBEc,9129,It cuts to the crowd looking on. A marchign band,It cuts to the crowd looking on.,A marchign band,gold,begins to walk down the street.,stands on a corner behind the people.,plays on the slopes.,\"is surrounded by a group of people, guiding their bodies along in the rafters.\"\n1504,lsmdc3058_RUBY_SPARKS-28638,16986,Someone stands up straight then gestures to her blanket. The young woman makes some room for someone and he,Someone stands up straight then gestures to her blanket.,The young woman makes some room for someone and he,gold,joins her and scotty on the blanket.,continues to stare in disbelief at the patrons.,grabs the tomato then carries him under the bar.,\"walks off down a dark, cement canyon.\"\n1505,lsmdc3058_RUBY_SPARKS-28638,16985,\"Smiling, she holds his gaze. Someone\",\"Smiling, she holds his gaze.\",Someone,gold,pulls out a new chair.,stands up straight then gestures to her blanket.,turns to his stepmother then frowns.,gets up slowly as her mother smiles.\n1506,lsmdc1059_The_devil_wears_prada-98694,13802,\"Later, someone goes down to the canteen. Shaven - headed someone\",\"Later, someone goes down to the canteen.\",Shaven - headed someone,gold,\"stares coldly at him, who's wearing a silky white robe collar.\",finds her helping herself to some soup.,joins him with a blood - colored substance on the back door as rain tries to climb a steep side hill.,lays up after him shooting one of someone's shoulder and smiling.\n1507,lsmdc1059_The_devil_wears_prada-98694,13801,\"Someone, well - dressed someone walks off with someone. Later, someone\",\"Someone, well - dressed someone walks off with someone.\",\"Later, someone\",gold,rides in their white jeep suits round.,brings up an arc energy pistol on a phone.,drives a small table with a handgun in each hand.,goes down to the canteen.\n1508,anetv_bJj66H_WsDA,19063,A man is seen sitting on the sidelines followed by a large group of people playing lacrosse. The players,A man is seen sitting on the sidelines followed by a large group of people playing lacrosse.,The players,gold,continue to move up and down the field past one another and many watching on the sides.,then begin hitting one another while the camera capturing for an uproar.,continue speaking to the camera wearing sandy as the guys continue to play soccer.,run around circles when a ball targets the water and the balls begin to move around him.\n1509,anetv_bJj66H_WsDA,19064,The players continue to move up and down the field past one another and many watching on the sides. The group,The players continue to move up and down the field past one another and many watching on the sides.,The group,gold,continues to practice at the bow while laughing and walking up and down the game.,continues to play of the game as well as playing the game indoors with one another and people away another game.,continues to the sidelines and ends by looking up into the sky and waving in all directions.,continue to play and end by scoring a goal and the ref reacting.\n1510,anetv_OlH5t7EKOKM,15256,She flips and turns several times. She then,She flips and turns several times.,She then,gold,does different flips while doing flips.,starts by pulling the cord around her neck.,dismounts before the judges and crowd.,pushes another piece along the horse apparatus.\n1511,anetv_OlH5t7EKOKM,1812,A girl is holding on to a balance bar. the girl,A girl is holding on to a balance bar.,the girl,gold,takes place before the diving beam catches her foot in the air.,kneels on either side and demonstrates how to stand.,begins swinging around the bar while performing splits and various tricks.,jumps down into the pool as the crowd claps for the people.\n1512,anetv_OlH5t7EKOKM,15255,A gymnast swings back and forth from a bar. She,A gymnast swings back and forth from a bar.,She,gold,flips and turns several times.,\"holds with a machine, making repeatedly, running and spinning.\",bends down and lifts the weight over her head.,raises her arms in the air and points to the distance.\n1513,lsmdc3039_JACK_AND_JILL-2546,7748,\"Now, a crowd surrounds a break dancing boy. He\",\"Now, a crowd surrounds a break dancing boy.\",He,gold,does a head spin.,falls hard towards where he modest red - the piano.,\"stares at her, then lowers her head.\",approaches someone companions the rugged someone; she pats him with her toy.\n1514,lsmdc3039_JACK_AND_JILL-2546,7743,\"Now, he feeds someone different Mexican dishes. Someone\",\"Now, he feeds someone different Mexican dishes.\",Someone,gold,\"nudges a relative, who nudges her back.\",packs a box suitcase and points.,says something and strokes the water again.,gets across the line again.\n1515,lsmdc3039_JACK_AND_JILL-2546,7753,The crowd cheers and an old man pinches her butt. Someone's grandma,The crowd cheers and an old man pinches her butt.,Someone's grandma,gold,calls on a sound stage as they go upstairs.,\"sits forward and glares, baring her one tooth.\",trying to restrain him.,gets away from her and stomps in.\n1516,lsmdc3039_JACK_AND_JILL-2546,7750,\"With a bashful smile, someone walks onto the makeshift dance floor of flattened cardboard boxes. She\",\"With a bashful smile, someone walks onto the makeshift dance floor of flattened cardboard boxes.\",She,gold,\"leans on the floor, scratches her ear, then pretends to pose with her closed.\",folds her legs to go.,\"does an awkward dance, patting her elbows then shimmies her ample bosom.\",sits down at the table.\n1517,lsmdc3039_JACK_AND_JILL-2546,7754,\"As she kicks, her shoe flies off. It\",\"As she kicks, her shoe flies off.\",It,gold,guys knock each other over the rough slatted pane.,is raised over a.,\"hits someone's grandma, knocking her out.\",bats the backpack off.\n1518,lsmdc3039_JACK_AND_JILL-2546,7761,\"Two relatives lift someone onto their shoulders, and she gives the crowd high fives. A guy\",\"Two relatives lift someone onto their shoulders, and she gives the crowd high fives.\",A guy,gold,\"peeks up her skirt, then turns to his friend.\",holds the up of a mallet.,wearing a white shirt spins in tapping a ball and watches something does it.,strides out and takes in his wallets.\n1519,lsmdc3039_JACK_AND_JILL-2546,7746,\"She forks up a chili pepper. Playing soccer, someone tries to kick the ball but her foot misses and she\",She forks up a chili pepper.,\"Playing soccer, someone tries to kick the ball but her foot misses and she\",gold,knocks it away from him.,falls onto her back.,drops it with another fragment.,calls over her shoulder to plunks herself into a restaurant.\n1520,lsmdc3039_JACK_AND_JILL-2546,7757,\"She swings at a pinata, but misses and smacks his grandma in the face. The family\",\"She swings at a pinata, but misses and smacks his grandma in the face.\",The family,gold,begins to take off the tape unit.,brings grandma some peppers.,\"is busy shaking hands, adjusting their bundles.\",flinches solutions at balmoral.\n1521,lsmdc3039_JACK_AND_JILL-2546,7751,\"She does an awkward dance, patting her elbows then shimmies her ample bosom. Grandma\",\"She does an awkward dance, patting her elbows then shimmies her ample bosom.\",Grandma,gold,stops as she breaks into a fight.,\"stands awkwardly, with someone slung over her shoulder.\",watches her eyes wide and round behind her glasses.,turns to view connected to the baby's crib.\n1522,lsmdc3039_JACK_AND_JILL-2546,7760,\"With the ball in midair, she swings her leg around and side volleys it into the net. Two relatives lift someone onto their shoulders, and she\",\"With the ball in midair, she swings her leg around and side volleys it into the net.\",\"Two relatives lift someone onto their shoulders, and she\",gold,\"hangs up the rope, descending the drain to the platform where the hi - heeled sneakers is now on.\",\"drops the boxer into one log by scoring, kicking in front of others.\",gracefully leaps high over the bar.,gives the crowd high fives.\n1523,lsmdc3039_JACK_AND_JILL-2546,7759,\"She holds the ball between her feet and jumps. With the ball in midair, she\",She holds the ball between her feet and jumps.,\"With the ball in midair, she\",gold,swings her leg around and side volleys it into the net.,releases the pole and runs their legs right over it.,gets up and back to the beam.,flips the pinata over and doing it again.\n1524,lsmdc3039_JACK_AND_JILL-2546,7762,They find sweat stains on the bed. He,They find sweat stains on the bed.,He,gold,puts the ashtray on a pipe near his bed wall.,\"gets from his sweatshirt, then gets to the knees opposite.\",grabs a brush and opens a window.,fondles someone's stain.\n1525,lsmdc3039_JACK_AND_JILL-2546,7752,Grandma watches her eyes wide and round behind her glasses. Someone,Grandma watches her eyes wide and round behind her glasses.,Someone,gold,\"stops, staring at her, then shrugs.\",squats down and folds her arms in front of her.,\"vainly, swinging on him.\",\"stands by a window, relating to her tidy appearance.\"\n1526,lsmdc3039_JACK_AND_JILL-2546,7756,\"Blindfolded, someone takes the stick from someone. She\",\"Blindfolded, someone takes the stick from someone.\",She,gold,sets the gun aside.,\"swings at a pinata, but misses and smacks his grandma in the face.\",run her hand over someone's.,tosses it over her shoulder.\n1527,lsmdc3039_JACK_AND_JILL-2546,7744,\"Someone nudges a relative, who nudges her back. She\",\"Someone nudges a relative, who nudges her back.\",She,gold,kneels down beside someone and the guard beside him.,offers someone tag to the man.,\"climbs the stairs and checks it, waits in number.\",shoulders him right off the bench.\n1528,lsmdc3039_JACK_AND_JILL-2546,7758,The family brings grandma some peppers. She,The family brings grandma some peppers.,She,gold,loosens his helmet and lighter.,eats two at a time.,\"hesitates, then gets out of the truck.\",sets on a white robe.\n1529,lsmdc3039_JACK_AND_JILL-2546,7749,\"He does a head spin. With a bashful smile, someone\",He does a head spin.,\"With a bashful smile, someone\",gold,returns a near vertical smile.,straps her tension.,walks onto the makeshift dance floor of flattened cardboard boxes.,finds someone standing at the foot of a girl's hefty pool bed.\n1530,lsmdc3039_JACK_AND_JILL-2546,7755,\"Her family feeds her peppers, rousing her. Blindfolded, someone\",\"Her family feeds her peppers, rousing her.\",\"Blindfolded, someone\",gold,hands the girl to her mother.,heads out toward someone's house.,lets the falcon fly out.,takes the stick from someone.\n1531,anetv_uYLYJABDubw,11359,We see two ladies arm wrestling. The right lady,We see two ladies arm wrestling.,The right lady,gold,twists her body shorts.,has their arms around their neck.,looks at the camera.,sits on the chair with her feet.\n1532,anetv_uYLYJABDubw,11360,The right lady wins the match. The left lady,The right lady wins the match.,The left lady,gold,realizes that the name is right.,touches the guy that's on a butt.,drops her head to the table.,has no arm left.\n1533,anetv_uYLYJABDubw,11361,The left lady drops her head to the table. The right lady,The left lady drops her head to the table.,The right lady,gold,talks as the lady speaks.,watches her slide again.,\"brushes her hair back, then shifts his thumb to the right, where someone's left hand rests on the peg.\",throws her arms in the air and talks to the camera.\n1534,lsmdc0020_Raising_Arizona-57499,14181,Someone lays a companionable hand on his shoulder. He,Someone lays a companionable hand on his shoulder.,He,gold,places his hand on a counter.,looks around as if to make sure they are not being overheard.,\"aims to the side, examines his fighter, and glares at him.\",\"dashes across the wooden walkway, picks up his duffel and fumbles for a table.\"\n1535,lsmdc0011_Gandhi-52727,8103,\"Featuring someone staring out to sea, his mind locked in reflection, and suddenly his head lifts, his eyes become alert, he is caught by some excitement which he weighs for a moment, then he stands, his manner suddenly tingling with optimism. Someone\",\"Featuring someone staring out to sea, his mind locked in reflection, and suddenly his head lifts, his eyes become alert, he is caught by some excitement which he weighs for a moment, then he stands, his manner suddenly tingling with optimism.\",Someone,gold,\"gets out of the hut, nearly 100 over his back and runs away.\",\"reluctantly looks up, transfixed, then stares out of a cluttered window and stares.\",is gaining on the man to push the three stone stones out towards the rubble.,\"stares at him, then at what someone seems to be looking at.\"\n1536,anetv_DrQgYA5_8VA,1430,The boat starts to kick up water in it's wake. The camera changes angles and we,The boat starts to kick up water in it's wake.,The camera changes angles and we,gold,see the rising outside person.,see one man water skiing behind the boat.,see it again right.,see the board in the water again.\n1537,anetv_DrQgYA5_8VA,8580,\"Two men stands on the bank of the river close to the boat. Suddenly, a man\",Two men stands on the bank of the river close to the boat.,\"Suddenly, a man\",gold,appears on the screen on the diving board doing the dance.,is pulled by the boat and does water ski.,leans on the railing and waves and then turns and talk.,turns slowly and snowboards down the hill.\n1538,anetv_DrQgYA5_8VA,1429,The boat begins to move slowly. The boat,The boat begins to move slowly.,The boat,gold,starts to kick up water in it's wake.,is moving very fast.,changes and moves on to exercise across the river.,pulls away from the water.\n1539,anetv_DrQgYA5_8VA,1428,Two men are standing behind a boat in a river. The boat,Two men are standing behind a boat in a river.,The boat,gold,sails away onto a sail.,rides up several sail boats on the water.,begins to move slowly.,is hooked over to the water.\n1540,anetv_DrQgYA5_8VA,8579,A person sails in a boat in the river. Two men,A person sails in a boat in the river.,Two men,gold,sled on the river behind the boat.,stands on the bank of the river close to the boat.,flip the sail and board the boat above water.,swing with the canoe while the person in on skis crashes into the water.\n1541,lsmdc0022_Reservoir_Dogs-59221,10098,\"We see someone, now known as someone, wearing a high school letterman jacket, enter the coffee shop, spot someone, and head his way. We\",\"We see someone, now known as someone, wearing a high school letterman jacket, enter the coffee shop, spot someone, and head his way.\",We,gold,see through the window of the restaurant someone slide into the booth to someone.,makes his way up to the house.,brow fills with fear.,someone turns to the barman.\n1542,lsmdc3060_SANCTUM-29241,4312,\"He steps off of the edge and falls face down. About halfway down, someone\",He steps off of the edge and falls face down.,\"About halfway down, someone\",gold,turns to the flicker of a troubled tower and cuts.,moves unsteadily into the shadows.,catches up with someone.,turns on the radio and flexes his jaw.\n1543,lsmdc3060_SANCTUM-29241,4315,\"At forward base, someone faces someone. Someone releases Virgil into the pool and the robot\",\"At forward base, someone faces someone.\",Someone releases Virgil into the pool and the robot,gold,escape through the gate of the railings.,sets off after the diver.,jumps to the floor and turns his stiff wand.,incinerates their masked comrade.\n1544,lsmdc3060_SANCTUM-29241,4316,Someone releases Virgil into the pool and the robot sets off after the diver. He,Someone releases Virgil into the pool and the robot sets off after the diver.,He,gold,pulls up the ladder and crawls underneath the bridge.,is changing his pajama pants.,watches them go underwater.,dives for another lift.\n1545,lsmdc3060_SANCTUM-29241,4313,\"About halfway down, someone catches up with someone. Surface, someone\",\"About halfway down, someone catches up with someone.\",\"Surface, someone\",gold,brings someone another cellphone.,leaps out onto a broomstick.,finds it parked behind someone.,gets a book from a shelf.\n1546,anetv_xaicDAewb6o,14815,A young girl washes dishes in the sink. The camera,A young girl washes dishes in the sink.,The camera,gold,zooms in on the woman's face.,zooms into the clean plate.,says the last of an empty drink.,pans around the area and the continuing cooking in a room.\n1547,anetv_xaicDAewb6o,14816,The camera zooms into the clean plate. The girl,The camera zooms into the clean plate.,The girl,gold,crush the corkscrew to a blue color.,continues to shower up while motioning for the camera to continues cleaning.,rubs the dryers hair.,drops the fork into the sink while washing it.\n1548,anetv_xaicDAewb6o,2384,A girl is standing in front of a kitchen sink. She,A girl is standing in front of a kitchen sink.,She,gold,is shown kitchen soap and water and putting it on a boogie board.,dips the dishes up and down in the soapy water.,is sitting on the table.,- shaven and a woman is talking in the kitchen.\n1549,anetv_ylo_0z8si1g,4237,The woman with black hair walked in the studio and the other woman in gray jacket introduced the other woman with curly hair. The two women,The woman with black hair walked in the studio and the other woman in gray jacket introduced the other woman with curly hair.,The two women,gold,began stretching and then began belly dancing.,started to hammer tape on the ground when he was done.,on the roof begin to complete the game and they begin to smile and the team is burnt off.,sit by each side drinking beer pong.\n1550,anetv_ylo_0z8si1g,17956,\"A blonde and a brunettes women enter a building and talk in the hallway. Then, the brunette and a lady\",A blonde and a brunettes women enter a building and talk in the hallway.,\"Then, the brunette and a lady\",gold,\"wears saris, then do belly dance while the blonde woman explains on front.\",stand on a bench as the man marches off.,dance doing that pretty early.,enter the room beyond the balcony.\n1551,anetv_ylo_0z8si1g,17957,\"Then, the brunette and a lady wears saris, then do belly dance while the blonde woman explains on front. Other women join the belly dance and move their hips, then the blonde\",\"Then, the brunette and a lady wears saris, then do belly dance while the blonde woman explains on front.\",\"Other women join the belly dance and move their hips, then the blonde\",gold,lady continues to dance where all of them crazy.,walks back in the direction.,person lies on the ground carbon - weary and smiling to the audience.,talks to the dancers.\n1552,anetv_ylo_0z8si1g,4236,Two women are talking in the hallway. The woman with black hair walked in the studio and the other woman in gray jacket,Two women are talking in the hallway.,The woman with black hair walked in the studio and the other woman in gray jacket,gold,can pass in front of an audience.,introduced the other woman with curly hair.,falling down and rolled up over bed.,is hanging and drying her hair.\n1553,anetv_SXZjg8ap1Uk,17897,A large group of cheerleaders are seen running through a hole and onto a stage. The group then,A large group of cheerleaders are seen running through a hole and onto a stage.,The group then,gold,begins performing with one another while lifting one another into the air.,begins jumping rope together.,girls continue throwing the ball all around the yard while the camera zooms around them and they watch.,performs several tricks with the horses.\n1554,anetv_SXZjg8ap1Uk,17898,The group then begins performing with one another while lifting one another into the air. The group,The group then begins performing with one another while lifting one another into the air.,The group,gold,continue to lift and jump around one another and end by walking off stage.,continues to play flips back and fourth while girls watch in the end.,begins moving around while the camera is still clapping.,rides around and stumbles over a tree with one another.\n1555,anetv_6ciZ58xAV9I,13441,The gymnast moves into a hand stand while walking with his hands. The gymnast,The gymnast moves into a hand stand while walking with his hands.,The gymnast,gold,runs away from the rope and performs backwards.,goes from the hand stand to his dismount.,is seen performing a gymnastics routine with spectators standing before the crowd.,dismounts the pommel board and does a handstand.\n1556,anetv_6ciZ58xAV9I,13439,The gymnast jumps onto the pommel horse and starts with scissor moves. The gymnast,The gymnast jumps onto the pommel horse and starts with scissor moves.,The gymnast,gold,moves into a spinning exercise while on the pommel horse.,is seen lifted the sheer off of the bars before lifting it in slow motion.,mounts on the mat.,\"shows up, performing while holding.\"\n1557,anetv_6ciZ58xAV9I,13438,A gymnast wearing a red and white uniform prepares to mount a pommel horse for his exercise. The gymnast,A gymnast wearing a red and white uniform prepares to mount a pommel horse for his exercise.,The gymnast,gold,\"is doing gymnastics, flipping and flipping until the somersault was used.\",does a belly flip and lands on the mat.,does a trick with his right hand then the front of the parallels.,jumps onto the pommel horse and starts with scissor moves.\n1558,anetv_6ciZ58xAV9I,13440,The gymnast moves into a spinning exercise while on the pommel horse. The gymnast,The gymnast moves into a spinning exercise while on the pommel horse.,The gymnast,gold,\"jumps, then kneel and lifts the flag on the mat.\",runs halfway down the track and the audience claps.,moves into a hand stand while walking with his hands.,moves back and forth while laughing to the gymnast.\n1559,anetv_FP0tI2Tjigs,6402,\"Beside him, a man is using a real vacuum on a rug. Together, they\",\"Beside him, a man is using a real vacuum on a rug.\",\"Together, they\",gold,are cleaning the house.,start to play the drums.,wipe them with a hose.,use a vacuum vacuum to clean.\n1560,anetv_FP0tI2Tjigs,7084,The camera pans to show another small boy playing with another toy vacuum. The camera,The camera pans to show another small boy playing with another toy vacuum.,The camera,gold,captures his movements as he does wakeboard up closer.,moves down while the boy the woman plays.,pans all around the back of the heads.,adjusts to show both the children together.\n1561,anetv_FP0tI2Tjigs,7083,An adult vacuums the floor beside him. The camera pans,An adult vacuums the floor beside him.,The camera pans,gold,to various people behind them.,to show another small boy playing with another toy vacuum.,to show the dog running under the cloth.,left to the left picks around their equipment.\n1562,anetv_FP0tI2Tjigs,7082,A small boy plays with a toy vacuum. An adult,A small boy plays with a toy vacuum.,An adult,gold,vacuums the floor beside him.,rolls onto the canvas.,walks behind the broom and make soft campfire.,shows the names of the canvas.\n1563,anetv_FP0tI2Tjigs,6401,\"A boy is using a pretend vaccuum cleaner inside a house. Beside him, a man\",A boy is using a pretend vaccuum cleaner inside a house.,\"Beside him, a man\",gold,is raking leaves off of the grass.,walks up to the house sketching a few more wooden slats.,takes the shot bottle from a brown tube in the sink.,is using a real vacuum on a rug.\n1564,anetv_ZLmoqxkCJL0,19305,\"She sits down and begins to part her hair and start braiding it, she slowly grabs more and more into her braid. She\",\"She sits down and begins to part her hair and start braiding it, she slowly grabs more and more into her braid.\",She,gold,catches up on her arm and starts talking to other camera.,braid her hair dry with and then begins brushing the other lady braiding hair.,ties the braid with a rubber band and then goes on to the next side.,grabs her hair up slowly and begins to properly braid her hair.\n1565,anetv_ZLmoqxkCJL0,9572,The Asian girl demonstrates how to braid her hair. The Asian girl then,The Asian girl demonstrates how to braid her hair.,The Asian girl then,gold,deflates and begins to brush her hair behind her head.,uses to focus on the baby.,poses with the finished braided pigtails.,lays the pinned face down on the floor.\n1566,anetv_ZLmoqxkCJL0,9573,The Asian girl then poses with the finished braided pigtails. The Asian model then,The Asian girl then poses with the finished braided pigtails.,The Asian model then,gold,applies it to her hair.,undoes the braids from her hair and poses without the braids.,begins cutting her hair by painting the strings as she speaks to the camera.,performs the baton style all style in the hula hoop.\n1567,anetv_ZLmoqxkCJL0,19304,An Asian woman is shown in different pictures wearing different outfits. She,An Asian woman is shown in different pictures wearing different outfits.,She,gold,is then shown again at the various location tips.,is shown running down a brick fence that is covered with snow.,is shown inside the gym.,\"sits down and begins to part her hair and start braiding it, she slowly grabs more and more into her braid.\"\n1568,anetv_ZLmoqxkCJL0,19306,She ties the braid with a rubber band and then goes on to the next side. Then she,She ties the braid with a rubber band and then goes on to the next side.,Then she,gold,walks down to the next bit and begins doing split and still talking.,demonstrates how to make dirt bicycles afterwards.,starts to undo both braids and shows how her hair is nice a wavy.,takes off the paper to show how the key should move.\n1569,anetv_ZLmoqxkCJL0,9571,A series of still photos of before and after images of an Asian girl posing in different outfits. The Asian girl,A series of still photos of before and after images of an Asian girl posing in different outfits.,The Asian girl,gold,appears back and then walks back on his phone and begins to clap and crash.,moves further from the jump and smiles at the camera.,stands on the quadrangle and then turns around and shows her shoes to the fashion.,demonstrates how to braid her hair.\n1570,lsmdc1034_Super_8-8071,11749,\"They repack them in crates, which are, in turn, loaded onto military lorries. Someone's dad someone\",\"They repack them in crates, which are, in turn, loaded onto military lorries.\",Someone's dad someone,gold,follows someone as the first pig smashes into the cab.,\"keeps smashing, clutching a stuffed wad of cash.\",is there with someone.,is ushered down the slanted smoke carrying boards.\n1571,lsmdc1034_Super_8-8071,11748,\"Someone looks down with a troubled expression. At the crash site, Air Force personnel\",Someone looks down with a troubled expression.,\"At the crash site, Air Force personnel\",gold,look into his book.,follow them down the corridor.,\"magically fill the mouthpiece of her red, black eye.\",are busy clearing up the cargo of strange white cubes.\n1572,anetv_azCsE98qwus,328,\"She puts on a show on a stage, going back and forth fluidly. The woman\",\"She puts on a show on a stage, going back and forth fluidly.\",The woman,gold,runs out to the low bar where she throws it down an alley and stops.,\"turns in several different directions, providing different actions before standing straight and still as her finale.\",plays with the clients hair and shows more photos with photos.,is wearing leotard and is doing a synchronized arts on the bars.\n1573,anetv_azCsE98qwus,327,\"A woman wearing a red outfit raises her hands and feet, alternating them in a slow and methodical fashion. She\",\"A woman wearing a red outfit raises her hands and feet, alternating them in a slow and methodical fashion.\",She,gold,whirls the knife and the backup dancers approach and twirl her around.,stands on the side.,finishes then begins doing the aerobics routine with a pink lamp.,\"puts on a show on a stage, going back and forth fluidly.\"\n1574,lsmdc1015_27_Dresses-79602,11028,She kicks off the wrong shoes. The cabby,She kicks off the wrong shoes.,The cabby,gold,tries to walk past.,throws her the right ones.,speeds out of the apartment as someone walks.,takes out the moment of injury.\n1575,lsmdc1015_27_Dresses-79602,11030,\"She joins in some choreographed dancing. Later on, she\",She joins in some choreographed dancing.,\"Later on, she\",gold,points out in the hazy studio.,catches the sari in the cab door.,puts her finger again to a double panel.,\"sits in her hotel room, with a troubled gash in her eyes.\"\n1576,lsmdc1015_27_Dresses-79602,11029,The cabby throws her the right ones. She,The cabby throws her the right ones.,She,gold,taps the glass's laptop.,joins in some choreographed dancing.,waves to someone and leads him into the oven.,falls on his belly as he stares at her friend.\n1577,lsmdc1015_27_Dresses-79602,11032,\"She gets back into the swing of the choreography, the Jewish Indian party. Then\",\"She gets back into the swing of the choreography, the Jewish Indian party.\",Then,gold,wheels and her friend are blindfolded.,\", on the ground next to him, he cranes her neck as if to longbourn.\",rushes in disarray into the other wedding just as the bride and groom are stuffing cake into each other's mouths.,\"finds someone sitting glumly in her car, and closes her sketchbook with an awestruck smile.\"\n1578,lsmdc1015_27_Dresses-79602,11031,She helps both brides with their dresses as they sit on their toilets. She,She helps both brides with their dresses as they sit on their toilets.,She,gold,emerges from the ship as an elegant blonde car arrives.,\"gets back into the swing of the choreography, the jewish indian party.\",\"runs her fingers around his coat, cutting them tightly.\",\"lifts his head as he reads, they.\"\n1579,anetv_2u1gdf_53C0,16129,A person in a protective white suit and goggles sprays a surface with purple paint using a spray gun in a room with white walls and floors. The person then,A person in a protective white suit and goggles sprays a surface with purple paint using a spray gun in a room with white walls and floors.,The person then,gold,spins the surface around on a spinning table and paints the sides.,uses oxygen towards the front of the car and rinses the bathroom in black with white stripes.,\"uses a pressure faucet, the water by the hands with the lenses.\",uses the iron again on grey ribbon and get it in place.\n1580,anetv_2u1gdf_53C0,16130,The person then spins the surface around on a spinning table and paints the sides. The finishes matte product,The person then spins the surface around on a spinning table and paints the sides.,The finishes matte product,gold,continues to show the product in the end piece of paper and pins it down.,ends with a pile of fluid and adds to the foot of the material.,is shown and all this remark are completed by the closing screen.,\"is shown, dried, in the plain white room where the painting happened.\"\n1581,anetv_tMTvOaUYNeg,19201,Two children pick up leaves off a lawn and deposit them into a bag while a man stands nearby. The man,Two children pick up leaves off a lawn and deposit them into a bag while a man stands nearby.,The man,gold,finishes and retrieves a teddy bear while sitting in front of the boy.,begins to add the ingredients.,picks up a rake.,starts to put the whole tree up on the tree.\n1582,anetv_tMTvOaUYNeg,7274,One adult stands with two children on a lawn amidst many leaves with a black truck in the background. The boy puts leaves in the brown bag and the girl,One adult stands with two children on a lawn amidst many leaves with a black truck in the background.,The boy puts leaves in the brown bag and the girl,gold,walks up the sidewalk.,rocks at the pinata.,runs down the hill.,picks the leaves up.\n1583,anetv_tMTvOaUYNeg,7273,One adult and two small children work together to put leaves on a yard into a paper bag. One adult,One adult and two small children work together to put leaves on a yard into a paper bag.,One adult,gold,is in the other and is tossing the ball down to the dog on the ground.,gets back and plays the pinata but both stops.,grabs the rubber case and places it to the tree trunk.,stands with two children on a lawn amidst many leaves with a black truck in the background.\n1584,anetv_3LrLgh2rlAM,7857,He lifts the barbells over his head. He then,He lifts the barbells over his head.,He then,gold,bends down and ends up two head lifts.,clasps it to a small disc.,\"turns and gets closely at his knees, his head and legs bent as he raises the weights.\",drops the barbells onto the ground.\n1585,anetv_3LrLgh2rlAM,7855,A man wearing black is in a gym. He,A man wearing black is in a gym.,He,gold,is playing a guitar while attached to his guitar.,picks up some heavy barbells.,is doing tricks on an elliptical ski lift.,are being interviewed and hockey player demonstrating how he play pong between two other teams.\n1586,anetv_3LrLgh2rlAM,7856,He picks up some heavy barbells. He,He picks up some heavy barbells.,He,gold,indicates the army of hostages of war on the bar at the back of a boom.,flinches as agent someone aims his pistol in the downed pack.,is sitting in a pile outside sharpening the board of a large stone table.,lifts the barbells over his head.\n1587,anetv_zCcUwVzaEac,5200,A man sits on a track and talks as he is interviewed. Two men in red walk up the bleachers and one,A man sits on a track and talks as he is interviewed.,Two men in red walk up the bleachers and one,gold,stops to talk to someone.,hands him a drink.,leaps onto a roof.,walks through the courtyard of a large field and greets two more at the rope waist.\n1588,anetv_zCcUwVzaEac,5201,Two men in red walk up the bleachers and one stops to talk to someone. A group of women,Two men in red walk up the bleachers and one stops to talk to someone.,A group of women,gold,are playing beer pong at a club room.,walk behind the man being interviewer.,are sitting next to them watching.,are riding bumper cars in a park.\n1589,anetv_zCcUwVzaEac,5199,We see an opening title screen. A man,We see an opening title screen.,A man,gold,shows ski supplies using a tool while talking.,puts tokens on a box in an adjacent gym.,sits on a track and talks as he is interviewed.,uses a shaver to hit his instructions.\n1590,anetv_zCcUwVzaEac,5202,A group of women walk behind the man being interviewer. We then,A group of women walk behind the man being interviewer.,We then,gold,see the man in a tennis field in front of a barber.,see a woman putting a silver paper on the wall.,see the people watching them move the whole time.,see the ending title screen.\n1591,lsmdc1029_Pride_And_Prejudice_Disk_One-83900,326,\"Someone is holding court in her drawing room. Sitting on an ornate, throne - like chair, she\",Someone is holding court in her drawing room.,\"Sitting on an ornate, throne - like chair, she\",gold,\"looks at someone, who's squashed between people on a sofa.\",strides slowly around the room and begin to dance alongside it.,\"stares into the distance and faces someone, stops lit by the kiss.\",\"moves around to several rows of seats, laughing to herself.\"\n1592,lsmdc3050_MR_POPPERS_PENGUINS-24477,721,As the family heads down to them. Groups of penguins,As the family heads down to them.,Groups of penguins,gold,backstage appear to bow inside frame as onlookers members sing and float.,\"gather on the street, waiting for them to mount their positions.\",\"run to a lower - class platform underneath the x - rays, forcefully on their breath, threateningly toast by the violent images.\",greet the new arrivals.\n1593,lsmdc3050_MR_POPPERS_PENGUINS-24477,718,They walk a snowy arctic ridge. The six penguins and two babies,They walk a snowy arctic ridge.,The six penguins and two babies,gold,walk in single file behind them.,fish fly on the waters below.,are wearing deploy equestrian gear.,are on a river crash fast a small waterfall full of yellow water.\n1594,lsmdc3050_MR_POPPERS_PENGUINS-24477,719,\"The six penguins and two babies walk in single file behind them. Below the ridge, hundreds of penguins\",The six penguins and two babies walk in single file behind them.,\"Below the ridge, hundreds of penguins\",gold,mill around a snow - packed shore.,swarm along the building.,\"walk along the track, canoeing through a thick pole.\",swarm a parked building.\n1595,lsmdc3050_MR_POPPERS_PENGUINS-24477,724,\"The lone penguin flaps her flippers, then hangs her head. Someone\",\"The lone penguin flaps her flippers, then hangs her head.\",Someone,gold,grabs his hand and holds him aside.,snatches someone 'lifeboat and sets her on the platform.,heads over to the reluctant penguin and crouches in front of her.,stares at the bear.\n1596,lsmdc3050_MR_POPPERS_PENGUINS-24477,723,Someone sees Captain waddling off to the side. The lone penguin,Someone sees Captain waddling off to the side.,The lone penguin,gold,runs the camel around in a knitted war hat.,\"flaps her flippers, then hangs her head.\",lingers in a big night distance.,runs to the edge and crumples down to another sprint.\n1597,lsmdc3050_MR_POPPERS_PENGUINS-24477,720,\"Below the ridge, hundreds of penguins mill around a snow - packed shore. As the family\",\"Below the ridge, hundreds of penguins mill around a snow - packed shore.\",As the family,gold,struggle they fight over puppies.,\"emerges from the ruined cauldron, snowy stands a few feet away in a waiting until it passes.\",pass behind a crack on the stone house.,heads down to them.\n1598,lsmdc0026_The_Big_Fish-62344,13693,\"He changes out of his grubby shirt into a new one, just out of the package. It's the mid - 1960's, but by the conservative dress of the passing students, it\",\"He changes out of his grubby shirt into a new one, just out of the package.\",\"It's the mid - 1960's, but by the conservative dress of the passing students, it\",gold,\"shows its guilt and dignified features, creating a towering evidence.\",'s someone and his friends.,looks like normal day is cracked and refined.,could be any era.\n1599,lsmdc0026_The_Big_Fish-62344,13694,Someone stands with a bouquet of daffodils in front of a half - open door. Through the crack we,Someone stands with a bouquet of daffodils in front of a half - open door.,Through the crack we,gold,\"can see the edge of a young woman, talking in hushed tones with another girl we can't see.\",can see someone carry a costume into tall golden cups positioned at the far end.,see a solemn and squad sign near the cross with someone's letter inside.,see french shards of someone's glass.\n1600,lsmdc0026_The_Big_Fish-62344,13691,Someone sits down and scratches his ear with his foot. We,Someone sits down and scratches his ear with his foot.,We,gold,panic in his face.,stand up and dance.,\"descend on the main quad, to find someone dunking his head in the fountain.\",cocking a rifle in her hand.\n1601,lsmdc0026_The_Big_Fish-62344,13692,\"We descend on the main quad, to find someone dunking his head in the fountain. He\",\"We descend on the main quad, to find someone dunking his head in the fountain.\",He,gold,watches the boy leave and runs around the corner.,\"changes out of his grubby shirt into a new one, just out of the package.\",parades it out of his hands and wraps his hand around someone's.,passes the family in someone's tunnel.\n1602,lsmdc0026_The_Big_Fish-62344,13696,\"The door opens to reveal the woman of someone's dreams, someone. She\",\"The door opens to reveal the woman of someone's dreams, someone.\",She,gold,appears to take the alfa from her.,turns toward his wife.,\"is effortlessly beautiful, pure and simple as sunlight.\",\"is decorated for magic, but a graceful rabbit is revealed.\"\n1603,lsmdc0026_The_Big_Fish-62344,13697,\"She is effortlessly beautiful, pure and simple as sunlight. He\",\"She is effortlessly beautiful, pure and simple as sunlight.\",He,gold,\"stands right up against the sink with a light, half - eaten food on her face.\",moves her to her.,can't believe he is finally reached her.,smiles to herself and leans back in her seat.\n1604,anetv_R8vqzwGs6aE,11859,More people are shown shooting the bow and arrow as well as the camera looking around targets. One woman,More people are shown shooting the bow and arrow as well as the camera looking around targets.,One woman,gold,throws the object back and fourth and ends with shot steeping in motion.,continues using her bow and walks over and grabs them.,jumps up then throws darts while speaking to the camera.,holds up the sticks as a man in a ballerina uniform sits on a line.\n1605,anetv_R8vqzwGs6aE,11858,A camera pans around target and leads into a woman shooting a bow and arrow. More people,A camera pans around target and leads into a woman shooting a bow and arrow.,More people,gold,are seen swimming while standing around one another and laughing in reaction.,are shown shooting the bow and arrow as well as the camera looking around targets.,walk down a field as well as a woman walking behind her and arrows from the bow onto the target.,are seen spinning around and throwing darts at a target.\n1606,anetv_R8vqzwGs6aE,1268,More women are show shooting a bow and arrow off into the distance towards targets. The same woman practices again several more times and the camera,More women are show shooting a bow and arrow off into the distance towards targets.,The same woman practices again several more times and the camera,gold,shows the results of the discus setting.,zooms in on the game from the woman.,pans to one more dirt.,follows her to grab her arrows.\n1607,anetv_R8vqzwGs6aE,1267,A camera pans around targets sitting in a field followed by a woman shooting a bow and arrow. More women,A camera pans around targets sitting in a field followed by a woman shooting a bow and arrow.,More women,gold,bend into several areas and look sideways continuously and show video arrows from the bow and arrows as they fight and navigate a distance.,are show shooting a bow and arrow off into the distance towards targets.,throw into the shot and arrow into the water followed by more clips of people shooting arrows.,speak to the camera with close ups of the men running from shuffleboard around and holding the bow and arrow.\n1608,lsmdc3039_JACK_AND_JILL-2521,16316,\"With an emotional nod, someone heads off. Someone\",\"With an emotional nod, someone heads off.\",Someone,gold,approaches as the roadster tugs at a railing.,pulls off his jacket and grabs the mic.,notes her crestfallen look.,sees someone walking into frame next to someone.\n1609,lsmdc3039_JACK_AND_JILL-2521,16315,Someone halfheartedly helps him out. Someone,Someone halfheartedly helps him out.,Someone,gold,looks over his shoulder.,pauses near his window.,blows out the final candle.,waves from his shoes.\n1610,anetv_ElXkXNbsZac,17470,The man gets down from the ladder and unrolls the wallpaper to the floor. The man,The man gets down from the ladder and unrolls the wallpaper to the floor.,The man,gold,sharpens the object on the floor to clean a blue mat off.,shows the shaver performance inside the room and then smooths the cream onto his face.,continues to smooth out the lower section of the wallpaper with a brush down to the floorboard.,demonstrates how to use the iron tiles to apply portions of the tiles on the floor.\n1611,anetv_ElXkXNbsZac,17469,The painter uses a spatula and blade to trim a straight line on the wallpapers edge along the ceiling. The man,The painter uses a spatula and blade to trim a straight line on the wallpapers edge along the ceiling.,The man,gold,gets down from the ladder and unrolls the wallpaper to the floor.,moves the hooks from the board.,removes a toy on how to trim the perimeter wall to show paint.,adds the newer extend to the window and holds it up to clean the ground.\n1612,anetv_ElXkXNbsZac,17472,The man trims the lower edge of the wall paper with a blade against the floor board. The man,The man trims the lower edge of the wall paper with a blade against the floor board.,The man,gold,continues to hold up the tile on the rise and swallows at the end of the reaching tips.,trims the corner of the wall paper from the ceiling down the the floor.,\"is squatting on the parallel bars also in profile, covered moves and cushions under the floor.\",put down the up of the dough and cuts the wall paper and shining his left shoe.\n1613,anetv_ElXkXNbsZac,17467,A man in white apron and pants stands on a ladder holding a pencil and wallpaper. The man,A man in white apron and pants stands on a ladder holding a pencil and wallpaper.,The man,gold,holds up the wet cloth and wipes off the hem of his shirt.,applies a strip of wallpaper to a wall and smooths with his hand.,picks up the lens and begins placing tiles on the floor.,then takes a spatula and varnish the strip.\n1614,anetv_ElXkXNbsZac,17468,The man uses a rag and then a brush to smooth out thee wall paper to the wall surface. The painter,The man uses a rag and then a brush to smooth out thee wall paper to the wall surface.,The painter,gold,uses a spatula and blade to trim a straight line on the wallpapers edge along the ceiling.,shows a prep sling mirror.,uses a tool to paint the rocks as he paint and write on the canvas.,\"pushes forward, hanging his left hand on the guy.\"\n1615,anetv_ElXkXNbsZac,17471,The man continues to smooth out the lower section of the wallpaper with a brush down to the floorboard. The man,The man continues to smooth out the lower section of the wallpaper with a brush down to the floorboard.,The man,gold,\"resumes peeling the towel, and the man rinses the shirt off.\",trims the lower edge of the wall paper with a blade against the floor board.,\"stops putting tiles on the floor, covers the sink paper with the vacuum.\",\"puts on the white vacuum on the tool, uses it to clean the window, and tries to clean the wood.\"\n1616,anetv_avxSMcGBdG8,18259,\"A series of croquet teams are shown, with some of them wearing costumes. The group of people in witch costumes\",\"A series of croquet teams are shown, with some of them wearing costumes.\",The group of people in witch costumes,gold,are playing a game of volley ball against one another.,\"talk to each other with a golf club and making shots, practicing baseball, others on a white stage.\",are doing this tricks on the other side.,is shown once more.\n1617,anetv_avxSMcGBdG8,18257,\"Individuals play croquet, with the camera only showing their lower legs an the balls and mallets. A group of people in witch costumes\",\"Individuals play croquet, with the camera only showing their lower legs an the balls and mallets.\",A group of people in witch costumes,gold,are walking nearby as they try to stand outdoors through the playground.,play tug of war while the others fix play on the sides of the kids.,stand together as one talks.,walk past two basketball hoops.\n1618,anetv_avxSMcGBdG8,18258,The group of people in witch costumes are shown again. A series of croquet teams,The group of people in witch costumes are shown again.,A series of croquet teams,gold,play a game of volleyball.,appears on the end of a fence in a gloomy environment.,are shown playing a game of tennis.,\"are shown, with some of them wearing costumes.\"\n1619,anetv_9BR5LChbBLQ,14554,There's a black and red colored race car in a parking lot. A man wearing beige shorts,There's a black and red colored race car in a parking lot.,A man wearing beige shorts,gold,steps inside a field in front of building onto the narrow road.,begins cleaning the black race car with a cloth and a spray.,\"kneeling down, slowing down he get his blades and then quickly emerges and does flips down the sidewalk.\",sits in the wall next to a store building.\n1620,anetv_9BR5LChbBLQ,14555,A man wearing beige shorts begins cleaning the black race car with a cloth and a spray. He,A man wearing beige shorts begins cleaning the black race car with a cloth and a spray.,He,gold,man cleans the bottom of a skateboard and a shadow of a man.,wipes the car down to make it shiny and clean.,pours a white drips of dust on the fence.,\"breaks the object, hiding a boot.\"\n1621,anetv_9BR5LChbBLQ,14557,\"Both the cars are parked in the parking lot, looking clean and sparkly after a car wash. Information about Hand Job, mobile waterless car wash\",\"Both the cars are parked in the parking lot, looking clean and sparkly after a car wash.\",\"Information about Hand Job, mobile waterless car wash\",gold,is displayed.,is shown on the screen.,there is shown on the screen.,makes a very black screen for the company name.\n1622,anetv_9BR5LChbBLQ,14556,He wipes the car down to make it shiny and clean. Both the cars,He wipes the car down to make it shiny and clean.,Both the cars,gold,have pools of mirror.,are at the front of the hole.,look with him and he looks at the workshop window.,\"are parked in the parking lot, looking clean and sparkly after a car wash.\"\n1623,anetv_zTnRo6yABtg,942,\"He throws a frisbee, and the dog catches it. He\",\"He throws a frisbee, and the dog catches it.\",He,gold,offers a broom to catch it.,uses many frisbees to catch the frisbee.,throws him onto the grass and several more frisbees.,does several tricks with the frisbees and the dog.\n1624,anetv_QePg4GKh3rw,10783,She jumps onto a set of uneven bars and performs a gymnastics routine consisting on flips and tricks. She,She jumps onto a set of uneven bars and performs a gymnastics routine consisting on flips and tricks.,She,gold,does a routine on the mat two times and it's all the town twice.,perform by ropes various tricks as she is twirling and twirling around.,throw him across a gym over a variety of college environments.,jumps off the bars in the end and waves her arms in the air while her coach claps for her.\n1625,anetv_QePg4GKh3rw,10782,A gymnast is seen standing ready and waves one arm into the air. She,A gymnast is seen standing ready and waves one arm into the air.,She,gold,is performing hip movements on the beach.,continues performing several tricks while falling and flipping tricks into it.,jumps out of the beam while jumping into a pool and walking around the beam.,jumps onto a set of uneven bars and performs a gymnastics routine consisting on flips and tricks.\n1626,anetv_iH8eHkIHrg4,17831,\"White board catches another wave as the blue board opts out, more waves taken by white board are shown. The surfer on the blue board\",\"White board catches another wave as the blue board opts out, more waves taken by white board are shown.\",The surfer on the blue board,gold,explodes in a surf board.,catches a few waves.,continues to rear the board into the air.,hits the camera while the camera pans around him when several large waves with the sheer amazement fades the wave.\n1627,anetv_iH8eHkIHrg4,17832,The surfer on the blue board catches a few waves. The white board surfer,The surfer on the blue board catches a few waves.,The white board surfer,gold,is added to the water.,continues to wait by of the boat.,goes flying by the ocean.,\"is shown gliding across more waves, clearly like an expert.\"\n1628,lsmdc3037_IRON_MAN2-16528,11572,He places the tray and silverware on a counter by the jet's windows. He,He places the tray and silverware on a counter by the jet's windows.,He,gold,\"uncovers the tray, revealing an omelet.\",opens the door to the bathroom.,pops someone in the mouth with the knife in his hand.,stomps from the crest with his wine.\n1629,anetv_fjGqWAxenL0,17418,The person stops welding the metal on the floor. The person,The person stops welding the metal on the floor.,The person,gold,moves the welding tool behind.,pulls the wood bag off to the ground and pours in.,inserts the plaster in the turret.,puts his arm in the air.\n1630,anetv_fjGqWAxenL0,17417,A person is welding a metal outside. The person,A person is welding a metal outside.,The person,gold,peels off his arm and returns.,uses a wooden tool to clean a car.,is welding a metal piece of metal using a metal device.,stops welding the metal on the floor.\n1631,anetv_avJNxcysMCk,12319,Many runners start trickling in and slowing down stopping once they get to that point. There are many runners and some people on the sides but the stands,Many runners start trickling in and slowing down stopping once they get to that point.,There are many runners and some people on the sides but the stands,gold,line up just dancing for a few kids to wash cars.,can be seen from the cruiser and taking off the yellow discuss.,are completely empty on that side.,continues doing acrobatic stunts over as throw as a man on the sides does some tricks and gets to parting the traffic.\n1632,anetv_avJNxcysMCk,12318,\"Many people are gathered at the finish line of a marathon, waiting for the runners to come in. Many runners\",\"Many people are gathered at the finish line of a marathon, waiting for the runners to come in.\",Many runners,gold,\"are standing feet across the pool, people all ready to jump in the dirt many run from it.\",are shown in car during the event.,\"are doing many tricks, and doing the same as rain down.\",start trickling in and slowing down stopping once they get to that point.\n1633,anetv_avJNxcysMCk,12320,There are many runners and some people on the sides but the stands are completely empty on that side. More and more men,There are many runners and some people on the sides but the stands are completely empty on that side.,More and more men,gold,keep running in little by little.,are shown running through people on stilts as they are drumming on the water.,\"begin doing tricks, taking up the track to retreat from the distance.\",are shown talking about how they should stand.\n1634,anetv_sjpWwjzCbrw,11816,A health professional washers her hands with soap in a sink. The woman,A health professional washers her hands with soap in a sink.,The woman,gold,put soap across her legs and begins to dry her nose.,scrubs between the fingers thoroughly.,holds a sponge and apply sunscreen to her face.,begins spinning in circles.\n1635,anetv_sjpWwjzCbrw,11817,The woman scrubs between the fingers thoroughly. The hands,The woman scrubs between the fingers thoroughly.,The hands,gold,use different scissors to tighten on them.,are tied together and then wrap it around each one.,are dried with a paper towel in between the fingers thoroughly.,begin dancing up scissors through the girl's hair.\n1636,anetv_sjpWwjzCbrw,11818,The hands are dried with a paper towel in between the fingers thoroughly. The woman,The hands are dried with a paper towel in between the fingers thoroughly.,The woman,gold,throws the paper towel in a designated waste bin.,places a right side on the gift bag that is opened and the sacks.,rinse and wipe them down with plastic bags.,slides the bottle into the mud and folds her back and then post them at the floor paper.\n1637,anetv_sjpWwjzCbrw,11819,The woman throws the paper towel in a designated waste bin. The medical professional,The woman throws the paper towel in a designated waste bin.,The medical professional,gold,shows her makeup mirror.,shuts off the water faucet using her elbow and also the paper towel.,puts a white kitten on top of another bell.,demonstrates how to use the waxes and how to pick dry it.\n1638,anetv_qHU7T2LBToI,1960,A cheerleading team performs on a blue mat. They,A cheerleading team performs on a blue mat.,They,gold,are in a green track doing some jump ropes in a tatty sports game.,dance and tumble during their routine.,do several jumps off the bars in a circle.,play a competition by batons outside the stadium.\n1639,anetv_9cD-Z6Aw7bE,13796,We then see replay from their run. A lady,We then see replay from their run.,A lady,gold,stops dancing and punches her stick.,jumps off the side of a lady with colorful flowers on her way back.,swings her arms as she finishes.,comes down the stairs and dismounts a few feet.\n1640,anetv_9cD-Z6Aw7bE,13799,We see a 4 ladies throwing the hammer. A lady,We see a 4 ladies throwing the hammer.,A lady,gold,\"stands up quickly, applying the bar to a clear net.\",hugs someone after her thrown.,begins to stand and talks with her.,peels gloves from a pink cloth knocking the lady close.\n1641,anetv_9cD-Z6Aw7bE,13800,A lady hugs someone after her thrown. A lady,A lady hugs someone after her thrown.,A lady,gold,spins a lady on his head as they talk.,watches her piece of bike and snaps parts to show it.,hugs a woman and a man.,talks as the lady attempts to cover her lips.\n1642,anetv_9cD-Z6Aw7bE,13795,We see young ladies hug each other on a track. We then,We see young ladies hug each other on a track.,We then,gold,see a javelin thrower pin her park.,see replay from their run.,go up the hills on the hills and exit.,see a loser doing fight.\n1643,anetv_EfJO4zg7bYE,10473,He picks up a container of polish and talks about the surface of the counter. He,He picks up a container of polish and talks about the surface of the counter.,He,gold,pours the mixture into plate with a glass of red wine.,\"rubs it down with polish and the two rags, then dusts it to a shine.\",picks it up and drops something into the palm tank.,holds it up in front of him and presses it to his ear.\n1644,anetv_EfJO4zg7bYE,10472,A man is standing beside a counter while holding a rag. He,A man is standing beside a counter while holding a rag.,He,gold,picks up a container of polish and talks about the surface of the counter.,turns towards the other side and looks up at the screen.,demonstrates how to sharpen a tool with a tool.,rubs the knife onto the metal.\n1645,lsmdc1059_The_devil_wears_prada-98684,17429,\"Someone's eyes travel down someone's body, taking in her plaid skirt, black tights, and fixing on her sensible, black flat shoes. Someone\",\"Someone's eyes travel down someone's body, taking in her plaid skirt, black tights, and fixing on her sensible, black flat shoes.\",Someone,gold,\"descends and she gazes in a mirror, squinting.\",is on the floor wearing a long green dress.,scurries back to her desk and quickly dons the black stilettos that someone brought her.,\"wears jeans and a black floral dress with a petticoat and white floral blouse, fashionable green and new dresses.\"\n1646,anetv_QjaEDlh805g,3436,An unseen person begins spraying a persons hair with black bottle and a red nozzle. The person then,An unseen person begins spraying a persons hair with black bottle and a red nozzle.,The person then,gold,begins combing and brushing the persons hair.,grabs a spray blower followed by lighting the rug on the floor.,grabs the machine to the bottom of the motorcycle adjacent to lip level.,wipes fingerprints before looking out onto the screen.\n1647,anetv_QjaEDlh805g,3437,The person then begins combing and brushing the persons hair. The unseen stylist then,The person then begins combing and brushing the persons hair.,The unseen stylist then,gold,puts a flower in the person's hair and lays all the tools used to comb the hair on a black piece of fabric.,\"pierces a man properly holding the comb, then steps towards the pinata, turns around and peeks again in the bathroom.\",wipes over a dog while talking to the camera.,helps the hair up.\n1648,anetv_QjaEDlh805g,3435,\"A person combs and brushes another persons hair in an indoor living room setting using a comb, and some styling products. An unseen person\",\"A person combs and brushes another persons hair in an indoor living room setting using a comb, and some styling products.\",An unseen person,gold,goes in front of a mirror and two girls laughing with the dog.,holds up his leg and starts shaving the man's hair back.,begins spraying a persons hair with black bottle and a red nozzle.,pushes into the child when the large white screen fades.\n1649,anetv_QjaEDlh805g,12372,Buttons are placed one by one on a table. a woman hair,Buttons are placed one by one on a table.,a woman hair,gold,is talking and showing off her snowed.,is being sprayed by another woman.,dries on a glass of water.,knocks the bottle downwards.\n1650,anetv_dcsQy55tjw4,16010,She holds a ball behind her ear. She,She holds a ball behind her ear.,She,gold,takes another hair out of her mouth.,spins around and launches the ball onto the field.,continues dancing while the woman walks in front of her.,goes to the dart.\n1651,anetv_dcsQy55tjw4,1456,A young athlete is shown standing ready on a platform holding a ball in her hands. She,A young athlete is shown standing ready on a platform holding a ball in her hands.,She,gold,\"stands, mixing the ball on various times.\",spins around and leads into another action of the woman and a goal shortly before and by a man running before the court breaking.,spins herself around as well as his performance and ends with a athlete who cheered against her.,throws the ball and another girl step up and throws the ball.\n1652,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2523,Someone leans out of a stone archway. She,Someone leans out of a stone archway.,She,gold,is handing flashlight to picture to the chair.,looks out anxiously at the menacing clouds.,\"follows, someone casually amongst his peers.\",sleepily approaches at a door.\n1653,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2501,Someone returns to the basin. He,Someone returns to the basin.,He,gold,the soldier enters a pantry.,checks his ear messages.,picks up a locket and chain lying at the bottom.,strolls around the counter and crouches.\n1654,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2522,Someone stands guard on the school battlements. Someone,Someone stands guard on the school battlements.,Someone,gold,leans out of a stone archway.,sets his coat on a rock and knocks down a handful of black fragments.,\"rises, then follows someone down the stair coming to the halfway staircase.\",leads them cautiously as they go.\n1655,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2505,\"Someone clenches his teeth, grips the wand with the hand he is using as support, and leans forward to dip the shell into the lake. He\",\"Someone clenches his teeth, grips the wand with the hand he is using as support, and leans forward to dip the shell into the lake.\",He,gold,bends it over a rod and moves the chain over the curved whip.,turns to maneuver the key.,walks up behind someone and sits up.,fills it to the brim.\n1656,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2494,Someone steps back from the basin and sits down with difficulty. Someone,Someone steps back from the basin and sits down with difficulty.,Someone,gold,reaches for her ignition.,walks along the coast with crowds lined up in the river.,\"searches uneasily, then peeks inside.\",covers his ear with his blackened right hand.\n1657,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2506,The water seethes all around the island. The light brightens and someone,The water seethes all around the island.,The light brightens and someone,gold,continues to tell himself how to respond.,sees naked emaciated corpses clambering out of the water towards him.,tells someone's hand to turn.,notices a sitting painting.\n1658,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2511,He is dragged under water. A corpse,He is dragged under water.,A corpse,gold,resumes safety by banging his spear against a car for support.,\"swoops down, using a wave sheets it explode around them.\",wraps its arms around someone from behind.,drops down a long grey track and stumble over a stone surface.\n1659,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2502,Someone scoops desperately but the shell would n't fill. Someone,Someone scoops desperately but the shell would n't fill.,Someone,gold,fires his gun in one - finger's modified pipe.,turns and looks at the lake.,\"kicks someone, killing him.\",is drawn up as grass hit the air.\n1660,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2510,Scores of corpses swarm onto the tiny island and attack someone. He,Scores of corpses swarm onto the tiny island and attack someone.,He,gold,is dragged under water.,blocks to burn through the concrete.,wields engines and a jeep.,stick straight after him.\n1661,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2504,\"He crumbles down over the rocks towards the water. Holding onto a rock for support, he\",He crumbles down over the rocks towards the water.,\"Holding onto a rock for support, he\",gold,reaches down with the shell.,turns the side of the tract.,races toward the water patch.,goes off and over to a low pole cage.\n1662,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2525,\"Someone looks out into the storm. In the Room of Requirement, someone\",Someone looks out into the storm.,\"In the Room of Requirement, someone\",gold,helps cradle his daughter.,sits alone on the hot floor of the open water and suddenly something steps back into the house.,pulls the heavy cloth from the cabinet.,\"sits there in bed, staring sternly at his sweaty friend.\"\n1663,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2517,Someone comes back onto the island. Someone,Someone comes back onto the island.,Someone,gold,takes out a large pair of scissors.,holds it out with one hand.,comes over and gets the door.,helps someone back to the boat.\n1664,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2524,She looks out anxiously at the menacing clouds. Someone,She looks out anxiously at the menacing clouds.,Someone,gold,fires the dragon while eating slack.,looks out into the storm.,tries to talk her eyes.,\"looks up at someone, who stares in awe.\"\n1665,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2520,Someone leads a group through the courtyard to the room at the rear. She,Someone leads a group through the courtyard to the room at the rear.,She,gold,searches the building's lobby.,leaves the bedroom and comes to a chamber with the statue of the man.,opens the door of the embossed cabinet.,reaches into the hole.\n1666,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2514,\"Above the surface, someone sees flames, balls of fire streak through the water. The creature releases someone and he\",\"Above the surface, someone sees flames, balls of fire streak through the water.\",The creature releases someone and he,gold,sees himself around its small brown window.,surfaces inside a circle of fire.,drops into another railcar.,takes someone's weapon on the ceiling of the bedroom.\n1667,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2513,\"He grapples with it as they sink deeper and deeper. Above the surface, someone\",He grapples with it as they sink deeper and deeper.,\"Above the surface, someone\",gold,flings an energy ball at a naked man.,uses a combination of protect things.,\"sees flames, balls of fire streak through the water.\",wipes off several more.\n1668,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2512,A corpse wraps its arms around someone from behind. He,A corpse wraps its arms around someone from behind.,He,gold,\"suddenly reaches towards it, touches it and pulls the pocket knife like a pirate.\",gives a huge sigh and flees leaps after him.,grapples with it as they sink deeper and deeper.,\"takes out thick - tanned hair and stands up to look at someone, who smiles away.\"\n1669,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2515,\"Someone is on his feet flourishing his wand around his head, whipping up the fire. The corpse\",\"Someone is on his feet flourishing his wand around his head, whipping up the fire.\",The corpse,gold,flies from between the chopper.,hits the ground and hits him with a hammer.,retreats from the flames.,has come to the beginning of the fire.\n1670,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2509,Someone feebly tries to reach his own wand. Scores of corpses,Someone feebly tries to reach his own wand.,Scores of corpses,gold,tear the frost from each surface.,erupt as a rocket flies to fire.,follow the giant aston through the waters into the rough.,swarm onto the tiny island and attack someone.\n1671,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2499,\"The basin is almost empty. His eyes half closed, someone\",The basin is almost empty.,\"His eyes half closed, someone\",gold,presses his lips together.,bends toward him to open the door of the bubbling slumbering someone.,\"looks at the travel vehicle again, his glare downcast.\",comes backwards pumping his fist.\n1672,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2519,The lights in Borgin and someone shop go out. Someone,The lights in Borgin and someone shop go out.,Someone,gold,leads a group through the courtyard to the room at the rear.,steps out past the family.,runs up a walkway to the van and climbs up a ladder.,finishes and walks toward him.\n1673,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2498,Someone fills the shell again. Someone,Someone fills the shell again.,Someone,gold,someone looks a little girl.,candles comes at the scene and we see a shot in the wood.,\"returns again and again, forcing the liquid into someone's mouth.\",drives up a dark passageway.\n1674,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2507,The light brightens and someone sees naked emaciated corpses clambering out of the water towards him. He,The light brightens and someone sees naked emaciated corpses clambering out of the water towards him.,He,gold,\"rimmed, exposed bronze uniform obeys a deep shaft as someone vanishes and faces him.\",plugs her foot on the shower wheel and picks her up to her lap.,climbs out of the robe and onto the courtyard.,lashes out at them.\n1675,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2503,Someone turns and looks at the lake. He,Someone turns and looks at the lake.,He,gold,crumbles down over the rocks towards the water.,\"smiles sadly, drops angrily on the carpet, looks back, and looks down.\",pulls his surfboard on his back and studies the empty scene.,approaches a sleeping guard on the floor and is dragged to the carpet.\n1676,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2518,\"The flames part, a clear channel of water lies ahead. Someone\",\"The flames part, a clear channel of water lies ahead.\",Someone,gold,plugs the filter in and shines the temperature into a glass.,wakes through a few rows of empty furniture and steps up to someone.,stop the elder mechanism from turning quickly and glowing the lights.,lies in bed wide awake.\n1677,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2497,\"He scoops up more liquid, returns to someone, and helps him drink. Someone\",\"He scoops up more liquid, returns to someone, and helps him drink.\",Someone,gold,hands affectionate ears as he talks to someone.,nods as he walks away.,rolls down a window and the lights go out.,fills the shell again.\n1678,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2492,\"Using a large shell as a cup, someone fills it with the liquid and drinks. His eyes closed, he\",\"Using a large shell as a cup, someone fills it with the liquid and drinks.\",\"His eyes closed, he\",gold,sits at the bar with an arm raised ready to fire.,turns away to another page which is containing the name of deformed america.,drains the shell then opens his eyes and shudders.,\"nuzzles his head out with his napkin, and rolls his chair.\"\n1679,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2516,The corpse retreats from the flames. Someone,The corpse retreats from the flames.,Someone,gold,lifts his hand to the teen and brushes his teeth.,comes back onto the island.,flings her arms around her.,beats someone's band to another section.\n1680,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72825,2496,Someone picks up the shell and steps over to the basin. He,Someone picks up the shell and steps over to the basin.,He,gold,gets out of the car and passes through a back door.,drops the syringe onto the floor and separates it into the room.,inserts a candle inside the murky canister.,\"scoops up more liquid, returns to someone, and helps him drink.\"\n1681,anetv_rliYO1sEYts,18871,A man kisses a girl on the beach. People,A man kisses a girl on the beach.,People,gold,ride low in the beach.,are playing with surfboards in the park.,is doing her tricks on the water.,are playing rock paper scissors on the beach.\n1682,anetv_rliYO1sEYts,18872,People are playing rock paper scissors on the beach. A man in a black shirt,People are playing rock paper scissors on the beach.,A man in a black shirt,gold,is standing next to her.,is playing a game of baseball.,is standing on the beach.,is sitting in a back chair in front of a camera on the side.\n1683,anetv_6fjc0Brqa7A,6614,The person walks around and interacts with the driver and leads into more clips of the person riding a board behind a car. A man,The person walks around and interacts with the driver and leads into more clips of the person riding a board behind a car.,A man,gold,is seen speaking to the camera while some riding down a dark mountain and speaking to a camera.,speaks into a walkie talkie and showing the speed of the car as well as people celebrating and the man receiving a plaque.,begins and speaking to the camera as well as closing in on a screen.,speaks to the camera as the camera pans all around the area while several individuals ride around riding rope while standing on a body.\n1684,anetv_6fjc0Brqa7A,6613,\"Various shots of landscapes are shown followed by a woman speaking to the camera, gearing up, and riding behind a vehicle. The person\",\"Various shots of landscapes are shown followed by a woman speaking to the camera, gearing up, and riding behind a vehicle.\",The person,gold,rides herself pushing snow out of her machine and moving her hands next to the camera.,is then shown riding a boat on the slope skiing as well as another man continuously riding down them.,is riding all along the water on the poles while flipping and smiling and looking into the camera.,walks around and interacts with the driver and leads into more clips of the person riding a board behind a car.\n1685,anetv_p5Ynl_rGoEU,12395,More clips are shown of people sitting in the water as well as riding on wakeboards in the water. A man,More clips are shown of people sitting in the water as well as riding on wakeboards in the water.,A man,gold,is seen and behind ups to a thread from the raft with her smiling and speaking to the camera.,can give football in the water and getting hit in a wave as well as.,speaks to the camera and leads into groups of people hanging out and smiling to the camera.,falls in the water while people watch in the river.\n1686,anetv_p5Ynl_rGoEU,12394,People walk in and out of frame followed by several clips of scenery and wake boards. More clips,People walk in and out of frame followed by several clips of scenery and wake boards.,More clips,gold,are shown of people sitting in the water as well as riding on wakeboards in the water.,are shown of people riding on the swingset as well as people surfing and speaking to one another.,are shown of instructions and adults working out and clutching various equipment connected to the side.,are shown of them sleeping on the tubes as well as turn the tubes down the slope.\n1687,anetv_p5Ynl_rGoEU,2853,A person goes skiing on an artificial lake. They,A person goes skiing on an artificial lake.,They,gold,push out of the rafters.,see the man on the camel.,are lined up sitting in the opening on a kayak.,go over jumps and enjoy their lives.\n1688,lsmdc1029_Pride_And_Prejudice_Disk_One-83691,14198,People drag someone and the other officer away. Someone,People drag someone and the other officer away.,Someone,gold,looks puzzled and a little disappointed.,goes back to someone.,sets down his spectacles and leans over in his chair.,keeps his gaze fixed ahead.\n1689,lsmdc3078_THE_WATCH-36101,3782,The tall man eats a snack. The young man,The tall man eats a snack.,The young man,gold,takes a smaller jug from a cup.,\"works, pushing a handful of water away.\",scans them over the tabletop.,\"flips his knife around, then makes a stabbing gesture.\"\n1690,lsmdc3078_THE_WATCH-36101,3783,The tall man holds up a chip. Someone,The tall man holds up a chip.,Someone,gold,opens the door for a bushy - haired black man with glasses.,puts her arm around his shoulders and stares into his eyes.,\"attacks the man with a cloth, then applies it to the tied turned outline to the camera.\",'s shoulder bears cats.\n1691,lsmdc3078_THE_WATCH-36101,3780,\"Clapping, someone jogs off the field. Now, in someone otherwise vacant living room, the tall man\",\"Clapping, someone jogs off the field.\",\"Now, in someone otherwise vacant living room, the tall man\",gold,sleeps on a ledge with the edge under the couch as he strolls out.,waves a orchid.,\"stands at a snack table, while the young man sits on a couch playing with a butterfly knife.\",looks to him like a confused teenage boy.\n1692,lsmdc3078_THE_WATCH-36101,3781,\"Now, in someone otherwise vacant living room, the tall man stands at a snack table, while the young man sits on a couch playing with a butterfly knife. Standing by a presentation easel, someone\",\"Now, in someone otherwise vacant living room, the tall man stands at a snack table, while the young man sits on a couch playing with a butterfly knife.\",\"Standing by a presentation easel, someone\",gold,\"pretends to slip it down, causing it to fall like a splinter of broken pencil.\",checks his wrist watch.,lays his hands down and freezes.,takes the empty space in paper.\n1693,anetv_4l8r_wBuJ6Y,3687,A man is wearing a yellow vest. He,A man is wearing a yellow vest.,He,gold,is standing in front of a building cleaning a window.,is holding a large body in front of him.,is drinking from the mug.,throws a ball on the floor.\n1694,anetv_4l8r_wBuJ6Y,3688,He is standing in front of a building cleaning a window. A person,He is standing in front of a building cleaning a window.,A person,gold,is seen looking out one of the windows.,shows the components of an electric machine.,is then seen in wax the man begins wiping the ski.,begins washing dishes in the sink.\n1695,anetv_uZpVDAd7da8,5793,Person with scissors kneels in the grass. We,Person with scissors kneels in the grass.,We,gold,see the paint holding a mop.,lady pushes a wooden easel and a camera near its window.,see the shadow of the cameraman over the person.,back at: and we see that man speaks and we see his motorcycle and the man grilling a dog from behind.\n1696,anetv_uZpVDAd7da8,5794,We see the shadow of the cameraman over the person. The person,We see the shadow of the cameraman over the person.,The person,gold,takes a picture of adjusting the wheel.,is cutting grass with child proof scissors.,pans up and examines the camera's tools.,goes in the tub and then vacuums again.\n1697,anetv_m3yLm_dJU94,4077,A group of cheerleaders are seen flipping together while a woman speaks to the camera. More people,A group of cheerleaders are seen flipping together while a woman speaks to the camera.,More people,gold,are interviewed on stage as the audience cheers.,are seen speaking to the camera that transitions from cheerleaders performing tricks.,are shown doing various martial arts moves.,perform several tricks and ending by holding a pose in the air.\n1698,anetv_m3yLm_dJU94,9295,\"A series of small rectangular pictures appear on the title page to create one word. After the intro, a team of cheerleaders\",A series of small rectangular pictures appear on the title page to create one word.,\"After the intro, a team of cheerleaders\",gold,perform a circle and its begins performing are dramatic.,finish and sit with one another at the end.,appear at a competition performing.,are shown by themselves until they begin to continue rafting.\n1699,anetv_m3yLm_dJU94,9298,\"Next, an actual cheerleaders begins talking and you can see her getting dressed and someone is doing her hair. More teams and members appear and they all\",\"Next, an actual cheerleaders begins talking and you can see her getting dressed and someone is doing her hair.\",More teams and members appear and they all,gold,\"are practicing jumps, steps, and going over techniques.\",get to a different position.,continue dancing like the first woman they are shown trying to get around a bit.,begin dancing in sync and doing the same.\n1700,anetv_m3yLm_dJU94,9297,\"During their routine, coaches come along and begin during interviews behind the scenes and showing how the girls prepare for the event. Next, an actual cheerleaders begins talking and you can see her getting dressed and someone\",\"During their routine, coaches come along and begin during interviews behind the scenes and showing how the girls prepare for the event.\",\"Next, an actual cheerleaders begins talking and you can see her getting dressed and someone\",gold,coming for her.,and others are interviewed.,is doing her hair.,runs along a front.\n1701,anetv_m3yLm_dJU94,9296,\"After the intro, a team of cheerleaders appear at a competition performing. During their routine, coaches\",\"After the intro, a team of cheerleaders appear at a competition performing.\",\"During their routine, coaches\",gold,get and kick their bodies together at the same time in utter stripes.,come along and begin during interviews behind the scenes and showing how the girls prepare for the event.,go on an around competition.,perform stunts and twirling around and waiting for the crowd with relax as the class gets out.\n1702,anetv_-ibmoYKRxQk,7180,A camera pans around a snowy area and transitions into several people in tubes down a hill. The people,A camera pans around a snowy area and transitions into several people in tubes down a hill.,The people,gold,continue playing and move their arms around one another while speaking to the camera.,continue moving all around themselves along the water with several people riding and falling by and laying out snow.,continue riding along the water continuously as people watch on the sides and the people perform in the tubes.,laugh while riding down the hill when one person falls off and the camera pans around the people.\n1703,anetv_-ibmoYKRxQk,7181,The people laugh while riding down the hill when one person falls off and the camera pans around the people. The camera,The people laugh while riding down the hill when one person falls off and the camera pans around the people.,The camera,gold,pans back to the person riding on the slide.,follows their movements while people watch on the side.,shows one more shot of the people all riding down the long hill together.,captures them on to climb up the stairs together.\n1704,anetv_lUrHCNqVl-A,15073,More people are seen stepping up throwing the object while the camera watches. Several people,More people are seen stepping up throwing the object while the camera watches.,Several people,gold,are shown working around the area.,watch on the sidelines.,speak to one another while people spinning in unison.,are seen wandering around and looking around.\n1705,anetv_lUrHCNqVl-A,15072,An athletic man is seen standing in a circle followed by spinning around and throwing an object off into the distance. More people,An athletic man is seen standing in a circle followed by spinning around and throwing an object off into the distance.,More people,gold,are seen performing a game of the paintball field as well as a man shooting them all around the sides.,are seen stepping up throwing the object while the camera watches.,are shown smiling to the camera.,are seen riding around on the beam hawk as well as around him performing tricks and spinning in several tricks.\n1706,anetv_Xu54UPG1cME,11605,He is hanging wall paper over the paint. He,He is hanging wall paper over the paint.,He,gold,smooths out the wall paper with a metal tool.,begins to remove it from the camera.,holds the clock over it and starts just push it into it.,finishes writing and begins to shelf the papers.\n1707,anetv_Xu54UPG1cME,15556,We see an opening title screen. A person,We see an opening title screen.,A person,gold,is pushing a snake.,catch a selfie with a lasso.,pours paint into paint tray and paints a wall.,is under water skiing down the street.\n1708,anetv_Xu54UPG1cME,15558,A man pours paint into an empty tray and paints. We,A man pours paint into an empty tray and paints.,We,gold,see an opening screen stating the boy knitting and carving the finger lovingly from the pumpkin.,runs along the path and stops again.,create an image in a maroon.,see a man put a piece of wallpaper on a wall and smooth it out.\n1709,anetv_Xu54UPG1cME,11606,He smooths out the wall paper with a metal tool. He then,He smooths out the wall paper with a metal tool.,He then,gold,demonstrates several parts of the machine.,removes the water and shaves him.,lifts into the middle board mask.,peels off the wall paper from the wall.\n1710,anetv_Xu54UPG1cME,15557,A person pours paint into paint tray and paints a wall. A man,A person pours paint into paint tray and paints a wall.,A man,gold,explains how to cut a house while showing how to paint the fence with a paint brush.,talks to the camera holding a flute in his hands after putting it in his goggles.,pours paint into an empty tray and paints.,whacks paint the carpet.\n1711,anetv_Xu54UPG1cME,11604,A man is painting a wall with a roller brush. He,A man is painting a wall with a roller brush.,He,gold,holds a bowling vacuum on his hands and spreads it out.,is cutting the great wall steps with an electric clipper.,is hanging wall paper over the paint.,unrolls the item with the brush and hits it with both feet.\n1712,anetv_Xu54UPG1cME,15559,We see a man put a piece of wallpaper on a wall and smooth it out. We,We see a man put a piece of wallpaper on a wall and smooth it out.,We,gold,see the ending screen.,see the nail up close and the man places tiles on the box stand.,see the closing screen.,see the man peeling wallpaper off the wall.\n1713,lsmdc3038_ITS_COMPLICATED-17144,19216,\"As they hug, someone eyes someone. Someone\",\"As they hug, someone eyes someone.\",Someone,gold,glances over his shoulder and watches as someone leaves.,\"hugs her, then drops her head into her hands.\",\"leans forward, trying to block their admiration.\",morphs into two villagers in a booth.\n1714,lsmdc3038_ITS_COMPLICATED-17144,19217,\"Someone glances over his shoulder and watches as someone leaves. Now, a young woman\",Someone glances over his shoulder and watches as someone leaves.,\"Now, a young woman\",gold,wearing a helmet counts up a small jet.,\"writes a flame in a tree, and marches on the stove.\",carries a box across the well - kept lawn of the spanish - style home.,joins the girls with a mug on a table.\n1715,lsmdc3048_LITTLE_FOCKERS-23142,3919,\"Someone eyes someone, who holds an arm around someone. Someone\",\"Someone eyes someone, who holds an arm around someone.\",Someone,gold,gives an apprehensive smile.,turns away as he meets his father's goateed gaze.,guides the hobbits quickly.,presses the elevator button.\n1716,anetv_TqO-bmGQGiY,7374,The two dogs are shown running together amidst crowds in several different locations while following a man. The man,The two dogs are shown running together amidst crowds in several different locations while following a man.,The man,gold,teaches one dog to pull another by the leash.,speaks to the camera for a long time and stops playing.,\"quickly starts cutting the horses and ends by moving off and bigger and more forcefully, bringing a large sign at the crest.\",\"who is seated in front of a horse is still riding him, holding a few colorful flags.\"\n1717,anetv_TqO-bmGQGiY,7373,Two dogs wearing clothing run together up stairs. The two dogs,Two dogs wearing clothing run together up stairs.,The two dogs,gold,are shown in the yard covered with dog watching them from the length of the room.,do tricks with the dogs.,are around and one at a time.,are shown running together amidst crowds in several different locations while following a man.\n1718,anetv_WltsIClflnA,10727,Kid is swinging on a playground. woman,Kid is swinging on a playground.,woman,gold,is swinging a bat with little kid.,runs to the swings and sits.,is walking on the swing set.,is sitting on the front swinging back and forth.\n1719,anetv_6KG4p_pfMQc,1492,Man wearing a red shirt is standing in a large green field behind kids. little blonde kid throw a ball and a kid,Man wearing a red shirt is standing in a large green field behind kids.,little blonde kid throw a ball and a kid,gold,kicks the ball in the field.,throws the ball on the street.,goes behind the table playing croquet.,throw the ball up in the air.\n1720,anetv_6KG4p_pfMQc,1493,Little blonde kid throw a ball and a kid kicks the ball in the field. kisd,Little blonde kid throw a ball and a kid kicks the ball in the field.,kisd,gold,are running in the field to catch th ball.,try another match for white teams.,girl in a pink shirt does a girl flip.,\", the biker tries to take short fun.\"\n1721,anetv_yWfTd8pRLgM,14979,A girl is doing back flips on a blue mat. A girl,A girl is doing back flips on a blue mat.,A girl,gold,is doing a gymnastics routine on the balance beam.,does the splits in the air.,bends down and touches their legs.,walks over backstage.\n1722,anetv_yWfTd8pRLgM,14980,A girl does the splits in the air. People,A girl does the splits in the air.,People,gold,sit on the trampoline while pushing.,slide out of frame.,are balancing on a piece of gymnastic paper on a bar.,are laying down on the mat next to her.\n1723,anetv_7Ozl-ud1zTo,16824,A large group of people are seen standing on a beach looking off into the distance. Several shots,A large group of people are seen standing on a beach looking off into the distance.,Several shots,gold,are then shown of people practicing and sitting around a pool.,are shown of people riding around on brakes and speaking to one another.,are shown of people grabbing monkey balls and speaking to one another while others nearby.,are shown of people riding a surf board and others watching on the side.\n1724,anetv_7Ozl-ud1zTo,16825,Several shots are shown of people riding a surf board and others watching on the side. More people,Several shots are shown of people riding a surf board and others watching on the side.,More people,gold,are shown riding along the waves while looking and pouring into canoes.,are seen riding on areas and moving along waves.,are seen swimming in the water and crashing to the other.,are seen riding the waves in various shots.\n1725,anetv_cErtrZrWhiQ,17750,Right where the men separate from dancing there is an Asian woman that is now the focus as she plays on an accordion keyboard. The woman,Right where the men separate from dancing there is an Asian woman that is now the focus as she plays on an accordion keyboard.,The woman,gold,\"continues in, sitting up, sits playing the piano and moves her cymbals under parts of the curtain.\",finishes for a spin.,uses her hands as she holds the violin on her lap.,\"stops playing, laughs and looks and says something.\"\n1726,anetv_cErtrZrWhiQ,17749,\"Two men dressed in suits are facing one another with a hand on each others back, and holding hands with the other one and they dance in one direction, then back in another and then laugh and separate. Right where the men separate from dancing there\",\"Two men dressed in suits are facing one another with a hand on each others back, and holding hands with the other one and they dance in one direction, then back in another and then laugh and separate.\",Right where the men separate from dancing there,gold,are shown in jockeys practice while people try to win.,is an asian woman that is now the focus as she plays on an accordion keyboard.,are moving to crazily.,are two special men standing by side of the course in service.\n1727,anetv_Pso333FAp2w,14862,Outside a dog is laying down on the pavement when a human picks up a frisbee and throws it. The dog,Outside a dog is laying down on the pavement when a human picks up a frisbee and throws it.,The dog,gold,runs from the dog and get to the end of the camel.,throws the frisbee at the dog then snatches it away.,\"can do many tricks, while a few other dogs grab frisbees to catch the calf.\",\"excitedly runs after it and come running back with it, bringing it back to his human.\"\n1728,anetv_Pso333FAp2w,14863,\"The dog excitedly runs after it and come running back with it, bringing it back to his human. He disappears for a little bit and then you\",\"The dog excitedly runs after it and come running back with it, bringing it back to his human.\",He disappears for a little bit and then you,gold,see him excitedly get ready to run for it again.,fall backwards off the ground.,can see it is finished.,can see more wood shortly after.\n1729,anetv_Pso333FAp2w,14864,He disappears for a little bit and then you see him excitedly get ready to run for it again. Once he see's the frisbee flying he,He disappears for a little bit and then you see him excitedly get ready to run for it again.,Once he see's the frisbee flying he,gold,\"just gets up, stops and speaks to the camera while hitting the racket.\",\"has nowhere to go, but he is there to duck the top when the bear comes back for him.\",starts to run for it and brings it back every time.,can respond to the male for distance.\n1730,anetv_s__e_v6aaq0,7986,A little boy is inside a living room. He,A little boy is inside a living room.,He,gold,is playing a flute.,is holding a plastic blower.,is pushing and pulling a large vacuum cleaner.,is wearing a green shirt and is mowing the lawn in front of him.\n1731,anetv_s__e_v6aaq0,7987,He is pushing and pulling a large vacuum cleaner. He,He is pushing and pulling a large vacuum cleaner.,He,gold,uses small metal hands to tighten the handlebars.,\"hangs on to the floor, still wiping down the heat with a rag.\",is vacuuming the large living room rug.,puts his foot at the end of the machine.\n1732,lsmdc3052_NO_STRINGS_ATTACHED-25451,6183,\"She has sugar - frosting smushed around her mouth. She grabs her phone, a message from someone\",She has sugar - frosting smushed around her mouth.,\"She grabs her phone, a message from someone\",gold,giving it to her.,heads through an intercom.,\"'s, goes next to a small shopping bag and sets it in a chair in front of her.\",\"reads, call me.\"\n1733,lsmdc3052_NO_STRINGS_ATTACHED-25451,6182,Someone drives along the freeway listening to someone's Period mix. She,Someone drives along the freeway listening to someone's Period mix.,She,gold,\"looks up, to someone.\",munches from a large box of doughnut holes.,slows as she sees a photograph of the la flouncy hello crazy.,\"glances at someone, who nods tearfully and strides off.\"\n1734,anetv_jRj8deMhPrQ,12196,A man in a black jacket is standing outside talking. People,A man in a black jacket is standing outside talking.,People,gold,are playing cricket on a field.,are skating on an ice rink.,are standing behind a table playing squash.,are sitting up at the table watching.\n1735,anetv_jRj8deMhPrQ,12197,People are skating on an ice rink. A man in a red hat,People are skating on an ice rink.,A man in a red hat,gold,is holding his trophy.,is playing hockey and makes several goals.,tosses a can onto some ice.,is resting his foot on the ground.\n1736,anetv_juP0cn5B60Y,1501,People are then seen grooming dogs and holding up awards. The woman,People are then seen grooming dogs and holding up awards.,The woman,gold,leaves while still speaking to the camera.,speaks to the man while smiling at the camera while another girl is watching and the woman in front walks off.,continues speaking to the camera while the dogs continue to be groomed behind her.,is seen playing with flowers on the dogs.\n1737,anetv_juP0cn5B60Y,1500,A woman is seen speaking to the camera while shots of homes are shown. People,A woman is seen speaking to the camera while shots of homes are shown.,People,gold,are seen putting ingredients into a bowl then mixing ingredients together.,are shown warming up while shots of a car are shown.,are then seen grooming dogs and holding up awards.,are shown competing and leads into several clips of people going down the city.\n1738,lsmdc1004_Juno-6525,9387,She reaches for the washroom key. He,She reaches for the washroom key.,He,gold,hands her the letter.,removes her main strap.,hands her the key.,starts the box and some bills and takes out cash.\n1739,lsmdc1004_Juno-6525,9389,She pulls the stick out and gives it a cursory look. She,She pulls the stick out and gives it a cursory look.,She,gold,slaps a pack of sweets onto the counter and gazes at the test.,sips the first and lemon wash.,tilts his head back and shakes his head.,releases the ax in her right hand.\n1740,lsmdc1004_Juno-6525,9388,\"He hands her the key. In the washroom, she unzips her jeans and sitting down on the lavatory seat, she\",He hands her the key.,\"In the washroom, she unzips her jeans and sitting down on the lavatory seat, she\",gold,tosses the front lighter into her raft.,removes a pair of headphones from the refrigerator.,opens the pregnancy detection kit and brings out a narrow paddle shaped stick and puts it into position.,\"rests her bench against the wall, looking around, pausing, then takes off her specs.\"\n1741,lsmdc1004_Juno-6525,9386,She picks up a pregnancy kit. She,She picks up a pregnancy kit.,She,gold,applies it to the pot.,drops it and shoves the crown under her arm.,\"pokes some dots on a cubby, then notices the paper guarding of some pills.\",reaches for the washroom key.\n1742,lsmdc0016_O_Brother_Where_Art_Thou-55611,14868,\"The crowd gasps and watches, heads tilted back, in silence. The only sound\",\"The crowd gasps and watches, heads tilted back, in silence.\",The only sound,gold,are coming from the church and the translucent pane - rising window is reflected in the hazy waters.,comes from the front door.,is seen among the kids on the pavement.,is the fluttering flag.\n1743,lsmdc0016_O_Brother_Where_Art_Thou-55611,14873,He has caught the flagpole. The flag,He has caught the flagpole.,The flag,gold,has not touched the ground.,has long horns now.,is hanging from the branch as someone spurs his horse to meet.,runs over it several times.\n1744,lsmdc0016_O_Brother_Where_Art_Thou-55611,14870,His arms are tensed out at his sides like a waiting kick - off returner. He,His arms are tensed out at his sides like a waiting kick - off returner.,He,gold,frowns then gets up and heads toward the bed.,\"looks up, showing the sign of an mnu.\",goes slightly to his side and holds up the metal strap of his wig.,\"squints up with his one good eye, judging distance and trajectory.\"\n1745,lsmdc0016_O_Brother_Where_Art_Thou-55611,14876,\"At the foot of the cross someone snaps its last guy wire with his pincers - someone - and the four men sprint off. As the crowd scatters, the cross\",At the foot of the cross someone snaps its last guy wire with his pincers - someone - and the four men sprint off.,\"As the crowd scatters, the cross\",gold,\"descends toward someone, frozen, looking up.\",\"rolls to the ground, knocking side to side, craning their heads.\",slides back over the bar like a line holding his stick.,splits away from someone's invisible goal.\n1746,lsmdc0016_O_Brother_Where_Art_Thou-55611,14869,\"Someone 'eyes rise, hesitate and start to fall as the flag reaches its zenith and starts to descend. We\",\"Someone 'eyes rise, hesitate and start to fall as the flag reaches its zenith and starts to descend.\",We,gold,wrestles to someone who shoots someone.,run past and not missing one.,boom down with the hurtling flag toward a sea of upturned white hoods.,\"take someone into the gates of the alley, and does - - more startling.\"\n1747,lsmdc0016_O_Brother_Where_Art_Thou-55611,14871,\"He squints up with his one good eye, judging distance and trajectory. From somewhere we\",\"He squints up with his one good eye, judging distance and trajectory.\",From somewhere we,gold,\"hear a loud someone, as of a wire popping.\",see a man watching as someone bends the gun from draco.,can hear a roar of approaching town.,\"can see the man on the side mirror - without contact lens, then someone.\"\n1748,lsmdc0016_O_Brother_Where_Art_Thou-55611,14874,The flag has not touched the ground. Someone,The flag has not touched the ground.,Someone,gold,\"takes his hat off of him, waits for his reply.\",\"looks around, beaming acknowledgement of the cheers.\",\"and someone wear protective clothing, a blue bullet is lodged in the stone wall.\",grabs a paintball gun.\n1749,lsmdc0016_O_Brother_Where_Art_Thou-55611,14866,\"People, bearing the Confederate flag, are retreating across the neutral ground separating the mob of Klansmen from the burning cross. The mob\",\"People, bearing the Confederate flag, are retreating across the neutral ground separating the mob of Klansmen from the burning cross.\",The mob,gold,are crowded in the hollow them scattered on the street.,pursues in full cry.,begins the dance sequence up short.,continues to race in circles.\n1750,anetv_3k5dJSs2zkg,8827,A man is seen speaking to the camera and leads into several shots of people speaking and wearing heels. The women,A man is seen speaking to the camera and leads into several shots of people speaking and wearing heels.,The women,gold,push the pucks back and fourth while moving up and down.,speak to the camera and lead into several clips performing the same move.,are seen riding all along the beach as well as speaking and leading into them waving their hands in the air.,walk on the ground down a street while many watch and then all run down the road in heels.\n1751,lsmdc1001_Flight-71857,19583,\"Someone watches him, her brow creased and her eyes soft with sympathy. He\",\"Someone watches him, her brow creased and her eyes soft with sympathy.\",He,gold,kisses her and leaves.,saddles and walks onto the top of an old bunker.,places an ipod on the keyboard.,sits down and pulls up her pants.\n1752,lsmdc1001_Flight-71857,19585,Someone leans against his car in a parking lot and watches an airplane overhead. Someone,Someone leans against his car in a parking lot and watches an airplane overhead.,Someone,gold,'s tally still counts.,'s clothes got loose.,stays of the opposite parkers.,approaches in quick strides.\n1753,lsmdc1001_Flight-71857,19582,\"They stare at each other, unmoving. He\",\"They stare at each other, unmoving.\",He,gold,mimes a puff of smoke from little windows and sinks to the floor.,yanks his father's.,vomits around the living room.,wipes her tears with his thumb.\n1754,lsmdc1001_Flight-71857,19584,He kisses her and leaves. Someone,He kisses her and leaves.,Someone,gold,sits at the tiny tent.,leans against his car in a parking lot and watches an airplane overhead.,stares at her hungrily.,picks up her purse and tucks it in.\n1755,anetv_ESsUwNlkJoo,18140,The letters rpm appear on the screen. A room,The letters rpm appear on the screen.,A room,gold,appears and people are sandy with photos in the middle of the forest.,is shown with a picture of a camper in small workshop.,is addressed to work in the wash.,is filled with people riding exercise bikes.\n1756,anetv_ESsUwNlkJoo,18141,A room is filled with people riding exercise bikes. They,A room is filled with people riding exercise bikes.,They,gold,float down from a wooded area to hit a red spiral slide.,\"go as fast as they can, advertising a fitness gym.\",are shown as a person riding dirt bikes.,are running and putting other gear in on the course.\n1757,anetv_1oaJBEdY6ao,5546,A man driving a moving tractor steps around and looks towards the front. He,A man driving a moving tractor steps around and looks towards the front.,He,gold,begins moving again on the machine cutting the grass and steering the instrument.,is driving while wearing a helmet.,slows to a halt at a fast pace.,puts a strip on the grass.\n1758,anetv_Vp63nbOfxgs,6837,The woman plays the violin everywhere she goes and she dances while she plays too. She,The woman plays the violin everywhere she goes and she dances while she plays too.,She,gold,stops and walks into a while the band continues to play.,\"sings a bit about the song, then pauses to look from his foot on the hand of the guitar again.\",and the three girls have seen this costume gracefully.,does some movements of her body making her back bend down almost touching the ground while still jamming out on the violin.\n1759,anetv_Vp63nbOfxgs,6836,\"Some is carrying an instrument case walking around outside, they put the case down on the ground and take out a violin. The woman plays the violin everywhere she goes and she\",\"Some is carrying an instrument case walking around outside, they put the case down on the ground and take out a violin.\",The woman plays the violin everywhere she goes and she,gold,stops playing with her instrument.,shows how to do the violin.,dances while she plays too.,returns to the camera for another video.\n1760,lsmdc0004_Charade-47625,7527,She leads him to the bed. She,She leads him to the bed.,She,gold,sits on a couch.,wets the cotton with disinfectant and begins cleaning the wound.,stands between the bound curtains.,puts cream to her hair.\n1761,lsmdc0004_Charade-47625,7525,She leads him into her room. As people,She leads him into her room.,As people,gold,\"enter the apartment, reporters speak to the first women.\",enter from his room.,\"move in to the last seat, the marines give uneasy looks.\",climb in front of her.\n1762,lsmdc0004_Charade-47625,7526,As people enter from his room. She,As people enter from his room.,She,gold,leads him to the bed.,looks up to see the fin moving into the common room.,\"sits up and holds, staring morosely at the tv.\",replaces her dress then walks into a penguin shop.\n1763,anetv_ox6cIfguQ00,12320,A close up of hands on a horse is shown while riding in an area full of cars. The person,A close up of hands on a horse is shown while riding in an area full of cars.,The person,gold,continues up as well as speaking to the large group.,rides along the area on the horse while cars continue to zoom past him.,begins riding the horse while others finish and rollerblades.,runs three roads then and then puts bouncing dirt back on the trolley.\n1764,anetv_ox6cIfguQ00,528,A close up of a horse is seen as well as a person's hands. The person,A close up of a horse is seen as well as a person's hands.,The person,gold,begins shaving the finished stylist after hair.,throws a clip into a person's fur coat and blow dries the dog.,rides this tool along the dirt bike while moving the dog around.,rides the horse past several cars and people.\n1765,anetv_ox6cIfguQ00,529,The person rides the horse past several cars and people. The person,The person rides the horse past several cars and people.,The person,gold,continues riding the horse around the public area.,pushes the camels while sitting across the horses.,\"rides off with the horse on a horse, then jumps over a rope and laugh between stunts with yellowish equipment.\",continues running down the camels while people walk around behind them camels.\n1766,anetv_WjueR8K-nnI,6371,Children bumps cars and ride around. The children,Children bumps cars and ride around.,The children,gold,gets off the bumper cars and walk to the exit.,crash into each other as the two people take turns and hit the ball and land in the passenger compartment.,stay at a park.,wait at the end.\n1767,anetv_WjueR8K-nnI,6369,\"The kids get stuck in the center, but they free and drive. A woman\",\"The kids get stuck in the center, but they free and drive.\",A woman,gold,pass by a car with people tagged in the cars.,stands in the outdoor talking as a hotel in a news room.,push a stroller in the street.,is laying on the sand next to someone.\n1768,anetv_ZVIi4lPU6h0,2074,\"A man shows to carve a pumpkin using a sharp tool. Then, the man\",A man shows to carve a pumpkin using a sharp tool.,\"Then, the man\",gold,uses a liquid to shave the knife with an electric tool.,sharpens the knife with a knife.,carves a devil face in the pumpkin.,wipes off the top of the carpet.\n1769,anetv_ZVIi4lPU6h0,10942,Man is talking to the camera in workshop carving a pumpkin with a knife. the man,Man is talking to the camera in workshop carving a pumpkin with a knife.,the man,gold,uses a hand slice and carving the pumpkins.,connects a light inside a pumpkin and plug it.,is applying a black paper to the pumpkin.,take the small piece of pumpkin and measures it.\n1770,anetv_ZVIi4lPU6h0,10941,Different pumpkins with famous people sculpt in pumpkins. man,Different pumpkins with famous people sculpt in pumpkins.,man,gold,is talking to the camera in workshop carving a pumpkin with a knife.,is in a field demonstrating omelets.,is painting a wall of paint.,is jumping and flipping pumpkins in a chocolate plaza.\n1771,anetv_bqsWU8HqpxE,14660,\"Two men are boxing, then people gather, men parachute and a man dive in the water. People dressed with military clothes, then they\",\"Two men are boxing, then people gather, men parachute and a man dive in the water.\",\"People dressed with military clothes, then they\",gold,start walking in carnival line doing a warm longer setting after some supper.,throw the flare into the water below water and in quick shots.,are doing other activities.,start to get him on their bikes.\n1772,anetv_bqsWU8HqpxE,14659,\"A man runs with a pole and a jumps high, then people jumps several times. Two men are boxing, then people gather, men parachute and a man\",\"A man runs with a pole and a jumps high, then people jumps several times.\",\"Two men are boxing, then people gather, men parachute and a man\",gold,walk to his knees and peddle.,brings standing pole to ski.,dive in the water.,hold the hoop thumping against the sides.\n1773,anetv_bqsWU8HqpxE,14661,\"People dressed with military clothes, then they are doing other activities. People\",\"People dressed with military clothes, then they are doing other activities.\",People,gold,are talking about this video about holding hands.,\"practice pole vault, climbing and other activities.\",are skiing in a crowded river.,are going back and forth on the diving board several girls circle on the pier.\n1774,anetv_euyYRNOSPE0,12396,Eautiful woman is in middle of a dark room doing the bellydance. woman,Eautiful woman is in middle of a dark room doing the bellydance.,woman,gold,is doing a choreography in front of a hula hoop.,is in a room with a painter holding a bottle of coffee in her hands.,is standing in stage holding a hula competition and is doing various karate moves.,is dancing arabian music doing the belly dance.\n1775,anetv_euyYRNOSPE0,2215,The woman shakes her body while smoke fills the room around her. She,The woman shakes her body while smoke fills the room around her.,She,gold,\"walks toward the camera, then looks down as the woman is sitting.\",continues dancing over and over and ends by walking away.,grabs a tool to put it into the case and puts on safety puffs and continues vacuuming.,stands and shakes her arm once she puts it in her hands.\n1776,anetv_euyYRNOSPE0,2214,A woman is seen belly dancing on a set while moving around and around. The woman,A woman is seen belly dancing on a set while moving around and around.,The woman,gold,continues to play while others watch in the background.,continues to flip and ends by waving to the camera.,continues moving all around the instrument while looking back to the camera.,shakes her body while smoke fills the room around her.\n1777,anetv_xddZ9YjTGgo,13097,\"A young man in green shirt is standing at the goal, while the young player in blue kicked the ball to the goal, and the ball went inside the goal, the man in green shirt missed the ball. The man in red shirt run towards the ball, kicked the ball, and the goalkeeper\",\"A young man in green shirt is standing at the goal, while the young player in blue kicked the ball to the goal, and the ball went inside the goal, the man in green shirt missed the ball.\",\"The man in red shirt run towards the ball, kicked the ball, and the goalkeeper\",gold,kicked it right to hit the ball into the distance and there easily missed it.,started and hit hit a ball back and forth at the same time the tournament.,\"was n't able to block it, the player high five his teammates.\",\"jumped over the ball, and score balls are shown in the middle of the screen.\"\n1778,anetv_xddZ9YjTGgo,13098,\"The man in red shirt run towards the ball, kicked the ball, and the goalkeeper was n't able to block it, the player high five his teammates. The players are kicking the ball to the goal and the goalkeepers\",\"The man in red shirt run towards the ball, kicked the ball, and the goalkeeper was n't able to block it, the player high five his teammates.\",The players are kicking the ball to the goal and the goalkeepers,gold,were n't able to block the ball.,is appearing from far on the ground.,started to do a flip of the ball.,missed play.\n1779,anetv_0_IShglbOQ4,14570,A young boy is seen holding onto a lawn mower and pushing it along the yard. The boy,A young boy is seen holding onto a lawn mower and pushing it along the yard.,The boy,gold,continues playing with another boy watching.,continues to push the mower around while the camera captures his movements.,rakes the hedges around the area.,continues swinging his lawn and hopped again as well as walking on the grass.\n1780,anetv_0_IShglbOQ4,14571,The boy continues to push the mower around while the camera captures his movements. He,The boy continues to push the mower around while the camera captures his movements.,He,gold,brushes his nails and continues to pipe up and continues to speak.,continues performing flips while speaking to the camera and leads into a group of people climbing up a pole.,wipes the snow off and talks as he continues to talk to the camera.,pushes the mower back where he started and looks back to the camera.\n1781,lsmdc0014_Ist_das_Leben_nicht_schoen-55049,1278,\"Someone stops pouring the drinks, bottle poised in his hand. Someone\",\"Someone stops pouring the drinks, bottle poised in his hand.\",Someone,gold,checks his clock then nods to someone that stands in the doorway of the modern taxi sign - - slow for the short time.,glances up at someone.,\"squints, his eyes wide.\",\"in the middle of like state and walking it off, someone is lifting up a barbell.\"\n1782,lsmdc0014_Ist_das_Leben_nicht_schoen-55049,1277,Someone is listening suspiciously to this conversation. Someone,Someone is listening suspiciously to this conversation.,Someone,gold,\"stops pouring the drinks, bottle poised in his hand.\",switches off the lamp light into the room.,\"texts back to him, very slowly, very slowly, gets in bed.\",looks around herself as though enjoying this story.\n1783,lsmdc0003_CASABLANCA-47074,17158,He kisses someone on both cheeks. Someone,He kisses someone on both cheeks.,Someone,gold,crosses out to her.,looks away and points to his own pocket.,looks at the doll who stares at the stars.,pours a brandy for someone.\n1784,lsmdc0003_CASABLANCA-47074,17159,Someone pours a brandy for someone. Someone,Someone pours a brandy for someone.,Someone,gold,draws her for a hug.,comes up to him.,sets two glasses on top of him.,feebly draws a bulky rectangular case on a table.\n1785,lsmdc0003_CASABLANCA-47074,17160,Someone comes up to him. He,Someone comes up to him.,He,gold,folds the box with an envelope.,arrives at the top of the stairs.,catches him by the ankle and drags him backward.,smiles and walks away.\n1786,lsmdc0003_CASABLANCA-47074,17157,\"At the bar, someone whispers in someone's ear. He\",\"At the bar, someone whispers in someone's ear.\",He,gold,looks back to the machine.,walks all around the store.,kisses someone on both cheeks.,holds out a coffee cup.\n1787,anetv_oKauZV0DHHk,18131,She puts a pink bag on top of her head. She,She puts a pink bag on top of her head.,She,gold,takes the curlers out of her hair.,\"lands on her nails, she then uses different curlers to show how it's nails clean.\",grabs the juice from a metal box and puts them in the oven.,gets her hair brushed on the woman's hair.\n1788,anetv_oKauZV0DHHk,9594,We then see all the tools and ingredients needs to create her look. the woman,We then see all the tools and ingredients needs to create her look.,the woman,gold,pours the chopped area and the woman talks to the screen.,shows her one of the salad until we see the finished dish.,puts mascara on their lips and make a loving clear fall.,is shown demonstrating how she rolled and styled her hair.\n1789,anetv_oKauZV0DHHk,18129,A woman is blow drying her hair. She,A woman is blow drying her hair.,She,gold,starts blow drying her hair.,rolls large curlers into her hair.,is drying her hair with a dryer.,sits with a hair in the end.\n1790,anetv_oKauZV0DHHk,9593,A woman with curly hair is shown close up. We then,A woman with curly hair is shown close up.,We then,gold,see the closing screens.,see a camera man peek from a mirror.,see all the tools and ingredients needs to create her look.,\"see her neck, with her facial hair, places her hair down, letting out a bit longing.\"\n1791,anetv_pieT6K771WQ,6674,\"A girl talks stand on the sidewalk, then she walks to a hopscotch. The girl stands on the hopscotch, then she\",\"A girl talks stand on the sidewalk, then she walks to a hopscotch.\",\"The girl stands on the hopscotch, then she\",gold,perform ballet and practice their left job.,jumps hopscotch while talking.,opens the background and the woman steps towards it.,proceeds to stop tennis.\n1792,anetv_jl7aBkPfcS8,324,A view is seen of someone's feet as they step on a bed. The person,A view is seen of someone's feet as they step on a bed.,The person,gold,slides on a dresser top.,sinks down in the snow.,walks around on the covers.,rubs their hands together.\n1793,anetv_jl7aBkPfcS8,16421,The feet step on the bed and the floral sheet. The person,The feet step on the bed and the floral sheet.,The person,gold,\"walks alongside the wall and maintain the chemical from a bottom of the mop, then sit is in place in the bathroom.\",sat down and wipe the shoes on the floral sheet.,opens bottles then come inside.,shows the image of the person in the dark again.\n1794,anetv_jl7aBkPfcS8,16422,The person sat down and wipe the shoes on the floral sheet. The person,The person sat down and wipe the shoes on the floral sheet.,The person,gold,puts the brush down and shakes the goldfish clean.,wipe the blanket on the shoe.,smears his face and uses his towel to wipe it clean.,showed the white ribbon.\n1795,lsmdc1028_No_Reservations-83316,3427,Someone eyes him with suspicion. Someone,Someone eyes him with suspicion.,Someone,gold,looks up at someone's waiting figure.,lays his hand close to someone's shoulder.,strolls in from the dining room.,gives him a cheek flick.\n1796,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72040,2398,\"He puts his left arm protectively around someone's shoulder, and steers him through the crowd. Someone\",\"He puts his left arm protectively around someone's shoulder, and steers him through the crowd.\",Someone,gold,spots the portly couple of giggling children.,reaches into his pocket for someone as she slips over the newly - fitting room.,\"lifts out into the ballroom, two stationed in crowded mortar fragments.\",wears two rings on his left hand.\n1797,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72040,2397,\"A host of press photographers flash their cameras repeatedly at the dazed looking someone and a tall, white - haired old man with a long white beard, someone. He\",\"A host of press photographers flash their cameras repeatedly at the dazed looking someone and a tall, white - haired old man with a long white beard, someone.\",He,gold,\"puts his left arm protectively around someone's shoulder, and steers him through the crowd.\",\"stands up, and completes a few seconds.\",is deeply happy for someone.,runs up on a computer.\n1798,anetv_o8EOFXW5GJo,13988,The man then puts more food into a plate and spinning around ingredients. He,The man then puts more food into a plate and spinning around ingredients.,He,gold,continues to put food onto a plate and ends by presenting it to the camera.,turns to the camera.,pans all together in a pot followed by mixing ingredients squeezed in and mixing it and putting them on the oven.,mixes ingredients together and then enjoys the sandwich.\n1799,anetv_o8EOFXW5GJo,13987,Several shots of plates are shown with food leading into a man preparing food. The man then,Several shots of plates are shown with food leading into a man preparing food.,The man then,gold,pours lemons into cups and continues it on the plate.,lifts it around his ice and shows the contents being laid down on his plate.,walks away while others on their arms work with vegetables.,puts more food into a plate and spinning around ingredients.\n1800,lsmdc3024_EASY_A-11574,6090,\"She knocks over a family photo. Righting it, she\",She knocks over a family photo.,\"Righting it, she\",gold,races past someone and crawls through the front door.,grins and addresses it.,depicts a black title card.,finds someone in the picture.\n1801,lsmdc3024_EASY_A-11574,6091,\"Righting it, she finds someone in the picture. She\",\"Righting it, she finds someone in the picture.\",She,gold,places it over her father's stomach.,\"comes to get out, moving out of her print miserably and pulling away.\",nods in a piece of mahogany booth.,topples another photo of him and someone.\n1802,anetv_x7PDVqDFw6c,17035,A man is using a telescoping pole by the side of a building. He,A man is using a telescoping pole by the side of a building.,He,gold,\"stretches it upward, then cleans the side of the building with it.\",throws the hammer down into the building.,begins to jump rope with a rope attached to the bars.,is holding a small stencil in his hand.\n1803,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10791,Rain pours down on the Borgin and someone shop sign. Through the dusty arched window at the rear of the shop a dim light,Rain pours down on the Borgin and someone shop sign.,Through the dusty arched window at the rear of the shop a dim light,gold,comes on the small deck then slowly changes to a man's barely poor voice.,shines a long - wet scar across his forehead.,reveals a large flower striking someone's body.,\"reveals the triangular cabinet, its door firmly closed.\"\n1804,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10790,He closes the bird inside the cabinet and picks a single feather off his cuff. Someone,He closes the bird inside the cabinet and picks a single feather off his cuff.,Someone,gold,rides along stocked with bushes.,holds it up to the light.,\"walks quickly past someone, who is lying on the floor.\",tensely clutches a similar scar over her cheek.\n1805,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10783,\"Sitting on someone's bed, someone strengthens her grip on his hand with a sigh of contentment. The shadow of a figure climbing stairs\",\"Sitting on someone's bed, someone strengthens her grip on his hand with a sigh of contentment.\",The shadow of a figure climbing stairs,gold,rises across the darkness.,shows the wide theater as someone walks over to her.,is cast on a wall.,takes his son's hand.\n1806,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10786,\"Someone leaves the upper corridor with the bird cage hangs, now only one bird remains in the cage. Someone\",\"Someone leaves the upper corridor with the bird cage hangs, now only one bird remains in the cage.\",Someone,gold,\"is sitting on long strokes from several wind, looking like a sign.\",draws a high porcelain round and shows the shadow in the cockpit.,stands still and closes his eyes.,is sliding under the giant's leg.\n1807,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10785,\"Someone steps forward and watches him then follows. Someone leaves the upper corridor with the bird cage hangs, now only one bird\",Someone steps forward and watches him then follows.,\"Someone leaves the upper corridor with the bird cage hangs, now only one bird\",gold,beaming to the stranger.,dotting the lower half.,remains in the cage.,followed by his pale green eyes.\n1808,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10784,\"Going up the spiral staircase, someone spots the figure through an archway: it's someone. Someone\",\"Going up the spiral staircase, someone spots the figure through an archway: it's someone.\",Someone,gold,is standing in a telephone.,turns to someone.,shines a menacing spell.,steps forward and watches him then follows.\n1809,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10789,He is holding the missing bird. He,He is holding the missing bird.,He,gold,\"stand by the window, trying to balance, trying to catch the chain and the handle stuck to someone's neck.\",opens the door of the second party on the porch.,closes the bird inside the cabinet and picks a single feather off his cuff.,runs around and makes a tiny chocolate cakes in the teens.\n1810,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72624,10788,\"In the cluttered room, someone holds the heavy cloth from the cabinet. He\",\"In the cluttered room, someone holds the heavy cloth from the cabinet.\",He,gold,is holding the missing bird.,\"strides through a cozy, worn chair.\",takes two twinkie bottles from his pocket.,looks at someone and grabs clothes in a shaker.\n1811,anetv_8wDm37sdBCI,16962,A person is down below and is swinging a fabric and hitting it onto something. A wide shot of a city,A person is down below and is swinging a fabric and hitting it onto something.,A wide shot of a city,gold,is shown from the from above.,is shown near the screen.,is shown in slow motion as a guide raise their hands.,is shown with tossing dog and fish in the air.\n1812,anetv_8wDm37sdBCI,16963,A wide shot of a city is shown from the from above. The view,A wide shot of a city is shown from the from above.,The view,gold,shows special effects melting down.,has a black brightness the whole time.,pans to other parts of the city and then zooms on other people hitting fabric onto an object as well.,shows the man swimming twice and the image is shown on the screen.\n1813,lsmdc1014_2012-79121,18413,Someone stares forlornly as someone walks off. Someone,Someone stares forlornly as someone walks off.,Someone,gold,enters someone's office and sits behind a chair.,\"swaggers over to someone, then jerks her head and pushes over to the footboard.\",goes into the cabin.,turns and draws over more troops.\n1814,lsmdc1014_2012-79121,18414,Someone goes into the cabin. She,Someone goes into the cabin.,She,gold,shakes it with her and puts it back down.,eats another bite of bread with someone.,leans against the wall.,sees someone sitting outside.\n1815,anetv_Pv6oIFroaCQ,3406,She takes the cookies out of the oven and takes a bite. She,She takes the cookies out of the oven and takes a bite.,She,gold,opens a bag of cookies out of a fridge and looks smiling her.,feeds a bite of the cookie to the dog next to her.,puts a towel through the cookies.,puts a bunch of cookies to the sink.\n1816,anetv_Pv6oIFroaCQ,1746,The cookie dough is placed in a pan and set into an oven. The baked cookies,The cookie dough is placed in a pan and set into an oven.,The baked cookies,gold,are sprinkled on the salad.,is peeled and chopped.,are removed from the oven.,are laid back in the oven.\n1817,anetv_Pv6oIFroaCQ,1745,The dry ingredients are added to a bowl with blended wet ingredients. The cookie dough,The dry ingredients are added to a bowl with blended wet ingredients.,The cookie dough,gold,is removed and baked out of the oven shows items flying on the oven.,is added to the end al.,is placed in a pan and set into an oven.,is rolled in strips and screwed on a tray.\n1818,anetv_Pv6oIFroaCQ,1747,The baked cookies are removed from the oven. The lady,The baked cookies are removed from the oven.,The lady,gold,looked happy and prepared to put cheese in a skillet.,is taking out the cookies.,wiped the baked cake with a towel.,discusses the recipe after the cookies have been made.\n1819,anetv_Pv6oIFroaCQ,1744,Dry ingredients are added to a separate bowl and mixed. The dry ingredients,Dry ingredients are added to a separate bowl and mixed.,The dry ingredients,gold,are mixed together and drinks into a bowl.,put three onto a plate.,are added to a bowl with blended wet ingredients.,are mixed together up with a large bowl.\n1820,anetv_Pv6oIFroaCQ,3401,A woman is wearing a purple apron. She,A woman is wearing a purple apron.,She,gold,is drying his hair with a toothbrush.,holds up a pair of scissors.,mixes ingredients together into a bowl and stirs it together.,sits in the dishes holding a glass of liquid.\n1821,anetv_Pv6oIFroaCQ,3402,She mixes ingredients together into a bowl and stirs it together. She,She mixes ingredients together into a bowl and stirs it together.,She,gold,puts the pan on the plate as she goes.,pokes the drink and puts an egg into the bowl.,balls it up and puts it on a cookie sheet.,washes the pot with the sponge.\n1822,anetv_Pv6oIFroaCQ,1748,The lady discusses the recipe after the cookies have been made. The lady,The lady discusses the recipe after the cookies have been made.,The lady,gold,pulls the pan over and puts clams onto an egg.,eats a baked good and shares with her dog.,demonstrates the title for a bottle.,sprinkles the cheese dough on a plate in front of her on the oven.\n1823,anetv_Pv6oIFroaCQ,1743,Butter and sugar are mixed in a bowl. Dry ingredients,Butter and sugar are mixed in a bowl.,Dry ingredients,gold,are added to a separate bowl and mixed.,are added to the blender in a bowl.,are mixed and put together in a bowl.,are drained and poured into a blender.\n1824,anetv_Pv6oIFroaCQ,3403,She balls it up and puts it on a cookie sheet. She,She balls it up and puts it on a cookie sheet.,She,gold,\"puts it in on the pan, and wraps it in a cookie sheet.\",caps a large sieve pot and cooks some sauce.,nudges the ball to the top for a bike to get it ready.,puts the cookie sheet into the oven.\n1825,anetv_Pv6oIFroaCQ,3405,She stands next to a brown dog and talks. She,She stands next to a brown dog and talks.,She,gold,starts grooming her dog with his hand.,moves on two cats stove and begins to show how to do zumba exercises.,takes the cookies out of the oven and takes a bite.,puts a red rod into a pan and goes.\n1826,anetv_Pv6oIFroaCQ,1742,A woman stands and discusses before beginning a dish. Butter and sugar,A woman stands and discusses before beginning a dish.,Butter and sugar,gold,are mixed in a bowl.,are put in the oven.,are cooked into a mixer.,are added onto the salad.\n1827,lsmdc3062_SORCERERS_APPRENTICE-30684,1599,Someone holds someone's gaze. The young man,Someone holds someone's gaze.,The young man,gold,tosses drumsticks in the distance to someone and someone.,\"shifts his eyes, then nods.\",looks up from his pew.,blinks as he opens his eyes.\n1828,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85271,18462,They are all wearing white tie and tails. Someone,They are all wearing white tie and tails.,Someone,gold,wanders out of view.,hops down to their table and trots over to sit on chairs on a wooden high table.,is tied up in bed.,is wearing a deep red dress.\n1829,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85271,18459,\"Delegates are arriving at the castle, expanding their back falls, which stumble hundreds of feet vertically down the mountainside. He\",\"Delegates are arriving at the castle, expanding their back falls, which stumble hundreds of feet vertically down the mountainside.\",He,gold,are engaged in fighting the battle.,tosses the grail in a vacant mitt.,got an elegant figure and top hat and overcoat.,stand under a waterfall in the middle of a highway.\n1830,lsmdc3064_SPARKLE_2012-4019,16616,She runs her hands up and down the mic stand. She,She runs her hands up and down the mic stand.,She,gold,gestures in someone's direction.,looks on anxiously as the marines arrive outside someone's house.,arranges knives over a shoe rack.,walks into the room with her mouth hanging wide.\n1831,lsmdc3064_SPARKLE_2012-4019,16614,\"Sister approaches a center microphone, walking seductively. Her face now in focus, the stunning lead singer\",\"Sister approaches a center microphone, walking seductively.\",\"Her face now in focus, the stunning lead singer\",gold,stands smartly and speaks.,swivels her body giving them a suspicious smile and gestures.,wraps her fingers around the microphone.,wrenches their opponent's leg up.\n1832,lsmdc3064_SPARKLE_2012-4019,16615,\"Her face now in focus, the stunning lead singer wraps her fingers around the microphone. She\",\"Her face now in focus, the stunning lead singer wraps her fingers around the microphone.\",She,gold,\"watches it pass behind someone, then approaches.\",runs her hands up and down the mic stand.,faces his book.,wears her hair wrapped around her left shoulder with the middle - aged woman.\n1833,lsmdc3064_SPARKLE_2012-4019,16607,Someone and someone head off. Someone and someone,Someone and someone head off.,Someone and someone,gold,enter a small wagon lined with rows of enemy in heavy uniforms walking nearby.,ride the escalator; protesters are hidden by ambulance.,\"step out on stage, each in a black conservative dress.\",sit in a patrol wagon parked beside a parked car.\n1834,lsmdc3064_SPARKLE_2012-4019,16610,\"Someone glances back at the drummer. Swaying to the music, someone\",Someone glances back at the drummer.,\"Swaying to the music, someone\",gold,gets to his feet.,trades a look with someone.,\"bobs his brow, puffing on his cigar.\",pulls his hands back.\n1835,lsmdc3064_SPARKLE_2012-4019,16611,\"Sitting at one of the tables, a woman calls out. Someone\",\"Sitting at one of the tables, a woman calls out.\",Someone,gold,locks the door to her flushed room.,smiles and tugs at his collar.,prepares his sedan and buckles it in a flask.,presses his lips toward hers.\n1836,lsmdc3064_SPARKLE_2012-4019,16613,Someone shifts his uncertain gaze. Sister,Someone shifts his uncertain gaze.,Sister,gold,turns and leaves the cafe whistling.,wipes down an oncoming map.,\"approaches a center microphone, walking seductively.\",\"stares sheepishly, then allows a brief smile.\"\n1837,lsmdc3064_SPARKLE_2012-4019,16612,Someone smiles and tugs at his collar. someone,Someone smiles and tugs at his collar.,someone,gold,opens the chain over his fist then hesitates.,rises off his feet.,glances for him then stares.,shifts his uncertain gaze.\n1838,anetv_fgQ2HYMl3pA,18945,People are playing soccer on the beach. A man,People are playing soccer on the beach.,A man,gold,grabs a violin and tools to put it in the rafters.,looks around then throws sand in a sand.,dives into the sand trying to block a goal.,walks to the cliff holding.\n1839,anetv_fgQ2HYMl3pA,13519,A picture of a person kicking a soccer ball is shown followed by three men kicking a ball around a sandy beach. They,A picture of a person kicking a soccer ball is shown followed by three men kicking a ball around a sandy beach.,They,gold,runs all along the field and shake off congratulates.,pass the ball back and fourth to one another while the goalie attempts to block any shot they may make.,play a kickball field in a series of goal drills.,continue riding a snowy object down the beach.\n1840,anetv_fgQ2HYMl3pA,18946,A man dives into the sand trying to block a goal. They,A man dives into the sand trying to block a goal.,They,gold,compete with a passing pro as a man does kicks.,\"jump onto the platform, twist and kick to the base of the pool.\",continue to play soccer on the beach.,parker continues swimming under the pool.\n1841,anetv_wQbVxdVTN-I,3423,He swings the axe at a stump. Another boy,He swings the axe at a stump.,Another boy,gold,\"runs around an island, throwing the axe into the wood.\",snatching a wooden stick back from a rooftop.,uses into the egg.,is shown doing the same thing.\n1842,anetv_wQbVxdVTN-I,3424,Another boy is shown doing the same thing. They,Another boy is shown doing the same thing.,They,gold,start to tug on the bowling.,have a space for him on it.,continue to try to split the wood.,do this on his own.\n1843,anetv_wQbVxdVTN-I,3422,A boy holds an axe outside. He,A boy holds an axe outside.,He,gold,lifts a camera before walking away from the ground.,puzzle again while sitting.,lassos a fresh calf.,swings the axe at a stump.\n1844,anetv_HuUIIKA3o_A,7699,A man is walking in a snow covered parking lot. He,A man is walking in a snow covered parking lot.,He,gold,puts shingles down and holds them together.,continues to ski across different ramps and jumping into the snow.,wipes the snow off the windows of a car.,gets up from the car and walks away.\n1845,anetv_HuUIIKA3o_A,7700,He wipes the snow off the windows of a car. He then,He wipes the snow off the windows of a car.,He then,gold,scrapes with a bottle of detergent and continues washing another car.,gets into the car and drives away.,gets out and starts wiping the car.,scraps the man's car.\n1846,anetv_HuUIIKA3o_A,3295,\"A snowy scene is shown, and a man walks through the snow of a parking lot to his car. He\",\"A snowy scene is shown, and a man walks through the snow of a parking lot to his car.\",He,gold,pulls the tire all it from place.,lift a garment follow a ski - hill cut him off with a fishing hook.,are putting their gear back on.,wipes the snow off his car before getting in and driving away.\n1847,anetv_Yp-NJgTAOCc,10657,The kids are inside a classroom watching a presentation by the man seen earlier. The kids,The kids are inside a classroom watching a presentation by the man seen earlier.,The kids,gold,begin playing the drums leeds.,\"begin several more times, some running and doing other things.\",are seen once again inside the gym practicing their breakdancing moves.,go rafting into the water on the beach.\n1848,anetv_Yp-NJgTAOCc,10658,The kids are seen once again inside the gym practicing their breakdancing moves. The screen goes black and a graphic,The kids are seen once again inside the gym practicing their breakdancing moves.,The screen goes black and a graphic,gold,appears on screen showing the company's logo and youtube channel information.,\"graphic appears with white text and this is the beginning of the video, with cream beside one another.\",features the stadium for the coaches.,emerges from the men.\n1849,anetv_Yp-NJgTAOCc,10655,\"The scene comes into focus showing the outside of a building, with some text at the bottom that says it is a school for breakdancing. A man\",\"The scene comes into focus showing the outside of a building, with some text at the bottom that says it is a school for breakdancing.\",A man,gold,is in various locations talking to a camera and out next to him with his mouth on fire.,is doing some paperwork while some other men are standing in the background next to a projector screen.,approaches a third lifeboat and stands still in position.,comes over to the crime line then makes sure they are listening to the camera in different room.\n1850,lsmdc1001_Flight-71628,2792,Then pushes out a small drop that slides down the needle. She,Then pushes out a small drop that slides down the needle.,She,gold,flips the juice away from the table.,folds a small envelope used to tear at his back blade.,adjusts the lenses rattling and her hand.,tightens a tourniquet around her arm and holds the end securely in her mouth.\n1851,lsmdc1001_Flight-71628,2798,Her dilated pupils shrink to tiny dots. She,Her dilated pupils shrink to tiny dots.,She,gold,grabs the packet of cocaine that someone gave her and falls on her side.,float completely beneath it.,\"kisses someone's cheek, and then hugs him tight.\",puts under the blankets.\n1852,lsmdc1001_Flight-71628,2800,The packet falls inches from her hand. Her fingers,The packet falls inches from her hand.,Her fingers,gold,are creased with rosy fingers.,wipe blood from someone's cheek.,shut the door handle.,\"reach out, but only push it away.\"\n1853,lsmdc1001_Flight-71628,2797,Her head lulls to her shoulder. Her dilated pupils,Her head lulls to her shoulder.,Her dilated pupils,gold,shrink to tiny dots.,shrink to a human form.,seems to shrink into her skin.,extend to a form.\n1854,lsmdc1001_Flight-71628,2795,Her arms relax and she lets go of the syringe. The strap,Her arms relax and she lets go of the syringe.,The strap,gold,falls on a nearby clock.,falls from her mouth.,falls upon her arm.,lifts the weight over her head.\n1855,lsmdc1001_Flight-71628,2793,She tightens a tourniquet around her arm and holds the end securely in her mouth. She,She tightens a tourniquet around her arm and holds the end securely in her mouth.,She,gold,positions the needle and injects.,hands it over to her.,shifts her gaze and finally throws it down.,swings to help someone from the chair.\n1856,lsmdc1001_Flight-71628,2794,She positions the needle and injects. Her arms relax and she,She positions the needle and injects.,Her arms relax and she,gold,\"looks anxiously, then turns and walks past her desk.\",puts both hands over her clock.,lets go of the syringe.,puts one series of socks to her head.\n1857,lsmdc1001_Flight-71628,2799,She grabs the packet of cocaine that someone gave her and falls on her side. The packet,She grabs the packet of cocaine that someone gave her and falls on her side.,The packet,gold,ends under someone's completed form.,falls inches from her hand.,is packed with a crumpled box.,is placed in a pot.\n1858,lsmdc1001_Flight-71628,2791,Someone lightly taps the syringe. Then,Someone lightly taps the syringe.,Then,gold,speeds through the gate and speeds off.,\"closes another door softly, then peers down at him from the stairs below.\",pushes out a small drop that slides down the needle.,swallows a sigh as the back of her head keels forward.\n1859,lsmdc1001_Flight-71628,2801,\"Her fingers reach out, but only push it away. Her hand\",\"Her fingers reach out, but only push it away.\",Her hand,gold,leaps up and falls pat her back.,becomes larger and harder.,stretches out around the submarine's jagged wire.,goes still as feet appear under the door.\n1860,lsmdc1001_Flight-71628,2802,\"Her hand goes still as feet appear under the door. In the cockpit, someone\",Her hand goes still as feet appear under the door.,\"In the cockpit, someone\",gold,blindly runs onto the jet.,sleeps with paper covering his eyes and his sunglasses over the paper.,peers around the destroyed submarine.,hangs around the tossed furniture yelling for supporting.\n1861,lsmdc1001_Flight-71628,2789,\"He takes a long drink as someone exits the toilet and he goes in. In someone's apartment, framed photographs on the table\",He takes a long drink as someone exits the toilet and he goes in.,\"In someone's apartment, framed photographs on the table\",gold,are stacked together on the wall and leads to an baggage claim area.,stand their positions below.,\"show a younger, smiling someone with her mother.\",go to a view of the open door to someone's room.\n1862,lsmdc3045_LAND_OF_THE_LOST-21304,1318,Someone follows someone past the crystals. They,Someone follows someone past the crystals.,They,gold,hide behind a wall.,\"begin again in reverse, but the mjolnir are locked in a hovering sphere.\",go through the distant striking boards to give two more commands.,see the people in the lifeboat before going down a brick corridor.\n1863,lsmdc3045_LAND_OF_THE_LOST-21304,1315,\"Inside the cavern, someone pops up, shifting his eyes side to side. He\",\"Inside the cavern, someone pops up, shifting his eyes side to side.\",He,gold,shields his eyes in the windshield which rears up.,looks through the watching door.,makes his way round up one of the women's lanes.,attempts to move stealthily amid the crystals.\n1864,lsmdc3045_LAND_OF_THE_LOST-21304,1316,\"He attempts to move stealthily amid the crystals. Looking back, he\",He attempts to move stealthily amid the crystals.,\"Looking back, he\",gold,sees someone's shadow form a section of a huge parked wood paneled wall.,finds it awarded master someone.,flashes a complex set of hand signals.,bashes through the balcony doors as he finds a disappeared old figure moving with an empty cup of narrow metal pane.\n1865,lsmdc3045_LAND_OF_THE_LOST-21304,1319,\"They hide behind a wall. Beyond an opening into another chamber, two Sleestaks\",They hide behind a wall.,\"Beyond an opening into another chamber, two Sleestaks\",gold,crack off into a bigger hole.,look at a wall to fail.,stands face to face.,are stacked in a large field.\n1866,anetv_tJcbG_HGZE8,10716,A person gets on a computer and prints something. They,A person gets on a computer and prints something.,They,gold,get away on the game.,use mail with tweezers.,pop up from the outside of the plastic cages.,stick that to their door.\n1867,anetv_tJcbG_HGZE8,10715,A pair of scissors is on a table. A person,A pair of scissors is on a table.,A person,gold,comes and rocks it towards the chair then trims it.,is sharpening a potato with a knife.,is using hand wax on the rake.,gets on a computer and prints something.\n1868,anetv_7knqgoHxuGE,8955,Several people are at a party. They,Several people are at a party.,They,gold,throw objects to three cups.,are practicing stunts on biking bikes.,are drinking and playing beer pong.,are being pulled into a ride.\n1869,anetv_upic9S0oEhg,1104,Two men play a song on a guitars together in a dimly lit room. Ones down,Two men play a song on a guitars together in a dimly lit room.,Ones down,gold,to the drums and leads into scissors.,to play the acoustic guitar.,are shown and other objects show the fourth set of grass.,\"are badminton, the girls describes how to sit outside talking to music.\"\n1870,anetv_TdqEtrrPX_Q,6367,The photographer is lying on his side taking picture of the man lying on his back. The man in red jacket,The photographer is lying on his side taking picture of the man lying on his back.,The man in red jacket,gold,threw the frisbee up in the air.,starts pulling with his hair from the top of the hill.,lies on the equipment instructor of the pre - combat lounge.,runs through the room and spots the man on the bench.\n1871,anetv_TdqEtrrPX_Q,2743,These two men are lying on the ground close to yellow frisbees. The man who's wearing a red shirt throws a yellow frisbee into the air and the dog,These two men are lying on the ground close to yellow frisbees.,The man who's wearing a red shirt throws a yellow frisbee into the air and the dog,gold,is sailing on the ground.,takes the leash of a toy.,stops and stands up a little and he tries to catch it.,jumps up to catch it in its mouth while the other man who's lying down is recording using a camera.\n1872,anetv_TdqEtrrPX_Q,6368,The man in red jacket threw the frisbee up in the air. The dog,The man in red jacket threw the frisbee up in the air.,The dog,gold,jumped over the man in red and caught the frisbee.,fell on the grass and landed on the floor before the man.,catches a frisbee being chased and one girl chases the other.,fell on the ground as the crowd watches.\n1873,anetv_4DMnMu2Cb_c,3414,She is shown braiding her hair. She,She is shown braiding her hair.,She,gold,continues to play her hair together as well as she styles her hair.,starts braiding her hair.,puts her hands all over the bucket and continues to talk.,continues braiding and pinning it up into a style.\n1874,anetv_4DMnMu2Cb_c,18132,A woman is showing her hair to the camera. She,A woman is showing her hair to the camera.,She,gold,starts braiding her hair.,uses a shaver to cut her hair in sections.,demonstrates how to mop the floor on a rug.,glues around the nails.\n1875,anetv_4DMnMu2Cb_c,3413,A woman is seated in front of the camera. She,A woman is seated in front of the camera.,She,gold,is shown braiding her hair.,brushes off the end of her hair.,begins to shave her hair.,is running around the track and sprinting along dirt path.\n1876,anetv_4DMnMu2Cb_c,18133,She starts braiding her hair. She,She starts braiding her hair.,She,gold,turns around and shows her hair to the camera.,continues the hair cut on one side.,puts cement on her hair.,continues carefully leading her hair and ends by twisted the hair around her neck as well as her hair.\n1877,anetv_ykov_joUUTk,15310,A man is shown wearing martial arts clothing inside a house. He,A man is shown wearing martial arts clothing inside a house.,He,gold,wears a blue suit and cut white.,is doing several moves with his hands for balance.,is using a jacket while walks outside a house.,walks over to him and begins to show how to examine the shoes.\n1878,anetv_ykov_joUUTk,15311,He is doing several moves with his hands for balance. He,He is doing several moves with his hands for balance.,He,gold,walks in and out of frame.,\"runs in circles, jumping about suspended balancing on his ankles.\",catches it and begins emptying on the bars and doing hand springs.,\"lifts his body, does a handstand, then goes into numerous other moves.\"\n1879,anetv_ykov_joUUTk,2024,A man is seen bending down before the camera performing martial arts moves. He,A man is seen bending down before the camera performing martial arts moves.,He,gold,continues playing the great drums after the horse.,goes down all along the bars while speaking to the camera in the end.,are going down the hills with one another in the end.,kicks and swings his legs around while the camera captures his movements.\n1880,anetv_ykov_joUUTk,2025,He kicks and swings his legs around while the camera captures his movements. He,He kicks and swings his legs around while the camera captures his movements.,He,gold,pulls the string and begins to play.,continues playing while the camera captures his movements and then fades to the camera.,glances up and then returns to the field pitch.,continues jumping around performing many kicks and facing back to the camera.\n1881,lsmdc3009_BATTLE_LOS_ANGELES-545,6382,\"Outside, someone steps around the Humvee. They\",\"Outside, someone steps around the Humvee.\",They,gold,note - with a dirt mailbox on the road.,creep into the magnificent architecture.,\"rush to the helicopter, where a crew chief meets them.\",looks alongside and spots an approaching vehicle pulling out towards them.\n1882,lsmdc3009_BATTLE_LOS_ANGELES-545,6385,Staff sergeant looks over the area and glances skyward. The helicopter,Staff sergeant looks over the area and glances skyward.,The helicopter,gold,passes by someone and the men wounded slowly.,arrives with an appreciative sigh and snaps back to someone.,rises above the sandbag bunker and over the desolate lot.,rises to the surface and a large crystal chandelier fills the pitch.\n1883,lsmdc3009_BATTLE_LOS_ANGELES-545,6387,\"As someone peers through a binocular, someone shifts his troubled gaze. Beyond the chopper, scattered fires\",\"As someone peers through a binocular, someone shifts his troubled gaze.\",\"Beyond the chopper, scattered fires\",gold,appear in the darkening sky.,light up the sprawling city.,shoot someone at the sun.,rising under a snowy sky.\n1884,lsmdc3009_BATTLE_LOS_ANGELES-545,6390,\"Someone adjusts his helmet above his narrowed eyes. The weary, disheveled group\",Someone adjusts his helmet above his narrowed eyes.,\"The weary, disheveled group\",gold,\"slumped and hunched forward, eyes narrowed, as men convoy the barricade to the bushes.\",\"sits, huddled in the cabin.\",turned to the binoculars.,wears a short jacket with quivers silencer on.\n1885,lsmdc3009_BATTLE_LOS_ANGELES-545,6383,Someone climbs aboard with the civilians and his fellow soldiers. Hector,Someone climbs aboard with the civilians and his fellow soldiers.,Hector,gold,sits on the vet's lap.,aims a gun - gun at the coffin where nothing else is engaged.,\"the clothes and leaves, someone punches the teller in a cloud of dust.\",leans back a little and steps back over the bus.\n1886,lsmdc3009_BATTLE_LOS_ANGELES-545,6384,Hector sits on the vet's lap. Staff sergeant,Hector sits on the vet's lap.,Staff sergeant,gold,pitches someone's image in the scanner.,stands by a cell table.,looks over the area and glances skyward.,looks his star to the shoulder.\n1887,lsmdc3009_BATTLE_LOS_ANGELES-545,6381,\"Someone takes off his helmet. Outside, someone\",Someone takes off his helmet.,\"Outside, someone\",gold,steps around the humvee.,runs out from the truck.,grabs cds from a london girder roof.,sits in front of the limo boulevard.\n1888,lsmdc3009_BATTLE_LOS_ANGELES-545,6388,\"Beyond the chopper, scattered fires light up the sprawling city. In distant downtown skyscrapers\",\"Beyond the chopper, scattered fires light up the sprawling city.\",In distant downtown skyscrapers,gold,\", the film shows red rows.\",\", a man jet skis in the drawn dusty beige water.\",\", we float from the teenager's glassy eyes as the sun is parked.\",burn like roman candles.\n1889,lsmdc3009_BATTLE_LOS_ANGELES-545,6386,\"The helicopter rises above the sandbag bunker and over the desolate lot. As someone peers through a binocular, someone\",The helicopter rises above the sandbag bunker and over the desolate lot.,\"As someone peers through a binocular, someone\",gold,shifts his troubled gaze.,spies at someone's feet.,joins him on the sign.,sits with his hands resting atop an oar.\n1890,lsmdc3009_BATTLE_LOS_ANGELES-545,6389,In distant downtown skyscrapers burn like Roman candles. Someone,In distant downtown skyscrapers burn like Roman candles.,Someone,gold,shines a car in her cabin window.,adjusts his helmet above his narrowed eyes.,drops the sheet and sets down a bag.,shows his seating face.\n1891,anetv__jxpaVW4_cE,13268,A woman is holding onto a camel. A group of kids,A woman is holding onto a camel.,A group of kids,gold,are riding the camels with people and a few people walk around with their suitcases.,dancing to present one another.,climb on the back of the animal.,riding the race camels.\n1892,anetv__jxpaVW4_cE,13269,A group of kids climb on the back of the animal. They,A group of kids climb on the back of the animal.,They,gold,move and hold frisbees move.,are moving up and down on top of the canvas.,\"wave, riding the camel around the enclosure.\",kick their arms back and forth.\n1893,anetv__jxpaVW4_cE,12183,The woman leads the camel around with the kids as they wave to the camera and let the kids off when they return back. The camera,The woman leads the camel around with the kids as they wave to the camera and let the kids off when they return back.,The camera,gold,pans all around and into the side and ends with the dog waving.,pans back to her using a guest and handing out a paper ball that leads to her smiling.,\"pans over the people, ending with them riding along with the dog.\",comes back to the kids as they walk away from the area.\n1894,anetv__jxpaVW4_cE,12182,A person is seen putting three small children on a camel while a woman stands in front and the kids wave. The woman,A person is seen putting three small children on a camel while a woman stands in front and the kids wave.,The woman,gold,slides the bike up and grabs the lady parts back while showing off the clip.,leads the camel around with the kids as they wave to the camera and let the kids off when they return back.,looks down as she does many sit ups.,begins jumping up and down on the monkey bars.\n1895,anetv_YMSMASHyl2Y,8125,A woman dressed in a black top is talking about American Grooming services for pets. She,A woman dressed in a black top is talking about American Grooming services for pets.,She,gold,is then shown to the camera.,is running in a field before getting a hit and throwing three frisbee in the air.,demonstrates all the various grooming services that her company provides for pets.,wipes her hands with a small brush and begins brushing her hair.\n1896,anetv_YMSMASHyl2Y,8126,She demonstrates all the various grooming services that her company provides for pets. There,She demonstrates all the various grooming services that her company provides for pets.,There,gold,are also groomed to front of the car.,are several groomers working on dogs as they trim and shear pet hair and clip their nails.,picks the ignition and continues performing tricks with her dog.,are a final product.\n1897,lsmdc3038_ITS_COMPLICATED-17532,17997,\"Nighttime, someone and someone raid the fridge someone joins them. Someone\",\"Nighttime, someone and someone raid the fridge someone joins them.\",Someone,gold,hides along the couch.,hands him a plastic tub.,gives a peace sign.,are a pretty disturbed lounge situated in a large wooden planter.\n1898,lsmdc3038_ITS_COMPLICATED-17532,17992,She hugs him and pats his back. She,She hugs him and pats his back.,She,gold,kisses her right hand.,hurries to sultry dark haired niece.,follows in the bathroom.,fans herself with her hat.\n1899,lsmdc3038_ITS_COMPLICATED-17532,17996,\"Someone catches someone's eye and mouths, i'm so happy. Nighttime, someone and someone\",\"Someone catches someone's eye and mouths, i'm so happy.\",\"Nighttime, someone and someone\",gold,raid the fridge someone joins them.,fall out of the truck into the front of the diner.,crash amid several fields of microphones.,are enjoying themselves away from the video.\n1900,lsmdc3038_ITS_COMPLICATED-17532,17993,She frowns and turns her back to him. He,She frowns and turns her back to him.,He,gold,smile and drops his gaze.,hangs her head and furrows her brow.,\"touches his chin, then bashes his head into her hand.\",leans for the counter.\n1901,lsmdc3038_ITS_COMPLICATED-17532,17995,He hands the bowl to someone then one to someone and someone. He sits between someone and someone with the third bowl and they,He hands the bowl to someone then one to someone and someone.,He sits between someone and someone with the third bowl and they,gold,are all floating against a surf.,smile at the tv.,round him and hug each other.,take out and another year.\n1902,lsmdc3038_ITS_COMPLICATED-17532,17994,\"Later, someone serves popcorn to his family as they snuggle under blankets in front of the television. He\",\"Later, someone serves popcorn to his family as they snuggle under blankets in front of the television.\",He,gold,takes another cup of coffee from the empty table.,\"unleashes an ropes to a young lady as they lie in a bench, kissing tenderly.\",\"melts the po, takes a bite from his mouth, stares down at it.\",hands the bowl to someone then one to someone and someone.\n1903,anetv_HddRC-twMLc,5438,There's man dressed in a blue shirt and blue shorts shooting darts in a room that has beige walls. He,There's man dressed in a blue shirt and blue shorts shooting darts in a room that has beige walls.,He,gold,jumps up the mechanical bars and bungee jumps.,has two darts in his hands which he aims and shoots at a target.,is attempting to wrestle a ball and into the speeding score.,are using bowling balls as he reaches the front corner stairs in the room until he takes off running straight through the polished stick.\n1904,lsmdc3014_CAPTAIN_AMERICA-5455,19602,A technician flips a lever. He,A technician flips a lever.,He,gold,leans up and exhales.,pulls himself out of view.,pulls a container out of someone's kit.,\"grimaces, then snaps his eyes open.\"\n1905,lsmdc3014_CAPTAIN_AMERICA-5455,19604,\"Pacing in front of a long control panel, Stark turns a dial. Putting on a pair of glasses with dark lenses, he\",\"Pacing in front of a long control panel, Stark turns a dial.\",\"Putting on a pair of glasses with dark lenses, he\",gold,focuses at a book on a wall next to an vacant living area.,holds a small canister and booth syrup growing on his father.,\"finds himself unconscious on a balcony bench, breathing heavily.\",grabs a metal wheel and turns it with both hands.\n1906,lsmdc3014_CAPTAIN_AMERICA-5455,19603,\"Standing nearby someone, someone pulls a switch. Someone\",\"Standing nearby someone, someone pulls a switch.\",Someone,gold,raps his knuckles on a small window in the front of the pod.,stops a pale honda.,lies on his leather couch between someone's couch.,fights someone in an offices.\n1907,anetv_no9vPN7D-1s,8401,A person in an orange protective suit and a metal black mask solders something in an industrial setting. A person,A person in an orange protective suit and a metal black mask solders something in an industrial setting.,A person,gold,is seen hanging from a machine and the fire and who is hammering it.,shifts it while rotating his hands rhythmically.,stands next to a black box in a metal helmet as fire sparks erupt from a wired box on the right.,\"attaches a man to the water in a demonstration of carpet and insert, while continuing to vacuum.\"\n1908,anetv_no9vPN7D-1s,8402,A person stands next to a black box in a metal helmet as fire sparks erupt from a wired box on the right. A large grey wheel spins behind the worker in the midst of the fire sparks and another worker,A person stands next to a black box in a metal helmet as fire sparks erupt from a wired box on the right.,A large grey wheel spins behind the worker in the midst of the fire sparks and another worker,gold,is shown rowing the boat's wheels.,uses his arm to hack them out.,walking by in a blue protective suit.,begins to move and close the disk.\n1909,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73153,14738,\"Photographers takes pictures as she lifts her sleek, jet black hair over her head and wades gracefully towards someone. Clutching her long hair in a bun, she\",\"Photographers takes pictures as she lifts her sleek, jet black hair over her head and wades gracefully towards someone.\",\"Clutching her long hair in a bun, she\",gold,wraps the silk scarf around his neck.,\"shuffles toward the bride, then slides to her knees and dabs woefully in her eyes.\",smiles flirtatiously for the camera.,flies across a desert landscape.\n1910,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73153,14740,\"She pulls herself up out of the water, her wet dress clinging to the sinuous curves of her lean, shapely body. Someone\",\"She pulls herself up out of the water, her wet dress clinging to the sinuous curves of her lean, shapely body.\",Someone,gold,studies a porcelain porcelain doll's face.,\", back at the assistant's, someone sits down again on the sofa, balancing on her crossed foot.\",speaks on her cell phone as they leave.,catches a glimpse of someone's leg still exposed and takes off her skirt with some cocaine as her dog slows to a halt.\n1911,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73153,14737,\"Smiling, she scratches her head, then kicks off her glittering high heels before stepping fully clothed into the pool. Photographers\",\"Smiling, she scratches her head, then kicks off her glittering high heels before stepping fully clothed into the pool.\",Photographers,gold,looks together then slowly pull out his windscreen.,\"at the reception, someone pulls off her boots, then pins them wounded with her dress.\",\"rubs her hand from across her shoulders, dropping her arms in a cold air and firing heavily.\",\"takes pictures as she lifts her sleek, jet black hair over her head and wades gracefully towards someone.\"\n1912,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73153,14736,\"Pulling up the poolside, someone looks around for an appropriate route but is hemmed in by guests absorbed in conversation. Smiling, she\",\"Pulling up the poolside, someone looks around for an appropriate route but is hemmed in by guests absorbed in conversation.\",\"Smiling, she\",gold,waits and is frowning.,crosses the corridors lean forward.,strolls across the living room.,\"scratches her head, then kicks off her glittering high heels before stepping fully clothed into the pool.\"\n1913,anetv_xDc407xoYUM,10657,\"The man holds a sandwich with his right hand and the rope with the left hand. Then, the man\",The man holds a sandwich with his right hand and the rope with the left hand.,\"Then, the man\",gold,\"cut and on the man, talking and then hangs parts in a gym.\",\"puts a sheet on the skin next to him again, then uses a cap on the shirt to spin him.\",\"free the rope and takes from his behind a cup, after the rope seems floating in the air.\",begins to break the end ball further with his left hand.\n1914,anetv_xDc407xoYUM,10656,\"A man water ski pulled by a boat, then the driver of the boat gives thump up while a woman watch him. The man\",\"A man water ski pulled by a boat, then the driver of the boat gives thump up while a woman watch him.\",The man,gold,puts a ski on the board as a other man is seen in the boat with his sail.,rides to the boat and stops next a lake before taking another off of two men and doing interviews.,holds a sandwich with his right hand and the rope with the left hand.,falls on the water holding the skateboard.\n1915,anetv_xDc407xoYUM,10659,\"The man continues water skiing in the river. Suddenly, a person comes water skiing and hit the man who hit back in his face, and the person\",The man continues water skiing in the river.,\"Suddenly, a person comes water skiing and hit the man who hit back in his face, and the person\",gold,\"waves to post, across a large rock rock, while holding his oar in the air.\",is surfing on water in the water.,falls in the water.,sits on surface or dies waterskiing.\n1916,anetv_xDc407xoYUM,1440,\"A man appears in a small body of water holding on to a rope attached to a boat, gliding across the water. All of a sudden, he reappears with a burger and a shake in hand and sailing but he\",\"A man appears in a small body of water holding on to a rope attached to a boat, gliding across the water.\",\"All of a sudden, he reappears with a burger and a shake in hand and sailing but he\",gold,is a cup tanks going by times.,is the one he extremely trim and self fitting shorts is huge.,is forced to do a run on us.,is n't holding on.\n1917,lsmdc3047_LIFE_OF_PI-21884,6375,\"Leaving his seat, the skinny, sad - eyed someone marches up to the front of the class. He\",\"Leaving his seat, the skinny, sad - eyed someone marches up to the front of the class.\",He,gold,writes on a chalkboard.,is casually escorted from the boxer's rooms.,\"is standing in the living room, smoking a cigarette.\",spins down a hallway wearing an art equipment.\n1918,lsmdc3047_LIFE_OF_PI-21884,6374,\"Noticing what's in his hands, he puts it down. Leaving his seat, the skinny, sad - eyed someone\",\"Noticing what's in his hands, he puts it down.\",\"Leaving his seat, the skinny, sad - eyed someone\",gold,stares out from behind the balls.,downs the rest of his gallon of wine.,marches up to the front of the class.,leans toward him as the unconscious someone on his feet.\n1919,lsmdc3011_BLIND_DATING-874,14563,\"Fighting back tears, someone nods. Her mother\",\"Fighting back tears, someone nods.\",Her mother,gold,\"folds herself tightly against a wall, then kneels in the seat beneath the hospital pillow.\",\"steps forward, hands her one carving paper, and shows photographs of the girls.\",holds her in a gentle embrace.,squeezes her eyes shut.\n1920,lsmdc3011_BLIND_DATING-874,14564,\"Her mother holds her in a gentle embrace. In the park, she\",Her mother holds her in a gentle embrace.,\"In the park, she\",gold,sits near a pond with someone.,switches on a lamp and sits by her.,slides back through the window toward the house.,stares at the tight - lipped tropical trees with a remorseful expression.\n1921,lsmdc3011_BLIND_DATING-874,14566,He takes his hand out of hers. Someone's lips,He takes his hand out of hers.,Someone's lips,gold,crease into a broad grin.,curl into a hint of a grin.,\"quiver a truth trickle, then he lowers his gaze as she winces.\",tremble as he searches for words.\n1922,lsmdc3011_BLIND_DATING-874,14561,\"Now, the sun sets behind power lines. In the Crimson Elephant, someone\",\"Now, the sun sets behind power lines.\",\"In the Crimson Elephant, someone\",gold,sits with her mother.,stands in a mirror.,lies in the bonnet.,reads in canned flame.\n1923,lsmdc3011_BLIND_DATING-874,14562,\"In the Crimson Elephant, someone sits with her mother. Her mother\",\"In the Crimson Elephant, someone sits with her mother.\",Her mother,gold,\"steps forward, then shuts her eyes and scowls.\",looks at her dead uncle.,covers someone's hands with her own.,presses her lips together then salutes with the other.\n1924,lsmdc3011_BLIND_DATING-874,14560,\"On a park bench, someone and someone hold hands. Now, the sun\",\"On a park bench, someone and someone hold hands.\",\"Now, the sun\",gold,sets behind power lines.,sets up on the sunny barn.,masonry through a landscape of hurriedly rising earth.,is now entering the school office.\n1925,lsmdc3011_BLIND_DATING-874,14565,\"In the park, she sits near a pond with someone. He\",\"In the park, she sits near a pond with someone.\",He,gold,strokes her chin as she drags the documents across the apartment.,watches someone she glides her way down the road and down the deserted streets.,glances about toward her car.,takes his hand out of hers.\n1926,anetv_sWEbq5Ry63Q,12541,He then moves to bars around and spinning the wheel followed by a stick pressing against the tire. He,He then moves to bars around and spinning the wheel followed by a stick pressing against the tire.,He,gold,pushes a tube into the tire and adjusts the wires using a device.,continues walking around as he moves past more buildings and faces a steer.,shows her tumbling while stopping to change everything and still speaking to the camera.,continues hitting the drone and ends by turning back into the camera again.\n1927,anetv_sWEbq5Ry63Q,12540,A man is shown point to a bicycle tire and cutting a piece of wire using pliers. He then,A man is shown point to a bicycle tire and cutting a piece of wire using pliers.,He then,gold,closes the tire on a bike and rubs it onto wall paper while talking to the camera.,moves to bars around and spinning the wheel followed by a stick pressing against the tire.,uses different pieces of the tractor along with detergent and spray and attaches on different snowboard.,spins the tool all along the counter with it and un it out past a slat.\n1928,anetv_6HmKyms-U2s,18730,The boy in red is unable to return the serve causing the ball fall down again. They,The boy in red is unable to return the serve causing the ball fall down again.,They,gold,\", the guy in the red and blue sweatshirt makes it for the other side of the net.\",circle a slow shot of the match and the man hit the pinata that he missed.,continue playing racket ball taking turns in serving and returning the balls.,continue except one with the 10 balls over the ice.\n1929,anetv_6HmKyms-U2s,11890,The hardwood floors have red stripes on them. The kids,The hardwood floors have red stripes on them.,The kids,gold,lash out the back of the fence almost fall it before getting out.,stands by themselves as they start rowing.,are hanging up and dusty on boxing.,hit the ball off the wall.\n1930,anetv_6HmKyms-U2s,18729,The boy in brown hits a back hand which goes on the other side Then the boy in red gives the ball to the other player who again serves. The boy in red,The boy in brown hits a back hand which goes on the other side Then the boy in red gives the ball to the other player who again serves.,The boy in red,gold,leaves the court and runs through the people celebrating with their foosball.,picks up the mallet hits him again and lays the ball on the ground.,shorts hits the ball and celebrates.,is unable to return the serve causing the ball fall down again.\n1931,anetv_6HmKyms-U2s,18728,\"There are two young boys, one in a brown shirt and the other in a red shirt playing racket ball in an indoor court. The boy in brown hits a back hand which goes on the other side Then the boy in red\",\"There are two young boys, one in a brown shirt and the other in a red shirt playing racket ball in an indoor court.\",The boy in brown hits a back hand which goes on the other side Then the boy in red,gold,and white shirt misses the ball.,gives the ball to the other player who again serves.,shirt misses the ball and slow throws it.,hits the ball from right to right.\n1932,anetv_6HmKyms-U2s,18732,The boy in red uses both hands to return the serve from the boy in brown. They,The boy in red uses both hands to return the serve from the boy in brown.,They,gold,take each test of a new out of the horse football player.,hit the ball alternatively to return the opponents serve.,continues to hold him in his arms and lays down on the bar.,lay the paper on the ground again and end out of the room.\n1933,anetv_6HmKyms-U2s,11889,Two kids play raquetball in a room. The hardwood floors,Two kids play raquetball in a room.,The hardwood floors,gold,have red stripes on them.,are covered in the floor of a tile.,do flips and taping.,are shown stacked on.\n1934,anetv_6HmKyms-U2s,18731,They continue playing racket ball taking turns in serving and returning the balls. The boy in red,They continue playing racket ball taking turns in serving and returning the balls.,The boy in red,gold,walks down to finish.,shirt hoovering the ball.,walks over again and serves several more players.,uses both hands to return the serve from the boy in brown.\n1935,anetv_dQR6VEemP24,15234,A dog is standing in a bath tub. A person,A dog is standing in a bath tub.,A person,gold,is spraying the dog with a shower nozzle.,is seen getting around in a bath.,is using a hand changing the white covered sink in the bathtub.,uses a paper towel to wipe someone's face.\n1936,anetv_dQR6VEemP24,7578,\"A small dog is in a tub, and woman uses a sprayer to get him wet. He\",\"A small dog is in a tub, and woman uses a sprayer to get him wet.\",He,gold,\"tries to get out, as she soaps him down and scrubs him clean.\",goes in the water.,\"wipes the dog under the hose, then puts on to face the shelf and cleans the sink, then quickly gets soap.\",\"continues to talk in front of his pool, but the video ends with the driver speaking to the camera.\"\n1937,anetv_dQR6VEemP24,15235,A person is spraying the dog with a shower nozzle. They,A person is spraying the dog with a shower nozzle.,They,gold,wipe the shoes with a blue rag.,run outside of the house.,start drying the dog off with a towel.,get used on the floor and raise like smoke joyfully.\n1938,anetv_dQR6VEemP24,7579,\"He tries to get out, as she soaps him down and scrubs him clean. She then\",\"He tries to get out, as she soaps him down and scrubs him clean.\",She then,gold,slides down the lid under the white continues and wipes the water as the face of her face is cleaned.,\"begins drinking a cup of coffee, but sprays the corpse into a man's face.\",brushes her face with paint and wipes down the glass wash and begins putting it in a dish towel.,\"rinses him with the sprayer, and towels him dry.\"\n1939,anetv_-BVpaPkee2I,15545,An athletic woman is seen talking to the camera and leads into her teaching a cycling class with others. More shots of her leading,An athletic woman is seen talking to the camera and leads into her teaching a cycling class with others.,More shots of her leading,gold,are shown followed by various people performing a gymnastics routine together.,are shown as well as more ref taking pictures.,performing on the mat are shown as well as riding on in a gym and ends by walking to one another.,are shown in different areas.\n1940,anetv_fCE3Eo7_Nmw,15813,\"A person takes a knife and cut the ends of a potato, then the person peels the potato. After, the person\",\"A person takes a knife and cut the ends of a potato, then the person peels the potato.\",\"After, the person\",gold,takes off the wet potato from the sink.,polish the leaves with the object and takes the manis.,cut the potato in squares.,put onions on a roof and then put cleaning and places it on the apples.\n1941,lsmdc3011_BLIND_DATING-1144,14810,\"She has a gloomy expression. Meanwhile, the bus\",She has a gloomy expression.,\"Meanwhile, the bus\",gold,arrives at a terminal.,drives past an arriving autumn center.,gets returned to balmoral.,pulls up in someone's house.\n1942,anetv_qJrJeICcevI,2189,A bunch of people ride camels. The camel,A bunch of people ride camels.,The camel,gold,sits their right side up and takes clothes from the camel.,sit on camels with a lady on the left.,begins to tie 3.,gets down and kneels.\n1943,anetv_U7QjLGMeGOo,9752,A little boy in a blue Halloween costume rolls a bowling ball down a blue carpeted bowling alley like run way. The boy,A little boy in a blue Halloween costume rolls a bowling ball down a blue carpeted bowling alley like run way.,The boy,gold,misses the pens and gets candy instead at which point a little girl in a black and pink tutu rolls the bowling ball instead.,\"balances himself around the trampoline course on a lane, trying to hit a pinata then his left.\",stops and runs to go on one of the knives.,is in front of a bowling perform.\n1944,anetv_U7QjLGMeGOo,9751,A group of children at an outdoor Halloween party wait in line with trick or treat bags to play outdoor children's bowling game. A little boy in a blue Halloween costume,A group of children at an outdoor Halloween party wait in line with trick or treat bags to play outdoor children's bowling game.,A little boy in a blue Halloween costume,gold,talks to the camera children then young glasses girl next to him's in polo's pool and dog dribbling restaurant and hit.,\"is on the ground beside the kids, kicking the ball with the ball.\",rolls a bowling ball down a blue carpeted bowling alley like run way.,serves his catch and the man hug the woman then continue talking to the boy who gives the child a small kick.\n1945,anetv_U7QjLGMeGOo,11085,There is a little boy trying to roll a blue ball into the pins. Then a girl who has been waiting in line,There is a little boy trying to roll a blue ball into the pins.,Then a girl who has been waiting in line,gold,\"goes to measure the distance, shot shot before while the entire coach helped her down.\",and they is playing lee.,\"with a bowling ball, trots to the other side by the park and sits.\",tries to knock the bowling pins down.\n1946,anetv_x2CZHFxoZaM,17430,A man is crossing the finish line of a race. Lots of people,A man is crossing the finish line of a race.,Lots of people,gold,are running in a race.,are sitting around him watching.,are standing behind him watching.,are watching him from behind.\n1947,anetv_x2CZHFxoZaM,17431,Lots of people are running in a race. People,Lots of people are running in a race.,People,gold,are running down a dirt road.,sit on some of the tables and walk outside.,are running around the car standing back n spot and bumping into each other.,are jumping on a hillside into an sand castle.\n1948,anetv_wuknZBoyMRE,12759,He then begins running around the yard on the stilts. He,He then begins running around the yard on the stilts.,He,gold,continues to distract the bull around several times and ends with the woman following the line.,continues walking around on the stilts and falls down speaking to the camera.,grabs his briefcase and rides off while people walk away together looking out of the window.,continues to run back and fourth and ends by stopping and speaking.\n1949,anetv_wuknZBoyMRE,3122,A man is seen facing the camera and running around a lawn on a set of stilts. He,A man is seen facing the camera and running around a lawn on a set of stilts.,He,gold,continues zooming around at a time making the slam all along the lane as others watch on the sides.,is shown wearing different angles of the camera continuing to play.,go down to a top center while hundreds of people watch.,pauses to speak to the camera and continues running around until he falls.\n1950,anetv_wuknZBoyMRE,3123,He pauses to speak to the camera and continues running around until he falls. He lays his head down and the camera,He pauses to speak to the camera and continues running around until he falls.,He lays his head down and the camera,gold,zooms back around the field.,continues to play.,zooms in on his face.,zoom in on the screen.\n1951,anetv_wuknZBoyMRE,12758,A man is seen speaking to the camera while standing on stilts. He then,A man is seen speaking to the camera while standing on stilts.,He then,gold,performs tricks on his skateboard while another lay on the ground.,kneels in front of a bridge and begins running down a track.,begins running around the yard on the stilts.,uses tools to scrape off a tire on a car.\n1952,lsmdc3083_TITANIC2-39136,4377,\"Someone holds out his bent right arm for someone, who takes it. She\",\"Someone holds out his bent right arm for someone, who takes it.\",She,gold,gets in his classroom then gets out of a car.,\"smiles as he tilts back his chin, nose in the air.\",hands it to someone.,\"closes his eyes for a moment, then hurries to the stairs.\"\n1953,lsmdc3083_TITANIC2-39136,4381,\"Later, someone and someone descend another wide, curving staircase. They\",\"Later, someone and someone descend another wide, curving staircase.\",They,gold,gaze toward a group of people.,\"run up a large, colorful corridor, before falling over.\",decorated with candles on a pair of elevated tables.,emerge from the window and stand close to the doors behind the stage door.\n1954,lsmdc3083_TITANIC2-39136,4361,\"At dusk, the Titanic trails black smoke from its four smoke stacks, the funnels, as it sails toward the setting sun. Later, a steward\",\"At dusk, the Titanic trails black smoke from its four smoke stacks, the funnels, as it sails toward the setting sun.\",\"Later, a steward\",gold,reads past a line ravel reads a note.,holds a newspaper as someone and the agents arrive at the front of the bus.,leads someone to a computer screen.,opens a door for someone.\n1955,lsmdc3083_TITANIC2-39136,4359,\"Someone lifts his hands and shrugs. Elsewhere, someone\",Someone lifts his hands and shrugs.,\"Elsewhere, someone\",gold,knocks off a receptionist room segment and leaves.,meets someone's wet gaze and walks closer and farther away.,with the indifferent mouse shuffling cards.,helps someone into a black tuxedo jacket.\n1956,lsmdc3083_TITANIC2-39136,4380,\"Someone smiles at someone as they follow. Later, someone and someone\",Someone smiles at someone as they follow.,\"Later, someone and someone\",gold,wander through the storm room for someone's wheelchair in his office.,\"descend another wide, curving staircase.\",exit the sedan convertible in calm stream.,slump in on the kitchen.\n1957,lsmdc3083_TITANIC2-39136,4362,\"Later, a steward opens a door for someone. Wearing a white tie and shirt, someone\",\"Later, a steward opens a door for someone.\",\"Wearing a white tie and shirt, someone\",gold,rests his hands on his desk.,walks down a corridor to the spiral staircase.,smiles at the steward as he steps inside.,goes down a formal corridor and waves her arms in the air.\n1958,lsmdc3083_TITANIC2-39136,4365,Someone steps to the railing and gazes down at a couple descending the ship's grand staircase. Someone,Someone steps to the railing and gazes down at a couple descending the ship's grand staircase.,Someone,gold,steps off a train platform.,holds up a telescope.,\"glances up at the skylight, then walks down the staircase to a landing.\",looks away from the entrance and sees the blond woman sitting on a fifties yoga mat.\n1959,lsmdc3083_TITANIC2-39136,4379,\"Arm in arm, they stroll up to someone. Someone\",\"Arm in arm, they stroll up to someone.\",Someone,gold,turns and faces her opponent with a scowl.,stands with his back to her.,smiles at someone as they follow.,gives her a good - bye.\n1960,lsmdc3083_TITANIC2-39136,4364,\"He pauses, then walks toward an ornate railing and columns beneath the dome skylight. Someone\",\"He pauses, then walks toward an ornate railing and columns beneath the dome skylight.\",Someone,gold,hangs on and takes a spherical sphere the air.,watches as the chopper rim breaks the rope.,steps to the railing and gazes down at a couple descending the ship's grand staircase.,\"disappears, followed by his team.\"\n1961,lsmdc3083_TITANIC2-39136,4369,Someone stands up straight and places his own arm behind his back. Someone,Someone stands up straight and places his own arm behind his back.,Someone,gold,nods to the man as he and a woman stroll past.,\"releases a headphone strap firmly on his right, sitting on either side of someone's neck.\",takes another customer out of his jacket.,punches another guard and throws him into the pool.\n1962,lsmdc3083_TITANIC2-39136,4374,He turns and looks up at someone. She,He turns and looks up at someone.,She,gold,smiles and descends the stairs toward him.,stands up to someone.,steps out of the lift.,gently pats someone's shoulder.\n1963,lsmdc3083_TITANIC2-39136,4372,\"Someone eyes someone as they step past him. From the staircase's landing, someone\",Someone eyes someone as they step past him.,\"From the staircase's landing, someone\",gold,is lifted into an alley.,gazes down at someone.,spies someone with a lantern.,blinks through her tears.\n1964,lsmdc3083_TITANIC2-39136,4371,\"Someone watches the couple, then gazes up the staircase. Someone\",\"Someone watches the couple, then gazes up the staircase.\",Someone,gold,sees his grinding disappear on stage.,eyes someone as they step past him.,\"is shrouded on the side of the road with a lot of pots, ingredients, hand, mustard, and metal.\",walks sharply over where a sign crashes over the bay.\n1965,lsmdc3083_TITANIC2-39136,4358,Someone waves as someone and her mother walk off. Someone,Someone waves as someone and her mother walk off.,Someone,gold,\"eyes someone, the two german survivors.\",plays tv on a stage in front of a bus.,shows drawing photos of the young girl full of flowers.,lifts his hands and shrugs.\n1966,lsmdc3083_TITANIC2-39136,4366,\"Someone glances up at the skylight, then walks down the staircase to a landing. Someone\",\"Someone glances up at the skylight, then walks down the staircase to a landing.\",Someone,gold,\"steps out of the fortress, clutching the book.\",spies someone taking off his coat and pants.,descends past a winged statue.,flips through a piece of broken bricks.\n1967,lsmdc3083_TITANIC2-39136,4360,\"Elsewhere, someone helps someone into a black tuxedo jacket. At dusk, the Titanic\",\"Elsewhere, someone helps someone into a black tuxedo jacket.\",\"At dusk, the Titanic\",gold,arrives at a airport terminal building.,fill a tunnel with inflatable swinging along its pews.,climbs into a quiet space.,\"trails black smoke from its four smoke stacks, the funnels, as it sails toward the setting sun.\"\n1968,lsmdc3083_TITANIC2-39136,4375,She smiles and descends the stairs toward him. Someone,She smiles and descends the stairs toward him.,Someone,gold,\"stops a few steps above someone, who takes her white - gloved hand and kisses it.\",is on a jeep driving to the street.,steps into the common room and crouches across the steps with his cane on his head.,lies on a bed with her head tangled in a doorway.\n1969,lsmdc3083_TITANIC2-39136,4367,Someone descends past a winged statue. Someone,Someone descends past a winged statue.,Someone,gold,\"leans against a column, then glances at a bearded man standing erect with his left arm behind his back.\",looks out toward the webcam.,speaks to a cold headset.,is boldly by the keyhole.\n1970,lsmdc3083_TITANIC2-39136,4370,Someone nods to the man as he and a woman stroll past. Someone,Someone nods to the man as he and a woman stroll past.,Someone,gold,\"watches the couple, then gazes up the staircase.\",gives someone a grim nod.,passes someone.,turns back to someone.\n1971,lsmdc3083_TITANIC2-39136,4368,\"Someone leans against a column, then glances at a bearded man standing erect with his left arm behind his back. Someone\",\"Someone leans against a column, then glances at a bearded man standing erect with his left arm behind his back.\",Someone,gold,\"steps away, balding fireman's head pulled up and handcuffs on him.\",stands up straight and places his own arm behind his back.,'s face freezes as he watches as the two men arm wrestle on the glider and someone points at the crewman.,chucks the card aside.\n1972,lsmdc3083_TITANIC2-39136,4373,\"From the staircase's landing, someone gazes down at someone. He\",\"From the staircase's landing, someone gazes down at someone.\",He,gold,grabs his wand and throws it into a fireplace.,turns and looks up at someone.,\"grabs boy's ears, then carries him downstairs.\",sits on the knees of a platform.\n1973,lsmdc3083_TITANIC2-39136,4363,\"Wearing a white tie and shirt, someone smiles at the steward as he steps inside. He\",\"Wearing a white tie and shirt, someone smiles at the steward as he steps inside.\",He,gold,\"approaches someone, who dons a floppy, pointed skirt, and carries him inside for another room.\",is busy keeping his uniform on whom he must wear.,\"pauses, then walks toward an ornate railing and columns beneath the dome skylight.\",\"takes the loaf of spirit and sets it in a plate, and it tips to his skin.\"\n1974,lsmdc3083_TITANIC2-39136,4378,\"She smiles as he tilts back his chin, nose in the air. Arm in arm, they\",\"She smiles as he tilts back his chin, nose in the air.\",\"Arm in arm, they\",gold,move on to the brown - haired woman holding up hand.,stroll up to someone.,gaze toward the bridge where explosions expand and darken across the park.,push their way around the hall as someone inside.\n1975,lsmdc3079_THINK_LIKE_A_MAN-36993,1585,\"Their lips rest mere inches apart. Nodding, he\",Their lips rest mere inches apart.,\"Nodding, he\",gold,returns a duffle gaze.,glances away with a smile.,lifts her face with hers.,slides on the side desk.\n1976,lsmdc3079_THINK_LIKE_A_MAN-36993,1586,\"As he meets her gaze again, she leans in closer. He\",\"As he meets her gaze again, she leans in closer.\",He,gold,cups her face and kisses her.,sidles up and kisses his hand.,wipes his pajama bottoms down.,faces the younger someone.\n1977,lsmdc3079_THINK_LIKE_A_MAN-36993,1587,He cups her face and kisses her. Their friends,He cups her face and kisses her.,Their friends,gold,gather tearfully as they play.,stare into each other's eyes.,watch through one of the truck's windows.,smile and chat somberly.\n1978,anetv_HytB88Fhqw8,14898,Men are going up the stairs and are in a trophy room. woman,Men are going up the stairs and are in a trophy room.,woman,gold,is installing white walls on the floor.,is playing tennis on a gym floor with food on hardwood floors.,is playing a wooden flute and showing how to hit a white ball with the napkin.,is talking to men that are in a room and shows them a red gift.\n1979,anetv_HytB88Fhqw8,1410,Several team members are playing on a field at night. They,Several team members are playing on a field at night.,They,gold,are also shown in the locker rooms and showers.,are cold as they walk behind the choir.,are engaged in a lacrosse net.,play with sandy lights.\n1980,anetv_HytB88Fhqw8,1411,They are also shown in the locker rooms and showers. They,They are also shown in the locker rooms and showers.,They,gold,are seen on the bath boat with somebody in the game.,\"dress up and go to see a gift wrapping expert, who teaches them how to wrap presents.\",are using water hooks to get them replace chunks from their open body.,are sitting in a tub faucet drying together for a shower.\n1981,anetv_XCwPsQwzfiA,15140,She pours the mixture into to cake pans. A piece of cake,She pours the mixture into to cake pans.,A piece of cake,gold,is shown on a plate.,is then placed on top of the whiskey.,is taken in and covered in a rag.,moves up and down.\n1982,anetv_XCwPsQwzfiA,15139,She turns it on and mixes the ingredients together. She,She turns it on and mixes the ingredients together.,She,gold,shakes tobacco into the small container and prods it thoroughly.,pours the mixture into to cake pans.,places the contents into a bowl and season it off with more flowers.,takes the coffee off the table and places them into a cup.\n1983,anetv_XCwPsQwzfiA,15138,A woman is pouring ingredients into a Kitchen aid. She,A woman is pouring ingredients into a Kitchen aid.,She,gold,starts pouring the ingredients onto a plate.,take turns scrubbing the potatoes with a small knife.,turns it on and mixes the ingredients together.,is dips a pan in various vegetables.\n1984,anetv_gMwjhe0Njkc,784,\"After, he continues throwing the discus and when he is finished, he is shown standing on a set of cubes as the winner. The participants shake each other hands and they both\",\"After, he continues throwing the discus and when he is finished, he is shown standing on a set of cubes as the winner.\",The participants shake each other hands and they both,gold,drink more hot liquor.,get and cheers from each other.,clap up with great effort.,end up walking off.\n1985,anetv_gMwjhe0Njkc,783,\"A black and white image of a man is shown and then the man appears in a field throwing a discus. After, he continues throwing the discus and when he is finished, he\",A black and white image of a man is shown and then the man appears in a field throwing a discus.,\"After, he continues throwing the discus and when he is finished, he\",gold,is shown standing on a set of cubes as the winner.,bows various times and runs past the end zone and doing the same springs.,turns to his right with a good gesture and kneels down again just behind it and flies.,break the wins more.\n1986,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9068,It rolls away and settles on top of a floor grate. Another head,It rolls away and settles on top of a floor grate.,Another head,gold,hangs in the ceiling.,\"disarms someone, who scrambles back.\",lies down to let it fall overboard.,runs down a middle - ramp.\n1987,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9064,\"The teens nervously edge back as the janitors bodies join into one, their necks stretching and coiling upward to create a five - headed dragon like beast. The teens\",\"The teens nervously edge back as the janitors bodies join into one, their necks stretching and coiling upward to create a five - headed dragon like beast.\",The teens,gold,fall into the track.,quickly take four rings.,dug behind a row of columns.,flee down it brisk.\n1988,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9066,\"The hydra heaves flames at them. As he tries to shake the fire out, the pearl\",The hydra heaves flames at them.,\"As he tries to shake the fire out, the pearl\",gold,\"brings him clean, causing the explosion invisible.\",grips up the wheel of the system to free themselves.,slips from his grasp.,slides onto someone 'waist.\n1989,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9067,\"As he tries to shake the fire out, the pearl slips from his grasp. It\",\"As he tries to shake the fire out, the pearl slips from his grasp.\",It,gold,'s on the bar.,ramps to the hill surface.,rolls away and settles on top of a floor grate.,hands him the snake.\n1990,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9076,\"As someone runs in the opposite direction, one of the heads spots him. Someone\",\"As someone runs in the opposite direction, one of the heads spots him.\",Someone,gold,\"reaches for the pearl, misses and faces the charging hydra.\",\"gets his cigarette pierced someone's mouth, goes still; shoots into a clear oncoming fog.\",\"stops, shoots up on the other side and slows by a soldiers link.\",raises the cup and lifts it in to the ever - thin urn.\n1991,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9080,\"Water gushes out, quickly flooding the floor. Under the teen's control it\",\"Water gushes out, quickly flooding the floor.\",Under the teen's control it,gold,changes back to someone and his teammates.,\"keeps coming on rocky the wall, hiding someone's throat but in place.\",carries her to the floor.,forms a wall between him and the hydra.\n1992,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9084,The hydra's heads become motionless as they turn to stone. Someone lowers someone's head and his awestruck friends,The hydra's heads become motionless as they turn to stone.,Someone lowers someone's head and his awestruck friends,gold,turn to a mocha - skinned man.,watch his pincers fall.,gaze blank as someone talks with his right hand.,step up behind him.\n1993,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9075,They take cover behind the columns. She,They take cover behind the columns.,She,gold,runs out of someone 'apartment and into the warehouse.,\"draws another arrow, shoots again and pierces one of the hydra's eyes.\",takes the huge elves posters out of crates and holds someone in the cubicles.,turns off the stereo and stares back at someone.\n1994,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9069,\"Another head disarms someone, who scrambles back. Someone\",\"Another head disarms someone, who scrambles back.\",Someone,gold,slips money from his pocket and steps forward.,\"bashes the heads with his shield, then runs out brandishing his sword.\",incinerates the water with soap.,flops his face to his.\n1995,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9074,The center ones spew fire at the teens. They,The center ones spew fire at the teens.,They,gold,take cover behind the columns.,\"follow wide - eyed, hugging turning and heading away from the others.\",get up and approach the alley.,toss their cards high over the air.\n1996,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9073,He slices through its neck. Someone,He slices through its neck.,Someone,gold,stands them as he rushes to mount doom.,\"barrels aside, then hacks through its neck.\",slides the bird in the lantern.,thrusts the rifle out straight.\n1997,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9065,The teens dug behind a row of columns. The hydra,The teens dug behind a row of columns.,The hydra,gold,storm on a covering film famous people.,passes many high - in hats and purses forming hobbits eagerly as people clutches them on their chest.,heaves flames at them.,bullies meet with a grateful breath.\n1998,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9083,His two friends stare as well. The hydra's heads,His two friends stare as well.,The hydra's heads,gold,rush to the door of the periscope.,shuffle in the opposite direction.,shoots out from the clouds.,become motionless as they turn to stone.\n1999,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9077,\"Someone reaches for the pearl, misses and faces the charging hydra. Someone\",\"Someone reaches for the pearl, misses and faces the charging hydra.\",Someone,gold,hands the girls back to the bar.,saunters forward as the young dog rubs her eyes.,charges the supplier with a long glass.,\"scrambles behind a pedestal, flings away his smoking shield and examines his scorched hand.\"\n2000,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9071,His sneakers lift him into the air where he continues his assault. He,His sneakers lift him into the air where he continues his assault.,He,gold,stares as his thoughts split off.,\"presses on it, then sits back down.\",chuckles to himself as he rubs the car phone.,flies out of its path.\n2001,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9082,\"From his bag he produces someone's head. As the hydra spews twinjets of fire at him, he\",From his bag he produces someone's head.,\"As the hydra spews twinjets of fire at him, he\",gold,\"raises the dead woman's sunglasses, exposing her eyes.\",snatches it and passes it.,throws it to someone and strikes arms with the irish members.,leaps as though he remains injured and disappears behind a pillar.\n2002,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9085,Someone lowers someone's head and his awestruck friends step up behind him. Now a tv in a diner,Someone lowers someone's head and his awestruck friends step up behind him.,Now a tv in a diner,gold,shows a news report as the young heroes eat.,blocks another sunny day.,makes a sign reads evening.,shows someone in a beer pong cup and empty cafe drawings.\n2003,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9079,It spews fire and he takes cover again. Someone,It spews fire and he takes cover again.,Someone,gold,\"edges away, then notices two water fountains on a nearby wall.\",acknowledging an ivory knife and takes a large bite.,moves around the room to the directory.,cranes his dark toward eyes.\n2004,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26079,9078,\"Someone scrambles behind a pedestal, flings away his smoking shield and examines his scorched hand. He\",\"Someone scrambles behind a pedestal, flings away his smoking shield and examines his scorched hand.\",He,gold,stares at the frozen vessel.,peeks out at the pearl.,swats the clutched between his keen balls.,trundles down a narrow coat of grass.\n2005,anetv_w24Pub_hNSw,18582,\"A woman is seated, a man is standing, and a little girl is climbing on playground equipment. She\",\"A woman is seated, a man is standing, and a little girl is climbing on playground equipment.\",She,gold,is going through a pair of roof ropes.,\"drops down, hanging from the monkey bars as she pretends to kick the man.\",is snowboarding down on the playground.,picks up an suddenly cutter to strap along the lawn.\n2006,anetv_w24Pub_hNSw,18583,\"She drops down, hanging from the monkey bars as she pretends to kick the man. She\",\"She drops down, hanging from the monkey bars as she pretends to kick the man.\",She,gold,\"jumps into the crib, ending everything.\",\"swings to the end, and lands in another man's arms.\",pops the wire and a breeze blows on her hair.,'s and gain pressure as they float outside the hospital.\n2007,anetv_Cg_jN5G1ZpY,19505,A black bull appears in a large rodeo ring. Clowns,A black bull appears in a large rodeo ring.,Clowns,gold,is outdoors a field with a dog walking in the woods.,runs onto the field in front of the man.,taunt the bull into charging them and other items.,are ready to give a jumps and attempt.\n2008,anetv_Cg_jN5G1ZpY,3888,A black bull is chasing people around a pen. A man,A black bull is chasing people around a pen.,A man,gold,hides behind a yellow barrel.,sprints down a hill trying to track the bull.,is shown sitting down on the ground with a gun.,has his hands on his hand and throws the disc.\n2009,anetv_Cg_jN5G1ZpY,19506,Clowns taunt the bull into charging them and other items. The bull,Clowns taunt the bull into charging them and other items.,The bull,gold,leaves the arena after chasing off a clown.,tries to attack the bull.,catches another bull with people trying to chase him.,goes back to camp and fetch them.\n2010,anetv_wZeV6W1VEoM,18593,\"They take turns stacking a pile of tires. After each addition, one of them\",They take turns stacking a pile of tires.,\"After each addition, one of them\",gold,jumps and stands at the top.,move behind the hay.,serves a ball that goes back into the bucket.,rides down the road to meet the couple.\n2011,lsmdc3035_INSIDE_MAN-1918,2100,Someone enters carrying a plate of pizza and a bottle of water. The boy,Someone enters carrying a plate of pizza and a bottle of water.,The boy,gold,deposits him in the bathtub.,moves up a narrow rectangular dog.,pretends to be wealthy cinnamon.,looks up from his video game as the robber approaches.\n2012,lsmdc1011_The_Help-78275,15522,\"Someone pulls up outside a columned portico two - story house. With her jacket over her arm and her briefcase in the other, she\",Someone pulls up outside a columned portico two - story house.,\"With her jacket over her arm and her briefcase in the other, she\",gold,stops the next carriage and heads for the door.,gazes ahead with her eyes locked on him.,runs back to the room and smiles.,walks past a black servant trimming a box hedge at the front entrance.\n2013,lsmdc1011_The_Help-78275,15527,Someone comes out in a brown bob. She,Someone comes out in a brown bob.,She,gold,gets up from the front view.,returns to the sheer drop.,waits for someone's approval.,swiftly approaches the court and ties her arm up.\n2014,lsmdc1011_The_Help-78275,15523,\"With her jacket over her arm and her briefcase in the other, she walks past a black servant trimming a box hedge at the front entrance. She\",\"With her jacket over her arm and her briefcase in the other, she walks past a black servant trimming a box hedge at the front entrance.\",She,gold,\"makes it into the kitchen, turns on a battered kitchen sink and strides out.\",\"tucks the coin in his pocket, looks up into the cross and begins looking at her.\",\"hurries into the hall and up a wide, wooden staircase.\",is in someone's barn and there's a woman in the red - rimmed with apples cleaning her hands.\n2015,lsmdc1011_The_Help-78275,15525,\"Grimly, she eyes her own limp and thin hair in the mirror. Someone\",\"Grimly, she eyes her own limp and thin hair in the mirror.\",Someone,gold,faces a sink while someone 'nails still on near its painting.,holds his hands to her chin as she comes away.,walks cautiously towards the open window as someone arrives.,\"slumps down on a sofa, looking annoyed.\"\n2016,lsmdc1011_The_Help-78275,15524,\"Mother is sitting at her dressing table in an evening dress and an elfin brown wig. Grimly, she\",Mother is sitting at her dressing table in an evening dress and an elfin brown wig.,\"Grimly, she\",gold,eyes her own limp and thin hair in the mirror.,flustered her little makeup - james mirror.,takes a hold towards a jug in the ice and pours tea.,smooths her scar with her thighs and pulls the pin down.\n2017,lsmdc1011_The_Help-78275,15521,\"Someone gives her a thin, cool, smile. Someone\",\"Someone gives her a thin, cool, smile.\",Someone,gold,pulls up outside a columned portico two - story house.,skates over on the side of the couch.,watches the cliff counter.,grins as he pulls someone.\n2018,lsmdc1011_The_Help-78275,15520,She hands someone a piece of paper. Someone,She hands someone a piece of paper.,Someone,gold,\"gives her a thin, cool, smile.\",swings a flashlight gun holsters to the head and bangs out of its wooden gate.,looks at them with a joyful smile.,\"hangs her lips, gazing at someone through the veil.\"\n2019,anetv_optJ47P_5Ys,4257,The woman scrubs the clothing against a washing board. She,The woman scrubs the clothing against a washing board.,She,gold,using a clear tin to rinse the area.,is then shown with a brand new washer and dryer.,woman washes the box in a car.,is shown outside in a bath tub.\n2020,anetv_optJ47P_5Ys,4256,A little girl is drinking water while her mom washes clothes. The woman,A little girl is drinking water while her mom washes clothes.,The woman,gold,scrubs the clothing against a washing board.,is talking to the camera while holding a bottle and washing dishes.,is eating the ice cream cone.,takes shampoo from her purse and turns it to the camera and she then struggles with her hair.\n2021,anetv_optJ47P_5Ys,13142,A woman is washing clothes in a tin bucket. A woman,A woman is washing clothes in a tin bucket.,A woman,gold,stands in front of a washer and dryer.,is washing the dishes.,is wearing a blue shirt with a mop and another woman wearing a green shirt is standing in front of her.,\"is washing a large, brown dog in a bath tub.\"\n2022,anetv_bhAVJ2uUw0U,8826,A person is seen wiping off the face of a baby with a rag while the baby sticks it's tongue out. the woman,A person is seen wiping off the face of a baby with a rag while the baby sticks it's tongue out.,the woman,gold,takes the scissors and continues to brush the woman pushing her hands up and down on the floor.,puts a blow dryer tin on her cheek and beginning the piercing with the different brush.,continues cleaning the baby and is shown smiling to the camera and waving.,removes the brush and puts down the shoes while the others pause to talk to the camera.\n2023,lsmdc3092_ZOOKEEPER-45330,8875,\"As he rolls his window back up, someone frowns slightly. Staring straight ahead, someone\",\"As he rolls his window back up, someone frowns slightly.\",\"Staring straight ahead, someone\",gold,stares after himself as he shuts the car door.,remains motionless in his seat.,holds up his arms and takes a seat.,watches as someone drink from his human form.\n2024,anetv_izSjI7hH1-Y,11340,A young woman is sitting a chair extremely still as a pair of scissors are being put up her nose. The person who is piercing her septum,A young woman is sitting a chair extremely still as a pair of scissors are being put up her nose.,The person who is piercing her septum,gold,demonstrates how to hit a girl by the horse.,continues to hold it and grabs the needle with the other hand.,and leans the razor into the back of the woman's head.,\"is as still as the tiles, as well as a fat black and white cat.\"\n2025,anetv_izSjI7hH1-Y,11341,\"The person who is piercing her septum continues to hold it and grabs the needle with the other hand. Once he pierces it, a drop of snot flies from her nose and the girl\",The person who is piercing her septum continues to hold it and grabs the needle with the other hand.,\"Once he pierces it, a drop of snot flies from her nose and the girl\",gold,puts a piercing into her mouth.,begins talking until the balls are on the end of the ring.,stops the knob and the woman does the tutorial when the girl adjusts her sock on the panel mouthpiece.,talks to the young man.\n2026,anetv_Jz2xJx1ICCM,7818,He's writing things down keeping score and what not. The female arm wrestler,He's writing things down keeping score and what not.,The female arm wrestler,gold,spin around with the mighty.,wins bringing down the other guys arm.,is in stripes getting ready to walk with.,is standing on the mission shooting the disc into the air and then performance with multiple pictures of her website.\n2027,anetv_Jz2xJx1ICCM,7817,The other kid on the side feels on one of the wrestlers muscles. He,The other kid on the side feels on one of the wrestlers muscles.,He,gold,throws them to and makes sure to do it.,'s writing things down keeping score and what not.,\"throws to the guy in the back, decides he continue playing.\",presses his sunglasses and lets go of one of the choke hold.\n2028,anetv_Jz2xJx1ICCM,7816,\"Some kids in class are about to start arm wrestling, they get their arms in place to start. The other kid on the side\",\"Some kids in class are about to start arm wrestling, they get their arms in place to start.\",The other kid on the side,gold,stands up and then gestures for them to continue jumping.,kicks the right arm across the stage.,feels on one of the wrestlers muscles.,watch the children move by.\n2029,anetv_RPr1ZbIGLwU,7662,A woman is seen talking outside. She,A woman is seen talking outside.,She,gold,picks up someone and begins tattooing her face.,plays croquet outside the water as a man is walking past the man in the undergrowth.,shoots a bowling ball from 4 to several different pins.,holds up a cardboard roll.\n2030,anetv_RPr1ZbIGLwU,16603,The lady puts sticky things on a rug then removes them. We,The lady puts sticky things on a rug then removes them.,We,gold,throws them from a carpet beside the chair.,switch to see the rug in her dining room.,see the vacuum again and weld.,see wipes and end on the lady.\n2031,anetv_RPr1ZbIGLwU,16601,The lady puts the tube on the table. The lady,The lady puts the tube on the table.,The lady,gold,lays the table clear with the man.,picks up items off the table.,mix the ice with a tall glass.,uses a makeshift coffee scraper to wipe the windshield.\n2032,anetv_RPr1ZbIGLwU,16604,We switch to see the rug in her dining room. The lady,We switch to see the rug in her dining room.,The lady,gold,vacuums hands to be clean.,holds the roll to her shoulders.,reads the table papers and turns on the screen.,shows the bottom of a chair.\n2033,anetv_RPr1ZbIGLwU,16600,We see a lady standing in a yard talking. The lady,We see a lady standing in a yard talking.,The lady,gold,cuts the wallpaper from the tree.,takes the dog off again.,sniffs the dog and prepares to put something in her hair.,puts the tube on the table.\n2034,anetv_RPr1ZbIGLwU,16605,The lady shows the bottom of a chair. The lady,The lady shows the bottom of a chair.,The lady,gold,sweeps the floor then wipes it with a towel on a stick.,puts her hand on the finish line.,pushes the wallpaper off the back.,places the lens to her eye.\n2035,anetv_RPr1ZbIGLwU,16599,We see an opening screen on a black background. We,We see an opening screen on a black background.,We,gold,see the man laying on the pommel.,\"see jump stilts, and a coach hops across the field.\",see a lady standing in a yard talking.,see a boy wrestling on a horse.\n2036,anetv_cYLIJC6QjQA,16554,There are several people in a park participating in outdoor activities. There,There are several people in a park participating in outdoor activities.,There,gold,talks then a story about how to slide materials.,are the contestants riding a aprons competition.,\"have three actors available, but people move.\",\"is a person biking on a tight rope, trying to balance as he falls off towards the end of the rope.\"\n2037,anetv_cYLIJC6QjQA,16555,\"There is a person biking on a tight rope, trying to balance as he falls off towards the end of the rope. There\",\"There is a person biking on a tight rope, trying to balance as he falls off towards the end of the rope.\",There,gold,without the last rope they trip and fall across the rope so all tug of war and people moves to bikes on the rope.,are children running around on the ground.,a man in a black shirt and the blue man shields his feet as he grabs his hostage.,takes a pole and holds off the ropes that's attached to the rope that causes him to pull up rope.\n2038,anetv_cYLIJC6QjQA,16558,There are also many people sitting on the ground as they watch the activities. One man,There are also many people sitting on the ground as they watch the activities.,One man,gold,is shown again in various clips are shown of people riding boards up a mountain.,\"continues to walk and jump and bounce on the tight rope, doing stunts as the people watch him.\",stands in the air wearing his mask and showing how to apply to a paper washer.,crashes the rope back.\n2039,anetv_cYLIJC6QjQA,16557,There's another man walking on the tight rope. There,There's another man walking on the tight rope.,There,gold,is a red jump.,guy is guiding the men.,are also many people sitting on the ground as they watch the activities.,is jumping to him from the ground and another man is jump roping with the men.\n2040,anetv_cYLIJC6QjQA,16556,There are children running around on the ground. There,There are children running around on the ground.,There,gold,'s another man walking on the tight rope.,\"get together and inside the truck, one of the officers is clapping on the table and the camera pans away and moves away.\",are siting watching.,continue performing ballet on a stage.\n2041,lsmdc0030_The_Hustler-64661,14921,\"Someone starts to go back to his chair, suddenly turns, a weary, clowning smile on his face. Someone\",\"Someone starts to go back to his chair, suddenly turns, a weary, clowning smile on his face.\",Someone,gold,walks over to the water cooler.,stops the elderly women and look around at the towering voices.,\"walks to someone, with his knees bent over his head.\",\"rests his head against someone's shoulder, then hugs.\"\n2042,lsmdc1001_Flight-71614,7257,The altimeter slides quickly to the right as the plane rises. They,The altimeter slides quickly to the right as the plane rises.,They,gold,sit calmly on a concrete stoop.,puts something into her cup.,see the puck down discs on display.,reach a clearing through clouds and bright sunlight as someone levels out.\n2043,lsmdc1001_Flight-71614,7258,They reach a clearing through clouds and bright sunlight as someone levels out. Someone,They reach a clearing through clouds and bright sunlight as someone levels out.,Someone,gold,lands in the shop's outer window.,steps back and ambles into the interrogation room.,smiles and looks at the passengers from her jump seat.,approaches the tall buildings at the other end.\n2044,lsmdc1001_Flight-71614,7256,He moves the side - stick forward. The altimeter,He moves the side - stick forward.,The altimeter,gold,continue to be attacked.,slides quickly to the right as the plane rises.,are stopped at the edge of the river.,are in the center.\n2045,lsmdc1001_Flight-71614,7259,Someone gets out of the car and runs up to the second floor of a small run - down apartment complex. She,Someone gets out of the car and runs up to the second floor of a small run - down apartment complex.,She,gold,\"pulls out a key as she reaches the door, only to discover it is slightly open.\",scowls uncomfortably as someone pleadingly goes over.,\"the skies, someone appears hitting him with his cue.\",\"does not get to new, and she passes all the way to a stealthy landing to get to her car.\"\n2046,anetv_waTjpd7yDkc,17399,The man and woman perform a paired roller blade routine. The man and woman,The man and woman perform a paired roller blade routine.,The man and woman,gold,finish rhinestones with their routine.,finish the routine and move towards the camera.,gather in their arms and dance across the park.,catch on their hands and demonstrate martial arts for the camera.\n2047,anetv_waTjpd7yDkc,17398,The man and woman rise together. The man and woman,The man and woman rise together.,The man and woman,gold,sitting up and shake each other's hands.,blow water around the snow making his hand sprinkle on the deck.,perform a paired roller blade routine.,practice swinging each other up and down on a mat.\n2048,anetv_waTjpd7yDkc,17397,A man and a woman wearing roller blades kneel facing each other on a basketball court. A dog,A man and a woman wearing roller blades kneel facing each other on a basketball court.,A dog,gold,runs in a house with a ball behind him.,is standing on front a crowd of girls and boys walking on a gymnasium floor.,is standing in front of a weight lifting weight.,runs by the man and woman.\n2049,anetv_SID0y9y6Uk4,6187,Two men prepare for a fencing match. The video,Two men prepare for a fencing match.,The video,gold,switch to the final siding.,is followed by a man solo wrestlers during the match.,ends with everyone in the room fencing with different fencers and cameras.,shows several highlights of people fencing each other in various matches.\n2050,anetv_SID0y9y6Uk4,6191,The man wins over and over again. He,The man wins over and over again.,He,gold,is shown practicing for his upcoming matches against another.,walks to the back window and plays a song.,jumps to his knees and celebrates his jump to his point.,\"dismounts, and the boy continue performing and spin around.\"\n2051,anetv_SID0y9y6Uk4,6192,He is shown practicing for his upcoming matches against another. He,He is shown practicing for his upcoming matches against another.,He,gold,is animated first and begins demonstrating how he will use the sharpening tool to make more approaches.,seems to win over and over again.,\"highlights, medals, instructing the winner.\",puts a pad over to an object.\n2052,anetv_SID0y9y6Uk4,6189,Some win the matches quite quickly. Two men constantly,Some win the matches quite quickly.,Two men constantly,gold,turn their heads and add stones to the screen showing the sport.,\"flip slowly, walking away.\",go back and fourth towards each other.,drag the band off stage.\n2053,anetv_SID0y9y6Uk4,6188,The video shows several highlights of people fencing each other in various matches. Some,The video shows several highlights of people fencing each other in various matches.,Some,gold,win the matches quite quickly.,swirls two continue pose on the table in the end.,groups on bowl of clothing remain training to win.,are in the field around area where fencing against someone's rifle.\n2054,anetv_SID0y9y6Uk4,6190,Two men constantly go back and fourth towards each other. The man,Two men constantly go back and fourth towards each other.,The man,gold,films the couple while laughing while the audience claps.,turn off the ladder and go back into the water next to the building.,punches the other swimmers repeatedly twice.,wins over and over again.\n2055,anetv_5wkGeYBS7hQ,5797,\"The boys talk, laugh and tease each other before beginning a game of beer pong across a long table using a triangle shaped array of clear cups. One of the ping pongs lands in the cup and one of the boys\",\"The boys talk, laugh and tease each other before beginning a game of beer pong across a long table using a triangle shaped array of clear cups.\",One of the ping pongs lands in the cup and one of the boys,gold,hits the ball with his other hand pressing the numbers.,begins to drink the beer.,knocks his opponent to the ground.,pours water into the're and bows it.\n2056,anetv_CZp3ZPTQrds,3682,The man then begins using scissors on his face while holding up pieces of paper. The man,The man then begins using scissors on his face while holding up pieces of paper.,The man,gold,begins painting him into the wall while the camera captures him.,continues painting the window all in front of him.,continues sharpening the jack while looking away and pointing it back.,continues to shave his face and ends by waving to the camera.\n2057,anetv_CZp3ZPTQrds,3681,A man is seen speaking to the camera followed by several pictures of bearded men. The man then,A man is seen speaking to the camera followed by several pictures of bearded men.,The man then,gold,begins dealing the instruments together and still looking down the tarp and setting up a little.,continues brushing the other man's hair with another scraper and at the final products.,speaks to the camera and shows how to remove a drink.,begins using scissors on his face while holding up pieces of paper.\n2058,anetv_0HhNhRExwSQ,7740,A man speaks to the camera while more people walk and begin climbing up a mountain. More people,A man speaks to the camera while more people walk and begin climbing up a mountain.,More people,gold,are seen riding in and out of frame moving along the dirt before jumping on the side afterwards.,speak to each other while climbing and sitting down eating food.,are seen jumping over and off and walking on a field while others speak to one another with the others around.,are seen riding around as well as spinning with one another and looking trainers first.\n2059,anetv_0HhNhRExwSQ,7739,A man is seen putting chains on his body followed by many people walking down a cliff. A man,A man is seen putting chains on his body followed by many people walking down a cliff.,A man,gold,stands up to a pole and pushes it all along the board.,is seen standing behind a man pointing into a bicycle with equipment showing his movements.,is then seen climbing into a sand pit while several people walk in steep circle.,speaks to the camera while more people walk and begin climbing up a mountain.\n2060,anetv_0HhNhRExwSQ,5522,A close up of a set of chains is shown as well as a small group of people getting ready and walking down the side of a cliff. The people,A close up of a set of chains is shown as well as a small group of people getting ready and walking down the side of a cliff.,The people,gold,speak to the camera while taking turns climbing up the ledge and sitting in the road in the end.,continue pushing the pucks up and down the side while the camera captures their movements from all angles.,are then seen walking around the track and speak with one another and speak to one another.,continue to kick one another while holding on to their wrists while speaking to one another.\n2061,lsmdc0019_Pulp_Fiction-56578,4902,\"The busboys going through the motions, collecting dishes. A smiles\",\"The busboys going through the motions, collecting dishes.\",A smiles,gold,shows off a bowl of cake.,- this shakes his head at someone's notes.,breaks out on the young woman's face.,instructor walks over from the bouquet of flowers.\n2062,lsmdc0019_Pulp_Fiction-56578,4901,\"She sees all the patrons eating, lost in conversations. The busboys\",\"She sees all the patrons eating, lost in conversations.\",The busboys,gold,takes coat and moved away.,\"going through the motions, collecting dishes.\",are pretty and impatient.,are full of flowers.\n2063,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25910,10108,Our view descends to a herd of cattle. The car,Our view descends to a herd of cattle.,The car,gold,\"swerves and rolls onto its roof, then slides to a spinning top.\",crashes away past the two cobblestone porch ahead of it.,cycles up the curve and look at the guards.,lurches as it crashes along.\n2064,lsmdc1055_Marley_and_me-96357,17701,\"Someone walks out of a small neat bungalow and picks up the newspapers, one of which is the Sun - Sentinel. The people\",\"Someone walks out of a small neat bungalow and picks up the newspapers, one of which is the Sun - Sentinel.\",The people,gold,\"are traveling, and more people are herded from the stairs.\",are sitting in bed next to someone's flew clothes.,read their papers over breakfast.,walked around using their pretty long hair.\n2065,lsmdc3045_LAND_OF_THE_LOST-21268,13885,\"Now, someone flies through the air, waving his arms. Someone\",\"Now, someone flies through the air, waving his arms.\",Someone,gold,follows him to the edge.,sees his helmet and hugs him.,smiles at the statue of someone and holds it down.,\"follows, belly down.\"\n2066,lsmdc3045_LAND_OF_THE_LOST-21268,13884,\"Someone turns, finding all the hatchlings asleep behind him. Now, someone\",\"Someone turns, finding all the hatchlings asleep behind him.\",\"Now, someone\",gold,hauls someone onto the control room.,sleeps on his massage table.,\"flies through the air, waving his arms.\",drives an armored truck across a field area and down from it.\n2067,lsmdc1034_Super_8-8120,15431,\"He gets off his bike and looks around. Back in town, someone\",He gets off his bike and looks around.,\"Back in town, someone\",gold,\"talks on the phone, tears adn it and hangs on.\",\"walks briskly along the sidewalk, separating the front doors, which opens neatly.\",cycles up beside a community bulletin board and sticks a flyer on it.,watches from atop the russians' supply bottles.\n2068,lsmdc1034_Super_8-8120,15432,\"As he looks at the board, something strikes him. He\",\"As he looks at the board, something strikes him.\",He,gold,bends down and grabs his wand.,lifts the heavy cloth from the speakers's control box.,shifts his ear into the doorway then pauses.,takes a step back and sees that the entire board is covered in flyers for lost dogs of all shapes and sizes.\n2069,lsmdc1034_Super_8-8120,15430,\"In the back of one, he notes some airmen operating some kind of radio listening device. He\",\"In the back of one, he notes some airmen operating some kind of radio listening device.\",He,gold,gets off his bike and looks around.,yanks it from his pocket and looks at it.,\"stops, gets someone, closes another notebook every time.\",'s little tam - tams look in the background as he is heard singing then cocks his little enthusiastically for the choir.\n2070,anetv_47SHPAe0s0k,10634,Three men are seen riding on top of horses around one another and leads into a bull running in and chasing a man on a horse. The man,Three men are seen riding on top of horses around one another and leads into a bull running in and chasing a man on a horse.,The man,gold,spins onto the horse like the man as the people continue chasing after the horse while more clips chasing.,tugs all around around the people buck and begins crowd around.,rides around the bull and shows several more shots of the riders riding around the bull.,continues to speak to the horse and leads into him riding the horse and standing beside the horse as well as the horse.\n2071,anetv_47SHPAe0s0k,10635,The man rides around the bull and shows several more shots of the riders riding around the bull. At one point more men run into the pit and the bull lays down on it's side while the audience cheers and the man,The man rides around the bull and shows several more shots of the riders riding around the bull.,At one point more men run into the pit and the bull lays down on it's side while the audience cheers and the man,gold,holds his arms up.,is clearing out smiling.,follows the boy's line.,jumps and follows the dog back.\n2072,anetv_eMNvlcxXZj8,3371,They are stepping on stepping stools. They,They are stepping on stepping stools.,They,gold,lay a roller on the machine.,take a few different steps from the rope.,are dancing together while working out.,are playing a game of pool in the hallway.\n2073,anetv_eMNvlcxXZj8,3370,People are working out in a room. They,People are working out in a room.,They,gold,are stepping on stepping stools.,take a picture of us.,slide down the slide and go down the slide.,'re spreading cleaner on a rug.\n2074,anetv_I6B4g85H2iI,13352,Kids are standing posing on a picture. kids,Kids are standing posing on a picture.,kids,gold,are walking on inline skates.,are on water with bare feet.,are dancing in a park at a park.,are riding motorcycles doing tricks in a dusty race track.\n2075,anetv_I6B4g85H2iI,10511,Several pictures are shown of people on bmx dirt bikes. They,Several pictures are shown of people on bmx dirt bikes.,They,gold,kneel in sand on the sandy beach.,are going around a track together.,take turns jumping onto dirt bikes.,drive in driveway with people in the desert.\n2076,lsmdc3033_HUGO-14231,6451,Someone rubs his hands together as the man trudges up stone steps. Someone,Someone rubs his hands together as the man trudges up stone steps.,Someone,gold,\"walks into the room, waving her hands in front of her.\",\"sets the white sign on the table, she leads the children to the last group of soldiers.\",glances over his shoulder as he trails the man into an alley.,winks at someone and places his arms back on the table.\n2077,lsmdc3033_HUGO-14231,6456,He steps back and stares up at the building as a train passes along an elevated track nearby. The girl who visited the shopkeeper earlier,He steps back and stares up at the building as a train passes along an elevated track nearby.,The girl who visited the shopkeeper earlier,gold,can hold the net.,stops until she is a third donkey and nuts.,is visible in an upper window.,stands on the elliptical bike.\n2078,lsmdc3033_HUGO-14231,6454,They approach a gate leading to a cemetery. Someone,They approach a gate leading to a cemetery.,Someone,gold,stops him waiting for her's approval and goes as he passes the redhead to the agent.,\"grips and slides from the chain, then stops in muddy dirt.\",aims a low but isolated hole.,stares up at the statues as he passes.\n2079,lsmdc3033_HUGO-14231,6455,Someone stares up at the statues as he passes. The man,Someone stares up at the statues as he passes.,The man,gold,hugs the middle man.,\"releases the letter, bows it, struck someone with his shorthaired friend.\",stares at the dark mirror.,walks out of a gate on the opposite side.\n2080,lsmdc3033_HUGO-14231,6465,The automaton's head and hands are solid. Gears and sprockets,The automaton's head and hands are solid.,Gears and sprockets,gold,fill the automaton's chest cavity.,cut through the streets in the background.,fly on the dirt and twist back toward the closet.,pop into the garage.\n2081,lsmdc3033_HUGO-14231,6449,\"Someone throws open the doors and steps outside. Shivering against the cold, someone\",Someone throws open the doors and steps outside.,\"Shivering against the cold, someone\",gold,relaxes back trying to overcome them.,turns as someone sets a seat in the rear by the ship 'glass rim.,follows several paces behind the shopkeeper as he crosses a wide brick street.,goes back to number gored.\n2082,lsmdc3033_HUGO-14231,6459,She stands and looks down at him. Someone,She stands and looks down at him.,Someone,gold,\"smiles and kicks him forward, disappearing.\",\"turns his back to him, holding her hand against his chest.\",is in a dressing room.,motions for her to come outside then presses his palms together and pleads.\n2083,lsmdc3033_HUGO-14231,6450,\"Shivering against the cold, someone follows several paces behind the shopkeeper as he crosses a wide brick street. Someone\",\"Shivering against the cold, someone follows several paces behind the shopkeeper as he crosses a wide brick street.\",Someone,gold,is sitting on the couch watching the television screen.,rubs his hands together as the man trudges up stone steps.,\"'s lost in his head, his eyes glistening with sweat.\",reaches out to touch someone.\n2084,lsmdc3033_HUGO-14231,6447,The shopkeeper turns his back on someone and walks out. Someone,The shopkeeper turns his back on someone and walks out.,Someone,gold,walks over to someone wearing his microphone.,\"stands rooted to the floor, gazing out at the snowy paris streets beyond.\",hands her the letter.,places the cloth over the automaton.\n2085,lsmdc3033_HUGO-14231,6453,\"Hurrying his pace, he falls in step beside the man -. They\",\"Hurrying his pace, he falls in step beside the man -.\",They,gold,dig into a toilet.,speed down the snowy driveway under the smoking duplex.,arrive at a rodeo.,approach a gate leading to a cemetery.\n2086,lsmdc3033_HUGO-14231,6457,The girl who visited the shopkeeper earlier is visible in an upper window. Someone,The girl who visited the shopkeeper earlier is visible in an upper window.,Someone,gold,\"advances on him as she sits, aware that he has not overheard someone.\",walks along a table and in a deep sleep.,pulls out a tooth and a roll of a cabinet.,tosses a pebble at the girl's window.\n2087,lsmdc3033_HUGO-14231,6458,Someone tosses a pebble at the girl's window. She,Someone tosses a pebble at the girl's window.,She,gold,looks away and starts to recede.,tears up his hair and walks briskly back through the shutters.,stands and looks down at him.,flings a pebble into the woman's face.\n2088,lsmdc3033_HUGO-14231,6448,\"Someone stands rooted to the floor, gazing out at the snowy Paris streets beyond. Someone\",\"Someone stands rooted to the floor, gazing out at the snowy Paris streets beyond.\",Someone,gold,\"walks down a busy sidewalk, past the hospital.\",smashes into the vehicle.,searches into a package.,throws open the doors and steps outside.\n2089,lsmdc3033_HUGO-14231,6462,Someone plants his feet and folds his arms. Someone,Someone plants his feet and folds his arms.,Someone,gold,nods back then turns and runs through the small cemetery.,eyes widen as a flight of wooden openings formation behind him open chamber.,goes across monkey bars.,rubs his nose and ears.\n2090,lsmdc3033_HUGO-14231,6460,\"Someone motions for her to come outside then presses his palms together and pleads. A moment later, she\",Someone motions for her to come outside then presses his palms together and pleads.,\"A moment later, she\",gold,opens the front door and steps outside.,comes on frightened - contemplating her adventure.,sits up in bed.,turns to another.\n2091,lsmdc3033_HUGO-14231,6452,\"Someone glances over his shoulder as he trails the man into an alley. Hurrying his pace, he\",Someone glances over his shoulder as he trails the man into an alley.,\"Hurrying his pace, he\",gold,falls in step beside the man -.,draws a short arc around another man's neck.,jogs over to another group and sits at his side.,gets into the glove box and runs over to someone.\n2092,lsmdc3033_HUGO-14231,6466,Gears and sprockets fill the automaton's chest cavity. Someone,Gears and sprockets fill the automaton's chest cavity.,Someone,gold,looks at his brother then turns to someone.,spins it over the versatile creature.,finds someone in the basement and hangs its head.,sits across from the automaton and stares at its solid black eyes.\n2093,lsmdc3033_HUGO-14231,6464,\"Back in the attic, someone lights a candle and sets it onto a chair seat. He\",\"Back in the attic, someone lights a candle and sets it onto a chair seat.\",He,gold,puts a hand on his own shoulder.,closes a fourth drawer and takes two bags of batteries from her bag.,gives a little nod and walks to the car.,turns and yanks a sheet off a doll - sized mechanical man - or automaton - sitting at a small table.\n2094,lsmdc3033_HUGO-14231,6461,\"A moment later, she opens the front door and steps outside. The girl\",\"A moment later, she opens the front door and steps outside.\",The girl,gold,stares at someone with her arms crossed.,enters the bar to a close shot of the disheveled barber and begins to apply makeup.,turns away towards a potted plant adorned with small bows.,rides up with her feet to the stand.\n2095,lsmdc3033_HUGO-14231,6463,\"Someone nods back then turns and runs through the small cemetery. Back in the attic, someone\",Someone nods back then turns and runs through the small cemetery.,\"Back in the attic, someone\",gold,turns back to the lectern.,continues up a flight of stairs.,calls out with a letter - written card.,lights a candle and sets it onto a chair seat.\n2096,lsmdc3033_HUGO-14231,6467,\"As the light flickers, clothes materialize on the metallic man. Now well dressed and clean, someone\",\"As the light flickers, clothes materialize on the metallic man.\",\"Now well dressed and clean, someone\",gold,carves a long pumpkin into a pumpkin.,steps to his office and places the key on the door handle.,rolls past his car.,stands with a blonde man with glasses.\n2097,anetv_08uNrWxxHGY,17999,A woman with long hair paints on a large panel in time lapse video. The woman,A woman with long hair paints on a large panel in time lapse video.,The woman,gold,\"is still painting the panel, but now with a change of clothing.\",\"stop and brushes her hair, then resumes outdoors again.\",\"slowly opens back a camera, talks to the camera, and then moves.\",swings backwards turning the bars.\n2098,anetv_08uNrWxxHGY,18003,The woman continues to paint with a fifth different set of clothing. The woman,The woman continues to paint with a fifth different set of clothing.,The woman,gold,continues to play the drums while she looks at the camera again.,continues to paint with a sixth different set of clothing.,stops the woman and waves to the camera and signs shots.,scrub the hookah to dry the dog together and uses a shiny brush to clean it several times.\n2099,anetv_08uNrWxxHGY,18001,\"The woman is still painting the panel, but with yet another change of clothing. The woman\",\"The woman is still painting the panel, but with yet another change of clothing.\",The woman,gold,\"is standing, talking, at someone continues to dig up dress jackets.\",paints with a fourth different set of clothing.,sits at a black shirt with the hat playing around her head.,\"begins to let down the dryer, followed by the woman exercising in station.\"\n2100,anetv_08uNrWxxHGY,18002,The woman paints with a fourth different set of clothing. The woman,The woman paints with a fourth different set of clothing.,The woman,gold,moves the overcast positions and paints the side of the wall.,continues to paint with a fifth different set of clothing.,puts up the wallpaper and places it on top of her.,continue to paint the hill while a man talks.\n2101,lsmdc3076_THE_SOCIAL_NETWORK-35168,5773,Someone glances solemnly at his friend. Someone,Someone glances solemnly at his friend.,Someone,gold,waves at a camera in front of the other minivan windows.,\"backs away, scratching his brow.\",\"falls back behind the mercenaries, still staring at him.\",slumps wearily on the floor and glances frantically toward the edge of the ship.\n2102,lsmdc3076_THE_SOCIAL_NETWORK-35168,5774,\"Someone backs away, scratching his brow. Someone\",\"Someone backs away, scratching his brow.\",Someone,gold,leans up to show his stethoscope.,seems bored over the evening.,'s wide - eyed stare.,takes out his cell.\n2103,lsmdc3032_HOW_DO_YOU_KNOW-2174,16121,\"With a furrowed brow, someone hangs up. He briefly\",\"With a furrowed brow, someone hangs up.\",He briefly,gold,\"presses his fingers to his forehead, then leans back in his chair.\",reaches for his wallet.,\"looks up, then clutches the arm cloth to his face and screws up his mouth as she scans the room.\",looks up at someone.\n2104,lsmdc3032_HOW_DO_YOU_KNOW-2174,16125,\"Meanwhile, someone rides on a bus. She\",\"Meanwhile, someone rides on a bus.\",She,gold,rolls her headlights and gets out of the car.,pulls her phone from her bag and answers.,rolls his gaze and sees her off with a faint smile.,\"escorts someone's wedding, hugs someone and joins her on an bench.\"\n2105,lsmdc3032_HOW_DO_YOU_KNOW-2174,16122,\"He briefly presses his fingers to his forehead, then leans back in his chair. Rising, he\",\"He briefly presses his fingers to his forehead, then leans back in his chair.\",\"Rising, he\",gold,sees someone sitting on an accordion in a living room in a strum white room.,leans over the counter and slams his forehead against the chair.,takes off his glasses and touches down his own chest.,straightens his t - shirt as he trudges out of his living room.\n2106,lsmdc3032_HOW_DO_YOU_KNOW-2174,16123,\"Rising, he straightens his T - shirt as he trudges out of his living room. He\",\"Rising, he straightens his T - shirt as he trudges out of his living room.\",He,gold,switches up to the music.,stand within seconds.,comes out of the cottage and collects a wheelbarrow of food from a table.,\"pauses, opens his phone, and makes a call.\"\n2107,anetv_fqFqQjH8M20,7912,\"First the man holds up a selfie stick while he standing next to others. Next, he starts skateboarding and leaving the others behind, but soon they\",First the man holds up a selfie stick while he standing next to others.,\"Next, he starts skateboarding and leaving the others behind, but soon they\",gold,go onto the stairs.,start to catch up on their skateboards in the streets.,go and act distracted.,\"are free again, skips into the alley off the other team.\"\n2108,anetv_fqFqQjH8M20,7913,\"Next, he starts skateboarding and leaving the others behind, but soon they start to catch up on their skateboards in the streets. Finally, he gets on the sidewalk skateboarding with the others still behind him and they catch up and he\",\"Next, he starts skateboarding and leaving the others behind, but soon they start to catch up on their skateboards in the streets.\",\"Finally, he gets on the sidewalk skateboarding with the others still behind him and they catch up and he\",gold,steps off of the skateboard looking around as they leave him behind.,'s in really far a lot and have like him some trouble blow the leaves from the lawn.,walks to one of the sides of the scenery.,hits one last time by beating the bowling ball off with his hands.\n2109,anetv_fqFqQjH8M20,5254,Two men are in a parking lot with a boy. They,Two men are in a parking lot with a boy.,They,gold,are playing soccer on the green ice.,\"are on skateboards, and take off down the street.\",smile then jump over the fence and face each other.,see a boy pushing his lawn behind the mower.\n2110,anetv_fqFqQjH8M20,5255,\"They are on skateboards, and take off down the street. The man with the camera\",\"They are on skateboards, and take off down the street.\",The man with the camera,gold,\"is mesmerized, is shown.\",goes over his brick flipping over ramps as the helicopters move around him.,records himself as he skates around paths and curves.,follows the man talking while holding a ball and the girl in no shirt grabs him.\n2111,anetv_3sL7fLHM09c,16798,Other gymnasts and an instructor are watching the female gymnast perform. Another female gymnast,Other gymnasts and an instructor are watching the female gymnast perform.,Another female gymnast,gold,is practicing in the background.,uses a beam to include cheerleading moves.,turns and shakes her hips.,holds her waist up while she uses the batons victoriously in the background next to her.\n2112,anetv_3sL7fLHM09c,16797,A female gymnast is demonstrating a gymnastics performance on bars. Other gymnasts and an instructor,A female gymnast is demonstrating a gymnastics performance on bars.,Other gymnasts and an instructor,gold,shallows her how to perform karate while wearing a black sweater.,are watching the female gymnast perform.,are standing behind them.,are also performing an amazing choreography.\n2113,anetv_0p3JN4KJsUs,7871,\"People practice ballet in a studio alone and in couples. Then, a boy and a girl dance ballet, then a man\",People practice ballet in a studio alone and in couples.,\"Then, a boy and a girl dance ballet, then a man\",gold,opens the bar in dodge celebrating with other women and sing.,enter and dance with the girl.,starts talking to the young woman.,plays the ballet light.\n2114,anetv_0p3JN4KJsUs,7872,\"Then, a boy and a girl dance ballet, then a man enter and dance with the girl. After, several couples\",\"Then, a boy and a girl dance ballet, then a man enter and dance with the girl.\",\"After, several couples\",gold,dance ballet while other people observe.,dance together in a room and sing freestyle.,\"comes together, dancing close to left.\",exercise together in an indoor arena.\n2115,anetv_UciHec7xncc,10430,A young child is seen speaking to the camera and begins climbing across a set of monkey bars. She,A young child is seen speaking to the camera and begins climbing across a set of monkey bars.,She,gold,walks along the side of the benches and begins talking several times.,makes it to the other side smiling to the camera and then climbs down afterwards.,climbs into the car holding a bucket and speaking to the camera.,smiles herself in the end and ends with the closing credits for the video.\n2116,anetv_XqxJsWQqKRk,6957,\"A large rectangular metal pan appears with instructions that say to fill it with a pan of hot water. The circular cake pan that was previous greased appears, and the stirred contents\",A large rectangular metal pan appears with instructions that say to fill it with a pan of hot water.,\"The circular cake pan that was previous greased appears, and the stirred contents\",gold,are poured into it and placed into the pan of hot water where they're all placed into the oven.,all the way down a graph.,and the cooks grated bowl.,\"are blended into a complete pan, the meat produces pan onto this side surface.\"\n2117,anetv_XqxJsWQqKRk,6951,A white screen with blue and white shapes and black words flash across the screen. A smiling black man is in a residential kitchen and he,A white screen with blue and white shapes and black words flash across the screen.,A smiling black man is in a residential kitchen and he,gold,'s wearing a santa hat and pouring ingredients into a large bowl.,is seen a tattoo on his cheek with a box on it.,\"takes a place before a wrestling, activities burning in his hand.\",is shown playing piano and setting down his instrument.\n2118,anetv_XqxJsWQqKRk,6956,A list and bowls of more ingredients are prepared and poured into a large metal pot and stirred vigorously. A large rectangular metal pan,A list and bowls of more ingredients are prepared and poured into a large metal pot and stirred vigorously.,A large rectangular metal pan,gold,is placed on several table plate board.,for food is shown and a person prepare multiple sandwiches with various eggs and sticks.,appears with instructions that say to fill it with a pan of hot water.,is prepared as a white stainless glass ingredients are added and stirred.\n2119,anetv_XqxJsWQqKRk,6953,\"While the list of ingredients are shown that include: 1 lb Figs, 1 lb Raisins, 1 lb Cherries, 1 lb Currants, 1 lb Prunes, Port Wine and Angostura Bitters; they are all poured into a white bucket. Stirring begins immediately and the instructions on the screen\",\"While the list of ingredients are shown that include: 1 lb Figs, 1 lb Raisins, 1 lb Cherries, 1 lb Currants, 1 lb Prunes, Port Wine and Angostura Bitters; they are all poured into a white bucket.\",Stirring begins immediately and the instructions on the screen,gold,for a second moment to speak to the camera.,have drained until it's boiling.,are yet fully wearing.,say to let it soak for at least two weeks to up to 30 days.\n2120,anetv_XqxJsWQqKRk,6954,Stirring begins immediately and the instructions on the screen say to let it soak for at least two weeks to up to 30 days. 30 days later the contents,Stirring begins immediately and the instructions on the screen say to let it soak for at least two weeks to up to 30 days.,30 days later the contents,gold,are listed and fully mixed along with butter and garlic and flour and rolled al yolks.,are removed with a zoom device down and perfectly together with white colorful screens reflecting the angry bright.,are stirred and put into a food processor and turned into a paste.,begin to stand on a bed complete with the floor to work.\n2121,anetv_XqxJsWQqKRk,6958,\"The circular cake pan that was previous greased appears, and the stirred contents are poured into it and placed into the pan of hot water where they're all placed into the oven. When it's done baking and cooled the cake is put on a plate where it's glazed, cut and a slice\",\"The circular cake pan that was previous greased appears, and the stirred contents are poured into it and placed into the pan of hot water where they're all placed into the oven.\",\"When it's done baking and cooled the cake is put on a plate where it's glazed, cut and a slice\",gold,is put on another plate.,of fried banana on it's a bar.,and put on the paper.,appears mixed then they pour the sugar into the lid bowl and mixed it.\n2122,anetv_XqxJsWQqKRk,6955,The man greases a 10x3 round cake pan and covers it with parchment paper. A list and bowls of more ingredients,The man greases a 10x3 round cake pan and covers it with parchment paper.,A list and bowls of more ingredients,gold,are prepared and poured into a large metal pot and stirred vigorously.,are shown on top of the mixtures.,are shown on the cake.,are fully prepared to leave.\n2123,anetv_XqxJsWQqKRk,6952,A smiling black man is in a residential kitchen and he's wearing a santa hat and pouring ingredients into a large bowl. A hand pushes a clear bowl filled with dark figs and a cutting board appears immediately afterwards and the instructions on the screen,A smiling black man is in a residential kitchen and he's wearing a santa hat and pouring ingredients into a large bowl.,A hand pushes a clear bowl filled with dark figs and a cutting board appears immediately afterwards and the instructions on the screen,gold,\"shows that the counter is near enough, then the person is cooking pasta.\",\"indicate, baking being down, and empty.\",say to cut the stems off of 1 lb of figs and quarter them.,going fast until long tables are mainly white.\n2124,anetv_W_hux-Z6Ll0,14017,People are skiing down a hill of snow. A person,People are skiing down a hill of snow.,A person,gold,does several flips in the air on skis.,is pulling on a tube.,is tubing down the tube.,is riding over the snow!\n2125,anetv_W_hux-Z6Ll0,13623,People in stands are clapping. men,People in stands are clapping.,men,gold,are watching and dancing.,start to play basketball on a skate stage.,are hugging each other standing on snow.,engage in an indoor shuffleboard.\n2126,anetv_W_hux-Z6Ll0,14018,A person does several flips in the air on skis. The crowd,A person does several flips in the air on skis.,The crowd,gold,cheers as people continue dancing.,falls off the ground until he is seen.,watching him cheers for him.,watches them with harness on broomsticks.\n2127,anetv_W_hux-Z6Ll0,13621,People are standing in a snow ramp. man,People are standing in a snow ramp.,man,gold,is going down a snowy ramp in a competition while people is around the ramp.,is taking red running into a small device.,is standing under a wave to a couple landing in a parking lot.,is holding a jump and doing tricks.\n2128,anetv_W_hux-Z6Ll0,13622,Man is going down a snowy ramp in a competition while people is around the ramp. people,Man is going down a snowy ramp in a competition while people is around the ramp.,people,gold,are doing air ramps in a roofed gym.,are jumping roller hard ramps doing tricks.,are on a roof lift down the roof.,are doing high jumps going down the slope in competitions.\n2129,anetv_VgQ6a7oVx7g,11949,A guy locks his arms around bars above his head. The guy,A guy locks his arms around bars above his head.,The guy,gold,swings his body while holding on to the bars.,lands at the floor.,puts on his jacket and continues spinning and getting back on the rope.,pulls down the cloth bag.\n2130,anetv_VgQ6a7oVx7g,11950,The guy swings his body while holding on to the bars. The guy,The guy swings his body while holding on to the bars.,The guy,gold,swings into a gymnastics routine.,jumps off the wall and begin an arm wrestling match.,gets to the rope once more.,\"flips off the bars and lands on his feet, claps, and begins to leave.\"\n2131,anetv_VgQ6a7oVx7g,11948,People are performing gymnastic stunts in front of an audience. A guy,People are performing gymnastic stunts in front of an audience.,A guy,gold,springs off and lands on a mat next to him.,spins and lands on stage for another kite.,locks his arms around bars above his head.,helps out of an exercise suit as the competitor applaud.\n2132,anetv_VgQ6a7oVx7g,11951,\"The guy flips off the bars and lands on his feet, claps, and begins to leave. A man\",\"The guy flips off the bars and lands on his feet, claps, and begins to leave.\",A man,gold,raises his club on both hands and swings towards the stage.,holds blue words out for time.,approaches the guy clapping.,drops the weight over his shoulder.\n2133,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4325,\"On the wall ahead, he sees a circular hinged door decorated with a pattern of snakes. He\",\"On the wall ahead, he sees a circular hinged door decorated with a pattern of snakes.\",He,gold,\"grasps the edge of the studio door, sinking further into the snitch.\",\"goes towards it, and starts to speak.\",creeps out behind the back of the bed and peers down a path of a cave with his sail.,\"goes in the door and through a middle - aged girl, munching bean - o - a mother.\"\n2134,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4324,\"Holding his wand in his hand, he starts to explore the cave. On the wall ahead, he\",\"Holding his wand in his hand, he starts to explore the cave.\",\"On the wall ahead, he\",gold,finds his photograph of someone.,sees an orange winged creature on top of the black male.,sees someone kneeling beside him.,sees a circular hinged door decorated with a pattern of snakes.\n2135,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4320,\"Lying on the ground, someone smiles vacantly. He\",\"Lying on the ground, someone smiles vacantly.\",He,gold,\"smiles brightly at the cousins, as someone lies motionless at his feet.\",picks up a stone.,hangs on open and stares at her.,picks up her cell phone.\n2136,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4319,The passage between people is completely blocked. Someone,The passage between people is completely blocked.,Someone,gold,\"reaches out, grabs a pole, and shrinks.\",peers through a tiny gap in the rocks.,grabs over a wall.,\"is dragged out onto the riverbank, carrying russian homes.\"\n2137,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4321,He picks up a stone. Someone,He picks up a stone.,Someone,gold,\"is dead in a cemetery, covered with spanish high grass one stacks of flowers behind him, etc.\",stands up in the bow.,grabs the stone and hits him over the head with it.,stares after her kindly.\n2138,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4322,Someone grabs the stone and hits him over the head with it. Someone,Someone grabs the stone and hits him over the head with it.,Someone,gold,turns on his computer and reads.,climbs over fallen rocks.,enters in the general direction.,turns to someone also.\n2139,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93333,4323,\"Someone climbs over fallen rocks. Holding his wand in his hand, he\",Someone climbs over fallen rocks.,\"Holding his wand in his hand, he\",gold,swims away to some school.,starts to explore the cave.,swipes it at a shuffle board.,turns to see a torch flying through the windows.\n2140,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10754,He sneers triumphantly at his dead enemy. He,He sneers triumphantly at his dead enemy.,He,gold,is not there.,is looking in a direction.,gazes at his prize and caresses it with his long fingers.,opens and tosses forward the rifles.\n2141,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10751,A grey beard trails down his chest. His hands,A grey beard trails down his chest.,His hands,gold,sometimes seem to wander under the print sheet.,wrestle on his desk.,are clasped around the black elder wand.,and shoulders are parallel to his sister.\n2142,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10747,\"The rippling waters of Hogwarts lake are surrounded by dark mountains. On the far side, a tomb\",The rippling waters of Hogwarts lake are surrounded by dark mountains.,\"On the far side, a tomb\",gold,covers a golden flag hanging from the rippling waters of the river.,looms thick with crags of a vast sea.,rests on the tiny island.,- like ship sits in the middle of the river.\n2143,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10742,He lowers his head and gently rocks the house elf's tiny body. Someone,He lowers his head and gently rocks the house elf's tiny body.,Someone,gold,rushes up into the hall now someone makes her way upstairs.,\"carries fish out, and crawls away from another wire post.\",\"digs a grave amongst the tall grass on the sand dunes behind shell cottage, overlooking the beach.\",\"floats from the side, transfixed by the sight of some last forgetting someone.\"\n2144,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10745,Someone rests her head on someone's shoulder. They,Someone rests her head on someone's shoulder.,They,gold,sit with someone aside someone's grave.,fight between marks on the cliff.,stroll towards the gate.,wave to the sun in the upper deck.\n2145,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10750,\"Someone leans down into the tomb and peers close to the dead, whose body shows no sign of decay. A grey beard\",\"Someone leans down into the tomb and peers close to the dead, whose body shows no sign of decay.\",A grey beard,gold,sits motionless on the ground.,trails down his chest.,appears in his high fifties.,has stubble on his shoulder.\n2146,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10746,They sit with someone aside someone's grave. The rippling waters of Hogwarts lake,They sit with someone aside someone's grave.,The rippling waters of Hogwarts lake,gold,are surrounded by dark mountains.,rise out of the air and sprawls above the mountains.,is filled with the herd of cattle.,is brightly set up.\n2147,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10740,\"Someone gazes down at the small still body, lying in his arms. Someone\",\"Someone gazes down at the small still body, lying in his arms.\",Someone,gold,kneels down beside him.,\"sits back, just his arms above his head.\",is fuming and pushing desperately into a wall.,watches them through the swirling waves.\n2148,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10741,Someone gently closes someone's eyes. Someone's face,Someone gently closes someone's eyes.,Someone's face,gold,is rapt with grief.,is even partially broken.,is up with sweat.,is drawn but scarred.\n2149,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10753,Someone slides the wand slowly from someone's hands. He,Someone slides the wand slowly from someone's hands.,He,gold,kisses someone again before still holding someone's wand.,puts the weights down and beams lovingly.,turns to the peach surrounding.,sneers triumphantly at his dead enemy.\n2150,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10752,His hands are clasped around the black Elder Wand. Someone,His hands are clasped around the black Elder Wand.,Someone,gold,makes a slash across the floor.,slides the wand slowly from someone's hands.,is just strong contrast.,\"turns to the left and sees someone still wearing a red suit, eyes a teacup.\"\n2151,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10744,Someone tenderly takes the elf's body from someone. Someone,Someone tenderly takes the elf's body from someone.,Someone,gold,is driven in the house.,failed to maintain the new recovered.,rests her head on someone's shoulder.,and someone hear a whale in the muck.\n2152,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10749,A figure raises a wand. Someone,A figure raises a wand.,Someone,gold,\"leans down into the tomb and peers close to the dead, whose body shows no sign of decay.\",\"smashes his wand at someone's head, steps away.\",\"drops from the elbow, knocking her down on the ground.\",\"opens the flare - like 2000 year lighter, bright flame: sticks.\"\n2153,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10748,Two supports beneath it tumble away. A dark figure,Two supports beneath it tumble away.,A dark figure,gold,stands beside the marble slab covering the grave.,moves in under her.,balancing false legs on his cart.,approaches in the transmitter.\n2154,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94571,10743,\"She is carrying someone's body, wrapped in a white cloth. Someone\",\"She is carrying someone's body, wrapped in a white cloth.\",Someone,gold,looks down at the basket and the wooden door in the circle.,\"comes down the street, but he stays upright.\",rises with a faint delighted little smile.,tenderly takes the elf's body from someone.\n2155,lsmdc3089_XMEN_FIRST_CLASS-43266,11884,\"As the memory fades, someone blinks out a tear. He\",\"As the memory fades, someone blinks out a tear.\",He,gold,holds his hands in front of the food counter.,presses his hand against the cop's mouth.,\"stares off, his chest heaving, then clenches his.\",locks his eyes for a moment then heads for a fruit.\n2156,lsmdc3089_XMEN_FIRST_CLASS-43266,11879,\"On the mannequin's other side, someone inches away from the target. Someone shoots energy from his chest and the beam\",\"On the mannequin's other side, someone inches away from the target.\",Someone shoots energy from his chest and the beam,gold,spreads across his white warriors' face.,shifts mid the step.,hits the dummy in a burst of flames.,returns to the stunned someone.\n2157,lsmdc3089_XMEN_FIRST_CLASS-43266,11886,Someone opens his eyes and brushes a tear from his own cheek. He,Someone opens his eyes and brushes a tear from his own cheek.,He,gold,hold someone's gaze.,falls onto the street in disgust.,leaves his wig off.,leans over and kisses her brow.\n2158,lsmdc3089_XMEN_FIRST_CLASS-43266,11876,\"The boy dives back toward the satellite dish, then uses his sound rings to glide over dish's concave face. Someone\",\"The boy dives back toward the satellite dish, then uses his sound rings to glide over dish's concave face.\",Someone,gold,gives someone a disapproving look.,smiles and looks at her.,tears his eye and sees her.,\"opens the door via the black bowl, then opens it, revealing a pink - and - white book.\"\n2159,lsmdc3089_XMEN_FIRST_CLASS-43266,11889,Someone faces the satellite dish. He,Someone faces the satellite dish.,He,gold,passes fountains on a white surfboard rolling as everyone tries to surf on shore.,bows his head for a moment.,removes the bridge of her nose.,\"flashes out, then faces the staff affectionately.\"\n2160,lsmdc3089_XMEN_FIRST_CLASS-43266,11891,The dish shifts and someone knits his brow in concentration. Someone's shoulders,The dish shifts and someone knits his brow in concentration.,Someone's shoulders,gold,\"tremble, then starts again.\",plunges on the tight track.,heave as he fiddles with his young head.,heave as he controls the satellite dish.\n2161,lsmdc3089_XMEN_FIRST_CLASS-43266,11862,\"Opening it, he finds the bunker's arch - shaped support beams in flames. He\",\"Opening it, he finds the bunker's arch - shaped support beams in flames.\",He,gold,glances back to her.,grabs an extinguisher and hurriedly puts out the fire.,makes a quick call.,sees the extra soft.\n2162,lsmdc3089_XMEN_FIRST_CLASS-43266,11882,\"His mother stands with him and they share a smile. Reaching out, she\",His mother stands with him and they share a smile.,\"Reaching out, she\",gold,pulls out her dad's photo.,looks at him with an anxious look.,finds herself beaming at him.,brushes his cheek with her finger.\n2163,lsmdc3089_XMEN_FIRST_CLASS-43266,11892,Someone's shoulders heave as he controls the satellite dish. He,Someone's shoulders heave as he controls the satellite dish.,He,gold,obeys and takes a few deep breaths.,\"raises it at someone, then watches someone through a window.\",curls his fingers as if holding an invisible tennis ball.,walks up a ladder toward a high harbor.\n2164,lsmdc3089_XMEN_FIRST_CLASS-43266,11880,Now someone points at the satellite dish in the far distance. He,Now someone points at the satellite dish in the far distance.,He,gold,shoots an uncertain look and his friend nod.,lets out a charger and fixes the belt on the steering wheel.,lifts a long strip on his finger.,\"opens his mouth, and then comes out of the gate.\"\n2165,lsmdc3089_XMEN_FIRST_CLASS-43266,11866,\"Passing a window, he sees someone inside. She waves and he\",\"Passing a window, he sees someone inside.\",She waves and he,gold,drapes himself over a half - neutral cabinet set of stairs.,\"shuts the trunk and runs off, leaving her family clocks on walkie - talkie and her boss in his office.\",gives her a half - hearted smile as he returns the gesture.,gets to his feet.\n2166,lsmdc3089_XMEN_FIRST_CLASS-43266,11865,Someone stretches his bare feet. They,Someone stretches his bare feet.,They,gold,hold the hood's hood and run off as someone's dad storms out.,race down the driveway.,step beneath him goblin archways.,arrive in the opposite direction.\n2167,lsmdc3089_XMEN_FIRST_CLASS-43266,11872,\"Later someone joins someone in a lab. Sitting on his lap, someone\",Later someone joins someone in a lab.,\"Sitting on his lap, someone\",gold,leans his hand on the tattoo gun window.,takes the coat bag.,lies asleep on a couch.,peers into his microscope.\n2168,lsmdc3089_XMEN_FIRST_CLASS-43266,11890,He bows his head for a moment. The dish shifts and someone,He bows his head for a moment.,The dish shifts and someone,gold,lunges with ice and wipes his mouth.,moves to avoid them.,knits his brow in concentration.,wanders back toward mr.\n2169,lsmdc3089_XMEN_FIRST_CLASS-43266,11877,Someone marks a mannequin with an x.. Someone,Someone marks a mannequin with an x..,Someone,gold,rides out of hiding.,holds flat nail choices on its side.,stands by the dummy.,sits by the front of his car.\n2170,lsmdc3089_XMEN_FIRST_CLASS-43266,11883,\"Reaching out, she brushes his cheek with her finger. As the memory fades, someone\",\"Reaching out, she brushes his cheek with her finger.\",\"As the memory fades, someone\",gold,rolls her gaze and spreads his eyes.,blinks out a tear.,finds someone watching the clock.,\"strolls in, walking them around to help.\"\n2171,lsmdc3089_XMEN_FIRST_CLASS-43266,11887,He hold someone's gaze. He,He hold someone's gaze.,He,gold,pats him on the shoulder.,puts down his quill and leaves.,lifts his brow and touches his lips.,rises as the couples dance.\n2172,lsmdc3089_XMEN_FIRST_CLASS-43266,11885,\"He stares off, his chest heaving, then clenches his. Someone\",\"He stares off, his chest heaving, then clenches his.\",Someone,gold,leans forward and faces a glass against the american's straps.,opens his eyes and brushes a tear from his own cheek.,\"dons a pair of glasses, and returns with some beer.\",\"turns the car upside down and then freezes, looking down from an overpass.\"\n2173,lsmdc3089_XMEN_FIRST_CLASS-43266,11878,\"Someone stands by the dummy. On the mannequin's other side, someone\",Someone stands by the dummy.,\"On the mannequin's other side, someone\",gold,turns to the young thug and spits out water from his fingers.,\"stares at the ceiling and spies someone on her right, head.\",inches away from the target.,is surprised to be elaborately.\n2174,lsmdc3089_XMEN_FIRST_CLASS-43266,11859,Now someone runs laps with someone. Someone,Now someone runs laps with someone.,Someone,gold,\"is now crossing the haze, hangs himself, covering himself.\",steps out and closes a heavy - duty hatch.,'s previa are coming on.,throws someone in the front seat and swings himself forward.\n2175,lsmdc3089_XMEN_FIRST_CLASS-43266,11861,\"He presses an ear to the door. Opening it, he\",He presses an ear to the door.,\"Opening it, he\",gold,finds the bunker's arch - shaped support beams in flames.,closes the door and places the key on the key.,shuts the door and shuts it.,pours the tin small.\n2176,lsmdc3089_XMEN_FIRST_CLASS-43266,11867,Someone morphs into her true form as she catches it. Someone,Someone morphs into her true form as she catches it.,Someone,gold,whips a bag from a hanger.,turns away as the slytherin version makes him chalice the eyes burst open.,stares after him as he strides away.,someones mother removes his helmet.\n2177,lsmdc3089_XMEN_FIRST_CLASS-43266,11873,Someone shoves someone off the dish. Rings of sound waves,Someone shoves someone off the dish.,Rings of sound waves,gold,backs him as he watches the door close.,\"shoot out of his mouth, expanding in a cone shape.\",illuminate the lighted patch of buildings around them.,drift forward and bathing people above the sea of calm spires.\n2178,lsmdc3089_XMEN_FIRST_CLASS-43266,11881,\"His eyes close briefly, then meet someone's. In his mind's eye, someone\",\"His eyes close briefly, then meet someone's.\",\"In his mind's eye, someone\",gold,sees the chessboard shield at the desk.,focuses on men with alarmed women.,sees a young someone lighting candle.,notices the backup singers and points ahead.\n2179,lsmdc3089_XMEN_FIRST_CLASS-43266,11893,\"Breaking into a grin, he lowers his arm. Someone\",\"Breaking into a grin, he lowers his arm.\",Someone,gold,waves her back and looks at someone as she exits.,pulls him towards the shore.,sticks her head out a window.,has a scar at his side.\n2180,lsmdc3089_XMEN_FIRST_CLASS-43266,11869,\"Now someone wears a vest with a circular panel on its chest. Facing three mannequins, someone\",Now someone wears a vest with a circular panel on its chest.,\"Facing three mannequins, someone\",gold,surfaces in the sand.,shoots a shaft of energy from his chest.,starts out with the blaster aimed and crouches through a panicking mass.,puts the earpiece down.\n2181,anetv_44M2Ov9JzUE,6335,The camera pans in on a volleyball player while she plays a game with others. The camera,The camera pans in on a volleyball player while she plays a game with others.,The camera,gold,captures the other people holding the puzzle as well as people speaking and playing one another.,continues to play a game and the camera records the game on the field.,zooms in as well as the players capturing the ingredient before ending the game and having fun.,pauses every now and then to capture her movements and pans around the other people playing.\n2182,anetv_FA4BDINxLmE,11071,A close up of a person walking on a rope is shown followed by and old man speaking to the camera and more shots of the person walking. More people,A close up of a person walking on a rope is shown followed by and old man speaking to the camera and more shots of the person walking.,More people,gold,\"are seen pushing rock paper, guiding the camel around while laughing and leads into a man speaking to the camera.\",are being interviewed while people walk behind them and show several more shots of people walking across a rope.,are seen walking out into a small pit and lead into several chefs as well as ready to pumpkins.,are seen doing tricks in a ski park followed by skiers jumping and looking down the hill.\n2183,lsmdc3004_500_DAYS_OF_SUMMER-1353,369,\"Wearing headphones, someone enters a lift. Someone\",\"Wearing headphones, someone enters a lift.\",Someone,gold,hurries in as well.,contains a dead italian harmonica.,wears a yellow helmet.,sits down beside him.\n2184,lsmdc3004_500_DAYS_OF_SUMMER-1353,373,Someone's handing out glasses of bubbly. He,Someone's handing out glasses of bubbly.,He,gold,sees someone look up.,chats with a certificate.,walks stiffly to a small office door.,spots someone standing alone.\n2185,lsmdc3004_500_DAYS_OF_SUMMER-1353,368,Someone goes back to work. Three,Someone goes back to work.,Three,gold,closes the door and opens the door.,\"pauses slightly as he strolls out of the city past her, then hurries into the sitting room.\",rolls over to four.,penguins enter with frantically on their way.\n2186,lsmdc3004_500_DAYS_OF_SUMMER-1353,371,\"Someone, in shirt and cardigan with a loosely knotted tie, studiously ignores the dark haired large - eyed someone. Someone\",\"Someone, in shirt and cardigan with a loosely knotted tie, studiously ignores the dark haired large - eyed someone.\",Someone,gold,\"lies awake, in his arms, arms wide, crooked with his left foot somewhat exhausted.\",\"stares at her, entranced.\",waddles toward the bus.,throws the broken bottle onto his shoulder.\n2187,lsmdc3004_500_DAYS_OF_SUMMER-1353,372,\"A sign reads, Happy engagement, someone. Someone's\",\"A sign reads, Happy engagement, someone.\",Someone's,gold,eyes return to the next page.,handing out glasses of bubbly.,daughter walks around until she goes on to join her.,face filled with tears.\n2188,lsmdc3004_500_DAYS_OF_SUMMER-1353,370,\"Someone hurries in as well. Someone, in shirt and cardigan with a loosely knotted tie,\",Someone hurries in as well.,\"Someone, in shirt and cardigan with a loosely knotted tie,\",gold,studiously ignores the dark haired large - eyed someone.,\"crouches down to his dashboard, gets out and peers around an empty bridge.\",puts writhes in invisible foam.,fixes him with a warm dip.\n2189,anetv_8Zgys8Vn-4Y,17734,A person is shown on skis riding behind a boat on water performing various tricks. The man,A person is shown on skis riding behind a boat on water performing various tricks.,The man,gold,continues doing several different tricks on the skis and the boat moving a lot faster.,speaks to the camera as he walks past the camera.,\"continues going around, paddling faster.\",\"moves to the end of the boat, flipping one more time while still swimming pool water and smiling while riding it.\"\n2190,anetv_jx7_0MRlScw,12204,People are driving around playing bumper cars. A man,People are driving around playing bumper cars.,A man,gold,gets people come out and drives with another person.,slows down and does drum flips and stunts as the person watches the teens begin.,walks down the road using his car.,has to help get cars unstuck.\n2191,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96138,4497,\"Someone sees someone sitting outside his cottage playing a tune. Cloaks flying, they\",Someone sees someone sitting outside his cottage playing a tune.,\"Cloaks flying, they\",gold,run towards the cottage.,fall into the sand.,smash out over parked dead leaves.,gallop across to a tall farmer overlooking the village.\n2192,anetv_cnFw7hjmqJY,14177,The coach os hlping the girl to catch the ball and run. the kid,The coach os hlping the girl to catch the ball and run.,the kid,gold,counts after that silicone the woman and falls for any final.,perform flips and knit.,make a throw and then score a basket adn the kids behind her keeps doing the same.,runs up the end of the contract and waves to the crowd.\n2193,anetv__MR8G1jwM4o,9467,A row of treadmills is shown. a woman then,A row of treadmills is shown.,a woman then,gold,inserts the smoke in her ears.,dives on a rock.,demonstrates the exercise machine.,plays with streamers at a table.\n2194,anetv__MR8G1jwM4o,7770,A woman is seen speaking to the camera and shows several shots of people working out on a machine. The woman,A woman is seen speaking to the camera and shows several shots of people working out on a machine.,The woman,gold,moves around several more chords and ends by instructing the others into the pit.,then begins pushing the bike all down a track while still riding on the spinning getting his steering.,continues speaking as video of a woman is shown exercising on the equipment.,continues speaking to the camera while the camera pans around and show several women working in a barber car.\n2195,lsmdc3090_YOUNG_ADULT-44014,17338,\"Someone closes her window again. Back in her hotel, someone\",Someone closes her window again.,\"Back in her hotel, someone\",gold,opens her bathroom door and turns on the light.,dangles over his glass.,gives someone the help of a purse.,pulls in a suite's buttoning plush shirt.\n2196,lsmdc3090_YOUNG_ADULT-44014,17341,With her purse slung over one shoulder. Someone,With her purse slung over one shoulder.,Someone,gold,walks through the smart door at the door.,\"'s eyes draw, nervously.\",shuffles across the lot toward the department store.,waits and cautiously runs to her eyes.\n2197,lsmdc3090_YOUNG_ADULT-44014,17342,\"Someone shuffles across the lot toward the department store. Inside, she\",Someone shuffles across the lot toward the department store.,\"Inside, she\",gold,inspects shirts on hangers.,grabs a rocket from the roof of her open closet and peers inside.,clips up a huge telephone.,writes buckingham yang on a stack of books.\n2198,lsmdc3090_YOUNG_ADULT-44014,17340,A half dozen cars sit in a Macy's parking lot. With her purse,A half dozen cars sit in a Macy's parking lot.,With her purse,gold,\"lowered, picnic sits on the beds.\",slung over one shoulder.,\"over his shoulder, someone shuts the door.\",slung over her shoulder she is about to get three large green dresses in the back of her old trailer uniform.\n2199,lsmdc1041_This_is_40-8889,17446,\"Extracting the cupcake from a soggy bed of scrambled eggs, he unwraps the tainted treat. He\",\"Extracting the cupcake from a soggy bed of scrambled eggs, he unwraps the tainted treat.\",He,gold,stuffs the paste into the pizza carton before returning to his portable now - chocolate bologna.,\"glances toward the open front door, then takes a bite.\",\"stalks off in the hotel pool, picks up the remote, and climbs into the passenger seat.\",eyes a cluster of sparsely formed mirror and pale energy.\n2200,lsmdc1041_This_is_40-8889,17445,\"Her sister throws clothes at a closet. Wearing biking gear, he\",Her sister throws clothes at a closet.,\"Wearing biking gear, he\",gold,pulls onto an undershirt where they are with a golf club.,plugs the narrow brake device for a few.,gets onto two jeans holding a stick.,kisses her goodbye then sneaks over to the kitchen sink.\n2201,lsmdc1041_This_is_40-8889,17447,\"He glances toward the open front door, then takes a bite. Now, a lanky man\",\"He glances toward the open front door, then takes a bite.\",\"Now, a lanky man\",gold,leads the woman and a plump brunette up an outdoor flight of stairs at a brisk jog.,is in a slinky - colored dress standing beside two miniature bottles.,struggles down from his balcony and slowly reaches from the decorative bushes in front of his mouth.,arrives through a military recruitment office in a lake.\n2202,lsmdc1041_This_is_40-8889,17444,\"Now in the room, the younger daughter plays a larger keyboard. Her sister\",\"Now in the room, the younger daughter plays a larger keyboard.\",Her sister,gold,throws clothes at a closet.,comes in and kicks a check back into the bed.,watches her make hike across a balcony revealing the tubby zebra.,\"gently approaches her smooth, felt thighs.\"\n2203,lsmdc3061_SNOW_FLOWER-29752,17779,\"A pretty, young woman opens the window and the girl ducks down. Sitting close to her aunt, someone\",\"A pretty, young woman opens the window and the girl ducks down.\",\"Sitting close to her aunt, someone\",gold,climbs and hugs his wife.,is sitting at her laptop.,glances up on some of the christmas balls.,notices an antique slipper the size of a small child's foot.\n2204,anetv_LACH47i14lY,18355,On the right there is a lady speaking in sign language with her hands and the weather cycles above her. We,On the right there is a lady speaking in sign language with her hands and the weather cycles above her.,We,gold,talks to a crowd as we flame see several people diving in white water swimming in the sky.,\"the two, she is preparing.\",switch and see men playing a game of soccer.,see the camera sitting on the skis and riding snowslides on the yellow river.\n2205,anetv_LACH47i14lY,18357,We see an interview with one man and see the team hug the man. We,We see an interview with one man and see the team hug the man.,We,gold,see the closing title screen.,see the winner of the man throwing the dart and the plates with friends before taking their shirts off at some point.,see another game with other teams.,see a man talking with a younger man.\n2206,anetv_LACH47i14lY,18356,We switch and see men playing a game of soccer. We,We switch and see men playing a game of soccer.,We,gold,see the seam of the screen close up.,see an interview with one man and see the team hug the man.,see the girls sitting by the volleyball celebrate.,see horses walking outside the field.\n2207,anetv_LACH47i14lY,18359,We see the men of the winning team hug each other. We then,We see the men of the winning team hug each other.,We then,gold,see people clapping in the motion.,return to the newscaster in the studio.,see another lady marching to the beach.,see the ending for the final result.\n2208,anetv_LACH47i14lY,18358,We see another game with other teams. We,We see another game with other teams.,We,gold,see five ladies yelling at each other.,see the score game on the ground and we see the ending screen.,see shots pose as bleachers and spins in one.,see the men of the winning team hug each other.\n2209,anetv_LACH47i14lY,9917,A game of soccer is in progress. A woman,A game of soccer is in progress.,A woman,gold,is then shown fixing the same shirt.,\"serves the ball, getting ready to cut.\",signs what is happening as the game continues.,shows her foot by the net.\n2210,anetv_p1pkFRHG7UY,7362,A tall building is shown with a tower. People,A tall building is shown with a tower.,People,gold,are waving white hats bathed in the air.,are applauding for people that are jumping off of the top of the building.,exit the cargo hold.,take aim and chase each other.\n2211,lsmdc0011_Gandhi-52908,19556,A British major comes down the steps quickly. He,A British major comes down the steps quickly.,He,gold,shakes the grieving man's glasses and swallow.,is almost at the bottom when a british army doctor starts to go up them.,is balancing in its arms as he watches the seal.,has thick red hair from his work.\n2212,lsmdc0011_Gandhi-52908,19558,\"They talk quietly and confidentially. Someone lies on a mat, a pillow beneath her head, her eyes\",They talk quietly and confidentially.,\"Someone lies on a mat, a pillow beneath her head, her eyes\",gold,lurking as he appears to be studying.,\"closed, her breathing short.\",\"closed and her forehead facing her slightly, her face hanging returning.\",fixed on someone's room.\n2213,lsmdc0011_Gandhi-52908,19563,Finally someone takes just a step forward. Someone,Finally someone takes just a step forward.,Someone,gold,is knocked towards someone's prone colleague.,reaches over and grabs his arm.,\"looks into the street, her eyes wide.\",looks up at him.\n2214,lsmdc0011_Gandhi-52908,19561,\"People come to the doorway, someone makes the pranam toward someone and holds it as he obviously prays. Someone has bowed his head and he too\",\"People come to the doorway, someone makes the pranam toward someone and holds it as he obviously prays.\",Someone has bowed his head and he too,gold,is clearly making some prayer for her.,is in his opposite direction.,makes no move at all.,has a stick out.\n2215,lsmdc0011_Gandhi-52908,19559,\"Someone lies on a mat, a pillow beneath her head, her eyes closed, her breathing short. Someone\",\"Someone lies on a mat, a pillow beneath her head, her eyes closed, her breathing short.\",Someone,gold,enters the salon and comes in carrying a bottle of beer.,\"sits next to her, rubbing a hand up and down her arm.\",\"grabs the phone from her chest, squints at him, then hurries into her room, followed by the witches.\",blows out the lingerie.\n2216,lsmdc0011_Gandhi-52908,19557,He is almost at the bottom when a British army doctor starts to go up them. The major,He is almost at the bottom when a British army doctor starts to go up them.,The major,gold,is quite crowded there.,turns and walks away.,holds up the rifle to look at the cash.,signals him to one side.\n2217,lsmdc0011_Gandhi-52908,19562,Someone has bowed his head and he too is clearly making some prayer for her. Finally someone,Someone has bowed his head and he too is clearly making some prayer for her.,Finally someone,gold,comes to yell at him.,grabs a guard shout with his fist.,turns to someone and raises the flag.,takes just a step forward.\n2218,lsmdc0011_Gandhi-52908,19564,\"For a moment he folds his hands absently, then he stands. He\",\"For a moment he folds his hands absently, then he stands.\",He,gold,studies the nod and claps his hands over his head.,\"turns, this time spewing restless.\",\"starts to advance, but not moved.\",moves to someone's side and kneels.\n2219,lsmdc0011_Gandhi-52908,19555,Two military ambulances are drawn up nearby. A British major,Two military ambulances are drawn up nearby.,A British major,gold,sighs then scurry across the floor.,has out just as the captain jumps on a corpse.,comes down the steps quickly.,stands up on his ridge.\n2220,lsmdc0011_Gandhi-52908,19554,She looks at them soberly and then they all burst into laughter like girls. Two military ambulances,She looks at them soberly and then they all burst into laughter like girls.,Two military ambulances,gold,stand close behind her.,walk down a line toward the corridor.,are used to separate dance.,are drawn up nearby.\n2221,lsmdc0011_Gandhi-52908,19560,\"Someone sits inconspicuously behind him. People come to the doorway, someone\",Someone sits inconspicuously behind him.,\"People come to the doorway, someone\",gold,makes the pranam toward someone and holds it as he obviously prays.,\"sets a gold control bag on his case, then leans closer.\",views the tank of hearing something.,comes up high with the other boys.\n2222,anetv_wdsZn1Yu_5M,49,Boats are seen pulling people on water skis. A man,Boats are seen pulling people on water skis.,A man,gold,holds a pole to a sail while sitting in the water.,continues talking then people are seen running down a river with others.,falls onto the rope alongside pulling the water from a board.,is shown preparing and then skiing through the water.\n2223,anetv_wdsZn1Yu_5M,48,A blonde woman is speaking in a news room in front of a large screen. Boats,A blonde woman is speaking in a news room in front of a large screen.,Boats,gold,are seen pulling people on water skis.,walk down a crowded street in the background.,is then seen sitting with the woman sitting in a row of kayaks.,talks to the camera again.\n2224,anetv_etfSrbmOvUE,14813,\"Another race up the wall begins in which the person on the right falls off and the person on the left climbs to the top of the wall and then jumps off the wall into the water. In the same setting, but now during the daytime, a lone person wearing skis\",Another race up the wall begins in which the person on the right falls off and the person on the left climbs to the top of the wall and then jumps off the wall into the water.,\"In the same setting, but now during the daytime, a lone person wearing skis\",gold,catapults through the air past the rock climbing wall and lands in the water below.,after the pace of a herd and a man mounts the sidewalk and goes over the hall and moves it away.,approaches a banner at the bottom of the concrete slope.,\"is shown riding a slow ball, but the cloud changes to red negative hills and spatula.\"\n2225,anetv_etfSrbmOvUE,14811,\"Two people climb a rock climbing wall at night in front of a narrow pool of water surrounding by a crowd of onlookers. The two people climb slowly up the wall, when over midway up, the person on the left\",Two people climb a rock climbing wall at night in front of a narrow pool of water surrounding by a crowd of onlookers.,\"The two people climb slowly up the wall, when over midway up, the person on the left\",gold,begins to walk toward the camera.,falls from the wall and into the water below.,scoops jumps in the water and further starts swimming.,looks again kneeling down.\n2226,anetv_etfSrbmOvUE,14812,\"The two people climb slowly up the wall, when over midway up, the person on the left falls from the wall and into the water below. Another race up the wall begins in which the person on the right falls off and the person on the left\",\"The two people climb slowly up the wall, when over midway up, the person on the left falls from the wall and into the water below.\",Another race up the wall begins in which the person on the right falls off and the person on the left,gold,helps the other and slams the boy.,looks up from the floor while wearing blue t - shirt carry it upon.,\"morphs into an atrium, twitching hand on the bottom of the foam sphere.\",climbs to the top of the wall and then jumps off the wall into the water.\n2227,anetv_scapZQe6_Iw,18348,Two men are standing on a field behind a row of houses. One,Two men are standing on a field behind a row of houses.,One,gold,is on their feet on the roof of the bike and the man in the suit is on an aerobic bench.,\"swings a bat and runs onto the field, chasing a ball.\",team jumps up then walks down the rink on the ice.,are engaged in boats and then lay up on the bar to talk to the team.\n2228,anetv_scapZQe6_Iw,18349,\"One swings a bat and runs onto the field, chasing a ball. The ball is thrown back to the batter, and he\",\"One swings a bat and runs onto the field, chasing a ball.\",\"The ball is thrown back to the batter, and he\",gold,grabs her by the legs and follows him with the knife.,\"knocks it over both faces, burying his face.\",continues the game of cricket with his team mates.,instead takes his briefcase and walks out onto the field.\n2229,anetv_hZRgO5Kd-rE,12193,The person mixes ingredients together and lays them on slices of bread to create a sandwich. The person,The person mixes ingredients together and lays them on slices of bread to create a sandwich.,The person,gold,places a piece of spaghetti on the bread and finishes by pushing over.,then pours butter in the paper and puts it silently on the oven.,cuts a fruit up and peels a piece of bread off the burner.,presses the food into a presser and takes a large bite afterwards.\n2230,anetv_hZRgO5Kd-rE,12192,A man is seen speaking to the camera and leads into various ingredients begin shown and a person slicing up cheese. The person,A man is seen speaking to the camera and leads into various ingredients begin shown and a person slicing up cheese.,The person,gold,slices all the way back to a butter pot and adds more ingredients into the pan.,continues peeling while the camera zooms in on the piece of fruit.,mixes all the ingredients together all along the floor using straw and followed by putting it into a plate and ends by presenting them.,mixes ingredients together and lays them on slices of bread to create a sandwich.\n2231,anetv_yacDrjVTUak,10064,The man pushes his helmet up and replaces the wires and sands the same area again. He,The man pushes his helmet up and replaces the wires and sands the same area again.,He,gold,places his gloves down and shows the weld he finished.,throws himself in the tube and turns around.,flips across the screen in fast motion and ends by holding his bow.,moves to the camera again.\n2232,anetv_yacDrjVTUak,10062,The man sands the corner where he was welding. He,The man sands the corner where he was welding.,He,gold,continues to weld in the same corner.,sets the kit back on the wall and looks at the dying rider.,leaves a black carpet and applies some sort of patch to the wallpaper.,plays the saxophone and kicks it at regular speed.\n2233,anetv_yacDrjVTUak,10063,He continues to weld in the same corner. The man,He continues to weld in the same corner.,The man,gold,lifts the worktable in size while showing how to properly cook.,spits a paper pedal on the machine and slowly smokes other legs.,pushes his helmet up and replaces the wires and sands the same area again.,takes off his other shoe and places it on his lap.\n2234,anetv_yacDrjVTUak,10061,He starts to weld the corner of the room. The man,He starts to weld the corner of the room.,The man,gold,sands the corner where he was welding.,finishes and starts playing the drums.,walks into a corner and takes off his polish.,is on a computer screen on instruction how to make your cement.\n2235,anetv_DKnvOGEDUyQ,14581,A group of people are seen standing around a Foosball table playing a game with one another using the poles to play. The men,A group of people are seen standing around a Foosball table playing a game with one another using the poles to play.,The men,gold,continue competing in the people speaking to the camera as well as hitting balls around and hitting one another.,continue playing game and fourth while the camera captures them from above and two walk away in the end.,continue playing and hands laying one another to the other.,continue playing while people walk around in the field and continue to shoot a ball with another behind the neck.\n2236,anetv_z6U8CyJRNXw,6732,\"The men show off painted mustaches on their fingers, then go back to performing stunts on the surfboards. They\",\"The men show off painted mustaches on their fingers, then go back to performing stunts on the surfboards.\",They,gold,run out with a jump rope over the boat.,\"fly into the air, spinning and landing.\",pulls on a rope attached to a rope.,climb along the ropes and begins going back and forth on the narrow.\n2237,anetv_z6U8CyJRNXw,7196,A man is pulled on a knee board and goes over jumps with a tow rope. People,A man is pulled on a knee board and goes over jumps with a tow rope.,People,gold,wake board over ramps in a lake pulled by a tow rope.,are shown water tubing on the road as they run.,are sitting in cool down waters at people watching it.,\"are filming him sitting with top on the slide, finally young person is holding up monkey bars on the wall.\"\n2238,anetv_z6U8CyJRNXw,7197,People wake board over ramps in a lake pulled by a tow rope. People,People wake board over ramps in a lake pulled by a tow rope.,People,gold,are wake boarding in snowy rafts as they go in.,ride over jumps and do multiple rotations in the air on wake boards.,\"are sitting in the shore near the river, then guide the boat sings to people.\",stand and ride them in the river.\n2239,lsmdc1007_Spider-Man1-74233,5346,\"A girl, with her hair in bunches and wearing big spectacles, puts her books in the empty seat beside her. A guy, someone is armed around someone,\",\"A girl, with her hair in bunches and wearing big spectacles, puts her books in the empty seat beside her.\",\"A guy, someone is armed around someone,\",gold,pulling others duck for an incoming helium bottle.,waiting on an terrace.,carries the unconscious someone.,nods to another student.\n2240,lsmdc1007_Spider-Man1-74233,5345,\"The pasty - faced young man, someone, makes his way down the bus. A girl, with her hair in bunches and wearing big spectacles,\",\"The pasty - faced young man, someone, makes his way down the bus.\",\"A girl, with her hair in bunches and wearing big spectacles,\",gold,\"steps up the stairs to the terrace, after from the front door.\",sits at an switchboard on the couch.,\"runs around a sofa, nearly two, and finds someone studying the other cafe papers.\",puts her books in the empty seat beside her.\n2241,lsmdc1007_Spider-Man1-74233,5344,\"The bus stops, and the youth with dark hair and spectacles climbs on. The pasty - faced young man, someone,\",\"The bus stops, and the youth with dark hair and spectacles climbs on.\",\"The pasty - faced young man, someone,\",gold,makes his way down the bus.,sets a robot sitting on the shoulders.,sits among them.,turns around to face someone.\n2242,lsmdc1007_Spider-Man1-74233,5348,\"He tumbles to the floor, and his specs fall off. As someone approaches someone, she smiles and waves, he\",\"He tumbles to the floor, and his specs fall off.\",\"As someone approaches someone, she smiles and waves, he\",gold,\"takes her her hand from her waist, and kisses him again passionately.\",smiles fiercely at someone.,waves shyly back only to find she was greeting to girl friends walking behind him.,inches side into the fighter's arms.\n2243,lsmdc1007_Spider-Man1-74233,5347,The doughnut eater shakes his head. Someone,The doughnut eater shakes his head.,Someone,gold,\"checks his go, then turns to someone.\",\"glances back, then rips the kung's fist shut.\",watches as someone scans away.,\"keeps walking, his eyes fixed on someone, not seeing a leg stuck out in front of him.\"\n2244,anetv_ABBQqwPOxw4,7867,A man is seen juggling balls on a court. He,A man is seen juggling balls on a court.,He,gold,hits a ball into another player.,shoots the ball back and forth.,continues juggling with his hands.,hits a ball down table as well as only other people cheering with them.\n2245,anetv_ABBQqwPOxw4,16818,A young Caucasian male is standing outside on a tennis court juggling tennis balls. The man suddenly loses his momentum and the balls drops and he,A young Caucasian male is standing outside on a tennis court juggling tennis balls.,The man suddenly loses his momentum and the balls drops and he,gold,fights them to kick it that someone perfect missed him.,hits it with the tennis racket.,\"bounces one ball with the side, knocking the youth against the ceiling in his arms and then is able to hit the ball away\",drops the ball on the table and points to the ball as two other firemen come next to him.\n2246,lsmdc1008_Spider-Man2-75617,14044,He gazes at her through tearful eyes and looks away. Someone,He gazes at her through tearful eyes and looks away.,Someone,gold,strains at her shots.,turns to stare to someone.,gets to her feet.,thrusts her back into someone.\n2247,lsmdc1008_Spider-Man2-75617,14046,\"She leans on the table for support, then about turns and runs up the stairs. Someone\",\"She leans on the table for support, then about turns and runs up the stairs.\",Someone,gold,sits at the table.,sees the scene through a flight of letters and disappears into a small corridor with two people.,run upstairs and one follows him.,waits near her and smiles.\n2248,lsmdc1008_Spider-Man2-75617,14045,Someone gets to her feet. She,Someone gets to her feet.,She,gold,faces back a color cliff.,robe is closed with a string on its tail.,steps out of his room.,\"leans on the table for support, then about turns and runs up the stairs.\"\n2249,lsmdc1008_Spider-Man2-75617,14043,\"Her eyes fixed on someone's face, someone removes her hand from under his. He\",\"Her eyes fixed on someone's face, someone removes her hand from under his.\",He,gold,turns her back to him as someone thrusts his shotgun with shining hands.,scowls and aims it at someone.,gazes at her through tearful eyes and looks away.,\"gives a boldly look, then walks away.\"\n2250,lsmdc1008_Spider-Man2-75617,14042,\"He stretches out his hand to place it on hers. Her eyes fixed on someone's face, someone\",He stretches out his hand to place it on hers.,\"Her eyes fixed on someone's face, someone\",gold,eyes someone sadly as she runs across the main deck.,inserts a harsh thumb into a heart.,removes her hand from under his.,flips off her hair.\n2251,anetv_waFqh-Qkafc,19690,You start to slowly carve all the around the outline. Once you're done doing that and it's all done you,You start to slowly carve all the around the outline.,Once you're done doing that and it's all done you,gold,can stand up your remodeling.,add a candle so that it lights up.,week some you have.,can put it away and almost glimpse the tattoo.\n2252,anetv_waFqh-Qkafc,19688,\"Someone is showing the steps on how to carve a pumpkin. You choose a stencil and draw it on and then you get the carving tools, you also\",Someone is showing the steps on how to carve a pumpkin.,\"You choose a stencil and draw it on and then you get the carving tools, you also\",gold,change the bow position to snare the wall around mirror.,go out to the new flat and use the machine to continue they cut the wood.,have a breach from the cake has decoration.,have to empty all the pumpkin goo out of the pumpkin.\n2253,anetv_waFqh-Qkafc,19689,\"You choose a stencil and draw it on and then you get the carving tools, you also have to empty all the pumpkin goo out of the pumpkin. You\",\"You choose a stencil and draw it on and then you get the carving tools, you also have to empty all the pumpkin goo out of the pumpkin.\",You,gold,start to slowly carve all the around the outline.,use a garden and brush to pour the colors in the top of the pumpkin.,documenting a brush into the paint to create holes.,\"use a knife, and then put the light in the pumpkin.\"\n2254,anetv_waFqh-Qkafc,6769,A close up of a pumpkin is shown with pictures of it cut out. A person's hands,A close up of a pumpkin is shown with pictures of it cut out.,A person's hands,gold,are now seen a pumpkin laying on a nearby table.,are shown covered in scissors and pointing at various objects in a rock along the sides.,move all around and shows various images of the old pumpkin speaking to people.,draws on the pumpkin while holding up a stencil.\n2255,anetv_waFqh-Qkafc,6770,A person's hands draws on the pumpkin while holding up a stencil. The person,A person's hands draws on the pumpkin while holding up a stencil.,The person,gold,washes two lemons one more time.,cuts out the pumpkin and shows it off.,finishes painting and gently paints the nails with its nail.,wraps the box around the pumpkins and continues cutting the cat's fur.\n2256,anetv_uN8lcRwsBno,12385,The guy is exercising by pulling a handle. The guy,The guy is exercising by pulling a handle.,The guy,gold,skip touching the handle of the exercise machine.,stops exercising fixes his reading glasses and touches his beard.,is holding a piece of equipment attached.,stops eating and puts one foot in their mouth.\n2257,anetv_uN8lcRwsBno,12384,A guy sits with his legs close to his chest. The guy,A guy sits with his legs close to his chest.,The guy,gold,moves his hips and angle sticks.,holds the boxer on his leg.,is exercising by pulling a handle.,bounces adjusting weight.\n2258,lsmdc3026_FRIENDS_WITH_BENEFITS-1469,8834,\"Later still, as he snoozes, she dips his hand in a glass of wine, then hides. He\",\"Later still, as he snoozes, she dips his hand in a glass of wine, then hides.\",He,gold,\"faces down to her, her wide eyes chilled.\",seems over as her body drops into the water.,\"spots it too, shakes his jacket brim - white, and hikes away.\",\"wakes and rushes out, holding his crotch.\"\n2259,lsmdc3026_FRIENDS_WITH_BENEFITS-1469,8835,As he returns she pops up. Now they,As he returns she pops up.,Now they,gold,\"lounge in bed, barefoot.\",follow someone making the way to the summit.,dance in a misty room in a high school suite.,'re up in the archway with a rough view of the high - washed window.\n2260,lsmdc3026_FRIENDS_WITH_BENEFITS-1469,8833,\"Now the friends drink wine and dance around the room. Later still, as he snoozes, she\",Now the friends drink wine and dance around the room.,\"Later still, as he snoozes, she\",gold,throws the ball on her back.,\"dips his hand in a glass of wine, then hides.\",\"awkwardly stays up behind him, coming the other way.\",releases her breath and stands up as he slowly passes her.\n2261,anetv_gCxLSh-cgng,13129,He swings the racket several times to demonstrate a good form for swinging the tennis racket. Another man,He swings the racket several times to demonstrate a good form for swinging the tennis racket.,Another man,gold,throws the ball in the end and hit it by putting it in the middle.,comes into the background up on stage and starts working out.,is then shown hitting the ball with a stick and kicking himself back up in the air.,comes onto the screen and performs the several tennis wings while the other man narrates.\n2262,anetv_gCxLSh-cgng,13127,An introduction comes onto the screen for a video about playing tennis. And man,An introduction comes onto the screen for a video about playing tennis.,And man,gold,is shown talking to the camera showing high ways.,comes on to talk about the lessons that he will be teaching in the video.,begins talking to some men about tennis against the basket.,is practicing lifting kicks at the pins posing with a disc.\n2263,anetv_gCxLSh-cgng,13128,And man comes on to talk about the lessons that he will be teaching in the video. He,And man comes on to talk about the lessons that he will be teaching in the video.,He,gold,'s how he works his way up to the middle of the bars while looking back the way they are.,swings the racket several times to demonstrate a good form for swinging the tennis racket.,clergyman in his hands demonstrates how to do more what tips he was in a boy.,holds up the photos and continues interviewing it before skating in the middle with the video and laughing.\n2264,anetv_gCxLSh-cgng,13130,Another man comes onto the screen and performs the several tennis wings while the other man narrates. As the video ends the closing credits,Another man comes onto the screen and performs the several tennis wings while the other man narrates.,As the video ends the closing credits,gold,are displayed on the screen.,appear on screen as the credits of the video continue.,is shown on the screen again.,come up with real information.\n2265,lsmdc0046_Chasing_Amy-68558,12366,Then he nods to someone. People,Then he nods to someone.,People,gold,\"sit around a table drinking, talking, and smoking.\",\"follows someone, keeping a hand on the handle.\",\"open the case and see someone walking, waving his arms.\",continues down the hill.\n2266,lsmdc3035_INSIDE_MAN-2107,2924,\"Now, in the command truck, someone uses a phone. Someone\",\"Now, in the command truck, someone uses a phone.\",Someone,gold,looks over and sees his boss leaning against a dark sedan.,closes his mouth and stops typing.,\"a vulnerable smile, someone crouches over a newspaper.\",closes his wired eyes.\n2267,lsmdc3035_INSIDE_MAN-2107,2926,He rubs his palm over his bald head and trudges back toward the others. He,He rubs his palm over his bald head and trudges back toward the others.,He,gold,takes her face from his shoulder.,\"gazes upward in the sun, gray sky.\",imagines the robber shooting.,carries off to a floor bearing watching the recruits.\n2268,lsmdc3035_INSIDE_MAN-2107,2927,He imagines the robber shooting. The police officer,He imagines the robber shooting.,The police officer,gold,brings the torch box to the ground.,pats him down on the back.,tosses a smoke bomb.,turns his attention back to someone.\n2269,lsmdc3035_INSIDE_MAN-2107,2925,Someone turns his head and exhales. He,Someone turns his head and exhales.,He,gold,rips off his bleary face.,is now down in front of a balustrade.,rubs his palm over his bald head and trudges back toward the others.,adds a tip around the metal.\n2270,anetv_vYxBAbbvSxc,3773,A camera is mounted on the helmet of a water skier and after he gets himself into position a man on a horse by a pond pull him for a ride. Near land he,A camera is mounted on the helmet of a water skier and after he gets himself into position a man on a horse by a pond pull him for a ride.,Near land he,gold,begins next to it.,gets in a kayak and starts skiing down the hill while the kayak rope falls from him.,\"lets go and falls into the water, as he celebrates and points at the man on the horse as a dog runs by.\",swims behind the man and paddles.\n2271,anetv_vYxBAbbvSxc,3772,A GoPro camera is seen and then another screen appears showing that the camera has won awards. A camera is mounted on the helmet of a water skier and after he gets himself into position a man on a horse by a pond,A GoPro camera is seen and then another screen appears showing that the camera has won awards.,A camera is mounted on the helmet of a water skier and after he gets himself into position a man on a horse by a pond,gold,appears with a turquoise canoe in a river that is shown in a canoe.,boot shines alongside a sky tall standing while reaching the target.,watches as a child walks through the back of his raft along quincy the kayak.,pull him for a ride.\n2272,anetv_W_ZNdQLFmAA,13443,A man is plastering a ceiling. The man,A man is plastering a ceiling.,The man,gold,turns away from the ceiling and looks down.,walks up and sits in yellow light.,moves around a stage along with a person in the other behind him.,is using acrobatic tools to put on the tiles.\n2273,anetv_W_ZNdQLFmAA,7310,We see a man shovel plaster on a platform. We,We see a man shovel plaster on a platform.,We,gold,see a man ski down on a stony platform.,see the finished room.,see a men fencing behind an older man.,see the man paddling in the water.\n2274,anetv_W_ZNdQLFmAA,7307,We see a man putting plaster on a ceiling then the man turns to leave. We,We see a man putting plaster on a ceiling then the man turns to leave.,We,gold,see a man giving the lady a form of the climbing.,see another man putting plaster on the ceiling.,see a file and see a number of men inside.,see a screen then another website screen.\n2275,anetv_W_ZNdQLFmAA,7309,He hands the plaster to another man and gets another platform of plaster. We,He hands the plaster to another man and gets another platform of plaster.,We,gold,hover in the air high high rises as the professor delivers the ball.,then see the gaps in the closing wall.,see what looks down to point mirror.,see a man shovel plaster on a platform.\n2276,anetv_W_ZNdQLFmAA,13444,A male hands over the metal plaster holder to a guy on the floor. The guy,A male hands over the metal plaster holder to a guy on the floor.,The guy,gold,hands the male another metal plaster holder.,runs out of the room to a steel team then stops the cord ready to do the exercises.,styles his hair using the spray bottle.,talks to a black and cut guy.\n2277,anetv_W_ZNdQLFmAA,13445,The guy hands the male another metal plaster holder. The guy,The guy hands the male another metal plaster holder.,The guy,gold,puts more plastering clay on the metal.,lets it hold the block on the stump.,picks up the bottle and exchanges a hard base.,talks to someone for the first time.\n2278,anetv_W_ZNdQLFmAA,7306,We see a wall with peeling and chipped paint. We,We see a wall with peeling and chipped paint.,We,gold,see a baking paint on the side.,see a man putting plaster on a ceiling then the man turns to leave.,see a black lady from bed behind her.,see people working out on the roof.\n2279,anetv_W_ZNdQLFmAA,7308,We see another man putting plaster on the ceiling. He,We see another man putting plaster on the ceiling.,He,gold,sets painting around the pool.,finishes back and blows the room.,hands the plaster to another man and gets another platform of plaster.,then see the closing credits.\n2280,lsmdc3058_RUBY_SPARKS-28266,3178,\"Now with the convertible's top up, the couple arrives at a wooden gate. Scotty\",\"Now with the convertible's top up, the couple arrives at a wooden gate.\",Scotty,gold,pass behind him and kneels in front of the mountain fighter.,looks out the window to reveal the blonde lady lying on the gravel bed.,\"steps forward, steps out from the deck, and peels the silverware off.\",sits on someone's lap.\n2281,lsmdc3058_RUBY_SPARKS-28266,3177,\"Later, they continue up the coast with the Pacific Ocean just feet from the road. Now with the convertible's top up, the couple\",\"Later, they continue up the coast with the Pacific Ocean just feet from the road.\",\"Now with the convertible's top up, the couple\",gold,slides under an empty tv.,make their way back a window.,backs on to the ground.,arrives at a wooden gate.\n2282,lsmdc3058_RUBY_SPARKS-28266,3179,\"The gate opens automatically, revealing an abundance of shrubs and trees around a driveway. Someone\",\"The gate opens automatically, revealing an abundance of shrubs and trees around a driveway.\",Someone,gold,watches his son with a awkwardly smile as the family listens.,storms up from his garden and parks on the porch of his house.,has a drawing of smoke playing in the wind.,parks the car then turns to someone.\n2283,lsmdc3058_RUBY_SPARKS-28266,3168,Her sketches adorned the headboard. Someone,Her sketches adorned the headboard.,Someone,gold,hears more gq from the front room before making a call.,hangs with two webs consistently.,\"gives the woman her canvas shawl, then brushes his hair past her outstretched body lashes like a thin package.\",leans in for a kiss.\n2284,lsmdc3058_RUBY_SPARKS-28266,3169,\"Someone leans in for a kiss. As someone sets a tablet aside, someone\",Someone leans in for a kiss.,\"As someone sets a tablet aside, someone\",gold,strides to his home area.,turns off a lamp.,hangs up to the party.,joins someone at his heels.\n2285,lsmdc3058_RUBY_SPARKS-28266,3176,\"They run across the beach together. Later, they\",They run across the beach together.,\"Later, they\",gold,continue up the coast with the pacific ocean just feet from the road.,walk between people checking on as they ride in the mustang.,crash down on a large flat boulder decorated with red.,stroll offscreen until his dad gives him a kiss on the cheek.\n2286,lsmdc3058_RUBY_SPARKS-28266,3170,\"Leaving the room in total darkness, but for the alarm clock which reads 11: 56. In the morning, someone\",\"Leaving the room in total darkness, but for the alarm clock which reads 11: 56.\",\"In the morning, someone\",gold,packs a duffel bag with clothes.,stares out a window at the ad dry dead city.,hangs up her audio homework and hurries back over the couch.,lies with someone in bed beside a collapsed model.\n2287,lsmdc3058_RUBY_SPARKS-28266,3175,\"Embracing someone, she feeds him a snack. They\",\"Embracing someone, she feeds him a snack.\",They,gold,run across the beach together.,prepares himself a snowed haircut until they show.,blinks a uncooked smile as he walks through the marketplace.,gallop to a cage.\n2288,lsmdc3058_RUBY_SPARKS-28266,3173,\"Now someone, someone and Scotty drive up the Pacific Coast Highway in a convertible bmw. Someone\",\"Now someone, someone and Scotty drive up the Pacific Coast Highway in a convertible bmw.\",Someone,gold,snakes her hand through the wind outside of the car.,trains its balls along as the race speeds up over the coins.,turns a stinky cloud toward its freeway going down.,chuckles as she watches the pole through the door.\n2289,lsmdc3058_RUBY_SPARKS-28266,3171,\"In the morning, someone packs a duffel bag with clothes. Someone\",\"In the morning, someone packs a duffel bag with clothes.\",Someone,gold,rides into an ambulance.,\"wakes up, spots him at the foot of the bed and sits up.\",steps to the foot of a room.,uses someone's gun.\n2290,anetv_sRYDJ379UYc,14191,The man then moves back and fourth on the machine while the other man helps. He,The man then moves back and fourth on the machine while the other man helps.,He,gold,and the boy walk continuously to the camera and find the weight up and the camera pans up around the table.,continues giving tips and jumping equipment while wearing on.,\"helps her up, but is then shown torching the camera.\",is shown again in another clips moving and the trainer helping.\n2291,anetv_sRYDJ379UYc,14190,A man is seen sitting on a piece of exercise equipment with a trainer standing in front of him. The man then,A man is seen sitting on a piece of exercise equipment with a trainer standing in front of him.,The man then,gold,moves back and fourth on the machine while the other man helps.,begins unscrewing on a bike while sitting on the bike.,begins rubbing his legs while a woman comes up to hold.,lowers the body while still speaking to the camera while looking down into the distance.\n2292,anetv_96kej9yK8To,16841,There's man dressed in a black sweater playing the violin in a church. There,There's man dressed in a black sweater playing the violin in a church.,There,gold,man is walking to a lake.,\"'s a woman standing next to him, also dressed on black holding a violin in her hands.\",is out of earshot.,are on a croquet field in a large field.\n2293,anetv_96kej9yK8To,16842,\"There's a woman standing next to him, also dressed on black holding a violin in her hands. There\",\"There's a woman standing next to him, also dressed on black holding a violin in her hands.\",There,gold,does a spin and turns around.,twirls the baton around her head.,'s a statue of jesus christ right behind them.,\"her hair is at the page, she goes to blow her hair while she twirls then attempts to rub it at the camera.\"\n2294,anetv_96kej9yK8To,16843,\"There's a statue of Jesus Christ right behind them. After the man stops playing the violin, the woman\",There's a statue of Jesus Christ right behind them.,\"After the man stops playing the violin, the woman\",gold,is talking to the camera to bow.,with the orchid screen appears and a video features of a lacrosse is shown.,stops playing and walks to the front of his red leather shirt taunted and smiles to the camera.,joins in and begins playing her violin.\n2295,lsmdc1008_Spider-Man2-75644,13057,\"Someone, a sombre expression on his face, turns away. Someone\",\"Someone, a sombre expression on his face, turns away.\",Someone,gold,is lost in thought.,has his back to someone.,leans over and kisses someone.,sits in his window driver's profile.\n2296,lsmdc1008_Spider-Man2-75644,13050,\"The door clatters to the floor, he enters the apartment. Burning timbers\",\"The door clatters to the floor, he enters the apartment.\",Burning timbers,gold,blows out a gust of wind.,fall from the ceiling.,sweeps down the walls of its main office.,sits on a block.\n2297,lsmdc1008_Spider-Man2-75644,13044,He holds up the curb and reaches for the neck of his shirt as if to tear it open. He,He holds up the curb and reaches for the neck of his shirt as if to tear it open.,He,gold,dunks into a 21 torrent of blood and touches the face of the man.,jumps out of the car and drives down the sidewalk to watch someone skateboard.,presses the glass with her machine gun.,\"stops, looks up at the fire, then steps back.\"\n2298,lsmdc1008_Spider-Man2-75644,13056,He hands her over to her bemused parents and walks away. The flames,He hands her over to her bemused parents and walks away.,The flames,gold,\"are now out and someone stands in the road, an oxygen mask.\",dip beyond each tree and soar behind the empire's skyscrapers.,shift the contents of the burning tiny piece for fabric.,move lightly on the bony woman's fingers as she rests her head on someone's shoulder.\n2299,lsmdc1008_Spider-Man2-75644,13054,\"He picks her up again, and they set off as more burning beams crashed the floor. Her anguished parents here the crashes from inside, then\",\"He picks her up again, and they set off as more burning beams crashed the floor.\",\"Her anguished parents here the crashes from inside, then\",gold,fly off into someone's garden.,see someone emerge with their daughter.,run over the roof.,hurtle away from the water towards a churning waterfall.\n2300,lsmdc1008_Spider-Man2-75644,13049,He charges with a shoulder. He,He charges with a shoulder.,He,gold,swings his arms so he won't do the same.,takes a deep cloth from her sack and rolls it across the carpet to someone.,finds a key off the side of a building.,faces the door and raises his foot.\n2301,lsmdc1008_Spider-Man2-75644,13058,Someone is lost in thought. He,Someone is lost in thought.,He,gold,runs out of the house and into the house.,\"walks around the fitness room, looking an hour.\",\"stands at his room window, the frames weather - worn and in need of paint.\",blows another kiss and smiles in spanish.\n2302,lsmdc1008_Spider-Man2-75644,13043,Someone runs towards a blazing apartment building. He,Someone runs towards a blazing apartment building.,He,gold,is in a kayak and mat behind the sink.,carries someone through a gate to the left side of the ship.,holds up the curb and reaches for the neck of his shirt as if to tear it open.,holds a photograph of a young woman reading on multicolored.\n2303,lsmdc1008_Spider-Man2-75644,13048,\"Reaching a locked door, he cups his hands to his mouth. He\",\"Reaching a locked door, he cups his hands to his mouth.\",He,gold,grimaces on the street.,descends someone's hand.,charges with a shoulder.,trots into the living room where someone wanders past.\n2304,lsmdc1008_Spider-Man2-75644,13045,\"He stops, looks up at the fire, then steps back. Inside, he\",\"He stops, looks up at the fire, then steps back.\",\"Inside, he\",gold,takes off after a third.,\"strides through a theater, petting a busty woman.\",finds a packet of books and starts filling behind the racks.,ignores the flames and runs up the stairs.\n2305,lsmdc1008_Spider-Man2-75644,13046,\"Inside, he ignores the flames and runs up the stairs. More timbers\",\"Inside, he ignores the flames and runs up the stairs.\",More timbers,gold,\"appear, the platforms one the three separate a man holding a cage.\",scatter a few minutes as they pass through.,fall from behind and around him.,are coming up ahead of them as someone quickly follows them inside.\n2306,lsmdc1008_Spider-Man2-75644,13047,\"He hears the screams and runs. Reaching a locked door, he\",He hears the screams and runs.,\"Reaching a locked door, he\",gold,slumps freshly cornered onto the waiting bed.,does the most strangling creature.,holds out the cage.,cups his hands to his mouth.\n2307,lsmdc1008_Spider-Man2-75644,13052,His hand pressed on the girl's head. He,His hand pressed on the girl's head.,He,gold,\"parries the witch and punches her, knocking her to the floor.\",\"sits on his table, watching someone.\",holds up her cues as he tries to keep his attention.,hoists her onto the landing.\n2308,lsmdc1008_Spider-Man2-75644,13055,\"Her anguished parents here the crashes from inside, then see someone emerge with their daughter. He\",\"Her anguished parents here the crashes from inside, then see someone emerge with their daughter.\",He,gold,thumbs up beside the basin.,glances back at the high formations then closes the trunk.,hands her over to her bemused parents and walks away.,grabs it he pulls him out.\n2309,anetv_Z2QA7dUVwMM,3040,The guy then squeeze dish washing liquid around the edge of the other side of the tire to make it easy to fit back around the middle center piece. the guy then sprays the tire with some type of liquid and another guy,The guy then squeeze dish washing liquid around the edge of the other side of the tire to make it easy to fit back around the middle center piece.,the guy then sprays the tire with some type of liquid and another guy,gold,\"walks on top of him, picks up a controlled weight and walks it over the side of the machine.\",puts his hand around the address.,\"is kissing in the head, rubbing temples onto his hands, looking then craning for a finished tool about two tiles.\",uses a long stick with fire on the end of it to do some thing.\n2310,anetv_Z2QA7dUVwMM,3041,The guy then sprays the tire with some type of liquid and another guy uses a long stick with fire on the end of it to do some thing. finally the guy,The guy then sprays the tire with some type of liquid and another guy uses a long stick with fire on the end of it to do some thing.,finally the guy,gold,pass his the clink items to the wet card holder.,gives the young man a leave and stand in the house next to it with the lighter on it.,adjusts the back tire and uses different jumps to replace the car.,pump air back into the car tire.\n2311,anetv_Z2QA7dUVwMM,5052,A person puts a tire onto a wheel with a tool. They,A person puts a tire onto a wheel with a tool.,They,gold,pump the equipment onto the bike and puts it on.,use the tool to remove the tires.,remove shingles off the bike.,pour soap around the rim of the tire.\n2312,anetv_Z2QA7dUVwMM,5053,They pour soap around the rim of the tire. They,They pour soap around the rim of the tire.,They,gold,put the handles on the bicycle.,step off the rug as they cheese.,prepare to build a globe.,spray the tire with something from a can.\n2313,anetv_L4rKeN_4CLk,15829,A person is seen riding around on a surf board with another person watching on the side. The man,A person is seen riding around on a surf board with another person watching on the side.,The man,gold,continues several flips and tricks along the water while smiling in the camera while continuing to speak to the camera.,rides all along the waves while text demonstrates how to perform moves.,performs several flips and tricks as well as several others watching on the side.,continues to ride in the waves as people watch on the side.\n2314,anetv_L4rKeN_4CLk,15830,The man rides all along the waves while text demonstrates how to perform moves. He,The man rides all along the waves while text demonstrates how to perform moves.,He,gold,continues riding down the street while others watch on the side.,continues riding around on the water and ends with credits.,checks the time and glides the camera to the camera.,holds onto the screen as well as carrying the machine and being seen down a board.\n2315,anetv_sgwg1C3i-Vw,9806,\"People are then shown doing several canoe an skiing training exercises. Then, in the water, people\",People are then shown doing several canoe an skiing training exercises.,\"Then, in the water, people\",gold,come skiing again in rafting gear.,are shown canoeing and having fun.,are seen snowboarding with cameras.,are seen underwater and riding kayaks with small brushes.\n2316,anetv_sgwg1C3i-Vw,9804,Several people are shown preparing to get their canoes into the water on a snowy day. Several other people,Several people are shown preparing to get their canoes into the water on a snowy day.,Several other people,gold,are seen using a video harness in skateboards while cleaning up various gear of the city.,get off of a bus and head toward the water.,are riding under the water as they continue skiing.,\"surf in the sand, trying to stay upright several times.\"\n2317,anetv_sgwg1C3i-Vw,9803,An introduction for a canoe sporting brand appears on the screen. Several people,An introduction for a canoe sporting brand appears on the screen.,Several people,gold,are shown jumping a boat for a little boarding before it drops.,\"do stand on boats, and several spectators watch them.\",are shown preparing to get their canoes into the water on a snowy day.,paddle their water downhill maintaining their paws.\n2318,anetv_sgwg1C3i-Vw,9805,Several other people get off of a bus and head toward the water. People,Several other people get off of a bus and head toward the water.,People,gold,people sit in the water in the ocean to get a paddle.,spots behind the open bridge.,are then shown doing several canoe an skiing training exercises.,are running up their hands.\n2319,anetv_j8i-9T0UeRQ,7369,Several shots are shown of fields and flags and leads into a man speaking. Players,Several shots are shown of fields and flags and leads into a man speaking.,Players,gold,continues speaking while the camera panning around.,can be seen fighting with others.,talks to the camera and begins interviewing others as well as people talking.,are shown running around and warming up with more speaking to the camera.\n2320,anetv_j8i-9T0UeRQ,7370,Players are shown running around and warming up with more speaking to the camera. Audience members,Players are shown running around and warming up with more speaking to the camera.,Audience members,gold,are sitting behind the ball running around the field showing different effects.,are shown continuing playing with one another while still speaking to the camera.,watch the men play lacrosse with one another as well as people taking pictures and more speaking.,shake hands with their team mates.\n2321,anetv_ywWHBghVyJ4,17997,A man is talking inside his garage. He,A man is talking inside his garage.,He,gold,starts mowing the lawn.,gets on the bottom of the hill next.,shows how to use tools to wax down a ski.,does a lot of tricks.\n2322,anetv_ywWHBghVyJ4,17998,He shows how to use tools to wax down a ski. He,He shows how to use tools to wax down a ski.,He,gold,shows the entire length of the board as he waxes it.,is then shown using his bike to replace the tire on the ski.,pans into his left and puts them in the water.,shows how to use the ski on the ski.\n2323,anetv_w6P9JrTGRlE,6891,After that he grabs a cup of coffee to drink. He,After that he grabs a cup of coffee to drink.,He,gold,struggles to grab another napkin to wipe his face again.,puts it in one of the cups.,walks over to the studio door room and looks to a crew standing nearby and talking to someone.,pours some limes and pours it down and mixes it together.\n2324,anetv_w6P9JrTGRlE,6888,A dog is dressed in clothes and a human is behind him only showing his hands. As,A dog is dressed in clothes and a human is behind him only showing his hands.,As,gold,to look like the dog is part human and doing human like stuff.,is his dog as he feels for his dog.,\"edelweiss runs, the horses are walking upstairs.\",\"walking, all the men are looking at the dogs legs and watching him.\"\n2325,anetv_w6P9JrTGRlE,6890,He is feeding himself breakfast and then wipes his face. After that he,He is feeding himself breakfast and then wipes his face.,After that he,gold,\"is finally finished, her mom hops out of bed, shoots the clumps at the water and leans on top of her.\",\"begins to wash his hands, sweeping his bent legs to wipe it off with a stick.\",sprinkles cinnamon and sugar to sing.,grabs a cup of coffee to drink.\n2326,anetv_w6P9JrTGRlE,6889,As to look like the dog is part human and doing human like stuff. He,As to look like the dog is part human and doing human like stuff.,He,gold,bats it off the tree causing it to go flying far on the grass and collapses.,gropes through a straw chain and smashes it with his nose to the front rim.,is feeding himself breakfast and then wipes his face.,lifts it off to the ground.\n2327,anetv_D_yO_40uREE,236,Old man wearing red shirt i putting blue cloth tiles on the floor. men,Old man wearing red shirt i putting blue cloth tiles on the floor.,men,gold,are cutting circles on the blue cloth tiles to put on the floor.,are getting ready to race.,lay down the bench and put around behind the couch.,lay down a purple sheet and apply cement to the wall.\n2328,anetv_D_yO_40uREE,14248,They are laying carpet tiles together. They,They are laying carpet tiles together.,They,gold,are cutting the tree's nails.,measure and cut the tiles before fitting them perfectly together.,are measuring tiles on the floor.,lay tiles onto a hanging wall.\n2329,anetv_D_yO_40uREE,14247,Two men are kneeling on a floor. They,Two men are kneeling on a floor.,They,gold,are laying carpet tiles together.,are laying on the floor in front of him.,start walking around quickly.,hold their hands up facing each other.\n2330,anetv_D_yO_40uREE,235,Old men are putting cloth tiles on the floor. old man,Old men are putting cloth tiles on the floor.,old man,gold,is scratching the kid in another wood room.,wearing red shirt i putting blue cloth tiles on the floor.,walk in a room and making the room.,stands in a line together playing a weighted table.\n2331,anetv_z4_OuffZPAo,13219,The man finishes and holds up the potato to the camera. The man,The man finishes and holds up the potato to the camera.,The man,gold,starts playing the potato and puts it in his mouth.,cuts the sandwich in the air.,then wipes his lips with the lotion and leaves it before the camera.,picks up a peel off the table.\n2332,anetv_z4_OuffZPAo,13218,A man peels a potato while blindfolded and two little girls watch. The man,A man peels a potato while blindfolded and two little girls watch.,The man,gold,removes the ball and adds half more chips.,finishes and holds up the potato to the camera.,uses a small knife to cut off the sandwich.,continues riding the camera around.\n2333,lsmdc3069_THE_BOUNTY_HUNTER-4573,18930,\"Now at his place, a freshly showered someone grins at his reflection in a bathroom mirror as he brushes his teeth. Later, he\",\"Now at his place, a freshly showered someone grins at his reflection in a bathroom mirror as he brushes his teeth.\",\"Later, he\",gold,faces a family of men.,packs a taser and two guns into a bag.,makes shaving cotton with his neck.,sits over an empty mercedes waiting by the counselor's porch.\n2334,lsmdc3069_THE_BOUNTY_HUNTER-4573,18934,\"Tracking footprints, he enters someone's apartment through a back door and eyes her tasteful decor. As he strolls into the spacious living room, someone\",\"Tracking footprints, he enters someone's apartment through a back door and eyes her tasteful decor.\",\"As he strolls into the spacious living room, someone\",gold,receives a small bag of photos.,softly bathes his face.,notices his muddy footprints on a light rug.,steps to the hallway and prone to the floor.\n2335,lsmdc3069_THE_BOUNTY_HUNTER-4573,18936,\"Someone deletes saved episodes of Weeds and 30 Rock from someone's tivo. As she enters, someone\",Someone deletes saved episodes of Weeds and 30 Rock from someone's tivo.,\"As she enters, someone\",gold,freezes on the bed and glances toward the hall.,gives a thumbs up as the express draws away.,stays behind the tree and gazing back at the charging painting.,slides down a spandex inch with gray stone and opens its lid.\n2336,lsmdc3069_THE_BOUNTY_HUNTER-4573,18935,\"With a grin, he steps to the side dragging his foot and tracking a long smear. In the bathroom, he\",\"With a grin, he steps to the side dragging his foot and tracking a long smear.\",\"In the bathroom, he\",gold,steps to a decision and enters with a bag of groceries.,\"shoves another jacket from behind, heads back to someone, then slips out into a cargo hold of a toilet.\",\"rides across the diner at the doors inside, then slides the door shut behind him.\",\"drops someone's toothbrush in the toilet, then places it back in its holder.\"\n2337,lsmdc3069_THE_BOUNTY_HUNTER-4573,18931,\"Now, he rings someone's bell. He\",\"Now, he rings someone's bell.\",He,gold,shakes the dog's head.,jiggles the locked door.,halts in front of a young face.,grabs the bag and listens.\n2338,lsmdc3069_THE_BOUNTY_HUNTER-4573,18942,Someone skulks down the stairs. Someone,Someone skulks down the stairs.,Someone,gold,defensively grabs a picture frame and presses her back to a wall by a white - trim doorway.,lies back in his bed.,fires up another passage.,plods off the graceful figure.\n2339,lsmdc3069_THE_BOUNTY_HUNTER-4573,18929,\"Someone takes it from his mouth and puts it in hers. Now at his place, a freshly showered someone\",Someone takes it from his mouth and puts it in hers.,\"Now at his place, a freshly showered someone\",gold,comes into view along one parked van.,pours out a golden shield.,grins at his reflection in a bathroom mirror as he brushes his teeth.,lies on his face.\n2340,lsmdc3069_THE_BOUNTY_HUNTER-4573,18941,Someone peers around a corner. Someone,Someone peers around a corner.,Someone,gold,eyes someone from the carriage as he whirls around and pulls off the elevator parking lot.,'s smile spreads as he receives a meal.,skulks down the stairs.,casts back toward the camera.\n2341,lsmdc3069_THE_BOUNTY_HUNTER-4573,18943,\"Someone defensively grabs a picture frame and presses her back to a wall by a white - trim doorway. As she turns the corner, someone\",Someone defensively grabs a picture frame and presses her back to a wall by a white - trim doorway.,\"As she turns the corner, someone\",gold,glances over her shoulder before reaching up to pick up her extension.,reaches the white door frame at the bottom of the stairs.,\"downs frantically, pointing a finger at the glass.\",\"pokes her head with the butt with a finger, a bone remark, and fleeing.\"\n2342,lsmdc3069_THE_BOUNTY_HUNTER-4573,18940,Someone draws his gun and creeps into the hall. Someone,Someone draws his gun and creeps into the hall.,Someone,gold,folder shows someone next to his lap.,peers around a corner.,leaps over the barricade from the far ground.,shoots between someone's wrists.\n2343,lsmdc3069_THE_BOUNTY_HUNTER-4573,18937,\"As she enters, someone freezes on the bed and glances toward the hall. Chewing Doritos, he\",\"As she enters, someone freezes on the bed and glances toward the hall.\",\"Chewing Doritos, he\",gold,tosses down the remote and wipes his mouth and hands on a pillow.,finishes his song and glances back at someone with a slip.,watches a mountain illuminated in a hazy silhouette as it shows the home skyline.,\"goes toward the bedroom, passing his tent, cutting the foliage away.\"\n2344,lsmdc3069_THE_BOUNTY_HUNTER-4573,18928,\"Someone takes the check from someone's red - headed assistant and gives her a long, deep kiss. Someone\",\"Someone takes the check from someone's red - headed assistant and gives her a long, deep kiss.\",Someone,gold,laboriously stretches out a line and lands beside him.,lies blow up on a woman's.,'s party approaches in a taupe suit with a red collar and masks.,takes it from his mouth and puts it in hers.\n2345,lsmdc3069_THE_BOUNTY_HUNTER-4573,18933,\"Someone scales a wall and lands in a muddy flowerbed. Tracking footprints, he\",Someone scales a wall and lands in a muddy flowerbed.,\"Tracking footprints, he\",gold,stands at his teacher.,enters someone's apartment through a back door and eyes her tasteful decor.,finds a wondering young girl on a divan.,drives back and and quick it darts down a snowy street.\n2346,lsmdc3069_THE_BOUNTY_HUNTER-4573,18938,\"Chewing Doritos, he tosses down the remote and wipes his mouth and hands on a pillow. Someone\",\"Chewing Doritos, he tosses down the remote and wipes his mouth and hands on a pillow.\",Someone,gold,brings him the intercom.,\"kicks it against someone's back, gets back on the chair.\",searches a small pink - tiled bathroom.,collects the five - present alabama footage from someone.\n2347,lsmdc3069_THE_BOUNTY_HUNTER-4573,18939,Someone searches a small pink - tiled bathroom. Someone,Someone searches a small pink - tiled bathroom.,Someone,gold,jogs off down the hall past someone's place.,draws his gun and creeps into the hall.,regards the man skeptically.,tries to put his shoes up.\n2348,lsmdc3069_THE_BOUNTY_HUNTER-4573,18932,He jiggles the locked door. Someone,He jiggles the locked door.,Someone,gold,scales a wall and lands in a muddy flowerbed.,rolls on its back.,leads him into a house.,flees and then shares the office with it.\n2349,anetv_-EKpX0t44pQ,8887,Someone is laying on their stomach getting a tattoo on their back. A man in a red shirt,Someone is laying on their stomach getting a tattoo on their back.,A man in a red shirt,gold,is playing a game in a yard.,is kneeling down talking to the camera.,is tattooing the man laying down.,is leaning against a counter.\n2350,anetv_-EKpX0t44pQ,8886,A wrestler is walking out and gets into the ring. Someone,A wrestler is walking out and gets into the ring.,Someone,gold,'s men gets destination and wrestling with each other.,prepares to run and then people walk further into the rope.,is laying on their stomach getting a tattoo on their back.,walks in the chair.\n2351,anetv_IlD4gfHmWIg,9331,There is a panel of judges sitting across from her and evaluating her. She,There is a panel of judges sitting across from her and evaluating her.,She,gold,stands up straight on the bar and does a twist and pummel.,beats a fist against a steering bar then jumps to her feet and joins someone from four.,\"stands for practicing for a few seconds, just before falling in the gym.\",\"are watching them, singing and having the news competitor with their little experience.\"\n2352,anetv_IlD4gfHmWIg,9333,She continues to successfully do front flips on the horse bar. She,She continues to successfully do front flips on the horse bar.,She,gold,is congratulated by coaches and her other judges.,completes her round after she jumps off of the horse bar doing a back flip.,kicks the skateboard again and lands on the end.,she dismounts the bar bars.\n2353,anetv_IlD4gfHmWIg,9330,A gymnast wearing a magenta leotard is performing on the horse bar. There,A gymnast wearing a magenta leotard is performing on the horse bar.,There,gold,is a panel of judges sitting across from her and evaluating her.,kicks and flips across the mat.,does several gymnasts with his arms in the air.,are in a performance in the restaurant.\n2354,anetv_IlD4gfHmWIg,9334,She completes her round after she jumps off of the horse bar doing a back flip. Then the gymnast,She completes her round after she jumps off of the horse bar doing a back flip.,Then the gymnast,gold,takes the stick from her belly and moves it to the end of the bars.,jumps from the pommel horse and hugs she.,walks away from the performing area.,\"is running on the mat, practicing her jumping into the air.\"\n2355,anetv_IlD4gfHmWIg,9332,She stands up straight on the bar and does a twist and pummel. She,She stands up straight on the bar and does a twist and pummel.,She,gold,is in a plaza observatory staring at a huge dangerous customer.,continues to successfully do front flips on the horse bar.,begins doing a variety of stuff as she does stunts and flips on the water.,inserts the curlers into her hair and congratulates her.\n2356,anetv_TCcopbAANQ0,19280,They put on a blue apron and gloves. They,They put on a blue apron and gloves.,They,gold,add brooms with the larger cloth.,start to put on their makeup.,play a song on squares.,put handle bars on the bike.\n2357,anetv_ik8uSCSBv1U,11612,A man stands on a tennis court preparing to serve the ball. The man,A man stands on a tennis court preparing to serve the ball.,The man,gold,starts hitting the ball with his racket.,hits the tennis ball across the court.,throws bowling rackets into a basket.,hits the puck back and forth against the net.\n2358,anetv_ik8uSCSBv1U,11613,The man hits the tennis ball across the court. The man,The man hits the tennis ball across the court.,The man,gold,turns and walks back to his basket and grabs a ball from his pocket.,points to everything points at the camera.,picks up the racket and throws the ball into the court.,misses the ball and hits the ball missing the ball.\n2359,anetv_ik8uSCSBv1U,11614,The man turns and walks back to his basket and grabs a ball from his pocket. The man,The man turns and walks back to his basket and grabs a ball from his pocket.,The man,gold,strikes a fight with his hand.,gets to his feet.,bounces the ball on the ground.,demonstrates coolly in the two of the boys.\n2360,anetv_NsqW8ZwYDEk,3303,\"In between the man talking, the other guy begins doing a few demonstrations and aiming at the target on the other end of the wall. After several releases of the boy, the target is zoomed in on and the guy\",\"In between the man talking, the other guy begins doing a few demonstrations and aiming at the target on the other end of the wall.\",\"After several releases of the boy, the target is zoomed in on and the guy\",gold,takes the scarlet discs and then moves on the face of the man that makes the legs up and walks away smaller.,\"falls into sparks and arrows, cutting the screen with the stirs impressive moves.\",comes back to talk about what just took place.,\"snorkeler off motion and on the left side of the circle is very still, and the levers are alert faster, shakes himself up\"\n2361,anetv_NsqW8ZwYDEk,3302,\"One guy is standing still holding an bow and arrow in his hand silently as the man in front of him talks about the proper way to shoot the bow. In between the man talking, the other guy\",One guy is standing still holding an bow and arrow in his hand silently as the man in front of him talks about the proper way to shoot the bow.,\"In between the man talking, the other guy\",gold,cuts the shirt with a bow and arrow to pretend to kick a basket that he was showing when they are done fencing.,talks about his arrow exact to shoot and balls.,begins doing a few demonstrations and aiming at the target on the other end of the wall.,\"is holding pictures of the curling ring extending over his nose, then the boy appears confused, shooting the arrow at the target.\"\n2362,anetv_NsqW8ZwYDEk,4012,A couple of men are talking inside an archery gym. A man,A couple of men are talking inside an archery gym.,A man,gold,pass them holding ways to win their workout.,is standing next to him and zooms in hard.,pulls the arrow back in the bow.,walks out overhead instructions for a stilts associated with the watch.\n2363,anetv_NsqW8ZwYDEk,4013,A man pulls the arrow back in the bow. He,A man pulls the arrow back in the bow.,He,gold,\"releases the arrow, shooting it toward his target.\",is being given to a couple to win.,rubs the ice rim on his ice stick.,team records her.\n2364,anetv_nDbLtdY66dA,12829,A man in a black shirt is holding a saxophone. He,A man in a black shirt is holding a saxophone.,He,gold,is playing the bagpipes in front of him.,is playing a guitar as he plays the song.,is in the yard playing around.,begins playing the saxophone.\n2365,anetv_nDbLtdY66dA,12830,He begins playing the saxophone. He,He begins playing the saxophone.,He,gold,stops playing the drums again and looks off into the distance.,puts the violin back on his shoulder.,stops playing and continues talking.,picks up a flute and began playing the camera.\n2366,anetv_YozbZM_nA0c,16343,Kids are playing hopscotch in an open area and peolpe are gathered around. in the background a lot of kids,Kids are playing hopscotch in an open area and peolpe are gathered around.,in the background a lot of kids,gold,are holding a large chinese soccer sports.,are standing and playing.,are getting ready to race.,are running around a track.\n2367,anetv_YozbZM_nA0c,680,A group of people gather around several tables outdoors. Children,A group of people gather around several tables outdoors.,Children,gold,are playing butterfly sparkles.,line up to get their hands stamped.,make their way down a hall.,are sitting in a back box.\n2368,anetv_YozbZM_nA0c,16342,Kids are standing in a line in front of a white table. kids,Kids are standing in a line in front of a white table.,kids,gold,are sitting on the ice in a yard.,are playing hopscotch in an open area and peolpe are gathered around.,start the motorbike fight.,are talking on a table.\n2369,anetv_KRSBbX-itrY,7696,People are tubing down a river. There,People are tubing down a river.,There,gold,are large rocks in front of them in the water.,of the rapids is demolished by people.,girl is cleaning a shore with yellow paper.,quickly climb the boat.\n2370,anetv_KRSBbX-itrY,7698,A person is standing in the water behind the people on tubes. They go down a large water fall and two of the people,A person is standing in the water behind the people on tubes.,They go down a large water fall and two of the people,gold,is walking out of the water.,fall out of their tube.,\"enter the boat, which is riding in by of the water at the water.\",are skiing and paddling into the river.\n2371,anetv_KRSBbX-itrY,7697,There are large rocks in front of them in the water. A person,There are large rocks in front of them in the water.,A person,gold,is riding a canoe in white waters in a yard.,is trying to get to the ocean while audience is watching them.,is standing in the water behind the people on tubes.,stands on kayak of rafts and skis off the water.\n2372,anetv_P5Sg_kACPRM,2375,A man in the grass in the background runs with the men for a moment. The man on the inside lane of the track,A man in the grass in the background runs with the men for a moment.,The man on the inside lane of the track,gold,pushes a ball towards the goal exactly four times.,is then put the same angle to a goalie.,starts running very fast and then jumps into a sand pit.,makes and go further on the grass and the men run off it carrying the shovel.\n2373,anetv_P5Sg_kACPRM,2376,The man on the inside lane of the track starts running very fast and then jumps into a sand pit. the other man,The man on the inside lane of the track starts running very fast and then jumps into a sand pit.,the other man,gold,runs past the sand pit.,looks on for the very replay of the video when the video ends.,bends down before another gymnast catches his baton and then return the left switching after turning.,gets in and flips wildly onto the blue mat and jumps side off the bridge.\n2374,anetv_P5Sg_kACPRM,2374,Two men run on a track while a large crowd of spectators and press watch. A man in the grass in the background,Two men run on a track while a large crowd of spectators and press watch.,A man in the grass in the background,gold,\"grabs his belt, injects and throws it to the target.\",stands in formation holding a rope.,enter the room and throw the ball for distance.,runs with the men for a moment.\n2375,anetv_P5Sg_kACPRM,2377,The other man runs past the sand pit. The man that jumped steps out of the sand pit and,The other man runs past the sand pit.,The man that jumped steps out of the sand pit and,gold,began flipping over the sand.,runs to the sand.,walks to the side.,is able to catch it.\n2376,anetv_t6iq95QPZIg,8587,The back of a speed boat is shown followed by feet jumping into water and looking around underwater. A person,The back of a speed boat is shown followed by feet jumping into water and looking around underwater.,A person,gold,holds a stick out and grabs a fish and pokes at sharks.,rushing through the water and holding out object over the camera.,swims through the water while people ride inside of it.,raft down the river and waves to people all along the ocean.\n2377,anetv_zzxYEZkahBU,2124,A boy pushes a ball with a stick. A man in a black shirt,A boy pushes a ball with a stick.,A man in a black shirt,gold,is holding a stick.,throws a ball on the ground.,starts putting his suit on.,is thrown in front of them.\n2378,anetv_zzxYEZkahBU,2125,A man in a black shirt is holding a stick. A boy in a white shirt,A man in a black shirt is holding a stick.,A boy in a white shirt,gold,smiles at the camera.,talks in a distract line.,is seated next to him watching.,is making a duffel bag.\n2379,lsmdc1006_Slumdog_Millionaire-73982,6777,The woman removes her glasses for a better look at someone. People,The woman removes her glasses for a better look at someone.,People,gold,uses their hands to accompany their movements.,stare at each other.,emerge from a gate and peer through a bamboo gate.,are in pictures of the boys practicing.\n2380,lsmdc1006_Slumdog_Millionaire-73982,6781,They both stand stock still. She,They both stand stock still.,She,gold,takes a sharp intake of breath.,turns and slips a straw to her hip.,takes his arm and watches him kiss.,hangs his head and looks him over.\n2381,lsmdc1006_Slumdog_Millionaire-73982,6766,Someone sneaks to the landing to spy on someone downstairs as he loads a gun. Someone,Someone sneaks to the landing to spy on someone downstairs as he loads a gun.,Someone,gold,\"takes a slip of his wand back from someone, wiping the tip and turning.\",watches her flight quickly.,bends to greet someone.,watches as someone kneels on a mat to pray.\n2382,lsmdc1006_Slumdog_Millionaire-73982,6775,Someone collects a small package from her then drives past the gates where someone is hiding. The young woman,Someone collects a small package from her then drives past the gates where someone is hiding.,The young woman,gold,backs toward her car.,\"turns round and goes back to the diner with her crossbow up aside, and stares at it as her eyes fill up.\",fails several times and performs the join.,notices someone lurking at the entrance as a guard closes the gates.\n2383,lsmdc1006_Slumdog_Millionaire-73982,6778,The guard presses the intercom. The guard,The guard presses the intercom.,The guard,gold,presses the bell to a panel.,grins in excitement as the chiseled man drops the violin.,pushes his pipe against the dashboard.,approaches to open the gates.\n2384,lsmdc1006_Slumdog_Millionaire-73982,6765,Someone opens his eyes but lies still. Someone,Someone opens his eyes but lies still.,Someone,gold,\"is writhing on his back, unable to suppress a chuckle.\",\"places the photograph back towards someone, who also juts up and raises himself as a machine.\",\"stares after him, then gives his lackey a wry look.\",sneaks to the landing to spy on someone downstairs as he loads a gun.\n2385,lsmdc1006_Slumdog_Millionaire-73982,6774,He jumps out then watches someone approach a beautiful woman in dark glasses standing on a balcony. Someone,He jumps out then watches someone approach a beautiful woman in dark glasses standing on a balcony.,Someone,gold,collects a small package from her then drives past the gates where someone is hiding.,\"gazes down again, and she breaks off in a run.\",listens to someone's music as she watches her english sisters with spanish.,\"is fanning someone's uniform, which gaze wide.\"\n2386,lsmdc1006_Slumdog_Millionaire-73982,6773,Someone's tuk - tuk then arrives outside the gates. He,Someone's tuk - tuk then arrives outside the gates.,He,gold,pushes all his way to the floor.,\"grabs his crane, who runs onto the platform.\",jumps out then watches someone approach a beautiful woman in dark glasses standing on a balcony.,marks one student holding the rifle.\n2387,lsmdc1006_Slumdog_Millionaire-73982,6772,He drives through the electronic gates. Someone's tuk - tuk then,He drives through the electronic gates.,Someone's tuk - tuk then,gold,brings the second toys inside.,arrives outside the gates.,smashes into the high seven but misses the woman.,reveals a deep navy - barrel and silver duke.\n2388,lsmdc1006_Slumdog_Millionaire-73982,6779,Someone enters an expensively furnished marble living room. He,Someone enters an expensively furnished marble living room.,He,gold,sees someone behind the glass partition separating the room from a kitchen and approaches.,sips his food.,puts his hands on hers and nudges his knees lightly with hers.,presents a collection of vanger toys.\n2389,lsmdc1006_Slumdog_Millionaire-73982,6776,The guard goes to the gatehouse. The woman,The guard goes to the gatehouse.,The woman,gold,emerges and hurries into the back of the car.,removes her glasses for a better look at someone.,sets her case on her desk.,\"is holding it, locking it.\"\n2390,lsmdc1006_Slumdog_Millionaire-73982,6780,He sees someone behind the glass partition separating the room from a kitchen and approaches. She,He sees someone behind the glass partition separating the room from a kitchen and approaches.,She,gold,\"walk up a second rooftop, almost muttering to himself.\",removes her dark glasses and stands expectantly as he steps from behind the partition.,strikes a set of double doors and turns to the.,\", he presses the button.\"\n2391,lsmdc1006_Slumdog_Millionaire-73982,6767,Someone watches as someone kneels on a mat to pray. Someone,Someone watches as someone kneels on a mat to pray.,Someone,gold,touches his forehead to the ground.,lays his hand on someone's leg.,heads into her hands for the survivors.,is tied to the blanket as they drag themselves out of the national convention '.\n2392,lsmdc1006_Slumdog_Millionaire-73982,6771,Someone's car pulls up to a sprawling palatial house situated on the hillside surrounded by construction sites. He,Someone's car pulls up to a sprawling palatial house situated on the hillside surrounded by construction sites.,He,gold,drives through the electronic gates.,descends the stairs.,drives by on the quad in the end of the mall.,drives through the doorway.\n2393,lsmdc1006_Slumdog_Millionaire-73982,6782,She takes a sharp intake of breath. She smiles as he moves towards her then they,She takes a sharp intake of breath.,She smiles as he moves towards her then they,gold,embrace each other tightly.,lean together and kiss tenderly.,step off down the aisle.,share a lingering kiss.\n2394,lsmdc1006_Slumdog_Millionaire-73982,6769,\"Someone leaves his apartment block and heads for his car. As someone drives off, someone\",Someone leaves his apartment block and heads for his car.,\"As someone drives off, someone\",gold,hands the other gun beside him.,\"appears in a tuk - tuk, following closely behind.\",crouches at his company hunched studiously.,notices the screen along the window and points to his nostrils.\n2395,anetv_wSTU_jI-FRU,2587,A cartoon yellow character is shown running with bulls behind him. Several sumo wrestlers,A cartoon yellow character is shown running with bulls behind him.,Several sumo wrestlers,gold,are shown on the gym as a group of girls perform long run around an arena.,are seen in the distance cheering.,are shown running down a field that float before the athlete.,are then shown running down a track.\n2396,lsmdc3038_ITS_COMPLICATED-17318,15973,He nuzzles her neck then stares lustfully at her. Someone,He nuzzles her neck then stares lustfully at her.,Someone,gold,\"frowns, catches the flagpole, and walks away.\",gives in her lips meeting his in a sensual mood.,glances across at someone 'german stick.,lifts his coat again.\n2397,lsmdc3038_ITS_COMPLICATED-17318,15974,Someone gives in her lips meeting his in a sensual mood. Someone,Someone gives in her lips meeting his in a sensual mood.,Someone,gold,looks up from the present.,gazes up at someone in relief.,pulls away from him.,is playing her mama's microphones too.\n2398,lsmdc3038_ITS_COMPLICATED-17318,15976,Someone smirks back at someone. She gapes at him and he,Someone smirks back at someone.,She gapes at him and he,gold,gestures somberly.,shrugs with a careless wave.,moves out of the room.,leans his ear against the seat.\n2399,anetv_w_wIOJrztdU,18247,The video leads into several shots of people standing on a beach as well as playing in the sand. Several more pictures,The video leads into several shots of people standing on a beach as well as playing in the sand.,Several more pictures,gold,are shown of as well as people riding kites while a woman as well as the being interviewed on.,are shown of the flags as well as people speaking with the camera.,are shown of people moving along the beach as well as helping others and shots of the scenery.,are shown of people performing various tricks as well as roping and doing tricks.\n2400,anetv_FMYu8k1b_DM,5260,The 3 guys each take turns throwing a soccer ball to the guy on their right. each guy,The 3 guys each take turns throwing a soccer ball to the guy on their right.,each guy,gold,turns his throw on the floor and a black guy walks up and shuts the door.,takes turns catching the ball from their left.,has two frisbees to put them in the tub.,performs a long jump at one time and hits a wave that does n't really slow throughout this area.\n2401,anetv_FMYu8k1b_DM,12314,More clips are shown of people kicking balls into goals and others blocking them. The players,More clips are shown of people kicking balls into goals and others blocking them.,The players,gold,kick the ball back and fourth as people gather around and fight to hit the ball.,continue practicing drills with one another and ends with text going up the screen.,continue to play with one another while scoring to different goals as well.,continue to hit the ball back and fourth and volley the ball.\n2402,anetv_FMYu8k1b_DM,12313,A large group of people are seen standing around a gymnasium that leads into several clips of people throwing balls to one another. More clips,A large group of people are seen standing around a gymnasium that leads into several clips of people throwing balls to one another.,More clips,gold,are shown of people kicking balls into goals and others blocking them.,are shown of people throwing multiple areas around and flipping around a basket with rackets.,are shown of people throwing a ball into the goal and ends with its teammates scoring.,of people struggle speaking to the camera and hitting the ball back and fourth at a set of outdoor tables.\n2403,anetv_FMYu8k1b_DM,5259,3 guys stand in a cirle on a indoor field. the 3 guys each,3 guys stand in a cirle on a indoor field.,the 3 guys each,gold,apply a banner in front of the camera.,take turns throwing a soccer ball to the guy on their right.,and stare down at the black ball in each hand.,pick up the yellow ball from the court.\n2404,anetv_nDG3MsnLE20,8264,We see a curling stone and a graph. We,We see a curling stone and a graph.,We,gold,see the man and two men standing outside the room.,see another team dealing cards.,see a person pushing the stone.,see another bright screen camera.\n2405,anetv_nDG3MsnLE20,8266,We see the stone on another graph. We,We see the stone on another graph.,We,gold,see the individual laying on the floor.,see the body shoveling from camera.,see a man push the stone and people sweep in front of it.,see the viewer in manner back to us again.\n2406,anetv_nDG3MsnLE20,8265,We see a person pushing the stone. We,We see a person pushing the stone.,We,gold,see the stone on another graph.,see people laying on a floor sticking pumpkins.,see to put mulch on the camera.,see the lake in on fire.\n2407,anetv_nDG3MsnLE20,8263,We see a series of title screens. We,We see a series of title screens.,We,gold,see downhill on a dog in the desert.,see a curling stone and a graph.,see her flipping and flips.,see them throwing frisbee for a guy on a sidewalk.\n2408,anetv_r9AepFEEfsQ,17928,A man with glasses playing an accordion and smiling. The camera,A man with glasses playing an accordion and smiling.,The camera,gold,zooms in on his fingers going up and down the neck of the instrument.,moves around to him and a very large cameraman pushes by.,pans around the yard as the camera zooms in behind them playing the game.,pulls back to the band again and takes a small bow.\n2409,anetv_r9AepFEEfsQ,17929,The camera zooms in on his fingers going up and down the neck of the instrument. The man,The camera zooms in on his fingers going up and down the neck of the instrument.,The man,gold,continues to play and goes back up and continues clapping his hands away and speak to the camera.,begins playing another set of drums while others watch him turn up the music.,continues to play his song and smiles to the camera while moving up and down.,continues shining his shoes.\n2410,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14895,\"Snowy drops to the floor of the plane as it rises steeply upwards, then stalls and falls again. A large globule of alcohol\",\"Snowy drops to the floor of the plane as it rises steeply upwards, then stalls and falls again.\",A large globule of alcohol,gold,rises out of the bottle.,pours the water and sniffs it.,\"taps on a glass rim, which falls almost upon it.\",comes from the window distracted.\n2411,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14903,The engine sparks to life. Someone,The engine sparks to life.,Someone,gold,ends it near shore.,is thrown back onto the windshield as the plane picks up speed.,'s head accidentally flies open.,is seen standing in front of a golden ram to the doctor's glass.\n2412,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14900,Someone crawls onto the nose of the plane directly behind the spinning propeller. Someone,Someone crawls onto the nose of the plane directly behind the spinning propeller.,Someone,gold,licks its neck and jogs around.,\"steps out, hurtles out of the motorboat!\",\"gives a thumbs up and lifts himself up, straightens, raises the metal penguin.\",glances down as the empty spirit bottle rolls into his foot.\n2413,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14920,\"With their arms around each other's shoulders, someone and someone walk across a desert of rolling sand dunes as Snowy trods ahead of them. Someone\",\"With their arms around each other's shoulders, someone and someone walk across a desert of rolling sand dunes as Snowy trods ahead of them.\",Someone,gold,\"storms over someone's apartment, leaving a screen with text next to it.\",drops to his knees.,steps in front of door.,puts someone's hat in the crowd.\n2414,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14881,\"Losing his balance, someone falls into the water. Billowing black smoke, the sea plane\",\"Losing his balance, someone falls into the water.\",\"Billowing black smoke, the sea plane\",gold,launches off of hogwarts bridge.,flies along the freeway below.,lands on the ocean surface in the distance.,flies back and forth on the cool deck.\n2415,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14910,\"A bolt of lightning strikes someone who flips onto the plane's wings. His parachute opens and drags him backward, but he\",A bolt of lightning strikes someone who flips onto the plane's wings.,\"His parachute opens and drags him backward, but he\",gold,clings to the plane's tail.,bounces onto the note.,crashes into the water and crashes beneath the jutting grate.,twists himself down and climbs out of the water.\n2416,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14892,Someone quickly takes the bottle of medicinal spirits and uncaps it. The plane,Someone quickly takes the bottle of medicinal spirits and uncaps it.,The plane,gold,becomes a giant vibrant color.,pulls in beside someone and followed by the other passengers.,begins to clink as she looks in.,drops into a step dive.\n2417,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14883,Sitting in the cockpit someone pulls a knob and starts the plane. Snowy,Sitting in the cockpit someone pulls a knob and starts the plane.,Snowy,gold,\"knocks the top off, then someone aboard.\",glances down at the tree's canopy.,shuts the door and lumbers off.,sticks his head out of a window as the plane picks up speed.\n2418,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14887,The plane flies unsteadily toward a massive storm front. Someone,The plane flies unsteadily toward a massive storm front.,Someone,gold,\"kisses men, then transition into a set of applause.\",grips the controls as turbulent winds blow them about.,leaps at someone as it shoots higher and higher.,returns a gay grin.\n2419,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14889,Someone holds one hand over his chest. His eyes,Someone holds one hand over his chest.,His eyes,gold,dart towards the corridor.,flops back and momentarily as he starts to speak.,float on someone's doll - like body.,widen as he looks down beside a seat.\n2420,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14898,\"He opens the plane's side door, looks down and shuts the door again. Setting his jaw, someone\",\"He opens the plane's side door, looks down and shuts the door again.\",\"Setting his jaw, someone\",gold,lets go of his phone.,reaches out and cups his face.,opens the door and slips outside.,gives a half - slow smile.\n2421,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14940,\"Sir someone picks up a piece of burning wood and lights a cannon, causing it to shoot backward and knock several pirates overboard. Sir someone\",\"Sir someone picks up a piece of burning wood and lights a cannon, causing it to shoot backward and knock several pirates overboard.\",Sir someone,gold,makes his way across the man's shoulders - chairs.,swims down the center of the ship and strikes a figurine.,moves to lifeboat and collapses along with a heaving crack.,glares at the silhouetted figure as he approaches.\n2422,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14891,He reaches for a bottle. Lightning,He reaches for a bottle.,Lightning,gold,shows someone halfway into her glade.,\"strikes the wing of the plane, which flips upside down.\",shows a vendor's credit cards.,\"off the side of the street, he runs around the bar, looking at him in thought.\"\n2423,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14893,\"Floating upside down, Snowy sniffs the alcohol and ingests it. The plane\",\"Floating upside down, Snowy sniffs the alcohol and ingests it.\",The plane,gold,weaves several times and then explodes.,collapses over the shot in a spectacular splatters against the surface of the hefty orb.,flies back at a boat.,pulls out of a dive.\n2424,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14921,\"Snowy drags a large bone then drops it. As someone gazes over the rolling desert, a ship's mast\",Snowy drags a large bone then drops it.,\"As someone gazes over the rolling desert, a ship's mast\",gold,widen and fills a dimly - lit ship.,\"bears the deck, its cocks muffled by the truss canopy.\",covers a map of the hangar.,seemed to rise over the horizon.\n2425,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14922,\"As someone gazes over the rolling desert, a ship's mast seemed to rise over the horizon. The skies darken and the sands\",\"As someone gazes over the rolling desert, a ship's mast seemed to rise over the horizon.\",The skies darken and the sands,gold,\"turns to ocean, as the unicorn crashes toward them.\",move across on sides where someone watches from a window as he parallels the plane.,are rotting in mid air by others in a white forest.,\"are washed with fast dark cars, and the tail lights.\"\n2426,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14936,Fires rage on deck and along the sails. Sir someone,Fires rage on deck and along the sails.,Sir someone,gold,\"whips the wire open, exposing the ball of energy which takes him into the air.\",\"picks up one board but landed, sending up a man of soldiers gliding through the low doors of his own courtyard.\",hauls debris to his feet and kicks a lifeboat on both of the decks.,\"runs along a horizontal mast, cuts a rope, then swings past several pirates and lands near the tip of their mast.\"\n2427,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14924,\"Shutters open along the side of the ship, revealing cannons. The helmsman\",\"Shutters open along the side of the ship, revealing cannons.\",The helmsman,gold,grabs at someone through one eye.,turns the ship's wheel.,\"clips the tires a charred hood, which falls into place.\",signals someone and strolling along the freeway toward the end of the corridor.\n2428,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14930,\"As the Unicorn tips to one side, it lifts the other ship out of the water. Pirates\",\"As the Unicorn tips to one side, it lifts the other ship out of the water.\",Pirates,gold,make out multiple times upside down on the deck.,glances up from its work as the bus cruises.,is completely locked inside.,slide down on ropes and fight the unicorn's crew with swords.\n2429,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14890,His eyes widen as he looks down beside a seat. He,His eyes widen as he looks down beside a seat.,He,gold,plunges a rocket upwards from her chin.,squats in front of him and puts the arm around her neck.,notices a handful of broken cubes in two bites and chews.,reaches for a bottle.\n2430,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14894,The plane pulls out of a dive. Snowy,The plane pulls out of a dive.,Snowy,gold,\"drops to the floor of the plane as it rises steeply upwards, then stalls and falls again.\",speeds through the town.,lands inside a dome.,footage shows the sailing aircraft making it lie manipulating on the water.\n2431,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14907,\"They veer around the dune and glide down the opposite side. In the back, one of the captured pilots\",They veer around the dune and glide down the opposite side.,\"In the back, one of the captured pilots\",gold,intertubes into the river.,\"frees himself, then unties his partner.\",\"drags boats, spanning with muddy desert movements.\",waves to the ocean.\n2432,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14901,\"Someone glances down as the empty spirit bottle rolls into his foot. Straddling the engine, someone\",Someone glances down as the empty spirit bottle rolls into his foot.,\"Straddling the engine, someone\",gold,opens the low barn door to find him climbing a grave.,pours out more sorrowfully of sweat.,\"opens the gas tank, then beats a fist on his chest.\",'s arm reaches on.\n2433,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14931,Pirates slide down on ropes and fight the Unicorn's crew with swords. One marauder,Pirates slide down on ropes and fight the Unicorn's crew with swords.,One marauder,gold,holds the winch of the clasp on the sword as the automaton descends.,\"lands on a cannon, cuts down two sailors, then stabs a third.\",is standing up to the ceiling grasping them.,plays on the board standing outside the water.\n2434,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14932,\"One marauder lands on a cannon, cuts down two sailors, then stabs a third. The pirate\",\"One marauder lands on a cannon, cuts down two sailors, then stabs a third.\",The pirate,gold,drops down from the water pool manipulating stark laps.,looks up and looks up.,\"shoots a sailor, then lands.\",aims out the sniper's paddle.\n2435,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14914,\"Someone smashes through the front windshield and sprawls across the hood, inches behind the spinning propeller. Someone\",\"Someone smashes through the front windshield and sprawls across the hood, inches behind the spinning propeller.\",Someone,gold,tries to catch the zombie and struggles down.,stands out of the limo.,\"stands, lips still close to his lips.\",slides toward the spinning blades.\n2436,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14886,Someone banks the plane over someone's ship. The plane,Someone banks the plane over someone's ship.,The plane,gold,fishtails as it fits.,flies through a hand followed by another plane.,slows past wide pillars as people swarm onto the backs of the decrepit statue.,flies unsteadily toward a massive storm front.\n2437,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14927,The cannon ball tears through a sail and setting it on fire. Sir someone,The cannon ball tears through a sail and setting it on fire.,Sir someone,gold,marches through his ship as men and cannons explode behind him.,appears from the pond beside someone.,fires up the twisted willow of a tree and races into the canopy of a tree.,retreats to the spot where the pilot was created.\n2438,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14939,\"Cutting another line, he swings over the melee, slashing at pirates before kicking two of them in the face. Sir someone\",\"Cutting another line, he swings over the melee, slashing at pirates before kicking two of them in the face.\",Sir someone,gold,\"picks up a piece of burning wood and lights a cannon, causing it to shoot backward and knock several pirates overboard.\",advances towards the hut and plunges a grim - bladed hammer across an empty field.,advances as they emerge from the coach.,\"gets to his feet, looks at them through the hatch.\"\n2439,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14904,Someone is thrown back onto the windshield as the plane picks up speed. They,Someone is thrown back onto the windshield as the plane picks up speed.,They,gold,run through an alleyway and glass buildings.,walk hand - blueberries motorcycles above the ocean.,put a relief up into the street.,head toward a large sand dune.\n2440,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14906,Someone jerks the control stick. They,Someone jerks the control stick.,They,gold,veer around the dune and glide down the opposite side.,hit to the ball.,lights the joint cautiously.,scatter under all roiling smoking cans.\n2441,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14896,The plane pulls out of the dive just a few feet above the ocean surface and arises into the air. Someone,The plane pulls out of the dive just a few feet above the ocean surface and arises into the air.,Someone,gold,are standing above their tents.,straps on a parachute.,surfaces and starts to ride down the hill.,leaps to his feet in a wave and lands as it sprints after it.\n2442,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14882,Later crammed into the plane with someone and the pilots someone reads a flight manual. Sitting in the cockpit someone,Later crammed into the plane with someone and the pilots someone reads a flight manual.,Sitting in the cockpit someone,gold,lays him head on the life trunk.,pulls a knob and starts the plane.,lathers up his body.,grabs a monitor and flips through a reception area.\n2443,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14917,The spinning blades nip the tips of someone's hair. Someone,The spinning blades nip the tips of someone's hair.,Someone,gold,shakes elk - two - dollar fear knocking stone to the surface.,keys fly rings from the chain!,jerks as the wind smashes.,climbs down and grabs someone and throws him back onto the roof of the plane.\n2444,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14929,\"As lightning flashes one ship tips over, then rights itself. As the Unicorn tips to one side, it\",\"As lightning flashes one ship tips over, then rights itself.\",\"As the Unicorn tips to one side, it\",gold,projects the creature's skull at his head.,\"steps towards the air - like dragon, kicks its fingers, and disappears.\",lifts the other ship out of the water.,descends onto a curving curved floor.\n2445,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14923,On the deck of the ship Sir someone peers through a spyglass as the Unicorn sails through a rough sea. Shutters,On the deck of the ship Sir someone peers through a spyglass as the Unicorn sails through a rough sea.,Shutters,gold,\"held between flow of the residents, someone joins him.\",allows a beat as the ship sinks infinitely more.,\"falls, creating massive flash of lightning, gesturing as passengers joyfully from the freighters.\",\"open along the side of the ship, revealing cannons.\"\n2446,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14911,\"His parachute opens and drags him backward, but he clings to the plane's tail. The two pilots\",\"His parachute opens and drags him backward, but he clings to the plane's tail.\",The two pilots,gold,talk as he moves off on water vehicles.,\", stations barrow are fired by the fat zombie.\",\"jump out of the plane, and, opening parachutes, drift safely onto the sand below.\",\"wave breaking away, leaving the man in fast pursuit.\"\n2447,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14926,The pirate ship fires a volley. The cannon ball,The pirate ship fires a volley.,The cannon ball,gold,blazes into action and a nazi aircraft security guard arrives in the targets.,can move through the last wall of fake debris.,tears through a sail and setting it on fire.,collapses and explodes against the governor's tires.\n2448,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14918,\"The propeller snags Haddocks parachute, spins him around rapidly several times and spits him onto the sand nearby. The propeller\",\"The propeller snags Haddocks parachute, spins him around rapidly several times and spits him onto the sand nearby.\",The propeller,gold,stops outside and revealing someone forces the pas - life rope inside someone's body as it moves overboard.,slows to a stop then drops off.,spins swirling as a sphere dangles overhead.,\"jerks, halts and swims towards someone.\"\n2449,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14916,\"Kicking his legs he drops onto the back of the plane as it pitches forward, sliding someone even closer to the whirring propeller. The spinning blades\",\"Kicking his legs he drops onto the back of the plane as it pitches forward, sliding someone even closer to the whirring propeller.\",The spinning blades,gold,sends several other clouds in midair about in.,have a vending machine.,swerves into a run on the track.,nip the tips of someone's hair.\n2450,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14897,Someone straps on a parachute. He,Someone straps on a parachute.,He,gold,glances up to see the staircase pass by.,\"opens the plane's side door, looks down and shuts the door again.\",drives through several constant flood trails rolling down the plateau to smithereens.,\"rocky beneath below, and swoops downwards.\"\n2451,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14879,Someone braces the pistol against his forearm as the plane returns for another pass. Someone,Someone braces the pistol against his forearm as the plane returns for another pass.,Someone,gold,watches and puts the game to someone.,waits by a side window.,lies back to the incantus.,shoots the plane as it swoops overhead.\n2452,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14933,\"The pirate shoots a sailor, then lands. Sir someone\",\"The pirate shoots a sailor, then lands.\",Sir someone,gold,\"shoots the pirate, punches another then kicks a third before slicing him with a sword.\",\"struggles to aim between his legs, trying to prevent him from falling.\",stretches his sword stick.,pulls the leash around someone's neck until he has him head to face.\n2453,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14888,Someone grips the controls as turbulent winds blow them about. Someone,Someone grips the controls as turbulent winds blow them about.,Someone,gold,brings someone through the courtyard into the trap door.,holds one hand over his chest.,pulls back and snatches the ship.,\"unhooks it, which still bowed over the side of the wave.\"\n2454,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14885,\"It bounces over waves, then lifts into the air. Someone\",\"It bounces over waves, then lifts into the air.\",Someone,gold,peers into the bedroom window and pops up.,\"sits in his long field playing the violin, his back to us.\",bounces around and popping as he is hit.,banks the plane over someone's ship.\n2455,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14935,\"Pirates with swords climb their ship's tilted mast toward the Unicorn, which lies on its side. Fires\",\"Pirates with swords climb their ship's tilted mast toward the Unicorn, which lies on its side.\",Fires,gold,is one of a line through an windscreen window.,rage on deck and along the sails.,uncaps the contents of the grenade then switches on the cylinder as he nears the boat.,stands on the house on the tail end.\n2456,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14915,Someone slides toward the spinning blades. An updraft,Someone slides toward the spinning blades.,An updraft,gold,lifts someone's parachute and carries him of his feet.,presses a flurry of rings onto his chest.,\"aims his body, illuminating the dragon's glowing skull.\",makes the bridge in the air and the door open.\n2457,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14905,They head toward a large sand dune. Someone,They head toward a large sand dune.,Someone,gold,is a happy dress.,flicks on a grip as someone comforts someone.,stands on the horses and rolls to the ground.,jerks the control stick.\n2458,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14919,\"The propeller slows to a stop then drops off. With their arms around each other's shoulders, someone and someone\",The propeller slows to a stop then drops off.,\"With their arms around each other's shoulders, someone and someone\",gold,walk across a desert of rolling sand dunes as snowy trods ahead of them.,sit cross - legged on a heart covered buffalo.,hold each other upside down.,stare in her arms.\n2459,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14928,\"Sir someone marches through his ship as men and cannons explode behind him. The two ships, both on fire,\",Sir someone marches through his ship as men and cannons explode behind him.,\"The two ships, both on fire,\",gold,sticks their fists into the sky.,explode around them and up several blocks.,\"sail toward each other, then crash together.\",climb out of control and fall dead simultaneously.\n2460,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14908,\"In the back, one of the captured pilots frees himself, then unties his partner. The plane\",\"In the back, one of the captured pilots frees himself, then unties his partner.\",The plane,gold,jumps up on the runway as someone speeds off.,walks off as someone desperately slides the raft as the shiny white pool of light disappears.,\"drops to the floor, and someone, under the roots.\",rises over another dune revealing as vast desert filled with wrecked ships and planes.\n2461,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14937,\"As more pirates approach, he slices a line and untangles the two ships. Sir someone\",\"As more pirates approach, he slices a line and untangles the two ships.\",Sir someone,gold,slides down a line toward the burning deck.,grabs his gun from and misses his post.,\"runs the finger down his smooth forehead, thrusting the blade on someone's head.\",shows someone's wand from the middle of the glowing green spike.\n2462,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14899,The wind carries him away. Someone,The wind carries him away.,Someone,gold,crawls onto the nose of the plane directly behind the spinning propeller.,gets in her chair and stares down at the green sky.,helps someone up as it rolls in to the sofa.,'s car loaded into someone's basket.\n2463,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14902,\"Straddling the engine, someone opens the gas tank, then beats a fist on his chest. He\",\"Straddling the engine, someone opens the gas tank, then beats a fist on his chest.\",He,gold,places his mouth over the gas tank spout.,opens the door to the boss's room and presses a step button.,\"lands with the skiptracer, someone screaming.\",slides his handgun down various slices of the vampire's abdomen.\n2464,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14913,\"Someone hugs Snowy to his chest, and ducks down as the plane bounces over a sand dune, flips and crashes. Someone\",\"Someone hugs Snowy to his chest, and ducks down as the plane bounces over a sand dune, flips and crashes.\",Someone,gold,blocks the gate again.,\"smashes through the front windshield and sprawls across the hood, inches behind the spinning propeller.\",moves to catch his vision.,'s dog leaps up on his back as zombies walk away.\n2465,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14938,\"Sir someone slides down a line toward the burning deck. Cutting another line, he\",Sir someone slides down a line toward the burning deck.,\"Cutting another line, he\",gold,hits an missile squirming directions finding it burning into the red and magic canister.,drops his hands down the shaft having one hand meeting.,grabs a fleeing girl lift high above and stops him.,\"swings over the melee, slashing at pirates before kicking two of them in the face.\"\n2466,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14884,Snowy sticks his head out of a window as the plane picks up speed. It,Snowy sticks his head out of a window as the plane picks up speed.,It,gold,\"bounces over waves, then lifts into the air.\",\"climb toward him, landing a vicious dragon erupt into the ground.\",\"blasts a hole by a giant wiper, several hooks roll over the holes.\",hangs from the building raising its legs high and higher above his head.\n2467,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14912,Someone loses his grip on the tail and lands face first in a powdery dune. Someone,Someone loses his grip on the tail and lands face first in a powdery dune.,Someone,gold,grabs a whiskey and throws a mini apple out of his mouth.,\"hugs snowy to his chest, and ducks down as the plane bounces over a sand dune, flips and crashes.\",chaises a band fence.,\"stares after the teacher then steps back, standing and hands him the cash.\"\n2468,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14909,The plane rises over another dune revealing as vast desert filled with wrecked ships and planes. A bolt of lightning,The plane rises over another dune revealing as vast desert filled with wrecked ships and planes.,A bolt of lightning,gold,crashes through a 3d microscope and lands over a clearing where it lands on a grave.,\"flashes the night in slow motion, a long plume of smoke seeps closer to its surface.\",strikes someone who flips onto the plane's wings.,glides around a circular tunnel slowly above the lake.\n2469,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31656,14880,\"Someone shoots the plane as it swoops overhead. Losing his balance, someone\",Someone shoots the plane as it swoops overhead.,\"Losing his balance, someone\",gold,rises and aims at someone.,punches down his attacker.,struggles back into the stage.,falls into the water.\n2470,anetv_UR1e1MIRvvc,8118,A small group of people are seen standing in a circle playing instruments together while a large group of people watch on the sides. The people,A small group of people are seen standing in a circle playing instruments together while a large group of people watch on the sides.,The people,gold,continue to workout with one another as well as speaking and smiling to the camera.,continue playing one another as well as a group of people in the audience watching.,continue playing together as the crowd watches the people play from a far.,continue the dance all around the whole room and ends with the playing the dance with them.\n2471,anetv_UR1e1MIRvvc,18810,They are taking pictures of a group of men in kilts. The men,They are taking pictures of a group of men in kilts.,The men,gold,are practicing in martial exercises while the man at the arm explains.,start to put trophies on their hands in the sand.,are playing sets of bagpipes.,hide behind a curtain as hot cops take orders.\n2472,anetv_UR1e1MIRvvc,18809,A group has gathered in the streets. They,A group has gathered in the streets.,They,gold,engage in a game through games of polo.,are being detached from polo.,are playing a game of indoor soccer.,are taking pictures of a group of men in kilts.\n2473,anetv_xV7uPiqNuwQ,9377,A lot of people are walking by the subway in an open area. men,A lot of people are walking by the subway in an open area.,men,gold,are working on the planks on a pair of stilts.,are standing in front of a large box assembling a bicycle.,load a wheel on a bike.,are running around a large field wearing oversized hats and yellow uniforms.\n2474,anetv_xV7uPiqNuwQ,9379,The man put own the bike and start assembling a new one. men,The man put own the bike and start assembling a new one.,men,gold,put the other bike down and is putting them the remaining screws and parts on the floor.,sits and ski in the street.,move inside the treadmill and see a white cement top.,sit on bread and sit on bike tires.\n2475,anetv_xV7uPiqNuwQ,9378,Men are standing in front of a large box assembling a bicycle. the man,Men are standing in front of a large box assembling a bicycle.,the man,gold,made the pieces tape glue and hold the tire in one.,put own the bike and start assembling a new one.,remove the tire and put on tire jack.,unfastens the tire on his log.\n2476,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85357,12760,Someone shrugs the blanket of her shoulders and gets up on the table. Someone,Someone shrugs the blanket of her shoulders and gets up on the table.,Someone,gold,sets down her travel handbag.,removes his blanket and looks at the chessboard.,rises into her eyes.,\"walks towards the sofa and sits beside the baby at the other of table, the baby, the young woman, and someone.\"\n2477,anetv_kXfYuIx31Bo,11362,The man then uses the machine around the dirt and waters down the area afterwards. Another man,The man then uses the machine around the dirt and waters down the area afterwards.,Another man,gold,is shown moving all along the equipment.,is seen pouring water down on the ground and pasting white paper down.,demonstrates how to properly bungee jumping rope again.,is seen holding up a pit rope and walking across the course.\n2478,anetv_kXfYuIx31Bo,11361,A close up of a machine is shown followed by a man shoveling dirt around a floor. The man then,A close up of a machine is shown followed by a man shoveling dirt around a floor.,The man then,gold,pans all around the area while looking at the camera.,begins talking to the camera while sitting on a bed and speaking to the camera.,uses the machine around the dirt and waters down the area afterwards.,begins painting something down with a hose.\n2479,anetv_VFKUKX9ToNI,13203,A man falls off the board very suddenly. He,A man falls off the board very suddenly.,He,gold,\"falls over the water, then a third sprinter left and spins once more.\",hits other levels on his way down into the water.,jumps down onto his board and falls back down.,uncovers the meerkats with a wave as he is sprawled on minas balustrade.\n2480,anetv_VFKUKX9ToNI,13202,A group of swimmers are on a diving board. A man,A group of swimmers are on a diving board.,A man,gold,is grabbing and dancing.,does sailing in the water.,falls off the board very suddenly.,flicks into the water several times.\n2481,anetv_Lwy92HbuZII,6055,The women are back on a smaller boat. They,The women are back on a smaller boat.,They,gold,scrapes a sizable rim onto the water's surface.,are then seen on the boat with the man they threw a rope to while he is rowing.,\"walk back and forth, and walk past a dribble of flowers.\",are motionless off into the lake.\n2482,anetv_Lwy92HbuZII,6052,\"All 3 women sit on a boat dock. Back on the boat, one of the women\",All 3 women sit on a boat dock.,\"Back on the boat, one of the women\",gold,watching the water leap out of the water.,walks out and waters the farm on the end focus.,lays on the boat while the other two control it.,jumps on the boat side.\n2483,anetv_Lwy92HbuZII,6053,\"Back on the boat, one of the women lays on the boat while the other two control it. A woman on the boat\",\"Back on the boat, one of the women lays on the boat while the other two control it.\",A woman on the boat,gold,carry the inflated boat with the deck stick tied to the machine.,hugs the surfboard behind and grabs it by her neck.,throws a rope to man on a smaller boat nearby.,rides a camel over on a motor connected boat.\n2484,anetv_Lwy92HbuZII,6058,\"Bock on the big boat, one of the women swims in the ocean. The three women\",\"Bock on the big boat, one of the women swims in the ocean.\",The three women,gold,tumble out near the bed.,wave goodbye to him.,raise the sail on the boat.,move her close.\n2485,anetv_Lwy92HbuZII,6061,Someone is seen underwater and then looking at a waterfall. All three women,Someone is seen underwater and then looking at a waterfall.,All three women,gold,fall on and back down the hill by themselves.,are then shown speaking or writing.,look back into their eyes as others continue to do other activities.,stay around the waterfall doing various things.\n2486,anetv_Lwy92HbuZII,6060,Now they walk through a jungle. Someone,Now they walk through a jungle.,Someone,gold,plays with a baton flying over her head.,\"stops, hearing the noise on the room.\",is seen underwater and then looking at a waterfall.,pauses in the hole and aims his cellphone at the end.\n2487,anetv_Lwy92HbuZII,6057,\"The women are off of the boat doing different things in a jungle area. Bock on the big boat, one of the women\",The women are off of the boat doing different things in a jungle area.,\"Bock on the big boat, one of the women\",gold,is directing the other teams of men on the ice.,goes and turn to meet her in the lift.,uses steps as the boat express.,swims in the ocean.\n2488,anetv_Lwy92HbuZII,6054,A woman on the boat throws a rope to man on a smaller boat nearby. The women,A woman on the boat throws a rope to man on a smaller boat nearby.,The women,gold,get led between two girls friends and cleanly lifting her arms over various rocks.,move forward and gets his dogs catch.,are back on a smaller boat.,ski down the water and climbs behind the boat.\n2489,anetv_Lwy92HbuZII,6045,A man and three women are on a boat in the ocean. The man,A man and three women are on a boat in the ocean.,The man,gold,is nonchalantly pushing the lawn mower while pulling a riding mower through a rectangular hole.,starts sailing as people walk along the river.,is wearing the ski goggles on his face.,takes pictures of the women and sometimes himself standing at the end of the boat.\n2490,anetv_Lwy92HbuZII,3569,\"As the boat moves through the water, the women pose for pictures. They\",\"As the boat moves through the water, the women pose for pictures.\",They,gold,look at each other as they enter.,\"pretends to strip kissing girls, each holding a mailbag, and points with them.\",are then seen driving the boat quickly through the water.,head to eye view from the groom side as the woman pushes her arm toward the door.\n2491,anetv_Lwy92HbuZII,6049,Now a woman stands next to a dinosaur skeleton talking. A few people,Now a woman stands next to a dinosaur skeleton talking.,A few people,gold,are sitting and standing at a bar behind her.,are being driven on a white road with abandoned steps.,swing plaster while nearly touching the ceiling before dropping to the floor.,pick up their match cloaks.\n2492,anetv_Lwy92HbuZII,6064,\"A few more quick clips are shown of the women at the waterfall, on the boat and in a jungle area with children. Finally the women\",\"A few more quick clips are shown of the women at the waterfall, on the boat and in a jungle area with children.\",Finally the women,gold,are still riding a ladder on the water.,come along to the end and start showing to fix on a hockey stick.,are on the big boat towing a smaller boat behind.,ski down the river and bend off once more.\n2493,anetv_Lwy92HbuZII,6046,The man takes pictures of the women and sometimes himself standing at the end of the boat. The man,The man takes pictures of the women and sometimes himself standing at the end of the boat.,The man,gold,rides up on a board and bungee jumps deep.,knits a little harder and continues at the news news on the bench.,takes a few steps forward then slams through it.,steers the boat as two of the women pull a rope and turn a crank.\n2494,anetv_Lwy92HbuZII,6063,They all sit in and near a van while a man plays guitar and sings. A few more quick clips,They all sit in and near a van while a man plays guitar and sings.,A few more quick clips,gold,are shown of people enjoying stepping people.,\"are shown of the women at the waterfall, on the boat and in a jungle area with children.\",are shown of each team playing some sort of poker with the team.,show an older man joining the last woman to keep the arrest.\n2495,anetv_Lwy92HbuZII,6062,All three women stay around the waterfall doing various things. They all,All three women stay around the waterfall doing various things.,They all,gold,begin to pull litle little boy and a black - smudged child are blindfolded at the kid.,go under an turbulent straight water.,\"get images, trying hard and win.\",sit in and near a van while a man plays guitar and sings.\n2496,anetv_eS1r2Qi0qUM,6038,Four people are seen playing an intense game of badminton with one another as judges watch on the sidelines. The men,Four people are seen playing an intense game of badminton with one another as judges watch on the sidelines.,The men,gold,continue playing with one another and shows several slow motion clips of the game in the end.,are then seen playing balls when one hits the ball to one another and talks to the audience.,hit the ball with other children as well as played up and sometimes being shot.,continue performing jumps along the stage while looking to one another and leads into trophies.\n2497,anetv_eS1r2Qi0qUM,6600,\"Two couples play tennis in a competition on front people. The players Players with yellow t - shirt win the set, they\",Two couples play tennis in a competition on front people.,\"The players Players with yellow t - shirt win the set, they\",gold,\"see holds arms, and one of the players.\",throw the ball that the red team could not return.,get hands back to playing with each other practicing.,hit the ball to the goal shake and go on the daily scores.\n2498,anetv_d_z2CA-o13U,281,There are people on motorcycles as well as up in the air in parachutes just have a big fun day. One guy,There are people on motorcycles as well as up in the air in parachutes just have a big fun day.,One guy,gold,is visible wearing a blue connected to the fake tooth band that includes her roars and purple clothing.,waves her back and shows the vehicle to jump at a kite as the past and back flips to the camera discusses this location.,jumps along the water and tries to throw the gear on and how to extend it first.,seems to have a paint ball rocket launcher and shoots a guy with it.\n2499,anetv_d_z2CA-o13U,282,One guy seems to have a paint ball rocket launcher and shoots a guy with it. there,One guy seems to have a paint ball rocket launcher and shoots a guy with it.,there,gold,are people on motor skate boards also.,are two boys who are also smoking the bump.,is a matador sitting back and waving at the camera.,'s a man dressed in a black and prepare gun in a game of bowling.\n2500,anetv_d_z2CA-o13U,280,\"People are having fun playing with paint ball guns in interesting ways, some are riding in cars and other are on the ground shooting paint balls at each other. there\",\"People are having fun playing with paint ball guns in interesting ways, some are riding in cars and other are on the ground shooting paint balls at each other.\",there,gold,are kids gathered with it in stands among them.,are two black cars that are open between street and street activities.,are people on motorcycles as well as up in the air in parachutes just have a big fun day.,are two performing ping pong in a tent.\n2501,anetv_-JhWjGDPHMY,15926,He starts pulling up roofing on a roof. A man,He starts pulling up roofing on a roof.,A man,gold,is painting the fence with a scraper.,is shown knocking on the walls of the car.,is kneeling in a sanding heap outside.,walks up a ladder onto the roof.\n2502,anetv_-JhWjGDPHMY,15925,A man is sitting on a roof. He,A man is sitting on a roof.,He,gold,\"is removing the sandwich in pieces, and then able to start walking.\",puts in the pan and begins decorating the tree.,is using the blade to attack the tire.,starts pulling up roofing on a roof.\n2503,anetv_MFvdMVCzfB0,186,She starts to dance as she brushes her teeth and wiggles her body too. She,She starts to dance as she brushes her teeth and wiggles her body too.,She,gold,raises her arms and spins around to see that he is very happy about this.,picks him up and starts away again.,steadily ran around sighing and laughing.,continues brushing and dances faster and laughs.\n2504,anetv_MFvdMVCzfB0,187,She continues brushing and dances faster and laughs. Then she,She continues brushing and dances faster and laughs.,Then she,gold,stops her hair on her face before finally her stepping back.,comes up again and continues to talk.,lays down and stops that the dog is doing tricks.,\"realizes that her mouth is full of toothpaste foam and that it is coming out, she spits it out in the sink.\"\n2505,anetv_MFvdMVCzfB0,184,A girl wearing a red shirt and white shorts is standing in her bathroom at the sink with a toothbrush in her hand. She,A girl wearing a red shirt and white shorts is standing in her bathroom at the sink with a toothbrush in her hand.,She,gold,turns and sprays towel dries her face with a towel.,dabs her nose with shaving cream and rinses her face thoroughly and brushes the sink's teeth.,goes back and forth taking some time to the shower.,takes some toothpaste and puts it on her brush and begins brushing.\n2506,anetv_MFvdMVCzfB0,185,She takes some toothpaste and puts it on her brush and begins brushing. She,She takes some toothpaste and puts it on her brush and begins brushing.,She,gold,is also drying her hair.,continues brushing down the horse's mane.,starts to dance as she brushes her teeth and wiggles her body too.,\"disappears inside, stirs, then dries a towel again.\"\n2507,anetv_FI_1dsErIXE,11079,He sprays the wood with the yellow canister. He,He sprays the wood with the yellow canister.,He,gold,continue to blow and face off in the end.,stands in front of the stone and lights it in with its lining upward.,takes a small plastic bin and leaves the room.,takes a rag and cleans the wood.\n2508,anetv_FI_1dsErIXE,11080,He takes a rag and cleans the wood. He,He takes a rag and cleans the wood.,He,gold,speaks as he showcases the wood and presses his fingers on the board.,grabs a hose and tosses it into a clean car.,tosses the bottle onto the wall.,fills it with blood and overlapping.\n2509,anetv_FI_1dsErIXE,11078,A man holds a yellow canister as he clears a wood board. He,A man holds a yellow canister as he clears a wood board.,He,gold,goes out when the wood is ready.,sprays the wood with the yellow canister.,\"lets it smoke out of the hole of the shed, sliding it aside.\",puts a cartridge in the hole in the ground.\n2510,lsmdc3060_SANCTUM-29204,9620,The balding man takes off his hat and faces someone. He,The balding man takes off his hat and faces someone.,He,gold,squeezes his eyes shut.,points at two men with his hands on his waist.,shakes his head and steps past.,\"types a command, then leaves his friends.\"\n2511,lsmdc3060_SANCTUM-29204,9618,Men carry oxygen tanks in the opposite direction. He,Men carry oxygen tanks in the opposite direction.,He,gold,squints across the faces.,wears a helmet mask and overcoat.,hands a tank to a local.,\"leans forward, irritably overlooking a hatch.\"\n2512,lsmdc3060_SANCTUM-29204,9617,\"Now, the locals guide the group through ankle - high water. Men\",\"Now, the locals guide the group through ankle - high water.\",Men,gold,carry oxygen tanks in the opposite direction.,eat and their soup babies.,gets cans of soap in a shop.,ride in an underpass down the river.\n2513,lsmdc3060_SANCTUM-29204,9619,He hands a tank to a local. The balding man,He hands a tank to a local.,The balding man,gold,wears a doctor's scissors.,takes off his hat and faces someone.,pushes someone gently onto the floor.,cuts a man instead.\n2514,lsmdc3060_SANCTUM-29204,9616,\"They help the brunette out. Now, the locals\",They help the brunette out.,\"Now, the locals\",gold,stand close and lean for the soldier flank someone.,apply graffiti on a cloth.,guide the group through ankle - high water.,enter a dingy transmitter blanketed with stretchers and paintings.\n2515,anetv_eaFvnf8IF-I,19189,The man changes his finger tips constantly and looks off into the distance while playing. The man,The man changes his finger tips constantly and looks off into the distance while playing.,The man,gold,continues riding around around on the wave while looking away from the camera.,continues his song and eventually finishes by smiling into the camera.,talks to the camera as the camera moves helping.,continuously wipes his hands vigorously as he finishes the hair.\n2516,anetv_eaFvnf8IF-I,19188,A man is playing an accordian while staring occasionally into the camera. The man,A man is playing an accordian while staring occasionally into the camera.,The man,gold,performs a spin trick with a man and air around.,plays and discussing the mouthpiece.,changes his finger tips constantly and looks off into the distance while playing.,puts down the cigarette and continues smoking a cigarette.\n2517,anetv_xYuqZ_RrCC0,9565,The man picks up a package of razors and assembles them into his steel razor gadget. The man,The man picks up a package of razors and assembles them into his steel razor gadget.,The man,gold,removes the razor from the hair.,looks down and leaves poodle again.,cleans the rubber car using his hands before taking off and rubbing it to the back.,uses his razor to trim his face and beard.\n2518,anetv_xYuqZ_RrCC0,9564,The man picks up lotion which he applies to his neck. The man,The man picks up lotion which he applies to his neck.,The man,gold,speaks and then sits next to the man.,picks up a bridge and begins plastering it.,picks up a package of razors and assembles them into his steel razor gadget.,removes his knitted hairs to the side of a head.\n2519,anetv_xYuqZ_RrCC0,9567,The man picks up a package and applies a product to his face. The man,The man picks up a package and applies a product to his face.,The man,gold,uses a towel to wipe down his face.,uses a brush and brushes the mane on the man's face.,takes the water off and begins cutting the horse's edges.,begins to carve a star on the canvas.\n2520,anetv_xYuqZ_RrCC0,9563,The man reaches down to pick up sizzors then trims his mustache. The man,The man reaches down to pick up sizzors then trims his mustache.,The man,gold,scratches the blue paw and starts the cats performance.,brushes his teeth and rubs his head and forehead.,picks up lotion which he applies to his neck.,pulls a magnifying shaving pipe up from the man's face.\n2521,anetv_xYuqZ_RrCC0,9568,The man uses a towel to wipe down his face. the man,The man uses a towel to wipe down his face.,the man,gold,picks up a bottle of oil from the counter and applies it to his beard.,wipes his eyes off with a towel.,makes little faces with the tip of his foot.,rubs his eyelid with a razor.\n2522,anetv_xYuqZ_RrCC0,9566,The man uses his razor to trim his face and beard. The man,The man uses his razor to trim his face and beard.,The man,gold,brushes shaving cream from his face.,is seated in whites as a second man talks.,picks up a package and applies a product to his face.,performs the new action.\n2523,anetv_giN7cA0EmLs,13463,A group of people are seen riding around in tubes while pushing themselves down a diver. The people,A group of people are seen riding around in tubes while pushing themselves down a diver.,The people,gold,continue to ride in the tubes down the river while looking towards the camera as well as laughing and smiling.,begin moving down the hill while the man continues to ride around.,continue riding around turbulent track and ends with them putting their arms off and unseen at the end.,continue to help him move around the water while others watch on the side.\n2524,lsmdc3055_PROMETHEUS-27010,11622,She staggers into a room and collapses to her knees. A man dressed in white,She staggers into a room and collapses to her knees.,A man dressed in white,gold,is wearing a white dressing gown.,\"comes out, enters a berth, picks a large plate, and chucks it at a tv table.\",\"notices her, then helps her to her feet along with a guard.\",is bellowing from the ceiling.\n2525,lsmdc3055_PROMETHEUS-27010,11617,\"As the vehicle takes off, someone and someone arrive, dousing the mutant with fire and bullets. Someone\",\"As the vehicle takes off, someone and someone arrive, dousing the mutant with fire and bullets.\",Someone,gold,barges through a barrier under a glass partition.,\"commands images of a large crowd, grinning, shooting a someone, pale man in a pose.\",lowers the flamethrower and watches the body burn.,hits back an energy.\n2526,lsmdc3055_PROMETHEUS-27010,11623,\"A man dressed in white notices her, then helps her to her feet along with a guard. Someone\",\"A man dressed in white notices her, then helps her to her feet along with a guard.\",Someone,gold,\"thinks for a moment, then shifts her tender gaze.\",notices her as well.,\"by a window, a blond man in front appears with glasses - straight nose and the elder from below.\",smiles at her roommate.\n2527,lsmdc3055_PROMETHEUS-27010,11620,\"She peers down a corridor, then lowers her hand from a concave wall, and shuffles toward a set of rounded doors. She\",\"She peers down a corridor, then lowers her hand from a concave wall, and shuffles toward a set of rounded doors.\",She,gold,presses a button and the doors part.,rests a hand on her shoulder.,lies on a bed dressed in a nightgown.,hops down and stalls over a landing.\n2528,lsmdc3055_PROMETHEUS-27010,11621,She presses a button and the doors part. She,She presses a button and the doors part.,She,gold,staggers into a room and collapses to her knees.,steps on the protruding blue snow.,leans forward and flings someone's face on the bar.,slams the gas launcher and pushes out.\n2529,lsmdc3055_PROMETHEUS-27010,11625,He quickly takes off his white coat and wraps it around the half - naked woman. Someone,He quickly takes off his white coat and wraps it around the half - naked woman.,Someone,gold,\"stares at her, sitting in a wheelchair.\",has just spotted the tank.,\"wanders off, grimacing in pain.\",holds the big pendant around her neck.\n2530,lsmdc3055_PROMETHEUS-27010,11618,\"Meanwhile, someone gives herself another shot, then drops the auto - injector. Our view\",\"Meanwhile, someone gives herself another shot, then drops the auto - injector.\",Our view,gold,\"passes through the open door, passing it to a man reading the apartment promenade.\",rises from her thigh up her blood - spattered body to her drawn face.,moves through the mist in the glass - suction mirror.,sweeps overhead as the sister screams someone into the ambulance.\n2531,lsmdc3055_PROMETHEUS-27010,11614,\"On fire, the mutant speedily scales a smooth wall, then leaps down, tackling a crewman. Someone and someone\",\"On fire, the mutant speedily scales a smooth wall, then leaps down, tackling a crewman.\",Someone and someone,gold,\"step back, as the lifeboat reveal to the hulls below.\",stand and hands out close to someone.,stand at the air - locked door.,solemnly stab a hot chamber with large wounds in the back of the titanic.\n2532,lsmdc3055_PROMETHEUS-27010,11629,Someone returns to someone and kneels on the floor. He,Someone returns to someone and kneels on the floor.,He,gold,stops in front of someone's house.,washes the old man's feet.,plunges a gun through a hole in the wall.,lifts his axe and walks inside.\n2533,lsmdc3055_PROMETHEUS-27010,11611,\"On the bridge, someone's eyes shift nervously. The crewman\",\"On the bridge, someone's eyes shift nervously.\",The crewman,gold,blinks himself back from the embrace and lowers her uncertain gaze.,rises and holds a hand up to the engineer's lips.,turns to someone and looks up at his upper body.,\"kicks someone's foot, then backs away a few steps.\"\n2534,lsmdc3055_PROMETHEUS-27010,11619,Our view rises from her thigh up her blood - spattered body to her drawn face. She,Our view rises from her thigh up her blood - spattered body to her drawn face.,She,gold,\"peers down a corridor, then lowers her hand from a concave wall, and shuffles toward a set of rounded doors.\",caresses her hair and wrinkles her nose.,\"extends one hand, which leans over her body.\",speeds lazily in an adjacent work car.\n2535,lsmdc3055_PROMETHEUS-27010,11624,Someone notices her as well. He,Someone notices her as well.,He,gold,dabs around one eye.,quickly takes off his white coat and wraps it around the half - naked woman.,opens the door to someone and swigs a huge mirror.,and someone grab the phone and let them head off.\n2536,lsmdc3055_PROMETHEUS-27010,11613,\"A door to another corridor opens for her. On fire, the mutant\",A door to another corridor opens for her.,\"On fire, the mutant\",gold,pushes the gunman closer to someone as she passes someone.,takes away from the outside of someone's clapboard home.,flies backward over the bedraggled affecting soldiers.,\"speedily scales a smooth wall, then leaps down, tackling a crewman.\"\n2537,lsmdc3055_PROMETHEUS-27010,11616,\"As the men escape into a transport, the mutant lodges a metal tool into ones back and pulls him out. The mutant falls back and the guys\",\"As the men escape into a transport, the mutant lodges a metal tool into ones back and pulls him out.\",The mutant falls back and the guys,gold,run over him with the transport.,stare up at the vessel below.,drop his funnel into the drain.,chucks against the wall as he shoots.\n2538,lsmdc3055_PROMETHEUS-27010,11627,\"He watches as the guard helps her take a seat. Shivering, someone\",He watches as the guard helps her take a seat.,\"Shivering, someone\",gold,climbs down the platform as someone watches the suv drive ahead.,zips the safe and types.,stares up at someone as she shut off a set of headphones.,notices the old man.\n2539,lsmdc3055_PROMETHEUS-27010,11615,Someone and someone stand at the air - locked door. Two guys,Someone and someone stand at the air - locked door.,Two guys,gold,fire on the mutant as he flings a third against a transport's window.,grip from fridge bowls and pull them into the basket.,pass a man in a hip flask.,\"restrain one as they try, and resuming out of the door.\"\n2540,lsmdc3055_PROMETHEUS-27010,11628,\"Shivering, someone notices the old man. Someone\",\"Shivering, someone notices the old man.\",Someone,gold,looks someone in the eye with an english teacher.,returns to someone and kneels on the floor.,\"pulls up, holsters his revolver at someone.\",strides up the roof of the building.\n2541,lsmdc3055_PROMETHEUS-27010,11612,\"The mutant smashes both fists through his helmet, pummeling his face. Meanwhile someone\",\"The mutant smashes both fists through his helmet, pummeling his face.\",Meanwhile someone,gold,spots the thief who points towards the stones gates.,\"follows trunks, holding a tool that nearly hits the ground like a corpse.\",walks into the thick - lit warehouse.,turns briefly as she makes her way past a hanging space suit.\n2542,anetv_6xAe1YVbxuY,556,A person is seen putting on weights and leads into a man lifting weights over his head. A man,A person is seen putting on weights and leads into a man lifting weights over his head.,A man,gold,is shown lifting weights up and throwing them back down.,has his stomach shaved as he work on the ground.,talks to the camera in front of a crowd.,walks around and leads into several clips of the man.\n2543,anetv_6xAe1YVbxuY,17132,An image of weights being slid onto a bar is shown and then disappears. A man dressed in a grey shirt and black Adidas sweatpants then,An image of weights being slid onto a bar is shown and then disappears.,A man dressed in a grey shirt and black Adidas sweatpants then,gold,begins to pick up weights and throws them down abruptly and repeats it one more time.,begins a skater stunts on his skateboard as he flips.,makes a barbell spinning in raising his own hand for support.,makes his way up a flight of stairs.\n2544,anetv_6xAe1YVbxuY,557,A man is shown lifting weights up and throwing them back down. Several more people,A man is shown lifting weights up and throwing them back down.,Several more people,gold,are shown swimming underwater.,are shown sailboats shown afterwards men speaking when smooths himself up.,are then shown engaged in various martial arts moves.,are shown afterwards lifting weights over their heads and back down.\n2545,anetv_6xAe1YVbxuY,17133,\"A man dressed in a grey shirt and black Adidas sweatpants then begins to pick up weights and throws them down abruptly and repeats it one more time. After, a woman with a black brace around her middle section is pictured doing the exact same thing and does several sets and a different man\",A man dressed in a grey shirt and black Adidas sweatpants then begins to pick up weights and throws them down abruptly and repeats it one more time.,\"After, a woman with a black brace around her middle section is pictured doing the exact same thing and does several sets and a different man\",gold,with a hoola hoop and waiting with her foot and knee in yoga.,follows her exact same actions.,does in park am both.,breaks in and does it in the session capoeira result.\n2546,anetv_6xAe1YVbxuY,17134,\"After, a woman with a black brace around her middle section is pictured doing the exact same thing and does several sets and a different man follows her exact same actions. More people from different genders and background walk into the gym and they too\",\"After, a woman with a black brace around her middle section is pictured doing the exact same thing and does several sets and a different man follows her exact same actions.\",More people from different genders and background walk into the gym and they too,gold,are off of it as she comes back.,see dancing for the performance when she is finished.,are moving about getting better of herself.,position themselves to pick up the bar.\n2547,anetv_rABAqfLcssA,10702,A person is seen riding a board with a kite along the ocean moving at a fast pace. The person,A person is seen riding a board with a kite along the ocean moving at a fast pace.,The person,gold,continues to jump and slow and limps past the camera holding up boards off by the camera.,runs down a mountain and climbs off of the platform into a large area.,continues rowing along the water and ends by letting down the rope and walking to the water.,continues riding along and eventually crashes while the camera zooms in on the rider.\n2548,anetv_D4Y6DyRD0kY,17313,A large group of people are seen standing by a river and watching it flow. A person,A large group of people are seen standing by a river and watching it flow.,A person,gold,speeds off across the river.,is then seen riding down the river in a kayak while the people sit on the sides watch.,\"is seen riding along a water pier, followed by other people riding in the water.\",grabs a surfer while skiing across the water.\n2549,anetv_D4Y6DyRD0kY,12595,Group of people are standing on a flat rock watching. A man in canoe,Group of people are standing on a flat rock watching.,A man in canoe,gold,approaching through a hole in the pit of an ice fishing wagon.,enters the fenced in an oil background and talks about his experience.,is paddling through the wavy water.,drives down a snowy hill right behind them.\n2550,lsmdc0011_Gandhi-51856,11358,The three boys are there - - all bigger - - and someone holds a new addition; they all wave. And someone,The three boys are there - - all bigger - - and someone holds a new addition; they all wave.,And someone,gold,\"turns back, and starts down the long, hilly street.\",is walking out the door to his now empty glass on the floor.,escapes into the room and the shadowy figure emerges from the shadows.,surfaces while the car then vanishes in white lie that had a garnish with mud.\n2551,lsmdc0011_Gandhi-51856,11354,The boys bow and leave like boys used to household discipline. The ayah closes the door and we,The boys bow and leave like boys used to household discipline.,The ayah closes the door and we,gold,watch as they stride through.,see wriggling markings on the wall.,hear their chatter at they go down the hall.,see him springing across the stage.\n2552,lsmdc0011_Gandhi-51856,11356,\"Someone is stretching out on the bed, taking up another paper. Someone\",\"Someone is stretching out on the bed, taking up another paper.\",Someone,gold,\"picks the cellphone up from the window with someone, logo, little crystal.\",goes to a narrow gap and stops dead beneath the shelf.,\"comes and sits down on the bed beside him, maneuvering so that she can get at the bandage.\",goes to pick up a tray for an unlit match during the dinner table.\n2553,anetv_5K6oT9zBjVE,11403,He scrubs the sink with the brush creating suds in the water while the facet runs. He,He scrubs the sink with the brush creating suds in the water while the facet runs.,He,gold,continues scrubbing the sink with the brush until the sink is clean.,woman washes her hands with the pouring soap and scrubs them into a sink.,cleans washing and washes his board.,takes the control and sprays the sink.\n2554,anetv_5K6oT9zBjVE,11404,He continues scrubbing the sink with the brush until the sink is clean. He,He continues scrubbing the sink with the brush until the sink is clean.,He,gold,momentarily shows all the tools that they need.,continues rinsing and spray the dog up.,makes a dash for the wood hand and cleans the excess off.,wipes a paper towel around the sink with the water continues to run.\n2555,lsmdc3059_SALT-29097,16934,\"A tiny smile touches someone's lips and he nods. As he turns from the window, he\",A tiny smile touches someone's lips and he nods.,\"As he turns from the window, he\",gold,sees the boy taking the seat across to someone.,\"halts at the reception area with his wife, confidently and rembrandt.\",spots a news report on the monitor.,notices someone sadly lowering a can in front of him.\n2556,lsmdc3059_SALT-29097,16935,\"As he turns from the window, he spots a news report on the monitor. A caption underneath footage of Matveyev\",\"As he turns from the window, he spots a news report on the monitor.\",A caption underneath footage of Matveyev,gold,plays a sign partially.,\"reads, russian president alive.\",logos there seen with text.,reads facebook page.\n2557,anetv_hIQ4Lmazo4g,3949,We pan left to see the ocean again. The left girl,We pan left to see the ocean again.,The left girl,gold,\"swims forward, looking forward over her body.\",jumps slowly on her way with the water.,continues to talk to the camera about in near her left eye.,moves her hair out of her face as she talks to the camera.\n2558,anetv_hIQ4Lmazo4g,3945,We see two little girls in coats playing in the sand. We,We see two little girls in coats playing in the sand.,We,gold,see the product and videos of the kids playing.,see the lady holding the cat.,are about to head to the rooms.,pan left and see the ocean.\n2559,anetv_hIQ4Lmazo4g,3948,The wind blows he left girls hood on to her head. We,The wind blows he left girls hood on to her head.,We,gold,sled along the highway with a white on cargo that were topped by a long tube in the middle of a airport.,see foam jet drivers in the street.,glimmer on his eyes.,pan left to see the ocean again.\n2560,anetv_hIQ4Lmazo4g,3946,We pan left and see the ocean. We,We pan left and see the ocean.,We,gold,see the van right on the street.,return to the girls.,see the rafts and square.,see a man bouncing on the ground with a stick.\n2561,lsmdc3090_YOUNG_ADULT-43961,12179,Someone smiles as someone steps away from the table. Her smile,Someone smiles as someone steps away from the table.,Her smile,gold,frozen in a smile.,gradually fades as she stares at him.,creeping across her face.,falls on his face.\n2562,lsmdc3090_YOUNG_ADULT-43961,12178,Someone jerks his thumb toward the bar. Someone,Someone jerks his thumb toward the bar.,Someone,gold,\"removes it, loosening his tie.\",takes the hammer and knocks it out on the dashboard.,smiles as someone steps away from the table.,\"jumps off her leg, flips through some water, punches her leg and touches her abdomen.\"\n2563,lsmdc3090_YOUNG_ADULT-43961,12180,\"Standing at the bar, someone raises one finger. Someone\",\"Standing at the bar, someone raises one finger.\",Someone,gold,opens the door and points to someone.,sits on the couch.,walks up to someone 'table.,steps away from her.\n2564,anetv_PVdd6E1S0Yc,6782,A lady puts her hair in a bun on the side. The lady,A lady puts her hair in a bun on the side.,The lady,gold,puts pins in her hair on the side.,braids her hair as she finishes her braid.,is finished extra cleaning.,removes her hair from the headrest with one finger.\n2565,anetv_PVdd6E1S0Yc,6783,The lady puts pins in her hair on the side. The lady,The lady puts pins in her hair on the side.,The lady,gold,swings the tassels gel on in the air in front of her.,approach the horse to give a little bow to the fishing boat.,rinses her face in her hands with water.,retrieves her hair and drops it along a ponytail.\n2566,anetv_PVdd6E1S0Yc,2538,A girl is leaning forward and clipping her hair into place. She,A girl is leaning forward and clipping her hair into place.,She,gold,is a servant who stands near a table.,continues clipping it in several different areas.,is waking up behind her eyelashes.,perks up and blows to the window.\n2567,anetv_PVdd6E1S0Yc,2539,She continues clipping it in several different areas. She then,She continues clipping it in several different areas.,She then,gold,lands on how to use the tools to clean the drills.,demonstrates how to use the baton.,plays more chords and replays her movements.,washes and rinses her face.\n2568,anetv_PVdd6E1S0Yc,6784,The lady rinses her face in her hands with water. The lady,The lady rinses her face in her hands with water.,The lady,gold,\"focuses on the sink on the brush and uses her fingers to turn, raising the towel to the sink.\",shows us her brush before using a toothbrush to rinse the sponge.,washes her face with a blue towel then rinses her face again.,put the plastic cream towel on onto the towel and wash off her face.\n2569,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,483,Someone reaches the front and wipes off the headlamp. He,Someone reaches the front and wipes off the headlamp.,He,gold,flings it into the fire.,climbs back into the engine car where someone writes in his journal.,bends down to take a sleeve.,\"laughs with relief, then lowers the phone.\"\n2570,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,479,\"Wearing his broad - brimmed hat, someone leans forward, his hands on a table. In Gettysburg, someone\",\"Wearing his broad - brimmed hat, someone leans forward, his hands on a table.\",\"In Gettysburg, someone\",gold,starts for a coffee mug.,finds someone a stand at the cafe.,strides to the open flap of his tent where someone stands post.,nuzzles into the man with his right hand.\n2571,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,520,\"Inside, someone stabs a vampire with a bayonet attached to the butt of his ax. He\",\"Inside, someone stabs a vampire with a bayonet attached to the butt of his ax.\",He,gold,sets the gun down as it peeks into the basket.,pulls the weapon out then ducks past another lapping off his head.,\"shoots in the narrow alley, then scrambles down through a mature tree.\",leaps from the hole into the pool.\n2572,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,454,\"Now, Union soldiers move in and out of wealthy residences bringing out bulging sacks and armloads of silver items. As we peer down through the clouds, we\",\"Now, Union soldiers move in and out of wealthy residences bringing out bulging sacks and armloads of silver items.\",\"As we peer down through the clouds, we\",gold,see the whole of the ladder lying on its arms.,\"can only see back in someone's chamber, almost furnished in the shape, the system of trees.\",rise to the bank of the weed poles.,find carts loaded with silver twinkling in the sunlight as they travel through the streets.\n2573,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,540,\"Revolvers fall from the dangling man's pockets. As the train speeds alongside a wall, someone\",Revolvers fall from the dangling man's pockets.,\"As the train speeds alongside a wall, someone\",gold,nearly crashes into some jutting rocks.,spots the plane taking off.,skids at the same time.,topples on a cordon and sprints away.\n2574,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,478,\"It slips from his grasp. Bracing one hand on the chest, someone\",It slips from his grasp.,\"Bracing one hand on the chest, someone\",gold,\"hangs on to his shoulders, then slithers back into her.\",scuttles from a strained pillar into the hole.,clenches a fist and softly pounds the chest lid.,pulls a protective hand over his pleading head.\n2575,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,452,Someone turns the silver utensil in his hand. Someone,Someone turns the silver utensil in his hand.,Someone,gold,nimbly grabs a piece up paper and throws it into the pool.,watches him with wide eyes.,returns his attention to the last page.,is floating out of the water.\n2576,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,491,\"Someone stares as the vampires ride off from whence they came. Behind the First Lady, dozens of African - Americans\",Someone stares as the vampires ride off from whence they came.,\"Behind the First Lady, dozens of African - Americans\",gold,emerge from hiding with sacks and baskets.,lean forward and kiss a little.,propped each holding big beads.,are signing autographs on their way.\n2577,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,460,\"Someone faces his old friend who looks down with a thoughtful gaze. In someone's room, someone\",Someone faces his old friend who looks down with a thoughtful gaze.,\"In someone's room, someone\",gold,lies in the small bed in a demure white nightgown.,\"sits down on the bare bed, with his eyes closed.\",reaches up a coffee table and clasps the tightly milk bottle.,sings alone with his family.\n2578,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,508,\"As he looks up, a vampire leaps from the shadows. Grabbing his guns, someone\",\"As he looks up, a vampire leaps from the shadows.\",\"Grabbing his guns, someone\",gold,fires taking him down.,disarms someone and grabs someone's necklace.,finds someone running down a guard track tunnel.,grasps someone by the arms.\n2579,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,473,Light pours in past someone as he stands in the doorway staring at the now dust coated chest. He,Light pours in past someone as he stands in the doorway staring at the now dust coated chest.,He,gold,wanders through the water.,walks out and his fridge stocked with wine and yellow wine.,crosses to it slowly taking out a key.,\"paints purple shape inside in front of him, leaving view resolutely in the envisions.\"\n2580,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,539,\"As he slides head first over the edge, someone grabs his ankle. Revolvers\",\"As he slides head first over the edge, someone grabs his ankle.\",Revolvers,gold,fall from the dangling man's pockets.,stand on the ridge.,is in shallow water.,lets it over to the horse.\n2581,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,458,\"In a factory, someone watches workers melt the silver. Someone\",\"In a factory, someone watches workers melt the silver.\",Someone,gold,joins him at a high railing overlooking the work floor.,and someone exchange a look.,\"silhouetted a faint light at the head of the wall, displaying the fallen railings.\",\"'s slim as someone opens one door, revealing a balding doctor someone.\"\n2582,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,541,\"As the train speeds alongside a wall, someone nearly crashes into some jutting rocks. Someone\",\"As the train speeds alongside a wall, someone nearly crashes into some jutting rocks.\",Someone,gold,lowers himself on one knee.,closes the door behind her.,turns to people in fading fast.,clutches someone's collar.\n2583,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,455,\"As we peer down through the clouds, we find carts loaded with silver twinkling in the sunlight as they travel through the streets. Someone\",\"As we peer down through the clouds, we find carts loaded with silver twinkling in the sunlight as they travel through the streets.\",Someone,gold,runs after the van.,enters his house and peers out a window through his sunglasses.,studies a hydra coin.,approaches the signed national bench.\n2584,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,472,Now the attic door opens. Light,Now the attic door opens.,Light,gold,pours in past someone as he stands in the doorway staring at the now dust coated chest.,puts an arm around his shoulder.,washes over at the door.,\"falls before them, someone into his tent.\"\n2585,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,531,He grabs his partner's weapon and attacks the new arrival knocking the monster over the edge. He,He grabs his partner's weapon and attacks the new arrival knocking the monster over the edge.,He,gold,finds the dog on its - leash and swings around.,dabs a slat on the wall then lays down on the ring velvet.,retakes to reach the local general who was the mowed distract.,tosses the ax back to someone who chops into another.\n2586,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,493,\"They join someone on the path out of Washington. Stepping into the car behind it, someone\",They join someone on the path out of Washington.,\"Stepping into the car behind it, someone\",gold,pulls a cord from the police car.,slides its door shut.,\"picks up the large diamond ring, which framed by the silver press gates against the tower.\",puts his hand through parted lips.\n2587,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,477,\"Gaining confidence, he builds speed until the ax spins in a blur. It\",\"Gaining confidence, he builds speed until the ax spins in a blur.\",It,gold,soars over his head.,slips from his grasp.,soars into the darkness.,stop before someone doubles over.\n2588,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,530,Someone spots a vampire climbing on to the roof. He,Someone spots a vampire climbing on to the roof.,He,gold,points his spear on the side.,spies the car over the sheer side of the country.,holds onto a wooden ladder.,grabs his partner's weapon and attacks the new arrival knocking the monster over the edge.\n2589,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,521,\"He pulls the weapon out then ducks past another lapping off his head. On the roof, someone\",He pulls the weapon out then ducks past another lapping off his head.,\"On the roof, someone\",gold,draws his brains out.,draws two pistols and shoots a vampire.,can see through the case.,climbs up on a wall then turns to someone.\n2590,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,523,\"Baring his fangs, he lunges at someone. Someone\",\"Baring his fangs, he lunges at someone.\",Someone,gold,\"flings him aside, but loses his balance nearly stepping over the roof's edge.\",stares at his blackberry then turns to the group.,\"sits someone, as the crewman pushes him forward.\",\"bows his head, then turns back to someone.\"\n2591,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,516,\"He opens a door behind the monster letting him fall away. As he slides it shut, countless more vampires\",He opens a door behind the monster letting him fall away.,\"As he slides it shut, countless more vampires\",gold,form as he reaches out of the balcony and uncovers his mitt.,hang in the dining room between them.,leap onto the roof.,swarm to the blanketed wall.\n2592,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,503,He takes aim and reaches out to open it. Hands,He takes aim and reaches out to open it.,Hands,gold,deflects a penalty rifle.,\"one out with another one, he sweeps the side of the rippling water.\",grab a cat and slip them through.,burst through the baseboards and grab his ankles.\n2593,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,496,\"From the engine, someone leans out a window and spots several vampires leaping onto the freight cars. He\",\"From the engine, someone leans out a window and spots several vampires leaping onto the freight cars.\",He,gold,strides toward the bar railing and swims around.,lunges back into the car with a smile.,\"continues to discuss the events, all on time.\",periodically makes the mothership.\n2594,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,485,\"Pausing, the President looks up at his old friend. Heading further into the car, a soot - smeared someone\",\"Pausing, the President looks up at his old friend.\",\"Heading further into the car, a soot - smeared someone\",gold,catches someone watching him and pauses with a frown.,walks up to someone.,twists a soldier's weapon at him.,blinks as he looks over at someone.\n2595,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,525,He regains his footing and hurries on to a vampire turning a hand wheel. Sparks,He regains his footing and hurries on to a vampire turning a hand wheel.,Sparks,gold,\"his fingers onto the block, he discards the earpiece and rubs it with his fingers.\",\", he leaps over a seashell column and maneuvers through thick ropes.\",fly from a wheel of the train.,\"is first come from the cottage, grunt a little, but he is n't there any more than someone.\"\n2596,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,474,\"He crosses to it slowly taking out a key. Unlocking it, he\",He crosses to it slowly taking out a key.,\"Unlocking it, he\",gold,takes the key from someone and hands it to someone.,lifts the lid and gazes in.,steps to the edge of the great trailer.,takes out the key then stops.\n2597,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,463,\"He sits close, his back to her. Someone's expression\",\"He sits close, his back to her.\",Someone's expression,gold,softens as he startles her.,\"softens as she stares towards the windows, one hand tucked behind her head.\",\"goes half - anxious, when her smile fades.\",becomes a bit of important love.\n2598,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,501,\"He moves to a shuttered hatch and slides it open, aiming into the darkness. Someone\",\"He moves to a shuttered hatch and slides it open, aiming into the darkness.\",Someone,gold,kicks someone in the face as someone throws his plate into the bin.,steps further into the foyer.,slides it shut then turns to face another shuttered hatch.,emerges from a doctor's house as he hurries downstairs.\n2599,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,462,She keeps her melancholy gaze averted as someone arrives. He,She keeps her melancholy gaze averted as someone arrives.,He,gold,\"sits close, his back to her.\",hugs each other with a defiant smile.,opens the suitcases and pulls out a few bills.,pretends to be tackled by several employees.\n2600,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,497,\"He lunges back into the car with a smile. In a freight car, someone\",He lunges back into the car with a smile.,\"In a freight car, someone\",gold,makes a u - turn and swerves the car playfully into the air.,stands in a car.,loses his frozen amusement.,loads his six - shooter with silver rounds.\n2601,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,467,\"Someone turns over his shoulder to meet her gaze. Wearing a vulnerable frown, she\",Someone turns over his shoulder to meet her gaze.,\"Wearing a vulnerable frown, she\",gold,shuts her eyes and faces her rapist.,takes a deep breath.,rests her chin against his hand.,charges multiple times.\n2602,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,518,Someone gives him a bullet then shakes his hand. Someone,Someone gives him a bullet then shakes his hand.,Someone,gold,is comforting but moved.,tries to grab more threads.,places one hand on someone's heart.,heads back inside as his friend climbs up to the rail car's roof.\n2603,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,504,Hands burst through the baseboards and grab his ankles. Someone falls back and the vampire,Hands burst through the baseboards and grab his ankles.,Someone falls back and the vampire,gold,licks his gondorian foot.,starts to pull him out.,falls out as he drags the knife away.,lies in someone's head.\n2604,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,457,\"Someone eyes the vampire uneasily. In a factory, someone\",Someone eyes the vampire uneasily.,\"In a factory, someone\",gold,\"welds a welding pad, lifts two metal statue onto a pillared tiled table.\",\"drops two small guns to people, then rummages and plods to the doors.\",watches workers melt the silver.,kicks out the penguins from the vault at the pitch.\n2605,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,507,\"Someone limps to a crate. As he looks up, a vampire\",Someone limps to a crate.,\"As he looks up, a vampire\",gold,leaves a sizable operating table.,rest his victim on his squad.,\"removes the leather trunk, but does n't move.\",leaps from the shadows.\n2606,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,500,\"Turning, he raises his weapon. He\",\"Turning, he raises his weapon.\",He,gold,plops down on the couch.,\"moves to a shuttered hatch and slides it open, aiming into the darkness.\",shoots out someone's desk.,taps a powder into his crotch.\n2607,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,459,Someone joins him at a high railing overlooking the work floor. Someone,Someone joins him at a high railing overlooking the work floor.,Someone,gold,\"drags himself inside, leaving a pool of calm calm water streams over him.\",and someone join someone down the stairs in flight.,strolls into someone's study.,faces his old friend who looks down with a thoughtful gaze.\n2608,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,537,\"Someone breaks the ax - handle over his knee. The knife's tip nears someone's face, but the calm vampire\",Someone breaks the ax - handle over his knee.,\"The knife's tip nears someone's face, but the calm vampire\",gold,makes the other face for the man again.,watches on top of the demon's head.,stares down from the saucepan in his back then creeps down the stone stairs.,tilts his head and dodges the blade.\n2609,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,511,\"Arms burst through the wood and hug him from behind. The wounded vampire rises, but someone\",Arms burst through the wood and hug him from behind.,\"The wounded vampire rises, but someone\",gold,struggles to pull himself off.,blocks him with a second sneer.,remains standing without a twelve - inch block on the roof of the contorts swiping a circle of hideous hyperemic blades protruding across someone's,shoots him through the forehead.\n2610,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,538,\"The knife's tip nears someone's face, but the calm vampire tilts his head and dodges the blade. Someone\",\"The knife's tip nears someone's face, but the calm vampire tilts his head and dodges the blade.\",Someone,gold,\"charges someone, but gets knocked off his feet.\",throws out a tool.,holds the bottle in his mouth and helps someone up.,\"falls before him, wielding arms extended around its neck.\"\n2611,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,533,\"Through a veil of wind - swept steam, someone vanquishes yet another vampire. He\",\"Through a veil of wind - swept steam, someone vanquishes yet another vampire.\",He,gold,brings his ax down once more.,\"twists through a man's grasp, shoving him in.\",accidentally turns his head and disappears.,sees a statue outside the gun.\n2612,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,527,\"He goes to finish his enemy but finds only shards of wood on the floor. Forced toward an open door, someone\",He goes to finish his enemy but finds only shards of wood on the floor.,\"Forced toward an open door, someone\",gold,finds it about three feet tall.,braces himself with his ax.,runs to the hanger and takes a piece of parchment paper from the hook.,is used to make a flaming photograph in the tracks.\n2613,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,519,\"Someone heads back inside as his friend climbs up to the rail car's roof. Inside, someone\",Someone heads back inside as his friend climbs up to the rail car's roof.,\"Inside, someone\",gold,stabs a vampire with a bayonet attached to the butt of his ax.,lowers his lower phone and cast his shadow to the wall.,loosens the rope from the driver's seat.,\"climbs up the boat, drops his pants, lets himself shelter outside.\"\n2614,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,495,\"Stepping past, someone pauses, raises his ax and turns. From the engine, someone\",\"Stepping past, someone pauses, raises his ax and turns.\",\"From the engine, someone\",gold,\"watches a truck flying off ahead, then with the attacker sending itself back.\",\"watches the first worker being restrained, then turns to take out his coat.\",leans out a window and spots several vampires leaping onto the freight cars.,watches television as he counts his name.\n2615,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,484,\"He climbs back into the engine car where someone writes in his journal. Pausing, the President\",He climbs back into the engine car where someone writes in his journal.,\"Pausing, the President\",gold,walks up to someone and lifts his eyes.,shakes his head at someone's office.,aims his case and peers at a watch.,looks up at his old friend.\n2616,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,502,Someone slides it shut then turns to face another shuttered hatch. He,Someone slides it shut then turns to face another shuttered hatch.,He,gold,walks out of her room toward the open door.,reaches into his apartment and switches off the bedside light.,puts a seat at the front of his burning house.,takes aim and reaches out to open it.\n2617,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,509,\"Grabbing his guns, someone fires taking him down. He\",\"Grabbing his guns, someone fires taking him down.\",He,gold,puts his back to the wall and aims in either direction.,trips by falling knives.,falls into the enchanted troll.,\"shuts the door, holding someone's wallet and a collection of cousin photos.\"\n2618,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,505,Someone falls back and the vampire starts to pull him out. He,Someone falls back and the vampire starts to pull him out.,He,gold,fires a gun in each hand then scrambles free.,lifts the bar over his head and smashes the sandwich gate on the ground.,loads the bullet into the keypad and he vanishes.,pushes a large vacuum across the passage.\n2619,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,461,\"In someone's room, someone lies in the small bed in a demure white nightgown. She\",\"In someone's room, someone lies in the small bed in a demure white nightgown.\",She,gold,looks desperately for a beat.,glares at the boy.,keeps her melancholy gaze averted as someone arrives.,snuggles down on her bed.\n2620,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,528,\"The vampire tries to bite his neck, but he flips his foe out of the rail car decapitating him as he shuts the door. The vampire's head\",\"The vampire tries to bite his neck, but he flips his foe out of the rail car decapitating him as he shuts the door.\",The vampire's head,gold,falls on the right side.,is still in shape.,is turned open by the tree.,lies at his feet.\n2621,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,526,\"Meanwhile, someone wedges his ax into a ceiling beam and dropkicks a vampire away. He\",\"Meanwhile, someone wedges his ax into a ceiling beam and dropkicks a vampire away.\",He,gold,ducks down and knocks the rider.,turns and looks to someone who stands near his rival.,goes to finish his enemy but finds only shards of wood on the floor.,bows over someone's hand.\n2622,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,534,He brings his ax down once more. The steam,He brings his ax down once more.,The steam,gold,dissipates to reveal someone clutching the ax handle.,falls off its circular keyhole.,steps from the heated pipe.,rises to reveal something on the upper floor of the abandoned building.\n2623,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,522,\"On the roof, someone draws two pistols and shoots a vampire. In slow motion, the monster\",\"On the roof, someone draws two pistols and shoots a vampire.\",\"In slow motion, the monster\",gold,runs up to someone's aid.,flies past him spraying blood.,\"slithers through the debris, leaving someone to someone.\",begins to lush after the beast's head and vanishing.\n2624,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,514,He fights his way free then grabs a huge pistol and blows the monster away. The kickback,He fights his way free then grabs a huge pistol and blows the monster away.,The kickback,gold,is sent crawling to its feet.,\"grabs his wand and holds him on a web and carries it out, leaving the wall behind.\",\"slows to a stop, turning, directly at someone.\",sends someone to the floor beside the dead vampire.\n2625,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,468,\"Wearing a vulnerable frown, she takes a deep breath. Someone\",\"Wearing a vulnerable frown, she takes a deep breath.\",Someone,gold,shakes her head hopelessly.,\"steps up, then lifts her arms opposite.\",listens as someone watches her from her ring.,slumps regretfully then puts his arms around her.\n2626,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,492,\"Behind the First Lady, dozens of African - Americans emerge from hiding with sacks and baskets. They\",\"Behind the First Lady, dozens of African - Americans emerge from hiding with sacks and baskets.\",They,gold,join someone on the path out of washington.,reach a train tower.,fires harmlessly at the ceiling.,go through the cabin.\n2627,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,488,\"Riding ahead, someone passes ms. She\",\"Riding ahead, someone passes ms.\",She,gold,halts close to the first lady who keeps her face hidden.,stands few reaction guests makes their way through the throng.,places her hand against someone's brow.,passes two rows of windowed chairs.\n2628,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,476,\"Someone slowly twirls the weapon in both hands. Gaining confidence, he\",Someone slowly twirls the weapon in both hands.,\"Gaining confidence, he\",gold,creeps up to the center of the bluff towards minas tirith and approaches it.,builds speed until the ax spins in a blur.,tumbles past his cop bike swinging skyward.,lunges back.\n2629,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,469,Someone slumps regretfully then puts his arms around her. The aging couple,Someone slumps regretfully then puts his arms around her.,The aging couple,gold,take a few steps along toward someone's apartment.,\"share a deep kiss, face each other.\",dismounts from the sedan.,lies back on the bed in a warm embrace.\n2630,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,515,The kickback sends someone to the floor beside the dead vampire. He,The kickback sends someone to the floor beside the dead vampire.,He,gold,\"spots someone kneeling beside someone, who hangs on coolly to another lifeboat.\",opens a door behind the monster letting him fall away.,topples on the deck bed and covers the floor with an indignant stare.,guides the captive while the guard lunges in to the clergyman.\n2631,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,506,He fires a gun in each hand then scrambles free. Someone,He fires a gun in each hand then scrambles free.,Someone,gold,crashes onto the motorcycle.,limps to a crate.,picks up a booklet.,finds her footprints on a device.\n2632,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,498,\"Pausing, he looks up. Someone\",\"Pausing, he looks up.\",Someone,gold,\"frowns and gets to his feet, readying his gun.\",smiles weakly as he watches the baby still bored upside down.,takes out his cell phone and writes it quickly.,enter someone house through the night sky.\n2633,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,490,\"Someone draws a long, slim blade and points it at her head. She\",\"Someone draws a long, slim blade and points it at her head.\",She,gold,\"looks down from an envelope, carefully wrapping her hand around her shoulders.\",\"sits through a desk, stroking her dark hair and looking to the next image.\",pushes her hood back a few inches.,puts it back on.\n2634,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,475,\"Tipping it, he holds it firmly in both hands and regards it nostalgically. Someone\",\"Tipping it, he holds it firmly in both hands and regards it nostalgically.\",Someone,gold,slowly twirls the weapon in both hands.,\"swivels his head on a rock, turns off the light and walks towards the face of someone.\",exits a park in front of the cinema and makes it to his desk.,pinches his way into dark eyes.\n2635,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,512,\"The wounded vampire rises, but someone shoots him through the forehead. His guns\",\"The wounded vampire rises, but someone shoots him through the forehead.\",His guns,gold,fall from his grasp as he struggles against the vampire holding him.,run down the street to the minutemen.,stick back at someone.,shine as he sprinkles them all around the vehicle.\n2636,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,494,\"Stepping into the car behind it, someone slides its door shut. Stacks of crates\",\"Stepping into the car behind it, someone slides its door shut.\",Stacks of crates,gold,push the bag soaring skyward.,soar between portion of the building's roof.,fill both sides of the car.,go inside after their family.\n2637,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,529,\"The vampire falls aside revealing someone standing halfway through a hatch, his modified ax in hand. Someone\",\"The vampire falls aside revealing someone standing halfway through a hatch, his modified ax in hand.\",Someone,gold,\"falls down on the ground, turns to the guards, and pulls out a pile.\",spots a vampire climbing on to the roof.,pushes stone to the ground.,\"managed to find someone staring at him, a hands free and the methods of his kill.\"\n2638,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,532,\"He tosses the ax back to someone who chops into another. As someone fends off the attacker, someone\",He tosses the ax back to someone who chops into another.,\"As someone fends off the attacker, someone\",gold,scrambles into the bifrost.,catches the hilt of a calf!,charges at him unconscious and sets him aside.,\"lifts his ax, twirls it, releasing a spray of blood, then slashes off the vampire's head.\"\n2639,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,499,\"Someone frowns and gets to his feet, readying his gun. A lantern\",\"Someone frowns and gets to his feet, readying his gun.\",A lantern,gold,\"dangles from its hinges, as someone goes in.\",takes his money off the hall.,is seen leaning at the edge of the land.,swings from its post over his head as he steps over the wood plank floor.\n2640,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,513,His guns fall from his grasp as he struggles against the vampire holding him. He,His guns fall from his grasp as he struggles against the vampire holding him.,He,gold,fights his way free then grabs a huge pistol and blows the monster away.,reaches the back of the stables and over his head.,races after someone to drag him away.,screams and drops the phone.\n2641,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,453,Someone watches him with wide eyes. The President,Someone watches him with wide eyes.,The President,gold,raises her hands in triumph.,tosses his cigarette into his mouth.,springs up from his seat.,gazes up thoughtfully as he focuses on the gleaming ring beam.\n2642,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,482,It becomes a locomotive speeding along a track in the darkness. Someone,It becomes a locomotive speeding along a track in the darkness.,Someone,gold,brings a hungry wide life effect.,reaches the front and wipes off the headlamp.,offers a plain bump.,falls in passersby into the flag winding and across it.\n2643,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,524,\"Someone flings him aside, but loses his balance nearly stepping over the roof's edge. He\",\"Someone flings him aside, but loses his balance nearly stepping over the roof's edge.\",He,gold,flies off the mailbox.,is dragged to his feet and leaps onto the roof and someone rushes between the giants.,regains his footing and hurries on to a vampire turning a hand wheel.,\"wanders out of the hesitantly vaulted window, knocking the father aside.\"\n2644,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,481,Someone slides his pocket watch over a trajectory marked on a map. It,Someone slides his pocket watch over a trajectory marked on a map.,It,gold,has blood on his forehead.,becomes a locomotive speeding along a track in the darkness.,hits a colonel in a newspaper.,'s the components of pistons against the island.\n2645,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,466,\"Someone sits up, her long hair hanging loose around her shoulders. Someone\",\"Someone sits up, her long hair hanging loose around her shoulders.\",Someone,gold,turns over his shoulder to meet her gaze.,crouches in front of someone's tie.,wriggles her from the bandage and buries her face in her gloved arms.,stomps in behind her and swings his head back as she charges.\n2646,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,464,\"Someone's expression softens as she stares towards the windows, one hand tucked behind her head. She\",\"Someone's expression softens as she stares towards the windows, one hand tucked behind her head.\",She,gold,takes the phone from her purse and places it back atop her desk.,pulls up a long leather bound journal and kisses it.,caresses his nose playfully.,rolls her head to face him.\n2647,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2435,480,\"In Gettysburg, someone strides to the open flap of his tent where someone stands post. Someone\",\"In Gettysburg, someone strides to the open flap of his tent where someone stands post.\",Someone,gold,walks away from the tracks.,slides his pocket watch over a trajectory marked on a map.,munches open a chicken cutter and dine.,raise the venetian blind and disappear under one shadow.\n2648,lsmdc0041_The_Sixth_Sense-67887,3728,They look down at the ring. Someone,They look down at the ring.,Someone,gold,moves to the back desk where someone comes out.,sticks his thumb aside.,hangs upside down with a side sigh.,holds her steady gaze gravely.\n2649,lsmdc0041_The_Sixth_Sense-67887,3731,He places it down and takes a much needed seat. Someone,He places it down and takes a much needed seat.,Someone,gold,calls over someone to the airport.,\"grabs him from the bike, which slowly spreads to his windshield.\",looks over to find someone standing at his desk where a birthday present sits on his tabletop.,hurtle back and forth through the room past the shelves.\n2650,lsmdc0041_The_Sixth_Sense-67887,3730,He is carrying an antique bench in his arms. He,He is carrying an antique bench in his arms.,He,gold,greets the paintings on a table.,places it down and takes a much needed seat.,\"wears a straw hat with a half - bottle, and two nervous hostages.\",is flinging sand when a tsunami of energy flings ribbon around him and throws cup at him.\n2651,anetv_iAWXaWo82u4,3606,We see the person standing next to the dog and washing him with the shampoo. A person,We see the person standing next to the dog and washing him with the shampoo.,A person,gold,waves their hand in front of the dog.,goes after him as they play pool to each other.,sprays the nose of the dog and speaks.,spray the dog with a toothbrush.\n2652,anetv_iAWXaWo82u4,3605,A person is holding a dog covered in suds and holding a bottle of shampoo in a yard. We,A person is holding a dog covered in suds and holding a bottle of shampoo in a yard.,We,gold,are brushing the dogs dog.,see the person standing next to the dog and washing him with the shampoo.,float all the way to the end of the dog's leash blowing the dog off.,dog starts running around the yard and fiance gets by its tail.\n2653,anetv_iAWXaWo82u4,3607,A person waves their hand in front of the dog. The camera pans and we,A person waves their hand in front of the dog.,The camera pans and we,gold,see another dog laying on the ground.,see a pianist dressing outside.,see a man get out of the water and water away.,see the person.\n2654,lsmdc3057_ROBIN_HOOD-27455,7464,\"Rubbing his eyes, he sees someone and someone asleep on the floor nearby. Someone\",\"Rubbing his eyes, he sees someone and someone asleep on the floor nearby.\",Someone,gold,buries her hands in her bucket.,\"puts on glasses, then chokes back the tears as she enters the kitchen.\",lays his hands on the backs of the soldiers.,rises and peers outside.\n2655,lsmdc3057_ROBIN_HOOD-27455,7465,Someone rises and peers outside. Someone,Someone rises and peers outside.,Someone,gold,arrives home and leaves a sleeping bag dangling inside over his shoulder at the entrance hall.,carries hopeful horses down the alley.,\"sees his driver running down a mat, crossing the plaza unto a long carpet in the corner of his room.\",hurriedly heads back into the cabin and wakes his sleeping friends.\n2656,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8571,\"In the daytime, at a bustling military camp, someone opens a box filled with silver blades. She\",\"In the daytime, at a bustling military camp, someone opens a box filled with silver blades.\",She,gold,joins a few soldiers at another.,pours liquor into it.,remembers an sight of someone standing against all the employees.,carries a small limb's hand out of the jotun of the skyscrapers.\n2657,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8577,Someone comes out of hiding and faces her squarely standing about ten yards away. Someone,Someone comes out of hiding and faces her squarely standing about ten yards away.,Someone,gold,dries at her last call.,rips a silver chain with someone's miniature sword from her neck.,someone and someone rise from their seats.,\"lays her cup against someone's chest holding her hand, looking off.\"\n2658,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8576,She grabs a nearby rifle and heads after the vampire. Someone,She grabs a nearby rifle and heads after the vampire.,Someone,gold,comes out of hiding and faces her squarely standing about ten yards away.,\", a large, central bowl.\",grabs a cup and was dropped by.,\", someone hisses.\"\n2659,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8573,\"Someone walks through the camp. Clutching her left arm and breathing heavily, she\",Someone walks through the camp.,\"Clutching her left arm and breathing heavily, she\",gold,drops her bag and fumbles off matches.,struggles to hold up some hints.,lets the idly bat away.,notices a crate of garlic.\n2660,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8581,\"The infantry commander shout, Charge! and his men engage the enemy with silver bayonets. A line of cannons fire and a number of explosions\",\"The infantry commander shout, Charge! and his men engage the enemy with silver bayonets.\",A line of cannons fire and a number of explosions,gold,rip the creature from the ground and watch an spread swap orange flames on the ground.,attempt to take off a white hook on the striped wall.,rip out the entire village.,erupt across the battlefield.\n2661,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8574,\"Clutching her left arm and breathing heavily, she notices a crate of garlic. Chatting with the commander, someone\",\"Clutching her left arm and breathing heavily, she notices a crate of garlic.\",\"Chatting with the commander, someone\",gold,spots someone peeking around a tent.,turns her gaze on the lobster.,glances towards his son's ledge then straightens his hat.,gets released back watering bushes.\n2662,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8570,\"Someone and someone look at someone. In the daytime, at a bustling military camp, someone\",Someone and someone look at someone.,\"In the daytime, at a bustling military camp, someone\",gold,screams on the director.,opens a box filled with silver blades.,sits at the end of a sewer and sleeps with his back against a swaying body of water and focuses on his surroundings.,stands on a podium between two atvs.\n2663,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8572,\"Our view raises from their tent, ascending a flagpole for a glimpse of the entire camp as runaway slaves arm the Union soldiers with the silver - outfitted weaponry. Someone\",\"Our view raises from their tent, ascending a flagpole for a glimpse of the entire camp as runaway slaves arm the Union soldiers with the silver - outfitted weaponry.\",Someone,gold,limps to the side of the ship and peers into a covered ships and drops where pale smudged sizes others into their tracks.,walks through the camp.,rides the vehicle back to release it.,signs loudly as they ride across the lawn.\n2664,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8582,A line of cannons fire and a number of explosions erupt across the battlefield. One,A line of cannons fire and a number of explosions erupt across the battlefield.,One,gold,wins and more rules.,rips a vampire apart.,attempts to escape to attack the sinking site.,\"goes to the ice cabinet, which lights out over someone.\"\n2665,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8575,\"Chatting with the commander, someone spots someone peeking around a tent. She\",\"Chatting with the commander, someone spots someone peeking around a tent.\",She,gold,sets off a sheet of map flanked by his teacher.,grabs a nearby rifle and heads after the vampire.,falls into another range.,shoots the clouds full in the dust.\n2666,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8580,\"She shoots someone and the vampire lands on her back, the silver sword dangling from a hole in her head. Now, a soldier\",\"She shoots someone and the vampire lands on her back, the silver sword dangling from a hole in her head.\",\"Now, a soldier\",gold,gets dragged to the base with her rifle putted into her fist and rips her arm away.,throws a dagger at the goblin's throat.,tosses a young woman down onto a platform then swings inches to the third girl's height.,loads a silver ball into a cannon.\n2667,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2641,8578,\"Someone rips a silver chain with someone's miniature sword from her neck. As the vampire charges, someone\",Someone rips a silver chain with someone's miniature sword from her neck.,\"As the vampire charges, someone\",gold,drops the chain down the barrel of her gun.,wrestles the disarms someone.,draws like a attached shield nailed to someone's chest.,blocks the charge and decides to come down from the ducks.\n2668,anetv_oijpI0s_R04,11428,A title loads and we see the man's feet as he dances. A title loads and we,A title loads and we see the man's feet as he dances.,A title loads and we,gold,see someone back on the jeep.,see a man close the cart.,see the entire successful pole skateboarding event.,see the ladies feet as she dances.\n2669,anetv_oijpI0s_R04,11424,The colorful title screen is seen. Two people in a room,The colorful title screen is seen.,Two people in a room,gold,start dancing along with spectators.,throw balls at a stones.,dance slowly to the back.,are performing several instruments around a gym.\n2670,anetv_oijpI0s_R04,11426,A title screen loads and we see the man dance alone. We,A title screen loads and we see the man dance alone.,We,gold,see the judge putting a glove on someone.,see a low waterfall in the yard.,see a title and the lady in the green room dancing alone.,see close ups of the geese doing dance.\n2671,anetv_oijpI0s_R04,11425,Two people in a room dance slowly to the back. A title screen loads and we,Two people in a room dance slowly to the back.,A title screen loads and we,gold,see a man playing squash in a soccer room.,see smoke zoom from the scene up on a swollen mouth.,see five men fighting.,see the man dance alone.\n2672,anetv_7vgokK5_Pvc,18243,A couple of boys prepare to run toward a swing. They,A couple of boys prepare to run toward a swing.,They,gold,\"take off, jumping on the swings.\",run after the other stick and run up to avoid the ball.,walk across a bridge.,start tearing off the boxing floor.\n2673,anetv_7vgokK5_Pvc,17885,Two boys are standing in a yard. They,Two boys are standing in a yard.,They,gold,take off running and jump onto a swing set.,climb up a tree using the rope in front of the men and performing dodgeball.,pick up a crossbow from a trolley and run over.,begins having fun to jump off and walking towards each other.\n2674,anetv_7vgokK5_Pvc,17886,They take off running and jump onto a swing set. They,They take off running and jump onto a swing set.,They,gold,begin to head down the horse and skip.,kick the birdie around the court.,fly off the swings onto the ground.,go down the slope into the grass.\n2675,anetv_7vgokK5_Pvc,18244,\"They take off, jumping on the swings. They\",\"They take off, jumping on the swings.\",They,gold,fly into the big pile.,jump to the top of the mat.,get their bags back around.,\"swing high, then let go, landing on the ground.\"\n2676,lsmdc3029_GREEN_ZONE-13495,15892,\"He hops in place, turning away from them. Someone\",\"He hops in place, turning away from them.\",Someone,gold,leads someone along the ground.,looks down at the page.,holds his earnest gaze.,\"thrusts his hands in the air, still chewing.\"\n2677,anetv__Wq1OGf0MHM,13049,A group of kids and adults are by a river. They,A group of kids and adults are by a river.,They,gold,\"pass past them to enter, followed by people.\",get into rafts and float down stream.,has their turn in several different areas.,are engaged in a game of soccer.\n2678,anetv__Wq1OGf0MHM,13050,They get into rafts and float down stream. They,They get into rafts and float down stream.,They,gold,switch the right oars though to stay on their hands.,have lots of people as he reaches on it to the waters.,paddle through the rapids and falls.,get up and enjoy some time in the water.\n2679,anetv_ERmsX91_7V4,17443,The man is shown in several clips running down and scoring a basket. The man,The man is shown in several clips running down and scoring a basket.,The man,gold,takes the third arrow and throws it over the basket sending the individual away.,gradually hits the ball back and forth.,continues to shoot hoops over and over again.,spins around and throws the discus.\n2680,anetv_ERmsX91_7V4,17442,A person is seen running onto a court and shooting a basketball. The man,A person is seen running onto a court and shooting a basketball.,The man,gold,kicks them off continues throwing a ball around.,hit a ball back and forth against two indoor spectators.,places more rounds on the camera as he talks.,is shown in several clips running down and scoring a basket.\n2681,anetv_UFVeN-ThOwU,14223,The camera briefly pans left to show a drying rack with items in it. The girl,The camera briefly pans left to show a drying rack with items in it.,The girl,gold,makes a face at the camera.,begins when the carelessly pokes different clothing inside.,shows up the other product to clean the kitchen.,paints more supplies board while smiling to the camera.\n2682,anetv_UFVeN-ThOwU,13704,A little girl is standing at the sink washing a knife. The camera,A little girl is standing at the sink washing a knife.,The camera,gold,shows the dishes she has already washed.,pans to pans salt wax stairs across the screen.,is there to empty the chair.,is shown cutting the wooden curling game.\n2683,anetv_UFVeN-ThOwU,13705,The camera shows the dishes she has already washed. She,The camera shows the dishes she has already washed.,She,gold,begins and explains how to remove the socks.,is beginning to wring the furniture and uses the sink.,holds the umbrella close to her chest and speaks to the camera.,talks and yells at the camera while soaping up the sponge.\n2684,anetv_UFVeN-ThOwU,14222,A small girl uses a sponge to wash a knife at a kitchen sink while occasionally talking. The camera briefly pans,A small girl uses a sponge to wash a knife at a kitchen sink while occasionally talking.,The camera briefly pans,gold,left to show a drying rack with items in it.,to a group of ladies on the bed.,around the room and shows a piece of paper up front of the sink.,to show another person using a mop to properly clean the sink.\n2685,anetv_UFVeN-ThOwU,13706,She talks and yells at the camera while soaping up the sponge. She,She talks and yells at the camera while soaping up the sponge.,She,gold,pours herself in a shower and picks it up and uses it over the dish.,grabs the sponge and begins to peel it.,spraying a hose with soap and soap while rubbing it.,\"dropped the knife, picked it up and stepped back up to the sink.\"\n2686,anetv_UFVeN-ThOwU,14224,The girl makes a face at the camera. The camera pans,The girl makes a face at the camera.,The camera pans,gold,left to show one wolf and a young girl cheer for their lower tubes.,to reveal its surroundings as she devours the shadows and puts cream on top of her sleeping well.,left to focus on the drying rack again.,over to show several her glazed angles.\n2687,anetv_76tyabobb_0,10907,He bites the parents ice cream cone. The parent,He bites the parents ice cream cone.,The parent,gold,adjusts the cone for the child.,cuts him off with a hug.,edges his lips to listen.,share a dainty pat and chips away from the chips.\n2688,anetv_76tyabobb_0,10908,The parent adjusts the cone for the child. The parent,The parent adjusts the cone for the child.,The parent,gold,wipes ice cream from the child's face.,asks a man about to dance.,struggles to free the bag.,grows on his hands and lays them on the docks.\n2689,anetv_76tyabobb_0,10906,A messy kid is eating an ice cream cone. He,A messy kid is eating an ice cream cone.,He,gold,hits the ball and shoots tips over the ice.,bites the parents ice cream cone.,is looking for a bite from some toothpaste.,is really wiping the rinsed surface of a cup.\n2690,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6964,10206,Lights shine from the Durmstrang galleon on the frozen lake. Excited students,Lights shine from the Durmstrang galleon on the frozen lake.,Excited students,gold,pour the earth into the parched air.,gather in the entrance to the great hall.,\"enter someone go, joining them.\",look distraught as they take off their green breastplate.\n2691,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6964,10208,\"The girls wear long gowns, the boys dress robes. In his room, someone\",\"The girls wear long gowns, the boys dress robes.\",\"In his room, someone\",gold,gets on the edge of the platform.,\"goes from a box pantry, then takes a broom and begins to smile as he plays.\",adjusts his tatty robe.,rubs his shoulder on an old red silk package.\n2692,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6964,10209,\"In his room, someone adjusts his tatty robe. He\",\"In his room, someone adjusts his tatty robe.\",He,gold,shakes snowy's hand.,saunters over to a table and digs a folded bolt on a nearby table.,reaches over and pulls the the cuff to someone's.,stares at himself in a mirror.\n2693,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6964,10210,He stares at himself in a mirror. Someone,He stares at himself in a mirror.,Someone,gold,comes in wearing a smart black robe and a white bow tie.,\"sees someone, turning on his tv, as the kidnapper draw closer.\",is in aback but fair - eyed.,sprays the window with his brown hair and rubs his eyes.\n2694,lsmdc1028_No_Reservations-83234,5409,\"As someone flicks through the album, she finds a peacock feather like the one she was playing with shortly before the car crash. She\",\"As someone flicks through the album, she finds a peacock feather like the one she was playing with shortly before the car crash.\",She,gold,sighs and her eyes well with tears.,jumps up from a branch and stares off.,breaks out of reach.,turns back the key then straightens.\n2695,lsmdc1028_No_Reservations-83234,5410,She sighs and her eyes well with tears. Someone,She sighs and her eyes well with tears.,Someone,gold,\"looks after him imploringly, then falls off on the snow.\",picks him up and twirls him.,ties the bike around her thigh.,goes down to someone's apartment.\n2696,anetv_W5g1IIAOZqs,9415,\"People wears lanyards and watch around the exhibits, while a man explains a person holding two discs. Other people\",\"People wears lanyards and watch around the exhibits, while a man explains a person holding two discs.\",Other people,gold,ride the camels as a person surf in the sun.,sits in a eating area while reading and texting.,take off their shirts and put on a board.,shows and more of the men riding horses on the beach past an audience.\n2697,anetv_W5g1IIAOZqs,9414,People gather in an indoor exhibition. A man and a robot,People gather in an indoor exhibition.,A man and a robot,gold,are preparing to play curling rink.,are walking under a table.,play ping pong in the exhibition.,are riding their bikes.\n2698,lsmdc1038_The_Great_Gatsby-87328,13029,They head towards the Queensboro Bridge. They,They head towards the Queensboro Bridge.,They,gold,plunge deep into the river.,hurry on the utility line.,\"drive alongside a convertible, driven by a white chauffeur, with two black couples in the back drinking champagne.\",hide in the tailor's restaurant.\n2699,lsmdc1038_The_Great_Gatsby-87328,13028,Someone holds up his business card to the motorcycle cop who's riding alongside them. The cop,Someone holds up his business card to the motorcycle cop who's riding alongside them.,The cop,gold,\"is in a black - muscle suit, holding a pumpkin - tipped hat at his feet.\",pulls off a hat and gives him someone drag of the chain around his neck.,puts one right ear up and signals out to be removed.,peels off to the right.\n2700,anetv_CG-itBlFOzc,18287,A woman is sitting down at a table. They,A woman is sitting down at a table.,They,gold,are playing hockey and talking into the camera.,are knitting something in their hands.,are making food into tables in front of the camera.,rides on the bell handles.\n2701,anetv_CG-itBlFOzc,14392,The old woman is sitting on a chair and knitting. The woman,The old woman is sitting on a chair and knitting.,The woman,gold,is showing her knitted item.,takes out the coat and tying it.,walks around punching and looked about something.,uses an electric razor in a bald line.\n2702,anetv_CG-itBlFOzc,18288,They are knitting something in their hands. They,They are knitting something in their hands.,They,gold,riders meet the people who take off to a high five.,begin doing karate moves on the wooden floor.,lay what they have knitted down onto a table.,hand is on the table and the candle is pinned down.\n2703,anetv_dgXPoqHrKRM,17173,Skiers walk and stand on skis at the bottom of the hill at of a ski resort. Kids,Skiers walk and stand on skis at the bottom of the hill at of a ski resort.,Kids,gold,stop the cars going at the edge and landing!,ride on inflatable tubes down lanes on a ski slope.,is in his kayak up a hill of rocks holding a fish in his hands.,vampires are shown going and landing.\n2704,anetv_dgXPoqHrKRM,17174,Kids ride on inflatable tubes down lanes on a ski slope. Snowboarders and skiers,Kids ride on inflatable tubes down lanes on a ski slope.,Snowboarders and skiers,gold,relay snowboard on a mountain on a snowboard.,are shown skiing down a mountain mountain.,ride down ski runs while other groups sit on the ski lift.,ride down the narrow mountain with life vests.\n2705,anetv_8H3Wy96BwHM,713,We then see kids riding bmx bikes cut with scenes of other things. We,We then see kids riding bmx bikes cut with scenes of other things.,We,gold,see kids talking to the camera.,\"are gathered sizes drawn for them, one goes at a cameraman.\",pans to a car in the small bend.,of cardio as coordinated screen appears as a lady leans down and stands at the edge.\n2706,anetv_8H3Wy96BwHM,715,We see a coach standing with kids. We,We see a coach standing with kids.,We,gold,see two boys running in slow motion.,see the ending title screen.,see another coach standing with kids.,see the outline of the saddle and the camera opening.\n2707,anetv_8H3Wy96BwHM,716,We see another coach standing with kids. We,We see another coach standing with kids.,We,gold,see several scores and the person shots.,see a man rollerblading several locations.,see kids pass the finish line.,\"kick the ball, put a shirt on and we start the flips, flip, and skip.\"\n2708,anetv_8H3Wy96BwHM,714,We see a gate open and kids start riding. We,We see a gate open and kids start riding.,We,gold,see people in a large forest field and then a group of boys begin fighting.,see the woman put a can in his hand.,see the title screen screen.,see a coach standing with kids.\n2709,anetv_8H3Wy96BwHM,712,We see numbers slots on asphalt. We then,We see numbers slots on asphalt.,We then,gold,see the screen of the roofing machine.,see kids riding bmx bikes cut with scenes of other things.,see another man trying to solve the rubix cube.,see shots of a tree practice in their house when it arrives.\n2710,anetv_8H3Wy96BwHM,718,We see the emblem on the screen with kids sitting on their bikes. We then,We see the emblem on the screen with kids sitting on their bikes.,We then,gold,see the camera on getting in the car.,see the close screen.,see people in the woods again.,see people sitting in tubes.\n2711,anetv_JO_CW4PR3I8,7441,He puts a towel through the case. He,He puts a towel through the case.,He,gold,has an entire pack on.,begins to shine his shoe with the towel.,removes the curl and wipes them with a towel.,puts the pasta to the pan.\n2712,anetv_Sx3NHkPp3Jo,3015,An athletic man is seen standing ready before a long track and making a long jump into a sand pit. Another man,An athletic man is seen standing ready before a long track and making a long jump into a sand pit.,Another man,gold,is seen making the same jump in a sand pit while several others jump below him.,is shown standing near another horse while several shots of poles are shown followed by the people walking around.,takes his turn running down and ends by speaking to others.,walks in frame with him talking.\n2713,anetv_Sx3NHkPp3Jo,14194,A man is running down a track by a field. He,A man is running down a track by a field.,He,gold,jumps over a rope on a way down a field.,throws a ball up into the air.,runs over circles holding his score.,takes a huge leap into a sand pit.\n2714,anetv_Sx3NHkPp3Jo,14195,He takes a huge leap into a sand pit. He then,He takes a huge leap into a sand pit.,He then,gold,walks away looking unhappy.,runs backward and goes up the track.,runs off onto the rink.,uses a toy board to drop a ball into the goal.\n2715,anetv_Sx3NHkPp3Jo,3016,Another man takes his turn running down and ends by speaking to others. Several more runners,Another man takes his turn running down and ends by speaking to others.,Several more runners,gold,are shown as well as several runners as well as falling off the area.,are shown showing the game while a player thumbs up to congratulate and takes a picture as well.,are seen and end with a man bending down and cheering.,are thrown to the ground and help themselves up.\n2716,anetv_s_H9cTp2tT8,1447,Many upscale people are seen watching on the sidelines as the horse game carries on and a winner is chosen. The people then,Many upscale people are seen watching on the sidelines as the horse game carries on and a winner is chosen.,The people then,gold,arrive late at night dressed up and posing for pictures.,cheer herself up as well as several stunts doing tricks and enjoying the competition.,begin cutting themselves along and clapping their hands.,jump in new shoes performs more tricks and stretch to rope all along a band.\n2717,anetv_wd7W8NTi_58,16536,More people are seen riding down while others watch on the side. Men,More people are seen riding down while others watch on the side.,Men,gold,ride around it a long time as the coach gets over the top and turns around.,people ride around bikes in a hill surrounded by other people falling down.,sit down and speak to one another.,continue to capture a game of fooseball as well as others laughing.\n2718,anetv_wd7W8NTi_58,11783,Names are shown on a list and leads into a person riding down a river on a kayak while others watch. More people,Names are shown on a list and leads into a person riding down a river on a kayak while others watch.,More people,gold,are shown doing flips and tricks on tubes and performing tai land.,\"continue rafting down the river while a group of people watch, watching slowly handing down their watch.\",are then seen riding around a track on the field as well as climbing up and down.,are seen riding down the river and ends with people sitting inside at tables and smiling to the camera.\n2719,anetv_wd7W8NTi_58,16535,A close up of paper is shown followed by a person riding down a river in a kayak. More people,A close up of paper is shown followed by a person riding down a river in a kayak.,More people,gold,are seen swimming in the water and pointing held up in the water as well as continuing to play.,are seen standing off away in the distance while performing various tricks.,are seen riding skis with their legs moving back and fourth.,are seen riding down while others watch on the side.\n2720,anetv_TZ9JbvClnZA,4266,A close up of a bowling lane is seen with a man standing in front. The man,A close up of a bowling lane is seen with a man standing in front.,The man,gold,points at the camera.,begins walking around the hoop in front followed by several shots of the man walking away.,throws a ball down the lane and hits several pins.,bounces a ball over and over several times.\n2721,anetv_TZ9JbvClnZA,4267,The man throws a ball down the lane and hits several pins. He finally,The man throws a ball down the lane and hits several pins.,He finally,gold,\"stumbles back in security, then falls to his knees.\",walks back up the lane.,ends up throwing his racket and walking from the crowd.,bounces and hits the ball.\n2722,lsmdc1027_Les_Miserables-6229,1200,Someone looks chastened and walks out of the front door. Someone,Someone looks chastened and walks out of the front door.,Someone,gold,waves to his younger brother and carries him along an intersecting walkway.,stands in his room playing the boom.,knits his fingers together.,comes over carrying a stool.\n2723,anetv_D18b2IZpxk0,12140,The camel walks as the woman leans forward. And hand,The camel walks as the woman leans forward.,And hand,gold,covers the lens as the harness is shown.,bends and helps on right foot.,is right to make the grass near the way of the big slope.,grabs the camel and holds it up again.\n2724,anetv_D18b2IZpxk0,12139,A woman is shown riding a camel past pyramids in Egypt. The camel,A woman is shown riding a camel past pyramids in Egypt.,The camel,gold,comes to a halt with the camel jumping.,walks as the woman leans forward.,is guiding her orange horse as she walks away.,ride the camel around at the end.\n2725,anetv_AWXdK-ix3gQ,13563,He moves his arms and spins himself round and round on a set of bars. He,He moves his arms and spins himself round and round on a set of bars.,He,gold,\"rotates the band and continues speaking, breaking all the other.\",continues spinning around trying to contain himself from laughing with one another and ends by walking away.,flips around the body to remove more lens panels.,does handstands and flips and jumps off to finish his routine.\n2726,anetv_AWXdK-ix3gQ,13562,A gymaist stands holding is arm up and jumping onto a beam. He,A gymaist stands holding is arm up and jumping onto a beam.,He,gold,is then seen beyond an air of beautiful ocean underwater.,moves his arms and spins himself round and round on a set of bars.,\"tries to break up the blue beam, then flips and does the cartwheels again and again walking away as he goes.\",gets up while gymnastics door behind him.\n2727,lsmdc0038_Psycho-67400,6311,\"The store is in darkness, only the glow from the back room spilling in. With camera placed with its back to the street door, we\",\"The store is in darkness, only the glow from the back room spilling in.\",\"With camera placed with its back to the street door, we\",gold,\"move, hands folded in scarf, and park.\",can see the distant tiny figure of someone seated and waiting in the back room beyond.,watch two men in each rides drinking beer.,see a shot of a disdainful - progress machine in the street along with the odd octagonal grid.\n2728,lsmdc0038_Psycho-67400,6307,\"Someone stares at her, frowns in concern over her very real anxiety, goes to the phone, dials operator. He\",\"Someone stares at her, frowns in concern over her very real anxiety, goes to the phone, dials operator.\",He,gold,smiles at him and in the glass doorway.,\"unfolds the numbers, exits with more money, and answers the phone.\",starts for the door.,covers the receiver in his head.\n2729,lsmdc0038_Psycho-67400,6310,\"Someone turns slowly until, in silhouette, we see his profile, his chin lowered furtively as he looks over his shoulder in the direction of the house. The store\",\"Someone turns slowly until, in silhouette, we see his profile, his chin lowered furtively as he looks over his shoulder in the direction of the house.\",The store,gold,begins to describe the same again.,is empty and the boy is humming once again.,\"is in darkness, only the glow from the back room spilling in.\",door is closed.\n2730,lsmdc0038_Psycho-67400,6308,He starts for the door. Someone,He starts for the door.,Someone,gold,shoves someone down the ski toward her.,follows after him into the store.,leads the way up towards the garage and knocks at the door.,appears to be shocked.\n2731,lsmdc0038_Psycho-67400,6309,Someone follows after him into the store. He,Someone follows after him into the store.,He,gold,finds tyler balancing on his butt.,\"walks a marble anteroom around quickly furnished mats, followed by a key hanging at his dresser.\",\"pauses halfway down, turns, puts his hands on her arms.\",passes another maitre d 'way.\n2732,lsmdc0038_Psycho-67400,6312,\"With camera placed with its back to the street door, we can see the distant tiny figure of someone seated and waiting in the back room beyond. The tiny figure\",\"With camera placed with its back to the street door, we can see the distant tiny figure of someone seated and waiting in the back room beyond.\",The tiny figure,gold,jumps up and runs all the way from the back room down the aisle of hardware and comes into a big head.,\"returns to a shivers glow near the portrait before he and someone stand there, shaking something.\",\"is a green casket, moving up and down the cemetery, through a long, narrow passageway towards a dark lit crate.\",stretches on his own sword as he ventures toward someone.\n2733,anetv_YIYZHQUOtnA,14970,\"Then, young people wearing green t - shirts are successful playing bowling. After, girls\",\"Then, young people wearing green t - shirts are successful playing bowling.\",\"After, girls\",gold,walk along an ice court without speaking to the camera.,try to get the words caught during the blows.,play bowling who throw all the pins with the bowling bowl.,run and take the balls to hit a ball to a field.\n2734,anetv_YIYZHQUOtnA,14971,\"After, girls play bowling who throw all the pins with the bowling bowl. The winners of the competition\",\"After, girls play bowling who throw all the pins with the bowling bowl.\",The winners of the competition,gold,\"show while people films the cities and repeat, with the sticks dropping off the ground.\",are shown for there walking in the end.,\"are happy together scenes of the girl, waiving at the girls as she kicks the racket.\",receive closed envelopes and trophies.\n2735,anetv_YIYZHQUOtnA,14969,\"A groups of students exercise and cheers on a competition, then boys wearing red t - shirt throw bowling balls and throw all the pins and celebrates. Then, young people wearing green t - shirts\",\"A groups of students exercise and cheers on a competition, then boys wearing red t - shirt throw bowling balls and throw all the pins and celebrates.\",\"Then, young people wearing green t - shirts\",gold,are successful playing bowling.,run and lob a ball on the ground and run towards each other in the field with another stick.,make out with their clothes on the floor.,throw and falls in the competition between the black people in the competition.\n2736,lsmdc3034_IDES_OF_MARCH-3012,11861,A man photographs a woman nearby with his camera pointed in someone's direction. A news van,A man photographs a woman nearby with his camera pointed in someone's direction.,A news van,gold,carries a music box under a cell cradled outside the family's bedroom park.,sits parked at the curb.,rolls down a street as music plays on the back streets.,pulls up when they reverse to the tables.\n2737,lsmdc3034_IDES_OF_MARCH-3012,11865,Someone enters a dark stairwell and climbs up past the first landing. She,Someone enters a dark stairwell and climbs up past the first landing.,She,gold,stops halfway to the second one and looks around.,\"peers through another gap, then looks behind and driving through a domed bridge.\",is grabbed from behind by the bed and tosses it to his knees.,\"steps up into the leather frame, obscured by the large blast of indian vegetable salesman displayed in the corner.\"\n2738,lsmdc3034_IDES_OF_MARCH-3012,11866,She stops halfway to the second one and looks around. Someone,She stops halfway to the second one and looks around.,Someone,gold,watches from the tracks.,wears a gray robe.,climbs up the driver's line.,emerges from the shadows.\n2739,lsmdc3034_IDES_OF_MARCH-3012,11864,\"Now pale, hazy light hangs low behind the Cincinnati skyline. Someone\",\"Now pale, hazy light hangs low behind the Cincinnati skyline.\",Someone,gold,lashes out some of a crouched zombie in a tree trunk.,runs across the changing office.,braces and hauls the move into a slim seat.,enters a dark stairwell and climbs up past the first landing.\n2740,anetv_un6VqJYUpDo,14610,A man is holding a mop over a yellow bucket. A man,A man is holding a mop over a yellow bucket.,A man,gold,dips the red pipe with a water hose.,takes the bag and uses his hands when he walks up with a bucket.,begins spraying the mop behind him.,is wiping a window with a towel.\n2741,anetv_un6VqJYUpDo,2977,A product with a secure click lock is advertised. The man window,A product with a secure click lock is advertised.,The man window,gold,is showing pain in someone's face as he moves away from the window.,is opened on her entire bed.,demonstrates the use of the secure click lock product when washing a window.,is pulling smoke rings from the bottom.\n2742,anetv_un6VqJYUpDo,14611,A man is wiping a window with a towel. He,A man is wiping a window with a towel.,He,gold,rides to the back dock while grimacing.,begins to squeegee the window with a squeegee.,puts the towel in his shoes and is cleaning off a clothes clean.,puts a towel around the table.\n2743,anetv_un6VqJYUpDo,2976,\"The history of the squeegee is briefly presented as well as a preferred package system of window washing products and a man using those products. Products involving window washing, such as a window washer, squeegee soap and a squeegee\",The history of the squeegee is briefly presented as well as a preferred package system of window washing products and a man using those products.,\"Products involving window washing, such as a window washer, squeegee soap and a squeegee\",gold,is shown explaining this process and gasoline walking out.,\", installed some orb, used unbuttoning the backseat.\",\"are shown, as well as a window washer using those products when washing a window.\",is seen from a foam faucet.\n2744,lsmdc1057_Seven_pounds-97787,19359,\"In his motel bathroom, someone lies fully clothed in a bath that is too short for him. He tries to wriggle down, but his head\",\"In his motel bathroom, someone lies fully clothed in a bath that is too short for him.\",\"He tries to wriggle down, but his head\",gold,pulls back to reveal a bracelet.,remains well above the level of the bath.,has fallen on top of it.,shuffles worriedly for the towel.\n2745,lsmdc1057_Seven_pounds-97787,19366,The doctor goes to someone. He,The doctor goes to someone.,He,gold,addresses the nurse cleaning his ear.,shakes someone's hand and leaves.,'s toting a book.,whips fondly at lacrosse.\n2746,lsmdc1057_Seven_pounds-97787,19363,\"Looking down forlornly at the documents before her, someone sighs and opens her Filofax. She\",\"Looking down forlornly at the documents before her, someone sighs and opens her Filofax.\",She,gold,\"finishes her shot, walking her towards traffic.\",holds out a piece of chinese paper in front of her.,takes out someone's business card and studies it.,furrowed she draws a few papers.\n2747,lsmdc1057_Seven_pounds-97787,19360,\"He tries to wriggle down, but his head remains well above the level of the bath. Someone\",\"He tries to wriggle down, but his head remains well above the level of the bath.\",Someone,gold,picks up the broken bottle from the top and taps it.,reaches his right horn and shoots the other around.,is at home working at her kitchen table.,stops the door as he picks up a chair and points a gun at the guard.\n2748,lsmdc1057_Seven_pounds-97787,19358,\"Someone cuts off his brother. In his motel bathroom, someone\",Someone cuts off his brother.,\"In his motel bathroom, someone\",gold,takes the closet doors and finds him.,sits across from him in his bed.,produces the video feed.,lies fully clothed in a bath that is too short for him.\n2749,lsmdc1057_Seven_pounds-97787,19355,She slams the door on someone and locks it. Someone,She slams the door on someone and locks it.,Someone,gold,someone points to the side of someone's face.,is less aware that someone's allowed; as he can.,\"pauses outside, facing the door dejectedly.\",lifts down a pouch and strolls over to someone.\n2750,lsmdc1057_Seven_pounds-97787,19364,She takes out someone's business card and studies it. A doctor in a white coat,She takes out someone's business card and studies it.,A doctor in a white coat,gold,enters a hospital ward.,steps out of the house at a zoo party.,looks around a behind an officer chatting with a group of young men.,is stretching and revealing a long - black needle.\n2751,lsmdc1057_Seven_pounds-97787,19357,\"After a moment, he leaves the modest clapboard house. Someone\",\"After a moment, he leaves the modest clapboard house.\",Someone,gold,climbs back into a shower.,weighs his brother's information.,cuts off his brother.,pulls up the stairs in the early morning light.\n2752,lsmdc1057_Seven_pounds-97787,19356,\"Someone pauses outside, facing the door dejectedly. After a moment, he\",\"Someone pauses outside, facing the door dejectedly.\",\"After a moment, he\",gold,leaves the modest clapboard house.,gets out of bed and leaves with someone.,\"unbuttons the front door, leaving her in the shadows.\",\"hurries into the office, packing up locks.\"\n2753,lsmdc1057_Seven_pounds-97787,19361,Someone is at home working at her kitchen table. Documents,Someone is at home working at her kitchen table.,Documents,gold,work in a kitchen.,see someone on the phone.,are stacked on the small table.,stands up and continues packing.\n2754,lsmdc1057_Seven_pounds-97787,19362,\"She scribbles a number out on her pad and encircles another number. Looking down forlornly at the documents before her, someone\",She scribbles a number out on her pad and encircles another number.,\"Looking down forlornly at the documents before her, someone\",gold,\"looks over at someone, confused.\",limps back to the bag.,sighs and opens her filofax.,allows a faint smile.\n2755,anetv_civPiYFf2vE,15483,The man vacuums stairs and a car interior. We see the vacuum and the man,The man vacuums stairs and a car interior.,We see the vacuum and the man,gold,vacuuming the floor as they talk.,puts his eye face in the face.,spreading paint new tires.,\"vacuums the ceiling, couch, blinds and others.\"\n2756,anetv_civPiYFf2vE,15484,\"We see the vacuum and the man vacuums the ceiling, couch, blinds and others. We\",\"We see the vacuum and the man vacuums the ceiling, couch, blinds and others.\",We,gold,see tents and credits.,see the man empty the canister and put the vacuum in a closet.,see several tattooed men at the end of the video.,\"see mopping, the vacuum is inserted, and digs all towing the cooker in front of the vacuum.\"\n2757,anetv_pYUqRy9Ujaw,15059,Man is wearing a back wetsuit doing windsurf in a lake. man,Man is wearing a back wetsuit doing windsurf in a lake.,man,gold,is in a canoe surfing the waves.,is windsurfing in a lake doing tricks.,is talking in front of a storm to keep the camera.,is standing in front of a kite in the arena.\n2758,anetv_pYUqRy9Ujaw,15060,Man is windsurfing in a lake doing tricks. he man windsurfing,Man is windsurfing in a lake doing tricks.,he man windsurfing,gold,appears in a big busy treadmill with the gear and kayaking.,kayaking doing tricks on the lake and making tricks with an iron board.,in front of a car.,say hi to the camera.\n2759,lsmdc3001_21_JUMP_STREET-170,3287,\"As the undercover cops shake their heads, a rapid series of explosive and disturbing images fill our view. He\",\"As the undercover cops shake their heads, a rapid series of explosive and disturbing images fill our view.\",He,gold,leaves him staring down at someone standing straight to his own jutting thug.,looks at his own touch then above his head.,\"put the plump automatic pictures, then mix some.\",writes and writes on the board.\n2760,lsmdc3001_21_JUMP_STREET-170,3286,\"The coach's head becomes an ice cream cone. As the ice cream melts, someone\",The coach's head becomes an ice cream cone.,\"As the ice cream melts, someone\",gold,holds it out for a moment then falls out of the trapped line.,sticks his tongue out.,presses the dice to the end.,\"approaches the same line and takes it hard, staying low in its place.\"\n2761,lsmdc3001_21_JUMP_STREET-170,3282,Someone gives a spastic nod. Our view rapidly,Someone gives a spastic nod.,Our view rapidly,gold,extends a group of men.,switches between the two giggling cops.,sweeps someone's track leg from a bench.,rolls down the window.\n2762,lsmdc3001_21_JUMP_STREET-170,3288,He pushes an auditioning kid off stage. He,He pushes an auditioning kid off stage.,He,gold,is a college dancer in his bedroom.,autographs an american woman.,kids moves onto a stage.,signals to the keyboardist then struts and twirls proudly across the small stage.\n2763,lsmdc3001_21_JUMP_STREET-170,3283,The coach's eyebrows crawl down his face and form a mustache. Someone,The coach's eyebrows crawl down his face and form a mustache.,Someone,gold,\"removes the bandage, then adjusts his tie.\",leads someone to a luxurious living room.,sees a robotic furry kitty head on the coach's shoulders.,sprints across the mall toward the wheelhouse.\n2764,lsmdc3001_21_JUMP_STREET-170,3284,Someone sees a robotic furry kitty head on the coach's shoulders. Someone,Someone sees a robotic furry kitty head on the coach's shoulders.,Someone,gold,shuts his eyes shut.,stares out from a magnifying mirror.,blows on the coach.,gazes at the key then faces himself.\n2765,lsmdc1047_Defiance-91675,10417,\"Later in the snowy woodland, he comes into a clearing holding his horse by its bridle. He\",\"Later in the snowy woodland, he comes into a clearing holding his horse by its bridle.\",He,gold,runs his foot through the muddy sea.,spreads its arms above his head.,smiles again with others and horses.,strokes its white muzzle and with a deep sigh takes his revolver out of its holster.\n2766,lsmdc1047_Defiance-91675,10418,\"Morosely, someone watches the people elbowing each other out of the way. Elsewhere in the forest commander people\",\"Morosely, someone watches the people elbowing each other out of the way.\",Elsewhere in the forest commander people,gold,stand behind the camera and watch inside the frozen truck as they turn towards the prow of the ship.,ride ahead of the column of soldiers who are walking behind them.,give shots to the sheriff's pirate supply.,are walking past two stewards behind a back - won vest.\n2767,lsmdc1047_Defiance-91675,10419,\"Elsewhere in the forest commander people ride ahead of the column of soldiers who are walking behind them. At their base camp, someone\",Elsewhere in the forest commander people ride ahead of the column of soldiers who are walking behind them.,\"At their base camp, someone\",gold,shovels a breeze - 17 echo through a hidden gate across the street.,lies on a horse and is heaving slumped over a boulder.,checks his pockets.,gulps back some vodka.\n2768,anetv_UzdI8PLRiXg,13858,A tool is being shown by a man holding it. The metal,A tool is being shown by a man holding it.,The metal,gold,demonstrates how to outdoors the carpets.,stand on the handles of the metal.,is used to sharpen a knife in front of him.,cut the steamer's claws while pausing to adjust the view.\n2769,anetv_UzdI8PLRiXg,13857,A towel and glass are on a table next to a piece of foam and metal. A tool,A towel and glass are on a table next to a piece of foam and metal.,A tool,gold,is shown on the floor with a blue razor.,is being shown by a man holding it.,is shown on the lines where the rag is removed.,is seen with compact at the bottom of a sponge.\n2770,anetv_I6nuNE-Qibw,4219,The credits of the clip are shown. A person,The credits of the clip are shown.,A person,gold,is seen playing a cartridge.,kicks two sumo wrestlers up a wall into a mansion.,prepares colorful treats in a kitchen.,is cutting a dart on a dart board.\n2771,anetv_I6nuNE-Qibw,4220,A person prepares colorful treats in a kitchen. The person,A person prepares colorful treats in a kitchen.,The person,gold,puts sugar and sugar above the cake.,pours water in bowls and adds food coloring.,cuts to and how to peel a potato using a caution tool.,then continues helping the others.\n2772,anetv_I6nuNE-Qibw,10539,A woman then mixes several ingredients into several poles and punching out a shape. She,A woman then mixes several ingredients into several poles and punching out a shape.,She,gold,takes the bag again and continues wrapping public between them.,grabs the cut and continues boiling down afterwards.,pushes out more cookies and showing them to the camera.,wakes and pitches her down while she continues to hit it across it all over her nails.\n2773,lsmdc3036_IN_TIME-16121,4984,He strides out of the office and someone punches a code into the keypad. Someone,He strides out of the office and someone punches a code into the keypad.,Someone,gold,tries to hurl him into a telephone golf club.,aims his gun at the keypad.,looks back at the valet car.,turns a corner and turns back.\n2774,anetv_Oa26_SgrY8w,2462,A newscaster is talking in front of a video screen. A game of curling,A newscaster is talking in front of a video screen.,A game of curling,gold,is played in different pools.,is seen racing with a man in black.,is being engaged in by two teams.,shows a man sitting in his stilts.\n2775,anetv_Oa26_SgrY8w,9953,A news man is sitting in a news room with an image of the Budweiser logo behind him. Then several people,A news man is sitting in a news room with an image of the Budweiser logo behind him.,Then several people,gold,make scuba movements with the ice cream and a woman stands in the corner.,are outside in a snowy park packing up their decorations.,are seen speaking in stuffed smoking while a man speaks to the camera and flashes on the camera.,\"are shown indoors, playing a sweeping game.\"\n2776,anetv_Oa26_SgrY8w,2463,A game of curling is being engaged in by two teams. the members,A game of curling is being engaged in by two teams.,the members,gold,continue to run around and dive in the field by watching.,interview with the camera after the game.,congratulate each other and congratulate each other on the tennis court.,are shown to win a game of polo.\n2777,anetv_Oa26_SgrY8w,9954,The players are interviewed sporadically as they play. A hockey game scene,The players are interviewed sporadically as they play.,A hockey game scene,gold,claps after the competition team routine.,footage shows the woman filming the game.,plays in between the players.,is shown for a few seconds.\n2778,lsmdc3038_ITS_COMPLICATED-17556,12548,Someone falls out of his chair. Someone,Someone falls out of his chair.,Someone,gold,\"aims the laptop at someone, then grabs his robe.\",sighs and hugs her as they fall.,lifts someone up off the bridge.,\"leans out of view, glances on to the window and runs a hand down her face.\"\n2779,lsmdc3011_BLIND_DATING-665,2001,\"Someone comes out of the house on the second floor. The top of the high steps, someone\",Someone comes out of the house on the second floor.,\"The top of the high steps, someone\",gold,perches on the railing.,creeps toward someone behind her.,puts a few feet away.,enters the auditorium.\n2780,lsmdc0028_The_Crying_Game-63849,6953,She seems to be in a sweet narcotic haze. She,She seems to be in a sweet narcotic haze.,She,gold,\"is confused, slowly - - through it as people are excited about her play.\",\"turns to the department of root crops, and looks around.\",reaches out her hand and strokes his.,is wearing a narrow black dress.\n2781,lsmdc0028_The_Crying_Game-63849,6949,Someone walks slowly toward the door. She,Someone walks slowly toward the door.,She,gold,opens the door and comes up toward someone and looks comfortable.,\"looks at him, standing up.\",approaches the door and gives him a joke.,clutches a framed balcony with her hand.\n2782,lsmdc0028_The_Crying_Game-63849,6940,\"Someone looks up at her building, but the lights are off in her flat. He\",\"Someone looks up at her building, but the lights are off in her flat.\",He,gold,looks up as someone faces into the street.,\"turns and sees someone walking toward him, a bottle in her hand.\",pushes up from his seat and has him shifting on his feet.,puts it on someone's side.\n2783,lsmdc0028_The_Crying_Game-63849,6944,She points weakly to a cabinet through the open door of the bathroom. He,She points weakly to a cabinet through the open door of the bathroom.,He,gold,climbs out and closes the window again.,leaps onto the vent pipe.,goes and gets the pills.,looks back over from someone's eyes.\n2784,lsmdc0028_The_Crying_Game-63849,6950,\"She looks at him, standing up. He\",\"She looks at him, standing up.\",He,gold,shakes his hand and backs away.,walks slowly toward her.,\"slips, he regards them for a moment, then stops as he walks toward her.\",looks down out of window to see her closing behind.\n2785,lsmdc0028_The_Crying_Game-63849,6954,She reaches out her hand and strokes his. Someone,She reaches out her hand and strokes his.,Someone,gold,smiles at him.,turns to the lantern offscreen along the wall and looks around.,holds up one arm.,sits down on the bed.\n2786,lsmdc0028_The_Crying_Game-63849,6951,He walks slowly toward her. He,He walks slowly toward her.,He,gold,looks her and walks away.,stares at her as he enters.,\"kisses her, on the lips.\",watches her for a moment.\n2787,lsmdc0028_The_Crying_Game-63849,6946,She drinks from the whiskey bottle. She,She drinks from the whiskey bottle.,She,gold,\"puts her tray down, squints, and leaves.\",\"walks around the room, drinking, then sits down.\",sips her soda then opens her mouth.,spits incredulously at it.\n2788,lsmdc0028_The_Crying_Game-63849,6941,She opens her eyes slowly. He,She opens her eyes slowly.,He,gold,\"looks back at him, then at someone.\",stares into a basket with an inquiring stare.,breaks his stare and collapses.,walks in holding her.\n2789,lsmdc0028_The_Crying_Game-63849,6948,\"She stares straight ahead, the bottle clutched in her hands between her knees. Someone\",\"She stares straight ahead, the bottle clutched in her hands between her knees.\",Someone,gold,\"takes the necklace from her hand, looks around.\",pushes a hydra gun out.,walks slowly toward the door.,\"opens his mouth but smiles, looks at it.\"\n2790,lsmdc0028_The_Crying_Game-63849,6943,She takes a large slug from a bottle of whiskey. She,She takes a large slug from a bottle of whiskey.,She,gold,takes her hair out of her eyes.,points weakly to a cabinet through the open door of the bathroom.,continues to drink the basil pasta.,\"closes the counter, lays it aside with one finger, works, and covers the document as well.\"\n2791,lsmdc0028_The_Crying_Game-63849,6952,\"He kisses her, on the lips. We\",\"He kisses her, on the lips.\",We,gold,someone steps inside.,\", they enter someone's suite.\",see the photograph with the soldier's smiling face.,\"softly leaves from someone's face, he drops his fist on his lap.\"\n2792,lsmdc0028_The_Crying_Game-63849,6945,He goes and gets the pills. She,He goes and gets the pills.,She,gold,keeps his eyes on the keyboard as he sits by someone who's standing beside him.,sees something in the fireplace.,drinks from the whiskey bottle.,comes up behind him and opens one.\n2793,lsmdc0028_The_Crying_Game-63849,6947,Then she looks at someone. She,Then she looks at someone.,She,gold,\"nods, her voice hushed.\",gets to her feet.,shakes her head at the question marks.,\"stares straight ahead, the bottle clutched in her hands between her knees.\"\n2794,lsmdc0028_The_Crying_Game-63849,6942,He walks in holding her. She,He walks in holding her.,She,gold,\"moves toward it, wanting to fill all up with that comment.\",pulls off the bags.,takes a large slug from a bottle of whiskey.,leans back down standing by the table.\n2795,lsmdc0028_The_Crying_Game-63849,6955,Someone sits down on the bed. Someone,Someone sits down on the bed.,Someone,gold,peeks into his shoe.,reaches into his pocket and proffers it.,takes off his shoes and hurries into the house.,is lying back on it.\n2796,anetv_SfFjpnTKG7s,16115,Athletes runs on an outdoors track of a field and pole vault during practice. An athlete,Athletes runs on an outdoors track of a field and pole vault during practice.,An athlete,gold,is released and judges congratulates someone.,steps forward and raises his hands above the diving board.,runs and pole vaults during an olympic competition in a stadium.,is running across the track and the clip is gesturing to his players.\n2797,anetv_Q43BuVI2r-s,1266,Two men are walking down planks with one rolling out paper and putting tape across. Other men,Two men are walking down planks with one rolling out paper and putting tape across.,Other men,gold,are in gear standing on the side of the roof holding pumpkins.,are peeling the pumpkins from the floor.,are chopping vegetables on the floor.,lay down a green sheet of paper and continue taping down the paper.\n2798,anetv_cyJAifECfH0,9772,The man then bends down and lifts the weights over his head. He,The man then bends down and lifts the weights over his head.,He,gold,continues to hold the weights up and throws them down in the end while walking away.,stands up and begins strumming the guitar and looking to the camera.,ties he legs and goes to speak to the camera.,puts his hands up his head and intervenes with the cat watching them.\n2799,anetv_cyJAifECfH0,9771,A man is seen bending down before a heavy set of weights. The man then,A man is seen bending down before a heavy set of weights.,The man then,gold,begins moving his hands back and fourth.,begins lifting up weights and laying down on the mat.,bends down and lifts the weights over his head.,begins plastering his weight as he does it.\n2800,lsmdc1059_The_devil_wears_prada-98862,7764,\"Someone waits at the hospital, looking sheepish. Later she\",\"Someone waits at the hospital, looking sheepish.\",Later she,gold,leads a waiter for a restaurant.,\"is with someone, who's lying in bed with a broken leg and some cuts and bruises.\",stands at a bustling stairway marked in slinky white leather suits.,looks at her clock sister.\n2801,lsmdc1059_The_devil_wears_prada-98862,7763,Someone is hit by a taxi and rolls onto its bonnet. Someone,Someone is hit by a taxi and rolls onto its bonnet.,Someone,gold,\"waits at the hospital, looking sheepish.\",struggles for control and hurls it at someone.,watches running down both sides of the city.,walks for the plane.\n2802,lsmdc1059_The_devil_wears_prada-98862,7765,\"Later she is with someone, who's lying in bed with a broken leg and some cuts and bruises. A man\",\"Later she is with someone, who's lying in bed with a broken leg and some cuts and bruises.\",A man,gold,holds a hand over a jewelry box then shows us a fly.,'s fedora adjusts his shoulders and someone creeps downstairs.,pulls off one of of his boots and strokes the dog.,comes in with a dinner tray.\n2803,anetv_lj-VovhJcPA,2580,\"A man shows a bag with a cigarette and then it is show next of papers. After, the man\",A man shows a bag with a cigarette and then it is show next of papers.,\"After, the man\",gold,places heated polish on a coffee cup with one finger.,begins playing the guitar on the screen and shows it to the screen.,is in a backyard explaining to the reporter.,is trimming a piece of wood with a wet brick.\n2804,anetv_lj-VovhJcPA,2582,\"People are in a park walking, a person with a pet and mother with a child. A man and a woman\",\"People are in a park walking, a person with a pet and mother with a child.\",A man and a woman,gold,talk with the reporter.,are in a yard talking about camels holding a dogs on their backs.,are standing by water with a black woman behind some trees watching.,\"are make a snowslide and jump people, to about four more, children running from marley from behind.\"\n2805,anetv_lj-VovhJcPA,2581,\"After, the man is in a backyard explaining to the reporter. People\",\"After, the man is in a backyard explaining to the reporter.\",People,gold,\"are in a park walking, a person with a pet and mother with a child.\",are alone in the living room.,is showing a young man at the hair shop.,guy spits a couple of food into his mouth.\n2806,anetv_BBRNbo8c8gA,5452,\"A boy performs numerous backflips and forward flips, going high into the air. The kids celebrate together, then we\",\"A boy performs numerous backflips and forward flips, going high into the air.\",\"The kids celebrate together, then we\",gold,see a scene of a cartoon rabbit doing flips into a pool.,see the man riding a board.,see the frozen remnants of a crisp town.,see white water skiing.\n2807,anetv_BBRNbo8c8gA,19141,More and more people do flips in the middle of a circle of people. People,More and more people do flips in the middle of a circle of people.,People,gold,continue and look off into the distance as the dust clears.,watch as the kids continue to flip around and cheer with one another.,stand in the middle of the crowd.,are interviewed to the camera.\n2808,anetv_BBRNbo8c8gA,5451,A group of young men are gathered in a large room. A boy,A group of young men are gathered in a large room.,A boy,gold,cuts a wheelbarrow of potatoes and places them on the food.,pulls a stick and uses his hands to control it.,falls from the ground onto the ground.,\"performs numerous backflips and forward flips, going high into the air.\"\n2809,anetv_BBRNbo8c8gA,19140,People are seen smiling to the camera and lead into people performing tricks. More and more people,People are seen smiling to the camera and lead into people performing tricks.,More and more people,gold,are seen swimming around the pool moving their arms around and smiling.,walk down the field and end with the people fighting and laughing.,are shown sitting in bikes and celebrating in different locations.,do flips in the middle of a circle of people.\n2810,anetv_15vwVfNA99o,10820,She continually speaks to nobody as she eats. She,She continually speaks to nobody as she eats.,She,gold,\"stands up and grabs her purse, continuing to talk and laugh as she leaves.\",cheerfully frowns and laughs a bit more.,accepts it which judges the lobby.,begins to describe an island of food paste.\n2811,anetv_15vwVfNA99o,10819,A woman is sitting at a table in a fast food restaurant while eating. She continually,A woman is sitting at a table in a fast food restaurant while eating.,She continually,gold,continues to talk about the table and how to do it.,\"pours the ingredients into the large bowl, then resumes her work.\",speaks to nobody as she eats.,completes everything in the background.\n2812,anetv_v0cihSAXQbI,8271,A large crowd is seen sitting around a field followed by a man running with a javelin and throwing it across the field. The same throw,A large crowd is seen sitting around a field followed by a man running with a javelin and throwing it across the field.,The same throw,gold,is repeated several times in slow motion.,is shown again in slow motion and it ends with the instrument being tagged again as well as it slowly being kicked up.,is shown again in slow motion followed by the man waving to the crowd.,is shown several times on a field as well as picking up the phone and then the race is shown again on another run.\n2813,anetv_v0cihSAXQbI,16774,The man briefly stops running. The man then,The man briefly stops running.,The man then,gold,pulls the string and turns around.,begins brushing his long legs again.,throws the sphere across the field.,moves off back to the camera.\n2814,anetv_v0cihSAXQbI,16773,A man stands on a track field a sphere in his hand. the man,A man stands on a track field a sphere in his hand.,the man,gold,starts running with the sphere.,grasps the frost off the piece of wood.,throws his arms over his head.,jumps back to retrieve the disc.\n2815,anetv_v0cihSAXQbI,8272,The same throw is shown again in slow motion followed by the man waving to the crowd. Several more athletes,The same throw is shown again in slow motion followed by the man waving to the crowd.,Several more athletes,gold,kick him up before completing his throw as well as many other men gathered on the sidelines.,walk all across the jungle enthusiastically.,take flips and scoring again and score for the game.,are shown throwing the pole followed by them waving to the camera.\n2816,lsmdc1014_2012-79424,17047,\"Someone looks up hopefully as someone pulls open a round hatch. On the control bridge, people\",Someone looks up hopefully as someone pulls open a round hatch.,\"On the control bridge, people\",gold,watch horrified as members of the crowd outside plunge off the boarding platform into the pit.,are standing on the bridge's roadway.,take a huge leap into the water below.,spin clumsily and lower in the water.\n2817,anetv_xr64cSwpNOM,6336,A man competes in a strong man competition and stands on a log chopping it with an ax in hand. The man finally,A man competes in a strong man competition and stands on a log chopping it with an ax in hand.,The man finally,gold,takes the skateboard and runs across the track.,takes the big guy out of his blue jacket.,slices the slices of the pumpkin in half.,splits the log below his feet.\n2818,anetv_xr64cSwpNOM,6337,The man finally splits the log below his feet. A second man in the competition in vest,The man finally splits the log below his feet.,A second man in the competition in vest,gold,comes down the steps using a dagger.,leans forward to retrieve his darts at the far end.,picks up and drops a large spherical weight on a tire repeatedly.,begins lobbing a ball and hitting the stick to the boy who also holds the ball in his.\n2819,anetv_pmn8_4zKo7I,8515,They are just sitting out relaxing blowing smoke. Another man with a camera,They are just sitting out relaxing blowing smoke.,Another man with a camera,gold,has seen the man exhaling a hose toward his face.,sees and we can't see her.,walks by while they sit chatting.,is in there's a animated people that they can't see them.\n2820,anetv_pmn8_4zKo7I,8516,Another man with a camera walks by while they sit chatting. Its a nice day,Another man with a camera walks by while they sit chatting.,Its a nice day,gold,moves by the tree.,to just relax and have a smoke outside with friends.,passes over and then sits down watching television.,is easy and unrelenting explanation in the warehouse at night.\n2821,anetv_pmn8_4zKo7I,8514,A man is outside smoking a cigarette with his friend. They,A man is outside smoking a cigarette with his friend.,They,gold,to the bottom of a window and starts walking away in the building.,are just sitting out relaxing blowing smoke.,picture of the match actually has drawn picture.,of the individuals are interviewed about a game of curling as well as interview and games of polo.\n2822,lsmdc0019_Pulp_Fiction-57068,7516,\"Pumpkin sees someone sitting in his booth, holding his wallet, briefcase next to him. Someone\",\"Pumpkin sees someone sitting in his booth, holding his wallet, briefcase next to him.\",Someone,gold,\"looks down, nods, and beams.\",holds the knife and takes a swig.,drops his wallet in the bag.,\"stalls to the ambulance, someone swings the car as he sprints up and down the alley.\"\n2823,anetv_aq41GgfAlDo,16842,A man is seated on a bench in a park. He,A man is seated on a bench in a park.,He,gold,is playing an old accordian.,is then shown backstage playing the large bass playground.,stands in a tai chi back and june tai.,\"hits the ball back and forth in front of a television, talking about his experience.\"\n2824,anetv_aq41GgfAlDo,16843,He is playing an old accordian. He,He is playing an old accordian.,He,gold,looks up from a different ceiling where someone records.,pushes it closed and open as he plays on the keyboard.,succeeds in putting him by himself.,mounts the drums before spinning it into a dim rhythm.\n2825,anetv_yJezvcXU4YE,4801,He throws darts at a dart board on the wall. A woman,He throws darts at a dart board on the wall.,A woman,gold,uses the darts holding the cover.,stands next to him along with a dart.,stands next to him watching.,turns darts to see variations of the darts.\n2826,anetv_yJezvcXU4YE,4802,A woman stands next to him watching. A man,A woman stands next to him watching.,A man,gold,in a red shirt is standing on the sidelines.,walks up and pulls the dart out of the board.,pushes a woman on his motorbikes.,crashes his implement with the pressurized spray.\n2827,anetv_yJezvcXU4YE,4800,A man in a black vest is standing in a room. He,A man in a black vest is standing in a room.,He,gold,holds down a board and begins grabbing it.,plays a few notes followed by playing on the drums.,starts using a rug on the block.,throws darts at a dart board on the wall.\n2828,anetv_sV4vBuWGJng,2893,She shows how to section the lady's hair and cuts the hair in a slanting manner. She,She shows how to section the lady's hair and cuts the hair in a slanting manner.,She,gold,\"talks to the camera, has the hair trimmed and wants it to take off.\",explains how this technique helps in creating extra volume in the crown of the head.,wraps her hands in her hair.,makes the suitcases with both hands.\n2829,anetv_sV4vBuWGJng,2891,The video shows a tutorial from Howcast on how to create volume in a haircut. A lady hair dresser wearing a green shirt and pants,The video shows a tutorial from Howcast on how to create volume in a haircut.,A lady hair dresser wearing a green shirt and pants,gold,demonstrates how to remove iron from a sweater while an older man spins in the background.,\", begins brushing her hair and cutting the screen.\",is demonstrating a haircut on a model wearing a black tank top.,stops at a table and proceeds about a use of polish on nail polish.\n2830,anetv_sV4vBuWGJng,2892,A lady hair dresser wearing a green shirt and pants is demonstrating a haircut on a model wearing a black tank top. She,A lady hair dresser wearing a green shirt and pants is demonstrating a haircut on a model wearing a black tank top.,She,gold,lifts a barbell up to leave the hand above.,continues showing talking various ballet but the tricks.,jumps with her feet on a mat in front of him.,shows how to section the lady's hair and cuts the hair in a slanting manner.\n2831,anetv_DDwBAbeGejE,9,Woman is sitting in studio giving the news. a person,Woman is sitting in studio giving the news.,a person,gold,is in a yard sweeping dry leaves.,takes a violin off her hand.,is doing a cold north into a hot pool in front of a person.,'s working in a rigorous swerve again.\n2832,anetv_DDwBAbeGejE,10,A person is in a yard sweeping dry leaves. old woman,A person is in a yard sweeping dry leaves.,old woman,gold,walks on the grass with a noose.,is wearing a red and gold costume playing in a salon.,is being interviewed and is talking to the camera in a living room.,is using a leaf blower a little black wooden base.\n2833,anetv_UBDcmeET6ys,18079,Individuals are exercising on various equipment. A male and a female,Individuals are exercising on various equipment.,A male and a female,gold,are dancing in the crowd facing the camera.,takes a white drip from in the sink.,walk onto the stage.,move back and forth.\n2834,anetv_t8_XO-nWaYg,14139,They both finish almost at the same time and solve the Rubic's cube. They,They both finish almost at the same time and solve the Rubic's cube.,They,gold,proudly show off their skills in the camera.,\"sometimes consume the cube to more, then the rest of the ring is prepared with white numbers.\",\"drummers move on the top of the puzzle and begin large timer again, the video are back and he tapes it back again.\",then turn the bucket off.\n2835,anetv_t8_XO-nWaYg,14138,Another small boy comes in there and takes a look at the camera. The teenagers,Another small boy comes in there and takes a look at the camera.,The teenagers,gold,play fast and happy.,begins bowling on a court this is previous 5 times played.,are competing against each other to solve the cube.,walk around at mnemonic as a group blocks someone's.\n2836,anetv_t8_XO-nWaYg,14137,There are two teenage boys playing and solving the Rubic's cube. Another small boy,There are two teenage boys playing and solving the Rubic's cube.,Another small boy,gold,takes a birdie out of the bag that holds him around.,is shaving the client's face and seen working all along the sides of the table.,comes in there and takes a look at the camera.,gives a meeting who is talking to someone about how to play matches.\n2837,anetv_slQuWp_rMTE,16749,A man and child are canoeing down a river. The canoe,A man and child are canoeing down a river.,The canoe,gold,rides past the city and waves surfing in the ocean.,speeds towards the surfers takes a mother out of the water.,heads under a bridge.,is sped up and someone.\n2838,anetv_slQuWp_rMTE,13577,A child is sitting in front of them. A bicycle,A child is sitting in front of them.,A bicycle,gold,is placed in front of someone's bicycle.,jumps up and back on the bars.,moves forward to remove the strap of the baby.,is leaning against a railing on a bridge.\n2839,anetv_slQuWp_rMTE,16750,The canoe heads under a bridge. As the camera follows it,The canoe heads under a bridge.,As the camera follows it,gold,leads we see someone coming one areas to his left.,reveals a bicycle parked by the bridge's railing.,\"often behind, someone look on in anticipation.\",\"'s knee, the hum of the shining goes.\"\n2840,anetv_slQuWp_rMTE,13576,A person is rowing a canoe down a river. A child,A person is rowing a canoe down a river.,A child,gold,is riding a board down the river.,is sitting in front of them.,is paddling downstream with his hand.,\"is standing in her path, moving up and down in the water.\"\n2841,anetv_UeH0TCDAbSU,8987,She then shows how to iron the sleeve. She then,She then shows how to iron the sleeve.,She then,gold,\"removed the shirt, revealing some additional fabric.\",applies the wax to the bottom of the ski.,flips the shirt over.,demonstrates how to wear it down.\n2842,anetv_UeH0TCDAbSU,8983,She then rearranges the shirt. Next she,She then rearranges the shirt.,Next she,gold,has her leg away from the couch and starts to explain that he is beginning to do the haircut.,pulls out the mixing needle and begins licking it pushing back and forth.,\"puts her shoes on, then picks up the pink gear and ties them on her back.\",demonstrates how to iron the shirt.\n2843,anetv_UeH0TCDAbSU,8986,Next she flips over the shirt and places the sleeve down. She then,Next she flips over the shirt and places the sleeve down.,She then,gold,goes off to rub the toothpaste.,takes several seconds to unhook the soaked shirt.,picks up the package and washes it.,shows how to iron the sleeve.\n2844,anetv_UeH0TCDAbSU,8985,She then shows how to get the harder creases out. Next she,She then shows how to get the harder creases out.,Next she,gold,looks up and empties the refrigerator.,applies a little silver design to the brush and evenly to smile it out.,flips over the shirt and places the sleeve down.,adds white laundry and water to the camera.\n2845,anetv_UeH0TCDAbSU,8984,Next she demonstrates how to iron the shirt. She then,Next she demonstrates how to iron the shirt.,She then,gold,slides it from her mouth and puts it down.,shows how to get the harder creases out.,examines the technique of a person.,shows how to pull it.\n2846,anetv_UeH0TCDAbSU,8982,She is discussing the shirt and brings out a startch spray. She,She is discussing the shirt and brings out a startch spray.,She,gold,take out him and fix the hair at the end.,completes the hairstyle as she does it.,begins to to use the spray on the shirt.,is talking about some haircut.\n2847,anetv_Ka0Rtjfi9fI,2175,Several extensions are shown for it. The man,Several extensions are shown for it.,The man,gold,then plays a set of bike bars.,is pulling his mask with it.,takes the lemon into a blender bottle and puts the lens into a glass.,trims a tree with it.\n2848,anetv_Ka0Rtjfi9fI,2174,There are several close ups of the tool in action. Several extensions,There are several close ups of the tool in action.,Several extensions,gold,get up and miss a much effect.,are shown on the same room.,are collected in the dark.,are shown for it.\n2849,anetv_Ka0Rtjfi9fI,2173,A man trims a large hedge with a pole trimmer. There,A man trims a large hedge with a pole trimmer.,There,gold,man is on an hedges.,are several close ups of the tool in action.,man cuts the hedge while standing.,press it.\n2850,lsmdc0031_The_Lost_Weekend-65529,5745,\"Almost at the door to the entrance hall, someone turns back. Someone\",\"Almost at the door to the entrance hall, someone turns back.\",Someone,gold,\"comes back into the room, staring at someone.\",\"walks through the house, stumbling to his knees by his mother, looking at each other.\",recoils as he releases the match.,\"enters the phone, sighs, and rushes inside, leaving someone alone.\"\n2851,lsmdc0031_The_Lost_Weekend-65529,5743,He walks over to the records and picks up the glass. He,He walks over to the records and picks up the glass.,He,gold,pushes his board down one way and down an empty lane.,pours one in the glasses and kicks it down.,\"stands with his head against the door post, listening, harassed.\",takes off putting items onto his mouth and clutches a hand to his forehead.\n2852,lsmdc0031_The_Lost_Weekend-65529,5748,Someone looks at the glass in someone's hand. He,Someone looks at the glass in someone's hand.,He,gold,bites his thumb as he dances between them.,nods lightly at someone and crouches.,takes the glass out of someone's hand.,\"shuffles into the bear's seat, then takes his gaze steady.\"\n2853,lsmdc0031_The_Lost_Weekend-65529,5746,\"Someone comes back into the room, staring at someone. She\",\"Someone comes back into the room, staring at someone.\",She,gold,is beginning to realize that he is drunk.,is searching for it with his courage.,\"returns it smiling, fading.\",glares slowly from someone's face.\n2854,lsmdc0031_The_Lost_Weekend-65529,5747,She is beginning to realize that he is drunk. Someone,She is beginning to realize that he is drunk.,Someone,gold,looks at the glass in someone's hand.,is crossing her yard.,gazes at her elegant surroundings.,falls on the ice in a long kiss.\n2855,anetv___wPHayoMgw,19571,\"A young woman is dressed in a zebra onesie sitting on her bed smoking a hookah. She takes two puffs, exhales the smoke and a spark\",A young woman is dressed in a zebra onesie sitting on her bed smoking a hookah.,\"She takes two puffs, exhales the smoke and a spark\",gold,that blows it over.,and look up in the distance.,flies from the end of the tube.,and rings the smoke.\n2856,anetv___wPHayoMgw,19572,\"She takes two puffs, exhales the smoke and a spark flies from the end of the tube. The man behind the camera switches and\",\"She takes two puffs, exhales the smoke and a spark flies from the end of the tube.\",The man behind the camera switches and,gold,talking to the camera with a book in her hands.,then begins to smoke the hookah as the girl begins to record.,plays with the camera while looking up into the numbers.,\"whacks on a scowl, but she puts tape on her butt and talks.\"\n2857,lsmdc3071_THE_DESCENDANTS-5735,8180,\"As someone stares after them, someone steps into his line of sight with a firm glare. The real estate agent obediently\",\"As someone stares after them, someone steps into his line of sight with a firm glare.\",The real estate agent obediently,gold,opens the screen door.,watches his superior without a sullen head.,dumps the excess sand from the tight brown boot.,peeks her flashlight beneath the chandelier then looks down at the charts.\n2858,lsmdc3071_THE_DESCENDANTS-5735,8179,\"Someone takes someone's side. As someone stares after them, someone\",Someone takes someone's side.,\"As someone stares after them, someone\",gold,hurries a man - drawn ship across a hospital corridor.,stares down at the unconscious men and scowls at him.,steps into his line of sight with a firm glare.,moves his glass out of his mouth and flexes his lips.\n2859,lsmdc0004_Charade-47806,17314,They have collected quite a crowd. Into this area,They have collected quite a crowd.,Into this area,gold,are more cabinets and luggage.,\"comes someone, followed at a safe distance by someone.\",we see up running motion.,\"is a commotion, one of which has four walls.\"\n2860,lsmdc0004_Charade-47806,17316,As he wheels to look at another booth. He,As he wheels to look at another booth.,He,gold,\"turns crazily to look at another booth, then another.\",reaches over the counter and cautiously pulls out an egg.,trots up alongside his rifle.,turns to face a reviews - a statue of a bald man with a german telephone in his hand.\n2861,lsmdc0004_Charade-47806,17315,As he stares wide - eyed at something. As he,As he stares wide - eyed at something.,As he,gold,exits the bathroom someone looks into the house.,\"kills the bite on a carrot, the bar reels in place.\",carries him into the elevator.,wheels to look at another booth.\n2862,lsmdc0004_Charade-47806,17313,\"Between the curb and someone, several temporary wooden booths have been set up. They\",\"Between the curb and someone, several temporary wooden booths have been set up.\",They,gold,have collected quite a crowd.,drive onto fuselage bicycles.,are down on a rocky mound in a tiled area.,are the large dining area with a small wooden bench in someone's door.\n2863,lsmdc0004_Charade-47368,1896,\"The front door of the Chapel is heard opening and a shaft of daylight streams in. The short, heavy - set figure of a man\",The front door of the Chapel is heard opening and a shaft of daylight streams in.,\"The short, heavy - set figure of a man\",gold,keeps some sawdust on the desk of the house.,is outlined against the bright outdoor light.,steps out from a balcony with someone snuggled in his hand.,is twin soldiers out at the library.\n2864,lsmdc0004_Charade-47368,1905,\"He stands staring at someone's body, swaying on his feet until he reaches out and grabs the side of the coffin to steady himself. Then he\",\"He stands staring at someone's body, swaying on his feet until he reaches out and grabs the side of the coffin to steady himself.\",Then he,gold,\"slams a black door, then runs to stop him, and grabs a piece of toilet paper.\",\"turns down the road in front of him, as the train passes and goes right toward the tunnel.\",\"lays more wax on the paper that reveals the base of the jacket, which stands next to touch.\",takes the flower from his lapel and throws it into the open box.\n2865,lsmdc0004_Charade-47368,1899,Someone arrives at the coffin. He,Someone arrives at the coffin.,He,gold,keeps seeing the zebra who is lying still on the couch.,\"flings different nick through the windscreen, shoving the cars around.\",\"sees someone seated over a gurney, like a toy, enjoying some old oak.\",\"stops, looks down at someone's body for a moment.\"\n2866,lsmdc0004_Charade-47368,1904,\"He starts down the aisle toward the bier, camera leading him, and we notice his unsteady gait. He\",\"He starts down the aisle toward the bier, camera leading him, and we notice his unsteady gait.\",He,gold,is slipping through the crowd.,turns to look at the others present.,does a run under the tarpaulin and climbs back down to the road.,\"turns a corner, spotting the sports penguin anxiously.\"\n2867,lsmdc0004_Charade-47368,1898,\"He stands for a moment, then closes the door after him. Then he\",\"He stands for a moment, then closes the door after him.\",Then he,gold,\"gets out of his grip, still holding the detonator.\",walks down one of the side aisles of the chapel.,takes up his frock coat and replaces the kitchen with only a wet cloth and he cuts it in half.,\"enters the bathroom, quickly shuts the door.\"\n2868,lsmdc0004_Charade-47368,1903,\"He wears a velvet - corduroy suit, string tie and a bright yellow flower in his lapel. He starts down the aisle toward the bier, camera leading him, and we\",\"He wears a velvet - corduroy suit, string tie and a bright yellow flower in his lapel.\",\"He starts down the aisle toward the bier, camera leading him, and we\",gold,follow a group through rough streets.,drive through the shot toward his house.,follow him towards the brim.,notice his unsteady gait.\n2869,lsmdc0004_Charade-47368,1897,\"The short, heavy - set figure of a man is outlined against the bright outdoor light. He\",\"The short, heavy - set figure of a man is outlined against the bright outdoor light.\",He,gold,\"stands for a moment, then closes the door after him.\",pulls the flannel up over their shoulders and bangs them on the ceiling.,takes off his shoes as someone does.,\"looks from someone to the floor, as if he is at the best someone.\"\n2870,lsmdc0004_Charade-47368,1900,\"Then, suddenly, in rapid succession, he sneezes six times. He\",\"Then, suddenly, in rapid succession, he sneezes six times.\",He,gold,\"takes a small bottle from his pocket, shakes a pill from it and swallows it dry.\",begins the journey on the ground and the base of his feet go.,\"instinctively unbuttons his anorak, throws it for someone.\",slides down on his stick and leaves.\n2871,lsmdc0004_Charade-47368,1902,\"He turns and walks back up the aisle, looking for a place to sit. He\",\"He turns and walks back up the aisle, looking for a place to sit.\",He,gold,closes his eyes tightly.,\"comes face to face with someone, stops, turns to sit somewhere else.\",\"glances down along the hallway, where someone has been drinking.\",pulls the book from his lap and turns toward the table.\n2872,lsmdc0004_Charade-47368,1901,\"He takes a small bottle from his pocket, shakes a pill from it and swallows it dry. He\",\"He takes a small bottle from his pocket, shakes a pill from it and swallows it dry.\",He,gold,pins it in with the vat.,sucks it in a plastic container and sprays sweat onto the man's face in the water.,stirs as an egg through in his rear view of the fiair egg.,\"turns and walks back up the aisle, looking for a place to sit.\"\n2873,anetv_ayLeSjJz53I,9368,\"The little girl begins moving across the stage on her toes making leaps and jumps while extending her hands out in front of her. When she is near the end, the little girl\",The little girl begins moving across the stage on her toes making leaps and jumps while extending her hands out in front of her.,\"When she is near the end, the little girl\",gold,kneels down on her needs as if she is bowing before exiting the stage and reappearing with a judge.,in the background fades to camera.,enters on one knee and continues to hula hoop center.,swings her shirt up and jumps a little in other bars.\n2874,anetv_ayLeSjJz53I,9367,\"An empty, pitch black stage is shown before a little girl comes prancing out from behind the curtain dressed in a pink leotard and tutu. The little girl\",\"An empty, pitch black stage is shown before a little girl comes prancing out from behind the curtain dressed in a pink leotard and tutu.\",The little girl,gold,is shooting frilly pink violin.,begins moving across the stage on her toes making leaps and jumps while extending her hands out in front of her.,is music again and dogs in front of the stage playing the remainder of the clip.,is a great ballet accordion next to the sea then the edge of the desk.\n2875,anetv_ayLeSjJz53I,17199,A young girl in a ballerina costume dances on a stage. The young girl,A young girl in a ballerina costume dances on a stage.,The young girl,gold,is then seen standing next to a man in front of an orange curtain.,does a belly dance routine on the stage.,begins to perform martial arts moves.,sings around with her baton then goes to a red mat describing ballet.\n2876,anetv_LSaUJwsU4GQ,5395,They start dancing around each other in the center. Two of the men,They start dancing around each other in the center.,Two of the men,gold,\"begin drumming on their drum sticks, shaking their swords.\",do heavy barbells and fell over them.,talk to her first.,start break dancing for the small group.\n2877,anetv_LSaUJwsU4GQ,758,Two young men perform in a locker room. The one,Two young men perform in a locker room.,The one,gold,beats his fist straight forward.,runs and flips to a sitting position as the man does a flip.,holds a ball and bounces into a person without a towel.,wipes himself off with a towel and tosses it to the other.\n2878,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7261,Someone knocks on the door. He,Someone knocks on the door.,He,gold,turns to find someone coming out of her room.,shoves it into his face as he enters the room.,shoves the house back and runs up the stairs.,\"shrinks, then turns to look at it.\"\n2879,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7262,He turns to find someone coming out of her room. A vulture's sharp - beaked face and white fluffy collar,He turns to find someone coming out of her room.,A vulture's sharp - beaked face and white fluffy collar,gold,are parked on the quad.,pops open in the sky.,fill our view as it shifts its keen gaze.,pulls up and uses the marker to rub the back of his neck onto her leg.\n2880,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7266,He stares out at someone. The zoo owner,He stares out at someone.,The zoo owner,gold,\"continues snapping his fingers, hiding behind a piece of scratched and machete.\",holds out his arm in an gesture of doubt.,\"takes a seat on the floor, leaning back against the wall.\",shifts his conflicted gaze.\n2881,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7269,\"At the far end of the room, a windowed door opens. Turning, someone\",\"At the far end of the room, a windowed door opens.\",\"Turning, someone\",gold,smokes a cigarette and puts a newspaper in it.,finds his shirtless brother leaning forward.,grabs a bouquet of flowers on the couch.,finds his son staring in at him timidly.\n2882,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7260,He shuts himself in his room. Someone,He shuts himself in his room.,Someone,gold,wakes from the hall wearing awkward clothes.,goes to her bedside.,watches herself in the mirror as he continues.,knocks on the door.\n2883,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7271,\"Clad in a red hooded sweatshirt and jeans, someone comes in and shuts the door. Sitting beside him on the floor, he\",\"Clad in a red hooded sweatshirt and jeans, someone comes in and shuts the door.\",\"Sitting beside him on the floor, he\",gold,\"glances up the ceiling, then at someone.\",\"glances at his father's grief - stricken expression, then looks to the cage.\",shifts his gaze to the zookeeper who stands motionless.,holds out his hands.\n2884,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7272,\"Sitting beside him on the floor, he glances at his father's grief - stricken expression, then looks to the cage. On the other side of the grating, Spar\",\"Sitting beside him on the floor, he glances at his father's grief - stricken expression, then looks to the cage.\",\"On the other side of the grating, Spar\",gold,lies with his eyes half - closed.,\"checks the old concertina screen, then sits down by a desk cleaner and dumps more water on the battered - glass table.\",finds it's own lettering.,\"shifts her eyes, then stabs a fist into her chest instead.\"\n2885,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7274,\"Beneath his striped pelt, his rib cage rises and falls, slowly. Someone\",\"Beneath his striped pelt, his rib cage rises and falls, slowly.\",Someone,gold,buffs her nose with some tissue tissue and turns it over her palm.,gives his son a loving sidelong stare.,\"strides through the ships lab, carrying twinkling eyes.\",hold on the ground in the air and someone jumps above the rocks.\n2886,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7265,\"Now, Spar lies in his backroom cage. He\",\"Now, Spar lies in his backroom cage.\",He,gold,picks up another cookie and dumps the plaster under one table.,stares out at someone.,draws a coil of weight.,meets someone's gaze then follows her through a pair of oblivious doors.\n2887,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7270,\"Turning, someone finds his son staring in at him timidly. Clad in a red hooded sweatshirt and jeans, someone\",\"Turning, someone finds his son staring in at him timidly.\",\"Clad in a red hooded sweatshirt and jeans, someone\",gold,arrives with a thick display of smart - white boots.,strides up a stairway to a high stone staircase leading to a wooden villa.,comes in and shuts the door.,opens the door of the original woman.\n2888,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7268,Spar relaxes onto his side in a shaft of sunlight. Someone,Spar relaxes onto his side in a shaft of sunlight.,Someone,gold,rapid blue hummer forces.,outlines his nostrils with a half - lit razor.,holds the animal in his melancholy gaze.,\"leans forward, floats between his hands.\"\n2889,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7263,\"A vulture's sharp - beaked face and white fluffy collar fill our view as it shifts its keen gaze. Near a watchtower, someone\",A vulture's sharp - beaked face and white fluffy collar fill our view as it shifts its keen gaze.,\"Near a watchtower, someone\",gold,rests his arms on a fence and gazes off pensively.,lays his hand on his scruffy beard and rubs his eyes.,finds someone's still blurry magazine off.,sees a doodle stifling a black label.\n2890,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7273,\"On the other side of the grating, Spar lies with his eyes half - closed. Beneath his striped pelt, his rib cage\",\"On the other side of the grating, Spar lies with his eyes half - closed.\",\"Beneath his striped pelt, his rib cage\",gold,\"rises and falls, slowly.\",starts back to his double drain.,slowly stings up and around the sphere.,blinks up and his face is heavily scarred.\n2891,lsmdc3087_WE_BOUGHT_A_ZOO-41540,7264,\"Near a watchtower, someone rests his arms on a fence and gazes off pensively. Now, Spar\",\"Near a watchtower, someone rests his arms on a fence and gazes off pensively.\",\"Now, Spar\",gold,lies in his backroom cage.,stands alone at the island.,cranes her neck as she puts her chin on someone's shoulder and hands him a toned loaf.,\"face a seated man, he sits across a table at a table filled with plants.\"\n2892,lsmdc1017_Bad_Santa-7571,6123,He sees someone with a torch is in his room. He,He sees someone with a torch is in his room.,He,gold,flips across the table.,puts the rag vase behind her.,kills the lights of the car.,points the gun at her and it falls to the floor.\n2893,lsmdc1017_Bad_Santa-7571,6120,Someone winces at the phrase. Someone,Someone winces at the phrase.,Someone,gold,awakes with a toothbrush.,\"into the bird's eye, someone stares at someone.\",pulls his sketchbook from another bedside chair.,\"munches on his orange and regards bespectacled someone, who looks away thoughtfully.\"\n2894,lsmdc1017_Bad_Santa-7571,6121,\"Someone munches on his orange and regards bespectacled someone, who looks away thoughtfully. That night, someone\",\"Someone munches on his orange and regards bespectacled someone, who looks away thoughtfully.\",\"That night, someone\",gold,drives a seven series bmw in through the gates of the motel.,drives his child through the bay in a flood river.,\"trundles down a snowy slope, the two - year old.\",enters a pizza bedroom and springs out into the nursery.\n2895,anetv_85RJm2qymRY,614,He then proceeds to take off all of the lug nuts with the tool and removes the tire from the car. Then the camera pans back to his face and he,He then proceeds to take off all of the lug nuts with the tool and removes the tire from the car.,Then the camera pans back to his face and he,gold,puts the tire still to the axle of the tire.,talks a bit more.,dips the scraper all throughout the tool and finally pushing until it into his face.,moves off to show how to trim.\n2896,anetv_85RJm2qymRY,612,There is a tire with an orange power tool attached to one of the lug nuts. The camera cuts to a man and he,There is a tire with an orange power tool attached to one of the lug nuts.,The camera cuts to a man and he,gold,is then shown talking to the camera.,puts the tire on the tire.,\"talks for a bit then shows the car, and then zooms back to the tire.\",is rowing a work bike on the other side of the machine.\n2897,anetv_85RJm2qymRY,7677,A close up of a drill is shown in the ledge of a tire and a man speaking to the camera. The man,A close up of a drill is shown in the ledge of a tire and a man speaking to the camera.,The man,gold,is then seen walking behind one of the pole and demonstrating how to properly hit a roof.,uses a large cleaning utensil to clean the back away with the hose.,crosses to a brick wall and puts the paper on a set of tools.,pans around the garage and leads into the man taking off a tire and speaking again to the camera.\n2898,anetv_85RJm2qymRY,613,\"The camera cuts to a man and he talks for a bit then shows the car, and then zooms back to the tire. He then\",\"The camera cuts to a man and he talks for a bit then shows the car, and then zooms back to the tire.\",He then,gold,put an leg up to the person's chest to properly move faster and then return his tire in to properly grab the tire.,proceeds to take off all of the lug nuts with the tool and removes the tire from the car.,sprays the window again and then comes back to clean it and peels off the ignition vigorously.,\"grabs small tools he needs to wash the car, a man, standing in bandaged, is doing snow clothes in a backyard.\"\n2899,lsmdc1026_Legion-5413,397,Someone drinks from a can. Someone,Someone drinks from a can.,Someone,gold,stands with his knees behind his chest.,sees someone's reflection in the mirror.,\"grips the pole from his left hands, blows a bow.\",\"follows, then shoots someone with the shoulder and runs.\"\n2900,lsmdc1026_Legion-5413,394,It looks like smoke spreading upwards. A fly,It looks like smoke spreading upwards.,A fly,gold,falls into the sky above the ocean.,comes in through a grill.,keeps a lifeboat on floats.,sees the rest of the mutant.\n2901,lsmdc1026_Legion-5413,393,Someone spots the dark cloud on the road. It,Someone spots the dark cloud on the road.,It,gold,looks like smoke spreading upwards.,\"someone, someone does a long jump off the bridge, and races at the crowd.\",flies off and lands on the island.,\"is flat, worn by its yellow limbs.\"\n2902,lsmdc1026_Legion-5413,396,Someone stands by a nearby sink. Someone,Someone stands by a nearby sink.,Someone,gold,runs to a boat.,drinks from a can.,\"points to a book marked with an array of pizza moves, good - humored.\",lowers the lifeboat seat of someone.\n2903,lsmdc1026_Legion-5413,395,\"In the men's room at the diner, someone thrown up on a cubicle. Someone\",\"In the men's room at the diner, someone thrown up on a cubicle.\",Someone,gold,is passed someone as she gives someone a lazy smile.,stands by a nearby sink.,throws into a snack lane and hits a ball against a table.,places his hand gently around the phone while looking around at his own son.\n2904,anetv_cffsp2tCT5k,7289,A young girl is seen cutting a hole in the top of a pumpkin followed by her scooping out seeds and cutting out the sides. The girl,A young girl is seen cutting a hole in the top of a pumpkin followed by her scooping out seeds and cutting out the sides.,The girl,gold,\"pulls out and cuts up the cat's hair, showing off advent bottles as well as shows it with a gift.\",continues putting makeup on the finished product in the end afterwards several ornaments ends.,places it on the piece of paper and places it at the woman's lip.,wipes off the pumpkin and puts on the top and shows the pumpkin in the dark.\n2905,lsmdc0005_Chinatown-48512,3329,\"Unfolds it on a coffee table, revealing the bifocal glasses, one lens still intact. Someone\",\"Unfolds it on a coffee table, revealing the bifocal glasses, one lens still intact.\",Someone,gold,sees himself in the window and opens his mouth.,stares dumbly at them.,pours more water on his cheeks.,pushes a door open.\n2906,anetv_gCx-ucvPhDY,11765,\"He then begins running and does two hops to get to the end of the board. Finally, he\",He then begins running and does two hops to get to the end of the board.,\"Finally, he\",gold,jumps up on the rope again and starts to move back to a pair of fast springs.,swims to the end of the track and jumps off the surf board and takes it and goes across it again.,is at the end of the diving board and does a flip into the water as the crowd on the side watches.,\"does flip, jumping casually, knocking the skateboard down.\"\n2907,anetv_gCx-ucvPhDY,11764,A man in a black Speedo is standing on a diving board with his hand down on his sides. He then,A man in a black Speedo is standing on a diving board with his hand down on his sides.,He then,gold,goes back and forth trying to hide his feet as a tune is shown and holds it straight up to his mouth.,\"does several flips and tips on as he runs more, performing several different dives before the ball challenge.\",begins running and does two hops to get to the end of the board.,dismounts and jumps around a third times the times before finally doing stunts and landing on his bar seat.\n2908,anetv_kYrztBFfaZ8,2565,A man swings a baseball bat. He hits a ball and it,A man swings a baseball bat.,He hits a ball and it,gold,throws him into the lane.,falls into the pins.,explodes between two pins.,goes onto a roof.\n2909,anetv_kYrztBFfaZ8,2566,He hits a ball and it goes onto a roof. A man,He hits a ball and it goes onto a roof.,A man,gold,hits the back and slams it down.,spins over the skateboard.,shovel pins into a wrestling grenade.,is running and throwing a ball.\n2910,anetv_xVQkf_TrX7U,4758,He runs inside of the house and begins to start giving instructions on how to make the perfect batman sandwich. He,He runs inside of the house and begins to start giving instructions on how to make the perfect batman sandwich.,He,gold,\"seems to do some more of it, and then other men come coat for it.\",drops the knife and puts it down on the left.,is cutting up cheese and adding ham to the sandwich.,uses the clipper strength to scoop the o goo out of an shell.\n2911,anetv_xVQkf_TrX7U,4757,A big man dressed as batman is running around doing weird nonsensical stuff. He,A big man dressed as batman is running around doing weird nonsensical stuff.,He,gold,runs inside of the house and begins to start giving instructions on how to make the perfect batman sandwich.,stands on another side of the bed in the end and continue kicking and punching in circles.,\"shakes his hand with mice, then puts them inside the table.\",instructs the man who needs to be training.\n2912,anetv_xVQkf_TrX7U,4759,He is cutting up cheese and adding ham to the sandwich. He even,He is cutting up cheese and adding ham to the sandwich.,He even,gold,tries the couch and his face is bloody with the man in it.,make a sandwich to make a sandwich.,cuts the bread into a batman shape before finally doing being done.,comes to until it adds more cooked meat.\n2913,lsmdc0041_The_Sixth_Sense-67572,3111,The eight - year - old child reaches into his pocket and slips on a pair of very large glasses. They,The eight - year - old child reaches into his pocket and slips on a pair of very large glasses.,They,gold,\"mingle through the alcohol and covering their eyes, looking on straight.\",look comical on him.,tries to pull this strange little.,kiss and gently pushes it away.\n2914,lsmdc0041_The_Sixth_Sense-67572,3113,\"When he looks up, someone is gone. Someone barely\",\"When he looks up, someone is gone.\",Someone barely,gold,catches a glimpse of the boy.,gets to his feet and looks up at them.,begins to walk to the front door.,takes a sip of his hand.\n2915,lsmdc0041_The_Sixth_Sense-67572,3110,Someone carefully locks the door behind him. The eight - year - old child,Someone carefully locks the door behind him.,The eight - year - old child,gold,reaches into his pocket and slips on a pair of very large glasses.,has one sizable fence on his shoulder.,\"is bravely, a half - eaten sandwich behind him.\",wears a venom - shaped fedora.\n2916,lsmdc0041_The_Sixth_Sense-67572,3107,Words and phrases are circled throughout the file. Someone,Words and phrases are circled throughout the file.,Someone,gold,crouches in holds of a set of letters.,\", someone nods.\",picks up a bottle.,sits on a sidewalk bench facing a row of brownstone homes across the street.\n2917,lsmdc0041_The_Sixth_Sense-67572,3106,He glances through the page. Words and phrases,He glances through the page.,Words and phrases,gold,are displayed on the left screen.,are circled throughout the file.,appear to flat screen.,are heard to the screen.\n2918,lsmdc0041_The_Sixth_Sense-67572,3105,Handwritten notes fill every line. He,Handwritten notes fill every line.,He,gold,glances through the page.,moves his somber amongst with bowed heads.,frowns as someone faces someone.,looks over at his mother who reads.\n2919,lsmdc0041_The_Sixth_Sense-67572,3114,Someone barely catches a glimpse of the boy. Someone,Someone barely catches a glimpse of the boy.,Someone,gold,\"misses the wood, the top of the ladder carries the rottweiler yard.\",drops to his knees as someone catches himself and throws out a heavy boot.,runs at full speed down the street and turns the corner.,has one marked two pens for some time.\n2920,lsmdc0041_The_Sixth_Sense-67572,3109,\"His hair is dark, with a small patch of jet white on the side. Someone carefully\",\"His hair is dark, with a small patch of jet white on the side.\",Someone carefully,gold,slips the frame back down and jogs off.,locks the door behind him.,takes a breath from the smoke.,guides the snow off the window.\n2921,lsmdc0041_The_Sixth_Sense-67572,3108,\"Someone is a munchkin of a boy with large, black eyes that seem to take in everything around him. His hair\",\"Someone is a munchkin of a boy with large, black eyes that seem to take in everything around him.\",His hair,gold,is engulfed in a suit and a blue bowler hat yet held close someone enjoying them.,\"is now brown with cream to his face, mugshots of the remains of the swimming pool.\",\"is dark, with a small patch of jet white on the side.\",is lit up in front of the mirror.\n2922,anetv_CFBmZ1g16H8,2741,The person kicks their feet continuously. The man,The person kicks their feet continuously.,The man,gold,dances on the instrument while the camera captures their movements.,continues to kick their legs and demonstrate how to swim.,puts lotion on the boy's back and follows the young woman's help.,moves the walk to another lane.\n2923,anetv_CFBmZ1g16H8,1773,\"He performs different swimming maneuvers, kicks, and types. He\",\"He performs different swimming maneuvers, kicks, and types.\",He,gold,continues his routine as he flips around then dashes catch on a few running balls.,takes a swipe of the knife and takes a leap off the fire.,continues gliding along the ocean floor.,zooms through the machine to create another scene.\n2924,anetv_CFBmZ1g16H8,2740,A person is seen swimming under water using scuba gear. The person,A person is seen swimming under water using scuba gear.,The person,gold,moves the stick along into the water.,kicks their feet continuously.,continues jumping up and down on his board while still surfing.,continues paddling through the ocean water.\n2925,anetv_CFBmZ1g16H8,1772,\"A scuba diver is seen under the water, swimming. He\",\"A scuba diver is seen under the water, swimming.\",He,gold,\"performs different swimming maneuvers, kicks, and types.\",puts on a rope rope and sits down on the water.,stands on the shore and talks about the hundreds.,demonstrates of the pond.\n2926,anetv_Q-fUXywUo7o,7143,The man uses some shoe polish to polish a pair of black shoes. The man,The man uses some shoe polish to polish a pair of black shoes.,The man,gold,holds the shoe near brush and clink with the shoes.,holds up and displays the polished shoes.,wipes the edge of the shoe with a blue ad over and cleans all of the pieces on it's shoes.,walks out of the bathroom with the curtain closing behind her and showing her inside.\n2927,anetv_Q-fUXywUo7o,7142,A kneeing man talks to the camera. The man,A kneeing man talks to the camera.,The man,gold,continues exercising on a bike block.,uses some shoe polish to polish a pair of black shoes.,puts the dart tiling down again.,plays the drums with the sticks while playing the drums and talking.\n2928,anetv_Q-fUXywUo7o,13549,\"A newspaper is lying on the ground, and a boy is kneeling beside it. He\",\"A newspaper is lying on the ground, and a boy is kneeling beside it.\",He,gold,picks up a small bull to walk past was led into the crowd.,whacks the piece of wood inside a monument to the ground.,moves out of people 'office.,\"shows off a black shoe, which he intends to polish.\"\n2929,anetv_Q-fUXywUo7o,13551,\"He shows the camera his polish and brush, then sets about polishing the shoe with the brush and polish. When he is done, he\",\"He shows the camera his polish and brush, then sets about polishing the shoe with the brush and polish.\",\"When he is done, he\",gold,picks a different shoe with a metal edge and takes another pair of shoes.,grabs a dusts of paper scissors and wipes it down with the cloth.,shows off the finished product.,slides the excess strands up to the shelf next to their rack.\n2930,anetv_Q-fUXywUo7o,13550,\"He shows off a black shoe, which he intends to polish. He\",\"He shows off a black shoe, which he intends to polish.\",He,gold,plugs in and studies.,opens a freezer drawer and pulls out a thick robe.,\"shows the camera his polish and brush, then sets about polishing the shoe with the brush and polish.\",rubs it around his head with pairs of his fingers.\n2931,anetv_SgnBsgrqfj0,1919,\"A woman holds a bottle with liquid and explains showing the label. After, the woman grabs an empty jug and pours liquid of the bottle in a measuring cup, then she\",A woman holds a bottle with liquid and explains showing the label.,\"After, the woman grabs an empty jug and pours liquid of the bottle in a measuring cup, then she\",gold,cuts the lidded in to cut the lemon.,pours the alsatian into paint.,grabs the tray and looks away.,puts the liquid in the jug through a funnel.\n2932,anetv_SgnBsgrqfj0,19888,The woman use a plastic funnel to pass the juice to a big pot and mix it with sugar and water. the woman,The woman use a plastic funnel to pass the juice to a big pot and mix it with sugar and water.,the woman,gold,shakes his water as well.,\"continues eating her cookie and applying the content to this, then lets it go.\",shake the bottle and mix the lemonade.,pours detergent onto a piece of bread.\n2933,anetv_SgnBsgrqfj0,1920,\"After, the woman grabs an empty jug and pours liquid of the bottle in a measuring cup, then she puts the liquid in the jug through a funnel. After, the woman scoops sugar and pour in the jug, then she\",\"After, the woman grabs an empty jug and pours liquid of the bottle in a measuring cup, then she puts the liquid in the jug through a funnel.\",\"After, the woman scoops sugar and pour in the jug, then she\",gold,close the jug and shake it.,starts showing how to serve and relax on a bath towel while talking.,puts another bottle in the dispenser.,pour a lemon in a glass and pour it in a blender.\n2934,anetv_SgnBsgrqfj0,19887,Woman is sitting in front of a table talking to the camera and showing a bottle of lemonade. the woman,Woman is sitting in front of a table talking to the camera and showing a bottle of lemonade.,the woman,gold,pauses to put a pan of food on the plate.,is putting various ingredients in the cup and creating a wine glass.,use a plastic funnel to pass the juice to a big pot and mix it with sugar and water.,puts a drink in a martini glass while pouring a drink from a dove orange mug.\n2935,anetv_SgnBsgrqfj0,1921,\"After, the woman scoops sugar and pour in the jug, then she close the jug and shake it. At the end, she\",\"After, the woman scoops sugar and pour in the jug, then she close the jug and shake it.\",\"At the end, she\",gold,lifts the bottle to the air without a straw.,and cleans back the time.,pours water in the jug and end her presentation.,picks up her cup and puts it back down.\n2936,anetv_kl9xvnAKfdE,13889,The red team seem to have score a down on the other end of the field on the blue team. the blue team,The red team seem to have score a down on the other end of the field on the blue team.,the blue team,gold,have scored once on the red team as well.,scores to goal the goal then able to put another goal.,does a dance on the left for the team.,leaves the four in the front as the people fly in and other team run away from the goalie - player next to them.\n2937,anetv_kl9xvnAKfdE,2177,We see lading playing a game with sticks. We,We see lading playing a game with sticks.,We,gold,can see the far scoreboard.,see a man playing drums with the man talking.,see a man bowling in a bowling alley.,see cards in an indoor field.\n2938,anetv_kl9xvnAKfdE,13888,Two female field hockey teams are play against each other in a glass in closed type field that is in doors. the red team,Two female field hockey teams are play against each other in a glass in closed type field that is in doors.,the red team,gold,placing tips on that one of the acetone is shown and the stars in the stadium flicker with a start.,then hits the court and presses it down to someone.,seem to have score a down on the other end of the field on the blue team.,get up in the alley and start playing a game of the racquetball.\n2939,anetv_QMCHIR3nDLs,18063,He walks to pick up and ax. A group of men,He walks to pick up and ax.,A group of men,gold,are performing large front with an older woman in black dancing with one woman swinging on it.,are seen playing a few times while holding large ball in the middle.,\"stand on top of logs, chopping away.\",\"cut up pistols, covered with arrows then used towards him and his enemy.\"\n2940,anetv_QMCHIR3nDLs,18062,A wood chopping legend is seen talking to the camera. He,A wood chopping legend is seen talking to the camera.,He,gold,uses tiles to take in a stout layer of wood.,is helping a wide bowl on a lawn.,letters then shown as well as a knife carving.,walks to pick up and ax.\n2941,anetv_QMCHIR3nDLs,17394,\"They stand on blocks of wood, using axes. They\",\"They stand on blocks of wood, using axes.\",They,gold,gallop out under the tree.,fire beneath each other.,use the axes to chop the wood as quickly as possible.,begin to slap each other.\n2942,anetv_QMCHIR3nDLs,18061,A man in a striped shirt reads from a paper as two men stand on logs axing the logs. A wood chopping legend,A man in a striped shirt reads from a paper as two men stand on logs axing the logs.,A wood chopping legend,gold,is seen talking to the camera.,takes out a sheet of paper.,starts walking towards the wall.,stands at the center of the field.\n2943,anetv_QMCHIR3nDLs,18065,The chopping legend speaks to the camera again. A couple of men,The chopping legend speaks to the camera again.,A couple of men,gold,are wake boarding in a water area preparing to surf.,are indoors on a slack line.,play on deck.,chop some wood until one of them jumps off the log and raises his hands up in excitement.\n2944,anetv_QMCHIR3nDLs,18066,A couple of men chop some wood until one of them jumps off the log and raises his hands up in excitement. A group of men,A couple of men chop some wood until one of them jumps off the log and raises his hands up in excitement.,A group of men,gold,\"jump to three, then he is pushing the boys forward with the shovel.\",chopping a and barge on a curved path to show the branches of the wooden walls.,\"are seen sitting in individual tubs, trying to paddle towards a finish line.\",are also introduced to the bigger boy with a pair of highlight wood and a gift cage.\n2945,anetv_QMCHIR3nDLs,17393,A couple of men are competiting in a pit outdoors. They,A couple of men are competiting in a pit outdoors.,They,gold,are playing a game of indoor soccer.,are throwing each other down a line.,are talking about how to load a stroller to balcony.,\"stand on blocks of wood, using axes.\"\n2946,anetv_QMCHIR3nDLs,18064,\"A group of men stand on top of logs, chopping away. The chopping legend\",\"A group of men stand on top of logs, chopping away.\",The chopping legend,gold,is served while someone runs behind them.,is then cut onto it at a volley of the altar stones.,speaks to the camera again.,is greeted by the instructions.\n2947,anetv_QMCHIR3nDLs,18067,\"A group of men are seen sitting in individual tubs, trying to paddle towards a finish line. One of the men\",\"A group of men are seen sitting in individual tubs, trying to paddle towards a finish line.\",One of the men,gold,is seen swimming around in the water.,drops the ball onto the back of one of the lanes.,tips the plate and shows how the kitchen is yielding.,rides camera bodies off in other water and eventually skate along in another group.\n2948,lsmdc0026_The_Big_Fish-62278,2121,\"His eyes droopy from lack of sleep, someone mans the whirling amusement park ride. Nodding off, someone\",\"His eyes droopy from lack of sleep, someone mans the whirling amusement park ride.\",\"Nodding off, someone\",gold,turns towards the rain then walks away.,\"falls backward, into the path of the spinning arms.\",looks back at the camera and continues to pretend this child again.,takes the pair of men present from takeout tucking.\n2949,lsmdc0026_The_Big_Fish-62278,2117,\"Someone takes a long look at him. Ultimately, there\",Someone takes a long look at him.,\"Ultimately, there\",gold,is somebody at the top of the babes.,is a giant sword striking someone.,'s no way he can say no.,is an angry pause and the wedding someone smiles at her husband.\n2950,lsmdc0026_The_Big_Fish-62278,2120,\"His head is tilted to the side, and as we pull back, we see why: he is holding it in a massive lion's open mouth. The beast's sharp teeth\",\"His head is tilted to the side, and as we pull back, we see why: he is holding it in a massive lion's open mouth.\",The beast's sharp teeth,gold,engulf a man with a black - and - red trident.,ignites and angle and we see that someone has gone.,begin sharp and hard and hesitant.,are just poking his skin.\n2951,lsmdc0026_The_Big_Fish-62278,2118,Someone shakes someone's hand before he can retract the offer. We,Someone shakes someone's hand before he can retract the offer.,We,gold,move into a montage.,cups her hand against his smiling shoulder.,\"look self - consciously, just walking leaves and dumping money on his tray.\",are under a glass of water.\n2952,lsmdc0026_The_Big_Fish-62278,2119,\"We move into a montage. His head is tilted to the side, and as we pull back, we see why: he\",We move into a montage.,\"His head is tilted to the side, and as we pull back, we see why: he\",gold,is recovered from much mourning.,looks on his surroundings as they stare at each other.,is holding it in a massive lion's open mouth.,is between two impassive paths for someone.\n2953,lsmdc0026_The_Big_Fish-62278,2122,\"Nodding off, someone falls backward, into the path of the spinning arms. One of the Hydra cars\",\"Nodding off, someone falls backward, into the path of the spinning arms.\",One of the Hydra cars,gold,rises from his tracks.,\"hits him square in the gut, throwing him up and away, sailing 200 feet through the air.\",collapses into the driver's seat.,\", one in hand, the graffitied walk through the end of a narrow aisle.\"\n2954,anetv_ox2AGCcE9a0,15040,\"He lifts it, then lifts it over his head. The man\",\"He lifts it, then lifts it over his head.\",The man,gold,flips the arm down again.,lifts the axe handle and fills the room behind them.,falls to the ground.,drops the barbell and yells.\n2955,anetv_ox2AGCcE9a0,5833,A man walks up to a barbell on a stage. He,A man walks up to a barbell on a stage.,He,gold,spins the ball around to throw the overhand balls.,lifts it up to his chest and pauses.,starts jump roping to the camera.,is holding a pole and sometimes hanging onto the bar.\n2956,anetv_ox2AGCcE9a0,15041,The man drops the barbell and yells. The man,The man drops the barbell and yells.,The man,gold,pulls a black shirt up and walks away.,walks off the stage.,goes up and jumps.,walks on the line clapping for the crowd.\n2957,anetv_ox2AGCcE9a0,15038,A weight lifter walks over to the barbell and adjusts is uniform. The man,A weight lifter walks over to the barbell and adjusts is uniform.,The man,gold,bends over and grabs the barbell.,finishes and gets one leg over the weight.,lifts the barbell up to her head.,lifts the weight and puts it on the desk.\n2958,anetv_ox2AGCcE9a0,15039,The man bends over and grabs the barbell. He,The man bends over and grabs the barbell.,He,gold,picks up the hammer can and pours the vodka.,turns and runs back inside.,walks to the front steps and talks to the camera.,\"lifts it, then lifts it over his head.\"\n2959,lsmdc3043_KATY_PERRY_PART_OF_ME-20673,5404,A tweet from someone is superimposed over her tour bus. Someone,A tweet from someone is superimposed over her tour bus.,Someone,gold,\", someone and her mother follow her gaze.\",backs into the harbor as the trainees below.,points to large cloud props hanging over an outdoor stage.,crosses the street to a wealthy man.\n2960,anetv_q3-S2tg4ULw,6471,Young boy talks to camera in front of drum set in a studio. Young boy,Young boy talks to camera in front of drum set in a studio.,Young boy,gold,\"plays on the drum set, and the cymbals, while intermittently speaking to the camera.\",throws the guitar on the rock directly behind the wall.,plays cricket on the metal surrounding.,is skateboarding in a gym with gray races.\n2961,anetv_q3-S2tg4ULw,6472,\"Young boy plays on the drum set, and the cymbals, while intermittently speaking to the camera. The boy\",\"Young boy plays on the drum set, and the cymbals, while intermittently speaking to the camera.\",The boy,gold,plays while the girls continue to move on the instrument with their young hands.,enjoys himself in the background with the music in the background.,is sitting back and forth on his drum.,finishes up recording his drum session and returns to the camera.\n2962,lsmdc3024_EASY_A-11409,1657,She slips off a pair of red someone panties from under her skirt. She,She slips off a pair of red someone panties from under her skirt.,She,gold,\"closes her eyes, which he slips on her shoulder.\",\"hangs them on the doorknob, blocking the keyhole.\",\"pretends to cross a figure, only to recognize how it is used.\",turns to find the kitten shoveling the sand.\n2963,lsmdc3024_EASY_A-11409,1658,\"She hangs them on the doorknob, blocking the keyhole. The bully\",\"She hangs them on the doorknob, blocking the keyhole.\",The bully,gold,\"tries to peer through, as a crowd gathers.\",lands on the bridge steps.,is basically turning around when the man dashes after her.,falls off.\n2964,anetv__7AyUgKv3kU,17201,The woman speaks to the boy and he walks over to her while she still blows leaves around. In the end she,The woman speaks to the boy and he walks over to her while she still blows leaves around.,In the end she,gold,'s seen walking away past a fence.,\"details her makeup shop, and holds up the contacts.\",comes out of the room and watches people.,stops eating and watches him on the right side.\n2965,anetv__7AyUgKv3kU,17200,A kid is seen speaking to the camera and pans over to an older woman blowing leaves in yard. The woman speaks to the boy and he,A kid is seen speaking to the camera and pans over to an older woman blowing leaves in yard.,The woman speaks to the boy and he,gold,continues speaking while holding a close up of a sink and scuba brushes afterwards.,begins blowing the leaves all around the yard.,walks over to her while she still blows leaves around.,shows the stage and break performing the same moves while other people continues walking in place.\n2966,anetv_NZ5iioSnCO8,13647,A close up of a table is shown as well as a man standing around the table and pointing to the side. Two men,A close up of a table is shown as well as a man standing around the table and pointing to the side.,Two men,gold,are watching on the side as the game continues and another man records on his phone.,are shown playing a game with one another when one gets in and puts two hockey balls into the basket.,are seen eating a beer in a table laughing and laughing.,are playing paintball with others who also look the other.\n2967,anetv_lcwR7eA-VOY,18200,The crowd around them cheers on. A guy,The crowd around them cheers on.,A guy,gold,jumps onto the ring and begins to fight with one of the wrestlers.,lingers next to them.,climbs up or set.,falls to the floor.\n2968,anetv_lcwR7eA-VOY,18199,\"The referee stands by, instructing them on what to do. They finally\",\"The referee stands by, instructing them on what to do.\",They finally,gold,take their turns to each other to show gymnastic tricks of the mat.,get to the arm wrestling.,accompany the birdie through.,take turns throwing each.\n2969,anetv_lcwR7eA-VOY,18198,Two wrestlers are up on a ring arguing. The referee,Two wrestlers are up on a ring arguing.,The referee,gold,try to hold each other tight.,\"dances, wrestling and cuffs the flag.\",\"stands by, instructing them on what to do.\",swings down and bows.\n2970,anetv_lcwR7eA-VOY,18201,A guy jumps onto the ring and begins to fight with one of the wrestlers. The man leaves the ring and the wrestler,A guy jumps onto the ring and begins to fight with one of the wrestlers.,The man leaves the ring and the wrestler,gold,jumps on the seventh man and practices back winning.,approaches the other wrestler and beats him to the ground.,pulls the tube upside down just all the legs are moved before the bull goes off.,grabs someone one fist.\n2971,anetv_6iTymXuGFhg,12178,\"The camera continues to follow the boy around the yard while the mom lays in the grass and then the daughter swinging around. The parents play with the kids more, give them a kiss, and the dad\",The camera continues to follow the boy around the yard while the mom lays in the grass and then the daughter swinging around.,\"The parents play with the kids more, give them a kiss, and the dad\",gold,begins to lead away.,leaves one of them away.,\"follows him, tries to spit the pinata and finally takes money off of a plate.\",walks away with the daughter.\n2972,anetv_6iTymXuGFhg,12177,A close up is shown of a young child moving around on a swing and people standing around him to push. The camera,A close up is shown of a young child moving around on a swing and people standing around him to push.,The camera,gold,continues to follow the boy around the yard while the mom lays in the grass and then the daughter swinging around.,pans the man sitting on the ground and shows him playing to the camera followed by him laying on the ground.,pans around and from several angles trimming the trees and pans away when the man talks.,continues to move around as the man continues to swing and push back around the yard.\n2973,anetv_mZxvYV53uf0,2144,One of the girls is wearing a red shirt and the other is wearing a dark blue shirt. They,One of the girls is wearing a red shirt and the other is wearing a dark blue shirt.,They,gold,are smoking on their wands.,are practicing ball room dancing.,are running on the sidewalk of a purple bus.,are showing indignant shane in a park.\n2974,anetv_mZxvYV53uf0,2146,They take turns to swing and twirl around each other's hands as they go around in circles. They also,They take turns to swing and twirl around each other's hands as they go around in circles.,They also,gold,turn and do tricks on the bongos as they continue up the jump.,follow a pattern of their leg movements as they follow the steps rhythmically.,\"take one break for one last time, climbing along the side of the crane at the base of the passageway.\",do stunts while holding the handles in mock fancy moves.\n2975,anetv_mZxvYV53uf0,2145,They are practicing ball room dancing. they,They are practicing ball room dancing.,they,gold,do a karate routine as they almost drift to class.,kick and knock each other over and over with their hands.,take turns to swing and twirl around each other's hands as they go around in circles.,have a picnic in one of the bunch chairs before the table in front of them.\n2976,anetv_mZxvYV53uf0,2143,Two girls are practicing dance moves in front of their television set in their living room. One of the girls is wearing a red shirt and the other,Two girls are practicing dance moves in front of their television set in their living room.,One of the girls is wearing a red shirt and the other,gold,is holding a nail bottle that begins to use to blend it with powder.,joins two on hold up ropes.,is wearing a dark blue shirt.,is holding in a hand manner by taking a pose using the woman.\n2977,anetv_QjaqFPDoImc,11310,A man is running through a concrete sidewalk with steps in his Kangaroo shoes. More people appear and they too,A man is running through a concrete sidewalk with steps in his Kangaroo shoes.,More people appear and they too,gold,continues to skate around wearing different stilts.,are walking throughout the the jump.,begin to jump throughout crowds of people.,begin break dancing in the grass.\n2978,lsmdc3037_IRON_MAN2-16754,1350,Someone walks to one side of a scale city model on a table and steps to his right. A young dark - haired boy,Someone walks to one side of a scale city model on a table and steps to his right.,A young dark - haired boy,gold,approaches housing cinema stairwell and glances around sadly.,bounces the cup of horseback with a man in the attic.,holding a piece of the model stands behind the table.,dons a lace diaper as the stage owner grabs him from behind.\n2979,lsmdc3037_IRON_MAN2-16754,1346,\"Later, he watches the film on a projection screen. In the film, someone Stark\",\"Later, he watches the film on a projection screen.\",\"In the film, someone Stark\",gold,moves staring at through photos.,ties the back to the tarpaulin.,sits on the front of a large desk.,\"a guitar on an arena floor, then unties his firearm.\"\n2980,lsmdc3037_IRON_MAN2-16754,1342,He picks up a rolled - up blueprint from inside the crate. He,He picks up a rolled - up blueprint from inside the crate.,He,gold,unrolls the blueprint and places it behind himself.,rushes over to him.,pops his gun in.,\"peels them off the table, then turns.\"\n2981,lsmdc3037_IRON_MAN2-16754,1345,\"Someone opens a round canister's lid and takes out a reel of film. Later, he\",Someone opens a round canister's lid and takes out a reel of film.,\"Later, he\",gold,watches the film on a projection screen.,passes through two rows of vehicles.,looks around from the dust lathering which he hands.,crouches on all fours and rubs his hands together.\n2982,lsmdc3037_IRON_MAN2-16754,1356,Someone flips through dozens of blank pages filling the remainder of the notebook. He,Someone flips through dozens of blank pages filling the remainder of the notebook.,He,gold,\"blinks down on the page, he looks off through the side.\",picks up a bowl and bites it apart.,tosses the notebook aside.,turn perches onto the tiny windowsill.\n2983,lsmdc3037_IRON_MAN2-16754,1349,\"While the film plays, someone pages through a notebook filled with handwritten notes, formulas, and diagrams. Someone\",\"While the film plays, someone pages through a notebook filled with handwritten notes, formulas, and diagrams.\",Someone,gold,walks to one side of a scale city model on a table and steps to his right.,scurries away from someone.,finds a photo of someone's mother with his friends holding someone's pen.,uses the pen onto an appropriate screen.\n2984,lsmdc3037_IRON_MAN2-16754,1355,\"Someone watches the film, then thumbs through the notebook. Someone\",\"Someone watches the film, then thumbs through the notebook.\",Someone,gold,flips through dozens of blank pages filling the remainder of the notebook.,\"stands and runs up through the coffin, up the other body.\",follows world desktop affect chemicals in intervals.,around front.\n2985,lsmdc3037_IRON_MAN2-16754,1351,A young dark - haired boy holding a piece of the model stands behind the table. Young someone,A young dark - haired boy holding a piece of the model stands behind the table.,Young someone,gold,drops the bar on a cloth by his hair and tilts his head up.,places the piece on the table.,points toward the cross scene.,points at a wall of paper skates.\n2986,lsmdc3037_IRON_MAN2-16754,1347,\"In the film, someone Stark sits on the front of a large desk. A large cylindrical reactor\",\"In the film, someone Stark sits on the front of a large desk.\",A large cylindrical reactor,gold,sits on the news desk.,sits in front of him.,glows on the wall cases.,sits on a desk at the top of the tower.\n2987,lsmdc3037_IRON_MAN2-16754,1341,\"At his house, someone opens the crate. He\",\"At his house, someone opens the crate.\",He,gold,\"takes out his belongings, then wakes to find someone asleep on his body from the stereo.\",picks up a rolled - up blueprint from inside the crate.,hands him his wallet.,kicks a mechanic from the front of the train.\n2988,lsmdc3037_IRON_MAN2-16754,1352,Young someone places the piece on the table. A young man,Young someone places the piece on the table.,A young man,gold,picks up young someone and carries him off.,fastens a shirt and shows her smile.,fights more from the center.,goes to the window to look at the other caption: derelict - bales statue.\n2989,lsmdc3037_IRON_MAN2-16754,1344,He picks up an old newspaper's front page. Someone,He picks up an old newspaper's front page.,Someone,gold,reverses down toward someone's father with his two - piece jacket as someone watches his son.,opens a bin and steps into the kitchen.,opens a round canister's lid and takes out a reel of film.,finds the heart and reads paper on it.\n2990,lsmdc3037_IRON_MAN2-16754,1354,\"While drinking, someone lifts one index finger. Someone\",\"While drinking, someone lifts one index finger.\",Someone,gold,\"watches the film, then thumbs through the notebook.\",blows out a powerful flame - lit smoke.,arcs the ball between it and aims it across the deck over his dining table.,\"lifts her head, as flowery dawns black to reveal someone's cut.\"\n2991,lsmdc3037_IRON_MAN2-16754,1348,\"A large cylindrical reactor sits in front of him. While the film plays, someone\",A large cylindrical reactor sits in front of him.,\"While the film plays, someone\",gold,\"shoots the puck, balls into the ball, and lifts it to the floor.\",cameraman switches circles.,\"pages through a notebook filled with handwritten notes, formulas, and diagrams.\",struggles to hold the record in both hands.\n2992,lsmdc0011_Gandhi-53017,3086,\"A band plays the new Pakistani National Anthem loudly and there is the roar of a tremendous crowd as the white, green with white crescent, flag of Pakistan is raised on the flagpole. The little flagpole\",\"A band plays the new Pakistani National Anthem loudly and there is the roar of a tremendous crowd as the white, green with white crescent, flag of Pakistan is raised on the flagpole.\",The little flagpole,gold,is off with it right broken.,is in a black line.,has a title collar.,\"is empty, the rope dangling, flapping loosely down the pole.\"\n2993,lsmdc0011_Gandhi-53017,3088,\"Someone sits on the porch of his bungalow, spinning. Inside we\",\"Someone sits on the porch of his bungalow, spinning.\",Inside we,gold,\"can just see someone, spinning too.\",see people holding back and looking relieved.,watch the sun screen seen for a.,clearly want to know what you sees.\n2994,anetv_n04N7AuqZsY,6920,A group of girls in field hockey outfits walks onto a green field in a line. The girls,A group of girls in field hockey outfits walks onto a green field in a line.,The girls,gold,begin playing cricket against one another and then the teams stop running.,are then seen in front of a male coach talking to them and pointing to spots on the field.,begin to play lacrosse on the ice and a game stands.,are swimmers in the field and run across the field.\n2995,anetv_n04N7AuqZsY,6922,Several girls are interviewed from the field and bleachers before and as video of the girls practicing field hockey are shown. The girls,Several girls are interviewed from the field and bleachers before and as video of the girls practicing field hockey are shown.,The girls,gold,are then shown playing field hockey on a large green field interspersed with an interview from the coach.,finish their routine and dance in a circle throwing a ball in the air.,begin cheering for the girls.,begin jumping quickly and congratulate each other standing interview again.\n2996,anetv_n04N7AuqZsY,6921,The girls are then seen in front of a male coach talking to them and pointing to spots on the field. Several girls,The girls are then seen in front of a male coach talking to them and pointing to spots on the field.,Several girls,gold,are sitting on horses and lead into hula rods.,are interviewed from the field and bleachers before and as video of the girls practicing field hockey are shown.,are then shown on the beach followed by their funny and looking hind hands in the air.,pull with the players in slow motion as well running around the track.\n2997,anetv_JTFEzdAw1L4,6962,A young boy gives her back the ball. The woman,A young boy gives her back the ball.,The woman,gold,starts doing karate moves.,throws the ball again.,hands off the boy.,joins the girl in the pool.\n2998,anetv_JTFEzdAw1L4,6963,The woman throws the ball again. She,The woman throws the ball again.,She,gold,hits him board in the end.,throws her ball to the hockey player.,drops the balls into the net.,does a dance and throws it again.\n2999,anetv_JTFEzdAw1L4,6961,An older woman throws a white ball towards a green cup. A young boy,An older woman throws a white ball towards a green cup.,A young boy,gold,\"approaches a boy, then halfheartedly hits the power and serves the ball.\",is shown to a high bar.,sits swinging a bat.,gives her back the ball.\n3000,anetv_JTFEzdAw1L4,6964,She does a dance and throws it again. She again,She does a dance and throws it again.,She again,gold,bumps the beam more.,lays her feet on the floor.,throws the white ball.,does a flip and lands on a field.\n3001,lsmdc1024_Identity_Thief-82444,14873,Someone notices a merge up ahead. Someone,Someone notices a merge up ahead.,Someone,gold,lands on a bespectacled surfboard.,eyes the runaway van.,\"walks up to him, gathering her arms.\",carries his wheelchair farther away.\n3002,lsmdc1024_Identity_Thief-82444,14864,\"He swerves at someone, sending him into a grassy median. Speeding cars\",\"He swerves at someone, sending him into a grassy median.\",Speeding cars,gold,\"across the woods, someone rides into the tractor - lined road.\",on a meter marked airplane signs pass by a dawn graphic over two light.,swerve out of his way.,\"drive down a country road, and a car bumping into him.\"\n3003,lsmdc1024_Identity_Thief-82444,14874,\"Gripping the steering wheel, he takes a breath. He\",\"Gripping the steering wheel, he takes a breath.\",He,gold,speeds into the side of the van causing it to flip over.,\"exposes a synchronized, leathery neck.\",opens the driver's front door and climbs through a partition.,approaches a phone then puts a lighter on his ear.\n3004,lsmdc1024_Identity_Thief-82444,14879,\"In slow motion, He hurries toward the van with his mouth dropped open. Looking through the passenger side window, he\",\"In slow motion, He hurries toward the van with his mouth dropped open.\",\"Looking through the passenger side window, he\",gold,sees the skiptracer lying groggily against the wheel.,finds someone's seat on the driver's seat.,takes the phone and talks.,gets to a railing where his board has been built and climbs out.\n3005,lsmdc1024_Identity_Thief-82444,14871,The skiptracer elbows her stomach and holds her back. Someone punches him in the throat and he,The skiptracer elbows her stomach and holds her back.,Someone punches him in the throat and he,gold,plunks down for the tank.,falls limply against the steering wheel.,slams him and lays the plate away.,ends them in frustration.\n3006,lsmdc1024_Identity_Thief-82444,14872,\"Someone slows down and lightly hits the back panel of the van, barely nudging it. Someone\",\"Someone slows down and lightly hits the back panel of the van, barely nudging it.\",Someone,gold,climbs back onto the taxi as someone races through the extreme campus.,puts the helmet on the handle and crashes inside the lifeboat guardrail.,notices a merge up ahead.,\"smiles determination as she flees, through the screens, from the middle of the screen.\"\n3007,lsmdc1024_Identity_Thief-82444,14865,Speeding cars swerve out of his way. Guardrails,Speeding cars swerve out of his way.,Guardrails,gold,lie on both sides of the road trapping someone with the oncoming traffic.,are in the line in the vehicles.,move back to four cars.,pulls out the lifebelt.\n3008,lsmdc1024_Identity_Thief-82444,14868,The sedan launches off a mound of dirt and soars through the air. It lands on its tires in the grass and someone,The sedan launches off a mound of dirt and soars through the air.,It lands on its tires in the grass and someone,gold,cranes his head in.,jumps on to the handcuffed ground.,leads him into the aisle beneath the slanted arch.,rejoins the van on the right side of the road.\n3009,lsmdc1024_Identity_Thief-82444,14876,Someone stares wide - eyed as the van continues to flip into the median. He,Someone stares wide - eyed as the van continues to flip into the median.,He,gold,finishes the bird's attack.,fires at the chauffeur as someone drives.,slaps the right side of the car as it moves closer.,stops the car and watches the van land right side up.\n3010,lsmdc1024_Identity_Thief-82444,14877,He stops the car and watches the van land right side up. Someone,He stops the car and watches the van land right side up.,Someone,gold,gets drops a letter.,blocks someone's face.,unbuckles his seatbelt and slowly emerges from the car.,breaks off in our view.\n3011,lsmdc1024_Identity_Thief-82444,14862,His sedan skids up alongside another car and he peels away. Someone,His sedan skids up alongside another car and he peels away.,Someone,gold,walks across the campus.,falls over the upper window down the lane.,drags someone to the limo.,speeds up beside the skiptracer's van.\n3012,lsmdc1024_Identity_Thief-82444,14875,He speeds into the side of the van causing it to flip over. Someone,He speeds into the side of the van causing it to flip over.,Someone,gold,boots someone's tail congratulations.,strolls off the road and finds himself in the passenger seat.,waits for the boys to follow.,stares wide - eyed as the van continues to flip into the median.\n3013,lsmdc1024_Identity_Thief-82444,14869,\"It lands on its tires in the grass and someone rejoins the van on the right side of the road. In the van, someone\",It lands on its tires in the grass and someone rejoins the van on the right side of the road.,\"In the van, someone\",gold,sits in the passenger seat of the mustang.,grimaces with his hands.,swing the wheel to safety.,pounds a cylinder against the partition lock and breaks through.\n3014,lsmdc1024_Identity_Thief-82444,14863,Someone speeds up beside the skiptracer's van. He,Someone speeds up beside the skiptracer's van.,He,gold,looks around the parking lot.,opens the briefly to more.,\"swerves at someone, sending him into a grassy median.\",paddles too.\n3015,lsmdc1024_Identity_Thief-82444,14870,\"In the van, someone pounds a cylinder against the partition lock and breaks through. The skiptracer\",\"In the van, someone pounds a cylinder against the partition lock and breaks through.\",The skiptracer,gold,throws up the phone box and approaches someone.,runs back to the diner.,elbows her stomach and holds her back.,joins him as she clutches the carpet.\n3016,anetv_jwlYaPt2DIs,11264,The man juices 2 fruit then puts sugar in in two glasses. The man then,The man juices 2 fruit then puts sugar in in two glasses.,The man then,gold,shows making the cake again.,washes his hands over the sauce that shows next.,pours the flour in a glass container then pours his drink into the glass with a heated mug.,cuts and juices four more fruit.\n3017,anetv_jwlYaPt2DIs,11263,We see a man at a table in a field juicing a fruit to make a juice. The man,We see a man at a table in a field juicing a fruit to make a juice.,The man,gold,wets his board then pulls off into the water.,juices 2 fruit then puts sugar in in two glasses.,pours oil in a boiling pan and pours the liquid into the down ketchup dish.,pours rice eggs and pours it into a pan.\n3018,anetv_jwlYaPt2DIs,11265,The man then cuts and juices four more fruit. The man,The man then cuts and juices four more fruit.,The man,gold,cuts it around half afterwards to create a sandwich and tipping it.,mashes a piece of metal into a factory flask.,sharpens the knife and slices the bread until it slices.,adds more sugar to the glasses and ice water from the bucket under the fruit.\n3019,anetv_P_b6_k2ocYw,2598,She is crocheting something black and white. A car,She is crocheting something black and white.,A car,gold,rips water off of the inside.,is now strewn across the pavement towards her.,emerges through the glass door.,drives by the cart.\n3020,anetv_P_b6_k2ocYw,2599,A car drives by the cart. Another person,A car drives by the cart.,Another person,gold,jumps on a snowy roof.,is kayaking next to them.,pushed up their front.,reaches into the car.\n3021,lsmdc1017_Bad_Santa-7483,268,\"The skaterat throws a tin which bounces off someone's hand. Eyes front, someone\",The skaterat throws a tin which bounces off someone's hand.,\"Eyes front, someone\",gold,sees the syringe.,takes from his tongue.,waddles on towards the mall.,steps over to a teller.\n3022,lsmdc1017_Bad_Santa-7483,262,Someone turns to a gum - chewing female helper. Someone,Someone turns to a gum - chewing female helper.,Someone,gold,reads a note in the car and reads.,\"observes a policeman move outside, his jaw set.\",\"feels in long, white chews.\",\"rolls his eyes, shakes his head, then turns to the kids.\"\n3023,lsmdc1017_Bad_Santa-7483,261,Someone's chair is conspicuously empty. Someone,Someone's chair is conspicuously empty.,Someone,gold,\"sits on and switches on the other end, then reaches for a second bottle of approaching key.\",looks for its pulse.,opens headphones and hurries in behind them.,turns to a gum - chewing female helper.\n3024,lsmdc1017_Bad_Santa-7483,264,Someone swigs his grog as someone goes out front where kids are lined up. The fat kid,Someone swigs his grog as someone goes out front where kids are lined up.,The fat kid,gold,spits and then the kid from what the meeting hears as the coach goes.,pushes him through the doorway.,tweaks his acting knit inquisitively.,takes a deep breath and sneezes over someone.\n3025,lsmdc1017_Bad_Santa-7483,267,He shoos the boy away and looks over at someone. A bus,He shoos the boy away and looks over at someone.,A bus,gold,pulls up at a bus stop near some cool skaterat kids.,pulls him on a bus and someone drives past a stream of other emergency fountains on the driver's side.,passes outside someone's blazing chute.,pulls up outside someone's door.\n3026,lsmdc1017_Bad_Santa-7483,265,A small girl sits on snotty someone's knee. A boy with long hair,A small girl sits on snotty someone's knee.,A boy with long hair,gold,stretches over his legs.,in waist level separates a chair.,squats across his face.,sits on his knee.\n3027,anetv_wr_1p7obP-g,2685,He pours more objects into the bucket while another man swirls it around. The man,He pours more objects into the bucket while another man swirls it around.,The man,gold,lights a red cigarette and picks it up again.,opens a box full of stone and lays down some plaster on a wall.,continues to play a piece of instrument as well as the man cutting the plaster.,continues lifting the shoes out of his bag while still shining the shoes.\n3028,anetv_wr_1p7obP-g,2684,Several photographs of households and objects are shown followed by a man pouring liquids into a bucket. He,Several photographs of households and objects are shown followed by a man pouring liquids into a bucket.,He,gold,continues to speak to the camera and shows a hint of a man putting sunscreen all over the camera.,continues hitting the various about different cows and ends with getting the drink back.,pours more objects into the bucket while another man swirls it around.,slowly puts it inside the bucket then wipes aside the glass with the rag.\n3029,anetv_wr_1p7obP-g,2686,The man opens a box full of stone and lays down some plaster on a wall. He,The man opens a box full of stone and lays down some plaster on a wall.,He,gold,pushes the stone into the wall over and over again to create a stone wall for a home.,dusts the cement on the ground while looking off into the distance.,looks very surprised by this throw.,adds music to the backpack on the table.\n3030,anetv_UnOzWl0EGCA,9024,The guy pours the shaken liquid into the glass. The guy,The guy pours the shaken liquid into the glass.,The guy,gold,holds up the glass.,adds liquid to the glass.,pours the contents of the beer cup.,takes the coffee back first.\n3031,anetv_UnOzWl0EGCA,9022,The guy raises an empty glass. The guy,The guy raises an empty glass.,The guy,gold,closes the digicam and then drags himself out.,pours more beer and a bottle of beer.,points at a stand on the floor.,\"mixes alcohol, other liquids, and ice together.\"\n3032,anetv_UnOzWl0EGCA,9021,A guy is standing behind a bar. The guy,A guy is standing behind a bar.,The guy,gold,puts a gray object in front of him and the excess fluid and slips it into the container.,jumps the outdoor steps.,raises an empty glass.,takes off and makes funny moves.\n3033,anetv_UnOzWl0EGCA,8194,The man holds up a martini glass. the man then,The man holds up a martini glass.,the man then,gold,turns the lens in his mouth.,begins making and mixing a drink.,pours drinks onto it.,opens the oven and sits.\n3034,anetv_UnOzWl0EGCA,9023,\"The guy mixes alcohol, other liquids, and ice together. The guy\",\"The guy mixes alcohol, other liquids, and ice together.\",The guy,gold,points to the camera and mixes it together.,pours the shaken liquid into the glass.,\"adds the lime ads the martini beverage, and then in front of him while still smoking.\",mixes his drink and pours oil and paint to the squirrel.\n3035,anetv_UnOzWl0EGCA,8193,A man stands behind a bar and starts talking. the man,A man stands behind a bar and starts talking.,the man,gold,bowls another small glass.,throws darts at a dartboard.,is holding a tennis racket in his hands.,holds up a martini glass.\n3036,anetv_EXUKhI7WTqo,4661,They are spinning each other in circles as they dance. they,They are spinning each other in circles as they dance.,they,gold,bounce the ball back and forth.,spin while swirling around the body.,\"continue dancing, laughing and talking.\",spin and start on each other.\n3037,anetv_EXUKhI7WTqo,15300,Two couples are seen dancing with another while the camera pans around their movements. They,Two couples are seen dancing with another while the camera pans around their movements.,They,gold,continue to play and finish the routine.,begin dancing and moving their hands behind their faces.,continue to dance with one another and ends by walking away.,all begin to salute and clap.\n3038,anetv_EXUKhI7WTqo,4660,A group of women are dancing in a yard outside a house. They,A group of women are dancing in a yard outside a house.,They,gold,are spinning each other in circles as they dance.,are wearing overalls and removing coats and pushing hard.,are both a couple of young hands who are painting each stand next to the wooden fence.,enjoy shots at jumping over a tree.\n3039,anetv_KR1-rdV18pI,12172,We see a man waterskinng backwards. The screen hangs to the man going forward and we,We see a man waterskinng backwards.,The screen hangs to the man going forward and we,gold,see video of him surfing on the roof and quickly lifting his face.,see him as he skis from the boat.,see two boys wrapped in foam trays.,see two men dressed in black.\n3040,anetv_KR1-rdV18pI,12173,The screen hangs to the man going forward and we see him as he skis from the boat. We,The screen hangs to the man going forward and we see him as he skis from the boat.,We,gold,see the man holding on to the velvet and floating the water water on a third surfboard.,see the man sit and do a spin in the water and ski on his butt.,see a dj wearing backstroke and a young woman seated in a house.,see a man skiing on rock n the mountain.\n3041,anetv_KR1-rdV18pI,1343,A person is water skiing back and forth behind a boat. A person,A person is water skiing back and forth behind a boat.,A person,gold,is water skiing next to a boat and sits down in the water before standing back up.,stands in the water talking of the kite while a man is riding behind the boat.,performs tricks on a motor boat moving well with other people watching and putting ropes as a boat.,holds a mother to the sides of water and begins sailing on a river.\n3042,anetv_KR1-rdV18pI,1342,A person is water skiing backwards off the side of a boat. A person,A person is water skiing backwards off the side of a boat.,A person,gold,is underwater in some water.,is spinning the water back onto the boat.,is water skiing back and forth behind a boat.,dips into the water and puts the stick under the water.\n3043,anetv_KR1-rdV18pI,12174,The man then stands and skis. We then,The man then stands and skis.,We then,gold,see the man talking.,see a second boat overlaid and the man walks off.,see more of the closing title.,see the screen switch to black.\n3044,anetv_5PgDTLR7wFQ,12692,She is holding a sponge and a box of baking soda. She,She is holding a sponge and a box of baking soda.,She,gold,puts baking baking dough dough in the oven.,smooths the lotion off the back of her honey tank and her bare arms.,pours the baking soda into the sink.,adds juice and sugar.\n3045,anetv_5PgDTLR7wFQ,12695,She uses a toothbrush to scrub the bottom of the sink. She,She uses a toothbrush to scrub the bottom of the sink.,She,gold,brushes the teeth in the sink and continues brushing her hair.,adds the first time and turns it toward the camera.,wipes the sink with a towel.,spits directly into the sink and rinses it in her mouth.\n3046,anetv_5PgDTLR7wFQ,12691,A woman is standing behind a sink. She,A woman is standing behind a sink.,She,gold,is holding a sponge and a box of baking soda.,puts water to the pot and puts it back in the sink.,begins washing dishes in a sink.,uses a mop over a woman on the sink.\n3047,anetv_5PgDTLR7wFQ,6426,A woman is seen washing a sponge in a sink followed by scrubbing it down with a brush. She then,A woman is seen washing a sponge in a sink followed by scrubbing it down with a brush.,She then,gold,scrubs the sofa thoroughly with a towel with a rag sponge and scrubbing them afterwards.,scrubs the sink all around and shows off her clothes as well as a towel.,sprays the water down around the sink while still holding the sponge to scrub and wiping it down.,wipes down a sink and wax herself with a rag and washing and scrubbing it together.\n3048,anetv_5PgDTLR7wFQ,12694,She starts wiping the sink a sponge. She,She starts wiping the sink a sponge.,She,gold,uses a toothbrush to scrub the bottom of the sink.,drops the towel and wipes the sink with the brush.,washes her hands with a blue towel as they sink off.,turns to brush and cleans again.\n3049,anetv_5PgDTLR7wFQ,12693,She pours the baking soda into the sink. She,She pours the baking soda into the sink.,She,gold,mixes all the ingredients in of the sink.,pours one in and sprays it in a bowl.,starts wiping the sink a sponge.,starts washing the papers and dishes in the sink.\n3050,lsmdc3040_JULIE_AND_JULIA-18227,3687,Someone folds up the letter and lays it aside. Someone,Someone folds up the letter and lays it aside.,Someone,gold,takes the seventh essay and hurls it at the dummy as he tangles his fingers around it.,is in the news.,walks towards the noise.,\"takes a seat beside her on the couch, and rests a hand on her thigh.\"\n3051,anetv_izdf6Fm48Tc,3418,A man is seen speaking to the camera with a pair of shoes in front of him. He,A man is seen speaking to the camera with a pair of shoes in front of him.,He,gold,sets the shoe in a bucket and begins cutting the shoe with the black shoe.,holds up the shoes as well as cleaning products and begins using them on the shoes.,begins to feet on the shoes while looking back to the camera.,is then shown dancing by riding on stilts while following on his rings.\n3052,anetv_izdf6Fm48Tc,3419,He holds up the shoes as well as cleaning products and begins using them on the shoes. He,He holds up the shoes as well as cleaning products and begins using them on the shoes.,He,gold,removes them together with the shoes and bouquets them well.,gently moves up and down and ends by turning a lock of her hair with a red spray gun.,continues ironing the frame while looking away from the camera.,wipes the shoes while still showing the cleaning products and speaking to the camera.\n3053,anetv_WDvsx_q2h-4,11688,He begins to play the violin. He,He begins to play the violin.,He,gold,puts out two final words and pulls both.,stops and sets the violin to his side.,kick it up in a parking lot.,begins to play fetch.\n3054,anetv_WDvsx_q2h-4,11687,A man is standing outside holding a violin. He,A man is standing outside holding a violin.,He,gold,is playing a guitar as they play.,begins to play the violin.,is talking to his camera and talking to his office.,picks up a wrap and drops it on a platform.\n3055,anetv_goXkohySkU8,5319,The man taps his head with the white disc he crouches and the boarder collie jumps on his back and balances their. The man tosses the the disc over his head and the boarder collie,The man taps his head with the white disc he crouches and the boarder collie jumps on his back and balances their.,The man tosses the the disc over his head and the boarder collie,gold,is shown and throws it.,tricks on the uneven ground in the chase and the man is doing tricks with it.,catches it and runs off.,is playing the game.\n3056,anetv_goXkohySkU8,5317,The man steps froward and slaps the white discs on his thigh. The man,The man steps froward and slaps the white discs on his thigh.,The man,gold,steps forward switching each foot as the boarder collie runs between the mans legs.,is walking karate for illustrates ring.,continues working until the end ends.,points several punching pieces of wood in the corner of the room.\n3057,anetv_goXkohySkU8,5318,The man steps forward switching each foot as the boarder collie runs between the mans legs. The man taps his head with the white disc he crouches and the boarder collie,The man steps forward switching each foot as the boarder collie runs between the mans legs.,The man taps his head with the white disc he crouches and the boarder collie,gold,jumps on his back and balances their.,is seen on in big flight.,is yanking an clippers over all the trees next to it.,is looking off by several other fear to come.\n3058,anetv_Vjsd6Ec6eKA,2279,They attach a camera to one of the player's heads. They,They attach a camera to one of the player's heads.,They,gold,continue to stare.,persons after all of that reappear.,lift each other over their heads in cheerleading stunts that can be seen from the camera's view.,tosses it back on the table.\n3059,anetv_Vjsd6Ec6eKA,2280,They lift each other over their heads in cheerleading stunts that can be seen from the camera's view. They,They lift each other over their heads in cheerleading stunts that can be seen from the camera's view.,They,gold,rush back to the school farm.,smile and laugh as they continue to perform stunts.,sit in a cluttered bank and dressed in outfits.,catch their reflection on the tree in front of them as she talks to the camera.\n3060,anetv_Vjsd6Ec6eKA,2278,A group of people are on a field. They,A group of people are on a field.,They,gold,pull back and forth between two skaters.,are playing a game of field scissors.,attach a camera to one of the player's heads.,are hitting a pinata engaged in a soccer game.\n3061,anetv_Y53B2WdEbAg,17349,One of the women picks out some of the food from the grater. A woman,One of the women picks out some of the food from the grater.,A woman,gold,tries to wave them.,moves the scissors over the girl and the chef serves the bread.,puts a cat on it and takes one of it.,slices some of the white vegetable into a yellow bowl.\n3062,anetv_Y53B2WdEbAg,17348,Several women are kneeling on the ground and working on preparing a soup. One of the women,Several women are kneeling on the ground and working on preparing a soup.,One of the women,gold,bends her leg again.,is back to clean the person holding leg lens.,lifts it out of her hand and throws the item.,picks out some of the food from the grater.\n3063,anetv_IdEXShfpQHs,17199,A close up of a dog is seen with a woman sitting in a chair. The woman,A close up of a dog is seen with a woman sitting in a chair.,The woman,gold,continues combing the beard up while another woman is looking back in water.,blow dries the dog's hair with a brush and makes out the camera loud.,continues speaking while a person finally pets the dogs.,begins brushing the dog while he shows it's teeth.\n3064,anetv_IdEXShfpQHs,2724,The person then begins petting the dog while he makes a funny face. The person,The person then begins petting the dog while he makes a funny face.,The person,gold,continues scrubbing the shoe and the dog still fades to the camera.,continues petting the dog as he looks up to the owner.,continues grooming the dog and ends by hanging it down in front of the start.,continues pushing the cat around and pushing the cat around them.\n3065,anetv_IdEXShfpQHs,2723,A person is seen sitting down in a chair with a dog walking into frame. The person then,A person is seen sitting down in a chair with a dog walking into frame.,The person then,gold,begins drying the machine while looking off and looking at the camera.,makes several turns around while putting on a pair.,begins hitting a dog all around a room.,begins petting the dog while he makes a funny face.\n3066,anetv_N2hi_TNBk94,8155,The people bounce around while interacting with each other as well as swim in the water. They,The people bounce around while interacting with each other as well as swim in the water.,They,gold,begin swimming around to one another and leads into a boy playing with one another.,do not even score.,watch them play as people run and high fiving each other.,continue riding down the river and looking to the camera.\n3067,anetv_N2hi_TNBk94,8154,A large group of people are seen riding in tubes down a river and smiling to the camera. The people,A large group of people are seen riding in tubes down a river and smiling to the camera.,The people,gold,are seen riding down the river over skis down a river while others speak to them continuously.,bounce around while interacting with each other as well as swim in the water.,riding to the bottom and riding down a river while continuously riding and smiling and laughing to the camera.,continue to ride numerous roads past one another while more clips are shown of people riding snowboards and a close eye of slowing skis on\n3068,anetv_N2hi_TNBk94,15770,The pictures of the young people in the bus and the in the car are being shown. The girls and boys,The pictures of the young people in the bus and the in the car are being shown.,The girls and boys,gold,are riding their life buoy as they move through the water.,continue to spin at the ball.,are swimming through the desert.,are putting down their skis and painting the area.\n3069,anetv_tfPm9xAZ5z0,11828,The cat groomer grabs a cat nail clipper in her right hand. The cat groomer,The cat groomer grabs a cat nail clipper in her right hand.,The cat groomer,gold,returns its left paw.,cuts a cat's claws.,has blow last nails of her hand.,squeezes the cats paw and proceeds to clip the cats nails.\n3070,anetv_tfPm9xAZ5z0,11826,A black and white cat sits on a table next to a girl wearing a black and white sweater. The girl,A black and white cat sits on a table next to a girl wearing a black and white sweater.,The girl,gold,jumps onto the bed and starts talking.,paints her face with their hair.,holds the cats paw in her left hand.,pulls some pink wrapping paper out.\n3071,anetv_tfPm9xAZ5z0,11827,The girl holds the cats paw in her left hand. The cat groomer,The girl holds the cats paw in her left hand.,The cat groomer,gold,covers the cat back with the cat nails.,\"goes away, mopping the floor.\",grabs a cat nail clipper in her right hand.,puts a finger into the glowing red string on the nail.\n3072,anetv_tfPm9xAZ5z0,2745,The woman holds a pair of clippers and begins cutting the cats claws. She,The woman holds a pair of clippers and begins cutting the cats claws.,She,gold,continues clipping the cats claws while the camera watches in the side.,continues cutting the cat's nails while the camera captures her movements.,continues cutting and pausing to speak to the camera.,continues cutting the claws while looking back to the camera.\n3073,anetv_tfPm9xAZ5z0,2744,A close up of cats claws are seen with a woman speaking to the camera. The woman,A close up of cats claws are seen with a woman speaking to the camera.,The woman,gold,parts and pets the cat's claws as well as still cutting at the angles.,uses a tattoo pattern on her claws as well as her chasing teeth.,shaves her nails together.,holds a pair of clippers and begins cutting the cats claws.\n3074,anetv_tfPm9xAZ5z0,11829,The cat groomer squeezes the cats paw and proceeds to clip the cats nails. The cat groomer then,The cat groomer squeezes the cats paw and proceeds to clip the cats nails.,The cat groomer then,gold,pets the dog and pets it.,does the cats nails while the girls pets their dogs nails.,begins shaving the cat with a clipper solution.,holds the cat close and adjust the camera.\n3075,anetv_YqB7UEdhKug,10359,A man is standing up playing a saxophone. A band,A man is standing up playing a saxophone.,A band,gold,walks in and out of frame.,plays music polo in front of the marching band.,is playing behind him.,is playing the guitar.\n3076,anetv_YqB7UEdhKug,10360,A band is playing behind him. Blue and white words,A band is playing behind him.,Blue and white words,gold,comes onto the screen.,come onto the screen.,play onto the cartoon.,come out onto the screen.\n3077,anetv_AeefhelpxGA,17893,Two men are sitting down in chairs. They,Two men are sitting down in chairs.,They,gold,continue boxing with one another.,are playing a game of water polo.,are playing a drum with their hands.,begin to practice karate moves in the gym.\n3078,anetv_AeefhelpxGA,18667,Two mucuainas plays tam - tam on the street while a man sits on a bench on back. A woman with a child holding a dog walk behind the musicians and on front the man,Two mucuainas plays tam - tam on the street while a man sits on a bench on back.,A woman with a child holding a dog walk behind the musicians and on front the man,gold,sit on the bench.,starts an electric accordion followed by a band.,reclines on the floor while her imaginary dog plays the other harmonica.,begins to pull a camel near.\n3079,anetv_AeefhelpxGA,17894,They are playing a drum with their hands. People,They are playing a drum with their hands.,People,gold,go to the stage and take off a shirt and start doing it.,are standing on the ground watching them.,are standing on the ground watching.,are walking behind them as they play.\n3080,anetv_8c-s3TKrtdE,5839,A coach yells onto the field and players walk around and await another player's movements. The man hits the ball and the game,A coach yells onto the field and players walk around and await another player's movements.,The man hits the ball and the game,gold,is repeated once more times.,continues on with one team scoring a goal and celebrating.,prepares to land on black.,\"is over several times, before the game ends.\"\n3081,anetv_8c-s3TKrtdE,5841,Another goal is made from the other team and the coach as well as teammmates celebrate. One final shot,Another goal is made from the other team and the coach as well as teammmates celebrate.,One final shot,gold,is shown again and the audience cheers.,is the ends of the match without this.,is upset by the winner trying again to run up out of a ball.,does the splits and two other girls jump roping and celebrate.\n3082,anetv_8c-s3TKrtdE,5840,The man hits the ball and the game continues on with one team scoring a goal and celebrating. The same shot is shown again and the game,The man hits the ball and the game continues on with one team scoring a goal and celebrating.,The same shot is shown again and the game,gold,continues with the men running up and down the field.,is shown again showing the team practicing having an interview.,continues and the game ends in slow motion.,ends up falling for a final time.\n3083,anetv_8c-s3TKrtdE,5838,A large group of people are seen running down a field with one scoring a goal and the rest lining up. A coach yells onto the field and players,A large group of people are seen running down a field with one scoring a goal and the rest lining up.,A coach yells onto the field and players,gold,walk around and await another player's movements.,continue running down the track.,stand on the field as well as bikers covered in fell and practice in their direction.,prepare to walk with one another.\n3084,anetv_r9xmgB116dE,11872,\"An Asian woman is sitting, then she ride the skateboard and began skating on the empty road. The girl\",\"An Asian woman is sitting, then she ride the skateboard and began skating on the empty road.\",The girl,gold,is jumping in front of various stunts followed by the skateboarder skateboards.,\"put a rock, and get the trainer square, the closeup of the bicycle is shown again and again, the time long.\",\"sits down beside the raft, then in a purple shirt.\",\"is skateboarding side to side, and while holding a selfie stick.\"\n3085,anetv_r9xmgB116dE,11873,\"The girl is skateboarding side to side, and while holding a selfie stick. The girl\",\"The girl is skateboarding side to side, and while holding a selfie stick.\",The girl,gold,rides downwards and is then back towards the camera.,\"skateboard on the sidewalk, near the water, in a narrow path, and park.\",gets into the pool with children at the back of the waves.,dives from the deck and she lets go and falls it in the water.\n3086,anetv_mYrTrVCYSY0,7343,A man in black shorts with a number pinned to his chest is running down a city street in a marathon. People on the sidelines,A man in black shorts with a number pinned to his chest is running down a city street in a marathon.,People on the sidelines,gold,\"walk away with their other bikes, including a boy in blue jeans and a white bus making sprints.\",run their stilts on a parallel alley but stops short.,are clapping for the man and smiling as he continues to run.,go around then start jump roping.\n3087,anetv_mYrTrVCYSY0,7342,\"A man runs down two streets in a marathon, in a city setting, as onlookers from the sideline cheer and clap. A man in black shorts with a number pinned to his chest\",\"A man runs down two streets in a marathon, in a city setting, as onlookers from the sideline cheer and clap.\",A man in black shorts with a number pinned to his chest,gold,is carrying a microphone who fastening his head in the background.,and keep his composure.,is running down a city street in a marathon.,and begins to walk dance.\n3088,anetv_lZ2X-e33E0A,18714,We see a man in a bright shirt mix plaster in a bucket and spread it on a wall. The man,We see a man in a bright shirt mix plaster in a bucket and spread it on a wall.,The man,gold,starts to vacuum on the paper and then clean the roof again.,rinses the fence with water using a towel.,adds more plaster to his base and spreads it on the wall.,vacuums the floor inside the car.\n3089,anetv_lZ2X-e33E0A,18713,A man walks into a room and grabs a bucket and returns with it. We,A man walks into a room and grabs a bucket and returns with it.,We,gold,watch the man putting on his leg.,paint in the squeegee on the bedroom door.,see a man in a bright shirt mix plaster in a bucket and spread it on a wall.,and a person load into their tubes.\n3090,lsmdc1027_Les_Miserables-6502,13288,His soul looks back to his dead Self in the sanctuary. Ahead,His soul looks back to his dead Self in the sanctuary.,Ahead,gold,surrounds a tree - section by the deco seal.,plays the melody mention in the south journal.,is the bishop stretching out a hand.,\", someone smiles, into a interested move.\"\n3091,anetv_69SYd5feEBQ,15746,An elderly lady sits in a chair knitting and talking to the camera. The lady,An elderly lady sits in a chair knitting and talking to the camera.,The lady,gold,enters her red and silver writing on sheet paper.,\"gets into the chair, claps her hands with her hands and raises her lap facing her ears.\",shakes her head slightly while looking at the camera.,smiles and walks away.\n3092,anetv_tr1sNwRTMd8,2186,\"She jumps up high and lands right in the sand on to her butt, they show mulitple replays of her performance. She\",\"She jumps up high and lands right in the sand on to her butt, they show mulitple replays of her performance.\",She,gold,zoom on the edge of the beam and performs the thing.,\"bends over and fixes her uniform, dusting off her bottom as she walks away.\",glimpses her shoveling of a distance and flipping the doll behind her body.,lands in the sand facing the baby.\n3093,anetv_tr1sNwRTMd8,2185,\"A woman wearing number 177 is standing in place, she crosses her heart and get prepared to run. She\",\"A woman wearing number 177 is standing in place, she crosses her heart and get prepared to run.\",She,gold,begins playing the drums as she plays again.,goes back to the hop playing and does flips and jumps.,hops over a hopscotch and jumps from the side in a water.,breathes in deeply and starts to run really fast down the field.\n3094,lsmdc0033_Amadeus-66945,6625,Someone sits on stage at a harpsichord rehearsing the singers taking the parts of people in the opening bars of the first act of The Marriage of someone. We,Someone sits on stage at a harpsichord rehearsing the singers taking the parts of people in the opening bars of the first act of The Marriage of someone.,We,gold,\"watch someone measuring the space for his bed on the floor, singing and someone looking on, trying on the countess' hat.\",\"veers into their apartment building, making a handle as he speeds past the street woman.\",break those with new questions enters the screen.,\"stoop with ease and long, intense rod.\"\n3095,lsmdc0033_Amadeus-66945,6626,\"We watch someone measuring the space for his bed on the floor, singing and someone looking on, trying on the Countess' hat. People\",\"We watch someone measuring the space for his bed on the floor, singing and someone looking on, trying on the Countess' hat.\",People,gold,pull him onto the deck.,are sitting with someone.,are seen in a cupboard behind a bar.,he is a an injured man who follows a beat this time with the loud sound of him breathing.\n3096,anetv_XJmBiSBx7Ss,12028,Various shots are shown of lawns and hedges and leads into a man holding a tool. The man,Various shots are shown of lawns and hedges and leads into a man holding a tool.,The man,gold,is shown cutting the hedge all around the area as well as standing on a ladder to cut the top.,continues riding along a fence while stopping and zooming in on an off.,mashes the potato to the pit and begins to shine his entire foot across the ice.,begins laying grills and laying on the side with the bike.\n3097,anetv_XJmBiSBx7Ss,6162,The man then takes a trimming machine and trims each bush. the man then,The man then takes a trimming machine and trims each bush.,the man then,gold,paints a picture into the hedge with parts of the bush and talks to the camera.,grabs a blue knife and unscrews the nozzle.,grabs a ladder and uses it to trim the top of the bushes.,cuts the the tree again with the other section of the hedge.\n3098,anetv_XJmBiSBx7Ss,12029,The man is shown cutting the hedge all around the area as well as standing on a ladder to cut the top. The man,The man is shown cutting the hedge all around the area as well as standing on a ladder to cut the top.,The man,gold,continues cutting the hedges and ends with a picture in the end.,continues getting off and ends by smiling to the camera while he looks back and smiles at.,continues running around and cutting the grass on the side as well as continuing to speak to the camera and showing for records.,\"is then seen onto the field climbing a wall, aiming the camera outside while he seems to move.\"\n3099,anetv_XJmBiSBx7Ss,6161,A man walks up to a tall wall of bushes. the man then,A man walks up to a tall wall of bushes.,the man then,gold,places and put the acetone on the mantle and the front floors are shown.,starts to shoot them over his own yard to catch up dogs.,takes a trimming machine and trims each bush.,trims the fence along the fence.\n3100,anetv_hsJJbTqSQR4,18325,The woman begins swinging the racket while another boy stands beside her. The woman,The woman begins swinging the racket while another boy stands beside her.,The woman,gold,continues swinging and walks back to the boy.,grabs the woman aside and throws her onto the ground.,continues to play against the camera while audience members blowing another shot shot.,turns around as well as several other people grab her and ends with her looking.\n3101,anetv_hsJJbTqSQR4,18324,A young girl is seen standing on a tennis court holding a racket. The woman,A young girl is seen standing on a tennis court holding a racket.,The woman,gold,begins swinging the racket while another boy stands beside her.,is then seen walking at the end followed by clips of the woman moving around.,bends down and starts hitting the ball with the stick.,continues hitting another ball while kicking a ball around.\n3102,lsmdc3077_THE_VOW-36017,12828,She nods then lifts her eyes to the falling snow. He,She nods then lifts her eyes to the falling snow.,He,gold,is in broad motion across the road now coming to his feet.,follows her gaze skyward.,spots him with someone.,\"fills it, while she is crying.\"\n3103,anetv_wxoe1M2L4Qo,84,The woman puts on a vest and goggles and walks down into a boat. She,The woman puts on a vest and goggles and walks down into a boat.,She,gold,shakes the cloth and stands someone.,talks to the camera while adjusting her goggles and is led over to the water wearing a tank.,talks again while uses the ski coat.,\"stands on the circle, and seat herself on the boat.\"\n3104,anetv_wxoe1M2L4Qo,85,She talks to the camera while adjusting her goggles and is led over to the water wearing a tank. She,She talks to the camera while adjusting her goggles and is led over to the water wearing a tank.,She,gold,turns back to her friend and then she takes it off.,goes back and forth by the boat and begins to make a selection.,see how the woman and woman make contact lenses before.,hops in the water with the man and climbs back into the boat talking to the camera.\n3105,anetv_wxoe1M2L4Qo,82,\"A camera records a shop with two people standing inside, eventually leading over to a group of people standing by docks. A man\",\"A camera records a shop with two people standing inside, eventually leading over to a group of people standing by docks.\",A man,gold,sets someone onto a stool and several others talk and then begin drinking.,calls out as people run in and out of frame.,walks down the docks while another holds a bucket and the camera pans to a woman talking.,walks into frame and spins around the horse while holding a bow and speaking over the camera to him jumping in up quickly.\n3106,anetv_wxoe1M2L4Qo,83,A man walks down the docks while another holds a bucket and the camera pans to a woman talking. The woman,A man walks down the docks while another holds a bucket and the camera pans to a woman talking.,The woman,gold,walks up behind a fence and begins wiping the car with a rag with a rag.,puts on a vest and goggles and walks down into a boat.,demonstrates how to use the mop nunchucks the right large and upright machine.,walks to the man in a red robe and closes the next pot kiss.\n3107,anetv_ruHObln9mwI,18665,The players rush the field and start fighting. A person,The players rush the field and start fighting.,A person,gold,runs in the hockey wearing pink shirt.,punches someone in the head.,gets to the end of the game and hits the ball back and forth to hit the ball numerous times.,in a blue shirt hits one of the straps on the court.\n3108,anetv_ruHObln9mwI,18666,A person punches someone in the head. The coach,A person punches someone in the head.,The coach,gold,goes to the pong table.,is holding a racket with clips of clippers.,is trying to fight another coach.,hits the boy down as the dogs hit the ground by charging the ball.\n3109,anetv_ruHObln9mwI,18667,The coach is trying to fight another coach. A man,The coach is trying to fight another coach.,A man,gold,does a goalie with someone's sword.,tries to hit this net with a net.,climbs over the balcony to try and fight.,is behind a desk.\n3110,anetv_ruHObln9mwI,18668,A man climbs over the balcony to try and fight. The red team,A man climbs over the balcony to try and fight.,The red team,gold,is taking part from the lake.,prepares to hit for each other.,watches his family as people celebrate and begin cheering over each other.,gathers and hugs each other.\n3111,anetv_EP9Ul7UdzYI,2731,Several men dressed for the cold are waiting in a room outside the snow. They,Several men dressed for the cold are waiting in a room outside the snow.,They,gold,get down with the start and start dancing together in a long track.,play on the wall.,\"go outside, prepared to ski.\",are playing with a towel in front of them.\n3112,lsmdc0028_The_Crying_Game-63249,16955,\"Someone, a small lean man, talks to him through the hood. Someone\",\"Someone, a small lean man, talks to him through the hood.\",Someone,gold,\"is in the urinal, and people are pinned behind the gates.\",gets out of the car without turning to look at the robot.,\"rush down the hall, as someone walks in, puts someone in and tries to take a seat.\",is motionless under the black hood.\n3113,lsmdc3023_DISTRICT_9-11122,7628,\"The commander lowers his rifle. Grabbing someone's shirt, someone\",The commander lowers his rifle.,\"Grabbing someone's shirt, someone\",gold,swings the dead man on the head.,lifts his captive to his feet.,levitates her thumb at a weed topped back guard.,rotates on his elbows.\n3114,lsmdc3023_DISTRICT_9-11122,7622,\"Drops to his knees, devastated. Someone\",\"Drops to his knees, devastated.\",Someone,gold,gazes toward the crash site.,looks a relief to stay upright.,is even sniffing the air.,looks from someone to the baseball father.\n3115,lsmdc3023_DISTRICT_9-11122,7623,\"On the ground, the crashed ship smokes and sparks. The mnu transport\",\"On the ground, the crashed ship smokes and sparks.\",The mnu transport,gold,pulls onto a winding road.,jumps on fire as the bridge descends.,\"arrives, followed by an armored pickup.\",passes downstairs to his left far back over an enormous wooded village with a large barn full of family members.\n3116,lsmdc3023_DISTRICT_9-11122,7624,\"The mnu transport arrives, followed by an armored pickup. A soldier\",\"The mnu transport arrives, followed by an armored pickup.\",A soldier,gold,scans the shelves with his rifle.,\"removes a key from a console on a rock, pulling the gun's handle as he gets closer.\",stands with a woman.,hops out and shuts the door.\n3117,lsmdc3023_DISTRICT_9-11122,7630,\"Still unnoticed, the little alien watches them pass. Outside, someone\",\"Still unnoticed, the little alien watches them pass.\",\"Outside, someone\",gold,gets in the sedan and walks down the ramp.,\"leads someone to well the school, following the seated man stairs.\",brings someone to the pickup and forces him into the backseat.,sits in the minutemen's suv.\n3118,lsmdc3023_DISTRICT_9-11122,7626,\"On board, someone crawls on the floor. Someone\",\"On board, someone crawls on the floor.\",Someone,gold,spots the gunman first onto some passage line aimed in the bathroom.,\"pauses thoughtfully, then opens the top.\",\"slams a fist against the railing and bounces his feet, then runs over.\",stands in the doorway where sunlight floods into the vessel.\n3119,lsmdc3023_DISTRICT_9-11122,7629,\"Grabbing someone's shirt, someone lifts his captive to his feet. He\",\"Grabbing someone's shirt, someone lifts his captive to his feet.\",He,gold,eyes his son and draws a deep breath.,puts his hand around her neck.,turns someone around and marches him outside.,surfs on top of his tables.\n3120,lsmdc3023_DISTRICT_9-11122,7625,\"Someone, aiming a rifle, cautiously approaches an open hatchway to the ship. On board, someone\",\"Someone, aiming a rifle, cautiously approaches an open hatchway to the ship.\",\"On board, someone\",gold,keeps filming the cabin.,regards someone for the crowd.,crawls on the floor.,climbs on a jet skiing.\n3121,lsmdc3023_DISTRICT_9-11122,7627,Someone stands in the doorway where sunlight floods into the vessel. Someone,Someone stands in the doorway where sunlight floods into the vessel.,Someone,gold,flares and rushes onstage.,\"removes the rest of the hedge, letting the general drop down.\",\"collects his song, then glances nervously at someone.\",enters the ship and turns to find someone crawling away from him.\n3122,lsmdc3023_DISTRICT_9-11122,7632,\"In the passenger's seat, someone reloads his handgun. In the transport, a soldier\",\"In the passenger's seat, someone reloads his handgun.\",\"In the transport, a soldier\",gold,slides his shotgun down his waistband.,runs to the edge of the deck.,knocks the thug down onto the sand.,aims a pistol at someone.\n3123,lsmdc3023_DISTRICT_9-11122,7631,\"Outside, someone brings someone to the pickup and forces him into the backseat. In the pickup, someone\",\"Outside, someone brings someone to the pickup and forces him into the backseat.\",\"In the pickup, someone\",gold,rides with a blank stare.,sprint up to a busy sidewalk.,peers sadly over the city.,adjusts lighting on a man's bonnet.\n3124,lsmdc0028_The_Crying_Game-63608,5068,She turns toward him and undoes her hair. It,She turns toward him and undoes her hair.,It,gold,places it behind her desk and pulls her out.,'s in a photo.,falls around her shoulders.,takes off her coat.\n3125,lsmdc0028_The_Crying_Game-63608,5075,\"The camera travels with it, and we see, in a close - up, that she is a man. Someone\",\"The camera travels with it, and we see, in a close - up, that she is a man.\",Someone,gold,\"is seated at a counter in a smart office, wearing his hair and a mustache.\",\"stands through the ship, wanting to grab the rail which is connected to the curves of the wharf.\",crash with someone signing autographs.,\"sits there, frozen, staring at her.\"\n3126,lsmdc0028_The_Crying_Game-63608,5061,\"She puts her cheek against his. Someone, at the bar,\",She puts her cheek against his.,\"Someone, at the bar,\",gold,stares out at the window to the window.,digs nervously toward a ticket booth.,leans down to spit.,slams his drink down.\n3127,lsmdc0028_The_Crying_Game-63608,5067,He looks from the cricket whites that are hanging up behind a curtain to the photographs. She,He looks from the cricket whites that are hanging up behind a curtain to the photographs.,She,gold,\"dries his hands, going down her blood cream sample.\",hold.,turns toward him and undoes her hair.,\"joins him during the interview, bandages his hands, and pulls to the sofa.\"\n3128,lsmdc0028_The_Crying_Game-63608,5062,\"Someone, at the bar, slams his drink down. Someone\",\"Someone, at the bar, slams his drink down.\",Someone,gold,posts the space in the seat from the opposite side.,stands up to leave.,'s head appears and he opens the door.,gingerly cradles the old man.\n3129,lsmdc0028_The_Crying_Game-63608,5071,She walks into the bathroom. Someone,She walks into the bathroom.,Someone,gold,\"spies her in, and she closes her eyes.\",\"opens the cupboard door, locks it open a moment, short enough to suck the curtains down.\",\"lies there, looking at the picture, listening to the sound of running water.\",stands up in a mirror and rubs her hands.\n3130,lsmdc0028_The_Crying_Game-63608,5072,\"Someone lies there, looking at the picture, listening to the sound of running water. She\",\"Someone lies there, looking at the picture, listening to the sound of running water.\",She,gold,has stopped at the front of the car.,\"looks at someone, shakes out his anger and glances away pensively.\",\"comes out then, dressed in a silk kimono.\",has been put down.\n3131,lsmdc0028_The_Crying_Game-63608,5073,He draws her toward him. He,He draws her toward him.,He,gold,touches her temple.,begins to kiss her face and neck.,touches down again and smells it.,reminds someone of hiding.\n3132,lsmdc0028_The_Crying_Game-63608,5074,\"The kimono falls to the floor gently, with a whisper. The camera travels with it, and we\",\"The kimono falls to the floor gently, with a whisper.\",\"The camera travels with it, and we\",gold,see one taking a piercing.,\"see, in a close - up, that she is a man.\",see several patches of sunlight in the sun.,see a child of someone being tackled by an old nurse.\n3133,lsmdc0028_The_Crying_Game-63608,5076,\"She gives a strange little laugh, then reaches out to touch him. Someone\",\"She gives a strange little laugh, then reaches out to touch him.\",Someone,gold,hides her face in the mirror and screws the cigarette in her mouth.,smacks the hand away.,slams the bumping into the baby's head.,swishes her hand round.\n3134,lsmdc0028_The_Crying_Game-63608,5065,She tilts his glass back. He,She tilts his glass back.,He,gold,hangs up and climbs onto the cocked stool.,waves her hand as she looks at him and blinks.,aims the gun at his penis.,swallows it in one.\n3135,lsmdc0028_The_Crying_Game-63608,5077,Someone smacks the hand away. He,Someone smacks the hand away.,He,gold,fires up a explosive and tosses it to the floor.,hangs back the door and frowns at his daughter.,whirls a delighted smile as he smiles and takes a drink.,gets up and runs to the bathroom.\n3136,lsmdc0028_The_Crying_Game-63608,5064,She throws it back in one. She,She throws it back in one.,She,gold,lights a cigarette and dries their hands all over.,shoots and knocks fish out over the net.,takes the bottle herself and fills their glasses.,\"holds up another card, revealing her glazed eyes.\"\n3137,anetv_hOdSTik8_nw,13189,Two new guys arrive in the back. The coach,Two new guys arrive in the back.,The coach,gold,gathering stands in the field.,instructs boys to get a cleaning uniform.,enters a man playing the saxophone.,is on the field with the teams.\n3138,anetv_hOdSTik8_nw,13191,The red team is listening to the coach. The kids,The red team is listening to the coach.,The kids,gold,join the players in their proud little blue polo uniform and missing the ball determinedly.,start to vendor tricks towards the bases on the red countdown stick.,are playing the game.,score a line of the players.\n3139,anetv_hOdSTik8_nw,13188,The coach is then speaking to the parents. two new guys,The coach is then speaking to the parents.,two new guys,gold,practice boxing in a field with the same girl.,begin to begin to fight the promoter.,ride out on the ground.,arrive in the back.\n3140,anetv_hOdSTik8_nw,13190,The yellow bus drives past. the red team,The yellow bus drives past.,the red team,gold,hurries after the group.,loses control and drive on.,is listening to the coach.,passes to take circles and lead for someone.\n3141,anetv_hOdSTik8_nw,13192,The kids are playing the game. The kids,The kids are playing the game.,The kids,gold,are listening to the coach.,start making the ball in the playground.,laugh and fight back.,begin to play as men continue to hit.\n3142,anetv_hOdSTik8_nw,13187,The guy in the black in the back walks off. The coach,The guy in the black in the back walks off.,The coach,gold,and thief smacks it with his rifle.,\"is seated behind with his stick, then walks behind the bar and talks with an instructor at breezeway with the man who is still\",is then speaking to the parents.,leaps to his approach.\n3143,anetv_QV2QXt6eDdI,18142,A young child is seen washing various dishes in a sink while wearing gloves and running them under water. The boy,A young child is seen washing various dishes in a sink while wearing gloves and running them under water.,The boy,gold,continues to stick a bowl under the water while the camera pans around his movements.,is then seen cutting her hair while still look to the camera and showing how to paint.,dips the brush behind the towel and puts them on top.,continues shoveling before others left dishes along wearing different bottles and pouring them back to the sink.\n3144,anetv_VTwQgMELGVE,16985,\"Then, she grabs it with just her mouth and holds it up chugging the beer. She\",\"Then, she grabs it with just her mouth and holds it up chugging the beer.\",She,gold,frowns fearlessly on the poses.,\"takes one final gulp, and puts one hand on her throat, and picks her up.\",chugs and chugs until it is completely empty.,are standing very some distance away from her as they eat.\n3145,anetv_-DaX_1bBNAo,11720,She throws a dart across the room. A man with a hat,She throws a dart across the room.,A man with a hat,gold,is talking into the microphone.,is talking about her.,takes her hand in a hand gesture.,stands next to her.\n3146,anetv_-DaX_1bBNAo,11719,A woman wearing a bra is standing in a room. She,A woman wearing a bra is standing in a room.,She,gold,is wearing athletic clothing fixing out socks and fur coat.,is holding up a piece of hair paper and begins spreading it over her head.,throws a dart across the room.,is holding a rope on her abdomen.\n3147,lsmdc3080_THIS_MEANS_WAR-37382,10406,\"Avoiding eye contact, someone nods tensely. He\",\"Avoiding eye contact, someone nods tensely.\",He,gold,chucks the disk in the trash and storms off.,moves his binoculars to stare at the sky.,gives a confused look.,kicks the dashboard back on and shuts it.\n3148,lsmdc0028_The_Crying_Game-63214,13783,She wraps her arms around his neck and kisses him. Someone,She wraps her arms around his neck and kisses him.,Someone,gold,pushes him back against the wall.,steps out to the other side.,\"writhes on top of her, fumbling with his belt.\",gives him a hug.\n3149,lsmdc0028_The_Crying_Game-63214,13781,\"He moves his hips to a song as someone leads him over the beach, under a train trestle. He\",\"He moves his hips to a song as someone leads him over the beach, under a train trestle.\",He,gold,\"eyes widen as she watches him go, then digs in for a hug.\",sinks down on his knees toward her.,emerges at the cab just outside his own apartment building.,meticulously over a decorative root as police wave crashes across them buildings.\n3150,lsmdc0028_The_Crying_Game-63214,13786,A gun is put to his head. He,A gun is put to his head.,He,gold,'s rowing machine's motor.,\"turns around, drunkenly.\",uses a tape washer to cover.,gets a bullet into his belt.\n3151,lsmdc0028_The_Crying_Game-63214,13782,He sinks down on his knees toward her. She,He sinks down on his knees toward her.,She,gold,wraps her arms around his neck and kisses him.,\"looks at him, and her lips tremble.\",\"walks out, his pants and shorts slung over his head.\",\"rests one hand on her forehead, and still looking nervous.\"\n3152,lsmdc0028_The_Crying_Game-63214,13784,\"Someone writhes on top of her, fumbling with his belt. Someone\",\"Someone writhes on top of her, fumbling with his belt.\",Someone,gold,picks up a table tray.,sits and closes her rear door.,cocks one eye upward.,sticks the gun back into someone's pocket.\n3153,lsmdc0028_The_Crying_Game-63214,13778,He goes to kiss her. She,He goes to kiss her.,She,gold,wraps her legs up in front of him and smiles.,touches his other hand to her bosom and rises.,turns her head away.,brings the baby up to embrace.\n3154,lsmdc0028_The_Crying_Game-63214,13776,Her eyes flick around the carnival. They,Her eyes flick around the carnival.,They,gold,\"take in a couple of steps, o the elevator, and then the girls.\",is outside.,settle on a tall dark - haired man in a dark jacket.,move in flower marks.\n3155,lsmdc0028_The_Crying_Game-63214,13774,\"We can still see his hand, holding someone's. She\",\"We can still see his hand, holding someone's.\",She,gold,\"leans against the canvas, looking bored.\",chases him and swings him onto the ground.,clutches at the pilot's head.,\"looks at it, then takes a leafy look at someone and smiles.\"\n3156,lsmdc0028_The_Crying_Game-63214,13780,She pulls him over toward the water. Someone,She pulls him over toward the water.,Someone,gold,falls onto the roof.,gaze up as he sees his stance.,slips back to the railing and slips.,\"follows her, as she walks backward, drawing him on.\"\n3157,lsmdc0028_The_Crying_Game-63214,13785,A shadow falls across them. A gun,A shadow falls across them.,A gun,gold,is put to his head.,is crawling on the floor below.,shines off someone's brow.,buries in a woman's face.\n3158,lsmdc0028_The_Crying_Game-63214,13787,The gun whacks him across the cheek and he falls sideways. Someone,The gun whacks him across the cheek and he falls sideways.,Someone,gold,\"leaps off the criminal suit, knocking him backward.\",fires then disappears up through the downpour and his gaze goes to the window.,\"grabs her limp from the waist, then lifts her with her knees.\",scrambles to her feet and darts like an animal through a field.\n3159,lsmdc0028_The_Crying_Game-63214,13777,\"He staggers out, buttoning up. He\",\"He staggers out, buttoning up.\",He,gold,goes to kiss her.,returns with a furious gesture.,unbuttons his life vest.,slides down his pants.\n3160,lsmdc0028_The_Crying_Game-63214,13779,She turns her head away. She,She turns her head away.,She,gold,looks back at her masked parents.,puts on his t - shirt and shoves someone out of the bed.,pulls him over toward the water.,looks on and faces the user.\n3161,lsmdc0028_The_Crying_Game-63214,13773,Someone walks inside the canvas flap and vanishes from sight. We,Someone walks inside the canvas flap and vanishes from sight.,We,gold,push someone up on the sofa.,\"can still see his hand, holding someone's.\",gives them a intimate nod and follows.,dance the wall of furniture ransacked and striking.\n3162,anetv_xH7qxBIz-tU,5095,A man in a suit shows up on the screen. The man,A man in a suit shows up on the screen.,The man,gold,unlocks the controls while someone watches.,begins to fight with another man.,is then shown talking to two bowlers while holding tennis rackets.,throws and lands in the field.\n3163,anetv_xH7qxBIz-tU,5097,After fighting more the man in the suit resets his stance again. After the fighting continues another man,After fighting more the man in the suit resets his stance again.,After the fighting continues another man,gold,comes through the arcade as after an athlete flips.,perform over and over backwards several times until fall.,wins some joke and well.,shows up in the room and escorts the man in the suit out.\n3164,anetv_xH7qxBIz-tU,5096,The man in the suit resets his stance. After fighting more the man in the suit,The man in the suit resets his stance.,After fighting more the man in the suit,gold,resets his stance again.,starts walking and standing on the snow watch.,gets shot with the young men waiting.,wins the match with one another.\n3165,anetv_V-kMGMX-l2g,16787,\"Then, the woman and the young lady perform fitness exercise while the woman talks. After, the woman and the young lady stop exercising, and the woman\",\"Then, the woman and the young lady perform fitness exercise while the woman talks.\",\"After, the woman and the young lady stop exercising, and the woman\",gold,talk as the girls finish their emptied in the thatched gym.,lies white on the floor next to the emergency wall street area.,talks while making gestures with her hands.,vacuums a shoe and talk on a floor with features of her sister cast pegs splattered on the news - tiled floor.\n3166,anetv_V-kMGMX-l2g,16786,\"A woman stands on front a young lady and talks. Then, the woman and the young lady\",A woman stands on front a young lady and talks.,\"Then, the woman and the young lady\",gold,dance in the restaurant with people.,dance in a living room.,perform fitness exercise while the woman talks.,kick a giant pose while holding a box.\n3167,anetv_G8-soqkFiI8,16345,A woman on a beach begins to build a sand castle. A man,A woman on a beach begins to build a sand castle.,A man,gold,\"in yellow, a young woman plays a brief beach setting.\",comes over and begins to build the sand castle with her.,stands on a bridge and holds her sail high in the air.,leaps over a dirt arena.\n3168,anetv_G8-soqkFiI8,16346,A man comes over and begins to build the sand castle with her. Several people,A man comes over and begins to build the sand castle with her.,Several people,gold,are seen standing on the side behind him watching and jumps as fast as he can.,pass before going down the sand castle.,in the room hold medals.,walk by as they continue to build the castle.\n3169,lsmdc1028_No_Reservations-82957,6637,\"Inside the school, people walk down a corridor decorated with children's drawings. Someone\",\"Inside the school, people walk down a corridor decorated with children's drawings.\",Someone,gold,takes someone's hand and leads her away.,wakes in his feet.,defensively grabs a glass of magazine and tosses it to someone.,returns to a painting.\n3170,lsmdc1028_No_Reservations-82957,6638,Someone takes someone's hand and leads her away. Someone,Someone takes someone's hand and leads her away.,Someone,gold,stands frozen in a flickering doorway.,'s with her therapist.,takes a shallow bolt from her carrier.,rests her hands in his lap.\n3171,lsmdc1028_No_Reservations-82957,6636,\"People walk along the street and stop by the side of a yellow school bus which is parked outside. Inside the school, people\",People walk along the street and stop by the side of a yellow school bus which is parked outside.,\"Inside the school, people\",gold,are engaged in a game of soccer and soccer.,\"are surrounded a fountain, drinking, coffee against the morning sun.\",walk through the last floor of a brownstone exhibit's modern home.,walk down a corridor decorated with children's drawings.\n3172,lsmdc1028_No_Reservations-82957,6635,\"Scores of children make their way towards a large, brown brick building. People\",\"Scores of children make their way towards a large, brown brick building.\",People,gold,walk along the street and stop by the side of a yellow school bus which is parked outside.,pull themselves from the roof and study it.,are handing out items bordering the backyard.,\"shovel the height for some concrete, more savagely.\"\n3173,lsmdc1028_No_Reservations-82957,6634,Someone comes back with the coffee. Scores of children,Someone comes back with the coffee.,Scores of children,gold,are parked in a queue.,inside poke their back coffee.,push him on their laps.,\"make their way towards a large, brown brick building.\"\n3174,lsmdc3079_THINK_LIKE_A_MAN-36573,17336,\"Cooking in her kitchen, someone gets a text. He\",\"Cooking in her kitchen, someone gets a text.\",He,gold,has a shrimp sitting in it.,\"sits back in the tub, listening to the sound.\",leans in too close.,installs some of the roast insects.\n3175,anetv_JjRSGzdwtc0,7161,A woman is seen walking along a field and throwing a jump rope to another. Several clips,A woman is seen walking along a field and throwing a jump rope to another.,Several clips,gold,are then shown of people jumping on different angles as people cheer on the side.,are followed by people jump roping in various locations as well as with each other.,are shown of people running on different side and tricks to one another in the end as well as bumping into one another.,are shown of the women bouncing in front of the camera.\n3176,anetv_JjRSGzdwtc0,7162,Several clips are followed by people jump roping in various locations as well as with each other. The group,Several clips are followed by people jump roping in various locations as well as with each other.,The group,gold,continuously ride around and ends with people watching on the sides.,then begin hanging up signs and jumping on the side and ends between them jumping up and down on their bikes.,continue dancing and jumping around public places and ends with a baby holding a rope.,continues cheering with one another and ends by jumping and throwing the flag and others watching on the side.\n3177,anetv_gdisMpHS668,6338,Two women are seen standing before a christmas tree with young children present as well. The people then all,Two women are seen standing before a christmas tree with young children present as well.,The people then all,gold,push their potatoes and speak to one another and end by stopping to look at one another.,take pictures while going around the kite with others watching from behind.,begin adding sprinkles and holding it as well as decorations around.,move around one another putting ornaments on the tree in fast motion.\n3178,anetv_gdisMpHS668,6339,The people then all move around one another putting ornaments on the tree in fast motion. The girls,The people then all move around one another putting ornaments on the tree in fast motion.,The girls,gold,continue painting the house.,continue putting items on the tree and end by smiling to the camera.,laugh with one another and end by laying down harder.,continues walking around the yard and laughing to the camera.\n3179,lsmdc3075_THE_SITTER-35013,14731,\"Someone throws a punch then waits for his reaction. He throws another punch, but Ricky\",Someone throws a punch then waits for his reaction.,\"He throws another punch, but Ricky\",gold,\"posts the notes atop the chair by tapping as he stands, staring off, at someone's surprise.\",\"co - appears in the great room, point his way through someone, seems to be holding it.\",\"is ecstatic, wriggling more, now, reaching down and picking someone up off the balcony.\",blocks it and flips him onto a coffee table.\n3180,anetv_fhEvf47Jqi8,15780,A man is seen speaking to the camera and leads into him holding a set of tools and presenting them to the camera. He then,A man is seen speaking to the camera and leads into him holding a set of tools and presenting them to the camera.,He then,gold,speaks to the camera while speaking to different parts while cutting one leg and having them locked.,puts the bucket into the oven and continues blowing the leaves out of the frame.,uses the tools on bushes nearby while still looking to the camera to speak.,demonstrates how to shoot a bottle before and begins to play.\n3181,lsmdc3035_INSIDE_MAN-1825,4034,\"Someone sits motionless, one hand on top of the desk. An image\",\"Someone sits motionless, one hand on top of the desk.\",An image,gold,of a volume on stage is out by a eleventh.,appears on a screen.,swings from someone's arm and tugs on a pair of white leather gloves.,of the tv featured man spots him and starts to follow the manager.\n3182,lsmdc3035_INSIDE_MAN-1825,4033,\"Hood lowered, he wears his mask and shades. Someone\",\"Hood lowered, he wears his mask and shades.\",Someone,gold,switches on his coat and moves away awkwardly.,\"takes it off, then glimpses his colleague.\",appears on it and her jaw drops.,\"sits motionless, one hand on top of the desk.\"\n3183,lsmdc3035_INSIDE_MAN-1825,4031,They eye the logo on the criminals' van - perfectly planned painting. Someone,They eye the logo on the criminals' van - perfectly planned painting.,Someone,gold,shakes someone's hand.,sneaks about in aisle and begins taking their luggage out of an envelope.,hands someone a phone.,climbs up the stairs.\n3184,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11765,Someone tosses him a Basilisk's Fang. He,Someone tosses him a Basilisk's Fang.,He,gold,\"catches the brother's arm, then swings it.\",smacks the stranger's fist.,sinks it in to the diadem.,picks up again and hits someone's credit bolt on the door.\n3185,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11768,\"As they back away, the doors slam shut. Gasping, someone\",\"As they back away, the doors slam shut.\",\"Gasping, someone\",gold,takes a deep breath.,\"makes to snowy, then punches someone in the gut.\",leans against a pillar.,signals the blast and vanishes in time into the forest.\n3186,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11760,Someone magics a protective shield. Someone,Someone magics a protective shield.,Someone,gold,\"stands, his head hunched in the room.\",\"runs behind them, rounding a corner as he maneuvers away.\",falls back against some broomsticks and throws them to his friends.,talks to someone in a long dress.\n3187,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11767,Someone kicks the diadem back in to the burning room. Three fiery images of someone,Someone kicks the diadem back in to the burning room.,Three fiery images of someone,gold,\"appear, surging towards them.\",freezes bits from the ceiling onto the pool table.,backing away.,secures a gold tape amid the handwritten letters.\n3188,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11759,\"Terrified, someone and his cronies begin scrambling up a high stack of furniture. Reunited, people,\",\"Terrified, someone and his cronies begin scrambling up a high stack of furniture.\",\"Reunited, people,\",gold,\"finishes supper, walks into a fire and drinks.\",\"corpulent with weapons, are leading them through a tent, picking up helmets and helmets and robes to their performance.\",see flames ahead of them.,\"killing onto the floor, continue to jump.\"\n3189,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11766,Black smoke rises from it. Someone,Black smoke rises from it.,Someone,gold,\"places a narrow, telescope box down beside him.\",kicks the diadem back in to the burning room.,opens the cabinet as someone takes a bit of caviar out of it.,are vault over a vast race!\n3190,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11771,\"Someone turns anxiously, to someone. He\",\"Someone turns anxiously, to someone.\",He,gold,manages to running across the channel climbing into the tunnel.,\"crouches down, beside someone.\",is gripping a phone to the chest of an ambulance.,\"cheerfully surplus a look of discovery on his face, then a frown.\"\n3191,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11762,They swing their brooms round. Someone,They swing their brooms round.,Someone,gold,notices the police officers outside.,stands rooted to the spot.,\"flies past, just missing someone's outstretched hand.\",holds up a mallet.\n3192,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11770,\"Disheveled and dirty, people approach Herry. Someone\",\"Disheveled and dirty, people approach Herry.\",Someone,gold,\"points to the center of the bike, tapping his fingers together.\",imagines a man watching him.,\"turns anxiously, to someone.\",\"takes her in his arms, when her of a far wiggle hurtling through his doorway.\"\n3193,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11753,\"It unites with a second wave, and pursues people. Someone\",\"It unites with a second wave, and pursues people.\",Someone,gold,stands on the clouds.,knocks over furniture to slow it down.,spots her at the window.,slouches at her side and he kisses her on the cheek.\n3194,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11772,\"Someone closes his eyes, and takes a deep breath. Someone\",\"Someone closes his eyes, and takes a deep breath.\",Someone,gold,holds it out of his eyes.,breathes through his mouth.,flings her wand at someone.,sets down his drawing drawing as he stares at his teacher.\n3195,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11756,Someone tosses his burning wand in to the fire. People,Someone tosses his burning wand in to the fire.,People,gold,shoot through toll air.,meet in a brief chute as they sink in.,shoot the saw and looks for a long trunk.,sprint ahead of the flames.\n3196,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11763,\"Someone leads the way, as they swerve to avoid tumbling, burning furniture. Someone\",\"Someone leads the way, as they swerve to avoid tumbling, burning furniture.\",Someone,gold,dismounts from the billiard table.,\"bursts to open door in a downed - upper window, one through a glass door past which the hatchback pulls up one of the\",aims her wand at the flames up ahead.,sends a swarm of carnies back at the alleyway in the airport.\n3197,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11758,\"In a different aisle, someone is pursued by a flaming serpent. Terrified, someone and his cronies\",\"In a different aisle, someone is pursued by a flaming serpent.\",\"Terrified, someone and his cronies\",gold,creep over the heads of the hand raft.,begin scrambling up a high stack of furniture.,rush out to see someone start on it.,sit back with their grunts.\n3198,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11755,Someone tries to extinguish the flames from the tip of his burning wand. Someone,Someone tries to extinguish the flames from the tip of his burning wand.,Someone,gold,stops suddenly and glances back.,struggles to remain composed.,strides closer to someone as she pitches away from the couch.,tosses his burning wand in to the fire.\n3199,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11751,\"He sees the diadem wedged in the sofa, and wrenches it out. They\",\"He sees the diadem wedged in the sofa, and wrenches it out.\",They,gold,slide the page in all directions.,throw some coins into the cup while eating.,lose as it comes in from a low angle surrounding the pool.,clamber back down to the floor.\n3200,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11761,\"Losing their grip, people fall. They\",\"Losing their grip, people fall.\",They,gold,cling to a carpet by their fingertips.,weave through the back structure.,blur across the countryside.,\"squat together, to hug someone.\"\n3201,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11754,The furniture is consumed by the raging inferno. The flames,The furniture is consumed by the raging inferno.,The flames,gold,and sticks are burnt into a campfire.,take the form of a fiery winged dragon.,like hoses fall on his nose.,\"peel into the night, parked.\"\n3202,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11750,\"Someone finds a blue Pixie in the junk, and tosses it aside. More Pixies\",\"Someone finds a blue Pixie in the junk, and tosses it aside.\",More Pixies,gold,\"come out of someone's mouth, but he just stares.\",appear walking around the far wall.,fly out of the mountain of furniture.,has secured on the rim of the door frame.\n3203,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100034,11773,Someone breathes through his mouth. Someone,Someone breathes through his mouth.,Someone,gold,stops him in a shabby way and hurries to the stairs.,\"lifts the hood, revealing a small black van.\",extends the microphone to him like a fairy's was won.,is curled up in the boat house.\n3204,anetv_WQmJrfjOF7o,11980,Another man is seen taking off tiles as well as more shots are shown of the floor. The men,Another man is seen taking off tiles as well as more shots are shown of the floor.,The men,gold,continue speaking and show several clips of men as well as walking and holding the kites in the air.,step up as men lift one out and in speaking to one another.,begin to cut smoke and put down plaster.,\"measure the floor, cut out pieces, and put them all along the floor.\"\n3205,anetv_WQmJrfjOF7o,18760,The man walked to the kitchen and put thread on the floor. The man,The man walked to the kitchen and put thread on the floor.,The man,gold,put the towel off the sides of the car wash and began waving to the camera.,began placing the tiles on the floor and measuring the corner and cutting the tiles.,jumps off with a tree.,removes the shoe from the sink.\n3206,anetv_WQmJrfjOF7o,11981,\"The men measure the floor, cut out pieces, and put them all along the floor. He\",\"The men measure the floor, cut out pieces, and put them all along the floor.\",He,gold,\"continues, occasionally read them from the ceiling.\",peers around after the smoke.,rolls along the floor as well as dip sponges into the water and smiling to the camera.,each remove items from the car.\n3207,anetv_WQmJrfjOF7o,11979,A camera pans all around a floor and leads into a man walking into the room. Another man,A camera pans all around a floor and leads into a man walking into the room.,Another man,gold,is seen kneeling on the ground and kicks the man close.,sits on top of a camel doing a gymnastics step on the way back and fourth.,is seen taking off tiles as well as more shots are shown of the floor.,is seen speaking to the camera while holding his hands up and working.\n3208,anetv_Ix2vIutdeNQ,16481,A smiling man in sunglasses opens mouthwash and gargles. The man,A smiling man in sunglasses opens mouthwash and gargles.,The man,gold,shakes his hand.,spits in a cup.,looks at the camera again.,turns to her and talks.\n3209,anetv_Ix2vIutdeNQ,16483,A lady removes a plaque from the wall. We,A lady removes a plaque from the wall.,We,gold,carpet her room with an adhesive table.,see a closing screen.,see the trainer kicking a yellow skateboarding.,see a woman's wooden canopy wrapping.\n3210,anetv_JAO5R6VA8r4,13312,The man then begins jump roping over and over again. He,The man then begins jump roping over and over again.,He,gold,\"jumps across the board, flips several times and flips along with his board and continues to walk around with a panel of man looking\",continues to jump rope and ends by walking out of frame.,\"stunts the unicycle before running, and grabs someone as she runs.\",swings into a pit of a pool and he throws the ball back while another person waving his legs to the camera.\n3211,anetv_JAO5R6VA8r4,13311,A shot of a room is shown when a man walks into frame. The man then,A shot of a room is shown when a man walks into frame.,The man then,gold,begins playing against various players playing by one another.,begins jump roping over and over again.,solves a rubix cube and puts tools back on.,dances with the mallet and continues laying tiles together.\n3212,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92974,17531,\"A ghostly girl in school uniform shouts in someone's face, then hovers high above their heads. She\",\"A ghostly girl in school uniform shouts in someone's face, then hovers high above their heads.\",She,gold,zooms into a cubicle and dives head first down the lavatory pan.,\"grabs someone's arm, leads him into the hall.\",examines the serpent's height for a moment.,lingers and props himself up on his elbows.\n3213,anetv_PJgy8J1f3jg,9055,Man is standing in an open court playing paintball walking and hiding behind cones. other players,Man is standing in an open court playing paintball walking and hiding behind cones.,other players,gold,seem to have passed the timed agent who is watching them closely.,are then shown spinning each other around while aiming like a javelin.,are standing inside a house and gets out to start shooting someone from the other team and hiding behind stacks.,are getting thrown to the sidelines.\n3214,anetv_PJgy8J1f3jg,9056,People from the other team are shooting and hiding himslf behind a small wooden bridge on the court. men,People from the other team are shooting and hiding himslf behind a small wooden bridge on the court.,men,gold,are running on the field championship track.,are toting baskets on a competition while the people in the people stand on the deck behind their bodies and swim in.,ride the kayaks in red rafts to go down the river.,are in a small paintball court playing.\n3215,anetv_PJgy8J1f3jg,3431,A camera pans all around a paintball course and shows a person aiming off into the distance. More people,A camera pans all around a paintball course and shows a person aiming off into the distance.,More people,gold,are shown throwing it down the pit while others watch on the side.,are seen kneeling down and pushing down the board while the camera captures them from sight.,are seen throwing the ball and speaking to a camera.,are seen walking around with gear on and aiming guns.\n3216,anetv_PJgy8J1f3jg,3432,More people are seen walking around with gear on and aiming guns. People,More people are seen walking around with gear on and aiming guns.,People,gold,gesture to themselves and continue to aim off in the distance and run around.,begin turning the object around while looking off into the distance of the game.,put on the object and use to hit the targets.,carry more shots as they silver down the the lift.\n3217,lsmdc0003_CASABLANCA-46800,1979,They follow someone to the cashier's window. Someone,They follow someone to the cashier's window.,Someone,gold,smashes through a shelf and switches on a lamp.,puts his chips through the window to the cashier.,\"turns away, then begins dancing.\",lights up a keg.\n3218,lsmdc0003_CASABLANCA-46800,1977,Someone stands at the roulette table. Two gendarmes,Someone stands at the roulette table.,Two gendarmes,gold,lie at the center of the court.,hurry toward the house.,uses his cell phone.,approach him from behind.\n3219,lsmdc0003_CASABLANCA-46800,1974,Someone walks up to someone. Someone,Someone walks up to someone.,Someone,gold,lowers his flashlight and crouches on a tripod by the window.,looks on solemnly as someone shuts herself.,\"follows the first, green man across the room toward another card.\",walks over to one of his officers.\n3220,lsmdc0003_CASABLANCA-46800,1975,Someone walks over to one of his officers. The officer,Someone walks over to one of his officers.,The officer,gold,walks toward the camera.,gives the money to someone.,\"finds another envelope under his own arm, then gets to his feet and starts toward his camera.\",salutes and goes off to speak to the guards.\n3221,lsmdc0003_CASABLANCA-46800,1982,Someone comes out to the middle of the floor. Someone,Someone comes out to the middle of the floor.,Someone,gold,slips a cage through before a metal shelf.,\"sees people and smiles to himself, who remains seated.\",speaks in a very calm voice.,\"hangs up, and starts to run across the canopy sprawling times.\"\n3222,lsmdc0003_CASABLANCA-46800,1983,Someone speaks in a very calm voice. A few customers,Someone speaks in a very calm voice.,A few customers,gold,come up from the bar together.,\"are directed toward someone, who is eating ice cream.\",\"have heard walking across the street by someone, who's standing outside.\",are on the point of leaving.\n3223,lsmdc0003_CASABLANCA-46800,1980,\"We move to someone's table, who has witnessed the event. Someone\",\"We move to someone's table, who has witnessed the event.\",Someone,gold,reaches into an earpiece.,appears in front of his book as he calls out the boarding name.,stands impassively as they drag someone off.,\"cheers; as someone comes out, it flips back, then the movie cuts back to reveal the dancers from first.\"\n3224,lsmdc0003_CASABLANCA-46800,1976,The officer salutes and goes off to speak to the guards. Someone,The officer salutes and goes off to speak to the guards.,Someone,gold,hands the ball back to his father.,walks over to someone's table as someone comes down the stairs.,\"lies on some stuffed tracker under a helmet, and the others get closer to him, getting his belly pierced.\",pulls over and pins the door around her.\n3225,lsmdc0003_CASABLANCA-46800,1981,An air of tense expectancy pervades the room. Someone,An air of tense expectancy pervades the room.,Someone,gold,comes out to the middle of the floor.,strides into the computer's center office with a whoop.,turns his face down towards the water.,sits beside him on a dark hillside.\n3226,anetv_8xvoAyY70I8,12958,Kids are wasing the dishes on a small waterjet. kids,Kids are wasing the dishes on a small waterjet.,kids,gold,joins them and does some take in the waves.,are standing in camp washing dishes and setting the camp.,are sitting in bleachers watching.,are pleased to see her.\n3227,anetv_8xvoAyY70I8,12184,A young girl is seen bending forward with another child standing right behind her holding a net. The girl sticks various objects under some running water and the boy,A young girl is seen bending forward with another child standing right behind her holding a net.,The girl sticks various objects under some running water and the boy,gold,sits in and holding up the coin.,hands her a spoon to wash.,attempts to push and the girl continues to return to the flame.,extends between two bars and gives her the eye cream.\n3228,lsmdc3029_GREEN_ZONE-13612,8263,\"A guard opens a chain - linked gate for them and they turn a corner. As the strapping guard unlocks a cell, someone\",A guard opens a chain - linked gate for them and they turn a corner.,\"As the strapping guard unlocks a cell, someone\",gold,steps through a doorway into the middle of the house plaza.,climbs out onto the balcony deck overlooking the dance scene.,notices his wrecked cassette d..,eyes two guards in a comfy caged in office.\n3229,anetv_oFtwNVuasmU,19174,There are many people out doing many different activities on the water. Some of the boys do jumps off the bridge and other,There are many people out doing many different activities on the water.,Some of the boys do jumps off the bridge and other,gold,cheerleaders start in at the same time.,is shown by making lively music.,tubers pass off in the water.,are riding behind a boat.\n3230,anetv_oFtwNVuasmU,19175,Some of the boys do jumps off the bridge and other are riding behind a boat. it,Some of the boys do jumps off the bridge and other are riding behind a boat.,it,gold,\", for a high causes, still out of the scene by a defender that the great blue waterfall.\",is then shown of him jumping onto a low mountain of the green that is at the end of the rope.,\"rolls in on the person while sliding, knocking comes to the ground.\",'s a nice summer day to be out and enjoy fun in the sun by the water.\n3231,anetv_oFtwNVuasmU,19173,On a river outside the boys are walking down the street as cars pass by. There,On a river outside the boys are walking down the street as cars pass by.,There,gold,are inside the river jumping up and down.,are more customers and what the game is done.,continue to lift off their cheeks.,are many people out doing many different activities on the water.\n3232,lsmdc3027_GET_HIM_TO_THE_GREEK-12446,2481,\"He Gazes at the street, many stories below. Someone\",\"He Gazes at the street, many stories below.\",Someone,gold,goes through that museum of strawberries.,arrives at the pool.,touches a large x - rays.,sees every box in a map and burns a someone's car.\n3233,lsmdc3027_GET_HIM_TO_THE_GREEK-12446,2484,The watery cloud of blood grows. Someone,The watery cloud of blood grows.,Someone,gold,\"gazes down at him sympathetically, then shakes his head.\",places snowboard above someone.,glances down at someone then on his back.,hands him an envelope.\n3234,anetv_E_6XYa_WO8I,811,A man starts chopping a piece of wood with an ax. He,A man starts chopping a piece of wood with an ax.,He,gold,uses a third ax to cut it over the split.,takes a small piece of wood and dips it in a log.,picks the wood back up and throws it into a pile.,removes the ax from a stone cabinet and starts to chop it.\n3235,anetv_E_6XYa_WO8I,812,He picks the wood back up and throws it into a pile. He,He picks the wood back up and throws it into a pile.,He,gold,then explains how to hit a ball using flaming rakes.,picks up a new piece of wood and chops that one.,lands in a bowl of water.,\"fingers the light, they look on someone's.\"\n3236,anetv_Exu0qsz42fQ,2356,A woman is on a piano playing along with the child. They,A woman is on a piano playing along with the child.,They,gold,have a small audience sitting and watching them perform.,grow louder as they turn to see someone.,stand close up in place as they continue to play.,explain how to play the violin and play.\n3237,anetv_Exu0qsz42fQ,2355,Using his foot for the base and drumming on the snare like a natural. A woman,Using his foot for the base and drumming on the snare like a natural.,A woman,gold,is on a piano playing along with the child.,is giving a tutorial on how to make a manicure.,is on a balcony and flipping the ax into a smaller hole.,\"is standing behind him, raising his hands as he does so.\"\n3238,anetv_IJ76Wtgg2g4,15168,A gymnast is seen standing with her arms up and jumps up onto a beam. She,A gymnast is seen standing with her arms up and jumps up onto a beam.,She,gold,begins performing a gymnastics routine on the beam.,continues flipping on the beam and ends by jumping down and roping on a rope.,climbs up and runs out of frame as well as frame.,flips back and fourth on an exercise beam while others watch on the side.\n3239,anetv_IJ76Wtgg2g4,15169,She begins performing a gymnastics routine on the beam. She,She begins performing a gymnastics routine on the beam.,She,gold,turns back to offer her her routine.,continues performing cartwheels as well as flipping to the beam.,goes back and forth and performs very cycle exercises.,jumps and flips herself around and ends by jumping down with her arms up.\n3240,anetv_IJ76Wtgg2g4,10395,\"She gets on the bar and begins her performance, taking her time with her moves doing incredible flips forwards and backwards and landing perfectly on the bar. She is pretty amazing, her\",\"She gets on the bar and begins her performance, taking her time with her moves doing incredible flips forwards and backwards and landing perfectly on the bar.\",\"She is pretty amazing, her\",gold,\"balancing as she does flips, does n't flip.\",\"knees breaking as she jumps, flips, and lands on the bench.\",moves and moves to do this several more times while doing various panned cartwheels to continue their jump.,continues on very gracefully and beautifully.\n3241,anetv_IJ76Wtgg2g4,10396,\"She is pretty amazing, her continues on very gracefully and beautifully. When she is done with her performance she\",\"She is pretty amazing, her continues on very gracefully and beautifully.\",When she is done with her performance she,gold,starts doing splits and throwing up red felt dolls again.,\"dances multiple times, performing with the same kinds of hula hula hoops around her.\",walks off to her.,does a triple flip down off the bar and lands.\n3242,anetv_C0gGikr-Dw8,12557,A child attempts to break a pinata by hitting it with a stick over and over again. A child,A child attempts to break a pinata by hitting it with a stick over and over again.,A child,gold,is seen sitting down in the chair and looking at the camera.,walks out of frame.,\"stands poised to hit a large, round pinata, designed to look like a giant soccer ball.\",kneels down behind him.\n3243,anetv_C0gGikr-Dw8,17183,\"A little boy swings a bat, hitting the ball over and over. The people\",\"A little boy swings a bat, hitting the ball over and over.\",The people,gold,are thrown onto a swing set.,\"are gathered around him, watching.\",are shown on the trampoline watching.,hit ball back and fourth while laughing with one another and watching behind him.\n3244,anetv_C0gGikr-Dw8,17182,A large soccer ball shaped pinata is hanging from a string. A little boy,A large soccer ball shaped pinata is hanging from a string.,A little boy,gold,watches as the green boy points his right finger at the pinata.,\"swings a bat, hitting the ball over and over.\",is in th pool playing the boy while another toddler stands on the table.,walks away from the sand pit and both teammates get backward.\n3245,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26193,15718,Cloud takes on human form and materializes into someone. She,Cloud takes on human form and materializes into someone.,She,gold,\"breathes the powerful energy which snaps into frenzied searching, fruits, skill.\",\"puts his hand on someone's shoulder and returns to the window, which closes down.\",\"continues bowed in agony, but branches looms and out, high above pool.\",holds him out at arm's length and gazes tearfully at him.\n3246,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26193,15717,The shattered pieces dissolve into smoke. Cloud,The shattered pieces dissolve into smoke.,Cloud,gold,spill from the ship.,leads the sound the people marching in someone's direction.,takes on human form and materializes into someone.,glow in their upturned windows while whistling.\n3247,anetv__wHyOKf_fhc,9702,An advertisement display the presentation of two dancers. The couple,An advertisement display the presentation of two dancers.,The couple,gold,spends at a hip restaurant.,dance in slow motion with batons on the background.,is dancing holding hands turning both around.,lifts their feet on a stage while are applauding for the camera.\n3248,anetv__wHyOKf_fhc,9703,The couple is dancing holding hands turning both around. The woman,The couple is dancing holding hands turning both around.,The woman,gold,puts his toe up into the ground.,turns around holding the hand of the man.,looks startled on it.,\"shatters them and retrieves it, then lifts it off into the air on a rug.\"\n3249,anetv_s2VpBgSWIPg,11473,A group of teenaged kids are playing hopscotch with a man. He,A group of teenaged kids are playing hopscotch with a man.,He,gold,is dancing against a large black box with no polish.,\"stops running and walks off the sidelines, past people watching each other.\",scrubs a child in the wall.,points where they are to jump.\n3250,anetv_s2VpBgSWIPg,17186,A group of people are standing outside a building. They,A group of people are standing outside a building.,They,gold,are involved in a bucket of water.,take turns jumping across a hopscotch game on the concrete.,are showing a person with a metal piece.,is standing next to a building doing various jumping beam.\n3251,anetv_s2VpBgSWIPg,11475,He draws on the concrete with chalk. A group of boys,He draws on the concrete with chalk.,A group of boys,gold,are on campus to school behind his coach.,flatten themselves against the wall.,go out into a dirt chapel.,begin to play as well.\n3252,anetv_YTBmMSIczEc,9909,\"Once he is finished, the man is pictured being a goal as an opponent in a red uniform tries to hit the puck in the goal. He comes back to talk to the camera and then a black screen\",\"Once he is finished, the man is pictured being a goal as an opponent in a red uniform tries to hit the puck in the goal.\",He comes back to talk to the camera and then a black screen,gold,hits him briefly before moving.,is pictured with the word hockey community shown.,appears to gear up.,appears with yellow highlights and sumo wrestlers begin to talk and shooting the ball across the mat to continue the ball workout.\n3253,anetv_YTBmMSIczEc,4156,They are using sticks to hit at the puck back and forth. The players,They are using sticks to hit at the puck back and forth.,The players,gold,line up and back to the officers watching them.,kick a ball and prepare on their particular set sticks.,\"fight over the puck, trying to get it into the goal.\",continue speaking to the camera and begin hitting a ball with each other.\n3254,anetv_YTBmMSIczEc,4155,A group of hockey players are on the ice in a gym. They,A group of hockey players are on the ice in a gym.,They,gold,are talking and playing with a volleyball.,engage in a game of field hockey.,are competing in a game of soccer matches as they try to win.,are using sticks to hit at the puck back and forth.\n3255,anetv_YTBmMSIczEc,9908,\"A hockey player with short black hair and a white and green uniform is shown. Once he is finished, the man\",A hockey player with short black hair and a white and green uniform is shown.,\"Once he is finished, the man\",gold,is pictured being a goal as an opponent in a red uniform tries to hit the puck in the goal.,points to the table and views several more athletes.,stand on the line.,begins trying to goalkeeper the ball and the yellow s hits the ball and chases the man to the goal.\n3256,anetv_etG65un_AiQ,11178,Two men on a jet ski shake their hair. A person name is on the screen and we,Two men on a jet ski shake their hair.,A person name is on the screen and we,gold,see men riding snowboards up the slope.,see a man jet ski.,see a guy standing on a slack line.,see a man talking and shaving with a subscription utensil.\n3257,anetv_etG65un_AiQ,11179,Another name and another man on the jet ski. We,Another name and another man on the jet ski.,We,gold,see the person on roller blades.,see the man as he prepares to ski riding behind the boat.,\"see a tiny circle of people, then cover in wake screens.\",see a person paddling and driving on the raft without slowing.\n3258,anetv_etG65un_AiQ,11177,A jet ski is parked and a man is riding one. We,A jet ski is parked and a man is riding one.,We,gold,see a man's name on the screen and a man behind a boat and a man jet skiing and flipping around.,are slowly skiing down a hill of snow.,see snowy skaters are down a hill.,is pulling off his surfboard.\n3259,anetv_9WhPG89P-tg,18266,They are talking as a barber is cutting some men's hair. The barber,They are talking as a barber is cutting some men's hair.,The barber,gold,moves his hair up and puts them into place.,uses clippers to trim and clean up.,\"uses shaving brush on the guy's beard and laying it around his back, while he glares.\",puts it back and hands it to a guy.\n3260,anetv_9WhPG89P-tg,18265,A group of people are seated inside a waiting room. They,A group of people are seated inside a waiting room.,They,gold,are being shaken by a large bull.,are sitting on a machine.,are immediately twisted with teenagers.,are talking as a barber is cutting some men's hair.\n3261,anetv_9WhPG89P-tg,9407,People are sitting in chairs inside a barbershop. man is sitting in a chair and the barber behind him,People are sitting in chairs inside a barbershop.,man is sitting in a chair and the barber behind him,gold,is shaving his hair.,is combing and combing his hair.,is waiting for the tattoo.,is showing a company magic book.\n3262,anetv_iaKlx11RAiY,7769,Comic girls are dancing in a white room and singing rock paper scissors. a pink bull,Comic girls are dancing in a white room and singing rock paper scissors.,a pink bull,gold,is standing watching the little girl.,sits between the men in the bed and singing at the top of the hill.,is behind the girls.,is wearing a white uniform with the text to her.\n3263,anetv_iaKlx11RAiY,4320,\"The girl with the black hair has a wind up on her back and her hand keeps flying off at times, then we see a pink hippo. At the end her hand flies and comes back with a remote and the other girl\",\"The girl with the black hair has a wind up on her back and her hand keeps flying off at times, then we see a pink hippo.\",At the end her hand flies and comes back with a remote and the other girl,gold,is explaining to do it in time.,is seen climbing up to the next table.,takes her hair and starts to discuss the weather phone.,takes it and acts as if she is changing channels.\n3264,lsmdc1041_This_is_40-9045,10034,\"Now, a waiter pushes in a dessert cart. Now someone\",\"Now, a waiter pushes in a dessert cart.\",Now someone,gold,opens a carton of crushed doors to a slope.,does a magic trick.,enters an mayhem with people.,has synchronized to the floor.\n3265,lsmdc1041_This_is_40-9045,10032,Someone pulls up his robe and aims his butt at someone. They,Someone pulls up his robe and aims his butt at someone.,They,gold,walk out a side window and scramble to their feet.,look slightly wearily to the bed.,open their robes and embrace.,\"breaks away from the discreetly as he moves, almost backwards.\"\n3266,lsmdc1041_This_is_40-9045,10036,\"Now, they binge on desserts. She\",\"Now, they binge on desserts.\",She,gold,shoves it in her mouth.,guides a little gun across the table vault.,takes a heavy breath.,chases him then dashes out of the forest.\n3267,lsmdc1041_This_is_40-9045,10039,Someone squeezes it and gives her a loving smile. They,Someone squeezes it and gives her a loving smile.,They,gold,share a tender look.,\", sharpening players are taken from his colander.\",family having bullies in front have him embrace.,rips someone his arm and hangs again.\n3268,lsmdc1041_This_is_40-9045,10038,Someone holds out her hand. Someone,Someone holds out her hand.,Someone,gold,\"lies dead, motionless, lying, transfixed.\",squeezes it and gives her a loving smile.,\"takes a few steps, then extends her hand to the other windows.\",lets out the remaining whisper.\n3269,lsmdc1041_This_is_40-9045,10037,Bits of dessert fall out. Someone,Bits of dessert fall out.,Someone,gold,holds out her hand.,strewn infinitely down the dog line.,drifts ahead with a clink.,bursts into someone's room and just hurls the bucket into the hall.\n3270,lsmdc1041_This_is_40-9045,10033,\"Lying down, they passionately kiss. Now, a waiter\",\"Lying down, they passionately kiss.\",\"Now, a waiter\",gold,approaches a bar and people as they exit the hall.,\"enters a restaurant, showing hold of his wedding ring.\",pushes in a dessert cart.,arrives before the closed door.\n3271,lsmdc1041_This_is_40-9045,10041,They linger in the car as people emerge from the house. Someone,They linger in the car as people emerge from the house.,Someone,gold,is harsh and tired of the walk their paths.,\"speeds off, thumping its way between the trees.\",eyes a bearded friend who leans forward tight in her chair.,turns to someone with a cold stare.\n3272,lsmdc1041_This_is_40-9045,10040,They share a tender look. They,They share a tender look.,They,gold,stares at the thin soldier.,sleeps while a large makeup brush leads closely on a table near the middle of the watch.,turn back to the road.,grabs his daring back.\n3273,anetv_byVhCu3KH1g,5632,\"Shoe polish supplies in a store, then people in a classroom get instructions about shoe polish. The teacher\",\"Shoe polish supplies in a store, then people in a classroom get instructions about shoe polish.\",The teacher,gold,demonstrates to polish a boot using a tissue.,takes pictures of an old men together.,\"gets a bottle of green paper, while the client wipes it right front.\",goes in the vacuum and on class.\n3274,anetv_byVhCu3KH1g,5633,\"The teacher demonstrates to polish a boot using a tissue. Then, a girl\",The teacher demonstrates to polish a boot using a tissue.,\"Then, a girl\",gold,polish the shoe of a woman using a cloth.,adds the robe to the nail of the barn.,is sitting behind him and talk about how to step a little recorder.,wets a white cloth on the floor.\n3275,lsmdc0007_DIE_NACHT_DES_JAEGERS-49521,16883,\"As she continues, she puts aside the book and takes up her mending. She\",\"As she continues, she puts aside the book and takes up her mending.\",She,gold,returns her gaze to someone.,mends for a few moments.,returns her gaze.,\"steps out a little party, then turns on a reassuring smile.\"\n3276,lsmdc0007_DIE_NACHT_DES_JAEGERS-49521,16886,He approaches with two apples. He,He approaches with two apples.,He,gold,\"ignores the heavy attempts, lick the joint with his finger, then solves it.\",faces a burly woman with a silvery sheen.,takes his foot from the fountain.,gives her an apple.\n3277,lsmdc0007_DIE_NACHT_DES_JAEGERS-49521,16884,She mends for a few moments. Someone,She mends for a few moments.,Someone,gold,brushes in her stirrups and lightly touches her weary cheeks.,\"crosses behind her and off, towards door.\",places a ballerina side on someone 'shoulder.,\"keeps them from running, clinging to one pole down her arm.\"\n3278,anetv_aDaazrgvjJg,3592,A female weight lifter walks up to a barbell. She,A female weight lifter walks up to a barbell.,She,gold,lifts it up to her neck.,lifts a weight against a heavy weight.,lifts the weight above his head.,lifts a weight over his head and lowers him on a mat.\n3279,anetv_aDaazrgvjJg,5095,\"A woman raise a weight until her shoulders, then she steps out a foot and raise the weight above her hear. Then, the woman\",\"A woman raise a weight until her shoulders, then she steps out a foot and raise the weight above her hear.\",\"Then, the woman\",gold,drops the weight to the floor.,\"lifts the weight above her head and takes a flip on her back, spinning her tailor around onto her head.\",stands by the saxophone and moves.,release one horse straight and continue jumping by the barbell.\n3280,lsmdc1045_An_education-90328,7079,Her father is outside the door with a cup of tea. She,Her father is outside the door with a cup of tea.,She,gold,grabs a toothbrush and returns to the kitchen.,\"stands, rooted to the spot.\",leans down into the chair where someone stands.,has her hand on her hand.\n3281,lsmdc1045_An_education-90328,7078,Someone turns and stares at the door. Her father,Someone turns and stares at the door.,Her father,gold,\"stares off, catching it's eye.\",looks saddened as she struggles to climb the stairs.,is outside the door with a cup of tea.,\"opens his eyes straight to someone, who stares ahead, concerned.\"\n3282,lsmdc1045_An_education-90328,7076,\"Someone stands unhappily on her own in the hall. Upstairs, someone\",Someone stands unhappily on her own in the hall.,\"Upstairs, someone\",gold,stands on a partially ascends staircase.,stands up and pays the bottles.,demonstrates sitting on his three - wheeled board.,is sorting clothes in her wardrobe.\n3283,lsmdc1045_An_education-90328,7077,\"Upstairs, someone is sorting clothes in her wardrobe. Someone\",\"Upstairs, someone is sorting clothes in her wardrobe.\",Someone,gold,walks to a sidewalk in english someone.,\"notices them, smiles, and moves them away toward the doorway.\",turns and stares at the door.,smiles at the three sisters.\n3284,lsmdc1045_An_education-90328,7075,He stomps off into the living room. Someone,He stomps off into the living room.,Someone,gold,sits down in a back seat.,watches someone as someone rushes into the shot.,stands unhappily on her own in the hall.,stands and wipes his old bible.\n3285,lsmdc1045_An_education-90328,7074,Someone glares at his wife. He,Someone glares at his wife.,He,gold,stomps off into the living room.,caresses her cheek affectionately.,gives a guilty shrug.,glisten in his eyes.\n3286,lsmdc3019_COLOMBIANA-8579,13066,The sergeant looks through her purse. She,The sergeant looks through her purse.,She,gold,rests her head on the desk.,steps into an alcove and attaches a electronic lamp.,\"fires a knife at someone, who leaps down at her attacker.\",nods one after the other dogs.\n3287,lsmdc3019_COLOMBIANA-8579,13065,One of the cops retrieves her shoe and hands it to the sergeant then nudges her up. The sergeant,One of the cops retrieves her shoe and hands it to the sergeant then nudges her up.,The sergeant,gold,turns two pliers on his chute.,looks through her purse.,uses a camera in her coat and the warehouse in the corner.,looks injured and chant.\n3288,lsmdc3019_COLOMBIANA-8579,13064,\"She slumps over, her long black bangs covering her face. One of the cops\",\"She slumps over, her long black bangs covering her face.\",One of the cops,gold,pushes the carriage door.,puts her lips to his lips while they kiss.,reaches out gripping someone's grave.,retrieves her shoe and hands it to the sergeant then nudges her up.\n3289,lsmdc3019_COLOMBIANA-8579,13063,The cops sit her down in front of him. She,The cops sit her down in front of him.,She,gold,moves back firing two guns.,\"slumps over, her long black bangs covering her face.\",pushes herself ahead and pulls back.,\"pulls out toward the entrance and the clock reads, eight o'clock.\"\n3290,lsmdc3019_COLOMBIANA-8579,13067,\"As the cops haul her off, the sergeant sets her abandoned shoes on his desk. Now a bus\",\"As the cops haul her off, the sergeant sets her abandoned shoes on his desk.\",Now a bus,gold,pulls up beside an apartment building.,pulls up in a street overlooking town.,arrives at a retirement home.,pulls up in an alley.\n3291,lsmdc3019_COLOMBIANA-8579,13061,She stumbles and one of her shoes slips off. A portly desk sergeant,She stumbles and one of her shoes slips off.,A portly desk sergeant,gold,gestures dreamily to a cafe.,moves across the middle underneath the priest's boots.,looks up at her approach.,is standing in front of the lecture.\n3292,lsmdc3019_COLOMBIANA-8579,13059,A red muscle car plows into their cruiser. Its door opens and an empty vodka bottle,A red muscle car plows into their cruiser.,Its door opens and an empty vodka bottle,gold,tumbles to the pavement.,passes in the passenger seat.,appears steady over the wheels.,sits atop the car.\n3293,lsmdc3019_COLOMBIANA-8579,13068,Men in us Marshall vests march into view. A bald mustached marshal,Men in us Marshall vests march into view.,A bald mustached marshal,gold,sits with a stack of comic books.,carries him through blazing clear.,leads a team escorting a hooded prisoner.,reaches for the arrow.\n3294,lsmdc3019_COLOMBIANA-8579,13062,A portly desk sergeant looks up at her approach. The cops,A portly desk sergeant looks up at her approach.,The cops,gold,drag someone from their shot.,look around for taking the cigarettes with a larger one.,sit her down in front of him.,stop at the curb.\n3295,anetv_ALjodjboELk,10011,More shots are shown of people close up swimming up the water as well as kneeling. A woman,More shots are shown of people close up swimming up the water as well as kneeling.,A woman,gold,is seen sitting at the lens and pouring water all over her face.,looks on camera and leads into her putting supplies to a woman.,is shown speaking to the camera and leads into her rubbing the cup and folds the paper.,takes off her tank as well as putting it back and leads into them swimming more.\n3296,anetv_ALjodjboELk,10010,A group of people are seen swimming around a pool with one man sitting on his head. More shots,A group of people are seen swimming around a pool with one man sitting on his head.,More shots,gold,are shown of people close up swimming up the water as well as kneeling.,are shown of people driving around in the parking lot and one still drinking.,are shown of people playing lacrosse.,are shown of people shooting.\n3297,anetv_dR3hrw9dVdw,16856,A man is sitting at a piano in front of sheet music. He,A man is sitting at a piano in front of sheet music.,He,gold,\"plays gracefully at the piano, reading the music.\",sings and plays some bongo drums.,does plays ping pong on a set of bongo drums.,begins playing an accordian.\n3298,anetv_dR3hrw9dVdw,16857,\"He plays gracefully at the piano, reading the music. He\",\"He plays gracefully at the piano, reading the music.\",He,gold,\"smiles, licks his lips and looks out from the audience.\",steps aside and looks at her young daughters.,\"speeds up and slows down as required, then stops.\",brushes his teeth and the music slows.\n3299,anetv_dR3hrw9dVdw,13120,The person moves their hands up and down the instrument. The person,The person moves their hands up and down the instrument.,The person,gold,continues to play over and over.,continues to clip the claws of the cat.,continues moving around and looking for one another.,continues hitting the instrument over and over again.\n3300,anetv_dR3hrw9dVdw,13119,A person's hands are seen playing a piano. The person,A person's hands are seen playing a piano.,The person,gold,continues to push around the leaves while continuing to play with the camera.,places the brush back down and then begins painting into the painting before moving it back up.,stops playing and begins playing the guitar.,moves their hands up and down the instrument.\n3301,anetv_dKf46wUnn-s,9126,Two children are seen walking around a yard play crochet with one another and laughing on the side. the kids,Two children are seen walking around a yard play crochet with one another and laughing on the side.,the kids,gold,continue pushing the lather into the camera as well.,continue on mowing the yard as the person passes the mower.,continue to play with each other while the camera pans all around their movements.,continue working with one another while the camera captures their movements.\n3302,anetv_IfYiYObrUlY,3970,\"A woman talks in kitchen, then come two boys and talk whiles showing the fruits on the counter. Then, a man\",\"A woman talks in kitchen, then come two boys and talk whiles showing the fruits on the counter.\",\"Then, a man\",gold,stands in the kitchen near the bar and flips many times and a male then scrubbed his hands with a towel.,puts a shaving cream into a glaze cheddar with silk in his hand.,cuts cheese and lemon to make an omelette.,comes and puts all the fruits in a large bowl while explaining.\n3303,lsmdc1014_2012-79050,19276,\"Someone stands, hands up wide as a huge chunk crashes right into him. Fireballs\",\"Someone stands, hands up wide as a huge chunk crashes right into him.\",Fireballs,gold,flood in the barrel of the house.,\"watches the performers giant someone, two, and someone made to meet them.\",looks around and catches him up just under his arm.,slam down on the park.\n3304,lsmdc1014_2012-79050,19279,He swerves to avoid crashing rock then straightens the vehicle. A fireball,He swerves to avoid crashing rock then straightens the vehicle.,A fireball,gold,seems to swoop above to distance it snapping to pieces.,hits the back of the rv and leaving a flaming hole.,appears at the door of a building.,hits the other with the trunk.\n3305,lsmdc1014_2012-79050,19281,\"On the runway, someone peers out of the plane. Someone\",\"On the runway, someone peers out of the plane.\",Someone,gold,jumps forward and catches her.,\"stands, looking anxious.\",lunges inside the possessed car and falls over.,bounces off the wrecked ship.\n3306,lsmdc1014_2012-79050,19275,Someone clambers back to his feet as fireballs rain down behind him throwing from massive eruption. Someone,Someone clambers back to his feet as fireballs rain down behind him throwing from massive eruption.,Someone,gold,flies backwards from the canyon.,\"stands, hands up wide as a huge chunk crashes right into him.\",lowers her hands well.,tumbles near as far as he can.\n3307,lsmdc1014_2012-79050,19280,\"A fireball hits the back of the rv and leaving a flaming hole. On the runway, someone\",A fireball hits the back of the rv and leaving a flaming hole.,\"On the runway, someone\",gold,drinks down the road.,\"races down the snowy street, out of his automatic.\",peers out of the plane.,lifts over flames until a fiery display explodes on the landing below.\n3308,lsmdc1014_2012-79050,19277,Fireballs slam down on the park. Someone,Fireballs slam down on the park.,Someone,gold,drives the rv along the road through the carnage.,confidently in the street behind a sofa.,grabs someone door after bed.,gives both a entering nod.\n3309,lsmdc1014_2012-79050,19273,\"Someone eyes the blast in the rv's mirror. A blinding flash fills the sky, then a vast wave of energy\",Someone eyes the blast in the rv's mirror.,\"A blinding flash fills the sky, then a vast wave of energy\",gold,rises down toward hogwarts.,flattens the remaining trees.,\"rushes toward the plane, where the sub - alien car disappears.\",leap down from the bay.\n3310,lsmdc1014_2012-79050,19278,Someone drives the rv along the road through the carnage. He,Someone drives the rv along the road through the carnage.,He,gold,climbs a motorcycle by its gravel hatchback.,slams the journal down.,swerves to avoid crashing rock then straightens the vehicle.,drives over a bridge across the window of the ship's wheels.\n3311,lsmdc1014_2012-79050,19274,A tower of fire and thick black smoke fills the air. Someone,A tower of fire and thick black smoke fills the air.,Someone,gold,leaves into the office.,\"shield his brother over elevated soldiers, knocking him to the floor with bunker paint.\",hugs someone by her side.,and his men wave around as two onlookers pull away.\n3312,lsmdc3032_HOW_DO_YOU_KNOW-2542,12296,Now words type out on a computer screen. Facing his laptop someone,Now words type out on a computer screen.,Facing his laptop someone,gold,finds his computer operator working the controls.,pauses and reads his letter over.,stares at her map as she shifts the drawing screen to her dead colleague.,sits on a triangular marked with blank plastic.\n3313,lsmdc3032_HOW_DO_YOU_KNOW-2542,12297,Facing his laptop someone pauses and reads his letter over. He,Facing his laptop someone pauses and reads his letter over.,He,gold,gets to his feet.,picks up the receiver and puts it to someone's ear.,picks up his cell phone from a stack of papers.,stacks the neatly folded notes to the car.\n3314,lsmdc3032_HOW_DO_YOU_KNOW-2542,12288,Someone gives a sympathetic pout then screws up his mouth. He,Someone gives a sympathetic pout then screws up his mouth.,He,gold,presses a hand to his lips.,ties a bite on his steak.,shakes his head and smiles.,rubs his father's shoulder.\n3315,lsmdc3032_HOW_DO_YOU_KNOW-2542,12291,\"His gaze hardening, he purses his lips. Someone\",\"His gaze hardening, he purses his lips.\",Someone,gold,looks at the boy and makes two formal chairs.,marches out onto the wooden floor pushing someone's car back and forth.,\"gives a small, remorseful shrug.\",shifts his gaze and blows out his cheeks.\n3316,lsmdc3032_HOW_DO_YOU_KNOW-2542,12295,\"Later, she rides a commuter train, woefully biting her thumbnail and fidgeting her fingers. Now words\",\"Later, she rides a commuter train, woefully biting her thumbnail and fidgeting her fingers.\",Now words,gold,\"appear, labels her pad, bianca views.\",type out on a computer screen.,stretch out through the front door of her hollywood house.,come out of the crow's nest.\n3317,lsmdc3032_HOW_DO_YOU_KNOW-2542,12292,\"Someone gives a small, remorseful shrug. His son\",\"Someone gives a small, remorseful shrug.\",His son,gold,walks up the aisle.,shifts on his feet.,arrives at the foot of the orthanc tower and turns.,kisses the priest's hand.\n3318,lsmdc3032_HOW_DO_YOU_KNOW-2542,12290,\"His lips press tightly together, someone looks up sheepishly at his glaring son. Taking a breath he\",\"His lips press tightly together, someone looks up sheepishly at his glaring son.\",Taking a breath he,gold,begins to pick his notebook.,gazes out at the pretty people.,transfers the top into the air.,draws himself up and rubs his legs.\n3319,lsmdc3032_HOW_DO_YOU_KNOW-2542,12293,His son shifts on his feet. He,His son shifts on his feet.,He,gold,rubs his face with both hands.,studies the tubing attendant with his face with a propped collar.,removes his head from the desk and looks down at his desk.,got in clock after the manager leans forward beneath his steps.\n3320,lsmdc3032_HOW_DO_YOU_KNOW-2542,12298,\"It's someone, down on the sidewalk. She\",\"It's someone, down on the sidewalk.\",She,gold,is hurtling his old cars.,turns to someone and walks through the window.,covers the dog with a critical eye.,faces away from him.\n3321,anetv_k42CKebiSLA,336,A man travels to Japan to study how to be a sumo wrestler. The man,A man travels to Japan to study how to be a sumo wrestler.,The man,gold,gets training and learns the techniques of sumo.,hits the stone ferociously with his wand.,plays with the hoop doing the scooped up motion.,does several back flips across a bar with ropes and onlookers and spectators watching.\n3322,lsmdc0032_The_Princess_Bride-66016,4014,\"The someone, hanging suspended hundreds of feet in the air, holding to the jagged rocks, desperately trying to cling to life. Very slowly, he\",\"The someone, hanging suspended hundreds of feet in the air, holding to the jagged rocks, desperately trying to cling to life.\",\"Very slowly, he\",gold,\"heads toward the door, hands it close to her, takes it and places it in the trunk.\",\"is picking his way upwards, sometimes a foot at a time, sometimes an inch.\",turns back at another rental store.,lowers himself to his feet.\n3323,lsmdc0032_The_Princess_Bride-66016,4013,\"Once they might have been a fort, now the kind of resemble Stonehenge. The someone, hanging suspended hundreds of feet in the air,\",\"Once they might have been a fort, now the kind of resemble Stonehenge.\",\"The someone, hanging suspended hundreds of feet in the air,\",gold,\"galloping forward time, straight towards the hill of terrified people, but not running.\",crouch in the stadium to their feet.,\"holding to the jagged rocks, desperately trying to cling to life.\",\"turns, scrambling for the wall, but someone struggles with the lock.\"\n3324,anetv_noKDv_a8u-Y,13064,He is playing a guitar on his lap. He,He is playing a guitar on his lap.,He,gold,is shown tattooing several times.,is tapping the harmonica with a blue color.,kites are shown in the sky.,continues playing for the remainder of the show.\n3325,anetv_noKDv_a8u-Y,19442,The guitar is a brown acoustic guitar. He,The guitar is a brown acoustic guitar.,He,gold,is seated with a deep red curtain hanging behind him.,stops playing the accordion and stops his harmonica.,is lying on his back with his chin on the metal tube.,is playing the drum.\n3326,anetv_noKDv_a8u-Y,19441,\"A man with a goatee, long hair, and dressy hat and clothing is playing a guitar. The guitar\",\"A man with a goatee, long hair, and dressy hat and clothing is playing a guitar.\",The guitar,gold,is a brown acoustic guitar.,stops playing the piano.,is playing the last drums.,is amazing where he is.\n3327,anetv_noKDv_a8u-Y,19444,He looks up word for a moment as he plays. This,He looks up word for a moment as he plays.,This,gold,\"comes into frame, not even knowing what it is, and looks curiously.\",is obviously something he has down for quite some time.,\", at the back of the room, has no escape to get it.\",plays a small form and takes it from someone 'hand and he pulls on the strings.\n3328,anetv_noKDv_a8u-Y,13063,A man is seated in front of a velvet blanket. He,A man is seated in front of a velvet blanket.,He,gold,has a white hat behind it.,has a tattoo on his face.,begins using a can of paint.,is playing a guitar on his lap.\n3329,anetv_noKDv_a8u-Y,19443,He is seated with a deep red curtain hanging behind him. He,He is seated with a deep red curtain hanging behind him.,He,gold,\"continues to follow, in her arm and walking towards her.\",turns someone's face from the ceiling.,walks away to talk.,looks up word for a moment as he plays.\n3330,anetv_hnwZmUR1FUw,13999,One of the men wearing a green shirt looks angrily at the camera and throws the racquet at the camera. The camera person turns the camera to himself and he,One of the men wearing a green shirt looks angrily at the camera and throws the racquet at the camera.,The camera person turns the camera to himself and he,gold,returns to talking to the camera.,attempts to take all of the balls back into his pocket.,is running and laughing while looking in the camera.,begins hitting the tennis racket in a back tray.\n3331,anetv_HPyLSmDjsHY,8245,A young girl is seen sitting in front of a camera and presents various nail objects to the camera. She then,A young girl is seen sitting in front of a camera and presents various nail objects to the camera.,She then,gold,continues her work on her snowboard while looking into the camera.,begins painting all her nails thoroughly and ends the video with various pictures of her and her nails.,\"blows curlers into her hair using her hands, and begins brushing.\",holds up a sheet of paper and continues cutting up her face.\n3332,lsmdc0021_Rear_Window-59019,19011,\"People turn for a quick glimpse of the song - writer's apartment. At this moment, from the song - writer's apartment which has been quiet for a while,\",People turn for a quick glimpse of the song - writer's apartment.,\"At this moment, from the song - writer's apartment which has been quiet for a while,\",gold,\"clips the policeman's gun johnson, but the disgruntled conductor is posted on the porch.\",sponsors wind lightly squirts a woman's fur.,comes a new burst of melody.,is softly eaten away from someone's.\n3333,lsmdc0021_Rear_Window-59019,19006,He lowers the long - focus lens and he is sweating with anxiety. His eyes,He lowers the long - focus lens and he is sweating with anxiety.,His eyes,gold,whirls with shock and determination.,fixed drawn to a piece of paper on a tee.,turn quickly to the alleyway and back again to someone.,\"are calm, terrified and tired.\"\n3334,lsmdc0021_Rear_Window-59019,19005,\"She looks toward someone's apartment and, to communicate her dismay, she turns the handbag upside down. He lowers the long - focus lens and he\",\"She looks toward someone's apartment and, to communicate her dismay, she turns the handbag upside down.\",He lowers the long - focus lens and he,gold,moves faster.,is sweating with anxiety.,is gently on her arm.,removes it from his eye.\n3335,lsmdc0021_Rear_Window-59019,19009,Someone looks out the window and her face registers shock. Someone,Someone looks out the window and her face registers shock.,Someone,gold,has back tight between his feet and nods wildly.,\"turns quickly to the window again, forgetting the phone for the moment.\",looks up from the couch towards the washing table.,appears and walks around a few grinning pushes.\n3336,lsmdc0021_Rear_Window-59019,19008,\"He reaches for the phone. As he picks up the receiver, someone\",He reaches for the phone.,\"As he picks up the receiver, someone\",gold,pushes his hand down again.,looks up in surprise.,'s butterfly magically releases.,steps over to help him.\n3337,lsmdc0021_Rear_Window-59019,19007,His eyes turn quickly to the alleyway and back again to someone. She,His eyes turn quickly to the alleyway and back again to someone.,She,gold,\"leans back in the chair, closing the door behind him.\",moves quickly to the dresser and begins opening the drawers to check them.,flinches and aims his wand back toward someone.,slides the front seat forward and sees someone peeking out of the room.\n3338,lsmdc0021_Rear_Window-59019,19002,She goes directly to the bedroom and we see her bending over one of the suitcases. Someone,She goes directly to the bedroom and we see her bending over one of the suitcases.,Someone,gold,quickly picks up the long - focus lens and trains it on the salesman's apartment.,tiptoes into his apartment and drags him through.,\"waits, fanning herself in his study, which is only with unopened stacks of bills.\",someone pull its ladder closed and put it on.\n3339,lsmdc0021_Rear_Window-59019,19003,Someone quickly picks up the long - focus lens and trains it on the salesman's apartment. Someone,Someone quickly picks up the long - focus lens and trains it on the salesman's apartment.,Someone,gold,\"glances around the desk in the garden, then enters her room.\",turns from the suitcase with the alligator handbag in her hand.,wakes his mother up.,moves from the couch to the window before she goes on away.\n3340,anetv_m6T68amiXjs,1239,A boy with a hat is seen walking and talking behind some trees. The boy,A boy with a hat is seen walking and talking behind some trees.,The boy,gold,sneaks out onto a field where another boy is playing field hockey.,jumps off a tightrope and jumps off the mat together.,then continues walking towards a dog while he walks along with the camera.,walks away and does several exercises as he rides with a dog.\n3341,anetv_m6T68amiXjs,1240,The boy in the hat takes the ball. The boy playing field hockey,The boy in the hat takes the ball.,The boy playing field hockey,gold,is seen leaping around in the background.,are in full swing.,catches the ice with almost back them.,is passing a bat in the grass ball.\n3342,anetv_m6T68amiXjs,1241,The boy in the hat kicks the ball back to the field hockey player and another player is seen. The two field hockey players,The boy in the hat kicks the ball back to the field hockey player and another player is seen.,The two field hockey players,gold,are seen running around and hitting the field hockey ball with their sticks.,are shown playing dodge balls on the sidelines and the team scores.,are running on the rocky ball then huddling down and is standing in front of one ball the other have landed on the ground.,begin to play bowling.\n3343,anetv_Isx1Q5wyJZg,3361,A girl in jeans enters the ropes and performs different jumping moves. A girl in a blue shirt,A girl in jeans enters the ropes and performs different jumping moves.,A girl in a blue shirt,gold,mounts a round beam!,enters the jump ropes and performs different moves while jumping.,shows him a rope.,stands over the tall waling.\n3344,anetv_Isx1Q5wyJZg,3360,Two girls spin double jump ropes while a girl in a black skirt jumps and a crowd of spectators watches on. A girl in jeans,Two girls spin double jump ropes while a girl in a black skirt jumps and a crowd of spectators watches on.,A girl in jeans,gold,does a flip in the air and does her baton.,watches the group in red coat past the other up.,talks on a panel of several peoples pairs of girls designed after practice violin.,enters the ropes and performs different jumping moves.\n3345,anetv_Isx1Q5wyJZg,3362,A girl in a blue shirt enters the jump ropes and performs different moves while jumping. A girl,A girl in a blue shirt enters the jump ropes and performs different moves while jumping.,A girl,gold,enters the jump ropes going extra fast speed and performs fast jumps.,performs martial arts in a gym making a tight rope outside.,watches and jumps over her chains.,walks in an outdoor gym.\n3346,anetv_wdecG9VSAl0,5685,He talks to the camera as he approaches. He,He talks to the camera as he approaches.,He,gold,\"was bewildered, then turns and runs down the walkway.\",\"gets out, continuing to talk about canoeing.\",comes to a stop.,looks up and sees the man before the group.\n3347,anetv_wdecG9VSAl0,5684,A young man is seen paddling a canoe down a river. He,A young man is seen paddling a canoe down a river.,He,gold,talks to the camera as he approaches.,is then seen paddling along with another dog.,goes to various water skis next to the water.,continues to ski around the area.\n3348,anetv_bOBQLGfEeyg,4122,A man is seen standing up in the middle of a gymnasium and then begins kneeling down and playing dodgeball. The man then,A man is seen standing up in the middle of a gymnasium and then begins kneeling down and playing dodgeball.,The man then,gold,kicks another boy back and fourth wildly seen stopping by holding up a cup and pointing to someone laying it down with a drink.,uses several moves and turns with one and teaches the man to help with the men.,perform a routine on the racket and kicking it around.,plays a game with a large group of people who catch and hit balls all around them.\n3349,anetv_bOBQLGfEeyg,7063,A man is standing inside a gym. He,A man is standing inside a gym.,He,gold,shines his flashlight over his face and on.,\"walks forward, then leans over.\",is practicing gymnastics on sticks.,begins playing the guitar.\n3350,anetv_vRNcq6nOk0E,14107,A close up of a glass door is shown as well as a person's hand moving around in the camera and making various gestures. He then,A close up of a glass door is shown as well as a person's hand moving around in the camera and making various gestures.,He then,gold,holds up scissors swinging them around and doing more hand gestures to the camera.,pans the camera while the camera zooms in on to mop who she is talking to.,moves the object around while jumping down and then shows a close up of a man.,demonstrates how to open the board first with the rag to rub himself over.\n3351,lsmdc1023_Horrible_Bosses-81818,4613,Someone puts down his documents. Someone,Someone puts down his documents.,Someone,gold,coolers it's manicurist style.,lifts the thermos cup and spears his face with concentration.,keeps checking the gun.,winks at a colleague.\n3352,anetv_mS7SAG1nW1o,7076,A woman is in a stable with a white horse. She,A woman is in a stable with a white horse.,She,gold,brushes a curling brush on the horse's hooves.,shows a collection of brushes and grooming supplies.,is demonstrating how she toss the leaves in the field.,starts by brushing the horse with a dirty brush.\n3353,anetv_mS7SAG1nW1o,7077,She shows a collection of brushes and grooming supplies. She,She shows a collection of brushes and grooming supplies.,She,gold,folds it with a columned brush.,\"pets the horse as she talks, and tries to keep him calm.\",consults her hand thoroughly.,shows a logo titled and visit decorating their gifts in her present.\n3354,anetv_mS7SAG1nW1o,7078,\"She pets the horse as she talks, and tries to keep him calm. She\",\"She pets the horse as she talks, and tries to keep him calm.\",She,gold,shows her face sprayer container solution.,stops for a moment and then completes her routine to sit back.,\"uses the brushes to groom him thoroughly, then cleans his hooves.\",lays out while retracting.\n3355,anetv_uqixFWxAQSA,15718,Cars covered by a thick snow is shown and a man is cleaning the snow with a shovel in the windshield and all the car. car,Cars covered by a thick snow is shown and a man is cleaning the snow with a shovel in the windshield and all the car.,car,gold,is sitting in a parked car in a parking lot.,starts to cover the roof of the building until it is gone.,is shown before the house is shown with a man cutting a wallpaper using a cold green snow cleaner.,is going in street.\n3356,lsmdc3045_LAND_OF_THE_LOST-21231,9904,\"Turning away, someone storms off through the dumping ground. Someone\",\"Turning away, someone storms off through the dumping ground.\",Someone,gold,\"struggles on with her coat, follows after her stare cronies.\",steps closer to someone and shrugs his brow.,\"down by the dark satchel of rubble, someone plops onto the floor and peers at the dog.\",\"her dream, she advances six - stepping picnic table stool and gets a message from someone.\"\n3357,lsmdc3045_LAND_OF_THE_LOST-21231,9905,\"In the jungle, someone writes in her journal by a campfire. Someone\",\"In the jungle, someone writes in her journal by a campfire.\",Someone,gold,puts pasta through a bandage over her shoulder.,pool's computer monitors at an outdoor tv menu where old magazine products show the late morning sunlight.,\"crosses to someone, who sits forlornly on his own.\",goes to the door - - only a much beyond.\n3358,lsmdc3020_DEAR_JOHN-9431,777,Someone's father looks up from his desk. He,Someone's father looks up from his desk.,He,gold,tears angrily on someone 'eyes.,stands to greet them.,examines the sleeping bowl and finish drops it.,\"lifts heavily, muttering to himself.\"\n3359,lsmdc3020_DEAR_JOHN-9431,776,\"Someone locks her in his sudden sobered gaze. Later, they\",Someone locks her in his sudden sobered gaze.,\"Later, they\",gold,make her way to a bustling restaurant.,pull down the walkway and cross a man flying on a landing.,\"walk in a fully decorated restaurant, woody restaurant.\",stroll toward his front door.\n3360,lsmdc3020_DEAR_JOHN-9431,779,He takes a coin from her. He,He takes a coin from her.,He,gold,scoops her out of the water.,glances at his belt.,picks up the cookies.,rubs it vigorously on his shirt.\n3361,lsmdc3020_DEAR_JOHN-9431,775,\"Eyes the rosy - cheeked young woman, then shyly bows his head. Someone\",\"Eyes the rosy - cheeked young woman, then shyly bows his head.\",Someone,gold,locks her in his sudden sobered gaze.,\"fastens his tie, and fastens his grip with a tight rope.\",\"presses someone's necklace in her hand, gazing into his eyes.\",\"flutters his wings, and faces someone.\"\n3362,lsmdc3020_DEAR_JOHN-9431,778,She notices a coin collection. He,She notices a coin collection.,He,gold,peeks in through a window then steps.,places each hand on the blank page.,checks one - later and sets down.,takes a coin from her.\n3363,lsmdc1007_Spider-Man1-74274,4862,He strips off his shirt and vest. He,He strips off his shirt and vest.,He,gold,hefts the folder at another door.,collapses on his bed then rolls off onto the floor.,places a hand on the deck panel where it explodes.,\"strides onto the dance floor, and squints.\"\n3364,lsmdc1007_Spider-Man1-74274,4863,He collapses on his bed then rolls off onto the floor. He,He collapses on his bed then rolls off onto the floor.,He,gold,turns back and finds himself in going in empty again.,removes wax then looks about.,grabs the tartan blanket lying on top of the bed and hauls it over him.,leads the way down a flight of stairs with the belongings behind us.\n3365,anetv_JV4ss42WZG8,6235,A person is seen cutting up various fruits while also seen speaking to the camera. The person,A person is seen cutting up various fruits while also seen speaking to the camera.,The person,gold,continues smoothly till one person's hands is seen holding a pumpkin.,mixes various ingredients into a container of water.,continues speaking to the camera while a man chops some food in a bowl and leads into a person shaving his face.,mixes noodles all around the bottom while holding on a mixer and adding ingredients in a pot.\n3366,anetv_Ey-0Q6VNJaY,16752,An animated Braille Skateboarding com logo appears. A young person,An animated Braille Skateboarding com logo appears.,A young person,gold,comes to the screen for another certificate.,stands in the street with their skateboard and performs some simple tricks.,grab a conga bag from a bag and takes the handle.,emerges onto light footbridge.\n3367,anetv_Ey-0Q6VNJaY,16753,A young person stands in the street with their skateboard and performs some simple tricks. A young man,A young person stands in the street with their skateboard and performs some simple tricks.,A young man,gold,kneels down and gestures in trying to get a better put in its hair.,falls through the chair.,is shown on a parking lot skating.,is snowboarding along a set of inline skates.\n3368,anetv_Ey-0Q6VNJaY,4387,\"A woman is outside with a skateboard, as she drops it to the ground and talks. She performs several stunts on the board, and we\",\"A woman is outside with a skateboard, as she drops it to the ground and talks.\",\"She performs several stunts on the board, and we\",gold,see a sign on the side of the street.,see another title screen.,get a close up as she flips the board back and forth.,see people in the distance.\n3369,anetv_Ey-0Q6VNJaY,16754,A young man is shown on a parking lot skating. An advertisement about mastering skateboarding,A young man is shown on a parking lot skating.,An advertisement about mastering skateboarding,gold,is shown followed by two men sitting on fake bushes that are armrest off sides.,is shown with video links.,moves on playing hopscotch.,is shown in a desert.\n3370,anetv_5HW6mjZZvtY,11409,The man then begins jumping on his board to demonstrate moves. He,The man then begins jumping on his board to demonstrate moves.,He,gold,continues exercising face down and showing off his various parts of the crowd.,pauses to speak to the camera and continues speaking.,swings back and fourth while other people watch on the side.,continues jumping around the room while the camera captures his movements.\n3371,anetv_5HW6mjZZvtY,11408,A man is seen in several shots on a skateboard in a dark warehouse. The man then,A man is seen in several shots on a skateboard in a dark warehouse.,The man then,gold,begins jumping on his board to demonstrate moves.,pours the chocolate in a bowl and begins moving it through the floor.,trots back to properly play the drums.,places his hands up on a large foosball table.\n3372,anetv_Ey2SmPzJTKM,18604,A pack of colored cylinders are shown on screen. A man,A pack of colored cylinders are shown on screen.,A man,gold,uses the cylinders to prevent a tire being removed from falling off the car.,show a group to different individuals who demonstrate different knives.,pours a mixture into a water container in the water.,\"peers down from a car park, then rides them the the back.\"\n3373,anetv_Ey2SmPzJTKM,18603,The logo AccessTools appears on screen with Wheel Bullet 6 - pack and Wheel Bullet 24 - pack. A pack of colored cylinders,The logo AccessTools appears on screen with Wheel Bullet 6 - pack and Wheel Bullet 24 - pack.,A pack of colored cylinders,gold,appear beside the bowling stare.,is shown in wall plastic container.,spin as a small pile of people in to the side while another approaches sushi.,are shown on screen.\n3374,anetv_Ey2SmPzJTKM,18700,A box is shown containing different colored items. A man,A box is shown containing different colored items.,A man,gold,picks up a white garment that is moving towards her so it fitting and which is padded.,solves a game of tennis and rule number 1.,lays pretending to face a sliced hulte.,\"is then seen removing a tire from a car, showing how to do it properly.\"\n3375,lsmdc0002_As_Good_As_It_Gets-46546,17664,But now his head moves back and he receives her kiss. Someone,But now his head moves back and he receives her kiss.,Someone,gold,watches someone talk to she.,smiles encouragement to him and herself.,\"sprints from the kitchen, peers down the side of the building at someone's house.\",come out to find someone.\n3376,lsmdc0002_As_Good_As_It_Gets-46546,17663,Their faces are close - - she looks at him. Her face,Their faces are close - - she looks at him.,Her face,gold,is pleased and dangerous.,moving toward him as he is wide - eyed and afraid.,is pinched with fear.,has no blue letters that it's heart?\n3377,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15960,Someone watches someone emerge from the bedroom. He,Someone watches someone emerge from the bedroom.,He,gold,climbs across their chest with relative ease as the van drives by.,collapses in his sleep.,spots two breakfast settings arranged on a small table.,\"stares at her for a moment, looking at the window.\"\n3378,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15902,Someone gives an exasperated look as he clicks incorrect icons. He,Someone gives an exasperated look as he clicks incorrect icons.,He,gold,makes his way out from the nearest office window.,turns it to the end of someone's sloop.,smiles back and takes out the syringe.,finds a photo with the same woman climbing into a car.\n3379,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15956,\"Beside her, propped on his elbows, belly down, someone watches. Without looking at him she\",\"Beside her, propped on his elbows, belly down, someone watches.\",Without looking at him she,gold,offers her lit smoke.,studies him a moment which he presses and considers with mounting pride.,wiggles her finger nervously.,opens her eyes and looks at him sympathetically.\n3380,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15937,She steps away to reveal the camera's aim at the door. Elsewhere on the cottage's exterior she,She steps away to reveal the camera's aim at the door.,Elsewhere on the cottage's exterior she,gold,places another hidden camera.,finds brightly decorated characters on canvas on pages.,sees someone lying beside her bed on the sidewalk.,sees someone getting into her car.\n3381,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15933,\"Meanwhile, at the cottage, someone removes surveillance cameras from the equipment case. She\",\"Meanwhile, at the cottage, someone removes surveillance cameras from the equipment case.\",She,gold,goes on soberly and chats through the national compound.,places a hand against his head.,\"follows someone out of the house, locks the french doors and lock onto the operating space.\",drags a chair to the corner of the room.\n3382,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15910,The woman gives a startled look. As she,The woman gives a startled look.,As she,gold,goes through a window.,strides into an adjacent dining room and disappears from view.,\"activates he sniffs it, she smiles and smooths her leg.\",\"looks down at the unresponsive daughter, the guests freeze in steps.\"\n3383,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15914,She sits beside him on the couch as he puts on his glasses and opens the album. Flipping through its pages he,She sits beside him on the couch as he puts on his glasses and opens the album.,Flipping through its pages he,gold,finds another marker to fill with the messages.,sees the vacant characters title screen.,skims over photos of parade goers.,finds a sheet of paper on the nightstand.\n3384,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15938,Elsewhere on the cottage's exterior she places another hidden camera. Someone,Elsewhere on the cottage's exterior she places another hidden camera.,Someone,gold,shows the woman's bag with twenty stylish attachments.,stumbles as he sprints past someone's mansion.,\"picks up the handgun in her handgun, then cocks it.\",watches the film as the hobbit wears a dark protective domed top.\n3385,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15942,\"Later, he sits shirtless in a tub with his legs hanging over its side as water showers onto his head. Blood\",\"Later, he sits shirtless in a tub with his legs hanging over its side as water showers onto his head.\",Blood,gold,prepares to swim backwards to catch more bubbles.,\"beside his son, someone lies on the grass next to him as he holds a heartbroken gaze to his dish.\",\"stares at the floor with his feet, another man from the floor.\",streams down his face and chest.\n3386,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15930,\"Standing at the top, he scans the area contemplatively. A bullet\",\"Standing at the top, he scans the area contemplatively.\",A bullet,gold,hits the utility pole behind him.,passed someone in his pocket.,is reflected in a window and staggers out onto the street.,\"pushes hard on his frame, without his jacket.\"\n3387,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15961,He spots two breakfast settings arranged on a small table. She,He spots two breakfast settings arranged on a small table.,She,gold,uses the icing as glasses.,watches him through massive red eyes.,is on a barber shop.,bites a piece of toast.\n3388,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15913,She returns with a photo album and hands it to him. She,She returns with a photo album and hands it to him.,She,gold,sits up and listens in her conversation.,sits beside him on the couch as he puts on his glasses and opens the album.,holds it up to someone as well.,removes the cap and takes the cigarette out of a box.\n3389,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15939,Someone stumbles as he sprints past someone's mansion. She,Someone stumbles as he sprints past someone's mansion.,She,gold,sees a figure racing into the house.,\"knocks the unconscious someone on a floor balcony, and someone falls with her in the bed.\",\"runs past the army camp, where one of the officers jumps onto the ferry and someone marches out into the london streets.\",eyes someone.\n3390,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15927,\"His gaze rose past the paperbacks. Inside, he\",His gaze rose past the paperbacks.,\"Inside, he\",gold,eyes the dark - haired man - looking boy playing a set of drums.,\"completes a sand pile, shaking the fluid to himself.\",finds a name written in a child's shaky cursive.,frames his wife's slim skeletal hand as she leads her nervous friends into an alley.\n3391,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15931,A bullet hits the utility pole behind him. He,A bullet hits the utility pole behind him.,He,gold,\"ducks, glances at the pole's chipped wood.\",slips into another passenger window and stares into the darkness.,\"is just attempting to attack, dodging at the metal wall.\",was chopping wood.\n3392,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15900,\"Someone smokes as she skims the personal photo library on someone's laptop. As the report awakes to cigarette smoke, someone\",Someone smokes as she skims the personal photo library on someone's laptop.,\"As the report awakes to cigarette smoke, someone\",gold,pretends to put her cigarette in his pocket.,hurriedly closes the photo library in the adjoining room.,\"drives ahead, overtaking several images from a sidewalk.\",watches the chaos anxiously.\n3393,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15898,He shifts his contemplative gaze and shuts the door.. Someone,He shifts his contemplative gaze and shuts the door..,Someone,gold,bites her bottom lip.,\"strolls through the downpour, his hands tied behind his back.\",joins someone backstage one of the tables.,steps over him with a telegram on their shoulder.\n3394,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15904,Now someone stops her motorcycle in a rental car company's parking lot. Someone,Now someone stops her motorcycle in a rental car company's parking lot.,Someone,gold,bends toward the lady and rips the wheel off the seat wheel.,gets on the bike and pumps it.,meets her gaze and nods.,\"relaxes her shoulders, and kicks a hand away.\"\n3395,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15893,\"Now, they sit outside smoking. He\",\"Now, they sit outside smoking.\",He,gold,flies yapping mouth behind a statue's.,plays with a still coffee cup full of vehicles.,takes a drag and points out harold's house.,blows out the lighter.\n3396,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15918,She leaves with a case of equipment. Someone,She leaves with a case of equipment.,Someone,gold,places the borrowed photo on a scanner.,gazes hard at the flask.,sits on the passenger seat with her eyes closed and gazes up at the departing ecstatically.,\"is staring at the school door shades, holding her phone.\"\n3397,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15944,She glances around the bathroom. She,She glances around the bathroom.,She,gold,shakes the baby in front of her.,marches down into the office.,grabs a vodka bottle from the freezer.,rushes over as she climbs and runs from him.\n3398,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15935,She mounts a camera on an eve of the roof. Its view,She mounts a camera on an eve of the roof.,Its view,gold,shows a blurry image of her face washed out by light.,shows myrtle car rolling in the air.,\"shows us two small, focusing burnham.\",shows someone dipping her chin in a pad and lays it down.\n3399,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15923,The image of the drowning site shows a dock on the Vanger estate. Someone,The image of the drowning site shows a dock on the Vanger estate.,Someone,gold,overlooks the water and the present day dock.,finds the sizable rat hanging at a picturesque bark.,gazes under his son's arm.,turns out of the gloom.\n3400,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15916,His gaze stops on a picture showing the back of someone's head and the people across the street from her. A tech clerk,His gaze stops on a picture showing the back of someone's head and the people across the street from her.,A tech clerk,gold,catches someone's eye with his thumb rifle.,hands a member's money to a homeless man.,runs up to someone.,gives an exasperated look.\n3401,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15947,\"She pulls the needle through to the other side then sews another stitch. Later, someone\",She pulls the needle through to the other side then sews another stitch.,\"Later, someone\",gold,\"sits at aging surgery, then eyes the tv.\",enters his bedroom still holding the vodka bottle.,feeds someone a pot of wine and puts down a drink as he punches the bug.,wields a flier from his motel - as wraps his mouth around hers.\n3402,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15919,Someone places the borrowed photo on a scanner. He,Someone places the borrowed photo on a scanner.,He,gold,moves up to a building large service track.,pans over the blurry faces of people standing across the street from someone.,steps out of the square and answers out the information.,\"places a pistol on the back of his jacket and stares at it, as someone looks out.\"\n3403,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15943,She bites a strand off with her teeth and approaches him. She,She bites a strand off with her teeth and approaches him.,She,gold,drinks from some paintbrushes.,opens the garage door and enters.,glances around the bathroom.,drops to her knees and spreads her legs straight into the air.\n3404,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15922,\"As he scratches the back of his head, his hand freezes. The image of the drowning site\",\"As he scratches the back of his head, his hand freezes.\",The image of the drowning site,gold,shows a dock on the vanger estate.,jostles through the crop.,rests in a campfire pit across a dusty plain.,shows a casual movement.\n3405,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15962,She bites a piece of toast. She,She bites a piece of toast.,She,gold,sprinkles the sauce into her pan.,\"considers him briefly, then bites her toast again.\",slices down a fork.,waits her autumn block.\n3406,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15949,\"A view through the glass panes of his bedroom doors show him stripping off his pants. Meanwhile, someone\",A view through the glass panes of his bedroom doors show him stripping off his pants.,\"Meanwhile, someone\",gold,watches intently through a porcelain tank.,leans up and runs past a dayton gathering.,shines in beneath the backdrop of a skylight.,peers outside then locks the doors and windows and turns off the light.\n3407,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15894,He takes a drag and points out Harold's house. He,He takes a drag and points out Harold's house.,He,gold,'s posts hover around the markers as the images fly.,looks back at his assistant.,rolls over some more.,goes to the fridge and takes out the painting.\n3408,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15924,Someone overlooks the water and the present day dock. He,Someone overlooks the water and the present day dock.,He,gold,\"stands by studiously, a rustic cabin at his back.\",goes to address him and kisses it.,clings onto him as they run to camels.,watches her work with all strokes.\n3409,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15896,She grabs a stack of sheets. Someone,She grabs a stack of sheets.,Someone,gold,pivots his elder wand above him.,flings him out onto the bed.,begins to someone in the restaurant.,pauses on his way into the bedroom.\n3410,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15907,Someone climbs into his vehicle and backs it out of its spot. He,Someone climbs into his vehicle and backs it out of its spot.,He,gold,shows a middle - aged clerk the photos of the woman from the parade getting into a car with a young man.,puts a sheet of balls in a bin.,bounces off the van's rear hook and lands in a pontoon truck.,opens his beak and draws a gun.\n3411,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15926,\"Entering through a different door, he glances around the abandoned cabin lit meagerly by daylight. His foot\",\"Entering through a different door, he glances around the abandoned cabin lit meagerly by daylight.\",His foot,gold,smashes through the wall as someone gets up and gazes grimly through the dim light toward his home.,\"returns to a hallway stool, then removes a single wooden foot.\",\"kicks an empty bottle on the floor as he moves into a neglected room scattered with papers, books, and trash.\",start to take in the glow and the floor is bathed in light.\n3412,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15908,\"Now, someone speeds between cars in a tunnel. At a retirement home someone\",\"Now, someone speeds between cars in a tunnel.\",At a retirement home someone,gold,opens his briefcase into a leather bag beside a grave site.,screeches to a stop.,is barefoot.,sits with an elderly man.\n3413,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15897,Someone pauses on his way into the bedroom. He,Someone pauses on his way into the bedroom.,He,gold,hears a toothbrush kevin number on his shoulder as he picks them up.,sees the side of a terrace of a diner.,shifts his contemplative gaze and shuts the door.,walks to help as he puts the music sheet down.\n3414,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15915,Flipping through its pages he skims over photos of parade goers. His gaze,Flipping through its pages he skims over photos of parade goers.,His gaze,gold,catches midair by one of his huge bats.,drifts to the side.,sweeps to a biplane.,stops on a picture showing the back of someone's head and the people across the street from her.\n3415,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15953,She straightens to a kneeling position. As he works them down the rest of the way she,She straightens to a kneeling position.,As he works them down the rest of the way she,gold,hops pieces of the cliff top.,lowers herself back on top of him.,catches sight of him self - dancing.,leaps up a her dress.\n3416,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15946,She pierces his skin on one side of the cut. She,She pierces his skin on one side of the cut.,She,gold,\"presses himself to the panel, pulling it free.\",shows a drafting table of potatoes.,brushes the ice back with the powder.,pulls the needle through to the other side then sews another stitch.\n3417,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15951,Pushing him back onto the bed she straddles him. They kiss and then she,Pushing him back onto the bed she straddles him.,They kiss and then she,gold,moves her mouth lower and bites his nipple.,goes to the bed.,starts for the elevator.,gently rests her cheek in her hand and brushes thick strokes against the boy's hair.\n3418,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15925,\"He stands by studiously, a rustic cabin at his back. He\",\"He stands by studiously, a rustic cabin at his back.\",He,gold,has a blunt pencil.,consults the newspaper photo then heads over to the cabin.,takes over his lip with a furrowed brow.,brings down a carriage.\n3419,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15963,\"She considers him briefly, then bites her toast again. Now they\",\"She considers him briefly, then bites her toast again.\",Now they,gold,can say goodbye of their father has wound on forcefully.,talk with someone and someone in someone's living room.,approach someone bridge to a railing overlooking the ocean.,go safely down the stairs and in a luggage platform as she is boarding the elevator.\n3420,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15909,At a retirement home someone sits with an elderly man. The man,At a retirement home someone sits with an elderly man.,The man,gold,is reading a book book.,awakes in the bed seat.,carries a pick in a dining room.,points to the photo.\n3421,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15901,He joins her at the laptop. A photo,He joins her at the laptop.,A photo,gold,shows someone staring at her photo of someone holding a small paper gun.,shows her being shaven with a razor.,shows someone's insurance with new york.,shows a woman near someone snapping a picture.\n3422,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15952,They kiss and then she moves her mouth lower and bites his nipple. She,They kiss and then she moves her mouth lower and bites his nipple.,She,gold,rolls to the ground and puts his hands into his head.,shoves her away into the arms of the sofa and leans back into the chair.,has forgotten what she has done.,straightens to a kneeling position.\n3423,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15950,\"Meanwhile, someone peers outside then locks the doors and windows and turns off the light. Someone\",\"Meanwhile, someone peers outside then locks the doors and windows and turns off the light.\",Someone,gold,picks up his cellphone and produces a note from someone.,\"turns, gazing out at someone offstage with a smile.\",sits on the edge of his bed.,walks someone down the hall with a silver arm draped over her shoulders.\n3424,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15912,Someone leans forward to stare after her. She,Someone leans forward to stare after her.,She,gold,steps shyly to his horse.,returns with a photo album and hands it to him.,\"rises, but remains still.\",slides down the map.\n3425,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15948,Exiting the room she sets it on a table. A view through the glass panes of his bedroom doors,Exiting the room she sets it on a table.,A view through the glass panes of his bedroom doors,gold,show him stripping off his pants.,sags against the ceiling.,shows her full view of the man in a glass cap.,sits on the bed bottom.\n3426,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15905,Someone meets her gaze and nods. She,Someone meets her gaze and nods.,She,gold,pushes the fan in a half - formed picture of ashes.,flips down her helmet's visor and speeds off.,\"gazes at the men, who looks down at the ring.\",\"gawks, props her cheek against his chin.\"\n3427,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15958,He accepts and she folds her arm behind her head. Someone,He accepts and she folds her arm behind her head.,Someone,gold,rips a seat belt from her.,drags off the cigarette.,freshly showered someone gives his brother a glance.,smiles as someone takes her pass.\n3428,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15929,\"Someone climbs a hill away from the cabin. Standing at the top, he\",Someone climbs a hill away from the cabin.,\"Standing at the top, he\",gold,lies and looks around as the water crawls over his head.,treads over a wall.,scans the area contemplatively.,glances over the railing at the top.\n3429,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15955,\"Rocking her hips, she hovers her mouth mere inches above his. He\",\"Rocking her hips, she hovers her mouth mere inches above his.\",He,gold,slides his middle finger onto hers as she hurries off.,\"gets up, donning a jacket.\",reaches between their legs and pulls her into a kiss.,makes a few variations at her.\n3430,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15959,\"Sitting on the counter by the kitchen sink, her hair mussed. Someone\",\"Sitting on the counter by the kitchen sink, her hair mussed.\",Someone,gold,watches someone emerge from the bedroom.,smiles then picks up her jeans and comes to the lounge.,arrives in his 60s.,walks out into the harbor.\n3431,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15940,She sees a figure racing into the house. In the cottage someone,She sees a figure racing into the house.,In the cottage someone,gold,watches his motorcycle procession.,clutches the painted rail of his truck and glances backward.,watches the three surveillance feeds on a portable monitor split screen.,looks in the closely locked kitchen window.\n3432,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15954,\"As he works them down the rest of the way she lowers herself back on top of him. Rocking her hips, she\",As he works them down the rest of the way she lowers herself back on top of him.,\"Rocking her hips, she\",gold,presses her head to his touch.,lets a gust of smoke rise from her neck and against the window.,draws back a few inches from a level scratching her belly.,hovers her mouth mere inches above his.\n3433,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15932,\"He races through the woods pushing tree branches aside as he goes. Meanwhile, at the cottage, someone\",He races through the woods pushing tree branches aside as he goes.,\"Meanwhile, at the cottage, someone\",gold,holds a weather phone.,removes surveillance cameras from the equipment case.,enters a chamber to secure the top of the safe.,puts his sandwich down on a chopping block.\n3434,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15911,As she strides into an adjacent dining room and disappears from view. Someone,As she strides into an adjacent dining room and disappears from view.,Someone,gold,leans forward to stare after her.,\"watches from the daze, which is held by an arm clumps of three chairs, sharing a steady rally.\",heads across the hallway of a large body - class house.,\"break through a couple of glass doors, open doors and jump in place.\"\n3435,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33939,15906,She flips down her helmet's visor and speeds off. Someone,She flips down her helmet's visor and speeds off.,Someone,gold,\"clocks her, then turns her gun and drives it through a tall, suburban neighborhood.\",opens up someone's sleek modern apartment and approaches one of the drawers of the secret - lit hall.,climbs into his vehicle and backs it out of its spot.,slows as she grows motionless with ominous bright sunlight.\n3436,anetv_TIjwhYSIRgg,4313,A woman and a man are practicing fencing in a wooden court. a man and a woman,A woman and a man are practicing fencing in a wooden court.,a man and a woman,gold,are dancing in front of the castle wall in the stands.,are talking in front of a bucket covered with ice.,are wearing fencing uniforms and holding epees practicing in a court room.,are playing dodge ball in a basketball court.\n3437,anetv_TIjwhYSIRgg,549,Two people are seen fencing with one another. The people,Two people are seen fencing with one another.,The people,gold,continue to ride around the rink while audience watch to walk around afterwards.,continue laughing and hugging and ends with them trailing close in.,are then seen playing two instruments when one gets up and walks in and out of frame.,go back and fourth and his each other with swords.\n3438,anetv_TIjwhYSIRgg,4314,A man and a woman are wearing fencing uniforms and holding epees practicing in a court room. he man and the woman,A man and a woman are wearing fencing uniforms and holding epees practicing in a court room.,he man and the woman,gold,\"take their swords and begin to make a mess with sumo wrestlers, across the floor behind puck.\",are dancing their laces while a crowd appears on the background men who love the man.,are practicing thrusts in a wooden court.,are demonstrating how to execute a solo routine using batons.\n3439,anetv_TIjwhYSIRgg,550,The people go back and fourth and his each other with swords. They,The people go back and fourth and his each other with swords.,They,gold,see a person speaking to one another while another man leads the rope around and pans around to a man.,perform several tricks while the group eats alcohol.,continue to hit one another and move back and fourth.,fight between jumping on jump ropes.\n3440,anetv_OCQ9OyMKQKw,19013,He picks up a chainsaw off of the ground. He,He picks up a chainsaw off of the ground.,He,gold,takes it out and begins to inspect it slowly.,\"puts the lotion onto his arm, then jumps down its center on the floor.\",begins to chop down a bush next to him.,starts lecturing some more.\n3441,anetv_OCQ9OyMKQKw,19012,A man wearing a hat is standing outside. He,A man wearing a hat is standing outside.,He,gold,picks up a chainsaw off of the ground.,is talking about.,uses a wooden scraper to wipe down the wood off of a car.,is holding a balancing bat.\n3442,lsmdc3050_MR_POPPERS_PENGUINS-24081,15326,Someone steps around the couch and someone follows. She,Someone steps around the couch and someone follows.,She,gold,moves into the dim office where her mother is still.,\"nods, seeing nothing in her eyes.\",gives someone a kiss.,takes off his cloak and strides past the curved frame.\n3443,lsmdc3050_MR_POPPERS_PENGUINS-24081,15328,He watches her step out. The kids,He watches her step out.,The kids,gold,face bottles from a dirty glass.,are laying down on their horses.,notice their father's lingering gaze.,climb together as she chats quietly.\n3444,lsmdc3050_MR_POPPERS_PENGUINS-24081,15329,Now the penguins sleep on someone's bed. Someone,Now the penguins sleep on someone's bed.,Someone,gold,\"eyes them, brushing his teeth.\",\", someone from forward, stands in front of her.\",glances over and wakes.,rolls her fingers through the magazine.\n3445,lsmdc3050_MR_POPPERS_PENGUINS-24081,15330,\"Someone eyes them, brushing his teeth. He\",\"Someone eyes them, brushing his teeth.\",He,gold,pierces someone's ear.,bites his tongue as he eats.,leans down and kisses her.,wears a thick vest and gloves.\n3446,lsmdc3050_MR_POPPERS_PENGUINS-24081,15327,\"As she turns to someone, they almost kiss, but hug instead. He\",\"As she turns to someone, they almost kiss, but hug instead.\",He,gold,gets to the other end.,watches her step out.,stumbles in his chair.,places someone's crotch with hand and winces.\n3447,lsmdc1007_Spider-Man1-74272,16730,\"The general walks away, leaving a pensive someone. Inside a suburban house, someone's someone\",\"The general walks away, leaving a pensive someone.\",\"Inside a suburban house, someone's someone\",gold,is leaning out of the suv.,waits on the small porch with a large baby.,waits as a female guard drives toward her.,is changing a light bulb.\n3448,lsmdc1011_The_Help-78717,1416,She turns to see someone at the wheel. She,She turns to see someone at the wheel.,She,gold,hurries towards the house.,\"stares straight ahead, his face on someone blinking uncertainly.\",holds it back in one hand.,pours herself into a half - crouching position.\n3449,lsmdc1011_The_Help-78717,1414,\"Smiling warmly, someone leans in and kisses someone on the forehead. Someone\",\"Smiling warmly, someone leans in and kisses someone on the forehead.\",Someone,gold,\"tries to smile, but is overcome by sadness.\",scurries down the walkway.,\"leans over the young man, reaching for the pen.\",joins her daughter with a tender kiss.\n3450,lsmdc1011_The_Help-78717,1417,She hurries towards the house. She,She hurries towards the house.,She,gold,hurries over to the house where passes to the children.,throws down the grocery bag and picks up a loose branch.,wraps the shawl around someone's neck as he slides half off over the threshold.,punches him with his cane.\n3451,anetv_4XfNexN6t04,10899,The musician begins to play the congas in a small room. The man then,The musician begins to play the congas in a small room.,The man then,gold,takes the man's sandals and is holding the escalator down and begins chuckling to a man on her side.,gets up and approaches the camera.,stands and talks over a wardrobe as the man gets keys in the car.,throws his arms in the air and walks past.\n3452,anetv_4XfNexN6t04,10898,A man wearing a blue shirt walks to some congas and sit down. The musician,A man wearing a blue shirt walks to some congas and sit down.,The musician,gold,folds the paper and looks at the camera.,begins to play the congas in a small room.,do a few dance and lays back back on tails.,\"plays the piano while people stand around, enjoying his movements.\"\n3453,anetv_DR2sW3Wd8fo,10734,A video of the swan lake ballet is shown. They,A video of the swan lake ballet is shown.,They,gold,take turns braiding up the rollers.,stand on a room.,\"are fencing, practicing martial arts moves.\",perform the act and interview some of the cast.\n3454,anetv_99PtaOQbBIY,10454,Several cats are shown sitting around followed by a man speaking to the camera. More shots,Several cats are shown sitting around followed by a man speaking to the camera.,More shots,gold,are shown of close animals hitting the bow as well as people riding in the distance.,are shown of cars and leads into a woman cutting a cat's claws.,are shown of people putting nail products decorations and speaking through the girls.,are shown of him picking up more on a dog containing him as well.\n3455,anetv_99PtaOQbBIY,10455,More shots are shown of cars and leads into a woman cutting a cat's claws. Several products,More shots are shown of cars and leads into a woman cutting a cat's claws.,Several products,gold,are then shown of the people posing.,are shown as well as clips of the person snowboarding throughout the yard.,are shown laid out as well as several people holding cats and cutting their nails.,is shown followed by more pictures of a dog being shown braided around the tree.\n3456,anetv_7A_NgDs7jZY,6342,Five ladies are standing on the side of the stages. The ladies,Five ladies are standing on the side of the stages.,The ladies,gold,walked to the center of the stage and started dancing waving their scarves.,walked up on the floor as the young lady performs the moves.,gather to take aim.,tracy pushed each other and continue talking.\n3457,anetv_7A_NgDs7jZY,6343,\"The ladies walked to the center of the stage and started dancing waving their scarves. The ladies started to do belly dancing, they\",The ladies walked to the center of the stage and started dancing waving their scarves.,\"The ladies started to do belly dancing, they\",gold,waved the pole over their legs and went simultaneously.,put aside their scarves and dance.,rolled up their pom poms and began dancing.,stand up and down and twirl and dance.\n3458,anetv_APAxAnwS9oM,6961,A dog is sitting in the grass. The dog,A dog is sitting in the grass.,The dog,gold,gets watching the man across the frisbee.,is swinging on front a small dog.,stands up and walks to the door.,is surrounded by a snow blower.\n3459,anetv_APAxAnwS9oM,13516,A dog is seen laying on the grass with it's hind legs. The dog,A dog is seen laying on the grass with it's hind legs.,The dog,gold,is then cutting the grass while looking to the camera.,walks up to a door and continues laying it's leg down.,continues cutting the grass while smiling to the camera.,laughs while the camera follows her as the woman around him leaves.\n3460,anetv_APAxAnwS9oM,6962,The dog stands up and walks to the door. The dog,The dog stands up and walks to the door.,The dog,gold,walks inside the house.,makes the cookies sound different.,falls into the shower.,follows in front of the garage.\n3461,lsmdc3012_BRUNO-4316,14860,\"Now, someone sets a plate of pie in front of himself, and glances up from his seat. Someone\",\"Now, someone sets a plate of pie in front of himself, and glances up from his seat.\",Someone,gold,\", someone offers his daughter a tight finger.\",\"gives him a nervous half - smile as someone sits with his back to him, then tailor pats his shoulder.\",\"raises a fork full of pie, pauses, then takes his first bite.\",\"sullenly tosses the wine tin aside, as someone grabs a pot from the stove.\"\n3462,lsmdc3012_BRUNO-4316,14857,\"Now, someone walks alone across a parking lot to a restaurant -. Inside, he\",\"Now, someone walks alone across a parking lot to a restaurant -.\",\"Inside, he\",gold,sees someone sitting in a cage beside a sullen lit table.,\"shows a scruffy, attractive family.\",arrives outside a detached house and glares at the chopper.,looks over a display of various pies near the cashier.\n3463,lsmdc3012_BRUNO-4316,14859,\"It shows him holding a boy. Now, someone\",It shows him holding a boy.,\"Now, someone\",gold,sits in the back of the cab and pulls a beret dress off from the rack.,\"sets a plate of pie in front of himself, and glances up from his seat.\",stares obliviously down the bank's pizza.,gets off the chopper and crashes into the fireplace.\n3464,lsmdc3012_BRUNO-4316,14861,\"Someone raises a fork full of pie, pauses, then takes his first bite. Now, a waitress\",\"Someone raises a fork full of pie, pauses, then takes his first bite.\",\"Now, a waitress\",gold,brings him a whole other pie and an ice cream sundae.,shimmies onstage as someone sets down a large mug filled with candles and pastries.,approaches in the fbi room.,brings his identical wedding finger to someone who cuts to their waiter scooping out a slice as he opens the slender box.\n3465,lsmdc3012_BRUNO-4316,14854,\"A flashback shows the cardboard box arriving at the baggage claim carousel. In a silk robe, someone\",A flashback shows the cardboard box arriving at the baggage claim carousel.,\"In a silk robe, someone\",gold,rocks his baby to sleep.,runs a bloody pincer through the man.,notices her dark - haired girl.,\"smiles past her, and approaches an operated washing restaurant.\"\n3466,lsmdc3012_BRUNO-4316,14858,\"Now, he eyes a photo. It\",\"Now, he eyes a photo.\",It,gold,shows him holding a boy.,opens to his computer and answers it.,'s with a toy mirror.,'s over to an relative security.\n3467,lsmdc3012_BRUNO-4316,14856,\"The security team carries him away. Now, someone\",The security team carries him away.,\"Now, someone\",gold,walks alone across a parking lot to a restaurant -.,drives his motorcycle on the back of the freeway.,awakes on his bed and joins someone.,emerges from the hole.\n3468,lsmdc3012_BRUNO-4316,14862,\"Now, a waitress brings him a whole other pie and an ice cream sundae. Someone\",\"Now, a waitress brings him a whole other pie and an ice cream sundae.\",Someone,gold,emerges from the kitchen and glares at someone.,\"digs into a piece of strawberry cream pie, and takes a bite.\",\"takes his sip of champagne from the bottle, leans it, and unwraps a glass of orange juice.\",takes her hand out and she hovers a finger over the goo that drops under the paper.\n3469,lsmdc3012_BRUNO-4316,14853,Four men pull him off the stage. A flashback,Four men pull him off the stage.,A flashback,gold,has someone's daughter with someone.,\", a sumo pose with it.\",shows the cardboard box arriving at the baggage claim carousel.,jumps and grabs all the energy from the vault in the air.\n3470,lsmdc3012_BRUNO-4316,14863,His face already covered with chocolate. Someone,His face already covered with chocolate.,Someone,gold,chugs himself with some cheese.,enters and stops short as he sees someone in the dining room.,passes the baseball players menu.,is grateful for her departure.\n3471,anetv_50nJ8UkOGwg,17123,A person is seen riding in a small boat along the water. The person,A person is seen riding in a small boat along the water.,The person,gold,moves back and fourth as well as clips of the person riding around on wakeboard.,rides through rough waves and looks off in the distance.,continues doing sit ups on the river.,then flips through the water and camera over in the water.\n3472,anetv_50nJ8UkOGwg,12379,\"He is moving very quickly, and clouds are building. He\",\"He is moving very quickly, and clouds are building.\",He,gold,\"does a flip, only to fall off his hood.\",is struggling to stay upright while he sails.,lifts his cup and then back to the fire.,bends out as fast as they can.\n3473,anetv_50nJ8UkOGwg,17124,The person rides through rough waves and looks off in the distance. The man,The person rides through rough waves and looks off in the distance.,The man,gold,continues bouncing on the raft as the kid drives up and ends by jumping on the water.,shovels snow from the hill.,continues riding along in the boat.,comes back and makes a seat up and does a flip while explaining.\n3474,anetv_P_zz379qSuo,2613,They tie a rope between two concrete pillars. They,They tie a rope between two concrete pillars.,They,gold,use the rope to balance and bounce.,see it in mid - air.,finish their skis and throw their arms up to the air.,prepare to get their rope jumping rope.\n3475,anetv_P_zz379qSuo,2612,A group of people walk down a pier to a beach. They,A group of people walk down a pier to a beach.,They,gold,are slow as the rapids stream throughout.,are rafting in the water.,are swimming in a river.,tie a rope between two concrete pillars.\n3476,anetv_P_zz379qSuo,11412,A man puts up a slack line in between two trees. He,A man puts up a slack line in between two trees.,He,gold,joins a little group of people standing in front of the canoe.,gets on the slack line and starts doing tricks on it.,spreads their arms before they begin to fall.,continues to dance moves while limping.\n3477,anetv_P_zz379qSuo,11413,He gets on the slack line and starts doing tricks on it. The man,He gets on the slack line and starts doing tricks on it.,The man,gold,is juggling balls on the beach.,is kneeling down and then does impressive tricks on the stilts.,jumps into the water and spins it around.,grabs the edge of the board and flips several times.\n3478,anetv_P_zz379qSuo,11411,Two men are walking on a beach. A man,Two men are walking on a beach.,A man,gold,puts up a slack line in between two trees.,wears a man socks and hat.,walks up and down on a brown ball.,jumps down holding a hit.\n3479,anetv_82s4QeuHioo,2294,Man is sitting on akayak holding a row and showing the corect way of rowing. people,Man is sitting on akayak holding a row and showing the corect way of rowing.,people,gold,are behind the man sitting on the ice.,are on a blue lake.,are in a kayak on lakeside.,are in the room watching the man.\n3480,anetv_82s4QeuHioo,2296,People are on rapids kayaking. men,People are on rapids kayaking.,men,gold,are swimming on the lake by the kayak and walking in the lakeside holding kayaks.,\"are pulling a boat through a maintenance area, people are rowing rafts in a paved river.\",go through the water on the boat and sails in the ocean.,are kayaking pushed a boat into the water.\n3481,lsmdc1023_Horrible_Bosses-81886,11119,A guy eyes them as they leave. They,A guy eyes them as they leave.,They,gold,\"follow the black guy, who has a shaven head and several tattoos.\",\"close, someone shakes his head.\",eyes - admire balloons.,hands backstage after the guy.\n3482,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60240,11906,\"The fellowship are struggling through a blinding blizzard, up towards the pass of caradhras. Someone the Elf\",\"The fellowship are struggling through a blinding blizzard, up towards the pass of caradhras.\",Someone the Elf,gold,is almost like a snatcher.,passes the tree in the direction of the vast art - american house on their very decorative facade.,watches from someone's bedside.,moves lightly across the top of the snow.\n3483,anetv_s1YjWVUu6pM,220,A man in front of him is kneeling down in front of a weight bar. He,A man in front of him is kneeling down in front of a weight bar.,He,gold,bends down and lifts up the weight.,is kneeling on top of monitors and strapped to a weight machine.,drops three weights over the bar and continues spinning around.,\"cross then lifts a weight down and picks up a weight, the head then lays it down heavily.\"\n3484,anetv_s1YjWVUu6pM,219,A man with a beard is standing in a gym. A man in front of him,A man with a beard is standing in a gym.,A man in front of him,gold,is standing next to them.,puts him on a table.,picks up a shoe on the ground and resumes wiping it.,is kneeling down in front of a weight bar.\n3485,anetv_s1YjWVUu6pM,14306,Man is kneeling in front of him getting ready to lift weight. the coach,Man is kneeling in front of him getting ready to lift weight.,the coach,gold,is being in the crowd.,instructs the boys to ski.,kneels in front of the man and is showing him how to put the leg to stand and lift the weight.,lifts the weight lifter and pushes the weight for a little bit before dropping it.\n3486,anetv_s1YjWVUu6pM,14307,The coach kneels in front of the man and is showing him how to put the leg to stand and lift the weight. a winab gets in front of the man and he,The coach kneels in front of the man and is showing him how to put the leg to stand and lift the weight.,a winab gets in front of the man and he,gold,lifts it up to a tile right then lifts it over head and along the ground.,lifts the weights and puts the man like sunlit weight over the head.,grabs the tool against the side of the head.,is showing how a woman lift weight.\n3487,anetv_s1YjWVUu6pM,14305,Bearded man is standing in a roofed gym in fronr of machines talking to the camera. man,Bearded man is standing in a roofed gym in fronr of machines talking to the camera.,man,gold,\"is in a room talking, showing just the man and a woman who are bouncing.\",is standing in a gym demonstrating his parallel wheels.,is holding a mic with a microphone next to him and doing several alternating hands prepping her instrument.,is kneeling in front of him getting ready to lift weight.\n3488,lsmdc0020_Raising_Arizona-57183,16792,A pull back from the paper shows people reading it together at home. They,A pull back from the paper shows people reading it together at home.,They,gold,are playing the hangar and she has turned to look at the other someone.,enter someone's apartment.,wearing the english business writer.,look from the paper to each other.\n3489,lsmdc0020_Raising_Arizona-57183,16784,Once again someone works as his sweaty gum - chewing colleague stands idly by. He,Once again someone works as his sweaty gum - chewing colleague stands idly by.,He,gold,looks to the side.,turns his stoic gaze to the bearded floor and subtly shakes his head.,stops at the bar.,notices the parking lot behind him and gives him a hug.\n3490,lsmdc0020_Raising_Arizona-57183,16790,Someone snags the door before it closes and takes his own five - finger discount copy. He,Someone snags the door before it closes and takes his own five - finger discount copy.,He,gold,turns on someone's moist eyes and stares at him on the smart phone.,flips the paper over to look at the headline.,\"watches it go, then turns to face someone, who waits in an adjoining hall.\",\"moves for the mechanism, not holding it.\"\n3491,lsmdc0020_Raising_Arizona-57183,16795,Someone gets in the car. It,Someone gets in the car.,It,gold,rolls onto her back.,is checked in sheriff's car; someone enters the office.,is yelling to the car.,\"starts down the long, winding road leading away from the trailer, kicking up dust.\"\n3492,lsmdc0020_Raising_Arizona-57183,16791,The banner headline of the Tempe Intelligencer is: Arizona Quints Go Home. A pull back from the paper,The banner headline of the Tempe Intelligencer is: Arizona Quints Go Home.,A pull back from the paper,gold,\"looks back and forth, trying to read the concentration.\",shows people reading it together at home.,is decorated demurely and hugged christmas cotta.,\"is held along with dark, gold and green letters.\"\n3493,lsmdc0020_Raising_Arizona-57183,16782,\"Someone sits on the edge of the bed, also staring listlessly. Her police uniform\",\"Someone sits on the edge of the bed, also staring listlessly.\",Her police uniform,gold,\"takes out a tiny kitten and wanders over to someone, who makes his way under the couch.\",goes dark again in the alleyway.,spots with another girl at someone's leg.,is on but not yet buttoned.\n3494,lsmdc0020_Raising_Arizona-57183,16789,\"Someone, a stocky middle - aged man in a white polyester suit, is gesturing expansively with his white cowboy hat toward a one - story warehouse store with a football stadium parking lot, chroma - keyed in behind him. The businessman\",\"Someone, a stocky middle - aged man in a white polyester suit, is gesturing expansively with his white cowboy hat toward a one - story warehouse store with a football stadium parking lot, chroma - keyed in behind him.\",The businessman,gold,takes his newspaper and releases the machine door as he turns to leave.,is looking calmly by the window with his glass in his hand.,rides his car along the fence then kicks it as far as he goes.,steps out of the parked car in front of a chainsaw - standing body.\n3495,lsmdc0020_Raising_Arizona-57183,16786,People sit listlessly watching tv. Someone,People sit listlessly watching tv.,Someone,gold,\"perks up, reacting to something on tv.\",looks alarmed when he sees his father sprawled on his back.,takes off her shades and holds a case against the frame.,hangs up off the floor.\n3496,lsmdc0020_Raising_Arizona-57183,16794,Someone enters frame and cinches down a ladder that is tied to the roof of the car. Someone,Someone enters frame and cinches down a ladder that is tied to the roof of the car.,Someone,gold,\"uses a rocket, strikes him in the face, and hoists him back onto the roof.\",gets in the car.,casually watches around the side of the truck disappearing from under the hood of his car.,swivels his orange jacket around his waist and takes off a pair of thin casts pants.\n3497,lsmdc0020_Raising_Arizona-57183,16788,\"Eyes still locked on the set, someone reaches her hand out to someone. Eyes still locked on the set, someone\",\"Eyes still locked on the set, someone reaches her hand out to someone.\",\"Eyes still locked on the set, someone\",gold,grabs hold of someone's bumper forearm.,takes her hand in his.,manages to walk off.,steps toward the lifeboat and steps close.\n3498,lsmdc0020_Raising_Arizona-57183,16793,They look from the paper to each other. We,They look from the paper to each other.,We,gold,\"are floating in toward someone who is seated, waiting, in the driver's seat of someone's chevy.\",notice a tower of angry light.,return her to an office.,falls on the tree.\n3499,lsmdc0020_Raising_Arizona-57183,16781,The bedroom is somewhat messy. Someone,The bedroom is somewhat messy.,Someone,gold,is alone with a beefy hand.,noise of a cigarette taking in.,\"sits on the edge of the bed, also staring listlessly.\",lasers view spots them just starting.\n3500,lsmdc0020_Raising_Arizona-57183,16780,\"He looks from someone out to the road. Over someone's shoulder as he stares listlessly at himself in the mirror, a razor held forgotten in one hand, his face\",He looks from someone out to the road.,\"Over someone's shoulder as he stares listlessly at himself in the mirror, a razor held forgotten in one hand, his face\",gold,\"shows someone coming, motionless.\",obscured only a few inches.,half lathered and half shaved.,\"wiped, someone looks up at him.\"\n3501,lsmdc0020_Raising_Arizona-57183,16785,He looks to the side. People,He looks to the side.,People,gold,stares out the window with the pistol in his hand.,sit listlessly watching tv.,are grouped at the door.,is shown of blending up different recipe and ingredients of wood.\n3502,lsmdc0020_Raising_Arizona-57183,16783,Her police uniform is on but not yet buttoned. Her hands,Her police uniform is on but not yet buttoned.,Her hands,gold,dropped by the pockets.,\"lie palm - up in her lap, like two dead fish.\",are bandaged and someone pushes her needle through her throat.,\"get stuck, and the shell is swiftly replaced.\"\n3503,lsmdc0020_Raising_Arizona-57183,16787,\"Someone notices her reaction and also sloughs off his stupor to watch. Eyes still locked on the set, someone\",Someone notices her reaction and also sloughs off his stupor to watch.,\"Eyes still locked on the set, someone\",gold,reaches her hand out to someone.,holds her head on the shoulder.,\"reaches around, takes a bottle of serum in his hand, and picks it up in his hands.\",steps into the lead.\n3504,lsmdc0020_Raising_Arizona-57183,16779,\"His face still deadly neutral, the agent looks back down at the file and unfolds the accordioned rap sheet, revealing it to be a couple feet long. He\",\"His face still deadly neutral, the agent looks back down at the file and unfolds the accordioned rap sheet, revealing it to be a couple feet long.\",He,gold,\"examines the clip, then releases it.\",looks from someone out to the road.,slumps heavily against a white fence at his father's corner carrying the basket for someone.,lies asleep in his beige armchair with his head against his spread pillow.\n3505,anetv_ShT4biEuQDo,14856,He continues to wave and roll his hands in the air as more cars pass. He,He continues to wave and roll his hands in the air as more cars pass.,He,gold,\"rocks between the cars crowded behind him, falling into more areas of someone's performance.\",uses a water hose from the mug and walks away of the aston.,gives the people as it passes over the crane.,continues shoveling the snow.\n3506,anetv_ShT4biEuQDo,14854,A shirtless man is shoving snow outside at the curb. He,A shirtless man is shoving snow outside at the curb.,He,gold,again traces the game with the phone.,\"puts his car behind her and adjusts her balance, as he walks into his car.\",waves his hands around and motions at the passing cars.,is seen sitting on a bike on the street.\n3507,anetv_ShT4biEuQDo,14855,He waves his hands around and motions at the passing cars. He,He waves his hands around and motions at the passing cars.,He,gold,flips off the set.,continues to wave and roll his hands in the air as more cars pass.,flashes and runs to first the hole and points at them.,is pushing his moped forward when he sees again.\n3508,lsmdc3012_BRUNO-4156,18899,He staggers back and forth. He,He staggers back and forth.,He,gold,uses a leveler on the wall.,wrenches the curtain off his head.,\"crashes around the top, and pins them to his side.\",finishes from the table in the kitchen.\n3509,lsmdc3080_THIS_MEANS_WAR-37237,10823,\"The agent fights back, wrapping a payphone cord around his neck. Someone\",\"The agent fights back, wrapping a payphone cord around his neck.\",Someone,gold,drops to the floor as someone shoots.,appears in the crowd with his hand clamped.,sits on the bed beside a friendly brunette and blond.,hugs the boy.\n3510,lsmdc3080_THIS_MEANS_WAR-37237,10828,\"As someone reaches the dancer stage, someone knocks him down and falls away. Arriving, someone\",\"As someone reaches the dancer stage, someone knocks him down and falls away.\",\"Arriving, someone\",gold,catches him and flexes her wrists defensively.,disarms someone and slams him against the pole.,has his hand on his shirt.,bows his head and sneers.\n3511,lsmdc3080_THIS_MEANS_WAR-37237,10825,\"Someone and someone give chase, dropping the bald man. Reaching the main floor, someone\",\"Someone and someone give chase, dropping the bald man.\",\"Reaching the main floor, someone\",gold,holds his hands up to sweep a burly man across one.,parks his pipe near a plate and aims it at someone.,steps up and brings out a face.,trips then draws an ankle pistol and aims.\n3512,lsmdc3080_THIS_MEANS_WAR-37237,10821,\"Dropping to the floor, the agent shoot their assailants. As he runs through a doorway, a bald man\",\"Dropping to the floor, the agent shoot their assailants.\",\"As he runs through a doorway, a bald man\",gold,tosses someone a shotgun then attacks someone.,climbs up a ladder and flies on the shelf.,passes on a balcony in front of the cage.,walks behind him holding a pen.\n3513,lsmdc3080_THIS_MEANS_WAR-37237,10822,\"As he runs through a doorway, a bald man tosses someone a shotgun then attacks someone. The agent\",\"As he runs through a doorway, a bald man tosses someone a shotgun then attacks someone.\",The agent,gold,reaches over the table and grabs the dazzling yellow action canister.,lick the camera and strikes him with the gun.,\"fights back, wrapping a payphone cord around his neck.\",returns to the cashier.\n3514,lsmdc3080_THIS_MEANS_WAR-37237,10830,\"While his partner straps someone's neck and cuffs him to the pole, someone holds him at gun point. Later, they\",\"While his partner straps someone's neck and cuffs him to the pole, someone holds him at gun point.\",\"Later, they\",gold,make their way into the private room.,enter the lab - - followed by cubicles.,demonstrate moves in an enormous computer line.,haul someone into the field office.\n3515,lsmdc3080_THIS_MEANS_WAR-37237,10827,\"Someone dashes over the bar then somersaults across the table. As someone reaches the dancer stage, someone\",Someone dashes over the bar then somersaults across the table.,\"As someone reaches the dancer stage, someone\",gold,knocks him down and falls away.,shakes the white - skinned boy.,sinks down and scurries to her feet as someone ranks them into the room.,slips on her harm's way.\n3516,lsmdc3080_THIS_MEANS_WAR-37237,10824,The blast misses him and someone flees. Someone and someone,The blast misses him and someone flees.,Someone and someone,gold,\"give chase, dropping the bald man.\",stand on the road among the flailing alien.,move in the opposite direction.,spikes the thugs in a chair.\n3517,lsmdc3080_THIS_MEANS_WAR-37237,10826,Someone forces a patron down and someone shot misses again. Someone,Someone forces a patron down and someone shot misses again.,Someone,gold,faces his high friend as his right crashes into the ground.,presses the phone to her ear and peeks.,\"leap over the battlements at the top of the tree, until the flies tentacles.\",dashes over the bar then somersaults across the table.\n3518,lsmdc3080_THIS_MEANS_WAR-37237,10829,\"Someone forces someone down and someone punches him. While his partner straps someone's neck and cuffs him to the pole, someone\",Someone forces someone down and someone punches him.,\"While his partner straps someone's neck and cuffs him to the pole, someone\",gold,spins a few times before the dance floor.,falls onto a pensive.,holds him at gun point.,swings him along the ground.\n3519,lsmdc3080_THIS_MEANS_WAR-37237,10820,Someone stands revealing his powerful build. Someone's poker buddies,Someone stands revealing his powerful build.,Someone's poker buddies,gold,draw guns and fires as he flees.,watch him as his brother looks out of the cell door.,sit in the water from the tent.,send up offense hold.\n3520,anetv_87hsTxVtn-A,18659,\"She dances for the audience, swerving and gyrating. She\",\"She dances for the audience, swerving and gyrating.\",She,gold,sees the old someone in the corner of the room.,\"meters, shells fly high above the rotor blades.\",pulls out of the lumbering convoy.,continues dancing as she finishes her performance.\n3521,anetv_87hsTxVtn-A,15365,A woman dances on a stage alone. Someone,A woman dances on a stage alone.,Someone,gold,pours the flute all over her mouth as she and continues playing the accordian again.,jumps onto the floor and jumps into a beam.,walks into a kitchen and moves a harness.,walks in front of the camera ducking down.\n3522,anetv_9ZQY-ZfimYo,9969,A man is shown speaking to the camera excitedly and shows several shots of the man climbing a rock wall and various locations. Then man,A man is shown speaking to the camera excitedly and shows several shots of the man climbing a rock wall and various locations.,Then man,gold,helps the person play and the large man stands in a position to adjust his gear and gets more and ends with his equipment.,falls in the track and people goes away.,then continues speaking to the camera and demonstrates how to properly climb the wall while still speaking.,rides around on a board and jumps with more equipment.\n3523,anetv_6cPXFUqRB1s,2060,The male star then spins carefully gaining momentum of the throw. The male star then,The male star then spins carefully gaining momentum of the throw.,The male star then,gold,tosses the ball as far as he can.,catches the next tree.,dives into the pile of sand again.,rides backwards across the track when he is finished.\n3524,anetv_6cPXFUqRB1s,2061,\"The male star then tosses the ball as far as he can. After achieving his goal, the replay\",The male star then tosses the ball as far as he can.,\"After achieving his goal, the replay\",gold,shows more of the players playing and closing windows close and having a great time as the men smile.,goes from right after.,shows how good the man really handled the ball throw.,shows replay of the tournament.\n3525,anetv_6cPXFUqRB1s,2921,A man takes a ball attached to a rope and swings it around his body. He,A man takes a ball attached to a rope and swings it around his body.,He,gold,turns forward and spins in the air.,throws the ball in the air.,jumps down and hits the ball.,flips around the court then stands in front of the judges.\n3526,anetv_6cPXFUqRB1s,2058,A male Olympian from the Unites States is getting ready to compete in the ball throw. The male then,A male Olympian from the Unites States is getting ready to compete in the ball throw.,The male then,gold,grabs the handle and positions himself.,joins a while and athletes do not win.,runs out again and throws other puck along the field while criquet.,swings in circles on the swing.\n3527,anetv_6cPXFUqRB1s,2925,The man walks over to more people. The track,The man walks over to more people.,The track,gold,is shown in full view.,plays on the mud court.,of the people are chasing away the bull.,is decorated for drink.\n3528,anetv_6cPXFUqRB1s,2924,It shows a replay of the man throwing the ball. The man,It shows a replay of the man throwing the ball.,The man,gold,misses it to hit a big goal.,completes and throws the discus backwards at the goal.,walks over to more people.,talks with more end says something and ends with him celebrating and talking to the camera.\n3529,anetv_6cPXFUqRB1s,2059,The male then grabs the handle and positions himself. The male star then,The male then grabs the handle and positions himself.,The male star then,gold,lifts the string on the top and resumes putting the bike onto the ground.,gives a second slam with a smaller tool trunk.,uses it on the back of the machine all and flings it off a smaller vent cutter.,spins carefully gaining momentum of the throw.\n3530,anetv_6cPXFUqRB1s,2922,It lands on a field and people measure the distance. The man,It lands on a field and people measure the distance.,The man,gold,sails down some sand and stands in the sand.,\"continues his routine and flips through sideways, landing into the uneven pool.\",does a jump and lands in the field.,walks off in the other direction.\n3531,anetv_6cPXFUqRB1s,2923,The man walks off in the other direction. It,The man walks off in the other direction.,It,gold,crashes into the man.,'s an unseen customer.,shows a replay of the man throwing the ball.,rears up in the first air not looking down.\n3532,anetv_JouywOCeGHI,9488,Several quick cuts are shown explaining the terms behind belaying in the context of climbing. The man,Several quick cuts are shown explaining the terms behind belaying in the context of climbing.,The man,gold,is then shown performing on a wakeboard and spinning.,attaches a monster to part of the roof.,talks to the camera again.,then stops and talks to the camera while a horse is over on a rafting board.\n3533,anetv_JouywOCeGHI,9489,More quick scenes are shown explaining the process behind belaying in the context of climbing. The man,More quick scenes are shown explaining the process behind belaying in the context of climbing.,The man,gold,dismounts from the tightrope and walks off in another direction set.,is unaware of the argument and stands.,talks to the camera once more.,removes the resistance and gets even farther to remove it of the tiles and apply it over all the surface.\n3534,lsmdc3068_THE_BIG_YEAR-3455,11836,He talks on his cell as he exits the building. He,He talks on his cell as he exits the building.,He,gold,hurries into the store he holds on his aunt.,locks the window and approaches the cab.,comes down the stairs to someone's room and steps the passenger door.,waits by the curb as his driver pulls the car up beside a row of taxis.\n3535,lsmdc3068_THE_BIG_YEAR-3455,11840,What were you thinking?. But the guy,What were you thinking?.,But the guy,gold,goes to answer it.,won't see someone.,is hanging on the leash.,gives a dismissive wave.\n3536,lsmdc3068_THE_BIG_YEAR-3455,11837,He waits by the curb as his driver pulls the car up beside a row of taxis. He,He waits by the curb as his driver pulls the car up beside a row of taxis.,He,gold,flees as someone stands before him.,builds up the pitch.,jumps in the back.,lowers the phone behind his ear.\n3537,lsmdc3068_THE_BIG_YEAR-3455,11838,\"Grimacing, he slumps against the seat. Now, a small plane\",\"Grimacing, he slumps against the seat.\",\"Now, a small plane\",gold,sits on a runway.,passes from the bridge.,zooms out over the village's steeple.,\"sits in a carpeted room, surrounded by others.\"\n3538,lsmdc3068_THE_BIG_YEAR-3455,11835,Someone shoots his watch a furtive glance. McIntyre,Someone shoots his watch a furtive glance.,McIntyre,gold,\"nods, and settles back up.\",returns to the conference room.,\", he hands someone his cellphone.\",gives him the jewelry and opens it.\n3539,lsmdc3068_THE_BIG_YEAR-3455,11834,\"Later, he, someone and someone sit at the conference room table while McIntyre talks outside with his associates. Someone\",\"Later, he, someone and someone sit at the conference room table while McIntyre talks outside with his associates.\",Someone,gold,reaches out of his cell.,takes someone's arm.,\"leaves, leaving a group of cars native - california people.\",shoots his watch a furtive glance.\n3540,lsmdc3068_THE_BIG_YEAR-3455,11839,\"Now, a small plane sits on a runway. As she turns away, someone\",\"Now, a small plane sits on a runway.\",\"As she turns away, someone\",gold,looks out from the tank in his deep blue sunglasses.,\"peers down at her, where someone hands someone a glass of wine.\",eyes her new husband.,rests her hand on his forehead and watches him.\n3541,lsmdc3068_THE_BIG_YEAR-3455,11843,\"He takes a seat across the aisle from someone, then notices the champion birder eyeing him. Someone\",\"He takes a seat across the aisle from someone, then notices the champion birder eyeing him.\",Someone,gold,drives behind the girls so it can not go back.,\"allows a nod, then settles in his seat.\",over his shoulder.,\"removes his jacket and beckons him on, then releases her.\"\n3542,lsmdc3068_THE_BIG_YEAR-3455,11841,But the guy gives a dismissive wave. He,But the guy gives a dismissive wave.,He,gold,\"speed along toward medieval heels, barefoot.\",runs toward the submersible with the jump.,grabs a cup then gets up and collects some straws.,stows his bags on an overhead shelf.\n3543,lsmdc3068_THE_BIG_YEAR-3455,11833,Someone glares and someone shoots someone a look. Someone,Someone glares and someone shoots someone a look.,Someone,gold,falls into someone's arms.,takes someone's hand.,addresses the staff sergeant and gives a nod.,gives a tight affirming smile.\n3544,anetv_EZZzVXqxG6U,11168,They build up as much speed as possible so they can throw as far as possible. There,They build up as much speed as possible so they can throw as far as possible.,There,gold,requiring have visible mechanic.,is bikers all piled up.,\", they are driving each other on the train, riding forward, going faster and faster.\",are even audience for this sport that actually come to watch it.\n3545,anetv_EZZzVXqxG6U,11166,Multiple men begin to start turning their bodies as quickly as they possibly can. They each in different situations but all,Multiple men begin to start turning their bodies as quickly as they possibly can.,They each in different situations but all,gold,go down at the water.,meet in a demonstration.,understand what they say and two of them look across and run to it.,playing the same sport.\n3546,anetv_EZZzVXqxG6U,11167,They each in different situations but all playing the same sport. They,They each in different situations but all playing the same sport.,They,gold,bounce in the sand.,build up as much speed as possible so they can throw as far as possible.,give form and look around.,march in sync on each other on the slope.\n3547,anetv_sVDRluetSyg,16613,A man walks by and she asks him to hand her the bucket on the ground. The male,A man walks by and she asks him to hand her the bucket on the ground.,The male,gold,helps a boy get in the hole and throws it to her again.,then takes his glasses off and begins looking directly under her skirt when she turns around.,chases the dog back and forth while others follow close behind.,lassos the woman and puts the paw.\n3548,anetv_sVDRluetSyg,16616,\"Once the third boy comes, he holds the bucket up but takes a gasp in disbelief and he too begins looking under her skirt then drops the bucket and walks away when the girl turns around. Several more men come and they all\",\"Once the third boy comes, he holds the bucket up but takes a gasp in disbelief and he too begins looking under her skirt then drops the bucket and walks away when the girl turns around.\",Several more men come and they all,gold,run towards the intersection.,emerge from the doorway laughing.,go down the steps.,have the same reaction.\n3549,anetv_sVDRluetSyg,16614,The male then takes his glasses off and begins looking directly under her skirt when she turns around. Another man comes and does the same thing as the first male but the girl,The male then takes his glasses off and begins looking directly under her skirt when she turns around.,Another man comes and does the same thing as the first male but the girl,gold,turns around he gets caught.,straddles him and face with him.,spits out a candle too.,do splits on the ground.\n3550,anetv_sVDRluetSyg,16612,\"A female is standing on a ladder with a orange caution vest on, silver heels and a small mini black skirt with her but out and no underwear. A man walks by and she\",\"A female is standing on a ladder with a orange caution vest on, silver heels and a small mini black skirt with her but out and no underwear.\",A man walks by and she,gold,talks about her toy and how to smooth the bag carefully with use beneath it.,asks him to hand her the bucket on the ground.,regains her speed and loosens her spin.,\"is getting her hair out, then she picks it up and continues to now groomed.\"\n3551,anetv_sVDRluetSyg,3468,She is cleaning the windows while wearing a very short skirt. She,She is cleaning the windows while wearing a very short skirt.,She,gold,is putting a shoe in the chest and adding applying cream to her skin.,gets out the workshop with a cloth and a dryer.,\"tricks several men into handing her a bucket, when they realize she is n't wearing underwear.\",uses the mask to wipe down the camera.\n3552,anetv_sVDRluetSyg,3467,A woman is standing on a ladder outside a trolley. She,A woman is standing on a ladder outside a trolley.,She,gold,is using a welder on a metal block.,is in a toaster in the car apartment holding a shovel.,is cleaning the windows while wearing a very short skirt.,jumps down the front of the stairs talking about the movement.\n3553,anetv_sVDRluetSyg,16615,\"Another man comes and does the same thing as the first male but the girl turns around he gets caught. Once the third boy comes, he holds the bucket up but takes a gasp in disbelief and he too\",Another man comes and does the same thing as the first male but the girl turns around he gets caught.,\"Once the third boy comes, he holds the bucket up but takes a gasp in disbelief and he too\",gold,attempts to bite those takes as his mother helps him from but to put him down again.,begins facing the rest of once he comes in who serves the ball and gets it to shake the spoon.,grabs the summer and return to the rest to measure it.,begins looking under her skirt then drops the bucket and walks away when the girl turns around.\n3554,anetv_I6gc2AjcYOY,1017,We see a lady washing a white towel in a sink. The lady,We see a lady washing a white towel in a sink.,The lady,gold,wipes her eyes on the sink.,rinses the water off the bottle and walks over to her sink.,puts toothpaste from the sink and washes her face.,lifts the towel up.\n3555,anetv_I6gc2AjcYOY,1018,The lady lifts the towel up. The lady,The lady lifts the towel up.,The lady,gold,brushes the floor and takes out a toothbrush.,works the razor evenly from her face.,vacuums the mans leg.,picks something up off the floor.\n3556,anetv_3RTmWrwgKek,4935,A boy hopscotches back and forth. the other people,A boy hopscotches back and forth.,the other people,gold,are hiding behind a couch.,are sitting on the snowy slope skiing down the slope.,do theirs together and let him decorate the tree into the sand.,watch the boy play.\n3557,anetv_3RTmWrwgKek,9334,A small boy is seen throwing a pebble onto hop scotch while many watch on the sides. The boy,A small boy is seen throwing a pebble onto hop scotch while many watch on the sides.,The boy,gold,performs more bar again and then performing continues again skating gracefully.,hopes all the way down and back while grabbing the pebble and others cheer.,continues throwing the tennis ball and throws around watching the dogs play.,ends with a frisbee ensemble as close to the camera and laying back down.\n3558,anetv_hz3n1wrXYAc,16352,He then walks away and meets up with another racer and begins to move his pedals. The man is now at the top of the rack and the bar is let down and the two men,He then walks away and meets up with another racer and begins to move his pedals.,The man is now at the top of the rack and the bar is let down and the two men,gold,shake each other in the face.,climb a bench and are seen in the room.,begin moving throughout the dirt track.,demonstrate finally to get their bearings.\n3559,anetv_hz3n1wrXYAc,5168,Two men are talking on top of a slide and go down riding bikes. men,Two men are talking on top of a slide and go down riding bikes.,men,gold,is walking in a parking lot and is sitting next to horses.,are walking on skateboards in an arena.,are then walking on leashes and playing on a rock.,get to the finish and keep talking to the camera interviewing other men.\n3560,anetv_hz3n1wrXYAc,5167,Man is talking to the camera holding a helmet and a bike. two men,Man is talking to the camera holding a helmet and a bike.,two men,gold,are using a jack to remove the tire by removing the lug nuts.,are talking on top of a slide and go down riding bikes.,are rowing down a river.,are in a gym room trying to clean the towel together at the sink.\n3561,lsmdc1038_The_Great_Gatsby-87121,9945,\"A red biplane does a corkscrew dive above a skyscraper. A younger, fresh - faced someone\",A red biplane does a corkscrew dive above a skyscraper.,\"A younger, fresh - faced someone\",gold,sits across the pool with her pool leg.,stands together at the table.,\"looks up from the busy street, smiling.\",sits on his green board on a gunner chair.\n3562,anetv_5fgJ5vWTcSQ,1340,A man is riding a skateboard down a suburban road. Two more,A man is riding a skateboard down a suburban road.,Two more,gold,intros are played and they park at the mall.,climb up the ramps and continue pulling a skateboard.,are shown as the camera man is spotting them from behind.,are standing in front of them on the tree.\n3563,anetv_5fgJ5vWTcSQ,1341,Two more are shown as the camera man is spotting them from behind. He,Two more are shown as the camera man is spotting them from behind.,He,gold,see the final panel of the wall before some children becomes too happy to show for the entire time.,the finished product and the young man bangs onto the screen.,\"pushes them, keeping them at a fast pace.\",goes biking to the back of the games area.\n3564,lsmdc0049_Hannah_and_her_sisters-69097,13416,Someone picks up a napkin from the crowded table. Someone,Someone picks up a napkin from the crowded table.,Someone,gold,\"walks around the table, putting the plate of clams down on the already crowded surface.\",taps a crystal tray on the table between them.,stomps it with some pride.,\"has slid into the table, lying at the table.\"\n3565,lsmdc0049_Hannah_and_her_sisters-69097,13423,She is standing by the table. April chuckles as someone walks back onscreen; she,She is standing by the table.,April chuckles as someone walks back onscreen; she,gold,is turning in this way.,casually twirls her companion straight hair.,holds a box drapes over her nose.,is busy preparing another tray of hors d'oeuvres.\n3566,lsmdc0049_Hannah_and_her_sisters-69097,13406,An abstract painting on a wall fills the screen. Someone,An abstract painting on a wall fills the screen.,Someone,gold,plays with her hair.,lays the artwork against the wall.,walks onto the screen in front of the painting.,writes on a nearby desk.\n3567,lsmdc0049_Hannah_and_her_sisters-69097,13422,\"Someone chuckles as someone, listening to April, impressed, walks over to her. She\",\"Someone chuckles as someone, listening to April, impressed, walks over to her.\",She,gold,sits up and leans back in recognition.,moves rhythmically and a couple behind her ear.,is standing by the table.,hands the boy to him.\n3568,lsmdc0049_Hannah_and_her_sisters-69097,13419,Guests in the other room can be seen chatting together in clusters. Canned laughter and miscellaneous chatter,Guests in the other room can be seen chatting together in clusters.,Canned laughter and miscellaneous chatter,gold,surges across the room.,fill the living room as two young women escape barefoot.,come into the camera.,is heard from the television set.\n3569,lsmdc0049_Hannah_and_her_sisters-69097,13415,April walks offscreen to another area of the kitchen. Someone,April walks offscreen to another area of the kitchen.,Someone,gold,sits down next to someone and puts a candle on a ping - pong table.,picks up a napkin from the crowded table.,\"goes into the kitchen, shuts the fridge, and walks into the kitchen.\",goes to the living room and sits on the bed.\n3570,lsmdc0049_Hannah_and_her_sisters-69097,13418,\"Someone follows him, chuckling, throwing her napkin into an offscreen garbage can as someone stops at a small television set near the doorway. Guests in the other room\",\"Someone follows him, chuckling, throwing her napkin into an offscreen garbage can as someone stops at a small television set near the doorway.\",Guests in the other room,gold,creep toward the counter.,\"are telephone messages, etc.\",can be seen chatting together in clusters.,are spreading and dodging fire torches.\n3571,lsmdc0049_Hannah_and_her_sisters-69097,13420,\"Someone watches the set, still munching on a clam, while someone and April reassure him offscreen. Someone\",\"Someone watches the set, still munching on a clam, while someone and April reassure him offscreen.\",Someone,gold,checks his wristwatch as someone walks over to him.,sits by her father.,uncurls her folded handbag.,is behind the police car.\n3572,lsmdc0049_Hannah_and_her_sisters-69097,13407,She holds an almost empty tray of hors d'oeuvres; she wears a uniform. Someone finally,She holds an almost empty tray of hors d'oeuvres; she wears a uniform.,Someone finally,gold,makes her way into the cluttered loft kitchen.,\"sits, shuffling past his.\",takes the bar.,making a rude gesture in front of his own shirt and straightens something.\n3573,lsmdc0049_Hannah_and_her_sisters-69097,13426,The film moves down from the buildings to reveal the trio sitting in someone's Jaguar across the street. Someone and April sit in the front seat; someone,The film moves down from the buildings to reveal the trio sitting in someone's Jaguar across the street.,Someone and April sit in the front seat; someone,gold,has finally come back in.,\"sits scrunched up in back, her head slightly forward.\",\"looks someone, who's wearing a winter hat and sunglasses.\",is listening to the baby's voice.\n3574,lsmdc0049_Hannah_and_her_sisters-69097,13425,\"A contemporary red building, designed by someone, is seen, squeezed in between two older buildings. The film\",\"A contemporary red building, designed by someone, is seen, squeezed in between two older buildings.\",The film,gold,cuts out to show someone competing with a small group of the ages.,\"in them go down the mountain, smiling as he is done.\",plays with images and graphics.,moves down from the buildings to reveal the trio sitting in someone's jaguar across the street.\n3575,lsmdc0049_Hannah_and_her_sisters-69097,13412,\"Someone walks over to someone, who is busy at the pot - and - pan - covered stove. As someone carries the quiche outside to the party, April\",\"Someone walks over to someone, who is busy at the pot - and - pan - covered stove.\",\"As someone carries the quiche outside to the party, April\",gold,turns and walks off.,speaks.,grabs her searches.,comes back into the kitchen from another doorway.\n3576,lsmdc0049_Hannah_and_her_sisters-69097,13409,\"She wears the same uniform as someone: black skirt, white shirt, and black bowtie. April, holding the Stroganoff,\",\"She wears the same uniform as someone: black skirt, white shirt, and black bowtie.\",\"April, holding the Stroganoff,\",gold,is in front of the mirror.,emerges from bleachers to check her things.,peer down from the breathtaking dwelling.,dashes out of the kitchen to serve the party guests.\n3577,lsmdc0049_Hannah_and_her_sisters-69097,13410,\"April, holding the Stroganoff, dashes out of the kitchen to serve the party guests. Someone\",\"April, holding the Stroganoff, dashes out of the kitchen to serve the party guests.\",Someone,gold,walks the skiff to the lake.,\"joins someone, toting a tray with her and gun.\",\"calls after her, offscreen, as someone walks past the hurrying april into the kitchen.\",\"leaves the guests in the living room, sets the book aside and paces.\"\n3578,lsmdc0049_Hannah_and_her_sisters-69097,13424,\"April chuckles as someone walks back onscreen; she is busy preparing another tray of hors d'oeuvres. A contemporary red building, designed by someone,\",April chuckles as someone walks back onscreen; she is busy preparing another tray of hors d'oeuvres.,\"A contemporary red building, designed by someone,\",gold,\"is seen, squeezed in between two older buildings.\",opens her cell door to answer it.,\"has turned on the lights, sits across it.\",is on the chorus of the dance party.\n3579,lsmdc0049_Hannah_and_her_sisters-69097,13427,\"Someone and April sit in the front seat; someone sits scrunched up in back, her head slightly forward. Someone turns and briefly glances at someone; he then\",\"Someone and April sit in the front seat; someone sits scrunched up in back, her head slightly forward.\",Someone turns and briefly glances at someone; he then,gold,strides out of the room.,turns back to april.,turns to look at the floor.,goes back to her.\n3580,lsmdc0049_Hannah_and_her_sisters-69097,13411,\"Someone calls after her, offscreen, as someone walks past the hurrying April into the kitchen. Someone\",\"Someone calls after her, offscreen, as someone walks past the hurrying April into the kitchen.\",Someone,gold,\"walks over to someone, who is busy at the pot - and - pan - covered stove.\",\"a huge bowl of presents, the waiter comes.\",\"in bed, later, someone sits in notes on the kitchen counter.\",of another shot being fatal is shown.\n3581,lsmdc0049_Hannah_and_her_sisters-69097,13414,She walks past someone to a counter where she begins to fold napkins. Someone,She walks past someone to a counter where she begins to fold napkins.,Someone,gold,wraps up a napkin and continues dancing in a triangle on a watch.,\"brings a rag into a black cloth and holds it out by a creation, then turns the letter in the paper.\",leans back against the sink.,picks up a key and puts her handbag over someone's chair.\n3582,lsmdc0049_Hannah_and_her_sisters-69097,13421,Someone checks his wristwatch as someone walks over to him. Someone,Someone checks his wristwatch as someone walks over to him.,Someone,gold,\"chuckles as someone, listening to april, impressed, walks over to her.\",runs his hand through his chain link gate.,sits by a hairy kitchen table.,consults a posted file.\n3583,lsmdc0049_Hannah_and_her_sisters-69097,13408,\"Someone, excited, runs over to April, who is busy taking the Stroganoff out of the oven. She\",\"Someone, excited, runs over to April, who is busy taking the Stroganoff out of the oven.\",She,gold,\"wears the same uniform as someone: black skirt, white shirt, and black bowtie.\",makes it to the closet.,picks up her purse.,heads into a spacious kitchen where someone is engrossed in the dining room.\n3584,lsmdc0049_Hannah_and_her_sisters-69097,13417,\"Someone walks around the table, putting the plate of clams down on the already crowded surface. Someone\",\"Someone walks around the table, putting the plate of clams down on the already crowded surface.\",Someone,gold,writes as the prisoner reappears in a code.,\"follows him, chuckling, throwing her napkin into an offscreen garbage can as someone stops at a small television set near the doorway.\",opens the lid and studies the chasm united screens.,\"stirs in it with growing rum and flour on the top of his head, squeezing it.\"\n3585,lsmdc0049_Hannah_and_her_sisters-69097,13413,\"As someone carries the quiche outside to the party, April comes back into the kitchen from another doorway. She\",\"As someone carries the quiche outside to the party, April comes back into the kitchen from another doorway.\",She,gold,looks up at three teen children making their way across the pews.,walks past someone to a counter where she begins to fold napkins.,\"goes to the sofa and lies, disappearing into the hallway.\",\"talks for a moment, silence.\"\n3586,anetv_dnzcNZBtUG4,12040,A man greets a partner in a lobby area for a dance. The couple,A man greets a partner in a lobby area for a dance.,The couple,gold,\"practices, passing images, invite and burlesque events around the photo.\",lays down the iron on the floor.,uses a ballet puppet to make a rollers out and talks for a while as the women sing being held aloft by allen or techniques,dances a salsa routine while spectators watch standing around the room.\n3587,anetv_dnzcNZBtUG4,16761,A man and woman start dancing together. They,A man and woman start dancing together.,They,gold,arms during the performance.,spin and twirl as they continue to dance.,are getting going and the men begin kayaking through the ocean while the man in the shape have to pub their machine.,the front of a crowd runs.\n3588,anetv_dnzcNZBtUG4,12041,The couple dances a salsa routine while spectators watch standing around the room. The dancer,The couple dances a salsa routine while spectators watch standing around the room.,The dancer,gold,raises both arms to the swimmer.,jumps off and performs a jump.,reads straight into the closet while someone rejoins the gymnast.,talks with the audience after the performance standing in the middle of the room.\n3589,anetv_AGjhryYGVs4,6871,A close up of water is shown followed by people standing around a raft and jumping into the water. Several shots,A close up of water is shown followed by people standing around a raft and jumping into the water.,Several shots,gold,are shown of kids riding around on the water as well as riding on water skis and ends.,are seen of water falling and shaking waves.,are then shown of people riding down the river on a raft and guiding themselves along the water and splashing each other.,are shown of people surfing boards around the bar as well as people riding on the ocean waves.\n3590,anetv_AGjhryYGVs4,11477,Several people push rafts into the water. They also,Several people push rafts into the water.,They also,gold,pass through the surfboard to different rooms.,look really large under the water.,jump in and swim together.,bounce backwards on the water.\n3591,anetv_AGjhryYGVs4,11476,Rapid white waters are shown in a river. Several people,Rapid white waters are shown in a river.,Several people,gold,are water skiing next to the boats.,gather around the rapids and battle.,are rafting down a river in an amphitheater.,push rafts into the water.\n3592,anetv_AGjhryYGVs4,6872,Several shots are then shown of people riding down the river on a raft and guiding themselves along the water and splashing each other. More shots,Several shots are then shown of people riding down the river on a raft and guiding themselves along the water and splashing each other.,More shots,gold,are shown of crashing waves as well as crashing several more times and standing on kayaks back.,are shown of people riding on kayaks down the river.,are shown of the water as well as the people riding down.,are shown of people playing ice hockey together.\n3593,lsmdc0011_Gandhi-53129,19206,\"Someone looks down, then lifts his head to someone. The relief\",\"Someone looks down, then lifts his head to someone.\",The relief,gold,brings water to their eyes and grins to their faces.,\"of his jaw presses, but outside he becomes: exhausted.\",wave leads someone toward the fine mist.,is apprehensively laid out on the cheek.\n3594,lsmdc0011_Gandhi-53129,19204,\"Nearer someone, behind someone, are people. Someone\",\"Nearer someone, behind someone, are people.\",Someone,gold,shots of a man.,accepts a photograph of his wife.,\"notices someone behind him, almost nothing.\",\"turns to someone, his face shaking, peering into her eyes.\"\n3595,anetv_lhdro5SnxU0,4037,He sprays the sink with a cleaning agent. He,He sprays the sink with a cleaning agent.,He,gold,reveals the empty container like soap.,wipes it and cleans his horse in pain.,takes a sponge and scrubs the inside of the sinks.,puts behind a large box of peanuts.\n3596,anetv_lhdro5SnxU0,4039,He turns the water on and sprays the hose around the sink. He,He turns the water on and sprays the hose around the sink.,He,gold,looks up and down in the white towel.,wipes the sink off with a towel.,continuing to wash again as he attempts to clean the bathroom.,takes the filter out of a sink to clean it.\n3597,anetv_lhdro5SnxU0,4036,He is standing over a sink. He,He is standing over a sink.,He,gold,is joined by two more.,starts stirring the table with a wet rag.,uses his scarf to follow the man presents.,sprays the sink with a cleaning agent.\n3598,anetv_lhdro5SnxU0,4038,He takes a sponge and scrubs the inside of the sinks. He,He takes a sponge and scrubs the inside of the sinks.,He,gold,\"dries the iron, then sits up.\",continues to use grout and coke.,turns the water on and sprays the hose around the sink.,takes of the soap and wipes his face with foam.\n3599,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1768,14898,\"Someone turns a page and stops to stare at an etching of a woman. Moving closer to the book, she\",Someone turns a page and stops to stare at an etching of a woman.,\"Moving closer to the book, she\",gold,squeezes someone's eyes shut.,\"closes her mouth, one hand hidden under it.\",points to the face.,reaches over the strawberries.\n3600,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1768,14899,Someone has flashbacks of her mother. Someone,Someone has flashbacks of her mother.,Someone,gold,\"gives a loud, swollen smile.\",\"bows his head, pretending to cross his face.\",ceases beckoning her run.,\"dangles from a tree, unconscious.\"\n3601,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72138,14332,\"The two women wait outside in the rain. A round - faced man, someone,\",The two women wait outside in the rain.,\"A round - faced man, someone,\",gold,lets them into someone's study.,leads someone up a grappling beam - toward the front door.,pauses near a door.,peers in at him.\n3602,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72138,14331,\"Then, someone steps out onto a street and knocks at a door. The two women\",\"Then, someone steps out onto a street and knocks at a door.\",The two women,gold,wait outside in the rain.,are staring back at them.,face each other and a smile; she comes to a stop.,\"in confusion take out the dresses, stares in it.\"\n3603,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72138,14329,\"In a dingy, wet part of town, someone's mother someone walks along a narrow alley, with someone Lestrange. They\",\"In a dingy, wet part of town, someone's mother someone walks along a narrow alley, with someone Lestrange.\",They,gold,students snaps out of the older school to meet between two buses.,wait for children to cycle past.,surround a building overlooking a cavernous arena.,abandon the mercenaries behind and hide at the house.\n3604,anetv_EFtxSXp1pck,18436,Man spray oil on the pan and add the mix of the eggs and the vegetables. man,Man spray oil on the pan and add the mix of the eggs and the vegetables.,man,gold,is standing in the kitchen talking to the camera giving a recipe.,put the eggs in a bowl and mix it with a large square.,cuts the bologna in pieces to make a cake for the kid.,throws the filter and the rest for the next bowl.\n3605,anetv_EFtxSXp1pck,18435,Chef is sanding in front of a coutner with chopped ingredients in different plates and talking to the camera. man,Chef is sanding in front of a coutner with chopped ingredients in different plates and talking to the camera.,man,gold,is on a kitchen talking to the camera and preparing a pepper and water and peeling the potatoes.,spray oil on the pan and add the mix of the eggs and the vegetables.,is making a big cake with the croutons.,takes a lettuce and cooks it in a pan.\n3606,lsmdc3088_WHATS_YOUR_NUMBER-42020,16661,Someone faces the entrance and frowns. She,Someone faces the entrance and frowns.,She,gold,\"peeks at a specific space, holding a revolver under her shoulder.\",remembers him as obese.,opens the white door with a close - up.,\"gives both meager smile, and half smiles.\"\n3607,anetv_A0F6uT95xhA,3523,A man dances in in a big room. As he does the dance he,A man dances in in a big room.,As he does the dance he,gold,returns and points to the camera.,picks up his flute and talks.,stops and turns and dance.,explains how to do it.\n3608,anetv_K1EW6wZDnOs,305,\"The person with the rope in his hand has a torch like item in his right hand but it appears to only have air in it and begins moving it back and forth across the horses face and mouth. However, the horse\",The person with the rope in his hand has a torch like item in his right hand but it appears to only have air in it and begins moving it back and forth across the horses face and mouth.,\"However, the horse\",gold,\"jumps and the right is shown again and again more the brakes mounted on long, and the cena continues riding on the dirt.\",runs and swings himself on the horse to protect himself and start skiing again at times.,does n't seem to please and begins moving his lip trying to avoid the treatment.,\"is shown again and the camera moves away from the mercenaries, holding up to the fishing strap as thread of a game.\"\n3609,anetv_K1EW6wZDnOs,304,A small horse is outside in a field being held by a rope that is attached to a belt wrapped around the horse's neck. The person with the rope in his hand has a torch like item in his right hand but it,A small horse is outside in a field being held by a rope that is attached to a belt wrapped around the horse's neck.,The person with the rope in his hand has a torch like item in his right hand but it,gold,makes many different calls.,seems like it is doing to move its right leg out of frame keeping curl.,appears to only have air in it and begins moving it back and forth across the horses face and mouth.,stands under the snow when it looked.\n3610,lsmdc3092_ZOOKEEPER-45225,9293,\"Someone nods at the lioness and heads off. Now, as someone eats her lunch, someone\",Someone nods at the lioness and heads off.,\"Now, as someone eats her lunch, someone\",gold,sits with her back to his friend.,wipes the sandwich out and answers up.,leaves someone sitting behind his laptop.,stands at her desk.\n3611,lsmdc3020_DEAR_JOHN-9473,2249,\"Reclining beside her, someone beams appreciatively. Now, tall reeds\",\"Reclining beside her, someone beams appreciatively.\",\"Now, tall reeds\",gold,sit in the movers rain and someone enters with her friends at netherfield.,surround the unconscious someone.,begin its way across a barren terrain.,\"wave in a breeze as the young man hikes into view, and gazes ahead.\"\n3612,lsmdc3020_DEAR_JOHN-9473,2253,\"Someone hangs back, pensively taking in the cheerful scene. Turning, he\",\"Someone hangs back, pensively taking in the cheerful scene.\",\"Turning, he\",gold,spots a solitary figure sitting alone at the base of a grassy dune.,sees someone standing against the silently lying back on one knee he clutches his powerful leg.,crosses along rows of dirty - stepping hmong crates.,\"finds him standing close to one, eats his despair with a sad grin.\"\n3613,lsmdc3020_DEAR_JOHN-9473,2242,\"In a living room, someone sings and plays guitar for someone. In a hallway, someone\",\"In a living room, someone sings and plays guitar for someone.\",\"In a hallway, someone\",gold,stands at a door and fires.,sneaks up on her as she shuts a door.,lies back in his bed for a long time.,walks up the stairs to the screen.\n3614,lsmdc3020_DEAR_JOHN-9473,2228,\"Opening her mouth, she kisses him hungrily. Someone\",\"Opening her mouth, she kisses him hungrily.\",Someone,gold,arrives out of the mustang and a person lies near the tent.,leaves with something meeting mouth behind.,\"leans closer, resting her coffee on her lap.\",\"drapes her arms around his neck, as they passionately make out.\"\n3615,lsmdc3020_DEAR_JOHN-9473,2245,\"As his father paces in the living room, someone carries his girlfriend upstairs. Now they\",\"As his father paces in the living room, someone carries his girlfriend upstairs.\",Now they,gold,lie on a table in front of a small house.,sit outside someone's campus bed.,tumble unto his bed.,arrive at a snack shop where people sit at the bar.\n3616,lsmdc3020_DEAR_JOHN-9473,2231,\"At the sun dappled construction site, someone arrives to find him working at the top of a ladder. She\",\"At the sun dappled construction site, someone arrives to find him working at the top of a ladder.\",She,gold,\"parts the hospital, he peers through a door and shuts the door.\",\"sets the folding chair down, then turns over a toy box.\",\"steps off the back of the book, lobs it back as it closes.\",\"stops, watching him appreciatively.\"\n3617,lsmdc3020_DEAR_JOHN-9473,2229,\"Someone drapes her arms around his neck, as they passionately make out. He lifts her up, and she\",\"Someone drapes her arms around his neck, as they passionately make out.\",\"He lifts her up, and she\",gold,\"pulls himself up, then pulls him back against the railing.\",gives him a five.,raises his chin and kisses him on the cheek.,wraps her legs around him.\n3618,lsmdc3020_DEAR_JOHN-9473,2252,Another group sits around two young men playing acoustic guitars. Someone,Another group sits around two young men playing acoustic guitars.,Someone,gold,\", men are seated at their table, all of them are his hands.\",\"hangs back, pensively taking in the cheerful scene.\",then stretch while the video begins to move.,stays glued on the screen.\n3619,lsmdc3020_DEAR_JOHN-9473,2256,\"Someone hikes along a grassy ridge towards someone, and sneaks down behind her. He\",\"Someone hikes along a grassy ridge towards someone, and sneaks down behind her.\",He,gold,flings her arms reclining on the bed and leads them over a room.,opens the safe and drags a chair out into the hall.,explosions burst into means of them.,\"playfully grabs her side, startling the live young beauty.\"\n3620,lsmdc3020_DEAR_JOHN-9473,2248,\"As our view drifts upward, his armed uniform obscures them from view. Back in the living room, someone\",\"As our view drifts upward, his armed uniform obscures them from view.\",\"Back in the living room, someone\",gold,smiles as she plays the guitar.,watches as the man escape frame.,joins someone behind a desk.,lies sleeping on his step outside.\n3621,lsmdc3020_DEAR_JOHN-9473,2234,\"Tumbling into the shallow water, she grins. From the shore, her female friend\",\"Tumbling into the shallow water, she grins.\",\"From the shore, her female friend\",gold,\"pouts beside someone, who sullenly watches the couple.\",'s bent leg and shadow partially crawls a sleeping form.,shares a pebble in the car's water boat.,helps someone back up screwing the dolphin in.\n3622,lsmdc3020_DEAR_JOHN-9473,2235,\"From the shore, her female friend pouts beside someone, who sullenly watches the couple. Trying another wave, someone\",\"From the shore, her female friend pouts beside someone, who sullenly watches the couple.\",\"Trying another wave, someone\",gold,leans back from the window.,hands someone a note.,manages to stand briefly as someone cheers her on.,clutches both on his open arms.\n3623,lsmdc3020_DEAR_JOHN-9473,2250,\"On the beach, a small group plays volleyball amidst a boisterous party. Near a grill, someone\",\"On the beach, a small group plays volleyball amidst a boisterous party.\",\"Near a grill, someone\",gold,pats someone's shoulder.,watches people leave the patio facing the onlookers.,inspects him mid - stub.,steps into the airport.\n3624,lsmdc3020_DEAR_JOHN-9473,2233,\"Now, someone holds his surfboard, tucked under his arm as they trod into the ocean. Later a wet - suit clad someone,\",\"Now, someone holds his surfboard, tucked under his arm as they trod into the ocean.\",\"Later a wet - suit clad someone,\",gold,\"someone enter a sunken apartment, crack the brim with glasses and shoes in each side.\",he steps up to his rest and makes his way down into the trailer.,crouches low on the board as she awkwardly rides a wave.,\"now soaked, someone wearily with his curly hair.\"\n3625,lsmdc3020_DEAR_JOHN-9473,2247,\"Pouncing at her side, he tickles her. As our view drifts upward, his armed uniform\",\"Pouncing at her side, he tickles her.\",\"As our view drifts upward, his armed uniform\",gold,makes a call as he lifts her up over the pool and helps his face.,grabs a microphone from a big desk and a nearby guard holding a bomb drooling aloft.,gives her a warm - haired smile.,obscures them from view.\n3626,lsmdc3020_DEAR_JOHN-9473,2246,\"Upstairs someone rolls off the bed, then scrambles to a closet and shuts herself in. She pulls at the door knobs, but he\",\"Upstairs someone rolls off the bed, then scrambles to a closet and shuts herself in.\",\"She pulls at the door knobs, but he\",gold,struggles to step onto the tracks.,pulls his hat down and drags her into the living room.,does not knock the door open.,yanks the doors open.\n3627,lsmdc3020_DEAR_JOHN-9473,2255,\"He watches his rival cross to the dune, then turns back to his game. Someone\",\"He watches his rival cross to the dune, then turns back to his game.\",Someone,gold,\"hikes along a grassy ridge towards someone, and sneaks down behind her.\",takes a flying drum on the keyboard.,sets a large puck down beside it.,\"starts: teddy, someone, and the other boys are inverted on a raft, carry it on their surfboards.\"\n3628,lsmdc3020_DEAR_JOHN-9473,2237,\"Now, she hugs his arm as they walk hand in hand past a cafe. At the someone house, the young couple\",\"Now, she hugs his arm as they walk hand in hand past a cafe.\",\"At the someone house, the young couple\",gold,is at a hydra chunk restaurant.,\"sits great dinner in the dark room, having sex.\",seats at a mirror perched on a dresser.,enjoys a meal with someone's father.\n3629,lsmdc3020_DEAR_JOHN-9473,2254,\"At the volleyball net, someone pauses. He\",\"At the volleyball net, someone pauses.\",He,gold,is about to climb into the pool where someone makes a kick in the eye while him.,steps closer to the american.,\"watches his rival cross to the dune, then turns back to his game.\",\"is a raft, wearing eventually thick siege gates.\"\n3630,lsmdc3020_DEAR_JOHN-9473,2257,\"He playfully grabs her side, startling the live young beauty. She\",\"He playfully grabs her side, startling the live young beauty.\",She,gold,smiles contentedly in his arms.,presents her by the foot of her bed.,stops in the middle of the dining room.,reaches towards them and leaves him.\n3631,lsmdc3020_DEAR_JOHN-9473,2243,\"He turns her to face him, and they share a tender kiss. Someone\",\"He turns her to face him, and they share a tender kiss.\",Someone,gold,slams his head up against the wall of his bedroom.,sits tightly in the doorway.,peeks around a corner.,approaches someone and kisses him on the cheek.\n3632,lsmdc3020_DEAR_JOHN-9473,2230,\"As someone lowers himself to the floor, she straddles his lap. At the sun dappled construction site, someone\",\"As someone lowers himself to the floor, she straddles his lap.\",\"At the sun dappled construction site, someone\",gold,wears cash in his eyes.,arrives to find him working at the top of a ladder.,carefully awakened her presence and lifting his eyes from the kitchen door with a little smile.,\"finds someone with animal ears, whose jacket flapping over his hind legs.\"\n3633,lsmdc3020_DEAR_JOHN-9473,2240,\"At the construction site, the couple adds a plywood board to a wall. She\",\"At the construction site, the couple adds a plywood board to a wall.\",She,gold,releases the burning window.,\"lies there, talking between spit.\",\"swats her hand in front of him, as he hammers it in place.\",\"places it's place, ignoring the edge of the door, opens it and looks out.\"\n3634,lsmdc3020_DEAR_JOHN-9473,2232,\"She stops, watching him appreciatively. He spots her, and they\",\"She stops, watching him appreciatively.\",\"He spots her, and they\",gold,share a warm smile.,hurry over to the radio.,share a lingering kiss.,\"sway in unison, as she strokes her hair.\"\n3635,lsmdc3020_DEAR_JOHN-9473,2236,\"Trying another wave, someone manages to stand briefly as someone cheers her on. Now, she\",\"Trying another wave, someone manages to stand briefly as someone cheers her on.\",\"Now, she\",gold,drives with a tiered crystal needle in it.,hugs his arm as they walk hand in hand past a cafe.,runs pass an eyebrow - bound teenage someone.,extends her leg and finds someone waiting to furnaces her.\n3636,lsmdc3020_DEAR_JOHN-9473,2241,\"She swats her hand in front of him, as he hammers it in place. In a living room, someone\",\"She swats her hand in front of him, as he hammers it in place.\",\"In a living room, someone\",gold,sits in a tub.,sings and plays guitar for someone.,sits staring at a small organ bag.,stands in the doorway carrying a manuscript.\n3637,lsmdc3020_DEAR_JOHN-9473,2244,\"Someone peeks around a corner. As his father paces in the living room, someone\",Someone peeks around a corner.,\"As his father paces in the living room, someone\",gold,begins to avoid the cream.,crosses to a leather sofa view mirror.,finds his empty penthouse.,carries his girlfriend upstairs.\n3638,lsmdc3020_DEAR_JOHN-9473,2251,\"Near a grill, someone pats someone's shoulder. Another group\",\"Near a grill, someone pats someone's shoulder.\",Another group,gold,throws ice cream at one.,\"prepares their hair, including someone.\",takes a swing to face a blond.,sits around two young men playing acoustic guitars.\n3639,anetv_UgrOTFBD7tA,12115,The climber sets a metal round clips into the crack of the rock face. Clouds,The climber sets a metal round clips into the crack of the rock face.,Clouds,gold,of sparks illuminate the roofs and turrets of the city.,the boy touches down as he is shown by the wall several times and looking all along the row.,move over a mountain range at sunset.,starts with the rope and does stands in the distance of the jump and sweeps down the loop at the end.\n3640,anetv_UgrOTFBD7tA,12114,Mountain climbers use ropes and hooks to metal clips up along cracks in a sheer rock face. The climber,Mountain climbers use ropes and hooks to metal clips up along cracks in a sheer rock face.,The climber,gold,crawls on the floor as another young wrestler climbs down a bell off the platform.,plows through rocks and crumbling wreckage.,sets a metal round clips into the crack of the rock face.,glides all the way of the skip and shows the pole climbing up high above the foliage.\n3641,anetv_UgrOTFBD7tA,12113,Mountains are seen in the distance with clouds moving over top during the afternoon. Mountain climbers,Mountains are seen in the distance with clouds moving over top during the afternoon.,Mountain climbers,gold,use ropes and hooks to metal clips up along cracks in a sheer rock face.,are displayed inside the building.,are shown for a group of surfers falling down a river.,take place while the man and the man with the shrugging sign are on top of a black tower.\n3642,anetv_lI6h3H4Zs98,6663,A group of kids are around a bunch of shelves looking at trophies. The kids,A group of kids are around a bunch of shelves looking at trophies.,The kids,gold,are jumping ropes together.,continue to play while jumping around with whatever win.,are doing certain stunts in snowy castle.,are then moving and begin hitting down the object as well as balls to the back.\n3643,anetv_lI6h3H4Zs98,15396,A group of young people perform sophisticated jump rope tricks in a gym. Members,A group of young people perform sophisticated jump rope tricks in a gym.,Members,gold,teams practice jumping on a platform.,perform a variety of martial arts moves in the background.,stand over and walk through the water.,are interviewed throughout the video.\n3644,anetv_lI6h3H4Zs98,15395,A young man places a trophy on a shelf. A group of young people,A young man places a trophy on a shelf.,A group of young people,gold,perform sophisticated jump rope tricks in a gym.,watch and stand in a small area.,meet him in distress and mild applause.,play beach volleyball on the beach.\n3645,anetv_lI6h3H4Zs98,15397,Members are interviewed throughout the video. The jump rope,Members are interviewed throughout the video.,The jump rope,gold,is overlaid on the next screen as the man's ad starts on wash.,is dropped on the floor as the person walks away.,is shown several times in the end.,is worked up smoothly as it moves forward.\n3646,anetv_lI6h3H4Zs98,6664,The kids are jumping ropes together. They,The kids are jumping ropes together.,They,gold,do a long jump and kick it to the mat.,ramps and jog around.,do forward and back flips as they go.,try to catch a rope on the rope after the event.\n3647,anetv_Nf-7lKa387k,15439,A person is blowing smoke out of their nose and smoke rings. The camera reverses and he,A person is blowing smoke out of their nose and smoke rings.,The camera reverses and he,gold,walks over to a board and continues pushing himself back and forth.,starts to move through the door to the tunnel.,drops his stick on the sidewalk.,continues to blow smoke.\n3648,anetv_Nf-7lKa387k,15440,The smoke continues to blow and the words Edits by Jarron Jones comes up. The man,The smoke continues to blow and the words Edits by Jarron Jones comes up.,The man,gold,continues to weld and knocks the man off.,continues to wipe the man's nose with the handlebar cover.,keeps blowing smoke into the air.,is mixed into a cocktail.\n3649,anetv_Nf-7lKa387k,15438,The smoke is rolling around a hat. A person,The smoke is rolling around a hat.,A person,gold,is standing holding a flute.,gives a pineapple to him.,is on the grass.,is blowing smoke out of their nose and smoke rings.\n3650,anetv_okvQJRTfGHk,6424,\"The man continues to lean over looking like he could be ready to land in the water, but he stays in the canoe and keeps moving. Little bubbles appear in the water and he sits still for a while, he even\",\"The man continues to lean over looking like he could be ready to land in the water, but he stays in the canoe and keeps moving.\",\"Little bubbles appear in the water and he sits still for a while, he even\",gold,seem to leap from the diving waves.,crashes back and wipes it all over.,lifts up the ashes.,tells viewers some things.\n3651,anetv_okvQJRTfGHk,6423,\"This man is canoeing in his red canoe and he is using the wooden paddle to get through water. The man continues to lean over looking like he could be ready to land in the water, but he\",This man is canoeing in his red canoe and he is using the wooden paddle to get through water.,\"The man continues to lean over looking like he could be ready to land in the water, but he\",gold,turns the sail upside down with a towel.,seems really fast and self injured.,stays in the canoe and keeps moving.,does immediately back and forth to lie down.\n3652,anetv_oB6h3DscMUw,2771,A woman cuts the ends off a sweet potato on a cutting board with a knife. The woman,A woman cuts the ends off a sweet potato on a cutting board with a knife.,The woman,gold,holds the knife and puts it in a pan.,cuts the bread and cuts the tomato.,cuts out various pieces of tomato slices that then cuts to bread in two sections.,uses a peeling tool to skin a sweet potato over the cutting board.\n3653,anetv_JvFo4uTvmYs,6012,A person stands on a mat. They,A person stands on a mat.,They,gold,start playing the flute.,run down a runway holding a pole and vault over a bar.,jump through the ramps.,kicks ropes from a tree and whips them into the air.\n3654,anetv_JvFo4uTvmYs,6013,They run down a runway holding a pole and vault over a bar. They,They run down a runway holding a pole and vault over a bar.,They,gold,continue going into the water.,see a skate tube flying above them.,stand on by changing and take their positions.,land on their back on a mat.\n3655,anetv_FCFSLuCZKj4,90,\"A person is using a large armed window washing mechanism to wash the exterior, front, glass window of a sandwich store. The person is a man with grey hair and glasses and he\",\"A person is using a large armed window washing mechanism to wash the exterior, front, glass window of a sandwich store.\",The person is a man with grey hair and glasses and he,gold,uses the tool to wash the very top of the window all the way to the base of the glass.,is glue on the concrete wall.,is sitting on a white covered case in a dumpster in front of an ambulance and light pans by.,is holding a contact lens.\n3656,anetv_cZZM3bgmXE4,8593,A woman is performing on a stage in front of judges. She,A woman is performing on a stage in front of judges.,She,gold,is playing an instrument with a bow.,begins dancing with a different dancer.,mounts and performs tricks on a dance beam.,is sitting on a mat with her arms folded.\n3657,anetv_cZZM3bgmXE4,17966,The crowd cheers for the musician during the performance. The musician,The crowd cheers for the musician during the performance.,The musician,gold,\"stops playing and the audience cheers, claps, and applauds, with the crowd clapping.\",kneels on one leg and finishes her song then gets a standing ovation from the crowd.,finishes and walks with a jump on the piano right and several other dancers sit beside him and walk towards the crowd.,\"stops playing the guitar, leaving the band and leads to him playing.\"\n3658,anetv_cZZM3bgmXE4,17965,The musician plays a song on stage in front of judges and a large crowd. The crowd,The musician plays a song on stage in front of judges and a large crowd.,The crowd,gold,claps for the crowd.,\"plays instruments and stops to speak to the camera, and continue playing.\",claps for the camera as the audience applauds and the audience to applaud.,cheers for the musician during the performance.\n3659,anetv_cZZM3bgmXE4,8594,She is playing an instrument with a bow. She,She is playing an instrument with a bow.,She,gold,moves himself back and forth while playing the saxophone.,rolls when she finishes.,continues playing while the judges make faces at each other and her.,continues dancing while gesturing to the crowd.\n3660,anetv_cZZM3bgmXE4,17964,The musician talks in a small group during a busy event. The musician,The musician talks in a small group during a busy event.,The musician,gold,plays a song on stage in front of judges and a large crowd.,then begin playing and performing instruction in the first ring.,plays the flute on an elliptical.,is playing a piano at music continues as one of the men plays.\n3661,anetv_mBZAFJ-Q6Mw,12562,Back at home with his troubled family he is eating and day dreaming of dancing as the scene goes back to him dancing. He,Back at home with his troubled family he is eating and day dreaming of dancing as the scene goes back to him dancing.,He,gold,does a big jump on the field.,makes a last time and the same thing being designated.,\"remains frozen, relaxing, moving his hips and react appreciatively.\",stops dancing to look at the hopscotch squares that are now faded and worn.\n3662,anetv_mBZAFJ-Q6Mw,12560,He finishes drawing hopscotch boxes on the concrete as he begins to jump on the squares and begins to dance only to be reminded of the bullying at school. The young man,He finishes drawing hopscotch boxes on the concrete as he begins to jump on the squares and begins to dance only to be reminded of the bullying at school.,The young man,gold,carries the baton and goes.,is seen now break dancing and going through a routine.,\"talks about how high he needs to catch the boy, and he tries the footwork because this is thrown from him.\",begins to do flips during a long jump.\n3663,anetv_mBZAFJ-Q6Mw,12563,He stops dancing to look at the hopscotch squares that are now faded and worn. In the classroom as the teacher is walking through the rows of desks he,He stops dancing to look at the hopscotch squares that are now faded and worn.,In the classroom as the teacher is walking through the rows of desks he,gold,kneels against the door and sees a man fighting excitedly.,\"has made a series of finishes, he stands, gazing out from the gym.\",notices the young man asleep at his desk as he uses a ruler to tap him on his head to wake him.,talks to a fireman in a shabby room.\n3664,anetv_mBZAFJ-Q6Mw,12561,The young man is seen now break dancing and going through a routine. Back at home with his troubled family he,The young man is seen now break dancing and going through a routine.,Back at home with his troubled family he,gold,\"watch tools, time, greek - and - special.\",continues playing the instrument again to himself.,shows the man engaged in violin as the second boy talks.,is eating and day dreaming of dancing as the scene goes back to him dancing.\n3665,anetv_mBZAFJ-Q6Mw,12564,In the classroom as the teacher is walking through the rows of desks he notices the young man asleep at his desk as he uses a ruler to tap him on his head to wake him. The young boy,In the classroom as the teacher is walking through the rows of desks he notices the young man asleep at his desk as he uses a ruler to tap him on his head to wake him.,The young boy,gold,\"sits on the bed, listening.\",notices a note at his desk that has a picture of the hopscotch squares that says teach me followed by a smiley face.,\"stares back with a half grin, leans over, pushes past him, and pours himself a cup of tea.\",then arrives out of a cubicle playing the keyboard.\n3666,lsmdc3064_SPARKLE_2012-4227,8857,\"Behind her, someone raises his belt and brings it down hard on her back. He\",\"Behind her, someone raises his belt and brings it down hard on her back.\",He,gold,beats her again and again.,points to the sword takes the second thug to stand itself where someone hides.,\"stares at the ticket, then returns her gaze to the beefy thug, then reaches into her chair.\",hides the package and whips it.\n3667,lsmdc3064_SPARKLE_2012-4227,8839,\"Someone holds her journal at her side, with one trembling black gloved hand. Someone\",\"Someone holds her journal at her side, with one trembling black gloved hand.\",Someone,gold,picks up a rock and gives farm hand.,puts a steadying hand on it.,turns around with a furrowed brow and furrows his brow.,\"rushes to her bed, now clothed, her knickers down.\"\n3668,lsmdc3064_SPARKLE_2012-4227,8840,\"Now on someone's balcony, someone wearing a white feather - trimmed robe, holds a drink as she reads a magazine. Someone\",\"Now on someone's balcony, someone wearing a white feather - trimmed robe, holds a drink as she reads a magazine.\",Someone,gold,\"decorated regretfully, the teen yanks off his role of cloth cards and sets it down with a pen.\",sets the kettle of wine in the water.,comes out smoking a cigarette.,\"steps away from a railing on the sunny road, leaning her chin in two.\"\n3669,lsmdc3064_SPARKLE_2012-4227,8851,\"He gets into a sleek silver sports car, parked under the baker's flashing marquee. Someone\",\"He gets into a sleek silver sports car, parked under the baker's flashing marquee.\",Someone,gold,hangs her head.,scrambles to the passenger side.,\"sits, reading a magazine.\",\"smiles, goes down the half - open front doors.\"\n3670,lsmdc3064_SPARKLE_2012-4227,8859,\"A white businessman does a double take as she passes. Another white man stares at her, and she\",A white businessman does a double take as she passes.,\"Another white man stares at her, and she\",gold,glares back as she strides past him and down the hall.,shifts her sad gaze.,drops her badge in his pocket.,yanks it out like a purse then hands it to someone.\n3671,lsmdc3064_SPARKLE_2012-4227,8853,\"Now in slow motion beyond the windows of someone's mansion, someone chases someone. In her stocking feet, she\",\"Now in slow motion beyond the windows of someone's mansion, someone chases someone.\",\"In her stocking feet, she\",gold,peeks into the pale - fitting lingerie.,lies on the floor with her head in her arms.,slips on the floor and falls.,sweeps a cloth over the guy's face.\n3672,lsmdc3064_SPARKLE_2012-4227,8855,He tries to pin her arms behind her. She,He tries to pin her arms behind her.,She,gold,whips an arm over her shoulder!,\"wriggles free, and dashes into another room, where she falls face down on a banquette.\",\"reaches her hand backward and cups his cheek, changing its jewelry.\",points the massive extension finger at the girl.\n3673,lsmdc3064_SPARKLE_2012-4227,8846,Someone moves toward someone's table. Someone,Someone moves toward someone's table.,Someone,gold,\", someone sees his dog.\",blinks heavily and lets out a breath.,ticket wraps his gloves.,are talking in a conference.\n3674,lsmdc3064_SPARKLE_2012-4227,8854,\"In her stocking feet, she slips on the floor and falls. He\",\"In her stocking feet, she slips on the floor and falls.\",He,gold,catches her arm as someone reaches a foot grabs someone's arm.,tries to pin her arms behind her.,watches as she goes to a window overlooking the dance floor.,\"knocks someone into the arms, on the stands.\"\n3675,lsmdc3064_SPARKLE_2012-4227,8850,\"She blows smoke in his direction, then leaves. Outside in slow motion, someone\",\"She blows smoke in his direction, then leaves.\",\"Outside in slow motion, someone\",gold,struggles to hold back a hopping mad someone.,gallops open a street and sees a group of girls.,catches someone with a single one standing guard.,leaps into the high - rise direction and stops.\n3676,lsmdc3064_SPARKLE_2012-4227,8844,\"In the packed nightclub, someone laughs in a booth with someone. The heckler\",\"In the packed nightclub, someone laughs in a booth with someone.\",The heckler,gold,raise his arms and descend in the air.,heads down and people wait in attention.,sits in a booth with his arm around a sexy woman.,teenage execs along through the booth notices someone talking in front of him.\n3677,lsmdc3064_SPARKLE_2012-4227,8858,\"Now in a cool blue reception area, someone paces in front of a sign emblazoned with a Colombia logo. A white businessman\",\"Now in a cool blue reception area, someone paces in front of a sign emblazoned with a Colombia logo.\",A white businessman,gold,addresses a red entrance.,does a double take as she passes.,leads him on a white horse path.,gets a service torch and packs a suitcase.\n3678,lsmdc3064_SPARKLE_2012-4227,8860,\"Another white man stares at her, and she glares back as she strides past him and down the hall. Someone\",\"Another white man stares at her, and she glares back as she strides past him and down the hall.\",Someone,gold,takes her in as she walks up to him.,turns again with the aid of his partner and walks away.,\"unzips his coat and springs to his feet, then turns his attention back into her unfinished form.\",\"looks at someone's face, shaking her back slightly.\"\n3679,lsmdc3064_SPARKLE_2012-4227,8845,Someone cranes his neck to look at him. Someone,Someone cranes his neck to look at him.,Someone,gold,takes a puff on his cigarette.,shoves his fist into someone 'shoulder.,reaches for someone's hand.,clutches his neck and kisses him on the satchel.\n3680,lsmdc3064_SPARKLE_2012-4227,8841,Someone comes out smoking a cigarette. He,Someone comes out smoking a cigarette.,He,gold,picks up a phone.,snaps a picture of her.,lunges at him with surprise.,points out the tarts to someone's mansion and carefully scoops it up.\n3681,lsmdc3064_SPARKLE_2012-4227,8838,\"Someone looks at someone, then marches up the stairs. Someone\",\"Someone looks at someone, then marches up the stairs.\",Someone,gold,drags someone through the traditional barrier of the classroom.,checks out of his monitors then adjusts someone's radio.,slides down the corridor filled with other students.,\"holds her journal at her side, with one trembling black gloved hand.\"\n3682,lsmdc3064_SPARKLE_2012-4227,8842,He snaps a picture of her. He,He snaps a picture of her.,He,gold,lifts his brow and leads him.,sits down at the table.,\"smiles at it, smiles.\",\"smiles, closes it, and dumps her lipstick.\"\n3683,lsmdc3064_SPARKLE_2012-4227,8848,Someone looks from someone to someone. Someone,Someone looks from someone to someone.,Someone,gold,fight a screen.,\"sniffs it a little, then walks over.\",throws down his cigarette.,looks on at someone.\n3684,lsmdc3064_SPARKLE_2012-4227,8847,Someone blinks heavily and lets out a breath. Someone,Someone blinks heavily and lets out a breath.,Someone,gold,gently shakes someone's hand.,pulls his jacket back on.,looks from someone to someone.,slides his hand over his.\n3685,lsmdc3064_SPARKLE_2012-4227,8856,\"She wriggles free, and dashes into another room, where she falls face down on a banquette. Behind her, someone\",\"She wriggles free, and dashes into another room, where she falls face down on a banquette.\",\"Behind her, someone\",gold,crosses her feet in a dry ring and walks towards a brick apartment building.,gathers turns to watch on pair on the flat tv screen.,raises his belt and brings it down hard on her back.,opens the door with a single scanner propped down with a slight grin.\n3686,lsmdc3064_SPARKLE_2012-4227,8843,She flexes one long stocking clad leg and gets up. She,She flexes one long stocking clad leg and gets up.,She,gold,\"glances down at her, as the pool becomes a bottle of scorched and yellow flame.\",slips the cue ball on the counter and moves out of a circle.,takes the notebook with her into the house.,\"inspects them as she leaves the school to the small, shop area.\"\n3687,lsmdc3064_SPARKLE_2012-4227,8849,Someone makes a scissor gesture. She,Someone makes a scissor gesture.,She,gold,accidentally flips him off as someone steps through the crowd.,aims her wand at him.,\"blows smoke in his direction, then leaves.\",hits the side of the ballroom with the dagger.\n3688,lsmdc3064_SPARKLE_2012-4227,8837,Someone gives a little nod. Someone,Someone gives a little nod.,Someone,gold,turns away and waves at the crowd.,gives a synchronized nod.,\"scrambles in, collecting bags on the bed.\",\"looks at someone, then marches up the stairs.\"\n3689,anetv_RPKcM8q74FE,1469,\"They ride around, trying to hit each other. They\",\"They ride around, trying to hit each other.\",They,gold,bump into the other cars as they go.,get into the car and watch over and safety.,words appear on the screen.,see a crazy written on their face.\n3690,anetv_RPKcM8q74FE,1468,A group of kids are in bumper cars. They,A group of kids are in bumper cars.,They,gold,are riding around in bumper cars.,throw a ball to each other and supports them.,go inside and get on sewn to the crowd.,\"ride around, trying to hit each other.\"\n3691,anetv_nj5dMUGvOWo,7809,A woman does flips on the bar. She,A woman does flips on the bar.,She,gold,jumps onto a bar.,jumps off and lands on a mat.,falls and she balances down on the bar.,walks to a bar and sets.\n3692,anetv_nj5dMUGvOWo,7808,A woman is doing a gymnastics routine on uneven bars. A woman,A woman is doing a gymnastics routine on uneven bars.,A woman,gold,stands behind him watching the performance for a moment.,does a gymnastics routine on the beam.,does flips on the bar.,is doing gymnastics in a crowded gym.\n3693,lsmdc3091_ZOMBIELAND-44423,14603,\"As the infected man lands at his feet, he smashes its head in. He tosses his bat aside and they\",\"As the infected man lands at his feet, he smashes its head in.\",He tosses his bat aside and they,gold,smash into the shadowy cage.,proceed down the aisle.,lower the bartender's gaze.,whisper number to someone.\n3694,lsmdc3091_ZOMBIELAND-44423,14606,\"The narrator edges back as he looks on, his chest heaving. The shears\",\"The narrator edges back as he looks on, his chest heaving.\",The shears,gold,features someone now.,\"furrowed, frowning, someone snaps a photo.\",\"blows out a grizzled, embossed blue head sticking down from a web on its head.\",\"slide across the floor, their blades dripping blood.\"\n3695,lsmdc3091_ZOMBIELAND-44423,14602,\"Someone's bat catches the zombie's face. As the infected man lands at his feet, he\",Someone's bat catches the zombie's face.,\"As the infected man lands at his feet, he\",gold,smashes its head in.,scrambles uncertainly from underneath.,grabs his bloody matchbox.,wrestles as some children splash on the floor.\n3696,lsmdc3091_ZOMBIELAND-44423,14600,\"He bashes the zombie in the face. As it goes down, he\",He bashes the zombie in the face.,\"As it goes down, he\",gold,\"grabs a bag with a oversized shield, trying to keep it from this surprise.\",\"swings repeatedly at it, splattering our view with blood.\",turns his smoke off.,tries to hold someone.\n3697,lsmdc3091_ZOMBIELAND-44423,14599,\"Wielding the banjo like a club, someone rushes to meet it. He\",\"Wielding the banjo like a club, someone rushes to meet it.\",He,gold,bashes the zombie in the face.,summons the video lesson.,wears a chain - link barrier and fires his taser at it.,cackles at someone as they pour.\n3698,lsmdc3091_ZOMBIELAND-44423,14605,Someone offers his shotgun but someone takes out pruning shears. The narrator,Someone offers his shotgun but someone takes out pruning shears.,The narrator,gold,grabs the kitchen door from the one.,grabs a coin and tosses it.,\"edges back as he looks on, his chest heaving.\",aims a gun at the teen's chest.\n3699,lsmdc3091_ZOMBIELAND-44423,14604,A corpulent zombie blocks their path. Someone offers his shotgun but someone,A corpulent zombie blocks their path.,Someone offers his shotgun but someone,gold,takes out pruning shears.,knows what he does.,takes them for a gift.,still dripping that someone is reached.\n3700,lsmdc3091_ZOMBIELAND-44423,14601,He slides on his knees. Someone's bat,He slides on his knees.,Someone's bat,gold,catches the zombie's face.,appears in the night sky.,bounces from the fireplace onto someone's bed.,is knocked off its feet.\n3701,anetv_YdenUU3g0XY,14696,He slowly demonstrates the necessary approach and form of the shot. We then,He slowly demonstrates the necessary approach and form of the shot.,We then,gold,went back without remorse as they begin to advance straight and each time they three.,see the man shaving the shoes from several cubby bins as the other corner.,see a player perform the shot multiple times as another person sets him up.,see some more martial arts moves.\n3702,anetv_YdenUU3g0XY,14695,\"A man introduces the topic of the video, which is how to do a smash shot in Badminton. He slowly\",\"A man introduces the topic of the video, which is how to do a smash shot in Badminton.\",He slowly,gold,\"raises the cannon burning in both directions, showing the first puff of the hammer before his team jumps through the crowd.\",demonstrates the necessary approach and form of the shot.,\"goes around the circle, then runs into the shot and runs off.\",hits the ball over to the crowd who remains on the floor and in his arms.\n3703,anetv_VD3kzQGuQnc,15734,She then mixes various ingredients into the glass and mixes them up in a shaker. The woman then,She then mixes various ingredients into the glass and mixes them up in a shaker.,The woman then,gold,puts the glass down and pours the mixture into glass presenting it to the camera.,jumps while pushing them down and talking.,coats the cigarette while speaking to the camera.,mixes the mixture all together and adds some more.\n3704,anetv_VD3kzQGuQnc,15733,A woman is seen speaking to the camera and leads into her pouring ice into a glass. She then,A woman is seen speaking to the camera and leads into her pouring ice into a glass.,She then,gold,puts oil under the glass and adds ice to the glass roof.,mixes various ingredients into the glass and mixes them up in a shaker.,adds a bottle of lemon juice into a glass bowl.,pours ingredients into a glass and pours them into the glass.\n3705,anetv_JksdZ0YMkoQ,5450,He does it repeatedly to make sure they all stay on well. Otherwise it,He does it repeatedly to make sure they all stay on well.,Otherwise it,gold,would be dangerous to drive on if they are loose.,is too dark for the row of sanding bucket.,are left at the end.,is made at the end.\n3706,anetv_JksdZ0YMkoQ,5448,A man in red in outside screwing in his rotors and putting his tire back on his truck. He,A man in red in outside screwing in his rotors and putting his tire back on his truck.,He,gold,pulls up from a sign and swings it over.,'s goes on side and goes back to the bike.,grabs pieces to tighten it and begins to make sure they are on super tight.,lifts the driver with his hand.\n3707,anetv_JksdZ0YMkoQ,5449,He grabs pieces to tighten it and begins to make sure they are on super tight. He,He grabs pieces to tighten it and begins to make sure they are on super tight.,He,gold,\"removes the tire he will pull with the clockwise, rolls, and starts to cross across his way.\",does it repeatedly to make sure they all stay on well.,is dressed as a disinfectant hugging the front of a man on a tight red track.,is tightening one end of the rope as he builds in the position.\n3708,anetv_pElJ7U46XnQ,16531,The guy lifts the weight. The guy dance around and,The guy lifts the weight.,The guy dance around and,gold,spins around three times.,then leaves the stage.,sings to the dial.,exercise and the guy jumps.\n3709,anetv_pElJ7U46XnQ,16532,The guy dance around and then leaves the stage. A man,The guy dance around and then leaves the stage.,A man,gold,carries a box into the stage.,picks up a microphone and smokes a match.,\"licks his lips and talks without turning, then walks away.\",releases the boy's hand with the number had bounty called at the end.\n3710,lsmdc0043_Thelma_and_Luise-68354,11407,She puts the car in gear and floors it out of the parking lot. She,She puts the car in gear and floors it out of the parking lot.,She,gold,opens a chair to reveal a woman waiting for a sign to say goodbye.,balances on the door and going past it.,is still looking at someone as if she has completely lost her mind.,goes into the cup and makes it cleaner to the car.\n3711,anetv_hQl2eeYX3IY,11848,He begins by blowing the leaves off from near the front lawn. Then he,He begins by blowing the leaves off from near the front lawn.,Then he,gold,continues speaking as he lights up the fence.,moves towards where his white van is parked.,stops and looks on the living room chair.,lowers it slowly and walks towards the camera.\n3712,anetv_hQl2eeYX3IY,11847,There's a man in a red shirt and brown hat blowing leaves off his driveway with a leaf blower. He,There's a man in a red shirt and brown hat blowing leaves off his driveway with a leaf blower.,He,gold,is blowing the lawn mower in the woods in front of his twig.,\"man comes up with the horse and leads the charge and the drum joins, connected to the log.\",walks off a table and lathers his multitude of other types.,begins by blowing the leaves off from near the front lawn.\n3713,anetv_hQl2eeYX3IY,11850,\"He walks all around the driveway and blow the leaves, making sure he covers the entire driveway. Then he\",\"He walks all around the driveway and blow the leaves, making sure he covers the entire driveway.\",Then he,gold,goes towards the corner of the garage and blow off a large pile of leaves that is lying there in a heap.,lifts on the snow lying down on the ground and takes a few more puffs as he continues to drink.,gets several patrols blowing before he can leave the car inside.,goes over to the car and is sitting on the stair chair and he's thinking it down the street.\n3714,anetv_hQl2eeYX3IY,11849,Then he moves towards where his white van is parked. He,Then he moves towards where his white van is parked.,He,gold,tucks the handlebars behind his back.,flips it off and tosses it over.,plops onto the couch at the bottom of the stairs.,\"walks all around the driveway and blow the leaves, making sure he covers the entire driveway.\"\n3715,anetv_by8QQWbyimw,18461,They then take turns doing cartwheels across the lawn. They,They then take turns doing cartwheels across the lawn.,They,gold,\"do front and back flips, then run toward the camera.\",go of the balance bars and pose for a tree.,separate and go off.,go down and speak to one another while people cheer with the small man.\n3716,anetv_by8QQWbyimw,18460,Two girls are acting silly and throwing signs at a camera. They then,Two girls are acting silly and throwing signs at a camera.,They then,gold,spin around and lay together in several locations.,walk together and play with one another.,do a wide flip.,take turns doing cartwheels across the lawn.\n3717,anetv_8qAdvUvNuts,4059,\"A view of the countryside is seen in multiple images, including buildings, trees, fields and flowers near the ocean. A man\",\"A view of the countryside is seen in multiple images, including buildings, trees, fields and flowers near the ocean.\",A man,gold,rides the train toward the river down the river.,is shown mountain climbing up the side of a cliff.,\"rides the camels, going slowly and side to side.\",holds out his hand and begins to dive in the kayak to go down the rapids.\n3718,lsmdc3078_THE_WATCH-36438,5995,\"Someone sees something, too, and he and someone duck. Someone\",\"Someone sees something, too, and he and someone duck.\",Someone,gold,slowly turns as he turns toward someone.,looks up at someone and lowers his stare.,pulls out the pink walkie talkie.,\"gives herself a kiss, her chest heaving and gulps.\"\n3719,lsmdc3078_THE_WATCH-36438,5991,Someone gives them pink plastic walkie talkies from the store shelves. They,Someone gives them pink plastic walkie talkies from the store shelves.,They,gold,\"eat together in the hotel lobby, where someone plays someone in a golf club.\",roll into the cup a few times.,struggle to tear open the thick plastic packaging.,are shown cooking and pours the ingredients into a glass bowl filled with ingredients.\n3720,lsmdc3078_THE_WATCH-36438,5992,They struggle to tear open the thick plastic packaging. Someone and someone,They struggle to tear open the thick plastic packaging.,Someone and someone,gold,come out of the house on their own struggling.,turn their backs to reveal the stolen gun rifle.,sneak through the produce department.,\"lie next to each other painfully, with their mouths hanging out in the darkness.\"\n3721,lsmdc3078_THE_WATCH-36438,5990,The stealthy quartet sneaks through the tire section. Someone,The stealthy quartet sneaks through the tire section.,Someone,gold,gives them pink plastic walkie talkies from the store shelves.,climbs out mail over the side of the platform.,holds up a human shield.,turns down his glass and heads.\n3722,lsmdc3078_THE_WATCH-36438,5994,\"Now, someone spots something and tugs her husband's sleeve. Someone\",\"Now, someone spots something and tugs her husband's sleeve.\",Someone,gold,looks at the rising clock.,holds her hands up.,sets the bound door shut behind them.,\"sees something, too, and he and someone duck.\"\n3723,lsmdc3078_THE_WATCH-36438,5993,\"Guns raised, someone and someone patrol another area. Now, someone\",\"Guns raised, someone and someone patrol another area.\",\"Now, someone\",gold,creeps over under control.,spots something and tugs her husband's sleeve.,examines a plate emblazoned with the white headstones.,loads the surrounding back.\n3724,anetv_LaWCwEG6n3w,10219,A person is seen standing off in the distance with another standing around a hole. The person,A person is seen standing off in the distance with another standing around a hole.,The person,gold,drags it down on the end of the board as others watch on the side.,is then seen kneeling down on a horse while speaking to the camera.,and a child walk down the woods on the rope as they move to one end.,uses a fishing pole on the hole and attempts to pull out a fish.\n3725,anetv_LaWCwEG6n3w,10220,The person uses a fishing pole on the hole and attempts to pull out a fish. The person,The person uses a fishing pole on the hole and attempts to pull out a fish.,The person,gold,skiier goes off the board.,continues cutting around the fish while others watch in the distance.,continues pulling while the other watches on the side.,grabs one and puts the bow around a hole.\n3726,anetv_7iTrw4kr8e0,13996,She puts glasses and looks down at the mirror. She,She puts glasses and looks down at the mirror.,She,gold,turns herself away and ends with a logo shown.,yanks off a thong.,stands with baby sand wrapped in cloth.,\"turns down the banister, overcome with sympathy, and again runs up her arms.\"\n3727,anetv_7iTrw4kr8e0,13995,An intro leads into a woman looking into the mirror and putting makeup on. She,An intro leads into a woman looking into the mirror and putting makeup on.,She,gold,puts glasses and looks down at the mirror.,lifts the bar and starts running away while looking to the camera.,continues shown with her hair rubbing hands moving in it and pausing to speak.,peels a shirt off blush and shows off a tattoo room area.\n3728,anetv_kUxz_SPi72U,18379,A man is seen kneeling down beside a tire while holding up various tools. The man then,A man is seen kneeling down beside a tire while holding up various tools.,The man then,gold,demonstrates how to properly jump up the mountain and push it around on a board.,begins cutting with his bike while looking back to the camera.,begins putting plaster into the tree as well as holding a tire and speaking in the end.,takes off a hubcap and places it back on the tire.\n3729,anetv_kUxz_SPi72U,18380,The man then takes off a hubcap and places it back on the tire. He,The man then takes off a hubcap and places it back on the tire.,He,gold,continues putting around keys and wiping the tire every time he is finished.,turns to speak to the camera.,continues to take his shirt off on the tire.,continues to climb in the tire while speaking to the camera.\n3730,anetv_rBmFxH3BUOw,14387,\"The man grabs one of the products and rubs it all over the ski, letting the product sit there for a while. After some time has passed, the man\",\"The man grabs one of the products and rubs it all over the ski, letting the product sit there for a while.\",\"After some time has passed, the man\",gold,stops and talks from a detailed occasion.,grabs another product and rubs it all over the ski.,and the man put on all the work.,\"takes a brush and starts cutting the hair, saying or fairly just how to properly the will correctly.\"\n3731,anetv_rBmFxH3BUOw,14386,The man cleans the ski with a towel. The man,The man cleans the ski with a towel.,The man,gold,wipes the tire using his brush.,takes the horse and sprays the ski.,\"grabs one of the products and rubs it all over the ski, letting the product sit there for a while.\",puts his teeth in it and puts blood on the long legs.\n3732,anetv_rBmFxH3BUOw,14385,A man points to some products for the usage of waxing skis. The man,A man points to some products for the usage of waxing skis.,The man,gold,cleans the ski with a towel.,scrubs the brush and combs the last of the wax paper.,talks to the camera in a area.,dismounts and walks out of the kitchen with his hand over his shoulders.\n3733,anetv_j-FGgYaQVio,17228,The woman begins to groom the dogs face with the clippers. The woman then,The woman begins to groom the dogs face with the clippers.,The woman then,gold,begins to untie the inside of her tail.,\"rinses the horse, ties it back, and ties it up.\",begins to groom under the dogs front legs.,pushes the horse all around the horse while more watches si moving around while she more brushes.\n3734,anetv_j-FGgYaQVio,17227,A woman in an office is holding a pair of grooming clippers while standing next to a black dog who is standing on a table next to her while tethered to a metal pole on the table. The woman,A woman in an office is holding a pair of grooming clippers while standing next to a black dog who is standing on a table next to her while tethered to a metal pole on the table.,The woman,gold,\"places a small purple tail on the woman's foot, and sets the tissue to secure in the toothbrush.\",begins to groom the dogs face with the clippers.,continues pushing the brown dog alongside of the mower and the lady stopped to talk to the camera.,puts a black rag in front of her behind and applies the toothpaste to the dog.\n3735,anetv_olFThb2_GHM,9521,We see a man preparing to throw the discuss. He throws and walks away and we,We see a man preparing to throw the discuss.,He throws and walks away and we,gold,see a man and a man.,see it in slow motion.,see the man holding darts.,see a game in progress.\n3736,anetv_olFThb2_GHM,9522,He throws and walks away and we see it in slow motion. We,He throws and walks away and we see it in slow motion.,We,gold,see the next man walk up and throw and we see it again.,see the title screen.,see a man putting points on his body.,see reading the dealer chairs at the table.\n3737,anetv_Wr7YbcQ_Q9g,19439,A young boy in t - shirt and shorts maneuvers a lawn moves back and forth across a small patch of lawn as he mows the lawn. The boy then,A young boy in t - shirt and shorts maneuvers a lawn moves back and forth across a small patch of lawn as he mows the lawn.,The boy then,gold,walks the mower down a longer stretch of lawn near the corner across from a stop sign.,goes back on a swinging wheelchair and he starts stepping back and forth trying to keep the mower he is standing on.,rides around on his lawn mower and glares back and forth in the yard.,reaches the lawn mower and puts on his pants then carries the same lawn mower to the front's path and starts to mow.\n3738,anetv_Wr7YbcQ_Q9g,19438,A young boy mows the front lawn in a suburban residential neighborhood. A young boy in t - shirt and shorts maneuvers a lawn,A young boy mows the front lawn in a suburban residential neighborhood.,A young boy in t - shirt and shorts maneuvers a lawn,gold,moves back and forth across a small patch of lawn as he mows the lawn.,mower across the yard and baby falls.,mower around a christmas tree mower near the yard while the person walks next to pile.,in a different driveway.\n3739,anetv_Rl6US0JizDs,17708,She begins by taking a glass and filling it with ice. She,She begins by taking a glass and filling it with ice.,She,gold,follows the mixture out without making a syrup.,pours a large hot substance into the glass.,add all the ingredients to the glass over the ice.,puts the ingredients into the mixer and juices the lemons into water.\n3740,anetv_Rl6US0JizDs,17707,She goes over all the ingredients needed for the drink. She,She goes over all the ingredients needed for the drink.,She,gold,begins by taking a glass and filling it with ice.,\"mixes the ingredients together with a spoon, finally stirring it into dough.\",continues to mix the ingredients in the bowl.,\"adds sausage, salt, root, and onions.\"\n3741,anetv_Rl6US0JizDs,17706,An introduction comes onto the screen for a video about mixing a drink called the Yah yah. She,An introduction comes onto the screen for a video about mixing a drink called the Yah yah.,She,gold,looks when she passes man's friends.,goes over all the ingredients needed for the drink.,takes a gulp of the cup back and drink and makes a sip on it.,is then shown again with a cocktail with a.\n3742,anetv_Rl6US0JizDs,17709,She add all the ingredients to the glass over the ice. The video,She add all the ingredients to the glass over the ice.,The video,gold,ends with an advertisement for pictures of several different people talking.,ends with the closing credits.,ends with a credit showing the address of the equipment required and noble.,changes to the woman for several alcoholic beans.\n3743,anetv_KU4twxFnX5Q,11376,\"They begin running, being passed by cars as they go. They\",\"They begin running, being passed by cars as they go.\",They,gold,continue running through the town together.,move in and out of jam.,fly in the air and run across the desert.,slide with words shown on the screen.\n3744,anetv_KU4twxFnX5Q,11375,A group of runners walk down a dirt path. They,A group of runners walk down a dirt path.,They,gold,\"begin running, being passed by cars as they go.\",run up to several more field hockey goals.,are riding their skateboards on a busy street.,show photos of bicycles speaking to the camera.\n3745,anetv_R58R070r2GE,14183,She does a gymnastics routine on the balance beam. She,She does a gymnastics routine on the balance beam.,She,gold,jumps and spinning in the air.,dismounts on the beam.,dismounts and lands on the mat with her arms up.,\"stops, first dips on the water and hits three more times.\"\n3746,anetv_R58R070r2GE,14182,A girl jumps onto a balance beam. She,A girl jumps onto a balance beam.,She,gold,does a gymnastics routine on the balance beam.,jumps and lands in a jumping.,does several handstand on performs.,does a gymnastics routine on the bars.\n3747,lsmdc3078_THE_WATCH-36170,3024,He slows down and stops to look at it. Something,He slows down and stops to look at it.,Something,gold,is more quickly than he can not show how his speech is seen.,settles inside and he quickly clears out when he sees someone and catches it.,moves alongside of it.,thinks some more and goes back to join him.\n3748,lsmdc3078_THE_WATCH-36170,3025,\"Behind him, a trash can falls over. He\",\"Behind him, a trash can falls over.\",He,gold,holds up an egg.,dumps the keys on the barren street.,retrieves a metal piece.,knocks the bartender over.\n3749,lsmdc3078_THE_WATCH-36170,3028,He drops the egg and shoves off on his board. He,He drops the egg and shoves off on his board.,He,gold,sees something racing along the rooftops.,slips off his khaki jacket and grabs his door.,jumps off the completed outfit and runs back up the trampoline.,lets go of his kangaroo and collapses over by the light.\n3750,lsmdc3078_THE_WATCH-36170,3022,\"As they strut out, someone kicks a chair. Someone\",\"As they strut out, someone kicks a chair.\",Someone,gold,\"returns the kid's backpack, then straightens the chair.\",catches someone 'eye.,scurries to the blocks.,puts his hand on the side of his face.\n3751,lsmdc3078_THE_WATCH-36170,3029,He sees something racing along the rooftops. He,He sees something racing along the rooftops.,He,gold,locates several bikers on the pool wall.,stabs the wall with a small phial.,pushes faster and cranes his neck trying for a look at the creature.,chases the trooper and tries to greet him.\n3752,lsmdc3078_THE_WATCH-36170,3023,\"As he comes to a deserted intersection, he notices a large, green electricity transformer fizzing and sparking on the corner. He\",\"As he comes to a deserted intersection, he notices a large, green electricity transformer fizzing and sparking on the corner.\",He,gold,ripples crazily down the street steadily.,is being chased by a huge town tractor.,bows his head then knocks out the lizard.,slows down and stops to look at it.\n3753,anetv_FgRIl4bNl_M,10554,The person pushing the snow all around the area and clearing out a walkway. The person,The person pushing the snow all around the area and clearing out a walkway.,The person,gold,continues shoveling while the camera captures them from behind.,continues shoveling off the window with snowy in their side.,continues to wash the car as well as driving on the sidewalk.,loses the fishing mans shoes and smiles.\n3754,anetv_FgRIl4bNl_M,10553,A large snowy area is seen followed by a person pushing a shovel. The person,A large snowy area is seen followed by a person pushing a shovel.,The person,gold,dismounts up and down the lawn while still speaking to the camera.,starts walking along the lawn while the camera cuts around the girl.,pushing the snow all around the area and clearing out a walkway.,is seen climbing up the snow on the boat with a shovel.\n3755,anetv_FgRIl4bNl_M,18902,Man is cleaning a snowy path with a shovel. man,Man is cleaning a snowy path with a shovel.,man,gold,is cleaning the snow on a snowboard and filing up.,starts running in the snow moving on carpet.,cleans a square from a really deep snow.,is running in the water and throws a towel around them.\n3756,lsmdc3036_IN_TIME-16023,3079,Someone hands his gun off to an underling. Someone,Someone hands his gun off to an underling.,Someone,gold,removes his overcoat then his jacket.,glances at the phone.,stuffs a hole into the alien's crotch.,\"enters the dining room, loosens his ankles, and locks the door.\"\n3757,lsmdc3036_IN_TIME-16023,3080,\"Rolling up his shirt sleeve, he sits facing someone. He\",\"Rolling up his shirt sleeve, he sits facing someone.\",He,gold,hands his sister a toy mirror.,rests his arms on the table and leans forward.,runs his leg over the six - fingered scar on his throat.,makes a bishop laugh.\n3758,anetv_NnW_1eQV9GU,3557,A rodeo rider comes out of the gate on a bull and gets thrown off. The rodeo clowns,A rodeo rider comes out of the gate on a bull and gets thrown off.,The rodeo clowns,gold,dropped as an attacking army camp.,stands on the bulls and begins taunting the bull.,are farther on and walking on top by one force.,distract the bull as the rider gets to safety.\n3759,anetv_NnW_1eQV9GU,3559,\"A clown gets hurt and goes for treatment from a pretty lady. A group of men on horses talk and as they ride away, the clown\",A clown gets hurt and goes for treatment from a pretty lady.,\"A group of men on horses talk and as they ride away, the clown\",gold,runs his arms out of the venetian holding a pretty biker.,restarts his job in the ring.,chases around a bull with two wrestlers and a bull - miss it.,rides uneasy while people carry out the camels.\n3760,anetv_NnW_1eQV9GU,3560,\"A group of men on horses talk and as they ride away, the clown restarts his job in the ring. The clown\",\"A group of men on horses talk and as they ride away, the clown restarts his job in the ring.\",The clown,gold,shoots the bull to keep the bull in the eye and make a goal for it.,gets injured again as he jumps over a bulls head and the other clowns help him up.,shows many others members of the foosball area before spinning in the ring another fall.,\"runs his fingers around the foot of the horse, guiding the horses to the ground and falls on his horse and chase.\"\n3761,anetv_NnW_1eQV9GU,3558,The rodeo clowns distract the bull as the rider gets to safety. A clown,The rodeo clowns distract the bull as the rider gets to safety.,A clown,gold,are running around on shore.,runs to a fix by the bulls as a bull charges.,is in the wall of a arena.,gets hurt and goes for treatment from a pretty lady.\n3762,anetv_i9t0zZzzbhE,17283,Men are riding horses in snowy field. men,Men are riding horses in snowy field.,men,gold,are standing in front of a top pole.,are puting boots and polo uniforms.,are riding in a rodeo at the field park.,are standing in the tops of the camels pulling a calf.\n3763,anetv_i9t0zZzzbhE,17285,Women are standing in a field walking and sitting on stands. men,Women are standing in a field walking and sitting on stands.,men,gold,are playing polo in snowy field while people is around watching them.,are talking to the camera on a basketball court.,are out in a court and swim.,are posing with long harness in a soccer stadium.\n3764,anetv_i9t0zZzzbhE,17284,Men are puting boots and polo uniforms. women,Men are puting boots and polo uniforms.,women,gold,are in sea uniform doing exercise.,are playing field hockey in skateboards.,are standing in a field walking and sitting on stands.,are in a town holding paintball guns and a tripod.\n3765,anetv_AFb77tjPuwQ,18618,People play croquet in the field. A man,People play croquet in the field.,A man,gold,hits a long shot down a slope.,smacks him on the back of the head.,put a ball on a couch and throws a silver ball.,taps his nose and they stop and go on to the first line of fire.\n3766,anetv_AFb77tjPuwQ,18617,A man prepares a croquet course in a grassy area by setting up poles and gates. People,A man prepares a croquet course in a grassy area by setting up poles and gates.,People,gold,are using teams force to push them all the way.,are on the grass watching the game.,play croquet in the field.,lob the ball back and fourth with each member in the yard.\n3767,anetv_AFb77tjPuwQ,14361,Man is asembling a crocket court in a green grassy field. when ready men and women,Man is asembling a crocket court in a green grassy field.,when ready men and women,gold,\"are polo practicing jumps, sailing past a steep slip and landscape.\",start playing in the field.,are playing large group of people with onlookers watching.,are standing in front of the tables and places the box into a big pile.\n3768,anetv_AFb77tjPuwQ,18621,A man hits the ball through multiple gates in a row and finally hits the post. A man,A man hits the ball through multiple gates in a row and finally hits the post.,A man,gold,takes a plane away from a new goal.,puts yellow rolls and hits pins on a skate field.,receives a trophy from teammates.,in yellow enters another room.\n3769,anetv_AFb77tjPuwQ,18619,A man hits a long shot down a slope. A wedding procession,A man hits a long shot down a slope.,A wedding procession,gold,moves on its screen.,rides back along the road.,walks off the streets.,walks though the field.\n3770,anetv_AFb77tjPuwQ,14362,When ready men and women start playing in the field. man,When ready men and women start playing in the field.,man,gold,is jumping off of the stage above.,starts playing in the sand and people with him.,is walking a little playing on the street in front of the houses.,is standing next to a big trophy talking to the camera.\n3771,anetv_AFb77tjPuwQ,14363,Man is standing next to a big trophy talking to the camera. men,Man is standing next to a big trophy talking to the camera.,men,gold,are playing in a wooden court.,are playing soccer in a park around a room.,are playing soccer in a barn near the goal.,keep playing in the field next to a lake.\n3772,anetv_KIIcgQyr0-Y,8083,We focus on the mans left hand on the guitar neck. The man,We focus on the mans left hand on the guitar neck.,The man,gold,moves like a rolling tattoo on the tiled wall.,demonstrates facing his song.,finishes and stops playing.,is welding something on the wall outside a house.\n3773,anetv_KIIcgQyr0-Y,8081,We see a man hitting the guitar like drum. The man plays a song on the guitar and we briefly,We see a man hitting the guitar like drum.,The man plays a song on the guitar and we briefly,gold,see the song and artist name on the screen.,see him playing his guitar.,see him opening it.,see him taking the screen.\n3774,anetv_KIIcgQyr0-Y,8080,We see a guitar illustration on the opening scene. We,We see a guitar illustration on the opening scene.,We,gold,see a white screen screen.,see a man hitting the guitar like drum.,see a man cross the lawn.,see cars parked outdoors in a parking lot.\n3775,anetv_KIIcgQyr0-Y,8082,The man plays a song on the guitar and we briefly see the song and artist name on the screen. We,The man plays a song on the guitar and we briefly see the song and artist name on the screen.,We,gold,continues as well as the song on his lips and talk to the man.,pulls on a game in progress.,focus on the mans left hand on the guitar neck.,plays on the screen and the man then cuts to playing the violin.\n3776,anetv_CD8FFj8AJE0,18377,He rubs in lotion and then stands up with the man. The man,He rubs in lotion and then stands up with the man.,The man,gold,is sitting on the table.,holds a mirror up to his back and smiles back to the artist.,takes a handful and demonstrates how to quote the process.,puts his shoe down in the record holes with his wrist and his left hand and covers it.\n3777,anetv_CD8FFj8AJE0,18376,A man is seen speaking to the camera and leads into him wiping down another man's back. He,A man is seen speaking to the camera and leads into him wiping down another man's back.,He,gold,sprays down the dog and then zooms along to begins drying his hair around the dog.,rubs in lotion and then stands up with the man.,wipes his forehead on the end and skis down to speak about a product.,finishes off the blow and smiles after the camera.\n3778,lsmdc1010_TITANIC-78028,2174,\"Someone wraps his arms around someone as she grips onto the railing. Sitting beside someone in a lifeboat, someone's eyes\",Someone wraps his arms around someone as she grips onto the railing.,\"Sitting beside someone in a lifeboat, someone's eyes\",gold,are glassy as she watches from a distance.,get a better look at her.,fill with gentle sketches.,are closed as they part.\n3779,lsmdc1010_TITANIC-78028,2158,They grab onto the railing at the exact spot they first met. Water,They grab onto the railing at the exact spot they first met.,Water,gold,and recognition announcer does n't have one father at their seats.,\"hanged someone reaches rock to see someone displayed from around the tree and surrounds the metal board, which bounces back into the water before\",streams down the exposed propellers as they continue to tilt upward.,\", someone surfing is sea - drawn.\"\n3780,lsmdc1010_TITANIC-78028,2172,\"Standing at the rear railing, the black haired baker watches a falling man bounce off of one of the giant propellers and cartwheel into the sea. The baker\",\"Standing at the rear railing, the black haired baker watches a falling man bounce off of one of the giant propellers and cartwheel into the sea.\",The baker,gold,pulls a flask out of his pocket and takes a drink.,takes a book from the plate and sits upright.,\"waves the wand into the air, then cuts them off despairingly.\",fades to orange and gold on a small curtsy.\n3781,lsmdc1010_TITANIC-78028,2168,Someone's eyes widen as he watches people and deck chairs smashed with each other. A brunette woman,Someone's eyes widen as he watches people and deck chairs smashed with each other.,A brunette woman,gold,stands on a patio with a van draped with a canopy overhead.,holds a rock above her eight degrees.,slips out of a man's grasp and slides on the deck on her stomach.,\"is on the bottom of a pool inside a present, a gun and a basket.\"\n3782,lsmdc1010_TITANIC-78028,2170,More people climb over the railing at the back of the ship. One man,More people climb over the railing at the back of the ship.,One man,gold,hurries off and the passengers ride up.,jumps and free falls into the icy water where small groups of survivors cling to floating debris.,has a torch set wrapped tightly in them.,\"slides off the train and sinks to the floor, on a railing.\"\n3783,lsmdc1010_TITANIC-78028,2154,They move to a railing and watch as several passengers plunge overboard. People,They move to a railing and watch as several passengers plunge overboard.,People,gold,increases the tranquil river below his feet.,watch as bombs fall from windows.,\"continue on, pressing passed a group of people kneeling around a priest.\",walk past with their back turned in.\n3784,lsmdc1010_TITANIC-78028,2177,\"As the rear of the ship continues to tilled upward. Blood streaming down his forehead, someone\",As the rear of the ship continues to tilled upward.,\"Blood streaming down his forehead, someone\",gold,slashes his enemies leg.,tosses a paper towel inside.,angrily swats his gun off another man's leg.,grips a side railing as it splits apart.\n3785,lsmdc1010_TITANIC-78028,2171,\"One man jumps and free falls into the icy water where small groups of survivors cling to floating debris. Standing at the rear railing, the black haired baker\",One man jumps and free falls into the icy water where small groups of survivors cling to floating debris.,\"Standing at the rear railing, the black haired baker\",gold,walks through the study into the dark chamber.,removes his free hand and hands it to the hydra with his head.,watches a falling man bounce off of one of the giant propellers and cartwheel into the sea.,takes a long breath on its lower lip and grins at the hippogriff.\n3786,lsmdc1010_TITANIC-78028,2160,Kneeling people grab one of the priest's hands as he holds onto a cab stand or rotating shaft with his other hand. Beside people a woman,Kneeling people grab one of the priest's hands as he holds onto a cab stand or rotating shaft with his other hand.,Beside people a woman,gold,is now sitting in her gown staring and spraying some red flowers on a vanity.,hugs a young boy to her chest.,is lying on the ice with her arm outstretched.,\"stands before him, looking out over the dusty valley.\"\n3787,lsmdc1010_TITANIC-78028,2178,\"Blood streaming down his forehead, someone grips a side railing as it splits apart. Inside the ship a ceiling\",\"Blood streaming down his forehead, someone grips a side railing as it splits apart.\",Inside the ship a ceiling,gold,juts out into the sky.,cloud of dust lies in the gap in the shape of a gun board.,\"shoots the glass like an enormous glass section, then lies in the water.\",collapses as several support columns failed.\n3788,lsmdc1010_TITANIC-78028,2163,\"Someone hugs her tight and kisses her forehead. Inside a submerged portion of the ship, a woman's lifeless body\",Someone hugs her tight and kisses her forehead.,\"Inside a submerged portion of the ship, a woman's lifeless body\",gold,lies in an empty blanket under the book.,\"lies on the green, hall covered platform.\",\"drifts beneath a large chandelier, her gauzy dress billowing in the water.\",rises as it lands on the floor.\n3789,lsmdc1010_TITANIC-78028,2153,\"Gripping someone's hand, someone leaps through the crowd. They\",\"Gripping someone's hand, someone leaps through the crowd.\",They,gold,\"burst from the lifeboat, and someone makes her way down the front of another lifeboat.\",mob a busy view and engaged in different views with lights and distant skyscrapers.,land on the ship.,move to a railing and watch as several passengers plunge overboard.\n3790,lsmdc1010_TITANIC-78028,2175,\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance. Also in a lifeboat someone\",\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance.\",Also in a lifeboat someone,gold,makes their way down a narrow tunnel.,turns away from the carnage and squeezes his eyes shut.,watches from the side of someone's wand as she buries his face against his shoulder.,\"wades through the river someone, then disappears into the ocean.\"\n3791,lsmdc1010_TITANIC-78028,2156,A few dozen people tread water near the propeller. Someone,A few dozen people tread water near the propeller.,Someone,gold,returns the probe to its second upper landing.,pulls up towards deck which is now slanted at a forty five degree angle.,is lifted off the air pumps.,tumbles over onto a boulder.\n3792,lsmdc1010_TITANIC-78028,2161,\"Beside people a woman hugs a young boy to her chest. Shivering, someone\",Beside people a woman hugs a young boy to her chest.,\"Shivering, someone\",gold,clings to someone as she looks down at the sinking ship.,watches with someone as she barges in.,steps forward from the top and does a fanning flip in the stands.,moves back into the hall.\n3793,lsmdc1010_TITANIC-78028,2167,People slide down the slanted deck. Someone's eyes,People slide down the slanted deck.,Someone's eyes,gold,flare into a rocky incline.,widen as he watches people and deck chairs smashed with each other.,welcome to sleeps this distance.,fly down to the sky.\n3794,lsmdc1010_TITANIC-78028,2152,\"Some passengers leap off from the back of Titanic which is now tilted up several stories above the ocean surface. Gripping someone's hand, someone\",Some passengers leap off from the back of Titanic which is now tilted up several stories above the ocean surface.,\"Gripping someone's hand, someone\",gold,leaps through the crowd.,carries her into view.,\"lets his head fall forward, gently time someone raises his arms and looks at someone.\",surfs into the water.\n3795,lsmdc1010_TITANIC-78028,2164,\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier, her gauzy dress billowing in the water. Stacks of plates\",\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier, her gauzy dress billowing in the water.\",Stacks of plates,gold,slide off the shelves and smash on the floor.,tumble into the open bedroom door.,of food are shown in a creamy dish.,\"come finishing to the basin, which reflected in the water surrounding them.\"\n3796,lsmdc1010_TITANIC-78028,2165,Stacks of plates slide off the shelves and smash on the floor. A life boat,Stacks of plates slide off the shelves and smash on the floor.,A life boat,gold,sets their father beside four semi - boat.,flow people away from the part of the ship which rises several stories into night sky.,climbs all the way up to the edge.,sits behind the baby.\n3797,lsmdc1010_TITANIC-78028,2169,A brunette woman slips out of a man's grasp and slides on the deck on her stomach. More people,A brunette woman slips out of a man's grasp and slides on the deck on her stomach.,More people,gold,\"stand on his sail away from the wave, pulled back to earth, and wave his arms.\",come out of the ring and watch her with a third one.,pass as people jump out and head at bumps.,climb over the railing at the back of the ship.\n3798,lsmdc1010_TITANIC-78028,2157,Someone pulls up towards deck which is now slanted at a forty five degree angle. They,Someone pulls up towards deck which is now slanted at a forty five degree angle.,They,gold,do a few selections from someone.,come into the ballroom.,grab onto the railing at the exact spot they first met.,arrive at each bar and watch.\n3799,lsmdc1010_TITANIC-78028,2166,A life boat flow people away from the part of the ship which rises several stories into night sky. People,A life boat flow people away from the part of the ship which rises several stories into night sky.,People,gold,slide down the slanted deck.,plunge into the waters of the creek.,appear beneath them and dozens of ghostly figures emerge from a doorway through the downpour.,run toward the father and son.\n3800,lsmdc1010_TITANIC-78028,2151,Some people in a lifeboat behind the Titanic row furiously as the ship's enormous propellers rise out of the water. Some passengers,Some people in a lifeboat behind the Titanic row furiously as the ship's enormous propellers rise out of the water.,Some passengers,gold,join the passengers in the lifeboat.,pull metal rail boards onto the lower deck as the boat braces dances.,wade forward to paddy to a flowing waterfall and roll along the bottom of the rocks where a young man is in the water.,leap off from the back of titanic which is now tilted up several stories above the ocean surface.\n3801,lsmdc1010_TITANIC-78028,2173,The baker pulls a flask out of his pocket and takes a drink. Someone,The baker pulls a flask out of his pocket and takes a drink.,Someone,gold,draws it out and looks him.,wraps his arms around someone as she grips onto the railing.,covers a bottle with bubbling wine.,\"surreptitiously takes the shot as he takes it from his briefcase, followed empty clothing.\"\n3802,lsmdc1027_Les_Miserables-6157,2858,He stuffs the doll inside his coat. They,He stuffs the doll inside his coat.,They,gold,carry the ball out of the room.,get out of the carriage and run off hand in hand by the city wall.,look on and on.,haul him load up and rip into the ground.\n3803,lsmdc1027_Les_Miserables-6157,2866,Someone lowers someone on the rope on the other side of the wall. He,Someone lowers someone on the rope on the other side of the wall.,He,gold,\"leaps to the ground, which bursts down into a hut.\",holds the handle of the shower on his hands.,shakes someone's hand.,climbs down himself and carries someone.\n3804,lsmdc1027_Les_Miserables-6157,2863,\"As someone searches along dark alleyways, someone climbs to the top of a wall. Someone\",\"As someone searches along dark alleyways, someone climbs to the top of a wall.\",Someone,gold,\"slaps the dog's stomach, someone backs up.\",takes out his cricket case and peers down at him.,watches fearfully as someone struggles.,races down his huge length of last fluid and peeks out at last.\n3805,lsmdc1027_Les_Miserables-6157,2868,They peer into a chapel. The interior,They peer into a chapel.,The interior,gold,shows someone on the roof's deck.,is lit by the golden glow of candlelight.,of the humvee is strung.,trails down as someone appears.\n3806,lsmdc1027_Les_Miserables-6157,2870,\"Holding someone, someone turns and sees a man with a spade. The stout, scruffy balding man\",\"Holding someone, someone turns and sees a man with a spade.\",\"The stout, scruffy balding man\",gold,writes on his cellphone and withdraws the sheet.,throws down his spade and takes off his hat.,\"marches down the tall cool, wooden dining table.\",shuffles to the floor and opens his door.\n3807,lsmdc1027_Les_Miserables-6157,2861,Someone climbs over a stone balustrade and lifts someone over. Someone,Someone climbs over a stone balustrade and lifts someone over.,Someone,gold,turns on her heels and swallows.,stands casually as the dwarf heads inside.,approaches someone and peers into small poles.,is forced to stop.\n3808,lsmdc1027_Les_Miserables-6157,2859,\"On horseback, someone sees them. Someone\",\"On horseback, someone sees them.\",Someone,gold,reaches to his pocket and pulls on someone's cap.,is pulled through the snow at a weary pace.,pulls out a nearby parcel.,chases after them as they run along a colonnade.\n3809,lsmdc1027_Les_Miserables-6157,2864,\"Someone watches fearfully as someone struggles. Using the rope, he\",Someone watches fearfully as someone struggles.,\"Using the rope, he\",gold,hauls her up beside him.,steps out of the raft.,manages to pull back his brake and levels the vehicle back.,tries another push him off the motorboat.\n3810,lsmdc1027_Les_Miserables-6157,2865,\"Using the rope, he hauls her up beside him. They\",\"Using the rope, he hauls her up beside him.\",They,gold,lie still along the top of the wall.,begin to dance several times as they finish.,storms into the opposing common room.,drops into the water.\n3811,lsmdc1027_Les_Miserables-6157,2860,Someone chases after them as they run along a colonnade. Someone,Someone chases after them as they run along a colonnade.,Someone,gold,destroys the wooden block.,\"steps toward a man outside, and catches up with him from every angle.\",looks across the slaves at someone.,climbs over a stone balustrade and lifts someone over.\n3812,lsmdc1027_Les_Miserables-6157,2862,\"Someone pulls down a rope dangling from the side of a building. As someone searches along dark alleyways, someone\",Someone pulls down a rope dangling from the side of a building.,\"As someone searches along dark alleyways, someone\",gold,makes his way through the river.,leans towards the digging ship.,shoots the shadow through the window.,climbs to the top of a wall.\n3813,lsmdc3083_TITANIC2-39188,18487,\"Someone dances with a blond woman, someone. He\",\"Someone dances with a blond woman, someone.\",He,gold,knocks on the headset as it glides off.,knocks on the door.,emerges over a long - sleeved shirt.,places his hand on her back.\n3814,lsmdc3083_TITANIC2-39188,18510,\"As someone hold on to her dress, someone slowly lifts her heels and rises onto her toes. Someone\",\"As someone hold on to her dress, someone slowly lifts her heels and rises onto her toes.\",Someone,gold,backs out of the living room's metal window along the thin opening leading toward the balcony.,gazes down as someone stands on her tiptoes.,'s hand sweeps her down and into the wings.,wrenches his jacket off her shoulders and pounds her fist into his face.\n3815,lsmdc3083_TITANIC2-39188,18484,\"On a third class deck, a man pounds a drum. Another\",\"On a third class deck, a man pounds a drum.\",Another,gold,muscle in front of an older player is shown.,raises a hand to his mouth and walks away.,plays a set of pipes.,player jumps off to the back of his pit.\n3816,lsmdc3083_TITANIC2-39188,18498,\"Watching him, someone pulls off her shoes. Someone\",\"Watching him, someone pulls off her shoes.\",Someone,gold,\"smiles, claps his hands, then continues dancing.\",puts the gun beside two cards.,sit on the edge.,runs down another nimrod above a passing sidewalk.\n3817,lsmdc3083_TITANIC2-39188,18485,Another plays a set of pipes. Two men,Another plays a set of pipes.,Two men,gold,stand up on the side watching them talk.,hold up the kites in the air and talk while talking.,swing each other around on a platform as couples dance.,are playing a drum set with drummers.\n3818,lsmdc3083_TITANIC2-39188,18507,\"A bearded man knocks into someone, who spills his beer on someone. Someone\",\"A bearded man knocks into someone, who spills his beer on someone.\",Someone,gold,shakes someone's hand.,\"jerks his head at someone, and someone grins.\",takes her dress off.,slams someone's fist to the table top.\n3819,lsmdc3083_TITANIC2-39188,18512,He spies someone holding someone in his arms. Couples,He spies someone holding someone in his arms.,Couples,gold,hang on a sidewalk below.,hold hands as they dance in a line through the crowded room.,go limp as they curl someone against an alien.,climb out of the boat.\n3820,lsmdc3083_TITANIC2-39188,18483,\"Beneath the skylight, someone stands on the landing and faces the clock. Someone\",\"Beneath the skylight, someone stands on the landing and faces the clock.\",Someone,gold,makes his way up the steps of the courtyard and goes over.,takes a deep breath and kisses it warmly.,peers down at the tree.,steps to the bottom of the staircase.\n3821,lsmdc3083_TITANIC2-39188,18488,\"Someone, now with his tie removed and sleeves rolled up. Some people\",\"Someone, now with his tie removed and sleeves rolled up.\",Some people,gold,walk onto a balcony.,clap their hands in time to the music.,are in ikea and hugging daybreak.,\"are sitting on the side of the bed, sitting playing a table.\"\n3822,lsmdc3083_TITANIC2-39188,18490,Someone sits at a table with blond someone as someone sets down several glasses of beer. Someone,Someone sits at a table with blond someone as someone sets down several glasses of beer.,Someone,gold,spots the view of a pretty blonde girl in a caricature studio.,puts his beer glass in someone's and puts it in one of the cups of drinks.,notices her hair around her waist then hair.,\"sets a beer in front of someone, who takes a sip.\"\n3823,lsmdc3083_TITANIC2-39188,18504,\"Someone steps up to their table, and reaching over someone, grabs two glasses of beer. He\",\"Someone steps up to their table, and reaching over someone, grabs two glasses of beer.\",He,gold,\"be kind later, apartment secretary, waiting.\",turns the side wheel off the machine.,spits on the parapet for a few seconds.,\"hands one glass to someone, then drinks from his own.\"\n3824,lsmdc3083_TITANIC2-39188,18506,Someone watches someone gulp down most of her beer. A bearded man,Someone watches someone gulp down most of her beer.,A bearded man,gold,\"knocks into someone, who spills his beer on someone.\",sips from a martini glass as he shuffles back.,is wearing a hoodie and mirrored glasses.,smokes a cigarette in a living room.\n3825,lsmdc3083_TITANIC2-39188,18514,\"The line of dancers snakes through the clapping, drinking crowd. The next day, someone and someone\",\"The line of dancers snakes through the clapping, drinking crowd.\",\"The next day, someone and someone\",gold,lie on someone's bed beside tyler on a big bed.,stroll toward the library.,ride out across the stage while a young girl steps deeper admiring a dark figure - their respective animatedly.,eat breakfast at a table in the private promenade.\n3826,lsmdc3083_TITANIC2-39188,18509,\"She blows out smoke, then hands someone the hem of her skirt. As someone hold on to her dress, someone\",\"She blows out smoke, then hands someone the hem of her skirt.\",\"As someone hold on to her dress, someone\",gold,slowly lifts her heels and rises onto her toes.,waits by her sisters at a coffee shop with a couple fingers pointed out its mouth.,takes off her cloak to form a perfect circle.,steps into a chic street dress on the end of a street.\n3827,lsmdc3083_TITANIC2-39188,18495,Someone and someone climb onto the platform then dance. Someone,Someone and someone climb onto the platform then dance.,Someone,gold,dance in the air as the swing fades.,plunges his flashlight down and hurriedly jumps into someone's coat.,escorts someone away after him.,pulls someone onto the platform.\n3828,lsmdc3083_TITANIC2-39188,18492,\"Someone claps her hands as she watches someone twirl someone. Nearby, a man\",Someone claps her hands as she watches someone twirl someone.,\"Nearby, a man\",gold,runs up beside him.,falls to the floor.,throws a horned animal.,runs down the phone.\n3829,lsmdc3083_TITANIC2-39188,18503,Someone and someone arm wrestle as others cheer them on. Someone,Someone and someone arm wrestle as others cheer them on.,Someone,gold,faces the witch and other boys.,clenches his fist and holds the hand to someone.,\"steps up to their table, and reaching over someone, grabs two glasses of beer.\",\"lifts someone off his feet, knocking him against a wall.\"\n3830,lsmdc3083_TITANIC2-39188,18481,\"Someone unfolds the note and reads it. As someone stares at her daughter, someone\",Someone unfolds the note and reads it.,\"As someone stares at her daughter, someone\",gold,\"kisses her hand, then gives her the pen.\",enters the dressing room where people were at the sewing.,gazes across the room toward the door.,walks over and leans on the toddler.\n3831,lsmdc3083_TITANIC2-39188,18505,\"He hands one glass to someone, then drinks from his own. Someone\",\"He hands one glass to someone, then drinks from his own.\",Someone,gold,does hand to get someone 'excited attention.,\"scrutinizes the keg, removes the left tire and tosses it aside.\",watches someone gulp down most of her beer.,\"turns at the archives she hefts a revolver, slices of the trunk which holds loose on a branch.\"\n3832,lsmdc3083_TITANIC2-39188,18499,\"When he stops, someone dances. They\",\"When he stops, someone dances.\",They,gold,continue moving in the opposite direction.,walk in a line.,of the warm cream on his face and he smiles as he finishes his drink.,link arms and dance in a circle.\n3833,lsmdc3083_TITANIC2-39188,18478,Someone lobs the matches back to someone. He,Someone lobs the matches back to someone.,He,gold,\"slips them into his pocket, then approaches someone.\",thinks about the figurine man.,hands her his breakfast.,turns the tiller once.\n3834,lsmdc3083_TITANIC2-39188,18491,\"Someone sets a beer in front of someone, who takes a sip. Someone\",\"Someone sets a beer in front of someone, who takes a sip.\",Someone,gold,\"cringes, then stares at the container pressed to his temple.\",claps her hands as she watches someone twirl someone.,\"pours a martini, then watches in horror.\",raises the goblet to his glass.\n3835,lsmdc3083_TITANIC2-39188,18493,\"Nearby, a man falls to the floor. Two other men\",\"Nearby, a man falls to the floor.\",Two other men,gold,help him up while another hands the man his drink.,wearing white are ironing knee.,pick up tokens and both smash the double bodies.,levitates off and look inside them.\n3836,lsmdc3083_TITANIC2-39188,18480,\"He turns and walks off, glancing back at her over his shoulder. Someone\",\"He turns and walks off, glancing back at her over his shoulder.\",Someone,gold,leads one back of the house and approaches the cottage.,\"stalks off, shifting her eyes into the castle.\",unfolds the note and reads it.,\"takes him back into the train, avoiding his gaze.\"\n3837,lsmdc3083_TITANIC2-39188,18494,Someone and someone dance through the crowd of other dancers. Someone and someone,Someone and someone dance through the crowd of other dancers.,Someone and someone,gold,climb onto the platform then dance.,run off along the railing and down the sidewalk.,get on the stage and they carry her out.,trudge on the corridor beat stage and sing in a soft bubble.\n3838,lsmdc3083_TITANIC2-39188,18502,Others talk or smoke cigars. Someone and someone arm,Others talk or smoke cigars.,Someone and someone arm,gold,wrestle as others cheer them on.,nods in one of the courtyard windows - - the royal family are watching from someone's cottage.,face a group of jammed dashing bags.,sit on either side of themselves.\n3839,lsmdc3083_TITANIC2-39188,18479,\"Kissing her hand, someone slips a note to someone. He\",\"Kissing her hand, someone slips a note to someone.\",He,gold,\"away from them, he quickly spits.\",\"turns and walks off, glancing back at her over his shoulder.\",holds a row of it marked on the back.,his fingers up someone points to someone's chin.\n3840,lsmdc3083_TITANIC2-39188,18513,Someone grabs someone's hand and she grabs someone's. The line of dancers,Someone grabs someone's hand and she grabs someone's.,The line of dancers,gold,\"snakes through the clapping, drinking crowd.\",walk dead on front of the mountains and bend down.,\"are ladies, swinging back and forth in a huge stage.\",swipes at him they beat two of the boys.\n3841,lsmdc3083_TITANIC2-39188,18501,\"Someone and someone hold hands, then face each other and spin faster and faster. Others\",\"Someone and someone hold hands, then face each other and spin faster and faster.\",Others,gold,\"finish their heads, then emerge into the pit, taking a crowded leap into the water.\",\"struggle to vault over the set into sustained shattering, and all their bodies looks unusual.\",talk or smoke cigars.,\"rapidly, someone falls back into the ring.\"\n3842,lsmdc3083_TITANIC2-39188,18511,\"Someone's manservant, someone, descends halfway down a staircase and peers around the room. He\",\"Someone's manservant, someone, descends halfway down a staircase and peers around the room.\",He,gold,\"glances at the ceiling, which stands motionless on the shining surface.\",raises his fist and knocks on the door - screen door.,steps onto the porch and pulls down the necklace with a crowbar.,spies someone holding someone in his arms.\n3843,lsmdc3083_TITANIC2-39188,18489,Some people clap their hands in time to the music. Someone,Some people clap their hands in time to the music.,Someone,gold,\"recognition, a sign seemed to attract fans immediately into a large opaque door.\",sits at a table with blond someone as someone sets down several glasses of beer.,the army of members all clap and take in their bellies.,\"of the evil band holds their hands up, their mascot falls on the city police.\"\n3844,lsmdc3083_TITANIC2-39188,18486,Two men swing each other around on a platform as couples dance. Someone,Two men swing each other around on a platform as couples dance.,Someone,gold,sumo move around a keyboard.,\", a group of guys stare at the monkey ball as they quickly walk towards the camera.\",\", their figures on a basketball stage.\",\"dances with a blond woman, someone.\"\n3845,lsmdc3083_TITANIC2-39188,18482,\"As someone stares at her daughter, someone gazes across the room toward the door. Beneath the skylight, someone\",\"As someone stares at her daughter, someone gazes across the room toward the door.\",\"Beneath the skylight, someone\",gold,sets a large wooden crate in front of him and takes the organ key.,stands on the landing and faces the clock.,rubs her shivering son as she walks to someone station and checks her finger.,wears a protective tie over her nightgown.\n3846,lsmdc3083_TITANIC2-39188,18500,Other couples dance around them. Someone and someone,Other couples dance around them.,Someone and someone,gold,peruse another dancer standing at the head of the stage.,appear apart and descend from the stairs.,\"hold hands, then face each other and spin faster and faster.\",step forward to sway their dance.\n3847,lsmdc3083_TITANIC2-39188,18497,\"He lets go of her hand then performs an intricate dance. Watching him, someone\",He lets go of her hand then performs an intricate dance.,\"Watching him, someone\",gold,pulls off her shoes.,slinks down on a chair framed by the ceiling.,lies down under a narrow wave.,sleeps soundly wrapped in a plastic sheet.\n3848,lsmdc3083_TITANIC2-39188,18508,Someone slams someone's fist to the table top. Someone,Someone slams someone's fist to the table top.,Someone,gold,pulls someone's cigarette from his mouth.,gives it a high five.,leans back into the cab truck which is wrapped in white.,\"leaps out of his car, tying a collar around his neck.\"\n3849,anetv_CrnNXizH0IQ,9276,The man unhooks the side followed by sanding it down on the side. The man then,The man unhooks the side followed by sanding it down on the side.,The man then,gold,takes a screwdriver and drills in holes while stopping to sand it and show it to the camera.,grabs an enamel paper on and solves the puzzle to other men.,raises the paddle up to demonstrate the fine dried liquid and wets the wood again.,inserts the jack on the beam while the camera focuses on the closing.\n3850,anetv_CrnNXizH0IQ,9275,A man is seen speaking to the camera while pointing to various tools and wooden objects in front of him. The man,A man is seen speaking to the camera while pointing to various tools and wooden objects in front of him.,The man,gold,begins working out on his bike and ends by waving over the air to people.,takes off the bike while continuing to break downstream.,proceeds to mow the lawn with a snow brush.,unhooks the side followed by sanding it down on the side.\n3851,anetv_A0H6JceDqlg,87,\"The man bounces a ball and shows how to move the body, then he serves a ball. The man\",\"The man bounces a ball and shows how to move the body, then he serves a ball.\",The man,gold,puts the ball in his hand then takes another match up.,throw the tennis ball into a room.,bends three times to adjust the ball and bends over as he talks.,continues talking in the tennis court.\n3852,anetv_I4uZkBmE5eM,8198,He starts to play the drums with his hands. He,He starts to play the drums with his hands.,He,gold,stops playing and stands up.,continues to exercise on the mat.,continues to play while the coach in the background.,begins playing a song on the keyboard.\n3853,anetv_I4uZkBmE5eM,10297,An old man with gray hair is playing bongo drums. The man,An old man with gray hair is playing bongo drums.,The man,gold,is looking at the camera occasionally as he plays the drum.,moves his hands on the tam - tam.,plays the guitar and plays a drum around.,is playing the harmonica and begins playing back and forth.\n3854,anetv_I4uZkBmE5eM,8197,A man is sitting behind two drums. He,A man is sitting behind two drums.,He,gold,is playing a large drum set.,is talking to the camera while standing on the large lawn.,starts to play the drums with his hands.,combines a large pyramid.\n3855,anetv_PzeM5iOLQnk,11782,The man puts the handlebars back on. The man,The man puts the handlebars back on.,The man,gold,pull all the dirt out of the tires.,begins sharpening some of the wood.,moves to the front of the bike to adjust the handlebars.,puts the hubcap back on the bike.\n3856,anetv_PzeM5iOLQnk,11780,The man points at a bike. The man,The man points at a bike.,The man,gold,jumps onto the inside piece of jack.,takes off the handlebars on a bike and adjusts them.,pulls the man down.,brings his finger to the sides and puts it in his mouth.\n3857,anetv_PzeM5iOLQnk,11781,The man takes off the handlebars on a bike and adjusts them. The man,The man takes off the handlebars on a bike and adjusts them.,The man,gold,moves the pedal all along the area and rubs it on.,removes the tire on the bike and wraps it in place.,puts the handlebars back on.,puts down his bike and puts his hands up.\n3858,anetv_PzeM5iOLQnk,11784,The man then finishes tightening the bolt on the handlebar. The man,The man then finishes tightening the bolt on the handlebar.,The man,gold,pushes the person and trips at once.,steps back when finished.,continues giving the video begin.,adjusts the man doing abs.\n3859,anetv_PzeM5iOLQnk,11779,We see a man talking in a bike ship. the man,We see a man talking in a bike ship.,the man,gold,walks down the slope and then throws the man on a ride bike.,points at a bike.,dumps the tiles into a greased pot and puts a hammer in.,holds an object for the empty storage vehicle.\n3860,anetv_PzeM5iOLQnk,11783,The man moves to the front of the bike to adjust the handlebars. The man then,The man moves to the front of the bike to adjust the handlebars.,The man then,gold,finishes tightening the bolt on the handlebar.,picks up the bike and removes a tire.,gets out of the car to talk to the camera.,lifts up snowy stunts and resumes cleaning the floor.\n3861,lsmdc3045_LAND_OF_THE_LOST-21095,17062,\"Back in the cave, the Christmas lights sway over the peaceful canal. A fake alien arm\",\"Back in the cave, the Christmas lights sway over the peaceful canal.\",A fake alien arm,gold,pushes into its mother's arms and draws as someone blocks the view.,lands in the basement of a distant vessel.,sits in a booth in front of the light.,floats on the glassy water at the mouth of the cave.\n3862,lsmdc3045_LAND_OF_THE_LOST-21095,17069,Someone stands by a massive Viking ship with a crashed plane in its hull. Someone,Someone stands by a massive Viking ship with a crashed plane in its hull.,Someone,gold,gives her an encouraging nod and someone fumbles with passengers.,stares into the steaming cave.,leads the unconscious passengers onto a stretcher.,throws down his life jacket.\n3863,lsmdc3045_LAND_OF_THE_LOST-21095,17067,Splintered wood of a destroyed freestanding wall surrounds the door. Two large wooden oars,Splintered wood of a destroyed freestanding wall surrounds the door.,Two large wooden oars,gold,\"rise, their chests dappled with green water in a low breeze.\",sway as giant with a powerful crust.,rest at an angle on the sand.,rise over the snow in its wake.\n3864,lsmdc3045_LAND_OF_THE_LOST-21095,17061,\"As they plunge into a swirl of white water, they topple out of the raft and disappear into a bright blue light. Back in the cave, the Christmas lights\",\"As they plunge into a swirl of white water, they topple out of the raft and disappear into a bright blue light.\",\"Back in the cave, the Christmas lights\",gold,glides off with the sun - like creatures.,surrounds the group's grim mantle.,fly out if they're lying in the water.,sway over the peaceful canal.\n3865,lsmdc3045_LAND_OF_THE_LOST-21095,17066,\"Someone peers through a small window in a homey red door. Slowly opening it, she\",Someone peers through a small window in a homey red door.,\"Slowly opening it, she\",gold,finds a burning box inside.,sees someone in the office looking feverishly.,looks around and gapes.,sets it beside someone.\n3866,lsmdc3045_LAND_OF_THE_LOST-21095,17064,Someone lies with his headphones askew and his lips parted. An orange life jacket from the raft still,Someone lies with his headphones askew and his lips parted.,An orange life jacket from the raft still,gold,waters slowly accompanied by a row of rafts.,surges through the pages of the giant spaceship.,reflected in the model's armored suit.,sits on his shoulders.\n3867,lsmdc3045_LAND_OF_THE_LOST-21095,17065,An orange life jacket from the raft still sits on his shoulders. He,An orange life jacket from the raft still sits on his shoulders.,He,gold,spins to see the new guy.,\"bends into the water, peering up at the canvas above his eye.\",stalks into a spacious old quarters are white.,opens his eyes and blinks.\n3868,anetv_BFXSk5F0E_w,15000,\"A woman speaks to the camera, then it cuts to a little boy using a hula hoop. The woman\",\"A woman speaks to the camera, then it cuts to a little boy using a hula hoop.\",The woman,gold,juggles one dog on the swing.,is still holding a few drinks and then slowly bows her head then begins to dance.,shows colored tape used to wrap a hose around and create the tube herself.,displays a funny hairstyle presented while the camera left and close.\n3869,anetv_BFXSk5F0E_w,15001,The woman shows colored tape used to wrap a hose around and create the tube herself. She,The woman shows colored tape used to wrap a hose around and create the tube herself.,She,gold,removes his unused red jacket.,clips the blade of this woman's piercing.,\"shows off the final product, then the boy using the hula hoop again.\",stand on the bar and talk about cricket.\n3870,lsmdc3016_CHASING_MAVERICKS-6229,17655,\"Coming out of the shed, he gazes after someone. Turning, he\",\"Coming out of the shed, he gazes after someone.\",\"Turning, he\",gold,\"notices someone's car and rests her head on his, and holds her gaze and then drops her face next to it.\",finds his wife watching from the front door of their home.,heads back toward the lodge with a resolute expression.,glances over the waterside path and finds himself staring at a woman closing behind him.\n3871,lsmdc3016_CHASING_MAVERICKS-6229,17656,\"Turning, he finds his wife watching from the front door of their home. As she slips inside, he\",\"Turning, he finds his wife watching from the front door of their home.\",\"As she slips inside, he\",gold,glances at someone who wears a silk silk dress.,steps out with a tight smile.,follows her to a baby's nursery.,flips through the top page of his book.\n3872,lsmdc3016_CHASING_MAVERICKS-6229,17653,He gathers up some tools. Someone,He gathers up some tools.,Someone,gold,stares up at him earnestly.,maintenance on the darts and takes as something hopelessly in size.,shovels the smell around the car and puts the next bike on top of the car.,advertises the work well.\n3873,anetv_enASD1KDX24,18343,A young lady is standing in the yard in a grey shirt with two tubes attached to her breast and a black book bag. She then,A young lady is standing in the yard in a grey shirt with two tubes attached to her breast and a black book bag.,She then,gold,walks to the open door to hug again.,drops the rake and begins talking about the bag hanging down from her shoulder.,goes to a sand bucket to grab the water to the side.,rides a bicycle down a dirt road forward the grass and passing a series of large hills.\n3874,anetv_enASD1KDX24,18344,\"She then drops the rake and begins talking about the bag hanging down from her shoulder. After she is finished, she\",She then drops the rake and begins talking about the bag hanging down from her shoulder.,\"After she is finished, she\",gold,picks up potatoes and gets it off the bench.,grabs the rake and continues piling up the leaves.,picks up contact bags and signs away.,continues decorating with the scraper while holding the mower.\n3875,anetv_enASD1KDX24,3578,A woman is raking leaves in her yard. She,A woman is raking leaves in her yard.,She,gold,jumps off of a rake and grabs a snowy seeds in an orange plastic cut grass.,throws frisbees and leaves around a bit of the dog.,is using a large rake to cut the leaves.,puts a black bag over her shoulder.\n3876,anetv_enASD1KDX24,3579,She puts a black bag over her shoulder. She,She puts a black bag over her shoulder.,She,gold,continues raking her yard.,laughs and furrows her brow.,closes her eyes tightly.,presses it behind him.\n3877,anetv_nuEK3POl9jA,13323,\"At the 2008 Olympics, a man prepares to lift a loaded barbell. He\",\"At the 2008 Olympics, a man prepares to lift a loaded barbell.\",He,gold,\"bends down and works his way up with great effort, finally lifting the barbell over his head.\",takes a leap into the woods.,lifts the weight from his head.,lifts a weight as he throws it over and over it.\n3878,anetv_nuEK3POl9jA,13325,He drops the weights and they crash to the ground. He celebrates and we,He drops the weights and they crash to the ground.,He celebrates and we,gold,see the replay of the pole returning.,see the dark yellow tank above him.,see two men covered in sand that are placed in an event signal.,see that the olympian has set a record.\n3879,anetv_nuEK3POl9jA,13324,\"He bends down and works his way up with great effort, finally lifting the barbell over his head. He drops the weights and they\",\"He bends down and works his way up with great effort, finally lifting the barbell over his head.\",He drops the weights and they,gold,\"come on the knees behind him, head first.\",head over the length of the bars as he finished describing his actions.,watch your operating matters.,crash to the ground.\n3880,anetv_XIMi2oydVB8,9023,A picture of girls in front of the camera leads into a clip of one pole volting over a bar and performing various exercises around a gym. The girls,A picture of girls in front of the camera leads into a clip of one pole volting over a bar and performing various exercises around a gym.,The girls,gold,performs in several impressive poses as well as ballerina tricks.,continuing to move one bar as well as peek up and ends by a text shown on the screen.,continue to exercise with one another and ends with them jumping on one another and more pictures.,continue their routine with one another and end with one attempting to jump off in the end.\n3881,anetv_MIAhrxkYadk,9822,The woman interacts with a man in the salon. The man and woman,The woman interacts with a man in the salon.,The man and woman,gold,look at pictures of hairstyles together.,continue dancing to the camera in the foreground and a man is looking down.,\", a woman lean on the man's shoulders, then fence hand up in the air.\",begin from the water lifting weights.\n3882,anetv_MIAhrxkYadk,9823,Scenes of the woman with her hair being cut and styled are shown. The man and woman,Scenes of the woman with her hair being cut and styled are shown.,The man and woman,gold,are then shown snowboarding down the hill on their cutting blades.,interact as they examine her new style.,put ornaments on the house.,pose in the bathroom with the camera.\n3883,anetv_MIAhrxkYadk,9821,A woman walks down a street an into a salon. The woman,A woman walks down a street an into a salon.,The woman,gold,pauses for a moment to make the mixture and put it in the bin and repair it.,places her hair down in a ponytail on her belly.,pushes out a jar of paint.,interacts with a man in the salon.\n3884,anetv_MIAhrxkYadk,9820,Hair styling tools are shown in closeup. A woman,Hair styling tools are shown in closeup.,A woman,gold,is piercing the scalp with a rag.,is wiping her hair after curling.,walks down a street an into a salon.,is applying her nails and showing a different lotion.\n3885,anetv_9vqOA8KVcME,11384,We see the lady put lotion on her face and then hold a small bottle of serum she puts on her face. We,We see the lady put lotion on her face and then hold a small bottle of serum she puts on her face.,We,gold,see the curling product.,see teh lady with makeup on talking to the camera.,see the man talking next.,see someone use her hand to apply color to her cheeks.\n3886,anetv_9vqOA8KVcME,11383,The lady holds up a bottle of lotion. We,The lady holds up a bottle of lotion.,We,gold,see the ending screen.,see the lady blow drying her hair.,see the lady waxing the truck.,see the lady put lotion on her face and then hold a small bottle of serum she puts on her face.\n3887,anetv_9vqOA8KVcME,11382,We see the lady hold up bottle of witch hazel and a cotton pad and talks. The lady,We see the lady hold up bottle of witch hazel and a cotton pad and talks.,The lady,gold,\"styles her nails, slapping, and folds them together.\",blows the drinks in pretty gulp.,holds a stuffed paw with a black liquid that talks in the camera.,holds up a bottle of lotion.\n3888,anetv_9vqOA8KVcME,11381,A lady talks to the camera. We,A lady talks to the camera.,We,gold,see the lady hold up bottle of witch hazel and a cotton pad and talks.,see a lady in a news cart.,see the painted ending screen.,see the couples in the room.\n3889,anetv_Mkljhl3D9-Q,6529,The man adds broth to the pot. The man,The man adds broth to the pot.,The man,gold,boils pasta in a separate pot.,adds the cream on the bar.,puts the egg on the pot.,\"adds ingredients to a pot and adds sugar, oil and oil.\"\n3890,anetv_Mkljhl3D9-Q,6530,The man boils pasta in a separate pot. The women,The man boils pasta in a separate pot.,The women,gold,\"eat the salt, then air a dish coupled.\",gather around a pot to see the pasta.,grab the yellow butter from the pan then add some more eggs.,boils pasta and crackers and mixes more ingredients on the pot.\n3891,anetv_Mkljhl3D9-Q,6533,The man adds the pasta to the plate. The women,The man adds the pasta to the plate.,The women,gold,puts all the ingredients in a glass.,hands the plate to a bag.,shake hands and start slicing the tomato.,try the pasta dish.\n3892,anetv_Mkljhl3D9-Q,6537,The women cook the dish that the man had just taught them to make. The man,The women cook the dish that the man had just taught them to make.,The man,gold,helps them and gives them pointers.,put an egg on a lazy fridge.,and the two man are wrapping the dinner together.,puts the cookies on the box and begins cycling in.\n3893,anetv_Mkljhl3D9-Q,6527,\"The man adds oil, onions, garlic, and peppers to a pot. The man\",\"The man adds oil, onions, garlic, and peppers to a pot.\",The man,gold,dips the pan into a mixer and tastes more ingredients.,adds gasoline on the fifth the vegetables.,adds clams to the pot.,lifts the can and boils oil in the pan.\n3894,anetv_Mkljhl3D9-Q,6534,The women try the pasta dish. Everyone,The women try the pasta dish.,Everyone,gold,laughs and seems happy.,tenses as they talk.,water bottles to the dishwasher.,gathers and gets put onto a yellow plate.\n3895,anetv_Mkljhl3D9-Q,6528,The man adds clams to the pot. The man,The man adds clams to the pot.,The man,gold,\"puts dishes in a chair, then adds salt, oil and salt, salt and sugar.\",\"pour noodles on the lettuce, puts the sandwich in the pot.\",adds broth to the pot.,chops wood before mixing it pan around the stove.\n3896,anetv_Mkljhl3D9-Q,6538,The man helps them and gives them pointers. The women,The man helps them and gives them pointers.,The women,gold,let go of their hands and turns off the snow.,lifts the plate to the man then gives a straddle look.,put soap in their shoes.,look anxious as they try to cook.\n3897,anetv_Mkljhl3D9-Q,6526,The man instructs four women on cooking. The man,The man instructs four women on cooking.,The man,gold,shows the younger woman how to cut pumpkins on larger pumpkin.,picks up an empty bottle and lifts it in half.,\"adds oil, onions, garlic, and peppers to a pot.\",enjoys while making a meal.\n3898,anetv_Mkljhl3D9-Q,6531,The women gather around a pot to see the pasta. The man,The women gather around a pot to see the pasta.,The man,gold,finishes the sauce and pours it in a pot.,mixes the ingredients together into a bowl.,boils to salad while looking to the camera.,mixes muffin cookies in a bowl and plays in the pot.\n3899,anetv_Mkljhl3D9-Q,6539,The women look anxious as they try to cook. The waiters,The women look anxious as they try to cook.,The waiters,gold,shake hands and makes another bite of a cake.,\"serve food from the audience, and clink.\",start serving the plates.,\"stop and turn, then slowly whistles the larger anymore area.\"\n3900,anetv_Mkljhl3D9-Q,6532,The man adds the pasta. The man,The man adds the pasta.,The man,gold,adds pasta and salt.,pours in oil in the thin pan.,adds the pasta to the plate.,places a flower on the dish.\n3901,anetv_Mkljhl3D9-Q,6535,Everyone laughs and seems happy. The man,Everyone laughs and seems happy.,The man,gold,looks like someone who is pinning down before a blanket.,starts calling out tickets.,looks at that and walking towards the statue.,reaches through the glasses.\n3902,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18321,\"Someone dreams of someone threatening the wand maker, someone. He\",\"Someone dreams of someone threatening the wand maker, someone.\",He,gold,tilts his head very slightly.,wakes from his dream.,holds it upside down.,grabs an envelope from someone.\n3903,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18328,He cautiously crosses the room towards a door in the corner. Someone,He cautiously crosses the room towards a door in the corner.,Someone,gold,yanks it open revealing house elf.,follows someone as he gets out and answers his cell.,peers through tall french windows and sees a shape of a large vast skies with thick dust swirling around.,picks up his phone and holds out the phone.\n3904,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18324,Inside the room he pulls a cord. Two skeletal bats,Inside the room he pulls a cord.,Two skeletal bats,gold,fly into the sky.,spring out and knock the ferrari down.,scuttle on the floor beside the front piano.,flap their bony wings.\n3905,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18329,Someone yanks it open revealing house elf. Someone,Someone yanks it open revealing house elf.,Someone,gold,walks awkwardly from view.,goes through a meeting room.,\"nods and cocks his head, then cautiously limps towards the greenhouse.\",holds up the replica.\n3906,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18323,\"On a sofa opposite, someone's still asleep. Someone\",\"On a sofa opposite, someone's still asleep.\",Someone,gold,sleeps on the floor between them.,\"slaps him reproachfully, then grabs his jacket.\",stares intently at it.,hits someone's empty bed on someone's bedside again.\n3907,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18316,\"Number 12, a tall terraced house, slides into position. They\",\"Number 12, a tall terraced house, slides into position.\",They,gold,continues to gaze out the room.,walk onto the roof again on the vault row dusty modern door.,enter the black family home.,\"the first time, he reaches a cluttered walkway marked the edge of boston state sheet.\"\n3908,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18325,On top of a chest of drawers he finds a dusty old book. Someone,On top of a chest of drawers he finds a dusty old book.,Someone,gold,\"stares at his colleague, then sees someone.\",walks in through another window and approaches a dining room.,looks back at the book.,emerges from the stairs.\n3909,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18322,He wakes from his dream. He,He wakes from his dream.,He,gold,does a double on the guy.,is lying fully clothed on a sofa.,turns around to face the dust.,keeps the onboard cycling bike how elevated between the bike.\n3910,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18317,They enter the Black family home. Lights,They enter the Black family home.,Lights,gold,come on in the hall.,decorate a christmas tree in the grass.,\", a woman stands beside a camera holding an umbrella.\",stretch out on the floor in the black shape.\n3911,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93829,18318,Lights come on in the hall. They,Lights come on in the hall.,They,gold,exit through the barricade arch and onto a highway.,make it up onto the marble floor of the house.,\"walk across the street, up a dark street, and beyond it, across the road towards the black diner.\",close the front door.\n3912,anetv_CRNycmwvGXs,7363,A man is seen speaking to the camera and holding up a box. He,A man is seen speaking to the camera and holding up a box.,He,gold,opens the box and pulls out paper.,is playing a set of bagpipes between them.,holds up a drink and speaks to the camera.,begins speaking to the camera while still speaking to the camera.\n3913,anetv_CRNycmwvGXs,7364,He opens the box and pulls out paper. He,He opens the box and pulls out paper.,He,gold,folds it and hands it back.,\"answers, checking to see someone panic.\",takes a drink and continues holding up items and begins smoking a cigarette and holding up more paper.,is using a measuring tape to roll the tape with a piece of tape.\n3914,anetv_mXb1tduBEj8,13446,A man is seen speaking to the camera holding a volleyball and leads into shots of him hitting the ball. He,A man is seen speaking to the camera holding a volleyball and leads into shots of him hitting the ball.,He,gold,game in the end with one hands off taking the basket on his other.,continues all around the jack proper hitting the ball as well as his inside and the people hitting him.,continues by pushing the puck down a wooden lane while others hugging around him.,continues speaking to the camera while holding the ball and looking off into the distance.\n3915,anetv_-1IBHYS3L-Y,7341,\"Then, the man writes over the snow covering the window of a car, and a woman wearing winter clothes smiles. Then, the man\",\"Then, the man writes over the snow covering the window of a car, and a woman wearing winter clothes smiles.\",\"Then, the man\",gold,cuts some wrapped buttons and then sit a top collection on the sheet.,takes a flare with the car wash.,puts a layer on the window of the car and keep vacuuming the feet.,continues removing the snow on his car.\n3916,anetv_SaBcTNvRA6g,904,A woman is seen showing off a glass of honey. She,A woman is seen showing off a glass of honey.,She,gold,shows off the bottle of honey as well as a bowl of water and a towel.,starts smoking a cigarette while still speaking to the camera.,begins braiding the complex woman's hair with a brush.,takes some shots and pours it into a container.\n3917,anetv_SaBcTNvRA6g,905,She shows off the bottle of honey as well as a bowl of water and a towel. She,She shows off the bottle of honey as well as a bowl of water and a towel.,She,gold,shows her hair pulled back.,mixes several ingredients in a bowl and transitions into a bowl.,looks at the screen about the business.,rubs her eyes on the polish.\n3918,anetv_SaBcTNvRA6g,906,She shows her hair pulled back. She,She shows her hair pulled back.,She,gold,tosses it across the field.,takes the contact lens inside.,opens the bottle of honey and lathers it all over her face.,sucks the hair back into her mouth and head down.\n3919,anetv_SaBcTNvRA6g,910,\"While she waits, she plays some instruments and with her cat. Finally, she\",\"While she waits, she plays some instruments and with her cat.\",\"Finally, she\",gold,\"runs and walks away, then she puts the flute down and picks up the instrument.\",rinses her face with water and dries her face off with a towel.,moves her finger nails as she dances rhythmically.,lets go of it and continues wagging its tail.\n3920,anetv_SaBcTNvRA6g,909,\"She returns to lathering her face and waits in anticipation. While she waits, she\",She returns to lathering her face and waits in anticipation.,\"While she waits, she\",gold,plays some instruments and with her cat.,transforms back to her makeup and returns to the doorway.,takes the shot before goes.,checks about the riders possible.\n3921,anetv_SaBcTNvRA6g,908,She holds up a cat. She,She holds up a cat.,She,gold,returns to lathering her face and waits in anticipation.,removes the scissors from her hair.,swings the stick against the axe and shoots it.,lifts a hatch in front of the toddler.\n3922,anetv_o8wdvkauJQQ,18866,People workout on a fitness machine pulling a strings on a rod and going back and forth. A man,People workout on a fitness machine pulling a strings on a rod and going back and forth.,A man,gold,comes out of a bathroom and lays down on a mat.,holds electric tape here and removes the handle bars to make.,folds a fitness machine in a gym.,holds up the hand curler on the puma machine and picks up a bobby pin from the tank.\n3923,anetv_o8wdvkauJQQ,18867,\"A man folds a fitness machine in a gym. Then, a man\",A man folds a fitness machine in a gym.,\"Then, a man\",gold,jumps on the beam using the exercise bike.,make workouts in a fitness machine.,grabs a blue bar and places a knife against the wall with a elongated tool.,comes and helps to talk with various weight.\n3924,anetv_E2NKQZNMAO0,1736,Sun is going out in a presentation with chinese characters. a lot o men,Sun is going out in a presentation with chinese characters.,a lot o men,gold,are in an open field practicing some kung fu movements outside a temple.,are sitting outside the playing room.,are gathered at the top of a cup with two hands standing in front of it.,are in scene behind the large crowd as they are playing pictures of a woman.\n3925,anetv_E2NKQZNMAO0,1739,Men are in a room in the middle of a formation f man holding poles and throwing at them. two men,Men are in a room in the middle of a formation f man holding poles and throwing at them.,two men,gold,dismount and start jump roping as they bungee jump in the sand.,\"start wrestling in a ring, fighting the other sumo wrestling.\",are fighting with swords in an open area.,are holding their knees to fight as they dance and interviews people take pictures on the fencing competition.\n3926,anetv_E2NKQZNMAO0,1737,A lot o men are in an open field practicing some kung fu movements outside a temple. men,A lot o men are in an open field practicing some kung fu movements outside a temple.,men,gold,are walking in the bottom of a dirt road.,are breaking bricks with their hands and doing handstands.,are standing in front of the polo.,are twirling the black dresses on the floor getting ready.\n3927,anetv_E2NKQZNMAO0,1064,A man in a black robe is doing martial arts before a crowd. Several clips,A man in a black robe is doing martial arts before a crowd.,Several clips,gold,are shown of martial artists.,are shown of people walking around the gym followed by more people dancing around playing the instruments.,are shown of people seen on the congas and ends with close ups of a man doing weather tricks.,are shown of viewers doing several dance moves.\n3928,anetv_E2NKQZNMAO0,1740,Two men are fighting with swords in an open area. men and women,Two men are fighting with swords in an open area.,men and women,gold,are seen running into the holding sticks.,are fighting in a open area inside a building.,are moving all in the back and shooting.,are doing tricks their targets.\n3929,anetv_E2NKQZNMAO0,1741,Men and women are fighting in a open area inside a building. man,Men and women are fighting in a open area inside a building.,man,gold,is standing on a table inside a beer pong.,is playing the women left and right.,is holding a woman on his arms and kissing her.,is sitting on a red rope in a car while a man in a white shirt is talking to them.\n3930,anetv_E2NKQZNMAO0,1738,Men are breaking bricks with their hands and doing handstands. men,Men are breaking bricks with their hands and doing handstands.,men,gold,are putting rope on their sides.,are in a room in the middle of a formation f man holding poles and throwing at them.,are kayaking behind a craft.,are walking a lakeside mowing the grass.\n3931,anetv_mZ6iJfRokTw,2192,He bungee jumps off the side of a bridge. He,He bungee jumps off the side of a bridge.,He,gold,jumps high on the climb up ramp.,is talking to the camera as he swings above the water.,jumps onto a ledge.,yanks down the wall and lays down on it.\n3932,anetv_mZ6iJfRokTw,2191,He then talks to a group of people while drinking an energy drink. He bungee,He then talks to a group of people while drinking an energy drink.,He bungee,gold,runs in slow motion.,jumps over the sea.,jumps off the side of a bridge.,moves with the handle and trying to make the level.\n3933,anetv_mZ6iJfRokTw,2190,A man is floating in the ocean water talking. He then,A man is floating in the ocean water talking.,He then,gold,uses richard parker to squeeze around him.,uses some rocks to wax down the ski.,paddles into the water to slide down the river into a water pipe.,talks to a group of people while drinking an energy drink.\n3934,anetv_ph7d2H77tks,19288,He takes a wrench and adjusts the seat. He,He takes a wrench and adjusts the seat.,He,gold,mounts the bicycle to test the seat position.,throws her into the air and loses the bike.,sees the image in a blue bottle.,screws the tires around the wheel and screws it out.\n3935,anetv_ph7d2H77tks,12508,The man tightens the bike. The man,The man tightens the bike.,The man,gold,hits a remote and screws up his tire.,returns to finish with the tree and then walks away again.,is pushing the bicycle.,sits on the bike.\n3936,anetv_ph7d2H77tks,12511,The man adjusts the handle bars. The man,The man adjusts the handle bars.,The man,gold,puts the new tire on.,sits on the bike again.,flips on the beam and beats the cymbals repeatedly.,adjusts the handle of the machine.\n3937,anetv_ph7d2H77tks,12509,The man sits on the bike. The man,The man sits on the bike.,The man,gold,\"then throws darts at a board, then spots a dart with the gopro.\",puts the tire back on the bike then hops up.,adjusts the seat and sits on the bike again.,rides the lawn mower.\n3938,anetv_ph7d2H77tks,12507,We see a man talking in a bike shop. We,We see a man talking in a bike shop.,We,gold,see stair corpses on the machine.,see the man adjust the bike seat.,watch a truck being driven before walking out.,see a man perform tricks with a dog.\n3939,anetv_ph7d2H77tks,12510,The man adjusts the seat and sits on the bike again. The man,The man adjusts the seat and sits on the bike again.,The man,gold,uses a tool to spray the bike.,adjusts the handle bars.,watches the man tartan on his feet.,sharpens his finger to the camera.\n3940,anetv_ph7d2H77tks,19287,A man stands behind a white bicycle in what appears to be a store and speaks to the camera. He,A man stands behind a white bicycle in what appears to be a store and speaks to the camera.,He,gold,is standing near the bar showing how to use it.,then leaves the man business at check on the fourth man.,pushes a large gift with a set up man leading them into a tuxedo.,takes a wrench and adjusts the seat.\n3941,anetv_3TsNntqwbSQ,1553,People are riding camels in the sand. Large pyramids,People are riding camels in the sand.,Large pyramids,gold,are shown in front of them.,are sitting on the horses track in an event stand.,walk in front of them.,are sitting on a camel.\n3942,anetv_3TsNntqwbSQ,6200,A view is shown of the sphinx and pyramid in Egypt. A group,A view is shown of the sphinx and pyramid in Egypt.,A group,gold,is shown leaning against a door.,is then shown playing on stage to watch.,is gathered in a gym and recording them in different ways.,is walking and riding camels to the site.\n3943,anetv_3TsNntqwbSQ,1554,Large pyramids are shown in front of them. A woman on the camel,Large pyramids are shown in front of them.,A woman on the camel,gold,is holding a camera.,rides alongside the camels.,begins to do flips to a camel.,stands up to someone.\n3944,anetv_3TsNntqwbSQ,6201,A group is walking and riding camels to the site. They,A group is walking and riding camels to the site.,They,gold,are looking at the pyramids as they ride.,share a different space and watch still images.,begin biking down a single hill.,are shown riding a snowboarding cart at different speeds.\n3945,lsmdc0001_American_Beauty-45526,10858,\"We are looking out through the kitchen window at the point where someone was just standing, but he is no longer there. His head suddenly jerks up and he\",\"We are looking out through the kitchen window at the point where someone was just standing, but he is no longer there.\",His head suddenly jerks up and he,gold,\"looks at us, as if he realizes he is being watched.\",keeps his eyes fixed on his herd as though he has about to say something else.,\"glances over his shoulder at the road over los angeles, looking through that scene, in back of the light as he gazes down\",moves to the edge of the couch and is lying harmlessly over the table.\n3946,lsmdc0001_American_Beauty-45526,10853,\"We are looking through greenhouse windows at people in the kitchen We can't hear what they are saying, but it's obvious it's not going well. Someone\",\"We are looking through greenhouse windows at people in the kitchen We can't hear what they are saying, but it's obvious it's not going well.\",Someone,gold,rests on the table with her legs facing each other and closes her eyes shut.,\"talk, pouring it out and sit it at him, takes a seat, and fumbles with the refrigerator, pointing coffee through again\",puts her plate in the dishwasher and leaves.,\"sits with someone inside the living room, looking at a photo of her shirt.\"\n3947,lsmdc0001_American_Beauty-45526,10851,\"Someone gets up and starts after someone, taking his plate with him. Someone\",\"Someone gets up and starts after someone, taking his plate with him.\",Someone,gold,stops only for a moment as he looks at the house.,watches as someone looks at the pool's ceiling.,\"stands at the sink, rinsing off her plate.\",\"sniffs his plate, and goes outside, slams the door down.\"\n3948,lsmdc0001_American_Beauty-45526,10857,\"Someone turns off the faucet. We are looking out through the kitchen window at the point where someone was just standing, but he\",Someone turns off the faucet.,\"We are looking out through the kitchen window at the point where someone was just standing, but he\",gold,moves slowly along a cascade and dashes into the dark house.,is not adding any time to it.,is n't behind them on the living room.,is no longer there.\n3949,lsmdc0001_American_Beauty-45526,10852,\"He is looking to her for a little help here, but she is too uncomfortable with this sudden intimacy to give him any. We are looking through greenhouse windows at people in the kitchen We can't hear what they are saying, but it\",\"He is looking to her for a little help here, but she is too uncomfortable with this sudden intimacy to give him any.\",\"We are looking through greenhouse windows at people in the kitchen We can't hear what they are saying, but it\",gold,'s a man at one point.,\"is not much there, not quite the bar.\",'s obvious it's not going well.,has a terrible quality.\n3950,lsmdc0001_American_Beauty-45526,10849,Someone notices someone looking at him critically. Someone,Someone notices someone looking at him critically.,Someone,gold,touches someone's brow in a frown.,\"slowly bends forward, lowering his arms with a grimace.\",looks at her as he turns to face someone.,\"is quiet, staring at his plate.\"\n3951,lsmdc0001_American_Beauty-45526,10850,\"Someone is quiet, staring at his plate. Someone\",\"Someone is quiet, staring at his plate.\",Someone,gold,is in view someone pacing in the center.,\"gets up and starts after someone, taking his plate with him.\",\"in the garden, someone says nothing.\",hurries back into the next room.\n3952,lsmdc0001_American_Beauty-45526,10855,\"Through the kitchen window, we see someone at the sink, rinsing off his plate, muttering to himself. Close on the face of someone,\",\"Through the kitchen window, we see someone at the sink, rinsing off his plate, muttering to himself.\",\"Close on the face of someone,\",gold,someone is looking up outside.,wmoan sinks towards her face.,illuminated by the screen of his digicam as he videotapes.,she walks with him.\n3953,lsmdc0001_American_Beauty-45526,10854,\"Someone puts her plate in the dishwasher and leaves. Through the kitchen window, we\",Someone puts her plate in the dishwasher and leaves.,\"Through the kitchen window, we\",gold,\"look up quickly to see the hum of a small, ghostly brick building.\",\"see someone at the sink, rinsing off his plate, muttering to himself.\",can see the windows lined on a block lit by a flickering camera.,see the steps gap in the window.\n3954,anetv_FuaxI8PkeHQ,8534,A young boy is seen sitting in a chair looking away with others walking by. The man then,A young boy is seen sitting in a chair looking away with others walking by.,The man then,gold,clips the boy pucks on the stage while other groups of athletes surround him and walk back several times.,begins walking down the lawn and pushing some wets and the garden floor.,\"begins moving around, dancing a routine and kicking off more train's tricks.\",takes a sip of a drink and makes a funny face.\n3955,lsmdc1009_Spider-Man3-76072,17381,Someone in his skintight red and blue webbed suit swings lively from thread to thread like a trapeze artist. More credits,Someone in his skintight red and blue webbed suit swings lively from thread to thread like a trapeze artist.,More credits,gold,appear on a shelves as they sleep together.,appear before their fists pressed up.,appear and blow away as if made of sand.,\"fold out, flat and out of place.\"\n3956,anetv_sByOncVAMqg,11855,\"She stands on the beam, then does several hand springs and flips. She\",\"She stands on the beam, then does several hand springs and flips.\",She,gold,\"moves around gracefully, dancing, dancing, landing on a mat all around the bars above.\",jumps off a beam and lets her fall onto the mat.,then jumps on the floor and then she finally jumps off the mat.,\"dismounts, raising her arms in the air.\"\n3957,anetv_sByOncVAMqg,11854,A gymnast mounts a low beam in a gym. She,A gymnast mounts a low beam in a gym.,She,gold,does a high dive and does some flips.,jumps using batons and flips in the air.,\"stands on the beam, then does several hand springs and flips.\",lands on a wall below jumps.\n3958,lsmdc1011_The_Help-78714,12690,\"Her mother weighs her words carefully. Looking at her handsome, regal looking mother, someone\",Her mother weighs her words carefully.,\"Looking at her handsome, regal looking mother, someone\",gold,approaches one of many plump women standing atop a cataleya honor cone.,shakes her head and touches his stomach.,\"nods in acknowledgement, but then lowers her eyes.\",hurries out of the room.\n3959,anetv_259K1wC2IMk,17736,A young boy is seen pulling a mop out of a bucket followed by him pushing the mop across the floor. The camera pans to a woman in the distance and the boy,A young boy is seen pulling a mop out of a bucket followed by him pushing the mop across the floor.,The camera pans to a woman in the distance and the boy,gold,begins washing the potato in the sink.,continues to watch as he speaks further to the camera.,continues to play with the dog.,continuing to push the mop along the floor.\n3960,anetv_43R60vMRook,10376,\"A red and white title screen appears with words in Spanish saying, Como Hacer! After, several images of different females appear and they are all hula hooping. A thin young woman with glasses thin stands in front of a white wall and\",\"A red and white title screen appears with words in Spanish saying, Como Hacer! After, several images of different females appear and they are all hula hooping.\",A thin young woman with glasses thin stands in front of a white wall and,gold,begins drinking a piece of sparkling paint.,begins demonstrating how to hula hoop.,begins using a hopscotch to secure it.,is seen talking to a woman dressed in black sitting on a beach.\n3961,anetv_43R60vMRook,3193,A woman is showing how to use a hula hoop. Several pictures,A woman is showing how to use a hula hoop.,Several pictures,gold,use a hula hoop and dance together while she hula hoop.,show the woman using the hula hoop in different poses.,of someone fighting with hula hoops are shown.,of different screws are shown demonstrating how to use the hoop.\n3962,anetv_43R60vMRook,10377,A thin young woman with glasses thin stands in front of a white wall and begins demonstrating how to hula hoop. She,A thin young woman with glasses thin stands in front of a white wall and begins demonstrating how to hula hoop.,She,gold,\"begins with two around her waist then they move to her neck, ankle, and wrist.\",demonstrates the technique with suppressed links.,turns the hula hoop and goes back to belly dancing.,regards the woman with various acts.\n3963,anetv_43R60vMRook,3194,Several pictures show the woman using the hula hoop in different poses. We,Several pictures show the woman using the hula hoop in different poses.,We,gold,pose with a hula hoop and when she does some makeup with the hula hoop.,retreat on and side dancing while still moving under some current.,\"return to the woman as she increases the number of hoops to two, then three.\",faces rests on a rock.\n3964,lsmdc3018_CINDERELLA_MAN-7678,235,She sits up and glances toward the door. Someone,She sits up and glances toward the door.,Someone,gold,opens the car door and pulls out a piece of torn saw.,looks down at her on his lap.,rolls down to join them.,enters and sets down his bag.\n3965,lsmdc3018_CINDERELLA_MAN-7678,234,\"Now, in their drab basement apartment, someone sits in an armchair sewing a shirt. She\",\"Now, in their drab basement apartment, someone sits in an armchair sewing a shirt.\",She,gold,holds a cat out on her own canvas.,rides up on the sofa.,sits up and glances toward the door.,holds a piece of paper.\n3966,lsmdc3018_CINDERELLA_MAN-7678,228,Someone nods with a meager smile. Someone,Someone nods with a meager smile.,Someone,gold,removes the torn pages of his manuscript.,takes his final notes.,gets into his car.,\"speaks softly, then shakes his head.\"\n3967,lsmdc3018_CINDERELLA_MAN-7678,231,\"Shifting on his feet, he works his jaw then swaggers past someone. The manager\",\"Shifting on his feet, he works his jaw then swaggers past someone.\",The manager,gold,\"stays put, staring somberly after the promoter.\",quickly takes his film.,\"smiles, snatches his earpiece and reads the hitch bear in his case.\",gets in next to him.\n3968,lsmdc3018_CINDERELLA_MAN-7678,229,Someone gets into his car. Someone,Someone gets into his car.,Someone,gold,watches the chauffeur driven car pull away.,leaves a taxi with someone as she speeds off.,takes down the only rucksack on her shoulders and opens it.,\"whacks someone in the face, then sets him down.\"\n3969,lsmdc3018_CINDERELLA_MAN-7678,238,As someone takes her in his embrace. They,As someone takes her in his embrace.,They,gold,\"stands, glancing helplessly as someone pushes to.\",they lock on their bumper as the truck does.,separate and gaze into each other's eyes.,kisses as they brush.\n3970,lsmdc3018_CINDERELLA_MAN-7678,236,Someone enters and sets down his bag. Someone,Someone enters and sets down his bag.,Someone,gold,gets to her feet and gazes attentively at her husband who approaches with a neutral expression on his face.,\"takes her hair out of her hands, gives her a hug and passes go to the girl.\",falls to the floor splintering the box splintering.,\"tightened the principal, he.\"\n3971,lsmdc3018_CINDERELLA_MAN-7678,232,\"The manager stays put, staring somberly after the promoter. Behind him, someone\",\"The manager stays put, staring somberly after the promoter.\",\"Behind him, someone\",gold,sees his score cards at a base and climbs out from a table in the service room.,unzips the back of the suit and starts to speak.,\"sits in a pew, talking.\",sidles through a turnstile and gives it an angry shove as he clears through.\n3972,lsmdc3018_CINDERELLA_MAN-7678,237,Someone gets to her feet and gazes attentively at her husband who approaches with a neutral expression on his face. As someone,Someone gets to her feet and gazes attentively at her husband who approaches with a neutral expression on his face.,As someone,gold,takes her in his embrace.,\"gets out, they arrive at someone's.\",faces his towering's friend.,\"eyes him resignedly, a couple of men exchange baskets.\"\n3973,lsmdc3018_CINDERELLA_MAN-7678,233,\"Behind him, someone sidles through a turnstile and gives it an angry shove as he clears through. Now, in their drab basement apartment, someone\",\"Behind him, someone sidles through a turnstile and gives it an angry shove as he clears through.\",\"Now, in their drab basement apartment, someone\",gold,stirs a palladium cream sundae in with an nibbling piece.,sits in an armchair sewing a shirt.,plummets forward.,hops out of an elevator.\n3974,lsmdc3018_CINDERELLA_MAN-7678,230,\"Someone watches the chauffeur driven car pull away. Shifting on his feet, he\",Someone watches the chauffeur driven car pull away.,\"Shifting on his feet, he\",gold,marches her to a stop.,careens out into the sunshine.,works his jaw then swaggers past someone.,\"gets to his feet and looks for it, staring at it.\"\n3975,anetv_Bh35Q9vNsSA,14487,\"Another couple appears and shows their reactions before the ladies come back and begin laughing. Finally, the man begins to play his instrument and they both\",Another couple appears and shows their reactions before the ladies come back and begin laughing.,\"Finally, the man begins to play his instrument and they both\",gold,begin fencing side by side.,continue laughing at him.,spin and flip on the floor.,continue playing pretty until the audience is still for the video.\n3976,anetv_Bh35Q9vNsSA,1486,\"A man talks and then plays the bagpipes on front two people sitting on a couch. Then, a woman\",A man talks and then plays the bagpipes on front two people sitting on a couch.,\"Then, a woman\",gold,plays on the stage and perform a news dance.,sing while the man plays the bagpipes.,play and watch the man come to the stairs.,sits in a tattoo salon chair next to the table with a shave.\n3977,anetv_Bh35Q9vNsSA,1485,A woman puts on a surprise when sitting on a couch. A man,A woman puts on a surprise when sitting on a couch.,A man,gold,spins and wraps a cord around the woman's neck.,joins him and reaches for a sheet of metal.,talks on the phone and turn while passing the news envelopes.,talks and then plays the bagpipes on front two people sitting on a couch.\n3978,anetv_Bh35Q9vNsSA,14486,Two women are sitting down on a couch watching a man who is standing in their living room with bag pipes. Another couple,Two women are sitting down on a couch watching a man who is standing in their living room with bag pipes.,Another couple,gold,appears and shows their reactions before the ladies come back and begin laughing.,\"stands together on a carpet, as the teacher begins playing a piece of drum.\",plays a croquet game.,laughs as two other elderly teens join him and spin him across the pool.\n3979,anetv_B92SbWzu8yI,13282,A young child is seen standing behind a set of drums and then begins playing the drums. The boys,A young child is seen standing behind a set of drums and then begins playing the drums.,The boys,gold,continue playing the drums all along the room moving their arms up and down.,continue playing on the drums and ends with one child walking down the baby end.,move their hands all along the cymbals and ends by continuing plays.,continues playing on the drums and ends with him kissing his fingers and giving a peace sign.\n3980,anetv_hrN0hOmQrD4,14611,People are driving a car with rafts on the back. They,People are driving a car with rafts on the back.,They,gold,go back into the vehicle again.,are playing on motorboats surrounded by two applauding machines.,are wearing protective clothing and special gear and costumes.,get in the rafts and are rafting down a river.\n3981,lsmdc3073_THE_GUILT_TRIP-34822,4353,Someone sleeps while someone drives. They,Someone sleeps while someone drives.,They,gold,\"play a dark - haired boy, just like someone.\",step into a pose.,carry the boxes away from each other.,drive through new mexico.\n3982,lsmdc3073_THE_GUILT_TRIP-34822,4351,\"Outside a convenience store, someone enters the wrong car, with a handful of candy. She\",\"Outside a convenience store, someone enters the wrong car, with a handful of candy.\",She,gold,sees someone and hurries towards him.,puts the baking pan in the oven box.,poses from a pack for him.,watches his young face dry.\n3983,anetv_J1fcLhB-Slg,1368,The man drinks all the beers in quick succession. Two of the spectators,The man drinks all the beers in quick succession.,Two of the spectators,gold,grab their sticks and stop laughing with smiling.,raise his hand and shake hands.,pat the individual's shoulder.,pass behind the boat and celebrate as the man in the black suit plays.\n3984,anetv_J1fcLhB-Slg,1367,A man stands in front of several beers on a table while two others watch. The man,A man stands in front of several beers on a table while two others watch.,The man,gold,continues looking around and waving to the camera while taking off his shirt and showing over paintball stances.,rearranges himself and puts the camera in park.,drinks all the beers in quick succession.,moves the bar away from the camera.\n3985,anetv_J1fcLhB-Slg,8041,The guy covers his mouth and lowers his head. The guy,The guy covers his mouth and lowers his head.,The guy,gold,keeps his hands off the camera and stands up.,holds his hands in a row with leg lube.,\"continues to clean the floor, marching through the open plan area.\",\"wipes his forehead, stands up straight, and gestures to a guy next to him.\"\n3986,anetv_J1fcLhB-Slg,8040,A guy drinks six cups of liquid one right after another. The guy,A guy drinks six cups of liquid one right after another.,The guy,gold,takes the money to the guy who's changing the fan.,rolls off his right miss.,perform a same after the other product in so head fish.,covers his mouth and lowers his head.\n3987,anetv_MAUZbZnbM_Y,3642,Two men are cleaning the car on the outside and the inside. three cars,Two men are cleaning the car on the outside and the inside.,three cars,gold,drive in a backyard up the steps of a gas station near the entrance.,crash and crash into each other along the roof.,are parked by a truck and help washing it.,are parked in front of the store.\n3988,anetv_MAUZbZnbM_Y,3641,Man is polishing a black car while people is watching. two men,Man is polishing a black car while people is watching.,two men,gold,are walking inside the building and placing clothes under the stair roof.,are cleaning the car on the outside and the inside.,walk away from the entrance holding presents in front of them.,are sitting on a roof watching from a car.\n3989,anetv_MAUZbZnbM_Y,3640,Woman is talking on the phone inside a car store. man,Woman is talking on the phone inside a car store.,man,gold,is standing on a police car in a sidewalk.,is standing in front of a large table in a corner of a room.,is polishing a black car while people is watching.,continues putting the shoe over the ignition.\n3990,anetv_MAUZbZnbM_Y,3639,Green signs on a pole. woman,Green signs on a pole.,woman,gold,is in an indoor oom doing a ballet mascot surrounding a goal.,chases the year and chases a third girl.,is holding a guitar demonstrating while doing gymnastic hands and spins and practice.,is talking on the phone inside a car store.\n3991,anetv_xMImWgn3owc,11855,A gymnast is seen standing on a beam and begins performing gymnastic moves on the beam. The girl,A gymnast is seen standing on a beam and begins performing gymnastic moves on the beam.,The girl,gold,jumps all around the beam and ends by jumping and flipping herself in the air.,spins and flips all along the beam while the camera captures her movements.,does a flip and dismounts as the audience continues her routine and ends with her looking off in the distance.,stands up and twirls herself in front of several others before continuing.\n3992,anetv_xMImWgn3owc,11856,The girl spins and flips all along the beam while the camera captures her movements. She,The girl spins and flips all along the beam while the camera captures her movements.,She,gold,briefly adjusts the rod while he buffs.,ends her routine but jumping down off the side with her arms up and walking away.,continues spinning around herself and continues spinning around.,gets on and speaks into the camera.\n3993,anetv_LAkaYds-8X0,15650,A ball exit form a container. A man,A ball exit form a container.,A man,gold,holds a bowling ball on his hands.,runs down a track and whips a rope around him.,throws a lacrosse stick in his gloved hand.,hugs a young man.\n3994,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6643,1914,The Durmstrang galleon strains at its moorings. Someone,The Durmstrang galleon strains at its moorings.,Someone,gold,enters cautiously and carefully closes the door behind him.,\"follows a small television to his deck, where someone addresses a group of people.\",spots her companion remains inside.,attacks with another guide.\n3995,lsmdc3056_PUBLIC_ENEMIES-3527,12288,\"As an agent stands by, two female operators work an adjacent switchboard. Now outside on a moonlit shoreline, someone\",\"As an agent stands by, two female operators work an adjacent switchboard.\",\"Now outside on a moonlit shoreline, someone\",gold,adds oatmeal to her hair.,sits by a sleeping someone.,aims through the binoculars as someone blurs against his ear.,hides in his sunglasses.\n3996,lsmdc3056_PUBLIC_ENEMIES-3527,12289,\"Now outside on a moonlit shoreline, someone sits by a sleeping someone. Her hair\",\"Now outside on a moonlit shoreline, someone sits by a sleeping someone.\",Her hair,gold,\"rests on an backrest, overlooking the chair in front of him.\",is clasped behind her back.,hangs in her face.,drops from her neck.\n3997,lsmdc1046_Australia-91025,15162,\"Weapons raised, they pass burning buildings and approach the tree line. Someone\",\"Weapons raised, they pass burning buildings and approach the tree line.\",Someone,gold,\"slides to the ground, picks up the arm guides her hand and starts test the sculpture of a woman's wand.\",looks into a building and sees a row of boys' shoes.,arrives back with someone.,\"grips the chopper's wheel, regains the wheel, and throws out his arms.\"\n3998,lsmdc1046_Australia-91025,15168,\"They embrace, throwing their arms around one another. Someone\",\"They embrace, throwing their arms around one another.\",Someone,gold,finds someone running in front of someone's and puts the alligator back down.,fires the car guns and all soldiers leave.,hangs up and heads back to the podium.,\"holds the boy out at arm's length and grins happily, stroking his hair.\"\n3999,lsmdc1046_Australia-91025,15160,People stand staring on the beach. He,People stand staring on the beach.,He,gold,is holding the oar too.,wave after them.,smiles as they drive past balmoral warehouses.,\"nods to someone, who moves off.\"\n4000,lsmdc1046_Australia-91025,15166,\"Someone lowers his weapon, as more children come out of the undergrowth. He\",\"Someone lowers his weapon, as more children come out of the undergrowth.\",He,gold,licks his lips as someone carries him strangely.,comes to a halt and looks from the great power nick to another canvas.,\"moves closer to someone, the light coming from beside her.\",\"smiles with relief, as someone beckons the boys forward.\"\n4001,lsmdc1046_Australia-91025,15158,\"She stares, grief - stricken, at the devastation. The wooden buildings of the Mission\",\"She stares, grief - stricken, at the devastation.\",The wooden buildings of the Mission,gold,have crowded with flower designs.,appear on the night sky.,burn fiercely in the night.,are loaded into paintball.\n4002,lsmdc1046_Australia-91025,15161,\"He nods to someone, who moves off. Weapons raised, they\",\"He nods to someone, who moves off.\",\"Weapons raised, they\",gold,run down the torn stairs towards someone's house.,\"move up the road, get out of the march, past one of the solid brick gates.\",look up at someone.,pass burning buildings and approach the tree line.\n4003,lsmdc1046_Australia-91025,15157,\"Someone holds a rifle and someone stands holding a rope, as they get underway. She\",\"Someone holds a rifle and someone stands holding a rope, as they get underway.\",She,gold,glances at someone who wears his hat scrubby a hat.,walks close to someone.,\"watches him follow another player while someone touches his face in one hand, then faces to the other.\",\"stares, grief - stricken, at the devastation.\"\n4004,lsmdc1046_Australia-91025,15167,Another figure with long hair appears. They,Another figure with long hair appears.,They,gold,bent to form a gold dress at walking violin.,watch someone as another spider swoops closer.,make his way through a dance chamber.,\"embrace, throwing their arms around one another.\"\n4005,lsmdc1046_Australia-91025,15163,Someone looks into a building and sees a row of boys' shoes. He,Someone looks into a building and sees a row of boys' shoes.,He,gold,\"take the bag out, and go for the door.\",removes a crate of gum from a desktop called and takes it out.,sits on a double bench from where the kids are.,looks horrified and lowers his rifle.\n4006,lsmdc1046_Australia-91025,15165,\"He turns towards the noise, raising his rifle. Something\",\"He turns towards the noise, raising his rifle.\",Something,gold,is moving in the undergrowth.,grabs someone's own wrist.,\"follows them, leads into the opening, which appears behind them.\",scratched their way beneath the camp.\n4007,lsmdc1046_Australia-91025,15164,His eyes fill with tears. He,His eyes fill with tears.,He,gold,\"turns towards the noise, raising his rifle.\",smiles and turns to the door of his sundress.,lowers his gaze over an island.,rushes toward the house and falls asleep.\n4008,lsmdc1046_Australia-91025,15159,The wooden buildings of the Mission burn fiercely in the night. People,The wooden buildings of the Mission burn fiercely in the night.,People,gold,are asleep in bed with the receding web trailing in someone's direction.,look on proudly as someone treasure passes on his horse.,are just taking inches of slipping out.,stand staring on the beach.\n4009,anetv_ZpwXqrCxcGg,6658,A man in a white shirt is painting a wall. He,A man in a white shirt is painting a wall.,He,gold,shows them the dresser for a video.,turns around and looks at the camera.,puts a yellow eye on the pumpkin boy.,demonstrates bouncing on a wall with a shaver and talking with a smile.\n4010,anetv_ZpwXqrCxcGg,6657,An empty room is shown with yellow tile. A man in a white shirt,An empty room is shown with yellow tile.,A man in a white shirt,gold,sits on the couch.,is painting a wall.,is playing hop scotch.,is signing a sink.\n4011,lsmdc1009_Spider-Man3-76731,233,He bows his head and scocks away. As someone trudges off down the street someone,He bows his head and scocks away.,As someone trudges off down the street someone,gold,looks out of the window at the deserted corner where he was standing moments earlier.,marches the apartment with his equipment slung over his shoulder.,hikes over and faces his wife and enters with her brother.,pats his back to the child.\n4012,lsmdc1009_Spider-Man3-76731,232,In a lit top floor window he catches a glimpse of someone as she moves about her apartment. His sorrowful blue eyes,In a lit top floor window he catches a glimpse of someone as she moves about her apartment.,His sorrowful blue eyes,gold,slowly moisten and fill with tears.,remains downcast on hers.,\"focused on someone, who sits beside the desk in the kitchen room.\",remain on with narrowed eyes.\n4013,lsmdc1009_Spider-Man3-76731,234,As someone trudges off down the street someone looks out of the window at the deserted corner where he was standing moments earlier. A short time later she,As someone trudges off down the street someone looks out of the window at the deserted corner where he was standing moments earlier.,A short time later she,gold,slams his bike into the air jam and leaps down and down the street past her.,has her cell phone to the roof.,'s on someone's phone as a silver sedan cruises past.,comes out of her apartment block in her waitress uniform and hails a cab.\n4014,lsmdc1009_Spider-Man3-76731,231,At night someone walks under the illuminated canopy of the theater across the street from someone's apartment building. In a lit top floor window he,At night someone walks under the illuminated canopy of the theater across the street from someone's apartment building.,In a lit top floor window he,gold,leans over the window.,catches a glimpse of someone as she moves about her apartment.,is sporting a white turban in a wide tan collared shirt.,looks up the stairs something spots.\n4015,anetv_rBnygEUFOvE,7276,\"She is doing front flips and back flips with swift motion without falling down. After she's done, she\",She is doing front flips and back flips with swift motion without falling down.,\"After she's done, she\",gold,has stopped swinging back and forth.,gets off the uneven bars and walks off as she gives a high five to her coach.,gets forward and sinks in the sand and holding the camera stuck in her arms.,jumps and jumps over catches battling and down around while practicing her cheer and being dragged away applaud.\n4016,anetv_rBnygEUFOvE,7275,A gymnast wearing red leotards is performing gymnastics on uneven bars in a large stadium with a several spectators. She,A gymnast wearing red leotards is performing gymnastics on uneven bars in a large stadium with a several spectators.,She,gold,moves toward the camera attached to a pole.,is doing front flips and back flips with swift motion without falling down.,do two flips to dodge their moves.,does a flip and misses a bar and catches herself in a split line.\n4017,anetv_P6Z-7k-erfc,5086,The man washes a pumpkin in the sink. The girls,The man washes a pumpkin in the sink.,The girls,gold,stands at the faucet and dumps soap into a bath.,look at the pumpkin seated together on the floor.,walk away from the camera and do the dishes in order to clean.,stand beside the orange water swallowed close to the shore.\n4018,anetv_P6Z-7k-erfc,10104,A couple of little girls are sitting on the floor in a kitchen. A man,A couple of little girls are sitting on the floor in a kitchen.,A man,gold,stands next to her and begins to talk.,is washing dishes while the girls are playing.,is making a sandwich while a girl is cooking.,is cleaning the kitchen in a sink and talking to the camera.\n4019,anetv_P6Z-7k-erfc,5084,A man adjusts a makeshift cardboard hat on his head. A girl,A man adjusts a makeshift cardboard hat on his head.,A girl,gold,draws a face on a pumpkin sitting on the floor.,grabs the man but at the same time he moves around a mirror in a corner and starts to speak.,stands on stage with a woman in front of the grey judges.,walks towards the camera holding him in a curling string.\n4020,anetv_P6Z-7k-erfc,10105,A man is washing dishes while the girls are playing. They,A man is washing dishes while the girls are playing.,They,gold,swim laps from each other to the right.,begin pulling in the shower and laughing.,are sitting by the cup working on the coffee table.,are carving and drawing on a pumpkin.\n4021,anetv_P6Z-7k-erfc,5085,A girl draws a face on a pumpkin sitting on the floor. The man,A girl draws a face on a pumpkin sitting on the floor.,The man,gold,points at herself in pain.,washes a pumpkin in the sink.,makes baskets while the camera watches her.,strokes her bottom showing her nose.\n4022,anetv_wIcK3bQNqcA,12925,The person adds a smaller black part and fastens it. The person,The person adds a smaller black part and fastens it.,The person,gold,pushes the violin along the mat.,removes their hands from the center of the bike's wheel.,fix the lens and put it onto a plate.,creates lines with powder.\n4023,anetv_wIcK3bQNqcA,12923,A person moves their fingers around the center of a bike's wheel. The person,A person moves their fingers around the center of a bike's wheel.,The person,gold,takes a black part and adds it.,lights up the clip and shows a black horse.,lifts an ornament covering the floor.,tightens the handle and pushes to a weld.\n4024,anetv_wIcK3bQNqcA,12924,The person takes a black part and adds it. The person,The person takes a black part and adds it.,The person,gold,cleans the nails with a red nail dropper.,puts the tire on then applies the cream to the ring.,adds a smaller black part and fastens it.,then shows off an metal product.\n4025,anetv_H4spfNy_LG4,964,The raft suddenly overturns and all the rafters fall into the water. Another group of people,The raft suddenly overturns and all the rafters fall into the water.,Another group of people,gold,slide past the cliffs.,stands upright behind the boat.,are together in a boat.,go rafting in their rafts through the rough river water as they try hard to stay afloat.\n4026,anetv_H4spfNy_LG4,966,A few of the rafters jump down from the slopes of the small hills that surround the river. Another group of rafters,A few of the rafters jump down from the slopes of the small hills that surround the river.,Another group of rafters,gold,\"walk on horseback, creating a large stream of rocks as they walk on the skis trying to keep it up.\",sail up a lake with concrete milling around on the platforms and some manage to bring them into the water another pellet.,go down the river while rowing through the swift and rapid waves of the river.,peer through the rapids and eventually topple down the hill.\n4027,anetv_H4spfNy_LG4,963,The rafter go down the river through the turbulent waves as they raft with rows in their hands. The raft suddenly overturns and all the rafters,The rafter go down the river through the turbulent waves as they raft with rows in their hands.,The raft suddenly overturns and all the rafters,gold,turn up a wave to go the river with two women tied together.,fall into the water.,are together in the boat.,are beginning to enter again.\n4028,anetv_H4spfNy_LG4,18929,People are paddling in a river wearing red life guards and there are other boats around them. people,People are paddling in a river wearing red life guards and there are other boats around them.,people,gold,are boats floating like the river water passing by at the end of the river.,are kayaking on the river drinking the sand in their kayaks.,are in the rapids of the river.,surf under the water on the water.\n4029,anetv_H4spfNy_LG4,962,There some groups of people rafting in a red raft wearing yellow helmets and red vests in a river. The rafter,There some groups of people rafting in a red raft wearing yellow helmets and red vests in a river.,The rafter,gold,is helping choppy the rapid currents of a waterfall under some white waters.,\"is brought down the mountains, falling onto the trees.\",go down the river through the turbulent waves as they raft with rows in their hands.,\"came and go along shore, and the canoe comes up onto a dock.\"\n4030,anetv_H4spfNy_LG4,965,They go down the river as they doge some rocks and stay afloat in the rough water. A few of the rafters,They go down the river as they doge some rocks and stay afloat in the rough water.,A few of the rafters,gold,swarm through the jungle and stop.,jump down from the slopes of the small hills that surround the river.,continue pushing for the town.,in the river seem to have a dense rough time.\n4031,anetv_t1MXansbY5s,10369,A woman opens a white closet door. She,A woman opens a white closet door.,She,gold,removes some shoes from the closet.,pants and pajamas rock curtains next to a garage of a tent.,enters her apartment and enters a dark ward top.,is the kid as they turned to walk the york town.\n4032,anetv_t1MXansbY5s,10370,She removes some shoes from the closet. She,She removes some shoes from the closet.,She,gold,puts on the shoes.,keeps carrying his arms door.,makes herself to the bed wall and looks down.,\"goes to the skateboard, throws it back.\"\n4033,lsmdc3080_THIS_MEANS_WAR-37447,13414,\"They plummet 20 feet onto a table below. Now bloody face then lying on glass shards, someone\",They plummet 20 feet onto a table below.,\"Now bloody face then lying on glass shards, someone\",gold,feebly throws a fork at someone.,comes towards someone's chest and gently strokes the long - skinned woman's hair.,stops by a coffin then encounters someone.,\"finds someone in broadside fuse, which has been lit.\"\n4034,lsmdc3080_THIS_MEANS_WAR-37447,13408,\"As someone nods and complies, someone gives him a slap on the cheek. Someone\",\"As someone nods and complies, someone gives him a slap on the cheek.\",Someone,gold,stops staring at him then takes a phone from his case and turns it to someone.,faces someone then delivers a fast right hook.,\"watches him glares, desperately trying to bite someone.\",storms out to him and takes a pocket check.\n4035,lsmdc3080_THIS_MEANS_WAR-37447,13415,\"Now bloody face then lying on glass shards, someone feebly throws a fork at someone. Someone\",\"Now bloody face then lying on glass shards, someone feebly throws a fork at someone.\",Someone,gold,looks up at someone who makes a blank.,goes through the stone.,snickers under his headset.,comes down the stairs.\n4036,lsmdc3080_THIS_MEANS_WAR-37447,13409,\"In a posh ladies room, someone controls her breath. In the chic restaurant, customers\",\"In a posh ladies room, someone controls her breath.\",\"In the chic restaurant, customers\",gold,clear out as the two men brawl.,gather several shelves.,mill around bullpen busy through the beautiful corridors and stacks of noise tables.,slip on top of his truck and stare up at someone through the doorway.\n4037,lsmdc3080_THIS_MEANS_WAR-37447,13413,Someone wheels a coat rack like a quarterstaff. Someone,Someone wheels a coat rack like a quarterstaff.,Someone,gold,tries to retrieve the note with her purse to get out of the car.,uses the pole to ram someone backward through a glass partition.,makes her way down the house.,hands join to a pair.\n4038,lsmdc3080_THIS_MEANS_WAR-37447,13410,\"In the chic restaurant, customers clear out as the two men brawl. Someone\",\"In the chic restaurant, customers clear out as the two men brawl.\",Someone,gold,walks through a room where the liquor went.,sends someone rolling over a table then throws a knife into a leather chair by someone's head.,lights a cigarette from a cigar.,bounce his hands along his sides as they row into the adjacent escape.\n4039,anetv_fYIr-1aIHmA,4694,He gets on his feet and skis. The boy,He gets on his feet and skis.,The boy,gold,loses his balance and fall off the pole entirely.,jumps on the ladder.,does push ups as he prepares to skateboard.,\"continues playing, dropping the skateboard.\"\n4040,anetv_fYIr-1aIHmA,4696,A girl is next to hold onto the bar of the boat. The girls,A girl is next to hold onto the bar of the boat.,The girls,gold,then run together and go into a perfect jump to catch a jump.,looks at the camera before she looses her footing and falls off the bar.,hold hands and walk them.,are sitting on their boards with a picnic hose while a young girl watches her.\n4041,anetv_fYIr-1aIHmA,4695,The boy loses his balance and fall off the pole entirely. A girl,The boy loses his balance and fall off the pole entirely.,A girl,gold,comes kneel in the back and twists its leg.,watches a young man playing on the sideline.,is next to hold onto the bar of the boat.,dives into the water as he lifts her up.\n4042,anetv_fYIr-1aIHmA,4693,We see a boy holding onto to a pole being pulled by a boat. He,We see a boy holding onto to a pole being pulled by a boat.,He,gold,zoom out of the handle and pulls up a and gray board away from the skier.,takes a break from the boaters.,is shown looking for a car to vault.,gets on his feet and skis.\n4043,anetv_KEU4Sj6x1p4,14480,\"They begin to run again but this time the man who had the head start takes his time and the man in the blue runs fast and jumps in the sand. He runs and jumps again, this time they\",They begin to run again but this time the man who had the head start takes his time and the man in the blue runs fast and jumps in the sand.,\"He runs and jumps again, this time they\",gold,are all dressed for the ride.,keep going over the course.,show it again in slow motion.,'re still at the same time.\n4044,anetv_KEU4Sj6x1p4,14481,\"He runs and jumps again, this time they show it again in slow motion. He\",\"He runs and jumps again, this time they show it again in slow motion.\",He,gold,closes and the headline about the world ignores mask.,just keeps practicing his run and jump over and over trying to get it perfect.,stumbles backwards and more apprehensively falls in the road.,has a good time to running away.\n4045,anetv_KEU4Sj6x1p4,14479,\"The race begins, one of the racer has a huge head start before the other even starts moving. They begin to run again but this time the man who had the head start takes his time and the man in the blue\",\"The race begins, one of the racer has a huge head start before the other even starts moving.\",They begin to run again but this time the man who had the head start takes his time and the man in the blue,gold,runs fast and jumps in the sand.,greets them who turns and loses his arms and ends with the closing talking.,do the same and runs into them taking a better forward hit to the side.,harness tying the other and the first man in the black t - shirt the first time.\n4046,lsmdc0016_O_Brother_Where_Art_Thou-55597,17877,\"An aisle leads through the middle of the formation to the burning cross, before which a gibbet has been erected. The backmost row\",\"An aisle leads through the middle of the formation to the burning cross, before which a gibbet has been erected.\",The backmost row,gold,\"has stopped, facing away, only a few yards from the bushes that hide people.\",jumps into the water tower as the bright red light streams through the city.,reading triangles cymbals it to the choir in the middle of the crowd.,remains respectfully on the gangsters and his feet.\n4047,anetv_rvkVdD2u_yA,828,\"He crouches down to the floor, crossing his ankles. He then\",\"He crouches down to the floor, crossing his ankles.\",He then,gold,swings out of sight before in his knife.,walks off holding the swords before another group.,\"goes forward and back several times, stretching.\",\"changes to just wire legs from above and pauses, going back and fourth.\"\n4048,anetv_rvkVdD2u_yA,827,A man is talking in front of a net. He,A man is talking in front of a net.,He,gold,starts talking to the camera in front of a wall.,\"crouches down to the floor, crossing his ankles.\",is getting in and swimming in a small sand box.,makes his point of view on the beach.\n4049,anetv_dMjOeGJBF9M,8490,A young man is seen standing a top a slide on a playground riding a skateboard. The man,A young man is seen standing a top a slide on a playground riding a skateboard.,The man,gold,rides uzbekistan recording a dog and crashing into the camera and a child in the face.,then goes down the slide jumping off and attempting to go down again on the board and is successful.,continues moving around the area while the camera pans back to the first man sitting on a horse.,does tricks up the mountain and other others on the side watch him.\n4050,anetv_dMjOeGJBF9M,16240,The boy positions and stands in a skate board. the boy,The boy positions and stands in a skate board.,the boy,gold,makes a big face and does a flip.,picks the kite up and drops it poised to catch another dancer.,does a deserted motion on a diving board.,rides down the slide on the skateboard.\n4051,lsmdc3076_THE_SOCIAL_NETWORK-35135,13553,He treads toward the envelope then hesitates. The young man,He treads toward the envelope then hesitates.,The young man,gold,\"stares at him, stiffens and wistful, then lowers his noses, then shifts his gaze away with a warm knowing grin.\",\"picks it up and stares at his name on the front, then flips it over and finds a wax seal over the flap.\",takes a few paces across the grass.,\"hesitates, stares down and faces his vantage wrangle a punch from his strides.\"\n4052,lsmdc3076_THE_SOCIAL_NETWORK-35135,13555,\"He touches his forehead and pumps a fist. Spinning around, he\",He touches his forehead and pumps a fist.,\"Spinning around, he\",gold,spots someone following someone holding a gun.,skids a few times then marches out again.,takes a seat and opens it.,pounds his case against the wall.\n4053,lsmdc3076_THE_SOCIAL_NETWORK-35135,13554,\"The young man picks it up and stares at his name on the front, then flips it over and finds a wax seal over the flap. He\",\"The young man picks it up and stares at his name on the front, then flips it over and finds a wax seal over the flap.\",He,gold,touches his forehead and pumps a fist.,dresses with boots that he has brought over his time.,lies on top of it.,licks a chunk from someone's hand.\n4054,lsmdc3076_THE_SOCIAL_NETWORK-35135,13552,\"Someone sits down his things, scoots away from his desk and stands. He\",\"Someone sits down his things, scoots away from his desk and stands.\",He,gold,walks over to the kitchen and checks his phone.,\"glances down wearily, then checks his own clock.\",picks up a piece of newspaper and waxes it down.,treads toward the envelope then hesitates.\n4055,lsmdc3076_THE_SOCIAL_NETWORK-35135,13556,Several dry erase boards with notes and plans on them stand around him. Someone,Several dry erase boards with notes and plans on them stand around him.,Someone,gold,dangle a sound on the floor.,goes into another bathroom.,leaves the room and takes another mans' shoes.,\"bites his lips, then looks up resolutely.\"\n4056,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18905,She puts her coat on and turns to face him. He,She puts her coat on and turns to face him.,He,gold,pulls off his jeans and she touches his shirt.,is speaking and demonstrating the position of her jersey.,\"faces her, and she studies him coldly.\",looks at her with an air of sadness as she strolls to his hotel room door.\n4057,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18904,He watches as she pulls her black leotard on. She,He watches as she pulls her black leotard on.,She,gold,puts her coat on and turns to face him.,slides to the bottom near her water.,flips over to the chair and glances over his shoulder.,pulls up to the bars at the top of the stairs and turns around.\n4058,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18893,Someone turns and strolls to someone's beige suv. Someone,Someone turns and strolls to someone's beige suv.,Someone,gold,\"gets out, but is aware that her attractive, short - haired sister who is snickers a few yards ahead.\",and someone enter the ward.,leans back into his seat.,watches as she gets in.\n4059,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18902,\"He draws her closer, and they hold each other tightly. He\",\"He draws her closer, and they hold each other tightly.\",He,gold,\"looks into someone's eyes, and his stubbly face softens.\",\"takes a few deep breaths, then looks over someone.\",looks her in the eye and gently slides her coat off her shoulders.,opens his eyes and touches the sides with his palms.\n4060,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18903,\"Wearing only a bra and knickers, someone stands with her back to someone, who's propped up in bed. He\",\"Wearing only a bra and knickers, someone stands with her back to someone, who's propped up in bed.\",He,gold,emerges cautiously from the safe path and disintegrates into a storm of flames.,gazes from them to the dark sky.,watches as she pulls her black leotard on.,pauses her wide vision as he spots her coming along the steps.\n4061,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18890,She strides past him to the windowed office. She,She strides past him to the windowed office.,She,gold,\"retrieves it, flings it off and sits down.\",looks up at someone as someone and walks away.,points it at someone and nods.,turns to him and closes the door.\n4062,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18896,Someone stands beneath a concrete canopy studded with lights. He,Someone stands beneath a concrete canopy studded with lights.,He,gold,focuses a few lights.,rolls across its cover in his distance.,watches as the vehicle drives away.,\"faced someone, who wears a narrow alley on a gold suit.\"\n4063,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18900,Someone closes the door of room 325. They,Someone closes the door of room 325.,They,gold,\"stand in profile, silhouetted against the low light of his hotel room.\",grab each other's jacket.,\"file through the open windows, peering out a daze.\",\"stand behind a party in leafy, white grass.\"\n4064,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18898,Someone returns to the diary. Someone,Someone returns to the diary.,Someone,gold,lie underwater with hundreds of meerkats in the ocean of trees.,picks up another coins and blasts the picture.,removes the locket from her door.,opens his hotel room door to someone.\n4065,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18894,Someone watches as she gets in. Her eyes,Someone watches as she gets in.,Her eyes,gold,remain fixed on someone as someone reverses onto the road.,follow someone as he steps toward an suv.,dig into the padding.,focus fearfully beyond her.\n4066,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18901,Someone reaches out and gently strokes someone's smooth cheek. He tenderly,Someone reaches out and gently strokes someone's smooth cheek.,He tenderly,gold,strokes her tender lips.,massages her left shoulder.,kisses her husband's cheek.,kisses him softly on the lips.\n4067,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-87038,18891,She turns to him and closes the door. Someone,She turns to him and closes the door.,Someone,gold,spins to a stop outside a cafe arcade.,leans back against the altar and meets the rising stand.,rests his shoulder on someone's legs.,follows someone through a bright corridor to the back entrance.\n4068,lsmdc0023_THE_BUTTERFLY_EFFECT-59747,5596,Someone flips a single page of his journal and tries again. He,Someone flips a single page of his journal and tries again.,He,gold,goes off the screen as he slices.,pulls the record out of the vault and slides it out.,breaks down the pen over someone's pen.,\"reads to himself, then relaxes his head.\"\n4069,lsmdc0023_THE_BUTTERFLY_EFFECT-59747,5592,Someone comes to in his childhood kitchen. He,Someone comes to in his childhood kitchen.,He,gold,notices the woman wearing a shiny black suit.,picks up a book.,runs a fork at the sandwich.,rummages through the utensil drawer and pulls out a large butcher knife and grabs it.\n4070,lsmdc0023_THE_BUTTERFLY_EFFECT-59747,5593,He is still debating what to do when: someone walks in and is startled by the unexpected sight of someone holding a huge knife. Someone,He is still debating what to do when: someone walks in and is startled by the unexpected sight of someone holding a huge knife.,Someone,gold,is caressing the horse hair leaving yellow candles on a breeze brush.,\"makes a puzzled gesture, taking his hand, and cutting the man's hair.\",sees her but remains expressionless.,watches weakly as he gazes after her with his eyes open.\n4071,lsmdc0023_THE_BUTTERFLY_EFFECT-59747,5598,\"Someone, seven again, stands in the basement dressed in his Robin Hood costume as someone prepares for the sex scene. Someone\",\"Someone, seven again, stands in the basement dressed in his Robin Hood costume as someone prepares for the sex scene.\",Someone,gold,\"is puzzled, but watches someone skip to the fireplace.\",\"stares at it, pasted at their edges.\",regards the hairy dog.,\"is standing in the rain, drenched with sweat, staring heavily in the car direction.\"\n4072,lsmdc0023_THE_BUTTERFLY_EFFECT-59747,5594,Someone sees her but remains expressionless. Someone,Someone sees her but remains expressionless.,Someone,gold,\"steps back again, breaking up with hand.\",comes to to find someone still staring at him.,takes the keys out of her purse and strides off.,falls on the ground.\n4073,anetv_woRQ2JxcVHA,19333,A man dressed in black plays a saxophone on a pool patio. The saxophone player,A man dressed in black plays a saxophone on a pool patio.,The saxophone player,gold,glances over to his keyboard player.,plays the drums with his hand.,is pictured by the bowling drummers.,demonstrates how to iron his jacket.\n4074,anetv_jelxK3R-heg,12095,He is using a large leaf blower while the child watches. The child,He is using a large leaf blower while the child watches.,The child,gold,rolls from the tree and sets him down.,blows the leaves around.,continues to blow the leaves blowing leaves in a chefs yard.,gets bored and starts to walk away.\n4075,anetv_jelxK3R-heg,12094,A man is blowing leaves with a little boy in his back yard. He,A man is blowing leaves with a little boy in his back yard.,He,gold,picks the snow in the yard out under the stone.,is using a large leaf blower while the child watches.,is being interviewed and then are shown as a man is sitting by a man with a chemical that is collecting feet.,rakes the potatoes off with the blower.\n4076,anetv_jelxK3R-heg,19285,A man is seen holding a leave blower in their hands and blowing leaves around the yard. A small child,A man is seen holding a leave blower in their hands and blowing leaves around the yard.,A small child,gold,watches the person blow leaves around as the person continues to push the machine around the yard.,is seen standing on the grass while others as well as heavy the distance.,is seen carrying a long blower followed by a man raking the leaves around.,is seen in the distance pushing a leaf blower all around the yard.\n4077,anetv_gsfIHiBB6xE,1732,The men on the field grab their tools. We,The men on the field grab their tools.,We,gold,see men in a field cutting tall grass as other watch.,gives the website rewinds attire when the brasil players steels the audiences.,are in side screens.,players talk chips back to the camera.\n4078,anetv_gsfIHiBB6xE,1734,The man with the sickle finishes. The crowd,The man with the sickle finishes.,The crowd,gold,cheers for his score.,cheers as the man blows their whistle.,claps for the man.,claps for the man on the dance site.\n4079,anetv_gsfIHiBB6xE,1733,We see men in a field cutting tall grass as other watch. The left man,We see men in a field cutting tall grass as other watch.,The left man,gold,uses a sickle and takes the lead over the man with the weed wacker.,holds up croquet and runs to throw the balls.,brushes through rocks before leaving the lanes.,faces the other women in the room with audience and two patrons.\n4080,anetv_gsfIHiBB6xE,1735,The shirtless man walks away. The camera,The shirtless man walks away.,The camera,gold,returns to the ground full of clips.,lifts up and looks up.,pans right to show the other man working on the grass.,pans left and left.\n4081,anetv_Z2KHO87wHzg,5342,More bottle of sunscreen are shown and their contents are shown such as their spf and the rest of the ingredients. Tips then come across and people,More bottle of sunscreen are shown and their contents are shown such as their spf and the rest of the ingredients.,Tips then come across and people,gold,make a big hardcover book moves.,are shown assembled to get it and spill out the females.,are shown demonstrating the correct way to apply the product.,ends cut at the same time.\n4082,anetv_Z2KHO87wHzg,5341,Several images of people are shown giving examples of sun burnt individuals and people spraying themselves with sunscreen. More bottle of sunscreen are shown and their contents,Several images of people are shown giving examples of sun burnt individuals and people spraying themselves with sunscreen.,More bottle of sunscreen are shown and their contents,gold,are shown with the credits of people talking while talking.,inside a bar.,are shown such as their spf and the rest of the ingredients.,are added to a towel under the sheet.\n4083,anetv_Z2KHO87wHzg,5340,A bottle of sunscreen is shown and a sun becomes visible and then turns colors. Several images of people,A bottle of sunscreen is shown and a sun becomes visible and then turns colors.,Several images of people,gold,wind the unique house are shown.,doing numerous reactions in slow motion are shown.,are shown as well as hanging help york and snow around the room.,are shown giving examples of sun burnt individuals and people spraying themselves with sunscreen.\n4084,anetv_dGHryLMDBIU,3574,The man crosses his arms across his chest. The man,The man crosses his arms across his chest.,The man,gold,puts his arms around his man's torso and urges him back.,jumps off the platform and leans closer to him.,slides on a platform then jumps to a lit up set.,puts his hand on the top of the pipe.\n4085,anetv_dGHryLMDBIU,17482,He then grabs a hose and begins smoking from the hookah. He,He then grabs a hose and begins smoking from the hookah.,He,gold,stops playing and turns around at the end.,continues blowing the leaves in the yard.,blows out the smoke and continues speaking to the camera.,continues mopping the steps.\n4086,anetv_dGHryLMDBIU,3572,A man sits in a booth with a large hookah pipe on the table talking to the camera. The man,A man sits in a booth with a large hookah pipe on the table talking to the camera.,The man,gold,holds up the cigarette paper and is talking to the camera with glasses on his.,smokes from the pipe and blows the smoke in the room.,sets the prisoner on his coffee and puts his supplies back on the table.,blows on the mouse.\n4087,anetv_dGHryLMDBIU,17481,A man is seen sitting down speaking to the camera in front of a hookah. He then,A man is seen sitting down speaking to the camera in front of a hookah.,He then,gold,pours onto the cards while speaking to the camera.,grabs a hose and begins smoking from the hookah.,begins shaving his face.,pins down and blows blow leaves into the yard.\n4088,anetv_dGHryLMDBIU,3573,The man smokes from the pipe and blows the smoke in the room. The man,The man smokes from the pipe and blows the smoke in the room.,The man,gold,crosses his arms across his chest.,plays footprints and continues play.,walks away from the camera to see people behind him.,blows smoke into his mouth and cuts it off of his face.\n4089,lsmdc0011_Gandhi-52807,14187,\"Some of the people run, others deliberately stand fast. The mounted police\",\"Some of the people run, others deliberately stand fast.\",The mounted police,gold,\"are on the rooftop, where someone lands in bed.\",comes at a end of the street by a gnarled tree.,coach flips back and pauses.,converge on the truck.\n4090,lsmdc0011_Gandhi-52807,14190,One of the men with him is knocked along the ground by a policeman. He is young and vigorous and he,One of the men with him is knocked along the ground by a policeman.,He is young and vigorous and he,gold,swivels on the ground as though to strike back.,was already hunched over his spear and visibly embarrassed and not knowing what to mean.,is armed with three rifles.,is wearing the candidate flat.\n4091,lsmdc0011_Gandhi-52807,14191,And a lathi is brought smashing across the side of someone's head. He,And a lathi is brought smashing across the side of someone's head.,He,gold,tries to keep the candle against the car and rain misses the grate.,goes back to the office.,\"feels the side of his head, the blood soaking his hand.\",wallops it to another's code.\n4092,lsmdc0011_Gandhi-52807,14188,The mounted police converge on the truck. Someone,The mounted police converge on the truck.,Someone,gold,recedes into his convertible.,\"is grabbed, and hurled so that he half falls, half leaps to the street.\",joins a man at his office.,stops on top of a building and pumps it along.\n4093,lsmdc0011_Gandhi-52807,14192,\"He feels the side of his head, the blood soaking his hand. He\",\"He feels the side of his head, the blood soaking his hand.\",He,gold,gratefully starts the wheelbarrow but finds it empty.,\"struggles to his feet, facing the policeman who has struck him.\",pulls off of a boulder and kicks him through the guardrail.,thrust him to spacious volume.\n4094,lsmdc0011_Gandhi-52807,14189,\"Someone is grabbed, and hurled so that he half falls, half leaps to the street. One of the men with him\",\"Someone is grabbed, and hurled so that he half falls, half leaps to the street.\",One of the men with him,gold,\"swings several punches, and the floor collapses.\",slides by its roof.,supports someone.,is knocked along the ground by a policeman.\n4095,anetv_wP0jr86MNOw,15735,Another man is sitting on the back part of a van is putting the stilts on his feet. men wearing stilts,Another man is sitting on the back part of a van is putting the stilts on his feet.,men wearing stilts,gold,pass by his white men.,are walking in a parking lot to street.,is being led by a winter club.,are standing behind a bicycle park in a small building going down the highway.\n4096,anetv_wP0jr86MNOw,15736,Men wearing stilts are walking in a parking lot to street. men,Men wearing stilts are walking in a parking lot to street.,men,gold,are snowboarding on one of the upper windows where people are falling through snow.,are kneeling on the street and start jumping going down the paved slope.,are adding ladders to the base.,are standing in the parking lot hitting a line with one man.\n4097,lsmdc3018_CINDERELLA_MAN-7563,19447,Someone puts down his glass. Someone,Someone puts down his glass.,Someone,gold,leans forward and pulls his wife closer.,surreptitiously out her bum.,tries to suppress a smile.,pours a glass of wine.\n4098,anetv_eZdao9O8jrw,15520,She pours some of the lotion onto her hands and rubs it on her face. She,She pours some of the lotion onto her hands and rubs it on her face.,She,gold,wipes it off with a towel and rubbing it into her handbag.,uses a towel to dry her face.,rubs the light on her eyelashes then drops it down beside the sink.,rubs soap all over her eyes.\n4099,anetv_eZdao9O8jrw,15519,She shows a bottle in her hand. She,She shows a bottle in her hand.,She,gold,places the contents on a kitchen table.,gets on work washing her hair.,puts a scoop from her pot and mixes the food.,pours some of the lotion onto her hands and rubs it on her face.\n4100,anetv_eZdao9O8jrw,15518,A woman is standing in a room talking. She,A woman is standing in a room talking.,She,gold,shows a bottle in her hand.,starts playing a saxophone.,swings her legs in the air.,starts playing a harmonica with her hand.\n4101,anetv_MoPg7NqyhLI,3813,A large group of people are seen sitting in a floor followed by people shooting bow and arrows and running around a course. The kids,A large group of people are seen sitting in a floor followed by people shooting bow and arrows and running around a course.,The kids,gold,\"run slowly, finally attempting trick with one another.\",continue running around one another shooting the bow and arrows and ends with a woman holding up her hand and showing a picture.,continue playing and end by one another and run back and fourth to each other.,come back to help with one another and congratulated by standing around.\n4102,anetv_wBij_rEXdCk,9964,The man leaves and goes to a graffiti covered garage and turns on a boombox. The man break dances then,The man leaves and goes to a graffiti covered garage and turns on a boombox.,The man break dances then,gold,in a bag and places the books in a bucket.,changes back and stops in the room in front of the house.,sees there is a man across the room.,hauls around while staying up with a man's body.\n4103,anetv_wBij_rEXdCk,9966,The men then take turns break dancing. The men,The men then take turns break dancing.,The men,gold,hold their arms out and shake each other as they applaud.,shake hands with a audience and other spectators still applaud cheering.,lift their arms in sync and walk around the machine while still moving on the side.,stand face to face and break dance together.\n4104,anetv_wBij_rEXdCk,9967,The men stand face to face and break dance together. We then,The men stand face to face and break dance together.,We then,gold,jump through signs and screens.,see a man and a man climb on the rope.,see an accordion in the woods.,see the ending title screen.\n4105,anetv_wBij_rEXdCk,9965,The man break dances then sees there is a man across the room. The men then,The man break dances then sees there is a man across the room.,The men then,gold,\"cartwheels in unison, making cartwheels and twirling towards the man.\",take turns break dancing.,sit back down on a mat on mat competition.,perform wrestling on the floor.\n4106,anetv_rNQbSptv1cM,1784,We see her feet up close. The girl,We see her feet up close.,The girl,gold,\"stretches by bending to the ground, and sits on the ground stretching.\",changes the fall then tucks her bucket in front of her.,flips the violin around.,bends down and stretches her legs.\n4107,anetv_rNQbSptv1cM,1782,A cheerleader jumps and a boy walks up and talks. We,A cheerleader jumps and a boy walks up and talks.,We,gold,see people moves on the stilts of the gym.,see a girl posing with a gun.,see the man in the head walk toward the camera.,see the girl perform cheerleader jumps and arm maneuvers.\n4108,anetv_rNQbSptv1cM,1781,We see the starting title card. A cheerleader jumps and a boy,We see the starting title card.,A cheerleader jumps and a boy,gold,\"walks onto a platform, then squats down and throws kid from a stroll.\",walks up and talks.,moves his back on.,likes holding a guitar on a stage to see a player score.\n4109,anetv_rNQbSptv1cM,1785,\"The girl stretches by bending to the ground, and sits on the ground stretching. We\",\"The girl stretches by bending to the ground, and sits on the ground stretching.\",We,gold,he goes into the half position in her height and begins to lift the weight to the ceiling and groan it down.,the girl jump on a mat on the floor and then continues off past more feet and feet.,\"stands from the other side of the shed and hesitates left, hopping up and onlookers to look behind her seeing.\",see the ending title screen.\n4110,lsmdc3060_SANCTUM-29261,396,Someone looks back at someone. His shadow,Someone looks back at someone.,His shadow,gold,is already on it.,appears on the rock wall.,bangs on the palm of his left wrist.,is pushed by his head.\n4111,lsmdc3060_SANCTUM-29261,397,\"Meanwhile, someone and someone rappel down a craggy shaft. Sitting back in her harness, her feet\",\"Meanwhile, someone and someone rappel down a craggy shaft.\",\"Sitting back in her harness, her feet\",gold,are cast on white concrete.,find him beneath his extended belly.,are drawn up in front of someone.,pressed against the rock wall.\n4112,anetv_FhWxgGQtCJY,9553,A man is shoveling up some mulch into a wheel barrel. He,A man is shoveling up some mulch into a wheel barrel.,He,gold,tries to take another tool down.,plugs it hard in the sticks of a burned can with a tool.,is in flat on the top of the head.,brings the wheel barrel over and dumps it in a pile where a woman is using a rake to spread it evenly out.\n4113,anetv_FhWxgGQtCJY,9555,They continue to bring over loads of the mulch and a man dumps over a little tractor of dirt. He,They continue to bring over loads of the mulch and a man dumps over a little tractor of dirt.,He,gold,is then seen about the fire.,rides off on the little deer john tractor while the others continue raking.,starts to disassemble his little stick.,try to stop when it is n't stopped.\n4114,anetv_FhWxgGQtCJY,9554,He brings the wheel barrel over and dumps it in a pile where a woman is using a rake to spread it evenly out. They continue to bring over loads of the mulch and a man,He brings the wheel barrel over and dumps it in a pile where a woman is using a rake to spread it evenly out.,They continue to bring over loads of the mulch and a man,gold,serves gun trailer in a mallets bin.,and a woman walking down the driveway next to a fence as a woman handing the little croutons.,dumps over a little tractor of dirt.,are sitting in the grass behind the rope that is back to the hole in front of him.\n4115,anetv_7LimgSQsHm0,14127,A man is seen hosting a news segment that leads into several shots of hockey players skating around ice rinks. Another man,A man is seen hosting a news segment that leads into several shots of hockey players skating around ice rinks.,Another man,gold,grabs several paintball balls and throws it down several more times on the side of the trailer.,is shown performing a skateboard on a city park.,is seen swinging all around with others celebrating a final shot.,is seen speaking to the camera while shots of more hockey players are shown as well as fans cheering in the crowd.\n4116,anetv_7LimgSQsHm0,9528,More clips of people playing hockey on a rink and a man holding a microphone because talking and the blue words on the bottom of the screen read new russian president vladimir putin makes surprise appearance. The men,More clips of people playing hockey on a rink and a man holding a microphone because talking and the blue words on the bottom of the screen read new russian president vladimir putin makes surprise appearance.,The men,gold,are still following people in conversation.,are done playing hockey and are now standing in a line so they can shake hands.,\"hurry over and over, get close to the fat team then uses a tool that a paintball game can be seen.\",are then jogging playing lacrosse game on a sidewalk that leads into them performing again.\n4117,anetv_7LimgSQsHm0,14128,Another man is seen speaking to the camera while shots of more hockey players are shown as well as fans cheering in the crowd. The men,Another man is seen speaking to the camera while shots of more hockey players are shown as well as fans cheering in the crowd.,The men,gold,practice goals and speak with putin on the ice and ends with all the players huddled together.,continue taking one one more time and cheering with one another.,continue playing as they walk in and out of frame with her and child speaking to the camera.,speak while holding his posture and speak to one other and speak to the camera and more clips of shown of men playing volleyball.\n4118,anetv_gHhgZ0Bd4H4,3383,We see three people riding stationary bikes in a gym. The camera,We see three people riding stationary bikes in a gym.,The camera,gold,zooms in as people in exercise experience.,moves closer to the bikers.,pans to scenes of people in the game.,zooms in on the title screen.\n4119,anetv_gHhgZ0Bd4H4,3385,We wee the fourth rider in the scene. The lady,We wee the fourth rider in the scene.,The lady,gold,brings their legs to the side and his mouth.,becomes another woman after other.,shows how her arts works.,is riding her bike slower.\n4120,anetv_gHhgZ0Bd4H4,3386,The lady is riding her bike slower. The lady,The lady is riding her bike slower.,The lady,gold,gets off the bike.,is riding her bike slowly.,walks away out of the frame.,pulls up and gives her instructions.\n4121,anetv_gHhgZ0Bd4H4,3384,The camera moves closer to the bikers. The lady,The camera moves closer to the bikers.,The lady,gold,mixes ingredients and noodles in the pot.,stop and adjusts something on her bike.,grabs a couple of women's shoes and kneels.,switches off the bench.\n4122,anetv_gHhgZ0Bd4H4,3387,The lady is riding her bike slowly. We,The lady is riding her bike slowly.,We,gold,see the closing screen on a blue background.,lady do crunches on a brush.,people into the snow.,are holding up the girl as two bike.\n4123,anetv_a0hFDXB1RgY,12241,He moves slowly in the water while giving instructions on how to properly move the kayak. He,He moves slowly in the water while giving instructions on how to properly move the kayak.,He,gold,spins the water soap over the paddle down gently with the board and pass it along one water below.,begins paddling up the stream and showing what to do if you get stuck.,then lies on the large screen while climbing.,is thrown from his raft and he begins to pull out of the city tube of the waterfall.\n4124,anetv_a0hFDXB1RgY,12240,A man is sitting in a kayak in the river while speaking to the camera about his trip. He,A man is sitting in a kayak in the river while speaking to the camera about his trip.,He,gold,comes to and more shots of bikes slide in a river where you use paddles to get your feet off the board.,man holds a boat to the first person and begins moving the canoe down at a river in a rocks and water.,moves slowly in the water while giving instructions on how to properly move the kayak.,is shown riding the raft into the water on a boat.\n4125,lsmdc1019_Confessions_Of_A_Shopaholic-81019,18462,She introduces someone to someone. Someone,She introduces someone to someone.,Someone,gold,kisses someone's hand.,tosses her purse and walks off with someone.,sits shoulder - to - shoulder.,hangs up and gives him the arm.\n4126,lsmdc1019_Confessions_Of_A_Shopaholic-81019,18464,Someone lies on his back. Someone,Someone lies on his back.,Someone,gold,drops someone off with an invisible disc.,turns his legs like a wheel.,steps out through the binoculars.,\"lifts his jacket, revealing a dead man on his bed.\"\n4127,anetv_CneLYCPg7Es,6289,She finishes and the little boy smiles. the lady backs away and the child,She finishes and the little boy smiles.,the lady backs away and the child,gold,\"raises her hands, then takes her tray and walks away.\",falls off her stroke.,\"gets up, and lifts her baby with their hands.\",puts a pacifier in his mouth.\n4128,anetv_CneLYCPg7Es,6288,A lady holds a toothbrush as a child sits on a counter. The lady,A lady holds a toothbrush as a child sits on a counter.,The lady,gold,claps and washes her hands.,rinses a bottle in a cup.,brushes the boys teeth.,cleans an information and the lady rinses the sink with a hose.\n4129,lsmdc1043_Vantage_Point-89258,19608,\"He trains the pistol on someone, who cowers in a corner. Events\",\"He trains the pistol on someone, who cowers in a corner.\",Events,gold,\", someone notices the video feed.\",\"his performance, someone tries the number, grabs the remote, and drops onto someone who stands nude.\",run in reverse order.,\"another corridor, someone, someone, and someone follow someone's video.\"\n4130,lsmdc1043_Vantage_Point-89258,19612,\"Someone talks with a handsome, heavy - featured man, someone. She\",\"Someone talks with a handsome, heavy - featured man, someone.\",She,gold,steps into the fridge and pulls off the landing.,waves after the blonde.,holds up a bracelet.,\"nods to her husband, then holds her limp leg.\"\n4131,lsmdc1043_Vantage_Point-89258,19610,Someone sits safely in his limousine. Someone,Someone sits safely in his limousine.,Someone,gold,thrusts the cup - command.,receives an ice cream cone.,\"slams all the way over the roof, against the building's roof control.\",tassels toes are drawn into a plastic covered toy.\n4132,lsmdc1043_Vantage_Point-89258,19613,She holds up a bracelet. Someone,She holds up a bracelet.,Someone,gold,turns to someone down the sidewalk.,sits groggily and holds her gaze.,strains to let her go.,glares at her and flexes his jaw.\n4133,lsmdc1043_Vantage_Point-89258,19615,He lets go and strides off. Someone's eyes,He lets go and strides off.,Someone's eyes,gold,meet with someone's as they pass each other.,dart up toward the sink's edge.,lock on someone as someone smiles at someone.,are hidden and intense.\n4134,lsmdc1043_Vantage_Point-89258,19611,\"Seated, someone smiles at someone. Someone\",\"Seated, someone smiles at someone.\",Someone,gold,leaves his room and sits back in his seat.,punches someone's hair.,\"talks with a handsome, heavy - featured man, someone.\",blinks down awkward tears.\n4135,lsmdc1043_Vantage_Point-89258,19609,Someone's double is shot. Someone,Someone's double is shot.,Someone,gold,sits safely in his limousine.,hurries over to sporting she narrowly misses its bust.,swerves after him in a muscular stumble.,lies - - unconscious.\n4136,lsmdc1043_Vantage_Point-89258,19616,Someone's eyes meet with someone's as they pass each other. Someone,Someone's eyes meet with someone's as they pass each other.,Someone,gold,\"steps out of someone's cottage and exits, then looks out a window at his imposing architecture.\",walks passed curly - haired someone and pony - tailed someone.,walk past the end.,pounds across the table.\n4137,lsmdc3092_ZOOKEEPER-45176,7538,\"In someone's pit, someone slides over a bowl of popcorn for the approaching gorilla. Shane\",\"In someone's pit, someone slides over a bowl of popcorn for the approaching gorilla.\",Shane,gold,strikes a steed against his inner bag.,grabs someone's arm and points into the air.,kicks away under the bars and crumples to the floor.,enters through the metal door.\n4138,lsmdc3092_ZOOKEEPER-45176,7539,Shane enters through the metal door. He,Shane enters through the metal door.,He,gold,adjusts his robotic butt.,squints at someone and someone.,comes to an office window and lies in the rain and sitting on reading papers.,heads for its nose.\n4139,anetv_KoqE2gPCLe4,1528,A female athlete prepares to run. She,A female athlete prepares to run.,She,gold,performs a long race on her goal area.,runs over to the dead man's bag.,\"runs with a pole in her hands, then vaults over a bar onto a mat.\",performs flips on a strip of ice in front of judges.\n4140,anetv_KoqE2gPCLe4,1529,\"She runs with a pole in her hands, then vaults over a bar onto a mat. She\",\"She runs with a pole in her hands, then vaults over a bar onto a mat.\",She,gold,\"walks away, picking up the pole and posing before trying again.\",hops a beam into the pit and lands on the balance beam.,does several flips and lands on her chest several times.,runs straight up to a post and tries to defend herself.\n4141,anetv_KoqE2gPCLe4,4931,\"Once she is ready, the girl takes off down and perfects her pole vault jump. When the jump is completed, the lady grabs her sticks and waits to see her score but it\",\"Once she is ready, the girl takes off down and perfects her pole vault jump.\",\"When the jump is completed, the lady grabs her sticks and waits to see her score but it\",gold,ends and he hops on her shoulders.,'s not so bad and talking and the competitor directing a team of men are arguing.,does n't show so she begins to make hand gestures to someone to ensure that the jump was successful.,falls again and comes back to help it.\n4142,lsmdc1062_Day_the_Earth_stood_still-100747,878,Someone removes the electrodes and the operator collapses on the table. He,Someone removes the electrodes and the operator collapses on the table.,He,gold,\"falls onto the floor, reaching the barbell over his head.\",\"closes the sarcophagus, then crosses to the door of the cupboard in the living room.\",\"stows the knobs of fire, and swims underwater.\",strides down the corridor past the agents who are still writhing in agony.\n4143,lsmdc1062_Day_the_Earth_stood_still-100747,879,\"He strides down the corridor past the agents who are still writhing in agony. Someone, glancing around warily,\",He strides down the corridor past the agents who are still writhing in agony.,\"Someone, glancing around warily,\",gold,\"concentrating on the spot ahead and go in for a moment, then backs into an office.\",creeps up toward the ceiling.,sees them as someone is staggering quickly.,runs down a corridor full of shadows cast by the flickering lights.\n4144,lsmdc1062_Day_the_Earth_stood_still-100747,877,\"The alien, now standing, turns to the catatonic polygraph operator sitting in his underwear. Someone removes the electrodes and the operator\",\"The alien, now standing, turns to the catatonic polygraph operator sitting in his underwear.\",Someone removes the electrodes and the operator,gold,crouches down his left leg and touches someone.,climbs out the candy bar.,collapses on the table.,is vacuuming the bottom of the stairs.\n4145,lsmdc1062_Day_the_Earth_stood_still-100747,875,He then channels through to another camera and another guard. Two more suited agents,He then channels through to another camera and another guard.,Two more suited agents,gold,\"burst into an elevator, then lift the man in stony robes.\",hurry behind him and pay.,sit down and exit the building.,walk along the corridor.\n4146,lsmdc1062_Day_the_Earth_stood_still-100747,874,\"Someone focuses his vision down the electrode cables, wiring to a security camera overlooking an agent standing guard. He then\",\"Someone focuses his vision down the electrode cables, wiring to a security camera overlooking an agent standing guard.\",He then,gold,goes down the hall and uses the battery.,walks through the clear dappled path.,channels through to another camera and another guard.,files down a corridor lone using long dark metal machine that shows the whole men more clothes.\n4147,anetv_XOEQfCu6KsE,3545,The man then grabs a frisbee and begins performing tricks with the dog. The man,The man then grabs a frisbee and begins performing tricks with the dog.,The man,gold,spins the frisbee all around the man while the spinning moves around.,turns it out and ends by spinning around to catch a frisbee.,\"spins the dog around with the frisbees, then jumps onto the arms.\",continues to throw around a frisbee with the dog while others watch on the side.\n4148,anetv_XOEQfCu6KsE,3544,A man is seen walking around a field with a dog next to him. The man then,A man is seen walking around a field with a dog next to him.,The man then,gold,lays with a frisbee all around the field as well as the man walking around.,jumps into the fenced and continues talking to the camera.,grabs a frisbee and begins performing tricks with the dog.,lays down on a rake and begins riding and playing in the sand.\n4149,lsmdc3076_THE_SOCIAL_NETWORK-35273,4587,\"Holding the phone with his shoulder, he grabs some drinks. Someone\",\"Holding the phone with his shoulder, he grabs some drinks.\",Someone,gold,steps on onto a terrace.,shifts his puzzled gaze.,places his hands in front of someone.,opens the door and finds someone outside in the rain.\n4150,anetv_sHRajZw7A8g,129,The lady add ice and three shots liquor to a glass. The lady,The lady add ice and three shots liquor to a glass.,The lady,gold,pours something red in the glass.,offers her arm with approval.,puts strawberries in the pot for pops.,laughs and shakes its head in the soapy water.\n4151,anetv_sHRajZw7A8g,131,The lady adds something form the dispenser and a can. The lady,The lady adds something form the dispenser and a can.,The lady,gold,finishes grapes and puts a nut in her.,pours some toothpaste and lathers her hands.,stirs then pushes the drink forward.,shows the cover hair.\n4152,anetv_sHRajZw7A8g,128,We see a lady mixing drinks behind a bar. The lady,We see a lady mixing drinks behind a bar.,The lady,gold,mixes ingredients in a cup.,shakes the glass and take puffs from some smokes.,add ice and three shots liquor to a glass.,puts a drink on the table.\n4153,anetv_sHRajZw7A8g,127,We see a blue opening screen with a drink. We,We see a blue opening screen with a drink.,We,gold,see the lady and white text on a towel and a lady put contact lens in his right eye.,see a title screen.,see a child pour rapid water ni the sink.,see a lady mixing drinks behind a bar.\n4154,anetv_sHRajZw7A8g,132,The lady stirs then pushes the drink forward. We,The lady stirs then pushes the drink forward.,We,gold,are captured in the good film.,then surf the other her head.,woman gives another drink.,see a red closing screen and a long black screen.\n4155,anetv_sHRajZw7A8g,130,The lady pours something red in the glass. The lady,The lady pours something red in the glass.,The lady,gold,puts her friend into a glass.,adds something form the dispenser and a can.,grabs the top off the limes.,stops and is unflinching.\n4156,anetv_NVtRGWuiEP4,14301,The girls in the red uniforms finish and walk away. A team of girls in black and neon,The girls in the red uniforms finish and walk away.,A team of girls in black and neon,gold,take the costumes who participate with the cameramen.,get interviewed for archery for lanka.,walk past behind the girls.,outfits are on the field.\n4157,anetv_NVtRGWuiEP4,14300,The girls next to them in pink perform their routine. The girls in the red uniforms,The girls next to them in pink perform their routine.,The girls in the red uniforms,gold,shake hands and dance in a circle.,perform snow around the adults as they try to flip.,finish and walk away.,continues flipping and flipping around two batons.\n4158,anetv_NVtRGWuiEP4,14299,We see girls in a red costume gym performing a baton routine. Three girls,We see girls in a red costume gym performing a baton routine.,Three girls,gold,are in a gym in kickboxing.,wrestle each other by swinging back and fourth.,stand by watching the karate lift.,walk past in the background.\n4159,anetv_7-u3OI6HDns,7822,\"A man is shown in an old video, playing a keyboard. He\",\"A man is shown in an old video, playing a keyboard.\",He,gold,puts paper in a disc.,\"is shown in the video, while reporters gather behind him playing the instrument and are playing with him.\",picks up how to play the drums in front of the pile.,is then shown playing drums while a woman taps her foot.\n4160,anetv_7-u3OI6HDns,7823,\"He is then shown playing drums while a woman taps her foot. Another man joins in, and soon a band\",He is then shown playing drums while a woman taps her foot.,\"Another man joins in, and soon a band\",gold,\"is playing as the woman listens, then begins to sing.\",is shown speaking and explaining the practice game.,\"plays of the musician is shown, and there are some other people wrestling.\",sits in the room while a boat records him with her hands.\n4161,anetv_7-u3OI6HDns,3207,Various clips are shown of vintage people playing instruments to the camera while a woman looks on and walks slowly in front of the band. A woman,Various clips are shown of vintage people playing instruments to the camera while a woman looks on and walks slowly in front of the band.,A woman,gold,is then seen dancing in front of the band playing moving all around the stage and ending with a pose and a bow.,is then seen drinking a beer while others watch on the side.,holds a torch and leads across to glasses and transitions into several shots of people dancing across the music.,is shown standing behind her as a band stops playing without one behind.\n4162,anetv_UIPTzsWiGSU,7341,The little girl looked at the window and then continue eating ice cream. The girl,The little girl looked at the window and then continue eating ice cream.,The girl,gold,finishes her finished cookie and stands next to a servant.,continues speaking to the camera again and then mix the breakfast in.,licked the ice cream on her elbow and continue eating ice cream.,is in pink gently melts the mixture into the mixer and the person stirs the eggs.\n4163,anetv_UIPTzsWiGSU,17315,\"As she continues to eat her ice cream, she gets some on her arm and licks it off. While looking around ice cream\",\"As she continues to eat her ice cream, she gets some on her arm and licks it off.\",While looking around ice cream,gold,are shown and take them away from the dressing area.,turns to demonstrating how to make the piercing.,\", she gives the piercing demonstration.\",drips down her chin.\n4164,anetv_UIPTzsWiGSU,17314,\"Ice cream gets on her nose as she's licking the cone. As she continues to eat her ice cream, she\",Ice cream gets on her nose as she's licking the cone.,\"As she continues to eat her ice cream, she\",gold,gets some on her arm and licks it off.,smiles again while blowing the liquid into her mouth.,winks at the camera.,looks up like a pig and then meets her roommate.\n4165,anetv_UIPTzsWiGSU,7340,The little girl is eating ice cream while she talks. The little girl,The little girl is eating ice cream while she talks.,The little girl,gold,lays on the table and kneels down next to her.,continues to eat and they run around in circles.,pours an old drink into a bin and keeps driving.,looked at the window and then continue eating ice cream.\n4166,anetv_UIPTzsWiGSU,17313,A little girl is in the back seat of a vehicle while eating an ice cream cone. Ice cream,A little girl is in the back seat of a vehicle while eating an ice cream cone.,Ice cream,gold,gets on her nose as she's licking the cone.,covers the woman with her other arm and appears to help.,is on the little girl as she pours her ice cream.,is added to the ice.\n4167,lsmdc3047_LIFE_OF_PI-22905,14817,\"Someone allows a fawned, wistful smile. It fades and he\",\"Someone allows a fawned, wistful smile.\",It fades and he,gold,takes on a haunted expression.,sees someone standing behind a bar.,takes a deep breath at his hors d'oeuvre.,flings the shelves overhead.\n4168,anetv_8HhihBmSS9s,13080,A small group of people are seen standing around a field that leads into a game of kickball. The people,A small group of people are seen standing around a field that leads into a game of kickball.,The people,gold,are then seen hitting lacrosse on boats as well as many watching around the sides.,dance around while dancing at one another and end by one speaking to the camera.,continue to lay up and then continue hitting the ball and clips around them on various angles.,kick around the ball and cheer with one another as they score points on their side.\n4169,anetv_8HhihBmSS9s,13081,The people kick around the ball and cheer with one another as they score points on their side. Another team member scores a goal and their teammates,The people kick around the ball and cheer with one another as they score points on their side.,Another team member scores a goal and their teammates,gold,dribble scoring.,run in with their arms up.,begin to cheer for a passing audience.,pose for a kiss in the end.\n4170,anetv_TgantuXBiJg,12675,A young girl is seen putting makeup on outside while other people on the side watch and also play with makeup. The girls,A young girl is seen putting makeup on outside while other people on the side watch and also play with makeup.,The girls,gold,continue to attempt to put makeup on as the camera pans back and fourth between the two.,continues ironing while the woman continue to clip her hair after.,continue dancing with one another and ends with another woman coming back and looking to the camera.,continues pulling herself as well as closeup and blowing sunscreen all around her face.\n4171,anetv_H5Z__A99EG4,11347,There's a man doing a science experiment in his kitchen using a on liter Pepsi bottle that is filled with foam. There,There's a man doing a science experiment in his kitchen using a on liter Pepsi bottle that is filled with foam.,There,gold,women are standing in a bathroom with a view of an indoor pool and himself laughing to the camera while he talks to a screen,has a white background underwater.,lies on his back with two bottles.,'s a boy laying down on the floor with his legs stretched up against the cabinet.\n4172,anetv_H5Z__A99EG4,11348,There's a boy laying down on the floor with his legs stretched up against the cabinet. The man,There's a boy laying down on the floor with his legs stretched up against the cabinet.,The man,gold,\"pass his hand and kicks his feet, but the boy continues moving past the judges.\",takes a large plastic canister and starts vacuuming the floor.,is holding a hose in one hand and blowing air into the bottle simultaneously.,talks to the camera while sitting on the floor of the fence.\n4173,anetv_H5Z__A99EG4,11349,The man is holding a hose in one hand and blowing air into the bottle simultaneously. Then he,The man is holding a hose in one hand and blowing air into the bottle simultaneously.,Then he,gold,is seated as the red man is to rake out objects.,drops the huge bubble from the bottle onto the boy's face.,walks under a cement and slams the coffee glass again and takes the glass.,\"continues to ski, and rises.\"\n4174,anetv_-ROljbRVlos,5405,A person is seen standing on a court wearing stilts on his feet. The boy then,A person is seen standing on a court wearing stilts on his feet.,The boy then,gold,throws the ball several times while the camera continues to follow.,begins running down the court on the stilts.,jumps up and down and spins around.,takes off running along with horses.\n4175,anetv_-ROljbRVlos,5406,The boy then begins running down the court on the stilts. The boy,The boy then begins running down the court on the stilts.,The boy,gold,dunks a small ball into the basket and walks back to grab it.,pulls the ball out of the black field and begins running backwards down the track as the camera progresses out and out to frame.,does the splits and walks away.,continues hitting the ball against his hand.\n4176,anetv_iODCh_DsGak,11366,A man in a suit and a woman in a dress are standing in front of an audience. They,A man in a suit and a woman in a dress are standing in front of an audience.,They,gold,are drinking from a cup.,begin to dance on the floor.,\"go to the start of the race, almost falling.\",\"stand in the middle of a track, and jump in stage.\"\n4177,anetv_gLsHOCeeVUM,13985,A girl is seen speaking to the camera and leads into her holding bottles and washing her face. She,A girl is seen speaking to the camera and leads into her holding bottles and washing her face.,She,gold,wipes her face down with a towel and then puts lotion all over her face.,then shows how she uses a knife to cut off the leaves while still speaking to the camera.,\"wet, she then scrubs down some clothes on the floor while still looking into the camera.\",\"continues speaking more, then continues walking in the end while speaking to the camera and begins playing more volleyball.\"\n4178,anetv_7KKYKIlGaXk,353,It is an extensive water park located in Indonesia. People,It is an extensive water park located in Indonesia.,People,gold,take their bags out of the bag.,lay down her clothes.,\"clutch a few vendors, and gather round to see someone.\",are shown water skiing in the clear blue waters.\n4179,anetv_7KKYKIlGaXk,352,A view is seen of an enormous pool. It,A view is seen of an enormous pool.,It,gold,\"stretches very long distances, with people using boats and rafts in the water.\",\"burn into slow motion as someone fires, firing from his observation deck.\",shows then shown other people riding in the sand.,is the website of the screen.\n4180,lsmdc3081_THOR-37955,16585,\"Back on Earth, someone sits and read a book, Myths and Legions. She\",\"Back on Earth, someone sits and read a book, Myths and Legions.\",She,gold,\"keeps her eyes on him, then watches her with a weary gaze.\",removes the bottom of the coat page followed by someone and the camera.,\"covers it to see, then goes to the time - and when she gets jostled, the goalie charges and reacts.\",jumps up and opens the door to her mobile home.\n4181,lsmdc3081_THOR-37955,16586,\"She jumps up and opens the door to her mobile home. Outside, someone\",She jumps up and opens the door to her mobile home.,\"Outside, someone\",gold,packs his bike into a large hanger.,carries someone over one shoulder.,tears up a post as it smashes effortlessly across the water.,flops down on her bed.\n4182,lsmdc3081_THOR-37955,16588,Someone grins as he collapses onto someone's bed. Someone,Someone grins as he collapses onto someone's bed.,Someone,gold,'s shirt tosses someone onto an jacket.,slaps someone's cheek.,grinds his tuxedo and pumps his fist as he interviews.,rolls up beside him as he passes the shelves crammed with books.\n4183,lsmdc3081_THOR-37955,16591,\"Someone retrieves the bowl and places it in her sink. On the roof of the lab, someone and someone\",Someone retrieves the bowl and places it in her sink.,\"On the roof of the lab, someone and someone\",gold,assist the first scene in trepidation.,peek out from their bed inside.,share the camping pose with a folded slip of paper.,sit beside a fire burning in a portable grill.\n4184,anetv_5rftu62ML_c,19822,A large group of people are shown in various shots riding around in canoes. A man,A large group of people are shown in various shots riding around in canoes.,A man,gold,is seen skiing over a lake followed by a person riding in a kayak.,is seen standing on a rope and leads into a man riding a boat wearing a water.,presents them up and show more shots of people swimming with their feet.,speaks to the camera while people walk around with the canoes and show off pictures.\n4185,anetv_rdkrg8Bj9_I,17496,The athlete begins sprinting and jumping farther and farther. The athlete,The athlete begins sprinting and jumping farther and farther.,The athlete,gold,is now running full out and jumping full out.,picks up his javelin and throws a bludger down into his hands.,continues to ride around several times as he flips back across the jump.,end by halfway down the lane.\n4186,anetv_rdkrg8Bj9_I,17495,A athlete practices his long jump on a track and field course with some light jumps. The athlete,A athlete practices his long jump on a track and field course with some light jumps.,The athlete,gold,rides his hands as he skips down to his board and jumps.,begins sprinting and jumping farther and farther.,\"pushes his shirt rhythmically, spins along the track.\",\"throws the javelin in front of the instances, then claps a hand in the air immediately of the crowd.\"\n4187,anetv_rdkrg8Bj9_I,17497,The athlete is now running full out and jumping full out. Clips of the long jump athlete,The athlete is now running full out and jumping full out.,Clips of the long jump athlete,gold,are shown performing replay of the athlete throw several times before doing tricks and tricks.,are shown throwing arrows and high shooting arrows.,are shown in a clip of tallest bulls jumping then jumping over grass.,jumping on different courses with people watching and competing in other exercises.\n4188,anetv_rdkrg8Bj9_I,2884,\"A person is shown in several clips running down a track, jumping into a pit of sand. He\",\"A person is shown in several clips running down a track, jumping into a pit of sand.\",He,gold,pauses for a woman and then continues jumping back into the pit several more times.,continues to run around a girl on the pole.,holds up the pole and runs along the track several times.,throws a yellow ball off him.\n4189,anetv_gLPJ7_VhWVU,8044,\"Then, she puts mascara to her eyelashes, and paint the the lower lid. After, she\",\"Then, she puts mascara to her eyelashes, and paint the the lower lid.\",\"After, she\",gold,brush her cheek and put lipstick on the lips.,takes a small comb and grab the pan together.,adds mascara and gently work out right eye.,gives the camera a pat so they can look in the mirror for the rest of the way.\n4190,anetv_gLPJ7_VhWVU,8042,A young lady explains how to put makeup on the eye lid using a brush. The young lady,A young lady explains how to put makeup on the eye lid using a brush.,The young lady,gold,\"take brushes her hair back and uses the files, with styles and blurred styles.\",use an eyeliner to paint the border of the top lid.,shows parts of the diary to show how to properly keep a contact lens from her eye.,\"braids her hair to the back, then is shown in a few short sections.\"\n4191,anetv_gLPJ7_VhWVU,8043,\"The young lady use an eyeliner to paint the border of the top lid. Then, she\",The young lady use an eyeliner to paint the border of the top lid.,\"Then, she\",gold,\"talks again, trim it again, and smiles with dancing and mopping the floor.\",\"puts mascara to her eyelashes, and paint the the lower lid.\",applies makeup and poses.,sets the first clear brush and a wet black inside an orange polish.\n4192,anetv_SQiIQDKhnh0,11041,\"The man uses the items to scrape, clean, and cover the cracks and scratches. The finished product, free of cracks and scratches,\",\"The man uses the items to scrape, clean, and cover the cracks and scratches.\",\"The finished product, free of cracks and scratches,\",gold,\"pile off the ground, onto the branch.\",says behind a fine product has had something chocolate.,is shown as the man says his final words to the camera.,continues color as the process is completed.\n4193,anetv_SQiIQDKhnh0,11040,Several household items are individually shown on the screen. The man,Several household items are individually shown on the screen.,The man,gold,prepares in an indoor environment.,\"uses the items to scrape, clean, and cover the cracks and scratches.\",is obviously interviewed while sitting on fancy chairs.,uses several bottles to load through another windows.\n4194,anetv_SQiIQDKhnh0,11038,\"There is a close up of the armoire, spanning up its length. The man\",\"There is a close up of the armoire, spanning up its length.\",The man,gold,\"holds his hand to the right while the truck reaches quite level and stops, continuing.\",on his trolley sits nex to his knees shaking vigorously.,\"touches several cracks and chips in the wood, talking about them.\",removes khaki overcoat look in place in the layout room.\n4195,anetv_SQiIQDKhnh0,11039,\"The man touches several cracks and chips in the wood, talking about them. Several household items\",\"The man touches several cracks and chips in the wood, talking about them.\",Several household items,gold,are individually shown on the screen.,are shown lying on a table with men sitting at a table.,appear to be a bit of store.,are used to put themselves and loaded into the car.\n4196,anetv_SQiIQDKhnh0,11037,A man is standing in front of an armoire as he talks. There,A man is standing in front of an armoire as he talks.,There,gold,\"is a close up of the armoire, spanning up its length.\",are sitting in a room talking.,people stand behind him!,are being shown inside a house.\n4197,anetv_-YjGbsbDoxs,17944,\"A lady named Linda, creator of Paint Along is demonstrating how to do an acrylic painting. She\",\"A lady named Linda, creator of Paint Along is demonstrating how to do an acrylic painting.\",She,gold,wedges the curved tip of the stick onto a wooden support.,starts with a one inch flat brush and yellow and white acrylic paint.,\"draws more branches, all and contentedly till the ottoman are installed.\",\"traces a small injury with a pencil, then reads the process of attempting with struggling.\"\n4198,anetv_-YjGbsbDoxs,17948,Then she draws straight lines across the canvas with an orange color. She then,Then she draws straight lines across the canvas with an orange color.,She then,gold,jumps back across the squares and smiles into the camera.,takes a liner brush to do some finer detailing on the painting such as branches of a tree.,carves more layers and spreading some evenly into her fingers.,begins painting the nails of the pencil with the designs.\n4199,anetv_-YjGbsbDoxs,17947,She continues the same pattern on the top part of the canvas. Then she,She continues the same pattern on the top part of the canvas.,Then she,gold,sleeps with the tissue.,draws straight lines across the canvas with an orange color.,puts down the craft and unwraps again her brush.,continues putting paper into frame and moving across the board.\n4200,anetv_-YjGbsbDoxs,17945,She starts with a one inch flat brush and yellow and white acrylic paint. She,She starts with a one inch flat brush and yellow and white acrylic paint.,She,gold,makes x patterns across the canvas with the yellow color.,applies polish to the shoe.,sets a aside in the bathroom and begins brushing with marley.,is pushing something into the side of the tree.\n4201,anetv_-YjGbsbDoxs,17946,She makes x patterns across the canvas with the yellow color. She,She makes x patterns across the canvas with the yellow color.,She,gold,returns with a close photo to her forehead.,cringes as she reviews bees.,continues the same pattern on the top part of the canvas.,reaches a map across it.\n4202,anetv_-YjGbsbDoxs,17949,She takes a flatter brush to demonstrate a dabbing technique with excess paint to show flower petals. She,She takes a flatter brush to demonstrate a dabbing technique with excess paint to show flower petals.,She,gold,tapes the frosting on the fence fondly then adds on different documents.,wipes her wrapping paper in her hand and turns around with a still image of a girl.,pretends to work too.,ends the video with the abstract painting technique.\n4203,anetv_SQncxXAlBFE,13312,A woman body builder slowly lifts a giant barbell of weights up into the air. She,A woman body builder slowly lifts a giant barbell of weights up into the air.,She,gold,looks up to someone.,\"lifts it to her chest, then over her head before freezing in place.\",walks past tables and scans the room and before students step off their final step.,\"spins quickly, using her arms to avoid the female onto a continuous mat, then walks down a side floor.\"\n4204,anetv_wB9LBEHR5-c,7872,An attendant comes up to one of the cars and says something to them before they ride away. The ride ends and everyone,An attendant comes up to one of the cars and says something to them before they ride away.,The ride ends and everyone,gold,gets out of their car an begins to exit the ride.,is astonished away by the tug of the shovel.,stands with them getting in the water.,is inside.\n4205,anetv_wB9LBEHR5-c,19578,\"Two girls drive bumper cars and they get stuck with a bumper car of a boy, then they free and continue riding. The bumper car of the girls\",\"Two girls drive bumper cars and they get stuck with a bumper car of a boy, then they free and continue riding.\",The bumper car of the girls,gold,crash with three snow cars.,get several cars when the older man turns it.,is off the road being blocked by other cars and hot cars.,can not move then a person help them to continue riding.\n4206,anetv_wB9LBEHR5-c,7871,Several people are on some bumper cars at an amusement park riding and bumping into each other. An attendant,Several people are on some bumper cars at an amusement park riding and bumping into each other.,An attendant,gold,is seen speaking to the camera while walking and another woman is twisting her legs around and jumping and laughing.,holds up three cards as they go back and forth together.,comes up to one of the cars and says something to them before they ride away.,with teammates are in the middle and the large cars or others are trying to get strategy up.\n4207,anetv_wB9LBEHR5-c,19579,The bumper car of the girls can not move then a person help them to continue riding. The girls,The bumper car of the girls can not move then a person help them to continue riding.,The girls,gold,\"drives behind the boy, then turn around and continue riding around.\",\"continue to play, after more people turn the skateboard on, while people watch.\",continue riding around on skateboards in the bumper cars.,continue jumping over the water again.\n4208,anetv_3aQnQEL3USQ,6981,\"A family of four wait the boy to pass the street. Then, the boy\",A family of four wait the boy to pass the street.,\"Then, the boy\",gold,takes a surf to the beach.,is riding the toddler while a guide leaves the first thing.,begins with his horse and the dog flips again to buck with each hoof.,returns to the playground and jumps over a stone.\n4209,anetv_3aQnQEL3USQ,6982,\"Then, the boy returns to the playground and jumps over a stone. After, the boy\",\"Then, the boy returns to the playground and jumps over a stone.\",\"After, the boy\",gold,jumps high on the street until he arrives to a parking lot.,starts to talk top of the playground.,stands and lifts the monkey bars.,sit on a swing as the boy walks forward and from area to side.\n4210,anetv_3aQnQEL3USQ,6979,\"A boy wears jumping shoes to bounce in front a building and in a playground. Then, the boy\",A boy wears jumping shoes to bounce in front a building and in a playground.,\"Then, the boy\",gold,comes on beach and use the moves onto the body and the kid flips.,picks a ring upside down with his hand back and walks away.,\"gets up the steps of a building, and then take big steps and jump down high.\",throws a javelin as well.\n4211,anetv_3aQnQEL3USQ,6980,\"Then, the boy gets up the steps of a building, and then take big steps and jump down high. A family of four\",\"Then, the boy gets up the steps of a building, and then take big steps and jump down high.\",A family of four,gold,flips on a balance beam and runs down a tunnel gil laying grabs a rope.,throws a woman over falling hill.,floats behind him on a rope.,wait the boy to pass the street.\n4212,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,760,\"Someone is standing a little behind the group. He turns his head, and he and someone\",Someone is standing a little behind the group.,\"He turns his head, and he and someone\",gold,head to the entrance.,catch each other's eye for a moment before she hastily looks away.,\"wait for the bow react, his gaze locked on someone's.\",return to the house.\n4213,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,754,Someone standing with someone calls over to her. He,Someone standing with someone calls over to her.,He,gold,scurries into the dining room where people sit at a bar in the dining nook.,squeeze a straw.,strides out of his chair.,\"offers her his arm, then leads them both through to the next room.\"\n4214,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,758,Someone looks around the other guests while people chatter happily together. A hopeful smile,Someone looks around the other guests while people chatter happily together.,A hopeful smile,gold,breaks towards the screen.,sends someone thumb over the icy sea.,looks off and someone puts onto her glasses.,plays across her lips when she spots a group of red - coated officers gathered in a corner.\n4215,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,753,Someone steps away from her family and looks around the room searchingly. Someone,Someone steps away from her family and looks around the room searchingly.,Someone,gold,meets his compassionate gaze.,standing with someone calls over to her.,\"starts to shift to his feet, as if in awe.\",\"faces her sister, her hair disheveled.\"\n4216,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,755,\"He offers her his arm, then leads them both through to the next room. Musicians\",\"He offers her his arm, then leads them both through to the next room.\",Musicians,gold,hands and hug each other.,are playing at one end of a large wooden - floored room.,of brunette young man watches him closely.,smiles and heads off.\n4217,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,761,\"He turns his head, and he and someone catch each other's eye for a moment before she hastily looks away. He\",\"He turns his head, and he and someone catch each other's eye for a moment before she hastily looks away.\",He,gold,\"closes her eyes, and they start to hold.\",continues looking at her.,walks out of the cart.,turns away and walks over about a dozen someone on the couch.\n4218,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,757,Someone escorts the sisters proudly through the gathered guests. Someone,Someone escorts the sisters proudly through the gathered guests.,Someone,gold,\"lies wrestling on the rack, her face crestfallen.\",drives the locomotive's patrol car.,clinks her glass as she gazes.,looks around the other guests while people chatter happily together.\n4219,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,756,Musicians are playing at one end of a large wooden - floored room. Someone,Musicians are playing at one end of a large wooden - floored room.,Someone,gold,is to the desk.,is about to slap the first neat men.,escorts the sisters proudly through the gathered guests.,\"enters into an elevator, carrying someone at a cavernous sky.\"\n4220,lsmdc1029_Pride_And_Prejudice_Disk_One-83679,759,A hopeful smile plays across her lips when she spots a group of red - coated officers gathered in a corner. Someone,A hopeful smile plays across her lips when she spots a group of red - coated officers gathered in a corner.,Someone,gold,\"holds a large advertising decorated chest, and its heel into her pants.\",pulls up the goon to her boss who speaks with a cocky smile.,is standing a little behind the group.,\"opens the door, then unhappily shoves the civilian heads out of the way.\"\n4221,anetv_hFzMCWZ3Jps,9812,A woman is seen looking into the camera while brushing her hair and leads into her putting her hair into a ponytail. The girl then,A woman is seen looking into the camera while brushing her hair and leads into her putting her hair into a ponytail.,The girl then,gold,braids more hair into her and ends by waving to the camera.,begins swinging something back and fourth while the girls continues showing her makeup in the end.,continues speaking to the camera while pausing to look at her in corners.,brushes someone's hair and ends by showing off the padding and presenting it in her hair.\n4222,lsmdc3024_EASY_A-11563,16460,Later she flips through a Bible. Someone,Later she flips through a Bible.,Someone,gold,steps into a confessional booth.,rubs her eyes as he returns to the floor.,works on a nearby mobile.,watches her as she works at a fooseball desk.\n4223,lsmdc3009_BATTLE_LOS_ANGELES-51,9493,\"He heads down the hill. Hustling two by two, 20 plus Marines\",He heads down the hill.,\"Hustling two by two, 20 plus Marines\",gold,missiles speed down a highway toward twenty first to four.,follow the staff sergeant.,\"sit in, and now kids ascend and run across wet street outside.\",come into the house in hay filled with almond welcoming.\n4224,lsmdc3009_BATTLE_LOS_ANGELES-51,9492,Spotting the Humvee and two transport trucks he halts. He,Spotting the Humvee and two transport trucks he halts.,He,gold,glances into a stall.,heads down the hill.,glances at the clerk.,opens a record pack.\n4225,lsmdc3009_BATTLE_LOS_ANGELES-51,9494,\"Hustling two by two, 20 plus Marines follow the staff sergeant. They\",\"Hustling two by two, 20 plus Marines follow the staff sergeant.\",They,gold,are truly tawny - - someone.,\"exchange a look, someone looks done and levels the babysitter.\",\"wear lifts casual as a carriage past someone, a suitcase, satchel, and briefcase.\",halt on someone's hand signal.\n4226,lsmdc3009_BATTLE_LOS_ANGELES-51,9495,They halt on someone's hand signal. Two men,They halt on someone's hand signal.,Two men,gold,join him in black.,give each other a salute and light their exchange.,hide behind a small desk.,hop out of the vehicles.\n4227,lsmdc3009_BATTLE_LOS_ANGELES-51,9490,\"Later, he pins a gold bar to each of his collar flaps. Stopping at the front door, someone\",\"Later, he pins a gold bar to each of his collar flaps.\",\"Stopping at the front door, someone\",gold,picks up a grubby campaign manager.,sends someone some platinum potion.,turns and kisses his wife's pregnant belly.,thrusts the crackers into his briefcase.\n4228,lsmdc3009_BATTLE_LOS_ANGELES-51,9491,\"Stopping at the front door, someone turns and kisses his wife's pregnant belly. Now, Marines\",\"Stopping at the front door, someone turns and kisses his wife's pregnant belly.\",\"Now, Marines\",gold,ride inside a truck following a humvee across sandy terrain.,lies in a laundry room.,\"lie at a table in a living room, oblivious.\",pulls a gurney from an ambulance with a prescription pill bottle.\n4229,anetv_8DIfyvX7H8Y,10951,Another man holding a baby holds up the kite's spool. A third man,Another man holding a baby holds up the kite's spool.,A third man,gold,goes by after the woman were blow blown.,grabs the left arm from his neck.,works on a similar kite while the second man holds a spool.,in a uniform leads a lady and men joins the other.\n4230,anetv_8DIfyvX7H8Y,10952,A third man works on a similar kite while the second man holds a spool. The men,A third man works on a similar kite while the second man holds a spool.,The men,gold,kite swimming with them to catch it in their hands.,continue to gather figures as the sun bounces.,show the number up from the board.,fly the kites from a rooftop.\n4231,anetv_8DIfyvX7H8Y,10950,A man works on a kite. Another man holding a baby,A man works on a kite.,Another man holding a baby,gold,holds up the kite's spool.,black hoop pops up from the couch.,and shows the kite flying from the boat.,walks in the floor and kicks the child back.\n4232,lsmdc1019_Confessions_Of_A_Shopaholic-80769,14150,She straightens his bow tie. She,She straightens his bow tie.,She,gold,\"checks the hoop, again.\",helps him on with a black tuxedo.,\"stares at her, then rolls her head in cash.\",wears his suit jacket.\n4233,lsmdc0023_THE_BUTTERFLY_EFFECT-59544,6844,\"She pats his ass and exits the bathroom. Someone, wearing a long skirt and tight red sweater,\",She pats his ass and exits the bathroom.,\"Someone, wearing a long skirt and tight red sweater,\",gold,catches the eye of every guy on campus.,crosses her legs and faces someone.,lumbers up to the sofa to stare at it.,walks through a grocery store filled with magazines and supplies.\n4234,anetv_MeHEDK_Y8sE,3264,\"The next step is to then remove the pins followed by the foil and release the curls. Finally, the style is completed and she\",The next step is to then remove the pins followed by the foil and release the curls.,\"Finally, the style is completed and she\",gold,gets up and runs across the yard to stop him.,is spun around once more to show the finished product.,begins drying other colors with a green plastic wrap.,\"does it again and then, she proceeds to use the client's face in the mirror.\"\n4235,anetv_MeHEDK_Y8sE,3261,\"A female Caucasian is sitting in a chair spinning around showing off her long blonde hair style, it is pinned to the right and has curls in the bottom. On the next screen, a woman\",\"A female Caucasian is sitting in a chair spinning around showing off her long blonde hair style, it is pinned to the right and has curls in the bottom.\",\"On the next screen, a woman\",gold,begins grabbing the bottom and rolling it from the bottom up to about three inches and seals it with a piece of foil.,appears with a white hair technician on her side on a rooftop that has a basket with a hangs on it.,is walking in a circle and showing a model nail photograph with the picture of her face showing the picture.,shows how to remove the cat's lens from a shelf.\n4236,anetv_MeHEDK_Y8sE,3262,\"On the next screen, a woman begins grabbing the bottom and rolling it from the bottom up to about three inches and seals it with a piece of foil. Once the hair is folded up in a the foil, the lady\",\"On the next screen, a woman begins grabbing the bottom and rolling it from the bottom up to about three inches and seals it with a piece of foil.\",\"Once the hair is folded up in a the foil, the lady\",gold,starts to loosen it.,takes a flat iron and runs it over the foil.,shows the gift to make a noose put in the middle.,takes a paired brush and begins to cut the pieces with them and the logo zooms into place.\n4237,anetv_MeHEDK_Y8sE,3263,\"As the next scene comes, the lady is pictured with eight foiled curls in her head that are sealed with long hair pins. The next step\",\"As the next scene comes, the lady is pictured with eight foiled curls in her head that are sealed with long hair pins.\",The next step,gold,is the blue girl woman and a lady in gray hair and smiles at the camera.,ends with the girl and the player by the car.,is to then remove the pins followed by the foil and release the curls.,is on the walls band the women measures the color to hit them with a blue color.\n4238,lsmdc0041_The_Sixth_Sense-67860,944,Someone watches his puppy dart into the living room and under a couch. Someone,Someone watches his puppy dart into the living room and under a couch.,Someone,gold,slowly turns back and looks down the hall.,'s mother eyes someone bloody in her driveway.,starts to help his brother up the slide.,opens a laptop and talks to someone.\n4239,lsmdc0041_The_Sixth_Sense-67860,942,He gets startled by the sound. Someone,He gets startled by the sound.,Someone,gold,comes racing down the hall and scurries past someone.,\"stands at his window, walks to the door and sits down.\",flashes a satisfied smile.,calls out as someone looks him up and down.\n4240,lsmdc0041_The_Sixth_Sense-67860,938,Someone's eyes start to water up. Someone,Someone's eyes start to water up.,Someone,gold,just stares at his mother's expression.,eyes her as she glances around.,tries to open his office door.,tosses down a dead bottle.\n4241,lsmdc0041_The_Sixth_Sense-67860,940,Someone gets up - - never taking his eyes off his mother - - and leaves the room. Someone,Someone gets up - - never taking his eyes off his mother - - and leaves the room.,Someone,gold,enters the dark hallway.,turns through the clinic.,looks down to the ground.,remains at the bar.\n4242,lsmdc0041_The_Sixth_Sense-67860,937,Someone folds her napkin quietly. Someone's eyes,Someone folds her napkin quietly.,Someone's eyes,gold,lock all around the ring and jerks their lips apart.,are shut in the open doorway.,widen as he approach someone's blonde fronted eyes.,start to water up.\n4243,lsmdc0041_The_Sixth_Sense-67860,939,Someone just stares at his mother's expression. Someone,Someone just stares at his mother's expression.,Someone,gold,\"stands in the opposite direction with his back turned, looking very happy.\",\"gazes up at the teen, who just smiles and takes her gaze reverses.\",gets up - - never taking his eyes off his mother - - and leaves the room.,\"looks up at him, still not saying anything.\"\n4244,lsmdc0041_The_Sixth_Sense-67860,945,Someone is kneeling on the kitchen floor trying to coax the puppy out of the broom closet. Someone,Someone is kneeling on the kitchen floor trying to coax the puppy out of the broom closet.,Someone,gold,\"gets in her car, then runs to the car outside, knocking the bystander off with her.\",fights back some tears.,\"says it is horrible, that she does n't think it has faded.\",is on his back of an ancient apartment area and vast pews stacked together with a new book.\n4245,lsmdc0041_The_Sixth_Sense-67860,936,Someone just stares at someone. Someone,Someone just stares at someone.,Someone,gold,rushes to the window.,gazes at someone as they all smile and shake their heads.,folds her napkin quietly.,suddenly lunges up and pushes him away.\n4246,lsmdc0041_The_Sixth_Sense-67860,943,Someone comes racing down the hall and scurries past someone. Someone,Someone comes racing down the hall and scurries past someone.,Someone,gold,allows an amused smile.,\", she leaves the bathroom, draws closer to his curtain and slips under the covers, as she anxiously waits as he takes.\",watches his puppy dart into the living room and under a couch.,hurries through the balcony towards a short end.\n4247,lsmdc0041_The_Sixth_Sense-67860,941,Someone enters the dark hallway. He,Someone enters the dark hallway.,He,gold,holds up the trophy.,gets startled by the sound.,runs into the front room and approaches someone who looks out.,looks down to where the ball is heading.\n4248,anetv_dffUIntKlGI,5921,The girl then hops along the chalk while looking at the camera and holding her hair out of her face. In the end she,The girl then hops along the chalk while looking at the camera and holding her hair out of her face.,In the end she,gold,begins starting and bending down.,stops dancing and brushes her paper very pink.,gives the person holding the camera a high give.,wears her shoes and removes her hair from her sides.\n4249,anetv_dffUIntKlGI,5920,A young child is seen running up and down a bricked area while standing in front of a hop scotch game drawn out. The girl then,A young child is seen running up and down a bricked area while standing in front of a hop scotch game drawn out.,The girl then,gold,walks down the board and performs the same tango routine.,hops along the chalk while looking at the camera and holding her hair out of her face.,begins playing in different locations while the girl continues hopping down the other side.,came to the end of the grass and begins with a pole.\n4250,anetv_axzmwzPQ134,985,A person is seen hitting a ball on the grass followed by several others. Various people,A person is seen hitting a ball on the grass followed by several others.,Various people,gold,are shown speaking to the camera while people play crochet behind them and celebrate.,are seen standing around a yard that leads into several clips of people playing football.,ride their horses through the pool while others watch on the side.,are seen playing soccer against one another and yelling to one another.\n4251,anetv_axzmwzPQ134,17304,The woman with big earrings is being interviewed. The players,The woman with big earrings is being interviewed.,The players,gold,are wearing white and in the field hitting the ball with the mallet while audiences are sitting in the grass watching the game.,run spot watched by the groom.,take their positions and heads.,goes through a hole in the ice.\n4252,lsmdc3048_LITTLE_FOCKERS-23111,3120,\"He adds the keyword, Chicago and finds a link to a Myspace profile. Leaning in, someone\",\"He adds the keyword, Chicago and finds a link to a Myspace profile.\",\"Leaning in, someone\",gold,uses a grappling tool.,watches a close up of his shelter.,opens the zebra print page then scrolls down to find the photo of someone kissing someone on the cheek.,gets to his feet.\n4253,lsmdc3048_LITTLE_FOCKERS-23111,3122,\"The retired cia man reads the caption, Crazy night at the Hilton.. He\",\"The retired cia man reads the caption, Crazy night at the Hilton..\",He,gold,minimizes the page as someone enters.,sees someone who stares.,leans in and writes a number.,searches for his phone number.\n4254,lsmdc3048_LITTLE_FOCKERS-23111,3121,\"Leaning in, someone opens the zebra print page then scrolls down to find the photo of someone kissing someone on the cheek. The retired cia man\",\"Leaning in, someone opens the zebra print page then scrolls down to find the photo of someone kissing someone on the cheek.\",The retired cia man,gold,\"reads the caption, crazy night at the hilton.\",is shuffling fingers backstage.,faces the dead man.,takes off his wig and caps it with a duffle.\n4255,anetv_iZImXrduFlA,17614,He is using a pressure washer to wash the leaves off his lawn. He,He is using a pressure washer to wash the leaves off his lawn.,He,gold,steps out of his car and begins using turns to clean the windshield.,picks up the glue and touches it.,proceeds to clean the car and watch it through the window.,\"sprays them up and down, pushing them down an incline.\"\n4256,anetv_rZGxJN2AOQY,18459,We see a man walk in front of the camera and we see a finger in the camera. The men,We see a man walk in front of the camera and we see a finger in the camera.,The men,gold,spin around the street and see people upside down.,hold the skateboard in the hula hoop and we see the red ending credits.,finish their game and leave the court.,pass the floor as the individual moves a motorcross straight on laughing.\n4257,anetv_rZGxJN2AOQY,18457,We see two men playing squash in an indoor court. The camera man,We see two men playing squash in an indoor court.,The camera man,gold,turns on to the man and hits the ball.,adjusts the camera and covers it with his hand.,turns to throw ball for the man.,recovers his hands and claps his hands.\n4258,anetv_rZGxJN2AOQY,7647,Two people are seen walking around a close room holding tennis rackets. The two,Two people are seen walking around a close room holding tennis rackets.,The two,gold,continue performing tricks while the camera captures their movements.,continue stepping into the pit while hitting the ball while looking in the distance.,begin hitting the ball around the area.,continue to play with one another while moving around and holding hands and pausing to fit in the correct frame.\n4259,anetv_rZGxJN2AOQY,7648,The two begin hitting the ball around the area. The men,The two begin hitting the ball around the area.,The men,gold,are sitting together watching.,go back and fourth and end by walking around the second line and laughing to one another.,get into balls and kick each other on one another.,continue to use their rackets to hit the ball around.\n4260,anetv_rAL6jEy54Tk,13956,Man is throwing darts into a dartboard. the man,Man is throwing darts into a dartboard.,the man,gold,takes the darts and darts out of his way.,grabs the darts from the board and talks to the camera.,takes the knife and grabs darts on a dartboard.,\"talks to the camera in another tube in the background, throwing a disc and walks into a vault.\"\n4261,anetv_rAL6jEy54Tk,13955,Man is standing on a room playing dart. man,Man is standing on a room playing dart.,man,gold,is standing in a room speaking.,is throwing darts into a dartboard.,is running around on a court fixing shuffleboard bars.,grabs a cup from the stool and throws it towards the camera.\n4262,anetv_Qo3riKtRg2c,1928,The man then begins bowling the ball down the lane. He,The man then begins bowling the ball down the lane.,He,gold,hits the board several times and walks away.,throws the ball down the lane in the end.,continues hitting a ball around the table while pausing to speak while smiling and shake his face.,uses a hand to catch the ball and celebrates.\n4263,anetv_Qo3riKtRg2c,1927,A man is seen standing on a bowling lane holding a ball. The man then,A man is seen standing on a bowling lane holding a ball.,The man then,gold,hits the ball back and forth over a net.,pushes another man against the ground and gets up to get hit by the ball.,begins bowling the ball down the lane.,runs up and throws the ball over the net.\n4264,anetv_Qo3riKtRg2c,5476,Man is standing in a bowling thwogin the ball to the pins. in the next row someone,Man is standing in a bowling thwogin the ball to the pins.,in the next row someone,gold,takes a ball from him.,stands on a bicycle holding a rope.,is throwing a green ball.,picks up the mallet and hits a ball full of brown kids.\n4265,lsmdc3039_JACK_AND_JILL-2352,13335,Someone and his wife wake up. He,Someone and his wife wake up.,He,gold,sits on a bench seat.,climbs out of bed.,\"returns to his chair, eyeing someone and holding his own hand.\",\"starts to turn toward someone, who holds his gaze.\"\n4266,lsmdc3039_JACK_AND_JILL-2352,13337,\"In a deserted baggage claim area, someone spots a sleeping janitor slumped on the floor. Then he\",\"In a deserted baggage claim area, someone spots a sleeping janitor slumped on the floor.\",Then he,gold,pierces his chin holding his own shoulder and forehead.,sees a brunette woman near a dozen suitcases.,\"makes his way back to someone, who punches him in the head.\",gets out and sits.\n4267,lsmdc3039_JACK_AND_JILL-2352,13336,\"He climbs out of bed. In a deserted baggage claim area, someone\",He climbs out of bed.,\"In a deserted baggage claim area, someone\",gold,leans his gun against his crotch in a hospital room.,slumped bound up with shoulder brace.,notices a timekeeper ring poking across the backyard's lawn.,spots a sleeping janitor slumped on the floor.\n4268,anetv_DEmArEKL8gc,15335,A teenage female cheer leading squad walks around on a mat and get in formation. The routine begins in a manikin challenge and they all,A teenage female cheer leading squad walks around on a mat and get in formation.,The routine begins in a manikin challenge and they all,gold,spin faster in unison.,demonstrate how to do rope way.,begin to do a flip.,continue performing at various speed for the show of audiences.\n4269,anetv_DEmArEKL8gc,15337,\"After, they do a several straddle jumps and begin thrown up in stands. Once the stunts are done, half of the team begins doing cart wheels and they all\",\"After, they do a several straddle jumps and begin thrown up in stands.\",\"Once the stunts are done, half of the team begins doing cart wheels and they all\",gold,move a different jump and begin swinging with each other.,meet back in the middle to do stunts in the air.,are alternating and a girl comes in.,\"bend down one yoga together, then continue walking.\"\n4270,anetv_DEmArEKL8gc,15338,\"Once the stunts are done, half of the team begins doing cart wheels and they all meet back in the middle to do stunts in the air. More stunts are done and the girls finish by landing in a split, they then\",\"Once the stunts are done, half of the team begins doing cart wheels and they all meet back in the middle to do stunts in the air.\",\"More stunts are done and the girls finish by landing in a split, they then\",gold,get up and hug each other in the middle of the mat.,begin rafting in the turbulent path under water.,part and jumps off a beam into the pit.,skip and swinging around and then taking turns and jumping on floor in the end.\n4271,anetv_xE9anOqq2XQ,7787,He walks away with his hands on his hips and his same throw is shown again. Several more athletes,He walks away with his hands on his hips and his same throw is shown again.,Several more athletes,gold,\"jump out of the formation then sometimes jumping back and forth together, doing cartwheels, sometimes flipping, rope and spinning, all.\",are shown doing different somersaults boards.,step up to throw the javelin into the field followed by their same throw shown again and them laughing to the camera.,perform a martial arts routine.\n4272,anetv_UzCeMCr0lM8,10124,\"A woman peels a potatoes in a rustic kitchen. Then, the woman\",A woman peels a potatoes in a rustic kitchen.,\"Then, the woman\",gold,opens the box and then grabs some more baking soda to put from the oven.,takes another potatoes and peels it with a knife.,puts salad paste onto the floor.,cuts a velvet box.\n4273,anetv_r09mVf2dQnk,7425,The worker uses a brush to clean out the sink. The worker,The worker uses a brush to clean out the sink.,The worker,gold,reaches for the double sink floor where his eyes are bathed as the man rinses the wet shower.,grabs the paste from the sink.,stands up and starts shoveling the bottom of the sink.,uses a hand towel to clean out the liquid in the sink.\n4274,anetv_r09mVf2dQnk,7424,A custodian sprays the counter of a sink with a spray bottle. The worker,A custodian sprays the counter of a sink with a spray bottle.,The worker,gold,holds up a sponge to rinse it out.,uses a brush to clean out the sink.,walks with a bucket.,\"picks up a plastic paint brush, and washes them.\"\n4275,anetv_CXM1sXEMSWI,449,An introduction comes onto the screen for a funny video about beer drinking. Some guys in a room,An introduction comes onto the screen for a funny video about beer drinking.,Some guys in a room,gold,are shown putting cotton into the cups.,prepare to do a trick with a beer can.,are walking on a court while bowling.,\"are drinking beer to watch some people wearing beer pong, their children hiding and drinking from small cups.\"\n4276,anetv_CXM1sXEMSWI,450,Some guys in a room prepare to do a trick with a beer can. They perform the trick and a guy,Some guys in a room prepare to do a trick with a beer can.,They perform the trick and a guy,gold,helps them ball.,takes a trick off of it.,begins to chug the beer.,throwing a frisbee off in the distance.\n4277,anetv_m2DOej6tPNs,16800,The camera pans right and we see others. The lades,The camera pans right and we see others.,The lades,gold,stand still and wave their arms in the air.,pulls someone onto the schematic of the road.,enters and lift their arms.,is seen fired a third time first.\n4278,anetv_m2DOej6tPNs,16798,We see people doing a dance routine in a basketball court. The people,We see people doing a dance routine in a basketball court.,The people,gold,start dancing on the stage and pose in front of her.,continue to look past each other in sync.,wave their hands in the air.,continue to walk around and hitting the ball.\n4279,anetv_m2DOej6tPNs,16799,The people wave their hands in the air. The camera pans,The people wave their hands in the air.,The camera pans,gold,left to show others.,around various movements and leads into a person paddling through past a rock.,to see people riding in water.,left and right around the left.\n4280,anetv_TdZOfBHjU5g,6086,He meticulously goes over the entire surface making sure no part of the table is left untouched. He then,He meticulously goes over the entire surface making sure no part of the table is left untouched.,He then,gold,takes the stuff off the edge of the table and picks up the russian cleaning packet.,demonstrates how to add placing he cut the noodles.,starts polishing the surface of a dinning room buffet that has bamboo finish doors.,proceeds to sharpen the knife around the side for the same.\n4281,anetv_TdZOfBHjU5g,6085,He then goes in up and down motion over the table surface to make it shiny. He,He then goes in up and down motion over the table surface to make it shiny.,He,gold,adds the brown powder on the ends of the final tip.,steels themselves and throws again as he walks.,meticulously goes over the entire surface making sure no part of the table is left untouched.,takes a close look and turns off the light again and then continues talking again.\n4282,anetv_TdZOfBHjU5g,6084,He is using a polishing sponge to polish the table top surface in circular motion. He then,He is using a polishing sponge to polish the table top surface in circular motion.,He then,gold,sits up and stirs the air.,leans forward on the carpet.,dips the bucket in white and begins buffing the surface of the canvas and showing it off to the clean paper.,goes in up and down motion over the table surface to make it shiny.\n4283,anetv_TdZOfBHjU5g,6083,There's a person wearing blue latex gloves polishing a hexagonal wooden table to demonstrate French polishing technique. He,There's a person wearing blue latex gloves polishing a hexagonal wooden table to demonstrate French polishing technique.,He,gold,rubs a mans hand with paste on one shoe.,is holding a box in a wooden window.,is shown capoeira to different angles as a man in white tries to put a block of grey backdrop back up their tripod.,is using a polishing sponge to polish the table top surface in circular motion.\n4284,anetv_TdZOfBHjU5g,6087,He then starts polishing the surface of a dinning room buffet that has bamboo finish doors. He again,He then starts polishing the surface of a dinning room buffet that has bamboo finish doors.,He again,gold,comes back and stirs his hair in different locations.,\"takes up the mop, and begins to tilt it on until it shows all he might retreat.\",is done washing his shoes and runs up to it with the mop he continues to wet.,polishes in circular motions on the top surface.\n4285,anetv_qemvXlRMQgM,14990,\"Tobacco is packed into the bowl, then covered with tin foil and punctured with a toothpick. A piece of coal is lit, then the invisible person\",\"Tobacco is packed into the bowl, then covered with tin foil and punctured with a toothpick.\",\"A piece of coal is lit, then the invisible person\",gold,begins demonstrating how to miss a tomato.,smokes the hookah while reading a book.,is seen poking out of the roof.,reaches the hole with stick and bark at it.\n4286,anetv_qemvXlRMQgM,14988,\"A close up of a blue hookah is shown bottom to top. The bowl is shown, then the hookah\",A close up of a blue hookah is shown bottom to top.,\"The bowl is shown, then the hookah\",gold,is filled with water by gloves.,is being dipped in a smoke can.,is placed on is blown by a woman.,is placed around the ceiling.\n4287,anetv_qemvXlRMQgM,14989,\"The bowl is shown, then the hookah is filled with water by gloves. The hose\",\"The bowl is shown, then the hookah is filled with water by gloves.\",The hose,gold,is placed around the chair.,is attached to the hookah.,is placed in the grass near the machine.,is added to the container.\n4288,anetv_CBoitanoH4s,5382,A close up of the ground is seen with a person laying out sticks. The person,A close up of the ground is seen with a person laying out sticks.,The person,gold,continues playing and then moves away while the cat sticks up and around the man drawing the entire.,lays out more objects together in a pile.,shovels a pile of plaster and peels them out on the side.,starts cutting the legs and speaking to the camera.\n4289,anetv_CBoitanoH4s,5383,The person lays out more objects together in a pile. The person then,The person lays out more objects together in a pile.,The person then,gold,continues wrapping and ends by putting them off the tree and putting them all on frame.,dips more stethoscope into more bowl.,begins dusting off the nails and ends by putting it away.,lights a match to the pile and creates a fire.\n4290,anetv_CBoitanoH4s,8679,A close up of the ground i d shown followed by a man stepping into frame and placing objects into a pile. The pile then catches flame and the man,A close up of the ground i d shown followed by a man stepping into frame and placing objects into a pile.,The pile then catches flame and the man,gold,continues to more text them as well as more shots of different people seen moving around.,holds it out in front of him and puts a fire on it.,begins to fire more shots of the fire pit.,adds more to the fire to make it bigger.\n4291,lsmdc3056_PUBLIC_ENEMIES-3134,18295,\"The clerk hands someone a pen, and the gang leader signs a guest register. Someone\",\"The clerk hands someone a pen, and the gang leader signs a guest register.\",Someone,gold,shoots balls into them.,notices a true detective magazine in a rack.,nods and hurries after it.,races through a barricade and breaks from gate.\n4292,lsmdc3056_PUBLIC_ENEMIES-3134,18296,Someone notices a True Detective magazine in a rack. Someone,Someone notices a True Detective magazine in a rack.,Someone,gold,\", someone and someone sit at the table on the table with their hands next to them.\",picks up a suitcase and heads off with someone.,sets her down as she sits on her knitting.,is occupied entryway and dodging traffic.\n4293,lsmdc3056_PUBLIC_ENEMIES-3134,18298,\"Now, in a hotel room, he opens the suitcase, takes out his someone gun, and cocks it. Later, he\",\"Now, in a hotel room, he opens the suitcase, takes out his someone gun, and cocks it.\",\"Later, he\",gold,gives someone a passport and she stands face to face.,strides into a hospital ward then follows his friends in the opposite direction.,opens a window and pulls the sheer curtains closed.,finds a small receptionist.\n4294,lsmdc3056_PUBLIC_ENEMIES-3134,18294,\"A balding clerk faces them. The clerk hands someone a pen, and the gang leader\",A balding clerk faces them.,\"The clerk hands someone a pen, and the gang leader\",gold,signs a guest register.,shakes the head containing a train to follow.,leans forward to join them.,sets his seat down.\n4295,lsmdc3056_PUBLIC_ENEMIES-3134,18299,\"Later, he opens a window and pulls the sheer curtains closed. The gang leader\",\"Later, he opens a window and pulls the sheer curtains closed.\",The gang leader,gold,calmly ushers the americans onto the machines and heads put on sunglasses.,knocks someone off his feet by the satchel.,arrives at a nearby trunk.,takes off his suit coat and handgun.\n4296,lsmdc3056_PUBLIC_ENEMIES-3134,18304,She runs her toes along a soap dish. As Johnny,She runs her toes along a soap dish.,As Johnny,gold,turns back to the bedroom.,pushes its dark tip back.,\"heads up a path - - chelmsford wash, someone walks up to an open window.\",goes forward with a pensive expression.\n4297,lsmdc3056_PUBLIC_ENEMIES-3134,18300,\"The gang leader takes off his suit coat and handgun. Pushing one open, he\",The gang leader takes off his suit coat and handgun.,\"Pushing one open, he\",gold,hands someone a handkerchief.,crosses the main door and finds a foot from the city floor.,peeks into a bathroom.,turns to a train station.\n4298,lsmdc3056_PUBLIC_ENEMIES-3134,18302,Someone sits nude in the tub. As he,Someone sits nude in the tub.,As he,gold,\"heaves a sigh, someone turns it.\",\"looks on, he stares at the blood tank.\",peers back out he sees a roll of door behind him.,opens the door all the way.\n4299,lsmdc3056_PUBLIC_ENEMIES-3134,18297,\"Someone picks up a suitcase and heads off with someone. Now, in a hotel room, he\",Someone picks up a suitcase and heads off with someone.,\"Now, in a hotel room, he\",gold,\"opens the suitcase, takes out his someone gun, and cocks it.\",\"gets some paperwork, and wears a seal and a napkin.\",sits with his feet on his knees.,\"checks on a destroyer, dummy view of an property reading some article on his equipment.\"\n4300,lsmdc3056_PUBLIC_ENEMIES-3134,18301,\"Pushing one open, he peeks into a bathroom. Someone\",\"Pushing one open, he peeks into a bathroom.\",Someone,gold,drop into the water.,\"standing on the bed, someone spots a news broadcast on the tv.\",sits nude in the tub.,stares at the snake.\n4301,lsmdc3056_PUBLIC_ENEMIES-3134,18293,\"Someone allows a thoughtful smile. Leaning forward, she\",Someone allows a thoughtful smile.,\"Leaning forward, she\",gold,leads him to the window again.,\"jerks her thumb toward someone, who's resting at her table.\",cups the back of someone's head in her hand and presses her lips to his.,\"takes the identical back, meeting her gaze.\"\n4302,anetv_nwpz-KGn46A,18759,She then is shown performing several different exercises as well as riding on a bicycle and leading a class. More shots of her,She then is shown performing several different exercises as well as riding on a bicycle and leading a class.,More shots of her,gold,bouncing up and down while speaking to the camera.,are shown riding on the bike and wearing a headset to speak to others.,are shown is shown as well as people walking into frame and tying off her legs.,performing impressive dive are shown as well as falling transforms into an audience.\n4303,anetv_TwQQPCjT_A4,3688,A man and a woman are sitting behind a table. Players,A man and a woman are sitting behind a table.,Players,gold,\"are playing soccer on dirt, outside.\",\"are clapping against the wall, singing and dancing.\",are putting ingredients into a large oven and dish in the oven.,pour sugar on a tree.\n4304,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14624,But huge poisonous fang breaks off and buries itself in his arm. He,But huge poisonous fang breaks off and buries itself in his arm.,He,gold,blocks the spin scene.,takes out his uniform and pulls her to the wall nearby.,pulls it out quickly.,\"walks on the road, then runs onto a dusty street.\"\n4305,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14618,Someone stands on the very top of the curved head. He,Someone stands on the very top of the curved head.,He,gold,\"looks up from his desk, still puzzled with the sound.\",swings the sword wildly.,breathes heavily on the jagged panel.,hooked on top of the rope like a doctor attempting to pull another glowing grey cable attached.\n4306,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14621,\"But someone is not of balance and drops the sword. As it slips over curved stone surface, he\",But someone is not of balance and drops the sword.,\"As it slips over curved stone surface, he\",gold,makes a grab for it.,\"covers his head, then shields him.\",casts the giant silver beam back to the left.,bumps into the blast again.\n4307,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14620,A lucky blow makes contact. But someone,A lucky blow makes contact.,But someone,gold,\"pushes him aside, knocking him inside.\",blows off the same blow.,is not of balance and drops the sword.,\"stares away for a moment, then calls and withdraws lots of money.\"\n4308,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14633,Raising the fang again someone closes the diary. He,Raising the fang again someone closes the diary.,He,gold,opens the small shot.,\"proceeded to find someone in the street away crouching at a tree, putting on his jacket.\",stabs with all his might into the black leather cover.,looks fondly at the house.\n4309,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14623,And someone thrusts the sword up to the loop of escaping mouse. But huge poisonous fang,And someone thrusts the sword up to the loop of escaping mouse.,But huge poisonous fang,gold,is emanating from the fireplace and attacks someone.,\"is lodged in someone's cheek, as the bully looks up as someone watches him.\",breaks off and buries itself in his arm.,lies on a turret on top of the branch.\n4310,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14619,He swings the sword wildly. The serpent,He swings the sword wildly.,The serpent,gold,aims for the sound of the slashing sword.,repeat his whirling rotation.,seems to break within.,walks directly towards someone's son.\n4311,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14614,\"The serpent uncoils his huge body out of the water and lifts its head towards him. Balancing on an edge, someone\",The serpent uncoils his huge body out of the water and lifts its head towards him.,\"Balancing on an edge, someone\",gold,stands in the doorway and is watched by a massive explosion of smoke.,struggles with second boar webbed alongside it.,watches in the so - great fear of the creature that was in the air.,lashes out with the sword keeping the creature.\n4312,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14627,\"Wincing with pain, someone clutches the wound on his arm. He\",\"Wincing with pain, someone clutches the wound on his arm.\",He,gold,takes the few steps more before dropping the sword and collapsing on to the ground.,marks the wound on his head and wipes it off.,returns his gaze to the clothes.,\"stands down, grabs his weapon, then drags someone through the scream.\"\n4313,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14613,He waits as the across the stone flow towards the gigantic curved head and starts to climb. The serpent,He waits as the across the stone flow towards the gigantic curved head and starts to climb.,The serpent,gold,uncoils his huge body out of the water and lifts its head towards him.,draws him closer and releases him.,appears and disintegrates with a blast of angry dust.,\"becomes smaller, its arms folded, flapping its wings.\"\n4314,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14629,Someone touches someone's hand. She,Someone touches someone's hand.,She,gold,goes into the opposite office of where someone is lying.,is still clutching the diary.,catches someone 'eye.,watches as he and her woman come the front door and steps into her 'carriage.\n4315,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14626,\"He looks up and narrows his eyes as someone staggers towards him holding the bloody sword in one hand and the Poison Fang in the other. Wincing with pain, someone\",He looks up and narrows his eyes as someone staggers towards him holding the bloody sword in one hand and the Poison Fang in the other.,\"Wincing with pain, someone\",gold,clutches the wound on his arm.,takes the spear and hunches over and looks out through the window above the house.,straightens his tie and notices the bloody cloth cobwebs.,lifts the whip ax from his hut.\n4316,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14634,\"He stabs with all his might into the black leather cover. In a flash of light, Riddle\",He stabs with all his might into the black leather cover.,\"In a flash of light, Riddle\",gold,completely disintegrates leaving behind only a few faint sparks floating in the air.,scrambles to his truck where bandage thumper cuts his grip and catches his hostage.,\", he someone he attacks a terrified someone, extending a broom, throwing it over his head at the sword in its hand.\",escape a tower by the web and chains it back in the cylinder.\n4317,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14630,She is still clutching the diary. Someone,She is still clutching the diary.,Someone,gold,takes a few spots and looks away.,grabs the diary and opens it.,gets back her diary.,\"tries to get it off, then falls to another.\"\n4318,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14632,Blood spreads over the page. Riddle,Blood spreads over the page.,Riddle,gold,\"unblinkingly them, someone faces the rest of the graves.\",puts a hand to his face as the powerful light for surges out of his body and lifts him of his feet.,looms over the furious dog.,clatters down frantically on the small drawers.\n4319,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14625,He pulls it out quickly. Its huge body,He pulls it out quickly.,Its huge body,gold,\"dangles from the taxi, with feet lit with a cigarette as someone puts it in his soup.\",\"pushed against the wall, held by the chain, a post cross to the machine.\",flops all the way around it.,lashes from side to side gradually growing more feeble until it falls and crashes lifeless to the ground.\n4320,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14615,\"Balancing on an edge, someone lashes out with the sword keeping the creature. It\",\"Balancing on an edge, someone lashes out with the sword keeping the creature.\",It,gold,can fly to his feet.,slices and pierces a rope around its neck.,smashes its head blindly against the stone carving.,grabs a few chucks.\n4321,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14628,He takes the few steps more before dropping the sword and collapsing on to the ground. Someone,He takes the few steps more before dropping the sword and collapsing on to the ground.,Someone,gold,sees a snowball approaching from the door.,takes the gun from his bags.,\"lies on the floor, smoking.\",touches someone's hand.\n4322,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93406,14631,Someone grabs the diary and opens it. Someone,Someone grabs the diary and opens it.,Someone,gold,raises the basilisk's poison fang.,walks out of the cell park.,\"screws his face up, then glances down at the bear.\",peers over the block gate which rises in a low shape with its dark furnishings.\n4323,anetv_mVC8DBsg1i0,14800,The man started to shave the dog's front leg. A white dog,The man started to shave the dog's front leg.,A white dog,gold,is shown wearing a black wig and dark suit and jeans.,is laying on the brown bed.,brushes his left away.,is brushing the dog's hair.\n4324,anetv_mVC8DBsg1i0,14798,A white dog is hiding behind the wall. A man,A white dog is hiding behind the wall.,A man,gold,puts a dog paper scarf and people run and begin practicing their experience.,holds up a glass as the lady shows off a price tag.,is brushing the dog's fur on his side first the at the back.,\"shows some cobwebs, throwing them in the grass.\"\n4325,anetv_mVC8DBsg1i0,14799,A man is brushing the dog's fur on his side first the at the back. The man,A man is brushing the dog's fur on his side first the at the back.,The man,gold,bends as he works further but just slightly demonstrates time to see that he is length long hair.,grooms the horse while talking to the camera.,started to shave the dog's front leg.,pauses for a moment to brush him against the last mane.\n4326,anetv_mVC8DBsg1i0,14802,\"The beige dog is laying on the rug while the man is shaving the beige. The white dog rubbing her face on the glass table, then the beige dog is standing on the glass sat then sat on the table, then the white dog\",The beige dog is laying on the rug while the man is shaving the beige.,\"The white dog rubbing her face on the glass table, then the beige dog is standing on the glass sat then sat on the table, then the white dog\",gold,catch and began dancing until it comes to a halt then sat back on the hardwood floor.,is standing beside the beige dog.,is giving the basket instructions.,tried to shave it.\n4327,anetv_mVC8DBsg1i0,14801,A white dog is laying on the brown bed. The beige dog,A white dog is laying on the brown bed.,The beige dog,gold,is following the female.,is wearing black shoe supplies.,is at the top of the screen.,is laying on the rug while the man is shaving the beige.\n4328,anetv_pVkwQOp1xZo,13739,Then continue to proceed with painting the fence. They,Then continue to proceed with painting the fence.,They,gold,uses calculations to roots through the wall to show the finished game.,do that multiple times trying to cover all of the brown.,walk on the wall playing together in the file room.,go tango in colorful evening positions.\n4329,anetv_pVkwQOp1xZo,13737,Someone is stroking blue paint up and down on a fence. They,Someone is stroking blue paint up and down on a fence.,They,gold,pick up signs and gag themselves.,start painting on the tile.,put the paint brush in the paint again to gather more paint.,work to get the paper stuck.\n4330,anetv_pVkwQOp1xZo,13738,They put the paint brush in the paint again to gather more paint. Then,They put the paint brush in the paint again to gather more paint.,Then,gold,paint it to the camera and align the wrapping paper inside.,continue to proceed with painting the fence.,see the tags are shown on their blueprint.,spray paint and spray paints on the fence.\n4331,anetv_4OeZViscNp4,2034,A man is seen speaking to the camera while holding up a pair of shoes and leads into him untying the shoes and rubbing a rag along it. The man,A man is seen speaking to the camera while holding up a pair of shoes and leads into him untying the shoes and rubbing a rag along it.,The man,gold,presents information to the camera and shows at various undergarments with a fork and instructions.,continues to wipe down the shoe using various tools and spray and ends by presenting them.,continues shaving the dryer while the camera pans back to the man and ends with the man peeling up and cleaning his mouth.,has all the shoes and begins measuring the shoe several more times to the groom and ends by pointing to the floor ironing.\n4332,anetv_4OeZViscNp4,19049,A man is taking the shoe lace out of a shoe. He,A man is taking the shoe lace out of a shoe.,He,gold,puts the dog on the floor and wipes it back with a cloth.,spins the man and rubs something beneath his leg with a towel.,wipes the shoe off with a blue rag.,places a piece of partners on a shoe.\n4333,anetv_4OeZViscNp4,19051,He puts white tape on the bottom of the shoe. He,He puts white tape on the bottom of the shoe.,He,gold,grabs the black cloth and wipes the back of the cloth.,goes inside and tosses a paper to her.,sprays the shoe with something from a can.,guides it back into the hole.\n4334,anetv_91XkPU8A5hs,8168,A woman in a black shirt is playing a violin. She,A woman in a black shirt is playing a violin.,She,gold,starts playing the accordian as she plays.,stops playing two drums and begins playing the piano.,picks up her flute.,puts the violin down in her lap.\n4335,anetv_91XkPU8A5hs,18331,She is playing the violin with a long bow. Her hand,She is playing the violin with a long bow.,Her hand,gold,\"moves quickly, taking the note with her hands as she nails the violin of air jumping to the top table.\",watches someone uncorks it.,shakes along the chords as she continues to play.,pushes on to her keyboard.\n4336,anetv_91XkPU8A5hs,18330,A woman is standing in front of a green background. She,A woman is standing in front of a green background.,She,gold,uses a brush to use a brush.,is playing the violin with a long bow.,picks up a flute and starts to mop around.,is then shown spraying the vomit using the empty sink.\n4337,lsmdc1040_The_Ugly_Truth-8669,4453,\"It's a pair of remote - controlled, vibrating briefs. Someone\",\"It's a pair of remote - controlled, vibrating briefs.\",Someone,gold,sits at a live film.,stands in front of the mirror and applies lipstick.,lowers himself over the dirt and drapes his hands protectively on both of the doors.,crawls across an empty seat in his office.\n4338,lsmdc1040_The_Ugly_Truth-8669,4455,Someone perches on the arm of a chair. She,Someone perches on the arm of a chair.,She,gold,\"sips a glass of white wine, and glances at the vibrating briefs, and considers for a moment.\",'s in a chair in a hospital room.,smiles at him and raises her eyebrows.,watches a new player.\n4339,lsmdc1040_The_Ugly_Truth-8669,4457,\"She reaches under white dress and pulls down her briefs. As she does so, D'Artagnan the cat\",She reaches under white dress and pulls down her briefs.,\"As she does so, D'Artagnan the cat\",gold,comes up and takes a bite.,trots past and climbs onto a chair.,fixes a striped dress with her dog.,dries down until she is bleeding.\n4340,lsmdc1040_The_Ugly_Truth-8669,4459,\"Someone picks up the black, lacy vibrating briefs and puts them on. Someone\",\"Someone picks up the black, lacy vibrating briefs and puts them on.\",Someone,gold,opens the back door and peeks inside.,studies himself for the first time and picks up her notebook and the envelope.,pulls up the briefs and straightens out her dress.,tosses a blanket to the floor below someone.\n4341,lsmdc1040_The_Ugly_Truth-8669,4460,Someone pulls up the briefs and straightens out her dress. D'Artagnan the cat,Someone pulls up the briefs and straightens out her dress.,D'Artagnan the cat,gold,set on her elbows.,\"stares at her as she picks up the small, cylindrical remote control unit.\",flips over the table and effectively cross the stealing panties.,sits at the bar.\n4342,lsmdc1040_The_Ugly_Truth-8669,4456,\"She sips a glass of white wine, and glances at the vibrating briefs, and considers for a moment. She\",\"She sips a glass of white wine, and glances at the vibrating briefs, and considers for a moment.\",She,gold,then pours more food into her pan as she goes.,feeds another girls brunette.,reaches under white dress and pulls down her briefs.,moves beneath her and takes a breath.\n4343,lsmdc1040_The_Ugly_Truth-8669,4451,Someone steps out of her apartment. Someone,Someone steps out of her apartment.,Someone,gold,\"picks it up and looks around, frowning.\",pulls herself back onto the back of the club and locks the door to two agents who chucks it aside.,steps out on a ledge and draws his bag.,\", pretty concerned, sits on the other side of the bed.\"\n4344,anetv_WHYEBsWp5qY,12468,A man is standing on a track. He,A man is standing on a track.,He,gold,is overcome with joy.,sprints down the track and jumps into a sand pile.,walks around the rink moving to the field.,person throws a javelin into a pile of sand.\n4345,anetv_WHYEBsWp5qY,12469,He sprints down the track and jumps into a sand pile. A slow motion replay,He sprints down the track and jumps into a sand pile.,A slow motion replay,gold,is shown of him jumping.,is shown of him scoring goal.,is shown in slow motion.,shows another jump to the crowd.\n4346,anetv_WHYEBsWp5qY,14117,\"Once the athlete is ready, he takes off and does a complete long jump into the pit full of sand. Immediately after, a replay is shown and attention\",\"Once the athlete is ready, he takes off and does a complete long jump into the pit full of sand.\",\"Immediately after, a replay is shown and attention\",gold,is given to his feet for when he takes off.,is paused practicing shot in slow motion.,is thrown to a man standing close to the crowd.,is violent up one of someone's legs.\n4347,anetv_WHYEBsWp5qY,14116,\"A man is standing on a runway outside on the side of the track, positioning his feet preparing to count his steps. Once the athlete is ready, he\",\"A man is standing on a runway outside on the side of the track, positioning his feet preparing to count his steps.\",\"Once the athlete is ready, he\",gold,jumps over a high bar while a path and then jumping his feet back while looking off into the distance as continue holding arms.,jumps high in the air and a high up into the air as he lands on his feet and swings her around.,starts wrestle on the mat.,takes off and does a complete long jump into the pit full of sand.\n4348,lsmdc0017_Pianist-56509,18965,\"Someone takes out a flashlight, sees the ladder in place, leading up to the loft. Someone\",\"Someone takes out a flashlight, sees the ladder in place, leading up to the loft.\",Someone,gold,\"takes it up, turning it around.\",searches the cave completely frantically and picks up the card.,climbs out on the low bed and leans back against the bed.,\"climbs the ladder, squeezes into the loft and looks down at the german captain, who shines his light on him.\"\n4349,lsmdc0017_Pianist-56509,18964,Someone and the German Captain enter. Someone,Someone and the German Captain enter.,Someone,gold,leaves the emergency rooms as someone rides the main wagon her direction.,leads someone through the entry gate as someone releases the cab.,closes down and closes the door for him.,\"takes out a flashlight, sees the ladder in place, leading up to the loft.\"\n4350,lsmdc0017_Pianist-56509,18963,Someone just stares at him. Someone,Someone just stares at him.,Someone,gold,finishes his phone and walks out.,\"hesitates, takes the tin and then shuffles past the german captain towards the door.\",grimaces as he holds his mugshot's eye.,hops up on her laptop and copies at her computer.\n4351,lsmdc1034_Super_8-8303,9181,\"The soldiers shepard the boys onto a bus in the car park. Sitting in his car, someone\",The soldiers shepard the boys onto a bus in the car park.,\"Sitting in his car, someone\",gold,watches as they are driven away.,looks at a photo of a solemn faced woman.,runs over to someone.,climbs out of his truck and they climb bank.\n4352,lsmdc1034_Super_8-8303,9182,\"He gets on his cb radio. Still in Air Force uniform, someone\",He gets on his cb radio.,\"Still in Air Force uniform, someone\",gold,makes his way though the evacuation center.,is on exercise equipment.,asks someone to interview someone with someone.,\"looks down the road at his sex in chicago, then sits on the sidewalk and looks around.\"\n4353,lsmdc1034_Super_8-8303,9179,\"Air Force soldiers burst in on the boys. In the car park, someone\",Air Force soldiers burst in on the boys.,\"In the car park, someone\",gold,spots three men in people.,\"sits in the car smoking a joint, oblivious of the military activity around him.\",sees the odd wave slam down.,fires a keys at the broken ramp.\n4354,anetv_N-1b20gDnCM,1098,Several individual are standing outside in a large green field swinging paddles back and forth. Then they all,Several individual are standing outside in a large green field swinging paddles back and forth.,Then they all,gold,join the hop and flip followed by people enjoying themselves.,get in a canoe and start paddling though the water together.,get ready to go down balancing the ball in a goal showing it to the other personal effects and lets it go.,sit together as one team tries to win and the same man wearing red rubber two scores in the beginning.\n4355,anetv_N-1b20gDnCM,6654,They move their paddles from side to side and they enjoy the mellow day on the water. once they are done they,They move their paddles from side to side and they enjoy the mellow day on the water.,once they are done they,gold,carry kayaks and climb down in one more cliff.,pour the water all over the back.,finish and wave to boat themselves.,come back to shore and go to have some drinks.\n4356,anetv_N-1b20gDnCM,6653,Outside by a river a group of people wearing life jackets and holding paddles stand. They move their canoes into the water and they,Outside by a river a group of people wearing life jackets and holding paddles stand.,They move their canoes into the water and they,gold,place fire into the fabric.,lock on the conversation of two girls later with the camera.,continue together as they drink into the water.,begin to paddle in the water.\n4357,anetv_N-1b20gDnCM,1100,\"As they travel, boats are seen as well as the trees and birds in nature surrounding them. When they are finished, they leave the boats on the side of the water and they all\",\"As they travel, boats are seen as well as the trees and birds in nature surrounding them.\",\"When they are finished, they leave the boats on the side of the water and they all\",gold,watch the train going down the steep rapids.,are dressed in different clothing eating at a restaurant.,sail towards the group while they all ride places in the sand.,go down the slide.\n4358,anetv_N-1b20gDnCM,1099,\"Then they all get in a canoe and start paddling though the water together. As they travel, boats\",Then they all get in a canoe and start paddling though the water together.,\"As they travel, boats\",gold,others are on the surface.,continues several rapids stream down the steps while watching.,\"float over an island, passing numerous buildings.\",are seen as well as the trees and birds in nature surrounding them.\n4359,lsmdc3013_BURLESQUE-4606,19419,\"An overhead light shines down on three sexy nurses at an exam chair. In a lace bodysuit, someone\",An overhead light shines down on three sexy nurses at an exam chair.,\"In a lace bodysuit, someone\",gold,uses the open plastic container cover.,puts the creation cupcake at a base.,sits at a table in the bath floor.,stands and rocks her hips.\n4360,anetv_7LhgGs4TrYA,18386,\"A man is seated, talking to the camera. He\",\"A man is seated, talking to the camera.\",He,gold,starts using a cue in a case.,starts dancing along a stage.,is wearing a suit and tie with a colorful background.,demonstrates how to paint a ladder.\n4361,anetv_7LhgGs4TrYA,18387,He is wearing a suit and tie with a colorful background. He,He is wearing a suit and tie with a colorful background.,He,gold,\"continues talking, using his hands as he goes.\",walks into the room and has a towel on his arm.,\"takes the shot out of the car, then stops, looking to the offscreen someone.\",looks around and teaches him a small outdoor bow.\n4362,anetv_N3rFdrfE3q8,5319,A man goes down a slide wearing a blue helmet. He,A man goes down a slide wearing a blue helmet.,He,gold,adds dry vegetation and takes him in the snow water.,\"kneels several times then, then stops and slides forward with the machine.\",falls onto the ground after going down the slide.,\"continues brushing the hair on a client, disheveled and talking.\"\n4363,anetv_N3rFdrfE3q8,5318,A boy picks up a rake off the ground and carries it. A man,A boy picks up a rake off the ground and carries it.,A man,gold,goes down a slide wearing a blue helmet.,sits on the lawn mower and gazes up at the man.,flies from the sand.,throws a blue alongside red bowling ball.\n4364,anetv__hzMRy2_q4g,2995,The person then pushes the fruit around the bowl with a spoon over and over again. The person,The person then pushes the fruit around the bowl with a spoon over and over again.,The person,gold,then shakes the mixture and the camera zooms in to the food followed by the rest in the pitcher.,continues by taking the form.,drops the spoon in the mixture and ends with text across the screen.,stirs a bit and spread its butter out over the pan.\n4365,anetv__hzMRy2_q4g,2994,A close up of fruit is seen sitting on a plate when a person's hand places them into a container. The person then,A close up of fruit is seen sitting on a plate when a person's hand places them into a container.,The person then,gold,begins washing around a piece of wood and moving them back and forth.,taps a person cutting the ends with a scissors.,pushes the fruit around the bowl with a spoon over and over again.,picks up a clear cup and tucks juice into the glass.\n4366,anetv_QdmUojrWdmE,9756,\"Kelly Slater is featured on a successful run, followed by more clips riding the waves. Kelly Slater\",\"Kelly Slater is featured on a successful run, followed by more clips riding the waves.\",Kelly Slater,gold,are in the arena.,comes the photographer with the bluffs draped over his face.,is paused mid wave to wrap up the story line.,is seen as well as driving on the water.\n4367,anetv_QdmUojrWdmE,9753,A couple laughs together on the beach in a tent awaiting more surfing. A man,A couple laughs together on the beach in a tent awaiting more surfing.,A man,gold,is then shown prepping his board with surf wax.,dives in front of the sink and continues paddling.,\"and child are standing next to the table waiting a little to get a boy by the arm, the table is in a few\",is shown people surfing as well as several riding horses along.\n4368,anetv_QdmUojrWdmE,9752,A helicopter rides over the shoreline where the surfers are riding. A couple,A helicopter rides over the shoreline where the surfers are riding.,A couple,gold,steps onto a high day leading to a french trail.,laughs together on the beach in a tent awaiting more surfing.,of kids riding bikes enters a room.,sand castles on the sand with wet sand.\n4369,anetv_QdmUojrWdmE,9754,A man is then shown prepping his board with surf wax. The crowd,A man is then shown prepping his board with surf wax.,The crowd,gold,is then seen in the news s playing lacrosse.,starts to stop bumper.,watches others riding waves.,jumps rope and ends by racing to the water while only the cadets rolling water around him.\n4370,anetv_QdmUojrWdmE,9750,Music plays as surfers ride the waves. A few men,Music plays as surfers ride the waves.,A few men,gold,swing him at one another and wave to the camera as well as speaking and laughing with the camera.,walk by the line line tubing as they part.,stand in a raft and move in a boat with rapids.,\"are shown preparing to surf, prepping their board and getting dressed.\"\n4371,anetv_QdmUojrWdmE,9751,\"A few men are shown preparing to surf, prepping their board and getting dressed. A helicopter\",\"A few men are shown preparing to surf, prepping their board and getting dressed.\",A helicopter,gold,is shown at the airport.,rides over the shoreline where the surfers are riding.,\"joins the zip line, leaving only balls in their left to get them the sand.\",lifts off the person with orange helmet strides over landing on it.\n4372,anetv_QdmUojrWdmE,9755,The crowd cheers multiples surfing runs on. Kelly Slater,The crowd cheers multiples surfing runs on.,Kelly Slater,gold,stand on stage as a man carves a gallery of notes on a screen.,surfaces and sets together a diving board by a pool.,\"is featured on a successful run, followed by more clips riding the waves.\",appears on the screen preparing to do sit ups.\n4373,anetv_Hhc10CrukfA,11847,A couple of cookies are on a plate with a glass of milk. Cookies,A couple of cookies are on a plate with a glass of milk.,Cookies,gold,are shown being made into dough and baked in the oven.,take it off and put it into a plastic bag.,are texting on the plate.,are putting on a tray.\n4374,anetv_Hhc10CrukfA,11848,Cookies are shown being made into dough and baked in the oven. The entire cookie making process,Cookies are shown being made into dough and baked in the oven.,The entire cookie making process,gold,appears with a ready batch of eggs cooking in the cookies.,is spread in purple with chocolate colored cookies.,\"is shown in reverse, ending with ingredients on a plate and a box of mix on a table.\",is drizzled between the wrapping cookies.\n4375,anetv_7kQ3JRkEQr0,3679,People are sitting down watching them. A woman in a black robe,People are sitting down watching them.,A woman in a black robe,gold,is strolling off outside.,is standing up next to them.,stands behind the marching band and talks to them who is behind the wheel of a marching band.,is walking around next to the woman.\n4376,anetv_7kQ3JRkEQr0,3678,Two girls are standing up doing karate. People,Two girls are standing up doing karate.,People,gold,are standing in front of the crowd watching them.,are standing behind them.,are being hit by a fitness trainer.,are sitting down watching them.\n4377,anetv_StTr5O_wGXI,17145,We then see a game of volleyball taking place. The men,We then see a game of volleyball taking place.,The men,gold,play the instrument in the crowd and the camera zooms in.,watch and clap while people play and pose.,kick the ball back and forth.,\"fight over the ball, hitting it back and forth.\"\n4378,anetv_StTr5O_wGXI,17144,A news man is talking inside a news room. We then,A news man is talking inside a news room.,We then,gold,see people in a casino drinking a cup of coffee.,see kids wearing white uniforms and celebrating their gifts.,see a game of volleyball taking place.,see smoke and liquor in the river.\n4379,anetv_StTr5O_wGXI,600,A man is giving the news as a world graphic rotates behind him. It,A man is giving the news as a world graphic rotates behind him.,It,gold,\"is shown on a different man, two tackles behind them and men in rapid momentum.\",\"floats up on land with images of foreboding, rims, and wheels going side to side toward the overpass.\",'s athletes are shown floss about a game hours a tape runner.,cuts to a story about soccer players.\n4380,anetv_StTr5O_wGXI,601,It cuts to a story about soccer players. He,It cuts to a story about soccer players.,He,gold,comes from the window and goes for it.,span the men's.,then shown and players line up and talk about the ball.,gives the news over the soccer players.\n4381,lsmdc0028_The_Crying_Game-63256,15739,\"Suddenly the man moves like lightning, jerking his head down so the hood comes off, throwing his body, tied to the chair, over someone. He\",\"Suddenly the man moves like lightning, jerking his head down so the hood comes off, throwing his body, tied to the chair, over someone.\",He,gold,\"pins her to the ground, his body bent with the chair.\",is in black gear on.,\"is n't paying a attention to miss, as he comes across the water.\",turns it back to him and coldly brushes it.\n4382,lsmdc0028_The_Crying_Game-63256,15740,\"He pins her to the ground, his body bent with the chair. He\",\"He pins her to the ground, his body bent with the chair.\",He,gold,presses the button to his chest.,notices the woman tag her purse and answers.,frowns as she walks all around the parking lot.,writhes on top of her in a grotesque parody of love.\n4383,lsmdc0028_The_Crying_Game-63256,15741,\"He writhes on top of her in a grotesque parody of love. She is screaming and the room is alive, each man awake,\",He writhes on top of her in a grotesque parody of love.,\"She is screaming and the room is alive, each man awake,\",gold,\"grabbing guns, screaming.\",is smoking too fast.,picks up the formulas in her bottle desperately.,riding the machine - trailer.\n4384,anetv_Qx4YLntwZ5s,18948,The lady sections her hair and adds product. The lady,The lady sections her hair and adds product.,The lady,gold,styles her hair and sections the hair into sections.,twists her hair around her finger.,shows another girl's hair around a bun.,yanks the braid in back.\n4385,anetv_Qx4YLntwZ5s,18947,We see the lady doing her hair. The lady,We see the lady doing her hair.,The lady,gold,leaves and kisses the lady in a ponytail.,shakes her hips and continues ironing.,stands and talks to the camera.,sections her hair and adds product.\n4386,anetv_Qx4YLntwZ5s,18946,The lady shows us the products and tools she uses on her hair. We,The lady shows us the products and tools she uses on her hair.,We,gold,see the lady doing her hair.,\", the lady uses a comb to decorate a window in a right hand.\",design is shown and the girl places her shoe on the person's brown shoe.,see the finished product in a kitchen.\n4387,anetv_Qx4YLntwZ5s,18950,The lady begin blow drys her hair. We,The lady begin blow drys her hair.,We,gold,see the movement of the fly.,see images of the ladies finished hair.,\", the lady uses the curlers to melt on iron hair.\",see the lady lace one of the pomade with their hand.\n4388,anetv_Qx4YLntwZ5s,18944,We see a lady taking in a room and touching her hair. There,We see a lady taking in a room and touching her hair.,There,gold,\"rows of other girls who are marching fast, and we see an ending title card.\",woman puts the hair down and replaces the lens with a utensil.,is a second address to a man over woman.,is a title screen.\n4389,anetv_Qx4YLntwZ5s,18945,There is a title screen. The lady,There is a title screen.,The lady,gold,is now standing next to a tube.,showing the card needed.,shows us the products and tools she uses on her hair.,plays the flute over her face as the band plays.\n4390,anetv_Qx4YLntwZ5s,18949,The lady twists her hair around her finger. The lady,The lady twists her hair around her finger.,The lady,gold,turns off the camera.,wipes her face with the stick.,continues painting and laughs.,begin blow drys her hair.\n4391,anetv_vwpaEsh0-1U,6176,People run onto an indoor soccer arena. Two men,People run onto an indoor soccer arena.,Two men,gold,shake hands in the middle of the arena.,fall off their bikes onto the ground.,are playing lacrosse on a dodge field.,sled in a yellow soccer.\n4392,anetv_vwpaEsh0-1U,6179,They start playing a game of soccer. The crowd,They start playing a game of soccer.,The crowd,gold,cheer each other around their times.,cheers on the ends.,is a mass of people standing in a circle.,cheers for them while watching.\n4393,anetv_vwpaEsh0-1U,6181,A man jumps onto a fence in front of the crowd. A man,A man jumps onto a fence in front of the crowd.,A man,gold,plays a stick ad.,stops and ties his shoe.,comes flying over his face holding a selfie.,stands on his back to a man in black.\n4394,anetv_vwpaEsh0-1U,10029,Several people are shown running inside onto a field with hundreds of people watching on the sidelines. The men,Several people are shown running inside onto a field with hundreds of people watching on the sidelines.,The men,gold,continues playing several more games as they receive sunblock from their angles.,warm up and do several jumps and tricks while wandering around and huddling up.,continue running around the field while spinning and continue riding on the rope.,continuously perform layups in cards while laughing with one another one after the other.\n4395,anetv_vwpaEsh0-1U,6180,The crowd cheers for them while watching. A man,The crowd cheers for them while watching.,A man,gold,jumps onto a fence in front of the crowd.,is interviewed in slow motion.,stops speaking and starts to play drums.,throws a frisbee for the dog.\n4396,anetv_vwpaEsh0-1U,6178,They do a huddle and turn in a circle. They,They do a huddle and turn in a circle.,They,gold,spin and kick around each other.,put the lights into it.,jump very fast to finish their routine.,start playing a game of soccer.\n4397,anetv_vwpaEsh0-1U,10031,The men then play soccer for a bit when one jumps on the fence and several grab him on the sides. He,The men then play soccer for a bit when one jumps on the fence and several grab him on the sides.,He,gold,bows to a man and several team mates help him and finishes with him tying his shoes.,continues expressing it around himself while smiling to the camera and holding the string in his hands.,continues to make a pinata which is tied to a rope multiple times and the older man runs.,gives two more bounce and a ball around the neck as he claps his hands around the calf and then walks away.\n4398,anetv_vwpaEsh0-1U,10030,The men warm up and do several jumps and tricks while wandering around and huddling up. The men then,The men warm up and do several jumps and tricks while wandering around and huddling up.,The men then,gold,walk to the camera and begin arm wrestling with one another his watch.,continue to play paintball on the ground as one another speaks to him and leads into him dancing in a ring.,play soccer for a bit when one jumps on the fence and several grab him on the sides.,continue playing and smiling as it cheers.\n4399,anetv_W4LIBSfe6bc,18018,A man does a tattoo on the waist area of a woman using a needle. The man,A man does a tattoo on the waist area of a woman using a needle.,The man,gold,cleans the area of the tattoo with a tissue.,is laying talking about the woman that cuts up pieces of paper.,takes his sunglasses and starts cutting the woman's nails.,enters the white curling machine and removes the tape.\n4400,anetv_W4LIBSfe6bc,18019,The man cleans the area of the tattoo with a tissue. The man,The man cleans the area of the tattoo with a tissue.,The man,gold,sits back on his chair.,takes off his mask then wipes it off.,continues doing the tattoo and cleaning.,shovels leaves from the shed by creating a soft silver tree.\n4401,anetv_vKNsvOvC5mA,5878,They paddle their canoes as they go down the river. They,They paddle their canoes as they go down the river.,They,gold,ride slowly out of their kayaks and into the water.,\"are at the bottom of the mountain as they shake hands, a small group of people appear in the middle of a river.\",come in on paddles to surf the waves.,are trying to reach a finish line in the race.\n4402,anetv_vKNsvOvC5mA,2788,The credits of clip are shown. People,The credits of clip are shown.,People,gold,see on some rafts while sailing in the ocean.,are kayaking on a rocking body of water.,are playing volleyball as they walk in the arena.,are working on the floor.\n4403,anetv_vKNsvOvC5mA,2789,People are kayaking on a rocking body of water. People,People are kayaking on a rocking body of water.,People,gold,are doing a competition and see a rafter paddling in the water.,are in the ocean doing windsurf in the water.,are driving up next to the water on icy water.,walk on a road and carry their kayak.\n4404,anetv_vKNsvOvC5mA,5877,White water rapids are going down a river. They,White water rapids are going down a river.,They,gold,stand on the shore and fall into the water.,paddle their canoes as they go down the river.,use paddles to stay afloat on the river.,are trying to pull the fish out of the water.\n4405,anetv_HCsfxpQ8C1M,12847,\"A man holds a weigh on his back, then he kneels on the floor. After, he\",\"A man holds a weigh on his back, then he kneels on the floor.\",\"After, he\",gold,walks to celebrate and drop his arms while still on top of the horse.,takes a hold of a stick and moves it around with a few inches.,starts lifting his knees.,jumps from the floor to stand while the weigh is on his back.\n4406,lsmdc1062_Day_the_Earth_stood_still-100865,11037,They are caught in the police car's spotlight as she backs away from him in horror. Someone's face,They are caught in the police car's spotlight as she backs away from him in horror.,Someone's face,gold,goes black as he looks at her.,appears on the cop's computer.,is painfully into his and his feet hit the ground.,\"is smudged with soot, like a pig.\"\n4407,lsmdc1062_Day_the_Earth_stood_still-100865,11038,Someone's face appears on the cop's computer. The officer,Someone's face appears on the cop's computer.,The officer,gold,lowers the instrument in his hands.,drives up to them.,takes someone from the embrace and kisses him.,jogs around the corner of the office.\n4408,lsmdc0002_As_Good_As_It_Gets-46270,17183,Some crazy street - freak has slipped under her perfect guard and momentarily devastated her. Someone,Some crazy street - freak has slipped under her perfect guard and momentarily devastated her.,Someone,gold,runs out into the parlor and hugs someone.,senses that he is gone way too far.,\"is standing by the house, writing.\",looks up at her.\n4409,anetv_yGO1YnMQNRI,10737,A man in a blue shirt throws a disc onto the field. A man in a purple shirt,A man in a blue shirt throws a disc onto the field.,A man in a purple shirt,gold,throws a disc onto the field.,throws a disc.,is talking to a field.,picks up a title rope.\n4410,anetv_yGO1YnMQNRI,10736,A man in a green shirt throws a disc onto a field. A man in a blue shirt,A man in a green shirt throws a disc onto a field.,A man in a blue shirt,gold,throws a disc onto the field.,is standing in front of his kg tree.,is running down the track of stilts.,walks up holding a ball.\n4411,lsmdc0031_The_Lost_Weekend-65320,15407,\"He puts the handkerchief back in his pocket, lifts the glass and drains it in one gulp. Someone\",\"He puts the handkerchief back in his pocket, lifts the glass and drains it in one gulp.\",Someone,gold,has come up with the bar towel to wipe off the wet ring left by the glass.,picks up the bottle and dials a two - something.,\"appears on the stairs, sips his wine, looks down.\",suspiciously dive out of the water.\n4412,lsmdc0031_The_Lost_Weekend-65320,15392,\"He gives a quick glance in each direction, to see that he is not observed. A salesman\",\"He gives a quick glance in each direction, to see that he is not observed.\",A salesman,gold,\"rises in the foreground, his back to the camera.\",comes near and fills their glasses.,stands on a blue and white covered outcrop.,appears at the bottom of the staircase before doing a rehearsing routine.\n4413,lsmdc0031_The_Lost_Weekend-65320,15390,Through the glass door we see someone hurrying up. He,Through the glass door we see someone hurrying up.,He,gold,\"peers into the shop to make sure there are no other customers, then quickly steps inside and stands breathing heavily.\",\"slumps to one side, peering off into the distance.\",\"stops before the door, takes a glass out and places it in.\",raises nearly a glass.\n4414,lsmdc0031_The_Lost_Weekend-65320,15412,He points at the bag with the apples showing. Someone,He points at the bag with the apples showing.,Someone,gold,\"rubs a calm dashboard, then lays on the seat.\",\"looks, but does n't get it.\",\"shifts his eyes, glancing to the patients.\",finds a piece of wire mail and walks off.\n4415,lsmdc0031_The_Lost_Weekend-65320,15406,\"As he puts the match in the ashtray, his eyes fall on that jigger of whiskey. He\",\"As he puts the match in the ashtray, his eyes fall on that jigger of whiskey.\",He,gold,\"puts the handkerchief back in his pocket, lifts the glass and drains it in one gulp.\",starts to climb out the car.,puts a hand on the dashboard.,stares up at the dusty ceiling.\n4416,lsmdc0031_The_Lost_Weekend-65320,15396,\"The salesman hands him a bag and steps out of the shot towards the cash register. Meanwhile, someone\",The salesman hands him a bag and steps out of the shot towards the cash register.,\"Meanwhile, someone\",gold,enters a hospital room carrying his coffees.,thrusts the bottles in the bag.,uses a valet to check on two men on the site.,arrives on the street.\n4417,lsmdc0031_The_Lost_Weekend-65320,15401,\"He takes the bills and change from his pocket, puts it on the bar. Someone\",\"He takes the bills and change from his pocket, puts it on the bar.\",Someone,gold,closes the fridge door and heads off.,walks across the room again.,\"pours the drink, then returns to squeezing lemons.\",follows someone and living away.\n4418,lsmdc0031_The_Lost_Weekend-65320,15398,\"Someone takes the package and walks past the newcomer towards the door, hiding it from him gracefully, like a football in a sneak play. Someone\",\"Someone takes the package and walks past the newcomer towards the door, hiding it from him gracefully, like a football in a sneak play.\",Someone,gold,\"comes wearily out, picks out his briefcase, and flings it into his pocket.\",is talking as he speaks into the microphone.,comes out with the bottles in the paper bag.,whips the penguin out from the frame.\n4419,lsmdc0031_The_Lost_Weekend-65320,15397,\"Meanwhile, someone thrusts the bottles in the bag. The salesman\",\"Meanwhile, someone thrusts the bottles in the bag.\",The salesman,gold,hands him his change.,taps one of the aisles.,shows three shredded attachments and a mouse full of dollar bills.,hands someone up a crate.\n4420,lsmdc0031_The_Lost_Weekend-65320,15386,\"Someone can't see him, instinctively holds the five dollars behind his back. She\",\"Someone can't see him, instinctively holds the five dollars behind his back.\",She,gold,turns it over to him!,climbs a spiral staircase into the corridor and sees her on the porch.,\"closes the door, takes the key and starts down the stairs.\",gently rubs the barrel of his gun again.\n4421,lsmdc0031_The_Lost_Weekend-65320,15393,\"A salesman rises in the foreground, his back to the camera. Someone\",\"A salesman rises in the foreground, his back to the camera.\",Someone,gold,glides on to a lower corner of an screen.,steps up to her car and holds the hood in her arms.,watches the silhouette of a group of kids as they sing.,points to two bottles in the foreground.\n4422,lsmdc0031_The_Lost_Weekend-65320,15405,\"He takes a pack of cigarettes from his pocket and shakes one out, lights it. As he puts the match in the ashtray, his eyes\",\"He takes a pack of cigarettes from his pocket and shakes one out, lights it.\",\"As he puts the match in the ashtray, his eyes\",gold,fall on that jigger of whiskey.,\"look wide, and greenery sways apologetically to his left.\",go black and red.,squeeze twinkle at the sight of food.\n4423,lsmdc0031_The_Lost_Weekend-65320,15388,The camera moves slowly toward them so that only about eight bottles fill the screen. The camera,The camera moves slowly toward them so that only about eight bottles fill the screen.,The camera,gold,zooms in on someone's face carrying an license to the ringing telephone.,spots them half - thicker and then a faint print skateboarding at a height on their shoulders.,moves down a solemn shade.,is behind the rack of liquor in a store on third avenue.\n4424,lsmdc0031_The_Lost_Weekend-65320,15404,\"He puts it down and starts playing the nonchalant, casual drinker - - the man who can take it or leave it. He\",\"He puts it down and starts playing the nonchalant, casual drinker - - the man who can take it or leave it.\",He,gold,jumps into the air.,steps at the gate and looks at the driver.,\"takes a pack of cigarettes from his pocket and shakes one out, lights it.\",is on a building.\n4425,lsmdc0031_The_Lost_Weekend-65320,15408,Someone has come up with the bar towel to wipe off the wet ring left by the glass. He,Someone has come up with the bar towel to wipe off the wet ring left by the glass.,He,gold,\"turns back to the cop, takes his lipstick and swallows it through some glass.\",holds the empty jigger in his hand.,\"steps out, raise his hands on his knees, and looks back at him, with pride and excitement.\",\"smiles and stops, realizing he is n't certain what he has said.\"\n4426,lsmdc0031_The_Lost_Weekend-65320,15399,\"He wants to start down the street but about twenty - five feet away stand two middle - aged someone ladies, one of them kerbing her dog on a leash. Someone\",\"He wants to start down the street but about twenty - five feet away stand two middle - aged someone ladies, one of them kerbing her dog on a leash.\",Someone,gold,\"removes his hat in a courtly bow, very much at ease with the apples.\",kicks her across the room and tries for it.,crowds are on the screen as he starts to walk.,is already closing the door.\n4427,lsmdc0031_The_Lost_Weekend-65320,15403,\"Someone picks up the glass, is suddenly acutely aware of the people at the table, of someone's eyes. The glass\",\"Someone picks up the glass, is suddenly acutely aware of the people at the table, of someone's eyes.\",The glass,gold,gets pitch inside of someone's face and does not move.,has n't served.,freezes halfway to his mouth.,bears someone's view.\n4428,lsmdc0031_The_Lost_Weekend-65320,15400,\"Someone sits on a bar stool, putting down the paper bag. He\",\"Someone sits on a bar stool, putting down the paper bag.\",He,gold,lowers his eyes to the chalkboard.,depicts a clock with the headboard.,exchanges a long glance to the newcomer then blinks out.,\"takes the bills and change from his pocket, puts it on the bar.\"\n4429,lsmdc0031_The_Lost_Weekend-65320,15391,\"He peers into the shop to make sure there are no other customers, then quickly steps inside and stands breathing heavily. He\",\"He peers into the shop to make sure there are no other customers, then quickly steps inside and stands breathing heavily.\",He,gold,grabs his hat and turns back to his car.,\"gives a quick glance in each direction, to see that he is not observed.\",bursts into a jog.,sips from a flask whiskey.\n4430,lsmdc0031_The_Lost_Weekend-65320,15395,Someone gives him the money and picks up the bottles like a miser grabbing gold. The salesman,Someone gives him the money and picks up the bottles like a miser grabbing gold.,The salesman,gold,\"makes a shout after him, empties of his dust high into the air.\",hands him a bag and steps out of the shot towards the cash register.,sits in a puddle.,places someone onto his apron on the counter and peels off his jacket.\n4431,lsmdc0031_The_Lost_Weekend-65320,15402,\"Someone pours the drink, then returns to squeezing lemons. Someone\",\"Someone pours the drink, then returns to squeezing lemons.\",Someone,gold,sprinkles on the tray.,is setting on bowls and talking into a glass with a woman on the beach.,pours oil on her portable.,\"picks up the glass, is suddenly acutely aware of the people at the table, of someone's eyes.\"\n4432,lsmdc0031_The_Lost_Weekend-65320,15410,\"From the table in the background comes someone, headed for the powder room. Passing someone, she\",\"From the table in the background comes someone, headed for the powder room.\",\"Passing someone, she\",gold,lays her hands out.,holds his lighter against her arm as she searches through it through a shadowy wall.,runs her finger through the neckline of his hair.,stuffs her fingers under the glass.\n4433,anetv_I91LmNcwN4Y,16364,A woman is seen standing next to a chair and showing off various objects and tools while speaking to the camera. She then,A woman is seen standing next to a chair and showing off various objects and tools while speaking to the camera.,She then,gold,sprays the paint and finishes by pulling the kites off with her brush.,begins knitting towards the camera and shows various products tattooing her body.,brushes the chair and wipes it down with a rag and puts a bottle of polish on the chair.,shows up on a top on her mouth talking to the camera and ends with him walking back.\n4434,anetv_I91LmNcwN4Y,18640,A woman is standing outside with some white furniture. She,A woman is standing outside with some white furniture.,She,gold,is eating dry food on the floor.,begins to point and explain the process to paint her furniture yourself like a diy project.,is playing a new flute.,picks a couple of bags and takes them out of the oven to pick it up.\n4435,anetv_I91LmNcwN4Y,18641,She begins to point and explain the process to paint her furniture yourself like a diy project. After she shows the colors of the paint that she is planning to use then she,She begins to point and explain the process to paint her furniture yourself like a diy project.,After she shows the colors of the paint that she is planning to use then she,gold,paints what she has used and crosses on them before measuring up at the painting.,looked at the fan and put it in a holder that does n't move.,\"is properly painting the bush, talking before dipping it in another paint container.\",grabs some grey paint and paint brush ans begins at the top of the white chair.\n4436,anetv_I91LmNcwN4Y,18642,After she shows the colors of the paint that she is planning to use then she grabs some grey paint and paint brush ans begins at the top of the white chair. She,After she shows the colors of the paint that she is planning to use then she grabs some grey paint and paint brush ans begins at the top of the white chair.,She,gold,she demonstrates she is completed.,\", she finishes her hair and gathers it.\",wrings the paper out of the window and puts it on the ends.,dabs around on the chair a bit with a piece of cloth and then picks up another jar of paint.\n4437,lsmdc0006_Clerks-48699,13284,The half - filled trash can swallows the ring of keys. He,The half - filled trash can swallows the ring of keys.,He,gold,reaches out to uncover plate.,is a command on the faded record player.,\"glances at the door, peers inside, and gives the door a tug.\",is stuck to the first lock.\n4438,lsmdc0006_Clerks-48699,13283,Someone lifts a ring of keys from the counter. The half - filled trash,Someone lifts a ring of keys from the counter.,The half - filled trash,gold,pop dead feet from the table.,stare in an empty basket.,can swallows the ring of keys.,returns to the front desk.\n4439,lsmdc3058_RUBY_SPARKS-28289,15815,They find someone wielding a chainsaw. Someone,They find someone wielding a chainsaw.,Someone,gold,picks up someone's shirt while someone helps.,approaches he turns a head.,shoots another as someone races.,lifts his helmet's face mask.\n4440,anetv_nQQ-tcG6wBA,4659,A woman is kneeling on a wooden floor. The woman,A woman is kneeling on a wooden floor.,The woman,gold,is shown vigorously talking to a male dressed in white.,shows how to mix the silver piece of fabric.,is hanging a bag of clothes on it.,is talking to the camera and pointing to her knees and ankles.\n4441,anetv_nQQ-tcG6wBA,12785,A woman is kneeling on a hard wood floor. She,A woman is kneeling on a hard wood floor.,She,gold,is demonstrating different moves to stretch the leg muscles.,is then seen brushing on the floor while kicking the large ball.,is laying cement over the carpet on the floor.,walks into people behind the woman.\n4442,anetv_nQQ-tcG6wBA,12786,She is demonstrating different moves to stretch the leg muscles. She,She is demonstrating different moves to stretch the leg muscles.,She,gold,struggles to get up.,throws the arrow at the player.,leans forward and back several times.,is struggling in a way for a trick.\n4443,anetv_nQQ-tcG6wBA,4663,The woman sits up on her knees and is pointing to the ground. The woman,The woman sits up on her knees and is pointing to the ground.,The woman,gold,takes the keys and continues pushing the wall back and fourth.,is standing up demonstrating pole dancing.,kisses a wooden end.,turns and walks to the edge of the mat.\n4444,anetv_nQQ-tcG6wBA,4661,The woman begins lifting her knees off the floor. The woman,The woman begins lifting her knees off the floor.,The woman,gold,is demonstrating exercise moves.,is guiding an elderly lady while on her shoe.,moves above to mirror her face.,stands up and holds into the plastic and sits down to stand next to the woman.\n4445,anetv_nQQ-tcG6wBA,4660,The woman is talking to the camera and pointing to her knees and ankles. The woman,The woman is talking to the camera and pointing to her knees and ankles.,The woman,gold,begins lifting her knees off the floor.,cuts the braid using the tool and properly fix her hair along small areas.,is tattooing the woman's leg with the handle.,wipes the accordion out with her tubby the camera.\n4446,anetv_vX0fg06e9co,8334,A woman is seen bending down to take a sip of water and leads into her spinning a hula hoop around herself. The woman,A woman is seen bending down to take a sip of water and leads into her spinning a hula hoop around herself.,The woman,gold,continues spinning around on the table and looking back to the audience.,continues swimming up and down while still smiling to the camera and swinging behind her with her feet up.,continues to hula hoop while looking to the camera.,continues spinning the hula hoop around while grabbing several more and performing tricks in the city center.\n4447,anetv_0jeq5CeP2P0,4384,A kite is seen flying around the air with a person riding behind the kite on the sand. The camera,A kite is seen flying around the air with a person riding behind the kite on the sand.,The camera,gold,continue moving down the woods and the camera zooms in.,continues to swim around the water still looking into the water as he continues surfing back.,continues to pan around the beach capturing the person flying a kite and him riding around and holding it.,follows the man to show more clips of the cameraman riding the kite.\n4448,anetv_TSVDMiy_FC4,9741,A close up pair of shoes is shown followed by various text instructions and tools laid out. A person,A close up pair of shoes is shown followed by various text instructions and tools laid out.,A person,gold,is then seen wrapping paper into a box and presenting it and looking to the camera.,is then seen rubbing down the show with a rag using several ingredients and zooming in on the clean pair of shoes.,is then seen scraping peeling off the shoes while looking off from the camera.,begins demonstrating how to turn the instrument in push to place the instrument.\n4449,anetv_N-92_rikI8U,17666,He gets right back up and dusts off the snow from his clothes. He,He gets right back up and dusts off the snow from his clothes.,He,gold,is covered with sweat and dirt like cloths and soap while washing the borders.,lifts his sunglasses to his nose and starts over the floor while explaining.,talks to another person through a hands free device attached on his coat to let him know he's okay.,accelerates ahead through the trash.\n4450,anetv_N-92_rikI8U,17665,He then falls down to the ground as he reaches the bottom of the slope. He,He then falls down to the ground as he reaches the bottom of the slope.,He,gold,dives on to the train.,gets right back up and dusts off the snow from his clothes.,makes a splash on the river.,then hops down another slope and is pulling dirt and more dirt on it.\n4451,anetv_N-92_rikI8U,17663,There's a man skiing down a very steep mountain slope. The man,There's a man skiing down a very steep mountain slope.,The man,gold,\"is blue, as well.\",is going down very fast and steadily while fully dressed in ski gear and goggles.,continues throughout the snow as he watched from where shallow water can fall.,demonstrates riding angles and cuts in front of a mountain.\n4452,anetv_N-92_rikI8U,17664,The man is going down very fast and steadily while fully dressed in ski gear and goggles. He then,The man is going down very fast and steadily while fully dressed in ski gear and goggles.,He then,gold,stopped to talk and then racing a.,finally takes all the momentum out of animated cheers and almost out of frame as he goes.,falls down to the ground as he reaches the bottom of the slope.,demonstrates the process to pick up the snow and blow out part of the blow.\n4453,anetv_7BM40jqPYgA,393,\"A boy enters the scene and pulls on a pair of gloves while wearing a sports protective mask, turns on a blue machine on the back steps and picks up a solder. The boy then\",\"A boy enters the scene and pulls on a pair of gloves while wearing a sports protective mask, turns on a blue machine on the back steps and picks up a solder.\",The boy then,gold,begins waxing the ingredients of the bicycle while jumps together and begins carving the knife over a board using an orange tool.,turns to the driver's window and turns to the camera and turns.,begins to solder a disassembled bicycle on the ground in a backyard.,turns over on the ground to see him from other direction.\n4454,anetv_7BM40jqPYgA,394,The boy then begins to solder a disassembled bicycle on the ground in a backyard. The boy then,The boy then begins to solder a disassembled bicycle on the ground in a backyard.,The boy then,gold,runs over and begins to headlamp them in two.,uses keys to tighten the different pedals of the bike.,sets down the marsh and rubs it over his rib before touching the steering wheel.,gets up and walks out of the scene after lifting the lid on his mask.\n4455,anetv_oT42qP2zIXo,14394,\"The man then picks up the two knives near his cutting board and demonstrates how they each cut a piece of green onion the cutting board, then he fastens the sharpener onto the counter, runs his knife through the sharpener a few times then goes back to showing how it cuts the green onion and how the blades look. The man\",\"The man then picks up the two knives near his cutting board and demonstrates how they each cut a piece of green onion the cutting board, then he fastens the sharpener onto the counter, runs his knife through the sharpener a few times then goes back to showing how it cuts the green onion and how the blades look.\",The man,gold,talks to the other man and shaves the boys's hair.,is once again shaving the table using its blade to cut through a picture.,\"is touching, holding and showing the camera a closer look of the sharpener.\",points to the black log and then shows his board next to the camera.\n4456,anetv_oT42qP2zIXo,14395,\"The man is touching, holding and showing the camera a closer look of the sharpener. The outro is a person drawing the owl and the website onto a large piece of paper with markers, gives a thumbs up when they're done, then the screen\",\"The man is touching, holding and showing the camera a closer look of the sharpener.\",\"The outro is a person drawing the owl and the website onto a large piece of paper with markers, gives a thumbs up when they're done, then the screen\",gold,begins to black in the hole.,again spread black and a dirt color.,goes to a digital white screen of the same owl that was just drawn and the website below it.,begins again the same color.\n4457,anetv_1JKgr3KfoHo,465,They are practicing for a big game. They,They are practicing for a big game.,They,gold,go up and down the steps and they start teetering over the disc and a fast he attempts to turn two smooth.,begin to crush the balls in their hands as they make out the balls.,hit the puck back and forth and spin on the ice.,continue to fight with the red swords.\n4458,anetv_1JKgr3KfoHo,15697,Scenes of various individuals practicing hockey skills are shown. A man,Scenes of various individuals practicing hockey skills are shown.,A man,gold,speaks to a woman who takes a disk in her hands.,posing on a elliptical elliptical and several other male items are shown on the screen.,is very flipping upside down.,talks to a group of children in the rink.\n4459,anetv_1JKgr3KfoHo,464,A group of ice hockey players are gathered on the ice. They,A group of ice hockey players are gathered on the ice.,They,gold,make their way blocked by an opponent while another player picks the ball into a goalie.,pause a game between two hurling.,are involved in a game of beer pong.,are practicing for a big game.\n4460,anetv_1JKgr3KfoHo,15698,More scenes of hockey skill practice are shown. An individual,More scenes of hockey skill practice are shown.,An individual,gold,raises a recreational stick in the park.,zooms on the camera in large locations watching.,with precision points to an instructor demonstrating proper techniques in a gym with others.,is shown pushing against a heavy bag on the ice while the man adds weight to it.\n4461,anetv_c0qbyRWSptg,2219,A storm hits and a man is crying. The boats,A storm hits and a man is crying.,The boats,gold,tumble down the mountain.,zoom into the sky.,prepare for being given.,continue to go through the water.\n4462,anetv_EqSXihtiv5g,5340,The ingredients are shown such as scissors and glue. Then shapes,The ingredients are shown such as scissors and glue.,Then shapes,gold,\"are cut, folded, and prepared.\",are shown as the man cleaners styling person's hair in different parts of the room.,are shown as a person nails it.,down te poses and the tool of person takes a layup in half time.\n4463,anetv_EqSXihtiv5g,16518,\"A person cuts pink circles from craft paper, then the person folds the circles in half. After, the person\",\"A person cuts pink circles from craft paper, then the person folds the circles in half.\",\"After, the person\",gold,add liquid to the fabric and power wipe out.,takes the potato and stands up.,joins four circles to form a rectangle knotted with a ribbon.,shows black fabric and switch to shaving.\n4464,anetv_EqSXihtiv5g,16517,\"Materials to make a gift pack is shown. A person cuts pink circles from craft paper, then the person\",Materials to make a gift pack is shown.,\"A person cuts pink circles from craft paper, then the person\",gold,begins wrapping a box of shattered pieces.,put oil in a christmas bolt.,puts a wrap onto the sandwich.,folds the circles in half.\n4465,anetv_EqSXihtiv5g,5339,A tutorial is made for a diy giftpack. The ingredients,A tutorial is made for a diy giftpack.,The ingredients,gold,are engaged in rock paper scissors.,are shown such as scissors and glue.,are then mixed in three layers of wood and sliced put on.,\"is added to the mixture, strong, triumph, and served.\"\n4466,anetv_G-giwt-TN8A,18566,We see a tractor blowing leaves. We,We see a tractor blowing leaves.,We,gold,\", put in a line, sit on top of the tree.\",see the tractor up close.,see a man opening up a camera.,see a person pushing a skate object on the windshield.\n4467,anetv_G-giwt-TN8A,18565,We see a tractor and a title screen. We,We see a tractor and a title screen.,We,gold,see a closing title screen.,see a tractor blowing leaves.,see a man break from a rock.,see the man spraying him with a snow hose.\n4468,anetv_G-giwt-TN8A,18567,We see the tractor up close. We,We see the tractor up close.,We,gold,see an older man riding a bicycle over the swimming course.,see the closing title screen.,see tubes and snow down the hill.,see a person riding down a dolly and kneels down a steep slope holding a shovel.\n4469,lsmdc0005_Chinatown-48091,9742,\"Someone stands, and sweats, watching a Japanese gardener trim a hedge. A chauffeur\",\"Someone stands, and sweats, watching a Japanese gardener trim a hedge.\",A chauffeur,gold,bursts open the back door and runs across the other street.,prepares his time with them.,is washing down a cream - colored packard with a chamois.,crashes up the stairs leading to the little suburban house with with horns fields.\n4470,lsmdc0005_Chinatown-48091,9739,\"A powerful chinese someone with heavy hair and a half - jacket of gold on one front tooth, answers the door. He\",\"A powerful chinese someone with heavy hair and a half - jacket of gold on one front tooth, answers the door.\",He,gold,\"stares down at the dead someone in the abyss, thousands of roman angels.\",hands the chinese someone a card from his wallet.,makes his way to another row of people wait behind someone.,\"winks at her, then ignores her.\"\n4471,lsmdc0005_Chinatown-48091,9740,He hands the Chinese someone a card from his wallet. Someone,He hands the Chinese someone a card from his wallet.,Someone,gold,\"takes it and disappears, leaving someone standing in the doorway.\",sits on the door.,\"goes to the driver's side, saunters door in front of him and goes outside.\",\"leans back against the wall, his lips pressed together.\"\n4472,lsmdc0005_Chinatown-48091,9746,\"Follows him, trying to check out the rooms as he goes. A maid\",\"Follows him, trying to check out the rooms as he goes.\",A maid,gold,\"rushes toward him, then moves back out.\",enters and glances after someone.,is cleaning in the den.,\"walks out, shutting someone into the kitchen.\"\n4473,lsmdc0005_Chinatown-48091,9749,Someone is left standing by the pond. The Gardener,Someone is left standing by the pond.,The Gardener,gold,\"nods, and is off, leaving someone staring at the object in the bottom of the pond that is gleaming.\",is at the other end of the table.,\"hops off the bar, and breaks into a run.\",knocks him out of the shot.\n4474,lsmdc0005_Chinatown-48091,9747,\"After a moment, the Gardener drops the long probe, the waters recede. The pond\",\"After a moment, the Gardener drops the long probe, the waters recede.\",The pond,gold,seems to have no sleds.,is white with bright lights from the glow of the determined head.,\"placed a 20 foot lens of sunlight on the sill, countless clouds of darkness billows around the sky.\",is over - flowing.\n4475,lsmdc0005_Chinatown-48091,9743,A chauffeur is washing down a cream - colored Packard with a chamois. Steam,A chauffeur is washing down a cream - colored Packard with a chamois.,Steam,gold,rises off the hood.,grabs the baby and brushes his teeth.,begins to wash the dishes on the beach.,wheels his back from his kitchen and into a glass courtyard.\n4476,lsmdc0005_Chinatown-48091,9748,It's suddenly very quiet except for the runnning water. Someone,It's suddenly very quiet except for the runnning water.,Someone,gold,is working against the hood of the car.,is left standing by the pond.,arrives with only the cabin.,hangs it horizontally in the small window.\n4477,lsmdc0005_Chinatown-48091,9745,\"The Chinese someone is gesturing for him to follow. Follows him,\",The Chinese someone is gesturing for him to follow.,\"Follows him,\",gold,\"looks around, and stops her attention.\",trying to check out the rooms as he goes.,watching her frightened camera.,suddenly tired of someone capoeira.\n4478,lsmdc3068_THE_BIG_YEAR-3849,12604,Someone joyfully runs to him. Someone,Someone joyfully runs to him.,Someone,gold,glides off down the path and throws the tiger down.,\"smiles at the open classroom doors, filling our view.\",climbs down from someone and tackles him to a podium.,scoops her up in his arms and spins her around in a warm embrace.\n4479,lsmdc3068_THE_BIG_YEAR-3849,12606,He stands at a round doorway overlooking a beautiful landscape. His thoughtful gaze,He stands at a round doorway overlooking a beautiful landscape.,His thoughtful gaze,gold,\"lingers on her, then hesitantly bows her head outside.\",following her as she motors through the tree in a tight manner.,focused on a happy couple with a baby.,fixed on the crowded board several blocks.\n4480,lsmdc3068_THE_BIG_YEAR-3849,12605,\"Someone scoops her up in his arms and spins her around in a warm embrace. At someone's, house, someone\",Someone scoops her up in his arms and spins her around in a warm embrace.,\"At someone's, house, someone\",gold,sits close to someone.,escorts someone over to the far gate.,joins her husband at a window and rests her chin on his shoulder.,and someone leave their apartment.\n4481,lsmdc3068_THE_BIG_YEAR-3849,12608,\"Through binoculars, we watch gulls. Lowering his binoculars, someone\",\"Through binoculars, we watch gulls.\",\"Lowering his binoculars, someone\",gold,looks around and exhales.,watches the open tv briefly.,regards someone affectionately as she happily watches the birds.,looks up at a guy with a flaming torch.\n4482,lsmdc3068_THE_BIG_YEAR-3849,12607,His thoughtful gaze focused on a happy couple with a baby. Someone and someone,His thoughtful gaze focused on a happy couple with a baby.,Someone and someone,gold,set off in the dining room.,follow someone up to trumpets hairpin.,arrive at the edge of a rocky coast.,\"drive away, shifting their gear to their hind legs.\"\n4483,anetv_5v9p5jBN_Hg,4205,\"The woman stands on a lane, then she runs to perform a long jump that lands in the sand. The jump of the woman\",\"The woman stands on a lane, then she runs to perform a long jump that lands in the sand.\",The jump of the woman,gold,takes off her blindfold while explaining and doing slow hip music.,is repeated several times.,is shown again in the motion.,does a high flip.\n4484,anetv_5v9p5jBN_Hg,4204,\"A woman talks in a gym. The woman stands on a lane, then she\",A woman talks in a gym.,\"The woman stands on a lane, then she\",gold,hits the puck on the counter.,throws a ball and flips into the chalk sand.,swings with the hammer.,runs to perform a long jump that lands in the sand.\n4485,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9355,\"Someone is now about nine years old. Very early, someone\",Someone is now about nine years old.,\"Very early, someone\",gold,is sitting on a glass front porch as crowds work.,visited someone to love them.,tiptoes into her room and wakes her.,looks out the door.\n4486,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9357,\"Someone rubs his bare, tattooed chest, then sits up and shoves a cigar in his mouth. The tug\",\"Someone rubs his bare, tattooed chest, then sits up and shoves a cigar in his mouth.\",The tug,gold,makes its way along the river through a thick fog.,tunnel shows us hard to right the stone drain shut.,comes out of an open gap in his cell block.,van smashes and the intruder surges toward him.\n4487,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9363,\"In the hospital, someone turns to someone. Someone\",\"In the hospital, someone turns to someone.\",Someone,gold,turns to look at a safe on the wall.,stares towards the window.,whips off his hair.,steps up to his side with admiring whispers in his ear.\n4488,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9358,The tug makes its way along the river through a thick fog. People,The tug makes its way along the river through a thick fog.,People,gold,is in the water.,walk around a group of lifeboats watching a skiers sit on the calm water.,\"stand at the prow, looking out.\",are in the ocean behind them.\n4489,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9356,Someone joins someone outside in the early morning light. They,Someone joins someone outside in the early morning light.,They,gold,arrive at someone's tugboat.,start his study and walk around the dining room.,watch him and sit up in bed.,travel up onto the station mattress sleeping in its back.\n4490,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9361,He peers through the window and sees an ocean liner passing the other way. People,He peers through the window and sees an ocean liner passing the other way.,People,gold,sit on the walkway and looks down.,are shown at various pictures of the carnival.,are lying on benches in the stands before dawn.,climb the steps up to the wheelhouse.\n4491,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9362,People climb the steps up to the wheelhouse. Someone,People climb the steps up to the wheelhouse.,Someone,gold,smashes someone's head into its crumbling hand.,emerges from the other stall.,waves to the larger vessel.,deposits his head down from the stairs.\n4492,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9360,\"In the wheelhouse, someone sips coffee from an enamel. He\",\"In the wheelhouse, someone sips coffee from an enamel.\",He,gold,pours someone over the lump.,son pulls the lifting diver.,instructs wearing glasses of the eight - year - younger man's white blazer.,peers through the window and sees an ocean liner passing the other way.\n4493,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9354,\"He spasms, then vomits. Someone\",\"He spasms, then vomits.\",Someone,gold,jumps up and throws himself off the mat.,runs out of control.,is now about nine years old.,rips out a fork.\n4494,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9359,\"People stand at the prow, looking out. In the wheelhouse, someone\",\"People stand at the prow, looking out.\",\"In the wheelhouse, someone\",gold,\"dives solemnly into the water, patting her lower.\",\"sits in class, half oblivious by the shout.\",sips coffee from an enamel.,kneels and walks out of view.\n4495,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86445,9364,Someone stares towards the window. Someone,Someone stares towards the window.,Someone,gold,\"stares, his head at someone's knees.\",blocks the table ahead.,sits down with the diary and reads.,\"steps back, twirling her wand.\"\n4496,anetv_bCdIcqRYJvo,3127,We see three people in the front row watching and listening to the man as he plays and one person one row behind them. We,We see three people in the front row watching and listening to the man as he plays and one person one row behind them.,We,gold,see the kids playing in front of a large crowd.,see a man warming up by shot.,see a big shot.,\"see the three people, two women and one men.\"\n4497,anetv_bCdIcqRYJvo,3126,A man sits and plays a black grand piano in an empty auditorium. We,A man sits and plays a black grand piano in an empty auditorium.,We,gold,see another man kicking up a 6.,see smoke rings in a play room.,are waiting in the background for a moment.,see three people in the front row watching and listening to the man as he plays and one person one row behind them.\n4498,anetv_bCdIcqRYJvo,3128,The player stands and plays. The player,The player stands and plays.,The player,gold,sets down his body.,moves to the other player and begins bite to ball.,kicks a dodge ball into the goal.,finishes and stands up.\n4499,anetv_xBGgX2PqAo8,18640,The man shoots pool alone. The bearded man,The man shoots pool alone.,The bearded man,gold,walks past the table.,puts armed sixth hanging in a tower.,watches as he fires.,grabs the cup from someone.\n4500,anetv_xBGgX2PqAo8,18641,The bearded man walks past the table. The man,The bearded man walks past the table.,The man,gold,pulls a block of red flames out from the half.,finishes and talks to the camera before turning it off.,\"smiles after stretcher and marches cautiously past the other shedding, protected the pairs.\",\"covers his face, then spreads his arms in front of his large face.\"\n4501,anetv_xBGgX2PqAo8,18639,A man sets up a camera in a bar. The man then,A man sets up a camera in a bar.,The man then,gold,stands tall up in a tall glass.,talks to the camera.,rubs lotion onto his hands.,cleans the water excess water from a table.\n4502,anetv_whcxrkF2hws,7164,The Province of Albay seal is shown. Several team members,The Province of Albay seal is shown.,Several team members,gold,play beach volley ball onto the ice.,are shown explaining the benefits of the two.,\"are on a court outdoors, playing volleyball.\",prepare to play with a trophy.\n4503,anetv_whcxrkF2hws,7165,\"Several team members are on a court outdoors, playing volleyball. They\",\"Several team members are on a court outdoors, playing volleyball.\",They,gold,are all in a war match competing against each other.,lob the ball back and forth over the net in front of an audience.,go to the skies and the break and ends with being weldy.,are hitting the ball back and forth in the pool.\n4504,anetv_whcxrkF2hws,7166,\"They lob the ball back and forth over the net in front of an audience. Afterward, they\",They lob the ball back and forth over the net in front of an audience.,\"Afterward, they\",gold,show the game over the net.,\"celebrate, laughing and smiling.\",continue to play arm games one after the other with a penalty shot.,take off belt and engage in a game of tug of war.\n4505,anetv_HW9SFCj0dVU,14672,A man is holding a flint and rubs a knife against the flint on a napkin to create a spark. He throws the napkin into a fire pit and someone,A man is holding a flint and rubs a knife against the flint on a napkin to create a spark.,He throws the napkin into a fire pit and someone,gold,bursts into flame.,\"picks it up, puts down his mallet and takes his bulb.\",speeds to board a hole and's cast on the ground.,adds sticks to the fire.\n4506,anetv_HW9SFCj0dVU,8259,The man turn on fie and put it on a bowl. other men,The man turn on fie and put it on a bowl.,other men,gold,swim over a few times and add water bottles along the ice.,begin to play a game of hockey with their hand.,put the coat on and see the pile of wood cleaning.,are standing behind the man sitting.\n4507,anetv_A8q6beSMpEE,3042,A man is holding windex near his car door. The man then,A man is holding windex near his car door.,The man then,gold,clean the ski with the rollerblades.,sprays the window with windex and wipes the window.,leaves as if the black car is being tipped by the car.,stuffs solution in front of the man he is in the room using shears.\n4508,anetv_A8q6beSMpEE,3044,The man rolls the window up. The man,The man rolls the window up.,The man,gold,gets off the car.,tosses the handlebars on stilts.,slides over the edge and hanging the ornament.,finishes and rolls the window down to wipe it some more.\n4509,anetv_A8q6beSMpEE,3043,The man then sprays the window with windex and wipes the window. The man,The man then sprays the window with windex and wipes the window.,The man,gold,\"continues with the area of the building, continuing on talking before leaving off and looking down.\",watches closely and end with the information for the house.,sprays a purple picture in a shelving bike.,rolls the window up.\n4510,anetv_bp1blshSKJU,2133,A person is playing the piano. The piano turns and a woman,A person is playing the piano.,The piano turns and a woman,gold,flinches in the lock room.,is standing behind it.,stops to start the film.,walks through the front of the field.\n4511,anetv_bp1blshSKJU,2132,A woman is standing on a piano. A person,A woman is standing on a piano.,A person,gold,starts playing the flute.,is playing an accordion in front of her.,is playing the piano.,is putting makeup on her face.\n4512,anetv_UjG_uHlFf3s,9093,Two men speak on walkie talkies on the side and the men drive the cars into one another. One pushes the car back and the men all,Two men speak on walkie talkies on the side and the men drive the cars into one another.,One pushes the car back and the men all,gold,get out and speak to one another.,\"go around, takes a bow and joke and move across.\",look back.,sit by the car and try to pull back the wipers of the car.\n4513,anetv_UjG_uHlFf3s,9094,One pushes the car back and the men all get out and speak to one another. Another car,One pushes the car back and the men all get out and speak to one another.,Another car,gold,approaches once more and more clips are shown of people playing gear over the wavy water.,comes along the snowy road and plays again.,is seen followed by the man talking while the man moves sunscreen in.,is test with the men speaking to the camera and pushes the car back while others look in disbelief.\n4514,anetv_UjG_uHlFf3s,9092,\"A clip of the show top Gear is shown with one man sitting in a car speaking to the camera, and another speaking to the camera in a different car. Two men speak on walkie talkies on the side and the men\",\"A clip of the show top Gear is shown with one man sitting in a car speaking to the camera, and another speaking to the camera in a different car.\",Two men speak on walkie talkies on the side and the men,gold,follow them and leads into the finished product.,drive the cars into one another.,begin working the bike and the men moving their hands.,walk off behind him past new propellers and begin spinning around their shoulders.\n4515,anetv_ui7LIgAF8-E,12042,A woman is seen performing a jump off of a high dive and landing into a pool. More shots of her diving,A woman is seen performing a jump off of a high dive and landing into a pool.,More shots of her diving,gold,are shown again shortly after in slow motion.,are shown as well as a man moving becoming different's movement.,are shown as well as riding along the water and jumping in front of.,is shown as well as more shots of people jumping on the diving board and others watching on the side.\n4516,lsmdc3071_THE_DESCENDANTS-5386,17715,\"It leads him to a neighborhood nestled by verdant foothills. Arriving at a two - story house, he\",It leads him to a neighborhood nestled by verdant foothills.,\"Arriving at a two - story house, he\",gold,speeds past someone's mansion from the mustached subway floor.,passes a little brown goat on his way up the driveway.,shuffles off across a muddy lawn while a goat sits at her desk on her cell.,awakens and checks his pocket watch and nods.\n4517,lsmdc3071_THE_DESCENDANTS-5386,17711,Someone turns away and paces restlessly. His hands,Someone turns away and paces restlessly.,His hands,gold,come to the sidewalk.,curl into fists then release.,are bleeding and heavy.,are resting on the fountain platform upside down.\n4518,lsmdc3071_THE_DESCENDANTS-5386,17718,He ventures further into his friend's house. Someone,He ventures further into his friend's house.,Someone,gold,talks to the camera.,emerges on an upstairs landing.,takes a seat on a step porch.,starts to break open the door.\n4519,lsmdc3071_THE_DESCENDANTS-5386,17710,He has hands on his hips. Someone,He has hands on his hips.,Someone,gold,runs up as someone climbs the stairs to meet high.,steals a handful of his guns.,moves his finger around.,turns away and paces restlessly.\n4520,lsmdc3071_THE_DESCENDANTS-5386,17713,He goes out onto the porch and steps into a pair of soft - soled shoes. He,He goes out onto the porch and steps into a pair of soft - soled shoes.,He,gold,observes someone and someone having a warm smile while one of the anklet riders is standing in front of someone.,tries to climb more bed.,hops and hobbles as he pulls them over his heels one at a time.,\", the teen man hands the smug young man a kiss.\"\n4521,lsmdc3071_THE_DESCENDANTS-5386,17716,\"Arriving at a two - story house, he passes a little brown goat on his way up the driveway. Through a window in a cluttered kitchen, we\",\"Arriving at a two - story house, he passes a little brown goat on his way up the driveway.\",\"Through a window in a cluttered kitchen, we\",gold,watch him arrive at a door where he lets himself in.,see the offscreen someone in his pouring swirling uniform.,see a neighbor using his gear and sniff the grass in front of him.,find someone sleeping inside a pumpkin.\n4522,lsmdc3071_THE_DESCENDANTS-5386,17717,\"Through a window in a cluttered kitchen, we watch him arrive at a door where he lets himself in. He\",\"Through a window in a cluttered kitchen, we watch him arrive at a door where he lets himself in.\",He,gold,nods awkwardly.,turns to face someone.,ventures further into his friend's house.,picks his pawn up.\n4523,lsmdc3071_THE_DESCENDANTS-5386,17714,He hops and hobbles as he pulls them over his heels one at a time. Someone,He hops and hobbles as he pulls them over his heels one at a time.,Someone,gold,breaks into a run.,'s jaw drops as she looks to herself.,shifts his troubled gaze.,opens his eyes and hugs someone lazily.\n4524,lsmdc3071_THE_DESCENDANTS-5386,17712,\"His hands curl into fists then release. Facing someone, he\",His hands curl into fists then release.,\"Facing someone, he\",gold,rubs his chin and nose.,\"drags on his wife, clad.\",gazes slight glance at the bodhi tree.,unfastens one of his fingers and injects and kills itself.\n4525,anetv_firp_OhUMPc,19451,A man is on an open field with frisbees. He,A man is on an open field with frisbees.,He,gold,uses the frisbees to train a collie dog.,is applauding for a couple of people afterwards.,shoves a frisbee dog in the air and ducks around.,tosses frisbees the dog as the dog jumps down the field.\n4526,anetv_firp_OhUMPc,1189,A young man is playing with a black and white dog in a grass field using frisbees. The dog,A young man is playing with a black and white dog in a grass field using frisbees.,The dog,gold,falls on the ground while the dog is chasing.,is sitting on the ground next to the dog doing several tricks.,performs tricks using the frisbee as the crowd watches.,stands up and climbs up a hill on the horse and runs with it.\n4527,anetv_firp_OhUMPc,19452,He uses the frisbees to train a collie dog. The dog,He uses the frisbees to train a collie dog.,The dog,gold,\"chases, grabs, and does tricks to get the frisbees.\",continues eating and missing the dogs.,\"charges once to the ground, puts it in his mouth and runs for the dog, but resumes the task.\",run to another direction and find the dog chuckling in response.\n4528,anetv_firp_OhUMPc,1190,The dog performs tricks using the frisbee as the crowd watches. The man,The dog performs tricks using the frisbee as the crowd watches.,The man,gold,performs several tricks on the frisbee.,continues petting around the grass while using the frisbees to turn the dog around.,finishes with the dog jumping up in his arms.,chases the frisbees and pets again while the male tries to catch.\n4529,anetv_KEWlDtEt2cQ,12593,The people then ballroom dance as people watch. The man,The people then ballroom dance as people watch.,The man,gold,pauses and watches and does his dance.,stops and times facing the camera.,applaud and films her performing.,spins the woman in the air in front of him.\n4530,anetv_KEWlDtEt2cQ,12594,The man spins the woman in the air in front of him. The man dips the lady and she,The man spins the woman in the air in front of him.,The man dips the lady and she,gold,blows them on the indoor field.,kicks her feet in the air.,returns hot gel on his sofas.,falls to the ground.\n4531,anetv_KEWlDtEt2cQ,12592,A man in a suit and a lady in a sparking dress stand on stage. The people then,A man in a suit and a lady in a sparking dress stand on stage.,The people then,gold,ballroom dance as people watch.,pose in the same routine.,cheer on a stage.,jump on a mat then kneel around the bases.\n4532,anetv_meMZuh8iNDs,2207,\"A woman talks and shows her long French braid. Then, the woman\",A woman talks and shows her long French braid.,\"Then, the woman\",gold,begins shuffleboard on the back on an ironing board displayed with strands of hairspray.,sprays her hair from it and brushes curls.,lie on the bed and brush her hair on the border of the bed.,proceeds timidly before braid her hair while show it to the camera.\n4533,anetv_meMZuh8iNDs,2209,\"Then, the woman takes a lock of front hair and braid taking hair from sides. Then, the woman\",\"Then, the woman takes a lock of front hair and braid taking hair from sides.\",\"Then, the woman\",gold,uses her pink hair before the model.,removes the braid from the braid and places it next to the christmas tree.,shows the braid while continues talking.,demonstrates the blow to finish it thoroughly.\n4534,anetv_meMZuh8iNDs,2208,\"Then, the woman lie on the bed and brush her hair on the border of the bed. Then, the woman\",\"Then, the woman lie on the bed and brush her hair on the border of the bed.\",\"Then, the woman\",gold,moves to the center of the bathroom and leads her dog to the floor.,removes the white top streams with her hair and applies it to her face.,takes a lock of front hair and braid taking hair from sides.,puts powder into a towel and lifts a sheet sheet of a bag onto her hands.\n4535,anetv_FWPJWq-uhUw,10879,\"The man drops the necklace from his mouth and immediately begins to run and does his hop, skip and jump. Replays of the man's run and jump play and the man\",\"The man drops the necklace from his mouth and immediately begins to run and does his hop, skip and jump.\",Replays of the man's run and jump play and the man,gold,steps to the surface.,falls on the wind.,\"is shown celebrating himself, and with others on the field.\",ad give himself the leverage.\n4536,anetv_FWPJWq-uhUw,10878,\"The man then grabs his necklace, puts it in his mouth and begins clapping above his head and a name below appears and it say's irving saladino. The man\",\"The man then grabs his necklace, puts it in his mouth and begins clapping above his head and a name below appears and it say's irving saladino.\",The man,gold,talks to many little men who are walking up and down the street in front of the guitarist.,\"pointing to the hat guiding the other man, then conjures his right hand.\",shows you how you should float and get wind on his board.,\"drops the necklace from his mouth and immediately begins to run and does his hop, skip and jump.\"\n4537,anetv_Eh0OoXQDLVc,10094,\"The woman continues to talk to the camera while demonstrating individual dance movements, as the young girls follow along. The woman\",\"The woman continues to talk to the camera while demonstrating individual dance movements, as the young girls follow along.\",The woman,gold,performs many text while one of the bows dips in the water.,repeats this blindly while jamming the tool out to the camera left until all the end.,continues wrapping the present as it ends.,leads the girls in practicing the entire sequence.\n4538,anetv_Eh0OoXQDLVc,10095,The woman leads the girls in practicing the entire sequence. The girls,The woman leads the girls in practicing the entire sequence.,The girls,gold,look on to set camera while sitting down.,continue climbing up the top pole.,perform the sequence on their own.,continue to run up and down the bleachers and end by practicing out with the crowd.\n4539,anetv_Eh0OoXQDLVc,10093,A woman talks to the camera while young girls stand behind her. The woman,A woman talks to the camera while young girls stand behind her.,The woman,gold,touches a horse hair and then demonstrates how to shave.,\"continues to talk to the camera while demonstrating individual dance movements, as the young girls follow along.\",talks to the camera while making tricks.,continues speaking and presenting soap to the camera.\n4540,anetv_shZRGB58YBU,947,There is a room full of people watching him. He,There is a room full of people watching him.,He,gold,\"looks into the narrow room, keeping his foot up.\",is doing gymnastics and leads behind him performing his routine.,is playing a set of drums with his hands.,lifts his arm and watches.\n4541,anetv_shZRGB58YBU,946,A man is seated on a stage. There,A man is seated on a stage.,There,gold,is a room full of people watching him.,are jumping on folding chairs in front of him.,is playing a guitar.,are standing behind as a man plays on stage.\n4542,anetv_CR_79ZjQG_w,15358,Three boys play hopscotch on the chalk outline on the ground. A girl,Three boys play hopscotch on the chalk outline on the ground.,A girl,gold,plays hopscotch on the left.,plays hopscotch off of a sidewalk on a stick.,enters and walks behind them from a ladder reaching the end of the floor.,wearing a black t then starts another cone on the field.\n4543,anetv_CR_79ZjQG_w,15356,\"There are children outside on the driveway, and a red truck parked at the end of the driveway with a few orange cones. The smallest girl\",\"There are children outside on the driveway, and a red truck parked at the end of the driveway with a few orange cones.\",The smallest girl,gold,\"is at the bottom pace, listening.\",walks over to one of the older boys.,starts to play and get in the snow by the sedan.,gets up and takes a drag as she takes in a grout and starts driving.\n4544,anetv_CR_79ZjQG_w,15357,The smallest girl walks over to one of the older boys. Three boys,The smallest girl walks over to one of the older boys.,Three boys,gold,enter the foreground and slide down a pole.,shoot one last time.,play hopscotch on the chalk outline on the ground.,paddle on the river as the girl screams.\n4545,anetv_CR_79ZjQG_w,5082,A young child walks across the black top and is held by her brother. A group of kids,A young child walks across the black top and is held by her brother.,A group of kids,gold,are gathered to watch her as she awakens.,are playing drums on a sidewalk.,play a game of hop scotch on chalk drawn boxes.,are standing on a kitchen frame.\n4546,lsmdc3035_INSIDE_MAN-1953,6424,Someone focuses on ten black small bags. A red leather jewelry box,Someone focuses on ten black small bags.,A red leather jewelry box,gold,sits on a man's hand.,hangs in the hallway.,opens with a found note.,sits tucked among them.\n4547,lsmdc3035_INSIDE_MAN-1953,6419,\"Seated in the key maker's workshop, someone eats a pizza. An iPod on the desk\",\"Seated in the key maker's workshop, someone eats a pizza.\",An iPod on the desk,gold,shows the fan dangling over his head.,reads bearing he is telling a story.,plays next to the exposed police bug.,shows a guard at a table like him.\n4548,lsmdc3035_INSIDE_MAN-1953,6425,A red leather jewelry box sits tucked among them. Someone,A red leather jewelry box sits tucked among them.,Someone,gold,stares up at him slack - faced.,brings both hands to someone and undoes his tie.,\"checks the book, his eyes wide.\",leaves the room with the papers.\n4549,lsmdc3035_INSIDE_MAN-1953,6420,\"An iPod on the desk plays next to the exposed police bug. On the far wall of an office, secured with steel bars, someone\",An iPod on the desk plays next to the exposed police bug.,\"On the far wall of an office, secured with steel bars, someone\",gold,unlocks a door and enters.,is hanging a piece of wax and a large wooden bench.,sets up upon a pose and gets out of the booth.,steps out and treads toward someone.\n4550,lsmdc3035_INSIDE_MAN-1953,6422,Someone lifts the lid holding a lit cigarette between two of his latex gloved fingers. We,Someone lifts the lid holding a lit cigarette between two of his latex gloved fingers.,We,gold,\"stops, notices the cats wings that the penguins walk out into the room.\",glimpse a black eagle emblem amid the return address.,\"steps over the side of the table to pick up a note, attached to the key on the piano, and looks it off\",travel through her heart and chest as he makes a call on his mobile.\n4551,lsmdc3035_INSIDE_MAN-1953,6418,Someone leafs through the parking tickets. He,Someone leafs through the parking tickets.,He,gold,wears his wedding ring on his arm.,tosses the bag to someone.,grabs a plaque on a brick wall.,runs as fast as she can.\n4552,lsmdc3035_INSIDE_MAN-1953,6423,Someone's blue eyes fix on someone. Someone,Someone's blue eyes fix on someone.,Someone,gold,focuses on ten black small bags.,swoops down from the watchtower through someone's big house.,and someone turn to their windows and stare out.,sits at her desk in her hotel's plaza courtyard in a mess.\n4553,lsmdc3035_INSIDE_MAN-1953,6421,Someone slides out a covered metal drawer painted maroon. Someone,Someone slides out a covered metal drawer painted maroon.,Someone,gold,\"pulls his wings and pulls up his shirt, covering his eyes.\",\"finishes cigarettes, then grips someone's arm.\",sees that the dead grabs the table and wraps it upside down over his head.,lifts the lid holding a lit cigarette between two of his latex gloved fingers.\n4554,anetv_ZsXJw0d3QbU,6415,People are standing behind the gate watching them. A man in a blue shirt,People are standing behind the gate watching them.,A man in a blue shirt,gold,is walking in front of them.,is standing on the field watching him.,is standing next to a tree walking.,is sitting on the ground watching them.\n4555,anetv_ZsXJw0d3QbU,6414,They begin going and bumping into each other. People,They begin going and bumping into each other.,People,gold,plummet from the top and falls one after the other.,are standing behind the gate watching them.,are playing cars and bumping into each other.,are working out together as they go.\n4556,anetv_ZsXJw0d3QbU,6413,Kids are sitting in bumper cars. They,Kids are sitting in bumper cars.,They,gold,begin going and bumping into each other.,\"chase pass at the front bumper, cross the road and walk right toward a boat.\",throw balls at each other.,are sitting on the beach to retrieve the ball.\n4557,anetv_0WJX2A6PSnA,19337,\"A woman walks in, grabs the supplies, starts spraying the sink and begins scrubbing with a sponge. The woman then\",\"A woman walks in, grabs the supplies, starts spraying the sink and begins scrubbing with a sponge.\",The woman then,gold,\"uses the mop to rub the towel over the half, clean, horizontally covering the sink and drain wall surface.\",adds soap before applying a towel to the bottom of the sink.,starts rinsing the sink with the hand held sprayer until it's all clean.,takes something off a small closet with a rag and applies water spray to it and places it down.\n4558,anetv_0WJX2A6PSnA,19338,The woman then starts rinsing the sink with the hand held sprayer until it's all clean. The cleaning spray is on the edge of the counter and text on the screen below it,The woman then starts rinsing the sink with the hand held sprayer until it's all clean.,The cleaning spray is on the edge of the counter and text on the screen below it,gold,read for tough stains repeat as necessary.,is getting forth.,is white and heated.,is poured into her.\n4559,lsmdc1024_Identity_Thief-82305,324,\"Elsewhere, a roughneck man with weathered skin and a gray goatee approaches a van. Now in his brand new van the aging man\",\"Elsewhere, a roughneck man with weathered skin and a gray goatee approaches a van.\",Now in his brand new van the aging man,gold,arrives at the strip mall.,checks on a test bicycle.,rides beside his daughter on a load of grocery items.,checks his watch and billed watch.\n4560,lsmdc1024_Identity_Thief-82305,326,\"He stops outside the salon and peers inside. Entering, he\",He stops outside the salon and peers inside.,\"Entering, he\",gold,finds ahead of someone.,opens a door and looks out.,approaches someone and takes the pilot down the street.,finds a young brunette stylist sweeping the floor.\n4561,lsmdc1024_Identity_Thief-82305,323,Someone glares as she mimes playing instruments. They,Someone glares as she mimes playing instruments.,They,gold,look at each other glowers.,chase to the floor at the other end and twirls a finger.,speed over a bridge spanning a small river.,run up to the high of their pyramid.\n4562,lsmdc1024_Identity_Thief-82305,325,Now in his brand new van the aging man arrives at the strip mall. He,Now in his brand new van the aging man arrives at the strip mall.,He,gold,sees a black taxi lying on the sidewalk.,stops outside the salon and peers inside.,pauses unblinkingly at a house and looks at the peephole.,\"approaches a quay where a rifle - suitcases haul his bike, then gently leaves them.\"\n4563,anetv_6SOluodeJ7s,5344,\"A man is shown standing in front of an audience of people eating a bag of Doritos. Once the camera pans out, the man's robe drops and the guy\",A man is shown standing in front of an audience of people eating a bag of Doritos.,\"Once the camera pans out, the man's robe drops and the guy\",gold,sits at the child's front.,takes the rest of the weight which goes back.,puts some other shoes in his fridge.,reveals that he is wearing a diaper.\n4564,anetv_6SOluodeJ7s,15795,A man wearing a blue robe eats a Dorito's while holding a Dorito's bag. The man in the blue robe,A man wearing a blue robe eats a Dorito's while holding a Dorito's bag.,The man in the blue robe,gold,starts cutting his shirt.,removes the robe and drops the bag of dorito's.,smokes next to his bedroom room and is able to find all the man he has on her.,returns his camera all from underneath.\n4565,anetv_6SOluodeJ7s,15796,The man in the blue robe removes the robe and drops the bag of Dorito's. The man now only wearing a Sumo wrestling outfit,The man in the blue robe removes the robe and drops the bag of Dorito's.,The man now only wearing a Sumo wrestling outfit,gold,looks up at axe protect and face alone.,while blowing his hair on his coach and someone walks off.,\"with purple fingernails, two witnesses, different young stain that begins to paint the face until they finished the facade of the ruined building\",runs all out at a huge asian man dressed in a sumo wrestling outfit.\n4566,anetv_6SOluodeJ7s,5345,\"Once the camera pans out, the man's robe drops and the guy reveals that he is wearing a diaper. Suddenly, the camera switches and two sumo workers\",\"Once the camera pans out, the man's robe drops and the guy reveals that he is wearing a diaper.\",\"Suddenly, the camera switches and two sumo workers\",gold,look around in a specialized machine and empty him off with machines because the machine has to let in one minute size.,appear and begin running towards each other as the doritos logo follows after it.,are seated on a track and calm back their knees as they run above the pool.,are shown spinning up and in and out of view.\n4567,lsmdc3016_CHASING_MAVERICKS-6462,10252,\"Paddling on a surfboard, the scowling boy faces a wave, bites his lip, and picks up his pace. Standing at the top of a wave, someone\",\"Paddling on a surfboard, the scowling boy faces a wave, bites his lip, and picks up his pace.\",\"Standing at the top of a wave, someone\",gold,remembers snow from his mother.,shoves another surfer forcing him off his board.,begins to paddle travel boards out.,\"rubs his hands against onstage, then glances at them.\"\n4568,lsmdc3016_CHASING_MAVERICKS-6462,10244,He pulls the cigar box from the drawer and grabs his wad of cash. Someone,He pulls the cigar box from the drawer and grabs his wad of cash.,Someone,gold,turns to look at someone's superior.,saunters toward her son as he counts out one - dollar bills.,\"someone puts the phone to the receiver and faces someone, who speaks to the phone.\",takes a seat.\n4569,lsmdc3016_CHASING_MAVERICKS-6462,10249,Now a park features an overlook where waves crash against the base of steep cliffs. A warning sign,Now a park features an overlook where waves crash against the base of steep cliffs.,A warning sign,gold,stands at their edge.,appears above the stream.,shows the sign on it reads how it would end.,shows the navigation opening grounds.\n4570,lsmdc3016_CHASING_MAVERICKS-6462,10250,A warning sign stands at their edge. Someone,A warning sign stands at their edge.,Someone,gold,dumps something into his hands and its metal grate opens.,climbs over a barrier fence and takes a seat next to a brooding blond.,\"appears, looking this way for years.\",stops and someone leans over the railing of a grey and yellow canvas.\n4571,lsmdc3016_CHASING_MAVERICKS-6462,10251,\"Someone climbs over a barrier fence and takes a seat next to a brooding Blond. Paddling on a surfboard, the scowling boy\",Someone climbs over a barrier fence and takes a seat next to a brooding Blond.,\"Paddling on a surfboard, the scowling boy\",gold,pats on his shoulder and looks over the decree.,\"faces a wave, bites his lip, and picks up his pace.\",sweeps a wetsuit over his head.,walks past someone to his family.\n4572,lsmdc3016_CHASING_MAVERICKS-6462,10246,Someone holds out the cash. His mom,Someone holds out the cash.,His mom,gold,crosses his hand and opens the van's door.,hands him a parcel.,snatches it and turns.,comes down the track station.\n4573,lsmdc3016_CHASING_MAVERICKS-6462,10248,Someone's sad eyes shift about as she leaves. Now a park,Someone's sad eyes shift about as she leaves.,Now a park,gold,is on its hind legs.,bus pulls up into the night and she pulls away.,features an overlook where waves crash against the base of steep cliffs.,'s cruiser shows a flying skyline.\n4574,lsmdc3016_CHASING_MAVERICKS-6462,10245,He stares at his hard - earned money. Someone,He stares at his hard - earned money.,Someone,gold,brings his wine glass down to the table.,picks up a file titled.,holds out the cash.,puts his shotgun under it.\n4575,lsmdc3016_CHASING_MAVERICKS-6462,10243,She rubs her wrist anxiously as someone stares off. He,She rubs her wrist anxiously as someone stares off.,He,gold,\"her cellphone, the baby watches in frustration.\",ease the next woman agent forgetting her upper wrist.,pulls the cigar box from the drawer and grabs his wad of cash.,jumps to her feet.\n4576,lsmdc3016_CHASING_MAVERICKS-6462,10254,Someone surfs the wave just ahead of the white water. Someone,Someone surfs the wave just ahead of the white water.,Someone,gold,is hiking up the starboard side.,is swimming like someone.,\"clasps his friend's hand, hauls him to his feet, and gently taps his stomach with his board.\",\"takes on the pair of sandals, then walking around.\"\n4577,anetv_zm8gZpwZkRE,12687,She is playing the violin. Two men,She is playing the violin.,Two men,gold,are playing drums with her.,are kneeling down in front of a audience watching them.,kneel down as they try to win.,sit in front of a stove.\n4578,anetv_zm8gZpwZkRE,12686,A woman is in a room with chairs. She,A woman is in a room with chairs.,She,gold,\"lies on the couch, playing her wooden game.\",is playing the violin.,is then turned on the spotlight carrying the bucket.,is playing a big dodge ball on the shuffleboard.\n4579,anetv_yr_ZOq9ZB9E,4977,Three teenage boys carry their skateboards up a paved park trail. A camera mounted on the skateboard,Three teenage boys carry their skateboards up a paved park trail.,A camera mounted on the skateboard,gold,changes to a man sitting on the edge of a rock.,carries a skateboard over the river.,rounds on the side of the road.,captures scenes of the young skaters cruising in different directions and performing different tricks.\n4580,anetv_93jSVyXW5gc,6315,Man is standing in a alrge green field showing a woman how to shoot an arrow and the woman pulls out a gun from the pockets and shot to the board. man,Man is standing in a alrge green field showing a woman how to shoot an arrow and the woman pulls out a gun from the pockets and shot to the board.,man,gold,hiting a javelin shoot out of a window in a fire and showed it.,is standing and bending over talking to the camera next to a fence with the hockey horses put back on.,is standing next to a tree holding a camera.,is throwing dart at the dartboard again.\n4581,anetv_93jSVyXW5gc,6316,Woman is throwing arros to a watermelon. woman,Woman is throwing arros to a watermelon.,woman,gold,cuts the dough with a pair of scissors.,is out in a kitchen followed by a woman putting ingredients in a mixer then make a salad and put two spoon the ice.,is addressing several instructs.,is throwing arrows to movie posters and talking to the camera.\n4582,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60417,6752,\"Someone leaps on top of someone, grasping for the ring! Someone\",\"Someone leaps on top of someone, grasping for the ring!\",Someone,gold,stumbles back then bounces over the table as the pomade lands in a deep heap.,rips the ring from around his neck.,begins to make it.,shouts at the f giant.\n4583,anetv_1GXQLnTalcg,13067,A man opens a bottle and puts toothpaste on it. He,A man opens a bottle and puts toothpaste on it.,He,gold,grabs the drink and runs off.,begins brushing his teeth following the woman's instructions.,\"puts the product in the blender together on top, and then empties it out the fridge.\",uses a bottle to water down the mans face.\n4584,anetv_1GXQLnTalcg,13068,He begins brushing his teeth following the woman's instructions. The man,He begins brushing his teeth following the woman's instructions.,The man,gold,is then shown when he is done wearing a diving shirt.,bends the glass into the water and rinses it in a sink.,rinses his mouth out with water and smiles with the woman's voice.,continues talking and ends by taking his bags out as well as speaking to people.\n4585,anetv_1GXQLnTalcg,13065,A video tutorial plays with a woman talking in the background about how to brush your teeth. She,A video tutorial plays with a woman talking in the background about how to brush your teeth.,She,gold,\"keeps knitting, a brush as she plays for the video.\",starts red 14 with a fall to the litle.,lists out the tools you need and steps to brush.,demonstrates how to blow your hair with different honey.\n4586,anetv_OOKHi7EBNKk,12574,The first individual dismounts and resumes pulling the device. The individual,The first individual dismounts and resumes pulling the device.,The individual,gold,\"uses the other laboriously to swim, showing it off in the end.\",pulls the device along some sort of covered walkway with a moving floor.,connects an individual laying grey.,\"beckons one index in front of that, from side to side.\"\n4587,anetv_OOKHi7EBNKk,12571,\"An individual wearing face covering drags an inner tube type device along the snow, surrounded by other people doing the same thing. The individual\",\"An individual wearing face covering drags an inner tube type device along the snow, surrounded by other people doing the same thing.\",The individual,gold,\"rubs a spot on a palette, then plunges down the side of the completed statue.\",\"takes and adjust the instruments and then, ends the video man with the youtube channel to do this, talks at 17 seconds.\",solves the rubix cube with several more orderly turns.,walks towards another individual wearing a red jacket.\n4588,anetv_OOKHi7EBNKk,12573,The person in the red jacket pulls the device downhill and the first individual rides down the slope. The first individual dismounts and,The person in the red jacket pulls the device downhill and the first individual rides down the slope.,The first individual dismounts and,gold,heads up a waterfall.,resumes pulling the device.,a second boy falls on the bench.,goes back by himself.\n4589,anetv_OOKHi7EBNKk,12572,The individual hands the rein for the device to the person in the red jacket and sits on the device. The person in the red jacket,The individual hands the rein for the device to the person in the red jacket and sits on the device.,The person in the red jacket,gold,falls on the pool table.,pulls the device downhill and the first individual rides down the slope.,passes in the water.,peels the contact lens out.\n4590,anetv__gnMuU1UJnM,8979,\"A black screen appears with white words that read sport bez barier curling na wozkach. An ice cleaner is now riding on an ice rink, and then people on wheelchairs\",A black screen appears with white words that read sport bez barier curling na wozkach.,\"An ice cleaner is now riding on an ice rink, and then people on wheelchairs\",gold,are on the beach playing rock paper scissors.,start wheeling onto the rink.,beckon them as they go like a following race and a rusty on and left.,daily delicious videos shown on the screen.\n4591,anetv__gnMuU1UJnM,8980,The rink is shown again and it shows gray objects with colorful tops are being pushed on the ice with sticks that the people in wheelchairs are holding and it switches back and forth to the woman talking alone and to the people on the ice playing. A white outro screen,The rink is shown again and it shows gray objects with colorful tops are being pushed on the ice with sticks that the people in wheelchairs are holding and it switches back and forth to the woman talking alone and to the people on the ice playing.,A white outro screen,gold,\"appears with many white words dressing, online basically taping the competition.\",appears and it some hushed times before that.,\"appears with black letters that include a list of names, websites and logos.\",appears with white text going on behind the screen with what name appear.\n4592,anetv_9Tip00S7cFY,5975,\"A man is in an indoor racquetball court, talking as he holds a ball and racquet. He\",\"A man is in an indoor racquetball court, talking as he holds a ball and racquet.\",He,gold,\"lobs the ball back and forth against the wall, interspersed with talking about the game.\",picks up a large red bowl and throws it over the ground.,stops in a different room with rest of the skating floor.,hits a punching bag with his hand.\n4593,anetv_9Tip00S7cFY,5976,\"He lobs the ball back and forth against the wall, interspersed with talking about the game. He\",\"He lobs the ball back and forth against the wall, interspersed with talking about the game.\",He,gold,speaks for a while longer before the video ends.,worriedly defiantly goes on.,stops a few stands and looks at the crowd where he had been skilled during the day.,overtakes to face the camera.\n4594,anetv_5OGNGIF22SY,7717,\"He then slides back, puts his feet in the ropes and starts to tie his shoes. Once complete, the man\",\"He then slides back, puts his feet in the ropes and starts to tie his shoes.\",\"Once complete, the man\",gold,grabs the rope and moves back and forth while pulling out the rope to exercise.,runs between the hands again and begins to replace a piece of specialized equipment.,walks up to him and begins down at the end of the rope in a smaller bit dressed in his red jersey.,approaches a man in a black sweater and walks in on with a little bit of color.\n4595,anetv_5OGNGIF22SY,7716,A buff young man is sitting on a machine with a sliding seat demonstrating weight lifting techniques. He then,A buff young man is sitting on a machine with a sliding seat demonstrating weight lifting techniques.,He then,gold,bends over and crosses a throw competition.,pushes to the palms of the machine that walks on the other side of the room.,\"demonstrate ironing technique, lifting it up showing the weights in his hand to show it and on weights then lifts it over the lazily\",\"slides back, puts his feet in the ropes and starts to tie his shoes.\"\n4596,anetv_5OGNGIF22SY,7718,\"Once complete, the man grabs the rope and moves back and forth while pulling out the rope to exercise. Now he is done, he\",\"Once complete, the man grabs the rope and moves back and forth while pulling out the rope to exercise.\",\"Now he is done, he\",gold,drops the ropes and starts to talk again.,throws over again and falls while other people stand behind him.,holds his arms around for his sling waiting.,continues to step on the rope as he leaves.\n4597,anetv_TrhOt1WyU7Y,4854,A camera pans to a kite flying around in the sky as well as people in a field. A man,A camera pans to a kite flying around in the sky as well as people in a field.,A man,gold,is then seen doing a night of tricks on it while still taking off his helmet.,throws a disc around in the distance and shoots another disc in slow motion.,is seen off to the site controlling the kite with his hands.,is seen riding around a kite chasing around a kite and the camera capturing all around.\n4598,anetv_TrhOt1WyU7Y,4855,A man is seen off to the site controlling the kite with his hands. He,A man is seen off to the site controlling the kite with his hands.,He,gold,\"jumps down and talks to the camera, followed by the man.\",speeds on the water while still looking off into the distance.,continues flying the object around the sky with the camera following.,launches the performance and jumps off down the side while cheering for the performance.\n4599,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15318,She hands it back to him. He,She hands it back to him.,He,gold,throws his sword.,nods with a grateful smile as he looks it over.,flips a white page over.,pauses and looks down at the table.\n4600,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15319,They digitally remove a pimple. Someone,They digitally remove a pimple.,Someone,gold,takes a copy of someone's magazine from a news kiosk on a street corner.,takes off two sprinkles like the clock trying to solve a rubik's cube.,is a little drunk.,chooses a pair of paper scissors before being thrown on to their own.\n4601,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15323,\"Over time, it fills up with various gift baskets. A female property agent\",\"Over time, it fills up with various gift baskets.\",A female property agent,gold,rides a cart through a revolving door.,shows someone around a spacious apartment.,\"stands by, surrounded by a bundle of sleek clothes.\",walks for the slash ridden wrinkled lunch.\n4602,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15322,\"Someone works at his computer in an office, his own. Over time, it\",\"Someone works at his computer in an office, his own.\",\"Over time, it\",gold,is easy and false.,fills up with various gift baskets.,is pages of a song book.,'s someone brute as a fixed guard.\n4603,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15325,He takes off his old watch and flings it. Someone's name,He takes off his old watch and flings it.,Someone's name,gold,is taped on a number of guest lists.,is attended by two police scenes.,is running on a poster.,is dumped on the alarm platform.\n4604,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15317,\"Someone goes through someone's article, editing out the parts she does n't like. She\",\"Someone goes through someone's article, editing out the parts she does n't like.\",She,gold,goes on to these people dumping down on field and is gripping some papers for their form.,\"stops him, looks at him and carries the package to her and left to tries to make her way to his place post.\",\"is been hanging from beyond the window, it was place.\",hands it back to him.\n4605,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15328,\"Wearing a white robe, someone sits in a steam room. A wide smile\",\"Wearing a white robe, someone sits in a steam room.\",A wide smile,gold,spreads across the table.,spreads across someone's face as someone walks away and stirs awake.,opens.,plays on his lips.\n4606,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15331,He reads over her shoulder. Someone,He reads over her shoulder.,Someone,gold,demonstrates through a row of curved wooden doors as he passes.,puts up a wad of money and gets on another car.,sits on the edge of new york.,\"removes his arm from round her shoulder, picks up his drink and takes a sip.\"\n4607,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15327,\"Getting on like a house on fire, people share a joke in the lift. Wearing a white robe, someone\",\"Getting on like a house on fire, people share a joke in the lift.\",\"Wearing a white robe, someone\",gold,rubs a tip under his open nose and falls.,drops the pack of sneakers and returns his sister's gaze.,sends the rest of him onto a wall for one life.,sits in a steam room.\n4608,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15320,Someone takes a copy of someone's magazine from a news kiosk on a street corner. He,Someone takes a copy of someone's magazine from a news kiosk on a street corner.,He,gold,\"shoves the card, takes a top, and scribbles with his own.\",\"returns to someone, who stands near the desk at the end of the hall.\",flips through it to find his article.,\"talks to someone, who knits in a couple chair.\"\n4609,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15330,Someone reads an article on someone in a magazine. She,Someone reads an article on someone in a magazine.,She,gold,is sitting at a restaurant table.,is studying the wall of handwritten notes with a cane.,takes a few web step with a wallet.,aims a pistol at the ladies table.\n4610,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15324,\"Someone hands someone a gift box at his desk, the new Omega Speedmaster watch. He\",\"Someone hands someone a gift box at his desk, the new Omega Speedmaster watch.\",He,gold,takes off his old watch and flings it.,presses a remote and spits in liquid.,stands busy holding a pad.,gets up the front desk and leaves the room where a service agent peeks around.\n4611,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15332,\"As he walks away, someone glances down at her novel and frowns. Someone\",\"As he walks away, someone glances down at her novel and frowns.\",Someone,gold,sidesteps while resting his hand across the top of his head.,shifts someone's gaze.,is inside the building.,stares at the businessman.\n4612,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73414,15329,A wide smile plays on his lips. Someone,A wide smile plays on his lips.,Someone,gold,reaches out and drinks from a glass.,picks up the bottle.,reads an article on someone in a magazine.,meets the boy's solemn gaze.\n4613,lsmdc3022_DINNER_FOR_SCHMUCKS-10319,16713,\"Someone wanders across the apartment to the desk. tim, I\",Someone wanders across the apartment to the desk.,\"tim, I\",gold,surround the bodhi tree walking by.,\"found you, are you online?\",sits in a massage chair at a glass entrance.,start for the scarf dressing.\n4614,lsmdc3022_DINNER_FOR_SCHMUCKS-10319,16711,\"Someone takes a few faltering, stiff - legged steps towards the bedroom. He\",\"Someone takes a few faltering, stiff - legged steps towards the bedroom.\",He,gold,turns and runs across the street before leaving someone standing behind her.,pauses at the split - level.,\"notices his surroundings, not to him at the drip.\",lunges and punches someone.\n4615,lsmdc3022_DINNER_FOR_SCHMUCKS-10319,16714,A picture of someone's shapely pink - panty clad backside appears onscreen. Someone,A picture of someone's shapely pink - panty clad backside appears onscreen.,Someone,gold,asks: are you touching yourself?,\"turns the couch to one side, leaning its ear, laying it on her shoulder.\",gapes over his shoulder directly with her partner.,races into their office.\n4616,lsmdc3022_DINNER_FOR_SCHMUCKS-10319,16712,Someone drags himself into the bedroom. Someone,Someone drags himself into the bedroom.,Someone,gold,closes the door with him.,wanders across the apartment to the desk.,looks at the back of one of his wife's.,grabs a bottle from his handkerchief and looks at it.\n4617,anetv_1kMPW5huHWQ,7855,A man is completing a rubiks cube. A timer,A man is completing a rubiks cube.,A timer,gold,says something onto his hand.,is used to solve the puzzle.,is sitting on the table next to him.,is beginning to turn his face.\n4618,anetv_1kMPW5huHWQ,7856,A timer is sitting on the table next to him. He,A timer is sitting on the table next to him.,He,gold,sets the completed rubiks cube down on the table.,slides the cube and stands on the left again.,lets go of the machine and takes off.,goes to a coffee cup and puts some on the counter.\n4619,lsmdc0041_The_Sixth_Sense-67609,1235,Someone sits at the kitchen table. His hands,Someone sits at the kitchen table.,His hands,gold,folded at the breakfast sharp in front of him with a shocked stare.,are pressed flat on the tabletop.,go full of noodles as they fire into a pizza parking lot.,are clasped around his pockets as he dances forward the nbc.\n4620,lsmdc0041_The_Sixth_Sense-67609,1233,\"Someone reaches into the dryer, digging for a new tie. She\",\"Someone reaches into the dryer, digging for a new tie.\",She,gold,\"is looking at her hands, shaking, trying to look before her.\",\"is digging, shutting up people.\",\"finds one, then turns and steps back into the kitchen and screams at the top of her lungs.\",\"picks up another glue, brown metal, and loads a back belt.\"\n4621,lsmdc0041_The_Sixth_Sense-67609,1232,The dog is gone now. Someone,The dog is gone now.,Someone,gold,\"charges the stocky full of green huge and rushes out to pick at the force of a struggle, receiving a worried gaze.\",\"jumps in the air rapidly gasping for air, and dives away.\",dressed in a black outfit and horse is sitting in a hand tub for the girl in a bikini.,\"reaches into the dryer, digging for a new tie.\"\n4622,lsmdc0041_The_Sixth_Sense-67609,1234,Every cabinet and every drawer is wide open. Someone,Every cabinet and every drawer is wide open.,Someone,gold,helps two men sit in a chair.,sits at the kitchen table.,inserts the key into the ignition.,has a liquid around his neck.\n4623,lsmdc0041_The_Sixth_Sense-67609,1236,Neither says anything for a beat. Someone,Neither says anything for a beat.,Someone,gold,presents a box of foil.,looks over to the open cabinet near the sink.,lets go of his forehead.,\"sits on her chair, hanging her head from the bed.\"\n4624,lsmdc0041_The_Sixth_Sense-67609,1231,She closes them one at a time before moving to the coffee machine. Someone,She closes them one at a time before moving to the coffee machine.,Someone,gold,\"watches the music as she swallows, then closes her eyes.\",\"empties the contents of her handbag, then turns her back to someone.\",carries her case inside.,walks over to someone.\n4625,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100242,5456,Someone is overcome with grief. He,Someone is overcome with grief.,He,gold,escaped someone down into the river and pull a gun down and extracts his helmet.,gazes at her lying lifeless on the floor.,fights off the fixed standing stick.,is facing a boat then a glass.\n4626,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100242,5455,\"Someone enters the bedroom in the house in someone's Hollow and finds her dead, beside someone's cot. Someone\",\"Someone enters the bedroom in the house in someone's Hollow and finds her dead, beside someone's cot.\",Someone,gold,lies on someone's bed.,sits upon the boy's desk.,\"backs up, looking at someone's knapsack, frowning.\",is overcome with grief.\n4627,anetv_8xS6cDOq5do,11670,Boys keep combing the hair and putting some hair rolls on the girls. woman in the middle,Boys keep combing the hair and putting some hair rolls on the girls.,woman in the middle,gold,stands on a sidewalk talking.,walk on the street to get the camera done.,is raking pumpkin with a scissor.,is irritated and stands and remove the rolls for th head and sits again and laugh a lot.\n4628,anetv_DP9hfhq8sro,13882,A foosball table is on a tiled floor. People,A foosball table is on a tiled floor.,People,gold,are dancing up and down on the hopscotch.,are sitting on lines attached to it.,are showing trophies to pumpkins.,are playing foosball indoors.\n4629,anetv_DP9hfhq8sro,17877,A close up of a bar is shown. The camera then,A close up of a bar is shown.,The camera then,gold,zooms back into the vacuum cleaner.,begins lifting the weights apart and tightening them around.,pans all around a fooseball table.,is put under a bar and is brushed by a person.\n4630,anetv_DP9hfhq8sro,13883,People are playing foosball indoors. The ball,People are playing foosball indoors.,The ball,gold,is tortured as two teams fight.,falls around the woman.,falls onto the man's arm.,is knocked in a the goal on a foosball table.\n4631,anetv_ij87GXkcdho,1090,Several people are seen riding on exercise equipment while speaking to the camera. A man,Several people are seen riding on exercise equipment while speaking to the camera.,A man,gold,jumps up and down and gets onto the mat.,enters on the rope with one while eventually moving back and fourth.,is seen speaking to the camera while more shots of the equipment are shown.,is shown from several angles holding a bar and performing tricks along with him.\n4632,anetv_ij87GXkcdho,1091,A man is seen speaking to the camera while more shots of the equipment are shown. People,A man is seen speaking to the camera while more shots of the equipment are shown.,People,gold,are shown using swimming moves and moving around closer to the camera.,continue playing with the machine torched on the instrument.,hit and ride around while the camera captures his movements.,move all around the machine and lead with the man speaking more and showing how to adjust the machine.\n4633,anetv_1QjVfj0S8qQ,5290,The man stops and leans on the shovel for a moment to look at the amount of work that is ahead of him. The man,The man stops and leans on the shovel for a moment to look at the amount of work that is ahead of him.,The man,gold,continues to scrape the gravel roof and turns with his back towards the camera.,continues to turn the wheel to slowly turn around until it is open and pulls up.,\"has a hard time, screws up his tools and continues to wipe off his shirt.\",walks up to her and begins to push the snow on her back.\n4634,anetv_1QjVfj0S8qQ,5289,A shirtless man scrapes roofing gravel using a shovel. The man,A shirtless man scrapes roofing gravel using a shovel.,The man,gold,throws the tire paper around the tree and splashes onto a pile of snow.,proceeds to blow up snow off the car.,stops and leans on the shovel for a moment to look at the amount of work that is ahead of him.,\"is wearing a brown hood, wooden shoes and beige gloves.\"\n4635,anetv_JlgDwIT9KLI,8732,A red bowl contains a spoon and tuna fish in chunks. Someone,A red bowl contains a spoon and tuna fish in chunks.,Someone,gold,\"pours mayonnaise into the tuna, as well as seasoning.\",adds egg to it using.,tumbles into a banana as the lights growing on.,\"measures a woman's pan, then the timer.\"\n4636,anetv_JlgDwIT9KLI,8733,\"Someone pours mayonnaise into the tuna, as well as seasoning. The substance\",\"Someone pours mayonnaise into the tuna, as well as seasoning.\",The substance,gold,\"is mixed together, then spread onto the bread to make a sandwich.\",\"is half eaten in half, no plates, cows ham and sausage.\",\"is boiled and crushed with parmesan cheese, sausage, milk, nuts, and the means start out.\",\"is after taking bite slices, then returned with zero.\"\n4637,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100521,20036,\"He sits by the window, next to his elder brother, someone and, opposite his cousin, someone. The chocolate frog crawling up the window,\",\"He sits by the window, next to his elder brother, someone and, opposite his cousin, someone.\",\"The chocolate frog crawling up the window,\",gold,\"squirts of someone's face and smirk, in wings.\",\"rolling to turn, and then the mower has numbly to the ground.\",leaps into someone's hand.,\"burst back him into a towel, and comes along with firm instructions.\"\n4638,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100521,20038,\"The people and the people stand together, watching. Excited children\",\"The people and the people stand together, watching.\",Excited children,gold,dance back and forth between their blades.,stay in postures like rings.,jump out of the taxi with a virtual magazine case.,wave out of the windows.\n4639,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100521,20035,\"On the train, someone ducks to avoid a Whiz - bang, and enters a compartment. He\",\"On the train, someone ducks to avoid a Whiz - bang, and enters a compartment.\",He,gold,stuns a hole in the wall and puts it over him.,crawls into the partially gawking ministry and knocks himself down over a nine minutes.,\"sits by the window, next to his elder brother, someone and, opposite his cousin, someone.\",pulls an oil bottle from his briefcase and steps along a wooden board.\n4640,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100521,20037,\"The chocolate frog crawling up the window, leaps into someone's hand. On the platform, someone\",\"The chocolate frog crawling up the window, leaps into someone's hand.\",\"On the platform, someone\",gold,splashes someone in her wake.,stretches a twirls up in the air in front of him.,\"puts a hand to her mouth, and smiles.\",spots a zombie in a parked car.\n4641,anetv_LGt_KpgXymU,5046,A woman is playing a violin next to water. She,A woman is playing a violin next to water.,She,gold,starts playing the saxophone in front of her.,starts playing the violin.,starts walking through bushes next to the water.,begins to play the drums in her hands.\n4642,anetv_LGt_KpgXymU,17536,Various shots of landscapes leads into a woman standing on the beach and playing a violin. The camera,Various shots of landscapes leads into a woman standing on the beach and playing a violin.,The camera,gold,\"pans all around the rink and the camera pans around, playing the sport and smiling to a group playing.\",pans around the girl and shows more pictures of them playing with.,captures her from several angles playing the instrument as well as looking off into the distance.,continues on a woman standing next to her presenting the cheering awards while still leading her friend to the end.\n4643,anetv_LGt_KpgXymU,5047,She starts walking through bushes next to the water. A woman,She starts walking through bushes next to the water.,A woman,gold,is wearing a scarf and talking to the camera.,starts brushing her hair with a pony.,\"talks to the camera, continuing grooming and grooming.\",drives it around a miniature mountain board.\n4644,anetv_LGt_KpgXymU,17537,The camera captures her from several angles playing the instrument as well as looking off into the distance. In the end she,The camera captures her from several angles playing the instrument as well as looking off into the distance.,In the end she,gold,continues to play bow and ends by speaking to the camera.,hits and finishes playing the drums while the same girl plays.,is seen speaking to the camera in an empty room while smiling.,puts her arms around his sides and ends by sitting her back down.\n4645,lsmdc3048_LITTLE_FOCKERS-23079,10327,\"Later, someone opens the apartment door and steps into the dark living room. As he slides off his coat, a lamp\",\"Later, someone opens the apartment door and steps into the dark living room.\",\"As he slides off his coat, a lamp\",gold,shines its light on him.,knocks him aside.,shines on the bed as he lies asleep in bed.,blows glow painted across the window.\n4646,lsmdc3048_LITTLE_FOCKERS-23079,10329,\"Someone hangs up his coat. As someone rises, someone\",Someone hangs up his coat.,\"As someone rises, someone\",gold,climbs out of his bedroom.,shakes his brow thoughtfully.,helps up the boys.,stops and turns to him.\n4647,lsmdc3048_LITTLE_FOCKERS-23079,10326,\"Someone gives a nod and someone looks away. Later, someone\",Someone gives a nod and someone looks away.,\"Later, someone\",gold,opens the apartment door and steps into the dark living room.,marches up through a door at the bottom into the basement.,walks along a dinette reading a chalkboard with a heart - shaped sign and towers above a building as someone is neatly clipped.,reaches up to someone and his.\n4648,lsmdc3048_LITTLE_FOCKERS-23079,10328,\"As he slides off his coat, a lamp shines its light on him. Someone\",\"As he slides off his coat, a lamp shines its light on him.\",Someone,gold,sits cross - legged wearing a broad - brimmed hat.,sits in an armchair beside it.,stares at the spot silhouetted against the cold station.,stands motionless at the makeshift column.\n4649,lsmdc3033_HUGO-14513,8514,Someone gazes up at someone's flat as she unlocks the front door. Someone,Someone gazes up at someone's flat as she unlocks the front door.,Someone,gold,holds the door open as someone steps inside.,turns and takes small steps slowly.,turns and takes the key key from the lock.,smells the handle and emerges from the door.\n4650,lsmdc3033_HUGO-14513,8518,He partially unfolds the paper then holds it out to someone. She,He partially unfolds the paper then holds it out to someone.,She,gold,notices the cat.,falls back on the bed.,opens it and gazes down at the drawing of the rocket striking the eye of the man in the moon.,takes the binoculars back tensely and smiles off.\n4651,lsmdc3033_HUGO-14513,8517,\"Someone kisses someone, who sits and sews. Someone\",\"Someone kisses someone, who sits and sews.\",Someone,gold,stands as someone steps into the room.,\"lowers her baby, her wings and helmet boots fall to the floor.\",shrugs her arms and smiles at someone.,props his sleeve and rushes out.\n4652,lsmdc3033_HUGO-14513,8515,Someone holds the door open as someone steps inside. Someone,Someone holds the door open as someone steps inside.,Someone,gold,takes in her buttoned - down dress.,steps down a hallway then turns into a sitting room.,snaps a picture of the large bearded man as he runs beside him.,walks out and sits across the table with her.\n4653,lsmdc3033_HUGO-14513,8512,He glances sideways at the automaton and grins. Someone and someone,He glances sideways at the automaton and grins.,Someone and someone,gold,pull up towards the sanctuary.,step through the cemetery.,all stare at the tidy structure.,gaze out the newspaper.\n4654,lsmdc3033_HUGO-14513,8516,Someone steps down a hallway then turns into a sitting room. Someone,Someone steps down a hallway then turns into a sitting room.,Someone,gold,\"opens the door, a window set before them.\",is still in her underwear on the highway on the exit.,\"kisses someone, who sits and sews.\",puts an arm in front of her.\n4655,lsmdc3033_HUGO-14513,8519,\"Still staring at the drawing, someone slowly sits. She\",\"Still staring at the drawing, someone slowly sits.\",She,gold,\"glances at someone then back at the drawing, while raising one hand to her mouth.\",holds a casket and bloodstained wood.,walks into the hall.,transforms briefly over his shoulders but remains expressionless.\n4656,anetv_ztnt2EYuK3I,3782,A person in a black coat is scraping ice off of a window. A kid in a yellow coat,A person in a black coat is scraping ice off of a window.,A kid in a yellow coat,gold,is looking outside a window.,is smiling at the camera.,is covering the car with a cleaner.,is sitting on the bed of a car.\n4657,anetv_OmE9IhdWFa0,11860,Surfers ride large waves in the ocean. Jet skis,Surfers ride large waves in the ocean.,Jet skis,gold,pull surfers towards waves in the ocean.,travels up the sail with a large splash.,are shown with closing water.,surfs at sea force falls into the ocean.\n4658,anetv_OmE9IhdWFa0,11857,A model wearing a bikini opens directs the scene and talks behind an i - pad screen. A meal,A model wearing a bikini opens directs the scene and talks behind an i - pad screen.,A meal,gold,is packed and everywhere.,appears between her legs.,is shown around the screen followed by several runners speaking and gesturing as the video goes over.,is cooked in a frying pan.\n4659,anetv_OmE9IhdWFa0,11859,People ride on a boat and catch fish. Surfers,People ride on a boat and catch fish.,Surfers,gold,go sailing in the water while the diver.,slosh a cascade of white ice into the water.,ride large waves in the ocean.,slide up on a slack line while doing tricks.\n4660,anetv_OmE9IhdWFa0,11858,A meal is cooked in a frying pan. People,A meal is cooked in a frying pan.,People,gold,ride on a boat and catch fish.,are loading into a bowl with the cooked pasta.,\"are shown at a pool table, practicing windows.\",stand on a kitchen.\n4661,anetv_xQljKBB3498,8326,She shows a bottle of orange face wash. She,She shows a bottle of orange face wash.,She,gold,is explaining the process of brushing her hair.,shows how to clean the soap using a toothbrush.,shows how to wash your face with the wash.,rubs sunscreen on her face and while talking to the camera.\n4662,anetv_xQljKBB3498,8325,A young girl is inside a bathroom. She,A young girl is inside a bathroom.,She,gold,puts a razor in her face and starts shaving her legs.,shows a bottle of orange face wash.,is holding an umbrella.,starts to rinse her teeth as she starts brushing her hair and pulling the toothbrush.\n4663,anetv_xQljKBB3498,18304,\"She showed an orange bottle, read the label and squirt the orange content on her palm, showed the cream on the camera, then rub the cream all over her face. She\",\"She showed an orange bottle, read the label and squirt the orange content on her palm, showed the cream on the camera, then rub the cream all over her face.\",She,gold,\"bend down and rinse her face, when her face is visible on the camera her face is clear.\",pours shaving cream to her face.,is playing while bouncing on the side of the bottle.,lowers the camera by tucks it into her black fur.\n4664,lsmdc3068_THE_BIG_YEAR-3701,12617,\"At the clinic, someone now wears a hospital gown as she waits alone in an exam chair. She\",\"At the clinic, someone now wears a hospital gown as she waits alone in an exam chair.\",She,gold,rubs the building's rim to someone's shoulder.,\"pulls her mouth to his and removes the lipstick from his face, her eye.\",extends her legs and anxiously flexes her feet.,knocks open a cup and answers next door.\n4665,lsmdc3068_THE_BIG_YEAR-3701,12626,He holds out a mug. He,He holds out a mug.,He,gold,sets it on a table.,holds a sling over her head.,pats the sausage and begins to pound.,holds the flower stack by his hand.\n4666,lsmdc3068_THE_BIG_YEAR-3701,12624,\"Running her hands through her hair, someone sits heavily on a box in a partially renovated room. Pastel wallpaper with children's drawings\",\"Running her hands through her hair, someone sits heavily on a box in a partially renovated room.\",Pastel wallpaper with children's drawings,gold,appear dreamily out of her chest.,appears on her computer and showing a number of dinette work colors.,are stacked at length various little various shaped sculptures.,covers the bottom half of the walls.\n4667,lsmdc3068_THE_BIG_YEAR-3701,12614,\"Meanwhile, someone stops at a parking attendant's booth. The cashier takes his ticket and the gate's striped arm lifts\",\"Meanwhile, someone stops at a parking attendant's booth.\",The cashier takes his ticket and the gate's striped arm lifts,gold,slowly through the air.,to go into the air.,allowing someone car to leave the lot.,\"gawk, revealing high headlights.\"\n4668,lsmdc3068_THE_BIG_YEAR-3701,12618,\"She extends her legs and anxiously flexes her feet. As the door opens, she\",She extends her legs and anxiously flexes her feet.,\"As the door opens, she\",gold,picks up her cellphone and a dark woman's card and climbs onto her phone.,wakes in a french flashback.,runs down the pier into a lifeboat.,sets her feet down with a start.\n4669,lsmdc3068_THE_BIG_YEAR-3701,12627,\"Meanwhile at the someone house, someone's father reads in the living room. With an exasperated look, he\",\"Meanwhile at the someone house, someone's father reads in the living room.\",\"With an exasperated look, he\",gold,sits down on the bed with his hands in his pockets.,sets his newspaper aside and grabs his son's backpack off the floor.,\"reaches inside, shuts the door and hurries into a room.\",braces himself and looks at someone out of his eyes.\n4670,lsmdc3068_THE_BIG_YEAR-3701,12628,\"With an exasperated look, he sets his newspaper aside and grabs his son's backpack off the floor. He\",\"With an exasperated look, he sets his newspaper aside and grabs his son's backpack off the floor.\",He,gold,comments up his cellphone.,manages to open her back.,shines his flashlight on the green brick wall.,\"opens its front pocket and rifles through it, taking out packages of snacks and setting them on a coffee table.\"\n4671,lsmdc3068_THE_BIG_YEAR-3701,12611,\"He stows his bags in the trunk, then climbs in. As he starts the engine, his wipers\",\"He stows his bags in the trunk, then climbs in.\",\"As he starts the engine, his wipers\",gold,clear a layer of dirt off the windshield.,make its way into the lush countryside.,roll over the highway.,sway against the rocks of another car.\n4672,lsmdc3068_THE_BIG_YEAR-3701,12610,\"Meanwhile, someone races to his car in the airport parking lot. He\",\"Meanwhile, someone races to his car in the airport parking lot.\",He,gold,emerges from the driveway of a cop and hands him his phone.,gets up and puts his her phone down.,shows his suv against a high tree trunk.,\"stows his bags in the trunk, then climbs in.\"\n4673,lsmdc3068_THE_BIG_YEAR-3701,12608,\"Now, at Bergen Fertility Clinic, someone reads through paperwork on a clipboard, then brings it to a reception desk where a dark haired nurse takes it. She\",\"Now, at Bergen Fertility Clinic, someone reads through paperwork on a clipboard, then brings it to a reception desk where a dark haired nurse takes it.\",She,gold,operates a cell phone as he steps to the thug's.,throws a button toward the car.,\"lowers his gaze, then glances up and hurries back into a building.\",\"flashes a smile, then returns to her seat in the waiting room.\"\n4674,lsmdc3068_THE_BIG_YEAR-3701,12616,\"He swerves from lane to lane, passing other cars. At the clinic, someone now\",\"He swerves from lane to lane, passing other cars.\",\"At the clinic, someone now\",gold,lets himself to another ramp.,wears a hospital gown as she waits alone in an exam chair.,walks out of the nightclub and sits in a chair.,hides behind a cement wall from one of someone's loan.\n4675,lsmdc3068_THE_BIG_YEAR-3701,12612,\"As he starts the engine, his wipers clear a layer of dirt off the windshield. In an exam room at the clinic, the dark haired nurse\",\"As he starts the engine, his wipers clear a layer of dirt off the windshield.\",\"In an exam room at the clinic, the dark haired nurse\",gold,draws his wife's blood.,\"opens his door, turns to a dead thug, and rolls the whip.\",presses an electric razor to the elevator doors.,\"returns to the bench opposite the man who sniffs his empty glass, smiling.\"\n4676,lsmdc3068_THE_BIG_YEAR-3701,12625,Pastel wallpaper with children's drawings covers the bottom half of the walls. He,Pastel wallpaper with children's drawings covers the bottom half of the walls.,He,gold,leaves a porcelain window then finds someone working out inside a coffee story hut.,holds a map and casts sparkles on water before her feet.,places the shredded dough in an pan and fry it.,holds out a mug.\n4677,lsmdc3068_THE_BIG_YEAR-3701,12622,He races toward the entrance. He,He races toward the entrance.,He,gold,pulls the doors closed behind his home.,dashes into a cell.,\"takes out his cell and checks its display, then answers with one hand on the clinic's door.\",stares out at the cover with an ornamental bouquet.\n4678,lsmdc3068_THE_BIG_YEAR-3701,12620,The nurse backs out of the room. Someone,The nurse backs out of the room.,Someone,gold,gives him the diary.,drops her face in her hand.,is now wearing a plain suit.,swings the razor easily into the woman's chest.\n4679,lsmdc3068_THE_BIG_YEAR-3701,12615,The cashier takes his ticket and the gate's striped arm lifts allowing someone car to leave the lot. He,The cashier takes his ticket and the gate's striped arm lifts allowing someone car to leave the lot.,He,gold,elbows his boss in the chest with his helmet and rubs his hands in circular motion and pumps his head ecstatically with his arm.,is behind the wheel and grabs one of the four in an orange jacket to release.,\"swerves from lane to lane, passing other cars.\",crosses the street and finds someone being smashed through sweat army shield on top.\n4680,lsmdc3068_THE_BIG_YEAR-3701,12609,\"She flashes a smile, then returns to her seat in the waiting room. Meanwhile, someone\",\"She flashes a smile, then returns to her seat in the waiting room.\",\"Meanwhile, someone\",gold,sprawls on his bed.,enters the main lobby and shifts in his chair.,races to his car in the airport parking lot.,picks up her card and wears a white silk robe.\n4681,anetv_QT2l100KJe0,18124,He trips and falls forward. A shot of the field,He trips and falls forward.,A shot of the field,gold,is repeated as people in the sides celebrate them watching.,hits him as he gets the ball on the stool.,is shown as a trail of snow around her.,is shows with many people walking on it.\n4682,anetv_QT2l100KJe0,18123,He is running down a track and throwing a javelin. He,He is running down a track and throwing a javelin.,He,gold,does tricks onto a skateboard board.,throws her arms down and claps.,rides down a track and jumps onto the grass.,trips and falls forward.\n4683,anetv_QT2l100KJe0,18122,A man in a yellow shirt has his hands behind his head. He,A man in a yellow shirt has his hands behind his head.,He,gold,\"is wearing a brown slip, boxing the ball.\",is running down a track and throwing a javelin.,picks up the monkey and puts it on his chest.,is throwing a basketball on basketball court.\n4684,lsmdc0023_THE_BUTTERFLY_EFFECT-59379,18270,Someone suppresses the tiniest of proud smiles. Someone's eyes suddenly,Someone suppresses the tiniest of proud smiles.,Someone's eyes suddenly,gold,fall into the ward level.,roll back in his head.,curves in a knot as she drives someone.,glisten with each building's welcoming hand.\n4685,lsmdc1039_The_Queen-87966,6136,\"Someone stares at a nearby tv. On the other end of the phone, someone\",Someone stares at a nearby tv.,\"On the other end of the phone, someone\",gold,sees a blood stain on the back of the fabric.,points earnestly at the boy.,scribbles on a note pad.,snatches out a handful of tickets in a closet.\n4686,lsmdc1039_The_Queen-87966,6139,\"Peeking through a doorway, someone sees someone talking to people. Someone\",\"Peeking through a doorway, someone sees someone talking to people.\",Someone,gold,gazes up at her sister stoically.,sees her and leaves the room.,takes off a pair of queens.,steps aside and points a gun at someone's mitt.\n4687,lsmdc1039_The_Queen-87966,6131,Someone approaches a blonde woman. Someone,Someone approaches a blonde woman.,Someone,gold,makes her way out of the interview room.,lies on her back in a chair in front of a grand mirror.,gets dressed as she slips in a booth on a sunny street.,picks up a phone from a nearby desk.\n4688,lsmdc1039_The_Queen-87966,6141,Someone 'eyes wells with tears. Someone,Someone 'eyes wells with tears.,Someone,gold,casts her eyes downward.,is trying to decision her mind.,comes up at him.,gently brings his hand up to her hip.\n4689,lsmdc1039_The_Queen-87966,6135,Someone rubs his brow and someone backs away. Someone,Someone rubs his brow and someone backs away.,Someone,gold,stares at a nearby tv.,plunks themselves over danger.,sits motionless in his chair.,returns to the jet.\n4690,lsmdc1039_The_Queen-87966,6130,Someone turns and leaves the room. Someone,Someone turns and leaves the room.,Someone,gold,strides forward and hugs someone.,sits there with someone.,grins then turns to the photographer.,approaches a blonde woman.\n4691,lsmdc1039_The_Queen-87966,6138,\"Someone walks down a dimly lit corridor. Peeking through a doorway, someone\",Someone walks down a dimly lit corridor.,\"Peeking through a doorway, someone\",gold,sees someone talking to people.,looks at a man's daily comic.,enters the marketplace and finds someone at a cluttered desk.,\"sees two spanish servants standing outside the door, heading for the door.\"\n4692,lsmdc1039_The_Queen-87966,6133,The royal family are still watching the television. Someone,The royal family are still watching the television.,Someone,gold,\"glowers and points to a freeway emerald cemetery with clouds of crest high autumnal, clouds of dirt.\",\"enters the room, but stays by the door.\",holds up various notes and leaves the room.,shuffles slowly toward the altar.\n4693,lsmdc1039_The_Queen-87966,6140,Someone moves to reenter the room. Someone,Someone moves to reenter the room.,Someone,gold,shuts the letter and sits cross - legged.,\"extends her hand briefly, then, retracts it.\",stares in amazement at the book she is swaying to.,stands on the bed with his hands resting on her shoulder.\n4694,lsmdc3080_THIS_MEANS_WAR-37514,1673,A bird's - eye - view shows the black smoke hiding the end of the unfinished roadway. The smoke thins and someone,A bird's - eye - view shows the black smoke hiding the end of the unfinished roadway.,The smoke thins and someone,gold,inserts liquors into her mouth.,has a sense of the courage which hits someone on the back of someone's head before heading extremely gentle.,\"becomes visible, semi - reclined on the road.\",\"turns, finds it forcefully wrapped around the shells, and spots them.\"\n4695,lsmdc3080_THIS_MEANS_WAR-37514,1684,\"Rejoining someone, someone wraps his arms around her. His lips\",\"Rejoining someone, someone wraps his arms around her.\",His lips,gold,\"parted, she crouches over someone with his collar and over his head.\",meet in a passionate kiss.,tremble as his hand reaches for a hair dryer.,meet hers in a smoldering kiss.\n4696,lsmdc3080_THIS_MEANS_WAR-37514,1671,The blast sends the suv rolling sideways toward the road's unfinished end. They both,The blast sends the suv rolling sideways toward the road's unfinished end.,They both,gold,stare at a collapsed empty wall.,take a breath then grin excitedly.,slip off the telegram.,\"beacon someone, urging her to clear out of the way.\"\n4697,lsmdc3080_THIS_MEANS_WAR-37514,1672,\"They both beacon someone, urging her to clear out of the way. A bird's - eye - view\",\"They both beacon someone, urging her to clear out of the way.\",A bird's - eye - view,gold,looks down the road to the hump.,lies below action.,offers someone a meal at someone's program.,shows the black smoke hiding the end of the unfinished roadway.\n4698,lsmdc3080_THIS_MEANS_WAR-37514,1692,\"He presents himself to her humbly. Leaning against the door frame, she\",He presents himself to her humbly.,\"Leaning against the door frame, she\",gold,jerks an oven locked with their cuffed hands.,moves in slow steps.,steps forward and extends a hand.,limps towards the dressing and sits in one chair and slides a plate over it.\n4699,lsmdc3080_THIS_MEANS_WAR-37514,1690,\"As someone steps away, someone shyly approaches his ex who waits for him in a doorway. She\",\"As someone steps away, someone shyly approaches his ex who waits for him in a doorway.\",She,gold,lays her head on a chair beside him.,gets up and answers the door with an menacing look.,grips her wrist and glances over her shoulder casually.,smiles and glances away.\n4700,lsmdc3080_THIS_MEANS_WAR-37514,1694,\"With a tearful smile, she gestures someone to follow her as she goes over to her son. In slow motion, the reunited family\",\"With a tearful smile, she gestures someone to follow her as she goes over to her son.\",\"In slow motion, the reunited family\",gold,smiles back at someone.,trudges out into the sunny forest.,walks down a hallway together.,looms tensely over the city and captures them with a stare.\n4701,lsmdc3080_THIS_MEANS_WAR-37514,1697,He follows with a hopeful gaze. Now a military grade helicopter,He follows with a hopeful gaze.,Now a military grade helicopter,gold,arrives in a house.,takes down the lake.,arrives with the x hall.,flies out at a night time mission.\n4702,lsmdc3080_THIS_MEANS_WAR-37514,1696,\"Someone lays a hand on someone's back, gently ushering her through a doorway. He\",\"Someone lays a hand on someone's back, gently ushering her through a doorway.\",He,gold,\"falls as someone looks out to someone, who sits motionless, his gravely raised brow furrowed.\",takes her hand back and gallops over to someone.,passes lead to someone and her mother.,follows with a hopeful gaze.\n4703,lsmdc3080_THIS_MEANS_WAR-37514,1695,\"In slow motion, the reunited family walks down a hallway together. Someone\",\"In slow motion, the reunited family walks down a hallway together.\",Someone,gold,\"lays a hand on someone's back, gently ushering her through a doorway.\",leans through an open window and peers under the venetian blinds.,dashes back the yard as a few blocks approaches.,stares at a surf board dangling from a small tree.\n4704,lsmdc3080_THIS_MEANS_WAR-37514,1679,He looks to his friend. Someone,He looks to his friend.,Someone,gold,picks up his phone and leans forward.,\"stares at him, overwhelmed.\",gives him a warm smile.,walks past the bar.\n4705,lsmdc3080_THIS_MEANS_WAR-37514,1681,\"Someone lowers his gaze and nods shyly. Heading off, he\",Someone lowers his gaze and nods shyly.,\"Heading off, he\",gold,puts his ear against someone's.,finds someone in his suv.,pauses and turns back to face his approaching friend.,\"stops halfway behind the desk, and notices a pillar stop in the doorway.\"\n4706,lsmdc3080_THIS_MEANS_WAR-37514,1674,\"Opposite him, someone holds someone. Someone tenderly caresses her hair and someone\",\"Opposite him, someone holds someone.\",Someone tenderly caresses her hair and someone,gold,\"pats his forehead, then squats and folds her arms.\",stares wide - eyed.,peers longingly at him.,extends her hand for a hug.\n4707,lsmdc3080_THIS_MEANS_WAR-37514,1669,\"As the suv rounds closer, they fire. A deploying airbag wallops someone's face and he\",\"As the suv rounds closer, they fire.\",A deploying airbag wallops someone's face and he,gold,tosses its assault settings level.,falls to the ground with someone's body on the ground.,drifts off holding it.,careens into a mobile construction light.\n4708,lsmdc3080_THIS_MEANS_WAR-37514,1677,\"Wrapped in a blanket, someone goes to someone who sits at the rear of an ambulance. He stands and they\",\"Wrapped in a blanket, someone goes to someone who sits at the rear of an ambulance.\",He stands and they,gold,kiss each other's cheeks.,head towards the door.,head toward a glowing tree - lit construction site in pants.,sit across from each other.\n4709,lsmdc3080_THIS_MEANS_WAR-37514,1680,Someone gives him a warm smile. Someone,Someone gives him a warm smile.,Someone,gold,looks down and frowns.,leans his hand over hers.,comes out of the bathroom.,lowers his gaze and nods shyly.\n4710,lsmdc3080_THIS_MEANS_WAR-37514,1687,\"Looking up at someone, someone shakes her head knowingly and smiles. As they enjoy another kiss, we\",\"Looking up at someone, someone shakes her head knowingly and smiles.\",\"As they enjoy another kiss, we\",gold,drift up and away from the unfinished overpass and gaze out over the city.,see someone doing the waves from the night - comatose.,find the kids staring out of the water at her feet.,find someone in a white suit carrying a gloomy exterior.\n4711,lsmdc3080_THIS_MEANS_WAR-37514,1686,\"They rock back and forth lingering in the embrace. Looking up at someone, someone\",They rock back and forth lingering in the embrace.,\"Looking up at someone, someone\",gold,shakes her head knowingly and smiles.,gives a stony kick.,backs out and pushes way to the floor.,shoots into his eyes.\n4712,lsmdc3080_THIS_MEANS_WAR-37514,1676,\"Later, a paramedic faces someone. Wrapped in a blanket, someone\",\"Later, a paramedic faces someone.\",\"Wrapped in a blanket, someone\",gold,briefly unrolls her hair.,leans against a tree bark and looks around.,looks up from the sketches.,goes to someone who sits at the rear of an ambulance.\n4713,lsmdc3080_THIS_MEANS_WAR-37514,1685,His lips meet hers in a smoldering kiss. They,His lips meet hers in a smoldering kiss.,They,gold,rock back and forth lingering in the embrace.,hold both their faces and wave at each other.,rise to her feet.,sparkle into her eyes.\n4714,lsmdc3080_THIS_MEANS_WAR-37514,1688,\"Now in the someone Arts Dojo, someone and someone face off again as both of their fathers look on. As someone charges, someone\",\"Now in the someone Arts Dojo, someone and someone face off again as both of their fathers look on.\",\"As someone charges, someone\",gold,\"sends someone building a mat to a security guard and guides them on to the mat, which falls away.\",\"takes the injection, makes his rounds toward someone in the lifeboat, and makes a call.\",swings his leg over the bigger boy's arm and flips him to the mat.,\"shakes someone's hand, and someone winks to someone.\"\n4715,lsmdc3080_THIS_MEANS_WAR-37514,1683,Someone adjusts his wrist watch. Someone,Someone adjusts his wrist watch.,Someone,gold,\"sits at his table, relating memories of it.\",slams the mat down.,regards his friend with a concerned frown.,smiles as he drops up on his side and spins outside.\n4716,lsmdc3080_THIS_MEANS_WAR-37514,1675,\"Someone tenderly caresses her hair and someone peers longingly at him. As someone looks on, they both\",Someone tenderly caresses her hair and someone peers longingly at him.,\"As someone looks on, they both\",gold,take an unconscious artificial beneath their heads.,turn their attention to him.,climb out to remove the rest of the family.,go towards the door.\n4717,lsmdc3080_THIS_MEANS_WAR-37514,1693,\"Someone's brow lifts in a delighted smile, he shakes her hand. With a tearful smile, she\",\"Someone's brow lifts in a delighted smile, he shakes her hand.\",\"With a tearful smile, she\",gold,gestures someone to follow her as she goes over to her son.,strides away through the crowd.,\"passes someone to him, pulls her close and kisses her cheek.\",trudges away away from the window.\n4718,lsmdc3080_THIS_MEANS_WAR-37514,1678,He stands and they kiss each other's cheeks. He,He stands and they kiss each other's cheeks.,He,gold,passes to someone's identical workroom.,looks to his friend.,peeks at the door.,stomps out on exposed breasts.\n4719,lsmdc3080_THIS_MEANS_WAR-37514,1691,She smiles and glances away. He,She smiles and glances away.,He,gold,wears a puzzled smile.,steps out of bed and closes her eyes.,presents himself to her humbly.,hands someone their coat.\n4720,anetv_WUcjqCvYfQ0,5189,\"She then rinses him clean, and applies aftershave. He\",\"She then rinses him clean, and applies aftershave.\",He,gold,uses her flashlight to scrub the neighborhood with some chemical.,fills her head then sits down on a bench.,rubs makeup on his face as he speaks.,is then shown giving her a shoulder rub.\n4721,anetv_WUcjqCvYfQ0,5188,A couple is sitting outside talking. They,A couple is sitting outside talking.,They,gold,are skating towards a grill.,use a leaf blower to dance on the grass.,drive across the road.,\"go in the house and gather supplies for shaving, which are listed on the screen.\"\n4722,lsmdc3063_SOUL_SURFER-31201,14516,\"Behind him, someone and his family stand with surfboards. Now, someone\",\"Behind him, someone and his family stand with surfboards.\",\"Now, someone\",gold,shows a picture of himself.,looks back at someone.,opens a passenger door.,slides down a flight of stairs.\n4723,anetv_0e-qdFlRmPU,10598,He picks her up and swings her around. They,He picks her up and swings her around.,They,gold,and man continue playing on the playing dodge table.,finish dancing and stare at each other.,\", the troll is still slam - furiously, losing control as it shoots into the explodes.\",others crouch down and continuously walk onto the ground.\n4724,anetv_0e-qdFlRmPU,15162,\"The interior of a building is shown, then a man and woman appear. They\",\"The interior of a building is shown, then a man and woman appear.\",They,gold,are speaking to each other.,slide down a street in various locations.,spin in the air and hit each other.,march a pass by other men and a long group.\n4725,anetv_0e-qdFlRmPU,15164,\"They then begin to dance, twirling and swirling and leaning against each other. They\",\"They then begin to dance, twirling and swirling and leaning against each other.\",They,gold,\"stop dancing, staring intently at each other.\",all enter a dance as they applaud.,then claps to their twirling as they continue to kiss.,continue to kiss as they continue to play.\n4726,anetv_0e-qdFlRmPU,15163,They are speaking to each other. They then,They are speaking to each other.,They then,gold,\"begin to dance, twirling and swirling and leaning against each other.\",continue to game and continue doing the kicks.,begin playing the wall together.,climb in curling item in the sand.\n4727,anetv_0e-qdFlRmPU,10597,A man and woman begin dancing together in a room. He,A man and woman begin dancing together in a room.,He,gold,switch while dancing to each other while balancing the others on the leg.,fall in as the performance does little.,picks her up and swings her around.,continue dancing around with one another and jumping into their arms into the camera.\n4728,anetv_6hsOVkC7hxA,11019,He is chopping wood from a cut tree bark with a hammer. He he,He is chopping wood from a cut tree bark with a hammer.,He he,gold,hitting the chopped log of wood with all his force.,shovels the last log and continues talking to the camera.,is soaring the hedge around the yard with the arch.,practices the ax and runs.\n4729,anetv_6hsOVkC7hxA,11018,There's a shirtless man wearing denim jeans out in a forest. He,There's a shirtless man wearing denim jeans out in a forest.,He,gold,gathers to series gymnastics tricks and doing various tricks with a rider.,plays on croquet sticks.,has a lot of snakes on his chin as he moves into the lot.,is chopping wood from a cut tree bark with a hammer.\n4730,anetv_ctWolbJDJyc,17845,A person is seen walking down the length of a diving board while the camera zooms in. The man,A person is seen walking down the length of a diving board while the camera zooms in.,The man,gold,begins swimming and end by moving it individual sideways.,pushes the mop all over the equipment board.,continues to drink and shakes his legs.,turns around and performs a back flip off of the board into the water.\n4731,anetv_j9ww01sQkvY,9424,The camera focuses on a smiling man seated next to others. Another individual,The camera focuses on a smiling man seated next to others.,Another individual,gold,lies on his knees.,puts a beard in his face while having to practice his moves.,shows off the boy's tube.,walks through the frame foreground and briefly obscures the first man.\n4732,lsmdc3041_JUST_GO_WITH_IT-18339,6643,\"Clad in a filmy cerulean dress, a young statuesque beauty with sun - kissed skin and long blonde hair approaches someone. The longtime bachelor\",\"Clad in a filmy cerulean dress, a young statuesque beauty with sun - kissed skin and long blonde hair approaches someone.\",The longtime bachelor,gold,stops in his tracks and stares.,shows the newspaper cover featuring dozens of employees.,draws a large modern bundle of clothing.,shifts her skeletal hand to the referee's shoulder.\n4733,anetv_ncTkaZcDcTo,14958,\"Two more skaters head around a curve, but one plows straight into a hay - stack, though luckily helmet - first. Another helmeted skater\",\"Two more skaters head around a curve, but one plows straight into a hay - stack, though luckily helmet - first.\",Another helmeted skater,gold,weaves through the glass rain.,\"tries a hand - stop, and does stop, though unfortunately his skateboard does not.\",steps closer to each side of the tomb.,\"chases him, then stops to follow his board, and removes his helmet.\"\n4734,lsmdc0053_Rendezvous_mit_Joe_Black-71378,16305,\"He has now, with some difficulty, completed the tying of someone's tie, adjusts it beautifully on someone's collar, then spins him around in front of a mirror. Someone, catching sight of his own appearance,\",\"He has now, with some difficulty, completed the tying of someone's tie, adjusts it beautifully on someone's collar, then spins him around in front of a mirror.\",\"Someone, catching sight of his own appearance,\",gold,\"is only seated by the front stoop, like one older man.\",\"rises to the balls of his feet, quite taken.\",turns something away and sits on.,walks away from the building as someone draws his face around from the desk.\n4735,anetv_E0niuPtg16o,14287,A few people are seen standing around on a basketball court. The group then,A few people are seen standing around on a basketball court.,The group then,gold,begin to play polo again.,begins to play with one another while two other children run in.,begins shooting baskets and passing to one another.,walks down the street then scenes and again.\n4736,anetv_E0niuPtg16o,8612,Four people are seen standing on a basketball court. One,Four people are seen standing on a basketball court.,One,gold,begins shooting baskets while the others grab balls for her.,hit the ball up and down until it's a goal.,swings into the hoop and throwing darts at one another.,people are shown fencing.\n4737,anetv_E0niuPtg16o,8613,One begins shooting baskets while the others grab balls for her. Another man,One begins shooting baskets while the others grab balls for her.,Another man,gold,steps into frame while the girl continues to practice.,is seen shortly afterwards.,serves and shakes balls around a table.,performs a across the back part.\n4738,lsmdc1005_Signs-4864,12125,\"Someone bows his head and reflects. The slowly, he\",Someone bows his head and reflects.,\"The slowly, he\",gold,continues to flit in circles in the circle of his chin.,turns and takes a breath.,squeezes a chest of jagged points between his lips and thumb.,shrugs and lowers his brush.\n4739,lsmdc1005_Signs-4864,12126,\"His doleful eyes linger on someone, then, he starts the engine. Someone\",\"His doleful eyes linger on someone, then, he starts the engine.\",Someone,gold,\"sorts through in, shuts the drawer and holds it open.\",\"goes through the driver's window, lies in his bed, and carelessly strokes his father's cheek.\",\"keeps his cigarette case down, avoiding someone's breathing.\",sits back in his seat.\n4740,lsmdc1005_Signs-4864,12127,\"Someone turns to face someone's clapboard home. At the farmhouse, in the closet under the stairs, someone\",Someone turns to face someone's clapboard home.,\"At the farmhouse, in the closet under the stairs, someone\",gold,puts water in his bag.,is still watching tv.,and his mother eat coal beside tyler.,clambers up in a rain mask.\n4741,anetv_w9M6GUCtoQQ,15011,She then rubs a needle on a cotton ball then pushing it onto a pencil and wrapping thread around it. She then,She then rubs a needle on a cotton ball then pushing it onto a pencil and wrapping thread around it.,She then,gold,puts it on the table and ends with pictures laid out on the bike.,adjusts the phone to the wall and places the weights over her head.,places a lotion all over her face.,holds up a box of a product and then pouring several liquids into a bowl.\n4742,anetv_afORRx0QZgI,14218,A woman lays on the floor in a room. Music starts to play and she,A woman lays on the floor in a room.,Music starts to play and she,gold,is walking playing the piano.,gets up and begins belly dancing.,takes her book and puts it down.,turns and looks around the stage.\n4743,anetv_afORRx0QZgI,14219,\"As she dances, others watch. In the background, a child\",\"As she dances, others watch.\",\"In the background, a child\",gold,bangs a five bell over her child's head.,gives a woman a hug as they watch on.,watches someone on a board to her side.,sits ready to groom a sofa.\n4744,lsmdc3013_BURLESQUE-5156,15028,Someone sighs and lowers a spoon. Someone,Someone sighs and lowers a spoon.,Someone,gold,leaves with her luggage.,eats it from someone.,appear at the edge of the field.,addresses the children's boys.\n4745,lsmdc3013_BURLESQUE-5156,15029,\"Later at someone's second floor apartment, someone steps outside. Someone\",\"Later at someone's second floor apartment, someone steps outside.\",Someone,gold,pulls into the driveway on his motorcycle.,holds up a pump - action rifle.,\"crawls into a space under the stairs, gripping a cane and swings her arms into a hug.\",runs through the clinic toward the window.\n4746,lsmdc3013_BURLESQUE-5156,15027,\"In the kitchen, someone makes coffee. Someone\",\"In the kitchen, someone makes coffee.\",Someone,gold,takes a sip of food.,works using her hands as they reach someone.,sighs and lowers a spoon.,sets down an exercise desk.\n4747,anetv_IMto8gJvRek,1280,A man is standing and talking inside a kitchen. He,A man is standing and talking inside a kitchen.,He,gold,demonstrates how to fix aluminum.,is cleaning the mall with a bottle of liquid.,shows us a juicer and a lemon.,spreads out a knife at counter top and begins cooking.\n4748,anetv_IMto8gJvRek,18137,The man then slices a lemon in slices and takes out the seeds. He,The man then slices a lemon in slices and takes out the seeds.,He,gold,cuts the pasta in a bowl.,puts the sliced lemon in a blender and blends it.,places and then whisks a sandwich with a bread slice.,finally adds a series of chopping techniques to a sauce.\n4749,anetv_IMto8gJvRek,18138,He puts the sliced lemon in a blender and blends it. The man,He puts the sliced lemon in a blender and blends it.,The man,gold,begins hammering into himself.,pours the juice into a pitcher and pours something else and stirs the pitcher.,is using a white plate along with a plate in front of him.,pours another drink and pours it into a glass before setting it off again.\n4750,anetv_IMto8gJvRek,1281,He shows us a juicer and a lemon. He,He shows us a juicer and a lemon.,He,gold,combines a white mix in rollers and fetches his sandwich to demonstrate some ice cream.,puts a syrup on the base of the mixing.,\"grinds the lemon into the juicer, producing juice.\",\"gives a model at the rink, then the rest of the song begins.\"\n4751,anetv_IMto8gJvRek,18136,The man juices a lemon and washes the citrus juice. The man then,The man juices a lemon and washes the citrus juice.,The man then,gold,\"pours the lime into dressing, eggs, and some vanilla ice cubes, going back and scrape of showered don chocolate chunks.\",shows the eye of the hairstylist using a cream juicer to cut the lemons.,pours it into a bowl in a bowl.,slices a lemon in slices and takes out the seeds.\n4752,anetv_IMto8gJvRek,18135,We see a man in a kitchen making lemon juice. The man,We see a man in a kitchen making lemon juice.,The man,gold,moves another red piece of cake.,stirs the pasta and the coconut.,juices a lemon and washes the citrus juice.,takes a piece from the mug and places it on a counter.\n4753,anetv_i49blayQ93Q,15372,\"People sits on camels in the desert, then the camels that are on their knees stand and walk. A man\",\"People sits on camels in the desert, then the camels that are on their knees stand and walk.\",A man,gold,stands in front of a kayak and talks while standing over a bench.,grabs him and sails into a clearing.,\"is jumping the waves, places them on a rope attached to a string rope.\",takes pictures of two woman that sit on a camel.\n4754,anetv_i49blayQ93Q,4125,There are crowds of people sitting on and around he camels. a man,There are crowds of people sitting on and around he camels.,a man,gold,remains out and then clears out.,is then shown surfing on the water and doing tricks.,puts on a rocking bike.,walks by a few of the camels laying down.\n4755,anetv_i49blayQ93Q,15373,\"A car pas fast on a road behind the camels. Also, a woman\",A car pas fast on a road behind the camels.,\"Also, a woman\",gold,takes pictures o people sit on camels.,rides dirt bikes together with a couple of boxes and then rolling a trash can and a box on the floor.,is running water with her hair down in her lap.,turns when the spirit boils.\n4756,anetv_i49blayQ93Q,4124,A group of camels is in the desert. there,A group of camels is in the desert.,there,gold,are hedges parked on the side of the lawn.,'s a group of men using a biking raft that begins to blaze.,are crowds of people sitting on and around he camels.,'s a lot of people parked on a street.\n4757,anetv_i49blayQ93Q,15374,\"Also, a woman takes pictures o people sit on camels. A woman on a camel extend her arms, then a man\",\"Also, a woman takes pictures o people sit on camels.\",\"A woman on a camel extend her arms, then a man\",gold,pulls a camel with a rope.,helps up the top.,lifts a skimpy rope to hold on.,comes out of the morgue.\n4758,anetv_dZyb8t-4ATQ,2064,\"Against the wall, the guy is placing a black base. The guy\",\"Against the wall, the guy is placing a black base.\",The guy,gold,moves on to his best class cleaning a messy sidewalk.,walks to the edge of the positioned room and leans over the pole.,\"uses a white, long paper and a pencil to measure.\",puts a piece of wood on the sticks on the wall.\n4759,anetv_dZyb8t-4ATQ,2065,\"The guy uses a white, long paper and a pencil to measure. The guy\",\"The guy uses a white, long paper and a pencil to measure.\",The guy,gold,wraps the paper back and throws it at a pile of foam.,removes his fish and talks to the camera.,cuts the base with a box cutter.,walks again and lifts a flower up to his face again.\n4760,anetv_dZyb8t-4ATQ,2062,The credits of the clip are shown. A guy,The credits of the clip are shown.,A guy,gold,is standing by the hair of the man.,is laying down carpet.,passes the finished product.,is bouncing as he talks.\n4761,anetv_dZyb8t-4ATQ,9900,He measures and cuts pieces of carpet. He then,He measures and cuts pieces of carpet.,He then,gold,demonstrates how to chop the small utility jack.,lays the carpet and attaches it with molding.,demonstrates how the glue with rings work.,prepares to iron the tile with the blue tiles.\n4762,anetv_dZyb8t-4ATQ,9899,A man is crouched down on a floor. He,A man is crouched down on a floor.,He,gold,is standing to the side holding it up behind them.,seems to show his foot and jumps up.,is pulling onto a set of bongo.,measures and cuts pieces of carpet.\n4763,anetv_dZyb8t-4ATQ,2063,\"A guy is laying down carpet. Against the wall, the guy\",A guy is laying down carpet.,\"Against the wall, the guy\",gold,calls the bike points.,puts the back on his bicycle.,flips a tennis foot.,is placing a black base.\n4764,anetv_uhiQp0GCeKg,13774,A woman is standing against a wall while talking. She,A woman is standing against a wall while talking.,She,gold,is discussing pre operation procedures with a patient.,is standing on a field.,starts to shave her hands using a tool.,uses a bat to hit the ball through the hoops.\n4765,anetv_uhiQp0GCeKg,13775,She is discussing pre operation procedures with a patient. She,She is discussing pre operation procedures with a patient.,She,gold,\"is a gray, brown, white shirt and blue papers playing with high lighthouse.\",walks around a postcard place and talks while adding different colored things to hanging the bag clean.,shows how to apply a cream to the entire face.,goes to front and puts clothes in a charger.\n4766,anetv_uhiQp0GCeKg,5043,A blonde woman is speaking to a camera while wearing a lab coat. She,A blonde woman is speaking to a camera while wearing a lab coat.,She,gold,\"applies a cloth to another woman's face, followed by a fluid.\",uses the hair dog to catch the dogs hair.,has a sour expression during her eyes.,is outside with a woman and begins washing a dog with her.\n4767,anetv_uhiQp0GCeKg,5044,\"She applies a cloth to another woman's face, followed by a fluid. She then\",\"She applies a cloth to another woman's face, followed by a fluid.\",She then,gold,puts the paint face on to clean it clean.,paints a trowel on the injury.,turns off the faucet and dries with manually back and forth.,wipes her face clean again.\n4768,lsmdc0041_The_Sixth_Sense-67767,19167,Someone stares into the night. He,Someone stares into the night.,He,gold,holds the window in a corner.,calls in the back.,reluctantly strike the fork.,stands alone as thoughts crash like thunder in his head.\n4769,lsmdc0041_The_Sixth_Sense-67767,19168,\"The front door opens, someone carries someone in. He\",\"The front door opens, someone carries someone in.\",He,gold,takes a chess piece from someone.,kneels down and sprints through the house.,lifts the rubbish barrels to the ground.,is asleep on her shoulder.\n4770,lsmdc0041_The_Sixth_Sense-67767,19166,Someone's hand with the tape recorder drops to his side. Someone,Someone's hand with the tape recorder drops to his side.,Someone,gold,opens his knee to rearrange himself to look around at the hatch.,picks himself up and trips over someone.,\"watches her proceed down the hallway, and opens her eyes.\",stares into the night.\n4771,lsmdc0041_The_Sixth_Sense-67767,19165,Someone is very still and stares at someone. Someone's hand with the tape recorder,Someone is very still and stares at someone.,Someone's hand with the tape recorder,gold,pulls a rule d card from the beige boot comes onto his business card.,begins to cast the phial across his face.,remains on his face.,drops to his side.\n4772,lsmdc0041_The_Sixth_Sense-67767,19178,Someone pushes the fabric open with her fingers and sees deep fingernail like scratches on his skin. Someone,Someone pushes the fabric open with her fingers and sees deep fingernail like scratches on his skin.,Someone,gold,cuts someone's nails.,checks the letter driver.,\"looks around helplessly, fear creeping into her eyes.\",gets on his leg and holds a tube from his hand.\n4773,lsmdc0041_The_Sixth_Sense-67767,19171,Someone lays someone gently on his bed next to his German Shepherd Puppy. Someone,Someone lays someone gently on his bed next to his German Shepherd Puppy.,Someone,gold,watches the two youngsters sleep for a moment.,nods toward his dinner.,notices someone dons a rider as he lies his knees.,\"drapes one arm around someone, who continues to walk around the corner of the bar.\"\n4774,lsmdc0041_The_Sixth_Sense-67767,19176,Her attention is drawn to the sweater. She,Her attention is drawn to the sweater.,She,gold,holds the book to her chest.,has taken off it and falls over.,fingers the fabric of the back.,smiles at someone as she carries up the bag to someone.\n4775,lsmdc0041_The_Sixth_Sense-67767,19172,Someone watches the two youngsters sleep for a moment. Someone,Someone watches the two youngsters sleep for a moment.,Someone,gold,gazes at someone women's doorway.,is curled up asleep with a tiny party hat clutched in his hands.,'s cart is shuffling a stack of him.,\"past, their cohorts turn.\"\n4776,lsmdc0041_The_Sixth_Sense-67767,19175,She pulls it off and begins to fold it. Her attention,She pulls it off and begins to fold it.,Her attention,gold,is peeled off the screen quickly.,is drawn on the list of those bills.,is then shown above how it is used.,is drawn to the sweater.\n4777,lsmdc0041_The_Sixth_Sense-67767,19170,She carries him down the hall to his bedroom. Someone,She carries him down the hall to his bedroom.,Someone,gold,lays someone gently on his bed next to his german shepherd puppy.,\"peeks inside for a moment, then goes over to the porch and grabs a few bits and looks outside.\",sidles out leaving the room.,is laid naked on her couch.\n4778,lsmdc0041_The_Sixth_Sense-67767,19174,Someone has been carrying someone's sweater from over her shoulder. She,Someone has been carrying someone's sweater from over her shoulder.,She,gold,pulls it off and begins to fold it.,walks up the steps just as her razor suddenly washes over his bare face.,\"is carrying a bag of groceries, her net wrapped tightly around her shoulders, behind a large leather vase.\",gets in and waits as he takes her hand.\n4779,lsmdc0041_The_Sixth_Sense-67767,19169,He is asleep on her shoulder. She,He is asleep on her shoulder.,She,gold,\"peers at the bedside room, and takes her handheld remote from the newscast.\",places something in the fridge's drawer.,moves her arms away toward the other one.,carries him down the hall to his bedroom.\n4780,lsmdc3077_THE_VOW-35786,17396,\"Now, at home, someone puts on a dark blazer over a muted blue button down, then picks up a tie. Later, he\",\"Now, at home, someone puts on a dark blazer over a muted blue button down, then picks up a tie.\",\"Later, he\",gold,\"pulls a sharp, floppy rod.\",goes and picks him up sitting on the wall.,walks a demurely dressed someone to his wagoneer.,eases open behind his wheelchair and turns to the cluster of condoms at their computer.\n4781,anetv_gT_8511vwVE,16709,A woman is talking in front of a group of people. they,A woman is talking in front of a group of people.,they,gold,begin dancing at her instruction.,get into a large raft and have water on it.,are doing dance in a studio.,are holding cloths and rings.\n4782,anetv_gT_8511vwVE,16710,They begin dancing at her instruction. the people all,They begin dancing at her instruction.,the people all,gold,turn to each other.,\"dance in unison, making the same moves.\",smile together and leave while the judges step backwards to watch.,dance as they walk and continue dancing around them.\n4783,anetv_gT_8511vwVE,636,They finish dancing and throw their hands in the air and clap. The instructor,They finish dancing and throw their hands in the air and clap.,The instructor,gold,walks forward and waves her hands.,leans down and greets people.,finishes and walks off the stage.,finishes dancing and walks back to the stage.\n4784,anetv_gT_8511vwVE,634,We then zoom in on the right image. We,We then zoom in on the right image.,We,gold,see a man put a bed and a collection of sunblock on a table.,see a boat stall by a group wash.,see the lady riding on bicycle again.,see a cameraman walk from the back of the room to the front.\n4785,anetv_gT_8511vwVE,633,The camera splits in two and we see two images. We then,The camera splits in two and we see two images.,We then,gold,see the finished score in the end.,see a girl performing a gymnastic routine in many different locations.,see a black title screen.,zoom in on the right image.\n4786,anetv_bx5ZHOUG-nI,7294,A person is seen bending down over a bucket filled with water and washing clothes in the bucket. The boy,A person is seen bending down over a bucket filled with water and washing clothes in the bucket.,The boy,gold,continues cleaning with the work using the product and washing the car.,pours the mop all along the bucket while interacting with others and smiling to the camera.,scrubs up with the soap and sprays a hose down and clean a towel with sponge.,continues washing when another person steps in to help wash the clothes and speak to the camera.\n4787,anetv_eJnSC8C3OIw,17204,Skateboards skate and do tricks down stairs and on benches throughout a city. A skateboarder,Skateboards skate and do tricks down stairs and on benches throughout a city.,A skateboarder,gold,men were in the road leading to the water.,\"jumps over a mountain, then skateboards in a street where he loses and hops.\",walks down a dirt path together and talks as he shovels his yard.,rides a concrete ramp in a skate park.\n4788,anetv_eJnSC8C3OIw,17203,A website address is typed in. Skateboards,A website address is typed in.,Skateboards,gold,zooming throughout the studio and how very clean.,\"runs out of a workshop, wearing a short - sleeved jacket.\",are at a dancefloor place in an event.,skate and do tricks down stairs and on benches throughout a city.\n4789,anetv_eJnSC8C3OIw,17205,Skateboarders ride the banks of a drainage ditch. Different skateboarders,Skateboarders ride the banks of a drainage ditch.,Different skateboarders,gold,ride in a concrete ramp doing tricks.,are being hurt by young and policemen.,fly across the course.,soar above the mountains.\n4790,anetv_eJnSC8C3OIw,17206,Different skateboarders ride in a concrete ramp doing tricks. The city lights,Different skateboarders ride in a concrete ramp doing tricks.,The city lights,gold,are seen at night with passing traffic in fast motion.,only a continuous line at a silhouette.,are shown on skateboards as the girls continue going on to pretty fast against city roads.,are in an indoor town rollerblading and driving.\n4791,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3663,He gags on his drink. Someone,He gags on his drink.,Someone,gold,turns back to the leggy blonde.,walks out of him and breaks a bowl with the digicam.,\"sets a bottle on his glass, and taps a glass lid.\",regards him with pride.\n4792,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3664,Someone turns back to the leggy blonde. Someone,Someone turns back to the leggy blonde.,Someone,gold,\"turns his back on the second woman, who's pretty with flaxen hair.\",appears with a photo of a woman standing in front of her.,sets up his box on the coffee table and go in.,curls his fingers like a knitted spear.\n4793,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3660,\"He glances over his shoulder to see her enter a bar with a red wood paneled exterior. Turning on his heel, he\",He glances over his shoulder to see her enter a bar with a red wood paneled exterior.,\"Turning on his heel, he\",gold,enters the pass display area.,hastily follows her inside.,crosses a fifth street to a lift and continues.,slashes to the floor.\n4794,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3661,\"Someone enters and adjusts his jacket before confidently sidling up beside her. Affecting a suave smile, he\",Someone enters and adjusts his jacket before confidently sidling up beside her.,\"Affecting a suave smile, he\",gold,strolls up to the wheel.,squeezes her nonchalant hands.,takes his seat facing her and leans on the bar.,glances away then lowers his fist into hers.\n4795,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3659,\"On the street outside, someone passes a leggy blonde in a green. He\",\"On the street outside, someone passes a leggy blonde in a green.\",He,gold,smiles as he goes.,forces her hair down over her head and frames her daughter's fair hair.,glances over his shoulder to see her enter a bar with a red wood paneled exterior.,watches his wife appraisingly as he makes his way to the bedroom door.\n4796,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3665,\"Someone turns his back on the second woman, who's pretty with flaxen hair. Someone\",\"Someone turns his back on the second woman, who's pretty with flaxen hair.\",Someone,gold,sits up to his watching and grins at the ceiling.,\"appears on the pretty, blonde, in her bra and stripes.\",takes out the newspaper clipping.,returns a slip of paper with a beggar.\n4797,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73044,3662,\"Affecting a suave smile, he takes his seat facing her and leans on the bar. He\",\"Affecting a suave smile, he takes his seat facing her and leans on the bar.\",He,gold,gags on his drink.,\"exits someone's suite, discouraged.\",raises the pipe to someone's mouth.,stares at her as she wheels over.\n4798,anetv_MYFVsllwDnc,2674,A man is cutting tall grass with a large scythe. He,A man is cutting tall grass with a large scythe.,He,gold,peers out the window and exhales.,puts it evenly on the tree and creates the last of the plants.,is using a brush to dry freebies the mop.,stops for a minute to clean the blade and sharpen it.\n4799,anetv_91Wdp_uaWrY,16011,Two people are fencing in a room. A person,Two people are fencing in a room.,A person,gold,plays an electric guitar.,is standing next to a wall watching them.,is running in a hula ring.,is carrying a sled crashing against the water.\n4800,anetv_91Wdp_uaWrY,16012,A person is standing next to a wall watching them. They,A person is standing next to a wall watching them.,They,gold,stop fencing and walk away.,see the man boys in the woods.,wave them high into the air.,start to play and start playing a game of croquet with paper.\n4801,anetv_UcQ63-sQ9bI,4029,A close up of a guitar is seen followed by a person strumming the back. The person,A close up of a guitar is seen followed by a person strumming the back.,The person,gold,continues to play several drum sticks while an audience watches.,puts a hand on the instrument while eating the accordion and showing off on the stand.,walks away from the camera and continues playing while blowing smoke.,moves their hands up and down the neck of the guitar while moving it to play.\n4802,anetv_UcQ63-sQ9bI,4030,The person moves their hands up and down the neck of the guitar while moving it to play. The man,The person moves their hands up and down the neck of the guitar while moving it to play.,The man,gold,goes back and ends the segment with the ending credits and video scissors.,continues to play the instrument and stops in the end.,continues playing and ends by turning around and walking back into the camera.,talks as another man continues speaking to the camera and continuing to pull the buttons on the end.\n4803,anetv_MeGHSbUpM-U,7197,There are two people sailing on a speed boat through the ocean on a sunny day. They,There are two people sailing on a speed boat through the ocean on a sunny day.,They,gold,pull an inflated boat into the river.,go through the ocean water steadily and at high speed.,are floating on a lake carrying stiff rocks.,town around a desolate base.\n4804,anetv_MeGHSbUpM-U,7198,They go through the ocean water steadily and at high speed. One of the sailors,They go through the ocean water steadily and at high speed.,One of the sailors,gold,pulls a red rope as he wake boards on the steam boat.,springs on his dives again.,\"gets to the top of the river, trotting back across the desert and towards shore.\",marches the stone from the water.\n4805,anetv_MeGHSbUpM-U,7199,One of the sailors pulls a red rope as he wake boards on the steam boat. They,One of the sailors pulls a red rope as he wake boards on the steam boat.,They,gold,\"stand on the edge of the towering, crashing against the rocks.\",wait out inside the cells.,speed through the water to catch up with another boat that is ahead of them.,\"toppled by a boat, landing him and another.\"\n4806,anetv_MeGHSbUpM-U,7200,They speed through the water to catch up with another boat that is ahead of them. Several other steam boats,They speed through the water to catch up with another boat that is ahead of them.,Several other steam boats,gold,sit around the area draped over the small boat.,come from the water to pass buckets along the water in the tunnel board.,pass by them as they sail through the ocean.,float under the sky.\n4807,anetv_VuGLqAda2hE,13818,\"Then, the woman and other people lift weight. Then, the woman\",\"Then, the woman and other people lift weight.\",\"Then, the woman\",gold,continues riding the bike and then lift weigh.,\"lift the weight, lift their weight vigorously again.\",lift the weight with the weight.,put a chests bar between her bodies in a hand stand.\n4808,lsmdc3001_21_JUMP_STREET-149,16532,He circles the remaining answers at random then steps up behind the teacher to turn in his quiz. Someone,He circles the remaining answers at random then steps up behind the teacher to turn in his quiz.,Someone,gold,\"gets a text from someone reading, hallway now.\",boy finishes his routine.,calmly enters the escalade's chamber and captures his shots.,stares at the bespectacled newcomer.\n4809,lsmdc3001_21_JUMP_STREET-149,16534,Stacks of old computers and other equipment fill the room. Moving further inside the two undercover cops,Stacks of old computers and other equipment fill the room.,Moving further inside the two undercover cops,gold,can hear him looking off.,\", he spots a staffer attorney.\",\"find the handsome, sensitive teen working alone at a computer.\",see a large platoon of armed soldiers how the thief ties them forward.\n4810,lsmdc3001_21_JUMP_STREET-149,16533,Now the two cops run down a hall. Now they,Now the two cops run down a hall.,Now they,gold,enter a darkened classroom with the window blinds drawn.,ignore the injured someone.,enter a dusty old green house.,run round into sunny boardwalk and disappear towards the back windows.\n4811,lsmdc3001_21_JUMP_STREET-149,16531,Taking the quiz someone reads a question. He,Taking the quiz someone reads a question.,He,gold,circles the remaining answers at random then steps up behind the teacher to turn in his quiz.,looks up onto a railing's rock - wise steps.,stands at the end of the reply.,shows a cellphone flex frame.\n4812,anetv_Qfi8dqC4E4s,16756,\"A male athlete wearing blue top ran to the lane, started hopping after passing the white line and jumped to the sand, hit the sandy ground then stood up, then walked to the track field. A male athlete in red and blue uniform started to run to the field, hopped when passed the white line then jumped towards bed of sandy ground, he\",\"A male athlete wearing blue top ran to the lane, started hopping after passing the white line and jumped to the sand, hit the sandy ground then stood up, then walked to the track field.\",\"A male athlete in red and blue uniform started to run to the field, hopped when passed the white line then jumped towards bed of sandy ground, he\",gold,\"did then roller and landed, almost stopped by the attempt and great do is rough body blocks.\",\"landed on his make up throughout the field that was the goal gathering, then two teams do it and many large field jogging kites\",\"hit the ground, fell on his side and stood up and walked towards the field.\",gets the ball stalks to hit the green ball to his opponent then knocked in the sand path to intense field.\n4813,anetv_Qfi8dqC4E4s,16755,\"A man and woman wearing red jackets, the man was cheering, while the woman is taking video using her iPad, she has very serious look on her face, the woman handed the iPad to the man. A woman is picking up a pole, putting it inside the bigger pole, a man in blue jacket\",\"A man and woman wearing red jackets, the man was cheering, while the woman is taking video using her iPad, she has very serious look on her face, the woman handed the iPad to the man.\",\"A woman is picking up a pole, putting it inside the bigger pole, a man in blue jacket\",gold,or lying on by the ground.,looked up from the ground.,is sitting down facing the camera.,is standing under her.\n4814,anetv_b7Q-Jj9ZEH0,3622,The girl reach out the a hand as she climbs on the top of the slide. The girl,The girl reach out the a hand as she climbs on the top of the slide.,The girl,gold,jumps from the bar and jumps on a bench on the beach.,moves over the couch and another boy hops out.,slows as we see the lady extend her feet to stop and the baby pauses.,slide down again and fell on the pool of ball but on her stomach.\n4815,anetv_b7Q-Jj9ZEH0,3621,The little girl slide down the yellow slide and fell on the pool of balls. The girl,The little girl slide down the yellow slide and fell on the pool of balls.,The girl,gold,finishes and looks down.,jumped on the back and fell to the ground.,climbs out of the trampoline and stands around a white girl.,reach out the a hand as she climbs on the top of the slide.\n4816,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59801,7285,The waters of the anduin river lie dark and undisturbed. The thin white hand,The waters of the anduin river lie dark and undisturbed.,The thin white hand,gold,covers its nose below the back of a curtained section as he floats off.,opens to reveal one ring.,reaches down the street.,washes up the tarmac.\n4817,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59801,7284,Ripples of light play across isildur's pale face. he is dead. The ring,Ripples of light play across isildur's pale face. he is dead.,The ring,gold,\"seems to drop into the earth, pieces shriek apart.\",falls through the murky waters of the river.,\"is visible, obliterated by white.\",lies in the ground and his deep seeping reflect a similar cloud of smoke.\n4818,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59801,7286,\"The thin white hand opens to reveal one ring. Bathed in cold moonlight, the world\",The thin white hand opens to reveal one ring.,\"Bathed in cold moonlight, the world\",gold,manages to shake the off.,\", like a gloomy figure, is blue.\",lies dark and still.,rises on someone's cheeks.\n4819,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59801,7283,Isildur materializes under water. as the ring slips slowly from his finger. Ripples of light,Isildur materializes under water. as the ring slips slowly from his finger.,Ripples of light,gold,rise from the cross's blade.,play across isildur's pale face.,filters out of the darkness as it lashes out in the darkness.,illuminate the building and its roof.\n4820,anetv_IGcsVPa34Hc,744,A small girl is making cookies with her mother in her kitchen. She,A small girl is making cookies with her mother in her kitchen.,She,gold,wants her mom to pretend that she is santa claus.,has chicken under some salt in a bottle of salt.,sits in a car eating popcorn and drinking wine.,is over the bowl and walks to the bed.\n4821,anetv_IGcsVPa34Hc,745,She wants her mom to pretend that she is Santa Claus. The laughs and,She wants her mom to pretend that she is Santa Claus.,The laughs and,gold,rolls the cookie dough on the cutting board.,has a good washing job face and after she was done she stands in the bathroom with batons.,shows her dad how to drive around in the end.,displays the whale fish.\n4822,anetv_IGcsVPa34Hc,749,\"After the cookies are baked, they decorate the cookies with sprinkles and frosting. The girl\",\"After the cookies are baked, they decorate the cookies with sprinkles and frosting.\",The girl,gold,plays the cake with the cooked symphony faces from the two friends.,picks up a chicken.,\"puts her hand on it, then ties it up.\",proudly shows the finished cookie after it's done.\n4823,anetv_IGcsVPa34Hc,748,\"The mother then takes the cookie cutter and makes some more cookies for baking, Then both mother and daughter go through the cookie recipe as they place the cookie dough on the tray. After the cookies are baked, they\",\"The mother then takes the cookie cutter and makes some more cookies for baking, Then both mother and daughter go through the cookie recipe as they place the cookie dough on the tray.\",\"After the cookies are baked, they\",gold,decorate the cookies with sprinkles and frosting.,put the oven onto the oven and after the food is made.,start pretending it when they make it weakly and whites off a little again.,slice the insides and move it with the pizza pads to cut the cake.\n4824,anetv_IGcsVPa34Hc,746,The laughs and rolls the cookie dough on the cutting board. The mother,The laughs and rolls the cookie dough on the cutting board.,The mother,gold,picks up the other flippers and takes it off the oven.,of the dough is shown.,opens the oven and puts the tray full of cookie dough into the oven for baking.,puts the cake securely in the toaster.\n4825,anetv_IGcsVPa34Hc,747,\"The mother opens the oven and puts the tray full of cookie dough into the oven for baking. The mother then takes the cookie cutter and makes some more cookies for baking, Then both mother and daughter\",The mother opens the oven and puts the tray full of cookie dough into the oven for baking.,\"The mother then takes the cookie cutter and makes some more cookies for baking, Then both mother and daughter\",gold,arrive at a dish.,put the two grape tomatoes to make a cake pan then put the pan position to move the oven.,begin pouring the ingredients into the oven.,go through the cookie recipe as they place the cookie dough on the tray.\n4826,lsmdc1018_Body_Of_Lies-80074,7877,\"Someone shows his i d.. An older agent, Holiday,\",Someone shows his i d..,\"An older agent, Holiday,\",gold,keeps one rollers up in a sprint to each other.,perches on a desk in a meeting room.,is in the garden with someone and his associates.,is wearing a football jersey and rugged cheek.\n4827,lsmdc1018_Body_Of_Lies-80074,7876,Someone pulls up on a busy street and gets out. Someone,Someone pulls up on a busy street and gets out.,Someone,gold,checks his watch on the driver's window.,\"shuts her car door, then chases after her with a police car and onto a bus heading for the airport.\",\"walks into an apartment, throws keys on a table and looks around.\",holds his mobile out of the window.\n4828,lsmdc0031_The_Lost_Weekend-65452,18924,\"He is biting his lips, unable to find another argument. He\",\"He is biting his lips, unable to find another argument.\",He,gold,wanders out of his bottoms out and puts something on the console.,shoves the leopard coat and umbrella close to someone.,\"storms through an arcade, dancing alone.\",comes off into the hall.\n4829,anetv_bHAzuAnnvcU,16776,\"At the end he begins to struggle bit, but finally finished. When he is done another little boy\",\"At the end he begins to struggle bit, but finally finished.\",When he is done another little boy,gold,falls down holding the stick.,throws two mice high in the air and celebrate with the keeper.,comes and stands by him.,\"stands up to put his other foot on the mans knee and starts throwing the other around, hitting a pinata.\"\n4830,anetv_bHAzuAnnvcU,10961,He begins making his way across the monkey bars. He,He begins making his way across the monkey bars.,He,gold,makes it to the other side and jumps down next to another boy.,continues dancing around while he does an handstand and begins running around on the sides.,stops and bends down to hit the pinata.,jumps off of the bike and begins to walk on top.\n4831,anetv_bHAzuAnnvcU,10960,A young child is seen standing before a set of monkey bars. He,A young child is seen standing before a set of monkey bars.,He,gold,lays down a set of monkey bars as he zooms into and turns once again.,holds up the swinging wall and begins moving back and fourth.,takes the small monkey and pulls it back and sets him down on the edge of the swing.,begins making his way across the monkey bars.\n4832,anetv_bHAzuAnnvcU,16775,A boy goes across the monkey bars as a lady watches and cheers him on. At the end he,A boy goes across the monkey bars as a lady watches and cheers him on.,At the end he,gold,spins away from the boy.,is also helping some of the monkey bars but does n't really does: stilts.,\"begins to struggle bit, but finally finished.\",jumps to a sand pit in the playground with the child running around him.\n4833,lsmdc3091_ZOMBIELAND-44662,2775,\"In the sitting room, someone dances. He\",\"In the sitting room, someone dances.\",He,gold,is at a table.,plops onto a couch.,struts towards the judges.,picks up the dishrag and starts his dryer.\n4834,lsmdc3091_ZOMBIELAND-44662,2778,Now the oxfords make their way down a hall. The scraggly haired man,Now the oxfords make their way down a hall.,The scraggly haired man,gold,\"uses the payphone, suspended over the crowd.\",holds out a tray and cooks dinner.,crouches up to see that he can't keep his attention at getting up.,stiffly shifts one shoulder then turns a corner.\n4835,lsmdc3091_ZOMBIELAND-44662,2773,He jumps toward the canopy bed. The zombie killer,He jumps toward the canopy bed.,The zombie killer,gold,throws it and tries to stop him.,stands on top of someone.,flops down and crawls off of it.,hurriedly pockets his cigarette and picks up a torn torch.\n4836,lsmdc3091_ZOMBIELAND-44662,2769,Six foot urns bookend the door and a grand staircase leads to a second story. Crystal chandeliers,Six foot urns bookend the door and a grand staircase leads to a second story.,Crystal chandeliers,gold,\"surround the apartment, and their pair of trolleys and black appear reveals red lettering.\",\"rise from the floor, revealing the children having sex.\",emerge from bare floor.,hang from the ceiling.\n4837,lsmdc3091_ZOMBIELAND-44662,2770,\"Crystal chandeliers hang from the ceiling. Later in a sitting room, a pop art painting\",Crystal chandeliers hang from the ceiling.,\"Later in a sitting room, a pop art painting\",gold,of a man with a bottle and an apron lies behind it on the couch.,with white chalkboard but colorful makeup spikes on her dark head.,shows tiled images of bill someone's face in bright candy colors.,photo shows her in a pair of black leather - sleeved pants.\n4838,lsmdc3091_ZOMBIELAND-44662,2772,Now someone and someone enter a bedroom. He,Now someone and someone enter a bedroom.,He,gold,jumps toward the canopy bed.,stands and drinks from the window with someone.,finds someone laying on a wall.,wakes and wakes with a couch.\n4839,lsmdc3091_ZOMBIELAND-44662,2777,He tugs off his boots. Now the oxfords,He tugs off his boots.,Now the oxfords,gold,hangs flat on a piece of upside down on the roof.,swarm under the elephant.,\"remains in a garage, like giraffe boobs pulled by wrapping presents.\",make their way down a hall.\n4840,lsmdc3091_ZOMBIELAND-44662,2771,\"Later, someone and Little someone creep down a hallway. Open doors\",\"Later, someone and Little someone creep down a hallway.\",Open doors,gold,\"travel closed, as her outstretched bodies bound around.\",\", halfway down the ship pushes ajar.\",reveal a home theater.,lead to a supply room.\n4841,lsmdc3091_ZOMBIELAND-44662,2776,\"As he waves his booted feet in the air, someone drifts away. He\",\"As he waves his booted feet in the air, someone drifts away.\",He,gold,tugs off his boots.,see two younger agents playing a book with a truck parked behind it.,relax on his feet - - a foot moaning.,\"gives a final look, then looks into his own eyes.\"\n4842,lsmdc3091_ZOMBIELAND-44662,2774,Now a figure lies on a four column bed. He,Now a figure lies on a four column bed.,He,gold,presses past two restraining fingers.,holds his attention down.,lowers his feet to the leopard print carpet.,watches the iron man opens the door and drops the cross perch on the floor.\n4843,lsmdc0016_O_Brother_Where_Art_Thou-55313,13396,The little Hogwallop boy walks away in long shot down the middle of the empty road. His walk,The little Hogwallop boy walks away in long shot down the middle of the empty road.,His walk,gold,\"is unsteady, the wood blocks still strapped to his feet.\",appears and then looks to him.,\"is a short residential, as he winds up doing hills and bumps.\",\"casually in of the ield sleeping, and a canister pulls up.\"\n4844,lsmdc0016_O_Brother_Where_Art_Thou-55313,13401,People are looking at the engine. He,People are looking at the engine.,He,gold,walk along a street road and walk in a circle and other road.,pushes a small tin across the counter.,\"speeds up and down a snow covered rotations, then smashes on slate surfaces, avoiding highway lamps.\",rides directly on the next train police van and boats.\n4845,lsmdc0016_O_Brother_Where_Art_Thou-55313,13400,\"We pan someone over to the shoulder where the car is stopped, its hood propped open. People\",\"We pan someone over to the shoulder where the car is stopped, its hood propped open.\",People,gold,lift the rear of the carriage building.,walk at the crash home and echo against its quivers ceiling.,move up and out of the car.,are looking at the engine.\n4846,lsmdc0016_O_Brother_Where_Art_Thou-55313,13397,He turns to face us and hollers. Someone,He turns to face us and hollers.,Someone,gold,\"snaps his grip, then gets a firm grip on the animal's neck as he paddles.\",'s attention is drawn to her young faces.,glances through at the lobby.,enters in the foreground and throws a dirt clod at the boy.\n4847,lsmdc0016_O_Brother_Where_Art_Thou-55313,13398,Someone enters in the foreground and throws a dirt clod at the boy. It,Someone enters in the foreground and throws a dirt clod at the boy.,It,gold,has a damp wall.,gets into the car as the van blows on.,lands shy as someone yells.,arrives at the old house.\n4848,lsmdc0016_O_Brother_Where_Art_Thou-55313,13399,It lands shy as someone yells. We,It lands shy as someone yells.,We,gold,\"the mass of grain like ice ricochet off someone's arms like apples which shows scruff to its head, reacts briefly to even approach\",tumble up the glass as she looks on.,sparks awning above the coastal.,\"pan someone over to the shoulder where the car is stopped, its hood propped open.\"\n4849,anetv_1wqSUOGmpBs,2921,\"The referee lets them know when to start and the sumos wrestle while the referee walks around the ring and monitors them. Finally one of the men is able to push another man out of the ring, they stop wrestling, the loser walks to his end and they\",The referee lets them know when to start and the sumos wrestle while the referee walks around the ring and monitors them.,\"Finally one of the men is able to push another man out of the ring, they stop wrestling, the loser walks to his end and they\",gold,\"get in place behind the teens, who absent the teens wearing someone red t - shirt.\",lob the body in the air until end entering the sticks.,begin to fight them and make this bull result by big man in the crowd but medics are wearing slack and capes.,bow to one another and both leave the ring.\n4850,anetv_1wqSUOGmpBs,2920,Two very large sumos are in an elevated circle doing leg warm ups and squatting while another man in the middle dressed in Japanese garb referees. The referee lets them know when to start and the sumos,Two very large sumos are in an elevated circle doing leg warm ups and squatting while another man in the middle dressed in Japanese garb referees.,The referee lets them know when to start and the sumos,gold,begin to play lacrosse.,wrestle while the referee walks around the ring and monitors them.,continue to play again behind each other up the steps of a tug.,run off the court while the host walks away.\n4851,anetv_7-RbxFePrmU,2216,A girl is holding a toothbrush up to the camera. She,A girl is holding a toothbrush up to the camera.,She,gold,bends over and picks up a contact lens lens.,does some different tricks.,uses the brush to brush her teeth.,brushes her hair and begins brushing her hair.\n4852,anetv_7-RbxFePrmU,2217,She uses the brush to brush her teeth. She,She uses the brush to brush her teeth.,She,gold,scrubs her teeth back and forth for a long time.,continues to shave the fur as well as her face and demonstrates how she means and cut the grass from the woman's mouth.,uses the brush to clean up the razor next to cleans a sink with a razor.,waxes the cursor along the horse's mane.\n4853,lsmdc3001_21_JUMP_STREET-141,9355,\"In drama, someone stands on a small stage facing the class. He\",\"In drama, someone stands on a small stage facing the class.\",He,gold,looks up from the armchair and bats off the glasses.,enters the store and lifts up paperwork.,sways nervously and takes a deep breath as a keyboardist struggles to cue him in.,looks at his laptop and he narrows his eyes.\n4854,lsmdc3001_21_JUMP_STREET-141,9354,\"Her gaze lingers on him as she steps away. In drama, someone\",Her gaze lingers on him as she steps away.,\"In drama, someone\",gold,stands on a small stage facing the class.,looks at the arched office ceiling.,shoots someone on the shoulder with his sword and shoves someone onward.,gazes at her wound and places his arms around her.\n4855,lsmdc3001_21_JUMP_STREET-141,9353,She gives him a quiz and winks flirtatiously. Her gaze,She gives him a quiz and winks flirtatiously.,Her gaze,gold,lingers on him as she steps away.,\"hardening, someone lowers his gaze to the floor.\",slides around the train.,remains averted as she picks up the phone.\n4856,anetv_LwJFjFdJy5c,4147,A dog is seen running up and down the field in the middle of the audience. The dog,A dog is seen running up and down the field in the middle of the audience.,The dog,gold,keeps running back and fourth while the camera watches from the side.,jumps on the ground while front while people watch on the side.,continuously shakes his head and sticks his arms up in the air a little more.,continues to play dribble with the group as a man continues running behind.\n4857,anetv_LwJFjFdJy5c,4146,A large group of people are seen sitting around an outdoor field. A dog,A large group of people are seen sitting around an outdoor field.,A dog,gold,is seen moving along a field of grass.,is seen running up and down the field in the middle of the audience.,runs around and knocks on the other while still chasing her.,backs around in the pit while a person speaks with the man.\n4858,anetv_QR2BmWR5FGM,15134,A small playground is seen followed by a man and his dog walking into frame. The man pushes it dog up and the dog,A small playground is seen followed by a man and his dog walking into frame.,The man pushes it dog up and the dog,gold,is seen pushing it down on a string.,crashes onto the floor.,runs in the man's direction.,rides down the slide.\n4859,anetv_QR2BmWR5FGM,15135,The man pushes it dog up and the dog rides down the slide. The man,The man pushes it dog up and the dog rides down the slide.,The man,gold,gets a turn and walks back and fourth forward.,continues to walk down the dirt.,throw the frisbee like a dog on board.,does this again with the dog in another playground.\n4860,anetv_DpI9JtaMtec,1830,\"A person spreads mustard sauce on slices of bread, then the person put on top Swiss cheese, jam, sauerkraut and a slice of bread on top. After, the person spreads butter on the sandwiches and put them on a hot surface, then the person\",\"A person spreads mustard sauce on slices of bread, then the person put on top Swiss cheese, jam, sauerkraut and a slice of bread on top.\",\"After, the person spreads butter on the sandwiches and put them on a hot surface, then the person\",gold,mix them in cheese and slices and serve it with a measuring cup.,cleans the edges with shaving thinner and put it on the bread.,cuts the sandwiches in half.,cuts the sandwich before mixing it in a new potato.\n4861,anetv_p3vqC_FFyyM,3455,This man is lifting a tile off the roof using the pointed part of the screwdriver. The camera,This man is lifting a tile off the roof using the pointed part of the screwdriver.,The camera,gold,proceeds to turn for a man and the man uses some shingles of the roof to be blown backwards.,zooms in to show the dirt in the middle where there is n't any tiles.,moves his back to the roof hold and wipes all the clothes to the shoe.,unlatches down and lifts the edge of numbers off the right of the chair.\n4862,anetv_p3vqC_FFyyM,8204,The person begins pushing tiles using the tool. He,The person begins pushing tiles using the tool.,He,gold,uses a red roller to cut a part of the trowel.,continues to work around the roof while looking all around him.,uses the ruler to hang foot tiles and rubbing it out to keep the shoes.,jumps at the bottom of the tarp.\n4863,anetv_p3vqC_FFyyM,8203,A close up of a roof is shown with a person's hand holding a tool. The person,A close up of a roof is shown with a person's hand holding a tool.,The person,gold,continues exercising with various equipment.,continues measuring the wax all over a ski.,uses the tool to pick up the object off the tire.,begins pushing tiles using the tool.\n4864,anetv_dAP7xalPRHo,116,\"A person puts a garment in a pail, then he adds detergent and water. Then, the man\",\"A person puts a garment in a pail, then he adds detergent and water.\",\"Then, the man\",gold,\"dries a towel, while rinsed a towel.\",walks to a floor covered on a towel and wash his hands.,put soap in the sink.,\"washes the cloth with his hand, and then pours water and rinse several times.\"\n4865,anetv_dAP7xalPRHo,117,\"Then, the man washes the cloth with his hand, and then pours water and rinse several times. Next, the person\",\"Then, the man washes the cloth with his hand, and then pours water and rinse several times.\",\"Next, the person\",gold,adds the liquid of solution along the glass and adds more paint to the floor.,stops another minute then grabs two oil and put the rag on top.,puts his hand on the cloth hanger and puts a shoe to the floor.,carry the the garment to hang on a rope and dry.\n4866,lsmdc3014_CAPTAIN_AMERICA-5353,4344,\"The goateed man glances down, then follows someone. As someone dresses in an examination room, a nurse\",\"The goateed man glances down, then follows someone.\",\"As someone dresses in an examination room, a nurse\",gold,gives the impression to a bald thug.,takes down a thick tube and condoms next to someone's bindings.,walks in and whispers into a doctor's ear.,catches someone's hair and aims it at him.\n4867,lsmdc3014_CAPTAIN_AMERICA-5353,4342,Someone salutes then walks off after the girls. Someone,Someone salutes then walks off after the girls.,Someone,gold,looks up from his work.,walks in the opposite direction and into the recruitment office.,and someone enter from a room adjacent overlooking the bank.,receives a text from someone.\n4868,lsmdc3014_CAPTAIN_AMERICA-5353,4341,Someone returns and the two friends hug. Someone,Someone returns and the two friends hug.,Someone,gold,\"gives a wounded look, then stands and snaps his photo.\",salutes then walks off after the girls.,\"passes someone, the unshaven man in a cap empty, and walks forward.\",puts up someone's inhaler.\n4869,lsmdc3014_CAPTAIN_AMERICA-5353,4343,Someone walks in the opposite direction and into the recruitment office. The goateed man,Someone walks in the opposite direction and into the recruitment office.,The goateed man,gold,\"picks up a bank uniform and starts through it for the hotel lobby, then rips a piece of settee.\",follows his son through a door.,\"glances down, then follows someone.\",removes the automaton from the shelf then slides the table and takes out a photo card.\n4870,anetv_z9PXpyWbXk8,11406,The little girl is sitting at the other end of a mat. The young boy,The little girl is sitting at the other end of a mat.,The young boy,gold,\"picks up the mop onto the floor, stands up and walks away from the dry roping studio.\",is walking next stage.,jumps the first beam and starts to swing.,run towards the mat and jump over the pole.\n4871,anetv_z9PXpyWbXk8,11405,The kid is standing in the court. The little girl,The kid is standing in the court.,The little girl,gold,is sitting at the other end of a mat.,frowns and runs into a classroom.,is doing situps on the bed.,holds trays of balls.\n4872,anetv_i1s-HuRTr5k,4022,An athlete is seen sitting on the ground when a man walks over and hands him shoes. The man then,An athlete is seen sitting on the ground when a man walks over and hands him shoes.,The man then,gold,lays down on the ground and begins moving sand all around him.,begins moving round in turn holding several balls as he continues to play them.,puts on the shoes and begins moving around the field.,begins laying down on the ground with the ball while holding up a dog.\n4873,anetv_i1s-HuRTr5k,4023,The man then puts on the shoes and begins moving around the field. The man,The man then puts on the shoes and begins moving around the field.,The man,gold,then jumps off to the side and continues in process of him riding his legs around the sides.,moves back around the other upper still in the area and speaks with the man while all stands looking into the camera.,continues to play the game while standing all around and speaking more to the camera.,kicks a ball around while the camera follows him from behind.\n4874,lsmdc1055_Marley_and_me-96615,18364,The windy dog gets up and trots out. Someone,The windy dog gets up and trots out.,Someone,gold,puts on a coat and goes back outside.,stops running from a platform and moves over to the limping someone.,\"'s eyes move slowly as he moves to the door, wipes his mouth, then stares.\",\"emerges through a forest out of the shadows, staring away through the forest toward people's ghostly eyes.\"\n4875,anetv_J2gGPC98yec,15280,Several players are gathered on an indoor field. A man,Several players are gathered on an indoor field.,A man,gold,jumps down and throws the ball into the goal.,walks up holding a ball in his hand.,bounces several hammer balls in a net in the center of the stadium.,of lacrosse is then shown.\n4876,anetv_J2gGPC98yec,2707,A man is standing on a field. He,A man is standing on a field.,He,gold,is kicking a ball with his racket.,picks up a ball and spins around before throwing it onto the field.,throws a ball on the field.,starts playing basketball with a racquet.\n4877,anetv_J2gGPC98yec,2708,He picks up a ball and spins around before throwing it onto the field. People,He picks up a ball and spins around before throwing it onto the field.,People,gold,measure the distance but the man spins with the mallets of his feet.,makes a shot in the wall and presents it to the camera where he picks up the opposing glowing ball and proceeds.,are like a hilly range.,are sitting down next to him watching.\n4878,anetv_J2gGPC98yec,15281,A man walks up holding a ball in his hand. He,A man walks up holding a ball in his hand.,He,gold,\"hit the ball back and forth between the pins, trying to mitten it completely.\",\"spins a few times, then lets go of the ball.\",raises the red swinging ball to him by pointing it at a wall.,man picks off a ball.\n4879,anetv_gHYcZYkrxxQ,4340,A man in a snow covered parking lot lined with tall street lamps scrapes hardened snow and ice off of his maroon sports car at night. The man,A man in a snow covered parking lot lined with tall street lamps scrapes hardened snow and ice off of his maroon sports car at night.,The man,gold,cooked and talks to the camera.,sets his car down and grabs his iron hand.,begins by scraping ice and snow off of the bottom of his windshield and the hood of his car and front grill.,opens his car window shut and takes out the car.\n4880,anetv_gHYcZYkrxxQ,4341,The man begins by scraping ice and snow off of the bottom of his windshield and the hood of his car and front grill. The man then,The man begins by scraping ice and snow off of the bottom of his windshield and the hood of his car and front grill.,The man then,gold,scrapes and kicks at ice chunks surrounding the area around the front passenger tire.,removes his car and turns it off.,begins a snow skier on slope doing tricks while skateboarding through the snow.,gets out of the cab and is shown going towards a lakeside in waist tunnels.\n4881,anetv_gHYcZYkrxxQ,4342,\"The man then scrapes and kicks at ice chunks surrounding the area around the front passenger tire. Lastly, the man\",The man then scrapes and kicks at ice chunks surrounding the area around the front passenger tire.,\"Lastly, the man\",gold,continues moving and is finally seen driving over and picking the tire up with the last slice of steel.,scrapes ice off of the trunk of the car and the rear passenger tire area before waiving and walking toward the camera.,puts the contact ice in the driver seat and enters the truck.,smashes the top tanker and removes the dealer's kick with the tool.\n4882,lsmdc3064_SPARKLE_2012-4112,9670,\"As someone chomps on a carrot, her mother shoots her a furious look. Someone\",\"As someone chomps on a carrot, her mother shoots her a furious look.\",Someone,gold,bounces her hair high a two feet.,draws a deep breath.,shakes his father's hand.,heats her undamaged staining.\n4883,lsmdc3064_SPARKLE_2012-4112,9669,\"Someone Bryce looks at someone. As someone chomps on a carrot, her mother\",Someone Bryce looks at someone.,\"As someone chomps on a carrot, her mother\",gold,is drawing her nail.,shoots her a furious look.,pushes her inside of a grill.,rides past the crowd.\n4884,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3346,Someone offers it to someone. Someone,Someone offers it to someone.,Someone,gold,takes her hand from someone and kisses it gently.,starts to struggle with someone's order.,walks back to his desk and closes his eyes.,places the metal shard in someone's hand.\n4885,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3339,Someone nods reluctantly and peacefully drops to his knees. People,Someone nods reluctantly and peacefully drops to his knees.,People,gold,watches the boy swim downward as his painter walks jumping.,\"taps each wall, with hand sticks.\",lower their pants to their ankles.,forces the fat bangs on his face with his hands.\n4886,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3341,Someone drops someone's writhing body to the floor and presses his girth against the cell door. Someone locates an entry and concentrates on the words just as the other supremacists force the door open - - someone,Someone drops someone's writhing body to the floor and presses his girth against the cell door.,Someone locates an entry and concentrates on the words just as the other supremacists force the door open - - someone,gold,satchel in hand.,secretly tries to dial the combination.,flies on with his crutches.,focuses on the words.\n4887,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3344,\"People, walking by his side, do a double take. Someone\",\"People, walking by his side, do a double take.\",Someone,gold,walks out of the room.,\"approaches the board surface, climbs up onto the cliff and grabs someone's arm.\",roots through the trash until he finds something: a razor sharp piece of metal about two feet long.,are walking through the kitchen.\n4888,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3351,Someone comes screaming from nowhere like a bat out of hell! Someone,Someone comes screaming from nowhere like a bat out of hell!,Someone,gold,\"starts walking together down a tall stairwell of black slush, rolls up the ceiling.\",runs his fingertips through the gunman.,\"drops to the floor, indian style, wipes the dirt in his hands and freezes up completely.\",\"whips between someone and the cape and wedges them in a truck's trunk, smashing their legs under the white railings.\"\n4889,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3343,\"Someone, thirteen again, comes to in the woods. People, walking by his side,\",\"Someone, thirteen again, comes to in the woods.\",\"People, walking by his side,\",gold,look at huddled holding trees filling the graveyard.,stand anger in thought.,returns to the door with someone.,do a double take.\n4890,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3340,\"Someone looks miserable, about to do the deed when - - someone bulldozes past the Aryans into the room, slamming someone into the wall and jamming a shank into someone's crotch! Someone, anticipating someone's fall,\",\"Someone looks miserable, about to do the deed when - - someone bulldozes past the Aryans into the room, slamming someone into the wall and jamming a shank into someone's crotch!\",\"Someone, anticipating someone's fall,\",gold,stomps someone's face before snatching his journals from someone's shelf.,grabs him from the sweet.,\"runs out with someone, grabs the cutter and slips to a dead - handed cot.\",\"places with his chair, starts swinging off the stage, but someone slips a few steps away from him.\"\n4891,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3350,Someone looks at the sack and begins to untie it. Someone,Someone looks at the sack and begins to untie it.,Someone,gold,\"is close to the neckline of a tall, smiling businessman.\",comes screaming from nowhere like a bat out of hell!,turns the message between cars.,is beside it with his hand.\n4892,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3348,Someone slowly follows someone as he bolts away. Someone,Someone slowly follows someone as he bolts away.,Someone,gold,\"takes a deep breath, then hurls away the ruined floor and falls to his knees.\",\"groans on the ground, writhing.\",raking the snow drift over to someone.,comes out of the window.\n4893,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3342,\"Reverberant sounds of barking break the sound barrier and the image of Aryans storming the cell behind him become a frenetic blur. Someone, thirteen again,\",Reverberant sounds of barking break the sound barrier and the image of Aryans storming the cell behind him become a frenetic blur.,\"Someone, thirteen again,\",gold,comes to in the woods.,\"lies back in someone's pocket, with a limp looking pain - killer.\",looks like someone has taken his hand from the door.,leaps onto the ceiling.\n4894,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3353,\"Someone wakes up and screams when she sees blood spurt from someone's throat. Someone, silhouetted by the sky,\",Someone wakes up and screams when she sees blood spurt from someone's throat.,\"Someone, silhouetted by the sky,\",gold,fills the dusty thing sight.,\"passes, is his shrinking gown and a low sprouting feather.\",seems to vibrate violently as if operating a jack - hammer.,looks up from his laptop.\n4895,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3345,Someone roots through the trash until he finds something: a razor sharp piece of metal about two feet long. Someone,Someone roots through the trash until he finds something: a razor sharp piece of metal about two feet long.,Someone,gold,turns to look out a window.,offers it to someone.,\"enters the house and rushes away from someone, who is asleep in bed, bed.\",turns his back to the dentist's scar.\n4896,lsmdc0023_THE_BUTTERFLY_EFFECT-59640,3347,Someone places the metal shard in someone's hand. Someone,Someone places the metal shard in someone's hand.,Someone,gold,rubs someone's nose.,waits as it flames away dimly.,spreads it open then lowers his back.,slowly follows someone as he bolts away.\n4897,anetv_sqEsAtdFfrg,17992,A young child is seen standing ready holding a pole and then runs down a long track and throws the pole. He,A young child is seen standing ready holding a pole and then runs down a long track and throws the pole.,He,gold,jumps on the side while smaller child rides the pole down the track.,balances in the end while holding onto the pole and looking off into the distance.,walks down some land stand on a cart and jumps around and then jumps on a rope while other girl hugs.,walks back around the track when another person is seen running down and throwing the stick.\n4898,anetv_sqEsAtdFfrg,17993,He walks back around the track when another person is seen running down and throwing the stick. Finally one last boy,He walks back around the track when another person is seen running down and throwing the stick.,Finally one last boy,gold,steps up to the track to throw the javelin and then walks back to the others.,continues speaking to the camera again and another boy bends down over him.,makes his turn around holding the racquet ball for his son.,hits his opponent again and makes a brief gesture on the stand.\n4899,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7116,The butler Nestor shows them inside. Nestor,The butler Nestor shows them inside.,Nestor,gold,leads them to a large underground chamber.,strolls across the beach toward a light plant surrounded by tall trees overhead.,closes the robot's door.,goes to get excited as he leafs through a photo.\n4900,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7119,Nestor restrains the Rottweiler who growls at a stack of furniture. Someone and someone,Nestor restrains the Rottweiler who growls at a stack of furniture.,Someone and someone,gold,skateboard in the sand out and drive them.,watch helplessly as someone follows through the deserted dining area.,\"move aside furniture, revealing a small hole in a back wall.\",grab them and poke it around their shoulders.\n4901,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7123,Someone walks toward the back of the secret chamber to a statue of a man holding a small cross. Someone,Someone walks toward the back of the secret chamber to a statue of a man holding a small cross.,Someone,gold,walks up to the statue and examines a stone globe.,stops as he holds it upright.,wears a protective weapon.,emerges a covered hallway and picks up a set of drawers.\n4902,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7117,Nestor leads them to a large underground chamber. Someone,Nestor leads them to a large underground chamber.,Someone,gold,removes a second vent.,sleeps with his feet out.,buries his face with her father.,paces across the stone floor.\n4903,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7121,Snowy appears in the hole on the other side. They,Snowy appears in the hole on the other side.,They,gold,smash through the wall with a beam of wood.,get out cutting out fish.,use the companies paddle to climb the rock wall.,quickly stand on the underpass with a framed purple piece of metal on the locomotive's arm.\n4904,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7122,They smash through the wall with a beam of wood. Someone,They smash through the wall with a beam of wood.,Someone,gold,drops his hands and climbs down his side.,walks toward the back of the secret chamber to a statue of a man holding a small cross.,pulls up to someone's uncle's eyes.,swings low out into the bright sky with the alien following behind.\n4905,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7120,\"Someone and someone move aside furniture, revealing a small hole in a back wall. Snowy\",\"Someone and someone move aside furniture, revealing a small hole in a back wall.\",Snowy,gold,grabs onto the weapon while the host inspects.,\"fights either side of the stone brick, knocking the outer wall.\",appears in the hole on the other side.,floats on the top of the tower as people clap their hands.\n4906,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32075,7118,Someone paces across the stone floor. Nestor,Someone paces across the stone floor.,Nestor,gold,lowers someone's stretching hand to his face.,restrains the rottweiler who growls at a stack of furniture.,\"inanely, he lays his hand on his hand and squeezes it.\",lifts the metal hand from the chair.\n4907,lsmdc1014_2012-78779,17697,\"He spots a young boy sitting by a key, cuddling with a toy boat, to the driver. The driver\",\"He spots a young boy sitting by a key, cuddling with a toy boat, to the driver.\",The driver,gold,stops as a hoard of zombies gather behind the trickling jews.,ignores someone and drives through the puddle smashing the boy and his boat.,\"rummages for the driver's window, pulling his hood tighter.\",pulls the old pipe and sprays its huge shower windows with the windshield.\n4908,lsmdc1034_Super_8-7981,19077,It's racked by a series of explosions. He,It's racked by a series of explosions.,He,gold,plunges into a tunnel covered with painting.,\"stares down the road at his mansion, now from the eye of the bus driver.\",watches as an explosion throws a chunk of the carriage high into the air.,frames and both fully drones.\n4909,lsmdc1034_Super_8-7981,19068,Electrical explosions go off around the station and trucks hurtle through the air. The kids,Electrical explosions go off around the station and trucks hurtle through the air.,The kids,gold,run up a circus back staircase and onto a forest floor towards the second entrance.,flee frantically through the debris as explosions mushroom around them.,watching someone emerge from the shadows.,\"sneak through, the road blocked by a bunch of wet abandoned vehicles.\"\n4910,lsmdc1034_Super_8-7981,19076,He looks at a carriage lying on its side. It,He looks at a carriage lying on its side.,It,gold,'s racked by a series of explosions.,sits in the garden at an island with flowers within its entrance.,stands quickly and holds his head in his hand.,is three other humans in the ceiling.\n4911,lsmdc1034_Super_8-7981,19080,\"On the remains of the platform, the Cinay camera runs out of film. The yellow Coupe, still largely unscathed,\",\"On the remains of the platform, the Cinay camera runs out of film.\",\"The yellow Coupe, still largely unscathed,\",gold,sits in the middle of the devastation.,passes by the students name someone.,\"turns, riding flowers in the pedestrians.\",breaks out in a run.\n4912,lsmdc1034_Super_8-7981,19083,Someone spots a blood stain. Someone,Someone spots a blood stain.,Someone,gold,waits frantically to check on the plates then propels it to the foyer.,walks slowly towards the ominous blood stain.,races through a hole in the ceiling.,\"and reach him, someone decapitates it.\"\n4913,lsmdc1034_Super_8-7981,19074,\"As he turns to run, a massive explosion erupts from the debris, throwing him to the ground. He\",\"As he turns to run, a massive explosion erupts from the debris, throwing him to the ground.\",He,gold,\"looks up, then gets to his feet.\",punches both men being drug by a massive lump.,hobbles along letter someone.,swings it over him and tumbling toward gun supports.\n4914,lsmdc1034_Super_8-7981,19087,Someone sees the locket he is holding. He quickly,Someone sees the locket he is holding.,He quickly,gold,stumbles to the bottom.,stuffs it in his pocket.,struggles to hold it down.,pulls the locket from the box.\n4915,lsmdc1034_Super_8-7981,19081,\"The yellow Coupe, still largely unscathed, sits in the middle of the devastation. Someone\",\"The yellow Coupe, still largely unscathed, sits in the middle of the devastation.\",Someone,gold,comes and looks up at the prison thug.,\"check underneath, also standing on window.\",\"makes his way past it, looking for the others.\",\"power causes her bullwhip, too!\"\n4916,lsmdc1034_Super_8-7981,19070,More trucks and carriages fly off the line and collide with one another. A tanker,More trucks and carriages fly off the line and collide with one another.,A tanker,gold,rumbles itself and drags someone to the vault.,is thrown through the air and explodes as it hits the ground.,strikes the brakes with a soldier.,explode shoots into the road.\n4917,lsmdc1034_Super_8-7981,19078,He watches as an explosion throws a chunk of the carriage high into the air. It,He watches as an explosion throws a chunk of the carriage high into the air.,It,gold,crashes into the earth a little distance away.,lands at the far end.,misses someone's body and radios fleet.,peers its way down the road as someone sees the approaching in the middle of a thug with bright light.\n4918,lsmdc1034_Super_8-7981,19075,\"He looks up, then gets to his feet. He\",\"He looks up, then gets to his feet.\",He,gold,stops the inch and wets his shoe.,\"holds her behind him, peering up behind him.\",looks at a carriage lying on its side.,\"reaches the gate, study the ground on one side, and then flips out beneath it, exposing its shaped resigned arch.\"\n4919,lsmdc1034_Super_8-7981,19072,\"Someone runs past the flaming debris, a piece of which is flung into the air, then crashes down just in. He\",\"Someone runs past the flaming debris, a piece of which is flung into the air, then crashes down just in.\",He,gold,sees a warning sign on it.,blows a small overhand all over the stone.,stands up in his arms.,throws a cold a shot.\n4920,lsmdc1034_Super_8-7981,19079,\"Noises emanate from the stricken carriage almost as if some angry beast were charging around inside it. On the remains of the platform, the Cinay camera\",Noises emanate from the stricken carriage almost as if some angry beast were charging around inside it.,\"On the remains of the platform, the Cinay camera\",gold,cling into the rotting flesh.,reveals only half of their bodies momentarily placed on the lifting table of the translucent stone as someone remembers his voice.,drops into its post.,runs out of film.\n4921,lsmdc1034_Super_8-7981,19071,A tanker is thrown through the air and explodes as it hits the ground. Someone,A tanker is thrown through the air and explodes as it hits the ground.,Someone,gold,closes the trunk and smashes his bangs against the pavement.,perches against a wall across the wildly wooded property.,\"runs past the flaming debris, a piece of which is flung into the air, then crashes down just in.\",\"spills on, and roars back down.\"\n4922,lsmdc1034_Super_8-7981,19086,He retrieves his makeup box. Someone,He retrieves his makeup box.,Someone,gold,puts the bar on the table and moves down to the table.,puts his hand parallel to the railing and pulls him forward.,sees the locket he is holding.,taps his table and left back over the seat.\n4923,lsmdc1034_Super_8-7981,19073,\"He sees a warning sign on it. As he turns to run, a massive explosion\",He sees a warning sign on it.,\"As he turns to run, a massive explosion\",gold,\"erupts from the debris, throwing him to the ground.\",pulls his unconscious top out of the window.,\"crashes down him, sending the planes flying far overhead.\",\"illuminates the dark sky, in a churning wake from the surrounding trees.\"\n4924,lsmdc1034_Super_8-7981,19069,The kids flee frantically through the debris as explosions mushroom around them. More trucks and carriages,The kids flee frantically through the debris as explosions mushroom around them.,More trucks and carriages,gold,explode around them and crawl into their sphere.,\"shatter out into someone, distraught.\",fly off the line and collide with one another.,flash up from the outside of a building.\n4925,anetv_1tEJRzqqalM,2308,We see a pink opening screen. We,We see a pink opening screen.,We,gold,is talking in a kitchen.,see a lady sitting on a blue horse.,see a lady brushing two miniature horses.,see the ending title screen.\n4926,anetv_1tEJRzqqalM,2309,We see a lady brushing two miniature horses. The lady,We see a lady brushing two miniature horses.,The lady,gold,brushes her hair into an ok sign.,pushes the horse through its mane.,cleans the brown horses hooves.,uses the knife and turn the horse.\n4927,anetv_1tEJRzqqalM,2311,The lady cleans the hooves on the white and tan horse. The lady,The lady cleans the hooves on the white and tan horse.,The lady,gold,brushes the mane on both horses.,puts an electric clipper on one face and shaves them.,\"is running extremely fast, brushing on the horse while talking from a horse.\",moves out into the lot.\n4928,anetv_1tEJRzqqalM,2314,We see the ending title screen. We,We see the ending title screen.,We,gold,see a lady kissing hands and then sitting on a bench.,see the shirtless man playing and demonstrating how to spin by playing a batman cake.,see black and white still images of the horses.,see the lady slide children riding bungee jumps.\n4929,anetv_1tEJRzqqalM,2312,The lady brushes the mane on both horses. The lady,The lady brushes the mane on both horses.,The lady,gold,puts her supplies down.,uses frisbees to catch the frisbees.,stops and brushes the horses mane.,brushes the horse and mane.\n4930,anetv_1tEJRzqqalM,2315,We see black and white still images of the horses. We,We see black and white still images of the horses.,We,gold,see the lady brush the brown horse again.,see a lady in a field and the lady walks away with their ring on top.,see boys in a body around during a game of polo being played.,a person is seen working on the back.\n4931,anetv_1tEJRzqqalM,2310,The lady cleans the brown horses hooves. The lady,The lady cleans the brown horses hooves.,The lady,gold,focuses on the horse for a moment until the horse rises from the horse.,cleans the hooves on the white and tan horse.,finishes putting the dog and the lady is in a stable ready to cut the horse.,stops brushing the horse and cuts the horse's mane.\n4932,anetv_1tEJRzqqalM,2313,The lady puts her supplies down. We,The lady puts her supplies down.,We,gold,see the lady gargles the water getting his attention.,see a bird in a park.,see a lady in turn talking.,see the ending title screen.\n4933,anetv_ol4ScGsyhbI,3071,An image is shown of a man posing with trophies and flexing his biceps. The images,An image is shown of a man posing with trophies and flexing his biceps.,The images,gold,\"cut to videos, as he wins multiple arm wrestling matches and trophies.\",fold up of photos of a man marked with small drum sticks on a table.,continue to show ending in images.,speak to the camera while continuing to take pictures of his men and properly straighten the ends.\n4934,anetv_ol4ScGsyhbI,3072,\"The images cut to videos, as he wins multiple arm wrestling matches and trophies. In the final scenes, a vast audience talks as they\",\"The images cut to videos, as he wins multiple arm wrestling matches and trophies.\",\"In the final scenes, a vast audience talks as they\",gold,perform cross in the mob with spectators.,engage in an event of a professional fencing event.,perform zumba on dance moves.,watch him win yet again.\n4935,lsmdc3019_COLOMBIANA-9005,1039,His friend's eyes light up. He,His friend's eyes light up.,He,gold,is going over someone.,grins and flips through binoculars in his face.,throws the gun out of view.,shows the photo on his cell.\n4936,lsmdc3019_COLOMBIANA-9005,1041,\"His friend grabs his left behind phone off the table and makes a call with it. In a police station, someone\",His friend grabs his left behind phone off the table and makes a call with it.,\"In a police station, someone\",gold,enters a motel chefs room.,fires his shotgun at a collapsible.,reads a magazine to someone who brings someone a book.,pulls it up on her computer.\n4937,anetv_ZBZUrC4M5E8,14328,Another man approaches the cirle and does the samething as someone comes to the field and measure how far the ball went. The contestants then,Another man approaches the cirle and does the samething as someone comes to the field and measure how far the ball went.,The contestants then,gold,begin hurling and kicking each other forward.,begin to talk to the girl from the outside point on the field.,begin to fight again and play their sticks.,come back and begin talking to each other before their scores are shown.\n4938,anetv_ZBZUrC4M5E8,14326,A buff man steps into a circle and puts the shot put on this shoulder. The man then,A buff man steps into a circle and puts the shot put on this shoulder.,The man then,gold,steadily dips the ball and puts contact lens into his hand.,reaches the other side and attempts to solve the puzzle and moves it in all the various moves into his palm and lets it fall,gets in off the car.,spins around and throws the ball into the field.\n4939,anetv_66-sCRx4QRI,10253,\"A man gets in his truck, puts his surfboard in the back of his truck and drives. The man\",\"A man gets in his truck, puts his surfboard in the back of his truck and drives.\",The man,gold,\"messes, removing the rail and puts a dirt bike in a line.\",then speeds from a different bridge in the water and near the road on a line of cones.,in the shorts gets up and runs.,\"arrives at the beach, changes into a wets suit and begins to surf on a surfboard in the ocean, riding waves.\"\n4940,anetv_66-sCRx4QRI,10254,\"The man arrives at the beach, changes into a wets suit and begins to surf on a surfboard in the ocean, riding waves. The man then\",\"The man arrives at the beach, changes into a wets suit and begins to surf on a surfboard in the ocean, riding waves.\",The man then,gold,\"jumps into the air, flips and tricks while balancing.\",\"dismounts and prepares to surf the bottom of the board, who spins and flips and dismounts.\",\"leaves the beach, in his wetsuit, with his surfboard under his arm.\",runs to surf the waves and turning off the camera.\n4941,anetv_66-sCRx4QRI,10252,\"A man drives to the ocean and surfs on a surfboard, riding waves, before leaving the beach with his surfboard. A man\",\"A man drives to the ocean and surfs on a surfboard, riding waves, before leaving the beach with his surfboard.\",A man,gold,\"gets in his truck, puts his surfboard in the back of his truck and drives.\",films a red and red shirt and orange shirt riding a surf board in the ocean.,surfs on the skateboard with a small wave.,waves to the camera and waves.\n4942,anetv_E3UCEbGZmz0,1948,The man dips the brush in paint and continues moving back and fourth on the wall. He,The man dips the brush in paint and continues moving back and fourth on the wall.,He,gold,continues to play while others watch on it.,continues cutting the weeds to assist the final distance.,paints down the wall one more time.,laughs and dips his stick and cleans polish with different products.\n4943,anetv_E3UCEbGZmz0,12566,The man moves the paint brush all along the wall while moving back and fourth. He,The man moves the paint brush all along the wall while moving back and fourth.,He,gold,continues cutting the carpet up and down on the tall table in front of him.,continues to brush his finger by and fourth speaking to the camera and continues cutting the grass.,continues to paint and shows off a boat in the end.,continues to swim around the room while the camera captures his movements.\n4944,anetv_E3UCEbGZmz0,12565,A person's leg is seen close up followed by a person painting a wall. The man,A person's leg is seen close up followed by a person painting a wall.,The man,gold,moves the paint brush all along the wall while moving back and fourth.,then starts scrubbing plaster on a table while the woman continue talking.,continues shaving backwards and ends by showing off his razor and shaving.,continues shaving someone around in circles.\n4945,anetv_E3UCEbGZmz0,1947,A man is seen painting a wall back and fourth. The man,A man is seen painting a wall back and fourth.,The man,gold,continue to play the instrument and laughing to the camera.,dips the brush in paint and continues moving back and fourth on the wall.,begins moving himself up and down several more.,continues painting on the painting several more times before looking back to the camera.\n4946,lsmdc1006_Slumdog_Millionaire-73795,13207,Young people sit on the roof of the moving train. Someone,Young people sit on the roof of the moving train.,Someone,gold,\"stares at a pensive someone, then wraps an arm around him.\",.,take their vows behind the fence.,shows the brush clearance using the trimmer.\n4947,lsmdc3049_MORNING_GLORY-23737,2645,He steals food from a guy's takeaway container. Someone,He steals food from a guy's takeaway container.,Someone,gold,hurries back onto the set with the food.,finishes in the drink and looks skyward.,looks down at it on the cold blue of an suv.,squeezes a quarter out.\n4948,lsmdc0012_Get_Shorty-53262,19575,They watch someone and the girl a moment. Someone,They watch someone and the girl a moment.,Someone,gold,creeps into the sitting room and shuts her laptop.,looks at someone with a little dance step.,\"pulls out, starts driving again.\",comes down the stairs.\n4949,lsmdc0012_Get_Shorty-53262,19573,Someone points across the street to the Cafe Med where we see a red ferrari convertible parked out the front. We,Someone points across the street to the Cafe Med where we see a red ferrari convertible parked out the front.,We,gold,\"wait customers, all chested the boy is empty.\",is a deserted parking florist.,see someone and a woman with jet - black hair sitting at a table.,see someone's face feels in the breeze.\n4950,lsmdc0012_Get_Shorty-53262,19574,We see someone and a woman with jet - black hair sitting at a table. They,We see someone and a woman with jet - black hair sitting at a table.,They,gold,\"a scar from her eye and jaw, she steps up to someone.\",watch someone and the girl a moment.,picks up the two - car shovel.,pulls a fiddle with a document to reveal the shape in the background.\n4951,anetv_12v5k4Z8lAE,13858,She puts the tissue paper inside of a gift bag. She,She puts the tissue paper inside of a gift bag.,She,gold,\"wipes the candy softly on her fingers, wrapping the paper in her hand.\",brings rice paper to a sales box.,adds more tissue paper to the bag.,gains repair over the sketchpad putting papers and glue to fold the paper.\n4952,anetv_12v5k4Z8lAE,13857,She rolls up a towel and puts it in tissue paper. She,She rolls up a towel and puts it in tissue paper.,She,gold,shifts her uneasy gaze.,curls underneath his blankets.,puts the tissue paper inside of a gift bag.,blow dries her face.\n4953,anetv_12v5k4Z8lAE,16211,She puts it into a gift bag. She,She puts it into a gift bag.,She,gold,\"presses it to someone's lips, then is facing him with her mouth wide open.\",puts them in the drawer.,sits with others in the present.,puts another piece of tissue paper into the bag.\n4954,anetv_12v5k4Z8lAE,16210,She wraps it in red tissue paper. She,She wraps it in red tissue paper.,She,gold,picks up a red paint box and wraps it against his paper.,puts it into a gift bag.,lifts it to the cake.,shows clips of people styling the full picture of a photograph.\n4955,anetv_12v5k4Z8lAE,16209,A woman rolls up a towel. She,A woman rolls up a towel.,She,gold,wraps it in red tissue paper.,rubs her face with two rags.,rubs it with a towel.,removes the cup and cleans its contents.\n4956,anetv_W0M9tXQV3Xg,14157,A man is talking in next to several exercise bikes. He,A man is talking in next to several exercise bikes.,He,gold,take off the bike into a tight car that is moving far in front of them.,takes a few breaths and pretends to do tricks down the platform smiling.,\"is attempting to cross a skate park, doing several stunts but slamming on the front.\",starts working out on one of the bikes.\n4957,anetv_W0M9tXQV3Xg,14158,He starts working out on one of the bikes. People,He starts working out on one of the bikes.,People,gold,walk by while people working on this side.,drive onto his section.,step up to the wheel of a bike.,are working out in the dark.\n4958,anetv_NV2scxevYKk,10858,\"Then, the men pivot the canoe away from the bow paddlers while paddling fast the oars. After, the men\",\"Then, the men pivot the canoe away from the bow paddlers while paddling fast the oars.\",\"After, the men\",gold,slides the canoe forward using the oars to advance.,engage both long forest and hold on white rope in an attempt day with a teen diver from new york.,kayak into the woods on the field which passes the paddle and lastly in a approval soaked waters with the sharp waters.,take two paddles to move across sail on the raft going through the rain waters and continue turning the canoe on the side.\n4959,anetv_qGf6earGAOc,15986,A man is wake boarding in water full of berries. A van,A man is wake boarding in water full of berries.,A van,gold,is cleaning a car with a scraper.,rides past the ocean and celebrates by the chemical.,is in snow followed by people riding bikes around the boat.,is driving on a road by the water.\n4960,anetv_gg_F8EtNMW0,3252,Two men are inside an indoor gym. They,Two men are inside an indoor gym.,They,gold,engage hurling a basketball.,are engaged in a martial art called kickboxing.,are playing a game of foosball.,surrounds a roofed room where he stands getting a tennis ball.\n4961,anetv_gg_F8EtNMW0,3253,They are engaged in a martial art called kickboxing. They,They are engaged in a martial art called kickboxing.,They,gold,points in unison as they go.,flips and twist their batons.,\"gather inside the studio, and stand on a street doing flips.\",\"kick and punch at each other, trying to hit each other.\"\n4962,anetv_ym_OhvcJ--w,17829,\"A wood cabin and cars going over the snow covered mountains appear, before a crowd of skiers are shown gathered on the mountainside. The skiers\",\"A wood cabin and cars going over the snow covered mountains appear, before a crowd of skiers are shown gathered on the mountainside.\",The skiers,gold,get to the house and show shots of the riders racing to the bottom of the hill.,drop their hands into the air and drops it at the end of the harbor.,\"continue a fast lift, finally moving her movements.\",\"begin skiing down the mountains, multiple people in a row before entering an ice cavern.\"\n4963,anetv_ym_OhvcJ--w,4335,A camera pans around a large snowy mountain with people walking around. A man,A camera pans around a large snowy mountain with people walking around.,A man,gold,lays down a pile of snow and puts it down.,is shown walking in a circle and zooms back on his back while the camera captures his movements.,speaks to the camera as well as more shots of him riding down a slide.,speaks to the camera and shows people skiing and climbing inside a ice cave.\n4964,anetv_ym_OhvcJ--w,4336,A man speaks to the camera and shows people skiing and climbing inside a ice cave. At the top people,A man speaks to the camera and shows people skiing and climbing inside a ice cave.,At the top people,gold,are seen relaxing with one another.,continues riding down a hill as well as walking up to the hills with their bow and waving to one another.,walk in and out of the garage and beginning a break.,hang on both hands and climb into bed.\n4965,anetv_ym_OhvcJ--w,17830,\"The skiers begin skiing down the mountains, multiple people in a row before entering an ice cavern. The people\",\"The skiers begin skiing down the mountains, multiple people in a row before entering an ice cavern.\",The people,gold,follow quickly further slowly down a river on their own bicycle.,get into the waters as a small step is passed.,rest in lawn chairs outside the cabin after they are done.,take long paddles riding through the rapids while looking like they are going to get in town.\n4966,lsmdc0043_Thelma_and_Luise-68480,6818,The Trucker reaches over and opens a glove compartment crammed full of condoms. He,The Trucker reaches over and opens a glove compartment crammed full of condoms.,He,gold,pulls out a few crumpled bills and unzips his hat.,grabs a few and shoves them in his pocket.,\"reaches down, opens a drawer and picks it up.\",pulls out his overalls uniform and headbutts pensively.\n4967,lsmdc0043_Thelma_and_Luise-68480,6821,He walks up to the car. People,He walks up to the car.,People,gold,get out of the car.,climb onto the roof as someone covers a driver with a crowbar.,\"someone, someone, open the fan.\",comes to a stop by the door to the plane and puts the duffel bag over the back seat.\n4968,lsmdc0043_Thelma_and_Luise-68480,6820,He turns off his engine and gets out of the truck. He,He turns off his engine and gets out of the truck.,He,gold,takes the driver's seat.,walks up to the car.,sees a broken container of cement and watches.,continues to race along a rodeo road.\n4969,lsmdc0043_Thelma_and_Luise-68480,6817,They turn off onto a dirt road and pull to a stop. The Trucker,They turn off onto a dirt road and pull to a stop.,The Trucker,gold,reaches over and opens a glove compartment crammed full of condoms.,stands and then tackles someone.,dash into the truck.,\"is then just followed by several bikers, still cars out of the way and with that one the side.\"\n4970,lsmdc0043_Thelma_and_Luise-68480,6819,He grabs a few and shoves them in his pocket. He,He grabs a few and shoves them in his pocket.,He,gold,beats someone's fist.,turns off his engine and gets out of the truck.,brings someone up to the baseboards and hurries back through the label.,pulls the curtains shut.\n4971,lsmdc1018_Body_Of_Lies-80546,2997,\"The camera keeps filming as someone is lifted onto the table, face down. Someone\",\"The camera keeps filming as someone is lifted onto the table, face down.\",Someone,gold,\"stares, eyes still staring in beat, and behind her full of energy.\",greets the dancers shake someone's hand and across the stage.,is standing taking the busty black from her.,is flipped onto his back.\n4972,lsmdc1018_Body_Of_Lies-80546,3006,A man gets in next to him. Someone,A man gets in next to him.,Someone,gold,\"sits behind the wheel, smoking.\",gets back with someone and waves him down.,just stares at it.,is being washed with utensil.\n4973,lsmdc1018_Body_Of_Lies-80546,3003,Someone turns the camera off. His head,Someone turns the camera off.,His head,gold,lolls back on someone's head.,goes to the door.,gets out of the water.,flops back as he is lifted off the table.\n4974,lsmdc1018_Body_Of_Lies-80546,3008,The wounds on his bruised face have tapes on them. Someone,The wounds on his bruised face have tapes on them.,Someone,gold,\"stands by, quick to straight an answer.\",enters one of his sweaty students.,walks in and stands at the end of the bed.,\"sidles up to him, among the lowering of douglas.\"\n4975,lsmdc1018_Body_Of_Lies-80546,3005,Someone gets in the back of an suv. A man,Someone gets in the back of an suv.,A man,gold,gets in next to him.,\"sits back on the wall, wearing a baggy black suit and tie.\",tracks in front of a bus with an agent with reporters from the messages.,escapes as someone enters and sits in his car.\n4976,lsmdc1018_Body_Of_Lies-80546,2988,He spits in someone's face. Someone,He spits in someone's face.,Someone,gold,wipes it with his hand.,makes the plane deck across the ship's deck.,turns to someone with a camcorder.,does her raise.\n4977,lsmdc1018_Body_Of_Lies-80546,3002,\"They are followed by someone, who walks in and stares at someone. Someone\",\"They are followed by someone, who walks in and stares at someone.\",Someone,gold,come onto the screen in front of the bank.,turns the camera off.,looks through to someone.,watches someone come over.\n4978,lsmdc1018_Body_Of_Lies-80546,2999,\"Someone remembers the man being beaten with a cricket bat. As the executioner lunges at someone with a large knife, the room\",Someone remembers the man being beaten with a cricket bat.,\"As the executioner lunges at someone with a large knife, the room\",gold,is lit up by gunfire.,moves down on his front legs.,is sporting in a mass of green matches.,falls as the bullet springs to his hands.\n4979,lsmdc1018_Body_Of_Lies-80546,2992,He spits in someone 'face. He,He spits in someone 'face.,He,gold,\"smiles, points, and waves.\",slams someone 'face down on the table.,checks his window and sprays pressure.,looks down at his typewriter and draws back a pen.\n4980,lsmdc1018_Body_Of_Lies-80546,2995,The men pull him to the floor. He,The men pull him to the floor.,He,gold,stops near his sleeping brother and serves them in his bag.,kicks and struggles as they lift him.,sweeps a injection into his head in excitement.,\"loads her rifle, pulls out a padlock on the floor and puts an automatic into it's torn head.\"\n4981,lsmdc1018_Body_Of_Lies-80546,3000,\"As the executioner lunges at someone with a large knife, the room is lit up by gunfire. The executioner and the rest of the men\",\"As the executioner lunges at someone with a large knife, the room is lit up by gunfire.\",The executioner and the rest of the men,gold,are shot to pieces as soldiers swarm in.,are barking together as a rhythmic howls up in the background.,swing through a 1000 corral toward him.,\"are at gray smoke as someone, his rifle in hand, passes over on the guard.\"\n4982,lsmdc1018_Body_Of_Lies-80546,2996,He kicks and struggles as they lift him. The camera,He kicks and struggles as they lift him.,The camera,gold,moves toward the window of a water tower as he dangles a flag before her.,\"keeps filming as someone is lifted onto the table, face down.\",turns and everyone falls off.,man fails at the above.\n4983,lsmdc1018_Body_Of_Lies-80546,2991,\"As someone walks away down the gloomy corridors, he wipes his hands on a cloth. He\",\"As someone walks away down the gloomy corridors, he wipes his hands on a cloth.\",He,gold,places the coin in a piece of toast.,\"pushes past the woman, then follows him through the stairs and along a corridor.\",aims his basket at one of the three russian soldiers.,spits in someone 'face.\n4984,lsmdc1018_Body_Of_Lies-80546,3007,\"Someone sits behind the wheel, smoking. Someone\",\"Someone sits behind the wheel, smoking.\",Someone,gold,waves his hand and narrows his eyes.,takes a seat on the back room.,takes a seat next to someone.,stands with his hands in his pockets.\n4985,lsmdc1018_Body_Of_Lies-80546,2998,\"The executioner stands, watching. Someone\",\"The executioner stands, watching.\",Someone,gold,pours wax into the factory.,flips down the sidewalk.,remembers the man being beaten with a cricket bat.,sees the sign up as it performing.\n4986,lsmdc1018_Body_Of_Lies-80546,2990,\"The men gather around someone, who hangs his head. As someone walks away down the gloomy corridors, he\",\"The men gather around someone, who hangs his head.\",\"As someone walks away down the gloomy corridors, he\",gold,wipes his hands on a cloth.,picks up his notebook.,sticks his feet by a huge ceiling of the dead man's grand hall.,sees someone's sparse hair with a protective modified over his shoulder.\n4987,anetv_T4g31MwZ2ds,7815,Broken glass sits on the ground. A young man,Broken glass sits on the ground.,A young man,gold,hits liquid out of his head.,stretches in front of it.,ignores flying leaves out of the way.,opens his left paw and calls to someone.\n4988,anetv_T4g31MwZ2ds,7816,A young man stretches in front of it. He then,A young man stretches in front of it.,He then,gold,puts a blue shaker of hand to the displays.,lifts his hands up high up to expose the horse to the ground.,does break dancing moves.,\"grabs the other first boy, throws him down and throws the dart with him.\"\n4989,anetv_T4g31MwZ2ds,7817,He then does break dancing moves. He,He then does break dancing moves.,He,gold,do several flips and tricks on the stilts.,moves his hands behind the wall and repeatedly talking to the camera as he continues to talk.,moves between his legs and legs elegantly as he does.,puts his legs behind his head.\n4990,anetv_bVAUJAAg3TM,10759,She takes a flying leap through the air. She then,She takes a flying leap through the air.,She then,gold,falls backward out onto the train in front of them.,lands in a pit of sand.,catches a wave and throws it at a pile of athletic.,jumps onto the rope's back and lands on her feet.\n4991,anetv_bVAUJAAg3TM,15686,She passes judges as she runs. She,She passes judges as she runs.,She,gold,\"leaps, then lands in the sand.\",walks slowly along the sidewalk.,gets across the beam.,gets up and leaves the mat.\n4992,anetv_bVAUJAAg3TM,15685,A woman is seen running in slow motion down a track. She,A woman is seen running in slow motion down a track.,She,gold,rides on the beach several times.,passes judges as she runs.,slides on the horse several times.,captures more shots of her throwing and pulling in an air car.\n4993,anetv_eHxRr7Zhsek,15159,\"The video opens with the host using purple nail tape to create a pattern, slowly applying and making sure it is straight. Next a matte coat\",\"The video opens with the host using purple nail tape to create a pattern, slowly applying and making sure it is straight.\",Next a matte coat,gold,is applied over the nail and tape.,comes into view of the video explaining the website.,appears in a room and a couple is standing next to a dyson paint and parts.,\"is pictured and assembled, and the logo underneath is visible.\"\n4994,anetv_eHxRr7Zhsek,15162,Gradually the logo is made bolder with more application. Finally a matte top coat,Gradually the logo is made bolder with more application.,Finally a matte top coat,gold,\"appears, the video begins with the larger paint and a moustache that has a nice table in her driveway.\",is applied to finish it off.,of another palette is heard.,is shown and then a man is on a couch cutting the drums with a new robe.\n4995,anetv_eHxRr7Zhsek,15161,\"The tape is gently peeled off the nail, and a top coat is applied to the intersection of lines. Next, a micro bead\",\"The tape is gently peeled off the nail, and a top coat is applied to the intersection of lines.\",\"Next, a micro bead\",gold,is given to the person blue nail polish.,is drawn next to the carpet.,is placed where the lines meet.,rouses someone and his breathing.\n4996,anetv_eHxRr7Zhsek,15160,\"Next a matte coat is applied over the nail and tape. The tape is gently peeled off the nail, and a top coat\",Next a matte coat is applied over the nail and tape.,\"The tape is gently peeled off the nail, and a top coat\",gold,has another nail on it.,is removed from the chair.,is in assembled muscular.,is applied to the intersection of lines.\n4997,anetv_XNTy5ZTMqVU,16407,A woman is talking inside an office to the camera while displaying sign language. Two hands,A woman is talking inside an office to the camera while displaying sign language.,Two hands,gold,are shown on the floor.,\"appear, demonstrating several signs indicating the rock, paper, scissors game.\",turn to face a woman on his back.,are shown doing something set up close up while moving their bodies all around.\n4998,anetv_XNTy5ZTMqVU,16408,\"Two hands appear, demonstrating several signs indicating the rock, paper, scissors game. The woman continues talking about the game, then it\",\"Two hands appear, demonstrating several signs indicating the rock, paper, scissors game.\",\"The woman continues talking about the game, then it\",gold,comes to eric the game.,shows several clips of various people using the game to win or make decisions.,continues to read one and the video begins with a selfie stick of youth speak to the camera on tennis.,is more of the same running who begins to build a sand castle during night time from the middle of the story.\n4999,anetv_gVKgXyKh4BQ,10297,A man is seen running down a large track while a group of people sit and stand around him watching. The man then,A man is seen running down a large track while a group of people sit and stand around him watching.,The man then,gold,runs down two flights of stairs and begins walking up the stairs while holding still.,begins to throw balls while stopping and stopping to speak to the camera.,jumps off the board and continues moving up and down the track.,jumps into a large pit while the camera continues to follow him.\n5000,anetv_gVKgXyKh4BQ,10662,He takes a giant leap into the air. He,He takes a giant leap into the air.,He,gold,buries his face in his hands.,lands hard in the sand.,attacks different areas before throwing it down and landing on a mat.,is standing and doing a belly routine.\n5001,anetv_gVKgXyKh4BQ,10661,A male athlete is shown running down a track. He,A male athlete is shown running down a track.,He,gold,continues running down a track with a javelin strapped into a pit.,throws a javelin onto the mat.,turns quickly while red text appears on the screen.,takes a giant leap into the air.\n5002,lsmdc1059_The_devil_wears_prada-98905,14636,\"Someone hands back the seating chart. Back in her own suite, someone\",Someone hands back the seating chart.,\"Back in her own suite, someone\",gold,has changed into a slim - fitting low cut black suit.,sets her cellphone on top of someone.,dresses in the bed.,looks on as he finds someone friends undamaged.\n5003,lsmdc1059_The_devil_wears_prada-98905,14638,\"She studies her reflection in a big mirror and touches up the mascara on her long, black lashes. Someone\",\"She studies her reflection in a big mirror and touches up the mascara on her long, black lashes.\",Someone,gold,\"trails her fingertips along the smooth pavement, studying her own reflection.\",\"looks astounded, her jaw clenched.\",\"hair is on her right side of her face, holding a feather in the still water.\",comes in and studies the outfit she is wearing.\n5004,lsmdc1059_The_devil_wears_prada-98905,14637,\"Back in her own suite, someone has changed into a slim - fitting low cut black suit. She\",\"Back in her own suite, someone has changed into a slim - fitting low cut black suit.\",She,gold,\"studies her reflection in a big mirror and touches up the mascara on her long, black lashes.\",lies on top drums wearing a stylish un - pink canvases.,dresses as she eyes the painting picture.,finds her then continues to someone apartment.\n5005,anetv_SfQku6CicrU,1771,He reaches into the pond. He,He reaches into the pond.,He,gold,puts water onto his face.,\"stands us one of the trees, obscured by a short silence.\",tosses someone's viewer in someone's hand.,zooms into the tiny hole.\n5006,anetv_SfQku6CicrU,1770,A man bends over into a pond. He,A man bends over into a pond.,He,gold,reaches into the pond.,trims the plants he positions before going down a concrete path.,is standing on a balcony and starts driving the roads.,turns the camera around and looks at a form.\n5007,anetv_SfQku6CicrU,1772,He puts water onto his face. He,He puts water onto his face.,He,gold,drops out of his seat water.,cheers gleefully after he does this.,ends more goals with more text.,is shaving a large ornamental leg.\n5008,anetv_di8Vr1fzUh8,7637,The older man throw his darts on the dartboard and three darts landed on one place. The man positioned himself then throw the darts in the board and the darts,The older man throw his darts on the dartboard and three darts landed on one place.,The man positioned himself then throw the darts in the board and the darts,gold,near a white racket and a guy go to help.,are away from each other.,are thrown on the ledge and continue to remove their darts.,cut the man's foot.\n5009,anetv_di8Vr1fzUh8,7638,The man positioned himself then throw the darts in the board and the darts are away from each other. The man,The man positioned himself then throw the darts in the board and the darts are away from each other.,The man,gold,climbs a ladder and begins to kick the ball back then lot.,bounces as the bullseye crashes into the pool.,continue to hit the board with darts.,pour the liquid over the man and begin kissing another before climbing out.\n5010,anetv_di8Vr1fzUh8,7636,The man in suit is talking to the camera as people are behind him. The older man throw his darts on the dartboard and three darts,The man in suit is talking to the camera as people are behind him.,The older man throw his darts on the dartboard and three darts,gold,being seen is revealed.,disappear as his balloons come closer.,put him on the dart board.,landed on one place.\n5011,anetv_UL_3QfD3ERM,3102,Trainers are playing frisbee with their dogs. The dogs,Trainers are playing frisbee with their dogs.,The dogs,gold,are being given the beach frisbees in their hands.,walk dusty to the bend fields.,do several stunts and tricks while catching the frisbees.,\"attack the bulls, slamming it at each other.\"\n5012,anetv_UL_3QfD3ERM,3459,A large crowd is gathered around a field. People,A large crowd is gathered around a field.,People,gold,are then shown performing martial arts moves.,enter the field with frisbees and their dogs.,are in a room and people are wrapping christmas furniture.,throw a kite in a field to control them.\n5013,anetv_UL_3QfD3ERM,3460,People enter the field with frisbees and their dogs. They,People enter the field with frisbees and their dogs.,They,gold,lie side - by - side down.,get their dogs to do numerous tricks using the frisbees.,continue playing and spinning and speaking to one another.,take turns running in circles on the field.\n5014,anetv_UL_3QfD3ERM,3101,Numerous people are watching others on a field. Trainers,Numerous people are watching others on a field.,Trainers,gold,are playing frisbee with their dogs.,go back and forth with one another as people walk around and watching.,are tossing back and forth as they throw the ball.,go up on the ramp and make fun at the event.\n5015,anetv_w-KZEq6JhnQ,12857,We see two people being interviewed and the knitting lady. The knitting lady,We see two people being interviewed and the knitting lady.,The knitting lady,gold,takes photographs including bows knitting.,talks on the other language.,\"is holding a hat, a scarf and being interviewed.\",sets her painting down on a bench and puts a dress on.\n5016,anetv_w-KZEq6JhnQ,12856,We see a lady knitting and being interviewed. We,We see a lady knitting and being interviewed.,We,gold,see the man pushing his lawn mower.,see people dribbling a game.,see the girl holding a microphone and sings before performance on stage.,see two people being interviewed and the knitting lady.\n5017,anetv_w-KZEq6JhnQ,12277,Another woman is interviewed in an apartment. Several other girls,Another woman is interviewed in an apartment.,Several other girls,gold,pick up balls and put them on top.,are shown playing executes.,are interviewed as well.,in skateboards and pick canoes strapped to her shoulders.\n5018,anetv_w-KZEq6JhnQ,12275,A woman stands outside a building. She,A woman stands outside a building.,She,gold,is shown parasailing in the sand.,is talking into a microphone.,walks along an examination table with a single desk that leaves his room.,begins painting a wooden fence.\n5019,anetv_w-KZEq6JhnQ,12855,A lady talk into a microphone on a set of outdoor steps. We,A lady talk into a microphone on a set of outdoor steps.,We,gold,of the men leans close to a fence in the center.,see a lady knitting and being interviewed.,hand gestures and we see a man drinking beer and talking to the orchestra.,see the man in the home from above.\n5020,anetv_uOk4EFDsDP4,15285,He puts the noodles onto a plate. A woman standing next to him,He puts the noodles onto a plate.,A woman standing next to him,gold,puts the noodles in the bowl and goes into the kitchen.,stands in front of the stove.,starts to return the eggs.,takes a bite of the noodles.\n5021,anetv_uOk4EFDsDP4,15284,A boy mixes noodles in a bowl. He,A boy mixes noodles in a bowl.,He,gold,puts the noodles onto a plate.,cuts two pieces of pieces and stirs them up together.,is eating a vanilla ice cream cone.,\"pours ice into a container, and then mixes in together.\"\n5022,anetv_uOk4EFDsDP4,5321,The mother and son cook pasta together. The mother,The mother and son cook pasta together.,The mother,gold,serves the omelettes for someone.,brings the boy a plate.,carves the pan in a circular sink.,breaks an ice cream cone.\n5023,anetv_uOk4EFDsDP4,5320,We see a black opening screen. We,We see a black opening screen.,We,gold,see an intro recording a girl.,see a child in the house with a soccer ball.,see a man spraying water on a ski.,see a young man putting in gear.\n5024,anetv_uOk4EFDsDP4,5322,The mother brings the boy a plate. We,The mother brings the boy a plate.,We,gold,see the refrigerator list.,\"from the garden, someone follows the woman into a dining room as someone helps someone into the house.\",makes a noise with it on the dishes.,trigger a plate; a man throws it and someone scowls at someone.\n5025,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9063,He finds himself falling down into a crowded courtroom. He,He finds himself falling down into a crowded courtroom.,He,gold,inspect the inspector's building.,slides the books and pins them to the screen.,\"lands in a chair, sitting next to someone he recognizes.\",disconnects his and waits for someone.\n5026,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9058,\"They nip his fingers with their sharp, little teeth. He\",\"They nip his fingers with their sharp, little teeth.\",He,gold,picks up the sheet.,drops them onto the floor and stomps on them.,looks down at the inscription on the sharp teeth.,\"looks at someone with a proud look, then leans back and makes a second look as we quickly face the mirror.\"\n5027,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9060,\"Someone slowly walks towards it. Reflected in the mirror, he\",Someone slowly walks towards it.,\"Reflected in the mirror, he\",gold,stays at the floor.,\"brushes his nose with a twist of his brace, and jumps around branches.\",gazes down into the shining blue bowl.,smooths some foundation off the shoe and cocks it.\n5028,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9057,\"On his way out, someone gives someone a long look. The tadpole - like licorice snaps,\",\"On his way out, someone gives someone a long look.\",\"The tadpole - like licorice snaps,\",gold,attract someone's attention.,and someone spins round against the machinery.,bathed in light.,reveals her fur - hood with long length hair.\n5029,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9064,\"He lands in a chair, sitting next to someone he recognizes. The man next to him\",\"He lands in a chair, sitting next to someone he recognizes.\",The man next to him,gold,walks nearby and emerges in the singing vivian.,catches the animal ruins.,walks down the graveled hallway.,shakes hand with someone right through someone.\n5030,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9061,\"Reflected in the mirror, he gazes down into the shining blue bowl. Someone\",\"Reflected in the mirror, he gazes down into the shining blue bowl.\",Someone,gold,smiles and paddles off.,sees a glow at the bottom of a deep shaft.,wanders crowded through the doorway to see her bedside.,stirs roast the slime.\n5031,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7164,9059,He drops them onto the floor and stomps on them. A blue light,He drops them onto the floor and stomps on them.,A blue light,gold,shines out from the ceiling.,in view with their grazing men.,is welding intense welding on a bulletin board.,\"glows from a large, stone vase in front of a flicking mirror.\"\n5032,anetv_s_hQSJVIN3c,17029,Man is in a oofed gym stretching his leg and doing exercise in front of a chair. the man,Man is in a oofed gym stretching his leg and doing exercise in front of a chair.,the man,gold,is skating down the road while people are watching him performing arm wrestling.,begins to demonstrate roller blades following play set of exercise processes.,bend the other leg and stretch it.,swings his leg up and starts walking down the two.\n5033,anetv_XxfatT0sWXw,13346,The guy picks up the fallen baton from the gym floor. The guy,The guy picks up the fallen baton from the gym floor.,The guy,gold,flips down a blue challenge and catches another hand.,dances in a circle with a couple people outside doing a choreography in the bar.,bows with one hand extended.,hold the piece and kicks it angrily.\n5034,anetv_XxfatT0sWXw,19216,\"A man dressed in a black glittery uniform is standing in the middle of a basketball gym twirling a baton. As he twirls the baton, he\",A man dressed in a black glittery uniform is standing in the middle of a basketball gym twirling a baton.,\"As he twirls the baton, he\",gold,begins to do flips and twists while throwing the baton high up in the air making it twirl several times before coming down.,does another flip and goes when spun in the air.,continues his routine and he begins to spin around and balances on the alcove.,moves as the man punches his left by then successfully.\n5035,anetv_XxfatT0sWXw,13347,The guy bows with one hand extended. The guy,The guy bows with one hand extended.,The guy,gold,turns to leave after posing.,gives his dad a thumbs.,spins the tool belt.,holds a trophy and adds details.\n5036,anetv_XxfatT0sWXw,13344,A guy is spinning and flipping while twirling a baton in a gym floor. The guy,A guy is spinning and flipping while twirling a baton in a gym floor.,The guy,gold,twirls the baton around his upper body.,bends down and throws the mans legs out of the gym and the pins.,jumps and kicks while jumping off the bars several times.,jumps on the wall flipping from a dance routine.\n5037,anetv_XxfatT0sWXw,19217,\"As he twirls the baton, he begins to do flips and twists while throwing the baton high up in the air making it twirl several times before coming down. After leaps and crawls on the ground, he\",\"As he twirls the baton, he begins to do flips and twists while throwing the baton high up in the air making it twirl several times before coming down.\",\"After leaps and crawls on the ground, he\",gold,spins around and twirls the string of the frisbee at the baton.,\"does a couple of more flips, bows and then leaves as is his performance is over.\",does the same to her.,\"punches it, then drops it to the ground before passes in front of another as he does so.\"\n5038,anetv_XxfatT0sWXw,13345,The guy twirls the baton around his upper body. The guy,The guy twirls the baton around his upper body.,The guy,gold,walks over and bumps to other students.,rounds a bend and put him on the rail.,picks up the fallen baton from the gym floor.,claps his hands on the floor.\n5039,anetv_vBOejU7dBzY,19427,A close up on the product used to spray. She,A close up on the product used to spray.,She,gold,is now combing the mane again.,lifts a dry hair out of her face.,continues to spraying the car and leaving a woman style of hair into a saucepan.,is lipstick and places it on her cheek.\n5040,anetv_vBOejU7dBzY,19430,She then begins to speak standing next to the horse. she,She then begins to speak standing next to the horse.,she,gold,holds up the product and grabs the horses tail.,continues brushing and brushing the horses legs with the hose.,continues brushing her hair mane and brushing it with the camera.,stops next to the horse and starts brushing a horse with a dirt brush she peels away.\n5041,anetv_vBOejU7dBzY,19428,She is now combing the mane again. Now she,She is now combing the mane again.,Now she,gold,jumps off a horse.,eats the tall brushes.,continues wearing a pink top and begins to sit up with the rope.,is spraying the tail then she combs it.\n5042,anetv_vBOejU7dBzY,915,A still image of the spray product is shown. The woman,A still image of the spray product is shown.,The woman,gold,goes to a tube with a title braiding her hair.,continues to clean the horse's mane and tail.,begins welding the tool and shows off a picture of her cutting board.,shows a hairstyle of ice and then turns to a woman holding up bats and a cloth.\n5043,anetv_vBOejU7dBzY,19426,A woman sprays a horses mane with a product. She,A woman sprays a horses mane with a product.,She,gold,applies a nail with the heel throwing knife.,sprays the tail with the product.,continues to apply the rod to her nails.,places her hands all over her face.\n5044,anetv_vBOejU7dBzY,917,A woman talks to the camera while standing next to a horse. The woman,A woman talks to the camera while standing next to a horse.,The woman,gold,peels off the shoe polishing shoe with a cloth and laces.,uses a brush and brushes the dogs fur with no shoes.,holds up the spray product with one hand and part of the horse's tail with the other.,talks to the camera while smoking.\n5045,anetv_vBOejU7dBzY,916,The spray product is shown again. A woman,The spray product is shown again.,A woman,gold,puts the polishes on the dispenser behind them.,starts showing her how to replace the braid.,rubs the lipstick on her face.,talks to the camera while standing next to a horse.\n5046,lsmdc3058_RUBY_SPARKS-28139,19251,\"He sinks down behind the system and peeks out. Stepping off the stairs, he accidentally\",He sinks down behind the system and peeks out.,\"Stepping off the stairs, he accidentally\",gold,smacks the winning pillar.,rips out his surprise.,pushes the car door open.,squishes a dog toy.\n5047,lsmdc3058_RUBY_SPARKS-28139,19255,As she descends he backs to the door. He,As she descends he backs to the door.,He,gold,climbs down the ladder.,strangles her with a brandy.,gives a feeble shake of his head.,steps onto the darkness and slowly closes the door of people.\n5048,lsmdc3058_RUBY_SPARKS-28139,19260,\"Later, someone shares an outdoor table with someone. She\",\"Later, someone shares an outdoor table with someone.\",She,gold,stops a few yards from her.,brings a glass of pills to her lips.,stares meaningfully at him.,rolls a tray with beer and boxes addresses to her.\n5049,lsmdc3058_RUBY_SPARKS-28139,19258,Now someone feeds a meter in the artsy Los Feliz neighborhood. Someone,Now someone feeds a meter in the artsy Los Feliz neighborhood.,Someone,gold,loads a book into someone's car which is parked by a window.,accompanies him down the sidewalk.,deals someone with a pen.,\"at school, someone sorts through a notebook.\"\n5050,lsmdc3058_RUBY_SPARKS-28139,19259,\"Someone accompanies him down the sidewalk. Later, someone\",Someone accompanies him down the sidewalk.,\"Later, someone\",gold,hands someone to someone.,follows his dog to the house.,sits on his couch shotgun.,shares an outdoor table with someone.\n5051,lsmdc3058_RUBY_SPARKS-28139,19261,She stares meaningfully at him. Someone,She stares meaningfully at him.,Someone,gold,steps out of the wings and pumps her fists.,pulls away with a knitted brow.,\"tugs over her hair, then backs away.\",watches her shift giddily then glances away.\n5052,lsmdc3058_RUBY_SPARKS-28139,19254,\"At the top of the foyer stairs, someone steps out in a dress. As she descends he\",\"At the top of the foyer stairs, someone steps out in a dress.\",As she descends he,gold,reaches for her ankle.,puts a towel into his mouth.,moves the phone to someone's ear.,backs to the door.\n5053,lsmdc3058_RUBY_SPARKS-28139,19253,\"He freezes then precedes to the foyer where he picks up his keys and wallet. At the top of the foyer stairs, someone\",He freezes then precedes to the foyer where he picks up his keys and wallet.,\"At the top of the foyer stairs, someone\",gold,sits alone at a table.,lies awake in bed.,brings up his newspaper.,steps out in a dress.\n5054,lsmdc3058_RUBY_SPARKS-28139,19252,\"Stepping off the stairs, he accidentally squishes a dog toy. He\",\"Stepping off the stairs, he accidentally squishes a dog toy.\",He,gold,seems to pull his trigger - - but it does n't become his pistol.,chases after the sons and beggars they both fall back.,chalks his cue ball.,freezes then precedes to the foyer where he picks up his keys and wallet.\n5055,lsmdc3058_RUBY_SPARKS-28139,19256,\"Now, someone slumps miserably as he drives down a street lined with quaint storefronts. He\",\"Now, someone slumps miserably as he drives down a street lined with quaint storefronts.\",He,gold,\"loads a few couches, then, in their father's arms, walks out single file featuring long posted inside a cafe.\",casts his fearful gaze aside.,scowls with the painted ticket agent.,stands on a presentation lush at the back of the church.\n5056,lsmdc3058_RUBY_SPARKS-28139,19250,He stares fearfully toward the kitchen. He,He stares fearfully toward the kitchen.,He,gold,sinks down behind the system and peeks out.,\"breaks backward, rocking back and forth against the worktop.\",gazes lovingly longingly at someone's beak.,enters the chamber.\n5057,lsmdc3058_RUBY_SPARKS-28139,19249,\"Someone creeps down into view, his arms crooked before him cartoonishly. He\",\"Someone creeps down into view, his arms crooked before him cartoonishly.\",He,gold,pushes someone out on his skateboard.,stares fearfully toward the kitchen.,stands in the next room and smiles at the catholic priest.,playfully the suv and speeds away.\n5058,anetv_8ikOQRbeQL8,4473,A woman wearing a hood and glasses is talking. She,A woman wearing a hood and glasses is talking.,She,gold,picks up a shoe and throws it down on the floor next to it.,is cutting the top of the leaves.,holds up a cup of lemon juice.,is holding a baton and twirling it in her hands.\n5059,lsmdc3092_ZOOKEEPER-45410,16269,\"As she leaves the dealership, the band follows. Now someone\",\"As she leaves the dealership, the band follows.\",Now someone,gold,\"picks her up to find him hurrying down a staircase, past the her dress uniform, along her rows.\",sits in his enclosure with his back to the door.,uses a pile of homework.,makes his way into the distant church.\n5060,lsmdc3092_ZOOKEEPER-45410,16272,He smiles and someone gives a nod. The crow,He smiles and someone gives a nod.,The crow,gold,pecks the team on horseback.,lands on the pit wall.,lands as the friends climb out.,\"rise, leaving someone and someone waiting.\"\n5061,anetv_bscUMcCmyYw,4078,A younger girl watches her. A mans arm,A younger girl watches her.,A mans arm,gold,turns into a sling.,looks off around the right.,is shown then puts makeup on her shabby parent.,is in the foreground.\n5062,anetv_bscUMcCmyYw,4079,A mans arm is in the foreground. There,A mans arm is in the foreground.,There,gold,is also a wooden deck.,are many rafters in the river.,in shadow brunette outside room dancing fighting with other people behind a boxing black shirt.,pull down the path on the road and it cover the left side of the roof.\n5063,lsmdc0032_The_Princess_Bride-66463,10119,\"And it is a bit unnerving - - a giant seems to be floating toward them out of the darkness, a Giant in a strange cloak, and with a voice that would crumble walls. Someone\",\"And it is a bit unnerving - - a giant seems to be floating toward them out of the darkness, a Giant in a strange cloak, and with a voice that would crumble walls.\",Someone,gold,steps forward with an indifferent smirk as its muscular cabinet snaps.,is holding someone's weapon and crossing her legs circular.,\", she finds someone in a deep black dress at a rail or bar with someone.\",struggles bravely under their combined weight.\n5064,lsmdc0032_The_Princess_Bride-66463,10118,\"He has an impediment that would stop a clock. The brutes and someone, by the gate, for it\",He has an impediment that would stop a clock.,\"The brutes and someone, by the gate, for it\",gold,\"will be hearing about his friends animal as others, while someone understands.\",is a few yards behind a man's neck.,is now very long as the man jeffreys with all his kit hands on the boat and sits.,\"is indeed they who are making the commotion, frightened, pointing.\"\n5065,anetv_d-cxJQcmBzA,13028,A man is buffing the floor with a blue buffer. Another man,A man is buffing the floor with a blue buffer.,Another man,gold,goes down the ladder and lays down on his stomach.,steps over a wooden bench.,stands next to him watching.,takes the residue off and lays on the floor.\n5066,anetv_d-cxJQcmBzA,13029,Another man stands next to him watching. He,Another man stands next to him watching.,He,gold,lifts the needle to his forehead on the back knife.,enters the bar and sits on the bar.,reaches a table in front of a desk.,goes over the tile with the buffer.\n5067,lsmdc3016_CHASING_MAVERICKS-6323,10771,The board shoots out of the water with someone unseen and someone smiles from the beach. Someone,The board shoots out of the water with someone unseen and someone smiles from the beach.,Someone,gold,watches the donkey float down a hill and down the hill of the pond.,\"looks at her, reacting to catching a person in coffin behind her.\",\"shakes his head, wearing a slight grin on his weathered face.\",moves on against the shawl in the gloom.\n5068,lsmdc3016_CHASING_MAVERICKS-6323,10766,\"From overhead, crashing waves sweep white foam onto the stunning California shore. Standing together, someone and someone\",\"From overhead, crashing waves sweep white foam onto the stunning California shore.\",\"Standing together, someone and someone\",gold,feature themselves.,hold long boards and gaze out at the waves.,\"stand over the roof of the building, continuing to trace the contents together on a glowing locker.\",helicopters crowd a single line.\n5069,lsmdc3016_CHASING_MAVERICKS-6323,10775,Someone pulls up his hood. He,Someone pulls up his hood.,He,gold,\"wears a khaki belt and a black coat, then returns the pic.\",reaches out for him.,\"drunkenly rotates a blue stain, exposing a half - slashed smile.\",grabs his board and heads to the water.\n5070,lsmdc3016_CHASING_MAVERICKS-6323,10767,\"Standing together, someone and someone hold long boards and gaze out at the waves. Someone\",\"Standing together, someone and someone hold long boards and gaze out at the waves.\",Someone,gold,gives someone a determined look and nods.,\"marine strides forward in a fond, elegant smile, then gently grabs him.\",takes off after the others.,dashes along the building as someone sprints along.\n5071,lsmdc3016_CHASING_MAVERICKS-6323,10772,\"Someone shakes his head, wearing a slight grin on his weathered face. Someone tries to regroup with his board but another wave\",\"Someone shakes his head, wearing a slight grin on his weathered face.\",Someone tries to regroup with his board but another wave,gold,shoots through a cascade of surfers at one of them.,catches him off guard and sweeps him back toward the beach.,pushes over his hoverboard who thunder along with someone.,reveals a huge wetsuit.\n5072,lsmdc3016_CHASING_MAVERICKS-6323,10773,\"Standing in chest high water, a small wave knocks him over and someone smiles. Now, the young surfer\",\"Standing in chest high water, a small wave knocks him over and someone smiles.\",\"Now, the young surfer\",gold,sits at the edge of the pond.,lies on the monkey's back.,\"stops short, opens up and shakes hands with the smiling boy.\",\"stumbles onto the sand, drops his board, and collapses.\"\n5073,lsmdc3016_CHASING_MAVERICKS-6323,10779,\"The veteran surfer lies flat on the board and busts through the top portion as it breaks. Sitting on his board, someone holds two arms in the air and someone\",The veteran surfer lies flat on the board and busts through the top portion as it breaks.,\"Sitting on his board, someone holds two arms in the air and someone\",gold,leads him into a press.,shows a beaming smile from the beach.,leaps into the life boat.,yanks his face out.\n5074,lsmdc3016_CHASING_MAVERICKS-6323,10778,He pushes up over several small waves and continues further out. The veteran surfer,He pushes up over several small waves and continues further out.,The veteran surfer,gold,lies flat on the board and busts through the top portion as it breaks.,continues doing many outdoor stunts on a skateboard in the ocean water.,\"holds up a heavy shuffling machine, and pretends to foursome.\",\"rides down to his river, apparently stunts on his departure.\"\n5075,lsmdc3016_CHASING_MAVERICKS-6323,10780,\"Sitting on his board, someone holds two arms in the air and someone shows a beaming smile from the beach. Now they\",\"Sitting on his board, someone holds two arms in the air and someone shows a beaming smile from the beach.\",Now they,gold,\"fly above the vast sky lit by great city lights, as someone flies onward.\",drive to a beach overlooking the ocean.,walk the incline back to the van.,arrive at a white room surrounded by neon signs and a small red flag.\n5076,lsmdc3016_CHASING_MAVERICKS-6323,10776,\"He grabs his board and heads to the water. Watching closely, someone\",He grabs his board and heads to the water.,\"Watching closely, someone\",gold,puts the captain down.,eyes someone sheepishly as he eyes someone.,\"runs up to someone, letting him hold the head with someone's case, hitting his head to lower the others.\",stands up as someone paddles beside the protruding rock formations.\n5077,lsmdc3016_CHASING_MAVERICKS-6323,10770,\"Using his arms, someone pushes up and floats over the crest of a modest wave. The board\",\"Using his arms, someone pushes up and floats over the crest of a modest wave.\",The board,gold,shoots out of the water with someone unseen and someone smiles from the beach.,pops out in the breeze.,\"rises, illuminating the remaining patrons.\",\"slows up, starting around the boat.\"\n5078,lsmdc3016_CHASING_MAVERICKS-6323,10777,\"Watching closely, someone stands up as someone paddles beside the protruding rock formations. He\",\"Watching closely, someone stands up as someone paddles beside the protruding rock formations.\",He,gold,pushes up over several small waves and continues further out.,takes it with a grin.,\"scrambles takes his things and turns slowly, then turns and walks off.\",\"climbs onto the platform, reaches under a tire, and drops a railing on his way out.\"\n5079,lsmdc3016_CHASING_MAVERICKS-6323,10769,\"He pulls his wetsuit hood over his blonde curls. Using his arms, someone\",He pulls his wetsuit hood over his blonde curls.,\"Using his arms, someone\",gold,pushes up and floats over the crest of a modest wave.,taps his finger across the surface.,gazes quizzically at his buddy.,heads off down the leafy forest alone.\n5080,anetv_f4983HmCNiM,1489,Some fall off their bikes. They,Some fall off their bikes.,They,gold,flip the croquet one over.,dive against each other on the ice.,boy picks up the animal.,\"make it through the finish line, ending the race.\"\n5081,anetv_f4983HmCNiM,1487,A group of dirt bikers are waiting on a ramp. They,A group of dirt bikers are waiting on a ramp.,They,gold,are then shown riding bikes at a speed from an intersection and another four by hand.,are making boards along the ducati track.,\"take off when it opens, going around in circles on the track, racing each other.\",are riding kites in a public square as a man skateboard and realizes pictures are well speed.\n5082,anetv_f4983HmCNiM,1488,\"They take off when it opens, going around in circles on the track, racing each other. Some\",\"They take off when it opens, going around in circles on the track, racing each other.\",Some,gold,celebrate and continue to make the same gesture and squeeze their medals.,fall off their bikes.,\"the other marching inside, another cube tower is gaining on a high wall.\",try to jump off someone but backs the car.\n5083,anetv_2aHetC-N-P4,825,He then rides the tractor around a field and zooming in on his arms and feet. He,He then rides the tractor around a field and zooming in on his arms and feet.,He,gold,continues riding around the grassy area.,continues climbing across the dance while the camera pans around.,continues to jump on the balls as well as the surfers.,coming and going back and fourth with another man getting off of the board.\n5084,anetv_2aHetC-N-P4,14279,A lawn mower is shown on a farm road. It,A lawn mower is shown on a farm road.,It,gold,is drawn up a lawn mower.,is then driven on the road and then goes to work mowing the yard.,walks up next to him.,is watching there are large wheels around on the grass.\n5085,anetv_2aHetC-N-P4,824,A camera pans around a tractor and shows the man adjusting settings. He then,A camera pans around a tractor and shows the man adjusting settings.,He then,gold,puts more darts on the bike while the camera zooms in on the roof.,rides the tractor around a field and zooming in on his arms and feet.,gets up to the horse and begins to sharpen the bottom of the horse.,continues pushing the machine all around while holding the camera.\n5086,anetv_h0p_7Q2Bucc,901,\"He finally gets off the stairs and joins the others who are on the wooden diving board. First, a set of three girls\",He finally gets off the stairs and joins the others who are on the wooden diving board.,\"First, a set of three girls\",gold,are pulled over onto the head of the boy anticipating a seat that a boat.,jump off before he does and creates a large commotion of waves.,stand at the same time for one next to turn and he is right dives into the sea below.,dives into a blue pool where they are breaking the pool.\n5087,anetv_h0p_7Q2Bucc,900,A man appears treading water as he is waiting to get out of the water and walk up a set of stairs. He,A man appears treading water as he is waiting to get out of the water and walk up a set of stairs.,He,gold,comes up with a brush and begins to iron his rims.,continuously riding behind the kayak around and doing several push ups.,are opened then water rapid appears as he speaks to the camera again.,finally gets off the stairs and joins the others who are on the wooden diving board.\n5088,anetv_--veKG73Di4,14531,A man and a women introduce themselves to the camera and start to talk to each other while the man is sitting behind a four set bongo set and the women is on the other side holding a water bottle. As the conversation ensues another woman,A man and a women introduce themselves to the camera and start to talk to each other while the man is sitting behind a four set bongo set and the women is on the other side holding a water bottle.,As the conversation ensues another woman,gold,is still sitting in the back of a chair quickly while she moves one on in between room.,comes into the bathroom and laughs as the soda of words pull into the rest of her hair to strain briefly.,is talking to a camera while a young girl is sitting and recording herself safety.,approaches the woman and takes away her water bottle.\n5089,anetv_--veKG73Di4,14533,As the woman dances on a man on a bike passes by and starts to observe what's going on. In the end while the woman stops dancing and starts to clap and the man playing the bongos,As the woman dances on a man on a bike passes by and starts to observe what's going on.,In the end while the woman stops dancing and starts to clap and the man playing the bongos,gold,moving his head to show the power of the man's performance.,holds his hands up as the woman picks her up by now both napkin to the floor polo.,has a different pattern of shoes.,stops playing and does a final clap.\n5090,anetv_--veKG73Di4,14532,Afterwards the man starts to play the bongos and woman starts to dance. As the woman dances on a man on a bike passes by and,Afterwards the man starts to play the bongos and woman starts to dance.,As the woman dances on a man on a bike passes by and,gold,begins strumming the guitar again.,stops by walking away.,begins playing the cymbals for a while on foot.,starts to observe what's going on.\n5091,anetv_HfowLX1u38Y,11902,The man is using the pipe to light up the woodfire. man,The man is using the pipe to light up the woodfire.,man,gold,walks between the houses and place a hand in the doorway.,is standing outside a house lighting up a woodfire.,is welding fire in a room.,sneaks up and grabs a pile of animal cigarettes that spins to roll the corner of the trunk.\n5092,anetv_HfowLX1u38Y,11901,Man wearing a purple shirt is holding a gas pipe. the man,Man wearing a purple shirt is holding a gas pipe.,the man,gold,begins as he puts ice on his nozzle.,is using the pipe to light up the woodfire.,shovels snow from a truck.,seals ski with the electric cutter wrench and uses the chain.\n5093,anetv_OyKEEws65l8,1028,A woman is seen climbing onto a camel and smiling into the camera while men stand behind her and watch. The camel,A woman is seen climbing onto a camel and smiling into the camera while men stand behind her and watch.,The camel,gold,continues back away several times while others walk past the camera and walk around the area.,continues flipping with the equipment while continuing to ride the dog and turning down the rope and speaking to the camera.,begins accepting the camels that lead up to a speaking man with dealer being placed up by the camels.,stands up and walks around a sandy area while the woman hangs on tight.\n5094,anetv_OyKEEws65l8,12315,The camel stands up and a man leads it around. People,The camel stands up and a man leads it around.,People,gold,is seen running down the ladder running around the path.,are interviewed in a winners report.,are standing next to them taking pictures.,walks along a beach.\n5095,anetv_OyKEEws65l8,1029,The camel stands up and walks around a sandy area while the woman hangs on tight. The camera,The camel stands up and walks around a sandy area while the woman hangs on tight.,The camera,gold,zooms in on the camel's face and lays down while the man grabs him and the woman climbs off.,rides over the board while diving into the beach while continuing to exercise.,shows the woman is seen leading the people inside the lift.,pans to the baby in an open area and the shirt a dog.\n5096,anetv__zkcTAj5Z8Q,11633,A young boy is seen swimming around with another person standing in the water. The boy,A young boy is seen swimming around with another person standing in the water.,The boy,gold,continues to swim around with the other people as well as do flips under the water.,swims as the other young boy continues to dance.,continues all along the game together.,then smiles back at the camera.\n5097,anetv__zkcTAj5Z8Q,11634,The boy continues to swim around with the other people as well as do flips under the water. The kids,The boy continues to swim around with the other people as well as do flips under the water.,The kids,gold,react to the camera while others stand and wave his arms.,continue running around washing their hands and legs.,move under and over the water while the camera continues to follow them.,continue to act like they are highly competitive rock chips in diagon alley.\n5098,anetv_NcEWimHnC54,17697,We see people skiing and snowboarding down the hill. The names,We see people skiing and snowboarding down the hill.,The names,gold,go out on a ride on a dirt trail.,are shown in a blue bar above.,are taken out of the pan.,is shown on biking snow.\n5099,anetv_NcEWimHnC54,17700,We see a person in dense woods riding a snowboard. We,We see a person in dense woods riding a snowboard.,We,gold,see people in white gear racing into the dirt.,see the ending credits.,see skiers horseback riding a bull.,see one of the man sweeping them up.\n5100,anetv_NcEWimHnC54,17695,We see an opening title screen. We,We see an opening title screen.,We,gold,see a baby in a big house outdoors.,see snow covered ski slope and a title screen.,see a person vacuum a kite.,see the car with other cars parked on the top.\n5101,anetv_NcEWimHnC54,17698,The names are shown in a blue bar above. We,The names are shown in a blue bar above.,We,gold,items in the center of the tub are shown.,are long still behind spools of wire.,see a man holding a selfie stick as he boards down the hill.,see the magazine still talks.\n5102,anetv_NcEWimHnC54,17696,We see snow covered ski slope and a title screen. We,We see snow covered ski slope and a title screen.,We,gold,\"ride black, a woman wearing a trunks and is walking to a scooter, which is shown riding through the snow.\",see a car around the strip boarding and brush.,see several people playing croquet on the lake.,see people skiing and snowboarding down the hill.\n5103,anetv_YODfHuzK2As,5001,Two people are seen hosting a news segment that leads into clips of a young child throwing darts onto a board. Several people,Two people are seen hosting a news segment that leads into clips of a young child throwing darts onto a board.,Several people,gold,are shown riding around as close as shots of stilts and scoring in the ocean.,are seen riding up several dirt and then walking around the field.,are interviewed for the camera and switches into a clip of a game show and more shots of dart throwers.,\"are seen running behind the bowling ball down a bowling lane, and hitting a ball back and forth.\"\n5104,anetv_YODfHuzK2As,5002,Several people are interviewed for the camera and switches into a clip of a game show and more shots of dart throwers. The boys,Several people are interviewed for the camera and switches into a clip of a game show and more shots of dart throwers.,The boys,gold,\"throw one at a group throwing the game, are cheering and alternately flipping and throwing each other up together.\",continue boxing in one holding the bikes.,perform through one another with the other straight as well as one man watching kids go behind another team standing around.,is seen again throwing darts and pans back to the people hosting the news.\n5105,anetv_YODfHuzK2As,6517,A man and a woman are sitting on a blue couch in a show talking to the camera. litle kid,A man and a woman are sitting on a blue couch in a show talking to the camera.,litle kid,gold,is standing in a room throwing darts to a board while behind him two women sitting are watching him.,is doing crunches on the floor and prepare to talk.,is playing a sidewalk.,stands in a living room talking to a man on the side of the couch.\n5106,anetv_YODfHuzK2As,6518,Litle kid is standing in a room throwing darts to a board while behind him two women sitting are watching him. women,Litle kid is standing in a room throwing darts to a board while behind him two women sitting are watching him.,women,gold,are at a table making balls on leather chairs.,are walking through the hops and being put together over a roller and are all eating pumpkins.,are wearing a dress shirt and talking to the camera.,are talking to the camera while the kid is playing with the oher woman.\n5107,anetv_RYl-eG9hasI,7271,The woman throws the baton high in the air while dancing and then catch the baton neatly. The woman,The woman throws the baton high in the air while dancing and then catch the baton neatly.,The woman,gold,\"drops the baton, retrieves it, and continues to dance through to the end of the routine when she leaves the gymnasium floor.\",then spin that twirl the baton while using three discs.,pass a lady in the air and the girl dances.,moves break again while dancing.\n5108,anetv_RYl-eG9hasI,4181,People are sitting in bleachers of a gym. A woman,People are sitting in bleachers of a gym.,A woman,gold,walks onto the stage and begins to dance.,stands up and speaks to the camera.,stands in a gym holding a pole.,starts walking next to them.\n5109,anetv_RYl-eG9hasI,4183,She twirls a baton around while dancing. She,She twirls a baton around while dancing.,She,gold,spins around and splits the stick into a pose in the middle.,finishes and walks off the stage.,swings her foot behind the floor as he jumps off the stage.,does various flips and lands in the corner of a pit.\n5110,anetv_RYl-eG9hasI,7269,A woman performs a gymnastic baton routine in a gym surrounded by a lightly attended event with people in the bleachers. A young woman,A woman performs a gymnastic baton routine in a gym surrounded by a lightly attended event with people in the bleachers.,A young woman,gold,is seen laying on a platform with her arms pushed to her sides.,walks onto a gymnasium floor and begins performing a gymnastic baton routine in a gymnastic outfit.,is jumping on very high lines after woman's jumping.,holds up a baton and performs a performance for hitting the pole while half - exercising with other foot extended.\n5111,anetv_RYl-eG9hasI,4182,A woman walks onto the stage and begins to dance. She,A woman walks onto the stage and begins to dance.,She,gold,continues dancing and twirling the batons.,twirls a baton around while dancing.,takes a sparkling pad from her machine.,\"starts dancing, then moves and walks off while she continues to do is twirl.\"\n5112,anetv_RYl-eG9hasI,7270,A young woman walks onto a gymnasium floor and begins performing a gymnastic baton routine in a gymnastic outfit. The woman,A young woman walks onto a gymnasium floor and begins performing a gymnastic baton routine in a gymnastic outfit.,The woman,gold,spins back around and ends by bowing off the stage lights.,throws the baton high in the air while dancing and then catch the baton neatly.,continues running around and demonstrates what jumps for the woman as camera pans around and swinging around her.,performs several flips in the stands.\n5113,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92604,15112,Someone grabs a lamp and hits himself. Someone,Someone grabs a lamp and hits himself.,Someone,gold,tries to back at it.,sits in the raft follows behind him.,sets down her box.,hears the noise upstairs.\n5114,anetv_FMmrxy3OanA,9372,\"The video begins with a title sequence showing a girl throwing clothing at a man, and a title screen. The man and his family\",\"The video begins with a title sequence showing a girl throwing clothing at a man, and a title screen.\",The man and his family,gold,are practicing karate in a gym.,are in a backyard speaking to the camera.,are talking while playing voleyball.,are shown with a angel helping and styling a child's hair.\n5115,anetv_FMmrxy3OanA,9374,\"They then begin to hula hoop until the woman loses. Afterward, they\",They then begin to hula hoop until the woman loses.,\"Afterward, they\",gold,speak to the camera and wave goodbye.,enter each end in slow motion.,are both wearing protective caps and hula hoops.,make sure her foot have on the ground.\n5116,anetv_FMmrxy3OanA,9373,The man and woman put on a tutu and blindfolds. They then,The man and woman put on a tutu and blindfolds.,They then,gold,put the left leg on the starboard side.,begin to hula hoop until the woman loses.,take a solo and walk in front of the double.,take off the stilts and doing various tricks on the bike.\n5117,lsmdc1031_Quantum_of_Solace-84366,14447,\"As he opens it, the cop draws. Someone\",\"As he opens it, the cop draws.\",Someone,gold,pulls out his wallet and his gun.,crumples the long one.,is completely stripped to the hospital young - jacket.,is lying in the trunk.\n5118,lsmdc1031_Quantum_of_Solace-84366,14448,Someone is lying in the trunk. Someone,Someone is lying in the trunk.,Someone,gold,gets up from the bench and reaches to break out the front door; neither kid turns.,pulls the unconscious man out.,hands the book back to someone.,brushes herself away off her right hand.\n5119,lsmdc3056_PUBLIC_ENEMIES-2888,18256,Someone notices his young hostage shivering. He,Someone notices his young hostage shivering.,He,gold,taps someone on the forehead.,wraps his overcoat around her and guides her into the backseat.,\"glares at himself, then storms down the corridor.\",hits a bullet with another man on the ground.\n5120,lsmdc3056_PUBLIC_ENEMIES-2888,18254,Coats flap in the breeze. The car,Coats flap in the breeze.,The car,gold,comes to a stop under a bridge.,crewman has a pump of energy.,continues to burn.,\"leads towards the protruding enormous cut with the big puppet's piece which flies out, rising to its feet.\"\n5121,lsmdc3056_PUBLIC_ENEMIES-2888,18257,The bank robbers leave their hostages. They,The bank robbers leave their hostages.,They,gold,pulls himself over against flat gun heighten.,peer through someone's open doors.,\"saucer, it's.\",get in and drive.\n5122,lsmdc3056_PUBLIC_ENEMIES-2888,18255,The car comes to a stop under a bridge. Someone,The car comes to a stop under a bridge.,Someone,gold,watches carefully as the crewman slides her to a halt.,grabs onto someone's visor and pull him into his arms.,faces homer's hostage.,is washing dishes in a sink.\n5123,anetv_WW0Sm6oDc9M,12010,A boy picks up a bowling ball and runs down the lane. He,A boy picks up a bowling ball and runs down the lane.,He,gold,misses the ball and gets hit.,dives into the pins at the end.,throws another girl into the lane.,tries to pass a pinata that drops to the ground.\n5124,anetv_WW0Sm6oDc9M,12011,He dives into the pins at the end. He,He dives into the pins at the end.,He,gold,runs back and falls onto the lane.,jumps down and somersaults on the bed.,\"runs down a narrow run, landing on the rocks of a train crash.\",kneel falls and lies on his face.\n5125,anetv_ThYidZUtnuo,15622,Another worker sprays water all over the roof. The roof,Another worker sprays water all over the roof.,The roof,gold,is then really clean.,scrapes off with various tool.,is largely to the superhero and the puddles.,send flying black smoke clouds far overhead.\n5126,anetv_ThYidZUtnuo,15621,A worker removes moss from the top of a roof. Another worker,A worker removes moss from the top of a roof.,Another worker,gold,approaches in front of someone.,meets the man with a thin hot broom.,gets into his car.,sprays water all over the roof.\n5127,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13016,14140,\"Holding the cross, someone looks into the priests eyes. Daylight\",\"Holding the cross, someone looks into the priests eyes.\",Daylight,gold,get in their pocket.,\", someone stumbles to his knees.\",shines down on them from a hole in the ceiling.,have been put down to the ground.\n5128,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13016,14138,\"At a cubby hole, he takes out an ancient bottle of ruddy wine. He\",\"At a cubby hole, he takes out an ancient bottle of ruddy wine.\",He,gold,kisses the bottle then looks at someone.,rolls it on the tree and is sharply back into it.,puts down the portable envelope.,climbs onto a table near a white t - shirt.\n5129,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13016,14137,Someone lowers his troubled gaze. Someone,Someone lowers his troubled gaze.,Someone,gold,makes an eye for the bridge.,\"smiles and leans his chin, as he meets someone's gaze.\",\"closes someone's eyes, but he extends an alarm toward his face.\",grins then wraps his arm around his friend.\n5130,lsmdc3048_LITTLE_FOCKERS-23005,18414,\"With one hand on someone's waist and the other on his neck, someone kisses both of the older man's cheeks. He\",\"With one hand on someone's waist and the other on his neck, someone kisses both of the older man's cheeks.\",He,gold,looks pointedly at someone who grins.,\"trails his fingers into the cold, staring swings.\",continues to stretch as they approach a static building.,slaps his hands to someone's face and kisses him again.\n5131,lsmdc1057_Seven_pounds-97980,13508,\"Someone studies her as she speaks, then lowers his eyes. Someone\",\"Someone studies her as she speaks, then lowers his eyes.\",Someone,gold,furrows his brow as someone's set plan process.,puts someone's wrist around the back of her neck.,lowers her jaw stubbornly.,looks down and smiles wistfully.\n5132,lsmdc1057_Seven_pounds-97980,13515,He kills the lights and removes his seat belt. Soft light,He kills the lights and removes his seat belt.,Soft light,gold,shines on the boy's face as he sleeps clutching someone's stomach.,shines on someone at the bottom of the window.,\"shines out from the house as someone, carrying a shoulder bag, sneaks through someone's pretty garden towards the workshop.\",shines down on him.\n5133,lsmdc1057_Seven_pounds-97980,13511,She gets out and gets someone out from the back seat. She,She gets out and gets someone out from the back seat.,She,gold,walks away in wearing flannel uniforms.,\"looks in through the open, front passenger window.\",pulls the plunger down.,steps into the kitchen and opens a packet of pink wallet.\n5134,lsmdc1057_Seven_pounds-97980,13512,\"She looks in through the open, front passenger window. Someone\",\"She looks in through the open, front passenger window.\",Someone,gold,spots a suit through the front door.,\"watches someone go, then turns away pensively.\",gapes as the baker grabs her hair and takes the picture creating a faint color.,stares straight ahead at someone.\n5135,lsmdc1057_Seven_pounds-97980,13509,Someone looks down and smiles wistfully. Someone,Someone looks down and smiles wistfully.,Someone,gold,\"reaches out her hand, and briefly caresses her hair.\",shakes his head as someone walks.,downs his drink seductively.,is introduced and has detail of the paper.\n5136,lsmdc1057_Seven_pounds-97980,13510,\"Someone's head sticks out of someone's car window as they drive along the avenue of palm trees to someone's quaint clapboard house, and pull up outside it. Someone\",\"Someone's head sticks out of someone's car window as they drive along the avenue of palm trees to someone's quaint clapboard house, and pull up outside it.\",Someone,gold,bought a younger man from the pizzeria the rest of the video.,\"gives someone a sweet, uncertain smile.\",\"stands amongst them, staring at him.\",and someone walk back from the house.\n5137,lsmdc1057_Seven_pounds-97980,13514,Someone's saloon pulls up outside someone's. He,Someone's saloon pulls up outside someone's.,He,gold,kills the lights and removes his seat belt.,enters with three gate bags.,bites down on the window and rolls to pick herself up.,grabs a card from the shelf and removes it.\n5138,anetv_lR4vyq1WbyU,8108,He continues pushing the man while many watch on the side. The man,He continues pushing the man while many watch on the side.,The man,gold,continues spinning and ends by slicing an egg on a plate.,stands up and looks surprised as he's continuously pushed down.,begins riding around on his kayak along the way to do the tricks.,continues to turn around while the class leaves and speaks.\n5139,anetv_lR4vyq1WbyU,8107,A man is seen speaking to others off in the distance and begins pushing a man around a room. He,A man is seen speaking to others off in the distance and begins pushing a man around a room.,He,gold,is seen looking off into the distance and shows more clips of people climbing and climbing beams.,are seen speaking to the camera as well as being shot and speaking loudly.,continues pushing the man while many watch on the side.,is done and is shown performing tricks all along an object while looking around others.\n5140,anetv_It2fslENHXs,16014,A man runs and does a successful pole vault. He,A man runs and does a successful pole vault.,He,gold,runs very fast and throws a dart down the track.,jumps off the bikes and releases a red rope.,grabs a student and lands on it.,stands up from the pad and picks up the pole.\n5141,anetv_It2fslENHXs,16013,An large outdoor sports field is shown. A man,An large outdoor sports field is shown.,A man,gold,is quickly interviewed to the camera.,is shown speaking to the camera in front of a game of soccer.,is holding a lacrosse stick in her hand.,runs and does a successful pole vault.\n5142,anetv_w3DvA9405_o,9298,A woman is seen looking off in the distance who holds onto a harmonica. She,A woman is seen looking off in the distance who holds onto a harmonica.,She,gold,kicks a stick from a piece of paper and hits it in.,continues playing the piano while looking in and off the end to the audience.,begins playing the harmonica while looking away from the camera.,hangs up the harmonica and continues to play it with her hands at the end.\n5143,anetv_w3DvA9405_o,9299,She begins playing the harmonica while looking away from the camera. The,She begins playing the harmonica while looking away from the camera.,The,gold,continues playing while taking off instrument and looking at the camera.,is playing a violin an cuts her playing in the air.,continues to speak on the piano as she talks.,continues playing the harmonica and stops to look down at the camera.\n5144,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94383,6449,The black cloud and the images disappear. Someone,The black cloud and the images disappear.,Someone,gold,peer down at the cargo plane.,stares at the open locket.,reaches out and hands only someone's mask.,\"is silent for a moment, then looks up at the sinks.\"\n5145,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94383,6447,Someone sees naked images of people kissing passionately. Someone,Someone sees naked images of people kissing passionately.,Someone,gold,looks down at an infant in his coffin.,seethes as he watches them.,leads her down the stairs toward the platform.,stares up at him as he exits a building.\n5146,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94383,6448,Someone seethes as he watches them. Someone,Someone seethes as he watches them.,Someone,gold,\"rushes over and sees two tall, blonde pigs.\",wears the feather -.,strikes the locket with the sword of gryffindor.,docks a surgeon.\n5147,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94383,6451,Someone is on his knees. He,Someone is on his knees.,He,gold,\"wraps slightly and clutches his bleeding ribs, then ambles in.\",slides his wrists in the manager's direction.,lets go of the sword.,kicks a pillow from his gears and chops the dummy in half.\n5148,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94383,6450,Someone stares at the open locket. Someone,Someone stares at the open locket.,Someone,gold,takes a photo too.,watches in shining caricature as someone sidesteps on the bars.,pauses and stares benignly at the light from a nearby train window for a distance.,is on his knees.\n5149,anetv_eqm20MDaeRQ,15549,A woman is seen kneeling over a bucket on an old tv show. She,A woman is seen kneeling over a bucket on an old tv show.,She,gold,puts a towel on the bow and begins to mop it over.,is seen washing clothes in the bucket while looking off into the distance.,continues speaking and ends with him wiping his face.,set down on a towel and begins mopping her mother.\n5150,anetv_eqm20MDaeRQ,15550,She is seen washing clothes in the bucket while looking off into the distance. She,She is seen washing clothes in the bucket while looking off into the distance.,She,gold,continues to paint the floor and begins moving around the water in slow motion.,sighs to herself in exhaustion and continues washing the clothes when a shot of a washing machine is shown.,begins washing clothes for the dishes and looking off into the distance.,continues riding his shoes as well as cleaning in the side.\n5151,lsmdc0043_Thelma_and_Luise-68201,3953,\"Someone is heading towards the bathroom, where there is a line of at least fifteen women in front of her. He\",\"Someone is heading towards the bathroom, where there is a line of at least fifteen women in front of her.\",He,gold,steers her towards the door.,holds up a backpack attendant keys.,hands the food items to both of the women.,follows someone out to his patio and returns to him.\n5152,anetv_GPl7nFwqSgk,10338,A large group of people are seen standing in a circle playing drums with one person in the middle instructing them. The camera,A large group of people are seen standing in a circle playing drums with one person in the middle instructing them.,The camera,gold,continues to move up and fourth moving the ball back and fourth while the other watch the end.,shows several people playing their instruments and playing instruments one by one as they continue to play.,pans around the group playing drums while people them on the side.,spins and shows a slow motion shot of a woman inside in the end.\n5153,anetv_2bEr09bbqAA,19124,A man sits in a kayak and holds his oar in a river showing how to use it properly. The man,A man sits in a kayak and holds his oar in a river showing how to use it properly.,The man,gold,leans back in his kayak to show balance techniques.,flips the tree off.,leans against his rake and gets off a surf board.,\"adds the wax to the rock skis, then pushes it around on the deck.\"\n5154,anetv_2bEr09bbqAA,19125,The man leans back in his kayak to show balance techniques. The kayak rider,The man leans back in his kayak to show balance techniques.,The kayak rider,gold,\"lowers his oar, keeping his eyes on it.\",is pulled away from the kayak attached to a water boat.,straightens upside down and plays with a helmet attempting to maneuver.,paddles into the white wash below a water fall and flips over then rights himself again.\n5155,anetv_55IErOrgQOA,13856,An individual's hand uses a brush on the horse's fur. The individual moves to the other side of the horse and,An individual's hand uses a brush on the horse's fur.,The individual moves to the other side of the horse and,gold,uses the brush on the horse's hair.,begins to clips the dogs's fur.,trims the hair of the black horse.,stops right the right.\n5156,anetv_55IErOrgQOA,13890,A close up of a horse is shown eating hay followed by a hand brushing a horse. The brush,A close up of a horse is shown eating hay followed by a hand brushing a horse.,The brush,gold,shows how to groom the horse while sharpening the knife.,is showing the girl brushes with the dogs on the horse.,continuously peel the mane to another person while performing on the camera.,is continuously seen moving along the horse while the animal not moving.\n5157,anetv_55IErOrgQOA,13855,A horse in a stable eats hay. An individual's hand,A horse in a stable eats hay.,An individual's hand,gold,zooms into the woman's face.,walks to the horse separately.,finds the camera cleaning before the load.,uses a brush on the horse's fur.\n5158,lsmdc3068_THE_BIG_YEAR-3315,13700,\"Nearby, a man cuts up fish on a board. Someone\",\"Nearby, a man cuts up fish on a board.\",Someone,gold,tiger rides a bicycle.,clear bucket stands full of people in tubes on a narrow river.,notices someone popping pills nearby.,uses both arms to leverage a decree on the general's hand.\n5159,lsmdc3068_THE_BIG_YEAR-3315,13699,\"He moves off and others follow him. Nearby, a man\",He moves off and others follow him.,\"Nearby, a man\",gold,enters a few holding loads of drivers.,presses photos onto the dish.,runs and jumps over a bar onto a stage.,cuts up fish on a board.\n5160,lsmdc3068_THE_BIG_YEAR-3315,13701,Someone notices someone popping pills nearby. He,Someone notices someone popping pills nearby.,He,gold,holds the phone onto some robber's nearby desk.,kicks back into the wall at the opposite end.,remembers passing by him at the house in canada.,brings someone a wine cooler and pats her's shoulder.\n5161,lsmdc3068_THE_BIG_YEAR-3315,13702,He remembers passing by him at the house in Canada. The workman,He remembers passing by him at the house in Canada.,The workman,gold,\"are right, formally and used.\",is two of them - going faster.,dumps fish parts over the rail.,descends her some weak canyon.\n5162,anetv_4wIqgWw53XE,11525,A plane fly above the beach where people sail. A woman,A plane fly above the beach where people sail.,A woman,gold,wearing yellow and gel t - disk surfing to water.,picks up a plane with a rafting and dodging cone.,is riding on a descending slope in open land.,takes picture of the city from a hill.\n5163,anetv_4wIqgWw53XE,11524,A man sails on a sailboard passing on front other sailors. A plane,A man sails on a sailboard passing on front other sailors.,A plane,gold,fly above the beach where people sail.,is released and a man sail a boat.,shakes as a jet rises overhead.,approaches a surf board at the shore.\n5164,anetv_4wIqgWw53XE,11523,People sail on sailboards in the ocean. A man,People sail on sailboards in the ocean.,A man,gold,sails on a sailboard passing on front other sailors.,runs a wave up the monkey bars.,throws a bubble kite over a pipe which falls on fire.,uses a white to wave to a whale.\n5165,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8369,Someone wields two more bottles. Someone,Someone wields two more bottles.,Someone,gold,indicates a colleague and sneaks over to him.,close as arrows hit.,covers someone's head as he steps to kiss.,ducks as she throws one.\n5166,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8370,\"He backs into a door and slides down to the floor, limp, his eyes closed. Someone\",\"He backs into a door and slides down to the floor, limp, his eyes closed.\",Someone,gold,opens the door and peeps through the crack.,screws up his face as he closes the urn.,\"gazes down at someone, then turns between this, and looks back.\",walks the last night back.\n5167,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8368,\"He catches it and pretends to drink it, then throws it. Someone\",\"He catches it and pretends to drink it, then throws it.\",Someone,gold,pops the dog in front of her mouth.,\"notices a coin, then waddles over to his desk and opens the drawer.\",gives it a quick series of withering.,wields two more bottles.\n5168,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8372,\"Someone's head was resting on the door and it drops, a pool of red wine by him. Someone\",\"Someone's head was resting on the door and it drops, a pool of red wine by him.\",Someone,gold,opens his eyes and grins.,\"heads off, leaving her behind, woeful to someone.\",\"is singing with his hand - - - same sound is circling in the air again, and thoughts are moving back into the blow\",wades through the forest toward a core.\n5169,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8366,She stands with her curly blonde hair over her shoulders and glares at someone. She,She stands with her curly blonde hair over her shoulders and glares at someone.,She,gold,has his eyes folded up and offers a polite smile.,turns the door and leaves the restroom.,\"lifts her off her feet, and bows her head.\",takes two bottles of wine from a rack.\n5170,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8365,She topples over a handrail. She,She topples over a handrail.,She,gold,withdraws down a steep incline.,knocks the weathered rube down on the slope.,lands and guides her onto the floor.,stands with her curly blonde hair over her shoulders and glares at someone.\n5171,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8363,She slides over the table. He,She slides over the table.,He,gold,throws a towel over her.,glances over at his friend's corpse.,arrange the golden ball onto a table.,stares after the party.\n5172,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8364,He throws a towel over her. She,He throws a towel over her.,She,gold,closes him and spits.,topples over a handrail.,kicks the frisbee over.,comes to behind her.\n5173,lsmdc3022_DINNER_FOR_SCHMUCKS-10405,8371,Someone opens the door and peeps through the crack. Someone's head was resting on the door and it,Someone opens the door and peeps through the crack.,Someone's head was resting on the door and it,gold,is locked as he comes up.,'s coming a bit.,\"drops, a pool of red wine by him.\",doors open.\n5174,anetv_KOFXi1RYx_g,6642,An audience is sitting in the stands watching a game on the field. These riders,An audience is sitting in the stands watching a game on the field.,These riders,gold,begin preparing to bow or jump.,get on their horses and start trying to score for their team.,run across to one gymnasium back at the finish line and jump up in the water.,\"play a game of volleyball, are shown again including goals and the group continues to push themselves across.\"\n5175,anetv_KOFXi1RYx_g,6643,Someone makes it and one of the groups in the audience clap. When the game is over the riders all,Someone makes it and one of the groups in the audience clap.,When the game is over the riders all,gold,\"jab, one runs over and he flip in on a mat.\",take their trophies and heads.,shake each others hands.,start throwing up the balls back to their teammates.\n5176,anetv_DhgdEfKAvO0,14559,The girl falls down ad others help her up and leads into her swinging a bat around. She,The girl falls down ad others help her up and leads into her swinging a bat around.,She,gold,turns around and jumps away.,swings at a pinata and breaks it open while others grab it.,becomes blocked by the wind.,jumps off the slide and rides over the corner while the crowd also walks back watching the kids.\n5177,anetv_DhgdEfKAvO0,3556,A woman is blindfolded and turned in circles. She,A woman is blindfolded and turned in circles.,She,gold,bumps on the man rock paper closely.,throws a ball under the water and stands checking them.,falls down onto the floor.,sprays up at her chest with another baton.\n5178,anetv_DhgdEfKAvO0,3557,She falls down onto the floor. She,She falls down onto the floor.,She,gold,puts her feet out onto the stage and walks over and someone hugs someone.,runs over to someone who is playing a guitar.,gets up and starts swinging her bat at a pinata in front of her.,punches with her extended hand and someone backs off.\n5179,lsmdc3059_SALT-28753,4922,She carries them in her hands as she searches the apartment. She,She carries them in her hands as she searches the apartment.,She,gold,'s the pitch but there is nowhere to be.,brings him close and kisses him.,surveys more elegant guests as a few rows of steps.,passes a framed photo of the couple embracing.\n5180,lsmdc3059_SALT-28753,4911,A security feed shows someone outside the building. She,A security feed shows someone outside the building.,She,gold,races barefoot in front of traffic.,makes a closeup of her eyes.,\"squats by people, who struggles to join in another swarm as it bursts past her bed.\",\"looks on, as someone searches through a man's belongings.\"\n5181,lsmdc3059_SALT-28753,4926,\"Someone wags his tail expectantly as someone hurries to an adjacent room. Outside, agents\",Someone wags his tail expectantly as someone hurries to an adjacent room.,\"Outside, agents\",gold,raise their backpacks in metal bags and girls pass through the gate.,lie down at the table.,stand around the car as smoke rises from the bottom.,flood out of vehicles and head toward the building.\n5182,lsmdc3059_SALT-28753,4913,\"Waving her hand, someone flags down a Beltway cab and climbs in back. Someone\",\"Waving her hand, someone flags down a Beltway cab and climbs in back.\",Someone,gold,shoots a squad car glumly around the building.,twins - hurries to bed.,\"glances back at their entrance, then back to someone.\",removes the sim card from her phone and repeatedly bends it in half.\n5183,lsmdc3059_SALT-28753,4924,\"Someone watches as someone scurries to an overturned chair. On a table beside it, she\",Someone watches as someone scurries to an overturned chair.,\"On a table beside it, she\",gold,fills a dead plastic bag.,spots a half - eaten sandwich and an unfinished beer.,extends paper to someone's fresh santa buddy.,\"passes someone's bag and jabs something across the windscreen, catching her breath.\"\n5184,lsmdc3059_SALT-28753,4917,\"Shutting her eyes, she gently pounds the back of her head against the seat back then recalls someone showing her photographs of someone. He\",\"Shutting her eyes, she gently pounds the back of her head against the seat back then recalls someone showing her photographs of someone.\",He,gold,walks toward the house with a smile.,\"smiles, and notices someone's scarf.\",hands her someone's book on spiders.,reads an awning on the city street as he drives.\n5185,lsmdc3059_SALT-28753,4914,Someone removes the sim card from her phone and repeatedly bends it in half. The taxi driver,Someone removes the sim card from her phone and repeatedly bends it in half.,The taxi driver,gold,eyes her suspiciously in his rear view mirror as she destroys it.,opens a machine door.,reverses into the passenger seat and wipes the car inside.,stares out at the torrential rain carrying a barbecue.\n5186,lsmdc3059_SALT-28753,4918,He hands her someone's book on Spiders. She,He hands her someone's book on Spiders.,She,gold,tosses them into each other's arms and another hug.,twirls the strength of the gryffindor supporters.,scurries to her apartment door where she slides a hidden key from the frame.,applies sparkles over her own photography and lists for lives.\n5187,lsmdc3059_SALT-28753,4927,\"He follows her down a hall and into a dark room. Meanwhile, the tactical team\",He follows her down a hall and into a dark room.,\"Meanwhile, the tactical team\",gold,are stacked in a brown sheet of a wood dirt floor.,climbs onto a carved in a canvas bag.,arrives on her floor with their guns drawn.,arrives past several hydra agents.\n5188,lsmdc3059_SALT-28753,4919,\"She scurries to her apartment door where she slides a hidden key from the frame. As she enters the apartment, she\",She scurries to her apartment door where she slides a hidden key from the frame.,\"As she enters the apartment, she\",gold,glances up the threshold and faces her neighbor in a row of disgust.,\"carries a briefcase that was handed to the group in the principal, who is already excited with her phone.\",flutters her fan aside.,grabs a tan overcoat from the hall and puts it on.\n5189,lsmdc3059_SALT-28753,4923,Someone runs over and she pats him. Someone,Someone runs over and she pats him.,Someone,gold,watches as someone scurries to an overturned chair.,slides her back to safety.,rips out some sodden areas and steps heavily at her.,wipes the sweat and looks out of the window behind someone as he approaches.\n5190,lsmdc3059_SALT-28753,4925,\"On a table beside it, she spots a half - eaten sandwich and an unfinished beer. Someone\",\"On a table beside it, she spots a half - eaten sandwich and an unfinished beer.\",Someone,gold,wags his tail expectantly as someone hurries to an adjacent room.,\"marches into its center in a prison corridor, and discover people seated nervously around a statue in a green - white room.\",misses the pool's main stove.,stirs; the contents of the citrus which someone fills with noodles.\n5191,lsmdc3059_SALT-28753,4921,\"Creeping to the living room, she pauses in a doorway to pick up a pair of boots. She\",\"Creeping to the living room, she pauses in a doorway to pick up a pair of boots.\",She,gold,carries them in her hands as she searches the apartment.,slams the boxes on top of the bed and tosses it aside.,drops her hat and faces her lower roommate.,\"laid out on a small drier, wearing a pink dress, and battles on top of the graves.\"\n5192,lsmdc3059_SALT-28753,4920,\"As she enters the apartment, she grabs a tan overcoat from the hall and puts it on. Creeping to the living room, she\",\"As she enters the apartment, she grabs a tan overcoat from the hall and puts it on.\",\"Creeping to the living room, she\",gold,faces the door hard as she removes her coat.,notices the partially open doors with the doorknob tied behind her.,\"looks under the covers, turns to face someone.\",pauses in a doorway to pick up a pair of boots.\n5193,lsmdc3059_SALT-28753,4916,\"She tosses the sim card on the floor. Shutting her eyes, she gently pounds the back of her head against the seat back then\",She tosses the sim card on the floor.,\"Shutting her eyes, she gently pounds the back of her head against the seat back then\",gold,recalls someone showing her photographs of someone.,\"leans against a branch morosely, licking its legs in cold sunlight.\",spots a woman with one arm.,reaches for her gun.\n5194,anetv_cGtK7bs-TE8,9057,A fast motion video is shown of various people raking leaves around a yard. Two boys,A fast motion video is shown of various people raking leaves around a yard.,Two boys,gold,watches a woman raking the leaves and ending by laughing to the camera.,take turns of the camera and end by cutting the tree with ornaments.,are then seen walking down an sidewalk as well as moving their arms around.,look around towards each other and continue raking the leaks until the yard is done.\n5195,anetv_m12BPEN6Y3s,18724,A girl wearing a scarf is seen talking to the camera and begins mixing various ingredients into a bowl. She,A girl wearing a scarf is seen talking to the camera and begins mixing various ingredients into a bowl.,She,gold,shows all the ingredients into the finished bowl and finishes to the camera.,garnishes the mix and put it on a plate of rubbing them out and dropping the liquid into the bowl.,begins cutting another glass of juice before pouring liquid into a container and rummaging to both end of the plate.,places the batter into circles on separate pans and shows the cookies she made after they are done.\n5196,lsmdc1038_The_Great_Gatsby-87214,10005,\"Someone wakes up in his underwear, curled up on the porch swing outside his cottage. Someone\",\"Someone wakes up in his underwear, curled up on the porch swing outside his cottage.\",Someone,gold,glances back at someone.,stands on the steps and looks off in the distance.,watches from a window.,returns to someone's apartment.\n5197,lsmdc1038_The_Great_Gatsby-87214,10003,Someone gives Myrtle a vicious backhander across the face. Someone,Someone gives Myrtle a vicious backhander across the face.,Someone,gold,fills her drink then joins him.,retreats onto the fire escape.,sits cross - legged about his feet curved on tail.,wakes as she lies on his bed.\n5198,lsmdc1038_The_Great_Gatsby-87214,9997,\"He shakes the bottle, fizzing the champagne up, then pours some into his wide - open mouth. Someone\",\"He shakes the bottle, fizzing the champagne up, then pours some into his wide - open mouth.\",Someone,gold,walks up on the play.,wakes with a start.,pours champagne into the seated someone's mouth from a ceramic goblet.,\"sniffs it, then stops.\"\n5199,lsmdc1038_The_Great_Gatsby-87214,10004,\"Someone retreats onto the fire escape. High up on a skyscraper, a workman\",Someone retreats onto the fire escape.,\"High up on a skyscraper, a workman\",gold,hammers a steel girder.,gives money to someone.,watches up from the kitchen building outside the cinema building.,lies on his back.\n5200,lsmdc1038_The_Great_Gatsby-87214,9998,Someone pours champagne into the seated someone's mouth from a ceramic goblet. Someone,Someone pours champagne into the seated someone's mouth from a ceramic goblet.,Someone,gold,walks out of the reception room.,pushes him and puts a hand on someone's crotch.,\"sways on the spot with glazed, drunken eyes.\",moves back into his tea.\n5201,lsmdc1038_The_Great_Gatsby-87214,10012,A flood - lit blue pool sits in the middle of the ballroom. Someone,A flood - lit blue pool sits in the middle of the ballroom.,Someone,gold,\"wanders about, smiling.\",hands him a ice cream cone.,'s name is someone.,seems to be reflected in a ornate row watching this small boy who sits in a corner where the rain is coming.\n5202,lsmdc1038_The_Great_Gatsby-87214,9999,\"Someone sways on the spot with glazed, drunken eyes. A young black woman\",\"Someone sways on the spot with glazed, drunken eyes.\",A young black woman,gold,appears as she crouches beside someone's a portrait of someone holding a pistol.,dozes down a corridor behind her.,walks to her closed door by the front door.,\"leans on her window ledge, looking out.\"\n5203,lsmdc1038_The_Great_Gatsby-87214,10011,Hundreds of people move towards a cavernous ballroom. A flood - lit blue pool,Hundreds of people move towards a cavernous ballroom.,A flood - lit blue pool,gold,shows someone through a mirror.,sits in the middle of the ballroom.,reflects the clipart of the man on the distant dinner - shaped lobby.,\"is surrounded in front of the drummers, which are in large, walkman blaring colored flames.\"\n5204,lsmdc1038_The_Great_Gatsby-87214,9996,Another version of himself pops a champagne cork. He,Another version of himself pops a champagne cork.,He,gold,\"shakes the bottle, fizzing the champagne up, then pours some into his wide - open mouth.\",\"tosses the ping - pong ball down the lane, where it almost hits him.\",shoots gorilla right into the wall and knocks again.,holds the stick down and tastes the non - alcoholic drink.\n5205,lsmdc1038_The_Great_Gatsby-87214,10001,His street self walks off. Scenes,His street self walks off.,Scenes,gold,\"are then leaves, the young man gets on skis with the shovel.\",are walking through a snow - covered hoverboard.,play out in windows.,are blowing leaves back.\n5206,lsmdc1038_The_Great_Gatsby-87214,10010,Someone's caught up in the tide of people surging towards the mansion. Hundreds of people,Someone's caught up in the tide of people surging towards the mansion.,Hundreds of people,gold,fall on the sea.,drift towards the crowd.,are skating on a trail.,move towards a cavernous ballroom.\n5207,lsmdc1038_The_Great_Gatsby-87214,10013,\"Someone wanders about, smiling. A dancer\",\"Someone wanders about, smiling.\",A dancer,gold,poses for a varsity bus.,sits on a platform overlooking a next stage.,lashes behind her hair.,hangs upside - down from the ceiling.\n5208,lsmdc1038_The_Great_Gatsby-87214,10008,Cars crammed with people arrive. Someone,Cars crammed with people arrive.,Someone,gold,kicks someone from behind to help.,throws the letter to someone.,\"walks up, holding his invitation.\",rises from cabin hiding.\n5209,lsmdc1038_The_Great_Gatsby-87214,10007,Cars loaded with party goers roll up. Someone's immense mansion,Cars loaded with party goers roll up.,Someone's immense mansion,gold,is lit up at night.,is drawn on the road between the trees.,is mounted when the police arrive.,\"drives up, lost in a backdrop of trees in a hedge.\"\n5210,anetv_UN0bAa_ko4I,13239,Calango starts performing by the water on the pier. He,Calango starts performing by the water on the pier.,He,gold,pours water on a black bucket then starts kayaking.,rubs the iron on her right arm as she starts to go.,\"goes to the beach, takes his shirt and shoes off and performs some more.\",is sitting by a horse's drum.\n5211,anetv_UN0bAa_ko4I,9767,Mestre Calango is sitting on concrete near the water. Calango,Mestre Calango is sitting on concrete near the water.,Calango,gold,does a flip on the raft.,does a handstand on the pier.,grabs the ball and hits it with a baseball.,crawls along a shoreline.\n5212,anetv_UN0bAa_ko4I,9768,Calango does a handstand on the pier. He then,Calango does a handstand on the pier.,He then,gold,completes the 360 and adjusts his carnation in a boat and directs.,propellers through the water and jumps around the side.,moves his surfboard slightly to the sailboat.,starts dancing on the pier.\n5213,anetv_UN0bAa_ko4I,9769,He then starts dancing on the pier. He then,He then starts dancing on the pier.,He then,gold,runs to many jumps and has a small dog that does n't really begin.,takes his shirt and shoes off and dances on the beach and grass.,dismounts slightly continues jumping back laughing.,spins himself around on the train and ends by presenting himself to the camera.\n5214,anetv_UN0bAa_ko4I,13237,\"View of a large body of water with a city around it, the words Oakland - California - usa are overlaid. A young man by the name of Mestre Calango\",\"View of a large body of water with a city around it, the words Oakland - California - usa are overlaid.\",A young man by the name of Mestre Calango,gold,sits by the water.,starts an youtube video.,comes down the stairs.,is talking about the christmas.\n5215,anetv_UN0bAa_ko4I,13238,A young man by the name of Mestre Calango sits by the water. Calango,A young man by the name of Mestre Calango sits by the water.,Calango,gold,\"plays various drums, then waves onto the gym floor.\",wins the match in the center.,starts performing by the water on the pier.,is placed on the plain.\n5216,anetv_UN0bAa_ko4I,13240,\"He goes to the beach, takes his shirt and shoes off and performs some more. Credits\",\"He goes to the beach, takes his shirt and shoes off and performs some more.\",Credits,gold,overlay a black screen.,of the graveyard is shown.,fly shown in the background again.,go sailing in the water.\n5217,anetv_UN0bAa_ko4I,9770,He then takes his shirt and shoes off and dances on the beach and grass. A passerby,He then takes his shirt and shoes off and dances on the beach and grass.,A passerby,gold,is shown in the distance of a man only standing in front of them.,speaks to him on the pier.,is being shown by the host.,replay of his performance followed by several men being interviewed.\n5218,anetv_UN0bAa_ko4I,9766,\"A view of the Oakland, California waterfront is shown. Mestre Calango\",\"A view of the Oakland, California waterfront is shown.\",Mestre Calango,gold,is sitting on concrete near the water.,is crossing the swanky urban.,pulls a handle at a horse.,newspapers are displayed in a mirror while several man in white playing drums are shown.\n5219,lsmdc1045_An_education-90044,2913,\"Someone smiles to herself as she listens. Later, everyone\",Someone smiles to herself as she listens.,\"Later, everyone\",gold,looks at each other.,files out at the concert hall.,spots someone at random dusky boxes at the table.,walks away from the modest motel.\n5220,lsmdc1045_An_education-90044,2914,\"Later, everyone files out at the concert hall. They\",\"Later, everyone files out at the concert hall.\",They,gold,walked to the night club.,stick it in a hand.,stroll through the entire house.,sit into a swing.\n5221,lsmdc1045_An_education-90044,2912,People listened rapt attention to the concert. Someone,People listened rapt attention to the concert.,Someone,gold,\", at his hospital desk, stares after someone and the monitor.\",looks unimpressed and sleepy.,shifts his gaze as he hops over a folding table top.,slaps conversation with the baby as she goes in.\n5222,anetv_poERMbR_nY4,4564,People slides on inflatable sleds down the hill. People,People slides on inflatable sleds down the hill.,People,gold,are seen teenagers with one another.,take turns to sled down the hills.,stick out through the boardwalk.,are guiding the dirt down a mountain and turning back minas alley.\n5223,anetv_poERMbR_nY4,4566,\"Then people get together to sled on group. Also, people\",Then people get together to sled on group.,\"Also, people\",gold,are seen riding a small boat with some oars in their hands.,raft down the slopes of the creek.,do motocross together and ride them on a large road.,sled on on a line down the hill.\n5224,anetv_poERMbR_nY4,4565,People take turns to sled down the hills. Then people,People take turns to sled down the hills.,Then people,gold,backflip indoors with the frisbees.,\"are riding bikes, doing different tricks while climbing up safety strap.\",get together to sled on group.,climb up a ladder together.\n5225,anetv_Koxtbgzexmw,16704,The shirtless player returns the serve and the boy with the t - shirt misses the ball and has to pick it up and throw it to the other player for a re - serve. The two,The shirtless player returns the serve and the boy with the t - shirt misses the ball and has to pick it up and throw it to the other player for a re - serve.,The two,gold,referees them and play the game show ball back and forth by doing small demonstrations and flexing it.,begin playing again while the boy in the middle on the sidelines observes the game.,continue to separate what they'll need to start the game.,continue fighting as they cover with others with the poles close behind them.\n5226,anetv_Koxtbgzexmw,16703,A boy in a t shirt with a wing graphic on it hits the ball towards the other shirtless player. The shirtless player returns the serve and the boy with the t - shirt,A boy in a t shirt with a wing graphic on it hits the ball towards the other shirtless player.,The shirtless player returns the serve and the boy with the t - shirt,gold,score the coach shirt is next to a bowling ball.,watches the shirtless player holding a ball to defenders.,misses the ball and has to pick it up and throw it to the other player for a re - serve.,is hit and cheered by a guy who holds the ball and hits with the ball.\n5227,anetv_Koxtbgzexmw,16702,Two boys play ping pong across a large ping pong table outdoors while a third boy watches from the sidelines. A boy in a t shirt with a wing graphic on it,Two boys play ping pong across a large ping pong table outdoors while a third boy watches from the sidelines.,A boy in a t shirt with a wing graphic on it,gold,hits the ball towards the other shirtless player.,\"takes the boys hand, while the boy goes along by bowling bowling balls.\",brings the other man up to throw smoking action.,rushes a shot straight into the goal.\n5228,anetv_YYUm4o1aDmY,10399,\"Then, the woman put on a foot and tie the shoe behind the tongue. Then, the person put the other feet and tie the shoe, then she\",\"Then, the woman put on a foot and tie the shoe behind the tongue.\",\"Then, the person put the other feet and tie the shoe, then she\",gold,dry the liquid.,puts on the shoes.,puts the tongues up.,ties her legs in the gym and walks off and ties the shoes with her feet.\n5229,anetv_YYUm4o1aDmY,10398,\"A woman untie a pair of shoes until half and raise the tongues. Then, the woman\",A woman untie a pair of shoes until half and raise the tongues.,\"Then, the woman\",gold,put on a foot and tie the shoe behind the tongue.,demonstrates riding yoga moves in fast dances.,climbs out of the falling carriage and then begins to move around a gym.,demonstrates how to properly get a piercing.\n5230,anetv_ddLFSNa3ci0,17991,A man kneels down with a blue bucket in front of him. Cactus plants,A man kneels down with a blue bucket in front of him.,Cactus plants,gold,are planted in soil.,are shown inside the bristol with some obstacles.,are touching the flower on the store.,bloom on the canvas.\n5231,anetv_ddLFSNa3ci0,882,\"A man is talking in a garden, walking with a blue bucket. He\",\"A man is talking in a garden, walking with a blue bucket.\",He,gold,uses a machete in the hedge of the woods.,continues trimming along the board in a wooded area.,crouches down next to potted plants.,is filling a bucket and rocks in a pond.\n5232,anetv_ddLFSNa3ci0,17992,Cactus plants are planted in soil. A man,Cactus plants are planted in soil.,A man,gold,spreads mulch around the plant.,comes up and presents boxes for gifts.,has placed the bike over a garbage can and is smoothing it evenly down the road.,joins it and puts it on a smaller one while eating it.\n5233,anetv_wZZUcxhISyE,10275,\"Her little girl shoves a vanilla ice cream cone in her face and laughs. The girl continues doing it, and the woman\",Her little girl shoves a vanilla ice cream cone in her face and laughs.,\"The girl continues doing it, and the woman\",gold,\"kneels at the end and gives the six more food, knocking each other to the floor.\",has to wipes her mouth and nose several times.,starts to walk and talks.,smiles at the camera.\n5234,anetv_wZZUcxhISyE,10274,A woman is sitting in a booth. Her little girl,A woman is sitting in a booth.,Her little girl,gold,is standing on a section of him dancing.,is standing in front of a black eating cake.,is standing in front of his car.,shoves a vanilla ice cream cone in her face and laughs.\n5235,anetv_V3dTp7_NyiE,15653,A man is working outside in a garden. He,A man is working outside in a garden.,He,gold,is scrubs the luggage together in a cart.,is shoveling the snow onto his bike.,uses trimmers to cut pieces of a plant.,is pressing a body of white wall towels onto the concrete wall.\n5236,anetv_moMisK3nGuY,16021,Woman is standing next to a horse holding a brush combing the horse's hair. litle kid,Woman is standing next to a horse holding a brush combing the horse's hair.,litle kid,gold,is combing her hair with curly blue hair.,is talking in front of a mirror.,is grooming a horse with a fur on the horse mounts and its a horse.,is caressing the horse.\n5237,anetv_moMisK3nGuY,16022,Litle kid is caressing the horse. woman,Litle kid is caressing the horse.,woman,gold,is standing next to a playground.,is walking around the room knitting.,is sitting on a blue talking.,walks to the track.\n5238,anetv_X1E7i3ocxKY,16440,An array of tattoo choices are shown on a wall. An artist,An array of tattoo choices are shown on a wall.,An artist,gold,works a end to a woman's nails.,is seen writing down on a stone and begins painting the nails.,is shown drawing and coloring in tattoos on a piece of paper.,picks up someone's bible.\n5239,anetv_X1E7i3ocxKY,16439,A tattoo parlor is shown from the outside then inside. An array of tattoo choices,A tattoo parlor is shown from the outside then inside.,An array of tattoo choices,gold,appears with a person seated on the center of the sea.,is gathered by judges and bullfighters visible under a grey flag.,are shown on a wall.,are shown in a mirror.\n5240,anetv_P7kSJ8SRNHQ,3993,A small child is seen sitting in a swing. The child,A small child is seen sitting in a swing.,The child,gold,moves itself along on the swings while looking to the object to the camera.,continues playing with the dog.,dances back and fourth while others watch on the sidelines.,moves back and fourth on the swing while a laughing.\n5241,anetv_P7kSJ8SRNHQ,3994,The child moves back and fourth on the swing while a laughing. A person's hand,The child moves back and fourth on the swing while a laughing.,A person's hand,gold,is seen pushing the child as she moves back and fourth.,goes in close to the child as the other child moves for more.,is seen blowing the leaves around the yard and ends by smiling to the camera.,comes pushing the couple across monkey bars while another performs last tricks.\n5242,lsmdc1019_Confessions_Of_A_Shopaholic-80609,19595,She looks awestruck as women try on clothes. She,She looks awestruck as women try on clothes.,She,gold,aims his gun at her.,raises a large sword out of his hand.,watches a woman pay with a credit card.,elbows off as he sings with her kisses.\n5243,lsmdc1019_Confessions_Of_A_Shopaholic-80609,19592,\"In a store, teenage girls try on funky shoes. Nearby, a little girl\",\"In a store, teenage girls try on funky shoes.\",\"Nearby, a little girl\",gold,enters 10 barefoot suits on a diving board.,\"tries on dull, brown shoes.\",skates up and bob from another young.,pretends to sit - in half with their daughter in their arms.\n5244,lsmdc1019_Confessions_Of_A_Shopaholic-80609,19593,\"Nearby, a little girl tries on dull, brown shoes. Her mom\",\"Nearby, a little girl tries on dull, brown shoes.\",Her mom,gold,bends down and kisses someone down.,leads her down the street.,comes a coffee and takes her shot.,tightens her hair shut and chuckles to herself.\n5245,lsmdc3029_GREEN_ZONE-13771,16981,As he stares at his imposing superior. Someone,As he stares at his imposing superior.,Someone,gold,brushes off his jacket.,nods him toward the door.,\"steps toward him, shaking his curious hips.\",hands someone a sweet fire.\n5246,lsmdc3029_GREEN_ZONE-13771,16982,\"The American looks to someone. Outside, someone and his men\",The American looks to someone.,\"Outside, someone and his men\",gold,climb a sunny waterfall.,watch someone striding past the debris pit.,advance down an alley.,arrive at another party.\n5247,lsmdc3029_GREEN_ZONE-13771,16983,The night sky camouflages his shadowy form. The two officers,The night sky camouflages his shadowy form.,The two officers,gold,\"walk away on either side, before another house is seen.\",stare intently at each other.,\"leans forward, holding out his hand.\",peer around the boat.\n5248,anetv_Gxjfc5O6AAc,7522,Various still images of a man's hair are shown. A man,Various still images of a man's hair are shown.,A man,gold,is shown receiving a hair cut and styling in sped up time.,is shaving his beard and razor.,opens the blue door again and steps closely.,appears on the screen and locks eyes with a man sands down the cane on the icy floor.\n5249,anetv_y-HkIwa-jWM,1259,A woman runs in front of the base with the ball and the man trips over her. He,A woman runs in front of the base with the ball and the man trips over her.,He,gold,sets up while doing two throw before doing it again.,helps her up as they both.,falls onto the floor until he catches it under the floor.,spins around on the bars.\n5250,anetv_y-HkIwa-jWM,1258,An older man passes a ball to a group of small kids and eventually kicks the ball. The man,An older man passes a ball to a group of small kids and eventually kicks the ball.,The man,gold,holds a ball and walks to another player throwing a more ball.,\"on one of the court stops, the man helps a player hit the ball.\",ends and the boys continue pink.,runs as other kids run and runs all the way to home plate.\n5251,anetv_ktfxYSZjJyM,5090,Woman is in a lake windsurfing with a red windsurf. other people,Woman is in a lake windsurfing with a red windsurf.,other people,gold,are on display at the white scotch woman.,float around in the streets.,are standing behind them watching watching.,are in the back windsurfing in the lake.\n5252,anetv_ktfxYSZjJyM,5091,Other people are in the back windsurfing in the lake. sailboat,Other people are in the back windsurfing in the lake.,sailboat,gold,has the medals on both of them.,\"is the opposite one, trying to cook for the boats.\",are doing tricks in the lake in competition for a long time.,is standing in the back of people windsurfing.\n5253,anetv_hYAE418i-ZY,17046,Several clips are shown of men getting a hair cut followed by a man speaking to the camera. The man then,Several clips are shown of men getting a hair cut followed by a man speaking to the camera.,The man then,gold,begins cutting the hair of a man sitting in a chair.,speaks into a pasta followed by the man sitting down drinking back.,speaks into the camera with more scenes of him laying on the shuffleboard.,begins playing the instrument while spinning and spinning around and speaking to the people.\n5254,anetv_hYAE418i-ZY,5034,\"Then, the man cuts the hair on top the head with scissors helped with a comb. After, the man\",\"Then, the man cuts the hair on top the head with scissors helped with a comb.\",\"After, the man\",gold,sprays the hair and cuts the ends of the hair.,talks and adds a electric comb and spray play on the surface of it.,outside his hair stands up and talks to the camera.,does most of his hair with a comb.\n5255,anetv_hYAE418i-ZY,17047,The man then begins cutting the hair of a man sitting in a chair. The man,The man then begins cutting the hair of a man sitting in a chair.,The man,gold,continues to cut and style his hair while showing it to the camera in the end.,takes two measures and cuts them off as well.,continues cutting the hair and showing off the braiding hair.,begins curling and cutting of his hair like a model.\n5256,anetv_hYAE418i-ZY,5033,\"A man cuts the hair of a male using a shaver machine, the man shaves the back and sides of the head leaving the hair on top. Then, the man\",\"A man cuts the hair of a male using a shaver machine, the man shaves the back and sides of the head leaving the hair on top.\",\"Then, the man\",gold,continues getting roller and laughing in the mirror.,cuts the hair on top the head with scissors helped with a comb.,hits the lens with his hands and talk a second time.,shows the shears to remove the wallpaper one more time.\n5257,anetv_hYAE418i-ZY,5035,\"After, the man sprays the hair and cuts the ends of the hair. Next, the man\",\"After, the man sprays the hair and cuts the ends of the hair.\",\"Next, the man\",gold,pushes the cat some paint with a brush.,shows his hair and puts - product back in a chair and shows off the process.,jogs to style the hair and proceeds to show the excess item the person throw.,\"rubs his hands with cream and give form to the hair, also sprays the hair.\"\n5258,anetv_N7kI8J6vfL8,14214,Girls are going down a small red slide. A man in a red shirt,Girls are going down a small red slide.,A man in a red shirt,gold,is standing in front of a gray cooler.,swings the kid in and gets into the air while doing the jump.,is standing behind them.,walks along behind them.\n5259,anetv_N7kI8J6vfL8,14215,A man in a red shirt is standing behind them. He,A man in a red shirt is standing behind them.,He,gold,looks forward taking the weight off the floor.,walks away towards the house.,swings his wrists down on the violin.,starts playing the saxophone.\n5260,anetv_EpLRCz5dwb0,10683,A woman starts running down a track. She,A woman starts running down a track.,She,gold,throws a javelin onto the field.,does the same stance in front of as others join in behind them.,spins the woman around.,does a gymnastics routine on the uneven bars.\n5261,anetv_EpLRCz5dwb0,10684,She throws a javelin onto the field. She,She throws a javelin onto the field.,She,gold,jumps up out on the stage.,walks away and catches herself.,hops on the floor and lands on the ground.,gives someone behind her a high five.\n5262,lsmdc3069_THE_BOUNTY_HUNTER-4887,18271,\"Someone bashes the pick - up and takes aim. As they speed forward, shoving against each other, someone\",Someone bashes the pick - up and takes aim.,\"As they speed forward, shoving against each other, someone\",gold,jogs over to someone with her arms raised in line.,takes off his jacket.,spots an suv headed straight for the thug's vehicle.,fumbles around to his swarthy valet and follows a white car which he gets out.\n5263,lsmdc3069_THE_BOUNTY_HUNTER-4887,18277,\"Nearing he vehicle, someone slows and aims his gun. His assailant\",\"Nearing he vehicle, someone slows and aims his gun.\",His assailant,gold,hits the ball near the shoulder.,turns the heavy gears and headlights.,\"gets to his feet, using the pick - up as cover.\",follows someone as he pass.\n5264,lsmdc3069_THE_BOUNTY_HUNTER-4887,18282,\"She clutches her door's broken - off inner panel. On the one way street, the thug\",She clutches her door's broken - off inner panel.,\"On the one way street, the thug\",gold,\"yanks a woman from her mini - van, gets in, and speeds off.\",puts it behind the baby's back.,knocks on his glass door.,beats someone through the door.\n5265,lsmdc3069_THE_BOUNTY_HUNTER-4887,18273,\"Swerving, the chiseled man bursts through construction barricades then ramps up a stack of barricades and launches into mid - air. Reaching a grassy field, it\",\"Swerving, the chiseled man bursts through construction barricades then ramps up a stack of barricades and launches into mid - air.\",\"Reaching a grassy field, it\",gold,scurries up a quiet path.,spots a sign bordering the brick store.,tumbles onto its side.,dunks an empty concrete barrier in the center.\n5266,lsmdc3069_THE_BOUNTY_HUNTER-4887,18276,\"As someone jogs toward the luxury pick - up, the thug wriggles out through a window on the other side. Nearing he vehicle, someone\",\"As someone jogs toward the luxury pick - up, the thug wriggles out through a window on the other side.\",\"Nearing he vehicle, someone\",gold,shoves him through someone's passage.,slows and aims his gun.,pulls into the car.,jots on his scrap of paper.\n5267,lsmdc3069_THE_BOUNTY_HUNTER-4887,18278,\"His assailant gets to his feet, using the pick - up as cover. The bounty hunter ventures toward the vehicles tail - end and the thug\",\"His assailant gets to his feet, using the pick - up as cover.\",The bounty hunter ventures toward the vehicles tail - end and the thug,gold,opens the windshield revealing a card called the stolen property.,launches out the battle with another boot.,blows tape around his horse.,edges around its front.\n5268,lsmdc3069_THE_BOUNTY_HUNTER-4887,18279,The bounty hunter ventures toward the vehicles tail - end and the thug edges around its front. Someone,The bounty hunter ventures toward the vehicles tail - end and the thug edges around its front.,Someone,gold,see a remaining drone's go with their wands.,grabs onto it and waves from her as she hurries out of view.,arrives on the other side and finds no sign of the gunman.,shuffles a high - hearted gait then shuts the door behind him.\n5269,lsmdc3069_THE_BOUNTY_HUNTER-4887,18272,\"As they speed forward, shoving against each other, someone spots an suv headed straight for the thug's vehicle. Swerving, the chiseled man\",\"As they speed forward, shoving against each other, someone spots an suv headed straight for the thug's vehicle.\",\"Swerving, the chiseled man\",gold,waves to the drip driver and watches him cross over the fence behind the wheel.,bursts through construction barricades then ramps up a stack of barricades and launches into mid - air.,swerves then rotate their arms after it.,\"in back turns, looking away but someone's back at his side.\"\n5270,lsmdc3069_THE_BOUNTY_HUNTER-4887,18274,She wrenches her cuffed arm. He,She wrenches her cuffed arm.,He,gold,hauls himself onto the teen bars.,gets out and surveys the damage.,rips the windscreen sticker from her mouth.,forces her toward the goal.\n5271,anetv_9-yueOtwiL8,8217,A man is in a racetrack doing a shot put with a lot of people around him watching him. man,A man is in a racetrack doing a shot put with a lot of people around him watching him.,man,gold,is in a practicing field practicing a shot put on sunny day.,is standing with his car pulled in a parking lot.,is running down a long track and talking about the board in time to land.,is in the street on the stilts and is talking again in slow motion.\n5272,anetv_9-yueOtwiL8,8216,Man is standing inside a court practicing a shot put. a man,Man is standing inside a court practicing a shot put.,a man,gold,is also seen hit the shrub with a stick and is almost leaning on it too.,hits the ball in the pool.,is on a tennis court installing wooden planks on the floor in front of him.,is in a racetrack doing a shot put with a lot of people around him watching him.\n5273,anetv_9-yueOtwiL8,16432,A man is standing behind a fence practicing with a heavy ball on his shoulder. Several men,A man is standing behind a fence practicing with a heavy ball on his shoulder.,Several men,gold,are shown in various throwing sports.,are kneeling down on a sandy floor while eating him.,are indoors chasing a ball on the field.,are running around trying to stop the ball.\n5274,anetv_-HZtgP41I_o,12504,Three men drop shoes on the ground and puts them on. A fourth man,Three men drop shoes on the ground and puts them on.,A fourth man,gold,takes a picture of a man lying down with a shovel.,talks to the three men while holding a pair of shoes.,adjusts their safety while stepping cautiously then turns away.,prepares and stops before putting his coat on.\n5275,anetv_-HZtgP41I_o,12505,A fourth man talks to the three men while holding a pair of shoes. The fourth man,A fourth man talks to the three men while holding a pair of shoes.,The fourth man,gold,faces the man as he inspects the plaster.,pulls the substance from the handle reaching out behind him.,bends down and turns the weight over his shoulder.,talks to the camera while demonstrating how to wear and remove shoes.\n5276,anetv_-HZtgP41I_o,3317,Men are standing in the entrance of a house taking off the shoes and talknig to another man. man,Men are standing in the entrance of a house taking off the shoes and talknig to another man.,man,gold,splashes a small screen with a black woman and gives them an interview on the right.,\"is diving in the chair in front of a building and camera over the wall, by and pictures of men on sofas inside the\",kneel down and put a flip flops.,holds a paint bottle to the barber cuts the paper on the hair.\n5277,anetv_-HZtgP41I_o,12506,The fourth man talks to the camera while demonstrating how to wear and remove shoes. A new man,The fourth man talks to the camera while demonstrating how to wear and remove shoes.,A new man,gold,walks through the middle of the camera frame.,squirts the second minister into a tennis bag to use it.,walks to the wall of a ladder and begins adjusting a rack where exterior laundry paints.,sweeps the same pants being clipped while speaking again.\n5278,anetv_-HZtgP41I_o,3318,Man kneel down and put a flip flops. a big paragraph,Man kneel down and put a flip flops.,a big paragraph,gold,pulls it up to the docks.,is nine in the screen.,appears to be a coyly painted mustache.,is shown on screen.\n5279,anetv_5yrLDF_ZmN0,9470,They are instructing on proper methods of using their equipment. The diver on the left gives their mask to the diver on the right and he,They are instructing on proper methods of using their equipment.,The diver on the left gives their mask to the diver on the right and he,gold,takes two deep breaths and returns the mask to the diver on the right.,stands before the ceiling like a large portion of the body.,turns their headlights to the left before leaving her.,is talking while holding the wand in both hands and using both hands.\n5280,anetv_5yrLDF_ZmN0,11293,A couple is scuba diving under water in a pool. They,A couple is scuba diving under water in a pool.,They,gold,are playing squash in a rink room talking to the camera.,run into rafts in the water.,continue to dance with one another.,pat each other and communicate with their hands.\n5281,anetv_5yrLDF_ZmN0,11294,They pat each other and communicate with their hands. They,They pat each other and communicate with their hands.,They,gold,are showing how to scuba dive together.,jog through the forest.,head off the other side.,\"hurry down the hall, joining men into a square.\"\n5282,anetv_5yrLDF_ZmN0,9472,She also takes two breaths and gives the mask back over to the diver on the right. They do this roughly two more times between them and they,She also takes two breaths and gives the mask back over to the diver on the right.,They do this roughly two more times between them and they,gold,drive out to the front time.,show all about herself.,start to swim off which continuing to share the breathing mask until the camera fades to black.,end with shutters and tumbling.\n5283,anetv_5yrLDF_ZmN0,9471,The diver on the left gives their mask to the diver on the right and he takes two deep breaths and returns the mask to the diver on the right. She also,The diver on the left gives their mask to the diver on the right and he takes two deep breaths and returns the mask to the diver on the right.,She also,gold,hold his legs together and clap.,takes two breaths and gives the mask back over to the diver on the right.,throws the ball back.,spins and takes a brief pause before pausing and continue drinking.\n5284,anetv_DG9-yffcXS4,6459,Another man assists him by putting newer bars into the window as well as cutting the boards so they fit. In the end the camera,Another man assists him by putting newer bars into the window as well as cutting the boards so they fit.,In the end the camera,gold,puts back at the opening screen and nice look of added.,returns to an image of the young wrestler who brings them up and then both try to make contact.,can be seen seen walking down and shortly afterwards he is shown again in various locations doing various things at the camera.,pans around the new roof showing off it's great results.\n5285,anetv_DG9-yffcXS4,6458,A man is seen pulling shades off of a window and removing the bars around the sides. Another man,A man is seen pulling shades off of a window and removing the bars around the sides.,Another man,gold,is seen holding a rifle up attached to him as and begins to go around on the rake.,is shown spraying the fence while holding a hose and pushing them close.,holds a box and holds him up in the air and the man lays the plaster on the side.,assists him by putting newer bars into the window as well as cutting the boards so they fit.\n5286,anetv_isGfZVCL4gE,9736,A boy irons a pair of boxes on an ironing board. The boy,A boy irons a pair of boxes on an ironing board.,The boy,gold,places a second black shirt on the peg.,holds a rubber cloth to make a turn and put a shoe on his uniform.,leaves and return with a pan of food.,put in a cloth and replace the tie.\n5287,anetv_isGfZVCL4gE,11942,He is using an iron to iron a piece of clothing. He,He is using an iron to iron a piece of clothing.,He,gold,is how to iron the dry bread.,runs out to the basement room.,shows how to push the button to release the steam.,holds the rubber and spreads it onto the tree when he is folding.\n5288,anetv_isGfZVCL4gE,9737,The boy leaves and return with a pan of food. The boy,The boy leaves and return with a pan of food.,The boy,gold,peels dishes from the photographs.,returns with a spoon and eats some of the pan of food.,takes an egg and scoops mango from the bowl.,kneels down on the floor and begins hanging flower.\n5289,anetv_isGfZVCL4gE,11941,A boy is standing inside a kitchen. He,A boy is standing inside a kitchen.,He,gold,is playing bag pipes on a sidewalk.,is playing a toy game on a trolley.,is speaking with a large mug of olive oil.,is using an iron to iron a piece of clothing.\n5290,anetv_isGfZVCL4gE,9740,The boy plants his face into the pan of food. The boy,The boy plants his face into the pan of food.,The boy,gold,has presented a glass of red wine.,jumps up on the bed.,shakes a blue bottle in his hand then puts them on the table.,\"eats more, then covers the pan of food with foil, and take it away.\"\n5291,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5990,Someone is still waiting in the doorway to his office. Someone,Someone is still waiting in the doorway to his office.,Someone,gold,closes her dripping eyes.,reaches out to meet him.,runs over to someone.,\"enters the bedroom, and sees the sink above.\"\n5292,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5980,\"She reaches up and kisses him on the cheek, leaving lipstick. Someone\",\"She reaches up and kisses him on the cheek, leaving lipstick.\",Someone,gold,puts down the phone and checks the display.,opens the door for her.,kisses him on the lips with a firm grip.,gives her a smile and returns.\n5293,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5988,\"He goes directly to the safe and starts searching, but does n't find the money. Then he\",\"He goes directly to the safe and starts searching, but does n't find the money.\",Then he,gold,raises his hands in reply.,\"goes to the cash drawer in the counter, and looks through it.\",grab various oil and stirs the empties into a swimming pot with unit one hand.,\"looks thoughtfully at the door wistfully, as his owner goes back to business the mail.\"\n5294,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5979,\"She looks at him, then says a strange thing. She\",\"She looks at him, then says a strange thing.\",She,gold,gestures all someone what to do.,\"reaches up and kisses him on the cheek, leaving lipstick.\",follows the girl up the stairs.,sees someone in someone's house.\n5295,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5984,\"As someone opens the door he sees someone frantically looking for the missing envelope. The office is in a mess, drawers are opened, and papers\",As someone opens the door he sees someone frantically looking for the missing envelope.,\"The office is in a mess, drawers are opened, and papers\",gold,are strewn over ditches and shades.,are displayed on the walls while someone casts a spell.,are screaming as the video fades to black.,scattered on the floor and on the desk.\n5296,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5989,\"Then he goes to the cash drawer in the counter, and looks through it. Someone\",\"Then he goes to the cash drawer in the counter, and looks through it.\",Someone,gold,\"licks his lips, then glances nervously at them.\",is still waiting in the doorway to his office.,joins the frat kid.,throws back at someone and fixes the cue.\n5297,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5992,They pause for a moment on the sidewalk. They,They pause for a moment on the sidewalk.,They,gold,continue on down the street on their search.,toss back onto the table.,try to turn and turn.,run into an elevator.\n5298,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5981,\"Someone opens the door for her. As people come through the door, they\",Someone opens the door for her.,\"As people come through the door, they\",gold,sit to stare at the floor.,runs to someone's old house and hurls a half - pints of coffee in someone's direction.,\"watch the video: missing a couple, jumping up, holding the wedding ceremony, and waits.\",\"are being watched by people and the bank examiner, who is still waiting to go to work on the books.\"\n5299,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5987,Suddenly the door opens and someone comes striding out. He,Suddenly the door opens and someone comes striding out.,He,gold,\"goes directly to the safe and starts searching, but does n't find the money.\",\"rushes over, frees himself from the window.\",peeking in.,\"pads towards someone, and hesitates for a second time.\"\n5300,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5993,They continue on down the street on their search. Someone,They continue on down the street on their search.,Someone,gold,gazes up at a trunk camera.,\"is peering through the slats of the venetian blind, watching them as they go.\",peers hoodies from the back seat.,has moved the plates.\n5301,lsmdc0014_Ist_das_Leben_nicht_schoen-54851,5991,\"People are retracing the former's steps through the snow, looking everywhere for the missing money. They\",\"People are retracing the former's steps through the snow, looking everywhere for the missing money.\",They,gold,take out the mouthwash and drink it.,spy on the potatoes.,\"cross the plaza while someone's father family on the terrace, many running.\",pause for a moment on the sidewalk.\n5302,lsmdc1047_Defiance-91867,15936,\"Someone, clutching a slender tree branch, his body position dazed, watches a bomber fly across the sky about to drop another bomb. Someone\",\"Someone, clutching a slender tree branch, his body position dazed, watches a bomber fly across the sky about to drop another bomb.\",Someone,gold,reaches halfway round someone's neck steer him backwards.,runs through binoculars and handbag on someone.,just stopped and walks before the ship's visor.,\"appears out of the haze, pulls him towards a shelter.\"\n5303,lsmdc1047_Defiance-91867,15934,\"As he groggily struggles to raise his head, his blue eyes seem dazed. In slow motion, a man\",\"As he groggily struggles to raise his head, his blue eyes seem dazed.\",\"In slow motion, a man\",gold,pulls up at a laptop and pulls up inside the warehouse.,runs through the trees amid the dust and flames.,leaps over the side frame.,kicks someone in the face as his opponent releases someone.\n5304,lsmdc1047_Defiance-91867,15937,\"Someone appears out of the haze, pulls him towards a shelter. Someone\",\"Someone appears out of the haze, pulls him towards a shelter.\",Someone,gold,turns as he takes the huge horn off in the train.,\"looks at them, then in his office.\",sets something in a tube.,arrives at the same moment.\n5305,lsmdc1047_Defiance-91867,15939,\"The survivors run through the trees, some carrying bundles, others armed with rifles. He and someone\",\"The survivors run through the trees, some carrying bundles, others armed with rifles.\",He and someone,gold,step out of the closing door.,take up gun positions behind a bunker.,approach a huge crystal chandelier and rise through the crack in the ghetto.,\"watch ropes on the rooftops, as they step up the set.\"\n5306,lsmdc1047_Defiance-91867,15940,\"He watches his young wife being urged away. His nose bleeding, someone\",He watches his young wife being urged away.,\"His nose bleeding, someone\",gold,looks up to the window and heads off.,ties himself up and raises his cell.,walks away from the burning remains of the camp.,manages a wounded nod.\n5307,lsmdc1047_Defiance-91867,15935,\"In slow motion, a man runs through the trees amid the dust and flames. Someone, clutching a slender tree branch, his body position dazed,\",\"In slow motion, a man runs through the trees amid the dust and flames.\",\"Someone, clutching a slender tree branch, his body position dazed,\",gold,watches a bomber fly across the sky about to drop another bomb.,swerves out of a chain object.,glued to the restraints.,slumps forward and follows his watch.\n5308,anetv_s3EHHOAkQYE,9049,The driver hands people water on the side as well as pulling them in to fix a bike. The car,The driver hands people water on the side as well as pulling them in to fix a bike.,The car,gold,drives a lot of different but first to the one behind the van and lets the tire crash around to finish.,continues to follow and help the man as well as stopping to change a wheel and climbing back in the car.,is successful and the men move past a member of the man to get by.,is moving several more times faster and the machine quickly rides along towing the cars.\n5309,anetv_ZXm8ed-ZHRs,10107,A woman is seen speaking in the middle of a large gymnasium and leads into several different gymnasts performing one after the another on uneven bars. The gymnasts,A woman is seen speaking in the middle of a large gymnasium and leads into several different gymnasts performing one after the another on uneven bars.,The gymnasts,gold,performs a yellow beam on a mat and several jumping ups.,begins flipping through the bars without performing a gymnastics routine and finally jumping off balance.,continue to move all around the bars and ends with one girl going over and over and everyone waving in the end.,flips and turned the other man to look into her surrounded from various angles and many angles.\n5310,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3725,\"The tall windows show a fog - enshrouded city outside, as they cross the room. Her feature\",\"The tall windows show a fog - enshrouded city outside, as they cross the room.\",Her feature,gold,ends with someone sitting in a wheelchair.,'s out of focus.,\"looks up as she paws, someone and someone.\",shows someone sculptures at a training hoop as she descends into the pool.\n5311,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3727,Our view sharpens to reveal someone's brunette companion. She,Our view sharpens to reveal someone's brunette companion.,She,gold,wears a pale blouse and skirt.,points her long finger at him.,\"turns to someone, a twinkle in his eye.\",\"watches the tiger in with a broad smile, then gazes toward the beast.\"\n5312,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3714,Someone heaves a regretful sigh and shakes his head as someone eavesdrops unnoticed. Someone,Someone heaves a regretful sigh and shakes his head as someone eavesdrops unnoticed.,Someone,gold,closes another table and sets the penguin in front of someone.,steps out to her someone.,\"looks over at the boy, his hair blows to her face.\",\"blinks thoughtfully, then rejoins the older men.\"\n5313,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3718,\"Now, he swipes an employee key card in an elevator's control panel. As the door slides shut, someone\",\"Now, he swipes an employee key card in an elevator's control panel.\",\"As the door slides shut, someone\",gold,answers someone's hand.,digs in his bag and retrieves a shotgun with cartridges stored along the barrel.,presses the van to her ear.,\"stands wide in half, staring at the van's door, and nods to himself.\"\n5314,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3728,\"With a loving smile, he meets her halfway. Embracing, they\",\"With a loving smile, he meets her halfway.\",\"Embracing, they\",gold,hide under the hotel lobby.,peer over the urns.,hold each other tight.,walk away from the house.\n5315,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3719,\"As the door slides shut, someone digs in his bag and retrieves a shotgun with cartridges stored along the barrel. He\",\"As the door slides shut, someone digs in his bag and retrieves a shotgun with cartridges stored along the barrel.\",He,gold,\"aims it on the package, then drops it on his nose.\",\"scans half - the plastic half, with the gun on the nightstand.\",brings a roll of vodka onto the computer.,\"hands it off to his father, then readies an assault rifle for use.\"\n5316,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3717,\"Someone pays off the worker and beckons his companion. Now, he\",Someone pays off the worker and beckons his companion.,\"Now, he\",gold,\"glances at the opposite windows, stains lays the trunk of the car.\",arrives at a bicycle standing around his boss.,swipes an employee key card in an elevator's control panel.,draws upright from the butter.\n5317,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3729,\"His eyes wide, someone turns his head to face his father. Staying close to her father, someone\",\"His eyes wide, someone turns his head to face his father.\",\"Staying close to her father, someone\",gold,wipes his mouth then wipes off his tears.,struts to her friend.,notices the girl with a bewildered vulnerable gaze.,looms in front of the oblivious someone.\n5318,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3722,\"Sparkling chandeliers hang from both the ceiling and wooden storage carts on the floor. At the far end of the room, a threshold\",Sparkling chandeliers hang from both the ceiling and wooden storage carts on the floor.,\"At the far end of the room, a threshold\",gold,shows the three men venturing through a pair of tall glass doors.,lies upon a floor.,is cleaned with marble.,lies beneath the bed.\n5319,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3716,The agent retrieves his bag and leads them onward. Someone,The agent retrieves his bag and leads them onward.,Someone,gold,\"drags him down the rubble, his arms folded behind his back.\",keeps an eye on their surroundings.,does more dodge - take.,follows him into an office.\n5320,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3723,\"At the far end of the room, a threshold shows the three men venturing through a pair of tall glass doors. They\",\"At the far end of the room, a threshold shows the three men venturing through a pair of tall glass doors.\",They,gold,\"peers into the elevator, leaving a heavy - duty, flat - duty note cam in the doorway.\",tiled hall is served in a small quaint troop home.,cross a brief red - carpeted lobby.,get into a house as the shape leaves past the hedge.\n5321,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3713,\"Returning, someone listens in. Someone\",\"Returning, someone listens in.\",Someone,gold,heaves a regretful sigh and shakes his head as someone eavesdrops unnoticed.,flings the barbell table and tyler over her head.,blinks his clenched eyes and slowly steps away.,flashes a cocky grin.\n5322,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3715,\"Someone blinks thoughtfully, then rejoins the older men. The agent\",\"Someone blinks thoughtfully, then rejoins the older men.\",The agent,gold,looks up from someone's shiny hair and nods.,puts the purse on someone's shoulder.,retrieves his bag and leads them onward.,taps a bag on someone's shoulder.\n5323,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3726,Her feature's out of focus. Our view,Her feature's out of focus.,Our view,gold,sharpens to reveal someone's brunette companion.,returns to her most exposed assailant.,flashes a view at a neighboring high above.,circles around the crowded room.\n5324,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3721,\"Now, tall windows in a stained glass ceiling allow weak sunlight into a vast deserted ballroom. Sparkling chandeliers\",\"Now, tall windows in a stained glass ceiling allow weak sunlight into a vast deserted ballroom.\",Sparkling chandeliers,gold,hang from marble layer around the movie sheets.,\"hang over the streets of the english - century bunker along houses underground, housing pews lined with factory style and stone pews.\",hang from both the ceiling and wooden storage carts on the floor.,fly over the long wall like silk merely stacks.\n5325,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3724,\"They cross a brief red - carpeted lobby. Taking point, someone\",They cross a brief red - carpeted lobby.,\"Taking point, someone\",gold,enters with a bottle of someone.,\"follows someone out, leaving someone on her lap, then extends her long fingers.\",\"cautiously scans his surroundings with his weapon ready, as he leads the others in.\",spins in a chair and stares blankly.\n5326,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2985,3720,\"He hands it off to his father, then readies an assault rifle for use. Someone\",\"He hands it off to his father, then readies an assault rifle for use.\",Someone,gold,hacks as they charge through the ring.,takes out a flying hammer launcher.,gets on and attaches the various vehicles.,\"faces someone, who lifts his brow sheepishly.\"\n5327,anetv_tzChPctqAP4,2090,Two men are seen jumping and kicking around one another performing various flips and tricks. The men,Two men are seen jumping and kicking around one another performing various flips and tricks.,The men,gold,continue doing tricks with the camera and then throwing their arms around the dog.,continue to play with one another and end by speaking to the sidelines.,continue spinning around one another as well as performing gymnastics moves in different locations.,continues to ride on the stilts and people continue to do the tricks.\n5328,anetv_TsPh4-BsCYk,10170,A woman is shown holding a shot put and talking to the camera while standing in a large gym. She,A woman is shown holding a shot put and talking to the camera while standing in a large gym.,She,gold,are then panned throughout the video in several shots in various locations with several kites and attempting tricks.,demonstrates how to properly throw the tool and performs several throws to show how it's one correctly.,is seen again using a pole to perform various flips and tricks.,does the front flip and ends by throwing the girl off the bar.\n5329,anetv_JKFxKhCQPUs,8474,\"He continues to excel in doing his moves steadily on the horse bar. After he's done, he gets off the bar and one of the coaches\",He continues to excel in doing his moves steadily on the horse bar.,\"After he's done, he gets off the bar and one of the coaches\",gold,makes him to face him and begins to shake slow and kiss.,hugs him as the crowd cheers for him.,\"breaks the rope, throws himself after the horse and walks off to the court to tallies.\",rises into the air and idle on the field.\n5330,anetv_JKFxKhCQPUs,8473,A male gymnast wearing a blue leotard is doing gymnastics on a horse bar. He,A male gymnast wearing a blue leotard is doing gymnastics on a horse bar.,He,gold,jumps to her feet and applaud.,is doing a gymnastic routine in a pole.,is performing in an indoor stadium full of spectators.,is also standing on the balance beam.\n5331,anetv_JhoGvKrhs8s,6296,A large marching band is seen standing together in front of a large building with others standing around. More shots,A large marching band is seen standing together in front of a large building with others standing around.,More shots,gold,are shown of people running around performing tricks on the ground while others watch on the sides.,are shown of the group standing around one another while the camera pans around.,show more people riding in the area during the roller set and ends with shots of people cleaning powder.,are shown of people walking around and leads into them performing tricks.\n5332,lsmdc1058_The_Damned_united-98302,18922,He waves up at the footballers on the training field. They,He waves up at the footballers on the training field.,They,gold,\"wear the chanting, arguing across losing control at the resort.\",it on her lips she tries to toss his arms in the air.,\"a letter from someone's wedding, he turns away from an archway with a black case.\",scowl down at him through the chain - link fence.\n5333,lsmdc1058_The_Damned_united-98302,18923,They scowl down at him through the chain - link fence. Someone,They scowl down at him through the chain - link fence.,Someone,gold,looks down at the destruction.,finds the obituary page from a shelf behind him.,turns back to the press.,smiles and smiles at someone.\n5334,anetv_f5xSylPY_bQ,2636,She starts playing a flute. She,She starts playing a flute.,She,gold,pushes a man down on the stage.,continues playing the flute white looking down.,reads and plays with a camera.,stops dancing and regards them as she talks.\n5335,anetv_f5xSylPY_bQ,2635,A girl is sitting down in front of a couch. She,A girl is sitting down in front of a couch.,She,gold,is wearing a pair of yellow gloves at a foot.,starts playing a flute.,walks down to a picture frame with a towel on her shoulders.,is rubbing the stain down her face.\n5336,anetv_hBT_SN8IGsQ,13675,They get into a big fight on the field. The ref,They get into a big fight on the field.,The ref,gold,hits the ball all around.,beats on the drums again.,comes and breaks the fight up.,lands on them and tries to jump.\n5337,anetv_hBT_SN8IGsQ,13676,The ref comes and breaks the fight up. A man in a yellow striped shirt,The ref comes and breaks the fight up.,A man in a yellow striped shirt,gold,is talking to the referee.,does the other round.,walks to a punch to the van and does.,runs alongside chasing and gets down on the ground.\n5338,anetv_hBT_SN8IGsQ,13674,Players on a field are running around playing a game. They,Players on a field are running around playing a game.,They,gold,run down the mats and celebrate down the field.,lob the ball back and forth across the ice.,continue to play tennis and retreat away from him.,get into a big fight on the field.\n5339,anetv_vX0xxYxGj-4,7642,Two lines of people stand over a long rope. Each line,Two lines of people stand over a long rope.,Each line,gold,picks up the rope and starts playing tug rope while a large crowd watches.,is a large track.,\"watches nothing and empty, stading or break on the walls, propelling himself through a window.\",\"breaks, the man does a line of white fingers on the slack line.\"\n5340,anetv_Z3jo5hbPo1Q,4245,\"The girl then begins her performance where she is dancing ballet and singing and when they pan to the judges and the audience they seem pleased with her performance. When the girl is done performing, she\",The girl then begins her performance where she is dancing ballet and singing and when they pan to the judges and the audience they seem pleased with her performance.,\"When the girl is done performing, she\",gold,gets a standing ovation from the audience and some of the judges.,\"continues jumping, flipping and jumping back, clapping and twirling, stops, on bows at the side.\",claps for the crowd to spin to the girl.,sings to one of the girls who is dancing across the stage and begins to press their feet up with her palms.\n5341,anetv_Z3jo5hbPo1Q,4246,\"When the girl is done performing, she gets a standing ovation from the audience and some of the judges. The judges then take turns speaking with her expressing their approval, and the girl\",\"When the girl is done performing, she gets a standing ovation from the audience and some of the judges.\",\"The judges then take turns speaking with her expressing their approval, and the girl\",gold,continues to hula around during the performance.,is very happy about it.,turns around and holds the pose.,is raising her hand to starts to move.\n5342,anetv_Z3jo5hbPo1Q,4244,A young girl is standing on a stage in front of 4 judges that are sitting along a table and they are talking to her. The girl then begins her performance where she is dancing ballet and singing and when they pan to the judges and the audience they,A young girl is standing on a stage in front of 4 judges that are sitting along a table and they are talking to her.,The girl then begins her performance where she is dancing ballet and singing and when they pan to the judges and the audience they,gold,begin and put her into the floor and.,seem pleased with her performance.,start dance to another happy and finish.,begin dancing around each other and dancing.\n5343,anetv_Z3jo5hbPo1Q,4247,\"The judges then take turns speaking with her expressing their approval, and the girl is very happy about it. The girl then runs off the stage and behind the curtains she\",\"The judges then take turns speaking with her expressing their approval, and the girl is very happy about it.\",The girl then runs off the stage and behind the curtains she,gold,leans down to make the steps in deep set of motion.,chases the girl up and plays a game.,\"gives a man who is possibly her dad, a kiss and a hug.\",is swimming pretty consecutive away.\n5344,anetv_cBCi-pOE5NQ,16435,\"He talks for a while about this, demonstrates how you would move your tongue to make sound. He\",\"He talks for a while about this, demonstrates how you would move your tongue to make sound.\",He,gold,reaches on to aftermath his out of the car.,touches the piercing some more and returns in a shadow.,blows into the sax to demonstrate a little more.,grins and swans off to speak to the camera.\n5345,anetv_cBCi-pOE5NQ,16434,A man has his sax around his neck and he is explaining about reeds and mouth pieces and how you should put your mouth on it or what nor. He,A man has his sax around his neck and he is explaining about reeds and mouth pieces and how you should put your mouth on it or what nor.,He,gold,is shown in the water for the tips of previous.,continues talking as he holds the sticks to his head and dips the lens in and out.,\"talks for a while about this, demonstrates how you would move your tongue to make sound.\",shows it to pull itself off.\n5346,anetv_cBCi-pOE5NQ,16436,He blows into the sax to demonstrate a little more. He even briefly,He blows into the sax to demonstrate a little more.,He even briefly,gold,puts his finger in mouth to try to explain a little better as well.,gives his thumbs up while laughing.,begins hitting the drums.,and speaks to the camera again.\n5347,anetv_zTzF5R_VhGk,8875,A man in glasses and beret is talking. He,A man in glasses and beret is talking.,He,gold,is shown playing a harmonica while he also plays a keyboard.,has a needle waxing his nose.,paints his face - - using a brush.,text appears on the screen.\n5348,lsmdc1046_Australia-90912,9300,Someone rides up to the house. Someone,Someone rides up to the house.,Someone,gold,comes out the back door.,throws something at the children.,helps for the truck.,is pouring snow on someone in his backyard.\n5349,anetv_F1xZKduLnWg,10449,She hugs her fellow team mates. She,She hugs her fellow team mates.,She,gold,blows a warm kiss from his finger.,\"pauses in a courtyard, parallel to the heavy ground toward them.\",holds out walkie talkies in her shoulder.,is then seen interviewing with the camera at a jousting match.\n5350,anetv_F1xZKduLnWg,10448,A woman is shaking hands and handing out medals. She,A woman is shaking hands and handing out medals.,She,gold,continues throwing her arms around and applauding.,walks in and shows how to play the violin.,speaks through her hand.,hugs her fellow team mates.\n5351,anetv_F1xZKduLnWg,9220,People are in a court room receiving awards. woman is talking to the camera and people,People are in a court room receiving awards.,woman is talking to the camera and people,gold,are running paintball in rapids.,are playing volley ping pong.,are in gym practicing fencing.,help hands preparing to run in the surgery.\n5352,lsmdc3040_JULIE_AND_JULIA-18056,10371,Someone slips the letter from the envelope as she follows someone into the apartment. She,Someone slips the letter from the envelope as she follows someone into the apartment.,She,gold,holds a book in her hand as she runs into the room with the killer.,\"sits at the small entryway table, where someone turns on a lamp, and sets down his hat.\",reaches the staircase and enters the apartment.,\"leaves the study, the door shut.\"\n5353,lsmdc3040_JULIE_AND_JULIA-18056,10370,Someone hands his wife a letter. Someone,Someone hands his wife a letter.,Someone,gold,reads through the newspaper.,pulls out a fake tooth.,slips the letter from the envelope as she follows someone into the apartment.,drags someone to the lit table.\n5354,lsmdc3063_SOUL_SURFER-31257,11495,The blonde teen stands and gives her older friend a tentative smile. Someone,The blonde teen stands and gives her older friend a tentative smile.,Someone,gold,closes the fan and watches it.,eyes someone as they enter the room.,mugs a comical frown.,\"sits in his chair, facing someone.\"\n5355,lsmdc3063_SOUL_SURFER-31257,11494,\"On another day, someone leads a youth group into an airport. The blonde teen\",\"On another day, someone leads a youth group into an airport.\",The blonde teen,gold,completes a stoic demeanor and averts his gaze.,stands and gives her older friend a tentative smile.,makes her way through the revolving doors.,wears a yellow tight white colored jacket.\n5356,lsmdc3089_XMEN_FIRST_CLASS-43427,3072,\"Now a hangar stands across an airfield. Inside, our view\",Now a hangar stands across an airfield.,\"Inside, our view\",gold,turns up as it disappear into the first eye crew.,rotates down a bright broken day - still holding the patrolman.,drifts down past the nose of a massive jet.,sweeps a beam high on the harbor.\n5357,lsmdc3089_XMEN_FIRST_CLASS-43427,3071,\"Someone shuts the lid, darkening our view. Now a hangar\",\"Someone shuts the lid, darkening our view.\",Now a hangar,gold,stands across an airfield.,touches a nearby overlook.,shows shadowy items in someone's office.,shows someone with a scanner.\n5358,lsmdc3089_XMEN_FIRST_CLASS-43427,3069,A note on one of the mansion's inner doors reads. Someone,A note on one of the mansion's inner doors reads.,Someone,gold,studies them as he feeds someone an orchid.,pulls it down and enters the lab.,glares at it as she drives away.,watches as someone steps to the edge.\n5359,lsmdc3089_XMEN_FIRST_CLASS-43427,3070,The whole team peers inside. Someone,The whole team peers inside.,Someone,gold,enters a stern restaurant.,\"shuts the lid, darkening our view.\",delivers a cat to his apartment.,floats in someone's floating boat.\n5360,anetv_-DTxZliHCTE,12767,He begins to run with the lawn mover and nearly runs into something as his friends laugh in enjoyment. One of his friends,He begins to run with the lawn mover and nearly runs into something as his friends laugh in enjoyment.,One of his friends,gold,is showing a beautiful potato.,tries to help him as he is mowing the lawn.,turns around as well and turns a ball.,jumps along with the well.\n5361,anetv_Ad9jrt2bP1o,10288,\"They take turns, running down the track. They long\",\"They take turns, running down the track.\",They long,gold,on a tight track by throwing their arms and can as well as doing the point.,\"jump and walk into the building starting to do a jump, then they stop and circle each other on a platform on the other\",ride in a field while they try to catch the tumbling they get into a moving pit.,jump into a large pit of sand.\n5362,anetv_Ad9jrt2bP1o,10287,\"Athletes gather on a track, preparing to run. They\",\"Athletes gather on a track, preparing to run.\",They,gold,jump and spin in a circle.,run down a track while surrounded by many people.,go into a landing multiple times.,\"take turns, running down the track.\"\n5363,anetv_Ad9jrt2bP1o,2431,People are seen walking around a track and sitting down. One,People are seen walking around a track and sitting down.,One,gold,man runs on his pole and stands up and hits him in the face.,presents a lift while another person watches their movements.,continues laughing with one another while spinning around in his stands.,stands before a track and looks off into the distance.\n5364,anetv_Ad9jrt2bP1o,2432,One stands before a track and looks off into the distance. He,One stands before a track and looks off into the distance.,He,gold,pushes a puck to take a bow while then continues to play.,runs down the track and into a sand pit.,bends along and lands on a mat with one foot resting on the sides.,is shown spinning and walking while others walk past.\n5365,anetv_Ce0t7gfJl5w,7958,We watch a man riding a skateboard down a street with a hill and talking to the camera cut in. We,We watch a man riding a skateboard down a street with a hill and talking to the camera cut in.,We,gold,see the person shoveling snow into the snow.,see people riding bumper cars in the dirt.,see the man riding another mower.,see the man fall off the board.\n5366,anetv_Ce0t7gfJl5w,7957,We see a man ride a skateboard and see two title screen. We,We see a man ride a skateboard and see two title screen.,We,gold,see the young man put the bike on top and see them.,watch a man riding a skateboard down a street with a hill and talking to the camera cut in.,see the lady tapping the selfie stick.,see the title screen and the land of the market.\n5367,anetv_Ce0t7gfJl5w,7960,The man touches his helmet. We,The man touches his helmet.,We,gold,see only light in the sky.,see the welding ski.,see the ending title screen.,see the lady sitting behind the pommel horse.\n5368,anetv_Ce0t7gfJl5w,19395,A man is skateboarding down city roads. He,A man is skateboarding down city roads.,He,gold,is around with the racer in front of the house.,comes bowling and skates speed through the course.,\"does several stunts as he goes, and stops to talk to the camera.\",drives his motorcycle on a dusty hilly street.\n5369,anetv_Ce0t7gfJl5w,7959,We see the man fall off the board. We,We see the man fall off the board.,We,gold,see the bike being pull again.,see the man standing on his skateboard.,see a sign on the images.,see people riding their recumbent bikes.\n5370,anetv_nX-GvQmf5Tc,18754,There are some people watching them with cameras in their hands. They drivers,There are some people watching them with cameras in their hands.,They drivers,gold,\"wipe the shot put in, and open the various scene in the end.\",take turns with skateboard in the air.,continue driving their cars in the same direction where some car follow the other in circles.,\"are going along, fighting and not going around.\"\n5371,anetv_nX-GvQmf5Tc,17764,We see people riding around in bumper cars. A boy in a green car,We see people riding around in bumper cars.,A boy in a green car,gold,swerves and looks indoors.,speaks and is driving jumps.,gets hit by a red car.,gets license plate number.\n5372,anetv_nX-GvQmf5Tc,18752,The bumper car drivers wait for a period of time before they begin driving the cars. Then they all,The bumper car drivers wait for a period of time before they begin driving the cars.,Then they all,gold,\"go in the same direction as they go around a divider, make a u turn and then come back to where they started.\",remove a head and put it above water face when get it up.,are driving their bumper and moving their hands over the ramps.,\"begin to lift tires, only stop jump hiding.\"\n5373,anetv_nX-GvQmf5Tc,18753,\"Then they all go in the same direction as they go around a divider, make a u turn and then come back to where they started. There\",\"Then they all go in the same direction as they go around a divider, make a u turn and then come back to where they started.\",There,gold,'s still in the heat.,are some people watching them with cameras in their hands.,of the two braided expertly is the same then in their shoe and the two begin driving and bruno then handed a gait.,\"the three times in the end the rich guy appears to go, after all.\"\n5374,anetv_nX-GvQmf5Tc,18751,There are several people riding bumper cars in at an entertainment center. The bumper car drivers,There are several people riding bumper cars in at an entertainment center.,The bumper car drivers,gold,are to be rapidly speeds.,are running into the lanes.,are washed by the couple.,wait for a period of time before they begin driving the cars.\n5375,anetv_nX-GvQmf5Tc,17763,People are sitting in bumper cars before the turn on. We,People are sitting in bumper cars before the turn on.,We,gold,scenes near a lady playing hopscotch.,woman is holding the umbrella on her back.,are in the someone house and they're going down streets in some speed.,see people riding around in bumper cars.\n5376,anetv_nX-GvQmf5Tc,17765,A boy in a green car gets hit by a red car. We,A boy in a green car gets hit by a red car.,We,gold,see a bowling shot.,see different diving boards who spins around him.,see the people standing outside the bumper cars.,of a red camera follows his helper.\n5377,anetv_XjV0D7nJx0Q,8292,A few colorful screens display with words on them. The man is once again shown with the tire and he,A few colorful screens display with words on them.,The man is once again shown with the tire and he,gold,intercuts jumps down the cliff to twelve feet off the shelf.,begins to show how he removes the rubber from the rim using a blue object.,gets to the front of another bike.,crushed again with the peels off.\n5378,anetv_XjV0D7nJx0Q,8293,\"The man then removes the black rubber with just his hands and removes a metal screw piece, then replaces it once again by maneuvering it with his two hands. When the man is done he\",\"The man then removes the black rubber with just his hands and removes a metal screw piece, then replaces it once again by maneuvering it with his two hands.\",When the man is done he,gold,begins to assemble and takes off the light to make it shiny.,begins to climb outdoors while the two pedals from side to side too.,holds the tire upright and continues to talk.,removes the bag.\n5379,anetv_XjV0D7nJx0Q,8106,He puts a marker inside the tire and takes it off the axis. He,He puts a marker inside the tire and takes it off the axis.,He,gold,puts the wax on top of the tree wrapping a piece of bacon.,finishes by still speaking to the camera.,begins to cut the porcini thing with wax and a new core.,\"rolls a metal wheel, works it out, teeth hanging on hooks.\"\n5380,anetv_XjV0D7nJx0Q,8291,A man named Russ is standing in a shop called Out - N - Back Bicycle Specialist and is holding a tire as he talks. A few colorful screens,A man named Russ is standing in a shop called Out - N - Back Bicycle Specialist and is holding a tire as he talks.,A few colorful screens,gold,clean the roof of the clear white sky.,are shown on a bus instructor on the docks.,display with words on them.,are shown with people plane shingle and cars perfect on it.\n5381,lsmdc1038_The_Great_Gatsby-87788,15169,He looks across to someone's mansion and sees the yellow someone drive up. Someone,He looks across to someone's mansion and sees the yellow someone drive up.,Someone,gold,takes something in his hand and makes pants and pumps out his other hand.,\"reaches outside, his eyes tracking on someone as he wanders disbelievingly.\",approaches the wagon's front left.,walks over and finds someone washing myrtle's blood off the front of the car.\n5382,lsmdc1038_The_Great_Gatsby-87788,15166,\"Someone moves closer and puts his arm around someone, who looks lost. Someone\",\"Someone moves closer and puts his arm around someone, who looks lost.\",Someone,gold,pulls someone out of the truck.,reacts with a perplexed frown.,takes a seat and tries to get out.,turns and walks away.\n5383,lsmdc1038_The_Great_Gatsby-87788,15167,\"Someone reacts with a perplexed frown. At the cottage, someone\",Someone reacts with a perplexed frown.,\"At the cottage, someone\",gold,picks up a clipboard from the table and checks her cell.,holds onto a cigar as he reads the manual.,\"stands in the shadows, deep in thought.\",sits in a chair.\n5384,lsmdc1038_The_Great_Gatsby-87788,15165,Someone surreptitiously walks around to the terrace. He,Someone surreptitiously walks around to the terrace.,He,gold,- marched by his hand chair.,\"sees people sitting at the dining table, talking.\",directs her gaze to the window.,leads forward onto the boat.\n5385,lsmdc1038_The_Great_Gatsby-87788,15163,Someone rests his face against his hand. Someone,Someone rests his face against his hand.,Someone,gold,raises his hand above his head.,\"spins around, his trousers at the sides.\",stares at it on the table below.,nods sharply and attempts a smile.\n5386,lsmdc1038_The_Great_Gatsby-87788,15168,\"At the cottage, someone stands in the shadows, deep in thought. He\",\"At the cottage, someone stands in the shadows, deep in thought.\",He,gold,loosely paws at his limbs and elbow nervously.,\"is sprawled out on the ground, his back to the camera.\",looks across to someone's mansion and sees the yellow someone drive up.,\"sits on the edge of the cot, patiently leans.\"\n5387,anetv_70rKlFJdkKw,19816,The girl in pink jumps on a swing and swings. The girl in pink,The girl in pink jumps on a swing and swings.,The girl in pink,gold,falls onto a blue pinata high above.,bounced on the stool to the sideline.,stops swinging to push two other kids.,goes down to the monkey bars and tries to dry her hands.\n5388,anetv_70rKlFJdkKw,224,A small group of kids are seen outside on a set of swings. Two girls,A small group of kids are seen outside on a set of swings.,Two girls,gold,run to perform their moves along the shuffleboard.,push the others around and switch places in the swings.,are seen jumping down a slide and a player slams on the ground.,are seen throwing one of them off into the distance while the others watch.\n5389,anetv_70rKlFJdkKw,19814,We see kids playing on a swing set. A little kid,We see kids playing on a swing set.,A little kid,gold,pushes another one a swing.,laughs about hopscotch and left around.,performs down a little path.,in a red t - shirt celebrates the game.\n5390,anetv_70rKlFJdkKw,19819,The girl in pushes him on her swing. The girl in pink,The girl in pushes him on her swing.,The girl in pink,gold,takes turns pushing the other kids.,\"grabs the baby, and two girls hug each other.\",kicks the baby out of the outfit.,mixes the same ingredients followed by a smaller girl.\n5391,anetv_70rKlFJdkKw,19815,A little kid pushes another one a swing. The girl in pink,A little kid pushes another one a swing.,The girl in pink,gold,jumps on a swing and swings.,throws her gloves.,\"shakes the cream cone at the child in the kitchen, turns to the swing and the boy with the stick came.\",\"jumped and fence on the ground, first and the little girl started kids on a swingset.\"\n5392,anetv_70rKlFJdkKw,19818,The kid in blue hops on a swing. The girl in,The kid in blue hops on a swing.,The girl in,gold,a black shirt twist the.,strapping jumper dismounts from the camel.,stripes threw the stick into the night.,pushes him on her swing.\n5393,anetv_70rKlFJdkKw,225,Two girls push the others around and switch places in the swings. They,Two girls push the others around and switch places in the swings.,They,gold,are carrying coffees outside.,continue to play on the swings together while riding and pushing one another.,\"run to the hoop mock victory, ending with the dancers.\",get out of the pinata and throw them over the kids.\n5394,anetv_70rKlFJdkKw,19817,The girl in pink stops swinging to push two other kids. The kid in blue,The girl in pink stops swinging to push two other kids.,The kid in blue,gold,examines her out of the hoop.,threw the balls to the baby.,hops on a swing.,does a little harder in the mirror.\n5395,anetv_T9gKHEOvRKk,3645,A brunette woman is speaking and the words on the bottom right screen say her name is Sarah and she's the product manager. A red headed woman is now putting the product onto the back of her left hand and with her right hand she,A brunette woman is speaking and the words on the bottom right screen say her name is Sarah and she's the product manager.,A red headed woman is now putting the product onto the back of her left hand and with her right hand she,gold,\"puts the product on her face, and then uses both hand to apply it all over her face.\",talks out of the auditorium.,is holding the razor and she moves to brush the bottom of her hair.,is cut up and smiles at herself.\n5396,anetv_T9gKHEOvRKk,8656,Another woman is shown applying lotion to her hand. She then,Another woman is shown applying lotion to her hand.,She then,gold,dries her hair from around her face.,applies and rubs it into her face.,shows how to properly clean a false border.,uses some water in the clothes and dry it.\n5397,anetv_T9gKHEOvRKk,8655,A woman is talking to the camera. Another woman,A woman is talking to the camera.,Another woman,gold,is snowboarding on her slide.,and a woman are shown inside a building.,is interviewing a reporter.,is shown applying lotion to her hand.\n5398,anetv_T9gKHEOvRKk,3644,\"A still shot picture appears but with a special affect to it as if it were made up of vertical strips that were flipped to turn into a picture of a woman and with the company name on the right that say's SkinMedica and words on the bottom of the screen that read How to Apply, and the next picture is a bottle of the product which is silver with gold writing on it. A brunette woman is speaking and the words on the bottom right screen say her name is Sarah and she\",\"A still shot picture appears but with a special affect to it as if it were made up of vertical strips that were flipped to turn into a picture of a woman and with the company name on the right that say's SkinMedica and words on the bottom of the screen that read How to Apply, and the next picture is a bottle of the product which is silver with gold writing on it.\",A brunette woman is speaking and the words on the bottom right screen say her name is Sarah and she,gold,'s still in the water with someone.,begins going to meet her fingers doing a series.,\"thief turning, then the ending dance with outro appears.\",'s the product manager.\n5399,anetv_nTNkGOtp7aQ,3253,\"Man get outs the pool, grab a towel and dry his face. people\",\"Man get outs the pool, grab a towel and dry his face.\",people,gold,are in the street playing sticks.,are standing on the street and having a marathon to jump.,talk of get them and walk away.,are walking around the pool carrying bags.\n5400,anetv_nTNkGOtp7aQ,3252,Man is standing in a trampoline and make a vig somersault into the pool. two men,Man is standing in a trampoline and make a vig somersault into the pool.,two men,gold,are sitting in the first floor of the trampoline watching the jump.,are preparing a pool to dodge and keep.,are in a steel pole playing paintball in an indoor court.,are standing in a roofed room showing what he is doing.\n5401,lsmdc1039_The_Queen-88069,5209,Someone stares thoughtfully at the tv. Someone,Someone stares thoughtfully at the tv.,Someone,gold,\"parts his huge hood, then brings the magazine off his shot.\",twists a silver pen in her hands.,finishes a small stack of letters to make up.,sits piano with someone.\n5402,lsmdc1039_The_Queen-88069,5208,\"Later, someone sits on a bed and watches footage from an interview with someone on tv. Someone\",\"Later, someone sits on a bed and watches footage from an interview with someone on tv.\",Someone,gold,stares thoughtfully at the tv.,scans around hearing someone.,steps to a reading podium and jumps down.,stares through her delicate blue eyes.\n5403,lsmdc1039_The_Queen-88069,5206,Figures can be glimpsed on the green hills nearby. One of them,Figures can be glimpsed on the green hills nearby.,One of them,gold,seems to be dead while still looking at their surroundings.,looks through some binoculars.,\"carries a mountain backwards, winding up behind his house.\",looks coming as he approaches.\n5404,lsmdc1039_The_Queen-88069,5207,\"In the distance, over the next hill, a stag stands alone. Later, someone\",\"In the distance, over the next hill, a stag stands alone.\",\"Later, someone\",gold,sits on a bed and watches footage from an interview with someone on tv.,\"runs on a suburban street, passing a crowded warehouse with varying bowtie carry customers, raven - clad.\",steps out of a frock coat and carries an slim black - haired man sitting with a patient.,has silver hand sports and black hardcover manuscript in his writing window.\n5405,anetv_aIvWwX--xKw,18714,She takes the towel and puts it over the lettuce. She,She takes the towel and puts it over the lettuce.,She,gold,\"finishes drawing and walks away, her hands spread down away with a blank expression.\",ends the cut before cutting her.,takes the lettuce and puts it in a wooden bowl.,wipes the tap with a tissue.\n5406,anetv_aIvWwX--xKw,18713,She moves the salad into a new bowl. She,She moves the salad into a new bowl.,She,gold,hands it over and pour it into a roll.,adds the ingredients to his friend.,takes the towel and puts it over the lettuce.,smiles at the camera.\n5407,anetv_aIvWwX--xKw,18712,She takes the lid off of a pot of salad. She,She takes the lid off of a pot of salad.,She,gold,runs onto the kitchen and pours their food.,fills the bowl and jars in each hand.,moves the salad into a new bowl.,boils the pot in a bowl.\n5408,anetv_aIvWwX--xKw,18715,She takes the lettuce and puts it in a wooden bowl. She,She takes the lettuce and puts it in a wooden bowl.,She,gold,adds a cherry syrup on the plate.,add some pepper as she continues to prepare the sausage.,tosses the salad with two spoons.,puts some pink balls in a bag.\n5409,anetv_aIvWwX--xKw,18711,A woman is standing behind a counter in a kitchen. She,A woman is standing behind a counter in a kitchen.,She,gold,uses a tissue to open an emergency.,puts lipstick on her lips.,takes the lid off of a pot of salad.,is spraying a pie with a spoon.\n5410,lsmdc3038_ITS_COMPLICATED-17259,1705,He leans in and kisses her. They,He leans in and kisses her.,They,gold,share a mischievous grin.,stop and head around the corner.,kiss on the top.,whip balloons above their heads.\n5411,lsmdc3038_ITS_COMPLICATED-17259,1706,They share a mischievous grin. Someone,They share a mischievous grin.,Someone,gold,pulls away with a grin.,drives past a hospital gathering set.,holds up her hands.,stands and watches him.\n5412,lsmdc3053_PARENTAL_GUIDANCE-25759,10462,\"Hitting the puddle, someone Hawk slides out of control and flies toward someone. Someone\",\"Hitting the puddle, someone Hawk slides out of control and flies toward someone.\",Someone,gold,claps as someone struggles with bullets.,hugs his grandson and shields him with his body.,emerges and views his dog in the early morning light as a postman leaves.,throws up the matches wildly.\n5413,lsmdc3053_PARENTAL_GUIDANCE-25759,10461,\"A cameraman aims at someone. Hitting the puddle, someone Hawk\",A cameraman aims at someone.,\"Hitting the puddle, someone Hawk\",gold,\"up the van ax, popping it back some forth.\",a penguin around and pitches it.,backs the car out of its window.,slides out of control and flies toward someone.\n5414,lsmdc3053_PARENTAL_GUIDANCE-25759,10464,\"Missing them, someone plunges to the bottom of the ramp and lands hard in a sprawl. Now in a park, someone\",\"Missing them, someone plunges to the bottom of the ramp and lands hard in a sprawl.\",\"Now in a park, someone\",gold,drops his hip clothes into a trashcan.,exhales a filter as a flame creeps overhead.,rides into hysterical mangled ice.,gives them a ring of smoke on a nearby window overlooking a building.\n5415,anetv_TfpCjzGqA7w,18434,A little kid in a princess costumbe is holding a pink pole hiting a pinata. people,A little kid in a princess costumbe is holding a pink pole hiting a pinata.,people,gold,'re standing on a playground trying to hit a pinata.,hurry across the room and stand in a big queue of bacon.,are sitting in chairs around a table watching the girl.,is throwing a ball away behind the goal.\n5416,anetv_TfpCjzGqA7w,6132,Womena re in a table behind the litle girl waching her. man,Womena re in a table behind the litle girl waching her.,man,gold,is standing next to a house in front of the pinata.,is wearing the tattoo that is on a grill screen.,sits down putting the cards on his finger.,is on the field playing the violin.\n5417,anetv_MZ4yIxM6snw,7249,He goes from the bottom up and grabs more paint on his tool. He,He goes from the bottom up and grabs more paint on his tool.,He,gold,is making progress across the wall pretty quickly the way he is doing it.,puts to the snowboard and puts its finger up to the top.,hangs the piece out and walks on door.,grabs the leading cable and pushes it up.\n5418,anetv_MZ4yIxM6snw,7248,A man in a yellow construction top is inside painting the wall beige. He,A man in a yellow construction top is inside painting the wall beige.,He,gold,then opens a fifth card and removes the wallpaper.,talks evenly the different tools needed to clean a black wall.,are gathered together in a lakeside tiling the building filled with different equipment in a pot.,goes from the bottom up and grabs more paint on his tool.\n5419,anetv_FkWxS_5VxsM,12523,The hand cuts the the polished tape in strips. The hand,The hand cuts the the polished tape in strips.,The hand,gold,goes directly and adjusts the ribbon and then resumes knitting.,begins showing the knitting.,puts the strip on a polished nail.,lays scissors and scratches.\n5420,anetv_FkWxS_5VxsM,12520,A polished hands takes a piece of tape. The polished hands,A polished hands takes a piece of tape.,The polished hands,gold,puts a piece of tape at the edge of a brown object.,swings around the sticks.,show violin in a relay manner.,individually plasters the boots with its chain.\n5421,anetv_FkWxS_5VxsM,12524,The hand puts the strip on a polished nail. The hand,The hand puts the strip on a polished nail.,The hand,gold,rotates the timer when the person wins the match.,paints the nail with clear nail polish.,places the white shoe on the face of the white horse.,stops to pick up the paper.\n5422,anetv_FkWxS_5VxsM,12522,The hand paints turquoise polish on the tape. The hand,The hand paints turquoise polish on the tape.,The hand,gold,cuts the the polished tape in strips.,goes up and begins scrubbing.,goes around to demonstrate how to apply martial glitter using the spatula along her nails.,moves the knife around to make the stilt with a perfect pose.\n5423,anetv_FkWxS_5VxsM,12525,The hand paints the nail with clear nail polish. The hand,The hand paints the nail with clear nail polish.,The hand,gold,places the lady's neutral nail along the lady on the nail.,rubs a soaked cotton ball on a fingernail so the polish is removed.,rubs the cutter fingernail with the blending and sweet cake.,brushes and coats the glitter nails with the red cloth.\n5424,anetv_JyjONoyBr4Q,13193,The dog runs every time she throws the Frisbee at a distance and fetches it for her. The doh,The dog runs every time she throws the Frisbee at a distance and fetches it for her.,The doh,gold,jumps high up to grab the frisbee off her hand.,looks back as she then continues shaking roller and left away.,finds the rest on a rack that has black clad in slightly black wig.,ends as men work in a tub.\n5425,anetv_JyjONoyBr4Q,13195,He dog even jumps over the lady when she is laying on the ground. He,He dog even jumps over the lady when she is laying on the ground.,He,gold,continues to call when he turns and talks to the camera again.,continues to run and fetch the frisbee for the lady as she throws multiple frisbee.,asks for some more and comes her congratulating after something.,brings back both hands and stands up on both arms.\n5426,anetv_JyjONoyBr4Q,13191,There is a lady dog trainer dressed in a blue hoodie playing with a black and white dog in a park. She,There is a lady dog trainer dressed in a blue hoodie playing with a black and white dog in a park.,She,gold,\"is wearing a foulard robe in a bikini, sitting down.\",has a hat on hand and applies her pet pet body into the discreet mower.,peers across the beach yard.,is throwing a frisbee to the dog and makes the dog fetch it for her.\n5427,anetv_JyjONoyBr4Q,13197,The same lady is now wearing an orange shirt and is throwing the Frisbee to the dog. The dog,The same lady is now wearing an orange shirt and is throwing the Frisbee to the dog.,The dog,gold,take the dogs from side to side.,throws back a frisbee once more two more times.,continues to jump and catch the frisbee in his mouth.,holds the frisbee as the dog's dog comes and catches it.\n5428,anetv_JyjONoyBr4Q,13196,He continues to run and fetch the Frisbee for the lady as she throws multiple Frisbee. The same lady,He continues to run and fetch the Frisbee for the lady as she throws multiple Frisbee.,The same lady,gold,is swinging at high speed.,does the jumps from the track and continues to mow.,lifts the dog up and turns the dog up.,is now wearing an orange shirt and is throwing the frisbee to the dog.\n5429,anetv_JyjONoyBr4Q,13192,She is throwing a Frisbee to the dog and makes the dog fetch it for her. The dog,She is throwing a Frisbee to the dog and makes the dog fetch it for her.,The dog,gold,is thrown over the blades and the dog runs to catch it.,runs every time she throws the frisbee at a distance and fetches it for her.,stirs the whole dog with the dog while the dog continues to chase the dog.,talks to a camera and is running outside and laughing to the dogs.\n5430,anetv_JyjONoyBr4Q,13194,The doh jumps high up to grab the Frisbee off her hand. He dog even,The doh jumps high up to grab the Frisbee off her hand.,He dog even,gold,helped it with a leash.,jumps over the lady when she is laying on the ground.,takes pictures of the dog and runs up holding the boy.,is playing with a black dog.\n5431,lsmdc1014_2012-79345,13081,They run to the truck. On the ground someone,They run to the truck.,On the ground someone,gold,holds his finger in the mouth.,leads someone's team across a walkway.,knocks someone unconscious and gets to jump rope.,rushes the ship out of the hydra compound.\n5432,lsmdc1014_2012-79345,13079,Someone stops the truck and climbs out. He,Someone stops the truck and climbs out.,He,gold,\"rips through the grating, barreling down the datsun escape.\",looks back down the road to where someone stands arms raised.,pushes his bloody swords up at the limousine's hull.,smiles and speeds off.\n5433,lsmdc1014_2012-79345,13078,As grandma in the back hears it. Someone,As grandma in the back hears it.,Someone,gold,emerges from the farmhouse with cabinets clutching ring bags.,stops the truck and climbs out.,turns his face a few times to see that the tiger has gone.,is dressed as a god lion.\n5434,lsmdc1014_2012-79345,13082,On the ground someone leads someone's team across a walkway. Someone,On the ground someone leads someone's team across a walkway.,Someone,gold,joins two men in a booth during the match.,turns to his aunt.,stares after his mother and son.,sees them and addresses someone.\n5435,lsmdc1014_2012-79345,13077,They run down to a truck on the road. Someone,They run down to a truck on the road.,Someone,gold,pulls up and jumps down.,digs into his pocket and notices the gangster.,\"takes a seat under him, on the prop.\",lobs a stone at the vanishing truck.\n5436,lsmdc1014_2012-79345,13080,He looks back down the road to where someone stands arms raised. They,He looks back down the road to where someone stands arms raised.,They,gold,scatter through the dusty square.,turn to cars.,wheel several rounds on the atv.,run to the truck.\n5437,lsmdc0021_Rear_Window-59047,15035,Suddenly he becomes aware that someone is signaling to someone who is watching him. He,Suddenly he becomes aware that someone is signaling to someone who is watching him.,He,gold,takes someone's hand slowly and turns to look at the camera.,gets out of the car and goes to the fridge.,drops the camera into his lap.,closes his eyes as he watches his daughter go out.\n5438,lsmdc0021_Rear_Window-59047,15038,\"As someone's attention is drawn back to the second policeman to answer further questions, the first policeman takes someone by the arm and leads her out of the apartment. Someone\",\"As someone's attention is drawn back to the second policeman to answer further questions, the first policeman takes someone by the arm and leads her out of the apartment.\",Someone,gold,points to a drawer in the wall cabinets.,\"puts alone in the middle of the road taking short bursts, visible through over an airport, devastation against every decision titled.\",stands parked next to his blazing car parked nearby.,\"stands, starts up the stairs to the back door, all right and moves to another doorway.\"\n5439,lsmdc0021_Rear_Window-59047,15033,\"He is looking down directly at someone's hands. His head slowly turns, and he\",He is looking down directly at someone's hands.,\"His head slowly turns, and he\",gold,\"stares at someone whose seat arms folded, the well - american of his head.\",reaches for the lever as possible.,moves closer to the crumbling and falls as if he had been racked by sobs.,looks right up - - directly into the lens.\n5440,lsmdc0021_Rear_Window-59047,15036,He drops the camera into his lap. Someone,He drops the camera into his lap.,Someone,gold,springs to her feet.,\"hurries from the window, turning off lights, as someone backs his chair into the room.\",throws a container from a window onto a shelf.,shows someone walking over to the chair.\n5441,lsmdc0021_Rear_Window-59047,15029,\"In the brief pause while the two policemen speak to each other, someone starts to wave her left hand behind her back. She\",\"In the brief pause while the two policemen speak to each other, someone starts to wave her left hand behind her back.\",She,gold,\"falls from her chair, her head resting on the tabletop.\",stomps on his wrist for a heartbeat.,stops waving and holds her fingers spread out.,spots someone and someone limping down the hall.\n5442,lsmdc0021_Rear_Window-59047,15043,\"He takes it, extracts some bills and begins counting them. He\",\"He takes it, extracts some bills and begins counting them.\",He,gold,continues to speak to the camera.,\"tosses it on his case, followed by someone.\",listens for the first few seconds.,\"looks up sharply at her, and then without comment goes back to counting the money.\"\n5443,lsmdc0021_Rear_Window-59047,15031,We get a closer view of the waving hand. With her other hand she,We get a closer view of the waving hand.,With her other hand she,gold,points to the wedding ring on her left hand.,adds some strings of signet tarts to the left side and takes off his glasses and throws a photo.,stands a and thinks by himself.,smiles as she talks.\n5444,lsmdc0021_Rear_Window-59047,15046,We see someone leave his apartment and proceed down the corridor. Someone,We see someone leave his apartment and proceed down the corridor.,Someone,gold,descends in the door of the bedroom.,goes up to the door.,is blood into him through a trench coat and wet curls.,jumps in after his partner.\n5445,lsmdc0021_Rear_Window-59047,15042,\"She finds a billfold, hands it to someone. He\",\"She finds a billfold, hands it to someone.\",He,gold,hands her a flimsy.,hands it to someone.,\"takes it, extracts some bills and begins counting them.\",\"takes a few paces forward, then stops and nods.\"\n5446,lsmdc0021_Rear_Window-59047,15034,\"His head slowly turns, and he looks right up - - directly into the lens. Suddenly he\",\"His head slowly turns, and he looks right up - - directly into the lens.\",Suddenly he,gold,\"taps his hat after the door which hits the black shards, which shatters.\",\"stops and spins at that moment, shatters it, starts to slam down so that it falls on both hands.\",becomes aware that someone is signaling to someone who is watching him.,slithers to a stop and sits behind the desk.\n5447,lsmdc0021_Rear_Window-59047,15032,With her other hand she points to the wedding ring on her left hand. He,With her other hand she points to the wedding ring on her left hand.,He,gold,jumps down and finds the diamond ring on her finger.,ends a call and waves it at the grotto.,unbuttons the shirt with the skirt around her waist.,is looking down directly at someone's hands.\n5448,lsmdc0021_Rear_Window-59047,15027,He pauses momentarily to tell the second policeman to take a statement from someone about the attempted burglary. The second policeman,He pauses momentarily to tell the second policeman to take a statement from someone about the attempted burglary.,The second policeman,gold,shoots a gunman into a modest ditch.,finds a point of money.,\"reaches for the jewelry in someone's hand, and takes it for examination.\",\"looks around, saying.\"\n5449,lsmdc0021_Rear_Window-59047,15030,She stops waving and holds her fingers spread out. We,She stops waving and holds her fingers spread out.,We,gold,get a closer view of the waving hand.,\"immediately, drunkenly, with the phonograph cigarette playing on her lips.\",bumps into her.,grin on her face.\n5450,lsmdc0021_Rear_Window-59047,15039,\"Someone points to a drawer in the wall cabinets. The last light out, someone\",Someone points to a drawer in the wall cabinets.,\"The last light out, someone\",gold,\"stops to catch her breath, and turns to someone.\",\"sits in the room, unlatches his phone.\",turns a page revealing the others.,finds a note written on the letter.\n5451,lsmdc0021_Rear_Window-59047,15041,Someone moves to get it. She,Someone moves to get it.,She,gold,is already pinned to the carpet.,\"is low over his head, hello to someone, who obviously wanted the same time.\",\"finds a billfold, hands it to someone.\",makes it onto the grate.\n5452,lsmdc0021_Rear_Window-59047,15045,\"Someone does, as someone gets her purse. We\",\"Someone does, as someone gets her purse.\",We,gold,see someone leave his apartment and proceed down the corridor.,\"then turns round and walks back on the field, watching a magazine eater one of the girls to a window behind the refrigerator.\",\"come out of the kitchen before they watch someone throw his hands, arms and arms, side by side, facing forward.\",see the dishwasher in the kitchen.\n5453,lsmdc0021_Rear_Window-59047,15028,\"The second policeman reaches for the jewelry in someone's hand, and takes it for examination. In the brief pause while the two policemen speak to each other, someone\",\"The second policeman reaches for the jewelry in someone's hand, and takes it for examination.\",\"In the brief pause while the two policemen speak to each other, someone\",gold,almost turns to gazing at us.,starts to wave her left hand behind her back.,shifts his eyes and gets dried.,\"says, now, frozen.\"\n5454,lsmdc0021_Rear_Window-59047,15037,\"Someone hurries from the window, turning off lights, as someone backs his chair into the room. As someone's attention is drawn back to the second policeman to answer further questions, the first policeman\",\"Someone hurries from the window, turning off lights, as someone backs his chair into the room.\",\"As someone's attention is drawn back to the second policeman to answer further questions, the first policeman\",gold,pauses at a close - up and peers in one after the enemies.,is constantly cocking the gun.,takes someone by the arm and leads her out of the apartment.,comes up to salutes.\n5455,anetv_qcsGJTJstZ4,14950,A man throws a ball and hits a woman in the face. He walks up to her and she,A man throws a ball and hits a woman in the face.,He walks up to her and she,gold,begins to spin her around.,tries to help him.,starts doing the same.,tries to hit him.\n5456,anetv_qcsGJTJstZ4,98,\"Once she gets hit, she covers her face but ends up getting hit once more with the ball in the face. Another game is shown with more people, and another female\",\"Once she gets hit, she covers her face but ends up getting hit once more with the ball in the face.\",\"Another game is shown with more people, and another female\",gold,is on the sidelines and playing the game.,\"is sliding on the ground, playing and celebrating.\",gets hit in the face in the same fashion.,hits her scrunched up and yells.\n5457,anetv_qcsGJTJstZ4,14949,People are playing dodge ball in a room. A man,People are playing dodge ball in a room.,A man,gold,hits a ball onto the field.,throws a ball and hits a woman in the face.,grabs a ball from the wall.,drinks beer in a basket.\n5458,anetv_qcsGJTJstZ4,97,\"About six people are standing in a gym playing a game of dodge ball, and the man ends up throwing the ball and hitting a woman in the face. Once she gets hit, she\",\"About six people are standing in a gym playing a game of dodge ball, and the man ends up throwing the ball and hitting a woman in the face.\",\"Once she gets hit, she\",gold,\"takes the fumbles - thrown, her leg remains in the ground.\",attempts the ball to hit it upright then she bends away from the table and jumps up and begins running back and forth.,lays down the stick and grabs the ball.,covers her face but ends up getting hit once more with the ball in the face.\n5459,anetv_kI6maggAugg,11137,The man then stands up and holds the barbell to his chest. The man then tries to hold the barbell above his head while he squats but he,The man then stands up and holds the barbell to his chest.,The man then tries to hold the barbell above his head while he squats but he,gold,\"can't speak when he is done, and lifts the weights over his head.\",does a few touching exercises.,ends up dropping the barbell and then looks at his hands as if they failed him.,rubs them fiercely to the paper and begins to lift the head one more time before touching him again.\n5460,anetv_kI6maggAugg,11136,\"A very slow playing video of a very strong man is shown as he picks up a barbell that has a lot of heavy weights on it, and he squats for a little bit with it at his chest. The man then\",\"A very slow playing video of a very strong man is shown as he picks up a barbell that has a lot of heavy weights on it, and he squats for a little bit with it at his chest.\",The man then,gold,stands up and holds the barbell to his chest.,adjusts the ring and sets the weight down on the floor.,drops the weight on his head and lands on his back.,begins to beat the bar.\n5461,anetv_nzjivjnk2Ac,23,The young boy is skateboarding on the road. The young man in blue shirt,The young boy is skateboarding on the road.,The young man in blue shirt,gold,comes up the sidewalk and throws his dart.,is skateboarding on the street.,falls into a glass of sand.,begins playing the saxophone so it looked bad.\n5462,anetv_nzjivjnk2Ac,12310,A man is shown riding down multiple streets on a skateboard. He,A man is shown riding down multiple streets on a skateboard.,He,gold,swings through rope and lands on a street.,\"rides quickly past several buildings and landmarks, performing stunts and going down hills.\",is being very disoriented by the wind.,and flipping and busy in the dirt ski.\n5463,anetv_nzjivjnk2Ac,24,The young man in blue shirt is skateboarding on the street. Three young men,The young man in blue shirt is skateboarding on the street.,Three young men,gold,start break dancing across the street.,skateboard through the sand.,are skating in different outfits and going on cars.,are skateboarding in an empty street sliding side to side.\n5464,anetv_nzjivjnk2Ac,12311,\"He rides quickly past several buildings and landmarks, performing stunts and going down hills. When he is done, he\",\"He rides quickly past several buildings and landmarks, performing stunts and going down hills.\",\"When he is done, he\",gold,is also going through ramps.,starts snowboarding along the mountain with other people on the slopes.,sits down to eat lunch with friends.,stands on the line of regular red and begins jumping over the stilts as he goes somewhere again.\n5465,anetv_lgu-DBDWlEs,6975,\"There's a woman dressed in a white hoodie seated on a dinning chair by the dinning table in her kitchen, peeling potatoes straight into a trash can. The woman\",\"There's a woman dressed in a white hoodie seated on a dinning chair by the dinning table in her kitchen, peeling potatoes straight into a trash can.\",The woman,gold,stands up and lights the cake while talking.,picks up several rubik's cubes as she begins to talk about what she is saying.,then puts a cutter in the last and talks to the camera.,is leaning on the back rest of the dinning chair as she peels the potato skins off the potatoes with a peeler.\n5466,anetv_lgu-DBDWlEs,6976,The woman is leaning on the back rest of the dinning chair as she peels the potato skins off the potatoes with a peeler. She,The woman is leaning on the back rest of the dinning chair as she peels the potato skins off the potatoes with a peeler.,She,gold,is using her right hand to peel the potato as she throws the skins directly into the trash can placed near her feet.,carefully cuts the top of her pen with a spatula and then uses an ammo to pursue a sandwich to her teeth.,cuts the fire in half and continue talking.,uses orange water and shows the woman how to cut oil on the pot as she catches it using different product.\n5467,anetv_lgu-DBDWlEs,6348,\"This young black woman is peeling the onion over the garbage can in the kitchen. There is a small dog standing next to the garbage can, but the camera\",This young black woman is peeling the onion over the garbage can in the kitchen.,\"There is a small dog standing next to the garbage can, but the camera\",gold,is not using the dogs to move its tongue.,continues to blow between the woman.,turns so the dog is n't shown.,is eating both sides of her face.\n5468,lsmdc3004_500_DAYS_OF_SUMMER-1592,12376,He dismisses someone with a friendly smile. Someone,He dismisses someone with a friendly smile.,Someone,gold,picks up the cards and trudges slowly out of the office.,\"moves toward the majestic, imposing gate, which includes a bulging fortress and abandoned arena.\",eyes someone food.,takes off his boater.\n5469,lsmdc3004_500_DAYS_OF_SUMMER-1592,12375,Someone shows someone a selection of greetings cards. He,Someone shows someone a selection of greetings cards.,He,gold,hurries out of his office.,holds out a finger.,drops a glass of orange juice into his blender and empties out a piece of toast.,dismisses someone with a friendly smile.\n5470,lsmdc3004_500_DAYS_OF_SUMMER-1592,12377,Someone picks up the cards and trudges slowly out of the office. On the assistant's desk he,Someone picks up the cards and trudges slowly out of the office.,On the assistant's desk he,gold,gestures toward the open and slams someone against the ceiling.,smiles as he giggles.,spots a card with i love us.,is seated as two large hands hold a pen.\n5471,anetv_yISeNkFiVAg,3785,She has three large drums in front of her. She,She has three large drums in front of her.,She,gold,starts on a keyboard with her hands in front of him.,\"talks, lifting the pole several times.\",is playing the drums with her hands to a beat.,sets a brown box on the ground.\n5472,anetv_yISeNkFiVAg,17137,\"The woman supports her left hand on a tam - tam while she taps with her right hand, then the woman continues playing. When the woman finish playing, she\",\"The woman supports her left hand on a tam - tam while she taps with her right hand, then the woman continues playing.\",\"When the woman finish playing, she\",gold,looks up and goes the same way.,goes to the sheet and the person begins to play accordion to the man.,laughs into a microphone.,raises her hands high and smiles.\n5473,anetv_trl-RCWyhb0,19041,An older man wearing glasses and headphones is seen playing a set of bongo drums while closes his eyes to concentrate. The man,An older man wearing glasses and headphones is seen playing a set of bongo drums while closes his eyes to concentrate.,The man,gold,continues speaking while pointing the mug and beer drinking.,continues to remove the weights with the barbells lowered before stepping over the weight.,plays the instrument continuously and finishes by putting one hand up.,continues playing and the camera pans to him sitting on the back of the camera.\n5474,anetv_trl-RCWyhb0,14963,A man is seated inside a room. He,A man is seated inside a room.,He,gold,is standing up in a stair while warming up.,is standing in front of a set of bongo drums.,starts pressing his nails on a piece of metal.,is playing a large drum set.\n5475,anetv_trl-RCWyhb0,14964,He is playing a large drum set. He,He is playing a large drum set.,He,gold,hits the drums with his hands to a beat.,begins to play the drums with a tennis ball.,stands in a large pile of happy fireworks.,is playing a shuffleboard routine with a small device.\n5476,lsmdc3044_KNOCKED_UP-20976,11405,Now someone and someone sit by the open cabinet among piles of stuff. She touches an overturned marijuana plant and a large branch,Now someone and someone sit by the open cabinet among piles of stuff.,She touches an overturned marijuana plant and a large branch,gold,glimpsed someone tracks forward with a fearful smirk.,breaks off in her hand.,comes high into the sky.,leaps out from around him.\n5477,anetv_7JoYkshshVI,13376,A man is seen standing before a shuffleboard table and begins slowly pushing pucks. Another person,A man is seen standing before a shuffleboard table and begins slowly pushing pucks.,Another person,gold,walks into frame while the camera moves around in the end.,pours sand into cups on the side.,is seen standing behind while they push the pucks along the board.,walks into frame and explains while moving his feet up and down.\n5478,anetv_b-3l2qIHL5w,16001,He holds a piece of exercise equipment and places a towel in between his arm and waist. He,He holds a piece of exercise equipment and places a towel in between his arm and waist.,He,gold,then moves the chair upright to the other.,grabs the paper from the hookah and lifts himself up to the air.,sits down and grips his arms in the air.,moves the equipment back and fourth while still speaking to the camera and pauses in the end.\n5479,anetv_b-3l2qIHL5w,15563,A man is on one knee talking to the camera in a gym. the man,A man is on one knee talking to the camera in a gym.,the man,gold,shows the large machine of the machine.,stands on a ladder with a tool.,gives a make up on the left side of the head.,points to his knee and grabs a resistance bar.\n5480,anetv_b-3l2qIHL5w,15564,The man points to his knee and grabs a resistance bar. the man,The man points to his knee and grabs a resistance bar.,the man,gold,takes out the metal pack and starts to turn it over.,takes the resistance bar and being to demonstrate exercises.,peels the other item label off.,continues kneeling on the wet plates wearing an extra sheet.\n5481,anetv_StM48dIvK-M,5978,The yellow team on the left side pulls the rope mostly to the left or wins. An adult,The yellow team on the left side pulls the rope mostly to the left or wins.,An adult,gold,grabs the arm of a blue team member.,is sitting on the edge of the boat in times.,stands on the skates while the man introduces the game.,wins the yellow goal.\n5482,anetv_StM48dIvK-M,5977,People are participating in a tug of war match in a gym. The yellow team on the left side,People are participating in a tug of war match in a gym.,The yellow team on the left side,gold,engage in a wrestling club together.,is down before them.,pulls the rope mostly to the left or wins.,jump over once it is drawn.\n5483,anetv_sEvP3GFbLdw,8699,A close up of a couch is seen followed by a person walking in and out of frame. The person then,A close up of a couch is seen followed by a person walking in and out of frame.,The person then,gold,sprays down the carpet while looking at the camera while still seated.,takes the arm out of the vacuum and places it on.,begins putting soap on the dog and walking around and laying furniture on a wall.,sits down and holds their feet up.\n5484,anetv_sEvP3GFbLdw,8700,The person then sits down and holds their feet up. The person then,The person then sits down and holds their feet up.,The person then,gold,puts a pair of shoes on and walks out of frame.,begins using the other hand while moving the arms all around one another.,attempts repeatedly until the rope follows the move.,finishes and stirs them up and finishes dancing.\n5485,anetv_U20a95sHi8E,17149,A close up of a car is seen followed by people walking into frame and washing the car. The people,A close up of a car is seen followed by people walking into frame and washing the car.,The people,gold,put the bike all together again and pull into one another.,watch on the side and look down side by side.,walk out to another car as well as a man on the other side.,clean the exterior as well as interior and roll the car outside.\n5486,anetv_U20a95sHi8E,17150,The people clean the exterior as well as interior and roll the car outside. They,The people clean the exterior as well as interior and roll the car outside.,They,gold,who sniffs like hedge and tops it with another leaf.,\"continue using the ramps continuously, trying to get flat on the board.\",park the car and continue to wipe it down followed by drying it off in the end.,proceed to the bridge with contact information that cuts to the layout of their homes.\n5487,lsmdc1010_TITANIC-77838,9533,\"Someone turned and then runs to the crowd. On the other side of the ship, crew members\",Someone turned and then runs to the crowd.,\"On the other side of the ship, crew members\",gold,watch as someone tries to climb up onto the current toward the scooter.,are holding a glass for people.,come out of the arena.,tip another lifeboat onto the deck below.\n5488,lsmdc1010_TITANIC-77838,9519,\"Someone grabs the keys, then resurfaces. Someone\",\"Someone grabs the keys, then resurfaces.\",Someone,gold,finds someone at a motel.,points someone's gun at someone.,reverses down an stairwell.,\"reaches around the grate with the key, but misses the lock.\"\n5489,lsmdc1010_TITANIC-77838,9517,Someone grabs the railings and climbs to another locked gate. Someone,Someone grabs the railings and climbs to another locked gate.,Someone,gold,shakes the gate as the water rises below them.,\"grabs high things and races speed down a narrow - corridor, clutching someone, as he reels around.\",pulls the vehicle back off his small bundle.,unveils a stone - like torch for illumination.\n5490,lsmdc1010_TITANIC-77838,9534,\"On the other side of the ship, crew members tip another lifeboat onto the deck below. Someone\",\"On the other side of the ship, crew members tip another lifeboat onto the deck below.\",Someone,gold,\"picks up a crying girl, then steps toward the crowd of passengers.\",hauls her up as the boat pulls a line of tubing downhill - docks.,\"backs awkwardly over a railing, then steps forward.\",moves faster and faster out of the collision.\n5491,lsmdc1010_TITANIC-77838,9524,Crew members lift the lifeboat onto long oars set up like a ramp. Someone,Crew members lift the lifeboat onto long oars set up like a ramp.,Someone,gold,unleashes another explode of the energy and the dragon.,\"is flipping failed and out fast - ski, looking falls more flight.\",runs through a doorway.,strips down sword and takes a straight rope.\n5492,lsmdc1010_TITANIC-77838,9485,Someone steps on a piece of broken banister and falls. He,Someone steps on a piece of broken banister and falls.,He,gold,stops and looks and we see someone and someone walking over to watch each other as they start to play.,\"stands, picks up the gun, and runs after them.\",\"falls down, leaving the door behind her, seizing it in a strange, obese manner.\",reads out the scene.\n5493,lsmdc1010_TITANIC-77838,9520,\"Someone reaches around the grate with the key, but misses the lock. He\",\"Someone reaches around the grate with the key, but misses the lock.\",He,gold,snatches a magazine from his hand and pulls off the invisibility cloak.,sprints through the desert onto the main street.,steps out of the restroom and watches someone with it as he walks in.,slips the key into the lock.\n5494,lsmdc1010_TITANIC-77838,9516,Someone pushes someone through the shoulder - high water toward the railing. Someone,Someone pushes someone through the shoulder - high water toward the railing.,Someone,gold,leaps toward him then lifts him to his feet.,grabs the railings and climbs to another locked gate.,removes the boat doors.,approaches the ship and someone frowns.\n5495,lsmdc1010_TITANIC-77838,9486,\"He stands, picks up the gun, and runs after them. People\",\"He stands, picks up the gun, and runs after them.\",People,gold,dance ahead of them.,rush onto the truck.,manage to lower the bus.,run to the bottom of the staircase.\n5496,lsmdc1010_TITANIC-77838,9475,\"Someone leaps from the boat and hangs from the ship's rail, several decks below someone. Two crew members\",\"Someone leaps from the boat and hangs from the ship's rail, several decks below someone.\",Two crew members,gold,take their seats and stand near the churning waters below.,kick their feet toward the shore.,are also up and distraught.,pull her on board.\n5497,lsmdc1010_TITANIC-77838,9474,\"Suddenly, someone steps to the edge of the lifeboat. Someone\",\"Suddenly, someone steps to the edge of the lifeboat.\",Someone,gold,runs her hand through someone's hair and races over to the outside mirror.,cradles the luck on the ship.,'d been lying dead on the line.,\"leaps from the boat and hangs from the ship's rail, several decks below someone.\"\n5498,lsmdc1010_TITANIC-77838,9536,The woman hands the girl to someone. People,The woman hands the girl to someone.,People,gold,break through the mics.,wrap a red ribbon.,and his mother watch him.,run for the smoking room.\n5499,lsmdc1010_TITANIC-77838,9509,\"As they run in the opposite direction, a man, the boy's father, steps into the hall. The man\",\"As they run in the opposite direction, a man, the boy's father, steps into the hall.\",The man,gold,drops the blank coin into the barrel of his gun and cocks up his opponent.,shakes the hand under the water and washes over the bank's head by foot.,grins demurely at someone as he dances and another boy does the same.,\"grabs the boy from someone, then knocks someone against a wall.\"\n5500,lsmdc1010_TITANIC-77838,9535,\"Someone hands the girl to a woman, climbs into the lifeboat, and sits. The woman\",\"Someone hands the girl to a woman, climbs into the lifeboat, and sits.\",The woman,gold,steps forward on the raft and turns with her neuralyzer at her own side.,launches the massive demon towards the human craft.,hands the girl to someone.,is now facing drinks on her double bed.\n5501,lsmdc1010_TITANIC-77838,9530,Someone gazes downward and steps back toward the edge of the ship. He,Someone gazes downward and steps back toward the edge of the ship.,He,gold,\"breathes in, then walks away and steps out of the shadows.\",\"looks to his right, then at the crowd of passengers.\",peeks in at the water tower as the ship peers under one ship.,\"glances at someone, who's also practicing.\"\n5502,lsmdc1010_TITANIC-77838,9537,People run for the smoking room. Someone,People run for the smoking room.,Someone,gold,\"is wearing black leather trousers, a blue jacket, and a bonnet hat and bag one looking out of a window.\",enters outside holding two coffees.,\"shoots a match into the manila envelope, which fills a crumpled tin cup.\",\"stands by the fireplace, gazing at a painting.\"\n5503,lsmdc1010_TITANIC-77838,9515,They pull themselves along a wall toward the stairwell. Someone,They pull themselves along a wall toward the stairwell.,Someone,gold,beams at someone as she steps through the apartment.,\"kicks the door shut, but someone hurls him out of a sink.\",reaches out to hold the unopened spring from his arms.,pushes someone through the shoulder - high water toward the railing.\n5504,lsmdc1010_TITANIC-77838,9518,The water reaches their feet. He,The water reaches their feet.,He,gold,washes across their arms.,\"tries several keys in the lock, as water swirls around them.\",steps away as someone paddles his boat further into a prow.,changes by turning springs to customized up the tiles.\n5505,lsmdc1010_TITANIC-77838,9511,\"The man picks up a suitcase, then gapes at the door, which bursts. Water\",\"The man picks up a suitcase, then gapes at the door, which bursts.\",Water,gold,\"he equipment, as it crosses a hall, he slips out the energy shaft which he staggers uncomfortably out to his feet.\",\"into the room, he lifts his reflection at the reflection from a window above.\",\"rushes in, knocking the man over.\",\"black cloud of dust hangs, waiting for another bullet.\"\n5506,lsmdc1010_TITANIC-77838,9481,\"They kiss, then hug. Someone\",\"They kiss, then hug.\",Someone,gold,pulls his coat off and hurries out to the water.,presses them into her own.,gazes down at them from an upper landing.,skiis and wraps her arms around him.\n5507,lsmdc1010_TITANIC-77838,9513,\"A wave knocks them over, and rushing water carries them away. Someone\",\"A wave knocks them over, and rushing water carries them away.\",Someone,gold,gazes into the sky.,stands on the grass as the boat boards another ship.,struggles against the current toward a stairwell.,retracts through a clearing in the frost in the ghetto.\n5508,lsmdc1010_TITANIC-77838,9484,Someone tears down the stairs after them. Someone,Someone tears down the stairs after them.,Someone,gold,lumbers frantically through the stacks of papers.,walks into someone.,steps on a piece of broken banister and falls.,rests her chin against her son's chest.\n5509,lsmdc1010_TITANIC-77838,9470,She gazes back at someone. Someone,She gazes back at someone.,Someone,gold,moves the machine at the man.,\"looks to her right, where the young girl waves to her father while her sister cries.\",\"lowers her frustrated gaze, signaling at the store and newspaper.\",\"leans her head against her shoulder, then turns to face down.\"\n5510,lsmdc1010_TITANIC-77838,9507,They turn and run back up the passageway. They,They turn and run back up the passageway.,They,gold,stop as water rushes into the passageway ahead of them.,wait for the target.,appear.,raised off the road.\n5511,lsmdc1010_TITANIC-77838,9528,\"Someone peers down at a crying young girl, then walks away. Inside, people\",\"Someone peers down at a crying young girl, then walks away.\",\"Inside, people\",gold,put her head on his shoulder.,\"are sitting at the table, watching, sitting on a bench.\",run up a staircase.,follow him and someone in their inner compartment.\n5512,lsmdc1010_TITANIC-77838,9476,Two crew members pull her on board. Someone,Two crew members pull her on board.,Someone,gold,hustles at the scene as the helicopter arrives at the airport.,uncovers her upturned dark eyes.,stands in a court with one arm and two attache cases.,runs along the deck.\n5513,lsmdc1010_TITANIC-77838,9496,He chuckles to himself as someone appears. People,He chuckles to himself as someone appears.,People,gold,run down a passageway.,\", his face changes to this man - - for a good smile, she drops her eyes then walks towards the tv.\",\"lie dead in the water, having a snack.\",\"huddles against the white wall, her head hammering down the hall.\"\n5514,lsmdc1010_TITANIC-77838,9479,Someone runs along the lower deck. Someone,Someone runs along the lower deck.,Someone,gold,peers hopelessly as they prepare for the cross.,was dragged to a post.,\"passes around someone, then back into the corridor between someone standing outside a surface.\",\"rushes inside, then runs down the grand staircase.\"\n5515,lsmdc1010_TITANIC-77838,9471,\"On deck, another crew member with both arms raised out at his sides yells orders. Someone\",\"On deck, another crew member with both arms raised out at his sides yells orders.\",Someone,gold,\", which is now 10.\",\"gazes back up at someone, who still stands next to someone.\",walks up into the bank by a tree.,\"his forearm, and an arrow in the other's back, the king someone aims the staff at someone.\"\n5516,lsmdc1010_TITANIC-77838,9482,\"Someone gazes down at them from an upper landing. Stepping up to him, someone\",Someone gazes down at them from an upper landing.,\"Stepping up to him, someone\",gold,points her arms as someone comes fully on to a glass room.,lowers her cell from her chest and peers through a doorway.,looks down at them as he watches someone start to climb up.,\"glances down, then grabs someone's shoulder and pulls him away.\"\n5517,lsmdc1010_TITANIC-77838,9512,\"Water rushes in, knocking the man over. Water\",\"Water rushes in, knocking the man over.\",Water,gold,\"goes into the camp and crosses the enclosure with a banana, then head outside.\",rushes after them as they run down the passageway.,covers his ears then turn.,and empty vehicles home.\n5518,lsmdc1010_TITANIC-77838,9529,\"Inside, people run up a staircase. A man falls into the water, another\",\"Inside, people run up a staircase.\",\"A man falls into the water, another\",gold,fits the others out.,crawls around his waist.,crowding and party near someone's observation area.,dangles from the rope.\n5519,lsmdc1010_TITANIC-77838,9483,\"Stepping up to him, someone glances down, then grabs someone's shoulder and pulls him away. As they step away from the railing, someone\",\"Stepping up to him, someone glances down, then grabs someone's shoulder and pulls him away.\",\"As they step away from the railing, someone\",gold,points at his body and body.,throws the crowbar from across the ship.,\"grabs someone's gun from its holster, then runs toward the stairs.\",leans into the group.\n5520,lsmdc1010_TITANIC-77838,9502,\"People step into another passageway. At the far end, a small boy\",People step into another passageway.,\"At the far end, a small boy\",gold,lies on the bed.,stands against a wall.,slides off his board.,hits a woman sitting on a chair opposite someone.\n5521,lsmdc1010_TITANIC-77838,9505,Sparks shoot from an overhead pipe. Someone,Sparks shoot from an overhead pipe.,Someone,gold,\"picks up the boy, then watches as water shoots in from cracks.\",watches someone in his wheelchair.,'s mace is shown on his neck.,eyes the tracker and touches his palm.\n5522,lsmdc1010_TITANIC-77838,9490,\"People run down another staircase, then jump into waist - high water. Someone\",\"People run down another staircase, then jump into waist - high water.\",Someone,gold,\"rushes into the majority, covering their arms, and wrists.\",runs into the water.,lifts down underneath the bright bridge gap.,nervously strokes her sister's back and wave at his hands.\n5523,lsmdc1010_TITANIC-77838,9506,\"Someone picks up the boy, then watches as water shoots in from cracks. They\",\"Someone picks up the boy, then watches as water shoots in from cracks.\",They,gold,turn and run back up the passageway.,\"hand shakes the tray aside then puts up his hands, stroking the lad's hair.\",see the eye from someone paper.,suddenly as it lands amongst the mound of alien blue balls he thrown over his shoulder and his pistol emerges.\n5524,lsmdc1010_TITANIC-77838,9469,\"Someone looks around herself, then up at the ropes running through the pulleys. She\",\"Someone looks around herself, then up at the ropes running through the pulleys.\",She,gold,makes her way towards the front.,gazes back at someone.,climbs out of the lift to meet her.,\"alongside her when she unveils the three supports, she holds on to them and she yanks the necklace, until it floats loose.\"\n5525,lsmdc1010_TITANIC-77838,9495,\"Someone climbs several steps, then stops. He\",\"Someone climbs several steps, then stops.\",He,gold,puts the soundboard once in.,\"lifts the bell to someone's shoulders, then hands the package toward someone.\",grabs an arm around someone's neck.,chuckles to himself as someone appears.\n5526,lsmdc1010_TITANIC-77838,9531,\"Someone stands at attention and salutes, then holds the gun to his own head. He\",\"Someone stands at attention and salutes, then holds the gun to his own head.\",He,gold,\"slides someone's coat into the car, knocks someone hobbles out.\",pulls away from the fortress.,hammers a fist into the shin of his own holster.,fires and falls into the ocean.\n5527,lsmdc1010_TITANIC-77838,9472,\"Someone gazes back up at someone, who still stands next to someone. The light briefly\",\"Someone gazes back up at someone, who still stands next to someone.\",The light briefly,gold,melts away from his foot.,illuminates his temple.,illuminates a bluish glow in the distance.,illuminates someone's face.\n5528,lsmdc1010_TITANIC-77838,9501,\"Small waves push plates and silverware, as rising water covers the tables and chairs. People\",\"Small waves push plates and silverware, as rising water covers the tables and chairs.\",People,gold,\"back, someone rushes over to see someone writing, staring at someone.\",use sunscreen on their hands.,\", someone removes his helmet and glances at someone as he stalks off.\",step into another passageway.\n5529,lsmdc1010_TITANIC-77838,9514,Someone struggles against the current toward a stairwell. They,Someone struggles against the current toward a stairwell.,They,gold,continues to run for the silver lever system.,\"in the background, someone knees vanity mirror in a courtly style fashion.\",pull themselves along a wall toward the stairwell.,\"fixes on the large module, which looks down.\"\n5530,lsmdc1010_TITANIC-77838,9497,People run down a passageway. They,People run down a passageway.,They,gold,\"turn, then run down more stairs.\",group walks to a tower of wood.,twins hang the rack out.,are interviewed while the camera gives them a hug and shows off their skills.\n5531,lsmdc1010_TITANIC-77838,9504,\"Water pours down the steps, and then they run towards the boy. Sparks\",\"Water pours down the steps, and then they run towards the boy.\",Sparks,gold,\"stands with his ax, lifts the figure, then walks away.\",shoot from an overhead pipe.,\"until they both fall, and down the rocks and shake on their hands, as the boys cuff themselves on the coffin.\",\"shouts into his opponent, then turns to someone after the people.\"\n5532,lsmdc1010_TITANIC-77838,9503,\"At the far end, a small boy stands against a wall. Water pours down the steps, and then they\",\"At the far end, a small boy stands against a wall.\",\"Water pours down the steps, and then they\",gold,run towards the boy.,disappear into scene of the half fireplace.,firework in then it onto the ground.,cuddle out into the tub.\n5533,lsmdc1010_TITANIC-77838,9521,She swims across the water which nearly reaches the ceiling. She,She swims across the water which nearly reaches the ceiling.,She,gold,\"continues underwater, no attempt to defend it.\",\"stops at the stairs, then turns.\",\"peers into someone's troubled grounds, where it has been take away the equally unnerved man.\",\"is in his basement, trapped by the restraints, obviously in german.\"\n5534,lsmdc1010_TITANIC-77838,9527,He climbs a platform and peers over the crowd. Someone,He climbs a platform and peers over the crowd.,Someone,gold,holds his sweatpants hand in front of her face.,peeks around the corner and looks at the ceiling.,\"stares at them nervously beyond guards, who hold two fancy hands spread in the middle.\",\"peers down at a crying young girl, then walks away.\"\n5535,lsmdc1010_TITANIC-77838,9508,\"They stop as water rushes into the passageway ahead of them. As they run in the opposite direction, a man, the boy's father,\",They stop as water rushes into the passageway ahead of them.,\"As they run in the opposite direction, a man, the boy's father,\",gold,steps into the hall.,rides a muddy board across the ocean.,can stride across a long passageway.,spots someone and dejectedly watching from the upstairs doorway.\n5536,lsmdc1010_TITANIC-77838,9493,Someone looks around himself at the rising water. People,Someone looks around himself at the rising water.,People,gold,run up snowy hill.,run through the dining room.,give him a glass from a glass.,flood through the rapids.\n5537,lsmdc1010_TITANIC-77838,9532,He fires and falls into the ocean. Someone,He fires and falls into the ocean.,Someone,gold,run back to full length with his biker troop.,threads through the skates; bubble.,turned and then runs to the crowd.,arrives at the top of a pool.\n5538,lsmdc1010_TITANIC-77838,9477,Someone runs along the deck. Someone,Someone runs along the deck.,Someone,gold,\"turns, then runs along the main deck, past passengers and crew members.\",keeps his rifle upright.,spikes his ankle and stick it over a makeshift platform.,\"stares at the steward, playing someone.\"\n5539,lsmdc1010_TITANIC-77838,9498,\"They turn, then run down more stairs. Stopping, someone\",\"They turn, then run down more stairs.\",\"Stopping, someone\",gold,chases at the furtive approach.,keeps his eyes on the horn.,presses his finger to his mouth.,heads back out of the water.\n5540,lsmdc1010_TITANIC-77838,9488,Someone aims but does n't fire. He,Someone aims but does n't fire.,He,gold,mimes shooting but a bullet hits a thread his left breast got caught.,\"knocks a man out of his way, then shoots again.\",pushes way of the line for herself.,\"grabs his other, then swipes up his sleeve.\"\n5541,lsmdc1010_TITANIC-77838,9522,\"He swims to the stairs and they both climb. At the head of a crowd, people\",He swims to the stairs and they both climb.,\"At the head of a crowd, people\",gold,pull on a waterfront boardwalk.,are lying atop the cavern.,hop over a barrier.,face another television on tv.\n5542,lsmdc1010_TITANIC-77838,9468,Someone looks from someone to the descending boat. Someone,Someone looks from someone to the descending boat.,Someone,gold,\"sits and watches, frowning suspiciously.\",\"looks around herself, then up at the ropes running through the pulleys.\",takes a shudder from the bay.,smiles over at him.\n5543,lsmdc1010_TITANIC-77838,9500,\"In the dining room, a glass door swings slowly through the water. Small waves\",\"In the dining room, a glass door swings slowly through the water.\",Small waves,gold,\"push plates and silverware, as rising water covers the tables and chairs.\",fly through the air.,pop open at the end of the tiled hall.,drift across the tables as someone and someone walk down a hallway.\n5544,lsmdc1010_TITANIC-77838,9526,A man knocks him into a running crowd. He,A man knocks him into a running crowd.,He,gold,bounces off a pole between him and runs.,jumps down and goes to his sidelines.,climbs a platform and peers over the crowd.,\"stops from the ladder, but aims at the sheers shadow.\"\n5545,lsmdc1010_TITANIC-77838,9487,People run to the bottom of the staircase. Someone,People run to the bottom of the staircase.,Someone,gold,aims but does n't fire.,run into an elevator.,run past the crowd.,dives off the track repeatedly.\n5546,lsmdc1010_TITANIC-77838,9510,\"The man runs off with the boy, and people run after him. The man\",\"The man runs off with the boy, and people run after him.\",The man,gold,stops playing his guitar.,looks at the man and grabs his pants.,gets in the truck and cuddles to catch it.,\"picks up a suitcase, then gapes at the door, which bursts.\"\n5547,lsmdc1010_TITANIC-77838,9478,\"Someone turns, then runs along the main deck, past passengers and crew members. Someone\",\"Someone turns, then runs along the main deck, past passengers and crew members.\",Someone,gold,saunters down the street's perimeter and follows someone.,mounts the floating boards and someone approaches the side.,runs along the lower deck.,'s eyes widen as a bystander dismounts from the helicopter.\n5548,lsmdc1010_TITANIC-77838,9473,\"The light briefly illuminates someone's face. Suddenly, someone\",The light briefly illuminates someone's face.,\"Suddenly, someone\",gold,reaches into someone's coat.,flies alone in the room in the beginning.,steps to the edge of the lifeboat.,lies completely on the floor under his arm.\n5549,anetv_rJpFVvho0o4,16097,A Total Immersion Swimming logo and Total Immersion Freestyle Demo by Shinji Takeuchi appear on screen. Takeuchi,A Total Immersion Swimming logo and Total Immersion Freestyle Demo by Shinji Takeuchi appear on screen.,Takeuchi,gold,cuts his chest and does sit ups while making shots.,portable wrestlers lift one and move up the steps with his hands leg elevated but we miss his jump and talk about foos with the,swims the length of an indoor pool.,loads a 7 bowling balls.\n5550,anetv_rJpFVvho0o4,16098,Takeuchi swims the length of an indoor pool. The video,Takeuchi swims the length of an indoor pool.,The video,gold,begins with the diver shown in a swimming pool.,is someone as a woman is jogging to show off a braid.,has a long gem and a rocket leading his location.,changes to an underwater view of the takeuchi swimming.\n5551,anetv_rJpFVvho0o4,3111,A close up of a pool is shown followed by a person swimming around. The person,A close up of a pool is shown followed by a person swimming around.,The person,gold,continues playing the water continuously.,moves up and down the pool while the camera captures them from several angles.,falls over the pool and then begins throwing the ball across the pool in slow motion.,continues moving around quickly on the beach while various dancing movements are shown as well as landscapes.\n5552,anetv_rJpFVvho0o4,3112,The person moves up and down the pool while the camera captures them from several angles. The person,The person moves up and down the pool while the camera captures them from several angles.,The person,gold,continues moving around with one kneeling and cutting along the wall.,continues demonstrating how to properly push the pucks around the sink while the camera captures the movements.,continues swimming around back and fourth.,hops all over the beach and continues performing fast while speaking to one another.\n5553,lsmdc3080_THIS_MEANS_WAR-37357,7339,\"Left behind with a pie in his hand, someone lets out a sigh. Nana\",\"Left behind with a pie in his hand, someone lets out a sigh.\",Nana,gold,\"gryffindor, someone enters the darkness.\",walks someone out to a stable where photographs clutter a wall.,\"of church, someone watches him walk in traditional fashion.\",\"tracks behind someone, who rubs his forehead with a headlock and rubs his sweating jaw.\"\n5554,anetv_jikOPvJPU-c,4896,A young woman stands in a kitchen talking to a camera. She,A young woman stands in a kitchen talking to a camera.,She,gold,demonstrates how to dry her hair.,demonstrates how to use the machine on the baseboards.,starts to make a sandwich.,picks up a spoon slowly to wipe the sink.\n5555,anetv_jikOPvJPU-c,14807,\"She spread the mayo on the bread, put cheese, on the black cutting board, beside the knife is a tomato, she put the tomato on the bread, put the cheese in the plastic bag, shows the sandwich, placed the other side of the bread on top of the sandwich. She moved to the stove, the black pan is on the stove, she put the butter using a bread knife, covered the kettle with foil, placed the bread on the pan and press it using the kettle with foil, she\",\"She spread the mayo on the bread, put cheese, on the black cutting board, beside the knife is a tomato, she put the tomato on the bread, put the cheese in the plastic bag, shows the sandwich, placed the other side of the bread on top of the sandwich.\",\"She moved to the stove, the black pan is on the stove, she put the butter using a bread knife, covered the kettle with foil, placed the bread on the pan and press it using the kettle with foil, she\",gold,\"scrubbed on the tomato, put it in the bowl, frying and dumped the noodles off the plate.\",\"stood beside the stove while she waits, then turn over the bread, press the kettle with foil on it.\",\"started to get the skin removed, and took the noodles, and hung the top.\",looked very tired and enjoy how to do them when the door was.\n5556,anetv_jikOPvJPU-c,14808,\"She moved to the stove, the black pan is on the stove, she put the butter using a bread knife, covered the kettle with foil, placed the bread on the pan and press it using the kettle with foil, she stood beside the stove while she waits, then turn over the bread, press the kettle with foil on it. She placed the bread on the plate, cut it and half, she\",\"She moved to the stove, the black pan is on the stove, she put the butter using a bread knife, covered the kettle with foil, placed the bread on the pan and press it using the kettle with foil, she stood beside the stove while she waits, then turn over the bread, press the kettle with foil on it.\",\"She placed the bread on the plate, cut it and half, she\",gold,deflect it and then places it onto the plate before heading off.,threw it together and is able to cut it for him.,is sitting on the green chair and started eating her sandwich.,get the all all into a little where and put it into another bag till it broke.\n5557,anetv_jikOPvJPU-c,4897,She starts to make a sandwich. She,She starts to make a sandwich.,She,gold,puts the sandwich on a pan and cooks it.,puts on a blackened top.,gets out from the car and starts off in the garden.,\"gets out of the car and starts to wipe the top, cheese on it.\"\n5558,lsmdc0032_The_Princess_Bride-66445,7838,Someone helps someone raise someone just high enough so he can see for himself. He,Someone helps someone raise someone just high enough so he can see for himself.,He,gold,smiles then crosses to his open door.,shakes his head from side to side.,slips off the deck onto the dark side and flies out.,\"heaves himself into the water, and they drop into the forest.\"\n5559,lsmdc0032_The_Princess_Bride-66445,7837,\"He is watching his fingers, one of which twitches now. Someone\",\"He is watching his fingers, one of which twitches now.\",Someone,gold,\"open a goblet of blood, then keeps back as someone approaches with his arm draped around someone.\",is busy robbers tend a man to someone.,\"flirts with someone standing in the middle of the room, reading numerous copies of danger as they enter the house.\",helps someone raise someone just high enough so he can see for himself.\n5560,anetv_PZ1FVhgTRWU,16158,She does a gymnastic routine on the balance beam. She,She does a gymnastic routine on the balance beam.,She,gold,walks over to the beam and dives into the beam.,holds onto the balance beam and begins twirling around many times.,helps her step up and then flips her hands ecstatically.,dismounts and lands on a mat.\n5561,anetv_PZ1FVhgTRWU,10020,A girl jumps onto a balance beam. She,A girl jumps onto a balance beam.,She,gold,does a gymnastics routine on the beam.,does a gymnastics routine on the balance beam.,performs a baton routine with batons to her stomach.,jumps into a balance beam.\n5562,anetv_PZ1FVhgTRWU,16157,A woman jumps onto a balance beam. She,A woman jumps onto a balance beam.,She,gold,does a gymnastic routine on the balance beam.,climbs the balance beam and lands on a mat onto a mat in front of her.,flips off the hula beam and lands on it.,does a gymnastics routine on the balance beam.\n5563,anetv_PZ1FVhgTRWU,10021,She does a gymnastics routine on the balance beam. She,She does a gymnastics routine on the balance beam.,She,gold,does a flip off the balance beam and lands on a mat.,turns jump beam and lands on a mat.,continues dancing and does cartwheels with her arms in the air.,mounts a balance beam during her routine then jumps off the beam.\n5564,anetv_gVMG_FHDrvo,8734,A man stands on the ropes and jumps onto another man. People,A man stands on the ropes and jumps onto another man.,People,gold,crowd the naked athletes are shown preparing to use the rope in bloodied and in the hammock.,swinging their skateboards on a performance.,run after the obstacle.,sit in the stands and watch them.\n5565,anetv_gVMG_FHDrvo,7587,A toy wrestling man stands in a toy ring and another is on the outside of the ring in white pants. The one in white,A toy wrestling man stands in a toy ring and another is on the outside of the ring in white pants.,The one in white,gold,\"picks it up, goes next throw it over, catches it, pushing them up and hit the pins.\",jumps in the ring on the one in red.,is beginning to brush his teeth.,continues to follow them.\n5566,anetv_gVMG_FHDrvo,8733,An animation of two people fighting in a boxing ring is shown. A man,An animation of two people fighting in a boxing ring is shown.,A man,gold,stands on the ropes and jumps onto another man.,jumps on a boy getting ready to grab his performance before throwing it back.,is holding a hockey set and starts walking into a large indoor pool.,walks in and out of frame and throws a ball off into the distance.\n5567,anetv_gVMG_FHDrvo,7588,The one in white jumps in the ring on the one in red. Both,The one in white jumps in the ring on the one in red.,Both,gold,switch to the lights then run on to the right.,use the rope around a track and bend into a pit and start a race.,fall to the ground and lay there.,people are throwing in the pool in the room.\n5568,anetv_twJ2uE1GS2I,19263,A woman is working in a kitchen. She,A woman is working in a kitchen.,She,gold,\"is thoroughly sexy, dancing, then drys her hands.\",is pouring ingredients into a bowl on a chopping stone bread.,shows how to mix ingredients for a chocolate cake.,puts on a pot and licks her big cream cone.\n5569,anetv_twJ2uE1GS2I,17927,\"The woman add hot water in the chocolate, sieved the flour in a bowl, add vanilla extract, pour sugar and egg and butter, oil and chocolate mixture. The woman\",\"The woman add hot water in the chocolate, sieved the flour in a bowl, add vanilla extract, pour sugar and egg and butter, oil and chocolate mixture.\",The woman,gold,mixed all the ingredients put it in a pan and put in the oven.,is in front of a tournament.,mix the lemonade as the woman mix them into a pan and then dips him out in a ceramic cup.,\"mixing adds pasta mix with the spoon, pour something, and pour ice into a bowl.\"\n5570,anetv_twJ2uE1GS2I,19264,She shows how to mix ingredients for a chocolate cake. Then she,She shows how to mix ingredients for a chocolate cake.,Then she,gold,adds the brush to the cake.,adds a cookie dough into a pan.,adds to the wallpaper to clean her hair.,bakes it and shows how to frost it.\n5571,anetv_xBR7YEKPgDA,19047,A group of players are running across a field. They,A group of players are running across a field.,They,gold,hit the ball and get it into the goal.,get in the sand and jump on their legs.,are engaged in a game of polo.,begin to play a game of tug of war.\n5572,anetv_xBR7YEKPgDA,19048,They hit the ball and get it into the goal. They,They hit the ball and get it into the goal.,They,gold,speaks together on a wall.,hit the ball back and forth over the surface.,are engaged in a game of field hockey.,engage in a game of beach volleyball.\n5573,anetv_xBR7YEKPgDA,19118,A group of men play field hockey in a professional game on a vast field in front of an audience in bleachers. A man in a number nine jersey,A group of men play field hockey in a professional game on a vast field in front of an audience in bleachers.,A man in a number nine jersey,gold,hits a goal and throws up his arms in reaction.,delivers a ball on a court to start the game.,stands off the court and talks to the camera in between the players in white dodgeball.,spins in the air and throws a ball into the air.\n5574,anetv_i4SvqrGYH-Q,13593,\"The older man then throws the ball to the other end and the two begin playing beer pong. After, the ball is dipped in the water, the man\",The older man then throws the ball to the other end and the two begin playing beer pong.,\"After, the ball is dipped in the water, the man\",gold,added the ball from the table.,and woman continue to play.,takes several more times throwing the ball until all of the cups are gone.,wearing the red shirt hits him again.\n5575,anetv_i4SvqrGYH-Q,13595,\"Breaks are taken in between the game, and the man begins to talk to his partner standing next to him before his turn eventually begins. It is now night time, and the man\",\"Breaks are taken in between the game, and the man begins to talk to his partner standing next to him before his turn eventually begins.\",\"It is now night time, and the man\",gold,is sitting down talking while holding something in this cup.,\"continues walking along the street next to him, walking his hands and pointing around but not at all.\",puts a cigarette on the tube until he stops the car with the little wet orange.,is shocked.\n5576,anetv_i4SvqrGYH-Q,19068,He speaks to another man standing next to him as he continue playing. The man,He speaks to another man standing next to him as he continue playing.,The man,gold,continue the bow and continue to walk along the street.,throws several more balls while others watch on the side as well as showing a close up of him and a dog.,does a flip and the boy pushes the other along the field.,moves hands and points again and leads into him speaking to the camera about the game.\n5577,anetv_i4SvqrGYH-Q,19067,A man is seen standing behind a pong table throwing a ball to the other side. He,A man is seen standing behind a pong table throwing a ball to the other side.,He,gold,moves the chips over the stick as the cups went down.,speaks to another man standing next to him as he continue playing.,hits the ball with the mallet using it to hit his car with it.,pushes more toys into the box and throws it away.\n5578,anetv_i4SvqrGYH-Q,13592,Two males are outside in the yard standing behind a table with red cups on both ends. The older man then throws the ball to the other end and the two,Two males are outside in the yard standing behind a table with red cups on both ends.,The older man then throws the ball to the other end and the two,gold,continue hitting the balls to a pile of other sticks.,continue making a dash for the ball.,begin playing beer pong.,begin shooting each other again and again.\n5579,anetv_i4SvqrGYH-Q,13594,\"After, the ball is dipped in the water, the man takes several more times throwing the ball until all of the cups are gone. Breaks are taken in between the game, and the man\",\"After, the ball is dipped in the water, the man takes several more times throwing the ball until all of the cups are gone.\",\"Breaks are taken in between the game, and the man\",gold,is sitting on the ground and drunk.,is second - fiving the player.,slumped over with his opponent on one knee using the other serve.,begins to talk to his partner standing next to him before his turn eventually begins.\n5580,lsmdc3086_UGLY_TRUTH-6131,16749,\"At the doctor's office, someone waits. Someone\",\"At the doctor's office, someone waits.\",Someone,gold,glares across her desk at someone.,turns off the lamp and nods.,turns the page and examines his name on headsets.,finds someone looking deeply asleep.\n5581,anetv_Zv78Or7fW5U,9592,She jumps into a large sand pit when a person raises a flag. Her run,She jumps into a large sand pit when a person raises a flag.,Her run,gold,is shown again several more times.,is shown again in slow motion and celebrating.,continues to run as it runs across the field.,is seen spinning up and down on the field as well as onlookers.\n5582,anetv_Zv78Or7fW5U,13485,We see an image of a foot on a white bar and see a repeat in slow motion of the ladies jump. The land,We see an image of a foot on a white bar and see a repeat in slow motion of the ladies jump.,The land,gold,lifts then into the air.,bends forward as we see her scores on the screen.,is separated by the cloud of blood.,ends with a first mans suit.\n5583,anetv_Zv78Or7fW5U,9591,A woman is seen standing ready before a track. She,A woman is seen standing ready before a track.,She,gold,jumps around a beam and lands on a beam.,jumps into a large sand pit when a person raises a flag.,is shown with the person hula hoops as well as hoops.,begins running up and down a beam.\n5584,anetv_Zv78Or7fW5U,13484,A man holds up a white flag and the lady walks away. We,A man holds up a white flag and the lady walks away.,We,gold,see a calf running out behind the drills.,see the ending title screen.,see an image of a foot on a white bar and see a repeat in slow motion of the ladies jump.,outside and the man jumps holding a little kite and handing the kite to the fireworks.\n5585,anetv_kTSuw4T-_Nk,2951,The camera pans all around the people sitting and leads to one putting an objects on his leg. She,The camera pans all around the people sitting and leads to one putting an objects on his leg.,She,gold,continues cutting the grass with two different hands in the end.,continues speaking while people continues speaking.,rips off the object showing the hair as well as his leg and others laughing.,walks in to the circle and flips it back and forth.\n5586,anetv_kTSuw4T-_Nk,2950,A woman is seen sitting in a chair looking down with others beside her. The camera,A woman is seen sitting in a chair looking down with others beside her.,The camera,gold,pans all around the people sitting and leads to one putting an objects on his leg.,pans around a part of her tattoo and leads into her pouring into the camera and standing up.,flashes between the girl and woman smiling in the mirror.,continues to look while riding on front others also dressed in the snow.\n5587,anetv_eDm8bUVWxAM,4851,A bow and arrow is set up in the grass. A man,A bow and arrow is set up in the grass.,A man,gold,is sitting inside a pumpkin.,picks up a black bag and continues to paint.,shoots a bow and arrow while in the water.,talks to the camera with a man talking to the camera.\n5588,anetv_ko89yQozE-4,10048,\"A woman is outside over a board. she and a friend, then several others\",A woman is outside over a board.,\"she and a friend, then several others\",gold,are outside.,run before a house.,on a boat are at a boat.,are shown in images and videos being silly together.\n5589,anetv_ko89yQozE-4,5910,Two girls are sailing on a lake. They,Two girls are sailing on a lake.,They,gold,is going to surfing on a boat and underwater.,wave and wave over the water.,are having a great time and are racing each other.,start jumping in a park by the water and run skiing down the river.\n5590,anetv_ko89yQozE-4,10049,\"She and a friend, then several others are shown in images and videos being silly together. they\",\"She and a friend, then several others are shown in images and videos being silly together.\",they,gold,watch the game as she speaks to the camera.,put on the fingernails and one another in color and color.,go parasailing across the ocean on boats.,begin it the same day.\n5591,anetv_LN8UWHvoELs,18649,He is holding two drum sticks over a single drum. He,He is holding two drum sticks over a single drum.,He,gold,catches while another man is demonstrating the game.,kicks on the bongos as he moves between them.,picks up the drums and sits on a stool.,\"begins playing, showing how it is done.\"\n5592,anetv_LN8UWHvoELs,18648,A man is seated inside a room. He,A man is seated inside a room.,He,gold,is playing an accordian.,is holding two drum sticks over a single drum.,puts them down on the floor and throws them down again.,starts preparing a rubik's cube.\n5593,anetv_bfk3xsTt0XA,14281,Video clips of different beach soccer teams taking shots at the goal. A soccer player in a red uniform,Video clips of different beach soccer teams taking shots at the goal.,A soccer player in a red uniform,gold,takes a shot at the goal from the goalies perspective.,scores a goal with the puck.,threw a ball over the net caught with each player.,stands next to it while being interviewed.\n5594,anetv_bfk3xsTt0XA,14280,Images and video clips of teams playing beach soccer in the sand. Video clips of different beach soccer teams,Images and video clips of teams playing beach soccer in the sand.,Video clips of different beach soccer teams,gold,demonstrate how to play pool.,taking shots at the goal.,play quickly with a few signs.,wins as the words arrow scores are shown.\n5595,anetv_bfk3xsTt0XA,3521,\"A man stands outside, pouring water over his head. Several clips\",\"A man stands outside, pouring water over his head.\",Several clips,gold,\"are shown of teams playing soccer in the sand, kicking and throwing the ball toward the opposing goals.\",are shown of a gymnastics diver being drilled.,sit from four making bed and flips and races across the water.,are shown of the young man throwing the wipe washed in his wake.\n5596,lsmdc3003_40_YEAR_OLD_VIRGIN-1236,17950,The invisible man dog casts a shadow. Someone,The invisible man dog casts a shadow.,Someone,gold,shows the vacuum case on the rack.,casts a spell as he drops the fang.,scampers off in a fall.,takes the last packaged figures of the high shelf and places them in a box.\n5597,anetv_0MyaFtXcTKI,13730,A small child is seen wandering around a playground while the camera follows closely behind. The boy,A small child is seen wandering around a playground while the camera follows closely behind.,The boy,gold,walks around indoors and does several segments while upstream smiling and speaking to the camera.,continues moving continuously around the yard and ends with a person speaking to the camera.,plays with several other kids on the playground and is seen climbing around the sides and going down the slide.,moves in and out of frame while the man watches the dog again.\n5598,anetv_0MyaFtXcTKI,13731,The boy plays with several other kids on the playground and is seen climbing around the sides and going down the slide. More clips,The boy plays with several other kids on the playground and is seen climbing around the sides and going down the slide.,More clips,gold,are shown of the men playing a game of rock paper scissors.,are shown of the kids playing with one another and laughing to the camera.,are shown of people running along a track while others watch on the side.,are shown of people playing soccer in the end and ending in an instructional video.\n5599,lsmdc0008_Fargo-49980,1947,Someone is at his desk using a blunt pencil to enter numbers onto a form. Beneath the form,Someone is at his desk using a blunt pencil to enter numbers onto a form.,Beneath the form,gold,\"is a piece of carbon paper and beneath that another form copy, which someone periodically checks.\",is a mural with a sword upon it.,\"is a bold, thin sentence with his dark heart.\",is the image of a poster: lettering that are similarly u..\n5600,lsmdc0008_Fargo-49980,1949,But she is already sitting into the chair opposite with a sigh of relieved weight. He,But she is already sitting into the chair opposite with a sigh of relieved weight.,He,gold,hurries back to the bed.,trails off into silence.,places her body right under her.,grabs his staffer's place off someone.\n5601,lsmdc0008_Fargo-49980,1946,\"She sits in the lot, eating a breakfast sandwich. Someone\",\"She sits in the lot, eating a breakfast sandwich.\",Someone,gold,\"are getting on trays of cookies or supper on a table after breakfast, back to someone.\",is at his desk using a blunt pencil to enter numbers onto a form.,takes the phone off the hanger and slides it towards a paper message attached to his radio.,\", with her doe, speaks wearily.\"\n5602,lsmdc0008_Fargo-49980,1945,She leans out of her open window and yells at the order panel. She,She leans out of her open window and yells at the order panel.,She,gold,does a choreographed routine on the balance beam.,\"sits in the lot, eating a breakfast sandwich.\",sets six things down in one eye.,climbs out of bed and stomps to the door.\n5603,lsmdc0008_Fargo-49980,1944,\"Someone drives, gazing out at the road. She\",\"Someone drives, gazing out at the road.\",She,gold,leans out of her open window and yells at the order panel.,pushes her way in.,ducks behind and glances over her shoulder.,glances at someone as he walks into the kitchen.\n5604,anetv_w6ofRgXA0xc,16722,A man in red short is pouring a bottle onto some wood. The man,A man in red short is pouring a bottle onto some wood.,The man,gold,puts some glass and seafood scraping bread on it.,gets down and begins laying on the table.,holds a hose up and down over the woman and the man and the woman.,throws some paper on top of the wood.\n5605,anetv_w6ofRgXA0xc,16723,The man throws some paper on top of the wood. The man,The man throws some paper on top of the wood.,The man,gold,takes off a tape and throws it on the grass.,folds them down and slides the stick to the end.,throws matches at the pile of wood.,walks over wearing the hat and brushes the green.\n5606,lsmdc3060_SANCTUM-29517,4812,\"Lifting his foot, someone finds a hold. Someone\",\"Lifting his foot, someone finds a hold.\",Someone,gold,\"stares at his younger friend, who removes someone's pants.\",\"straightens, pushing himself higher.\",is exposed by two battle cables attached to his tattooed knees.,rips some clothes off.\n5607,lsmdc3060_SANCTUM-29517,4806,Someone's lips spread into a smile and he nods. He,Someone's lips spread into a smile and he nods.,He,gold,moves out of view slowly and closes his eyes.,turns to his backroom companion.,watches tearfully as he looks at him and shrugs.,gives a wide grin.\n5608,lsmdc3060_SANCTUM-29517,4818,\"Someone climbe his body to bridge the gap, with a hand gripping each rock face, someone steps on to his father's thigh, body, and grabs a ledge. Someone\",\"Someone climbe his body to bridge the gap, with a hand gripping each rock face, someone steps on to his father's thigh, body, and grabs a ledge.\",Someone,gold,grits his teeth as someone's weight bears down on him.,\"grips the steering wheel, his face flush and bloody.\",\"dangle protectively over him, joining them on the stretcher.\",brings the back of the suv toward the lake.\n5609,lsmdc3060_SANCTUM-29517,4814,Someone grabs a piece of jutting rock. Someone,Someone grabs a piece of jutting rock.,Someone,gold,\"swings from the congregation, glowing on him.\",\"kisses someone, who nods.\",returns to the bus.,rests his back on the rock.\n5610,lsmdc3060_SANCTUM-29517,4809,\"Someone watches his son head to an eye - level cavity in the rock. Reaching inside, someone\",Someone watches his son head to an eye - level cavity in the rock.,\"Reaching inside, someone\",gold,dips it into his palm for a moment then looks in one of the window grills.,drops one of the pegs and rolls them onto the side of the train.,\"touches a dark, muddy substance, then lifts his fingers to his nose.\",pulls keys from a carton and her hand slides over an envelope.\n5611,lsmdc3060_SANCTUM-29517,4807,\"Pushing out his jaw, he gives a thoughtful look, then abruptly shifts his gaze to a section of the cave's wall near someone. He\",\"Pushing out his jaw, he gives a thoughtful look, then abruptly shifts his gaze to a section of the cave's wall near someone.\",He,gold,pulls out a huge hunk of ham and clings to it.,\"rolls his gloved hand in front of the drop's face, then gently tickles the bars.\",holds it through a beautiful corridor her view.,\"stands, sniffing the air.\"\n5612,lsmdc3060_SANCTUM-29517,4816,He leans against his arm. Someone,He leans against his arm.,Someone,gold,turns to his father and meets his gaze with a broad grin.,gets a line of fruit in his mouth with his fist.,peers up at the intersection.,adverts his tender gaze.\n5613,lsmdc3060_SANCTUM-29517,4810,\"Reaching inside, someone touches a dark, muddy substance, then lifts his fingers to his nose. Smiling, he\",\"Reaching inside, someone touches a dark, muddy substance, then lifts his fingers to his nose.\",\"Smiling, he\",gold,puts his fingers in someone's ear.,climbs out a pair of long stone steps and faces the door.,\"reaches to his computer, and holds up a newspaper.\",turns to his father and smears some of the sludge on his cheek.\n5614,lsmdc3060_SANCTUM-29517,4811,\"He joins someone by the cavity. Later, he and someone\",He joins someone by the cavity.,\"Later, he and someone\",gold,peer through a microscope.,\"climb a narrow gap between two rock faces, pressing their backs to one and gripping the other with their hands and feet.\",sit in a bed of lights while reading a newspaper.,lie collapsed on their bed in their pajamas.\n5615,lsmdc3060_SANCTUM-29517,4819,Someone grits his teeth as someone's weight bears down on him. Someone,Someone grits his teeth as someone's weight bears down on him.,Someone,gold,staggers up and down his face.,pulls up on his way out.,\"opens them, revealing someone.\",pulls himself onto the ledge.\n5616,lsmdc3060_SANCTUM-29517,4813,\"Someone straightens, pushing himself higher. Someone\",\"Someone straightens, pushing himself higher.\",Someone,gold,falls from the chasm.,grabs a piece of jutting rock.,\"finishes the scene, steps out, and softly taps his forearm in the corridor.\",notices someone cuddling someone in his arms.\n5617,lsmdc3060_SANCTUM-29517,4815,Someone rests his back on the rock. He,Someone rests his back on the rock.,He,gold,leans against his arm.,\"dismounts, looking over his shoulder.\",steps toward the lawn.,climbs down the ladder as someone moves closer.\n5618,anetv_4Fxj9ObTMw8,6904,\"A girl leans over a sink, and a boy walks up to talk to her. She\",\"A girl leans over a sink, and a boy walks up to talk to her.\",She,gold,starts laughing and jumping up and down.,picks up a cup from both poles and puts it over a bar.,is now walking up a driveway and rolls on front people.,\"eats ice cream, then marches off with a single person.\"\n5619,anetv_4Fxj9ObTMw8,6905,\"She starts laughing and jumping up and down. The boy seems equally excited, and she\",She starts laughing and jumping up and down.,\"The boy seems equally excited, and she\",gold,comes over and smiles when she comes back in.,throws them around while swinging them as they walk in the fancy building.,snap side by side.,smiles at the camera.\n5620,anetv_Eeq-noKrGwY,19265,A girl in an orange shirt takes a drink of mouth wash. She,A girl in an orange shirt takes a drink of mouth wash.,She,gold,\"scampers leaves, walks into the closet and closes the door.\",\"rinses the toy shower, then continues ironing.\",swishes it around in her mouth and spits it out into a sink.,has a razor on the side of her face.\n5621,anetv_vcE8e-fQBhs,1812,The video leads into several shots of people performing impressing jumps and flips off of a high dive. More and more people jump off the various heights of the dives and two,The video leads into several shots of people performing impressing jumps and flips off of a high dive.,More and more people jump off the various heights of the dives and two,gold,continue spinning as well as the man skating on the side and then cartwheels in several directions.,spreads off the portion crashing into them.,javelins meet in the end the following.,are shown at the same time in the end.\n5622,anetv_mWj6lO9PZCs,13339,A woman is seen pushing a lawn mower across some grass while speaking to the camera. The camera,A woman is seen pushing a lawn mower across some grass while speaking to the camera.,The camera,gold,continues to show the woman sitting behind him and then doctor speaks to the camera.,continues pours down the yard while the girl helping the man in to turn the brushes.,speaks while playing a piano on her lawn and continuing to play with a baby and watching her play.,zooms in on plants in the yard and continues to follow the woman around as she cuts the grass.\n5623,anetv_mWj6lO9PZCs,13340,The camera zooms in on plants in the yard and continues to follow the woman around as she cuts the grass. The camera,The camera zooms in on plants in the yard and continues to follow the woman around as she cuts the grass.,The camera,gold,pans back to the camera and shows over images of land.,wanders through a bunch of plants and trees in the end.,pans back to show people mowing the lawn.,follows the person as rapping with her right foot as she bursts out of her lawn.\n5624,lsmdc1044_Pride_And_Prejudice_Disk_Two-89777,16898,\"Someone looks away with a serious expression, and someone leaves the room. Now, someone\",\"Someone looks away with a serious expression, and someone leaves the room.\",\"Now, someone\",gold,\"stands, her eyes closed with her eyes closed.\",steps out of his car with a bag slung over his shoulder.,\"is in her nightgown, standing in front of the mirror in her room.\",stands at a table in a private camp theater.\n5625,lsmdc1044_Pride_And_Prejudice_Disk_Two-89777,16901,The knock disturbs her thoughts. Someone,The knock disturbs her thoughts.,Someone,gold,beams as someone drapes the blanket over her eyes.,comes in and shuts the door behind her.,sits on the bed next to someone.,looks up from her pen.\n5626,lsmdc1044_Pride_And_Prejudice_Disk_Two-89777,16902,Someone comes in and shuts the door behind her. She,Someone comes in and shuts the door behind her.,She,gold,strides back to the front door and gets in.,looks down before she can breathe and sniffs the air.,\"moves the phone forward with her eyes, and turns to someone.\",walks over to someone and takes her hand.\n5627,lsmdc1044_Pride_And_Prejudice_Disk_Two-89777,16900,\"Her face is full of sorrow, and her eyes are glistening with as yet unshed tears. She\",\"Her face is full of sorrow, and her eyes are glistening with as yet unshed tears.\",She,gold,walks down the hall toward her room and finds her belly dancing together.,remembers someone striding away from her.,slaps him in the glass.,holds her umbrella up to her face as if she knows.\n5628,anetv_vKCxWIzJTm0,11456,A man is crouching on the ground in front of a crowd. A woman,A man is crouching on the ground in front of a crowd.,A woman,gold,makes slow moves in his direction.,waves to the man behind him.,is helping the coach.,is standing fighting a dog.\n5629,anetv_vKCxWIzJTm0,12348,A large group of people are seen standing in a circle surrounding two people in the middle. More people come into frame and the people then,A large group of people are seen standing in a circle surrounding two people in the middle.,More people come into frame and the people then,gold,begin playing dance together.,perform a dance routine together.,begin their routine with one another.,perform closely goals.\n5630,anetv_vKCxWIzJTm0,11457,A woman makes slow moves in his direction. Another couple,A woman makes slow moves in his direction.,Another couple,gold,watches others standing behind him.,is seen in practicing play clips.,move in before they all begin dancing together.,is brought by camel.\n5631,anetv_vKCxWIzJTm0,12349,More people come into frame and the people then perform a dance routine together. The people,More people come into frame and the people then perform a dance routine together.,The people,gold,continue landing and tricks with one another while and dance again.,continuing dancing and clapping around one another and end by holding a pose in the end and bowing to the audience.,continue to the boy while moving around together and ends at the end.,continue to play their hands back and fourth to each other when continue to pose.\n5632,anetv_nrh2jDsmeLQ,2956,She is talking into the camera. She,She is talking into the camera.,She,gold,is trying to use a different shirt.,holds several bowls of ingredients.,adds soap and soap and washes her face.,starts playing a yellow flute.\n5633,anetv_nrh2jDsmeLQ,2955,A woman is standing in the kitchen. She,A woman is standing in the kitchen.,She,gold,is holding a leaf blower.,is talking into the camera.,starts to go by the keyboard.,is chopping vegetables in a paper.\n5634,anetv_nrh2jDsmeLQ,7250,A woman is seen speaking to the camera and leads into her holding up various ingredients and mixing them into a blender. She,A woman is seen speaking to the camera and leads into her holding up various ingredients and mixing them into a blender.,She,gold,\"puts some cookies on an oven and then mixes it in a mixer, presenting it and presenting it with her.\",continues mixing various ingredients into serving and rubbing it all along the table and showing how to put the ingredients.,is poured along the side and then cuts the woman's hair back.,\"peels out more ingredients and blends them together, finally pouring it on the mixture and taking a bite.\"\n5635,anetv_VXCV3KUtCdk,13274,\"A mountain, then a man talks and then put on shoes. The man claims a mountain only using his fingers, and without carry any safety materials he\",\"A mountain, then a man talks and then put on shoes.\",\"The man claims a mountain only using his fingers, and without carry any safety materials he\",gold,cuts up the bike onto a bike to a bike rack.,canoe over pass with the pole.,reaches the top of the mountain.,gets to the bottom.\n5636,anetv_VXCV3KUtCdk,13276,\"Then, the man drives a car and arrives to a mountain. After, the man climbs a mountain carrying a backpack, he\",\"Then, the man drives a car and arrives to a mountain.\",\"After, the man climbs a mountain carrying a backpack, he\",gold,lightly shrugs water and keeps breathing in the water.,slides again on the slide.,gets ready to race along a highway.,arrives a plateau and prepares food to eat.\n5637,anetv_VXCV3KUtCdk,13277,\"After, the man climbs a mountain carrying a backpack, he arrives a plateau and prepares food to eat. Next, the man\",\"After, the man climbs a mountain carrying a backpack, he arrives a plateau and prepares food to eat.\",\"Next, the man\",gold,on his horse stick cutting the living into the grass.,pass under the ski rail and begins to work it.,talks sitting on the couch while the people help to the different man watching him pump his hands.,continues climbing the steep mountain until the top of the mountain.\n5638,anetv_a25vC5zsf6A,3422,\"We get a close up of the truing stand, and the spokes. The bike wheel\",\"We get a close up of the truing stand, and the spokes.\",The bike wheel,gold,is seen using an envelope.,flips off onto the road.,stops slowly to the right.,is then adjusted and fixed.\n5639,lsmdc3044_KNOCKED_UP-20995,3149,Someone leaves with his middle finger raised. Someone,Someone leaves with his middle finger raised.,Someone,gold,strains to regain her composure.,watches as someone resumes drinking.,walk past field nine.,\"kicks, fights many more, and knocks them unconscious.\"\n5640,anetv_injaml6fr7s,4733,The woman hits at the ball while riding the horse in circles. the woman,The woman hits at the ball while riding the horse in circles.,the woman,gold,lands and throws the frisbee again.,rides the horse until the sun begins to set and the scene gets darker and darker.,continues to ride around and ends up running.,continues to her player.\n5641,anetv_injaml6fr7s,4732,A woman rides a horse in an indoor barn and plays polo while holding a polo stick and chasing a red ball in the indoor setting. The woman,A woman rides a horse in an indoor barn and plays polo while holding a polo stick and chasing a red ball in the indoor setting.,The woman,gold,try to jump tomatoes and training each other in a cafeteria.,plays the tangled chords as a large crowd watches.,hits at the ball while riding the horse in circles.,stop when the camera shows the ground racing through the gates in the field.\n5642,anetv_injaml6fr7s,4731,A woman rides a horse in an indoor barn while playing a game of solo polo. A woman,A woman rides a horse in an indoor barn while playing a game of solo polo.,A woman,gold,gives a little grin while running back to the girl and climbs onto the horse next to her to groom their horse.,rides a pony tail in a room while sitting on a horse by jumping pulling one horse.,\"does a back flip tricks on a track, then gymnast falls.\",rides a horse in an indoor barn and plays polo while holding a polo stick and chasing a red ball in the indoor setting.\n5643,anetv_3nvVkcxxaJ4,4983,\"As the man in black plays, the man in red is rolling up a wire. The man in red\",\"As the man in black plays, the man in red is rolling up a wire.\",The man in red,gold,watches the wrestler shirt misses and the man on the red shirt was falls on the ground.,laughs and was jumped on the rope when the men walked out in the wooden court.,shirt is standing on his swing.,begins bobbing his head to the beat of the piano music.\n5644,anetv_ptlSMte8xz0,17293,A guy is skiing with a camera on his helmet to show us what he is seeing as he ski. the guy,A guy is skiing with a camera on his helmet to show us what he is seeing as he ski.,the guy,gold,on the right takes someone.,ski down the hill and passes a guy that was in front of him.,adds a comb few more - tinted glasses and puts them back on.,uses the water hose and begins to ski on the water with skis and equipment.\n5645,anetv_Vl4gId1_zxo,1283,\"Then, the man helps a girl to set up a kite in the park, and the girl fly the kite. After, the man continues talking in the shop showing kites in bags, then the man and the kids\",\"Then, the man helps a girl to set up a kite in the park, and the girl fly the kite.\",\"After, the man continues talking in the shop showing kites in bags, then the man and the kids\",gold,continue of the parade and get on the string of the kayak passing on the lake.,fly kites in the park.,walk outside a factory building.,flies in a month.\n5646,anetv_Vl4gId1_zxo,17924,He then walks out onto a field with young children and giving them a kite. He,He then walks out onto a field with young children and giving them a kite.,He,gold,is then seen talking in a camp area between another and jumping up quickly and surfing on the water.,are shown in hats and video games being played.,holds up a kite and bag while speaking to the camera while more clips are shown of him and his children flying kites.,walks to top frame.\n5647,anetv_Vl4gId1_zxo,1284,\"After, the man continues talking in the shop showing kites in bags, then the man and the kids fly kites in the park. A kite gets stuck in a tree, and two men get in the roof to recover the kite from the tree, then the man\",\"After, the man continues talking in the shop showing kites in bags, then the man and the kids fly kites in the park.\",\"A kite gets stuck in a tree, and two men get in the roof to recover the kite from the tree, then the man\",gold,continues talking in the shop.,dives backwards in the water to ride around and run.,\"jumps, to measure the distance with oriental snitch.\",walks away in his cookies next dollar mix with the umbrella in the begins.\n5648,anetv_Vl4gId1_zxo,1282,\"A man talks in a shop and shows a kite and a spool of thread, then the man goes to the park with two kids to fly kites. The man\",\"A man talks in a shop and shows a kite and a spool of thread, then the man goes to the park with two kids to fly kites.\",The man,gold,continues talking in the shop explaining the kite.,fell on the ladder and fell rowing the last time.,pulls a name out of the top of the car.,plays on in the cockpit where he rolls.\n5649,anetv_224E-VtB4k4,15268,A man removes a violin from his case. He,A man removes a violin from his case.,He,gold,plays for the small crowd that passes through.,laughs and sets the ball down on the floor.,grabs a hand and plays the violin.,begins playing the drums with a cane.\n5650,anetv_224E-VtB4k4,8272,\"A man is walking through an airport, where he opens a case. He\",\"A man is walking through an airport, where he opens a case.\",He,gold,gets a bicycle attached to a barrel.,\"takes out a violin, preparing it for play.\",is staying on water skis.,jumps off other targets and grabs the bike.\n5651,anetv_224E-VtB4k4,8273,\"He takes out a violin, preparing it for play. He then\",\"He takes out a violin, preparing it for play.\",He then,gold,\"sets up, playing for the passing people alongside another man.\",begins playing a set of drums.,demonstrates how to play and demonstrate using it to play the violin.,shows how to play bagpipes.\n5652,anetv_224E-VtB4k4,15267,A group of men are shown walking through an airport. A man,A group of men are shown walking through an airport.,A man,gold,mounts a bike in a large outdoor area.,walks in the room with a object.,is walking behind a piece of equipment.,removes a violin from his case.\n5653,anetv_v1FHFQ1UZHw,11836,He begins to lay out tools. Next he,He begins to lay out tools.,Next he,gold,decorates the shoes and shoelaces.,starts to remove the carpet and polishing his nails.,measures and levels the wall.,applies all the animal parts.\n5654,anetv_v1FHFQ1UZHw,11838,He takes out the product and begins placing a coat on the crack in the wall. He then,He takes out the product and begins placing a coat on the crack in the wall.,He then,gold,takes a roller and rolls it along the wall.,uses the tool to wipe off the ice with the iron.,screws the packaging back so down and end by placing it on.,picks up a small cloth and dries the dog clean.\n5655,anetv_v1FHFQ1UZHw,11843,Next a dog jumps in front of a wall. He,Next a dog jumps in front of a wall.,He,gold,continues to cut the grass.,holds up the form and lowers it into the excess water gently.,is standing on the floor waving a bat.,writes again on the wall.\n5656,anetv_v1FHFQ1UZHw,11840,Next he hangs and apply s a white sheet to the wall. He,Next he hangs and apply s a white sheet to the wall.,He,gold,crosses towards it against the wall.,continues to brush the bottom of the carpet as well as excess tile and cleaning products.,repeats the process in the different sections of the wall that need it.,turns the pan back and forth to prep them.\n5657,anetv_v1FHFQ1UZHw,11844,He writes again on the wall. Lettering,He writes again on the wall.,Lettering,gold,appears on the screen for the product.,of a beach passes him.,makes a call.,'s a woman in a kitchen with a phone.\n5658,anetv_v1FHFQ1UZHw,11839,He then takes a roller and rolls it along the wall. Next he,He then takes a roller and rolls it along the wall.,Next he,gold,hangs and apply s a white sheet to the wall.,smokes up of credits and smiles to the camera.,bends over and sitting on it and more shows it for it properly.,adds some words to the top of the wrapping and exhibiting the compact.\n5659,anetv_v1FHFQ1UZHw,11841,He repeats the process in the different sections of the wall that need it. Now He,He repeats the process in the different sections of the wall that need it.,Now He,gold,practices break exercising during corrugated rope work with sound screens.,pins himself against the mother wall.,writes on the wall again.,demonstrates how to did water skiing.\n5660,anetv_v1FHFQ1UZHw,11833,The man writes on the wall again. He,The man writes on the wall again.,He,gold,begins to apply product.,turns on his heel as the dogs follow.,throws the photo in front of the camera.,puts a tool on the uncurls and uses a different rod.\n5661,anetv_v1FHFQ1UZHw,11842,Now He writes on the wall again. Next a dog,Now He writes on the wall again.,Next a dog,gold,jumps in front of a wall.,runs across his cheek carrying one of the purchases.,is playing squash against the wall.,is piling on red carpet.\n5662,anetv_v1FHFQ1UZHw,11835,He writes on the wall. He,He writes on the wall.,He,gold,uses two puffs on the paper.,begins to lay out tools.,puts wax on a paper to remove the wax.,is lying down on his desk in front of him.\n5663,anetv_v1FHFQ1UZHw,11832,Switches to a product being featured. The man,Switches to a product being featured.,The man,gold,shows awakened wing health with a layer of chalk in his hands.,wipes the tear off his chest and wipes it away.,writes on the wall again.,at the fence speaks carefully blankly.\n5664,anetv_v1FHFQ1UZHw,11837,Next he measures and levels the wall. He,Next he measures and levels the wall.,He,gold,shows the cans and creating them to use underwater.,\"finally gives the left tips back, and sits back down.\",takes a few angles using himself to throw bag sticks.,takes out the product and begins placing a coat on the crack in the wall.\n5665,anetv_v1FHFQ1UZHw,11834,Switches to the product again. He,Switches to the product again.,He,gold,nods to a group of family riding.,rips off the wallpaper.,writes on the wall.,shows her how to throw.\n5666,anetv__mupI51ie9A,2167,Three kids are hitting a ball with a racket. They,Three kids are hitting a ball with a racket.,They,gold,stop on stilts the hit the ball.,are ducking so it does n't hit them in their heads.,throw a ball back and forth.,take hit and hit the ball back and forth.\n5667,anetv_z8VqGGu5vPc,7639,Students are rinsing and washing cars. The students,Students are rinsing and washing cars.,The students,gold,jog across the deserted room.,thank people in the video and to come support them.,are sitting on the desks of several milling about the strategy room.,interact with a lady in cold arms.\n5668,anetv_z8VqGGu5vPc,6666,The boy is describing his actions as he goes. They,The boy is describing his actions as he goes.,They,gold,rinse all the soap off using a hose.,walk towards the house.,jump with the splash of water.,jump up and out of the field.\n5669,anetv_z8VqGGu5vPc,6667,They rinse all the soap off using a hose. A man,They rinse all the soap off using a hose.,A man,gold,gets into the clean car and drives away as the boy stops to talk and starts washing the next car.,mops the sidewalk for them.,speaks to the camera.,pours cleans a sink.\n5670,anetv_z8VqGGu5vPc,7638,A man on the street with a poster sign tries to get customers. Students,A man on the street with a poster sign tries to get customers.,Students,gold,get out of the car driving around right.,are rinsing and washing cars.,go to the producer's office.,are walk out of the house.\n5671,anetv_z8VqGGu5vPc,6665,A couple of teenaged boys are using sponges and soap to wash a black car while talking to the camera. The boy,A couple of teenaged boys are using sponges and soap to wash a black car while talking to the camera.,The boy,gold,is describing his actions as he goes.,begins cleaning the tiles with a chipped brush.,is also shown on a bathroom in the living room dancing.,is raking the leaves in a park.\n5672,anetv_z8VqGGu5vPc,7637,A member explains what they are doing. A man on the street with a poster sign,A member explains what they are doing.,A man on the street with a poster sign,gold,is preparing to come down the lane.,goes off to the men talking.,tries to get customers.,can not cut out.\n5673,anetv_z8VqGGu5vPc,7640,The students thank people in the video and to come support them. A black screen,The students thank people in the video and to come support them.,A black screen,gold,appears on the screen.,appears with another animated angel flying singing.,appears in the background.,appears with a website address.\n5674,anetv_z8VqGGu5vPc,7636,A university swim team is doing a fund raiser washing cars. A member,A university swim team is doing a fund raiser washing cars.,A member,gold,waves his hand as he guides the boys to the shore.,explains what they are doing.,is seen boarding behind it and the people in the 9 raft paddle in it to the main goal.,with them is helped down the dune.\n5675,anetv_Huz41aVo5eo,19225,Man is waxing a woman's leg. woman,Man is waxing a woman's leg.,woman,gold,is standing in front of a dryer.,is applying shaving cream onto a stick.,is talking to the camera and showing how to wax the leg.,is in front of a radiator cabinet brushing the teeth.\n5676,anetv_3W92sMbvoaE,2529,\"She spins as she goes down, running into another person. She\",\"She spins as she goes down, running into another person.\",She,gold,jumps from a pit and stands up.,throws her back at once.,\"grabs on the bat of the lost car, then drives off.\",is knocked out of her intertube.\n5677,anetv_3W92sMbvoaE,2528,A woman is riding an intertube down a snowy hill. She,A woman is riding an intertube down a snowy hill.,She,gold,jump together up into the air for a while.,\"spins as she goes down, running into another person.\",gently drops the weights out into the sink.,is showing a different sign of the bike from various angles.\n5678,anetv_hxbp-zM5JPQ,6202,He pauses and grabs another part of the shirt and irons that new area of the shirt. He,He pauses and grabs another part of the shirt and irons that new area of the shirt.,He,gold,gets off the top box and picks it up to go up the steps.,tries to take them off.,brings up another part of the shirt and irons that area.,struggles as the bike starts to move.\n5679,anetv_hxbp-zM5JPQ,11191,The guy moves the ironing table. The guy,The guy moves the ironing table.,The guy,gold,pumps a new tool over the heart of the board.,puts the ironing wax in place.,starts ironing a bottom down shirt.,bends down and carefully rubs his hands on the shoes.\n5680,anetv_hxbp-zM5JPQ,11190,A guy in a white tee shirt enters a bedroom. The guy,A guy in a white tee shirt enters a bedroom.,The guy,gold,holds his stereo sticks and gets keys.,holds open a tissue.,moves the ironing table.,\"is leaning against a shoe patch, landing in a practice.\"\n5681,anetv_hxbp-zM5JPQ,6201,\"From the ironing board, he grabs the iron and irons the shirt. He\",\"From the ironing board, he grabs the iron and irons the shirt.\",He,gold,shows a white sign of the customer.,picks his shirt up as he smokes it.,pauses and grabs another part of the shirt and irons that new area of the shirt.,begins to pour into the spring pieces.\n5682,anetv_hxbp-zM5JPQ,6199,An older man walks to an ironing board. He,An older man walks to an ironing board.,He,gold,bounces to the ground.,pulls the ironing board and extends a shirt out on the ironing board.,has just backrest out of the pile.,shows the proper clothing for an ironing tool.\n5683,anetv_hxbp-zM5JPQ,6200,\"He pulls the ironing board and extends a shirt out on the ironing board. From the ironing board, he\",He pulls the ironing board and extends a shirt out on the ironing board.,\"From the ironing board, he\",gold,is holding on ironing ski gear.,grabs the iron and irons the shirt.,turns off the steppers and fastens the straps back around his left hand.,demonstrates how to clean the shirt with his surfboard.\n5684,anetv_hxbp-zM5JPQ,6203,He brings up another part of the shirt and irons that area. He,He brings up another part of the shirt and irons that area.,He,gold,washes a bicycle in an office.,moves the shirt a bit and irons another area of the shirt.,picks up another cup and dumps the bottle.,smells it and uses it uphill to clean the shoes from a few more.\n5685,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95229,2872,Someone catches up with someone. The frayed end of someone's rope,Someone catches up with someone.,The frayed end of someone's rope,gold,has caught off behind people.,looks up as someone nods smugly.,lies on the ground.,appears on an upper runway.\n5686,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95229,2873,The frayed end of someone's rope lies on the ground. Someone,The frayed end of someone's rope lies on the ground.,Someone,gold,is dirty and disheveled.,turns away reaches buckbeak.,\"takes off running, rolling toward the bay.\",indicates a hangar door.\n5687,anetv_a_c-FIC_W4A,2253,A close up shot of shoe polish is shown followed by a man shining his shoes and speaking to another man walking in. The man walks out of frame,A close up shot of shoe polish is shown followed by a man shining his shoes and speaking to another man walking in.,The man walks out of frame,gold,is shown again shining the shoes of another man reading a newspaper.,as well as tracing the animals around the camera while the man stops to look up and clean their shoes hanging.,and walks over to a boy while posing with another woman standing watching him.,while holding the tennis saw that same.\n5688,anetv_a_c-FIC_W4A,11755,A man is using a cloth to polish a black shoe. He,A man is using a cloth to polish a black shoe.,He,gold,\"talks to the camera as he works with the shoes, getting them shiny.\",removes snowy 'shoes.,shows the man by shoe polish and polish the chair and the side and the second card.,is using a measuring rag to wipe a red ball with a white cloth.\n5689,anetv_a_c-FIC_W4A,11754,A can of black shoe polish is shown. A man,A can of black shoe polish is shown.,A man,gold,is using a cloth to polish a black shoe.,puts on a wooden shoe.,\"approaches his right, conversing and pointing in the black bag.\",talks to the camera and holds up the red shirt.\n5690,anetv_HjRevGoqqz0,11191,Two teams are playing dodge - ball. A red team member,Two teams are playing dodge - ball.,A red team member,gold,is running around the court.,runs up and throws a ball directly at an opponent.,knocks the ball off the goal.,swings a yellow puck and runs to the pins.\n5691,anetv_HjRevGoqqz0,11189,People are interacting in an inside court. People,People are interacting in an inside court.,People,gold,run to pick up balls from the center of the court.,are standing in a field next to the man on the stage.,are in a court playing lacrosse.,are playing a game of ice playing soccer in an indoor gymnasium.\n5692,anetv_HjRevGoqqz0,11188,The credits of the clip are shown. People,The credits of the clip are shown.,People,gold,are measuring the day.,are interacting in an inside court.,are playing an interview.,are making jumps into a rock.\n5693,anetv_HjRevGoqqz0,11190,People run to pick up balls from the center of the court. Two teams,People run to pick up balls from the center of the court.,Two teams,gold,\"play against each other, throwing a ball at a bar.\",play a game of lacrosse as they run and take an hit.,are playing dodge - ball.,turn to each other who are hitting balls and goals.\n5694,anetv_qVgsPJeQYMY,15351,A group of band students practice inside a classroom and gym. The school band,A group of band students practice inside a classroom and gym.,The school band,gold,plays during outdoor events and sporting games.,\"sit patiently at their positions, their arms at the sides as them pricks her stomach.\",starts taking carriage out on a classical and city street.,\"arrives on an outdoor court and walk a little about, then use their drums to play on the field.\"\n5695,anetv_qVgsPJeQYMY,15350,A group of students stretch out in gym class. A group of band students,A group of students stretch out in gym class.,A group of band students,gold,performs most dance before and twirling step on and practices.,practice inside a classroom and gym.,are gathered in a gym gym.,crowd around a track working out in an audience with a foot above their heads.\n5696,lsmdc3074_THE_ROOMMATE-4067,3899,A clock reads 12: 55. Someone,A clock reads 12: 55.,Someone,gold,waits in the gloomy stadium.,and someone continue painting the bottom of the painting.,\"stands, grabs her phone, and eyes its display.\",\"is someone's clean - shaven, spoons, shiny matching curling fingernails.\"\n5697,lsmdc3074_THE_ROOMMATE-4067,3911,\"On someone's bed, her jacket removed and her lover lowers himself on top of her. She\",\"On someone's bed, her jacket removed and her lover lowers himself on top of her.\",She,gold,sits down on the bed and folds her arms.,eyes the framed photo of someone and someone on the bedside table.,looks up from him and takes a sip of her coffee.,touches the brim of her dress.\n5698,lsmdc3074_THE_ROOMMATE-4067,3901,\"She throws it onto her bed. Turning to someone's side of the room, she\",She throws it onto her bed.,\"Turning to someone's side of the room, she\",gold,watches as it's our view.,eyes her roommate's bedside table.,bites a strip of bacon.,finds herself knitting as someone carries on her body.\n5699,lsmdc3074_THE_ROOMMATE-4067,3909,\"As the couple makes out, someone lies back on someone's bed with her eyes closed. Holding the phone to her ear, she\",\"As the couple makes out, someone lies back on someone's bed with her eyes closed.\",\"Holding the phone to her ear, she\",gold,puts her cats paws on her lap.,rests her head on her abdomen.,stares off with a distant look.,slaps the lipstick on her cheeks.\n5700,lsmdc3074_THE_ROOMMATE-4067,3910,\"Holding the phone to her ear, she stares off with a distant look. On someone's bed, her jacket removed and her lover\",\"Holding the phone to her ear, she stares off with a distant look.\",\"On someone's bed, her jacket removed and her lover\",gold,unzips a toy model gun and puts it down and sneaks another look at water.,\"picks up the dead book then crouches down on the floor, the manuscript on her back.\",takes a deep breath as our view withdraws from a newsstand.,lowers himself on top of her.\n5701,lsmdc3074_THE_ROOMMATE-4067,3907,\"In the frat house, someone kisses someone. We\",\"In the frat house, someone kisses someone.\",We,gold,\", someone's family, someone, leans against the wall with the window ajar.\",flash between someone's room and the dorm.,lead the women into a restaurant.,spill on both their cheeks.\n5702,lsmdc3074_THE_ROOMMATE-4067,3913,\"He presses his lips to Sarah's, then grazes his nose against her cheek. Someone\",\"He presses his lips to Sarah's, then grazes his nose against her cheek.\",Someone,gold,places his hands over his mouth.,wraps her arms around her neck and kisses him.,watches with an emotional smile.,closes her eyes as someone kisses her neck.\n5703,lsmdc3074_THE_ROOMMATE-4067,3906,\"Meanwhile, someone removes someone's shirt. In the dorm room, someone\",\"Meanwhile, someone removes someone's shirt.\",\"In the dorm room, someone\",gold,watches his partner ascend the ladder to the coffee table.,takes a seat on a snack kiosk.,lies asleep in a makeshift hotel pool at night.,\"twitches a smile, then sits on someone's bed.\"\n5704,lsmdc3074_THE_ROOMMATE-4067,3908,\"We flash between someone's room and the dorm. As the couple makes out, someone\",We flash between someone's room and the dorm.,\"As the couple makes out, someone\",gold,presses his fingers to his nostril.,lies back on someone's bed with her eyes closed.,walks over to the fallen van.,snatches her mini coat off and lays her head on the table.\n5705,lsmdc3074_THE_ROOMMATE-4067,3902,\"Turning to someone's side of the room, she eyes her roommate's bedside table. Opening its drawer, she\",\"Turning to someone's side of the room, she eyes her roommate's bedside table.\",\"Opening its drawer, she\",gold,lovingly on the shape form.,\"finds a bottle of champagne in a magazine, and continues to blow it.\",finds someone's cellphone inside.,strides warily past a banker.\n5706,lsmdc3074_THE_ROOMMATE-4067,3912,She eyes the framed photo of someone and someone on the bedside table. He,She eyes the framed photo of someone and someone on the bedside table.,He,gold,\"presses his lips to sarah's, then grazes his nose against her cheek.\",gives a thumbs up.,looks around and finds a check - envelope photo of her.,goes down a hill.\n5707,lsmdc3074_THE_ROOMMATE-4067,3904,Someone removes the phone and answers. She,Someone removes the phone and answers.,She,gold,lifts it to her ear.,gives someone a concerned look.,\"glances at someone, who looks miserable.\",\"grins at him, eyeing him nervously.\"\n5708,lsmdc3074_THE_ROOMMATE-4067,3903,\"Opening its drawer, she finds someone's cellphone inside. Someone\",\"Opening its drawer, she finds someone's cellphone inside.\",Someone,gold,emerges from the living room.,removes the phone and answers.,has her phone behind.,has a pencil fixed on the ceiling.\n5709,lsmdc3074_THE_ROOMMATE-4067,3900,\"Someone stands, grabs her phone, and eyes its display. She\",\"Someone stands, grabs her phone, and eyes its display.\",She,gold,takes a letter from her purse and reads it.,begins kissing on someone's cheek.,sit at a t. t - artwork.,throws it onto her bed.\n5710,lsmdc3074_THE_ROOMMATE-4067,3916,\"Taking her, someone heads away. She\",\"Taking her, someone heads away.\",She,gold,grins as they look out of the window.,shuts her eyes and shuts her mouth.,walks back into her room.,\"squares her lips, brushes her hair against the wall.\"\n5711,anetv_wLcpMJv83XY,2188,\"The man finally moves and throws the ball down the Alley. After, an instant replay\",The man finally moves and throws the ball down the Alley.,\"After, an instant replay\",gold,appears by the blow screen and shows a man holding a white shovel.,is shown of the man's cheers.,is shown of the video being chopped and screwed with a circle highlighting the ball before it is thrown down the lane.,\"of stunts is shown, after the replay is replayed.\"\n5712,anetv_wLcpMJv83XY,2187,A still image of a man dressed in an Under Armour shirt and a pair of slacks is standing in one spot in a bowling alley. The man,A still image of a man dressed in an Under Armour shirt and a pair of slacks is standing in one spot in a bowling alley.,The man,gold,puts off welding the platforms and cuts the ramp on the hillside he is using.,finally moves and throws the ball down the alley.,is sitting on an empty bench in an indoor spot.,spins in the backwards then dives after a turn and jumps after someone.\n5713,anetv_L9MTwigRhmk,4297,\"Bmx biker going down a track practicing in his lane by himself. Then there is another biker too, they're probably racing, They\",Bmx biker going down a track practicing in his lane by himself.,\"Then there is another biker too, they're probably racing, They\",gold,'re going super fast down the track turning and hitting high bumps that make them go high up in the air.,disc in it swirl around the other two at the same time.,by german cars ahead of them.,screwing their nails on each bikes wrestling.\n5714,anetv_L9MTwigRhmk,4298,The track opens again and they start another race. Two bikers,The track opens again and they start another race.,Two bikers,gold,do a once picket jump and then near the parking lot.,fill the athletes with their arms and raise their arms above their heads.,jump down the other side of the road and throw the ground high.,are dancing around before getting back on their bikes to get back on the track for another little race.\n5715,lsmdc0051_Men_in_black-71093,19256,\"Someone van is parked in an alleyway somewhere downtown. Inside the van, the ornate rosewood box\",Someone van is parked in an alleyway somewhere downtown.,\"Inside the van, the ornate rosewood box\",gold,\"is now battered and scarred, its various locks holding tight against someone's repeated attempts to claw his way into it.\",lies alone on board mounted on a rooftop.,shows an equally beautiful view of the germans swirling into silhouette.,can be seen across a roof.\n5716,lsmdc0051_Men_in_black-71093,19257,\"Inside the van, the ornate rosewood box is now battered and scarred, its various locks holding tight against someone's repeated attempts to claw his way into it. He\",\"Inside the van, the ornate rosewood box is now battered and scarred, its various locks holding tight against someone's repeated attempts to claw his way into it.\",He,gold,\"jumps to his feet, puts the small canister down, reaches out and reaches into his canoes.\",lies in the passenger bunk and stands in one hand.,\"bellows in rage and hurls the box against the side of the van, where it finally cracks a hinge.\",hits his talons and perches on the wall as someone does so.\n5717,anetv_R_ffZ9kGeTI,8218,A man wearing a helmet is shown riding a skateboard with a long wooden plan base in various outdoors locations. A second rider,A man wearing a helmet is shown riding a skateboard with a long wooden plan base in various outdoors locations.,A second rider,gold,joins the first rider on the skateboard.,then joins two men preparing to jump into the pit.,begins skating while looking back at the camera.,in gray shirt holds a blue object on a blue screen.\n5718,anetv_R_ffZ9kGeTI,8217,A large open outdoor area is shown by a moving camera. A man wearing a helmet,A large open outdoor area is shown by a moving camera.,A man wearing a helmet,gold,is speaking to the camera and begins showing several martial arts techniques.,is talking demonstrating how to make a guy's grip on the stilts.,is sliding a lawn mower up a particular set of hedges.,is shown riding a skateboard with a long wooden plan base in various outdoors locations.\n5719,anetv_al_769KF6Qc,9752,A woman walks over to a flower bed and wheelbarrow as she talks. She,A woman walks over to a flower bed and wheelbarrow as she talks.,She,gold,\"demonstrates how to mulch, picking up the material and showing how to pack it around plants.\",walks through to the bar and puts the pan on a counter.,\"takes a cellphone to, then finds another photo, and fumbles in her pocket.\",takes out a pair of shoes and sets them up on the counter.\n5720,anetv_OhpaFQeQtKs,7623,A man is seen speaking to a large audience and leads into two people fencing one another. The people,A man is seen speaking to a large audience and leads into two people fencing one another.,The people,gold,continue fencing and end by shaking hands with others and many celebrating and cheering with the winner.,continue playing the game while the camera moves around around past two people on front.,continue panning around one another on a beam performing down tricks and others watch on the side.,throw their hands back and fourth while speaking to the camera and of people fencing one another.\n5721,anetv_OhpaFQeQtKs,12603,A person is seen standing ready in front of a large crowd. Two people then,A person is seen standing ready in front of a large crowd.,Two people then,gold,begin to begin fencing at the end.,begin fencing one another.,hold a rope while holding a calf in their hands.,begin hitting the ball into the goal and scoring at the end.\n5722,anetv_5Qav3tLfiZA,12521,The man in dark blue shirt is kneeling with one knee. The man,The man in dark blue shirt is kneeling with one knee.,The man,gold,is then shown using the red and begins drawing various faces on the studio floor.,puts the shirt backs up in the chair.,is dribbling the blue ball.,picks up the tattoo.\n5723,anetv_FLJzzot6F-s,13706,\"A man is seen standing on a dirt ground, very still. He then\",\"A man is seen standing on a dirt ground, very still.\",He then,gold,lowers himself into hurries and attacks too.,jumps down a bit and jumps into the pit of the motocross ground.,nearly bumps him on the end while swinging around on the track before continuing.,moves slowly into several martial arts moves.\n5724,anetv_FLJzzot6F-s,806,Several clips are shown of landscapes while a car drives around and leads into a person walking up stairs and pointing to a house. The man,Several clips are shown of landscapes while a car drives around and leads into a person walking up stairs and pointing to a house.,The man,gold,moves several cars into the area while still speaking to them while the camera drives in.,continues walking followed by doing splits and various slow motion movements around a dirty area.,continuously seen laying down and shoveling to one side while sitting on a car talking.,fries up mixing clothes and fills it with water while still speaking to the camera.\n5725,anetv_FLJzzot6F-s,13705,A car is driving down a winding road. A man,A car is driving down a winding road.,A man,gold,\"is seen standing on a dirt ground, very still.\",drives a scythe through his legs at a fast speed.,\"is driving a van, people driving around.\",pulls towards a rowing machine machine.\n5726,anetv_nw8MpBwL508,14105,She does a gymnastics routine on the balance beam. She,She does a gymnastics routine on the balance beam.,She,gold,does a gymnastics routine on the balance beam.,motion her feet accidentally does cartwheels.,flips and dives on the mat.,dismounts and lands on the mat with her hands in the air.\n5727,anetv_nw8MpBwL508,14104,A girl in a purple outfit gets onto a balance beam. She,A girl in a purple outfit gets onto a balance beam.,She,gold,does a gymnastics routine on the balance beam.,spins a baton and start twirling it over and over.,does several forward flips and jumps off the mat.,prepares shoots a person on a mat.\n5728,anetv_JYh2Oejg_lQ,5586,A person with long hair shows a rubik's cube. The person,A person with long hair shows a rubik's cube.,The person,gold,performs several switches on the artists.,uses a small settee to polish the strings while using a hot shaver.,begins to solve it.,goes to solve a rubix cube.\n5729,anetv_cC1nvRqyXWs,1323,A man in blue gym shorts iron his clothes on an ironing board at home. The man,A man in blue gym shorts iron his clothes on an ironing board at home.,The man,gold,\"does several flips before paddles, then adds 2 minutes.\",removes the mask and looks at the camera for a second.,demonstrates how to rinse and demonstrate a body of cleaning.,sits down on the floor and folds his clothes and stacks them up.\n5730,lsmdc3021_DEATH_AT_A_FUNERAL-1282,5160,Someone wrestles someone to the ground. He,Someone wrestles someone to the ground.,He,gold,reloads and throws someone's shield inside the fractured floor.,jumps for the railing as he comes down the staircase.,adjusts his glasses on his face as he holds someone down.,plunges his gun into the zebra.\n5731,lsmdc3021_DEATH_AT_A_FUNERAL-1282,5159,He reaches into his jacket. Someone,He reaches into his jacket.,Someone,gold,\"puts it in, then points.\",wrestles someone to the ground.,gets up and grabs someone's phone.,puts someone's hand behind her.\n5732,anetv_YDIRaWzfyYY,8448,Man grabs some rocks from a cup of water and sharp the knife. man,Man grabs some rocks from a cup of water and sharp the knife.,man,gold,\"combs the dog, and put the cream on the shoes.\",take the cue and get mixed and pour it onto the person's face.,use the knife to cut the magazine.,puts his mouth in a lacrosse bag.\n5733,anetv_YDIRaWzfyYY,8447,Man holds the knife and shavea small piece of his arm. man,Man holds the knife and shavea small piece of his arm.,man,gold,grabs some rocks from a cup of water and sharp the knife.,is applying some gray liquid into the back of a blue wand.,picks up the knife and puts the sharpener into a toaster.,holds a dagger and puts a small white tattoo on his right arm.\n5734,anetv_r40TuTkt9y4,10513,At one point the raft flips over the men riding down the river. More shots of people riding down the river,At one point the raft flips over the men riding down the river.,More shots of people riding down the river,gold,are shown as well as people standing around and swinging into canoes.,are shown as well as people speaking to the camera.,are seen with people on the side.,are shown as well as people paddling themselves.\n5735,anetv_r40TuTkt9y4,10512,Various shots of landscapes are shown that interments with people riding in a large raft. At one point the raft,Various shots of landscapes are shown that interments with people riding in a large raft.,At one point the raft,gold,travels up three large rocks into the ocean.,flips over the men riding down the river.,paddles out of the river.,goes down three times as people walk by in the end.\n5736,anetv_lETAKUG4pQw,14414,A cat with glowing eyes comes up the stairs. The cat,A cat with glowing eyes comes up the stairs.,The cat,gold,flies up onto the screen.,is going backwards out of the tattoo too.,walks onto a man on the couch.,moves his head back towards the cat.\n5737,anetv_lETAKUG4pQw,14415,The cat walks onto a man on the couch. The man,The cat walks onto a man on the couch.,The man,gold,lays down on the floor in front of the camera.,does back flips on the rug.,picks up the cat and clips it's fingernails.,puts his stick back and he continues to play the keyboard.\n5738,lsmdc1004_Juno-6709,6951,\"Crammed in, behind the wheel, someone seems oblivious of the passing cars as she rubs her belly under her thick tartan coat. Her eyes\",\"Crammed in, behind the wheel, someone seems oblivious of the passing cars as she rubs her belly under her thick tartan coat.\",Her eyes,gold,\"glistening, someone takes her breath.\",widen soberly and she looks from her wallet to someone's silver someone.,are narrowed as the woman feeds it.,\"stare straight ahead, not looking at anything in particular.\"\n5739,lsmdc1004_Juno-6709,6947,\"Someone, in his rock T - shirt, over a long sleeved undershirt looks coldly at someone and goes back to his room. Someone\",\"Someone, in his rock T - shirt, over a long sleeved undershirt looks coldly at someone and goes back to his room.\",Someone,gold,hurries out and joins the soldiers in their telegraph office.,sinks down on the stairs and gazes unhappily into space.,watches him turn the curtain away.,walks out of the living room.\n5740,lsmdc1004_Juno-6709,6945,Someone bolts out of the door. Clutching her belly she,Someone bolts out of the door.,Clutching her belly she,gold,offers him a scattered glance.,lowers himself to the cinema pensively.,waddles out to the previa.,holds back the horn.\n5741,lsmdc1004_Juno-6709,6953,And she starts to calm down. The car lights flash and she,And she starts to calm down.,The car lights flash and she,gold,shuts herself quickly and walks into the basement.,sees spinning a taxi outside her apartment building.,shines her fur coat on the back of a car beside her.,pulls back on to the road and drives off.\n5742,lsmdc1004_Juno-6709,6948,\"Someone sinks down on the stairs and gazes unhappily into space. Beneath a cloudy sky, someone\",Someone sinks down on the stairs and gazes unhappily into space.,\"Beneath a cloudy sky, someone\",gold,reels on a surface near his vehicle.,sits using a pole to examine edges against the narrow craft.,wheels the cat - sized chair to vacuum in his elder condition.,\"drives under a road bridge, passing a freight train on one side.\"\n5743,lsmdc1004_Juno-6709,6952,\"Her eyes stare straight ahead, not looking at anything in particular. And she\",\"Her eyes stare straight ahead, not looking at anything in particular.\",And she,gold,starts to calm down.,lowers her head toward him.,gives her a pensive look.,holds out her long coat.\n5744,lsmdc1004_Juno-6709,6949,\"She pulls off the main carriage way onto the soft shoulder, next to a sward of dull green grass dotted with patches of spring snow. She\",\"She pulls off the main carriage way onto the soft shoulder, next to a sward of dull green grass dotted with patches of spring snow.\",She,gold,\"paces away from someone and looks down at the driver, who hangs up.\",comes up the path from her home and pulls while two friends are with her in the sun.,takes a giant leap at her.,runs her hand over her own belly as she gives into tears.\n5745,lsmdc1004_Juno-6709,6950,\"She runs her hand over her own belly as she gives into tears. Crammed in, behind the wheel, someone\",She runs her hand over her own belly as she gives into tears.,\"Crammed in, behind the wheel, someone\",gold,tapes a box of teddy animals on a table and tosses it aside.,seems oblivious of the passing cars as she rubs her belly under her thick tartan coat.,stands frozen as she reads the letter a place someone was simulating.,leads his companion away from a watchtower onto a rocky street.\n5746,lsmdc1004_Juno-6709,6956,She rummages behind her and finds a crumpled receipt. She,She rummages behind her and finds a crumpled receipt.,She,gold,flap and storms off.,\", she swings back by putting the baby down.\",\"returns her attention to the living room, the windows and window.\",smoothes it out on the steering wheel of the van and starts to write on it.\n5747,lsmdc1004_Juno-6709,6954,\"The car lights flash and she pulls back on to the road and drives off. Up in his room, someone\",The car lights flash and she pulls back on to the road and drives off.,\"Up in his room, someone\",gold,is playing his guitar.,stares earnestly at the road.,sits in a bus.,\"looks away, her body completely exposed.\"\n5748,lsmdc1004_Juno-6709,6946,\"Clutching her belly she waddles out to the Previa. Someone, in his rock T - shirt, over a long sleeved undershirt\",Clutching her belly she waddles out to the Previa.,\"Someone, in his rock T - shirt, over a long sleeved undershirt\",gold,\"tops a pair of shiny boots, his wings, bows toward her hips, blood kingdom sitting on the desk in front of him\",looks coldly at someone and goes back to his room.,and looks out from a false window.,\"doll, falls around on a timber fence below.\"\n5749,lsmdc1004_Juno-6709,6957,\"She smoothes it out on the steering wheel of the van and starts to write on it. In her immaculate house, someone\",She smoothes it out on the steering wheel of the van and starts to write on it.,\"In her immaculate house, someone\",gold,enters a clapboard house with a younger someone.,\"is sitting alone at the dining room table, sipping a glass of red wine.\",holds someone's arms.,climbs a low picket fence to tell money to remove your hood.\n5750,lsmdc1004_Juno-6709,6955,She suddenly raises herself onto her elbows and climbs back into the van. She,She suddenly raises herself onto her elbows and climbs back into the van.,She,gold,\"dives over her, grabbing her hips and pinning her down.\",\"is money, collecting her purse and snatching a ball.\",passes out in the sunshine and waves.,rummages behind her and finds a crumpled receipt.\n5751,anetv_rqnzzNYt2cE,3423,A car pulls up and shows a man driving and speaking to the camera. A man,A car pulls up and shows a man driving and speaking to the camera.,A man,gold,is seen skating back and forth with a roller brush while holding onto a stick.,is then seen riding a circular lawn that is cleared along the track.,is then seen skateboarding down a long road.,rides down out of the boat followed by several others.\n5752,anetv_rqnzzNYt2cE,3424,A man is then seen skateboarding down a long road. He,A man is then seen skateboarding down a long road.,He,gold,goes to the top of the slide and moves down the street.,swings the object at one foot.,roping by a stick and going down the street pans around.,skates past several cars and obstacles and ends with the man getting out of the car.\n5753,anetv_rqnzzNYt2cE,15672,Several shots of the area are shown as well as dogs and leads into a man riding down a hill. The man,Several shots of the area are shown as well as dogs and leads into a man riding down a hill.,The man,gold,rides a skateboard continuously around the area and ends by meeting up with the first man.,is seen speaking to the camera and leads into him walking on a horse and speaking to the camera.,speaks as well as moving the camera under snow while still speaking to the camera.,runs all around the area and leads into more clips of him bouncing in the water.\n5754,anetv_gi0wjdtxaC4,14277,He stops for a moment and takes a break then continues to do more flips. Another guy,He stops for a moment and takes a break then continues to do more flips.,Another guy,gold,comes back from the blow and starts dancing again toward the camera.,comes onto the screen and attempts to do some flips on the grass.,helps the last boy away.,comes relentlessly to grab someone's legs by holding his arm in the air.\n5755,anetv_gi0wjdtxaC4,14276,A boy does cartwheels and back hand springs on the grass as a friend watches and records. He,A boy does cartwheels and back hand springs on the grass as a friend watches and records.,He,gold,stops for a moment and takes a break then continues to do more flips.,keeper plays frisbee like the book in his back several times.,stops and the second man and he jerks his head while another walk into the bars.,picks the hands up and walks across the field.\n5756,anetv_m_gr7WdjJmc,11827,A man is talking outside of a large outdoor ramp. He,A man is talking outside of a large outdoor ramp.,He,gold,skis down a ramp and the man rushes to a body shop and sits on the floor looking at the cameras.,start jumping on a bungee.,\"is at the top of a ramp as he talks, swinging it and then comes back in water.\",demonstrates how to slide down the ramp on a pair of skis.\n5757,anetv_m_gr7WdjJmc,3668,\"The coach then begins demonstrating certain techniques as he comes down the slopes. After, he comes back to talk and once he approaches the slope\",The coach then begins demonstrating certain techniques as he comes down the slopes.,\"After, he comes back to talk and once he approaches the slope\",gold,does the wrong high speed to arm command.,begins hopping down it.,\"inspector, sunlight is shown on the screen.\",screen between two spectators down snowboarding.\n5758,anetv_m_gr7WdjJmc,11828,He demonstrates how to slide down the ramp on a pair of skis. He,He demonstrates how to slide down the ramp on a pair of skis.,He,gold,grabs a rope and goes to a triangle on a level as he does it.,shows the turns and postures required for skiing.,walks down and tosses his skateboard in the air.,lets go of the handles and pushes the balls back and forth.\n5759,anetv_m_gr7WdjJmc,3667,A man is outside dressed in a black jacket talking while two man made ski hills are behind him. The coach then,A man is outside dressed in a black jacket talking while two man made ski hills are behind him.,The coach then,gold,scrapes the bottle down from his hand and dries the window.,begins demonstrating certain techniques as he comes down the slopes.,is now in front of a work shop for a very long time.,begins skating on the beach.\n5760,anetv_J4FBxa5FWSo,6549,He bounces over a bike as he runs. He then,He bounces over a bike as he runs.,He then,gold,completes a double somersault by jumping off his jumping rope bar.,starts rolling off to see artwork on the sands.,runs up the side trim of a building before disappearing around the corner.,rides onto it as he continues doing tricks with bike stunts.\n5761,anetv_fRmHJKlQmmw,16127,He jumps off the beam onto a mat. Another man,He jumps off the beam onto a mat.,Another man,gold,dives onto the mat outside.,falls backward and lands on the mat.,grabs another rope from behind.,jumps onto a balance beam and does a routine.\n5762,anetv_fRmHJKlQmmw,16126,A man is doing a gymnastic routine on a balance beam. He,A man is doing a gymnastic routine on a balance beam.,He,gold,\"jumps over the beam, then turns and runs.\",jumps high up into the air and dances.,jumps off the beam onto a mat.,lifts over several times and flips over and lands back on the mat before throwing her arms up in the air.\n5763,anetv_H5kerJ_FoBU,9502,\"As he applies the plaster, a voice is describing the techniques used by the company. The video\",\"As he applies the plaster, a voice is describing the techniques used by the company.\",The video,gold,ends as the man reaches the end of the room.,cuts with text activating which are needed to open the gate.,shows the wood surrounding the dog beating up the wall.,shows some noise and pages of the action.\n5764,anetv_H5kerJ_FoBU,9500,The video starts with a title screen shot. A man in a white shirt,The video starts with a title screen shot.,A man in a white shirt,gold,is showing applying plaster to a room.,is leading a swelling ball down a long street.,is explaining green hurling with various sticks.,is standing and standing next to a painting.\n5765,anetv_H5kerJ_FoBU,9501,\"A man in a white shirt is showing applying plaster to a room. As he applies the plaster, a voice\",A man in a white shirt is showing applying plaster to a room.,\"As he applies the plaster, a voice\",gold,is describing the techniques used by the company.,comes back from the wall.,does n't revolve before he leaves the room.,\"takes him replaced, jumping wallpaper.\"\n5766,anetv_yWEFVfX-JoI,4876,One of them is stopped at a bank where there is a person in a blue canoe. There,One of them is stopped at a bank where there is a person in a blue canoe.,There,gold,is a game of polo being played.,\", then the end of a still screen.\",are in winter gear performing the tutorial on sand covered ski slopes.,are people in a group large red tube rapids ride.\n5767,anetv_yWEFVfX-JoI,17900,\"The canoe and the hand travel down a rocky water way and pass other people, trees and rocks. The canoe finally passes a stone wall, goes under a bridge and passes many more people in canoes, and rafts, trees, people standing on rocks watching, and finally a wash of water\",\"The canoe and the hand travel down a rocky water way and pass other people, trees and rocks.\",\"The canoe finally passes a stone wall, goes under a bridge and passes many more people in canoes, and rafts, trees, people standing on rocks watching, and finally a wash of water\",gold,goes over the screen to end the scene.,is shown taking part of the ship while still sitting inside the raft.,slows down.,passes down the shore.\n5768,anetv_yWEFVfX-JoI,17898,\"A person canoes down a narrow and rough waterway in a body of water surrounded by many rocks, a stone wall, trees and other people in canoes. A hand is seen paddling in the water along with the front of the canoe the person paddling is in, the body and face\",\"A person canoes down a narrow and rough waterway in a body of water surrounded by many rocks, a stone wall, trees and other people in canoes.\",\"A hand is seen paddling in the water along with the front of the canoe the person paddling is in, the body and face\",gold,appears in a jar of water.,\"is shown, paddling down as the camera slowly reaches his hand.\",\"are not visible, however.\",quietly continuing with helmets.\n5769,anetv_yWEFVfX-JoI,4875,Two people are in canoes are paddling down rapids on a river. One of them,Two people are in canoes are paddling down rapids on a river.,One of them,gold,stands on horseback as a tuber runs past thick waves.,is stopped at a bank where there is a person in a blue canoe.,falls off with their sticks.,take their canoes down the other river stream.\n5770,anetv_yWEFVfX-JoI,4877,There are people in a group large red tube rapids ride. With other people in canoes going by the person in their canoe,There are people in a group large red tube rapids ride.,With other people in canoes going by the person in their canoe,gold,rafting down the river.,fixes a dog on a stationary rock.,passes under a bridge.,is on the right holding their tubes on the ground.\n5771,anetv_yWEFVfX-JoI,17899,\"A hand is seen paddling in the water along with the front of the canoe the person paddling is in, the body and face are not visible, however. The canoe and the hand\",\"A hand is seen paddling in the water along with the front of the canoe the person paddling is in, the body and face are not visible, however.\",The canoe and the hand,gold,\"travel down a rocky water way and pass other people, trees and rocks.\",rubs the sail on the oars until it pans to the middle of some fugitives that are sitting on all slopes in the water.,are then seen moving backwards along the still river after still scoring with the boat and its still held up covered in a canoe.,from the boat begins to take it off and continues on that side with the riders following the race.\n5772,anetv_yWEFVfX-JoI,4878,With other people in canoes going by the person in their canoe passes under a bridge. They,With other people in canoes going by the person in their canoe passes under a bridge.,They,gold,continue racing up the rapids and flow on across the sky.,get the canoe and continue skiing down the hill.,pass by a building and then fall into the water.,\"people then go on the river and paddle their way over the water, scrubbing down their legs.\"\n5773,lsmdc1001_Flight-71864,7773,She hands him a Zippo. He,She hands him a Zippo.,He,gold,stomps the hook and plunges it.,enters as someone shuts off the dictaphone.,pops it in his mouth.,sticks a cigarette in his mouth.\n5774,lsmdc1001_Flight-71864,7775,A man stands at a podium. Someone,A man stands at a podium.,Someone,gold,climbs down to help the referee.,looks down at someone's face.,is interviewed by the reporter.,sits semi - slumped in a chair.\n5775,lsmdc1001_Flight-71864,7776,Someone sits semi - slumped in a chair. The majority in the room,Someone sits semi - slumped in a chair.,The majority in the room,gold,picks up the phone.,\"lift their hands, including someone.\",catches someone's frenzied gaze.,freezes someone a glass of water.\n5776,anetv_InwY966XXBY,15159,A men is riding a camel and starts walking in the dessert passing by the piramids while a man is leading them with a rope. the camels stops and a man,A men is riding a camel and starts walking in the dessert passing by the piramids while a man is leading them with a rope.,the camels stops and a man,gold,is taking a picture.,appears with a frisbee in front of the man.,rolls out into the water on the camel.,bends down and helps her stand another of the material.\n5777,anetv_InwY966XXBY,15160,The camels stops and a man is taking a picture. men,The camels stops and a man is taking a picture.,men,gold,are riding camels in the dessert.,quickly ride a horse into the woods.,are riding bicycles along a city.,are in a park playing on a track.\n5778,lsmdc3037_IRON_MAN2-17115,1320,Someone places her left hand on someone's chest. They,Someone places her left hand on someone's chest.,They,gold,\", someone sinks a fist in his water, dripping to his own.\",hands her an ice cream shaker.,\", someone looks at someone.\",stop kissing and gaze at each other.\n5779,anetv_OXTQsO5abO4,4147,She plays with an iron. She,She plays with an iron.,She,gold,gulps it along and continues off a walk.,uses her hands to iron.,pretends to iron clothes.,finishes playing with her book and flute.\n5780,anetv_OXTQsO5abO4,4148,She pretends to iron clothes. She,She pretends to iron clothes.,She,gold,drips water from her eyes as she shoves him back into the puddle.,sets down the gown and picks up another photo.,sets the groceries down and places hers glumly on the door.,sets the clothes aside.\n5781,anetv_OXTQsO5abO4,18926,A small child is holding an iron. She,A small child is holding an iron.,She,gold,uses a soft dryer to loosen a wrap.,sprays the water with a brush.,stops a switch and spins the cross.,is pretending to iron clothes on the ground.\n5782,anetv_OXTQsO5abO4,18927,She then folds the clothes. She,She then folds the clothes.,She,gold,\"absently wipes her tears off someone's jacket, then climbs up started to comfort his son.\",is holding the bottle as she covers it three more.,continues to iron it afterward.,loosens the tire and lays it down.\n5783,anetv_OXTQsO5abO4,4146,A baby sits on a mat on the ground. She,A baby sits on a mat on the ground.,She,gold,rides the swing over her head in the playground.,plays with an iron.,caresses her side with a certain push on the way to the bottom.,lifts a weight above her head and starts to perform around her.\n5784,anetv_uo1ERV8LZeU,15470,Pictures of a drink are shown followed by an empty bowl and a person putting ingredients in the bowl. The person,Pictures of a drink are shown followed by an empty bowl and a person putting ingredients in the bowl.,The person,gold,stirs the ingredients all around and pours the mixture into a glass with ice to serve.,continues to speak to the camera and continues to wander around the objects.,\"packs of ingredients into a frying pan, then mixing it with vegetables in the bowl.\",begins cutting out the ingredients and after putting it in their bowl to sharpen other ingredients.\n5785,lsmdc3038_ITS_COMPLICATED-17264,17995,She watches as he gets out of bed. Wearing only boxers someone,She watches as he gets out of bed.,Wearing only boxers someone,gold,sits up again in a clear blue dress dress.,\"keeps her eyes on someone's bed, then sits down next to her.\",grabs his shirt then faces her and slaps his ample belly.,\"is lying in front of him, massaging her legs.\"\n5786,lsmdc3038_ITS_COMPLICATED-17264,17994,Smiling at each other they press their foreheads together. She,Smiling at each other they press their foreheads together.,She,gold,\"stares frantically, and grimaces.\",writhes in light and he heads off.,watches as he gets out of bed.,\"makes her way down the crowded, blue dining room.\"\n5787,lsmdc3038_ITS_COMPLICATED-17264,17997,She pleadingly gestures him around. He,She pleadingly gestures him around.,He,gold,\"heads upstairs, and stops the mercedes.\",tucks in his shirt.,locks them and glances at someone.,flips back and puts a document over his dad's tray.\n5788,lsmdc3038_ITS_COMPLICATED-17264,17996,Wearing only boxers someone grabs his shirt then faces her and slaps his ample belly. He,Wearing only boxers someone grabs his shirt then faces her and slaps his ample belly.,He,gold,solemnly faces someone and puts his lips to his ear.,hands her a robe.,grins gleefully then finds the white cat's crotch.,goes up and whacks him in the crotch.\n5789,lsmdc3015_CHARLIE_ST_CLOUD-733,439,Someone earnestly lifts his dark brows. His brother,Someone earnestly lifts his dark brows.,His brother,gold,underling him to position his pistol on the ground in pain.,gives a sharp nod.,eyes someone's presence.,flees as she heads up a dust mountain deck.\n5790,lsmdc3015_CHARLIE_ST_CLOUD-733,441,Our view rises into the trees above then soars into the sky. The water,Our view rises into the trees above then soars into the sky.,The water,gold,stops as the vehicles thunder around the field.,floats a big white dragon of shape in the distance.,catches their reflection in a flame color.,rushes out with bright mist then swirls around someone's face.\n5791,lsmdc3015_CHARLIE_ST_CLOUD-733,436,Someone stands before him in his Red Sox jacket. Someone,Someone stands before him in his Red Sox jacket.,Someone,gold,\"drives into the darkness of the apartment, striding over a street covered in pipes.\",\"gawks at his brother, then quizzically knits his brow.\",starts to walk away from her tenement.,\"stands up awkwardly, marley way back to the narrator.\"\n5792,lsmdc3015_CHARLIE_ST_CLOUD-733,434,\"The grieving brother crawls onto his hands and knees, then weakly sits up. His chest\",\"The grieving brother crawls onto his hands and knees, then weakly sits up.\",His chest,gold,heaves as he grimaces tearfully and hangs his head.,\"heaving, she cries down nervously.\",heaving as he pokes his hands in the air.,heaves as he reaches up to gently carves a locket with his fingers.\n5793,lsmdc3015_CHARLIE_ST_CLOUD-733,430,\"Glancing at someone's grave over his shoulder, he pulls away, then breaks into a run. He\",\"Glancing at someone's grave over his shoulder, he pulls away, then breaks into a run.\",He,gold,curls into his side.,steps up behind him and steps forward.,abandons the funeral and sprints into the forest.,drops on his elbows and makes his way out of the ship.\n5794,lsmdc3015_CHARLIE_ST_CLOUD-733,437,Someone gives an irritable shrug. His stunned older brother,Someone gives an irritable shrug.,His stunned older brother,gold,pushes him away from the wall.,stares boyishly.,continues to stare at him.,\"pushes himself up, then picks up his journal.\"\n5795,lsmdc3015_CHARLIE_ST_CLOUD-733,440,His brother gives a sharp nod. Our view,His brother gives a sharp nod.,Our view,gold,cuts to someone holding on.,return to the truck.,rises into the trees above then soars into the sky.,drifts toward approaching people's glasses.\n5796,lsmdc3015_CHARLIE_ST_CLOUD-733,429,\"As he shuffles off, his mother grabs his arm. Glancing at someone's grave over his shoulder, he\",\"As he shuffles off, his mother grabs his arm.\",\"Glancing at someone's grave over his shoulder, he\",gold,heads back to a shadowy tree and walks on the road at the high end of town.,\"leans open to someone, tenderly, then closes his mouth.\",\"pulls away, then breaks into a run.\",puts his hands behind his back.\n5797,lsmdc3015_CHARLIE_ST_CLOUD-733,433,\"He starts to push himself up, then lowers his head toward the ground. The grieving brother\",\"He starts to push himself up, then lowers his head toward the ground.\",The grieving brother,gold,\"steps out and glances up at someone, who lies against a nearby wall with deep breaths.\",\"crawls onto his hands and knees, then weakly sits up.\",takes a deep breath and glances over at someone who sits with someone.,pushes someone relentlessly towards someone -.\n5798,lsmdc3015_CHARLIE_ST_CLOUD-733,438,His lips pressed into a slight pout. Someone,His lips pressed into a slight pout.,Someone,gold,steps around on his bench and shimmies his hips.,earnestly lifts his dark brows.,closes his eyes several times.,laughs as someone gazes out.\n5799,lsmdc3015_CHARLIE_ST_CLOUD-733,431,\"With his brother's baseball glove, he jogs down a trail. He\",\"With his brother's baseball glove, he jogs down a trail.\",He,gold,cattle opens a door where he digs in the bag and pulls out a small handgun and pulls it up.,sees the scene of accident.,gazes down as the inspector follows someone down a corridor then searches desperately in the drawer.,leaps forward onto the stage and runs off.\n5800,lsmdc3015_CHARLIE_ST_CLOUD-733,442,\"The water catches their reflection in a flame color. Now, dull gray clouds\",The water catches their reflection in a flame color.,\"Now, dull gray clouds\",gold,\"hang over the same view of the forest, the bay, and the sea.\",float in the air around her.,swoop over the mountains over the years.,float in the air beneath them.\n5801,lsmdc3015_CHARLIE_ST_CLOUD-733,432,He sees the scene of accident. He,He sees the scene of accident.,He,gold,\"opens the drawer: an physician, a man with long - set puzzled looks.\",glares at the phone in his cell.,stalks deeper into the kitchen.,\"starts to push himself up, then lowers his head toward the ground.\"\n5802,lsmdc3015_CHARLIE_ST_CLOUD-733,435,His chest heaves as he grimaces tearfully and hangs his head. The baseball,His chest heaves as he grimaces tearfully and hangs his head.,The baseball,gold,opens up and he sees someone lying on his back with a smile.,rolls back out of the forest toward the mitt.,pens guardian depicts a bloody boy.,\"drops spin and spin, and his desperate look sneaks upstairs.\"\n5803,anetv_c_NlYvL96y0,5675,A girl is stretching her body on a ballet bar. An instructor,A girl is stretching her body on a ballet bar.,An instructor,gold,wearing a black leotard slowly stands on her belly and starts doing flips.,stands with a woman and talks about ballet.,is right behind her and then continues to laugh.,\"shows how to move of the process, flip and step back.\"\n5804,anetv_c_NlYvL96y0,5677,The girl dances and pans back to the instructor. The instructor,The girl dances and pans back to the instructor.,The instructor,gold,helps the child perform situps for another time then stops with another.,talks about the tools you will need for ballet.,stays up and sticks the ball around quickly.,\"continues on the stairs, then perform her routine.\"\n5805,anetv_c_NlYvL96y0,5678,The instructor talks about the tools you will need for ballet. She,The instructor talks about the tools you will need for ballet.,She,gold,\"the workout, the team spin guitars and have their hands as they use lines and pummel the plays.\",talks about various ballet moves to do at the barre while the dancer demonstrates.,continues returning to sheets to grab the clothes and set it down.,speaks extensively in pedaling fitness and showing viewers what to prepare.\n5806,anetv_wD-9KvI1-AI,9937,They clink and hold up mouthwash and take a drink from the glass. They,They clink and hold up mouthwash and take a drink from the glass.,They,gold,swish around the mouthwash and spit it out while laughing.,reached a pitcher of water and put them into the net.,and someone sip their drink.,drift out of the room and back to the family.\n5807,anetv_wD-9KvI1-AI,13003,The girls hold up glasses of mouth wash as well as the bottle itself and begin drinking the liquid. The two,The girls hold up glasses of mouth wash as well as the bottle itself and begin drinking the liquid.,The two,gold,continue to clean pictures of them with their powdered arms.,swish it around their mouths and spit it out in the end while laughing to the camera.,begin laughing and smiling to the camera.,continue playing all the cards and speaking to the camera.\n5808,anetv_wD-9KvI1-AI,9936,Two girls are seen speaking to the camera and holding up glasses. They,Two girls are seen speaking to the camera and holding up glasses.,They,gold,are then shown playing polo and speaking to one another.,pick up dishes and take them into a jar.,walk together and then braids their one in one hand.,clink and hold up mouthwash and take a drink from the glass.\n5809,lsmdc1028_No_Reservations-82814,14121,Someone wears a blue apron over her black top and jeans. She,Someone wears a blue apron over her black top and jeans.,She,gold,scour and place her clothes on a flat - mahogany desk.,picks up her dress and paints dressing further.,enters her spacious suite.,hurries to answer the phone.\n5810,anetv_XNzQVEmoJrY,530,The light goes out and the room is dark. The man in green walks to the middle of the court and,The light goes out and the room is dark.,The man in green walks to the middle of the court and,gold,hits the ball back and forth.,wipes the floor with a towel.,picks up a started.,leans in to see about the game.\n5811,anetv_XNzQVEmoJrY,531,The man in green walks to the middle of the court and hits the ball back and forth. The man,The man in green walks to the middle of the court and hits the ball back and forth.,The man,gold,finishes and walks towards the camera.,competes the holes on his left shoe.,raises his left foot and hits the man in the left.,practice to spot his opponent in the end.\n5812,lsmdc3012_BRUNO-4351,5129,\"It's pulling a train of wheeled clothing racks, with the exercise bike as the caboose. Two racks topple over by an electronics store, and he\",\"It's pulling a train of wheeled clothing racks, with the exercise bike as the caboose.\",\"Two racks topple over by an electronics store, and he\",gold,dips them in a bulletproof iron.,lands on his bed bound.,climbs the e deck stairs.,struggles to right them.\n5813,lsmdc3012_BRUNO-4351,5131,\"Tvs in the store window, show celebrities on red carpets. Someone\",\"Tvs in the store window, show celebrities on red carpets.\",Someone,gold,\"gets to his feet, his gaze locked on the tvs.\",\"overhears another photographer's number, and steps over the railing.\",stares and averts his gaze.,accepts the tipped designer.\n5814,lsmdc3012_BRUNO-4351,5127,Someone gives a stunned blink. He,Someone gives a stunned blink.,He,gold,deposits his guitar off the seat of his boots.,palace gate closes.,\"settles back on the chair, gazes at him.\",pulls his blanket tighter.\n5815,lsmdc3012_BRUNO-4351,5128,\"Wearing pants, cowboy boots, and a dark tee, someone pushes a shopping cart. It\",\"Wearing pants, cowboy boots, and a dark tee, someone pushes a shopping cart.\",It,gold,moves over a narrow expanse of splits and someone jumps backward in the sunlight.,\"collects the teen's gun on a hook, and rides its own down the supply.\",\"'s pulling a train of wheeled clothing racks, with the exercise bike as the caboose.\",angles a city street.\n5816,lsmdc3012_BRUNO-4351,5126,Someone glares at his assistant with a knit brow. Someone,Someone glares at his assistant with a knit brow.,Someone,gold,rushes through the rear door.,eyes her weathered member.,gives a stunned blink.,slaps the card back.\n5817,lsmdc3012_BRUNO-4351,5130,\"Two racks topple over by an electronics store, and he struggles to right them. Tvs in the store window,\",\"Two racks topple over by an electronics store, and he struggles to right them.\",\"Tvs in the store window,\",gold,are still flipping around a wooden crowd.,showing their slimy shudders slack.,show celebrities on red carpets.,are festooned with scraping.\n5818,lsmdc3032_HOW_DO_YOU_KNOW-2716,12347,She returns her gaze to him. Someone,She returns her gaze to him.,Someone,gold,\"nods, her eyes glistening.\",smokes a small cigarette.,shakes with tears as she walks away.,shakes his head someone rests a hand against her neck.\n5819,lsmdc3032_HOW_DO_YOU_KNOW-2716,12344,He takes the Play - Doh from her and eyes it. He,He takes the Play - Doh from her and eyes it.,He,gold,carefully lays a condom in the corner then uncovers a smooth glass.,stares into her eyes.,points at his dad who writes in the front.,gets a control of his belt.\n5820,lsmdc3032_HOW_DO_YOU_KNOW-2716,12352,\"As the three women chat, someone lifts her gaze from the watch. On the patio, someone\",\"As the three women chat, someone lifts her gaze from the watch.\",\"On the patio, someone\",gold,shakes someone's tea and walks to the dressing room.,\"shakes someone's hand, then hurries along.\",stands in a doorway in his living room.,presents a cereal box containing his cereal.\n5821,lsmdc3032_HOW_DO_YOU_KNOW-2716,12345,He stares into her eyes. She,He stares into her eyes.,She,gold,rests her hand on his shoulder.,\"holds his gaze for a moment, then looks down with a touched expression.\",turns to look at the entrance that has been lifted.,backs away from someone.\n5822,lsmdc3032_HOW_DO_YOU_KNOW-2716,12350,She glances at the Play - Doh. Someone,She glances at the Play - Doh.,Someone,gold,looks up over her shoulder to see a group and carrying women walk across an indoor field with their dog.,\"nods, his eyes misty as well.\",\"lights a cigarette, exposing after house.\",\", he approaches someone's apartment and shuts the door behind him and approaches a hand display the front desk talking.\"\n5823,lsmdc3032_HOW_DO_YOU_KNOW-2716,12353,Someone watches with a curious look as someone opens the door and turns to her again. He,Someone watches with a curious look as someone opens the door and turns to her again.,He,gold,opens his mouth to speak.,\"reaches down, grabs scotty arm, and turns back to his watch.\",gives her a sunny grin and heads up the table.,\"waddles over, hammering each one more time.\"\n5824,lsmdc3032_HOW_DO_YOU_KNOW-2716,12351,\"Avoiding someone's gaze, she stands and he follows suit. She\",\"Avoiding someone's gaze, she stands and he follows suit.\",She,gold,\"walks back into the apartment, leaving him staring after her.\",hits a box on the kitchen table.,comes down the steps.,works galloping through the cavernous space.\n5825,lsmdc3032_HOW_DO_YOU_KNOW-2716,12354,\"Outside by the bus stop a couple strolls by someone as he paces, his shoulders sagging. The headlights of passing cars\",\"Outside by the bus stop a couple strolls by someone as he paces, his shoulders sagging.\",The headlights of passing cars,gold,cast their warm glow on the wet pavement.,sway in a gentle breeze.,has two metal barriers next to a courtyard.,as he wheels a paper wagon forward.\n5826,anetv_je5KvCND9xo,13,The man points to several parts of his body. the man then,The man points to several parts of his body.,the man then,gold,takes out several paint sets and speaks to it to mean paint.,goes down the hill while moaning while several dogs are shown looking to the camera.,begins to demonstrate sits ups and other exercises.,takes a mechanical tool all by.\n5827,anetv_je5KvCND9xo,18931,\"A man is on the floor, talking. He does several sit ups, then he\",\"A man is on the floor, talking.\",\"He does several sit ups, then he\",gold,shows off the equipment and gets back to work.,\"sits more upright, continuing to talk.\",moves to finish the weights.,does an aerobic routine on the stage in coaching on the performance.\n5828,anetv_je5KvCND9xo,18930,A sign says Accent Help on the screen. A man,A sign says Accent Help on the screen.,A man,gold,throws a towel in a yard.,jumps up a slope in a tube.,puts butter ingredients on a dish.,\"is on the floor, talking.\"\n5829,anetv_je5KvCND9xo,12,A man is laying on the floor talking to the camera. the man,A man is laying on the floor talking to the camera.,the man,gold,is placing carpet in the end of the bed.,points to several parts of his body.,is shaving his beard blind.,is shaving a cream with an electric razor.\n5830,anetv_TT2e7-NbUxo,5247,A boy is sitting in a salon chair and talking. A stylist,A boy is sitting in a salon chair and talking.,A stylist,gold,cuts his hair into a new style.,uses the trimmer to trim his beard.,tosses the blue dry leaving the doll's hair.,\"is in the room at the viewers, having the hair shaved.\"\n5831,anetv_TT2e7-NbUxo,5248,A stylist cuts his hair into a new style. He,A stylist cuts his hair into a new style.,He,gold,spins the man gray hair on its head with a casually brush and cape.,takes pins with a twist of his hair.,performs a loving hooping on his violin.,dries and sprays the hair into a spikey look.\n5832,anetv_Y75Fvr71aRQ,10846,A man is seen speaking to the camera while text appears on the screen. The man,A man is seen speaking to the camera while text appears on the screen.,The man,gold,continues to explain how to capture the camel's hair.,rubs wax onto his hands while speaking to the camera.,starts playing the piano and gets on another and continues playing.,continues speaking and leads into him playing an instrument.\n5833,anetv_Y75Fvr71aRQ,10847,The man continues speaking and leads into him playing an instrument. He,The man continues speaking and leads into him playing an instrument.,He,gold,continues hitting the instrument while the camera zooms in on his movements.,pauses his playing to hold up his hand while playing again and then stopping.,continues to move the instrument and presenting it to the camera.,points a handle onto the shirt and ends by playing the instrument.\n5834,anetv_U7oDqpIYsxI,19294,An exercise machine spins around a circle when a man walks into frame. The man,An exercise machine spins around a circle when a man walks into frame.,The man,gold,throws his arms up and ends with text in the distance.,throws his arms down and raises the weights several times.,rises and puts a rope in it.,takes a drink and uses the machine.\n5835,anetv_U7oDqpIYsxI,13604,\"Once the man has done some exercising, he takes out a usb device and records his workout and process and saves it on his computer. When he is finished, he\",\"Once the man has done some exercising, he takes out a usb device and records his workout and process and saves it on his computer.\",\"When he is finished, he\",gold,begins the blow chalks as far as point appears.,then grabs the the elliptical and rolls it out.,removes the water and pushes it across the tarmac.,puts down his helmet and looks up then the snow man gets completely wet and after the first begins his process.\n5836,anetv_U7oDqpIYsxI,19295,The man takes a drink and uses the machine. He,The man takes a drink and uses the machine.,He,gold,stops dead at a short time by the wall.,lifts the hat and adjusts the dealers of the stunts.,takes a look at his hands holding a ticket.,\"adjusts the settings and continues riding, ending by rolling it away in the end.\"\n5837,anetv_61W153jXL3U,13601,He rubs the soap together in his hands and massages into his face thoroughly. He then,He rubs the soap together in his hands and massages into his face thoroughly.,He then,gold,rubs the lotion all around her body before posing with his back to her and rubbing it down.,rubs the brush material out of the shaving and then grabs the model from the clean water.,wipes his face off with a towel and speaking to the camera and pouring more lotion.,\"uses the oil, powder and begins to show the can of cuts.\"\n5838,anetv_61W153jXL3U,13600,A man is showing washing his face with water into a sink and putting lotion into his hand. He,A man is showing washing his face with water into a sink and putting lotion into his hand.,He,gold,is kayaking on the sink.,rubs the soap together in his hands and massages into his face thoroughly.,adds the rag behind it into powder and sprays it and rubs it in a towel.,\"continues playing around, looking off into the distance as the foot still is still recording him.\"\n5839,anetv_61W153jXL3U,13602,He then wipes his face off with a towel and speaking to the camera and pouring more lotion. He once again presses the lotion into his face and a recap,He then wipes his face off with a towel and speaking to the camera and pouring more lotion.,He once again presses the lotion into his face and a recap,gold,goes out of his face and washes his legs before finishing one.,is shown on his suit and his weight.,is on his face.,is shown of his face.\n5840,anetv_hDf32SV0QN0,19981,She begins brushing her partially wet hair. She,She begins brushing her partially wet hair.,She,gold,\"stands up, hands on hips as she heads toward the kitchen.\",spins around in her shower chair.,\"continues brushing, then stops and stares at the camera.\",bobs her hair up and down wearing a dull face.\n5841,anetv_hDf32SV0QN0,19980,A woman is sitting in front of a camera. She,A woman is sitting in front of a camera.,She,gold,begins brushing her partially wet hair.,is in a sandy area and begins walking back to the building and moving around her.,talks about belly jumps at a bed next to her.,picks up a brush and begins brushing her face.\n5842,lsmdc3060_SANCTUM-29374,1087,\"The young man climbs up on an underwater ledge and raises his flippered feet. Hiking over a ridge, someone\",The young man climbs up on an underwater ledge and raises his flippered feet.,\"Hiking over a ridge, someone\",gold,dives from the top of his tank and paddles it into a muddy puddle.,turns to see a blue sign touching a sign.,finds a vast cavernous passageway ascending before him.,runs himself through the water.\n5843,lsmdc3060_SANCTUM-29374,1081,\"Grabs hold and jerks at it. Outside the tunnel, the exit\",Grabs hold and jerks at it.,\"Outside the tunnel, the exit\",gold,is the howling captain lavatory.,shows no sign of her approach.,slides off someone's helmet and leaps onto outer shaft.,creeps together.\n5844,lsmdc3060_SANCTUM-29374,1085,\"Someone shakes his head, wags a finger, then swims toward the tunnel himself. A headlamp beam\",\"Someone shakes his head, wags a finger, then swims toward the tunnel himself.\",A headlamp beam,gold,rises and crashes onto the deck below.,appears from the darkness.,spreads over the monstrous troll.,rises to the top of a thin beam.\n5845,lsmdc3060_SANCTUM-29374,1080,The others continue to wait in one line. Grabs,The others continue to wait in one line.,Grabs,gold,hold and jerks at it.,\"buy her, picks someone up, gets out of bed and runs off.\",stand across a rope line.,pointed their wand at someone.\n5846,lsmdc3060_SANCTUM-29374,1086,A headlamp beam appears from the darkness. Someone,A headlamp beam appears from the darkness.,Someone,gold,turns to look as someone crawls into view.,\"lies in bed, lost in reflection.\",\"marches out every gate, following the grand winding corridor lit by the outer one.\",gets into someone's passenger seat.\n5847,lsmdc3060_SANCTUM-29374,1082,\"Outside the tunnel, the exit shows no sign of her approach. Someone\",\"Outside the tunnel, the exit shows no sign of her approach.\",Someone,gold,taps his boss on the shoulder.,looks from one foot to the other.,steps over the counter and creeps the horses towards a curving path beyond a door.,lumbers off down the steep hallway towards the mansion.\n5848,lsmdc3060_SANCTUM-29374,1083,\"Someone taps his boss on the shoulder. As someone faces him, he\",Someone taps his boss on the shoulder.,\"As someone faces him, he\",gold,reaches up in front of the still arched windows come on.,hooks his case along the small man's back.,swallows and swallows his own cue.,points at his own eyes then at the restriction.\n5849,lsmdc3060_SANCTUM-29374,1079,\"In the Cathedral, someone faces someone worriedly. The others\",\"In the Cathedral, someone faces someone worriedly.\",The others,gold,come out on the missiles.,continue to wait in one line.,smile as the dancers leave the room.,watch while someone instructs someone.\n5850,lsmdc3089_XMEN_FIRST_CLASS-43807,14986,\"Someone looks to his right, as does someone. His four cohorts\",\"Someone looks to his right, as does someone.\",His four cohorts,gold,stand in the doorway.,step out towards him staring at someone.,step out of his car and look around the factory.,burst just opposite the door.\n5851,lsmdc3089_XMEN_FIRST_CLASS-43807,14983,The door rips open and someone shifts into her diamond form. Someone,The door rips open and someone shifts into her diamond form.,Someone,gold,ambles into the cell.,\"bends down, pulls out his tools and puts it in a pile.\",glances at a car before show the newspaper.,spots a sea flying in a clearing.\n5852,lsmdc3089_XMEN_FIRST_CLASS-43807,14980,\"One man grabs a phone. As someone peers out a window, our view\",One man grabs a phone.,\"As someone peers out a window, our view\",gold,is seen with wall filled green interior.,finds the restaurant's window.,descends to someone's cell.,rises into the sky.\n5853,lsmdc3089_XMEN_FIRST_CLASS-43807,14982,\"Clad in white, the blonde mutant rises from her bed and faces a metal door. The door rips open and someone\",\"Clad in white, the blonde mutant rises from her bed and faces a metal door.\",The door rips open and someone,gold,runs out of view of the room.,shifts into her diamond form.,pulls a dresser bag out.,turns her off the opposite side.\n5854,lsmdc3089_XMEN_FIRST_CLASS-43807,14984,Someone ambles into the cell. He,Someone ambles into the cell.,He,gold,sees that on the track.,begins 60s style residence with screws and thin passes.,wears a red helmet and black cape.,pulls the doors shut and heads for the front door.\n5855,lsmdc3089_XMEN_FIRST_CLASS-43807,14987,His four cohorts stand in the doorway. Someone,His four cohorts stand in the doorway.,Someone,gold,enters and smiles sadly at the driver.,slides backward through the water into a backward - shot and glances onto the lane.,puffs on a pipe as he plays the organ.,\"returns her gaze to her initial visitor, then changes back to her human form.\"\n5856,lsmdc3089_XMEN_FIRST_CLASS-43807,14981,\"As someone peers out a window, our view descends to someone's cell. Clad in white, the blonde mutant\",\"As someone peers out a window, our view descends to someone's cell.\",\"Clad in white, the blonde mutant\",gold,knocks over the ball and throws it to her teammate.,sprints down a high - ceilinged hallway.,rises from her bed and faces a metal door.,humps someone as he passes.\n5857,anetv_WnYqWQ005Tc,14370,\"An Asian male is standing on a hard wood floor and begins talking and begins to do a spin on his head. After the clip, he\",An Asian male is standing on a hard wood floor and begins talking and begins to do a spin on his head.,\"After the clip, he\",gold,continues moving from side to floor as the entire man captures the entire place perfectly.,comes back and shows how to properly place your hands on the floor.,\"makes his way back to the athlete who balances on the vertical ropes, holding on.\",attempts to do some other tricks and then makes a peace sign to lettering and an area of the track and end.\n5858,lsmdc0043_Thelma_and_Luise-68421,12647,They are trying not to panic. The patrol car,They are trying not to panic.,The patrol car,gold,\"follows, over the noise, moving up the street.\",has opened the doors.,hits the tugboat and bounced.,is right behind them.\n5859,lsmdc0043_Thelma_and_Luise-68421,12645,The red and blue lights pop on. It,The red and blue lights pop on.,It,gold,are wearing actual insect and animal propellers.,is a new mexico state patrol car.,is used to high jump up a high pole in jumps lands and landed in a pile.,back up and presses.\n5860,lsmdc0043_Thelma_and_Luise-68421,12649,Someone pulls the car off the road. The patrol car,Someone pulls the car off the road.,The patrol car,gold,is lowered to the main bay.,pulls up right behind them.,stands up at its tail.,starts back for the first time.\n5861,lsmdc0043_Thelma_and_Luise-68421,12652,\"Someone fumbles in her purse for her wallet, opens it and shows her license. They\",\"Someone fumbles in her purse for her wallet, opens it and shows her license.\",They,gold,\"get into the car and someone out her driveway, he follows her through the gates.\",walk to the back of the car.,is gone.,\", she dances with her younger brother; a group of parents are fencing together on a half of his house cd.\"\n5862,lsmdc0043_Thelma_and_Luise-68421,12657,\"He picks up the hand mike for the radio and, as he does, a hand with a gun comes in his car window. It's someone and she\",\"He picks up the hand mike for the radio and, as he does, a hand with a gun comes in his car window.\",It's someone and she,gold,puts the gun to his head.,is trying to hitch her feet and walk into an office.,places a slip of paper into an box.,\"is still in fact, in private's backyard setting.\"\n5863,lsmdc0043_Thelma_and_Luise-68421,12648,The patrol car is right behind them. Someone,The patrol car is right behind them.,Someone,gold,pulls the car off the road.,stares at him intently.,takes a gun in the gutter.,strides casually with someone's sword.\n5864,lsmdc0043_Thelma_and_Luise-68421,12651,The patrolman gets out of his car and approaches their car. He,The patrolman gets out of his car and approaches their car.,He,gold,checks out the fire.,comes to the driver's side window.,\"stirs, and the car follows.\",stares across the room with his bags.\n5865,lsmdc0043_Thelma_and_Luise-68421,12653,They walk to the back of the car. He,They walk to the back of the car.,He,gold,has reached the second level.,gives a wide - eyed shrug.,notes the license plate number.,stares at the open shell below.\n5866,lsmdc0043_Thelma_and_Luise-68421,12656,\"He picks up a clipboard and clips someone's driver's license to it. He picks up the hand mike for the radio and, as he does, a hand with a gun\",He picks up a clipboard and clips someone's driver's license to it.,\"He picks up the hand mike for the radio and, as he does, a hand with a gun\",gold,comes in his car window.,\", quickly takes the seat, places his or's left hand on his earpiece, conditioning one.\",\"emerges from the window with a blanket of bills, while two other men are featured.\",comes out of his hole onto the stone frame for a weapon.\n5867,lsmdc0043_Thelma_and_Luise-68421,12644,The car is screaming down the road. They,The car is screaming down the road.,They,gold,\"someone moves to the door, the swings it opens and knocks the rubble to table, then topple over.\",drive away.,drive through a little stand of buildings.,\", towels, and party people are naked and face up along a driveway.\"\n5868,lsmdc0043_Thelma_and_Luise-68421,12646,It is a New Mexico State Patrol car. Someone,It is a New Mexico State Patrol car.,Someone,gold,\"halts fire in his eyes, but chest waves.\",sees the lights in the rearview mirror.,gotten he needs because his bike and exercising.,stands looking ahead his papers.\n5869,lsmdc0043_Thelma_and_Luise-68421,12650,The patrol car pulls up right behind them. The lights,The patrol car pulls up right behind them.,The lights,gold,go through the block of wood.,move out and people continue to stare.,shine brightly in through the windows.,turn and look around as he fires.\n5870,lsmdc0043_Thelma_and_Luise-68421,12654,He notes the license plate number. Patrolman,He notes the license plate number.,Patrolman,gold,shrugs the leg and scoots forward to the floor of the hall.,hangs his head then squeezes his eyes shut.,comes in who tosses a patient.,gets in the driver's side.\n5871,lsmdc0043_Thelma_and_Luise-68421,12655,Patrolman gets in the driver's side. He,Patrolman gets in the driver's side.,He,gold,rubs the windshield with his right foot and fights off the driver's jumping windshield.,slides hard in the back seat of the villain car.,picks up a clipboard and clips someone's driver's license to it.,\"slides into the crane, swerves it in teh passenger seat, then pulls off the traffic.\"\n5872,lsmdc0023_THE_BUTTERFLY_EFFECT-59560,4045,People have just finished having sex. She,People have just finished having sex.,She,gold,giggles and snuggles into him.,\"murmurs off, into the ward.\",looks down at the floor and dances back in her direction.,hangs up and bends discreet them.\n5873,lsmdc0023_THE_BUTTERFLY_EFFECT-59560,4046,She giggles and snuggles into him. He,She giggles and snuggles into him.,He,gold,\"is grateful for her affection, but still looks uneasy.\",looks at him for a moment.,has the back of the box.,waves around to anh assistant.\n5874,lsmdc0020_Raising_Arizona-57584,4733,\"Still on the dead run, someone is flinging the carton of Huggies. Futilely raising his gun to avoid - impact: The Huggies\",\"Still on the dead run, someone is flinging the carton of Huggies.\",Futilely raising his gun to avoid - impact: The Huggies,gold,is returned towards the building.,are visible by a policeman.,catch him square on the chest.,wash gone wild.\n5875,lsmdc0020_Raising_Arizona-57584,4727,\"The pack of dogs appears at the end of the lane and thunders up toward someone, braying at the top of their doggy lungs. The lead Doberman\",\"The pack of dogs appears at the end of the lane and thunders up toward someone, braying at the top of their doggy lungs.\",The lead Doberman,gold,is also watering as the dog's head goes on the edge.,pokes at someone's helm until his tail tips outlined.,holds in his teeth a paper 7 - eleven cap.,has a bottle of corpses being crushed to the tree that lets them in.\n5876,lsmdc0020_Raising_Arizona-57584,4726,\"Someone abruptly stops between lanes and doubles back, losing the Policeman. He\",\"Someone abruptly stops between lanes and doubles back, losing the Policeman.\",He,gold,cycles back on the train repeatedly.,starts reverses and spinning himself around the swing.,runs down the second lane he comes to toward the front of the store.,sniffs the oxygen pipe and pulls himself up into the water.\n5877,lsmdc0020_Raising_Arizona-57584,4736,Someone is just skidding around the corner. Someone,Someone is just skidding around the corner.,Someone,gold,sweeps a square card in his pocket.,scrambles in the passenger side.,pulls up someone's visor.,is standing behind a counter.\n5878,lsmdc0020_Raising_Arizona-57584,4723,\"Tracking on him as he runs down the broad front aisle, head whipping as he runs, looking up each perpendicular lane, searching for something. He\",\"Tracking on him as he runs down the broad front aisle, head whipping as he runs, looking up each perpendicular lane, searching for something.\",He,gold,\", then moves to the back window and gazes down on the highway.\",\"turns up one of the last lanes, races along it and grabs a carton of huggies, still on the flat run.\",looks around abruptly then turns out of view.,\"charges at him, knocking balls, trying to get someone up out of the air.\"\n5879,lsmdc0020_Raising_Arizona-57584,4737,Someone scrambles in the passenger side. The car,Someone scrambles in the passenger side.,The car,gold,stops by the curb.,runs down the highway.,pulls someone back to pieces.,peels out of the lot.\n5880,lsmdc0020_Raising_Arizona-57584,4724,\"The Policeman is running along the front aisle, keeping pace with someone running along the back aisle. He\",\"The Policeman is running along the front aisle, keeping pace with someone running along the back aisle.\",He,gold,\"kicks the prison guard over the shoulder, then hobbles toward the back door.\",throws his limp head back.,squeezes off shots at someone as each lane gives him the opportunity.,floats across a marketplace.\n5881,lsmdc0020_Raising_Arizona-57584,4738,The car peels out of the lot. Thwak - someone gives him a good hard slap and someone's head,The car peels out of the lot.,Thwak - someone gives him a good hard slap and someone's head,gold,rolls toward the camera.,dips with its gold letters then slaps it on the back of his temples.,falls back and screams as he sees he's lying nude.,loosens slowly against one.\n5882,lsmdc0020_Raising_Arizona-57584,4731,The manager is blowing out groceries on the shelves behind him. As he,The manager is blowing out groceries on the shelves behind him.,As he,gold,coolly levels his police special and takes aim at someone.,\"goes down, his young girls look past his frantic friend, settling on his couch for something.\",\"moves closer, a voice to his left hits.\",sits across from someone.\n5883,lsmdc0020_Raising_Arizona-57584,4734,\"Beyond her we can see the pack of furiously barking dogs, nipping at her heels. As someone\",\"Beyond her we can see the pack of furiously barking dogs, nipping at her heels.\",As someone,gold,\"leaves the restaurant, someone of the men, someone, is looking frightened.\",\"is back up, someone continues to talk down the hallway.\",emerges through the back door.,\"watches her, they head into the open garage and she ties her pain.\"\n5884,lsmdc0020_Raising_Arizona-57584,4725,He squeezes off shots at someone as each lane gives him the opportunity. Someone,He squeezes off shots at someone as each lane gives him the opportunity.,Someone,gold,hops across the table and faces an aide with a pinatas.,steers his broomstick behind it to yank someone through the rock.,takes a bite of the food package.,\"abruptly stops between lanes and doubles back, losing the policeman.\"\n5885,lsmdc0020_Raising_Arizona-57584,4729,The Manager cracks open his shotgun and inserts two more cartridges - thoonk thoonk - in the smoking chamber. Someone,The Manager cracks open his shotgun and inserts two more cartridges - thoonk thoonk - in the smoking chamber.,Someone,gold,doubles back once again toward the back aisle.,shoots the bearded which releases the nazi grip and reverses a cable.,heads down the hall and moves towards the door.,slides on the desk and gropes up.\n5886,lsmdc0020_Raising_Arizona-57584,4735,As someone emerges through the back door. Someone,As someone emerges through the back door.,Someone,gold,is just skidding around the corner.,searches for her bag.,sneaks inside the lift.,grabs the informant's cap and whips someone forward.\n5887,anetv_w--X02F3MHM,10116,A group of three little boys line up to play hopscotch. They,A group of three little boys line up to play hopscotch.,They,gold,ride from side to side and trip to village.,jump and skip across the chalk drawn game.,walk around and continue talking and eating bad of tended while continue cutting.,spots an old lady kneeling by a tree.\n5888,anetv_w--X02F3MHM,10117,They jump and skip across the chalk drawn game. They,They jump and skip across the chalk drawn game.,They,gold,then take the balls and throw it in a competition.,take turns until all three have jumped across.,pass in signs.,bounce in another formation over the camera.\n5889,anetv_ZjYttT9itfY,14898,The man starts spinning around in a circle. the man then,The man starts spinning around in a circle.,the man then,gold,flips this bike back several times.,begins to do it backward and ends by flipping and throwing the discus.,throws the shot put.,throws the object off into the distance.\n5890,anetv_ZjYttT9itfY,13918,They men are shown spinning quickly. They each,They men are shown spinning quickly.,They each,gold,\"kick the ball back and forth, tossing the ball back and forth.\",carry a cat and punching it in the same direction for the use.,throw the ball as far as they can.,do a long jump and run down the track.\n5891,anetv_ZjYttT9itfY,14897,A man stands on a field with a shut put in his hand. the man,A man stands on a field with a shut put in his hand.,the man,gold,does a handstand and somersaults back and forth.,starts spinning around in a circle.,mix water with a stick.,walks back and forth with hammer throw.\n5892,lsmdc1008_Spider-Man2-75743,15452,It lands upside down on its roof in the middle of the cafe. Someone,It lands upside down on its roof in the middle of the cafe.,Someone,gold,\"carries by the arms of the young man, steps from the crowd forward, and grabs hold of the cup.\",run hurriedly through the school.,helps someone to her feet.,drops his open bottle onto the mattress.\n5893,lsmdc1008_Spider-Man2-75743,15453,Someone helps someone to her feet. They,Someone helps someone to her feet.,They,gold,hear the thuds coming from outside.,watch him go.,sit at the table.,\"train follows their voices through the forest, disguised in military shorts, with a red light.\"\n5894,lsmdc1008_Spider-Man2-75743,15446,Her engagement rings shines brightly. Someone's eyes,Her engagement rings shines brightly.,Someone's eyes,gold,dart as she eyes someone.,move up from her hand to her face.,widen as the women hold their grips.,are cut and dull.\n5895,lsmdc1008_Spider-Man2-75743,15456,A limb removes someone 'shades. The mechanical limb clutching someone throws him acroos the cafe but he,A limb removes someone 'shades.,The mechanical limb clutching someone throws him acroos the cafe but he,gold,has not heard before.,\"slams against the back wall and falls to the floor, surrounded by debris.\",yanks it from his hand.,rubs his lips together.\n5896,lsmdc1008_Spider-Man2-75743,15445,\"Someone looks up, surprised. She\",\"Someone looks up, surprised.\",She,gold,lays back in front of the tree.,are going into contact realization.,is disguised someone big.,lays her hand on his.\n5897,lsmdc1008_Spider-Man2-75743,15458,\"Someone bursts from under the rubble. Someone stands still for a moment, his jaw firm, and then he\",Someone bursts from under the rubble.,\"Someone stands still for a moment, his jaw firm, and then he\",gold,starts to turn away.,\"takes big sunglasses and holds his butt up, involves a faint break.\",runs out onto the street.,holds his door open.\n5898,lsmdc1008_Spider-Man2-75743,15450,\"Someone dives across the table at someone, snatches her into his arms and flings her and him to the floor. The car\",\"Someone dives across the table at someone, snatches her into his arms and flings her and him to the floor.\",The car,gold,drives along a steadily road.,flies past their heads.,is now mixed free.,follows someone's car.\n5899,lsmdc1008_Spider-Man2-75743,15444,He looks at the table. She,He looks at the table.,She,gold,\"lowers her head, then raises it.\",stares up at the janitor.,draws the cone towards him.,sits up and takes a sip.\n5900,lsmdc1008_Spider-Man2-75743,15461,He slips them back on. He,He slips them back on.,He,gold,steps to a man and starts following someone.,takes them off again and drops them to the ground.,glances at his father.,leans over to the window.\n5901,lsmdc1008_Spider-Man2-75743,15459,\"Through his glasses, the outlines of people are fuzzy. He\",\"Through his glasses, the outlines of people are fuzzy.\",He,gold,leans over to discover a brunette women in a booth.,holds up a coin.,takes them off and can see perfectly.,slips off a rack into his corner.\n5902,lsmdc1008_Spider-Man2-75743,15463,\"Then, eyes blazing, he strides on. At the Bugle, someone\",\"Then, eyes blazing, he strides on.\",\"At the Bugle, someone\",gold,\"sits alone in the living room, smoking a pipe.\",looks skywards as she gets out.,walks into the editor's office.,starts the plane on a narrow bridge.\n5903,lsmdc1008_Spider-Man2-75743,15462,He takes them off again and drops them to the ground. A thick lens,He takes them off again and drops them to the ground.,A thick lens,gold,form a ring on his finger.,is cast over his shoulder.,falls from the frame as it bounces.,is removed from the thermometer upside down.\n5904,lsmdc1008_Spider-Man2-75743,15460,He takes them off and can see perfectly. He,He takes them off and can see perfectly.,He,gold,puts a box back in his pocket.,gives a deep sigh.,slips them back on.,\"takes one out, flipping it over before he reaches the top of the steps.\"\n5905,lsmdc1008_Spider-Man2-75743,15451,The car flies past their heads. It,The car flies past their heads.,It,gold,lands upside down on its roof in the middle of the cafe.,turns the bumpy path inside.,hangs on their shoulders as the cops enter.,leaps with someone in the lens bomb and lands on the roof.\n5906,lsmdc1008_Spider-Man2-75743,15448,She stretches further across the table. He,She stretches further across the table.,He,gold,is applying 50 foot high.,\"edges his mouth closer to hers, then stops.\",\"turns, settles her tongue wedged in the wall with her eyes closed, glances at him and mouths, touching her face.\",\"rolls out from under her, and enters.\"\n5907,lsmdc1008_Spider-Man2-75743,15447,Someone's eyes move up from her hand to her face. She,Someone's eyes move up from her hand to her face.,She,gold,spits on its finger.,starts to twist away from each coin.,stretches further across the table.,\"looks, revealing a flash of black smoke.\"\n5908,anetv_-od9zDziq9U,19170,She pauses in that position before she begins to dance around. She,She pauses in that position before she begins to dance around.,She,gold,continues dancing as she moves his dance around until she is finished and slides her knees away.,stops spinning then briefly hugs her.,continues performing playing another shortly afterwards.,does a split and some poses all around.\n5909,anetv_-od9zDziq9U,19169,A girl walks up the the center of the stage and messes with her feet and gets in position. She,A girl walks up the the center of the stage and messes with her feet and gets in position.,She,gold,spins her balance once again then she finishes and gets back finishes.,pauses in that position before she begins to dance around.,drops the bolt then the other girl doing her moves slowly.,\"spots, and jump jacks with her hands in order to grab ropes.\"\n5910,lsmdc3021_DEATH_AT_A_FUNERAL-1254,18048,\"With his cane, Uncle someone steals his cake and takes a bite. He\",\"With his cane, Uncle someone steals his cake and takes a bite.\",He,gold,looks at the petals from one of the birds display on small cakes.,extends two piece of bread to someone.,takes the cake from his mouth.,sees someone and his family are alone.\n5911,lsmdc3021_DEATH_AT_A_FUNERAL-1254,18047,In a nearby corner Uncle someone awakes. He,In a nearby corner Uncle someone awakes.,He,gold,pays for someone who hands him cover.,shakes his head and punches someone in the throat.,holds someone as he hurtles up towards someone.,spots someone at the dining table.\n5912,anetv_PRLlYhneNMk,3053,They then quickly wrap a present and show off a better present underneath. More shots,They then quickly wrap a present and show off a better present underneath.,More shots,gold,are shown of them walking in the back out mousse and doing the same thing.,are shown in the floor and ends with a martial art game.,are shown of them wrapping as they quickly move around and speaking to the camera.,are seen of people in snow and helping someone off.\n5913,anetv_PRLlYhneNMk,3052,Two people are seen wearing funny hates and standing behind a table speaking to the camera. They then,Two people are seen wearing funny hates and standing behind a table speaking to the camera.,They then,gold,stand together stepping up and side to side.,quickly wrap a present and show off a better present underneath.,begin speaking around the dog as well as moving back and fourth next another match.,begin fighting then throwing the hands and putting them into their mouths.\n5914,anetv_KYl67H9-4TA,4570,A small child wearing a wig is seen holding a violin and speaking to the camera. She then,A small child wearing a wig is seen holding a violin and speaking to the camera.,She then,gold,begins playing the guitar while moving her hands up and down and to the camera.,plays a song on the violin moving his arms and hands back and fourth and ends by speaking off into the distance.,begins cutting a cat's claws while the camera pans around her movements.,puts candies onto the drums and speaking to the camera while playing the drums.\n5915,anetv_zahB34blHyk,760,There is a man wearing a blue hazmat suit spray painting a tall fence. He,There is a man wearing a blue hazmat suit spray painting a tall fence.,He,gold,\"studies his reflection on his thin, spiky shaft.\",is using a spray paint hose to paint the wooden fence.,see several clips of creatures and areas of the ground.,uses the shears to decorate the exterior.\n5916,anetv_zahB34blHyk,761,He is using a spray paint hose to paint the wooden fence. He,He is using a spray paint hose to paint the wooden fence.,He,gold,blows the leaves in a smoke.,moves the hose back and forth to ensure he covers the entire surface area of the fence.,feigns the side of the fence.,uses a paper brush to scrape off the animal.\n5917,anetv_n-BJ753InB0,15106,A person is seen smiling to the camera while holding a scraper. The person then,A person is seen smiling to the camera while holding a scraper.,The person then,gold,begins pushing snow along the car.,begins riding on waves and walking into a boat.,puts water on around the car while showing off the darts.,begins pushing the paint around and sitting down.\n5918,anetv_n-BJ753InB0,15107,The person then begins pushing snow along the car. The woman,The person then begins pushing snow along the car.,The woman,gold,continues to ski down the hill and continues speaking.,continues applying the wood to the car while speaking to the camera.,speaks to the camera again and shoots in the distance.,continues to push around the snow as well as a man behind her.\n5919,anetv_n-BJ753InB0,3561,The woman takes a large brush and starts to remove snow from the vehicle. a man then,The woman takes a large brush and starts to remove snow from the vehicle.,a man then,gold,nailing the jack while the boy fumbles a top tool.,starts removing the snow off the vehicle.,begins to apply to blow away her teeth.,starts to skate jumping from the machine.\n5920,anetv_n-BJ753InB0,3560,A woman is standing next to a red suv. the woman,A woman is standing next to a red suv.,the woman,gold,takes a large brush and starts to remove snow from the vehicle.,throws the object back at the women as it looks at the individual's feet.,gets up on her bike and rides up next to her.,is shoveling paint with a squeegee.\n5921,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60557,12451,Someone image mirrored in the water as he smacks someone on the head with his pot. Someone,Someone image mirrored in the water as he smacks someone on the head with his pot.,Someone,gold,drops the pot and flings himself on top of someone!,shoves the clothes aside and fires a grenade at the burning wreck.,watches a sleeping town in the burnham's house.,shakes her head and smiles at her bartender.\n5922,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60557,12455,Someone pulls away from someone. Someone,Someone pulls away from someone.,Someone,gold,stands with someone at the other side.,stares at someone at a loss.,picks up a prescription pill bottle and holds it to her cheek.,lifts up a grenade.\n5923,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60557,12452,Someone drops the pot and flings himself on top of someone!. Someone,Someone drops the pot and flings himself on top of someone!.,Someone,gold,sits at a door.,yanks up his ax as the firing artillery cannon cocks.,\"screams, his arms and legs flailing wildly.\",\"bursts from the crowd, disappears under the fence, shooting.\"\n5924,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60557,12454,Someone grabs someone's arm. Someone,Someone grabs someone's arm.,Someone,gold,wraps a tall sheet around someone and they hug fiercely.,grabs someone's shoulders and backs away.,'s eyes draw back with horror.,pulls away from someone.\n5925,lsmdc1001_Flight-71986,17435,Someone tilts his head back and presses the cloth to his nostril. He,Someone tilts his head back and presses the cloth to his nostril.,He,gold,glances around the room.,blows a brush through the floor.,removes his glasses and looks at his reflection on the elevator ceiling.,\"descends rapidly, only to hear the rising roar.\"\n5926,lsmdc1001_Flight-71986,17434,The girl stares at someone as someone hands him a handkerchief. Someone,The girl stares at someone as someone hands him a handkerchief.,Someone,gold,tilts his head back and presses the cloth to his nostril.,\"the matches back to someone, someone sits outside the page with the message written on the manuscript.\",\", the two men, makes their way to the underground vehicle adjacent to the hotel.\",\"returns to the house, takes the tin off the coffee table as she opens the door.\"\n5927,lsmdc1001_Flight-71986,17436,He removes his glasses and looks at his reflection on the elevator ceiling. He,He removes his glasses and looks at his reflection on the elevator ceiling.,He,gold,lowers his gaze to the little girl.,lifts it over someone's shoulders and looks at someone with the camera.,\"looks at us softly, then shuffles through the dancing studio.\",\"shoots a glum look, then crosses to the window.\"\n5928,lsmdc1001_Flight-71986,17433,They enter an elevator with a woman and a little girl. The girl,They enter an elevator with a woman and a little girl.,The girl,gold,demonstrates how to wear the knife.,stares at someone as someone hands him a handkerchief.,gets her contact wavy in each hand.,kneels at a girl's feet.\n5929,lsmdc1001_Flight-71986,17432,Someone puts on his shades. Someone,Someone puts on his shades.,Someone,gold,\"sits, watching someone tense.\",strides out the room wearing sunglasses.,wades up with the mechanical amplifier strapped to his back.,throws his cellphone back at them.\n5930,anetv_WjEh7acrr5o,18451,A woman is seen sitting in a chair knitting thread while the camera watches her. The woman,A woman is seen sitting in a chair knitting thread while the camera watches her.,The woman,gold,is then seen putting paintings on a client's shoulder and giving a picture to the artist.,continues to knit while stopping to look at the camera and make faces.,continues spinning the hula hoop on her arm while still looking at the camera.,speaks to the camera and pauses to speak to the camera.\n5931,anetv_I5YCAQXHoFw,14863,A person is then seen wearing gloves and painting down an arm chair. The person,A person is then seen wearing gloves and painting down an arm chair.,The person,gold,continues ironing the money on the table.,continues washing their hands and scrubbing.,walk down and throw the tool in the camera at various angles.,continues painting down the chair and showing it off in the end.\n5932,lsmdc1006_Slumdog_Millionaire-73916,10668,\"He approaches a cinema kiosk, hands over a coin, and receive the ticket. On a large balcony above the cinema, six men\",\"He approaches a cinema kiosk, hands over a coin, and receive the ticket.\",\"On a large balcony above the cinema, six men\",gold,are drinking and playing a gambling game.,work down scene deserted.,\"are around a french basins, with walls or trimming, along walls such as versatile guns.\",stroll out on a sill in a sunny park.\n5933,lsmdc1006_Slumdog_Millionaire-73916,10661,Someone gulps down some beer. Someone,Someone gulps down some beer.,Someone,gold,\"winds up and kisses someone, then exhales still.\",suddenly looks solemn and leaves the room.,\"wakes, moves off the music and sits up, taking hold of her hand.\",stares at someone as she examines his zippo smoke.\n5934,lsmdc1006_Slumdog_Millionaire-73916,10658,\"They run up a deceased elevator into an atrium door with an enormous gold chandelier. Inside the hotel room, someone\",They run up a deceased elevator into an atrium door with an enormous gold chandelier.,\"Inside the hotel room, someone\",gold,gleefully pours two bottles of spirit into a pot while someone picks a towel out of a cupboard.,stares a window at a row of desks where they have breakfast.,wears a skimpy dark lipstick.,addresses president someone as they exit.\n5935,lsmdc1006_Slumdog_Millionaire-73916,10670,None of the men notices someone as he steps onto the balcony and swaggers over. They,None of the men notices someone as he steps onto the balcony and swaggers over.,They,gold,are coming back toward the porch.,continue to add skiff and grapes.,break into a run.,ignore someone as he takes out his gun from behind his back.\n5936,lsmdc1006_Slumdog_Millionaire-73916,10669,\"On a large balcony above the cinema, six men are drinking and playing a gambling game. None of the men\",\"On a large balcony above the cinema, six men are drinking and playing a gambling game.\",None of the men,gold,commentates or even join.,wear excited motions.,drinks and looks down at the mask table before them persists.,notices someone as he steps onto the balcony and swaggers over.\n5937,lsmdc1006_Slumdog_Millionaire-73916,10666,She goes back into the bathroom. He,She goes back into the bathroom.,He,gold,keeps his eyes closed for a moment more then slowly opens them.,\"looks at someone, who's leaning toward someone.\",\"looks again at the dark - haired girl who punched through it, searching for someone's pursuers.\",only looks at her feet and pushing to walk past.\n5938,lsmdc1006_Slumdog_Millionaire-73916,10671,They ignore someone as he takes out his gun from behind his back. He,They ignore someone as he takes out his gun from behind his back.,He,gold,puts it to the back.,wags a pinnacle in his ears.,points it at one of the men's heads.,\"nods, pleased with his blade touching someone's bruised face.\"\n5939,lsmdc1006_Slumdog_Millionaire-73916,10659,\"Inside the hotel room, someone gleefully pours two bottles of spirit into a pot while someone picks a towel out of a cupboard. Someone\",\"Inside the hotel room, someone gleefully pours two bottles of spirit into a pot while someone picks a towel out of a cupboard.\",Someone,gold,\"moves in closer, then notices two little boys paddle away.\",dishes a bag of food.,pulls up a supply of different guys from the bed.,shakes the dusty towel and takes it to the bathroom door.\n5940,lsmdc1006_Slumdog_Millionaire-73916,10657,The host looks down at his computer screen. Young people,The host looks down at his computer screen.,Young people,gold,sneak past the sleeping guard and break into a brand new but unoccupied hotel.,\"hurry through archways, past the mass of red team music bulletin over.\",sit on items on either side of the conference room stand.,sit on the table while looking down to the other person.\n5941,lsmdc1006_Slumdog_Millionaire-73916,10664,Someone has his eyes closed and head turned away from a semi - naked someone. She,Someone has his eyes closed and head turned away from a semi - naked someone.,She,gold,walks away from the top level of the automaton and looks back in.,smiles as he squeezes his eyes tightly shut.,goes back to the ring.,looks up after them.\n5942,lsmdc1006_Slumdog_Millionaire-73916,10660,Someone shakes the dusty towel and takes it to the bathroom door. Someone,Someone shakes the dusty towel and takes it to the bathroom door.,Someone,gold,'s mouth fills the sink.,gulps down some beer.,unlocks the store and walks through the door.,remains on adjusting his brace as he peeks under the window.\n5943,lsmdc1006_Slumdog_Millionaire-73916,10667,\"Someone crosses a road busy with tuk - tuks, cars, bicycles, and carts. He\",\"Someone crosses a road busy with tuk - tuks, cars, bicycles, and carts.\",He,gold,walks out of the ballroom.,jumps up the motorcycle and jogs out of the house.,\"approaches a cinema kiosk, hands over a coin, and receive the ticket.\",is in the water as the boys ride past.\n5944,lsmdc1006_Slumdog_Millionaire-73916,10672,\"Someone slowly turns to face someone, he nodes. In the hotel room, people\",\"Someone slowly turns to face someone, he nodes.\",\"In the hotel room, people\",gold,ride through a door.,lie on a mattress on the floor.,stare at each other in the cab.,are gathering up dressing chairs.\n5945,lsmdc1006_Slumdog_Millionaire-73916,10673,\"In the hotel room, people lie on a mattress on the floor. Someone\",\"In the hotel room, people lie on a mattress on the floor.\",Someone,gold,\"lies on someone's face, bound in his lap.\",makes graceful hand shadows on the wall.,lies in bed and his legs sticking out in his stomach.,searches for someone a white towel on the bed.\n5946,lsmdc1039_The_Queen-88310,11846,She fixes him with a stare. Someone,She fixes him with a stare.,Someone,gold,pulls someone into an embrace.,falls down in his chair.,jogs over to meet her in a doorway.,\"continues staring at someone, who nods stiffly in response.\"\n5947,anetv_bYUmtLBL7W4,5981,A group of people waterski in a body of water using a boat as propulsion in the water. A man,A group of people waterski in a body of water using a boat as propulsion in the water.,A man,gold,does sit in front of him holding a sail as he goes onto a boat locked.,kicks the man in the surf and a man helps him ride the boat.,gets on a water ski with both feet and begins to waterski while holding on to a rope attached to a boat.,opens the door and straightens his shirt while sitting on the rocks.\n5948,anetv_bYUmtLBL7W4,5982,A man gets on a water ski with both feet and begins to waterski while holding on to a rope attached to a boat. The camera,A man gets on a water ski with both feet and begins to waterski while holding on to a rope attached to a boat.,The camera,gold,shows a reverse play of a person doing a backflip out of the water an onto water platform attached to a boat.,tries to walk until he is able to reach an end.,zooms the man as he speaks while showing the various bench given hanging and with other people enjoying themselves time.,pans up to show a person in the boat.\n5949,anetv_bYUmtLBL7W4,1811,A man is holding a rope behind a boat. He,A man is holding a rope behind a boat.,He,gold,steps out of the raft onto the boat lurch.,is surfing on the river water.,are pulling a rope attached to a rope.,is being pushed into the water.\n5950,anetv_bYUmtLBL7W4,1812,He is surfing on the river water. He,He is surfing on the river water.,He,gold,continues to leap on the sea.,climbs back up as he walks up to the boat and speaks.,goes through the front of a canoe on the shore.,\"flips out of the boat into the water, then continues surfing.\"\n5951,anetv_5rVXCKLihyg,9050,She begins ironing the shirt while moving it all around the table. She,She begins ironing the shirt while moving it all around the table.,She,gold,\"continues to show the wounds areas as she continues to bow and camera moves, showing how an extra brush should be.\",continues flipping the shirt and moving the iron around it.,removes her boots and ties her legs in a path.,uses the instrument for her so she pans over to the camera.\n5952,anetv_5rVXCKLihyg,11987,Woman is standing in a living oom talking to the camera and grab a tshirt and put it in an ironing board. woman,Woman is standing in a living oom talking to the camera and grab a tshirt and put it in an ironing board.,woman,gold,is holding an iron and is ironing the t shirt.,is putting behind a table and touching her chocolate cake.,is wearing a ponytail and pulling something out of her box.,is laying on a section of white in the sea.\n5953,anetv_5rVXCKLihyg,9049,A woman is seen speaking to the camera and lays out a shirt on an ironing table. She,A woman is seen speaking to the camera and lays out a shirt on an ironing table.,She,gold,takes a cloth out of her palm and holds out more of the knife.,walks on the side of the board while holding a bar.,begins ironing the shirt while moving it all around the table.,is seen speaking to the camera and begins rubbing the lotion into her body while still speaking underneath her.\n5954,anetv_5rVXCKLihyg,11988,Woman is holding an iron and is ironing the t shirt. woman,Woman is holding an iron and is ironing the t shirt.,woman,gold,is showing a shirt with a piece of lemon ironing from a chair.,take out a gift about gift and put it.,is wearing a blue sweater and tie the iron.,is ironing a yellow plaid shirt standing in a living room.\n5955,anetv_BwwjQZDn3NE,988,A man is seen outside dancing to himself while wiping a rag on the car. The weather is pouring rain and the man,A man is seen outside dancing to himself while wiping a rag on the car.,The weather is pouring rain and the man,gold,puts up his shoes and pumps it up and begins doing a flip and jumping on it.,continues to dance around the car holding a rag.,continues to wipe the snow off the car.,throws some garbage and open items into his mouth and continues speaking.\n5956,anetv_BwwjQZDn3NE,989,The weather is pouring rain and the man continues to dance around the car holding a rag. The man,The weather is pouring rain and the man continues to dance around the car holding a rag.,The man,gold,continues holding the hose from the vacuum and wipes it away.,moves to the front of the car followed by taking his shirt off and waving to the camera.,continues brushing his hair in sigh.,is seen pulling quickly over the grass using a lawn mower at one end.\n5957,anetv_ClE77VhGQsk,14269,A woman is seen speaking to the camera while people use exercise equipment around her. More shots,A woman is seen speaking to the camera while people use exercise equipment around her.,More shots,gold,are shown of people riding around on horses.,are shown of people using the machine as well as people speaking to the camera and close ups of the machine.,are shown of people performing various flips and tricks with batons as well as walking over to their feet in formation.,are shown of feet sticking out of the clip as well as speaking to the camera.\n5958,anetv_6kgJx6ahgq0,7515,\"A black screen with a logo and words read waka Peninsula Kickball presents, and then a series of still shot pictures begin. A series of different random clips begin to play, and then it also\",\"A black screen with a logo and words read waka Peninsula Kickball presents, and then a series of still shot pictures begin.\",\"A series of different random clips begin to play, and then it also\",gold,includes along with more random still shot pictures.,shows two people with the baton and the talking at one point.,shows another woman posing with two pictures of her.,uses a silver hula against the frame and goes into the middle of a closeup of dusk.\n5959,anetv_6kgJx6ahgq0,2997,The same man is then shown in a pool. the man,The same man is then shown in a pool.,the man,gold,is then shown in various pictures.,glides his skateboard over and various locations and running to the finish intersection.,jumps in clumps in front of invisibility spray.,smacks the item with the red board in slow motion.\n5960,anetv_lDriXPZt_Yg,11902,A woman is holding a bottle of purple nail polish up to the camera. She then,A woman is holding a bottle of purple nail polish up to the camera.,She then,gold,applies it to her nails.,demonstrates how to use the brush on her.,scrubs it with a soap cutter with a toothbrush.,places glue on her nails.\n5961,anetv_lDriXPZt_Yg,11903,\"She then applies it to her nails. When she is done, she\",She then applies it to her nails.,\"When she is done, she\",gold,\"continues brushing her bare hair with her hands up, stopping to dance herself.\",shakes the strands and then gives a thumbs up and up.,shows off her nails and the polish one last time.,\"folds the rest of her hair away all in the top of the twist, switching another.\"\n5962,anetv_uwxuvGci98g,5482,A female with a long blonde pony tale begins running across a large green field throwing a ball. She then,A female with a long blonde pony tale begins running across a large green field throwing a ball.,She then,gold,continues running across the field and begins looking at the bleachers and anticipating a softball game.,\"stands up and walks across the field, when she throws the bag into the pool.\",hits the ball and comes down to jump over a tiny beam of frisbee into the green net.,goes back to the ball and her skating in the field.\n5963,anetv_iPXyExgGD5Q,10534,He then brushes his teeth and sees blood. He,He then brushes his teeth and sees blood.,He,gold,grabs the electric mop and uses it to dry his teeth.,uses listerine mouth wash for thirty seconds to kill the germs.,continues measuring to look at him for the moment.,begins brushing his thumb and back again.\n5964,anetv_iPXyExgGD5Q,10533,A man is shown in a bathroom choosing a toothbrush. He then,A man is shown in a bathroom choosing a toothbrush.,He then,gold,rollers the material with the product.,grabs his index finger and begins to mop the bottom all the still while he takes the same bristle brush quickly from his hand.,brushes his teeth and sees blood.,uses a small brush to roll the razor over the right shoe.\n5965,anetv_uLeJBFypCHE,152,Several clips are shown of people wake boarding and leads into the man walking in with others and shaking another's hand. The man then,Several clips are shown of people wake boarding and leads into the man walking in with others and shaking another's hand.,The man then,gold,skis down the road before walking out and running up a hill toward the other side.,begins using his hands while and speaking to the camera while still speaking to his camera.,takes off in several shots while running.,performs several tricks on a wakeboard while people watch on the side and clap.\n5966,anetv_uLeJBFypCHE,4286,\"A road is shown, and a man on a motorcycle rides up. We then\",\"A road is shown, and a man on a motorcycle rides up.\",We then,gold,see some scraping tires and a fence.,see a car wash for it.,see a man stacking their bike.,see him riding and wakeboarding in several scenes.\n5967,anetv_uLeJBFypCHE,153,The man then performs several tricks on a wakeboard while people watch on the side and clap. The man,The man then performs several tricks on a wakeboard while people watch on the side and clap.,The man,gold,takes several turns falling into the water and ends with people tubing and riding.,pans along the sand area while the camera captures his movements.,moves the horse up and climbs on a horse playing the final match.,continues moving around the beam and celebrating with his legs by an audience and continues playing them.\n5968,anetv_uLeJBFypCHE,151,A man is seen riding in on a motorcycle in several clips as well as driving and speaking to another person. Several clips,A man is seen riding in on a motorcycle in several clips as well as driving and speaking to another person.,Several clips,gold,are shown of cars riding and interacting with people riding skis and performing tricks.,are shown of people rowing on skis and people standing on skateboards behind.,are shown of people wake boarding and leads into the man walking in with others and shaking another's hand.,are shown of people riding down the mountain and riding in the water down the street.\n5969,anetv_sc_L4zUEb7E,5462,More clips are shown of people riding down the mountain as well as sitting at the bottom and racing with others. The cameraman,More clips are shown of people riding down the mountain as well as sitting at the bottom and racing with others.,The cameraman,gold,continues riding along the river while more boys speak to each other and speak to the camera.,rides on again while others cheer on one side and opponents against the camera.,meets the others at the bottom walking around with their tubes.,continues guiding themselves along with others talking near the people because them completely off.\n5970,anetv_sc_L4zUEb7E,1880,\"There are kids sitting in oversized snow tubes and are moving themselves back and forth so they can go down the snowy hill. They finally get momentum and the kids go sliding down the long, wide and snowy hill, and various clips of other people\",There are kids sitting in oversized snow tubes and are moving themselves back and forth so they can go down the snowy hill.,\"They finally get momentum and the kids go sliding down the long, wide and snowy hill, and various clips of other people\",gold,are also shown riding down the hill.,struggle all over speed as they talk.,competing to watch the water slope all around.,are completely outdoors riding coming a hill while smiling on their bikes.\n5971,anetv_sc_L4zUEb7E,5461,Various people are seen sitting in tubes and lead into them pushing themselves along and riding down a snowy mountain. More clips,Various people are seen sitting in tubes and lead into them pushing themselves along and riding down a snowy mountain.,More clips,gold,are shown of people pulling close together while riding down the street together.,are shown of people riding down the mountain as well as sitting at the bottom and racing with others.,are shown of people riding in tubes and falling in the water all around them.,are shown of people riding skateboards down the river in tubes.\n5972,anetv_MlbM7Mew0Ys,267,\"After, the young man moves the rope with the right hand, then he moves it with both hands and also moves the rope on front. After, the young man\",\"After, the young man moves the rope with the right hand, then he moves it with both hands and also moves the rope on front.\",\"After, the young man\",gold,takes a turn of the page and cuts the pattern briefly.,leaves the bases and begins talking to the man at the stands.,pulls a knife until the metal grin wins tied up.,\"jumps alternate crossing the arms, skipping and moving the rope on front.\"\n5973,anetv_MlbM7Mew0Ys,263,\"Two men exercise inside a gym, then a man jumps rope crossing his arms and also the moving the rope on front. The man moves the rope with his right hand, then he\",\"Two men exercise inside a gym, then a man jumps rope crossing his arms and also the moving the rope on front.\",\"The man moves the rope with his right hand, then he\",gold,ends the call once finishes and his mouth drops in pain.,moves both hands while skipping.,tries to flip the wheel with air and push it.,picks the wallpaper up and adds the top of the man on the counter.\n5974,anetv_MlbM7Mew0Ys,266,\"Next, the a young man jumps rope raising the feet high, then he cross his the arms jumping. After, the young man moves the rope with the right hand, then he\",\"Next, the a young man jumps rope raising the feet high, then he cross his the arms jumping.\",\"After, the young man moves the rope with the right hand, then he\",gold,stops in front of the body and swings like a rock bulb.,jumps and spins around the spinning and jumping on the skate park while judges swinging by him.,falls without his arm.,moves it with both hands and also moves the rope on front.\n5975,anetv_MlbM7Mew0Ys,264,\"The man moves the rope with his right hand, then he moves both hands while skipping. Then, the man\",\"The man moves the rope with his right hand, then he moves both hands while skipping.\",\"Then, the man\",gold,\"jumps crossing the arms, after he jumps normal for long time.\",turns the rope and starts moving his hands by moving the other foot.,mounts the parallel bars such as swings.,\"continues painting, and ends with the others reading the letter and continuing.\"\n5976,anetv_MEwGjGcV_Ik,651,Two people front to front push discs on the floor with a stick in a gym. A man,Two people front to front push discs on the floor with a stick in a gym.,A man,gold,walks back and forth to the side of the slackline.,throws the darts and throws it in front of the dartboard.,kneels holding a little weighted hammer hammer measure.,pass on front a clock.\n5977,anetv_28GYivx4lyk,2098,A man in a black shirt leave the room and turns before leaving. A man,A man in a black shirt leave the room and turns before leaving.,A man,gold,puts his face in front of the camera.,walks into the room and drops the man into the classroom.,is seated on a bench at the top of a garden in front of a fence.,comes and dips right onto his white mat on a blue mat behind him.\n5978,anetv_28GYivx4lyk,2097,We see two people playing foosball. A man in a black shirt,We see two people playing foosball.,A man in a black shirt,gold,puts a paper ball on a cloth.,is playing an accordion at a piano.,leave the room and turns before leaving.,is throwing darts at his board.\n5979,anetv_NgBfcoVZ254,12923,The young people are walking on the walkway in front of the building. A young man,The young people are walking on the walkway in front of the building.,A young man,gold,\"is skateboarding on the road, going side to side moving his feet on the board.\",enters the corner holding a brush.,is standing in front of the fence while holding a hammer.,walks through the kitchen holding a toy gun in his hand.\n5980,anetv_NgBfcoVZ254,12922,The building is being shown then the clock tower. The young people,The building is being shown then the clock tower.,The young people,gold,ride down to the tubes down the slope.,jump up and down on the floor.,begin driving down wreckage to a bridge in the turbulent waters holding paddles and still talking.,are walking on the walkway in front of the building.\n5981,anetv_yUCSKSMVrPo,10438,A large crowd of people are seen sitting in an audience followed by a man hitting a large set of drums. The man,A large crowd of people are seen sitting in an audience followed by a man hitting a large set of drums.,The man,gold,returns and plays a brand on the keyboard.,jumps up to take the ball and blows over his throw.,continues playing the drums and ends by bowing and the audience clapping.,continues playing the instrument while the man continues to play while the man then play violin.\n5982,anetv_yUCSKSMVrPo,1431,\"The man on stage has four drums in front of them but they are large and brassy with glass tops and the drum sticks are different. As he continues to play, he\",The man on stage has four drums in front of them but they are large and brassy with glass tops and the drum sticks are different.,\"As he continues to play, he\",gold,\"continues, behind still trying to hit the ball sure this time should be able to get the sticks out.\",goes back and finishes his proper song by tapping up sticks into the mic.,plays the chords again in front of the song again.,grabs a black cloth and unfolds it over the drums to create a different sound.\n5983,anetv_yUCSKSMVrPo,1432,\"As he continues to play, he grabs a black cloth and unfolds it over the drums to create a different sound. During the performance, many photographers\",\"As he continues to play, he grabs a black cloth and unfolds it over the drums to create a different sound.\",\"During the performance, many photographers\",gold,are gathered in boats and hitting the rocks in her hands.,move more and spin around in the glow as the crowd fades to black.,come on stage to film the guy until he finishes and the crowd gives him a standing ovation.,rush to the promoter's bunks and apply water to the local spanish '.\n5984,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9699,1238,\"Behind the clock face, someone looks down as his friends set off without him to visit Hogsmeade. Footprints\",\"Behind the clock face, someone looks down as his friends set off without him to visit Hogsmeade.\",Footprints,gold,appear in the snow.,\", someone picks up a candle, fills it with flame.\",lifts his chin in a commotion and her sorrowful eyes fill with tears.,\"overhand, someone takes the massive hand of someone's right hand and pushes it upward and shuts him into the room.\"\n5985,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9699,1239,\"Footprints appear in the snow. Someone twins, people,\",Footprints appear in the snow.,\"Someone twins, people,\",gold,grab someone under his invisibility cloak.,continue to sit around a dirt equipment set by some trees.,\"are at the top of the hill, also facing the unfinished crop.\",are out of the dust.\n5986,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9699,1237,\"Someone's snowy owl, Hedwig, flies along the valley. The bird\",\"Someone's snowy owl, Hedwig, flies along the valley.\",The bird,gold,approaches the school in a heavy snowstorm and sails past the clock tower.,eases its way off the camera as its body cuts to the yellow cab - winds down the dirt.,\"looks back at the emerald - hued animals jump, then follows the platform through the overgrown forest.\",lands on his opponent's hand.\n5987,anetv_Zq9jr2S5wGM,11531,\"Two lemons is in small bowl, then the blonde woman talks in the camera, a hand cut the lemon, squeeze the lemon in the bowl, pour the lemon in the pitcher using a strainer. The woman talks then the pot is placed in the stove, added water, then added the sugar, added the zest of lemon and mixed the pot, the woman\",\"Two lemons is in small bowl, then the blonde woman talks in the camera, a hand cut the lemon, squeeze the lemon in the bowl, pour the lemon in the pitcher using a strainer.\",\"The woman talks then the pot is placed in the stove, added water, then added the sugar, added the zest of lemon and mixed the pot, the woman\",gold,\"added yellow liquid in the pitcher, added the ice and sliced lemons and pour the juice in the glass.\",\"added the container to the stove and pour some along the ice, strewn water and flour in a large bowl.\",began adding the mix cucumbers to the glass.,started by rinsing it.\n5988,anetv_LNLsmdVMCmY,1590,A man is shown talking about snow cleaning equipment inside a shop. The female newscaster,A man is shown talking about snow cleaning equipment inside a shop.,The female newscaster,gold,is with a leather trimmer whom speaks to the camera.,shows viewers how to clean the inside of a ski.,is talking to the camera.,is seen cleaning the snow off her car.\n5989,anetv_LNLsmdVMCmY,16364,A man and a woman talk to the camera in a news cast setting. A woman,A man and a woman talk to the camera in a news cast setting.,A woman,gold,punches another man in the chest and a woman shows off the hair.,talks to the camera from an outside environment surrounded by cars covered in snow.,sits sitting next to a man helping her up.,begins to play the violin near the table.\n5990,anetv_LNLsmdVMCmY,16368,More scenes of products inside the Lowe's store is shown. The woman by the cars,More scenes of products inside the Lowe's store is shown.,The woman by the cars,gold,opened the door and mopped the wall with a small neutral.,demonstrates another product on the car.,does various gymnastic moves.,are shown interviewed by a student using a spray hose.\n5991,anetv_LNLsmdVMCmY,16367,The man demonstrates a product's use on camera. The woman by the cars,The man demonstrates a product's use on camera.,The woman by the cars,gold,demonstrates a product on one of them.,show a woman's hair.,take the bow as well as a royal box?,bumping into the vacuum and the man.\n5992,anetv_LNLsmdVMCmY,1589,Two news reporters are talking in front of a screen. A man,Two news reporters are talking in front of a screen.,A man,gold,is shown talking about snow cleaning equipment inside a shop.,throws a ball at the cemetery log on a part of the city.,stands in the snow outside a building with a shovel and begins to cut the small pieces.,is wearing a white hat and faces talking to the camera.\n5993,anetv_LNLsmdVMCmY,16365,A series of short images of events inside a Lowe's store is shown. A man,A series of short images of events inside a Lowe's store is shown.,A man,gold,is interviewed on camera.,is sitting on the low bars.,is shown with people in the street to area and around watching.,is seen shoveling the sidewalk.\n5994,anetv_LNLsmdVMCmY,16366,A man is interviewed on camera. The man,A man is interviewed on camera.,The man,gold,demonstrates a product's use on camera.,starts washing their clothes.,is putting sunscreen on his chest.,moves behind the items behind bridge while pointing.\n5995,anetv_IT9uvR9yjxI,7069,An intro is shown of maps and a house close up. Afterwards a close up of a roof,An intro is shown of maps and a house close up.,Afterwards a close up of a roof,gold,is shown as well as logos.,is shown as well as products being used.,is seen as well as the ending.,is shown followed by a person climbing into a machine and moving it along the tire.\n5996,anetv_IT9uvR9yjxI,7070,Afterwards a close up of a roof is shown as well as logos. More pictures,Afterwards a close up of a roof is shown as well as logos.,More pictures,gold,are shown followed by a person getting out of the car and chopping leaves.,are shown of people rolling into the air and fighting another gear.,are shown of trucks parked as well as logos.,are shown of people flipping down the tiles.\n5997,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8237,Someone lies on his back on the hillside. Someone,Someone lies on his back on the hillside.,Someone,gold,watches them stand silently as he stares at him.,stomps into a corridor as he nears the pilot's room.,turns away as someone gets to his feet.,picks up the sheets and shakes his head to hold them up.\n5998,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8249,Someone walks forward and kneels down beside someone. He,Someone walks forward and kneels down beside someone.,He,gold,brushes his hair from the top of his head.,notices for a moment and shakes her hand.,looks up at the house.,rests his head on her shoulder.\n5999,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8259,\"The door of someone's study opens and someone steps inside. It, too,\",The door of someone's study opens and someone steps inside.,\"It, too,\",gold,crashes down to it.,is bathed in sunlight.,stops and put ellen on the desk.,pour out of the skin of a bartender.\n6000,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8264,Someone notices a new portrait. It,Someone notices a new portrait.,It,gold,sticks its legs slowly out of the ground.,\"bears someone's platinum hair with a contemplative smile, then turns and walks off.\",\"'s of someone dozing in his high - back chair, his head new portrait: on one side, his eyes closed.\",shoot easily in front of him.\n6001,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8241,Someone lies motionless on the grassy hillside. Someone,Someone lies motionless on the grassy hillside.,Someone,gold,hurries away past the burning cottage below him.,fires badminton over the pole.,watches tv in a studio.,turns around to find a gray - haired lad.\n6002,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8228,Someone enters the upper platform. Someone,Someone enters the upper platform.,Someone,gold,glances down and catches someone's eye.,smiles at this young girl as she approaches someone.,raises a side mirror as curls tumbling through the wall.,stands with his eye open.\n6003,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8246,People stand at the front of the crowd. He,People stand at the front of the crowd.,He,gold,leans forward and gently touches someone's cheek.,watches the others in the background.,steps spiral out of the open house.,walks slowly out of view.\n6004,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8261,Someone walks towards someone's desk. Apair of half - moon spectacles,Someone walks towards someone's desk.,Apair of half - moon spectacles,gold,lies on an open book.,fill a floating train.,have been built in their bobbing thoughts.,show a contact - - against the back of a window.\n6005,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8234,An Auror is thrown aside. Someone,An Auror is thrown aside.,Someone,gold,falls down a flurry of floats.,comes in with the determined face with his frittata.,forms the spacecraft members.,aims her wand at the huge windows.\n6006,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8254,\"One after another, everyone does the same. Grief - stricken, the staff and students\",\"One after another, everyone does the same.\",\"Grief - stricken, the staff and students\",gold,are listening at their gathered round.,move all around together.,stand in solemn silence.,stare up at it shooting bows.\n6007,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8257,\"His head on someone's shoulder, someone weeps. Sunlight\",\"His head on someone's shoulder, someone weeps.\",Sunlight,gold,\"someone at his house, someone looks fondly at someone, he sees the scrap of blood flow over him.\",\", someone reels into a placid lifting shifts, turning his body weary.\",streams in through the damaged window of the great hall.,\"the steps, someone rides through fastens lit doorbell!\"\n6008,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8247,He leans forward and gently touches someone's cheek. Someone,He leans forward and gently touches someone's cheek.,Someone,gold,lifts his brow and rubs his jaw with a 90 expression.,\"enters, with a sickle and his daughters.\",eyes his daughter's wound.,gently places his hand on someone's heart.\n6009,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8245,He pushes past students and teachers. People,He pushes past students and teachers.,People,gold,stand at the front of the crowd.,come to a stairwell and walk through a door behind him.,cruises the escalator of a modern blanketed in thousand black.,mouths an answer.\n6010,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8230,Someone watches in horror as someone is flung backwards over the balustrade. The white - haired professor,Someone watches in horror as someone is flung backwards over the balustrade.,The white - haired professor,gold,brings a black shawl to her torso.,\"arrives at aides mother in a wetsuit, who strides through the beach.\",slowly returns her gaze to her dad.,seems to float gently downwards.\n6011,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8263,\"He stands and stares at the high - back chair with its padded leather arms, which sits empty behind the desk. He\",\"He stands and stares at the high - back chair with its padded leather arms, which sits empty behind the desk.\",He,gold,carries someone into the door.,picks up someone's intricately - carved elder wand.,\"stacks papers from by a grave box and repeats in instruction as the footage shows his teacher, his instructor.\",is with his bong amazingly.\n6012,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8229,\"Someone looks eyes with someone, someone glares. Someone\",\"Someone looks eyes with someone, someone glares.\",Someone,gold,watches in horror as someone is flung backwards over the balustrade.,puts his napkin on his lap and slings down his homemade copy.,stops and clutches his ground.,smiles at his son.\n6013,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8258,\"The long tables are bare, the seats and benches are empty. The door of someone's study\",\"The long tables are bare, the seats and benches are empty.\",The door of someone's study,gold,\"is d quicker, by its contained with colorful couples.\",\"strikes the quiet, dark interior.\",opens and someone steps inside.,sits in a news room.\n6014,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8238,Someone crashes to the ground. Someone,Someone crashes to the ground.,Someone,gold,drops the dropped bags.,walks over to him.,does n't disappear from sight.,grabs a rope for a train compartment and moves off.\n6015,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8262,Apair of half - moon spectacles lies on an open book. He,Apair of half - moon spectacles lies on an open book.,He,gold,\"stands and stares at the high - back chair with its padded leather arms, which sits empty behind the desk.\",points his cellphone in his office.,presses his spear to the seam and takes off his helmet.,\"opens the front door, closes its flap and finds it reflected in water.\"\n6016,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8255,\"Grief - stricken, the staff and students stand in solemn silence. Someone\",\"Grief - stricken, the staff and students stand in solemn silence.\",Someone,gold,lead the way down the street on a deep ravine.,\"lies before them, his face serene and peaceful.\",watches from the dining room.,crouches down on a ledge and follows someone to jump.\n6017,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8243,Someone looks up at the glowering clouds forming the shape of a skull. Someone,Someone looks up at the glowering clouds forming the shape of a skull.,Someone,gold,gradually rows up.,strides through the school courtyard followed by someone.,\"turns, aiming the wand into his face.\",lets go of his hand to see him fall from his hands.\n6018,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8252,Someone raises her wand high above her head. The tip of it,Someone raises her wand high above her head.,The tip of it,gold,glows as it points up towards the skull - shaped cloud.,\"falls to someone's lifeless palm, fighting his way into someone's face.\",floats up straight towards her.,strikes its tattooed fingernail.\n6019,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8244,Someone strides through the school courtyard followed by someone. He,Someone strides through the school courtyard followed by someone.,He,gold,leaves the car near the front door and into the lobby.,pushes past students and teachers.,is carried down the path with a flaming skeleton.,\"trades a glance at his clock as someone rows in the deserted, groggy vessel.\"\n6020,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8231,The white - haired professor seems to float gently downwards. Someone,The white - haired professor seems to float gently downwards.,Someone,gold,grabs the distraught someone.,holds the nervous vamp on someone's lapel as he nervously moves inside.,stares at the swirling circles of the robotic components.,shifts his agitated gaze.\n6021,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8251,A tear rolls down someone's cheek. Someone,A tear rolls down someone's cheek.,Someone,gold,hurries to the door and steps in with a cordial smile.,takes the red jacket off the car and checks them on the back.,raises her wand high above her head.,eyes tracked the boy who takes him seriously.\n6022,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8233,Someone rushes someone down the tower's spiral staircase. Someone,Someone rushes someone down the tower's spiral staircase.,Someone,gold,holds up the destroyer.,hides behind a rock.,\"follows, as someone leads the death eaters and the ashen - faced someone through the school corridors.\",thunders at the celebration.\n6023,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8260,\"It, too, is bathed in sunlight. Someone\",\"It, too, is bathed in sunlight.\",Someone,gold,walks towards someone's desk.,\"peers into the tent, clear and making people 'faces.\",steps in pain as the wind tousles his hair.,zooms in on his face.\n6024,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8239,\"Someone walks over to him. Trembling, someone\",Someone walks over to him.,\"Trembling, someone\",gold,relaxes on his elbows and checks his clock.,\"looks up at someone, who kicks someone's wand from his hand.\",wears someone's fedora.,takes off his sunglasses and bows his head.\n6025,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8235,They explode and the candles are snuffed out. People and the People,They explode and the candles are snuffed out.,People and the People,gold,swim out of the water towards someone's tent.,\"walk to a fireplace, smiling and laughing.\",were brought to their start.,stride through the forest towards someone's cottage.\n6026,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8256,\"As the wands glow more brightly, light bursts through the clouds and the skull disappears. Someone\",\"As the wands glow more brightly, light bursts through the clouds and the skull disappears.\",Someone,gold,takes his hand from someone's heart.,is just standing on his side.,slumps backwards by the couch.,\"grabs the harpsichord and touches the star of the pumpkin in the center of the shield, blocking his honor.\"\n6027,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8250,He rests his head on her shoulder. A tear,He rests his head on her shoulder.,A tear,gold,\"crashes down her cheek, knocking her over on the floor.\",rolls down someone's cheeks.,rolls down someone's cheek.,slides down someone's stomach.\n6028,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8240,\"Trembling, someone looks up at someone, who kicks someone's wand from his hand. Someone\",\"Trembling, someone looks up at someone, who kicks someone's wand from his hand.\",Someone,gold,lies motionless on the grassy hillside.,holds up a coin.,appear by the window.,picks up a blond mannequin and knocks.\n6029,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72900,8236,\"Illuminated by the flames from the burning cottage, someone stands alone. Someone\",\"Illuminated by the flames from the burning cottage, someone stands alone.\",Someone,gold,lies on his back on the hillside.,is sleeping on his bunk.,\", growing resigned, but complete, make their way upstairs.\",\"enters, then faces someone.\"\n6030,lsmdc3080_THIS_MEANS_WAR-37184,6160,They enter a vip section. A bartender,They enter a vip section.,A bartender,gold,hands him a bottle of wine.,brings a jar of potatoes out onto a ice covered tray.,tries to push the deejay into.,is making us drink before.\n6031,lsmdc3080_THIS_MEANS_WAR-37184,6162,Someone turns to find someone missing from her chair. He,Someone turns to find someone missing from her chair.,He,gold,places someone's left hand on the bedside table.,picks it up and studies someone.,peers across the dance floor then heads after her.,opens the door of her apartment and looks outside.\n6032,lsmdc3080_THIS_MEANS_WAR-37184,6161,A bartender hands him a bottle of wine. Someone,A bartender hands him a bottle of wine.,Someone,gold,'s face stirs painfully and closes.,turns to find someone missing from her chair.,snatches the mime in.,holds the powder to his eye.\n6033,anetv_9ZboVy59qrw,5579,A man stands at the podium to say a few words and there's also people shown holding up trophies and talking. People are riding on fat fast brown horses and they,A man stands at the podium to say a few words and there's also people shown holding up trophies and talking.,People are riding on fat fast brown horses and they,gold,are jumping up and down in gymnasiums.,begin to play war in a large grassy field.,do several flips to get a great picture.,were hitting the ball using croquet sticks.\n6034,anetv_9ZboVy59qrw,5580,\"People are riding on fat fast brown horses and they were hitting the ball using croquet sticks. Many models, important people, and even a special handsome prince\",People are riding on fat fast brown horses and they were hitting the ball using croquet sticks.,\"Many models, important people, and even a special handsome prince\",gold,speaks in front of the camera.,attaching a board in an indoor field field sport.,are playing and mixing the ice with the batons.,then play the bottom of the cloister.\n6035,lsmdc0020_Raising_Arizona-58025,3372,\"The elderly couple enter from either side of the camera and stand in the foreground, backs to us, facing the table. The elderly man\",\"The elderly couple enter from either side of the camera and stand in the foreground, backs to us, facing the table.\",The elderly man,gold,rep heavily from his glasses and screws up his brow.,drapes an arm around his wife's shoulder and draws her close.,\", in an award, sits at the knees, singing into a news microphone.\",\"rolls her feet, rinses her hands on her face, and walks away.\"\n6036,lsmdc0020_Raising_Arizona-58025,3367,Two young couples are entering as their kids - about a dozen of them - stream in around them. The old couple on the couch,Two young couples are entering as their kids - about a dozen of them - stream in around them.,The old couple on the couch,gold,\", laughing and laughing.\",raise their arms to embrace their visitors.,\"says, drawing her to someone.\",\"looks below, exposed - like at home, flipping on the skylight, then to do the exact opposite.\"\n6037,lsmdc0020_Raising_Arizona-58025,3363,\"They are in the living room of people's trailer, which is suffused with a warm golden light. As they face the trailer's front door, all we see of the couple\",\"They are in the living room of people's trailer, which is suffused with a warm golden light.\",\"As they face the trailer's front door, all we see of the couple\",gold,arrive at another booth and stop their conversation.,lying on the ground choose departed.,fly in the school.,is the backs of their heads.\n6038,lsmdc0020_Raising_Arizona-58025,3366,\"The old man wears a cardigan, the woman a shawl. Two young couples\",\"The old man wears a cardigan, the woman a shawl.\",Two young couples,gold,are entering as their kids - about a dozen of them - stream in around them.,hop on the side as they walk toward an outdoor archway to a large neighborhood street.,battle over a television in each father's lap.,\"emerge from the entrance onto a large terrace, halfway past a priest, seated on a awning.\"\n6039,lsmdc0020_Raising_Arizona-58025,3365,\"They both have white hair, the woman's pulled into a bun. The old man\",\"They both have white hair, the woman's pulled into a bun.\",The old man,gold,\"wears a cardigan, the woman a shawl.\",\"just surfing steps over and down, as the man walks back down onto the platform.\",has walks up and rinses her face.,makes an oxygen thanks.\n6040,lsmdc0020_Raising_Arizona-58025,3370,\"The table is all laid out with a Thanksgiving dinner, a huge turkey sitting at the far end. The grandchildren\",\"The table is all laid out with a Thanksgiving dinner, a huge turkey sitting at the far end.\",The grandchildren,gold,\"are running into frame and taking their seats at the table, accompanied by their parents.\",walks out before him.,blows a white stain over the grill.,goes over a sneer.\n6041,lsmdc0020_Raising_Arizona-58025,3371,\"The grandchildren are running into frame and taking their seats at the table, accompanied by their parents. The elderly couple\",\"The grandchildren are running into frame and taking their seats at the table, accompanied by their parents.\",The elderly couple,gold,\"enter from either side of the camera and stand in the foreground, backs to us, facing the table.\",wanders through a deep dining room.,are shown walking around the room using two tables to make coffee for people.,enters the podium.\n6042,lsmdc0020_Raising_Arizona-58025,3364,\"As they face the trailer's front door, all we see of the couple is the backs of their heads. They both have white hair, the woman\",\"As they face the trailer's front door, all we see of the couple is the backs of their heads.\",\"They both have white hair, the woman\",gold,looks the same picture out for her style.,places a razor on the hair of the artist with paint marker.,'s pulled into a bun.,showed in their hats.\n6043,lsmdc0020_Raising_Arizona-58025,3373,The elderly man drapes an arm around his wife's shoulder and draws her close. She,The elderly man drapes an arm around his wife's shoulder and draws her close.,She,gold,pulls her hand away and holds her close to his.,\"rests her head against his shoulder, and we.\",\"remains and stares at him, then turns to look at the podium.\",takes a seat on his shoulders and gets off her onboard and shuts the door behind him.\n6044,lsmdc0020_Raising_Arizona-58025,3369,The children boil onto the couch. The table,The children boil onto the couch.,The table,gold,man puts his peanut butter on a plate and struts it to the man in the sandwich.,\"is all laid out with a thanksgiving dinner, a huge turkey sitting at the far end.\",beside the head of someone sits close to the woman as she speaks to her camera.,\"is covered with trunks and rags, the hair dumped on the bed.\"\n6045,lsmdc0020_Raising_Arizona-58025,3368,The old couple on the couch raise their arms to embrace their visitors. The children,The old couple on the couch raise their arms to embrace their visitors.,The children,gold,make their way into the lobby and go into new boxes.,boil onto the couch.,roll in but toys together.,watch very outstretched as they then become disturbed.\n6046,lsmdc3003_40_YEAR_OLD_VIRGIN-1182,7075,\"As they kiss, she wraps her legs around him. He\",\"As they kiss, she wraps her legs around him.\",He,gold,remembers at the shape of someone's heart open.,presses his lips against hers.,gives a tight - lipped smile.,looks for her and her backup.\n6047,lsmdc3003_40_YEAR_OLD_VIRGIN-1182,7074,\"Now outside someone's house light glows in the windows. As they kiss, she\",Now outside someone's house light glows in the windows.,\"As they kiss, she\",gold,strolls in the hall and knocks.,wraps her legs around him.,steps out of the circle toward her.,\"stands, steps out from a restaurant.\"\n6048,anetv_OtcRXishIxw,6316,An adult is controlling the pinata trying to keep her from hitting it. She finally,An adult is controlling the pinata trying to keep her from hitting it.,She finally,gold,lets go and does some twist and sets more pastries into her gift box.,ends up finding where it generally is while her friends laugh at her and continue to try to help.,continues to bounce back and forth.,\"gets it up on a plate, turns forward, and puts her head into the bin.\"\n6049,anetv_OtcRXishIxw,6317,She finally ends up finding where it generally is while her friends laugh at her and continue to try to help. She,She finally ends up finding where it generally is while her friends laugh at her and continue to try to help.,She,gold,gets hit by the pinata and ends up being unsuccessful.,tries again - sneaking around as he intermittently plays his own hair by the corner of the mouth where the straddle student has someone.,continues brushing her hair while she is very brushing the tail and ends.,gives a start and shakes him by tying her veil.\n6050,anetv_OtcRXishIxw,6315,She keeps missing the pinata while her friends try to help her out. An adult,She keeps missing the pinata while her friends try to help her out.,An adult,gold,gets behind the table to throw the balls again to her.,comes in from behind him and puts his bag under his arm.,grabs her and knocks her down into a stack of jam.,is controlling the pinata trying to keep her from hitting it.\n6051,anetv_OtcRXishIxw,6313,A young man is helping a young woman swing at a soccer pinata. They,A young man is helping a young woman swing at a soccer pinata.,They,gold,\"stand around, helping her out in the water.\",wash and putting into a paint holder.,continue to pick balls through some rocks.,are on an outdoor green field at a school or community center.\n6052,anetv_OtcRXishIxw,6314,They are on an outdoor green field at a school or community center. She,They are on an outdoor green field at a school or community center.,She,gold,keeps missing the pinata while her friends try to help her out.,are the fighting instructors taking punches and races and other emergency victims.,is shown at a gymnasium before turning to the audience and brushing up and pulling his bag.,has no blanket during a treadmill.\n6053,lsmdc3041_JUST_GO_WITH_IT-18684,7727,Someone sits next to them. Someone,Someone sits next to them.,Someone,gold,lights beer on a mug.,continues her chore with fear.,\"strikes a billiard ball at the man who fell, and lands before his side.\",doubles over laughing with the sailors.\n6054,anetv_XCXcwMyrqYM,7538,A man talks about a bow he is using in front of an open field. The man,A man talks about a bow he is using in front of an open field.,The man,gold,talks while demonstrating cleaning techniques.,demonstrates how to use targets to draw darts.,shows how to use the bow by hitting a target in the field.,waves a red flag from the side of the disc.\n6055,anetv_XCXcwMyrqYM,7541,Cows graze behind the road. The man,Cows graze behind the road.,The man,gold,eats sprinkles while stepping away from the box.,hits his last target and walks away.,continues to ride along the track hard.,stares ahead footage and wearing guns.\n6056,anetv_XCXcwMyrqYM,7539,The man shows how to use the bow by hitting a target in the field. Several vehicles,The man shows how to use the bow by hitting a target in the field.,Several vehicles,gold,are seen standing off their fenced base and looking at a map.,hit the field with obstacles as well.,begin to put around the table.,drive down a road behind the field.\n6057,anetv_XCXcwMyrqYM,7540,Several vehicles drive down a road behind the field. Cows,Several vehicles drive down a road behind the field.,Cows,gold,stretch through the evergreens underneath.,go around a dirt pit.,graze behind the road.,get a series of shots.\n6058,anetv_vkk-sOo8Hqw,11449,The man gets up and goes to his mower and creates something on a wheel well and ties it to the mower and the shed door. The man,The man gets up and goes to his mower and creates something on a wheel well and ties it to the mower and the shed door.,The man,gold,allows the mower to spin around the object and cut the grass.,takes the hose off his bike and moves it near and out from the driveway.,stops and moves to the second one who stops and turns the leaves.,does a light light on the back porch of the lawn and lays on his bed.\n6059,anetv_LIJBolW8k5o,16887,A large group of people are seen sitting in the water looking around. Another group,A large group of people are seen sitting in the water looking around.,Another group,gold,is seen kneeling down on a diving board in the ocean.,are seen kite surfing along the water.,has themselves in the water and paddles down the rope while pausing to watch.,is then seen riding on the side in an alley.\n6060,anetv_LIJBolW8k5o,12599,A camera pans around a large group of people are seen kite surfing along the water while some sit on the sides to watch. More clips,A camera pans around a large group of people are seen kite surfing along the water while some sit on the sides to watch.,More clips,gold,are shown of people swimming in the river as well as various objects including shore holding the camera laughing.,are shown of people riding around along the water with some falling in and others standing back up.,are shown of people performing various tricks and tricks on the background of fun.,are shown of people riding along the beach and falling back and forth relaxing to slow pushes.\n6061,anetv_LIJBolW8k5o,16888,Another group are seen kite surfing along the water. The people,Another group are seen kite surfing along the water.,The people,gold,are seen riding a rider in kayaks as the water continues.,paddle over the person's arms and others try to paddle them.,continue riding past each other along the water.,steps on and continue flying kites along the river.\n6062,anetv_rZmNsUX-7SU,18278,A girl and a dog are on the swing set. They,A girl and a dog are on the swing set.,They,gold,walk back and forth.,are getting her cartwheel process.,then get tied on the new bumper.,swing up and back down.\n6063,anetv_rZmNsUX-7SU,18279,They swing up and back down. They,They swing up and back down.,They,gold,then push the wax down with soap.,beat by another man watches them and watches them live away.,swing up and back down again.,switch to a male sitting beside it.\n6064,lsmdc3073_THE_GUILT_TRIP-34691,2204,They're driving a tiny red car. Someone,They're driving a tiny red car.,Someone,gold,leaves the taxicab inside.,reaches in the backseat.,reverses into the water.,is floating alongside them.\n6065,lsmdc3086_UGLY_TRUTH-6350,11087,\"With a smile, someone walks to a monitor to watch the show. Someone\",\"With a smile, someone walks to a monitor to watch the show.\",Someone,gold,picks up the vodka and swims.,looks toward the stage.,\"turns over to someone, who taps her arm.\",rolls over in frustration.\n6066,lsmdc3086_UGLY_TRUTH-6350,11091,\"A disco ball hangs from the high - arched ceiling, twinkling with light. Someone\",\"A disco ball hangs from the high - arched ceiling, twinkling with light.\",Someone,gold,blows the smoke through shiny treats rings.,\"sits in a booth, talking on the phone.\",turns and control and attempts towards a fallen sign.,\"opens his eyes, drinks directly from someone's mouth and nods.\"\n6067,lsmdc3086_UGLY_TRUTH-6350,11092,He sits across from her with a big grin. He,He sits across from her with a big grin.,He,gold,puts his mouth down.,\"quickly dries his bloody lips, and parks him on the couch.\",strides up to his bedside.,sips someone's drink.\n6068,lsmdc3086_UGLY_TRUTH-6350,11090,The hostess leads him away. A disco ball,The hostess leads him away.,A disco ball,gold,\"approaches, and over the shoulder structure, two nazi officers are displaying the moves of logo.\",\"hangs from the high - arched ceiling, twinkling with light.\",bears the name of a bank examiner.,pulls up to a tall silver party in a stadium in an narrowed stand.\n6069,lsmdc3086_UGLY_TRUTH-6350,11088,Someone looks toward the stage. She,Someone looks toward the stage.,She,gold,\"flips through the shoes, then thumbs gracefully.\",shifts her eyes back to the monitor and watches as someone forces a smile.,leaves in her room behind the open door on the wall.,takes a pair of strides out to the platform.\n6070,lsmdc3046_LARRY_CROWNE-21713,8429,\"On the landing, he finds the contents of his home office. Multiple copies of the same book\",\"On the landing, he finds the contents of his home office.\",Multiple copies of the same book,gold,sends which an encouraging score.,\"sit in stacks around his computer, which displays a porn site.\",are piled high with books.,are shown being timed.\n6071,lsmdc3046_LARRY_CROWNE-21713,8427,\"He raps against the trunk, the cab pulls away. He\",\"He raps against the trunk, the cab pulls away.\",He,gold,\"swerves off the van as the sedan begins to move, leaving someone staring in the window behind him.\",\"swings forward, and takes an assault troop.\",begins to dig in the dirt in the bedroom next to the salesman.,lumbers on to the sidewalk and approaches the apartment building.\n6072,lsmdc3046_LARRY_CROWNE-21713,8430,\"Multiple copies of the same book sit in stacks around his computer, which displays a porn site. He hurls the cheesecake box and it\",\"Multiple copies of the same book sit in stacks around his computer, which displays a porn site.\",He hurls the cheesecake box and it,gold,pin up the bug.,disappears between the top of a rock.,explodes with smashing gasps.,splatters against the door.\n6073,anetv_3MqnXsnEAkM,19871,A man walks up and lifts a large weight over his head and drops it on the ground. Another man,A man walks up and lifts a large weight over his head and drops it on the ground.,Another man,gold,is seen sitting down on the ground and standing in the end.,comes onto the mat and lifts a weight over their head.,sits on the end.,spins around and again drops the weight.\n6074,lsmdc3062_SORCERERS_APPRENTICE-30778,9101,\"A poster featuring a man with spiky bleached hair gives the name, Drake Stone.. In a parlor, a woman\",\"A poster featuring a man with spiky bleached hair gives the name, Drake Stone..\",\"In a parlor, a woman\",gold,talks to the camera.,walks into a restaurant.,carries someone with shears.,paints his nails black.\n6075,lsmdc3062_SORCERERS_APPRENTICE-30778,9100,\"Now, we peer up at a gold - trimmed high rise. Inside, someone\",\"Now, we peer up at a gold - trimmed high rise.\",\"Inside, someone\",gold,waits with a cinema into the room.,slips into a luxurious penthouse.,plays the eiffel tower lit in the sunshine at night plumes of great buildings outside the blaze.,stops smoking the joint and tries longingly.\n6076,anetv_T6TgMYLrPII,5449,\"The woman is adjusting the matt, while the man is raising the pole. The woman is running with a pole, then she\",\"The woman is adjusting the matt, while the man is raising the pole.\",\"The woman is running with a pole, then she\",gold,yells at the machine.,moves to the edge and smiles.,jumped over the yellow rope.,screams and starts swinging back and forth.\n6077,anetv_T6TgMYLrPII,5450,\"The woman is running with a pole, then she jumped over the yellow rope. The woman\",\"The woman is running with a pole, then she jumped over the yellow rope.\",The woman,gold,\"walked back to the kid, jumped up and jumped in the grass.\",jumped over the bar and jumped over the platform and jumped over the pole.,jumped over the rope while her coach is on the side of the tract watching and assisting her as she jumped over the pole.,keeps running and is doing jumps high in the sand.\n6078,anetv_dpU5CcFqAPU,8006,Guys pulling the left side of the rope falls to the ground. The guys,Guys pulling the left side of the rope falls to the ground.,The guys,gold,\"are then shown over a goal, then swap a look.\",\"let go of the rope, get off the lawn, and hug in celebration.\",raise four fists and now the purple team go to the bar until the contest.,get repeat looking fish.\n6079,anetv_dpU5CcFqAPU,8005,Players are pulling the rope in a tug of war match. A man,Players are pulling the rope in a tug of war match.,A man,gold,approaches the man and holds the rope with a wave.,begins to dance in a tunnel.,squats on the floor and rises.,touches an arrow and shoots one out.\n6080,lsmdc0026_The_Big_Fish-62365,6125,\"We lead someone as he walks away, tears just starting to form. He\",\"We lead someone as he walks away, tears just starting to form.\",He,gold,\"rounds a corner and through the window, covering the wall with a cloth.\",is shocked to see someone allow the man to turn.,\"exits frame, leaving only the sorority house in the background.\",\"smiles one last time around, guided by people.\"\n6081,lsmdc0026_The_Big_Fish-62365,6162,She is as gorgeous a woman as you'll ever see. She,She is as gorgeous a woman as you'll ever see.,She,gold,\"lingers for a moment, as if someone's was normal.\",stands with her hips turned in profile.,takes positions at her other hand.,wears a long white dress and a - a dress.\n6082,lsmdc0026_The_Big_Fish-62365,6143,\"Suddenly, he grasps his chest and collapses face - first on the tile. The same image of someone's dead face on the tile\",\"Suddenly, he grasps his chest and collapses face - first on the tile.\",The same image of someone's dead face on the tile,gold,is reflected in the eye.,is the same basic club height.,cuts to the ground.,is being old and dirty.\n6083,lsmdc0026_The_Big_Fish-62365,6142,\"Someone squeezes down hard, trying to shit the unshittable. Suddenly, he\",\"Someone squeezes down hard, trying to shit the unshittable.\",\"Suddenly, he\",gold,\"swings the rat, thumping someone around and helpless.\",\"loses the weight, watches as tears stream down his throat.\",\"pulls down next to her, looks out.\",grasps his chest and collapses face - first on the tile.\n6084,lsmdc0026_The_Big_Fish-62365,6128,We circle as he shouts. Someone and her sisters,We circle as he shouts.,Someone and her sisters,gold,walk out about the house.,get out of the school.,peer out through the curtains.,are burst into break unhappily.\n6085,lsmdc0026_The_Big_Fish-62365,6154,\"Someone quietly approaches the door, not exactly sneaking, but not exactly announcing his presence. The door\",\"Someone quietly approaches the door, not exactly sneaking, but not exactly announcing his presence.\",The door,gold,closes softly behind her.,\"creaks open revealing a giant, dark - haired man in a hat and earphones.\",\"is open a few inches, letting him look in on his father and his wife.\",is a door to its slightly parlor office.\n6086,lsmdc0026_The_Big_Fish-62365,6163,\"The soldiers are on their feet, whistling and hollering. Up on the catwalk, someone\",\"The soldiers are on their feet, whistling and hollering.\",\"Up on the catwalk, someone\",gold,sees a triangle containing council garden.,is surprised by an enemy soldier.,grabs someone and bellows his helmsman.,\"retracts into the backroom, studying a river down a shaft of sunlight.\"\n6087,lsmdc0026_The_Big_Fish-62365,6140,\"Someone decks him, knocking him down. Someone\",\"Someone decks him, knocking him down.\",Someone,gold,pulls them close along in a large mechanism.,backhands him with a torch.,\"gets right back up, but makes no move to defend himself.\",\"reaches backwards, grabs the flotation helmet, takes it a second and bares it.\"\n6088,lsmdc0026_The_Big_Fish-62365,6136,Someone stands amid the sea of flowers. Someone,Someone stands amid the sea of flowers.,Someone,gold,\"jumps back into the cottage, standing before him.\",walks out to him.,brings out a tray of food.,sticks out her tongue.\n6089,lsmdc0026_The_Big_Fish-62365,6131,\"There's a titter from the students, but he does n't notice. The professor finally\",\"There's a titter from the students, but he does n't notice.\",The professor finally,gold,gets up and shuts the front door.,extends a hand to someone.,notices what's written there.,looks back toward his bungalow.\n6090,lsmdc0026_The_Big_Fish-62365,6134,\"We look up to the blue sky, where a giant sky - written heart floats in the wind. At her Sisters' prompting, a just - woken someone\",\"We look up to the blue sky, where a giant sky - written heart floats in the wind.\",\"At her Sisters' prompting, a just - woken someone\",gold,looks out the second - story window to find the lawn filled with.,ignores someone that contains an empty basket.,stands in the middle of the bus.,rises to join in front of the pool of doom.\n6091,lsmdc0026_The_Big_Fish-62365,6161,The emcee comes on to usher him off the stage before he is finished. We,The emcee comes on to usher him off the stage before he is finished.,We,gold,lays the canvas on someone.,reach the opposite side of the court.,instructor puts his hands in his pockets.,\"look down with someone, who is drifting right for the stage.\"\n6092,lsmdc0026_The_Big_Fish-62365,6148,\"Someone, whose eyes are swollen almost shut, keeps waiting for the next punch. She\",\"Someone, whose eyes are swollen almost shut, keeps waiting for the next punch.\",She,gold,hands him the ring.,takes a calming pad.,pulls a letter from the top of the cloth.,wraps her arms around him.\n6093,lsmdc0026_The_Big_Fish-62365,6132,\"The professor finally notices what's written there. Walking with her books, someone\",The professor finally notices what's written there.,\"Walking with her books, someone\",gold,walks back to the laptop and waits.,walks her to a table.,locks eyes with reads.,\"shakes her head, disbelieving.\"\n6094,lsmdc0026_The_Big_Fish-62365,6127,\"Someone steps back into frame, looking at the sorority house. We\",\"Someone steps back into frame, looking at the sorority house.\",We,gold,are huge and speeding up at him.,circle as he shouts.,\"looks from her to the balcony, then starts back.\",stays between him from the bath.\n6095,lsmdc0026_The_Big_Fish-62365,6139,A gang of his brothers walk behind him. Someone,A gang of his brothers walk behind him.,Someone,gold,spots him and beckons girls off in their direction.,finds a long - untouched glance in his study.,\"decks him, knocking him down.\",\"wearing capes and sweaters it pushed back off, a life vest out of the car.\"\n6096,lsmdc0026_The_Big_Fish-62365,6159,\"When his time comes, someone leaps. Looking down, he\",\"When his time comes, someone leaps.\",\"Looking down, he\",gold,bounces up and down.,notices the teens behind them as the grainy video begins.,glances at his cards.,can see the white parachutes disappearing into the darkness.\n6097,lsmdc0026_The_Big_Fish-62365,6124,But eventually she goes back inside. We,But eventually she goes back inside.,We,gold,runs into her apartment and speeds off.,\"lead someone as he walks away, tears just starting to form.\",don't see anything little someone is standing.,are seen behind the downpour drinking tea.\n6098,lsmdc0026_The_Big_Fish-62365,6158,\"Flute and drum, music rising to a military cadence. With a buzz cut and paratrooper gear, someone\",\"Flute and drum, music rising to a military cadence.\",\"With a buzz cut and paratrooper gear, someone\",gold,speaks hesitantly and speaks.,squats with a dozen other soldiers.,puts on his sketchbook.,plays fireworks.\n6099,lsmdc0026_The_Big_Fish-62365,6147,\"Someone stands stunned, his mind reeling. Someone, whose eyes are swollen almost shut,\",\"Someone stands stunned, his mind reeling.\",\"Someone, whose eyes are swollen almost shut,\",gold,\"puts him through the mirror on the monitor, and drops sits before a small screen trainer.\",\"seems oddly beautiful and becomes still, held up by time.\",see some of the pieces being taken out.,keeps waiting for the next punch.\n6100,lsmdc0026_The_Big_Fish-62365,6153,He hears voices coming from the bedroom. Someone,He hears voices coming from the bedroom.,Someone,gold,comes up the stairs down.,\"quietly approaches the door, not exactly sneaking, but not exactly announcing his presence.\",rests his hand on the curved wooden banister and chuckles to himself.,momentarily dazed when he sees someone sleeping in a shower.\n6101,lsmdc0026_The_Big_Fish-62365,6137,Someone walks out to him. She,Someone walks out to him.,She,gold,pumps his bag and jumps into the car.,hurriedly drinks the drink.,guides his young daughter off of her across the pavement.,\"is smiling, confused, joyful and scared.\"\n6102,lsmdc0026_The_Big_Fish-62365,6133,\"Walking with her books, someone shakes her head, disbelieving. We\",\"Walking with her books, someone shakes her head, disbelieving.\",We,gold,react by the sounds in her voice sitting by her eyes.,lock on their scopes.,\"look up to the blue sky, where a giant sky - written heart floats in the wind.\",slips out the back of the doctor.\n6103,lsmdc0026_The_Big_Fish-62365,6155,\"The door is open a few inches, letting him look in on his father and his wife. In the hallway, someone\",\"The door is open a few inches, letting him look in on his father and his wife.\",\"In the hallway, someone\",gold,holds a beer bottle in one hand.,peers through the blinds and finds a lighter - shaped glimmer with flickering black sofas.,stands on a grand hall.,\"shifts to a new position, letting himself listen to the story one more time.\"\n6104,lsmdc0026_The_Big_Fish-62365,6126,\"He exits frame, leaving only the sorority house in the background. Someone\",\"He exits frame, leaving only the sorority house in the background.\",Someone,gold,\"turns and goes around the intersecting corridor, past the dance floor as it attracts the funeral horrible.\",\"steps back into frame, looking at the sorority house.\",hangs on the wall.,\"begins to leave, box and sparkles.\"\n6105,lsmdc0026_The_Big_Fish-62365,6146,Someone pulls off her engagement ring. Someone,Someone pulls off her engagement ring.,Someone,gold,\"opens the card and finds someone flat of marley, who turns and looks down at a confused someone.\",\"stands stunned, his mind reeling.\",reads the message and approaches the car.,sends someone in a gallop.\n6106,lsmdc0026_The_Big_Fish-62365,6150,\"His head lies on the daffodils. He reaches for his glass of water, but someone already\",His head lies on the daffodils.,\"He reaches for his glass of water, but someone already\",gold,snatches it into his arms.,reaches and picks up the plunger.,has it for him.,pours the mixture into someone's mouth.\n6107,lsmdc0026_The_Big_Fish-62365,6144,\"Someone somehow fights his way back to his feet, ready to be knocked down again. Someone\",\"Someone somehow fights his way back to his feet, ready to be knocked down again.\",Someone,gold,is about to slug someone again when he turns.,drops back into the pool.,breaks to a stop.,keeps her vigil at a window.\n6108,lsmdc0026_The_Big_Fish-62365,6130,Someone is n't paying a lot of attention. He,Someone is n't paying a lot of attention.,He,gold,walks over to the pocket of the rail.,walks over to someone who sets one hand on someone's heart as they kiss.,\"hesitates, drawing and walks down the center of the hall.\",switches on the overhead projector without looking at it.\n6109,lsmdc0026_The_Big_Fish-62365,6123,He turns and walks down the front steps. She,He turns and walks down the front steps.,She,gold,continues to walk down the sidewalk then face him.,trots onto the second man's side and grabs the melons knob to reveal a partially bare trailer.,\"eyes a door that contains a photo of the girl, wearing a hat, up shoes, and lots of shoes.\",\"stays in the doorway for a few beats, feeling genuinely horrible for what's happened.\"\n6110,lsmdc0026_The_Big_Fish-62365,6157,\"Bruised and bandaged, someone sorts through a big bag of mail with help from someone. He\",\"Bruised and bandaged, someone sorts through a big bag of mail with help from someone.\",He,gold,\"crooked out of his hair and roots through a thick stone gate, someone walks down past a line of trees.\",rips open an official - looking letter.,swings someone's pole after.,strides toward it.\n6111,lsmdc0026_The_Big_Fish-62365,6151,\"She watches him while he slowly drinks the entire glass, thirstier than he imagined. Someone, back from the grocery store,\",\"She watches him while he slowly drinks the entire glass, thirstier than he imagined.\",\"Someone, back from the grocery store,\",gold,reaches the top of the stairs.,stirs up stirring and drinks.,casually looking for someone.,\"hands her a glass of instant matches, then lights it.\"\n6112,lsmdc0026_The_Big_Fish-62365,6152,\"Someone, back from the grocery store, reaches the top of the stairs. He\",\"Someone, back from the grocery store, reaches the top of the stairs.\",He,gold,is almost taken.,is looking down at her whimpering little tablet as someone stares at his phone.,hears voices coming from the bedroom.,lies asleep on her side and yanks his pants from their short robe and lifts her to his feet.\n6113,lsmdc0026_The_Big_Fish-62365,6122,\"Young someone shines his flashlight on someone. Recapping earlier football, baseball and basketball highlights, we\",Young someone shines his flashlight on someone.,\"Recapping earlier football, baseball and basketball highlights, we\",gold,find someone beats someone every time.,see someone in the blue bad setting.,see players watching dinner in a basement terrace with clusters and rocks.,see a group dealing cards.\n6114,lsmdc0026_The_Big_Fish-62365,6160,\"We have no idea what they are saying to each other, but every act is fundamentally the same. The emcee\",\"We have no idea what they are saying to each other, but every act is fundamentally the same.\",The emcee,gold,throws his chair to the ground.,\"are spoken, melody, subdued, notes, harsh, etc.\",are going in the part of the world who has remained by the thousand words.,comes on to usher him off the stage before he is finished.\n6115,lsmdc0026_The_Big_Fish-62365,6141,\"Someone gets right back up, but makes no move to defend himself. Sitting on the can, someone\",\"Someone gets right back up, but makes no move to defend himself.\",\"Sitting on the can, someone\",gold,faces his ex - wife.,pinches a loaf while reading the new playboy.,emerges from an approaching train headset.,drags the package out after them.\n6116,lsmdc0026_The_Big_Fish-62365,6135,\"At her Sisters' prompting, a just - woken someone looks out the second - story window to find the lawn filled with. Someone\",\"At her Sisters' prompting, a just - woken someone looks out the second - story window to find the lawn filled with.\",Someone,gold,reaches into the van's hold.,accepts the heavy tv bible.,turns back to find her dancing.,stands amid the sea of flowers.\n6117,lsmdc0026_The_Big_Fish-62365,6156,\"In the hallway, someone shifts to a new position, letting himself listen to the story one more time. Bruised and bandaged, someone\",\"In the hallway, someone shifts to a new position, letting himself listen to the story one more time.\",\"Bruised and bandaged, someone\",gold,works on his desk.,presses down the stereo and turns around.,pours him an oxygen mask.,sorts through a big bag of mail with help from someone.\n6118,lsmdc0026_The_Big_Fish-62365,6129,The tweedy economics professor continues his explanation. Someone,The tweedy economics professor continues his explanation.,Someone,gold,\"drives off screwing the difference between someone, so they explosion off can put the axle into the shop.\",notices more information on the chicken.,\"lies in line, looking at one.\",is n't paying a lot of attention.\n6119,anetv_kxwTPAhlhpw,919,He pours shots into the glass. He,He pours shots into the glass.,He,gold,stumps herself on up and pours some contents into a glass.,turns and stares.,stirs the drink with a straw.,pours sugar the glass a little time.\n6120,anetv_kxwTPAhlhpw,917,A man is standing behind a bar talking. He,A man is standing behind a bar talking.,He,gold,begins to shave his beard.,is not sucking on it.,is banging a set of weights over his head.,puts ice in a glass.\n6121,anetv_kxwTPAhlhpw,918,He puts ice in a glass. He,He puts ice in a glass.,He,gold,then runs it over the ice.,rolls it down and chugs it.,pours shots into the glass.,fills the pitcher with sugar.\n6122,anetv_dtEs78TCOZQ,14119,An older gentleman is brushing a brown horse. He,An older gentleman is brushing a brown horse.,He,gold,turns around and talks to an older lady.,is brushing on a different horse.,gets done noticing the horse cock.,is standing on top of a plant.\n6123,anetv_dtEs78TCOZQ,14120,He turns around and talks to an older lady. The horse,He turns around and talks to an older lady.,The horse,gold,lifts its leg up.,leans back with the cone.,grabs the chainsaw and leaves.,puts the camera running.\n6124,anetv_ZlHaPkhGr_g,17708,She continues playing her harmonica. There,She continues playing her harmonica.,There,gold,touch the screen.,'s a young boy and his mother who smile at the lady as she plays.,\"plays the drums, continuing to talk.\",looking up at her trembling brow.\n6125,anetv_ZlHaPkhGr_g,17711,The lady continues playing the harmonica as the elevator moves further and stops at other levels and more people walk in. People continue to get on and off the elevator but she,The lady continues playing the harmonica as the elevator moves further and stops at other levels and more people walk in.,People continue to get on and off the elevator but she,gold,can't like singing.,continues to play her harmonica.,walks behind while as one girl dances and pauses for her as he starts to play and bends down.,does n't know what they give to play.\n6126,anetv_ZlHaPkhGr_g,17712,People continue to get on and off the elevator but she continues to play her harmonica. A person,People continue to get on and off the elevator but she continues to play her harmonica.,A person,gold,stands on the sidelines watching them others.,sits behind her watching the play.,\"sits, on the bed, waiting for the rest.\",enters the elevator with a man on a stretcher along with some other people.\n6127,anetv_ZlHaPkhGr_g,17710,Then they get off the elevator when they reach their level. The lady,Then they get off the elevator when they reach their level.,The lady,gold,stops working and turns to the other woman to push the routine slightly as the other dance moves.,pushes someone open the door of someone's room.,continues playing the harmonica as the elevator moves further and stops at other levels and more people walk in.,gets off and goes back to with her show time.\n6128,anetv_ZlHaPkhGr_g,17707,The elevator door opens and several people enter the elevator. She,The elevator door opens and several people enter the elevator.,She,gold,opens a door to reveal someone as they go inside.,sits back against a rock and her men go out.,continues playing her harmonica.,jumps onto the front of the auditorium and raises himself up to the railing to check the bow.\n6129,anetv_ZlHaPkhGr_g,17709,There's a young boy and his mother who smile at the lady as she plays. Then they,There's a young boy and his mother who smile at the lady as she plays.,Then they,gold,get off the elevator when they reach their level.,are there to demonstrate their khakis.,crack up more surfers.,get straightened out and begin curling.\n6130,lsmdc0014_Ist_das_Leben_nicht_schoen-54822,1106,Someone is filling out a deposit slip at one of the desks. He,Someone is filling out a deposit slip at one of the desks.,He,gold,assembles the lantern - o lantern like guns.,grabs the paper from someone's hand.,drops his gear onto its side and climbs onto his bed.,leaps straight into the water and sits in front of palladium rubix cube.\n6131,anetv_-TWiYyvt2Ec,19326,They are trying to hold up their sails as move through the waves. They,They are trying to hold up their sails as move through the waves.,They,gold,drop down over the water.,seem to be doing the same trick.,stop what they were doing.,crash several times in the water.\n6132,anetv_-TWiYyvt2Ec,2384,The video leads into several people riding kite boards and immediately wiping out into the water. Dozens of people,The video leads into several people riding kite boards and immediately wiping out into the water.,Dozens of people,gold,are seen running down the slopes once along a river filled with water and people speaking to one another.,are shown watched on several more stats and scenes of people moving themselves along.,are seen riding around on a raft and follow up more instructions to people riding around them.,are shown crashing into the water on kite boards and ends up shots of people riding away from the camera.\n6133,anetv_-TWiYyvt2Ec,19325,A person is sailing in the ocean. They,A person is sailing in the ocean.,They,gold,paddle for people in the water.,are trying to hold up their sails as move through the waves.,wave as people take out of the shore.,are sailing along the sails of a river.\n6134,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7462,\"People head inside together, arm in arm. But someone\",\"People head inside together, arm in arm.\",But someone,gold,hurls as students halfheartedly.,\"also moves her elbow faster, jamming the belt in the innocent driver's control.\",too quickly falls calm.,\"remains on the doorstep, watching the carriage clatter its way down the long, curving driveway.\"\n6135,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7461,\"Later, as dusk is falling, a carriage pulls away from someone, waved off by people. People\",\"Later, as dusk is falling, a carriage pulls away from someone, waved off by people.\",People,gold,fall from the car into shadowy orange.,\"head inside together, arm in arm.\",paddles their way through a single link of dark - haired pedestrians and a construction crew of people hiking through rocky crags.,stand in a chess - space - by entrance of a funeral.\n6136,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7458,\"Embarrassed, someone hurries back over to someone. Slowly, someone\",\"Embarrassed, someone hurries back over to someone.\",\"Slowly, someone\",gold,\"closes her eyes, then kicks her full cheek.\",gets up and marches off between a dining room at a front end table where the half - lounging penguin stands on the mantle.,lowers her pink foot thoughtfully.,raises her eyes to meet someone's.\n6137,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7459,\"Slowly, someone raises her eyes to meet someone's. He\",\"Slowly, someone raises her eyes to meet someone's.\",He,gold,\"smiles then, as they are dark and ragged, the surrounding grandparents are separated.\",eyes the room steady.,\"is sitting across the room, watching her with an enraptured expression.\",\"stands writing on someone's cheek near the door, releasing her grip, weeping.\"\n6138,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7463,\"But someone remains on the doorstep, watching the carriage clatter its way down the long, curving driveway. Moments later, he and someone\",\"But someone remains on the doorstep, watching the carriage clatter its way down the long, curving driveway.\",\"Moments later, he and someone\",gold,walk out of hogwarts house down a dark street.,\"stride back into the drawing room, where people are waiting.\",go home in a school - quiet hallway.,\"enter a classical, dimly lit room looking down the spiral steps.\"\n6139,lsmdc1044_Pride_And_Prejudice_Disk_Two-89710,7460,\"He is sitting across the room, watching her with an enraptured expression. Later, as dusk is falling, a carriage\",\"He is sitting across the room, watching her with an enraptured expression.\",\"Later, as dusk is falling, a carriage\",gold,\"pulls away from someone, waved off by people.\",passes from one open office section on a train's tracks.,arrives across the front of the cadets.,falls down in front of the suburban house.\n6140,anetv_sV8nkrbJIKE,11757,A close up of food is shown followed by a person putting various ingredients into a mug. They,A close up of food is shown followed by a person putting various ingredients into a mug.,They,gold,pour the ingredients into a bowl while other people eat food in the background.,place the cookies on an oven.,whisper something to the camera and put down their pot.,\"mix around the ingredients, put the mug in the microwave, and take it out in the end showing off the cake.\"\n6141,lsmdc3077_THE_VOW-35993,12149,\"He eyes her lovingly and gives a faint smile. Seen in slow motion, someone hugs him, her chin\",He eyes her lovingly and gives a faint smile.,\"Seen in slow motion, someone hugs him, her chin\",gold,launching over his shoulders nearly sawing back her hair.,pressed on the handcuff around her neck.,pressing firmly to his shoulder.,pressed to her ample thigh.\n6142,lsmdc3077_THE_VOW-35993,12156,\"Striding down a sidewalk with hunched shoulders, he blows on his cupped hands. As he reaches the entrance to someone Mnemonic, he\",\"Striding down a sidewalk with hunched shoulders, he blows on his cupped hands.\",\"As he reaches the entrance to someone Mnemonic, he\",gold,\"sees someone speaking, and pours a drink.\",walk up behind someone.,\"resolutely chases her past him, past him carrying a bag of clothes.\",finds a note written on a menu taped to the glass.\n6143,lsmdc3077_THE_VOW-35993,12158,He gives a disappointed look. Meanwhile someone,He gives a disappointed look.,Meanwhile someone,gold,heads toward the cafe.,shares some space on a bed and piled for bed.,stands at the empty stall and fidgets on the pair of weak card cloths as he adjusts the dress.,introduces a sleeping girl.\n6144,lsmdc3077_THE_VOW-35993,12157,\"As he reaches the entrance to someone Mnemonic, he finds a note written on a menu taped to the glass. He\",\"As he reaches the entrance to someone Mnemonic, he finds a note written on a menu taped to the glass.\",He,gold,stares at her defiantly.,\"winces, then enters the station and talks over his cell phone.\",looks over at someone as she turns to go.,gives a disappointed look.\n6145,lsmdc3077_THE_VOW-35993,12160,\"Grinning, she steps closer. He\",\"Grinning, she steps closer.\",He,gold,\"joins together, each of them horribly.\",watches from little apartment.,\"gazes tenderly at her, then glances at the cafe.\",meets the glare.\n6146,lsmdc3077_THE_VOW-35993,12152,\"Someone listens as a band records in his studio. In a new apartment, someone\",Someone listens as a band records in his studio.,\"In a new apartment, someone\",gold,passes through a darkened campus where he reaches the door.,holds the boy representing someones's bedroom.,wanders over to a table where two ark chess.,ladles her parents' soup.\n6147,lsmdc3077_THE_VOW-35993,12151,\"The sisters admire the mural which shows a giraffe, an elephant, and a lion balancing atop round trees. Someone\",\"The sisters admire the mural which shows a giraffe, an elephant, and a lion balancing atop round trees.\",Someone,gold,\"eyes someone's lifeless face and swallows hard, then steps up and stares into the vehicle again.\",listens as a band records in his studio.,\"lies alone, staring at a sideways wall.\",\"draws a heavy breath, passing the passage with a disappointed look.\"\n6148,lsmdc3077_THE_VOW-35993,12159,\"Turning from the entrance someone starts to walk off, but spots someone approaching. She\",\"Turning from the entrance someone starts to walk off, but spots someone approaching.\",She,gold,is busy at all tables.,and the others scatter around.,stops and puts her hands in her coat pockets.,\"ragged someone with a nude someone climbs to the raft, someone, manages to get on shore.\"\n6149,lsmdc3077_THE_VOW-35993,12155,\"Now someone holds his coat, closed around his neck as he walks past a row of snow dusted Christmas trees for sale. Striding down a sidewalk with hunched shoulders, he\",\"Now someone holds his coat, closed around his neck as he walks past a row of snow dusted Christmas trees for sale.\",\"Striding down a sidewalk with hunched shoulders, he\",gold,carries one plastic bag in the other.,hurries to a railing at the end of the hall.,blows on his cupped hands.,lets his blonde hair around someone's shoulders.\n6150,lsmdc3077_THE_VOW-35993,12150,Snow veils someone's clay scrap pile. The sisters,Snow veils someone's clay scrap pile.,The sisters,gold,\"sit vacant around a street of the south, oblivious.\",advance hand to left.,routine and unties her other.,\"admire the mural which shows a giraffe, an elephant, and a lion balancing atop round trees.\"\n6151,anetv_fcSJAHXHDvM,6324,A man is seen moving in slow motion holding a tennis racket and throwing a ball up into the air. Arrows,A man is seen moving in slow motion holding a tennis racket and throwing a ball up into the air.,Arrows,gold,point around his body and show him hitting the ball while pausing to show off his body movements.,continuously swings around and ends with him throwing his arms back.,continue hitting him another and passing one another.,play up for him as well as people watching him score and leaving out a trophy.\n6152,anetv_Tp4g0ErB2oQ,19449,A woman behind a fence watch a group of players in a field. An old lady,A woman behind a fence watch a group of players in a field.,An old lady,gold,grabs a white flag to jacket it.,stands in his snow gear.,stands with three girls on her shoulder.,pass behind the woman.\n6153,anetv_OQPBLjX1LHk,5026,She swings across them one bar at a time. She then,She swings across them one bar at a time.,She then,gold,\"runs across the bridge, and returns to the monkey bars.\",smooths it out with a printer.,puts lifts her hand and flips on the bar.,shows how to mix the gift.\n6154,anetv_OQPBLjX1LHk,2537,The little girl is hanging on the monkey bars. The girl,The little girl is hanging on the monkey bars.,The girl,gold,does a hand stand.,jumps rope in a floor.,jumped and walked at the playground.,holds the top of his head.\n6155,anetv_OQPBLjX1LHk,5025,A little girl is on the monkey bars on a playground. She,A little girl is on the monkey bars on a playground.,She,gold,gets a set of monkey bars in front of them.,does a flip into the air.,swings across them one bar at a time.,springs up and jumps on the pole bed.\n6156,anetv_yA3AD9jU7QU,16220,He then grabs a brush and brushes his hands and upper arms with the scrub brush. The man,He then grabs a brush and brushes his hands and upper arms with the scrub brush.,The man,gold,dips the brush into a brush and rubs it along the eyelid.,flips a little and dries the shoe with a towel.,rinses his hands and walks down a hallway and opens the door with his back.,maintains an egg on the canvas before continuing painting off a pair of canvas.\n6157,anetv_yA3AD9jU7QU,7673,\"All of a sudden, a male nurse walks in wearing blue scrubs, and goes immediately towards the sink. While he's washing his hands, he\",\"All of a sudden, a male nurse walks in wearing blue scrubs, and goes immediately towards the sink.\",\"While he's washing his hands, he\",gold,cleans the kitchen sink with the help of the washing.,makes sure to wash his hands thoroughly and take all of he debris from up under his nails.,washes his face with and rubs the face again.,holds his hands out to front the camera man.\n6158,anetv_yA3AD9jU7QU,16218,We see a sink and a surgeon washing his hands at the sink. The man,We see a sink and a surgeon washing his hands at the sink.,The man,gold,rinsing the sink with a towel.,grabs something form the shelf and washes under his fingers.,rinses his hands thoroughly and wipes the horse down with a towel.,gets up and shots the wash dishes into his hands.\n6159,anetv_yA3AD9jU7QU,16219,The man grabs something form the shelf and washes under his fingers. He then,The man grabs something form the shelf and washes under his fingers.,He then,gold,wipes ice off of a towel and fills a glass of water.,fold it with his nozzle and wipes it down with his handkerchief.,sprays water on the garment and sprays it down with his hands.,grabs a brush and brushes his hands and upper arms with the scrub brush.\n6160,anetv_yA3AD9jU7QU,16222,We then see the man dry his hands. We,We then see the man dry his hands.,We,gold,dump paper on the a red man and we see the closing credits and the credits.,see the black ending screen.,see the lady picking 75 in his yard outdoors.,at a man rise to his knees as the black individual descends on his knee.\n6161,anetv_yA3AD9jU7QU,7672,\"A black screen appears and the title comes across in white words describing a reverse Tubal performance is about to take place. All of a sudden, a male nurse\",A black screen appears and the title comes across in white words describing a reverse Tubal performance is about to take place.,\"All of a sudden, a male nurse\",gold,reaches into wheel wearing a helmet and vaulting a scanner on the red handles that was night 4 jumping work.,turns to see various people with whom they begin to dance and are tended away with the opposing broken of them.,observes the class as there is an adult standing by to help the boy while scissors and braces.,\"walks in wearing blue scrubs, and goes immediately towards the sink.\"\n6162,anetv_yA3AD9jU7QU,16221,The man rinses his hands and walks down a hallway and opens the door with his back. We then,The man rinses his hands and walks down a hallway and opens the door with his back.,We then,gold,see the man dry his hands.,see the ending title screen.,see the title screen door.,see the lady tipping it in the ballerina.\n6163,anetv_yA3AD9jU7QU,16217,We see a black title screen. We,We see a black title screen.,We,gold,see two lady dressed in a bikini laying on a ski bench.,see children riding bikes with an arena.,see a website with five green leaves.,see a sink and a surgeon washing his hands at the sink.\n6164,anetv_QdTUPBtxAV0,1465,Then two other children behind him that are little girls slide down. Just as the girls are reaching the bottom of the slide boy gets up and leaves the slide and the girls,Then two other children behind him that are little girls slide down.,Just as the girls are reaching the bottom of the slide boy gets up and leaves the slide and the girls,gold,follow right behind him.,start to walk along.,\"is stuck, then they slide over their feet, then a person is going with them instead they slide down the slope.\",continue and sees one out in a purple basket.\n6165,anetv_l9o9R7UcPuc,11127,He holds up a pitch fork. He,He holds up a pitch fork.,He,gold,sets it in a cage.,is talking to the camera.,takes a cigar from his fridge.,cooks an omelette on the bonnet.\n6166,anetv_l9o9R7UcPuc,16189,The man briefly shows the camera a pitchfork. The man,The man briefly shows the camera a pitchfork.,The man,gold,shows the carwash talking to the camera.,shows off the tips off that one setting.,uses the pitchfork to dislodge roof covering material.,stops his mouth and talks to the camera and leave the camera.\n6167,anetv_l9o9R7UcPuc,16190,The man pulls up and disposes of the covering material. The man,The man pulls up and disposes of the covering material.,The man,gold,wraps his legs with the tool belt and places it around his neck.,continues to sit and throw the object then eye contact again.,rides off the horse and ending the band again.,talks to the camera once more.\n6168,anetv_l9o9R7UcPuc,16188,A man talks to the camera. The man briefly,A man talks to the camera.,The man briefly,gold,points to a glass being fried.,speaks to the camera rear in the room.,shows the camera a pitchfork.,takes large windows in a box.\n6169,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95557,1826,He takes out a letter with a wax seal and gives it to someone. Someone,He takes out a letter with a wax seal and gives it to someone.,Someone,gold,opens the envelope and reads the green writing.,wakes with a start.,smiles as someone leads someone through the gate.,stares blankly at the cut - out.\n6170,anetv_ICMcCoyuBAw,5769,A person is seen unscrewing an outlet while speaking to the camera and showing how to properly roll wall paper onto a wall. She,A person is seen unscrewing an outlet while speaking to the camera and showing how to properly roll wall paper onto a wall.,She,gold,moves the ring around it and begins moving along and ends by putting something directly into her eyes.,pulls the paper off and rolls along the wall with a flat object and using a knife to cut down the sides.,shows the top of the hedge.,lays it in the locker and begins painting a piece of paper off the wall.\n6171,anetv_ICMcCoyuBAw,5770,She pulls the paper off and rolls along the wall with a flat object and using a knife to cut down the sides. She,She pulls the paper off and rolls along the wall with a flat object and using a knife to cut down the sides.,She,gold,then begins looking at the carpet.,\"pulls down the paper and rubs over the wall with a sponge, ending with her speaking to the camera.\",does climbing on it while still looking on the carpet on the ground.,continues up and off making some surfaces with his paper.\n6172,anetv_ICMcCoyuBAw,9973,The woman is taking out a wallpaper with a spatula. the woman,The woman is taking out a wallpaper with a spatula.,the woman,gold,put the knife down and began peeling.,is cleaning the wall with a brush while keeps taking out the old wallpaper.,is hammering a piece of floor with a sponge.,opens it where the paints show the photo and then begins painting.\n6173,lsmdc3011_BLIND_DATING-783,15065,\"With a self - satisfied smile, the woman moves next to him. She\",\"With a self - satisfied smile, the woman moves next to him.\",She,gold,gives someone a harshly respectful nod.,draws her into a embrace and presses his lips on hers.,\"wrenches the fork from his fingers, and spears some lettuce.\",sets her plate down and faces someone into the kitchen.\n6174,lsmdc3011_BLIND_DATING-783,15066,\"She wrenches the fork from his fingers, and spears some lettuce. Someone\",\"She wrenches the fork from his fingers, and spears some lettuce.\",Someone,gold,is hurled through the air.,heads out of the dish.,takes the knife down and presses it in his forehead and grabs a bite.,raise the fork to his mouth.\n6175,lsmdc3011_BLIND_DATING-783,15064,\"Someone pats his plate and finds a salad fork. With a self - satisfied smile, the woman\",Someone pats his plate and finds a salad fork.,\"With a self - satisfied smile, the woman\",gold,digs in and opens the fridge.,moves next to him.,holds up his hand.,wipes away a tear.\n6176,lsmdc3011_BLIND_DATING-783,15067,\"Right in front of him, he finds her breasts. She\",\"Right in front of him, he finds her breasts.\",She,gold,leans forward to kiss her neighbor's hand.,slumps upon as he steps into the elevator.,darts across the gun.,yanks his body against hers.\n6177,anetv_H4wC2d_Vbog,10293,A group of people are using steppers inside a gym. They,A group of people are using steppers inside a gym.,They,gold,\"take steps up and down, alternating steps.\",are engaged in a game of rock paper scissors.,are playing volley ball over the court.,begin rubbing martial wrestling match.\n6178,anetv_H4wC2d_Vbog,13048,They are dancing and clapping their hands. They,They are dancing and clapping their hands.,They,gold,guys cheer for them.,music of the song is on.,glimmer with their flashing bows.,are stepping on small step stools while doing so.\n6179,lsmdc0010_Frau_Ohne_Gewissen-51150,12907,\"He stands there, looking down into the dark street. The rain\",\"He stands there, looking down into the dark street.\",The rain,gold,is completely pulled so low.,comes down daytime and two brothers.,drifts in against his face.,\"is fast pinned to a curb, then.\"\n6180,lsmdc0010_Frau_Ohne_Gewissen-51150,12905,Slowly he closes the door and goes back into the room. He,Slowly he closes the door and goes back into the room.,He,gold,moves across the window and opens it wide.,sits at a chopping machine.,pauses on the counter.,steps through the closing gate.\n6181,lsmdc0010_Frau_Ohne_Gewissen-51150,12903,He gets up and grips her arm. His fingers,He gets up and grips her arm.,His fingers,gold,dig into her arm.,caress the gradual back neck down tenderly.,reach for the pants.,fuse back against the curtain.\n6182,lsmdc0010_Frau_Ohne_Gewissen-51150,12904,He watches her down the corridor. Slowly he,He watches her down the corridor.,Slowly he,gold,\"fires, the power in her hand emanating.\",closes the door and goes back into the room.,turns and contemplates her body locked in close.,turns toward his room then slows down by a balcony.\n6183,lsmdc0010_Frau_Ohne_Gewissen-51150,12906,He moves across the window and opens it wide. He,He moves across the window and opens it wide.,He,gold,slides a chunk over the roof.,\"stands there, looking down into the dark street.\",dumps off of the stereo.,briefly meets someone's gaze that shows their dark roof.\n6184,anetv_uBCLX7hfZLQ,3184,Then she begins clipping a brown cat's nails. The cat,Then she begins clipping a brown cat's nails.,The cat,gold,sits calmly on her lap as she finishes clipping its nails.,\"removes cats, showing how to cut.\",turns and moving her teeth in the video of her solving the cat while cutting the woman's claws.,dips and brushes her palm hand left front of her left eye.\n6185,anetv_uBCLX7hfZLQ,3182,She is clipping the cats nails by holding the cat's paws in her hands. She,She is clipping the cats nails by holding the cat's paws in her hands.,She,gold,continues clipping the cat's nails one by one.,removes the vacuum up to a nail then picks up the fruit and begins trimming with the cat.,is getting her nails done a puzzle two times.,continues to put on the canvas with a blue lens.\n6186,anetv_uBCLX7hfZLQ,3181,A woman wearing a white shirt is sitting with her black and white cat on her lap. She,A woman wearing a white shirt is sitting with her black and white cat on her lap.,She,gold,is clipping the cats nails by holding the cat's paws in her hands.,has her hands on her lap and stares at her dog in midair.,is holding a pink hop pumpkin pen and showing her drawing of the cat.,starts playing the violin with her hands.\n6187,anetv_uBCLX7hfZLQ,3183,When she's done she kisses the cat. then she,When she's done she kisses the cat.,then she,gold,begins clipping a brown cat's nails.,hangs it onto her stomach and sidles forward and so the dogs are coming up.,stops by a table with the camera zooming in on the girl riding on the cat.,begins midway the hair around her right neck while moving her arms up and down on the music sheet.\n6188,anetv_RKsto2FmBzM,4876,A lawn is shown and then the man begins to mow his lawn. Once the man is finished he,A lawn is shown and then the man begins to mow his lawn.,Once the man is finished he,gold,chases the people and the mower in front of the tree.,comes back to camera and starts talking.,comes back and comes into the scene again.,gets off his bike and begins mowing the lawn.\n6189,anetv_RKsto2FmBzM,4875,A man with a orange shirt and black hat with glasses are outside standing in front of a green tree. A lawn is shown and then the man,A man with a orange shirt and black hat with glasses are outside standing in front of a green tree.,A lawn is shown and then the man,gold,begins walking on the sidewalk in front of someone's small grey cat.,collects his stilts and begins to jog around the field.,begins to mow his lawn.,turns around and begins using the top of it as he speaks.\n6190,anetv_vmUbGiOyUbU,4852,The blond haired groomer blow dries the white dog while brushing the dog. The dark haired groomer,The blond haired groomer blow dries the white dog while brushing the dog.,The dark haired groomer,gold,holds up the tools she uses to groom the animals.,shaves the groom's face and brushes the hooves afterwards.,brushes the child's fur.,sprays the hooves of the ski as the first man brushes the horse's hair.\n6191,anetv_vmUbGiOyUbU,4851,A dark haired pet groomer grooms a black and white dog standing on a grooming table. The blond haired groomer blow,A dark haired pet groomer grooms a black and white dog standing on a grooming table.,The blond haired groomer blow,gold,dries the white dog while brushing the dog.,combs her hair as the dog discreetly rinses her.,the horse across the screen and it comes to the young girl that it's pendant is explaining it.,frisbees on the dog's shoulders and sends a person kites all over his face.\n6192,anetv_vmUbGiOyUbU,14485,Another woman is seen speaking to the camera and the girls take turns grooming dogs. The woman,Another woman is seen speaking to the camera and the girls take turns grooming dogs.,The woman,gold,uses the frisbee and the dog's tail is shown in the end.,cuts her fingers continuously while speaking to the camera and ends with the people speaking to the camera.,notices another cat and shows him how to use it.,are seen cutting the fur as well as their nails and showing them close up afterwards.\n6193,anetv_vmUbGiOyUbU,4853,The blond haired groomer uses an electric filer to file down the white dogs nails. The dark haired groomer,The blond haired groomer uses an electric filer to file down the white dogs nails.,The dark haired groomer,gold,slides the dog back and forth between them.,brushes the black and white dogs hair.,removes the design and takes a bite out of her lips.,places a small yellow dog on what looks like a wild poodle.\n6194,anetv_vmUbGiOyUbU,4850,A blond pet groomer stands next to a white fluffy little dog on top of a grooming table. A dark haired pet groomer,A blond pet groomer stands next to a white fluffy little dog on top of a grooming table.,A dark haired pet groomer,gold,holds her nails and explains the cat about going further for take the boys' hallway.,grooms a black and white dog standing on a grooming table.,tries to lick the dogs fur up.,is pictured on a beard of different children.\n6195,anetv_vmUbGiOyUbU,14484,A woman is seen speaking to the camera with a dog chained up on a table next to her. Another woman is seen speaking to the camera and the girls,A woman is seen speaking to the camera with a dog chained up on a table next to her.,Another woman is seen speaking to the camera and the girls,gold,performing sit ups and the man walks away.,begin dancing on a stage while pointing to their hands.,take turns grooming dogs.,eating their ice cream.\n6196,anetv_vmUbGiOyUbU,4854,The dark haired groomer brushes the black and white dogs hair. The blond haired groomer,The dark haired groomer brushes the black and white dogs hair.,The blond haired groomer,gold,shows the finished groomed white fluffy dog.,pushes two dogs face down to the side.,adjusts a fur coat and the snow from the new rack.,\"turns away, followed by a black photo of the brunette young man.\"\n6197,anetv_BFrsZmuj4Ns,7149,Two men are seen running around a circle surrounded by people and performing martial arts moves. More people come in the circle and the people,Two men are seen running around a circle surrounded by people and performing martial arts moves.,More people come in the circle and the people,gold,begin fighting with one another and laughing with one another.,begin performing on the side.,continue spinning around one another and fighting with each other.,continue together at the end.\n6198,lsmdc1012_Unbreakable-7140,11206,\"She nods, turns, and goes. He\",\"She nods, turns, and goes.\",He,gold,throws his coat over the back of the sofa.,\"follows someone downstairs into the basement, where people are following someone.\",turns and grasps someone's head.,gets back around the vehicle.\n6199,lsmdc1012_Unbreakable-7140,11205,\"She looks at him, one hand holding his coat, the other in his pocket. She\",\"She looks at him, one hand holding his coat, the other in his pocket.\",She,gold,\"nods, turns, and goes.\",\"leads her across the stage, deeper into the tunnel.\",smiles at her through the sideburns.,takes a liquor bottle out of his case wearing his jacket.\n6200,lsmdc1012_Unbreakable-7140,11207,He throws his coat over the back of the sofa. Someone,He throws his coat over the back of the sofa.,Someone,gold,pushes away the front door.,walks in from the unlit landing and presses a button.,\"lights a cigarette, and does a sniff of clothes.\",\"gets out, holding his free arm.\"\n6201,lsmdc1045_An_education-90073,12446,She gets into the passenger seat. Someone,She gets into the passenger seat.,Someone,gold,steps back as the cab driver watches.,starts to pace as the wheels of the car drives.,gets in the van and drives out.,gets behind the wheel.\n6202,lsmdc1045_An_education-90073,12447,Someone gets behind the wheel. The Bristol,Someone gets behind the wheel.,The Bristol,gold,drives off to the auction.,\"advances as snowy hikes onto the windshields, forcing him to the ground.\",\"falls to the ground, landing onto the concrete floor.\",man left his vehicle stilt - faced and turns the wheel.\n6203,anetv_Ogx1hUoOSrE,1265,The girl then takes a cup of the mouthwash and drinks it. The cup of mouthwash,The girl then takes a cup of the mouthwash and drinks it.,The cup of mouthwash,gold,is passed around until all the girls drink from it.,falls off her head then walking away.,are being poured in a bag.,seems to fall out in front of her.\n6204,anetv_Ogx1hUoOSrE,1263,Four girls are shown looking into the camera. A girl up front,Four girls are shown looking into the camera.,A girl up front,gold,shows the car's pass.,are shown talking to the camera.,begins waving a bottle of mouthwash.,turns her high stick towards each other.\n6205,anetv_Ogx1hUoOSrE,1264,A girl up front begins waving a bottle of mouthwash. The girl then,A girl up front begins waving a bottle of mouthwash.,The girl then,gold,takes off the glasses while running her tongue at the camera.,takes a cup of the mouthwash and drinks it.,holds a bottle of soda while talking to the camera.,closes the cup and moves her leg.\n6206,anetv_RX-9yj3PkYI,8642,A guy showing something while bunch of people are behind him drinking. He,A guy showing something while bunch of people are behind him drinking.,He,gold,fills the cup with green flowers.,continues on reading and drinks a liquid in the cup.,is interviewed about money.,clips the woman singing gesturing multiple people in the background ranging to their talent.\n6207,anetv_RX-9yj3PkYI,296,The man continues speaking while the camera zooms in on a cup of coffee and the man takes a sip. A person,The man continues speaking while the camera zooms in on a cup of coffee and the man takes a sip.,A person,gold,takes a drink and holds the ball out in front of the glass.,points to the drink while the man smiles to the camera and waves in the end.,is then seen standing inside a kitchen and changing a plate with shoes on.,bites the man along while stirring his ingredients together.\n6208,anetv_RX-9yj3PkYI,8643,He continues on reading and drinks a liquid in the cup. A hand points to the cup and they began talking and he,He continues on reading and drinks a liquid in the cup.,A hand points to the cup and they began talking and he,gold,spits out a toothpick.,sips again and approves it and wave his hand a sip some more.,blends the ingredients to a glass.,leads into a lot of people cigarettes below them.\n6209,anetv_RX-9yj3PkYI,295,A man is seen speaking to the camera while holding up a picture and reading to the camera. The man,A man is seen speaking to the camera while holding up a picture and reading to the camera.,The man,gold,put an accordion in his pocket after throw it to another man and holds up a cigarette.,continues standing around while he brushes and text shows various exercises apart between his legs.,continues speaking while the camera zooms in on a cup of coffee and the man takes a sip.,continues to stick a cigarette and braiding by spinning an instrument around while speaking to the camera.\n6210,lsmdc3050_MR_POPPERS_PENGUINS-23898,7066,\"The bird poises its rear above someone's face. As it releases a stream of white droppings, someone\",The bird poises its rear above someone's face.,\"As it releases a stream of white droppings, someone\",gold,loses it and rides on in the water beside it.,lets go of the landing.,reaches a pair of boxes and finds it in.,arrives at the front of someone's cottage.\n6211,lsmdc3050_MR_POPPERS_PENGUINS-23898,7068,He drops his phone into a blender. Sparks,He drops his phone into a blender.,Sparks,gold,flash as he turns it on.,\"him out from behind the kitchen counter, he finds someone as he surrounded by arm - to - shoulder.\",\"drops, then cruises.\",\"it in front of him, he rests one hand on the air and forces the keys in it and unlocks him back inside.\"\n6212,lsmdc3050_MR_POPPERS_PENGUINS-23898,7062,\"Behind the bathrooms glass paneled door, the penguin swims by. He\",\"Behind the bathrooms glass paneled door, the penguin swims by.\",He,gold,reaches for the bathroom door.,deposits the bulldog on the floor into a wall.,shoots a dart around the corner.,wears a half - brim.\n6213,lsmdc3050_MR_POPPERS_PENGUINS-23898,7065,\"Engulfing him, it washes over the staircase landing, to the floor below. Someone's fingers\",\"Engulfing him, it washes over the staircase landing, to the floor below.\",Someone's fingers,gold,watch him as he leaves his room.,clutch the landing's edge as he dangles over his dining area.,find that two word cream from his left hand holding a heart o sink.,tap the keys with the shower!\n6214,lsmdc3050_MR_POPPERS_PENGUINS-23898,7063,\"He reaches for the bathroom door. As he opens it, water\",He reaches for the bathroom door.,\"As he opens it, water\",gold,stuffs its head under the faucet.,\"gushes out, knocking someone down.\",\"rises to his shoulders and touches his cheek, then steps over the rug.\",pours out of his wet suit.\n6215,lsmdc3050_MR_POPPERS_PENGUINS-23898,7064,\"As he opens it, water gushes out, knocking someone down. Engulfing him, it\",\"As he opens it, water gushes out, knocking someone down.\",\"Engulfing him, it\",gold,becomes his turn to fold over the side with a little sword in his hand.,\"cheers him on, and waves them down, keeping on his sepoys.\",\"washes over the staircase landing, to the floor below.\",rears back with her luggage and strides to her rooms with his guards.\n6216,lsmdc3050_MR_POPPERS_PENGUINS-23898,7061,\"Someone stands and someone joins him. Later, someone\",Someone stands and someone joins him.,\"Later, someone\",gold,swoops down a flight of stairs and onto a stone - lit staircase.,\"heads into the living room, which lies on the beds.\",arrives at home and makes a call.,takes off his overcoat and tie a blanket around his shoulders.\n6217,anetv_Nogr8GCIL9k,5057,\"A man ascends from the water, begins water boarding, and does flips. A water vehicle\",\"A man ascends from the water, begins water boarding, and does flips.\",A water vehicle,gold,rolls in under the diving board.,is falling straight to the water.,turns on over waves.,is pulling a man holding a rope.\n6218,anetv_Nogr8GCIL9k,5056,\"A guy stands outside, gestures, and talks. A man\",\"A guy stands outside, gestures, and talks.\",A man,gold,speaks and uses the shears to pass down the window to the street.,\"ascends from the water, begins water boarding, and does flips.\",rolls and ties a cable on the ground.,puts on a gift that has discs on them.\n6219,anetv_-deoJLN27hE,17930,\"Two soccer teams play a game of soccer in front of a crowded audience in bleachers, in which the team with the blue and white uniforms makes a series of goals. The team with the yellow and blue uniforms\",\"Two soccer teams play a game of soccer in front of a crowded audience in bleachers, in which the team with the blue and white uniforms makes a series of goals.\",The team with the yellow and blue uniforms,gold,wins a goal on the field against the black and white team and reacts by hugging and smiling each other.,in scoring goals are shown.,pass opposite the player from the game room.,scores the scores and shoots chopped at the same angle into the field for fun and goals.\n6220,anetv_19SHLOheCmo,14729,Three women are standing in a park in a field doing yoga. man,Three women are standing in a park in a field doing yoga.,man,gold,\"stands on front the children holding bleachers, and then a girl.\",is practicing gymnastics in the roofed gym.,is doing a gymnastics routine in the middle of a fitness stadium.,is running in the park behind the women.\n6221,anetv_19SHLOheCmo,14730,Man is running in the park behind the women. an old man,Man is running in the park behind the women.,an old man,gold,is using an jump rope to climb himself round.,is instructing the camel with the big pair.,is walking fast in the park.,is standing in front of the other banister doing the jump rope and doing tricks and going in the field.\n6222,anetv_7x_1tRem1gA,16181,Several people are underneath a wooden structure. They,Several people are underneath a wooden structure.,They,gold,zoom in on them before using each.,climb across it like they would monkey bars.,are working on their boards.,are pulled to the side of the boat with ropes.\n6223,anetv_7x_1tRem1gA,16182,They climb across it like they would monkey bars. Some of them,They climb across it like they would monkey bars.,Some of them,gold,\"lose their grips, falling into the water.\",are now very frustrated.,sit on their pillows before someone starts back down.,try to get off the side of the slide.\n6224,anetv_7x_1tRem1gA,2159,People in the background run across the water. Two men,People in the background run across the water.,Two men,gold,leave when others walk.,finish and then start climbing dirt.,wash each other and kiss.,walk through the groups detectives.\n6225,lsmdc3078_THE_WATCH-36314,10878,\"Elsewhere, peeking out of his blinds, someone watches the mailman across the street. The postal worker\",\"Elsewhere, peeking out of his blinds, someone watches the mailman across the street.\",The postal worker,gold,is limping and leads him up the street with his patrol car resting against the street marked entrance.,leisurely raises his head from a stack of mail and looks directly at him.,\"makes his way along an asphalt road between the fences with pads and beats, armed agents.\",recruitment then swings his back hand.\n6226,lsmdc3078_THE_WATCH-36314,10871,\"Now, someone runs alone down a neighborhood street. Someone\",\"Now, someone runs alone down a neighborhood street.\",Someone,gold,sprays him in the face.,strolls into the car.,races up the spiral stairs.,slips in and goes into the store.\n6227,lsmdc3078_THE_WATCH-36314,10886,Someone notices someone by a display of Magnum condoms. Someone,Someone notices someone by a display of Magnum condoms.,Someone,gold,points in a row with daylight.,grabs several boxes and drops one.,closes the locket and pulls out a cell phone.,finds a crumpled bag of sweets.\n6228,lsmdc3078_THE_WATCH-36314,10876,Someone slowly removes his sunglasses and gives someone a bizarre wide - eyed stare while slowly shaking his head. Someone,Someone slowly removes his sunglasses and gives someone a bizarre wide - eyed stare while slowly shaking his head.,Someone,gold,stares at someone sleeping disgustedly.,scowls and jogs on.,\"grimaces to face him, she grins slightly.\",is playing the hat by his grandfather.\n6229,lsmdc3078_THE_WATCH-36314,10874,\"Now, he runs in place at an intersection, checking his pulse. Someone and someone\",\"Now, he runs in place at an intersection, checking his pulse.\",Someone and someone,gold,sit up as daylight bites over the well - lit cabin of the boat house.,step up to the apartment.,cross an angry fountain from the defending bank.,pull up in a squad car.\n6230,lsmdc3078_THE_WATCH-36314,10883,Someone glances around as someone eyes a woman examining a grapefruit. A young boy,Someone glances around as someone eyes a woman examining a grapefruit.,A young boy,gold,\"carries a hollow, glowing black fish.\",wearing glasses turns his face with white hair.,sloppily eats ice cream.,joins his son who watches with a stony expression.\n6231,lsmdc3078_THE_WATCH-36314,10881,\"In a park, someone emerges from behind a tree and flicks open his butterfly knife as he sizes up a group of elderly people performing Tai chi. Now, at Costco, the four guys\",\"In a park, someone emerges from behind a tree and flicks open his butterfly knife as he sizes up a group of elderly people performing Tai chi.\",\"Now, at Costco, the four guys\",gold,run past central park.,sit around a fake fire in a camping display.,officer the ropes as he trails a close up of his bald head.,watch a report on a parade.\n6232,lsmdc3078_THE_WATCH-36314,10884,A young boy sloppily eats ice cream. The boy,A young boy sloppily eats ice cream.,The boy,gold,eats an ice cream cone.,watches his mom grab the glass.,dips paste on another plate.,stares at his ice cream cone.\n6233,lsmdc3078_THE_WATCH-36314,10877,\"Someone scowls and jogs on. Elsewhere, peeking out of his blinds, someone\",Someone scowls and jogs on.,\"Elsewhere, peeking out of his blinds, someone\",gold,sits on chairs facing the dying dragon.,peeks around the corner of his bedroom cabinet.,watches the mailman across the street.,starts to jog toward the beaded curtain.\n6234,lsmdc3078_THE_WATCH-36314,10882,\"Now, at Costco, the four guys sit around a fake fire in a camping display. Someone\",\"Now, at Costco, the four guys sit around a fake fire in a camping display.\",Someone,gold,glances around as someone eyes a woman examining a grapefruit.,leaves in the passenger seat and uncovers a woman in a corridor.,accidentally takes the balls of a catalog card.,\"is nowhere to be seen, dancing, meeting up, then looking at him.\"\n6235,lsmdc3078_THE_WATCH-36314,10887,\"Someone notices piles of batteries in someone's cart, then stares into his neighbor's brown eyes. Someone\",\"Someone notices piles of batteries in someone's cart, then stares into his neighbor's brown eyes.\",Someone,gold,flashes a smile and wheels his cart away.,\"holds out her wide gash, then looks at him then instantly launches it off, leaving it behind her.\",shifts his thoughtful eyes toward a row of peanuts.,\"points to a strange patch behind someone's face, then pulls a strand off of the back of his hand.\"\n6236,lsmdc3078_THE_WATCH-36314,10875,Someone and someone pull up in a squad car. Someone,Someone and someone pull up in a squad car.,Someone,gold,kicks the van toward someone who lands beside one white sedan.,\"walks off, leaving someone someone ushers her downstairs.\",removes his trunk and heads for his vehicles.,slowly removes his sunglasses and gives someone a bizarre wide - eyed stare while slowly shaking his head.\n6237,lsmdc3078_THE_WATCH-36314,10873,\"She glares at him, aiming the hose. Now, he\",\"She glares at him, aiming the hose.\",\"Now, he\",gold,\"pours herself into someone's apartment, walks out, and shuts the door behind her, and gazes at it.\",parks inside a dark restaurant and stares at his handiwork.,fixes a sober shot of guard.,\"runs in place at an intersection, checking his pulse.\"\n6238,lsmdc3078_THE_WATCH-36314,10879,\"The postal worker leisurely raises his head from a stack of mail and looks directly at him. In the high school parking lot, someone\",The postal worker leisurely raises his head from a stack of mail and looks directly at him.,\"In the high school parking lot, someone\",gold,\"watches his daughter approach someone, who smiles back at someone while hugging her.\",wears a casual suit as he sits up in the bath.,\"speaks to the boy, timidly, and sets the bowl over the table.\",sits with his hands on the cop's desk.\n6239,lsmdc3078_THE_WATCH-36314,10888,\"Someone flashes a smile and wheels his cart away. Extending a hand after someone, someone\",Someone flashes a smile and wheels his cart away.,\"Extending a hand after someone, someone\",gold,faces the guys and sits on a cooler.,slips his boot off the window.,drapes a hand on a jacket peg.,removes someone's wig.\n6240,lsmdc3078_THE_WATCH-36314,10872,Someone sprays him in the face. He slowly,Someone sprays him in the face.,He slowly,gold,trots into the building.,moves his wheelchair towards someone.,makes his way towards the trees.,reaches for her startled face.\n6241,anetv_X8o3FbH0gyo,10826,\"He jumps through the air over waves several times. Each time he lands, he\",He jumps through the air over waves several times.,\"Each time he lands, he\",gold,crashes down onto the balcony above and crawls down onto him.,falls into the water.,lands on the trampoline.,stands up and talks.\n6242,anetv_X8o3FbH0gyo,2312,A man is holding a rope as he is water skiing on a lake. He,A man is holding a rope as he is water skiing on a lake.,He,gold,gets in with the hand watching the game.,\"does several stunts, including flips and spins in the water, occasionally falling and righting himself.\",is wearing a helmet and holding a harness sails on the side.,looks around the area and walks around to the very side rail he can contain himself.\n6243,anetv_X8o3FbH0gyo,10825,A man is riding a water ski behind a boat. He,A man is riding a water ski behind a boat.,He,gold,is driving it up through the air.,starts putting his tarp over a steaming pot.,jumps through the air over waves several times.,gets off the boat and gets back to the van.\n6244,anetv_5MLEO5JWRYI,5167,\"Someone is pouring some baking soda in their in the sink, quite a bit actually and spreading it around using the box. They then\",\"Someone is pouring some baking soda in their in the sink, quite a bit actually and spreading it around using the box.\",They then,gold,\"begin and laugh, take the salad and rub the mix with the suspect and sponge stores.\",start to pour some vinegar down the sink.,\"dry the sheets, rubs the cloth around it, and starts to drink it.\",add some toothpaste on her lips.\n6245,anetv_5MLEO5JWRYI,14432,The person holds the box of baking soda up the the camera. the person then,The person holds the box of baking soda up the the camera.,the person then,gold,starts scraping the object down the sides of the tree.,continues to pour baking soda all over the inside of the sink.,begins brushing the horse's fur.,takes out noodles and put them in the bowl and covers the egg on the head.\n6246,anetv_5MLEO5JWRYI,5168,They then start to pour some vinegar down the sink. They,They then start to pour some vinegar down the sink.,They,gold,take the cloth and then add some more soap to the water.,claw the towel in.,are back on the counter and look down the drain.,watch it all go down the drain and then pour in some more vinegar.\n6247,anetv_5MLEO5JWRYI,5169,They watch it all go down the drain and then pour in some more vinegar. Then they,They watch it all go down the drain and then pour in some more vinegar.,Then they,gold,spoon it and pour with sugar and water and pour eggs into a mixer.,put the can into a strainer and pour water through the moat.,sink down the drain and laugh with each other.,start to add in more baking soda.\n6248,anetv_5MLEO5JWRYI,14431,Some one pours baking soda down a drain. the person,Some one pours baking soda down a drain.,the person,gold,drinks from the contents and blocks it baking.,pours the cream up ingredients into a martini glass.,holds the box of baking soda up the the camera.,places bowl down and slides the beverage over the sugar.\n6249,lsmdc0031_The_Lost_Weekend-65540,4874,Someone goes into the kitchenette. She,Someone goes into the kitchenette.,She,gold,raises herself to her tiptoes and kisses him warmly.,closes her eyes as she enters past a small picket fence.,\"bounds into the mangled wardrobe, takes rears, and yanks the paper away from the ceiling.\",\"emerges from the water, she finds an extra sign.\"\n6250,lsmdc0031_The_Lost_Weekend-65540,4873,\"Someone looks at him for a second, then takes off her hat and throws it into a nearby chair. Someone\",\"Someone looks at him for a second, then takes off her hat and throws it into a nearby chair.\",Someone,gold,dumps the soda out of her water.,goes into the kitchenette.,steps at the grass and stands next to it as she approaches.,\"faces the camera, towering over someone.\"\n6251,anetv_cQxTLj4XwuU,9111,A man is seated on a couch. He,A man is seated on a couch.,He,gold,lifts up a shoe and bottle of detergent.,stands up and talks about it.,stops playing and begins playing the violin.,takes a cigarette into his mouth and drinks on it.\n6252,anetv_cQxTLj4XwuU,9112,He lifts up a shoe and bottle of detergent. He,He lifts up a shoe and bottle of detergent.,He,gold,points at the dress while iron man works down on his belly.,\"lifts it over his head, and then holds him off of it.\",sprays that with a new top.,\"takes it to a sink, where he washes it.\"\n6253,anetv_cQxTLj4XwuU,9113,\"He takes it to a sink, where he washes it. He then\",\"He takes it to a sink, where he washes it.\",He then,gold,prepares to rip inside the canvas.,adds electric little metal into it.,\"places two pieces of fruit on top, and eats them off with his mouth.\",dries the sink with a towel.\n6254,anetv_Q8Y9pmhvJqE,4048,\"The boys gather in a circle, hitting their sticks on the ground. They then\",\"The boys gather in a circle, hitting their sticks on the ground.\",They then,gold,goes on trying to hit the ball.,cheer and skate away.,look at one another while sitting on their ice.,turn and stab the other leg of a man and an invisible man.\n6255,anetv_Q8Y9pmhvJqE,4047,Two adult men in helmets are teaching little boys how to play ice hockey. The boys,Two adult men in helmets are teaching little boys how to play ice hockey.,The boys,gold,continue playing on front an ice tank while two people dressed in a sport shirt are playing beach tennis.,\"gather in a circle, hitting their sticks on the ground.\",watch someone on the other side while making a shot of the soccer fight.,practice trying to get the bottles or land prizes.\n6256,anetv_8ohisLftwZ4,11007,Two men play squash in a room. A player,Two men play squash in a room.,A player,gold,bangs the tennis ball and walks away from the lanes.,goes to find the ball and throw it to his partner.,plays the bagpipes while another crowd cheers.,is furiously sniffing the cable of the soccer.\n6257,anetv_8ohisLftwZ4,11008,\"Then, the two men continues playing squash. A man\",\"Then, the two men continues playing squash.\",A man,gold,pick up a ball from the floor and continues squash.,plays the tam tams in a guitar room and then watches them leave.,stands at the table trying to hit a tennis ball on an indoor court.,jumps off his knee and gets off the stage.\n6258,anetv_u4nL6NXfsak,80,The woman holds the dog's front leg as she talks. The woman,The woman holds the dog's front leg as she talks.,The woman,gold,makes a secure pose as they make towels.,continues doing tricks on the dog.,brushes the dog with a blue brush.,cuts all of the hair a bit once but has n't talked about the entire.\n6259,anetv_u4nL6NXfsak,79,\"A woman stands talking to the camera, with a dog in front of her. The woman\",\"A woman stands talking to the camera, with a dog in front of her.\",The woman,gold,holds the dog's front leg as she talks.,does a split and all of them flips.,eats her ice cream while looking away from the camera.,demonstrates wrapping items in a pink bag.\n6260,lsmdc3067_THE_ART_OF_GETTING_BY-32363,572,Someone stares at her with hard eyes. Someone,Someone stares at her with hard eyes.,Someone,gold,heads back to her own house.,fixes him with a furrowed brow.,presses his lips into a tight line.,turns away with a propped brow.\n6261,lsmdc3067_THE_ART_OF_GETTING_BY-32363,587,\"Rolling his eyes, someone returns his gaze to the ceiling. Someone\",\"Rolling his eyes, someone returns his gaze to the ceiling.\",Someone,gold,stares at him for a moment then backs out of the room and closes the door.,\"tilts his head, rinsing his mic.\",taps a pillar and beams.,\"turns his head, leaving the noblewoman to the nurse.\"\n6262,lsmdc3067_THE_ART_OF_GETTING_BY-32363,581,\"Slack jawed, she closes the door as she leaves. Someone\",\"Slack jawed, she closes the door as she leaves.\",Someone,gold,lies with his arms folded over his stomach and his eyes shut.,steps out of her car as someone lounges below.,\"tosses the powder robe through her purse and stares at her, who waits until it becomes apparent.\",eyes the brunette who looks suspiciously tearful.\n6263,lsmdc3067_THE_ART_OF_GETTING_BY-32363,589,With a frustrated look she hangs up. Striding down a waterfront walkway she,With a frustrated look she hangs up.,Striding down a waterfront walkway she,gold,enters a waiting cross.,turns across one revolving parking lot and holds up a document like a large fan.,pulls in with her.,pauses as she notices someone up ahead.\n6264,lsmdc3067_THE_ART_OF_GETTING_BY-32363,592,\"Later, someone strides down a sidewalk. Someone\",\"Later, someone strides down a sidewalk.\",Someone,gold,walks around his desk where people are now playing football.,joins someone in their silver hatchback.,retrieves her mail from a desk against one.,approaches from the opposite direction.\n6265,lsmdc3067_THE_ART_OF_GETTING_BY-32363,583,He presses play on his iPod and lies back. Now at school someone,He presses play on his iPod and lies back.,Now at school someone,gold,demonstrates her prison cell.,sits in the lunchroom with someone and someone.,shows his friend laying out the bible.,stands on the aisle of a van near the church entrance.\n6266,lsmdc3067_THE_ART_OF_GETTING_BY-32363,570,\"Staring at someone, he gives a faint sad smile. Someone\",\"Staring at someone, he gives a faint sad smile.\",Someone,gold,shares his eyes to each other.,runs in the motorcyclist off of her.,lands in the front.,\"shoots him a thoughtful look, then lowers her eyes.\"\n6267,lsmdc3067_THE_ART_OF_GETTING_BY-32363,586,\"Later, someone lies on his bed gazing dourly at the ceiling. Someone\",\"Later, someone lies on his bed gazing dourly at the ceiling.\",Someone,gold,tries to focus on him.,opens the door and gawks.,faces someone through the kitchen window.,scurries toward the door.\n6268,lsmdc3067_THE_ART_OF_GETTING_BY-32363,580,\"His mother stares at him, her brow creased. Slack jawed, she\",\"His mother stares at him, her brow creased.\",\"Slack jawed, she\",gold,closes the door as she leaves.,\"leaves the wallet to the bar, polishes him with her hat, then heads off.\",\"glances down at someone, who shakes salutes.\",sets down her phone.\n6269,lsmdc3067_THE_ART_OF_GETTING_BY-32363,585,\"She glances back at someone reading alone one table away. Someone scrutinizes him curiously, and someone\",She glances back at someone reading alone one table away.,\"Someone scrutinizes him curiously, and someone\",gold,wears a wounded expression.,gets off his bike.,approaches the cut ignoring someone.,reverentially shakes her drink.\n6270,lsmdc3067_THE_ART_OF_GETTING_BY-32363,576,\"With a sour look, he rejects the calls then smooths the front of his shirt and folds his hands behind his head. Someone\",\"With a sour look, he rejects the calls then smooths the front of his shirt and folds his hands behind his head.\",Someone,gold,\"at his office, someone paces to a narrow hallway of a mobile school and approaches a small pink door mounted on a pillar.\",\"rips his face off a wall and slumps onto a rug, dries his hands and looks at the face of the resident.\",\"shoots his cell a brooding glance, then reaches for his ipod and hits play.\",wipes ink from the book with his flat hand then steps closer to someone.\n6271,lsmdc3067_THE_ART_OF_GETTING_BY-32363,591,\"She smiles faintly then heads over to someone who sits on a low stonewall sketching on a pad. Later, someone\",She smiles faintly then heads over to someone who sits on a low stonewall sketching on a pad.,\"Later, someone\",gold,arrives by a locker cabinet.,arrives in a blue shop and opens a drawer hewn from a wooden sloping.,strides down a sidewalk.,opens a tech shop.\n6272,lsmdc3067_THE_ART_OF_GETTING_BY-32363,590,Striding down a waterfront walkway she pauses as she notices someone up ahead. She,Striding down a waterfront walkway she pauses as she notices someone up ahead.,She,gold,stands alone from the busy street.,walks off as she digs from a box on her desk.,smiles faintly then heads over to someone who sits on a low stonewall sketching on a pad.,pulls her hand out of his jacket and turns him over to her.\n6273,lsmdc3067_THE_ART_OF_GETTING_BY-32363,584,Now at school someone sits in the lunchroom with someone and someone. She,Now at school someone sits in the lunchroom with someone and someone.,She,gold,glances back at someone reading alone one table away.,puts an apple in someone's beak.,steps out of the monkey cage and they climbs in to meet him.,\"and the soldiers go on their way out, someone leads down to the inside of a cabin.\"\n6274,lsmdc3067_THE_ART_OF_GETTING_BY-32363,593,Someone approaches from the opposite direction. The two teens,Someone approaches from the opposite direction.,The two teens,gold,walk toward the car.,walk right past each other offering no sign of acknowledgment.,duck and brandish their guns.,\"run past someone, his face caked with sweat.\"\n6275,lsmdc3067_THE_ART_OF_GETTING_BY-32363,575,\"Now, someone lies on his bed with his hands folded under his head. With a sour look, he\",\"Now, someone lies on his bed with his hands folded under his head.\",\"With a sour look, he\",gold,rejects the calls then smooths the front of his shirt and folds his hands behind his head.,takes his hand and leads someone past a security tent as several supporters fly overhead.,\"slumps forward to a railing at the board, drops down.\",puts a arm around the friend's waist and shoots him a look.\n6276,lsmdc3067_THE_ART_OF_GETTING_BY-32363,577,\"Someone shoots his cell a brooding glance, then reaches for his iPod and hits play. Now he\",\"Someone shoots his cell a brooding glance, then reaches for his iPod and hits play.\",Now he,gold,wears a different but similar outfit as he lies on his bed with his eyes closed.,\"hurries into the living hall and sits down at a table, cocktail plate.\",\"joins his mother waching the game, clutching a rope attached to her chest as he pull with his boots.\",enters a shallow open stream of blue water.\n6277,lsmdc3067_THE_ART_OF_GETTING_BY-32363,588,Meanwhile someone listens on her phone. She,Meanwhile someone listens on her phone.,She,gold,and a man lift a fire and clean the fire.,holds a mournful out back and the old korean men steps out into the corridor.,comes to a stop and picks up the phone.,ends the call then hits redial.\n6278,lsmdc3067_THE_ART_OF_GETTING_BY-32363,571,\"Starring into someone's eyes, someone gives a tiny nod. She\",\"Starring into someone's eyes, someone gives a tiny nod.\",She,gold,eats something and gives a amused smile.,twitches a smile then brushes hair away from her face.,holds out his hand.,moves his hand from someone's.\n6279,lsmdc3067_THE_ART_OF_GETTING_BY-32363,574,\"Staring after him she shakes her head then storms off in the opposite direction. Now, someone\",Staring after him she shakes her head then storms off in the opposite direction.,\"Now, someone\",gold,stands in the wheelhouse.,and three seamen try to pick their way down the jungle through the water.,flashes the pipe at her nephew.,lies on his bed with his hands folded under his head.\n6280,lsmdc3067_THE_ART_OF_GETTING_BY-32363,582,Someone lies with his arms folded over his stomach and his eyes shut. He,Someone lies with his arms folded over his stomach and his eyes shut.,He,gold,presses play on his ipod and lies back.,peels out of his dress.,\"keeps his vision fixed on them, then instantly opens at the same sight.\",\"points on her blank calendar, and casts her finger.\"\n6281,lsmdc3067_THE_ART_OF_GETTING_BY-32363,573,He turns on his heels and strides away. Staring after him she,He turns on his heels and strides away.,Staring after him she,gold,shakes her head then storms off in the opposite direction.,\"shields his face, then collapses down one by one in the end.\",\"glances between the lanes, then treads down and sees a white sneakers speed on the machine's bed like rocks.\",\"resplendent with a man beautifully subdued, a - swirling.\"\n6282,lsmdc3067_THE_ART_OF_GETTING_BY-32363,579,She opens it and looks in. His mother,She opens it and looks in.,His mother,gold,\"stares at him, her brow creased.\",strides in and faces him.,looks down from the boulder on himself.,sits outside the window for a moment.\n6283,anetv_JjUQ6dWZIL0,1021,\"A man is on a street, hitting a stick with another stick. Two men\",\"A man is on a street, hitting a stick with another stick.\",Two men,gold,\"paddle hard on a line, but quickly.\",\"engage in martial arts kick boxing, kicking and swinging and flipping.\",are in blue race shirts with two red stripes kicks on front a blue field.,are styling the leaves when the other one comes in.\n6284,anetv_JjUQ6dWZIL0,1020,A large flag is flowing in the wind. A man,A large flag is flowing in the wind.,A man,gold,in the black shirt takes turns facing the members of the woman.,\"is on a street, hitting a stick with another stick.\",prepares to play a black race.,is while standing on the leaves holding a bow.\n6285,lsmdc0029_The_Graduate-64254,4308,He leans on the horn. The car directly ahead of him,He leans on the horn.,The car directly ahead of him,gold,is thin with a long neck effect.,is blown away by his anxious grip as he scrambles to his feet.,is a figure in a wind - behind wall covered in sweat.,does not move to the right.\n6286,lsmdc0029_The_Graduate-64254,4307,\"Someone leans forward slightly, pushing the car recklessly in and out of the traffic. He\",\"Someone leans forward slightly, pushing the car recklessly in and out of the traffic.\",He,gold,\"stops short, then speeds down.\",is wearing a bowling bag.,\"turns, his gun headlights on.\",leans on the horn.\n6287,lsmdc0029_The_Graduate-64254,4309,\"Someone jerks his car over to the right, swerves around the car ahead, jamming his horn down, and swerves back into the outside lane, giving the driver of the other car an angry look as he passes him. Someone\",\"Someone jerks his car over to the right, swerves around the car ahead, jamming his horn down, and swerves back into the outside lane, giving the driver of the other car an angry look as he passes him.\",Someone,gold,starts to open the window.,hustles across the flames.,holds on to the dashboard to keep her balance.,\"keeps his eyes on someone, breathing heavily.\"\n6288,anetv_FKQIdqjY9nI,3210,\"A man plays the bagpipes on stage while wearing a Scottish skirt. Then, the man\",A man plays the bagpipes on stage while wearing a Scottish skirt.,\"Then, the man\",gold,ends playing and holds the bagpipes on his left arm.,plays the drums back.,plays the croquet with the fingers.,plays the drums with talking.\n6289,anetv_feio1hW6Dy0,5008,A close up of ballet shoes are shown followed by a woman putting them on and moving around in a bedroom. She,A close up of ballet shoes are shown followed by a woman putting them on and moving around in a bedroom.,She,gold,moves her arms and feet in the point shoes and whips her hair all around the room.,continues spraying cream on the rims and begins taking her shoes off then playing seductively.,buttons out the ironing cleaner and shows a brush while the man continues to speak to the camera.,rubs her feet into her legs while as shows a couple of dance moves on front women and several people dance along.\n6290,anetv_-9B2XtqICFw,16984,We see a illustration of the man. We then,We see a illustration of the man.,We then,gold,see his dog swimming under the water.,see the lady with the product.,see the ending screen.,see the pumpkins and the finished product.\n6291,anetv_-9B2XtqICFw,16982,We see a illustration of badminton. We then,We see a illustration of badminton.,We then,gold,see a black and yellow liquid on plates.,see a lady and a man playing indoors.,see the gymnast perform tai techniques.,see the finished make on the cake.\n6292,anetv_-9B2XtqICFw,16981,We then see a badminton match. We,We then see a badminton match.,We,gold,see an ingredient with machine.,see a illustration of badminton.,see the floor iron and lift it to their head.,see a board's targets.\n6293,anetv_1nltPeGC5ZQ,17158,\"The sumos eat Asian food with other people. Then, the sumos continue wrestling and again the little sumo\",The sumos eat Asian food with other people.,\"Then, the sumos continue wrestling and again the little sumo\",gold,takes out the big one.,icing each in a present.,walks the sumo dress on a white board.,grooms the man being his mother.\n6294,anetv_1nltPeGC5ZQ,12263,Two large sumo wrestlers wrestle in a ring. Pictures and clips of sumo wrestlers,Two large sumo wrestlers wrestle in a ring.,Pictures and clips of sumo wrestlers,gold,are shown on the screen.,break up and play the polo shirt.,are shown at the end of the race.,speak to each other before laughing.\n6295,anetv_1nltPeGC5ZQ,17157,\"Two sumo wrestlers compete in a ring on front a crowd, the short sumo takes out the ring to the bigger one and a picture is shown. The sumos\",\"Two sumo wrestlers compete in a ring on front a crowd, the short sumo takes out the ring to the bigger one and a picture is shown.\",The sumos,gold,eat asian food with other people.,wrestle the wrestling match and begin fighting in the ring bullfighting an odd karate pose.,begin playing with their swords and trying to put the sumo around in the ring.,begin practicing with one another as the skates make their cut in new mistakes.\n6296,lsmdc1007_Spider-Man1-74427,9088,She sticks her hands on her coat pockets. She,She sticks her hands on her coat pockets.,She,gold,gives a thumbs up.,puts it over her cousin's cheek.,grabs a woman's model and rubs it with her finger.,moves a little closer to him.\n6297,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17679,\"The police car has pulled up beside the cab, and people stand watching someone's actions. Someone\",\"The police car has pulled up beside the cab, and people stand watching someone's actions.\",Someone,gold,leans her mother the side of the dish as she weaves the birds.,sets a revolver into the boy's bridal gown and heads down a corridor.,\"switches on the spotlight on his cab, and turns the beam toward the old house.\",are followed by the armed emergency player being pelted by people.\n6298,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17677,\"Someone is stopped momentarily by the appearance of the house. Windows are broken, the porch sags, one section of the roof has fallen, doors and shutters\",Someone is stopped momentarily by the appearance of the house.,\"Windows are broken, the porch sags, one section of the roof has fallen, doors and shutters\",gold,are caught on a sunny curtain.,are cracked in the windows.,are open when someone has gone.,hang askew on their hinges.\n6299,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17692,Her face is harsh and tired. She,Her face is harsh and tired.,She,gold,folds her fingers in the air.,falls back inside the cast and spreads her arms.,lies as it floats toward the end zone.,gives no sign that she knows him.\n6300,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17675,Someone gets into his car and follows. The taxi,Someone gets into his car and follows.,The taxi,gold,drives down the bank.,\"enters a small, formal store.\",is up and they cross the street.,pulls up to the curb and stops.\n6301,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17686,\"Someone dashes out of the house and down the street, as someone grapples with someone, and they fall to the ground, wrestling. We\",\"Someone dashes out of the house and down the street, as someone grapples with someone, and they fall to the ground, wrestling.\",We,gold,\"falls slightly to the ground, as her eyes follow the vehicles out of the living room.\",\"see someone kneeling, trying to put handcuffs on someone.\",\"a bang, someone passes a telescope to someone's bedroom door where he notices a female gymnast watching him from an adjacent room.\",\", someone, loses her grip, watches the fight bounce off of the post.\"\n6302,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17688,Suddenly someone disappears from under someone's hands. Someone,Suddenly someone disappears from under someone's hands.,Someone,gold,\"grabs someone's gun, and spots out.\",'s sunroof sits on a table.,sits face down on the stairs of the fork.,\"gets up, amazed by his vanishing.\"\n6303,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17685,\"As he does so, someone darts in and fixes his teeth in someone's wrist, forcing him to let someone go. Someone\",\"As he does so, someone darts in and fixes his teeth in someone's wrist, forcing him to let someone go.\",Someone,gold,\"finally flies off and falls backward as he wheels, sending someone kicking his arms into the air.\",pushes him away through a massive open of burst doors.,drops it into the slot so perfectly - his can of his pistol is askew.,\"dashes out of the house and down the street, as someone grapples with someone, and they fall to the ground, wrestling.\"\n6304,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17681,Someone suddenly appears leaning against a wall. Someone,Someone suddenly appears leaning against a wall.,Someone,gold,goes backward several steps and into someone's cell.,runs through some lighter fluid.,\"is standing in the entrance, with his gun in his hand.\",appears in the background into an ceilings.\n6305,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17680,\"In a voice that sounds like a cry for help, someone yells out. Someone suddenly\",\"In a voice that sounds like a cry for help, someone yells out.\",Someone suddenly,gold,stops just above the door and pushes the door open.,runs his mouth through a gaps between dead bodies.,arrives in an savings stadium with screaming orcs.,appears leaning against a wall.\n6306,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17678,\"Like a doomed man, someone approaches the house. The police car has pulled up beside the cab, and people\",\"Like a doomed man, someone approaches the house.\",\"The police car has pulled up beside the cab, and people\",gold,stand watching someone's actions.,get out of the car to find someone dead.,drive along a market street with static on hand street.,get to his feet.\n6307,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17676,Someone gets out and looks at the house. Someone,Someone gets out and looks at the house.,Someone,gold,is stopped momentarily by the appearance of the house.,is trying not to panic.,strides over to the red brick loan building open.,is sitting behind him in the kitchen.\n6308,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17691,\"It is someone, but she has changed amazingly. Her face\",\"It is someone, but she has changed amazingly.\",Her face,gold,has been taken and efficient.,is thin with worry.,is shoved under his eye.,is harsh and tired.\n6309,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17689,\"Someone gets up, amazed by his vanishing. He\",\"Someone gets up, amazed by his vanishing.\",He,gold,reaches for it suddenly and lets go.,takes a large piece of modified weapon from the palm.,\"stops to look down and scatter, glancing away with a pensive expression.\",runs out of the scene.\n6310,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17690,He runs out of the scene. Someone,He runs out of the scene.,Someone,gold,lies next to the bed.,runs up the path to the front door of the house and raps on the door.,\"cautiously stares through a sleeping jon, then shoots a small restless glance toward someone.\",dashes towards someone who drops 10 feet high in a volts chair.\n6311,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17693,She gives no sign that she knows him. It,She gives no sign that she knows him.,It,gold,\"bite, and offer her attention to remain of someone, she gives him her flirtatious look, grinning and she avoids his gaze.\",is a cruel blow to someone.,\"someone rides on, alone, and drives a pair of white latex - gloved hand along his basement hand.\",\", a big guy stands in a middle - class servant, greets someone with a long slice of food.\"\n6312,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17684,\"Someone raises his gun to hit someone on the head. As he does so, someone\",Someone raises his gun to hit someone on the head.,\"As he does so, someone\",gold,drops into a utility pole but falls to the ground.,\"darts in and fixes his teeth in someone's wrist, forcing him to let someone go.\",struggles to take his credit card off of his sleeve.,pins the glass back through and lands back on the ground.\n6313,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17674,\"Attracting his attention, he motions to someone to follow him, indicating he has a nut in the back. Someone\",\"Attracting his attention, he motions to someone to follow him, indicating he has a nut in the back.\",Someone,gold,makes to secure the rubik's ignition.,gets into his car and follows.,receives the topic from someone's pokemon.,lets go of the back of his trousers as he reads attentively.\n6314,lsmdc0014_Ist_das_Leben_nicht_schoen-55097,17683,\"Someone tries to lead someone away by the arm, but someone struggles with him, trying to explain. Someone\",\"Someone tries to lead someone away by the arm, but someone struggles with him, trying to explain.\",Someone,gold,\"is direction someone, wearing her bathrobe, is leaning on someone's bed.\",raises his gun to hit someone on the head.,\"stares, stabbing them.\",shoots someone in the face.\n6315,lsmdc3029_GREEN_ZONE-13713,4653,A dog trots across a street and takes cover under a parked bus. Someone,A dog trots across a street and takes cover under a parked bus.,Someone,gold,feels his wrist with his pencil.,steps onto a railway platform and reaches for the truck.,looks over his shoulder.,carries the crutches out and the wheel goes out to business.\n6316,lsmdc3029_GREEN_ZONE-13713,4648,\"The soldier studies them carefully then faces his men. Leaving his men behind, someone\",The soldier studies them carefully then faces his men.,\"Leaving his men behind, someone\",gold,shifts his troubled gaze to the twinkie dish.,lowers his unconscious body.,faces his daughter with a furrowed brow.,strides out into the street and heads for the bus station.\n6317,lsmdc3029_GREEN_ZONE-13713,4652,Graffiti covers its walls and bars protect its windows. A dog,Graffiti covers its walls and bars protect its windows.,A dog,gold,is seen gluing a cat strike laying on leaves in a ball room as the cat watch over the side.,trots across a street and takes cover under a parked bus.,lies in a bed moving across a pub.,pushes down a guard.\n6318,lsmdc3029_GREEN_ZONE-13713,4650,\"Scanning his desolate surroundings, he passes an abandoned hatchback. Back at the alley, someone\",\"Scanning his desolate surroundings, he passes an abandoned hatchback.\",\"Back at the alley, someone\",gold,\"scowls at someone, takes off his jacket, then steps off the bar.\",hands her a cellphone.,and someone enter.,peeks around the corner and watches.\n6319,lsmdc3029_GREEN_ZONE-13713,4643,\"Behind him, the Humvee cuts its headlights as well. The vehicles\",\"Behind him, the Humvee cuts its headlights as well.\",The vehicles,gold,drive onward through the shadows then slow to a stop.,arrive in the rundown road as the chopper lifts off by a tired - looking biker.,burn at a gathering in the street.,wash the vehicles back at the bank.\n6320,lsmdc3029_GREEN_ZONE-13713,4657,\"Now, journalists crowd a press conference. Meanwhile, someone\",\"Now, journalists crowd a press conference.\",\"Meanwhile, someone\",gold,opens a drunken cart.,arrives at a trough.,hangs up the phone.,hurries down a stairwell.\n6321,lsmdc3029_GREEN_ZONE-13713,4656,\"The chief studies him quizzically then uses his radio. Now, journalists\",The chief studies him quizzically then uses his radio.,\"Now, journalists\",gold,assemble about a swelling function.,surround load skyscrapers.,are gathered around ranging from corridors to california.,crowd a press conference.\n6322,lsmdc3029_GREEN_ZONE-13713,4655,A man stands behind a bus. The chief,A man stands behind a bus.,The chief,gold,studies him quizzically then uses his radio.,drives his suv onto the street.,slams him through his desk and drops to a red bus.,pats someone's shoulder.\n6323,lsmdc3029_GREEN_ZONE-13713,4659,\"At the bus station, someone prowls behind a row of parked buses. Halting, he\",\"At the bus station, someone prowls behind a row of parked buses.\",\"Halting, he\",gold,steps out of a mini cooper and up a driveway in the daylight.,looks around for a partial speed as he gingerly steps.,evades the second someone.,gazes down a narrow passage between two of the hulking vehicles.\n6324,lsmdc3029_GREEN_ZONE-13713,4647,\"Creeping along a wall, someone peeks out at compound across the street where several busses sit parked. The soldier\",\"Creeping along a wall, someone peeks out at compound across the street where several busses sit parked.\",The soldier,gold,carries the piglets on a adjacent small platform and slams a door with a pair of candlesticks on a nearby desk.,studies them carefully then faces his men.,passes through a lobby directly at the shore.,stops the vast vehicle.\n6325,lsmdc3029_GREEN_ZONE-13713,4641,He hangs up and strides into someone's cubicle. Headlights,He hangs up and strides into someone's cubicle.,Headlights,gold,stepped out of the windows.,hurry for the door to the ladies' kitchen.,hits him in the back.,flicker then turn off.\n6326,lsmdc3029_GREEN_ZONE-13713,4646,Someone leads someone on foot to the mouth of the alley. He,Someone leads someone on foot to the mouth of the alley.,He,gold,sticks a ball beneath it.,gets out of someone's spell and collapses.,takes a seat at his security desk.,falls back behind the chief.\n6327,lsmdc3029_GREEN_ZONE-13713,4651,\"Back at the alley, someone peeks around the corner and watches. Graffiti\",\"Back at the alley, someone peeks around the corner and watches.\",Graffiti,gold,rises up on the platform with her leaning against a panel.,\"parks a short distance away from their car, snapping a finger as they collide.\",hikes toward the slack line behind him.,covers its walls and bars protect its windows.\n6328,lsmdc3029_GREEN_ZONE-13713,4661,\"Nearby, three of his men take positions around other buses, all hold their weapons at the ready. Someone\",\"Nearby, three of his men take positions around other buses, all hold their weapons at the ready.\",Someone,gold,wears a boyish smirk and glares at them.,tosses him ice chips.,reaches the end of a bus and peeks around it.,uses a hook to keep someone unconscious on the floor.\n6329,lsmdc3029_GREEN_ZONE-13713,4660,\"Halting, he gazes down a narrow passage between two of the hulking vehicles. Nearby, three of his men take positions around other buses, all\",\"Halting, he gazes down a narrow passage between two of the hulking vehicles.\",\"Nearby, three of his men take positions around other buses, all\",gold,hold their weapons at the ready.,shapes things in the water.,stop at the curb to watch a wistful engulf street outside.,flipping through the one to the side stairs.\n6330,lsmdc3029_GREEN_ZONE-13713,4642,\"Headlights flicker then turn off. Behind him, the Humvee\",Headlights flicker then turn off.,\"Behind him, the Humvee\",gold,crashes into a highway below.,cuts its headlights as well.,swirl toward the inn.,fly in the sky like thunder.\n6331,lsmdc3029_GREEN_ZONE-13713,4644,The vehicles drive onward through the shadows then slow to a stop. As an armed soldier,The vehicles drive onward through the shadows then slow to a stop.,As an armed soldier,gold,rubs someone 'throat.,\"tumbles from behind, crashing into the three friend.\",\"appears on an unmarked car, someone stands by the trucks.\",mounts the roof of the humvee.\n6332,lsmdc3029_GREEN_ZONE-13713,4658,\"Meanwhile, someone hurries down a stairwell. At the bus station, someone\",\"Meanwhile, someone hurries down a stairwell.\",\"At the bus station, someone\",gold,sits at a desk.,prowls behind a row of parked buses.,exits the bus and gazes after them.,slips off a tuxedo and puts his backpack behind his back.\n6333,lsmdc3029_GREEN_ZONE-13713,4649,\"Leaving his men behind, someone strides out into the street and heads for the bus station. Scanning his desolate surroundings, he\",\"Leaving his men behind, someone strides out into the street and heads for the bus station.\",\"Scanning his desolate surroundings, he\",gold,takes a handful of pictures.,gets out of the booth.,spots a butterfly circling in a door.,passes an abandoned hatchback.\n6334,lsmdc3029_GREEN_ZONE-13713,4654,\"Someone looks over his shoulder. Clutching his weapon, the soldier\",Someone looks over his shoulder.,\"Clutching his weapon, the soldier\",gold,kicks an attack chain which wraps around them.,ducks into a shadow and vanishes.,swigs from a pipe as the sniper aims the pistol at them.,hammers a pin round the rope with his opponent.\n6335,anetv_U36rsW_WhUA,328,\"Then, the person clips the claws of a white and black cat. Then, the person\",\"Then, the person clips the claws of a white and black cat.\",\"Then, the person\",gold,puts their nails on the back.,turns a cats paw.,brushes the nail using the nail clipper.,\"pet the cat on his head, after continues cutting the claws.\"\n6336,anetv_U36rsW_WhUA,3706,They pet the can afterwards. They,They pet the can afterwards.,They,gold,set is shown and scattered over the nails of rock.,pick up the cats back foot and start clipping the nails.,animal has driven horses into the house.,town file for boasting with four different canoes.\n6337,anetv_U36rsW_WhUA,3705,A person is holding a cats paw and clipping their nails. They,A person is holding a cats paw and clipping their nails.,They,gold,stop and eat the seeds of the paper.,use nail clippers to cut up pumpkin nails.,are using a plate for sale.,pet the can afterwards.\n6338,anetv_U36rsW_WhUA,327,\"A person holds firmly the paw of a brown cat to reveal the claws, clip the tip of the claws. Then, the person\",\"A person holds firmly the paw of a brown cat to reveal the claws, clip the tip of the claws.\",\"Then, the person\",gold,\"cut a hair cutter, then put polish into the small brown bodies and with it.\",picks up a white brush and paws the cats leg full with the metal.,walks through a hole.,clips the claws of a white and black cat.\n6339,anetv_NbmseYFNIlA,448,A man is seen holding a flag while others stand around him and a runner comes into frame. The runner,A man is seen holding a flag while others stand around him and a runner comes into frame.,The runner,gold,gets into position and continues his routine.,is then given up and walks away with a man helping him.,takes several jumps and lands into a pit all in slow motion.,continues by pushing the puck continuously and riding faster at the end.\n6340,lsmdc1011_The_Help-78308,17745,\"Someone has traced the phone flex to the kitchen. Elegant, slim someone\",Someone has traced the phone flex to the kitchen.,\"Elegant, slim someone\",gold,is still on the phone.,\"hangs from the top, rises from her box.\",is now gazing towards someone.,\"is back at someone's side, tapping his pointer.\"\n6341,anetv_SBJWn8AjK-4,16414,\"The boys get onto the swings and begin to show how to do tricks. For the finale, all five guys\",The boys get onto the swings and begin to show how to do tricks.,\"For the finale, all five guys\",gold,appear across from each other proudly.,get onto the swings and perform a back flip.,appear with one holding his eyes.,are smiling and cheers on the watch flag.\n6342,anetv_SBJWn8AjK-4,16413,Five boys are shown walking in a playground. The boys,Five boys are shown walking in a playground.,The boys,gold,\"go back to other games and they are throwing grass, and the boy in a red still walks in on the floor.\",get off the mat and take the stairs up.,\"turn colorful bicycles on the floor, heading for their country together they have kept their time.\",get onto the swings and begin to show how to do tricks.\n6343,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17383,This is the same empty street where someone's car swerved into the tree near the sidewalk. People,This is the same empty street where someone's car swerved into the tree near the sidewalk.,People,gold,are not paying attention to the story.,crosses the length of a rope.,come into shot and up to the spot where someone had left his car smashed against the tree.,is standing outside with a dog too.\n6344,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17379,Someone feels his ear as someone talks. Someone,Someone feels his ear as someone talks.,Someone,gold,flings a siren remotely at him.,takes a sharp breath and splashes the wall over the gate.,\"'s lips meet, their noses.\",indicates his bad ear.\n6345,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17381,\"Someone feels his lip, which shows no sign of the recent cut he received from someone. He\",\"Someone feels his lip, which shows no sign of the recent cut he received from someone.\",He,gold,is now thoroughly confused.,\"turns to, bewildered.\",is sitting in his friend's concentrated plan.,wears a wide blue shirt.\n6346,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17386,They go up to the bar. Two people,They go up to the bar.,Two people,gold,are standing in front of a man.,walk forward while balancing their arms.,perform martial arts moves in the water.,leave the bar as they approach.\n6347,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17378,\"As someone speaks, someone cocks his head curiously, favoring his deaf ear, more interested in his hearing than in what someone has said. Someone\",\"As someone speaks, someone cocks his head curiously, favoring his deaf ear, more interested in his hearing than in what someone has said.\",Someone,gold,looks sloppily snorts a piece of cocaine and tries to prevent herself from spinning.,feels his ear as someone talks.,brings back up again.,dives into the pool.\n6348,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17382,He is now thoroughly confused. Someone,He is now thoroughly confused.,Someone,gold,is staring at it with a bright cloth.,feels the clothes on the line.,arrives and goes on without touching his coat.,is standing out of the minibus.\n6349,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17380,Someone indicates his bad ear. Someone,Someone indicates his bad ear.,Someone,gold,\"shoves him in a jar, and then brings it over.\",\"feels his lip, which shows no sign of the recent cut he received from someone.\",glances at them amiably.,starts grimly at him.\n6350,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17387,Two people leave the bar as they approach. Someone the bartender,Two people leave the bar as they approach.,Someone the bartender,gold,hands her a gallon of wine.,is behind the bar.,holds her drink gaze.,has a black slicked curtain and a head over his head as he moves in with a broom.\n6351,lsmdc0014_Ist_das_Leben_nicht_schoen-55019,17385,The owner of the house passes with some Christmas packages under his arm. The owner,The owner of the house passes with some Christmas packages under his arm.,The owner,gold,\"keeps someone from him, putting their blanket around the little woman who crouches nearby, folds a set of fluffy tulle sheets.\",continues to rake out of the many branches of the school.,\"bends down to examine the trunk of the tree, then straightens up and smells someone's breath.\",wraps a towel around the neck of an older man.\n6352,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16280,The vicious creature appears behind them. It,The vicious creature appears behind them.,It,gold,\"moves forward and rears up, about to strike.\",reels back and agony.,\"is laughing, silence.\",walks into the man at the tower.\n6353,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16289,\"The wand pulsates with energy and a silver mist comes from it, forcing the Dementors back. The light from the wand\",\"The wand pulsates with energy and a silver mist comes from it, forcing the Dementors back.\",The light from the wand,gold,appears to allow straight as true body of a figure to the shadows of an altar.,\"glows even more strongly, forming a bright protective shield which spreads to the other side of the lake.\",glows in the light to flood.,\"drops into her wand, flying it from the perfectly hold light.\"\n6354,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16288,\"Standing at the edge of the lake, he points his wand, summoning all his strength. The wand pulsates with energy and a silver mist\",\"Standing at the edge of the lake, he points his wand, summoning all his strength.\",The wand pulsates with energy and a silver mist,gold,\"comes from it, forcing the dementors back.\",hover over the air whirling roiling water and then veer to it.,with fluid slips from his body.,fly as lightning strikes the unisphere.\n6355,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16290,\"The light from the wand glows even more strongly, forming a bright protective shield which spreads to the other side of the lake. The Dementors\",\"The light from the wand glows even more strongly, forming a bright protective shield which spreads to the other side of the lake.\",The Dementors,gold,\"continues side by side, only inches from the water.\",\"moves very partway, completely with the force of the enemy's energy.\",\"swirl angrily above his head, still trying to reach the figures on the opposite shore.\",shoots up weapons for escape.\n6356,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16277,People run through the undergrowth. Someone,People run through the undergrowth.,Someone,gold,slices past one of the kids and flings someone against the wall.,sees himself throwing a stone and the werewolf turning and advancing on him.,bursts into the doorway followed by two others from inside.,enters to study someone through the back in the barley.\n6357,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16276,\"In the distance, they see again the dog and the werewolf fighting by the willow tree. People\",\"In the distance, they see again the dog and the werewolf fighting by the willow tree.\",People,gold,run through the undergrowth.,gather around the creek while he kneels over in his chair.,struggle off their dogs as they watch them snap his arms.,\"are hanging from the fence and shadows, surrounding exposed trees.\"\n6358,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16287,\"Someone runs out from the trees. Standing at the edge of the lake, he\",Someone runs out from the trees.,\"Standing at the edge of the lake, he\",gold,hovers on a rake with a snow patch in front of a house.,\"points his wand, summoning all his strength.\",\"slows faster and swims his way back, leaving someone with someone.\",\"grabs her son's necklace, kisses him and pulls away.\"\n6359,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16286,The Dementors hover above someone. Someone,The Dementors hover above someone.,Someone,gold,stares back at his kill.,backs up and releases him.,weaves through the traffic through a small forest leading towards the diner.,runs out from the trees.\n6360,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16281,He claws the werewolf with his talons and it slinks away. Someone,He claws the werewolf with his talons and it slinks away.,Someone,gold,pats him across the face.,holds his head glumly someone gets up.,hides her face on someone's shoulder.,stabbing a fork.\n6361,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16278,\"They race back the way they came through the moonlit forest, stumbling over the uneven ground. Someone\",\"They race back the way they came through the moonlit forest, stumbling over the uneven ground.\",Someone,gold,rushes over to someone.,roars after them futilely.,trips over a tree root.,lowers someone through a window.\n6362,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16279,\"Eventually, they stop to catch their breath, hiding behind the gnarled trunk of a huge tree. The werewolf\",\"Eventually, they stop to catch their breath, hiding behind the gnarled trunk of a huge tree.\",The werewolf,gold,\"sniffs the ground, then disappears around the other side of the tree.\",slides down a track towards the ground.,carries the fake sized locket and string within the ring.,looks off so that can be right.\n6363,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16282,\"A swarm of Dementors is moving ominously across the sky. Holding someone's hand, someone\",A swarm of Dementors is moving ominously across the sky.,\"Holding someone's hand, someone\",gold,signals the emergency light.,stands in front of the sphere.,leads the way towards the lake.,rises into his arms.\n6364,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16285,The hooded Dementors fly low over the frozen lake. The Dementors,The hooded Dementors fly low over the frozen lake.,The Dementors,gold,follow behind the bulk of tents where a weapon - like hand may be holstered during the race.,leap onto the deck and hit him in the back.,swoop down again and again as they attack the two helpless figures.,\"rolls repeatedly chopper, and landed.\"\n6365,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9988,16284,\"On the stony shore at the far side, he sees himself and someone lying unconscious beside him. The hooded Dementors\",\"On the stony shore at the far side, he sees himself and someone lying unconscious beside him.\",The hooded Dementors,gold,fly low over the frozen lake.,\"continues to skim above someone, which flies over to someone.\",glisten on the soldier's face.,has been missing.\n6366,anetv_N3xWCui6fNY,6948,A young girl plays an accordian. The girl,A young girl plays an accordian.,The girl,gold,adjusts the violin and finishes while the drummer plays a song on the flute.,stops playing the guitar.,returns to the girl and shakes hands with the girl.,turns her head to the right.\n6367,anetv_epZjMuRRXLo,18495,A woman is seen standing in front of a mirror and begins jumping rope while smiling at the camera. She,A woman is seen standing in front of a mirror and begins jumping rope while smiling at the camera.,She,gold,continues spinning and ends by looking off into the distance.,continues dancing around on another ending screen and ends by bowing and speaking to the camera.,continues speaking to the camera while holding up the camera and pointing it in a different mouth.,continues jumping over and over again swinging her arms and ends by stopping to smile at the camera.\n6368,anetv_tA7cF5wA6ZU,16968,\"A young drummer and a man playing the piano are near each other as the young boy looks around. As the singers and musicians finish the song, the conductor\",A young drummer and a man playing the piano are near each other as the young boy looks around.,\"As the singers and musicians finish the song, the conductor\",gold,\"rushes up behind someone as he leans over the slippery, red guitar link below console.\",sticks the stick in the drummer.,waves his wand to end the music.,is continued to walk off.\n6369,anetv_tA7cF5wA6ZU,16966,A bald man is leading an orchestra. Several female singers,A bald man is leading an orchestra.,Several female singers,gold,take a shot in synchronized dance.,are singing while a choir of younger people sing backup.,are gathered around them watching.,stand up talking to the teen who begins to perform martial arts moves with foot motions.\n6370,lsmdc3050_MR_POPPERS_PENGUINS-23820,8075,Someone leaves his Town Car for a brownstone. Someone,Someone leaves his Town Car for a brownstone.,Someone,gold,wraps his arms around him.,waits for his new reload.,moves to the middle of hall.,approaches with woeful eyes afterwards.\n6371,lsmdc3050_MR_POPPERS_PENGUINS-23820,8079,The boy kicks the ball into his groin and he collapses on the floor. He,The boy kicks the ball into his groin and he collapses on the floor.,He,gold,\"goes in, jumping into the air and laughing.\",\"hurls his shield, catching him but catches his attention.\",falls to the ground smiling.,peeks in the refrigerator.\n6372,lsmdc3050_MR_POPPERS_PENGUINS-23820,8078,Someone enters the house to find a boy dribbling a soccer ball. The boy kicks the ball into his groin and he,Someone enters the house to find a boy dribbling a soccer ball.,The boy kicks the ball into his groin and he,gold,bounces back from the basket.,turns his attention back to someone.,collapses on the floor.,throws it back into the basket.\n6373,lsmdc0014_Ist_das_Leben_nicht_schoen-54679,14158,\"As someone speaks, sirens are heard passing in the street below. The crowd\",\"As someone speaks, sirens are heard passing in the street below.\",The crowd,gold,claps and flips as the two men step out of the room.,shelves their heads and desperately closes the door behind them.,watches from their moves.,\"turn to the windows, then back to someone.\"\n6374,lsmdc0014_Ist_das_Leben_nicht_schoen-54679,14157,\"More people have crowded around the counter. As someone speaks, sirens\",More people have crowded around the counter.,\"As someone speaks, sirens\",gold,muffled as the tv goes.,can be heard over singing.,are muffled out of the boats.,are heard passing in the street below.\n6375,lsmdc0014_Ist_das_Leben_nicht_schoen-54679,14159,\"The crowd turn to the windows, then back to someone. People\",\"The crowd turn to the windows, then back to someone.\",People,gold,begin to drag the girl away.,are outside a court with people.,stand behind the back desk.,have come into the room during this scene.\n6376,lsmdc0016_O_Brother_Where_Art_Thou-55665,8930,\"Someone performs an impromptu buck - and - wing, bringing the crowd to new heights of hysteria. Someone\",\"Someone performs an impromptu buck - and - wing, bringing the crowd to new heights of hysteria.\",Someone,gold,\"is also staring at the band, frowning.\",\"steps in all the small lazily, his mask flips off his sister's face, as the serpent cuts through the red smoke and\",shuts someone into an enclosed space.,\"it, his face turn blurry as the slain troll stands silently in the foreground, preventing the door open.\"\n6377,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-140,701,\"Someone sets his duffel on a bed. Now, in a busy cafeteria, someone and someone\",Someone sets his duffel on a bed.,\"Now, in a busy cafeteria, someone and someone\",gold,carry their meal trays.,north make a straight shot.,play a porcupine gateau.,are reaching to end friendly drinkers.\n6378,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-140,702,\"Now, in a busy cafeteria, someone and someone carry their meal trays. Someone, someone, and several other students\",\"Now, in a busy cafeteria, someone and someone carry their meal trays.\",\"Someone, someone, and several other students\",gold,pose for the party.,stand and stare at each other.,join someone down a stony street.,march ahead of them and sit together.\n6379,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-140,703,\"Someone, someone, and several other students march ahead of them and sit together. Someone\",\"Someone, someone, and several other students march ahead of them and sit together.\",Someone,gold,heads out of his room.,tosses a coin among the files and peers into the own office.,pulls out a chair at the head of their long table.,sits on a table with a man.\n6380,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-140,700,\"Putting down a roll of toilet paper, someone walks out of the room. Someone\",\"Putting down a roll of toilet paper, someone walks out of the room.\",Someone,gold,closes the clothes as someone gets in the car.,shakes his head as he calls and approaches.,sets his duffel on a bed.,rests his head on his pillow and shifts his gaze.\n6381,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-140,704,Someone pulls out a chair at the head of their long table. Someone,Someone pulls out a chair at the head of their long table.,Someone,gold,eats some of a brandy.,looks for an empty seat.,points an access card.,\"shuts the door, then takes a step toward the sink.\"\n6382,anetv_ze4292jVUcQ,17334,A person in the front spikes the yellow ball against a blue goal and past a goal blocker in the pool. A person on the far left of the pool,A person in the front spikes the yellow ball against a blue goal and past a goal blocker in the pool.,A person on the far left of the pool,gold,runs along a court where a player in yellow tank top is making the twirler shot.,throws the ball into the right side of the pool where all of the players swim to follow it.,follows sitting at a ball telling a team of team mates and see how to make a goal.,begins to show the shot.\n6383,anetv_ze4292jVUcQ,17333,\"A group of people in swim caps are playing volleyball in an outdoor pool, surrounded by a spattering of onlookers, and an upright digital scoreboard. A yellow ball flies into the right side of the pool and the people in the pool swim and move it to the left side of the pool, while a man in all white\",\"A group of people in swim caps are playing volleyball in an outdoor pool, surrounded by a spattering of onlookers, and an upright digital scoreboard.\",\"A yellow ball flies into the right side of the pool and the people in the pool swim and move it to the left side of the pool, while a man in all white\",gold,tracks them from the side of the pool on a raised cement border.,suits performs stripe with the ball and another man in a white shirt is watching the boy from front on the screen.,hits after one knee high.,busts out of his hand on a plate of yellow flame.\n6384,lsmdc3056_PUBLIC_ENEMIES-3630,10277,\"Someone glances around the living room, then returns to the kitchen. He\",\"Someone glances around the living room, then returns to the kitchen.\",He,gold,puts his station post up.,\"picks up his glass, takes a bite, and over before sitting on a typewriter slide.\",goes to the sink and washes his hands.,arbor from the ashtray and sets down the diary.\n6385,lsmdc3056_PUBLIC_ENEMIES-3630,10278,He goes to the sink and washes his hands. He,He goes to the sink and washes his hands.,He,gold,dries his hands with a towel and leads the way through the house to the front door.,wakes up with a towel.,picks up a can and grabs water from the pile.,shake each other's cheeks.\n6386,lsmdc3056_PUBLIC_ENEMIES-3630,10279,He dries his hands with a towel and leads the way through the house to the front door. They leave and our view,He dries his hands with a towel and leads the way through the house to the front door.,They leave and our view,gold,runs up to show a curling - haired boy.,runs closer to someone.,returns to someone who remains at the table covering her mouth with her hand.,stops him with two rows of parked suits.\n6387,lsmdc3056_PUBLIC_ENEMIES-3630,10281,\"As he eagerly takes the call. As he listens, someone\",As he eagerly takes the call.,\"As he listens, someone\",gold,looks up from a newspaper.,watches his son go limp.,\"rushes to the beach and jumps over a mirror, pulling off the hooded jacket.\",takes her hand and leads her off.\n6388,anetv_2glmVDTPY44,19785,\"The man then continues to snowboard off of a garage roof, a stair railing and several other places. The man\",\"The man then continues to snowboard off of a garage roof, a stair railing and several other places.\",The man,gold,does a complete spin in the snow in the final shot.,adjusts the moving ledge and begins showing off his harness and how to take the time.,shows a third man showing various ways to properly remove the tire.,moves down the steps in the van until he is done.\n6389,anetv_2glmVDTPY44,19784,A man snowboards over snow covered hill. The man then,A man snowboards over snow covered hill.,The man then,gold,begins to use a brush to clean the machine.,begins with shoveling snow.,\"continues to snowboard off of a garage roof, a stair railing and several other places.\",plays an intertube then zooms off the hill.\n6390,anetv_2glmVDTPY44,19783,\"A man snowboards over snow covered slopes and hills and several other objects like railings, roofs, garages and tree stumps. A man\",\"A man snowboards over snow covered slopes and hills and several other objects like railings, roofs, garages and tree stumps.\",A man,gold,talks to a woman and a man talks to the camera while holding his snow shovel.,dances on a wake board.,tries to get a tire.,snowboards over snow covered hill.\n6391,anetv_SIj-ti_70HQ,9720,A woman stands in front of a mirror smiling and begins brushing her hair. She,A woman stands in front of a mirror smiling and begins brushing her hair.,She,gold,styles it into the hoops.,legs are shown in the parking lot.,continues brushing her hair and looking at herself in the mirror.,begins brushing her fingers thoroughly and washing her hair and getting her hair out of her face.\n6392,anetv_lx5Yfoj7Gk8,4287,The people continue working with the machine putting paper through and measuring it and laying it out on a table. The people,The people continue working with the machine putting paper through and measuring it and laying it out on a table.,The people,gold,continue working on the floor and pans to apply it 5 and the people present to the camera.,continue to pour on shoes as well as close ups with people while still falling in the water.,continue to talk while the camera shows various angles while working at the casino.,are then seen hanging the paper up on a wall and presenting it in the end.\n6393,anetv_lx5Yfoj7Gk8,4286,A close up of a machine is shown printing paper and leads into people working around the picture. The people,A close up of a machine is shown printing paper and leads into people working around the picture.,The people,gold,speak to one another as they speak to one another and walk into them continuously speaking into the camera and continues surfing.,continue to move around followed by putting it on their hands.,continue working with the machine putting paper through and measuring it and laying it out on a table.,talks with the camera and leads to a person putting tool along the tiles.\n6394,anetv_cMndipw7_As,13686,The person places two dumbbell shaped steel in opening that he is welding. A person,The person places two dumbbell shaped steel in opening that he is welding.,A person,gold,uses a drill next to it and shows the damaged tiles.,pass around with a steel torch holding it and hands them a piece of wood and a weld.,sees a washing machine on a stove.,uses a flat equipment to clean the welded opening.\n6395,anetv_cMndipw7_As,13684,A person mends steel with a welding equipment. A person,A person mends steel with a welding equipment.,A person,gold,demonstrates how to wax on a lake.,shaves materials on the bow in front of a skater.,uses a hammer and a flat equipment to remove debris.,puts on clothes and heads break with shafts of clothing.\n6396,anetv_cMndipw7_As,13685,A person uses a hammer and a flat equipment to remove debris. A person,A person uses a hammer and a flat equipment to remove debris.,A person,gold,takes out a pair of shoes and apply them to a woman wearing mask.,rides back and makes sure the camera is of washing on the clothes.,uses a flat equipment to remove melted steel debris.,walks down next to a barbell with an exercise bike.\n6397,anetv_cMndipw7_As,13683,The credits of the clip is shown. A person,The credits of the clip is shown.,A person,gold,is sitting outside on a horse with snow climbing a mountain.,mends steel with a welding equipment.,is explaining.,throws scissors on horses.\n6398,anetv_uE_8WuNO7cA,16255,A lady appears holding a pumpkin. We,A lady appears holding a pumpkin.,We,gold,see the lady being hit into a pumpkin case.,see the lady in the lower left hand of the screen talking.,eat food on a pumpkin.,see the hoop and the dog.\n6399,anetv_uE_8WuNO7cA,16259,We see a person draw on the pumpkin with a black marker. We,We see a person draw on the pumpkin with a black marker.,We,gold,pass on along the number of the person.,see a pumpkin carving into the pumpkin.,see a title screen and the screen fades to black.,see the finished jack o lantern with a candle in it.\n6400,anetv_uE_8WuNO7cA,16258,We see the person carve a drawing on a pumpkin. We,We see the person carve a drawing on a pumpkin.,We,gold,see the man with a horizontal painting on the wall.,see the man blowing smoke out of his face.,see the carved pumpkin and make it in a smaller pumpkin.,see a person draw on the pumpkin with a black marker.\n6401,anetv_uE_8WuNO7cA,16256,We see the lady in the lower left hand of the screen talking. We,We see the lady in the lower left hand of the screen talking.,We,gold,see a front screen and a group making touches.,see the closing title screen.,see the face and tell the young lady.,see a person open and clean a pumpkin.\n6402,anetv_uE_8WuNO7cA,16257,We see a person open and clean a pumpkin. We,We see a person open and clean a pumpkin.,We,gold,see the man putting ingredients on the sandwich.,see the person carve a drawing on a pumpkin.,see a blue screen with a man in an orange.,see the small cylindrical steel plate.\n6403,lsmdc3069_THE_BOUNTY_HUNTER-4884,19139,Someone spots a luxury pick - up in her side mirror then eyes it over her shoulder. Someone,Someone spots a luxury pick - up in her side mirror then eyes it over her shoulder.,Someone,gold,\"steps forward, glances around and crosses the aisle to the reception desk.\",aims the rear - view mirror at it.,opens the gate through the door of the auditorium and dashes inside.,grows shivering in their spirit raft from them.\n6404,lsmdc3023_DISTRICT_9-11036,3116,Another thug opens a curtain. The gangsters,Another thug opens a curtain.,The gangsters,gold,eat out of the truck.,\"keep their guns on someone, situated low in the ditch before their leader.\",resets the peephole with the tap.,step out of a car beneath it.\n6405,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60408,419,\"Someone has started forward towards someone, he pulls himself up. Someone\",\"Someone has started forward towards someone, he pulls himself up.\",Someone,gold,grimly watches them steer down the road.,walks up to him through the window.,enters into the back offices and jumps onto a train.,steps hurriedly away from someone.\n6406,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60408,418,Someone is walking beneath the trees. lost in thought. Someone,Someone is walking beneath the trees. lost in thought.,Someone,gold,\"considers for a moment, just stays fixed on the dead man.\",turns slowly.,looks around as he is bustling with people.,\"jacks up at the end of the road, out through many rocks.\"\n6407,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60408,416,Someone casts a glance around into the Parth Galen forest. Someone,Someone casts a glance around into the Parth Galen forest.,Someone,gold,\"creeps left warily, clutching a flaming torch with one finger.\",advances through the quad to reach the gate.,gaze round at someone.,has slumped asleep.\n6408,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60408,417,Someone sits up with a start. someone's head snaps round. his eyes fly to someone's shield which lies abandoned by his camp bed. Someone,Someone sits up with a start. someone's head snaps round. his eyes fly to someone's shield which lies abandoned by his camp bed.,Someone,gold,catches a glimpse of someone and sucks her fist back into a bowl of biscuits.,is walking beneath the trees.,gets a near whistle.,\"pushing himself by, he sits up from the grimhold, revealing a metallic chinese stain.\"\n6409,lsmdc0012_Get_Shorty-53210,1397,\"Someone gives the driver a look then gets out of the bus, standing there in the rain, his seat getting wet, nowhere to go. All the lights\",\"Someone gives the driver a look then gets out of the bus, standing there in the rain, his seat getting wet, nowhere to go.\",All the lights,gold,are long: a fierce sorcerer leaning against the golden lights of the van as the bus continues to meet on.,are turned down stylish pro - lot.,\"are out, save the blue glow of a television coming from one of the downstairs rooms.\",go into the building.\n6410,lsmdc0012_Get_Shorty-53210,1398,\"All the lights are out, save the blue glow of a television coming from one of the downstairs rooms. The shape stirs, rolls over, and we\",\"All the lights are out, save the blue glow of a television coming from one of the downstairs rooms.\",\"The shape stirs, rolls over, and we\",gold,\"see someone, balding, overweight; a movie producer.\",see helps open the door.,see someone's window flip off.,see the end of the bed rise again.\n6411,anetv_tUCGJk6aSeg,742,The camera zoom in on the man. The lights,The camera zoom in on the man.,The lights,gold,run around him with metal clipped movements.,fade out and put down to a straight face.,flash like a strobe.,are shown at the light.\n6412,anetv_tUCGJk6aSeg,2300,A man plays the drums with two sticks. Also the man,A man plays the drums with two sticks.,Also the man,gold,plays the cymbals while playing the drum.,tunes his saxophone and joins a player while standing and playing a keyboard.,is singing and claps for the audience.,\"drives the drums together, squatting himself and talking.\"\n6413,anetv_q59X9izcjQc,10400,Various clips are shown of a woman standing and pointing on a beach that lead into her dragging along a board and and adjusting it on the water. The woman then,Various clips are shown of a woman standing and pointing on a beach that lead into her dragging along a board and and adjusting it on the water.,The woman then,gold,pumps around the area as well as clips of people jumping and looking off into the distance.,rides a convertible in a dirt pit while still speaking to the camera followed by several clips of people riding away.,begins moving on the dirt and ends by looking into the camera and showing how she stands next to her.,grabs onto the board and moves around the water while demonstrating proper moves and the camera moving all around others.\n6414,anetv_vjVtKL3xd8w,12687,A lady speaks while sitting on a couch. We,A lady speaks while sitting on a couch.,We,gold,woman performs and speaks to the camera.,\", we see bare strips then she talked to the camera before sitting.\",see a lady putting a roller in her hair.,see a small banner and an 6 by filming the other lady walking the paper.\n6415,anetv_vjVtKL3xd8w,12686,We see a ladies hair in a close up. A lady,We see a ladies hair in a close up.,A lady,gold,stands outside in the yard.,washes her hand in a ponytail.,shows us a stylist.,speaks while sitting on a couch.\n6416,anetv_vjVtKL3xd8w,12688,We see a lady putting a roller in her hair. We then,We see a lady putting a roller in her hair.,We then,gold,see the finished product.,see the beach gathering credits.,see his newscaster face on mirror.,\"see another illustration, images of rotten skin.\"\n6417,anetv_9LhMNDcFW_k,6854,A clip begins to play and it shows various men in a large field playing croquet while spectators look on. A young man,A clip begins to play and it shows various men in a large field playing croquet while spectators look on.,A young man,gold,is shown doing various moves in an uproar that includes two other competitors who are watching about him.,touches a camera beside a black court and walks with the shuffleboard cartridges.,is then presented with a large silver cup that is handed to him by an older man.,in a costume stands and talks to the camera while holding another large man around him.\n6418,anetv_rMX2KeJa8qI,16424,The men then hit a ball all around the yard through stands sticking out and speak to one another while drinking water. The men,The men then hit a ball all around the yard through stands sticking out and speak to one another while drinking water.,The men,gold,hit the ball a few more times and continue to speak to one another.,continue to throw their balls back and fourth to one another and end by walking around with a single girl.,continue to speak to another and speak to one another again that leads into several more shots of beer doing.,continue to drink and smiling to the other and drinking more beer as well as their ending beer.\n6419,anetv_rMX2KeJa8qI,16423,A group of shirtless men are seen standing around the outside of a home when one grabs various tools and hands more to another. The men then,A group of shirtless men are seen standing around the outside of a home when one grabs various tools and hands more to another.,The men then,gold,\"sled along the beach, pull out of their competitive gear and hold the jack around one another and walk off of the sand.\",hit a ball all around the yard through stands sticking out and speak to one another while drinking water.,begin laying down while others cheer and stand around the center.,begin to wrestle in the dark with the man hits to the side and accidentally rubs their legs and wipes it off with a rag\n6420,anetv_6U081DbNJIY,2395,\"A boy in blue shirt and short hair is walking towards the line then threw the stick to the field. A male athlete run towards the line then threw the longer stick, and\",A boy in blue shirt and short hair is walking towards the line then threw the stick to the field.,\"A male athlete run towards the line then threw the longer stick, and\",gold,does a high take.,fell on the floor.,the race begins as they drove.,continues to run down another shot.\n6421,anetv_6U081DbNJIY,7721,A man is shown running on a field. He,A man is shown running on a field.,He,gold,is holding a javelin over his shoulder.,throws a bowling hoops backwards in a field.,is playing a game of croquette.,makes judges and comments as he speaks.\n6422,anetv_6U081DbNJIY,7722,He is holding a javelin over his shoulder. He,He is holding a javelin over his shoulder.,He,gold,continues jumping and walks off on the stilts.,tries to run then frantically tries to follow the skateboard underneath.,is going up until a unshaven man hits the pinata in front of him.,throws it as far as he can.\n6423,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9661,18330,\"The huge gates are closed and firmly secured by a system of strong iron locks, which swing neatly into place, one after the other. The Dementors\",\"The huge gates are closed and firmly secured by a system of strong iron locks, which swing neatly into place, one after the other.\",The Dementors,gold,\"sit still with the last of the mechanical limbs, wrapped around someone's shoulders.\",keep guard outside the school as all of the students sleep in the great hall.,look at the far end of someone's appearance.,mingle around the mass of electricity.\n6424,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9661,18329,The heavy portcullis is lowered. The huge gates,The heavy portcullis is lowered.,The huge gates,gold,closed to reveal a boom - a furniture field throughout the sky.,explore the hall as people step out through the gate of the tower.,tumble out into town.,\"are closed and firmly secured by a system of strong iron locks, which swing neatly into place, one after the other.\"\n6425,anetv_w--HmpjK-s8,6065,There is a lot of traffic and and ambulence driving by too. He,There is a lot of traffic and and ambulence driving by too.,He,gold,is going to buy the bike while seated on the machine.,are driving the car in a parking lot and get off a bus.,peer on and seen inside and he jumps off the driver of another car.,records all of the music on a laptop.\n6426,anetv__rzxmgPv6Co,12792,\"A man is standing in his uniform in a desert like area talking. While he his talking, several videos of him\",A man is standing in his uniform in a desert like area talking.,\"While he his talking, several videos of him\",gold,are shown off road motorcycle racing around the course jumping over humps.,in the hands and harness are shown.,are shown followed by geese riding horses in the woods.,are taking ups of bottles some burning times.\n6427,anetv__rzxmgPv6Co,12793,\"While he his talking, several videos of him are shown off road motorcycle racing around the course jumping over humps. However, he\",\"While he his talking, several videos of him are shown off road motorcycle racing around the course jumping over humps.\",\"However, he\",gold,falls to the sand falls as far as he can and walks toward his safety again.,comes back during the segments to show how he uses techniques in certain jumps and the correct way to do it.,\"completes his final routine and fails by jumping the weights, landing on his sides.\",continues getting back with the slopes.\n6428,lsmdc1055_Marley_and_me-96540,18741,\"Marley lies with his head in her lap, gently wagging his tail. She\",\"Marley lies with his head in her lap, gently wagging his tail.\",She,gold,claps her hands to her face in frustration.,glances up to a smiling bearded guy with electric shaver towards an eye mirror and head.,\"braces herself on the window shut, bent behind her, and picking up a lock of hair.\",pops the cigarette up in the top of her purse and takes out a handkerchief.\n6429,lsmdc1055_Marley_and_me-96540,18742,\"She stomps to the boys' room as Marley blunders excitedly from one window to another, knocking over a lamp and pulling down a blind in the process. She\",\"She stomps to the boys' room as Marley blunders excitedly from one window to another, knocking over a lamp and pulling down a blind in the process.\",She,gold,is in the musician and is standing in the living room at a snack table as she shows the whole side of the story.,puts the baby in his high chair.,clicks her fingers across a woman's face.,comes back out and gives him an confidence.\n6430,lsmdc1055_Marley_and_me-96540,18738,\"She shuts the blinds and leaves the room, easing the door closed behind her. She\",\"She shuts the blinds and leaves the room, easing the door closed behind her.\",She,gold,\"reaches in her pocket for the travel, and puts it behind her bag.\",\"opens it, revealing ripped - up a heavy - cut, gay torso in the dining room.\",approaches the theater with her hands over her heart bag.,\"walks softly on bare feet to her and someone's room, where marley is lying on the bed.\"\n6431,lsmdc1055_Marley_and_me-96540,18740,She puts a pillow next to the dog and lies down on her back. Marley,She puts a pillow next to the dog and lies down on her back.,Marley,gold,\"chews close, as the dog leaps from the bed.\",\"lies with his head in her lap, gently wagging his tail.\",sleeps in a chair in a makeshift surveillance area.,takes a box of spaghetti out of paper and starts trimming them up and down with tape.\n6432,lsmdc1055_Marley_and_me-96540,18739,\"She walks softly on bare feet to her and someone's room, where Marley is lying on the bed. She\",\"She walks softly on bare feet to her and someone's room, where Marley is lying on the bed.\",She,gold,puts a pillow next to the dog and lies down on her back.,'s bouncing hair is reflected in the off - focus mirror.,\"rocks her face, her face round and trying to look up.\",is no realizing that that is happening.\n6433,lsmdc1055_Marley_and_me-96540,18737,\"Later, someone tucks the baby into his cot, then goes over to kiss someone, who's snug in his little bed. She\",\"Later, someone tucks the baby into his cot, then goes over to kiss someone, who's snug in his little bed.\",She,gold,\"creeps into the doorway, someone crouches on top of her.\",pulls some smoldering chain off him.,piles up additional marble.,\"shuts the blinds and leaves the room, easing the door closed behind her.\"\n6434,anetv_F3jJVS3NHf8,2974,Several shots of ingredients laid out are shown followed by hands playing cups onto a plate. They,Several shots of ingredients laid out are shown followed by hands playing cups onto a plate.,They,gold,put ingredients into a hot pot and stirs the ingredients into a bowl.,people putting on the glasses and end by holding up a nose.,look up and speak to the camera and then play with one another.,speaks to one another and pours them into glasses and blending them together in the glasses.\n6435,anetv_F3jJVS3NHf8,13534,They mix ingredients together in a bowl. They,They mix ingredients together in a bowl.,They,gold,pour the mixture into small metal cups.,put it down and spread it onto the croutons.,\"takes to pieces of sprinkled raw eggs, adds ingredients and flour and peppers into a large bowl.\",put the eggs for a plate.\n6436,anetv_F3jJVS3NHf8,13535,They pour the mixture into small metal cups. They,They pour the mixture into small metal cups.,They,gold,continue to squeeze the polish then rub together.,pull them out of the oven and put one on a plate.,walk past a cafe.,are washing up the ingredients and pour it into the blender.\n6437,anetv_F3jJVS3NHf8,2976,He mixes them together into the pan and places them all into the oven. Finally he,He mixes them together into the pan and places them all into the oven.,Finally he,gold,takes them out of the oven and places them on plates with sprinkled sugar.,takes a spatula and pours it on the baking pan.,adds more pasta handful into dough and presents it to the chef.,mixes them all together and ends the gift list to the end.\n6438,anetv_F3jJVS3NHf8,13532,Ingredients are sitting on a wooden block. A person,Ingredients are sitting on a wooden block.,A person,gold,is bending before a man cleans the floor clean.,puts socks on a large table with a liquid butter.,blows the dry ingredients with a spoon.,sets a glass bowl in a pot on the stove.\n6439,anetv_F3jJVS3NHf8,13533,A person sets a glass bowl in a pot on the stove. They,A person sets a glass bowl in a pot on the stove.,They,gold,knock themselves to their feet.,pick up a pot from the stove.,mix ingredients together in a bowl.,put the strainer on top of a glass bowl.\n6440,anetv_F3jJVS3NHf8,2975,They put ingredients into a hot pot and stirs the ingredients into a bowl. He,They put ingredients into a hot pot and stirs the ingredients into a bowl.,He,gold,\"basil tomatoes in a bowl, then shows how to use the eggs from the pan.\",adjusts the fork before the set are put out.,mixes them together into the pan and places them all into the oven.,chocolate fruit is added to a plastic cup with the man's spatula.\n6441,anetv_F3jJVS3NHf8,2977,Finally he takes them out of the oven and places them on plates with sprinkled sugar. He lastly,Finally he takes them out of the oven and places them on plates with sprinkled sugar.,He lastly,gold,finishes the momentum out with a white cake and fixes it together onto the table and edges the cookies onto the cake.,pans and removes the glass from a white coffee solo mug.,uses a knife to check and see if they are done.,takes each frosting out of the bug and brushes it away with a marker.\n6442,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1563,Someone stares out of a window. Animated shadow puppets,Someone stares out of a window.,Animated shadow puppets,gold,decorate the confused zebra.,glimpse someone's associate as someone approaches thoughtfully.,\"his face, small above his shoulder.\",act out the story.\n6443,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1565,Someone moves from the window and finds a piece of paper. He,Someone moves from the window and finds a piece of paper.,He,gold,takes a pen and draws a vertical straight line.,passes it like a doctor's cauldron.,\"pulls takes a seat and stares ahead, whistling and ready to head off.\",turns and removes her coat.\n6444,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1564,Animated shadow puppets act out the story. Someone,Animated shadow puppets act out the story.,Someone,gold,reluctantly nods as the others icily each other wary.,is behind the indian - enclosed campus.,moves from the window and finds a piece of paper.,sits in the room of someone.\n6445,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1568,\"Next, he draws a circle which contains the bottom half of the wand. Finally, he\",\"Next, he draws a circle which contains the bottom half of the wand.\",\"Finally, he\",gold,takes the tool and he begins to inspect it.,finds the room in blue and he can't believe it.,\"sets it down, casually, and walks away to the bottom of the cart.\",\"draws a triangle, surrounding the wand and the stone.\"\n6446,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1567,\"He looks up, brushing back his long, straggly hair. Next, he\",\"He looks up, brushing back his long, straggly hair.\",\"Next, he\",gold,sits down on the edge of the bed in front of himself and gets in.,stops to look himself straight in the eye.,approaches the dancer and rubs his head as he starts to move his arms.,draws a circle which contains the bottom half of the wand.\n6447,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94429,1566,He takes a pen and draws a vertical straight line. He,He takes a pen and draws a vertical straight line.,He,gold,\"takes a final puff, then raises an eyebrow.\",\"looks up, brushing back his long, straggly hair.\",is addressed to the captain.,takes his hand in his.\n6448,lsmdc1010_TITANIC-77610,361,A young brown - haired boy turns to his auburn - haired mother. The mother,A young brown - haired boy turns to his auburn - haired mother.,The mother,gold,faces her younger sister.,\"returns, at someone's window, in her dark glasses, then gives her a once - hearted wave.\",faces her laotong with a tender expression.,\"glances at her young daughter, who nods.\"\n6449,lsmdc1010_TITANIC-77610,367,\"The flare explodes into separate fiery streams that fall. In the master - at - arms' office, someone\",The flare explodes into separate fiery streams that fall.,\"In the master - at - arms' office, someone\",gold,\"looks out through a porthole at the water, which almost reaches the middle of the glass.\",aims his wand at someone.,\"hands the rat gun to someone, who grins and smacks a grenade to the head.\",points to the group mini the stocky female lad.\n6450,lsmdc1010_TITANIC-77610,363,\"As one of the lifeboats tilts to one side, the passengers on board grimace. The sailors\",\"As one of the lifeboats tilts to one side, the passengers on board grimace.\",The sailors,gold,level the boat and lower it toward the water.,appear slightly at the panel and tilts their heads in her direction.,shove them back toward the unfinished divide.,lift someone off the deck as the bunker plane arrives overhead.\n6451,lsmdc1010_TITANIC-77610,362,\"The mother glances at her young daughter, who nods. Someone\",\"The mother glances at her young daughter, who nods.\",Someone,gold,\"eyes him briefly, then turns away from his father.\",directs sailors lowering lifeboats filled with women and children.,\"shifts his gaze again, then faces him squarely.\",follows him out.\n6452,lsmdc1010_TITANIC-77610,360,\"At the top of the stairs, a steward stands behind a locked gate. A young brown - haired boy\",\"At the top of the stairs, a steward stands behind a locked gate.\",A young brown - haired boy,gold,tentatively looks at a girl to the platform who bows.,stands on a desk in front of an elegant display of angry prison.,turns to his auburn - haired mother.,greets him as he passes through a field filled with vehicle.\n6453,lsmdc1010_TITANIC-77610,365,\"The passengers on deck, including people, gaze up. A young blond girl\",\"The passengers on deck, including people, gaze up.\",A young blond girl,gold,watches the flares and smiles.,delivers a scrap of paper to someone.,steps up beside him and shuffles off.,hurries down a street.\n6454,lsmdc1010_TITANIC-77610,364,The sailors level the boat and lower it toward the water. A crewman,The sailors level the boat and lower it toward the water.,A crewman,gold,fires a flare into the night sky.,watches the ship's explode.,wearing a white lei dances in the wind.,hands over a luggage of ocean's.\n6455,lsmdc1010_TITANIC-77610,366,A young blond girl watches the flares and smiles. The flare,A young blond girl watches the flares and smiles.,The flare,gold,glows off a jeep shaped like carousel.,explodes into separate fiery streams that fall.,hits the window atop a tower.,shines in the blonde behind the stack as someone arrives.\n6456,lsmdc1010_TITANIC-77610,358,\"Someone follows someone, who grabs a life belt and puts it on. They\",\"Someone follows someone, who grabs a life belt and puts it on.\",They,gold,stand behind a crowd of passengers on the stairs leading to the main deck.,\", someone bounces off the bridge deck shelter.\",tears take in her hands.,divers skis down the snowy netting.\n6457,lsmdc1010_TITANIC-77610,359,\"They stand behind a crowd of passengers on the stairs leading to the main deck. At the top of the stairs, a steward\",They stand behind a crowd of passengers on the stairs leading to the main deck.,\"At the top of the stairs, a steward\",gold,stands behind a locked gate.,hops up from the d deck.,sweeps at a point where people stand facing a wall.,checks the pistol of someone - safe - - then faces the ship.\n6458,anetv_Uqte3S_ErTM,949,Several people are in a manmade race track. Bmx bikers,Several people are in a manmade race track.,Bmx bikers,gold,run down the track in a race.,stand on the side watching them from between groups of cars.,are going over the hills along the path.,run through a small resort of sand.\n6459,anetv_Uqte3S_ErTM,950,Bmx bikers are going over the hills along the path. They,Bmx bikers are going over the hills along the path.,They,gold,spin in the air and do stunts as they ride.,do their heels and skate up against the snow covered line.,stop to look at each other.,are now signs about their jump competition and there is a sunny event with spectators gathered on the sides.\n6460,anetv_Uqte3S_ErTM,11208,A person is seen riding down the track on a dirt bike. The person,A person is seen riding down the track on a dirt bike.,The person,gold,walks up on the road and continues riding along the streets.,continues to ride down on the dirt path while the camera follows.,rides the intertube up and down.,rides rope with one skateboard while standing in a track.\n6461,anetv_Uqte3S_ErTM,11207,A large track of dirt is shown on a track while others stand on the sidelines. A person,A large track of dirt is shown on a track while others stand on the sidelines.,A person,gold,throws a large strip into a sand pit while the other holds sand.,is seen riding down the track on a dirt bike.,catches the puck back and fourth while another.,rides down the track onto the track followed by several more athletic people in the distance.\n6462,anetv_hjtGItcwkQA,11755,Two men pull on the rigging seated on the small sailboat. The sail boat,Two men pull on the rigging seated on the small sailboat.,The sail boat,gold,stops as they continue to paddle.,started then lifted off for the boat.,makes a turn in front of the bow of another boat only partly seen.,knocks another boat down the river.\n6463,anetv_hjtGItcwkQA,11754,A group of sail boats sail together through choppy water on a windy day. Two men,A group of sail boats sail together through choppy water on a windy day.,Two men,gold,are seen surfing on the white as they walk through a turbulent river.,pull onto a sail boat and perform a motor boat.,win and shake their hands.,pull on the rigging seated on the small sailboat.\n6464,lsmdc1019_Confessions_Of_A_Shopaholic-80693,17615,Someone packs clothes into plastic bags and stuffs them into a cupboard. She,Someone packs clothes into plastic bags and stuffs them into a cupboard.,She,gold,glances around at the silhouetted place with one hand.,closes the cupboard that's full to bursting.,lays the bed empty.,drinks them from a shelf.\n6465,lsmdc1019_Confessions_Of_A_Shopaholic-80693,17613,She tries to copy from a book. They,She tries to copy from a book.,They,gold,watch a dvd at home.,'s spray bed spray is spilled over the ambulance.,\"leans forward of the couch and spreads the sweats to someone, who sits on the bed.\",get the pipe from the floor and scatter it to a rack.\n6466,lsmdc1019_Confessions_Of_A_Shopaholic-80693,17616,She closes the cupboard that's full to bursting. Mannequins,She closes the cupboard that's full to bursting.,Mannequins,gold,try to lure her.,turns to ignore the presence as people stride along.,\"and frustrated, someone takes back and writes again.\",\"is looking up, her grieving face contorted with terror.\"\n6467,anetv_f6JZ3LWJRVE,10983,One of the buffalos is shot by an yellow tipped weapon while walking away. One of the men,One of the buffalos is shot by an yellow tipped weapon while walking away.,One of the men,gold,gets up and hits his chair across the table.,is then shown standing over the dead animal.,is shown tossing balls onto the ground as the players continue.,has dogs on one of the kids with a sock which they can keep in the air.\n6468,anetv_f6JZ3LWJRVE,10980,A room filled with stuffed and hunted animals displays in a room with many of them mounted on walls. Two brown buffalos,A room filled with stuffed and hunted animals displays in a room with many of them mounted on walls.,Two brown buffalos,gold,are standing next to each other on a sandy ground in extremely windy weather.,are fun with welds.,gets up off the bed with an electric toothbrush and starts pulling some papers.,wear grabbed a ring to a chain jutting around around them.\n6469,anetv_f6JZ3LWJRVE,10982,Two men watch the two buffalos from a distance with weapons mounted aiming to shoot as a camera man stands behind them filming the incident. One of the buffalos,Two men watch the two buffalos from a distance with weapons mounted aiming to shoot as a camera man stands behind them filming the incident.,One of the buffalos,gold,dives from another explosion by and this video takes place.,is shot by an yellow tipped weapon while walking away.,players returns paintball and several men shoot in the background.,turns and throws a ball across the sand.\n6470,anetv_f6JZ3LWJRVE,10981,Two brown buffalos are standing next to each other on a sandy ground in extremely windy weather. Two men,Two brown buffalos are standing next to each other on a sandy ground in extremely windy weather.,Two men,gold,watch the two buffalos from a distance with weapons mounted aiming to shoot as a camera man stands behind them filming the incident.,are using their tents and shopping underneath.,\"do motocross in a race, past a row of trees.\",\"dressed in a yellow sweater, pushing a white cart in the center of the track and balancing them with the knife.\"\n6471,lsmdc0010_Frau_Ohne_Gewissen-51477,19283,Someone is watching him almost stupefied. Someone,Someone is watching him almost stupefied.,Someone,gold,glances back and heads for someone.,halts in his tracks with his exasperated gaze fixed on someone.,puts the glass down noisily on someone's desk.,looks up as he cries from a sofa.\n6472,lsmdc0010_Frau_Ohne_Gewissen-51477,19284,Someone puts the glass down noisily on someone's desk. With the doorknob in his hand someone,Someone puts the glass down noisily on someone's desk.,With the doorknob in his hand someone,gold,\"has his hand on the doorknob, pulling it back.\",turns back to someone with a glance down at his own shirt sleeves.,\"throws his pockets, heads up the stairs, and joins a mustached marine who pauses in front of the traffic jam.\",opens a velvet trunk and removes the knob from around the knob.\n6473,lsmdc0010_Frau_Ohne_Gewissen-51477,19282,He grabs the glass of water out of someone's hand and drains it in one big gulp. Someone,He grabs the glass of water out of someone's hand and drains it in one big gulp.,Someone,gold,detach from the window.,is watching him almost stupefied.,stares into the pitcher of wine.,takes eyes with the boy.\n6474,lsmdc1017_Bad_Santa-7719,15099,\"He sits in someone's bmw with the engine running, having first run a hose from the exhaust pipe into the driver's window in order to commit a seasonal suicide by carbon monoxide poisoning. The kid\",\"He sits in someone's bmw with the engine running, having first run a hose from the exhaust pipe into the driver's window in order to commit a seasonal suicide by carbon monoxide poisoning.\",The kid,gold,is in the mall as a young man emerges from a window and inside the station.,sits back with the shovel and pretends to roll to a stop in front of a cloudy tv.,walks into the garage and sees him.,rolls the truck of a truck then drives the hatchback on the road past.\n6475,lsmdc1017_Bad_Santa-7719,15104,\"He sees the kid has got a black eye. Later, someone\",He sees the kid has got a black eye.,\"Later, someone\",gold,sits with a group of girls.,is smashing into the chief skaterat's face.,smiles and looks around.,stands overlooking a balcony with his mother in it.\n6476,lsmdc1017_Bad_Santa-7719,15103,Someone winds the driver's window down and hands the kid a letter. He,Someone winds the driver's window down and hands the kid a letter.,He,gold,sees the kid has got a black eye.,opens the door and closes it.,begins to pull them near.,grabs the dark handcuff keys and closes it once more.\n6477,lsmdc1017_Bad_Santa-7719,15105,\"Later, someone is smashing into the chief skaterat's face. He\",\"Later, someone is smashing into the chief skaterat's face.\",He,gold,turns to the rest of the gang.,turns the page from the book book.,listens to an ex - man in the skate park.,\"grins weakly, grabs the flask, and picks it up.\"\n6478,lsmdc1017_Bad_Santa-7719,15102,The kid turns and makes to go out of the garage. Someone,The kid turns and makes to go out of the garage.,Someone,gold,\"start launching off the swing and accidentally hits a tree, but people are wake on it.\",takes a seat and is signing a list for the university screen.,winds the driver's window down and hands the kid a letter.,squats down and hobbles behind a open door.\n6479,lsmdc1017_Bad_Santa-7719,15100,The kid walks into the garage and sees him. The kid,The kid walks into the garage and sees him.,The kid,gold,does flip - flops as he tries to wrestle.,walks over to the car and looks in through the driver's window.,\"peels a little strip from the floor, gets off the roof and moves to the window, pointing the hands.\",\"launches, rolling, trying to climb over the tree.\"\n6480,lsmdc1017_Bad_Santa-7719,15098,\"Someone shoves someone contemptuously in the leg and marches off. Later on, someone\",Someone shoves someone contemptuously in the leg and marches off.,\"Later on, someone\",gold,pulls off the ties.,\"gets members of a hotel room, different woman, wearing a copper bath.\",props herself up on a bench into a garden.,is back at the kid's house in the garage.\n6481,lsmdc3070_THE_CALL-32762,15712,\"The kidnapper casually taps the wheel as he drives. As she hits a button, light\",The kidnapper casually taps the wheel as he drives.,\"As she hits a button, light\",gold,pans on the car window.,shines on her face.,surges out from the window.,shines across her street.\n6482,lsmdc3070_THE_CALL-32762,15711,\"Realizing her location, she presses her hands to the roof, then frantically bangs on the pulsating speaker. The kidnapper\",\"Realizing her location, she presses her hands to the roof, then frantically bangs on the pulsating speaker.\",The kidnapper,gold,casually taps the wheel as he drives.,groggily comes up sharply to someone.,glides protectively over her.,looks up at the rising note.\n6483,lsmdc3070_THE_CALL-32762,15713,Someone stops her trainees behind Brooke's station. The trainees,Someone stops her trainees behind Brooke's station.,The trainees,gold,weaves on its trolley.,animatedly moves a black painting.,fly into a shadowy tattoo session.,observe as someone puts on a headset.\n6484,anetv_VIQG4W0vYxw,2005,A lot of people are gathered in a square. people,A lot of people are gathered in a square.,people,gold,stands with bumper cars up in front of them.,start to run in the street and by the bay.,stand in the daybreak oom on a court.,are standing on the sidewalk carrying a purse.\n6485,anetv_CQtu83639js,10412,A camera pans outside of a building and looks into a dark room where a man is exercising and speaking to the camera. The man continues riding on the equipment while moving faster and slower and the camera,A camera pans outside of a building and looks into a dark room where a man is exercising and speaking to the camera.,The man continues riding on the equipment while moving faster and slower and the camera,gold,pans around his movements.,pans around him when driving across a dance.,panning around the area.,looking around the room.\n6486,lsmdc0005_Chinatown-48543,14575,\"He is seated at the dinner table with his father, his mother, and his children. Curly\",\"He is seated at the dinner table with his father, his mother, and his children.\",Curly,gold,looks up in surprise.,combines their fingers and touches them together.,sit at a table opposite a large set of sinks smoking funeral fire.,are exercising with an old woman.\n6487,lsmdc0005_Chinatown-48543,14576,Curly looks up in surprise. Someone,Curly looks up in surprise.,Someone,gold,\"lights a cigarette in the room, reads, and looks away.\",looks up at the bird and gets out.,enters and closes the door.,looks up as someone steps to his feet.\n6488,anetv_crz2vi_dguk,11983,A bottle is held up to the camera. The water,A bottle is held up to the camera.,The water,gold,runs over a sponge.,begins to view the image of the man.,is poured out of a ship.,is replaced with food.\n6489,anetv_crz2vi_dguk,11982,A sink is covered in filth. A bottle,A sink is covered in filth.,A bottle,gold,is held up to the camera.,\"pops gum, cools it.\",\"is held down, etc.\",is washed with a sponge.\n6490,anetv_-wXbBZDSIa8,8219,A man is laying down on a wrestling ring. He,A man is laying down on a wrestling ring.,He,gold,pull the bull around and chase him around.,is a hammer throw.,moves down to a circle and swings in front of the camera.,stands up and picks up another man.\n6491,anetv_-wXbBZDSIa8,18087,Two men are wrestling on a ring in a court. refere,Two men are wrestling on a ring in a court.,refere,gold,is wearing a black and white t shirt and is watching the wrestlers.,is doing a routine on the track.,is playing stage in front of the men.,are standing together across the lot above the court.\n6492,anetv_-wXbBZDSIa8,8221,The man flips the other man over and he lands on his back. The ref,The man flips the other man over and he lands on his back.,The ref,gold,fights the best to fight.,starts to spin on the black elastic.,throws after the ball to go with the stick.,taps on the mat when he gets pinned.\n6493,anetv_-wXbBZDSIa8,8220,He stands up and picks up another man. The man flips the other man over and he,He stands up and picks up another man.,The man flips the other man over and he,gold,goes back to doing big tricks.,puts it back down.,collapses back onto their knees.,lands on his back.\n6494,anetv_-wXbBZDSIa8,18088,Refere is wearing a black and white t shirt and is watching the wrestlers. people,Refere is wearing a black and white t shirt and is watching the wrestlers.,people,gold,are practicing jumping side by side on the field.,are swinging in a circle and playing a game of ping pong.,are around the ring sitting on stands screaming.,are playing ping pong on a court.\n6495,anetv_OwchMqCYaF4,13786,A group of cheerleaders get in formation on a football field. They,A group of cheerleaders get in formation on a football field.,They,gold,\"jump to the event, hoops, and teammates hold their medals of triumph before they win.\",fight up and stand in the field.,spring up and accidentally drop a girl.,only play a soccer tempo.\n6496,anetv_OwchMqCYaF4,13787,They spring up and accidentally drop a girl. Other athletes,They spring up and accidentally drop a girl.,Other athletes,gold,\"are then shown flipping, jumping, running, and ultimately falling in a series of bloopers.\",are there a moment.,fall down onto the floor.,are shown boxing in an outdoor event outdoors.\n6497,anetv_OwchMqCYaF4,8521,A large group of cheerleaders are seen performing a stunt and dropping a person. Several more clips,A large group of cheerleaders are seen performing a stunt and dropping a person.,Several more clips,gold,are shown of people falling onto the ground.,are shown of people performing round dancing with one another and moving along.,are shown of people throwing sticks in the air and skate.,are shown of people performing flips and tricks around a beam while others watch on one side.\n6498,anetv_OwchMqCYaF4,8522,Several more clips are shown of people falling onto the ground. The video,Several more clips are shown of people falling onto the ground.,The video,gold,ends with a person waving to the camera again.,ends with several people fighting and jumping down a hill to land.,ends with five girls cheering and waving jump along again.,continues with more clips of people falling down.\n6499,anetv_PTkNBVyhUuo,15263,A group of people are seen standing around bow and arrows then the camera camera down a long line of people shooting bows. A man,A group of people are seen standing around bow and arrows then the camera camera down a long line of people shooting bows.,A man,gold,is then seen speaking to the camera followed by several shots of random people shooting the arrows to a target.,is seen waving a bowling puck down the field followed by several players scoring goals.,falls forward and then leading a round up the match as well as shooting the match and shooting it at the target so that one,runs through martial arts swinging in the pit and ends another man holding their arms up to the air and others walking around.\n6500,anetv_PTkNBVyhUuo,15264,A man is then seen speaking to the camera followed by Several shots of random people shooting the arrows to a target. Many people,A man is then seen speaking to the camera followed by Several shots of random people shooting the arrows to a target.,Many people,gold,watch on the sidelines and is followed by more shots of people shooting bows.,are then seen shooting paintball arrows with two gun in an arena fighting and playing with one another.,are seen playing a game of paintball hurt and smiling to one another.,speak to the camera while more riding on ropes.\n6501,lsmdc3033_HUGO-14825,3531,\"Later, people celebrate the explorers with a parade and a statue in their honor. Someone\",\"Later, people celebrate the explorers with a parade and a statue in their honor.\",Someone,gold,takes it from his hands and swaps a tag.,steps out of the foyer.,smiles as the film ends.,pushes a spot on the rope which is drawn and she holds a string.\n6502,lsmdc3033_HUGO-14825,3524,A young someone sits on the crescent moon as snow falls on the sleepers. Someone,A young someone sits on the crescent moon as snow falls on the sleepers.,Someone,gold,\"steps closer, pulling someone close to her shoulder.\",crawls across the jungle as an submerges serpent marches to the window.,waters in gentle ripples as the ocean rumbles.,smiles and places one hand on someone's shoulder.\n6503,lsmdc3033_HUGO-14825,3528,The explorers return to their capsule and huddle inside. It,The explorers return to their capsule and huddle inside.,It,gold,drops into the ocean and sinks to the bottom of the sea.,looks up and see it on the river block.,darts into the pool.,is steady and serious.\n6504,lsmdc3033_HUGO-14825,3521,\"As the capsule lands on the moon's surface and people step out, the capsule turns red. The people\",\"As the capsule lands on the moon's surface and people step out, the capsule turns red.\",The people,gold,step in as they stay in the back of the undercover motorcycle.,turn quickly within the room.,jump and wave as the distant earth rises above the horizon.,plummet face to chest.\n6505,lsmdc3033_HUGO-14825,3517,He smiles and turns a crank on his film projector as the lights dim. Everyone,He smiles and turns a crank on his film projector as the lights dim.,Everyone,gold,runs towards the front.,stares up at winner.,smiles as a black and white movie flickers on a screen.,is dragged away by the rain.\n6506,lsmdc3033_HUGO-14825,3519,A group of female sailors push a bullet - shaped capsule into a giant cannon. The women,A group of female sailors push a bullet - shaped capsule into a giant cannon.,The women,gold,\"connected to the pulled ship, magic noses cover between two children.\",reflected in the open - air panel.,wave their sailor's caps.,stand with the pen in their hands.\n6507,lsmdc3033_HUGO-14825,3526,\"On screen, the explorers flee as an alien with a man's body and a lizard's head chases them. One man\",\"On screen, the explorers flee as an alien with a man's body and a lizard's head chases them.\",One man,gold,pours some black and a tube.,\"uses an umbrella to hit the alien, who vanishes in a puff of red smoke.\",falls off his nose.,is aiming someone as well.\n6508,lsmdc3033_HUGO-14825,3530,\"The explorers escape and swim back to the surface. Later, people\",The explorers escape and swim back to the surface.,\"Later, people\",gold,look through the window at a family in the carwash.,celebrate the explorers with a parade and a statue in their honor.,\"enter the line at a small pole, which is filled with thousands of people.\",stroll along the small overlook and beside someone's coffin.\n6509,lsmdc3033_HUGO-14825,3529,It drops into the ocean and sinks to the bottom of the sea. The explorers,It drops into the ocean and sinks to the bottom of the sea.,The explorers,gold,escape and swim back to the surface.,flies a tiny blue shield from a speck as it rises over the land.,destroys several more rocks.,surface reflect the windows.\n6510,lsmdc3033_HUGO-14825,3527,\"One man uses an umbrella to hit the alien, who vanishes in a puff of red smoke. The explorers\",\"One man uses an umbrella to hit the alien, who vanishes in a puff of red smoke.\",The explorers,gold,starts slowly back away from a wave.,powder the flare into the pit.,return to their capsule and huddle inside.,fail their move before they either lights all the way to take the base of one of the pillars.\n6511,lsmdc3033_HUGO-14825,3516,Someone pulls his chair closer to a screen. He,Someone pulls his chair closer to a screen.,He,gold,smiles and turns a crank on his film projector as the lights dim.,skips frantically into the kitchen.,puts his coat on the bed to see them attending down.,turns out a hair chair.\n6512,lsmdc3033_HUGO-14825,3515,She leads them into the sitting room where someone sets up a projector. The others,She leads them into the sitting room where someone sets up a projector.,The others,gold,sit as someone threads a film through the projector.,look at the window as if shocked to notice.,move the arena down.,move in the direction of the trumpet player.\n6513,lsmdc3033_HUGO-14825,3534,He steps into the room. Someone takes someone's other hand and the women,He steps into the room.,Someone takes someone's other hand and the women,gold,lift him into the air.,continue to kiss him.,engage in a jousting match.,lead him to a sofa.\n6514,lsmdc3033_HUGO-14825,3532,Someone smiles as the film ends. He,Someone smiles as the film ends.,He,gold,flower bears his call!,strides over to the counter.,looks in a mirror.,stops turning the crank.\n6515,lsmdc3033_HUGO-14825,3518,Everyone smiles as a black and white movie flickers on a screen. A group of female sailors,Everyone smiles as a black and white movie flickers on a screen.,A group of female sailors,gold,cross the auditorium as they walk around a stone arch.,give another gulp as students whip over the girls.,push a bullet - shaped capsule into a giant cannon.,shoving some energy people into the olympic pool.\n6516,lsmdc3033_HUGO-14825,3520,The women wave their sailor's caps. Someone,The women wave their sailor's caps.,Someone,gold,shoves the steering wheel forward then drives away with the white advancing vehicle.,dry their clothes and washes their hands in the water.,\"floats to the boat in the water, then waves down at the iceberg, accompanied by someone that over to him.\",holds one hand to her chest as she watches.\n6517,lsmdc3033_HUGO-14825,3522,\"The people jump and wave as the distant Earth rises above the horizon. Later, as the explorers\",The people jump and wave as the distant Earth rises above the horizon.,\"Later, as the explorers\",gold,sleep on the moon's surface.,\"buster on, the camera looks a crooked view mass.\",\"float boards the font, netherfield hall appears and huddles over the rocks.\",\"end, the action appears.\"\n6518,lsmdc3033_HUGO-14825,3523,A bearded man peers out of the planet Saturn. A woman,A bearded man peers out of the planet Saturn.,A woman,gold,leans beside a techie with freckles on her nose.,drinks from a train.,sips water on his face.,sits on a crescent moon.\n6519,anetv_mIC02-VKqUE,8896,One man in a black and white hat introduces two young men to a fight at which point the men lock hands with many special effects and separate. The man in the red shirt,One man in a black and white hat introduces two young men to a fight at which point the men lock hands with many special effects and separate.,The man in the red shirt,gold,activates the downward pliers in his hand.,crosses his arms as his eyes light up with special effects and the men kick into the air.,stands and picks up a third ring.,walks away while lifting another massive black frisbee that runs on one side.\n6520,anetv_mIC02-VKqUE,7339,Two men then play rock paper scissors while still using special effects. One man,Two men then play rock paper scissors while still using special effects.,One man,gold,washes his hands and steps to a end.,pulls the string close to his face.,beats the other and throws him off set.,knocks a table into the mouth of the crowd and walks away.\n6521,anetv_mIC02-VKqUE,8895,Three men prepare for battle by making animated gestures with their hands and doing several martial arts kicks in place. One man in a black and white hat,Three men prepare for battle by making animated gestures with their hands and doing several martial arts kicks in place.,One man in a black and white hat,gold,comes out and begin dribbling the balls with his stick like he made goals.,\"stands on the stage, and throw back to the crowd.\",appears hitting a ball and the man drinks the leash by the man.,introduces two young men to a fight at which point the men lock hands with many special effects and separate.\n6522,anetv_NWaMWZUuTZc,17875,A man dressed in hip hop clothing begins breakdancing on a lit dancefloor while a dj is playing behind him. The man,A man dressed in hip hop clothing begins breakdancing on a lit dancefloor while a dj is playing behind him.,The man,gold,begins with the guy and gives the coach high fives to take his turn.,\"stops dancing, stands up, walks back to the dj booth, takes off his jacket and grabs a microphone.\",walks in the living room demonstrating how to demonstrate the music of the instrument.,performs a flip while panning around the violin.\n6523,anetv_NWaMWZUuTZc,13221,\"A man wearing a hat, jacket and long pants is doing a side step dance on a stage with other musical people playing behind him and flashing lights above him. The man\",\"A man wearing a hat, jacket and long pants is doing a side step dance on a stage with other musical people playing behind him and flashing lights above him.\",The man,gold,finishes playing and has his arm over the keyboard as he waits for her to get very stiff in the background.,\"is polishing the former, the people get to the floor and other men begin dancing outside together.\",performs touch the next bow extremely tight and the man begins dancing while his back on the stage.,picks up his dancing and starts to walk forward on the stage and begins to breakdance and spin on the ground multiple times.\n6524,anetv_NWaMWZUuTZc,13222,\"The man grabs a microphone then walks towards the end of the stage, someone throws him his white hat that flew off of his head and he puts it on. The now very sweaty man\",\"The man grabs a microphone then walks towards the end of the stage, someone throws him his white hat that flew off of his head and he puts it on.\",The now very sweaty man,gold,continues to do karate in the blue field backstage.,\"is leaning at the ceiling, smiling by the camera - and pushing his lips around the top of the tank.\",\"does jumps hopscotch, playing, jumping down, and speaking to the camera again.\",crosses his arms and stands in a pose and stares at the crowd.\n6525,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4291,He swims down towards the gleaming sword. He,He swims down towards the gleaming sword.,He,gold,reaches out to grasp it.,leaps over the edge of the earth.,\"stands, and drops his wand, which suddenly vanishes.\",pulls someone down hard and turns.\n6526,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4295,He hammers with his hands on the underside of the ice and kicks at it with his bear feet. A shadowy figure,He hammers with his hands on the underside of the ice and kicks at it with his bear feet.,A shadowy figure,gold,\"approaches someone, who lifts his shield.\",opens through the entrance to a glowing reflects with elaborately steel panels.,reach out and pin him behind his head.,walks over the ice above him.\n6527,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4293,\"He wrestles with the chain as it drags him back. Choking, pressed up against the ice, someone\",He wrestles with the chain as it drags him back.,\"Choking, pressed up against the ice, someone\",gold,takes the sauce from his mouth.,gives someone a vicious shake air and kicks him away.,can't find the opening where he entered the water.,pours a wild energy into it.\n6528,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4287,He still has the locket around his neck. He,He still has the locket around his neck.,He,gold,treads barefoot and wearily across the frost - covered ice until he reaches the hole.,seals it with a sheet.,look at the ground as he stomps away and sets his drawing in front of it.,is putting wall paper into his briefcase.\n6529,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4289,\"He places someone's wand on the edge and submerges his right foot in the water. Shivering, he\",He places someone's wand on the edge and submerges his right foot in the water.,\"Shivering, he\",gold,slides on the floor and shakes his head for the house.,\"gazes at the sword, takes a breath, and drops feet first through the hole in the ice.\",slices across the expanse of brooklyn and picks up.,tosses the elf to the man.\n6530,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4284,He wipes away the frost from the surface. A sword,He wipes away the frost from the surface.,A sword,gold,lies gleaming under the ice.,\"appears between them, the fish open.\",pours from a hole below his blade.,sews the dead woman.\n6531,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4286,\"At the water's edge, someone removes his clothes, except for his boxer shorts. He still\",\"At the water's edge, someone removes his clothes, except for his boxer shorts.\",He still,gold,manages to climb out of the glade.,sits at the edge of the bed.,wears a pair of leather trousers and sweatpants.,has the locket around his neck.\n6532,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4297,He is leant against a fallen tree as the figure moves away still clutching the sword. Someone,He is leant against a fallen tree as the figure moves away still clutching the sword.,Someone,gold,leans forward and grabs his glasses.,notices the flower on their hands as it reaches the base of the statues.,crouches then turns back to someone.,nods and gives a proud look.\n6533,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4290,\"Shivering, he gazes at the sword, takes a breath, and drops feet first through the hole in the ice. He\",\"Shivering, he gazes at the sword, takes a breath, and drops feet first through the hole in the ice.\",He,gold,leans his head against the strip.,eats one of the surrounding tables.,swims down towards the gleaming sword.,throws down his cup and makes it toward the escape.\n6534,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4298,\"Someone sets the locket on the fallen tree. Drenched, someone\",Someone sets the locket on the fallen tree.,\"Drenched, someone\",gold,looks him in the eye and spits.,\"stares awkwardly at someone, then looks at the ground.\",hugs someone in the rumpled photo.,stands in front of someone.\n6535,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4294,\"Choking, pressed up against the ice, someone can't find the opening where he entered the water. He\",\"Choking, pressed up against the ice, someone can't find the opening where he entered the water.\",He,gold,hammers with his hands on the underside of the ice and kicks at it with his bear feet.,\"puts his arms in the air and rotates his hips, trying to suppress it.\",begins to sink despite the water midway to the window and scrape off the rim to reveal if he is going to do it.,pulls him blankly and the clock reads less than ten minutes.\n6536,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4292,\"He reaches out to grasp it. Suddenly, he\",He reaches out to grasp it.,\"Suddenly, he\",gold,reaches for a cigarette.,bounces it out and sends the puck pieces along the parchment.,grabs the chain of the locket.,wraps it around each other gloved hand.\n6537,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94347,4285,A sword lies gleaming under the ice. Someone,A sword lies gleaming under the ice.,Someone,gold,\"looks around cautiously, then aims the wand.\",ducks down at the white flesh of the temple.,holds up the strategy box at the end of the table.,\"follows, extending his hands amid the crowd as if over high time.\"\n6538,anetv_ZbAfEWdGBzQ,1243,\"Two wrestling women are fighting in a ring. They do a suplex, and the referee\",Two wrestling women are fighting in a ring.,\"They do a suplex, and the referee\",gold,counts to three as the dark haired woman wins.,is the referee behind them.,looks at someone.,is kneeling down high a platform holding a soccer referee body.\n6539,anetv_kfiF8A8g7UE,5495,The gymnast then runs to a set of uneven bars and begins spinning herself around on the bars. She,The gymnast then runs to a set of uneven bars and begins spinning herself around on the bars.,She,gold,continues performing her routine and ends by falling on the mat.,starts working twice on her routine and moving her mohawk back and fourth.,continues when she demonstrates her sumo move on the floor before jumping down and flipping.,continues stretching and jumping grabs onto the beam and ends by turning off the beam and glides down onto the mat.\n6540,anetv_kfiF8A8g7UE,11534,A female gymnast runs up to and mounts a pair of uneven bars in front of an audience. The gymnast,A female gymnast runs up to and mounts a pair of uneven bars in front of an audience.,The gymnast,gold,performs workout on the bars and performs a balance on her upper body.,performs a gymnastics routine on the balance beam.,is unscrewing the large stance.,performs a routine on the uneven bars.\n6541,anetv_kfiF8A8g7UE,5494,A large crowd is seen sitting around a gymnasium while a gymnast stands ready on the side. The gymnast then,A large crowd is seen sitting around a gymnasium while a gymnast stands ready on the side.,The gymnast then,gold,does the forward flips and crashes people down on an mat.,begins dancing with a beam and standing a single end.,runs to a set of uneven bars and begins spinning herself around on the bars.,runs and performs several jump rope tricks around the beam while others practice behind.\n6542,anetv_kfiF8A8g7UE,11535,The gymnast performs a routine on the uneven bars. The gymnast,The gymnast performs a routine on the uneven bars.,The gymnast,gold,jumps off the beam and lands on a mat.,jumps off of the balance beam.,performs a routine on the parallel bars.,dismounts from the bars and falls down.\n6543,lsmdc0031_The_Lost_Weekend-65645,8585,The note from someone is still pinned to the door. Someone,The note from someone is still pinned to the door.,Someone,gold,saunters along the street with people who keeps hold of her.,comes from the house with the typewriter.,pulls someone toward him and takes her arm.,closes his eyes before returning to the bedroom beside him.\n6544,lsmdc0031_The_Lost_Weekend-65645,8586,Someone comes from the house with the typewriter. A steel gate,Someone comes from the house with the typewriter.,A steel gate,gold,is drawn across its entrance.,pushes as the grainy overflows.,pulls up from a tree root.,shines down on the rock.\n6545,lsmdc0031_The_Lost_Weekend-65645,8591,\"He peers through the iron gate into the dark shop, turns around. Across the street, in the same block,\",\"He peers through the iron gate into the dark shop, turns around.\",\"Across the street, in the same block,\",gold,is a large teenage police car.,get hair and equipment in one.,is the third pawn shop.,\"stopped at a door, cemetery in full styles.\"\n6546,lsmdc0031_The_Lost_Weekend-65645,8592,\"Across the street, in the same block, is the third pawn shop. Sweat\",\"Across the street, in the same block, is the third pawn shop.\",Sweat,gold,pours from his forehead.,\"- colorful shade shades revealed on a young day, as well, and someone.\",\"with mark on someone's posts, the little has had been slumped down on the bench.\",seems more and more comfortable.\n6547,lsmdc0031_The_Lost_Weekend-65645,8584,\"Someone steps over them carefully, closes the door and starts down the stairs. The note from someone\",\"Someone steps over them carefully, closes the door and starts down the stairs.\",The note from someone,gold,is still pinned to the door.,puts her note on someone's foot.,'s study reads: someone.,is silent in the doorway.\n6548,lsmdc0031_The_Lost_Weekend-65645,8588,\"He makes a pillar of the el, leans against it, shaking. When a trolley car gets out of his way, he\",\"He makes a pillar of the el, leans against it, shaking.\",\"When a trolley car gets out of his way, he\",gold,\"swings the upper, firing his gun.\",is laying there with a woman and a suit on.,continues to cross the street.,barrels dust down some stairs to the back room.\n6549,lsmdc0031_The_Lost_Weekend-65645,8590,Someone takes a bar and shakes it. He,Someone takes a bar and shakes it.,He,gold,\"peers through the iron gate into the dark shop, turns around.\",watches and dances a replica of his drink.,\"steps angrily, then pulls her free.\",\"holds it to his lips, something short and still.\"\n6550,lsmdc0031_The_Lost_Weekend-65645,8587,\"Someone stands helpless for a moment, then, feeling the woman's intrusive stare, straightens up. In the next block, miles and miles away for the way he feels,\",\"Someone stands helpless for a moment, then, feeling the woman's intrusive stare, straightens up.\",\"In the next block, miles and miles away for the way he feels,\",gold,sits on the throne just away from someone.,is another pawn shop.,someone has been someone himself.,makes a beeline for her.\n6551,anetv_wEn3nAJHhtw,2038,An individual stands facing a dog in front of an audience. the individual,An individual stands facing a dog in front of an audience.,the individual,gold,walks towards the band and stops.,performs tricks with the dog and some frisbees.,does the sit ups behind the convention.,talks with a coach then practice at the club.\n6552,anetv_wEn3nAJHhtw,6177,The black and white dog is standing at the center of the field with the girl in black shirt and short brown hair. The girl and the dog,The black and white dog is standing at the center of the field with the girl in black shirt and short brown hair.,The girl and the dog,gold,\"is tying around wagging the leash, tossing the dog with the human competes and then hop down.\",are now standing in the middle of the shanty and begin to hold as the girl leaves the house.,did some tricks where the girl moved her arms and legs while the dog moved in between them.,walk up on the other holding a selfie stick and the rest of the pool begins to dive on a green pool.\n6553,anetv_wEn3nAJHhtw,6180,The girl threw several frisbees and the dog chase after them. The audience cheered and two kids,The girl threw several frisbees and the dog chase after them.,The audience cheered and two kids,gold,stand behind the drummer.,walked in the field and picked up the frisbees while the dog would n't let go of one frisbee.,talk and everyone watching her do the same.,run around and walk with them.\n6554,anetv_wEn3nAJHhtw,6178,The girl and the dog did some tricks where the girl moved her arms and legs while the dog moved in between them. The girl,The girl and the dog did some tricks where the girl moved her arms and legs while the dog moved in between them.,The girl,gold,walked over to begin the castle and shimmy on the horse.,jumped into the chair and started screaming once.,\"did some tricks with frisbee and then threw the frisbee and the dog chase after it, and returned it to the girl.\",clips a bush behind the man in a scarf at a danced belt and disappeared from the well.\n6555,anetv_wEn3nAJHhtw,6179,\"The girl did some tricks with frisbee and then threw the frisbee and the dog chase after it, and returned it to the girl. The girl\",\"The girl did some tricks with frisbee and then threw the frisbee and the dog chase after it, and returned it to the girl.\",The girl,gold,threw several frisbees and the dog chase after them.,steps up and threw the frisbee in the middle of the room and picked it up in the air.,looked at the can and tried to get the frisbee that come out on the field.,mixes the frisbee with the foot dog leash and while the dog behind her and bouncing it.\n6556,anetv_wEn3nAJHhtw,2039,The individual performs tricks with the dog and some frisbees. Several individuals,The individual performs tricks with the dog and some frisbees.,Several individuals,gold,are overlaid in rafts and so the jumps on top of the plain.,run across the field as the first individual finishes the routine.,sit in front of the young and slide down the country lane.,play the drums and catch them with their dirt sticks.\n6557,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5530,\"Someone has transformed to look exactly like someone. Reluctantly, someone\",Someone has transformed to look exactly like someone.,\"Reluctantly, someone\",gold,\"pauses for a moment, then turns and walks to the window.\",sits in his seat.,\"folded the grail diary, struggles for breath, then presses the paper to his stomach and sits over it.\",slides the sword into her bottomless bag.\n6558,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5533,\"Someone holds out his hand, palm upwards. People\",\"Someone holds out his hand, palm upwards.\",People,gold,watch in terror as people approach fearfully.,grasp his outstretched hand.,\"are thousands of survivors, watching, in horror.\",leave the deposit off the building's tires.\n6559,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5535,They apparate in a dark and gloomy street by someone's Bank. A cloaked man,They apparate in a dark and gloomy street by someone's Bank.,A cloaked man,gold,sits from the police car.,joins a bowler on the way to the edge of the kitchen.,\"spots someone, who walks ahead of the others.\",with a torch takes his car view through the air.\n6560,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5532,\"She joins people, who is disguised as a long - haired, bearded someone. Someone\",\"She joins people, who is disguised as a long - haired, bearded someone.\",Someone,gold,\"looks down at someone, whose legs folded.\",opens the door to his table and speaks down.,eyes her open handwritten turkey.,\"holds out his hand, palm upwards.\"\n6561,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5531,\"Reluctantly, someone slides the sword into her bottomless bag. She\",\"Reluctantly, someone slides the sword into her bottomless bag.\",She,gold,peers at her reflection on the blank page as her lips twitch.,looks at the warmth.,runs across the stage and takes off her cloak.,\"joins people, who is disguised as a long - haired, bearded someone.\"\n6562,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5528,\"Someone holds a long strand of curling, black hair. People\",\"Someone holds a long strand of curling, black hair.\",People,gold,faces a bulky black heart python.,\"are in someone's hair, dress, jacket, and scarf.\",are standing by someone's grave when someone approaches them.,hold aloft as if someone is moving beside his son.\n6563,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5534,Someone places his hand on the others. They,Someone places his hand on the others.,They,gold,apparate in a dark and gloomy street by someone's bank.,watch a couple horseback arrows shot.,vomit on the side and exit the glade.,pull her across the bridge deck over the inspector.\n6564,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99645,5529,People are standing by someone's grave when someone approaches them. Someone,People are standing by someone's grave when someone approaches them.,Someone,gold,\"hurriedly brings it to her chest and holds hold of the box, then closes his mother's sleeve.\",has transformed to look exactly like someone.,\"seems happy, happy, not knowing why.\",\"walks past him, puts on his shoes and presses his dry hand to his neck.\"\n6565,anetv_iYH0Ol3xIZU,18887,\"A man in a white asian inspired outfit stands outdoors, surrounded by trees, on the grass, and performs several slow martial arts and meditation moves. The scene\",\"A man in a white asian inspired outfit stands outdoors, surrounded by trees, on the grass, and performs several slow martial arts and meditation moves.\",The scene,gold,is running skiing and then hands on the bars then starts to stride at a black background.,begins with a bare green patch of cut grass surrounded by tall trees and a building in the background beyond the foliage.,tutorial for how you can do next trick describes 2 webs for the first time.,more fades as it passes by clouds and startled lines of people flying towards the sky.\n6566,anetv_vcRCId1-xdA,6346,A woman is seen holding a drink on stage speaking into a mic as well as the audience. The woman,A woman is seen holding a drink on stage speaking into a mic as well as the audience.,The woman,gold,continues riding along and coverage of the women playing cartwheel and animals.,continues speaking and looking around the audience while taking sips of her drink and putting it down.,continues speaking while the camera pans to glass speaking to the choir.,continues speaking while the camera closes around her and begins playing the instrument on the side.\n6567,lsmdc3041_JUST_GO_WITH_IT-18337,16780,Now stylish guests attend a hip party at a mansion overlooking the ocean. Someone and someone,Now stylish guests attend a hip party at a mansion overlooking the ocean.,Someone and someone,gold,stroll where people kiss.,stare ahead dejectedly as someone rides in the water.,\"weave through the glossy surface, bathed in sunshine.\",\"approach a man with an unnaturally stiff, smooth face.\"\n6568,lsmdc1042_Up_In_The_Air-88347,16841,\"He zips up the suitcase, pulls out its handle, and drags it out of the room, switching off the light as he goes. At an airport, someone\",\"He zips up the suitcase, pulls out its handle, and drags it out of the room, switching off the light as he goes.\",\"At an airport, someone\",gold,drops off a rental car.,drops cover on an adjoining sofa.,approaches an apartment to his building.,comes halfway out some paperwork on the pencil.\n6569,lsmdc1042_Up_In_The_Air-88347,16844,Someone puts his case on a table and grabs two gray plastic trays. He then,Someone puts his case on a table and grabs two gray plastic trays.,He then,gold,\"puts his laptop, his shoes and his suit jacket into the trays.\",straightens the silver - grate bars and peers at his reflection.,\"opens them, harbor it to someone.\",folds a sacks in the trunk and shoulders it.\n6570,lsmdc1042_Up_In_The_Air-88347,16850,He watches a flight attendant walk down the aisle pushing a trolley. She,He watches a flight attendant walk down the aisle pushing a trolley.,She,gold,\"pauses, closing the door.\",hands a passenger a drink.,puts the phone down and pats his seat.,flips the book shut.\n6571,lsmdc1042_Up_In_The_Air-88347,16854,Someone unzips a backpack and stands behind a lectern. A few delegates,Someone unzips a backpack and stands behind a lectern.,A few delegates,gold,\"wander past them, their hands in the pockets.\",sit at long tables.,\"creep out before them, searching in concern as someone approaches the egg.\",are shown at the kitchen.\n6572,lsmdc1042_Up_In_The_Air-88347,16846,A uniformed security man checks the pass. Someone,A uniformed security man checks the pass.,Someone,gold,\"puts his jacket and shoes back on, zips up his case, pulls out the handle, and walks off with it.\",gets out of his car and trudges out of his path.,dives indoors and stands in front of a crowd gathers.,takes his hat on.\n6573,lsmdc1042_Up_In_The_Air-88347,16852,\"Someone looks up at her, frowning. She\",\"Someone looks up at her, frowning.\",She,gold,puts the can of soda back on the trolley and walks on.,\"plants her hands on his neck, and pets someone so that she could be hard romantic.\",\"raises her brows as someone holds him close, her back to him; someone stares fondly at her mother.\",opens the door to find them locked on an open garage door.\n6574,lsmdc1042_Up_In_The_Air-88347,16851,She hands a passenger a drink. Someone,She hands a passenger a drink.,Someone,gold,follows someone as the mustang drives away.,\"looks over his shoulder, then pauses for a moment then turns toward the projector.\",glances down at her pie standing at the end.,\"looks up at her, frowning.\"\n6575,lsmdc1042_Up_In_The_Air-88347,16848,\"A jet flies above a blanket of fluffy, white clouds. Someone\",\"A jet flies above a blanket of fluffy, white clouds.\",Someone,gold,sits in front of the clockwork's awning.,climbs into a mountain concealed under a state bible.,sits in first class.,\"stares at snowy, then turns to face someone.\"\n6576,lsmdc1042_Up_In_The_Air-88347,16840,\"In a hotel room, someone packs a suitcase with military precision. He\",\"In a hotel room, someone packs a suitcase with military precision.\",He,gold,squeezes the end of the cash into the lock and drops the purse.,\"studies a pouch full of ties, closes it, and puts it in the case.\",bows then heads out of the house.,\"stands for a moment from the room, and cautiously moves down the hallway.\"\n6577,lsmdc1042_Up_In_The_Air-88347,16845,\"He then puts his laptop, his shoes and his suit jacket into the trays. He\",\"He then puts his laptop, his shoes and his suit jacket into the trays.\",He,gold,shows white pictures sitting in a station wagon.,\"wraps it around the hook, puts down the knife and starts chopping leaves.\",\"steps up to the walk - through metal detector, holds up his boarding pass and walks through.\",\"gets up at the top of the stairs, waiting for him to come to go.\"\n6578,lsmdc1042_Up_In_The_Air-88347,16847,\"Someone puts his jacket and shoes back on, zips up his case, pulls out the handle, and walks off with it. A jet\",\"Someone puts his jacket and shoes back on, zips up his case, pulls out the handle, and walks off with it.\",A jet,gold,\"flies down to the pavement as he runs past a thick wake of pipes, pumping air.\",then takes off into someone's room and gets out of the shower.,\"flies above a blanket of fluffy, white clouds.\",jogs down the 15 - inch stretch board.\n6579,lsmdc1042_Up_In_The_Air-88347,16843,\"Someone grabs his boarding pass and walks up to the security desk, where he shows the pass to a security guard. Someone\",\"Someone grabs his boarding pass and walks up to the security desk, where he shows the pass to a security guard.\",Someone,gold,puts his case on a table and grabs two gray plastic trays.,bursts into the truck mirror and catches the rocket heading straight toward the first tower.,shoots the keyboard from its hinges.,\"looks into someone, waiting for him to leave.\"\n6580,lsmdc1042_Up_In_The_Air-88347,16849,Someone sits in First Class. He,Someone sits in First Class.,He,gold,puts his hands up and works.,watches a flight attendant walk down the aisle pushing a trolley.,wanders down someone toward a pig.,taps them on her cheek.\n6581,lsmdc1042_Up_In_The_Air-88347,16842,He walks up to the First Class priority access desk. Someone,He walks up to the First Class priority access desk.,Someone,gold,holds a set of wooden slats as he passes the contents of the bank.,\"pushes him, chopping alongside the aisles.\",\"grabs his boarding pass and walks up to the security desk, where he shows the pass to a security guard.\",moves a line back through the open bedroom doors.\n6582,lsmdc1042_Up_In_The_Air-88347,16853,The jet comes in to land. Someone,The jet comes in to land.,Someone,gold,unzips a backpack and stands behind a lectern.,pushes a corner of the way causing it to drop down the landing.,fires the jet spout crew on the plane's hood.,pauses and shines his hands over the disgruntled teen as he watches someone.\n6583,lsmdc0001_American_Beauty-45597,7120,People stand at the edge of the parking lot. She,People stand at the edge of the parking lot.,She,gold,\"comes to look at the object, using a victorian statue to be back and forth.\",\"crosses reluctantly toward her parents, followed by someone.\",follows him in a trench coat.,gets off his feet before noticing a arquillian house.\n6584,lsmdc0001_American_Beauty-45597,7119,People come out of the gym. People,People come out of the gym.,People,gold,are walking over a dog on the edge of a table.,see the gopro blossom on a stone cavern in the woods.,are in the mountain playing the game.,stand at the edge of the parking lot.\n6585,lsmdc0001_American_Beauty-45597,7118,The game is long over. People,The game is long over.,People,gold,shouting and they bring the people over.,begin to walk up to them.,form on the screen showing the crimson demonstration.,come out of the gym.\n6586,lsmdc0001_American_Beauty-45597,7116,\"Someone, fully clothed, is once again surrounded by the other girls. The high school band plays its last note, the Dancing Spartanettes\",\"Someone, fully clothed, is once again surrounded by the other girls.\",\"The high school band plays its last note, the Dancing Spartanettes\",gold,in a wicker - selection performance.,\"uncovered rude reference screens, technique, and various matters.\",\"strike their final pose, and the audience.\",are twelve out on a stage.\n6587,lsmdc0001_American_Beauty-45597,7115,\"She pulls her uniform open and a profusion of red rose petals spill forth. Someone, fully clothed,\",She pulls her uniform open and a profusion of red rose petals spill forth.,\"Someone, fully clothed,\",gold,stands up and approaches the empty floor.,is once again surrounded by the other girls.,comes home to bespectacled someone inside a toilet bowl.,\"sits alone in her pajamas, turns in the bathroom.\"\n6588,lsmdc0001_American_Beauty-45597,7117,\"The high school band plays its last note, the Dancing Spartanettes strike their final pose, and the audience. Someone\",\"The high school band plays its last note, the Dancing Spartanettes strike their final pose, and the audience.\",Someone,gold,\"just sits there, unable to take his eyes off someone.\",boxed in just a little screen in the middle of the hut.,\"dances as a subway, packed club art of stage, and spectators.\",speeds over with cover.\n6589,anetv_XC6tvSBS0PA,12031,\"Next, a warning screen appears saying not to swim without goggles as the girl does the exact opposite. After, the girl\",\"Next, a warning screen appears saying not to swim without goggles as the girl does the exact opposite.\",\"After, the girl\",gold,is shown with an orange mermaid tail on swimming under water as she joins another mermaid.,takes pictures of a small glance from every angle of various swimming for no living.,\"does a safety stand ups with her legs, then turn around.\",continues riding down a steep hill in an competitive location doing the same thing sports.\n6590,anetv_XC6tvSBS0PA,12029,A young lady wearing a colorful swimsuit is underwater swimming in a pool. A screen flashes and,A young lady wearing a colorful swimsuit is underwater swimming in a pool.,A screen flashes and,gold,a person reptile up floating on the beach.,shows step two as the girl demonstrates swimming with your feet close together.,happens to give dreams about the version.,there is images of the two hobbits now talking in front of the camera.\n6591,anetv_XC6tvSBS0PA,12030,\"A screen flashes and shows step two as the girl demonstrates swimming with your feet close together. Next, a warning screen\",A screen flashes and shows step two as the girl demonstrates swimming with your feet close together.,\"Next, a warning screen\",gold,appears with the logo outro.,appears saying not to swim without goggles as the girl does the exact opposite.,appears continuously and shows her behind the net.,appears displays a white plate.\n6592,lsmdc0005_Chinatown-48148,1901,\"Someone has been sitting on a wooden bench, smoking and listening. At this question, he\",\"Someone has been sitting on a wooden bench, smoking and listening.\",\"At this question, he\",gold,runs up and down the stairs of his room.,slaps himself to the other side of the bed and walks slowly into the room.,can't see the key on the deed.,rises and looks through the doorway.\n6593,lsmdc0005_Chinatown-48148,1898,They start to pull the body into the skiff. Someone,They start to pull the body into the skiff.,Someone,gold,puts the product into a round bottle and the pink parka.,has the sheet drawn back.,\"comes close to him, guiding the gesture, keeping a cautious look.\",stands and gazes underneath the dolphin.\n6594,lsmdc0005_Chinatown-48148,1900,People move slowly toward the door. Someone,People move slowly toward the door.,Someone,gold,\"looks intently at the book as they hang underneath the wall, smiling with the same attitude of someone.\",enters and steps back with difficulty and they are in reality.,struggles to his feet and slides on his knees at the front of the room.,looks at someone but does n't know how to answer him.\n6595,lsmdc0005_Chinatown-48148,1893,Someone points down to the reservoir. A couple of men using poles with hooks,Someone points down to the reservoir.,A couple of men using poles with hooks,gold,give the chain and start over as they try to pole a web.,are shown knocking wall tiles on the side.,drive them all their way down onto the road.,are fishing about in the water.\n6596,lsmdc0005_Chinatown-48148,1899,\"People move a few feet to one side and whisper, almost as though they were trying to keep the corpse from hearing them. People\",\"People move a few feet to one side and whisper, almost as though they were trying to keep the corpse from hearing them.\",People,gold,move slowly toward the door.,kicks at the sound of the hag.,are lying on one side across the table in utter despair.,come into the store.\n6597,lsmdc0005_Chinatown-48148,1895,It can be seen that one of them has hooked something. The other man,It can be seen that one of them has hooked something.,The other man,gold,\"hooks it, too.\",looks frantically way between his limbs and pushing themselves along again.,moves out of the room unnoticed.,has taken off and put in a wood pot.\n6598,lsmdc0005_Chinatown-48148,1897,\"They pull, revealing the soaking back of a man's coat. They\",\"They pull, revealing the soaking back of a man's coat.\",They,gold,start to pull the body into the skiff.,is filling for a health while standing in front of pumpkins.,finish it off and look over a mirror in another room.,\"go back, feet in the water and spoon the time.\"\n6599,lsmdc0005_Chinatown-48148,1894,A couple of men using poles with hooks are fishing about in the water. It,A couple of men using poles with hooks are fishing about in the water.,It,gold,can be seen that one of them has hooked something.,laying on a boat then getting backside and other equipment.,put onto planet finish line to move off.,is quiet and melts liquid on the feet.\n6600,lsmdc0005_Chinatown-48148,1896,\"The other man hooks it, too. They\",\"The other man hooks it, too.\",They,gold,\"pull, revealing the soaking back of a man's coat.\",look around the room and which title snaps to the right.,explode in circles in a pile of metal pieces.,phoenix smacks his knee.\n6601,lsmdc0005_Chinatown-48148,1902,\"At this question, he rises and looks through the doorway. Someone\",\"At this question, he rises and looks through the doorway.\",Someone,gold,\"is standing up on a rooftop above a rise from the floor, but he can't get into it.\",\"sees him, ignores him.\",looks up at someone with blue eyes.,enters through the trap door.\n6602,anetv_s_QH-5G33Fw,103,They engage in a game of volleyball. They,They engage in a game of volleyball.,They,gold,hit a ball back and forth over a net.,lay their mother on.,play a game of curling.,hits several pins and goes over the net.\n6603,anetv_s_QH-5G33Fw,16745,The man continues taking over by pushing his team mate down and jumping on her back. He,The man continues taking over by pushing his team mate down and jumping on her back.,He,gold,spikes the ball in the end and cheers with the woman.,smiles to the camera as the girl rounds a bend.,shows up as the same team against the green team continues to cheer after cheerleading.,pulls the man by while someone stretches his arms on his head.\n6604,anetv_s_QH-5G33Fw,102,A man and woman are facing off on a beach. They,A man and woman are facing off on a beach.,They,gold,engage in a game of volleyball.,rides through a river and out of the water.,begin to get deep into rafts and begin crashing side to side.,begin going down a steep track on their side.\n6605,anetv_Vh4TxFOCNM8,4237,\"A player wearing black uniform passes the ball to a playmate who pass to other player, then the teams continue playing. A player shoots the ball to the goal, but the gold keeper\",\"A player wearing black uniform passes the ball to a playmate who pass to other player, then the teams continue playing.\",\"A player shoots the ball to the goal, but the gold keeper\",gold,continues moving toward the goal and shoots it.,catch it in his hands.,appears at the end of the court.,hits a goal with the stick.\n6606,anetv_Vh4TxFOCNM8,12780,The people kick the ball up and down the court in front of a large audience. The men,The people kick the ball up and down the court in front of a large audience.,The men,gold,continue playing polo together and celebrating as the couple continue leading the game.,continue throwing the ball around together while others watch on the side.,continue to pose as they glide and dance around one another.,continue to kick the ball around.\n6607,anetv_Vh4TxFOCNM8,12779,A large group of people are seen playing a soccer match in an indoor field. The people,A large group of people are seen playing a soccer match in an indoor field.,The people,gold,take turns to play soccer on the beach while holding up and walking around the field.,speak to one another while the conductor leads in.,kick the ball up and down the court in front of a large audience.,continue to play with one another and one after another.\n6608,anetv_G-xh30e4s8E,19509,His fingers position over the holes. He,His fingers position over the holes.,He,gold,\"twists open his hands, and spreads them over the roiling flames which appear.\",returns and uses the tool.,is wearing sunglasses as he plays.,crawls backwards onto more wires which revealing the wire railings.\n6609,anetv_G-xh30e4s8E,19508,A man sits in a room in front of a flag. He,A man sits in a room in front of a flag.,He,gold,tries to run steps on a piece of rope.,is playing a black wind instrument.,\"dances, swaying himself as she dances.\",begins to follow the girl who eats a meal.\n6610,lsmdc1010_TITANIC-78173,5897,\"Beyond the wall behind her, deep below the ocean surface, the broken Titanic lies on the sea floor. Sediment\",\"Beyond the wall behind her, deep below the ocean surface, the broken Titanic lies on the sea floor.\",Sediment,gold,\"stands by the frowning silvery, which ends with pale fluid.\",\", she looks around the people at the counter.\",\"rains down like snow over the wreck, which appears covered in a layer of grayish ash.\",\"uncoils the ship's pirates, waving his arm at the toy titanic, which still rotating flies.\"\n6611,lsmdc1010_TITANIC-78173,5901,\"He turns and smiles, then extends his hand. Wearing a sparkling white gown and choker, young someone\",\"He turns and smiles, then extends his hand.\",\"Wearing a sparkling white gown and choker, young someone\",gold,hurry over a monk painted face.,beams as she takes someone's hand.,pulls a shoe from his pocket.,steadies herself with a shaved clamp.\n6612,lsmdc1010_TITANIC-78173,5892,\"In one picture, someone stands beside a large fish. In another, she\",\"In one picture, someone stands beside a large fish.\",\"In another, she\",gold,\"examines the giant creature with a small heart, someone.\",tilts her head miserably.,reappears beneath the moon.,sits on an elephant's back.\n6613,lsmdc1010_TITANIC-78173,5881,\"Staring at someone, someone smiles and shakes her he head. He\",\"Staring at someone, someone smiles and shakes her he head.\",He,gold,turns and watches lights glint off the surface of rolling waves.,falls down in front of someone.,slams someone onto the bed.,fires at some water.\n6614,lsmdc1010_TITANIC-78173,5878,\"The submersibles rise, leaving the wreck and darkness. At the surface, crewmen\",\"The submersibles rise, leaving the wreck and darkness.\",\"At the surface, crewmen\",gold,peel out of the water and show people.,enjoy adorn the staircase.,work to recover the submersibles.,hover silhouetted in the dim light of the dust agitated figure.\n6615,lsmdc1010_TITANIC-78173,5889,\"Back on the deck of someone, someone tosses the diamond necklace into the sea. As the necklace sinks, someone\",\"Back on the deck of someone, someone tosses the diamond necklace into the sea.\",\"As the necklace sinks, someone\",gold,spots a gypsy vehicle.,pulls out two tickets and drops them.,hands someone a bouquet of flowers.,smiles and exhales deeply.\n6616,lsmdc1010_TITANIC-78173,5884,\"She grips the railing with one hand, and then pulls herself up onto the bottom rung. She\",\"She grips the railing with one hand, and then pulls herself up onto the bottom rung.\",She,gold,\"turns to look at the water, then glides away into the ocean.\",is hammering cleaner on the door.,stares down into the water.,hurries back inside and drops the baby.\n6617,lsmdc1010_TITANIC-78173,5902,\"Wearing a sparkling white gown and choker, young someone beams as she takes someone's hand. They\",\"Wearing a sparkling white gown and choker, young someone beams as she takes someone's hand.\",They,gold,\"look into each other's eyes and kiss, as everyone applauds.\",walk along the beach.,exchange a brief look.,pass her form the crowd.\n6618,lsmdc1010_TITANIC-78173,5896,\"Someone lies in her bed with her eyes closed. Beyond the wall behind her, deep below the ocean surface, the broken Titanic\",Someone lies in her bed with her eyes closed.,\"Beyond the wall behind her, deep below the ocean surface, the broken Titanic\",gold,lies on the sea floor.,emerges from the chamber.,is scattered in a snow pipe.,is thickly scorched by its mother.\n6619,lsmdc1010_TITANIC-78173,5886,\"She unclasps her left hand, revealing the Heart of the Ocean. On the deck of the Carpathia, young someone\",\"She unclasps her left hand, revealing the Heart of the Ocean.\",\"On the deck of the Carpathia, young someone\",gold,stands in the rain and stares at the statue of liberty.,gets free of a water funnel as she carries her hair together in creating more foliage to climb out of the water.,\"stands on her feet with a fire oven, his hand mounted above the hole.\",\"helps someone in a choke bowl, into her athletic gown.\"\n6620,lsmdc1010_TITANIC-78173,5898,\"Bright light suddenly shines from within the Titanic and illuminates the corridor, now restored to its former glory. Inside, passengers and crew members\",\"Bright light suddenly shines from within the Titanic and illuminates the corridor, now restored to its former glory.\",\"Inside, passengers and crew members\",gold,\"crack up, then her in bed.\",stand together and smile.,raise their dark swords.,walk by the vehicles.\n6621,lsmdc1010_TITANIC-78173,5903,\"They look into each other's eyes and kiss, as everyone applauds. Bright white light\",\"They look into each other's eyes and kiss, as everyone applauds.\",Bright white light,gold,passes by his white seamen.,shines on the door's windows.,shines down on them through the dome skylight.,shines across the hulking sky.\n6622,lsmdc1010_TITANIC-78173,5882,\"He turns and watches lights glint off the surface of rolling waves. Clutching her hands over her heart, someone\",He turns and watches lights glint off the surface of rolling waves.,\"Clutching her hands over her heart, someone\",gold,\"heads off, leaving someone alone alone with a girl as he snips the bar, then sitting at the edge.\",wraps her arms around someone as they drive away.,shakes the plastic out to camera.,walks to a railing at the back of the ship.\n6623,lsmdc1010_TITANIC-78173,5893,\"In another, she sits on an elephant's back. In a third, someone\",\"In another, she sits on an elephant's back.\",\"In a third, someone\",gold,\"uses the trim to smooth someone's hair, revealing orange feathers over her hair.\",takes someone's eye and gazes out of the window at someone.,wears a long scarf around her neck as she poses beside a biplane.,wears one faceless ripped vest.\n6624,lsmdc1010_TITANIC-78173,5880,\"Standing with someone on the research, someone sniffs a cigar, then throws it into the water. Staring at someone, someone\",\"Standing with someone on the research, someone sniffs a cigar, then throws it into the water.\",\"Staring at someone, someone\",gold,steps up a ladder and eyes a small partially boy.,writes on the documents.,smiles and shakes her he head.,reaches out to fuss over the music.\n6625,lsmdc1010_TITANIC-78173,5877,\"On the ocean floor, the two submersibles shine their lights on the Titanic's remains. The submersibles\",\"On the ocean floor, the two submersibles shine their lights on the Titanic's remains.\",The submersibles,gold,look over a gold gazebo.,disappear and rotate from the morning sun.,rise from the second floor.,\"rise, leaving the wreck and darkness.\"\n6626,lsmdc1010_TITANIC-78173,5887,\"On the deck of the Carpathia, young someone stands in the rain and stares at the Statue of Liberty. Frowning, she\",\"On the deck of the Carpathia, young someone stands in the rain and stares at the Statue of Liberty.\",\"Frowning, she\",gold,looks down and pulls the heart of the ocean out of her jacket pocket.,sits in a chair near the open doorway.,answers her cell with a grim look.,turns and looks up at the joint case which he is lying against on another wooden bar.\n6627,lsmdc1010_TITANIC-78173,5899,\"Inside, passengers and crew members stand together and smile. Standing at the bottom of the stairs, someone\",\"Inside, passengers and crew members stand together and smile.\",\"Standing at the bottom of the stairs, someone\",gold,cuts the tiller webbing as he reads the message.,nods and then moves aside.,watches on the monitor.,\"steps out, then raises her glass in front of her, then taps the elevator button on the entire pipe.\"\n6628,lsmdc1010_TITANIC-78173,5888,\"Frowning, she looks down and pulls the Heart of the Ocean out of her jacket pocket. Back on the deck of someone, someone\",\"Frowning, she looks down and pulls the Heart of the Ocean out of her jacket pocket.\",\"Back on the deck of someone, someone\",gold,stands alone at the side of the ships steeple.,tosses the diamond necklace into the sea.,answers the phone with a smile.,pushes her way past the passengers.\n6629,lsmdc1010_TITANIC-78173,5900,\"Standing at the bottom of the stairs, someone nods and then moves aside. He\",\"Standing at the bottom of the stairs, someone nods and then moves aside.\",He,gold,steps from the tightrope for a moment and pauses to figure it out of a skyscraper.,squats in a game of rock and straightens his hair before smacking someone into his hand.,\"turns and smiles, then extends his hand.\",\"broodingly on his cheek, then moves casually to his desk and looks around nervously.\"\n6630,lsmdc1010_TITANIC-78173,5891,\"Later, someone sleeps in her berth beside her collection of framed photographs. In one picture, someone\",\"Later, someone sleeps in her berth beside her collection of framed photographs.\",\"In one picture, someone\",gold,stands beside a large fish.,smears tooth cream down his cheek.,gazes down at her hand.,shows the leaders with scary male photos.\n6631,lsmdc1010_TITANIC-78173,5883,\"Clutching her hands over her heart, someone walks to a railing at the back of the ship. She\",\"Clutching her hands over her heart, someone walks to a railing at the back of the ship.\",She,gold,\"climbs up on him, horizontal a sailboat platform.\",end it in the chamber.,falls ferociously on the ground as classical plumes smoke shooting.,\"grips the railing with one hand, and then pulls herself up onto the bottom rung.\"\n6632,lsmdc1010_TITANIC-78173,5890,\"As the necklace sinks, someone smiles and exhales deeply. Later, someone\",\"As the necklace sinks, someone smiles and exhales deeply.\",\"Later, someone\",gold,regards someone with dull eyes.,marches along the promenade.,gives the redhead a braid.,sleeps in her berth beside her collection of framed photographs.\n6633,anetv_AR-VPPtV7ag,19450,A man is shown sitting down in front of a tree shuffling cards when someone hands him a drink. He then,A man is shown sitting down in front of a tree shuffling cards when someone hands him a drink.,He then,gold,takes off one glasses and shows them more beer to the camera.,celebrates his successful technique and moves back to the basketball area of the ball and picks it up.,cups some ice and drinks the beer while speaking into his microphone.,chugs the drink very quickly and points to the one who threw the drink.\n6634,lsmdc0020_Raising_Arizona-57993,12900,The front door has a holly wreath on it. Five three - year - olds in their pajamas,The front door has a holly wreath on it.,Five three - year - olds in their pajamas,gold,\", one in an apartment.\",comes from right into the road with a flashing decorate line.,\"appear, snuggles with airy the siren's sunshine.\",are opening presents around a tree as someone and florence look on.\n6635,lsmdc0020_Raising_Arizona-57993,12903,\"Someone is grinning and talking with his hands cupped in front of him, as when he told someone about someone who almost stepped in the pile of shit. The trooper, in crash helmet and dark sunglasses,\",\"Someone is grinning and talking with his hands cupped in front of him, as when he told someone about someone who almost stepped in the pile of shit.\",\"The trooper, in crash helmet and dark sunglasses,\",gold,is listening tight - lipped and stone - faced as someone finishes his story and slaps his knee.,\"walks up and glances at someone out of the window across the street, leaving the car.\",\"looks up, amazed that the mailman has been tipped overboard.\",pulls the hood up and rains down on one end of the car bar.\n6636,lsmdc0020_Raising_Arizona-57993,12892,He snaps off the lights. He,He snaps off the lights.,He,gold,wraps decorations on them as he mows.,\"strikes the match with his wooden mallet, then points at the ceiling.\",has disappeared into the hall.,lifts his glass from the nearby container and glares.\n6637,lsmdc0020_Raising_Arizona-57993,12905,It sits on a tee in the middle of a football field. He,It sits on a tee in the middle of a football field.,He,gold,takes a second puff.,gets up and turns away.,demonstrates how to block the lacrosse racket.,catches the ball and starts running.\n6638,lsmdc0020_Raising_Arizona-57993,12896,In the middle background of the extreme long shot two men are walking across the field. We,In the middle background of the extreme long shot two men are walking across the field.,We,gold,see that they are people.,see a red race start and a man with white apron watches in the middle of the court.,see men sailing a little while driving down a hill.,are walking in red bumps on the beach volleyball court.\n6639,lsmdc0020_Raising_Arizona-57993,12906,He is skillfully eluding and stiff - arming tacklers. He,He is skillfully eluding and stiff - arming tacklers.,He,gold,sautes scotty the distance.,reaches the end zone and triumphantly spikes the football.,picks up the grimhold.,extend his hands high his.\n6640,lsmdc0020_Raising_Arizona-57993,12895,\"We are floating in over the field, abutting the prison, that people popped out of. In the middle background of the extreme long shot two men\",\"We are floating in over the field, abutting the prison, that people popped out of.\",In the middle background of the extreme long shot two men,gold,are seen inside a house performance.,are walking across the field.,stand with other is still hurling or throwing a ball.,stand for someone to pay them.\n6641,lsmdc0020_Raising_Arizona-57993,12899,They are approaching the hole in the ground. Someone,They are approaching the hole in the ground.,Someone,gold,throws it.,is alone on a picturesque farm town.,pulls the pin away as someone falls.,is starting to climb into the hole.\n6642,lsmdc0020_Raising_Arizona-57993,12901,We have been isolating in on one of the children peeling the wrappings off a package marked to someone. Inside,We have been isolating in on one of the children peeling the wrappings off a package marked to someone.,Inside,gold,explains some more dollar to keep it back in the present.,is a picture of someone someone.,is a shiny red plastic football.,\", the vegetables are in the counter.\"\n6643,lsmdc0020_Raising_Arizona-57993,12894,We start to crane down. We,We start to crane down.,We,gold,saloon stands outside.,\"are floating in over the field, abutting the prison, that people popped out of.\",see small snowball throw towards the boy in military suit.,see someone resting in the vault podium.\n6644,lsmdc0020_Raising_Arizona-57993,12902,Inside is a shiny red plastic football. Someone,Inside is a shiny red plastic football.,Someone,gold,\"burst out and, as someone takes a lead and finally someone, walks out of frame.\",sticks his tongue out from under his embossed mailbox.,\"leans down, finding that it displays only a few inches now.\",is leaning out the driver's window of the car talking to the state trooper who stands facing him.\n6645,lsmdc0020_Raising_Arizona-57993,12898,Both are still dyed blue. They,Both are still dyed blue.,They,gold,take only the bomb.,throng lingering and laughter hail.,are approaching the hole in the ground.,stand in the opposite cars.\n6646,anetv_C_fqFJyf5SU,9103,A woman is seen standing in front of the camera holding onto fire. Another woman steps beside the first and the two,A woman is seen standing in front of the camera holding onto fire.,Another woman steps beside the first and the two,gold,begin performing a fire routine with one another.,continue to slide down the whole.,begin playing their instruments back and fourth.,begins swimming across the ice.\n6647,anetv_C_fqFJyf5SU,9104,Another woman steps beside the first and the two begin performing a fire routine with one another. A man hands them objects to light and the woman,Another woman steps beside the first and the two begin performing a fire routine with one another.,A man hands them objects to light and the woman,gold,continue dancing and spinning around with the fire.,ends the second in the process.,continues taking her contacts lens and leads into her standing in the end.,dives into the abyss and the woman approaches in the swing.\n6648,lsmdc0017_Pianist-56068,4900,\"People walk up and down. A young man, beside her, whispers to her, but she\",People walk up and down.,\"A young man, beside her, whispers to her, but she\",gold,cuts to him.,does not seem to take in what he is saying.,could n't win him.,\"pauses, addressing her colleagues.\"\n6649,lsmdc0017_Pianist-56068,4898,\"People, with others, enter through one of the gates, which closes on them. They\",\"People, with others, enter through one of the gates, which closes on them.\",They,gold,pause for a moment to take in their new surroundings.,do what they are looking out of their way and what are moving in.,are gathering in the forefront for a long period of time.,shake and shake hands.\n6650,lsmdc0017_Pianist-56068,4899,They pause for a moment to take in their new surroundings. People,They pause for a moment to take in their new surroundings.,People,gold,\", slumped in the wheelchair beside her, sits down at the desk.\",walk up and down.,get out of a motorcycle and go down a hall.,\", almost look at each other, she starts to pace with her hands on his hips.\"\n6651,lsmdc0017_Pianist-56068,4897,\"Jews, among them people and father, clutching their meagre belongings, walk towards wooden gates and come to a halt. Jewish policemen\",\"Jews, among them people and father, clutching their meagre belongings, walk towards wooden gates and come to a halt.\",Jewish policemen,gold,\"are gathering around the barricade that read money, yell industries, at stones.\",pull out the letters in the courtyard to the inn.,hold out wand guns as they come to the bullwhip - ground room.,\"approach and order the people about, pushing and shoving them into line.\"\n6652,anetv_6V6XB0KmYkk,1457,A large group of people are seen playing hockey around an arena performing various tricks with the puck. The men,A large group of people are seen playing hockey around an arena performing various tricks with the puck.,The men,gold,push the ball back and fourth to one another as the cities continue in.,continue hitting the ball while others watch on the sidelines.,continue to hit the puck around one another as the camera captures them from several sides.,continue to kick around one another while chasing a ball.\n6653,anetv_6V6XB0KmYkk,1458,The men continue to hit the puck around one another as the camera captures them from several sides. The man,The men continue to hit the puck around one another as the camera captures them from several sides.,The man,gold,push the puck around more over and under obstacles.,continues running around while another one follows and celebrates.,continues performing various martial arts moves in various areas while the host watches and speaks to the camera.,continues riding back and fourth into the wooded area and ends by looking at the camera.\n6654,anetv_oXFKaTlg3p0,2879,The person flies off of the tube. The boat,The person flies off of the tube.,The boat,gold,is pulling the same tube with several young people on it.,flies down and people walk behind someone walking along the water.,falls to land on top of the boat back away.,slides along the edge and gliding across the water.\n6655,anetv_oXFKaTlg3p0,2878,The boat is pulling a tube with a man behind it. The person,The boat is pulling a tube with a man behind it.,The person,gold,begins to fall into the equipment.,places the ski on the water beside it.,drops the water in the bowl.,flies off of the tube.\n6656,anetv_oXFKaTlg3p0,2877,People are riding in a boat in the water. The boat,People are riding in a boat in the water.,The boat,gold,is pushed up glassy.,sails off with people in the water.,moves to the left of the boat.,is pulling a tube with a man behind it.\n6657,lsmdc3013_BURLESQUE-4785,13395,\"As the dancers get ready backstage, someone descends the staircase with a drink in her hand. Wearing a skimpy biker - themed costume, she\",\"As the dancers get ready backstage, someone descends the staircase with a drink in her hand.\",\"Wearing a skimpy biker - themed costume, she\",gold,walks past a flood corridor with glistening eyes and listening.,wears a warm smile and turns.,steps at all the tables or dining tables.,heads toward the stage.\n6658,lsmdc3013_BURLESQUE-4785,13390,\"Someone pauses from organizing costumes on a rack and watches someone stalk away. In her office, someone\",Someone pauses from organizing costumes on a rack and watches someone stalk away.,\"In her office, someone\",gold,folds a piece of paper into an airplane.,sees the older girl with her son in the kitchen.,joins her at one of the windows of her hotel.,sits at the bar sipping his drink.\n6659,lsmdc3013_BURLESQUE-4785,13394,\"Later in the crowded lounge, someone plays piano with the band. As the dancers get ready backstage, someone\",\"Later in the crowded lounge, someone plays piano with the band.\",\"As the dancers get ready backstage, someone\",gold,wanders back and forth demonstrated her muscles.,climbs up to meet her.,pours over a glass of wine.,descends the staircase with a drink in her hand.\n6660,lsmdc3013_BURLESQUE-4785,13392,Someone tosses her paper plane at him. The backstage manager's gaze,Someone tosses her paper plane at him.,The backstage manager's gaze,gold,fixes on the slack - jawed image in the hospital room.,follows it as it lands on the floor at his feet.,sweeps out warm check.,stays focused on the damage that was upon the command module.\n6661,lsmdc3013_BURLESQUE-4785,13393,The backstage manager's gaze follows it as it lands on the floor at his feet. He,The backstage manager's gaze follows it as it lands on the floor at his feet.,He,gold,picks it up and unfolds it.,wrings his hands and rockets.,\"shakes her hips, clicking his solution.\",barrels into someone's portrait through a window.\n6662,lsmdc3013_BURLESQUE-4785,13389,Someone storms out of someone 'office. Someone,Someone storms out of someone 'office.,Someone,gold,pauses from organizing costumes on a rack and watches someone stalk away.,leans up and puts her hand in his.,wears a large shawl around his neck.,continues to the grill of the building.\n6663,lsmdc3013_BURLESQUE-4785,13391,\"In her office, someone folds a piece of paper into an airplane. As she\",\"In her office, someone folds a piece of paper into an airplane.\",As she,gold,\"smooths the final crease, creating its wings.\",types through a scanner.,unfolds a display of pearls she rips a lacy curtain upward.,\"trots closer, his eye light cast an ink pattern on her forearm.\"\n6664,lsmdc3013_BURLESQUE-4785,13388,\"At the lounge, a bartender carries crates of glasses and the band rehearses. Someone\",\"At the lounge, a bartender carries crates of glasses and the band rehearses.\",Someone,gold,sits in bed watching the live footage.,steps out onto the balcony.,storms out of someone 'office.,waits in the lobby.\n6665,anetv_4eHP5IvDl6o,13551,A camera zooms in on a sign hanging out front and leads into a woman brushing a horse's mane with a brush. The woman,A camera zooms in on a sign hanging out front and leads into a woman brushing a horse's mane with a brush.,The woman,gold,\"put parts on the horse in brushing her mane, then a man rides the horse and bounces it on a horse's head.\",continues brushing the horse's mane and claws away brushing her teeth.,wipes out the dog with a brush and uses their hands to brush it around.,continues brushing all around the horse while the horse remains motionless.\n6666,anetv_4eHP5IvDl6o,1453,A woman is standing in a barn. She,A woman is standing in a barn.,She,gold,is using a rake to chop a wood.,is holding a hose in front of him.,is brushing a horse's hair with a pink rake.,is playing a set of bagpipes on a busy street.\n6667,anetv_4eHP5IvDl6o,1454,She is brushing a horse's hair with a pink rake. Another horse,She is brushing a horse's hair with a pink rake.,Another horse,gold,is in the stable behind them.,\"comes in the stable, followed by a group of dogs.\",gets a final brush to brush the horses hair.,appears on her hand and the girl continues grooming her horse.\n6668,anetv_rYXmAD8u7N8,15738,He gives the violin to another man who plays it. The audience,He gives the violin to another man who plays it.,The audience,gold,starts clapping for them.,returns to him while he watches.,claps for the people and hangs up violin.,smiles up and away from people.\n6669,anetv_rYXmAD8u7N8,15736,Several people are talking into microphones on the stage. One of the men,Several people are talking into microphones on the stage.,One of the men,gold,thoughtfully lights a match.,plays the guitar while someone plays.,hits the ball.,starts playing a violin.\n6670,anetv_rYXmAD8u7N8,15737,One of the men starts playing a violin. He,One of the men starts playing a violin.,He,gold,gives the violin to another man who plays it.,hands the flute to the camera.,shows how to play the drums.,sees a pretty couple from behind him.\n6671,anetv_8jj-mhVrlGA,1496,The camera pans out into another man standing on the court and two basketballs shown. The man and woman then,The camera pans out into another man standing on the court and two basketballs shown.,The man and woman then,gold,begin fighting and holding up the ball.,stand up to him while several other people run by while others watch with still light.,shoot hoops with the balls and pass each other back and fourth.,bow to the other and smile and dance in the end.\n6672,anetv_8jj-mhVrlGA,1495,A woman is shown speaking to the camera and point off into the distance. The camera,A woman is shown speaking to the camera and point off into the distance.,The camera,gold,pans out into another man standing on the court and two basketballs shown.,pans around a man up in the yard and leads into him holding two large drums.,pans various angles leading her time showing information followed by more clips of males sitting again and smiling.,pans back and forth to show her riding down the back sled.\n6673,anetv_IWHER8iS1B4,13464,Woman is talking to the camera. kids,Woman is talking to the camera.,kids,gold,put vegetables on a dish.,are running in stage and jumping the rope.,are putting pink ribbons in a large park garage.,are outside on a slack line.\n6674,anetv_D_GSISuQw3Y,2331,Then she coats her nails and the rhinestones with a layer of neutral polish to secure the rhinestones. She,Then she coats her nails and the rhinestones with a layer of neutral polish to secure the rhinestones.,She,gold,proceeds to use the nail polish evenly on that nail.,is done with each sparkler.,talks in the camera as two boys stand behind her trying to participating in the video tutorial.,removes the nail sealed with a nail.\n6675,anetv_D_GSISuQw3Y,2329,She shows a bottle of magenta nail polish that she has already used on her nails. Then she,She shows a bottle of magenta nail polish that she has already used on her nails.,Then she,gold,does some cherry and flat.,takes a strip of rhinestones that she meticulously places and glues on her painted fingernails.,trims the razor with the polish type lens.,begins to clear the nails and nails.\n6676,anetv_Q2OOxx3RWhY,14225,The girl is holding a hair curler. The young woman,The girl is holding a hair curler.,The young woman,gold,drops the lip from the leafy base and lets her hair over and crunches.,is providing tips to other girls on how to curl their hair.,puts various laces on her left leg and lightly pierces her hair.,styles the hair and combing black hair - combing her hair.\n6677,anetv_Q2OOxx3RWhY,14226,\"The young woman is providing tips to other girls on how to curl their hair. At the end of the video, the girl\",The young woman is providing tips to other girls on how to curl their hair.,\"At the end of the video, the girl\",gold,take turns on bicycles into olympic skate park with a group laden flips and arms and then flipping a jump.,demonstrates the first jump straight at a bar.,asks to like the video.,gets her hair dried with a heart square.\n6678,anetv_Q2OOxx3RWhY,14224,The young girl is speaking to the camera. The girl,The young girl is speaking to the camera.,The girl,gold,is wrenched away on the paw.,is sticking her leg over the camera.,laughs with the violin on one end.,is holding a hair curler.\n6679,anetv_7SxEQiFHGm8,3853,The game continues and both teams continues to hit the ball back and forth across the court. Several goals are made and the teams both,The game continues and both teams continues to hit the ball back and forth across the court.,Several goals are made and the teams both,gold,jump up and down in joy.,run for them to win.,fall on the back and cheer.,begin to celebrate a beat in embarrassment.\n6680,anetv_7SxEQiFHGm8,8734,We see the yellow team all hug each other. Number nine on the white team,We see the yellow team all hug each other.,Number nine on the white team,gold,keeps working on club flooring.,runs around the court.,wins and save one.,\"compete, then run through some high jump ropes into the subtitles.\"\n6681,anetv_7SxEQiFHGm8,8736,A man on the white team hits the ball with his head. A man,A man on the white team hits the ball with his head.,A man,gold,hits the ball with a stick.,hits a green ball and talks on a string.,spins a ball on his finger.,wipes a ball on the net.\n6682,anetv_7SxEQiFHGm8,3852,Several men are in an indoor arena playing a game of soccer as the crowd watches them. The game continues and both teams,Several men are in an indoor arena playing a game of soccer as the crowd watches them.,The game continues and both teams,gold,continues to hit the ball back and forth across the court.,take hold of each other as they push away.,demonstrate tennis goals and how to play the sport.,laugh in the sport.\n6683,anetv__MWyhJS4KbM,16656,A man is seen cleaning a set of windows quickly in front of a large crowd. Another man,A man is seen cleaning a set of windows quickly in front of a large crowd.,Another man,gold,is seen speaking to the camera and leads into him speaking to the camera.,speaks to the camera while another man cleans off the windows.,is shown walking across the station while performing several flips and tricks.,is shown putting plaster through a machine and loosed the tools out onto the side.\n6684,anetv__MWyhJS4KbM,1496,A man cleans glass competitively before a crowd. He,A man cleans glass competitively before a crowd.,He,gold,uses a sweeping mop to cover the glass quickly and efficiently.,claps proudly before clapping back in place and other teams of teams.,is walking with a flag on a wall.,is shown drinking a drink out of a bottle and speaking to the camera.\n6685,anetv__MWyhJS4KbM,16657,Another man speaks to the camera while another man cleans off the windows. A third man,Another man speaks to the camera while another man cleans off the windows.,A third man,gold,stands behind the woman looking for the right one.,continues to jump off and jumps below a bridge.,appears the same race.,speaks into a microphone towards the window washer.\n6686,anetv__MWyhJS4KbM,1497,He uses a sweeping mop to cover the glass quickly and efficiently. He then,He uses a sweeping mop to cover the glass quickly and efficiently.,He then,gold,\"shaves his nostril, scratched and blistered.\",\"complies as he continues, and grabs some keys.\",talks to an interviewer while everyone claps.,lobs the ax and tries piece of the wood.\n6687,lsmdc0019_Pulp_Fiction-56745,22,We follow someone as he runs out of the living room into a.. Someone,We follow someone as he runs out of the living room into a..,Someone,gold,picks up a book and runs off after him.,stops for a teenage boy and her start.,continues his frenzied search.,drops a gold nail holder on the garage door.\n6688,lsmdc3046_LARRY_CROWNE-21688,8891,Someone returns the key tin to its pot. Someone's brow,Someone returns the key tin to its pot.,Someone's brow,gold,jumps into a frown.,furrows as he listens.,knits as she walks in.,begins to fill with water.\n6689,lsmdc3046_LARRY_CROWNE-21688,8890,\"Stepping between someone and the door, someone unlocks it. Someone\",\"Stepping between someone and the door, someone unlocks it.\",Someone,gold,grabs the ax and leaves a railcar.,turns the firelight into the room.,checks his cell then sees a door in his cage.,returns the key tin to its pot.\n6690,lsmdc3046_LARRY_CROWNE-21688,8892,\"She sways slightly, her hands joint beneath her chin and her gaze softens. As she grabs him, someone\",\"She sways slightly, her hands joint beneath her chin and her gaze softens.\",\"As she grabs him, someone\",gold,walks off the plane.,\"looks him in the eye, then sits down.\",wraps his arms around her waist.,\"gently golden, lingering places a kiss on the cheek, opens the door and enters.\"\n6691,lsmdc3046_LARRY_CROWNE-21688,8889,Someone searches a potted plant. She,Someone searches a potted plant.,She,gold,minces up over the bumps and flowers.,examines her door locks.,sets it aside and touches down.,allows her laotong a tight smile.\n6692,lsmdc0005_Chinatown-47965,3762,\"He yawns, edges away from one of the dirtier farmers. An amalgam of farmers, businessmen, and city employees\",\"He yawns, edges away from one of the dirtier farmers.\",\"An amalgam of farmers, businessmen, and city employees\",gold,\"walk along the road, into his car.\",have been listening with keen interest.,fill out the double's beaten empty bowls.,have entered the store.\n6693,anetv_JVfhBvlv0IY,15306,The man walks away while looking into the audience followed by another man running into the pit. Several more men,The man walks away while looking into the audience followed by another man running into the pit.,Several more men,gold,are shown as well as people walking on paper and riding across field.,take turns running down with their run showed again afterwards.,gather around and show more shots.,and man are shown as well as tennis and hitting the ball with a tennis racket as one fails.\n6694,anetv_JVfhBvlv0IY,15305,An athletic man is seen standing ready and runs down a long track into a sand pit. The man,An athletic man is seen standing ready and runs down a long track into a sand pit.,The man,gold,walks away while looking into the audience followed by another man running into the pit.,is then seen spinning around and throwing the javelin and walking away.,rides over and pushes the man up and down into a sand pit.,continues moving his body around around pushing himself into the pit again.\n6695,lsmdc3001_21_JUMP_STREET-158,15314,A pencil case holds wafers depicting the haloed poop logo. Someone,A pencil case holds wafers depicting the haloed poop logo.,Someone,gold,\"puts his on the board, hesitates, and picks it up.\",eyes someone who nods.,retrieves it in a black ashtray.,olympics model is topped with cartridges and scattered machete.\n6696,anetv_gc04Okw4DTs,1317,A complete image is shown in brilliant colors of a beach before going back to the brush strokes in progress. The ocean,A complete image is shown in brilliant colors of a beach before going back to the brush strokes in progress.,The ocean,gold,is seen with a team hanging with a camera.,begins the shadow of a sticker.,is completed in the final scene.,\"continues a same view, then returns to the screen.\"\n6697,anetv_gc04Okw4DTs,1315,A painting of a cloudy sky over mountains is displayed on a canvas. A brush,A painting of a cloudy sky over mountains is displayed on a canvas.,A brush,gold,shows the clorox partially prepared path.,walks under a network of branches.,is shown with brushes snow.,begins painting blue onto the canvas.\n6698,anetv_gc04Okw4DTs,1316,A brush begins painting blue onto the canvas. A complete image,A brush begins painting blue onto the canvas.,A complete image,gold,of the cymbals is shown followed by a woman standing in the center of the court answering questions of the man.,shows a blurry image of divers.,shows the horse's breath.,is shown in brilliant colors of a beach before going back to the brush strokes in progress.\n6699,anetv_Cp4a_gN4pDQ,3346,Three men are seen sitting behind a set of bongo drums playing quickly while several camera flashes are shown. The men,Three men are seen sitting behind a set of bongo drums playing quickly while several camera flashes are shown.,The men,gold,begin playing a game of badminton and begin hitting the balls at each other.,continue speaking to one another with the large man playing instruments and ends by walking back and fourth.,continue standing in a position and clapping to the orchestra.,continue playing again while laughing and smiling at one another.\n6700,anetv_1PpVSeE2BJ8,10261,A baby boy is seated at a restaurant table. He,A baby boy is seated at a restaurant table.,He,gold,is wearing a white shirt who is putting on his shoes.,\"lifts up four white surfboards, which is perched idly by them.\",holds up a small needle and discusses something.,is eating a vanilla ice cream cone.\n6701,anetv_1PpVSeE2BJ8,10262,He is eating a vanilla ice cream cone. He,He is eating a vanilla ice cream cone.,He,gold,hits the stand again.,plays with the wall.,walks facing the kitchen when she's done.,takes a napkin and wipes his mouth before handing the napkin back and continuing to eat.\n6702,anetv_S5zweEQSnho,14632,Another man is seen swinging a tennis racket several times. The first man,Another man is seen swinging a tennis racket several times.,The first man,gold,pauses and hits the ping pong ball while others watch on the side.,speaks again to demonstrate how to play tennis.,joins the other man at the end of the gym and does a lot of more rubik his racquet.,joins the ball and continues throwing the ball at the pins.\n6703,anetv_S5zweEQSnho,16421,A man in a blue shirt is talking using his hands about handling high balls with your forearm. He,A man in a blue shirt is talking using his hands about handling high balls with your forearm.,He,gold,is shaving the corners a little without the eye on him and he does the lot as it didn't demonstrate.,\"comes up to lane with the effort at the high angle, so he keeps driving and continues getting his taller swivel chair.\",moves the camera back and forth between hair and pictures.,shows a video of a man on the tennis court hitting the tennis ball.\n6704,anetv_S5zweEQSnho,16423,He continues to talk while the video is paused giving more information. He,He continues to talk while the video is paused giving more information.,He,gold,is featured about a jet in video.,\"is shown under the streams as he talks about the ice, burning and clean.\",goes over their rock and safety.,talks and talks for a good while giving a lot of important information about how it should be done.\n6705,anetv_S5zweEQSnho,16422,He shows a video of a man on the tennis court hitting the tennis ball. He,He shows a video of a man on the tennis court hitting the tennis ball.,He,gold,picks up a rope and pauses to speak to the camera.,continues to talk while the video is paused giving more information.,shows another man how to make a goal.,walks out of the room to catch the paint ball.\n6706,anetv_S5zweEQSnho,14631,A man is seen speaking to the camera while moving his arms around. Another man,A man is seen speaking to the camera while moving his arms around.,Another man,gold,is seen as another man continues to speak to the camera.,walks into frame and begins exercise and leads into him lifting weights.,is seen swinging a tennis racket several times.,continues to speak to the camera while others cheer on the pair.\n6707,anetv_Vx4ZW7Xseyg,3925,The man seems to be practicing his dives and flips of the diving board. the guy,The man seems to be practicing his dives and flips of the diving board.,the guy,gold,throws the ball and the camera captures his swimming surroundings.,fires up the rapids.,finishes the song and zips up the tall pair of arms while jump squatting.,is trying to jump his highest to get a better diving flip.\n6708,anetv_Vx4ZW7Xseyg,3924,\"A guy is diving off a diving board doing flips in the air and lands in a pool of water, the guy dives and do different flips many different times. the man\",\"A guy is diving off a diving board doing flips in the air and lands in a pool of water, the guy dives and do different flips many different times.\",the man,gold,seems to be practicing his dives and flips of the diving board.,taps a surf board as he performs again and flips.,clips it down the brown and flips one over the other on the board.,stands a pair of scissors on the end and demonstrates piecing the split on the man's head with other people.\n6709,anetv_ak8MVjE2p3Y,18661,He continues to smoke the cigarette as he inhales and exhales the smoke. There,He continues to smoke the cigarette as he inhales and exhales the smoke.,There,gold,is a lot of traffic on the street as well as many people walking on the street.,'s in someone's eyes.,is right next to a shy young blue boy in the red shirt and nape of his neck.,lights flash and round various movements.\n6710,anetv_ak8MVjE2p3Y,18659,There's a man sitting on a busy city street wearing a turban and smoking a cigarette. There,There's a man sitting on a busy city street wearing a turban and smoking a cigarette.,There,gold,are several people walking past him.,\", a woman wearing a white hat sits on a sidewalk to buy a cigarette.\",'s put a purple into the dark and he can gone out and they drink together.,is a red and green letters on a table with a curtain.\n6711,anetv_ak8MVjE2p3Y,18660,There are several people walking past him. He,There are several people walking past him.,He,gold,stop them both and let go of the rope.,can see the lawn and front of the cars that are over house.,continues to smoke the cigarette as he inhales and exhales the smoke.,enters the store and gets out of the car.\n6712,lsmdc1019_Confessions_Of_A_Shopaholic-80699,11532,\"Someone, wearing pink, bends the article, turns to her pink laptop, and types something in Google. She\",\"Someone, wearing pink, bends the article, turns to her pink laptop, and types something in Google.\",She,gold,\"has now make an article of his message, her name is growing on his board.\",puts on a pair of jeans while reading some mail.,sits by another desk and brushes the piece of magic she is reading.,leans forward to read what's popped up.\n6713,lsmdc3062_SORCERERS_APPRENTICE-30911,2125,Someone appear and someone casts them across the lab to search for the someone. Someone,Someone appear and someone casts them across the lab to search for the someone.,Someone,gold,makes a face over the goblin's coffee apartment house.,guides his magical smoke across an equipment table.,sits at his desk and sighs security.,kills the models up in the fire.\n6714,lsmdc3062_SORCERERS_APPRENTICE-30911,2126,\"The gray gases reveal the contours of the Grimhold. As someone reaches for it, someone\",The gray gases reveal the contours of the Grimhold.,\"As someone reaches for it, someone\",gold,rises and continues their dance.,magically snatches it away.,opens it and beams a thread.,weakly smells his arm.\n6715,anetv_gxILsv1RTEI,14063,A man is brushing his teeth. He,A man is brushing his teeth.,He,gold,is holding a cell phone up in front of his face.,is shaving someone's face with a razor.,is holding a large black white ball.,takes some oil and rubs some of his forehead.\n6716,anetv_T98RJsOiQWc,6012,A girl is seen blindfolding another while a man plays with the camera on the side. The man,A girl is seen blindfolding another while a man plays with the camera on the side.,The man,gold,continues cutting the wood and looking closely to the camera.,finishes and begins playing the flute.,cuts the other girl's hair.,holds the stick and gestures to the girl on the side.\n6717,lsmdc0020_Raising_Arizona-57636,19394,\"We are tracking in toward the one window that is illuminated, with a feeble yellow light. In voice - over, someone\",\"We are tracking in toward the one window that is illuminated, with a feeble yellow light.\",\"In voice - over, someone\",gold,is composing a letter.,is walking behind the tractor.,stops to to clear the door.,shock is wondering what to expect.\n6718,lsmdc0020_Raising_Arizona-57636,19392,\"Following it, very close, we see only its rear wheel and fender and twin exhaust pipes, one on either side. Flame\",\"Following it, very close, we see only its rear wheel and fender and twin exhaust pipes, one on either side.\",Flame,gold,are inside the hammer place.,is half - blow.,rise to float and leap in the air.,is boiling in each exhaust pipe as the hog roars.\n6719,lsmdc0020_Raising_Arizona-57636,19390,Someone is still shaking his head. The camera,Someone is still shaking his head.,The camera,gold,moves back to someone.,shines out in space.,continues to nearly fall off his car that stabbed with metal shards.,\"has floated in to a close shot of someone, staring glumly at someone.\"\n6720,lsmdc0020_Raising_Arizona-57636,19395,\"Creeping in on someone's hunched back, as he sits over the kitchen table writing the letter. The yellow lamp sitting on the table\",\"Creeping in on someone's hunched back, as he sits over the kitchen table writing the letter.\",The yellow lamp sitting on the table,gold,realizes that someone is on a blank stomach.,drawing weeping from shelf to the bottom light.,is the only light on in the trailer.,sits apart and they start to write.\n6721,anetv_N6y3yXiVo24,7675,\"The pinata flings around, and the girl hits the pinata again. The little girl\",\"The pinata flings around, and the girl hits the pinata again.\",The little girl,gold,turns the pinata upside down.,continues to swing playing in the hospital bars.,is carving the kitchen balls into the cup.,turns to look at the camera in between hitting the pinata.\n6722,anetv_aFlumCYsZgM,3880,A girl eats licks and eats an ice cream cone. The boy,A girl eats licks and eats an ice cream cone.,The boy,gold,returns to eat more ice cream.,finishes the ice cream cone.,enjoys the ice cream.,eats ice cream cone the plates.\n6723,anetv_aFlumCYsZgM,3881,The boy finishes the ice cream cone. The girl,The boy finishes the ice cream cone.,The girl,gold,licks the ice cream cone again.,lightly licks the ice cream cone.,uses the curling strokes just above it.,then watches her moves.\n6724,anetv_aFlumCYsZgM,3879,A boy enjoys an ice cream cone. A girl,A boy enjoys an ice cream cone.,A girl,gold,mixing cream with a child with a stick kneels with her hands up to eat some ice cream.,\"holds an ice cream cone, giving taste for an ice cream to eat.\",holds sugar while a toddlers hands her to a camera.,eats licks and eats an ice cream cone.\n6725,anetv_mpyN1mrMl3U,7490,She then makes the dough into balls and puts them on a cookie sheet. She,She then makes the dough into balls and puts them on a cookie sheet.,She,gold,puts a pan on the grill.,puts the fifth slice of strawberries on top of the cups.,measures the cookie sheet for the pan around and cookie eggs with the frosting.,places them in the oven.\n6726,anetv_mpyN1mrMl3U,7489,A woman is pouring ingredients into a mixer. She then,A woman is pouring ingredients into a mixer.,She then,gold,explains it for a while for a very long time.,pours a salad into an oven.,makes the dough into balls and puts them on a cookie sheet.,pushes it up through her wet bowl of milk.\n6727,anetv_bWBcYdYEup4,8139,Several shots of people fencing are shown as well as a fencer being interviewed on camera. More shots of people fencing,Several shots of people fencing are shown as well as a fencer being interviewed on camera.,More shots of people fencing,gold,another woman is shown followed by a man speaking to the camera in front of the camera.,laid out are shown followed by men playing a game with bowling sticks and speaking to the camera.,are shown as well as people walking and throwing up fish.,are shown and ends with many standing around and two shaking hands.\n6728,anetv_bWBcYdYEup4,8138,Two people are seen performing a fencing match back and fourth while other people practice in the background. Several shots of people fencing,Two people are seen performing a fencing match back and fourth while other people practice in the background.,Several shots of people fencing,gold,are shown and leads into people practicing jump rope tricks.,are shown as well as people performing martial arts moves.,are shown as well as a fencer being interviewed on camera.,with one another while speaking to one another and leads into several men speaking to the camera.\n6729,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11683,A letter shoots down the chimney and flies past his nose. Someone,A letter shoots down the chimney and flies past his nose.,Someone,gold,\"sits back on his bed, his face buried face down in paint.\",\"ambles across the snow - covered street, his caretaker, hand held tight around his stomach, his eyes closed.\",blinks with surprise then covers his ears as a rushing wind seems to fill the room.,runs in the kitchen.\n6730,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11678,\"Five more letters lie on the path at their feet. Inside the house, someone\",Five more letters lie on the path at their feet.,\"Inside the house, someone\",gold,watches helplessly as his uncle burns the envelopes one by one.,sits by a checked princess elephant.,looks down to see the tall tooth blue boulder seemingly props his head down.,shovels over to a riverbank.\n6731,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11682,Hundreds of owls are perched on the rooftops and cars in Privet Drive. A letter,Hundreds of owls are perched on the rooftops and cars in Privet Drive.,A letter,gold,\"is tied next to the small quill, with only one of it.\",rips out several tries to find someone.,shoots down the chimney and flies past his nose.,grimaces and hiding under the window.\n6732,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11675,Someone tears up three identical letters addressed to someone. Someone,Someone tears up three identical letters addressed to someone.,Someone,gold,peeps out of his cupboard and sees his uncle blocking up the letter box.,methodically breaks away from the watermelon.,\"nods, then presses a message.\",sits through a hairstyle book.\n6733,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11655,Someone looks at the snake sympathetically. The python,Someone looks at the snake sympathetically.,The python,gold,snaps a man with a hand.,lifts its head and winks.,goes over the hook to the couch before still watching the zebra.,carries her out of her naked team.\n6734,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11652,Someone and his mother get into the car with a big bag of sweets. Someone,Someone and his mother get into the car with a big bag of sweets.,Someone,gold,stares at him with a lovelorn expression.,goes back to the counter where people are eating.,\"obviously wants to cross her lost in impulse vista, not what someone has said.\",wags his car key in someone's face.\n6735,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11656,The python lifts its head and winks. It,The python lifts its head and winks.,It,gold,flicks its tongue and nods.,\"opens fleet, which snaps skyward.\",gets to her feet.,is used to making an omelet through the glaze.\n6736,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11657,\"Suddenly, the glass partition disappears. Someone\",\"Suddenly, the glass partition disappears.\",Someone,gold,leans against the light.,sits down beside someone.,tumbles over the rail.,looks to his right kingdom.\n6737,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11654,\"In the Reptile House at the zoo, someone stares at the sleeping python. Someone\",\"In the Reptile House at the zoo, someone stares at the sleeping python.\",Someone,gold,pushes the boy into the water and the packet falls open.,wears a pensive gaze and gestures.,sits with a snowy owl in his back.,looks at the snake sympathetically.\n6738,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11660,The python raises its head and stares straight at him. Visitors,The python raises its head and stares straight at him.,Visitors,gold,are working structured aerobics.,scatter in all directions.,moves the raft toward the massive pool of water.,arrives at the sitting lifeboat dock.\n6739,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11671,\"As he walks slowly into the kitchen, still staring at the envelope, someone snatches the letter out of his hand. Someone\",\"As he walks slowly into the kitchen, still staring at the envelope, someone snatches the letter out of his hand.\",Someone,gold,\"hands it to him, seizes it, and looks over at someone and someone.\",takes out a pencil and watches someone earnestly using his cane.,turns the letter over and looks at the coat of arms on the back.,\"flourishes his sword to a hard ravine man, who looks out the gate when he hears nothing.\"\n6740,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11668,\"Inside Number 4, someone picks up the post from the doormat. One of the letters\",\"Inside Number 4, someone picks up the post from the doormat.\",One of the letters,gold,flops to the ground.,shows someone sitting on his desk.,sits down on a discarded one.,is sealed with wax.\n6741,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11663,He is trapped in the snake house. He,He is trapped in the snake house.,He,gold,bangs desperately on the glass.,picks up a giant stick from the ground.,pushes his way away from the fire.,throws a firework in his face.\n6742,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11687,\"Like a snowstorm, the envelopes cover the carpet room spread around the room above their heads. Someone\",\"Like a snowstorm, the envelopes cover the carpet room spread around the room above their heads.\",Someone,gold,enter's room and stands with cell.,hangs on the paper.,turns around a corner.,captures a letter and makes a dash for the cupboard under the stairs.\n6743,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11701,Someone bends the shotgun barrel. It,Someone bends the shotgun barrel.,It,gold,has a lot of cash in it.,\"looks up, and does not look at him.\",fires into the rafters.,catches someone's brow.\n6744,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11697,The door falls into the room. A huge figure,The door falls into the room.,A huge figure,gold,emerges from a building entrance; the party hall is carved behind it.,looms in the doorway.,is put out the door.,holding a gun remains playing.\n6745,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11694,Someone hides in a corner. The Dursleys,Someone hides in a corner.,The Dursleys,gold,bolts up and topples on with a crowbar.,appear on the stairs.,passes a dining area where a frenchman holds a wedding ring.,boxing with the key.\n6746,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11667,Someone locks him into the cupboard under the stairs. A tawny owl,Someone locks him into the cupboard under the stairs.,A tawny owl,gold,flies low over privet drive and drops a letter.,falls into the pond.,\"flies off, hands by a hooded figure.\",guides him across the fake field.\n6747,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11658,Someone tumbles over the rail. He,Someone tumbles over the rail.,He,gold,slams the train door shut.,steps out in the last shell.,struggles and mounts the class line.,falls head first into the pond inside the snake's enclosure.\n6748,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11695,The Dursleys appear on the stairs. Someone,The Dursleys appear on the stairs.,Someone,gold,aims his ax over the ground.,watches as the open blinds in the side.,waves a shotgun nervously.,\"enters, standing hunched on his desk.\"\n6749,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11686,\"Someone chortles with glee as even more letters hurtle down the chimney. Like a snowstorm, the envelopes\",Someone chortles with glee as even more letters hurtle down the chimney.,\"Like a snowstorm, the envelopes\",gold,are just walking away.,roll gently across a fallen coastline.,smash gently into each base.,cover the carpet room spread around the room above their heads.\n6750,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11685,\"Suddenly, a flurry of letters cascades down the chimney and out into the sitting room. Terrified, someone\",\"Suddenly, a flurry of letters cascades down the chimney and out into the sitting room.\",\"Terrified, someone\",gold,runs out towards the hands.,looks over his shoulder and spots the board.,\"opens the door, then peers down, just a few feet in the doorway.\",jumps onto his mother's lap.\n6751,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11661,\"Visitors scatter in all directions. Dripping wet, someone\",Visitors scatter in all directions.,\"Dripping wet, someone\",gold,scrambles to his feet.,runs a taking over his wound as he unbuttons his shirt.,climbs up and pushes him up the stairs.,gets in through a fireplace.\n6752,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11691,\"Lonely building, a stone hut, people are fast asleep in a big double bed. In the room below, someone\",\"Lonely building, a stone hut, people are fast asleep in a big double bed.\",\"In the room below, someone\",gold,is asleep on a sofa while someone sprawls on the floor in a sleeping bag.,pushes off someone as soon as they start to clean the back wall.,\"arrives, a golden light flashing from within.\",sits on the dry winter floor with his legs carelessly taped behind.\n6753,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11653,\"Someone wags his car key in someone's face. In the Reptile House at the zoo, someone\",Someone wags his car key in someone's face.,\"In the Reptile House at the zoo, someone\",gold,saunters up to someone.,stares at the sleeping python.,crosses his dim rugged range.,finds a frost covered sleek a sleek white footage on his curtained green biker's helmet.\n6754,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11681,Someone peers through the net curtains. Hundreds of owls,Someone peers through the net curtains.,Hundreds of owls,gold,fly past on a ship.,fly onto the street and land on a dark tower.,are perched on the rooftops and cars in privet drive.,fly out of the sky.\n6755,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11679,Someone smiles at him sadistically as he pokes the fire and the flames turn the letters to ashes. Someone hands round a plate of biscuits as someone,Someone smiles at him sadistically as he pokes the fire and the flames turn the letters to ashes.,Someone hands round a plate of biscuits as someone,gold,relaxes in his armchair.,tries to unlock the gate.,knocks a stranger into the driveway.,tosses a tree to someone.\n6756,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11670,\"Someone's eyes widen with surprise as he reads the address written in emerald green ink. As he walks slowly into the kitchen, still staring at the envelope, someone\",Someone's eyes widen with surprise as he reads the address written in emerald green ink.,\"As he walks slowly into the kitchen, still staring at the envelope, someone\",gold,types out a name and dials over $.,\"goes to find someone through the bedroom, someone about to pull out some sheets.\",\"stops, dips his plastic file in his fingers, opens them, and takes off his enormous handcuffs.\",snatches the letter out of his hand.\n6757,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11665,Someone spots someone laughing and glares at him suspiciously. Someone,Someone spots someone laughing and glares at him suspiciously.,Someone,gold,takes a huge puff.,places the fishbowl on their instruments.,grabs someone by the hair.,starts walking down a sidewalk at the top of the stairs.\n6758,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11684,\"Someone blinks with surprise then covers his ears as a rushing wind seems to fill the room. Suddenly, a flurry of letters\",Someone blinks with surprise then covers his ears as a rushing wind seems to fill the room.,\"Suddenly, a flurry of letters\",gold,is pumped from a car.,cascades down the chimney and out into the sitting room.,pounding its way across the floor.,falls down the enclosed join square that stand circled by two large letters.\n6759,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11673,\"An owl drops another letter, which flies into the letter box at Number 4. The big bird\",\"An owl drops another letter, which flies into the letter box at Number 4.\",The big bird,gold,smashes out candle on the civilian's head and casket.,joins two more perched on the tv aerial.,is caught in a green expression.,begins for fast life.\n6760,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11669,One of the letters is sealed with wax. Someone's eyes,One of the letters is sealed with wax.,Someone's eyes,gold,widen with surprise as he reads the address written in emerald green ink.,are examined at the bottom of his sweater.,\"are wide and open, like an shards pack.\",fill with tears as he remembers his daughter's extensive roll.\n6761,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11666,Someone grabs someone by the hair. Someone,Someone grabs someone by the hair.,Someone,gold,is about to serve someone and someone.,hands him a pound envelope.,picks away the ball and sets it over the table.,locks him into the cupboard under the stairs.\n6762,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11659,\"Someone sits spluttering in the pond, as the snake slithers over the wooden rail and down onto the floor beside someone. The python\",\"Someone sits spluttering in the pond, as the snake slithers over the wooden rail and down onto the floor beside someone.\",The python,gold,raises its head and stares straight at him.,cuts to gravel from a tree and tosses it behind the spinning propeller.,\"waves at the child, then shimmies seductively and balancing on its center and trims it to an onlooker over her head.\",\"has long - toying with its fingernails, which is in the skin.\"\n6763,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11689,Someone grabs him round the waist. Someone and his mother,Someone grabs him round the waist.,Someone and his mother,gold,slide out onto the sofa.,is a male who holds a rifle horizontally in his arms.,escape into the hall.,fall to their knees and dance around him.\n6764,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11696,Someone waves a shotgun nervously. The door,Someone waves a shotgun nervously.,The door,gold,is in which has several pulsing noises coming from.,opens followed by several men on the sides drinking from a rack.,falls into the room.,swings open and people hurry over the radio.\n6765,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11688,Someone captures a letter and makes a dash for the cupboard under the stairs. Someone,Someone captures a letter and makes a dash for the cupboard under the stairs.,Someone,gold,puts his cell down.,hands him someone's hat.,is asleep in bed.,grabs him round the waist.\n6766,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11672,Someone turns the letter over and looks at the coat of arms on the back. He,Someone turns the letter over and looks at the coat of arms on the back.,He,gold,slams both jars on the counter with both hands and smiles.,stares at his wife with horror.,offers the manager's name sign.,throws the cord outside the control mechanism.\n6767,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11690,\"More letters burst through the letterbox. Lonely building, a stone hut, people\",More letters burst through the letterbox.,\"Lonely building, a stone hut, people\",gold,\"rolling over, wrapped by patients.\",watch down from the lower platform.,lie near the front.,are fast asleep in a big double bed.\n6768,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11680,Someone hands round a plate of biscuits as someone relaxes in his armchair. Someone,Someone hands round a plate of biscuits as someone relaxes in his armchair.,Someone,gold,stares with grave understanding.,leans in to rest on the cables.,eyes someone's lighter and his skiff.,peers through the net curtains.\n6769,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11692,\"In the room below, someone is asleep on a sofa while someone sprawls on the floor in a sleeping bag. He\",\"In the room below, someone is asleep on a sofa while someone sprawls on the floor in a sleeping bag.\",He,gold,lies across his lap.,adds some candles and glances at the watch on someone's wrist.,comes out from the back and jumps down toward the door.,bites someone's lip.\n6770,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11664,His mother screams with horror. Someone,His mother screams with horror.,Someone,gold,swings back up and down onto the road as he steps past.,sprints off as they start to whistle.,wears a buttoned hole.,spots someone laughing and glares at him suspiciously.\n6771,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95475,11699,\"He steps inside, tucking his pink umbrella into his coat. He\",\"He steps inside, tucking his pink umbrella into his coat.\",He,gold,waits on the front seat of the cargo marina.,rubs his legs as he struggles with his gun.,fits the door back into the frame.,unlocks the window and smiles.\n6772,anetv_0lYwrXV1R3A,2510,The teams stand together around a circle and face off to start the match. Hockey player,The teams stand together around a circle and face off to start the match.,Hockey player,gold,appear in a circle between them holding a disk.,play a game and skate around the ice passing back and forth.,pass by a woman that moves onto a court.,is practicing in the field talking to the camera.\n6773,anetv_0lYwrXV1R3A,2508,The hockey player is escorted from the ice by the coach. A replay,The hockey player is escorted from the ice by the coach.,A replay,gold,of teams is taken a third time and waits for the goal.,shows the hockey player being hit in the face by the puck and he falls to the ice.,of his score and his teammates whispers on the screen.,shows a record of the tournament in slow motion.\n6774,anetv_0lYwrXV1R3A,2509,A replay shows the hockey player being hit in the face by the puck and he falls to the ice. The teams,A replay shows the hockey player being hit in the face by the puck and he falls to the ice.,The teams,gold,break apart and they run to the goal.,switch on the game.,catch up and start gearing up.,stand together around a circle and face off to start the match.\n6775,anetv_0lYwrXV1R3A,2507,A hockey player is injured and is helped up from the ice by the coach. The hockey player,A hockey player is injured and is helped up from the ice by the coach.,The hockey player,gold,is escorted from the ice by the coach.,stand over to look at the red text.,is kicked back on the free player hurling with his other team.,moves low on and begins by holding the ball.\n6776,lsmdc3088_WHATS_YOUR_NUMBER-42011,10449,\"On his way out, someone lifts her up and pins her against the wall in an impassioned kiss. He\",\"On his way out, someone lifts her up and pins her against the wall in an impassioned kiss.\",He,gold,sets her down and goes.,holds a pose at his mansion which does n't work.,\"beams for her location, then draws one to someone who lies motionless in the bed.\",\"takes a small, plastic canister, opens it and dumps the contents.\"\n6777,lsmdc3088_WHATS_YOUR_NUMBER-42011,10450,He sets her down and goes. Someone,He sets her down and goes.,Someone,gold,eyes a display of little sculptures.,\"stands, smiling and sitting on a balcony with his hands held open.\",\"grabs a cell phone, and places it back on the hospital bed.\",picks up the butter and pours it over the kale.\n6778,lsmdc3088_WHATS_YOUR_NUMBER-42011,10451,\"Someone eyes a display of little sculptures. As someone saunters to the stairs, a tall glamorous woman\",Someone eyes a display of little sculptures.,\"As someone saunters to the stairs, a tall glamorous woman\",gold,sits on a love seat.,watches as someone makes her way down a spiral corridor past the chimney and comes into the study.,comes out of someone's apartment.,leading her downstairs.\n6779,lsmdc3088_WHATS_YOUR_NUMBER-42011,10452,\"As someone saunters to the stairs, a tall glamorous woman comes out of someone's apartment. He\",\"As someone saunters to the stairs, a tall glamorous woman comes out of someone's apartment.\",He,gold,produces the sphere just like her.,darts out of view.,gets on and picks up the phone.,hands her a book.\n6780,lsmdc1011_The_Help-78633,221,\"As someone try to stop her, rips her sleeve. Someone's look of horror\",\"As someone try to stop her, rips her sleeve.\",Someone's look of horror,gold,shows the ring through her copy of someone and someone.,falls from the objects room.,comes from the smoking.,is followed by a patronizing smile.\n6781,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7212,Someone looks a little pleased with herself as the dance draws to a close. The gentlemen and ladies,Someone looks a little pleased with herself as the dance draws to a close.,The gentlemen and ladies,gold,are looking tall at their bride.,exit their rooms and get them into sign - service.,held cigars in their room reacting to another presence.,bow and curtsy to each other.\n6782,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7214,Someone takes someone's hand and leads her from the floor. He,Someone takes someone's hand and leads her from the floor.,He,gold,ladles her into the audience.,bows curtly and leaves.,\"remains in her arms, then grips her warrior hand.\",steps into a lit pipe by the prison doors.\n6783,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7213,The gentlemen and ladies bow and curtsy to each other. Someone,The gentlemen and ladies bow and curtsy to each other.,Someone,gold,holds the batons in their hands and throws them on the field.,suddenly goes to stand his attention.,smiles politely and drops the shoe box in the easel.,takes someone's hand and leads her from the floor.\n6784,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7217,\"People stand with a happy group, including someone. Someone\",\"People stand with a happy group, including someone.\",Someone,gold,\"smiles and leaves them, meeting someone.\",throws the ball out.,stands underneath a tumble.,plays a game on tv.\n6785,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7215,\"Someone watches after him, frustratedly. Now, the guests\",\"Someone watches after him, frustratedly.\",\"Now, the guests\",gold,opens the curtains and of someone's house.,emerge from a school.,are gathered in a different room.,concentrate in the passages.\n6786,lsmdc1029_Pride_And_Prejudice_Disk_One-83752,7211,Someone is beginning to look a little agitated as he circles another dancer. Someone,Someone is beginning to look a little agitated as he circles another dancer.,Someone,gold,\"continues to step out of the grating, but she's curled up in the room.\",\"wears a leather robe and veil - bound shoes, the white hat, colorful shorts, and a brush.\",looks a little pleased with herself as the dance draws to a close.,\"descends from the platform into the back of the stage looking rather confused, and notices him yelling.\"\n6787,anetv_-MFzpFMdWZs,6554,A boy shave his right leg with a shaver machine. Then the boy,A boy shave his right leg with a shaver machine.,Then the boy,gold,smiles to brush the back of the razor and head to shave.,listens and pulls his body very straight in the knees.,raises the pants of his left leg and shows both legs while talking.,tries on one of the captions he is using with the shaving razor.\n6788,anetv_-MFzpFMdWZs,16330,The boy shaves his leg when another person walks into frame. The person,The boy shaves his leg when another person walks into frame.,The person,gold,continues tattooing the other's leg.,walks up to the mirror.,continues to work his shoes back and forth.,looks down at his leg.\n6789,anetv_-MFzpFMdWZs,16329,A person is seen sitting on a bed with his leg up. The boy,A person is seen sitting on a bed with his leg up.,The boy,gold,begins shaving his leg with a looking razor.,hands in several moves needed to shave up your beard.,shaves his leg when another person walks into frame.,throws the snow up and down for a long time.\n6790,anetv_o-RbNz6gD5k,18903,A robot plays ping pong against a human. A woman,A robot plays ping pong against a human.,A woman,gold,steps up and points to the girl with a red star.,walks behind the game.,serves a ball beneath a dispenser.,\"hops up from the wall, and is shot.\"\n6791,anetv_o-RbNz6gD5k,5637,Another man stands at the end of the table. The man and the machine,Another man stands at the end of the table.,The man and the machine,gold,begin to fight with the man.,stands at a bar for a few moments.,hit the ball back and forth.,continue sitting on the carpet.\n6792,anetv_o-RbNz6gD5k,5636,A man is using a robotic machine to play table tennis. Another man,A man is using a robotic machine to play table tennis.,Another man,gold,\"picks, and does a stomach birdie.\",is exercising near the gym.,finishes and stands in place.,stands at the end of the table.\n6793,anetv_ssktVpcv9WI,1294,A clip of a tv show is shown with a man sitting at a table with a woman and getting up. He then,A clip of a tv show is shown with a man sitting at a table with a woman and getting up.,He then,gold,walks to the bathroom and notices the chef does n't wash his hands.,demonstrates how to blow out a pebble using a hose.,is shown playing in a room of extremely high scenes about his exercises before getting a tattoo on her arm.,stands up and joins a bag of noodles and toppings from table to man.\n6794,anetv_ssktVpcv9WI,17267,A man and woman are sitting at a dinner table. A man,A man and woman are sitting at a dinner table.,A man,gold,is shoveling ice around a house.,holds up a hockey block and serves it.,is pouring a mug onto the table.,gets up and walks to the bathroom.\n6795,anetv_ssktVpcv9WI,1295,He then walks to the bathroom and notices the chef does n't wash his hands. He then,He then walks to the bathroom and notices the chef does n't wash his hands.,He then,gold,does the same thing again.,uses that off for a rest.,puts a towel on the bathtub and wipes off to a toothbrush.,sits back at the table to notice the chef moving his hands and serving food.\n6796,anetv_igrjxhf0XyY,10535,A woman is seen spreading sunscreen on a child's back followed by several shots of sun screen bottles and people putting it on. Scientists,A woman is seen spreading sunscreen on a child's back followed by several shots of sun screen bottles and people putting it on.,Scientists,gold,riding down on a 3 person with them painting their hands to look at all angles while the camera captures them from several angles.,skates move to another woman and ends by walking into frame.,are shown as well as a man speaking to the camera and more people putting sunscreen on others.,close up their hair on the glass are shown followed by people speaking to the camera and moving over to the camera.\n6797,anetv_igrjxhf0XyY,3440,Several clips are shown of sunscreen bottles as well as people rubbing it in. A man,Several clips are shown of sunscreen bottles as well as people rubbing it in.,A man,gold,leads into a living room and pass various furniture.,is then shown ironing board.,speaks to the camera and shows more people.,is then shown playing the drums hanging around the corner and waving to the camera.\n6798,anetv_CP9NQpJD0-Y,1567,A man sits in a room and discusses. The man,A man sits in a room and discusses.,The man,gold,holds up a coffee cup while talking.,walks forward and through the camera again.,stands and lifts his legs and legs up.,begins throwing darts at a flat drum.\n6799,anetv_CP9NQpJD0-Y,1568,The man holds up a coffee cup while talking. The man,The man holds up a coffee cup while talking.,The man,gold,pours paint in the mug.,takes two shots from the man and places the tray in his hands in front of the table.,bite the drink while explaining it.,takes a few drinks from the coffee cup.\n6800,anetv_-faeAVsbBG0,9246,A bunch of other people look confused. The main woman,A bunch of other people look confused.,The main woman,gold,\"wears her helmet - hat, and some gypsy trees raise a group at her clapboard patronizing, or at least six yards away.\",holds up items on the picture.,stops at the end and walks towards the camera.,turns the camera to drain the mop.\n6801,anetv_-faeAVsbBG0,5404,A second woman stops and joins the woman in examining the object. All of the people,A second woman stops and joins the woman in examining the object.,All of the people,gold,are at the bottom having the balls but continue dancing.,stop as the exercise ends.,have been cheered off.,are shown standing and dancing with each other.\n6802,anetv_-faeAVsbBG0,5402,A group of people exercise together with some sort of step implement. One woman in the background,A group of people exercise together with some sort of step implement.,One woman in the background,gold,watches as each person continue to run.,is running with mats behind the puck.,\"is talking then, dancing.\",stops exercising and examines an object.\n6803,anetv_-faeAVsbBG0,5403,One woman in the background stops exercising and examines an object. A second woman,One woman in the background stops exercising and examines an object.,A second woman,gold,is going down downhill.,is shown in various locations getting a haircut.,stops and joins the woman in examining the object.,serve a red ladder with a new shoe.\n6804,anetv_PNQpC_FlE2M,18682,A man in a vest is sitting in a boat. Then the man,A man in a vest is sitting in a boat.,Then the man,gold,is working on the rocks while holding a rope attached to the rope.,talks to the camera then holds up the ski.,\"is in the water, holding a stick and a line attached to the boat.\",is holding a small boy from a water.\n6805,anetv_PNQpC_FlE2M,18684,The boat begins to pull him in the water as he begins water skiing. He,The boat begins to pull him in the water as he begins water skiing.,He,gold,ignores his paddling and sails under the water.,bounces up and down and knocked over the water.,climbs up the steps of the boat and flips again on the water.,skis for a long while.\n6806,anetv_PNQpC_FlE2M,18683,\"Then the man is in the water, holding a stick and a line attached to the boat. The boat\",\"Then the man is in the water, holding a stick and a line attached to the boat.\",The boat,gold,maneuvers a few times going super turk again.,begins to pull him in the water as he begins water skiing.,goes into the water and the boat goes back into the water in two directions.,\"is playing, several people are at the edge of the lake.\"\n6807,lsmdc3042_KARATE_KID-20146,11423,\"The image freezes and he becomes the high - kick silhouette on the tallest trophy. At the tournament, someone\",The image freezes and he becomes the high - kick silhouette on the tallest trophy.,\"At the tournament, someone\",gold,reaches into the wooden house.,searches a few slung bottles.,returns with his eye open.,wears the white jacket from someone.\n6808,lsmdc3042_KARATE_KID-20146,11424,\"In the packed stands, audience members wave large flags. On the arena floor, someone\",\"In the packed stands, audience members wave large flags.\",\"On the arena floor, someone\",gold,watches someone's first match anxiously.,and someone take a dance.,\"tilts his head back, then finds four men playing gently at a keyboard.\",\"pours sweat down from a straw platform, his teeth clenched.\"\n6809,lsmdc3042_KARATE_KID-20146,11428,Someone and someone step forward. Someone,Someone and someone step forward.,Someone,gold,lifts someone's jacket from his shoulders very quickly.,\"watches in the distance, a pensive glare looks directly at someone.\",lays him on the ledge.,flips through a soft - cover book.\n6810,lsmdc3042_KARATE_KID-20146,11427,An official snaps a score flag. As someone,An official snaps a score flag.,As someone,gold,\"turns the alien in with a nonplussed glare, alien breaking over the destruction.\",walks out to the gathering guests.,swaggers off the mat.,shoots at his opponent.\n6811,lsmdc3042_KARATE_KID-20146,11426,Someone spins and delivers a roundhouse kick. An official,Someone spins and delivers a roundhouse kick.,An official,gold,spots him as he tries to dismount.,opens the left door.,snaps a score flag.,brings down a woman.\n6812,lsmdc3042_KARATE_KID-20146,11422,His leg swings into a near - vertical kick and he hits the bell. The image freezes and he,His leg swings into a near - vertical kick and he hits the bell.,The image freezes and he,gold,looks again and signs.,flips it over and picks it up again.,becomes the high - kick silhouette on the tallest trophy.,\"ignores someone, unaware that someone just climbs down from the stage's position.\"\n6813,lsmdc3042_KARATE_KID-20146,11425,\"On the arena floor, someone watches someone's first match anxiously. Someone\",\"On the arena floor, someone watches someone's first match anxiously.\",Someone,gold,spins and delivers a roundhouse kick.,\"join the act of an arm wrestling match, which performers teens tv overhead the impressive clips of the game there.\",\"lowers his weapon, kicks his prisoner, and accidentally knocks him out.\",finds himself dressed differently.\n6814,lsmdc3042_KARATE_KID-20146,11430,The boys plant their fists against their opposite palms. Someone,The boys plant their fists against their opposite palms.,Someone,gold,lowers his little gaze.,pulls another black owl off his back.,glances over his shoulder at someone.,stops - - something starts and smoke.\n6815,lsmdc3042_KARATE_KID-20146,11420,Someone beams as her father closes the door. Someone,Someone beams as her father closes the door.,Someone,gold,is held in her chest.,holds his sword in his hand as he slowly steps toward the cemetery.,watches the penguins run through the building.,lifts his brow and looks to someone.\n6816,lsmdc3042_KARATE_KID-20146,11418,He jerks his head in someone's direction. Someone,He jerks his head in someone's direction.,Someone,gold,soldier aims and aims his gun at his armored vest.,punches someone and holds him back.,gives a relieved smile.,fixes his coat on the fence as people walk past.\n6817,lsmdc3042_KARATE_KID-20146,11417,Someone peers up at her father. He,Someone peers up at her father.,He,gold,\"becomes warmly, and cries.\",looks at the cash then hits it.,\"swallows, then notices her moist gaze.\",jerks his head in someone's direction.\n6818,lsmdc3042_KARATE_KID-20146,11421,\"Someone lifts his brow and looks to someone. In the courtyard, someone\",Someone lifts his brow and looks to someone.,\"In the courtyard, someone\",gold,looks back at the grave.,glares up at the bell dangling overhead.,picks up a stiff cloth and lays it across the spread.,continues reading.\n6819,anetv_ZuHwSBCjfds,16001,\"News clippings of a water polo player are shown, as well as images and stills. We then\",\"News clippings of a water polo player are shown, as well as images and stills.\",We then,gold,\"see the water polo games in video, as the players try to lob the ball into a net.\",see the cars ranging from the city in a marathon.,see the names and sticks.,see people spraying sunscreen on the backs and being interviewed.\n6820,anetv_pyeTqpj2EPo,16296,He presses buttons on a digital screen. He,He presses buttons on a digital screen.,He,gold,continues to ride the bell.,scrapes away the screens.,eyes put toothbrush in his mouth as someone runs to the bathroom.,\"prepares a large dish of pasta, which he cooks in the machine.\"\n6821,anetv_eSpPY2yMg70,8563,Man is doing gymnastics in a balance beam after a hand stand mak a big jump and lands in the floor. a lor f people,Man is doing gymnastics in a balance beam after a hand stand mak a big jump and lands in the floor.,a lor f people,gold,are in a roofed gym doing flips.,are wearing hats and th ladies are behind him.,is around the court watching the man.,are sitting with other hands and going on the stairs at the bottom.\n6822,anetv_eSpPY2yMg70,8564,A lor f people is around the court watching the man. jury,A lor f people is around the court watching the man.,jury,gold,is sitting on tables on top of stage.,stand out for a futsal shot.,try out on a roofed shuffleboard court.,stand around times and fight off a librarian.\n6823,anetv_eSpPY2yMg70,8562,Man is standingin a roofed gym ready to mak a big jump into a balance beam. man,Man is standingin a roofed gym ready to mak a big jump into a balance beam.,man,gold,is doing gymnastics in a balance beam after a hand stand mak a big jump and lands in the floor.,is standing behind the roofed lifting dumbbells.,is in a gym outside an exercise studio behind watching the bowler stands on a racetrack and is talking to a man.,is the boy laying and standing in green roofed gym in the middle of a lane in a roofed gym.\n6824,anetv_eSpPY2yMg70,14362,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,jumps off the bars and jumps off up the pole toward the pool.,begins doing a gymnastics routine on the balance beam.,\"gets up, moves his body over asphalt and begins to do flips.\",swings one leg over and over.\n6825,anetv_eSpPY2yMg70,14363,He begins doing a gymnastics routine on the balance beam. He,He begins doing a gymnastics routine on the balance beam.,He,gold,spin and landing on stage in the middle.,dismounts and lands on a blue mat next to the beam.,\"does the springs and spins as she flips, heaves her arms off her shoulders, and lands her on the mat.\",takes the other.\n6826,anetv_0gw1Qq3WRbU,15143,Women are in a trampoline doing high jumps to the pool. women,Women are in a trampoline doing high jumps to the pool.,women,gold,are doing somersaults into a pool.,get to the edge of the pool doing long jump.,are on the court getting ready to race.,are running behind a yellow ball.\n6827,anetv_0gw1Qq3WRbU,13057,\"After, the woman several times jumps on the diving board, and then flips backward. Next, the woman\",\"After, the woman several times jumps on the diving board, and then flips backward.\",\"Next, the woman\",gold,take turns pulling the three bars in the air and end by diving.,jumps off the mat and does several jumps and then moves.,stands on his back and jumps flipping in the air and dives in the water.,jumps off the boat and lands to the ground.\n6828,anetv_0gw1Qq3WRbU,13056,\"Then, the woman jumps and flips twice before to dive in the water. After, the woman several times\",\"Then, the woman jumps and flips twice before to dive in the water.\",\"After, the woman several times\",gold,raises his arms in air in a series of cheers.,\"jumps on the diving board, and then flips backward.\",throwing a pole across the room.,dive at rising water.\n6829,anetv_0gw1Qq3WRbU,13055,\"A woman jumps on the diving board, then she flips forward once and dive in the water. Then, the woman\",\"A woman jumps on the diving board, then she flips forward once and dive in the water.\",\"Then, the woman\",gold,jumps and flips twice before to dive in the water.,dives into the pool under the water while riding flips above the water.,holds a ball in her hands and tries to balance it on a mat.,does 2 flips on a board to start spin around and pose with the hula hoop.\n6830,anetv_xkIhTMJ_ThA,10727,Woman is wearing black shorts playing squash in a room. man,Woman is wearing black shorts playing squash in a room.,man,gold,wearing a yellow shirt and playing squash.,is holding a red rag on the floor.,is laying down in the hallway in a room.,is polishing the shoe in the bathroom.\n6831,anetv_xkIhTMJ_ThA,17700,A woman is seen holding a tennis racket in a room when another person comes into the frame. The woman hits the ball and the other man,A woman is seen holding a tennis racket in a room when another person comes into the frame.,The woman hits the ball and the other man,gold,bounces off of the chair.,throws a ball around the object looks around.,helps the woman turn him up.,walks in with a racket.\n6832,anetv_9S9hPRDwi24,4181,A stick is being held from the ground. A man,A stick is being held from the ground.,A man,gold,jumps over and over in a circle with several spectators watching.,\"uses the croquette bat to hit a ball, then places it back to the ground.\",\"shows how to use an object when athletes sit on the ground, and video the man kneeling on the field.\",is sending it to the ground.\n6833,anetv_6UjZaj86bKs,16087,\"They dance together gracefully, shaking hips and rotating their arms. The stage\",\"They dance together gracefully, shaking hips and rotating their arms.\",The stage,gold,ends and her head moves in unison.,is in dawn on the.,comes to end and the baton sticks out in front of the scoreboard.,fades to black as they finish.\n6834,anetv_6UjZaj86bKs,16086,She raises her arms and another dancer appears. They,She raises her arms and another dancer appears.,They,gold,\"dance together gracefully, shaking hips and rotating their arms.\",rise from a covered walkway and vanish.,decide research team ad.,dance in slow motion and touch back on the dog.\n6835,anetv_6UjZaj86bKs,12792,She begins belly dancing with another woman. They,She begins belly dancing with another woman.,They,gold,take off performing stunts on the big mat.,move all over the stage fluidly as they perform.,play to someone in the music clips again.,do her hand posing the other way.\n6836,anetv_6UjZaj86bKs,12791,A woman is kneeling in a dance pose on a stage. She,A woman is kneeling in a dance pose on a stage.,She,gold,begins belly dancing with another woman.,tries to start to do a donut.,continues leading her and ballet.,is dancing off stage while people are there.\n6837,anetv_Zgiq5MK8fQ8,6507,A woman is seen standing next to a frozen car while looking away from the camera. The woman then,A woman is seen standing next to a frozen car while looking away from the camera.,The woman then,gold,begins using a scraper to scrape off the sides.,pours several ingredients from boiling mixer into a bucket and presenting her glass by the camera.,gets on the roof down the mountain.,begins playing the instrument continuously.\n6838,anetv_Zgiq5MK8fQ8,6508,The woman then begins using a scraper to scrape off the sides. The woman,The woman then begins using a scraper to scrape off the sides.,The woman,gold,continues wiping off the side of the car.,continues scraping the car and looking off into the distance.,talk to the camera and continue to get one wheel along.,shows off the excess working in the end with the wheel.\n6839,anetv_sC7xUkNTpP4,2306,Two people walk by in the background. Another black car,Two people walk by in the background.,Another black car,gold,walks by and several people dressed in black play with coffee at home.,appears at the end.,drives by in the background.,\"follows, riding on the man wearing a yellow helmet and two black lines.\"\n6840,anetv_sC7xUkNTpP4,2307,Another black car drives by in the background. Another white car,Another black car drives by in the background.,Another white car,gold,is slowly and turned on the road.,is seen with several people holding bumper cars and holding tubes.,is outside behind him.,drives by in the background.\n6841,anetv_sC7xUkNTpP4,7601,A group of young children play ball on a grassy field. The man rolls the ball and the children,A group of young children play ball on a grassy field.,The man rolls the ball and the children,gold,play to the other side of the sand.,start to help game for the game.,turn to grab the other and watch them play.,take turns kicking it and running around the field.\n6842,anetv_sC7xUkNTpP4,2308,Another white car drives by in the background. The ball,Another white car drives by in the background.,The ball,gold,carries it back and forth to the field.,lies down on the road.,is kicked into the camera.,is then pulled back into a clearing.\n6843,anetv_sC7xUkNTpP4,2304,A white car drives by in the background. A black car,A white car drives by in the background.,A black car,gold,drives by on the front streets of the station.,pulls out of a ramshackle drive town.,drives along the street while draining snow.,drives by in the background.\n6844,anetv_sC7xUkNTpP4,2305,A black car drives by in the background. Two people,A black car drives by in the background.,Two people,gold,walk by in the background.,are outside in front of a board to clean their tires.,train their bikes on a platform in the parking lot.,are playing bagpipe outside.\n6845,anetv_sC7xUkNTpP4,2303,A number of children and adults play some type of ball game in a yard. A white car,A number of children and adults play some type of ball game in a yard.,A white car,gold,comes out of a spot as they play beer pong.,rolls to a stop by a gate.,pulls up behind the wheel.,drives by in the background.\n6846,anetv_sC7xUkNTpP4,7602,The man rolls the ball and the children take turns kicking it and running around the field. A young boy kicks the ball and it,The man rolls the ball and the children take turns kicking it and running around the field.,A young boy kicks the ball and it,gold,falls down while the white watches him laugh with the ball.,sits down in front of the boy.,\"hits the camera, knocking it off balance.\",hits the ball on the middle of the street.\n6847,anetv_uZCov5TG-Y8,10407,A man is ironing a shirt on an ironing board. Bags,A man is ironing a shirt on an ironing board.,Bags,gold,are shown sitting on the bed.,are on stretching in front of him.,spray the contents of the tube and put it to the ceiling.,are shown in the grass.\n6848,lsmdc0001_American_Beauty-45758,19115,\"Suddenly we hear someone trying to open a locked door. Moving swiftly, someone\",Suddenly we hear someone trying to open a locked door.,\"Moving swiftly, someone\",gold,pulls the drapes shut and switches on a light.,\"stops, bending down in synchronized patterns and moves silently toward the threshold.\",grabs onto the side of the bed and knocks back the doors and shoves them into his bedroom.,quickly scrambles up behind the wheel and starts out.\n6849,lsmdc0001_American_Beauty-45758,19116,His room is a haven of high - tech. A state - of - the - art multimedia computer,His room is a haven of high - tech.,A state - of - the - art multimedia computer,gold,has broken the unhurried pattern.,\"crowds his desk, and high - end stereo and video equipment line the shelves, as well as hundreds of cds.\",captures in an observation room being ramshackle clean.,stretches for their targets.\n6850,lsmdc0001_American_Beauty-45758,19117,\"Someone stands outside, eyeing him. Someone\",\"Someone stands outside, eyeing him.\",Someone,gold,holds out a small plastic cup with a cap.,throws a stack of wood at the camera.,looks from picture to wife and spots her.,shuts the door while someone strides through the door.\n6851,lsmdc0016_O_Brother_Where_Art_Thou-55253,18413,\"The three convicts look out at the swampland which begins to show movement, the bowing grass trampled by men and dogs. The flatcar\",\"The three convicts look out at the swampland which begins to show movement, the bowing grass trampled by men and dogs.\",The flatcar,gold,shows off their nails one by one.,drops in the act of people in the crowd.,draws even and slows.,race to their house with the bright spot.\n6852,lsmdc0016_O_Brother_Where_Art_Thou-55253,18411,\"The men turn in unison to look up the track. A small, distant form\",The men turn in unison to look up the track.,\"A small, distant form\",gold,is moving slowly up the track toward them.,is approaching above hogwarts.,is shown floating over the prince's words.,stands atop a golden arch.\n6853,lsmdc0016_O_Brother_Where_Art_Thou-55253,18409,Someone - they come to a rest in swampland at the bottom. They,Someone - they come to a rest in swampland at the bottom.,They,gold,start at the beginning of the cliff.,speed across the buggy.,go straight through the closing applause.,\"shake their heads clear, then rise to their feet in the muck and watch the train recede.\"\n6854,lsmdc0016_O_Brother_Where_Art_Thou-55253,18410,Someone makes a sudden hushing gesture and all listen. The men,Someone makes a sudden hushing gesture and all listen.,The men,gold,\"run off together, silently.\",\"ride up alongside someone, accepting them, gain on their horses.\",listen to their loafer.,turn in unison to look up the track.\n6855,lsmdc0016_O_Brother_Where_Art_Thou-55253,18412,As it draws closer it resolves into a human - propelled flatcar. An ancient black man rhythmically,As it draws closer it resolves into a human - propelled flatcar.,An ancient black man rhythmically,gold,starts a rotating block and holds it up in the air.,levers his arms up and shatters under the dividing wall of the bifrost bridge and curls into a tomb.,pumps its long seesaw handle.,draws a sweat drum between his teeth.\n6856,anetv_WzSZJ-yJX48,5510,Number 69 walks across the field. We,Number 69 walks across the field.,We,gold,\"is shown throwing a javelin really quickly, but by the one.\",ball scores a form.,see number 69 hit the ball.,play hockey with a man picking outdoor wood into a field but with video.\n6857,anetv_WzSZJ-yJX48,5509,Number 99 leaves then goes back to finish talking. Number 69,Number 99 leaves then goes back to finish talking.,Number 69,gold,changes information and then the screen cuts to the upper line.,flips down a high hill different ways.,appears to get into the paper.,walks across the field.\n6858,anetv_WzSZJ-yJX48,5508,Two men talk heatedly until a man comes and separates them. Number 99,Two men talk heatedly until a man comes and separates them.,Number 99,gold,leaves then goes back to finish talking.,is showing how to fix his nails.,moves with a match in various records.,extends ice your way and continue untying.\n6859,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16336,\"Someone goes over to a corner of the room where his workshop is set up a drawing table, several models of modern buildings, bridges, etc. Savagely he\",\"Someone goes over to a corner of the room where his workshop is set up a drawing table, several models of modern buildings, bridges, etc.\",Savagely he,gold,goes to the bar and stops flat on.,\"is hustling several chimney armchair up to the spot on an upper floor, looking behind the corner of the building.\",\"kicks over the models, picks up some books and hurls them into the corner.\",pulls his mask up and thinks about the med executive.\n6860,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16325,\"He sticks the fallen petals in his watch pocket, rearranges the flower, and then turns back to someone. Someone\",\"He sticks the fallen petals in his watch pocket, rearranges the flower, and then turns back to someone.\",Someone,gold,puts the flower in a glass of water on the table beside her bed.,holds a phone above and looks at the bedside of the mysterious man.,moves out of the room and finds a lanky shadowy figure lying on his waist.,rests his face back in his hands as someone eyes his green shades.\n6861,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16319,\"Someone looks after him, puzzled and concerned, then comes over to someone. The knob on the banister comes off in his hand, and for a moment he\",\"Someone looks after him, puzzled and concerned, then comes over to someone.\",\"The knob on the banister comes off in his hand, and for a moment he\",gold,peers into a room to come down the stairs.,has an impulse to hurl it into the living room.,\"sings, using the security cameras.\",stares out at the wreck and huge skyscraper.\n6862,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16338,Someone looks around and sees them staring at him as if he were some unknown wild animal. Someone and the children,Someone looks around and sees them staring at him as if he were some unknown wild animal.,Someone and the children,gold,move through a dark - lit path towards someone.,\"shake someone awake and back off together, only to carry out to visit mistakes.\",\"stare at him, stunned by his furious outburst.\",turn back and roughly.\n6863,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16335,\"Someone is still practicing at the piano, monotonously. The room\",\"Someone is still practicing at the piano, monotonously.\",The room,gold,comes reveals bloody.,\"has suddenly become ominously quiet, the only sound being someone's labored breathing.\",\"is filled with men, drums, hand, and glasses.\",is completely yellow and wider.\n6864,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16324,\"He turns his back to someone, pretending to be tinkering with the flower. He\",\"He turns his back to someone, pretending to be tinkering with the flower.\",He,gold,\"sticks the fallen petals in his watch pocket, rearranges the flower, and then turns back to someone.\",suppresses his skin and fangs.,peeks over the door.,trying to suppress it.\n6865,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16331,Someone speaks quickly in to the phone. But the telephone,Someone speaks quickly in to the phone.,But the telephone,gold,is still pouring from her.,stays glued to his face.,has and backs her quiver.,is suddenly alive with a powerful male voice calling.\n6866,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16337,\"Someone and the children watch, horrified. Someone\",\"Someone and the children watch, horrified.\",Someone,gold,looks around and sees them staring at him as if he were some unknown wild animal.,looks of a statue on the roof.,convulses with toilet paper.,jerks his dad's face then copies as someone heads off.\n6867,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16323,She hands him the fallen petals and the flower. He,She hands him the fallen petals and the flower.,He,gold,looks at the picture and hands it to someone.,pushes it to someone's cheek and sparks his music.,kisses him on the cheek.,\"turns his back to someone, pretending to be tinkering with the flower.\"\n6868,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16332,But the telephone is suddenly alive with a powerful male voice calling. Someone once more,But the telephone is suddenly alive with a powerful male voice calling.,Someone once more,gold,tries to take the phone from him.,comes out of the building.,\"trying to be brave, and does n't know the number.\",speaks in it then pulls something out of the chair and resumes reading.\n6869,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16333,\"Someone once more tries to take the phone from him. But before he can think of an insult to top someone's, we\",Someone once more tries to take the phone from him.,\"But before he can think of an insult to top someone's, we\",gold,'ve been enough man to never forget the word again.,hear a click on the phone.,hear from the camera again.,see someone in the bank.\n6870,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16320,\"The knob on the banister comes off in his hand, and for a moment he has an impulse to hurl it into the living room. Then, he\",\"The knob on the banister comes off in his hand, and for a moment he has an impulse to hurl it into the living room.\",\"Then, he\",gold,tries to throw his shoes inside.,\"replaces the knob, and goes on up the stairs.\",looks up to the other personal activity in the kitchen.,\"is sitting beside a young man with handsome, dark glasses, just fitting black leather mask with broad leather covering eyes.\"\n6871,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16327,\"Someone enters shot, and stands listening to her. He\",\"Someone enters shot, and stands listening to her.\",He,gold,snatches the phone from someone.,shoots a look around the cop neck.,has another glass on her.,turns back to the people and decides to follow him.\n6872,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16321,\"Then, as he sees she is awake, he comes over, sitting on the edge of her bed. She\",\"Then, as he sees she is awake, he comes over, sitting on the edge of her bed.\",She,gold,starts to get out of bed.,gives a stunned look.,\"lingers for a moment, then steps back and looks up.\",spots some horror running across the front of her face as she stares on his carefree - like gaze.\n6873,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16334,\"But before he can think of an insult to top someone's, we hear a click on the phone. He\",\"But before he can think of an insult to top someone's, we hear a click on the phone.\",He,gold,\"is looking down at the mountain with the bagpipes, apparently in his concern.\",\"yells at someone, noisily playing with his vacuum cleaner.\",stands with her snug on his back.,\"rubs his forehead, then notices that the bird's lens still has gone.\"\n6874,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16328,He snatches the phone from someone. She,He snatches the phone from someone.,She,gold,\"pulls it out, and lifts over the stove.\",gives a small nod.,puts a restraining hand on his arm.,collapses to the floor.\n6875,lsmdc0014_Ist_das_Leben_nicht_schoen-54898,16330,Someone succeeds in wresting the phone from someone's hand. Someone,Someone succeeds in wresting the phone from someone's hand.,Someone,gold,raises the flask to someone's face.,speaks quickly in to the phone.,\"clambers up the ladder to see an instructional box box, quietly.\",accost a tiny protruding fragment off it.\n6876,lsmdc3055_PROMETHEUS-26433,3375,\"Sitting at the front, someone uses a tablet to activate a huge 3 - d holographic video. A little dog\",\"Sitting at the front, someone uses a tablet to activate a huge 3 - d holographic video.\",A little dog,gold,grapples slowly front the pretty kid.,accompanies an old man.,is gathered at the model house.,sprints on a country road.\n6877,lsmdc3055_PROMETHEUS-26433,3376,A little dog accompanies an old man. A living area,A little dog accompanies an old man.,A living area,gold,appears before him as he advances.,stands outside of public instruments.,is shown with shops with none zest to the background.,is pointing at people who was enjoying a dog.\n6878,anetv_YH3571KWDpM,3210,A large group of people are seen standing around an indoor gym behind one another. The group then,A large group of people are seen standing around an indoor gym behind one another.,The group then,gold,begin playing with their legs in the center and begin fighting with one another.,begins dancing with one another performing the same moves.,switches to one another and leads into various shots of her impressive martial arts.,begins moving the racket while the camera captures their movements.\n6879,anetv_YH3571KWDpM,3211,The group then begins dancing with one another performing the same moves. The people,The group then begins dancing with one another performing the same moves.,The people,gold,continue to dance around the room while the camera records their movements.,continue moving down the floor and others watch their scores back and fourth.,continue speaking with one another or speak to one another.,continue riding around on the dance while others watch on the side.\n6880,anetv_x1Z_3-X49HY,19768,A close up of a cat is seen sitting in a person's lap. The person then,A close up of a cat is seen sitting in a person's lap.,The person then,gold,begins playing the drums while the camera captures the movements.,picks up a cat's nails and begins clipping the cat's nails.,grabs a pair of clippers and begins cutting the nails of the cat.,begins brushing the other's nails while the camera shows the individual's movements.\n6881,anetv_x1Z_3-X49HY,19769,The person then grabs a pair of clippers and begins cutting the nails of the cat. He,The person then grabs a pair of clippers and begins cutting the nails of the cat.,He,gold,continues cutting the nails and shows off the cat paws in the end.,continues cutting the girl's hair as he talks.,continues by pushing themselves along the wood around and ends by pushing the leaves off.,continues cutting the dog's nails while still moving in and out.\n6882,anetv_Tsht1n005fI,16800,A man is speaking to the camera outside on a field. They,A man is speaking to the camera outside on a field.,They,gold,move around a dojo block.,are running and talking to one another while cleaning his hand.,the weighted cheese onto his plate.,are engaged in a game of soccer.\n6883,anetv_Tsht1n005fI,5715,A man stops and talks to the camera. A man,A man stops and talks to the camera.,A man,gold,squats down and picks up a toothbrush.,points the man's face and tail.,speaks to the camera while demonstrating how to push the workman on the ground.,is indoors talking to people.\n6884,anetv_Tsht1n005fI,16801,They are engaged in a game of soccer. The men,They are engaged in a game of soccer.,The men,gold,put down their swords and begin putting the ball back.,run back and forth hitting the ball.,shake hands again the video subscribe with an coca urging video.,run many times as they get now.\n6885,anetv_qYpb_3oAM0k,9713,A man is sitting down on a chair. He,A man is sitting down on a chair.,He,gold,starts shaving shaving hair with a clipper.,starts playing an accordion in his lap.,starts cutting the nails in a hand toy.,is in a barber chair showing how to play tennis.\n6886,anetv_qYpb_3oAM0k,9714,He starts playing an accordion in his lap. He,He starts playing an accordion in his lap.,He,gold,continues playing the guitar while the people stand still.,stops playing and looks at the camera.,is moving fast and doing the crunch when they hit the ball.,is talking about how to play a song with his harmonica.\n6887,lsmdc1042_Up_In_The_Air-88732,5732,\"Someone runs up to the church entrance, opens the door and runs up some stairs. He\",\"Someone runs up to the church entrance, opens the door and runs up some stairs.\",He,gold,\"walks into the church and finds someone sitting with her bridesmaids, crying.\",\"watches from the foot of the platform, approaches the hall floor, and runs.\",throws then collapses onto the pavement.,\"kicks the door shut lightly, is on the hood of the car.\"\n6888,lsmdc1042_Up_In_The_Air-88732,5728,\"They sit on the stairs and kiss. In the gym, they\",They sit on the stairs and kiss.,\"In the gym, they\",gold,\"rest in the backroom position, trying to get comfortable.\",watch the basketball team practice.,use a plastic container to plaster the back of a person.,\"do several more moves, vacuuming, and flipping.\"\n6889,lsmdc1042_Up_In_The_Air-88732,5729,\"In the gym, they watch the basketball team practice. People\",\"In the gym, they watch the basketball team practice.\",People,gold,\"flips on a ring, followed by the puck motion followed by players.\",grin at each other.,play halfway between the rows.,crown the game with the two teams.\n6890,lsmdc1042_Up_In_The_Air-88732,5731,Someone drops someone off by the church. Someone,Someone drops someone off by the church.,Someone,gold,holds her gaze.,and the tiger are mesmerized by someone's headlight.,slowly rises from his seat and talks.,\"runs up to the church entrance, opens the door and runs up some stairs.\"\n6891,lsmdc0033_Amadeus-67017,14710,He picks up a page without waiting for a reply. Someone,He picks up a page without waiting for a reply.,Someone,gold,goes into the living room in the surveillance room.,\"reaches in his pocket, his hand reaching into his pocket.\",\"gets out of the window, followed by his daughter.\",opens he workroom door.\n6892,lsmdc0019_Pulp_Fiction-56656,11077,Video screens are in the background. Someone's mouth,Video screens are in the background.,Someone's mouth,gold,\"rises on the remote, ready to start.\",\"is open and the letters, almost with lightning, fills the air quite fast.\",rises as she selects focus.,comes toward a microphone.\n6893,lsmdc0019_Pulp_Fiction-56656,11076,Someone enters on the background. Video screens,Someone enters on the background.,Video screens,gold,show a guy mixing a drink with a cake on a pizza box plate and standing on it.,show the taj mahal.,are in the background.,appear with several of them working at a table with lines and social colors.\n6894,lsmdc0019_Pulp_Fiction-56656,11075,Someone walks toward the house and pulls a note off the door. Someone,Someone walks toward the house and pulls a note off the door.,Someone,gold,leans through the laptop.,enters on the background.,reads someone's wallet.,comes from his bedroom.\n6895,anetv_vF-XFROSmv4,17023,He is in a water body that has some strong waves. He,He is in a water body that has some strong waves.,He,gold,is falling to the ground below.,is showing how to do the strokes with the oars to go against the water current.,are in the air to take the ball.,of the board are seen.\n6896,anetv_vF-XFROSmv4,17022,He is demonstrating the correct way to row the boat while staying afloat. He,He is demonstrating the correct way to row the boat while staying afloat.,He,gold,is in a water body that has some strong waves.,can't drone a tire or blows onto it.,\"keep going to the clubhouse, and some people don't know.\",\"waves, then hits pleasant into panicked surfers.\"\n6897,anetv_vF-XFROSmv4,17024,He is showing how to do the strokes with the oars to go against the water current. He,He is showing how to do the strokes with the oars to go against the water current.,He,gold,\"gets lost in the moment to continue sailing from a long line by foot, after he does he board through the current.\",\"are shown demonstrating impressive techniques of deliberately waist work, for many different divers including archery, measured waters that are short in hockey.\",goes in circles as he demonstrates how to row against powerful waves.,keeps moving them all along the bench carefully.\n6898,anetv_vF-XFROSmv4,17021,There's a man wearing a white colored vest and blue hard hat rowing in a yellow row boat with double sided oar. He,There's a man wearing a white colored vest and blue hard hat rowing in a yellow row boat with double sided oar.,He,gold,allows the mechanics to move his hands back and forth over the waters action.,is demonstrating the correct way to row the boat while staying afloat.,is shown skipping swiftly to the splits and looks high with go boards.,watches as they intertubes.\n6899,lsmdc3040_JULIE_AND_JULIA-17926,8213,Someone shields his head with a pillow. Someone,Someone shields his head with a pillow.,Someone,gold,returns to the kitchen and kicks a trash can.,tries to take the baby from someone.,looks onto the office.,squeezes them back down on the single ax.\n6900,lsmdc3040_JULIE_AND_JULIA-17926,8212,Someone pursues him to the couch. Someone,Someone pursues him to the couch.,Someone,gold,rises into the observation room of the woman in the tv.,shields his head with a pillow.,measures the boy.,strides to one side as he hurls debris to the sand.\n6901,anetv_El4QfhJ6RvE,6264,He is on a jumping contraption. He,He is on a jumping contraption.,He,gold,is standing in some water of a line as he surfs a wave.,discusses a performer using a power drill and then using a perimeter to bungee.,bounces up and down.,\"catches a rope in a bicycle, store back to describing everything.\"\n6902,anetv_El4QfhJ6RvE,6265,He bounces up and down. Eventually he,He bounces up and down.,Eventually he,gold,jumps on a trampoline and races it over while slamming the door.,stops jumping and walks off.,throws two more bags in the air.,lets go to a train.\n6903,anetv_El4QfhJ6RvE,18500,He is wearing a pair of stilts. He,He is wearing a pair of stilts.,He,gold,is running through the streets on his skateboard.,moves his legs in circles across the screen.,are walking on the stilts.,jumps up and down very high on the stilts.\n6904,anetv_a2jpe1QfZdM,5698,Two white oxes pull a cart along a dirt trail. People,Two white oxes pull a cart along a dirt trail.,People,gold,dog jumps up to reach belly open.,are riding on the tops with a train.,are washing their clothes in a river next to the trail.,fly over hills in the desert.\n6905,anetv_cFcrXdvfxoo,17904,A woman is lifting and squatting inside a gym with a barbell on her shoulders. She,A woman is lifting and squatting inside a gym with a barbell on her shoulders.,She,gold,lifts then sits over and over again.,sits on a exercise machine and picks her way out of the clothes.,moves to the camera holding a pumped tick.,takes a gun off a metal bar and bends forward and lifts it up.\n6906,anetv_m4EcgRjCpi8,12380,A man is sitting down on an exercise machine. He,A man is sitting down on an exercise machine.,He,gold,holds a rubik's cube upside down in front of his face.,sits next to him as he talks.,pulls the rope and starts working out.,holds up a can and rubs it on the side.\n6907,anetv_m4EcgRjCpi8,10110,A man begins to row on a rowing machine as several people watch him work out. The video,A man begins to row on a rowing machine as several people watch him work out.,The video,gold,shows a man in a red shirt and leads to participate promo a long board.,shows the baby cruising alone in the modern channel.,points to his time and the man.,ends with the closing captions shown on the screen.\n6908,anetv_m4EcgRjCpi8,12381,He pulls the rope and starts working out. A man in a blue sweater,He pulls the rope and starts working out.,A man in a blue sweater,gold,starts writing on a clip board.,is standing on benches on the guns pole.,opens up a lady.,is leaning over the sink.\n6909,anetv_wvFJbY3SmXI,1026,A person holding a ball spins around and throws it onto the field several times. There,A person holding a ball spins around and throws it onto the field several times.,There,gold,cuts another individual's hair on the sides where she is standing across the field in middle of the field.,continue running around the yard taking pictures.,are people sitting in the stands watching them.,throws the ball into a pile and throws it into the sand.\n6910,anetv_wvFJbY3SmXI,18314,People in the stands are watching him. He,People in the stands are watching him.,He,gold,is making all of the dives over a pool thrown pool several times.,knocks two slices of beer on his desk.,is talking from his camera down a dock.,stands on the field and watches the ball.\n6911,anetv_wvFJbY3SmXI,1027,There are people sitting in the stands watching them. A man in a black shirt,There are people sitting in the stands watching them.,A man in a black shirt,gold,is sitting in a kayak at the bottom of a hill.,is started over the rock.,is sitting in a chair watching.,is talking about darts.\n6912,anetv_twL4mmkCQ0s,17266,\"A backdrop screen with paws and dog bones appear and the words in red and black appear and read teg's canine clippery Dog & Cat Grooming. Clips of different dogs are shown getting baths, haircuts, and brushed while still shots of pictures appear between clips and they all\",A backdrop screen with paws and dog bones appear and the words in red and black appear and read teg's canine clippery Dog & Cat Grooming.,\"Clips of different dogs are shown getting baths, haircuts, and brushed while still shots of pictures appear between clips and they all\",gold,use different kinds of brushes and tattoos.,have a yellow shirt.,\"include company name, website and phone number.\",are on the floor.\n6913,anetv_nfjIQXyL7_Y,18342,A man on the play set walks to the boy and hits the boy camouflage in the head with a chair. the hit boy,A man on the play set walks to the boy and hits the boy camouflage in the head with a chair.,the hit boy,gold,falls to the ground.,stands and runs in front of him on the field.,drives the other moving forward.,falls and watches the race.\n6914,anetv_nfjIQXyL7_Y,14679,Another man hits the man over the head with a metal chair. The man,Another man hits the man over the head with a metal chair.,The man,gold,finishes and pulls the man.,gets out from the sidecar and pulls it under some kind of tarp.,throws the man onto his back on the ground.,swipes at the woman's red hair.\n6915,anetv_nfjIQXyL7_Y,18341,We see a boy in camouflage sitting on the shoulders of another boy and hitting him in the head. A man on the play set,We see a boy in camouflage sitting on the shoulders of another boy and hitting him in the head.,A man on the play set,gold,walks to the boy and hits the boy camouflage in the head with a chair.,makes it down and another girl in the same shirt pass another.,and stand for a second.,loses his board on the same handle while another man walks playing.\n6916,anetv_uE3YXkZoV5c,8835,They arrange discs onto some numbers. One of the men,They arrange discs onto some numbers.,One of the men,gold,videotapes a profound woman next to someone.,plays a game of croquette and laughs to the camera.,picks a boy's hand and closes his right hand.,throws a disc with his stick.\n6917,anetv_uE3YXkZoV5c,8834,Two men walk holding sticks out in front of them. They,Two men walk holding sticks out in front of them.,They,gold,walk behind them and continue playing in the rock.,\"crash into the house, helping camera space.\",sing on cars and steering.,arrange discs onto some numbers.\n6918,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10457,\"Someone reads a second piece of smoldering parchment. Beaming with pleasure, someone\",Someone reads a second piece of smoldering parchment.,\"Beaming with pleasure, someone\",gold,gets a call from the back of the train's yellow cab.,shakes someone's hand and follows someone.,leans over her for a moment.,looks up at the unhatched egg.\n6919,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10448,They each swallow the contents of a test tube and jump inside the circle. They,They each swallow the contents of a test tube and jump inside the circle.,They,gold,put their names into the goblet.,start after the durmstrang.,run around as it lands.,\"aim at the holes, their finger under their shot.\"\n6920,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10465,\"Looking stunned, someone walks the length of the hall, uncomfortably aware of unfriendly looks from his fellow students. Someone\",\"Looking stunned, someone walks the length of the hall, uncomfortably aware of unfriendly looks from his fellow students.\",Someone,gold,turns back to his tv and smiles easing at someone.,keeps his hopeful gaze fixed on someone.,narrows his eyes as someone passes him.,\"meets someone, then beckons her to the door.\"\n6921,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10470,The other three competitors look surprised to see him. Someone,The other three competitors look surprised to see him.,Someone,gold,\"looks up at his opponent face, who grins and nods.\",continues to rouse himself.,turns back to spar.,\"bursts into the room, followed by people.\"\n6922,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10454,\"As he turns away, he catches someone's eye. She\",\"As he turns away, he catches someone's eye.\",She,gold,aims the panel at him.,eyed the woman nervously cups her wand.,\"gives him a faint, admiring smile.\",\"touches her lips with a slight smile, then sips a cup.\"\n6923,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10452,\"Accompanied by a Durmstrang student and their teacher, someone, someone approaches the circle. With a serious look on his face, he\",\"Accompanied by a Durmstrang student and their teacher, someone, someone approaches the circle.\",\"With a serious look on his face, he\",gold,strides forward confidently and puts his name into to goblet.,shifts his groggy eyes.,stands then he slips among a throng of mostly townspeople sculpture.,strides away and smiles at someone.\n6924,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10449,\"They put their names into the goblet. Engulfed in blue flames, people\",They put their names into the goblet.,\"Engulfed in blue flames, people\",gold,take turns running to the ballroom.,stroll along the wall.,are flung out of the circle.,stand on the spot.\n6925,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10469,A pair of iron gates opens in front of someone. The other three competitors,A pair of iron gates opens in front of someone.,The other three competitors,gold,seated at the locked gate of the construction site.,look surprised to see him.,are in the canopied.,rush past his bodyguards.\n6926,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10455,\"She gives him a faint, admiring smile. The students\",\"She gives him a faint, admiring smile.\",The students,gold,cover their heads as they sit past.,press together in their lower trust as they approach the palatial church.,\"brace themselves, pondering, continuing with their mouths.\",assemble excitedly in the great hall.\n6927,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10462,Sparks fly from a piece of scorched parchment. It,Sparks fly from a piece of scorched parchment.,It,gold,\"bobs up like a brother is floating in the water, clicking a horizontal rod in the air.\",greens watch the surrounding structure from funnel to side.,\"another limb, he opens the pocket and peeks out of a window and takes the handbag on the wall.\",flutters down into someone's hand.\n6928,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10463,Someone forces someone to his feet. The piece of parchment,Someone forces someone to his feet.,The piece of parchment,gold,remains firmly on his stump.,is still smoking at the edges.,looks compassionately around someone.,grows crammed and shakes as he looks.\n6929,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10459,\"Smiling broadly, he shakes someone's hand and follows people out of the hall. Someone\",\"Smiling broadly, he shakes someone's hand and follows people out of the hall.\",Someone,gold,\"stands standing at the table with a long, white filing folder.\",rests his cheek against the door frame and retrieves a quilt from his hand.,\"goes into the room and a long - haired woman seated on a bed, smiling.\",uncovers a magnificent crystal and silver trophy.\n6930,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10466,Someone narrows his eyes as someone passes him. Someone,Someone narrows his eyes as someone passes him.,Someone,gold,pats his shoulder reassuringly.,glances between people and someone.,closes her door for him.,turns to the others.\n6931,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10461,Someone steps forward alarmed as the goblet of fire flares once more. Someone,Someone steps forward alarmed as the goblet of fire flares once more.,Someone,gold,blasts her through a window and lands face.,\"rushes after him, digging for the egg.\",takes off his cap and covers his eyes with her fingertips.,turns in surprise as the blue flame leaps high into the air.\n6932,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10464,The piece of parchment is still smoking at the edges. Someone,The piece of parchment is still smoking at the edges.,Someone,gold,struggles to slow down.,thrusts it into someone's hand.,smiles and smiles as he faces the retreating team.,pulls the door down - followed by sailors argue about.\n6933,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10468,Someone gives him a hard stare. A pair of iron gates,Someone gives him a hard stare.,A pair of iron gates,gold,clients the railway resort is pitched behind them.,roll down to find the ugly quarter.,opens in front of someone.,comes out and changes gears.\n6934,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10460,Someone uncovers a magnificent crystal and silver trophy. Someone,Someone uncovers a magnificent crystal and silver trophy.,Someone,gold,is a woman wearing a white collar.,steps forward alarmed as the goblet of fire flares once more.,\"carries it on his way to a cake, barefoot, looking on.\",stifles a slightly eager smile as she digs into her chest.\n6935,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10458,\"Beaming with pleasure, someone shakes someone's hand and follows someone. Smiling broadly, he\",\"Beaming with pleasure, someone shakes someone's hand and follows someone.\",\"Smiling broadly, he\",gold,wipes one finger towards her cheeks.,shakes someone's hand and follows people out of the hall.,lets go of the stone.,angrily clenches his jaw and tips his victim back to someone tackling his sons to the ground.\n6936,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10450,\"They both have white hair and long, white beards. They\",\"They both have white hair and long, white beards.\",They,gold,\"have a new haircut, which has to be much pictures.\",\"grapple with each other, rolling over and over on the stone floor.\",have cream on her cheek to get up kiss.,are doing switching coffee in a morning.\n6937,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6691,10453,\"With a serious look on his face, he strides forward confidently and puts his name into to goblet. As he turns away, he\",\"With a serious look on his face, he strides forward confidently and puts his name into to goblet.\",\"As he turns away, he\",gold,takes his hands away from the lost man.,turns back to regard his surroundings.,catches someone's eye.,raises the glass up to him as if i saw someone chasm has thrown in through its sunglasses.\n6938,anetv_YSnCGTXJtig,889,A man rides a horse into the middle of the ring. the man,A man rides a horse into the middle of the ring.,the man,gold,throws the man up and runs around the area.,\"concentrates as he starts to kick the horse forward, knocking him down.\",walks over to the horse.,strings up a baby bull then jumps off his horse.\n6939,anetv_YSnCGTXJtig,888,A crowd is gathered in a rodeo ring. a man,A crowd is gathered in a rodeo ring.,a man,gold,rides a horse into the middle of the ring.,stretches the leg of a long stick holding a rope behind it.,is aiming towards the horse ring.,hands over the ropes of cellphones.\n6940,anetv_YSnCGTXJtig,1598,\"The calf runs and the man begins to chase him on the horse, once the lasso catches him, he gets off and ties him up. Once he gets on the horse, the calf\",\"The calf runs and the man begins to chase him on the horse, once the lasso catches him, he gets off and ties him up.\",\"Once he gets on the horse, the calf\",gold,\"is not completely secured and begins to move his head, causing others to come out to try and tie him up more.\",stops chasing by a calf and mounts it.,mounts the horse and rides away.,is released and the calf loosens him again.\n6941,anetv_YSnCGTXJtig,1597,\"A man is let out of the whole riding a horse attached to a calf. The calf runs and the man begins to chase him on the horse, once the lasso catches him, he\",A man is let out of the whole riding a horse attached to a calf.,\"The calf runs and the man begins to chase him on the horse, once the lasso catches him, he\",gold,calf in a lasso to mount the horse he left.,drops drops it on a horse and runs on the calf then jumps and ties the calf with a lasso.,\"takes a lasso behind the cow, is at him.\",gets off and ties him up.\n6942,lsmdc0002_As_Good_As_It_Gets-46541,19500,She thinks and then nods. The waiter,She thinks and then nods.,The waiter,gold,refills someone's cue.,is across the room.,goes to meet fire.,goes back with a coin.\n6943,anetv__8m1tlowwKM,5628,The main in red continues playing the piano as the other man carries two bags and leaves. The man,The main in red continues playing the piano as the other man carries two bags and leaves.,The man,gold,puts on a plate and begins to talk a bit about it.,deals more bottles to the camera.,continues sweeping the floor as they pass underneath the tree.,stops playing the piano and waves to the other person as he gets up and leaves.\n6944,anetv__8m1tlowwKM,5627,\"There's another man in a blue shirt standing near him, busy engaged in packing some bags. The main in red\",\"There's another man in a blue shirt standing near him, busy engaged in packing some bags.\",The main in red,gold,sees the other agents man.,runs steadily while he runs anxious by doing a board and taking a tasseled.,continues playing the piano as the other man carries two bags and leaves.,ties his armpits as he arrives at a smiling hotel in a skate park.\n6945,anetv_o8RIoxL9FDE,19043,\"A woman sits in front of a bathroom mirror squishing water in her mouth, as if rinsing her mouth. The woman then\",\"A woman sits in front of a bathroom mirror squishing water in her mouth, as if rinsing her mouth.\",The woman then,gold,spits the water into the sink and looks at her teeth very close in the mirror before the scene fades out.,holds a dry oil close to a person's face as she rubs her legs and looks up and down.,washes the hair with a white towel and dries it.,\"washing dishes and in the bathroom, doing to wash the clothes and the edges of the sink.\"\n6946,anetv_o8RIoxL9FDE,19042,A woman stands in front of a mirror and rinses her mouth before pulling her face close to the mirror and looking at her teeth from a close up angle. A woman,A woman stands in front of a mirror and rinses her mouth before pulling her face close to the mirror and looking at her teeth from a close up angle.,A woman,gold,uses another pair of pink to put on a brush and brushes her teeth and shows off her tongue.,\"pulls a slackline out on her side, pierces her other lip.\",\"puts lotion up on a gray cloth, then shows the boot, then grabs it and cuts it to several angles.\",\"sits in front of a bathroom mirror squishing water in her mouth, as if rinsing her mouth.\"\n6947,lsmdc3086_UGLY_TRUTH-6148,4513,\"Someone sits on a chair, where he finds someone's knitting. He\",\"Someone sits on a chair, where he finds someone's knitting.\",He,gold,turns and joins her up the stairs.,switches to a little girl.,\"drops it aside with a smirk, then glances up toward the.\",gulps down the whiskey.\n6948,anetv_tnk1skdLN0Q,3375,\"A strong young man is standing in a large open green field preparing to throw a shot put. Once he throws the ball, a man runs out to mark the distance and he\",A strong young man is standing in a large open green field preparing to throw a shot put.,\"Once he throws the ball, a man runs out to mark the distance and he\",gold,throws over several goals during it.,lands using to hit it into the goal.,swings him and throw a man over until he is able to get a shot and on the ring aria of the crowd.,walks to the tent and takes the tape off of his wrist.\n6949,anetv_tnk1skdLN0Q,3376,\"Once he throws the ball, a man runs out to mark the distance and he walks to the tent and takes the tape off of his wrist. Another man who is slightly shorter and larger\",\"Once he throws the ball, a man runs out to mark the distance and he walks to the tent and takes the tape off of his wrist.\",Another man who is slightly shorter and larger,gold,is placing the stick on top with another.,approaches the circle and does the same thing followed by another person.,\", and is lifted up on the stand and puts a hand on the ball.\",while other young lean on the wall taking pictures.\n6950,anetv_dc8pLGl9Ccc,11083,Three men are seen speaking to the camera with one pointing to the other two. The men then,Three men are seen speaking to the camera with one pointing to the other two.,The men then,gold,continue playing while holding a stick and playing at an end.,begin moving dirt all around on the side.,play games with women who are laughing at them.,move their arms and twirl each other around.\n6951,anetv_dc8pLGl9Ccc,11084,The men then play games with women who are laughing at them. Some men get kissed and the others,The men then play games with women who are laughing at them.,Some men get kissed and the others,gold,raise their seats and playing beer pong with each other.,are back turns laughing eventually.,get slapped while still playing and smiling to the camera.,are all standing in a pile then practice the competition successfully.\n6952,lsmdc3071_THE_DESCENDANTS-5412,16287,Someone gives a small nod and goes. Someone,Someone gives a small nod and goes.,Someone,gold,sits across from the door and wanders off.,heads back toward his house.,goes over to someone then kicks him in the comforter.,\"is at the crashed viewpoint tile, sipping from a coffee cup.\"\n6953,lsmdc3071_THE_DESCENDANTS-5412,16280,\"Someone doubles over, burying her face in her hands as her husband looks on sympathetically. Someone\",\"Someone doubles over, burying her face in her hands as her husband looks on sympathetically.\",Someone,gold,sleeps with her shoes slung around her shoulder.,pulls a chair out from a nearby table and sits facing his friends.,moves into her arms and runs her feet down to the ceiling.,and his father moving their hand forward.\n6954,lsmdc3071_THE_DESCENDANTS-5412,16291,He approaches the pool area where his daughters share a lounge chair. A teen boy,He approaches the pool area where his daughters share a lounge chair.,A teen boy,gold,stands behind him in one of the chatting guests.,sits on his knees.,reclines in a chair beside them.,sits on a couch next to someone.\n6955,lsmdc3071_THE_DESCENDANTS-5412,16292,Someone bounds up and clasps it. He,Someone bounds up and clasps it.,He,gold,shakes his hand and throws his head back.,\"punches it, knocking someone to the ground.\",looks behind his father.,throws an arm around someone in a brotherly hug.\n6956,lsmdc3071_THE_DESCENDANTS-5412,16282,\"He leans forward, his elbows on his knees. His gaze\",\"He leans forward, his elbows on his knees.\",His gaze,gold,locked on the wreckage which buster's hump.,remains averted as well as another bottle of pink fluid.,\"fixes on someone, then drops morosely.\",fixed to his figure.\n6957,lsmdc3071_THE_DESCENDANTS-5412,16288,\"Someone heads back toward his house. Now, on a bridge stretching over a sparkling stream, someone\",Someone heads back toward his house.,\"Now, on a bridge stretching over a sparkling stream, someone\",gold,smiles at the headwaiter.,lies flat on his back.,weeps into his hand.,'s motorcycle pulls up outside someone's building.\n6958,lsmdc3071_THE_DESCENDANTS-5412,16290,Someone arrives at the cul - de - sac leading to his driveway. He,Someone arrives at the cul - de - sac leading to his driveway.,He,gold,\"gets out, looks toward the med car and lets himself fully open it.\",walks slowly along the sidewalk.,\"smiles, motioning with the conductor as they stand.\",\"heads toward his home, passing lush flowering shrubs.\"\n6959,lsmdc3071_THE_DESCENDANTS-5412,16279,He shrugs a hand helplessly. Someone,He shrugs a hand helplessly.,Someone,gold,\"doubles over, burying her face in her hands as her husband looks on sympathetically.\",\"glances around, then glances back.\",controls her thighs brace and moves deliberately toward a mannequin.,notices two executives in a box.\n6960,lsmdc3071_THE_DESCENDANTS-5412,16284,Someone's eyes glisten and he gives a shaky nod. He,Someone's eyes glisten and he gives a shaky nod.,He,gold,swallows hard and blinks back tears.,opens into space and sets two empty glasses in the corner.,closes his eyes.,gazes in her direction in watching someone's lips curl into a frown.\n6961,lsmdc3071_THE_DESCENDANTS-5412,16289,\"Keeping his head down, he wipes his eyes and continues across the bridge. Now he\",\"Keeping his head down, he wipes his eyes and continues across the bridge.\",Now he,gold,grips the handle of the entwined mechanism and gazes at the state transport plane.,\"searches a box with a heart - sized rat in the water, then puts it in place in the steam.\",hikes wearily across a healthy lawn bordered by a stone wall.,sits a drawn down a set with a long row of surfboard draped over his living room the next deck.\n6962,lsmdc3071_THE_DESCENDANTS-5412,16281,Someone pulls a chair out from a nearby table and sits facing his friends. He,Someone pulls a chair out from a nearby table and sits facing his friends.,He,gold,shades change on his face.,makes the tea with her and walks down the aisle toward the roulette table.,throws a lighter to someone and walks out of the room.,\"leans forward, his elbows on his knees.\"\n6963,lsmdc3071_THE_DESCENDANTS-5412,16286,Someone catches up to him. Someone,Someone catches up to him.,Someone,gold,gives a small nod and goes.,\"dodges two kicks, knocking his men aside as their serpent pours out.\",shoots an abrupt glance around the command station.,takes out his hand from someone.\n6964,lsmdc3071_THE_DESCENDANTS-5412,16285,Someone heads down the sun - dappled driveway past the goat. Someone,Someone heads down the sun - dappled driveway past the goat.,Someone,gold,rests on his dining table.,escaped as she approaches someone.,\"leaps across the field, watching him reach the house.\",catches up to him.\n6965,lsmdc3071_THE_DESCENDANTS-5412,16283,\"His gaze fixes on someone, then drops morosely. Someone's eyes glisten and he\",\"His gaze fixes on someone, then drops morosely.\",Someone's eyes glisten and he,gold,presses his lips together with a smile.,shakes someone's hand towards her mouth.,gives a shaky nod.,lifts a fist to his chest.\n6966,anetv_bMDyOXygNPM,7583,Several men are seen standing around an indoor court kicking a ball around. People,Several men are seen standing around an indoor court kicking a ball around.,People,gold,are then seen playing instruments together and smiling to one another.,are then seen walking around the yard and hitting a tennis ball.,watch the game on the sidelines as the players continue to run up and down the field.,drop at the hands while still speaking to the camera.\n6967,anetv_qblFXnyqf1o,14811,A woman walks away from the camera in a large yellow room with a hardwood floor. The woman stands in line with others and they,A woman walks away from the camera in a large yellow room with a hardwood floor.,The woman stands in line with others and they,gold,split the ice floor with a child.,perform a large change of clothing.,\"get a union, showing how it works.\",perform a series of dance routines.\n6968,anetv_qblFXnyqf1o,11490,People are dancing together in a room. They,People are dancing together in a room.,They,gold,are kicking their legs up.,joins the living room in a grey jersey.,look fierce and presses their lips together.,are dancing on a bench to cross music.\n6969,anetv_qblFXnyqf1o,11491,They are kicking their legs up. They stop dancing and the woman,They are kicking their legs up.,They stop dancing and the woman,gold,dances back and forth.,is at one point.,assists other people to get him thing.,walks over to the camera.\n6970,anetv_nOvrsb0XyGk,17420,We see a number of men throwing darts and a woman keeping score. The man,We see a number of men throwing darts and a woman keeping score.,The man,gold,jumps onto a court with his case in progress.,plays with the ball while the camera captures his movements.,grabs the darts off the board and walks away.,finishes and a fire appears.\n6971,anetv_nOvrsb0XyGk,17423,The fourth guy shoots and goes. the first guy,The fourth guy shoots and goes.,the first guy,gold,shows us bar square.,takes gel painting his window.,does different springs after taking turns punching.,returns for another chance.\n6972,anetv_nOvrsb0XyGk,17422,\"Another man shoots, grabs his darts and goes. A third guy\",\"Another man shoots, grabs his darts and goes.\",A third guy,gold,shoots darts and goes.,runs into the water while the other paddle runs on his stomach.,bounces the darts to the dartboard.,tosses him a bowling ball in the air.\n6973,anetv_nOvrsb0XyGk,17421,The man grabs the darts off the board and walks away. Another man,The man grabs the darts off the board and walks away.,Another man,gold,walks behind him and is seen cutting on a piece of wood before turning it around.,stands at the end of the board while people next to him.,\"shoots, grabs his darts and goes.\",grabs the ball and sets it on the dartboard.\n6974,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60784,18509,As the boats arrive hundreds of orcs race ashore. Someone,As the boats arrive hundreds of orcs race ashore.,Someone,gold,opens the trap door which slides up.,\"turns, looking back through the window.\",\"steps out, his sword drawn.\",stands at the queue.\n6975,lsmdc3064_SPARKLE_2012-4046,711,\"Someone takes a flash picture of Sister. Later, someone\",Someone takes a flash picture of Sister.,\"Later, someone\",gold,curls the bottom part of the blonde hair.,walks the girls to the car.,makes a pas for another trip in a traffic league.,sleeps beside someone as she holds up her phone at a newsstand.\n6976,lsmdc3064_SPARKLE_2012-4046,712,\"Later, someone walks the girls to the car. Someone\",\"Later, someone walks the girls to the car.\",Someone,gold,shuts the driver's door and pulls out.,come face to face with.,sits at a desk and looks into someone's eyes.,\"hurries out, unbuttoning her's veil.\"\n6977,lsmdc3064_SPARKLE_2012-4046,715,\"In bed, someone writes a song. Now someone and her sisters\",\"In bed, someone writes a song.\",Now someone and her sisters,gold,walk upstairs together like a sleeping someone.,perform at the club.,talk in a hallway.,come to visit someone.\n6978,lsmdc3064_SPARKLE_2012-4046,714,Someone throws an air punch. His opponent,Someone throws an air punch.,His opponent,gold,\"grabs his opponent, who teammate blocks the shuttlecock with someone and his opponent.\",pounds his cue stick on the floor and slams a wad of cash on the table.,grabs his guitar and kicks him in the groin.,is around and grips the tennis bar.\n6979,lsmdc3064_SPARKLE_2012-4046,718,Sister and her sisters perform on stage. The sisters,Sister and her sisters perform on stage.,The sisters,gold,enter with a mailbag.,enter between them on a side table.,stroll straight along a sunny veranda.,throw their hands overhead.\n6980,lsmdc3064_SPARKLE_2012-4046,720,\"Later in the dressing room, Sister drinks a martini. Someone\",\"Later in the dressing room, Sister drinks a martini.\",Someone,gold,\"grins, his demeanor outside.\",goes to the bathroom and enters his room.,\"takes off her glasses, then sets her drink in the air.\",gives someone a kiss on the cheek.\n6981,lsmdc3064_SPARKLE_2012-4046,721,Someone gives someone a kiss on the cheek. Someone,Someone gives someone a kiss on the cheek.,Someone,gold,barges in with a handful of white lilies.,leans over and peeks out her window.,draws a fist into someone's crotch.,admires an elegant couple.\n6982,lsmdc3064_SPARKLE_2012-4046,716,Now someone and her sisters perform at the club. The frustrated opponent,Now someone and her sisters perform at the club.,The frustrated opponent,gold,throws down his cue and storms out.,throws a vase in the palm of his left hand forward.,launches her hand over the bar before getting in.,walks into a friendly duke locker.\n6983,lsmdc3064_SPARKLE_2012-4046,713,Someone shuts the driver's door and pulls out. Someone,Someone shuts the driver's door and pulls out.,Someone,gold,\"walks past them with a new guy, who wears a bulky pole under his chin.\",walks out to the desk where someone's flowers have been just missing.,throws an air punch.,turns to the chord - shaped panel.\n6984,lsmdc1009_Spider-Man3-76616,15228,\"Someone lassos the bomb with a web and hauls it back, explode in someone's face. Someone\",\"Someone lassos the bomb with a web and hauls it back, explode in someone's face.\",Someone,gold,\"strolls along a street, fastening his shirt collar over someone suit.\",\"spell that a man is not tied with the toy, then pulls him free.\",pounds down beside someone.,unwraps the whiskey bottle.\n6985,lsmdc1009_Spider-Man3-76616,15231,Someone hangs up a framed glow up of the front page. Someone,Someone hangs up a framed glow up of the front page.,Someone,gold,watches his nose end close.,comes up behind him.,duct tape edges worn note on the parchment.,dove lot of the creatures attack from the gap in the wall.\n6986,lsmdc1009_Spider-Man3-76616,15229,\"Someone strolls along a street, fastening his shirt collar over someone suit. Several women passing by\",\"Someone strolls along a street, fastening his shirt collar over someone suit.\",Several women passing by,gold,give him the eye.,and out on the stilts.,\"already chatting to women, watching him as he does the same.\",sidewalk sidewalk sit outside next door.\n6987,lsmdc1009_Spider-Man3-76616,15230,\"In the Bugle office, someone's celebrating. Someone\",\"In the Bugle office, someone's celebrating.\",Someone,gold,lifts her very long hair.,arrives at someone's office with a calls phone.,hangs up a framed glow up of the front page.,envelops himself at her face and raises his arms.\n6988,lsmdc1009_Spider-Man3-76616,15227,Someone finds a pumpkin bomb to hand and hauls it after him. Someone,Someone finds a pumpkin bomb to hand and hauls it after him.,Someone,gold,\"puts his hand on his stomach, then leans on bed.\",\"lassos the bomb with a web and hauls it back, explode in someone's face.\",fuss over someone's home infant.,\"hangs up, flash his face, then turns to look at someone, listening.\"\n6989,anetv_5k0KMrksf8c,11332,Two teams are standing at the scrimmage line together waiting to play the game. The game begins and the two teams,Two teams are standing at the scrimmage line together waiting to play the game.,The game begins and the two teams,gold,shoot each other on a soccer field with something on the lane opposite.,play the line with cupcake overlays and showing the proper team.,fight each ferociously in a game of lacrosse.,celebrate getting small and playing for the game.\n6990,anetv_fny1HWXezlE,3335,A small child is seen climbing on a camel as well as a woman in front of him. A man,A small child is seen climbing on a camel as well as a woman in front of him.,A man,gold,runs while riding the horse back and fourth while looking back to the camera.,comes out of the gate to a horse and works its way past the boy.,stands the camel up on it's legs and walks around the area.,is seen rubbing a leg beside him and smiling while laying down on his lap.\n6991,anetv_fny1HWXezlE,3336,A man stands the camel up on it's legs and walks around the area. The man,A man stands the camel up on it's legs and walks around the area.,The man,gold,\"rides down, the dogs stretch his legs around the man as dogs carry in their hands.\",rides on and tries to help the camel while others are waiting for him.,takes off the ski roller and uses it on the ground below.,continues to walk around with the camels while the camera pans to their movements.\n6992,anetv_5I0K3y27EUM,18564,A woman is seen sitting at the top of the slide with a child. The woman,A woman is seen sitting at the top of the slide with a child.,The woman,gold,begins to swing a swing around the playground.,looks at the camera and begins sliding down.,puts her foot in the water while standing in front of the camera.,is seated on the swing and watches women walk in frame.\n6993,anetv_5I0K3y27EUM,11731,A man and child are sliding down a slide. The both,A man and child are sliding down a slide.,The both,gold,go down the same slide.,are pushed back to the slide.,raise their hands in the air.,go down the slide and continue hiding under the rocks.\n6994,anetv_5I0K3y27EUM,18565,The woman looks at the camera and begins sliding down. Her and the child,The woman looks at the camera and begins sliding down.,Her and the child,gold,\"walks away, kneeling on the floor.\",slide to the bottom.,continue to swing their leg against one side.,stand and focus on people with a woman.\n6995,anetv_iMATWwGyAUM,2364,A person is skiing down the snowy slope. The person,A person is skiing down the snowy slope.,The person,gold,speaks directly to the camera.,gets stuck in rocks in a tube.,passes and falls a waterfall.,falls forwards to the ground to grab the skier.\n6996,anetv_iMATWwGyAUM,2705,\"We return to skiers going down hills, and a man who stops to talk to the camera for an extensive period before skiing more. He\",\"We return to skiers going down hills, and a man who stops to talk to the camera for an extensive period before skiing more.\",He,gold,\"stops and talks again, before the skiing scenes replay.\",images of a river are shown.,is then shown in school and his father is finished.,fades to the side of the surface.\n6997,anetv_iMATWwGyAUM,2363,The credits of the clip is shown. A person,The credits of the clip is shown.,A person,gold,pushes plaster down a wall.,walks into the house on a cliff.,is skiing down the snowy slope.,rides a bicycle attachment down the slope.\n6998,anetv_iMATWwGyAUM,2703,Several views are scene of multiple people skiing down slopes. Advertisements for different companies,Several views are scene of multiple people skiing down slopes.,Advertisements for different companies,gold,are picked up and landed on the street.,vault are shown from other angles.,appear over backgrounds of snow covered mountains.,\"arrive on the subway line, then.\"\n6999,anetv_iMATWwGyAUM,2704,Advertisements for different companies appear over backgrounds of snow covered mountains. We,Advertisements for different companies appear over backgrounds of snow covered mountains.,We,gold,notice two of the mountain rose in south bursts of water.,get up the walk past a woman.,\"return to skiers going down hills, and a man who stops to talk to the camera for an extensive period before skiing more.\",are shown with a long house traveling over a lake.\n7000,anetv_dvzwVrZkDiI,12349,A small child is seen looking up at the camera holding a coffee cup. The girl,A small child is seen looking up at the camera holding a coffee cup.,The girl,gold,mixes ingredients into the top of a glass bowl.,puts a cigarette in her mouth while laughing and laughing.,peers down the mug's glass as well as an ending product.,takes a drink out of the cup and puts it back down.\n7001,anetv_BMa9v2uZBp8,8068,He starts snowboarding down the hill. The man,He starts snowboarding down the hill.,The man,gold,goes down snow a time as he attempts to build the snow.,jumps off the ladder onto the wall and lands in the snow.,jumps on the motorcycle.,lifts the goggles off of his face and smiles.\n7002,anetv_BMa9v2uZBp8,8069,The man lifts the goggles off of his face and smiles. People,The man lifts the goggles off of his face and smiles.,People,gold,are snowboarding down a hill together.,spin in a chair.,see blonde man threatening to shovel the table.,is showing a man in a tire on a professional wooden bench.\n7003,anetv_BMa9v2uZBp8,8067,A man in a coat is pulling a board up a hill of snow. He,A man in a coat is pulling a board up a hill of snow.,He,gold,is demonstrating how to pedal with the pedals.,\"rides slowly on the road, up and running down the hill.\",starts snowboarding down the hill.,bends down and uses a rag to trim the length with the iron.\n7004,anetv_z1tV0-C3IBw,14379,He moves the object back and fourth. He,He moves the object back and fourth.,He,gold,holds the pin from his right hand and bows it.,continues cutting the grass while looking to the camera.,continues on the machine in the end.,picks up the hammer and flips it out.\n7005,anetv_z1tV0-C3IBw,19045,A man is mowing the lawn with a green mower. He,A man is mowing the lawn with a green mower.,He,gold,starts blowing the leaves off a pile raking leaves.,is mowing the lawn with a rake.,is using a black paint mower to mow.,\"is mowing at the side of the road between the street and his sidewalk, pushing the mower back and forth.\"\n7006,anetv_syAccI5soVw,15354,A young girl is seen performing a belly dancing routine in front of a large group of people. The girl,A young girl is seen performing a belly dancing routine in front of a large group of people.,The girl,gold,climbs up over herself and leads into more clips of people playing the instruments.,continues walking around and making her sit down with her arms up.,continues swinging her arms and legs around in front of the audience and ends by bowing and blowing a kiss.,is dancing as she twirls the hula hoop all around her body and ends with her running.\n7007,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10011,The Snitch disappears under the wooden scaffolding supporting the spectators' stands. Someone,The Snitch disappears under the wooden scaffolding supporting the spectators' stands.,Someone,gold,\"pours two abandoned ushering into the cart, then uses it.\",\"flies after it, closely followed by someone who swerves to avoid a solid wooden beam.\",engages in the game of foosball as the local guests enter.,walks over to his seated colleague.\n7008,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10006,\"Someone swoops lower to the grass, but the Bludger follows him closely. Someone\",\"Someone swoops lower to the grass, but the Bludger follows him closely.\",Someone,gold,\"watches, a smug expression on his face.\",\"scrambles up, sweeping the grain stumbling in to someone's face.\",grabs her coat and walks away.,clears the ground and comes out of the stampede.\n7009,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10024,\"Someone is still pursuing the Golden Snitch. As he stretches out his hand to grasp it, a rogue Bludger\",Someone is still pursuing the Golden Snitch.,\"As he stretches out his hand to grasp it, a rogue Bludger\",gold,appears on the side's rim.,flood with his trembling hands.,swims the flames of the fellowship.,smashes into his arm.\n7010,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10026,\"Wincing with pain, he grasps his broomstick between his knees. He\",\"Wincing with pain, he grasps his broomstick between his knees.\",He,gold,stretches out his good hand and grabs the snitch.,sweeps the huge panels on a transparent wall at the center.,sees his targets are heavy with bullets.,raises his gloved hand and lifts it with his feet.\n7011,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10005,Someone is following the game through a pair of binoculars. Chasing after someone the Bludger,Someone is following the game through a pair of binoculars.,Chasing after someone the Bludger,gold,sets him down on the floor.,\"crashes through the towers, one by one.\",keeps staring at him as they go on.,runs back outside and dashes into the small passageway going through them one at a time.\n7012,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10015,\"He looks around in dismay as someone catches him up and gradually overtakes. Now, close behind someone, the heavy Bludger\",He looks around in dismay as someone catches him up and gradually overtakes.,\"Now, close behind someone, the heavy Bludger\",gold,are flung in the fireplace.,crashes into the wooden beams.,continue to snap behind him.,falls out of her box.\n7013,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10021,\"Someone takes the lead again, the Bludger streaks past them both and weaves from side to side in front of them, smashing holes in the sides of the structure. Suddenly, it\",\"Someone takes the lead again, the Bludger streaks past them both and weaves from side to side in front of them, smashing holes in the sides of the structure.\",\"Suddenly, it\",gold,turns and hurtles back towards them.,comes back out and someone climbs over the railing and walks to marley.,tumbles out of the door.,\"whips him out of the air and rolls to a stop, which rests as the windscreen is slashed.\"\n7014,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,9996,\"Someone hulls the Quaffle towards the goal, but the Gryffindor Keeper knocks it safely away. Ducking and diving, a Gryffindor\",\"Someone hulls the Quaffle towards the goal, but the Gryffindor Keeper knocks it safely away.\",\"Ducking and diving, a Gryffindor\",gold,rips away free from the soldier.,glides out toward the restaurant's shore.,comes up as someone leads another boat.,grabs the quaffle and flies with it.\n7015,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10007,\"Someone watches, a smug expression on his face. The Bludger\",\"Someone watches, a smug expression on his face.\",The Bludger,gold,crashes through another tower.,walks slowly toward him.,\"slows up, looking pensive.\",\"heads left, then kneels down heavily on his bedside table.\"\n7016,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10023,He somersaults into the air and lands heavily on the grass of the arena. Someone,He somersaults into the air and lands heavily on the grass of the arena.,Someone,gold,jumps off a bus.,sees someone standing alone at the bar.,is still pursuing the golden snitch.,holds up the golden keys and starts to move the poles together.\n7017,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10002,His captain shouts a warning. The Bludger,His captain shouts a warning.,The Bludger,gold,smashes someone's broomstick to smithereens.,bites into a hook to the back of the ship's cockpit.,- mounted rider appears on the barn.,\"rattles through a window and sways out, landing ready to collapse.\"\n7018,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10027,\"Then he overbalances, falls off, and lands on his back on the soft sand beneath the goal post. His friends\",\"Then he overbalances, falls off, and lands on his back on the soft sand beneath the goal post.\",His friends,gold,rush to join him.,\"stop to stare down at the huge troll, as stiff as the wind.\",stand opposite around him.,meet the swimming pool for the long time.\n7019,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,9999,\"Marking an opponent, someone swoops around the back of a tower. He\",\"Marking an opponent, someone swoops around the back of a tower.\",He,gold,takes a card and places it in her eyes.,hovers watching as well - aimed slytherin pass sends the quaffle flying straight through the goal.,lands in a high chair.,hunches over and supports one of the windows.\n7020,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10010,Someone suddenly sees the Golden Snitch beside someone's head. Then someone,Someone suddenly sees the Golden Snitch beside someone's head.,Then someone,gold,\"lets himself drop a lamp and carries it through a bare, open door.\",stands back back to the table and looks at the sphere.,\"heads for the snitch, closely followed by someone who elbows him out of the way.\",takes a deep breath as it fires between the rafters.\n7021,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10020,\"The Bludger flies over his head and smashes through a wooden support. Someone takes the lead again, the Bludger\",The Bludger flies over his head and smashes through a wooden support.,\"Someone takes the lead again, the Bludger\",gold,- man then gives it to the boy and notices a diadem lying on the ground.,men falling to answering the opponent.,approaches a police cop on the corner of someone's building.,\"streaks past them both and weaves from side to side in front of them, smashing holes in the sides of the structure.\"\n7022,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10009,Someone flies back over the arena to see someone hovering in front of him. Someone suddenly,Someone flies back over the arena to see someone hovering in front of him.,Someone suddenly,gold,lunges at someone and races out of the alley as another diver falls to the ground.,leap from the seats in the back.,looks back at someone.,sees the golden snitch beside someone's head.\n7023,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,9995,\"Hung with heraldic designs, tall spectator towers surround the oval arena of the Quidditch pitch. Someone hulls the Quaffle towards the goal, but the Gryffindor Keeper\",\"Hung with heraldic designs, tall spectator towers surround the oval arena of the Quidditch pitch.\",\"Someone hulls the Quaffle towards the goal, but the Gryffindor Keeper\",gold,are blocked by a defenders.,\"allows itself over and someone makes a quick, accepting gesture before ducking in out of someone's direction.\",slips him into the rising sea.,knocks it safely away.\n7024,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10013,The Snitch is too fast for someone's grasping fingers. Someone,The Snitch is too fast for someone's grasping fingers.,Someone,gold,is still being chased by the heavy wooden bludger.,gives a champagne bow.,is about to raise the professional security flag of his master.,is still stuck underwater.\n7025,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10003,The Bludger smashes someone's broomstick to smithereens. Then it,The Bludger smashes someone's broomstick to smithereens.,Then it,gold,\"withdraws from the forest, following someone.\",\"is thrown, sneering - shaped.\",\"turns and heads straight for someone, chasing after him.\",gets her and her bed goes down.\n7026,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10012,\"Someone flies after it, closely followed by someone who swerves to avoid a solid wooden beam. The Snitch\",\"Someone flies after it, closely followed by someone who swerves to avoid a solid wooden beam.\",The Snitch,gold,is looking through toys from nearby shelves.,\"creature lifts his head into the frost flap, grows bigger and bigger.\",turns deeper in a circle near a dog and blasting him through half targets.,is too fast for someone's grasping fingers.\n7027,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10000,He hovers watching as well - aimed Slytherin pass sends the Quaffle flying straight through the goal. The Slytherin supporters,He hovers watching as well - aimed Slytherin pass sends the Quaffle flying straight through the goal.,The Slytherin supporters,gold,are ecstatic as the points go up on the scoreboard.,\"rush to get him, but coach practice too much for them.\",activate the puck and move on until they block the goal.,bar in excited victory.\n7028,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10016,\"Now, close behind someone, the heavy Bludger crashes into the wooden beams. They\",\"Now, close behind someone, the heavy Bludger crashes into the wooden beams.\",They,gold,\", the giant racing is in the old field, throwing a ball through a few of them.\",become officer and some intervention from afar.,\"alight with the night man, until he wears the blue wetsuit and matching champagne - colored bikini.\",weave over and under the wooden struts.\n7029,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10008,The Bludger crashes through another tower. Someone,The Bludger crashes through another tower.,Someone,gold,thrusts a pistol into the case of the lifeboat.,dangles outside on the runway.,flies back over the arena to see someone hovering in front of him.,\"leaps into the air, propelling the orc over their heads as they run off.\"\n7030,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10014,\"Determined to stay ahead, someone grits his teeth. He\",\"Determined to stay ahead, someone grits his teeth.\",He,gold,looks around in dismay as someone catches him up and gradually overtakes.,sees the key sharply locked.,\"slides out of the rock, bites into it and rolls it.\",tightens the chains on someone's bike.\n7031,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,9998,\"It's knocked away and passed high in the air to a Slytherin. Marking an opponent, someone\",It's knocked away and passed high in the air to a Slytherin.,\"Marking an opponent, someone\",gold,slides past a dozen tears.,swoops around the back of a tower.,lands on the ground in flames.,\"comes to chase, as someone completes a tourniquet.\"\n7032,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10022,\"Suddenly, it turns and hurtles back towards them. He\",\"Suddenly, it turns and hurtles back towards them.\",He,gold,stretches his arms in his arms.,comes down under the rock.,wrestles their green stick and twigs to the ground.,somersaults into the air and lands heavily on the grass of the arena.\n7033,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10017,They weave over and under the wooden struts. Someone,They weave over and under the wooden struts.,Someone,gold,catches up again and bashes someone in the ribs.,turns and turns with a way.,helps with a gift belt.,tugs off a wiping button.\n7034,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10028,His friends rush to join him. The Bludger,His friends rush to join him.,The Bludger,gold,are on a landing below ducking.,spins and blasts him with a wand.,holds someone immediately calculating gaze.,hits the sand beside someone.\n7035,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10029,Someone's arm goes completely limp and floppy. He,Someone's arm goes completely limp and floppy.,He,gold,folds the wrist back on its self.,\"closes his eyes, and gazes downward.\",strides past someone to the empty table.,gets up and runs into someone.\n7036,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,9997,\"Ducking and diving, a Gryffindor grabs the Quaffle and flies with it. It\",\"Ducking and diving, a Gryffindor grabs the Quaffle and flies with it.\",It,gold,limps up to someone.,trundles forward when the commander runs through the jungle.,are flying out onto the deck.,'s knocked away and passed high in the air to a slytherin.\n7037,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10019,\"They fly neck and neck, the Snitch just out of reach. They\",\"They fly neck and neck, the Snitch just out of reach.\",They,gold,enter their own group.,dangle over their whips.,flash past someone with his camera.,shoot over a brick dumpster.\n7038,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92893,10004,\"Then it turns and heads straight for someone, chasing after him. Someone\",\"Then it turns and heads straight for someone, chasing after him.\",Someone,gold,is writing on the lawn against a wall.,\"near, he climbs onto a ledge, and leaps to go through the sunroof.\",is following the game through a pair of binoculars.,\"catches a monuments and immediately picks it up and dashes back past others, trying to suppress a reaction.\"\n7039,anetv_f4IL30BPe2w,1806,A person is seen performing tricks with a frisbee and dog. The man,A person is seen performing tricks with a frisbee and dog.,The man,gold,attempts to throw an object off into the distance while jumping around.,lets go of the frisbee to catch it back up.,spins and throws a frisbee in the air while others continue to bounce it around.,throws the frisbee all around while the dog jumps around him.\n7040,anetv_f4IL30BPe2w,5133,One man and his dog perform several tricks back and fourth with one another using frisbees. The man and dog,One man and his dog perform several tricks back and fourth with one another using frisbees.,The man and dog,gold,cheer by one another while the camera camera captures his movements.,continue running up and down the grass performing tricks and ends with him grabbing the dog.,jumps up off the bridge.,are shown in their underwear as well as speaking to the camera.\n7041,anetv_f4IL30BPe2w,1807,The man throws the frisbee all around while the dog jumps around him. The two,The man throws the frisbee all around while the dog jumps around him.,The two,gold,continue performing tricks back and fourth.,continue to take turns running as well as checking on numerous shots.,continue playing the dog back and fourth.,continue to fight with one another.\n7042,anetv_f4IL30BPe2w,5132,A picture of people holding dogs are shown that lead into people performing tricks with their dogs. One man and his dog,A picture of people holding dogs are shown that lead into people performing tricks with their dogs.,One man and his dog,gold,are seen walking of a room while their dogs catch together and pans around one another as one boy attempts to zoom around.,move back and fourth.,perform several tricks back and fourth with one another using frisbees.,walk on leashes along the side.\n7043,lsmdc3003_40_YEAR_OLD_VIRGIN-1154,5028,Someone tosses his drink over his shoulder and hurls away a cigarette. Now someone,Someone tosses his drink over his shoulder and hurls away a cigarette.,Now someone,gold,tries to pick up speed of the shell as someone knocks it in.,drapes a shirt rolled up over his face revealing a white convertible.,lands on the cooker as the shell trainer serves.,walks his bike past someone's door.\n7044,lsmdc3003_40_YEAR_OLD_VIRGIN-1154,5027,\"Later, the guys head for the exit. Someone\",\"Later, the guys head for the exit.\",Someone,gold,tosses his drink over his shoulder and hurls away a cigarette.,\"winces, overcome with excitement.\",follows him as he joins and adjusts his seat.,goes to the station first.\n7045,lsmdc3048_LITTLE_FOCKERS-23053,12799,\"Someone sneaks after him, disguised in a windbreaker and bucket hat. Someone\",\"Someone sneaks after him, disguised in a windbreaker and bucket hat.\",Someone,gold,\"border a tree, someone moves and relaxes his mouth.\",peers back around the corner.,stands on a log chopping bark.,blows confetti over the urns.\n7046,lsmdc3048_LITTLE_FOCKERS-23053,12798,\"Turning to it, someone reads a text from someone, Can't wait to see you at the hotel tonight. Later someone walks outside, his briefcase\",\"Turning to it, someone reads a text from someone, Can't wait to see you at the hotel tonight.\",\"Later someone walks outside, his briefcase\",gold,pressed against the table.,clutched in one hand.,pressed against his hand.,slung on his shoulder.\n7047,lsmdc1005_Signs-4596,7729,People come out of the house. She,People come out of the house.,She,gold,draws a fork across the dance forehead.,shakes her head as they stroll away from the farmhouse.,sets her bottle down and looks at her for a moment.,marks one tiny hole as the child buries a desktop match on a small table next to them.\n7048,lsmdc1005_Signs-4596,7728,Footage shows people standing in some of the circles. Someone,Footage shows people standing in some of the circles.,Someone,gold,takes a puff of his inhaler.,turns to face drawing.,lie on a big covering conference.,\"thirtyish someone stares at captain, who looks around at someone, and stands so absently, and cradles her head.\"\n7049,lsmdc1005_Signs-4596,7727,17 circles are scattered across a map of India. Footage,17 circles are scattered across a map of India.,Footage,gold,\"sneaks up, spotting an numerous desk portrait of someone with a ring of pink.\",of three kids pats at the bug.,march wide and winding through a meter gateway like a followed plane.,shows people standing in some of the circles.\n7050,lsmdc1005_Signs-4596,7726,A man talks to camera. 17 circles,A man talks to camera.,17 circles,gold,is a capoeria studio.,walk down the aisle.,are scattered across a map of india.,are tiled on open wood.\n7051,anetv_8VPiqCCOPWg,13650,\"The women take turns diving off the high board, flipping as they go. The winner\",\"The women take turns diving off the high board, flipping as they go.\",The winner,gold,turns and swims back to the pool pool.,stands on tight at the end.,poses with a medal as everyone claps.,lands pretty gently and fades in the background.\n7052,anetv_8VPiqCCOPWg,13649,\"We see a scoreboard, then women being prepped for swimming by their coaches. The women\",\"We see a scoreboard, then women being prepped for swimming by their coaches.\",The women,gold,return to their position to shoot the ball.,\"take turns diving off the high board, flipping as they go.\",are reacting as the two men enter the foosball together and take their paintball going out over the air.,gather the ball and throw the ball far beyond the one.\n7053,anetv_8VPiqCCOPWg,13648,The outside of a building is shown. We,The outside of a building is shown.,We,gold,see fraught construction paper and gears that are mounted on a pole.,are on a farm car.,then work through views on the wall.,\"see a scoreboard, then women being prepped for swimming by their coaches.\"\n7054,anetv_Hujj6Q1Et3k,4871,A man wearing headphones stands behind a pair of large drums. The man,A man wearing headphones stands behind a pair of large drums.,The man,gold,comes along and begins talking to the camera.,plays drums with his palms.,raises his lips and starts to lift the weights.,starts playing the guitars.\n7055,anetv_Hujj6Q1Et3k,4872,The man plays drums with his palms. The man,The man plays drums with his palms.,The man,gold,plays on his face and then plays the guitar alone.,plays the harmonica and waves to the camera.,finishes playing the flute.,ceases playing the drums and turns away.\n7056,lsmdc0043_Thelma_and_Luise-68326,3280,\"Someone is studying someone closely as someone squirms in her seat, barely able to contain herself. Someone\",\"Someone is studying someone closely as someone squirms in her seat, barely able to contain herself.\",Someone,gold,muscles someone as she walks out.,is just laughing hysterically.,is standing at the cliff entrance.,drops her bow and looks as if she is going to be worse.\n7057,anetv_8YkCDiVc7RI,6759,Two girls are seen speaking and waving to the camera that lead into them performing several jumps and tricks on a mat. the girls,Two girls are seen speaking and waving to the camera that lead into them performing several jumps and tricks on a mat.,the girls,gold,continues moving back and fourth and leads into people riding around jumping as well as people kicking.,continue taking turns flipping all around the mat in the area as well as speaking to the camera and waving.,continue to kick up one another while performing balance and dancing.,gets on the swing and jump around a set of land arms.\n7058,anetv_0xJPQ1I8-e0,1432,Two rafts are stuck in running water. The people are paddling through the water but they,Two rafts are stuck in running water.,The people are paddling through the water but they,gold,are able to stay upright.,are stuck in one spot.,keep trying to stay upright.,can float from the board again.\n7059,anetv_0xJPQ1I8-e0,1431,The man in blue helmet is paddling through the water current. Two rafts,The man in blue helmet is paddling through the water current.,Two rafts,gold,are pulled by other rows from the boat near a dock.,are stuck in running water.,indoors paddle them in a raft interspersed with the rapids smiles.,are pulling up snow tubing behind some rocks.\n7060,anetv_QWhn9Ncvvso,2298,\"Then, the person puts bacon on a bread and lettuce and tomato on the other bread, then spread peeper and form the sandwich. Next, the person\",\"Then, the person puts bacon on a bread and lettuce and tomato on the other bread, then spread peeper and form the sandwich.\",\"Next, the person\",gold,\"puts bread on the bread, put meat, and bread in a place.\",\"cooks meat, tomatoes, bread, beans, water and cheese.\",\"cuts the sandwich in half, then takes a half and gives a bite.\",stops adding eggs and then pushes the peeler down towards the measuring pot.\n7061,lsmdc1035_The_Adjustment_Bureau-85421,9382,\"He wears a newsboy cap, V - neck, and tie. Someone\",\"He wears a newsboy cap, V - neck, and tie.\",Someone,gold,stares intently at the weakened woman.,smiles at his many supporters.,unbuttons her shirt as he descends into the lower ramp.,plunges into someone's jaguar.\n7062,lsmdc1035_The_Adjustment_Bureau-85421,9386,\"Elsewhere, the young and the newsboy cap studies a slim, hardcover book. He\",\"Elsewhere, the young and the newsboy cap studies a slim, hardcover book.\",He,gold,lowers his peer then grabs his cellphone and holds it up.,\"folds it shut, and answers his cell phone.\",\"stands by his sister's platform, flaps under her chin.\",\"does a final move, then rows.\"\n7063,lsmdc1035_The_Adjustment_Bureau-85421,9387,\"He folds it shut, and answers his cell phone. He\",\"He folds it shut, and answers his cell phone.\",He,gold,picks up the receiver and puts it on someone's stomach.,viewing someone sending a plume of smoke through the window.,puts his radio down.,works his lips under his trim dusting of a moustache.\n7064,lsmdc1035_The_Adjustment_Bureau-85421,9389,\"Now in a conservative hotel suite, someone steps into view, toting a satchel and duffel bag. He later\",\"Now in a conservative hotel suite, someone steps into view, toting a satchel and duffel bag.\",He later,gold,speaks lifting one of her breasts.,leads a cowboy up to the back of a house smiling with children.,\"changed out a stunt, and mounts a ramp bed.\",removes a folder from the satchel and flips it open.\n7065,lsmdc1035_The_Adjustment_Bureau-85421,9384,\"Now indoors, an aide runs to someone's campaign chairman. Someone\",\"Now indoors, an aide runs to someone's campaign chairman.\",Someone,gold,slaps the newspaper shut.,slices a strip of mortar into an palm.,nods and faces someone's goateed form.,joins a guard in a church.\n7066,lsmdc1035_The_Adjustment_Bureau-85421,9390,\"He later removes a folder from the satchel and flips it open. Later still, its contents\",He later removes a folder from the satchel and flips it open.,\"Later still, its contents\",gold,curl into the air and have a champagne blast.,sink through the structure to someone's own hand.,lie untouched on a table as someone stares out a window at the city.,sit in the cockpit with peacock rohirrim on it.\n7067,lsmdc1035_The_Adjustment_Bureau-85421,9391,\"Later still, its contents lie untouched on a table as someone stares out a window at the city. He\",\"Later still, its contents lie untouched on a table as someone stares out a window at the city.\",He,gold,looks up at someone's unflinching.,shoves himself into a snow removal station.,\"gloomily peers toward the sitting area, then picks up a tv remote and hits a button.\",strides down the steps past someone's father.\n7068,lsmdc1035_The_Adjustment_Bureau-85421,9385,\"Someone slaps the newspaper shut. Elsewhere, the young and the newsboy cap\",Someone slaps the newspaper shut.,\"Elsewhere, the young and the newsboy cap\",gold,greets a brisk gesture.,\"studies a slim, hardcover book.\",\"walks down a street, bordered by the shrubs and cross - tall rocks.\",turn their heads across the door.\n7069,lsmdc1035_The_Adjustment_Bureau-85421,9383,\"Someone smiles at his many supporters. Now indoors, an aide\",Someone smiles at his many supporters.,\"Now indoors, an aide\",gold,opens a telegram on his patio and takes a seat on the desk before one of his daughters in a chair by someone.,sits in one chair opposite two girls.,\"brings them to a groups, storms out them.\",runs to someone's campaign chairman.\n7070,lsmdc1035_The_Adjustment_Bureau-85421,9388,\"He works his lips under his trim dusting of a moustache. Now in a conservative hotel suite, someone\",He works his lips under his trim dusting of a moustache.,\"Now in a conservative hotel suite, someone\",gold,\"steps into view, toting a satchel and duffel bag.\",watches a solemn expression.,runs down a path in a tiled lobby as the promenade is slanted.,writes on a book.\n7071,lsmdc1035_The_Adjustment_Bureau-85421,9392,\"He gloomily peers toward the sitting area, then picks up a tv remote and hits a button. Someone\",\"He gloomily peers toward the sitting area, then picks up a tv remote and hits a button.\",Someone,gold,watches from the couch.,\"unfolds the comforter, folds his arms wide for a moment, then gazes off excitedly.\",sits almost on the couch.,\"grabs the other, cuts off the half - light, vanishes and pulls the tv off.\"\n7072,lsmdc0004_Charade-47838,5055,Her footsteps echo against the tile and concrete walls. Someone,Her footsteps echo against the tile and concrete walls.,Someone,gold,\"stops and pauses for a moment at a sign indicating two different directions, an arrow for each.\",runs up and wields his sword.,gazes into someone's eyes with a smoldering shell.,looks limp and slow.\n7073,lsmdc0004_Charade-47838,5053,A taxi stands by the curb. Someone,A taxi stands by the curb.,Someone,gold,leaves the hotel and runs to it.,climbs out from the seat of the bus.,hurries to the front door and presses the button.,puts down his briefcase and stands upright.\n7074,lsmdc0004_Charade-47838,5052,As someone continues to run. A taxi,As someone continues to run.,A taxi,gold,passes behind other cars.,passes in front of the bus.,stands by the curb.,arrives at the platform and enters the building.\n7075,lsmdc0004_Charade-47838,5054,Camera leading someone as she runs - - the passageway is nearly empty. Her footsteps,Camera leading someone as she runs - - the passageway is nearly empty.,Her footsteps,gold,arrives at the head of the gryffindor reception.,\"are, but then the stairs.\",\"run, their corpse resting on a tremendous control pillows of muddy clothes.\",echo against the tile and concrete walls.\n7076,lsmdc0004_Charade-47838,5050,\"She presses the button, then notices it is in use. She\",\"She presses the button, then notices it is in use.\",She,gold,spots a busy nursery on the tables.,goes to the stairs and starts down.,\"takes a picture to the wall for a nice old phone tuber, now turns on the cylinders.\",turns off the wheel to get a better view.\n7077,lsmdc0004_Charade-47838,5051,\"Someone pushes the emergency stop button and then starts the cage down. As someone comes off the stairs, passes the elevator gate and\",Someone pushes the emergency stop button and then starts the cage down.,\"As someone comes off the stairs, passes the elevator gate and\",gold,climbs out of the cab as he comes to the chase.,walks to the open door and pulls down under it.,\"starts down toward the lobby, the cage a few feet behind her.\",jumps up to her side with his camera.\n7078,lsmdc0004_Charade-47838,5048,\"She hangs up, looks briefly at someone's body, shudders, then hurries to the door. As someone\",\"She hangs up, looks briefly at someone's body, shudders, then hurries to the door.\",As someone,gold,goes through the open door doorway and follows her to the front door.,leaves her room and goes to the elevator.,\"follows, someone follows her through the window along two stools and in to help.\",\"sits at the booth, someone rushes out of his office and approaches someone to be approached.\"\n7079,lsmdc0004_Charade-47838,5049,As someone leaves her room and goes to the elevator. She,As someone leaves her room and goes to the elevator.,She,gold,\"tries the handle, opens it, and points her gaze to the door, opening it shut.\",\"presses the button, then notices it is in use.\",steps for someone and takes his long tote bag.,\"is forced from the row behind him, his mouth open, a smile of light coming in on his face.\"\n7080,lsmdc0004_Charade-47838,5056,\"Someone stops and pauses for a moment at a sign indicating two different directions, an arrow for each. Someone\",\"Someone stops and pauses for a moment at a sign indicating two different directions, an arrow for each.\",Someone,gold,knows a few miss someone.,is then shown in slow motion while talking several times and standing on the string along the track.,is won by a witch.,\"starts down the platform, looking behind her every few steps.\"\n7081,lsmdc0021_Rear_Window-58520,5115,She turns the wheelchair slightly to her left so that he can see the newlyweds' apartment. Someone,She turns the wheelchair slightly to her left so that he can see the newlyweds' apartment.,Someone,gold,enters with a desperate friend.,\"looks, turns back to her, trying to suppress a chuckle.\",is carrying a little.,is acutely aware of it.\n7082,lsmdc0021_Rear_Window-58520,5116,\"Someone looks, turns back to her, trying to suppress a chuckle. She\",\"Someone looks, turns back to her, trying to suppress a chuckle.\",She,gold,\"follows him and go onward, quickly, unaware of someone and someone behind him.\",straightens the letter and steps on to the terrace.,\"is still staring out the window, as the scene.\",gets a new extension and pulls the trigger.\n7083,anetv_kzm9ckZ5gU0,19741,The man in red crawls to the man in blue and pins him winning the match. We,The man in red crawls to the man in blue and pins him winning the match.,We,gold,continue opens to see his kids hitting the ball across the net.,see a replay of the match.,see the car up close by display.,see the lady smiling wearing a blue ornament.\n7084,anetv_kzm9ckZ5gU0,19739,Two men on a ladder fight in a professional wrestling match. The men,Two men on a ladder fight in a professional wrestling match.,The men,gold,cut and break or engage a match.,flip off the ladder on to the mat.,begin to do the ups and wrestle with their hands.,\"step back the side, then walk away into the darkness.\"\n7085,anetv_kzm9ckZ5gU0,19740,The referee kneels near by. The man in red,The referee kneels near by.,The man in red,gold,starts up another woman's leg.,tries to wash those off.,crawls to the man in blue and pins him winning the match.,practices on his goal.\n7086,lsmdc1001_Flight-71611,1697,The plane shakes and the items fall from overhead bins. Someone,The plane shakes and the items fall from overhead bins.,Someone,gold,is measured out in jars of alcohol.,casts an uneasy sideways glance at someone.,leaves a thin moss wrapped box and a chain locks it on someone's left arm.,whirling wind boats bounce high high above the cheering area.\n7087,anetv_Pcro3S-4EnQ,9816,A boy and a girl are sitting on a table talking to each other. girl,A boy and a girl are sitting on a table talking to each other.,girl,gold,demonstrates karate as the boys move to it.,shows her teeth as the dog and girls gather their firearms.,is on the ice holding a pad filled in an ice cream.,is lining the boy's eye and take out a lipstick from her purse.\n7088,anetv_Pcro3S-4EnQ,9717,Two kids are sitting a table in a library. the girl,Two kids are sitting a table in a library.,the girl,gold,takes eyeliner and and applies it to a boy's eye.,slides a knife around and picks it up.,\"is hard, trying to take a swing.\",is looking down a hole in the water.\n7089,anetv_Pcro3S-4EnQ,9718,The girl takes eyeliner and and applies it to a boy's eye. the boy then,The girl takes eyeliner and and applies it to a boy's eye.,the boy then,gold,wipes her hair on her forehead and brushes the hair with the comb.,goes back to throw in evaluating the bushes and angles.,laughs at his reflection.,moves his hand up to show her profile.\n7090,anetv_30Yk_1Yc7Vk,5915,She begins to shave his hair. The hair,She begins to shave his hair.,The hair,gold,stands clapping as well.,is blow with her hands and words come onto the screen showing them.,falls onto his shoulders.,brushed her face again.\n7091,anetv_30Yk_1Yc7Vk,5913,A man is sitting in a chair. A woman,A man is sitting in a chair.,A woman,gold,is holding a mug.,is standing behind him.,is holding an accordian in her hands.,is getting a tattoo.\n7092,anetv_30Yk_1Yc7Vk,14226,He is wearing a cape and looking into a mirror. A woman,He is wearing a cape and looking into a mirror.,A woman,gold,wears a purple shirt in a navy wooden brimmed.,\"is standing behind him, surfing on the light.\",scrapes the snow from the hat as he looks.,is styling and cutting his hair.\n7093,anetv_30Yk_1Yc7Vk,5914,A woman is standing behind him. She,A woman is standing behind him.,She,gold,starts drying her hair.,removes a mask and sprays it on her face in the foam.,begins to shave his hair.,gets off in the end of the room while working.\n7094,anetv_30Yk_1Yc7Vk,14225,A man is seated in a barber chair. He,A man is seated in a barber chair.,He,gold,is holding a blue paper tray.,talks using a microphone as a man turns around and lights a match.,is wearing a cape and looking into a mirror.,is using an electric razor to work out glue on the floor.\n7095,anetv_p2n_FtzA1gk,2581,A woman is sitting on the edge of a bath tub. She,A woman is sitting on the edge of a bath tub.,She,gold,is scrubbing a shirt with a large towel down the drain.,begins shaving her leg with a razor.,jumps down from the bath tub.,puts the towel on her head and starts washing her hands.\n7096,anetv_p2n_FtzA1gk,2582,She begins shaving her leg with a razor. She,She begins shaving her leg with a razor.,She,gold,stands up on her feet and rubs her feet.,starts getting her hair styled and pans over the powder.,looks at the bottom of the razor.,then dries her face with a towel and shake her hair.\n7097,lsmdc1041_This_is_40-9139,10285,\"Now, sitting on the toilet, someone plays a game on his tablet. Someone\",\"Now, sitting on the toilet, someone plays a game on his tablet.\",Someone,gold,pops out of the mouth and into someone's mouth.,\"imagines him looking at the camera, his eyes locked on the balloon.\",\"eyes appear with the wispy, swollen.\",\"opens the door, dressed in a slinky outfit.\"\n7098,lsmdc1041_This_is_40-9139,10288,Someone returns the partial to a man with a shaved head. He,Someone returns the partial to a man with a shaved head.,He,gold,snaps them in and smiles.,finds the safe and touches his shoulder.,files past the trio and prowls more closely.,raps his knuckles onto the panel.\n7099,anetv_rZu5ZJmAlbI,4230,Man is standing in a backyard and its painting an old wooden fence. man,Man is standing in a backyard and its painting an old wooden fence.,man,gold,is in a sunny day painting a wooden fence.,is behind a large vegetable on the bridge of the gym.,is running inside wearing large wooden bars.,is spraying paint on a yellow wall using a paintbrush.\n7100,anetv_rZu5ZJmAlbI,515,A partially painted fence stands in a backyard. A man,A partially painted fence stands in a backyard.,A man,gold,is painting a tree in the base of the fence.,slides up under the cement.,is laying the stone on a log.,enters with a paint sprayer.\n7101,anetv_rZu5ZJmAlbI,516,A man enters with a paint sprayer. He,A man enters with a paint sprayer.,He,gold,uses a green sharpener to cut his lawn.,uses his brush to clean his hooves.,begins to paint the fence.,knocks a beam back onto a piece of lake area.\n7102,anetv_mL7Ipu-HJ5M,363,The woman then grabs a green and a box of pasta. The lady then,The woman then grabs a green and a box of pasta.,The lady then,gold,begins to stir the tomato sauce and puts greens into it.,mixes the ingredients as well as the camera and she continues dancing on the side.,picks the ball up and eats it with ice cream.,pours water into a hot pot and puts syrup in a bowl into a bowl.\n7103,anetv_mL7Ipu-HJ5M,361,A woman is in a kitchen making a tomato sauce in the kitchen. The woman,A woman is in a kitchen making a tomato sauce in the kitchen.,The woman,gold,stops eating the food using a basket.,leaps holding a plate and is talking about the game.,is showing the camera her plated food.,mix the mixture in the pot and cooks it in a pot.\n7104,anetv_mL7Ipu-HJ5M,364,\"The lady then begins to stir the tomato sauce and puts greens into it. Lastly, the lady\",The lady then begins to stir the tomato sauce and puts greens into it.,\"Lastly, the lady\",gold,adds the skin added to the cake.,brings a plastic cup to eat on a shredded design and rolls the icing.,pours the pasta into the sauce.,removes the red coat of her shoe and gets it in her lap.\n7105,anetv_i3H8cucgXEc,13135,A person is seen riding around on roller blades and performing a grind on a bar. Several more clips,A person is seen riding around on roller blades and performing a grind on a bar.,Several more clips,gold,are shown of people lifting weights and dropping objects.,are shown of the person performing grinds with roller blades as well as other flips and tricks.,are shown of people riding along the water as well as the man riding down the mountain and riding up the mountain.,are shown of people jumping around them and bumping into a man's station.\n7106,anetv_V50vtrHboIE,2691,The girl then speaks to the camera and leads into her spinning a hula hoop around. The woman,The girl then speaks to the camera and leads into her spinning a hula hoop around.,The woman,gold,then shows the gymnast girl on the ends and begins stepping on it as she continuously splits the hoop.,continues speaking to the camera while spinning the hoop and demonstrating how to perform proper moves.,continues to watch women perform around the ceiling in pictures.,continues dancing around the camera.\n7107,anetv_V50vtrHboIE,2690,A woman is seen moving a hula hoop close up in front of the camera. The girl then,A woman is seen moving a hula hoop close up in front of the camera.,The girl then,gold,plays the instrument as well as removes it.,speaks to the camera and leads into her spinning a hula hoop around.,begins taking off her drink and looking away.,swings down on a mat while laying on the ground and struggling to the monkey.\n7108,anetv_TcxOTZ4xnQ4,10875,A girl demonstrates a somersault move in the living room in front of two couches. The girl then,A girl demonstrates a somersault move in the living room in front of two couches.,The girl then,gold,runs to a pink machine then white demonstrates explaining to her chops.,cuts the girl's hair while dipping her hands in a blue makeup box while an image in the violin plays.,uses another dirt broom and pass the rocks very immediately when a man runs by to another woman.,demonstrates more advanced backflip gymnastic moves in a field of grass with houses in a residential neighborhood as the backdrop.\n7109,anetv_TcxOTZ4xnQ4,10874,A girl demonstrates several gymnastic and tumbler moves in a living room and on a green lawn with a line of residential houses as a backdrop. A girl,A girl demonstrates several gymnastic and tumbler moves in a living room and on a green lawn with a line of residential houses as a backdrop.,A girl,gold,takes a blind ribbon and then looks to the camera zoomed in to her.,dances to the floor and receives a sword.,demonstrates a somersault move in the living room in front of two couches.,skates down the sidewalk while it stands in the middle residential right.\n7110,lsmdc3056_PUBLIC_ENEMIES-3618,11498,\"Someone puts on his hat and heads off in the opposite direction. Now at a stone wall, someone, someone, and other men\",Someone puts on his hat and heads off in the opposite direction.,\"Now at a stone wall, someone, someone, and other men\",gold,sit in a secret room holding supplies.,look down at an idling steam locomotive.,walk across a tiled floor floor building.,hurry up to someone's temple.\n7111,lsmdc3056_PUBLIC_ENEMIES-3618,11492,Someone 'gaze follows her as she walks around his vehicle. He,Someone 'gaze follows her as she walks around his vehicle.,He,gold,spits on the ice.,someone strides down a sidewalk and through a gate.,wears a straw boater hat and sports a trim mustache.,man waits for her.\n7112,lsmdc3056_PUBLIC_ENEMIES-3618,11495,Someone reaches into his coat. Someone,Someone reaches into his coat.,Someone,gold,unfolds the page to reveal a handwritten message.,hands someone a glass.,cocks his head and aims his car round.,approaching house of a female lotus house.\n7113,lsmdc3056_PUBLIC_ENEMIES-3618,11496,Someone unfolds the page to reveal a handwritten message. Someone,Someone unfolds the page to reveal a handwritten message.,Someone,gold,takes the drawing from the flower and tapes it.,sets the camera aside.,folds up the note.,pops the letter as white letters appear from his mind.\n7114,lsmdc3056_PUBLIC_ENEMIES-3618,11493,He wears a straw boater hat and sports a trim mustache. He steps out to meet someone and they,He wears a straw boater hat and sports a trim mustache.,He steps out to meet someone and they,gold,walk on another walkway before the advancing line.,go to kiss her.,sit on a roadside park bench.,sway gracefully as well as out for the choir.\n7115,lsmdc3056_PUBLIC_ENEMIES-3618,11497,Someone folds up the note. Someone,Someone folds up the note.,Someone,gold,goes up the stairs to reach an.,autographs it and grabs a pair of paper.,brings a piece of mortar to her plate.,puts on his hat and heads off in the opposite direction.\n7116,lsmdc3056_PUBLIC_ENEMIES-3618,11494,He steps out to meet someone and they sit on a roadside park bench. Someone,He steps out to meet someone and they sit on a roadside park bench.,Someone,gold,reaches into his coat.,follows someone into the scene of the school to the right.,stops in front of him.,looks across at him sitting in the passenger seat.\n7117,lsmdc3085_TRUE_GRIT-40779,7768,\"Clobbered with a rifle butt, someone hits the ground. Someone\",\"Clobbered with a rifle butt, someone hits the ground.\",Someone,gold,knocks someone ping out of his way.,releases his gun and speeds along.,looks up to see someone.,\"congratulates someone, then recoils.\"\n7118,lsmdc3085_TRUE_GRIT-40779,7766,Someone wears a brooding expression. Someone,Someone wears a brooding expression.,Someone,gold,\"wipes his handkerchief out and places his bottle to his brow, then cranes his lips like a dog.\",stares down with a dazed expression.,\"sits down, gives someone a final look.\",stares at him expectantly.\n7119,lsmdc3085_TRUE_GRIT-40779,7767,Smoke rises from the fire between them as someone rises. He,Smoke rises from the fire between them as someone rises.,He,gold,\"flies backwards into the air, the arm of the villain swooping.\",\"pounces, pinning her to the ground.\",climbs back off the broomstick and stands beside the shack.,lingers above the doorway.\n7120,anetv_TfIGKODkpPY,4730,\"There's a man in a blue striped shirt standing with another man in a brown shirt, both getting ready to fly their orange kite. They\",\"There's a man in a blue striped shirt standing with another man in a brown shirt, both getting ready to fly their orange kite.\",They,gold,pull the strings out of the spool and begin flying the kite.,are working around on the field with the rest of the men keeping watch.,are interviewed and driving back and forth across a sign where a cameraman appears in shot long.,are dressed in suits and together.\n7121,anetv_aYfWH960W0Q,17889,An athletic woman is seen running down a track with a large group of people watching her on the sidelines. She,An athletic woman is seen running down a track with a large group of people watching her on the sidelines.,She,gold,leads to her nails and punching out more equipment.,continues running and finishes the race while collapsing on the ground in the end and breathing heavily while crying.,watches with dirt all around the place while the man continues to run down the sand.,walks up to an egg and waves at the camera.\n7122,anetv_aYfWH960W0Q,17890,She continues running and finishes the race while collapsing on the ground in the end and breathing heavily while crying. She sits back up crying and another woman,She continues running and finishes the race while collapsing on the ground in the end and breathing heavily while crying.,She sits back up crying and another woman,gold,\"helps her up, ending with a short clip of a girl running.\",\"appears and the women begin to listen as others stand moments, talk to the camera.\",walks to grab it.,hits the girl in the end.\n7123,anetv_G6ayznrS0tY,2481,Man drinks mouthwash and then is talking to girls with a really fresh breath. man,Man drinks mouthwash and then is talking to girls with a really fresh breath.,man,gold,is walking in a sidewalk being interviewed for various journalists.,\"is in her room talking to the other, who dances in a crowded park.\",is holding a hookah in a mouth and sitting outside laughing and smiling.,is standing in the room talking while wearing a chainsaw.\n7124,anetv_G6ayznrS0tY,18611,He speaks to a woman. He,He speaks to a woman.,He,gold,\"reaches out and touches the left man's lip, then shakes his head.\",climbs into a car and lightly taps the carton's dashboard.,starts walking down an alley.,sits at a makeup chair speaking to a makeup artist.\n7125,anetv_G6ayznrS0tY,18615,He blows his breath into the air. He,He blows his breath into the air.,He,gold,is indeed trying not to hang in the air.,points to the middle of the ship as he takes the fish out of his pocket.,turns away and leaves knocks on the gate.,is laughing and enjoying himself as he hangs out with a group of friends.\n7126,anetv_G6ayznrS0tY,18610,He is walking down the street when a group of reporters ask him questions. He,He is walking down the street when a group of reporters ask him questions.,He,gold,speaks to a woman.,retrieves the someone and makes him stride off.,listen for the uncle.,enters and turns to find someone sitting with her.\n7127,anetv_G6ayznrS0tY,18614,He sprays his mouth with mouthwash. He,He sprays his mouth with mouthwash.,He,gold,takes a drink out of his purse and opens it to each other.,blows his breath into the air.,comes out in a red bob.,fills his breakfast with a napkin and hands them to someone.\n7128,anetv_G6ayznrS0tY,18612,He sits at a makeup chair speaking to a makeup artist. He,He sits at a makeup chair speaking to a makeup artist.,He,gold,\"has a coat on the rack of a house, including with his beard and beard.\",holds his building up on his hands and strikes it.,eats pizza with a group of friends.,comes down to a coffee table that bears a c's number.\n7129,anetv_G6ayznrS0tY,18609,A man swishes some mouthwash in his mouth. He,A man swishes some mouthwash in his mouth.,He,gold,is walking down the street when a group of reporters ask him questions.,clear a box and outro the fan.,fills the crowd with hand soap.,stirs back and forth spraying it with a stick.\n7130,anetv_phDLuo6dYrk,17292,The clear sky is shown before a group of girls appear playing a game of field hockey. The two teams,The clear sky is shown before a group of girls appear playing a game of field hockey.,The two teams,gold,take turns hitting each other in a sunny row.,compete against each other in the building as still images are shown in between the plays.,\"move through a field of sand, looking enjoying themselves in the same location, swimming alone toward the sand.\",stab each other and begin fighting.\n7131,anetv_phDLuo6dYrk,17293,\"The two teams compete against each other in the building as still images are shown in between the plays. As one team gets close to making a goal, a male photographer is shown on the corner of the goal and then a girl\",The two teams compete against each other in the building as still images are shown in between the plays.,\"As one team gets close to making a goal, a male photographer is shown on the corner of the goal and then a girl\",gold,appears at the end of the video making a funny face.,who is moved during a time.,is seen swinging his arms and waving his arms in a circle setting.,is not three.\n7132,anetv_Zso0ZBs2y6E,15320,A person lays out paper on a table and shows the men how to properly put wallpaper on. A man then,A person lays out paper on a table and shows the men how to properly put wallpaper on.,A man then,gold,put on your waist and cut the paper to fit the two strips using the tape.,shows different objects of the man raking more paper to pieces.,pulls out a metal wallpaper with a cloth and places the wallpaper back in a chair.,speaks to the camera and ends with information being presented and the man putting down more paper.\n7133,anetv_Zso0ZBs2y6E,15319,Close ups of fabric are shown and leads to a man putting them on a wall and a woman speaking to a great of men. A person,Close ups of fabric are shown and leads to a man putting them on a wall and a woman speaking to a great of men.,A person,gold,lays out paper on a table and shows the men how to properly put wallpaper on.,is seen with a man moving in and out of frame on both sides and leads into several clips of them playing.,begins ironing shoes and putting a shoe on.,demonstrates how to lift weights at various times.\n7134,anetv_BEtftLo6NKQ,17108,A woman is talking while seated in a chair. She,A woman is talking while seated in a chair.,She,gold,is welding ice on a welding piece of metal.,is applying a snowflake onto the legs.,holds up a cigarette to wrap it around.,hangs up the phone and smiles at the camera.\n7135,anetv_BEtftLo6NKQ,18091,Various shots are then shown of the woman using a mop around a floor and dragging around a bucket that comes with the mop. More shots of her cleaning,Various shots are then shown of the woman using a mop around a floor and dragging around a bucket that comes with the mop.,More shots of her cleaning,gold,are seen of the women and speaking to one another as well as giving other more to the people.,are shown as well as how to clean the rags when they are dirty.,of a roof are shown.,is shown followed by people washing dishes and items into action on a table and a woman mopping the floor.\n7136,anetv_BEtftLo6NKQ,18092,More shots of her cleaning are shown as well as how to clean the rags when they are dirty. She,More shots of her cleaning are shown as well as how to clean the rags when they are dirty.,She,gold,continues to wash out the chef's body while washing them thoroughly and putting them by a white towel.,are shown of people water shots on the sink and working out in various objects.,continues washing the dishes as fast as she can.,\"is then seen again all dressed up and speaking on the phone, ending with her walking away.\"\n7137,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60360,3383,Someone returns someone's smile. betraying his disquiet sadness only when someone looks away. The Fellowship,Someone returns someone's smile. betraying his disquiet sadness only when someone looks away.,The Fellowship,gold,shoots a electricity beneath the surface.,are asleep on their beds.,raises his hand and rests his right hand on his heart.,\"swings her along, looking up to help her with stride.\"\n7138,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60360,3382,Someone looks at someone in despair. Someone,Someone looks at someone in despair.,Someone,gold,is stunned and his eyes crackle.,turns to watch someone appointment off the bench.,\"turns and walks away, the dementors flat on someone's face and standing unconscious in the decree.\",feels someone's love for minas tirith and takes heart.\n7139,anetv_BZAzrFF5emE,5388,A man in the street talks to the camera while he holds a skateboard. The man,A man in the street talks to the camera while he holds a skateboard.,The man,gold,begins playing the same thing.,is using a bottle hand to turn the car.,walks to the grass and stands on the skateboard in the grass.,then rides up a bike.\n7140,anetv_BZAzrFF5emE,5389,The man walks to the grass and stands on the skateboard in the grass. The man,The man walks to the grass and stands on the skateboard in the grass.,The man,gold,comes walking from two other alley.,rides the mower through the grass to make a mowing lawn.,picks up the skateboard and talks to the camera again.,touches the hand stick and bends back to lock it up with only one toy until the red top is really small.\n7141,anetv_BZAzrFF5emE,16419,He points to the board and helmet and leads into him bending down on the grass. He then,He points to the board and helmet and leads into him bending down on the grass.,He then,gold,puts the tube up and puts his hand to his head.,demonstrates how to ride around on the board on the tar as well as falling in the end.,dives into the water and is gently hit by fish by the bottom of a fish.,pulls the bike down left in the middle and performing several flips and tricks on the front.\n7142,anetv_BZAzrFF5emE,5391,The man puts the skateboard on the road and begins to ride it. The man,The man puts the skateboard on the road and begins to ride it.,The man,gold,continues skateboarding on the streets while driving.,lifts the rubber as he talks to an camera.,stops near the camera and starts talking again.,gets back to the fence.\n7143,anetv_BZAzrFF5emE,5390,The man picks up the skateboard and talks to the camera again. The man,The man picks up the skateboard and talks to the camera again.,The man,gold,takes off his skateboard and talks.,cuts the second long grass of a man and the boy mowing the lawn while the camera begins.,puts the skateboard on the road and begins to ride it.,does water ski again.\n7144,anetv_BZAzrFF5emE,16418,A man is seen speaking to the camera while holding a skateboard. He,A man is seen speaking to the camera while holding a skateboard.,He,gold,grabs a tennis skateboard and begins demonstrating several tricks on the skateboard.,has to go down a mountain on the snowboard running past him over the grass.,points to the board and helmet and leads into him bending down on the grass.,continues to hit the skateboard into the car and show several clips in acrobatic speeds.\n7145,anetv_xI_XIVYtERk,17251,A moving cloudy sky with lightning appears before we see white text. Several people,A moving cloudy sky with lightning appears before we see white text.,Several people,gold,are in a sea doing rafts.,\"are shown close up, smoking cigarettes.\",are pushed back to mixing a sand piece of white.,paddle and flying in the water.\n7146,anetv_xI_XIVYtERk,17252,\"Several people are shown close up, smoking cigarettes. Some\",\"Several people are shown close up, smoking cigarettes.\",Some,gold,in the clips are seen and a woman lifts a cup.,talk to the camera.,move in several distance.,are shot out of the car.\n7147,anetv_xI_XIVYtERk,17253,Some talk to the camera. The video,Some talk to the camera.,The video,gold,ends with the words south beach smoke.,stops with a man wearing a white trolley down the long and forested area.,continues to show the clips are shown from cameras.,begins and shows several clips of wind playing in the streets of the public city.\n7148,anetv_gvHQDDF7EGU,13764,A man is seen playing a saxophone and transitions from various locations of the person playing the instrument. The man,A man is seen playing a saxophone and transitions from various locations of the person playing the instrument.,The man,gold,is then seen side by side with himself and more shots of him playing in a room.,\"then plays the drums using his hands while the camera captures his movements, the man continues to sway in motions.\",continues playing the instrument while the man plays the instrument and throws the ball around into the distance.,continues to play an instrument as well as speaking to the camera while he continue to laugh.\n7149,anetv_CdjU2OZri4c,14430,Two different types of flooring is shown. a man,Two different types of flooring is shown.,a man,gold,is shown doing tattoos.,pushes several different tools.,takes an instrument an begins measuring hard wood.,rides an escalator between two cardboard boxes.\n7150,anetv_CdjU2OZri4c,2254,A person is drilling into the ground. They,A person is drilling into the ground.,They,gold,continue to do tricks on the slack line.,continue to play with the head and also tumble down again.,vacuum up what they drilled with a hose.,are flying arrows off the field and dragged onto the field below them.\n7151,anetv_CdjU2OZri4c,14431,A man takes an instrument an begins measuring hard wood. the man then,A man takes an instrument an begins measuring hard wood.,the man then,gold,bends down and start wrestling.,stops and places the ax into the wood.,applies more plaster and ends by holding a stick on the wall.,drills holes in the floor.\n7152,anetv_CdjU2OZri4c,14432,The man then drills holes in the floor. the man,The man then drills holes in the floor.,the man,gold,demonstrates to store plaster on the wall.,installs hard wood flooring.,falls off the knees onto the floor.,brushes up the bottom of the razor then removes the bald lense.\n7153,anetv_CdjU2OZri4c,2255,They vacuum up what they drilled with a hose. They,They vacuum up what they drilled with a hose.,They,gold,begin several food back on a field.,move to a panel and pry as the vacuum.,put them on the wall so they can break the door and disappear in the end.,hit a wood panel into the ground.\n7154,anetv_R6MnhM2omiE,8666,\"The fire is really small at first, but then it grows and gets bigger. After a while the video\",\"The fire is really small at first, but then it grows and gets bigger.\",After a while the video,gold,closes with the man still chasing the ball for some more.,has two children and they run a different room in their different rooms.,ends still showing the fire created by matches and tree branches.,\"is faded, although it's why to glow.\"\n7155,anetv_R6MnhM2omiE,8665,\"The man uses his match to set fire to the wooden logs. The fire is really small at first, but then it\",The man uses his match to set fire to the wooden logs.,\"The fire is really small at first, but then it\",gold,shows no more games within it.,grows and gets bigger.,shows the other half of the fire.,gets stuck in the fire.\n7156,anetv_r8AXq1Q5bn0,18576,Another man watches from the doorway. The man that was talking,Another man watches from the doorway.,The man that was talking,gold,plays the accordion while singing and dancing.,to justin causing a ball to hit.,\"is thrown to the board, being impressed.\",to is sitting in front of the camera with a different boy's hair cut - hair.\n7157,anetv_r8AXq1Q5bn0,10434,A man plays the accordion in an animated way in front of a camera with one onlooker in the background. A man in a baseball cap,A man plays the accordion in an animated way in front of a camera with one onlooker in the background.,A man in a baseball cap,gold,jumps on the beam above him.,is seen talking to the camera.,talks in the field opposite the dark house outdoors.,walks around and stage in front of a tattoo artist holding up a computer.\n7158,anetv_r8AXq1Q5bn0,18577,The man that was talking plays the accordion while singing and dancing. The man watching from the doorway,The man that was talking plays the accordion while singing and dancing.,The man watching from the doorway,gold,gives the man a long kiss.,give him a push.,runs through the room.,begins talking very softly with her hand up a rug.\n7159,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14621,The great eye of someone seems to leap from the fire. Someone,The great eye of someone seems to leap from the fire.,Someone,gold,walks past the bush.,screams from the soldier intended to kill someone.,\"who whips someone, screaming, turns at the burst.\",is bathed in the fiery red light.\n7160,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14618,\"Someone sits up, a worried look on his face. Someone unwraps the palantir and as someone looks on horrified, he\",\"Someone sits up, a worried look on his face.\",\"Someone unwraps the palantir and as someone looks on horrified, he\",gold,gazes intently into it.,takes down the cloth with his hand.,walks up to them.,lowers his alert gaze.\n7161,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14617,A sleeping someone lies with eyes wide open! Someone,A sleeping someone lies with eyes wide open!,Someone,gold,\"sits up, a worried look on his face.\",turns to someone's full arm.,shoves herself through the fireplace but stops dead.,holds on as someone crawls over his father.\n7162,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14624,\"Someone spins away, reeling backwards, the palantir falling from his hands. The palantir\",\"Someone spins away, reeling backwards, the palantir falling from his hands.\",The palantir,gold,\"rolls across the floor, causing everyone in the room to cower back.\",leans onto someone's side and explodes into one free fall.,closes them with their flashlights.,\"turns on the other gunny steps, tugs, and registers down again.\"\n7163,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14623,Someone wakes with a start! Someone,Someone wakes with a start!,Someone,gold,flees from massive sobs.,stand up and join the camcorder.,\"spins away, reeling backwards, the palantir falling from his hands.\",tears from her face.\n7164,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14620,Someone suddenly starts to hyperventilate. The great eye of someone,Someone suddenly starts to hyperventilate.,The great eye of someone,gold,\"leans out of the fireplace and nods, then dives into the water's edge, slowly taking off her glasses.\",seems to leap from the fire.,makes him really severe.,suddenly overtakes the deep yellow cliffs at the docks of hogwarts school.\n7165,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14616,Suddenly he hops out of bed and creeps towards the sleeping form of someone. someone,Suddenly he hops out of bed and creeps towards the sleeping form of someone.,someone,gold,pours something out of the sarcophagus - wrapped watermelon.,\"is sitting up, wiping sleep from his eyes.\",stands by the wall and watches the bird.,swims to a fetal position and presses his staff shut.\n7166,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14619,\"Someone unwraps the palantir and as someone looks on horrified, he gazes intently into it. As someone lays his hands on the crystal, a sickly pale light slowly\",\"Someone unwraps the palantir and as someone looks on horrified, he gazes intently into it.\",\"As someone lays his hands on the crystal, a sickly pale light slowly\",gold,\"turns richard parker from the drafting table, revealing a huge crown - - - like bear gripping an empty shell crystal.\",casually bathes his eye.,spreads from the glass ball onto someone's face.,rises from his face.\n7167,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14622,\"He falls backwards, powerless to release the fiery. Someone\",\"He falls backwards, powerless to release the fiery.\",Someone,gold,grabs the snitch's beak.,wakes with a start!,leans between his legs and powers himself under the floor.,places down the aisle.\n7168,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14625,\"The palantir rolls across the floor, causing everyone in the room to cower back. Someone\",\"The palantir rolls across the floor, causing everyone in the room to cower back.\",Someone,gold,drags someone into his leg.,hears a thud against the fighting winds.,swigs from his beer bottle and umbrella.,\"throws a blanket over it, angry disbelief on his face!\"\n7169,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60567,14626,\"Someone throws a blanket over it, angry disbelief on his face! Someone\",\"Someone throws a blanket over it, angry disbelief on his face!\",Someone,gold,springs up and climbs in.,lifts the hobbit's slumped head.,\"stares at the ground, landing one foot on the ledge.\",\"rushes to someone, who throws her toward the plane.\"\n7170,lsmdc0038_Psycho-67414,18158,She hands the receiver to the Sheriff. He,She hands the receiver to the Sheriff.,He,gold,pays for an answer.,\"takes it, reluctantly, listens to the dim sound of ringing on the other end.\",starts pulling out some hoses.,is dragged from the cloud and hauled.\n7171,anetv_Ny8NDMWfGJk,5682,\"Two of the men have removed the tire from the big red truck and the third one goes to get a tire from a pickup truck. When they're done, they all\",Two of the men have removed the tire from the big red truck and the third one goes to get a tire from a pickup truck.,\"When they're done, they all\",gold,find for small cones.,\"use a wiper to tell more about the blue welded area, and then off down and obliges, nice or cool.\",get inside of the truck and roll away.,stop and holds the glass against their windows.\n7172,anetv_Ny8NDMWfGJk,5681,This video has no audio and these three men are all outdoors. Two of the men have removed the tire from the big red truck and the third one,This video has no audio and these three men are all outdoors.,Two of the men have removed the tire from the big red truck and the third one,gold,goes to get a tire from a pickup truck.,is in the back middle of the building.,is in the car.,is inside the building.\n7173,anetv_Ny8NDMWfGJk,3522,A large red truck is parked by gravel. Men,A large red truck is parked by gravel.,Men,gold,is in a big park with several standing individuals.,glance around and duck.,are driving bumper cars in the road behind them.,gather at the back of the truck.\n7174,anetv_T6KP0pg7qxM,11210,A boy is sitting in a chair behind a counter. A girl,A boy is sitting in a chair behind a counter.,A girl,gold,is sitting in a bathroom sink in front of him.,walks up to the table and puts the cloth around the shoe.,walks into frame with a trashcan.,comes up next to him and tries to feed him cereal.\n7175,anetv_T6KP0pg7qxM,11211,A girl comes up next to him and tries to feed him cereal. He,A girl comes up next to him and tries to feed him cereal.,He,gold,starts throwing darts at a dartboard.,\"picks up the apron, sets it down and sets off on a crowded street and down some hole.\",\"waits loudly, expectantly then goes back to the living room where someone is standing.\",\"reels, holds it up, and then goes back to the ornament.\"\n7176,anetv_9sbiZgFefA4,3248,She talks near a highway. We,She talks near a highway.,We,gold,pass a cute beach wash in a grassy neighborhood.,gets the girls from a store outside the store.,see the ending screen on black.,'re sitting outside for christmas.\n7177,anetv_9sbiZgFefA4,3245,We then see a woman skating down a street in a city. Cars,We then see a woman skating down a street in a city.,Cars,gold,runs across a street and a man takes a shot.,begin to pass the lady.,is seen watching the place.,are supported in a city.\n7178,anetv_9sbiZgFefA4,3246,The lady passes parked cars. The lady,The lady passes parked cars.,The lady,gold,talks as she stands in front of a building door.,looks around and sees the car blowing away away.,mends her elongated metal stick.,shows the lady his foot.\n7179,anetv_9sbiZgFefA4,3244,We see a title screen on black. We then,We see a title screen on black.,We then,gold,see the man in the name of the product in different locations.,see random people sitting on a skateboard and with a man.,see a woman skating down a street in a city.,see a woman put paint in a man and paint the brush.\n7180,anetv_jkaevzzYdP8,16583,A man has dogs on a city street near a car. We,A man has dogs on a city street near a car.,We,gold,see a man in the woods talking into a microphone then interviewing the man with the dogs and see shots of the dogs.,are shown putting the kids in turn before getting in the car.,holds a frisbee crackers to the dog.,and people stand close to camera in various locations.\n7181,anetv_jkaevzzYdP8,16585,We see the dogs run to the men and the interviewer plays with them again. We,We see the dogs run to the men and the interviewer plays with them again.,We,gold,see a closeup to the head of the person.,see a banner across the bottom of the screen and the man kneeling playing with his dogs.,see screen on the screen.,see the same slam appear again.\n7182,anetv_jkaevzzYdP8,14036,One man in a park setting interviews another man in the same park setting who is walking three dogs. A man in a brown vest,One man in a park setting interviews another man in the same park setting who is walking three dogs.,A man in a brown vest,gold,shoots and four other men reach an elevated platform pretending to prevent someone from pulling up.,is sitting at the camera while holding up a bowling bag and grabs a glass.,shows a black braid of one of the young man who pinches the snow from his mouth.,is walking in the park and talking into a microphone in a park setting.\n7183,anetv_jkaevzzYdP8,16584,We see a man in the woods talking into a microphone then interviewing the man with the dogs and see shots of the dogs. The interviewer,We see a man in the woods talking into a microphone then interviewing the man with the dogs and see shots of the dogs.,The interviewer,gold,walks into frame and joins them.,lays back in his car.,plays with the dogs.,shows the names of the girls.\n7184,anetv_jkaevzzYdP8,14037,A man waking four dogs is interviewed by the the man with the microphone who points the microphone toward the man with the dogs when the man with the dogs needs to speak. The dogs,A man waking four dogs is interviewed by the the man with the microphone who points the microphone toward the man with the dogs when the man with the dogs needs to speak.,The dogs,gold,\"stare with one another as the dog runs around him, while several runners are seen walking around along with background dogs.\",chase each other and run back to the owner while the interview takes place before the owner ends by kneeling down beside the dogs.,sweep the fur after the ladies with scissors while a dog hurries to the back.,continue playing with the frisbee and showing the black - and - white title card.\n7185,lsmdc3009_BATTLE_LOS_ANGELES-192,1538,\"From across the street, someone gives a nod. His men\",\"From across the street, someone gives a nod.\",His men,gold,find himself in the big car.,follow him as the horse blocks his path.,\"move out into the open, one of them limping.\",gather in a factory.\n7186,lsmdc3009_BATTLE_LOS_ANGELES-192,1539,\"His men move out into the open, one of them limping. Someone\",\"His men move out into the open, one of them limping.\",Someone,gold,\"races towards a door, extending to pick up the coin and reloads.\",\"guides guerrero, who wears a bloody bandage over his eyes.\",\"stands with someone, shooting down at someone.\",backs away and drops their candlestick into the mud.\n7187,lsmdc3009_BATTLE_LOS_ANGELES-192,1537,Now someone spears around the building. Someone's group,Now someone spears around the building.,Someone's group,gold,walks away from one of the people.,writhe in slow vibrating heap.,smashes through a rock wall.,creeps out after him.\n7188,lsmdc3009_BATTLE_LOS_ANGELES-192,1536,Someone pulls the pin from his grenade. Now someone,Someone pulls the pin from his grenade.,Now someone,gold,leads someone and someone downstairs.,reads the land destroyed.,leads two older men.,spears around the building.\n7189,anetv_YSO5CGeeTmE,10367,A band is marching down a street playing drums. A woman in a black hat,A band is marching down a street playing drums.,A woman in a black hat,gold,is standing on the street watching them.,walks past the front.,is talking into the microphone.,is on the patio doing the moves.\n7190,anetv_YSO5CGeeTmE,10368,A woman in a black hat is standing on the street watching them. People,A woman in a black hat is standing on the street watching them.,People,gold,are standing up watching the band.,are on the beach and several different people are jumping rope.,hold a sign covering the roof window.,is sitting behind a set of drawers getting ready to play before the boy leaves.\n7191,lsmdc3012_BRUNO-4285,10340,A globe shows the Middle East. Someone in street,A globe shows the Middle East.,Someone in street,gold,clips someone following a bank of the route.,holds a basket on her head.,has a flame attached to a large rock.,picks up a bell from someone's boot.\n7192,lsmdc3012_BRUNO-4285,10341,Someone in street holds a basket on her head. A man,Someone in street holds a basket on her head.,A man,gold,looks up to find him smoking up.,enters the dark marble theater.,opens its huge arch.,swings toward the rear.\n7193,anetv_qOi_E_uYCIo,16693,Vodka is shown being poured into a martini glass. A woman,Vodka is shown being poured into a martini glass.,A woman,gold,shows beer making syrup and still shots with vodka.,brings up a martini glass and begins applying a spray soda on her shirt.,\"is behind a bar, showing off bottles of alcohol.\",speaks and night instantly.\n7194,anetv_qOi_E_uYCIo,16694,\"A woman is behind a bar, showing off bottles of alcohol. She\",\"A woman is behind a bar, showing off bottles of alcohol.\",She,gold,demonstrates how to throw in a big place.,picks up a flat piece of metal.,\"mixes the ingredients together, then shakes them up before pouring into a glass filled with ice.\",is making the bowl of lemonade.\n7195,lsmdc3007_A_THOUSAND_WORDS-3477,18332,One woman opens her eyes and peeks sideways at someone who sits in their midst. Other people,One woman opens her eyes and peeks sideways at someone who sits in their midst.,Other people,gold,lift the mask down above their shoulders.,wrinkle their brows as they stare at someone.,appear around the table as the explosion sinks.,win a warm - smug smile on a crowded crowd.\n7196,anetv_IiG80Vp4WyY,899,A man is seen holding an instrument in front of a large stack of instruments and speaking to the camera. The man then,A man is seen holding an instrument in front of a large stack of instruments and speaking to the camera.,The man then,gold,shows several cats resigned eyes then points to the child back and fourth on the machine while laying.,begins playing the drums while pausing to speak to the camera while smiling and walking back and fourth.,begins moving around all around the piano while continuing to play and moving the instrument back and fourth before talking to the camera.,plays the instrument continuously and ends with him pausing and holding the instrument.\n7197,anetv_AtHnNOkaoUk,17385,The men begin pulling a rope and working from the back while the cameraman speaks to the camera. The man,The men begin pulling a rope and working from the back while the cameraman speaks to the camera.,The man,gold,performs with the snow and the man climbs into the side of the lift.,continues to cheer to the night while pausing to speak into the camera and stopping to listen.,continues to pan around the snowy area and watch the men work from behind.,continues playing while the man stands on and shows a close up of the bike.\n7198,anetv_AtHnNOkaoUk,17384,A camera zooms in on a large truck that shows a person walking around from behind as well as another. The men,A camera zooms in on a large truck that shows a person walking around from behind as well as another.,The men,gold,continue crashing back and fourth to one another while the camera watches.,begin pulling a rope and working from the back while the cameraman speaks to the camera.,continue to ride around on different angles as well as walking around.,lead the way around the food table.\n7199,lsmdc3076_THE_SOCIAL_NETWORK-35305,3409,\"Someone squeezes his eye shut, swallows, and shakes his head. He freely\",\"Someone squeezes his eye shut, swallows, and shakes his head.\",He freely,gold,melts out on the low temperature.,rips his hand out of her mouth.,snaps his phone shut.,begins to curl backwards.\n7200,anetv_INmaUkmVK24,17716,A man is seen kneeling down with a razor and looking up towards the camera. The man,A man is seen kneeling down with a razor and looking up towards the camera.,The man,gold,then grabs a frisbee set in front of someone and continues speaking into the camera.,holds up several disposable utensils and shows his hand positions.,shaves off part of his leg and holds up an object while walking away.,continues speaking as he draws a torch and moves himself all along the sides.\n7201,anetv_zFb7PKk_-vA,18622,The other people smile and wave to the camera while showing off the other tubes. The people,The other people smile and wave to the camera while showing off the other tubes.,The people,gold,laugh with one another.,are then shown riding around a large wave while others watch on the side.,continue to ride around the water while the camera pans all around their movements.,continue playing with one another while laughing to one another.\n7202,anetv_zFb7PKk_-vA,18621,A woman is seen speaking to the camera while a group of people sit in tubes around her. The other people,A woman is seen speaking to the camera while a group of people sit in tubes around her.,The other people,gold,move around on her dance boards while moving back and fourth.,\"are then seen shooting a bow and arrow shooting the bow objects at each other, scoring.\",smile and wave to the camera while showing off the other tubes.,stop at the border of the stairs trying to break into them.\n7203,anetv_KzVRgHnpCOQ,16783,The woman puts pads on her feet and begins putting her shoe on. She,The woman puts pads on her feet and begins putting her shoe on.,She,gold,align the shoes back and forth.,puts on another shoe and shows off her feet in the end.,looks into the mirror.,picks up a spray bottle and talks again.\n7204,anetv_KzVRgHnpCOQ,16782,A close up of objects are shown with a person sitting down and taping her feet. The woman,A close up of objects are shown with a person sitting down and taping her feet.,The woman,gold,puts pads on her feet and begins putting her shoe on.,is seen speaking to the camera while showing some more and shows more clips of another man using paint and speaking again.,moves her hands gently up and down.,continues pushing the objects around as well as continuously painting their nails with various colors.\n7205,anetv_2RxbcK90TeA,6559,The two people paddle from the left and pass a line of bushes in front of a mountain. The two people then,The two people paddle from the left and pass a line of bushes in front of a mountain.,The two people then,gold,begin fighting each other in a circle in a grassy field that transitions into splashed words.,slide down the slope and land on a lamp at the bottom of the slope.,paddle further away from the mountain and closer to the middle of the body of water.,shoot around a third shaped door that leads the other boys into the park performing martial arts moves.\n7206,anetv_2RxbcK90TeA,6558,\"The woman is at the front of the canoe paddling and the other person, who is wearing a face covering hat, sits behind the woman. The two people\",\"The woman is at the front of the canoe paddling and the other person, who is wearing a face covering hat, sits behind the woman.\",The two people,gold,\"enjoy their journey in the river in a river in deep waters, held by the man.\",are sitting in tubes in a large stream talking behind them on the beach sometimes drinks from the can in the water.,begin flipping to finish and walk around the boat.,paddle from the left and pass a line of bushes in front of a mountain.\n7207,anetv_2RxbcK90TeA,6557,\"A woman and one other person paddle in an orange canoe in a calm body of water surrounded by mountains, trees, and bushes. The woman is at the front of the canoe paddling and the other person, who is wearing a face covering hat,\",\"A woman and one other person paddle in an orange canoe in a calm body of water surrounded by mountains, trees, and bushes.\",\"The woman is at the front of the canoe paddling and the other person, who is wearing a face covering hat,\",gold,looks back at him.,is holding the sail and swimming with the water.,sits behind the woman.,pours himself into the ocean.\n7208,anetv_QRLye5j54ic,2859,A boy is standing in the tall grass of a field. He,A boy is standing in the tall grass of a field.,He,gold,turns the rake in the yard.,walks over mower in front of the camera with the lawnmower in his hand.,is holding onto a kite in the air.,uses the mallet to hit a ball.\n7209,anetv_QRLye5j54ic,2860,He is holding onto a kite in the air. He,He is holding onto a kite in the air.,He,gold,does a routine on the balance beam.,\"leans way back, being drug by the force of the wind.\",spins around and lands on a platform.,are jumping rope in various field ways.\n7210,anetv_lhH3qdh8n3g,16011,They continue to do the steps as they clap their hands in between the steps. They also,They continue to do the steps as they clap their hands in between the steps.,They also,gold,step on and step off of a step stool as they continue their steps.,walk couple of feet toward the stage where people are sitting.,hold up as they dances around.,manage some heavy jump of the rope on their seats and suddenly starts swinging around.\n7211,anetv_lhH3qdh8n3g,16009,They are doing the steps rhythmically to the beats of a song that is played in the fitness center. There,They are doing the steps rhythmically to the beats of a song that is played in the fitness center.,There,gold,\"the other side's are drawn to the songwriter's tune now, we now see the flicker with the glass then click.\",are little girl going to her in the concrete and a lot of people are watching them.,is in the middle of the dance and a boy is playing intently.,are disco lights flashing in the fitness center.\n7212,anetv_lhH3qdh8n3g,16008,There are about ten or more people dressed in athletic wear doing a synchronized form of exercise. They,There are about ten or more people dressed in athletic wear doing a synchronized form of exercise.,They,gold,are still capoeira in victory.,are doing the steps rhythmically to the beats of a song that is played in the fitness center.,leaves jump as they also perform a stunt routine in a gymnasium.,are sitting in their room as they crossed the ends of the stage.\n7213,anetv_lhH3qdh8n3g,16010,There are disco lights flashing in the fitness center. They,There are disco lights flashing in the fitness center.,They,gold,continue to do the steps as they clap their hands in between the steps.,glide across the water into a large green pile.,are standing near a battlements talking to one.,pass into traffic in the street.\n7214,anetv_pAAGm-KEFW0,7894,The camera pans around room and back to the first guy. A girl,The camera pans around room and back to the first guy.,A girl,gold,\"walks by carrying a plate, puts it on the table and does a dance.\",talks to the camera while pictures of dancing.,gives an interview while someone into a woman clips her hair from a wooden end.,pushes a piece of wallpaper on them.\n7215,anetv_pAAGm-KEFW0,7892,A friend is shaking his head because of the other guy's sunburn. The friend,A friend is shaking his head because of the other guy's sunburn.,The friend,gold,lifts his shirt to show his sunburn as well.,holds his leg up with knees and buries the feet on a table.,enters someone's hold and hold out his hand.,and an american gangster start taking everything out of it.\n7216,anetv_pAAGm-KEFW0,7891,There is a boy sitting on the bed showing off his sunburn and putting cream on it. A friend,There is a boy sitting on the bed showing off his sunburn and putting cream on it.,A friend,gold,runs then grabs a pack of coke and begins to brush his teeth.,is shaking his head because of the other guy's sunburn.,is seen holding a toothbrush and looking at the camera while stroking his face with gel.,shows him the cream and holds it out to him.\n7217,anetv_pAAGm-KEFW0,7898,The sunburned man is taking his shirt off and laying it on the bed. His friends,The sunburned man is taking his shirt off and laying it on the bed.,His friends,gold,waves the camera and talking to the camera.,help him with cream on his sunburn.,hang on out of the floor underneath his pillow.,are then shown wrapping a pair with workout motions.\n7218,anetv_pAAGm-KEFW0,7897,A woman puts a plate of food on a table and a man walks back inside. The sunburned man,A woman puts a plate of food on a table and a man walks back inside.,The sunburned man,gold,is taking his shirt off and laying it on the bed.,throws the shovel repeatedly.,spins in some measure of air around the field and stop folding his legs.,steps up on a log when the man flips the cow a shot.\n7219,anetv_pAAGm-KEFW0,7893,The friend lifts his shirt to show his sunburn as well. The camera,The friend lifts his shirt to show his sunburn as well.,The camera,gold,continues to show more down the stir gel.,pans around room and back to the first guy.,sits in a booth from a different perspective.,moves in close to the man ahead of his bar.\n7220,anetv_pAAGm-KEFW0,7895,\"A girl walks by carrying a plate, puts it on the table and does a dance. The camera\",\"A girl walks by carrying a plate, puts it on the table and does a dance.\",The camera,gold,continues to show the recipe and their children kitchen.,pans to a mirror with two men standing in it with a phone and waving.,follows her and finishes with her text before giving her a list and placing it in front of her.,goes to her right before someone starts to make the tattoo.\n7221,anetv_pAAGm-KEFW0,7896,The camera pans to a mirror with two men standing in it with a phone and waving. The camera,The camera pans to a mirror with two men standing in it with a phone and waving.,The camera,gold,continues to clip the pans past the woman's ear.,shows from the other person piling the leaves.,cuts to the woman pushing a hair haired woman on then stopping.,looks over the balcony of the room.\n7222,anetv_pAAGm-KEFW0,7899,His friends help him with cream on his sunburn. The woman,His friends help him with cream on his sunburn.,The woman,gold,pulls a girl onto his swing and starts laughing too.,demonstrates some kisses to the leg and flips him down.,returns the gesture.,is sitting at the table eating.\n7223,anetv_mU3ujj4Z7lE,10456,A small dog is seen standing in snow and a person pushing snow with a shovel. The dog,A small dog is seen standing in snow and a person pushing snow with a shovel.,The dog,gold,begins to laugh along with the snow as well as several more people moving around them.,follows the person shoveling while biting at the shovel and barking at the camera man.,is then seen walking and riding back and fourth while others carry the children from behind.,continues raking around the yard as well as the camera walking around the area.\n7224,anetv_DeoqC3oVV38,3867,\"Then, the boats enter to lightly choppy waters. Two men\",\"Then, the boats enter to lightly choppy waters.\",Two men,gold,paddle forward with umbrellas from their paddles and to then emerge into the water.,ski on a ski slope near a river.,stand on the bank of the river.,are wrestling across a blue water.\n7225,anetv_DeoqC3oVV38,3866,\"People sail on inflatable boats on calm waters ofa river. Then, the boats\",People sail on inflatable boats on calm waters ofa river.,\"Then, the boats\",gold,\"paddle forward in distances, the fight with the kayaks.\",use a wind mostly holding a yellow jug of water.,enter to lightly choppy waters.,start four boats on the deck and prepare to mop a sip of water onto the side of a small boat riding the boat.\n7226,anetv_DeoqC3oVV38,3868,\"Two men stand on the bank of the river. After, people\",Two men stand on the bank of the river.,\"After, people\",gold,are coming behind the people.,paddle in a canoe area as men wave a beverage.,carry the boats through water while other boys ride the boat facility.,\"arrives to shallow waters, and then continue sailing on the calm waters of the river.\"\n7227,anetv_DeoqC3oVV38,10630,The woman is riding her lifebuoy and holding on to the other lifebuoy. A man,The woman is riding her lifebuoy and holding on to the other lifebuoy.,A man,gold,walks to the red and walks off the top.,is holding a can of beer and offering it to the woman.,walks to the center of the table where the dog sat down.,helps her moves switches to the set.\n7228,lsmdc0046_Chasing_Amy-68699,3015,She grabs her bag and slides out of the booth. Someone,She grabs her bag and slides out of the booth.,Someone,gold,wrenches through her t - shirt and finds a ladle full of shrimp.,\"watches her, then follows.\",enters the apartment nearly three feet in.,raises the bar to her chest again.\n7229,lsmdc0046_Chasing_Amy-68699,3016,\"Someone watches her, then follows. Someone\",\"Someone watches her, then follows.\",Someone,gold,stops from his desk and stops at a doorway.,adjusts the utility bench and quickly boards a bus on spaghetti belts.,\"slides up to the cashier's desk as does someone, who offers a puzzled shrug.\",is still trying to remember into utter disorder.\n7230,lsmdc3017_CHRONICLE-7487,16304,\"Both boys shoot straight up into the air. Now, as panicked bystanders flee, a camera\",Both boys shoot straight up into the air.,\"Now, as panicked bystanders flee, a camera\",gold,\"tries to follow the movements of a body as it smashes through a billboard, then bounces between two buildings.\",lights a fire enveloped in dust.,\"shoots into the chasm, which disintegrates in.\",falls into two explosions.\n7231,lsmdc3017_CHRONICLE-7487,16306,The police chopper's camera shows the boys landing in a plaza near a statue. Both,The police chopper's camera shows the boys landing in a plaza near a statue.,Both,gold,calmly burn a row of three.,wheelman turns to sir someone.,lie face down on the stone tiles as several police cars surround the area.,someone runs to the building as it goes.\n7232,lsmdc3017_CHRONICLE-7487,16294,\"Someone lifts his hand and the cruiser rises over the boys, landing on its roof. Someone\",\"Someone lifts his hand and the cruiser rises over the boys, landing on its roof.\",Someone,gold,looks down at the basement as another steward leads the way through the doors of the large corridor.,stumbles onto his truck.,lifts someone to the tank.,flies up through the apartment's floor and ceiling.\n7233,lsmdc3017_CHRONICLE-7487,16296,\"Now, someone flies backward above the street, throwing parked cars. As someone dodges them, someone\",\"Now, someone flies backward above the street, throwing parked cars.\",\"As someone dodges them, someone\",gold,leans on a brick wall in the common room.,pulls a fast rubber wheel and crushes on its wise.,flies back into a lamppost.,drives across the country street at night.\n7234,lsmdc3017_CHRONICLE-7487,16291,Someone flies in and swoops him off the roof. A bank's black and white security footage,Someone flies in and swoops him off the roof.,A bank's black and white security footage,gold,shows someone stuck in the car.,shows where he collides.,shows them smashing through a wall in its lobby.,shows a car shattering gently across the deck.\n7235,lsmdc3017_CHRONICLE-7487,16298,\"Sparks fly as he drops onto a parked car and rolls to the street. As someone lands nearby, a helicopter searchlight\",Sparks fly as he drops onto a parked car and rolls to the street.,\"As someone lands nearby, a helicopter searchlight\",gold,drops from the ground and onto the platform.,landing on their knees.,\"conceals his surroundings, and strikes her again.\",shines down on him.\n7236,lsmdc3017_CHRONICLE-7487,16289,The vehicle flies through the air and careens into a building's fifth story. Someone,The vehicle flies through the air and careens into a building's fifth story.,Someone,gold,opens a workbench and cuts a cut out pumpkin.,frowns as dozens of vehicles drive overhead.,lands clumsily on another building's rooftop.,takes strolls with someone to a south wall.\n7237,lsmdc3017_CHRONICLE-7487,16300,\"As someone slowly gets to his hands and knees, bits of glass strewn around him rise off the pavement. Someone\",\"As someone slowly gets to his hands and knees, bits of glass strewn around him rise off the pavement.\",Someone,gold,\"closes a bit, gets out, enters the spacious modern apartment, and greets the caboose.\",\"leans back on his seat, his lips pressed together.\",\"places a hand on someone's chest, stares up at the ceiling, then holds her close.\",\"stands up behind someone, the glass shards hovering around him.\"\n7238,lsmdc3017_CHRONICLE-7487,16292,\"A bank's black and white security footage shows them smashing through a wall in its lobby. Now, from inside a speeding police cruiser, we\",A bank's black and white security footage shows them smashing through a wall in its lobby.,\"Now, from inside a speeding police cruiser, we\",gold,glimpse someone someone full view on the quad.,see the drama leader on a bus outside a gate on the small cafe.,see kneeling at a table beside some black titanic windows.,watch the pair land in the street before us.\n7239,lsmdc3017_CHRONICLE-7487,16299,\"As someone lands nearby, a helicopter searchlight shines down on him. He\",\"As someone lands nearby, a helicopter searchlight shines down on him.\",He,gold,drags his unconscious cousin away from the car.,shoots the gaining ball sending a low beam into the water.,\"jogs into the undergrowth, glances behind.\",climbs over a railing and flails helplessly at the empty mountains.\n7240,lsmdc3017_CHRONICLE-7487,16305,\"Now, as panicked bystanders flee, a camera tries to follow the movements of a body as it smashes through a billboard, then bounces between two buildings. The police chopper's camera\",\"Now, as panicked bystanders flee, a camera tries to follow the movements of a body as it smashes through a billboard, then bounces between two buildings.\",The police chopper's camera,gold,stops in front of someone with a bald eagle.,follows smashing through oncoming buildings surrounding the house.,shows the boys landing in a plaza near a statue.,swoops up and down the fuselage.\n7241,lsmdc3017_CHRONICLE-7487,16301,\"Someone stands up behind someone, the glass shards hovering around him. Someone\",\"Someone stands up behind someone, the glass shards hovering around him.\",Someone,gold,\"sits up, shaking her head sadly.\",kicks the trolley away again.,reaches the locker room and hurls himself over the table plaques his men who who were trapped inside.,\"flinches, then lowers his bloody right hand.\"\n7242,lsmdc3017_CHRONICLE-7487,16297,\"As someone dodges them, someone flies back into a lamppost. Sparks\",\"As someone dodges them, someone flies back into a lamppost.\",Sparks,gold,pulls out the leopard coat and slips it across the floor.,fly as he drops onto a parked car and rolls to the street.,must run up to it and handle bats in the sky.,glows recognizable in the speeding meter.\n7243,lsmdc3017_CHRONICLE-7487,16293,\"Now, from inside a speeding police cruiser, we watch the pair land in the street before us. Someone lifts his hand and the cruiser\",\"Now, from inside a speeding police cruiser, we watch the pair land in the street before us.\",Someone lifts his hand and the cruiser,gold,flips into a departing lady's balled - toned chest.,\"rises over the boys, landing on its roof.\",cruises down the gravel drive by his luxury cruiser.,crawls back from its vehicle.\n7244,lsmdc3017_CHRONICLE-7487,16288,A bus hits someone head on. The vehicle,A bus hits someone head on.,The vehicle,gold,rolls off the leafy floor.,is parked along the highway.,flies down out of the hotel.,flies through the air and careens into a building's fifth story.\n7245,anetv_Dl0JNkGbZT4,9104,\"A girl is getting her tounge pierced and she seems to be nervous, the person that is piercing her tounge use a pen to mark on her tounge where she will be making the hole. the girl then\",\"A girl is getting her tounge pierced and she seems to be nervous, the person that is piercing her tounge use a pen to mark on her tounge where she will be making the hole.\",the girl then,gold,goes to the mirror to make sure that the mark is where she would like the hole to be before she pierce it.,proceeded to complete her routine and talked to finger and scent him patiently.,grabs a running towel and uses its left hand to get a piercing into the girls hoop.,holds up the girl's hand and speaks to her camera when she is done singing.\n7246,anetv_Dl0JNkGbZT4,9105,\"The girl then goes to the mirror to make sure that the mark is where she would like the hole to be before she pierce it. the person piercing the girls tounge now is use a tool to hold her tounge out so she can make the hole, now she\",The girl then goes to the mirror to make sure that the mark is where she would like the hole to be before she pierce it.,\"the person piercing the girls tounge now is use a tool to hold her tounge out so she can make the hole, now she\",gold,takes more contact out of its hair and turns it on her eyes and her visor.,leaves the niddle in her tounge and screw on a piece to the bottom of the niddle to the niddle want come out.,knows the clipped of the pin.,\"lobe removes her right front leg, and it is one of the same material.\"\n7247,anetv_Dl0JNkGbZT4,8795,She sits back down and the other woman then pierces her tongue. She puts the ring in and the girl,She sits back down and the other woman then pierces her tongue.,She puts the ring in and the girl,gold,starts to laugh and keep her contact.,shows it off the camera.,begins parting the arms and sometimes grabbing facial streaks.,smiles a little while stepping off their horse.\n7248,anetv_Dl0JNkGbZT4,9106,\"The person piercing the girls tounge now is use a tool to hold her tounge out so she can make the hole, now she leaves the niddle in her tounge and screw on a piece to the bottom of the niddle to the niddle want come out. finally the girl\",\"The person piercing the girls tounge now is use a tool to hold her tounge out so she can make the hole, now she leaves the niddle in her tounge and screw on a piece to the bottom of the niddle to the niddle want come out.\",finally the girl,gold,shows how she made the teapot aside and proceeds to start her hair and describes how the yarn works.,takes off and the woman talks to her vet.,removes the candy and waves.,looks in the mirror and shows her friends how it looks.\n7249,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93870,4178,\"He scurries away taking shelter in an alley. The reward posters of someone, Undesirable Number One\",He scurries away taking shelter in an alley.,\"The reward posters of someone, Undesirable Number One\",gold,are pasted on the walls.,toys slip down the garbage.,are destroying the clerk's trunk then wigs.,appears on the inside.\n7250,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93870,4177,He sees a group of snatchers. He,He sees a group of snatchers.,He,gold,catches the rat around someone's neck.,scurries away taking shelter in an alley.,takes the hook from his post.,\"lowers the ball, but it keeps swinging.\"\n7251,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93870,4175,People fly over the engine. A dark figure,People fly over the engine.,A dark figure,gold,shoots through the sky.,is mangled on a white house lid.,stands on the tread.,leaps onto the wall as someone speaks his thighs.\n7252,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93870,4179,The Snitch's wings fold. Someone,The Snitch's wings fold.,Someone,gold,tears up as the dragon travels up someone's neck.,punches the drive on his stomach.,pulls the cellphone towards someone.,stares at the golden ball.\n7253,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93870,4174,\"In the train, someone sits with someone. People\",\"In the train, someone sits with someone.\",People,gold,are in bed near a trail.,goes way up an aisle one minute.,fly over the engine.,are sitting outside court.\n7254,anetv_CQ0r8ldAKl8,16151,\"A woman is talking on the stage with a male interviewer. The woman is the former first lady of the united states, and she\",A woman is talking on the stage with a male interviewer.,\"The woman is the former first lady of the united states, and she\",gold,begin performing a cheer and cheerleading solo.,talks for some time.,is doing tricks with robot music.,is on with her performance on stage and working out on stage.\n7255,anetv_CQ0r8ldAKl8,11279,Michelle Obama is sitting in a white chair talking to a male dressed in a black suit and purple tie. They then get up with jump ropes and the two,Michelle Obama is sitting in a white chair talking to a male dressed in a black suit and purple tie.,They then get up with jump ropes and the two,gold,begin to move sideways and then do their best and jumping onto the o. sync.,are behind weight backs.,take their jumping ropes and throw their legs at each other.,begin doing various types of jumps.\n7256,anetv_CQ0r8ldAKl8,16152,\"The woman is the former first lady of the united states, and she talks for some time. She then\",\"The woman is the former first lady of the united states, and she talks for some time.\",She then,gold,spots an image of an asian girl standing in a circle holding the stick and her blue flirtatious gloves.,shows the screen with small sticks.,shows the various clips of the best shots in the water.,jumps rope with the show's host.\n7257,anetv_CQ0r8ldAKl8,11280,\"They then get up with jump ropes and the two begin doing various types of jumps. After, the host\",They then get up with jump ropes and the two begin doing various types of jumps.,\"After, the host\",gold,changes some in separate ways.,hugs michelle and begins smiling at the camera.,gives the small one how he kicks back a different angle.,takes a seat from the table to a point putting make up to reveal a grown man.\n7258,anetv_xr0tV2KNqgI,4989,A crowd of people watch as two bulls fight each other in a competition. The camera,A crowd of people watch as two bulls fight each other in a competition.,The camera,gold,pans over to show many people in the crowd watching the show.,follows for three survivors.,follows the people as they stab and jab at each other.,zooms around numerous shots of paintball and leads into one of the men holding blue frisbees.\n7259,anetv_xr0tV2KNqgI,4991,A man walks by the camera. Several people,A man walks by the camera.,Several people,gold,are getting close to the bull trying to catch the action.,are seen walking down to a bench and putting sunscreen onto someone's face.,float in the street outdoors.,work on the ground.\n7260,anetv_xr0tV2KNqgI,4990,The camera pans over to show many people in the crowd watching the show. A man,The camera pans over to show many people in the crowd watching the show.,A man,gold,takes another turn and scores a shot in the end.,is seen standing close next to his coach.,stands at the end of the bagpipes frame.,walks by the camera.\n7261,anetv_xr0tV2KNqgI,4992,Several people are getting close to the bull trying to catch the action. The bulls,Several people are getting close to the bull trying to catch the action.,The bulls,gold,is trying and chasing the bull again.,then eat out at the top of a hill.,begin to chase each other around the field.,are over in the end and are knocked away.\n7262,anetv_WGzUnE043iA,9724,The man begins at a profile view holding a paddle while sitting in a canoe and talking to a camera occasionally pointing to a nearby shore with the paddle. The man then,The man begins at a profile view holding a paddle while sitting in a canoe and talking to a camera occasionally pointing to a nearby shore with the paddle.,The man then,gold,uses the paddle in the water to push the canoe off deeper into the water.,jumps over several rocks and attempts to speak to the camera followed by another man.,rides the kayak along the rough ocean while the camera captures it from several angles.,hops up to the edge and begins to surf along while water skis.\n7263,anetv_Amgt0yzQido,259,Three people are seen standing in the middle of a large gymnasium holding onto a jump rope. The people then,Three people are seen standing in the middle of a large gymnasium holding onto a jump rope.,The people then,gold,spin each other around and throw the ball to one another.,perform a routine on a rope to continue several flips during the falls and ends with the coach flipping around.,jump off and hug one another.,jump around one another while people watch on the sides.\n7264,anetv_Amgt0yzQido,12818,Three girls are seen standing on a large gym in front of an audience. They,Three girls are seen standing on a large gym in front of an audience.,They,gold,walk around and laugh as they finish and jump.,holds her hands and moves on to them while laughing and director to the camera.,begin performing a jump roping routine with one another.,group wrestlers are seen performing as well as slow motion and others practice in the end.\n7265,anetv_Amgt0yzQido,12819,They begin performing a jump roping routine with one another. They,They begin performing a jump roping routine with one another.,They,gold,perform kicks with jump ropes while cheering and hugging one another.,continue around it very quickly as they continue to walk.,jump and flip around one another and end in a split.,throw the ball back and fourth while another person does hold of the rope.\n7266,lsmdc3064_SPARKLE_2012-4360,5321,\"Someone sits at the kitchen table. Someone and someone arrive home, and someone\",Someone sits at the kitchen table.,\"Someone and someone arrive home, and someone\",gold,sits on the low bench reading a newspaper.,walks in a small trailer park.,rises to meet them.,puts someone in the pot.\n7267,anetv_AF6tasHTW-8,10210,Two kids are jump roping outside. Two adults,Two kids are jump roping outside.,Two adults,gold,are kneeling down on the ground holding a jump rope for a kid.,are standing around a bumper with them in front of them as they go in and kick the ball up.,swing the gate and walk around.,sit in a pool hall.\n7268,anetv_AF6tasHTW-8,10211,Two adults are kneeling down on the ground holding a jump rope for a kid. The woman,Two adults are kneeling down on the ground holding a jump rope for a kid.,The woman,gold,is talking to the camera.,bites her right foot and she scores.,is swinging the pinata trying to stay upright and swinging next to the monkey bars.,tries to help him into two adult arms.\n7269,anetv_JGxSaJ7XoPQ,2749,The girl stands on the fence post while reaching to brush the horses mane. The girl,The girl stands on the fence post while reaching to brush the horses mane.,The girl,gold,continues standing on the fence post leans onto the horses back and brushes the back of the horse as she smile at the camera.,sits with a stack of paper in the box.,comes up and runs around the back of the horses and goes to the right fence.,continues running and then looks back up and shoots away.\n7270,anetv_JGxSaJ7XoPQ,2751,The girl mounts onto the horses back as she continues to brush the horses neck and mane. The girl in the purple blouse,The girl mounts onto the horses back as she continues to brush the horses neck and mane.,The girl in the purple blouse,gold,goes hard.,comes and takes the girl to the dog and then all the other men get ready to have fun.,turns and runs away.,dismounts the horse and stands on the fence post brushes the horses hind quarter.\n7271,anetv_JGxSaJ7XoPQ,2750,The girl continues standing on the fence post leans onto the horses back and brushes the back of the horse as she smile at the camera. The girl,The girl continues standing on the fence post leans onto the horses back and brushes the back of the horse as she smile at the camera.,The girl,gold,picks up a horse and ties up a calf.,stands in front of the horse and helps him to ride.,mounts onto the horses back as she continues to brush the horses neck and mane.,continues talking and continues showing the various dips and a product that has her hair done and begins interacting with them all.\n7272,anetv_8xm7fWZ0RmE,10856,\"An Asian man is standing by the keyboard, he is wearing a red shirt with black top inside. Two people, one girl and one boy are sitting, the girl\",\"An Asian man is standing by the keyboard, he is wearing a red shirt with black top inside.\",\"Two people, one girl and one boy are sitting, the girl\",gold,takes the harmonica and then begins dancing.,\"is wearing a white top, while the boy is wearing a white stripe sweater.\",begins performing a karate routine while the other girls begin to struggle his moves.,picks his guitar up and license to the camera.\n7273,anetv_8xm7fWZ0RmE,10857,\"Two people, one girl and one boy are sitting, the girl is wearing a white top, while the boy is wearing a white stripe sweater. The man started playing on the keyboard, he has his hands shown, he is wearing a black bead bracelet, then he\",\"Two people, one girl and one boy are sitting, the girl is wearing a white top, while the boy is wearing a white stripe sweater.\",\"The man started playing on the keyboard, he has his hands shown, he is wearing a black bead bracelet, then he\",gold,fell off the table playing and moved the customer berries down the stairs.,begins to use the red cup.,continue playing while the two people in white is listening.,showed the nail to the same partner.\n7274,anetv_73LZVxxlJV8,16070,Big skyscraper with a great view. men,Big skyscraper with a great view.,men,gold,stretch on the surface until the turn.,are gathered walking down a city where a medal with purple flowers around them.,is cleaning the window on the outside hanging on the scaffolding.,crosses and most of the policemen stand and guard stand facing.\n7275,anetv_pZ8QqpYu-H8,13422,\"A man is seated at a piano, playing and singing into a microphone. When he finishes, he\",\"A man is seated at a piano, playing and singing into a microphone.\",\"When he finishes, he\",gold,puts down the violin and begins playing.,looks up and smiles.,plays the piano and begins to sing.,begins playing the piano with the keyboard and a man standing next to him holding he can just stand up.\n7276,lsmdc0017_Pianist-56016,11572,\"Someone supports someone, helps him towards the back of the cafe. Someone, finishing a bowl of soup and a piece of bread,\",\"Someone supports someone, helps him towards the back of the cafe.\",\"Someone, finishing a bowl of soup and a piece of bread,\",gold,lowers his next back and returns to the table.,sits at a worktop with people.,drops the sandwich in half.,walks back to someone.\n7277,lsmdc0017_Pianist-56016,11573,\"Someone, finishing a bowl of soup and a piece of bread, sits at a worktop with people. The kitchen\",\"Someone, finishing a bowl of soup and a piece of bread, sits at a worktop with people.\",The kitchen,gold,has cleared between two officers.,is a collection of peppers and a collection of little vegetables.,\"is small and busy with cooks, waiters, washers - up.\",turns as she faces her neighbor.\n7278,lsmdc0017_Pianist-56016,11569,\"A wooden bridge has been constructed, linking the small ghetto to the large ghetto. People climb the stairs of the bridge, but as they reach the bridge itself someone\",\"A wooden bridge has been constructed, linking the small ghetto to the large ghetto.\",\"People climb the stairs of the bridge, but as they reach the bridge itself someone\",gold,falls out of their seats.,\"stumbles, sinks to his knees.\",plods over to the ship's hull.,stops as a crewman comes out of the wheelhouse.\n7279,lsmdc0017_Pianist-56016,11570,\"People climb the stairs of the bridge, but as they reach the bridge itself someone stumbles, sinks to his knees. Someone\",\"People climb the stairs of the bridge, but as they reach the bridge itself someone stumbles, sinks to his knees.\",Someone,gold,faces the kung fu master.,\"gets hold of him, tries to help him stand.\",carries a life bag over her shoulder.,bows low in our direction.\n7280,lsmdc0017_Pianist-56016,11571,\"Someone gets hold of him, tries to help him stand. Someone\",\"Someone gets hold of him, tries to help him stand.\",Someone,gold,turns back to the audience and fiddles with her hair.,seemingly at his hand.,\"supports someone, helps him towards the back of the cafe.\",comes up to him and rises.\n7281,lsmdc0050_Indiana_Jones_and_the_last_crusade-70462,11497,Someone looks over his newspaper at someone. But someone,Someone looks over his newspaper at someone.,But someone,gold,\"says nothing, then turns back to retrieve someone's civilian.\",looks out the window and is suddenly concerned.,struggles to open it with a broken mechanics of toast.,holds up the page of someone's signature.\n7282,anetv_9-xf_gylOR0,5006,A person is painting a wooden fence. A cat's paws,A person is painting a wooden fence.,A cat's paws,gold,is working on the ground.,can be seen coming out from under the fence.,are painted on a couch.,are propped against press.\n7283,anetv_9-xf_gylOR0,5007,A cat's paws can be seen coming out from under the fence. A dog,A cat's paws can be seen coming out from under the fence.,A dog,gold,is standing in a kitchen and they are talking.,comes up with a hand.,is looking at the cat's paws.,is standing at a coffee table cutting portions of cheese off his face.\n7284,anetv_9IwS7pfJXu4,10339,\"A group of people are seating around a table covered in trays filled with vegetables, meats and cheeses. They\",\"A group of people are seating around a table covered in trays filled with vegetables, meats and cheeses.\",They,gold,are shaped into some sort of cake making sure it is covered.,talk about how to make a dish.,are scooped up onto one of the second tables while being poured into the box and into two containers.,\"begin installing a set of wooden doors, their eyes stacked across the place one by one.\"\n7285,anetv_9IwS7pfJXu4,6757,A large group of people are seen sitting around a table cutting up ingredients. The people,A large group of people are seen sitting around a table cutting up ingredients.,The people,gold,laugh with one another while preparing lots of food.,take turns placing pieces of paper into a ring.,add water up then shades and sanding them clean.,are then seen holding the ingredients with one another.\n7286,anetv_9IwS7pfJXu4,6758,The people laugh with one another while preparing lots of food. The women,The people laugh with one another while preparing lots of food.,The women,gold,change their hands and continue pushing it down a table.,continue to mix together ingredients while speaking to one another.,ride the food in various places while looking away while speaking to the camera.,continue riding and end by standing with them watching.\n7287,lsmdc3007_A_THOUSAND_WORDS-3672,4474,\"Samantha gestures toward the phone then walks off. As someone stares at the ringing phone, someone\",Samantha gestures toward the phone then walks off.,\"As someone stares at the ringing phone, someone\",gold,spots the boy on tv.,grabs someone's arm and turns him off.,walks back to his own desk.,smiles at his sister.\n7288,lsmdc3007_A_THOUSAND_WORDS-3672,4479,Someone takes the doll and runs off. Someone,Someone takes the doll and runs off.,Someone,gold,watches him as he contorts and peels off the bra.,knocks down a passing man then grabs another doll of a blond woman's desk.,takes the feet and runs into the cab.,hurries over her shoulder.\n7289,lsmdc3007_A_THOUSAND_WORDS-3672,4480,Someone knocks down a passing man then grabs another doll of a blond woman's desk. Someone,Someone knocks down a passing man then grabs another doll of a blond woman's desk.,Someone,gold,takes out a framed photo of white and someone.,rides down a country road.,runs into someone's office and dumps an armload of dolls onto his desk.,holds the frame carefully as she walks out of frame.\n7290,lsmdc3007_A_THOUSAND_WORDS-3672,4478,\"Someone runs to someone's desk, points at the Austin Powers doll, then at himself, then sweeps his arm in a circle. Someone\",\"Someone runs to someone's desk, points at the Austin Powers doll, then at himself, then sweeps his arm in a circle.\",Someone,gold,takes the doll and runs off.,takes up his coat and places it in his pocket.,charges toward someone and starts the hammer fire.,eventually forces it back into the tunnel.\n7291,lsmdc3007_A_THOUSAND_WORDS-3672,4475,\"As someone stares at the ringing phone, someone walks back to his own desk. Someone\",\"As someone stares at the ringing phone, someone walks back to his own desk.\",Someone,gold,\"keeps watching him on the bed, then lays his breasts on the table.\",presses a button on the phone.,\"sits opposite someone, who just stands staring.\",sits still with his head bowed.\n7292,anetv_QKEFacWrn_8,15267,Another man bowls a ball around bowling pins lined up in a curve on a bowling lane and the bowling ball does n't hit any of them. One man,Another man bowls a ball around bowling pins lined up in a curve on a bowling lane and the bowling ball does n't hit any of them.,One man,gold,adds balls to the bowling lane and fourth in between.,shows another how to hold the bowling ball.,shoots another into a large taxi while others watch on the side.,lifts his arms to the air several times and throws back of the pole.\n7293,anetv_QKEFacWrn_8,15264,\"The video starts with footage of people outside with red, white and blue text explaining what the video is about. Men\",\"The video starts with footage of people outside with red, white and blue text explaining what the video is about.\",Men,gold,are playing hockey in a field with their hands beating the javelin drills.,grimly line towards the street with fireworks and a man playing hockey.,attempt various tricks using bowling balls.,is an aged man and a woman off an atrium on a front porch of a home in front of them.\n7294,anetv_QKEFacWrn_8,15274,\"A blue screen appears and a red, white and blue logo with a w on it appears. A green screen\",\"A blue screen appears and a red, white and blue logo with a w on it appears.\",A green screen,gold,appears with footage links to other videos as well as sponsor logos and a subscription link.,appears with white words that say you will be after and slow staples.,\"the howcast is dried, demonstrated with the logos on channel application.\",appears with white letters of white dog names and santa colors.\n7295,anetv_QKEFacWrn_8,15265,Men attempt various tricks using bowling balls. A man,Men attempt various tricks using bowling balls.,A man,gold,puts the treadmill down and grabs.,knocks down pins in a skating pool drop in.,explains how to hit and hit the other woman on the head.,throws several brooms in.\n7296,anetv_QKEFacWrn_8,15270,A man bowls two bowling balls at once. Two men sitting back on chairs,A man bowls two bowling balls at once.,Two men sitting back on chairs,gold,watch every professional championship game as he plays.,talk to each other.,are silenced and hitting a ball.,hit a tennis ball.\n7297,anetv_QKEFacWrn_8,15269,A bowling ball in a skate drop breaks something inside the drop. A man,A bowling ball in a skate drop breaks something inside the drop.,A man,gold,climbs a bowling ball back and forth against a wall.,is talking in a shop holding a watch.,bowls two bowling balls at once.,runs in circles trying to hit a drone.\n7298,anetv_QKEFacWrn_8,15272,A man bowls a strike in a bowling alley. A group of men,A man bowls a strike in a bowling alley.,A group of men,gold,stand behind other watches.,play croquet in the yard.,throws a disc hurling a puck onto the field.,are walking in a straight line while clapping bowling pins together.\n7299,anetv_QKEFacWrn_8,15266,A man knocks down pins in a skating pool drop in. Another man bowls a ball around bowling pins lined up in a curve on a bowling lane and the bowling ball,A man knocks down pins in a skating pool drop in.,Another man bowls a ball around bowling pins lined up in a curve on a bowling lane and the bowling ball,gold,hits dusty from the floor lifting.,rushes in hits screen and hits different one.,does n't hit any of them.,\"hits the man, and throws a ball.\"\n7300,anetv_QKEFacWrn_8,2120,\"People are on front a board in a park holding bowling pins. A man is in a skateboard track, then he\",People are on front a board in a park holding bowling pins.,\"A man is in a skateboard track, then he\",gold,throws a bowling ball that goes around and hits the pins.,is doing several tricks in a swimming pool.,completes another throw on the sand in the air.,swings off a pole.\n7301,anetv_QKEFacWrn_8,2121,\"Then, people talks in a bowling center, wile males trowing bowling bowls. After, a man\",\"Then, people talks in a bowling center, wile males trowing bowling bowls.\",\"After, a man\",gold,serves a ball with a mallet.,interview a male using a microphone.,makes shot in the head and brings it towards the pins.,practice playing on a table.\n7302,anetv_QKEFacWrn_8,15268,One man shows another how to hold the bowling ball. A bowling ball in a skate drop,One man shows another how to hold the bowling ball.,A bowling ball in a skate drop,gold,breaks something inside the drop.,shoots into three times then narrowly hits it.,hits the back of his head.,hits the men who serves faster it when.\n7303,anetv_QKEFacWrn_8,15273,A group of men are walking in a straight line while clapping bowling pins together. Two men,A group of men are walking in a straight line while clapping bowling pins together.,Two men,gold,interview each other on brown chairs.,are standing in a club holding tennis rackets and hitting the ball into the middle.,finish and dance towards other people kicking them.,pass in a hut before a crowd of people watch.\n7304,anetv_Vfb3LmFDols,7396,We see people start when the gate opens. We then,We see people start when the gate opens.,We then,gold,see a man on a blue boat being led by a man in uniform.,see people riding bikes.,see a picture of scenery backstage.,see two closing screens.\n7305,anetv_Vfb3LmFDols,7394,We see a man in bmx bike arena talking. We,We see a man in bmx bike arena talking.,We,gold,see a building - - how to ride outdoors.,see a man performing to jump in rope.,see people bring bikes up a ramp.,see a woman standing on a tight mat.\n7306,anetv_Vfb3LmFDols,7395,We see people bring bikes up a ramp. We,We see people bring bikes up a ramp.,We,gold,see a lady jump in shorts on a board.,see people start when the gate opens.,see other people and cars ride down a strip between cars.,see the operator ski on top.\n7307,anetv_XuSWH1lfcvI,18126,He then jumps up on the beam and swings himself around. The man,He then jumps up on the beam and swings himself around.,The man,gold,switches on several bars and stretches to demonstrate how to properly move.,jumps around while holding onto the rope.,continues to swing around on the bars and ends by jumping off the side and walking away.,continues jumping the jump flips over and over and waves.\n7308,anetv_XuSWH1lfcvI,18125,A man is seen standing before a set of uneven bars with his arms up. He then,A man is seen standing before a set of uneven bars with his arms up.,He then,gold,begins spinning around around while still speaking to the camera.,jumps up on the beam and swings himself around.,stands up and begins jumping up and down on the bars.,spins around with the man exercises and spins him.\n7309,anetv_K68iNoSnZMg,344,\"Then, the boy puts the potato and the peeler over the counter, but again he takes it. The woman\",\"Then, the boy puts the potato and the peeler over the counter, but again he takes it.\",The woman,gold,holds the paint brush and takes out a tomato.,removes a spare from the device.,rolls the potato and spray the platter with it while talking to the dog while the man only by helps the cat.,finishes to cut the potato.\n7310,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93050,13794,The bird becomes a pile of ash below its perch. Someone,The bird becomes a pile of ash below its perch.,Someone,gold,takes out his lighter and looks around.,appears at the top of a flight of stairs.,gazes up over the overlooks's replacement.,collapses on the grass and looks up at someone.\n7311,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93050,13791,\"Behind him, a decrepit bird with tatty orange feathers is balancing on a perch. Someone\",\"Behind him, a decrepit bird with tatty orange feathers is balancing on a perch.\",Someone,gold,notes a hand map then replaces his overcoat on the back from his chair and disappears.,continues to shiver the tree.,moves towards the bird and smiles at the odd - looking creature.,races along a road and starts up the stairs of a building one definitely along a foam sidewalk.\n7312,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93050,13790,\"Someone turns as he hears a faint sound. Behind him, a decrepit bird with tatty orange feathers\",Someone turns as he hears a faint sound.,\"Behind him, a decrepit bird with tatty orange feathers\",gold,wakes him out as a sharp white cut appears on a rib cage.,is balancing on a perch.,is painted on its face in anticipation.,appears to be roots and shrubs.\n7313,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93050,13792,\"To his dismay, it suddenly bursts into flames. Someone\",\"To his dismay, it suddenly bursts into flames.\",Someone,gold,throws again at the werewolf.,deflects the cover of a punching bag.,wakes up once more.,takes a step back.\n7314,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93050,13793,Someone takes a step back. The bird,Someone takes a step back.,The bird,gold,becomes a pile of ash below its perch.,draws back - further in the night.,sneaks pass the floor.,looked out from under the tree.\n7315,anetv_8FSKFy1tPQc,12254,The man continues riding along the field holding a stick and hitting a ball. More people,The man continues riding along the field holding a stick and hitting a ball.,More people,gold,demonstrate how to properly play the game.,shoot the ball and the man continues to run between several men walking off doing the same thing.,are shown running down the track with one grabbing and bowling.,\"are seen moving over the water, hitting the ball and sending up groups to a goalie.\"\n7316,anetv_8FSKFy1tPQc,4358,Tip 4 never use strength to hit the ball appears on the screen and a child on a horse is shown swinging a stick as he hits the ball. tip 5 nearside appears on the screen and 2 different men,Tip 4 never use strength to hit the ball appears on the screen and a child on a horse is shown swinging a stick as he hits the ball.,tip 5 nearside appears on the screen and 2 different men,gold,take skates before practicing indoors.,plays balls defender and make him laugh.,are shown riding horses and using their stick to hit the ball as soon as they are near it.,shoot and laugh in the skate.\n7317,anetv_8FSKFy1tPQc,4357,Tip 3 practice rotating your bottom from the left to the right so you have all round vision shows up on the screen and a man is shown riding on his horse as he is rotating his bottom from left to right as he looks around him. tip 4 never use strength to hit the ball appears on the screen and a child on a horse,Tip 3 practice rotating your bottom from the left to the right so you have all round vision shows up on the screen and a man is shown riding on his horse as he is rotating his bottom from left to right as he looks around him.,tip 4 never use strength to hit the ball appears on the screen and a child on a horse,gold,takes the walks off the horse.,is momentarily ina the mix for as viewers how to do under again.,makes himself count some more and turns to continue to cut people.,is shown swinging a stick as he hits the ball.\n7318,anetv_8FSKFy1tPQc,12253,A man is seen speaking to the camera and lead into him riding a horse and hitting a ball. The man,A man is seen speaking to the camera and lead into him riding a horse and hitting a ball.,The man,gold,continues riding along the field holding a stick and hitting a ball.,continues running around in circles and cracking the video that ends with his throw in slow motion.,continues to ride the object while clips are shown of him walking and several shots of him walking.,continues holding the ball on the beach while helping with it.\n7319,anetv_8FSKFy1tPQc,4356,Tip 2 ride on sheepskin or on a saddle with no stirrups shows up on the screen and a man is shown riding on the horse with a sheepskin under him as he hits balls with his stick. tip 3 practice rotating your bottom from the left to the right so you have all round vision shows up on the screen and a man,Tip 2 ride on sheepskin or on a saddle with no stirrups shows up on the screen and a man is shown riding on the horse with a sheepskin under him as he hits balls with his stick.,tip 3 practice rotating your bottom from the left to the right so you have all round vision shows up on the screen and a man,gold,demonstrates the correct way to take extra coordinates from his life.,is shown riding on his horse as he is rotating his bottom from left to right as he looks around him.,starts in his own direction.,is attempting to throw guy during the jump.\n7320,anetv_8FSKFy1tPQc,4355,The video starts with words that say 5 essential tips and man is standing in a grassy field holding a polo stick and talking. tip 1 stick and ball with 2 balls glide across the screen and the man then,The video starts with words that say 5 essential tips and man is standing in a grassy field holding a polo stick and talking.,tip 1 stick and ball with 2 balls glide across the screen and the man then,gold,appears on the field riding his horse and using his stick to hit balls as the horse trots along.,begins to play on the facing rock and retrieves a strike.,spins again.,unfold a few times in slow motion.\n7321,lsmdc0028_The_Crying_Game-63387,6911,\"Someone pants behind him, wheezing, almost laughing. Someone\",\"Someone pants behind him, wheezing, almost laughing.\",Someone,gold,\"runs, whipping through the trees - - always ahead of him.\",\"a one - like drop of her raincoat and suit, she drums her nose and rubs his face.\",throws darts at someone.,comes from the restaurant and talks to someone as she sits.\n7322,lsmdc0028_The_Crying_Game-63387,6909,Someone screams in fury after him. Someone,Someone screams in fury after him.,Someone,gold,reaches into his pocket and swipe the beer.,walks back for the door.,notices that her boss is watching him.,\"aims, then changes his mind and runs.\"\n7323,lsmdc0028_The_Crying_Game-63387,6910,\"Someone aims, then changes his mind and runs. Someone gains on him - - stretches his arm out - - but someone\",\"Someone aims, then changes his mind and runs.\",Someone gains on him - - stretches his arm out - - but someone,gold,\"has already kicks someone in the face and then is shaking violently, as if he is happening him.\",\"refuses to leave, whose skins is someone's hand.\",sprints ahead again - - as if he has been playing with him.,drops the hat at the body from which he has just joined.\n7324,lsmdc0028_The_Crying_Game-63387,6908,\"Someone suddenly sprints, and, loosening the ties on his hands, then freeing them, he is off like a hare. Someone\",\"Someone suddenly sprints, and, loosening the ties on his hands, then freeing them, he is off like a hare.\",Someone,gold,stares sourly at someone.,\"watches wearily, toting his son in the crowd.\",screams in fury after him.,\"eyes someone proudly, his back to someone.\"\n7325,anetv_NcTZ3wgdNOQ,555,The woman brushes the horse all around it's body while the horse lays motionless. She,The woman brushes the horse all around it's body while the horse lays motionless.,She,gold,shows smooth chalk and wounds on her clothes.,continues to blow out her hair while the camera zooms in on her face.,continues brushing down the horse and kisses him in the end.,continues brushing the dog as well as cut out.\n7326,anetv_NcTZ3wgdNOQ,17017,A woman is seen walking into frame and then begins brushing a horse all around its' body. The woman,A woman is seen walking into frame and then begins brushing a horse all around its' body.,The woman,gold,continues brushing the horse is all of it's areas as well as it's hooves and smiling to the camera.,brushes the horse and shows the horses grooming her while she clips the hedges in her hair.,rinses the dog out and moves the horse all along his chest while speaking to the camera.,continues brushing with her teeth and walks back and forth on the horse while she continues running around the area.\n7327,anetv_NcTZ3wgdNOQ,554,Several products are laid out followed by a woman grooming a horse. The woman,Several products are laid out followed by a woman grooming a horse.,The woman,gold,\"paints the face of the horse while holding a pose, looking through the very bedraggled warms.\",brushes the horse all around it's body while the horse lays motionless.,is then seen grooming the dogs while looking in place of the dog.,demonstrates how to groom the dog as she leads the dog in.\n7328,lsmdc1024_Identity_Thief-82210,16714,He sets her on the bed. He,He sets her on the bed.,He,gold,takes the folded mug shot from his back pocket.,locks his head again.,covers her face with a passionate.,opens his door as she steps up to him standing beside someone who steps in close.\n7329,anetv_NoVa1C5KBno,10247,A young teenaged boy is standing outside of the house with a tennis ball and racket. He,A young teenaged boy is standing outside of the house with a tennis ball and racket.,He,gold,goes to the tennis court and begins to talk about the game of tennis.,gets in the bar and bounces the dart.,hits them with a stick.,dances on her mobile.\n7330,anetv_NoVa1C5KBno,10248,He goes to the tennis court and begins to talk about the game of tennis. He,He goes to the tennis court and begins to talk about the game of tennis.,He,gold,does some stretches for a little but and then gets ready to hit the ball over to the other side of the court.,\"sits back again, showing the women he was making.\",picks up his hat and runs.,spins and throws the ball down the lane.\n7331,anetv_NoVa1C5KBno,10249,He does some stretches for a little but and then gets ready to hit the ball over to the other side of the court. He talks about it on the court and then he,He does some stretches for a little but and then gets ready to hit the ball over to the other side of the court.,He talks about it on the court and then he,gold,drills holes in the wall.,leaves to go home.,scrambles back and forth and trying to not see it again.,stands back and moves his arms in as if they are playing play.\n7332,lsmdc1047_Defiance-91355,5701,Someone follows him and watches his brother convulsing with grief. Someone,Someone follows him and watches his brother convulsing with grief.,Someone,gold,bangs his head against the tree trunk.,\"snaps another automobile, semi - still, more horrified than his friends.\",\"is lifted, buckles himself up into the bear's back, then lands on the stairs, downstairs by his enemy.\",gazes at the ringing guards.\n7333,lsmdc1047_Defiance-91355,5702,Someone bangs his head against the tree trunk. Someone,Someone bangs his head against the tree trunk.,Someone,gold,sits beside him and places one arm around someone.,grabs him from behind and wrestles him to the ground.,meets his gaze for a moment.,drags him from a canvas shelter.\n7334,lsmdc1047_Defiance-91355,5699,\"Someone walks away, stumbling into the undergrowth. He\",\"Someone walks away, stumbling into the undergrowth.\",He,gold,\"comes off, still clutching the locket.\",starts to ship forward instinctively.,throws the women over onto the sand bank.,throws up by a tree and sinks to his knees.\n7335,lsmdc1047_Defiance-91355,5700,He throws up by a tree and sinks to his knees. Someone,He throws up by a tree and sinks to his knees.,Someone,gold,follows him and watches his brother convulsing with grief.,drops on his knees and releases someone.,\"climbs onto a railing, spotting the controls for a light lamp.\",drags him from the ceiling.\n7336,anetv_uyp6t45rOD8,5317,\"After, the man perform high jump but drops the horizontal pole. The athlete\",\"After, the man perform high jump but drops the horizontal pole.\",The athlete,gold,is kicked off the side flipping and diving off the dance ramps in slow motion across the crowd while the crowd claps and cheers.,perform high jumps successfully.,\"running very high down some jumps at the jump rope and long, straight before his own hand and serves giving good and opportunity charges\",performs jumping and catching to more clips from other spectators.\n7337,anetv_uyp6t45rOD8,5316,\"Then, the athlete performs high jump successfully. After, the man\",\"Then, the athlete performs high jump successfully.\",\"After, the man\",gold,throws the other foot on the mat.,perform high jump but drops the horizontal pole.,makes his jump and gets a large but straight pole and lands high the top.,runs over a slope and then continue to bounce with a pole.\n7338,anetv_uyp6t45rOD8,5315,\"An athlete performs high jump and lands on the mat while person takes notes. Then, the athlete\",An athlete performs high jump and lands on the mat while person takes notes.,\"Then, the athlete\",gold,\"jumps running from a pole jump on high high, high snowboard and drops high above a calm stadium.\",performs high jump successfully.,shakes his jump in circles as he takes a hammer throw.,shows his moves while other skiers successfully watch them.\n7339,anetv_JbAvSsIaI8g,9753,He takes a contact out of his eye. He,He takes a contact out of his eye.,He,gold,starts ruffling his hair and face to the camera.,carves the screen with his finger.,sprays the lotion and puts it in a bag.,rubs his eye before putting it back in.\n7340,anetv_JbAvSsIaI8g,9752,A man is sitting behind a laptop. He,A man is sitting behind a laptop.,He,gold,starts playing a guitar on the kitchen floor.,is normal around a table.,is showing how to wrap a nice box.,takes a contact out of his eye.\n7341,anetv_skIP_U4EYDQ,7709,A young Asian girl is kneeling down in the sand packing it with her hand into the container. She then,A young Asian girl is kneeling down in the sand packing it with her hand into the container.,She then,gold,admires how to turn the top while the girl drops the disk and runs and walks down to the back.,picks the camera up and puts it around the back of plastic bags.,pierces several candles on a canvas.,flips her toy over and makes a sand castle.\n7342,anetv_skIP_U4EYDQ,9677,The girl scoops some sand. the girl,The girl scoops some sand.,the girl,gold,scoops the seeds out of the water.,goes down the waste tree to pick another.,picks up the sand bag and brings it to the girl.,puts the sand down and makes a castle.\n7343,anetv_FiqkrBh1VOI,1003,The people finish dancing and the crowd claps. The sitting man,The people finish dancing and the crowd claps.,The sitting man,gold,joins them at the bar.,stands and walks away.,stands and pushes out a chair.,stands on the platform.\n7344,anetv_FiqkrBh1VOI,14433,\"A woman and a man enters a dance floor. Then, the woman and the man\",A woman and a man enters a dance floor.,\"Then, the woman and the man\",gold,lie on the floor.,dance tango on front people in a restaurant.,kick a boxing match.,dance around while jumping and dancing in various environments.\n7345,anetv_FiqkrBh1VOI,14434,\"Then, the woman and the man dance tango on front people in a restaurant. A young man\",\"Then, the woman and the man dance tango on front people in a restaurant.\",A young man,gold,looks the couple and smiles.,walks toward a sink and starts a fire.,speaks from the point in the meeting.,plays the hands - ups on a stool.\n7346,anetv_FiqkrBh1VOI,14435,A young man looks the couple and smiles. A band,A young man looks the couple and smiles.,A band,gold,talks as others enter.,plays on the sign.,walks to the stage on the stage.,plays in the restaurant.\n7347,anetv_FiqkrBh1VOI,1001,We see a man and a woman hold hands while walking in a restaurant. The man and woman,We see a man and a woman hold hands while walking in a restaurant.,The man and woman,gold,go to the dance floor and dance close together.,\"hold their movements and the judge demonstrates, before returning to the finished section on the abduction.\",begin blowing the leaves in beds.,stretch up in unison with a black and yellow tattoo.\n7348,anetv_KWhXvv1WtFM,124,Two people are in a fencing match dressed in white and fencing back and forth. Many people,Two people are in a fencing match dressed in white and fencing back and forth.,Many people,gold,are kites on the floor.,are walking down the walkway lead into two people doing jumping down jumping.,are standing around watching and recording a video.,walk away and correctly running to the back.\n7349,anetv_KWhXvv1WtFM,9213,Then we see men fencing inside a building. A man,Then we see men fencing inside a building.,A man,gold,is a thumping development.,pushes a pumpkin on a pumpkin carving nothing on the pumpkin inside.,bows before removing his hood and walking away.,\"stretches a branch using tools, bearing some strong brown and white leaves.\"\n7350,anetv_YtKUxxMo6Cs,1235,A man is riding a pair of water skis while attached to a boat. He,A man is riding a pair of water skis while attached to a boat.,He,gold,scoots over into the water and climbs into the water.,\"swerves from side to side in the water, holding on.\",shows another man riding in the carriage with him.,skis and do a subject stand and fishes people toward small boats.\n7351,anetv_YtKUxxMo6Cs,1236,\"He swerves from side to side in the water, holding on. He\",\"He swerves from side to side in the water, holding on.\",He,gold,\"jumps into the air as a stunt, then loses his balance and falls into the water.\",sparks from the glowing grip on his hand.,quickly spins through the hole through the water.,\"overlays video of his experience acrobatic animation and tally turns to sitting up before he is spinning a bar against a white surface, then\"\n7352,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17082,\"Someone smashes through a window and crashes into someone, scattering all the money. Someone\",\"Someone smashes through a window and crashes into someone, scattering all the money.\",Someone,gold,\"sits up and sees someone bounding along the second floor balcony above someone, who runs along the first.\",bends down to reel his broom out of the window.,staggers out of the flap and takes back the cigarette.,sits up as someone goes to someone's office building.\n7353,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17106,\"Everyone gets to their feet, including someone, who taps a slumbering someone on the shoulder. He\",\"Everyone gets to their feet, including someone, who taps a slumbering someone on the shoulder.\",He,gold,places the barrel of the soldier into someone's cheek.,won't let it stop.,comes to and rises to his feet.,bashes someone in the face.\n7354,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17074,\"Someone is wrenched backwards, out of the window. He\",\"Someone is wrenched backwards, out of the window.\",He,gold,illuminate the alien flying off the roof on.,swarm to a young man reaches out to grab someone.,lands heavily on a barge carrying sand on the canal outside.,\"proffers, and stops behind a surprised corner.\"\n7355,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17098,\"He nudges someone, who stirs but does n't awake. Someone\",\"He nudges someone, who stirs but does n't awake.\",Someone,gold,\"gets out of the vehicle, walks round it and shoves someone again.\",\"points a gun from someone's shoulder and snarls, then looks up at someone.\",jumps onto the wall and stares at the tourist as they go.,pushes himself into a chair as he puts her in the massage chair and buries her chin in her hands.\n7356,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17088,Someone leaps down some steps and trips someone up. She,Someone leaps down some steps and trips someone up.,She,gold,fixes away with her own rat chases everything on shadowfax.,rolls out of the fall and draws a knife.,tosses him away towards the auditorium where someone's friends lead the way into the room.,uses a blanket to brace it.\n7357,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17053,Someone bludgeons the man with the brolly. Someone,Someone bludgeons the man with the brolly.,Someone,gold,drags someone off his horse and trots across the track.,flings the man down on floor and lands someone on the canvas.,lunges with a knife.,raises his hands out to hail someone.\n7358,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17072,Someone kicks someone out of the window. The line between him and someone,Someone kicks someone out of the window.,The line between him and someone,gold,rears up for him.,get out and dance outdoors.,enter a pool tank.,\"is pulled tight, dragging someone towards the window.\"\n7359,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17061,\"Brandishing another blade, he goes after people. He\",\"Brandishing another blade, he goes after people.\",He,gold,sprints off and faces someone in a burst of red flames.,goes back to the battle on the hooded lorry in what spotted waves.,is scraped away.,runs along the edge of a balcony within the building.\n7360,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17102,\"As someone tries to tidy him up, the sleeve of someone's jacket rips off. Someone\",\"As someone tries to tidy him up, the sleeve of someone's jacket rips off.\",Someone,gold,produces a blood substance from a wound on the floor.,tosses it into the car.,\"fights back, someone glares nervously toward someone.\",wakes and is wide awake.\n7361,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17107,He comes to and rises to his feet. A spruced - up someone,He comes to and rises to his feet.,A spruced - up someone,gold,is staring at the old man.,is standing beside him.,performs a great pose.,walks to the window.\n7362,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17055,Someone dodges the attack and hooks the umbrella handle around the man's throat. He,Someone dodges the attack and hooks the umbrella handle around the man's throat.,He,gold,hauls her off the dog.,is hauled away by a blast of bright red energy.,\"cuts the witch's throat and breaks the handle, holding someone's gun.\",throws the man over his shoulder and whacks him in the face.\n7363,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17067,\"Someone twists his arm and throws him onto a sofa. They struggle, and someone's blade\",Someone twists his arm and throws him onto a sofa.,\"They struggle, and someone's blade\",gold,\"falls in his hands, knocking him away.\",smashes him off the window.,scrapes someone 'cheek.,rolls up the street strike someone.\n7364,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17054,Someone lunges with a knife. Someone,Someone lunges with a knife.,Someone,gold,\"stands on its wings, reaching for the protective human mask.\",lunges at the one.,dodges the attack and hooks the umbrella handle around the man's throat.,flips and lowers his shirt.\n7365,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17083,\"Someone sits up and sees someone bounding along the second floor balcony above someone, who runs along the first. Someone\",\"Someone sits up and sees someone bounding along the second floor balcony above someone, who runs along the first.\",Someone,gold,\"makes back around to someone, who gives him the push.\",leaps down onto her floor.,\"draws a wand out of the way, then looks back at him again.\",holds the bat in his hand.\n7366,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17105,The guests are in their places as the bride makes her way up the aisle. Everyone,The guests are in their places as the bride makes her way up the aisle.,Everyone,gold,\"turns and goes to the window, listening.\",grabs someone 'arm.,opens a small door to the magnificent guests at the same time.,\"gets to their feet, including someone, who taps a slumbering someone on the shoulder.\"\n7367,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17089,She rolls out of the fall and draws a knife. Someone,She rolls out of the fall and draws a knife.,Someone,gold,dodges her attack and punches her in the face.,stares at the baby's hologram.,knocks her over to the table.,moves to the upper level.\n7368,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17058,Someone kills someone by throwing a knife into his chest. Someone,Someone kills someone by throwing a knife into his chest.,Someone,gold,screams as people rip him through the walls.,\"flinches, causing someone a handful of chunks plume of fruit.\",sits at the wheel.,goes over to her.\n7369,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17094,\"Someone retrieves someone's bag and someone's letter. The next day, he\",Someone retrieves someone's bag and someone's letter.,\"The next day, he\",gold,sprints into the grounds of the white house.,picks up a battered old cloth - wrapped bundle.,drives his car along a narrow road leading to a village.,will copy a magazine furnishings.\n7370,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17090,Someone dodges her attack and punches her in the face. He,Someone dodges her attack and punches her in the face.,He,gold,\"kisses her, then scrambles back to the bed.\",goes to grab her boots and pants.,\"leaps with a cane in the back of his throat, then circles it.\",thumps her a second time and is about to strike with his own knife when someone intervenes.\n7371,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17110,\"Standing alone by the latched gate of the churchyard, someone applauds. Someone\",\"Standing alone by the latched gate of the churchyard, someone applauds.\",Someone,gold,disappears through the gate and cranks his car's engine into life.,and someone share a look.,\"claps a hand over someone's mouth, tripping up a fight.\",brings someone's friends away.\n7372,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17066,Someone whacks someone over the head with a bottle. Someone,Someone whacks someone over the head with a bottle.,Someone,gold,\"looks down at the drawing, then freezes.\",twists his arm and throws him onto a sofa.,closes his eyes tightly and tries to roll over.,\"holds out his wand, striking it with a dagger.\"\n7373,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17104,\"They clasp hands, and someone leads a shambling someone towards the church. The guests\",\"They clasp hands, and someone leads a shambling someone towards the church.\",The guests,gold,go back to singing a song.,are in their places as the bride makes her way up the aisle.,make their way into the cab.,\"emerge from the sunshine garden from across the tabletop, past the battered city characters.\"\n7374,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17068,Someone gives chase and tackles him to the floor. Someone,Someone gives chase and tackles him to the floor.,Someone,gold,springs up and grabs someone by the hair.,jumps on his horse and yanks him out.,gets into the ladder and jumps into the building.,struggles painfully to the end of the bar.\n7375,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17075,He lands heavily on a barge carrying sand on the canal outside. Someone,He lands heavily on a barge carrying sand on the canal outside.,Someone,gold,bursts up out of the sand and grabs him.,lumbers up against a wall outside the dragon car.,\"arrive at deejay booth, where someone applauds as they soar to his plaza.\",sends the four gunmen flying after him.\n7376,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17076,Someone bursts up out of the sand and grabs him. Someone,Someone bursts up out of the sand and grabs him.,Someone,gold,throws the rock into bed and heads to the forest.,topples the tank into someone's eyes and throwing struts into his brother's arms.,leaps across the barrier and suddenly misses the boy.,breaks free and falls onto a lower deck.\n7377,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17097,\"Sporting dark glasses and smoking his long pipe, someone turns around to a bruised and beaten someone, who is asleep beside him. He\",\"Sporting dark glasses and smoking his long pipe, someone turns around to a bruised and beaten someone, who is asleep beside him.\",He,gold,pulls his diary pendant back at his penny and puts it on.,\"nudges someone, who stirs but does n't awake.\",\"checks his time, knocking him to his knees.\",takes a plastic container from someone to carry it back to normal.\n7378,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17095,\"The next day, he drives his car along a narrow road leading to a village. The car\",\"The next day, he drives his car along a narrow road leading to a village.\",The car,gold,rolls on driveway leading with several rolls beside a parade.,looks up as someone laughs.,\"corners off, revealing someone's covered garage.\",pulls up outside the church.\n7379,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17109,\"She smiles up at him, and sees he is sporting a black eye and generally looks knocked about. She\",\"She smiles up at him, and sees he is sporting a black eye and generally looks knocked about.\",She,gold,massages the bottom of his throat and someone then cuts it into his.,\"looks over at someone, who winks reassuringly.\",\"enters and opens the door, gets up and walks off down the hall.\",starts to run the marathon.\n7380,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17060,Someone comes round and leaps to his feet. He,Someone comes round and leaps to his feet.,He,gold,is shaking his head.,takes off his heavy coat in which someone's knife is embedded.,treads down the backseat.,\"sways both legs so he falls on the ground, giving his leg five, then turns boxing.\"\n7381,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17077,\"Someone breaks free and falls onto a lower deck. Someone tries to flee, but someone\",Someone breaks free and falls onto a lower deck.,\"Someone tries to flee, but someone\",gold,unleashes a charge and swims hit the floor.,gives him a fall.,yanks him back with the rope connecting them.,\"follows, his gaze fixed on his sullen face.\"\n7382,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17069,Someone springs up and grabs someone by the hair. Someone,Someone springs up and grabs someone by the hair.,Someone,gold,rises up handed a high - backed blaster.,opens her eyes as she dangles from her neck.,pulls him away and whacks him with a curtain rail.,\"stumbles, trying to tire himself up.\"\n7383,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17073,\"The line between him and someone is pulled tight, dragging someone towards the window. Someone\",\"The line between him and someone is pulled tight, dragging someone towards the window.\",Someone,gold,rejoins his son at a distance.,pulls away from his horses and steps up to her beside him.,\"is wrenched backwards, out of the window.\",stands staring at someone through the garden of who's had been waiting on a curb.\n7384,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17052,\"He swings the brolly, and someone drops down. He\",\"He swings the brolly, and someone drops down.\",He,gold,pulls his aside as he climbs a stone staircase between his feet.,listens to the timed line.,scrambles through the hole to the bone then creeps around.,knocks a knife from the man's hand.\n7385,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17101,Someone starts pulling at a coat someone is using as a blanket. A couple of empty bottles,Someone starts pulling at a coat someone is using as a blanket.,A couple of empty bottles,gold,sits over an old man's head.,lie in the kitchen along with an impression of bones beneath them.,fall out of the car as someone struggles out of it.,shift into the bag drawers.\n7386,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17079,Someone starts to climb back up the window they fell from. Someone,Someone starts to climb back up the window they fell from.,Someone,gold,sees him coming and backs away from the window.,bends in the spare and sees that someone's not able to!,pays and spins around to find someone clinging to the leather.,\"rose - falls from the cab, and the red tip falls into a heap.\"\n7387,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17062,He runs along the edge of a balcony within the building. He,He runs along the edge of a balcony within the building.,He,gold,runs through the grand airy a lobby to a stately police station.,looks up and sees only someone very in bed.,stares off into the distance.,\"somersaults off it down to a lower level, and heads off people.\"\n7388,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17063,\"He somersaults off it down to a lower level, and heads off people. Someone\",\"He somersaults off it down to a lower level, and heads off people.\",Someone,gold,scrambles up and down a corridor to the shaved house.,crosses the twister surface in a tall plastic type room.,\"throws someone, who back - flips off a wall and comes at him again.\",crouches down beside him and sinks to a position at the rear end of the pool.\n7389,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17100,Someone awakes with an appalled expression. Someone,Someone awakes with an appalled expression.,Someone,gold,strolls to a desk where he photographs a blond woman strolling by someone in an sorting hat.,starts pulling at a coat someone is using as a blanket.,leans over his infected buddies.,looks from someone through the window as someone cocks his head.\n7390,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17111,Someone disappears through the gate and cranks his car's engine into life. Someone's bearded agent,Someone disappears through the gate and cranks his car's engine into life.,Someone's bearded agent,gold,is leaning against the side of the car.,climbs up to catch her.,feels off into the passenger seat.,\"stands across the humvee, guns blazing.\"\n7391,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17071,\"As they fight, someone attaches a line to someone 'belt. Someone\",\"As they fight, someone attaches a line to someone 'belt.\",Someone,gold,points at the knife and attached fire.,takes a bow as someone watches in midair.,keeps his eyes on the prisoners.,kicks someone out of the window.\n7392,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17081,Someone collects his winnings from the other players. Someone,Someone collects his winnings from the other players.,Someone,gold,points the gun onto the top of the pole and someone taps the mic.,cracks men open someone.,\"soars down the aisle, landing in his brother's arms.\",\"smashes through a window and crashes into someone, scattering all the money.\"\n7393,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17078,Someone gets up again and cuts the rope linking them together. Someone,Someone gets up again and cuts the rope linking them together.,Someone,gold,starts to climb back up the window they fell from.,strides into the raft and stands at a street outdoors.,spins around and throws the flag down the sinking.,steps up to leaving.\n7394,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17091,He thumps her a second time and is about to strike with his own knife when someone intervenes. He,He thumps her a second time and is about to strike with his own knife when someone intervenes.,He,gold,kicks someone out of a door and into the canal.,\"raises the glass, burying his face in his hand.\",\"turns, smiling a little groping for what she sees.\",leaps into the cage and kicks it in the chest.\n7395,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17084,Someone leaps down onto her floor. Someone,Someone leaps down onto her floor.,Someone,gold,directs the glowing sphere to tip herself back.,picks the alien's hand.,picks himself up and gives chase.,\"fires out of his way, smashing through windows and the flames.\"\n7396,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17065,At least he is winning. Someone,At least he is winning.,Someone,gold,\"reaches over, grabs him, and crawls into the crowd.\",has roulette downstairs into a line of players.,whacks someone over the head with a bottle.,puts down her helmet but is n't able to give anything instruction.\n7397,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17064,\"Someone throws someone, who back - flips off a wall and comes at him again. Meanwhile, on the ground floor, someone\",\"Someone throws someone, who back - flips off a wall and comes at him again.\",\"Meanwhile, on the ground floor, someone\",gold,studies himself up.,is still playing cards.,keeps his look over the trash.,hurries to a dead - end door.\n7398,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17103,\"Someone eyes him wearily, and someone nods. They clasp hands, and someone\",\"Someone eyes him wearily, and someone nods.\",\"They clasp hands, and someone\",gold,glares on top of someone.,leads a shambling someone towards the church.,starts to rip his leather away.,gives sister an injection.\n7399,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17085,Someone picks himself up and gives chase. Someone,Someone picks himself up and gives chase.,Someone,gold,drops an adjoining lantern into the fridge.,strolls directly out a window in the trees.,comes to the door and runs over to the island.,\"notices the other players eyeing his winnings, which are now scattered on the floor.\"\n7400,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17057,\"Now, for real, someone pulls someone down from the rafters with the umbrella and disarms him. Someone\",\"Now, for real, someone pulls someone down from the rafters with the umbrella and disarms him.\",Someone,gold,hurls up the small village and leaves a one enormous bookshelf.,\"comes across the street, a woman is just sitting against a wall on a sled.\",kills someone by throwing a knife into his chest.,takes his peaceful buddy and rushes to the cot where someone takes the wounded.\n7401,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84747,17092,He kicks someone out of a door and into the canal. Someone,He kicks someone out of a door and into the canal.,Someone,gold,runs across the bridge and trips on the boys.,looks up onto the patio rocks stately disgust.,\"gets to her feet, clutching her nose, and turns to someone.\",\"is shown - a man is balanced by some bristle, landing walking on the floor to a big tree.\"\n7402,anetv_iuEuMQUXLVw,6896,\"Woman is standing in a kitchen and is eating a cake full of cream. a cake is in a pot on the counter, woman\",Woman is standing in a kitchen and is eating a cake full of cream.,\"a cake is in a pot on the counter, woman\",gold,is speaking to the camera in the kitchen.,\"is eating an ice cream cone, and trying to make out.\",is lined on top of wrapping it around to wrap up an apple.,is holding some fruit and pour the butter into the pot.\n7403,anetv_iuEuMQUXLVw,6897,\"A cake is in a pot on the counter, woman is speaking to the camera in the kitchen. cake mix is beat with a mixer, the woman\",\"A cake is in a pot on the counter, woman is speaking to the camera in the kitchen.\",\"cake mix is beat with a mixer, the woman\",gold,keeps talking and mixing the cake.,takes 2 bottles and glasses and drink it up.,adds more liquor and ornaments.,is put onto a casserole dish.\n7404,anetv_nHafujMomWg,5838,He uses a peeler to peel the skin from a potato. He,He uses a peeler to peel the skin from a potato.,He,gold,begins to cut the wallpaper over the edges.,\"moves quickly, peeling until all the potatoes are bare.\",raises his head in the oven to look at it.,watches it with an ice cream cone.\n7405,anetv_nHafujMomWg,5837,A man is in front of a cutting board covered in potatoes. He,A man is in front of a cutting board covered in potatoes.,He,gold,uses a peeler to peel the skin from a potato.,dips the egg in the pan.,unscrews kitchen ingredients and mixes the ingredients together.,is carving the pumpkins with words at the bottom of a screen.\n7406,anetv_l0btLzdAeuM,14362,Two men are seen playing a game of fooseball while showing a close up of the table. Several shots,Two men are seen playing a game of fooseball while showing a close up of the table.,Several shots,gold,are shown of the table as well as the men playing.,are shown of the goalie walking kicking up their hands and shooting them back and fourth.,are shown of people playing with one another as well as hitting the birdie back and fourth.,are shown of people playing instruments while the camera pans all around the room.\n7407,anetv_l0btLzdAeuM,14363,Several shots are shown of the table as well as the men playing. The men,Several shots are shown of the table as well as the men playing.,The men,gold,\"kick the ball around to fourth, going back and fourth while others watch on the sides.\",continue to play with one another while moving their hands around.,continue to perform and turn around while many speak to one another.,kick the racket around while others watch on the side.\n7408,anetv_l0btLzdAeuM,19334,\"The two men fold up and down the gaming table, with interjecting explanatory text. The two men\",\"The two men fold up and down the gaming table, with interjecting explanatory text.\",The two men,gold,hold each other's arms out.,resume interacting with the gaming table.,\"make tall, yellow bike masks.\",make a rub on each other.\n7409,lsmdc3055_PROMETHEUS-26664,1038,\"The two trapped men move on through the dark cramped space. A white mist blasts it, filling the chamber and an image\",The two trapped men move on through the dark cramped space.,\"A white mist blasts it, filling the chamber and an image\",gold,shows someone cuddling no longer smoking.,of its hand explodes in the effect.,appears on a monitor.,flashes into smooth metal.\n7410,lsmdc3055_PROMETHEUS-26664,1044,\"Carefully lifting the large helmet off completely, he reveals a human - like head. It\",\"Carefully lifting the large helmet off completely, he reveals a human - like head.\",It,gold,'s eyes closed peacefully.,flies up towards the event.,falls on the knees.,features a handsome black cylindrical tablet which is reactor moved bulletproof.\n7411,lsmdc3055_PROMETHEUS-26664,1039,\"As the head slides from the chamber, someone arrives. Someone\",\"As the head slides from the chamber, someone arrives.\",Someone,gold,activates an arched scanner that glides over the head.,\"gapes, move around the dock.\",retract his straw lid.,\"beams, urging spinning gears and spinning smoothly.\"\n7412,lsmdc3055_PROMETHEUS-26664,1043,\"Someone easily releases the helmet, lifting the trunk like snout. Carefully lifting the large helmet off completely, he\",\"Someone easily releases the helmet, lifting the trunk like snout.\",\"Carefully lifting the large helmet off completely, he\",gold,reveals a human - like head.,falls with a dissatisfied sigh.,sucks up a few more gears.,scrambles to his feet and wallops his trunk.\n7413,lsmdc3055_PROMETHEUS-26664,1041,\"As someone studies one monitor, someone steps over the image of the head on another. As someone\",\"As someone studies one monitor, someone steps over the image of the head on another.\",As someone,gold,picks up his weapon and punches him in the gut.,plops down nearby with a bottle of liquor.,\"steps along the safety of a platform above someone, someone heads outside.\",surrenders his nose to someone.\n7414,anetv_1uC0xzyx4Bc,3612,Finally he shows how to use a vinegar solution to clean the tiles in order to maintain the quality of the tiles. The video,Finally he shows how to use a vinegar solution to clean the tiles in order to maintain the quality of the tiles.,The video,gold,ends with the closing internet closeups and graphics.,cuts to them now as he moves in and brushes the hair and then it's displayed.,then shows how to cut the wallpaper.,ends with the information of the tile company.\n7415,anetv_1uC0xzyx4Bc,3609,The person shows how to prep the floor surface before installing the tiles. He,The person shows how to prep the floor surface before installing the tiles.,He,gold,demonstrates how to lay the tiles on the floor in a criss - cross manner.,shaves it for fourth and then switches on the hiting.,'s places ads in the material in front of the camera.,uses some materials to show up the materials and vacuums the furniture.\n7416,anetv_1uC0xzyx4Bc,3611,A person also shows how to trim tiles to fit flush edge to edge without leaving a gap between tiles. Finally he,A person also shows how to trim tiles to fit flush edge to edge without leaving a gap between tiles.,Finally he,gold,shows how to use a vinegar solution to clean the tiles in order to maintain the quality of the tiles.,uses his ax to scrape off its new roof tiles.,moves very far along with the man slanted.,\"puts plaster on the wood, and throws it on the tile when he is done.\"\n7417,anetv_1uC0xzyx4Bc,3607,A person is showing how to install rubber tiles in a gym. The video,A person is showing how to install rubber tiles in a gym.,The video,gold,goes back into a video as it works.,\"morphs into a tank, making lots of workout exercise.\",shows several people working out in a gym on the flooring.,ends with a text showing the product is used on many accordions.\n7418,anetv_1uC0xzyx4Bc,3610,The video shows a simulation how the tiles can measured up and laid down one by one in order to get a perfect wall to to wall fit. A person also,The video shows a simulation how the tiles can measured up and laid down one by one in order to get a perfect wall to to wall fit.,A person also,gold,flips over a large autographed photo on a row of bats.,shows how to trim tiles to fit flush edge to edge without leaving a gap between tiles.,speaks to the camera and talks to the camera in various locations and then doing tricks outdoors with different tires.,rubs holes on the wood for a month.\n7419,anetv_2DCeEAz8iO8,1102,A camera pans around a person riding around on a horse. The person,A camera pans around a person riding around on a horse.,The person,gold,continuously rides down on the horse's tail.,rides the horse around another area while walking around and smiling.,lassos the calf while trying to walk the calf.,continues riding around the area and pauses to speak to the woman while she laughs and speaks to the camera.\n7420,anetv_rduaWxRvcw0,17470,\"She takes rollers out of her hair, one at a time. She then\",\"She takes rollers out of her hair, one at a time.\",She then,gold,styles her hair and displays it to the camera.,adds two marks on it all each pickle.,proceeds to create a braid.,finishes the hair off throughout the entire braid.\n7421,anetv_rduaWxRvcw0,17469,\"A woman wearing a head scarf is seated, talking to the camera. She\",\"A woman wearing a head scarf is seated, talking to the camera.\",She,gold,woman is sitting on the sidewalk.,\"takes rollers out of her hair, one at a time.\",presents a bowl into a pan.,working behind while and speaking to the camera.\n7422,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10327,Someone sisters are still sitting in the parlor. Someone,Someone sisters are still sitting in the parlor.,Someone,gold,\"stand in front of herself, knitting.\",walks over to someone and points to his set with a frustrated glare.,puts down her book and is just going to pour the tea when someone comes in.,is demonstrating how to film a tattoo.\n7423,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10321,\"When he reaches a corner, a young beggar girl stops him to ask for money. As he searches his pockets for coins, he\",\"When he reaches a corner, a young beggar girl stops him to ask for money.\",\"As he searches his pockets for coins, he\",gold,goes to a shelf.,asks her for directions.,snaps every chattering we can without sight.,looks up at her with glistening eyes.\n7424,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10317,\"He steps inside, takes off his top hat and black cloak, and heads into his study, closing the door behind him. People\",\"He steps inside, takes off his top hat and black cloak, and heads into his study, closing the door behind him.\",People,gold,approach a platform near the canal.,are watching him with some concern.,\"is watched by the white thief, who walks up onto his wooden ramp into the three - lit living room.\",walk to the dressing room.\n7425,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10319,\"Someone is wandering through a cobbled street, bustling with people and horses. He\",\"Someone is wandering through a cobbled street, bustling with people and horses.\",He,gold,runs towards a sound motorcycle.,spies at her.,\"makes his way down the crowded street, looking slightly lost.\",leans in for a kiss.\n7426,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10324,\"Finally, he finds the house he is looking for and bangs on the door. As the door opens, a woman\",\"Finally, he finds the house he is looking for and bangs on the door.\",\"As the door opens, a woman\",gold,looks shocked to see someone.,takes out his wallet.,stands and looks around.,hurries out the door.\n7427,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10316,People are waiting for him. He,People are waiting for him.,He,gold,\"is moving forward, lost in the light of wind.\",grabs someone's face and kisses him.,\"steps inside, takes off his top hat and black cloak, and heads into his study, closing the door behind him.\",cups the hill three top.\n7428,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10315,Someone arrives home in the pouring rain. People,Someone arrives home in the pouring rain.,People,gold,are waiting for him.,\"lift his arm, revealing the room with a sofa tucked in space.\",are driven down a street.,eat at dinner with people in one.\n7429,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10322,\"As he searches his pockets for coins, he asks her for directions. She\",\"As he searches his pockets for coins, he asks her for directions.\",She,gold,launches a breather in the air which clatters down to her side.,indicates the road he should take.,\"smiles, then brings her hands to someone's face.\",takes another seat with a box on his shoulder.\n7430,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10320,\"He makes his way down the crowded street, looking slightly lost. When he reaches a corner, a young beggar girl\",\"He makes his way down the crowded street, looking slightly lost.\",\"When he reaches a corner, a young beggar girl\",gold,stands against him and watches them.,stops him to ask for money.,sees bowling balls beside him.,hikes up to a moving board.\n7431,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10318,The two sisters exchange worried glances. Someone,The two sisters exchange worried glances.,Someone,gold,\"raises his hand, ready to reach him until he is helpless.\",\"is wandering through a cobbled street, bustling with people and horses.\",hands someone to her.,brings the bowl to her feet.\n7432,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10325,\"As the door opens, a woman looks shocked to see someone. Her housekeeper quickly\",\"As the door opens, a woman looks shocked to see someone.\",Her housekeeper quickly,gold,swings down allowing the blonde to enter.,locks her call.,tries to shut him out.,pauses when she sees something.\n7433,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10326,Her housekeeper quickly tries to shut him out. Someone sisters,Her housekeeper quickly tries to shut him out.,Someone sisters,gold,gardening into the hospital hallway.,ride slowly up to the house as another transport settles.,launch up the stairwell.,are still sitting in the parlor.\n7434,lsmdc1044_Pride_And_Prejudice_Disk_Two-89809,10323,\"She indicates the road he should take. Finally, he\",She indicates the road he should take.,\"Finally, he\",gold,glances back and falls to his laps.,grabs the woman's coat and drapes it around the car.,\"stands behind her, full of fine flowers.\",finds the house he is looking for and bangs on the door.\n7435,lsmdc3056_PUBLIC_ENEMIES-3489,14648,Someone crosses the roomy rundown apartment then doubles back to a door. A woman with similar short hair,Someone crosses the roomy rundown apartment then doubles back to a door.,A woman with similar short hair,gold,comes down a staircase.,arrives in a locked stall.,\", a uniform stands outside.\",styles her ex school uniform.\n7436,lsmdc3056_PUBLIC_ENEMIES-3489,14641,\"Now outside a small town pharmacy, someone returns to the heisted car. Someone\",\"Now outside a small town pharmacy, someone returns to the heisted car.\",Someone,gold,empties his lid and keeps it to himself.,leans sweating and bloody in the corner of the backseat.,hangs up the phone and enters the garage.,speeds along the road through a deserted cabin.\n7437,lsmdc3056_PUBLIC_ENEMIES-3489,14643,Someone fuses with other supplies. He,Someone fuses with other supplies.,He,gold,rips her lips to her face and sets her down.,finds the boys measuring different tables in the brewing perusing room.,has a nice sense of shining on her child's hand!,applies gauze to the wound.\n7438,lsmdc3056_PUBLIC_ENEMIES-3489,14645,\"Someone trains his puffy, exhausted eyes on someone. Someone\",\"Someone trains his puffy, exhausted eyes on someone.\",Someone,gold,pulls his waistcoat in a short parting hat and shows him the gate.,slumps a little then sits back.,\"kisses his forehead, then pulls a hat down, revealing a blanket covering his chest.\",looks down as he smoke pill in his mouth and sprays his face.\n7439,lsmdc3056_PUBLIC_ENEMIES-3489,14642,Someone leans sweating and bloody in the corner of the backseat. Someone,Someone leans sweating and bloody in the corner of the backseat.,Someone,gold,lands on his back.,\"reaches down, grabs the latch and holds it out.\",watches him on the back then pulls the van around its wheel.,pours antiseptic over someone's wounded abdomen.\n7440,lsmdc3056_PUBLIC_ENEMIES-3489,14656,\"A car's headlights illuminate and shine on her anxious face. Situated about a block away, the car\",A car's headlights illuminate and shine on her anxious face.,\"Situated about a block away, the car\",gold,stops and looks down at the photos of her parents.,pulls out in a cloud of dust.,approaches and comes to a stop.,trundles out of the stables.\n7441,lsmdc3056_PUBLIC_ENEMIES-3489,14646,\"Someone slumps a little then sits back. He swallows, glancing at someone, and his lips\",Someone slumps a little then sits back.,\"He swallows, glancing at someone, and his lips\",gold,twinkle a white form.,quiver as he watches soberly.,are slightly back and position at angle away.,give a brief irritated sneer.\n7442,lsmdc3056_PUBLIC_ENEMIES-3489,14652,\"In another car, two more agents see someone in an overcoat and fedora totting a paper bag across a dark alley. It\",\"In another car, two more agents see someone in an overcoat and fedora totting a paper bag across a dark alley.\",It,gold,passes through the windows.,\"knocks snowy into the fighter's lapel, knocking him down onto the metal gate.\",'s someone in disguise.,reads the front of a young beating woman with a long huge snout and snips hair from a finger.\n7443,lsmdc3056_PUBLIC_ENEMIES-3489,14654,\"She comes to a street on the other end. Carrying the brown paper bag, she\",She comes to a street on the other end.,\"Carrying the brown paper bag, she\",gold,has a bag and follows the cashier out.,takes the letter and enters.,steps off the sidewalk between parked cars.,gets in the seat.\n7444,lsmdc3056_PUBLIC_ENEMIES-3489,14659,\"Someone steps forward, arms folded across his chest. In the outer office, the solemn burly agent\",\"Someone steps forward, arms folded across his chest.\",\"In the outer office, the solemn burly agent\",gold,sits on a bench near an elderly guard.,\"watches as a single title view, on the floor, approaches the sidewalk, leaving other passengers staring at someone.\",stands with his partner.,approaches by shaking his head.\n7445,lsmdc3056_PUBLIC_ENEMIES-3489,14658,The agents abruptly gaze out the door. Someone,The agents abruptly gaze out the door.,Someone,gold,\"steps forward, arms folded across his chest.\",\"darts in from a bag, then steps forward into the open - crowded passage.\",and someone take their seats on the parallel terrace.,comes low her the staircase.\n7446,lsmdc3056_PUBLIC_ENEMIES-3489,14657,\"Situated about a block away, the car approaches and comes to a stop. The agents abruptly\",\"Situated about a block away, the car approaches and comes to a stop.\",The agents abruptly,gold,gaze out the door.,roll away from their run and walk inside.,\"pause and turn, poised high above a fog.\",twists around and lopes off.\n7447,lsmdc3056_PUBLIC_ENEMIES-3489,14655,\"Carrying the brown paper bag, she steps off the sidewalk between parked cars. A car's headlights\",\"Carrying the brown paper bag, she steps off the sidewalk between parked cars.\",A car's headlights,gold,flash through through the water taxi.,illuminate and shine on her anxious face.,comes from the road to a farm.,roll through the garage as someone sees one of the many men playing the ocean.\n7448,lsmdc3056_PUBLIC_ENEMIES-3489,14650,As someone dons her fur - collared coat. The woman,As someone dons her fur - collared coat.,The woman,gold,sprays someone 'skin with an handkerchief.,backs up to him.,wears a top similar to someone's.,grabs someone and throws her back toward someone.\n7449,anetv_kH8YpzoflKg,18869,A camera pans around a shirtless man sitting in the snow followed by the man snowboarding and men riding up a hill. Several shots,A camera pans around a shirtless man sitting in the snow followed by the man snowboarding and men riding up a hill.,Several shots,gold,are shown of people riding down the snowy hill and doing tricks in front of the camera.,are shown of camera frame then people dancing with one another and crashing into one another.,are shown of him speaking to the camera as more hands are seen speaking from the side.,are then seen of people riding skateboards as a man speaks to the camera and continues skateboarding.\n7450,anetv_IQ4SUx8ythk,9254,People are standing on a crowded beach. A large wave,People are standing on a crowded beach.,A large wave,gold,appears with a very cloudy sky.,is sitting on the water.,is shown in the water.,is shown with several waves.\n7451,anetv_IQ4SUx8ythk,9255,A large wave is shown in the water. A woman,A large wave is shown in the water.,A woman,gold,is walking along the beach at sunset.,is seen holding a bucket and washing dishes in a sink.,is seen wearing glasses nex drinking glasses on a table.,lies in a tube with a girl standing on the edge of a canvas with another camera and hands also downstream.\n7452,anetv_IQ4SUx8ythk,6344,A woman is seen speaking to the camera while people rub in lotion and lay on the beach. Several more shots,A woman is seen speaking to the camera while people rub in lotion and lay on the beach.,Several more shots,gold,are shown of people wiping down the water taking small pictures as well as the closing credits.,are shown of people enjoying the beach life while the woman continues to speak.,are then shown of people swimming around the pool and the camera pans around to another.,are shown of the woman as well as her painting and taking pictures of the lady as well as taking pictures.\n7453,anetv_IQ4SUx8ythk,6343,A large group of people are seen standing on a beach as well as exercising and sipping a drink. A woman,A large group of people are seen standing on a beach as well as exercising and sipping a drink.,A woman,gold,is then seen speaking to the camera while pointing in the beach and making a shot.,is seen speaking to the camera while people rub in lotion and lay on the beach.,throws the transmitter up in the air and more discus shoot at the man and woman.,shows the woman another hitting a spray all over her face while she continues to work on her hairstyle.\n7454,anetv_7iPb7mLURVc,7813,A woman is seen speaking to the camera while holing a baton in her hands. She,A woman is seen speaking to the camera while holing a baton in her hands.,She,gold,continues speaking while showing her shoes and turns to speak to the camera.,continues dancing around while people watch the sides of the table.,continues to style her hair while looking down while she continues to speak.,continues speaking to the camera while spinning around the baton.\n7455,anetv_7iPb7mLURVc,7814,She continues speaking to the camera while spinning around the baton. She,She continues speaking to the camera while spinning around the baton.,She,gold,continues twirling around and ends by staying up while the camera captures her movements.,continues to spin around the baton and demonstrate how to properly twirl it.,continues spinning around pointing the baton and smiling to the camera.,continues moving around while smiling to the camera and laughs in the end.\n7456,anetv_NCvNIKw4EZ4,13185,Several people are seen watching from the side as the man walks around the pool table. The man,Several people are seen watching from the side as the man walks around the pool table.,The man,gold,continues to hula hoop while people watch from and out of frame in the end.,inspects one another and then throws the ball around the ball.,hits the ball and continues walking around the table.,starts to squeeze up the juice in time.\n7457,anetv_NCvNIKw4EZ4,16840,People are playing pool at a pool table. Two men,People are playing pool at a pool table.,Two men,gold,then walk playing a game of foosball.,shake hands behind the pool table.,with glasses stand on a table.,are holding cups and pong.\n7458,anetv_NCvNIKw4EZ4,16839,People are sitting behind tables holding cameras. People,People are sitting behind tables holding cameras.,People,gold,are playing pool at a pool table.,are playing instruments in front of the piano.,are watching people standing behind them.,start shooting pool hitting a yellow ball.\n7459,anetv_NCvNIKw4EZ4,13184,A close up is shown of a pool table with a man standing around the side. Several people,A close up is shown of a pool table with a man standing around the side.,Several people,gold,are seen holding a ball and leads into people pushing.,are seen watching from the side as the man walks around the pool table.,are seen running around diving into a pool and swimming up.,are then shown playing soccer and mixing shots of shots of the ball.\n7460,anetv_ezugU3qibVQ,4242,The woman is now standing in the bathroom wearing green again and she has her hair down and she's talking and using her hands to move her hair around to show the curls. The outro screan,The woman is now standing in the bathroom wearing green again and she has her hair down and she's talking and using her hands to move her hair around to show the curls.,The outro screan,gold,open and the logo begins to split up again.,is shown from the screen that patients screaming to be having sex in a studio.,is pink and ends with black words and then a black screen that has a clip art red pair of lips on it.,her and is alone outside in the classroom.\n7461,anetv_ezugU3qibVQ,4240,\"The woman is now standing in a bathroom wearing a red sweater with hello kitty on the front and she's brushing her hair, rolling it in curlers and clipping each one individually with the silver clip and curlers she showed earlier. When she completes putting all the curlers that can fit on her entire head, she\",\"The woman is now standing in a bathroom wearing a red sweater with hello kitty on the front and she's brushing her hair, rolling it in curlers and clipping each one individually with the silver clip and curlers she showed earlier.\",\"When she completes putting all the curlers that can fit on her entire head, she\",gold,smiles to the camera and turns her head from side to side.,continues to ride more and ends.,sections them with one her shirt.,starts walking on the stepper.\n7462,anetv_ezugU3qibVQ,4239,\"The woman then picks up a black bag and grabs a silver clip from it, puts it back in the bag and puts the bag on the side and continues to talk. The woman is now standing in a bathroom wearing a red sweater with hello kitty on the front and she\",\"The woman then picks up a black bag and grabs a silver clip from it, puts it back in the bag and puts the bag on the side and continues to talk.\",The woman is now standing in a bathroom wearing a red sweater with hello kitty on the front and she,gold,\"'s brushing her hair, rolling it in curlers and clipping each one individually with the silver clip and curlers she showed earlier.\",\"'s again in the garage, from a bucket while jumping on the water and a bookshelf.\",begins to put bare socks on it to make sure she gets a sock from its hook and removes it.,waves the person all around off the sidewalk.\n7463,anetv_GsNyn-6DDJM,8242,A boy is brushing her long hair. She,A boy is brushing her long hair.,She,gold,laughs and covers her mouth with her hand.,lays flowers on her and in a woman's.,begins to shave her hair.,\", she goes on, twirls the picture around the violin and then puts it back in the instrument.\"\n7464,anetv_GsNyn-6DDJM,8241,A woman is sitting down in a chair. A boy,A woman is sitting down in a chair.,A boy,gold,is brushing her long hair.,is sweeping her legs.,brushes the tip of her nose up and down her nails.,starts to walk around and engulfs her with a blow dryer.\n7465,anetv_QtCNHRtycmg,1319,More clips are shown of people riding around and cheering with one another. The riders,More clips are shown of people riding around and cheering with one another.,The riders,gold,are shown as well as close up and leading to one another and posing with one another.,continue moving around as they continue to chase them.,continue running all along the trampoline more to the camera while cheering with one another and showing off their bows.,continue to go around the track as well as show off jumps in the end.\n7466,anetv_QtCNHRtycmg,1318,Several clips are shown of men speaking to one another as well as riding on a dirt bike. More clips,Several clips are shown of men speaking to one another as well as riding on a dirt bike.,More clips,gold,are shown of three men fighting one another while a man watches.,are shown of people riding a horse and leads into several more people riding horses along.,are shown of people riding on skateboards while others watch with steppers.,are shown of people riding around and cheering with one another.\n7467,anetv_36K1e9WgEpU,8707,\"Several people in donut shaped inflatable rafts float down a narrow stream guided by people helping them in the water and watched by a small group of people on nearby land. A group of people,\",Several people in donut shaped inflatable rafts float down a narrow stream guided by people helping them in the water and watched by a small group of people on nearby land.,\"A group of people,\",gold,\"riding on, after scuba, they sail over a river sand along with the rafts several times.\",\"float in a line, down a narrow stream of water in donut shaped, black inflatable rafts.\",\"surfing in water, float close to the boat and wave to involve kite enjoying themselves.\",\"lie on their raft, are being pulled by the water.\"\n7468,anetv_36K1e9WgEpU,8709,One woman gets stuck on a rock in the raft and shimmies herself loose. The people reach the end of the narrow stream where a group of people help them off of the rafts and another small group of people,One woman gets stuck on a rock in the raft and shimmies herself loose.,The people reach the end of the narrow stream where a group of people help them off of the rafts and another small group of people,gold,watches them from nearby land.,are harnessed their clothes and others.,are boarding and shivers.,are shown walking around.\n7469,anetv_36K1e9WgEpU,8708,\"A group of people, float in a line, down a narrow stream of water in donut shaped, black inflatable rafts. One woman\",\"A group of people, float in a line, down a narrow stream of water in donut shaped, black inflatable rafts.\",One woman,gold,\"climbs down to the first bar, where someone converted her enemy by a dozen well - dressed athletes.\",climbs off the ice and several other rafters go after it.,gets stuck on a rock in the raft and shimmies herself loose.,\"grabs onto the thrash, which slows to a stop.\"\n7470,anetv_oghT33khlYQ,2024,He places his board in the water and begins to water ski. He,He places his board in the water and begins to water ski.,He,gold,performs several tricks as he skis.,beats himself down and jumps the bottle over the ski.,takes the surfboard off the mower and runs out of home.,grabs the wet beverage off the bar and begins talking to the camera.\n7471,anetv_oghT33khlYQ,2022,Many trees and deep water from a river is shown. A man,Many trees and deep water from a river is shown.,A man,gold,is shown swimming against the water setting others in the water.,walks and interviews another man water skiing.,is seen underwater while people ride along the water beside paddling.,is standing on the back of a speedboat.\n7472,anetv_oghT33khlYQ,2023,A man is standing on the back of a speedboat. He,A man is standing on the back of a speedboat.,He,gold,rides up and begins driving a kayak down the river.,does a gymnastics routine on the balance beam.,places his board in the water and begins to water ski.,uses a hose to catch fish.\n7473,anetv_V4srMOGRlU8,6785,\"Four people are walking outside in the wilderness then all of a sudden, they are shown in their swimming attire with four tubes in murky water covered in trees. The next scene, several people\",\"Four people are walking outside in the wilderness then all of a sudden, they are shown in their swimming attire with four tubes in murky water covered in trees.\",\"The next scene, several people\",gold,are putting on their specs and raft making up the inner holding structure.,are now standing in tubes of a bus up to the top.,have seen jumps in numbers and a large grassy hillside and the family walks into the circle and makes their way down the slope.,\"are shown in a lake, pedaling boats, tubing, drinking, and enjoying the water.\"\n7474,anetv_V4srMOGRlU8,6786,\"As they find shallow water, a man picks up a ball and they start playing football. All of them are now out of the water and they\",\"As they find shallow water, a man picks up a ball and they start playing football.\",All of them are now out of the water and they,gold,continue to turn the ball around.,stop tot an middle intersection.,talk to the big man.,walk into a restaurant.\n7475,anetv_V4srMOGRlU8,12138,A man and two women walk while talking into a camera. the group,A man and two women walk while talking into a camera.,the group,gold,is then shown floating and drinking in a river.,zoom on the man as another woman is interviewed.,begins washing a windows and sitting at the same place.,is playing a heated box on the road.\n7476,anetv_V4srMOGRlU8,12139,The group is then shown floating and drinking in a river. Other people,The group is then shown floating and drinking in a river.,Other people,gold,appear at the camera and speak to one another.,are shown swimming through the pool.,are also in the water playing games.,are seen walking around the splashes watching the people.\n7477,anetv_1buoiCgXG1Q,4266,The water is flowing pretty quickly down stream. The man on the kayak topples over into the water and he,The water is flowing pretty quickly down stream.,The man on the kayak topples over into the water and he,gold,struggle to get back on board.,falls on the floor.,taps his feet with the device.,begins to start dancing at the top.\n7478,anetv_1buoiCgXG1Q,4264,Outside in the water a man is kayaking during on some heavy waves. People,Outside in the water a man is kayaking during on some heavy waves.,People,gold,are floating on the crest of the river.,\"are seen back to each side of the boat, outside where the first kayak approaches from the rocks below.\",are standing by recording and watching him as he kayaks through.,are learning paddling downstream.\n7479,anetv_1buoiCgXG1Q,4265,People are standing by recording and watching him as he kayaks through. The water,People are standing by recording and watching him as he kayaks through.,The water,gold,splashes all along the waters as she places the oar in the water.,is covered in water.,\"falls into the ocean, then tries to describe the waves.\",is flowing pretty quickly down stream.\n7480,anetv_1buoiCgXG1Q,2855,The person is seen riding in a kayak closer to the camera. He,The person is seen riding in a kayak closer to the camera.,He,gold,flips over the kayak and rides down the river.,watches and pours more water on his board.,continue rafts back and fourth through more debris.,continues riding on skis on the snowy tube.\n7481,lsmdc0013_Halloween-53706,19310,\"She carries a totebag with schoolbooks and knitting needles stuck inside, and a large pumpkin. The sun\",\"She carries a totebag with schoolbooks and knitting needles stuck inside, and a large pumpkin.\",The sun,gold,comes up on a tree root.,\"streams toward the blue and white light, illuminating the others.\",pours over her headset and her son's hair.,is a pale glow behind the trees.\n7482,lsmdc0013_Halloween-53706,19312,\"More children in costumes walk from house to house, some with mothers and sisters, trick or treating. The wind\",\"More children in costumes walk from house to house, some with mothers and sisters, trick or treating.\",The wind,gold,goes up on someone's rope.,is stopped by some people.,\"is nice, but cleaned - style.\",\"blows their costumes, billowing them outward.\"\n7483,lsmdc0013_Halloween-53706,19311,The sun is a pale glow behind the trees. Someone,The sun is a pale glow behind the trees.,Someone,gold,\"closes his gaze, exhausted, and drops another egg into the cup.\",\"leans back against a wheel, staring down into someone's hand.\",turns her gaze down the street.,joins the sun coming up from the sky.\n7484,anetv_9WXl-2sINno,18999,A young girl giving a make up tutorial. She,A young girl giving a make up tutorial.,She,gold,flips and signs the lettuce.,puts the chalk on the documents.,begins with the eye shadow.,puts her hair down on an braid.\n7485,anetv_9WXl-2sINno,19000,She begins with the eye shadow. She,She begins with the eye shadow.,She,gold,gets a little bit distracted and starts talking to someone else in the room.,always body in shape.,is on all fours.,holds her hands around in her hair.\n7486,lsmdc1020_Crazy_Stupid_Love-81621,12032,The bartender sells someone a shot and shrugs at someone. People both,The bartender sells someone a shot and shrugs at someone.,People both,gold,stare down at the bar.,cheer as the customers tallies their files.,step to one of their seats.,notice someone in a u - turn.\n7487,lsmdc1020_Crazy_Stupid_Love-81621,12029,\"She looks up and pouts sadly. At school, students\",She looks up and pouts sadly.,\"At school, students\",gold,are knocked down among the other guests.,pour out of the building.,peer up at the bank.,scurry about their riot.\n7488,lsmdc1020_Crazy_Stupid_Love-81621,12020,\"Someone lets his head drop forward. His brow furrowed, someone\",Someone lets his head drop forward.,\"His brow furrowed, someone\",gold,gives a confident nod.,rises to his feet.,casts a faint grin at the teen.,looks down at the ground.\n7489,lsmdc1020_Crazy_Stupid_Love-81621,12021,\"His brow furrowed, someone looks down at the ground. Someone\",\"His brow furrowed, someone looks down at the ground.\",Someone,gold,\"eyes him angrily, her jaw clenched.\",\"write on a third class, then he drops someone's duffel on the floor.\",\"raises a final remorseful, which makes a reasonable gesture.\",\"- something came out of the fireplace onto the great rocks, behind him and slowly walking down the quiet track towards him.\"\n7490,lsmdc1020_Crazy_Stupid_Love-81621,12018,They reach the end of the driveway. Someone,They reach the end of the driveway.,Someone,gold,glances back at someone.,come free from a respective sony mahal lot.,comes up the other stairs.,trots around the oncoming train station.\n7491,lsmdc1020_Crazy_Stupid_Love-81621,12031,But someone eyes him balefully and heads off on another direction. Someone,But someone eyes him balefully and heads off on another direction.,Someone,gold,\"creeps forward through the doorway and throws his board still, grabbing his gun and hitting his head with his shield.\",is alone among a junior community horned trees.,\"sits at the counter of the bar, his head resting on his hands.\",\"steps out, sliding his mother over to him.\"\n7492,lsmdc1020_Crazy_Stupid_Love-81621,12026,\"In her bedroom, someone lounges on her bed, staring into the distance. Someone\",\"In her bedroom, someone lounges on her bed, staring into the distance.\",Someone,gold,\"watches her as she walks on, throws her arms around his sons.\",\"being filled with plants on a table, even fruit, tomatoes, nuts, etc.\",holds out the phone to someone.,\"leans back in her seat, looking down.\"\n7493,lsmdc1020_Crazy_Stupid_Love-81621,12023,\"Someone lumbers down the driveway. In school, kids\",Someone lumbers down the driveway.,\"In school, kids\",gold,swing onto a trailer.,\"mill past someone, who sits alone on the stairs, his head bowed.\",peer through goggles as a pull - on hat house opens a rounded door.,take off down the street as someone's father drives through a parking lot.\n7494,lsmdc1020_Crazy_Stupid_Love-81621,12030,\"At school, students pour out of the building. Someone\",\"At school, students pour out of the building.\",Someone,gold,turns and someone eyes her.,and someone pull out people at gunpoint.,paces up and down.,stands outside by his car.\n7495,lsmdc1020_Crazy_Stupid_Love-81621,12028,\"Someone sits at her desk in her office, writing. She\",\"Someone sits at her desk in her office, writing.\",She,gold,steps onto the rooftop hostess and opens the package.,notes the ball around the room.,seizes it and hands it back to her.,looks up and pouts sadly.\n7496,lsmdc1020_Crazy_Stupid_Love-81621,12024,\"In school, kids mill past someone, who sits alone on the stairs, his head bowed. He\",\"In school, kids mill past someone, who sits alone on the stairs, his head bowed.\",He,gold,\"stares at her, someone, and finds someone at a piano.\",finds a soldier staring at someone as he stares reads in the water.,presses someone's name on the contact list on his phone.,finds someone's hand up in front of someone as a photo photo shows someone on a slack line.\n7497,lsmdc1020_Crazy_Stupid_Love-81621,12025,\"He presses someone's name on the contact list on his phone. In her bedroom, someone\",He presses someone's name on the contact list on his phone.,\"In her bedroom, someone\",gold,drapes the paper over her shoulder.,\"lounges on her bed, staring into the distance.\",watches the photo carefully.,sits in a room where the two women peer down a nearby gap.\n7498,lsmdc1020_Crazy_Stupid_Love-81621,12027,Someone holds out the phone to someone. Someone,Someone holds out the phone to someone.,Someone,gold,watches someone from the doorway and puts one leg on a patient.,\"sits at her desk in her office, writing.\",drinks from the fire.,arrives on the pool.\n7499,lsmdc1020_Crazy_Stupid_Love-81621,12019,\"Someone turns away and shuffles back, dejectedly. The other three men\",\"Someone turns away and shuffles back, dejectedly.\",The other three men,gold,rush to the shoulder with the captain spots the note on another table.,walk out and slowly exit him.,\"glance their way back to someone, who holds up wads of matches to sergeant inside.\",are still sitting on the wall.\n7500,anetv_jml_hnhjltg,8161,The woman continues pushing the snow blowing along the snow with the camera following her movements. She,The woman continues pushing the snow blowing along the snow with the camera following her movements.,She,gold,finishes driving her shovel and fades.,\"walks around outside of the car, continuing to walk on the roof.\",moves back and fourth while stopping to speak to the camera and continue moving.,shows the spoon sitting in a snow brush as well as driving along the snow when people can hit the back.\n7501,anetv_jml_hnhjltg,8160,A woman is seen carrying a snow blower and pushing it along a path. The woman,A woman is seen carrying a snow blower and pushing it along a path.,The woman,gold,continues to mixes the slopes of the tractor and continues speaking to the camera.,clips several trimming weeds while looking off to the camera.,approaches behind in a small circle and walks up to the dark passageway in the living room.,continues pushing the snow blowing along the snow with the camera following her movements.\n7502,anetv_QnQ2D-tJ9pM,1528,A young child is seen swinging an ax and cutting up wood. Other people,A young child is seen swinging an ax and cutting up wood.,Other people,gold,are seen cutting up seeds and handing them all.,begin swinging around the yard while the camera pans around as the music continues.,are seen standing around a fire and speaking to one another.,watch on the sides as the man continues to swing more and throws back in the air.\n7503,anetv_QnQ2D-tJ9pM,1529,Other people are seen standing around a fire and speaking to one another. The man,Other people are seen standing around a fire and speaking to one another.,The man,gold,continuously throws the ball while others watch on the side.,uses various frisbees to describe the moves and areas he can for one under.,continues cutting wood and showing it to the camera.,closes his instrument and pats it on the back of his hand while still speaking.\n7504,anetv_QnQ2D-tJ9pM,10471,A boy is standing in the woods. He,A boy is standing in the woods.,He,gold,is riding an electric bike and water is walking in his lap.,is using an ax to split wood.,jumps out and flips a rope when it meet.,does a flip on by a bike of the object.\n7505,lsmdc1027_Les_Miserables-6292,8174,\"The officer turns to his men. Breathless, someone\",The officer turns to his men.,\"Breathless, someone\",gold,gazes down at the iceberg.,takes the torch from someone.,types on the floor in a stark warehouse.,reaches out and raises the alien's nose up the ceiling.\n7506,lsmdc1027_Les_Miserables-6292,8173,He lowers the flaming torch towards the gunpowder. The officer,He lowers the flaming torch towards the gunpowder.,The officer,gold,turns to his men.,hurls it to someone as he and his pump horn as bullets explode into the station.,takes a map card from the case.,stops withdrawing the gun.\n7507,lsmdc1027_Les_Miserables-6292,8172,A soldier aims at someone. Someone,A soldier aims at someone.,Someone,gold,\"turns, aiming his thrusters.\",grabs the musket and is shot.,'s eyes remain back at the intruders.,stands up and grabs the oxygen.\n7508,lsmdc1027_Les_Miserables-6292,8164,Someone knocks him out with a club. People,Someone knocks him out with a club.,People,gold,run up to the limo.,look around with concern.,take positions with him.,flip a shirt into the backseat.\n7509,lsmdc1027_Les_Miserables-6292,8167,The students man the barricade and aim their weapons. A platoon of soldiers,The students man the barricade and aim their weapons.,A platoon of soldiers,gold,lies out of the tent.,runs up to a golden ingot of a capital building.,marches up the street to face them.,camp through the vast amphitheater with alien soldiers.\n7510,lsmdc1027_Les_Miserables-6292,8169,Students return fire as soldiers climb up the barricade. Students,Students return fire as soldiers climb up the barricade.,Students,gold,fly offscreen as they race.,shoot through the barricade.,are unloaded through the vault.,are shown pounding the gate with their rackets.\n7511,lsmdc1027_Les_Miserables-6292,8170,Students shoot through the barricade. A soldier,Students shoot through the barricade.,A soldier,gold,lies dead on top of it.,shoots the white robes who sails toward the net.,jumps over the top of the fences door.,finds his truck loads of guns.\n7512,lsmdc1027_Les_Miserables-6292,8165,People look around with concern. They,People look around with concern.,They,gold,pass through a room making a pumpkin.,approach rocks people are starting to pull dirt.,grab their weapons and head to the barricade with the group.,reach the other end of the row.\n7513,anetv_xs4MvE_uAtU,6168,A person uses a brush to scrub a shoe over a sink. They,A person uses a brush to scrub a shoe over a sink.,They,gold,clean into the kitchen sink and clean it up into the sink.,wipe the shoe off with a white towel.,are shown drinking while many kids watch.,use the bucket to clean the floor surface to clean them.\n7514,anetv_xs4MvE_uAtU,6169,They wipe the shoe off with a white towel. He,They wipe the shoe off with a white towel.,He,gold,lights a cigarette and continues walking down a hallway.,lifts up the shoe to show the camera.,goes out to wipe the shoe down on the cloth.,is then cleaned on a cloth and wipes it in.\n7515,anetv_Z9pWpZK4k2M,3032,\"Two men, a woman, and a toddler are walking down the road but all of the adults have on Kangaroo shoes. People continue to walk pass them and the two males\",\"Two men, a woman, and a toddler are walking down the road but all of the adults have on Kangaroo shoes.\",People continue to walk pass them and the two males,gold,begin jumping extremely high as the lady walks away with the child.,take their turn turning and running towards another city and make a series of jumps quickly.,take turns jumping on the pommel.,\"start to walk around the middle, the boy walks to the first and joins them.\"\n7516,anetv_64JprLAtnzg,9824,A group of girls are dancing along a ledge. Each girl,A group of girls are dancing along a ledge.,Each girl,gold,dances on the ledge gracefully.,is standing up talking to the camera.,is grabbed by someone as he dangles.,jumps on swing to end the jump.\n7517,anetv_64JprLAtnzg,9825,Each girl dances on the ledge gracefully. The screen,Each girl dances on the ledge gracefully.,The screen,gold,vacuum on the lady's hips.,becomes images of faces.,fades away to black.,shows someone studying the scroll from its perch.\n7518,lsmdc0004_Charade-47884,2442,\"Through the glass someone can be seen, leaving the Sortie area. Carefully, someone\",\"Through the glass someone can be seen, leaving the Sortie area.\",\"Carefully, someone\",gold,walks from the ambulance.,opens the door and comes out.,\"turns away, then changes back to us.\",\"replaces the cabinet, reaches for the empty glass.\"\n7519,lsmdc0004_Charade-47884,2444,She goes to the corner and looks around it. She,She goes to the corner and looks around it.,She,gold,puts on black pants.,are playing and alone for a while.,takes off her framed trim and starts to survey the scene from a stall.,\"looks back once more at someone, then makes up her mind and starts running towards the exit.\"\n7520,lsmdc0004_Charade-47884,2443,\"Carefully, someone opens the door and comes out. She\",\"Carefully, someone opens the door and comes out.\",She,gold,\"enters cautiously through the darkness, his head bathed in sweat.\",curls through her knickers up behind her big - face and spread her bee - stung lips.,wades into the water.,goes to the corner and looks around it.\n7521,anetv_ZWlh8sQE2Z4,5323,The man raises his right arm and reaches to the ground with his left hand. The man,The man raises his right arm and reaches to the ground with his left hand.,The man,gold,switches and does the other side.,throws the object down into the pile.,flings the machine's tire to the ground.,removes it from a gas canister.\n7522,anetv_ZWlh8sQE2Z4,5322,A man kneels on one knee in a room and talks to the camera. The man,A man kneels on one knee in a room and talks to the camera.,The man,gold,continues to show moves the practice instrument during doing and not hitting.,stops playing a second speak to the camera.,then begins playing the saxophone in a room and begins playing the violin.,raises his right arm and reaches to the ground with his left hand.\n7523,anetv_rLCRgksVNE8,6868,A girl is getting her nose pierced. The nose,A girl is getting her nose pierced.,The nose,gold,is now used to committed at the video using a clamp.,is cleaned before the piercing.,pierces a girl's ear.,is wet with a clean nose.\n7524,anetv_rLCRgksVNE8,6869,The nose is cleaned before the piercing. She,The nose is cleaned before the piercing.,She,gold,\"rubs her tongue over with some used tool soap, then puts her nose back to her stomach.\",is shaking side of the face with her right leg.,talks to the camera.,pulls out the piercing piercing.\n7525,anetv_Ed9xVend710,14018,A still shot of a man on water skis is shown. It then,A still shot of a man on water skis is shown.,It then,gold,jumps to the same man water skiing very intently.,shows a quick replay about how to break and spin around.,strikes the pans into several shots of the mountain as well as a man's room.,clips with another man riding beside him on the surfboard.\n7526,anetv_Ed9xVend710,14019,It then jumps to the same man water skiing very intently. He,It then jumps to the same man water skiing very intently.,He,gold,\"comes and spins it numerous times, giving himself desperately to see through.\",falls a few times and does his best to stay upright.,grabs the by young boy and helps him to do something super vigorously until he begins surfing violently in the water.,is transfixed by the reflection of the giant swimming pool as his underwear.\n7527,anetv_Ed9xVend710,14021,The video then shows other people trying their best but falling each time. The video,The video then shows other people trying their best but falling each time.,The video,gold,begins with several more shots of the wrestling game and end time talking to the camera again.,does a back flip several times before the video ends.,ends with a series of clips of people running into a park shot.,continues to show people falling again and again.\n7528,anetv_Ed9xVend710,14020,He falls a few times and does his best to stay upright. The video then,He falls a few times and does his best to stay upright.,The video then,gold,flashes with the closing credits after it is done.,surfaces and disappears in the yellow background.,shows other people trying their best but falling each time.,comes back again and the title is shown on the screen.\n7529,anetv_xPDjkE7llg4,14241,\"A woman cuts the nails of the back legs of a cat with a nail trimmer, while a person restraints the cat. Then, the woman stands on front the cat, and the person\",\"A woman cuts the nails of the back legs of a cat with a nail trimmer, while a person restraints the cat.\",\"Then, the woman stands on front the cat, and the person\",gold,holds the cat from a neck.,push the cat by the arms.,adds the cat to her nails.,scoops the cat with a doll.\n7530,anetv_xPDjkE7llg4,14242,\"Then, the woman stands on front the cat, and the person holds the cat from a neck. After, the woman\",\"Then, the woman stands on front the cat, and the person holds the cat from a neck.\",\"After, the woman\",gold,pets a cat and puts it on top of a rod.,talks to the camera to be cutting the monkey's claws.,hands the cats drill and a pair of tweezers.,\"cuts the nails of the front legs, but the cat kicks.\"\n7531,anetv_zpJ91CkCiyw,9532,A person flashes a light at the camera. A man,A person flashes a light at the camera.,A man,gold,gives a hose and vacuum.,plays with the others continue to play.,falls on the railing.,gets down an reach made plaster.\n7532,anetv_zpJ91CkCiyw,9533,A person falls at the bottom of the stairs and then the light is flashing again. We,A person falls at the bottom of the stairs and then the light is flashing again.,We,gold,are gathering in an outside apartment and then people standing at the bottom of a staircase.,\", someone opens and walks away towards the table.\",\"'s seen close up of his face and showing the title of the man playing, he rides all the way back and forth.\",see a man fall down the railing three times.\n7533,anetv_zpJ91CkCiyw,9530,A man takes off his hood and talks to the camera. We,A man takes off his hood and talks to the camera.,We,gold,man then goes underwater from the camera to see other people in the plaza looking around at cars.,man a boy speaking in front of a tv.,clean the display and we see people driving behind him.,see men in roller blades fall then skate down a railing.\n7534,anetv_zpJ91CkCiyw,9529,We see two men on a city street and the title loads. A man,We see two men on a city street and the title loads.,A man,gold,stands and holds on to a rope attached to a string between people ride in the shop.,puts the first man in his hair and then talks in the street of a man being interviewed on the camera.,takes off his hood and talks to the camera.,speaks on a mobile home and begins laying on the floor in the living room.\n7535,anetv_zpJ91CkCiyw,9534,We see a man fall down the railing three times. We,We see a man fall down the railing three times.,We,gold,see the men talk and shake hands before seeing the end screen.,see a lady high raising her arms on the air with hula hoops.,see people riding bikes on the track and a title video.,see the man in a yellow suit flying.\n7536,anetv_SjfrdNchlqw,16966,Men are sitting in a black jack table in a casino and the dealer is spreading the cards to players. man,Men are sitting in a black jack table in a casino and the dealer is spreading the cards to players.,man,gold,\"is playing a basketball on the beach, walking his stick.\",is talking to the camera.,stands in the rink talking to the camera and playing the flute on board.,is gun on fire while an audience is watching the match.\n7537,anetv_SjfrdNchlqw,16968,The dealer woman is standing talking in front of the camera. man,The dealer woman is standing talking in front of the camera.,man,gold,is standing in a kitchen talking to the camera.,is standing in front of slot machine talking to the camera.,is checking a basketball item.,is kneeling in front of a table putting tokens on fire.\n7538,anetv_SjfrdNchlqw,16967,Man is talking to the camera. the dealer woman,Man is talking to the camera.,the dealer woman,gold,is using protective gear on them.,is standing talking in front of the camera.,is sitting in front of a blue screen door.,is cooking and wringing the hands.\n7539,anetv_LAZHNzFbDNY,19157,A large group of people are gathered on a track and field. An athlete,A large group of people are gathered on a track and field.,An athlete,gold,skates down a track and throws into a large pit of sand.,spins several times while holding a steel ball.,speeds for them as they run across the arena.,prepares to throw the green ball at his side.\n7540,anetv_LAZHNzFbDNY,19158,An athlete spins several times while holding a steel ball. He,An athlete spins several times while holding a steel ball.,He,gold,tries to throw the ball into his hands.,lets go of the ball and makes it go a long distance.,sits on the rope and folds his arms at a man in a shirt.,lifts the stick and throws it in the air.\n7541,anetv_LAZHNzFbDNY,12175,An athlete steps up to a circle and throws a discuss out onto a field. The same man,An athlete steps up to a circle and throws a discuss out onto a field.,The same man,gold,throws the discus off the side and throws it into a post and throws it onto the field of grass.,falls and lands on a red table.,is shown several more times throwing the discuss as people grab the object afterwards and watch him walk away.,go back and forth while occasionally posing for photos for a second.\n7542,anetv_2X4-yp_EFVE,13139,Two men are seen leading over the hood of the car while grabbing onto each other's hands. They then,Two men are seen leading over the hood of the car while grabbing onto each other's hands.,They then,gold,get out with the rope afterwards making it jog through.,shoot in on bolts and begin creating a paper and a hose going down.,begin leading the group as they try to stand the camera moving and then they talk with more.,begin a game of arm wrestling and ends with one man winning and both looking at the camera and one holding his wrist.\n7543,anetv_rYrO0KnZ7F0,822,We see another step and person uses carved bits to make cat ears. We,We see another step and person uses carved bits to make cat ears.,We,gold,see the car in a bowl using different markers.,see the cuts of a woman painting a crystal wall.,see the ending title screen.,see cats rolling up the hand in illumination.\n7544,anetv_rYrO0KnZ7F0,821,We see step and a person carves the pumpkin. We see another step and person,We see step and a person carves the pumpkin.,We see another step and person,gold,adding a motorized rotating.,\"film the older man, but the smaller man nods.\",contact a washed hand and tap the dog's claw.,uses carved bits to make cat ears.\n7545,anetv_rYrO0KnZ7F0,820,We see an opening title screen. We,We see an opening title screen.,We,gold,see what to do with scrolling white letters.,see a fire in the foreground.,see steps to carve a pumpkin.,see a paddle in a paper bag.\n7546,lsmdc1055_Marley_and_me-96626,2308,\"Close to tears, someone leaves the surgery. He\",\"Close to tears, someone leaves the surgery.\",He,gold,plucks a old pop from under his canister then pick it up.,toting carries out a chicken.,crouches down and picks up a casket that holds a stone.,\"steps out onto the street, shrugging on his jacket and walks, shoulders slumped, towards the car.\"\n7547,lsmdc1055_Marley_and_me-96626,2309,\"He steps out onto the street, shrugging on his jacket and walks, shoulders slumped, towards the car. He\",\"He steps out onto the street, shrugging on his jacket and walks, shoulders slumped, towards the car.\",He,gold,starts down the stairs.,puts the key in the door and puts his hands on his hips and sighs.,manages a weak smile.,spins forward by the steering wheel and peers out to hear what he is saying to the man.\n7548,anetv_6J45AbWiGIE,5598,A young woman and a brown dog are standing in an empty field. the woman,A young woman and a brown dog are standing in an empty field.,the woman,gold,throws a blue frisbee across the field.,is talking to the camera holding a large white camera.,pulls the gun from her nose and puffs from a cigarette.,walks up and walks the horse down the path.\n7549,anetv_6J45AbWiGIE,3952,He throws a frisbee for his dog. The dog,He throws a frisbee for his dog.,The dog,gold,catches it from multiple throws.,walks with a dog in it.,runs over and catches him.,jumps on him and continues walking around.\n7550,anetv_6J45AbWiGIE,3951,A man is out in an open field. He,A man is out in an open field.,He,gold,is dragged by the ring.,throws a frisbee for his dog.,player in a green shirt walks frantically to the calendar.,is in gym walking with a microphone.\n7551,anetv_6J45AbWiGIE,5599,The woman throws a blue frisbee across the field. the dog,The woman throws a blue frisbee across the field.,the dog,gold,keeps on her hand while using a frisbee for the dog.,runs across the girl's lap.,grabs a calf and holds it up to the lady.,catches the frisbee and brings it over to the woman.\n7552,anetv_MvZFYjs80Y4,10162,The two are then seen playing a game with one another and smacking the person who loses. The men,The two are then seen playing a game with one another and smacking the person who loses.,The men,gold,continue playing and smacking one another while laughing to the camera.,switch to one another while a third watches on the side.,continue playing all around and ends with one stance on the top and blowing into another.,continue dancing as the executioner move back and fourth on the stage.\n7553,anetv_MvZFYjs80Y4,10161,Two men are seen sitting on each side of a table laughing with one another. The two,Two men are seen sitting on each side of a table laughing with one another.,The two,gold,continue their play while swimming around.,continue to continue blowing into one another as other forces speak to the guard.,are then seen playing a game with one another and smacking the person who loses.,continue to play various instruments while drum together and holding on.\n7554,anetv_MvZFYjs80Y4,725,Men are sitting in a room with posters hanging on the wall. men,Men are sitting in a room with posters hanging on the wall.,men,gold,are twirling on a metal stage in stage.,are playing rock paper scissors in a room.,is playing a piece of art in the hallway.,lay down on two wall with women laying plaster down.\n7555,anetv_MvZFYjs80Y4,724,Two men are sitting on a table plaing rock paper scissors and the losers gets a slap. men,Two men are sitting on a table plaing rock paper scissors and the losers gets a slap.,men,gold,are sitting in a room with posters hanging on the wall.,begin to cheer in the center of the circle cheering until landing on the ground and pulling the rope back.,in a purple shirt pick up balls and throw them in solo cups.,get out of a sedan and walk towards a bar in the middle of a slum.\n7556,anetv_7j8cTyXi5a4,11620,She picks up a rag and a bottle of oil. She,She picks up a rag and a bottle of oil.,She,gold,removes a metal piece of wallpaper with a throwing tool.,puts oil onto the rag and starts to clean her boots with it.,begins to clean clear liquid.,uses a sponge to wipe the face of her body with an orange rag and pours it onto the rag.\n7557,anetv_7j8cTyXi5a4,11619,A woman is standing behind a table. She,A woman is standing behind a table.,She,gold,picks up a rag and a bottle of oil.,then proceeds to put his tools on the counter.,knocks over a rock wall.,are trying to solve a rubik's cube.\n7558,anetv_RA61jh8HwPI,4986,Many more pictures of products are shown with text across the screen. More pictures of products,Many more pictures of products are shown with text across the screen.,More pictures of products,gold,are shown as well as man dribbling and speaking to the camera.,are shown that end with more text and a woman pushing away makeup.,are shown followed by people posing together with facial hair.,are shown how to get the works.\n7559,anetv_RA61jh8HwPI,4985,A woman is seen putting makeup on her face and leads into several pictures of makeup. Many more pictures of products,A woman is seen putting makeup on her face and leads into several pictures of makeup.,Many more pictures of products,gold,and items lenses are shown.,and curlers are shown.,are shown with text across the screen.,are shown for a continue dancing with one another.\n7560,lsmdc3030_GROWN_UPS-14062,16855,\"The next morning at a kitchen table, someone feeds the injured bird with liquid from a narrow tube. It\",\"The next morning at a kitchen table, someone feeds the injured bird with liquid from a narrow tube.\",It,gold,'s malfunctioning grater in three seconds.,leads to a pump on someone's breast.,sees someone's pulse.,shows a person holding a caricature of someone.\n7561,anetv_gCku1WVr608,18112,The video shows how to get discounts on amazon for a category of dog supplies. Then it,The video shows how to get discounts on amazon for a category of dog supplies.,Then it,gold,makes a sandwich on the upside down line.,shows a woman shaving a dog.,shows people cleaning the news and description her.,shows that you don't know how to hang your dog like brush.\n7562,anetv_PpC4kPd5KfA,3469,A man walks up to a lane in a bowling alley. He,A man walks up to a lane in a bowling alley.,He,gold,changes to a man wearing a dark shirt demonstrating items to replace tire.,picks up the man in a punching bag and falls onto the ground.,throws the ball and watches it glide down the lane multiple times.,\"then begins swimming down empty lane, hitting the pins.\"\n7563,anetv_cTbkhIaj_Xc,18657,\"A group of men are standing a field and a man rolls a red ball to the other team and it is kicked out. After, the team\",A group of men are standing a field and a man rolls a red ball to the other team and it is kicked out.,\"After, the team\",gold,\"continues to hit the puck, then the other kicks it and wins a game.\",switches and continue to play games of kickball.,throw a ball on the beach where two referees are walking next to the ball.,\"hit the ball again and the team approaches their feet, then back and forth.\"\n7564,anetv_cTbkhIaj_Xc,18658,\"Now two more teams approach and the captains play Rock, Paper, Scissor to determine who will start the game. The woman loses and the men\",\"Now two more teams approach and the captains play Rock, Paper, Scissor to determine who will start the game.\",The woman loses and the men,gold,finish dancing and applauding each other on the sides.,scores a and stands both down in between scores and the other team wins.,run back to get a ball.,begin to play kicking the ball and running to the bases.\n7565,anetv_oYhVH1vIXFM,5707,Then she pours crushed red peppers and garlic into the skillet and she pours the tomato sauce into it. Then she stirs it up and takes the sausage out to cut them into tiny pieces and she,Then she pours crushed red peppers and garlic into the skillet and she pours the tomato sauce into it.,Then she stirs it up and takes the sausage out to cut them into tiny pieces and she,gold,puts the oven up on her plate.,examines them for the rest of the wooden seeds.,lets them cook some more.,\"'s added, and then, tomato and slices slices and the ingredients are shown on the stove.\"\n7566,anetv_oYhVH1vIXFM,5708,Then she stirs it up and takes the sausage out to cut them into tiny pieces and she lets them cook some more. Finally she,Then she stirs it up and takes the sausage out to cut them into tiny pieces and she lets them cook some more.,Finally she,gold,puts them into the skillet with the pasta and cooks everything together creating a nice meal.,puts the cookies on the oven and then begins counting back.,puts the box on her fire and puts the yellow paint out on top of it.,returns the dough by taking the pasta off from the counter and adding more to the tray.\n7567,anetv_oYhVH1vIXFM,5706,Next she pours tomatoes into a small blender and she blends them up. Then she pours crushed red peppers and garlic into the skillet and she,Next she pours tomatoes into a small blender and she blends them up.,Then she pours crushed red peppers and garlic into the skillet and she,gold,pours the tomato sauce into it.,makes a wrench between those ladies.,puts it all in their oven packets.,moves butter in mortar.\n7568,anetv_oYhVH1vIXFM,5705,This video shows you how to make spaghetti with sausage with a simple tomato sauce. First she,This video shows you how to make spaghetti with sausage with a simple tomato sauce.,First she,gold,\"takes a bite and hangs it on the paper top, then removes the cake from a case.\",demonstrates peanut butter to mix the mixture in a mixer.,puts the sausage on a baking sheet that has aluminum foil on it and she puts it in the oven.,takes eggs from the pot and then mixes with the blend of ingredients on the plate.\n7569,anetv_FRX4LTw9650,8631,Several tools are shown that lea into one woman brushing out her hair. Another woman,Several tools are shown that lea into one woman brushing out her hair.,Another woman,gold,brushes her hair and leads into more clips of women smiling and looking to the camera.,\"is shown brushing to the camera while brushing his teeth, performing a fur brush and separating her hair in sections.\",appears speaking and shows the weed out to her nails.,\"is wearing her funny clothes, worn by another person and is shown in front of a person dog.\"\n7570,lsmdc1046_Australia-91001,19162,\"Reluctantly, someone replaces the cup with another glass. Someone\",\"Reluctantly, someone replaces the cup with another glass.\",Someone,gold,looks at someone and raises a glass.,gets out of the room and marches him to work.,opens the circular wooden box and stuffs someone in a bowl.,presents a glass to it.\n7571,lsmdc1046_Australia-91001,19152,He walks towards the shattered pub. Some people,He walks towards the shattered pub.,Some people,gold,\"are watching from them, staring after someone.\",are blow in undergrowth.,\"pile to it, but finds no carpet.\",are trying to patch it up.\n7572,lsmdc1046_Australia-91001,19156,\"Someone stares, as tears of grief and rage run down his face. The bar patrons\",\"Someone stares, as tears of grief and rage run down his face.\",The bar patrons,gold,\"make their glasses and continue him, fighting in close with a squealing tennis balls.\",stare as he looks round at someone.,aim their guns at one another.,sit in their own office.\n7573,lsmdc1046_Australia-91001,19158,\"Someone enters tentatively, removing his hat, and approaches the bar. A woman\",\"Someone enters tentatively, removing his hat, and approaches the bar.\",A woman,gold,in a beige coat punches him on the courtyard.,\"glares at him, drawing on a cigarette, the tip glowing in the gloom.\",shows guard on the kitchen floor.,is watching him from a window into his office.\n7574,lsmdc1046_Australia-91001,19157,The bar patrons stare as he looks round at someone. Someone,The bar patrons stare as he looks round at someone.,Someone,gold,turns off the tv.,\"sets down his wine can, then heads into the room.\",stares at her husband.,\"enters tentatively, removing his hat, and approaches the bar.\"\n7575,lsmdc1046_Australia-91001,19154,Others sit around staring or drinking vacantly. He,Others sit around staring or drinking vacantly.,He,gold,\"approaches someone, who's sweeping up in the bar.\",flicks behind a pillar.,\"stares at someone, reacting.\",comes across the room on the couch and puts his head down.\n7576,lsmdc1046_Australia-91001,19160,Someone has placed a glass and a tin cup on the bar. Tears,Someone has placed a glass and a tin cup on the bar.,Tears,gold,roll down someone's cheeks.,\"is laughing with her, too; people drink with the drinks are rolling with a customers who are n't very drunk.\",him melt the cup into the steel.,\"it vigorously, he places the cork to the glass.\"\n7577,lsmdc1046_Australia-91001,19159,\"A woman glares at him, drawing on a cigarette, the tip glowing in the gloom. Someone\",\"A woman glares at him, drawing on a cigarette, the tip glowing in the gloom.\",Someone,gold,reaches over to take the card out of his hand.,has placed a glass and a tin cup on the bar.,looks up to see someone fast.,is flying through a bowling alley.\n7578,lsmdc1046_Australia-91001,19150,\"The flickering flames illuminate the calm figure of someone, as others mill around trying to help. Someone\",\"The flickering flames illuminate the calm figure of someone, as others mill around trying to help.\",Someone,gold,aims her gun at someone.,minces up to someone and bends to pick something up.,heads off en under the porch to flee.,walks through the town.\n7579,lsmdc1046_Australia-91001,19163,Someone looks at someone and raises a glass. Someone,Someone looks at someone and raises a glass.,Someone,gold,eyeballs him and glances at someone.,stands at the end of the dock where someone is working.,waiter sits at one table nearby.,passes a crowd of people.\n7580,lsmdc1046_Australia-91001,19151,\"He looks out across the bay at the broken, burning hulks of ships. He\",\"He looks out across the bay at the broken, burning hulks of ships.\",He,gold,looks cautiously into the distance cautiously.,\"leans forward, looking him in the eye.\",walks towards the shattered pub.,spots something at the bottom of the road.\n7581,lsmdc1046_Australia-91001,19164,They all take a drink. The empty glasses,They all take a drink.,The empty glasses,gold,are placed on the bar.,are mixing at the table.,continues to form a colander of soda on the table.,look off into the distance.\n7582,lsmdc1046_Australia-91001,19155,\"Someone looks around, taking in the white drinkers and his nervous black brother - in - law, then turns slowly back to someone. Someone\",\"Someone looks around, taking in the white drinkers and his nervous black brother - in - law, then turns slowly back to someone.\",Someone,gold,\"stares, as tears of grief and rage run down his face.\",finds a sizable envelope concealed in a booth.,is still watching at her hip.,\"backs out of his living room, onto the blind.\"\n7583,lsmdc1046_Australia-91001,19153,Some people are trying to patch it up. Others,Some people are trying to patch it up.,Others,gold,run to the edge and take the boarding after trying.,sit around staring or drinking vacantly.,are in a harness and a man is spraying.,grabs the rope and puts.\n7584,anetv_JkcoGLKl_0A,2310,A hand pushs her while she enjoys the ride. The man,A hand pushs her while she enjoys the ride.,The man,gold,starts to play with her.,retrieves the ball and starts to cut her outstretched hand and measures butter at the end.,knocks on the surface.,throws the steep log holding his stick and skates a movement to the sand.\n7585,lsmdc0017_Pianist-55755,1975,\"He sits by the radio set, ear to the speaker, trying to tune to a station. He\",\"He sits by the radio set, ear to the speaker, trying to tune to a station.\",He,gold,goes into his room.,throws out the trash as he continues to get away.,finds a poker being made.,shakes his head and finds it empty with the hunter inside.\n7586,lsmdc0017_Pianist-55755,1976,\"She can barely control her tears and hurries into the kitchen just as the front door opens and someone enters, looks round bemused by the activity. Someone\",\"She can barely control her tears and hurries into the kitchen just as the front door opens and someone enters, looks round bemused by the activity.\",Someone,gold,dashes out of the kitchen.,walks away as someone steps out to the door.,stands in the hallway.,dashes out of the house.\n7587,lsmdc0017_Pianist-55755,1972,\"Someone pushes in beside them and takes her arm. Someone, pulling someone,\",Someone pushes in beside them and takes her arm.,\"Someone, pulling someone,\",gold,fights his way down the stairs.,yanks him from his mother's grasp.,line his arms and passes her.,kicks his arms up and down.\n7588,lsmdc0017_Pianist-55755,1974,\"Someone family in panic: coming and going out of rooms, packing clothes and belongings into open suitcases and a trunk in a comfortable, tastefully furnished bourgeois apartment, the living room lined with books, paintings and boasting a boudoir grand, silver platters and candlesticks. He\",\"Someone family in panic: coming and going out of rooms, packing clothes and belongings into open suitcases and a trunk in a comfortable, tastefully furnished bourgeois apartment, the living room lined with books, paintings and boasting a boudoir grand, silver platters and candlesticks.\",He,gold,\"uses a swiffer, plastic shield around a, canvas, grinding designs, then screws from a small piece of wooden furniture.\",\"stands around to the room, and watches something swinging on the table, startling other boys descending the steps.\",\"sits by the radio set, ear to the speaker, trying to tune to a station.\",\"on people smiling eyes, state buttoning a small curtain is outline lash by either corners.\"\n7589,lsmdc0051_Men_in_black-71204,606,\"Instead of banging off the wall of the tunnel, the ltd actually clings to it. It\",\"Instead of banging off the wall of the tunnel, the ltd actually clings to it.\",It,gold,backlit its snout paws in the doorway.,glides onto the phone and clamps down on his forehead.,\"swerves up, onto the wall and hangs there, racing by the traffic below.\",settles on top of it and opens the armoire to wave at the camera when someone wakes.\n7590,lsmdc0051_Men_in_black-71204,607,\"It swerves up, onto the wall and hangs there, racing by the traffic below. It\",\"It swerves up, onto the wall and hangs there, racing by the traffic below.\",It,gold,'s the van parked by the curb.,\"keeps going, turning all the way over and driving upside down, wheels clinging to the roof of the tunnel.\",screeches into cars and fishtails back.,shoots him and heads with them.\n7591,anetv_QsfIM28uvHM,18405,The kite falls as the wind lessens. The kite,The kite falls as the wind lessens.,The kite,gold,falls and fly into the air.,is flying overhead behind.,soars down the road.,blows hard in the air as the wind picks up again.\n7592,anetv_OCT2h1kmZoA,14207,Another man with no coat on is snowboarding. We,Another man with no coat on is snowboarding.,We,gold,\"with wind and water, days appears on the mountain, and a woman is laying out down in front of him.\",see the ending sequence.,see the curved title screen.,is holding a shovel and a girl is standing on a sidewalk.\n7593,anetv_OCT2h1kmZoA,14205,We see a man riding on the back part of the snowboard. We,We see a man riding on the back part of the snowboard.,We,gold,see a man wearing a mask and shovel ramps in the driveway.,see people riding a kayak down a river.,see a person in a bright pink jacket.,see a bike on a table in the background.\n7594,anetv_OCT2h1kmZoA,14206,We see a person in a bright pink jacket. A man,We see a person in a bright pink jacket.,A man,gold,steps onto front a horse.,is snowboarding with bare arms.,line the tattoo on the red elder.,walks around the parked room.\n7595,lsmdc3050_MR_POPPERS_PENGUINS-24446,8276,\"With a wistful look, he watches the hostess set the menus on four place settings at the corner table. He\",\"With a wistful look, he watches the hostess set the menus on four place settings at the corner table.\",He,gold,peers at her's chest while she sits at the bar with his hand resting on the vanity table.,\"kicks a light, then raises the blinds, revealing his bare feet.\",\"takes his seat on the ledge of the bank, bumps into a coin computer.\",\"gives a wide grin, then sits with his family.\"\n7596,lsmdc3050_MR_POPPERS_PENGUINS-24446,8268,As someone wiggles the sardine. The penguins,As someone wiggles the sardine.,The penguins,gold,buzz out the keys.,gather for the nearest.,\"glance at his rival, then return their gazes to the fish.\",charge at someone as someone curves around.\n7597,lsmdc3050_MR_POPPERS_PENGUINS-24446,8273,\"At a small table, someone and someone pause their conversation and gaze at someone as he passes. He\",\"At a small table, someone and someone pause their conversation and gaze at someone as he passes.\",He,gold,gags and drinks from crying.,gives them a pleased look.,nuzzles his head and licks his lips.,walks back into the apartment.\n7598,lsmdc3050_MR_POPPERS_PENGUINS-24446,8274,\"Someone gins as he crosses his path with a pitcher of water. Pointing his finger like a gun, someone\",Someone gins as he crosses his path with a pitcher of water.,\"Pointing his finger like a gun, someone\",gold,crawls through the air with his butt landing on the water.,reverts to a human power.,flashes the wand to someone.,smiles at a table where his business partners dine with someone.\n7599,lsmdc3050_MR_POPPERS_PENGUINS-24446,8266,\"Someone takes out a sardine. With a penguins between them, they each\",Someone takes out a sardine.,\"With a penguins between them, they each\",gold,\"go, slack - jawed.\",\"stride into the room, then someone smiles and she pops out.\",take a few steps back.,get beers in the melee.\n7600,lsmdc3050_MR_POPPERS_PENGUINS-24446,8271,\"The someone pass colorful flower beds as they approach the building. Inside, the hostess\",The someone pass colorful flower beds as they approach the building.,\"Inside, the hostess\",gold,\"takes four menus reading, tavern on the green.\",\", someone, an indian officer and his turns, begin in conversation.\",\", moving to the front of the basement enters his bag leads up the stairs, following his broomstick.\",feeds the top off the ladder.\n7601,lsmdc3050_MR_POPPERS_PENGUINS-24446,8272,\"Inside, the hostess takes four menus reading, Tavern on the Green. At a small table, someone and someone\",\"Inside, the hostess takes four menus reading, Tavern on the Green.\",\"At a small table, someone and someone\",gold,sit on their bench.,are surges of space with wide eyes.,\"are on a small, luxurious bed which sits on a counter top.\",pause their conversation and gaze at someone as he passes.\n7602,lsmdc3050_MR_POPPERS_PENGUINS-24446,8267,\"With a penguins between them, they each take a few steps back. Someone\",\"With a penguins between them, they each take a few steps back.\",Someone,gold,gives a confident nod.,sits hand on his head as he conducts.,wipes a challenger tear from her chin.,\"drive through the streets of chicago, passing by surging trees, a fire.\"\n7603,lsmdc3050_MR_POPPERS_PENGUINS-24446,8270,Someone and someone exchange a glance. The someone,Someone and someone exchange a glance.,The someone,gold,sits a long distance beside someone.,turns and rolls away.,spies someone at the fairies gate platform and the smaller drones get in.,pass colorful flower beds as they approach the building.\n7604,anetv_PLqTX6ij52U,14935,The man unfolds the bike and puts the tire back on. We,The man unfolds the bike and puts the tire back on.,We,gold,put the handle on the bicycle.,see the man get the wallet and a credit card.,uses the attachment before heading to a new place.,see the ending title screen.\n7605,anetv_PLqTX6ij52U,6303,He is talking while holding a bike. He,He is talking while holding a bike.,He,gold,shimmies the claim barrier.,begins brushing the bike together.,shows how to place a tire wheel and onto a metal tire.,holds up the bike while he talks about it.\n7606,anetv_PLqTX6ij52U,6302,A man is standing inside a building. He,A man is standing inside a building.,He,gold,is throwing shingles onto the floor onto the pavement.,is talking while holding a bike.,is pulling the shoots out of a hookah next two rubber gloves.,is welding a blue cloth with a blue rag.\n7607,anetv_PLqTX6ij52U,14934,\"The man adjusts a and talks off the front tire, and folds the bike in half on itself. The man\",\"The man adjusts a and talks off the front tire, and folds the bike in half on itself.\",The man,gold,drops the tire to the side of the car and falls quickly after the floor.,unfolds the bike and puts the tire back on.,shows a piece of wood while then the child puts the tape on a metal weight frame.,climbs into the car and takes the tire out by the car.\n7608,anetv_9DIDpTlfBWs,11016,A chef is standing in front of a table and begins turning on a stove with a pan on it. The man then,A chef is standing in front of a table and begins turning on a stove with a pan on it.,The man then,gold,mixes various ingredients together and finally putting the ingredients on the stove top.,puts salt on salt and pours it over the pot of a large bowl.,begins showing his salad and how to properly cut the dough as well as large ice cream and bread.,removes a piece of bread and begins cooking in the bread while talking.\n7609,anetv_9DIDpTlfBWs,11017,The man then mixes various ingredients together and finally putting the ingredients on the stove top. He,The man then mixes various ingredients together and finally putting the ingredients on the stove top.,He,gold,then takes a screwdriver into a pot and mixes more chocolate on a plate to make a drink.,finishes the plate by making an omelette and serves it on a plate and cuts it up.,continues mixing the knives and food around as well as showing the proper position to sharpen.,each moves the match while others watch on the side.\n7610,anetv_N5x5VUK7Kx8,11110,A man is seen standing on a roof with a young child holding up a kite. The camera,A man is seen standing on a roof with a young child holding up a kite.,The camera,gold,fades from the perspective of the mower and rocking on the side.,pans all around the kite flying in the sky.,shows the image while a video a. of the couple are shown with a few other athletes and people to watch.,camera shows him blowing the kite all around while the camera watches on the side.\n7611,anetv_N5x5VUK7Kx8,11111,The camera pans all around the kite flying in the sky. The man,The camera pans all around the kite flying in the sky.,The man,gold,continues to his right along the side of the board.,is seen helping the boy in the end and grabbing the kite.,tosses the kite up a ladder and begins walking away.,leaps into the water as well as its skier around to the camera.\n7612,anetv_N5x5VUK7Kx8,11120,A man is seen standing on a roof with a small child. The child holds up a kite and the man,A man is seen standing on a roof with a small child.,The child holds up a kite and the man,gold,places a ladder on top.,pulls on the string.,begins knocking off the screen.,ends by pushing it along the bottom of the pool.\n7613,anetv_Dv2T0R7HVBQ,3548,A young man is seen sitting at the bottom of a pool. He,A young man is seen sitting at the bottom of a pool.,He,gold,throws a bowling ball away down the lane.,continues kayaking with his hands while the camera captures his movements.,is then seen playing on a flute while speaking to the camera.,begins moving closer to the camera while smiling.\n7614,anetv_Dv2T0R7HVBQ,3549,He begins moving closer to the camera while smiling. He then,He begins moving closer to the camera while smiling.,He then,gold,lifts his head up and down on the machine.,bumps into the wall and moves upwards.,shows close ups of the pool and their disappointment.,pours more liquors into the glass and ends by taking another shot of the glass.\n7615,anetv_Il0IelOoXa4,8300,The man is seen riding around and looking at her surroundings while the man behind paddles. The woman,The man is seen riding around and looking at her surroundings while the man behind paddles.,The woman,gold,is getting a hair cut.,continues speaks to the camera and ends by turning off the camera.,continues sitting and looking around her at the trees and sights.,dances water to a fooseball boarding and jumps up and bungee jumping.\n7616,lsmdc0023_THE_BUTTERFLY_EFFECT-59681,6565,\"Someone, now haggard, strung - out junkie, opens the door and immediately the contempt for someone grows in her eyes. She\",\"Someone, now haggard, strung - out junkie, opens the door and immediately the contempt for someone grows in her eyes.\",She,gold,\"shots, information of her names appear, as the i d. she is probably a big sea planet.\",runs her finger over the front hand.,\"looks around, waves him in.\",draws her in for a hug.\n7617,lsmdc0023_THE_BUTTERFLY_EFFECT-59681,6564,Someone steps over some passed out bodies that litter the hallway of an incredibly seedy motel. He,Someone steps over some passed out bodies that litter the hallway of an incredibly seedy motel.,He,gold,knocks on a door.,dries off with a yellow woolen scarf.,reads a note on a mechanic in pencil.,picks up a german card number.\n7618,lsmdc0023_THE_BUTTERFLY_EFFECT-59681,6563,\"In a blur, someone grabs someone's shirt and violently shoves him through the house and into a wall. Someone\",\"In a blur, someone grabs someone's shirt and violently shoves him through the house and into a wall.\",Someone,gold,twists his leg as the flames go down.,\"stares, some of his broken off.\",plops down into a cot.,\"goes slack, his eyes wide with horror.\"\n7619,lsmdc0023_THE_BUTTERFLY_EFFECT-59681,6561,\"Someone slowly walks up the driveway, which is now a dilapidated mess. Garbage litters the front lawn and paint chips\",\"Someone slowly walks up the driveway, which is now a dilapidated mess.\",Garbage litters the front lawn and paint chips,gold,to a stairway which reads puppets of the clock reads.,lying under the bed are cast so light.,rot off the sides of the house.,quickly alley as we.\n7620,lsmdc0023_THE_BUTTERFLY_EFFECT-59681,6562,\"Garbage litters the front lawn and paint chips rot off the sides of the house. In a blur, someone\",Garbage litters the front lawn and paint chips rot off the sides of the house.,\"In a blur, someone\",gold,straightens a cordless and talks.,grabs someone's shirt and violently shoves him through the house and into a wall.,rides back down the window with the piece.,tosses the noodles litter into the flour.\n7621,anetv_hPOtGLv1GzM,4158,A man crashes and lands on the track. A man in a hat,A man crashes and lands on the track.,A man in a hat,gold,is laying down.,throws a snowball at his belly.,is talking to the camera.,adds a yellow and blue board to give it.\n7622,anetv_hPOtGLv1GzM,4159,A man in a hat is talking to the camera. People,A man in a hat is talking to the camera.,People,gold,are standing in a court at day.,puts a pair of bagpipes down a sidewalk of orange ground puting shoes.,continue to ride bikes on the track and crashing.,are then shown outside on the field and starring into small groups.\n7623,anetv_hPOtGLv1GzM,4157,People are riding bicycles on a track. A man,People are riding bicycles on a track.,A man,gold,is riding a bike with the man in the stands watching them.,is running down a paved path.,crashes and lands on the track.,\"falls on his way, then drops in front of a jet carrier on the landing.\"\n7624,lsmdc0011_Gandhi-52108,8621,\"Someone helps to guide her. The young someone, somewhat amused by all the excitement,\",Someone helps to guide her.,\"The young someone, somewhat amused by all the excitement,\",gold,moves around to the harbor and rises.,leads someone through the crowd to a little flower - covered platform.,listens to see someone in the mirror then gives him a hug.,\"stops him, walks out of the carriage, and goes.\"\n7625,lsmdc0011_Gandhi-52108,8624,\"There is a great cheer, but in the silence that follows we hear the military band from across the way as the troops prepare to march off. Someone\",\"There is a great cheer, but in the silence that follows we hear the military band from across the way as the troops prepare to march off.\",Someone,gold,snaps the photo back with someone.,looks around at the crowd.,.,is stuck in the background.\n7626,lsmdc0011_Gandhi-52108,8625,\"He makes the pranam and starts for the steps. The crowd is a little disappointed, but they\",He makes the pranam and starts for the steps.,\"The crowd is a little disappointed, but they\",gold,are dumbfounded.,see someone starting her selections.,leave them a bit raw.,manage a cheer and applause.\n7627,lsmdc0011_Gandhi-52108,8623,\"Another garland is wrapped around someone's shoulders, and in some embarrassment, he mounts the platform. There is a great cheer, but in the silence that follows we\",\"Another garland is wrapped around someone's shoulders, and in some embarrassment, he mounts the platform.\",\"There is a great cheer, but in the silence that follows we\",gold,\"see someone waiting, watching, with the sullen sound of someone's voice.\",see sudden humming.,hear the military band from across the way as the troops prepare to march off.,is feelings something wrong.\n7628,lsmdc0011_Gandhi-52108,8622,\"The young someone, somewhat amused by all the excitement, leads someone through the crowd to a little flower - covered platform. We\",\"The young someone, somewhat amused by all the excitement, leads someone through the crowd to a little flower - covered platform.\",We,gold,see a banner: the congress party.,\"through the long distance, we glimpse someone's face and charged, as they recedes amidst the opera house.\",return to the next list.,holds up the necklace around the mixture as if someone else has n't seen.\n7629,lsmdc0011_Gandhi-52108,8620,\"She joins her hands, acknowledging a garland placed around her shoulders, and pushes on after someone. Someone\",\"She joins her hands, acknowledging a garland placed around her shoulders, and pushes on after someone.\",Someone,gold,helps to guide her.,glances in at the supervisor.,stands on the pavement helplessly.,arrives at someone's party.\n7630,lsmdc0011_Gandhi-52108,8619,An Indian reporter has cornered someone behind him. She,An Indian reporter has cornered someone behind him.,She,gold,\"joins her hands, acknowledging a garland placed around her shoulders, and pushes on after someone.\",is holding her phone as she tries to straighten her teeth.,is holding back one of the dummy balls while others watch.,gives a loving smile and gets up.\n7631,anetv_S-VSs8o98Ho,4292,A man pushes a broom behind them. They,A man pushes a broom behind them.,They,gold,leave the wooden floor on an old hardwood floor in the middle of the room.,rip the grass into piles.,push swords at the fire.,continue playing cards at the table.\n7632,anetv_S-VSs8o98Ho,4290,Cigarettes are placed down on a table. Someone,Cigarettes are placed down on a table.,Someone,gold,shuffles cards onto the table.,is sitting at a table in a field with photos of her.,turns up a revealing dark - haired someone.,pulls out some documents and drinks.\n7633,anetv_S-VSs8o98Ho,4291,Someone shuffles cards onto the table. A man,Someone shuffles cards onto the table.,A man,gold,follows the boy to a pause.,pushes a broom behind them.,passes out to the other women.,is standing on a pool table.\n7634,lsmdc1042_Up_In_The_Air-88458,12674,\"On the plane, she and someone sit side - by - side with the isle between them. He\",\"On the plane, she and someone sit side - by - side with the isle between them.\",He,gold,looks across at her.,gives a curious look.,gives in startled grins and shuts the door.,\"notices the silhouetted wrist, then reveals someone robes.\"\n7635,lsmdc1042_Up_In_The_Air-88458,12673,\"Someone takes off a bracelet. On the plane, she and someone\",Someone takes off a bracelet.,\"On the plane, she and someone\",gold,sit side - by - side with the isle between them.,try out their hair.,ride on their food.,stand in a tilted upside position.\n7636,lsmdc3018_CINDERELLA_MAN-7663,10022,He rubs someone's untaped right hand. Someone,He rubs someone's untaped right hand.,Someone,gold,returns to the door.,feels around his fighter's wrist.,connects with someone's era emotions.,slides a glass out of the back to the box.\n7637,lsmdc3018_CINDERELLA_MAN-7663,10023,Someone feels around his fighter's wrist. Someone,Someone feels around his fighter's wrist.,Someone,gold,forces a wince into a smile.,attempts to grab his shoe.,waves a roll of green creatures in his direction.,pins him to his feet.\n7638,lsmdc3018_CINDERELLA_MAN-7663,10024,\"With a solemn look, someone shifts his jaw. Someone\",\"With a solemn look, someone shifts his jaw.\",Someone,gold,looks over her shoulder to get the cash.,anchors them further in.,\"anxiously licks one finger, then joins the others.\",stops him then looks back down at his wrist.\n7639,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86277,3947,Someone sits in his wheelchair in the empty lounge. An elderly woman,Someone sits in his wheelchair in the empty lounge.,An elderly woman,gold,leans over a building.,with short curly - auburn hair pats her.,gives her a stamp.,\"sleeps in a chair in the corner of the dark, wood - paneled room.\"\n7640,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86277,3949,\"Someone wheels himself to the glass - paned double front doors and stands up. As he peers out, he\",Someone wheels himself to the glass - paned double front doors and stands up.,\"As he peers out, he\",gold,finds the longer leather wallet and marble with a letter.,breathes against the glass.,sees a 4th ounce of 500 strength.,notices a broad stained panel of smoke rising from the ceiling.\n7641,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86277,3950,\"Someone's legs suddenly give way beneath him, and he collapses. A naked old man\",\"Someone's legs suddenly give way beneath him, and he collapses.\",A naked old man,gold,appears in door to show.,\"lies down beside someone, steadying on the floor, reading.\",\"stands without someone, holding up a circular spoke to the third youth.\",raises a flag up a flagpole in the rain outside.\n7642,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86277,3946,\"Someone climbs the stairs, carrying frail, child - sized someone in his arms. Someone\",\"Someone climbs the stairs, carrying frail, child - sized someone in his arms.\",Someone,gold,wiggles into a knot and shakes his arm with his own.,sits in his wheelchair in the empty lounge.,\"opens the gate to the servant, seven years later wearing his apron.\",climbs a ladder and peeks out through the blinds.\n7643,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86277,3948,\"An elderly woman sleeps in a chair in the corner of the dark, wood - paneled room. Someone\",\"An elderly woman sleeps in a chair in the corner of the dark, wood - paneled room.\",Someone,gold,\", etc, home flyer and information handbag on the desk along the wall, with the hats on the table.\",\"rain bounces in the blinds and races to the window, where someone stands waiting at the curb and nods.\",wheels himself to the glass - paned double front doors and stands up.,\", someone sits down in a chair in the hall under her pew, is in a living room.\"\n7644,anetv_6jxqb8FyWnQ,8433,They grab each other's hand and begin an arm wrestling match with one yelling to the other. One almost wins but the other,They grab each other's hand and begin an arm wrestling match with one yelling to the other.,One almost wins but the other,gold,is wrestling in another bowl that is shoulder to arm on him.,side they both go backwards off the stage.,pulls back quickly and wins while screaming and pushing.,continues to break fighting and embrace to people.\n7645,anetv_6jxqb8FyWnQ,8432,Two men are shown sitting at a table with their arms crossed one another. They,Two men are shown sitting at a table with their arms crossed one another.,They,gold,begin hitting the instrument and sitting with another man.,slowly move back and forth.,grab each other's hand and begin an arm wrestling match with one yelling to the other.,pour cups and shoot them in the water.\n7646,anetv_aNQRlsp5yv8,8102,A little girl is doing more houses next to the castle. The man,A little girl is doing more houses next to the castle.,The man,gold,is watching her as she climbs up a slide.,stops and turns to monkey bar again.,digs a hole in the center while the boy help extend the castle.,runs down the slide while his mother leads him down the driveway.\n7647,anetv_aNQRlsp5yv8,8101,People approach to watch the castle and start to make small house next the sand castle. A little girl,People approach to watch the castle and start to make small house next the sand castle.,A little girl,gold,walks around the building.,is doing more houses next to the castle.,performs on a set toward a yellow and brown castle.,walks in the living room grabbing on to the pot.\n7648,anetv_aNQRlsp5yv8,8100,A man and a boy make a sand castle in the beach. People,A man and a boy make a sand castle in the beach.,People,gold,continue riding on a snowy hill with brushes and buildings at the bottom of a several times building.,ride up a small block building in between their examples.,approach to watch the castle and start to make small house next the sand castle.,are running around the inside of a wooden ring.\n7649,lsmdc0010_Frau_Ohne_Gewissen-51056,10278,He sees someone standing inside the door. He,He sees someone standing inside the door.,He,gold,opens it to find him asleep in bed.,enters the oval room from another door.,looks cautiously sideways at someone.,strides up to the table with the old awkward faced boy.\n7650,lsmdc0010_Frau_Ohne_Gewissen-51056,10275,\"He hands her his hat and briefcase and continues right on, camera with him, to a door lettered. Someone\",\"He hands her his hat and briefcase and continues right on, camera with him, to a door lettered.\",Someone,gold,grins as he opens the door and goes in.,\"is sitting in the entrance hall, when he sees, he reacts with a slight breeze blowing out of his face.\",works a grill - - with a spaced line of broken statues.,looks at the thread off the leaded glass window to a very lecture room.\n7651,lsmdc0010_Frau_Ohne_Gewissen-51056,10276,\"He is a big, dumb bruiser, six feet three inches tall - - a dirty work shirt and corduroy pants, rough, untidy hair, broad face, small piggish eyes. He\",\"He is a big, dumb bruiser, six feet three inches tall - - a dirty work shirt and corduroy pants, rough, untidy hair, broad face, small piggish eyes.\",He,gold,\"turns to the excess of his wrist in a red shirt, pointing only his right hand.\",\"takes a deep breath, gasping for breath.\",holds a sweat - soaked hat on his knee with a hairy hand.,\"stops for a moment, lips still in the shape of his left, and clenches his fingers.\"\n7652,lsmdc1062_Day_the_Earth_stood_still-100585,9073,Motorcycle outriders prepare to escort the waiting car. A stern - faced woman with dark hair,Motorcycle outriders prepare to escort the waiting car.,A stern - faced woman with dark hair,gold,\"enters the aisle, shrugs, and looks up.\",appears a little slightly dashing.,looks up at the wig.,sits in the front seat.\n7653,lsmdc1062_Day_the_Earth_stood_still-100585,9075,\"The convoy of two cars and four motorcycles pulls away. Lights flashing, they\",The convoy of two cars and four motorcycles pulls away.,\"Lights flashing, they\",gold,reach past a stand of industrial - on - a straight line.,speed down rain - soaked streets.,thunder over roof and open fire amid circus secret things.,are shown absent in heavy pursuit at night by.\n7654,lsmdc1062_Day_the_Earth_stood_still-100585,9074,A stern - faced woman with dark hair sits in the front seat. The blonde woman,A stern - faced woman with dark hair sits in the front seat.,The blonde woman,gold,dances as sunlight watches from the window.,puts her arms protectively around the bemused someone.,presses her cheek up to someone's ear.,\"looks from her blonde sister to someone, who nods toward the table.\"\n7655,anetv_K8G5CBJtluY,17185,\"The man says, one more and attempts another time, after which he says, that felt horrible. The man\",\"The man says, one more and attempts another time, after which he says, that felt horrible.\",The man,gold,begins to demonstrate when the man stands up in the font of the bike.,speaks as well as sitting with people and paddling his way down his yard.,struggles through nine more attempts before giving up to the amusement of his friends.,goes back and talks about the crowd.\n7656,anetv_K8G5CBJtluY,17184,\"He attempts a second sit - up and with another cracking sound, exclaims and grabs his buttocks. The man\",\"He attempts a second sit - up and with another cracking sound, exclaims and grabs his buttocks.\",The man,gold,continues over as someone glances back and scares the cat.,is up on his feet and sees someone falling snowy.,\"jumps down big wooden bars, lifting feet and legs.\",\"says, one more and attempts another time, after which he says, that felt horrible.\"\n7657,anetv_K8G5CBJtluY,17183,\"A young man lying prone on a tiled floor with this hands behind his head and his knees bent attempts to perform a sit - up in front of a few friends. As he brings his elbows towards his knees, a loud crack\",A young man lying prone on a tiled floor with this hands behind his head and his knees bent attempts to perform a sit - up in front of a few friends.,\"As he brings his elbows towards his knees, a loud crack\",gold,appears and he collapses with his elbows resting on his knees.,\"appears into the staircase where, thuds in through his face model rounds, on the floor as an elevator opens.\",\"can be heard as the man laughs, that hurt my ass.\",appears as he is trying to knit on a swing.\n7658,lsmdc3040_JULIE_AND_JULIA-17712,13770,Someone's friend looks away. Someone,Someone's friend looks away.,Someone,gold,gives an amused smirk.,gets out of the apartment building.,takes his hand out.,leans her forehead against hers.\n7659,anetv_RuBLAghI1vE,212,There are some people curling in an indoor ice rink. There,There are some people curling in an indoor ice rink.,There,gold,and fooseball contest are not in the screen.,begin to play a game of soccer on a beach.,are some girls getting ready with the curling sticks and prepping the rink to play curling.,are all shown walking around people leg and moves into bowling balls.\n7660,anetv_RuBLAghI1vE,214,Two girls dressed in black gear are playing the game as they go through the rink with their curling sticks pushing the rock. One of the players,Two girls dressed in black gear are playing the game as they go through the rink with their curling sticks pushing the rock.,One of the players,gold,shake their shirt up against the bar.,picks up a ball and pins it up to the blue hole in the opposite net.,kicks the ball in the red cones and the boy hits the ball against the mist.,glides through the floor and pushes the rock to the end of the rink.\n7661,anetv_RuBLAghI1vE,216,The two players continue playing as they go through the rink and slide the rocks till the end of the line. Two other players wearing pink,The two players continue playing as they go through the rink and slide the rocks till the end of the line.,Two other players wearing pink,gold,\"t - shirts and who play the hopscotch game, trying to win in a really hard game.\",play the game as they slide the rocks through the rink.,run across the field doing their consecutive goofy skip hug each other on the large water.,\"t - shirt are doing stunts at night, and the same yellow line of military team is shot.\"\n7662,anetv_RuBLAghI1vE,213,There are some girls getting ready with the curling sticks and prepping the rink to play curling. Two girls dressed in black gear,There are some girls getting ready with the curling sticks and prepping the rink to play curling.,Two girls dressed in black gear,gold,are presenting the ball and one of the wrestlers is standing next to the boy with a stick.,are playing the game as they go through the rink with their curling sticks pushing the rock.,and eventually begin to get the horses into where the injured team are finally juggling.,are shown one over the streets.\n7663,anetv_RuBLAghI1vE,215,One of the players glides through the floor and pushes the rock to the end of the rink. The two players,One of the players glides through the floor and pushes the rock to the end of the rink.,The two players,gold,continue playing as they go through the rink and slide the rocks till the end of the line.,shake hands and continue to pull each edge before finishing on the final straw.,shake hands as he moves forward.,stop kissing and quickly catch the ball then stop jumping.\n7664,anetv_kRVmpJILmjo,7671,\"After, men are shown and they get out and begin skateboarding down a road in the country. As the continue, a large hay stand is in the middle of the road and they all pass through it and they\",\"After, men are shown and they get out and begin skateboarding down a road in the country.\",\"As the continue, a large hay stand is in the middle of the road and they all pass through it and they\",gold,finish skating down the road.,are no running in a road.,hop across the parking lot.,are carried out of the gym.\n7665,anetv_kRVmpJILmjo,7670,\"A field is shown along with some mountains as a person begins driving down a road. After, men are shown and they\",A field is shown along with some mountains as a person begins driving down a road.,\"After, men are shown and they\",gold,get out and begin skateboarding down a road in the country.,begin jumping back and fourth and talking about their jumps in the snow.,begin to ride into the waters of the river.,begin mowing the leaves on a garden trail.\n7666,anetv_5WJL9eJ8YDw,3315,An intro leads into several clips of people standing in a circle and throwing an object off into the distance and ends by walking away. Several more people,An intro leads into several clips of people standing in a circle and throwing an object off into the distance and ends by walking away.,Several more people,gold,are shown performing numerous angles as well as the athlete jumping down in the sand.,are shown swimming in hula hoops with their hands around and hitting each other around the area.,are shown throwing arts to one another as well as bouncing up and down and on a floor.,are seen steeping up into the circle throwing objects off into the distance and cheering with one another.\n7667,anetv_zT6ITDwPi0w,4562,A girl stands and talks in a public restroom. The girl,A girl stands and talks in a public restroom.,The girl,gold,goes into a stall and closes the door.,walks around the bar and twirling more hoops.,turns off a towel with her brush.,looks very unsure of a little boy.\n7668,anetv_zT6ITDwPi0w,4563,The girl goes into a stall and closes the door. She,The girl goes into a stall and closes the door.,She,gold,emerges and washes her hands.,sees people looking at the scene.,walks in while the old man stand on the ladder with the hand elevated.,picks around a plastic bucket and picks up the dust.\n7669,anetv_zT6ITDwPi0w,4564,She emerges and washes her hands. She,She emerges and washes her hands.,She,gold,gives a barbie blond and heads out.,nurses hold in their clothes as well.,takes a paper and drys her hands.,\"takes her hand gently, kisses her firmly, and kisses her hand.\"\n7670,anetv_zT6ITDwPi0w,4565,She takes a paper and drys her hands. Another person,She takes a paper and drys her hands.,Another person,gold,is shown tattooing her again.,is giving serves to the camera.,is washing their hands.,is seen positioning her hand taking place.\n7671,anetv_4DCxc6mO864,3894,\"The girl then picks it up and begins to move more of her arms along with her legs and dances in a small area in the room while facing the camera. The girl then turns to her side and we see her dancing from the side, she turns to face the back and dances a bit that way, then\",The girl then picks it up and begins to move more of her arms along with her legs and dances in a small area in the room while facing the camera.,\"The girl then turns to her side and we see her dancing from the side, she turns to face the back and dances a bit that way, then\",gold,pointing along the side.,pulls herself along and laughs with surprising batons as she begins by speaking to the camera and gives a thumbs up.,turns again and again until we've seen her dance in all different directions.,the room in a back motion.\n7672,anetv_SEebwJMNMQs,11066,A violinist is playing the violin in a music room. She,A violinist is playing the violin in a music room.,She,gold,\"closes through the instrument, hits them with a small band, then continues to play.\",adjusts the violin under her chin as she reads the music.,slaps off the congas and back demonstrating how to play the harmonica.,see the walking in street.\n7673,anetv_SEebwJMNMQs,11067,She adjusts the violin under her chin as she reads the music. At the end of her song she,She adjusts the violin under her chin as she reads the music.,At the end of her song she,gold,tends to the band.,pauses at the end.,removes the violin and smiles.,stops playing the sing.\n7674,lsmdc1047_Defiance-91363,12607,\"He frees himslef from his brother's grasp. The two newcomers, people,\",He frees himslef from his brother's grasp.,\"The two newcomers, people,\",gold,run ahead of him.,are talking to someone.,climb in after him.,look at each other in a mirror.\n7675,anetv_PVJK-r4pNg8,548,We see a smiling man with credits running on the screen. We,We see a smiling man with credits running on the screen.,We,gold,see a pink top turn from the left corner.,see a man with stilts watching a top jump rope.,see the man in yellow.,see an instructional screen.\n7676,anetv_PVJK-r4pNg8,549,We see an instructional screen. We,We see an instructional screen.,We,gold,see two men playing a game of squash.,\"see a man close lens, then we see images of a man with a man in the yard.\",see a man well and a woman standing in a bathroom talking.,go on the slots when it's a yellow bowl inside.\n7677,anetv_PVJK-r4pNg8,550,We see two men playing a game of squash. We then,We see two men playing a game of squash.,We then,gold,show the closing screen.,kick a blue team in a room.,see the ending title screen.,engage in two game of sumo wrestling.\n7678,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2440,Someone falls from the astronomy tower. Someone,Someone falls from the astronomy tower.,Someone,gold,and someone plummet in rooms and collapse behind.,switches his hand to a luxurious electrical room which lies against its roof with the man bed them.,\"sits in his room, holding a shard of broken mirror.\",\"starts to run, still desperately swinging.\"\n7679,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2447,He spots a toy soldier wielding a sword. Someone,He spots a toy soldier wielding a sword.,Someone,gold,\"staggers down the step, realizing that she is shards with a knife, after the hurrying someone continues walking towards the kitchen.\",shoots her wand as the dust is above.,looks alternately through at the stone.,\"picks up the metal soldier, and places it in the palm of his hand.\"\n7680,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2444,The living room is bare. He,The living room is bare.,He,gold,pour something on a large boulder and looks up at the camera.,\"sits at a table and whispers something to someone, who stares blankly at someone.\",opens the door of the cupboard under the stairs and peers inside.,is filling a large silver round case.\n7681,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2441,\"Someone sits in his room, holding a shard of broken mirror. He\",\"Someone sits in his room, holding a shard of broken mirror.\",He,gold,\"checks his reflection, and empties the bottles into the toilet.\",empties his gun in his pocket.,\"walks over to someone, who is leaning up on a wall, lost in thought.\",\"stares pensively at his own reflection, then sees an eye that is not his own looking back at him.\"\n7682,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2445,The light in the cupboard comes on. Someone,The light in the cupboard comes on.,Someone,gold,is being shy as she recognizes follows.,is darting from the pot.,steps inside what was once his bedroom and slowly shakes his head.,walks up from her desk and sits on the stereo top.\n7683,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2448,\"Someone picks up the metal soldier, and places it in the palm of his hand. He\",\"Someone picks up the metal soldier, and places it in the palm of his hand.\",He,gold,is striding down the road carrying a bag of groceries.,grins to himself with the associated players.,\"studies it, his face solemn, then puts it back.\",puts the ring on the tip of his finger.\n7684,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2446,Someone steps inside what was once his bedroom and slowly shakes his head. He,Someone steps inside what was once his bedroom and slowly shakes his head.,He,gold,fearfully open his mouth.,spots a toy soldier wielding a sword.,\"looks out over town, opening its door.\",\"tries a little closer, but then reaches to his one arm and removes his spectacles.\"\n7685,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2442,\"He stares pensively at his own reflection, then sees an eye that is not his own looking back at him. Someone\",\"He stares pensively at his own reflection, then sees an eye that is not his own looking back at him.\",Someone,gold,eyes widen and a mirror removes someone's utility stick.,\"someone waits a moment, then notices the chill sense of movement on his chest.\",is already standing up and begins putting some of his own solution in a bucket stuck in his lap.,is sitting patiently in her cage.\n7686,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93567,2449,\"He studies it, his face solemn, then puts it back. He\",\"He studies it, his face solemn, then puts it back.\",He,gold,takes a hanging from a cabinet.,\"lunges, and holds her arm up to a fetal position.\",reaches over to him.,opens the front door.\n7687,anetv_8UvKQnfXnCk,17150,Another boat is seen in the water behind them. They,Another boat is seen in the water behind them.,They,gold,are going around yellow cones in the water.,walk down the river into the alter.,continue riding down the boat on a boat.,run through a canyon.\n7688,anetv_8UvKQnfXnCk,17149,A person is water skiing behind a boat. Another boat,A person is water skiing behind a boat.,Another boat,gold,slides down the turbulent waters.,is suspended over the edge of a river.,is seen in the water behind them.,\"is seen next to a boat, arrows rolling down the river in the back.\"\n7689,anetv_Bbb8CybvMlk,9033,Several different close up shots are shows of wrapped gifts and gift wrapping supplies. A person,Several different close up shots are shows of wrapped gifts and gift wrapping supplies.,A person,gold,uses a box to wrap on a wrapped gift wrapping as they stand near a tree.,comes onto the screen and begins to wrap a gift.,lays down a plate and takes those layers of paint.,is dressed in rakes on a large field and beginning to peel angels.\n7690,anetv_Bbb8CybvMlk,9032,An introduction comes onto the screen for a video about wrapping gifts. Several different close up shots,An introduction comes onto the screen for a video about wrapping gifts.,Several different close up shots,gold,are shows of wrapped gifts and gift wrapping supplies.,of the black screen is shown.,are shown of an intro screen with a logo and website.,are shown of baked medals.\n7691,anetv_Bbb8CybvMlk,9034,She decorates the gift with ribbons and attachments to embellish it. Several other gift wrapping ideas,She decorates the gift with ribbons and attachments to embellish it.,Several other gift wrapping ideas,gold,stands inside an assortment of clothing throughout.,are taken from the gift and placed on the present.,\"are interviewed, presented, followed by dogs and tapes.\",are then shown on the one after the other.\n7692,anetv_Bbb8CybvMlk,9035,Several other gift wrapping ideas are then shown on the one after the other. The video,Several other gift wrapping ideas are then shown on the one after the other.,The video,gold,\"continues, showing the entire process running well done, while the video moves to it.\",ends with women taking houses and kites and tying them with red tape.,ends with the closing credits shown on the screen.,causes a small group of people in the playground and they have fun and eat at the same time.\n7693,anetv_c8ntlBKuVmc,11876,A bench is shown in a backyard in front of bushes. A man,A bench is shown in a backyard in front of bushes.,A man,gold,is in a small yard mowing with a lawn mower.,walks into a house with a large bucket in front of him.,is using a ladder to trim the hedges.,moves through the hedge with an ax.\n7694,anetv_c8ntlBKuVmc,11877,A man is using a ladder to trim the hedges. He,A man is using a ladder to trim the hedges.,He,gold,holds an ax on logs for wood.,starts welding it on another block.,\"moves the bench, and walks around with the ladder, continuing to trim hedges.\",uses a lasso to trim air.\n7695,anetv_o_e0KLnKpj8,13906,The lady tries to start the mower again. Another lady,The lady tries to start the mower again.,Another lady,gold,makes the jump while the lady records it.,comes to help and falls over.,climbs on top of the fence.,pushes off the lawn and poses.\n7696,anetv_o_e0KLnKpj8,13908,The first lady finally gets the mowers started. the lady,The first lady finally gets the mowers started.,the lady,gold,walks toward left to a left.,puts a newspaper on a rock and a guy runs.,does a few tricks and finishes.,throws her arm in the air and mows the lawn.\n7697,anetv_o_e0KLnKpj8,13905,The lady starts then stops mowing. The lady,The lady starts then stops mowing.,The lady,gold,starts mowing the lawn.,stops vacuuming and drops a red leaf into the grass.,finishes playing and presents her horse with her left hand.,tries to start the mower again.\n7698,anetv_o_e0KLnKpj8,13907,Another lady comes to help and falls over. The first lady finally,Another lady comes to help and falls over.,The first lady finally,gold,falls and the girl arches hold of her roller.,climbs the baking glass.,manages to get fab from the area.,gets the mowers started.\n7699,anetv_o_e0KLnKpj8,13903,We see a lady starting a lawn mower. The lady,We see a lady starting a lawn mower.,The lady,gold,mows around the floor.,stands in front of the car talking.,stops and looks at the camera.,points the general off the lawn.\n7700,anetv_6RePzOd3GvQ,7317,He stands in front of a sink and brushes his teeth. He,He stands in front of a sink and brushes his teeth.,He,gold,winces as he tries to move his teeth from side to side.,stops and starts to write.,shaves his back and cleans his teeth.,spits into the sink in front of him.\n7701,anetv_6RePzOd3GvQ,7316,A man in a black shirt is talking to the camera. He,A man in a black shirt is talking to the camera.,He,gold,appears next to a row of balloons.,is leading the band.,stands in front of a sink and brushes his teeth.,distributes the crowd on street.\n7702,anetv_6RePzOd3GvQ,1409,\"He is shown with a toothbrush, then brushes and spits. Then we\",\"He is shown with a toothbrush, then brushes and spits.\",Then we,gold,\"see him with a massive mouthful of paste, pouring out of his mouth as he sloppily brushes.\",become the haircut with the other man.,\"wee the scenes of the cataleya ones, watching and nodding.\",\"see the brush, near cut, and lengths by the dogs to be the toothbrush.\"\n7703,anetv_6RePzOd3GvQ,1408,A man in a black tank top speaks to the camera. He,A man in a black tank top speaks to the camera.,He,gold,takes a knife as he shaves his leg.,is playing a game of shuffleboard.,\"interviews people and claps, trying to hit the ball.\",\"is shown with a toothbrush, then brushes and spits.\"\n7704,lsmdc1007_Spider-Man1-74604,17531,\"Someone takes a few paces forward, her head tilted to one side and watches with a sad and witty face until he disappears. That night, he\",\"Someone takes a few paces forward, her head tilted to one side and watches with a sad and witty face until he disappears.\",\"That night, he\",gold,\"just takes her hand as he stares down at it enjoying the morning guests, people at work, follow someone and someone.\",reaches the dark hillside and watches the delayed photo set down the mountains over the fire pyre as cavalry swarming around the perimeter.,\"is sitting up in his bedroom, his tie loosened a little but still on.\",\"leans back and pinches her nose, now holding a sheet of hair to his ear.\"\n7705,lsmdc1007_Spider-Man1-74604,17534,\"Her hands on her lap, she sits down next to her nephew on the bed. He\",\"Her hands on her lap, she sits down next to her nephew on the bed.\",He,gold,reaches across the table and shuts the door.,\"smiles at someone, who lowers awkwardly in the chair.\",stands on someone's bed wearing a smoldering dress.,acknowledges her presence with a hint of a smile.\n7706,lsmdc1007_Spider-Man1-74604,17533,\"Someone in her dressing gown comes to the doorway and softly comes in. Her hands on her lap, she\",Someone in her dressing gown comes to the doorway and softly comes in.,\"Her hands on her lap, she\",gold,pulls the sitting door shut.,takes a brisk breath.,cringes and continues to look around remorsefully.,sits down next to her nephew on the bed.\n7707,lsmdc1007_Spider-Man1-74604,17532,\"Tears rolling slowly down his cheeks, he gazes distantly ahead. Someone in her dressing gown\",\"Tears rolling slowly down his cheeks, he gazes distantly ahead.\",Someone in her dressing gown,gold,comes to the doorway and softly comes in.,stands in her kitchen.,smiles up and takes the coat.,stands standing in her room.\n7708,lsmdc1007_Spider-Man1-74604,17530,\"Later, he and someone arrived home. Someone\",\"Later, he and someone arrived home.\",Someone,gold,turns and charges sturdy up the stairs to his room.,carries things at dinner.,\"grabs his backpack, then bursts in after them.\",is asleep on the professor's bed.\n7709,anetv_E50qKeeMbgU,114,A man is talking next to an exercise machine. He,A man is talking next to an exercise machine.,He,gold,points for a man not shaving the other man clean.,discusses the mechanics of how the machine works.,starts jumping in a running watchnig game.,retrieves a cube.\n7710,anetv_E50qKeeMbgU,4707,The video shows all of the various features of the machine. All of the features of the machine,The video shows all of the various features of the machine.,All of the features of the machine,gold,are displayed and begin playing with the camera.,are pointed out by the narrator and the girl interacts with them.,completely ironed are shown.,turned to the right person.\n7711,anetv_E50qKeeMbgU,4706,Then there us a girl in a blue shirt on one of the machines using it to workout. The video,Then there us a girl in a blue shirt on one of the machines using it to workout.,The video,gold,ends the few people watching from her video.,begins with a little girl kicking in more paved lunges.,ends with a man on land.,shows all of the various features of the machine.\n7712,anetv_E50qKeeMbgU,115,He discusses the mechanics of how the machine works. A woman,He discusses the mechanics of how the machine works.,A woman,gold,checks a bag of stirred contents.,leans over the door and covers her ear.,is shown using the machine while he talks.,sits up behind him.\n7713,lsmdc3039_JACK_AND_JILL-2669,13052,Someone and someone bumped rears. Someone,Someone and someone bumped rears.,Someone,gold,glances up at him.,calls from the ship.,enters the boy's crush.,takes the bolt from someone.\n7714,lsmdc3039_JACK_AND_JILL-2669,13051,\"In the Spanish castle, someone swigs from the bottle as he dances with someone. The servant\",\"In the Spanish castle, someone swigs from the bottle as he dances with someone.\",The servant,gold,\"opens the flask to someone who is now awake, staring at him.\",pours the water gently away and does the same.,pours two bundles of drinks.,bops to the music.\n7715,lsmdc3039_JACK_AND_JILL-2669,13049,\"One body builder strains to curl the heavy bar. Now, a record\",One body builder strains to curl the heavy bar.,\"Now, a record\",gold,gears curl as the solved lie on the floor.,\"player's doors haul up and silver furniture, cut by frost spreading on a carpet of beads and sweat.\",plays on a turntable.,blows the bows to the sisters.\n7716,lsmdc3039_JACK_AND_JILL-2669,13048,Someone sets down the bar. One body builder,Someone sets down the bar.,One body builder,gold,baring his strap in slow motion.,easily inches away and climbs onto the bench.,strains to curl the heavy bar.,buffeted by the crowd.\n7717,lsmdc3039_JACK_AND_JILL-2669,13046,The body builders watch someone easily curl what they struggled with. She,The body builders watch someone easily curl what they struggled with.,She,gold,closes her eyes and then closes her eyes then stares wide - eyed.,takes the book off of the table and sits behind the desk.,works the heavier weight even faster.,\"wheels him forward and flips him sideways over, then shoves his door open.\"\n7718,lsmdc3039_JACK_AND_JILL-2669,13045,\"Someone grabs the liquor bottle from the servant and chugs. Now in the gym, someone\",Someone grabs the liquor bottle from the servant and chugs.,\"Now in the gym, someone\",gold,uncovers a model - doll clutched in his hand.,rides an exercise bike beside two body builders.,\"pushes a file through the large doors, past a figure of someone, who stands side to side.\",unlocks the drawer and takes out the toy packet.\n7719,lsmdc3039_JACK_AND_JILL-2669,13050,\"Now, a record plays on a turntable. In the Spanish castle, someone\",\"Now, a record plays on a turntable.\",\"In the Spanish castle, someone\",gold,sleeps in bed as time passes under it.,uses their hind legs to catapult the intense parchment to the floor.,swigs from the bottle as he dances with someone.,pauses on a plane.\n7720,lsmdc3039_JACK_AND_JILL-2669,13047,She works the heavier weight even faster. Someone,She works the heavier weight even faster.,Someone,gold,moves intensely and she slips into the crowd.,stops her arms a few times then grabs her leg.,sets down the bar.,stretches out and tumbles over the uneven ground.\n7721,lsmdc1039_The_Queen-88154,5503,More footage shows members of the public gathered around an arrangement of candles on the ground. This,More footage shows members of the public gathered around an arrangement of candles on the ground.,This,gold,is followed by someone addressing some members of the public.,see all the longer players walk towards them.,\"the club, the servants begin push the stone against the side of the building, and pies into central park.\",is followed in a club running to the sky while other people stand in front of him standing behind the heavy women watching him.\n7722,lsmdc1039_The_Queen-88154,5504,\"As someone sits watching tv, someone enters. Someone\",\"As someone sits watching tv, someone enters.\",Someone,gold,opens the laptop and videotapes with a newspaper.,shuts the tv behind him.,\"peeks into view, grins.\",looks from someone to the tv.\n7723,lsmdc1039_The_Queen-88154,5502,Video footage shows the ground completely covered with flowers. More footage,Video footage shows the ground completely covered with flowers.,More footage,gold,shows someone's father throwing a man closely at his anther.,is shown of a colorful rabbit.,shows someone in a canyon.,shows members of the public gathered around an arrangement of candles on the ground.\n7724,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96308,6608,\"Someone and his cronies look sick, while someone smiles delightedly. Someone\",\"Someone and his cronies look sick, while someone smiles delightedly.\",Someone,gold,\"holds his brother, who shoves him further down the hallway after him.\",sinks away from someone as he walks up a path.,stares at someone with astonishment.,\"stares in horror, fear racing near someone's face.\"\n7725,lsmdc1019_Confessions_Of_A_Shopaholic-80652,4980,The editor pulls a face. Someone,The editor pulls a face.,Someone,gold,looks like a rabbit caught in the headlights.,hangs helplessly to the driver's seat.,looks at the two of them and flips his beer aside.,\"drags him through the hotel hall, quietly walks along the platform towards the opposite lanes.\"\n7726,anetv_UVJ0mQndDhE,6414,We see a person sliding blue discs down a wooden table. The man moves to the other end of the table and the camera,We see a person sliding blue discs down a wooden table.,The man moves to the other end of the table and the camera,gold,moves to see them from the end.,moves back to the man in the barn.,does the same thing back to the camera.,pans over to everyone standing to see the boys practicing their proper outfits.\n7727,anetv_UVJ0mQndDhE,6415,The man moves to the other end of the table and the camera moves to see them from the end. We,The man moves to the other end of the table and the camera moves to see them from the end.,We,gold,see a title of a band fighting performing another circle in a room.,wee the person slide all their blue then the red discs down the table.,see the contact pole and fold it back.,see the person playing volleyball on the court.\n7728,lsmdc3026_FRIENDS_WITH_BENEFITS-1629,18920,He tucks a loose lock of hair behind Shaun's ear. Now traffic,He tucks a loose lock of hair behind Shaun's ear.,Now traffic,gold,has an empty apartment.,comes to a standstill where seven lanes merge into two.,plays on a flat frame.,runs down someone's campus driveway.\n7729,lsmdc3026_FRIENDS_WITH_BENEFITS-1629,18921,Now traffic comes to a standstill where seven lanes merge into two. Someone,Now traffic comes to a standstill where seven lanes merge into two.,Someone,gold,douses the fur in her hands.,sends a text message.,strokes someone's long windblown clear.,adjusts the hood and sees the excitement of the volleyball game.\n7730,anetv_3pjVV7A6Apw,15105,\"The equipment sits gathered together, cutting to the clean window. The man\",\"The equipment sits gathered together, cutting to the clean window.\",The man,gold,rises from the ocean and near someone's bed.,shows the image continuing.,\"cleans the window again, raking the cleaner across the window over and over before wiping it dry with a rag.\",places the sheet down and takes the lid off.\n7731,anetv_3pjVV7A6Apw,14701,A person is seen cleaning a window and pouring liquid into a bucket. The person,A person is seen cleaning a window and pouring liquid into a bucket.,The person,gold,begins to use a rag to clean the cloth.,mixes ingredients into the pan and mixes her coffee together into a bowl.,holds up tools and dips them in the bucket.,is then rinsed by pulling dried cleaner on a counter with clean cleaning tools and knife.\n7732,anetv_3pjVV7A6Apw,15104,\"It changes to color, then a man is shown cleaning a window. The equipment\",\"It changes to color, then a man is shown cleaning a window.\",The equipment,gold,moves in around the corner.,\"sits gathered together, cutting to the clean window.\",are shown covered with several snow.,goes in off of the floor.\n7733,anetv_3pjVV7A6Apw,15103,\"A progrip container is shown next to a bucket. It changes to color, then a man\",A progrip container is shown next to a bucket.,\"It changes to color, then a man\",gold,is shown cleaning a window.,shows how to properly get it.,vacuums the wood floor with his footsteps helping a mops.,\"pour drying it in a round small black bag, then young man puts his hand around the land.\"\n7734,anetv_3pjVV7A6Apw,14702,The person holds up tools and dips them in the bucket. He,The person holds up tools and dips them in the bucket.,He,gold,finishes by taking the stick.,sprays oil on a board.,pours water into a blue bucket while sitting by the water.,cleans a window using several tools and looking at the window.\n7735,anetv_hvCYwmaukDw,14970,\"The men and sumos begin a soccer game against one another and when a man tries to make a goal a sumo blocks the entire goal and in various other moves the sumo wins including a goal when a sumo fell and the soccer ball flew into the net. A man grabs a pepsi can and throws it to a sumo and all the sumos run to the cooler, drinks a pepsi, then they\",The men and sumos begin a soccer game against one another and when a man tries to make a goal a sumo blocks the entire goal and in various other moves the sumo wins including a goal when a sumo fell and the soccer ball flew into the net.,\"A man grabs a pepsi can and throws it to a sumo and all the sumos run to the cooler, drinks a pepsi, then they\",gold,'re shown walking off with the pepsi cooler.,jump into an ice.,get up to run and return to the phone.,share a brief smile as they continue to dance.\n7736,anetv_hvCYwmaukDw,14969,\"Very large sumos start walking on the field with their own soccer ball in hand, and the soccer men approach them and the sumo points over to the pepsi cooler filled with soda. The men and sumos begin a soccer game against one another and when a man tries to make a goal a sumo blocks the entire goal and in various other moves the sumo\",\"Very large sumos start walking on the field with their own soccer ball in hand, and the soccer men approach them and the sumo points over to the pepsi cooler filled with soda.\",The men and sumos begin a soccer game against one another and when a man tries to make a goal a sumo blocks the entire goal and in various other moves the sumo,gold,wins including a goal when a sumo fell and the soccer ball flew into the net.,win with and walk around the table and instead serve his neck between the sword and wins from the rest of the team.,championships and the young man kicked the ball in the hands.,grabs it with the turbulent hand - hammer machine and continue to lay off against the goal board.\n7737,anetv_hvCYwmaukDw,14968,\"Men are dressed in soccer gear that have the pepsi logo on their shirts and they are playing on a grassy field. Very large sumos start walking on the field with their own soccer ball in hand, and the soccer men\",Men are dressed in soccer gear that have the pepsi logo on their shirts and they are playing on a grassy field.,\"Very large sumos start walking on the field with their own soccer ball in hand, and the soccer men\",gold,start talking to each other and miss the ball.,approach them and the sumo points over to the pepsi cooler filled with soda.,run across the field to practice.,appear on the sides of the circle then pass the ball nearby.\n7738,lsmdc0021_Rear_Window-58734,900,\"She seems quite animated, moving gracefully, her skirt and hair swinging with her movement. Someone\",\"She seems quite animated, moving gracefully, her skirt and hair swinging with her movement.\",Someone,gold,'s ghostly eyes are rosy - g.,bends his long leg and allows him to continue.,turns around to face the room.,\"sees someone running out in her dress, someone outfit blocking the movement.\"\n7739,lsmdc0021_Rear_Window-58734,893,\"Then he turns, puts his unfinished drink down on a table, and goes to the door. Someone\",\"Then he turns, puts his unfinished drink down on a table, and goes to the door.\",Someone,gold,\"moves out to the door, but does n't open it.\",\"stops, turns to the music, begins to laugh.\",is standing at the window with his drink in his hand.,\"stretches out on the door, steps down a few steps and faces his mirror.\"\n7740,lsmdc0021_Rear_Window-58734,902,\"He starts pacing, trying to distill her thoughts. We\",\"He starts pacing, trying to distill her thoughts.\",We,gold,\"see that she has brought an oversized handbag with her, which lies prominently on the table.\",\", he raises the receiver to his head, then turns and walks off.\",dojo has heard what he wants.,\", someone cuttings stops and waits.\"\n7741,lsmdc0021_Rear_Window-58734,895,He puts the light out in the living room and goes out the door. He,He puts the light out in the living room and goes out the door.,He,gold,\"closes the door, opens it and heads inside.\",is standing puzzle as the kid watches.,enters the office and talks through the book.,walks briskly down the corridor.\n7742,lsmdc0021_Rear_Window-58734,897,\"He picks up the long - focus lens and trains it on the street intersection, as someone moves back to him. The camera\",\"He picks up the long - focus lens and trains it on the street intersection, as someone moves back to him.\",The camera,gold,pulls back as someone starts around the apartment turning on the lights.,moves behind a few lines of hispanic boys as he glides all over the holes.,turns to his left.,moves behind the shed which leads into more row of designer cars.\n7743,lsmdc0021_Rear_Window-58734,899,\"As she light increases, we see that she is wearing another extravagantly beautiful dress. She\",\"As she light increases, we see that she is wearing another extravagantly beautiful dress.\",She,gold,leans close on to a ceiling.,\"takes the jacket from her bra to revealing a slim, silver - sleeve dress.\",rinses the surface mess with the foam.,\"seems quite animated, moving gracefully, her skirt and hair swinging with her movement.\"\n7744,lsmdc0021_Rear_Window-58734,901,\"Someone turns around to face the room. As he talks, she\",Someone turns around to face the room.,\"As he talks, she\",gold,seems to be thinking something over to herself.,jumps off the room and rushes over leaning on the doorway.,sees someone with his dog behind a table.,points at various photos.\n7745,lsmdc0021_Rear_Window-58734,898,\"The camera pulls back as someone starts around the apartment turning on the lights. As she light increases, we\",The camera pulls back as someone starts around the apartment turning on the lights.,\"As she light increases, we\",gold,see the machine out on the way to the bed.,see two sets of individuals demonstrating them escorting someone's cards.,see a tear hanging from a massive passage.,see that she is wearing another extravagantly beautiful dress.\n7746,anetv_aRZd3O6-PKw,10053,\"A man is standing outside under a tent hitting a pinata with a stick. After about three strings, he\",A man is standing outside under a tent hitting a pinata with a stick.,\"After about three strings, he\",gold,can take a turn by hitting the ball with the cone.,presses it to his right hole to try a match.,kicks the monkey bars.,moves and gives the stick to a young girl with a grey and black dress on.\n7747,lsmdc3068_THE_BIG_YEAR-3800,14761,\"Later, someone reads his blog. Someone\",\"Later, someone reads his blog.\",Someone,gold,stares up at someone.,uses his cell phone.,arrives with a colorful bag.,leans down to see someone's new flight glasses.\n7748,anetv_3ROld-bSgPQ,17641,Her mom takes the ice cream away from her and she starts to cry. Her mom gives her back the ice cream and she,Her mom takes the ice cream away from her and she starts to cry.,Her mom gives her back the ice cream and she,gold,continues to read it.,puts the necklace on her lips.,washes it off without tucking it in her mouth.,\"is happy again, back to eating it.\"\n7749,anetv_3ROld-bSgPQ,17642,\"Her mom gives her back the ice cream and she is happy again, back to eating it. She\",\"Her mom gives her back the ice cream and she is happy again, back to eating it.\",She,gold,wine is over her phone and everyone laughs.,\"goes over to a pitcher and picks it up, pours it back and sets it out back on the table.\",rises from the plates again and signals for the other to copy.,plays with her toys with her sticky ice cream fingers and her ice cream in the other hand.\n7750,lsmdc0009_Forrest_Gump-50944,10330,Someone looks into the bus and at the bus driver. It,Someone looks into the bus and at the bus driver.,It,gold,goes out to his car and drives away.,gets into the back seat.,makes his way through the now deserted office and moves once about his chevy.,\"is the same bus driver, only older now, who drove someone to school when he was a young boy.\"\n7751,lsmdc0009_Forrest_Gump-50944,10333,A gust of wind picks the feather up. The feather,A gust of wind picks the feather up.,The feather,gold,\"snaps a few times, then breaks up.\",floats up into the air.,has obviously come out onto his face.,is coming from above his head.\n7752,lsmdc0009_Forrest_Gump-50944,10332,\"The camera cranes down, revealing the feather as it lies at someone's feet. A gust of wind\",\"The camera cranes down, revealing the feather as it lies at someone's feet.\",A gust of wind,gold,blows them and becomes down.,picks the feather up.,blows over her wounded face.,crashes over the debris.\n7753,lsmdc0009_Forrest_Gump-50944,10329,\"The feather from the beginning of the movie drops out of the book, unnoticed. The bus\",\"The feather from the beginning of the movie drops out of the book, unnoticed.\",The bus,gold,crosses a deserted street on the street.,comes to a stop.,turns up to a smiling someone.,quiets then somewhat noisily.\n7754,lsmdc0009_Forrest_Gump-50944,10334,The feather floats up into the air. Someone,The feather floats up into the air.,Someone,gold,writes down the cheese.,signals her to the baby.,is swimming toward the television.,sits at the side of the road.\n7755,lsmdc0009_Forrest_Gump-50944,10335,Someone sits at the side of the road. The feather,Someone sits at the side of the road.,The feather,gold,floats higher into the air.,is stained with a tattoo of burning needles and various memorabilia.,stops and looks at camera.,rises and silky grins is typed out from beneath her.\n7756,lsmdc0009_Forrest_Gump-50944,10331,\"It is the same bus driver, only older now, who drove someone to school when he was a young boy. Someone\",\"It is the same bus driver, only older now, who drove someone to school when he was a young boy.\",Someone,gold,looks over and waves to his father.,slips out of sight.,are just though they were watching the great water.,is just hanging money on him.\n7757,lsmdc0009_Forrest_Gump-50944,10336,The feather floats higher into the air. The feather,The feather floats higher into the air.,The feather,gold,\"soars up into the sky and travels up and down, then covers the camera lens.\",rises from the bandage.,leaps into the air.,disappears down the lane and grabbing the disk over the net.\n7758,lsmdc0009_Forrest_Gump-50944,10328,Someone looks at the book. The feather from the beginning of the movie,Someone looks at the book.,The feather from the beginning of the movie,gold,\"slowly snaps back to his becomes real, and the photograph, sits on his book.\",reveals; she is after the rough spacious dressing gown.,\"drops out of the book, unnoticed.\",shows someone being buffeted by the blow.\n7759,anetv_CIAZbDkD0TE,17142,\"A woman walks out of a kitchen and over to a steamer with her daughter behind her. She picks up her iron and begins to iron a pair of pants as the girl plays with a dress, and the woman\",A woman walks out of a kitchen and over to a steamer with her daughter behind her.,\"She picks up her iron and begins to iron a pair of pants as the girl plays with a dress, and the woman\",gold,begins holding her hair in a sink.,then sees an iron and begins spreading the contract into her hands.,has left the iron resting on the clothing.,dries her hair and lays it down.\n7760,anetv_CIAZbDkD0TE,17143,\"She picks up her iron and begins to iron a pair of pants as the girl plays with a dress, and the woman has left the iron resting on the clothing. She\",\"She picks up her iron and begins to iron a pair of pants as the girl plays with a dress, and the woman has left the iron resting on the clothing.\",She,gold,comes to the end and also taps the iron.,is wearing headphones and a white uniform.,drops the iron and places it to her side.,irons the dress for the girl as she watches.\n7761,anetv_jnnHUCs-t3o,13814,\"They swim in the water, playing a game with a ball. They\",\"They swim in the water, playing a game with a ball.\",They,gold,subdued from both position.,\"hit the ball back and forth, trying to keep it from each other.\",head off the net and cheer for the players.,pass the ball in the goal.\n7762,anetv_jnnHUCs-t3o,13813,Several people are playing in a public swimming pool. They,Several people are playing in a public swimming pool.,They,gold,are engaged in the game by volleyball.,put their hands in a plastic shower.,\"swim in the water, playing a game with a ball.\",are demonstrating their use to play polo.\n7763,anetv_uRBE-ANigvs,11941,An intro shot of various athletes are shown. A man,An intro shot of various athletes are shown.,A man,gold,pushes a large area ball up and off while people walk around him.,is seen performing and throwing plaster around a wall.,is then shown throwing a discus on a large field.,is shown flexing his pants off to the side.\n7764,anetv_uRBE-ANigvs,11942,A man is then shown throwing a discus on a large field. Another man,A man is then shown throwing a discus on a large field.,Another man,gold,makes several braid as well as attempts to properly measure the distance to a disc.,is shown running down a track and forcing a ball into the water.,strides past the field as well as shots of the line giving tips and working him.,is also shown doing the same with a still shot of him afterwards showing his posture and his throw in slow motion.\n7765,anetv_t3eRbi1Uk5E,641,\"They are shown on several peices of equipment, moving quickly. Others\",\"They are shown on several peices of equipment, moving quickly.\",Others,gold,starts working out on the sofa.,get a big grip on how to do this exercise.,\"are shown jumping, running, and doing other exercises.\",skating on the side of steep cliffs and itself.\n7766,anetv_t3eRbi1Uk5E,6739,Several different people are inside a gym. They,Several different people are inside a gym.,They,gold,talk in front of curling and do some tricks.,are showing yoga crunches on hips as they jump.,are shown riding different kinds of elliptical and arc trainers at both fast and slow speeds.,run with balance above a gym.\n7767,anetv_HzSCfBOefA4,11542,The man turns the camera to a worker dressed in casual clothing who looks like he is singing and dancing while loading dishes onto a rack and poses when he's done. The man,The man turns the camera to a worker dressed in casual clothing who looks like he is singing and dancing while loading dishes onto a rack and poses when he's done.,The man,gold,gets up and starts to move the backflips which is going faster.,turns the camera back to his own face and talks into it.,walks down the board to wander and skullcap canopies over the lining of the thug talking to the medium male.,lifts the man's arms working knelled with the stick.\n7768,anetv_HzSCfBOefA4,16206,The camera pans to show another man washing dishes while dancing in place. The camera,The camera pans to show another man washing dishes while dancing in place.,The camera,gold,pans over the edge of the white table.,pans around the people on a room.,returns to the first man.,changes to a scene change.\n7769,anetv_HzSCfBOefA4,16205,A man talks to the camera. The camera pans,A man talks to the camera.,The camera pans,gold,to show a man in a red recording match.,downwards to show an individual outdoors.,to show another man washing dishes while dancing in place.,to put ingredients in a bowl while the boy talks.\n7770,anetv_anO5Xhewrsw,15326,\"She plays the drums and cymbals, keeping a fast beat. She\",\"She plays the drums and cymbals, keeping a fast beat.\",She,gold,continues to bow and spin as she talks.,puffs from her nostril and puffs as she watches a selection of trees on the horizon.,bangs her head back and forth as she plays.,is shown back to do gymnastics on television magazine.\n7771,anetv_anO5Xhewrsw,15325,A little girl is sitting at a drum set with headphones on. She,A little girl is sitting at a drum set with headphones on.,She,gold,\"plays the drums and cymbals, keeping a fast beat.\",picks up a mobile phone receiver and puts it in her bag.,\"is playing the drum set, trying to get it into a wheelchair.\",ends the number and multiple other drums.\n7772,anetv_IWdJF6lBSnM,7662,A man is seen speaking to the camera while text is shown next to him. The man,A man is seen speaking to the camera while text is shown next to him.,The man,gold,continues speaking followed by logos shown next to his face.,throws the object darts around a table in a green font.,demonstrates how to play the drums and continues to play.,holds up a text next to the bike and gives up several pictures.\n7773,anetv_IWdJF6lBSnM,7663,The man continues speaking followed by logos shown next to his face. He,The man continues speaking followed by logos shown next to his face.,He,gold,moves to demonstrate for teaching to shaving someone down a path and closes around on a canvas.,intro is shown and well throughout the scene in blue so he used to get instructions.,speak to the camera again as well as words on a ski screen.,speaks more and ends by fading to black.\n7774,anetv_IWdJF6lBSnM,304,Pictures of a roof are shown in the background. Information about the roof,Pictures of a roof are shown in the background.,Information about the roof,gold,is cleaned and one man dumps silicone into a bin bin.,is shown on screen.,works in a ruin used in storage.,is going on down the street.\n7775,anetv_IWdJF6lBSnM,303,A man is wearing a red shirt. He,A man is wearing a red shirt.,He,gold,is talking into the camera.,takes a contact out of his fingernails and begins ironing the face of his shirt.,is wearing a red bob.,stands in an orange helmet.\n7776,lsmdc1014_2012-79440,15150,The coms officer spots a hydraulic malfunction preventing the gate from closing. Someone,The coms officer spots a hydraulic malfunction preventing the gate from closing.,Someone,gold,spots people on the monitor.,climbs out onto the front steps and pitches.,sits by as someone drags his friends.,smashes it forward in the glass paneled door.\n7777,lsmdc1014_2012-79440,15136,\"Someone struggles to help the injured people, who cling on just above grinding gears. Someone\",\"Someone struggles to help the injured people, who cling on just above grinding gears.\",Someone,gold,takes someone as his stomach wrestles them.,runs across the side of the dark tunnel.,rubs the cloth against the shirt as blood streaming down someone's forehead with a horrified expression.,is dragged between the wheels.\n7778,lsmdc1014_2012-79440,15145,The mountains are completely subsumed by the ocean. The monastery,The mountains are completely subsumed by the ocean.,The monastery,gold,is demolished by the wave.,paddles up alongside the vessel.,\"rapidly loosened, casting thick shadows on its path.\",whacks her with rows of parked cars.\n7779,lsmdc1014_2012-79440,15144,Someone looks up from his seat on the floor as the wind picks up. Someone,Someone looks up from his seat on the floor as the wind picks up.,Someone,gold,rings the monastery bell as the water quickly closes in.,runs steadily over the now groggy yard.,is running with the gun on his wrist and someone walks out of his inbox.,'s eyes tremble with tears.\n7780,lsmdc1014_2012-79440,15140,Someone is trapped between a wire fence and the hydraulic ceiling. Someone's drill,Someone is trapped between a wire fence and the hydraulic ceiling.,Someone's drill,gold,is past a hole in the attic.,has become tangled in the gears.,barges into his front door.,keeps held against his wall.\n7781,lsmdc1014_2012-79440,15148,\"With all his might, someone grabs his legs and hurls him into the air. Someone\",\"With all his might, someone grabs his legs and hurls him into the air.\",Someone,gold,joins a group of people in the woods.,gets to the edge.,hits his fists on a temple while the crowd claps.,plunges into the pit and falls.\n7782,lsmdc1014_2012-79440,15146,The monastery is demolished by the wave. More people,The monastery is demolished by the wave.,More people,gold,shoot and balloons up.,charge on down the river into the summit.,rush on board the ark.,come into a young man's house.\n7783,lsmdc1014_2012-79440,15137,Someone is dragged between the wheels. Someone,Someone is dragged between the wheels.,Someone,gold,\"is following him, executing several slow steps.\",looks at her bedside.,leaves his wife close to the porch.,stares up at the lowering gate.\n7784,lsmdc1014_2012-79440,15143,Flower petals blow from a bowl in the mountaintop monastery. Someone,Flower petals blow from a bowl in the mountaintop monastery.,Someone,gold,inspects the curved raised post.,regards herself in a closet at the open front door.,stands outside on the veranda holding a weapon and his arms and legs disappear around his neck.,looks up from his seat on the floor as the wind picks up.\n7785,lsmdc1014_2012-79440,15138,Someone stares up at the lowering gate. He,Someone stares up at the lowering gate.,He,gold,\"reaches up from the lower ledge, and tries to haul himself back onto the boarding platform.\",turns on the ignition and bends his broomstick in a burst of flame.,climbs along the wall crossing his arms.,grabs someone by the phone and looks to someone.\n7786,lsmdc1014_2012-79440,15141,Someone reaches out in desperation as the hydraulic wall draws near to the gate. The gears,Someone reaches out in desperation as the hydraulic wall draws near to the gate.,The gears,gold,\"become up, smashing onto a roof.\",turn back and glanced to the smaller someone.,grind into a haul.,turn against the mountainside.\n7787,lsmdc1014_2012-79440,15139,Tanzen is trapped between the geards and the rapidly decending hydraulic ceiling. Someone,Tanzen is trapped between the geards and the rapidly decending hydraulic ceiling.,Someone,gold,is trapped between a wire fence and the hydraulic ceiling.,climbs out of the ambulance and pulls off the hood with his eyes.,\"their energy, they high touch more motorbikes.\",'s eyes are focused on as the breathing can be heard footsteps on the stairs.\n7788,lsmdc1014_2012-79440,15142,Someone watches the chaos anxiously. He,Someone watches the chaos anxiously.,He,gold,\"catches up to someone again, and sensing him.\",uncovers a system that is lying on the ground.,muscles in his stomach heave as he struggles to free himself.,looks around with a digital camera.\n7789,lsmdc1014_2012-79440,15147,\"From the platform someone has hoisted someone onto the rising, but someone can't reach him. With all his might, someone\",\"From the platform someone has hoisted someone onto the rising, but someone can't reach him.\",\"With all his might, someone\",gold,grabs his legs and hurls him into the air.,\"beams down and plunges his stick back to the area of the lounge floor, using his son.\",\"raises his glasses, blinking, disbelieving.\",stares with skateboarders to the spectacle who are holding them.\n7790,lsmdc1014_2012-79440,15149,Someone plunges into the pit and falls. Two boarding officers,Someone plunges into the pit and falls.,Two boarding officers,gold,drag the protesting boy onboard.,\"chase down others in pursuit of someone, prepping his moped.\",walk out away from someone across the line.,run towards the railway line.\n7791,anetv_NyNuB328oi0,1667,A person is then seen grabbing the ball on the ground. The person catches the ball and the clip,A person is then seen grabbing the ball on the ground.,The person catches the ball and the clip,gold,changes to throwing the crash.,ends with two people assembling a tennis match.,is shown again several times.,is shown again in slow motion.\n7792,anetv_NyNuB328oi0,1666,A ball is shown flying up in the sky while a large group of people stand around. A person,A ball is shown flying up in the sky while a large group of people stand around.,A person,gold,falls over on the edge of the pool.,kicks a springboard away from the high beam.,is then seen grabbing the ball on the ground.,slides down the track and flips the pole over a young times.\n7793,anetv_qisMX7KNi7s,12259,She then closes it and turns the top. She,She then closes it and turns the top.,She,gold,takes her drink explaining how to use the drink to lower down the glass.,hangs the clothes from a wood rack to dry.,is washed by sparks.,points to the bike and puts it behind her.\n7794,anetv_qisMX7KNi7s,12258,She opens a white bin and pours water and soap into it. She then,She opens a white bin and pours water and soap into it.,She then,gold,closes it and turns the top.,picks soap into her hands in a wide torrent.,raises the lid again and puts water back on.,dives back into the tub with the water spray bottle and puts the rag on.\n7795,anetv_qisMX7KNi7s,12257,A woman is standing behind a table. She,A woman is standing behind a table.,She,gold,is throwing a ball at the machine.,is mopping the floor with a mop.,is holding a flute and a flute.,opens a white bin and pours water and soap into it.\n7796,lsmdc1042_Up_In_The_Air-88478,768,\"Someone looks at the packet and takes it. At the Hilton, someone\",Someone looks at the packet and takes it.,\"At the Hilton, someone\",gold,follows someone into the lobby.,bounces his jaw and gives a thumbs up.,adds glass and wine.,throws her seat back.\n7797,lsmdc1042_Up_In_The_Air-88478,767,\"Someone nods to someone, who picks up one of the strategy packets and hands it to someone. Someone\",\"Someone nods to someone, who picks up one of the strategy packets and hands it to someone.\",Someone,gold,looks at the packet and takes it.,wears a hardcover book on the floor and slaps it across the table.,\"watches keenly, as she continues to eat out.\",walks to the catwalk and clamps his arm over the shoulders.\n7798,lsmdc1042_Up_In_The_Air-88478,770,A woman stares as he walks past the queue and up to the desk. He,A woman stares as he walks past the queue and up to the desk.,He,gold,takes a quill and tosses it to a wall.,stands on a balcony from his party - and peers inside.,\"aims the gun aimed at someone, threatening.\",hands her a leaflet.\n7799,lsmdc1042_Up_In_The_Air-88478,769,\"At the Hilton, someone follows someone into the lobby. A woman\",\"At the Hilton, someone follows someone into the lobby.\",A woman,gold,follows close behind watching him.,hurries over to two customers.,stares as he walks past the queue and up to the desk.,stands at a mirror at a sunlit street and opens it.\n7800,lsmdc1005_Signs-4801,17691,Someone points to her hat. Someone,Someone points to her hat.,Someone,gold,mounts someone front and steps away.,jumps above the counter and carrying a bottle of iced tea.,barges from the window to his left.,enters and sits down between his children on the bed.\n7801,lsmdc1005_Signs-4801,17689,\"Later, someone, wearing a blue dressing gown, pads out of the bathroom, drying his ear with a towel. Frowning, he\",\"Later, someone, wearing a blue dressing gown, pads out of the bathroom, drying his ear with a towel.\",\"Frowning, he\",gold,\"fixes the hose against the floor, speaking to the camera.\",\"goes to a window and looks down into the empty garden, with its swings, climbing frame and picnic bench.\",\"leaves her glass with spread, moves back to brush her breast.\",\"takes off a lei, puts it in the gift bag.\"\n7802,lsmdc1005_Signs-4801,17692,Someone enters and sits down between his children on the bed. He,Someone enters and sits down between his children on the bed.,He,gold,\"backs up and climbs down the ladder of the bed, reading a book.\",hands grabs the book and someone starts to move but consistently on a roof.,wakes up and licks his lips.,peers down at someone's book.\n7803,lsmdc1005_Signs-4801,17690,\"Hearing the voice, someone raises his eyebrows. People\",\"Hearing the voice, someone raises his eyebrows.\",People,gold,heads through the street at night.,\"are sitting on a bed, wearing pointy cone shaped hats made of silver foil.\",lean against the president's elbow.,watches his parents help him.\n7804,anetv_s789WxU8PFY,7063,She pulls out the panels as well as putting sunglasses on and presents a pan of objects to the camera. She,She pulls out the panels as well as putting sunglasses on and presents a pan of objects to the camera.,She,gold,closes up with a container her life sock.,looks into the cards and places it on her other side of his glass.,continues speaking to the camera and pulls the objects out to present baked cookies.,switches herself to a finish and stands and showing sunscreen.\n7805,anetv_s789WxU8PFY,7064,She continues speaking to the camera and pulls the objects out to present baked cookies. The cookies are seen again on a tray and she,She continues speaking to the camera and pulls the objects out to present baked cookies.,The cookies are seen again on a tray and she,gold,blows them all around the floor.,shows off a array of noodles.,tries to cook a fourth forkful.,breaks them open to see.\n7806,anetv_AA46-AbEGdk,6326,\"After she gets off the bar, she goes and hugs her coach. Slow motion actions of her gymnastic moves\",\"After she gets off the bar, she goes and hugs her coach.\",Slow motion actions of her gymnastic moves,gold,are shown again and her cue in between her doing in manner followed in slow motion and to that the bowler also rolls away.,are replayed to show how she landed back on the ground from the horse bar.,and rollerblades skills are shown.,turn over and show her to form a karate move.\n7807,anetv_AA46-AbEGdk,6323,She gets on the horse bar and begins to do front flips and back flips. Then she,She gets on the horse bar and begins to do front flips and back flips.,Then she,gold,takes more neat lines.,lands on the mat in front of her bike.,does twisted backs flip while landing securely back on the horse bar.,continues with the riders watching her smile and cheers for the camera.\n7808,anetv_AA46-AbEGdk,6324,Then she does twisted backs flip while landing securely back on the horse bar. She,Then she does twisted backs flip while landing securely back on the horse bar.,She,gold,cuts it up again and proceeds down the field.,lies on the bed next to him.,shows the video to balance on the edge of the bungee.,continues her gymnastic moves and then securely jumps off the horse bar and lands on the ground.\n7809,anetv_AA46-AbEGdk,6325,\"She continues her gymnastic moves and then securely jumps off the horse bar and lands on the ground. After she gets off the bar, she\",She continues her gymnastic moves and then securely jumps off the horse bar and lands on the ground.,\"After she gets off the bar, she\",gold,jumps in her arms and dismounts from the ground.,jumps up and down her stomach to flip and grabs a spin before moving her arms in a blue circle.,flips the two around her body very before the girl walks off across the mat.,goes and hugs her coach.\n7810,anetv_AA46-AbEGdk,6322,There's a girl gymnast dressed in shiny blue leotards performing gymnastics on a horse bar in front of many spectators in a large gymnasium. She,There's a girl gymnast dressed in shiny blue leotards performing gymnastics on a horse bar in front of many spectators in a large gymnasium.,She,gold,gets on the horse bar and begins to do front flips and back flips.,first performs gymnastics on the beam as the gymnast move her arms throw the gymnast and where she stood.,is cast at the top before her friends explains her actions.,\"is then seen doing gymnastics, jumping, and landing in a blue mat and jumping up and down and playing with her baton.\"\n7811,anetv_AA46-AbEGdk,6327,Slow motion actions of her gymnastic moves are replayed to show how she landed back on the ground from the horse bar. Then the gymnast,Slow motion actions of her gymnastic moves are replayed to show how she landed back on the ground from the horse bar.,Then the gymnast,gold,raised a large weight over her head.,walks past the where the panel of judges are seated.,jumps off the horse bar on being shown again and then jumps up and runs with a stick inside.,goes on a high jump but does n't do it before she does legs.\n7812,anetv_tuhHQ-lHIs4,15245,Another older boy in blue throws a dodge ball. A little boy,Another older boy in blue throws a dodge ball.,A little boy,gold,runs to the line holding two balls and throws one of them.,jumps on the bars in the court.,walks on a court in an enclosed court.,pushes the puck with the strikes and alternates shooting arrows at time to the boys.\n7813,anetv_tuhHQ-lHIs4,15241,A girl flips across the gym. A young boy,A girl flips across the gym.,A young boy,gold,bounces a dodge ball.,finishes picking up weights from her stomach in a gym.,jumps off a toy.,walks up a jumping hills and falls down on the ground.\n7814,anetv_tuhHQ-lHIs4,15236,A group of kids poses with the arms in the air. Another group of kids,A group of kids poses with the arms in the air.,Another group of kids,gold,are shown posing after the event.,\"are five boys standing on stage, then beside a child in white.\",poses holding up peace signs.,\"holding balls holding signs, and a girl squatting before jumping jumps over a bar measured by two children.\"\n7815,anetv_tuhHQ-lHIs4,15242,A young boy bounces a dodge ball. A group of kids in blue all,A young boy bounces a dodge ball.,A group of kids in blue all,gold,run toward the center of the gym.,fall from the court.,hit one ball hard.,start to catch a pinata close to it.\n7816,anetv_tuhHQ-lHIs4,15250,A boy in green throws the ball and the blue team runs to throw several balls back. Another boy and girl,A boy in green throws the ball and the blue team runs to throw several balls back.,Another boy and girl,gold,end up practicing with one of the red fans then.,start chase the ball back and forth over the net.,\"finish throwing their turns in the sand leap, then also wearing white uniforms, are playing golf and shirts.\",run and throw a ball at the same time.\n7817,anetv_tuhHQ-lHIs4,15243,A group of kids in blue all run toward the center of the gym. A young boy,A group of kids in blue all run toward the center of the gym.,A young boy,gold,scores a high while the man prepares to jump on their second partner who throw it straight towards the goalie.,helps his daughter up to dance.,is in a brick gym doing gymnastics trick.,aims a dodge ball at a group of kids on the opposite side of the gym and throws the ball hitting one of them.\n7818,anetv_tuhHQ-lHIs4,15240,A group of kids stands on a line in a gym. A girl,A group of kids stands on a line in a gym.,A girl,gold,swings forward down an alley in a playground.,flips across the gym.,is brushing a horse as she speaks to the camera.,climbs into a raft.\n7819,anetv_tuhHQ-lHIs4,15251,A boy in white throws a ball. A group of adults,A boy in white throws a ball.,A group of adults,gold,sits next to them.,perform a dance club.,plays in the background.,stands on the line on the gym floor.\n7820,anetv_tuhHQ-lHIs4,15238,A third group of kids poses with their arms around each other. A fourth group of kids,A third group of kids poses with their arms around each other.,A fourth group of kids,gold,slide onto the water boards.,takes off of jackets and show title screens.,on a line stand by front of the group after the game then begin pulling her tie.,poses with their mouths open.\n7821,anetv_tuhHQ-lHIs4,15237,Another group of kids poses holding up peace signs. A third group of kids,Another group of kids poses holding up peace signs.,A third group of kids,gold,is chasing a boy.,holding a sword with some red players drink.,perform a flip and then dances with people.,poses with their arms around each other.\n7822,anetv_tuhHQ-lHIs4,15244,A young boy in blue celebrates. Another older boy in blue,A young boy in blue celebrates.,Another older boy in blue,gold,throws a dodge ball.,throws his saxophone up in the air as the president waves.,walks down the beach and picks up the teens who not seem to be pushing.,walks around and bends while a teen continues hitting and brushing himself.\n7823,anetv_tuhHQ-lHIs4,15252,The adults play do0dge ball. A group of kids and adults,The adults play do0dge ball.,A group of kids and adults,gold,play in a classroom.,hold over a red ball.,play soccer in a club area.,hold up trophy's and wave.\n7824,anetv_tuhHQ-lHIs4,15247,A boy in pink throws a ball. A young boy in white dips down and a ball,A boy in pink throws a ball.,A young boy in white dips down and a ball,gold,flies over his head.,wraps in a ball.,tries to raise the goal.,attached to the board.\n7825,anetv_tuhHQ-lHIs4,15248,Several kids in white celebrate. A group of kids,Several kids in white celebrate.,A group of kids,gold,runs toward the center of the gym.,watch in front of a yard fence.,runs with the field before many different families.,slide down a padded slide on the sand.\n7826,anetv_tuhHQ-lHIs4,15249,The white team plays and a very young player throws the ball. A boy in green throws the ball and the blue team,The white team plays and a very young player throws the ball.,A boy in green throws the ball and the blue team,gold,hits the ball at a racket.,runs to throw several balls back.,states the ball again.,come behind him to take the darts.\n7827,anetv_y1jyeWW-G4E,1966,A little girl is sitting in sand where she has been trying to make a sand castle. Adults and another girl,A little girl is sitting in sand where she has been trying to make a sand castle.,Adults and another girl,gold,are shown on a snowboard together.,are do some things going across a table in front of them.,laugh as they try to build something in the sand.,sit against it as well as manages to play fighting.\n7828,anetv_1VDNFR3vQR4,6737,\"The men square up and they begin hitting and kicking at one another with brief moments of stopping in between their punches and their kicks. One of the guys kicks the other one too hard and the one who got kicked gets mad, rips his gloves off of his hands, walks away and\",The men square up and they begin hitting and kicking at one another with brief moments of stopping in between their punches and their kicks.,\"One of the guys kicks the other one too hard and the one who got kicked gets mad, rips his gloves off of his hands, walks away and\",gold,\"keeps his right on the biker's front, as he circles it with his stick.\",continues playing with throwing balls.,angrily throws his gloves.,puts his winning pistol in the briefcase of the same young man with two white people playing shuffle - his hands in the air and\n7829,anetv_1VDNFR3vQR4,6736,There are two guys standing on a large blue mat in a gym and they are both wearing shorts and a pair of boxing gloves. The men square up and they,There are two guys standing on a large blue mat in a gym and they are both wearing shorts and a pair of boxing gloves.,The men square up and they,gold,begin hitting and kicking at one another with brief moments of stopping in between their punches and their kicks.,go pretty big and shaggy.,are begin and elaborate contestants cheer.,are preparing to run to see each other wearing flight suits like shoes.\n7830,anetv_-Sp-gOEGy2o,10295,Wildlife Biologist Bryon Shissler sits outside by a campfire pit and speaks to the camera. He,Wildlife Biologist Bryon Shissler sits outside by a campfire pit and speaks to the camera.,He,gold,stands around a big hole in the woods.,builds and lights a fire in the pit using the fiair device.,revealing a range which is attached to the forest that sits beneath it.,puts a container to a search holding a pot and pulls it away.\n7831,anetv_-Sp-gOEGy2o,10294,How to start a campfire with FiAir appears on screen. Wildlife Biologist Bryon Shissler,How to start a campfire with FiAir appears on screen.,Wildlife Biologist Bryon Shissler,gold,is playing nearby.,sits outside by a campfire pit and speaks to the camera.,is shown on the balance scoreboard showing an artificial rock.,appear on the surface of a lake.\n7832,lsmdc0027_The_Big_Lebowski-63206,10071,The Stranger's eyes crinkle merrily. He,The Stranger's eyes crinkle merrily.,He,gold,\"glares at the dog, then starts up the side of the house.\",throws his jacket on his trolley and backs off.,shakes his head and walks over to his brother who sits at a bicycle.,\"gives his head a shake of appreciation, then looks into the camera.\"\n7833,lsmdc1014_2012-79312,13723,Someone breathes in then grins. The grin,Someone breathes in then grins.,The grin,gold,crosses his face as he gets in from the seat.,falls on her face as she walks off the stage and her lover claps her hands.,is vanishing from his face as the plane starts to go down in a steep incline rapidly gaining speed.,blows back at him.\n7834,lsmdc1014_2012-79312,13725,It falls into an abyss and explodes. Someone,It falls into an abyss and explodes.,Someone,gold,is in a flash on tv.,is hurled across the floor.,bares the cats as it bears his fangs.,looks skywards when he hears the helicopter.\n7835,lsmdc1014_2012-79312,13722,The plane comes perilously close to the drop. Someone,The plane comes perilously close to the drop.,Someone,gold,points to someone and sneers at her.,breathes in then grins.,\"takes off, eyeing it shrewdly.\",blocks someone's hand.\n7836,lsmdc1014_2012-79312,13727,Then someone starts to wave. The Chinese crewmen on the helicopter,Then someone starts to wave.,The Chinese crewmen on the helicopter,gold,are peddling up and down in the background.,see the group down below.,\", carry too people surf.\",do all the equipment in their jump.\n7837,lsmdc1014_2012-79312,13726,Someone looks skywards when he hears the helicopter. A fleet of helicopters,Someone looks skywards when he hears the helicopter.,A fleet of helicopters,gold,swoops down in the headwaiter.,\"speeds, then strikes it before the other.\",carries wild animals in suspended harnesses.,follows someone to an electrical deck.\n7838,lsmdc1014_2012-79312,13724,The grin is vanishing from his face as the plane starts to go down in a steep incline rapidly gaining speed. It,The grin is vanishing from his face as the plane starts to go down in a steep incline rapidly gaining speed.,It,gold,wafts through the man's stomach and pull him out of the fall of the lifeboat.,falls from his grasp.,falls into an abyss and explodes.,stands on his trousers tightly.\n7839,lsmdc1014_2012-79312,13721,It shoots down the ramp and bumps on the glacier. As the plane continues landing the cars,It shoots down the ramp and bumps on the glacier.,As the plane continues landing the cars,gold,are tossed out of the cargo door.,pedal to the water.,hurry through a desert with high holes created and bumper cars quickly explode.,level him from its below whip.\n7840,lsmdc1014_2012-79312,13720,Someone puts the car into the gear. It,Someone puts the car into the gear.,It,gold,draws someone from the house.,pushes them up and pulls to a stop.,fits that it is lit by suspenders.,shoots down the ramp and bumps on the glacier.\n7841,anetv_s43eZJ0hy44,17952,They are throwing a white ball to each other in a game of dodgeball. The kids,They are throwing a white ball to each other in a game of dodgeball.,The kids,gold,\"run, trying not to get hit by the ball.\",go back and forth on the beach in front of the audience.,continue to start with the ball.,continue kicking each other as they hit.\n7842,anetv_s43eZJ0hy44,13767,A number of children play a dodgeball type game on a grassy field. One of the children,A number of children play a dodgeball type game on a grassy field.,One of the children,gold,falls down while going after the ball.,are pushing the green puck and the little boy hops pass.,stands in the background while the athlete continues playing croquet holds her hands.,is the only boy helping the boy while someone stands with a big man.\n7843,anetv_s43eZJ0hy44,13768,One of the children falls down while going after the ball. The camera,One of the children falls down while going after the ball.,The camera,gold,moves upside down fades to a dart and is pinned to the side.,hit the player with the team trying to roll the ball.,pans downwards to show nearby grass.,shows a replay of sidewalk crossing.\n7844,anetv_s43eZJ0hy44,17951,A group of children are playing in a field. They,A group of children are playing in a field.,They,gold,are preparing to play a game of croquette.,are playing together on a curling rink.,\"are getting other girls riding bikes, also carrying black dogs.\",are throwing a white ball to each other in a game of dodgeball.\n7845,anetv_Qzewn-dGdOI,14634,The bull hits him and knocks him to the ground. People,The bull hits him and knocks him to the ground.,People,gold,carry the man off the arena.,are congratulated by the bull.,get whipped away again to follow a man.,push up back him.\n7846,anetv_Qzewn-dGdOI,14633,A man holding a red cape is standing in front of a bull. The bull,A man holding a red cape is standing in front of a bull.,The bull,gold,jumps over a tree and little.,runs to a cow and leads him towards the rocky slope.,runs to a bull and sends the bull to the ground.,hits him and knocks him to the ground.\n7847,lsmdc3056_PUBLIC_ENEMIES-3774,12055,\"Leaning forward, he faces her with a knitted brow. Someone\",\"Leaning forward, he faces her with a knitted brow.\",Someone,gold,comes striding down the cliff stairs.,\"swallows, blinks her glistening eyes, then gives a stony nod.\",glances at waist - length hair worriedly.,glances uncomfortably at her husband.\n7848,lsmdc3056_PUBLIC_ENEMIES-3774,12053,\"In the visiting room, the door opens. Someone\",\"In the visiting room, the door opens.\",Someone,gold,opens the door and someone steps in.,opens the door and sees someone straddling them.,stands as someone enters.,looks out a window.\n7849,lsmdc3056_PUBLIC_ENEMIES-3774,12054,Someone stands as someone enters. She,Someone stands as someone enters.,She,gold,run to a bus.,\"stares guardedly at him, then takes the seat facing his.\",shows a funeral of someone and her parents waiting to decorate the house for someone.,punches a guard and knocks.\n7850,lsmdc3056_PUBLIC_ENEMIES-3774,12056,Someone opens a gold cigarette case and briefly thumbs the contents. He,Someone opens a gold cigarette case and briefly thumbs the contents.,He,gold,eyes the cup and starts to speak.,enters and opens the door.,\"turns the case, offering the grieving woman a cigarette.\",sets one hand on the side freezer.\n7851,anetv_I5RVQUYA1w4,16183,The two girls hug each other and the girl who's wearing the blue dress slightly pushes past the other girl. Then she,The two girls hug each other and the girl who's wearing the blue dress slightly pushes past the other girl.,Then she,gold,takes her baton out of her skirt and throws someone back over the stairs.,\"puts her dress down on the table again and pushes her stick out, and the boy laughs in kind.\",walks away again and talks back to the camera while holding a guitar on her right hand.,runs back to her and hugs her and runs away from her again.\n7852,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86814,8563,Her aged mother meets her eye. Someone,Her aged mother meets her eye.,Someone,gold,\"stares, barely knowing sips from her hair.\",sits back and picks up the diary.,\"watches her final visitors, who clutches his knee.\",enters the stairwell and joins mr.\n7853,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93748,5214,He studies the Golden Ball. People both,He studies the Golden Ball.,People both,gold,\"look expectant, then disappointed.\",stare in the direction he is over.,climb onto the tablecloth.,look off at the camera.\n7854,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93748,5212,He unwraps the Golden Ball. The Minister,He unwraps the Golden Ball.,The Minister,gold,mix a quick smirk.,holds it out in a cloth.,hikes away toward him.,joins him on a rooftop with a plate of lemon slices.\n7855,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93748,5213,He tentatively takes the Snitch. He,He tentatively takes the Snitch.,He,gold,studies the golden ball.,points to the automaton's head and folds it.,\"sits down on the box, frowning.\",straps its headlights into the headlights of the patrol car.\n7856,lsmdc3029_GREEN_ZONE-13502,16529,\"Now our view orbits a massive bust of Saddam Hussein wearing a helmet. Inside, someone\",Now our view orbits a massive bust of Saddam Hussein wearing a helmet.,\"Inside, someone\",gold,throws the dazzling photo at machine gun.,works frantically through surveillance debris.,wakes and wakes a little then thrusts his head toward us.,answers his phone while passing through a metal detector.\n7857,lsmdc1026_Legion-5584,231,\"The sky is filled with dense, gray clouds. He\",\"The sky is filled with dense, gray clouds.\",He,gold,cross with chain - link bridge.,eyes the heat and registering.,is stacked together around the tops of the day.,flinches at the sound and looks out at a bank of gray mist.\n7858,lsmdc1026_Legion-5584,229,\"Someone stands on the roof, leaning against the wall. He\",\"Someone stands on the roof, leaning against the wall.\",He,gold,drinks beer from a can and puffs on a cigarette.,watches a black bounce on the ground.,dives off the curb and lands on the pavement.,\"opens to the other side of the building, pulls her into someone's room.\"\n7859,lsmdc1026_Legion-5584,230,He drinks beer from a can and puffs on a cigarette. The sky,He drinks beer from a can and puffs on a cigarette.,The sky,gold,\"surroundings dark - grey mist, from far above.\",\"is filled with dense, gray clouds.\",\"is gray, and green.\",walks out of the landing and wraps up in a topcoat to night.\n7860,lsmdc1026_Legion-5584,228,Someone leaves a thoughtful - looking someone. Someone,Someone leaves a thoughtful - looking someone.,Someone,gold,cuts into the sheet as someone watches as a guard opens the door.,drive through the closing doors and into town carrying three bags.,slams the cleanser someone enters.,\"stands on the roof, leaning against the wall.\"\n7861,lsmdc0027_The_Big_Lebowski-63210,400,He brushes his hat brim with a fingertip as we begin to pull back. As we pull away The Stranger,He brushes his hat brim with a fingertip as we begin to pull back.,As we pull away The Stranger,gold,swivels in to the bar.,slowly picks up their shoes again.,reflects a gren rope traveling along the way to a restaurant.,is held up in the midst of those flickering.\n7862,lsmdc1058_The_Damned_united-98379,17159,Someone keeps his wary eye fixed on the players. People,Someone keeps his wary eye fixed on the players.,People,gold,are studying the next picture.,stroll towards the team milling about on the training pitch.,walk across the back of the cafe.,nods as the truck slows to a stop.\n7863,lsmdc1058_The_Damned_united-98379,17158,Someone looks apprehensive as he watches the team warm up. Someone,Someone looks apprehensive as he watches the team warm up.,Someone,gold,keeps his wary eye fixed on the players.,comes in from the cliff's edge.,\"and someone appear raincoats to look as a waitress, blonde woman, walks up to them.\",\"backs away, leaving only his red dyson bag down behind someone.\"\n7864,lsmdc1027_Les_Miserables-6375,19423,\"Someone gives him cover with his musket. Behind the barricade, someone\",Someone gives him cover with his musket.,\"Behind the barricade, someone\",gold,peers to the outside of the school huts.,watches his dark - haired boss peeking around.,eyes a young hobbit biker standing astride his horse.,is laid on the ground.\n7865,lsmdc1027_Les_Miserables-6375,19421,\"Someone is shot again and flops on his back, dead. One of the students\",\"Someone is shot again and flops on his back, dead.\",One of the students,gold,tries to defend himself.,goes to pick him up and carries him back behind the barricade.,comes over for someone 'limp body.,distributes the long line of shadows on his palm as if in a trance.\n7866,lsmdc1027_Les_Miserables-6375,19422,One of the students goes to pick him up and carries him back behind the barricade. Someone,One of the students goes to pick him up and carries him back behind the barricade.,Someone,gold,claps for them to join someone 'applause.,sips his beer then cocks his own wand up again.,gives him cover with his musket.,is looking at her monstrous father as he goes.\n7867,anetv_1bcm3LHTI_w,11785,\"A man is now outdoors, sits on a wooden box, and begins tapping his fingers onto the box and bouncing his feet on the ground. Another man who looks like the first man comes out of a door and sits on the chair outdoor near the first man and he\",\"A man is now outdoors, sits on a wooden box, and begins tapping his fingers onto the box and bouncing his feet on the ground.\",Another man who looks like the first man comes out of a door and sits on the chair outdoor near the first man and he,gold,starts to distance himself.,goes out some more.,begins hitting a bongo.,lets it go and walk some more.\n7868,anetv_1bcm3LHTI_w,11786,\"Another man who looks like the first man comes out of a door and sits on the chair outdoor near the first man and he begins hitting a bongo. A third man who looks like the two previous men before him, come out of a door and sit on the last chair and he\",Another man who looks like the first man comes out of a door and sits on the chair outdoor near the first man and he begins hitting a bongo.,\"A third man who looks like the two previous men before him, come out of a door and sit on the last chair and he\",gold,begins putting it back to the side of the rack.,is playing in a succession of enthusiasm.,plays on his bongo.,spreads the floor down.\n7869,lsmdc1048_Gran_Torino-92104,10057,A Latino guy has a revolver. Someone,A Latino guy has a revolver.,Someone,gold,wields a machine pistol.,pauses completely and shatters ice on ice.,runs the same time to a blue cotton.,unfolds the four - foot wall.\n7870,lsmdc1048_Gran_Torino-92104,10054,A large black sedan with side exhaust pipes rolls up. Two heavy - duty Latino guys,A large black sedan with side exhaust pipes rolls up.,Two heavy - duty Latino guys,gold,lean out of the window.,throw the white bands over his head.,walk through the street entrance.,tower them to the sidelines.\n7871,lsmdc1048_Gran_Torino-92104,10056,\"Someone drives down the road and stops beside the black sedan. He and the guy he was talking to, someone,\",Someone drives down the road and stops beside the black sedan.,\"He and the guy he was talking to, someone,\",gold,carries the pole to his boat.,has wailing on him.,is pushing it in a city called rivendell.,lean out of the window.\n7872,lsmdc1048_Gran_Torino-92104,10055,\"A white car with five South Asian guys in it stops up ahead. The driver, someone,\",A white car with five South Asian guys in it stops up ahead.,\"The driver, someone,\",gold,gets out of the car and looks back at the driver.,\"looks down at the big screen of buckingham palace, which's with many large lights, mounted lights.\",finds someone inside the black car.,has long black hair and wears a bandanna.\n7873,anetv_MO37MVz4uuA,9028,\"The woman is back in the room talking, then appears back in the shower with a razor and shaving her legs. The woman is talking in the room again and her black cat goes up to her and the woman\",\"The woman is back in the room talking, then appears back in the shower with a razor and shaving her legs.\",The woman is talking in the room again and her black cat goes up to her and the woman,gold,continues to talk and ends with a clip of her carefully getting out of the bathtub.,grabs her hair and charity the leg action.,tries a change of pink goo.,starts shaving one woman's leg.\n7874,anetv_MO37MVz4uuA,9024,A brunette woman is sitting in a room and has her left arm raised and is looking at her armpit. The woman puts her arm down and talks into the camera and a black cat,A brunette woman is sitting in a room and has her left arm raised and is looking at her armpit.,The woman puts her arm down and talks into the camera and a black cat,gold,appears in the end and is seen talking about what she has done.,is now playing in the beginning and is sitting in who is using the needles pad.,climbs on furniture behind her while she's still talking.,is sitting in a chair in front of her video camera.\n7875,anetv_MO37MVz4uuA,9027,\"The woman is now standing upright and has a lot of shaving cream on her left armpit and falls, then she's standing with shaving cream all over her and then claps her hands. The woman\",\"The woman is now standing upright and has a lot of shaving cream on her left armpit and falls, then she's standing with shaving cream all over her and then claps her hands.\",The woman,gold,finishes drying her hair with a rag and moves lotion to show the final clip of her attachment.,\"is back in the room talking, then appears back in the shower with a razor and shaving her legs.\",\"pierces a woman's right eye thoroughly with her teeth again then, before her done, is now standing for a new spot.\",is seen giving another camera a large picture while zooming in on her face as she then shows his eye tattoo.\n7876,anetv_MO37MVz4uuA,9025,The woman puts her arm down and talks into the camera and a black cat climbs on furniture behind her while she's still talking. The woman is now standing in her shower fully clothed and she,The woman puts her arm down and talks into the camera and a black cat climbs on furniture behind her while she's still talking.,The woman is now standing in her shower fully clothed and she,gold,\"rocks her hands and legs and sheets, and rubbing the noses of this face.\",turns her back onto pushing a large water slide down her body in a circular motion.,'s applying a lot of shaving cream to her right leg that's propped on a wall.,begins performing her form a spin style as a makeup artist talks while she sits.\n7877,anetv_MO37MVz4uuA,9026,\"The woman is now standing in her shower fully clothed and she's applying a lot of shaving cream to her right leg that's propped on a wall. The woman is now standing upright and has a lot of shaving cream on her left armpit and falls, then she\",The woman is now standing in her shower fully clothed and she's applying a lot of shaving cream to her right leg that's propped on a wall.,\"The woman is now standing upright and has a lot of shaving cream on her left armpit and falls, then she\",gold,begins to shave her lower legs pink.,puts the ring on to it and rests her foot on the lap.,'s standing with shaving cream all over her and then claps her hands.,walks back to her camera.\n7878,lsmdc1042_Up_In_The_Air-88870,8759,The manager holds out his hand. Someone,The manager holds out his hand.,Someone,gold,sets him down in the hallway.,\"clicks the fingers of someone, who looks up.\",shuts the door then quickly walks out of the corridor.,\"stands sharply, shakes it and smiles.\"\n7879,lsmdc1042_Up_In_The_Air-88870,8761,He releases his grip on the handle of his suitcase. Sadness,He releases his grip on the handle of his suitcase.,Sadness,gold,\"tosses down the disc at the ninety degree angle, then sets it aside and spilling fire.\",\"gets changed against his leather jacket, his hands polishing the top surface of the basin.\",is etched across his face.,steps up to the table.\n7880,lsmdc1042_Up_In_The_Air-88870,8757,\"Someone looks down, a troubled frown etched across his brow. In an office, a manager\",\"Someone looks down, a troubled frown etched across his brow.\",\"In an office, a manager\",gold,looks at someone's resume.,\"reads nearby, approaches a model.\",walks up to a podium.,feeds the epees mechanism.\n7881,lsmdc1042_Up_In_The_Air-88870,8758,\"Someone smiles, slightly embarrassed. The manager\",\"Someone smiles, slightly embarrassed.\",The manager,gold,turns and walks back and several copies of balmoral are already coming.,\"begins dancing with her the guests, posing for photographs.\",faces aunt someone between sister and daughter.,holds out his hand.\n7882,lsmdc1042_Up_In_The_Air-88870,8760,\"As people come and go, someone stands staring at the various destinations on the boards. He\",\"As people come and go, someone stands staring at the various destinations on the boards.\",He,gold,takes it behind a bush.,\"notices someone through the lobby, holding over a handgun at the small kitchen.\",releases his grip on the handle of his suitcase.,\"picks up the thick notebook, notebook pages and shows them to someone.\"\n7883,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72352,7031,\"Both girls watch him leave. In his room, someone\",Both girls watch him leave.,\"In his room, someone\",gold,lies down heavily on the floor.,sits at a table with the book open in front of him.,shines his flashlight around the room.,approaches a bespectacled man.\n7884,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72352,7029,Someone closes it and gets up. Someone,Someone closes it and gets up.,Someone,gold,turns on the cold and stares.,speaks into his wedding ring.,stopped stiff puffing on the flame.,grabs it from him.\n7885,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72352,7030,Someone grabs it from him. People,Someone grabs it from him.,People,gold,fall into the cage.,stares after the beast who uses it to fall on the ground.,stare at someone who shifts awkwardly.,walk toward the garage.\n7886,lsmdc1048_Gran_Torino-92388,1034,She goes to get one. Someone,She goes to get one.,Someone,gold,\"picks up the textbook, walks towards the house, looks out at the door.\",looks over at someone.,catches her in a series clubs challenge.,lowers the gun and sits down again.\n7887,lsmdc1048_Gran_Torino-92388,1035,\"Someone looks over at someone. Later, he\",Someone looks over at someone.,\"Later, he\",gold,sets a table on a phone and reads.,opens the door to find someone standing beside him.,is being pulled by an airplane.,watches someone working in the garden.\n7888,anetv_DgcoDX3HbKY,16159,She mixes in more ingredients and continues cooking. She then,She mixes in more ingredients and continues cooking.,She then,gold,puts it on a plate and serves it to the camera man.,mixes various ingredients into the saucepan and mixes them all together in a bowl.,blows liquid flour onto the plate by using it into a mixer.,mixes more ingredients in and begins teaching them to cook.\n7889,anetv_DgcoDX3HbKY,287,A large man is seen holding two cooking tools in his hand and spinning around food on a pan. The person then,A large man is seen holding two cooking tools in his hand and spinning around food on a pan.,The person then,gold,begins mixing the fruit with more cream as he mixes meat the food.,takes several pans and begins putting them on his leg while standing around.,begins the man takes off a plate of bread with a stick and out.,serves the food onto a plate and passes it onto a person's hand.\n7890,anetv_DgcoDX3HbKY,16158,A woman is seen spinning around food in a hot pan. She,A woman is seen spinning around food in a hot pan.,She,gold,continues to throw it all around the girl while the girl assists her in the room.,begins walking along from behind and driving him in the water.,mixes in more ingredients and continues cooking.,continues wiping down the tray and then stopping to cook her food.\n7891,anetv_13Y47Uk_w1o,10272,Other people are shown using the same contraptions. They,Other people are shown using the same contraptions.,They,gold,bounce around sidewalks in public.,do jump roping by a few different parts of the area.,are all along the field watching from writing.,continue to fight over and over different steps.\n7892,anetv_13Y47Uk_w1o,14425,They are having jumping and walking all down the street very casually having a great time. It,They are having jumping and walking all down the street very casually having a great time.,It,gold,is too hard to just keep straight.,is a man doing the attacking thing.,'s a gathering of people that are all bouncing around using these contraptions.,uses their elbow and power to get them as they run.\n7893,anetv_13Y47Uk_w1o,10271,A man is bouncing outside on the concrete. Other people,A man is bouncing outside on the concrete.,Other people,gold,are walking in a parking lot and the man all turns in the background.,\"are touching on around, fixing to ski.\",are running back on jumping ropes.,are shown using the same contraptions.\n7894,anetv_13Y47Uk_w1o,10273,They bounce around sidewalks in public. They,They bounce around sidewalks in public.,They,gold,use poles throughout a rodeo.,jump around on and off stairs.,continue riding down the sand.,are holding army sized kids watching.\n7895,anetv_Dys_KC7uIzs,14736,Several men are shown bowling while an audience watches on. The bowlers,Several men are shown bowling while an audience watches on.,The bowlers,gold,turn to the players to kick the ball around.,are shown practicing several other moves.,\"bowl in turn, one at a time.\",are shown throwing darts at the board.\n7896,anetv_Dys_KC7uIzs,14737,\"The bowlers bowl in turn, one at a time. The players and audience\",\"The bowlers bowl in turn, one at a time.\",The players and audience,gold,festival gathered for a long time.,cheer one of the players.,\"take their turn, cheered and alternate each escorted.\",begin to rotate forwards.\n7897,lsmdc3078_THE_WATCH-36110,10091,He lifts the top off another one and grins. The three guys,He lifts the top off another one and grins.,The three guys,gold,stroke a golf ball together.,squeeze together on the couch.,climb in the back of the sedan.,kick at each other over and over at the end.\n7898,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5036,\"His skeletal hands reach for someone's throat, choking her. Someone\",\"His skeletal hands reach for someone's throat, choking her.\",Someone,gold,leans down in her chair.,\"stares after her, her face buried in her headrest.\",rushes forward and pushes someone away.,\"stands near the rock, people watching.\"\n7899,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5035,His skin turns brown and leathery and stretches across his bones until it splits. His skeletal hands,His skin turns brown and leathery and stretches across his bones until it splits.,His skeletal hands,gold,is clasped behind his back.,hover in front of someone's chin.,\"reach for someone's throat, choking her.\",slide down his broad shoulders as he slides down his dark - tied coat.\n7900,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5030,Someone instantly takes it from her. Someone,Someone instantly takes it from her.,Someone,gold,strides up to her.,\"shoots at her, as hard as being told.\",rushes to the well and fills the goblet with water.,\"watches her go, then walks in, leaving someone lying alone, watching the birds.\"\n7901,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5032,\"Then, someone's entire body starts to convulse. He\",\"Then, someone's entire body starts to convulse.\",He,gold,stares into space as it slowly lowers to the floor.,sweeps his left hand over someone's body.,pounds the cylinder past.,grabs his stomach and turns toward someone.\n7902,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5031,Someone rushes to the well and fills the goblet with water. Someone,Someone rushes to the well and fills the goblet with water.,Someone,gold,stands and faces someone.,puts the weight on his head.,drinks from the goblet.,rises from his chair.\n7903,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5033,He grabs his stomach and turns toward someone. He,He grabs his stomach and turns toward someone.,He,gold,leaps towards a parked truck and faces a cop.,stands up and faces the sleeping woman.,\"is there, engaged in commentary?\",starts to age - - fast!\n7904,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5034,He starts to age - - fast! His skin,He starts to age - - fast!,His skin,gold,\"contains black powder, dusts and blue flower.\",is one strong vertical.,turns brown and leathery and stretches across his bones until it splits.,\"is becoming removed, his face staring into the darkness.\"\n7905,lsmdc0050_Indiana_Jones_and_the_last_crusade-70765,5029,\"Someone chooses a cup - - a solid gold, emerald encrusted goblet. Someone\",\"Someone chooses a cup - - a solid gold, emerald encrusted goblet.\",Someone,gold,is illuminated from the chessboard.,\"reflects, then makes a fist.\",instantly takes it from her.,lowers a zippo back into his hand and makes a fire.\n7906,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-111,4857,Someone steps out as someone and kicks the duffel aside with one of his orthopedic shoes. The two,Someone steps out as someone and kicks the duffel aside with one of his orthopedic shoes.,The two,gold,would - be ladies pick up their bags and shuffle through a gate up some front steps.,javelins absently off someone and his men as he continues to play the drums.,outlaws hurry over the docks as someone clings to the mesh.,are drawn in their boxers.\n7907,anetv_AjSFqqfzml0,1967,We sees a lady shave her legs with a pink razor. We then,We sees a lady shave her legs with a pink razor.,We then,gold,see the tattoo again by the collar of her coat.,see her tattoo being close and then 7.,see the ending title screen to show the bike.,see the ending screen play button.\n7908,anetv_fgEMvRrOCRI,17919,They are part of a team that is playing in the large stadium with several spectators. The video,They are part of a team that is playing in the large stadium with several spectators.,The video,gold,stops and the man then starts with the game but the owner gets up and runs watching.,is demonstrating how to catch the ball and scoop it up with the stick.,ends with a musical record shown on the screen and the two continue smiling.,ends with the closing of the screen.\n7909,anetv_fgEMvRrOCRI,17920,The video is demonstrating how to catch the ball and scoop it up with the stick. It also,The video is demonstrating how to catch the ball and scoop it up with the stick.,It also,gold,demonstrates how to balance the ball on the stick as the player runs.,contains more than the good and far it has be really good for it.,bounces back and forth and lands on the ground.,gets a second crease and it's not to see how it is only trimmed.\n7910,anetv_fgEMvRrOCRI,17918,\"There are players, one in yellow and the other in red hurling in an open air stadium. They\",\"There are players, one in yellow and the other in red hurling in an open air stadium.\",They,gold,moves downwards to swing and began jump hitting the ball to measure the distance.,game is not another shepherd game.,compete in a game of soccer in a net.,are part of a team that is playing in the large stadium with several spectators.\n7911,anetv_fgEMvRrOCRI,17922,The players are showing all the steps in the tutorial where the one of the player shoots the ball bravely for a point. There,The players are showing all the steps in the tutorial where the one of the player shoots the ball bravely for a point.,There,gold,younger also gets people balls down some his puck.,in the board of his team.,'s a player in a blue and white uniform shooting the ball for a point and scoring a goal.,win walks over to help her too.\n7912,anetv_fgEMvRrOCRI,17921,It also demonstrates how to balance the ball on the stick as the player runs. The players,It also demonstrates how to balance the ball on the stick as the player runs.,The players,gold,start doing other karate moves.,are making goals and goals.,hit the ball together and one player hits the puck and puck across the ice and into the other player.,are showing all the steps in the tutorial where the one of the player shoots the ball bravely for a point.\n7913,anetv_6rMF2jWbeUQ,10805,She then puts her shoes on with another man's help while still smiling to the camera. She,She then puts her shoes on with another man's help while still smiling to the camera.,She,gold,wheels herself away and claps in the end.,finishes the video while looking back into the camera.,moves a hand over the general smiling face.,performs several sit ups on the machine.\n7914,anetv_6rMF2jWbeUQ,10804,A woman is seen sitting in a wheelchair looking to the camera and wheels herself over to a side. She then,A woman is seen sitting in a wheelchair looking to the camera and wheels herself over to a side.,She then,gold,begins washing the car a few times and grabbing a rag and starts cleaning the car.,pans around on the tire as well as speaking to the camera and pointing to the camera adjusting her body rim.,puts her shoes on with another man's help while still smiling to the camera.,puts the settings over the wheel and brushes the bike with her hands and feet.\n7915,anetv__aEA1UuTai8,11858,She does forward flips on the beam. She,She does forward flips on the beam.,She,gold,jumps and pushes around it several times.,watches as other girls do the same.,does spin more kick and dismounts and lands on the mat.,dismounts and lands again.\n7916,anetv__aEA1UuTai8,11857,A girl is standing on top of a balance beam. She,A girl is standing on top of a balance beam.,She,gold,stares back and forth on the beam above her foot.,\"does a flip, flipping and throwing her dismount in the air.\",does forward flips on the beam.,jumps up and down in a workout mat.\n7917,anetv_YD7pb5-CZdI,14023,An athlete is standing on a field. He,An athlete is standing on a field.,He,gold,is holding a large steel ball.,does several tricks on small cones.,runs down a track and dives into a field.,begins playing the instrument with his hands.\n7918,anetv_YD7pb5-CZdI,14024,He is holding a large steel ball. He,He is holding a large steel ball.,He,gold,begins to add twigs on it all in a frenzy.,instructs the man to sit around on the bar.,\"is now shown, played by clothes, and a guy with sunglasses and another blanket, the half is covered by a blanket.\",\"spins and throws the ball, then walks around the track waiting for his next turn.\"\n7919,anetv_lfH_S2LTEXA,4688,A man wearing a blue t - shirt describes cliff climbing. The cliff climber,A man wearing a blue t - shirt describes cliff climbing.,The cliff climber,gold,is behind a high fence with a large bag and a child.,\"uses the stick to hit the rock, but the man resemble climbing.\",gets up from the tower and sets amber aside.,demonstrates some climbing moves on a climbing wall.\n7920,anetv_lfH_S2LTEXA,4273,\"He climbs a fake rock wall, jumping onto the rocks on the ceiling. He\",\"He climbs a fake rock wall, jumping onto the rocks on the ceiling.\",He,gold,\"continues to hold on, shown talking with the camera as others do the same.\",spin back and forth as he flashes back and forth.,out of the water.,lays down on the ground.\n7921,anetv_lfH_S2LTEXA,4690,A girl in a white - t - shirt demonstrates some climbing techniques on the climbing wall. The climber in the blue t - shirt,A girl in a white - t - shirt demonstrates some climbing techniques on the climbing wall.,The climber in the blue t - shirt,gold,sparks the edge and grabs the ax again.,gives more instruction and demonstrates more climbing techniques on the climbing wall.,poses for the teacher with the ball while she's stroking her stomach with her sleeves.,brings down rope to her crotch.\n7922,anetv_lfH_S2LTEXA,4689,The cliff climber demonstrates some climbing moves on a climbing wall. A girl in a white - t - shirt,The cliff climber demonstrates some climbing moves on a climbing wall.,A girl in a white - t - shirt,gold,comes down a submerged concrete wall and examines the ground.,demonstrates some climbing techniques on the climbing wall.,stares back at the girl.,watches the dart nervously through the window.\n7923,anetv_lfH_S2LTEXA,4272,A bearded man is inside a gym. He,A bearded man is inside a gym.,He,gold,holds a pair of frisbees as he stands off the ground in front of him.,\"climbs a fake rock wall, jumping onto the rocks on the ceiling.\",is upside down on a roller and rides on the equipment around him.,is climbing on a stationary bike and moving up a ramp.\n7924,anetv_b3bawTEPLtA,668,She stands at the barre and then on her own to demonstrate how to properly perform ballet moves. She,She stands at the barre and then on her own to demonstrate how to properly perform ballet moves.,She,gold,pauses and turns away.,moves her arms up and down as well as her legs and continuously speaking to the camera.,\"takes many cheer brush and begins doing ferociously through hip, jousting springs and gymnastic moves.\",takes then jumps off down the bar and hops up again.\n7925,anetv_b3bawTEPLtA,667,A ballerina is seen swirling in a room and leads into the woman speaking to the camera and performing several ballet moves. She,A ballerina is seen swirling in a room and leads into the woman speaking to the camera and performing several ballet moves.,She,gold,continues speaking and performing various flips and tricks and ends with her walking away right back.,stands at the barre and then on her own to demonstrate how to properly perform ballet moves.,continues moving around with another woman with one woman performing a belly dancing routine.,gives up various moves and shows him again in slow motion and walking away.\n7926,anetv_Adjpq4A5WtI,14563,A young man was playing the piano. He continually,A young man was playing the piano.,He continually,gold,played the piano with fast and intense.,tweezers the guitar with his hand.,dabs his fingers on an ice cream table.,stops to play before.\n7927,anetv_Adjpq4A5WtI,1601,The young pianist continues playing with an expertise of a master. The pianist,The young pianist continues playing with an expertise of a master.,The pianist,gold,continues moving around and moving all around the room.,completes his performance and looks at the camera and smiles.,swings up and throws the flute.,begins to raise her leg from her.\n7928,anetv_Adjpq4A5WtI,1600,A young man wearing a black tank top begins playing a piano. The young pianist,A young man wearing a black tank top begins playing a piano.,The young pianist,gold,acts with people in the living room.,writes on the wall while playing the violin.,steps up next to a small child who hangs the harmonica.,performs a classical rendition.\n7929,anetv_Adjpq4A5WtI,14565,He started to play slower and then stopped. He,He started to play slower and then stopped.,He,gold,in him fell backwards.,lifts himself to attach its right pick.,started to turn away from the piano.,continues to play while going up the ramps.\n7930,anetv_Adjpq4A5WtI,14564,He continually played the piano with fast and intense. He,He continually played the piano with fast and intense.,He,gold,taps the cymbals lightly on the drums.,is not missing any more.,started to play slower and then stopped.,moves up and out onto the street.\n7931,lsmdc3037_IRON_MAN2-16860,19274,\"With a pair of tongs, he retrieves the glowing triangle and studies it. Someone\",\"With a pair of tongs, he retrieves the glowing triangle and studies it.\",Someone,gold,\"completes its strip, then takes it out of his pocket.\",lobs the ball to the keeper.,places the triangle inside an arc reactor.,reflects over a dying canvas cover.\n7932,lsmdc3037_IRON_MAN2-16860,19275,\"The reactor pulses with light. At Hammer Industries, someone\",The reactor pulses with light.,\"At Hammer Industries, someone\",gold,is maneuvering from the horizontal hairstylist.,opens the trunk and takes out a couple of computer cakes.,touches his chest briefly.,works on an arc reactor.\n7933,lsmdc3037_IRON_MAN2-16860,19273,Someone shuts off the accelerator. He,Someone shuts off the accelerator.,He,gold,sliding over the wheel.,signaling song by setting under the sun.,\"gazes at the triangle, which contains the glowing element.\",grabs his shoulder then stop and jogs across a bridge.\n7934,lsmdc3037_IRON_MAN2-16860,19272,The beam cuts off the top half of a huge file cabinet as someone points the beam at the center of the core. Someone,The beam cuts off the top half of a huge file cabinet as someone points the beam at the center of the core.,Someone,gold,scoreboard shows someone off the screen and she rises to wave.,shuts off the accelerator.,\"continues doing backflips, flipping on the floor, flipping and flipping.\",does a postcard - action form.\n7935,lsmdc3037_IRON_MAN2-16860,19270,\"Using a pipe wrench, someone turns a wheel which rotates the prism, directing the beam outside the tubing. Firing from left to right toward the triangular core, the beam\",\"Using a pipe wrench, someone turns a wheel which rotates the prism, directing the beam outside the tubing.\",\"Firing from left to right toward the triangular core, the beam\",gold,burns a line in the wall which drips with flames.,flies from the gate where the doors catch.,\"halts the coastal, its back on its own and clings to the motorcycle.\",hits another off with a pair of lightning motions.\n7936,lsmdc3037_IRON_MAN2-16860,19271,\"Firing from left to right toward the triangular core, the beam burns a line in the wall which drips with flames. The beam\",\"Firing from left to right toward the triangular core, the beam burns a line in the wall which drips with flames.\",The beam,gold,lands in the dirt.,\"loads fearfully from the overhead blaze, revealing a locket burning on the flames flooded out dragon.\",cuts off the top half of a huge file cabinet as someone points the beam at the center of the core.,\"shows no steps even, forming half, show off the leaded, rails of manhattan.\"\n7937,lsmdc3037_IRON_MAN2-16860,19276,\"At Hammer Industries, someone works on an arc reactor. Elsewhere, someone\",\"At Hammer Industries, someone works on an arc reactor.\",\"Elsewhere, someone\",gold,plays golf with senator someone.,opens a grenade airplane.,strains to hang a root and stuffs the pill in a cup.,strides across the street and gazes around the rooftop.\n7938,anetv_zyylgHTPUS8,8816,\"As the pictures continue, dogs are being shown getting groomed in a large bath tub. After, more shots\",\"As the pictures continue, dogs are being shown getting groomed in a large bath tub.\",\"After, more shots\",gold,are shown of the girls going around brushing their hair along with little dogs walking.,of the other ribbons are shown and several men are seen preparing to perform the activities in different places.,are visible of before and after results of the dog and ending with the address of the building.,are shown of coffee and shaving harmonicas during various scenes.\n7939,anetv_zyylgHTPUS8,10369,\"Still shots of a dog grooming parlor exterior along with pictures of dogs, groomed dogs, and the interior of the grooming facility appear. A picture of a dog in a metal bathtub\",\"Still shots of a dog grooming parlor exterior along with pictures of dogs, groomed dogs, and the interior of the grooming facility appear.\",A picture of a dog in a metal bathtub,gold,is shown and a round bed top.,and a toothpaste pops up at darts in the boot.,\"appears along with several other dogs standing in the facility and receiving eye brow trimming, nail clipping, and hair cuts exhibits.\",is shown fighting over soap then frying chopped and soap over the sink.\n7940,anetv_zyylgHTPUS8,8815,\"An image of the front of a dog parlor is shown followed by images of the dogs they have helped and the equipment inside. As the pictures continue, dogs\",An image of the front of a dog parlor is shown followed by images of the dogs they have helped and the equipment inside.,\"As the pictures continue, dogs\",gold,\"wash on a sign and walk away together, then onscreen with their dogs and lead.\",\"take off and come and cut up the prints of tires, then tricks and people continues to ride and escape.\",are being shown getting groomed in a large bath tub.,are shown and zooming around with all objects that is showing how to clean your nails.\n7941,anetv_nfe_V3ei6ag,4782,Her teammate hits the ball. Her teammate,Her teammate hits the ball.,Her teammate,gold,recognizes him and brings her head back.,falls off the table.,hits the ball over the net.,\"sends someone rolling back and forth, trying to keep up.\"\n7942,anetv_nfe_V3ei6ag,4783,Her teammate hits the ball over the net. An opposing player,Her teammate hits the ball over the net.,An opposing player,gold,kicks the ball from the net.,hits the ball in the goal.,dives and hits the ball.,is hit at the goal.\n7943,anetv_nfe_V3ei6ag,4784,An opposing player dives and hits the ball. One of the teammates on the opposing team,An opposing player dives and hits the ball.,One of the teammates on the opposing team,gold,dives to catch and throw the out of bounds ball.,gets way up from victory.,bounces his fourth ball off as well.,\"hits the ball into the goal, the player misses high and misses.\"\n7944,anetv_nfe_V3ei6ag,4777,Her teammate throws the ball over the net. The volleyball player who dove earlier,Her teammate throws the ball over the net.,The volleyball player who dove earlier,gold,spikes the ball over the net.,tries to get his ball to land.,makes a goal into the goal to assist a clip of an opponent to the other.,makes some advances reassuring gesture.\n7945,anetv_nfe_V3ei6ag,4774,A volleyball player throws the ball in the air. Her teammate,A volleyball player throws the ball in the air.,Her teammate,gold,throws the ball and other try to hit the ball.,gets up from her lap.,catches it and throws it over the net.,lobs an ice puck towards the goal.\n7946,anetv_nfe_V3ei6ag,4779,Her teammate hits it back at her. The teammate,Her teammate hits it back at her.,The teammate,gold,hurls her another shot.,kicks and jumps and flips on another taller student.,spikes it over the net.,makes a penalty shot.\n7947,anetv_nfe_V3ei6ag,4775,The volleyball player serves the ball. An opposing player,The volleyball player serves the ball.,An opposing player,gold,poses with the ball.,serves the ball and hit it back.,dives to spike the ball.,drops his trophy and document bundles.\n7948,anetv_nfe_V3ei6ag,4781,Her teammate throws the ball over the net to the opposing team. The opposing player,Her teammate throws the ball over the net to the opposing team.,The opposing player,gold,has reached the top of the court.,hits the ball towards her teammate.,leans to the surface.,throws the ball back into the net.\n7949,anetv_nfe_V3ei6ag,4776,An opposing player dives to spike the ball. Her teammate,An opposing player dives to spike the ball.,Her teammate,gold,looks to them as he walks away.,nods as she fills them with a stick.,throws the ball over the net.,comes over to someone's coach.\n7950,anetv_nfe_V3ei6ag,4778,An opposing player hits the ball. Her teammate,An opposing player hits the ball.,Her teammate,gold,\"sends it tumbling, over the net.\",appears and they run up.,knocks the ball off her opponent.,hits it back at her.\n7951,lsmdc3064_SPARKLE_2012-4451,7499,\"Someone takes a deep breath, then relaxes and leans closer. She\",\"Someone takes a deep breath, then relaxes and leans closer.\",She,gold,gratefully kisses his face and kisses his hands gently.,stops and gazes at the answering crowd.,gives someone a hug.,looks at the item and looks down at someone.\n7952,lsmdc3064_SPARKLE_2012-4451,7504,Someone takes the seat facing hers and slumps. Someone,Someone takes the seat facing hers and slumps.,Someone,gold,removes her sunglasses and faces her daughter with puffy eyes.,\"smiles at his torso, then slows her pace with a grimace.\",gazes up at the tall gunman in his rear view mirror.,\"slips her, pads off and face him, holds up the front braid, and strolls off.\"\n7953,lsmdc3064_SPARKLE_2012-4451,7501,\"Now in prison, a female guard escorts someone into a visiting area. Clad in a pale pink jumpsuit, she\",\"Now in prison, a female guard escorts someone into a visiting area.\",\"Clad in a pale pink jumpsuit, she\",gold,halts a few yards ahead to avoid assembling beneath trapdoor.,provides a sample of home complicated sections.,wears her un - styled curly hair in a low ponytail.,hurries up along a family corridor.\n7954,lsmdc3064_SPARKLE_2012-4451,7498,\"Pulling back, he gazes solemnly into her eyes. Someone\",\"Pulling back, he gazes solemnly into her eyes.\",Someone,gold,\"takes a deep breath, then relaxes and leans closer.\",climbs onto the bus to give him his arrest.,\"leans against the wall, facing her husband, longingly.\",drifts out of someone's crotch.\n7955,lsmdc3064_SPARKLE_2012-4451,7508,\"Her eyes glisten, and she gives an appreciative nod. In a dressing room, someone\",\"Her eyes glisten, and she gives an appreciative nod.\",\"In a dressing room, someone\",gold,wears a blue gown.,finds a woman on a balustrade as a photo of someone nestled in a statue against the wall aspiring.,sets in a equipment with a chain rolled up by a cot and opens someone's locker.,quickly takes a tv magazine.\n7956,lsmdc3064_SPARKLE_2012-4451,7500,\"She gives someone a hug. Now in prison, a female guard\",She gives someone a hug.,\"Now in prison, a female guard\",gold,cruises down a corridor into a dark boardroom with marble columns.,escorts someone into a visiting area.,carries a graying over her shoulder.,retrieves her gloves and carries a three - shot suitcase to the cashier's back to her.\n7957,lsmdc3064_SPARKLE_2012-4451,7507,\"Leaning close to the glass, someone smiles softly. Her eyes glisten, and she\",\"Leaning close to the glass, someone smiles softly.\",\"Her eyes glisten, and she\",gold,goes to the elevator.,gives an appreciative nod.,\"sits down, taking a drag from her cigarette.\",strides closer to pale face and grins.\n7958,lsmdc3064_SPARKLE_2012-4451,7497,\"He cradles her face in his hands, and tenderly kisses her lips. Pulling back, he\",\"He cradles her face in his hands, and tenderly kisses her lips.\",\"Pulling back, he\",gold,gazes solemnly into her eyes.,presses her lips over hers.,leans down and kisses his chest.,presses his lips to hers.\n7959,lsmdc3064_SPARKLE_2012-4451,7502,\"Clad in a pale pink jumpsuit, she wears her un - styled curly hair in a low ponytail. On the other side of a glass barrier someone\",\"Clad in a pale pink jumpsuit, she wears her un - styled curly hair in a low ponytail.\",On the other side of a glass barrier someone,gold,approaches the garage her out of the wave.,sits wearing oversized sunglasses.,stares on at the camera.,appears and cuts the wavy hair of a man now that has no suit pinned back.\n7960,lsmdc3064_SPARKLE_2012-4451,7503,On the other side of a glass barrier someone sits wearing oversized sunglasses. Someone,On the other side of a glass barrier someone sits wearing oversized sunglasses.,Someone,gold,\"slips a bite in his coat, then stares straight ahead.\",takes the seat facing hers and slumps.,takes a cigarette from a purse and pretends to play him.,is working on the art of the art.\n7961,lsmdc3064_SPARKLE_2012-4451,7505,\"Someone removes her sunglasses and faces her daughter with puffy eyes. Tilting her head, she\",Someone removes her sunglasses and faces her daughter with puffy eyes.,\"Tilting her head, she\",gold,gives a gentle gaze.,waves her hand ruefully at the smiling someone.,finds a stubble falling tail.,fiddles with her head.\n7962,anetv_uF9othvTXn8,3311,People are sitting in bumper cars. They,People are sitting in bumper cars.,They,gold,are talking about assembling bumper cars.,gently takes the handlebars off and slams them down.,begin driving and bumping into each other.,women are seen bullring down a street and then onto the middle of the street in font of the camera.\n7963,anetv_uF9othvTXn8,16812,People are sitting in bumper cars. They,People are sitting in bumper cars.,They,gold,start doing impressive stunts on time.,start going and crashing into each other.,flail in the air.,are also riding out.\n7964,anetv_uF9othvTXn8,16813,They start going and crashing into each other. They,They start going and crashing into each other.,They,gold,speak to each other before staying raised for awhile.,stop and all line up together.,race across the green dirt humps by a stoic man who looks from the other side before standing behind them.,\"pass a campus, kicking and flipping, alternating, back flips.\"\n7965,anetv_JFGJYIZ7ONE,3934,A team is playing basketball against another team. They,A team is playing basketball against another team.,They,gold,chase the ball all over the court.,wishers an enormous inflatable indoor mallet are seen looking at the rope.,are hitting a soccer ball.,players white lacrosse is shown.\n7966,anetv_JFGJYIZ7ONE,3935,They chase the ball all over the court. They,They chase the ball all over the court.,They,gold,hit the ball back and forth against the wall.,snap and shoot with each other around.,\"try to keep the ball away from their opponent, making baskets as they go.\",try to hit the ball up and down a ball.\n7967,anetv_Rewtuc-f6wU,16449,The camera turns upright suddenly. the boy,The camera turns upright suddenly.,the boy,gold,slides someone's leg on the toilet and looks down.,surfs in the water by surprise and stops in front of it several times.,\"runs with the pole, vaulting over a bar and onto a mat.\",\"is working out within his truck, going for it.\"\n7968,anetv_pMXz0BKQOLQ,9964,The man happily watches his ice cream being prepared. The man enjoys,The man happily watches his ice cream being prepared.,The man enjoys,gold,him as he is about to celebrate with a needle.,is ice cream eating it as fast as he can.,his food on the table and puts a salad on the table.,and moves on turning the luggage.\n7969,anetv_pMXz0BKQOLQ,9963,A food attendant prepares an ice cream cone from a frozen yogurt dispenser. The man happily,A food attendant prepares an ice cream cone from a frozen yogurt dispenser.,The man happily,gold,tries to tap an egg on a bowl.,hits a red liquid with a solution on it.,watches his ice cream being prepared.,touches the hair to pull it back from him as he chews it.\n7970,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6739,12419,\"In a high tower, the Hogwarts professors meet and consult together. Someone\",\"In a high tower, the Hogwarts professors meet and consult together.\",Someone,gold,waves sand over the crystal at the wharf.,looks anxiously at someone.,raises the passengers raft from their legs to the lifeboat.,\"jumps the wooden staircase holding a stone, posing with several other passengers.\"\n7971,lsmdc1034_Super_8-8390,4364,They cautiously edge closer and peer into it. It,They cautiously edge closer and peer into it.,It,gold,heads slowly past the hidden guest of maize.,\"opens a outer door, revealing a small area around its wrist.\",haunted expression on his face.,'s full of machinery and some kind of industrial scale construction is taking place.\n7972,lsmdc1034_Super_8-8390,4367,He is either dead or unconscious. Someone,He is either dead or unconscious.,Someone,gold,claps his hand over someone's mouth to stop him from screaming.,\"'s chest rises in the air, slowly opens his mouth to speak.\",is hanging from a tree.,\"goes through the consultation room, his tv on.\"\n7973,lsmdc1034_Super_8-8390,4362,\"At the bottom, they light another sparkler and look around the gloomy tunnel. They\",\"At the bottom, they light another sparkler and look around the gloomy tunnel.\",They,gold,run two rows down a stairwell and plummet along down the palace floor.,hurry down the large bore tunnel.,move up to illuminate something down the river.,follow at the commander creases up at one side.\n7974,lsmdc1034_Super_8-8390,4369,More bodies hang from the ceiling. They,More bodies hang from the ceiling.,They,gold,\"with their rags strapped there on the chair beside the hooded zebra, someone places a hand on the deejay's gun.\",duck at a spot where someone imagines.,are dancing in the tiled floor.,\"look round at the bodies, all suspended upside down from the ceiling.\"\n7975,lsmdc1034_Super_8-8390,4365,\"It's full of machinery and some kind of industrial scale construction is taking place. As they creep a bit closer, they\",It's full of machinery and some kind of industrial scale construction is taking place.,\"As they creep a bit closer, they\",gold,\"draw close to, but he looks disappointed.\",models of the world's surface.,are still arranging more snow and old shingles hanging above their backs.,come across the sheriff hanging upside down from the roof of the tunnel.\n7976,lsmdc1034_Super_8-8390,4370,None of them is moving. The alien,None of them is moving.,The alien,gold,flies forward until it falls.,appears in the chamber.,starts to regain control of the train from the store.,has a few rounds.\n7977,lsmdc1034_Super_8-8390,4361,\"At the cemetery, people climb down a rope into the tunnel that the alien has built. At the bottom, they\",\"At the cemetery, people climb down a rope into the tunnel that the alien has built.\",\"At the bottom, they\",gold,find a rooster dunking under a road.,light another sparkler and look around the gloomy tunnel.,collapse onto their boards and look up.,walk along a steep cliff of a mountain.\n7978,lsmdc1034_Super_8-8390,4372,They watch as it does something behind some machinery. They,They watch as it does something behind some machinery.,They,gold,notice the creature is holding what appears to be a severed human leg.,come over and ignite two shells.,begin stepping up and down the benches on the backs.,continue to dial the remote but eventually get up.\n7979,lsmdc1034_Super_8-8390,4371,The alien appears in the chamber. They,The alien appears in the chamber.,They,gold,watch the elephant through the snake's cage.,\"aim their flashlights, then turn, and shoots into the other's throat.\",are forced to ring the hatch.,watch as it does something behind some machinery.\n7980,lsmdc1034_Super_8-8390,4363,They hurry down the large bore tunnel. They,They hurry down the large bore tunnel.,They,gold,peer at the towers architecture.,cautiously edge closer and peer into it.,continue on sitting with their dogs.,shoot horses across the grass.\n7981,lsmdc1034_Super_8-8390,4368,Someone claps his hand over someone's mouth to stop him from screaming. More bodies,Someone claps his hand over someone's mouth to stop him from screaming.,More bodies,gold,hang from the ceiling.,fall down from behind the trough.,\"fall out of view to appear under them, spinning nervously.\",are screwed into tiny pieces where people struggle.\n7982,lsmdc1034_Super_8-8390,4366,\"As they creep a bit closer, they come across the sheriff hanging upside down from the roof of the tunnel. He\",\"As they creep a bit closer, they come across the sheriff hanging upside down from the roof of the tunnel.\",He,gold,\"turns away and jogs back to someone, who keeps shooting.\",pulls out dark shoes all the way on through a sticky gap as he grabs to place them up.,is either dead or unconscious.,\"takes off a few fake, black hats, and puts them on.\"\n7983,anetv_lfuNoeRYWz4,8422,Text is shown from the centers for disease control regarding proper handwashing. A woman,Text is shown from the centers for disease control regarding proper handwashing.,A woman,gold,is shown soaping her hands while water is running in a sink.,is shown riding a exercise bike.,is shown in a kitchen and are discussing a tools to catch nails.,is cutting brown - white hair.\n7984,anetv_lfuNoeRYWz4,8423,A woman is shown soaping her hands while water is running in a sink. She,A woman is shown soaping her hands while water is running in a sink.,She,gold,reaches for a towel and then turns the faucet one with one hand.,closes her eyes with soap and several toothpaste rolls down her nose.,brushes her hair down and showing off her product.,then sprays the contents of her face with water and scrubs herself with the supplies.\n7985,anetv_aa5jHg4E3O0,12553,She holds up two white mugs. A cartoon,She holds up two white mugs.,A cartoon,gold,of oil washes her face.,appears on screen of the sporting venue.,comes on the screen.,wipes a bowling ball against the wall next to her.\n7986,anetv_aa5jHg4E3O0,1815,She holds up a coffee cup on a plate as well as another cup. She,She holds up a coffee cup on a plate as well as another cup.,She,gold,does it more quickly.,puts a soda back.,continues speaking while holding up coffee cups.,\"nods, smiles, and giggles.\"\n7987,anetv_aa5jHg4E3O0,12552,A woman is sitting down talking. She,A woman is sitting down talking.,She,gold,shows a large book with a website.,\"flexes her muscles, then continues to remove her hair.\",holds up two white mugs.,prepares an egg using an orange and pen brush on a kitchen stove.\n7988,anetv_aa5jHg4E3O0,12551,A woman is drinking a cup of coffee. A woman,A woman is drinking a cup of coffee.,A woman,gold,is looking into the camera.,is standing in a kitchen.,is sitting down talking.,is loads and drinks.\n7989,anetv_aa5jHg4E3O0,1814,A woman is seen speaking to the camera while sitting in front of a bed. She,A woman is seen speaking to the camera while sitting in front of a bed.,She,gold,vacuum and sits in the chair and screws down the ups on the vacuum.,is then seen using a mop and bag while looking off into the distance.,holds up a coffee cup on a plate as well as another cup.,is shown continuously along the davenport while looking off in different distance.\n7990,anetv_4DmsWE6byuw,9262,A man is walking in circles in the center of a crowd. He,A man is walking in circles in the center of a crowd.,He,gold,begins to break dance.,runs down the sidewalk.,continues attempting to hit him into a set of bongo.,walks down into a circle and then walks backwards into the sand of the water polo.\n7991,lsmdc3007_A_THOUSAND_WORDS-3881,10068,\"Nearby the name McCall adorns a large headstone. In the field, someone's younger self\",Nearby the name McCall adorns a large headstone.,\"In the field, someone's younger self\",gold,is holding a surfboard.,sits at a desk with someone with her arms folded.,sleeps soundly in her bed.,sits at the base of the tree.\n7992,lsmdc3007_A_THOUSAND_WORDS-3881,10063,\"Someone stands and kisses her on the forehead. Back at the house, several more Bodhi leaves\",Someone stands and kisses her on the forehead.,\"Back at the house, several more Bodhi leaves\",gold,walk in the satin.,hang in the trunk.,\"drop off, leaving only three left on the branch.\",fall out on the carpet.\n7993,lsmdc3007_A_THOUSAND_WORDS-3881,10061,She looks up and calls toward the door. Someone's mouth,She looks up and calls toward the door.,Someone's mouth,gold,hangs open as he walks closer to a bookshelf.,hangs open while someone stares wide - eyed at what he must do.,drops open as she gazes at her son.,hangs open when she sees someone reaching for her father's cards.\n7994,lsmdc3007_A_THOUSAND_WORDS-3881,10064,\"Back at the house, several more Bodhi leaves drop off, leaving only three left on the branch. Someone\",\"Back at the house, several more Bodhi leaves drop off, leaving only three left on the branch.\",Someone,gold,pets the general's claws.,cut the driveway with a soft twinkle.,clasps his mother's hand and strokes his own face with it.,\"trudges back to the ship, as the british railing juts thin.\"\n7995,lsmdc3007_A_THOUSAND_WORDS-3881,10065,Smiling someone turns and leaves. Someone,Smiling someone turns and leaves.,Someone,gold,picks up their summons and hurries to the door.,stares after him with a puzzled expression.,wakes with his emerald - covered gun.,\"turns back, clutching a gun.\"\n7996,lsmdc3007_A_THOUSAND_WORDS-3881,10067,Later two workers dig a grave in a sunny cemetery. Nearby the name McCall,Later two workers dig a grave in a sunny cemetery.,Nearby the name McCall,gold,plows through the roots of a list on the wall.,read strewn and handwritten.,depicts someone's sandals.,adorns a large headstone.\n7997,lsmdc3007_A_THOUSAND_WORDS-3881,10066,Someone stares after him with a puzzled expression. Later two workers,Someone stares after him with a puzzled expression.,Later two workers,gold,scour the public offices at their home.,\"put something on a tree, carry it into a tree trunk.\",\"haul someone off, filling the fuel with their guns.\",dig a grave in a sunny cemetery.\n7998,lsmdc3007_A_THOUSAND_WORDS-3881,10060,\"He nods more vigorously, then stares into his mother's eyes. She\",\"He nods more vigorously, then stares into his mother's eyes.\",She,gold,looks up and calls toward the door.,takes out his cellphone and walks off into the code.,shakes her head and returns the kiss to the lips.,\"gets the smiles, and nods to the camera.\"\n7999,anetv_d0FP6xp9O4c,4402,A man and a dog are inside a building. The man,A man and a dog are inside a building.,The man,gold,uses frisbees to throw for the dog.,talks to the camera as the man continues shoveling.,makes a pyramid of jumps and jumps on the stilts.,are doing the twirling frisbee in the air as people walk around the area.\n8000,anetv_d0FP6xp9O4c,18310,The man begins standing next to the dog while talking to the camera and holding a frisbee in each hand. The man,The man begins standing next to the dog while talking to the camera and holding a frisbee in each hand.,The man,gold,walks away from the dog who perks up the ears as the man walks away.,throws and dips the sticks into the water and the dog continues to march around.,continues running around in the workout.,finally wipes a shoe with a sponge and the dog appears again.\n8001,anetv_d0FP6xp9O4c,4403,The man uses frisbees to throw for the dog. The dog,The man uses frisbees to throw for the dog.,The dog,gold,uses only the dog to catch a frisbee while a man slides after the dog.,does various tricks to catch the frisbees.,watches his dog attempt to catch a frisbee.,\"runs after the dog, chased by several frisbees.\"\n8002,anetv_i-G50GikqTg,10534,He picks up his sticks and hits them together. He,He picks up his sticks and hits them together.,He,gold,continuously engages the game for a while.,puts them away and begins to walk down wood.,bows to the woman.,starts to count and drum.\n8003,anetv_i-G50GikqTg,10533,A young man sits down and pulls a drum close to him. He,A young man sits down and pulls a drum close to him.,He,gold,is finished up at five seconds.,picks up his sticks and hits them together.,is playing while the man is playing the saxophone he is shown.,is seen occasionally playing violin while his father walks around him.\n8004,anetv_i-G50GikqTg,10536,He drums faster as he looks away and then stops to adjust a few drums. He gets up and moves the camera to show a lever he moves and then he,He drums faster as he looks away and then stops to adjust a few drums.,He gets up and moves the camera to show a lever he moves and then he,gold,\"talks in the back again, when the finished takes turn returning and his camera pans back to show the man jumping up on his\",lifts up the parallel bars in his demonstrates ways to go about it.,taps on the top of a drum over and over.,\"go back and forth to make notes, and it does a flip over properly.\"\n8005,anetv_i-G50GikqTg,10537,He gets up and moves the camera to show a lever he moves and then he taps on the top of a drum over and over. He,He gets up and moves the camera to show a lever he moves and then he taps on the top of a drum over and over.,He,gold,stands on his foot amid the closing captions shown on the screen.,gives a thumbs up and peace sign.,dismounts and goes to the right side of camera.,pulls it over his head and finds it back off.\n8006,anetv_i-G50GikqTg,10535,He starts to count and drum. He,He starts to count and drum.,He,gold,\"skateboards down the deserted street, playing the cymbal as they play.\",\"takes it from him, dials a number, then drops it on a couch.\",drums faster as he looks away and then stops to adjust a few drums.,looks up from his drink and smiles at the sky.\n8007,lsmdc0038_Psycho-67192,16748,\"Then the Mechanic waves, starts forward with her suitcase. The Mechanic\",\"Then the Mechanic waves, starts forward with her suitcase.\",The Mechanic,gold,runs out as he serves the ball on the table.,\"smiles, throws the suitcase in.\",grins as she leaves the pool.,lies in a car's passenger window.\n8008,lsmdc3063_SOUL_SURFER-31347,6159,\"As we peer up at her board from underwater, her legs kick out widely at its sides. Leaving the other surfers, she\",\"As we peer up at her board from underwater, her legs kick out widely at its sides.\",\"Leaving the other surfers, she\",gold,sinks past the water.,paddles farther out to sea.,trails the images out to sea.,smiles before dropping the glass.\n8009,lsmdc3063_SOUL_SURFER-31347,6158,She sits upon her board and scans the ocean. The timer,She sits upon her board and scans the ocean.,The timer,gold,\"eyes its curved tip, then it crosses to the chicago skyline.\",stands and shifts to her feet.,shines between two men sitting riding in an icy river.,counts down past a minute and 45 seconds.\n8010,lsmdc3063_SOUL_SURFER-31347,6157,The timer shows less than two minutes. She,The timer shows less than two minutes.,She,gold,sits upon her board and scans the ocean.,swings open a green campaign office.,\"jumps off the bar, and she falls down.\",drops the coffee and sets the timer.\n8011,anetv_aPjbJ4ZNcVQ,6409,The child sticks their hand into the mixing bowl and puts that hand in their mouth. The guy,The child sticks their hand into the mixing bowl and puts that hand in their mouth.,The guy,gold,becomes fish and then see the ending screen.,opens an ingredient with scissors.,\"shows in time to kiss each, and walks right out.\",\"is wake racing bumpy, fast.\"\n8012,anetv_aPjbJ4ZNcVQ,6417,\"The guy puts the baking pan into the oven. The child, guy, and dog\",The guy puts the baking pan into the oven.,\"The child, guy, and dog\",gold,lift a wooden top and mix it.,head suits up on either side of the cake.,mix style with hair and spray the cookie.,watch the baking process through the oven window.\n8013,anetv_aPjbJ4ZNcVQ,13042,\"After, the male adds a stick of butter to the bowl and the child begins to stir it and stick their hand in the bowl to taste it. While that's going on, the man\",\"After, the male adds a stick of butter to the bowl and the child begins to stir it and stick their hand in the bowl to taste it.\",\"While that's going on, the man\",gold,out o's a crack.,extends two large dough made together.,lets it go and drink his head butts onto a white bag.,continues to grab other ingredients and hands them to the child before dumping the dough on a tray.\n8014,anetv_aPjbJ4ZNcVQ,6406,The child pours the ingredient into the bowl and mixes with a spoon. The child,The child pours the ingredient into the bowl and mixes with a spoon.,The child,gold,places the mixture onto a bread lid and says to blend.,scoops some of the flour with the mixing spoon and pours it on the table.,lets the lid tighter.,pours more sugar into the glass and ice it.\n8015,anetv_aPjbJ4ZNcVQ,6408,The guy leaves and stands with a stick of butter. The child,The guy leaves and stands with a stick of butter.,The child,gold,throws sticks on a pan.,dismounts and leaps onto the mat.,sticks their hand into the mixing bowl and puts that hand in their mouth.,runs off the field.\n8016,anetv_aPjbJ4ZNcVQ,13039,\"An older man is sitting at a table talking to a young boy with curly hair. On the table, they\",An older man is sitting at a table talking to a young boy with curly hair.,\"On the table, they\",gold,play a game of tam - tam between them talking.,have a big red bowl and several other baking ingredients.,lead the man with the baton on both hand and man.,talk and talk while smiling as she dreams of the time.\n8017,anetv_aPjbJ4ZNcVQ,6405,The guy measures the ingredient on the table. The child,The guy measures the ingredient on the table.,The child,gold,pours the ingredient into the bowl and mixes with a spoon.,returns to the table and talks to his shoulders.,puts downs on the second potato.,slips the coin into the handle.\n8018,anetv_aPjbJ4ZNcVQ,6411,The guy hands the child an egg which the child breaks into a measuring cup. The child and guy,The guy hands the child an egg which the child breaks into a measuring cup.,The child and guy,gold,separate and watch in the oven.,continue to play the drums while sitting by the other men play congas.,added the egg to the bowl.,blots the cupcake with an ax.\n8019,anetv_aPjbJ4ZNcVQ,6413,The guy mixes the ingredients in the bowl. The child,The guy mixes the ingredients in the bowl.,The child,gold,adds milk and juices the kites.,waves with one hand.,rinses his coat in the dishwasher.,pulls off an egg mixture.\n8020,anetv_aPjbJ4ZNcVQ,6410,The guy opens an ingredient with scissors. The guy,The guy opens an ingredient with scissors.,The guy,gold,hands the child an egg which the child breaks into a measuring cup.,takes ice with the tin spatula.,throws cream on welder.,removes the contact from his eye.\n8021,anetv_aPjbJ4ZNcVQ,6415,The guy uses silverware to put dough on a baking pan. The man hands the child the spoon silverware and the child,The guy uses silverware to put dough on a baking pan.,The man hands the child the spoon silverware and the child,gold,finishes presents and lights a sharp bottle.,proceeds to put the alcohols into the oven.,carries them on fire.,gets a scoop from the bowl.\n8022,anetv_aPjbJ4ZNcVQ,6416,The man hands the child the spoon silverware and the child gets a scoop from the bowl. The guy,The man hands the child the spoon silverware and the child gets a scoop from the bowl.,The guy,gold,eats the ice cream and drops ice everywhere in the nuts.,dumps water out of a bucket on the black jack table.,puts the baking pan into the oven.,eyes the drink and spits as well.\n8023,anetv_aPjbJ4ZNcVQ,13041,\"The man then takes a bag of flour and dips a measuring in the bag and gives it to the job and dumps it into the bowl. After, the male adds a stick of butter to the bowl and the child\",The man then takes a bag of flour and dips a measuring in the bag and gives it to the job and dumps it into the bowl.,\"After, the male adds a stick of butter to the bowl and the child\",gold,fills it with a half foam pan.,puts the salad on.,begins to stir it and stick their hand in the bowl to taste it.,stirs it in a pot and empties the pasta into the pan.\n8024,anetv_aPjbJ4ZNcVQ,6404,A guy sits on a table talking with a child. The guy,A guy sits on a table talking with a child.,The guy,gold,puts on chicken leg and makes a bite of the sandwich.,raises the cats's all and gives a side rub.,measures the ingredient on the table.,trims his nose like a cone.\n8025,anetv_aPjbJ4ZNcVQ,6412,The child and guy added the egg to the bowl. The guy,The child and guy added the egg to the bowl.,The guy,gold,is laughing and starts to shave himself.,starts to rub it against each other.,mixes the ingredients in the bowl.,turns the egg into a cone.\n8026,anetv_aPjbJ4ZNcVQ,13043,\"While that's going on, the man continues to grab other ingredients and hands them to the child before dumping the dough on a tray. The pan then goes into the oven and the two individuals as well as the dog\",\"While that's going on, the man continues to grab other ingredients and hands them to the child before dumping the dough on a tray.\",The pan then goes into the oven and the two individuals as well as the dog,gold,starts to watch them cook.,more well filing to be raking the limes and cheese are shown on a tray.,is being covered with some vegetables and ingredients in a small pan.,and then gets on the table and launches it around as well.\n8027,anetv_aPjbJ4ZNcVQ,6407,The child scoops some of the flour with the mixing spoon and pours it on the table. The guy,The child scoops some of the flour with the mixing spoon and pours it on the table.,The guy,gold,pours the drink of in the glass for her.,stirs and presents a plate to the butler.,leaves and stands with a stick of butter.,adds pasta pasta with a bowl.\n8028,anetv_aPjbJ4ZNcVQ,13040,\"On the table, they have a big red bowl and several other baking ingredients. The man then\",\"On the table, they have a big red bowl and several other baking ingredients.\",The man then,gold,takes a bag of flour and dips a measuring in the bag and gives it to the job and dumps it into the bowl.,places two sticks in the mixer and puts a stencil on the dough.,places the saucepan on a plate.,places them with the presents and cuts the cupcakes.\n8029,anetv_aPjbJ4ZNcVQ,6414,The child waves with one hand. The guy,The child waves with one hand.,The guy,gold,finishes and blows back his whistle.,drops usa flags and then other people hug.,uses silverware to put dough on a baking pan.,run back and follows the rehearsal.\n8030,lsmdc3083_TITANIC2-38953,11290,The man hands over money. The man,The man hands over money.,The man,gold,takes long drink off of paddle glasses.,checks his pocket watch then steps to someone and her mother.,puts cards on a table.,writes on a cigar and speaks into the microphone.\n8031,lsmdc3083_TITANIC2-38953,11292,A health inspector runs a comb through a man's dark hair and beard. Someone,A health inspector runs a comb through a man's dark hair and beard.,Someone,gold,furrows the prone page.,strides ahead of someone and someone as they walk up a gangplank.,\"emerges from a shop at a park, dressed in conservative costumes and flipping plain settings.\",finds a house clean - shaven head.\n8032,lsmdc0019_Pulp_Fiction-57010,4503,\"Someone sits at his dining table in a big comfy robe, eating his large breakfast, while talking on the phone. Someone\",\"Someone sits at his dining table in a big comfy robe, eating his large breakfast, while talking on the phone.\",Someone,gold,paces around in someone's bedroom on the phone.,\"glancing off, she waits at the front door of the settee, almost listening.\",gives someone a paper sack.,stands up and unlocks the end of his book.\n8033,anetv_nqmw4BCi6io,2934,A mop's attributes are demonstrated through computer graphics close - ups of various parts. The mop,A mop's attributes are demonstrated through computer graphics close - ups of various parts.,The mop,gold,is demonstrated in actual use.,is being mop following the mop man.,is moving along the side.,is shown with a hose being bounces across the counter before it pans up on the downhill side.\n8034,anetv_xYW64moSLKg,3270,She later is swimming with tom and jerry very pretty and oddly. Then a she,She later is swimming with tom and jerry very pretty and oddly.,Then a she,gold,talks about putting toothpaste and toothpaste on her toothbrush.,presses the top and the tier on the nail.,is caressing the person that kicks her leg that is in the ocean.,is hanging from a hoop up above and jumps down into the water.\n8035,anetv_xYW64moSLKg,3271,Then a she is hanging from a hoop up above and jumps down into the water. She,Then a she is hanging from a hoop up above and jumps down into the water.,She,gold,does a lot of different shows involving her dancing and swimming around in the water.,is shown again times at the same time.,is holding a stick as it pulls out a bunch of toothpaste.,are shown inside of a counter that have really good handstands.\n8036,lsmdc1041_This_is_40-9182,296,\"Someone eyes her up and down, then closes the tablet case. She\",\"Someone eyes her up and down, then closes the tablet case.\",She,gold,\"rubs his fingers with his thumb, trying to stay upright.\",opens another present and passes a rack of nazi shells.,takes out his pocket and adds fire to his pocket where someone has and crosses to a loose corner of the table.,\"covers herself and walks away, as someone remains in bed fully clothed with sneakers on.\"\n8037,lsmdc0029_The_Graduate-64239,5615,He starts putting on his shirt. She,He starts putting on his shirt.,She,gold,pulls back her shirt and takes a tissue.,sits on the edge of the bed and watches him.,\"shows how to iron the shirt over his shirt, nights it.\",\"is brought down, but her attention ignores him as he changes into another direction.\"\n8038,anetv_cROJALtLB1k,18633,A man is then shown riding on the equipment. A close up,A man is then shown riding on the equipment.,A close up,gold,of a canoe is seen followed by several divers leading in the other and holding the fishing bow.,of the bike is shown on the area.,is shown of people on ski stilts.,is shown of the digital screen.\n8039,anetv_cROJALtLB1k,18632,Several views are shown of exercise equipment in a house. A man,Several views are shown of exercise equipment in a house.,A man,gold,jumps up to a ledge and does a flip.,walks in with a mechanical piece of machinery.,is then shown riding on the equipment.,is shining a shoe and carving it with a stick.\n8040,anetv__i6kvwg1Oyo,17327,A close up of a dart board is shown with a dart moving into frame. A person,A close up of a dart board is shown with a dart moving into frame.,A person,gold,begins diving through the water into the water.,records a person at the end of the diving board.,takes down a dart and walks away.,is seen blowing the puck as well as using the machine.\n8041,anetv__i6kvwg1Oyo,17328,A person takes down a dart and walks away. The camera,A person takes down a dart and walks away.,The camera,gold,zooms out to show more weeds.,zooms in on the board in the end.,zooms in on the face and thumbs out.,pans back to the men cleaning slackline.\n8042,anetv__i6kvwg1Oyo,8537,A piece of paper is placed over a dart board. Darts,A piece of paper is placed over a dart board.,Darts,gold,are moving around pins.,are being straightened into a hoop.,are thrown into the piece of paper.,are shown inside a warehouse.\n8043,anetv__i6kvwg1Oyo,8538,Darts are thrown into the piece of paper. Someone,Darts are thrown into the piece of paper.,Someone,gold,comes and lifts up the piece of paper.,is putting chocolate onto the top of the zucchini.,stands back up and starts mixing target.,pulls the open door to open them.\n8044,anetv_d_6BVfxlAsI,10179,An empty poker table is shown followed by a woman dealing cards and speaking to the camera. She,An empty poker table is shown followed by a woman dealing cards and speaking to the camera.,She,gold,takes the cups and shows out cards the table to be dealt.,continues to hit the ball while people watch on the sides.,grabs some objects up and hits it into the cups with another location and various clips of a game are being shown.,instructs on how to play the game while still speaking to the camera and smiling.\n8045,anetv_X1lLinc_yvo,12854,Woman is standing in a kitchen in front of a camera and showing ingredients on top of table. woman,Woman is standing in a kitchen in front of a camera and showing ingredients on top of table.,woman,gold,is pouring the ingredients inside a kitchen aid and mixing them and explaining to the camera how to do the paste.,picks up a plate with white spatula and shredded glass.,start cooking and put the dishes in a pan and pour flour into a jar.,pours cheese on a fridge and pours it into a cup in front of her.\n8046,anetv_DJE9nX2qKYs,4262,She picks up a heavy weight. She,She picks up a heavy weight.,She,gold,drills out the note.,lifts the barbell from her chest while she walks into a cell.,shake her hand part.,lifts the weight up over her head.\n8047,anetv_DJE9nX2qKYs,17321,She lifts it up to her chest and pauses. Then she,She lifts it up to her chest and pauses.,Then she,gold,lifts it over her head.,puts her hands behind her head.,gets closer and points under her leg.,puts her mouth clean in front of a mirror and drops the towel on up in front of her.\n8048,anetv_DJE9nX2qKYs,4261,A woman in a black shirt is bent over. She,A woman in a black shirt is bent over.,She,gold,\"is shown cutting and twirling a baton, holding it over her head.\",swings in one leg exam.,is using an exercise hand to lift it.,picks up a heavy weight.\n8049,anetv_DJE9nX2qKYs,17320,A woman lowers herself in front of a barbell. She,A woman lowers herself in front of a barbell.,She,gold,hurries into the room and dials a number.,spins her leg up and down.,lifts it up to her chest and pauses.,rubs her eyes and legs several times.\n8050,anetv_D7Oc3SLX0wo,5625,The man serves the ball again. The ball,The man serves the ball again.,The ball,gold,goes out of bounds again.,makes a second shot.,is repeated back and fourth on the ground.,falls from the paper.\n8051,anetv_D7Oc3SLX0wo,5622,The people play volleyball on the beach. The ball,The people play volleyball on the beach.,The ball,gold,is pulling up and down across the sand.,goes out of bounds.,poses as the ocean breaks.,raises and lays down out the sand.\n8052,anetv_D7Oc3SLX0wo,5624,The man with red shorts serves the ball. The man,The man with red shorts serves the ball.,The man,gold,\"kicks, throws the ball and hits it, then hits an opponent during the basketball.\",waves his racquet during a fight.,unleashes the batter but misses a second time.,serves the ball again.\n8053,anetv_D7Oc3SLX0wo,16077,A small group of people are seen playing volleyball on a sandy court. The men,A small group of people are seen playing volleyball on a sandy court.,The men,gold,hit the ball back and fourth to one another while running around.,hit a ball around one another while others watch on the side.,continue playing and playing a game of crochet.,continue to play against one another while walking around.\n8054,anetv_D7Oc3SLX0wo,5623,The ball goes out of bounds. The man in green,The ball goes out of bounds.,The man in green,gold,goes along the court practicing the game.,picks up the ball.,throws a ball into the goal.,goes from taking the fire.\n8055,anetv_D7Oc3SLX0wo,16078,The men hit the ball back and fourth to one another while running around. They,The men hit the ball back and fourth to one another while running around.,They,gold,watch inside the rope and end by walking around to throw another ball into the field.,begin performing with the referee as people walk along and watch.,continue playing and high fiving one another.,begin cheering with one another while the audience cheers.\n8056,lsmdc1001_Flight-71697,2544,\"Someone puts his bandaged hand to his mouth as tears flow down his face. Then, he\",Someone puts his bandaged hand to his mouth as tears flow down his face.,\"Then, he\",gold,puts his eyes on the dog to the light.,shakes his head and takes his cell phone from the plastic bag.,flaps his arms and hangs up in the air.,\"screws up his face, cradles his face in his hand.\"\n8057,lsmdc1001_Flight-71697,2547,He strides to the corridors carrying a bag in his hand and another slung over his shoulder. He,He strides to the corridors carrying a bag in his hand and another slung over his shoulder.,He,gold,picks up his shoes and walks off.,drinks the money to his pocket.,\"looks in someone's direction, wide - eyed.\",removes his earphones and leans over the reception desk.\n8058,anetv_zBg0FEtpC-o,5165,A man in a black knit hat talks to the camera while standing in front of a table with items on it and in front of a yellow truck with a black star on the door. The man,A man in a black knit hat talks to the camera while standing in front of a table with items on it and in front of a yellow truck with a black star on the door.,The man,gold,adjusts the front of a large bowling ball in a workshop where 8 words next to a straw merchant does n't change.,\"picks up an orange packet from the table and later a smaller yellow packet and an orange device, all while talking.\",stops and plays the violin while talking.,puts a small red object and then demonstrates using the varnish and begins to remove the handle of the tire using roller blades.\n8059,anetv_zBg0FEtpC-o,5166,\"The man picks up an orange packet from the table and later a smaller yellow packet and an orange device, all while talking. The man then\",\"The man picks up an orange packet from the table and later a smaller yellow packet and an orange device, all while talking.\",The man then,gold,continues to talk to the camera in the middle of the field with the devil showing his face in his hands.,places the yellow packet and orange device on the table next to each other on a metal table.,\"zooms a second square and snowmobiles, cycles up on a right, and beats the man on the right.\",adds the parts of the glass to the boy using a squeegee then puts cement onto the juicer.\n8060,anetv_lc-piYwzqsA,2940,The man spins while the audience watches and dismounts. The coach,The man spins while the audience watches and dismounts.,The coach,gold,leaps across his body and cheers.,performs several tricks with batons and other vampire papers.,wave his arms and congratulate his boys.,runs up to the athlete.\n8061,anetv_lc-piYwzqsA,9781,He does a gymnastics routine on the balance beam. He,He does a gymnastics routine on the balance beam.,He,gold,dismounts and lands on a mat.,jumps on the balance beam and dismounts and lands on a mat.,drops the weight on the mat and thrusts it toward his plan chest.,dismounts and raises his arms in the air.\n8062,anetv_lc-piYwzqsA,2939,A gymnast gets on the pommelhorse and does a routine. The man,A gymnast gets on the pommelhorse and does a routine.,The man,gold,dismounts and flexing her legs.,twirls the baton and does some ballet moves.,spins while the audience watches and dismounts.,jumps and flips and flips around the bars.\n8063,anetv_lc-piYwzqsA,9780,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,jumps off the beam and lands on a mat.,performs a gymnastics routine on the mat.,does a gymnastics routine on the balance beam.,does a gymnastics routine on a beam.\n8064,anetv_NkJA_0tErGY,14757,\"A man is speaking, he had a china cabinet behind him filled with glass product. He\",\"A man is speaking, he had a china cabinet behind him filled with glass product.\",He,gold,\"drinks off a glass, then gurgles the cup hidden into the bottle.\",gives him an ice cream cone and add several different ingredients.,turns and walks toward the door using a specimen barrel.,begins to start to show step by step instructions on how to make a sauce.\n8065,anetv_NkJA_0tErGY,14758,He begins to start to show step by step instructions on how to make a sauce. Then in another frying pan he,He begins to start to show step by step instructions on how to make a sauce.,Then in another frying pan he,gold,adds some meat and cheese while his bread is toasting.,puts it in it and eats it from a pitcher.,puts it on the pan and starts for chopping some noodles.,gets cheese from the bowl and adds chopping wood.\n8066,anetv_NkJA_0tErGY,14759,Then in another frying pan he adds some meat and cheese while his bread is toasting. He then,Then in another frying pan he adds some meat and cheese while his bread is toasting.,He then,gold,adds all the ingredients on the bread and cuts it in halves and begins to eat.,\"picks up a black bottle of milk, plates it and put on a candy counter, and adds a sandwich to it.\",\"juices some lemons in a blender, then adds one along five times.\",applies jelly to thigh butter.\n8067,anetv_dwCeFVAaP9c,10953,A man in on his knees in an empty room. he,A man in on his knees in an empty room.,he,gold,is wiping his face with some soap.,holds up a patch of carpet and starts talking.,picks up a wounded cube and ends by speaking to the camera.,dries his hands and turns to the camera.\n8068,anetv_dwCeFVAaP9c,18315,Man is kneeling on the floor holding carpet tiles. man,Man is kneeling on the floor holding carpet tiles.,man,gold,is talking in front of a building and on man a fence from the other is in machine.,is on floor buffing a hardwood floor in front of a wall.,cleans the front on a wall and with a hose above.,takes out the plastic from the plastic tiles and put them in the floor.\n8069,anetv_dwCeFVAaP9c,10954,He holds up a patch of carpet and starts talking. the then,He holds up a patch of carpet and starts talking.,the then,gold,finishes mowing the grass demonstrate how to use a wipe slip of grass.,demonstrates how to install flooring.,begins scraping out snow with an electric scraper.,shows how to raise the camera while more words practice for a black eye.\n8070,lsmdc0011_Gandhi-51897,15294,Someone's tone is loaded with foreboding. Someone,Someone's tone is loaded with foreboding.,Someone,gold,holds out the colorful and silver shield.,absorbs the news stiffly.,strides out of their table toward the table.,gives a little skip eagerly.\n8071,lsmdc0011_Gandhi-51897,15293,And now he turns to someone. Someone's tone,And now he turns to someone.,Someone's tone,gold,is only by the presence of someone.,is loaded with foreboding.,\"is someone, someone's voice.\",softens barely one sigh.\n8072,anetv_QRn9v8F8Nn0,15096,A sreet woth houses and cars covered by snow are shown. man,A sreet woth houses and cars covered by snow are shown.,man,gold,is walking off of the leaves down a hallway.,is removing a thick layer of snow from a car.,is wearing black hoodie stilts.,is downhill spraying the car in snow and talking to the camera holding the snowboard.\n8073,anetv_ZVNRQ_MPZAs,14054,\"A dirt bike and its rider appears, getting ready for the race. The different players\",\"A dirt bike and its rider appears, getting ready for the race.\",The different players,gold,speak to the camera before the race.,get the helmet and tries to get on the hill and back in motion.,carried to the rope as it passes on a snowy track in front of the house.,begin jumping events in the jungle then jump in the air.\n8074,anetv_ZVNRQ_MPZAs,6255,They start racing on the dirt and you can see them going high in the air. the dirt looks a little wet and muddy like it was raining previously but that obviously,They start racing on the dirt and you can see them going high in the air.,the dirt looks a little wet and muddy like it was raining previously but that obviously,gold,excuses throughout the screen.,does not matter to the racers.,were out of chain version.,is used to be viciously angry.\n8075,anetv_ZVNRQ_MPZAs,14053,A track is shown with several billboards for monster energy drinks. A dirt bike and its rider,A track is shown with several billboards for monster energy drinks.,A dirt bike and its rider,gold,exit the frame and then dump into a dirt on a machine.,\"appears, getting ready for the race.\",are shown on a banner.,ride in for the camera.\n8076,anetv_ZVNRQ_MPZAs,6254,Views of the very dirt filled field these bikers get to practice with their bikes. They start racing on the dirt and you,Views of the very dirt filled field these bikers get to practice with their bikes.,They start racing on the dirt and you,gold,can see them going high in the air.,can do a backflip.,can join them after start force.,can see their clothes.\n8077,anetv_ZVNRQ_MPZAs,6256,The dirt looks a little wet and muddy like it was raining previously but that obviously does not matter to the racers. this,The dirt looks a little wet and muddy like it was raining previously but that obviously does not matter to the racers.,this,gold,\"is their hobby, what they do for fun on their down time.\",we see an approaching ending scene and a person shoot a small boy in a winter competitions.,is not the first time we saw him right on the left.,hit a bad rabbit who looks drunk and puffing from the sun and over the shell as the camera pans all around him.\n8078,anetv_ZVNRQ_MPZAs,14055,The different players speak to the camera before the race. They,The different players speak to the camera before the race.,They,gold,continue the biking from several ramps.,have an injured part at the win and compete.,\"are shown kicking up dirt as they fly around the track, taking sharp turns.\",get to their feet and begin to improve their action.\n8079,lsmdc0053_Rendezvous_mit_Joe_Black-71315,9442,\"Finally someone rises from the table, starts out. Someone\",\"Finally someone rises from the table, starts out.\",Someone,gold,\"stares ahead, mesmerized, looking frightened, his eyes wide.\",\"leaves, leaving someone as them for a funeral.\",\"is about to press the point, but then drifts into disappointed silence as someone leaves the room.\",knocks the cloth over his wand.\n8080,lsmdc0053_Rendezvous_mit_Joe_Black-71315,9443,\"Someone is about to press the point, but then drifts into disappointed silence as someone leaves the room. Someone\",\"Someone is about to press the point, but then drifts into disappointed silence as someone leaves the room.\",Someone,gold,pours someone a cup of coffee and some coffee.,\"moves deliberately down the hall, slows as he nears the doorway to the library.\",goes down the stairs to her mother's apartment.,stops and slides over.\n8081,lsmdc0053_Rendezvous_mit_Joe_Black-71315,9444,\"He hesitates before he crosses the threshold, taking in as much as his eye can see, now tentatively, he enters. Someone, poised in the doorway,\",\"He hesitates before he crosses the threshold, taking in as much as his eye can see, now tentatively, he enters.\",\"Someone, poised in the doorway,\",gold,listens as he places his hand on his shoulder.,swings into a big room where tree - lined tables.,\"looks around, nothing in sight.\",is in place.\n8082,anetv_tkHJgKq3jTs,7812,Man walks to a woman and start talking in te corner of the room. man,Man walks to a woman and start talking in te corner of the room.,man,gold,spins around on a rug in an empty room and talks to a woman and woman.,is working out on a indoor street in front of the camera talking.,is holding a ball next to the christmas tree putting the balls.,is using a ping pong racket and talking to the camera.\n8083,anetv_tkHJgKq3jTs,7811,Man talks to the one who was standing by the tree and gives him a barbie. man,Man talks to the one who was standing by the tree and gives him a barbie.,man,gold,is in the room drinking beer and trying to dodge the other.,pours salt into a can and washes the pan.,walks of the room.,walks to a woman and start talking in te corner of the room.\n8084,anetv_tkHJgKq3jTs,7810,Woman is in an offece talking to a men that are decorating a christmas tree. man,Woman is in an offece talking to a men that are decorating a christmas tree.,man,gold,talks to the one who was standing by the tree and gives him a barbie.,is skating in a lawn chair in a yard.,gets the rope on top of the cake and begins rubbing it on the christmas tree.,is standing in a green court in front of a rowboat.\n8085,anetv__IlyE43ZUH8,12392,He picks up several window screens while he talks about them. He,He picks up several window screens while he talks about them.,He,gold,adds them to the stack and walks away.,cuts it off without leaving.,plays with the machine and gives a thumbs up.,is a large envelope.\n8086,anetv__IlyE43ZUH8,12390,An ad for Beckon Call services appears. A man,An ad for Beckon Call services appears.,A man,gold,throw a discus shown in the field.,is wearing a blue combed mohawk.,is standing in a backyard speaking.,plays with a third dog.\n8087,anetv__IlyE43ZUH8,12391,A man is standing in a backyard speaking. He,A man is standing in a backyard speaking.,He,gold,woman is sitting in a chair doing exercise.,holds a paintbrush and begins showing up the blow mower.,picks up several window screens while he talks about them.,turns the refrigerator and completes several blocks.\n8088,lsmdc0023_THE_BUTTERFLY_EFFECT-59669,3780,Someone unlocks the door and is moved by what he sees. Someone,Someone unlocks the door and is moved by what he sees.,Someone,gold,\"strides past a door, which someone opens, coming alongside her.\",closes the door and joins inside.,\"is strapped onto a metal bed, his arms and legs in tight leather restraints.\",\"fall, and the two men disappear out of the shadows.\"\n8089,lsmdc0023_THE_BUTTERFLY_EFFECT-59669,3779,He looks in every room of the wing until he finds. Someone,He looks in every room of the wing until he finds.,Someone,gold,reappears in the corridor doorway.,unlocks the door and is moved by what he sees.,someone looks into her eyes.,\", someone's bedroom is.\"\n8090,anetv_bfBTnUiGVUo,576,\"A young boy is standing in front of a sink brushing his teeth and dancing. After awhile, he\",A young boy is standing in front of a sink brushing his teeth and dancing.,\"After awhile, he\",gold,wraps his hands around the boy's neck while putting the boy on the bathroom stool.,talks to the camera and rinses his hands and dishes in the sink.,grabs the toothbrush and continues talking and end.,stops to spit in the sink and continues to dance.\n8091,anetv_bfBTnUiGVUo,577,\"After awhile, he stops to spit in the sink and continues to dance. Finally, the young boy is finished, he\",\"After awhile, he stops to spit in the sink and continues to dance.\",\"Finally, the young boy is finished, he\",gold,takes to drink ice cream and holds it up on his forehead.,does several more by work out there.,has the plaster down and slow forward.,spits in the sink again and turns to the camera to smile.\n8092,anetv_bfBTnUiGVUo,16339,\"A young boy dressed in shorts and a t - shirt is standing in a bathroom with his left foot on a colorful mat and his right hand on the sink, and he's brushing his teeth with his left hand. The boy briefly stops dancing and his brushing his teeth and\",\"A young boy dressed in shorts and a t - shirt is standing in a bathroom with his left foot on a colorful mat and his right hand on the sink, and he's brushing his teeth with his left hand.\",The boy briefly stops dancing and his brushing his teeth and,gold,close up his eyes.,forehead right left legs and scores the side.,\"spits it out, and rubs the nose of the dog's face.\",just stares at himself in the mirror.\n8093,anetv_bfBTnUiGVUo,16340,The boy briefly stops dancing and his brushing his teeth and just stares at himself in the mirror. The boy,The boy briefly stops dancing and his brushing his teeth and just stares at himself in the mirror.,The boy,gold,bends down to adjust the blindfold and then uses it for his camera.,continues to kick past the cop to go back to the conversation they have already come over.,looks down at the mirror and begins shining his shoes.,\"starts dancing and brushing his teeth again, spits in the sink brushes his teeth again and continues to dance.\"\n8094,anetv_bfBTnUiGVUo,16341,\"The boy starts dancing and brushing his teeth again, spits in the sink brushes his teeth again and continues to dance. The boy\",\"The boy starts dancing and brushing his teeth again, spits in the sink brushes his teeth again and continues to dance.\",The boy,gold,spits into the sink then gives a big smile to the camera.,sucks the little girl creasing the brow and rubs the back of her neck and talks to the camera.,sits on the top and towels his hands and face before digging out.,drains his hair very close in the mirror as the fight moves further in the screen.\n8095,anetv_RzMKERQ9vOU,4634,A man is seen sitting on the floor speaking to the camera. He,A man is seen sitting on the floor speaking to the camera.,He,gold,lays down and begins demonstrating how to do a proper sit up.,begins moving up and down the floor while the woman watches him.,puts tiles on a floor and slides a rag into the wall.,lifts a weight over his head.\n8096,anetv_RzMKERQ9vOU,6590,A man is seen sitting on the floor speaking to the camera and pointing to his body then laying on the floor. The man,A man is seen sitting on the floor speaking to the camera and pointing to his body then laying on the floor.,The man,gold,continues to move hands all around the room and speaks to the camera.,is then seen dipping a mop into the sink while a man behind him follows.,continues to point to his body and leads into him performing sit ups on the ground as well as lifting his feet up.,continues to throw tennis balls and ends by sitting down.\n8097,anetv_RzMKERQ9vOU,6591,The man continues to point to his body and leads into him performing sit ups on the ground as well as lifting his feet up. He,The man continues to point to his body and leads into him performing sit ups on the ground as well as lifting his feet up.,He,gold,moves his arms up and then ends by sitting up on the mat.,turns around to show more players being shown behind him while the camera pans around him many times.,adjusts his balance and moves his arms back and fourth in his chair.,dismisses the ball with the fists as well as to his feet and places on top of the handle.\n8098,anetv_RzMKERQ9vOU,4635,He lays down and begins demonstrating how to do a proper sit up. The man,He lays down and begins demonstrating how to do a proper sit up.,The man,gold,continues to speak while doing sit ups and moving his arms and legs.,\"goes through the bars, gets up and jumps before lifting the weights on his shoulders.\",\"lifts a weight over his head while tapping his hands, then hunches over on his board.\",then continues cutting the man's arms with other men.\n8099,anetv__8HTgaTPFRo,3945,Man is washing a contac lens and opens the eye and with the index finger put it on the right eye. man,Man is washing a contac lens and opens the eye and with the index finger put it on the right eye.,man,gold,is talking to the camera very looking in china to demonstrate how to make a tutorial using an electric triple cycle style.,grab the rod hat and grab both hands to extend it and tilt the handle with the solution.,is sitting in front of a table showing how to put contact lenses.,is wearing sunglasses talking to the camera before showing the video of the battery.\n8100,anetv_wMwJObSq21Y,6604,They start stepping up on a stool and working out. The woman in front,They start stepping up on a stool and working out.,The woman in front,gold,is holding them in a swing leave her.,is wearing a skirt and leading the group.,has a peace sign on his hands.,begins adjusting the new sequence stick.\n8101,anetv_wMwJObSq21Y,11682,\"Several women are in a workout room, with pink steppers placed on the ground in front of them and silver fans on the wall. The instructor then\",\"Several women are in a workout room, with pink steppers placed on the ground in front of them and silver fans on the wall.\",The instructor then,gold,begins stepping up and down on the mat and begins the routine.,does a tip full of ballet later and speeds apart with a brush knocking her back once the music ends.,pushes the weights forward then walk up and down the exercise beam.,begins doing different martial arts moves with twist carved on the perimeter of the scene to show a number of spectators.\n8102,anetv_zMWhT5Rv6WE,6785,She speaks enthusiastically with her hands and begins playing the drums. She,She speaks enthusiastically with her hands and begins playing the drums.,She,gold,continues keeping the bag taking banging hands and picking up a new drummer made.,pauses to speak to the audience while still hitting the drums here and there.,walks away down the hallway from the stage.,continues dancing and ends by holding a little bit of water she started and laughs to it.\n8103,anetv_zMWhT5Rv6WE,6784,A woman is seen speaking into the microphone behind a set of drums. She,A woman is seen speaking into the microphone behind a set of drums.,She,gold,continues playing around the gymnasium and ends by holding a pose while speaking to the camera.,begins holding up the guitar and dipping it into a pair of bongo drums.,continues moving along as well as the host woman speaking.,speaks enthusiastically with her hands and begins playing the drums.\n8104,anetv_zMWhT5Rv6WE,9301,A woman is show sitting behind a set of bongo drums speaking into a microphone. She,A woman is show sitting behind a set of bongo drums speaking into a microphone.,She,gold,continues speaking to an audience while moving her arms around behind the set of drums.,performs a flip on the instrument while stopping to record.,plays another harmonica while speaking to her.,continues to play and ends by laughing and laughing.\n8105,anetv_daSrmaPxaZA,2818,A set of black boots are shown on a small table along with a bottle oil and a rag in front of a woman. The woman,A set of black boots are shown on a small table along with a bottle oil and a rag in front of a woman.,The woman,gold,\"puts cream on the board, dries it into a clear bowl and puts it in the sink.\",\"peels the liquid of wax down the adhesive strip, finally stepping out of the panel to watch it in the woman's grip.\",uses the tape to wet the liquid and now is using the iron throughout to clean.,then grabs the rag and puts olive oil on it and begins polishing the boots.\n8106,anetv_daSrmaPxaZA,2819,The woman then grabs the rag and puts olive oil on it and begins polishing the boots. She then,The woman then grabs the rag and puts olive oil on it and begins polishing the boots.,She then,gold,dries the cleaner and rubs all soap around the face.,applies a towel to some window to make sure it's done.,pauses with the rags and starts talking.,puts an orange strip on a faucet and wipes the bottom.\n8107,anetv_WEoelJQYlxk,14604,A picture of a man washing a car is shown and leads into several men washing the same car. The men,A picture of a man washing a car is shown and leads into several men washing the same car.,The men,gold,vacuum the inside as well as clean the dashboard and entire interior and exterior.,pull out the foil and take off together and blow shortly after one cleans and ends by showing hanging clothes.,route to the other side of the car where the car rolls together and shows one putting a hose to the van.,continue dancing together and beginning to stand at the camera.\n8108,anetv_WEoelJQYlxk,14605,The men vacuum the inside as well as clean the dashboard and entire interior and exterior. The car,The men vacuum the inside as well as clean the dashboard and entire interior and exterior.,The car,gold,continues to trim and the second couple close in.,pans all around the people as they play with the wire.,is seen a lot and then cutting the ends of a blue car.,is shown off again in the end all clean.\n8109,anetv_qqLiKDMtps8,17236,They've rode over dirt humps. They,They've rode over dirt humps.,They,gold,push the straps on the dogs fur in unison and then roll the broom with cape owners and start attempting to dry the horses.,'ve also rode over sand humps in the building and other humps in a race.,\"move down a sidewalk, towards the instructor room.\",install the stones hard above the spikes and do the same and throws someone fancy.\n8110,anetv_qqLiKDMtps8,17235,These two people shown here are riding their bikes over snowy humps outside. They,These two people shown here are riding their bikes over snowy humps outside.,They,gold,is using guns to replace cars in a town.,'ve rode over dirt humps.,\"are leaving their horses behind, then hang on.\",engage in the horses in several shots.\n8111,anetv_RoHYo2x9gbc,302,We see the man take a handful of grass and wipe the scythe head with it. The man,We see the man take a handful of grass and wipe the scythe head with it.,The man,gold,pulls something from his pocket and rubs it on the scythe.,starts clipping the paint from the paper.,picks the snow with his paws and throws it at the hill.,sharpens the blade of his polish and returns it with a gun.\n8112,anetv_RoHYo2x9gbc,303,The man pulls something from his pocket and rubs it on the scythe. The men then,The man pulls something from his pocket and rubs it on the scythe.,The men then,gold,blows tools afterwards on it after laying out pieces.,begin his cube while moving to an object.,return to cutting the grass.,raise their middle arms.\n8113,anetv_RoHYo2x9gbc,301,We see three men in a field cutting tall grass with a scythe. We,We see three men in a field cutting tall grass with a scythe.,We,gold,watch the man.,see the man take a handful of grass and wipe the scythe head with it.,see a runner fighting for the camera.,see shots of men and men cutting a rope.\n8114,lsmdc3051_NANNY_MCPHEE_RETURNS-24722,17978,Someone descends the stairs in a flowing white gown of layered tulle. She,Someone descends the stairs in a flowing white gown of layered tulle.,She,gold,is as big as a shield.,removes a pair of clippers and gives a wild look.,watches she puts down her robe.,wears a silky veil.\n8115,anetv_GtYf9VsPHO0,4855,A close up of a sandwich is shown followed by ingredients and a woman speaking to the camera. Several ingredients,A close up of a sandwich is shown followed by ingredients and a woman speaking to the camera.,Several ingredients,gold,are laid out and shown close up one by one while the woman mixes them all together in a bowl.,are added to the bowl as well as pouring liquid into a strainer down.,are then shown laid out on a counter and various objects are shown followed by a scoring cake on cake.,are shown followed by a man cutting food on four sides and putting them into a bowl with the food.\n8116,anetv_GtYf9VsPHO0,4856,Several ingredients are laid out and shown close up one by one while the woman mixes them all together in a bowl. She then,Several ingredients are laid out and shown close up one by one while the woman mixes them all together in a bowl.,She then,gold,mixes the ingredients around and mixing them together followed by people her speaking to the camera.,pours the mixture onto a slice of break and presents it on a plate while speaking continuously.,mixes ingredients all together in the pan and leads into them cutting and drinking an ice cream.,mixes several ingredients and mixing them together onto a bowl while pushing it onto a counter.\n8117,anetv_VbP9fOp-Umg,782,\"She's in the middle of the street wearing a red tanktop, shorts, and flip flops. There\",\"She's in the middle of the street wearing a red tanktop, shorts, and flip flops.\",There,gold,is a young lady doing her tutorial on shuffle rigorous while filmed.,see the two man closer by the stairs.,are lots of people watching her while she does the batons outside.,puts down a bunch of heavy laundry when caucasian comes in and places it in her hand.\n8118,anetv_VbP9fOp-Umg,783,\"There are lots of people watching her while she does the batons outside. When she ''s done, the music stops playing and a few people\",There are lots of people watching her while she does the batons outside.,\"When she ''s done, the music stops playing and a few people\",gold,watch him go the way.,appear on the end.,clap for her performance.,skips happily down the sidewalk.\n8119,anetv_VbP9fOp-Umg,781,This young woman is dancing with the baton in her hands. She,This young woman is dancing with the baton in her hands.,She,gold,stops twirling and does the same thing then quickly cracks herself upward.,walks back to her place and she starts walking in the living room.,\"'s in the middle of the street wearing a red tanktop, shorts, and flip flops.\",does a blind flip in the air back into beautiful martial arts style.\n8120,anetv_xfVx1-emCV8,13223,The video starts with a curling game being shown from overhead. The camera then,The video starts with a curling game being shown from overhead.,The camera then,gold,focuses on the person standing under the small bed watching.,returns to big tennis players throwing the ball through the goal.,moves on the shooting scoreboard and sticks straight into the goal.,shows a lady skating across the ice.\n8121,anetv_xfVx1-emCV8,13224,The camera then shows a lady skating across the ice. Then the camera,The camera then shows a lady skating across the ice.,Then the camera,gold,\"pans all to the children on the oven, moving the board about or teaching the volleyball.\",transitions to different people singing in the ocean tinted screens to find a surfer walking behind.,\"guiltily moves up and joins people on the ice, the bartender speaks the camera yielding an ice cream cone.\",focuses back onto the curling game showing a lady about to shoot.\n8122,anetv_xfVx1-emCV8,13225,Then the camera focuses back onto the curling game showing a lady about to shoot. They,Then the camera focuses back onto the curling game showing a lady about to shoot.,They,gold,return to the overhead angle of the game while the lady prepares to shoot.,are shown with a fellow coach on a diving board.,is playing a game of badminton on the ground.,removes the letters who are walking in the background.\n8123,anetv_xfVx1-emCV8,13226,They return to the overhead angle of the game while the lady prepares to shoot. Other players,They return to the overhead angle of the game while the lady prepares to shoot.,Other players,gold,gather out into the dojo.,move the cards away from the scores.,shoot his arrows at each other.,are shown watching in anticipation.\n8124,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1763,6760,Someone notices a drawing of herself on the wall. Someone,Someone notices a drawing of herself on the wall.,Someone,gold,glances up at the sun which shines through the windows.,looks at her sheepishly.,\"approaches a policeman driving someone, who exits a van.\",dumps the detailed flowers of paper out the box.\n8125,anetv_ux3h_qEusvw,580,A close up of potatoes are shown as well as a peeler. A person,A close up of potatoes are shown as well as a peeler.,A person,gold,cuts the dough while speaking to the camera.,holds out a the bowl around the ends while another uses slicing is alive.,is then seen peeling the potatoes in front of the camera.,stirs the nuts with a liquid before mixing them in a pot and spreading chopped out of the dough.\n8126,anetv_ux3h_qEusvw,6989,A plate is filled with potatoes on a counter next to a pot. A man,A plate is filled with potatoes on a counter next to a pot.,A man,gold,is mixing a sandwich bowl with lettuce and two of the vegetables.,\"shows off a potato peeler, before recording himself peeling the potatoes with it.\",is spreading the pasta to the counter on a grill and then cleans the white slices on the side.,opens the pizza and takes a pasta bowl out of the can.\n8127,anetv_ux3h_qEusvw,581,A person is then seen peeling the potatoes in front of the camera. The person,A person is then seen peeling the potatoes in front of the camera.,The person,gold,continues peeling and shows the end potatoes.,continues raking around potatoes while others watch.,adds instructions to the ingredients and begins slicing them with vegetables.,begins spraying all the objects and the person using sparks.\n8128,anetv_ux3h_qEusvw,6990,\"A man shows off a potato peeler, before recording himself peeling the potatoes with it. He then\",\"A man shows off a potato peeler, before recording himself peeling the potatoes with it.\",He then,gold,wipes a clear lid of the spaghetti.,uses a frying pan to finish off the sandwich.,puts them on the machine and takes them out of the oven.,\"shows the pot filled with peeled potatoes, and the pile of peelings next to it.\"\n8129,lsmdc0001_American_Beauty-45970,1141,\"Someone quickly rinses off her coffee cup, avoiding his eyes, and starts out. Someone\",\"Someone quickly rinses off her coffee cup, avoiding his eyes, and starts out.\",Someone,gold,\"steps out, his eyes glistening, and he relaxes.\",has slightly lost her hair.,looks at someone to see how he reacts.,passes over to the buffet table and stands besides him.\n8130,lsmdc0001_American_Beauty-45970,1136,We are flying above Robin Hood Trail. We,We are flying above Robin Hood Trail.,We,gold,go into an boat.,spy cameras flapping in the breeze.,are two someone getting back loaded in the snow.,see the burnham's house below us as we approach it steadily.\n8131,lsmdc0001_American_Beauty-45970,1137,\"We are almost on top of the Burnham house now, as someone, wearing sweatpants and running shoes, bursts out of the front door and dashes up the driveway. We\",\"We are almost on top of the Burnham house now, as someone, wearing sweatpants and running shoes, bursts out of the front door and dashes up the driveway.\",We,gold,\"are now at street level, as someone runs toward us.\",\"move along the side of the cars, along the sidewalk.\",banks into the courtyard picnic box.,see who examines the door instead.\n8132,lsmdc0001_American_Beauty-45970,1138,\"We are now at street level, as someone runs toward us. He is in excellent shape; even his posture has changed, and he\",\"We are now at street level, as someone runs toward us.\",\"He is in excellent shape; even his posture has changed, and he\",gold,does n't have the sweat - gun on the counter.,has quietly too looks very uncomfortable it - not really mean anything.,\"moves with the confident, easy swagger of an athlete.\",\"is feeling very tight - - not really happy, and with the glasses gone.\"\n8133,lsmdc0001_American_Beauty-45970,1134,He puts the Digicam down and joins someone on the bed. He,He puts the Digicam down and joins someone on the bed.,He,gold,strokes the dog with a creak.,raises his fists as he speaks.,clutches the photo of his grandma's head and smiles.,\"caresses her hair, gazing into her eyes.\"\n8134,lsmdc0001_American_Beauty-45970,1139,\"The blender grinds as someone, still in his sweatpants, makes himself a high - protein shake. Someone\",\"The blender grinds as someone, still in his sweatpants, makes himself a high - protein shake.\",Someone,gold,grins as a runway pulls away.,watches him blankly from the kitchen table.,walks through the street and catches up with him.,\"watches him go, then the girl makes to charge the equipment to four doors towards the side.\"\n8135,lsmdc0001_American_Beauty-45970,1142,\"Someone continues staring at her father. Finally, he\",Someone continues staring at her father.,\"Finally, he\",gold,acknowledges applause and mutters.,takes blood from his hands.,looks into his room.,glances over at her.\n8136,lsmdc0001_American_Beauty-45970,1133,He lowers the camera and looks at her intently. He,He lowers the camera and looks at her intently.,He,gold,puts the digicam down and joins someone on the bed.,pops a dog's pointy surface on the lid with a silvery smile on his lips.,angrily shakes the man's left hand.,weighs the sheeting down as she runs to check.\n8137,lsmdc0001_American_Beauty-45970,1132,He turns the Digicam off and the tv screen goes blue. He,He turns the Digicam off and the tv screen goes blue.,He,gold,lowers the camera and looks at her intently.,points at her phone.,smiles down at someone who shrugs and smiles back at him.,yanks open the windows and climbs over a couch as someone smokes the cigarette.\n8138,anetv_IFmtu3Sd7iI,6768,Several scuba divers are seen swimming around the ocean while sharks move around them underneath. The camera continuously follows the sharks around the water and the scuba divers,Several scuba divers are seen swimming around the ocean while sharks move around them underneath.,The camera continuously follows the sharks around the water and the scuba divers,gold,\"get back into the water, together.\",are seen swimming around the water and zooming in the water.,interact with one another while they move.,appear to fly in the water to enjoy fun.\n8139,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92979,9031,Each takes a few steps away. Then they,Each takes a few steps away.,Then they,gold,pass two men higher.,climb over the threshold just before entering.,turn again and face each other.,support across the bar.\n8140,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92979,9029,He tosses his cloak to a group of excited girls. Someone,He tosses his cloak to a group of excited girls.,Someone,gold,jumps into her apartment and sets down her cue.,keeps his gaze fixed on the lantern.,steps onto the platform.,emerges from the doorway.\n8141,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92979,9030,Someone steps onto the platform. People,Someone steps onto the platform.,People,gold,change their positions and collect enough money.,\"cross to one of the passengers, does someone out.\",pass a sign near a cafe.,draw their wands and solemnly salute each other.\n8142,anetv_hgTgOjkcvpc,9797,He takes the mallet in his hand and hits the croquet ball to the hoop. He hits the ball and it,He takes the mallet in his hand and hits the croquet ball to the hoop.,He hits the ball and it,gold,falls into the glass.,hits the field at one point.,hits the ground and falls back into it.,lands straight into the hoop.\n8143,anetv_hgTgOjkcvpc,9795,There's a man dressed in all white playing croquet in an open field. there,There's a man dressed in all white playing croquet in an open field.,there,gold,are several chairs arranged in the field.,are two teams playing foosball together in a bowling alley.,'s a man wearing a blue shirt playing with his violin.,is a paper around the wall.\n8144,anetv_hgTgOjkcvpc,9796,There are several chairs arranged in the field. He,There are several chairs arranged in the field.,He,gold,takes the mallet in his hand and hits the croquet ball to the hoop.,nearly no kid against the beach.,looks at his rival barn floor.,\"spots another and makes his way to it, then falls in shock, struggling to all the strength to do it.\"\n8145,anetv_SKtUq_1cOSs,13183,He lifts the weight over his head. He,He lifts the weight over his head.,He,gold,drops it on the ground.,\"lifts the bar, dropping it onto his hands.\",tosses it over his shoulder.,then sits down on the floor.\n8146,anetv_SKtUq_1cOSs,13182,He lifts the heavy weight high up near his face and lifts it back down near his stomach. He,He lifts the heavy weight high up near his face and lifts it back down near his stomach.,He,gold,winces as he tugs.,lifts the weight over his head.,\"trains his eyes on the bars, then shifts his eyes.\",continues laughing as he rapidly lifts the weight over his head.\n8147,anetv_SKtUq_1cOSs,12024,A weight lifter is on a stage outside. He,A weight lifter is on a stage outside.,He,gold,is using a baton on a platform behind him.,lifts a large dumb bell to his chest.,has a man in his body while others crowd around him.,perform a little dance from the other side of the room.\n8148,anetv_SKtUq_1cOSs,13181,A man sitting nearby watches. He,A man sitting nearby watches.,He,gold,lifts the heavy weight high up near his face and lifts it back down near his stomach.,is when a apparatus used.,narrows his eyes as he imagines an arc shooting fiery arrows at times.,lifts the boy over his head and drops it down on the ground.\n8149,anetv_SKtUq_1cOSs,12025,He lifts a large dumb bell to his chest. He then,He lifts a large dumb bell to his chest.,He then,gold,rises and studies the swinging hammer.,yanks it down and pushes it back with a roll.,lifts it over his head.,puts down the set and drops it to his knees before skipping.\n8150,anetv_9BS1II6O7I0,11305,\"After the young man solves again two times the puzzle in less time. At the end, the young man solves the puzzle in less time than the previous times, he\",After the young man solves again two times the puzzle in less time.,\"At the end, the young man solves the puzzle in less time than the previous times, he\",gold,returns to measure the distance.,goes through a half grown man.,raises happy from his chair.,is caught in some mechanical pieces of pineapple.\n8151,anetv_9BS1II6O7I0,11303,\"A young man solves a cube puzzle while a man stand on front him. Then, a man\",A young man solves a cube puzzle while a man stand on front him.,\"Then, a man\",gold,solves a cube in a cell chamber.,writes on a paper and shows the young man.,\"solves a cube puzzle, cube a, and different people in the background.\",\"sits down at the end, pulling the case of the cube.\"\n8152,anetv_9BS1II6O7I0,11304,\"The young man solves again the puzzle is less time, and the man takes note. After the young man\",\"The young man solves again the puzzle is less time, and the man takes note.\",After the young man,gold,solves again two times the puzzle in less time.,crosses his mountain and take up his flute.,gets up and looks up.,shows them he'll bite each quarter.\n8153,lsmdc1009_Spider-Man3-76637,5039,\"He slips away to the stage. Just as someone is about to sing, he\",He slips away to the stage.,\"Just as someone is about to sing, he\",gold,hears a distant rumble.,\"gets to someone, who nods.\",\"looks around his apartments, where he is one ames oblivious to a city carrying oil.\",comes in on piano.\n8154,lsmdc1009_Spider-Man3-76637,5065,\"The storm clouds slowly drift away, leaving a lowering gray sky. Perch tie up on the studded side of the steeple, black - suited someone\",\"The storm clouds slowly drift away, leaving a lowering gray sky.\",\"Perch tie up on the studded side of the steeple, black - suited someone\",gold,\"looks at his hand, flexes his fist, then drops from his perch like a bird shot from a tree.\",starts up with his flashlight.,crosses toward the brown - haired blender.,\"stands, pain etched over her head.\"\n8155,lsmdc1009_Spider-Man3-76637,5047,Someone looks devastated as he leads someone into the center of the dance floor. They,Someone looks devastated as he leads someone into the center of the dance floor.,They,gold,\"start to dance slowly, their faces close together.\",\"continue to hop and soldiers, catching their breath.\",\"run side - by - side for hours, chatting and beaten up, the situation is too heavy.\",\"on the ground, someone are occasionally strumming and forced.\"\n8156,lsmdc1009_Spider-Man3-76637,5031,\"On the pavement, he launches into another hip - thrusting '80s dance routine. People on the street\",\"On the pavement, he launches into another hip - thrusting '80s dance routine.\",People on the street,gold,give him strange looks and hurry on by.,watch the girl who flings it to the railing.,talk to him as they skate down the street to a large road.,watch them as others help and a silvery churns towards them.\n8157,lsmdc1009_Spider-Man3-76637,5051,\"Someone puts his hand on her thigh and raises her leg. As the number ends, he\",Someone puts his hand on her thigh and raises her leg.,\"As the number ends, he\",gold,\"stands fully exposed someone, tapping her gun by his chest.\",bends her over in his arms.,draws her over to a mat of ice from the upper floor.,places the ring on her finger and pulls on her nose.\n8158,lsmdc1009_Spider-Man3-76637,5044,He dances towards someone and rips his black suit jacket off his shoulders. He,He dances towards someone and rips his black suit jacket off his shoulders.,He,gold,\"ties his suit jacket, bends down and grabs them on his leg.\",videotapes someone holding her sister.,throws the bottle into the water of a nearby sink.,tosses the jacket towards someone on stage and strikes a series of poses.\n8159,lsmdc1009_Spider-Man3-76637,5053,Someone's cold black eyes settled on someone who looks devastated. Someone,Someone's cold black eyes settled on someone who looks devastated.,Someone,gold,nods at the hilton.,sets someone on his feet.,follows his gaze and turns to him in shock.,turns off a dirty vent and stands next to someone for some reason.\n8160,lsmdc1009_Spider-Man3-76637,5060,\"His vicious expression turns to wide eyed shock as he realizes what he is done. His eyes well up, then he\",His vicious expression turns to wide eyed shock as he realizes what he is done.,\"His eyes well up, then he\",gold,dodges the pain.,kisses his parted lips.,continues to stare his eye.,glances down at the black spider - man suit under his dark open neck shirt.\n8161,lsmdc1009_Spider-Man3-76637,5045,\"Clicking his fingers, he salsas over to someone holding out his hand. She\",\"Clicking his fingers, he salsas over to someone holding out his hand.\",She,gold,throws a skip and crew a way up the alleyway through the mountains.,\"watches as she draws closer, still a moment, then turns to wind her busy clothes, filling the darkness with sticky tape.\",takes it and rises to her feet.,shoots him with a look and sees something on someone.\n8162,lsmdc1009_Spider-Man3-76637,5063,\"Out in the rains wet street, someone, keeping his hand clasped both his collar, steps into a doorway to think. Drawn by the sound of the bells, he\",\"Out in the rains wet street, someone, keeping his hand clasped both his collar, steps into a doorway to think.\",\"Drawn by the sound of the bells, he\",gold,looks up at the torrential rain pours down.,heads down the corridor towards someone.,is looking down at passing bushes.,\"pauses, busy along.\"\n8163,lsmdc1009_Spider-Man3-76637,5054,She gives someone a reproving look and crosses to someone who's standing motionless behind the microphone. Someone,She gives someone a reproving look and crosses to someone who's standing motionless behind the microphone.,Someone,gold,is armed and his dog is covered with blood.,\"watches them rise, meeting their gaze.\",squats forward and hands the pass to his friend.,pushes her way past someone.\n8164,lsmdc1009_Spider-Man3-76637,5046,She takes it and rises to her feet. Someone,She takes it and rises to her feet.,Someone,gold,frames her dashing away.,leaves in her office.,looks devastated as he leads someone into the center of the dance floor.,lands on one leg and grabs shaving cream from her leg.\n8165,lsmdc1009_Spider-Man3-76637,5061,\"His eyes well up, then he glances down at the Black Spider - Man suit under his dark open neck shirt. Covering the suit with his hand, he\",\"His eyes well up, then he glances down at the Black Spider - Man suit under his dark open neck shirt.\",\"Covering the suit with his hand, he\",gold,\"puts it out, then removes his face and squats.\",turns away from someone and hurries out into the night.,tenderly stands across the train and rolls his feet against a wall.,pulls a lever and plugs.\n8166,lsmdc1009_Spider-Man3-76637,5032,\"On the outskirts of the city water from a sewer outfall drops into a pond, a line of bubbles cleave the water, leaving a trail behind. Drying out and becoming human, someone\",\"On the outskirts of the city water from a sewer outfall drops into a pond, a line of bubbles cleave the water, leaving a trail behind.\",\"Drying out and becoming human, someone\",gold,looks up to see a stack of tartan limbs missing behind it.,\"stares at his hands, dangling from his fingers as the locket and chain with someone's photograph.\",looks back morosely to someone.,opens his front legs left.\n8167,lsmdc1009_Spider-Man3-76637,5062,\"Someone, still sitting on the floor, looks around helplessly. Out in the rains wet street, someone, keeping his hand clasped both his collar,\",\"Someone, still sitting on the floor, looks around helplessly.\",\"Out in the rains wet street, someone, keeping his hand clasped both his collar,\",gold,steps into a doorway to think.,\"looks to him, shaking his head and fades running.\",tries to weave through the tree.,sits with his eyes black.\n8168,lsmdc1009_Spider-Man3-76637,5041,Someone looks up and realizes it's someone playing the piano. He,Someone looks up and realizes it's someone playing the piano.,He,gold,\"sits at the bank, surrounded by the players.\",\"kicks away the stool, leaps onto the piano, and dances over the tables.\",looks up to see a army of sleeping soldiers retreating towards the battlefield.,feels for the source of the song and almost seems to be enjoying his whole conversation.\n8169,lsmdc1009_Spider-Man3-76637,5040,\"Just as someone is about to sing, he comes in on piano. Someone\",\"Just as someone is about to sing, he comes in on piano.\",Someone,gold,takes someone's gloved hand.,\"leans on a wall above the loft, holding a beer.\",looks up and realizes it's someone playing the piano.,\"walks to the front of the room, where the man is lying under a faucet with her back to her.\"\n8170,lsmdc1009_Spider-Man3-76637,5064,A flash of lightning illuminates a Gothic church with a tall studded aspire topped by a stone crucifix. The storm clouds slowly,A flash of lightning illuminates a Gothic church with a tall studded aspire topped by a stone crucifix.,The storm clouds slowly,gold,reveal his pensive son.,\"drift away, leaving a lowering gray sky.\",gather in the courtyard followed by a couple packing his sketch.,\"rise to the sky, which two rocky rises erupt across the crest of minas tirith.\"\n8171,lsmdc1009_Spider-Man3-76637,5038,Someone puts down her tray and hurries up onto the stage. He,Someone puts down her tray and hurries up onto the stage.,He,gold,slips away to the stage.,offers her her arm.,wears a dress with one hand and a pair of silk panties.,\"steps into the street, baring her lid.\"\n8172,lsmdc1009_Spider-Man3-76637,5056,\"Someone hurries from the stage. Someone, looking uncertain,\",Someone hurries from the stage.,\"Someone, looking uncertain,\",gold,puts his hand to his chest.,marches off in the opposite direction.,makes his way up the city.,walks up to her dad.\n8173,lsmdc1009_Spider-Man3-76637,5050,Someone throws her head back. Someone,Someone throws her head back.,Someone,gold,pulls back to watch him go.,puts his hand on her thigh and raises her leg.,lifts her up to her feet and presses her playfully to someone's neck.,turns away and faces her friend.\n8174,lsmdc1009_Spider-Man3-76637,5066,\"He plummets down to a square archway, leading to the bell tower of the imposing cathedral, decorated with an intricate network of Gothic arches and flying buttresses. Inside the cathedral, someone\",\"He plummets down to a square archway, leading to the bell tower of the imposing cathedral, decorated with an intricate network of Gothic arches and flying buttresses.\",\"Inside the cathedral, someone\",gold,taps someone's pipe behind his hand.,joins her parents in arms.,dips his fingers in a font of holy water and crosses himself before the altar.,stands quickly dressed and picks up a grid of monitors and a brown carrier.\n8175,lsmdc1009_Spider-Man3-76637,5030,\"Out on the street, someone jives down the road, making shooting gestures with his fingers at any pretty girl who walks by. He\",\"Out on the street, someone jives down the road, making shooting gestures with his fingers at any pretty girl who walks by.\",He,gold,holds his revolver out of the camera.,leans over a zombie.,swaggers into a clothes shop and comes out wearing a sharp black suit and black open neck shirt.,sees him talking to the younger boy and son.\n8176,lsmdc1009_Spider-Man3-76637,5034,Someone beckons the hostess and slips her a wad of money. He,Someone beckons the hostess and slips her a wad of money.,He,gold,steps on appreciatively after the dealer deals.,steps out from the terrace and addressing observes the passengers.,looks at the dashing someone at home.,\"sits behind her, facing the on - stage back.\"\n8177,lsmdc1009_Spider-Man3-76637,5035,\"He sits behind her, facing the on - stage back. Someone\",\"He sits behind her, facing the on - stage back.\",Someone,gold,tries to put the enthusiasm on him.,sits on the corner of a desk where someone sleeps with her knees up to her chest.,goes by with a tray of drinks.,looks splintering the counter into her kitchen.\n8178,lsmdc1009_Spider-Man3-76637,5049,Someone suddenly throws in a fancy move. Someone,Someone suddenly throws in a fancy move.,Someone,gold,throws her head back.,\"falls, landing in the hallway.\",sneaks up behind someone and takes him from an egg hole.,leans her head against someone's shoulder.\n8179,lsmdc1009_Spider-Man3-76637,5059,\"He lashes out, sending someone careering to the floor. His vicious expression\",\"He lashes out, sending someone careering to the floor.\",His vicious expression,gold,is moving around his skull.,\"gradually turns to violence, and closes over it.\",turns to wide eyed shock as he realizes what he is done.,spills on the floor.\n8180,lsmdc1009_Spider-Man3-76637,5033,\"Drying out and becoming human, someone stares at his hands, dangling from his fingers as the locket and chain with someone's photograph. He\",\"Drying out and becoming human, someone stares at his hands, dangling from his fingers as the locket and chain with someone's photograph.\",He,gold,hands it looks like he is petrified along behind the table.,collapses to the floor with someone's hands on knees and shakes him.,knocks him over as they become fleeing.,gazes at the tiny image.\n8181,lsmdc1009_Spider-Man3-76637,5029,\"Someone sits in someone's chair, helps himself to a bowl of sweets and puts his feet up on the desk with a supercilious smile. People\",\"Someone sits in someone's chair, helps himself to a bowl of sweets and puts his feet up on the desk with a supercilious smile.\",People,gold,will later take the plates from them.,continues to sit with someone and stare their worried expressions.,\"stares aggressively on back at the counter, her smoking pink dress round and flaxen.\",looked at him dumbfounded.\n8182,lsmdc1009_Spider-Man3-76637,5057,\"Someone, looking uncertain, puts his hand to his chest. He\",\"Someone, looking uncertain, puts his hand to his chest.\",He,gold,grabs someone's shirt and folds it into a shirt and nostril.,comes up behind someone with a hostile scowl.,grabs her hand and knocks him affectionately.,starts the blow and flexes his jaw.\n8183,lsmdc1009_Spider-Man3-76637,5042,\"Grabbing a martini from a customer, someone swings across the room on a chandelier, puts his legs around the chair, and slides back across the dance floor, scattering customers. He\",\"Grabbing a martini from a customer, someone swings across the room on a chandelier, puts his legs around the chair, and slides back across the dance floor, scattering customers.\",He,gold,\"drops to the floor, spins the chair, and poses with it.\",talks about the benefits of it.,points at the white three of them.,pulls aside his bathrobe.\n8184,lsmdc1009_Spider-Man3-76637,5037,Someone notices someone glance at her. Someone,Someone notices someone glance at her.,Someone,gold,eyes someone with a heavy - frown.,\"sits eating on a crossbar, hangs, and smiles.\",stands with him to him.,puts down her tray and hurries up onto the stage.\n8185,lsmdc1009_Spider-Man3-76637,5043,\"He drops to the floor, spins the chair, and poses with it. He\",\"He drops to the floor, spins the chair, and poses with it.\",He,gold,runs into the bathroom and hands someone a towel.,lifts it and hurls it to the floor.,squints from his breast pocket and rubs a hand across his lips.,dances towards someone and rips his black suit jacket off his shoulders.\n8186,lsmdc1009_Spider-Man3-76637,5048,\"They start to dance slowly, their faces close together. Someone suddenly\",\"They start to dance slowly, their faces close together.\",Someone suddenly,gold,throws in a fancy move.,veers into someone's blonde gaze.,\"approaches slowly, raising his brow.\",\"leaps a little forward to them, wrapping him with a web of horns.\"\n8187,lsmdc1045_An_education-90150,7406,\"He looks at her imploringly, then grins. She\",\"He looks at her imploringly, then grins.\",She,gold,can't help to grin back.,watches him and flinches.,frowns to herself and shrugs.,takes it in her hand.\n8188,lsmdc1045_An_education-90150,7412,\"On a colonnaded balcony, someone hold up two glasses. At night the Bristol\",\"On a colonnaded balcony, someone hold up two glasses.\",At night the Bristol,gold,lie near a wall in the early light of day.,arrives back at someone's house.,pulls out as a hooded wagon drives past.,\"talks to left, hug.\"\n8189,lsmdc1045_An_education-90150,7410,He takes her hand and twirls her around. They,He takes her hand and twirls her around.,They,gold,rotate away as they go.,make it toward the crowd.,hug and slow dance in the street.,bully kicks him.\n8190,lsmdc1045_An_education-90150,7407,She can't help to grin back. He,She can't help to grin back.,He,gold,reaches her apparently patient.,\"narrows his eyes and walks to her, staring out the window at the intensely dark shape.\",\", someone wraps her arms around his neck, squeezes him tight.\",takes all of her bags.\n8191,lsmdc1045_An_education-90150,7411,\"They hug and slow dance in the street. On a colonnaded balcony, someone\",They hug and slow dance in the street.,\"On a colonnaded balcony, someone\",gold,walks toward the bar.,lies on the floor in front of her.,hold up two glasses.,marches into a red room.\n8192,lsmdc1045_An_education-90150,7414,Someone sits glumly in the passenger seat. Someone,Someone sits glumly in the passenger seat.,Someone,gold,picks up the card.,is reading an email address.,looks from someone to his daughter.,looks across at her.\n8193,lsmdc1045_An_education-90150,7413,At night the Bristol arrives back at someone's house. Someone,At night the Bristol arrives back at someone's house.,Someone,gold,sits glumly in the passenger seat.,gives someone a box of bulbs.,is someone's art too fed the home.,hides outside of the door with her bayonet attached.\n8194,lsmdc1045_An_education-90150,7415,\"Someone looks across at her. Wearing a tight smile, she\",Someone looks across at her.,\"Wearing a tight smile, she\",gold,manages a coy smile.,cocks her head in a wooden chair.,does n't look at him.,puts on a cigarette.\n8195,lsmdc1045_An_education-90150,7409,She makes a show of pulling away. He,She makes a show of pulling away.,He,gold,walks into the darkened living room where someone type has been asleep.,takes her hand and twirls her around.,finds a shimmering handbag on the back inside of the bathroom.,\"crosses to someone, who squeezes his eyes shut.\"\n8196,anetv_eFq3gsEi9yI,9024,\"Another angle is shown and the person takes 21 shots at the balls. For the twenty - second shot, a man\",Another angle is shown and the person takes 21 shots at the balls.,\"For the twenty - second shot, a man\",gold,\"pulls them through the lane too, and does it back while trying to fall the ball.\",\"jumps in the board, and rolls over a blue sign.\",stands the other throws into the camera as a tanker is shown.,is standing in a large field of white pegs and begins to hit all three balls at the same time in different directions.\n8197,anetv_MWnYL4JiMP0,17162,A large group of people are seen standing in a room. A woman,A large group of people are seen standing in a room.,A woman,gold,stands up and begins hitting the balls into frame.,walks in front and leads an exercise class.,is then seen dancing down and dancing.,puts off the shoes on a washing machine.\n8198,anetv_MWnYL4JiMP0,17163,A woman walks in front and leads an exercise class. The people,A woman walks in front and leads an exercise class.,The people,gold,exit the building and a group of cheerleaders exercise.,follow behind the woman dancing and do the same thing she does.,continue peeling and exercising around a microphone.,are at work out then standing with the coach watching the dancers.\n8199,anetv_MWnYL4JiMP0,7206,\"A large group of women are standing in a dance room with walled mirrors, wooden floors and red words appear on the screen that say en Sus Marcas Listos Fuera Daddy Yankee. One woman wearing a pink and black top jumps to the front of the group near the mirror and she\",\"A large group of women are standing in a dance room with walled mirrors, wooden floors and red words appear on the screen that say en Sus Marcas Listos Fuera Daddy Yankee.\",One woman wearing a pink and black top jumps to the front of the group near the mirror and she,gold,\"continues talking, about her going on, raising her feet, looking accusingly at the floor crying.\",quickly begins to dance as the women behind her follow her every move as best as they can.,attempts one to jump back in both directions of poses while the other woman behind them swings on to side to side.,lifts up the young person again and elbows the floor the whole time and then bends up and turns off to the left.\n8200,anetv_E-M2Cq0RNTs,2793,A man is pouring water into a white bucket. He,A man is pouring water into a white bucket.,He,gold,sprays water on the car.,drinks the water a few times and smiles.,is spraying a sink with sprayer.,begins spraying the window with both hands.\n8201,anetv_E-M2Cq0RNTs,18960,The man then hand washes a yellow corvette. the man,The man then hand washes a yellow corvette.,the man,gold,sands down two man and two little women in the court.,wraps the suit and threw the yellow plastic cup across the ground.,hoses down the yellow corvette.,begins talking from the first.\n8202,anetv_E-M2Cq0RNTs,2794,He sprays water on the car. He,He sprays water on the car.,He,gold,stands there and shrugs then turns to the camera crew.,dips a towel into the bucket and starts washing the car.,\"sprays it back on the stroller, and someone stomps out in a puddle.\",\"sprays the windows with his scraper, showing the speeds.\"\n8203,anetv_E-M2Cq0RNTs,18959,Man is hand washing a black jeep. the man then hand,Man is hand washing a black jeep.,the man then hand,gold,dragged in the other direction.,wash out the hand solution and covers the side.,something on his face and wet it.,washes a yellow corvette.\n8204,anetv_o8n1YnT8ZZ8,14179,Lemons are juiced one at a time and then put in a pot with sugar. Sparkling water is added and then the mixture,Lemons are juiced one at a time and then put in a pot with sugar.,Sparkling water is added and then the mixture,gold,is stirred for the texture again.,is poured into a sponge.,is poured into a small plate and a liquid.,is added to this creating sparkling lemonade.\n8205,anetv_QBXswoKU4S4,335,Four individuals are in a small rectangular patch of dirt in the middle of a large green football field. A player with a wooden paddle then,Four individuals are in a small rectangular patch of dirt in the middle of a large green football field.,A player with a wooden paddle then,gold,falls on the sand to a graphic.,turns the second woman onto the heel.,hits the ball that was thrown to him as someone in the outfield grabs it.,solves the cube with the yellow element that is in his hands.\n8206,anetv_QBXswoKU4S4,12935,The ball is hit and another catches the ball and throws it back. Several more shots of people playing,The ball is hit and another catches the ball and throws it back.,Several more shots of people playing,gold,are shown as well as waiving at the camera.,are shown and leads into several clips of men playing croquet with them.,are shown as well a team members watching and laughing on the side.,are shown while people ride around in the water.\n8207,anetv_QBXswoKU4S4,336,Some time passes and the game continues as the the man throws another ball that is n't acceptable. More pitches are thrown and then the game,Some time passes and the game continues as the the man throws another ball that is n't acceptable.,More pitches are thrown and then the game,gold,continues as players one by one and hold the ball up.,begins and lit with special effects.,continues on with the coach celebrating.,ends with the teams walking back and forth and hand shaking one another on their performance.\n8208,anetv_QBXswoKU4S4,12936,Several more shots of people playing are shown as well a team members watching and laughing on the side. A player,Several more shots of people playing are shown as well a team members watching and laughing on the side.,A player,gold,shakes hands with another and shows a slow motion recap of the previous play.,score and the team mates are shown clapping and showing a picture and showing how to play different games by himself.,hits the front and a woman attempts move and a person jumps to a position and serves him in the mouth.,performs a slow tutorial along the interviewed waters and showing more shots of the game as well as the player.\n8209,anetv_QBXswoKU4S4,12937,A player shakes hands with another and shows a slow motion recap of the previous play. The players all huddle up and speak and,A player shakes hands with another and shows a slow motion recap of the previous play.,The players all huddle up and speak and,gold,shake hands before shooting a ball and another goal to the band.,\"focus continues on summoning his life,.\",shows one walking away followed by several more.,\"remain on, as well as clips of fencing players.\"\n8210,anetv_EkwX8Swnut8,7512,\"A boy sits behind the wheel of car, driving and talking to the other passengers in the car. The car\",\"A boy sits behind the wheel of car, driving and talking to the other passengers in the car.\",The car,gold,travels down a winding highway as the camera pans between the people talking at the time.,is on the road while the old lady is walking on the road and goes in.,is crew alive with the red man.,pass a car that has a lot skiing on it.\n8211,anetv_EkwX8Swnut8,7513,\"The people in the car eventually arrive at a snow covered slope where they don ski apparel and begin to ski on the slopesdoing flips, going down hills and jumping off of elevated platforms. At one point of the boys\",\"The people in the car eventually arrive at a snow covered slope where they don ski apparel and begin to ski on the slopesdoing flips, going down hills and jumping off of elevated platforms.\",At one point of the boys,gold,jumping sand shown skiing and jumping to the rope.,begin getting off a steep mountain surround the ground.,falls on the ground and huddles in the fetal position on the snow.,snowboard across the lake recording the exploding humans from their ramps.\n8212,anetv_r4bI22hGTg4,397,There are kids bouncing in trampolines. Several kids,There are kids bouncing in trampolines.,Several kids,gold,hit the wall and run in circles.,are jumping up and down.,are spread boards on front a large field where people are watching them.,are riding around in the parking lot.\n8213,anetv_JMpwIWxoB5s,12106,A woman is talking about how to create lemonade from the ingredients. She,A woman is talking about how to create lemonade from the ingredients.,She,gold,explains how to do the pieces in order to take residue of strawberries on top of a cake.,\"adds eggs in a jar with salt, sugar, cheese, and grated syrup.\",squeezes juice from the lemons and adds sugar and water.,paints the lemons into a mug.\n8214,anetv_JMpwIWxoB5s,12105,A table is shown covered in water bowls and lemons. A woman,A table is shown covered in water bowls and lemons.,A woman,gold,\"pushes a wooden board down the pool, and notices the cookies on a board.\",and another woman are seen as well as the girl brushing the woman hair and gesturing to the camera.,talks to an older man and several shots of women drink.,is talking about how to create lemonade from the ingredients.\n8215,anetv_JMpwIWxoB5s,16881,A close up of ingredients are shown followed by a persons hands moving around the objects. The camera,A close up of ingredients are shown followed by a persons hands moving around the objects.,The camera,gold,pans around the man who is speaking to the camera and puts a ring of food on the table.,pans down as well as putting out ingredients and food.,pans around the objects and shows them all mixed together and poured into glasses.,pans to the man brushing the glue off of the wall.\n8216,anetv_at3YFTd6nEw,903,\"He is wearing gloves and grabs a clamp then hr puts it in her mouth and clamps her lip with it. Then grabs a needle and sticks it through her lip, he\",He is wearing gloves and grabs a clamp then hr puts it in her mouth and clamps her lip with it.,\"Then grabs a needle and sticks it through her lip, he\",gold,fights his way back out.,puts up and hands it to the camera.,takes a free puff.,gets a piercing and puts it on for her.\n8217,anetv_at3YFTd6nEw,902,\"A woman is smiling sitting in a tattoo sitting on the chair waiting patiently, smiling and being over friendly. He\",\"A woman is smiling sitting in a tattoo sitting on the chair waiting patiently, smiling and being over friendly.\",He,gold,appears halfway up the stage to hula event and walks back to the sitting room.,pushes up a rock and begins strumming the harmonica moving her hands and singing.,is wearing gloves and grabs a clamp then hr puts it in her mouth and clamps her lip with it.,lifts the hook from someone's elbow and is high with a camera on both of the jumping.\n8218,anetv_at3YFTd6nEw,904,\"Then grabs a needle and sticks it through her lip, he gets a piercing and puts it on for her. After that she\",\"Then grabs a needle and sticks it through her lip, he gets a piercing and puts it on for her.\",After that she,gold,\"finishes and opens the door, grabs her pants, and swings around the body bound to still.\",gets up off the chair and walks to the mirror to check it out for herself.,goes along the floor with polish on the.,demonstrates how to make the correct time by riding her.\n8219,anetv_993xtlhuVII,10039,A man is shown speaking to the camera holding a violin. The man then,A man is shown speaking to the camera holding a violin.,The man then,gold,leans back and starts playing a boy the guitar.,begins playing the instrument while looking down.,begins pushing the harmonica to the camera while holding it in his hands.,begins playing the instrument and speaking to the camera.\n8220,anetv_993xtlhuVII,10040,The man then begins playing the instrument while looking down. He,The man then begins playing the instrument while looking down.,He,gold,continues playing the game while pausing to speak to the camera.,is then seen in the water dancing while smiling to the camera.,continues to chuckle the harmonica again and talks more to the camera.,continues playing and pauses to speak to the camera.\n8221,anetv_993xtlhuVII,9750,A man is seen looking to the camera while holding a violin. The man then,A man is seen looking to the camera while holding a violin.,The man then,gold,speaks to the camera as well as playing in the microphone with one smiling.,begins playing the instrument while the camera zooms in on his fingers.,walks off the beach into the area.,puts the instrument down and continues playing.\n8222,anetv_993xtlhuVII,9751,The man then begins playing the instrument while the camera zooms in on his fingers. The man,The man then begins playing the instrument while the camera zooms in on his fingers.,The man,gold,finishes and throws the flute down some more.,finishes playing and looks off into the distance.,continues to push the drums around and ends by holding onto guitar.,continues to play and stops to speak to the camera.\n8223,lsmdc0051_Men_in_black-70885,9319,\"The Perp kicks him in the nuts, then scrambles to his feet and takes off again. Someone tries to follow, but a bus\",\"The Perp kicks him in the nuts, then scrambles to his feet and takes off again.\",\"Someone tries to follow, but a bus\",gold,pulls in front of him.,\"passes by, slamming the door behind him.\",hits someone in the groin.,bursts away from someone.\n8224,lsmdc0051_Men_in_black-70885,9317,\"Reacting quickly, someone bats it out of the Perp's hand. The weapon\",\"Reacting quickly, someone bats it out of the Perp's hand.\",The weapon,gold,\"rotates above his head, bringing his eyeglasses to his forehead.\",slows as the little girl slams the cylinder forward.,\"deflects someone 'cane, knocking the view back.\",smashes into the stone wall surrounding central park and shatters into a million pieces.\n8225,lsmdc0051_Men_in_black-70885,9325,He pulls on a third. It,He pulls on a third.,It,gold,\"swings open - - - - revealing someone on the other side, breathing hard.\",\"hangs above his head, becoming its compartment.\",starts to go away.,is glued to the television.\n8226,lsmdc0051_Men_in_black-70885,9320,\"The Perp flies past him, having leapt from twenty feet down to the top of the Guggenheim. On the roof, the perp\",\"The Perp flies past him, having leapt from twenty feet down to the top of the Guggenheim.\",\"On the roof, the perp\",gold,run out the huge windows by a huge bay window.,breaks from a crammed full of people.,\"reaches the top, climbs over the edge, and crunches to the gravel surface.\",sprawls as a huge stone hovering cross it from the center of the sky.\n8227,lsmdc0051_Men_in_black-70885,9318,The weapon smashes into the stone wall surrounding Central Park and shatters into a million pieces. The Perp,The weapon smashes into the stone wall surrounding Central Park and shatters into a million pieces.,The Perp,gold,\"kicks him in the nuts, then scrambles to his feet and takes off again.\",returns back to the first religious and the youths run to cover the front of someone's car wheel.,climbs out into the clearing.,commands someone to wrap the drinks again and drag them.\n8228,lsmdc0051_Men_in_black-70885,9316,\"Someone is thrown for a moment, which is all the time the Perp needs to pull out. Reacting quickly, someone\",\"Someone is thrown for a moment, which is all the time the Perp needs to pull out.\",\"Reacting quickly, someone\",gold,starts out of the room and staggers forward and wriggles rapidly on the desk and window frame.,\"stares at his reflection on the pavement, holding up to him.\",bats it out of the perp's hand.,reaches the top in the snow and picks up snow as he sits at the table in front of someone's.\n8229,lsmdc0051_Men_in_black-70885,9326,\"It swings open - - - - revealing someone on the other side, breathing hard. He\",\"It swings open - - - - revealing someone on the other side, breathing hard.\",He,gold,\"slaps his shoulder, as he reaches out to her.\",aims his weapon at the perp.,locks himself on the door as someone steps into the hall.,takes again and presses his hands up.\n8230,lsmdc0051_Men_in_black-70885,9321,\"On the roof, the perp reaches the top, climbs over the edge, and crunches to the gravel surface. He\",\"On the roof, the perp reaches the top, climbs over the edge, and crunches to the gravel surface.\",He,gold,\"runs to the front door of the museum, shoots it open and runs inside.\",fiddles with his foot and lurches through a line of small text that fronted from its inner door snags it beyond his base.,checks his map on his bedside tv.,finds some ghetto toys in his bag as he hangs beside the wall.\n8231,lsmdc0051_Men_in_black-70885,9314,He pulls out his badge that hangs from a chain under his shirt. Someone,He pulls out his badge that hangs from a chain under his shirt.,Someone,gold,pops out the ring and grabs a pen close over his.,mounts the cabin gun.,walks to the check.,\"is about to slap the cuffs on him, when the perp blinks.\"\n8232,lsmdc0051_Men_in_black-70885,9323,He runs from the rotunda up the grand ramp of the Guggenheim. He,He runs from the rotunda up the grand ramp of the Guggenheim.,He,gold,races up the street to someone's house which is almost immediately locked.,board a mat and runs along a balcony.,leaps to his feet and races over to a door.,glares as the sinister man pumps his money.\n8233,lsmdc0051_Men_in_black-70885,9315,\"Someone is about to slap the cuffs on him, when the Perp blinks. Someone\",\"Someone is about to slap the cuffs on him, when the Perp blinks.\",Someone,gold,removes her helmet and lets out a district sigh.,leaves a photo of him.,\"is thrown for a moment, which is all the time the perp needs to pull out.\",appears on the screen.\n8234,lsmdc0051_Men_in_black-70885,9322,\"He runs to the front door of the Museum, shoots it open and runs inside. He\",\"He runs to the front door of the Museum, shoots it open and runs inside.\",He,gold,runs from the rotunda up the grand ramp of the guggenheim.,climbs into a smaller box.,uses a long bakery to break maneuver.,\"catches his hand, eyeing it closely.\"\n8235,anetv_mHe2twk5BDE,10719,\"Various still shot pictures of different men, different ages, different races and different sizes appear with white text names appearing over each of their faces. A blue screen then appears and white text words\",\"Various still shot pictures of different men, different ages, different races and different sizes appear with white text names appearing over each of their faces.\",A blue screen then appears and white text words,gold,come out of view while asking a kiss sign on it.,names out that include the name that the red name is.,made and carry out details gives the american a.,appear and say wait!\n8236,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12231,\"People are close behind, each escorted by a Snatcher. Someone\",\"People are close behind, each escorted by a Snatcher.\",Someone,gold,waits eagerly behind the iron gate.,\"turns around, turning.\",\"stops where someone, sees the gun, and draws her.\",\"looks down, his face pressed tightly on his head.\"\n8237,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12226,\"A Snatcher, someone, tosses away someone's wand. Someone\",\"A Snatcher, someone, tosses away someone's wand.\",Someone,gold,\"rotates the essay, killing one one for the fires.\",touches her cheek and sniffs her neck.,studies him then lifts a thin - focus lens up to his features.,shields the axes in a fan - carrying spider.\n8238,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12230,Someone releases his hold as they near the gate. People,Someone releases his hold as they near the gate.,People,gold,wash saws in the sunken valley.,find people in the water.,walk towards a col bench.,\"are close behind, each escorted by a snatcher.\"\n8239,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12232,Someone waits eagerly behind the iron gate. Someone,Someone waits eagerly behind the iron gate.,Someone,gold,rushes to a harbor.,\"pulls a red string necklace inside, blowing a french loaf.\",pulls back someone's fringe to reveal the scar on his forehead.,runs through the bullfighting grounds.\n8240,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12234,Someone has someone on his knees in front of the people. She,Someone has someone on his knees in front of the people.,She,gold,\"arrest trade, and people proceed to the porch.\",joins his men and walks past a group of people.,looks expectantly at draco.,\"ceases, closing his eyes, and glances over.\"\n8241,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12228,\"Someone, his wand in his hand, walks over to someone. He\",\"Someone, his wand in his hand, walks over to someone.\",He,gold,stops and studies him.,\"stands up, runs his hands up his leg, and sniffs.\",turns and walks down the stairs.,picks up a blue blanket.\n8242,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12225,Someone dissolves in a swirling black cloud in front of the old Grindelwald. Someone,Someone dissolves in a swirling black cloud in front of the old Grindelwald.,Someone,gold,snatches off his glasses.,looks out by the sun.,\"is in his kitchen, siting on his aunt's bunk.\",seethes as well as a special workout minus type cocktail.\n8243,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12227,\"Someone touches her cheek and sniffs her neck. Someone, his wand in his hand,\",Someone touches her cheek and sniffs her neck.,\"Someone, his wand in his hand,\",gold,walks over to someone.,pulls the elder wand out of the light.,reaches for the wand.,consults the keyboard characters.\n8244,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94483,12229,\"Lying on the ground, someone lowers his head. Someone\",\"Lying on the ground, someone lowers his head.\",Someone,gold,scrutinizes someone's disfigured face.,stands at the foot of another tunnel.,watches someone fall thoughtfully under his blanket.,is staring out the window.\n8245,lsmdc1047_Defiance-91763,12327,\"Later, they are on the march again, with people leading the way on horseback. In the camp, someone\",\"Later, they are on the march again, with people leading the way on horseback.\",\"In the camp, someone\",gold,leads a camel to a garden where an elderly woman lies on the floor.,is in his cabin struggling with a fever.,comes to a counter with a bowl filled with vegetables.,searches someone a duffel bag in a bench.\n8246,lsmdc1047_Defiance-91763,12329,\"Outside, people are patiently in the food queue. Someone and his friend\",\"Outside, people are patiently in the food queue.\",Someone and his friend,gold,past two to approached an bikes.,go out to the planetarium.,walk back towards shore.,are sharing a joke.\n8247,lsmdc1047_Defiance-91763,12333,\"Someone looks over to someone who's standing with his back to them both, tucking into his large portion of food. Someone\",\"Someone looks over to someone who's standing with his back to them both, tucking into his large portion of food.\",Someone,gold,turns it quietly.,comes and sits against the couch!,faces someone with a hungry smile.,pretends not to hear.\n8248,lsmdc1047_Defiance-91763,12328,\"In the camp, someone is in his cabin struggling with a fever. Outside, people\",\"In the camp, someone is in his cabin struggling with a fever.\",\"Outside, people\",gold,are patiently in the food queue.,talk quietly next to him.,hold a fourth tree.,\"descend a grand staircase to school, where someone is draped over a bed.\"\n8249,lsmdc1047_Defiance-91763,12331,Someone runs up to his brother's cabin. Someone,Someone runs up to his brother's cabin.,Someone,gold,lifts a barbell at his head and throws it onto a bench.,brings plates full of food to someone's table.,\"swims on the fire, but he stops him.\",paces his dining table as our family leaves the desert together.\n8250,lsmdc3044_KNOCKED_UP-21009,11967,He curls up in a cushioned chair. Someone,He curls up in a cushioned chair.,Someone,gold,looks at someone curiously.,jams his fist in his mouth.,fits it into her pants then refuses.,\"is ushered into view, his pensive gaze fixed on someone.\"\n8251,anetv_toS-_4Ik5us,12668,\"A band is playing, a person is seen smoking a cigarette, as well as people bartending and speaking to one another. In the end more people\",\"A band is playing, a person is seen smoking a cigarette, as well as people bartending and speaking to one another.\",In the end more people,gold,are seen running around hand cups and cheering with one another.,are seen enjoying the casino and moving around.,are shown playing water interspersed with a shots of people playing and playing them.,speak with the camera as well as a volleyball person working in the camera.\n8252,anetv_mi6wetIKq2w,8146,\"Once it's done being cooled it's removed, sliced on the cutting board, placed on a cooking sheet, and then cooked. The cooked products are then shown on white plates with a cup of coffee and the person\",\"Once it's done being cooled it's removed, sliced on the cutting board, placed on a cooking sheet, and then cooked.\",The cooked products are then shown on white plates with a cup of coffee and the person,gold,is wearing a white hawaiian shirt.,removed it from a sharpening place.,applies to the cake.,picks it up and bites it.\n8253,anetv_mi6wetIKq2w,8144,\"A batch of cinnamon roll cookies on a tray appear and a quick list of the ingredients appear along with the actual ingredients in different bowls. The ingredients are now shown being poured into a large clear bowl getting mixed up with a hand mixer, and instructions occasionally\",A batch of cinnamon roll cookies on a tray appear and a quick list of the ingredients appear along with the actual ingredients in different bowls.,\"The ingredients are now shown being poured into a large clear bowl getting mixed up with a hand mixer, and instructions occasionally\",gold,add mixture in the outer skin of a lemon and add sugar and sugar.,pop up on the screen.,draining it from their mind.,teetering on the entire smooth plastic surface.\n8254,anetv_mi6wetIKq2w,8143,\"An intro filled with special effects of different screens coming together appear and the end result is a square sign that reads getitsweet get it sweet 2014 and the color them is white, pink, dark pink, and brown with the effect of chocolate dripping from the top portion of the sign. A batch of cinnamon roll cookies on a tray appear and a quick list of the ingredients\",\"An intro filled with special effects of different screens coming together appear and the end result is a square sign that reads getitsweet get it sweet 2014 and the color them is white, pink, dark pink, and brown with the effect of chocolate dripping from the top portion of the sign.\",A batch of cinnamon roll cookies on a tray appear and a quick list of the ingredients,gold,of the game are shown.,is left behind the tire.,that has been driven in.,appear along with the actual ingredients in different bowls.\n8255,anetv_exhsUZg_xQA,9421,People are in terraces watching the boy. man,People are in terraces watching the boy.,man,gold,throws and runs over.,claps after the man make the jumps.,is standing with a castle on seashore.,is sitting in a cart in the street.\n8256,anetv_Ti14bsS3RtU,1016,A man cuts parts on a folding table outside and then installs a slate on a roof using power tools and tools from his tool belt. The man,A man cuts parts on a folding table outside and then installs a slate on a roof using power tools and tools from his tool belt.,The man,gold,installs copper pieces to the slate roof that protrude from the roof.,continues to closeup and uses a tool to dig along a metal bag while also recording the movements.,\"finishes, shows himself back and forth to show how the squatting position and tips to how to the area for the video.\",\"continues to change the sheer sunglasses of a shirtless, blue one, then demonstrates how to weld.\"\n8257,anetv_Ti14bsS3RtU,1015,A roofing commercial demonstrates how to fix a slate roof on a house. A man,A roofing commercial demonstrates how to fix a slate roof on a house.,A man,gold,is then shown polishing the tidy adhesive of a car.,talks to the camera to cut the paper that is above the top.,practices a bike on the lawn.,cuts parts on a folding table outside and then installs a slate on a roof using power tools and tools from his tool belt.\n8258,anetv_vEiQlqCy-rI,2832,A goalie is shown saving several balls and being interviewed by a reporter. Many shots,A goalie is shown saving several balls and being interviewed by a reporter.,Many shots,gold,are shown of boys playing soccer and being interviewed and leads into the coach being interviewed.,\"are shown of the matadors making the stunt and watch again, pretty determined who wins their scores.\",are shown of people playing volleyball and others watching on the side.,are shown of dodgeball int they hit their goal.\n8259,anetv_vEiQlqCy-rI,2833,Many shots are shown of boys playing soccer and being interviewed and leads into the coach being interviewed. Many people,Many shots are shown of boys playing soccer and being interviewed and leads into the coach being interviewed.,Many people,gold,cheer with others as well as interacting with one another while others watch on the sides.,speak to one another and continues talking and taking in the shots.,enjoy watching the game and finish with more players being interviewed.,are shown warming up in the end while speaking to one another.\n8260,anetv_-z0ZvJD9gY4,3733,A young man is seen spraying down a dog with water in the middle of an alleyway while the dog moves away from the water. The person,A young man is seen spraying down a dog with water in the middle of an alleyway while the dog moves away from the water.,The person,gold,continues spraying the dog with the hose and standing waiting for the dog.,continues to play with one another and then helps another girl up close.,continuously turns something on the dog and begins a dog with a dog.,continues surfing and grabs more clothes while swinging back and fourth.\n8261,lsmdc3018_CINDERELLA_MAN-8121,796,An overhead view shows people crowding through the stadium entryway. Our view,An overhead view shows people crowding through the stadium entryway.,Our view,gold,\"races down a set of stairs leading back onto the dance floor, dangling her pleasing reflections to see.\",lifts over the rim of the stadium to the rows of sparsely filled seats surrounding the brightly lit boxing ring.,loops down to a pained someone who remains at reception.,\"sweeps past two presents, revealing the large antique of statues and figures.\"\n8262,lsmdc3018_CINDERELLA_MAN-8121,803,He peels off his dress shirt and grabs a coat hanger. Someone briefly,He peels off his dress shirt and grabs a coat hanger.,Someone briefly,gold,\"examines the seat, then gets out.\",lifts his head off a bunch of towels serving as a pillow.,reaches by for her money.,faces his unit who looks up at the bald man.\n8263,lsmdc3018_CINDERELLA_MAN-8121,802,Someone slides down his suspenders. He,Someone slides down his suspenders.,He,gold,pulls his phone from his pocket and picks up the phone.,pulls money from his pocket and steps out of the crowd.,peels off his dress shirt and grabs a coat hanger.,letters appear at the top of a decrepit snowy trail.\n8264,lsmdc3018_CINDERELLA_MAN-8121,774,\"Words appear: Day of the fight, June 13, 1935. Someone\",\"Words appear: Day of the fight, June 13, 1935.\",Someone,gold,changes someone's shot.,'s eyes drift out a candle.,packs a book - sized kit into a bag.,\"drives by, holding the group of steps in her hands.\"\n8265,lsmdc3018_CINDERELLA_MAN-8121,776,Someone and his family walk to the curb. As the fighter,Someone and his family walk to the curb.,As the fighter,gold,arrives at the office.,\"raises a knife to his coat, he stirs.\",reaches for a car door stops.,\"eyeballs someone, he considers.\"\n8266,lsmdc3018_CINDERELLA_MAN-8121,800,He sets down his wedding ring by his pocket watch. Someone,He sets down his wedding ring by his pocket watch.,Someone,gold,looks sadly into a mirror as the plane fastens.,hugs someone between the two older women.,lies on a bench nearby tapping his fingers on his chest and whistling at the ceiling.,smiles from the crowd and drums down his mobile ears.\n8267,lsmdc3018_CINDERELLA_MAN-8121,805,He again gazes at the ceiling. Someone,He again gazes at the ceiling.,Someone,gold,saunters around the room.,wears an imposing gold ring as he sits.,\"eyes them, his mouth open.\",demonstrates his final display for the video.\n8268,lsmdc3018_CINDERELLA_MAN-8121,777,As the fighter reaches for a car door stops. Other families,As the fighter reaches for a car door stops.,Other families,gold,gather inside their cabin.,load the zippo into trucks.,run to the gate.,watch from the sidewalk.\n8269,lsmdc3018_CINDERELLA_MAN-8121,799,\"In the locker room, someone drops some cash on his bag. He\",\"In the locker room, someone drops some cash on his bag.\",He,gold,finds someone waiting with him.,takes a case key down the hallway.,sets down his wedding ring by his pocket watch.,puts his palms in his pockets.\n8270,lsmdc3018_CINDERELLA_MAN-8121,781,\"As she closes her eyes, someone regards his three children standing in a row. He\",\"As she closes her eyes, someone regards his three children standing in a row.\",He,gold,\"stares out the window, his shoulders heave as he means the slat.\",smooths someone's hair and kisses her.,props his chin on his lap and does a back flip.,\"stretched out, onto his back, shoves his top over his hair.\"\n8271,lsmdc3018_CINDERELLA_MAN-8121,779,\"Standing by the car's open door, someone looks back at his wife. His shoulders\",\"Standing by the car's open door, someone looks back at his wife.\",His shoulders,gold,heave as he pulls up the gold chair on his back next to the dock.,shift beneath his crisp blue suit.,heave as he scrambles across the passenger car nearly two.,slouched into his menacing embrace.\n8272,lsmdc3018_CINDERELLA_MAN-8121,797,Our view lifts over the rim of the stadium to the rows of sparsely filled seats surrounding the brightly lit boxing ring. The New York skyline,Our view lifts over the rim of the stadium to the rows of sparsely filled seats surrounding the brightly lit boxing ring.,The New York skyline,gold,looms in the distance.,\"appears across the riverbed, illuminating his way from the street.\",is decorated with softly gray lights.,zooms overhead to reveal costco and cart something we saw earlier earlier.\n8273,lsmdc3018_CINDERELLA_MAN-8121,794,He nods then looks forward. Someone,He nods then looks forward.,Someone,gold,turns her stunned gaze from the priest.,stares at his face.,sits in front of a laptop despondently.,grimaces as the red haired brunette shakes her head.\n8274,lsmdc3018_CINDERELLA_MAN-8121,790,\"Elsewhere, a woman opens a door for someone and her children. As someone walks off, the children\",\"Elsewhere, a woman opens a door for someone and her children.\",\"As someone walks off, the children\",gold,walk through the window.,look down as they follow the waves.,stare in horror at a poster overhead.,wander into their aunt's house.\n8275,lsmdc3018_CINDERELLA_MAN-8121,795,Someone turns her stunned gaze from the priest. Our view,Someone turns her stunned gaze from the priest.,Our view,gold,follows to the many pews filled with working class families.,\"transforms into his beautiful wife, but chatting with her father as lion.\",covers other area of the pumpkin carefully.,\"returns to someone someone concealed in the corner of her bedroom to see where she had gone, studying someone.\"\n8276,lsmdc3018_CINDERELLA_MAN-8121,791,\"As someone walks off, the children wander into their aunt's house. Someone\",\"As someone walks off, the children wander into their aunt's house.\",Someone,gold,eyes a boxy wooden radio as an older man waves to someone.,\"stops from the entrance to the living room and writes a newspaper, holding a painting.\",walks behind the house and pauses.,gulps up the packet and peers inside.\n8277,lsmdc3018_CINDERELLA_MAN-8121,787,Someone ushers her children away. Someone,Someone ushers her children away.,Someone,gold,runs under the bridge.,\"bursts out of the house and heads directly to the edge of the hedge, where handsome backflip into the cage.\",leans on the car's door as he watches his family.,notices someone prints off someone's shoes.\n8278,lsmdc3018_CINDERELLA_MAN-8121,783,His daughter looks up at him seriously. Someone,His daughter looks up at him seriously.,Someone,gold,steps back to someone in town.,kisses someone's forehead.,stands with his back to her as she leaves her stall.,continues to pull away the green sweater with a young smile as her mother stares eyes at him.\n8279,lsmdc3018_CINDERELLA_MAN-8121,798,\"The New York skyline looms in the distance. In the locker room, someone\",The New York skyline looms in the distance.,\"In the locker room, someone\",gold,and someone step out into a spacious office.,opens the rear door for someone.,gazes through a chair at the window to someone.,drops some cash on his bag.\n8280,lsmdc3018_CINDERELLA_MAN-8121,785,He is arching his brow and smiling. She,He is arching his brow and smiling.,She,gold,\"get ups of land sitting below them, hurrying up and down to the range.\",presses her lips into a tight smile and nods slightly.,\", his face by a shirt,.\",incorporates his plumed paddleboards.\n8281,lsmdc3018_CINDERELLA_MAN-8121,782,He smooths someone's hair and kisses her. His daughter,He smooths someone's hair and kisses her.,His daughter,gold,\"nods thoughtfully, then averts her gaze.\",looks up at him seriously.,dashes back and forth as he makes his way towards the dance floor.,\"puts his hand up, someone eyes on and furrows his brow.\"\n8282,lsmdc3018_CINDERELLA_MAN-8121,786,Someone's jaw clenches shut. Someone,Someone's jaw clenches shut.,Someone,gold,ushers her children away.,\"leans forward, leaning against the construction divider.\",wrenches the truck off and starts to dive outside.,touches his stomach by keeping his knuckles on the tabletop.\n8283,lsmdc3018_CINDERELLA_MAN-8121,801,Someone lies on a bench nearby tapping his fingers on his chest and whistling at the ceiling. Someone,Someone lies on a bench nearby tapping his fingers on his chest and whistling at the ceiling.,Someone,gold,\", someone, on his way, looks through a drawer using an ornate cross drawn.\",falls back onto the platform.,\"sits on his desk, and drops his boots.\",slides down his suspenders.\n8284,lsmdc3018_CINDERELLA_MAN-8121,804,Someone briefly lifts his head off a bunch of towels serving as a pillow. He again,Someone briefly lifts his head off a bunch of towels serving as a pillow.,He again,gold,\"carries his office up without pouch, puts it down, then throws the check in inflatable bags.\",\"stops, sees the pool his way.\",gazes at the ceiling.,blows his whips at the city.\n8285,lsmdc3018_CINDERELLA_MAN-8121,792,Someone eyes a boxy wooden radio as an older man waves to someone. Someone,Someone eyes a boxy wooden radio as an older man waves to someone.,Someone,gold,pulls someone to him.,backs away from the fishbowl.,drives back into town.,makes the sign of the cross.\n8286,lsmdc3018_CINDERELLA_MAN-8121,775,\"Later, outside the rundown tenement, a man hurries to a railing overlooking the alley. Someone and his family\",\"Later, outside the rundown tenement, a man hurries to a railing overlooking the alley.\",Someone and his family,gold,\"gather around the palace, searching horror at the buildings.\",walk to the curb.,gather around his car.,sit down in the back with a knife piece.\n8287,lsmdc3018_CINDERELLA_MAN-8121,793,Someone makes the sign of the cross. He,Someone makes the sign of the cross.,He,gold,drives the beetle to a halt to the cops' front yard.,nods then looks forward.,opens the bedroom door and takes out his letter.,gets out of the truck and rides from the other side of the tunnel escorted by the man.\n8288,lsmdc0011_Gandhi-52938,881,\"He glances at her, then slowly lowers her arm and puts the branches of his stethoscope in his ears. He\",\"He glances at her, then slowly lowers her arm and puts the branches of his stethoscope in his ears.\",He,gold,puts the acoustic bell over her heart.,slams someone's cell into someone's lap.,\"slows his pace, bracing his finger over his mom's face.\",\"steps away from the books, he meets his gaze where he thinks and follows her.\"\n8289,lsmdc0011_Gandhi-52938,877,\"Someone still sits, holding someone's hand, staring into nothingness. The doctor\",\"Someone still sits, holding someone's hand, staring into nothingness.\",The doctor,gold,walks back to someone.,\"smiles, turns to the vet.\",looks up as someone grinds his cohorts.,appears in the doorway.\n8290,lsmdc0011_Gandhi-52938,878,The doctor appears in the doorway. He,The doctor appears in the doorway.,He,gold,turns and looks at the doctor.,\"pauses, nods amiably to someone, though someone does not react to his presence at all.\",looks at someone as she heads for the atvs.,\"watches, her hands by her head.\"\n8291,lsmdc0011_Gandhi-52938,884,\"The doctor turns his head slowly to someone. His posture is utterly unchanged, someone's hand still in his lap, his eyes still staring emptily at the floor in front of him, but suddenly tears\",The doctor turns his head slowly to someone.,\"His posture is utterly unchanged, someone's hand still in his lap, his eyes still staring emptily at the floor in front of him, but suddenly tears\",gold,\"fill his eyes, senses her presence.\",falls from his eyes.,\"appear, and he takes in front of an armchair, knocking disbelievingly on the roof.\",begin to run down his cheeks.\n8292,lsmdc0011_Gandhi-52938,879,\"He pauses, nods amiably to someone, though someone does not react to his presence at all. Moving quietly, the doctor\",\"He pauses, nods amiably to someone, though someone does not react to his presence at all.\",\"Moving quietly, the doctor\",gold,puts their hands in the receive from someone's neck and peers over someone.,\"goes to the other side of someone and crouches, and lifts her wrist to feel her pulse.\",turns to look at someone who gives an uncomfortable smirk and walks away into the enamel.,goes to the steps towards the living room and takes own trolley to repair the final action.\n8293,lsmdc0011_Gandhi-52938,882,He puts the acoustic bell over her heart. He,He puts the acoustic bell over her heart.,He,gold,is at vegas extremely late.,\"glances at someone, who only lowers his eyes.\",steps out of her head and climbs up onto a train platform where a crowd is waiting.,\"takes a campbell cone, she swishes it into a fire.\"\n8294,lsmdc0011_Gandhi-52938,883,\"He glances at someone, who only lowers his eyes. The doctor\",\"He glances at someone, who only lowers his eyes.\",The doctor,gold,\"returns to examine it turk completely, then turns over.\",turns his head slowly to someone.,\"closes his side with his hands, not aware that the candidate won't move.\",\"turns to him, then at someone.\"\n8295,lsmdc0011_Gandhi-52938,880,\"He holds it for a moment, then lifts his eyes in doubt and sudden fateful apprehension. He\",\"He holds it for a moment, then lifts his eyes in doubt and sudden fateful apprehension.\",He,gold,\"glances at her, then slowly lowers her arm and puts the branches of his stethoscope in his ears.\",\", very uncertain, in a wheelchair, shows himself one 2 times, doing some tricks.\",\"notices something at the end of the table, then at the screen.\",\"continues, closes his eyes then moves his cold gaze to the big window there - - and rubs it along some wooden stair.\"\n8296,anetv_SfiAcQAPpQ8,9742,He puts ice into the glass and pours drinks into it. He,He puts ice into the glass and pours drinks into it.,He,gold,washes the cards and bowls out of a glass.,stirs it with a straw.,removes the glass into the glass and sets a glass on the table.,rubs the glass and eats it while speaking and then assembling out the cigarette.\n8297,anetv_SfiAcQAPpQ8,9741,A man is standing behind a bar. He,A man is standing behind a bar.,He,gold,put wood oranges to the top of a spherical tank.,puts ice into the glass and pours drinks into it.,are throwing waves at each other.,starts blowing his.\n8298,anetv_Zn84iOuIkDs,19863,He clips the nails on the back of the cat's legs. He,He clips the nails on the back of the cat's legs.,He,gold,still swirls his feet around the cat.,begins to stick his nail along it's nails.,trims the cats nails with her fingers.,picks up the cat when he is done and sets it on the floor.\n8299,anetv_Zn84iOuIkDs,13554,The person then holds up a pair of tweezers and begins cutting the cat's claws. The man,The person then holds up a pair of tweezers and begins cutting the cat's claws.,The man,gold,continues to cut the claws and pets the pat and ends by letting her walk away.,moves the knee around the stump while still looking to the camera and continuing to talk about the nail.,goes back and forth over and over again and fails the cat's claws.,cleans the nail with a mug after across one side of her left eye.\n8300,anetv_Zn84iOuIkDs,19861,A boy is sitting on the ground trying to hold onto a cat. He,A boy is sitting on the ground trying to hold onto a cat.,He,gold,holds the cat on his lap while he clips its toe nails one at a time.,ring won't make him more than a human.,lays on a piece of paper and begins performing various moves while looking out for it.,figure then cuts the teeth when another drop drops slowly into the water and sliding back down to the other.\n8301,anetv_Zn84iOuIkDs,19864,He picks up the cat when he is done and sets it on the floor. The cat,He picks up the cat when he is done and sets it on the floor.,The cat,gold,catches up on an island.,stops to test someone's name.,continues to work on the coat of the cat.,walks away in an angry manner.\n8302,anetv_Zn84iOuIkDs,13553,A close up of a person is seen with a cat in their lap. The person then,A close up of a person is seen with a cat in their lap.,The person then,gold,\"uses the equipment to grab the instruments, and a cat lay in the grass.\",begins cutting the cat's claws.,uses individual performs chopping claws.,holds up a pair of tweezers and begins cutting the cat's claws.\n8303,anetv_Zn84iOuIkDs,19862,He holds the cat on his lap while he clips its toe nails one at a time. He,He holds the cat on his lap while he clips its toe nails one at a time.,He,gold,turns off the light to create the shape underneath.,gets up next to the present.,\"pushes a tool aside, then starts trimming a wooden hedge.\",clips the nails on the back of the cat's legs.\n8304,lsmdc3057_ROBIN_HOOD-27429,14487,\"Other shallow graves dot the hill. As his companions step away, someone\",Other shallow graves dot the hill.,\"As his companions step away, someone\",gold,furrows someone's chin before someone's eyes.,smokes before with another veiled man from a sitting position.,watches as a bird is waterskiing in the ridge.,sets a helmet by someone's grave.\n8305,lsmdc3057_ROBIN_HOOD-27429,14488,\"Now, as a rider approaches a humble country chapel, a word appears - Nottingham. Friar\",\"Now, as a rider approaches a humble country chapel, a word appears - Nottingham.\",Friar,gold,turns as someone arrives and faces a second clergyman.,cut into some sand castles.,stand bundles greek letters on a white satin sheet.,soar low into the air as it passes.\n8306,anetv_eZ_qerXno64,18396,\"A little girl is shown playing table tennis, hitting the ball extremely quickly back and forth over the net. Some of the balls fly past her, but she\",\"A little girl is shown playing table tennis, hitting the ball extremely quickly back and forth over the net.\",\"Some of the balls fly past her, but she\",gold,is still talking about what she did in the hit distance.,continues hitting new balls without pausing.,stops to get up and hits the ball.,\"catches them in the air, proceeds too, once again once end.\"\n8307,anetv_Z0GbQKiufUE,17578,A woman holding towels talks to the camera. The woman,A woman holding towels talks to the camera.,The woman,gold,cuts her hair and starts wearing a curler.,begins to apply lotion onto the back of a mans hair.,\"continues explaining the proper dog and how it is aimed, before they show her garden brushing.\",wipes the window behind her with a towel.\n8308,anetv_Z0GbQKiufUE,17580,The woman sprays a liquid on the window. The woman,The woman sprays a liquid on the window.,The woman,gold,holds two powder bottle on the ceiling.,scrubs the man's face with silver rag.,pours the liquid into her wet clear skin.,resumes wiping the window.\n8309,anetv_Z0GbQKiufUE,17579,The woman wipes the window behind her with a towel. The woman,The woman wipes the window behind her with a towel.,The woman,gold,grabs a towel and brushes the bottom vigorously.,sprays the windows and turns at the faucet.,sprays a liquid on the window.,rinses the horses with a towel.\n8310,anetv_Z0GbQKiufUE,17581,The woman resumes wiping the window. The woman,The woman resumes wiping the window.,The woman,gold,pours coins into the liquid while moving all around.,is looking at the camera.,rubs ice on his hand with a rag bottle.,returns to talking to the camera.\n8311,anetv_GdEKSyad_rk,16948,A man is water skiing on a river. He,A man is water skiing on a river.,He,gold,is shown riding in another raft.,is then seen boarding a hill holding a rope.,\"leans backward, still holding on.\",climbs into a tube beside a covered hill.\n8312,anetv_GdEKSyad_rk,16949,\"He leans backward, still holding on. He also\",\"He leans backward, still holding on.\",He also,gold,forces sides against the wall to protect his kneeling position.,\"lets her fall as she turns, goes in a grave position.\",\"looks very thin, shirtless, as someone is submerged in a path in the patch of woods.\",turns and lifts one foot in the air.\n8313,anetv_sVT71OQjHE0,11642,The woman splatters plaster on the wall and lays it out. She,The woman splatters plaster on the wall and lays it out.,She,gold,continues spreading the plaster and turns to laugh at the camera.,continues running and taking over her feet while continuing to proceed.,measures and cleans something up a table.,continues painting the wall.\n8314,anetv_sVT71OQjHE0,4158,A woman is throwing paint onto a wall. She,A woman is throwing paint onto a wall.,She,gold,take a picture and brush down the fence.,spreads it out with a spatula.,works her brush down on tattoo tools.,is mopping with a mop with a pattern of paint.\n8315,anetv_sVT71OQjHE0,4159,She spreads it out with a spatula. She,She spreads it out with a spatula.,She,gold,poses in front of the wall and gives a thumbs up.,drops the cup and hands it over.,washes a family.,inserts the box into tiny pieces.\n8316,anetv_sVT71OQjHE0,11641,A wall is shown and shows a woman walking into frame. The woman,A wall is shown and shows a woman walking into frame.,The woman,gold,demonstrates dodgeball moves for polish.,runs under two monkey bars while doing flips and tricks.,lifts one arm while occasionally fighting herself.,splatters plaster on the wall and lays it out.\n8317,lsmdc3023_DISTRICT_9-11237,6116,They fly through a sheet metal wall. Someone,They fly through a sheet metal wall.,Someone,gold,\"sets down the bar, a blanket, and a zippo lighter.\",drives on by someone.,sits on one side of a fencing desk.,turns on the others.\n8318,lsmdc3023_DISTRICT_9-11237,6112,\"Abandoning the metal hatch, he races up a narrow path. Gunfire\",\"Abandoning the metal hatch, he races up a narrow path.\",Gunfire,gold,lands in a laser tritium as he nears the building with an horizontal blade.,blast the dirt surrounding him.,takes in the airport's jets.,\"dashes to a recess across the area, then slams.\"\n8319,lsmdc3023_DISTRICT_9-11237,6113,\"Gunfire blast the dirt surrounding him. Elsewhere, someone\",Gunfire blast the dirt surrounding him.,\"Elsewhere, someone\",gold,crawls from the final bomb.,packs in weed posts.,cycles up over a tower as he chained to the courtyard.,runs at a full sprint after another.\n8320,lsmdc1028_No_Reservations-83239,6088,\"In the pouring rain, someone dashes out of his truck outside someone's apartment building. She\",\"In the pouring rain, someone dashes out of his truck outside someone's apartment building.\",She,gold,picks up a wash - up check held in both hands.,\"accelerates forward, starts back to the control booth, her jaw fading.\",puts up an umbrella as he helps her out.,beans herself and empties the bowl in someone's hands.\n8321,lsmdc1008_Spider-Man2-75127,16946,He takes the litter out into the backyard in a plastic bin bag. He,He takes the litter out into the backyard in a plastic bin bag.,He,gold,notices and swaggers around.,fills his bowl with jars and bats the money away.,\"puts his hands in his pockets, and gets up.\",\"strides to the bottom of the garden, not noticing someone sitting on the steps of the house next door.\"\n8322,lsmdc1008_Spider-Man2-75127,16945,Someone struggles to fight back the tears. He,Someone struggles to fight back the tears.,He,gold,\"reaches people, viewing someone, then falls to the ground as he and someone watch over the bridge.\",\"bows over the lifeboat, and hands someone a hat.\",takes the litter out into the backyard in a plastic bin bag.,drops her arms in the air and turns to someone.\n8323,lsmdc1008_Spider-Man2-75127,16944,Someone kisses someone on the cheek and walks away. Someone,Someone kisses someone on the cheek and walks away.,Someone,gold,waves him away and she looks towards the auditorium below.,lowers his wounded gaze as he walks.,struggles to fight back the tears.,\"falls by her arms, clad in pale - silky shirts.\"\n8324,anetv_PPXrVuZAb74,19126,A woman is closing her eyes standing on a diving board. She,A woman is closing her eyes standing on a diving board.,She,gold,does a flip and dives into the water.,is on the beam sitting behind the boat as she out of the camera.,is shown swimming out of it and pushing around it.,finishes shaving her face.\n8325,anetv_PPXrVuZAb74,19127,She does a flip and dives into the water. She,She does a flip and dives into the water.,She,gold,sits down and plants her feet together.,jumps off the board and catches it.,swims to the surface.,hands him a towel before dropping the cup off with a hand.\n8326,anetv_BLmAF2wbTz8,8005,A bartender is shown speaking to the camera while pouring ice into a glass and various liquids into a blender. He,A bartender is shown speaking to the camera while pouring ice into a glass and various liquids into a blender.,He,gold,mixes the ingredients into a mixer and pours them into a mixer jar.,puts ingredients into a mug and holds more shots and ends by speaking to the camera and speaking to the camera watching.,pours several liquors into the glass and throws it into the man still holding on the glass.,pours more ice into the blender and mixes up the liquids all together.\n8327,anetv_BLmAF2wbTz8,8006,He pours more ice into the blender and mixes up the liquids all together. He,He pours more ice into the blender and mixes up the liquids all together.,He,gold,pours out the liquid and places a straw into the glass while the camera pans around.,pours all different liquids into a glass while pausing to speak to the camera.,lays out a bowl of potatoes and complains to the camera as well as a man grabbing the liquor and measure it.,pours all the liquids from a glass into a glass.\n8328,anetv_ZeUNeRiU6YY,15655,The camera follows a person in red pants snowboarding down a slope. The camera briefly,The camera follows a person in red pants snowboarding down a slope.,The camera briefly,gold,pans to show the dirt bike.,pans away from the woman to focus on the slope.,shows the group of men speak on each other.,works out in another sturdy recording the man's voice.\n8329,anetv_ZeUNeRiU6YY,15656,The camera briefly pans away from the woman to focus on the slope. The camera,The camera briefly pans away from the woman to focus on the slope.,The camera,gold,pans around and walks up to the person and starts moving in on the air.,pans away from the woman to focus on the slope.,pans to show the people high in the sky.,moves around to the boat leaving the camera behind the body.\n8330,anetv_JXMD8Obk0yg,8926,A group of guys are sitting on a sectional sofa. One guy,A group of guys are sitting on a sectional sofa.,One guy,gold,is outside playing cards and playing with a magazine.,messes up the man continuously in the car.,stands up and kneels by the coffee table.,throws the ball back.\n8331,anetv_JXMD8Obk0yg,8927,One guy stands up and kneels by the coffee table. A second guy,One guy stands up and kneels by the coffee table.,A second guy,gold,kneels across from the first guy at the coffee table.,puts other objects on a table and records the same round one.,walks in on a black chance tray.,pours a liquid in the empty bottle.\n8332,anetv_JXMD8Obk0yg,10202,Two people get up and start arm wrestling on a table. They,Two people get up and start arm wrestling on a table.,They,gold,\"pull the bull in, and a woman stands with a barbel.\",kick the head up in front of a crowd and they shake hands.,stand up and go back to their seats.,\"are shown outdoors, juggling, confetti on the side, trying to get a ball.\"\n8333,anetv_JXMD8Obk0yg,10201,People are sitting in a room. Two people,People are sitting in a room.,Two people,gold,are doing a game of beer on the floor.,are standing on a floor set.,are playing on a dance.,get up and start arm wrestling on a table.\n8334,anetv_iEaiLh3GZA8,7693,Various shots of a city and people moving are shown that leads into a man scuffing off a shoe. The man,Various shots of a city and people moving are shown that leads into a man scuffing off a shoe.,The man,gold,continues scuffing all the shoes as well as shining the shoe and ends with tying them and presenting them.,mixes sand all along the area and leads into a large group playing drums.,moves around a room doing the same moves while the camera moves in and out of frame.,continues speaking to the camera while looking off into the distance and leads into him standing against a wall.\n8335,anetv_iEaiLh3GZA8,18825,\"An Asian man wore his glove, removed the tie of the shoe. The man\",\"An Asian man wore his glove, removed the tie of the shoe.\",The man,gold,picks up a pair of sneakers and irons it.,puts his axe in a holder.,began brushing the shoes and pour some clear liquid.,turns on the boot and moves both towards the pose.\n8336,anetv_iEaiLh3GZA8,18826,The man began brushing the shoes and pour some clear liquid. The man,The man began brushing the shoes and pour some clear liquid.,The man,gold,began scrubbing the shoes with white cloth and then put the lace back on.,wiped the glasses and began polishing it.,continue to play the water.,again removes his coat and smiles.\n8337,lsmdc0014_Ist_das_Leben_nicht_schoen-54435,13866,\"An elderly, fussy school principal comes over to someone. Someone\",\"An elderly, fussy school principal comes over to someone.\",Someone,gold,stares at them for a long moment.,is a mustached woman who hit the woman.,comes into the scene and turns to face someone.,propped up his wave to someone and bewildered.\n8338,lsmdc0014_Ist_das_Leben_nicht_schoen-54435,13867,Someone comes into the scene and turns to face someone. She,Someone comes into the scene and turns to face someone.,She,gold,heads off with several more slow looking expressions.,falls to the floor.,is waving her dance program at him.,watches with a furrowed brow.\n8339,lsmdc0014_Ist_das_Leben_nicht_schoen-54435,13865,\"People wiggle their fingers at their ears, saluting each other. An elderly, fussy school principal\",\"People wiggle their fingers at their ears, saluting each other.\",\"An elderly, fussy school principal\",gold,holds the ring at each of the houses backs.,comes over to someone.,watches someone have champagne on a coffee table in front of them.,\"appears, laughing against his coach.\"\n8340,anetv_epqnpUCVLK8,18382,A little boy is laying on an exercise ball. The boy,A little boy is laying on an exercise ball.,The boy,gold,falls of and gets back on the ball before he falls off again.,is trying to hit a ball over a net and misses.,puts a pair of shoes on the ground.,is drumming on the floor by foot.\n8341,anetv_epqnpUCVLK8,18383,He tries to sit on the ball but the ball rolls away. He,He tries to sit on the ball but the ball rolls away.,He,gold,drag him off.,stops at a second table and approaches the camera.,removes his round shirt.,retrieves it and continues to sit on and fall off the ball.\n8342,anetv_zdMvd5Cr5jM,11034,A girl looks behind her. The girls,A girl looks behind her.,The girls,gold,do cheer on a gym floor.,turn down and take wags.,sit down as the girls continue to sing.,sit stiffly in their arms to the camera.\n8343,anetv_zdMvd5Cr5jM,8861,A small group of cheerleaders are seen standing ready in the middle of a gym with lots of people watching the in the sidelines. The girls then,A small group of cheerleaders are seen standing ready in the middle of a gym with lots of people watching the in the sidelines.,The girls then,gold,jump onto one another in preparation to end and jump into one another.,walks down the bar when one tries to run up and jumps on and walking with a baton while taking more shots.,jump up on the stage as the team continue to practice with one another and a cheerleaders clap their hands.,perform a routine while people walk in and out of frame and ends with them waving to the audience and walking away.\n8344,anetv_zdMvd5Cr5jM,11035,The girls do cheer on a gym floor. The girls,The girls do cheer on a gym floor.,The girls,gold,throw their somersaults again and cheer them up.,center each other then climb over.,dance then place their feet in each other direction.,leave and walk towards the gym door.\n8345,anetv_-X7fBYN5fBc,11068,Once the gate opens a little cow comes running out and the horse chases after. The rider,Once the gate opens a little cow comes running out and the horse chases after.,The rider,gold,throws a rope at the cow trying to catch it and then jumps off the horse.,stops the chain to expose the horse back a muscle one fell so well.,takes it off the horse tail and then heads back on the horse.,gets down and slides off the horse and drops the boy's arms in the air again.\n8346,anetv_-X7fBYN5fBc,11069,The rider throws a rope at the cow trying to catch it and then jumps off the horse. After he jumps off the horse he,The rider throws a rope at the cow trying to catch it and then jumps off the horse.,After he jumps off the horse he,gold,starts to pin the cow down and tie the rope around its legs very roughly.,takes off and starts jumping rope on the ground.,grabs a calf and falls away from the mountain.,catches it by his neck and climbs into position.\n8347,lsmdc0014_Ist_das_Leben_nicht_schoen-55010,1886,From his expression he looks like he'll call the nearest cop. Someone,From his expression he looks like he'll call the nearest cop.,Someone,gold,throws a magazine out of the coffee table to him and then catches it.,\"rubs his head with his hand, to clear his mind.\",\"pauses, returns his attention to the curb, and sees a case of books on his back to someone.\",slings his rifle on the car and opens his bedroom door.\n8348,lsmdc0014_Ist_das_Leben_nicht_schoen-55010,1883,\"He has been leaning against the wall on it, tipped back on two legs. The tollkeeper's chair\",\"He has been leaning against the wall on it, tipped back on two legs.\",The tollkeeper's chair,gold,is not barking down towards him holding the bleeding.,slips out from under him with a crash.,\"is already creased, looking and comfortable, as much to the equally misty woman.\",\"is almost at someone, smug, and slightly amused.\"\n8349,lsmdc0014_Ist_das_Leben_nicht_schoen-55010,1884,The tollkeeper's chair slips out from under him with a crash. Tollkeeper,The tollkeeper's chair slips out from under him with a crash.,Tollkeeper,gold,music - dressed someone approaches.,lurches free and pretends for his hand.,rises and makes his way warily out the door.,something rushes out of the door.\n8350,lsmdc0014_Ist_das_Leben_nicht_schoen-55010,1885,Tollkeeper rises and makes his way warily out the door. From his expression he,Tollkeeper rises and makes his way warily out the door.,From his expression he,gold,turns into a fiery substance.,lurches back down keeping his back to someone.,finds himself in the lurking fear of his sisters.,looks like he'll call the nearest cop.\n8351,lsmdc0014_Ist_das_Leben_nicht_schoen-55010,1887,\"Someone rubs his head with his hand, to clear his mind. He\",\"Someone rubs his head with his hand, to clear his mind.\",He,gold,holds some money into his hand.,looks up at someone standing beside him.,has someone ushered into the sitting room and calls across the screen on his left.,sees a sketch of the dirty man lying alone on the floor.\n8352,anetv_I2Y-5EEXAE0,8708,Red polka dot balloons are shown before we see a kitchen. A chef,Red polka dot balloons are shown before we see a kitchen.,A chef,gold,is seen in some soup boils on a large rink.,\"sits up in a kitchen, then leaps down onto the drink.\",is standing behind the counter with all the supplies for making a reuben sandwich.,dips a model camera into a pan.\n8353,anetv_I2Y-5EEXAE0,8709,A chef is standing behind the counter with all the supplies for making a reuben sandwich. He,A chef is standing behind the counter with all the supplies for making a reuben sandwich.,He,gold,\"spreads butter in a pan, then cooks the bread with the toppings as he stacks them together.\",is a large structure filled with shrubs by house in garden.,\"takes a spoonful of controlled eggs, and some pasta, and a fork with one and pours it.\",lick the sandwich three times to see the cookies on the screen.\n8354,anetv_I2Y-5EEXAE0,8710,\"He spreads butter in a pan, then cooks the bread with the toppings as he stacks them together. He\",\"He spreads butter in a pan, then cooks the bread with the toppings as he stacks them together.\",He,gold,\"cuts the sandwich in half, turning the halves toward the camera as he continues talking about the finished product.\",lays a plate on the frittata.,\"slices a sandwich on the floor, then carries the bar.\",breaks a glass chamber and dips a potato into a piece of ice.\n8355,anetv_I2Y-5EEXAE0,7828,The man then puts butter into a pan as well as bread and other ingredients. He then,The man then puts butter into a pan as well as bread and other ingredients.,He then,gold,uses a spatula to scrape the white pepper and lemons inside the bowl.,finishes by making a sandwich and cutting it up to show to the camera.,puts baking soda into the pot and brings them up to see wood.,places the brush down the pasta and mixes some ingredients and fries it.\n8356,anetv_I2Y-5EEXAE0,7827,Several shots are shown of a restaurant with a man speaking to the camera. The man then,Several shots are shown of a restaurant with a man speaking to the camera.,The man then,gold,steps around and hits the ball with the racket.,shows the presenting paper back to the camera.,rubs sunscreen on his face while also washing and throwing on clothes.,puts butter into a pan as well as bread and other ingredients.\n8357,anetv_DQXJ8OU7Ox4,4990,An introduction comes onto the screen for a female weight lifting competition. One of the female weight lifters,An introduction comes onto the screen for a female weight lifting competition.,One of the female weight lifters,gold,gives an emotional kick from the man to hammer throw.,is shown on the screen as she goes through several increasing levels of lifts one by one.,tries to do the belly routine.,leads her to a stop.\n8358,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2636,16898,\"Drawing back, we find someone lying on the twisted end of the track. Someone\",\"Drawing back, we find someone lying on the twisted end of the track.\",Someone,gold,hobbles over to him.,smiles as she brushes her hair.,is banging his head in a makeshift hammock.,hugs two teen girls in the crowd.\n8359,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2636,16899,Someone hobbles over to him. He,Someone hobbles over to him.,He,gold,sits down and picks up the bags.,shuts the door.,\"his hands, he smiles.\",reaches out and gives him a hand.\n8360,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2636,16897,\"A massive black cloud of smoke rises from the abyss and blots out our view of the play. Drawing back, we\",A massive black cloud of smoke rises from the abyss and blots out our view of the play.,\"Drawing back, we\",gold,find someone lying on the twisted end of the track.,hear them singing into a radio in the opposite direction.,see a four - year old woman whispering on her own.,appear into a white and bright glow of curled similar to it.\n8361,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2636,16900,\"He reaches out and gives him a hand. The President helps his mentor to his feet, then they both\",He reaches out and gives him a hand.,\"The President helps his mentor to his feet, then they both\",gold,fall to the floor.,focus even after dropping on a stretcher.,swing for a brief moment and his ammo slices open.,\"remain hunched over, catching their breath.\"\n8362,anetv_djE5A2S1Ezg,13710,A woman stands in front of a fence with a dog in the background and talks to the camera. A man joins the woman in talking to the camera and then the man,A woman stands in front of a fence with a dog in the background and talks to the camera.,A man joins the woman in talking to the camera and then the man,gold,explains in walking castle.,take pictures of the dog.,begins to paint the wooden fence with a brush.,is to tie the case neatly while the woman dry her hair.\n8363,anetv_djE5A2S1Ezg,13709,A man and woman stand outside of an unpainted brown wooden fence and demonstrate how to paint it using two techniques. A woman,A man and woman stand outside of an unpainted brown wooden fence and demonstrate how to paint it using two techniques.,A woman,gold,stop and close up and press in behind her.,is pushed while an intro leads into clips of gymnasts playing shuffle.,mows down on the yard and move out later.,stands in front of a fence with a dog in the background and talks to the camera.\n8364,anetv_djE5A2S1Ezg,9907,The inside of a carport and fence are shown with a woman and a dog sitting in front of the fence. The woman,The inside of a carport and fence are shown with a woman and a dog sitting in front of the fence.,The woman,gold,walks to the painting and cuts a piece of wood on a fence.,is talking to the camera.,trims the paintbrush while smiling.,jumps up in pain and talks to the camera for the judges.\n8365,anetv_djE5A2S1Ezg,13712,The man then begins to paint the fence with a spray bottle. The woman,The man then begins to paint the fence with a spray bottle.,The woman,gold,continues wiping the car all around the yard while covering plaster.,wipes the water off with a towel as he continues to brush.,uses the tool to remove shingles from the floor.,returns to talk to the camera again.\n8366,anetv_djE5A2S1Ezg,13711,A man joins the woman in talking to the camera and then the man begins to paint the wooden fence with a brush. The man then,A man joins the woman in talking to the camera and then the man begins to paint the wooden fence with a brush.,The man then,gold,uses nail polish on her lips to brush it.,begins to paint the fence with a spray bottle.,\"stick to the view and brushes all along the surface, still drawing up from ahead of her.\",sprays a fence on the fence.\n8367,anetv_djE5A2S1Ezg,9910,He is then shown spraying the paint on with a sprayer. The video,He is then shown spraying the paint on with a sprayer.,The video,gold,ends with the pair talking to the camera again.,ends with the finished product by running away.,shows the closeup of a dog inside.,is shown again several times.\n8368,anetv_djE5A2S1Ezg,9909,The man is shown painting the fence white. He,The man is shown painting the fence white.,He,gold,takes pictures with different cars.,cleans a chair on the top of the hedge.,have a sponge brush to wash the snow.,is then shown spraying the paint on with a sprayer.\n8369,anetv_djE5A2S1Ezg,9908,A man appears alongside her. The man,A man appears alongside her.,The man,gold,stops to face the woman.,proceeds to apply water on the blow.,is shown painting the fence white.,pushes a truck along the ground.\n8370,lsmdc3077_THE_VOW-35410,10147,\"She pulls out a sexy lingerie bask with a black laced trimmed bust. Holding it up, she\",She pulls out a sexy lingerie bask with a black laced trimmed bust.,\"Holding it up, she\",gold,clutches its spikes and gawks.,styles it around with her other foot.,purses her lips and mocks a seductive expression.,holds in the dancer.\n8371,lsmdc3077_THE_VOW-35410,10149,Someone's reflection in the window shows her loving smile as she waves back. Someone,Someone's reflection in the window shows her loving smile as she waves back.,Someone,gold,finds someone sitting alone.,\"holds an arm out of a car window, as someone drives.\",walks away from the group.,\"hands the gun package to someone, strides back to the armchair, looks round.\"\n8372,lsmdc3077_THE_VOW-35410,10142,\"At another cafe, a pale and red - nosed someone shrugs her open sweater onto her shoulders and serves drinks. She\",\"At another cafe, a pale and red - nosed someone shrugs her open sweater onto her shoulders and serves drinks.\",She,gold,\"closes her legs, comforts her coy puppy, and puts down her glass.\",frowns at a box left on a table by a window.,brings her tea lightly over her head and tastes it.,points at the window on the table with the same motions.\n8373,lsmdc3077_THE_VOW-35410,10143,She frowns at a box left on a table by a window. She,She frowns at a box left on a table by a window.,She,gold,press through the window blinds.,\"wipes her nose with a tissue, then heads over.\",faces her lunch outside the taxi.,takes something out paper.\n8374,lsmdc3077_THE_VOW-35410,10145,He gestures and she opens the gift. She,He gestures and she opens the gift.,She,gold,reads a note on a box of tissues.,\"finishes, looks back again and then scoops again.\",\"shakes her head, displaying her to iron.\",opens an album and wraps the leafs around it.\n8375,lsmdc3077_THE_VOW-35410,10137,\"Later in a dine - in spot called Mnemonic, someone hides two chocolates from a box behind his back. They each\",\"Later in a dine - in spot called Mnemonic, someone hides two chocolates from a box behind his back.\",They each,gold,take off their glasses and move drinks.,show someone dribbling the hand.,adds chocolate ice cream to it.,take a bite from a chocolate.\n8376,lsmdc3077_THE_VOW-35410,10148,\"With a wave, someone heads away. Someone's reflection in the window\",\"With a wave, someone heads away.\",Someone's reflection in the window,gold,shows an image of a scottish model on stage.,shows someone as he spots someone writhing beneath.,shows her loving smile as she waves back.,reflects off his face.\n8377,lsmdc3077_THE_VOW-35410,10138,They each take a bite from a chocolate. She,They each take a bite from a chocolate.,She,gold,watches a beacon high into the sky and high water.,offers him a glass of red wine.,\"bites her lip and pours a whiskey into the glass, then replaces it in her mouth.\",heads into someone's office.\n8378,lsmdc3077_THE_VOW-35410,10135,\"She looks him in the eye. Considering, she\",She looks him in the eye.,\"Considering, she\",gold,struggles to rouse her friend.,\"looks at him thoughtfully, then eyes him.\",dashes back at the shattered crewman.,allows an amused smile.\n8379,lsmdc3077_THE_VOW-35410,10146,\"She takes out a photo of someone holding a guitar. Holding his gaze, she\",She takes out a photo of someone holding a guitar.,\"Holding his gaze, she\",gold,presses the photo to her chest.,goes to her front door and finds it open.,presses his lips to her neck and presses the buttons.,\"licks her lips, toward her hand.\"\n8380,lsmdc3077_THE_VOW-35410,10136,\"She closes her driver side door and triggers her keychain remote. Later in a dine - in spot called Mnemonic, someone\",She closes her driver side door and triggers her keychain remote.,\"Later in a dine - in spot called Mnemonic, someone\",gold,grins into a movie and faces the teacher.,draws a line and paces down the sidewalk holding a box.,is putting a bomb under the puppet suit.,hides two chocolates from a box behind his back.\n8381,lsmdc3077_THE_VOW-35410,10139,\"She offers him a glass of red wine. As he takes a sip, she\",She offers him a glass of red wine.,\"As he takes a sip, she\",gold,clasps her hands in his chest.,puffs out her breath.,rises from her knees.,plucks the straw fedora off his head and tries it on herself.\n8382,lsmdc3077_THE_VOW-35410,10144,\"She wipes her nose with a tissue, then heads over. Finding a photo of herself on the box's lid, she\",\"She wipes her nose with a tissue, then heads over.\",\"Finding a photo of herself on the box's lid, she\",gold,signs one of the kites.,lifts her gaze and sees her handsome companion standing outside in the pouring rain.,\"sticks her own finger over one open mouths, then turns it on.\",sketches slowly past all the portraits of the graphs.\n8383,lsmdc3077_THE_VOW-35410,10150,\"With a smile, someone hits a switch. As she puts her power window up she\",\"With a smile, someone hits a switch.\",As she puts her power window up she,gold,holds someone's gaze.,lands on the floor of the bed.,pulls herself off of a purple door.,sees someone looking at a couple outdoor tables.\n8384,anetv_K1G84xfLr9s,17943,\"A girl walks onto a mat, bowing before the judges. She\",\"A girl walks onto a mat, bowing before the judges.\",She,gold,performs several martial arts moves using a large wooden stick.,continues holding the baton and does the splits on the side.,attempts to play several more times.,smiles at before and sticks her head in her hands and begin to take her weight before applying judges to the ground.\n8385,anetv_K-kJ-0nkKZk,18080,A set of hands are seen putting brush into a stack of sticks and then places cotton in the pile. He then,A set of hands are seen putting brush into a stack of sticks and then places cotton in the pile.,He then,gold,begins to demonstrate how to move knives with different colors and other tools and tools.,picks up the package and begins putting on a resistance paper and pointing them down.,lights a match and creates a fire and then bends over the fire to put more in.,cuts the bolts of the tightening into frame.\n8386,anetv_K-kJ-0nkKZk,18081,He then lights a match and creates a fire and then bends over the fire to put more in. The camera,He then lights a match and creates a fire and then bends over the fire to put more in.,The camera,gold,closes in on the pit and is seen placing logs around the side.,zooms in to show the camera outside.,fades on the way.,pans all around a man making a pan and begins to play song on the street.\n8387,anetv_lfllVwgOWBk,15254,The old man goes into the house and brings out a brush. The old woman and girl sit down and the old woman,The old man goes into the house and brings out a brush.,The old woman and girl sit down and the old woman,gold,looks at him in disbelief.,brushes the girls hair.,hold red flower on their hands.,blows out a painting of someone.\n8388,anetv_lfllVwgOWBk,2092,A man and woman are seen talking that leads into two women talking. The man,A man and woman are seen talking that leads into two women talking.,The man,gold,continues sponges and begins using a tool on another other's wrists.,mixes the ingredients under the ski.,walks in and out of frame while the woman brushes the other's hair.,gets up and demonstrates how to play a harmonica.\n8389,anetv_lfllVwgOWBk,15253,\"And old man, old woman and girl are talking. The old man\",\"And old man, old woman and girl are talking.\",The old man,gold,smiles and talks to the camera.,goes into the house and brings out a brush.,gets his supplies and leads them onward.,jumped once the pie and is flung to the rope in the monkey barrier.\n8390,anetv_lfllVwgOWBk,2093,The man walks in and out of frame while the woman brushes the other's hair. The man,The man walks in and out of frame while the woman brushes the other's hair.,The man,gold,rides the dog around in the dog while throwing it into the camera.,is then shown spreading snow from a fence and putting on the hair and occasionally putting an iron on his face.,speaks angrily with them and walks out of frame.,mixes the ornaments on the end as well as braiding.\n8391,lsmdc1024_Identity_Thief-82774,18154,\"A second officer promptly tases her, sending her sprawling. Someone\",\"A second officer promptly tases her, sending her sprawling.\",Someone,gold,opens a lamppost and drives off with him.,spots someone and darts from a roof smash into the wall.,jolts up to her hands and knees and looks around.,\"stands on his cell phone, wearing a dazed stare.\"\n8392,lsmdc1024_Identity_Thief-82774,18150,She abruptly turns and embraces him. He,She abruptly turns and embraces him.,He,gold,puts her hand to her back and kisses her hungrily.,looks at her and smiles.,pushes someone out of the way.,points across the basement at the house.\n8393,lsmdc1024_Identity_Thief-82774,18149,Someone rises from the picnic table and passes behind him. She,Someone rises from the picnic table and passes behind him.,She,gold,leads someone away from the dance area.,abruptly turns and embraces him.,swallows a half of the piece of meat on the table.,sets a wine tray in front of him.\n8394,lsmdc1024_Identity_Thief-82774,18147,\"Someone pulls a document out of a large, yellow envelope and inspects it. She\",\"Someone pulls a document out of a large, yellow envelope and inspects it.\",She,gold,turns on a lamp on a towering desk.,sets it on one table beside a suite.,\"examines it, reaching into his pocket.\",\"pats the birth certificate, then slides it over to someone.\"\n8395,lsmdc1024_Identity_Thief-82774,18148,\"She pats the birth certificate, then slides it over to someone. Someone\",\"She pats the birth certificate, then slides it over to someone.\",Someone,gold,steps at the door.,rides the second bike across the lawn.,rises from the picnic table and passes behind him.,turns her car to someone.\n8396,lsmdc1024_Identity_Thief-82774,18153,She throat - punches the guard. A second officer,She throat - punches the guard.,A second officer,gold,\"freezes, then turns around towards the full - in - key as someone tries to go with her foot.\",leads them to the door to the dressing room area.,uses the bottle to take off his attacker.,\"promptly tases her, sending her sprawling.\"\n8397,lsmdc1024_Identity_Thief-82774,18155,Someone jolts up to her hands and knees and looks around. Someone,Someone jolts up to her hands and knees and looks around.,Someone,gold,\"hugs her close, then picks up his blue shirt.\",\"flips it over, knocking him down the bed.\",goes to narrow up the balls.,shakes his head and leaves.\n8398,anetv_yvOOFjG-FEo,1397,A man stands at a table and talks to the camera. the man,A man stands at a table and talks to the camera.,the man,gold,moves a cup of water.,shows off an item from the angles and presents its contents.,uses the knife to sharpen his scissors.,throws the knives and begin punching it.\n8399,anetv_yvOOFjG-FEo,1398,The man moves a cup of water. the man then,The man moves a cup of water.,the man then,gold,throws the fish into the air and continues to demonstrate it to give them a look.,holds up a tennis racket and shows how to use it.,puts boiling water into a smaller pot and pours food on the plate and the man grabs the plate and walks around.,takes an iron and begins to iron a towel.\n8400,anetv_yvOOFjG-FEo,18513,\"The man then moves to the side of the table and starts to iron a white towel. Once the towel is hot, he\",The man then moves to the side of the table and starts to iron a white towel.,\"Once the towel is hot, he\",gold,goes back to it on the wool and puts it into his mouth.,removes the mop and places it on the floor behind the bar.,drains the water and brings it down to another swimmer.,takes it and begins to clean the surface of the table.\n8401,anetv_yvOOFjG-FEo,18512,A man is standing in a room behind a brown table with several items on it. The man then,A man is standing in a room behind a brown table with several items on it.,The man then,gold,moves to the side of the table and starts to iron a white towel.,puts the cards back on the table and put his hand in.,fights the boy with a stick.,demonstrates how to clean and wash the mans hands.\n8402,anetv_Lzvtnr4gT8Y,13297,A person in a red shirt is laying down on a bed. Someone,A person in a red shirt is laying down on a bed.,Someone,gold,is shaving the leg of the person.,takes the baton out of his hands and kicks.,is doing crunches on the ground.,is on a sidewalk watching the throw.\n8403,anetv_Lzvtnr4gT8Y,13298,Someone is shaving the leg of the person. They,Someone is shaving the leg of the person.,They,gold,files back again at a table and pushed to the area.,trudges off bureau square.,sit up and put their legs on the floor.,jump over the edge of the diving board.\n8404,lsmdc3081_THOR-37600,14061,The blonde man turns and smiles toward three men standing to the right of the king. The king,The blonde man turns and smiles toward three men standing to the right of the king.,The king,gold,makes her way to the sleek and silver pink club.,stands and thumps his spear on the floor.,crosses a little away from the first right of someone's shirt.,watches his hands as he ends his performance.\n8405,lsmdc3081_THOR-37600,14059,The blonde man pumps his arm overhead as he strides toward the waiting king who watches expressionless. The blonde man,The blonde man pumps his arm overhead as he strides toward the waiting king who watches expressionless.,The blonde man,gold,leans against the railing beside one of her tall glass.,picks up his jacket and smirks.,\"winks at the bejeweled woman, who suppresses a smile and shakes her head slightly.\",follows her toward the garage.\n8406,lsmdc3081_THOR-37600,14057,\"At its center, a bearded blonde man wearing a winged helmet and a red cape holds up the blocky hammer. Smiling as he strides past lines of guards, the man\",\"At its center, a bearded blonde man wearing a winged helmet and a red cape holds up the blocky hammer.\",\"Smiling as he strides past lines of guards, the man\",gold,\"enters the chopper, peers behind someone and reaches into his tank.\",steps up with a plan.,casually flips the hammer and points to cheering onlookers.,carefully removes one of the aircraft.\n8407,lsmdc3081_THOR-37600,14060,\"The blonde man winks at the bejeweled woman, who suppresses a smile and shakes her head slightly. The blonde man\",\"The blonde man winks at the bejeweled woman, who suppresses a smile and shakes her head slightly.\",The blonde man,gold,shifts his gaze disapprovingly.,\"steps onto the table, wiping her hand over her head.\",turns and smiles toward three men standing to the right of the king.,shifts his uncertain gaze as he teaches it to her with cold eyes.\n8408,lsmdc3081_THOR-37600,14056,A thick blocky hammer with a short handle rests nearby. Thousands of people,A thick blocky hammer with a short handle rests nearby.,Thousands of people,gold,pass the android on the stairs.,watch on video beyond someone's small cigar case.,are using a surfing broom.,crowd a cavernous palace room.\n8409,anetv_HzyTD2uZ8jI,8332,A man is seen speaking to the camera while moving his arms around and leading into a person jumping into a pit. More people,A man is seen speaking to the camera while moving his arms around and leading into a person jumping into a pit.,More people,gold,are seen walking forward and taking their turns jumping.,are seen running in an area and one walking around one another.,discuss one another as well as people while others watch on the sides.,are seen riding down and down and showing off throwing many arms in the air.\n8410,anetv_HzyTD2uZ8jI,8333,More people are seen walking forward and taking their turns jumping. People,More people are seen walking forward and taking their turns jumping.,People,gold,keep the ball while turning down to the camera.,continue to ride around the area while smiling and speaking.,continue jumping one another the other with the man's guidance.,hit the robots back and fourth.\n8411,anetv_HzyTD2uZ8jI,7083,More people take turns jumping into a pit in front of the man. The people,More people take turns jumping into a pit in front of the man.,The people,gold,hold another surfboard and continue playing while others watch on the sides.,continue moving one after the other into the pit.,spin around one another and walk up the set.,play the game and kick back and fourth in the same swing.\n8412,anetv_35DlDj_hzvg,873,A man is seen bending forward and holding onto a set of weights while gripping tightly. The man then,A man is seen bending forward and holding onto a set of weights while gripping tightly.,The man then,gold,lifts several weights to the floor and ends with one lifting weights and bending to him.,begins laying a weight down while putting her arms out and pushing him.,lifts the weight over his end and throws it down in the end.,swings himself around and places the circle around on the feet.\n8413,anetv_LFOlEafI35c,15869,Two young men arm wrestle in a kitchen using a standing cat chair as an table. A young man in a white tank top,Two young men arm wrestle in a kitchen using a standing cat chair as an table.,A young man in a white tank top,gold,is sitting on a couch playing with a small piece of candy on the counter.,places his elbow on a elevated cat chair along with another young man in a black shirt.,jumps into dog bath and puts a pair of shoes on.,is holding a brown pumpkin and shakes the cat in the mouth.\n8414,anetv_LFOlEafI35c,15870,A young man in a white tank top places his elbow on a elevated cat chair along with another young man in a black shirt. The two young men,A young man in a white tank top places his elbow on a elevated cat chair along with another young man in a black shirt.,The two young men,gold,begin to arm wrestle.,poke in and begin to bow and lead near the game.,are in a park and begin practicing fencing while talking.,are doing a turn to lift a tree above their heads.\n8415,lsmdc1058_The_Damned_united-98569,4017,\"Still sat in his chair, brooding introspectively, someone glances over at the tv crew who wander out of the cavernous studio as the lights go out. Someone\",\"Still sat in his chair, brooding introspectively, someone glances over at the tv crew who wander out of the cavernous studio as the lights go out.\",Someone,gold,\"separates from someone, stop, the master someone meets as they respond.\",encounter several chefs wearing spanish beverages.,settles onto someone's terrace.,\"sits in the darkness on set, the switched off cameras pointing away from him.\"\n8416,lsmdc1058_The_Damned_united-98569,4015,Someone fades to silhouette as the lights dim. Someone,Someone fades to silhouette as the lights dim.,Someone,gold,looks back as he rubs against the wall.,finds the frozen kitten lying on the ground.,nods bitterly as someone and the presenter rise from their seats and stroll away across the studio floor.,\"leans down, her hair resting over her stool.\"\n8417,lsmdc1058_The_Damned_united-98569,4018,The lads read comics and annuals as someone broods at the wheel. He,The lads read comics and annuals as someone broods at the wheel.,He,gold,looks in the mirror at them.,nudges someone atop the hummer's chair seat.,wakes up in the cramped cot.,hits the cue stick.\n8418,lsmdc1058_The_Damned_united-98569,4025,He looks over at someone in his car. He,He looks over at someone in his car.,He,gold,closes his eyes and lays out.,stoops over a flowerbed.,aims at a brown pickup truck.,is working on a windowed floor smoking a cigar.\n8419,lsmdc1058_The_Damned_united-98569,4016,\"Someone nods bitterly as someone and the presenter rise from their seats and stroll away across the studio floor. Still sat in his chair, brooding introspectively, someone\",Someone nods bitterly as someone and the presenter rise from their seats and stroll away across the studio floor.,\"Still sat in his chair, brooding introspectively, someone\",gold,\"gets up and sits there, facing though to someone.\",glances over at the tv crew who wander out of the cavernous studio as the lights go out.,\"steps out from the bedroom, locks the room, and opens the door.\",stands on the operating table with his arm folded in his lap.\n8420,lsmdc1058_The_Damned_united-98569,4019,He looks in the mirror at them. The boys,He looks in the mirror at them.,The boys,gold,run into the principal store.,swap wide - eyed looks on the back seat.,have hooked the cord after someone's chest.,urge their horses at him.\n8421,lsmdc1058_The_Damned_united-98569,4030,\"Someone looks down at his plants. Then, he\",Someone looks down at his plants.,\"Then, he\",gold,turns away and admires his bra.,\"steps back with his hands on his hips, admiring them.\",stares at her for a moment.,yanks one whip off his jacket one last time and clutches it.\n8422,lsmdc1058_The_Damned_united-98569,4023,Someone stops the car outside a large red brick house. Someone's,Someone stops the car outside a large red brick house.,Someone's,gold,wandering among the shrubs and plants in his front garden.,eyes easily pick up someone and leaves behind the final person.,mouth hangs open and a defeated look.,head rubs out at the window.\n8423,lsmdc1058_The_Damned_united-98569,4027,\"Still bent over the flowerbed, someone glances over at someone then carries on weeding. Someone\",\"Still bent over the flowerbed, someone glances over at someone then carries on weeding.\",Someone,gold,squeezes his eyes shut and glances at him with a thoughtful expression.,puts his hands in his pockets as he strolls up the drive.,\", little someone walks out of the palace yard with a long, wispy stonewall.\",\"really ride the horse all over his head, another view of his wife giving him a thumbs - up.\"\n8424,lsmdc1058_The_Damned_united-98569,4031,\"Then, he steps back with his hands on his hips, admiring them. Eventually, he\",\"Then, he steps back with his hands on his hips, admiring them.\",\"Eventually, he\",gold,makes back to the mirror and gets the back of his cap.,bends away and wraps his arms around each other.,turns to someone with disdain.,falls to the floor and starts climbing the ladder.\n8425,lsmdc1058_The_Damned_united-98569,4028,Someone puts his hands in his pockets as he strolls up the drive. Someone,Someone puts his hands in his pockets as he strolls up the drive.,Someone,gold,plucks the indian inhaler.,runs up the stairs and pulls his trunk so that someone can hear.,jogs towards a welcome sign.,shoots someone a withering look.\n8426,lsmdc1058_The_Damned_united-98569,4020,The boys swap wide - eyed looks on the back seat. Someone,The boys swap wide - eyed looks on the back seat.,Someone,gold,regards him for a moment.,stares at a group of boys on the tower.,ambles towards the group of other members who were impaled on the rock.,smiles as the boys stifle giggles.\n8427,lsmdc1058_The_Damned_united-98569,4022,Girls wheel over the Brighton Promenade in the sunshine. Someone,Girls wheel over the Brighton Promenade in the sunshine.,Someone,gold,drags inside a loose pipe and giving us a long illuminate - like.,and someone haul someone to his car.,stops the car outside a large red brick house.,uses a cord and space with one rod to carve for a beat.\n8428,lsmdc1058_The_Damned_united-98569,4026,\"He stoops over a flowerbed. His eyes fixed on someone, someone\",He stoops over a flowerbed.,\"His eyes fixed on someone, someone\",gold,pulls away as someone exits the train.,with the unisphere wings.,gets out wearing a heavy frown.,\"concentrates hard, tilting the mace to his right palm.\"\n8429,lsmdc1058_The_Damned_united-98569,4024,Someone's wandering among the shrubs and plants in his front garden. He,Someone's wandering among the shrubs and plants in his front garden.,He,gold,looks over at someone in his car.,has to buy of the thing.,jogs back in the shirtless parlor and folds his arms before him.,places the candle on the sofa drawer.\n8430,lsmdc1058_The_Damned_united-98569,4021,Someone smiles as the boys stifle giggles. The boys,Someone smiles as the boys stifle giggles.,The boys,gold,rises their front legs into several cages.,look at the germans as his brother slowly walks through the door.,hold up a funny look.,\"huddle close behind someone, excitedly.\"\n8431,lsmdc3074_THE_ROOMMATE-4063,16428,\"Now they hang from a set of monkey bars, their legs bent away from the ground. He\",\"Now they hang from a set of monkey bars, their legs bent away from the ground.\",He,gold,shakes someone's head.,eyes her bare midriff.,dashes around a corner then drops back onto the bed.,see numerous rocks laden with black and yellow sacks.\n8432,lsmdc0012_Get_Shorty-53437,10106,He looks over his shoulder to the give the guy a smile. The agents,He looks over his shoulder to the give the guy a smile.,The agents,gold,glance at each other without giving any kind of sign.,spill out their weapons.,slam shut a great seal and cover each other's wrists.,\"scramble out of view past the big trailer, between siege towers, protesters, and staircases.\"\n8433,lsmdc0016_O_Brother_Where_Art_Thou-55443,2490,\"The unearthly singing, full volume here, comes from the three women, beautiful but marked by an otherworldly langor as they dunk clothes in the stream and beat them against rocks. Someone\",\"The unearthly singing, full volume here, comes from the three women, beautiful but marked by an otherworldly langor as they dunk clothes in the stream and beat them against rocks.\",Someone,gold,is held by a man.,\"reacts, smiling in excitement.\",\"is all awkward smiles and deep, burning eyes.\",\"pulls up and directs the third, on the ground level.\"\n8434,lsmdc0016_O_Brother_Where_Art_Thou-55443,2492,\"Strangely, the three laundresses do not answer, though they do smile at him as they continue to sing. Someone\",\"Strangely, the three laundresses do not answer, though they do smile at him as they continue to sing.\",Someone,gold,\", like a human, wears a glossy substance.\",tries again as she reaches into their laundry basket.,reaches out to join them friends as they walk.,\"stand there, dressed as fast as they reach him and dance together, in unison.\"\n8435,lsmdc0016_O_Brother_Where_Art_Thou-55443,2491,\"Someone is all awkward smiles and deep, burning eyes. Strangely, the three laundresses\",\"Someone is all awkward smiles and deep, burning eyes.\",\"Strangely, the three laundresses\",gold,\"do not answer, though they do smile at him as they continue to sing.\",turn with the cue.,seem to walk to him.,walk hands or grab her hips together.\n8436,lsmdc0016_O_Brother_Where_Art_Thou-55443,2489,Before the car has even come to a stop someone's door flies open and he is stumbling down the bank to the river. People,Before the car has even come to a stop someone's door flies open and he is stumbling down the bank to the river.,People,gold,\"follow more casually, someone chuckling.\",let to the rest of the gang.,roll out of the murky streets.,\"pulled into the curve around the ankle, narrow, deep, rough.\"\n8437,lsmdc0016_O_Brother_Where_Art_Thou-55443,2493,Someone tries again as she reaches into their laundry basket. Someone's eyes,Someone tries again as she reaches into their laundry basket.,Someone's eyes,gold,stay glued on the women as he hisses out of the corner of his mouth.,stray to the president's table in the gaming area.,are downcast as she approaches the front of the building.,are fixed on someone then looks from one corner of the room to someone.\n8438,lsmdc1046_Australia-90808,8910,Someone makes his way down the steps towards the teeming dance floor. He and someone,Someone makes his way down the steps towards the teeming dance floor.,He and someone,gold,move slowly towards each other.,sit down in the parallel room.,\"are spinning, hitting the rock to catapult a roofed stage.\",join someone and share a smile.\n8439,lsmdc1046_Australia-90808,8915,\"Someone watches the dance, laughing heartily and drinks deeply. People\",\"Someone watches the dance, laughing heartily and drinks deeply.\",People,gold,\", someone finds a young in the checked dress and have a wig.\",\"is the same only little, but they are the only one, still dancing like someone is not up; she probably won but\",\", as someone stands at the end of the room, says something with a jolt.\",dance cheek - to - cheek.\n8440,lsmdc1046_Australia-90808,8911,He and someone move slowly towards each other. She smiles in delighted disbelief and he,He and someone move slowly towards each other.,She smiles in delighted disbelief and he,gold,drops down and she sprints away.,straightens to his full height.,\"grins, his hand casually in his left pocket, as they come together.\",slides her cheek to his.\n8441,lsmdc1046_Australia-90808,8907,Everyone in the garden turns and looks up at the house. Someone,Everyone in the garden turns and looks up at the house.,Someone,gold,\"turns round and gasps, standing and staring.\",blot out of the reception.,looks out at the cabin.,\"meets his gaze, and walks away down the street.\"\n8442,lsmdc1046_Australia-90808,8914,Someone helps him through the steps. Someone,Someone helps him through the steps.,Someone,gold,watches and swigs from a bottle.,\"puts someone's jacket on, and checks his luggage.\",\"rushes over, grabbing it off him, toppling him upon it.\",throws a cigar into someone's mouth.\n8443,lsmdc1046_Australia-90808,8913,\"Up on a balcony, someone grabs a black waitress' hand. Someone\",\"Up on a balcony, someone grabs a black waitress' hand.\",Someone,gold,turns the wheel to the cannon.,knocks the spheres out.,makes her way through the empty dance.,helps him through the steps.\n8444,lsmdc1046_Australia-90808,8912,\"Arm - in - arm, they head for the dance floor. Up on a balcony, someone\",\"Arm - in - arm, they head for the dance floor.\",\"Up on a balcony, someone\",gold,watches from the school as a young boy with a black beard plays an instrument smiling on the mic.,grabs a black waitress' hand.,\"clutches his back, claps her arms, and turns.\",inspects the stub someone both hands.\n8445,lsmdc3077_THE_VOW-35857,11101,\"Someone hands the file to his daughter. At dusk in the city, two elevated trains\",Someone hands the file to his daughter.,\"At dusk in the city, two elevated trains\",gold,with thick eyeglasses dot the sky.,travel across the quadrangle into each party at a vista cemetery.,carry out football teams on breaks.,pass one another under the chicago skyline.\n8446,lsmdc3077_THE_VOW-35857,11112,\"The photographer takes a picture of the sisters, their parents, and someone. He\",\"The photographer takes a picture of the sisters, their parents, and someone.\",He,gold,\"glances thoughtfully, turns back to the teacher.\",grins through a window and pushes a red limo across the lot.,\"turns on the spot, watching someone.\",\"smiles, someone steps forward and puts her chin on someone's chin.\"\n8447,lsmdc3077_THE_VOW-35857,11117,\"As he gazes off morosely, someone approaches with a bottle of fine liquor. He\",\"As he gazes off morosely, someone approaches with a bottle of fine liquor.\",He,gold,downs chlorophyll from the small tumbler.,beams behind her as she leaves the bathroom.,begins to solve a rubik's cube.,sets two glasses on the parapet.\n8448,lsmdc3077_THE_VOW-35857,11109,\"In their tux and gown, the newlyweds joyfully make their way up a narrow aisle between the well - wishers. Later, the groom\",\"In their tux and gown, the newlyweds joyfully make their way up a narrow aisle between the well - wishers.\",\"Later, the groom\",gold,steps to a stop as three women hold a war flag to her elbows.,pushes the women into the kitchen restaurant.,sweeps his bride up in his arms.,lands on the curb by the united tiers.\n8449,lsmdc3077_THE_VOW-35857,11100,Someone's mother joins them. Someone,Someone's mother joins them.,Someone,gold,applauds appreciatively.,hands the file to his daughter.,strides further into the room.,walks toward his mother who kisses him.\n8450,lsmdc3077_THE_VOW-35857,11103,\"In the apartment, someone drops a jacket on a chair and carries a stack of mail to a coffee table. Sitting, he\",\"In the apartment, someone drops a jacket on a chair and carries a stack of mail to a coffee table.\",\"Sitting, he\",gold,sniffs his crowded cigar.,compares a large look for her.,flips through the envelopes.,chews some gum and sucks it in her mouth.\n8451,lsmdc3077_THE_VOW-35857,11106,A pink envelope bears a stamp reading Past Due. Someone,A pink envelope bears a stamp reading Past Due.,Someone,gold,averts his perplexed gaze.,\"sits in the 40s, with the middle - aged smile in someone's eyes, then spins away.\",wearily leans back on the sofa and stares at the ceiling.,cradles her husband's hand as they cling to it as a row of flowers sit facing him.\n8452,lsmdc3077_THE_VOW-35857,11110,\"She laughs delightedly and he kisses her cheek. Later still, someone\",She laughs delightedly and he kisses her cheek.,\"Later still, someone\",gold,\"steps toward someone, but then holds back as she joins her sister for a wedding photo.\",\"peeks away, her teeth trailing long and long hair inches from someone's face.\",brothers dangle either side of the set where tv shows working on a display in the middle of a leather store.,\"walks around the gym and spots her paces with her eyes closed, eyes open.\"\n8453,lsmdc3077_THE_VOW-35857,11115,\"Someone moves unhappily through the crowd. Later, with his necktie loosened, he\",Someone moves unhappily through the crowd.,\"Later, with his necktie loosened, he\",gold,\"smiles up at her, then returns to the apartment.\",looks to his family enjoying the graveled waters in the cottage.,pulls his fedora past her.,strolls through a lavish outdoor reception and spies someone dancing with her sister.\n8454,lsmdc3077_THE_VOW-35857,11111,\"Later still, someone steps toward someone, but then holds back as she joins her sister for a wedding photo. The photographer\",\"Later still, someone steps toward someone, but then holds back as she joins her sister for a wedding photo.\",The photographer,gold,\"makes his way back to someone, pushing someone aside.\",\"takes a picture of the sisters, their parents, and someone.\",gives her a quizzical look and her mother poses with delight.,starts from the window and climbs down on the back with growing images.\n8455,lsmdc3077_THE_VOW-35857,11107,\"Someone wearily leans back on the sofa and stares at the ceiling. Now, on a sunny day, yellow rose petals\",Someone wearily leans back on the sofa and stares at the ceiling.,\"Now, on a sunny day, yellow rose petals\",gold,\"fall on a sidewalk over a single covered table, where women's choices are bathed.\",float around the beach.,wraps around a large baby draped over a couch.,arc through the air as wedding guests shower them on someone and someone.\n8456,lsmdc3077_THE_VOW-35857,11105,\"He pauses, then tosses them down. A pink envelope\",\"He pauses, then tosses them down.\",A pink envelope,gold,hangs to his tie.,clatters amongst the walls.,bears a stamp reading past due.,of his headgear goes up to him.\n8457,lsmdc3077_THE_VOW-35857,11108,\"Now, on a sunny day, yellow rose petals arc through the air as wedding guests shower them on someone and someone. In their tux and gown, the newlyweds\",\"Now, on a sunny day, yellow rose petals arc through the air as wedding guests shower them on someone and someone.\",\"In their tux and gown, the newlyweds\",gold,share a tear as they slashes at each other as they struggle to contain his irritation.,engage in a long red pool light.,joyfully make their way up a narrow aisle between the well - wishers.,peer down their windows.\n8458,lsmdc3077_THE_VOW-35857,11116,\"Reaching the edge of the party, he arrives at a crenelated terrace, overlooking the city's distant gleaming skyline. As he gazes off morosely, someone\",\"Reaching the edge of the party, he arrives at a crenelated terrace, overlooking the city's distant gleaming skyline.\",\"As he gazes off morosely, someone\",gold,sees him heading toward the range of the pizzeria.,anxiously glances around the chamber where someone boils eggs on pan.,approaches with a bottle of fine liquor.,spots a news vendor.\n8459,lsmdc3077_THE_VOW-35857,11104,\"Sitting, he flips through the envelopes. He\",\"Sitting, he flips through the envelopes.\",He,gold,tosses out an iron and stomps it.,\"pauses, then tosses them down.\",\"looks over at someone who bursts open and follows the group from someone to the corridor, his face drawn still to the blaze.\",breaks his extended box then smacks in back.\n8460,lsmdc3077_THE_VOW-35857,11102,\"At dusk in the city, two elevated trains pass one another under the Chicago skyline. In the apartment, someone\",\"At dusk in the city, two elevated trains pass one another under the Chicago skyline.\",\"In the apartment, someone\",gold,drops a jacket on a chair and carries a stack of mail to a coffee table.,sits by an armed guard.,hands the two children.,spies on his surroundings.\n8461,lsmdc3077_THE_VOW-35857,11118,The two men sip the amber liquor. Someone,The two men sip the amber liquor.,Someone,gold,sits in a room with his beige jersey.,cocks his head and nods appreciatively.,unwraps a cigar and tosses it through.,lulls in the winds as well.\n8462,lsmdc3077_THE_VOW-35857,11113,\"He turns on the spot, watching someone. She\",\"He turns on the spot, watching someone.\",She,gold,takes a deep swallow.,grins and is leaning up again.,frowns and a makes little.,\"smiles briefly at him, then turns away.\"\n8463,lsmdc3077_THE_VOW-35857,11114,\"She smiles briefly at him, then turns away. Someone\",\"She smiles briefly at him, then turns away.\",Someone,gold,wraps his arms around someone and saunters back to her.,shakes his head to listen to the word.,climbs over his distraught face.,moves unhappily through the crowd.\n8464,anetv_v8u8BiprYKs,4991,The lady uses gardening shears to trim the bush. The lady,The lady uses gardening shears to trim the bush.,The lady,gold,stands and trims the bushes.,stops cutting and cuts.,trims the shears with a cutter.,returns to use the tools to cut it and put the tree in a long block.\n8465,anetv_v8u8BiprYKs,4990,A lady kneels in front of bushes and talks. The lady,A lady kneels in front of bushes and talks.,The lady,gold,talks to him on the phone.,dabs her mouth with soap and washes her hands thoroughly.,uses gardening shears to trim the bush.,shows a wall with two electric brushes.\n8466,anetv_v8u8BiprYKs,4992,The lady stands and trims the bushes. The lady,The lady stands and trims the bushes.,The lady,gold,is cutting the woman's fingernails and mouth with a tool.,stops raking the leaves.,kneels down again and continues to talk to the camera.,helps the girls up and trims the fence.\n8467,anetv_rzm4V_McRhQ,10824,He then takes several ingredients and pours them all together into a mixer. He,He then takes several ingredients and pours them all together into a mixer.,He,gold,\"starts adding sugar and a cake, stirring it in various bowls, eggs, creating some type of alcohol.\",\"mixes the ingredients together and pours it into the glass, presenting the drink and speaking to the camera.\",\"makes them, showing all the ingredients and the man is completely bewildered.\",drinks this more while speaking to one another and then speaking to the camera.\n8468,anetv_rzm4V_McRhQ,4028,\"He pours ice into a glass, then adds several kinds of liquor. He\",\"He pours ice into a glass, then adds several kinds of liquor.\",He,gold,take off and dealing the card behind the sink.,\"adds colored liquids, and mixes the drink.\",sits up in a shaker.,puts another cook on the side to do it professionally.\n8469,anetv_rzm4V_McRhQ,4027,A man is talking from behind a bar. He,A man is talking from behind a bar.,He,gold,sticks a spoon to his lips and talking.,is using an elliptical.,continues drinking the celebrities content drink and setting it out on a nearby table.,\"pours ice into a glass, then adds several kinds of liquor.\"\n8470,anetv_nShRXseBM4Y,16498,A person is slicing bread with a knife. They,A person is slicing bread with a knife.,They,gold,scrape the cookie batter out of the pickles bowl.,are cutting the wood and cleaning it with a knife.,puts the chocolate ingredients into the cake and creates a wrap.,mix ingredients in a bowl.\n8471,anetv_nShRXseBM4Y,16500,They cook the bread on a grill. They,They cook the bread on a grill.,They,gold,bowl and wrap the ingredients together.,chef takes a bite of bread cheese into various together cut a salad.,add a scoop of chocolate ice cream next to the sandwich.,take a bite of the pan and spread it ringed evenly.\n8472,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95701,11468,The oak doors swing open and she leads the way into the magnificent great hall of Hogwarts School. The first - years,The oak doors swing open and she leads the way into the magnificent great hall of Hogwarts School.,The first - years,gold,is led in a wild carton.,\"march down the center of the room, watched curiously by the rest of the school who was sitting at long tables.\",\"- writer walks out of the room, dancing enthusiastically.\",hobbit drifts over her face.\n8473,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95701,11469,\"The first - years march down the center of the room, watched curiously by the rest of the school who was sitting at long tables. Someone\",\"The first - years march down the center of the room, watched curiously by the rest of the school who was sitting at long tables.\",Someone,gold,stops dead in the kitchenette.,looks up at the ceiling.,troops on walkway ahead outside.,stops at the ground.\n8474,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95701,11467,\"Someone returns and gives someone a sharp, warning look. The oak doors swing open and she\",\"Someone returns and gives someone a sharp, warning look.\",The oak doors swing open and she,gold,\"backflips, past the other col.\",leads the way into the magnificent great hall of hogwarts school.,turns to meet someone's uneasy gaze as someone comes up beside him.,holds her old paws.\n8475,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95701,11470,Someone looks up at the ceiling. Someone,Someone looks up at the ceiling.,Someone,gold,\"is squatting on the floor, staring down.\",\"lies on her stomach, her head facing towards the wall.\",stops beside a patched and battered wizard's hat perched on a stool in front of the high table.,\"looks at someone for a moment then heads away, shaking his head for a moment.\"\n8476,lsmdc3041_JUST_GO_WITH_IT-18576,4752,\"Gazing into his eyes, someone softly nods. Someone\",\"Gazing into his eyes, someone softly nods.\",Someone,gold,faces someone then runs through the open - topped enclosure.,\"grits his teeth, and takes a deep breath.\",\"meets her gaze, and nods as well.\",\"shyly licks her lips, then covers her face with her thumb.\"\n8477,lsmdc3041_JUST_GO_WITH_IT-18576,4755,He drops his elbow into its belly. He,He drops his elbow into its belly.,He,gold,has a really good time.,tries the heimlich maneuver.,holds a small knife with a chain talons.,\"crawls into the face of a heavyset woman, who beams after them both.\"\n8478,lsmdc3041_JUST_GO_WITH_IT-18576,4753,\"Someone meets her gaze, and nods as well. Someone and someone\",\"Someone meets her gaze, and nods as well.\",Someone and someone,gold,go back to her.,shift in their seats.,step into a corridor with someone behind her.,hug the engagement mechanism.\n8479,anetv_WU4ISFy651Y,8780,A woman is talking to the camera while standing in kitchen. the woman,A woman is talking to the camera while standing in kitchen.,the woman,gold,shows an oil puff before a man starts cooking a pumpkin.,is chopping meat and slicing another piece of bread.,takes a cookie cutter and cuts cookie dough.,pulls an iron with the cloth.\n8480,anetv_WU4ISFy651Y,8781,The woman takes a cookie cutter and cuts cookie dough. the woman then,The woman takes a cookie cutter and cuts cookie dough.,the woman then,gold,folds bread on the sandwich.,takes the cut dough and puts it on a stick.,covers the cool chips all around the finished salad.,demonstrates how to use the greens and fold her lemon.\n8481,anetv_WU4ISFy651Y,8782,The woman then takes the cut dough and puts it on a stick. the woman,The woman then takes the cut dough and puts it on a stick.,the woman,gold,removes the top cone to taste the cake.,continues this process and puts the sticks of dough onto a baking sheet.,puts the cake out into the breakfast and leaves it with a spoon.,eats an sealing cream while talking to the camera.\n8482,anetv_WU4ISFy651Y,6078,\"After, the counter is shown and there is a cut out tulip in cookie dough. She then\",\"After, the counter is shown and there is a cut out tulip in cookie dough.\",She then,gold,spreads the whole lid.,tapes the dough on the dining nails.,sections it in a order to create a final dish.,grabs a stick and places it in the middle.\n8483,anetv_5Bo0gFXxDQk,17154,He also has protective gloves on that are brown in color. He,He also has protective gloves on that are brown in color.,He,gold,seems to be in pain.,drops his skirts with his jacket hanging.,continues welding a long metal rod with welding tool directed towards the rod.,is holding it against his fingers.\n8484,anetv_5Bo0gFXxDQk,17153,He is wearing protective gear to cover his face and eyes. He also,He is wearing protective gear to cover his face and eyes.,He also,gold,has protective gloves on that are brown in color.,puts a piece of chalk on it.,holds up his machine gun.,drifts having several times as well as people.\n8485,anetv_5Bo0gFXxDQk,17152,A person wearing a blue shirt is sitting on the floor welding. He,A person wearing a blue shirt is sitting on the floor welding.,He,gold,is wearing protective gear to cover his face and eyes.,\"releases his sword and stares down at it, then keeps his eyes open.\",puts an iron in the bottom of the ski.,gives a person's hand to spray and makes the ground transparent.\n8486,anetv_yVp99wxlW90,4618,A man is outside playing croquette. Other men,A man is outside playing croquette.,Other men,gold,take turns hitting the ball in orange and yellow baseball.,\"appear and play the game with him, hitting the ball through various holes on the lawn.\",\"are shown watching over to the side, waving out of the yard.\",are then shown skateboarding against the side of the road.\n8487,anetv_yVp99wxlW90,4619,\"Other men appear and play the game with him, hitting the ball through various holes on the lawn. A man\",\"Other men appear and play the game with him, hitting the ball through various holes on the lawn.\",A man,gold,is shown for a while to hit the ball until the ground of three men in mid size.,views the camera after getting a bow in order to skating to where it should be.,\"throws his stick, then lifts it over his head in victory.\",walks up to his friends as they continue to arm wrestle with each other.\n8488,lsmdc3062_SORCERERS_APPRENTICE-31006,17813,Someone stares up at a tall antenna. A dish,Someone stares up at a tall antenna.,A dish,gold,offers someone a statue flag with a bolt of steel.,crawls across the neon wallpaper.,hangs near the top.,is poured over him.\n8489,lsmdc3062_SORCERERS_APPRENTICE-31006,17815,\"It snorts, fogging the glass. It\",\"It snorts, fogging the glass.\",It,gold,spits it to the floor.,is distracted by a rocket.,proceed to various non - alcoholic array of food and stuff.,flings the van aside.\n8490,lsmdc3062_SORCERERS_APPRENTICE-31006,17816,It flings the van aside. Someone,It flings the van aside.,Someone,gold,follows someone as he starts to remove the case.,climbs toward the top of its framework and feebly kicks at the dish.,slips through one of the shelves toward a police car.,comes into the living room.\n8491,lsmdc3085_TRUE_GRIT-40883,8148,Someone sways back and forth along with the horses labored gait. She,Someone sways back and forth along with the horses labored gait.,She,gold,sees a silhouetted horseman up ahead.,looks at him expectantly as she smells the food.,looks at someone heavily in her seat.,looks over her shoulder at her moist eyes.\n8492,lsmdc3085_TRUE_GRIT-40883,8147,His neck glistening with sweat in the moonlight. Someone,His neck glistening with sweat in the moonlight.,Someone,gold,is only takes his foot before resting his hand against his shiny black suit.,sways back and forth along with the horses labored gait.,places a sheet of folded paper kissing someone's gryffindors palm.,frowns at the former stripper.\n8493,anetv_jA-KApGlXyA,14752,\"A person explains how to play squash holding a racket and a blue ball. Then, he\",A person explains how to play squash holding a racket and a blue ball.,\"Then, he\",gold,hits balls and hits it with their feet.,turns and comes in the bar hitting the ball back and forth.,continues explaining showing how to hit the ball on the wall.,bounces a ball on one of the pins and continues to hold it.\n8494,anetv_q5thIuCSTkk,15986,A person has their hand over the lens. We then,A person has their hand over the lens.,We then,gold,see a crowd of arrows.,see a light flashing room.,see two men at a dance game balancing on a black decor.,see a child in gray skiing in front of the camera operator.\n8495,anetv_q5thIuCSTkk,15988,The child falls off their skis and lays in the snow. The camera person,The child falls off their skis and lays in the snow.,The camera person,gold,sits up and spots them about the bend of the hat.,stops and wipes snow from the kids goggles and turns off the camera.,\"paddle around the other trying to get it all over, skating back and fourth.\",then rides brown snow down the hill.\n8496,anetv_q5thIuCSTkk,15987,We then see a child in gray skiing in front of the camera operator. the child,We then see a child in gray skiing in front of the camera operator.,the child,gold,rides a recumbent bike and rides his bike down the street again.,rides a bike with gort as a young lady in a pink shirt watches someone.,pauses and lifts her lip in a gentle pace.,falls off their skis and lays in the snow.\n8497,lsmdc3044_KNOCKED_UP-21028,8303,He steps toward the bathroom. Someone,He steps toward the bathroom.,Someone,gold,\"abruptly sits up, grabs a bloody check, and runs away.\",\"picks up his jacket, revealing the vast elastic - shorts that is operating the floor.\",lounges in the tub covered in bubbles.,wraps up her dress and pulls him and sets him down.\n8498,lsmdc3044_KNOCKED_UP-21028,8304,Someone lounges in the tub covered in bubbles. She,Someone lounges in the tub covered in bubbles.,She,gold,stops it and sniffs it.,lets her hands drift downward.,indicates his mother who sat on the cigarette.,squeezes a remote against him.\n8499,lsmdc3044_KNOCKED_UP-21028,8302,Someone's bed stands empty. He,Someone's bed stands empty.,He,gold,steps toward the bathroom.,is lying in bed next to him.,sets at it on the bedside table and pushes out a hand.,extends his hand into blue cups.\n8500,lsmdc3044_KNOCKED_UP-21028,8301,He enters the main house. He,He enters the main house.,He,gold,draws himself free and peeks out the trunk with his feet.,marches through the closing doors and pulls out a candle.,heads upstairs and strides down the hall.,carries the briefcase university the coffee straight out of the refrigerator.\n8501,anetv_vfLKyUMzFHg,6535,A man is seen speaking to the camera and pointing to a table and laying out cards. He then,A man is seen speaking to the camera and pointing to a table and laying out cards.,He then,gold,uses the paintbrush to remove a piece of paper plasters then whisks it down on a paper.,empties the ingredients into cups and puts them on an apple and then begins to pour the ingredients into the bowl.,performs a game of black jack while moving the cards and dice around while still speaking to the camera.,mixes the ingredients all together and ends by presenting it to camera.\n8502,anetv_j7fPZQE3-fQ,14602,A man is seen speaking to a woman sitting down. The man,A man is seen speaking to a woman sitting down.,The man,gold,reels and begins riding down the track.,is then speaking and begins playing a harmonica while speaking to the camera.,makes a mark on her lip then pierces her lip.,continues speaking and smiling to the camera.\n8503,anetv_j7fPZQE3-fQ,19168,A video of someone getting a piercing is shown. The tech,A video of someone getting a piercing is shown.,The tech,gold,makes a mark on the person's lip and then makes the piercing.,takes off the hat and jumps off of the bike.,then does a tutorial with the bars attached.,stops playing the violin and continues to play the keyboard.\n8504,anetv_j7fPZQE3-fQ,14603,The man makes a mark on her lip then pierces her lip. He holds up a mirror and the two,The man makes a mark on her lip then pierces her lip.,He holds up a mirror and the two,gold,speak to the camera.,gives her a thumbs up.,cut off woman's.,smile with each other.\n8505,anetv_mWOa-0w0Bls,15021,A camera pans around grass and leads to a fence. The camera,A camera pans around grass and leads to a fence.,The camera,gold,pans all around the yard as well as taking off regular firewood and showing one another.,pans all around the fence with flowers on the side.,pans around the field and lead into a man speaking.,pans for several dark houses.\n8506,anetv_mWOa-0w0Bls,15022,The camera pans all around the fence with flowers on the side. The camera,The camera pans all around the fence with flowers on the side.,The camera,gold,captures the small dog's house's blow mower.,pans all around the people while speaking to the camera.,continues to pan around the fence and the different colors.,pans around the yard while they continue to wallpapers.\n8507,lsmdc0051_Men_in_black-71101,5209,\"The monitor goes blank, except for a data screen. Someone\",\"The monitor goes blank, except for a data screen.\",Someone,gold,takes out her books and makes more documents.,\"zips up students in barricade of peasants, below, two men toting guns.\",drags a chair and sits down.,holds onto a bottle of vinegar.\n8508,lsmdc0051_Men_in_black-71101,5205,\"Someone looks up, as if she knows she is being watched, but she is just looking at the sky, wondering how many stars'll be out tonight. It\",\"Someone looks up, as if she knows she is being watched, but she is just looking at the sky, wondering how many stars'll be out tonight.\",It,gold,sits just as the bearded man picks up the rock.,\"tiptoes past someone, crosses into the rear of a red room and looks across the table.\",has inserts it to the window.,'s more than someone can bear.\n8509,lsmdc0051_Men_in_black-71101,5208,Someone clicks off the picture of her. The monitor,Someone clicks off the picture of her.,The monitor,gold,\"tackles him, flicking back and forth between two guys.\",\"shows someone who reclines in a chair, his face on his scrubs.\",\"reflects his lonesome sketch, someone ignores her, regains her composure.\",\"goes blank, except for a data screen.\"\n8510,lsmdc0051_Men_in_black-71101,5206,It's more than someone can bear. He,It's more than someone can bear.,He,gold,hears someone striding through the night.,reaches out and flicks a switch.,\"completely does this weird thing, and looks up at it.\",puts a ring in someone's mouth.\n8511,lsmdc1014_2012-79106,13926,Smoke fills the sky above Las Vegas. Buildings,Smoke fills the sky above Las Vegas.,Buildings,gold,tuck the rear highway.,\"sea fans fly overhead, and they stare out over the city, one of them watching with the daytime lights on the roof.\",\"rains falls on the floor, scattering from a paunchy helipad and onto a mountain.\",burn by a deep chasm through town.\n8512,lsmdc1014_2012-79106,13930,Someone hangs up his cell phone in the busy control room which is lined with computer equipment and terminals. Someone,Someone hangs up his cell phone in the busy control room which is lined with computer equipment and terminals.,Someone,gold,opens the door and finds it empty.,plops down on a couch.,\"enters and stands before someone, who tries to read his expression.\",\"takes out someone's phone, exposing a coca - type card, then tosses it aside and finds him savings.\"\n8513,lsmdc1014_2012-79106,13928,Twins people are with people by the grounded plane. The fireman,Twins people are with people by the grounded plane.,The fireman,gold,\"dances, and the ghastly turned.\",specifics use the cane with a curved desktop.,forces someone to move.,speaks on party phone.\n8514,lsmdc1014_2012-79106,13927,Light plane approaches McAllen airport as the runway crumbles into the chasm. They,Light plane approaches McAllen airport as the runway crumbles into the chasm.,They,gold,opens one box full of blossoms.,land on a chaotic runway.,respond with response to someone's footsteps.,perches on the platform at the far end.\n8515,lsmdc1014_2012-79106,13925,Someone puts his hand on someone's shoulder. Smoke,Someone puts his hand on someone's shoulder.,Smoke,gold,fills the sky above las vegas.,he stalks through the tunnel towards someone.,\"away, someone gets out and pulls someone through the street, leaving someone sitting on a chair.\",\"his gaze, someone pulls someone's wand.\"\n8516,lsmdc1014_2012-79106,13929,The fireman forces someone to move. A limo,The fireman forces someone to move.,A limo,gold,\"pulls up outside a building, motorcycle bears guns.\",stops someone as if in attack.,pushes a cart down the hallway.,pulls up by air force one.\n8517,anetv_uBPWqgUiQWA,18785,\"One of them, who appears to be drunk, starts throwing darts. He then\",\"One of them, who appears to be drunk, starts throwing darts.\",He then,gold,throws a dart at the cameraman.,throws the shot put.,inserts the adjacent man's right corner cards.,gets into the darts and then blows.\n8518,anetv_uBPWqgUiQWA,10522,These for men are all standing in the room trowing darts at the dart board. One of them,These for men are all standing in the room trowing darts at the dart board.,One of them,gold,throws a dart at the camera because he missed one time.,pulls out another arrow until it explodes.,is trying to solve a ping pong ball.,is boxing with a yellow string.\n8519,anetv_KSP62q7tM68,886,A person is seen riding waves on the water as well as people partying at a house. A Dj,A person is seen riding waves on the water as well as people partying at a house.,A Dj,gold,is seen riding on board followed by various shots of people performing impressive tricks.,is shown playing music as well as people dancing around and surfers surfing.,is shown followed by people walking around a playground near the river.,is dressed with gray cars with a video of kids riding rafts down a trail of waterfalls.\n8520,anetv_KSP62q7tM68,887,A Dj is shown playing music as well as people dancing around and surfers surfing. More shots,A Dj is shown playing music as well as people dancing around and surfers surfing.,More shots,gold,are shown of the camera interspersed with people jumping rope and doing tricks with the waves.,are shown of people surfing and having fun at the house.,are shown of people playing the piano.,are shown of people riding around on the river.\n8521,anetv_crfrKqFp0Zg,2498,A man is seen standing in a black room and proceeds to play a flute while the camera captures him. The man,A man is seen standing in a black room and proceeds to play a flute while the camera captures him.,The man,gold,continues speaking to the camera to the camera and people playing instruments and ending up on stage showing it to others.,continues to play the guitar while looking around to the camera and switches off the camera.,continues to lay the instrument while moving his hands up and down and moving his head to the beat.,continues flipping while the camera zooms in on him continues.\n8522,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9950,13110,\"Someone looks around nervously as they run towards a huge stone. Standing behind it, they\",Someone looks around nervously as they run towards a huge stone.,\"Standing behind it, they\",gold,continue through the great sea.,look down the hill.,stop at a room at the head of the bridge.,\"come down some corridor, angular tall brick buildings.\"\n8523,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9950,13109,People creep out from their hiding place. Someone,People creep out from their hiding place.,Someone,gold,hesitates as a huge figure runs up in front of him.,looks around nervously as they run towards a huge stone.,steps into the room.,joins them and allows a bright smile to keep from someone's face.\n8524,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9950,13112,They watch themselves running along the path below towards someone's cottage and the pumpkin patch. People,They watch themselves running along the path below towards someone's cottage and the pumpkin patch.,People,gold,sit down beside one another.,enters the gloomy passageway and start out the door.,races down the street to a city alley opposite.,hurry down the path and hide behind the pile of pumpkins.\n8525,lsmdc1006_Slumdog_Millionaire-73959,19254,\"They all sit at computers, wearing headsets. Someone\",\"They all sit at computers, wearing headsets.\",Someone,gold,is firmly by a man in a white jacket outside.,rushes off to a nearby tv showing the game show.,pockets her cellphone and follows a sound.,\"looks away from his coach, and shakes the ladies head.\"\n8526,lsmdc1006_Slumdog_Millionaire-73959,19253,\"Someone rushes around, delivering tea to the call center workers. They all\",\"Someone rushes around, delivering tea to the call center workers.\",They all,gold,look at someone as he waits in the coatcheck room.,listen in his pursuit.,\"sit at computers, wearing headsets.\",sink into the room.\n8527,lsmdc1047_Defiance-91530,14781,The whistling Russian someone escorts them out of the camp. Someone,The whistling Russian someone escorts them out of the camp.,Someone,gold,rides up on a white horse.,struggles to rip up a circular panel from the back.,nods and steps back into the camaro with the chain link fence turned off its wings.,'s ecstatic pincers are fixed on each other.\n8528,lsmdc1047_Defiance-91530,14782,\"Someone in his hat, overcoat, and scarf wields an axe. Someone\",\"Someone in his hat, overcoat, and scarf wields an axe.\",Someone,gold,is using an axe handle to secure a nail.,jerks his head up the street.,remains at a coffin.,squeezes it in his mouth and smiles.\n8529,lsmdc1047_Defiance-91530,14783,Someone is using an axe handle to secure a nail. Someone,Someone is using an axe handle to secure a nail.,Someone,gold,tosses him a hammer.,discovers old lamp cans and heavy cans in.,kicks all of cash from the house and puts it on the table.,snatches the hammer and smashes it against the wall.\n8530,lsmdc1019_Confessions_Of_A_Shopaholic-80662,12876,Someone hands someone the lamp. She,Someone hands someone the lamp.,She,gold,\"pushes a stack of bills across the kitchen table towards someone, who pushes them back.\",turns slightly towards her cousin.,hangs the supplies above her head.,takes someone one bracelet.\n8531,anetv_Gdf7ZWhh9Nw,6915,A person is seen scrubbing down the mane of a horse's fur and leads into washing him and spray him. The camera,A person is seen scrubbing down the mane of a horse's fur and leads into washing him and spray him.,The camera,gold,focuses on the girl who continues leading a dog with some flowers and brushes her hair.,shows shots of the liquid and then shows the woman scrubbing down and washing the horse.,is then seen back to the wallpaper before the paint is shown in more pieces.,continues to ride along the dog's hair while still speaking to the camera while smiling.\n8532,anetv_Gdf7ZWhh9Nw,6916,The camera shows shots of the liquid and then shows the woman scrubbing down and washing the horse. She,The camera shows shots of the liquid and then shows the woman scrubbing down and washing the horse.,She,gold,\"walks the horse away and shakes the bottle, showing more shots of her cleaning the horse with the bottle shown intermittent.\",forces herself to back up in the window.,scrapes the bottom of the shirt off and finished.,takes the little layer off her lip while rubbing on her hands in the water.\n8533,anetv_tJLm2D4J3X0,13447,People are running down a track and jumping into a sand pit. People,People are running down a track and jumping into a sand pit.,People,gold,are standing on the side of the track watching them.,are watching them as they go through the pits.,are walking around in a track.,put water gear on their heads at the end of the bmx track.\n8534,anetv_tJLm2D4J3X0,13448,People are standing on the side of the track watching them. The man,People are standing on the side of the track watching them.,The man,gold,jumps to his feet ready to jump an hop.,on the right side of the court throws the ball.,is posing in front of a sign.,hits the ball again and do it several times.\n8535,anetv_nEAypudaSFs,18022,He continues playing the tune as he closes his eyes in deep concentration. He,He continues playing the tune as he closes his eyes in deep concentration.,He,gold,takes several long breaths.,moves the harmonica side ways as he continues playing till he comes to an end.,begins processing the guitar.,\"pauses, watching his apartment figure smoking his cigarette as he says it.\"\n8536,anetv_nEAypudaSFs,18021,He plays rhythmically as he moves the harmonica rapidly through his mouth to play a fast tune. He,He plays rhythmically as he moves the harmonica rapidly through his mouth to play a fast tune.,He,gold,continues playing the tune as he closes his eyes in deep concentration.,continues to play the drums with his stick as she plays a tune.,takes establishment's number into his mobile.,plays with a lofty d to make a busy sound of the song then drives dimly.\n8537,anetv_nEAypudaSFs,18020,There's a young man in a red shirt and blue beanie hat playing the harmonica. He,There's a young man in a red shirt and blue beanie hat playing the harmonica.,He,gold,'s done with a purple baby are sitting next to him.,starts to do some exercise moves like a cricket aria.,plays rhythmically as he moves the harmonica rapidly through his mouth to play a fast tune.,is playing the saxophone and playing a guitar.\n8538,anetv_jIVP2bEWmJE,1500,He squirts mustard and mayo onto the sandwich. He then,He squirts mustard and mayo onto the sandwich.,He then,gold,uses a knife to tomatoes and peel the potato in a bowl.,ladles the cheese onto the bread slice.,goes to a piece of cheese.,adds meat and cheese.\n8539,anetv_jIVP2bEWmJE,1499,He opens the fridge and takes out sandwich ingredients. He,He opens the fridge and takes out sandwich ingredients.,He,gold,squirts mustard and mayo onto the sandwich.,fixes the kale with a gift and puts it on the plate.,replaces the glass at pieces.,bends it once again.\n8540,anetv_jIVP2bEWmJE,1498,A boy is standing in a kitchen with two pieces of bread. He,A boy is standing in a kitchen with two pieces of bread.,He,gold,\"stands into the counter, putting on the sandwich, then slurps the butter on the back.\",opens the fridge and takes out sandwich ingredients.,\"adds the pasta to the pot, then begins boiling a soda on the end rim.\",spreads the chips and puts it in a bowl.\n8541,anetv_TmnVK-cYrzg,9318,There is a laundry basket and a lot of clothes on the bed. The mother of the boy who is filming the video,There is a laundry basket and a lot of clothes on the bed.,The mother of the boy who is filming the video,gold,are still on the wall.,are happening free with supplies.,shows a vacuum cleaner.,does n't be shown.\n8542,anetv_TmnVK-cYrzg,9317,There's a little boy sitting on a bed in the bedroom. There,There's a little boy sitting on a bed in the bedroom.,There,gold,is a rock wall behind shirt hanging on.,is a dish washer to do the same thing.,are a bit of paint and raindrops on the floor.,is a laundry basket and a lot of clothes on the bed.\n8543,anetv_TmnVK-cYrzg,9322,The boy then lays down on the bed as he sees his mother finish the job. Then the boy,The boy then lays down on the bed as he sees his mother finish the job.,Then the boy,gold,adds him to the comforter to the floor and removes a rug.,runs down to grab a hair brush.,turns to talk to the camera while his dad plays the bagpipes.,gets off the bed and jumps down to the ground to look under the bedside table.\n8544,anetv_TmnVK-cYrzg,9321,The boy watches his mom vacuum as he jumps on the bed. the boy then,The boy watches his mom vacuum as he jumps on the bed.,the boy then,gold,gives the man a haircut and falls.,knocks down the stairs again.,lifts her feet from his shoulder.,lays down on the bed as he sees his mother finish the job.\n8545,anetv_TmnVK-cYrzg,9320,Then she turns the vacuum cleaner on and begins vacuuming the bedroom floor. The boy,Then she turns the vacuum cleaner on and begins vacuuming the bedroom floor.,The boy,gold,is now holding a bucket and spraying out the steam cleaner.,takes her shirt off and uses a plastic brush on it to start before mopping the floor.,has to view the exercise member's tablet while smiling and then tapes his legs under the others.,watches his mom vacuum as he jumps on the bed.\n8546,anetv_TmnVK-cYrzg,9319,The mother of the boy who is filming the video shows a vacuum cleaner. Then she,The mother of the boy who is filming the video shows a vacuum cleaner.,Then she,gold,passes the fence.,\"showed a quick, black vacuum vacuum and spray the cement on the carpet.\",applies up to the wall so that it is n't clean.,turns the vacuum cleaner on and begins vacuuming the bedroom floor.\n8547,anetv_s3HhNlysFDs,14261,A cross appears in the style of the tile under the water in a pool. A man in a swim cap,A cross appears in the style of the tile under the water in a pool.,A man in a swim cap,gold,swims through the water toward the camera.,is standing on the front of a building wearing a black shirt is making flashlight - padding on his shoe.,\"sits back, grinning with alarm.\",sits on the floor next to the pool talking.\n8548,anetv_s3HhNlysFDs,14262,A man in a swim cap swims through the water toward the camera. He,A man in a swim cap swims through the water toward the camera.,He,gold,then pulls a towel towards her.,see several shots of landscapes.,is shown swimming from numerous angles.,is hiding behind the dock with the kite still in rhythm.\n8549,anetv_3LyyqeVeYkI,11130,A cowboy on a horse is released from a gate. He,A cowboy on a horse is released from a gate.,He,gold,walks over with a horse and carries onto the rope as the cow goes over.,\"jumps up and falls, chases after several calf, while it crashes off and it crashes across the floor.\",turns the horse around and ties the rope with it.,lassos a young calf on the dirt.\n8550,anetv_3LyyqeVeYkI,11131,He lassos a young calf on the dirt. He,He lassos a young calf on the dirt.,He,gold,jumps off his horse and ties the calf.,picks up the calf and runs back to see another calf.,wraps blankets around his fighter.,\"sits in the struts, his arms extend at his sides.\"\n8551,lsmdc0033_Amadeus-66965,1232,\"Finally, someone speaks, in a whisper. Someone\",\"Finally, someone speaks, in a whisper.\",Someone,gold,pretends to look away.,strains to hear what they are saying but can not.,slowly spits he take the coat off and hands someone a good twenty.,looks by the door.\n8552,lsmdc3035_INSIDE_MAN-2076,15682,The mastermind passes one of his armed accomplices. Someone,The mastermind passes one of his armed accomplices.,Someone,gold,\", he arrives in a circle and slips off on to his lower hand.\",stops and faces him.,\"shakes his head and poses, catching him off.\",loads a toy in the carriage car with someone as he watches a plane sadly.\n8553,anetv_Lv6ypQZWIEg,127,\"She throws another stick in a grassy field, where her coaches watch on. A man\",\"She throws another stick in a grassy field, where her coaches watch on.\",A man,gold,gives her a medal.,walks off stage with a woman in her backyard perform.,explains that he training to run and play a game of field croquette.,\"shoots a vampire in the head, then rides on board.\"\n8554,anetv_Lv6ypQZWIEg,125,\"Back on the sand, she continues walking with the equipment attached to her waist. She\",\"Back on the sand, she continues walking with the equipment attached to her waist.\",She,gold,\"rocks, and someone descends into a deep part, looking calm and swims at the bottom of the pool.\",throws the pummel back as well.,throws a pebble into the beach.,climbs into the hoop then walks in to another room.\n8555,anetv_Lv6ypQZWIEg,126,\"On a school track, she throws a stick. She\",\"On a school track, she throws a stick.\",She,gold,dropped in and goes backwards.,\"throws another stick in a grassy field, where her coaches watch on.\",falls into the sand.,throws a bat into his arms.\n8556,anetv_qD52CX0CSBs,17297,A woman is seen speaking to the camera while standing next to a horse and petting the horse on the side. The horse,A woman is seen speaking to the camera while standing next to a horse and petting the horse on the side.,The horse,gold,continues brushing horse fur while the dog continues to brush the horse's mane.,continue to ride around several lane while using the water and walking in the end while two people are seen sitting in her.,sniffs all around the woman while she pets him down and turns his head in the end.,continues moving her horse around with her brush while sitting next to the horse.\n8557,anetv_jOUwMAGYImE,5456,He sticks one leg up to the side. He,He sticks one leg up to the side.,He,gold,types on the screen and then glances away.,puts the clamp on his hand and launches himself up and down when he misses it.,struggles to move up the slope.,gets off and does a hand stand.\n8558,anetv_jOUwMAGYImE,5455,A man sits on a stationary bike on a stage and starts working out. He,A man sits on a stationary bike on a stage and starts working out.,He,gold,begins to demonstrate flips and get close ups of the weight.,lifts the barbell up to his chest.,sticks one leg up to the side.,continues dancing around while speaking and speaking to the camera.\n8559,lsmdc1015_27_Dresses-79639,16167,\"Crossing a street, someone meets someone getting out of a cab. Someone\",\"Crossing a street, someone meets someone getting out of a cab.\",Someone,gold,drives the jeep forward into the private office.,proudly sports a man's white shirt.,sits on a bed to make a subtle - check play.,shoves the cat to bits.\n8560,lsmdc1015_27_Dresses-79639,16168,Someone proudly sports a man's white shirt. They,Someone proudly sports a man's white shirt.,They,gold,walk into their office reception.,appears as if to say something.,lob the ball against the sides of the net.,\"toast, then closes his eyes and drinks.\"\n8561,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19567,\"Someone drops to the floor as bullets rip through the front door. Popping up on one knee, someone\",Someone drops to the floor as bullets rip through the front door.,\"Popping up on one knee, someone\",gold,sets out the driver driver's window.,\"aims his gun at the door, which slowly swings open.\",\"stands awake, with someone's frustrated brother hanged after her.\",\"clutches his cuff to his belt and rolls off, sending someone toward the back of the wide staircase.\"\n8562,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19565,Someone slips the note into his wallet as he steps into the hallway. Someone,Someone slips the note into his wallet as he steps into the hallway.,Someone,gold,hides a pistol behind his back as his neighbor leaves.,eye the goblin's still viewfinder and view of the exquisite army kissing bobs nodding.,looks bleary - eyed.,swings a bag and hurries gun.\n8563,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19568,\"Popping up on one knee, someone aims his gun at the door, which slowly swings open. The mustached American\",\"Popping up on one knee, someone aims his gun at the door, which slowly swings open.\",The mustached American,gold,competitor in shock in front of someone's warmly lowers him as he tips eggs in a dirt - strewn path.,\"drops a newspaper as he keels forward, and lies motionless.\",lifts someone from his chair.,\"in a blue shirt's chest raises an enormous chaises knife, instinctively slashes forward.\"\n8564,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19571,\"Snowy chases the car a little ways, then returns. Inside the moustached man\",\"Snowy chases the car a little ways, then returns.\",Inside the moustached man,gold,hurries with trees on a ski slope.,points one finger at various letters on the newspaper.,approaches a beer bar where a boy drinks a drink.,draws a storefront of a chain - link fence.\n8565,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19572,\"Someone rolls the man over, but he falls still. Someone\",\"Someone rolls the man over, but he falls still.\",Someone,gold,comes back first next to someone.,\"picks up the newspaper, which is covered with bloody fingerprints.\",tries to look away as he looks in the mirror.,\"raises the guy back female, and whips him upside his leg.\"\n8566,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19570,Someone rushes outside as a blue car speeds off. Snowy,Someone rushes outside as a blue car speeds off.,Snowy,gold,\"chases the car a little ways, then returns.\",falls from the trunk of a passing truck.,dashes off through a drive and police the car.,squints up the equipment and watches as the people enter shop park.\n8567,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19569,\"The mustached American drops a newspaper as he keels forward, and lies motionless. Someone\",\"The mustached American drops a newspaper as he keels forward, and lies motionless.\",Someone,gold,walks over to the baby holding a straight journal and hands it to someone.,rushes outside as a blue car speeds off.,shifts on his feet.,glares at someone.\n8568,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31466,19566,Someone hides a pistol behind his back as his neighbor leaves. Someone,Someone hides a pistol behind his back as his neighbor leaves.,Someone,gold,drops to the floor as bullets rip through the front door.,strides by his father's helicopter.,looks over at someone who sits with someone in his wheelchair in the editor's office.,\"enters, impression of someone's brains - soaked.\"\n8569,anetv_rxfkWIGZtlQ,18873,\"Then, the woman takes off the adapter of the hair dryer and continues explaining. Te woman\",\"Then, the woman takes off the adapter of the hair dryer and continues explaining.\",Te woman,gold,braids the hair with putting sunscreen on her waist with other woman's dances.,puts the clamp and shows the hairstyle product as she then walks it.,does the braid cut to a man.,\"continues talking holding on her right hand the hair dryer, and showing the hair of the female with the left hand.\"\n8570,anetv_rxfkWIGZtlQ,9782,Two women are seen looking at the camera with one speaking and holding a hair dryer. The woman,Two women are seen looking at the camera with one speaking and holding a hair dryer.,The woman,gold,shows off the hair dryer while speaking and pointing to the woman in the chair.,continues helping and hair brush all around a area while speaking to the camera while looking off into the distance.,continues to throw the hair by her hair while speaking to the camera.,puts her hair back and watches and smiles and clip the finished hair.\n8571,lsmdc0005_Chinatown-48172,9563,\"Someone picks up the sheet and pulls it back. Eyes open, the face\",Someone picks up the sheet and pulls it back.,\"Eyes open, the face\",gold,kneels on the grass.,\"rises, to top the ladder.\",badly cut and bruised.,blanket draped over his leg.\n8572,lsmdc0005_Chinatown-48172,9565,Someone is wheeling in another body with the help of an assistant. Someone,Someone is wheeling in another body with the help of an assistant.,Someone,gold,stares thoughtfully at the screen.,\"has him brought over to the counter, as if wiping fury from his other tongue.\",lugs a red sweater over their heads.,pulls back the sheet.\n8573,lsmdc0005_Chinatown-48172,9564,\"They begin to walk slowly, again have to move out of the way as some other corpse is being wheeled out of one of the Coroner cubicles. Someone\",\"They begin to walk slowly, again have to move out of the way as some other corpse is being wheeled out of one of the Coroner cubicles.\",Someone,gold,is wheeling in another body with the help of an assistant.,\"helps allow another person to fall, then rises to a great height.\",puts it back down in the white manuscript as it gets on its head.,leans his head painfully as it blows idly through.\n8574,anetv_uWWo9qZh3cU,9567,News anchors introduce a clip sitting at a desk in a newsroom. President Obama,News anchors introduce a clip sitting at a desk in a newsroom.,President Obama,gold,lifts a large weight over his head.,holds up a pole and catch it.,introduces and interviews a band playing on stage.,is shown displayed in force sheet.\n8575,anetv_uWWo9qZh3cU,9568,President Obama introduces and interviews a band playing on stage. President Clinton,President Obama introduces and interviews a band playing on stage.,President Clinton,gold,enters a yellow file to a group setting.,\"hangs his hands above his forehead, then shakes hands.\",is playing a bagpipe in front of a crowd of people.,plays the saxophone on stage with a band.\n8576,anetv_BKdKbFPerGo,7866,They get into the river water in tubes. They,They get into the river water in tubes.,They,gold,get up and look at one another.,dip on the water and dive against the ocean.,glide down the river on the tubes.,approach a railing at the top of a hill.\n8577,anetv_BKdKbFPerGo,6647,\"We then see people walking down a railroad track, then floating lazily in intertubes on a river. The people\",\"We then see people walking down a railroad track, then floating lazily in intertubes on a river.\",The people,gold,float near a bridge before the video ends.,step up their methods and walk out to them.,sails through a circular waterfall.,are slowly going down the road with their oars.\n8578,anetv_23ApAC123aQ,14437,Two men are messing around while cleaning the car. A sign,Two men are messing around while cleaning the car.,A sign,gold,\"is shown inside, in a small white area.\",is shown with a methods of cleaning off until it is including the mop.,are cleaning the men.,shows the services they offer.\n8579,anetv_23ApAC123aQ,14433,The scene opens up with a carwash and and advertisement. Two men,The scene opens up with a carwash and and advertisement.,Two men,gold,clean the paint being put on a power drain.,are talking while one is sitting in his car.,are rafting on someone's path.,run past as a man walks onto the dock and performs some else stunts.\n8580,anetv_23ApAC123aQ,14435,\"The car is dried and vacuumed, then on to the next car. The customer is handed his keys and he\",\"The car is dried and vacuumed, then on to the next car.\",The customer is handed his keys and he,gold,looks over the top of the horn as his friends win.,is on his way with a clean car.,points to a building in all of them.,can not notice that he's recording them.\n8581,anetv_23ApAC123aQ,14436,The customer is handed his keys and he is on his way with a clean car. Two men,The customer is handed his keys and he is on his way with a clean car.,Two men,gold,walk to through amazing mountainside.,switched posted at the entrance to the corridor.,are messing around while cleaning the car.,come into the open plan and walk out.\n8582,anetv_23ApAC123aQ,14434,Two men are talking while one is sitting in his car. A man,Two men are talking while one is sitting in his car.,A man,gold,is on the floor while wearing headphones and sitting down.,is spraying a car with a black jack.,is cleaning a car and talking to the camera.,stands in front of him smoking strong.\n8583,anetv_x2xC5lm0cZw,8572,A girl is outside mowing the lawn on a very sunny day. She,A girl is outside mowing the lawn on a very sunny day.,She,gold,is looking from behind a bush.,cycles up on the step but does n't notice her.,\"fixes her hair one at a time, then walks away and uses a different camera to get dried away until she leaves them.\",has to back the lawn mower onto the pavement to get it going in the right direction.\n8584,anetv_x2xC5lm0cZw,8573,She has to back the lawn mower onto the pavement to get it going in the right direction. Another girl,She has to back the lawn mower onto the pavement to get it going in the right direction.,Another girl,gold,is trimming the bush cutter and is followed by that girl wearing both slices.,comes down a steps stairway and then appears to be painting the upper part of top snow.,is shown outside playing in the dirt.,is walking down the sidewalk in a big way.\n8585,anetv_x2xC5lm0cZw,5615,Woman is wearing a pink sweater and is cutting the grass with a lawnmower. woman,Woman is wearing a pink sweater and is cutting the grass with a lawnmower.,woman,gold,is kneeling on the yard using a machine around bushes.,is standing in the middle of a track doing flips on a hopscotch.,is standing in front of her and putting green lights in her yard.,cuts some paper with a paper stick.\n8586,anetv_x2xC5lm0cZw,5614,Woman is walknig in a grassy yard cutting the grass with a lawnmower. woman,Woman is walknig in a grassy yard cutting the grass with a lawnmower.,woman,gold,is lying on the ground next to the dresser talking to the camera.,is in the middle of the field talking about the job.,is wearing a pink sweater and is cutting the grass with a lawnmower.,is sitting and watching the backyard underneath the mower.\n8587,lsmdc3027_GET_HIM_TO_THE_GREEK-12463,15706,\"In their bedroom, someone and someone wake up. Someone\",\"In their bedroom, someone and someone wake up.\",Someone,gold,leads the herd to a pond.,hands over the boy's cigarettes.,checks a bedside clock.,\"returns his gaze to the young girl, who smiles at a delicious cake.\"\n8588,lsmdc3027_GET_HIM_TO_THE_GREEK-12463,15708,\"Someone beams at him, then gives him a gentle kiss on the cheek. They\",\"Someone beams at him, then gives him a gentle kiss on the cheek.\",They,gold,\"drag torches off, who spar proudly.\",gratefully meets someone at a table.,sit down on a couch.,lie face to face gazing at each other lovingly and share a smile.\n8589,lsmdc3027_GET_HIM_TO_THE_GREEK-12463,15707,Someone checks a bedside clock. Someone,Someone checks a bedside clock.,Someone,gold,stares at an unhatched egg.,\"beams at him, then gives him a gentle kiss on the cheek.\",sets a dog on a table.,checks his portable mobile phone user.\n8590,anetv_kgvbU_3jEy8,15059,Yellow text is seen at the bottom of the screen. There,Yellow text is seen at the bottom of the screen.,There,gold,consults the images.,is then seen doing capoeira jumps and a view is shown in a video with mostly people exercising.,is a zoom in of the back of a player walking.,is at the counter of the bathroom getting ready to wash the dishes and then ready to pour them in a sink.\n8591,anetv_kgvbU_3jEy8,15060,There is a zoom in of the back of a player walking. The screen,There is a zoom in of the back of a player walking.,The screen,gold,comes on a second over again.,returns to another bike the screen.,seems to be participation by a person who's holding it.,goes black with white letters and numbers.\n8592,anetv_kgvbU_3jEy8,15057,A black screen appears with two instances of white text zooming in explaining what you are about to see. There,A black screen appears with two instances of white text zooming in explaining what you are about to see.,There,gold,do a song which include a game of fun.,\"is a diver, mask being shown on the screen.\",are two teams playing indoor soccer one team in white and the other in blue.,are shots of the video.\n8593,anetv_kgvbU_3jEy8,14727,They are kicking a ball back and forth. Instructions,They are kicking a ball back and forth.,Instructions,gold,are being given regarding their techniques.,see a fast write screen.,see the people on the stick.,run across the field as they throw balls to show how to make a goal.\n8594,anetv_kgvbU_3jEy8,15058,\"Throughout the video there are pauses where players from both teams are circled, have connecting lines and arrows drawn in front to show a movement of a play. Yellow text\",\"Throughout the video there are pauses where players from both teams are circled, have connecting lines and arrows drawn in front to show a movement of a play.\",Yellow text,gold,appears for one woman to be then shown talking about the process.,is seen at the bottom of the screen.,is shown in a black and white video from a reporter outside on a live video.,appears on the field above it.\n8595,anetv_kgvbU_3jEy8,14726,A group of team mates are seen on a court. They,A group of team mates are seen on a court.,They,gold,are in martial arts attire while holding.,hit the balls back and forth while shooting one another.,hit a ball into the goal and is hit by another player from each team.,are kicking a ball back and forth.\n8596,anetv_ivmBrbO32Qo,15651,A man in a lab coat uses a swiffer broom. He,A man in a lab coat uses a swiffer broom.,He,gold,rakes it across a floor with cleaning solution.,starts to iron the cardboard.,\"rubs the mans shoulders, shoulder and beard.\",is shown hammering down some flooring.\n8597,anetv_ivmBrbO32Qo,15652,He rakes it across a floor with cleaning solution. The floor,He rakes it across a floor with cleaning solution.,The floor,gold,stops and he picks them up.,lays a small period of metal on the tiles.,is all opened as he wipes hardwood floors with another cloth.,shines as it comes clean beneath his feet.\n8598,anetv_z_ExqQ80T5g,13826,\"The waves become harder and the man has to hold on as the boat moves to the side ensuring that he won't fall out. Once finished, he continues moving through the water and then a white screen\",The waves become harder and the man has to hold on as the boat moves to the side ensuring that he won't fall out.,\"Once finished, he continues moving through the water and then a white screen\",gold,appears with several names and two logos on it.,is shown as he talks for a time.,appears under the water from this person.,appears with shows and above.\n8599,anetv_z_ExqQ80T5g,12448,He is seen going through the rough waters with his sail flying in the wind. He,He is seen going through the rough waters with his sail flying in the wind.,He,gold,is seen from different angles as he continues sailing.,goes down and is falling a little time.,surfs behind his arms and controls the surfer steering.,\"pulled the waves to calm them, letting out water on a quiet guitar before gazing off in the distance.\"\n8600,anetv_z_ExqQ80T5g,12447,A man is sailing on a boat in the ocean. He,A man is sailing on a boat in the ocean.,He,gold,is seen going through the rough waters with his sail flying in the wind.,flips a few times and floats down.,flies in and out of the water.,uses large oars to reach out more details of how strong they are.\n8601,anetv_z_ExqQ80T5g,13825,A man is shown in someone rocky water sailing by himself in the water. The waves become harder and the man,A man is shown in someone rocky water sailing by himself in the water.,The waves become harder and the man,gold,continues sailing and also jump on to jump and wave.,is on the water behind him.,rises and looks between the trees to see that there's no car in the surface.,has to hold on as the boat moves to the side ensuring that he won't fall out.\n8602,anetv_dOUCAVnJLko,18982,Woman is jumping in a large rope from a high bridge. guys,Woman is jumping in a large rope from a high bridge.,guys,gold,are sitting on the grass doing the rope holding them.,are walking around on the bikes doing high jump.,are standing on a dark street watching the truck.,are standing on top of the bridge and wearing harness.\n8603,lsmdc0031_The_Lost_Weekend-65517,15904,\"Someone, clinging to someone's arm, pulls himself up. Someone\",\"Someone, clinging to someone's arm, pulls himself up.\",Someone,gold,jumps to his feet and the others spies on him.,steps onto a table and grins at someone.,\"pushes him through the doorway to the dark bedroom, closing the door after him.\",\"tackles someone to carry her away, as the detective leaves.\"\n8604,anetv_ynispYtdDq8,2606,A woman in lingerie is sitting on a couch waving at the camera. She,A woman in lingerie is sitting on a couch waving at the camera.,She,gold,opens a pack of cigarettes and lights up.,\"trims the shoes, fixing the gown in a costume and another pair.\",looks pretty much the same who was hanging.,leans over and makes a stunning sized replica.\n8605,anetv_ynispYtdDq8,2607,She opens a pack of cigarettes and lights up. She,She opens a pack of cigarettes and lights up.,She,gold,continues sitting and smoking while looking at the camera.,samantha points to smile.,climbs out on her way.,rolls her arms from the glass and is sweating as baby is injured.\n8606,anetv_R3ffxWaI9QU,16306,A male athlete is running on a track. He,A male athlete is running on a track.,He,gold,gets to a pole and vaults off the mountains.,walks forward and then fell over a board.,falls and lands on the mat.,jumps high into the air.\n8607,anetv_R3ffxWaI9QU,16308,He vaults backwards over a high beam. This,He vaults backwards over a high beam.,This,gold,\"kicks the puck high, and lands perfectly on the ground.\",\"moves into the bow and lands the disc before from landing, then backs to the landing and lands on a mat.\",is shown repeated in slow motion numerous times.,lands in positions on the upper length of the room.\n8608,anetv_R3ffxWaI9QU,16307,He jumps high into the air. He,He jumps high into the air.,He,gold,puts a hockey hoop on his elbows and flips times.,falls off his feet.,does several flips with the handle bars.,vaults backwards over a high beam.\n8609,anetv_zPu3JBSPa94,14839,Man dabs the woman's arm with a rag. Man wearing red shoes,Man dabs the woman's arm with a rag.,Man wearing red shoes,gold,is pushing the leaves.,walks into the room.,is standing in a white room.,are bouncing on the floor.\n8610,anetv_zPu3JBSPa94,4131,The camera pans to show another woman with an arm wrapped in plastic wrap. The camera,The camera pans to show another woman with an arm wrapped in plastic wrap.,The camera,gold,shows them wandering next to a white bowling ball.,zooms into the woman's hands and with another step around the room.,\"has various cards with women using a paint box and shows off the finished product, as they continue to dance.\",\"pans back to the first woman, who now speaks intermittently.\"\n8611,anetv_zPu3JBSPa94,4130,A woman lays in a reclined chair while a man tattoos her arm and a standing man watches. The camera pans,A woman lays in a reclined chair while a man tattoos her arm and a standing man watches.,The camera pans,gold,to show another woman with an arm wrapped in plastic wrap.,beautiful woman in a long face as tattooed in white moves on top of her.,out to show a sudden panning each man standing at the other side of the woman waiting when the person comes to swinging.,around him and the woman looking down and the woman begins to kiss his own belly.\n8612,anetv_zPu3JBSPa94,14838,A woman is getting a tattoo applied by a man with a grey shirt and black hat. Man,A woman is getting a tattoo applied by a man with a grey shirt and black hat.,Man,gold,is ironing the shoe white bra and straps it to a side and has a little red top sock on it.,attempts to hold the piece of equipment with his hands.,takes a hat and begins rubbing it and polishing it.,dabs the woman's arm with a rag.\n8613,lsmdc1014_2012-79484,18905,The ark rises as the massive waves curl up and over the top. A computer graphic,The ark rises as the massive waves curl up and over the top.,A computer graphic,gold,shows the angle of the collision between the two arks.,appears on the bulletin board radio.,shows a photo of two girls on a beach.,reads with a compact and expensive afternoon.\n8614,lsmdc1014_2012-79484,18904,The plane cracks the anchor away. The ark,The plane cracks the anchor away.,The ark,gold,breaks the fiery missile up plastering the floor.,climbs up onto the curved bridge deck railing.,rises as the massive waves curl up and over the top.,looks down and looks at the map.\n8615,lsmdc1014_2012-79484,18902,A door slams shut on people. Someone,A door slams shut on people.,Someone,gold,\"gets people free, trapping herself in a flooding corridor.\",and someone rush off and fall to his knees.,throws down her pipe.,tumbles out of view.\n8616,anetv_doZb3RlLSts,12868,They lay carpet over the padding. They,They lay carpet over the padding.,They,gold,vacuum the carpet after they put it in.,use the vacuum to swim around the area lights.,melt the carpet onto a carpet.,finish the tape and continue to squirt the wall paper on the floor.\n8617,anetv_doZb3RlLSts,16188,\"A man in black shirt is placing a red mat on the floor, while another man in white shirt helped him, he cut and measure the mat and taped them. Then the two men install the gray carpet, they\",\"A man in black shirt is placing a red mat on the floor, while another man in white shirt helped him, he cut and measure the mat and taped them.\",\"Then the two men install the gray carpet, they\",gold,reached the ground and begin dancing the two together.,\"cut and measure and flatten the carpet as they install it, then vacuum the carpet when they were done.\",put the cement inside it.,\"switch left one to the other, and then started to pull the carpet away.\"\n8618,anetv_doZb3RlLSts,12867,Two men are laying down padding in a room. They,Two men are laying down padding in a room.,They,gold,are using steppers for exercise.,lay carpet over the padding.,see a wood box being held by a man wearing a rug.,are all playing a game of indoor tennis.\n8619,anetv_UMhZGJqeSuU,538,\"The crowd cheers, and one of the players hits his knees. The coach\",\"The crowd cheers, and one of the players hits his knees.\",The coach,gold,comes on to a set where motocross riders.,stretches and puts his arm around the boy.,smiles happily as he walks toward the field.,hands up and cheers.\n8620,anetv_UMhZGJqeSuU,3281,Men are shown playing a game on a large field. The crowd,Men are shown playing a game on a large field.,The crowd,gold,ducks on it and sticks in a picture and bounce around for a while.,cheers on each other as they try to fight them away.,claps loudly as they chase the ball.,is cheering and wearing colorful outfits.\n8621,anetv_UMhZGJqeSuU,3282,The crowd is cheering and wearing colorful outfits. The men on the field,The crowd is cheering and wearing colorful outfits.,The men on the field,gold,talks to the camera standing next to each hugging sea holding hands.,\"watch then go black, research and high fives.\",are getting ready to play up a game.,hit the ball back and forth with sticks to make goals in the nets.\n8622,anetv_UMhZGJqeSuU,3280,\"There is an intro with fire in the background and a picture of fangoers, that says Cork v Wexford All Ireland semi final 2003. Men\",\"There is an intro with fire in the background and a picture of fangoers, that says Cork v Wexford All Ireland semi final 2003.\",Men,gold,dance as a young woman in blue drinks a liquid from a lens and keeps talking.,rides everywhere and put fish on him and flash it.,swirl around and angry frisbee.,are shown playing a game on a large field.\n8623,anetv_UMhZGJqeSuU,537,A group of teammates are chasing and falling down after a ball. They,A group of teammates are chasing and falling down after a ball.,They,gold,throw the ball back and forth across the court while another team is seated in the background to celebrate the puck.,people lob the ball back.,misses the ball to the next goal.,\"fight, trying to hit it into the opposing goal.\"\n8624,lsmdc3056_PUBLIC_ENEMIES-2922,11403,Her dark eyes probe his as they sway with the music. She,Her dark eyes probe his as they sway with the music.,She,gold,grins at their own joke.,undoes the hem of her blouse and pulls him off her feet.,allows a faint smile.,beams at him as someone breaks into an uncertain gesture as he shuffles off to the flame.\n8625,lsmdc3056_PUBLIC_ENEMIES-2922,11399,She looks up at him. He,She looks up at him.,He,gold,lifts her brow and their lips meet.,puts her fingers around her daughter.,smiles and pulls off a book.,gives his head a stunned shake.\n8626,lsmdc3056_PUBLIC_ENEMIES-2922,11394,Someone leads a young woman to someone. Someone,Someone leads a young woman to someone.,Someone,gold,\"bursts in, using her jacket collar to weave the furniture away.\",\"follows someone and someone as they stroll away, leaving someone alone.\",rises rooted to the disgust.,massages her head and beckons her a few times.\n8627,lsmdc3056_PUBLIC_ENEMIES-2922,11401,She grins at the other women seated at her table. He,She grins at the other women seated at her table.,He,gold,pokes her head forward.,\"warily locks eyes with her, then looks away.\",uncomfortably slaps her cash.,\"in fact, she has a back bag.\"\n8628,lsmdc3056_PUBLIC_ENEMIES-2922,11396,He stares at the brunette in the red dress who laughs and beams. The gang leader,He stares at the brunette in the red dress who laughs and beams.,The gang leader,gold,holds up a newspaper.,grabs his bag and aims at someone who bashes on the barricade and heads away.,fires a gun and the gang heads up.,\"sips his drink and stands, keeping his eyes locked on the exotic woman.\"\n8629,lsmdc3056_PUBLIC_ENEMIES-2922,11400,Her bright red lips smile coyly. She,Her bright red lips smile coyly.,She,gold,slips off her sunglasses and rises on her bed.,grins at the other women seated at her table.,\"frowns, then glances back.\",grabs her brush and caresses her hair.\n8630,lsmdc3056_PUBLIC_ENEMIES-2922,11397,\"The gang leader sips his drink and stands, keeping his eyes locked on the exotic woman. He\",\"The gang leader sips his drink and stands, keeping his eyes locked on the exotic woman.\",He,gold,opens the fridge and finds a piece of material.,strides resolutely through the crowd and halts just behind her.,offers a half - wrest truffle and stuffs something in her sandwich.,taps on the rear and makes his way through a canvas roof.\n8631,lsmdc3056_PUBLIC_ENEMIES-2922,11393,Someone eyes the brunette in the red dress as she returns to her table. Someone,Someone eyes the brunette in the red dress as she returns to her table.,Someone,gold,\"shows a sign on the wall, where she works a number.\",speaks with the nurse as she approaches.,leads a young woman to someone.,\"smiles at someone as she walks the sidewalk, someone shifts uncomfortably behind her.\"\n8632,lsmdc3056_PUBLIC_ENEMIES-2922,11404,She allows a faint smile. Someone,She allows a faint smile.,Someone,gold,wanders along someone's towards some younger and garden trees.,takes a note from his chair and turns to the desk.,summons up a breath and arches his brows.,looks down at her shoulders gently.\n8633,lsmdc3056_PUBLIC_ENEMIES-2922,11395,\"Someone follows someone and someone as they stroll away, leaving someone alone. He\",\"Someone follows someone and someone as they stroll away, leaving someone alone.\",He,gold,stares at the brunette in the red dress who laughs and beams.,sets a log in the hallway beside someone's cot.,sits on a cavern grotto with lights and apartments.,\"gazes up at someone, who scratches him with his curious mouth.\"\n8634,lsmdc3056_PUBLIC_ENEMIES-2922,11402,\"He warily locks eyes with her, then looks away. He takes her hand and she\",\"He warily locks eyes with her, then looks away.\",He takes her hand and she,gold,wraps it in a choke hold.,\"rests her forehead against his, arching someone's torso with pressure.\",places her other hand on his shoulder.,\"takes a sip from her coffee and he enters, picks up the meal and puts it in her hands.\"\n8635,anetv_cKFTf1vZQOw,6011,\"Two male kids are outside on a driveway talking to one another. Once they have finished their conversation, they\",Two male kids are outside on a driveway talking to one another.,\"Once they have finished their conversation, they\",gold,begin skateboarding down the road into an open park.,begin coming toward someone's door.,take off again to talk as they go down the stairs through fence and patch of the floor.,continue laughing as someone goes.\n8636,lsmdc0009_Forrest_Gump-50679,14228,Someone falls out of his wheelchair and lands down on the floor. People,Someone falls out of his wheelchair and lands down on the floor.,People,gold,look on their faces.,laugh as they leave the apartment.,whispers something in his.,he punches the dog on the chest with his father's backs.\n8637,lsmdc0009_Forrest_Gump-50679,14226,\"Someone stands up, angry. Someone\",\"Someone stands up, angry.\",Someone,gold,glares into him is watching him until someone's gun on her head.,springs off the train and sinks down inside his un - stoned gap in the reptile car.,throws someone back onto the bed.,\"smiles at her, and someone stands over them.\"\n8638,lsmdc0009_Forrest_Gump-50679,14225,\"Someone stands up nervously, causing someone to fall down on the floor. Someone\",\"Someone stands up nervously, causing someone to fall down on the floor.\",Someone,gold,stops at the kids's foreground and pulls off his flannel shirt.,\"lies curled beside his friend's body, cupping the injured face.\",\"stands up, angry.\",sneaks up next to a little girl.\n8639,lsmdc0009_Forrest_Gump-50679,14220,Someone removes her top and sits on top of someone in his wheelchair. They,Someone removes her top and sits on top of someone in his wheelchair.,They,gold,kiss and play around.,enter someone's office.,wrap a meal in her wrecked room.,sit in the principal's office.\n8640,lsmdc0009_Forrest_Gump-50679,14222,Someone sits in a chair. Someone,Someone sits in a chair.,Someone,gold,gets a tray of coffee in an office case.,stands and opens her locker.,leads someone along the aisle before he plummets into someone's ward.,leaps on him and begins to kiss someone.\n8641,lsmdc0009_Forrest_Gump-50679,14224,She reaches down to someone's crotch. Someone,She reaches down to someone's crotch.,Someone,gold,\"hold up the stairs, as wanders simultaneously through a glass in a mass of glass shaped.\",fingers idly cases the cd and causing blood to eyes her.,turns until she gets back.,\"stands up nervously, causing someone to fall down on the floor.\"\n8642,lsmdc0009_Forrest_Gump-50679,14221,They kiss and play around. Someone,They kiss and play around.,Someone,gold,knocks the commander's beard off.,chuckles to himself and looks at the guitar.,sits in a chair.,goes back to sleep.\n8643,lsmdc0009_Forrest_Gump-50679,14223,Someone leaps on him and begins to kiss someone. She,Someone leaps on him and begins to kiss someone.,She,gold,reaches down to someone's crotch.,gets to her feet as someone crawls to the wall.,\"jumps up and down, then comes back up, rubbing him a kiss.\",\"rises from the floor, lands on the floor, and drops onto the floor.\"\n8644,lsmdc1020_Crazy_Stupid_Love-81288,11265,They are in the gym. Someone,They are in the gym.,Someone,gold,does push - ups on a handstand.,is lifting bumpy with the hands of person doing inline skates.,is seen on the art gear with equipment.,sits at a table in a tasteful salon.\n8645,lsmdc0021_Rear_Window-58945,11707,She reaches for the long focus lens. She,She reaches for the long focus lens.,She,gold,turns back to her coach and looks sheepish.,takes her own lens out.,lifts it to her eye.,makes it to the camera and walks toward the beach.\n8646,lsmdc0021_Rear_Window-58945,11718,He goes on with his packing. Someone,He goes on with his packing.,Someone,gold,\"puts down the long - focus lens, and turns around toward the room.\",walks over to the sari and leans on her desk.,sits in bathroom looking at the work with his arms crossed.,is gravely pinned to the door.\n8647,lsmdc0021_Rear_Window-58945,11714,\"Someone has the new alligator bag belonging to his wife, in his hand. He\",\"Someone has the new alligator bag belonging to his wife, in his hand.\",He,gold,approaches someone's house.,glances over her shoulder and finds.,checks the address and removes the tag from his lips.,\"moves slowly across the bedroom, out of sight behind the door.\"\n8648,lsmdc0021_Rear_Window-58945,11716,\"In a moment he reappears, moving back to his packing. He\",\"In a moment he reappears, moving back to his packing.\",He,gold,leaf falls off the tree.,alights his height in his hand he thumps.,\", someone slams beer.\",puts the handbag into one of the suitcases - - the one which he has almost completed filling.\n8649,lsmdc0021_Rear_Window-58945,11717,He puts the handbag into one of the suitcases - - the one which he has almost completed filling. He,He puts the handbag into one of the suitcases - - the one which he has almost completed filling.,He,gold,climbs to the top of the railing.,grabs it and puts it back on.,goes on with his packing.,hands over the wooden table again.\n8650,lsmdc0021_Rear_Window-58945,11711,As someone comes up to the two of them. People,As someone comes up to the two of them.,People,gold,stand by a door.,wear half - red mother and a small frenchman.,turn toward the window.,look and dance around the spacious room.\n8651,lsmdc0021_Rear_Window-58945,11719,The two women watch him expectantly. Someone,The two women watch him expectantly.,Someone,gold,\"lifts her left hand, and looks fondly at her ring finger.\",starts to laugh at the agony.,glances down at someone's bedside.,steps out into the road.\n8652,lsmdc0021_Rear_Window-58945,11715,\"He moves slowly across the bedroom, out of sight behind the door. In a moment he\",\"He moves slowly across the bedroom, out of sight behind the door.\",In a moment he,gold,reacts and starts to throw the notebook out of the way.,\"reappears, moving back to his packing.\",\"pops the door, smiles at his father worriedly, but avoids answering them.\",has stopped and looks up at someone.\n8653,lsmdc0021_Rear_Window-58945,11712,People turn toward the window. Someone,People turn toward the window.,Someone,gold,emerges from a corner.,\"gives two thumbs up, as someone touches his head.\",\"grabs the long - focus lens, lifts it up.\",and someone sit in a late evening on bed.\n8654,lsmdc0021_Rear_Window-58945,11710,She comes down the stairs. As someone,She comes down the stairs.,As someone,gold,leads her down the slide.,\"walks into bed, his face lights up.\",comes up to the two of them.,comes to her bedroom someone peeks inside then hurls her head in.\n8655,lsmdc0021_Rear_Window-58945,11713,\"Someone grabs the long - focus lens, lifts it up. Someone\",\"Someone grabs the long - focus lens, lifts it up.\",Someone,gold,\"pours it out, then makes the other way onto it.\",sits on its back and looks closely at the light light on the dirt.,\"has the new alligator bag belonging to his wife, in his hand.\",realizes its face human materializes and lashes out.\n8656,lsmdc0021_Rear_Window-58945,11708,\"There is a candle burning in a holder, and other lamps also light the apartment. She\",\"There is a candle burning in a holder, and other lamps also light the apartment.\",She,gold,takes the oven outside as another tech goes in.,shines a flashlight that shines up to someone's apartment.,steps back at her and puts it aside as she enters the office.,is dressed in sedate street clothes.\n8657,lsmdc3081_THOR-37851,16889,\"Someone and the others exchange glances. After a moment's hesitation, someone\",Someone and the others exchange glances.,\"After a moment's hesitation, someone\",gold,raises his right fist to his own breast and kneels on one knee.,takes the lit cigarette from his mouth and sniffs it.,\"switches off the projector, firing more ships into the air.\",moves into a frenzy.\n8658,lsmdc3013_BURLESQUE-5095,5624,Someone sees his bare tush. She,Someone sees his bare tush.,She,gold,\"covers her eyes, but peeks.\",whips open the case of a broken door.,tries to catch someone's attention.,hurries out on horseback.\n8659,lsmdc3013_BURLESQUE-5095,5629,\"He kisses her smooth neck and they share a peck on the lips. Facing each other, someone\",He kisses her smooth neck and they share a peck on the lips.,\"Facing each other, someone\",gold,sits on her partner's couch and looks off.,drops his weight and curls her neck.,puts his arms around someone and hugs him close.,runs his fingers through her hair.\n8660,lsmdc3013_BURLESQUE-5095,5616,\"As they enter the darkened apartment, someone knocks over a lamp. He\",\"As they enter the darkened apartment, someone knocks over a lamp.\",He,gold,sits down in a chokehold.,steps back and climbs onto someone's bed.,picks up the newspaper.,bumps the lamp again.\n8661,lsmdc3013_BURLESQUE-5095,5619,Someone steps into the bedroom and shuts the doors. He,Someone steps into the bedroom and shuts the doors.,He,gold,\"reopens the doors, wearing bright red pajamas.\",chuckles to himself as he returns to his bunk.,rests her head against the wall of his shoulders.,scrambles along and glances at someone.\n8662,lsmdc3013_BURLESQUE-5095,5621,\"As he enters the kitchen, she admires his toned back on the sly. As he returns to the bedroom, she\",\"As he enters the kitchen, she admires his toned back on the sly.\",\"As he returns to the bedroom, she\",gold,notices someone rolling its gaze after him.,enters a 57 and closes the door as she turns.,checks him out again.,presses the back button.\n8663,lsmdc3013_BURLESQUE-5095,5617,He bumps the lamp again. Someone,He bumps the lamp again.,Someone,gold,looks demurely up at him from the daybed.,\"squints at the person, trying to find the source of the smoke.\",grabs someone's gun.,climbs out of his car.\n8664,lsmdc3013_BURLESQUE-5095,5627,\"As someone looks over her shoulder, the bedroom lights go out. She\",\"As someone looks over her shoulder, the bedroom lights go out.\",She,gold,\"rests her hands over her mouth, then at her side.\",\"looks thoughtful, then peers through someone's bedroom door to the kitchen sink then heads into the bathroom.\",wears a sieve cap.,lowers her disappointed gaze and purses her lips.\n8665,lsmdc3013_BURLESQUE-5095,5623,\"A chair, then a lamp conveniently hide his groin. Someone still\",\"A chair, then a lamp conveniently hide his groin.\",Someone still,gold,glued to the tv.,does n't think any boy has gotten the panties on.,looks at his own body - his composure barely visible in the beginning.,has her back to him.\n8666,lsmdc3013_BURLESQUE-5095,5620,\"He reopens the doors, shirtless. As he enters the kitchen, she\",\"He reopens the doors, shirtless.\",\"As he enters the kitchen, she\",gold,admires his toned back on the sly.,lets someone empty the litter out.,\"switches on the clasp beneath the sheet and icing, slices and pearls.\",shakes her full head.\n8667,lsmdc3013_BURLESQUE-5095,5625,He innocently holds a box of Famous Amos cookies over his privates. He,He innocently holds a box of Famous Amos cookies over his privates.,He,gold,rubs his own chest.,grabs a spoon then swallows as he takes a bite.,carries the brothers away.,returns to the bedroom.\n8668,lsmdc3013_BURLESQUE-5095,5626,He returns to the bedroom. He,He returns to the bedroom.,He,gold,takes two bags and a seat.,\"smirks vaguely, then faces the hazy light.\",\"closes the bathroom door for someone, then shuts his door.\",shuts the french doors.\n8669,lsmdc3013_BURLESQUE-5095,5618,He hands someone her shoes. Someone,He hands someone her shoes.,Someone,gold,whacks someone with the collar.,steps into the bedroom and shuts the doors.,turns on his heels.,hurries to her fridge and opens the door for a female suite.\n8670,lsmdc3011_BLIND_DATING-1013,15560,A tear spills down her smooth cheek. And he,A tear spills down her smooth cheek.,And he,gold,lifts his shaving chin.,rests his body on hers.,\"grabs his leg, panting.\",keeps his head bowed.\n8671,lsmdc3011_BLIND_DATING-1013,15561,\"Someone's pained gaze lingers on someone. Now in a visit with someone, someone\",Someone's pained gaze lingers on someone.,\"Now in a visit with someone, someone\",gold,takes an eye out of her eye.,leads them with a pan of coffee.,cleans her eyeglasses as she sits fully dressed.,strolls through a market marked imperata's.\n8672,lsmdc3081_THOR-38139,1097,\"Someone swings Mjolnir, but someone blocks it with the shaft of his spear. He\",\"Someone swings Mjolnir, but someone blocks it with the shaft of his spear.\",He,gold,leaps and drives the point of his spear into the floor just as someone rolls away.,\"points at someone, then waves the flaming missile at someone.\",\"gazes down at the metal, then breaks out in pain.\",nods and then fights off with her new mount.\n8673,lsmdc3081_THOR-38139,1100,Someone stuns his brother with an elbow to the chin. He,Someone stuns his brother with an elbow to the chin.,He,gold,tosses someone to the ground then leaps at him.,\"beats a man with the gun with the gun, and it turns towards him.\",\"lowers the gun, unscrews a third, sticks it into his mouth.\",smashes it in to someone's right.\n8674,lsmdc3081_THOR-38139,1096,\"Someone stands and strikes at someone, but someone sweeps his feet out from under him. Someone swings Mjolnir, but someone\",\"Someone stands and strikes at someone, but someone sweeps his feet out from under him.\",\"Someone swings Mjolnir, but someone\",gold,\"frees and falls on the chair, raising to the wall.\",smashes rough him against the wall.,\"manages to shield him, knocking him down to the ground.\",blocks it with the shaft of his spear.\n8675,lsmdc3081_THOR-38139,1105,The real someone flies backward and drops his spear as he falls onto the bridge. Someone,The real someone flies backward and drops his spear as he falls onto the bridge.,Someone,gold,parker reaches up and lightly lifts the similar to his eyelids.,arms round him and someone drops back into the post.,eyes windsurfer desperately after the clearing.,rises and stands over his brother.\n8676,lsmdc3081_THOR-38139,1095,\"Someone tackles someone, who knocks someone away. Someone stands and strikes at someone, but someone\",\"Someone tackles someone, who knocks someone away.\",\"Someone stands and strikes at someone, but someone\",gold,raises his hand higher.,stops him with the end.,catches him by the throat.,sweeps his feet out from under him.\n8677,lsmdc3081_THOR-38139,1099,\"Swinging from the spear shaft, someone kicks someone with both feet. Someone\",\"Swinging from the spear shaft, someone kicks someone with both feet.\",Someone,gold,stuns his brother with an elbow to the chin.,slides to his knees as she clings to him.,burst into him - - one of the artificial russians.,\"swoops up, gazing out of the window, then swoops over.\"\n8678,lsmdc3081_THOR-38139,1104,Someone calls down a bolt of lightning that flings the copies away. The real someone,Someone calls down a bolt of lightning that flings the copies away.,The real someone,gold,walks a few paces ahead of him.,\"looks up at her is abrupt, pained, and is taken aback.\",comes in and finds someone waiting for the door.,flies backward and drops his spear as he falls onto the bridge.\n8679,lsmdc3081_THOR-38139,1103,\"As someone falls, dozens of copies of someone encircle him. Someone\",\"As someone falls, dozens of copies of someone encircle him.\",Someone,gold,calls down a bolt of lightning that flings the copies away.,listens to the radio then someone's thugs look flung around someone.,cocked raises his head and then lightly backhands someone's head.,spikes someone's gun.\n8680,lsmdc3081_THOR-38139,1102,Someone fires a blast of energy as someone tackles him. The brothers,Someone fires a blast of energy as someone tackles him.,The brothers,gold,laugh as someone makes his way through the crowd.,tumble onto the bridge outside.,fly away into the darkness.,plummet his lifeless face.\n8681,lsmdc3064_SPARKLE_2012-4304,16064,He falls face down on the carpet. Someone,He falls face down on the carpet.,Someone,gold,opens a door and enters.,\"stands over him, gripping the poker in both hands.\",walks up behind him.,looks at someone and grins.\n8682,lsmdc3064_SPARKLE_2012-4304,16059,\"With one hand, he shoves someone to the Banquette, then wrestles someone off of him. Someone\",\"With one hand, he shoves someone to the Banquette, then wrestles someone off of him.\",Someone,gold,leaps on his back.,climbs out of the sedan.,walks over to him.,heads into the apartment.\n8683,lsmdc3064_SPARKLE_2012-4304,16062,\"He throws someone to the ground and looms over her. From behind, someone\",He throws someone to the ground and looms over her.,\"From behind, someone\",gold,lifts her hands to her waist.,swings the poker at his head.,leans his head back.,watches with a smile as she crouches beside him.\n8684,lsmdc3064_SPARKLE_2012-4304,16061,Someone grabs a poker from the fireplace. He,Someone grabs a poker from the fireplace.,He,gold,packs a silver cup on the table.,throws someone to the ground and looms over her.,\"does n't ascend, only be more moved by the explosion.\",holds a bottle of whiskey and he smokes it.\n8685,lsmdc3064_SPARKLE_2012-4304,16053,She looks down and shakes her head. He,She looks down and shakes her head.,He,gold,gestures toward the shaking hand.,turns and walks down her driveway in the rain.,sits up and winces.,slides the canoe down the rocky river toward some trees.\n8686,lsmdc3064_SPARKLE_2012-4304,16063,\"From behind, someone swings the poker at his head. He\",\"From behind, someone swings the poker at his head.\",He,gold,falls face down on the carpet.,glances at all of his heads.,looks grandma in the eye.,stares at the phone.\n8687,lsmdc3064_SPARKLE_2012-4304,16057,Someone turns to someone and someone. He,Someone turns to someone and someone.,He,gold,\"flips at a different section of a locker, then heads to his niece.\",grabs her by the hand.,pleasantly touches his forehead to the bench.,points his finger at her.\n8688,lsmdc3064_SPARKLE_2012-4304,16065,Someone's mouth hangs open. Someone,Someone's mouth hangs open.,Someone,gold,rips someone's eyes off.,looks from someone to someone.,overturns at the wall behind him.,takes in a greenhouse vault is opened from every cupboard.\n8689,lsmdc3064_SPARKLE_2012-4304,16060,Someone leaps on his back. someone,Someone leaps on his back.,someone,gold,collapses on a roof as tugboat arrives.,grabs a poker from the fireplace.,squirms looking at his feet.,flies out of the restaurant and fires out.\n8690,lsmdc3064_SPARKLE_2012-4304,16058,He points his finger at her. Someone,He points his finger at her.,Someone,gold,gazes across the pier.,bends down and licks her fingers beneath her chin.,gets up and lunges at him.,swaggers up the steps and raises the golden snitch to the window.\n8691,lsmdc3064_SPARKLE_2012-4304,16067,Someone lays down the poker. Someone,Someone lays down the poker.,Someone,gold,blows air into someone's mouth.,puts his flute down and picks up his pack.,plucks it on his index finger and kisses it.,appears with the phone.\n8692,anetv_w2fsq9BOoZo,17750,\"Two men play in the street paper, scissors and stone on front other people. A man\",\"Two men play in the street paper, scissors and stone on front other people.\",A man,gold,wearing white run bends and surfs a wave.,shows a man tying him in a buttoned box.,cross and brings a bottle of mouthwash to for a hug.,talks with people watching him.\n8693,anetv_w2fsq9BOoZo,17749,\"People are in a city walking, talking and doing activities. Two men\",\"People are in a city walking, talking and doing activities.\",Two men,gold,then dance outside in a park outside holding lightning colors.,are shown riding a bus and swimming around the parking lot on the side of the lake.,\"play in the street paper, scissors and stone on front other people.\",are competing in a competition with a man who's in front of him standing with a jump.\n8694,anetv_DFJBJkCR0Bk,13473,Several people are seen swimming around a pool when a ball comes into frame. The group of people then,Several people are seen swimming around a pool when a ball comes into frame.,The group of people then,gold,begin sliding down the track shooting the ball and hitting it into the goal.,begin shooting at one another.,assemble them in the room and stop to look to the camera.,throw a ball around the area while a person walks in and out of frame.\n8695,anetv_DFJBJkCR0Bk,7104,Several young kids are in a pool. They,Several young kids are in a pool.,They,gold,are doing flips in the grass.,throw a ball around to each other.,are using boxing gloves while hitting the balls.,are standing next to each other.\n8696,anetv_DFJBJkCR0Bk,7106,They swim back and forth with it. The,They swim back and forth with it.,The,gold,flies appear over stair spikes.,tips over and over.,peers over the side of the boat.,pass the ball around.\n8697,anetv_DFJBJkCR0Bk,13474,The group of people then throw a ball around the area while a person walks in and out of frame. The people,The group of people then throw a ball around the area while a person walks in and out of frame.,The people,gold,continue dancing with one another while the camera captures their movements.,continue to hit the ball back and fourth while others watch on the sidelines.,swing around him to celebrate and presenting the flag to each other.,continue to play with one another while throwing the ball back and fourth.\n8698,anetv_y-87JMf_-J8,10621,A man is seen sitting on a stool while holing a guitar in his hands. The camera,A man is seen sitting on a stool while holing a guitar in his hands.,The camera,gold,plays with the man on the left while the man plays with harmonica.,continues to show people sitting at the table.,pans closely around the guitar while the man continues to speak.,lays down and begins playing the instrument while the camera focuses on his ears.\n8699,anetv_y-87JMf_-J8,10622,The camera pans closely around the guitar while the man continues to speak. The man then,The camera pans closely around the guitar while the man continues to speak.,The man then,gold,shakes and speaks to the camera.,plays the guitar a bit and moves his hands up and down the neck.,picks up the harmonica and puts his hands around his face.,places his hands up and stops playing the violin.\n8700,lsmdc3060_SANCTUM-29579,16644,\"Looking down, someone pauses and furrows his brow. He\",\"Looking down, someone pauses and furrows his brow.\",He,gold,is snatched from him.,crouches to examine some abandoned gear.,regards him with a wounded look.,makes a speech leave the tank.\n8701,lsmdc3060_SANCTUM-29579,16641,\"Smiling, he crouches beside a body of water. Slipping, someone\",\"Smiling, he crouches beside a body of water.\",\"Slipping, someone\",gold,slides down the ledge on his rear.,tosses it around and holds out a crystal of fish.,fusion bulbous huge eyes.,\"closes her eyes, as she peers out toward it.\"\n8702,lsmdc3060_SANCTUM-29579,16638,\"Now, a wide view shows pale light shining through the hole casting the cavern in a purple - tinged glow. Holding his makeshift torch, someone\",\"Now, a wide view shows pale light shining through the hole casting the cavern in a purple - tinged glow.\",\"Holding his makeshift torch, someone\",gold,picks up his oar then carefully beckons a faint cow.,leans against the prow and looks directly at him.,steps into a run before he can dive.,glances around and follows his son into a tunnel.\n8703,lsmdc3060_SANCTUM-29579,16639,\"As the light from his flame disappears, our view glides to writing etched in the side of the tank, Frank and someone were here, See ya.. It widens and he\",\"As the light from his flame disappears, our view glides to writing etched in the side of the tank, Frank and someone were here, See ya..\",It widens and he,gold,unleashes himself as a gray - haired man with a clean cut - out.,\"climbs down a ledge, his eyes squinting into a dim chamber.\",drops the empty chair in a cupboard.,\"advances quickly, suited, to the right, which is quickly lit very intently.\"\n8704,lsmdc3060_SANCTUM-29579,16649,\"Smeared in dirt, someone grins as he crawls over to them. Someone\",\"Smeared in dirt, someone grins as he crawls over to them.\",Someone,gold,gives a stony nod and leans closer.,makes his way through the cemetery and walk away through the busy streets.,signals the second clerk.,glares down at him.\n8705,lsmdc3060_SANCTUM-29579,16643,\"Now with their torches held out, the climbers take careful steps shuffling across muddy ground. Looking down, someone\",\"Now with their torches held out, the climbers take careful steps shuffling across muddy ground.\",\"Looking down, someone\",gold,pauses and furrows his brow.,finds someone walking across the bright crawl space out to the parasail edge.,sets down proper positions.,watches intently shooting from his scope.\n8706,lsmdc3060_SANCTUM-29579,16650,He gives someone a frenzied look. Someone sets down his bag and someone,He gives someone a frenzied look.,Someone sets down his bag and someone,gold,steps back inside a fireplace.,squeezes his arm shut.,\"rummages through it, finding a bag of food.\",ambles toward the door.\n8707,lsmdc3060_SANCTUM-29579,16647,\"He test a dive light. Now, someone's feet\",He test a dive light.,\"Now, someone's feet\",gold,splash in shallow water as they hike into another chamber.,blast the crawl space.,work out more than naked dangling from a wall.,stop a few feet off the floor.\n8708,lsmdc3060_SANCTUM-29579,16646,\"Setting down his torch, he checks a gauge. He\",\"Setting down his torch, he checks a gauge.\",He,gold,walks into a mezzanine.,test a dive light.,tosses the top page.,spots him and turns on the door.\n8709,lsmdc3060_SANCTUM-29579,16642,\"Someone rises and someone shifts his helmet as his son follows the river. Now with their torches held out, the climbers\",Someone rises and someone shifts his helmet as his son follows the river.,\"Now with their torches held out, the climbers\",gold,find a mulch company stocked with crates.,continues off like a bridge.,take careful steps shuffling across muddy ground.,move into a circle which shows a customized speedboat.\n8710,lsmdc3060_SANCTUM-29579,16645,He crouches to examine some abandoned gear. He,He crouches to examine some abandoned gear.,He,gold,then puts aside his tin as he sees a statue in the cubicles.,smooths the sides of the van with a drone's pin.,glances at someone who drops his supply bag and crouches by the equipment as well.,hands her a pamphlet and slips it into his pocket.\n8711,lsmdc3060_SANCTUM-29579,16648,\"Now, someone's feet splash in shallow water as they hike into another chamber. Smeared in dirt, someone\",\"Now, someone's feet splash in shallow water as they hike into another chamber.\",\"Smeared in dirt, someone\",gold,grins as he crawls over to them.,\"holds it in place, altitude against a tree.\",scratches his teeth at writing feet.,returns to the shelf and peers at the pages.\n8712,lsmdc3060_SANCTUM-29579,16637,\"Someone lights his father's torch with his own and they lift them as if toasting. Now, a wide view\",Someone lights his father's torch with his own and they lift them as if toasting.,\"Now, a wide view\",gold,shows pale light shining through the hole casting the cavern in a purple - tinged glow.,shows the students into the building's observation office.,is removed from marble inside a manhattan building.,shows free of a relating long valley nestled in towering towering trees.\n8713,anetv_2YE_8XDuDBI,8898,A view of a home is briefly shown. It pans to another room and it,A view of a home is briefly shown.,It pans to another room and it,gold,is then urban inside.,begins various boys explaining how to play.,shows the cartoon's hand being shown by various kids.,\"shows a small child sitting at a drum set, sucking on a pacifier and holding two drumsticks and hitting the drums.\"\n8714,anetv_2YE_8XDuDBI,8899,\"It pans to another room and it shows a small child sitting at a drum set, sucking on a pacifier and holding two drumsticks and hitting the drums. The child\",\"It pans to another room and it shows a small child sitting at a drum set, sucking on a pacifier and holding two drumsticks and hitting the drums.\",The child,gold,\"talked about his song and relaxed, as if to continue to play the drums on the table and guitar when the man shuffles.\",hits the cymbals a few times with his left hand then he grabs the drumsticks and starts hitting all of the drums.,continues to play her saxophone with stopping to try on snowballs of which she is playing.,continues with his father performing spin in fluidly as the audience watches around and smirks.\n8715,anetv_uyr3E9ZReAw,18723,Several shots are shown of soccer players. A group of news casters,Several shots are shown of soccer players.,A group of news casters,gold,are shown together as a group of guys ask a football.,are outside talking about the game.,are gathered in front of a dark room.,are shown hiding hockey throwing the discus across a field.\n8716,anetv_uyr3E9ZReAw,5782,Three people are seen hosting a segment and leading into several shots of a baseball game being played. More shots,Three people are seen hosting a segment and leading into several shots of a baseball game being played.,More shots,gold,are shown of people performing impressive stunts with their hands and doing tricks.,are shown of the game as well as audiences cheering and others reacting.,are shown of a persons still speaking to one another and showing close up points.,are shown of players playing a game of kickball while people watch on the sides.\n8717,anetv_uyr3E9ZReAw,18724,A group of news casters are outside talking about the game. A game in progress,A group of news casters are outside talking about the game.,A game in progress,gold,is being shown and talked about.,are on the field stadium on a field.,is being recorded between them.,of sunscreen is shown.\n8718,anetv_XToVLTbQEm4,8955,Men are playing basket in a roofed wooden court. man,Men are playing basket in a roofed wooden court.,man,gold,slides down the street in order to hail a large ball.,is hitting a ball on the parallels.,is alone doing lay ups to the basket.,is kneeling on the floor holding a racket.\n8719,anetv_XToVLTbQEm4,8956,Man is alone doing lay ups to the basket. another man,Man is alone doing lay ups to the basket.,another man,gold,is seen standing on picks and nailing weights over both poles.,is sitting on a matching bench talking to the camera.,arrives to the court and start playing together.,throws something along the table.\n8720,lsmdc3025_FLIGHT-11877,13460,\"He licks his lips, and clenches his jaw. Using a cane for support, he\",\"He licks his lips, and clenches his jaw.\",\"Using a cane for support, he\",gold,flies in front of the fire and swipes the dragon from his head.,lowers it farther into the air.,strides into the bathroom.,dismounts and pushes him away.\n8721,lsmdc3025_FLIGHT-11877,13461,\"Using a cane for support, he strides into the bathroom. He\",\"Using a cane for support, he strides into the bathroom.\",He,gold,collects the bottles of liquor and the decanter.,gazes down at the house as well as a black screen.,leans his palm wearily against his lobe and tugs on his skinny shoe.,\"stands in the doorway, then falls to the floor, kissing together.\"\n8722,lsmdc3025_FLIGHT-11877,13458,He leans on a bureau. He,He leans on a bureau.,He,gold,grabs the remote control and steps to the stage.,glances at the pills.,turns away and finds someone crouched behind his barrel.,climbs over the hole and climbs into the water and pulls out a pair of floppy gear.\n8723,lsmdc3025_FLIGHT-11877,13451,A car turns onto a dirt driveway. The car,A car turns onto a dirt driveway.,The car,gold,\"passes a dilapidated shed on the right, and pulls up to a large, older farmhouse.\",stops as the officer tries the door.,faces a parking lot in city driveway.,turns around a lot while cars are driving across the street.\n8724,lsmdc3025_FLIGHT-11877,13466,He continues his chore with determination. He,He continues his chore with determination.,He,gold,tips the rock to reveal a approaching human.,\"opens a freezer, and finds a bottle of vodka.\",\"peers over his shoulder, find the pill and regards himself in a mirror.\",picks up the urn and starts talking.\n8725,lsmdc3025_FLIGHT-11877,13473,He holds a framed wedding photo of himself and his wife. Later that evening he,He holds a framed wedding photo of himself and his wife.,Later that evening he,gold,\"sits, watching the news.\",strolls past a catwalk outside a building.,pauses with someone to the terrace.,sips from a metal box in a jar.\n8726,lsmdc3025_FLIGHT-11877,13453,He grabs a hidden key. He,He grabs a hidden key.,He,gold,is a skim city of dislodge a police road.,\"finds a long piece of wood, then uses it.\",\"enters a cozy, fully furnished living room, and looks around.\",\"skims a case, then slides it open.\"\n8727,lsmdc3025_FLIGHT-11877,13462,He collects the bottles of liquor and the decanter. He,He collects the bottles of liquor and the decanter.,He,gold,looks back at the young man and takes it.,recoils as he soaks his shift.,empties the bottles in the sink.,stops showing her keys.\n8728,lsmdc3025_FLIGHT-11877,13456,Someone carries a plastic bag into the kitchen. He,Someone carries a plastic bag into the kitchen.,He,gold,\"plugs in a charger, and checks his iphone.\",stomps onto the tray.,leads her into her cot.,\"approaches it, shakes the food out of the bowl and puts it back on the plate.\"\n8729,lsmdc3025_FLIGHT-11877,13452,Someone places a bag beside the door. He,Someone places a bag beside the door.,He,gold,pushes a lever again.,grabs a hidden key.,ends the call as they arrive.,chases the little back away.\n8730,lsmdc3025_FLIGHT-11877,13454,\"He enters a cozy, fully furnished living room, and looks around. A retro stereo\",\"He enters a cozy, fully furnished living room, and looks around.\",A retro stereo,gold,resort's blinding light appears across the screen.,sits in the corner between the front seats.,is standing on top of the wall.,\"sits on a cabinet, against a wall with framed photos.\"\n8731,lsmdc3025_FLIGHT-11877,13469,He lifts the balding plastic trash bag out of the trash can. He,He lifts the balding plastic trash bag out of the trash can.,He,gold,drives his cart over the bridge of the wagon holding the leash to his own.,slides the doors of the shed open.,\", the spectators get at the bar.\",\"bungee runs through the main road and onto the off ridge, with a metal gate pushed open.\"\n8732,lsmdc3025_FLIGHT-11877,13457,It shows 127 voice messages. He,It shows 127 voice messages.,He,gold,leans on a bureau.,\"steps away, then notices that it is rolled up.\",stops and turns back towards the people.,packs the manuscript away through a filled with mock papers and books.\n8733,lsmdc3025_FLIGHT-11877,13472,He pulls out a bottle of liquor from a bowling bag. He,He pulls out a bottle of liquor from a bowling bag.,He,gold,holds a framed wedding photo of himself and his wife.,begins to cross the drawers of a bowling alley.,throws it back down the lane.,takes off his glasses and puffs out his drink.\n8734,lsmdc3025_FLIGHT-11877,13459,He glances at the pills. He,He glances at the pills.,He,gold,steps out laughing as he sits.,activates an empty pistol.,clicks his head again and steps over the stubble.,\"licks his lips, and clenches his jaw.\"\n8735,lsmdc3025_FLIGHT-11877,13463,He takes a case of Corona and some other beer cans from the fridge. He,He takes a case of Corona and some other beer cans from the fridge.,He,gold,picks up his phone and picks it up.,spots the young someone at the bar and purses his lips.,dumps the cans in a bin.,\"slams someone's hand, parked twinkie to open the door for him.\"\n8736,lsmdc3025_FLIGHT-11877,13468,He pours it down the sink. He,He pours it down the sink.,He,gold,lifts the balding plastic trash bag out of the trash can.,hands her a mixer.,\"flips off a table, releases the grail, and grabs it.\",looks at him with a puzzled expression.\n8737,lsmdc3025_FLIGHT-11877,13470,He slides the doors of the shed open. Someone,He slides the doors of the shed open.,Someone,gold,peers desperately into the tunnel as sting erupts down.,pushes someone to the other side of the ship.,removes a blanket covering the windshield.,\"stares at her, her eyes searching.\"\n8738,lsmdc3025_FLIGHT-11877,13455,\"His eye still covered by a bandage, looks around. Someone\",\"His eye still covered by a bandage, looks around.\",Someone,gold,wields an ax and stabs a fork into someone's hand.,grabs the phone from him and comes up with a stick.,carries a plastic bag into the kitchen.,and someone cross the men and let move through door.\n8739,lsmdc3025_FLIGHT-11877,13464,He dumps the cans in a bin. He,He dumps the cans in a bin.,He,gold,takes a knife and gets chopped.,sets one bag on the table and uses it to hide his privates.,takes a bag of marijuana from a wooden box in a drawer.,sprinkles bulbs to the stand on his console.\n8740,anetv_memk6ryZCjE,4670,Two women are seen speaking to one another and leads into them performing martial arts against one another. The girls,Two women are seen speaking to one another and leads into them performing martial arts against one another.,The girls,gold,then continue dancing around one another while smiling to the camera and speaking to the camera.,continue to move up and down as the mat continues walking around and holding a bow.,continue to fight and leads into one sitting down while the other continues to perform moves.,continue skating back and fourth with one another while people continuously watching on the side.\n8741,anetv_heLlfK--Bx0,2634,\"She turns, accidentally dropping a rope. She then\",\"She turns, accidentally dropping a rope.\",She then,gold,floats back into the lake.,gets out of the slide and onto the dance floor.,\"performs, spinning and jumping with the rope.\",pulls back onto her top landing sadly in the ash.\n8742,anetv_heLlfK--Bx0,2633,A girl is standing with her back turned on a court. She,A girl is standing with her back turned on a court.,She,gold,\"turns, accidentally dropping a rope.\",sets her on a piece of grass and hits it with her leg.,aims before the camera and looks off into her distance.,stands on the field watching.\n8743,anetv_ux_qqONPSrc,8372,Ingredients for the recipe are shown. A person,Ingredients for the recipe are shown.,A person,gold,puts biker duffle on and walks to the door of a nearly empty freeway.,is seen rolling a cookie down onto a plate and placing a dish on a plate.,starts preparing the recipe by chopping vegetables.,adds cookie dough ads a few cupcakes.\n8744,anetv_ux_qqONPSrc,8373,A person starts preparing the recipe by chopping vegetables. The finished salad,A person starts preparing the recipe by chopping vegetables.,The finished salad,gold,is shown in several subtitles.,is being fried for the food.,is shown from above.,is being made for a salad.\n8745,anetv_UfrztSg9gf0,15500,A man is seen standing in on a large field performing various dog tricks with a dog. Another person,A man is seen standing in on a large field performing various dog tricks with a dog.,Another person,gold,is seen stuck on one leg and resumes a bike off to the camera.,goes back and fourth and all the boys continue moving and walking back into the room.,watches in the distance as the man and dog continue to perform tricks and the dog running all around.,goes with him while still playing the saxophone while the others are shown.\n8746,anetv_Lo0EQXmaeXM,18845,The man looks at the camera and then goes back to looking somewhere else and talking. then the cups they're both holding that has a blue liquid in it is then put into their mouths and they both,The man looks at the camera and then goes back to looking somewhere else and talking.,then the cups they're both holding that has a blue liquid in it is then put into their mouths and they both,gold,laugh at each other.,demonstrate orange flips looking actions and recording gently.,gargle until they have lots of bubbles formed in their mouths.,dance around the table and the woman and the girl are having the drink.\n8747,anetv_SqfB4ohs2Ro,6303,We see a title screen. We,We see a title screen.,We,gold,see a man tap a hook into the wood.,see the lady wash the dishes.,see a man cleaning his bed on a restaurant set.,see people playing the game in a room.\n8748,anetv_SqfB4ohs2Ro,6305,We see a title screen again. We,We see a title screen again.,We,gold,see a lady under a beach.,see a bull ripping stones.,see the mans looks and thanks hand.,see the men working on roofs.\n8749,anetv_SqfB4ohs2Ro,6307,We see two screens with men working on roofs side by side. We,We see two screens with men working on roofs side by side.,We,gold,see the men kick the flooring and shine his hands in the dark.,see the ending title screens.,overlay stand talking and then the guy put the cord into his camera.,shines a flashlight on the operator as they talk.\n8750,anetv_SqfB4ohs2Ro,6304,We see a man tap a hook into the wood. We,We see a man tap a hook into the wood.,We,gold,make music on screen.,see a title screen again.,glide to others on the mat.,see us that he is preparing to sailboat and take his body out.\n8751,anetv_SqfB4ohs2Ro,6302,Men hammering roof tiles on a panel of roof inside. We,Men hammering roof tiles on a panel of roof inside.,We,gold,see a pictures put in wood.,are standing on the roof.,see a title screen.,see the vacuum being cleaned.\n8752,anetv_SqfB4ohs2Ro,6306,We see the men working on roofs. We,We see the men working on roofs.,We,gold,\"then hop and ski, hops, and falls and ski with a frozen tool and putting on a tire.\",\"see a newscaster talking on the screen, and skaters forming construction to continue on to each side.\",see the screen and a newscaster talks in a kitchen with flags while people wrap one around.,see two screens with men working on roofs side by side.\n8753,anetv_rVYuVW9tB3U,11120,The suma wrestlers prepare themselves. A referee,The suma wrestlers prepare themselves.,A referee,gold,calls them into position.,talks directly to the camera.,sits outdoors next to the theater.,stands up on a shot wearing pink and a portable helmet with a counselor's jaw straps.\n8754,anetv_rVYuVW9tB3U,11122,\"The suma wrestlers begin fighting, with one of them immediately throwing the other to the ground. The winning suma wrestler\",\"The suma wrestlers begin fighting, with one of them immediately throwing the other to the ground.\",The winning suma wrestler,gold,is applauded and cheered on by the crowd as he walks off the stage.,stands on the ground holding back as they continue to play wrestle.,kisses him as the other wrestler gently begins laying the other down.,starts up to the other abandoned arm started reaching for the mat.\n8755,anetv_rVYuVW9tB3U,11121,A referee calls them into position. The suma wrestlers,A referee calls them into position.,The suma wrestlers,gold,start by jumping across the mat getting ready to remove and land in the mat across the ground.,\"grab their bats, use their pom poms, and bear people in the attempt to shave the leg.\",\"begin fighting, with one of them immediately throwing the other to the ground.\",take each other's hands while their coach watches them the crowd.\n8756,anetv_Alv7N6Ynm1Y,8178,The audience claps for the performers. They,The audience claps for the performers.,They,gold,break the ice together.,shake hands and hug as credits roll.,plays a guitar as lady finishes completely.,pose with members of the ring.\n8757,anetv_KFS_lGlO-Ew,12256,The boy lifts up a cup of mouthwash and pours it into his mouth. The boy,The boy lifts up a cup of mouthwash and pours it into his mouth.,The boy,gold,adds eggs to the dish.,spits it back out in the sink.,then mixed the drink and tap chips with the glass.,stops drinking and looks.\n8758,anetv_KFS_lGlO-Ew,10654,He goes into a bathroom and drinks a cup of mouthwash. He,He goes into a bathroom and drinks a cup of mouthwash.,He,gold,uses a can of potatoes to rub lemons drys his cheeks.,brushes the picture all off the sink and spits it in the sink.,pulls ping pong and strikes his cue in the room.,spits it out into the sink in front of him.\n8759,anetv_KFS_lGlO-Ew,12255,A young boy walks into the bathroom at home. The boy,A young boy walks into the bathroom at home.,The boy,gold,lifts up a cup of mouthwash and pours it into his mouth.,lets out a breath and bounces off.,drops the cup upside down in front of him.,opens the door and lays down face down at a chair.\n8760,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60034,9757,The Hobbits gratefully enter Bree. the gatekeeper eyeing them curiously in the lantern light. Tall buildings,The Hobbits gratefully enter Bree. the gatekeeper eyeing them curiously in the lantern light.,Tall buildings,gold,tower above them.,nestling in tranquil silence.,stand crowds as night with lights shines out from the church below.,rise and the large elegant young warriors spread out a nearby dinner stand.\n8761,anetv_A1U24_iC6ww,3361,Three Hispanic men are laying the foundation of the pool with a cement gun. A man that is dressed in white,Three Hispanic men are laying the foundation of the pool with a cement gun.,A man that is dressed in white,gold,is practicing the same with his shirt that the guy shoved on so irons.,is doing the cement finish as the other men lay the cement with a gun.,is striking the man on the end of a long roof and kick after the man with an orange was holder.,jacket wins an interview.\n8762,anetv_A1U24_iC6ww,3360,Cement is being made in the cement mixer. Three Hispanic men,Cement is being made in the cement mixer.,Three Hispanic men,gold,rise into the room and toast.,begin digging in and out of the fence.,are laying the foundation of the pool with a cement gun.,cut the wood and put the shingles down.\n8763,lsmdc0028_The_Crying_Game-63649,18929,He pulls away from her. She,He pulls away from her.,She,gold,smiles in at her.,sits up and twitches a smile.,falls to the floor.,\"looks at someone, eyes glistening with tears.\"\n8764,lsmdc0028_The_Crying_Game-63649,18928,She grabs him to stop him. He,She grabs him to stop him.,He,gold,comes out onto the catwalk and pushes him.,pulls away from her.,goes back to speak to her.,carries her from the bedroom.\n8765,lsmdc0028_The_Crying_Game-63649,18927,And he makes to go. She,And he makes to go.,She,gold,shifts his uneasy gaze.,burned a night in the wrecked cottage.,grabs him to stop him.,takes the hole out of the paddle under the water.\n8766,lsmdc0028_The_Crying_Game-63649,18926,\"She is sitting on the couch, the kimono round her once more, looking very much like a woman. Someone\",\"She is sitting on the couch, the kimono round her once more, looking very much like a woman.\",Someone,gold,comes out of the bathroom.,reads a text message.,looks back at him.,takes the flowing and turns to get on some water.\n8767,lsmdc0028_The_Crying_Game-63649,18925,Someone slams the door shut. She,Someone slams the door shut.,She,gold,\"knocks wearily into the basement, causing someone to push the tile onto the floor.\",returns to his chair and aims his shotgun.,\"enter the crack, looks into her eyes.\",\"is sitting on the couch, the kimono round her once more, looking very much like a woman.\"\n8768,lsmdc3053_PARENTAL_GUIDANCE-25552,4556,The taxi pulls into the driveway. The children,The taxi pulls into the driveway.,The children,gold,tries entrance and they pass the sign.,peer through the window blinds.,climb on the stairs and weave across the flat of the road.,reach someone's window and peer out at the lanes out of the gaudy line.\n8769,lsmdc3053_PARENTAL_GUIDANCE-25552,4557,The children peer through the window blinds. Someone's eyes,The children peer through the window blinds.,Someone's eyes,gold,widen as someone looks skywards.,widen as she watches someone emerge from the taxi.,rove at the bottom of the river.,follow someone's gaze.\n8770,lsmdc3053_PARENTAL_GUIDANCE-25552,4558,Someone's eyes widen as she watches someone emerge from the taxi. She,Someone's eyes widen as she watches someone emerge from the taxi.,She,gold,tosses her glass over the windshield.,is suspended in bed as advertising upscale buildings.,kisses each of them on the cheeks leaving huge lipstick marks.,\"sees a black box containing steam hanging from a shuttle, and looks over her shoulder.\"\n8771,anetv_Liha_xwiwtc,11135,\"A man in a canoe appears, paddling through the rapids. He\",\"A man in a canoe appears, paddling through the rapids.\",He,gold,slows down just as he reaches calmer waters.,uses a jack on a hidden mechanism.,drives over then turns on the highway into a group of man.,takes the best surfaces of his feet again.\n8772,anetv_Liha_xwiwtc,11635,A man in a boat paddles down stream. the man's boat then,A man in a boat paddles down stream.,the man's boat then,gold,floats down the river.,turns onto the beach.,begins to the waters.,zooms through a hole causing another person to climb up the side of the boards.\n8773,anetv_Liha_xwiwtc,11134,A rushing white river is shown in the woods. A man in a canoe,A rushing white river is shown in the woods.,A man in a canoe,gold,rafts down a rocky.,\"appears, paddling through the rapids.\",walks towards the stern.,spins the sail down raft over the rough waters of the river.\n8774,anetv_dnJJWt0SBTc,8046,People are standing in a line holding swords. A man in a white jacket,People are standing in a line holding swords.,A man in a white jacket,gold,is doing wakeboard on the side of a street.,walks onto the stage and holding a curling iron.,is talking into a microphone.,falls to the ground.\n8775,anetv_00SfeRtiM2o,17117,The woman teaches a little boy how to use them. He,The woman teaches a little boy how to use them.,He,gold,\"walks on again, ending the game.\",is a model of an asian woman.,\"put it on, and sleds down the hill.\",twists marley and fiancee to a stump.\n8776,anetv_00SfeRtiM2o,13795,A little boy enters a rental store and the lady in the counter talk to him about the snowboard she is holding. She,A little boy enters a rental store and the lady in the counter talk to him about the snowboard she is holding.,She,gold,\"leaves, then back to the bars.\",demonstrates how to buckle the snowboard to the little boy.,\"take the skateboards and walk them down the street until the car, filled around the shovels, the car speed is shown.\",jumps again and does an flip.\n8777,anetv_00SfeRtiM2o,13796,\"The little boy and a woman are walking in the snow, then wear the snowboards to the little boy after telling him some information he needs to know about the snow board. They boy\",\"The little boy and a woman are walking in the snow, then wear the snowboards to the little boy after telling him some information he needs to know about the snow board.\",They boy,gold,\"holds on to him getting dressed to set up, including for your group.\",speaks to man.,is an animated face on the snowy mountain doing weird exercises on a slack line showing their turn.,starts riding the snow board while the woman shows her what to do.\n8778,anetv_00SfeRtiM2o,17114,A woman wearing ski gear is talking to the camera. A man,A woman wearing ski gear is talking to the camera.,A man,gold,shows how a pair of skis work.,is working on the train tracks.,is shown riding down the side shoveling snow.,walks to the table and begins talking.\n8779,anetv_00SfeRtiM2o,17115,A man shows how a pair of skis work. He,A man shows how a pair of skis work.,He,gold,troopers put the boats in a metal cart and ride it.,\"shows the mechanics of strapping them up, before they head up a snow covered hill.\",exercise he completes the comments somersault as turning to put it on the bars.,is assisting the snowy vehicle.\n8780,anetv_00SfeRtiM2o,17116,\"He shows the mechanics of strapping them up, before they head up a snow covered hill. The woman\",\"He shows the mechanics of strapping them up, before they head up a snow covered hill.\",The woman,gold,gets into the car and makes continued riding.,smiles and places his foot against the wall.,teaches a little boy how to use them.,does the same back once some.\n8781,anetv_Aa33vHLEXJA,664,A person is seen fighting a bull and being trampled and impailed. The people,A person is seen fighting a bull and being trampled and impailed.,The people,gold,move down of the lawn and then go out riding the bull into the traditional line.,chase after the man as the horses move around and the target points.,carry him away and show more clips of people bull fighting.,are then shown playing together doing crunch motions with one dog.\n8782,anetv_Aa33vHLEXJA,665,The people carry him away and show more clips of people bull fighting. A man,The people carry him away and show more clips of people bull fighting.,A man,gold,is shown kneeing in the middle with two girls watching.,speaks to the camera while still holding hands while the audience watches.,looks at the bull and shows him down in the end.,gets to the edge of a tower and cuts the bull into a pit.\n8783,anetv_Aa33vHLEXJA,539,\"A matador in a gold costume waved a red banner at him, but he avoided the bull. Several other matadors came out and held up pink banners around the bull then the bull\",\"A matador in a gold costume waved a red banner at him, but he avoided the bull.\",Several other matadors came out and held up pink banners around the bull then the bull,gold,kicked the bull over to the shot.,comes up with the great swords together.,fell to the ground.,is shown on ground his hand.\n8784,anetv_Aa33vHLEXJA,538,A matador got knocked down by a bull and the bull injured him. Another matador,A matador got knocked down by a bull and the bull injured him.,Another matador,gold,is fighting a bull in the head near a bull.,is interviewed while people are taken off of country sides.,helped him get away after he was gored in the neck.,is shown being beaten by the bull by the bull with another bull.\n8785,anetv_1PQiq8zajCE,7561,He throws several darts at a board. He,He throws several darts at a board.,He,gold,removes the blind fold.,pass under the pier.,pushes it along to the side.,prepares to throw darts at a target.\n8786,anetv_1PQiq8zajCE,8982,Mike tyson puts a blind fold over his eyes. He,Mike tyson puts a blind fold over his eyes.,He,gold,spots him standing holding fluid hand movement.,takes darts and throws them at the target.,stares down at the charts.,scowls and another grin appears in the distance.\n8787,anetv_1PQiq8zajCE,8981,A woman is talking to the camera inside a billiard room. Mike tyson,A woman is talking to the camera inside a billiard room.,Mike tyson,gold,is talking in a living room showing how to shoot.,puts a blind fold over his eyes.,demonstrates how to make a jack o.,is on an elliptical and kicking another leg out.\n8788,anetv_1PQiq8zajCE,7560,Mike Tyson is wearing a blind fold. He,Mike Tyson is wearing a blind fold.,He,gold,throws several darts at a board.,puts his shirt up with black smoke.,drops someone's gaze.,has a hanging tire.\n8789,anetv_1PQiq8zajCE,7562,He removes the blind fold. He,He removes the blind fold.,He,gold,scored very well on the board.,enters by his own desk in a map.,shot at a high five.,throws his arm over the boy.\n8790,anetv_p0O-EsMFcL4,8024,A man pushes the individual downstream. Another man,A man pushes the individual downstream.,Another man,gold,pushes the individual further downstream.,walks down a concrete aisle and a current machine arrives.,dives into the scuba divers.,swims to the river.\n8791,anetv_p0O-EsMFcL4,8023,An individual rides on an inner tube down a river with rocks in it. A man,An individual rides on an inner tube down a river with rocks in it.,A man,gold,kneels down watching the skier washing his bike.,pushes the individual downstream.,is there one hand and water skiing.,climbs down while others hold the square hands beside him.\n8792,anetv_MWdPh6J-YXM,11165,The camera cuts to accelerated footage of a car driving. The camera,The camera cuts to accelerated footage of a car driving.,The camera,gold,shows excavator's boat.,shows people riding in a mountain.,cuts to scenes of men relaxing and tossing a ball around.,\"has now drawn from the street, one looking in revealing an underwater picture of someone and the drove of the salesman.\"\n8793,anetv_MWdPh6J-YXM,11166,The camera cuts to scenes of men relaxing and tossing a ball around. The camera,The camera cuts to scenes of men relaxing and tossing a ball around.,The camera,gold,pans around the room by camera as well as showing the boxer sitting was dart.,cuts to a scene of a man sitting relaxing.,zooms in on the two reporters taking pictures while standing men.,does the moves and shows the blurry soil along the other wall before it's done.\n8794,anetv_MWdPh6J-YXM,11164,The camera returns to scenes of men paddling boats. The camera,The camera returns to scenes of men paddling boats.,The camera,gold,moves back to the man with raindrops surfing across the way.,\"holds back in him, and the man is carrying goes by the water as he talks.\",is shown in the background to see people riding with carrots in a stroller.,cuts to accelerated footage of a car driving.\n8795,anetv_MWdPh6J-YXM,11160,\"The camera cuts to scenes of various men paddling boats from various angles, with different backgrounds. The camera\",\"The camera cuts to scenes of various men paddling boats from various angles, with different backgrounds.\",The camera,gold,continues as the older boat is in reverse.,tips and the different ways.,shows men putting boats away.,moves past a man in the camera ahead.\n8796,anetv_MWdPh6J-YXM,11159,The camera cuts to scenes of the man on a small boat paddling. The camera,The camera cuts to scenes of the man on a small boat paddling.,The camera,gold,shows a close up of the man with a cup of water.,\"cuts to scenes of various men paddling boats from various angles, with different backgrounds.\",focuses on several other boats in the water.,stops and several men in a canoe stands in a green area.\n8797,anetv_MWdPh6J-YXM,11158,A man stretches in front of the camera. The camera,A man stretches in front of the camera.,The camera,gold,moves around and raises her feet to the side and then stops to speak to the camera.,shows of the person swirling around on the floor while the friend plays it.,cuts to scenes of the man on a small boat paddling.,\"walks back and shows the man and his dogs, and the cricket reacting, the video captions shown on the screen.\"\n8798,anetv_LcmTBkWvV74,8340,A close up a girl smiling and pointing to her face is shown followed by a pair of pliers piercing her inner lip. The piercer,A close up a girl smiling and pointing to her face is shown followed by a pair of pliers piercing her inner lip.,The piercer,gold,pushes the scissor through her lip while she holds it up and presents the piercing in the end.,draws a ring out of her mouth and pierces a man's nose in belly.,puts more piercing her feet while bending her to side on the rod.,bends and put toothpaste in a shower and continues moving along the lip of the needle.\n8799,anetv_dL9mlqbG5CU,1781,Several curlers are preparing for a curling match while the band plays. the band and the curlers,Several curlers are preparing for a curling match while the band plays.,the band and the curlers,gold,are in the long closing studio room.,are both on the ice interacting with one another.,measure up more and begin to play and continue the instrument.,crowd their instruments together together by alternating them while playing.\n8800,anetv_dL9mlqbG5CU,1784,The video focuses on a woman getting ready to curl while the others watch. The video,The video focuses on a woman getting ready to curl while the others watch.,The video,gold,leads into a man laying several tube in the tube.,ends with the closing captions shown on the screen again.,ends with a man holding two cards and an show a hammer.,ends with the closing credits shown on the screen.\n8801,anetv_dL9mlqbG5CU,1780,A rock band is playing a rock song in a black an white environment. Several curlers,A rock band is playing a rock song in a black an white environment.,Several curlers,gold,\"are stood up, one of them sways and continuously run.\",are preparing for a curling match while the band plays.,are on one end helping people on the rope and cross the finish line.,plays while birds clips perform their routines.\n8802,anetv_dL9mlqbG5CU,1783,The video returns to the black and white environment where the curler and the band members are both singing. The video,The video returns to the black and white environment where the curler and the band members are both singing.,The video,gold,focuses on a woman getting ready to curl while the others watch.,\"ends with more text, with people standing in the center and holding tennis with two of them and another playing the violin.\",ends with a screen showing the bottom of the video.,leads into more people doing on with a frisbee but the girl follows one march out of frame.\n8803,anetv_dL9mlqbG5CU,1782,The band and the curlers are both on the ice interacting with one another. The video,The band and the curlers are both on the ice interacting with one another.,The video,gold,leads into several people around a woman on a tape to match.,ends with more shots in the background.,begins with performing different clips of various people enjoying and surfing.,returns to the black and white environment where the curler and the band members are both singing.\n8804,anetv_NAl-SP-92dI,3953,A Monkeysee com logo appears on screen with the tagline See how the experts do it. a young man,A Monkeysee com logo appears on screen with the tagline See how the experts do it.,a young man,gold,displays a video of playing acoustic guitar.,goes out the various side sign and talks about how to do the trick.,stands in the foreground speaking while a female cheerleader stands behind him performing routines.,is shown posing for photos while a woman talks with the tattoo artist giving him.\n8805,anetv_NAl-SP-92dI,3954,A young man stands in the foreground speaking while a female cheerleader stands behind him performing routines. The copyright and logo screen,A young man stands in the foreground speaking while a female cheerleader stands behind him performing routines.,The copyright and logo screen,gold,is modified followed by detail.,appears on the words that say tips in progress.,appears on a black screen.,appears with a website.\n8806,lsmdc3084_TOOTH_FAIRY-40068,854,Someone shows a flyer for the talent show. It,Someone shows a flyer for the talent show.,It,gold,bears the exterior of the procession.,lists the performers names with someone's at the bottom.,is a little affected.,bends down and engulfs it.\n8807,lsmdc3084_TOOTH_FAIRY-40068,851,\"At the rink, someone works a puck around a simple dummy consisting of two feet and a stick. An awed someone\",\"At the rink, someone works a puck around a simple dummy consisting of two feet and a stick.\",An awed someone,gold,pretends to manipulates his performance.,smiles over at someone.,watches from the bench.,swings a hammer throw club.\n8808,lsmdc3084_TOOTH_FAIRY-40068,846,\"Now, he and someone play music. Outside, someone\",\"Now, he and someone play music.\",\"Outside, someone\",gold,washes hair into her body and shoulders.,runs away from the obstacle course.,edges the grounds past the kitchen.,sits down at a loss in his bike.\n8809,lsmdc3084_TOOTH_FAIRY-40068,852,An awed someone watches from the bench. Someone,An awed someone watches from the bench.,Someone,gold,\"shoots off then leans back into the water's beak, steers their baring, and answers the top.\",shoots the last puck and pumps a fist.,is someone making his way down the alley as a construction crew stands behind them.,watches the man lying among the american smoke.\n8810,lsmdc3084_TOOTH_FAIRY-40068,856,Someone folds the flyer and sets it aside. Someone,Someone folds the flyer and sets it aside.,Someone,gold,'s vehicles follow behind.,is tossing the chair in front of the pillar behind him.,\"nods, stifling an eager smile.\",puts a sticker on the bread and faints.\n8811,lsmdc3084_TOOTH_FAIRY-40068,850,\"They face the parent cutouts. At the rink, someone\",They face the parent cutouts.,\"At the rink, someone\",gold,sits on the couch and listens.,works a puck around a simple dummy consisting of two feet and a stick.,smokes a cigarette as two men fight.,wears a human form.\n8812,lsmdc3084_TOOTH_FAIRY-40068,847,\"On the ice, someone wipes out. At the rink, someone\",\"On the ice, someone wipes out.\",\"At the rink, someone\",gold,shoots pucks at the net.,prepares to bail shirts.,kicks a yellow ball into the air.,notices a bloody test card.\n8813,lsmdc3084_TOOTH_FAIRY-40068,855,It lists the performers names with someone's at the bottom. Someone,It lists the performers names with someone's at the bottom.,Someone,gold,punches someone in the chest.,folds the flyer and sets it aside.,shouts through the grail.,stares at an attractive party who makes a show of smiling.\n8814,lsmdc3075_THE_SITTER-34907,16126,Someone's mother sighs and heads up. Now he,Someone's mother sighs and heads up.,Now he,gold,rings a doorbell outside.,leads them across a wooden archway above the tomb jutting straight towards the archway.,\"comes down the stairs strung with bound, crisp letters and notes.\",enters a house and stands from a hanger and lights someone has opened the door.\n8815,lsmdc3075_THE_SITTER-34907,16127,Now he rings a doorbell outside. An elegant buxom brunette,Now he rings a doorbell outside.,An elegant buxom brunette,gold,watches someone leads her makeup and deeper into dresses.,walks away from the frame.,gives a cafe down a hallway.,answers the door with a warm smile.\n8816,anetv_0nPeqy-DA2E,11548,Two little girls are sitting at a kitchen bar with rollers in their hair eating. The young girl in the pink shirt,Two little girls are sitting at a kitchen bar with rollers in their hair eating.,The young girl in the pink shirt,gold,start doing her powers away by arm cuts.,comes to the end.,is playing in her recording making shots to her cup.,\"begins talking, dancing and kissing the girl on the right with a leopard onesie on who is eating her food.\"\n8817,anetv_0nPeqy-DA2E,11549,The young girl stops and begins to try and takes the food off the fork and they both begin laughing. The little girl then sits down and they both,The young girl stops and begins to try and takes the food off the fork and they both begin laughing.,The little girl then sits down and they both,gold,kneel down on their knees and rub her hand on the stage.,begin to look on the floor for a piece of food that fell off of the fork.,begin to laugh at but also touch it in front of the table.,do what she is doing.\n8818,anetv_0nPeqy-DA2E,13177,The girl in pink shirt is kissing the cheek of the other girl and began poking her. The girls,The girl in pink shirt is kissing the cheek of the other girl and began poking her.,The girls,gold,continue to spin around and two girls begin talking.,continue knitting and smiling at the baby in front of the mirror.,continuously flee at the camera.,are eating and talking to the camera.\n8819,anetv_0nPeqy-DA2E,13176,\"The girls are talking to the camera, one of the girls is licking the food in her fork. The girl in pink shirt\",\"The girls are talking to the camera, one of the girls is licking the food in her fork.\",The girl in pink shirt,gold,is dipping with cream and the girl put a rag onto her face.,is wearing a white cream cone.,is kissing the cheek of the other girl and began poking her.,continues to cut the slide and put the stick on the table.\n8820,anetv_0nPeqy-DA2E,11550,The little girl then sits down and they both begin to look on the floor for a piece of food that fell off of the fork. The two,The little girl then sits down and they both begin to look on the floor for a piece of food that fell off of the fork.,The two,gold,girls walk over to the child.,begin to smile with each other.,\"kids start to do this, then the woman is on the other side eating the kids.\",\"continue to sit, eat, play and talk to the camera.\"\n8821,anetv_0nPeqy-DA2E,11551,\"The two continue to sit, eat, play and talk to the camera. After, the girl in the pink shirt\",\"The two continue to sit, eat, play and talk to the camera.\",\"After, the girl in the pink shirt\",gold,gets up and looks at the ground.,stands up and picks up her drink.,crosses the field along fast with the banner.,is third participating in the jump and wearing a black dress from other poses.\n8822,anetv_0nPeqy-DA2E,13175,\"Two little girls with curlers are sitting at the counter. The girls are talking to the camera, one of the girls\",Two little girls with curlers are sitting at the counter.,\"The girls are talking to the camera, one of the girls\",gold,started cutting her hair.,holds her up and hands it to her.,is licking the food in her fork.,begins watching them on the mouth.\n8823,lsmdc1048_Gran_Torino-92075,11419,Someone drives up in a Toyota Land Cruiser. Someone,Someone drives up in a Toyota Land Cruiser.,Someone,gold,reverses onto a line of parked cars.,turns abruptly as the helicopter flies into view.,sees a helicopter coming behind someone.,straightens up and stares at the silver four - by - four as it departs.\n8824,lsmdc1048_Gran_Torino-92075,11417,\"Next door, a steady stream of Southeast Asian Hmong people walk up to the front door. Most\",\"Next door, a steady stream of Southeast Asian Hmong people walk up to the front door.\",Most,gold,checks her new clip.,are crossing its doors on an icy bench and listening to people.,carry plates or bowls of food.,\"wearing her shades, someone gets a red umbrella.\"\n8825,lsmdc1048_Gran_Torino-92075,11418,\"Most carry plates or bowls of food. As mourners leave, someone\",Most carry plates or bowls of food.,\"As mourners leave, someone\",gold,adopts an excited sings scene.,discusses a former model.,uses jump leads to get a woman's car started.,puts his box on one of the houses.\n8826,anetv_zh2Thxc6NVI,672,A man in a red jacket is talking on a hockey rink. Several people,A man in a red jacket is talking on a hockey rink.,Several people,gold,are standing next to him watching the game.,are playing hockey in the field.,are seen standing on a field holding tennis rackets.,start playing hockey on the ice.\n8827,anetv_zh2Thxc6NVI,673,Several people start playing hockey on the ice. He,Several people start playing hockey on the ice.,He,gold,spins to the fighting one another while standing around and talking.,\"lifts one, his left arm held high.\",gives another player a hug.,throws a ball over and hits them in the face.\n8828,anetv_J4UFrrwKUQA,14785,Man is standing in a dock wearing a red bull shirt and then is in the saillboat. dolphins,Man is standing in a dock wearing a red bull shirt and then is in the saillboat.,dolphins,gold,are swimming next to the boat.,are standing and wash their hands.,are being shown on the field.,are sitting on horses in a field.\n8829,anetv_J4UFrrwKUQA,14786,Dolphins are swimming next to the boat. people,Dolphins are swimming next to the boat.,people,gold,\"are riding on the sharp waves, trying to swim.\",are standing on a sunny day in a dock.,are first on a boat on the beach.,are in the waters of the river.\n8830,anetv_uaLMHEtFlNA,5343,A gopro ad appears on the screen. Someone,A gopro ad appears on the screen.,Someone,gold,wears the device as he uses a mower to mow his lawn.,stands in front of her.,is bowling bowling at a bowling alley.,smiles and proceeds to glance around.\n8831,anetv_ehO168THGqU,9349,\"They stop and give other pointers, trying to perfect how to jump on the rail. One of them tries again and again and the other\",\"They stop and give other pointers, trying to perfect how to jump on the rail.\",One of them tries again and again and the other,gold,bikers as they swerve to catch their replacement.,gets a stick out of his bag and extends it towards the rail.,has the rope just trying to climb out with giving him on a facial linked.,is able to get to his bait.\n8832,anetv_ehO168THGqU,9348,Two men skateboarding at an indoor skate park along side each other. They,Two men skateboarding at an indoor skate park along side each other.,They,gold,\"stop and give other pointers, trying to perfect how to jump on the rail.\",see the logo in lacrosse.,walk there and a man speeds the pier with elongated speed carrying things with her teammates as they hit each other.,jumps from the obstacles and a skateboarder does.\n8833,anetv_bQ3yPbCICRg,10357,A man is seen bending over a bang in the middle of drummers. The people,A man is seen bending over a bang in the middle of drummers.,The people,gold,continue tattooing or laying down their clothes in unison as well as others.,hit the drums continuously while the camera pans around.,pull two continuously while others watch.,continue surfing in the sand while the women separate by tapping to keep the lacrosse routine.\n8834,anetv_bQ3yPbCICRg,10358,The people hit the drums continuously while the camera pans around. The men,The people hit the drums continuously while the camera pans around.,The men,gold,continue to play and end by hitting each ball.,begins to play the drums while the camera captures them from several angles.,continue speaking and shows more people playing.,drum while the camera pans around them.\n8835,anetv_N0mNYZaCJoQ,12782,A man pulls a camel with two people in the desert. Two women,A man pulls a camel with two people in the desert.,Two women,gold,are close to the camels.,sing in desperation from the elaborate slide.,wave as prizes to fall on the distant slope.,are on steps outside with a ski.\n8836,anetv_N0mNYZaCJoQ,12781,A person pulls the rope of a camel that a man sits on. A man,A person pulls the rope of a camel that a man sits on.,A man,gold,pulls a camel with two people in the desert.,walks by again who are cutting green grass.,does rope around the house while walking for a bit.,lifts the weight over his head.\n8837,lsmdc3085_TRUE_GRIT-40484,16048,\"Stunned, he lets go of the reigns. Someone\",\"Stunned, he lets go of the reigns.\",Someone,gold,punches him in the ribs.,rides back to the river.,reaches over and rings it.,lets himself go in a humble direction.\n8838,lsmdc3085_TRUE_GRIT-40484,16051,\"She returns their gaze, breathing heavily from her exertion. Her long neat pigtails\",\"She returns their gaze, breathing heavily from her exertion.\",Her long neat pigtails,gold,hang down over the front of her dark sodden brown coat.,hover on the automaton's knees.,are pressed together against the foggy vision of her.,rises up out of her body and wraps around him.\n8839,lsmdc3085_TRUE_GRIT-40484,16049,Someone and Little Blackie struggle on determinedly. Someone,Someone and Little Blackie struggle on determinedly.,Someone,gold,puts a cigarette in his mouth.,frees a vampire off of his own backpack.,studies the salesman and tally deflecting shots.,'s hand follows to catch people shivering.\n8840,lsmdc3085_TRUE_GRIT-40484,16044,Someone rides along a track to a wide river with a wooden ferry. The ferryman walks up and someone,Someone rides along a track to a wide river with a wooden ferry.,The ferryman walks up and someone,gold,looks at two figures on the opposite bank.,follows him into the room.,fishes out her waistband.,jumps the water cautiously.\n8841,lsmdc3085_TRUE_GRIT-40484,16041,Someone goes to someone's bed. She,Someone goes to someone's bed.,She,gold,collapses on his bed.,rips her skirt from her skirt.,has long hairy pony.,finds the chinese grocery store owner lying in bed.\n8842,lsmdc3085_TRUE_GRIT-40484,16047,\"She takes an apple from her bag and hurls it at the man's head. Stunned, he\",She takes an apple from her bag and hurls it at the man's head.,\"Stunned, he\",gold,waddles out of the house.,stares at a stack of boxes.,lets go of the reigns.,spins away and sets a note on a small table.\n8843,lsmdc3085_TRUE_GRIT-40484,16052,\"Her long neat pigtails hang down over the front of her dark sodden brown coat. On her head, she\",Her long neat pigtails hang down over the front of her dark sodden brown coat.,\"On her head, she\",gold,peers out from her bottle with a tissue.,plays with silky trails with her eyes but consists of knee practice.,wears her father's wide - brimmed hat which she packed with paper to make it fit.,does the same - eyelash eyelash fashion.\n8844,lsmdc3085_TRUE_GRIT-40484,16042,She finds the Chinese grocery store owner lying in bed. He,She finds the Chinese grocery store owner lying in bed.,He,gold,\"walks away behind someone, who lounges in front of it.\",is puzzled by himself.,grabs for the gate but finds it ajar.,\"holds a pipe and a letter, which she reads.\"\n8845,lsmdc3085_TRUE_GRIT-40484,16050,\"As they approach the riverbank, someone remounts Little Blackie. She\",\"As they approach the riverbank, someone remounts Little Blackie.\",She,gold,\"returns their gaze, breathing heavily from her exertion.\",slips off her helmet's mask.,punches them in the face.,lays a chocolate on top of her.\n8846,lsmdc3085_TRUE_GRIT-40484,16045,The ferryman walks up and someone looks at two figures on the opposite bank. He,The ferryman walks up and someone looks at two figures on the opposite bank.,He,gold,arrives at the bugle and frowns behind the bottle.,\"gets up, has one of his hands, then throws his arms in the air.\",leads little blackie away.,lurches through a gap in his helmet's headlights.\n8847,lsmdc3085_TRUE_GRIT-40484,16046,He leads Little Blackie away. She,He leads Little Blackie away.,She,gold,goes off of his.,pushes him towards a barrier and knocks him out with her glare.,takes an apple from her bag and hurls it at the man's head.,jumps into the water and splashing water.\n8848,anetv_0_PdI-5l62o,4934,A young boy is seen riding a horse in front of a large crowd and rides closer to a bull while holding a rope. The bull chases around the man on a horse and the man,A young boy is seen riding a horse in front of a large crowd and rides closer to a bull while holding a rope.,The bull chases around the man on a horse and the man,gold,jumps into a small sand pit and ties his arms around the calf.,continues to ride more rope.,continues riding behind him.,rides around pleasing the crowd.\n8849,anetv_0_PdI-5l62o,12512,Then the man holds something in his hand to lure the bull to come near him and then the horse starts running. Some people in the crowd,Then the man holds something in his hand to lure the bull to come near him and then the horse starts running.,Some people in the crowd,gold,clap and wave the flags in their hands.,hold a rope as rafters congratulate the man's fake bow.,are shown giving instructions to the camera while giving the thumbs up.,clap in delight at people's movement.\n8850,anetv_0_PdI-5l62o,12511,The man is sitting on the brown horse and the horse walks in the beginning. Then the man,The man is sitting on the brown horse and the horse walks in the beginning.,Then the man,gold,put his foot up to the saddle and put the horse back inside the camel.,hands the camel the camel with his arm and then puts it back in the air on the right and walks back.,is on his horse and takes a bow and rides the horse back with the dog.,holds something in his hand to lure the bull to come near him and then the horse starts running.\n8851,lsmdc1008_Spider-Man2-75739,3531,He looks down as she stares intently into his face. Her eyes,He looks down as she stares intently into his face.,Her eyes,gold,light up when something up to look.,are fixed on him.,start to flicker as he steps up next to someone.,\"meet, wide - eyed.\"\n8852,anetv_huo2ldsQHUI,5865,They are riding recumbent bikes while being led. They,They are riding recumbent bikes while being led.,They,gold,hold up signs as they walk.,mean running the bull.,propel her down and point the paddle at different angles.,clap their hands and pedal quickly.\n8853,anetv_Ox16PeB954Q,11220,The child grabs it as if to smoke only to have it pulled away. The child,The child grabs it as if to smoke only to have it pulled away.,The child,gold,\"wraps around the other object, then throws it on the table.\",retrieves his bowl as the raft zooms in on it that avoid falling aboard.,puts something in her eyes and rests it on the back of the woman's head.,is then able to stick it in his own mouth but does n't know what to do.\n8854,anetv_Ox16PeB954Q,11219,A man and child are sitting on a couch while the adult smokes hookah tobacco. The child,A man and child are sitting on a couch while the adult smokes hookah tobacco.,The child,gold,spits shaving cream on the sleeping boy and slaps.,sings something while drinking cups and drinks.,speaks to the camera while standing on a couch in front of a large group of people having sex.,grabs it as if to smoke only to have it pulled away.\n8855,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95461,18340,\"A bright light appears in the sky above the treetops, the lights of a motorcycle. Twinkling eyes\",\"A bright light appears in the sky above the treetops, the lights of a motorcycle.\",Twinkling eyes,gold,glow brightly from the window - lit room.,are reflected on a horizon of bright sunlight surrounding us.,peer out below dark bushy eyebrows.,glow fast as someone practices with the group.\n8856,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95461,18341,Twinkling eyes peer out below dark bushy eyebrows. He,Twinkling eyes peer out below dark bushy eyebrows.,He,gold,watches the last couple.,has a huge black beard.,wears a delicate green dress as she cries gently.,steps up and puts her hand behind his.\n8857,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95461,18342,He has a huge black beard. He,He has a huge black beard.,He,gold,is the last to try him shoves technique.,then eyes it in profile.,hands over a small bundle wrapped in a warm blanket.,comes nervously over her shoulder and pulls his arm.\n8858,lsmdc1017_Bad_Santa-7531,16505,\"She gives him a smile and heads off. Once she is gone, the moody looking Indian guy from the bar\",She gives him a smile and heads off.,\"Once she is gone, the moody looking Indian guy from the bar\",gold,\"bounces up and down her arms, assignment into her in grave position, to someone.\",talks that it's a fancy enemy.,runs over and shoves someone.,ends up; she leans toward someone.\n8859,lsmdc0004_Charade-47451,14736,\"Someone, without a word, throws the still - lit match into the booth, onto someone's lap. She\",\"Someone, without a word, throws the still - lit match into the booth, onto someone's lap.\",She,gold,beats it out frantically.,leaps into the girder.,\"stares at him, disturbed with emotion.\",melts into its spot.\n8860,lsmdc0004_Charade-47451,14735,\"He strikes a match and lights his cigarette, holding the burning match in his hand afterward. Someone, without a word,\",\"He strikes a match and lights his cigarette, holding the burning match in his hand afterward.\",\"Someone, without a word,\",gold,\"reaches out, starts chopping over a piece of wood.\",\"walks towards the old figure, staring up at the dusted tower.\",\"throws the still - lit match into the booth, onto someone's lap.\",goes back to the inn where the staffer is while the big crowd is watching.\n8861,lsmdc0004_Charade-47451,14742,People enter the deserted lobby. She,People enter the deserted lobby.,She,gold,sits on someone's bed.,sets down shelves far behind them.,\"clubs the corridor, takes up a crowbar and swings the knife with a latch.\",\"goes to the desk, followed by someone, where the night clerk greets them sleepily.\"\n8862,lsmdc0004_Charade-47451,14737,She beats it out frantically. He,She beats it out frantically.,He,gold,lights another match and reaches out toward her hair with it.,watches her place the tire in the ignition.,puts his hand flat on someone's face.,leans and puts the wood down on the ticket rack.\n8863,lsmdc0004_Charade-47451,14734,Someone takes a book of matches from his pocket. He,Someone takes a book of matches from his pocket.,He,gold,finds it tall and bear.,\"strikes a match and lights his cigarette, holding the burning match in his hand afterward.\",fills someone's mouth.,\"reads a message in his plan:, mr.\"\n8864,lsmdc0004_Charade-47451,14740,\"As she frantically beats out the matches, her eyes on her work. She\",\"As she frantically beats out the matches, her eyes on her work.\",She,gold,runs her hand through her hair and kisses a coat.,notices her hand is shaking.,sits motionless as she watches him.,braces herself on the apparently manor house and turns herself to get a better view.\n8865,lsmdc0004_Charade-47451,14741,Suddenly the door opens and someone shrieks - - but this time it is someone. People,Suddenly the door opens and someone shrieks - - but this time it is someone.,People,gold,enter the deserted lobby.,switch back to the door and they look at someone.,\", someone looks at someone, then back at someone.\",\"hold him back, and someone vanishes together.\"\n8866,lsmdc0004_Charade-47451,14738,As he continues to speak he punctuates each phrase or so with another lit match. Someone,As he continues to speak he punctuates each phrase or so with another lit match.,Someone,gold,is once again taken.,\"presses the upon, then returns to a card - sized bow.\",is too busy beating them out to do anything else.,almost at the camera only we see.\n8867,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9899,Now a carriage arrives at a building. Someone,Now a carriage arrives at a building.,Someone,gold,is lying on the smooth horizontal floor.,throws herself at a magazine.,reads and sees an officer throwing documents.,leaves someone with a book.\n8868,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9905,He finds a flowery invitation inside. Someone,He finds a flowery invitation inside.,Someone,gold,quickly gathers his jacket and hat.,wears her coat and black cloak open behind her desk.,stands staring through a window.,hands the posters to his wife.\n8869,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9903,Now someone finds someone in his study. Someone,Now someone finds someone in his study.,Someone,gold,\"sets her cellphone down, and calls on one of his bags.\",takes a seat and hands someone the book.,adjusts the pen on a chiseled copy of someone's letter.,shoves a wooden tin into the table.\n8870,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9896,The vampires wait as their brooding leader steps away from the casket. Someone,The vampires wait as their brooding leader steps away from the casket.,Someone,gold,fixes a cool smile on his face.,stops and gazes thoughtfully.,leaps into the plinth and settles to his knee.,rests writing on the bottom of the line.\n8871,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9900,\"Someone leaves someone with a book. As he heads off, someone\",Someone leaves someone with a book.,\"As he heads off, someone\",gold,sits at mr table's edge.,smirks and steps out.,cuts a line of coke.,reads from the book leaning against the wall.\n8872,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9895,He slams the casket's lid. The vampires,He slams the casket's lid.,The vampires,gold,leap out of the window of the orcs as someone gazes up at his flaming stone statues.,frost from the structure around them.,wait as their brooding leader steps away from the casket.,leap out in front of the blonde walls.\n8873,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9904,Someone takes a seat and hands someone the book. He,Someone takes a seat and hands someone the book.,He,gold,answers the phone with a hurt look.,\"strides into an apartment, followed by another janitor.\",\"waves at the driver, who takes the tellers, then hides around the wood.\",finds a flowery invitation inside.\n8874,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9891,\"Someone stands nearby, as do several masked vampires. Someone\",\"Someone stands nearby, as do several masked vampires.\",Someone,gold,pulls from a wound in his hand and shoulder.,takes a bulky someone with hand.,creeps closer at a lighted window as it streams away.,opens the casket revealing someone inside.\n8875,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9893,He removes a red rose petal from one of the slain vampire's eyes then notices something in his hand. Someone,He removes a red rose petal from one of the slain vampire's eyes then notices something in his hand.,Someone,gold,\"picks up his pack of eggs, the lowering hatch up.\",slows to a halt and looks at a large round bed of tall figures with black - tinted smoke.,tries to open the bunks but miss richard parker.,turns someone 'hand palm up and pries his fingers from someone's pocket watch.\n8876,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9898,He turns back and ambles over to someone. Now a carriage,He turns back and ambles over to someone.,Now a carriage,gold,travels across the street.,approaches on the dilapidated woodland road.,arrives at a building.,trundles down a sidewalk.\n8877,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9894,Someone turns someone 'hand palm up and pries his fingers from someone's pocket watch. He,Someone turns someone 'hand palm up and pries his fingers from someone's pocket watch.,He,gold,is locked around his forehead with his fingertips.,turns to watch someone pass with his snickers raised.,makes his way down the hall and grits his teeth.,slams the casket's lid.\n8878,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9902,One of the two men steps down beside someone then clubs him. Now someone,One of the two men steps down beside someone then clubs him.,Now someone,gold,finds someone in his study.,pours into a glass with soda and studies her breakfast.,drives someone's car into an alleyway.,is on the one for a picture.\n8879,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9901,\"As he heads off, someone reads from the book leaning against the wall. One of the two men\",\"As he heads off, someone reads from the book leaning against the wall.\",One of the two men,gold,circles a letter under his arm and moves through it.,take the envelope out of their shoulders.,steps down beside someone then clubs him.,shows the note on a map.\n8880,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9889,\"He and someone step aside. At a dock, someone\",He and someone step aside.,\"At a dock, someone\",gold,\"pauses at a cigarette park, then ducks into a table chair.\",sniffs the air over someone's shoulder and leads it away.,runs his gloved hand over the top of a wooden casket.,climbs onto a stretcher.\n8881,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2212,9892,Someone opens the casket revealing someone inside. He,Someone opens the casket revealing someone inside.,He,gold,removes a red rose petal from one of the slain vampire's eyes then notices something in his hand.,gently takes it from her and takes the can out of the hole.,caresses the swollen bandages.,cuts a seal and swoop.\n8882,anetv_DCCD1fufXfY,10267,The little girl went out of the room. The boy,The little girl went out of the room.,The boy,gold,get the bottle under the bed and is holding it and then drink it.,goes to the front door and swings the right tire.,is trying to get a kite into the hoop in front of a truck.,shakes his hand.\n8883,anetv_w8LDUu66JWI,17444,\"After, the cheerleaders talk and exercise. After, the cheerleaders\",\"After, the cheerleaders talk and exercise.\",\"After, the cheerleaders\",gold,exercise and also talk.,practice playing the heavy baton cheerleader.,do jumps and tricks on elliptical.,are outside tai the video.\n8884,anetv_q2TF-3bWZuU,4441,She discusses the form and positioning of the rider. The rider,She discusses the form and positioning of the rider.,The rider,gold,stands naked in the canyon with slow windsurfer.,takes the horse around for a trot while the woman watches.,falls on top of him.,lifts the rider back on the wheels.\n8885,anetv_q2TF-3bWZuU,4440,She talks as a client is riding one of her horses in a dirt field. She,She talks as a client is riding one of her horses in a dirt field.,She,gold,pushes a puck through the air and takes up another individual again.,\"makes her way down a mat, landing on the ground.\",discusses the form and positioning of the rider.,gets up and shows the dumbbells she has needs to turn the paint off.\n8886,anetv_q2TF-3bWZuU,4439,A woman is talking as she stands outside horse stables. She,A woman is talking as she stands outside horse stables.,She,gold,has long blonde hair playing various braids.,talks as a client is riding one of her horses in a dirt field.,\"starts to jump down the horse, and does several tricks as she continues doing jump roping tricks.\",slide down a slide and flee.\n8887,anetv_6XINT0LDdz8,13450,A gymnast is seen looking off into the distance and standing before a set of uneven bars. The man then,A gymnast is seen looking off into the distance and standing before a set of uneven bars.,The man then,gold,jumps up onto the bars and begins swinging himself back and fourth.,moves his arms to demonstrate how his further should properly do his legs body spin while the contents of the auditorium.,spins another beam and jumps back along beside the beam.,begins balancing on the bars and flipping while then demonstrating how to lift it up and toss them into the air.\n8888,anetv_6XINT0LDdz8,13451,The man then jumps up onto the bars and begins swinging himself back and fourth. The man,The man then jumps up onto the bars and begins swinging himself back and fourth.,The man,gold,dismounts and lands on the mat with his hands on it.,continues spinning around and ends by jumping the bars and performing tricks.,continues to swing around and ends by jumping down.,hops back up and jumps onto his arm as well.\n8889,anetv_EWt03pUigc0,7514,\"She is showing the viewers the different events such as shoot put, swimming and running and the gold medals that were won in these events. While the news is being telecast, there\",\"She is showing the viewers the different events such as shoot put, swimming and running and the gold medals that were won in these events.\",\"While the news is being telecast, there\",gold,are captions on the bottom about current events.,is to still images of the princess as he reads the bellows.,is a machine in the snow again.,are several band tape with a video camera.\n8890,lsmdc0013_Halloween-53688,7448,Someone walks up to her door. For a moment someone,Someone walks up to her door.,For a moment someone,gold,sits back bottom to someone.,hears the crocodile un - up stairs.,looks around cautiously before searching down the sidewalk again.,sits in the coupe.\n8891,lsmdc0013_Halloween-53688,7450,\"Suddenly, someone walks right into a man standing on the sidewalk in front of her. She\",\"Suddenly, someone walks right into a man standing on the sidewalk in front of her.\",She,gold,look at each other.,screams and drops her books.,rises on her knees.,finds a sign for her bow and heads off.\n8892,lsmdc0013_Halloween-53688,7447,\"The two girls stop in front of someone's house, another small suburban home. Someone\",\"The two girls stop in front of someone's house, another small suburban home.\",Someone,gold,grabs the stilts and he hits her against the car.,walks up to her door.,walks past a circular creature crammed to the back of the house and waves the rest of the family.,enters his loft room and slams someone to the floor.\n8893,lsmdc0013_Halloween-53688,7453,He is a tall man in a county sheriff's uniform. Someone,He is a tall man in a county sheriff's uniform.,Someone,gold,leads the children on their recumbent bikes.,moves on and wraps his briefcase.,bundles her books and hurries up the street.,is someone's briefcase.\n8894,lsmdc0013_Halloween-53688,7452,\"It is someone, someone's father. He\",\"It is someone, someone's father.\",He,gold,is spoken to the word baby.,is a tall man in a county sheriff's uniform.,is in peacock town in the auditorium.,\"glances at someone, knocks her over.\"\n8895,lsmdc0013_Halloween-53688,7454,Someone bundles her books and hurries up the street. Someone,Someone bundles her books and hurries up the street.,Someone,gold,walks down the sidewalk to his house.,sits at the back of a desk.,stops the car someone looks out with concern.,stops and looks at one.\n8896,lsmdc0013_Halloween-53688,7449,\"Again she turns around and glances back down the street. Suddenly, someone\",Again she turns around and glances back down the street.,\"Suddenly, someone\",gold,turns to see someone.,looks at someone with a smile on her face.,walks right into a man standing on the sidewalk in front of her.,keeps his head down.\n8897,lsmdc0013_Halloween-53688,7455,Someone walks down the sidewalk to his house. Someone,Someone walks down the sidewalk to his house.,Someone,gold,the next working file placed in the garbage state slashes a claw's path which breaks up from arrows to someone who knocks the doll,walks up on the front porch of her house.,\"stops in the middle of the parking lot, jogging between them and sitting.\",rolls his eyes and sees someone watching them offscreen.\n8898,lsmdc0013_Halloween-53688,7457,She pauses a moment and glances down the street. Several children in costumes,She pauses a moment and glances down the street.,Several children in costumes,gold,try out to the terrace and down the road.,run to cordon down the perimeter.,are going door to door collecting their treats.,approaches him and rides the exercise bikes.\n8899,lsmdc0013_Halloween-53688,7456,Someone walks up on the front porch of her house. She,Someone walks up on the front porch of her house.,She,gold,begins to swing.,helps someone onto her plate.,pauses a moment and glances down the street.,picks up her phone and turns back.\n8900,lsmdc0013_Halloween-53688,7451,She screams and drops her books. It,She screams and drops her books.,It,gold,\"is someone, someone's father.\",howls to the right of the destroyer.,is as exciting and painful as he personal.,leaps over a wall.\n8901,anetv_G1hRHCymRGE,8286,A gymnast is seen standing ready with her arms out to the audience as well as the beam. The girl then,A gymnast is seen standing ready with her arms out to the audience as well as the beam.,The girl then,gold,begins doing various flips and tricks and lands and moving herself again in slow motion.,dismounts and begins using her flipping various feet and ends by jumping off into the distance.,climbs up on the beam and begins performing jumps and tricks on the beam.,turns her arms up and proceeds to work and ends by lifting her arms and flipping over.\n8902,anetv_G1hRHCymRGE,6469,Litle kid is standing in frnt of a balance beam and make a jump to do gymnastics on top. in the background people,Litle kid is standing in frnt of a balance beam and make a jump to do gymnastics on top.,in the background people,gold,are riding on their bikes or walking backward to japan.,are getting ready to high five to each other and are walking in an incline.,are standing watching the balance beam.,are walking in the middle of a sidewalk doing tricks.\n8903,anetv_G1hRHCymRGE,8287,The girl then climbs up on the beam and begins performing jumps and tricks on the beam. The woman,The girl then climbs up on the beam and begins performing jumps and tricks on the beam.,The woman,gold,continues flipping around and ends by putting her arms up after jumping down.,continues performing gymnastic moves with her arms up and ends by jumping back down.,continues her routine with her routine and one falling on the side.,continues by on the board and does various flips and tricks to the camera.\n8904,anetv_G1hRHCymRGE,6470,In the background people are standing watching the balance beam. woman,In the background people are standing watching the balance beam.,woman,gold,is standing in a gym in a violin and demonstrating how to use it.,is doing gymnastics in a balance beam in the middle of stage.,is standing in a gym with audience uniform.,puts its arms up at the feet of the air pole and holds the bat for balance.\n8905,anetv_q4rVY3sLQqA,398,Two men describe lead climbing while one man in a bright green shirt climbs a climbing wall the other man wearing a dark green shirt holds the lead line and explains the process. The man in the dark green shirt,Two men describe lead climbing while one man in a bright green shirt climbs a climbing wall the other man wearing a dark green shirt holds the lead line and explains the process.,The man in the dark green shirt,gold,gets on acrobatic technique and moves for tricks as the man walks.,is using the ropes to move down the mat to work on where he was being pulled.,places a strap and link to the climbing wall and loops a rope through the clip.,tries to rope other man now who keep flipping in the air and does his back flip around.\n8906,anetv_q4rVY3sLQqA,400,The man reverses the strap position and loops the rope through the strap eye link. The man in the bright green shirt,The man reverses the strap position and loops the rope through the strap eye link.,The man in the bright green shirt,gold,crowd between the large groups of people.,misses a high five and then rolls out.,continue climbing to the top of the wall.,walks back to cape and places the skateboard in his tube.\n8907,anetv_q4rVY3sLQqA,401,The man in the bright green shirt continue climbing to the top of the wall. The man in the dark green shirt,The man in the bright green shirt continue climbing to the top of the wall.,The man in the dark green shirt,gold,looked down and tips on the rope.,continues talking to the camera.,stands and stares at the floor catching it.,comes back into the room with black equipment on his butt.\n8908,anetv_q4rVY3sLQqA,399,The man in the dark green shirt places a strap and link to the climbing wall and loops a rope through the clip. The man,The man in the dark green shirt places a strap and link to the climbing wall and loops a rope through the clip.,The man,gold,points the tool showing it's position then styles the hair for a while by taller to the camera.,is then guiding the maneuvering pair while standing and raising his arms on top of the boat.,\"pushes the gymnast stair down the floor several times and waits, then turns to reveal the rope.\",reverses the strap position and loops the rope through the strap eye link.\n8909,anetv_STaS53CNlZI,13743,An intro that's a blue screen with white words that read MegaZip Sentosa dot Singapore dot November 2010 appear on the screen. Four people,An intro that's a blue screen with white words that read MegaZip Sentosa dot Singapore dot November 2010 appear on the screen.,Four people,gold,are floating on inflated boats.,are running up a track running into a sand park.,appear near a railing where they are all attached to harnesses.,are interviewed on a large sidewalk and a young couple are running jumping into the room.\n8910,anetv_STaS53CNlZI,13745,\"A man puts his hand on the woman's shoulder and guides her to the opening where she is to leave but a blue screen appears with the white words say yes, then it goes back to the woman getting ready to jump and she bends her knees and a blue screen appears and say's no, and she shakes her head and backs away. A blue screen appears again and it says ok Maybe and the woman once again gets ready to jump at the opening and at the same time the other man who is attached to the harness\",\"A man puts his hand on the woman's shoulder and guides her to the opening where she is to leave but a blue screen appears with the white words say yes, then it goes back to the woman getting ready to jump and she bends her knees and a blue screen appears and say's no, and she shakes her head and backs away.\",A blue screen appears again and it says ok Maybe and the woman once again gets ready to jump at the opening and at the same time the other man who is attached to the harness,gold,is also ready to go.,starts trying to get it down with her fingertips still on the cable boat.,urges a little boy in the body.,is part to clip her rope because it's shown to start situations.\n8911,anetv_STaS53CNlZI,13746,A blue screen appears again and it says ok Maybe and the woman once again gets ready to jump at the opening and at the same time the other man who is attached to the harness is also ready to go. A blue screen appears that say's no but the woman and the man do let go and they go zip lining across the heavily tree green forest below and a blue screen,A blue screen appears again and it says ok Maybe and the woman once again gets ready to jump at the opening and at the same time the other man who is attached to the harness is also ready to go.,A blue screen appears that say's no but the woman and the man do let go and they go zip lining across the heavily tree green forest below and a blue screen,gold,\"is advertising the epees, showing the people, making and sharpening the metal.\",appears again and say's i think she said yes?,\"appears, with white words on the swiffer freeway that holds beds.\",\"begins to scream into the back hills, her mother inside of her hands.\"\n8912,anetv_STaS53CNlZI,13744,\"Four people appear near a railing where they are all attached to harnesses. A man puts his hand on the woman's shoulder and guides her to the opening where she is to leave but a blue screen appears with the white words say yes, then it goes back to the woman getting ready to jump and she bends her knees and a blue screen appears and say's no, and she\",Four people appear near a railing where they are all attached to harnesses.,\"A man puts his hand on the woman's shoulder and guides her to the opening where she is to leave but a blue screen appears with the white words say yes, then it goes back to the woman getting ready to jump and she bends her knees and a blue screen appears and say's no, and she\",gold,gets stomping whipping through the screen.,is panning like waves on camera.,shakes her head and backs away.,is a kind of reply about the job in progress.\n8913,anetv_STaS53CNlZI,13747,They reach the end of the zip line and the worker begins to pull them to the landing point where a close up of the worker appears and he also has a big smile on his face while he other zip liners are standing there and smiling as well. The view changes to ground view and it,They reach the end of the zip line and the worker begins to pull them to the landing point where a close up of the worker appears and he also has a big smile on his face while he other zip liners are standing there and smiling as well.,The view changes to ground view and it,gold,'s once bigger when the man points the other man back around.,shows what the zip liners look like from the ground.,\"is showing manual roadster links, graphic and photographers, a website.\",\"is smartly lighted by a man in a yellow and black hat, holding a toy stick ready with his arms up.\"\n8914,anetv_02WlEYafQ9Q,15769,Several lone people paddle in small kayaks against the same violent water. A person,Several lone people paddle in small kayaks against the same violent water.,A person,gold,wheels a canoe along the water under the water.,navigates the rocky waves in a large water raft.,kayaks down a river and waves on the boat.,slowly aircraft pushed down the platform of the stone slope.\n8915,anetv_-v-Zail6TNw,18888,An eight year old girl is playing a harmonica on a stage. The camera,An eight year old girl is playing a harmonica on a stage.,The camera,gold,woman begins dancing in front of the camera with a record flip at a same time using the hole in the instrument.,zoomed in on the singing woman seated as she plays hop scotch.,\"zooms in on the girl as the girl begins to play harder and harder, taking deeper and deeper breaths.\",is sitting on a towel in pans on the floor in front of them.\n8916,anetv_-v-Zail6TNw,18889,\"The camera zooms in on the girl as the girl begins to play harder and harder, taking deeper and deeper breaths. The girl\",\"The camera zooms in on the girl as the girl begins to play harder and harder, taking deeper and deeper breaths.\",The girl,gold,\"stops playing, takes a look to her left really quickly, then beings to smile while looking at the camera and clapping.\",continues swimming and moving around and around.,performs the same thing and continues back and fourth along the track with others running on top of the different mower and walking still.,continues moving her arm to the camera and waving herself to her audience.\n8917,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25890,19384,\"Later in class, a frumpish woman writes a quote on the chalkboard. He\",\"Later in class, a frumpish woman writes a quote on the chalkboard.\",He,gold,sits on the island of light.,pats a number on someone's shoulder.,peers at the quote.,watches the students writing.\n8918,lsmdc1006_Slumdog_Millionaire-73939,2740,\"Someone remains rooted to the spot. Back in the police station, the inspector and someone\",Someone remains rooted to the spot.,\"Back in the police station, the inspector and someone\",gold,stare at the sweating someone.,rush out of the building.,move through an archway to the main in an apartment.,are looking down at him through bricks.\n8919,lsmdc1006_Slumdog_Millionaire-73939,2737,\"Someone emerges, pointing a gun. Someone\",\"Someone emerges, pointing a gun.\",Someone,gold,appears and gently pushes someone's gun down.,climbs up a wall with a workout satchel.,\"pushes himself towards her, then jumps into a nurse's jacket.\",runs towards clouds coming along the curb.\n8920,lsmdc1006_Slumdog_Millionaire-73939,2738,Someone appears and gently pushes someone's gun down. Someone,Someone appears and gently pushes someone's gun down.,Someone,gold,comes to a chair.,looks incredulous as someone pulls someone back into the room.,flails his sword at the demon who scrambles.,slams him down onto the floor as to secure the seated witch.\n8921,lsmdc1006_Slumdog_Millionaire-73939,2736,Someone eventually overpowers the smaller someone and ejects him from the room. Someone,Someone eventually overpowers the smaller someone and ejects him from the room.,Someone,gold,\"emerges, pointing a gun.\",is looking down at the ceiling.,looks over at the screen.,reaches through the wall of his own.\n8922,lsmdc3080_THIS_MEANS_WAR-37361,8619,\"As someone and someone lie kissing on the kitchen island, the picture fades to black. The next morning, he\",\"As someone and someone lie kissing on the kitchen island, the picture fades to black.\",\"The next morning, he\",gold,takes out his phone and staring through it at several screens.,makes car and climbs the steps to a doorway.,lies asleep in her bed.,lies curled up in bed.\n8923,lsmdc3080_THIS_MEANS_WAR-37361,8615,He whips off his blue button down shirt. Agent someone,He whips off his blue button down shirt.,Agent someone,gold,\"watches with the gleaming brown car, then glances back at someone.\",watches the video feed.,\"rises, grabs them and tosses them at the guard.\",leads into the flashlight crowded the streets.\n8924,lsmdc3080_THIS_MEANS_WAR-37361,8617,Someone lifts someone's dress off over her head. She,Someone lifts someone's dress off over her head.,She,gold,reclines with a sultry smile.,inserts her hand between fingers and caresses the man's forehead.,pulls her eyes shut as the magic ends.,throws him in the backseat.\n8925,lsmdc3080_THIS_MEANS_WAR-37361,8618,\"She reclines with a sultry smile. Back at the cia Field Office, someone's three colleagues\",She reclines with a sultry smile.,\"Back at the cia Field Office, someone's three colleagues\",gold,look up a staircase in a long corridor.,crane their necks to watch.,look down through a file.,hang guard into the screened hotel parking lot.\n8926,lsmdc3080_THIS_MEANS_WAR-37361,8614,She straddles his thighs as he lifts her onto the kitchen island. He,She straddles his thighs as he lifts her onto the kitchen island.,He,gold,slumps slightly as she paddles through the crowd towards the tall black tank.,watches as his companions disappear.,\"lifts the weights, he struggles to pull his pants back to rest on her shoulders.\",whips off his blue button down shirt.\n8927,lsmdc3080_THIS_MEANS_WAR-37361,8616,Agent someone watches the video feed. Someone,Agent someone watches the video feed.,Someone,gold,\"sits in bed, propped against a bike.\",puts it back in his pocket and looks over at someone.,lifts someone's dress off over her head.,hops off of the crane and forces her door open.\n8928,lsmdc3080_THIS_MEANS_WAR-37361,8613,They start tearing off each other's clothes. She,They start tearing off each other's clothes.,She,gold,wipes one of the buttons with a hand and shows them to her.,straddles his thighs as he lifts her onto the kitchen island.,rolls to the street and crashes over the tile.,drinks before they leave.\n8929,lsmdc3080_THIS_MEANS_WAR-37361,8612,Kissing hungrily as they remove their coats. They,Kissing hungrily as they remove their coats.,They,gold,hangs up his radio.,start tearing off each other's clothes.,blows down his cheeks then looks up as a customer enters.,faces up.\n8930,lsmdc3080_THIS_MEANS_WAR-37361,8609,\"Someone raises her glass of white wine. That night, someone\",Someone raises her glass of white wine.,\"That night, someone\",gold,brings someone into an alley.,paces back and forth between someone's legs.,is awakened in his sleep and sits in the shadows of his mother's bed.,walks someone to her house.\n8931,lsmdc3080_THIS_MEANS_WAR-37361,8620,\"The next morning, he lies asleep in her bed. Dressed for work, someone\",\"The next morning, he lies asleep in her bed.\",\"Dressed for work, someone\",gold,\"sits back to sleep, lost in thought.\",marks someone's wound.,tiptoes out from her bathroom and gathers her things.,\"heads into someone's room, then turns around to put his digicam down.\"\n8932,lsmdc3080_THIS_MEANS_WAR-37361,8610,\"That night, someone walks someone to her house. They both\",\"That night, someone walks someone to her house.\",They both,gold,glance away shyly then look each other in the eyes.,climb onto a bed and stand around.,work a cool bronze hike.,look at street still.\n8933,lsmdc3080_THIS_MEANS_WAR-37361,8611,The two surveillance teams watch from the cia. Someone and someone,The two surveillance teams watch from the cia.,Someone and someone,gold,burst into her house.,rush into the remaining observation room.,arrive at a massage table then stare.,take a supply of bullets.\n8934,anetv_arTumJHoLB0,10810,He continues rubbing the lotion in while looking away from the camera. He,He continues rubbing the lotion in while looking away from the camera.,He,gold,continues to demonstrate how to cut the hair and pause a bit afterwards.,finishes putting in the sunscreen and looking away from the camera.,uses her next to wet hair behind while talking to the other looking.,moves around then continues talking as he finishes and uses both hands to move his length in small shots and turning around.\n8935,anetv_arTumJHoLB0,10809,A young man is seen looking off into the distance with lotion on his face. He,A young man is seen looking off into the distance with lotion on his face.,He,gold,continues rubbing the lotion in while looking away from the camera.,man is shown speaking to a small camera while still holding a pumpkin and begins demonstrating how to use the plaster.,rides back and fourth while performing shows with a person perspective of the man surfing around.,springs at all angles while still speaking to the camera and holding onto the left.\n8936,lsmdc1005_Signs-5032,14531,\"Someone has one hand on someone's chest, the other gripping his son's shoulder. Someone\",\"Someone has one hand on someone's chest, the other gripping his son's shoulder.\",Someone,gold,pulls against a light and brings someone to a halt as the vehicle pulls away from him.,stares at them wide - eyed.,starts to pace past a wrecked pile of tunnels.,takes the little boy out of his hand and flings him to the ground.\n8937,lsmdc1005_Signs-5032,14512,\"Someone slowly directs the torch beam around the basement, and starts to walk past a cluttered work bench. The light\",\"Someone slowly directs the torch beam around the basement, and starts to walk past a cluttered work bench.\",The light,gold,shows a few yards away.,falls from the window.,\"falls on someone, crouched on the floor.\",\"pours out the door,, making the figure move with the lighter.\"\n8938,lsmdc1005_Signs-5032,14518,He then turns to face the others. The pickaxe,He then turns to face the others.,The pickaxe,gold,is held up for the mop it dried.,holds in place as the doors hit.,begin to take down his face.,rumbles along in front of the car in the most gentle gravel.\n8939,lsmdc1005_Signs-5032,14523,\"People move slowly in different directions, working their way around the rough stone walls. They\",\"People move slowly in different directions, working their way around the rough stone walls.\",They,gold,\"move in place, stony - faced.\",come towards each other again.,look quite still as they continue to jump at someone dodges along the center of the platform.,\"are looking at each other cautiously, barely visible, as they gaze at the clear sky that follow her behind.\"\n8940,lsmdc1005_Signs-5032,14514,\"Someone finds another flashlight and directs its beam around the walls of the basement, illuminating old wooden shelves, supporting neatly - arranged pickling jars, bowls, ski boots, roller skates, and disordered clatter. He\",\"Someone finds another flashlight and directs its beam around the walls of the basement, illuminating old wooden shelves, supporting neatly - arranged pickling jars, bowls, ski boots, roller skates, and disordered clatter.\",He,gold,\"are all wearing yellow uniforms, shoes, and sunglasses.\",\"goes at the top of a bus corridor, drags down the outer resolve and rolls over the top of the ladder.\",spots a dusty old radio on one shelf and tuns the dial on the front.,wistfully touches its torch as he sets and stands towards his father.\n8941,lsmdc1005_Signs-5032,14505,Someone hurries down some stairs into the gloomy basement and slams the door shut. Someone,Someone hurries down some stairs into the gloomy basement and slams the door shut.,Someone,gold,turns suddenly and presses his ear against the door.,is nearly amazing the window.,sits at the bar.,pushes the door open and walks up to it.\n8942,lsmdc1005_Signs-5032,14528,\"Spotting a can of dog food on the floor, he picks it up and rising slightly, reaches up beside him to slap it on top of the pile of sacks. Sitting back down on the floor, he\",\"Spotting a can of dog food on the floor, he picks it up and rising slightly, reaches up beside him to slap it on top of the pile of sacks.\",\"Sitting back down on the floor, he\",gold,scowls at someone's head as he removes the pin in his t - shirt.,\"looks across at someone, and then, picks up his torch, using it to search the basement for the others.\",lands heavily with his feet over the floor.,finds a settlement of animal bundles in the dusty garden and pulls it open.\n8943,lsmdc1005_Signs-5032,14516,They went around to face the door. Someone,They went around to face the door.,Someone,gold,\"walks over, who.\",pushes his hand against the door lit by someone's torch.,snorts the porsche and stumbles around the apartment building.,\"steps against the bar, her mouth hanging out of her window.\"\n8944,lsmdc1005_Signs-5032,14507,Someone looks down at the doorknob. He,Someone looks down at the doorknob.,He,gold,\"grabs it as it starts to turn and holds it tight with both hands, resting his head on the door.\",reaches out and lifts a hand onto someone's hand.,\"rolls over, then heads down.\",turns off the light.\n8945,lsmdc1005_Signs-5032,14502,He gazes in horror at the unsecured hatch door in the attic. People,He gazes in horror at the unsecured hatch door in the attic.,People,gold,play tv and embraces an assistant.,pulled the children down the hallway into the kitchen.,shares lifts with a photo of his minions.,wait in the opening credits on the decks.\n8946,lsmdc1005_Signs-5032,14515,He spots a dusty old radio on one shelf and tuns the dial on the front. They,He spots a dusty old radio on one shelf and tuns the dial on the front.,They,gold,went around to face the door.,fly to a truck over the winding road.,have no bite at the top.,skim by the train's corner.\n8947,lsmdc1005_Signs-5032,14508,\"As he yanks it off a high shelf, he smashes the light bulb, plunging the basement into darkness. Someone\",\"As he yanks it off a high shelf, he smashes the light bulb, plunging the basement into darkness.\",Someone,gold,\"is sprawled on a roof in an open gutter hanging in the side of a wall, waiting gas any longer for support.\",removes the white sheet from the van.,throws himself on a sofa.,turns on a torch and stares down into its bright beam before looking around and pointing it at the door.\n8948,lsmdc1005_Signs-5032,14510,Someone turns to put his back against the door. He,Someone turns to put his back against the door.,He,gold,steps toward his husband while remains on the bed.,bounces up and down on the ledge.,\"sits at the door, slowly swinging open.\",shields his eyes from the bright torch beam.\n8949,lsmdc1005_Signs-5032,14530,\"Someone's eyes widened in alarm. Someone has one hand on someone's chest, the other\",Someone's eyes widened in alarm.,\"Someone has one hand on someone's chest, the other\",gold,\"'s missing bleeding, to his ears, his mouth twisted with pain.\",has bringing something to his.,rushes forward and crouch.,gripping his son's shoulder.\n8950,lsmdc1005_Signs-5032,14517,Someone pushes his hand against the door lit by someone's torch. He then,Someone pushes his hand against the door lit by someone's torch.,He then,gold,closes his eyes and bangs it against his hand.,\"drags it open, revealing someone in the center of the room.\",turns to face the others.,aims his wand with his sword.\n8951,lsmdc1005_Signs-5032,14509,\"People pushing hard against it, the pickaxe now firmly waged under the doorknob. Someone\",\"People pushing hard against it, the pickaxe now firmly waged under the doorknob.\",Someone,gold,\"steps through a storage hallway and is leading someone, gazing toward the diner.\",steps out of the corridor as she goes.,turns to put his back against the door.,dawns a bright - round light red eyes.\n8952,lsmdc1005_Signs-5032,14529,\"Sitting back down on the floor, he looks across at someone, and then, picks up his torch, using it to search the basement for the others. The beam\",\"Sitting back down on the floor, he looks across at someone, and then, picks up his torch, using it to search the basement for the others.\",The beam,gold,notices a woman with heavy chain growing nearby.,goes back to his next set for his sword.,\"illuminates his brother, sitting on the floor, leaning against a pillar.\",\"hits all the heroes with a clamber into the lizard, forming the smoke with the ring upstairs.\"\n8953,lsmdc1005_Signs-5032,14527,\"He slides wearily down his barricade to the ground. Spotting a can of dog food on the floor, he\",He slides wearily down his barricade to the ground.,\"Spotting a can of dog food on the floor, he\",gold,\"bends over, attaches an ivory shaped never false, nerds, sorts for wiring and briefs.\",notices it hovering around the other side of the sparse noodles.,\"picks it up and rising slightly, reaches up beside him to slap it on top of the pile of sacks.\",peeks through the double doors.\n8954,lsmdc1005_Signs-5032,14522,Someone walks over to someone. People,Someone walks over to someone.,People,gold,\"move slowly in different directions, working their way around the rough stone walls.\",knitted out on it.,joined on the dragon - wedding.,go on for the moment more.\n8955,lsmdc1005_Signs-5032,14535,Someone holds the knees of his father's jeans tightly as he struggles with his breathing. Someone,Someone holds the knees of his father's jeans tightly as he struggles with his breathing.,Someone,gold,\"starts to go, then lets himself down over the railing.\",catches the arrow then returns.,\"eyes twitch and straining, he leans back and places his hands on his knees in the water.\",lifts his head slightly and stares angrily into the distance.\n8956,lsmdc1005_Signs-5032,14513,\"The light falls on someone, crouched on the floor. She\",\"The light falls on someone, crouched on the floor.\",She,gold,looks over at the water.,hears a hostile sound.,waves lamely at someone.,sees a strange expression in the window.\n8957,lsmdc1005_Signs-5032,14501,Someone smiles lovingly as a tear falls from someone's eyes. Someone,Someone smiles lovingly as a tear falls from someone's eyes.,Someone,gold,\"stares wearily up the staircase, climbing the first two steps.\",smiles as someone shakes her head and beams.,sits down behind someone.,'s sad eyes looks up at someone's parents.\n8958,lsmdc1005_Signs-5032,14526,\"She walks over to the torch, picks it up, and shines it at someone, who's stacking crates and live sacks of dog food in front of the chute. He\",\"She walks over to the torch, picks it up, and shines it at someone, who's stacking crates and live sacks of dog food in front of the chute.\",He,gold,struggles over the sofa.,picks one up and drops some coins on the counter.,slides wearily down his barricade to the ground.,closes the door and carries them out onto the balcony.\n8959,lsmdc1005_Signs-5032,14504,Someone's terrified eyes focused on the gap at the bottom of the front door as green gray fingers appear underneath it. Someone,Someone's terrified eyes focused on the gap at the bottom of the front door as green gray fingers appear underneath it.,Someone,gold,\"lies on the snowy couch, surrounded by trees and twigs.\",hurries down some stairs into the gloomy basement and slams the door shut.,hurries up the track past.,leaves him once again.\n8960,lsmdc1005_Signs-5032,14533,Someone rests his head against someone's. Someone,Someone rests his head against someone's.,Someone,gold,\"lies on his back, staring down at the mission.\",floats below him then let his fall fall to the ground.,\"goes to sit on someone's lap, tears welling in her eyes.\",\"kisses her bump forehead, then gulps down his wine.\"\n8961,lsmdc1005_Signs-5032,14524,They come towards each other again. People,They come towards each other again.,People,gold,\"stand and stare at him, stunned.\",hug everyone between us and another takes someone's arm.,kiss as the audience are moving toward him.,steps forward and holds his arms up to someone.\n8962,lsmdc1005_Signs-5032,14511,He shields his eyes from the bright torch beam. Someone,He shields his eyes from the bright torch beam.,Someone,gold,is 10 money in a display attached with a blast.,\"slowly directs the torch beam around the basement, and starts to walk past a cluttered work bench.\",puts up his headgear and aims surreptitiously at his head.,watches from a pile in the stairwell.\n8963,lsmdc1005_Signs-5032,14506,Someone turns suddenly and presses his ear against the door. Someone,Someone turns suddenly and presses his ear against the door.,Someone,gold,runs out into the hall but does n't emerge.,looks down at the doorknob.,\"goes out of his living room, runs down the steps office and leaves them out.\",models people wearing st from their hands as they dance together.\n8964,lsmdc1005_Signs-5032,14521,Someone sets the white - headed silver torch on the ground and rolls it across to his father. Someone,Someone sets the white - headed silver torch on the ground and rolls it across to his father.,Someone,gold,lathers his free hand and hides his face in the same light.,walks a little away from him.,walks over to someone.,is alone at the exotic hotel overpass in hedestad.\n8965,lsmdc1005_Signs-5032,14532,Someone stares at them wide - eyed. Someone,Someone stares at them wide - eyed.,Someone,gold,\"shrinks back, imploring someone.\",sits on the captain's stables.,shakes out his hand.,rests his head against someone's.\n8966,lsmdc1005_Signs-5032,14519,The pickaxe holds in place as the doors hit. Someone,The pickaxe holds in place as the doors hit.,Someone,gold,stares thoughtfully at the door.,holds one of those two out.,spits on the alarm as the door puffs out.,leans over someone leaning against the car.\n8967,anetv_BiZF6o-AU64,15359,A graphic plays that says StuntsAmazing with a link to their facebook page. A man,A graphic plays that says StuntsAmazing with a link to their facebook page.,A man,gold,shows off a variety of pool tricks on his pool table in his house.,walks alongside caribbean board and jumps down a hill.,named reporter is in piglet outside some houses.,is completed and multiple lines of footage shows his point of view during the video and their dancing at washington and dojo.\n8968,anetv_BiZF6o-AU64,15360,A man shows off a variety of pool tricks on his pool table in his house. A graphic,A man shows off a variety of pool tricks on his pool table in his house.,A graphic,gold,plays that says subscribe and the video ends.,hedge discovers darts on the other toy.,is shown followed by a freestyle rolling and setting.,is shown with a person's hand for words.\n8969,lsmdc1039_The_Queen-87928,14346,Someone shakes someone's and someone's hands. Someone,Someone shakes someone's and someone's hands.,Someone,gold,\"is asleep again, wearing only dark trousers and shorts in bed.\",looks them up and down as they depart.,'s head drops into his hand and someone cradles him with his palms.,chunks of chunks explode around him and then lie side by side on the surface of the maniacal white of glass balcony.\n8970,lsmdc1039_The_Queen-87928,14347,\"Someone looks them up and down as they depart. On leaving, people\",Someone looks them up and down as they depart.,\"On leaving, people\",gold,are nodding downward towards her parade.,smile at the staff.,sit in the back.,look merry and awed.\n8971,lsmdc1039_The_Queen-87928,14345,Someone walks over to someone. Someone,Someone walks over to someone.,Someone,gold,shakes someone's and someone's hands.,sets off his wristwatch.,\"looks up at the man of green, his back to someone.\",\"leans back on the couch, covering her hands in a back.\"\n8972,lsmdc0005_Chinatown-48060,9350,\"Someone moves to the desk, watching the translucent pane in the upper half of the door leading to the outer office as he does. He\",\"Someone moves to the desk, watching the translucent pane in the upper half of the door leading to the outer office as he does.\",He,gold,begins to open and close the desk drawers after quickly examining the top.,\"stares out into the night, lost in thought.\",continues the hatch and lifts it over.,\"drops into the shadows of the couch, only a few inches from someone.\"\n8973,lsmdc0005_Chinatown-48060,9351,\"He looks in it, pulls out a checkbook. He\",\"He looks in it, pulls out a checkbook.\",He,gold,\"finds the quarter gone, slipping it into a pocket.\",\"opens it, riffles through the stubs like he was shuffling cards.\",steps back and returns at someone's digs.,slips it back on.\n8974,lsmdc0005_Chinatown-48060,9349,\"The walls are covered with commendation, photos of someone at various construction sites, large maps of watershed areas and reservoirs in the city. Someone\",\"The walls are covered with commendation, photos of someone at various construction sites, large maps of watershed areas and reservoirs in the city.\",Someone,gold,handled the criminals to steal the coin.,'s attire perfect the buffet bikes.,\"moves to the desk, watching the translucent pane in the upper half of the door leading to the outer office as he does.\",\"and his men hang far behind, someone waits for them.\"\n8975,lsmdc0005_Chinatown-48060,9346,Someone walks out the door. This time he,Someone walks out the door.,This time he,gold,\"is very drunk, and it is becoming normal.\",\"irritably pushes his back against the door's open door, grabs his keys and heads indoors, leaving someone close behind.\",is stopped by the gray - haired man who has also come out of his office and up behind him.,steps on the vestibule and sits anxiously in relief and plunges his across the room.\n8976,lsmdc0005_Chinatown-48060,9347,This time he is stopped by the Gray - Haired Man who has also come out of his office and up behind him. Someone,This time he is stopped by the Gray - Haired Man who has also come out of his office and up behind him.,Someone,gold,points to the bottom of the door and watches through the crowd.,\"begins to water in her silky wet dress, then runs off.\",\"studies the concierge key key, the cloth that is there.\",stares down at the papers in his hand.\n8977,lsmdc0005_Chinatown-48060,9345,Someone flashes a cold smile. Someone,Someone flashes a cold smile.,Someone,gold,\"smiles at him, surprised.\",walks out the door.,takes his glasses and awkwardly retrieves the empty lens from a mug.,nods at his companion.\n8978,anetv_q8mReXud6fE,17593,Woman is raking dry leaves on a yard. kid kneels and,Woman is raking dry leaves on a yard.,kid kneels and,gold,rakes a pitchfork down the lane.,grabs a dry leaf to put it in the trash bin.,pick the leaves towards the fence and grabs the camera.,cleans the garden and clean the log.\n8979,anetv_q8mReXud6fE,17592,Little kid is jumping on dry leaves. woman,Little kid is jumping on dry leaves.,woman,gold,is standing outside on a car with childs and is watching on the sides.,is raking dry leaves on a yard.,is standing at the top of a slide.,is in sidewalk hopping.\n8980,lsmdc3047_LIFE_OF_PI-22048,8710,\"Now below the deck, two orangutans sit in a four by four cage. The larger one\",\"Now below the deck, two orangutans sit in a four by four cage.\",The larger one,gold,carries him out the front lawn.,takes the smaller one's hand and comforts it.,leans for another counter the next bar.,reads 6 minutes later as someone lunges at the creature.\n8981,lsmdc3047_LIFE_OF_PI-22048,8709,\"Someone eyes the amiable boy. Now below the deck, two orangutans\",Someone eyes the amiable boy.,\"Now below the deck, two orangutans\",gold,trot out of a high bench in a huge expanse across the expanse of water.,lounging handlebars radiate from the narrowed lowered lifeboat.,bounce a wooden unit ahead of them.,sit in a four by four cage.\n8982,lsmdc3047_LIFE_OF_PI-22048,8711,The larger one takes the smaller one's hand and comforts it. Someone,The larger one takes the smaller one's hand and comforts it.,Someone,gold,\"sits outside the cage, watching them closely and eating a banana.\",pushes it into the back of the hall.,catches it and then he got a drink on his back.,flies off and the remaining rovers separate away.\n8983,lsmdc3047_LIFE_OF_PI-22048,8708,The sailors pull someone away from the crazy - eyed cook. Now the family,The sailors pull someone away from the crazy - eyed cook.,Now the family,gold,sits with their eyes cast down as a teenage asian boy joins them.,\"climbs a narrow stairs and high on the side and raise their arms, looking straight up at them.\",rides comics and housing on top of someone.,minimizes a dirty swimming pool.\n8984,lsmdc3047_LIFE_OF_PI-22048,8713,His father dumps food in an ostrich pen as a camel and giraffe watch attentively. Stacks of animal crates,His father dumps food in an ostrich pen as a camel and giraffe watch attentively.,Stacks of animal crates,gold,\"surround the carriage, marching down the mountainside.\",fall out of the translucent air.,carry a pair of wands and men out.,line the cargo hold.\n8985,lsmdc3047_LIFE_OF_PI-22048,8712,\"Someone sits outside the cage, watching them closely and eating a banana. His father\",\"Someone sits outside the cage, watching them closely and eating a banana.\",His father,gold,sits on his bed.,dumps food in an ostrich pen as a camel and giraffe watch attentively.,covers his face with a tray of potatoes.,morphs into an enclosure's dangling line.\n8986,anetv_CTxuJBTp_CQ,14123,A child comes and watches the person decorating the tree then runs around playing. The person,A child comes and watches the person decorating the tree then runs around playing.,The person,gold,riders with the gift as they continue to clean the tree.,rolls up a sheer piece of fabric to put away.,\"combs handlebars packaging and the dog falls back, spinning.\",\"uses a tool to paint a picture easel, return to to painting and then measures and talks to us more products.\"\n8987,anetv_CTxuJBTp_CQ,14121,The person drapes shiny tinsel strands around the tree. The person,The person drapes shiny tinsel strands around the tree.,The person,gold,cuts the wire on a tree.,hangs christmas bulbs on the tree.,puts two clear coats onto the tree.,folds materials together and begins carving them out.\n8988,anetv_CTxuJBTp_CQ,14122,The person hangs Christmas bulbs on the tree. A child,The person hangs Christmas bulbs on the tree.,A child,gold,is shown on a leaf and more kids decorate it next to kids.,explains the equipment to put it in the painted strips.,walks through a forest and joins in a beach.,comes and watches the person decorating the tree then runs around playing.\n8989,anetv_TXSNkjjTzdE,16101,\"Then, the woman stops and shows her hairstyle while talking. After, the woman\",\"Then, the woman stops and shows her hairstyle while talking.\",\"After, the woman\",gold,\"shows the direction to comb hair, then uses a hair iron to straight the hair.\",shows how to wipe the hair with a blow dryer.,shows how to remove water from her face.,follows indoors to talk to the woman.\n8990,anetv_TXSNkjjTzdE,16100,\"The woman brush her hair on different directions using a hair dryer. Then, the woman\",The woman brush her hair on different directions using a hair dryer.,\"Then, the woman\",gold,blow a curly hair which then dry.,pulls to dog hair.,begins to wipe her face.,stops and shows her hairstyle while talking.\n8991,anetv_TXSNkjjTzdE,16099,\"A woman talks and fix her wet hair, also she shows a brush and a dry hair. The woman\",\"A woman talks and fix her wet hair, also she shows a brush and a dry hair.\",The woman,gold,sprays sand on her hair and shave it.,brush her hair on different directions using a hair dryer.,places on a white brush thoroughly of black brush and then styles the leg.,\"applies white cream to a boot, then she brushes a brush and lifts it in the dry male.\"\n8992,lsmdc3043_KATY_PERRY_PART_OF_ME-20628,5865,\"In the audience a young blond girl wears a headband with a flashing pink heart bauble. In an arena, stagehands\",In the audience a young blond girl wears a headband with a flashing pink heart bauble.,\"In an arena, stagehands\",gold,file out of the hall and park across the street.,move and work on stage equipment.,gather around the billiard room.,throw the batons at a party.\n8993,lsmdc3043_KATY_PERRY_PART_OF_ME-20628,5866,\"In an arena, stagehands move and work on stage equipment. Someone\",\"In an arena, stagehands move and work on stage equipment.\",Someone,gold,begins to gaze toward buckbeak.,avoids her kiss when she trails red.,stands a guard for a large neck performance.,wears a sleeveless dress.\n8994,anetv_JBnHqQjeVMk,17496,Cars and rv's sit outside a rodeo center. Cowboys,Cars and rv's sit outside a rodeo center.,Cowboys,gold,practice their lasso work.,rides up away on the scale.,is running flying a dog.,are lifted in different positions.\n8995,anetv_JBnHqQjeVMk,17497,Cowboys practice their lasso work. People,Cowboys practice their lasso work.,People,gold,shop inside the store of the rodeo center.,\"arrives behind the auburn veterinarian's center, busy in spanish moss.\",stands in front of the baby.,take ice animals off of an rope.\n8996,anetv_JBnHqQjeVMk,17499,A cowboy jumps off his horse to control the calf he has caught. Another cowboy in a black shirt,A cowboy jumps off his horse to control the calf he has caught.,Another cowboy in a black shirt,gold,steps out of the cow and ties a calf.,knocks him over and lifts off the horse.,takes a man up behind him.,jumps off his horse.\n8997,anetv_JBnHqQjeVMk,17498,A young kid catches a calf. A cowboy,A young kid catches a calf.,A cowboy,gold,jumps off his horse to control the calf he has caught.,jumps off the flap to make a run for the calf.,and the horse runs away.,\"backs up the calf that helps bringing it, then jumps and jumps again.\"\n8998,anetv_JBnHqQjeVMk,17500,A woman on a horse catches a calf. Another man,A woman on a horse catches a calf.,Another man,gold,takes a time fighting the calf.,in a ring stands on the rope and begins tending the rope with the back and the horse.,jumps off his brown horse to control the calf he has caught.,begins brushing again horse.\n8999,anetv_sJUUm0n4cXA,11523,\"Several different games begin and a yellow circle is drawn around him for each play when he is running back and forth. When the highlight reel is finished, a black screen\",Several different games begin and a yellow circle is drawn around him for each play when he is running back and forth.,\"When the highlight reel is finished, a black screen\",gold,appears with the intro and the other words at the end of the video.,around the corner glances like he is in a robe.,appears and shows the high school as well as the name for the player.,flashes as the top of the white screens appears with white letters.\n9000,anetv_sJUUm0n4cXA,11522,A game of lacrosse begins and a boy by the name of Chase Madrid is highlights making scenes throughout the game. Several different games begin and a yellow circle,A game of lacrosse begins and a boy by the name of Chase Madrid is highlights making scenes throughout the game.,Several different games begin and a yellow circle,gold,appears with two men posing in front of the camera.,is shown followed by a physical countdown that leads into several shots of bicycle.,is drawn around him for each play when he is running back and forth.,appears at the words.\n9001,lsmdc3041_JUST_GO_WITH_IT-18586,17328,\"Someone hulas in front of someone, then shakes her hips while raising her arms overhead. Someone\",\"Someone hulas in front of someone, then shakes her hips while raising her arms overhead.\",Someone,gold,spins around twirling her baton spinning.,grabs her by the sleeve of the neck and throws her to the ground.,watches his daughter start slowly.,pushes someone out of the way and poses again.\n9002,lsmdc3041_JUST_GO_WITH_IT-18586,17319,\"As he guides her off stage, someone gives her a hug. He\",\"As he guides her off stage, someone gives her a hug.\",He,gold,hugs and hugs him.,moves on to someone.,faces her laotong.,\"kisses him, then opens the refrigerator.\"\n9003,lsmdc3041_JUST_GO_WITH_IT-18586,17326,\"With her back to the crowd, someone gyrates her rear. Someone\",\"With her back to the crowd, someone gyrates her rear.\",Someone,gold,leans closer and presses her forehead to his.,stretches out his neck and crouches across his body.,\"does the same, until someone does an aerial cartwheel, twirls and drops into a split.\",runs over and hugs her dog.\n9004,lsmdc3041_JUST_GO_WITH_IT-18586,17325,\"Someone lowers her center of gravity, then mimes as though she were juggling. She\",\"Someone lowers her center of gravity, then mimes as though she were juggling.\",She,gold,strides up past someone and grabs the snitch upside down on her chest.,\"juggles pretend balls behind her back, catches them in her bosom and throws one to someone.\",grabs her arm again and at one point she draws the daughter punk they're separated.,is dropped in a chaotic melee.\n9005,lsmdc3041_JUST_GO_WITH_IT-18586,17318,\"He holds his hand over an elderly woman. As he guides her off stage, someone\",He holds his hand over an elderly woman.,\"As he guides her off stage, someone\",gold,gives her a hug.,gives his daughter a heart kiss.,takes off her shoes.,continues to enter the rear office with his walkie - talkie.\n9006,lsmdc3041_JUST_GO_WITH_IT-18586,17327,\"Someone does the same, until someone does an aerial cartwheel, twirls and drops into a split. She\",\"Someone does the same, until someone does an aerial cartwheel, twirls and drops into a split.\",She,gold,\"storms out he is playing holding, french to jump.\",\"buries her face against his shoulder, reaching the other tables.\",does itself off in the doorway hanging halts with lots of speed.,raises her arm in a final pose.\n9007,lsmdc3041_JUST_GO_WITH_IT-18586,17323,\"The tall redhead shakes her head and circles her bent arms, then points to someone. Someone\",\"The tall redhead shakes her head and circles her bent arms, then points to someone.\",Someone,gold,\"looks to someone, who gestures forward to show off her own moves.\",\"glances at himself, remembering them instead.\",presses the subway hard against the taxi's rear windshield.,draws a hard cry.\n9008,lsmdc3041_JUST_GO_WITH_IT-18586,17322,Someone raises her arms overhead and shakes her hips. Someone,Someone raises her arms overhead and shakes her hips.,Someone,gold,\"eyes someone, then matches her hip action.\",\"cranes his neck, winces, and arches her brow as the engineer approaches.\",smiles and kisses the crown.,see her eyes closed and their eyes are clamped on one other.\n9009,lsmdc3085_TRUE_GRIT-40789,8336,\"They bring their horses to a halt as someone draws near. Gaunt, whiskered someone\",They bring their horses to a halt as someone draws near.,\"Gaunt, whiskered someone\",gold,steps up around the side of the car.,hangs up his hooded cape as he passes behind the passing row.,peers out at someone from beneath a broad - rimmed hat.,blows the whistle to her ear.\n9010,lsmdc3085_TRUE_GRIT-40789,8335,\"On the dusty scrub land below, someone rides back towards someone and his three gang members. They\",\"On the dusty scrub land below, someone rides back towards someone and his three gang members.\",They,gold,bring their horses to a halt as someone draws near.,all carry out his lantern with plastic rocks.,\"sees officer german, robber, who private finds an motivational tape then traces the stalls of the first.\",\"sit as a handsome man rises a head into his hut, and runs past a potted plant.\"\n9011,lsmdc3085_TRUE_GRIT-40789,8334,\"They look down at the plain. On the dusty scrub land below, someone\",They look down at the plain.,\"On the dusty scrub land below, someone\",gold,lays the sheet partially down as he straddles it.,spits into the air pool.,rides back towards someone and his three gang members.,and another person just burst in the window to three more coated limbs get up.\n9012,lsmdc3027_GET_HIM_TO_THE_GREEK-12296,5797,It's someone in a red leather jacket on a music video set. Someone,It's someone in a red leather jacket on a music video set.,Someone,gold,takes out a metal box.,faces someone who wears red jacket.,grabs her cell phone.,puts his hand in the waistband of her front overcoat.\n9013,anetv_kHyEIbBnzYM,8471,A man is seen walking over to a young girl who stands on a stage and begins performing martial arts. She,A man is seen walking over to a young girl who stands on a stage and begins performing martial arts.,She,gold,is closing with them with slow black hair and again performing.,performs several flips and tricks and bows to a man in the end while everyone claps for her.,spins her around and dancing herself while she still speaks in news for the camera.,does a lot on himself in the studio while another man is seen standing around to speak to the camera.\n9014,anetv_a370DDsJtBA,9158,\"She quickly moves color blocks on a puzzle, trying to solve it. She\",\"She quickly moves color blocks on a puzzle, trying to solve it.\",She,gold,switches a roll of tape to clear it across the screen.,solves the puzzle and shows it to the camera.,takes up a nail cube to adjust to the outro.,looks through holes around the ring and pounds the gate.\n9015,anetv_a370DDsJtBA,9157,A woman is seated behind a wooden table. She,A woman is seated behind a wooden table.,She,gold,are playing a game of curling.,is chopping down a piece of wood.,\"quickly moves color blocks on a puzzle, trying to solve it.\",is playing an instrument in front of a audience.\n9016,anetv_aa0MLYA8F7s,3982,Various pictures of gymnasts are seen followed by a woman performing a routine on a set of uneven bars. The woman,Various pictures of gymnasts are seen followed by a woman performing a routine on a set of uneven bars.,The woman,gold,continues flipping and jumping around and ends with her jumping down and waving to the camera.,continues jumping up and down on the table and ends by laying on the floor.,walks into the edge and performs a gymnastics routine between the bars and shower bars.,to climb up and score the bars several times in the end.\n9017,anetv_aa0MLYA8F7s,7597,She tosses and spins between two bars. She,She tosses and spins between two bars.,She,gold,she falls from the sideboard.,swings the iron over as he swings and knocks over various matches.,greets guards with a torch.,flips between them several times before dismounting.\n9018,anetv_aa0MLYA8F7s,7596,A woman is shown mounting a very high beam in a gym. She,A woman is shown mounting a very high beam in a gym.,She,gold,runs fast to spin the piece in the air.,tosses and spins between two bars.,performs several times in the middle of the mat.,\"moves with someone, who is standing on the edge of an board.\"\n9019,lsmdc1034_Super_8-8253,11110,People prepare to board a bus. A convoy,People prepare to board a bus.,A convoy,gold,leaves town lead by several military vehicles.,comes to a stop on an boarding range.,increases them their video.,reveals the orange car.\n9020,lsmdc1034_Super_8-8253,11109,Panicked families load their cars in preparation to evacuate. People,Panicked families load their cars in preparation to evacuate.,People,gold,prepare to board a bus.,drive through a back gate.,are desperately walking the horses down the path of the other tunnel.,sit in the top of photos of a helicopter where the sergeant looked from his brow.\n9021,lsmdc1034_Super_8-8253,11114,\"The convoy eventually arrives at Greenville Air Force Base. Inside, the civilians\",The convoy eventually arrives at Greenville Air Force Base.,\"Inside, the civilians\",gold,start a long dance routine.,disembark from the buses in a huge hanger.,race running the course as the mourners tank up a tunnel.,\"dive through the loading ramp onto a balcony, with the fast sailing markings on the opposite bank of the ghetto walls.\"\n9022,lsmdc1034_Super_8-8253,11113,The evacuation convoy heads out of town. People,The evacuation convoy heads out of town.,People,gold,walk patiently in the house.,are aboard one of the buses.,run down ambulances from the seats.,are in a small green theater.\n9023,lsmdc1034_Super_8-8253,11104,\"On screen the smoke is cleared and they see footage of a giant spider - like creature creeping out of a carriage. Hearing the siren, they\",On screen the smoke is cleared and they see footage of a giant spider - like creature creeping out of a carriage.,\"Hearing the siren, they\",gold,look around in confusion.,\"apparate in a dimly lit driveway, as a man reading the form.\",stop and look round at the porthole window.,move into the plains and maneuver that the brolly into the woods.\n9024,lsmdc1034_Super_8-8253,11107,\"Outside, there is chaos on the streets as people and military personnel hurry to and fro. People\",\"Outside, there is chaos on the streets as people and military personnel hurry to and fro.\",People,gold,walk down the street.,stand around as many others approach up to a news house.,are carrying someone through a gates.,is on the street carrying a broken glass.\n9025,lsmdc1034_Super_8-8253,11105,\"Hearing the siren, they look around in confusion. Someone\",\"Hearing the siren, they look around in confusion.\",Someone,gold,crashes into the mailbox in the break.,stops the projector and breaks the film off.,fills someone's basket with cash.,hangs on headphones then takes his phone out of and pulls the curtain aside.\n9026,lsmdc1034_Super_8-8253,11106,\"Someone stops the projector and breaks the film off. Outside, there\",Someone stops the projector and breaks the film off.,\"Outside, there\",gold,is no whale substance.,\"'s someone, another man named someone, watches him and time.\",is chaos on the streets as people and military personnel hurry to and fro.,'s a witches procession on a horse sitting in a corral.\n9027,lsmdc1034_Super_8-8253,11111,A convoy leaves town lead by several military vehicles. They,A convoy leaves town lead by several military vehicles.,They,gold,roll from four onto a small bridge.,\"pass a guard int the woods, building a new car station.\",walk away along the road to a neighborhood.,pass the military container lorries carrying the white cubes recovered from the crash site on their way into town.\n9028,lsmdc1034_Super_8-8253,11108,People walk down the street. They,People walk down the street.,They,gold,see a huge pool of smoke rising up above the town.,begin dancing a tight dance.,turn their back back to the sink.,take turns behind a bus.\n9029,anetv_XSDIekFXkv0,2814,\"Now, the boy stands on the trampoline facing the pool, then jumps, flips and dive in the water, then do the same but this time with the back facing the pool. At the end, the boy enters the trampoline running and flip in the air, then he\",\"Now, the boy stands on the trampoline facing the pool, then jumps, flips and dive in the water, then do the same but this time with the back facing the pool.\",\"At the end, the boy enters the trampoline running and flip in the air, then he\",gold,\"continues taking swimming kites on the ice opposite, sometimes taking off to the far board on the wakeboard.\",stands on the trampoline and flips and end diving in the water.,dismounts and flips off the mans saris.,\"jumps and flips out of the competition at record speed, and big jumps on their abdomen.\"\n9030,anetv_XSDIekFXkv0,2813,\"A person stands on his hands on a trampoline above a swimming pool, then the boy flips in the air and dives into the water. After, the boy\",\"A person stands on his hands on a trampoline above a swimming pool, then the boy flips in the air and dives into the water.\",\"After, the boy\",gold,\"puts his drink in the mouth, the guy hit the floor and lands in a green pool with sugar around him.\",\"stands on the trampoline with the back facing the pool, then jumps, flips and dive in the water.\",\"takes an item under the screen, then dives off the back in the pool.\",jumps into the raft once again as he returns and starts swimming again.\n9031,anetv_EwEV5_sHGJk,13526,A lady then begins to unfold and fold the cloth and talk about the pattern that is displayed. A white piece of paper that is between the cloth and ironing board is then folded over the fabric and the person,A lady then begins to unfold and fold the cloth and talk about the pattern that is displayed.,A white piece of paper that is between the cloth and ironing board is then folded over the fabric and the person,gold,works on an ironing board using.,is now outdoors into a sport hoodie.,begins to iron over it.,next to the vacuum lays her on the ground on the side of the chair.\n9032,anetv_EwEV5_sHGJk,16416,She cuts them to fit the pattern she is seeking. She,She cuts them to fit the pattern she is seeking.,She,gold,explains what she is doing in several steps.,does several bows to the candid.,wraps the stones under the nail strips.,watches them close to the wall to face every mice seated to the floor: she looks into the humble hole in the hardwood floor\n9033,anetv_EwEV5_sHGJk,16415,A woman is lying out materials on a board. She,A woman is lying out materials on a board.,She,gold,cuts them to fit the pattern she is seeking.,climbs into the tub and is cleaning the wooden floor.,is demonstrating how to use the ironing machine on a yellow paint brush.,talks to the camera while she pours water into container.\n9034,anetv_EwEV5_sHGJk,13525,A blue cloth with several large pink flowers is laying on a blue ironing board. A lady then,A blue cloth with several large pink flowers is laying on a blue ironing board.,A lady then,gold,\"pierces the man in red with a gold cloth, then grabs a piercing necklace.\",begins to unfold and fold the cloth and talk about the pattern that is displayed.,\"removes the logo, takes it off, and extends a handheld photo of product.\",closes the wax lid and puts it on the ironing board and cleaning off the work.\n9035,anetv_cAmGHiqmnaw,1614,A rodeo is shown as a man charges out of the gate to throw the rope around a baby calf. he,A rodeo is shown as a man charges out of the gate to throw the rope around a baby calf.,he,gold,is also showing how to lift a horse and carry fire throwing it.,takes a wing off and ties the cow dry.,jumps and a woman jumps onto him to do shallow flips.,is instantly successful and hops back on his horse.\n9036,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3464,As she pulls him in and starts to dance he sits again. Someone,As she pulls him in and starts to dance he sits again.,Someone,gold,\"chats with her colleagues, close to the piano as they walk to the restaurant where they sit with their drinks, staring somberly.\",nods then breaks into a flirtatious smile.,screams in relief and frustration.,\"goes over to someone's desk, spilling more onto his drink.\"\n9037,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3458,\"Shifting uneasily, someone tucks some hair behind one ear. One elbow on the bar, someone\",\"Shifting uneasily, someone tucks some hair behind one ear.\",\"One elbow on the bar, someone\",gold,runs a hand through his wavy hair.,pulls the first stranger down.,slides a small black hot cup over someone's hip.,drops his other hand and into a hawaiian crevasse.\n9038,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3459,\"One elbow on the bar, someone runs a hand through his wavy hair. He\",\"One elbow on the bar, someone runs a hand through his wavy hair.\",He,gold,\"caresses the side of the booth, his gaze steady on our brother.\",lifts it onto his head and marches it away.,props his head on it and gazes at someone with wistful eyes.,swims out of the stagger tank.\n9039,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3460,He props his head on it and gazes at someone with wistful eyes. He,He props his head on it and gazes at someone with wistful eyes.,He,gold,flips the newspaper off her aspiring and plants a tender kiss on his cheek.,reaches for the map.,offers a restrained smile.,raises his nose.\n9040,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3462,\"As she gently sways back and forth in her seat, someone turns away. Someone\",\"As she gently sways back and forth in her seat, someone turns away.\",Someone,gold,angles his floating stick.,slouches and picks up the bottle.,slides out of her chair.,leans toward someone with a piece of drift.\n9041,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3465,\"Someone nods then breaks into a flirtatious smile. Closing her eyes, she\",Someone nods then breaks into a flirtatious smile.,\"Closing her eyes, she\",gold,begins to dance in front of someone.,lifts her brow and shuts her eyes.,gives a puzzled look.,takes out the pills and shakes them.\n9042,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3463,\"Someone accepts, then rises from his chair. Gazing into his eyes, she\",\"Someone accepts, then rises from his chair.\",\"Gazing into his eyes, she\",gold,opens her passenger door.,glances up at him.,lifts his hand and spins under his arm.,shifts a hard stare.\n9043,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3461,He offers a restrained smile. She,He offers a restrained smile.,She,gold,gives him an annoyed look.,pats him on the cheek.,stands up and looks at him.,scoots down with her feet.\n9044,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3466,\"Closing her eyes, she begins to dance in front of someone. She sways sensually and the artist\",\"Closing her eyes, she begins to dance in front of someone.\",She sways sensually and the artist,gold,fixes her with a kiss.,gives a longing look.,starts making her way away from the table and toward the house.,gets ready to play.\n9045,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3467,\"She sways sensually and the artist gives a longing look. In class, someone\",She sways sensually and the artist gives a longing look.,\"In class, someone\",gold,takes off his jacket and takes it out.,walks down the corridor and down a hall.,stares out a window at a neighboring building.,heads down a flight of stairs.\n9046,lsmdc3067_THE_ART_OF_GETTING_BY-32419,3468,\"As his English teacher collects the students' papers, she stops at his desk and touches his shoulder. She\",\"As his English teacher collects the students' papers, she stops at his desk and touches his shoulder.\",She,gold,starts leaving his clapboard cottage.,shows her name on the screen.,notes his distant expression.,stares at her blankly.\n9047,anetv_GycRQhoHnXw,15355,The woman dance with one another performing the same routine and one woman dancing in front. The women,The woman dance with one another performing the same routine and one woman dancing in front.,The women,gold,continue to play together and break dance and end by stopping and dancing with an audience.,continue dancing with one another and end by walking around.,continue to follow their routine performing many martial arts moves while taking claps.,dance around one another and end by bowing and falling all around the stage.\n9048,anetv_U4ua-VD7hNM,17302,A person is seen laying on a long wire and walks his way all the way to end. He,A person is seen laying on a long wire and walks his way all the way to end.,He,gold,swings all around the equipment to the camera and ends by walking back in the yard while watching him object.,attempts to flip across the string again but fails and hurts himself.,continues to walk around the end and leads into pictures of the man working out.,looks out the window as well as signing papers and walking away.\n9049,anetv_U4ua-VD7hNM,17303,He attempts to flip across the string again but fails and hurts himself. Several more men,He attempts to flip across the string again but fails and hurts himself.,Several more men,gold,walk across the panel during the quick jumps with more forces that tug of gamblers.,are seen watching from the sides when one slides across again.,tether him and fall around one another and come over.,\"dismounts, keep struggle, and tripping to their shirt.\"\n9050,lsmdc0029_The_Graduate-64107,17483,His father stands just outside the screen door. Someone's arms,His father stands just outside the screen door.,Someone's arms,gold,come into view and pull the mask down.,stand in a hall ahead of them.,spread loosely around his shoulders.,wrestle around his fists and flexes his jaw.\n9051,lsmdc0029_The_Graduate-64107,17486,Everything is slightly distorted through the glass. Someone's hand,Everything is slightly distorted through the glass.,Someone's hand,gold,\"is moving, pulling it free, droopy a little out of someone 'ankle.\",\"comes off thin and, looking over his shoulder, polishing it with a rag and studying it.\",comes up again with the breathing apparatus in it.,\"hovers over the stone sphere, and displays a piece of art and a electric portrait of christ in a temple.\"\n9052,lsmdc0029_The_Graduate-64107,17489,We move down the steps and into the shallow end of the pool. Someone,We move down the steps and into the shallow end of the pool.,Someone,gold,pulls down a framed white plate.,jumps down in the back of a white car.,\"is moving along the side of the pool, motioning toward us to come down to the deep end.\",watches his rage around him.\n9053,lsmdc0029_The_Graduate-64107,17484,Someone's arms come into view and pull the mask down. We,Someone's arms come into view and pull the mask down.,We,gold,can be seen shooting the glasses.,inserts a finger into someone's body.,\"see the dark sideline, stand around each other in mid - shooting.\",are now looking through the mask as we move forward down the hall.\n9054,lsmdc0029_The_Graduate-64107,17485,We are now looking through the mask as we move forward down the hall. Everything,We are now looking through the mask as we move forward down the hall.,Everything,gold,is slightly distorted through the glass.,draws back in action.,\"exercise on the platform, waiting for them to go on.\",goes over to the garage and closes the bedroom door on the right.\n9055,lsmdc0029_The_Graduate-64107,17491,He joins someone at the far end of the pool. They both,He joins someone at the far end of the pool.,They both,gold,lie in semi circle in each other's arms.,drink as they arrive to find different apartment locations.,nail their own wands then pins them with their hands.,begin to motion us toward them.\n9056,lsmdc0029_The_Graduate-64107,17490,\"Someone is moving along the side of the pool, motioning toward us to come down to the deep end. He\",\"Someone is moving along the side of the pool, motioning toward us to come down to the deep end.\",He,gold,runs through the waves.,joins someone at the far end of the pool.,breathes in a calm glass of water.,looks over as if to make a decision.\n9057,lsmdc0029_The_Graduate-64107,17495,We surface again and pan around for a last look. We,We surface again and pan around for a last look.,We,gold,go under and sink to the bottom of the pool.,begin to go again on the door.,see one different man holding an item as the boy gets a tire he is tighter.,see a man in the distance entering the window.\n9058,lsmdc0029_The_Graduate-64107,17492,They both begin to motion us toward them. We,They both begin to motion us toward them.,We,gold,see the glass wall that is using does.,get to the deep end of the pool.,have a hard time.,bends down to hug hands.\n9059,lsmdc0029_The_Graduate-64107,17487,Someone's hand comes up again with the breathing apparatus in it. We,Someone's hand comes up again with the breathing apparatus in it.,We,gold,touches his hand and grasps it tight.,separate through a box of fire.,\"mind briefly slowly moves to the open door, starts taking the keys of someone's phone.\",move out of the door and toward the pool.\n9060,lsmdc0029_The_Graduate-64107,17488,\"Someone is running back and forth, clapping his hands and delivering his now soundless pitch. We\",\"Someone is running back and forth, clapping his hands and delivering his now soundless pitch.\",We,gold,\"zoom car over to him, taking out his ring.\",move down the steps and into the shallow end of the pool.,continues along the dark outside and someone leaves the room.,pushes down and starts to throw himself out.\n9061,anetv_3L0MnbQkLWM,321,The little baby walks away from the hop scotch drawing and then she runs back and plays. She,The little baby walks away from the hop scotch drawing and then she runs back and plays.,She,gold,has to keep trying over and over again because she keeps messing up.,walk to the foot again while smiling and pointing at the vent then they all stop to look at the camera.,continues playing with the performing dog.,talks when she's started and shakes the trunk balls excitedly as they go into a store and begin to dance.\n9062,anetv_3L0MnbQkLWM,13901,A young girl stands in the drive way. She,A young girl stands in the drive way.,She,gold,takes beer and walks away.,starts backing up toward the street.,\"walks above the pole, then rides throughout a gym.\",lifts the girl into a swing.\n9063,anetv_3L0MnbQkLWM,13902,She starts backing up toward the street. She then,She starts backing up toward the street.,She then,gold,looks at the cab camera driver's license.,stops and turns the dial.,runs forward toward the camera.,pans back to the lights as she plays.\n9064,anetv_R7QwxoVTtE0,16028,A woman is seen speaking to the camera while holding various objects in her hands and begins spraying down a window in front of her. The woman,A woman is seen speaking to the camera while holding various objects in her hands and begins spraying down a window in front of her.,The woman,gold,wipes down the window with a rag as well as a scraper and continues to look back and speak to the camera.,continues combing the hair and moving her hair around the sides.,continues to iron clothes and speaking to the camera while speaking to the camera.,continues spinning and walking around the machine while moving her body around and ends by looking away from the camera.\n9065,anetv_IRmk1AM-yJE,10123,Two people are seen playing a game of pool while others watch on the side and conversation. The men,Two people are seen playing a game of pool while others watch on the side and conversation.,The men,gold,continue hitting the ball around the table and moving around.,continue playing a game of crochet with one another while continuing to speak to one another.,continue speaking to one another while more people to watch on the sides.,continues to play and ends by passing the ball to other players and the screen.\n9066,anetv_IXUh06YCtjw,498,They sit the mug down on a bench. A dog,They sit the mug down on a bench.,A dog,gold,comes on to lift up a huge potato.,runs up and starts drinking from the mug.,stands upright behind the dwarf.,runs into the other side.\n9067,anetv_IXUh06YCtjw,9753,\"A hand holds the handle of a white cup of coffee in the air and then sets it down on a wooden table, outside, in a dirt and grass covered area. A dog\",\"A hand holds the handle of a white cup of coffee in the air and then sets it down on a wooden table, outside, in a dirt and grass covered area.\",A dog,gold,is making circles outside the camera area and a view through the city.,rides a cart on a dirt station.,moves past a wooden door of the house with a pleasant container filled with paint.,appears on the table and begins to drink the coffee from the cup.\n9068,anetv_IXUh06YCtjw,497,A person is standing outside holding a coffee mug. They,A person is standing outside holding a coffee mug.,They,gold,are lining a game of balls in their hand.,orange and orange juice are on a table and adds a cup to it.,are then putting glasses out on a table.,sit the mug down on a bench.\n9069,anetv_Ufki4AjZHFI,11466,He walks over to the side of the road. He then,He walks over to the side of the road.,He then,gold,rearranges the rocks as he lowers.,bends down to try hard again.,lifts his feet up and down as if in preparation of running.,speeds down the bridge.\n9070,anetv_Ufki4AjZHFI,11465,A young man is shown on a road wearing stilts. He,A young man is shown on a road wearing stilts.,He,gold,buries his face in his hands.,walks over to the side of the road.,does a jump onto a stroller in front of him.,does a lot of stunts on a blue bar which he jumps and jumps.\n9071,anetv_Ufki4AjZHFI,11467,He then lifts his feet up and down as if in preparation of running. The video,He then lifts his feet up and down as if in preparation of running.,The video,gold,ends with the text now and shows the process outside.,ends in the man jumping off the bridge of the crowd several times.,begins to complete the leg pushed up and moves as far as he can.,ends as the person recording tilts the camera and covers the lens.\n9072,anetv_u3B3M17akWU,3876,A woman is seen sitting down holding an ice cream while looking at the camera. She,A woman is seen sitting down holding an ice cream while looking at the camera.,She,gold,continues to eat the ice cream as the camera pans around her and watching her eat.,begins cutting the hair and ends by cutting it off very well at the same time.,shows ingredients in her hands while the girl brushes her teeth and speaks to camera.,continues to play and ends by speaking to the camera and holding up her hands as well as all watch them.\n9073,lsmdc3083_TITANIC2-38995,5100,\"The mustached foreman turns a wheel connected to several steam gauges. In the smoky boiler room, men covered in soot\",The mustached foreman turns a wheel connected to several steam gauges.,\"In the smoky boiler room, men covered in soot\",gold,turns some troopers from a bank.,passageway up the bank.,formed up bikes.,shovel coal into large furnaces.\n9074,lsmdc3083_TITANIC2-38995,5105,\"Several yards behind them, Captain someone stands on the uppermost deck outside the pilothouse. first Officer someone\",\"Several yards behind them, Captain someone stands on the uppermost deck outside the pilothouse.\",first Officer someone,gold,crawls through a hole at the end of the alley.,eyes the shot of someone's head on a sofa.,steps up beside him.,joins a staffer with other villagers.\n9075,lsmdc3083_TITANIC2-38995,5107,\"On the prow, someone points towards something below. Other dolphins\",\"On the prow, someone points towards something below.\",Other dolphins,gold,recover from the boat.,swim down a wooden corridor.,join the first one.,fly into the air.\n9076,lsmdc3083_TITANIC2-38995,5102,A needle rises on a steam pressure gauge. Pumping pistons,A needle rises on a steam pressure gauge.,Pumping pistons,gold,move faster and faster.,\"move faster, faster and quicker.\",curl up and down an elevated computer.,arrives at the bar.\n9077,lsmdc3083_TITANIC2-38995,5106,\"First Officer someone steps up beside him. On the prow, someone\",First Officer someone steps up beside him.,\"On the prow, someone\",gold,catches two cricket leaders with one.,hands her to someone.,points towards something below.,stares at richard parker who leans in an theirs expression.\n9078,lsmdc3083_TITANIC2-38995,5108,The dolphins zoom through the clear water like zigzagging torpedoes. Someone,The dolphins zoom through the clear water like zigzagging torpedoes.,Someone,gold,goes down the road at screaming speed.,sinks to the surface.,smiles as he gazes down at the dolphins.,eyes her discreetly as she reaches the open gate.\n9079,lsmdc3083_TITANIC2-38995,5112,\"Someone raises his arms over his head. With his arms spread, someone\",Someone raises his arms over his head.,\"With his arms spread, someone\",gold,gazes off after his ahead surfer.,lifts himself up on his elbows.,tilts his head back and closes his eyes.,\"stiffens upwards, causing his bullet's spin faster.\"\n9080,lsmdc3083_TITANIC2-38995,5109,Someone smiles as he gazes down at the dolphins. He,Someone smiles as he gazes down at the dolphins.,He,gold,\"faces straight up from the canvas, his eyes fixed on the stars.\",covers his mouth and nods.,sips his drink while gazing out to sea.,\"trembles with the misty veil, then flies past someone to the surface.\"\n9081,lsmdc3083_TITANIC2-38995,5111,\"Grabbing on to a cable, someone stands on the railing at the ship's prow. Someone\",\"Grabbing on to a cable, someone stands on the railing at the ship's prow.\",Someone,gold,rides toward the house.,raises his arms over his head.,looks on as the truck sinks below the water surface.,gets in and climbs onto the railing.\n9082,lsmdc3083_TITANIC2-38995,5103,\"The Titanic's three propellers churn up clouds of bubbles as they spin. On deck, someone and someone\",The Titanic's three propellers churn up clouds of bubbles as they spin.,\"On deck, someone and someone\",gold,run to the prow and lean against the railing.,swap indicating the takeuchi.,pinned the curtain drop to the floor!,climb the rock ship.\n9083,lsmdc3083_TITANIC2-38995,5104,\"On deck, someone and someone run to the prow and lean against the railing. Wind\",\"On deck, someone and someone run to the prow and lean against the railing.\",Wind,gold,\"the unicorn's head, he easily lifts the door shut behind.\",the water reaches their thighs.,ruffles their hair as they lean forward and stare straight down from the front of the ship.,stop in the pit.\n9084,lsmdc3083_TITANIC2-38995,5099,Someone strides into the wheelhouse. Someone,Someone strides into the wheelhouse.,Someone,gold,is scattering fishes under a sheet.,sits on the opposite computer.,places two soup plates.,pulls a telegraph lever to ahead full.\n9085,lsmdc3083_TITANIC2-38995,5101,\"In the smoky boiler room, men covered in soot shovel coal into large furnaces. A needle\",\"In the smoky boiler room, men covered in soot shovel coal into large furnaces.\",A needle,gold,fires a small pump action shotgun.,cuts down on the skin of a man's skull.,is chained to the floor with a gun being loaded on the umbrella.,rises on a steam pressure gauge.\n9086,lsmdc3083_TITANIC2-38995,5110,\"In the boiler room, men dump wheelbarrows of coal beside stokers who shovel the fuel into furnaces. Grabbing on to a cable, someone\",\"In the boiler room, men dump wheelbarrows of coal beside stokers who shovel the fuel into furnaces.\",\"Grabbing on to a cable, someone\",gold,\"pulls through the ruined hatch, which spreads.\",\"jogs out of view, prying the mechanical buildings.\",stands on the railing at the ship's prow.,smashes the petal into full bolts.\n9087,anetv__bSRAXNa5PY,9707,We see a man dive into a pool in slow motion. We,We see a man dive into a pool in slow motion.,We,gold,see the skateboarder's face.,see the closing scene from the scene ending.,see the judges giving the man his score and talking to him.,see the diver put on a boat with white lights behind it.\n9088,anetv__bSRAXNa5PY,9711,We see the crowd stand and clap. we,We see the crowd stand and clap.,we,gold,see two men fiddle with the vacuum cleaners.,see the girl point at another shirt and end her bow with a red smile.,see men clapping.,see the final score cards for all the contestants.\n9089,anetv__bSRAXNa5PY,9709,We see a lady clapping. We,We see a lady clapping.,We,gold,follow them with several chairs.,see the man spin and get players.,see the diver being interviewed.,see the reporter talk and smokes.\n9090,anetv__bSRAXNa5PY,9708,We see the judges giving the man his score and talking to him. We,We see the judges giving the man his score and talking to him.,We,gold,see an ad for the video.,see a lady clapping.,see a title screen.,see the man perform in slow motion.\n9091,anetv__bSRAXNa5PY,9710,We see the diver being interviewed. We,We see the diver being interviewed.,We,gold,see the opening screen with a variety of people doing basketball being interviewed and a title return.,see the ending screen.,see a man close on his father's head and left smiling to the camera.,see the crowd stand and clap.\n9092,anetv_j82E082KJSw,14907,Then the green and yellow team plays against the blue team. The red team,Then the green and yellow team plays against the blue team.,The red team,gold,is back to play with the green and yellow team.,hits the puck and the player blocks her goal.,cheers the winner on the back and ends like a dancer in a stage.,\"scores a goal into a goal, but continuously, duel fail.\"\n9093,anetv_j82E082KJSw,14909,Then the blue team returns to play against the green and yellow team. The volley ball game,Then the blue team returns to play against the green and yellow team.,The volley ball game,gold,\"is shown again in slow motion, closing its thick balls.\",falls still as the people continue to play.,continues as the red team and blue team alternately play with their opponents.,returns in the end.\n9094,anetv_j82E082KJSw,14905,The green and yellow team is playing against the red team. The players,The green and yellow team is playing against the red team.,The players,gold,cheer the team up.,dive up high to throw the ball across the net to their opposing team.,turn each other down once.,dressed in black begin a match.\n9095,anetv_j82E082KJSw,14908,The red team is back to play with the green and yellow team. Then the blue team,The red team is back to play with the green and yellow team.,Then the blue team,gold,returns to play against the green and yellow team.,learned that not life.,is ready but one teams scores.,beats the ball to the third kicks goal left at one time.\n9096,anetv_j82E082KJSw,14904,There are two teams playing volley ball in an indoor stadium in front of a large number of spectators. The green and yellow team,There are two teams playing volley ball in an indoor stadium in front of a large number of spectators.,The green and yellow team,gold,gets in a blue pose and enters a performance behind the bar.,\"ends the shot to a athletes and a lot of people sunbathing with the coach, also spinning.\",is playing against the red team.,are on a concrete court as they pass a disc.\n9097,anetv_qwBFQf5STBA,12368,A colorful screen along with colorful text appears and it has instructions to Finish with topcoat And now you're an invincible Nyan zebra!!. The finished nails are modeled and shown at different angles and a colorful screen with colorful letters appear and it say's Don't forget your tail! and then it,A colorful screen along with colorful text appears and it has instructions to Finish with topcoat And now you're an invincible Nyan zebra!!.,The finished nails are modeled and shown at different angles and a colorful screen with colorful letters appear and it say's Don't forget your tail! and then it,gold,is almost a silly path to play it.,ends the scene ends with a long performance.,\"shows the person holding a furry pink and black, long tail.\",lights appear and a man starts his big song on the back and goes in to the group the artist.\n9098,anetv_qwBFQf5STBA,12367,A still shot of six different solid colors of nail polish are shown and some are rounded bottles and some are square bottles. The demonstration begins and it,A still shot of six different solid colors of nail polish are shown and some are rounded bottles and some are square bottles.,The demonstration begins and it,gold,stops in front of the men and lemons that are shown directly ahead.,shows someone is sponge painting various colors onto a long white painted nail.,includes a silver dragon using red nails.,shows the ending slap and logo.\n9099,anetv_0n3VRoYYYGU,2298,A man is seen speaking to the camera and leads into several shots of the man cutting food and cooking. He,A man is seen speaking to the camera and leads into several shots of the man cutting food and cooking.,He,gold,moves his hands around and continues decorating the wood.,continues cutting down the food as well as a campfire on the pan and spoon table.,hops and pushes it along it followed by another man mixing a glass of food and walking in.,is shown speaking again and begins showing how to sharpen a knife using a machine.\n9100,anetv_0n3VRoYYYGU,2588,A man demonstrates how to use a electric knife sharpener to sharpen a knife and shows how sharp the knife is after being sharpened by slicing tomatoes. A man,A man demonstrates how to use a electric knife sharpener to sharpen a knife and shows how sharp the knife is after being sharpened by slicing tomatoes.,A man,gold,stands in front of an electric knife sharpener and points to it while talking to the camera.,stabs the tip of an with silver fingernail with sharpener.,starts sharpening the knife's sharpener.,is standing on his board showing chopped trunks' arrows in a red counter full of mulch.\n9101,anetv_0n3VRoYYYGU,2589,A man stands in front of an electric knife sharpener and points to it while talking to the camera. The man,A man stands in front of an electric knife sharpener and points to it while talking to the camera.,The man,gold,takes a blade and throws it on a small box.,sharpens the knife on a sharpener and sands down the foosball lane.,begins to sharpen knives after which he proceeds to cut a tomato to exhibit how sharp the knives are.,finishes and starts to cut the blade.\n9102,anetv_0n3VRoYYYGU,2299,He is shown speaking again and begins showing how to sharpen a knife using a machine. He then,He is shown speaking again and begins showing how to sharpen a knife using a machine.,He then,gold,cuts up a tomato around the edges and places the knife down and pointing to the machine.,\"pours on his shoes, kneeling behind a sharpener and talking to the camera and then holds it up in his hand.\",lays the tire on the bike and talks to the camera the whole time.,moves them around while and sharpening off a piece of wood.\n9103,lsmdc1017_Bad_Santa-7386,12302,Someone still looks seedy but has at least bothered to put his white beard on. He,Someone still looks seedy but has at least bothered to put his white beard on.,He,gold,is squinting in a full - moon mirror.,is joined by an iron pants and cap.,has long hair and long blonde curly hair which is trimmed in the first stroke.,shoves the boy away.\n9104,lsmdc1017_Bad_Santa-7386,12304,\"Someone pulls down his beard and swigs from a bottle of grog, then examines his pants. His little helper\",\"Someone pulls down his beard and swigs from a bottle of grog, then examines his pants.\",His little helper,gold,\"packs an empty bucket into a small, plastic bag.\",shakes his head despairingly.,looks up from the report.,is considerably disturbed by the same sound.\n9105,lsmdc1017_Bad_Santa-7386,12305,His little helper shakes his head despairingly. The security guard,His little helper shakes his head despairingly.,The security guard,gold,sweeps the blade through a young man.,holds up the boy's feet behind someone.,follows him as the group meets two sisters.,says farewell to the last shoppers.\n9106,lsmdc1017_Bad_Santa-7386,12303,\"He shoves the boy away. Little later, someone\",He shoves the boy away.,\"Little later, someone\",gold,holds him out as someone.,wets himself as his little helper wanders over.,sits at a setting door labeled.,sits in his sedan with his front door open.\n9107,lsmdc1009_Spider-Man3-76516,6370,\"He drops a coin in the slot, sighs, and hangs up. His landlord\",\"He drops a coin in the slot, sighs, and hangs up.\",His landlord,gold,flips a pencil then compares it to someone.,climbs the edge of a high roof.,flips open a sketchbook and hands him a guitar.,\"steps out of his flat, peeling an orange.\"\n9108,lsmdc1009_Spider-Man3-76516,6369,Someone picks up a payphone in the hallway outside his room. He,Someone picks up a payphone in the hallway outside his room.,He,gold,turns and walks by.,crosses to a door and climbs into bed as it uses.,places a container of cleanser on the mantelpiece.,\"drops a coin in the slot, sighs, and hangs up.\"\n9109,anetv_g0ns-bQ4PjE,387,The lady in pink is belly dancing on the stage. The man,The lady in pink is belly dancing on the stage.,The man,gold,clapped her hand and hugs her hands.,is painting a white line in the crowd.,demonstrates the hoop again.,\"is playing a keyboard, while the other man is playing the drum.\"\n9110,anetv_g0ns-bQ4PjE,388,\"The man is playing a keyboard, while the other man is playing the drum. The lady\",\"The man is playing a keyboard, while the other man is playing the drum.\",The lady,gold,walks to the back of the man speaking and picks up a glass of champagne.,\"turned around, swirling around the stage and shake her hips.\",finishes and walks in it as the band plays a song from the stage.,is playing the saxophone in front of him playing with his wand.\n9111,anetv_hltWAq_Odxk,2234,Two guys are playing wrestling in front of an audience. A professional wrestler,Two guys are playing wrestling in front of an audience.,A professional wrestler,gold,throws a shot put in the distance.,starts to lift a shirtless wrestler.,falls off the table and gives a ball to the man.,makes his face as he jumps onto a roof.\n9112,anetv_hltWAq_Odxk,2236,The wrestler lifts the shirtless wrestler over his head and carries him on his back. The wrestler,The wrestler lifts the shirtless wrestler over his head and carries him on his back.,The wrestler,gold,throws the shirtless wrestler on the wrestling box's floor.,lifts someone over the head and punches it into his chest.,lets out an uneasy sigh.,stands up and shakes his head.\n9113,anetv_hltWAq_Odxk,2237,The wrestler throws the shirtless wrestler on the wrestling box's floor. The shirtless wrestler,The wrestler throws the shirtless wrestler on the wrestling box's floor.,The shirtless wrestler,gold,slams the wrestler over to the floor.,throws another wrestler on the mat.,lays motionless on the floor.,climbs a flight of stairs and leaves.\n9114,anetv_hltWAq_Odxk,2235,A professional wrestler starts to lift a shirtless wrestler. The wrestler,A professional wrestler starts to lift a shirtless wrestler.,The wrestler,gold,lifts the shirtless wrestler over his head and carries him on his back.,waves his hand and holds it aloft.,lifts the kettle wrestler over his face.,lifts their frisbees and prepares to play them.\n9115,anetv_hltWAq_Odxk,16923,Two wrestlers are seen holding one another in a ring while a ref stands behind them. One man,Two wrestlers are seen holding one another in a ring while a ref stands behind them.,One man,gold,picks up the other and throws him onto the ground.,throws a ball around the man on the side and cuts in wearing a cover behind him.,pushes his back on the wooden court.,throws a shot put while other boys watch on the side.\n9116,anetv__cZD6JN-SYg,18567,Various pictures of men are shown in the beginning of the video followed by several lines of text shown. The men,Various pictures of men are shown in the beginning of the video followed by several lines of text shown.,The men,gold,ride through the smoke as well as playing a game of beach ball.,jumps in different angles and fall down several times followed with more clips of people playing again.,are then seen kicking soccer balls into a goal while they save some and the goalie blocks.,are then shown playing hockey with one another as well as being interviewed and some celebrate.\n9117,lsmdc3064_SPARKLE_2012-4498,181,\"On stage, someone smiles at someone. He\",\"On stage, someone smiles at someone.\",He,gold,blows her a kiss.,gazes down at an arrangement of marshmallows then grins.,gazes down at the lights on the rounded stage.,returns his earnest gaze.\n9118,lsmdc3064_SPARKLE_2012-4498,183,The young singer songwriter faces the cheering audience. Someone,The young singer songwriter faces the cheering audience.,Someone,gold,\"leans her head back, spreads her arms and drinks in the applause.\",sits a few paces away.,plays on a stage.,\"kisses her sister, facing him with her mouth pressed against her own.\"\n9119,lsmdc3064_SPARKLE_2012-4498,182,He blows her a kiss. the young singer songwriter,He blows her a kiss.,the young singer songwriter,gold,walks slowly through an energy office.,\"sits facing her pet world, with orange and arrow, syrup on her hips.\",catches herself in the back of the bottle.,faces the cheering audience.\n9120,anetv_1926p23ooUM,13034,He bounces the ball as he runs through the orange cones. He,He bounces the ball as he runs through the orange cones.,He,gold,makes baskets as he weaves around the course.,hits the balls with his feet.,turns the back of the cow in his grasp and heads away.,gets it all the way down.\n9121,anetv_1926p23ooUM,12725,A boy is dribbling a basketball around orange cones. He,A boy is dribbling a basketball around orange cones.,He,gold,starts to throw a ball at a dart board.,throws various objects at the crowd.,picks up a puck and throws it to the floor.,shoots and makes a basket several times.\n9122,anetv_1926p23ooUM,13033,A man is playing basketball inside a gym. He,A man is playing basketball inside a gym.,He,gold,bounces the ball as he runs through the orange cones.,goes running a treadmill with a small makeup razor.,is walking at a rope.,is riding a board on a large bench net with people behind him watching.\n9123,anetv_cYMweZa5J1I,1725,Guys stand or sit around their dirt bikes. Guys,Guys stand or sit around their dirt bikes.,Guys,gold,are riding their dirt bikes.,forecourt kick other cars.,battles the goalie on the field and man kicks the ball as he runs.,enter a sreet and lead into men performing a paintball.\n9124,anetv_cYMweZa5J1I,1726,Guys are riding their dirt bikes. A guy,Guys are riding their dirt bikes.,A guy,gold,takes off his upper body armor while sitting on his dirt bike.,is then jumping the finish line from doing the rope jumping.,rides a bike bike.,\"lifts his bike to get off the truck, and lowers another donut.\"\n9125,lsmdc1039_The_Queen-88077,2701,Someone gazes at prince someone for a moment and then turns away. Someone,Someone gazes at prince someone for a moment and then turns away.,Someone,gold,sips some drink from a glass.,picks up the snitch and winds up at the table.,pokes someone with the dog.,turns onto a cash television.\n9126,lsmdc1039_The_Queen-88077,2702,\"Tuesday, people walk along. Someone\",\"Tuesday, people walk along.\",Someone,gold,digs a shelter beneath the counter.,sketches a storage bike for different fund settings.,\"rocks past, chattering over and over, landing on elderly women.\",indicates a nearby room.\n9127,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60067,17836,The hobbits suddenly stop and unstrap their knapsacks. Someone,The hobbits suddenly stop and unstrap their knapsacks.,Someone,gold,\"examines the length of the parapet, then faces someone directly at someone.\",\"staggers straight, italian and extremely bored.\",\"stops, casts a glance back at someone.\",stares at someone's words with fear.\n9128,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60067,17835,\"People, and someone march through a gloomy, overgrown forest. Someone\",\"People, and someone march through a gloomy, overgrown forest.\",Someone,gold,follows someone to the door.,watches uneasily as someone moves off into the cover of the trees.,\"follows close behind, looking at the mass situated above the city's bottom.\",\"comes down the steps onto a staircase by a busy telephone station and steals, clicking clips.\"\n9129,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60067,17837,\"Someone stops, casts a glance back at someone. Someone\",\"Someone stops, casts a glance back at someone.\",Someone,gold,sit down at his own booth.,waits outside by the rear window.,\"stares at someone blankly, then turns away, shaking his head.\",holds his badge to his ear.\n9130,anetv_MubE2kOK6z0,3852,The ballerina dips on one foot. The lady,The ballerina dips on one foot.,The lady,gold,begins preparing her stupor.,speaks to the camera.,bangs her fingers nails on the floor.,stands on the bench and looks around.\n9131,anetv_MubE2kOK6z0,3851,We see a lady giving the ballerina instructions as she dips on the bar. The ballerina,We see a lady giving the ballerina instructions as she dips on the bar.,The ballerina,gold,dips on one foot.,dances in the ladies to stop and we see a woman speak to the camera.,moves and see the end of the talks.,moves in slow motion.\n9132,anetv_MubE2kOK6z0,16076,She is then shown standing next to a ballerina. They,She is then shown standing next to a ballerina.,They,gold,walks outdoors at a lake.,start training on a surface and talking.,continue walking by the men watching.,demonstrate some ballet moves.\n9133,anetv_MubE2kOK6z0,3850,A ballerina dances across the room. We,A ballerina dances across the room.,We,gold,come on the screen on a black screen.,see a lady giving the ballerina instructions as she dips on the bar.,are now standing around.,are on the mat!\n9134,anetv_MubE2kOK6z0,3849,We see an opening title screen. A ballerina,We see an opening title screen.,A ballerina,gold,is underwater in scuba gear.,dances across the room.,is playing on an open field.,sits in a raft with two men.\n9135,anetv_MubE2kOK6z0,3854,We see the ballerina on pointe and down and up again. We then,We see the ballerina on pointe and down and up again.,We then,gold,see the lady ironing again.,see the ending screen.,see another close up of vacuum.,see the ending title screen for the video.\n9136,lsmdc1062_Day_the_Earth_stood_still-100887,9833,He picks up a piece of chalk and also starts to write. Someone,He picks up a piece of chalk and also starts to write.,Someone,gold,pauses to look at his figures as someone watches them both curiously.,looks away for a moment moment.,\"flips the book off and pushes it to find his fallen arms, just a few inches apart.\",holds back his pen and assignment in front of himself as he can.\n9137,lsmdc1062_Day_the_Earth_stood_still-100887,9832,\"A gray - haired man watches as he works, then approaches him. He\",\"A gray - haired man watches as he works, then approaches him.\",He,gold,climbs into a couch and tilts his head with his smile.,\"holds his hand to his thigh, searching for someone.\",\"smears a dagger against someone's forehead, then tilts his head and turns it in his direction.\",picks up a piece of chalk and also starts to write.\n9138,lsmdc1062_Day_the_Earth_stood_still-100887,9829,Someone turns away looking worried and approaches someone. She,Someone turns away looking worried and approaches someone.,She,gold,strokes the boy's hair affectionately.,picks up both guns.,finds someone lean out of the door.,\"walks towards the stage, lost in thought.\"\n9139,lsmdc1062_Day_the_Earth_stood_still-100887,9828,He erases a highly complex formula. Someone,He erases a highly complex formula.,Someone,gold,grabs the ball as he destroys.,turns away looking worried and approaches someone.,drinks four more each time.,\"shoots a graphic explaining how you will be, but criss skates and the different ways to demonstrate different cardio techniques.\"\n9140,lsmdc1062_Day_the_Earth_stood_still-100887,9831,Someone writes his own formula on the chalkboard. A gray - haired man,Someone writes his own formula on the chalkboard.,A gray - haired man,gold,pulls the door closed and starts to go into the office where someone is nodding lulls.,\"watches as he works, then approaches him.\",\"studies him, then strips.\",runs through the entrance.\n9141,anetv_62s1ZSNLJ6g,15082,A shoe is shown broken into pieces inside a bathtub. A person,A shoe is shown broken into pieces inside a bathtub.,A person,gold,is kicking around in the tub water.,sands a floor in a room.,shakes an object down underneath.,push a rag down a table.\n9142,anetv_62s1ZSNLJ6g,9955,A person is standing in a bath tub. They,A person is standing in a bath tub.,They,gold,are in a room on a wash floor and through metal towels.,start polishing the faucet with soap.,take their shoes off and put them under the faucet.,\"are brushing down on the sink, wiping the sink.\"\n9143,anetv_62s1ZSNLJ6g,15083,A person is kicking around in the tub water. He,A person is kicking around in the tub water.,He,gold,is wearing black pants and gloves under his legs.,helps her to the floor.,throws a calf onto the ground and runs after it.,\"tries to wash his shoes by kicking them in the water, the soles coming out.\"\n9144,anetv_NLuNMeYBeoc,10723,A man grabs onto parallel bars. He,A man grabs onto parallel bars.,He,gold,swings and hits the pinata several times.,does a gymnastics routine on the balance beam.,does a gymnastics routine on a balance beam.,jumps into the air and flips his body around.\n9145,anetv_NLuNMeYBeoc,10725,A coach approaches him and they speak temporarily. He,A coach approaches him and they speak temporarily.,He,gold,steps outside in the long hallway.,\"takes, smiles and cheers.\",puts on his focused resignedly.,jumps back on the bars and performs more flips.\n9146,anetv_NLuNMeYBeoc,10724,He jumps into the air and flips his body around. He,He jumps into the air and flips his body around.,He,gold,jumps off the bars to powder his hands.,does several flips and then grabs his backpack.,falls into the water from a long distance in it.,\"laughs softly, and lands on one knee as the plane stops.\"\n9147,anetv_NLuNMeYBeoc,18969,\"He flips and hand stands, and turns several times. He\",\"He flips and hand stands, and turns several times.\",He,gold,lifts himself up over the pole and lands on a mat.,gets off the step in return to the instructor for the dance.,goes running to stick and break it down.,dismounts and raises his arms.\n9148,anetv_NLuNMeYBeoc,18968,A gymnast mounts a pair of bars. He,A gymnast mounts a pair of bars.,He,gold,does a gymnastics routine on the balance beam.,\"flips and hand stands, and turns several times.\",jumps the beam and moves.,mounts a third of mounts.\n9149,anetv_S4GiCywMi38,3862,A man demonstrates how to apply make up to a face by applying make up to his own face in the camera. A man,A man demonstrates how to apply make up to a face by applying make up to his own face in the camera.,A man,gold,\"wipes off the lemon with wet powder and washes his hands, as well as his own hands.\",\"talks to the camera, close up, while standing in front of a mirror.\",cuts the wall with a machete.,continues to hand on a different haircut and shows several different ways to break the armoire.\n9150,anetv_S4GiCywMi38,3863,\"A man talks to the camera, close up, while standing in front of a mirror. The man\",\"A man talks to the camera, close up, while standing in front of a mirror.\",The man,gold,rubs his brush to the side of the mirror.,begins to put on makeup blush using a brush and brushing across the apples of his cheeks.,\"resumes shaving and shows a razor, creating shaving.\",puts the camera to the board and talks to people.\n9151,anetv_S4GiCywMi38,3864,The man then runs a crayon like makeup tool across his cheeks before returning to apply blush to his cheeks and forehead. the man then,The man then runs a crayon like makeup tool across his cheeks before returning to apply blush to his cheeks and forehead.,the man then,gold,\"strides over to his microphone, reaches down to right the rollers on his uniform, and shakes her head.\",brushes his neck with a brush and continues spreading soap.,uses a narrow and wide brush across his cheeks and then back to the regular brush for the same areas of his face.,\"applies his slacks, and quirks his left eyebrow, gesturing to the camera and laying down.\"\n9152,anetv_n33Uv--Lbl4,3651,A girl in a yellow shirt is brushing her teeth in a bathroom. A girl next to her in a blue shirt,A girl in a yellow shirt is brushing her teeth in a bathroom.,A girl next to her in a blue shirt,gold,drill for any bath.,is also brushing her teeth.,is doing push ups on the tub.,is pulling on her shirt.\n9153,anetv_n33Uv--Lbl4,3652,A girl next to her in a blue shirt is also brushing her teeth. They,A girl next to her in a blue shirt is also brushing her teeth.,They,gold,steps out of the car on the bath towel.,man grabs the girl and drags her out of her pipe.,are both looking in the mirror.,are dancing and having dance together.\n9154,anetv_HqpflYNEI7o,7778,A pumpkin is sitting on a counter. A knife,A pumpkin is sitting on a counter.,A knife,gold,is used to make a sandwich.,is used to sharpen a knife.,is carving a face into the pumpkin.,is cut into two pieces of wood.\n9155,anetv_SrKGO2Xu670,15040,\"A young woman dressed as a chef is in a restaurant preparing omelets on the small grill in front of her. After she flips the first, one she then\",A young woman dressed as a chef is in a restaurant preparing omelets on the small grill in front of her.,\"After she flips the first, one she then\",gold,\"mixes the ingredients into a blender, then adds more sugar and herbs and dips them into a bowl.\",flips the second one and hands it to the customer on the other side of the glass.,uses a large funnel to stack pasta the other way back into a steaming pot and picks it up to cook them.,placed two assistants mugs alongside the cake and folds her metal with the big black bag.\n9156,anetv_SrKGO2Xu670,15041,\"While she was preparing the omelette, she had a bowl in her hand and then dumped the contents of it on to the grill and added in ingredients such as ham, pepper, and cheese. The process continues, and the woman\",\"While she was preparing the omelette, she had a bowl in her hand and then dumped the contents of it on to the grill and added in ingredients such as ham, pepper, and cheese.\",\"The process continues, and the woman\",gold,\"cracks the eggs, finishes them and hands them to the customers, making sure to spray the grill after each use.\",'s paper is installed and then up the side.,is in the gooey and the kitchen is completed pouring.,\"talks to the camera about what you will need to start an fry chicken, prepared for it.\"\n9157,anetv_SrKGO2Xu670,15069,Woman wering a chef suit is standing in front of a kitchen serving a big omelette into a white plate and it frying other omellete. woman,Woman wering a chef suit is standing in front of a kitchen serving a big omelette into a white plate and it frying other omellete.,woman,gold,\"is head, then she puts some melted butter on the sandwich.\",takes the ingredients and touches various decorations afterwards.,is standing in front of the stove in very long filled list.,is mixing in a white bowl different ingredients to make an omelette and put the mix in a frying pan.\n9158,anetv_RGMSc1tfkzA,16713,A man is seen standing on the edge of a diving board and leads into several clips of people performing impressive dives. A woman,A man is seen standing on the edge of a diving board and leads into several clips of people performing impressive dives.,A woman,gold,jumps in the back of the diving board and people cheers and does a flip and lands in the water.,speaks to the camera while showing children playing in a pool area and leads into more clips of people diving into a pool.,walks in and out of frame while the camera captures the movements as well as a man applauding the man.,crashes down onto the ice.\n9159,anetv_RGMSc1tfkzA,9842,People are standing in the swimming pool. A woman's face,People are standing in the swimming pool.,A woman's face,gold,is from behind a bar.,is giving instructions in the camera.,is shown with bruises on it.,has smiling at the camera.\n9160,anetv_RGMSc1tfkzA,9841,People are doing flips off of jumping boards into the water. People,People are doing flips off of jumping boards into the water.,People,gold,are standing in the swimming pool.,are sitting on the side horses running into a bucket of sand.,are siting in the water holding a sponge.,spin one of the boat and stop by each other.\n9161,anetv_kC1DyxcRHBg,15116,Then takes a pink scrub and begins scrubbing the sink in back and forth motion. The person,Then takes a pink scrub and begins scrubbing the sink in back and forth motion.,The person,gold,keeps scrubbing the paint so it cleans the side next to a towel and takes off the handlebar and begins drying the sink.,\"makes sure that all the sides of the sink are cleaned, including the drain.\",\"vacuums the carpet, peels away the mop and soaks it on the floor.\",continues sweeping the dishes in room as the pretty woman follows.\n9162,anetv_kC1DyxcRHBg,15117,\"The person makes sure that all the sides of the sink are cleaned, including the drain. Then she\",\"The person makes sure that all the sides of the sink are cleaned, including the drain.\",Then she,gold,\"turns to work out the soap required, and paints down.\",takes the vacuum off wiping and curls it down to a vomit.,\"adds, blue nail polish and writes down the polish while doing the sink.\",starts the tap to wash off the powder and bleach.\n9163,anetv_kC1DyxcRHBg,15115,The person sprays some white cleaning powder in the sink and then sprays some Clorox bleach on it. Then,The person sprays some white cleaning powder in the sink and then sprays some Clorox bleach on it.,Then,gold,takes a pink scrub and begins scrubbing the sink in back and forth motion.,a girl dries her hands using a towel.,\", the man start wiping the door with the sponge.\",points the tool then moves a cloth on clipper the window.\n9164,anetv_kC1DyxcRHBg,15114,There's a person wearing pink gloves doing a tutorial on how to clean a white kitchen sink. The person,There's a person wearing pink gloves doing a tutorial on how to clean a white kitchen sink.,The person,gold,holds water put the coat rack high on the side of the sink.,cleans water through homes.,reaches for a wash hose and then begins mopping wet.,sprays some white cleaning powder in the sink and then sprays some clorox bleach on it.\n9165,anetv_7AtINKDyH2Q,11036,A person named Donal Cusack explains what hurling is and what is comprises of. The team players,A person named Donal Cusack explains what hurling is and what is comprises of.,The team players,gold,hold the ball in their hands.,play game together in the center of a ring.,are shown lifting the balls over their head multiple times to the first game.,are playing a game of hurling with their bats as they try to hit the ball into the goal.\n9166,lsmdc1005_Signs-4696,6364,Someone walks slowly up to the wall of maize and steps inside the tall dense corn. He,Someone walks slowly up to the wall of maize and steps inside the tall dense corn.,He,gold,has slowed down to turn back to getting an annoyed look.,has a spoon in her mouth.,holds it out the back.,\"ventures on at an even pace, moving down a narrow channel between two rows of rigid stalks.\"\n9167,lsmdc1005_Signs-4696,6383,Someone sits at a table with his back to them. He,Someone sits at a table with his back to them.,He,gold,\"opens the gift stand, lakes it in, and heaves it toward the camera.\",gives a flower to the blond as he approaches the coast.,\"tries to step out of the driveway, door clutching the third or security hand.\",reads the army pamphlet he picked up in town and lazily chews gum.\n9168,lsmdc1005_Signs-4696,6390,\"Someone looks at someone, then, sits up straight and sighs. On the screen, lights\",\"Someone looks at someone, then, sits up straight and sighs.\",\"On the screen, lights\",gold,are set up on the porch.,hover in a night sky.,come from the front curtains in the street.,are on a rattle in the grill.\n9169,lsmdc1005_Signs-4696,6389,\"Getting up, he heads into the kitchen, stopping just short of the table. Someone\",\"Getting up, he heads into the kitchen, stopping just short of the table.\",Someone,gold,\"looks at someone, then, sits up straight and sighs.\",\"peeks over her shoulder, then turns to toss the ball through the stone wall beneath.\",\"stands up, crosses to the counter, and looks back.\",\"hesitates, then climbs in the seat.\"\n9170,lsmdc1005_Signs-4696,6374,He then turns and points the beam the other way. He,He then turns and points the beam the other way.,He,gold,is flipping across the board turns catching more stuff.,stares into the crop.,makes another jump up and down the bar.,\"stops the car, aiming it and crawling over it.\"\n9171,lsmdc1005_Signs-4696,6386,He lowers himself gently into a seat at the table. His two children,He lowers himself gently into a seat at the table.,His two children,gold,sit at a table at a sink in front of it.,sit on top of each other.,file out in the doorway.,turn around and see their father staring at the floor.\n9172,lsmdc1005_Signs-4696,6363,He directs the circular torch beam onto the edge of the crop. Someone,He directs the circular torch beam onto the edge of the crop.,Someone,gold,watches as someone sways on the side of the ship and flies beneath it.,walks slowly up to the wall of maize and steps inside the tall dense corn.,stands transfixed at the metal piece.,gives a rugged look to the right and someone wriggles it to someone's son.\n9173,lsmdc1005_Signs-4696,6366,\"The white torch light angled low illuminates the limp straggly green leaves, which bend back as he pushes through them. Someone\",\"The white torch light angled low illuminates the limp straggly green leaves, which bend back as he pushes through them.\",Someone,gold,remains at the bottom of the stairs and joins people.,\"halts, raises the torch and peers into the tunnel of foliage ahead.\",see his cousins run off the stairs.,recognizes someone and fires around them both.\n9174,lsmdc1005_Signs-4696,6370,And the leaves glow with a silvery sheen. Someone,And the leaves glow with a silvery sheen.,Someone,gold,looks up at the remains of the chessboard.,places her life on the back of the lifeboat and hobbles away at the clothes.,\"stands still, his torch shooting a slender shaft of light across the circle.\",\"enters the nightclub to an elegant, red - haired boy.\"\n9175,lsmdc1005_Signs-4696,6365,\"He ventures on at an even pace, moving down a narrow channel between two rows of rigid stalks. The white torch light angled low\",\"He ventures on at an even pace, moving down a narrow channel between two rows of rigid stalks.\",The white torch light angled low,gold,\"illuminates the limp straggly green leaves, which bend back as he pushes through them.\",reveals drawers of the roof used its light gaps between charred pieces of the industrial installing stone ceiling.,across the demonic marquee.,to reveal the wooden panels as it's gently cuba.\n9176,lsmdc1005_Signs-4696,6368,\"Emerging in the first of the crop circles, someone lowers his arm gently. A pale gray light\",\"Emerging in the first of the crop circles, someone lowers his arm gently.\",A pale gray light,gold,rises over his shoulders like a winged polished stone chandelier.,hangs about ten feet tall with one man holding a flag.,\"carries a wry turn around him, then spins on his back.\",fills the vast perfect circle of evenly flattened corn.\n9177,lsmdc1005_Signs-4696,6382,\"In the farmhouse, people are washing up at the sink in the kitchen, which opens directly onto the lounge. Someone\",\"In the farmhouse, people are washing up at the sink in the kitchen, which opens directly onto the lounge.\",Someone,gold,sits at a table with his back to them.,watches the other people.,'s mother is trembling asleep on the sofa.,pops a cigar on the floor while someone makes a beeline for him.\n9178,lsmdc1005_Signs-4696,6357,\"Someone slides back down into someone's lap. Carrying a metal dish of dog food for Isabel in one hand, someone\",Someone slides back down into someone's lap.,\"Carrying a metal dish of dog food for Isabel in one hand, someone\",gold,steps out of the farmhouse through a screen door and into the dark.,covers the dog's mouth with the glove and holds it back.,pinches some of the dogs gang.,trapping the panicked boy.\n9179,lsmdc1005_Signs-4696,6385,\"Unnoticed by the other three, someone pads softly into the kitchen and stops. He\",\"Unnoticed by the other three, someone pads softly into the kitchen and stops.\",He,gold,beams at her.,punches someone in the chin.,\"over the dumping ground, someone heads down the hallway and scurries into the bathroom where someone holds him back.\",lowers himself gently into a seat at the table.\n9180,lsmdc1005_Signs-4696,6369,A pale gray light fills the vast perfect circle of evenly flattened corn. And the leaves,A pale gray light fills the vast perfect circle of evenly flattened corn.,And the leaves,gold,glow with a silvery sheen.,pass out of one of its many shiny towers.,\"rip from one's back, filled with screaming mass and following the calls.\",\"fall apart by the villain, holding the racketball.\"\n9181,lsmdc1005_Signs-4696,6359,He walks steadily across the lawn to where the Alsatian is chained to its kennel. Someone,He walks steadily across the lawn to where the Alsatian is chained to its kennel.,Someone,gold,spots someone's concertina.,stops just short of the dog and looks out into the darkened field.,\"stares at someone, then bites his lower lip.\",stares up at the golden diamond around him.\n9182,lsmdc1005_Signs-4696,6367,\"He then lowers the flashlight to his side and begins to pick his way through the crop, one arm raised to shield his face from the leaves. Emerging in the first of the crop circles, someone\",\"He then lowers the flashlight to his side and begins to pick his way through the crop, one arm raised to shield his face from the leaves.\",\"Emerging in the first of the crop circles, someone\",gold,lowers his arm gently.,taps his fist upside down onto a wooden tree.,is dotted with dark green.,looks around furtively and a sphere lining of a city.\n9183,lsmdc1005_Signs-4696,6372,\"He scans the circle apprehensively, then, steps backwards towards the standing crop. Turning at the last moment, he\",\"He scans the circle apprehensively, then, steps backwards towards the standing crop.\",\"Turning at the last moment, he\",gold,\"turns his face slowly to the door, but flinches, as it glides across the floor.\",halts narrow after section.,takes the keys and steps down.,cuts straight into the corn.\n9184,lsmdc1005_Signs-4696,6391,\"On the screen, lights hover in a night sky. People\",\"On the screen, lights hover in a night sky.\",People,gold,look on the faces of a camera.,are sitting on a table.,sit on the sofa.,step out to a neighboring cavern.\n9185,lsmdc1005_Signs-4696,6379,He shines the light down the path. A long thin bare leg,He shines the light down the path.,A long thin bare leg,gold,walks to stand round a smoking club.,opens out onto a supports underneath and is beside the small mount.,slips silently into the corn.,appears but sunlight are visible.\n9186,lsmdc1005_Signs-4696,6360,Someone stops just short of the dog and looks out into the darkened field. He slowly,Someone stops just short of the dog and looks out into the darkened field.,He slowly,gold,descends a swing from the corridor as he rocks.,yells the way to the left.,turns his body to face the crop.,\"picks up the machine gun and turns back beachfront thinks, before turning back in aggressive.\"\n9187,lsmdc1005_Signs-4696,6384,\"He reads the army pamphlet he picked up in town and lazily chews gum. Unnoticed by the other three, someone\",He reads the army pamphlet he picked up in town and lazily chews gum.,\"Unnoticed by the other three, someone\",gold,pads softly into the kitchen and stops.,views a countless cart of vehicles parked beneath lights.,\"raises his wand, letting someone clasps his hands over his heart.\",writes the letter in the kitchenette.\n9188,lsmdc1005_Signs-4696,6380,A long thin bare leg slips silently into the corn. He,A long thin bare leg slips silently into the corn.,He,gold,takes his ring phone.,tries to hold it between his fingers.,hands his colleague a lettered envelope.,plows into the corn and charges through it.\n9189,lsmdc1005_Signs-4696,6361,\"He slowly turns his body to face the crop. Staring in surprise at the dog, he\",He slowly turns his body to face the crop.,\"Staring in surprise at the dog, he\",gold,turns his gaze back to the gently rustling field.,crashes back on the floor.,looks down at his assailant.,puffs off his pet.\n9190,lsmdc1005_Signs-4696,6362,Someone opens a battered metal toolbox resting on a picnic bench. He,Someone opens a battered metal toolbox resting on a picnic bench.,He,gold,puts an arm on his shoulder as he drives someone through large underground tunnels.,snatches the money out of the mounted radio as he opens the bus and drives back into the building.,drives a tricycle through the middle of a narrow white - stained courtyard.,directs the circular torch beam onto the edge of the crop.\n9191,lsmdc1005_Signs-4696,6381,\"He plows into the corn and charges through it. In the farmhouse, people\",He plows into the corn and charges through it.,\"In the farmhouse, people\",gold,are kissing by the sky.,\"are washing up at the sink in the kitchen, which opens directly onto the lounge.\",\"are on a lawn, eating him.\",hurry out of the window where someone puts the binoculars on by the figures.\n9192,lsmdc1005_Signs-4696,6358,\"Carrying a metal dish of dog food for Isabel in one hand, someone steps out of the farmhouse through a screen door and into the dark. He\",\"Carrying a metal dish of dog food for Isabel in one hand, someone steps out of the farmhouse through a screen door and into the dark.\",He,gold,\"picks up his note and goes back out onto the porch, holding a letter and reading off from someone's calls.\",opens a crate of chocolates and sets it on the back of one of the policemen as he peers through a window.,walks steadily across the lawn to where the alsatian is chained to its kennel.,is beyond the woman wearing a neatly styled blonde dress.\n9193,lsmdc1005_Signs-4696,6376,Panting and keeping his eyes fixed intently on the maize. He,Panting and keeping his eyes fixed intently on the maize.,He,gold,steer an umbrella by the railing at the edge.,shuts the door from the arena.,crouches down warily and reaches for the torch.,\"jabs it, then slams into a rock wall as the charcoal lines inbetween the rows.\"\n9194,lsmdc1005_Signs-4696,6375,\"Whipping round, he drops the torch and the light goes out. Panting and\",\"Whipping round, he drops the torch and the light goes out.\",Panting and,gold,keeping his eyes fixed intently on the maize.,\"starts up again, he sits up.\",\"lopes at the sound, he slows and watches the mechanism.\",\"regards around, he takes out a wand.\"\n9195,lsmdc1005_Signs-4696,6388,\"Someone then peers casually over his shoulder and notices his downcast brother. Getting up, he\",Someone then peers casually over his shoulder and notices his downcast brother.,\"Getting up, he\",gold,\"heads into the kitchen, stopping just short of the table.\",runs down a quiet corridor with tall brick warehouses.,puts make buzzing move around the table.,takes off the feed then joins someone in the hall.\n9196,lsmdc1005_Signs-4696,6356,Someone slowly lowers the receiver and looks at it. Someone,Someone slowly lowers the receiver and looks at it.,Someone,gold,is on the ground being a bit drunk.,enters and finds him partially aboard.,slides back down into someone's lap.,\"explodes, still staring at the floor.\"\n9197,lsmdc1005_Signs-4696,6373,Struggling through the unbending forest until he stumbles out onto a pathway running between two areas of maize. Someone,Struggling through the unbending forest until he stumbles out onto a pathway running between two areas of maize.,Someone,gold,stirs a cat with a marker and pushes past for him.,\"bends down, reaching for his shield and acknowledging him.\",shines his torch along the path.,\"leaps across a balustrade, executing - touches he runs down the middle of the airport.\"\n9198,lsmdc1005_Signs-4696,6387,\"Someone steps falteringly up to the table, leaving someone at the sink. Someone then\",\"Someone steps falteringly up to the table, leaving someone at the sink.\",Someone then,gold,peers casually over his shoulder and notices his downcast brother.,looks up at him and knows that he could rise.,takes the plate out of the fork cutting into our view.,stuck his hand through the curtains of his new window and then crosses down the chair.\n9199,lsmdc1005_Signs-4696,6377,\"Locating the flashlight, he frantically slaps the lens. And the beam\",\"Locating the flashlight, he frantically slaps the lens.\",And the beam,gold,\"returns, briefly illuminating his face.\",\"shines up, and the shape goes into cabin england.\",is twitch.,moves to the archway leads amazingly.\n9200,anetv_ACnOpQNrhqs,10559,A group of ladies passes. A lady,A group of ladies passes.,A lady,gold,stands with two women.,shakes a child in a mans chair.,stands up from her chair as the crowd applaud.,falls and slides across the ground.\n9201,anetv_ACnOpQNrhqs,10560,Two ladies high five each other. Three ladies,Two ladies high five each other.,Three ladies,gold,grabs two shoes and wrestle them in the back.,move in together to receive double dancing.,enter and see the net started.,fall into the crowd on the left.\n9202,anetv_ACnOpQNrhqs,10561,A lady misses and falls. A person,A lady misses and falls.,A person,gold,jumps twice then another.,dangles a set of keys.,shouts for another child as the bull charges.,steps onto her wall.\n9203,anetv_d_JH9U-UI3c,19319,The girl stretches her leg in the air. The girl,The girl stretches her leg in the air.,The girl,gold,dances with the baby.,leaps across the stage.,finishes twirling the pinata.,grabs a razor from a sharp wiper.\n9204,anetv_d_JH9U-UI3c,17942,The girl holds a baton and does a standing split. the girl then,The girl holds a baton and does a standing split.,the girl then,gold,performs a dance routine.,begins to jump rope before dropping her arms.,performs two flips who dismounts and releases the baton.,takes off stage and walks down the street.\n9205,anetv_d_JH9U-UI3c,19321,The girl stretches her leg in the air. The girl,The girl stretches her leg in the air.,The girl,gold,does a finished flip.,spins and spins her leg in the air.,\"finishes tugging on the rope, trying to surf the stair guides.\",holds up a razor to move her leg while the camera zooms in on her.\n9206,anetv_d_JH9U-UI3c,19320,The girl leaps across the stage. The girl,The girl leaps across the stage.,The girl,gold,stretches her leg in the air.,lands on a horse rushes to the beach.,spins around and slaps herself on the back.,waves her hands in front of another camera.\n9207,anetv_d_JH9U-UI3c,19318,We see a lady perform a baton routine in a gym. the girl,We see a lady perform a baton routine in a gym.,the girl,gold,hugs her arms back.,does a gymnastics routine on the balance beam.,cheers and claps her hands together.,stretches her leg in the air.\n9208,anetv_d_JH9U-UI3c,19322,The girl spins and spins her leg in the air. The girl,The girl spins and spins her leg in the air.,The girl,gold,finishes and walks off the floor.,performs several tricks and tricks.,reaches up again and climbs her back up.,swings her leg against the wall again.\n9209,anetv_hP8wUI0qdaQ,8419,Woman is talking to the camera in front of a large gym with a lot of estatic bikes in the background and people doing exercise. girl,Woman is talking to the camera in front of a large gym with a lot of estatic bikes in the background and people doing exercise.,girl,gold,enter a salon with small people while riding in a small building.,puts a pencil up in a living room and explains left things.,start doing exercise in the elliptical bike.,is standing behind a rope standing next the pole race.\n9210,anetv_q3DzEgYmIV0,8192,A ladder leans on it. The roof,A ladder leans on it.,The roof,gold,has free - and winds along the passenger deck.,brushes the red couch from the frame.,is old and dilapidated.,seethes as a lamb bang from the roof.\n9211,lsmdc1012_Unbreakable-6794,8095,\"Someone sits beside a black woman who's lying down, gazing into a blanket wrapped bundle. The women\",\"Someone sits beside a black woman who's lying down, gazing into a blanket wrapped bundle.\",The women,gold,raise the bottle back into a sitting position.,carries the dollar each down the colored cups and places them around his waist.,continue floating down the hill.,smiles at the wriggling bundle.\n9212,lsmdc1012_Unbreakable-6794,8096,The women smiles at the wriggling bundle. The doctor,The women smiles at the wriggling bundle.,The doctor,gold,gently lifts the bundle and looks inside.,sits up to the woman and gives someone a tender hug.,adds laying papers into her on a table.,sweeps down his raft.\n9213,lsmdc1012_Unbreakable-6794,8097,\"The doctor gently lifts the bundle and looks inside. Still reflected in the mirror, the doctor\",The doctor gently lifts the bundle and looks inside.,\"Still reflected in the mirror, the doctor\",gold,snaps the flashlight in one spot.,peers scans the room.,gently taps his bloody shoe.,looks up at the saleswoman.\n9214,lsmdc1012_Unbreakable-6794,8098,\"Still reflected in the mirror, the doctor looks up at the saleswoman. The doctor\",\"Still reflected in the mirror, the doctor looks up at the saleswoman.\",The doctor,gold,\"looks back at the baby, frowning.\",points to an infant in her bag.,pours more water in someone's eyes.,uses a hand to clean his bruised face on its clothes.\n9215,anetv_xi4puZ1ulP4,10759,The woman uses a comb and hairspray to straighten parts of here hair then ties it back. Messages of tex,The woman uses a comb and hairspray to straighten parts of here hair then ties it back.,Messages of tex,gold,are shown on the end of the video.,on top of her client's hair.,and continuing video show the product.,wash's wax individually hold on ski.\n9216,anetv_xi4puZ1ulP4,10755,A woman is seen with seen wearing a tanktop with introduction text. The woman,A woman is seen with seen wearing a tanktop with introduction text.,The woman,gold,have hair tied back and applies eye make up to eyes using various brushes and colors.,is then shown putting various makeup on his face and smiling into the camera.,continues extensively to play shuffleboard.,is shown how to play rock in different photographs during last photos.\n9217,anetv_xi4puZ1ulP4,10757,The woman begins to puts eye liner on with a fine pencil. The women,The woman begins to puts eye liner on with a fine pencil.,The women,gold,continue wiping the top of her fingernails.,takes cloth ties out of here hair and lets her hair down which is now curled.,continuously brushes and brushes and continues.,get a batch of braided shears and are jumping down and down.\n9218,anetv_xi4puZ1ulP4,10756,The woman have hair tied back and applies eye make up to eyes using various brushes and colors. The woman,The woman have hair tied back and applies eye make up to eyes using various brushes and colors.,The woman,gold,put on his hair dryer then wipes her hair with a comb tied in a ponytail.,begins to puts eye liner on with a fine pencil.,sets up the bottle and pours it into the bucket with the brushed and then styles it once again.,uses a rag to scrub the mirror then vinegar on it once more.\n9219,anetv_xi4puZ1ulP4,10758,The women takes cloth ties out of here hair and lets her hair down which is now curled. The woman,The women takes cloth ties out of here hair and lets her hair down which is now curled.,The woman,gold,returns to the ground in the finish hair brushes and rolls into the bottom.,falls with the dog on her own.,uses a comb and hairspray to straighten parts of here hair then ties it back.,\"takes the garment in the iron to rest on his thighs, and tosses it on top of her waist.\"\n9220,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33448,7446,As the door slides shut a view through its window shows her enraged face. In Hedestad a Volvo,As the door slides shut a view through its window shows her enraged face.,In Hedestad a Volvo,gold,gets onto an suv as rockets float through the water on the upper floor.,takes a picture in the played.,lies on the head of the children's house.,stops beside someone as he trudges up a hill.\n9221,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33448,7443,\"Lowering her steely eyes, someone sucks in a breath. Under her new guardian's menacing gaze she\",\"Lowering her steely eyes, someone sucks in a breath.\",Under her new guardian's menacing gaze she,gold,pauses to her lips.,finds a bishop in her bedroom as she waits with someone at the breakfast table in a patio.,\"works her lips, struggling to remain composed.\",pushes her colleague up the window and strides through the crowd.\n9222,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33448,7445,\"Now, someone hurries out of the office and steps into an elevator. As the door slides shut a view through its window\",\"Now, someone hurries out of the office and steps into an elevator.\",As the door slides shut a view through its window,gold,shows the double doors open.,shows her enraged face.,reveal a hot sea view.,shows him with a flash of torchlight.\n9223,anetv_4OIkfJ_IkpA,11849,A person is seen pushing a lawn pushing a lawn mower up a large hill as well as back down again. Several shots are shown of the boy pushing the machine and an older man,A person is seen pushing a lawn pushing a lawn mower up a large hill as well as back down again.,Several shots are shown of the boy pushing the machine and an older man,gold,walks in to help him.,walking around holding a leash at him from several angles.,holds up the lawn mower while sitting on the side with the hand trimming objects.,lays down on him.\n9224,anetv_4OIkfJ_IkpA,11850,Several shots are shown of the boy pushing the machine and an older man walks in to help him. He fixes the machine and the small boy,Several shots are shown of the boy pushing the machine and an older man walks in to help him.,He fixes the machine and the small boy,gold,continues pushing the machine along.,comes to help him and begins bucket gadget as the man continues to work on the machine.,\"holding the ax at the end, is shown again showing cameras showing the proper technique.\",moves the mask on.\n9225,anetv_4OIkfJ_IkpA,19751,He stops to throw a rock out of the way and another man helps him start it. He,He stops to throw a rock out of the way and another man helps him start it.,He,gold,tries the detonator several times and stands on the board.,picks up the pile of stilts and throws the ball down to the ground.,continues pushing the mower around the yard.,backs away and when he's done again.\n9226,anetv_4OIkfJ_IkpA,19750,A young boy is seen standing behind a lawn mower and begins pushing. He stops to throw a rock out of the way and another man,A young boy is seen standing behind a lawn mower and begins pushing.,He stops to throw a rock out of the way and another man,gold,is swinging behind him.,runs up to grab the ball.,helps him start it.,appears on the swing.\n9227,anetv_KePjkCySBCs,11970,A man on a street surrounded by a crowd is wearing roller blades with rods attached and using ski poles to propel him forward. The rods on his roller blades,A man on a street surrounded by a crowd is wearing roller blades with rods attached and using ski poles to propel him forward.,The rods on his roller blades,gold,\"sit down and its feet plows over the, parallel river.\",strike bottles on the ground that make music as he skates by them.,\"stand in place, attempting to use other equipment on the wall.\",do flips and then give each a few and fall still.\n9228,anetv_KePjkCySBCs,11972,The crowd begins to cheer him on during the performance. he,The crowd begins to cheer him on during the performance.,he,gold,is then seen tumbling again across the mat.,finishes the performance as he races towards the camera.,dismounts as judges cheer in the stands.,does as fast as he can.\n9229,anetv_KePjkCySBCs,11971,The rods on his roller blades strike bottles on the ground that make music as he skates by them. The crowd,The rods on his roller blades strike bottles on the ground that make music as he skates by them.,The crowd,gold,is shown proudly.,walks around fast and takes the anchor of it from him.,bumps and others press their weapons.,begins to cheer him on during the performance.\n9230,anetv_KePjkCySBCs,2270,The man then rides past the bottles knocking them over and zooming past one by one. The person,The man then rides past the bottles knocking them over and zooming past one by one.,The person,gold,pulls the paper on at the end one is shown and the camera pans around the area.,becomes angrily continuously on the tree.,continues pushing along and ends by yelling to the camera.,passes several woman flips and tricks in a hula hoop.\n9231,anetv_KePjkCySBCs,2269,A large group of people are seen standing around a city center and a man seen standing in the middle wearing roller blades. The man then,A large group of people are seen standing around a city center and a man seen standing in the middle wearing roller blades.,The man then,gold,rides past the bottles knocking them over and zooming past one by one.,begins adjusting the driver of the seat and ends by taking the tire off.,jumps on the motorcycle on the sand and begins to spin in a track setting.,begins shooting and bouncing up and down the side and side while looking off into the distance.\n9232,anetv_ntS2PA5YWuA,5023,They kick the tire with their feet. They,They kick the tire with their feet.,They,gold,pedal and jump as they stretch around the track.,dip the board in the water continuously.,begin to run through the rope.,pump up the tire with a red pump.\n9233,anetv_ntS2PA5YWuA,5022,They spray around the tire. They,They spray around the tire.,They,gold,kick the tire with their feet.,set up the food time for their drinks.,hit each other's leg.,roll the tires on the car.\n9234,anetv_ntS2PA5YWuA,15292,A person is seen walking in with a tire on a plank and painting the tire. The person then un,A person is seen walking in with a tire on a plank and painting the tire.,The person then un,gold,to record and putting the wax onto the tire of the silver wheel of the bike.,adds the tire and puts the tires in the.,moves their bed putting the cement while still messing it up.,does the tire and places the rubber tightly around the side.\n9235,anetv_ntS2PA5YWuA,5021,A person puts a tire on a wheel with a tool on a pallet. They,A person puts a tire on a wheel with a tool on a pallet.,They,gold,continue jumping tiles on a car.,spray around the tire.,are going back and forth to the wooden area.,uses a jack tablecloth to clean the windows.\n9236,anetv_D4LoDBsIFjw,13015,A man puts on his helmet and pushes off into the river on a kayak. A man,A man puts on his helmet and pushes off into the river on a kayak.,A man,gold,stands on shore floating on the water.,stands behind a sailboat while wearing a yellow glove and waves.,bends down and do flips onto a board.,paddles on rapids and down a river on a kayak.\n9237,anetv_D4LoDBsIFjw,13017,A man fishes from a beach on the shore of a river. A group,A man fishes from a beach on the shore of a river.,A group,gold,rides a boat near tall mountains.,prepares a picnic on the shore.,passes in front of them and a man leaves the outside.,play a game of tug of war.\n9238,anetv_D4LoDBsIFjw,13016,A man paddles on rapids and down a river on a kayak. A man,A man paddles on rapids and down a river on a kayak.,A man,gold,surfs across beach exploring the water.,fishes from a beach on the shore of a river.,paddles along the river past.,pass on the river holding a paddle and other others paddle in river.\n9239,anetv_Kd3YFwF-2UM,18063,Several clips are shown of people throwing bowling balls down a lane as well as close ups of balls and pins. People continue bowling and the machine,Several clips are shown of people throwing bowling balls down a lane as well as close ups of balls and pins.,People continue bowling and the machine,gold,ends the shots hitting the ball and sending it off the bowling balls.,shows how the pins spin around and the balls returning to the back.,flies back and fourth.,moves into the lane all along the lane as many people hit it.\n9240,anetv_xmag8UI8iws,18231,A person is using a leaf blower to blow leaves into a pile. The leaves,A person is using a leaf blower to blow leaves into a pile.,The leaves,gold,is in the grass with the leaf blower.,blow up onto a hedge.,fall to a pile of leaves.,\"continue to brush, blowing the leaves around.\"\n9241,lsmdc3020_DEAR_JOHN-10141,975,\"Someone manages a smile and looks away. In a dining room, someone\",Someone manages a smile and looks away.,\"In a dining room, someone\",gold,takes out the newspaper and takes another drink.,drinks from a coffee cup.,pours herself a glass of wine.,takes note in front of a stone.\n9242,lsmdc3020_DEAR_JOHN-10141,974,\"Someone tightens her rosebud lips, then locks eyes with her former lover. Someone\",\"Someone tightens her rosebud lips, then locks eyes with her former lover.\",Someone,gold,manages a smile and looks away.,\"is then wake boarding a little ride attached with oars, as they pass a sign on the window of someone farm.\",glances at her guest.,unveils his beard and marches ahead.\n9243,anetv_vbWdGj1sfO8,2090,She is wearing black and pink and just looks very comfortable while she works out. She,She is wearing black and pink and just looks very comfortable while she works out.,She,gold,brings her arms up and her legs up to the center of her body.,is the last thing into a dry she.,begins to step from the garment as she works.,continue fighting outfits while standing up talking.\n9244,anetv_vbWdGj1sfO8,2089,A female is laying on her back exercising inside of a gym. She,A female is laying on her back exercising inside of a gym.,She,gold,gets ready to a balance and puts on her arms in front of a crowd.,begins more important buttons on the cabin as she works in the shining light.,does a routine using her hands while the woman watches on the phone beam.,is wearing black and pink and just looks very comfortable while she works out.\n9245,anetv_vbWdGj1sfO8,2091,She brings her arms up and her legs up to the center of her body. She,She brings her arms up and her legs up to the center of her body.,She,gold,\"releases the tiger, as a hole catches her eye.\",lays her head down on her lap.,does that repeatedly for a little while.,climbs back on with a show of moving up backward and more times.\n9246,anetv_5pPQc85IXtU,5252,People bike on a bumpy track where a crowd gather to watch the bike cross competition. A biker,People bike on a bumpy track where a crowd gather to watch the bike cross competition.,A biker,gold,skates through a city park.,falls on the ground.,\"jumps into a truck, and falls through.\",takes off his suit helmet and takes off his shirt.\n9247,anetv_5pPQc85IXtU,5251,People competes bike cross in a field. People,People competes bike cross in a field.,People,gold,talk with a motocross driver on a track.,bike on a bumpy track where a crowd gather to watch the bike cross competition.,fall from the monkey bars and fall to the mat.,pull a lacrosse stick behind.\n9248,anetv_5pPQc85IXtU,5253,A biker falls on the ground. The bikers,A biker falls on the ground.,The bikers,gold,continue up the track and lift each other.,arrive to the finish line.,run over and around in the dirt.,go flying and continue flips.\n9249,lsmdc3070_THE_CALL-32858,18924,\"From overhead, cars move along a curvy freeway cutting through mountains. In the hive, someone\",\"From overhead, cars move along a curvy freeway cutting through mountains.\",\"In the hive, someone\",gold,start with an mobile telephone.,opens the door for her and peeks out of the living room.,gazes at the albums and peruses the murder.,stares at the gps locator screen with no coordinates found.\n9250,lsmdc3070_THE_CALL-32858,18923,\"Nodding, he turns away and notices something on the ground. The officer\",\"Nodding, he turns away and notices something on the ground.\",The officer,gold,\"turns back to someone, holding up a pair of shotguns.\",wearily approaches someone and the german frenchman.,removes his sunglasses and takes a few steps forward.,stretches and puts money into a pocket.\n9251,lsmdc3070_THE_CALL-32858,18922,\"Someone shares a look with his partner. Nodding, he\",Someone shares a look with his partner.,\"Nodding, he\",gold,watches the photographer drop.,snaps his fingers to the clerk.,turns away and notices something on the ground.,winces and hunches forward.\n9252,lsmdc1062_Day_the_Earth_stood_still-100738,9476,\"The man is thrown backwards by the charge. Half lying under the table, he\",The man is thrown backwards by the charge.,\"Half lying under the table, he\",gold,\"leaps from someone's grasp, lifting his head.\",\"twitches, then slowly slides back upright, staring blankly.\",puts the tank lid on the cord diving too.,lifts his battered tie and approaches his cousin.\n9253,lsmdc1062_Day_the_Earth_stood_still-100738,9474,Someone eyes the interrogator steadily. The man,Someone eyes the interrogator steadily.,The man,gold,\"taps his fingers on the wand's handle, and holds the chain.\",\"returns his stare with a frown, then reaches out to his console.\",\"easily kicks his seat, then tomatoes in half.\",struggles to lower his gaze to the proper way.\n9254,lsmdc1062_Day_the_Earth_stood_still-100738,9471,\"The operator stares at the electronic traces on his screen, which flickers. Someone\",\"The operator stares at the electronic traces on his screen, which flickers.\",Someone,gold,turns the whittling toward someone who collapses on the bed.,climbs out and stares wearily at the hospital sourly.,turns to look at the man.,finds his nail and her hair still on his white forehead.\n9255,lsmdc1062_Day_the_Earth_stood_still-100738,9472,Someone turns to look at the man. The polygraph operator,Someone turns to look at the man.,The polygraph operator,gold,wriggles out and takes out a bike.,stares fixedly at his screen through glasses perched on the end of his nose.,plays a chords in one of the machine.,is sucked into his family with relief.\n9256,lsmdc1062_Day_the_Earth_stood_still-100738,9475,\"The man returns his stare with a frown, then reaches out to his console. The man\",\"The man returns his stare with a frown, then reaches out to his console.\",The man,gold,is thrown backwards by the charge.,hands the package to someone.,returns someone's eye.,wears a blue banana apron and a black shirt.\n9257,lsmdc1062_Day_the_Earth_stood_still-100738,9473,The polygraph operator stares fixedly at his screen through glasses perched on the end of his nose. Someone,The polygraph operator stares fixedly at his screen through glasses perched on the end of his nose.,Someone,gold,enters the front suite to find someone in bed.,shims the necklace next to someone's throat.,wipes the tears from his sleeve.,eyes the interrogator steadily.\n9258,lsmdc3020_DEAR_JOHN-9522,15293,\"Pulling her closer, someone kisses her brow. He\",\"Pulling her closer, someone kisses her brow.\",He,gold,lifts his hand to her laotong face.,\"hugs her, then raise her other hands.\",rocks her in his arms.,gives someone a corner and gently guides her chin.\n9259,lsmdc3020_DEAR_JOHN-9522,15298,\"Someone trots ahead a few paces and bends to pick up a seashell. As she straightens and pockets it, someone\",Someone trots ahead a few paces and bends to pick up a seashell.,\"As she straightens and pockets it, someone\",gold,sways her father staring behind her arm as she moves into the raised hallway.,holds it in her hand then smiles.,drapes a loving arm around her shoulder.,smirks as she holds him.\n9260,lsmdc3020_DEAR_JOHN-9522,15294,\"He rocks her in his arms. Her lips creep into a faint smile, and he\",He rocks her in his arms.,\"Her lips creep into a faint smile, and he\",gold,kisses her brow again.,turns back with a half - smile.,closes his eyes and nods.,walks underneath the abandoned pub.\n9261,lsmdc3020_DEAR_JOHN-9522,15296,\"Turning, someone wraps her arms around him and lays him back against the dune. Later, they\",\"Turning, someone wraps her arms around him and lays him back against the dune.\",\"Later, they\",gold,find us high headed on a rocky mountainside.,stroll toward the party.,sweep up to a flooded tunnel.,stretch their leg in their underwear.\n9262,lsmdc3020_DEAR_JOHN-9522,15295,\"Her lips creep into a faint smile, and he kisses her brow again. Turning, someone\",\"Her lips creep into a faint smile, and he kisses her brow again.\",\"Turning, someone\",gold,aims her gun and rolls.,wraps her arms around him and lays him back against the dune.,brushes into his driveway.,plants a kiss on someone's back as she runs the sky.\n9263,lsmdc3020_DEAR_JOHN-9522,15297,\"Later, they stroll toward the party. Someone\",\"Later, they stroll toward the party.\",Someone,gold,trots ahead a few paces and bends to pick up a seashell.,frowns as he rounds between the set.,takes a pig out of her.,watches a film from a mirror.\n9264,anetv_gpJ7veSnhUs,11691,Two soccer teams walk on to a soccer feild. the two teams,Two soccer teams walk on to a soccer feild.,the two teams,gold,line up opposite each other and shake hands.,miss the name and win the game.,play paintball game in a field with colossal obstacles.,chase each other out of the sitting room.\n9265,anetv_gpJ7veSnhUs,11692,The two teams line up opposite each other and shake hands. the two teams then,The two teams line up opposite each other and shake hands.,the two teams then,gold,begin fighting one another.,begin a soccer match.,give each another a handshake.,play a game of curling with mounting targets.\n9266,anetv_gpJ7veSnhUs,12265,\"Teams are walking on sides of a field and are shaking hands, when are in court agrouped in a circle. men\",\"Teams are walking on sides of a field and are shaking hands, when are in court agrouped in a circle.\",men,gold,is shooting towards the field trying to win and both german men wearing green uniforms are scour the structure at the start line.,\"are in the competition, marching on the side and a man is walking in a field in a park.\",are playing the ball in a green circle on the field.,are in position to start the game and start playing curling.\n9267,lsmdc3057_ROBIN_HOOD-27570,11383,\"Someone looks over her shoulder, appraises someone, then resumes her work. Someone\",\"Someone looks over her shoulder, appraises someone, then resumes her work.\",Someone,gold,gets to her feet.,puts down her wrist.,follows someone upstairs.,crosses to a driver's side of the road and grabs the tire of a truck.\n9268,lsmdc3057_ROBIN_HOOD-27570,11386,She stumbles and her face falters. She,She stumbles and her face falters.,She,gold,catches herself and rubs her chest.,shaves again and brushes her teeth.,studies a tote tag.,falls down on the side of her feet.\n9269,lsmdc3057_ROBIN_HOOD-27570,11388,\"Now, they enter a stable area. Someone\",\"Now, they enter a stable area.\",Someone,gold,crosses another room against him.,\"hands over the white horse's reins, then unfastens someone's sword from its saddle.\",exits the van and the other driver climbs on the back of a closet.,plucks a sharp chunk.\n9270,lsmdc3057_ROBIN_HOOD-27570,11387,\"She catches herself and rubs her chest. Now, they\",She catches herself and rubs her chest.,\"Now, they\",gold,halt under the overpass.,ride a dirt bumpy in a choppy part of way as a train rolls past a few stars.,use an e safety wildlife wildlife park.,enter a stable area.\n9271,lsmdc3057_ROBIN_HOOD-27570,11390,Someone pours water into a shallow pan. Someone,Someone pours water into a shallow pan.,Someone,gold,dances to the front of the booth with a long frown.,takes a huge bite into a sandwich.,\"takes a seat and washes her feet, glancing uncomfortably at the archer.\",tosses it to another and hurls someone at the bottle.\n9272,lsmdc3057_ROBIN_HOOD-27570,11385,\"She quickly turns her back to him. With a stoic expression, someone\",She quickly turns her back to him.,\"With a stoic expression, someone\",gold,leads someone through a gate into the castle courtyard.,moves past the car of another enormous car.,holds her cheek close to his.,\"narrows her eyes, glances at the girl as the sun flickers on the quincy coast freeway.\"\n9273,anetv_ouqYXdtEuCI,2011,We then see the kids diving again. We,We then see the kids diving again.,We,gold,see the card the lady does.,see the ending title screen.,return to the kids practicing on the trampoline and back to them diving again.,see the black screen screen.\n9274,anetv_ouqYXdtEuCI,2010,We see the kid on the trampoline. We then,We see the kid on the trampoline.,We then,gold,see people dive in and flip and see the man in the car.,see people on tv in a room.,see the kids diving again.,see the top swing again.\n9275,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31524,6642,He runs to a wooden crate in the middle of room and pushes it. He,He runs to a wooden crate in the middle of room and pushes it.,He,gold,shuts the door behind him and takes the penguin from in his pocket.,throws his gun back to the pair.,\"grabs the plastic duffel, carries it to the closet, opens the cupboard door to find.\",\"shoves the crate against the wall, climbs onto it and opens a porthole.\"\n9276,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31524,6643,\"He shoves the crate against the wall, climbs onto it and opens a porthole. Someone\",\"He shoves the crate against the wall, climbs onto it and opens a porthole.\",Someone,gold,rips off the bird's flops and drapes it over someone's head.,texts on his phone and gets up.,\"looks out of the side of the massive ship, then up at another porthole above him.\",\"uniformed guards stand by, fully dressed and enter.\"\n9277,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31524,6641,\"Now free, someone grabs a crowbar and jams the door, then covers its window. He\",\"Now free, someone grabs a crowbar and jams the door, then covers its window.\",He,gold,crawls onto someone's chest.,steps of the safe house in front of the fence and checks his watch.,runs to a wooden crate in the middle of room and pushes it.,leaps off at the window and back at someone.\n9278,anetv_geuUVSJyovM,5447,A man sat on a bench by the piano. The man,A man sat on a bench by the piano.,The man,gold,scrambles to see a brown shoe.,starts to step down on his knees.,press the key on the piano.,drinks from a cup and scrubs his street.\n9279,anetv_geuUVSJyovM,15283,He strikes a note with his finger. He then,He strikes a note with his finger.,He then,gold,plays a song on it.,throws the ball up into the fire air.,breaks down on the sticky piece of paper with candy written on it.,turns it over and grasps his hands together at his neck.\n9280,anetv_geuUVSJyovM,5448,The man press the key on the piano. The man,The man press the key on the piano.,The man,gold,started to play the piano with both of his hands.,plays the saxophone.,puts cigarettes smoke from the end of the hookah.,waits for his harmonica to continue.\n9281,anetv_geuUVSJyovM,15281,A piano is shown in a room. A man,A piano is shown in a room.,A man,gold,shows a figure of a man on a table.,is sitting on a couch playing the piano.,approaches and sits on the bench.,begins playing the violin while standing in the gym.\n9282,anetv_geuUVSJyovM,15282,A man approaches and sits on the bench. He,A man approaches and sits on the bench.,He,gold,strikes a note with his finger.,puts his hat on and walks away.,begins to play in detail.,stands up to the judge.\n9283,anetv_oy1XjDer7o4,12133,A kid is in the yard putting the ball on the side of the fence. An adult,A kid is in the yard putting the ball on the side of the fence.,An adult,gold,is hitting the pinata in front of him.,gets in and hits the rake.,has trouble running it from the wooden shed.,came and start to cut grass with the kid.\n9284,anetv_oy1XjDer7o4,5478,The man moves toys to the side of the yard to clear the area. The man,The man moves toys to the side of the yard to clear the area.,The man,gold,is then seen laying back on the sofa and moving up.,dumps lawn clippings into a trash bin.,is shown wiping down a pile of mulch.,holds out the splinter and places them on the box.\n9285,anetv_oy1XjDer7o4,5477,The adult mows the lawn with his child. The man,The adult mows the lawn with his child.,The man,gold,continues washing the shoes with a parent.,moves toys to the side of the yard to clear the area.,\"kneels down in front of the young boy, puts the large child around his neck, and friend them.\",in purple leaves it in the grass playing with a scissor mower.\n9286,anetv_oy1XjDer7o4,12134,\"An adult came and start to cut grass with the kid. The man moved the goal net on the side and continue to cut the grass using the grass cutter, then he\",An adult came and start to cut grass with the kid.,\"The man moved the goal net on the side and continue to cut the grass using the grass cutter, then he\",gold,\"landed, after the sharpening get just one knee where the numbers came up and hit the ball completely.\",move the trampoline and move cut the grass as the boy is playing on the side.,saw dirt out of the pan as he did so as he leaves.,puts the apples in the pail.\n9287,anetv_oy1XjDer7o4,5479,The man dumps lawn clippings into a trash bin. The man,The man dumps lawn clippings into a trash bin.,The man,gold,cleans off his shoe with shampoo.,watch the practice painting off.,moves all of the toys back into the yard.,opens a box and examines the bottom.\n9288,anetv_oy1XjDer7o4,5476,A boy kicks a soccer ball in the yard while his father works. The adult,A boy kicks a soccer ball in the yard while his father works.,The adult,gold,mows the lawn with his child.,dismounts from the bars.,nudges his head with his foot as he writes.,shows one to a group while many stands behind him.\n9289,anetv_Q48_MDiak-w,4062,\"An athlete performs hammer Throw by spins a heavy ball several times with his body. Then, the athlete\",An athlete performs hammer Throw by spins a heavy ball several times with his body.,\"Then, the athlete\",gold,does a handstand then flips into a competition in the olympics.,lands on a grey mat high on a black carpeted board.,throws the ball to the field.,dismounts and throws the jump and runs.\n9290,anetv_r-iXUXMP4DY,5501,He demonstrates how to properly lay a shirt on the table. Then he,He demonstrates how to properly lay a shirt on the table.,Then he,gold,shows how to use an iron to iron the shirt smoothly.,shows a proper stance and demonstrates the braiding technique.,removes a pair of shoes from a towel so he does n't know that they are lengths.,bends down to wipe the mats with the shoe and then begins brushing his face.\n9291,anetv_r-iXUXMP4DY,5500,A man is inside a room in front of a table. He,A man is inside a room in front of a table.,He,gold,demonstrates how to properly lay a shirt on the table.,is washing a clothes in front of a plant.,is showing how to play a game of squash.,is talking with the tools on the coffee table.\n9292,anetv_r-iXUXMP4DY,15778,A man is wiping sweat from his forehead. He,A man is wiping sweat from his forehead.,He,gold,is at the top of the hill on a sink.,lifts his brow and starts playing.,hits a ball to his chest.,is talking in front of a table.\n9293,anetv_r-iXUXMP4DY,15779,He is talking in front of a table. He,He is talking in front of a table.,He,gold,demonstrates how to iron a shirt.,begins to cut something in the sand.,is showing up interior tools and washing the clothes.,is standing in front of a table talking to the camera.\n9294,anetv_gOUqdgxwNPw,17254,\"Next, a series of pictures are shown of other people doing tricks. Next, a snowboarder is shown and then they young person\",\"Next, a series of pictures are shown of other people doing tricks.\",\"Next, a snowboarder is shown and then they young person\",gold,is then seen skiing in a river while holding snowy.,comes back with a still image of him and his awards.,are shown learning how to swim.,jumps into a pit in the middle of the beach.\n9295,anetv_gOUqdgxwNPw,17253,\"Then another person is shown and begins doing more rigorous tricks in the water. Next, a series of pictures\",Then another person is shown and begins doing more rigorous tricks in the water.,\"Next, a series of pictures\",gold,appear on the screen and a big screen shows a large canyon.,are shown with people having fun.,is shown of people jumping up and down.,are shown of other people doing tricks.\n9296,anetv_gOUqdgxwNPw,17252,\"The young person then does a 360 flip in the water and keeps going and shortly after, he does another trick. Then another person\",\"The young person then does a 360 flip in the water and keeps going and shortly after, he does another trick.\",Then another person,gold,comes up the car on a mountain line and is talking with a girl hanging in her backyard.,flips her over and picks herself up through the air and walks in the bars as several jumps start by.,is shown and begins doing more rigorous tricks in the water.,comes out of the frame are shown swimming from one window and is introduced to numerous other people.\n9297,anetv_O8JVA-scYlM,3352,He moves the sandwich from the board onto a plate. He,He moves the sandwich from the board onto a plate.,He,gold,adds fries to the plate with the sandwich on it.,stands behind the counter and talks to another man who talks to the camera.,puts the tube down and makes adjustments with her song as they watch.,waxes it calmly once again.\n9298,anetv_O8JVA-scYlM,3342,He begins spreading mayonnaise on slices of bread. He,He begins spreading mayonnaise on slices of bread.,He,gold,puts pasta in a pan and puts it on a plate.,pours the rest of the pasta onto the sandwich.,continues slicing the bread all around one another.,puts lettuce on the bread.\n9299,anetv_O8JVA-scYlM,3344,He stacks tomatoes on top of the lettuce on the bread. He,He stacks tomatoes on top of the lettuce on the bread.,He,gold,puts chicken on top of the tomato.,\"pours tomatoes, salt and lemon, garlic, non - fries.\",pulls out a spoonful of cereal.,begins to stir meat and bakes it.\n9300,anetv_O8JVA-scYlM,3350,He cuts the sandwich into four slices on a board. He,He cuts the sandwich into four slices on a board.,He,gold,slices a half - wrapped slice.,pours the contents into a pot and adds some fruits.,puts a toothpick in each section of the sandwich.,scrambles to his feet.\n9301,anetv_O8JVA-scYlM,3348,He stacks the food up on the bread again. He,He stacks the food up on the bread again.,He,gold,grabs a giraffe from a can and shakes it.,\"undoes the spaghetti, bites it, then stuffs it into someone's brown trousers.\",peels the bacon off and stalk off.,tops it with a final piece of bread.\n9302,anetv_O8JVA-scYlM,3346,He puts one piece of bread on top of the other. He,He puts one piece of bread on top of the other.,He,gold,puts mayonnaise on top of the top piece of bread.,explains the technique about services he will need to make a demonstration.,\"makes a tomato sauce using the cotton peeler, then adds other ingredients to a tomato bowl.\",puts the lettuce on a plate.\n9303,anetv_O8JVA-scYlM,3345,He puts chicken on top of the tomato. He,He puts chicken on top of the tomato.,He,gold,places cheese on top of the plate then cooks it again.,uses the stencil to put the lemon on the sandwich.,puts on big glasses and has chocolate cake on it.,puts one piece of bread on top of the other.\n9304,anetv_O8JVA-scYlM,3343,He puts lettuce on the bread. He,He puts lettuce on the bread.,He,gold,is almost given about it.,\"adds chopped vegetables into a bowl, and pours them some spaghetti.\",stacks tomatoes on top of the lettuce on the bread.,picks it up and puts it in the pan.\n9305,anetv_O8JVA-scYlM,3347,He puts mayonnaise on top of the top piece of bread. He,He puts mayonnaise on top of the top piece of bread.,He,gold,cuts up the adhesive and puts them on.,inserts it into the sandwich in preparation of the metal to pierce.,eats it for a little bit and finally gets the knife taken.,stacks the food up on the bread again.\n9306,anetv_O8JVA-scYlM,3351,He puts a toothpick in each section of the sandwich. He,He puts a toothpick in each section of the sandwich.,He,gold,stamps the slices on someone's fingernails.,slides the metal cabinet over the hole.,tucks the ribbon around the meat.,moves the sandwich from the board onto a plate.\n9307,anetv_O8JVA-scYlM,3349,He tops it with a final piece of bread. He,He tops it with a final piece of bread.,He,gold,slices up the pineapple then bread over it.,eats a few times and finishes it off.,puts his hand back in his guest.,cuts the sandwich into four slices on a board.\n9308,anetv_O8JVA-scYlM,3341,A boy stands behind a table of food. He,A boy stands behind a table of food.,He,gold,is holding a doll behind him.,begins spreading mayonnaise on slices of bread.,dumps some ingredients into a bowl.,gets up and starts running back in the kitchen.\n9309,anetv_KNzFJses9jc,6978,A large crane is seen sitting on the ground and leads into a man using tools on a wall. The camera,A large crane is seen sitting on the ground and leads into a man using tools on a wall.,The camera,gold,pans back and shows clips of wrestlers while hanging cautiously watching the pairs.,shows the individual shooting matches to a boxy bored man standing on a wooden platform beside a rock.,continues to watch the person work as he uses the tool to create sparks on the wall.,man begins partying the instrument and he continues playing again.\n9310,anetv_4SecbKo1iGE,16178,The man wipes down the lumber with a towel. A woman,The man wipes down the lumber with a towel.,A woman,gold,sands the piece of lumber.,puts it on his stomach.,is forced back to the table.,walks up alone in the living room and finishes back.\n9311,anetv_4SecbKo1iGE,5777,The man rubs mica powder in wax on the piece of trim. We,The man rubs mica powder in wax on the piece of trim.,We,gold,see the finished product and the end credits.,then puts a cloth on the tile and paints the excess liners.,see the same man on the shoe.,see the title on the screen.\n9312,anetv_4SecbKo1iGE,16177,The man coats a long piece of lumber with a paint brush. The man,The man coats a long piece of lumber with a paint brush.,The man,gold,drops the filter and cuts the layer o the stone.,lowers the window polish and wipes off on sides.,wipes down the lumber with a towel.,enters and carves out a door.\n9313,anetv_4SecbKo1iGE,5775,We see a mans hands gestures towards wood. the man then,We see a mans hands gestures towards wood.,the man then,gold,paints the wood with a brown paint.,uses one finger and pause.,grabs a drum thrower.,grabs the attachment and speaks.\n9314,anetv_4SecbKo1iGE,5776,The man then paints the wood with a brown paint. the man the,The man then paints the wood with a brown paint.,the man the,gold,cement again using his hands.,can wipe the wall with a rag.,paints a different color of paint on the wood.,plaster on the wall afterward.\n9315,anetv_4SecbKo1iGE,5774,We see an opening title screen. We,We see an opening title screen.,We,gold,see a group of men in a kayak standing in a river.,see opening screens on ingredient on various items again.,see a mans hands gestures towards wood.,see a toddler juicing a tube on a jar.\n9316,anetv_Cz5fahiO1AA,8530,A man is shown speaking to the camera and close up of various cook pots and pans. He,A man is shown speaking to the camera and close up of various cook pots and pans.,He,gold,pours noodles and salt into a pot and stirs the noodles around while speaking to the camera.,walks out of the water.,is then seen mixing a drink and stopping to speak to a fish.,walks over and grabs a coffee cup and pours them in a cup.\n9317,anetv_Cz5fahiO1AA,10427,\"After, the man drains the penne pasta and put it in a pot. Next, the man\",\"After, the man drains the penne pasta and put it in a pot.\",\"Next, the man\",gold,shows the spaghetti bread to wrap the sandwich into a small bowl.,puts pasta in a pot on a conference table.,adds sauce and water.,carves up the chopped cake.\n9318,anetv_Cz5fahiO1AA,8531,He pours noodles and salt into a pot and stirs the noodles around while speaking to the camera. He,He pours noodles and salt into a pot and stirs the noodles around while speaking to the camera.,He,gold,\"checks the noodles with a knife and then pours the noodles, water, and sauce into a pan.\",extends the pan and begins massaging it.,cuts up his sandwich and continues speaking to the camera.,bends down and picks up another bottle and shows how to cut the rest.\n9319,anetv_5DBzvN5Qe_0,14499,She uses a hula hoop to go in circles. She,She uses a hula hoop to go in circles.,She,gold,drops the energy disc through the hoop.,acts silly as she demonstrates how she can use the hula hoop.,comes to a pond on the pier of sea.,gracefully rinses it into her book.\n9320,anetv_5DBzvN5Qe_0,14498,A girl does flips in front of a room full of children. She,A girl does flips in front of a room full of children.,She,gold,\"leaves someone around, and follows him across the dance floor.\",is holding a baby is sitting down before the baby.,takes the baton from her mouth and strides forward.,uses a hula hoop to go in circles.\n9321,anetv_0bXzFAKRoBU,9772,Another man is seen holding a guitar and several shots of a stage are shown. The musician grabs a microphone and the guitarist,Another man is seen holding a guitar and several shots of a stage are shown.,The musician grabs a microphone and the guitarist,gold,jumps on stage with a cigarette in his mouth.,sprays the brim on his cap.,plays and ends with a close up clips and his peeping out of the door.,begins to demonstrate how to play electric plays.\n9322,lsmdc3022_DINNER_FOR_SCHMUCKS-10276,17804,\"That evening, he walks up outside an art gallery. Inside, it\",\"That evening, he walks up outside an art gallery.\",\"Inside, it\",gold,'s packed with people.,is pretty late at night.,moves him to someone.,fires several brittle letters.\n9323,lsmdc3022_DINNER_FOR_SCHMUCKS-10276,17805,\"Inside, it's packed with people. Someone\",\"Inside, it's packed with people.\",Someone,gold,\"watches them carefully, as a girl takes railing.\",is an old major.,lands on it and backtracks.,looks through the window and spots a brunette woman.\n9324,lsmdc3022_DINNER_FOR_SCHMUCKS-10276,17806,Someone looks through the window and spots a brunette woman. He,Someone looks through the window and spots a brunette woman.,He,gold,hunches over a chair and spots a red naked figure lying on the bed.,glances down to see if they're just finished playing.,smiles and waves at her.,talks to the camera again.\n9325,lsmdc3022_DINNER_FOR_SCHMUCKS-10276,17802,\"The two execs, someone and someone, go. Slightly bemused, someone\",\"The two execs, someone and someone, go.\",\"Slightly bemused, someone\",gold,drinks from a sunken fridge.,lowers his gaze then leaves.,\"'s still, watching him closely.\",looks around the plush office and smiles to himself.\n9326,anetv_LbGr5TjfTBY,4846,\"A cooker talks in a kitchen and shows the inside of a sharpener knife that has discs inside. Then, the man\",A cooker talks in a kitchen and shows the inside of a sharpener knife that has discs inside.,\"Then, the man\",gold,cuts the tomato and shows it complete to a pumpkin with the knife while the first pieces part talking to the camera.,\"uses a welding tool paste the cutting material to dry, a wooden tool in the surface appears on a flat surface.\",puts a knife in the sharpener knife to sharpen.,uses the tool to cut away the trimmer while the vampire speaks to the camera and wipes his face.\n9327,anetv_LbGr5TjfTBY,4847,\"Then, the man puts a knife in the sharpener knife to sharpen. After, the man\",\"Then, the man puts a knife in the sharpener knife to sharpen.\",\"After, the man\",gold,cuts the sharpener with the knife sharpener and cut it.,wash and dry the knife.,removes the paper.,measures metal and put the bag.\n9328,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15193,\"Still kneeling beside the petrified someone, someone notices a line of spiders quickly scuttling across the floor. They\",\"Still kneeling beside the petrified someone, someone notices a line of spiders quickly scuttling across the floor.\",They,gold,\"balances, approaching along behind it's back.\",'s faces gleaming.,\"follow each other up the wall, over the stone windowsill, and out of the open window.\",shoot relief out the door.\n9329,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15200,\"Someone walks up some steps into a smaller room lined with shelves of old books. On one of the shelves high above his head, he\",Someone walks up some steps into a smaller room lined with shelves of old books.,\"On one of the shelves high above his head, he\",gold,lets a yellow canopy venice across the padding.,catches sight of a patched and shabby pointed hat.,has the knife to loosen the rotating wall.,sees a fireplace held tightly.\n9330,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15199,The walls hung with moving portraits of elderly wizards. Someone,The walls hung with moving portraits of elderly wizards.,Someone,gold,walks up some steps into a smaller room lined with shelves of old books.,holds up the phone.,\"staggers out, still staring to his camera.\",\"is facing forward, swaying cautiously to all fours.\"\n9331,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15185,\"In a classroom, students are working quietly at long tables. Someone\",\"In a classroom, students are working quietly at long tables.\",Someone,gold,steps outside toward a house with a painting of old decorated on it.,looks up from his books to see two girls staring at him curiously.,has been signing a document with a word.,\"notices someone standing facing the table, as if he is preparing to slip.\"\n9332,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15189,Even someone refuses to catch his eye. Someone,Even someone refuses to catch his eye.,Someone,gold,\", feet close to the sides, standing by the statue, and only to trade different jacket.\",watches someone and struggles.,puts down his quill and closes his book.,smiles at someone that has been his usual morning coffee.\n9333,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15184,\"He looks from one to the other. In a classroom, students\",He looks from one to the other.,\"In a classroom, students\",gold,look in the grandparents' office.,move about shoe over.,are working quietly at long tables.,stand in every dormitory.\n9334,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15191,He gets up from the table and puts his books under his arm. He,He gets up from the table and puts his books under his arm.,He,gold,senses that all the students are staring at him as he quickly walks out of the room.,wavers on his desk taking it to his hand.,is standing at the counter talking to the drinking bottle.,sits and whispers in someone's ear.\n9335,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15196,\"It slowly turns, and someone steps onto the circular staircase behind it. As the griffin continues to revolve, someone\",\"It slowly turns, and someone steps onto the circular staircase behind it.\",\"As the griffin continues to revolve, someone\",gold,is gradually carried upwards.,carries one to the rotting grave.,raises his wand with his wand.,sees a soldier coming from the taxi people.\n9336,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15190,Someone puts down his quill and closes his book. He,Someone puts down his quill and closes his book.,He,gold,looks after him above the diner.,gets up from the table and puts his books under his arm.,talks to someone in two - folded file book.,glances back at someone.\n9337,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15186,Someone looks up from his books to see two girls staring at him curiously. He,Someone looks up from his books to see two girls staring at him curiously.,He,gold,\"glances across at people, who both give him an embarrassed smile.\",steps out from another aisle and sits at the coffee table.,does not leave or notice.,lunges out at him like a wand.\n9338,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15188,A group of students at another table look away quickly as he turns towards them. Even someone,A group of students at another table look away quickly as he turns towards them.,Even someone,gold,knocks the sword by his hand.,refuses to catch his eye.,is staring at the receiver full of fear on someone eyes.,keeps up on them all.\n9339,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15197,\"As the griffin continues to revolve, someone is gradually carried upwards. At the top, he\",\"As the griffin continues to revolve, someone is gradually carried upwards.\",\"At the top, he\",gold,grabs the keys from cabin 10 and punches them in the drovers ditch.,steps off and walks down a passage towards a large wooden door.,\"marches down some stairs and runs along other deck, through a row of violent houses.\",pulls back onto the ship to form a trembling against the top above it.\n9340,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15198,\"At the top, he steps off and walks down a passage towards a large wooden door. The walls\",\"At the top, he steps off and walks down a passage towards a large wooden door.\",The walls,gold,are lined with dotted and swiffer tools.,hung with moving portraits of elderly wizards.,\"are filled with flowers, etc.\",are filled with stained wood edges.\n9341,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15187,\"He glances across at people, who both give him an embarrassed smile. A group of students at another table\",\"He glances across at people, who both give him an embarrassed smile.\",A group of students at another table,gold,look away quickly as he turns towards them.,sit in an ambulance.,hangs on a podium.,covers their photos on someone's wall.\n9342,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15192,\"Lit by flaming torchlight, he sees the ghost of Nearly Headless Nick hanging stiffly in mid - air, and a boy, someone, lying petrified on the ground, his eyes wide open, his arms stuck out in front of him. Still kneeling beside the petrified someone, someone\",\"Lit by flaming torchlight, he sees the ghost of Nearly Headless Nick hanging stiffly in mid - air, and a boy, someone, lying petrified on the ground, his eyes wide open, his arms stuck out in front of him.\",\"Still kneeling beside the petrified someone, someone\",gold,notices a line of spiders quickly scuttling across the floor.,lies back and studies the cat's manuscript with a light expression.,extends the blank vibrant bobbing back from the boat as he levels into the water.,walks towards someone and grabs on back and loosens his tie.\n9343,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93016,15195,\"Someone spreads her long fingers and points them at the statue. It slowly turns, and someone\",Someone spreads her long fingers and points them at the statue.,\"It slowly turns, and someone\",gold,steps onto the circular staircase behind it.,barrels down the chimney.,sits on someone's bunk.,runs under a score poster.\n9344,anetv_NSi8DorB6L0,18448,\"This man is water skiing and he does it sitting down and standing up, except he's holding onto the handle bars backwards. While he's skiing he tries to around to stand forward like normal, but he\",\"This man is water skiing and he does it sitting down and standing up, except he's holding onto the handle bars backwards.\",\"While he's skiing he tries to around to stand forward like normal, but he\",gold,goes flying when he tries to turn around.,does this now and gives sticks going react.,\"does a trick as his go, he grabs it and walks away.\",is immediately extremely successful.\n9345,anetv_fBbjlXgtd50,16584,A woman wearing classes dances in front of the camera. The woman,A woman wearing classes dances in front of the camera.,The woman,gold,go down on bench as an oncoming door slams.,turns around while raising an arm.,takes the left to split the frame over stage.,picks up a woman's hand.\n9346,anetv_n7dHbqoEiek,3362,The man takes a break and then climbs a ladder and uses the tool with an extended arm to trim the top of the wall from the top of the ladder. The man then,The man takes a break and then climbs a ladder and uses the tool with an extended arm to trim the top of the wall from the top of the ladder.,The man then,gold,takes off the tire by removing the handlebars onto the wood rim.,\"spreads more cement onto a board, and other lady stands with him on his legs and the videos being spotted are being shown.\",\"closes the rubber with a piece of cloth that lies evenly corner, covered in the right one.\",moves the ladder down the length of the wall to continue trimming the foliage.\n9347,anetv_ZKP5J7OKEvI,1581,A small group of people are seen sitting on the side and lead into two people dancing together. The people,A small group of people are seen sitting on the side and lead into two people dancing together.,The people,gold,continue to move around and ends with the person driving the camera around.,begin the dance together and dancing together with one another while holding a pose.,continue dancing along the floor and end by clapping with the band.,continue dancing around the circle while playing together and doing it.\n9348,anetv_S-4ftlylgig,2635,A measuring tape is shown up close. We,A measuring tape is shown up close.,We,gold,person is seen speaking to the camera and pointing to the tiles.,are shown on the screen as well as presented with the feel of the men standing behind.,we see the paper covered with a paper while they put it on.,see a track person preparing to run.\n9349,anetv_S-4ftlylgig,2636,We see a track person preparing to run. He,We see a track person preparing to run.,He,gold,\"runs, taking a huge leap into the sand, landing on the number 18.\",goes hitting the board and is shuffle body.,jump down a little skateboard in a skate park.,goes to the bar.\n9350,lsmdc3092_ZOOKEEPER-45261,10804,\"Nodding along to the beat, he looks to an apartment building. A woman's shapely legs\",\"Nodding along to the beat, he looks to an apartment building.\",A woman's shapely legs,gold,passes from underneath the frame.,head down the front steps.,\"are cleaned outside a kitchen, with long tables adorned with flowers.\",lies on her shiny gold dress.\n9351,lsmdc3092_ZOOKEEPER-45261,10801,Someone shoots his colleague an uncomfortable smile. The zookeeper,Someone shoots his colleague an uncomfortable smile.,The zookeeper,gold,swings his fist then faces someone from the hood.,reaches into his right pocket.,charges forward and snaps him off.,watches the small child.\n9352,lsmdc3092_ZOOKEEPER-45261,10802,The zookeeper reaches into his right pocket. He,The zookeeper reaches into his right pocket.,He,gold,pulls out the keys.,lights up and sparks go.,unwraps a dart from one top and lifts it up from the table.,\"is wheeled off from the room, through the far window of his bazaar.\"\n9353,lsmdc3092_ZOOKEEPER-45261,10800,He reaches into Venom's left pants pocket and digs around. Someone,He reaches into Venom's left pants pocket and digs around.,Someone,gold,drops in his seat and leans his head against the kitchen table.,backs to the station.,shoots his colleague an uncomfortable smile.,screwdriver to pelt its contents.\n9354,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13617,Someone puts an arm around someone. She,Someone puts an arm around someone.,She,gold,walks past the balcony.,kisses him softly on the cheek.,looks down at her mother - in - law.,leaves with someone thrown beside her.\n9355,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13616,His eyes turned to a man seated with his young flexed and head daughter. Someone,His eyes turned to a man seated with his young flexed and head daughter.,Someone,gold,'s camera lifts up the back of his head.,puts an arm around someone.,takes a breath and makes a temple.,\"holds his weapon out of nowhere, someone wanders off.\"\n9356,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13614,She throws her arms around him. They,She throws her arms around him.,They,gold,turn toward the other side.,\"dance, then she focuses on them.\",sit beside each other on a tram.,associates the dome's base.\n9357,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13612,\"Smiling, someone turns to look at him and stares gravely at his reflection. He\",\"Smiling, someone turns to look at him and stares gravely at his reflection.\",He,gold,starts to make his way across the icy pantry.,withdraws his hand until someone's face is drenched in pain.,takes his arm from around her shoulder and looks her in the eye.,\"opens the gate, and pound back the steel.\"\n9358,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13619,\"Night, they sit opposite each other in a diner. She\",\"Night, they sit opposite each other in a diner.\",She,gold,watches as someone and his friends leave through the gloomy frame as he falls.,lands on the skate's back.,\"pulls down a book, as the editor's head follow.\",finishes an ice cream sundae then brushes a tiny piece of spilled ice cream from her swollen belly.\n9359,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13613,He takes his arm from around her shoulder and looks her in the eye. Someone,He takes his arm from around her shoulder and looks her in the eye.,Someone,gold,approaches him and whispers something to him.,wears a searching expression.,\"shuts her eyes, then turns away.\",\"takes a turn, then glances at the wood.\"\n9360,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13611,\"Someone has his arm around her as they gaze at themselves in the mirror. Smiling, someone\",Someone has his arm around her as they gaze at themselves in the mirror.,\"Smiling, someone\",gold,takes two deep breaths then nods emphatically.,rubs his hands together.,turns to look at him and stares gravely at his reflection.,lowers his head and closes his eyes.\n9361,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13620,She finishes an ice cream sundae then brushes a tiny piece of spilled ice cream from her swollen belly. He,She finishes an ice cream sundae then brushes a tiny piece of spilled ice cream from her swollen belly.,He,gold,puts it into a microwave oven and sets up the match.,begins to melt the parts into her arm to calm her side and disappears a tiny bit.,leans back in his seat.,wipes the half of her neck and turns off it in her other direction.\n9362,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13615,They sit beside each other on a tram. Someone,They sit beside each other on a tram.,Someone,gold,\"stands at the curb, shivering at his wallet.\",stares through unblinking eyes.,sits in front of the fire.,smiles as someone stares out of the window.\n9363,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86928,13618,\"She kisses him softly on the cheek. Night, they\",She kisses him softly on the cheek.,\"Night, they\",gold,\"drift over a dark - shrouded hill, passing clouds.\",sit opposite each other in a diner.,drive up to the parking lot.,put their empty glasses down to the basin.\n9364,lsmdc0001_American_Beauty-45607,17037,\"Someone smiles, aware of the power she has over him. He\",\"Someone smiles, aware of the power she has over him.\",He,gold,pulls back from him as someone marks a curved embankment that bordered has padlocked arranged.,takes a few steps to her with her foot.,starts to wriggle out of someone's car.,\"is mesmerized; grateful, even.\"\n9365,lsmdc3026_FRIENDS_WITH_BENEFITS-1534,14394,Later a newscast shows someone. They,Later a newscast shows someone.,They,gold,cut the sandwich into half.,fight for the remote.,zoom through a forward row of course.,\"leverage on a skate wall and slices of tall, mild, sunny field.\"\n9366,lsmdc3026_FRIENDS_WITH_BENEFITS-1534,14393,A helicopter rises in front of them. Someone,A helicopter rises in front of them.,Someone,gold,is carried up the lower level staircase.,uses her phone to pick up a phone.,switches on the panel.,stares at the chopper.\n9367,anetv_mpC_UTM1tWQ,5939,A man is holding a disc in his hand. He,A man is holding a disc in his hand.,He,gold,\"grabs the cube, then puts it down.\",does a brief pause then pauses.,shows how to do it.,spins around several times.\n9368,anetv_mpC_UTM1tWQ,39,\"A man with a blue shirt, blue sweat pants and green socks is standing outside in a large field walking into a circle of cement. Once the guy is on the circle, he\",\"A man with a blue shirt, blue sweat pants and green socks is standing outside in a large field walking into a circle of cement.\",\"Once the guy is on the circle, he\",gold,spins around and walks off the court and hits the sheets.,begins walking around the circle to find his perfect spot.,spins around and runs off.,turns and walks away and continue talking.\n9369,anetv_mpC_UTM1tWQ,5940,He spins around several times. He,He spins around several times.,He,gold,jumps up to another point and starts a routine.,walks into the track into the park.,goes back to work several times.,releases the disc onto the field in front of him.\n9370,anetv_mpC_UTM1tWQ,40,\"Once the guy is on the circle, he begins walking around the circle to find his perfect spot. Everything is perfect and then he\",\"Once the guy is on the circle, he begins walking around the circle to find his perfect spot.\",Everything is perfect and then he,gold,throws the discus that was in his hand into the field as he is spinning around.,begins jumping along the chalkboard and holding other triangle.,does it again and appears to be seen again from the very play well.,begins to pick up the stick and begins to head with it.\n9371,lsmdc1017_Bad_Santa-7541,4227,Some noise is emanating from the changing room catches attention. Someone,Some noise is emanating from the changing room catches attention.,Someone,gold,decides to go and investigate.,slips into a warm bathroom.,finishes a more drink and leaves.,is carrying the phone in his hand.\n9372,lsmdc1017_Bad_Santa-7541,4219,\"As the kid unlocks the door, someone pulls out a cotch and puts on a black balaclava. Inside, someone\",\"As the kid unlocks the door, someone pulls out a cotch and puts on a black balaclava.\",\"Inside, someone\",gold,blows smoke through the foyer.,is watching a tv program featuring dancing fruit.,enters the bathroom and steps forward.,finds someone in the bed with her hair at her side.\n9373,lsmdc1017_Bad_Santa-7541,4223,Someone opens it and removes wads of cash and a passport. Someone,Someone opens it and removes wads of cash and a passport.,Someone,gold,shuts the safe and goes and sits down in an armchair.,closes the drink too.,\", he sets it up.\",\"resentfully, she, finally gives a sultry look, and.\"\n9374,lsmdc1017_Bad_Santa-7541,4224,\"Someone shuts the safe and goes and sits down in an armchair. The next day at the mall, someone, the manager,\",Someone shuts the safe and goes and sits down in an armchair.,\"The next day at the mall, someone, the manager,\",gold,is doing his rounds.,gets out of the car.,sits by the window on a large picturesque lounge and sips a drink.,pulls up to the house.\n9375,lsmdc1017_Bad_Santa-7541,4226,He strolls through a woman's wear shop for larger ladies. Some noise,He strolls through a woman's wear shop for larger ladies.,Some noise,gold,and costumes are shown stuck too all night.,is emanating from the changing room catches attention.,hangs from wry as her sisters enters.,hangs in pyramids that we are presenting.\n9376,lsmdc1017_Bad_Santa-7541,4220,\"Inside, someone is watching a tv program featuring dancing fruit. Someone\",\"Inside, someone is watching a tv program featuring dancing fruit.\",Someone,gold,\"picks up a flower and removes a large piece of fruit, slots it into a shelf.\",\"walks past someone, apparently unmoved by the fact that someone is wearing a black balaclava.\",\"picks up the gun and sees someone, leaning on someone's window, looking at the floor.\",wakes up and examines the tags.\n9377,lsmdc1017_Bad_Santa-7541,4225,\"The next day at the mall, someone, the manager, is doing his rounds. He\",\"The next day at the mall, someone, the manager, is doing his rounds.\",He,gold,watches his daughter leave.,rounds the corner court.,sits alone at a table in the cemetery.,strolls through a woman's wear shop for larger ladies.\n9378,lsmdc1017_Bad_Santa-7541,4222,Someone turns to the kid. Someone,Someone turns to the kid.,Someone,gold,stares out the door next to it's side.,jumps off in a bucket of pool.,pulls up his balaclava.,lies face down and applies a bandage over his chest.\n9379,lsmdc1017_Bad_Santa-7541,4217,\"Apparently unmoved, the kid keeps staring at someone. Someone\",\"Apparently unmoved, the kid keeps staring at someone.\",Someone,gold,\"turns off his engine and one working headlight, then gets out of the car with the kid.\",rolls off his bed and lies across his bed in bed.,\"looks at him briefly, then quickly slides the straw into someone's mouth.\",picks up several bottom bottles from the backseat.\n9380,lsmdc1017_Bad_Santa-7541,4218,\"Someone turns off his engine and one working headlight, then gets out of the car with the kid. Someone\",\"Someone turns off his engine and one working headlight, then gets out of the car with the kid.\",Someone,gold,has teh the door and through a crack in the car.,admires the affluent suburban house they are in front of.,wears an emerald helmet.,kills the patrol car as four cars drive away from shore.\n9381,lsmdc1017_Bad_Santa-7541,4221,\"Someone walks past someone, apparently unmoved by the fact that someone is wearing a black balaclava. Someone\",\"Someone walks past someone, apparently unmoved by the fact that someone is wearing a black balaclava.\",Someone,gold,begins to fold someone's ankle.,\"is sitting on the table, watching someone.\",turns to the kid.,has climbed into a brown velvet bag.\n9382,anetv_8DZj0ggPr74,18364,They then move out onto the ice and begin skating around. One man fist,They then move out onto the ice and begin skating around.,One man fist,gold,slams the boy into a robot.,takes a large bite and one resulting scores.,helps others to speak to another intercepts as they flip off and lands on the rope.,bumps another and ends by walking away.\n9383,anetv_8DZj0ggPr74,18363,A large group of players are lined up and seen speaking to one another. They then,A large group of players are lined up and seen speaking to one another.,They then,gold,begin playing foosball with one another and front hitting each other.,continue playing tennis rackets hitting one another.,move out onto the ice and begin skating around.,begin speaking to one another while still looking at the camera.\n9384,anetv_XX2sXEmR4BE,12542,A woman wearing white is on a bicycle machine and is leaning forward as she struggles to keep peddling. Another woman wearing pink,A woman wearing white is on a bicycle machine and is leaning forward as she struggles to keep peddling.,Another woman wearing pink,gold,\"turns the weight over and spins in circles with her hands on two hips, then she writhes going on to exercise.\",jeans walks very fast she makes a gun beside the wallet.,\"casually walks in, removes her jacket and sits on the bike next to her and begins to peddle.\",ropes three women bungee jumping off the walk.\n9385,anetv_XX2sXEmR4BE,12543,\"Another woman wearing pink casually walks in, removes her jacket and sits on the bike next to her and begins to peddle. After a few seconds of peddling, the woman in pink\",\"Another woman wearing pink casually walks in, removes her jacket and sits on the bike next to her and begins to peddle.\",\"After a few seconds of peddling, the woman in pink\",gold,lifts her eyes and smiles with mouthwash in the air.,\"pants and falls and proceeds into a dancer's shirt, then she grabs her legs and starts walking on the ground.\",\"stops peddling, grabs her jacket, smiles at the woman in white and walks away.\",teaches the teen egg to braid.\n9386,anetv_XX2sXEmR4BE,7465,Another woman in pink walks up and gets onto a bike and starts writing. The woman in pink,Another woman in pink walks up and gets onto a bike and starts writing.,The woman in pink,gold,gets off of the bike and walks away.,digs into gardening scissors to come them on.,makes go after it pouring.,is sitting on the pedals.\n9387,anetv_5LHIoaSvKCU,226,A young child is seen speaking to the camera while holding up a glass and walking to a cabinet. She,A young child is seen speaking to the camera while holding up a glass and walking to a cabinet.,She,gold,moves past the camera and leads into more clips of her jumping.,drops the glass up and throws it through the cup.,puts olive oil into a display of various colors and paints a table by the side.,fills up the glass and peels lemons into the water.\n9388,anetv_5LHIoaSvKCU,227,She fills up the glass and peels lemons into the water. She then,She fills up the glass and peels lemons into the water.,She then,gold,shows off a product and takes in lighter out cube shaped.,grabs a glass of a drink and pours it into a glass.,mixes a mixer of the ice with a glass and puts the tip right in it.,uses a spoon to drink the water as well as a straw and nodding her head waving.\n9389,anetv_lzcVvTHZlQo,487,One man beats the other and the two hold up their arms to cheer and everybody celebrates. One man in the audience looks disappointing and the winner,One man beats the other and the two hold up their arms to cheer and everybody celebrates.,One man in the audience looks disappointing and the winner,gold,holds up a boy.,\"plays a long disgust, gesturing toward the music.\",runs off to the audience.,drops into the pool quickly.\n9390,anetv_fLvPz8W00l4,19926,A man shows the proper way to lift a kettlebell. He,A man shows the proper way to lift a kettlebell.,He,gold,shows a piece of wood over the entire floor.,shows with his hips how not to do it.,continues shaving while interviewing the camera.,bows to the camera at different angles.\n9391,anetv_BtKLAioC21g,3242,A man wearing ski goggles adjusts the camera. Several people,A man wearing ski goggles adjusts the camera.,Several people,gold,are seen skiing down a steep slope.,are shown going down the slope underwater.,move after a ring on their snowboards.,are then seen in canoes flying underwater through the turbulent water.\n9392,anetv_BtKLAioC21g,3243,Several people are seen skiing down a steep slope. They,Several people are seen skiing down a steep slope.,They,gold,are on the floor below.,rush through the gate and approach the vault.,are rafting down a river.,continue skiing faster and faster as they go downhill.\n9393,anetv_jmS3NFo4XCc,6859,We change angle and two more darts hit the board. The screen fades to black and we,We change angle and two more darts hit the board.,The screen fades to black and we,gold,see the goal again.,see the closing title screen.,see the men dive into the pool.,see the end credits.\n9394,anetv_IsM_xfhJzps,860,\"A man exercises face down on a cardio machine, and then stand up and talks. After, the man\",\"A man exercises face down on a cardio machine, and then stand up and talks.\",\"After, the man\",gold,starts to ride back into the ponytail and does a wheelie on the floor.,shows off a screw.,irons the steps and a handstand and irons one piece of the ski.,sits on the cardio machine and pulls a handle until on front his chest while explaining.\n9395,anetv_IsM_xfhJzps,2850,A man is working out on a machine. He,A man is working out on a machine.,He,gold,is putting the balls down on them.,starts spraying a can with a hose.,is getting his beard shaved off.,stands up and talks to the camera.\n9396,anetv_IsM_xfhJzps,2851,He stands up and talks to the camera. He,He stands up and talks to the camera.,He,gold,sets a big box down beside a stack of cards.,sits down on an exercise machine and starts to work out again.,gets ready to jump in the water.,resumes flipping and spinning in the air.\n9397,lsmdc3002_30_MINUTES_OR_LESS-851,2360,As someone enters someone casually turns away. It,As someone enters someone casually turns away.,It,gold,whips her pocket then rubs it into her temple.,gives him a hug.,\"freezes, his lips quivering.\",shows vito's pizza place.\n9398,lsmdc3002_30_MINUTES_OR_LESS-851,2359,\"In the stairwell, someone talks on the phone. As someone\",\"In the stairwell, someone talks on the phone.\",As someone,gold,\"dials, someone's on a phone.\",leaves the kitchen area.,enters someone casually turns away.,\"does her, inside goes remorsefully.\"\n9399,anetv_G-EDozcMT_4,5836,An intro leads into several shots of skateboarders riding around on rails in a large city. The camera,An intro leads into several shots of skateboarders riding around on rails in a large city.,The camera,gold,pans all around the roof and the men continuing to skate down the path.,leads across a large screen parallel to the man stop and eventually shows another woman spinning into a picture.,pans up a man on the water while interacting with a man.,follows these borders closely as they perform tricks up stairs and over benches.\n9400,anetv_G-EDozcMT_4,5837,The camera follows these borders closely as they perform tricks up stairs and over benches. The men,The camera follows these borders closely as they perform tricks up stairs and over benches.,The men,gold,jump different water and play the routine throughout an past.,continue to hold their rackets in the excitement and all of the kids quickly pausing.,continue skating on and ends with a police woman smiling and giving a thumbs up to the camera.,run down the hill and down the river.\n9401,lsmdc3042_KARATE_KID-19639,7954,A basin stands paved with the Yin - Yang of black and white marble. The basin,A basin stands paved with the Yin - Yang of black and white marble.,The basin,gold,is gently enclosed and there are some text beyond the arizona arizona.,looks out of the crack through glass shutters around its glass.,stands upon a compass - like framework of white stone that's submerged in a shallow pool.,\"is still open, looking back to its depths.\"\n9402,lsmdc3042_KARATE_KID-19639,7930,\"The teacher smiles at the boy, who happily takes in the stunning terrain. The taxi\",\"The teacher smiles at the boy, who happily takes in the stunning terrain.\",The taxi,gold,passes its set of doors towards the stop.,crosses a lofty stone bridge spanning the tranquil river.,\"gets off, suspended side by side, and leaps up the front of a hotel.\",downs the flow of traffic.\n9403,lsmdc3042_KARATE_KID-19639,7936,\"Someone marches up the narrow steps, followed by his student. One section of the stairs\",\"Someone marches up the narrow steps, followed by his student.\",One section of the stairs,gold,\"finds one in who's flashlight - swept, plastic - backpack.\",rests on a fin of rock barely wider than the stairway itself.,is lowered in a young man eight years younger.,carries one giant box over.\n9404,lsmdc3042_KARATE_KID-19639,7943,\"Where two railings make a corner, a monk does a split from one to the other, and snaps open a large fan. From a pair of twin platforms, he\",\"Where two railings make a corner, a monk does a split from one to the other, and snaps open a large fan.\",\"From a pair of twin platforms, he\",gold,rubs a switch on the electrical panel which he makes turns at the foot.,smooths a set of metal waves just above the carpet.,\"pushes himself up by his knuckles, and balances.\",smashes someone's forearm.\n9405,lsmdc3042_KARATE_KID-19639,7947,\"Balancing on one foot, the woman sweeps an arm in an arc behind her head. The disciple\",\"Balancing on one foot, the woman sweeps an arm in an arc behind her head.\",The disciple,gold,pan startling the giant crew in the sky and over them.,shoots into the air with her mouth and vampires on the side.,arrives at a stop and two kinds of fighters are fired.,tucks her extended leg in briefly.\n9406,lsmdc3042_KARATE_KID-19639,7946,\"As she straightens, the reptile rises to match her. Balancing on one foot, the woman\",\"As she straightens, the reptile rises to match her.\",\"Balancing on one foot, the woman\",gold,sweeps an arm in an arc behind her head.,\"crosses the shadows to latino foot, grabbing the wood on its foot.\",kicks it high above her head and strides towards the tops of the red horses.,maintains her twin disguise.\n9407,lsmdc3042_KARATE_KID-19639,7955,The basin stands upon a compass - like framework of white stone that's submerged in a shallow pool. The boy solemnly,The basin stands upon a compass - like framework of white stone that's submerged in a shallow pool.,The boy solemnly,gold,dips it into sink and sticks his head in the goblet of light.,\"brightens someone's darkness as his shield contorts in the chamber of a train, then coats him and some wall stands.\",bends back as he moves the brush through the garden.,steps up on one of the white - stone beams.\n9408,lsmdc3042_KARATE_KID-19639,7945,\"The female ascetic stands on an ornamental - stone jut over the 1, 000 - foot drop. As she straightens, the reptile\",\"The female ascetic stands on an ornamental - stone jut over the 1, 000 - foot drop.\",\"As she straightens, the reptile\",gold,lashes and blazing flame illuminates his muscles for his quidditch hero.,rises to match her.,\"bursts into flame, then lights in.\",shines against the ground and hides on the grass in its snapping branches.\n9409,lsmdc3042_KARATE_KID-19639,7950,\"Further down the corridor, someone stops. Doubling back, he\",\"Further down the corridor, someone stops.\",\"Doubling back, he\",gold,scans the huge med troops.,steps into the light.,aims his gun at her.,stares resolutely at someone.\n9410,lsmdc3042_KARATE_KID-19639,7939,\"Someone stops, leaning against a stone banister. Someone\",\"Someone stops, leaning against a stone banister.\",Someone,gold,continues up without breaking his stride.,\"takes out her hands as someone pierces her wood, as she eyes the lifeboat.\",\"and others escape through the door revealing her father, who sits by her, wearing blonde kangaroo.\",looks coolly from his bag.\n9411,lsmdc3042_KARATE_KID-19639,7951,\"Doubling back, he steps into the light. He\",\"Doubling back, he steps into the light.\",He,gold,\"shoots him at the neck, which brings him back and outside.\",lights another cigarette and smokes.,\"gropes his hand in one hand as a huge, powerful blast of energy illuminates the ice making its way into a glass chamber.\",allows a faint smile and shifts his gaze.\n9412,lsmdc3042_KARATE_KID-19639,7929,\"Later, as it travels along a winding road overlooking the mountains. The teacher\",\"Later, as it travels along a winding road overlooking the mountains.\",The teacher,gold,\"smiles at the boy, who happily takes in the stunning terrain.\",walks waves to a carrier who's still tied to a horse.,sets off her outfit.,returns their tennis pick.\n9413,lsmdc3042_KARATE_KID-19639,7952,He allows a faint smile and shifts his gaze. The boy,He allows a faint smile and shifts his gaze.,The boy,gold,stares at the couple and looks away slightly.,switches off the tv.,\"stares off with a knitted brow, then walks off.\",\"turns, wide - eyed.\"\n9414,lsmdc3042_KARATE_KID-19639,7931,\"The taxi crosses a lofty stone bridge spanning the tranquil river. Later, they\",The taxi crosses a lofty stone bridge spanning the tranquil river.,\"Later, they\",gold,race through the arched halls side above.,arrive at a stairway leading down to a footbridge.,find a woman at the gaunt tiger with medical procedures and groom.,float near a blue van.\n9415,lsmdc3042_KARATE_KID-19639,7948,The disciple tucks her extended leg in briefly. The cobra,The disciple tucks her extended leg in briefly.,The cobra,gold,gets up on her knees.,\"mirrors her, weaving left and right.\",does the double take.,puts on his right forearm as she skates affectionately on the skis.\n9416,lsmdc3042_KARATE_KID-19639,7934,\"Now, monks in snowy robes and canary - yellow scarves sit in lotus position, along the rim of a stone dam. Now, a jagged peak\",\"Now, monks in snowy robes and canary - yellow scarves sit in lotus position, along the rim of a stone dam.\",\"Now, a jagged peak\",gold,slams onto a rocky wall as someone anxiously dances with him.,\"stands at the bottom of the river, across the bridge to battle tents.\",smears angrily dust from the ceiling by the slate.,looms high above mountains patched with snow.\n9417,lsmdc3042_KARATE_KID-19639,7932,\"Later, they arrive at a stairway leading down to a footbridge. Beyond it, a path\",\"Later, they arrive at a stairway leading down to a footbridge.\",\"Beyond it, a path\",gold,leads into a find motel room.,leads up onto a balcony.,winds up into the mountains.,leads to the kitchen.\n9418,lsmdc3042_KARATE_KID-19639,7941,Someone leads his pupil up onto a small balcony. It,Someone leads his pupil up onto a small balcony.,It,gold,leads them into a stone courtyard.,\"rises together, opens his mouth, and frowns.\",\"dives off the railing railing, turning.\",walks out then discusses.\n9419,lsmdc3042_KARATE_KID-19639,7956,The boy solemnly steps up on one of the white - stone beams. The boy,The boy solemnly steps up on one of the white - stone beams.,The boy,gold,splashes water on the tree top.,\"opens one hand, eyes the other, then climbs.\",shakes his head and leads his daughter away.,lays his hands on the rim.\n9420,lsmdc3042_KARATE_KID-19639,7942,\"As someone leads someone past. Where two railings make a corner, a monk\",As someone leads someone past.,\"Where two railings make a corner, a monk\",gold,\"does a split from one to the other, and snaps open a large fan.\",pulls out a curtain from the stand men at gunpoint.,pulls spears along to a arcade.,walks down the corridor towards his ceiling.\n9421,lsmdc3042_KARATE_KID-19639,7935,Our view tilts down to a dizzyingly long stairway beneath us. Someone,Our view tilts down to a dizzyingly long stairway beneath us.,Someone,gold,\"marches up the narrow steps, followed by his student.\",fights his way across the wooden bridge towards the cave.,plays a tune in along the gray vessel.,wanders from the light and continues deep dark.\n9422,lsmdc3042_KARATE_KID-19639,7938,They ascend the steep run. Someone,They ascend the steep run.,Someone,gold,runs up and leaps at the center of someone room.,\"stops, leaning against a stone banister.\",blocks the gate with his abandoned armored.,\"pulls up outside his car and strides toward the house, shrugging on her phone.\"\n9423,lsmdc3042_KARATE_KID-19639,7958,Someone lifts his dripping face. He,Someone lifts his dripping face.,He,gold,watches his teacher roaming the chamber wistfully.,shifts his gaze to the floor's hangar.,lifts his right leg to reveal his temple.,works on someone's temples.\n9424,lsmdc3042_KARATE_KID-19639,7940,Rust - red walls support ancient rib - tiled roofs. Someone,Rust - red walls support ancient rib - tiled roofs.,Someone,gold,slumps backwards as someone forces his way through the statue and the mjolnir lands.,looks out with sheepishly as someone follow the guests korean through the park.,\"cot into some baggie, then grabs palladium detonator and swings it overhead pedaling through the opening.\",leads his pupil up onto a small balcony.\n9425,lsmdc3042_KARATE_KID-19639,7949,\"The cobra mirrors her, weaving left and right. As someone stares at the spectacle, his head\",\"The cobra mirrors her, weaving left and right.\",\"As someone stares at the spectacle, his head\",gold,leans forward and extends.,jerks at the back.,tips side to side as well.,drops back and falls with his outstretched hands.\n9426,lsmdc3042_KARATE_KID-19639,7944,\"From a pair of twin platforms, he pushes himself up by his knuckles, and balances. Now, an enclosed walkway\",\"From a pair of twin platforms, he pushes himself up by his knuckles, and balances.\",\"Now, an enclosed walkway\",gold,is covered in white marble.,bears his name on the floor.,\"opens revealing a reserved, packed room.\",stands built into a high cliff face.\n9427,lsmdc3042_KARATE_KID-19639,7928,\"Someone leads someone off the train and hails a motorcycle taxi. Later, as it\",Someone leads someone off the train and hails a motorcycle taxi.,\"Later, as it\",gold,\"spins, crowd is luxurious.\",travels along a winding road overlooking the mountains.,enters a quaint deserted apartment.,\"soar through rough water, the chopper's staff appear.\"\n9428,lsmdc3042_KARATE_KID-19639,7957,The boy lays his hands on the rim. He,The boy lays his hands on the rim.,He,gold,continues to follow a wave as a canoe approaches the area.,plunges his face into the water.,finishes up prizes and then circles the castle.,hooked the bolts of foam suction around the man's head.\n9429,lsmdc3042_KARATE_KID-19639,7961,Someone ripples the water with his finger. He,Someone ripples the water with his finger.,He,gold,squints to someone at the u - boat.,arrives down at the body then starts to throw the keys.,points to someone's head and heart.,throws the water onto someone's chest and hurls him over the water.\n9430,anetv_9N1525JmqZQ,18033,The camera zooms in on the pit and shows a man kneeling own in front. The man,The camera zooms in on the pit and shows a man kneeling own in front.,The man,gold,lays plaster out on the front and begins putting tiling down over the plaster.,demonstrates as he films it.,\"is seen speaking to the camera in the end, ending with the man talking on his face.\",continues speaking to the camera and ends by lifting a bow and speaking.\n9431,anetv_9N1525JmqZQ,18032,A close up of a fireplace is seen with the camera moving around the front. The camera,A close up of a fireplace is seen with the camera moving around the front.,The camera,gold,pans around to the woman playing the piano while showing off a couple of people.,pans around the room and leads into the match in various split.,pans around the frame and leads into clips of him paying close to the camera.,zooms in on the pit and shows a man kneeling own in front.\n9432,anetv_iiqaJGokpEw,551,A group of people are gathered in a yard. A man,A group of people are gathered in a yard.,A man,gold,comes away from the class.,walks into a crowded crowd and leads into the men throwing guns.,is mowing the lawn.,is using a stick while he is blindfolded to hit a pinata.\n9433,anetv_iiqaJGokpEw,1080,A man spins in circles to make himself dizzy and disoriented. He then,A man spins in circles to make himself dizzy and disoriented.,He then,gold,spins again and jumps off a watchtower.,throws a last disc in the air and lands on the ground to his side.,takes her gun from the towering wall and explodes.,\"swings a bat at a pinata, missing and hitting the woman behind him in the head.\"\n9434,anetv_iiqaJGokpEw,1081,\"He then swings a bat at a pinata, missing and hitting the woman behind him in the head. She\",\"He then swings a bat at a pinata, missing and hitting the woman behind him in the head.\",She,gold,lets go of him and flies high into the air with the plastic stick.,drops to the ground in pain.,continues bouncing the pinata as it tries to help him.,picks him off again and looks over to the table.\n9435,anetv_iiqaJGokpEw,552,A man is using a stick while he is blindfolded to hit a pinata. He,A man is using a stick while he is blindfolded to hit a pinata.,He,gold,hops onto a wall to capture the height.,continues to hit the ball with a stick.,hit the pinata and throws it back.,\"swings the bat several times, hitting a woman in the face.\"\n9436,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93289,3576,Someone reads out the message written in blood on the wall. They,Someone reads out the message written in blood on the wall.,They,gold,push at the door of the living room.,begin to deal the dumbly pages.,can not see out.,run to someone's room.\n9437,anetv_XQWebGbAjxU,13589,A close up of a mat is shown surrounded by pucks and a stick sitting in the middle. The camera,A close up of a mat is shown surrounded by pucks and a stick sitting in the middle.,The camera,gold,cuts back along the man moving back and fourth in slow motion.,bends down to face the cups and then captures the shot a few times before running away from the camera.,moves to the left at that point and then the men stepping around turns object to cut his fingers when the frame ends.,pans to people pushing the puck along the ice followed by a person pushing the puck into the middle.\n9438,anetv_NpsOCOnQS6c,8820,The man spraying sprays up and down making good time. He,The man spraying sprays up and down making good time.,He,gold,\"then plays the fence, then a sign shows no sign of the man.\",continues moving the horse around and turning to the camera.,makes sure to go over all the spots so he does n't miss any.,talks to the camera.\n9439,anetv_ot4CuJqrN-Y,3295,They are wearing revolutionary war era outfits. They,They are wearing revolutionary war era outfits.,They,gold,play the drums in unison to a beat.,rally drills at between a wall of the opponents.,are filling with potatoes.,\"hold a black bag over their head, so that it's on the side to look the balls like they were doing.\"\n9440,anetv_DjT4-5H3xDQ,10113,A chef's knife is shown with the word Honing overlaid. A chef,A chef's knife is shown with the word Honing overlaid.,A chef,gold,explains how to cut salad.,\"is shown out in a kitchen with chopsticks, followed by cutting lemons and adding oil to the pan.\",demonstrates how to sharpen a knife in a kitchen.,shows a graphic sketch with supplies.\n9441,anetv_DjT4-5H3xDQ,17144,A still shot is shown as the word honing is on the screen and music plays in the background. He,A still shot is shown as the word honing is on the screen and music plays in the background.,He,gold,attempts to run across a track on a large field where tall.,explains how to hold a honing steel.,\"shows notes, exercise, and text being shown.\",has a lot of people riding on the ground.\n9442,anetv_DjT4-5H3xDQ,17146,He then explains how to hold the knife and how to move it along with the steel. He,He then explains how to hold the knife and how to move it along with the steel.,He,gold,he measures the vaulted outer layer to clean any more.,cleans the knife on a towel and shows the residue left behind.,is then shown cutting the hair while pouring the parts of the wood pipe behind him and cutting places till it's done.,\"puts the digital pieces together, then away and demonstrates how to pierce the slat.\"\n9443,anetv_DjT4-5H3xDQ,17143,A chef in a kitchen explains how to hone a knife. A still shot,A chef in a kitchen explains how to hone a knife.,A still shot,gold,of a salad is shown and the chef uses a spatula to cut the bread.,is shown followed by several cities and vegetables in a kitchen knife.,of the roof is laid out to the table in slow action.,is shown as the word honing is on the screen and music plays in the background.\n9444,anetv_DjT4-5H3xDQ,17147,He cleans the knife on a towel and shows the residue left behind. He,He cleans the knife on a towel and shows the residue left behind.,He,gold,spins across the entire surface and has barely moved back to the bottom.,explains the difference between a honing steel and a sharpening steel.,changes the order and moves all around.,pours the rust wood into paint.\n9445,anetv_DjT4-5H3xDQ,17145,He explains how to hold a honing steel. He then,He explains how to hold a honing steel.,He then,gold,uses wax to dry the surfaces with using all his strength.,tries to chop the sharpener in and over again using a tool.,uses a metal hand to insert a nut.,explains how to hold the knife and how to move it along with the steel.\n9446,anetv_7AkyOhKkT6g,8540,\"She goes to the bathroom with clips in her hair and gets out treatments and shampoos. She begins to apply the hair things to her hair and combing it out, she\",She goes to the bathroom with clips in her hair and gets out treatments and shampoos.,\"She begins to apply the hair things to her hair and combing it out, she\",gold,starts to part her hair and put in curlers.,poses with the saxophone and looks to his former friend.,moves to her hair and lower her dog in an angle.,makes sure you can tell as her face she care.\n9447,anetv_9qNM5tNMxK4,12199,The player in red hits the ball with a front hand swing and his opponent leaps forward to return the ball. The player in red,The player in red hits the ball with a front hand swing and his opponent leaps forward to return the ball.,The player in red,gold,hits the ball but misses and hits it.,hits the ball across the net as a young man hits the ball with a golf racket.,watches him throw the puck at a player as the detective resumes and teammate drinks from someone's cup.,continues to swing his racket in a front hand as he never fails to miss a single shot.\n9448,anetv_9qNM5tNMxK4,12200,\"The player in red continues to swing his racket in a front hand as he never fails to miss a single shot. The player in black misses one shot, but he immediately grabs the ball and they\",The player in red continues to swing his racket in a front hand as he never fails to miss a single shot.,\"The player in black misses one shot, but he immediately grabs the ball and they\",gold,walk after the ball to hit another ball in the net.,continue to play again.,continue to play tennis for the camera's attention.,quickly pull it off the side wall behind the boy.\n9449,anetv_9qNM5tNMxK4,12203,The player in red runs swiftly across the court to hit the ball back. Then they,The player in red runs swiftly across the court to hit the ball back.,Then they,gold,play five rounds continuously using back hand swings until the player in black misses a shot.,\"chase on another ball, after the batter charges the ball and the man in the black shirt.\",see the players run underneath an ice board towards the score runner.,continue playing the court and ends by passing the ball.\n9450,anetv_9qNM5tNMxK4,12204,Then they play five rounds continuously using back hand swings until the player in black misses a shot. Then they,Then they play five rounds continuously using back hand swings until the player in black misses a shot.,Then they,gold,hit the pinata and chop each other.,walk back on the rock and a very large target.,finish playing and are hoping for harm with the name of the video about the killing.,begin their final round where the player in black and white ends the final shot.\n9451,anetv_9qNM5tNMxK4,12205,Then they begin their final round where the player in black and white ends the final shot. They,Then they begin their final round where the player in black and white ends the final shot.,They,gold,end the game by shaking hands and walk out of the court.,\"continue taking a shot of the ball, hitting an opponent with it.\",bounty hunter in the game starts to fight his opponent way or simultaneously.,make a goal and the men continue to score the stage with their racquets and go.\n9452,anetv_9qNM5tNMxK4,12198,\"There are two players wearing a red and white shirt and the other wearing black and white shirt, playing racket ball in an indoor court with a few spectators. The player in red hits the ball with a front hand swing and his opponent\",\"There are two players wearing a red and white shirt and the other wearing black and white shirt, playing racket ball in an indoor court with a few spectators.\",The player in red hits the ball with a front hand swing and his opponent,gold,hits the ball hard on the table of a ball on his other hand and starts playing again.,leaps forward to return the ball.,puts the first half of the racket on the cup.,starts to serve the tennis ball before congratulating him and the swarthy man walks away.\n9453,anetv_9qNM5tNMxK4,12201,\"The player in black misses one shot, but he immediately grabs the ball and they continue to play again. Both the players\",\"The player in black misses one shot, but he immediately grabs the ball and they continue to play again.\",Both the players,gold,wall up and hit a man in the hoop some more while they stand around each other.,continue on a great rally without missing a shot.,\"continue hitting each other, hitting each other when the ball hits the ground.\",make a goal and the white team cheers as they run to the field.\n9454,anetv_9qNM5tNMxK4,12202,Both the players continue on a great rally without missing a shot. The player in red,Both the players continue on a great rally without missing a shot.,The player in red,gold,hits the ball back and forth against the glass wall.,runs swiftly across the court to hit the ball back.,serves the ball down and up.,hits the ball against the far wall and bounces.\n9455,anetv_RQO61KXeBos,3462,The next man takes his turn and he does the same using the stick to get over the obstacle and jumping up with excitement after landing. Then another man takes his turn and when he lands he,The next man takes his turn and he does the same using the stick to get over the obstacle and jumping up with excitement after landing.,Then another man takes his turn and when he lands he,gold,is jumping on the ground four times and his girl holding up her hand.,passes without falling.,throws off his helmet and yells and jumps for joy like the previous men.,continues running and running very fast.\n9456,anetv_RQO61KXeBos,3461,\"A man starts running down with a stick he places it down and jumps over a really high obstacle, he lands and gloats. The next man takes his turn and he\",\"A man starts running down with a stick he places it down and jumps over a really high obstacle, he lands and gloats.\",The next man takes his turn and he,gold,goes to perform stunts and jumps and lands in the sand capturing his box and along it.,continues to continue jump roping and finally runs up a track after sand desolate.,does the same using the stick to get over the obstacle and jumping up with excitement after landing.,is beautiful on the beam and there's that person doing different tricks on the diving board numerous times.\n9457,anetv_aTrEYoCRL2k,10624,We we see the vehicle back and and go back and forth blowing the leaves. The cameraman,We we see the vehicle back and and go back and forth blowing the leaves.,The cameraman,gold,stops the vehicle and gets out.,talks to us and see the man again.,brings the right address left on the rear of the lady.,holds up a piece of paper from the card.\n9458,anetv_aTrEYoCRL2k,10625,The cameraman stops the vehicle and gets out. We,The cameraman stops the vehicle and gets out.,We,gold,see someone telekinetically to the left.,see the dawn being abandoned.,see the person tire before a man is maneuvering up a bicycle using a cane.,see the full vehicle from the front and see the field.\n9459,anetv_aTrEYoCRL2k,10623,A man sitting in a leaf blower starts the machine and blows a large pile of leafs into the brush nearby. We we,A man sitting in a leaf blower starts the machine and blows a large pile of leafs into the brush nearby.,We we,gold,see the vehicle back and and go back and forth blowing the leaves.,see a man clears with a man behind him and cuts a leaf blower.,see the lady opening the christmas tree and blow ornaments off the tree.,see the title of the mower again and again swing in the yard.\n9460,lsmdc3051_NANNY_MCPHEE_RETURNS-24797,15755,Someone joyfully kisses his cheek. Someone,Someone joyfully kisses his cheek.,Someone,gold,drifts off past people.,hurries into the parlor as he spots her.,\"squats tensely, his eyes locked on someone's.\",notices someone looking on.\n9461,lsmdc3051_NANNY_MCPHEE_RETURNS-24797,15757,Farmer someone shuts the cart and eyes a piglet. Someone,Farmer someone shuts the cart and eyes a piglet.,Someone,gold,bursts into wide roads as they mill off towards the storm.,picks up an rv's handle.,lowers someone to the ground.,gathers the children in her arms.\n9462,lsmdc3051_NANNY_MCPHEE_RETURNS-24797,15758,\"Noticing someone, she straightens and frowns. Someone\",\"Noticing someone, she straightens and frowns.\",Someone,gold,\"stops someone and puts her lingerie, still sitting on the floor, and smiles.\",\"glances up someone smiling, thoughtfully.\",\"sneaks sweetly at someone and slowly, his lips wide.\",stares at the girl with a furrowed brow.\n9463,lsmdc3051_NANNY_MCPHEE_RETURNS-24797,15756,The mysterious woman tilts her head. Farmer someone,The mysterious woman tilts her head.,Farmer someone,gold,turns to watch herself through cobblestone doorway.,shuts the cart and eyes a piglet.,turns to his sister's whole face.,stares out into the phone.\n9464,anetv_YMsyF-g2TqE,2794,We see a carved pumpkin and a title screen. A man,We see a carved pumpkin and a title screen.,A man,gold,is then shown with a pumpkin carving a pumpkin.,carves a pumpkin with its lights on it.,draws a face on a pumpkin.,chops a pumpkin with an electric cutter.\n9465,anetv_YMsyF-g2TqE,2796,A man then carves a pumpkin into a snarling old man. The man,A man then carves a pumpkin into a snarling old man.,The man,gold,blow fruit from the glass.,shows the large lay on a plate with an ice cream cone.,uses an ax to form a parked gate.,takes an image of the pumpkin with a phone.\n9466,anetv_YMsyF-g2TqE,2795,A man draws a face on a pumpkin. A man then,A man draws a face on a pumpkin.,A man then,gold,begins fishing using some knives.,begins talking to the camera.,carves a pumpkin into a snarling old man.,\"shoots a hole into a pumpkin carving a pumpkin, killing it.\"\n9467,anetv_YMsyF-g2TqE,2797,The man takes an image of the pumpkin with a phone. The man,The man takes an image of the pumpkin with a phone.,The man,gold,peels the potato with a peeler.,picks up a red trophy and puts it in his hands.,tilts the pumpkin back into the light.,sprays more paint with a solution.\n9468,anetv_YMsyF-g2TqE,2798,The man tilts the pumpkin back into the light. We,The man tilts the pumpkin back into the light.,We,gold,see a man throwing a ball into the air.,see still shots of the carved pumpkin.,see an aerial off of the house.,fade to black and we see the man's lawn on the paint and see the tree with tree replays.\n9469,anetv_YMsyF-g2TqE,2799,We see still shots of the carved pumpkin. We,We see still shots of the carved pumpkin.,We,gold,see an illustration of a castle.,draw the pumpkin next to the flower on the boy who examines it.,see the ending screen with a website.,see the man fall off the tree.\n9470,anetv_lC12SCZ_-1o,19670,A small car is covered in a thick layer of snow. A man,A small car is covered in a thick layer of snow.,A man,gold,looks out from the wreck from a hanger.,slowly cleans a tube under the hood of a car.,appears with a sweeper.,takes off and stands on the ski again.\n9471,anetv_lC12SCZ_-1o,19671,A man appears with a sweeper. He,A man appears with a sweeper.,He,gold,is shown how to apply plaster as a wall begins to paints on the ceiling above.,pushes an cleared piece of wood into the water.,uses it to rake all the snow off the vehicle.,gets an american flag and pumps.\n9472,anetv_N7z9_g196z0,15397,Men kneels down and hits the croquet ball like a billiard shot. The man,Men kneels down and hits the croquet ball like a billiard shot.,The man,gold,throws the camera towards the microphone.,runs holding up his stick celebrating.,swing the ball from the corner and hit the ball.,\"enjoys the ice, trying to hit the ball.\"\n9473,anetv_N7z9_g196z0,15396,Men play a game of croquet in a grassy yard. Men,Men play a game of croquet in a grassy yard.,Men,gold,point up in the sea and floor sleds.,mill around the gym to receive a trophy.,records two bulls in an outdoor field.,kneels down and hits the croquet ball like a billiard shot.\n9474,anetv_N7z9_g196z0,15398,The man runs holding up his stick celebrating. A man,The man runs holding up his stick celebrating.,A man,gold,takes out the mans hand and punches him.,runs and throws a ball when another man is watching him.,skips on the grass holding his stick smiling.,hits the pinata trying to avoid a.\n9475,anetv_N7z9_g196z0,15395,Titles in bold lettering are seen on the page against still images and a dark background. Men,Titles in bold lettering are seen on the page against still images and a dark background.,Men,gold,are shown close up and walk around to a bicycle.,play a game of croquet in a grassy yard.,are in a split - less room playing.,perform a discus on the other side of the screen.\n9476,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99822,14941,\"A painting with a gold frame reveals a long, dark passage with a pinprick of light in the distance. Someone\",\"A painting with a gold frame reveals a long, dark passage with a pinprick of light in the distance.\",Someone,gold,sees someone seated on a nearby stage.,turns to the others.,looks at his framed photo of the tv.,runs past to someone.\n9477,lsmdc1046_Australia-90626,16596,The drive moves on through the soft light of sunset. Someone,The drive moves on through the soft light of sunset.,Someone,gold,switches on the lights.,reaches the flower lounge.,gapes open - mouthed at the soaring crags.,picks from the board again.\n9478,lsmdc1046_Australia-90626,16599,Someone keeps watch from the top of the cliffs. Someone,Someone keeps watch from the top of the cliffs.,Someone,gold,pops the orb inside the crater's wheels.,'s sitting on a rock.,rubs his hand on it.,wanders through a patch of icy traffic.\n9479,lsmdc1046_Australia-90626,16600,Someone's sitting on a rock. Someone,Someone's sitting on a rock.,Someone,gold,\"glances up at her, then turns and turns to someone.\",stops in the shed and stares at the shelves in frustration.,\"'s in her tent, writing.\",reaches up and holds it up.\n9480,lsmdc1046_Australia-90626,16598,\"Sheer cliffs rise up on either side of the canyon, the bottom of which is in shadow. Someone\",\"Sheer cliffs rise up on either side of the canyon, the bottom of which is in shadow.\",Someone,gold,keeps watch from the top of the cliffs.,stands under the sun clothes.,lands on a cement slab.,falls down onto the boat.\n9481,lsmdc1046_Australia-90626,16597,Someone gapes open - mouthed at the soaring crags. Sheer cliffs,Someone gapes open - mouthed at the soaring crags.,Sheer cliffs,gold,covers someone with a high scowl.,peer through the snow riding the weldy tool across the trees lining the street again.,\"rise up on either side of the canyon, the bottom of which is in shadow.\",\"lava its way beneath them, landing in a dusty plain.\"\n9482,lsmdc1012_Unbreakable-6821,18839,\"Outside, the greenery is becoming a blur. The train\",\"Outside, the greenery is becoming a blur.\",The train,gold,plows painfully towards their voices.,\"lingers, flanked by the giant wind - big yells onlookers.\",\"is moving faster, shaking more than it did.\",\"is falling smoothly, rolling through the streets.\"\n9483,lsmdc1012_Unbreakable-6821,18843,\"Between the seats, he sees another passenger's hand reaching down to grab hold of an armrest. A car\",\"Between the seats, he sees another passenger's hand reaching down to grab hold of an armrest.\",A car,gold,passes behind a truck to carry it out.,\"pulls up, french people moving along the street.\",is driving down a quite urban street.,\"pulls up and they fall into the hospital, smile on the screen.\"\n9484,lsmdc1012_Unbreakable-6821,18838,\"Outside, trees and shrubs form a green backdrop along the track side. Outside, the greenery\",\"Outside, trees and shrubs form a green backdrop along the track side.\",\"Outside, the greenery\",gold,carries the three oak arch that lead toward the kitchen.,seems to be sponging on horizon.,launches into the sphere.,is becoming a blur.\n9485,lsmdc1012_Unbreakable-6821,18841,He watches through the window. He,He watches through the window.,He,gold,\"stares at the complex agent, approaching.\",glances across the aisle.,\"scraps the wall with an anguished expression, then hurries off.\",stares down at the fallen gangster.\n9486,lsmdc1012_Unbreakable-6821,18840,\"The train is moving faster, shaking more than it did. He\",\"The train is moving faster, shaking more than it did.\",He,gold,\"walks into the hall in someone's modern apartment, someone, and her other belongings.\",climbs up and grasps it in the air.,watches through the window.,writes addressed several times as he acts.\n9487,lsmdc1012_Unbreakable-6821,18837,\"He moves out of her sight towards the window and leans against it frowning slightly. Outside, trees and shrubs\",He moves out of her sight towards the window and leans against it frowning slightly.,\"Outside, trees and shrubs\",gold,spread into a room which are covered in fresh dirt.,are taken by the sun held off place behind the hedge.,form a green backdrop along the track side.,are mounted on the makeshift carving.\n9488,lsmdc1012_Unbreakable-6821,18844,\"A car is driving down a quite urban street. In a living room, a boy is lies over a sofa, his feet over the back, his head\",A car is driving down a quite urban street.,\"In a living room, a boy is lies over a sofa, his feet over the back, his head\",gold,resting directly on a worktop near the door.,\"driving into a puddle of water, the wakes from the grunts, changing his head up to looks, watch his sad.\",\"hanging down to the floor, flicking through tv channels with the remote, upside down.\",pushed in a tub with his hands and body.\n9489,lsmdc1012_Unbreakable-6821,18835,\"Glancing between the seat backs, someone sees a little girl in front sitting up now. Her blonde hair\",\"Glancing between the seat backs, someone sees a little girl in front sitting up now.\",Her blonde hair,gold,emerges beneath her arm.,pulled off her face and held by yellow clips watching him and smiling.,has a couch lengthwise at her sides.,blows as he steps around the boys.\n9490,lsmdc1012_Unbreakable-6821,18836,Her blonde hair pulled off her face and held by yellow clips watching him and smiling. He,Her blonde hair pulled off her face and held by yellow clips watching him and smiling.,He,gold,moves out of her sight towards the window and leans against it frowning slightly.,is looking at people.,leads him down a hill and into a large parking lot.,fragments down long silver blades into marley's chest.\n9491,anetv_wb8TkqxxEuo,17764,Another shirtless man lifts weights on a barbell repeatedly with others exercising in the background. A third man,Another shirtless man lifts weights on a barbell repeatedly with others exercising in the background.,A third man,gold,grabs and lets go of the mat with the man on the floor.,then bends backward and taps his right leg with the other floor.,holds his hands to his chest and responds for a working moment.,lifts and flips a heavy tire while two others watch in the background.\n9492,anetv_wb8TkqxxEuo,17763,A shirtless man briefly lifts a ball up onto one shoulder. Another shirtless man,A shirtless man briefly lifts a ball up onto one shoulder.,Another shirtless man,gold,pushes back another ball on the wall.,dives back to his knees.,lifts weights on a barbell repeatedly with others exercising in the background.,climbs a second figure and does a flip.\n9493,anetv_wb8TkqxxEuo,17765,\"A number of individuals are shown in a parking lot with cars exercising with weights, kegs, or tires, while others watch. A series of tug of war matches\",\"A number of individuals are shown in a parking lot with cars exercising with weights, kegs, or tires, while others watch.\",A series of tug of war matches,gold,sit on a tight rope.,flips and stops while he still talks to the camera.,appear as the two men shake hands.,are shown with spectators in the background.\n9494,anetv_wb8TkqxxEuo,19145,Another man is seen pushing a large tire across a parking lot with others as well as carrying weights and kegs over their heads. Finally a group of men,Another man is seen pushing a large tire across a parking lot with others as well as carrying weights and kegs over their heads.,Finally a group of men,gold,are walking in the parking lot to be quick turns.,\"break on the start line, laying it on the ground and pulling their bodies and balancing themselves around the sink.\",play tug of war against one another and lets go in the end cheering.,is shown throwing four arches as all men are shown fencing being.\n9495,lsmdc1009_Spider-Man3-76765,10116,Someone leaps in after the bomb. Someone,Someone leaps in after the bomb.,Someone,gold,rises from the car as someone catches back a branch and knocks it off with another.,puts a hand to his face to shield it from the blast.,rolls into his chair.,drags himself inside the drill.\n9496,lsmdc1009_Spider-Man3-76765,10131,\"Someone goes over to the edge of the skyscraper and looks down at the emergency vehicles far below. A pale, dawn light\",Someone goes over to the edge of the skyscraper and looks down at the emergency vehicles far below.,\"A pale, dawn light\",gold,is spreading across the sky above them.,glows through the gaps on the roof.,illuminate the skylight and bumps over his body.,looms out of someone's arms.\n9497,lsmdc1009_Spider-Man3-76765,10121,\"Someone turns to find someone right behind him. As someone listens, someone's eyes\",Someone turns to find someone right behind him.,\"As someone listens, someone's eyes\",gold,seem at the end.,flash to the window.,become distant as he thinks back.,closes him as the movie moves across a lighthouse.\n9498,lsmdc1009_Spider-Man3-76765,10092,He nods through his torn mask. Someone,He nods through his torn mask.,Someone,gold,is in the process working with someone.,slowly spreads someone's wrists overhead.,kicks sand in someone's eyes.,has trouble mowing the lawn where he can practice some martial arts moves.\n9499,lsmdc1009_Spider-Man3-76765,10123,\"In black and white flashback, someone sits in his car. Someone\",\"In black and white flashback, someone sits in his car.\",Someone,gold,comes up with a gun and taps on the window.,lifts the lid to reveal someone's obituary call.,soaks his hands in the bath.,sees two colleagues in the bedroom talking to a person in the wedding.\n9500,lsmdc1009_Spider-Man3-76765,10060,\"Someone's eyes widen as a truck suspended above the yellow cab starts shedding its load of breeze blocks which rain down like giant hailstones, ripping a door off the cab. Someone\",\"Someone's eyes widen as a truck suspended above the yellow cab starts shedding its load of breeze blocks which rain down like giant hailstones, ripping a door off the cab.\",Someone,gold,looks up in excitement towards stabbing someone.,tries to maneuver a breeze block lodged in the cab.,\"emerges after a few paces, then steps back over the hood of his van.\",hits a car full of shells.\n9501,lsmdc1009_Spider-Man3-76765,10126,\"In flashback, the accomplice runs up to someone from behind and knocks him on the shoulder as he makes for the car. Someone\",\"In flashback, the accomplice runs up to someone from behind and knocks him on the shoulder as he makes for the car.\",Someone,gold,looks on eyes wide with horror.,checks his watch.,walks into the marble lobby.,cruises across the store floor and spies a badge in his overalls pocket.\n9502,lsmdc1009_Spider-Man3-76765,10089,\"Someone slues the sky stick round. Being onto each other, they surf past someone, and someone\",Someone slues the sky stick round.,\"Being onto each other, they surf past someone, and someone\",gold,leaps off the sky stick and catches her.,floats onto the prow of a statue.,\"walks in circles, dining with him.\",answers him for a brief glimpse of the ship's perimeter.\n9503,lsmdc1009_Spider-Man3-76765,10113,\"Someone shoots a thread, pulls him free, and holds him through the bars. People\",\"Someone shoots a thread, pulls him free, and holds him through the bars.\",People,gold,explode and plane on the air.,stand in front off the roof.,\"tumble out of the vehicle, on the other side of the bank.\",look on in amazement as it tries to break out of its cage.\n9504,lsmdc1009_Spider-Man3-76765,10139,\"His head lolls to one side, and his eyelids close. Someone\",\"His head lolls to one side, and his eyelids close.\",Someone,gold,\"leaps away, swinging someone, causing his sister from tip to turn.\",\"sprays the horses's abdomen, then looks at him and trains his cuffed hands in his thighs.\",\"bites her lip, clasping her fingers to her throat.\",\", the torches around are singing and staring at their son.\"\n9505,lsmdc1009_Spider-Man3-76765,10142,\"Later, under a gray sky beneath spreading trees in full summer leaf, a crowd of mourners shelter under their umbrellas in silence. People\",\"Later, under a gray sky beneath spreading trees in full summer leaf, a crowd of mourners shelter under their umbrellas in silence.\",People,gold,\"looks down at his wrists, then finishes by lifting himself.\",scurries through the woods on a crushed door which is wide with a stick and a flow of concentration.,find themselves amazed by a wave to the water.,stand side by side across from someone.\n9506,lsmdc1009_Spider-Man3-76765,10072,She watches someone hurtling towards her. Someone,She watches someone hurtling towards her.,Someone,gold,loses a snowman and catches it.,\"leaps out at someone, knocking him into column of girders that he bounces against as he falls.\",kisses his brow in delight.,continue their dance routine.\n9507,lsmdc1009_Spider-Man3-76765,10077,\"Someone rear up for another blow. A pumpkin bomb, which to someone is the size of a pimple,\",Someone rear up for another blow.,\"A pumpkin bomb, which to someone is the size of a pimple,\",gold,is fired into the side of his head.,\"is tossed across the back yard, the sheriff.\",drops and end with bullets.,bears the similar fake creature.\n9508,lsmdc1009_Spider-Man3-76765,10069,\"The sandy ground shakes, knocking someone over as if a rug is being pulled from under him. Out of a moving mountain of sand someone\",\"The sandy ground shakes, knocking someone over as if a rug is being pulled from under him.\",Out of a moving mountain of sand someone,gold,runs wildly out of a coffin which has caught in something but falls.,gets on top of the lake with her hands outstretched under his chin and rolling his eyes.,has managed at his heel and fold down his back.,\"rises to his feet, towering over the cowering crowd like a colossus.\"\n9509,lsmdc1009_Spider-Man3-76765,10135,Someone watches it until it completely disappears. He,Someone watches it until it completely disappears.,He,gold,\"reaches over, pulls down the boy, and pulls himself out of the tunnel.\",\"takes a breath, closes his eyes, and swallows hard.\",\"stubs it out, takes it over his finger and pours it into the sink.\",sniffs the egg and rolls it out.\n9510,lsmdc1009_Spider-Man3-76765,10078,\"Half of someone's head is blown away, and what's left of it looks like a bowl of burning coals. A searchlight\",\"Half of someone's head is blown away, and what's left of it looks like a bowl of burning coals.\",A searchlight,gold,picks out the new goblin gliding through the air on his sky stick.,has fallen and someone plummets to the base of the trees on the roof of the garden.,\"shove past people, someone dripping, looking delighted as the survivors again approaches.\",\"catches her eye, catches it, and closes her book again.\"\n9511,lsmdc1009_Spider-Man3-76765,10137,\"Someone's scarred face looks up at someone, and he shakes his head. Someone looks over at someone, but she\",\"Someone's scarred face looks up at someone, and he shakes his head.\",\"Someone looks over at someone, but she\",gold,is talking without looking at him.,does n't acknowledge him.,\"shakes her head, her eyes full of tears.\",is in narrow steps towards him.\n9512,lsmdc1009_Spider-Man3-76765,10138,\"Someone looks over at someone, but she shakes her head, her eyes full of tears. Someone\",\"Someone looks over at someone, but she shakes her head, her eyes full of tears.\",Someone,gold,\"takes her hand, although we can't see that someone feels his anger or even want to think it did.\",\"gives her an impatient look, then caresses her thumb.\",glances over her shoulder at the rain.,\"nods and smiles, close to tears.\"\n9513,lsmdc1009_Spider-Man3-76765,10108,Someone hoists him up into the air and tosses him away. Someone,Someone hoists him up into the air and tosses him away.,Someone,gold,falls to the floor of the building someone is on.,loads himself with someone as they run throughout the wasteland.,\"flies out of the bay, avoid his footing and drops into the deck below the dumping.\",pours the juice in a bowl and smiles.\n9514,lsmdc1009_Spider-Man3-76765,10133,\"He looks at the silver locket he holds in his hand, with its tiny photograph of his daughter, and turns back to someone. His eyes brimming, someone\",\"He looks at the silver locket he holds in his hand, with its tiny photograph of his daughter, and turns back to someone.\",\"His eyes brimming, someone\",gold,picks up one of the folders and hands it to someone.,\"looks sorrowfully but steadily at someone, who nods with a look of understanding.\",\"stands at this, then lowers his gaze and shakes off the others as people stare.\",\"smiles back at someone and leans close to his ear, wrapping a kiss from one ear.\"\n9515,lsmdc1009_Spider-Man3-76765,10125,\"Someone squeezes someone's shoulder. In flashback, the accomplice\",Someone squeezes someone's shoulder.,\"In flashback, the accomplice\",gold,opens the door for them.,runs up to someone from behind and knocks him on the shoulder as he makes for the car.,climbs toward the drone controls.,climbs down a bridge toward the ship.\n9516,lsmdc1009_Spider-Man3-76765,10100,\"He hits him twice more, ripping the mask right off. Someone\",\"He hits him twice more, ripping the mask right off.\",Someone,gold,\"both guns up at his face, and he drops it as he fires.\",holds the jagged metal bar to someone's neck.,shoves his opponent toward him.,\"fires his knife at someone, who walks into the bar.\"\n9517,lsmdc1009_Spider-Man3-76765,10091,The watching crowd go wild as he swings away on a thread carrying someone in his arms and lands back on the half - built skyscraper. He,The watching crowd go wild as he swings away on a thread carrying someone in his arms and lands back on the half - built skyscraper.,He,gold,'s eyes widen as he is leaning forward against the top of the spear stand.,nods through his torn mask.,is sticking out of the factory floor.,\"falls back down onto the bed and someone, then crack in the wall, looking for the ceiling.\"\n9518,lsmdc1009_Spider-Man3-76765,10119,\"Behind him someone materializes, sand pouring from his arm. Someone\",\"Behind him someone materializes, sand pouring from his arm.\",Someone,gold,runs down to where someone lies on his back.,looks toward the dancer as it looks up at the portrait.,\"draws high, catches someone and leaps upstairs, followed by someone.\",feels helpless for pictures.\n9519,lsmdc1009_Spider-Man3-76765,10099,He whacks him with an iron bar. He,He whacks him with an iron bar.,He,gold,\"hits him twice more, ripping the mask right off.\",sprays himself with a spray then throws it.,holds on to the boy's swinging.,puts down his shirt and hangs down.\n9520,lsmdc1009_Spider-Man3-76765,10085,Someone's in the crown below. He,Someone's in the crown below.,He,gold,slits it out with his hand.,steps hurriedly at her biting someone.,pushes his horse away.,tries to take a photograph.\n9521,lsmdc1009_Spider-Man3-76765,10075,Someone stretched out his hand towards someone. She,Someone stretched out his hand towards someone.,She,gold,rolls a crocodile into its chest.,\"looks down helplessly as someone smashes his fist down on someone, whose hand hangs limply at his side.\",skates back along the avenue of automatic light and races past.,picks up aside blue tape.\n9522,lsmdc1009_Spider-Man3-76765,10132,\"A pale, dawn light is spreading across the sky above them. He\",\"A pale, dawn light is spreading across the sky above them.\",He,gold,gazes desperately at the spires and walls of the cove school.,walks up past the towering coastline where all girls dead have been hanging.,shuts the door in his face.,\"looks at the silver locket he holds in his hand, with its tiny photograph of his daughter, and turns back to someone.\"\n9523,lsmdc1009_Spider-Man3-76765,10127,Someone looks on eyes wide with horror. He,Someone looks on eyes wide with horror.,He,gold,reaches for his center pocket.,kneels over the dying man as his partner drives away.,passes through a huge fireplace.,points at her ankles and sits with someone.\n9524,lsmdc1009_Spider-Man3-76765,10128,He kneels over the dying man as his partner drives away. Someone,He kneels over the dying man as his partner drives away.,Someone,gold,shows out guards and gent in all directions amid some youthful.,kicks the shaken someone on his stomach.,\"stops, and dances.\",lowers his eyes for a moment then looks back up at someone.\n9525,lsmdc1009_Spider-Man3-76765,10065,\"They fall off the web and plummet down the side of the skyscraper as they are falling down the lift shaft, trading kicks and blows as they go. Someone\",\"They fall off the web and plummet down the side of the skyscraper as they are falling down the lift shaft, trading kicks and blows as they go.\",Someone,gold,looks over at the pillar.,tries to pull his mask back on but drops it as he fires a thread just as he is about to hit the ground.,ripple as it speeds to a halt.,seethes one of them.\n9526,lsmdc1009_Spider-Man3-76765,10076,\"She looks down helplessly as someone smashes his fist down on someone, whose hand hangs limply at his side. Someone\",\"She looks down helplessly as someone smashes his fist down on someone, whose hand hangs limply at his side.\",Someone,gold,\"comes nearby, stroking his ears with his fingertips.\",rear up for another blow.,trails her fingers from the palm of her exposed temple.,slashes off the witch and throws her onto the ground.\n9527,lsmdc1009_Spider-Man3-76765,10134,\"The sand cloud drifts off, snaking its way between the city buildings. Someone\",\"The sand cloud drifts off, snaking its way between the city buildings.\",Someone,gold,watches it until it completely disappears.,opens the glass of the perimeter separating the melted sand off someone's mask and passes it along a metal wall.,\", is - rotting out as the other is skiing.\",rises to meet more crazily and lands through a rolling sand material.\n9528,lsmdc1009_Spider-Man3-76765,10141,\"Kneeling on either side of someone's body, framed by an arc of girders and the dawn light of the clouds beyond, the two childhood friends bow their heads in shared sorrow. Later, under a gray sky beneath spreading trees in full summer leaf, a crowd of mourners\",\"Kneeling on either side of someone's body, framed by an arc of girders and the dawn light of the clouds beyond, the two childhood friends bow their heads in shared sorrow.\",\"Later, under a gray sky beneath spreading trees in full summer leaf, a crowd of mourners\",gold,have gathered in the front the glade.,\"walks out, a massive stone statue topped by a stone pillars, and they make a padded surfer.\",shelter under their umbrellas in silence.,is lined with people in the middle room.\n9529,lsmdc1009_Spider-Man3-76765,10081,\"Someone holds out a hand, and someone clasps it firmly. Someone nods, and someone\",\"Someone holds out a hand, and someone clasps it firmly.\",\"Someone nods, and someone\",gold,climbs out of their luggage.,slides the garbage case out the trash.,pitches the ball onto the cooker.,gets to his feet.\n9530,lsmdc1009_Spider-Man3-76765,10120,\"Up above, someone drops the tube he was carrying, his expression numb. Someone\",\"Up above, someone drops the tube he was carrying, his expression numb.\",Someone,gold,turns to find someone right behind him.,looks a little startled.,extends it to a guard.,walks up and closes the fan.\n9531,lsmdc1009_Spider-Man3-76765,10086,He tries to take a photograph. Someone,He tries to take a photograph.,Someone,gold,grins and staggers high toward the landing.,reads someone 'book.,is looking at the quill into the ground.,glares at the girl.\n9532,lsmdc1009_Spider-Man3-76765,10140,\"Someone bites her lip, clasping her fingers to her throat. Kneeling on either side of someone's body, framed by an arc of girders and the dawn light of the clouds beyond, the two childhood friends\",\"Someone bites her lip, clasping her fingers to her throat.\",\"Kneeling on either side of someone's body, framed by an arc of girders and the dawn light of the clouds beyond, the two childhood friends\",gold,stop from the black cedar to sun.,sit together on a lamp covered chair.,bow their heads in shared sorrow.,galloping around to keep quay where people prepare themselves.\n9533,lsmdc1009_Spider-Man3-76765,10105,\"Someone leaps down someone, wielding the sky stick as a weapon. Someone\",\"Someone leaps down someone, wielding the sky stick as a weapon.\",Someone,gold,\"takes the two friends off the boy, who leans close.\",gazes at his son.,walks to the door to a second floor and closes a door behind her.,steps in between them.\n9534,lsmdc1009_Spider-Man3-76765,10067,He retrieves his mask then looks up sharply as the truck starts dropping towards the cab. Someone,He retrieves his mask then looks up sharply as the truck starts dropping towards the cab.,Someone,gold,turns away from his car and pulls himself into oncoming traffic.,glances at someone in a daze.,leaps out of the cab just before the truck hits it and clings to the web.,climbs up the steps of his house.\n9535,lsmdc1009_Spider-Man3-76765,10095,\"As his huge left arm crumples into the ground leaving out of dust, the crowd whoop their delight. Someone, his someone mask badly torn, his eye and mouth quite visible,\",\"As his huge left arm crumples into the ground leaving out of dust, the crowd whoop their delight.\",\"Someone, his someone mask badly torn, his eye and mouth quite visible,\",gold,as though to throw.,he nods sadly.,looks around for someone.,stares at a piece of faces.\n9536,lsmdc1009_Spider-Man3-76765,10087,Someone glares at the girl. People,Someone glares at the girl.,People,gold,catch their breath as someone beckons her.,take a shot at him.,look up at him.,duck someone's huge fists.\n9537,lsmdc1009_Spider-Man3-76765,10090,\"Being onto each other, they surf past someone, and someone leaps off the sky stick and catches her. The watching crowd\",\"Being onto each other, they surf past someone, and someone leaps off the sky stick and catches her.\",The watching crowd,gold,roll up beside the restaurant.,go wild as he swings away on a thread carrying someone in his arms and lands back on the half - built skyscraper.,dangle from behind the monster as they dismount.,looks on to the cover churning a screen of champagne in the boat.\n9538,lsmdc1009_Spider-Man3-76765,10071,\"Someone loses her grip, landing on the lower section of webs splayed out like a sacrificial victim. She\",\"Someone loses her grip, landing on the lower section of webs splayed out like a sacrificial victim.\",She,gold,\"sways on the seat, attempting to climb across the rock surface.\",jerks her head as the ship vomits.,\"smiles at someone, and smiles.\",watches someone hurtling towards her.\n9539,lsmdc1009_Spider-Man3-76765,10079,A searchlight picks out the new goblin gliding through the air on his sky stick. He,A searchlight picks out the new goblin gliding through the air on his sky stick.,He,gold,sends someone flying through some walls with a flick of his sky stick.,looks back at the lake as still underwater.,\"joins on a rail, flaps his white wings and tosses it bundles on the ground.\",bounces above the waving flag.\n9540,lsmdc1009_Spider-Man3-76765,10107,Someone looks down at the two blades protruding through his chest. Someone,Someone looks down at the two blades protruding through his chest.,Someone,gold,\"keeps his eyes fixed on someone, who draws his gun upwards.\",\"looks down at the dead stag, which is lying on his back.\",hoists him up into the air and tosses him away.,zoom someone into someone's arms and push him towards a wide fountain which lies over the shore.\n9541,lsmdc1009_Spider-Man3-76765,10070,\"The crowd scatters as the huge, hulking, King Kong - like figure slams a car sized fist into the ground, narrowly missing Spiderman. Someone\",\"The crowd scatters as the huge, hulking, King Kong - like figure slams a car sized fist into the ground, narrowly missing Spiderman.\",Someone,gold,\"tracks out to a young man - looking, then still races even.\",crashes through the main.,dodges being squashed like a bug beneath someone's truck sized foot.,hits the elevator door on the room and hits the wooden keys.\n9542,lsmdc1009_Spider-Man3-76765,10129,Someone lowers his eyes for a moment then looks back up at someone. Someone,Someone lowers his eyes for a moment then looks back up at someone.,Someone,gold,strides over to help someone give someone a last look.,nods and drops a frown.,looks more into his uneasy eyes.,frowns as he struggles to understand.\n9543,lsmdc1009_Spider-Man3-76765,10082,\"Someone nods, and someone gets to his feet. They\",\"Someone nods, and someone gets to his feet.\",They,gold,clamber to their feet and stream down a rocky outcrop.,eat through a hole in the floor.,\"stand over someone's body, arm in hand.\",spin round to face their enemies.\n9544,lsmdc1009_Spider-Man3-76765,10088,She hangs on by a thread. People,She hangs on by a thread.,People,gold,begin to dance as someone stands down and watches the dancers.,\"fly towards her on the sky stick, weaving past the sandy hulk.\",\"sit at the edge of the porch as someone watches, her bemused eyes stretching in the sky.\",to tear the lights off her.\n9545,lsmdc1009_Spider-Man3-76765,10101,\"Someone snatches the sky stick from under him. As someone falls, he\",Someone snatches the sky stick from under him.,\"As someone falls, he\",gold,gets a rack of long metal tubes that fall to the floor.,removes his headgear and climbs over on the hem of his jacket.,flips fearfully to the handcuffed opponent.,pins her hair with her hand.\n9546,lsmdc1009_Spider-Man3-76765,10064,\"She drops the breeze block, hitting the snarling someone on the head. Someone\",\"She drops the breeze block, hitting the snarling someone on the head.\",Someone,gold,runs through the filmed party house.,\"watches, chases the waiters over, then faces them continuously.\",\"opens the door, revealing the wonder zoom to his right shoulder.\",frees himself and punctures someone.\n9547,lsmdc1009_Spider-Man3-76765,10063,Someone raises the breeze block above her head as the symbiote mask wraps itself around someone's face. She,Someone raises the breeze block above her head as the symbiote mask wraps itself around someone's face.,She,gold,\"watches, her head rests on the pillow that lies at her side.\",\"drops the breeze block, hitting the snarling someone on the head.\",leafs through the papers as it occurs.,massages one foot then keeps driving.\n9548,lsmdc1009_Spider-Man3-76765,10073,\"Standing beneath the girder, someone fires a thread down someone's neck and pulls him onto his back, garroting him as someone brings his fist down like a steam hammer. Someone\",\"Standing beneath the girder, someone fires a thread down someone's neck and pulls him onto his back, garroting him as someone brings his fist down like a steam hammer.\",Someone,gold,\"grabs someone from the sofa, slashes himself at the back of the chair.\",desperately reaches out a hand as he tries to free himself.,looks through the binoculars.,throws the bomb on a room on a wall.\n9549,lsmdc1009_Spider-Man3-76765,10097,\"As someone turns his way and that, someone grabs him from above and hurls him into a girder. Someone\",\"As someone turns his way and that, someone grabs him from above and hurls him into a girder.\",Someone,gold,\"hovers about the railing, then straightens.\",pokes someone in the groin.,faces all the others and then squats lightly for him.,falls on his face.\n9550,lsmdc1009_Spider-Man3-76765,10074,Someone desperately reaches out a hand as he tries to free himself. The web holding the cab above someone,Someone desperately reaches out a hand as he tries to free himself.,The web holding the cab above someone,gold,starts to break as someone is pummeled by someone's fist.,is wrenched upside down as a bolt of lightning falls before him.,shows it to the left.,soars over and crashes closer on the ground.\n9551,lsmdc1009_Spider-Man3-76765,10118,\"When the spot clears, there's nothing left of someone or the Symbiote. Behind him someone materializes, sand\",\"When the spot clears, there's nothing left of someone or the Symbiote.\",\"Behind him someone materializes, sand\",gold,revolves on the wall near the door.,can barely dangle in the doorway.,pouring from his arm.,erupts in the street.\n9552,lsmdc1009_Spider-Man3-76765,10115,Someone strikes the bells to make them ring then grabs a pumpkin bomb. Someone,Someone strikes the bells to make them ring then grabs a pumpkin bomb.,Someone,gold,weave through the narrow tunnel.,leaps in after the bomb.,\"lifts the sailors up above his head, his prone arm resting on his massive shoulder.\",hurry over to help him.\n9553,lsmdc1009_Spider-Man3-76765,10068,Someone leaps out of the cab just before the truck hits it and clings to the web. The sandy ground,Someone leaps out of the cab just before the truck hits it and clings to the web.,The sandy ground,gold,\"shakes, knocking someone over as if a rug is being pulled from under him.\",is scattered with impact and sending it crashing to the ground by a squad car.,gets up and drives off.,pulls to a halt in a clearing and narrowly missing the driver's scraped bonds.\n9554,lsmdc1009_Spider-Man3-76765,10110,Someone grabs two of the pipes. Someone,Someone grabs two of the pipes.,Someone,gold,\"stands waiting for the middle, saying nothing.\",grab them hot to their feet.,\"wakes someone, watching.\",falls to his knees.\n9555,lsmdc1009_Spider-Man3-76765,10083,Someone swings someone like a club to hit someone. He,Someone swings someone like a club to hit someone.,He,gold,cocks his head and watches his ship with him.,takes two of fragments in the hallway.,blasts someone arm with flames from his sky stick.,has someone's sword out of the hand.\n9556,lsmdc1009_Spider-Man3-76765,10112,Someone's face appears from within the symbiotic suit. Someone,Someone's face appears from within the symbiotic suit.,Someone,gold,smiles as a group of locomotive soldiers which are hauled in prison.,\"shoots a thread, pulls him free, and holds him through the bars.\",slips forth through blinds and young boy stars sitting nearby.,\"looks up, sees her tiny wands reflected on the stones.\"\n9557,lsmdc1009_Spider-Man3-76765,10080,\"He sends someone flying through some walls with a flick of his sky stick. His mask peeling back to reveal someone's disfigured face, he\",He sends someone flying through some walls with a flick of his sky stick.,\"His mask peeling back to reveal someone's disfigured face, he\",gold,is n't sure how to proceed.,watches someone catapults through the air.,glides up alongside battered someone.,reverses a high garland.\n9558,lsmdc1009_Spider-Man3-76765,10098,Someone falls on his face. He,Someone falls on his face.,He,gold,punches him in the chest.,whacks him with an iron bar.,\"slams his chair down, as someone watches a comedian on a staircase.\",tries to run away as he runs.\n9559,lsmdc1009_Spider-Man3-76765,10122,\"As someone listens, someone's eyes become distant as he thinks back. In black and white flashback, someone\",\"As someone listens, someone's eyes become distant as he thinks back.\",\"In black and white flashback, someone\",gold,sits in his car.,\"'s wearing a pair of black designer clothes and their uniform, lined up in a parking town.\",stares out of his window.,\"sits on his bed, gazing into the man's hair.\"\n9560,lsmdc1009_Spider-Man3-76765,10093,Someone kicks sand in someone's eyes. He,Someone kicks sand in someone's eyes.,He,gold,is out of someone's reach.,walks off of her.,moves over to the driver's side.,fires at someone and makes with the cruiser.\n9561,lsmdc1009_Spider-Man3-76765,10061,Someone tries to maneuver a breeze block lodged in the cab. Someone,Someone tries to maneuver a breeze block lodged in the cab.,Someone,gold,struggles to free himself.,hurriedly goes upstairs and runs along the floor.,\"leans back to someone, looks up in the gloom and looks at someone.\",grabs someone's ankle and pulls it forward.\n9562,anetv_tXuNa_h804c,4451,\"The three people walking on the street, talking and having fun. They\",\"The three people walking on the street, talking and having fun.\",They,gold,are very nervous later.,\"move past the nightclub and into the same cars, with a small tumbler of ice.\",rush onto the runway to jump over.,\"dance again while the two dance with each other, the other man dance by himself.\"\n9563,anetv_tXuNa_h804c,11635,The people then begin dancing with one another while moving their hands and legs all around. The people,The people then begin dancing with one another while moving their hands and legs all around.,The people,gold,continue dancing around one another and end curling and dancing.,continue playing down and fourth while the camera captures their movements.,take turns moving the girls around and the camera follows her movements.,continue dancing around as well as hugging one another and skipping around town.\n9564,anetv_tXuNa_h804c,11634,A man is seen speaking to a group of men and a woman. The people then,A man is seen speaking to a group of men and a woman.,The people then,gold,begin dancing with one another while moving their hands and legs all around.,begin playing rock on the ice while holding one another.,begin putting on hats and pointing at a table and smiling.,speak to one another and lead into them standing in on to them.\n9565,anetv_tXuNa_h804c,4453,They are having fun in the park. They dance again and another one on the phone looks amazed while the other two,They are having fun in the park.,They dance again and another one on the phone looks amazed while the other two,gold,do make the basic ballet exercises.,do them or the cars in the bumper cars.,enjoy dancing with each other.,get up and shake the beer.\n9566,anetv_tXuNa_h804c,4448,\"They began some hand moves, the man in yellow tank shows his several dance moves and the woman follows her. A man with pink scarf sitting\",\"They began some hand moves, the man in yellow tank shows his several dance moves and the woman follows her.\",A man with pink scarf sitting,gold,looks frustrated and make a sign of the cross.,applies kids in white eye as a woman in a blue vest watches them photograph a bow in a dish and a man demonstrating several,behind a pair of white jeans demonstrates the girl by walking with a long pole.,in a long vest came skateboard on.\n9567,anetv_tXuNa_h804c,4447,\"A man was talking to one woman and a man and then another man began talking, they continue their conversation for a while. Someone turn on the radio and a woman in custom\",\"A man was talking to one woman and a man and then another man began talking, they continue their conversation for a while.\",Someone turn on the radio and a woman in custom,gold,\"appears from behind curtain dancing, while two man are amazed.\",is seen lying leaning against the wall.,rings at the end of another microphone.,is interviewed by the older woman.\n9568,lsmdc3051_NANNY_MCPHEE_RETURNS-24558,19199,She walks away from an apothecary cabinet. Someone,She walks away from an apothecary cabinet.,Someone,gold,takes the bottle from her hand and eats it.,enters an adjoining room and shuts the door behind her.,hands her another suitcase.,helps his way through a large someone without looking at him.\n9569,lsmdc3051_NANNY_MCPHEE_RETURNS-24558,19201,\"From the counter, the jackdaw watches her as she wearily peeks in another. A third\",\"From the counter, the jackdaw watches her as she wearily peeks in another.\",A third,gold,opens high above her.,\"brings someone onto the couch, woefully in his direction.\",holds someone at the bar.,does a little she jumped.\n9570,anetv_jw8yJ6tJXrA,13848,A person runs in on the side and jumps into a pit. The man sitting tracks his score and several more people,A person runs in on the side and jumps into a pit.,The man sitting tracks his score and several more people,gold,are shown cheering at the large event.,taking walks by walking up a different man and leads back to the completion of the jump.,are seen running in.,are riding again in the end.\n9571,anetv_jw8yJ6tJXrA,13847,A man is seen kneeling down before a track while others watch on the sides. A person,A man is seen kneeling down before a track while others watch on the sides.,A person,gold,runs in on the side and jumps into a pit.,runs down a path with snow and rides down the hill.,is seen using weights in his arms as well as taking the ride.,rides a horse in front of him while a man runs down a calf.\n9572,anetv_RINsqxGLQdQ,15792,Several shots of people riding around kite surfing are shown as well as people speaking to the camera. The kids,Several shots of people riding around kite surfing are shown as well as people speaking to the camera.,The kids,gold,attempt the wind surfing and are seen moving their arms and legs around and waving to the camera.,continue riding along the board as well as walking around and speaking into the camera as the moving continues in front.,ride down the snowy mountain and ride around in their canoes.,ride around and talk to one another and end by bowing to the camera.\n9573,anetv_RINsqxGLQdQ,15793,The kids attempt the wind surfing and are seen moving their arms and legs around and waving to the camera. Two girls,The kids attempt the wind surfing and are seen moving their arms and legs around and waving to the camera.,Two girls,gold,walked in all directions during the last preparations.,celebrate at the end of the dock outdoors up close.,sit on the shore with each other on the beach near another wave.,are seen dancing as well as people speaking to the camera and kids looking at the camera.\n9574,lsmdc0041_The_Sixth_Sense-67919,12195,Someone reaches his car and enters it. Someone,Someone reaches his car and enters it.,Someone,gold,hurries over to an electronic bound book.,\"gets up, folds his arms and hands it to her.\",pulls away into traffic almost hitting another car as he does.,pushes a key into smiley's crate.\n9575,lsmdc0041_The_Sixth_Sense-67919,12196,Someone pulls away into traffic almost hitting another car as he does. Someone,Someone pulls away into traffic almost hitting another car as he does.,Someone,gold,waits as he wrenches himself on and turns up the camaro.,parks the car house between a tree and crosses a street.,watches the car disappear down the next street.,has slides off the smart rope.\n9576,lsmdc0041_The_Sixth_Sense-67919,12193,He watches as someone comes down the front stairs and starts across the street. Someone,He watches as someone comes down the front stairs and starts across the street.,Someone,gold,moves towards someone fast.,goes to the door and starts at them.,\"looks up, going in the direction of the asian bush he is carrying.\",\"races into him, his mouth hanging open and staring downward.\"\n9577,lsmdc0041_The_Sixth_Sense-67919,12197,Someone turns and looks up at his home with unchecked anger and overwhelming pain erupting his eyes. Someone,Someone turns and looks up at his home with unchecked anger and overwhelming pain erupting his eyes.,Someone,gold,sits slumped over his sleep.,quickly gets up and rushes out of the tent.,smashes the door into one of the living headstones.,\"is driving, motionless, waking of his bed, up - to - light.\"\n9578,lsmdc0041_The_Sixth_Sense-67919,12200,Someone looks down and finds his mother laying in her bed. Her face,Someone looks down and finds his mother laying in her bed.,Her face,gold,contorted in deep sadness as she speaks in her sleep.,is framed with white as someone breaks a spell.,topples slightly; her head rests under the table.,\"hurt, she seizes him to the knees again.\"\n9579,lsmdc0041_The_Sixth_Sense-67919,12194,Someone moves towards someone fast. Someone,Someone moves towards someone fast.,Someone,gold,\"salutes his brother, grinning.\",reaches his car and enters it.,turns quickly and stares ahead expressionlessly.,rocks back with her stick.\n9580,lsmdc0041_The_Sixth_Sense-67919,12199,His mother's voice turns his attention back to the bed. Someone,His mother's voice turns his attention back to the bed.,Someone,gold,\"someone takes out the tin and dumps it in a cocktail shaker, still staring at it.\",looks down and finds his mother laying in her bed.,\"gets up and crosses out of the bathroom, taking off his pants and tossing out a suitcase.\",drags himself into the washroom.\n9581,lsmdc0041_The_Sixth_Sense-67919,12198,A table with a sewing machine fills the other side of the room. His mother's voice,A table with a sewing machine fills the other side of the room.,His mother's voice,gold,is evenly connected by a very familiar conversation.,leads into a telephone on a door's table.,is placing an elephant in bed behind him.,turns his attention back to the bed.\n9582,lsmdc1007_Spider-Man1-74485,19156,\"Someone comes again, someone uses both feet and propels the big man under the ropes. Someone\",\"Someone comes again, someone uses both feet and propels the big man under the ropes.\",Someone,gold,collapses to the floor.,\"slides off the cart, putting on all of the men.\",launches into the air and beheads him down.,raises her arms up above her head.\n9583,lsmdc1007_Spider-Man1-74485,19155,\"As the big wrestler charges, someone on his back on the floor, lashes outwith his right foot into someone's body and face. Someone comes again, someone\",\"As the big wrestler charges, someone on his back on the floor, lashes outwith his right foot into someone's body and face.\",\"Someone comes again, someone\",gold,consistently disgruntled at his knees.,\"punches holes punched in his nose, knocking her out of bed.\",uses both feet and propels the big man under the ropes.,\"facing the camera, then sits back with the camera.\"\n9584,lsmdc1007_Spider-Man1-74485,19152,\"He crashes it twice over someone's head. And when someone's done,\",He crashes it twice over someone's head.,\"And when someone's done,\",gold,he throws his arms round her arms!,\"look over to the side, his head right on back.\",slides down the back of the car clutching his ankle.,thuds it across his back.\n9585,lsmdc1007_Spider-Man1-74485,19153,\"And when someone's done, thuds it across his back. Grabbing someone by a leg, someone\",\"And when someone's done, thuds it across his back.\",\"Grabbing someone by a leg, someone\",gold,kicks the riddle canister to his face.,hauls himself up to the front of a rock.,lifts another up stomach and pulls him towards the tree.,crashes the youth into the cage bars.\n9586,lsmdc1007_Spider-Man1-74485,19151,Someone is handed a folding chair. He,Someone is handed a folding chair.,He,gold,crashes it twice over someone's head.,flies back towards the main entrance.,follows her down the driveway.,\"takes his arm, shakes his head and continues his sleeve.\"\n9587,anetv_MD6p1s-N9rM,15613,A young man irons a shirt on an ironing board in a hallway. The man,A young man irons a shirt on an ironing board in a hallway.,The man,gold,shows how to bulge a tattoo on the side.,proceeds to scrub his hands.,ties a shoe and irons the heavy heavy faucet.,adjusts the camera and returns to ironing.\n9588,anetv_MD6p1s-N9rM,15614,The man adjusts the camera and returns to ironing. The man,The man adjusts the camera and returns to ironing.,The man,gold,removes an indoor necklace from the sink.,finishes ironing and turns the camera away.,irons the end and dips them on it and starts ironing them.,sticks his white teeth in the sink.\n9589,anetv_YAbfhT3fhac,6143,A gymnastic teams practices routines that involve jumping and flipping. They then,A gymnastic teams practices routines that involve jumping and flipping.,They then,gold,perform large rotates over stage during the matches.,patterns two men that are facing professional mats appear in the background.,switch to cheerleading outside.,seem to be highly competitive and demonstrated.\n9590,lsmdc1011_The_Help-78354,16246,Someone glances behind her at the bus door closing. She,Someone glances behind her at the bus door closing.,She,gold,someone glances down at her.,watches it drive off with a doom - laden look on her face.,leads the unconscious someone.,shifts his shocked gaze.\n9591,anetv_hShYj_OGFtc,18320,The man rubs plaster using a tool and stands up to grab paper. He,The man rubs plaster using a tool and stands up to grab paper.,He,gold,rubs the paper along the wall and ends by looking up to the camera.,speaks to the camera and continues speaking to the camera while continuing to speak.,\"changes his sitting motionless in a can on the ground, then eventually in someone and the camera zooms in on him.\",continues welding it on the floor.\n9592,anetv_hShYj_OGFtc,18319,A person is seen kneeling down in a large hole rubbing plaster along a wall. The man,A person is seen kneeling down in a large hole rubbing plaster along a wall.,The man,gold,picks up the tool and attaches it around a lower end.,smokes the objects and looks around on the baseboards.,rubs plaster using a tool and stands up to grab paper.,continues to push and continues using water and hitting the object off into the distance.\n9593,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34515,17932,He takes out one of the photos of the nude teenage girl. She,He takes out one of the photos of the nude teenage girl.,She,gold,\"nods on the way out, then turns and walks away.\",\", someone, someone, and someone sit on an easel.\",looks at the photo.,twirls only his hands.\n9594,lsmdc0031_The_Lost_Weekend-65772,4769,\"Someone sits bathed in sweat, tears of terror in his eyes. She\",\"Someone sits bathed in sweat, tears of terror in his eyes.\",She,gold,glances at the kid.,turns and runs down the stairs.,\"lowers his glasses, smiling, after showing one empty bottle on his own.\",spins round to face someone.\n9595,lsmdc0031_The_Lost_Weekend-65772,4757,Someone stiffens against the back of his chair. The bat,Someone stiffens against the back of his chair.,The bat,gold,is closed and the man stretches out.,spins from its spikes as the sink catch his breath.,drops from his mouth.,has made another swoop and spread its wings over the mouse.\n9596,lsmdc0031_The_Lost_Weekend-65772,4760,Now from behind the struggling wings comes a spurt of blood. Someone,Now from behind the struggling wings comes a spurt of blood.,Someone,gold,\"makes his way up, to someone, who, hunched over a tee, climbs the ladder.\",\"cries out so hard his throat seems to burst apart, buries his horrified eyes in the back of his chair.\",gasps eerily during the conversation of the alley.,\"pounds the bar, and someone hands him a manicure.\"\n9597,lsmdc0031_The_Lost_Weekend-65772,4759,Someone gives a cry of horror. Now from behind the struggling wings,Someone gives a cry of horror.,Now from behind the struggling wings,gold,stand two unmoving photographs sway on a sofa.,comes a spurt of blood.,\", an explosion crushes the travelers skier.\",he adds a bunch of letters in black.\n9598,lsmdc0031_The_Lost_Weekend-65772,4758,Apparently the bat has seized the mouse in its claws. Someone,Apparently the bat has seized the mouse in its claws.,Someone,gold,blocks and grabs the ax.,arrives in a conservative corner store.,gives a cry of horror.,pumps his wrist frantically.\n9599,lsmdc0031_The_Lost_Weekend-65772,4773,His eyes are on the door. Now they,His eyes are on the door.,Now they,gold,sit on 2011 grass.,revolve on the furniture which get out.,focus on the door chain.,rain in a suitcase.\n9600,lsmdc0031_The_Lost_Weekend-65772,4767,\"Someone stands outside, ringing the bell. She\",\"Someone stands outside, ringing the bell.\",She,gold,reaches toward the counter.,picks up a bag on a shelf.,\"stands helplessly for a moment, dumbstruck.\",\"bangs on the door, rattling the doorknob helplessly.\"\n9601,lsmdc0031_The_Lost_Weekend-65772,4765,\"From outside comes the sound of footsteps racing upstairs toward his door, then the door - bell: short, short, long short. Someone's eyes\",\"From outside comes the sound of footsteps racing upstairs toward his door, then the door - bell: short, short, long short.\",Someone's eyes,gold,turn slowly toward the door.,pop up and back inside.,\"light up, then walks toward the house.\",pop open on two boxes and eggs.\n9602,lsmdc0031_The_Lost_Weekend-65772,4761,\"Someone cries out so hard his throat seems to burst apart, buries his horrified eyes in the back of his chair. She\",\"Someone cries out so hard his throat seems to burst apart, buries his horrified eyes in the back of his chair.\",She,gold,\"scratches on his mouth, then lights their gaze in embarrassment.\",must have been listening from someone's first scream.,blinks at someone as the sisters leave the car.,clicks his fingers and swims past her like adults.\n9603,lsmdc0031_The_Lost_Weekend-65772,4764,\"Someone still cowers in his chair, his face hidden in his arms, his breathing heavy with terror. From outside\",\"Someone still cowers in his chair, his face hidden in his arms, his breathing heavy with terror.\",From outside,gold,\", someone smears his hair and torn his shirt.\",\"comes the sound of footsteps racing upstairs toward his door, then the door - bell: short, short, long short.\",\", out of sight on the distant ground of someone's smoky vision, he slowly hangs off the corner of his bed.\",\", someone flips the knob on the horn and knocks the stall shut.\"\n9604,lsmdc0031_The_Lost_Weekend-65772,4762,\"Someone, standing beside her, is barking wildly. From downstairs\",\"Someone, standing beside her, is barking wildly.\",From downstairs,gold,\", someone is completely confused.\",\", we find someone on the couch watching the minotaur disassemble and slowly a door.\",comes the barking of someone's dog.,runs someone leans his head hurtle on to the ledge.\n9605,lsmdc0031_The_Lost_Weekend-65772,4774,\"Now they focus on the door chain. Someone realizes he is forgotten to put it up, but it\",Now they focus on the door chain.,\"Someone realizes he is forgotten to put it up, but it\",gold,has turn to rain soon.,'s just an odd look.,covers his ghostly head and looks back at him.,\"'s not too late, is it?\"\n9606,lsmdc0031_The_Lost_Weekend-65772,4768,\"He sits staring at the door, holding his breath not to betray his presence. Someone\",\"He sits staring at the door, holding his breath not to betray his presence.\",Someone,gold,is gone.,\"opens his lips slightly, and looks around pleasantly.\",shadow of gorgoroth is extinguishing the polished.,\"sits bathed in sweat, tears of terror in his eyes.\"\n9607,lsmdc0031_The_Lost_Weekend-65772,4771,\"Someone stands in her door, peering up. She\",\"Someone stands in her door, peering up.\",She,gold,blows out the candles.,reverses as she strolls over before him.,averts her imploring gaze.,hurries to the stairwell and calls down it.\n9608,lsmdc0031_The_Lost_Weekend-65772,4770,She turns and runs down the stairs. Someone,She turns and runs down the stairs.,Someone,gold,\"smiles, and walks angrily in pursuit of her.\",\"stands in her door, peering up.\",turns the cloak around and spill out.,is standing beside her.\n9609,lsmdc0031_The_Lost_Weekend-65772,4766,Someone's eyes turn slowly toward the door. Someone,Someone's eyes turn slowly toward the door.,Someone,gold,is slouched in the bay.,\"maintains an intense gaze, kind and smug, and continues to dance.\",\"looks in someone's direction, but is directed.\",\"stands outside, ringing the bell.\"\n9610,lsmdc0031_The_Lost_Weekend-65772,4763,\"Beyond her, the door to her apartment is open. Someone still\",\"Beyond her, the door to her apartment is open.\",Someone still,gold,\"cowers in his chair, his face hidden in his arms, his breathing heavy with terror.\",sees in his doorway.,hears the german singing.,remains locked in place on the green side of the framed bed.\n9611,anetv_-Wmrg_0jxA8,4256,A circle is formed of several children who are talking and banging each other in the head with foam mallets. The other people,A circle is formed of several children who are talking and banging each other in the head with foam mallets.,The other people,gold,start dancing with each other.,begin clapping and laughing as they spin.,is seen beating the ball in a circle.,laugh as they watch.\n9612,lsmdc3057_ROBIN_HOOD-27862,14048,\"Now, soldiers shove someone into a building and yank. She\",\"Now, soldiers shove someone into a building and yank.\",She,gold,struggles to open it.,has run out of the fall.,writhes in web break to release free.,teases him down on the top floor.\n9613,lsmdc3057_ROBIN_HOOD-27862,14047,\"His eyes peer solemnly from his beastly mask. Now, soldiers\",His eyes peer solemnly from his beastly mask.,\"Now, soldiers\",gold,mess together as a warehouse blow through them.,illuminate a gigantic alabama.,approach the barricade with floating phones.,shove someone into a building and yank.\n9614,anetv_2Is_nJdG2to,10274,\"A woman brush the hair of a girl while talking sitting on a bed. Then, the woman\",A woman brush the hair of a girl while talking sitting on a bed.,\"Then, the woman\",gold,takes a paper towel and dries it with a towel.,kneel on the bed and touch the shoulders of the girl.,put the hula hoop rod with tissue tape and tape on the end of her hair.,holds a paper brush to paint the nails of the dog near the outer of a tub.\n9615,anetv_fjoaurNKg60,16314,A cleaner solution is sprayed into the container to clean it out. The contact lens,A cleaner solution is sprayed into the container to clean it out.,The contact lens,gold,is removed from the eye.,is then shown followed by another person.,\"is shown, and the piercing artists edges out.\",is then left and the person is shown talking.\n9616,anetv_fjoaurNKg60,16315,The contact lens is removed from the eye. Solution,The contact lens is removed from the eye.,Solution,gold,is sprayed on the contact lens resting in the palm of a hand before being placed back on the counter.,appears on the screen with a pencil bean all of it.,is trying to put it into the mechanism and put the contact lens into someone's face.,sprays of metal on his glass's clear glass.\n9617,anetv_fjoaurNKg60,16313,The person holds open one eyelid at a time and inserts the contact into their eye. A cleaner solution,The person holds open one eyelid at a time and inserts the contact into their eye.,A cleaner solution,gold,is shown then peers down with a contemplative brush.,pierces the bottom of the screen and gestures to the camera.,is heard in the trash as the groggy eyed agent follows.,is sprayed into the container to clean it out.\n9618,anetv_fjoaurNKg60,16311,A person washes there hands and closes a sink drain. The person,A person washes there hands and closes a sink drain.,The person,gold,adds circular liquid and dries it with the towel.,uses a towel to wipe paper off the hose.,removes a contact from the container and places on the tip of their finger.,put soap into a bucket using their hands.\n9619,anetv_fjoaurNKg60,16312,The person removes a contact from the container and places on the tip of their finger. The person,The person removes a contact from the container and places on the tip of their finger.,The person,gold,pierces their earring into the lens.,holds open one eyelid at a time and inserts the contact into their eye.,just uses the lenses to give up something.,removes their contact before puts it off.\n9620,anetv_MXDeLfF5rok,9367,A lot of windsurfers are on the sea. men,A lot of windsurfers are on the sea.,men,gold,are in the river watching the leeds skis.,are driving a boat in the sea.,are skating on the hills of the snowy landscape.,are riding a boat and sailing in a river.\n9621,anetv_MXDeLfF5rok,5875,A waverider is racing across the path of hundreds of windsurfers. The windsurfers,A waverider is racing across the path of hundreds of windsurfers.,The windsurfers,gold,\"race across the water, using boats as turning points.\",are stopped by someone quite florida clutching his head.,hold up a few more feet and engage in the same sort of back flip with each other in the small round pit structure.,are running on board just passing the bridge.\n9622,anetv_MXDeLfF5rok,9366,A deep sea is shown with someone recording he ocean. a lot of windsurfers,A deep sea is shown with someone recording he ocean.,a lot of windsurfers,gold,are observing the other side of the wave.,mill on the sidewalk around him.,are in the sea.,are on the sea.\n9623,anetv_MXDeLfF5rok,5874,The camera is quickly moving across a large body of water. A waverider,The camera is quickly moving across a large body of water.,A waverider,gold,sky patiently pursues the sailors.,crowd sits on end.,is racing across the path of hundreds of windsurfers.,is seen riding on the subway and celebrating with friends.\n9624,anetv_MXDeLfF5rok,5873,The logo defi wind gruissan appears on screen with numerous smaller logos below. The camera,The logo defi wind gruissan appears on screen with numerous smaller logos below.,The camera,gold,\"pans down the street, showing the nature of the race.\",is quickly moving across a large body of water.,is now screen on the craft with an upscale close looking up.,pans around the symphony warmly and beginning to jump along the music.\n9625,lsmdc1006_Slumdog_Millionaire-73797,15760,The dust clears revealing the majestic white marbled palace of the Taj Mahal in the distance. The boys,The dust clears revealing the majestic white marbled palace of the Taj Mahal in the distance.,The boys,gold,take their seats out of harm's way.,cross an alley and a third guy steps out from the truck.,watch the boaters wash closing in.,walk through a set of ground gates staring agog at the magnificent architecture.\n9626,lsmdc1006_Slumdog_Millionaire-73797,15757,The two brothers tumble down a slope next to the passing train. They eventually,The two brothers tumble down a slope next to the passing train.,They eventually,gold,hikes off down a road one at a time.,\"climb at their feet, landing beside the white parked car.\",\"sit up, breathless.\",\"jump high into a tranquil, brooding sky.\"\n9627,lsmdc1006_Slumdog_Millionaire-73797,15764,Someone stands leaning against the doorway. Throngs of tourists,Someone stands leaning against the doorway.,Throngs of tourists,gold,are walking past someone through the glass entrance of the beachfront.,mill past into the taj mahal.,are surrounded by a soldier carrying umbrellas.,cross the part by the woody's facade make iron.\n9628,lsmdc1006_Slumdog_Millionaire-73797,15753,\"Inside the carriage, a family is sharing a huge meal of pickles, rice, vegetables, and chapati. The boy\",\"Inside the carriage, a family is sharing a huge meal of pickles, rice, vegetables, and chapati.\",The boy,gold,\"stares at the handful of food, then holds up a plate of whiskey by the sink.\",nudges his father and points.,returns to the top of a swing pond.,adds jelly to the cake batter as the individual leaves the counter.\n9629,lsmdc1006_Slumdog_Millionaire-73797,15761,The boys walk through a set of ground gates staring agog at the magnificent architecture. Someone,The boys walk through a set of ground gates staring agog at the magnificent architecture.,Someone,gold,notices the hundreds of pairs of shoes left by visiting tourists.,turns and whispers something to her general.,has one tight back on his head.,\"goes a gold, christmas packages tied in a knot at the end.\"\n9630,lsmdc1006_Slumdog_Millionaire-73797,15755,The father grabs someone through the window. The father violently tugs someone and he,The father grabs someone through the window.,The father violently tugs someone and he,gold,falls asleep behind him.,\"races through it in frustration, followed by someone.\",\"leaves, soaking him by a red umbrella.\",\"loses his grip and falls from the train, pulling someone with him.\"\n9631,lsmdc1006_Slumdog_Millionaire-73797,15762,Someone notices the hundreds of pairs of shoes left by visiting tourists. People,Someone notices the hundreds of pairs of shoes left by visiting tourists.,People,gold,wave their luggage out of the airport.,walk in the chasing room carrying a type rope hung with ribbons.,steal a pair of trainers each.,sit in a cafe.\n9632,lsmdc1006_Slumdog_Millionaire-73797,15756,\"The father violently tugs someone and he loses his grip and falls from the train, pulling someone with him. The two brothers\",\"The father violently tugs someone and he loses his grip and falls from the train, pulling someone with him.\",The two brothers,gold,\"reach out, waving desperately as they run to the side of the school.\",tumble down a slope next to the passing train.,move on their stomachs to the water.,head to the opposite side of the cruiser.\n9633,lsmdc1006_Slumdog_Millionaire-73797,15750,People sell trinkets to passengers. The guard,People sell trinkets to passengers.,The guard,gold,rouses them and throws them off the train.,pounds the dock's trunk then takes off.,follows the bell outside their theater.,activates a pregnancy pod.\n9634,lsmdc1006_Slumdog_Millionaire-73797,15752,\"Someone sounds on the roof of a train, hauling someone up on a rope. Someone\",\"Someone sounds on the roof of a train, hauling someone up on a rope.\",Someone,gold,lowers someone by his legs over a window.,drops the sail down on the boat as the peg picks up a grenade.,watches her with her hands.,strides through the window and controls the carnage.\n9635,lsmdc1006_Slumdog_Millionaire-73797,15759,Someone stares at the horizon. The dust,Someone stares at the horizon.,The dust,gold,forms semi - darkness.,clears revealing the majestic white marbled palace of the taj mahal in the distance.,settles and hikes beside it as someone walks into a deserted gym.,\"turns around the swirling sky, revealing a man glowing awkwardly under the surface.\"\n9636,lsmdc1006_Slumdog_Millionaire-73797,15758,\"They eventually sit up, breathless. Someone\",\"They eventually sit up, breathless.\",Someone,gold,walks past the table and spits.,stares at the horizon.,outlines by another girl.,looks at the title monitor as a nurse watches from a window.\n9637,lsmdc1006_Slumdog_Millionaire-73797,15765,A middle aged couple approached someone. The man,A middle aged couple approached someone.,The man,gold,offers money to someone.,\"does a back flip, flips, pulls his paper down with his hands.\",\"walks on an elliptical, then bends to the back of it.\",pulls two sunglasses from a bedroom.\n9638,lsmdc1006_Slumdog_Millionaire-73797,15763,A sign reads guided tours visitors are requested to collect receipts. Someone,A sign reads guided tours visitors are requested to collect receipts.,Someone,gold,looks down at the present.,stands leaning against the doorway.,\"sits on a bus seat, sipping wine.\",freezes for someone as they stare at him.\n9639,lsmdc0022_Reservoir_Dogs-59208,12590,Someone just sings along with Stealer's Wheel. Someone,Someone just sings along with Stealer's Wheel.,Someone,gold,whips the door as someone drives.,\"just stares into the cop's face, holding the razor, singing along with the song.\",stands over the announcer's horn.,gets into the car and sits.\n9640,lsmdc0022_Reservoir_Dogs-59208,12591,\"Then, like a cobra, he lashes out. Then he\",\"Then, like a cobra, he lashes out.\",Then he,gold,reaches out and cuts off the cop's ear.,moves to a wooden window and makes his way into it.,plummets back and bounds down the hallway with directly shaft of light.,tries to get the dark cream around his neck.\n9641,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14035,Someone has long filthy pointed nails. He,Someone has long filthy pointed nails.,He,gold,is looking at someone and people watching faintly.,rubs the fingers on his temple.,removes a waistcoat and scarf from his front a group of men outside the camp.,clasps his hands again.\n9642,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14028,Shell cottage faces a white beach with a sea beyond. People,Shell cottage faces a white beach with a sea beyond.,People,gold,walk astride a boat on the water's edge.,float over the glassy figure.,paint a video camera.,sit in the lounge of the cottage.\n9643,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14032,Someone has pointed ears and a long beaky nose. He,Someone has pointed ears and a long beaky nose.,He,gold,sits frozen to the ground.,\"is a grey - haired, slim - cheeked boy.\",touches the rays of sunlight.,sits in an armchair.\n9644,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14027,The grave stands amongst sand dunes behind a small house. Shell cottage,The grave stands amongst sand dunes behind a small house.,Shell cottage,gold,beams up in the sky.,faces a white beach with a sea beyond.,comes someone's house.,house is unopened in profile.\n9645,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14033,\"Someone crosses to the window, and looks out. The goblin\",\"Someone crosses to the window, and looks out.\",The goblin,gold,undoes his left suit.,hooks his backpack on the railing.,grips the arms of the chair.,talks into someone's cell.\n9646,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14026,\"He sees himself reflected, then a face other than his own. The grave\",\"He sees himself reflected, then a face other than his own.\",The grave,gold,stands amongst sand dunes behind a small house.,towing a large sword kick in his head.,pushes into the narrow gap in the trees.,remains crocodile and trimmed on his shoulders.\n9647,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14034,The goblin grips the arms of the chair. Someone,The goblin grips the arms of the chair.,Someone,gold,\"pushes himself up to his knees and sets him onto a chair, grinning.\",has long filthy pointed nails.,raises his hands to his chair.,\"clasped, panting, gazes upward into the clouds of dust nearby.\"\n9648,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99603,14030,Someone saunters up to a set of hanging chimes. Someone,Someone saunters up to a set of hanging chimes.,Someone,gold,is in the kitchen.,jumps and lands backwards onto a green mat.,uses a bomb under his helmet.,points behind a shelf full of dead water.\n9649,anetv_0rX2f0H3AaA,11937,A white screen is shown and several words are shown on the screen. Then a blue mat is shown and an individual,A white screen is shown and several words are shown on the screen.,Then a blue mat is shown and an individual,gold,causes a cheerleader to enter the hopscotch game.,\"passes a stance center with a blue flag, dispenser and sheers.\",begins sweeping and laying the blue mat against the mat.,is shown in the crowd.\n9650,anetv_0rX2f0H3AaA,11938,Then a blue mat is shown and an individual begins sweeping and laying the blue mat against the mat. The man,Then a blue mat is shown and an individual begins sweeping and laying the blue mat against the mat.,The man,gold,pauses to walk into the circle of chalk but then is handed in an order.,walks again and throws the javelin at the air.,takes out a measuring tape and cuts off a piece of the blue mat and continues covering the floor.,is now explaining the proper way to hit the tiles and how to win.\n9651,lsmdc1031_Quantum_of_Solace-84427,14155,He starts to climb up the rock fall. They,He starts to climb up the rock fall.,They,gold,\"form a pale, rock bulb.\",get their books and run at the front.,walk through a snowy station and get into a transport truck.,walk down a tunnel with the roof held up by wooden supports.\n9652,lsmdc1031_Quantum_of_Solace-84427,14154,Someone kicks at some of the stones and picks one up. He,Someone kicks at some of the stones and picks one up.,He,gold,hands someone the document and shakes it off.,walks outside with people by the fire.,starts to climb up the rock fall.,clears the other floor.\n9653,lsmdc1031_Quantum_of_Solace-84427,14152,\"They trudge through the chilly, rocky shadows. They\",\"They trudge through the chilly, rocky shadows.\",They,gold,are hauled into the air.,come to a rock fall.,catch up with her children.,run to a get blazing fire hut with their weapons blazing.\n9654,lsmdc1031_Quantum_of_Solace-84427,14153,They come to a rock fall. Someone,They come to a rock fall.,Someone,gold,kicks at some of the stones and picks one up.,jumps behind the headstone and attempts to release it.,pulls onto the side of a town.,are well rock at the bottom.\n9655,anetv_PwOMgya8qYI,18510,A woman is walking while carrying hula hoops. she,A woman is walking while carrying hula hoops.,she,gold,demonstrates massaging the girls on her toes.,jumps into a pile of dance.,talks in several pictures as they image their shots.,stretches before her performance outdoors.\n9656,anetv_PwOMgya8qYI,18511,She stretches before her performance outdoors. She then,She stretches before her performance outdoors.,She then,gold,moves up martial art work.,does a baton routine on double bars swinging several times.,lifts her up before flipping back to the mat.,demonstrates how to perform using the hula hoops.\n9657,anetv_PwOMgya8qYI,18163,A woman is carrying hula hoops over her shoulder. They,A woman is carrying hula hoops over her shoulder.,They,gold,stand and climb after the ball into a group.,are stretching on a mat.,are also racing on the stage.,pick her up and spin them around in dodgeball.\n9658,anetv_DBGsPnuwdnU,12662,A lady in a black jilbab waves. The lady bumper car,A lady in a black jilbab waves.,The lady bumper car,gold,collides with a man's.,walk around and dance.,drives a lady around the yard.,ride towards a dirt intersection.\n9659,anetv_DBGsPnuwdnU,12663,The lady bumper car collides with a man's. A guy,The lady bumper car collides with a man's.,A guy,gold,runs his finger under the screen.,walks across the brown floor.,tries to jump over a man to sunscreen the ground.,grabs the dirt mascot.\n9660,anetv_DBGsPnuwdnU,12661,People are riding bumper cars on a brown floor. A boy's red bumper car,People are riding bumper cars on a brown floor.,A boy's red bumper car,gold,gets stuck on the column.,waits in the middle of the even.,drives across the sand.,is following a man driving farther out.\n9661,anetv_fPbVku8Ssyw,14405,\"People make a hole on the shore of the beach using shovels. Then, people\",People make a hole on the shore of the beach using shovels.,\"Then, people\",gold,sail as they move throughout the desert.,\"appear, then ride up the top of the mountain.\",make a wall around the hole.,play snowboards and prepping the stadium.\n9662,anetv_M0mLgp8VxpY,5784,A shuffleboard is shown in a room. A man in a blue sweater,A shuffleboard is shown in a room.,A man in a blue sweater,gold,is pushing a chair on a bar.,is standing on a tennis court preparing to throw.,starts talking to her.,throws a ball down the shuffleboard.\n9663,anetv_2PCZkpF1_wU,19869,\"A large multilayer red velvet cake is shown, along with the multitude of ingredients. A hand\",\"A large multilayer red velvet cake is shown, along with the multitude of ingredients.\",A hand,gold,uses a large steel box with an electronic solution.,filmed paint down the sides of the virtual tennis court.,\"turns on an oven, before mixing the ingredients together in a bowl.\",is presents the director unusual holding a badminton groom.\n9664,anetv_MFow119nrOk,10549,Then the man gets back onto his skateboard and he keeps going. But in the end he,Then the man gets back onto his skateboard and he keeps going.,But in the end he,gold,gets off his bike and walks off.,gets into a car to head back somewhere.,gets stuck in a limo.,flies off the road and stands on the gun gadget.\n9665,anetv_MFow119nrOk,5578,A man is seen performing a skateboarding stunt close up that leads into an officer writing them a ticket and speaking to the man. The officer,A man is seen performing a skateboarding stunt close up that leads into an officer writing them a ticket and speaking to the man.,The officer,gold,watches a violinist perform the tricks with a dog and people continue to do tricks while the man presses up instruments next to him.,continues to speak to the skateboarder and ends by walking away and people getting into the car.,rides the bike the other way as they continue to speak to the camera and return to the camera.,plays the saxophone and continues and lands around one another while the camera captures their movements.\n9666,anetv_SndKvA_2DcE,7668,A small group is kayaking down a river. a woman,A small group is kayaking down a river.,a woman,gold,is sitting at a bench in front of them.,is sitting on rocks talking to the camera.,is standing all the way down the board.,is carrying a basket that she's going.\n9667,anetv_SndKvA_2DcE,9330,A woman is talking as the people are hiking and white water rafting. The video,A woman is talking as the people are hiking and white water rafting.,The video,gold,\"shows several views of people riding, riding fast cars, while other surfers drive by themselves on the tops of the theme booth balustrade\",ends with the closing captions shown on the screen.,ends with the people with teams of people in canoes close to people.,\"ends with the people continuing through the rapids, views shown from several angles of the canyon.\"\n9668,anetv_SndKvA_2DcE,7669,A man on a boy is interviewed. several shots of the grand canyon and it,A man on a boy is interviewed.,several shots of the grand canyon and it,gold,serve every two - size text.,'s tourists are shown.,focuses on the person sitting on the tubes.,turn into the images.\n9669,anetv_SndKvA_2DcE,7667,A man and woman are walking through the grand canyon. a small group,A man and woman are walking through the grand canyon.,a small group,gold,is decorating a christmas tree.,is playing small kites.,is in a large gymnasium preparing to do the aerobics ballet.,is kayaking down a river.\n9670,anetv_SndKvA_2DcE,9328,\"A view of the outdoors including cliffs, trees, and streams is shown. Two men\",\"A view of the outdoors including cliffs, trees, and streams is shown.\",Two men,gold,hold off a kite by pushing it back on.,are in the field playing a game on one of their teams.,are wearing scuba diving and are swimming back and fourth on the rocks.,\"are hiking through to a river, where people are in a raft.\"\n9671,anetv_SndKvA_2DcE,9329,\"Two men are hiking through to a river, where people are in a raft. A woman\",\"Two men are hiking through to a river, where people are in a raft.\",A woman,gold,is talking as the people are hiking and white water rafting.,\"is sitting on a canoe, holding a paddle sitting in her kayak.\",is shown sailing for a man.,\"is standing at a sink using a rag and brushing through dyes, soapy water.\"\n9672,anetv_P6z57_sYXm8,140,Windsurfer turns his sail around in a 360. Windsurfer,Windsurfer turns his sail around in a 360.,Windsurfer,gold,teases as the sun breaks.,rides the waves slowly forward.,explain the ramps while the camera pans to the water.,moves the boats and sail around.\n9673,anetv_P6z57_sYXm8,142,Man walks in front of the camera. Windsurfer,Man walks in front of the camera.,Windsurfer,gold,radiate from sunlight in london.,see the man tucks the ring in his mouth while talking to the camera.,holds up products and continues cleaning a fence.,spins his sail around quickly.\n9674,anetv_P6z57_sYXm8,143,Windsurfer spins his sail around quickly. Windsurfer,Windsurfer spins his sail around quickly.,Windsurfer,gold,continues walking and flips down and throws the frisbee before chasing it.,continues climbing through docks.,falls into the ocean.,fishes for a syringe but no shark near him.\n9675,anetv_P6z57_sYXm8,141,Windsurfer rides the waves slowly forward. Man,Windsurfer rides the waves slowly forward.,Man,gold,walks in front of the camera.,takes his turn and waves.,runs down a track and lands in the sand.,gives the durmstrang a wave before sliding down the board onto an jet.\n9676,anetv_pxfc6AIPrig,4629,A person is seen in several different shots performing tricks along the water while others ride around him. The man,A person is seen in several different shots performing tricks along the water while others ride around him.,The man,gold,continues to play the ups while looking off into the distance while the camera follows his movements.,moves back and fourth while continuously moving it all around the area and rubbing his legs.,continues to perform tricks along the water and ends with the video fading to black.,continues riding around and back to the camera.\n9677,anetv_-cApkmTI3F8,17276,A man is seen drinking out of a cup held by a woman who is also drinking from a bottle. The two,A man is seen drinking out of a cup held by a woman who is also drinking from a bottle.,The two,gold,continue drinking as others record them and then stop immediately.,continue to rub down against each other as she passes the woman.,continue to turn and dance with one another while others around them watch.,women are laughing as they pretend to laugh around their left.\n9678,anetv_Cl0lsFUR5HE,7995,A vacant beach is visible and people began to pull their cars up against the coast. The sidewalk then appears and a boy,A vacant beach is visible and people began to pull their cars up against the coast.,The sidewalk then appears and a boy,gold,is seen putting a new tire on.,took off after ramps.,comes to the sidewalk holding a bowling ball and begins to hit it hard.,begins to skateboard down the road near the beach.\n9679,anetv_Cl0lsFUR5HE,7997,\"He continues doing tricks and skateboarding through the city passing people and cars. After a while, he\",He continues doing tricks and skateboarding through the city passing people and cars.,\"After a while, he\",gold,goes down and does tricks as he exits the board.,\"begins to talk about the snow long, with another person following the chase.\",rides past hollywood and parks at the end of a large road below the hen really high hills.,sits down a takes a break and begins talking to another guy before he eventually gets back up to continue skateboarding.\n9680,anetv_Cl0lsFUR5HE,7996,The sidewalk then appears and a boy begins to skateboard down the road near the beach. He,The sidewalk then appears and a boy begins to skateboard down the road near the beach.,He,gold,walks in and then walks on the street and talks to watch the game.,continues doing tricks and skateboarding through the city passing people and cars.,is seen skateboarding on a road and then passing a mall in a small building and several tricks in the street.,are racing from some skips.\n9681,lsmdc1018_Body_Of_Lies-80080,17094,Someone walks out of the meeting room. Images of people coming and going from the house,Someone walks out of the meeting room.,Images of people coming and going from the house,gold,are right down the rivers.,are full.,looms up on the city.,are displayed on a screen.\n9682,anetv_5ya20wcGE-8,2264,A fencing court is shown and people practicing holding epees and doing lunges. woman,A fencing court is shown and people practicing holding epees and doing lunges.,woman,gold,talk to the camera slowly while holding a rope and talking to the camera.,is talking to the camera and her baby is wearing swings.,is talking to the camera in a room.,throws across to them and then appear in the background.\n9683,anetv_5ya20wcGE-8,7528,A woman is then interviewed. then tons of people,A woman is then interviewed.,then tons of people,gold,are shown practicing fencing.,are shown in more clips skiing down a dusty snowy hill.,are interviewed with at other people.,are shown playing beer pong in a yard.\n9684,anetv_wYIeRRTRtX8,15202,She jumps into the water. People,She jumps into the water.,People,gold,is shown doing several tricks with stilts.,perform leafs through the desert.,are standing under the diving board.,are on the horses in the field.\n9685,anetv_wYIeRRTRtX8,15201,A woman is standing on a diving board. She,A woman is standing on a diving board.,She,gold,spins and dances around two times.,helps team swim in the water.,jumps into the water.,jumps into a beam into the water.\n9686,anetv_o7O6XJYVDRE,4029,Red ribbons are tied at each end. A scissor,Red ribbons are tied at each end.,A scissor,gold,is used to cut off the excess clear plastic at each end.,walked into someone's garden.,is also june nuts.,examines a knife's electric nail.\n9687,anetv_o7O6XJYVDRE,4027,Supplies to wrap a gift is laying on a wooden table. A gift wrapped present,Supplies to wrap a gift is laying on a wooden table.,A gift wrapped present,gold,is shown with a serving gift box trimmed next to it.,is shown and puts it into the windows.,is wrapped with a clear plastic and taped in place.,is placed in a purple wrapping box and cut wrapping paper.\n9688,anetv_o7O6XJYVDRE,4028,A gift wrapped present is wrapped with a clear plastic and taped in place. Red ribbons,A gift wrapped present is wrapped with a clear plastic and taped in place.,Red ribbons,gold,are tied at each end.,soar in the air at the end of a sunny downpour.,adorn the floor of the house.,hustle out by palm spiders.\n9689,anetv_o7O6XJYVDRE,4030,A scissor is used to cut off the excess clear plastic at each end. The final wrapped product,A scissor is used to cut off the excess clear plastic at each end.,The final wrapped product,gold,shows a fake knife on a sheet which burned.,wraps up securely and secured in twisted fabric.,is laying on the table.,is placed in the end of the rope.\n9690,lsmdc1048_Gran_Torino-92034,9313,\"He has thin gray hair combed to one side. A young priest, wearing a flowing white surplice,\",He has thin gray hair combed to one side.,\"A young priest, wearing a flowing white surplice,\",gold,steps up to his lectern beside the altar.,leads into the water below.,guide his navel towards the party.,rises from the ridge.\n9691,lsmdc1048_Gran_Torino-92034,9312,Someone stands motionless like a stone statue. Someone,Someone stands motionless like a stone statue.,Someone,gold,is drawn on the feed.,gives someone a withering look.,\"climbs into the lift, which people are riding down on the bridge.\",\"arrives, and places a rocking spring shield onto the floor of the kneeling studio.\"\n9692,lsmdc1015_27_Dresses-79773,18725,\"Someone hurries to meet someone on the terrace of the boat house. Back at the paper, someone\",Someone hurries to meet someone on the terrace of the boat house.,\"Back at the paper, someone\",gold,picks up the phone.,lies on a manuscript atop a second table.,appears out of the bedroom.,spies someone with the cat.\n9693,anetv_rqmi-DjYp0U,10607,She lifts it to her mouth using her feet. She,She lifts it to her mouth using her feet.,She,gold,flaps off her limp hands from her shoulder.,rocks her back and forth over her hips.,wipes her face with her hands.,holds it to her mouth and drinks.\n9694,lsmdc0026_The_Big_Fish-62700,13829,\"Before he can answer, someone spots someone rolling the chair himself, pumping both arms. Someone\",\"Before he can answer, someone spots someone rolling the chair himself, pumping both arms.\",Someone,gold,slips off as someone marches out to help someone with her hopeless costume.,strokes a hand and then drops it.,is wide - eyed and nervous.,dashes to catch up with him.\n9695,lsmdc0026_The_Big_Fish-62700,13834,The chair nearly crashes into the back wall as the doors close. Someone,The chair nearly crashes into the back wall as the doors close.,Someone,gold,\"races someone down the row, finally reaching the chevrolet.\",searches the other floors of the safe.,\"kicks out face, but unable to escape her fleeing gaze.\",rushes through his office window and flops onto the bench.\n9696,lsmdc0026_The_Big_Fish-62700,13830,Someone dashes to catch up with him. The Heavyset Nurse,Someone dashes to catch up with him.,The Heavyset Nurse,gold,leans out of someone's hospital room.,tosses away his backpack.,tosses aside the mixer and walks back to elaborate evening news coverage.,brings someone a note.\n9697,lsmdc0026_The_Big_Fish-62700,13831,\"The Heavyset Nurse leans out of someone's hospital room. Seeing security guards heading their way, a quick -\",The Heavyset Nurse leans out of someone's hospital room.,\"Seeing security guards heading their way, a quick -\",gold,\"communicate someone arrives and sits on the couch, moving slowly.\",intervention someone enters with her.,coming up party push carrying numerous suitcases.,\"thinking someone shoves a nearby cart into them, bowling them down.\"\n9698,lsmdc0026_The_Big_Fish-62700,13837,\"Someone stops short, the traffic backed up. He\",\"Someone stops short, the traffic backed up.\",He,gold,indicates a black and white blue broomstick.,finds the bmw wearing a fedora.,\"honks, trying to get around the jam.\",reaches out and braces himself against his back.\n9699,lsmdc0026_The_Big_Fish-62700,13833,\"Someone brakes hard, sliding with both feet. The chair nearly\",\"Someone brakes hard, sliding with both feet.\",The chair nearly,gold,\"slips into a ledge, then rolls down a hall and comes to a dead end.\",crashes into the back wall as the doors close.,flips as someone slams the door back open.,hits the head in the opposite direction.\n9700,lsmdc0026_The_Big_Fish-62700,13836,Someone lifts his father out of the chair. Someone,Someone lifts his father out of the chair.,Someone,gold,sets him in the passenger seat.,turns back and strides him into the room.,shakes his head as the cat settles in.,lowers the locket and holds it shakily in his lap.\n9701,lsmdc0026_The_Big_Fish-62700,13835,\"Someone races someone down the row, finally reaching the Chevrolet. Someone\",\"Someone races someone down the row, finally reaching the Chevrolet.\",Someone,gold,\"stares at the building and stands, scared to resume doing homework.\",\"stops, tries the door, pulls the handle, then runs out, skidding the door and drops to the floor.\",lifts his father out of the chair.,places her hand on someone's urgently shoulder and follows his gaze.\n9702,lsmdc0026_The_Big_Fish-62700,13832,\"Seeing security guards heading their way, a quick - thinking someone shoves a nearby cart into them, bowling them down. Someone\",\"Seeing security guards heading their way, a quick - thinking someone shoves a nearby cart into them, bowling them down.\",Someone,gold,waves it as he races past a pedestrian bridge.,\"brakes hard, sliding with both feet.\",\"takes one of the sculptures of wild pigs, hauling them into a mud tank.\",speeds toward the tip gate.\n9703,lsmdc3013_BURLESQUE-4612,1997,\"Onstage, the nurses roll someone along in the chair. She\",\"Onstage, the nurses roll someone along in the chair.\",She,gold,throws down her face.,rises to her knees.,escorts her into an elevator.,hits a button on its back door.\n9704,lsmdc3013_BURLESQUE-4612,1996,\"Someone turns on his way out. Onstage, the nurses\",Someone turns on his way out.,\"Onstage, the nurses\",gold,roll someone along in the chair.,hears a radio in the gryffindor data.,gather behind the newlyweds and gather another cake.,receive a vans from someone.\n9705,lsmdc3013_BURLESQUE-4612,1998,\"With a dramatic swoon, someone wipes her brow and lies back. Later a bartender\",\"With a dramatic swoon, someone wipes her brow and lies back.\",Later a bartender,gold,opens the grilled vegetable restaurant.,pours two tequila shots.,stands up and reads her instructions.,brings an empty martini drink.\n9706,lsmdc3013_BURLESQUE-4612,2001,Someone picks up the shot glasses. Someone and someone,Someone picks up the shot glasses.,Someone and someone,gold,watch her down both shots.,\"walk to the next table, which are passing around the clearance table.\",laugh supervising until inside the trap door.,come onto the phone and peer around.\n9707,lsmdc3013_BURLESQUE-4612,1995,Someone paces to a framed photo of her burlesque troupe. The picture,Someone paces to a framed photo of her burlesque troupe.,The picture,gold,reflects her porcelain complexion.,clicks up to zero.,shows the apparently semi - providing tissue memory.,changes to pale crystal with a personal lobby.\n9708,lsmdc3013_BURLESQUE-4612,1999,\"In the dressing room, the dancers fix their makeup. Someone\",\"In the dressing room, the dancers fix their makeup.\",Someone,gold,sets down her tray.,lie in bed wearing their pajamas.,watching to someone and twirl as they swoop down.,\"nods at her brother, who shakes her head, and goes.\"\n9709,lsmdc3013_BURLESQUE-4612,2000,Someone sets down her tray. Someone,Someone sets down her tray.,Someone,gold,rounds a corner and takes out seats with aunt and son.,picks up the shot glasses.,finds a cocktail dress on board.,smiles and sprays herself with champagne.\n9710,lsmdc3013_BURLESQUE-4612,2002,Someone and someone watch her down both shots. Someone,Someone and someone watch her down both shots.,Someone,gold,wheels close to him as he clears off the chair in the car.,kicks up desperately on a banquette of land.,trembles as someone obeys.,joins someone at a costume rack.\n9711,anetv_iyGv338SnrQ,9117,An elderly woman lays on down against a brown pillow. She,An elderly woman lays on down against a brown pillow.,She,gold,holds a harmonica to her mouth and plays it.,\"looks down at his hands, then slumps to place a bed at her bedside.\",pushes a little substance onto the side of her belly.,\"removes a rubiks cube from a shelf, wrapped it up and puts it in the right nostril.\"\n9712,anetv_DozJpP2cClI,5246,A guy hurts himself as the other people watching him laugh at him. The people that were playing badminton,A guy hurts himself as the other people watching him laugh at him.,The people that were playing badminton,gold,are one man playing.,go over and talk to other people that are sitting in lawn chairs.,clap as the white congregation rises to catch the teens.,the little boy gives dances.\n9713,anetv_DozJpP2cClI,5247,The people that were playing badminton go over and talk to other people that are sitting in lawn chairs. The boy,The people that were playing badminton go over and talk to other people that are sitting in lawn chairs.,The boy,gold,blows the whistle down and stabs another set of painting.,points to his floor demonstrating how to play an instrument.,goes into the house as the people continue to laugh.,returns shot while talking some more steps.\n9714,anetv_NrlITLsd7Fk,8647,\"He jumps on a beam, and starts spinning around it. He\",\"He jumps on a beam, and starts spinning around it.\",He,gold,walks on while he takes some footing and falls away.,lands on the mat and bars off as well.,stands naked and talks about the calf's legs and starts to lift up his leg.,kicks out his legs and continues spinning.\n9715,anetv_NrlITLsd7Fk,7126,He spins around the beam multiple times. He then,He spins around the beam multiple times.,He then,gold,completes the strikes and catches it with a pole.,flips it onto the mat.,dismounts from the beam.,throws one foot to the other.\n9716,anetv_8-muYZwFf9c,607,The video leads into various shots of people kite surfing all along the ocean. The person,The video leads into various shots of people kite surfing all along the ocean.,The person,gold,continues riding all along the water while the camera follows him from a bird's eye view.,goes back and fourth on other skiers as multiple people watch on the sides.,plays many tricks with the people as well as ending boards.,runs through ocean water and more people wave it around in the air.\n9717,lsmdc3035_INSIDE_MAN-2224,8020,Someone enters a men's room and marches pass the attendant. She,Someone enters a men's room and marches pass the attendant.,She,gold,moves past a man in the urinal and continues on to a back room.,shuts the door as well as men.,passes up a few of the parkers and stops at the landing of the plaza.,finds someone in another living room with a snatcher in his jaw.\n9718,lsmdc3035_INSIDE_MAN-2224,8021,She moves past a man in the urinal and continues on to a back room. Someone,She moves past a man in the urinal and continues on to a back room.,Someone,gold,comes out of the spherical bedroom into a bathroom.,pulls out a chair by someone 'garden.,sits in a chair as a barber sweeps hair off his shoulders.,\"checks on the man, at the piano and passing floors.\"\n9719,lsmdc3035_INSIDE_MAN-2224,8019,\"Now, he descends a half moon spiral staircase, crossing a floor's elevator lobby to another flight. Someone\",\"Now, he descends a half moon spiral staircase, crossing a floor's elevator lobby to another flight.\",Someone,gold,enters a men's room and marches pass the attendant.,lies on an bed littered with broken debris.,\"peeks outside with his sunglasses, then moves his sunglasses on and checks his watch.\",dons shades like descent.\n9720,lsmdc3035_INSIDE_MAN-2224,8022,Someone sits in a chair as a barber sweeps hair off his shoulders. Someone,Someone sits in a chair as a barber sweeps hair off his shoulders.,Someone,gold,licks his hands and glances skyward.,bends back and watches him.,puts down a newspaper.,leads him out into an alley.\n9721,lsmdc3035_INSIDE_MAN-2224,8023,Someone puts down a newspaper. He,Someone puts down a newspaper.,He,gold,picks up a copy of time book.,brings her a framed photo.,dismisses his aging barber and watches the man go.,swigs into the penalty box.\n9722,lsmdc3059_SALT-28798,3243,\"He wears a mild boyish smile. Back in the present, she\",He wears a mild boyish smile.,\"Back in the present, she\",gold,reaches into a pocket for a $5 - amp.,\"walks down a sidewalk, a knit cap pulled over her hair.\",finds piles of her presents assembling the records compartment.,swaggers up over the bar.\n9723,lsmdc3059_SALT-28798,3242,He approaches a wandering someone. He,He approaches a wandering someone.,He,gold,puts up his hand.,slings someone on his shoulder.,wears a mild boyish smile.,brings him some wine.\n9724,lsmdc3059_SALT-28798,3240,\"She puts a pair of jeans on under her skirt. Staring at the dog, she\",She puts a pair of jeans on under her skirt.,\"Staring at the dog, she\",gold,remembers a butterfly soaring over someone's head in a pavilion filled with lush vegetation.,\"mimes hunched at the rail, as if she actually move on to it.\",points at a white cabin.,\"drops a few feet disgustedly, where she glances in the rearview mirror.\"\n9725,lsmdc3059_SALT-28798,3241,\"Staring at the dog, she remembers a butterfly soaring over someone's head in a pavilion filled with lush vegetation. He\",\"Staring at the dog, she remembers a butterfly soaring over someone's head in a pavilion filled with lush vegetation.\",He,gold,brushes aside and speaks across the screen.,ducks far as spar crosses beneath.,approaches a wandering someone.,follows each patients down a hill.\n9726,lsmdc0030_The_Hustler-64527,3487,\"Stung, someone lies across the table and sets them up himself. They toss their money on the table, and someone shoots, but his shot is too hard and his ball\",\"Stung, someone lies across the table and sets them up himself.\",\"They toss their money on the table, and someone shoots, but his shot is too hard and his ball\",gold,leaps over the side of the table.,is shoved to one side.,drops to just his good touch.,drops through the room.\n9727,anetv_2bS6JfPF1mk,9753,Two young children are shown when one climbs across a set of monkey bars and the other steps out of frame. The girl,Two young children are shown when one climbs across a set of monkey bars and the other steps out of frame.,The girl,gold,jumps to the end of the bars and does another back flip into the air.,flips several times while the camera captures them from view.,makes it to the end of the bars and looks to the camera speaking and smiling.,jumps down and walks towards them and helps the girl back while sitting in the room.\n9728,anetv_NJjoTu1vS7A,16435,They play the game with various parts of the video going in slow motion for dramatic effect. A black screen,They play the game with various parts of the video going in slow motion for dramatic effect.,A black screen,gold,follows the people talking about mohawk game.,appears with two text with one on what the man who can do.,appears with white letters and then another screen with white and red letters showing time and dates for matches.,is shown and the judges are transfixed and the scene changes to winning the game.\n9729,anetv_NJjoTu1vS7A,16434,The video starts with jump cuts of the young men with helmets on and suiting up. They,The video starts with jump cuts of the young men with helmets on and suiting up.,They,gold,turn someone into the water and ride him under the water.,go back and forth in the large court watching.,play the game with various parts of the video going in slow motion for dramatic effect.,return to their sleeping bats.\n9730,anetv_NJjoTu1vS7A,14075,\"Men are sitting in a grass and are adjusting he socks, gloves, helmets and uniforms in general. men\",\"Men are sitting in a grass and are adjusting he socks, gloves, helmets and uniforms in general.\",men,gold,are playing an acoustic guitar.,are running to a building across from men making up bulls on cars.,are in the middle of a field and start the lacrosse game in a big grassy field.,is dressed in a blue cape and walking in the middle of the avenue wearing powder and bumps with his pants.\n9731,anetv_WglqrQ9uR-A,9127,\"Then, the person continues skateboarding and falls again on the road. After, the person\",\"Then, the person continues skateboarding and falls again on the road.\",\"After, the person\",gold,shows his injured legs and the broken shin pads and tennis shoes.,takes a book from the table and throws it on a new skateboard.,jumps off the board and falls on the water.,starts the drive on snowy roads.\n9732,anetv_WglqrQ9uR-A,13131,Two men wearing a helmet are seen walking down a street and are then shown riding boards. The people,Two men wearing a helmet are seen walking down a street and are then shown riding boards.,The people,gold,continue to ride the boards down a hill while the camera pans around himself as well as the area around them.,continue riding around the river continuously jumping around and cheering with one another.,begin to push snow off a car and put them down the road in a sand pit around one another.,are then seen riding on their paintball gear while others sit around the boat.\n9733,anetv_WglqrQ9uR-A,9126,\"One person staggers and falls from the skateboard, and only the road and the sky can be seen. Then, the person\",\"One person staggers and falls from the skateboard, and only the road and the sky can be seen.\",\"Then, the person\",gold,continues walking and standing next to the surf showing this what is in the sand.,continues skateboarding and falls again on the road.,lift and pass one another before falling off in the snow.,ski down the snow going down the hill.\n9734,anetv_WglqrQ9uR-A,13132,The people continue to ride the boards down a hill while the camera pans around himself as well as the area around them. One rider shows blood coming down his knee as well as his helmet and the cameraman,The people continue to ride the boards down a hill while the camera pans around himself as well as the area around them.,One rider shows blood coming down his knee as well as his helmet and the cameraman,gold,shows a scar he has as well.,follows them in the water.,drops in the direction.,records him with clips of people walking.\n9735,anetv_4S09Z8HRtdo,12063,Another man walks in and the group are seen laying up a fence. The men,Another man walks in and the group are seen laying up a fence.,The men,gold,move away from their sides while the men continue to play with one another.,see jump on the lawn.,continue to put boards up on the fence and end by presenting it to the camera.,move through the locker and end by walking to the middle.\n9736,lsmdc3034_IDES_OF_MARCH-2867,8736,\"Now, a neon sign reading Head First hangs in a window. Someone\",\"Now, a neon sign reading Head First hangs in a window.\",Someone,gold,\"sits in his car, staring at the bar.\",steps up to the magnificent gleaming tennis court.,watches someone's shot with a toothy grin on his face.,loads a young man in a red cadillac.\n9737,lsmdc3034_IDES_OF_MARCH-2867,8735,\"Leaning against a reflective window, someone knits his brow and takes a breath. Someone\",\"Leaning against a reflective window, someone knits his brow and takes a breath.\",Someone,gold,puts his hand around someone's face.,leans towards the altar as someone follows and walks to a table where rows of tall beds arranged in front of one another.,ends the call in his dimly lit office.,places her head back and sighs.\n9738,anetv_aEnq40UPxJ0,2575,They are playing a game of water polo. A woman throws the ball into the net and it,They are playing a game of water polo.,A woman throws the ball into the net and it,gold,'s caught by the goalie.,hits the ball hard.,runs up the court.,runs into the house.\n9739,anetv_aEnq40UPxJ0,2574,People are standing in a swimming pool. They,People are standing in a swimming pool.,They,gold,are playing a solo match with one another.,are playing volleyball on the board.,are making pool balls in huge bags.,are playing a game of water polo.\n9740,anetv_mGgidUE8drE,948,We then see the man talking to the camera. We,We then see the man talking to the camera.,We,gold,see the ending title screen.,then see the man perform an show on a stage.,then see the man inside the pumpkin.,pans left and see the man swing the boy upstairs and we see the closing screens.\n9741,anetv_mGgidUE8drE,947,The men then adjusts the bake lever again. We then,The men then adjusts the bake lever again.,We then,gold,see the man talking to the camera.,see the man in yellow as the man talks on the skiboard.,see the closing title card 8.,see the lady jumping off on the bike for a few moments.\n9742,anetv_mGgidUE8drE,944,We see an opening white screen. We then,We see an opening white screen.,We then,gold,see a man pushing a bike brake and adjusting it.,see a pumpkin weld in front of a kitchen.,see people riding in bumper cars and riding a rough.,\"see a balding man, with rigging, and other students across the bleachers.\"\n9743,anetv_mGgidUE8drE,945,We then see a man pushing a bike brake and adjusting it. The man,We then see a man pushing a bike brake and adjusting it.,The man,gold,walks forward and puts the boxes in the clip appliance.,pulls a cord on the bike near the tire.,deflates the man with his left hand.,does a checkered routine with the steel bars.\n9744,anetv_wipGHu-nmNY,16874,A bartender is talking from behind a bar. He,A bartender is talking from behind a bar.,He,gold,hangs out of a bowl of stuff.,\"takes it out, and explains.\",slowly lifts the weights.,shows himself making several different drinks.\n9745,anetv_wipGHu-nmNY,16875,He shows himself making several different drinks. Then he,He shows himself making several different drinks.,Then he,gold,gets out of the shower and pours himself into a bucket of ice.,\"is shown making a specific red drink, shaking it before pouring it into a glass.\",takes a drink from the bottle and looks through several areas of water on the screen.,\"takes the drink from the pot and puts it on a little man siting, tastes it and drinks it.\"\n9746,lsmdc1009_Spider-Man3-76750,2587,It comes to rest on a lower web. A little girl in the vast crowd points up and a wave of heads,It comes to rest on a lower web.,A little girl in the vast crowd points up and a wave of heads,gold,is then lowered into the water.,turn to face someone swinging down on a thread.,gets up to the first lifeboat on a dock.,goes over the hill covered in ice.\n9747,lsmdc1009_Spider-Man3-76750,2591,\"Someone launches himself through the air, the night lights twinkling all around and lands on the bonnet of the yellow cab. Someone\",\"Someone launches himself through the air, the night lights twinkling all around and lands on the bonnet of the yellow cab.\",Someone,gold,\"goes to him, his hands still gripping the steering wheel.\",\"explodes and crashes around them as they grate off the floor, a yellow jet wheel in his hand.\",\"swings into someone and knocks him through the windscreen, tearing off the roof.\",\"leaps out the window, moves to the path of the front basement and passes for him.\"\n9748,lsmdc1009_Spider-Man3-76750,2586,\"Encaged in the cab, someone looks around nervously. It\",\"Encaged in the cab, someone looks around nervously.\",It,gold,continue lined with sacks in the front seat.,\"walks away, revealing someone smiling.\",'s inside the open door.,comes to rest on a lower web.\n9749,lsmdc1009_Spider-Man3-76750,2590,\"He swings up a lamppost, past the reporter, someone. Someone\",\"He swings up a lamppost, past the reporter, someone.\",Someone,gold,'s vision shows us looking back to what she looks like.,\"glances off, then blinks down his tears.\",\"launches himself through the air, the night lights twinkling all around and lands on the bonnet of the yellow cab.\",glances over the bars as someone goes to the door.\n9750,lsmdc1009_Spider-Man3-76750,2588,A little girl in the vast crowd points up and a wave of heads turn to face someone swinging down on a thread. Someone,A little girl in the vast crowd points up and a wave of heads turn to face someone swinging down on a thread.,Someone,gold,\"watches, then back on two of them.\",gapes as the young woman fills the water with kisses.,\"leaps onto a building with the stars and stripes fluttering behind him, then launches himself towards the action.\",\"of the crowd of people, green kicks someone kicks out hard to keep up, but someone is overwhelmed by his own grip.\"\n9751,lsmdc1009_Spider-Man3-76750,2589,\"Someone leaps onto a building with the Stars and Stripes fluttering behind him, then launches himself towards the action. He\",\"Someone leaps onto a building with the Stars and Stripes fluttering behind him, then launches himself towards the action.\",He,gold,\"bungee jump around the net, cheer for cheers and waves.\",fires one drone across a circle which to its front revealing the burning earth to the figure of the chicago ground.,turns to see where he nods nearer is just screaming his way.,\"swings up a lamppost, past the reporter, someone.\"\n9752,anetv_EjRE-fbECtg,11450,\"A man in white shirt and gray shorts is standing at the center of the court, while young people in black tops and black shorts are standing behind him. The young people where standing in a triangle form, the young man at the center start to perform by having his arms up then jump and do it again and some of the girls\",\"A man in white shirt and gray shorts is standing at the center of the court, while young people in black tops and black shorts are standing behind him.\",\"The young people where standing in a triangle form, the young man at the center start to perform by having his arms up then jump and do it again and some of the girls\",gold,followed what he is doing.,are in stage dribbling the ball a few more directions.,eventually wins and each one of the figures come to him to talk.,signs or dance and win a competition.\n9753,anetv_po_mfZ5LUVo,16024,\"Then, the young man gets in the water and swims to the other side of the pull. After, the young man\",\"Then, the young man gets in the water and swims to the other side of the pull.\",\"After, the young man\",gold,gets off the pool.,turns around four times.,ski down some's black body and add his skis forward to the water.,solves the blue screen to come up the same age man wearing two red and white.\n9754,anetv_po_mfZ5LUVo,16023,\"A young man stands on the start line of a swimming pool. Then, the young man\",A young man stands on the start line of a swimming pool.,\"Then, the young man\",gold,gets in the water and swims to the other side of the pull.,makes a long jump.,hit the little ball with the stick and then flip backwards into the pool.,gets soap from a large silver.\n9755,lsmdc3055_PROMETHEUS-26749,6714,\"As his partner slumbers peacefully, he shuffles to a mirror. Facing his reflection, he\",\"As his partner slumbers peacefully, he shuffles to a mirror.\",\"Facing his reflection, he\",gold,hands open his sleeves and examines something.,blinks his bleary eyes.,turns slowly and unties his shirt.,stares at someone's reflection.\n9756,lsmdc3055_PROMETHEUS-26749,6715,\"Facing his reflection, he blinks his bleary eyes. He\",\"Facing his reflection, he blinks his bleary eyes.\",He,gold,takes a seat until the hooded zookeeper lies motionless.,\"takes a few deep breaths, then removes a gold ring and sets it on the sink.\",notices someone stares at his reflection.,gulps up a last morsel of jagged chunk bottle.\n9757,lsmdc3055_PROMETHEUS-26749,6704,Someone lifts his brow persistently. Someone,Someone lifts his brow persistently.,Someone,gold,\"'s eyes darting, agent someone's mother's alien hand comes from someone's cheek.\",\"- skinned, someone signals down to a staffer hooks a set of keys in the lock.\",shoves his head against the floor.,looks away then faces him with a coy smirk.\n9758,lsmdc3055_PROMETHEUS-26749,6716,\"He takes a few deep breaths, then removes a gold ring and sets it on the sink. Bending over, he\",\"He takes a few deep breaths, then removes a gold ring and sets it on the sink.\",\"Bending over, he\",gold,takes out both of the cups and puts the tips under the camera's tiller.,removes a cabinet from the drawer of opens an armoire and sets it on the window frame.,splashes water over his face and close cropped hair.,\"raises a small weight over his head, then drops it on his feet.\"\n9759,lsmdc3055_PROMETHEUS-26749,6710,It's serpentine body lashes around his arm. It,It's serpentine body lashes around his arm.,It,gold,darts behind him as he sharpens his electric drill stick.,finds the gun aimed at him.,sniffs into the air.,snaps his arm like a twig.\n9760,lsmdc3055_PROMETHEUS-26749,6693,\"He leans in and they embrace with mounting passion. Reaching down, someone\",He leans in and they embrace with mounting passion.,\"Reaching down, someone\",gold,grabs her red jacket roughly.,\"pulls someone's shirt up his torso, revealing his toned sun - kissed back.\",wraps her arms around his wife's waist and kisses.,\"strokes her hair, then slides his head out from under the sheet and lays it down at the waist.\"\n9761,lsmdc3055_PROMETHEUS-26749,6697,\"Now in a slinky black turtleneck and low ponytail, someone meanders into the cockpit. Above the layout table, the probe beacons\",\"Now in a slinky black turtleneck and low ponytail, someone meanders into the cockpit.\",\"Above the layout table, the probe beacons\",gold,swiftly approaching his image.,a fluttering lifeboat to the edge of the deck.,crash the ship's engineer ship into data panel.,add additional detail to the now enormous map of the structure.\n9762,lsmdc3055_PROMETHEUS-26749,6700,\"She turns, in a corner someone sits with concertina. Someone\",\"She turns, in a corner someone sits with concertina.\",Someone,gold,operates its control panel.,returns her gaze to the map.,pauses and turns around.,turns to the clergyman and steps out.\n9763,lsmdc3055_PROMETHEUS-26749,6691,Someone blinks back tears and shakes her head. Someone,Someone blinks back tears and shakes her head.,Someone,gold,\"gazes at someone, who shakes his head.\",looks fondly at his reflection in the mirror.,smiles at someone as he rises and smiles.,adverts her wounded gaze.\n9764,lsmdc3055_PROMETHEUS-26749,6694,\"Reaching down, someone pulls someone's shirt up his torso, revealing his toned sun - kissed back. He straightens and she\",\"Reaching down, someone pulls someone's shirt up his torso, revealing his toned sun - kissed back.\",He straightens and she,gold,puts his own hand under her breast.,\"smiles, her lips quivering.\",yanks it off impatiently.,backs away from someone with a tender lingering tender gaze.\n9765,lsmdc3055_PROMETHEUS-26749,6709,The creature's hood wraps around his hand and holds on tight. It,The creature's hood wraps around his hand and holds on tight.,It,gold,heads off into the next room and almost lands on the flat floor below.,'s ferocious sparks draw closer as he angrily shows off his huge funnel.,'s serpentine body lashes around his arm.,\"speeds past the barn, clutching his cash.\"\n9766,lsmdc3055_PROMETHEUS-26749,6719,Someone knits his brow and leans closer to the mirror. He,Someone knits his brow and leans closer to the mirror.,He,gold,looks briefly at someone 'outstretched hand.,\"lifts a hand hesitantly, then tugs down on the skin beneath his eye.\",wears a death vest and sweatpants.,rubs his head then winces.\n9767,lsmdc3055_PROMETHEUS-26749,6695,He straightens and she yanks it off impatiently. Someone,He straightens and she yanks it off impatiently.,Someone,gold,\"keeps shooting, only half inch apart.\",leans down again and kisses her hungrily.,comes up on it and pull off a line.,looks at her at the end and offers the photo to her.\n9768,lsmdc3055_PROMETHEUS-26749,6713,\"Silhouetted against the windows of someone's quarters, someone hunches over and rubs his face. As his partner slumbers peacefully, he\",\"Silhouetted against the windows of someone's quarters, someone hunches over and rubs his face.\",\"As his partner slumbers peacefully, he\",gold,moves effortlessly stiffly against the wall curled nervously at the table.,shuffles to a mirror.,stiffens to pull himself then peeks back from his truck.,tapes his feet close to the sewing machine.\n9769,lsmdc3055_PROMETHEUS-26749,6692,Gazing into her eyes he gives her a tender kiss and rubs her chest. Someone,Gazing into her eyes he gives her a tender kiss and rubs her chest.,Someone,gold,nods and slows with a slight smile.,caresses his cheek then returns the kiss.,arches his arms again and walks off.,\"touches someone's eye for a long moment, then looks away.\"\n9770,lsmdc3055_PROMETHEUS-26749,6698,\"Above the layout table, the probe beacons add additional detail to the now enormous map of the structure. Leaning close, she\",\"Above the layout table, the probe beacons add additional detail to the now enormous map of the structure.\",\"Leaning close, she\",gold,gazes back at the giant ship.,taps the starboard seat with a chain around her neck.,finds a hidden courtyard.,reaches toward the map.\n9771,lsmdc3055_PROMETHEUS-26749,6711,\"Someone falls face first into the black fluid. Now, from the dome's crust, we\",Someone falls face first into the black fluid.,\"Now, from the dome's crust, we\",gold,view a golden sun peeking over the horizon.,\"find them, before catching their breath.\",glimpse a cave imposing stone structure.,see someone from the governor's cathedral.\n9772,lsmdc3055_PROMETHEUS-26749,6717,\"Bending over, he splashes water over his face and close cropped hair. Facing the mirror again, he\",\"Bending over, he splashes water over his face and close cropped hair.\",\"Facing the mirror again, he\",gold,crosses over to the other side of the mirror mirror and opens a compact.,peers at his beady bloodshot eyes.,tosses his fighter's arms down and presses his lips together.,\"grabs up with his other hand, then laughs.\"\n9773,lsmdc3055_PROMETHEUS-26749,6701,Someone returns her gaze to the map. Someone,Someone returns her gaze to the map.,Someone,gold,opens the lid on the ringed planet.,gazes out the graveled window at the departing jetty.,spies a title screen on someone's shirt.,drums the flat ends of his concertina.\n9774,lsmdc3055_PROMETHEUS-26749,6708,Someone falls back on his rear end. He,Someone falls back on his rear end.,He,gold,lifts a university baker into its pocket.,turns to regard someone in the magnificent colonel's clothes.,reaches a hand out.,tosses him the hammer as he treads carefully over the water.\n9775,lsmdc3055_PROMETHEUS-26749,6702,She pauses as he gets to his feet. Someone,She pauses as he gets to his feet.,Someone,gold,sees the wind witch around her.,removes his headphones and glowers.,blinks at him and cocks her head.,\"turns, then puts his head sideways on the bed.\"\n9776,lsmdc3055_PROMETHEUS-26749,6696,\"Someone leans down again and kisses her hungrily. Now in a slinky black turtleneck and low ponytail, someone\",Someone leans down again and kisses her hungrily.,\"Now in a slinky black turtleneck and low ponytail, someone\",gold,stares down at a glowing jeweled bound.,climbs up onto the street without a lamp.,meanders into the cockpit.,makes a record call.\n9777,lsmdc3055_PROMETHEUS-26749,6712,\"Now, from the dome's crust, we view a golden sun peeking over the horizon. Silhouetted against the windows of someone's quarters, someone\",\"Now, from the dome's crust, we view a golden sun peeking over the horizon.\",\"Silhouetted against the windows of someone's quarters, someone\",gold,gazes around in a gleaming golden shimmy beyond.,steps up to a canvas railing and talks to the mayor's lips.,touches her and hugs her tightly.,hunches over and rubs his face.\n9778,anetv_huKjjvCG0EE,18569,Man wearing white uniform is talking to the camera in the field. a man and a woman,Man wearing white uniform is talking to the camera in the field.,a man and a woman,gold,play drums in the audience.,are talking to the camera.,and a woman are engaged in the dancing.,are wearing pink scarves and playing polo.\n9779,anetv_huKjjvCG0EE,18567,Men are standing in a geen grssy field playing croquet. people,Men are standing in a geen grssy field playing croquet.,people,gold,are standing in the stadium field throwing the ball.,are laying on the hedge outdoors.,are taking a stance playing dodgeball.,are sitting on the field around the croquet game.\n9780,anetv_huKjjvCG0EE,18568,People are sitting on the field around the croquet game. man wearing white uniform,People are sitting on the field around the croquet game.,man wearing white uniform,gold,is talking to the camera in the field.,is standing on her in the woods.,is playing with a lacrosse object.,is playing in great dirt.\n9781,anetv_-v9YLmGCYO0,5093,A baby is sitting in a swing. The baby,A baby is sitting in a swing.,The baby,gold,stands next to the girl putting the baby.,is laughing and shaking its feet.,runs towards it to join him.,is crying as he runs.\n9782,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95860,12249,\"Someone looks at the empty chair beside him. Suddenly, someone\",Someone looks at the empty chair beside him.,\"Suddenly, someone\",gold,lifts up some clothes.,gets into his last passenger.,bursts into the hall.,looks like he is carefree.\n9783,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95860,12248,\"The tables are spread with a banquet of mouthwatering food, cakes, sweets, pies, and shiny red apples. Someone\",\"The tables are spread with a banquet of mouthwatering food, cakes, sweets, pies, and shiny red apples.\",Someone,gold,enjoy a long cocktail club while she seems to enjoy her father's date.,looks at the empty chair beside him.,\"slips glasses into someone cup someone's hands, rather, and hurriedly laughs while sorrow welling in his eyes.\",\"scrunches her, staring with soft lovelorn eyes.\"\n9784,lsmdc3063_SOUL_SURFER-31127,16640,\"Surrounded by light, someone looks at right. Someone leans at a window, someone and someone sit in chairs at the foot of the bed, and someone\",\"Surrounded by light, someone looks at right.\",\"Someone leans at a window, someone and someone sit in chairs at the foot of the bed, and someone\",gold,waits on her side.,pats him on the back.,sits at her side.,is the first to answer.\n9785,lsmdc3063_SOUL_SURFER-31127,16637,A nurse holds him back. The emts,A nurse holds him back.,The emts,gold,hops on one of his ski jackets.,wheels a zimmer by the cab.,glows like a drone.,wheeled the wounded girl into the operating room.\n9786,lsmdc3063_SOUL_SURFER-31127,16635,\"Someone shifts the minivan into Park. Her vision blurred, someone\",Someone shifts the minivan into Park.,\"Her vision blurred, someone\",gold,\"sits back, gazing up at someone.\",catches someone's aghast position and wipes her mouth.,watches someone and an emt as they wheel her down a hallway.,sees him lie on their bed.\n9787,lsmdc3063_SOUL_SURFER-31127,16639,Someone holds the defibrillator to the girl's chest inside. She,Someone holds the defibrillator to the girl's chest inside.,She,gold,inserts redial red polish on a loop across his temple.,slowly she passes the ball to the head of someone's teammate.,falls unconscious and open its eyes.,\"gazes ahead, lips parted.\"\n9788,lsmdc3063_SOUL_SURFER-31127,16638,The emts wheeled the wounded girl into the operating room. A nurse,The emts wheeled the wounded girl into the operating room.,A nurse,gold,wiped someone from his microphone.,keeps someone and someone from entering.,grabs him and walks away.,grabs her head and lifts the baby to her feet.\n9789,lsmdc3085_TRUE_GRIT-40386,17142,\"Someone and her companion walk down the busy main street. At the undertakers, Lying in an open coffin, someone's bearded father\",Someone and her companion walk down the busy main street.,\"At the undertakers, Lying in an open coffin, someone's bearded father\",gold,\"watches her, takes her drink up, and holds it up.\",looks serene as if he's sleeping.,picks out some ingredients and sips it.,works at his own cell then gazes off.\n9790,lsmdc3085_TRUE_GRIT-40386,17141,Someone peers out of the window at a sprawling western town. Someone and someone,Someone peers out of the window at a sprawling western town.,Someone and someone,gold,follow the bicycles down the city.,walk up to a parked train where a car passes.,watch a train with a helicopter over it.,climb down from the train.\n9791,lsmdc3088_WHATS_YOUR_NUMBER-42103,19235,Someone dashes downstairs and out the door. Someone,Someone dashes downstairs and out the door.,Someone,gold,stares sadly from the dictaphone.,\"scrambles back into view, looking around wildly.\",stops by a car.,sits holding the bar at the bar.\n9792,lsmdc3088_WHATS_YOUR_NUMBER-42103,19234,Someone carries his groceries further inside. Someone,Someone carries his groceries further inside.,Someone,gold,gathers up his books and drops it in his lap.,holds the boy by his rucksack.,dashes downstairs and out the door.,sets his chair at his starting line.\n9793,lsmdc3088_WHATS_YOUR_NUMBER-42103,19237,\"As someone looks away, she notices a man in a stylish cardigan sweater leaving his house. In a flashback, someone\",\"As someone looks away, she notices a man in a stylish cardigan sweater leaving his house.\",\"In a flashback, someone\",gold,stands by a doorway in a dressing gown and two several naked women.,signals for someone to get into position.,\"sits on one bench, and bare mitt.\",\"works as a waitress, wearing a short black dress with a white apron and frilly white hat.\"\n9794,lsmdc3088_WHATS_YOUR_NUMBER-42103,19240,She takes a deep breath and scrunches up her face. She,She takes a deep breath and scrunches up her face.,She,gold,\"walks down a dark street, lost in thought.\",\"shoots a look at someone, who cracks up.\",waves at her finger in a cordial grin on her cheeks.,gets to the table and puts the bottle down.\n9795,lsmdc3088_WHATS_YOUR_NUMBER-42103,19238,\"In a flashback, someone works as a waitress, wearing a short black dress with a white apron and frilly white hat. She\",\"In a flashback, someone works as a waitress, wearing a short black dress with a white apron and frilly white hat.\",She,gold,flips over the pages of the pages of a book.,smiles at the dashing someone.,sits on the bench and stares quickly out of them.,slips as she strains to drag the party people.\n9796,lsmdc3088_WHATS_YOUR_NUMBER-42103,19236,\"Someone scrambles back into view, looking around wildly. As someone looks away, she\",\"Someone scrambles back into view, looking around wildly.\",\"As someone looks away, she\",gold,\"sees someone sitting in his chair, baby face in his hands.\",notices a man in a stylish cardigan sweater leaving his house.,sees an exit clutched in her hand.,sees the tenor moving across its body as someone's body is carried up the stairs from the underground ring.\n9797,lsmdc3088_WHATS_YOUR_NUMBER-42103,19233,She sets it down with her sandwich and goes. Someone,She sets it down with her sandwich and goes.,Someone,gold,carries his groceries further inside.,wanders back beneath her.,\"reads another piece of bread sitting behind the counter, trying stuck before a seed of timber.\",is reading an elaborate book on the side and takes pictures and reads it.\n9798,lsmdc3088_WHATS_YOUR_NUMBER-42103,19239,\"As they tussle in the middle of the street, someone notices. She\",\"As they tussle in the middle of the street, someone notices.\",She,gold,takes to key on the first floor.,takes a deep breath and scrunches up her face.,whacks someone across the face then swipes it out.,spins as she types in a cluttered office.\n9799,anetv_PUHGXI6N0DA,4264,\"A male gymnast walks up to a beam, powdering his hands. He\",\"A male gymnast walks up to a beam, powdering his hands.\",He,gold,\"mounts the beam, then spins around it several times, changing between bars.\",mounts the parallel bars and lands on the bars.,\"dismounts, then dismounts several steps.\",\"padded himself on a landing, with a health instructor running his hand over a black pole.\"\n9800,anetv_PUHGXI6N0DA,4265,\"He mounts the beam, then spins around it several times, changing between bars. He\",\"He mounts the beam, then spins around it several times, changing between bars.\",He,gold,\"pulls himself up off the roof of the stadium, his eyes closed.\",swings before he continues swinging with his 10 hand outstretched attached and jumping off.,\"dismounts, then raises his arms into the air.\",does a flip and a pole to do.\n9801,anetv_KZLEUd2ALVI,6753,A woman is holding onto a rope attached to a ball. She,A woman is holding onto a rope attached to a ball.,She,gold,spins around several times before launching it onto the field.,is throwing a flying object while a white woman is watching.,is dragged pack around as she continues.,throws the candy away and throws it on the ground.\n9802,anetv_KZLEUd2ALVI,9559,A woman is seen standing in a circle and looking over her shoulder. She,A woman is seen standing in a circle and looking over her shoulder.,She,gold,moves it to the side and she started hitting herself around to the camera.,throws an object off into the distance and is shown again.,then rubs it down and then brushes the bottom into her hair and the back of her head.,moves into frame while holding up objects and ends with her grabbing a table and rubbing them into her.\n9803,anetv_KZLEUd2ALVI,9560,She throws an object off into the distance and is shown again. She,She throws an object off into the distance and is shown again.,She,gold,hits the ceiling several times and ends with two balls.,throws her arms up and walks away afterwards.,turns forward and throws the object off into the distance.,holds up her camera and kisses her.\n9804,anetv_KZLEUd2ALVI,6754,She spins around several times before launching it onto the field. Three men,She spins around several times before launching it onto the field.,Three men,gold,measure the distance she threw it.,take a bow and throw the bow.,dive in front of the camera before standing again.,have been preparing to put their bows down.\n9805,anetv_SMpmoqIk3Ts,7340,Several individuals are in the water playing a game and the man throws an orange ball to a person. The person then,Several individuals are in the water playing a game and the man throws an orange ball to a person.,The person then,gold,takes the ball and throws it to the man sitting next to the goal.,uses his cue to throw a ball to the ground to get the ball back.,hit one of the balls and walks on up teams and practice walking against one another.,takes the black ball and picks up the ball.\n9806,lsmdc3038_ITS_COMPLICATED-17407,8962,She thoughtfully folds her arms. Someone,She thoughtfully folds her arms.,Someone,gold,takes his gear off and follows.,leans closer to him.,hangs up and leaves the station.,kisses her and leaves.\n9807,anetv_2PBdNJcQcp4,15958,Women are dancing on a stage. They,Women are dancing on a stage.,They,gold,are on lake on a surf team.,stand around a stage in front.,are having a duet.,are swinging their hips from side to side.\n9808,anetv_2PBdNJcQcp4,15959,They are swinging their hips from side to side. The dance,They are swinging their hips from side to side.,The dance,gold,is hard on music.,slowly did in splits top.,begins to dance in beat.,is supposed to be sexy.\n9809,anetv_2PBdNJcQcp4,15961,They form a line as they dance. They,They form a line as they dance.,They,gold,\"strides out towards someone, then lets his fingertips graze the barrel of her cheek and gently kiss her forehead.\",turn their backs to the audience and dance.,approach as someone seethes.,see a photo of a man sitting beside the computer.\n9810,anetv_2PBdNJcQcp4,15960,The dance is supposed to be sexy. They,The dance is supposed to be sexy.,They,gold,form a line as they dance.,jump over the stage al the smoke immediately follows to the stage.,mows his lawn with its help.,are wearing bouncing shoes.\n9811,anetv_yuYqFaAnTxI,15485,A series of clips of the same woman performing pole vaults at different professional athletic events plays. A woman holding a pole,A series of clips of the same woman performing pole vaults at different professional athletic events plays.,A woman holding a pole,gold,is shown stepping around with a machine in a studio.,is attempting to solve a cube.,runs on a track toward a goal line and performs a pole vault in front of event onlookers and supporters.,walks on a bridge surrounded by hundreds of spectators including her running with the other.\n9812,lsmdc3079_THINK_LIKE_A_MAN-36831,7370,A woman waiting in the valet area shoots someone a dubious look. The successful business woman,A woman waiting in the valet area shoots someone a dubious look.,The successful business woman,gold,remembers looking down at him aiming his gun at her head.,\"gazes off, then ducks back behind someone.\",meets her gaze with a challenging expression.,steps onto the screen next to his wife in photographs.\n9813,lsmdc3079_THINK_LIKE_A_MAN-36831,7369,\"Someone eyes the beat up silver car, with its missing front bumper, and exposed radiator as it peels out. A woman waiting in the valet area\",\"Someone eyes the beat up silver car, with its missing front bumper, and exposed radiator as it peels out.\",A woman waiting in the valet area,gold,shoots someone a dubious look.,keeps just the car driving.,pops a dressing card over her velvet cake.,wraps herself tightly around her.\n9814,lsmdc3079_THINK_LIKE_A_MAN-36831,7368,A battered sedan pulls up. Someone,A battered sedan pulls up.,Someone,gold,gets up as he walks to the cashier.,\"eyes the beat up silver car, with its missing front bumper, and exposed radiator as it peels out.\",follows someone as he rounds the corner.,\", later, lies on her back, going down through the road, impressed by the start.\"\n9815,lsmdc0004_Charade-47933,13313,It is marked c - 4. He,It is marked c - 4.,He,gold,looks at the lever marked d - 4.,\"binds, and pegs!\",moustache tips down in new mexico.,keeps match the gas.\n9816,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6834,18420,Someone puts her hand into the bag and takes out a tiny dragon. She,Someone puts her hand into the bag and takes out a tiny dragon.,She,gold,\"moves past an elegant woman with a large light webpage, someone past the ark and approaches the besides family.\",climbs into the boat and tries to climb.,leaves the face of the hand then holds it back.,shows it fearfully to the towering someone.\n9817,lsmdc0003_CASABLANCA-47263,2998,Someone pauses and looks at someone. Someone,Someone pauses and looks at someone.,Someone,gold,stands on the stairs with her back turned toward the portrait of someone.,returns someone's gaze with expressionless eyes.,has to look up at that.,nods then tucks her arm around someone's daughter.\n9818,lsmdc0003_CASABLANCA-47263,2987,The door to the plane is closed by an attendant and it slowly taxies down the field. Suddenly a speeding car,The door to the plane is closed by an attendant and it slowly taxies down the field.,Suddenly a speeding car,gold,comes to a stop outside the hangar.,is parked for her.,\"has lifted up to a stop and goes back to it as well when, now the helicopter arrives.\",\"arrives outside the arena, prepping the runway portion going down the streets.\"\n9819,lsmdc0003_CASABLANCA-47263,2982,On the airfield the airplane engine turns over and the propellers start turning. They all,On the airfield the airplane engine turns over and the propellers start turning.,They all,gold,look back toward the scene as a building erupt from the topmost freeway.,turn to see the plane readying for take - off.,stand around a corner as two other soldiers rush forward.,scramble to their feet in one barrier and peer over the vault.\n9820,lsmdc0003_CASABLANCA-47263,2995,The bullet misses its mark. Someone now,The bullet misses its mark.,Someone now,gold,\"shoots at someone, who crumples to the ground.\",leaps onto the fire.,has a hard time hitting the outer wall.,\"aims his gun to the soldier's head, still can't get it.\"\n9821,lsmdc0003_CASABLANCA-47263,2993,Someone watches the plane in agony. He,Someone watches the plane in agony.,He,gold,runs toward it and desperately grabs the receiver.,settles in a bar of white water outside.,picks up the bottle and dries off.,is a unnaturally enchanted with someone whose new laughter is made.\n9822,lsmdc0003_CASABLANCA-47263,2983,They all turn to see the plane readying for take - off. Someone looks at someone and he,They all turn to see the plane readying for take - off.,Someone looks at someone and he,gold,\"very apprehensive, now the same man is clearly frightened to be.\",returns her stare with a blank expression.,\"turns away, leaving a guard in pink.\",sails through the boat.\n9823,lsmdc0003_CASABLANCA-47263,2989,Someone turns to see the plane taxiing towards the runway. Someone,Someone turns to see the plane taxiing towards the runway.,Someone,gold,\"looks briefly at someone, then makes a step towards the telephone just inside the hangar door.\",gently pulls it off.,'s men enter the yacht house.,'re standing at the top of the board.\n9824,lsmdc0003_CASABLANCA-47263,2985,Then someone breaks the silence. Someone,Then someone breaks the silence.,Someone,gold,runs up to someone.,is trying to get the source of his own gratitude.,watches as people walk very deliberately towards the plane.,\", someone, watch her intently.\"\n9825,lsmdc0003_CASABLANCA-47263,2990,\"Someone looks briefly at someone, then makes a step towards the telephone just inside the hangar door. His eyes\",\"Someone looks briefly at someone, then makes a step towards the telephone just inside the hangar door.\",His eyes,gold,widen as an alarm clock reads 6: 000.,dart towards the telephone.,rise in alarm when someone has to someone.,\"shoot our view through the school, reaching a student with framed posters.\"\n9826,lsmdc0003_CASABLANCA-47263,2996,Four gendarmes hurriedly jump out. In the distance the plane,Four gendarmes hurriedly jump out.,In the distance the plane,gold,blows more debris streams past.,turns onto the runway.,splits across the crash site.,cuts two chips away from the camera.\n9827,lsmdc0003_CASABLANCA-47263,2994,\"He runs toward it and desperately grabs the receiver. Someone, one hand holding the receiver,\",He runs toward it and desperately grabs the receiver.,\"Someone, one hand holding the receiver,\",gold,\"pulls out a pistol with the other hand, and shoots quickly at someone.\",picks up with an antenna protest.,tries to pin some of the tile.,is about to tell about alabama off duty movers.\n9828,lsmdc0003_CASABLANCA-47263,2988,Suddenly a speeding car comes to a stop outside the hangar. Someone,Suddenly a speeding car comes to a stop outside the hangar.,Someone,gold,heads toward his bedroom.,nods and grabs his face.,nods toward the field.,steps back up the deck.\n9829,lsmdc0003_CASABLANCA-47263,2986,Someone watches as people walk very deliberately towards the plane. Someone,Someone watches as people walk very deliberately towards the plane.,Someone,gold,leans over the wheel as the bus lifts into the air.,runs into an operating room.,puts a cigarette in his mouth.,falls around the hippogriff with holes in a row.\n9830,lsmdc0023_THE_BUTTERFLY_EFFECT-59607,11032,Someone leaves the cell without another word. Someone,Someone leaves the cell without another word.,Someone,gold,opens his window and dashes down the street.,stand greet someone when one joins someone.,opens his jaw.,sets his tray down at a table filled with someone and some other inmates.\n9831,anetv_TPqgLJpxyvY,18914,They sit up on their bed and rub their face. They,They sit up on their bed and rub their face.,They,gold,take up their soap and wipe them all together.,rinse their hands while using their feet.,go on to their own and begin pumping their hands.,wash their hands and face.\n9832,anetv_TPqgLJpxyvY,18913,A person rolls over in bed and looks at their phone. They,A person rolls over in bed and looks at their phone.,They,gold,sit up on their bed and rub their face.,can pull up line cameras and shoot.,see the kids smiling.,are covered in green and white cream.\n9833,lsmdc1062_Day_the_Earth_stood_still-100812,16989,\"As she pulls into a rain - drenched parking lot, an illuminated golden arches sign is reflected in the car's windscreen. They\",\"As she pulls into a rain - drenched parking lot, an illuminated golden arches sign is reflected in the car's windscreen.\",They,gold,\"slice on an ice cream truck, then run to baker's.\",bolts open the door and peer into the chopper.,drive off in mustang cars as the yellow truck runs down a girls road and parks.,sit with the windscreen wipers and headlights still on.\n9834,anetv_eEBiomp_9tQ,440,A woman in a dress is walking up stairs. She,A woman in a dress is walking up stairs.,She,gold,starts playing an accordion on a field.,is putting a clip on a braid.,begins talking about the dancing.,takes her dress off and starts dancing.\n9835,anetv_eEBiomp_9tQ,441,She takes her dress off and starts dancing. She,She takes her dress off and starts dancing.,She,gold,walks into a room with a racket in chalk.,moves on her performance for a long time.,puts her hand down on her jacket and turns to her camera.,is working out with other people on a step stool.\n9836,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9415,13318,She gives Ripper brandy and glares at someone. Someone,She gives Ripper brandy and glares at someone.,Someone,gold,\"waiter walks off leaving someone chatting with the well - dressed woman, someone, someone and his friends.\",rests her head on his shoulder and puts his arms around someone.,gives someone a warning look.,\"flips the fruit, crestfallen to get turned.\"\n9837,lsmdc1045_An_education-90138,16884,Someone stands completely aghast as the men walk away. She and someone,Someone stands completely aghast as the men walk away.,She and someone,gold,\"talk close to the restaurant, where someone waits for him.\",go through the scene.,walk through a cemetery.,aim at their cues.\n9838,anetv_D5jLypnn6Ps,11514,A woman gives a demonstration on hurling. She,A woman gives a demonstration on hurling.,She,gold,releases the girl and points.,shows the gymnast and a gymnast watch the dive twice and performs it.,\"misses a few times, but gets better.\",backs out and dips plaster onto a pad.\n9839,anetv_D5jLypnn6Ps,7556,She then holds the camera while another girl hits a ball with a stick. A third girl,She then holds the camera while another girl hits a ball with a stick.,A third girl,gold,stands at the end of the field where the balls are being hit to.,bounces out of the pool and begin in jumping on board.,comes down and talks to the girl.,practices jumps and is jumping rope all along in different directions.\n9840,anetv_D5jLypnn6Ps,7559,A girl opposite her hits the ball back. The two girls,A girl opposite her hits the ball back.,The two girls,gold,occupy the balls towards the ball.,grab each other's hands and toss them into their sack.,shake hands with one another.,continue to hit the ball back and forth.\n9841,anetv_D5jLypnn6Ps,7557,The second girl to hit the ball waits for it to be thrown back to her and then attempts to hit the ball with the stick again but misses. She,The second girl to hit the ball waits for it to be thrown back to her and then attempts to hit the ball with the stick again but misses.,She,gold,tries again and hits the ball this time.,\"throws up a shot, then lets outward a bit and end when she makes for it.\",dances the same bit as she goes down buoys shots more and the ball falls.,takes a shot and is seen hitting the ball again.\n9842,anetv_D5jLypnn6Ps,11515,\"She misses a few times, but gets better. She\",\"She misses a few times, but gets better.\",She,gold,points his finger at her.,stick during a full length and then she swings on the court all the way through to the end.,swings and misses but keeps trying.,\"comes down from aerobics, trying to reach for a ball.\"\n9843,anetv_D5jLypnn6Ps,7558,She tries again and hits the ball this time. A girl opposite her,She tries again and hits the ball this time.,A girl opposite her,gold,keeps sticking as her sari lunges.,hits the ball back.,does the same thing as she talks.,is and leans into the net.\n9844,anetv_D5jLypnn6Ps,7554,Several girls are in a big stadium on the field. One girl,Several girls are in a big stadium on the field.,One girl,gold,\"does the handstand, raising her other four.\",hits a ball with a stick she is holding.,gets down circles and turns back.,throws a ball down a field.\n9845,anetv_D5jLypnn6Ps,7555,One girl hits a ball with a stick she is holding. She then,One girl hits a ball with a stick she is holding.,She then,gold,snatches it from his hand and gets it good.,plays with her hands as she gets hit and runs.,throws balls around another.,holds the camera while another girl hits a ball with a stick.\n9846,anetv_zRBspE-uJUo,15277,Two people are stretching on the side and the man grabs a boogie board. The man,Two people are stretching on the side and the man grabs a boogie board.,The man,gold,continues to hit the ball on the second line while people watch.,is washing the men's hands.,spins the kite over the water as he falls into the water.,continues to swim back and fourth as well as perform stretches around the side.\n9847,anetv_zRBspE-uJUo,13144,A man is seen moving in slow motion along a pool while a woman speaks to the camera. More people,A man is seen moving in slow motion along a pool while a woman speaks to the camera.,More people,gold,are shown swimming in different swimming figures as well as beach volleyball.,move to the side and wave at each other.,are shown playing instruments in the arena.,are seen swimming in the water demonstrating proper strokes as well as using paddles.\n9848,anetv_zRBspE-uJUo,15276,A man is seen swimming across a pool and a woman speaking to the camera. Two people are stretching on the side and the man,A man is seen swimming across a pool and a woman speaking to the camera.,Two people are stretching on the side and the man,gold,grabs a boogie board.,begins wiping water around a man's face.,puts his hand over the illustration.,continues to back maneuvers all the way.\n9849,anetv_Irmh66trRY4,13923,We see baking supplies and ingredients. Someone,We see baking supplies and ingredients.,Someone,gold,soaks the pasta in a mug.,boils pasta to water.,pours the mixture into two pan flat.,stirs cookie dough and puts cookies on a sheet.\n9850,anetv_Irmh66trRY4,13924,\"Someone stirs cookie dough and puts cookies on a sheet. The cookies go into the oven and bake for 9 minutes, and a new batch\",Someone stirs cookie dough and puts cookies on a sheet.,\"The cookies go into the oven and bake for 9 minutes, and a new batch\",gold,of cheese is sole results.,of nuts is shown.,is placed over to the camera and teases it off the table.,is put in the oven.\n9851,anetv_Irmh66trRY4,13925,\"The cookies go into the oven and bake for 9 minutes, and a new batch is put in the oven. The warm cookies\",\"The cookies go into the oven and bake for 9 minutes, and a new batch is put in the oven.\",The warm cookies,gold,are displayed on the slices and the credits of the cookies are shown across the screen.,are shown on bread and being rolled off the oven.,melts the dough on top of the cookies and then hangs up from the oven.,are put on a cooling rack.\n9852,anetv_Irmh66trRY4,13926,The warm cookies are put on a cooling rack. The person,The warm cookies are put on a cooling rack.,The person,gold,flips the dough on the table.,bites a potato with the knife then puts the oven.,\"washes, and drys the silicone baking sheet.\",pours the sandwich again and continues moving around.\n9853,anetv_Irmh66trRY4,13922,We see the title go across the screen. We,We see the title go across the screen.,We,gold,see a title on screen.,see a soccer cheer.,see a title screen.,see baking supplies and ingredients.\n9854,anetv_Irmh66trRY4,13927,\"The person washes, and drys the silicone baking sheet. They\",\"The person washes, and drys the silicone baking sheet.\",They,gold,put the coating on the cake then lay the glass down.,wipe the wood under the wooden floorboards with the adhesive.,roll the baking sheet up and show us the finished cooling cookies.,dance in more sunlight.\n9855,lsmdc0029_The_Graduate-64369,836,\"As she walks, she is joined by another girl with whom she converses as they walk. As they approach, they\",\"As she walks, she is joined by another girl with whom she converses as they walk.\",\"As they approach, they\",gold,pull back the curtain and step on the other boys.,have tied they have a little yellow dress and a tie around her ankles.,are joined by a tall boy with a beard.,wrap a sharp felt towards a bed and its chairs 1000 feet below.\n9856,lsmdc0029_The_Graduate-64369,835,\"She walks, carrying her books, in someone's direction. As she walks, she\",\"She walks, carrying her books, in someone's direction.\",\"As she walks, she\",gold,\"looks up at a photograph of her father behind the teacher, and fumbles for a picture.\",is joined by another girl with whom she converses as they walk.,notices her journals put on the floor in each of them.,smiles and swims from paddling.\n9857,lsmdc0029_The_Graduate-64369,837,\"As they approach, they are joined by a tall boy with a beard. He\",\"As they approach, they are joined by a tall boy with a beard.\",He,gold,picks up a bouquet of pink polish.,wears a small body with an ivy built up to his chest.,tries to get an impression of that time from his hand.,\"starts toward them, falters, straightens himself.\"\n9858,anetv_J8WxSDLZwu0,2350,This baby hits the ball and falls down. Then he,This baby hits the ball and falls down.,Then he,gold,jumps over the bar while being there for the rest of the time.,gets up and the score is shown.,lifts the same place and turns the montage back to give the right sign on the stick.,gets back up and grabs the stick to attempt hitting the ball again.\n9859,anetv_J8WxSDLZwu0,2351,Then he gets back up and grabs the stick to attempt hitting the ball again. Next he,Then he gets back up and grabs the stick to attempt hitting the ball again.,Next he,gold,bends back to play a game of tennis while the camera captures the areas of the heavy ball.,picks up a ball and gets through to the ground.,takes a rag and continues competing the racket while still shooting the ball to the camera.,falls again and gets back up while holding the stick and he grabs the ball hitting it really far.\n9860,anetv_oXPgInpuHDA,11395,A group of cheerleaders perform in the middle of a basketball court while an audience watches. A man,A group of cheerleaders perform in the middle of a basketball court while an audience watches.,A man,gold,shows someone how to do punches by doing a flip in the air.,walks through the bottom of the frame.,serves the adults and completes a race.,does at the bottom of the stage followed by a gymnast performing gymnastics.\n9861,lsmdc0053_Rendezvous_mit_Joe_Black-71432,5753,\"Someone heads for the kitchen. Someone is locked on someone, it\",Someone heads for the kitchen.,\"Someone is locked on someone, it\",gold,'s a zoo quality of his nightmare.,is as if there is nobody else in the room.,is in the counter.,wrestles the people backward though then alien they fence.\n9862,lsmdc3042_KARATE_KID-19624,3598,\"Now, we soar over an emerald - hued mountain range with conical peaks. On a crowded passenger car, someone\",\"Now, we soar over an emerald - hued mountain range with conical peaks.\",\"On a crowded passenger car, someone\",gold,works his way down with narrowed eyes as he passes by.,points around a pair of eyeglasses urns and strides wearily up a crowded walkway.,gazes out a window at the exotic landscape.,lifts the bag wheel as a large truck passes him.\n9863,lsmdc3042_KARATE_KID-19624,3594,He releases the boy and shuffles off. Someone,He releases the boy and shuffles off.,Someone,gold,stares ahead with a lingering glare.,\"watches, slack - jawed.\",snags a heavy bucket of food.,glares at him and shoves him into his pocket.\n9864,lsmdc3042_KARATE_KID-19624,3596,The student retrieves his jacket and whirls it around his shoulders. He,The student retrieves his jacket and whirls it around his shoulders.,He,gold,reads the navel his shoulder and stares at his father.,exhales slowly and his lips dropping again.,\"pauses, then spins it off and whips it around his body again.\",takes out a pistol then looks down at it.\n9865,lsmdc3042_KARATE_KID-19624,3597,\"He pauses, then spins it off and whips it around his body again. He\",\"He pauses, then spins it off and whips it around his body again.\",He,gold,holds the plunger above one ear.,\"continues sweeping the jacket around his body, practicing as he heads out of the courtyard.\",continues to make the drink he was just won.,steps into the carriage and arrives at someone's feet.\n9866,lsmdc3042_KARATE_KID-19624,3595,\"Someone watches, slack - jawed. The student\",\"Someone watches, slack - jawed.\",The student,gold,retrieves his jacket and whirls it around his shoulders.,furrowed someone's helmet.,is dragged out of the train.,gets out of the truck and dives down into the water.\n9867,lsmdc1009_Spider-Man3-76294,18135,\"The actress spots someone at the back of the auditorium. Sitting in a sea of empty seats, the producer and director\",The actress spots someone at the back of the auditorium.,\"Sitting in a sea of empty seats, the producer and director\",gold,followed the actress's awkward gaze.,watch him go through an array of yoga club.,starts onto his colleagues.,are at the center of the bar.\n9868,lsmdc1009_Spider-Man3-76294,18132,Someone tosses the ball to someone and knocks a vase over. Someone,Someone tosses the ball to someone and knocks a vase over.,Someone,gold,shoves an opponent with the blast.,takes it into a big drive.,watches someone run away.,nimbly catches the vase in one hand and the ball in the other.\n9869,lsmdc1009_Spider-Man3-76294,18138,She smiles as they applaud. Her smile,She smiles as they applaud.,Her smile,gold,is thin with concentration.,lovingly framed a perfect size flower.,becomes a sexy pale delicate with yellow wands which she sadly braids.,quickly fades as she realizes the crowd is not for her.\n9870,lsmdc1009_Spider-Man3-76294,18136,\"Sitting in a sea of empty seats, the producer and director followed the actress's awkward gaze. The director\",\"Sitting in a sea of empty seats, the producer and director followed the actress's awkward gaze.\",The director,gold,points her notebook and glances at the crowd who claps her hands on his knees.,looks nervously to a mirror.,puts on a fake smile.,answers his front door with a bushy finger.\n9871,lsmdc1009_Spider-Man3-76294,18133,She comes through to the auditorium and her step falters. Another actress,She comes through to the auditorium and her step falters.,Another actress,gold,is going through her moves on stage.,wedges someone's name over her framed brown body.,is listening to the broadcast in the screen.,sits on a flat couch floor with pictures of the man playing a television.\n9872,lsmdc1009_Spider-Man3-76294,18140,A marching band cuts through the workers waving placards and balloons. Someone,A marching band cuts through the workers waving placards and balloons.,Someone,gold,approaches someone in the throng.,looks her across the eye.,is in a street followed by a man blowing from behind a fence.,\"walks down the center, to a podium.\"\n9873,lsmdc1009_Spider-Man3-76294,18139,She looks up at someone swinging by with barely fail resentment. She,She looks up at someone swinging by with barely fail resentment.,She,gold,kicks someone's dagger.,hurries through the crowd as her name is covered up on the theater front with a name of someone.,quickly spots a candy start on the ground on an alleyway.,\"raises her full glass into the air, whipping it into the middle of the garden.\"\n9874,lsmdc1009_Spider-Man3-76294,18130,\"Grabbing the ball of someone, someone turns into someone's study and stares the chaise long and remembers laying someone's dead body on it. Someone\",\"Grabbing the ball of someone, someone turns into someone's study and stares the chaise long and remembers laying someone's dead body on it.\",Someone,gold,\"joins him against the wall, fully clothed.\",\"drops the bone, blood trickling the surface of his hand.\",\"is lying on a bed, smoking a cigarette and catching it.\",looks at his father's portrait.\n9875,lsmdc1009_Spider-Man3-76294,18131,Someone looks at his father's portrait. Someone,Someone looks at his father's portrait.,Someone,gold,studies the painting.,tosses the ball to someone and knocks a vase over.,runs inside the building.,sits down and his head slumps against a cage wire.\n9876,lsmdc1009_Spider-Man3-76294,18129,\"Someone steals the ball of someone and bounces it back to him in the lavishly - furnished hallway. Grabbing the ball of someone, someone\",Someone steals the ball of someone and bounces it back to him in the lavishly - furnished hallway.,\"Grabbing the ball of someone, someone\",gold,turns into someone's study and stares the chaise long and remembers laying someone's dead body on it.,drops it on the floor and swings someone off the couch.,returns to the lab and finds the rippling floor of the cave.,awkwardly tries to retrieve the flower to someone who bashfully sips from his mug.\n9877,lsmdc1009_Spider-Man3-76294,18134,Another actress is going through her moves on stage. The actress,Another actress is going through her moves on stage.,The actress,gold,attempts to act through a wall of blood - related clips.,washes her own shirt with soap.,\"sings as she dances, groomers.\",spots someone at the back of the auditorium.\n9878,lsmdc1009_Spider-Man3-76294,18137,Someone's glum expression melts away. She,Someone's glum expression melts away.,She,gold,races down the steps.,gives a stony nod.,smiles as they applaud.,jabs someone's leg with her elbow.\n9879,anetv__HMwzNA9DNY,15946,We see young men holding bow and arrows. We,We see young men holding bow and arrows.,We,gold,see a replay of a hammer throw again.,see the man playing ping pong.,see the men take their arrows and shoot.,man in a white uniform walks around a pool on a field.\n9880,anetv__HMwzNA9DNY,5006,People are setting up targets on a field. People,People are setting up targets on a field.,People,gold,are standing in a line holding bow and arrows.,are in the woods playing a game of lacrosse.,play paintball in a grassy field.,are running around the sides.\n9881,anetv__HMwzNA9DNY,15948,We see a couple of men leave the line. We then,We see a couple of men leave the line.,We then,gold,see the ending screen.,see the own play on a green board with people standing around them.,see the closing screen.,see students riding canoes on the water.\n9882,anetv__HMwzNA9DNY,5007,People are standing in a line holding bow and arrows. They,People are standing in a line holding bow and arrows.,They,gold,start to shoot at the targets on the field.,are then shown playing lacrosse on the field.,shuffle board with the bow and bow.,are making bows and arrows.\n9883,anetv__HMwzNA9DNY,15945,We see a man at the targets holding one and taking it off the field. We,We see a man at the targets holding one and taking it off the field.,We,gold,see a boy applying dried gauze to the floor.,\"instructs in various shots, and then wraps the cookies in the bow.\",see young men holding bow and arrows.,see a boy sharpen a client in a container and show several pictures.\n9884,anetv__HMwzNA9DNY,15943,We see an opening title screen. We,We see an opening title screen.,We,gold,see men tossing a ball against a foosball table.,see a man in a man standing in front of an audience.,see targets at the end of a long field.,see two boys in white uniforms holding rings.\n9885,lsmdc1057_Seven_pounds-97662,17081,\"A woman in a short, white skirt and a T - shirt gets out of a golf buggy with a guy in chinos and a polo shirt. They\",\"A woman in a short, white skirt and a T - shirt gets out of a golf buggy with a guy in chinos and a polo shirt.\",They,gold,\"is shown in slow motion, not crashing into windshield.\",walk to a ball.,leap in the air to catch a move.,lift their bikes from the ground.\n9886,lsmdc1057_Seven_pounds-97662,17080,Someone is in his face. Someone,Someone is in his face.,Someone,gold,\"smiles, acutely embarrassed.\",runs across from the cooker to where someone is charging.,pushes someone's head back against a window and marches out.,is shining face heavily.\n9887,anetv_HeOj7jZ0igI,9295,She then engages in a game of jousting. She,She then engages in a game of jousting.,She,gold,points her joust at the camera threateningly.,hit the ball with the cue stick.,is hitting the ball with a stick.,lays the girl and then continues her routine on some string of exercise.\n9888,anetv_HeOj7jZ0igI,9294,A woman prepares her jousting clothing and gear. She then,A woman prepares her jousting clothing and gear.,She then,gold,engages in a game of jousting.,talks to the camera with show clips then hiding amongst the parts and hitting her.,hits the cooker with her equipment attachment.,ties another steer with black ribbon and walks it toward it.\n9889,anetv_HeOj7jZ0igI,3712,She points at the camera with her sword. A coach,She points at the camera with her sword.,A coach,gold,comes to dress her and fix equipment.,starts a championships bar successfully.,instructs her by putting a contact lens into her eye.,watches them stands in the doorway.\n9890,anetv_HeOj7jZ0igI,3714,The gym is full of kids fencing and practicing. She,The gym is full of kids fencing and practicing.,She,gold,starts fencing with another girl.,leans into the president and starts talking.,completes the rope by the crowd.,starts doing a choreography.\n9891,anetv_HeOj7jZ0igI,3713,A coach comes to dress her and fix equipment. The gym,A coach comes to dress her and fix equipment.,The gym,gold,is doing crunches to the new floor gym.,\"is making a mess in gym holding a ball, and a crew and other men is outside.\",\"is an outdoor event where there are two groups standing in front, getting dressed.\",is full of kids fencing and practicing.\n9892,anetv_HeOj7jZ0igI,3711,A girl walks along the gym holding her fencing gear. She,A girl walks along the gym holding her fencing gear.,She,gold,lifts her arm off her thigh and does a conscious flip.,continues around and wanders over with the baton in the air.,pauses and continue her jumping.,points at the camera with her sword.\n9893,lsmdc1031_Quantum_of_Solace-84411,13421,\"Cargo strains in its straps, which snaps back towards someone. Both propellers\",\"Cargo strains in its straps, which snaps back towards someone.\",Both propellers,gold,give out under the strain.,turn and cower back.,dive into the water.,\"peer down the corridor, killing their cocks.\"\n9894,lsmdc1031_Quantum_of_Solace-84411,13422,Both propellers give out under the strain. Someone,Both propellers give out under the strain.,Someone,gold,drops down vertical fuselage to someone.,\"is distracted, clinging to a cable - cord which his hands are wearing.\",counts the sting remote.,enters the small village where guards kayaks on benches.\n9895,lsmdc1031_Quantum_of_Solace-84411,13420,\"Someone raises the nose, gaining as much height as possible. Cargo strains in its straps, which\",\"Someone raises the nose, gaining as much height as possible.\",\"Cargo strains in its straps, which\",gold,spins out of its face repeatedly.,snaps back towards someone.,pulls someone like door.,seem to swirl around clothing and power lifting.\n9896,lsmdc1031_Quantum_of_Solace-84411,13418,The fighter turns to avoid a collision and hurtles straight towards the rocks. He,The fighter turns to avoid a collision and hurtles straight towards the rocks.,He,gold,hovers as the chopper lands in a hot tracker.,gets out into the forecourt.,throws here a parachute.,\"glances at someone, who shifts and looks moved.\"\n9897,lsmdc1031_Quantum_of_Solace-84411,13423,\"Someone drops down vertical fuselage to someone. He grabs her, and they\",Someone drops down vertical fuselage to someone.,\"He grabs her, and they\",gold,tumble out into space.,spray him toward the rim.,pull him into the boat.,sit on a floor beside a bed.\n9898,lsmdc1031_Quantum_of_Solace-84411,13419,\"She venches open the outside door for someone, who gropes for his chute, then hauls on the stick to get out of the plane over the hill. Someone\",\"She venches open the outside door for someone, who gropes for his chute, then hauls on the stick to get out of the plane over the hill.\",Someone,gold,\"raises the nose, gaining as much height as possible.\",\", he heads up o. s. as someone climbs to the front of someone's car and shuts the driver's door.\",surfs through the water clouds.,leans on the grate.\n9899,lsmdc1055_Marley_and_me-96451,15955,\"They drive on down the sunny freeway toward the city. Back home, someone\",They drive on down the sunny freeway toward the city.,\"Back home, someone\",gold,is standing in a bank with a camcorder.,walks past two standing sidecar.,paces from a bench and peers out its door in the elegant cemetery.,opens the front door for his wife.\n9900,lsmdc1055_Marley_and_me-96451,15954,\"Without looking at him, she settles back against her headrest and stares out of the window. They\",\"Without looking at him, she settles back against her headrest and stares out of the window.\",They,gold,drive on down the sunny freeway toward the city.,share a distant look.,make a small box.,watch from a stone window.\n9901,lsmdc1055_Marley_and_me-96451,15953,\"The drive down a palm tree - lined road, lost in thought. Without looking at him, she\",\"The drive down a palm tree - lined road, lost in thought.\",\"Without looking at him, she\",gold,casts a weary look at him and take a seat.,settles back against her headrest and stares out of the window.,\"rides away, very slowly, terrified.\",\"reacts fast, satisfied, and looks down at the road, exactly the only figure lying very still on a suburban track.\"\n9902,lsmdc1055_Marley_and_me-96451,15960,\"As she starts to cry, she leans forward and hugs the big Labrador. Someone\",\"As she starts to cry, she leans forward and hugs the big Labrador.\",Someone,gold,\"hugs someone and pushes her down, her lead consulting through the water.\",gives a thoughtful look.,slithers out of sight.,\"walks over and sits next to her, stroking her back.\"\n9903,lsmdc1055_Marley_and_me-96451,15958,\"Eyes full of concern, he turns around from filling the kettle at the sink. Someone\",\"Eyes full of concern, he turns around from filling the kettle at the sink.\",Someone,gold,\"'s sitting blankly, petting marley, who's resting his chin on her knee.\",perks up as he wrenches a waiter's flame.,\"turns to a man of vanilla bullets and the other man holds it, where it stirs.\",takes a deep breath.\n9904,lsmdc1055_Marley_and_me-96451,15959,\"Someone's sitting blankly, petting Marley, who's resting his chin on her knee. As she starts to cry, she\",\"Someone's sitting blankly, petting Marley, who's resting his chin on her knee.\",\"As she starts to cry, she\",gold,sniffs something and runs a revolver at someone's forehead.,armful some notes in impulse to tow the crumpled paper up to her room.,leans forward and hugs the big labrador.,glares down at him.\n9905,lsmdc1055_Marley_and_me-96451,15956,\"Back home, someone opens the front door for his wife. Marley jumps up at him, but he\",\"Back home, someone opens the front door for his wife.\",\"Marley jumps up at him, but he\",gold,does n't really know that.,hangs limp and awkwardly runs down a tightrope.,pushes the dog aside.,is already into a famous dish.\n9906,lsmdc1055_Marley_and_me-96451,15961,\"She leans against him as he rubs her arm, soothingly. A young dark - haired woman\",\"She leans against him as he rubs her arm, soothingly.\",A young dark - haired woman,gold,gets out carrying a bag and a suitcase.,sits on a recliner beside him on the sofa at his side.,kicks out a newspaper photo he moved from his classroom where he'd been concentrating.,sits with the a someone.\n9907,lsmdc1055_Marley_and_me-96451,15957,\"Marley jumps up at him, but he pushes the dog aside. Eyes full of concern, he\",\"Marley jumps up at him, but he pushes the dog aside.\",\"Eyes full of concern, he\",gold,catches an twirl then jerks the legs back.,\"walks over to the shop entrance first, then spins and raises his arms.\",turns around from filling the kettle at the sink.,ambles over to the freezer cabinet.\n9908,anetv_altXks0a0qY,4703,Two woman are outdoors at a zoo riding on the back of a camel. The woman are waving and a man behind the camera,Two woman are outdoors at a zoo riding on the back of a camel.,The woman are waving and a man behind the camera,gold,\"is asking them to wave, look and say hi at the camera.\",jumps up to the couch and the woman.,grabs the camels while the man walks by leading the camel.,and as the camel pulls a rope over the edge.\n9909,anetv_altXks0a0qY,1849,The woman on the back of the camel waves at the camera. the camel,The woman on the back of the camel waves at the camera.,the camel,gold,begins to walk and carry the women on it's back.,begins to fold as it turns to behind the lady and browse.,is attached to the rope.,shows the foot moving while the camera follows her.\n9910,anetv_altXks0a0qY,4704,\"The woman are waving and a man behind the camera is asking them to wave, look and say hi at the camera. The camera man\",\"The woman are waving and a man behind the camera is asking them to wave, look and say hi at the camera.\",The camera man,gold,makes an cake with a light on the man and conversation of an surfing model.,zooms in on the women as the woman in the red jacket gives a thumbs up.,is on a fancy lawn getting closer around the bowling shop.,walks with the drivers as they play the game and cook cookies.\n9911,anetv_altXks0a0qY,4705,The camera man zooms in on the women as the woman in the red jacket gives a thumbs up. As a woman mentions that she is ready the camel walks forward and then the camera,The camera man zooms in on the women as the woman in the red jacket gives a thumbs up.,As a woman mentions that she is ready the camel walks forward and then the camera,gold,zooms in the center and the two keep eating.,cuts the end.,goes down the step.,pans down and toward bushes.\n9912,anetv_MAXfslyf7Dw,739,Sumos are standing in front of each other in a dust court and a referee dress in white suit is watching them. men,Sumos are standing in front of each other in a dust court and a referee dress in white suit is watching them.,men,gold,are in a court playing large game of field hockey with two men behind them.,stat wrestling and one of them if taking off the court.,start sliding back down a court in court throwing the ball.,are sitting on a blue mat to do their karate and marching back and forth fencing.\n9913,anetv_N2WxAkVh-C4,575,She shows off a spray she has and proceeds to spray her hair with it. She,She shows off a spray she has and proceeds to spray her hair with it.,She,gold,\"her hair, she then pulls her hair away and applies it with a sponge and shoulder blazer.\",shows off a blow dryer and its attachments.,scrubs the hair off of her hair with several times and places it onto her side.,continues to style her hair while rollerblading at the end.\n9914,anetv_N2WxAkVh-C4,572,A woman runs her fingers through her hair. She,A woman runs her fingers through her hair.,She,gold,clips him lightly with the frisbees.,shows off two hair styling products she has and grabs the shampoo.,clutches a blue sweater and takes out a brush.,\"picks up a brush, then begins wiping her hair with a rag.\"\n9915,anetv_N2WxAkVh-C4,576,She shows off a blow dryer and its attachments. She,She shows off a blow dryer and its attachments.,She,gold,puts the leaves in her hair and looks at the camera.,continues shaving her legs talking to the camera and brushes her hair as well.,places one of the attachments on the blow dryer.,fry the little parts look just.\n9916,anetv_N2WxAkVh-C4,573,\"She grabs the other product, a hair masque. She\",\"She grabs the other product, a hair masque.\",She,gold,is using it to light a place.,is only half hidden now.,points it out to the burning table.,combs all of her hair.\n9917,anetv_N2WxAkVh-C4,579,She combs her newly styled hair. She,She combs her newly styled hair.,She,gold,then is got a large brush of hair in the mane.,rolls over on her face.,arranges her hair around and shows off the styled hair.,are shown on screen describing a tutorial used by rollerblading tricks in a driveway.\n9918,anetv_N2WxAkVh-C4,10879,She sprays something into her hair. She,She sprays something into her hair.,She,gold,starts to blow dry her hair.,looks on the brushes and places the polish on him.,applies it on her neck and lower it in a ponytail and hair.,uses a scarf to protect her from the clip.\n9919,anetv_N2WxAkVh-C4,10878,A woman picks up a shampoo bottle. She,A woman picks up a shampoo bottle.,She,gold,tosses a security trooper on the ground.,sprays something into her hair.,starts blow drying her hair.,glares at it and punches someone in the hallway.\n9920,anetv_N2WxAkVh-C4,577,She places one of the attachments on the blow dryer. She,She places one of the attachments on the blow dryer.,She,gold,lies attempting to polish the string with her foot.,continues cutting leaves and blowing it with it.,blow dryers her hair.,takes a few sections.\n9921,anetv_N2WxAkVh-C4,574,She combs all of her hair. She,She combs all of her hair.,She,gold,begins styling it from her hair.,begins to dry her hair.,then combs out fur to wrap it around her hair and extend it off.,shows off a spray she has and proceeds to spray her hair with it.\n9922,anetv_N2WxAkVh-C4,578,She blow dryers her hair. She,She blow dryers her hair.,She,gold,combs her newly styled hair.,begins blow dry her hair.,cuts the hair after sections.,pulls out the bun.\n9923,anetv_N2WxAkVh-C4,10880,She starts to blow dry her hair. She then,She starts to blow dry her hair.,She then,gold,brushes her hair with a comb.,begins to blow dry her hair with a intake of hairspray.,dries it in with the paper dryer.,tosses the blue letters again.\n9924,anetv_0pxONuRdIAY,4647,Two people give a news report about the importance of wearing sunscreen and talk with each other. People,Two people give a news report about the importance of wearing sunscreen and talk with each other.,People,gold,are shown outside putting sunscreen on.,are taping him on.,are running in front of them.,are shown of the team in the area as the first eye is displayed on the lcd screen.\n9925,anetv_0pxONuRdIAY,4648,People are shown outside putting sunscreen on. The newscasters then,People are shown outside putting sunscreen on.,The newscasters then,gold,puts his eye on a man as a dressed man.,talk at the end with each other.,lays down on them.,start laughing in kayaks beside each other.\n9926,anetv_Te1d8H4VWYw,5800,A small group of people are seen swimming around a pool grabbing a ball and throwing it back and fourth. The people,A small group of people are seen swimming around a pool grabbing a ball and throwing it back and fourth.,The people,gold,continue playing with one another on the sides and shows the girl performing various moves and speaking to the camera.,are then shown fencing with one another while others watch on the side.,continue playing with one another and throw the ball around.,swim around the water and end by showing them back to the camera.\n9927,anetv_NxnEKnqWLCI,6744,The man carries the board out onto the water and begins riding the water. The person,The man carries the board out onto the water and begins riding the water.,The person,gold,continues moving to get along and ends by raising his arms up.,continues to ride around following behind another person on the water.,rides a board continuously along to the water followed by another person climbing down side waterfalls.,continues to the camera.\n9928,anetv_NxnEKnqWLCI,6743,A camera pans around a group of people sitting at a table followed by a man holding a surf board. The man,A camera pans around a group of people sitting at a table followed by a man holding a surf board.,The man,gold,continues speaking and leads into him playing on the skis.,continues to wave with the camera while his brother watches and stunts.,speaks to the camera while more shots are shown of people swimming in gear manner.,carries the board out onto the water and begins riding the water.\n9929,anetv_yDWOqabreoU,6205,She swings at a pinata and misses. She,She swings at a pinata and misses.,She,gold,continues to try to explain how to throw the boy on the land.,does a tight flip and kicking with the stone one at a time.,enters a large field field and walks away.,\"steps closer and tries again, hitting it this time.\"\n9930,anetv_yDWOqabreoU,6208,She keeps swinging at missing. She,She keeps swinging at missing.,She,gold,dives at the ceiling.,\"stops for moment, takes a hard swing and hits it.\",\"walks away, then with the sponge being brushed and its creating a whiz of light charging in from the outside.\",lies on the long side.\n9931,anetv_yDWOqabreoU,6206,\"She steps closer and tries again, hitting it this time. She\",\"She steps closer and tries again, hitting it this time.\",She,gold,is running the car way.,backs up as a dog comes into the picture.,\"giggles, entranced, or modeling photographers.\",takes a heave from her head.\n9932,anetv_yDWOqabreoU,6204,A girls has a pole and she is blindfolded. She,A girls has a pole and she is blindfolded.,She,gold,\"goes with her kicking the stick, trying to keep the ball on her ground.\",swings at a pinata and misses.,starts dusting the floor indoors.,dangles off the water as she throws down the rope a few times.\n9933,lsmdc0038_Psycho-67460,6151,The camera mounts the steps to the porch. Someone's hand,The camera mounts the steps to the porch.,Someone's hand,gold,is near the top of the stove.,follows the children in the bushes.,pushes the door open.,walks in the corridor past him.\n9934,lsmdc0038_Psycho-67460,6146,\"Someone remains at the door, then turns right, heading for the path. As he passes the office, he\",\"Someone remains at the door, then turns right, heading for the path.\",\"As he passes the office, he\",gold,sees the owner's open window through an open window to see from the same customer.,\"glances out of the grounds, where a group of other peasants are outstretched towards the water.\",marches back toward the ramshackle mansion.,is shocked to see someone standing just inside the open door.\n9935,lsmdc0038_Psycho-67460,6149,Someone stops at the house and looks up. She,Someone stops at the house and looks up.,She,gold,aims her gun at the sky.,steps out of a service cruiser.,finds a sheet of cake with big misty colors.,turns to the house again.\n9936,lsmdc0038_Psycho-67460,6145,\"Angle close on cabin one as someone comes out, turns to her left, goes along porch toward cabin twelve. Someone\",\"Angle close on cabin one as someone comes out, turns to her left, goes along porch toward cabin twelve.\",Someone,gold,takes a pair of crystal toys from them.,glances across the basement - style hallway toward the rear of the building.,\"remains at the door, then turns right, heading for the path.\",\"makes aside card, and goes towards the house.\"\n9937,lsmdc0038_Psycho-67460,6144,\"Someone gets to it first, opens it a slight crack, looks out, then opens it wide enough for someone and Himself to pass through. Angle close on cabin one as someone comes out, turns to her left,\",\"Someone gets to it first, opens it a slight crack, looks out, then opens it wide enough for someone and Himself to pass through.\",\"Angle close on cabin one as someone comes out, turns to her left,\",gold,starts down the tall path behind a young man and sits on his skateboard on the sidewalk.,\"turns around, sees the seatbelt, turns.\",\"sees something, turns around and tries to climb his saddle into the trailer.\",goes along porch toward cabin twelve.\n9938,anetv_Ft3SzVtUsKA,16359,A camera is shown sitting on the side of a pool capturing bubble underneath. More bubbles,A camera is shown sitting on the side of a pool capturing bubble underneath.,More bubbles,gold,are shown followed by a man jumping in.,\"are shown crashing over the table, man holding the water and speaking to the camera.\",swim into the water.,are then shown on the busy screen.\n9939,lsmdc1015_27_Dresses-79798,14626,\"Someone then helps her down. She lurches drunkenly, and he\",Someone then helps her down.,\"She lurches drunkenly, and he\",gold,stops her from falling.,slackens tipsily back to her camera.,turns on someone and moans.,shoots someone in the face.\n9940,lsmdc1015_27_Dresses-79798,14628,\"They stare in each others' eyes, then someone kisses him hard and passionately. They\",\"They stare in each others' eyes, then someone kisses him hard and passionately.\",They,gold,flips through his papers.,are in the pockets.,carry on kissing in the volvo and tearing off each others' soaking wet clothes.,struggle to form the thick network of herbs.\n9941,lsmdc1015_27_Dresses-79798,14627,\"She lurches drunkenly, and he stops her from falling. They stare in each others' eyes, then someone\",\"She lurches drunkenly, and he stops her from falling.\",\"They stare in each others' eyes, then someone\",gold,and smile at one another.,kisses him hard and passionately.,glances over at his older son.,bears her name on top of her gold ring.\n9942,lsmdc1015_27_Dresses-79798,14629,\"They carry on kissing in the Volvo and tearing off each others' soaking wet clothes. The next day, someone\",They carry on kissing in the Volvo and tearing off each others' soaking wet clothes.,\"The next day, someone\",gold,is skiing down some stairs in the rain.,strolls down the grassy slope carrying two coffees.,walks dressed switched from an winter - smoking cell parts and holds something to his ear.,\"emerges from her cottage wearing a kit laden tuxedo, which someone walks on.\"\n9943,lsmdc1015_27_Dresses-79798,14630,\"The next day, someone strolls down the grassy slope carrying two coffees. The early sun reflects off the windows, and someone\",\"The next day, someone strolls down the grassy slope carrying two coffees.\",\"The early sun reflects off the windows, and someone\",gold,saunters up a curving hallway to the freight elevator at the top of the stairs.,goes up the front window of an apartment building.,is still asleep in the mud - spattered car.,'s slumped in the wheelchair behind her.\n9944,lsmdc0019_Pulp_Fiction-56933,1935,The gangster's feet go out from under him and the big man falls flat on his back. Someone,The gangster's feet go out from under him and the big man falls flat on his back.,Someone,gold,\"pounces on the fallen body, punching him twice more in the face.\",steps back onto the bed.,rises in a cage.,catches up with the angrily alien and carries them off.\n9945,anetv_f0JySdrM_l8,2356,Another person comes and throws a disk onto the field. People,Another person comes and throws a disk onto the field.,People,gold,are standing at the side of the field is watching.,flip around one at a time.,are placed under their hood and cover their face.,are doing tricks behind it.\n9946,anetv_hlvs-e3bCq0,19238,\"Several people are playing drums and instruments in the snow, and marching. We\",\"Several people are playing drums and instruments in the snow, and marching.\",We,gold,\"see many people competing in a skiing competition, and traveling together in groups to the next slopes.\",continue trying to play undercover tennis.,\", a man is talking in front of the camera and begins playing the drums with them.\",begin playing instruments together.\n9947,anetv_hlvs-e3bCq0,12680,A skier goes down a hill. There,A skier goes down a hill.,There,gold,are grabing wax onto the roof trying to put on his shoes.,are shown on a moving platform.,continues as a boy falls out onto the ground and falls.,is a shot of the mountain.\n9948,anetv_hlvs-e3bCq0,19236,A man is skiing on a snow covered mountain. He,A man is skiing on a snow covered mountain.,He,gold,gets down from snow covered ground as he walks away.,falls up the side of the car and up the slope.,skis up to a group of people before we see an aerial video of the mountains.,swims down a hill of snow.\n9949,anetv_hlvs-e3bCq0,19237,He skis up to a group of people before we see an aerial video of the mountains. Several people,He skis up to a group of people before we see an aerial video of the mountains.,Several people,gold,are standing around a building on a building.,\"are playing drums and instruments in the snow, and marching.\",are seen riding waves and lead into one another.,ride over the canyon and spin around in a circle.\n9950,anetv_hlvs-e3bCq0,19239,\"We see many people competing in a skiing competition, and traveling together in groups to the next slopes. It\",\"We see many people competing in a skiing competition, and traveling together in groups to the next slopes.\",It,gold,lift up over a heighten hurdle.,is now dusk on a road side beach with several other scenes of two buildings.,see in the green and the people ride around.,ends with the people getting into a fun snowball fight.\n9951,anetv_hlvs-e3bCq0,12682,Several people are shown playing traditional instruments. A girl,Several people are shown playing traditional instruments.,A girl,gold,falls from the water.,is at a camp.,is interviewed on the mountain.,continuously keeps her hands up and talks about her movements.\n9952,anetv_IUnqrqZ_x_A,1001,They are involved in a jousting match. They,They are involved in a jousting match.,They,gold,are also getting left turn into a ball.,are in a pool playing a game of volleyball.,watch a guard in the other room.,parry and poke at each other with swords.\n9953,anetv_IUnqrqZ_x_A,17503,Two people are dressed in fencing gear and are in a fencing match where they are going at each other very quickly with their pointy swords. The man on the left,Two people are dressed in fencing gear and are in a fencing match where they are going at each other very quickly with their pointy swords.,The man on the left,gold,let go and too came in place.,takes each injured leg and leads him towards the ground.,lifts his face screen up and lets out a scream as he's walking.,is then speaking to a boy and then the girl returns to positions in the pool.\n9954,anetv_IUnqrqZ_x_A,17504,The man on the left lifts his face screen up and lets out a scream as he's walking. The men start another round of fencing and suddenly the man on the left,The man on the left lifts his face screen up and lets out a scream as he's walking.,The men start another round of fencing and suddenly the man on the left,gold,\"removes his helmet, throws his hands up in the air and begins cheering.\",handle picked up one arm and wrestles long of what's been being given wrestling.,is walking faster that the helmet falls on a young boy in they can position and the lightning misses and his body falls backwards.,teaches the baby to do the same thing with other day and the other one has to lie down.\n9955,lsmdc3085_TRUE_GRIT-40613,17640,Someone and someone watch the cabin from high up on the hill above it. Someone,Someone and someone watch the cabin from high up on the hill above it.,Someone,gold,bumps into the autumnal's trunk.,readies his rifle and pistol.,\"stands, watching over the thin curtains.\",stares up at the bear.\n9956,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86676,11592,Someone shakes his head ruefully as someone looks around at the factory. Someone,Someone shakes his head ruefully as someone looks around at the factory.,Someone,gold,pulls someone's hand out of his sleeve.,\"gets up, hurries into the kitchen.\",looks across the room at the dog.,looks back at someone.\n9957,lsmdc1001_Flight-71667,18553,\"He sees a seated man on the tv gesturing as rescue workers push a stretcher behind him. On tv, cell phone footage\",He sees a seated man on the tv gesturing as rescue workers push a stretcher behind him.,\"On tv, cell phone footage\",gold,shows the descent of the plane as it swerves and slices off the church steeple.,is attached to a plastic chair next to a stand porch.,is telling the story of cheers.,shows a woman in a suit suit packing the lingerie.\n9958,lsmdc1001_Flight-71667,18555,\"It glides overhead, both engines on fire. And\",\"It glides overhead, both engines on fire.\",And,gold,the crowd roars and hustles through the crowd as he nuzzles the dog.,slams down on its side as people in white robes run for cover.,screams as someone snorts a line of cocaine from someone's gun.,\"moving, someone roars past and leans against the roof of the rv's floor.\"\n9959,lsmdc1001_Flight-71667,18554,\"On tv, cell phone footage shows the descent of the plane as it swerves and slices off the church steeple. It\",\"On tv, cell phone footage shows the descent of the plane as it swerves and slices off the church steeple.\",It,gold,\"glides overhead, both engines on fire.\",springs out then slaps the clock.,'s a sunset flight of a map.,scoots down onto the porch of a building with a low western willow hanging by.\n9960,lsmdc1001_Flight-71667,18549,Someone looks up at a female emt leaning over him. The broken - off spire from the church,Someone looks up at a female emt leaning over him.,The broken - off spire from the church,gold,blows to the mailbox at her feet.,\"is narrow, dark - tracking with bathed terrain.\",lies some distance away from an ambulance as rescue workers help survivors.,reads greeted with negative world scenes.\n9961,lsmdc1001_Flight-71667,18558,\"The man wears a suit with the collar open, and is staring intently at his cell phone. Someone\",\"The man wears a suit with the collar open, and is staring intently at his cell phone.\",Someone,gold,turns and someone smiles.,drives his old car down a dark street lined with flowers and trees.,looks at someone and nods.,shifts his gaze into earnest ice.\n9962,lsmdc1001_Flight-71667,18557,Someone averts his gaze from the screen and notices a man in the room. The man,Someone averts his gaze from the screen and notices a man in the room.,The man,gold,\"gets up, grabs his briefcase and leads them into a red modern couch.\",picks up the phone on his mobile.,takes a seat facing him.,\"wears a suit with the collar open, and is staring intently at his cell phone.\"\n9963,lsmdc1001_Flight-71667,18556,\"Someone, his head wrapped in gauze. Someone\",\"Someone, his head wrapped in gauze.\",Someone,gold,averts his gaze from the screen and notices a man in the room.,launches his unconscious body onto the lawn and stands upright.,stares again - - they have breakfast.,gives me a measuring bowl and eats it.\n9964,lsmdc1001_Flight-71667,18552,The other eye is covered by a bandage. He,The other eye is covered by a bandage.,He,gold,opens a closed package.,lifts his rifle and throws it high into the air.,sees a seated man on the tv gesturing as rescue workers push a stretcher behind him.,hands them to someone.\n9965,lsmdc1001_Flight-71667,18551,\"In a hospital ward, someone slowly opens his right eye. The other eye\",\"In a hospital ward, someone slowly opens his right eye.\",The other eye,gold,scan his eye and arrow.,is covered by a bandage.,looks round at a woman with a firefighter tank.,passes down someone's face as they search.\n9966,lsmdc1001_Flight-71667,18545,The plane hits the ground. Debris,The plane hits the ground.,Debris,gold,\"falls to the ground, catches hold of someone's arms.\",snaps the tires shut.,catapults into the air behind the train.,glides past the cockpit as someone bangs his head and passes out.\n9967,lsmdc1001_Flight-71667,18548,\"Someone is slumped next to someone's still body, her head crushed by a collapsed bulkhead. Smoke\",\"Someone is slumped next to someone's still body, her head crushed by a collapsed bulkhead.\",Smoke,gold,flies in a plume of dust.,rains down on her as he sees the gnarled pile of dead.,blocks someone's vision as he is pulled away from the plane as people in white robes help the passengers.,billows on the toilets one by one.\n9968,lsmdc1001_Flight-71667,18550,\"The broken - off spire from the church lies some distance away from an ambulance as rescue workers help survivors. In a hospital ward, someone slowly\",The broken - off spire from the church lies some distance away from an ambulance as rescue workers help survivors.,\"In a hospital ward, someone slowly\",gold,opens his right eye.,\"slides down the road, changing back knees to side.\",rises from the blanket sobbing someone into the berth.,descends the frame to someone and bends over to the sheet for an airplane.\n9969,anetv_b8S0HFHh_p0,2991,A man is recording himself in a lever with another man. The ride goes up higher and the man with a hat,A man is recording himself in a lever with another man.,The ride goes up higher and the man with a hat,gold,is talking to the other.,knows him the wrong way.,is snowboarding on the streets.,stands on the third lift.\n9970,anetv_b8S0HFHh_p0,2992,The ride goes up higher and the man with a hat is talking to the other. The ride reaches the top and the man,The ride goes up higher and the man with a hat is talking to the other.,The ride reaches the top and the man,gold,pass in the other direction.,holds out his arms.,comes to a stop.,checks up on the camera.\n9971,lsmdc3069_THE_BOUNTY_HUNTER-4504,2586,Someone gingerly gets to his feet. Someone,Someone gingerly gets to his feet.,Someone,gold,grabs the young man and cuffs him.,unzips someone's pants.,\"removes the knife from its sheath, counting it out.\",hoists her arms around her waist.\n9972,lsmdc3069_THE_BOUNTY_HUNTER-4504,2584,On the roof the young man scampers one way then races back the other way with someone on his tail. The rugged man,On the roof the young man scampers one way then races back the other way with someone on his tail.,The rugged man,gold,waits one cringing as the cruiser slows to a second speed.,\"pushes the suv down the road, run long, just as the express comes to a halt.\",\"looks the way the ford did, then lurches.\",chases his target to the roof's edge where the young man leaps off.\n9973,lsmdc3069_THE_BOUNTY_HUNTER-4504,2582,\"Still in his Uncle Sam jacket and beard, the young man races across a building's roof. He\",\"Still in his Uncle Sam jacket and beard, the young man races across a building's roof.\",He,gold,swerves furtively through the raging troopers of ladies.,\"looks at globe footage, as someone peers over a shark - built rifle.\",halts at its edge and eyes a police van below.,pins him on the feet and kicks him through a narrow corridor.\n9974,lsmdc3069_THE_BOUNTY_HUNTER-4504,2583,He halts at its edge and eyes a police van below. On the roof the young man,He halts at its edge and eyes a police van below.,On the roof the young man,gold,climbs out of a chair and prepares a piece of the pumpkins.,crashes into the car and swerves with his boogie board.,scampers one way then races back the other way with someone on his tail.,is serpentine pulled out of the car.\n9975,lsmdc3069_THE_BOUNTY_HUNTER-4504,2585,Someone hands an officer his badge and i d.. Someone gingerly,Someone hands an officer his badge and i d..,Someone gingerly,gold,sets the briefcase on the seat.,gets to his feet.,makes a layup but store broad down.,removes his pistol from someone's boot.\n9976,lsmdc3069_THE_BOUNTY_HUNTER-4504,2587,\"Now, someone steps off an elevator - phone in hand - and strides past a reception desk. Golden letters behind it\",\"Now, someone steps off an elevator - phone in hand - and strides past a reception desk.\",Golden letters behind it,gold,\"read, daily news.\",topples the machine into an ornate entryway.,flashes into a door from a great hall.,\"reads, white evening.\"\n9977,lsmdc3069_THE_BOUNTY_HUNTER-4504,2588,\"As she heads to her desk, a mustached man watches her shapely bottom. Someone\",\"As she heads to her desk, a mustached man watches her shapely bottom.\",Someone,gold,finds a print - out of her mugshot taped to her computer.,watches as someone turns to monitors.,rehearsal a boy wearing a stylish black dress suit and pink dress.,paces to the curb.\n9978,lsmdc0026_The_Big_Fish-62074,7771,\"Someone closes his eyes, hands at his side, ready to be eaten. Someone\",\"Someone closes his eyes, hands at his side, ready to be eaten.\",Someone,gold,\"just stares at him, not sure what to do.\",\"throw the cricket bat over the net, scattering all around the court.\",is boldly through the streets.,is just advancing slowly on someone's ass.\n9979,lsmdc0026_The_Big_Fish-62074,7775,\"Reaching up, someone shoves his hand into someone's mouth. And that\",\"Reaching up, someone shoves his hand into someone's mouth.\",And that,gold,ripples all over the wave.,'s the sad truth.,continues to be the perfect shell.,tumbles onto the train.\n9980,lsmdc0026_The_Big_Fish-62074,7777,\"Someone is less a monster than a freak - - a giant man, but in the end, just a man. Someone\",\"Someone is less a monster than a freak - - a giant man, but in the end, just a man.\",Someone,gold,steps up within the control room as the dragon puts someone appears over the top of him and places it against the controls.,expresses vain to avoid swinging and trying to shoot into the brick arena.,jumps out of the funeral pyre and falls to someone floor with the passengers.,takes a seat beside him.\n9981,lsmdc0026_The_Big_Fish-62074,7776,And that's the sad truth. Someone,And that's the sad truth.,Someone,gold,is making a small laugh.,becomes a battle and mass of armour.,\"is less a monster than a freak - - a giant man, but in the end, just a man.\",must do - - watches it happens.\n9982,lsmdc0026_The_Big_Fish-62074,7772,\"Someone just stares at him, not sure what to do. After a beat, someone\",\"Someone just stares at him, not sure what to do.\",\"After a beat, someone\",gold,presses a hand on to someone's chest and disturbing it with a powerful thud.,\"stares at their teeth, starts brushing his hair, then smiles at someone.\",\"claps his hands and his drink cap, already reflected in the glass, then slowly opening his eyes.\",\"opens his eyes a tiny bit, just to see what the giant is doing.\"\n9983,anetv_gWz4P3Jnis8,1503,The man is holding a shisha and began blowing smoke while tapping his mouth and talk to the camera. The man,The man is holding a shisha and began blowing smoke while tapping his mouth and talk to the camera.,The man,gold,is showing the silver shisha and move the camera to his face.,come back and look around then is walking down a street.,finishes and moves away from the camera utility man.,is not certain how to break a hookah and sporting eyelids is held in by a close looking razor.\n9984,anetv_gWz4P3Jnis8,17403,A man is sitting on his couch inside of the house talking with a hookah in his arms. He puts the hookah in his mouth and inhales some some and then he,A man is sitting on his couch inside of the house talking with a hookah in his arms.,He puts the hookah in his mouth and inhales some some and then he,gold,takes the liquid out of his mouth.,starts exhaling and tapping his face at the same time making o's.,handing it to the camera and continues to smoke the cigarette.,smokes another cigarette that does n't smoke and continues to talk.\n9985,anetv_gWz4P3Jnis8,17404,He puts the hookah in his mouth and inhales some some and then he starts exhaling and tapping his face at the same time making o's. He,He puts the hookah in his mouth and inhales some some and then he starts exhaling and tapping his face at the same time making o's.,He,gold,shoot in various locations and take it off in the end.,takes out some lighter solutions as he plays the tumbled again.,\"zooms up and on in the same intimate spot, both his facial hair blows back into place.\",talks trying to explain how you make the o's or what not before going ahead and demonstrating again.\n9986,anetv_gWz4P3Jnis8,1502,The couch is being shown then the camera moved to the face of the man. The man,The couch is being shown then the camera moved to the face of the man.,The man,gold,walked in place and stood up several times and talked.,trims dispassionately and turns.,is holding a shisha and began blowing smoke while tapping his mouth and talk to the camera.,swishes a drink to his mouth and continues to pick and kicks his guitar into the woman's lap.\n9987,lsmdc1023_Horrible_Bosses-82059,1578,The guys ride in someone's car. He,The guys ride in someone's car.,He,gold,has already washed his hands.,is grinding his jaw as he cracks a smile.,drives up outside someone's house.,reveals their oriental army.\n9988,anetv_9bERRZ2eTbo,15006,A man is seen standing before a counter and putting water into a container. He then,A man is seen standing before a counter and putting water into a container.,He then,gold,puts more soap into his hands while presenting to the camera.,cleans the stands with petrol and a scrubs on followed by a smaller piece of equipment.,begins shaving dry animals with a sponge.,mixes ingredients into the container and leaves it out.\n9989,anetv_9bERRZ2eTbo,17939,The man then puts lemonade mixture into the large container and stirs it around. The man,The man then puts lemonade mixture into the large container and stirs it around.,The man,gold,is then seen wandering around the kitchen as well as pouring himself a glass.,then demonstrates using ingredients with palms and a bowl using dusts and liquid.,adds a large wrap to the mixture for cooking and then replaces it next a pan.,puts a peeler in a pan and cuts a lemon in half.\n9990,anetv_9bERRZ2eTbo,15007,He then mixes ingredients into the container and leaves it out. He,He then mixes ingredients into the container and leaves it out.,He,gold,adds more ingredients needed to all the ingredients and shows it at the camera for the pot.,finishes it from him.,puts it in the fridge and then drinks a glass of it.,shows several people properly riding in the city's water.\n9991,anetv_9bERRZ2eTbo,17938,A man is seen pouring water out into a measuring cup followed by pouring it into a large container and repeating several more times. The man then,A man is seen pouring water out into a measuring cup followed by pouring it into a large container and repeating several more times.,The man then,gold,puts lemonade mixture into the large container and stirs it around.,begins using the polish inside a rag and hitting the heated ball around and looking around.,places the liquor in another container in a triangle and turns it around to the next person using an empty stick.,speaks to the camera and points objects out of as fast washing items appear and cuts people all over.\n9992,lsmdc0010_Frau_Ohne_Gewissen-51713,14296,\"Then with great difficulty he gets out a match, tries to strike it, but is too weak. Someone\",\"Then with great difficulty he gets out a match, tries to strike it, but is too weak.\",Someone,gold,wrenches free as someone drives away.,\"takes the match out of his hand, strikes it for him and lights his cigarette.\",\"spreads it aside, leaving someone sweaty back and bloody, staring at the wood.\",\"stands up with him on his side, moves for the door in the walkway.\"\n9993,lsmdc0010_Frau_Ohne_Gewissen-51713,14295,He gets a loose cigarette out of his pocket and puts it between his lips. Then with great difficulty he,He gets a loose cigarette out of his pocket and puts it between his lips.,Then with great difficulty he,gold,backs up and gives him a backpack full of paperwork.,keeps the eyes locked on his thought.,drops the pole to the ground in front of him.,\"gets out a match, tries to strike it, but is too weak.\"\n9994,anetv_plE3KNmuwj4,2472,People sail in a boat in a river while a man water ski pulling by the boat. The person water ski and,People sail in a boat in a river while a man water ski pulling by the boat.,The person water ski and,gold,sit on rocks before walking onto a boat and sitting down next to the boat making jumps happy.,\"does a spectacular flip in the air, and continues water skiing.\",falls in a water before finally people sail in the shallow water and walking on the truss bridge.,grabs the skis of the ocean that is then water surfing on it.\n9995,anetv_plE3KNmuwj4,2473,\"Then, the person water ski and flips in the air while two helicopters follows him close. After, a man water ski on ramp while an helicopter\",\"Then, the person water ski and flips in the air while two helicopters follows him close.\",\"After, a man water ski on ramp while an helicopter\",gold,sails under the water.,washes the road over the dock.,flies close to him.,speeds on the ground.\n9996,anetv_plE3KNmuwj4,11362,\"Three men are in the boat, while a man is wakeboarding, as the two helicopters are flying about the water, the surfer is wakeboarding from side to side and then flipping over and doing cartwheel. The surfers\",\"Three men are in the boat, while a man is wakeboarding, as the two helicopters are flying about the water, the surfer is wakeboarding from side to side and then flipping over and doing cartwheel.\",The surfers,gold,are riding wind surfing.,are wakeboarding over ramps.,stay on their backs and stay upright as they chase the water.,get down and go at a firm fall on the ice.\n9997,anetv_6rfFmqz6s8M,4988,The machine is shown moving on its own. One of the individuals,The machine is shown moving on its own.,One of the individuals,gold,tries to solve the cube while the others watch.,plays table tennis with the machine.,walks up the slope.,gets a flip out of the frame.\n9998,anetv_6rfFmqz6s8M,4987,Several individuals are shown assembling some sort of machine. The machine,Several individuals are shown assembling some sort of machine.,The machine,gold,comes moving very quickly with a lever.,continues to move while the clip being dropped.,begins to move several people then continues to play.,is shown moving on its own.\n9999,anetv_6rfFmqz6s8M,10678,A man is inside a building working with some kind of eqiupment. He,A man is inside a building working with some kind of eqiupment.,He,gold,stops pacing to look up and score.,uses a computer to monitor the process.,shoots and fumbles with a tool.,is working on the roof.\n10000,anetv_6rfFmqz6s8M,10679,He uses a computer to monitor the process. We then,He uses a computer to monitor the process.,We then,gold,\"see the button, and wax in it.\",see a store of warm upright and a search light.,see a man playing a game of table tennis against a large robotic machine.,see the presses and the hand to the table about five a week and then we see someone describing their score.\n10001,anetv_6rfFmqz6s8M,4989,One of the individuals plays table tennis with the machine. A small boy,One of the individuals plays table tennis with the machine.,A small boy,gold,stands and points around as he hits the dart board.,is playing field bag.,is serving a strike.,plays table tennis with the machine as others watch on.\n10002,lsmdc3055_PROMETHEUS-26810,16658,\"As the transport pulls out, someone rides beside it on an atv. A lone crew member\",\"As the transport pulls out, someone rides beside it on an atv.\",A lone crew member,gold,reveals his lower colleague.,collects their things on their luggage and shuts them outside.,\"is sitting on a bus, finishing in a long ride: someone stops at a long distance.\",\"sees them off, then twirls his finger in the air.\"\n10003,lsmdc3055_PROMETHEUS-26810,16660,\"Later, the vehicles approach the structures gateway. Riding behind the transport, someone\",\"Later, the vehicles approach the structures gateway.\",\"Riding behind the transport, someone\",gold,glides over a nearby bike.,peers over a military cruiser then approaches a passenger.,halts and gazes after it as it passes through.,hops out and smashes the chest of hoses.\n10004,anetv_jMQP5ePI4eQ,14882,A man in a white shirt is sitting down playing a guitar. Next to the man,A man in a white shirt is sitting down playing a guitar.,Next to the man,gold,is still and smiling.,is a smaller screen of a black and white video of a man singing and a woman.,is shown playing the drums.,is the man filming the game.\n10005,anetv_SyOdA4ZKEtQ,2653,A black screen appears with pink letters explaining what the video is about and who is in it. Gymnasts,A black screen appears with pink letters explaining what the video is about and who is in it.,Gymnasts,gold,are at a gym showing how to tumble and flip.,are standing in a circle with legs and hand doing abs.,are in a sand room putting in what events put on their gear.,\"sports vintage in a tube, slow golden time, and next shot clips of the person practicing jumps on the slack line, three\"\n10006,anetv_SyOdA4ZKEtQ,738,Girls are doing gymnastics tumbles on a blue mat. Blue flowers,Girls are doing gymnastics tumbles on a blue mat.,Blue flowers,gold,are in front of the game the hurt event.,are shown in front of them.,are shown at a sunny event.,are shown on the screen.\n10007,anetv_SyOdA4ZKEtQ,2654,Gymnasts are at a gym showing how to tumble and flip. A black screen,Gymnasts are at a gym showing how to tumble and flip.,A black screen,gold,appears in front of the screen.,shows them fighting with a man.,is shown in the screen.,appears with pink letters.\n10008,anetv_SyOdA4ZKEtQ,2655,A black screen appears with pink letters. The screen,A black screen appears with pink letters.,The screen,gold,plays very glues on the painted concrete as she starts to play a style accordion.,goes white and red surfing continues.,has a shaded lower area with pink letters.,\"is shown, then words begin to repair.\"\n10009,anetv_FSU0YVLCoSc,5261,A person's hands are seen close up on a tool and begins moving the handle around and taking the tool apart. The person,A person's hands are seen close up on a tool and begins moving the handle around and taking the tool apart.,The person,gold,takes sure a piece of paper and peels more paper off of the tire.,continues rubbing paper all over the machine while the camera watches from behind.,continuously rubs her fingers all over the tire while looking off into the distance while standing to the camera.,unscrews some items and tightens the inside and moves the screwdriver around while holding the tool.\n10010,anetv_hSlydQ9rJuk,19130,Three people play soccer in the yard. The woman,Three people play soccer in the yard.,The woman,gold,takes a candy off her head and puts the rag back.,arrange the ball onto a yellow ball.,\"throws a frisbee in the air and the dog catch it, then the woman and the dog run.\",cleans the cars with another cloth to return it to the side.\n10011,anetv_hSlydQ9rJuk,19547,A woman holds a frisbee in front of a dog's face in a park. the dog,A woman holds a frisbee in front of a dog's face in a park.,the dog,gold,grabs from a catch under the dog's fur.,jumps toward the frisbee.,is catching the frisbee to the dog.,looks around and throws frisbees for the dog.\n10012,anetv_hSlydQ9rJuk,19548,The dog jumps toward the frisbee. the two then,The dog jumps toward the frisbee.,the two then,gold,begin jumping in circles following the boy.,run around the park performing several tricks.,turn around performing large jumps and dog flips for them.,hold a corner in a dive case.\n10013,anetv_hSlydQ9rJuk,19131,\"The woman throws a frisbee in the air and the dog catch it, then the woman and the dog run. After, the woman\",\"The woman throws a frisbee in the air and the dog catch it, then the woman and the dog run.\",\"After, the woman\",gold,chases after one calf.,\"continue trying and begin to run after them, the dogs run and fall and cheer on the side.\",runs and throws her hair away.,makes a circle with her arms for the dog to jump.\n10014,anetv_hSlydQ9rJuk,19129,A woman throws a frisbee in the yard and the dog runs to get it. Three people,A woman throws a frisbee in the yard and the dog runs to get it.,Three people,gold,play a utensil in the yard using the blower after the baby put him in and the dog catches it and leaves.,stand on the middle of the holding rake.,walk on the same path.,play soccer in the yard.\n10015,anetv_-C9mAKWi9Ho,17361,An intro leads into two men fencing in a field. Several shots,An intro leads into two men fencing in a field.,Several shots,gold,are shown of men playing paintball with people in a river.,are then shown of people playing exercise equipment with one another.,are shown of people skating and jumping up and down.,are shown of the men sticking swords to one another and the other blocking.\n10016,anetv_-C9mAKWi9Ho,17362,Several shots are shown of the men sticking swords to one another and the other blocking. In between clips,Several shots are shown of the men sticking swords to one another and the other blocking.,In between clips,gold,are shown of the men boxing.,clips the women ending up in an yard with a dog one wearing.,end shots then it moves off and ends with a girl getting closer.,is shown of boys riding beers in the background.\n10017,lsmdc3055_PROMETHEUS-27274,1846,\"Wincing painfully she gets to her feet and hauls the bag up. From the edge of the hull, she\",Wincing painfully she gets to her feet and hauls the bag up.,\"From the edge of the hull, she\",gold,uses a cushion and watches a grayish med tear.,lowers the dial of her lamp.,repels 20 feet to the ground.,hefts her surfboard through the water.\n10018,lsmdc3055_PROMETHEUS-27274,1845,Someone zips the bag closed over his earnest gaze. Wincing painfully she,Someone zips the bag closed over his earnest gaze.,Wincing painfully she,gold,stalks toward his truck t - van.,trots amongst the soccer players.,rubs her bruised eyes and screws her face between her lips.,gets to her feet and hauls the bag up.\n10019,lsmdc3055_PROMETHEUS-27274,1847,\"From the edge of the hull, she repels 20 feet to the ground. It\",\"From the edge of the hull, she repels 20 feet to the ground.\",It,gold,lifts someone off the stage.,approaches the next structure.,springs over and launches the creature over the rail of the meter.,floats out of the landing.\n10020,anetv_v8fS--GlXF4,13641,\"He knocks over the man and is dragged away, followed by his clip being shown again. Several more clips\",\"He knocks over the man and is dragged away, followed by his clip being shown again.\",Several more clips,gold,are shown of people chasing bulls and running away.,are shown of the dart being attacked at great results.,are shown of the advertising and shows various scores of athletes participating in interviewed.,are shown of various athletes performing different tricks as well as men.\n10021,anetv_USoYnMSrWv0,4996,The girl on the other side tries to stop her. A fifth person,The girl on the other side tries to stop her.,A fifth person,gold,helps the swing back to their feet.,appears and raises the fork to the air.,dives off to a third.,sits in a chair watching.\n10022,anetv_USoYnMSrWv0,4994,One of the girls playing pulls an arm out of place on the table. The same girl,One of the girls playing pulls an arm out of place on the table.,The same girl,gold,uses wrapping paper to pick them up to throw it down.,\"starts singing while playing the bagpipe, while the girl walks away.\",reaches across the table to control an arm on the other side.,flips to see the ladies.\n10023,anetv_USoYnMSrWv0,4995,The same girl reaches across the table to control an arm on the other side. The girl on the other side,The same girl reaches across the table to control an arm on the other side.,The girl on the other side,gold,\"leaps to the girl and continues shooting, looking like she is shooting hoops.\",wins her hand to other girls.,breaks the rope and falls to the ground.,tries to stop her.\n10024,anetv_USoYnMSrWv0,4993,Four people play Foosball at a Foosball table. One of the girls playing,Four people play Foosball at a Foosball table.,One of the girls playing,gold,foosball with one man while the other is watching them.,pulls an arm out of place on the table.,stick on the keys in front of him.,instruments and hit a player back and forth.\n10025,lsmdc1045_An_education-90318,2440,Someone hands someone a drink and flashes someone a re - assuring smile. Someone,Someone hands someone a drink and flashes someone a re - assuring smile.,Someone,gold,\"brings with food, then holds it together in a toast.\",tosses a pebble on the top of the room.,drives the cadillac powers down a lush sodden street.,crosses a street and approaches a house.\n10026,lsmdc1045_An_education-90318,2441,Someone crosses a street and approaches a house. She,Someone crosses a street and approaches a house.,She,gold,\"turns from the door to the dad, where someone waits, a big young boy in his late twenties.\",\"enters his loft building, sets his cell phone on the peg and beats his eyes on his work.\",walks in front of someone's door and hurries out after the atv.,pauses at the end of the garden path.\n10027,anetv_vr7iD3pjmSU,5867,\"An archery competition montage video shows pitched battles taking place in fields, convention halls of hotels, indoor arenas, and warehouses. A logo for Archery Tag appears and an ad\",\"An archery competition montage video shows pitched battles taking place in fields, convention halls of hotels, indoor arenas, and warehouses.\",A logo for Archery Tag appears and an ad,gold,appears with the many.,shows multiple matadors use the selfie stick to sprinkle on what they need to do.,plays for another video and subscription.,appears with the marine's name designs on the wears as as demonstrating of the heft expert.\n10028,anetv_zlXvqnBqVvI,12868,A player walks down the board to retrieve the pucks. Two people,A player walks down the board to retrieve the pucks.,Two people,gold,try to congratulate each other across different areas.,play a leisurely game of shuffle board on an outdoor court.,are preparing a game of volleyball in a gym.,begin skating on the hillside as they take their positions.\n10029,anetv_zlXvqnBqVvI,12866,The two people take shots with their pucks down the board. The person,The two people take shots with their pucks down the board.,The person,gold,continues taking the balls and raking them up.,runs kicks bottom of a device.,continues to play a game of billiards.,changes the score on the board posted on a pole.\n10030,anetv_zlXvqnBqVvI,12867,The person changes the score on the board posted on a pole. A player,The person changes the score on the board posted on a pole.,A player,gold,blows a ball inside a blue target.,extends a blue pole to the field and then switches to a game of badminton layup.,walks down the board to retrieve the pucks.,wipes a face and wipes it.\n10031,anetv_Db6sq4DjW7E,17006,The credits of the clip are shown. A coach,The credits of the clip are shown.,A coach,gold,instructs players in a basketball court.,is shown are posing on a black screen.,is interviewed and is interviewed about introduction for a paintball match.,is getting ready to skate over the field.\n10032,lsmdc1024_Identity_Thief-82200,14602,\"The detective leaves, while the boss lingers with his arms folded. Someone\",\"The detective leaves, while the boss lingers with his arms folded.\",Someone,gold,comes up the line in front of someone.,jerks his head away.,\"gazes at the floor, then rises and watches the men leave.\",watches the steward leave the strangers and to give the guy food.\n10033,lsmdc1024_Identity_Thief-82200,14601,\"Someone faces his boss, who turns to the detective. The detective\",\"Someone faces his boss, who turns to the detective.\",The detective,gold,\"turns back to his chair, raising his hands above the patient's head.\",\"leaves, while the boss lingers with his arms folded.\",leans down in his chair and looks down at the screw man's clock.,\"looks up to someone, who's sitting at the paperwork beneath him.\"\n10034,lsmdc1024_Identity_Thief-82200,14603,\"Someone gazes at the floor, then rises and watches the men leave. Holding his cell phone, he\",\"Someone gazes at the floor, then rises and watches the men leave.\",\"Holding his cell phone, he\",gold,makes hold of someone's finger.,looks around as she listens.,waits by some attendants in the air.,looks at the salon number displayed in red.\n10035,anetv_PJdE8Ui2eno,15510,He holds up his belt while speaking to the camera and begins climbing up the wall. The man,He holds up his belt while speaking to the camera and begins climbing up the wall.,The man,gold,continues laying down it with the machine doing tricks off the floor.,is now standing on the roof then unscrews the camera frame and switches off the ceiling.,climbs all the way up the wall and ends by looking off from the camera.,continues to move more around while the camera pans around and several people practice curling and speaking to the camera.\n10036,anetv_PJdE8Ui2eno,15509,A man is seen holding onto a rope and speaking to the camera. He,A man is seen holding onto a rope and speaking to the camera.,He,gold,starts running around the bike while many watch on the sides.,takes to the man looking at the man and giving him a text.,takes several flips in the air and spins while riding on the board.,holds up his belt while speaking to the camera and begins climbing up the wall.\n10037,anetv_QNKjKB4k4D0,5921,A man on a horse goes through a rodeo fence. He,A man on a horse goes through a rodeo fence.,He,gold,catches a calf and throws it over the water.,runs down a long path and starts into the woods.,throws a javelin off into the distance.,\"dismounts, roping and tying a calf.\"\n10038,anetv_QNKjKB4k4D0,5922,\"He dismounts, roping and tying a calf. When he is done, he\",\"He dismounts, roping and tying a calf.\",\"When he is done, he\",gold,backs off as the boys stop and jump off.,does a very large flip into the field as far as he recovers.,climbs back to the ground.,walks back to his horse and gets back on.\n10039,lsmdc3068_THE_BIG_YEAR-3819,1885,Someone comes out through the automatically opening gates and collects the bundled delivery. He,Someone comes out through the automatically opening gates and collects the bundled delivery.,He,gold,opens the front door for someone.,walks along the street adjacent to the cafe.,pulls off a rubber band and sorts through it on his way back to the house.,zips it up and over the top.\n10040,lsmdc3068_THE_BIG_YEAR-3819,1871,They proceed over a high ridge. They,They proceed over a high ridge.,They,gold,dirt heads are gathered in their compound.,stop at the crest of a snowy hill and use their binoculars.,\"pass each other, watching two women in snorkeling gear.\",go back to the brown dirt and then they point to the right.\n10041,lsmdc3068_THE_BIG_YEAR-3819,1875,\"At someone's house, snow frosts the branches of the surrounding trees. Inside, the retired businessman\",\"At someone's house, snow frosts the branches of the surrounding trees.\",\"Inside, the retired businessman\",gold,leads the procession into the garden.,digs out his short pen and sees a message in it.,enters his records office.,\"clinks glasses with his son, his arm around his wife.\"\n10042,lsmdc3068_THE_BIG_YEAR-3819,1876,\"Inside, the retired businessman clinks glasses with his son, his arm around his wife. Now, a tv\",\"Inside, the retired businessman clinks glasses with his son, his arm around his wife.\",\"Now, a tv\",gold,shows someone reading his sub.,shows the time square celebration.,shows a sunset meeting room.,shows the new development.\n10043,lsmdc3068_THE_BIG_YEAR-3819,1879,The older couple dozes on the couch while someone sits in a chair next to them. He,The older couple dozes on the couch while someone sits in a chair next to them.,He,gold,gets up and steps away from his sleeping parents as he answers his cell phone.,picks up the bags and hustles off.,turns over to a laptop on the bed.,wears flotation vest and rubs olive broth into his right leg.\n10044,lsmdc3068_THE_BIG_YEAR-3819,1882,He allows a joyful grin. Our view,He allows a joyful grin.,Our view,gold,drifts up to the sky and finds two large birds flying in silhouette against the full moon.,steps up to the hyena on the television.,travels across his sweaty face and which is tinted red.,follows his head across the room at capoeria lamps and the wheel of his hands.\n10045,lsmdc3068_THE_BIG_YEAR-3819,1874,\"As he scribbles in a notebook, words write out below. At someone's house, snow\",\"As he scribbles in a notebook, words write out below.\",\"At someone's house, snow\",gold,rushes past a man leading past him.,is lying in bed.,frosts the branches of the surrounding trees.,floods a staircase to a roof's compass apartment.\n10046,lsmdc3068_THE_BIG_YEAR-3819,1878,\"Our view sweeps around, revealing someone's parents' living room. The older couple\",\"Our view sweeps around, revealing someone's parents' living room.\",The older couple,gold,wait before the bedroom door.,lies on his back.,dozes on the couch while someone sits in a chair next to them.,seems to be seeing the boy holding his coffee.\n10047,lsmdc3068_THE_BIG_YEAR-3819,1884,A mail truck pulls away from someone's house. Someone,A mail truck pulls away from someone's house.,Someone,gold,gets in the pile of seats.,comes out through the automatically opening gates and collects the bundled delivery.,hugs the aliens shield as someone strolls through the jaguar palace gates.,\"drives up to the bedroom, knocking tree trunk out over the ground.\"\n10048,lsmdc3068_THE_BIG_YEAR-3819,1870,Someone leads his friend up a snowy path. They,Someone leads his friend up a snowy path.,They,gold,proceed over a high ridge.,make their way past the bar.,escape into the seat of someone's house.,scuttle into the shadows past a doorway.\n10049,lsmdc3068_THE_BIG_YEAR-3819,1881,\"Lowering the phone, someone dances victoriously on his parents' back porch. He\",\"Lowering the phone, someone dances victoriously on his parents' back porch.\",He,gold,allows a joyful grin.,bounces a framed medal on them.,\"stare at them steadily, then edges back.\",gazes toward the grand staircase.\n10050,lsmdc3068_THE_BIG_YEAR-3819,1877,\"Now, a tv shows the Time Square celebration. Our view\",\"Now, a tv shows the Time Square celebration.\",Our view,gold,\"sweeps around, revealing someone's parents' living room.\",turns to shots of america on the top of the bottle.,slides up to the wall on it.,sweeps from the square old building church.\n10051,lsmdc3068_THE_BIG_YEAR-3819,1873,Someone lowers his binoculars and faces him. Someone,Someone lowers his binoculars and faces him.,Someone,gold,\"reverses his car to reveal a uninterested, half - black armored box.\",\"ventures forward, making lathers - up on scalp sideburns.\",\"gazes at their boy, then stares at someone.\",grins and lifts his arms triumphantly.\n10052,lsmdc3068_THE_BIG_YEAR-3819,1880,\"He gets up and steps away from his sleeping parents as he answers his cell phone. Lowering the phone, someone\",He gets up and steps away from his sleeping parents as he answers his cell phone.,\"Lowering the phone, someone\",gold,hops out of his work and glares at the sketch of a young man.,dances victoriously on his parents' back porch.,picks up his cell phone from his pocket and pulls out a newspaper.,lets her hand go.\n10053,lsmdc3068_THE_BIG_YEAR-3819,1872,They stop at the crest of a snowy hill and use their binoculars. Someone,They stop at the crest of a snowy hill and use their binoculars.,Someone,gold,flashes a small smile and they laugh.,lowers his binoculars and faces him.,stops and recalls a low low voice.,walks down the tunnel and walks up a hill.\n10054,anetv_dSsMVoPLQOk,11861,A woman is seen shaving down the fur of a dog while the camera shows many dogs sitting in crates. A woman,A woman is seen shaving down the fur of a dog while the camera shows many dogs sitting in crates.,A woman,gold,kneels down on a different camel still moving along the floor as the camera pans around her movements.,is seen speaking to the camera and showing off several dogs with long hair and afterwards.,is then seen speaking to the camera while still speaking to the camera and then cleaning her face.,is seen holding a bottle of shampoo as the woman still talks in the end.\n10055,anetv_dSsMVoPLQOk,11862,A woman is seen speaking to the camera and showing off several dogs with long hair and afterwards. The woman,A woman is seen speaking to the camera and showing off several dogs with long hair and afterwards.,The woman,gold,continues shaving down the sides of the dog while stopping to speak to the camera and showing off the shaved dog.,continues to use her belongings while still speaking to the camera and ends by stopping to talk to the woman.,continues moving all around the dog while still looking back and fourth with the dog pointing out in the distance.,continues moving around the horse on a rope and speaks to the camera while the woman trims the door frame.\n10056,anetv_r_jey4tT7zo,10804,He holds onto a bunk bed as her performs ballet techniques. He,He holds onto a bunk bed as her performs ballet techniques.,He,gold,grimaces as he shows his teeth.,wears a wedding robe.,switches on the lamp.,\"warms up, lifting his legs into the air gracefully.\"\n10057,anetv_r_jey4tT7zo,1797,First the shirtless man dances slow to the soft music. Then he speeds up a little and he,First the shirtless man dances slow to the soft music.,Then he speeds up a little and he,gold,goes angrily down the jump lane loud.,stands with his toes down at the bars.,bends while moving his legs and flexing his stomach.,know of a hammer kick.\n10058,lsmdc3052_NO_STRINGS_ATTACHED-25327,10443,Someone walks up to her. Someone,Someone walks up to her.,Someone,gold,\"looks around toward someone, who slowly turns away, her head tilted back.\",pulls the knife away.,wraps her arms around someone and kisses him on the mouth.,stares down the cards at someone as she returns to the pool table.\n10059,lsmdc3052_NO_STRINGS_ATTACHED-25327,10444,Someone wraps her arms around someone and kisses him on the mouth. He,Someone wraps her arms around someone and kisses him on the mouth.,He,gold,hands her back to someone.,\"looks around, grasping her ankles.\",twirls her under his arm.,\"glances at him quickly, then walks off.\"\n10060,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1848,711,\"In a boat, someone hides underneath the dock. Someone\",\"In a boat, someone hides underneath the dock.\",Someone,gold,sits on a dock protected by a zebra.,gazes at the yellow guys as he pulls someone away.,spies on the couple as they head off.,stares after the bus with a smile.\n10061,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1848,709,A pistol falls out of someone's jacket and onto the floor. He,A pistol falls out of someone's jacket and onto the floor.,He,gold,glances at the stranger then picks up his weapon and stumbles off.,picks up the cigarette and hurls it at the wall.,slings a bag over the back of a chair and someone uses his shoes.,\"looks up at someone, whose nose is turned badly.\"\n10062,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1848,708,Someone slaps the drunk someone's back. A pistol,Someone slaps the drunk someone's back.,A pistol,gold,falls out of someone's jacket and onto the floor.,shoots from the floor and passes over him.,leaps from the soldier's head.,shoots out from under a cupboard and dashes through the kitchen door.\n10063,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1848,710,\"Gazing thoughtfully, someone sips his drink. In a boat, someone\",\"Gazing thoughtfully, someone sips his drink.\",\"In a boat, someone\",gold,hides underneath the dock.,arrives at the dining room.,faces a student in a small swimming room.,demonstrates paintball with the captain's leisurely pace.\n10064,lsmdc0001_American_Beauty-45806,5987,Someone crosses to a bureau and opens a drawer. He,Someone crosses to a bureau and opens a drawer.,He,gold,enters a room and finds an envelope on the worktop.,takes clothing out and piles it on his bed.,places one in a plaid t - shirt.,opens them and pulls out more tape.\n10065,lsmdc0001_American_Beauty-45806,5986,Someone picks up a cd case from a shelf and examines it. Someone,Someone picks up a cd case from a shelf and examines it.,Someone,gold,slips out the window.,turns the diary to the scrolls.,crosses to a bureau and opens a drawer.,heads for the house.\n10066,lsmdc1020_Crazy_Stupid_Love-81585,5387,Someone is standing in the front garden. Her brow,Someone is standing in the front garden.,Her brow,gold,furrowed someone stares at him.,\"furrowed, someone nods, concerned.\",knits with anticipation and it looks like seeing one of the people.,furrows as she looks at the phone nervously.\n10067,lsmdc1020_Crazy_Stupid_Love-81585,5386,\"Someone drives her suv along her leafy, suburban street and turns into her driveway. Someone\",\"Someone drives her suv along her leafy, suburban street and turns into her driveway.\",Someone,gold,holds her hat as she walks around the neighborhood road.,is standing in the front garden.,hits the guard's trunk.,drop back into the car.\n10068,lsmdc1020_Crazy_Stupid_Love-81585,5398,\"Someone runs a red light. Going into the back garden, someone\",Someone runs a red light.,\"Going into the back garden, someone\",gold,hands her a glass of champagne.,sits up someone with a letter.,pulls off his back and pants.,slices through the ceiling as he steps into the elevator.\n10069,lsmdc1020_Crazy_Stupid_Love-81585,5388,\"Her brow furrowed, someone stares at him. Someone\",\"Her brow furrowed, someone stares at him.\",Someone,gold,comes down the stairs in a state of shock.,\"takes the cell from the pocket, shakes his jacket and sighs.\",shifts her moist eyes and frowns.,faces his father who turns to look at the priest.\n10070,lsmdc1020_Crazy_Stupid_Love-81585,5390,\"Someone is sitting on the couch, watching tv. Someone\",\"Someone is sitting on the couch, watching tv.\",Someone,gold,turns back and smiles.,is in a promoter's.,takes a swig of coca - cola.,comes out of her living room and goes up to find the mic.\n10071,lsmdc1020_Crazy_Stupid_Love-81585,5392,Someone grabs someone's shoulder from behind the couch and hands him the envelope. Someone,Someone grabs someone's shoulder from behind the couch and hands him the envelope.,Someone,gold,gives someone a little frown and turns back to the tv.,stands back with someone in hogwarts uniform.,\"freezes, staring deeply into his eyes.\",finds someone in the passenger seat.\n10072,lsmdc1020_Crazy_Stupid_Love-81585,5397,Someone follows him honking on the horn desperately. Someone,Someone follows him honking on the horn desperately.,Someone,gold,\"stands, then swims inside the dimly lit chamber.\",runs a red light.,\"look at someone, then the twins glint off the sky.\",picks his hand out.\n10073,lsmdc1020_Crazy_Stupid_Love-81585,5384,She takes it out to see someone's name written on it in big letters. She,She takes it out to see someone's name written on it in big letters.,She,gold,is a man who tries to collect a letter by the dollar truck.,presents the star woven paperwork and lifts it to look out the way.,opens the envelope and partially pulls out the photo from inside.,\"spots someone's body, sitting beside her and pulls her.\"\n10074,lsmdc1020_Crazy_Stupid_Love-81585,5396,Someone backs out of the driveway. Someone,Someone backs out of the driveway.,Someone,gold,opens the door to find him on the scooter.,\"speeds along the road, gripping the steering wheel.\",kicks a sword from each agent's pockets.,steps near a bench leading up on him.\n10075,lsmdc1020_Crazy_Stupid_Love-81585,5393,\"Someone gives someone a little frown and turns back to the tv. Absentmindedly, he\",Someone gives someone a little frown and turns back to the tv.,\"Absentmindedly, he\",gold,opens the envelope and glances down at the photo.,turns back to someone.,uses a brush to brush his teeth.,crosses the street towards the black - haired woman.\n10076,lsmdc1020_Crazy_Stupid_Love-81585,5383,\"As she puts something in her drawer, she spots the envelope. She\",\"As she puts something in her drawer, she spots the envelope.\",She,gold,goes into the store.,takes it out to see someone's name written on it in big letters.,opens the glove box revealing a slip in little letters.,takes off her dress and flicks her magic letters.\n10077,lsmdc1020_Crazy_Stupid_Love-81585,5394,\"Someone, who is lying on the floor nearby, spots the envelope. Someone\",\"Someone, who is lying on the floor nearby, spots the envelope.\",Someone,gold,races her from the couch to the door.,\"awkwardly into the middle of the room, watching as a pair of doors steps down from the two.\",releases someone and distractedly soaks his face with his handkerchief.,\"raises the bow, revealing the creature's chest.\"\n10078,lsmdc1020_Crazy_Stupid_Love-81585,5389,Someone comes down the stairs in a state of shock. Someone,Someone comes down the stairs in a state of shock.,Someone,gold,\"leaps onto the flaming board, hiding inside.\",\"is sitting on the couch, watching tv.\",smiles delightedly and looks up at the sky.,\"stands, walks up the aisle, is spotted by someone.\"\n10079,lsmdc1020_Crazy_Stupid_Love-81585,5391,Someone takes a swig of Coca - Cola. Someone,Someone takes a swig of Coca - Cola.,Someone,gold,smiles at someone as a helicopter rises from the other vehicles.,turns and walks past the vacant secretary class students who lowers their conversation.,pours liquids in sauce and pours it into a glass.,grabs someone's shoulder from behind the couch and hands him the envelope.\n10080,lsmdc1020_Crazy_Stupid_Love-81585,5395,Someone races her from the couch to the door. Someone,Someone races her from the couch to the door.,Someone,gold,backs out of the driveway.,takes the phone to someone in store powder room.,turns back and heads to the door.,solemnly lifts her head with a grin.\n10081,anetv_qTAG23IVSeM,14361,Some of the individuals begin galloping around. The individuals,Some of the individuals begin galloping around.,The individuals,gold,take turns riding and walking away.,fly past at the end.,swim to the left side of the board.,engage in a game of polo with an audience watching.\n10082,anetv_qTAG23IVSeM,16678,A group of people play pole while riding horses in a fenced in dirt ring enclosure in front of an audience in surrounding bleachers. A group of people,A group of people play pole while riding horses in a fenced in dirt ring enclosure in front of an audience in surrounding bleachers.,A group of people,gold,walk on the field leading into a gym.,stands in the middle of the line playing lacrosse.,are rollerblading up the middle of a large track stadium.,mount the horses to ride them.\n10083,anetv_GvDu_0ktsJ0,15572,A cooker shows ingredients to make salad pasta while talking. The cooker,A cooker shows ingredients to make salad pasta while talking.,The cooker,gold,rubs salt into the pan.,eats part of the potato.,pulls a piece of fruit while talking.,puts pasta on a square container and adds vegetables.\n10084,anetv_GvDu_0ktsJ0,15573,\"The cooker puts pasta on a square container and adds vegetables. Then, the cooker\",The cooker puts pasta on a square container and adds vegetables.,\"Then, the cooker\",gold,melt the meat and puts oil on it and adds it to the ice.,\"adds cheese, broth, white cream, salt and then he mix it.\",adds garlic and stir the paste.,add the other egg.\n10085,anetv_e51ld7ANyQg,4979,Scenes of curling practice are shown. The man,Scenes of curling practice are shown.,The man,gold,talks to the camera once more.,talks to the camera.,jumps of the parallels.,uses paper and white mouthwash to clear out the skin.\n10086,anetv_e51ld7ANyQg,16042,Men are in a ice court playing curling. the man,Men are in a ice court playing curling.,the man,gold,dumps something in stripes and sanding it out near the holes.,is talking to the camera in front of the court.,is about to trap the court with the stick.,\"hit some paper, but you will also see the game.\"\n10087,anetv_e51ld7ANyQg,4978,Several regular speed curling scenes are shown. The man,Several regular speed curling scenes are shown.,The man,gold,\"talks to the camera again, with people in the background.\",is rafting into the water on the carving water shop.,is washing items in a car.,starts to go back and forth on the sand until he is ready.\n10088,anetv_VEzhpSPnBrY,3785,A man is kneeling down on the ground. He,A man is kneeling down on the ground.,He,gold,takes the beard off and applies a hedge to the hedge.,is pulling on a cord that is attached to the wall.,walks in a swing holding another person in front of him.,starts to play the drums with his hands.\n10089,anetv_VEzhpSPnBrY,3786,He is pulling on a cord that is attached to the wall. He,He is pulling on a cord that is attached to the wall.,He,gold,puts a nozzle to his face and holds a roller against the water.,kicks it back and forth in the air to get under measure.,continues pulling on the cord and working out.,is trapped on the carpet.\n10090,lsmdc3090_YOUNG_ADULT-43918,5939,Someone takes a swig of bottled cider. Someone,Someone takes a swig of bottled cider.,Someone,gold,\"walks out, standing beside him and wide - eyed as he watches them leave.\",addresses another group of policemen.,faces the firefighter's poseidon.,leans close to her.\n10091,anetv_T3ngvDyxYiE,1419,Two teams are on either side of a field. They,Two teams are on either side of a field.,They,gold,\"are holding a rope, getting ready to pull.\",are playing a game of cricket on a field.,are playing a game of lacrosse.,are playing playing voleyball.\n10092,anetv_T3ngvDyxYiE,1420,\"They are holding a rope, getting ready to pull. The two teams\",\"They are holding a rope, getting ready to pull.\",The two teams,gold,\"begin pulling, trying to win the competition as a crowd watches.\",sit on a bench and climb over some small inflatable tubes.,fight each other around the ring.,approach to the track and continue to push the puck forward and down the side of every other.\n10093,anetv_T3ngvDyxYiE,1421,\"The two teams begin pulling, trying to win the competition as a crowd watches. The yellow group\",\"The two teams begin pulling, trying to win the competition as a crowd watches.\",The yellow group,gold,\"gets ready to jump, then people run over a gym pole.\",shows their reactions fencing in the middle of the crowd.,continue to fight their opponent down but then a man in white jacket jab him to put his arm in the ground.,begin to be pulled forward against their will.\n10094,anetv_pQof_-tUNtY,5415,We see the person wrap to bottles in the fabric together. They then,We see the person wrap to bottles in the fabric together.,They then,gold,add tape to the bowl with both taped up.,put two bottles in a bag and tie it.,put the break into a bowl using a large cat to make them roll.,see shapes to the camera.\n10095,anetv_pQof_-tUNtY,5413,We see a box on fabric. A person,We see a box on fabric.,A person,gold,wraps the box in the fabric and ties it up.,wraps a box with paper.,presses a sheet of paper on a lady.,walks in and out of frame.\n10096,anetv_pQof_-tUNtY,5414,A person wraps the box in the fabric and ties it up. We,A person wraps the box in the fabric and ties it up.,We,gold,see the person wrap to bottles in the fabric together.,tips the plastic wrap in the middle of the forest area.,picks the iron up and uses it to brush it backwards.,man wraps the letter with a new tool.\n10097,anetv_pQof_-tUNtY,5416,They then put two bottles in a bag and tie it. We then,They then put two bottles in a bag and tie it.,We then,gold,see the men playing beer pong.,see the closing credits and credits.,see the ending credits.,see the finished product product.\n10098,anetv_nv22QK8brp4,406,\"On a river, people gather to watch people on donuts and boats kayaking rough waters. A couple of people on a kayak\",\"On a river, people gather to watch people on donuts and boats kayaking rough waters.\",A couple of people on a kayak,gold,are flipped over and fall into the river.,stand sail a canoe.,went by the water and begin skiing down boat.,skiers snowboard along a river.\n10099,lsmdc1029_Pride_And_Prejudice_Disk_One-83836,14105,\"Drying her hands, someone sits at the top of the four poster bed, someone's at the bottom. With a look of concern, someone\",\"Drying her hands, someone sits at the top of the four poster bed, someone's at the bottom.\",\"With a look of concern, someone\",gold,\"enters the main room, his wide eyes fixed on the dust, which's now by the counter.\",stares past a spread of bugs on their photograph.,moves and sits next to someone.,leaves the radio and jogs away.\n10100,lsmdc1029_Pride_And_Prejudice_Disk_One-83836,14104,\"Someone is washing her hands in a basin in her room. Drying her hands, someone sits at the top of the four poster bed, someone\",Someone is washing her hands in a basin in her room.,\"Drying her hands, someone sits at the top of the four poster bed, someone\",gold,slung across her legs and shouts at the door while someone continues to kiss his shoulder.,'s at the bottom.,staring up at her.,wrapped in her toast.\n10101,lsmdc3011_BLIND_DATING-828,12071,\"Later, they slow dance. Someone\",\"Later, they slow dance.\",Someone,gold,smiles mischievously as they continue to dance.,\"surfaces, freeing him o. drumsticks.\",sets down their pillows and hands on the plates.,holds up his jacket.\n10102,anetv_BYLxSOPFOuc,3357,Man is standing in front of a mirror holding a camera. woman enters in the bathroom carying a white cat and the man,Man is standing in front of a mirror holding a camera.,woman enters in the bathroom carying a white cat and the man,gold,in dark clothing appears out and cleans the soap with a talking sprayer.,is making trouble in the crying man's hand.,is talking in the kitchen black and red.,kneels so the cat can stands on his back.\n10103,anetv_BYLxSOPFOuc,3358,Woman enters in the bathroom carying a white cat and the man kneels so the cat can stands on his back. the woman leaves the bathroom and the man,Woman enters in the bathroom carying a white cat and the man kneels so the cat can stands on his back.,the woman leaves the bathroom and the man,gold,cleans the shoe.,keeps recording himself making poses in front of the camera and talking to himself in the mirror.,throws dried scores back in the chair.,takes out a cigarette and wipes it out with a tissue.\n10104,anetv_BYLxSOPFOuc,3359,The woman leaves the bathroom and the man keeps recording himself making poses in front of the camera and talking to himself in the mirror. the man enters in the bedroom and the woman,The woman leaves the bathroom and the man keeps recording himself making poses in front of the camera and talking to himself in the mirror.,the man enters in the bedroom and the woman,gold,lays down a bed next to him.,is sitting in the bed holding the cat.,starts to chew using the cup.,looks herself in the eye.\n10105,anetv_BYLxSOPFOuc,3360,The man enters in the bedroom and the woman is sitting in the bed holding the cat. man is in the bathroom again holding a knife and the woman,The man enters in the bedroom and the woman is sitting in the bed holding the cat.,man is in the bathroom again holding a knife and the woman,gold,grabs the handle with a hook near the stove.,enters in the room with a back scarf around her head.,is presenting the photo of the car.,sits behind the counter and tries to put it on his eye and is talking.\n10106,anetv_BYLxSOPFOuc,3362,They eners in a restaurant and leaves and walks to the car again. the woman gets into the car and the man,They eners in a restaurant and leaves and walks to the car again.,the woman gets into the car and the man,gold,opens the door and grabs a little brush and cleans the windshield and the woman do the same and plays with the man.,looks down a hallway at the black and red opening for the epees finish.,moves to adjust their glasses.,\"walks to the border of the motorcycle and drives down the street, where the man is talking to people.\"\n10107,anetv_E29kZvEtOUA,16915,The man empties out the collection hopper bag on the lawn mower and empties it into a trash bin and wheels it away. The child,The man empties out the collection hopper bag on the lawn mower and empties it into a trash bin and wheels it away.,The child,gold,bends forward and picks up the trash and a blanket of hot cleaner.,is crossing tires on the ground.,mops the floor with a shovel and walks back to a rack.,plays with the lawn mower while turned off.\n10108,anetv_E29kZvEtOUA,16914,A child helps push a lawn mower with an adult to cut the grass. A man,A child helps push a lawn mower with an adult to cut the grass.,A man,gold,in pink pushes the mower and goes and watches the man.,moves the mower on a section of the platform.,mows the lawn of a large yard along with a child watching nearby.,puts green leaves and leaves in front of them and tries to sit.\n10109,anetv_X0IXZMr95TM,10765,The bartender pours liquors into a shot glass and dumps them into a cup. The bartender,The bartender pours liquors into a shot glass and dumps them into a cup.,The bartender,gold,caps the cup and shakes vigorously.,pours the shot of lettuce into a glass.,throws him a drink.,pours drinks from the glass and uses them to play scotch.\n10110,anetv_X0IXZMr95TM,10766,The bartender caps the cup and shakes vigorously. The contents of the mixing cup,The bartender caps the cup and shakes vigorously.,The contents of the mixing cup,gold,are poured into a martini glass.,are poured from a red tumbler.,are poured and poured into white hands.,are displayed and placed on individuals off.\n10111,anetv_X0IXZMr95TM,10763,A clear bottle pours a drink into a cocktail glass. A bartender,A clear bottle pours a drink into a cocktail glass.,A bartender,gold,pretends to serve up the bottles of juice and empty glasses and clink them fiercely.,picks up a stainless steel cup and scoops ice into it.,\"walks through the paned glass room, and different alcoholic drinks.\",relax and points smoke at the men all together.\n10112,anetv_X0IXZMr95TM,10764,A bartender picks up a stainless steel cup and scoops ice into it. The bartender,A bartender picks up a stainless steel cup and scoops ice into it.,The bartender,gold,pours liquors into a shot glass and dumps them into a cup.,pours them into candies on a glass.,joins an older woman on how to pour milk and pool to a tell order.,pours the log that is squeezed out of the glass.\n10113,anetv_W_iKlOPSDos,13108,We see a series of title screens. We,We see a series of title screens.,We,gold,see the boy make a banana on drum gestures.,see a speedboat speeding through a lake and a man jet skiing behind it.,see the ending title screen.,see a man talking outside in an upper corner of a festival pipe.\n10114,anetv_W_iKlOPSDos,13110,The screen flashes black and we see more jet skiing. We,The screen flashes black and we see more jet skiing.,We,gold,switch and talks off people of a group who walks outside of a school.,see the ending title screen.,see a fat man in a suit overlaid on an award.,see footage of a boy getting into the car.\n10115,anetv_W_iKlOPSDos,13109,We see a speedboat speeding through a lake and a man jet skiing behind it. The screen flashes black and we,We see a speedboat speeding through a lake and a man jet skiing behind it.,The screen flashes black and we,gold,see more jet skiing.,see shots of buildings riding rafts.,see a large lake below.,see a man shoot his car.\n10116,anetv_t1U8fJVEztQ,9587,People are running down a street. Cars,People are running down a street.,Cars,gold,are driving on the street behind them.,get outside as they go back down the street.,are walking in the middle of a dark street of bumper cars.,go by obstacles at the end then run down the stairs.\n10117,anetv_t1U8fJVEztQ,10120,We see people running down the street in a marathon. A motorcycle,We see people running down the street in a marathon.,A motorcycle,gold,rolls up against a pole.,stands outside the scene.,\"rolls over the sidewalk, jumping right and over side to side.\",rides past going left.\n10118,anetv_t1U8fJVEztQ,10121,A lady in a bikini is followed. The camera,A lady in a bikini is followed.,The camera,gold,pans to the left.,tucks in a helped curl.,is spun around the room on large pictures with batons.,focuses on two ladies arm wrestling.\n10119,anetv_t1U8fJVEztQ,9588,Cars are driving on the street behind them. A woman in shorts,Cars are driving on the street behind them.,A woman in shorts,gold,goes down and follows her.,is running down the street.,gets on the bumper cars.,takes a bicycle down.\n10120,lsmdc3004_500_DAYS_OF_SUMMER-1787,11139,She places her hand on his. He,She places her hand on his.,He,gold,looks down at her diamond ring.,rises and pulls her gaze up afterwards.,sets someone's tray down on the desk and reads.,takes this and gently tenderly gently places it in his glove palm.\n10121,lsmdc3004_500_DAYS_OF_SUMMER-1787,11138,They sit together looking out at the city. She,They sit together looking out at the city.,She,gold,\"clutch the books she is wearing, and someone regards them with a curious smile.\",places her hand on his.,\"turns to someone, who stands softly.\",\"approaches someone, who stares at him then turns and marches on.\"\n10122,lsmdc3004_500_DAYS_OF_SUMMER-1787,11140,She gives his hand a squeeze. She,She gives his hand a squeeze.,She,gold,throws the hand up beside someone's back.,takes it off but looks away.,gives him a pat on the back.,hands down the reeds.\n10123,anetv_D74hnUdBs04,6780,A large group of people are seen standing on a field playing a volleyball game with one another. The camera,A large group of people are seen standing on a field playing a volleyball game with one another.,The camera,gold,pans around various people playing with one another and lead into people chasing a ball around.,pans around the beach and back to the people playing with one another passing the ball around.,pans around in the end and leads to one another to jump into the sand.,pans to the playground and begins kids playing with one another and ending by turning on a ball.\n10124,anetv_DJ5tenTs0A0,5165,A child ski on the snow holding two poles and wearing skies. Adults,A child ski on the snow holding two poles and wearing skies.,Adults,gold,is guiding a rope and harness.,are pulling the snow of a boat.,stands in a calm room holding a camera.,ski behind the child.\n10125,anetv_DJ5tenTs0A0,5166,Adults ski behind the child. Then the child,Adults ski behind the child.,Then the child,gold,\"stops, then start to walk until start sliding on the hill.\",falls still for him to finish and are separated by a child.,rides off the back.,continues climbing in the river.\n10126,lsmdc3053_PARENTAL_GUIDANCE-25598,10659,\"Getting a snack, someone freezes. Someone\",\"Getting a snack, someone freezes.\",Someone,gold,pulls up and faces her through the window.,takes off his glasses and someone disappears out a tall cab.,hears her car speeding toward the honda.,stands alone on the floor with someone next to him.\n10127,anetv_047dUA_39x8,18372,A cowboy rides a horse out of a corral and enters into a fenced off area. The man,A cowboy rides a horse out of a corral and enters into a fenced off area.,The man,gold,gets tied up the horse and starts walking off of the horse pulling the calf.,rides his horse out of the fenced are and throws a rope around a cattle.,rides a high horse up outside.,takes out the frisbees.\n10128,anetv_047dUA_39x8,18373,The man rides his horse out of the fenced are and throws a rope around a cattle. The man,The man rides his horse out of the fenced are and throws a rope around a cattle.,The man,gold,lays down and begins jump rope.,is helped by other cowboys while tying up the cattle.,continue pulling the camel and the man stands and talks to the camera behind the men riding around the front.,cuts the calf and ties it the calf.\n10129,lsmdc3020_DEAR_JOHN-10016,2438,\"And the coin collector cradles him as best he can. Now, as misty rain\",And the coin collector cradles him as best he can.,\"Now, as misty rain\",gold,pours down on an otherwise empty beach.,trails the colored ink down on him near the door.,watch through the night sky and loose sheets.,\"descends through trims lined with concrete walls, featuring an ancient black statue with an artificial blue white rose balloon.\"\n10130,lsmdc3020_DEAR_JOHN-10016,2456,Someone quickly locks the horse into its stall. Her form still,Someone quickly locks the horse into its stall.,Her form still,gold,wrapped around the back of the corset.,\"muffled near the door, someone enters his apartment.\",silhouetted against the stables rear open doorway.,\"sprouting, someone climbs a lower deck through a tiled chamber.\"\n10131,lsmdc3020_DEAR_JOHN-10016,2465,\"Someone nods, then sorrowfully shakes her head. Someone\",\"Someone nods, then sorrowfully shakes her head.\",Someone,gold,\"walks to the elevator, finds his salon, and steps uncomfortably under the desk.\",cuts someone up then turns to someone who smiles down after him.,stares down at the table.,looks down the bar to see where he moves his arms.\n10132,lsmdc3020_DEAR_JOHN-10016,2449,\"The pastor disappears through a doorway, leaving someone alone once again. Now, the soldier\",\"The pastor disappears through a doorway, leaving someone alone once again.\",\"Now, the soldier\",gold,runs a fast track past his wetsuit.,drives his car with a stoic frown.,\"board a corridor, then navigates a bend.\",hurries to a raft containing twin disguised workers.\n10133,lsmdc3020_DEAR_JOHN-10016,2459,He bows his head and shifts awkwardly from foot to foot. He,He bows his head and shifts awkwardly from foot to foot.,He,gold,glances at the ceiling as someone sleeps in an adjoining arena on the marble floor.,looks up at them and leans her head against the door.,reads a sign above the barn door.,\"tentatively lays his hand on someone's stomach, then moves up behind the horse.\"\n10134,lsmdc3020_DEAR_JOHN-10016,2461,She forces a smile and gives a high shrug. Someone,She forces a smile and gives a high shrug.,Someone,gold,lowers his stare and swallows.,sets down the phone and empties the passenger potion.,shows a stiff tie and extension.,stands by the window and gestures her the blonde.\n10135,lsmdc3020_DEAR_JOHN-10016,2431,\"As it slides off, someone catches it, and lovingly touches his chin to his father's frail fingers. Someone\",\"As it slides off, someone catches it, and lovingly touches his chin to his father's frail fingers.\",Someone,gold,\", his mother looks up.\",\"smiles and strokes someone's forehead, well as her childhood and pained features.\",arrives out to someone.,pulls his hand away and places his palm against someone cheek.\n10136,lsmdc3020_DEAR_JOHN-10016,2444,\"Bubbles stream out of his mouth, as he tips his head back. Later, still submerged, the grieving son\",\"Bubbles stream out of his mouth, as he tips his head back.\",\"Later, still submerged, the grieving son\",gold,watches a pickup twitch out of pass.,lies in bed with his mouth open.,buries his face in his hands.,reaches a curtain around the ceiling.\n10137,lsmdc3020_DEAR_JOHN-10016,2443,His arms raised limply over his head. Bubbles,His arms raised limply over his head.,Bubbles,gold,pierce his right ear.,\"stream out of his mouth, as he tips his head back.\",leaps onto a control platform and takes over.,raises the piece and someone speeds through the darkness before defending the mercenaries.\n10138,lsmdc3020_DEAR_JOHN-10016,2468,Where several framed photographs stand. She,Where several framed photographs stand.,She,gold,holds a cellphone to his mouth.,presses her lips together.,holds a red cross in his hand.,frowns as someone crawls in nearby net.\n10139,lsmdc3020_DEAR_JOHN-10016,2464,Someone offers a faint nod. Someone,Someone offers a faint nod.,Someone,gold,looks up to someone and keeps looking at her.,smiles meekly his friend gaze away.,\"nods, then sorrowfully shakes her head.\",hurls him out the door.\n10140,lsmdc3020_DEAR_JOHN-10016,2453,\"Slowing, the car pulls up alongside the corral beside the modest stables. Someone\",\"Slowing, the car pulls up alongside the corral beside the modest stables.\",Someone,gold,glances off his shoulder and points ahead.,stops the car and takes out his keys.,opens an easy seat and smiles.,stands up in the center of the house.\n10141,lsmdc3020_DEAR_JOHN-10016,2435,The soldier lifts his head. And his father,The soldier lifts his head.,And his father,gold,strokes his short hair.,ducks drills with pain.,lifts it above his head.,sleeps under a red slab of condensation.\n10142,lsmdc3020_DEAR_JOHN-10016,2441,He lets himself drift away from it. As he,He lets himself drift away from it.,As he,gold,\"falls underneath, the arc soars above the city.\",closes his steering clock.,floats on his back.,\"swings the dagger toward someone, someone's feet disappears.\"\n10143,lsmdc3020_DEAR_JOHN-10016,2469,She presses her lips together. One photograph,She presses her lips together.,One photograph,gold,comes out with thick ribbon.,shows someone in a wedding dress.,\"draws back, depositing gold.\",shows a ominous signature of chinese child toys.\n10144,lsmdc3020_DEAR_JOHN-10016,2452,\"The car pulls through the gate of someone's family home. Slowing, the car\",The car pulls through the gate of someone's family home.,\"Slowing, the car\",gold,pulls itself on all fours.,passes overhead as someone draws a lever.,pulls up alongside the corral beside the modest stables.,glides up the grating.\n10145,lsmdc3020_DEAR_JOHN-10016,2440,\"He swings his legs into the water, and drops his unhooked ankle leash onto his board. He\",\"He swings his legs into the water, and drops his unhooked ankle leash onto his board.\",He,gold,lets himself drift away from it.,finds richard parker springing forward.,stands and jerks his head down as he leaps over the railing.,\"bounces, then misses and turns the soaring slides.\"\n10146,lsmdc3020_DEAR_JOHN-10016,2432,Someone pulls his hand away and places his palm against someone cheek. Someone,Someone pulls his hand away and places his palm against someone cheek.,Someone,gold,holds it in place with his own hand.,leans his head against the edge of the rope as sunlight shines on the bathroom windows shut.,licks her fingertip then presses some of his fingers to his lips.,kisses him on the cheek.\n10147,lsmdc3020_DEAR_JOHN-10016,2471,\"Later, someone and someone stroll through a sunny park. Later in a hospital, they\",\"Later, someone and someone stroll through a sunny park.\",\"Later in a hospital, they\",gold,head into an atrium.,enter a darkened restaurant.,are in the foyer.,gather in a classroom.\n10148,lsmdc3020_DEAR_JOHN-10016,2439,\"Someone sits beside his surfboard with his knees pulled up, and his head bowed. Later, lying belly down on his surfboard, he\",\"Someone sits beside his surfboard with his knees pulled up, and his head bowed.\",\"Later, lying belly down on his surfboard, he\",gold,paddles out in the steel gray sea.,lies back down in his raft.,drinks the water on the gliding boat.,stands on the dock and swabs at the cross.\n10149,lsmdc3020_DEAR_JOHN-10016,2466,\"Smiling, someone drops his gaze. Someone\",\"Smiling, someone drops his gaze.\",Someone,gold,\"rolls his eyes, presses his lips.\",lies under a bubbles bed lamp and weeps.,offers a candid grin.,crouches beside someone and kneels in front of him.\n10150,lsmdc3020_DEAR_JOHN-10016,2458,\"Gazing back at him, she summons a deep breath. Someone\",\"Gazing back at him, she summons a deep breath.\",Someone,gold,presses the leather shoe to the guy's wives glasses.,gently wipes tears from her eyes.,\"bites her lower lip, then straightens his tie and nods.\",uncomfortably shoves a hand into his pocket.\n10151,lsmdc3020_DEAR_JOHN-10016,2455,Someone gets out and faces the stables. Someone,Someone gets out and faces the stables.,Someone,gold,sees people sitting in pickup truck.,turns back to someone.,rolls aside and smiles behind her.,quickly locks the horse into its stall.\n10152,lsmdc3020_DEAR_JOHN-10016,2450,\"Now, the soldier drives his car with a stoic frown. The images of passing trees\",\"Now, the soldier drives his car with a stoic frown.\",The images of passing trees,gold,are a colorful ministry of danger.,cut to a dead dirt street.,reflect faintly on his windshield.,cut above his medium size house.\n10153,lsmdc3020_DEAR_JOHN-10016,2470,\"In the photo, someone beams beside her bearded groom. Later, someone and someone\",\"In the photo, someone beams beside her bearded groom.\",\"Later, someone and someone\",gold,walk down a sunlit street.,bursting into a saddle with several others.,ride bikes down a main street.,stroll through a sunny park.\n10154,lsmdc3020_DEAR_JOHN-10016,2447,\"A coffin stands in front of the alter. Wearing his dress uniform, someone\",A coffin stands in front of the alter.,\"Wearing his dress uniform, someone\",gold,strides up to himself and pats him on the shoulder.,joins his mother at the dinner table.,stares off beneath his knitted brow.,gets over a scooter and climbs onto his motorcycle gang.\n10155,lsmdc3020_DEAR_JOHN-10016,2463,She tearfully meets his gaze before glancing away. Someone,She tearfully meets his gaze before glancing away.,Someone,gold,blocks him with a tender kiss.,walks past the gryffindor's office and parks.,offers a faint nod.,counts the last detail in his mind.\n10156,lsmdc3020_DEAR_JOHN-10016,2451,The images of passing trees reflect faintly on his windshield. The car,The images of passing trees reflect faintly on his windshield.,The car,gold,pulls through the gate of someone's family home.,resembles a tiny hummer of glowing corner - grains of dirt.,records more men.,\"lies back in his car, replaces only adds headlights in the suspiciously street corner.\"\n10157,lsmdc3020_DEAR_JOHN-10016,2437,Someone gently collapses unto the man's chest. And the coin collector,Someone gently collapses unto the man's chest.,And the coin collector,gold,returns with his hands behind the violinist.,feels as he buries his face in his hands.,cradles him as best he can.,starts dusting him some more.\n10158,lsmdc3020_DEAR_JOHN-10016,2430,\"His father limply raises one hand and rests it against someone's shoulder. As it slides off, someone\",His father limply raises one hand and rests it against someone's shoulder.,\"As it slides off, someone\",gold,rolls into a pool of frost leaping onto the main deck.,studies someone's face.,\"catches it, and lovingly touches his chin to his father's frail fingers.\",leans on the motionless side of the bench.\n10159,lsmdc3020_DEAR_JOHN-10016,2462,Someone lowers his stare and swallows. She tearfully,Someone lowers his stare and swallows.,She tearfully,gold,struggles to get herself in the rubble.,gives someone a faint loving stare.,meets his gaze before glancing away.,rolls her eyes as someone follows.\n10160,lsmdc3020_DEAR_JOHN-10016,2445,\"Later, still submerged, the grieving son buries his face in his hands. Someone\",\"Later, still submerged, the grieving son buries his face in his hands.\",Someone,gold,looks up at a surface in a bright sun.,\"swallows and frowns, looking ahead of him.\",sits alone in a vacant church.,\"rubs his eyes despairingly, then spits in the sun.\"\n10161,lsmdc3020_DEAR_JOHN-10016,2442,As he floats on his back. His arms,As he floats on his back.,His arms,gold,are shaking in air.,raised limply over his head.,\"are crossed, above us.\",cast through the air.\n10162,lsmdc3020_DEAR_JOHN-10016,2429,He resolutely shakes his head. His father,He resolutely shakes his head.,His father,gold,pulls someone to his cheek.,\"kiss her once, and he lifts his brow as he faces her tenderly.\",struggles to gulp back the pale paint.,limply raises one hand and rests it against someone's shoulder.\n10163,lsmdc3020_DEAR_JOHN-10016,2446,Someone sits alone in a vacant church. A coffin,Someone sits alone in a vacant church.,A coffin,gold,is tossed into a rack.,lies over someone's bunk.,sits in support of a castle.,stands in front of the alter.\n10164,lsmdc3020_DEAR_JOHN-10016,2448,\"Wearing his dress uniform, someone stares off beneath his knitted brow. The pastor\",\"Wearing his dress uniform, someone stares off beneath his knitted brow.\",The pastor,gold,delivers a startled look and notices a young man toss a stick lighter into his arms.,\"disappears through a doorway, leaving someone alone once again.\",leaps past him and catches it in the crook of her left hand.,waves the flags to someone as he shuffles.\n10165,lsmdc3020_DEAR_JOHN-10016,2436,And his father strokes his short hair. Someone,And his father strokes his short hair.,Someone,gold,\"walks off, holding it up.\",nods again as he shows the photo.,smiles at the birders.,gently collapses unto the man's chest.\n10166,lsmdc3020_DEAR_JOHN-10016,2467,\"She hurries away, and he idly looks around. The soldier\",\"She hurries away, and he idly looks around.\",The soldier,gold,\"opens, revealing an older girl at a ceremony.\",catches a rifle as the bearded agent takes aim with a furrowed brow.,gets up and ambles towards a mantle.,ties a long path along the sand.\n10167,lsmdc3020_DEAR_JOHN-10016,2472,Someone takes a seat and the ailing father studies him wryly. Someone,Someone takes a seat and the ailing father studies him wryly.,Someone,gold,runs close to someone.,earnestly lifts his brow.,finds someone kissing her up as well.,cleans her hair with water.\n10168,lsmdc3020_DEAR_JOHN-10016,2460,He reads a sign above the barn door. She,He reads a sign above the barn door.,She,gold,\"pauses, they sit a few inches or two.\",looks around to see someone leaning on his blanket.,forces a smile and gives a high shrug.,wanders through a set of open - side doors with the glass panels.\n10169,anetv__15t4WTR19s,15417,The chef throws cheese into the salad. The chef,The chef throws cheese into the salad.,The chef,gold,shows off her salad before proceeding to pour olive oil into a cup.,explains the content of the quarter.,speaks to the ground as the man talks to the camera.,adds some limes perusing the ingredients and stuffs them into the foil.\n10170,anetv__15t4WTR19s,15413,A chef stands as she talks near a kitchen island. The chef,A chef stands as she talks near a kitchen island.,The chef,gold,passes the salad sandwich and goes inside to her repairing.,does a cooker all the ingredients needed for another show.,grabs a bowl of salad and shows it off.,sits on the counter watching a pot on the stove.\n10171,anetv__15t4WTR19s,2817,The lady juices a lemon and pours it in oil and adds other ingredients and rates something on top before stirring it up. The lady,The lady juices a lemon and pours it in oil and adds other ingredients and rates something on top before stirring it up.,The lady,gold,starts knitting the ingredients in a bowl.,puts the lemon on the pot.,starts carving machine in the pumpkin.,adds the dressing to the salad and mixes it.\n10172,anetv__15t4WTR19s,2819,The lady shows us the finished salad. We,The lady shows us the finished salad.,We,gold,see the ending screen and credits.,see people making cookies at the table.,see the ingredients dip glass from a bowl.,see the credits of the video.\n10173,anetv__15t4WTR19s,15416,The chef grabs a cup of nuts and throws it on top of a salad. The chef,The chef grabs a cup of nuts and throws it on top of a salad.,The chef,gold,throws cheese into the salad.,then gets into the second and begins chopping something on a log.,shows how to cook and shows showing different ingredients for using a spatula.,places a mixture of vegetables on a firewood.\n10174,anetv__15t4WTR19s,15418,The chef shows off her salad before proceeding to pour olive oil into a cup. The chef,The chef shows off her salad before proceeding to pour olive oil into a cup.,The chef,gold,tastes the product on the individual four strawberry lemons and hands it to a black hot screen.,rinses the glass and cooked it in a bowl.,squeezes a lemon into the same cup.,cuts up several shot ingredients using mixing the ingredients with ice.\n10175,anetv__15t4WTR19s,15423,The chef grabs two salad utensils and tosses the salad. The chef,The chef grabs two salad utensils and tosses the salad.,The chef,gold,pours a glass into a mug.,is in a kitchen demonstrating to strip cheese on the top piece of bread.,shows off the fully prepared salad.,\"holds a bowl in front of a counter with ostrich cheese, a ingredient, measuring, and cooks it.\"\n10176,anetv__15t4WTR19s,15419,\"With a spoon, the chef pours in a spice and some salt into the cup. The chef\",\"With a spoon, the chef pours in a spice and some salt into the cup.\",The chef,gold,is then cooked in the pit of food with water and holds up the pasta.,has poured several of the noodles and stirred for a series and more.,shows off shredded garlic before throwing it into the cup.,has picked graham crackers up and secures the egg.\n10177,anetv__15t4WTR19s,15414,The chef grabs a bowl of salad and shows it off. The chef,The chef grabs a bowl of salad and shows it off.,The chef,gold,pours juice into a glass and tastes the drink.,shows off the cake as well as the chef.,grabs the towel accepts a bottle.,puts down the bowl to grab another bowl of chopped apples which she throws into a bowl.\n10178,anetv__15t4WTR19s,15420,\"The chef shows off shredded garlic before throwing it into the cup. With a spoon, the chef\",The chef shows off shredded garlic before throwing it into the cup.,\"With a spoon, the chef\",gold,adds eggs to the cooker.,begins to put the salad on the pan.,stirs all of the ingredients in the cup.,gives the man a firework on the face and then takes it.\n10179,anetv__15t4WTR19s,2818,The lady adds the dressing to the salad and mixes it. The lady,The lady adds the dressing to the salad and mixes it.,The lady,gold,puts sprinkles on the sandwich.,tastes the omelette once more.,shows us the finished salad.,licks the ice cream and fries.\n10180,anetv__15t4WTR19s,2816,A lady talks in a kitchen. The lady,A lady talks in a kitchen.,The lady,gold,presents the cookie o the cookies.,talks between the ladies and we see various hints and cymbals.,\"shows us her salad then adds apples, nuts and carrots.\",brushes the hair of her mother using a paintbrush and adding us solution.\n10181,anetv__15t4WTR19s,15422,The chef pours the ingredients into the salad. The chef,The chef pours the ingredients into the salad.,The chef,gold,places the outline on the table before their yellow plate which has taken out of the oven.,continues to cook in another cage.,grabs two salad utensils and tosses the salad.,shows the food to an oven.\n10182,anetv__15t4WTR19s,2815,We see an opening title screen. A lady,We see an opening title screen.,A lady,gold,talks in a kitchen.,speaks and washes her hands.,talks on a zumba machine.,spins a hand holding a hammer.\n10183,anetv__15t4WTR19s,15415,The chef puts down the bowl to grab another bowl of chopped apples which she throws into a bowl. The chef,The chef puts down the bowl to grab another bowl of chopped apples which she throws into a bowl.,The chef,gold,begins cutting along the eleventh with a rod and holding the ax and pulling it away.,drains out some liquid cream and spits it out onto the bread.,grabs a cup of nuts and throws it on top of a salad.,\"mixes slightly, takes a bite some time and finishes the finished fries the drink.\"\n10184,lsmdc1014_2012-79262,15275,He turns to look at the radio again. She,He turns to look at the radio again.,She,gold,goes to take a pull.,gazes out of the windscreen.,drops the rifle at someone's side.,nudges his nose at one of the beams.\n10185,lsmdc1014_2012-79262,15273,\"A wave brings a large aircraft carrier. Someone, in a parka,\",A wave brings a large aircraft carrier.,\"Someone, in a parka,\",gold,is a small sarcophagus with a lot of blood.,watches his truck worker up.,wanders over to him.,is in his closet.\n10186,lsmdc0009_Forrest_Gump-50807,4441,People sit on a limb together. Someone,People sit on a limb together.,Someone,gold,\"waddles around, sighs, smiling from his colleague.\",starts to come back for work.,is sprawled out on the floor walking away from someone.,sits by the vase of flowers and look out the window.\n10187,lsmdc0009_Forrest_Gump-50807,4439,Someone collapses to the ground and sobs. Someone,Someone collapses to the ground and sobs.,Someone,gold,rears back and gets away.,knees down next to her.,looks down at the glowering sky.,wraps his arms around her and keeps her arms up.\n10188,lsmdc0009_Forrest_Gump-50807,4442,Someone sits by the vase of flowers and look out the window. Someone,Someone sits by the vase of flowers and look out the window.,Someone,gold,\"walks to someone's cottage, sits by someone - looking cautiously and quietly.\",closes his eyes as he sits on the porch.,regards her with her wounded gaze.,moves up to meet someone.\n10189,lsmdc0009_Forrest_Gump-50807,4440,Someone knees down next to her. People,Someone knees down next to her.,People,gold,slam past him on the table.,nods as one of her long tails tethered to someone's coat.,sit on a limb together.,are sawing by the shells at the saucepan end but the military tuna stretch out.\n10190,lsmdc0009_Forrest_Gump-50807,4443,Someone closes his eyes as he sits on the porch. Someone,Someone closes his eyes as he sits on the porch.,Someone,gold,places a box of nike running shoes in his lap.,gets up off the couch and starts to sob.,\"climbs in, hides as the coach leads him over to the boat.\",lies asleep in the sleeping belly.\n10191,anetv_Z_1Zoc6lINU,4673,The lady then wipes the product off with a towel. The lady then,The lady then wipes the product off with a towel.,The lady then,gold,shows a red lash.,adds shoes wax to the shoe and wipes it off.,catches her blow while the lady brushes her hair around.,takes off the makeup and wraps it around his neck.\n10192,anetv_Z_1Zoc6lINU,4672,The lady adds a product to the shoes. The lady then,The lady adds a product to the shoes.,The lady then,gold,presents the dry product.,sets on on a rug to complete the task.,wipes the product off with a towel.,wipes the hair with a towel.\n10193,anetv_Z_1Zoc6lINU,4670,The lady shows us various shoes. The lady,The lady shows us various shoes.,The lady,gold,make so her face.,continues to remove her shoes.,uses the polish polish in regular shoes.,shows us the shoe supplies.\n10194,anetv_Z_1Zoc6lINU,4668,We see a lady sitting at a table with shoes and supplies talking to the camera. We,We see a lady sitting at a table with shoes and supplies talking to the camera.,We,gold,see a lady mopping the floor.,see screens with shoes on them.,see the kids gathered around the parking lot.,see the lady playing the violin.\n10195,anetv_Z_1Zoc6lINU,4667,We see an opening title screen. We,We see an opening title screen.,We,gold,see a lady sitting at a table with shoes and supplies talking to the camera.,see a man speaking on a tube on a machine.,see a fish fish on a lake.,see people playing lacrosse in a stadium with each other.\n10196,anetv_Z_1Zoc6lINU,4669,We see screens with shoes on them. The lady,We see screens with shoes on them.,The lady,gold,brushes to find them.,plays an electric guitar.,shows us various shoes.,jumps off and grabs a friend chair.\n10197,anetv_Z_1Zoc6lINU,4671,The lady shows us the shoe supplies. The lady,The lady shows us the shoe supplies.,The lady,gold,adds a product to the shoes.,does the boot under the mop.,continues to brush the spilled shoes.,paints up her cat's nails.\n10198,anetv_Z_1Zoc6lINU,4674,The lady then adds shoes wax to the shoe and wipes it off. We,The lady then adds shoes wax to the shoe and wipes it off.,We,gold,see a title screen.,the lady puts his hair down and brushes the clothes off the sides of the face.,see the opening title screen.,see the closing title screen.\n10199,anetv_R0sADQPdso8,8426,We see an opening title screen. A lady,We see an opening title screen.,A lady,gold,stands in front of a sink.,walks on the wall outside with a boy.,shows her hand and the lady points.,speaks in front of a plaza.\n10200,anetv_R0sADQPdso8,8429,The timer reads The lady hula hoops for 2 minutes and seventeen seconds. The lady,The timer reads The lady hula hoops for 2 minutes and seventeen seconds.,The lady,gold,speaks to the camera again.,adds the red painted yellow on the glittering green count.,sits up and mounts the shot.,taps the baton on her nails.\n10201,anetv_R0sADQPdso8,8427,A lady speaks in front of a plaza. the lady hula hoops in short shorts and a tight shirt in a plaza and we,A lady speaks in front of a plaza.,the lady hula hoops in short shorts and a tight shirt in a plaza and we,gold,see a lady playing in the room.,see the card revolves on the left title screen.,see a timer in the upper right corner periodically.,see the ending cheering.\n10202,anetv_R0sADQPdso8,8430,The lady speaks to the camera again. We,The lady speaks to the camera again.,We,gold,see the crazy ending screen in the right scene.,see the ending youtube screen.,see several surfers riding down the hill.,see a lady laying paper on a carpet floor.\n10203,anetv_R0sADQPdso8,8428,The lady hula hoops in short shorts and a tight shirt in a plaza and we see a timer in the upper right corner periodically. The timer,The lady hula hoops in short shorts and a tight shirt in a plaza and we see a timer in the upper right corner periodically.,The timer,gold,drops back into the shot and we see the man's shorts off and the skateboard mouse returns with it.,hands him to and ten men were in a restaurant.,returns to look to the right.,reads the lady hula hoops for 2 minutes and seventeen seconds.\n10204,lsmdc1008_Spider-Man2-75276,18243,He peels off his gray lab coat. He,He peels off his gray lab coat.,He,gold,puts the penguin on.,slides over the backpack.,watches sadly as the crew crewman hikes her bag from her purse in her lap and straddles the laces on her legs.,\"steps onto a platform, then taps keys on a freestanding control panel.\"\n10205,lsmdc1008_Spider-Man2-75276,18242,Someone pulls off a dust sheet to reveal a device with four long mechanical limbs. He,Someone pulls off a dust sheet to reveal a device with four long mechanical limbs.,He,gold,tucks them up and back with it.,undoes it from his chain and walks back to someone.,peels off his gray lab coat.,shines the shaft of the gun at someone's face.\n10206,lsmdc1008_Spider-Man2-75276,18244,\"He steps onto a platform, then taps keys on a freestanding control panel. A blue computer chip at the top of the synthetic spine glows, then a series of pins\",\"He steps onto a platform, then taps keys on a freestanding control panel.\",\"A blue computer chip at the top of the synthetic spine glows, then a series of pins\",gold,slide into his skin.,fly on someone's heart and their desks.,landing down to beyond him.,strike someone in the leg.\n10207,lsmdc1008_Spider-Man2-75276,18248,Someone reaches out his own arms. The four mechanical limbs,Someone reaches out his own arms.,The four mechanical limbs,gold,hold each other tight and stand tightly.,form their invisible shield.,hover above his head.,fold the hardcover book atop the comic carrier.\n10208,lsmdc1008_Spider-Man2-75276,18247,On the end of each arm is a pointed pincer which opens out. Someone,On the end of each arm is a pointed pincer which opens out.,Someone,gold,\"drops a plane on it, and then opens it, pointing directly at the window.\",\"keeps strokes, propelling water across the bridge and beneath a rhythmic splashing.\",reaches out his own arms.,turns to someone.\n10209,lsmdc1008_Spider-Man2-75276,18246,\"The four metal limbs begin to move, rising up like snakes. On the end of each arm\",\"The four metal limbs begin to move, rising up like snakes.\",On the end of each arm,gold,\"draws a wide black unlit - old cigar, sniper fires the glow like rocket cannon, and things dragon.\",is a pointed pincer which opens out.,is wrapped badly apart.,\"is a third, the scientists are on end.\"\n10210,lsmdc0023_THE_BUTTERFLY_EFFECT-59772,11090,\"Someone sees no one is watching him in the institution corridor as he throws his weight into the door of the doctor's office, breaking it open. Someone\",\"Someone sees no one is watching him in the institution corridor as he throws his weight into the door of the doctor's office, breaking it open.\",Someone,gold,\", someone runs out from the closet door and knocks on the door.\",\"enters the office and tears the file cabinets apart, looking for something.\",\"looks up and blinks down at her, then walks away.\",\", he gives him a push.\"\n10211,lsmdc0023_THE_BUTTERFLY_EFFECT-59772,11091,\"Fatigue overwhelms him, but he continues writing. Someone\",\"Fatigue overwhelms him, but he continues writing.\",Someone,gold,sets her ushered aside.,'s tally ticks down to mountain years.,catches up with the rest of the guards.,\"finishes off the train, closing the door.\"\n10212,anetv_3HUvtWSu4mA,12550,A person's hands are seen clipping the nails of a cat while the cat struggles a bit. More shots of her clipping the cat are shown and at one point he moves and she,A person's hands are seen clipping the nails of a cat while the cat struggles a bit.,More shots of her clipping the cat are shown and at one point he moves and she,gold,continues when pictures begin clipping her nails.,continues brushing the nails off and on the face one by one.,grabs him by the neck.,do it the other way to do.\n10213,anetv_WFqr6QPsszQ,2573,\"This video shows viewers how to wrap gifts using cloth. First, the woman puts two books on both ends of the cloth and she\",This video shows viewers how to wrap gifts using cloth.,\"First, the woman puts two books on both ends of the cloth and she\",gold,makes to take the wrap and carefully puts it on the wound.,works up the window for a final product.,dries the ground with glitter attachments to make it appear.,folds both ends of the cloth together.\n10214,anetv_WFqr6QPsszQ,7053,We see a bright pink opening screen. We,We see a bright pink opening screen.,We,gold,see boys kids playing at the beach.,see a piece of cloth on a table outdoors as a lady sets two books on the cloth and wraps them in the fabric.,see a lady cleaning a ladder and buffing a with a cloth.,see a man in a blue suit wearing a mask.\n10215,anetv_WFqr6QPsszQ,7056,We see the lady tie a piece of cloth into a sling to which she adds books. We then,We see the lady tie a piece of cloth into a sling to which she adds books.,We then,gold,see the closing title screen for a video about the emblem chart.,see the ending credits.,\"see images of ladies wrapping, including wrapped gift and gift paper.\",see the ending credits and credits.\n10216,anetv_WFqr6QPsszQ,7054,We see a piece of cloth on a table outdoors as a lady sets two books on the cloth and wraps them in the fabric. The lady,We see a piece of cloth on a table outdoors as a lady sets two books on the cloth and wraps them in the fabric.,The lady,gold,folds the ends of the cloth and tie them like a purse handle.,puts wrapping paper on the small replica of the gift with the lady and the lady.,circles a grapefruit in her right hand and covers her lower again on the napkin.,puts the tape over it and then crack cake into the pumpkin.\n10217,anetv_WFqr6QPsszQ,7055,The lady folds the ends of the cloth and tie them like a purse handle. We,The lady folds the ends of the cloth and tie them like a purse handle.,We,gold,see the attendant on the very empty room.,lady pulls the napkin from the mouth while the girl speaks to the mirror.,see the lady tie a piece of cloth into a sling to which she adds books.,lady shows padding the tool and puts it on the ironed paper.\n10218,anetv_WFqr6QPsszQ,2574,\"First, the woman puts two books on both ends of the cloth and she folds both ends of the cloth together. Then when she's finished, it\",\"First, the woman puts two books on both ends of the cloth and she folds both ends of the cloth together.\",\"Then when she's finished, it\",gold,looks like a real purse in her hands.,'s completely cleaned before the mop lands in the floor.,\"is complete with a marketing graphic, as she steps away.\",\"snaps to a war room, complete with papers and title.\"\n10219,anetv_5rkAMBttgPc,4856,She pours the ice out of a martini glass. She,She pours the ice out of a martini glass.,She,gold,\"pours it back onto a machine, then tosses out a glass of ice.\",pours herself a bottle of alcohol while demonstrating her methods.,pours the drink into the martini glass.,flicks the ball into the glass to drink some of the rest.\n10220,anetv_5rkAMBttgPc,4853,She dumps some ice into the glass. She,She dumps some ice into the glass.,She,gold,pours the contents into a mug.,puts some ice into another glass and adds shots of alcohol.,fills a pitcher with water to wipe the up boat.,then puts it on the fridge to wash her hands.\n10221,anetv_5rkAMBttgPc,4852,A woman is standing behind a counter holding a martini glass. She,A woman is standing behind a counter holding a martini glass.,She,gold,mixes the ingredients in her bowl as she cooks.,dumps some ice into the glass.,sticks it into her mouth at the same time.,pours a flame into a cup of water and then takes it out again.\n10222,anetv_5rkAMBttgPc,4857,She pours the drink into the martini glass. She,She pours the drink into the martini glass.,She,gold,straightens her bag and dons a black ii badge and boots.,dissolves to another regular shot.,finishes lighting the spoon.,holds up the martini glass in her hand.\n10223,anetv_5rkAMBttgPc,4854,She puts some ice into another glass and adds shots of alcohol. She,She puts some ice into another glass and adds shots of alcohol.,She,gold,begins to pour the mixture into a pan.,raises ingredient on her plate and returns to the bar.,pours all a liquid into the glass.,shakes the drink in a black shaker.\n10224,anetv_5rkAMBttgPc,4855,She shakes the drink in a black shaker. She,She shakes the drink in a black shaker.,She,gold,is seen using the sticks while still speaking to the camera.,\"rubs the nozzle to her mouth, then slaps the car's rear together.\",pours the ice out of a martini glass.,begins to blow smoke as she goes.\n10225,lsmdc3027_GET_HIM_TO_THE_GREEK-12249,8730,A sleazy man with a horseshoe mustache innocently shifts his gaze. The hefty guy,A sleazy man with a horseshoe mustache innocently shifts his gaze.,The hefty guy,gold,watches someone along with the nhl nuts.,helps someone over while turning off.,eyes him and smirks.,stares slack - jawed.\n10226,anetv_CCMtNNSzHw8,13666,A lady is wiping her face. A little girl,A lady is wiping her face.,A little girl,gold,sprays the ski with soap.,is hanging a towel and ladies the dog.,is brushing her hair and hair.,is applying makeup to her face.\n10227,anetv_G836MDBhEpg,17430,A woman behind a bar explaining how to make a drink. She,A woman behind a bar explaining how to make a drink.,She,gold,pours a drink in the shaker while she makes frosting.,takes two glasses of hors d'oeuvres and prepares to go pouring bottom into the glass.,puts milk into her glasses.,pours several ingredients into a shaker and shakes it.\n10228,anetv_G836MDBhEpg,17431,She pours several ingredients into a shaker and shakes it. She then,She pours several ingredients into a shaker and shakes it.,She then,gold,scoops the lemons up with a cocktail drink.,sets a napkin onto the salad.,pours the drink from the shaker into a shot glass and holds it up.,pours the mix into a shaker.\n10229,anetv_jhakEVLCqNM,17047,\"A youth talks inside a home, then he gets outside the home. A man and a teen stand on front a swimming pool talking, and a person\",\"A youth talks inside a home, then he gets outside the home.\",\"A man and a teen stand on front a swimming pool talking, and a person\",gold,mends a razor in a leather chair.,comes to the coffee table and talks into a mike.,styles a white shirt with a surfboard.,lay down on a chair.\n10230,anetv_jhakEVLCqNM,17050,\"After, the man gets in the water and flip the teen. The teen\",\"After, the man gets in the water and flip the teen.\",The teen,gold,stops at a high end to announce the demonstration.,smiles at the camera while the people talks.,get back in the gym.,gets out the swimming pool and throws chair to the man.\n10231,anetv_jhakEVLCqNM,17048,\"A man and a teen stand on front a swimming pool talking, and a person lay down on a chair. Then, the man\",\"A man and a teen stand on front a swimming pool talking, and a person lay down on a chair.\",\"Then, the man\",gold,talks to the camera and begins hitting a sandy area.,adds a ball to her and the other girl helps.,pushes the teen to the water who has trouble to swim.,takes a drink out of the water.\n10232,anetv_jhakEVLCqNM,17051,\"The teen gets out the swimming pool and throws chair to the man. Next, the teen walks away angry, and the men and the woman\",The teen gets out the swimming pool and throws chair to the man.,\"Next, the teen walks away angry, and the men and the woman\",gold,continue to talk on the pool.,play pool in the pool.,take the chairs out of the pool.,dismount and hug each other.\n10233,anetv_jhakEVLCqNM,17049,\"Then, the man pushes the teen to the water who has trouble to swim. After, the man\",\"Then, the man pushes the teen to the water who has trouble to swim.\",\"After, the man\",gold,gets in the water and flip the teen.,picks up a bottle of liquid and takes it again.,puts the kayak down to the water.,dives in shore and wipes down the water wand.\n10234,lsmdc3081_THOR-37972,5699,Bands of dark clouds drift across the full moon. Someone,Bands of dark clouds drift across the full moon.,Someone,gold,\"stares straight up at the sky then pulls a blanket snug over someone, who sleeps in a recliner beside him on the roof.\",writes an address in his typewriter and a website just inside.,takes a abandoned splinter.,faces slowly in front of the entrance barriers.\n10235,anetv_3VoIt9XkPEM,9240,People are floating down a river in tubes. A person's feet,People are floating down a river in tubes.,A person's feet,gold,are laying in the snow.,are shown on a tube.,paddle through the water.,are left down the river.\n10236,anetv_3VoIt9XkPEM,9241,A person's feet are shown on a tube. People,A person's feet are shown on a tube.,People,gold,are moving around with a machine on their backs.,are sitting upright on a table next to them.,are sitting on a beach next to gps bandages.,are standing on the short next to their tubes.\n10237,anetv_cFCN9QE1M0c,5529,A man is seen playing an instrument before a microphone and large tv's seen behind him. The man,A man is seen playing an instrument before a microphone and large tv's seen behind him.,The man,gold,continues playing while he begins to lick the wood in place and is once again playing in his arms.,continues playing as a group of people dance behind him and the audience cheering.,plays the flute while speaking still and continues to play the drums in his hands.,plays two drums while he stops playing and speaks in front of him.\n10238,anetv_cFCN9QE1M0c,17903,A man is standing and performing on a stage. He,A man is standing and performing on a stage.,He,gold,jumps up and down and going over a high bar onto the parallel bars.,begins performing a belly dance routine.,is also dressed up playing drums.,is playing a small flute.\n10239,anetv_cFCN9QE1M0c,17904,He is playing a small flute. A group of women,He is playing a small flute.,A group of women,gold,appears and ends with instruments who are playing a game of tennis.,play another harmonica and sing to the camera.,sit in clumps of them on a stage.,are dancing and singing in the background.\n10240,lsmdc3089_XMEN_FIRST_CLASS-43182,8685,\"It consumes him, then overwhelms our view. In Moscow, the Russian general\",\"It consumes him, then overwhelms our view.\",\"In Moscow, the Russian general\",gold,looks out at a military parade through from a balcony.,loads a recent medal of honor by someone and sisters.,stands two pistols raised and leads into the nude.,holds the hood up in the air.\n10241,lsmdc3089_XMEN_FIRST_CLASS-43182,8693,\"Someone faces the group, his angular features set in a grim frown. Someone\",\"Someone faces the group, his angular features set in a grim frown.\",Someone,gold,yields a faint comforting smile.,sits on the sofa and serves some food.,\"gazes dreamily at the applauding crowd, who blows softly after him.\",leans down and wraps his arm around someone.\n10242,lsmdc3089_XMEN_FIRST_CLASS-43182,8689,\"He fearfully lowers the phone, then looks back at someone. The evil mutant leader\",\"He fearfully lowers the phone, then looks back at someone.\",The evil mutant leader,gold,lunges and grabs the set of its head.,smiles and holds out his hands.,yanks his knees off.,\"gets up and rushes away, followed by someone.\"\n10243,lsmdc3089_XMEN_FIRST_CLASS-43182,8697,Someone stands and strides confidently to the window. Her finger crystallizes and she,Someone stands and strides confidently to the window.,Her finger crystallizes and she,gold,uses it to cut a circle in the glass.,rests her chin on someone's shoulder.,glances back at someone.,spots a newspaper girl on someone's hair.\n10244,lsmdc3089_XMEN_FIRST_CLASS-43182,8698,Her finger crystallizes and she uses it to cut a circle in the glass. The mutant lightly taps it and it,Her finger crystallizes and she uses it to cut a circle in the glass.,The mutant lightly taps it and it,gold,drops out of the window.,moves forward into the right eye.,falls in her eye.,\"becomes dull, sending sparks flying into the air.\"\n10245,lsmdc3089_XMEN_FIRST_CLASS-43182,8682,It takes on the appearance of volcanic rock. He,It takes on the appearance of volcanic rock.,He,gold,\"faces someone, whose eyes widen.\",looks in through the window of the paper shop.,starts to do it again.,picks up the boot.\n10246,lsmdc3089_XMEN_FIRST_CLASS-43182,8673,The young man lowers his arm. Someone,The young man lowers his arm.,Someone,gold,watches other teenage boys play.,lowers his woeful gaze.,\"turns and looks over at someone, who casually glances away.\",pushes back up a bit.\n10247,lsmdc3089_XMEN_FIRST_CLASS-43182,8690,The evil mutant leader smiles and holds out his hands. The general,The evil mutant leader smiles and holds out his hands.,The general,gold,seizes him and rubs the boy's face.,faces someone's menacing team.,pushes a long stick.,releases someone's blood.\n10248,lsmdc3089_XMEN_FIRST_CLASS-43182,8688,\"Someone, someone, and the cyclone - maker appear before him. He\",\"Someone, someone, and the cyclone - maker appear before him.\",He,gold,\"fearfully lowers the phone, then looks back at someone.\",turns away from someone and approaches him.,gets up and goes inside.,suddenly put the head in his shoulder and places a ring around his foot.\n10249,lsmdc3089_XMEN_FIRST_CLASS-43182,8687,He steps in close to someone and removes the marker. He,He steps in close to someone and removes the marker.,He,gold,marches to a phone on one of the long tables and picks it up.,strolls to the cage where someone stops a jackbooted someone in the chest of someone who's watching him.,takes his hardcover book and takes someone someone's note with the card inside.,takes one finger from her mouth and makes a small finger.\n10250,lsmdc3089_XMEN_FIRST_CLASS-43182,8674,He sighs heavily and his expression grows resolute. He,He sighs heavily and his expression grows resolute.,He,gold,\"raises two mugs at someone, then looks around the lawyer.\",faces someone who scowls as someone speaks.,looks up at him with a big smile.,lifts a jar downwards on the edge of her bed.\n10251,lsmdc3089_XMEN_FIRST_CLASS-43182,8676,\"Behind him, the other young mutants form a line. Someone\",\"Behind him, the other young mutants form a line.\",Someone,gold,passes the bully to the field.,plucks out two arrow from someone's neck and holds it up.,sweeps an arm behind him in a welcoming gesture.,writes money on his paper.\n10252,lsmdc3089_XMEN_FIRST_CLASS-43182,8686,He plants a missile - shaped crimson marker over a sizable island southeast of the Floridian coast. He,He plants a missile - shaped crimson marker over a sizable island southeast of the Floridian coast.,He,gold,\"eat the tip of chocolate, then resume egg 08.\",tosses the knife and slices up with his own.,attempts to run in a new direction.,steps in close to someone and removes the marker.\n10253,lsmdc3089_XMEN_FIRST_CLASS-43182,8679,\"Someone blocks his punch, then grabs him by the jaw, forcing his mouth open. He\",\"Someone blocks his punch, then grabs him by the jaw, forcing his mouth open.\",He,gold,starts to force himself to the ground.,takes a few deep breaths before someone flies backward in.,\"forces a compact mass of the energy between someone's lips, then releases him.\",\"sets them over a table of lakes, yawning.\"\n10254,lsmdc3089_XMEN_FIRST_CLASS-43182,8695,Now someone sits in a small room. As someone and someone,Now someone sits in a small room.,As someone and someone,gold,jump out of bed and kick their legs apart.,make their way back along.,watch from an observation room.,\"get up, someone makes a call.\"\n10255,lsmdc3089_XMEN_FIRST_CLASS-43182,8696,As someone and someone watch from an observation room. Someone,As someone and someone watch from an observation room.,Someone,gold,\"sees someone, blinking to a round - faced man.\",- someone watches someone as he opens the door and spots two masked men in a room.,stares without looking up from his work.,stands and strides confidently to the window.\n10256,lsmdc3089_XMEN_FIRST_CLASS-43182,8672,\"She accepts it and someone leads her to the shattered window. Someone reaches out to her, but she\",She accepts it and someone leads her to the shattered window.,\"Someone reaches out to her, but she\",gold,places his hand up for him to continue.,turns away and continues out with someone.,folds him as if free.,grabs her and shakes her in.\n10257,lsmdc3089_XMEN_FIRST_CLASS-43182,8684,\"Someone reaches out to him, resuming his flesh - and - blood form. Brilliant light\",\"Someone reaches out to him, resuming his flesh - and - blood form.\",Brilliant light,gold,shines under someone 'wand.,shines out through cracks in his skin.,overwhelming a city full of golden glow.,glows as someone gets out of bed and hurries over to the car.\n10258,lsmdc3089_XMEN_FIRST_CLASS-43182,8683,\"He faces someone, whose eyes widen. Someone\",\"He faces someone, whose eyes widen.\",Someone,gold,\"reaches out to him, resuming his flesh - and - blood form.\",dissolves into the smoky lounge.,has opened her mouth to speak deliberately by the sound and heard tv.,aims the gun into the pistol.\n10259,lsmdc3089_XMEN_FIRST_CLASS-43182,8681,Someone stares sadly at her friend. It,Someone stares sadly at her friend.,It,gold,hands them to us.,is the bar of someone.,takes on the appearance of volcanic rock.,sits next to his eyes.\n10260,lsmdc3089_XMEN_FIRST_CLASS-43182,8694,Someone yields a faint comforting smile. Now someone,Someone yields a faint comforting smile.,Now someone,gold,opens her closing door.,\"sits on a truck talking, his brow furrowed.\",escorts someone outside the galley party.,sits in a small room.\n10261,lsmdc3089_XMEN_FIRST_CLASS-43182,8691,The general faces someone's menacing team. Now a black car,The general faces someone's menacing team.,Now a black car,gold,arrives outside the devastated research facility.,\"pulls up a gated, snow - tiled building which lies on a road.\",pulls up above a demolished structure in the cemetery.,sees a figure toting a pistol and a thick book.\n10262,anetv_lue8XE3MEe8,7800,\"A man dressed in black shorts, t - shirt, sneakers and red baseball cap walks into an orange walled room with hardwood floors and demonstrates an arm lift exercise with two metal black dumbbells. An orange walled room\",\"A man dressed in black shorts, t - shirt, sneakers and red baseball cap walks into an orange walled room with hardwood floors and demonstrates an arm lift exercise with two metal black dumbbells.\",An orange walled room,gold,\"is shown and he picks up his rock, paper and and begins cutting hair off the floor.\",is filled with logs and bicycles.,is empty except for two black dumbbells lying horizontal on the floor.,is shown attached and large alongside paper scissors to hit a wall.\n10263,anetv_7OTqYfUuAIw,20045,A young child is seen kicking around in the middle of a room. The kid,A young child is seen kicking around in the middle of a room.,The kid,gold,is shown moving wide and on the bars.,helps another child close up.,twists sharply and moves to the camera frame.,kicks both of his legs around while the camera pans around.\n10264,anetv_7OTqYfUuAIw,20046,The kid kicks both of his legs around while the camera pans around. Another child,The kid kicks both of his legs around while the camera pans around.,Another child,gold,is seen kicking on the side while a dog walks in and out of frame.,is seen bending and flipping over to the camera.,is seen sitting to another other and playing basketball.,dressed in a dress and half horse comes jogging in after him.\n10265,anetv_s6pFNNnub80,3142,Several pictures are shown of nails close up and leads into a person painting text onto a nail. The person,Several pictures are shown of nails close up and leads into a person painting text onto a nail.,The person,gold,mixes up sticks laid down on a plate followed by scissors cutting the cat's nails.,then scrubs the area while continuing to brush the paint while putting it back.,paints over them and lines up the finished painting.,shows close ups of nail polish and continues painting on the nail.\n10266,anetv_s6pFNNnub80,3143,The person shows close ups of nail polish and continues painting on the nail. The woman,The person shows close ups of nail polish and continues painting on the nail.,The woman,gold,paints a wall with blue paint.,speaks to the camera as she uses her finger to brush the paper and slowly begin painting the nails.,finishes her design and shows off another picture of nails.,mixes with a container of paint and shows it to the camera.\n10267,anetv_zy7rd78yBnY,12671,She begins painting flowers on the paper in front of her. She,She begins painting flowers on the paper in front of her.,She,gold,moves and shows another tattoo she never shows.,smiles then speaks slowly.,picks the painting up.,gps services asking if she'll settled to you.\n10268,anetv_zy7rd78yBnY,10710,The woman paints a picture of long stems and leaves of a plant. The woman,The woman paints a picture of long stems and leaves of a plant.,The woman,gold,paints flower petals onto the painting.,shows how to unfold and cut flowers out of the yard.,cuts a painted piece of wood.,slowly uses the painted stone arch.\n10269,anetv_zy7rd78yBnY,10709,A woman is seated on a work table and holds a paint brush. The woman,A woman is seated on a work table and holds a paint brush.,The woman,gold,paints a picture of long stems and leaves of a plant.,mixes the hair back in and adjusts it to different celebrities.,then apply plaster over the over of the seam.,uses a brush to paint along a canvas and her starts scraping.\n10270,anetv_zy7rd78yBnY,12670,A woman is sitting at a table painting. She,A woman is sitting at a table painting.,She,gold,begins painting flowers on the paper in front of her.,is holding a paintbrush and painting the fence and paint.,presses some picture to a blue car.,putting her finger nails into a vanity face.\n10271,anetv_pULb9WvZwU4,6175,\"Once they reach the top of the crane, the view switches and they can be seen looking over the landscape. The man that is preparing to bungee jump\",\"Once they reach the top of the crane, the view switches and they can be seen looking over the landscape.\",The man that is preparing to bungee jump,gold,is seen spinning in circles.,is at the edge of the boom looking around nervously.,up flips drops his board onto the mat and splits the mat.,does a flip and destroys the railing when he falls.\n10272,anetv_pULb9WvZwU4,6176,The man that is preparing to bungee jump is at the edge of the boom looking around nervously. One at a time the men,The man that is preparing to bungee jump is at the edge of the boom looking around nervously.,One at a time the men,gold,in purple starts walking toward the third truck and does it again.,went to the right.,do a back flip and they begin moving again a third time.,jump out of the boom and hang above a small body of water.\n10273,anetv_pULb9WvZwU4,6173,\"Multiple men are loaded onto a crane boom bucket. When three men are safely aboard, the crane\",Multiple men are loaded onto a crane boom bucket.,\"When three men are safely aboard, the crane\",gold,\"soars towards someone, who runs in after them and holds him up.\",begins to jump on the barricade.,eyes a soldier raise a barrier.,begins to lift them up in the air slowly.\n10274,anetv_pULb9WvZwU4,6174,\"When three men are safely aboard, the crane begins to lift them up in the air slowly. Once they reach the top of the crane, the view switches and they\",\"When three men are safely aboard, the crane begins to lift them up in the air slowly.\",\"Once they reach the top of the crane, the view switches and they\",gold,\"disappear, entourage walk up a hill.\",turn to one side in turn.,can be seen looking over the landscape.,get out and begin rafting.\n10275,anetv_dN14VPSHimI,11107,A man is riding a horse in a rodeo and catch a bull while in stands people are watching them andother man in a hse are on side of the court. men,A man is riding a horse in a rodeo and catch a bull while in stands people are watching them andother man in a hse are on side of the court.,men,gold,hold up the men in a field arm as they go home.,is walking around in a large green grassy field walking and fells a rope with one throws.,are riding a horse in a barn and throw a rope to catch a bull.,are playing frisbee with its hands and doing a choreography.\n10276,anetv_eVwRbDXyBbc,2705,There is a pool table with billiard balls on it. A person,There is a pool table with billiard balls on it.,A person,gold,makes a penalty shot.,has a pool cue in their hand.,is measuring the bowling ball.,moves a wooden racket to the left.\n10277,anetv_eVwRbDXyBbc,2706,A person has a pool cue in their hand. They,A person has a pool cue in their hand.,They,gold,join the group by the pool and talk about the match.,are cheering and make a goals in a game of jousting.,hit the cue ball into the other balls.,hit a ball back and forth several times kicking the ball back and forth.\n10278,lsmdc1038_The_Great_Gatsby-87596,8316,\"With a servant on either side, someone walks on to the house. In his doctor's office, someone\",\"With a servant on either side, someone walks on to the house.\",\"In his doctor's office, someone\",gold,sits at a typewriter.,stares into the doctor's grave.,\"whirls around, leading him to a kitchen trolley.\",breaks time facing someone.\n10279,lsmdc1038_The_Great_Gatsby-87596,8306,\"They stand close to each other about to kiss, then someone moves back. A shooting star\",\"They stand close to each other about to kiss, then someone moves back.\",A shooting star,gold,flies across the night sky.,sends someone crashing into them.,leads the way up to the balcony and finds it empty.,blows an open room out from the dining room.\n10280,lsmdc1038_The_Great_Gatsby-87596,8311,He points up and a star shoots by. He,He points up and a star shoots by.,He,gold,\"heads around the shooter, a red haired man yanks on his cloak.\",removes his carve and presses the latch.,shaves her face with it with his hands.,tosses something into the illuminated pool.\n10281,lsmdc1038_The_Great_Gatsby-87596,8307,A shooting star flies across the night sky. They,A shooting star flies across the night sky.,They,gold,stop a graveyard strewn stream over fountain square.,sit swinging the lifeboat of a raft.,have been warm the day at night.,stand transfixed by each other.\n10282,lsmdc1038_The_Great_Gatsby-87596,8308,They stand transfixed by each other. Someone,They stand transfixed by each other.,Someone,gold,grimaces as someone stands.,leans closer and kisses someone.,stares up at him.,\"starts to dance among the others, which stops them from people.\"\n10283,lsmdc1038_The_Great_Gatsby-87596,8317,\"In his doctor's office, someone sits at a typewriter. A female member of staff\",\"In his doctor's office, someone sits at a typewriter.\",A female member of staff,gold,waits for someone's chair then straightens to the table in the center aisle.,reads miss to the mom.,sits on pulling pad.,brings breakfast on a tray for him.\n10284,lsmdc1038_The_Great_Gatsby-87596,8310,He kisses her soft white skin and they lie in each other's arms. Someone's grand house,He kisses her soft white skin and they lie in each other's arms.,Someone's grand house,gold,sits at a building's entrance.,stands alone lit up at night.,carries a vase of blue milk and a private watch on the ground.,eyes his confusedly city.\n10285,lsmdc1038_The_Great_Gatsby-87596,8309,Someone leans closer and kisses someone. They,Someone leans closer and kisses someone.,They,gold,- - she regards him earnestly.,sink into a passionate embrace.,gets into the pot and hands the garbage over the clipboard.,hesitates.\n10286,lsmdc1038_The_Great_Gatsby-87596,8315,\"Someone stops at the top of the steps and looks up at the mansion thoughtfully. With a servant on either side, someone\",Someone stops at the top of the steps and looks up at the mansion thoughtfully.,\"With a servant on either side, someone\",gold,walks on to the house.,walks out of the room.,climbs out of the water closet and stands still.,beams straight through some beautiful blonde.\n10287,lsmdc1038_The_Great_Gatsby-87596,8312,Someone looks across the dark bay. Someone,Someone looks across the dark bay.,Someone,gold,runs across the bridge over to new york city.,\"takes a steadying breath and looks down, his face bruised and swollen.\",\"smiles confidently and steps over to someone, who looks down, frowning.\",touches her mom's arm.\n10288,lsmdc1038_The_Great_Gatsby-87596,8313,Someone heads up the steps to the house. Someone,Someone heads up the steps to the house.,Someone,gold,sits beside camp in an elegant restaurant with a newspaper in a table.,notices the approaching someone.,comes in with the aluminum lid open.,starts to walk away.\n10289,anetv_ADy-2Y0jmXQ,17056,A woman is seen hosting a news segment that leads into several clips of people measuring themselves and speaking to the camera. Many shots,A woman is seen hosting a news segment that leads into several clips of people measuring themselves and speaking to the camera.,Many shots,gold,are then shown of people riding down the mountain as well as riding in tubes down the snowy hill in fast motion.,are shown of people painting the table as well as others up to speak to each other while others stand around.,are shown of people riding over a mountain as well as women watching them and laughing afterwards.,are shown of people drinking coffee while holding up larger pants and showing off the weight they had lost.\n10290,anetv_ADy-2Y0jmXQ,17057,Many shots are shown of people drinking coffee while holding up larger pants and showing off the weight they had lost. More people,Many shots are shown of people drinking coffee while holding up larger pants and showing off the weight they had lost.,More people,gold,are shown in several different angles and shows various mechanics of the proper moves and it includes more shots of the video.,come over the screen and begin drinking and aiming with one another putting a piece of gear.,are seen walking around the room around with a camera while well closeup holding the weights.,are seen speaking to the camera while more products are shown as well as food being presented and a woman showing off her closet.\n10291,anetv_aSxSgymPOBw,7239,Someone is walking along a snowy sidewalk. A white dog,Someone is walking along a snowy sidewalk.,A white dog,gold,is seated in front of a car sitting on the platform.,has been pushed out of the carriage.,is crawling behind them; a dog watches him.,is on a leash in front of them.\n10292,anetv_aSxSgymPOBw,7240,A white dog is on a leash in front of them. They,A white dog is on a leash in front of them.,They,gold,stand up and walk along the walkway.,are a kit comments hanging on the ground.,cross the street to the other side.,dog runs inside the car.\n10293,anetv_aSxSgymPOBw,676,A person is walking down a snowy sidewalk. A white dog,A person is walking down a snowy sidewalk.,A white dog,gold,is sitting next to him.,is riding and chasing a frisbee toward the dog.,is seen walking on a leash in front of them.,is walking on the street next to a brown car.\n10294,anetv_aSxSgymPOBw,677,A white dog is seen walking on a leash in front of them. A van,A white dog is seen walking on a leash in front of them.,A van,gold,is seen on the side of the road.,stands alone in the background.,stands close behind them.,spread open on the pavement.\n10295,anetv_bi_xkH87Rnw,427,\"The gymnast almost falls, but catches herself. The gymnast\",\"The gymnast almost falls, but catches herself.\",The gymnast,gold,gets lifted from the floor and lifts her up.,throws the ball over her head in celebration.,jumps horizontal and down.,dismounts and lands on the blue mat.\n10296,anetv_bi_xkH87Rnw,425,The gyjmnast mounts the beam. The gymnast,The gyjmnast mounts the beam.,The gymnast,gold,performs her routine on the beam.,disappears down the beam.,uses a rope then dismounts and lands on the platform where people in the audience watches.,turns and does more back flips and lands on sand.\n10297,anetv_bi_xkH87Rnw,426,The gymnast performs her routine on the beam. The gymnast,The gymnast performs her routine on the beam.,The gymnast,gold,flips on the beam and dismounts.,lifts her head and the gymnast watches with interest.,dismounts in front and claps.,\"almost falls, but catches herself.\"\n10298,anetv_bi_xkH87Rnw,424,People watch a gymnast perform her routine. The gymnast,People watch a gymnast perform her routine.,The gymnast,gold,maneuvers a beam of her board into the air.,performs a group of cheerleader as she dismounts.,stands on the side of the balance beam.,completes her routine before doing gymnastics again.\n10299,anetv_MPolPBO-K-Y,11666,The man in black shirt is playing guitar in the studio. The man,The man in black shirt is playing guitar in the studio.,The man,gold,is talking on the phone.,is playing the drums with the red drum sticks.,is strumming the guitar.,is playing the guitar again.\n10300,lsmdc1001_Flight-71816,9376,A small congregation listens to a sermon in a cordoned off area. Someone,A small congregation listens to a sermon in a cordoned off area.,Someone,gold,wears a conference cap with a dainty modified hat as he leans towards his wife.,\"behind two women shot at a one, chained.\",\"pull into the stream of women, have a chained driver, which they all scattered throughout as someone stands by the pool.\",takes a pair of binoculars and watches a woman step out of a black suv.\n10301,anetv_lh8ths6sKAE,16511,A man is using a bucket of water and a mop inside a garage. He,A man is using a bucket of water and a mop inside a garage.,He,gold,moves the barrel over the mop while speaking to one another.,is wiping it back and forth along the floor.,takes the weight from his backpack.,holds a rocking chair and then spins them around the living room.\n10302,anetv_lh8ths6sKAE,4182,\"A person cleans the floor garage with a large mop. Then, the man\",A person cleans the floor garage with a large mop.,\"Then, the man\",gold,vacuums the floor with a sponge.,puts clothes in a bucket and holds up several pieces of cleaner.,drain the mop in a yellow bucket.,puts plaster down in a room and vacuums the ceiling.\n10303,anetv_lh8ths6sKAE,16512,He is wiping it back and forth along the floor. He,He is wiping it back and forth along the floor.,He,gold,cleans the floor with the mop over and over.,bends over and lifts the barbell up to his neck.,\"stands around, picks up a can, starts his disco.\",applies plaster to a wall.\n10304,lsmdc3032_HOW_DO_YOU_KNOW-2605,4520,Someone gives a relieved smile. He,Someone gives a relieved smile.,He,gold,stands in the icy doorway and looks at the new gentleman.,\"clicks her fingers, gives a resigned look, and nods.\",shakes someone's hand.,\"draws a cigarette, then returns to his scooter.\"\n10305,lsmdc3032_HOW_DO_YOU_KNOW-2605,4515,The baby's cap slides off. Someone gently,The baby's cap slides off.,Someone gently,gold,brushes back a rolled - up notebook on her bedroom bed.,pushes someone's hand out.,slips it back on.,\"swings the phone in his back pocket, then waves her over.\"\n10306,lsmdc3032_HOW_DO_YOU_KNOW-2605,4516,Someone gently slips it back on. Someone,Someone gently slips it back on.,Someone,gold,\"shifts his eyes to the water, then backs away.\",cues someone for a discreet exit.,wraps his arm around someone.,balances a tiny object.\n10307,lsmdc3032_HOW_DO_YOU_KNOW-2605,4518,\"Someone's gaze darkens as someone walks in with two presents. Behind him, a tall burly man\",Someone's gaze darkens as someone walks in with two presents.,\"Behind him, a tall burly man\",gold,\"surrounds a long, heavy breastplate.\",walks in with flowers.,with a wave of broad shoulders.,joins him on the ground with his arms folded.\n10308,lsmdc3032_HOW_DO_YOU_KNOW-2605,4519,\"Behind him, a tall burly man walks in with flowers. Someone\",\"Behind him, a tall burly man walks in with flowers.\",Someone,gold,shoves both products down with boots.,meets someone's thoughtful gaze as he jumps up.,wears a bean - shoulders dress.,gives a relieved smile.\n10309,lsmdc3032_HOW_DO_YOU_KNOW-2605,4517,Someone cues someone for a discreet exit. Someone's gaze,Someone cues someone for a discreet exit.,Someone's gaze,gold,is fixed on someone as he wriggles in and out of faces.,darkens as someone walks in with two presents.,travels along the hunter to someone's crotch.,move to the bombs flying in the sky.\n10310,lsmdc3032_HOW_DO_YOU_KNOW-2605,4521,\"He offers a blue present, then sets the pink one down too. Someone\",\"He offers a blue present, then sets the pink one down too.\",Someone,gold,stares blankly at the other boy and nods.,softens for a moment.,\"shoots at it, revealing a drawing on the wall.\",faces his son cautiously.\n10311,anetv_2vAaAy_WC7Y,6830,A woman is standing and talking in a kitchen and is wearing a pink apron with large white polka dots. There's nothing on the counter in front of her but when she snaps her fingers cooking supplies and dishes appear in front of her and she,A woman is standing and talking in a kitchen and is wearing a pink apron with large white polka dots.,There's nothing on the counter in front of her but when she snaps her fingers cooking supplies and dishes appear in front of her and she,gold,begins washing it and pulls it out.,walks on the pattern and begins to use it to form a wall of paper.,\"squirts something into hand, then scrubs all along the table then begins to pour some vinegar and honey mixture into a baking pot and\",begins to talk about and touch the objects as she goes along.\n10312,anetv_2vAaAy_WC7Y,4012,The woman the points to several items on the counter in front of her. the woman then,The woman the points to several items on the counter in front of her.,the woman then,gold,grabs a container from the dishes and dips it into the table.,begins mixing ingredients and baking.,grabs the liquor bottle and adds food into it.,places ingredients on the women's cake.\n10313,anetv_wkJWeSw8FSE,16082,A man stands lighting a stick with campers in the background and a fire blazing. He sticks the cone into the fire and the end of the stick,A man stands lighting a stick with campers in the background and a fire blazing.,He sticks the cone into the fire and the end of the stick,gold,lays to the floor.,begins to catch fire.,is fired up from under his brown coat.,moves under the lit end of a everywhere.\n10314,lsmdc3015_CHARLIE_ST_CLOUD-1018,18207,\"Turning, someone finds someone behind him. He\",\"Turning, someone finds someone behind him.\",He,gold,looks back in someone's direction.,\"shuts the doors, then slams the mailbox into something clear.\",clicks back and his fingers move in.,viciously tattooed on his stomach then collapses.\n10315,lsmdc3015_CHARLIE_ST_CLOUD-1018,18208,He looks back in someone's direction. He,He looks back in someone's direction.,He,gold,bends and reaches into his t - shirt.,puts the keys in his bag.,finds his brother gone.,is checking for a sporting.\n10316,anetv_--mFXNrRZ5E,10026,Two men are dressed in fencing gear. They,Two men are dressed in fencing gear.,They,gold,are demonstrating various dance moves.,demonstrate martial arts martial arts.,are battling on a court with their swords.,are pulling a spear against a wall.\n10317,anetv_--mFXNrRZ5E,10028,Green lines occasionally indicate the moves they are making. They,Green lines occasionally indicate the moves they are making.,They,gold,change their positions as the one powerful ball shoots goes out of bounds.,sit on the dough as he faces the camera with a cream mustache.,is leaning to a brown table and rise as peacock pink bunny leaves hang from behind.,stab at each other with the swords and jump about the stage.\n10318,anetv_--mFXNrRZ5E,10027,They are battling on a court with their swords. Green lines occasionally,They are battling on a court with their swords.,Green lines occasionally,gold,cut in the gloom.,get on the floor in a competition.,indicate the moves they are making.,fencing in each other's hands.\n10319,lsmdc0019_Pulp_Fiction-56907,8866,\"This makes the boxer laugh out loud. As he laughs, he\",This makes the boxer laugh out loud.,\"As he laughs, he\",gold,tries the heimlich maneuver.,can easily uncoils his hands and kick him away with the punching bag.,flips a tape in the cassette player.,picks up his cane and goes for another.\n10320,anetv_hPV-Z73KXak,11678,A man plays drums while doing tricks with the drumsticks. The man,A man plays drums while doing tricks with the drumsticks.,The man,gold,speaks down while the boy dances and show other people off the stage.,stops playing and talks to the camera while making occasional gestures with the drumsticks to illustrate points.,starts to play guitar while other people behind him reacting.,is all badminton to him playing the instrument.\n10321,anetv_hPV-Z73KXak,11679,The man stops playing and talks to the camera while making occasional gestures with the drumsticks to illustrate points. The man,The man stops playing and talks to the camera while making occasional gestures with the drumsticks to illustrate points.,The man,gold,\"is playing drums and kick, slips back onto the screen.\",stops playing and looks around.,speaks to the messenger again and more people walk into the house and join the pool.,plays the drums again while performing tricks with the drumsticks.\n10322,anetv_hPV-Z73KXak,3514,A close up of a drum is shown followed by a person hitting it and leading into a man sitting behind a drum kit. The man,A close up of a drum is shown followed by a person hitting it and leading into a man sitting behind a drum kit.,The man,gold,plays the drums while pausing to speak to the camera and leading into more shots of him playing the drums.,continues to play while pausing to hit the tennis ball against a wall and continues to speak while throwing it back and fourth.,continues playing while laying on the instrument and smiles to the camera while still pointing and holding the microphone.,then begins playing the guitar back and fourth while the camera zooms in.\n10323,anetv_hPV-Z73KXak,11676,The camera zooms out from a close up view of a gong. An individual,The camera zooms out from a close up view of a gong.,An individual,gold,touches the individual through a mop machine.,strikes the gong with a mallet.,walks from a large dog inside a building.,is put aside while vacuums to create ramshackle align's wooden carpet.\n10324,anetv_hPV-Z73KXak,11677,An individual strikes the gong with a mallet. A man,An individual strikes the gong with a mallet.,A man,gold,adds the score to a glass.,pushes a stick out and leaps over his shoulder four times.,plays drums while doing tricks with the drumsticks.,makes the serve and throws the ball to a paintball net before the goalie gets shot.\n10325,anetv_j73Ks4r5tbg,1540,A girl with blonde hair and red nails sits in a chair in bedroom and talks to the camera while smoking and showing off a bottle of blue nailpolish. The girl,A girl with blonde hair and red nails sits in a chair in bedroom and talks to the camera while smoking and showing off a bottle of blue nailpolish.,The girl,gold,throws some paint onto the wall and grabs the girl.,starts knitting as she continues in the building then however curler combs her hair straight and blows her hair down.,describes the ballet moves continually nearly shows how she going properly.,rolls away from the camera in the chair to get a bottle of blue nail polish and hold it up to the screen.\n10326,anetv_j73Ks4r5tbg,1542,\"The girl then begins to smoke a cigarette in front of the camera while talking. The girl, finally,\",The girl then begins to smoke a cigarette in front of the camera while talking.,\"The girl, finally,\",gold,gets to her feet and continues talking about the rum case in the passenger car.,laughs and the girl continues to smile to herself.,takes one long inhale and leans in to exhale into the camera before falling back.,continues braiding her hair and giving off decay in the end.\n10327,anetv_j73Ks4r5tbg,1541,The girl rolls away from the camera in the chair to get a bottle of blue nail polish and hold it up to the screen. The girl then,The girl rolls away from the camera in the chair to get a bottle of blue nail polish and hold it up to the screen.,The girl then,gold,goes clean the sides of the shoe and starts to rub shampoo on the shoe.,begins to smoke a cigarette in front of the camera while talking.,begins drying the dog fur and blowing the dog's paper across its trash.,takes a sponge and begins taking up her makeup and putting lipstick on the stage.\n10328,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94398,1730,She turns back to someone. Someone,She turns back to someone.,Someone,gold,carries the popcorn from someone's security hall.,begins to trot into a sitting position.,\"looks sideways and sees the boy sitting on a black, deep oar.\",holds up the open locket.\n10329,anetv_osLHgm_yuMc,1833,A man falls into a large puddle of mud. A man falls down and another man,A man falls into a large puddle of mud.,A man falls down and another man,gold,runs up to check on him.,collapses in the back of the court.,stands at the end of the street near the man.,attempts to jump up and falls.\n10330,anetv_osLHgm_yuMc,1832,People are running around playing paintball. A man,People are running around playing paintball.,A man,gold,is kicking up paint cards to a camera.,falls into a large puddle of mud.,is doing stunts across a field.,\"is on a field with a javelin over his own neck, playing the game while people around him keep the ball.\"\n10331,anetv_CHkT4As5jZI,7989,He grabs a glass and puts ice in the glass. He then,He grabs a glass and puts ice in the glass.,He then,gold,holds up a piece of lime and puts the straw in the rotating rod.,puts various lime juice into a measurer and then finishes bowling.,mixes vodka and soda together in the glass.,knocks the glass over the glass and slices it repeatedly with his hand.\n10332,anetv_CHkT4As5jZI,7988,A bartender talks about how to make a proper cocktail. He,A bartender talks about how to make a proper cocktail.,He,gold,s shown in combat.,begins to make it very easy.,spits the tequila shots.,grabs a glass and puts ice in the glass.\n10333,anetv_CHkT4As5jZI,7990,He then mixes vodka and soda together in the glass. He,He then mixes vodka and soda together in the glass.,He,gold,lowers himself into the glass and speaks.,grabs a lemon and puts it in the glass to finish.,stirs the whiskey on it and makes another shot into another glass.,pours liquid into the glass on the back of the glass.\n10334,anetv_GUbKGqYKj7U,16513,There are a lot of people at a park and some are playing while others are just watching. A man and a woman,There are a lot of people at a park and some are playing while others are just watching.,A man and a woman,gold,are then run outside.,are standing at the entrance of the playing field and getting ready to play.,are skateboarding through the streets of the street.,are seated on a bench covered at a paper reception while the man in the room just stares at them.\n10335,anetv_GUbKGqYKj7U,16515,\"When the ball rolls towards them, the man kicks it and runs while other players try and get into motion for the play. Another man runs towards the home base and dives onto the dirt to touch the base they are protecting and another man\",\"When the ball rolls towards them, the man kicks it and runs while other players try and get into motion for the play.\",Another man runs towards the home base and dives onto the dirt to touch the base they are protecting and another man,gold,is trying to catch the ball to get the man out.,\"gives him a stick, pounding his legs and pushing him back.\",comes across the field and chases to the boys.,dressed in black serves it on.\n10336,anetv_GUbKGqYKj7U,16514,\"A man and a woman are standing at the entrance of the playing field and getting ready to play. When the ball rolls towards them, the man kicks it and runs while other players\",A man and a woman are standing at the entrance of the playing field and getting ready to play.,\"When the ball rolls towards them, the man kicks it and runs while other players\",gold,are chasing them and stumbles back into the pit.,are standing around him.,try and get into motion for the play.,ride behind him grabbing the large ball and smiling.\n10337,anetv_GUbKGqYKj7U,16516,\"Another man runs towards the home base and dives onto the dirt to touch the base they are protecting and another man is trying to catch the ball to get the man out. The man attempts to catch the ball, misses it, falls on the ground to catch it, throws it at the head of the man who is already on the base and they all laugh and the team who just scored\",Another man runs towards the home base and dives onto the dirt to touch the base they are protecting and another man is trying to catch the ball to get the man out.,\"The man attempts to catch the ball, misses it, falls on the ground to catch it, throws it at the head of the man who is already on the base and they all laugh and the team who just scored\",gold,is shown again lifting his hands several times and with another attempt.,catch the ball and miss a goal.,give one another high fives.,and is left to take the photos and five other people land on the field.\n10338,anetv_STgbw-zqZJM,871,A leaf blower machine blows a large pile of leaves around a parking lot. The machine,A leaf blower machine blows a large pile of leaves around a parking lot.,The machine,gold,continues moving through the lot and flowing the leaves into a large pile.,is put to a stop on the bottom of the stairs.,is placed in a bucket to blow the leaves away.,moves along a few.\n10339,anetv_QvBG_Da97h8,16826,A graphic introduces the hand car wash video. The car,A graphic introduces the hand car wash video.,The car,gold,on home is sped up.,is washed first gently with soap.,zooms into a school as a third class clamors and falling.,dumps the bicycle on the floor while many watch the video.\n10340,anetv_ekn9AFX2XX8,8455,A woman sits by the beach applying sunscreen to the top of her back. An air balloon,A woman sits by the beach applying sunscreen to the top of her back.,An air balloon,gold,flies through the air.,reflects black balloons in the sky.,comes up on a altitude.,walks while talking someone who is seen skiing down.\n10341,anetv_ekn9AFX2XX8,8457,A woman walks her suitcase. Some graphic cars,A woman walks her suitcase.,Some graphic cars,gold,explode down the street as a man stands from his car riding a multi colored street.,are driving on a highway with video pictures in scuba.,crash into each other.,come out through the open open door.\n10342,anetv_ekn9AFX2XX8,8456,An air balloon flies through the air. A dj,An air balloon flies through the air.,A dj,gold,trails from the clouds.,is rising from a swimming pool.,watches tv on the back of the ship.,is seen spinning a disc.\n10343,lsmdc1055_Marley_and_me-96631,4118,He turns to someone and smiles. She,He turns to someone and smiles.,She,gold,\"moves closer, almost following someone through the window.\",whispers in her ear.,glances up as she bursts into view.,slumps against a door frame in relief.\n10344,lsmdc1055_Marley_and_me-96631,4115,Someone puts an arm around him. He,Someone puts an arm around him.,He,gold,shows him a postcard - flight.,\"smiles, steers to someone's, then leads someone away.\",grabs his arm and holds them on.,stares at the scrapbook of pasted - in columns.\n10345,lsmdc1055_Marley_and_me-96631,4114,\"Resting his cheek on his right hand, someone does n't look at her and examines his other hand, distractedly. Someone\",\"Resting his cheek on his right hand, someone does n't look at her and examines his other hand, distractedly.\",Someone,gold,puts an arm around him.,'s more to press on in his office.,\"holds her lips together, kisses her, and steps into each leading prayer.\",\"turns to someone, and someone's eyes glisten.\"\n10346,lsmdc1055_Marley_and_me-96631,4116,He stares at the scrapbook of pasted - in columns. Morning sun,He stares at the scrapbook of pasted - in columns.,Morning sun,gold,shines through the glass walls at night.,lies on a muddy grass covered by ash.,drifts in toward the sky as someone chases a rose.,shines on the big stone house.\n10347,lsmdc1055_Marley_and_me-96631,4117,Morning sun shines on the big stone house. He,Morning sun shines on the big stone house.,He,gold,turns to someone and smiles.,picks it up on a tv screen.,watches from the sidewalk in front of a lake.,\"streams across it, framed by the moon of a beacon light from the woods.\"\n10348,lsmdc3045_LAND_OF_THE_LOST-21298,12966,\"She pulls one of the eggs from the mound and clear goo drips from its bottom. As she examines the egg, the someone's hologram\",She pulls one of the eggs from the mound and clear goo drips from its bottom.,\"As she examines the egg, the someone's hologram\",gold,appear on the screen.,turn the monitor on someone.,pops up behind her.,removes the tv's clock.\n10349,lsmdc3045_LAND_OF_THE_LOST-21298,12965,She notices a group of softball - sized eggs on a brown steaming mound. She,She notices a group of softball - sized eggs on a brown steaming mound.,She,gold,rounds a corner down the slide.,pulls one of the eggs from the mound and clear goo drips from its bottom.,swims to the cabinet and pulls out a packet of manuscript cards.,flips along a pedestal.\n10350,lsmdc3045_LAND_OF_THE_LOST-21298,12964,\"Meanwhile, someone steps across the spongy cavern floor. She\",\"Meanwhile, someone steps across the spongy cavern floor.\",She,gold,notices a group of softball - sized eggs on a brown steaming mound.,\"spots a player reaching someone, their hands clasped behind their shoulders as they travel from view falls in the air.\",watches suspiciously as he vaults the door.,rolls a paper tray onto the table.\n10351,anetv_6KXVjADefBY,2631,\"A person vacuum dirt from a couch with a hand vacuum with a brush nozzle. Then, the person vacuum the crevasses of the couch using a crevasse noodle Then, the person\",A person vacuum dirt from a couch with a hand vacuum with a brush nozzle.,\"Then, the person vacuum the crevasses of the couch using a crevasse noodle Then, the person\",gold,puts the vacuum in a bucket.,add a feathery tissue to the carpet.,uses a handle held vacuum to clean the top of the couch and the floor.,sprays down the rug without wiping it.\n10352,lsmdc1056_Rambo-97007,2259,\"In the rain - soaked darkness, a figurine silhouette holds an umbrella and stands in the half - light. The figure\",\"In the rain - soaked darkness, a figurine silhouette holds an umbrella and stands in the half - light.\",The figure,gold,lowers the brolly and walks towards him.,\"runs up the hill, and switches to the torchlight.\",sits at a typewriter.,is lost in gold rings.\n10353,anetv__gJFrtUQDLw,15103,An image is shown of an album cover that leads into a young man playing a harmonica slowly. The man,An image is shown of an album cover that leads into a young man playing a harmonica slowly.,The man,gold,rocks back and fourth to the song and interments between pictures of a band and himself playing.,continues speaking to the camera and continues playing and laying down on a table while the camera and his movements.,continues playing to the camera and holds onto a instrument and continues playing his harmonica.,pauses and holds the fish out of his mouth then continues to play the harmonica.\n10354,lsmdc1005_Signs-5083,13923,\"Someone lies back, his breathing returning to normal. Someone\",\"Someone lies back, his breathing returning to normal.\",Someone,gold,struggles back against the door and belches to his feet.,stops for a moment.,gets to her feet.,\"stares across at them, blinking rapidly.\"\n10355,lsmdc1005_Signs-5083,13922,Someone relaxes his grip on his father's jeans. Someone,Someone relaxes his grip on his father's jeans.,Someone,gold,pulls off his jacket and goes to her seat.,turns and sees the blood slide against someone's nose.,goes to the box.,\"lies back, his breathing returning to normal.\"\n10356,lsmdc3088_WHATS_YOUR_NUMBER-42429,12415,\"He plants his lips tenderly on hers. Looking on, her mother\",He plants his lips tenderly on hers.,\"Looking on, her mother\",gold,\"removes someone's sketchbook and steps over to her uncle, who crosses to retrieve it.\",\"picks at her computer, takes a different page from her eyes, hurries back and takes a seat in the dell.\",gives an approving wink and nod.,\"steps out, standing from her touch, then lifts a hand to her nose.\"\n10357,lsmdc3088_WHATS_YOUR_NUMBER-42429,12417,\"Leaving someone, someone follows him across the dance floor. The wedding planner\",\"Leaving someone, someone follows him across the dance floor.\",The wedding planner,gold,stands by the high sink.,uppermost a large mattress.,reaches the stage and gestures furiously at the band.,stands upright then hovers to her behind.\n10358,lsmdc3088_WHATS_YOUR_NUMBER-42429,12416,\"Looking on, her mother gives an approving wink and nod. He\",\"Looking on, her mother gives an approving wink and nod.\",He,gold,leads her from the dance floor.,kisses someone's cheek and faces him playfully.,\"shakes her head and leans wearily forward, stepping away from the doorway.\",holds it back to the dresser.\n10359,lsmdc1009_Spider-Man3-76143,1739,\"Someone opens his fist and looks down at the ring nestled in his palm, then turns and runs as someone swoops down. He\",\"Someone opens his fist and looks down at the ring nestled in his palm, then turns and runs as someone swoops down.\",He,gold,runs across the vault and it arrives at the three - man.,hobbles around on the building's roof!,\", someone hurries into the room, shining a mirror in the light.\",\"zooms down after someone, who swings into a narrow gap between the tall buildings, propelling himself along from thread to thread.\"\n10360,lsmdc1009_Spider-Man3-76143,1748,\"Someone swings backwards, shooting webbing at the bombs and disabling them. Someone\",\"Someone swings backwards, shooting webbing at the bombs and disabling them.\",Someone,gold,can't stop eating.,\"flies through the explosion, shielding his eyes.\",continues oblivious as the motorboat move around the other.,cobbled hued the deserted killer!\n10361,lsmdc1009_Spider-Man3-76143,1721,\"A marked figure, in dark green, swoops down on a hoverboard and carries him up on the rooftops. The masked attacker\",\"A marked figure, in dark green, swoops down on a hoverboard and carries him up on the rooftops.\",The masked attacker,gold,headbutts someone and clamps a hand across his mouth.,loses the cloak and the shield blasts him with his shield.,perform broad - round logs and smash surprised over the downed railcar.,emerges with a powerful sword through someone's long cape and drags someone to a turret.\n10362,lsmdc1009_Spider-Man3-76143,1736,\"Someone throws someone off the Sky Stick and fires a couple of web threads, using them to catapult himself down after the falling ring. The Sky Stick\",\"Someone throws someone off the Sky Stick and fires a couple of web threads, using them to catapult himself down after the falling ring.\",The Sky Stick,gold,cowers in the darkness below as someone covers his nose.,gapes banker onto the street.,automatically zooms down to collect the falling someone.,ripple as they lob the tiny scape into the carriages.\n10363,lsmdc1009_Spider-Man3-76143,1738,\"Someone swings down and is just grabbing the ring when someone strikes him again, sending him sprawling onto a rooftop. Someone\",\"Someone swings down and is just grabbing the ring when someone strikes him again, sending him sprawling onto a rooftop.\",Someone,gold,lowers his helmet and opens his eyes and he steps quickly into it.,\"opens his fist and looks down at the ring nestled in his palm, then turns and runs as someone swoops down.\",\"clambers out of the loft, but the little boy in the yellow shorts takes the bag.\",\"breathes into the smoke and raises his head high above lights, as as flames reaches the door.\"\n10364,lsmdc1009_Spider-Man3-76143,1734,He grabs him from behind. Both men,He grabs him from behind.,Both men,gold,fight on the one.,spin quickly around her.,\"balance on the narrow, sweeping hoverboard, the sky stick, as they fight.\",raise his hands in kneecap.\n10365,lsmdc1009_Spider-Man3-76143,1729,\"Someone prices out the section of wall someone is clinging to. Someone hangs on as it plummets towards the street below, but someone\",Someone prices out the section of wall someone is clinging to.,\"Someone hangs on as it plummets towards the street below, but someone\",gold,\"tumbles out of the windshield, spraying his car.\",\"swoops down after him, smashing the chunk of wall into fragments.\",sways and accidentally taps someone's crotch.,races after it as the main u - boat escape on top of the running mushroom.\n10366,lsmdc1009_Spider-Man3-76143,1735,\"Both men balance on the narrow, sweeping hoverboard, the Sky Stick, as they fight. Someone\",\"Both men balance on the narrow, sweeping hoverboard, the Sky Stick, as they fight.\",Someone,gold,troopers pull up to pull up ahead.,goes even as the light chases through the trees and it bursts dust at falls.,stumble and leaps handfuls of webs like horns.,\"throws someone off the sky stick and fires a couple of web threads, using them to catapult himself down after the falling ring.\"\n10367,lsmdc1009_Spider-Man3-76143,1719,She takes off her ring. Someone,She takes off her ring.,Someone,gold,\"takes the ring and gazes gratefully at his aunt, who smiles back at him, warmly.\",watches someone go out and turns back to someone.,\"tries to unlock her own door, then grabs someone's hand.\",smiles sweetly at him.\n10368,lsmdc1009_Spider-Man3-76143,1759,Someone sprints across waste ground with armed officers running behind him. He,Someone sprints across waste ground with armed officers running behind him.,He,gold,\"pick up the cross man headdress and scoot away, mother stares at him then smiles fondly.\",is unable down thrust as he tries to pull on the small revolver in his hand.,goes to someone's door and zips it open.,wrestles the dog off and punches it away.\n10369,lsmdc1009_Spider-Man3-76143,1767,\"Tiny granules of high velocity sand fly into his pores and shatter into fragments, fusing with his own molecules, giving his internal structure a sand - like appearance. Someone's hand becomes sand and his fingers\",\"Tiny granules of high velocity sand fly into his pores and shatter into fragments, fusing with his own molecules, giving his internal structure a sand - like appearance.\",Someone's hand becomes sand and his fingers,gold,\"clapped over the strings, rather and feigning shaved.\",blow away in a fierce wind.,crest over the elderly features of the wings.,\"swinging away from the terra's two nails, returning the clock.\"\n10370,lsmdc1009_Spider-Man3-76143,1727,\"Stuck in the wall, someone looks up in a daze, as the figure in dark green hovers down towards him and slides his visor back. Someone\",\"Stuck in the wall, someone looks up in a daze, as the figure in dark green hovers down towards him and slides his visor back.\",Someone,gold,dodges a huge punch.,returns her attention to someone who squats at a frame.,sits on the sofa and takes a arms next to him.,twists her from under the patient.\n10371,lsmdc1009_Spider-Man3-76143,1749,\"He hits the line of thread stretched out in front of him and bounces off a pipe and a wall, tumbling towards an alleyway below. Someone, his eyes widening with alarm,\",\"He hits the line of thread stretched out in front of him and bounces off a pipe and a wall, tumbling towards an alleyway below.\",\"Someone, his eyes widening with alarm,\",gold,walks into a corner and looks up to see someone who holds his wand up to his face.,walks into the lobby.,walks back the string - drawn.,swings down towards him.\n10372,lsmdc1009_Spider-Man3-76143,1750,\"Someone, his eyes widening with alarm, swings down towards him. Someone\",\"Someone, his eyes widening with alarm, swings down towards him.\",Someone,gold,puts a hand around his wrist.,lies motionless on the ground.,speeds off of the climbing.,\"knocks the janitor through, knocking him over.\"\n10373,lsmdc1009_Spider-Man3-76143,1755,He listens again for signs of life. He,He listens again for signs of life.,He,gold,notices a camera approaching.,carries his friend to an emergency room.,\"passes it to the elderly, chinese man.\",snatches the energy from an animal.\n10374,lsmdc1009_Spider-Man3-76143,1768,Someone's hand becomes sand and his fingers blow away in a fierce wind. His entire body,Someone's hand becomes sand and his fingers blow away in a fierce wind.,His entire body,gold,\"turned, its nostrils gone.\",drops like a bat and he turns to look at someone in awe.,seems even to tight.,turns to sand and is eaten away by the wind until he completely disintegrates.\n10375,lsmdc1009_Spider-Man3-76143,1720,\"He leans forward, and they hug, holding each other in a warm embrace. A marked figure, in dark green,\",\"He leans forward, and they hug, holding each other in a warm embrace.\",\"A marked figure, in dark green,\",gold,swoops down on a hoverboard and carries him up on the rooftops.,knocks the leaf - haired man down a beach.,stands at a chainsaw on the door handle.,\"lurches towards the tower, rushing past him at the end of the street.\"\n10376,lsmdc1009_Spider-Man3-76143,1732,\"As someone floats out of the other shattered window, he sees someone's ring spinning through the air in front of him. He then\",\"As someone floats out of the other shattered window, he sees someone's ring spinning through the air in front of him.\",He then,gold,tries to yank it on but pulls back down again.,lets himself across the cliff to the window and turns to the mast.,lets go of his wings and takes his form in his bow.,tries to snatch at it.\n10377,lsmdc1009_Spider-Man3-76143,1726,\"Someone falls, and his dark green mystery attacker smashes him into a wall high above the ground. Stuck in the wall, someone\",\"Someone falls, and his dark green mystery attacker smashes him into a wall high above the ground.\",\"Stuck in the wall, someone\",gold,\"swings from the truck, incinerating the bearded man who charges someone.\",\"looks up in a daze, as the figure in dark green hovers down towards him and slides his visor back.\",falls over onto the troll's back and grinds a yellow sparking in some type of metal.,beats it out of his.\n10378,lsmdc1009_Spider-Man3-76143,1744,They slash at someone who desperately tries to swing out of their way. He,They slash at someone who desperately tries to swing out of their way.,He,gold,choose some of his old supporters.,becomes the impact of the paddy with a web.,sends several traverses back into the fridge.,\"jumps off a pipe and swings back the way he came, just missing someone.\"\n10379,lsmdc1009_Spider-Man3-76143,1745,\"He jumps off a pipe and swings back the way he came, just missing someone. The winged bombs\",\"He jumps off a pipe and swings back the way he came, just missing someone.\",The winged bombs,gold,the gunpowder into the ceiling.,surge after people gets caught in the swarm.,dramatically trampled the attacking foam.,leap into the air around a corner then waves toward them and the kids start to follow him.\n10380,lsmdc1009_Spider-Man3-76143,1753,Someone crouches down and holds his ear to someone's mouth. He,Someone crouches down and holds his ear to someone's mouth.,He,gold,gazes at it with wide eyes.,licks her lips then scrolls back with his right hand.,yanks open someone's dark green jacket and starts pumping his chest.,\"guides him, leads him into a long, monstrous chamber.\"\n10381,lsmdc1009_Spider-Man3-76143,1760,Someone runs on and suddenly falls into a huge pit. Someone,Someone runs on and suddenly falls into a huge pit.,Someone,gold,\"throws his arms around him, encouraging the mechanical giant stick onto his board.\",tumbles down a concrete wall and lands heavily on a pile of sand in the bottom of the pit.,swings and spins inside the arena.,swims over to the water's edge.\n10382,lsmdc1009_Spider-Man3-76143,1765,They kick up a sandstorm with someone trapped in the middle. He tries to run off but one of the capacitors,They kick up a sandstorm with someone trapped in the middle.,He tries to run off but one of the capacitors,gold,\"hits him, throwing him back onto the sand.\",gets on his knees as the more legs begin to drop from one foot.,reaches of someone's tank and knocked it away.,smashes a hole into the wood wall one.\n10383,lsmdc1009_Spider-Man3-76143,1763,\"He is caught in a dazzling beam of light. Above the pit, three glowing capacitors\",He is caught in a dazzling beam of light.,\"Above the pit, three glowing capacitors\",gold,\"appear from smoke to one of them, realizing what was happening.\",begin to rotate like a merry - go - round.,bear the current and the flashlight - left of someone's hand trails off the train.,soar over the village where several turkish soldiers search the structure of battle.\n10384,lsmdc1009_Spider-Man3-76143,1751,Someone lies motionless on the ground. He,Someone lies motionless on the ground.,He,gold,hurries over to his unconscious old friend.,holds the receiver against someone's neck.,\"stares at his chest, trying to keep his strength.\",\"picks up her phone and watches the tv, then stuffs her back before the bed.\"\n10385,lsmdc1009_Spider-Man3-76143,1757,\"A detective hands a file to tall, thin faced someone. A police dog handler\",\"A detective hands a file to tall, thin faced someone.\",A police dog handler,gold,blows a whistle and points.,approaches someone at their desks.,approaches a car in the middle of an ancient garage parking lot.,rubs his neck and faces him in a dried suit.\n10386,lsmdc1009_Spider-Man3-76143,1733,He then tries to snatch at it. He,He then tries to snatch at it.,He,gold,grabs him from behind.,leads the camels past quickly.,walks away and goes to someone.,begins to cut the man's hair.\n10387,lsmdc1009_Spider-Man3-76143,1754,He yanks open someone's dark green jacket and starts pumping his chest. He,He yanks open someone's dark green jacket and starts pumping his chest.,He,gold,stops running and raises his hands in the air and then takes control.,rakes it off the building's floor and jumps up to the ladder.,listens again for signs of life.,\"turns back to someone, who grabs the lock.\"\n10388,lsmdc1009_Spider-Man3-76143,1770,The cops arrive at the edge of the pit and look down to find the capacitors slowing down and someone nowhere to be seen. Someone,The cops arrive at the edge of the pit and look down to find the capacitors slowing down and someone nowhere to be seen.,Someone,gold,comes away from him and grabs a snake.,steps up to the railing and puts a free hand on her shoulder again.,\"sits alone in a hospital corridor, staring blankly at the paper cup in his hand.\",joins his feet on the door frame and heads to their cottage.\n10389,lsmdc1009_Spider-Man3-76143,1740,\"Someone turns the Sky Stick side on so he can fly along the narrow gap, dodging fire escapes and air con units as he air boards after someone. Someone\",\"Someone turns the Sky Stick side on so he can fly along the narrow gap, dodging fire escapes and air con units as he air boards after someone.\",Someone,gold,hits the plane to the ground.,slows to a stop at the bottom of the platform.,\"pulls a glowing green sword from a scabbard on his back and slashes wildly at someone, who swerves out of the way.\",finds a wealthy man and starts holding a banana.\n10390,lsmdc1009_Spider-Man3-76143,1723,\"Swinging from the thread, he shoots webbing balls. He\",\"Swinging from the thread, he shoots webbing balls.\",He,gold,ducks to avoid them.,flips herself back to the camera.,shoots and hits the moon.,hits the big character again.\n10391,lsmdc1009_Spider-Man3-76143,1756,Someone watches through a window as a crash team try to revive someone. A detective,Someone watches through a window as a crash team try to revive someone.,A detective,gold,\"hands a file to tall, thin faced someone.\",- someone glares and gaze at him through a window.,throws an arrow into the track.,pushes a basket with someone's hands.\n10392,lsmdc1009_Spider-Man3-76143,1758,A police dog handler blows a whistle and points. Someone,A police dog handler blows a whistle and points.,Someone,gold,somersaults into a flatcar sending away pieces of a documentary of some mercenaries.,scrambles aboard it accompanied by his friends.,sprints across waste ground with armed officers running behind him.,arrives one last time.\n10393,lsmdc1009_Spider-Man3-76143,1761,\"Someone tumbles down a concrete wall and lands heavily on a pile of sand in the bottom of the pit. Slowly, he\",Someone tumbles down a concrete wall and lands heavily on a pile of sand in the bottom of the pit.,\"Slowly, he\",gold,\"bounds over, taking his gun from someone's hand, making his run to stay his way.\",hauls himself to his feet and looks desperately from side to side.,turns to a stop and watches someone mirthfully rub his dirty hands with a clean cream automaton.,scrambles to the far end of the pit.\n10394,lsmdc1009_Spider-Man3-76143,1769,His entire body turns to sand and is eaten away by the wind until he completely disintegrates. The cops,His entire body turns to sand and is eaten away by the wind until he completely disintegrates.,The cops,gold,turn up the road.,sets down his gun.,arrive at the edge of the pit and look down to find the capacitors slowing down and someone nowhere to be seen.,stand outside watching the jury.\n10395,lsmdc1009_Spider-Man3-76143,1766,\"He tries to run off but one of the capacitors hits him, throwing him back onto the sand. The air\",\"He tries to run off but one of the capacitors hits him, throwing him back onto the sand.\",The air,gold,balloon sails in the air.,seems knocked off his feet by a single punch.,simulating porter steps stiffly around him.,\"is thick with sand as he gets to his feet, trying to shield his face.\"\n10396,lsmdc1009_Spider-Man3-76143,1725,\"He slices through someone's thread. Someone falls, and his dark green mystery attacker\",He slices through someone's thread.,\"Someone falls, and his dark green mystery attacker\",gold,smashes him into a wall high above the ground.,jumped on his side from his chair.,covers the blonde's shoulder.,kills someone sending flames out of someone's leg.\n10397,lsmdc1009_Spider-Man3-76143,1771,\"Someone sits alone in a hospital corridor, staring blankly at the paper cup in his hand. He\",\"Someone sits alone in a hospital corridor, staring blankly at the paper cup in his hand.\",He,gold,takes up the page from one of the boys.,\"shows his old friend expands, which makes only three streams of his bottom.\",\"moves off onto the train, landing on the ground and is only by someone.\",looks up and hurriedly stands as a doctor approaches.\n10398,lsmdc1009_Spider-Man3-76143,1752,He hurries over to his unconscious old friend. Someone,He hurries over to his unconscious old friend.,Someone,gold,takes off his fur coat.,\"locks eyes with a woman in a nearby sink, facing her.\",hands her back despairingly.,crouches down and holds his ear to someone's mouth.\n10399,lsmdc1009_Spider-Man3-76143,1718,\"Someone looks down, her eyes glistening with tears, and sweeps back a lock of her white hair. She\",\"Someone looks down, her eyes glistening with tears, and sweeps back a lock of her white hair.\",She,gold,takes off her ring.,closes his eyes in frustration and see someone react.,gently strokes her hair.,\"whips her arm from behind her back, then throws her head back.\"\n10400,lsmdc1009_Spider-Man3-76143,1728,Someone dodges a huge punch. Someone,Someone dodges a huge punch.,Someone,gold,\"whispers to someone, still glaring at someone.\",prices out the section of wall someone is clinging to.,is dead into the crowd.,pounds for him and a bench collapses in front on the chested man.\n10401,lsmdc1009_Spider-Man3-76143,1747,One of them embeds its wing in his shoulder. He,One of them embeds its wing in his shoulder.,He,gold,turns to the pairs of pristine large windows containing the sub - operations.,merge onto its rim and peer out a hill.,lands on the grass.,\"yanks it out, zooms upwards into the air, and swoops on after someone.\"\n10402,lsmdc1009_Spider-Man3-76143,1746,The winged bombs surge after people gets caught in the swarm. One of them,The winged bombs surge after people gets caught in the swarm.,One of them,gold,sets off course between gear.,jumps her facing onto a kayak.,takes this as much as possible.,embeds its wing in his shoulder.\n10403,lsmdc1009_Spider-Man3-76143,1762,\"Slowly, he hauls himself to his feet and looks desperately from side to side. He\",\"Slowly, he hauls himself to his feet and looks desperately from side to side.\",He,gold,is caught in a dazzling beam of light.,flashes aside to sneaker the new roof wall fence.,begins to struggle something to his father when a crack of gryffindor opens wooden door.,lands atop the starboard landing on the lower deck with the open rope.\n10404,lsmdc1009_Spider-Man3-76143,1731,\"Someone grabs him, dragging and thumping him against the high walls as he flies, then hurling him through a corner of his window. As someone floats out of the other shattered window, he\",\"Someone grabs him, dragging and thumping him against the high walls as he flies, then hurling him through a corner of his window.\",\"As someone floats out of the other shattered window, he\",gold,sees someone's ring spinning through the air in front of him.,pretends to be trained on the golden snitch.,finds someone staring in through the night shut archway now being noticed by the window.,sees the lift floating through the air.\n10405,lsmdc1009_Spider-Man3-76143,1737,The Sky Stick automatically zooms down to collect the falling someone. Someone,The Sky Stick automatically zooms down to collect the falling someone.,Someone,gold,snaps and races across the beach off the highway.,hops back and stands in a clearing.,has drawn a needle on someone.,\"swings down and is just grabbing the ring when someone strikes him again, sending him sprawling onto a rooftop.\"\n10406,lsmdc1009_Spider-Man3-76143,1730,\"Someone hangs on as it plummets towards the street below, but someone swoops down after him, smashing the chunk of wall into fragments. Someone swings away on a thread, but someone\",\"Someone hangs on as it plummets towards the street below, but someone swoops down after him, smashing the chunk of wall into fragments.\",\"Someone swings away on a thread, but someone\",gold,helps him free the right hook into the basket.,\"takes a seat next to someone, who keeps pulling him.\",tugs the grass away with his hand.,\"flies at him, thumping him into the air like a ball on elastic.\"\n10407,lsmdc1009_Spider-Man3-76143,1741,\"Someone pulls a glowing green sword from a scabbard on his back and slashes wildly at someone, who swerves out of the way. Someone\",\"Someone pulls a glowing green sword from a scabbard on his back and slashes wildly at someone, who swerves out of the way.\",Someone,gold,\"keeps squirming, replays what there is someone inside.\",races up the staircase and stands beside the hologram.,comes down from the ground and crashes across the stone church's blade blade against wood.,\"soars above someone, then plummets down to stab him but misses.\"\n10408,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60420,5362,Someone looks up as someone towers over him. Someone,Someone looks up as someone towers over him.,Someone,gold,notices the wolf approaching again.,watch someone and someone dive into the gryffindor porthole.,backs away from someone.,runs from the carnage and pulls out into a thick stream of smoke.\n10409,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60420,5360,\"Someone suddenly finds himself on the stone steps. he clambers up the stairs, onto a high seat, perched on four stone pillars. Someone\",\"Someone suddenly finds himself on the stone steps. he clambers up the stairs, onto a high seat, perched on four stone pillars.\",Someone,gold,\"crawls through the door, unlocks another door.\",pulls out a little bundle of dark adidas.,peers out from the seat.,is working out with someone on a roof.\n10410,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60420,5361,Someone lies gasping on the summit of Amon Hen. below the ancient ruins of the seeing seat. Someone,Someone lies gasping on the summit of Amon Hen. below the ancient ruins of the seeing seat.,Someone,gold,lays aside and drops the book.,looks up as someone towers over him.,\"begins to fidget clutching her stomach, someone inches forward.\",peers down the tunnel across a furrowed factory floor.\n10411,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60420,5359,\"Somewhere behind him, someone's distraught voice carries from another dimension. Someone suddenly finds himself on the stone steps. he\",\"Somewhere behind him, someone's distraught voice carries from another dimension.\",Someone suddenly finds himself on the stone steps. he,gold,\"walks into the living room and takes out some bottles in his hand, after he takes a drink.\",looks down at someone self - consciously.,\"clambers up the stairs, onto a high seat, perched on four stone pillars.\",paints a new curved chinese stamp.\n10412,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60420,5363,Someone backs away from someone. someone is shocked by the movement. Someone,Someone backs away from someone. someone is shocked by the movement.,Someone,gold,leans over into the coffin and begins a abandon it.,falls over the picture.,gives a resolute nod.,uncurls his fist.\n10413,anetv_jNGa0jPAMjI,19082,The camera pans down to show the various items on the table before him. The camera,The camera pans down to show the various items on the table before him.,The camera,gold,\"is sitting on its board, looking to the man on the couch.\",zooms in on the man.,pans back up to the man.,pans down to his left and watch himself as though playing and holding up a disk.\n10414,anetv_jNGa0jPAMjI,19081,The man begins smoking from a large pipe. The camera,The man begins smoking from a large pipe.,The camera,gold,pans down to show the various items on the table before him.,turns from side to side.,zooms up in between men.,pans around several clips of him keeping him playing.\n10415,anetv_jNGa0jPAMjI,19080,A seated man looks at a clipboard. The man,A seated man looks at a clipboard.,The man,gold,peels down the potato and places it in a man's belt.,stirs a large glass of water together looking the water.,shows the little tutorial on how to fix it on.,begins smoking from a large pipe.\n10416,lsmdc0028_The_Crying_Game-63974,2496,Someone takes it gently from her mouth and places it on the table. He,Someone takes it gently from her mouth and places it on the table.,He,gold,lies on her back and holds the vial into her mouth.,lifts her up by the shoulders.,unfolds it and glances at his victim.,kisses it upon his lips as he withdraws.\n10417,lsmdc0028_The_Crying_Game-63974,2494,She looks at the picture; walks over and sits down in front of it. She,She looks at the picture; walks over and sits down in front of it.,She,gold,closes herself on a number of framed photos and photos.,gets up and looks up at her dress.,raises the gun and places it in her mouth.,picks up her phone and walks off.\n10418,lsmdc0028_The_Crying_Game-63974,2495,She raises the gun and places it in her mouth. Someone,She raises the gun and places it in her mouth.,Someone,gold,steps into the shadows and faces the workroom grimly.,takes it gently from her mouth and places it on the table.,turns and looks at the crowd.,watches the ss man fall in.\n10419,lsmdc0028_The_Crying_Game-63974,2497,He lifts her up by the shoulders. He,He lifts her up by the shoulders.,He,gold,leads her out the door.,lays him down on the ground.,does some 360 care.,\"clings to the tree, losing her in the grip of the water.\"\n10420,lsmdc0028_The_Crying_Game-63974,2501,He turns to the picture of the soldier; talks to it. He,He turns to the picture of the soldier; talks to it.,He,gold,slowly turns and points at her.,\"is in his sweatshirt still, with the sound of a voice - choked, a little even.\",\"sits in the chair by the window, waiting.\",rides staring at the manuscript.\n10421,lsmdc0028_The_Crying_Game-63974,2504,\"Among them is someone, looking resplendent. She\",\"Among them is someone, looking resplendent.\",She,gold,drags her cat down the hall.,\"walks past the rows of convicts with their families, up to a glass cage, where someone sits, waiting.\",feels towards his daughters.,reads a letter - hugging covered by a manila.\n10422,lsmdc0028_The_Crying_Game-63974,2499,\"Looks out the window to where he can see someone staggering down the street, through the crowds that have gathered. He\",\"Looks out the window to where he can see someone staggering down the street, through the crowds that have gathered.\",He,gold,hobbles out onto a vast deserted sidewalk outside the gray airport and back inside a casino marquee.,\"watches someone run off, with her funny walk.\",\"walks towards the bench, where a floor holds a flag.\",gives her a gentle smile.\n10423,lsmdc0028_The_Crying_Game-63974,2503,\"Large barred doors open and a group of women come through, with parcels, children in tow, etc. Among them\",\"Large barred doors open and a group of women come through, with parcels, children in tow, etc.\",Among them,gold,is some activity of the police department.,is a large group of brought robes and aprons.,\"is someone, looking resplendent.\",\"are a crowded ball combination of whispers, photographers, and costumed, of the frightened women, people.\"\n10424,lsmdc0028_The_Crying_Game-63974,2502,\"He sits in the chair by the window, waiting. Large barred doors open and a group of women\",\"He sits in the chair by the window, waiting.\",Large barred doors open and a group of women,gold,\"come through, with parcels, children in tow, etc.\",\"emerge, who exhaust columns of crates or tank doors appear.\",come away and walk around the area.,wrap their guns around the neck of an emt lying within the barred office door.\n10425,anetv_ovq0Fqbxt1c,9393,\"All of a sudden, the vinegar is now in the bowl and placed on the table. She then\",\"All of a sudden, the vinegar is now in the bowl and placed on the table.\",She then,gold,washes it and puts it on the end of the hand and begins rubbing it again.,begins licking the mixture and dipping it into the cup to make sure it is clean.,takes the baking cup in her hands and place it down while people hug.,\"grabs a towel, dips it in the vinegar and starts to wipe the table to clean it.\"\n10426,anetv_ovq0Fqbxt1c,17895,A woman is seen speaking to the camera holding up a bottle. She,A woman is seen speaking to the camera holding up a bottle.,She,gold,stirs around liquid into a bowl and dips a rag in.,holds up a bottle of ice and pours it into a mug.,pushes it along a grill.,rubs the lotion onto the back of the leg.\n10427,anetv_ovq0Fqbxt1c,9392,\"A woman is standing in a room with contents on a table and a jar of vinegar in her hand. All of a sudden, the vinegar\",A woman is standing in a room with contents on a table and a jar of vinegar in her hand.,\"All of a sudden, the vinegar\",gold,\"is then shown, washes with them and poured the ingredients all in a pan.\",is seen in a silver container.,is applied to the solution being sprayed by a cloth.,is now in the bowl and placed on the table.\n10428,anetv_ovq0Fqbxt1c,17896,She stirs around liquid into a bowl and dips a rag in. She then,She stirs around liquid into a bowl and dips a rag in.,She then,gold,mixes the salad with a spoon.,puts the mixture into a baking pan.,mixes the drink looking into it.,cleans off the table using a rag.\n10429,anetv_9PFlQcBl_jU,10083,\"Once the bull is caught, they start to move it and they have difficulty because the crowd is on their back. Next, a shirtless man\",\"Once the bull is caught, they start to move it and they have difficulty because the crowd is on their back.\",\"Next, a shirtless man\",gold,\"lays down on the dirt, gets trampled by the bull and jumps up happy about what just happened.\",climbs on a horse while holding the leash in his hands.,wearing a black shirt gets dragged across their trophy he stole.,starts the prison and the crowd applauds for winning.\n10430,anetv_9PFlQcBl_jU,10084,\"Next, a shirtless man lays down on the dirt, gets trampled by the bull and jumps up happy about what just happened. Another bull comes along, runs over a person and the person remains on the ground and a crowd of people\",\"Next, a shirtless man lays down on the dirt, gets trampled by the bull and jumps up happy about what just happened.\",\"Another bull comes along, runs over a person and the person remains on the ground and a crowd of people\",gold,are watching him the bull is in the crowd clapping and the matador pushed it up.,runs around him and watches him play saved pictures of bulls and other bulls.,come running over to him laying a blanket across his body.,get on the horse and walk into the field and into position.\n10431,anetv_9PFlQcBl_jU,10082,\"Several people are outside watching a about four men bullfighting with a cape. Once the bull is caught, they start to move it and they\",Several people are outside watching a about four men bullfighting with a cape.,\"Once the bull is caught, they start to move it and they\",gold,have difficulty because the crowd is on their back.,are done as he fights with the break of the fighting man.,pick the hulte and put it in the ground as they continue to sharpen.,are doing the same thing as no speaks to the camera.\n10432,lsmdc3085_TRUE_GRIT-40509,12261,\"He walks towards someone who uncocks his weapon and holsters it. In the pitch black night, someone and someone\",He walks towards someone who uncocks his weapon and holsters it.,\"In the pitch black night, someone and someone\",gold,sing confer as they enjoy the dance.,start to peel off the hood.,lie out in bed.,sit by a campfire.\n10433,lsmdc3085_TRUE_GRIT-40509,12259,\"Someone pulls out his pistol, cocks it. He\",\"Someone pulls out his pistol, cocks it.\",He,gold,\"plants his feet, the pressure of his rifle hits him then wrenches it off.\",carries it out of the supply room.,looks back at someone.,aims at someone and stares at him fiercely.\n10434,lsmdc3085_TRUE_GRIT-40509,12258,Someone gets down from his horse and marches over to someone. He,Someone gets down from his horse and marches over to someone.,He,gold,rubs the plate and the tent tenses.,and someone walk someone to his feet and peer at him in dismay.,takes a piece of pie in his mouth.,\"grabs her coat, pulls her to the ground.\"\n10435,lsmdc3085_TRUE_GRIT-40509,12262,\"In the pitch black night, someone and someone sit by a campfire. Someone\",\"In the pitch black night, someone and someone sit by a campfire.\",Someone,gold,is now wearing a balloon.,turns to someone with a smile.,stares at the flames.,\"sleeps on a couch, lost in thought.\"\n10436,lsmdc3085_TRUE_GRIT-40509,12260,He aims at someone and stares at him fiercely. Someone,He aims at someone and stares at him fiercely.,Someone,gold,goes round to her and follows her outside.,stands and throws the stick away.,puts intensely on people.,\"raise his arms, pretending to leave.\"\n10437,anetv_iMwLP3y0VcQ,13762,He blows it through a cardboard tube. He,He blows it through a cardboard tube.,He,gold,spots the forklift and resumes speaking.,repeats this action again.,puts it back on the vehicle as the screen fades.,clicks on the light.\n10438,anetv_iMwLP3y0VcQ,9730,\"Then, the juvenile, smoke from a tube and then exhale the smoke through the tube. This time the juvenile\",\"Then, the juvenile, smoke from a tube and then exhale the smoke through the tube.\",This time the juvenile,gold,smokes and exhales the smoke through the tube doing smoke rings.,goes down a road to pass a white dog smoking the tractor while talking.,opens the back up and then cross at the camera.,does n't move back.\n10439,anetv_iMwLP3y0VcQ,9729,\"A juvenile hold a long paper tube on front his face. Then, the juvenile, smoke from a tube and\",A juvenile hold a long paper tube on front his face.,\"Then, the juvenile, smoke from a tube and\",gold,then exhale the smoke through the tube.,file out the ceiling.,\"clean the floor, then adjusts the shaver.\",slip polish on the dirt while the young boy in yellow follow him.\n10440,anetv_iMwLP3y0VcQ,13761,He takes a hit off of a hookah pipe. He,He takes a hit off of a hookah pipe.,He,gold,pops all around the corner and then grabs the shaft with his finger by a thin metal tip.,blows it through a cardboard tube.,shakes it off at the end.,bends down to the edge of his bed.\n10441,anetv_iMwLP3y0VcQ,13760,A boy sits in a room wearing a hat. He,A boy sits in a room wearing a hat.,He,gold,smiles and sits on the stage.,prepares to run to a playground.,sits on a slackline next to them.,takes a hit off of a hookah pipe.\n10442,anetv_-Lxv663IEaI,12294,A group is riding on horse back by a fenced in area. We,A group is riding on horse back by a fenced in area.,We,gold,people lead the horses and acknowledge the field.,see a title screen.,\"see numerous goats on the other side of the fence, and people walking down the path.\",are two the fighter's mates.\n10443,lsmdc1038_The_Great_Gatsby-87359,18408,\"Someone stands amongst the trees near someone's cottage, looking up the lane. Someone\",\"Someone stands amongst the trees near someone's cottage, looking up the lane.\",Someone,gold,in the old year old tent looks at a photo of someone with people.,wakes follows behind him.,\"is shown, but they have not been much in it; time passes as the person exit through the woods.\",sees someone and frowns.\n10444,lsmdc1038_The_Great_Gatsby-87359,18407,People ride in the cab. Someone,People ride in the cab.,Someone,gold,arrives with a bowl of toy guns.,\"stands amongst the trees near someone's cottage, looking up the lane.\",steps out of the hummer as a wolf approaches.,throws her forward in the grass.\n10445,lsmdc1038_The_Great_Gatsby-87359,18411,\"They both smile, slightly awkwardly, and look down. Someone\",\"They both smile, slightly awkwardly, and look down.\",Someone,gold,gives a sharp nod and turns to go.,holds his gaze then nods to the room.,\"hops up outside, outside on the bonnet.\",\"'s disfigured, his bedside room is lit by hundreds of sit guests.\"\n10446,lsmdc1038_The_Great_Gatsby-87359,18410,Someone looks over at someone and gestures towards the mansion. They both,Someone looks over at someone and gestures towards the mansion.,They both,gold,meet in a brief warm glow.,\"smile, slightly awkwardly, and look down.\",are wearing spotted awards.,\"looked upon him, each quiet, moaning.\"\n10447,lsmdc1038_The_Great_Gatsby-87359,18409,Someone stands bathed in light. Someone,Someone stands bathed in light.,Someone,gold,\"plays someone's fashion in contrast to the music, giving a roar of excitement.\",struggles to avoid the pursuit.,\"'s gaze drifts up to its house, which cuts through the past.\",looks over at someone and gestures towards the mansion.\n10448,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61694,12834,\"The reason for their misery is clear. The volcano is erupting, fire belches from it's riven summit,\",The reason for their misery is clear.,\"The volcano is erupting, fire belches from it's riven summit,\",gold,sending lava streaming down it's sides.,round slightly fields to earth.,grappling preventing the balance towards the of traders.,preventing the metal spin to rattle.\n10449,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61694,12835,\"The skies burst into thunder, seared with lightning. The ground\",\"The skies burst into thunder, seared with lightning.\",The ground,gold,crashes into the windshield.,is strewn with animal enthusiasm.,smells a dubious old women smile.,is shaking so violently that people can barely stand.\n10450,anetv_1L_4N307nBk,19301,Girl is doing gymnastics in a balance beam in a roofed gym while people around her are practicing gymnastics too. the woman,Girl is doing gymnastics in a balance beam in a roofed gym while people around her are practicing gymnastics too.,the woman,gold,is walking in the gym and takes a big leap then falls onto the upper floor.,walked into a bow and stand on her balance beam.,is stretching on the floor and walking in a low balance beam with mats behind the beam.,jumped and lands in a volleyball court running and hopped and star doing tricks.\n10451,anetv_1L_4N307nBk,7917,Materials list and shows how o use the balance beam. another people,Materials list and shows how o use the balance beam.,another people,gold,walk on it from his sides and then jump around the calf.,are leggings down on the floor.,get in the personal bike.,is making gymnastics in the roofed gym and making a hand stands.\n10452,lsmdc3079_THINK_LIKE_A_MAN-36851,8868,\"Now at the Santa someone someone, someone stifles a smile as she strolls with someone. She\",\"Now at the Santa someone someone, someone stifles a smile as she strolls with someone.\",She,gold,\"sniffs someone, who sits near her.\",snaps photos of red roses.,breaks into a grin.,takes it and sidles out onto a patio overlooking the pool.\n10453,lsmdc3042_KARATE_KID-19726,5811,A dotted line connects his eyes to the eyes of the slender woman striking a kung fu pose. Someone,A dotted line connects his eyes to the eyes of the slender woman striking a kung fu pose.,Someone,gold,smiles as he draws his wand.,hunches over a sketchbook and shades in the woman's hair.,grooms a sharp tooth.,smiles and removes a smile.\n10454,lsmdc3042_KARATE_KID-19726,5800,\"Someone tips him over the dock's edge. Now, a train's headlights\",Someone tips him over the dock's edge.,\"Now, a train's headlights\",gold,cut through the night air.,shoot down on an approaching nightclub.,illuminate a dark sky beneath a city street below.,illuminate a dolphin swimming in the sky above the paint basin.\n10455,lsmdc3042_KARATE_KID-19726,5813,\"Now, he stares intensely at his mother, as they lunch in a marketplace. Someone\",\"Now, he stares intensely at his mother, as they lunch in a marketplace.\",Someone,gold,finds a penguin holding cigarette.,frowns at her glowering son.,looks in the mailbox.,joins him with his party smoking and petting a dog.\n10456,lsmdc3042_KARATE_KID-19726,5810,\"Now, a child's drawing shows a coiled cobra with a fanned hood. A dotted line\",\"Now, a child's drawing shows a coiled cobra with a fanned hood.\",A dotted line,gold,is flat with sunlight in a car at the end of a mountain drive.,connects his eyes to the eyes of the slender woman striking a kung fu pose.,move out past a moon - toothed street of sea plumes.,reads hidden parts of her song facebook.\n10457,lsmdc3042_KARATE_KID-19726,5805,\"He gives someone a gentle pat. Now, someone\",He gives someone a gentle pat.,\"Now, someone\",gold,finishes by with his class.,puts someone to bed.,arrives at us with a serious frown.,\"runs across a shot, overlooking the towering stacks.\"\n10458,lsmdc3042_KARATE_KID-19726,5801,\"Now, a train's headlights cut through the night air. Someone\",\"Now, a train's headlights cut through the night air.\",Someone,gold,pass and sit.,stretches out its hand.,sleeps with his cheek on mr.,puts a cigarette from her fingers.\n10459,lsmdc3042_KARATE_KID-19726,5812,\"Someone hunches over a sketchbook and shades in the woman's hair. Now, he\",Someone hunches over a sketchbook and shades in the woman's hair.,\"Now, he\",gold,lights a shop device as he reads the latest decree.,brings pastel dough out of a bag.,\"stares intensely at his mother, as they lunch in a marketplace.\",hands over a busy makeup box.\n10460,lsmdc3042_KARATE_KID-19726,5798,Someone attaches bamboo poles to someone's wrists by loops at their ends. Someone,Someone attaches bamboo poles to someone's wrists by loops at their ends.,Someone,gold,flinches as he continues to walk off.,inspects the secret methods attached to the door.,\"steps back, gripping a bamboo pole in each hand.\",is located outside his house.\n10461,lsmdc3042_KARATE_KID-19726,5803,\"As he stirs, his head flops down to his teacher's lap. The man\",\"As he stirs, his head flops down to his teacher's lap.\",The man,gold,stares at the boy.,'s face is half lathered.,remains chained to the ground with his hands resting on his right hand.,reaches under his comforter.\n10462,lsmdc3042_KARATE_KID-19726,5806,\"Now, someone puts someone to bed. The mother\",\"Now, someone puts someone to bed.\",The mother,gold,smiles at the man.,studies the coffin above them.,takes her place at an empty table.,slams her hands on a desk.\n10463,lsmdc3042_KARATE_KID-19726,5804,The man stares at the boy. He,The man stares at the boy.,He,gold,gives someone a gentle pat.,switches off his tools and lights it.,relaxes his head as he places it on his shirt pocket.,leans his head against the pipe.\n10464,lsmdc3042_KARATE_KID-19726,5807,The mother smiles at the man. She,The mother smiles at the man.,She,gold,kisses someone's forehead and caresses his cheek.,wipes down the makeup.,stretches the arm of the child's head.,bashfully pulls up the boat's visor.\n10465,lsmdc3042_KARATE_KID-19726,5809,\"The quickly closing door thins the shaft of light cast on the boy until it's gone. Now, a child's drawing\",The quickly closing door thins the shaft of light cast on the boy until it's gone.,\"Now, a child's drawing\",gold,room shows various photos of someone clutching camera.,sweeps past four mice.,on her trowel rustles the decorations.,shows a coiled cobra with a fanned hood.\n10466,anetv_gwbRqyRZguM,13355,A group of children are swinging together on a piece of equipment. They,A group of children are swinging together on a piece of equipment.,They,gold,are pulled over a slide.,fall onto each other's shoulders.,are trying to perform a living dance.,\"are shown in groups, swinging back and forth on the platform.\"\n10467,anetv_gwbRqyRZguM,13356,\"They are shown in groups, swinging back and forth on the platform. They\",\"They are shown in groups, swinging back and forth on the platform.\",They,gold,\"hit his hand and take their positions, trying to keep solid.\",are singing and dancing.,stand around several platforms.,are located in an outdoor park.\n10468,lsmdc0043_Thelma_and_Luise-68279,1275,They watch him walk away. Someone,They watch him walk away.,Someone,gold,pulls out of the parking lot onto the road.,hauls herself around her room.,blows in a circle.,reaches into her hair.\n10469,lsmdc0043_Thelma_and_Luise-68279,1274,Someone lowers the top and backs the car out. They,Someone lowers the top and backs the car out.,They,gold,burst through the front door.,land on the windshield as someone smiles desperately.,walk side by side.,watch him walk away.\n10470,lsmdc0043_Thelma_and_Luise-68279,1273,\"The guy does seem really nice and someone is really frustrated that someone would n't give him a ride, but decides not to confront her. Someone\",\"The guy does seem really nice and someone is really frustrated that someone would n't give him a ride, but decides not to confront her.\",Someone,gold,is there at the table.,walks quickly across a fountain to the painting log on the shoulder.,begins walking a hand closer to her windshield as once more.,lowers the top and backs the car out.\n10471,lsmdc0043_Thelma_and_Luise-68279,1269,He starts to walk away from the car. Just then someone,He starts to walk away from the car.,Just then someone,gold,comes out of the store.,\"loses his grasp, leaps off the car car, then goes off.\",opens the front door and stops as he enters.,goes to the locked door.\n10472,lsmdc0043_Thelma_and_Luise-68279,1271,\"Although her face is basically expressionless, we see that it's possible she might kill someone. Someone\",\"Although her face is basically expressionless, we see that it's possible she might kill someone.\",Someone,gold,covers his groin and buries his face in her hands as she mopes across the room.,fades with a blazing fashion.,just nods and starts walking towards the road.,touches the arm of a girl sitting in front of him.\n10473,lsmdc0043_Thelma_and_Luise-68279,1268,Now she wants him to come. He,Now she wants him to come.,He,gold,rises several bare steps to show what someone is looking for.,walks onto a bunk with an umbrella.,packs the inmates around his childhood cottage.,starts to walk away from the car.\n10474,lsmdc0043_Thelma_and_Luise-68279,1270,\"She sees someone talking to this guy and, for one moment, stops dead in her tracks as she takes this in, then continues toward the car. Although her face is basically expressionless, we\",\"She sees someone talking to this guy and, for one moment, stops dead in her tracks as she takes this in, then continues toward the car.\",\"Although her face is basically expressionless, we\",gold,see that it's possible she might kill someone.,\"can clearly hear her voice, is about to teach.\",can see her coming out of her through a modern sketch of all - cathedral video sequences.,kiss over her face.\n10475,lsmdc0043_Thelma_and_Luise-68279,1272,Someone just nods and starts walking towards the road. The guy does seem really nice and someone,Someone just nods and starts walking towards the road.,The guy does seem really nice and someone,gold,does not really greet him.,is looking back for tears of the car.,\"is really frustrated that someone would n't give him a ride, but decides not to confront her.\",\"can see him, excited.\"\n10476,anetv_0fvL6IHKYF0,17682,A man is shown kneeling down speaking to the camera next to a piece of exercise equipment. He,A man is shown kneeling down speaking to the camera next to a piece of exercise equipment.,He,gold,begins putting ice on the cup while looking into it.,points to the machine and changes around all the specs.,continues moving around on the machine while moving the machine across the seat.,takes up with his arms and moves onto his side by moving back and forth.\n10477,anetv_0fvL6IHKYF0,18124,A man kneels next to a stationary bike in the snow. The man,A man kneels next to a stationary bike in the snow.,The man,gold,slide a ball down the ramp and lift the rails.,waxes up the hood of the ski.,pushes the display and adjusts the tension.,starts jumping in the snow in the barber seat.\n10478,anetv_0fvL6IHKYF0,18125,The man pushes the display and adjusts the tension. the man then rides the bike and it,The man pushes the display and adjusts the tension.,the man then rides the bike and it,gold,slams on the bike while driving.,continues to boarder landscapes and tricks in the air.,pumps back to the woman.,moves across the snow.\n10479,anetv_0fvL6IHKYF0,18126,The man then rides the bike and it moves across the snow. We,The man then rides the bike and it moves across the snow.,We,gold,see the bike going and the man running behind the bike.,the ending watch without stopping.,are seen skating down the road through some landscapes and the man riding around jumps on back of to types.,\"are on a gravel path, swerving through the grass on their way.\"\n10480,anetv_r6z6Ct16I_8,22,A young girl is shown painting the toe nails of person and looking back and fourth between the camera and the nails. The girl,A young girl is shown painting the toe nails of person and looking back and fourth between the camera and the nails.,The girl,gold,demonstrates ballet moves in slow motion as her clippers features end cake is shown.,continues painting the nails while looking in the mirror.,speaks to the camera while looking off into the distance and continues painting the toe nails.,continues showing the lighted nails and the camera pans down to show the completed original scene of the green paint.\n10481,anetv_r6z6Ct16I_8,6380,A young child is paiting an adult's toenails silver. The child,A young child is paiting an adult's toenails silver.,The child,gold,moves a pregnant girl as they return.,has a baby and lamp seen on the right behind the person and releases blood.,talks to the camera.,has someone in the same apartment a whole time.\n10482,anetv_MTC0fs4QyEY,11539,He then stands next to some well pruned shrubs and continues his exercise in the open while it rains heavily. He then,He then stands next to some well pruned shrubs and continues his exercise in the open while it rains heavily.,He then,gold,\"solves the discus and begins spinning around repeatedly, saying back to the sides.\",stands by his back and makes sure to do and is speaking to the camera.,takes his shirt and walks away after he is done with his tai chi exercise.,empties blue waste and randomly throughout all block to slope and leaves with a large starting line.\n10483,anetv_MTC0fs4QyEY,11538,There is an old man doing Tai Chi on a sidewalk while pedestrians walk by. The man,There is an old man doing Tai Chi on a sidewalk while pedestrians walk by.,The man,gold,sits in the car that begins holding the jack of a cake with a red wiper.,continues doing tai chi on the sidewalk as several people walk by him.,talks and walk in a parking lot outside the shop.,begins to relax and drops the baton on the stage.\n10484,anetv_6J0IdWi4O0Q,14355,A man in a tank top stands on a court. He,A man in a tank top stands on a court.,He,gold,lifts a weight over his head.,picks up a calf and begins to do something.,bounces a tennis ball on the ground.,flexes his fingers and presses a button.\n10485,anetv_6J0IdWi4O0Q,14356,He bounces a tennis ball on the ground. He,He bounces a tennis ball on the ground.,He,gold,picks up the ball and walks around to the goal.,kicks the ball back and forth with a sock.,misses the ball back and forth as he bounces.,hits the ball into the trees.\n10486,anetv_6J0IdWi4O0Q,1842,A young man is seen holding a tennis racket and looking back to the camera smiling. He,A young man is seen holding a tennis racket and looking back to the camera smiling.,He,gold,bounces the tennis ball and bit and hits the ball into the net.,begins kicks the ball all around and ends by smirking to the camera.,continues playing a replay of the game and ends by walking away.,shows several players throwing a ball and throwing a ball into it.\n10487,anetv_6J0IdWi4O0Q,1843,He bounces the tennis ball and bit and hits the ball into the net. He,He bounces the tennis ball and bit and hits the ball into the net.,He,gold,continues to hit the ball back and forth as people watch on the side.,hits several more balls and walks back towards the camera smiling.,goes over the bricks.,lets the man onto his feet.\n10488,anetv_6J0IdWi4O0Q,14357,He hits the ball into the trees. He,He hits the ball into the trees.,He,gold,\"jumps over the board, falling over.\",jumps down and hits the ball into stone.,hits another ball into a net.,takes a running stick and spikes it hard.\n10489,lsmdc0041_The_Sixth_Sense-67849,19033,Someone is standing before the beat - up twelve inch kitchen t. v.. He,Someone is standing before the beat - up twelve inch kitchen t. v..,He,gold,stops drinking and opens the door.,stands in his pajamas in a doorway.,is now standing alone on the roof in darkness.,is tuning a key in his back.\n10490,anetv_USOc5S2-3zA,9006,A woman in a belly dancer outfit is on stage. She,A woman in a belly dancer outfit is on stage.,She,gold,is sitting down doing various ballet moves.,starts dancing while dancing on the floor.,sits in exercise chair holding a pose above her hands.,walks down the lane while dancing and singing.\n10491,anetv_USOc5S2-3zA,9007,She walks down the lane while dancing and singing. She,She walks down the lane while dancing and singing.,She,gold,\"- wins, as a boy plays a piano on the piano.\",begins to break several audience.,gyrates her hips and arms as she performs.,shimmies and spinning in confusion.\n10492,anetv_s1WQ4zNikKA,2762,A camera pans around a shower and zooms in on a person shaving their legs. The camera,A camera pans around a shower and zooms in on a person shaving their legs.,The camera,gold,watches her move her arms all around her legs while the water runs down the drain.,pans to a man in the audience kneeling up and showing out various angles.,pans around a close up of the floor as well as a group of horse horses afterwards.,pans around their faces and look off into the distance as well as watching the person snow away.\n10493,anetv__KOVk8iGbrA,15325,A woman picks out a piercing to get done. a technician,A woman picks out a piercing to get done.,a technician,gold,gloves up and applies the piercing for her.,walks over the set toward the camera.,spreads the cardio trainer over her body.,lifts the stone around her head and continues scrubbing.\n10494,anetv__KOVk8iGbrA,3251,\"The man is shown again in the same small room but this time he is talking to a different woman who is blonde, and close up shot of the woman's face is shown, the man marks an area on her nose with a marker, then quickly pierces her nose, adjusts the piercing, and then holds a mirror up to her so she can look at herself. The man then\",\"The man is shown again in the same small room but this time he is talking to a different woman who is blonde, and close up shot of the woman's face is shown, the man marks an area on her nose with a marker, then quickly pierces her nose, adjusts the piercing, and then holds a mirror up to her so she can look at herself.\",The man then,gold,lifts up her face up and dries his face.,walks up and winces.,shows something in his hands.,quickly pierces a part of her ear and then her belly button.\n10495,anetv__KOVk8iGbrA,15324,Several women are shown working inside a shop. A woman,Several women are shown working inside a shop.,A woman,gold,is using items on a computer.,picks out a piercing to get done.,is seen speaking to the camera while laying down weights.,then pushes the toys using her.\n10496,anetv_l6a56j87obQ,14998,\"Another man comes onto the stage playing the guitar and the lights go flashing. When the man is done playing the bagpipe another man runs on the stage to grab it from him, and the man who was playing the bagpipe\",Another man comes onto the stage playing the guitar and the lights go flashing.,\"When the man is done playing the bagpipe another man runs on the stage to grab it from him, and the man who was playing the bagpipe\",gold,\"is shown before the audience claps for him, as the sumo walks back on the stage and celebrate.\",\"strum a large gesture, then the man stop playing.\",\"gets something to drink, then grabs a mic and starts singing and waving his right arm in the air.\",begins to work on the other hand while sitting back in the sand.\n10497,lsmdc0014_Ist_das_Leben_nicht_schoen-54688,4584,\"A few other people start for the door. The people are still trying to get out, but some of them\",A few other people start for the door.,\"The people are still trying to get out, but some of them\",gold,looks much like a school girl.,seem faster to follow them.,grab the suitcase then come back into the parlor.,\"have stood still, listening to him.\"\n10498,lsmdc0014_Ist_das_Leben_nicht_schoen-54688,4585,\"The people are still trying to get out, but some of them have stood still, listening to him. Someone\",\"The people are still trying to get out, but some of them have stood still, listening to him.\",Someone,gold,walks back and forth.,is walking to the railing that has only one carton of lights.,\"stand limply in the air, staring at the floor, arms folded and staring at each other.\",has begun to make an impression on them.\n10499,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84573,12001,The page turns to a set of interlocking v's. Another page turn,The page turns to a set of interlocking v's.,Another page turn,gold,\", and the boy runs in front of the cave.\",reveals l shapes and a set of two broken squares with a small square in the center.,out of the page.,and address after the pages.\n10500,anetv_pzkwJYJol7o,4925,They are engaged in a race. They,They are engaged in a race.,They,gold,are playing a game of beach soccer.,try to win by paddling as fast as possible.,pass two players balls on the beach.,are engaged in a game of paintball.\n10501,anetv_pzkwJYJol7o,17377,\"They are in a competition, racing toward the shore. Numbers\",\"They are in a competition, racing toward the shore.\",Numbers,gold,slosh through the clouds while guns blazing.,\"hits the sky, causing someone to hit.\",are saddened at the paddy huts.,indicate where the finish line is as they reach them.\n10502,anetv_pzkwJYJol7o,4924,Several people are rowing in the ocean water. They,Several people are rowing in the ocean water.,They,gold,falls from the sky to the group.,stand and pretend to swim.,walk to the shore and huddle in the boat.,are engaged in a race.\n10503,anetv_pzkwJYJol7o,17376,Several people are boating on the ocean. They,Several people are boating on the ocean.,They,gold,continue to paint themselves on various surfaces.,are being pushed by boats.,\"are in a competition, racing toward the shore.\",add several throws with snow on them.\n10504,lsmdc0002_As_Good_As_It_Gets-46337,6389,Verdell looks over with surprise and pleasure. Verdell,Verdell looks over with surprise and pleasure.,Verdell,gold,spots a drawing on his cauldron.,shifts his body so he is eating from the bowl with his tail to someone.,\"stays in his seat, sticking her arms out.\",digs intently into his computer.\n10505,anetv_q_eRxmeGJBY,4616,A man swings around on a pommel horse. A man in blue plan,A man swings around on a pommel horse.,A man in blue plan,gold,swing his legs back and forth.,begins to pass by screen.,uniform holds his swords.,is crossing the rope.\n10506,anetv_uDNLf3ty9ao,17497,A woman in a black and white sweater sits behind him. She,A woman in a black and white sweater sits behind him.,She,gold,takes off her sweater and puts it on the chair behind him.,starts doing sit ups on the mat.,picks up the rake and wipes them while the man watches her.,puts a sheet over the table.\n10507,anetv_kRBqJhxfWHc,10644,A woman in an orange shirt is drinking a glass of beer. The beer,A woman in an orange shirt is drinking a glass of beer.,The beer,gold,is crossed the table and talking.,is pouring down the front of her shirt.,has fallen from a shelf.,is shown with a room filled with balls and an balls.\n10508,anetv_kRBqJhxfWHc,10645,People behind her are dancing. She,People behind her are dancing.,She,gold,finishes the drink and sets it down.,are brushing her hair out of her face.,frowns at the camera.,applauds for on the second floor.\n10509,anetv_OBb4013eIc8,9204,He then puts his feet in the surfboard and gets in the river next to the road. Once the car,He then puts his feet in the surfboard and gets in the river next to the road.,Once the car,gold,begins to drive off as he is pulling the guy in the river by the string attached to his trunk.,\"is complete, he gets back to work.\",\"gets out, the man rides the car through the city again.\",is finished soon they are scuba diving into the swimming pool.\n10510,anetv_OBb4013eIc8,9207,The driver continues driving down the road until he finds where he lost his friends. The passenger then gets in the car and they,The driver continues driving down the road until he finds where he lost his friends.,The passenger then gets in the car and they,gold,get out of the car.,get off of the car.,go down the road.,drive out of the twilight.\n10511,anetv_OBb4013eIc8,6250,A couple of men are riding inside a car. They,A couple of men are riding inside a car.,They,gold,are in the studio together.,walk halfway down the sidewalk.,are engaged in a game of racquetball.,are talking as they drive down the road.\n10512,anetv_OBb4013eIc8,9203,\"One he stops, the passenger gets out with his surfboard and grabs a green string. He then\",\"One he stops, the passenger gets out with his surfboard and grabs a green string.\",He then,gold,gets his lip and continues to smoke in all directions.,puts his feet in the surfboard and gets in the river next to the road.,pulls a long tube tube down of the stream.,tops it admiringly and cuts out his warming marshmallow.\n10513,anetv_OBb4013eIc8,9205,Once the car begins to drive off as he is pulling the guy in the river by the string attached to his trunk. The driver begins going to fast and the surf boarder,Once the car begins to drive off as he is pulling the guy in the river by the string attached to his trunk.,The driver begins going to fast and the surf boarder,gold,stands up and comes to a stop.,gets off and gets out of the water.,sweeps through the scene.,notices the line is seen.\n10514,anetv_OBb4013eIc8,6251,They are talking as they drive down the road. They then,They are talking as they drive down the road.,They then,gold,ride all the cars in the gym.,run to a car and wash her face.,get driven in the race.,get out and ride a surfboard on the water.\n10515,anetv_OBb4013eIc8,9206,The driver begins going to fast and the surf boarder gets off and gets out of the water. The driver,The driver begins going to fast and the surf boarder gets off and gets out of the water.,The driver,gold,lands hard on the left and falls.,climbs over the boat and hits the boarding that once back over.,continues driving down the road until he finds where he lost his friends.,does the same thing as water covers the high river.\n10516,anetv_OBb4013eIc8,9202,\"Two people are in a Corvette with black interior and the driver begins turning the wheel. One he stops, the passenger\",Two people are in a Corvette with black interior and the driver begins turning the wheel.,\"One he stops, the passenger\",gold,gets out with his surfboard and grabs a green string.,gets and rides on.,gets up from the back of others and speaks.,makes to swing open.\n10517,anetv_qcYRPEEitZU,19115,A woman sits in front of a large crowd while holding shaving cream and a razor. Another man is seen on stage shaving his face and the woman,A woman sits in front of a large crowd while holding shaving cream and a razor.,Another man is seen on stage shaving his face and the woman,gold,looks off into the distance.,watches him get up and leads people down a liquid.,begins shaving her legs.,begins to brush his leg.\n10518,anetv_qcYRPEEitZU,19116,Another man is seen on stage shaving his face and the woman begins shaving her legs. The crowd,Another man is seen on stage shaving his face and the woman begins shaving her legs.,The crowd,gold,is seen as more ballet moves on.,speaks to the girls as she forces a smile.,is shown with her laying down with her hair while the woman speaks to the camera.,cheers them on for the shaving competition.\n10519,anetv_hW25ecQ1GUc,11428,The woman sits in the chair and begins putting a pair of shoes on. She,The woman sits in the chair and begins putting a pair of shoes on.,She,gold,removes the stick and holds it up.,puts both on and stands up to move her feet around.,brushes the horses face with a razor and begins cutting shave in the woman's hair.,continues demonstrating various moves to move all the way while moves to talk.\n10520,anetv_hW25ecQ1GUc,11427,A close up of a chair is seen followed by a woman walking into frame. The woman,A close up of a chair is seen followed by a woman walking into frame.,The woman,gold,speaks to the camera while standing up and wipes them down with her foot.,continues to cut her hair while looking down and speaking to the camera.,sits in the chair and begins putting a pair of shoes on.,continues dancing around the area while the camera captures her movements.\n10521,anetv_CrCtYGvG9Uw,18475,He brushes his hair and cuts through it with a fine comb. The stylist,He brushes his hair and cuts through it with a fine comb.,The stylist,gold,rinses his hair down and brushes the hair off his face.,then walks up and ties his hands.,combs the hair and begins braiding his hair.,performs various styles and techniques on the hair.\n10522,anetv_CrCtYGvG9Uw,18474,Another man comes in and begins cutting the first boy's fair. He,Another man comes in and begins cutting the first boy's fair.,He,gold,\"gets up and walks off, people give chase.\",brushes off another slice of cake as he gets to the end.,walks up and picks up some helmets that he can reach.,brushes his hair and cuts through it with a fine comb.\n10523,anetv_CrCtYGvG9Uw,18473,A man is talking to a camera about his hair. Another man,A man is talking to a camera about his hair.,Another man,gold,is seen talking to the camera and points to the edge of a mat.,stands in front of the fence and talking.,comes in and begins cutting the first boy's fair.,is mopping the floor.\n10524,anetv_CrCtYGvG9Uw,18476,The stylist performs various styles and techniques on the hair. The stylist puts gel in the hair and the boy,The stylist performs various styles and techniques on the hair.,The stylist puts gel in the hair and the boy,gold,continues to talk and get his hair back.,faces the person and shakes out spraying smile.,is finished with his cut.,irons in the leather.\n10525,anetv_pn41XETdQB4,17171,The video leads into a scene from The Karate Kid with a group of bullies holding a young man hostage and an older man comes into frame. The older man,The video leads into a scene from The Karate Kid with a group of bullies holding a young man hostage and an older man comes into frame.,The older man,gold,does this same thing and angles in and out of frame as he continues his technique while watching his movements and captures his movements.,measures someone again to make holes in his shirt.,runs to a bar and begins to chop in slow motion as he guide every part of the group.,beats up the boys with a stick and leads into another clip of men laughing and another being thrown through a door.\n10526,anetv_pn41XETdQB4,17172,The older man beats up the boys with a stick and leads into another clip of men laughing and another being thrown through a door. The older man,The older man beats up the boys with a stick and leads into another clip of men laughing and another being thrown through a door.,The older man,gold,turns and looks across the water and spots a man swinging over and pushing himself on the grass.,tries to help him.,is the first guy and even using a tool at picking him up.,speaks to the teachers and then begins fighting them while another watches.\n10527,lsmdc3083_TITANIC2-38958,14506,\"Carrying sacks over their shoulders, someone and someone dash into the ship. They\",\"Carrying sacks over their shoulders, someone and someone dash into the ship.\",They,gold,are traveling past tall concrete stagehands.,\"slips onto the steep pitch: foe, totally dark artillery.\",'s boat sits on the sofa.,run onto one of the upper decks and wave to onlookers from a railing.\n10528,lsmdc3083_TITANIC2-38958,14505,\"Someone and someone run up a gangplank. Carrying sacks over their shoulders, someone and someone\",Someone and someone run up a gangplank.,\"Carrying sacks over their shoulders, someone and someone\",gold,make his way towards the courtyard.,cling to the hull.,hurry over someone's suv as people approach.,dash into the ship.\n10529,lsmdc3083_TITANIC2-38958,14510,\"Inside the Titanic, a brown - haired woman herds a young boy and girl up a corridor. Someone and someone\",\"Inside the Titanic, a brown - haired woman herds a young boy and girl up a corridor.\",Someone and someone,gold,run past an elevator.,step out to someone.,pass in the opposite direction.,catch up to him.\n10530,lsmdc3083_TITANIC2-38958,14512,\"A porter carries in a pair of suitcases as someone enters from the adjoining promenade deck. As a porter wheels in a safe on a dolly, someone\",A porter carries in a pair of suitcases as someone enters from the adjoining promenade deck.,\"As a porter wheels in a safe on a dolly, someone\",gold,\"stares at him, then glances at someone.\",finds a small print flower marked with a note.,jams a bottle of champagne into an ice bucket.,\"leans on the radio, steering them inside.\"\n10531,lsmdc3083_TITANIC2-38958,14500,\"As someone sweeps up the coins, someone grabs his collar. Someone\",\"As someone sweeps up the coins, someone grabs his collar.\",Someone,gold,has tears in her eyes as he chugs and sneaks his drink.,surreptitiously grabs his sandwich and drops it on the table.,closes his eyes as someone makes a fist.,walks up the stairs.\n10532,lsmdc3083_TITANIC2-38958,14496,\"Blond someone deals someone another card. Eyes narrowed, someone\",Blond someone deals someone another card.,\"Eyes narrowed, someone\",gold,glares at his tall - uncle man.,smokes a cigarette as he peers across the table to someone's partner.,gets up and stares at someone.,licks his lips and looks away.\n10533,lsmdc3083_TITANIC2-38958,14507,\"Hundreds of passengers wave to the people on the dock below as tugboats pull the Titanic away from shore. Underwater, massive propellers\",Hundreds of passengers wave to the people on the dock below as tugboats pull the Titanic away from shore.,\"Underwater, massive propellers\",gold,\"rise into a small fog, folding against the walls with glass panels.\",\"fill the wooden surface, where the titanic's evil wings float back towards its surface.\",\"swarm out, high toward someone barren - smash - chucks room.\",\"turn, churning up clouds of silt.\"\n10534,lsmdc3083_TITANIC2-38958,14504,\"Later, the two young men run along the dock. Someone and someone\",\"Later, the two young men run along the dock.\",Someone and someone,gold,\"peer down a long, narrow hallway.\",run up a gangplank.,step into the room.,sit on the floor.\n10535,lsmdc3083_TITANIC2-38958,14508,\"Underwater, massive propellers turn, churning up clouds of silt. On the dock, a bearded man\",\"Underwater, massive propellers turn, churning up clouds of silt.\",\"On the dock, a bearded man\",gold,grabs sunglasses and uses them to cover the area with a blanket.,enters an idling boats and peers through a large electronic vent.,turns a crank on a movie camera as the ship glides forward.,uses one of his hands to fan a sweaty beard.\n10536,lsmdc3083_TITANIC2-38958,14494,\"Inside a saloon with a view of the Titanic, men smoke and drink as they play a game of cards. A brown - haired card player\",\"Inside a saloon with a view of the Titanic, men smoke and drink as they play a game of cards.\",A brown - haired card player,gold,files from one for someone.,texting on the phone.,turns to a man beside him.,stares blankly at the corner of the screen.\n10537,lsmdc3083_TITANIC2-38958,14498,A black - haired man raps his knuckles on the table. Someone,A black - haired man raps his knuckles on the table.,Someone,gold,glumly opens the chopsticks.,sees a face of the building.,lays down his cards.,are all staring at.\n10538,lsmdc3083_TITANIC2-38958,14509,\"On the dock, a bearded man turns a crank on a movie camera as the ship glides forward. White seagulls\",\"On the dock, a bearded man turns a crank on a movie camera as the ship glides forward.\",White seagulls,gold,appear no larger than insects as they flutter past the titanic's massive prow.,fly along the water in front of the full interior.,fly into the night sky.,fly happily through the sky as the hyena's face extends over the binoculars.\n10539,lsmdc3083_TITANIC2-38958,14511,\"In her cabin, someone unpacks a painting. A porter\",\"In her cabin, someone unpacks a painting.\",A porter,gold,carries in a pair of suitcases as someone enters from the adjoining promenade deck.,hurries down the stairs from the telegraph office.,approaches the oblivious little girl and walks across an alleyway.,appears and someone grabs the lobby.\n10540,lsmdc3083_TITANIC2-38958,14502,Someone kisses the tickets and hugs someone. Someone,Someone kisses the tickets and hugs someone.,Someone,gold,carries someone into a coffee station.,quickly sweeps the winnings into someone's cap.,walks off and ties her bag in her lap.,whips off the card and walks away.\n10541,lsmdc3083_TITANIC2-38958,14503,\"Someone quickly sweeps the winnings into someone's cap. Later, the two young men\",Someone quickly sweeps the winnings into someone's cap.,\"Later, the two young men\",gold,\"are calmly boarding cover big creek giant sliding holes, somewhat roped to the spot.\",lean forward and wave back at the male and resident.,bundle a moat bank off to one.,run along the dock.\n10542,lsmdc3083_TITANIC2-38958,14497,\"Eyes narrowed, someone smokes a cigarette as he peers across the table to someone's partner. A black - haired man\",\"Eyes narrowed, someone smokes a cigarette as he peers across the table to someone's partner.\",A black - haired man,gold,\"rubs his chin against the microphone, taking in a joyful expression.\",raps his knuckles on the table.,walks up and pulls one arm at her back.,joins his young colleague in bed.\n10543,lsmdc3083_TITANIC2-38958,14495,A brown - haired card player turns to a man beside him. Blond someone,A brown - haired card player turns to a man beside him.,Blond someone,gold,lowers an arm after a trembling someone.,deals someone another card.,starts cutting a tiny piece of watermelon.,ambles over to someone and shakes the boy's arm.\n10544,anetv_KKbfCtmIE0o,8088,The same woman demonstrates Tai Chi indoors on a stage. A second woman,The same woman demonstrates Tai Chi indoors on a stage.,A second woman,gold,\"demonstrates how to lift a baton with pom memorabilia and judges, then colorful the screen cuts.\",joins the first woman to help demonstrate.,\"hands the girl various hula hoops, and now she is showing how to make a pose.\",walks on the brown floor and walks behind her finishes the performance.\n10545,anetv_KKbfCtmIE0o,8087,A woman demonstrates how to do Tai Chi outside on the grass. The same woman,A woman demonstrates how to do Tai Chi outside on the grass.,The same woman,gold,is wearing a pair of overalls.,is on a swing set in an indoor roofed gym equipment during a competition.,demonstrates tai chi indoors on a stage.,stops and walks away.\n10546,lsmdc0010_Frau_Ohne_Gewissen-51540,2273,She turns again to the window so he won't see that she is crying. Someone,She turns again to the window so he won't see that she is crying.,Someone,gold,\"shakes his head and looks back at someone, crestfallen to see someone falling.\",gets up and goes to her.,comes out into her apartment with several partial ease.,\"walks into someone's kitchen, making people read as she walks to the window.\"\n10547,lsmdc3023_DISTRICT_9-10894,10354,\"Streaked with the alien's blood, someone jerks back and forth numbly. Someone\",\"Streaked with the alien's blood, someone jerks back and forth numbly.\",Someone,gold,sits down and takes the container from someone's hands and raises it in handcuffs.,takes his baby from someone.,glances back at someone.,lies strapped to a table.\n10548,lsmdc3023_DISTRICT_9-10894,10353,\"The executive smiles at the monitors. Streaked with the alien's blood, someone\",The executive smiles at the monitors.,\"Streaked with the alien's blood, someone\",gold,puts her arm around someone.,jerks back and forth numbly.,crosses to the packet where a paper case lies atop the desk.,reels up and down.\n10549,lsmdc3016_CHASING_MAVERICKS-6692,15383,\"Going to the kitchen, he finds someone making breakfast. He\",\"Going to the kitchen, he finds someone making breakfast.\",He,gold,\"steps into a room, and eats an ice cream sundae.\",hands someone glass champagne.,pauses at her tidy appearance.,drinks and swivels his head then looks down sadly.\n10550,lsmdc3016_CHASING_MAVERICKS-6692,15386,\"Grinning proudly, someone pours orange juice. Yielding a smile, the teen\",\"Grinning proudly, someone pours orange juice.\",\"Yielding a smile, the teen\",gold,bows and reaches out to take off the apron.,stranger someone sits with him.,goes to the table and sits.,gives someone a packaged look.\n10551,lsmdc3016_CHASING_MAVERICKS-6692,15377,\"Someone takes it and sips. His bleary, someone\",Someone takes it and sips.,\"His bleary, someone\",gold,sits reading into the studio.,is in a pool of sunlight.,twists around and looks over his shoulder.,notices people sitting on the wall watching.\n10552,lsmdc3016_CHASING_MAVERICKS-6692,15389,\"Tearing off the wrapping paper, someone reveals a weather radio. Someone\",\"Tearing off the wrapping paper, someone reveals a weather radio.\",Someone,gold,takes it from its box with a stunned gaze.,lies on a nearby bed.,walks around to snap at the leaves.,shoots at his face.\n10553,lsmdc3016_CHASING_MAVERICKS-6692,15379,\"Spying hills in the hazy distance, he faces his protege with a surprised delighted smile. The youth\",\"Spying hills in the hazy distance, he faces his protege with a surprised delighted smile.\",The youth,gold,stretches out on his stomach and heads for the distant shore.,toss his wig into the trees and waits for an entrance.,opens the bag and presses the fingers to his nose.,stares grimly wryly toward the rice gleaming ballroom.\n10554,lsmdc3016_CHASING_MAVERICKS-6692,15385,Someone takes the money uneasily. Someone,Someone takes the money uneasily.,Someone,gold,\"looks over the huddles, then taps it against the wall.\",drips footprints down the mountain.,strides back to the stove and resumes cooking.,sets the letter back completely.\n10555,lsmdc3016_CHASING_MAVERICKS-6692,15382,\"Now in his room, someone uses a blue marker to fill the remaining empty space in the miles bar on his poster of training goals. Going to the kitchen, he\",\"Now in his room, someone uses a blue marker to fill the remaining empty space in the miles bar on his poster of training goals.\",\"Going to the kitchen, he\",gold,lets the second proprietor finish off.,finds someone making breakfast.,finds an array of eagle - sized arenas with his dingy apartment covered in blood.,overjoyed his mail similar to the redhead.\n10556,lsmdc3016_CHASING_MAVERICKS-6692,15380,Rustic houses and a patio decorated with colorful fishing buoys form a barrier around the secluded spot. Our view,Rustic houses and a patio decorated with colorful fishing buoys form a barrier around the secluded spot.,Our view,gold,drifts through the trees.,draws closer near the trees and shows the tree - lined netting as it is in a silver - trimmed size.,takes a few blocks out of the quizzical tent just out of vito's compound.,\"drifts past the two paddleboards to find someone and someone sitting side by side, enjoying their accomplishment.\"\n10557,lsmdc3016_CHASING_MAVERICKS-6692,15378,\"His bleary, someone twists around and looks over his shoulder. Spying hills in the hazy distance, he\",\"His bleary, someone twists around and looks over his shoulder.\",\"Spying hills in the hazy distance, he\",gold,watches someone sleeping with someone.,releases the oxygen - looking panicking under the water.,faces his protege with a surprised delighted smile.,finds curiosity and snowy pets.\n10558,lsmdc3016_CHASING_MAVERICKS-6692,15381,\"Our view drifts past the two paddleboards to find someone and someone sitting side by side, enjoying their accomplishment. Now in his room, someone\",\"Our view drifts past the two paddleboards to find someone and someone sitting side by side, enjoying their accomplishment.\",\"Now in his room, someone\",gold,\"piles his lunch in ash, bending over to get his butt out of someone's lap.\",uses a blue marker to fill the remaining empty space in the miles bar on his poster of training goals.,looks completely fearfully at the departing tiger and hands it to someone.,calls out from his office.\n10559,lsmdc3016_CHASING_MAVERICKS-6692,15388,\"His beaming mother looks on as she scoops scrambled eggs from a pan. Tearing off the wrapping paper, someone\",His beaming mother looks on as she scoops scrambled eggs from a pan.,\"Tearing off the wrapping paper, someone\",gold,receives an ornate knife and hanged a sculpture.,\"kneels, unfolds the letter, and finds it completely wrapped in gauze.\",reveals a weather radio.,stuffs a salad bag on the board.\n10560,lsmdc3016_CHASING_MAVERICKS-6692,15384,He pauses at her tidy appearance. She,He pauses at her tidy appearance.,She,gold,gestures to the table.,\"goes off, moving voices in the direction of a old vacuum.\",dashes around in her purse.,slips his cotton - ring finger into her bent fingers.\n10561,lsmdc1007_Spider-Man1-74829,6703,\"Someone leans over the balcony and looks down and up. Later, out of costume, someone\",Someone leans over the balcony and looks down and up.,\"Later, out of costume, someone\",gold,is carrying a present of their superhero.,\"paints the smooth, clean canvas with his polish.\",sits in an planetarium 'pizza - room empty ashtray.,walks through the front door.\n10562,lsmdc1007_Spider-Man1-74829,6699,\"The others leave someone in someone's room. As he turns to walk out, the drop of blood\",The others leave someone in someone's room.,\"As he turns to walk out, the drop of blood\",gold,falls to his punch gun.,rises from her left leg.,hits someone's forehead.,falls to the floor.\n10563,lsmdc1007_Spider-Man1-74829,6694,They are all gathered in the living room by the bottom of the stairs. Someone,They are all gathered in the living room by the bottom of the stairs.,Someone,gold,\"walks down the hallway, wearing a white dressing gown and a black belt.\",starts to make her way up.,is seated at her kitchen table in an sophisticated blue dress.,sees a smile in her face.\n10564,lsmdc1007_Spider-Man1-74829,6706,Someone licks his fingers and looks malevolently at the white haired someone. He,Someone licks his fingers and looks malevolently at the white haired someone.,He,gold,gazes tenderly at someone.,\"picks up the carving knife and begins to sharpen it, a sneer on his face.\",and someone shake their keys.,\"swivels and looks around, puzzled.\"\n10565,lsmdc1007_Spider-Man1-74829,6700,\"As he turns to walk out, the drop of blood falls to the floor. Someone's enhanced hearing\",\"As he turns to walk out, the drop of blood falls to the floor.\",Someone's enhanced hearing,gold,picks up the sound of the drop hitting the floor.,\"is suddenly blurred, strong and urgent.\",is distant.,can be heard from inside the basement.\n10566,lsmdc1007_Spider-Man1-74829,6707,\"He picks up the carving knife and begins to sharpen it, a sneer on his face. Someone\",\"He picks up the carving knife and begins to sharpen it, a sneer on his face.\",Someone,gold,notices blood seeping through someone's shirt.,\"stands in his chair, ready for something on the sky.\",\"grins mournfully, now at his enemies contents.\",squints upward and points.\n10567,lsmdc1007_Spider-Man1-74829,6701,Someone's enhanced hearing picks up the sound of the drop hitting the floor. He,Someone's enhanced hearing picks up the sound of the drop hitting the floor.,He,gold,looks at someone's cat - constructed neighbor.,\"looks around, spots the blood, then raises his eyes to the ceiling.\",hops through the well end zone and gets up.,can be seen of more than fresh flowers.\n10568,lsmdc1007_Spider-Man1-74829,6697,\"Someone's clinging to the ceiling. Still in costume, he\",Someone's clinging to the ceiling.,\"Still in costume, he\",gold,unfastens and cuts her bloody ankle.,\"goes to the old blue parlor, sets a lamp on his desk, then goes into another classroom where someone sits with him.\",\"notices blood trickling down his arm, ready to drop.\",spits blood from his mouth beneath the water quickly.\n10569,lsmdc1007_Spider-Man1-74829,6702,Someone screws up his eyes and heads for the open window. Someone,Someone screws up his eyes and heads for the open window.,Someone,gold,gets into a sedan with a pad of spade equipment.,leans over the balcony and looks down and up.,watches tensely as he slams on the door.,beckons someone for the dining room.\n10570,lsmdc1007_Spider-Man1-74829,6705,Someone is sitting at the head of the table and someone opposite people. Someone,Someone is sitting at the head of the table and someone opposite people.,Someone,gold,set an enormous turkey in front of someone.,wanders in front of someone as the owner continues to clap.,\"sits on the table, his face covered in blood.\",\"stamping, like cattle, make their way through the crowd, then people to display his own reaction.\"\n10571,lsmdc1007_Spider-Man1-74829,6695,Someone starts to make her way up. He,Someone starts to make her way up.,He,gold,gets to her feet.,whips off his mask.,enters and lies into his arm.,flinches as someone gets to his feet.\n10572,anetv_520b6oA9s-U,1247,\"The woman puts solids on a big bowl and then add the wet mix, oil and milk, then mix with an spatula. After, the woman\",\"The woman puts solids on a big bowl and then add the wet mix, oil and milk, then mix with an spatula.\",\"After, the woman\",gold,puts the mix in a greased baking pan and make a syrup with orange juice in a pot.,adds the silicone paste and add the brush to add to the cone that the best to put in so long tree.,\"adds the salad to a lettuce, while making a deal.\",\"adds sausage, flour, flour, noodles, then wrap.\"\n10573,anetv_520b6oA9s-U,1248,\"After, the woman puts the mix in a greased baking pan and make a syrup with orange juice in a pot. Next, she\",\"After, the woman puts the mix in a greased baking pan and make a syrup with orange juice in a pot.\",\"Next, she\",gold,puts cream and put sugar in some water and the mixture sugar with sugar.,\"mended the tomato and lemon, serve the eggs and sugar in a bowl.\",applies the ingredients to the metal counter using the bread on a plate with a little spoon.,put the baking cake on a dish and put syrup on top.\n10574,anetv_mQHY2uMOMP4,9628,She is demonstrating how to cut long hair on men. Her model,She is demonstrating how to cut long hair on men.,Her model,gold,in up strands and ends becomes upset.,the hood is displayed.,begins to hang another hose above her arm.,is seated in a chair next to her as she combs his wet hair.\n10575,anetv_mQHY2uMOMP4,9630,She continues the procedure on the model's hair. She then,She continues the procedure on the model's hair.,She then,gold,fixes the lenses across his eyes.,explains how to blow dry the hair to get the finished look on the model.,puts the contact lens under her eye and puts her eye on it.,cut the shirt and twists it around her braid.\n10576,anetv_mQHY2uMOMP4,9627,\"The video instructor, Stephanie is talking about a hair tutorial. She\",\"The video instructor, Stephanie is talking about a hair tutorial.\",She,gold,\"is using her exercise using clippers, trying to shoot blows.\",is demonstrating how to cut long hair on men.,and spotless out onto the floor and uses the knife to lift the weights that are above off.,\"puts white hair in her mouth, then get out.\"\n10577,anetv_mQHY2uMOMP4,9629,She shows how the hair is parted and sectioned before cutting the hair She uses scissors to point cut the tips of the model's hair. She,She shows how the hair is parted and sectioned before cutting the hair She uses scissors to point cut the tips of the model's hair.,She,gold,brushes back hair while flipping and putting it hair sheet down.,lifts the sash and hands it to her.,talks and shaves it together with the brush moved by males.,continues the procedure on the model's hair.\n10578,anetv_mQHY2uMOMP4,9631,She then explains how to blow dry the hair to get the finished look on the model. She finally,She then explains how to blow dry the hair to get the finished look on the model.,She finally,gold,gives information about her website.,\"return the smaller braids, add a, clear hair done and put on more natural form.\",uses the tape to wrap the hair.,holds out purple strands of paper to her client.\n10579,anetv_GJz8FEFB70w,12419,Two people lift a large weight over their heads. They,Two people lift a large weight over their heads.,They,gold,drop the weight to the ground.,continue flips and flipped through the air.,fly slack.,stop dancing and clap their hands.\n10580,anetv_GJz8FEFB70w,12420,They drop the weight to the ground. The weights,They drop the weight to the ground.,The weights,gold,are shown on each side.,line up before the dropped four.,appear as they lay the each up.,move up and down while people sit around them.\n10581,lsmdc3039_JACK_AND_JILL-2686,6382,Someone notices him and straightens demurely. And the manish woman,Someone notices him and straightens demurely.,And the manish woman,gold,stares after the player.,points inquisitively to herself.,seems to be fighting sorrowfully.,returns the elf away.\n10582,anetv_7EEpIeXhO54,6079,Another person is seen walking off a diving board and jumping into the water. Several more clips,Another person is seen walking off a diving board and jumping into the water.,Several more clips,gold,are shown of people kite jumps with others floating on the side.,are shown of people attempting to dive in the water but failing.,are shown of people climbing on as well as fall in a swimming pool.,are shown of people diving in the sealife as well as speaking to the camera.\n10583,anetv_7EEpIeXhO54,6078,A large pool is seen followed by a person walking in and falling off a board. Another person,A large pool is seen followed by a person walking in and falling off a board.,Another person,gold,is seen spraying water all on the water as well as several other members of drink.,is seen putting leaves into a pool with water over it.,goes around people holding a kite as well as flipping and flipping one flipping as well as swim.,is seen walking off a diving board and jumping into the water.\n10584,anetv_IqXaLlFSWwc,17845,A young man performs a high jump over a raised white pole and onto a red mat on an outdoor sports field at night. A young man,A young man performs a high jump over a raised white pole and onto a red mat on an outdoor sports field at night.,A young man,gold,\"stands, at night, in shorts and does brief stretches before getting a running start and running towards a raised bar.\",throws the ball back on his sprint and dismounts.,stands in the field and sprints as the camera as a ball passes from a side to him.,is sobbing the entire stage while skilled at a competition.\n10585,anetv_IqXaLlFSWwc,17340,A man prepares for a high jump. The man then,A man prepares for a high jump.,The man then,gold,steps forward and rubs.,performs several more martial routines.,completes the high jump successfully.,jumps and spins in a complete body with several girls and then team net to stand hands.\n10586,anetv_WLpjci5dN8s,4583,The scissors cut a purple towel and a piece of paper. Words,The scissors cut a purple towel and a piece of paper.,Words,gold,up are repeated.,repeat her fashionable nails showing the name on her dips form.,see the finished product as the man rinses the knife.,are shown on the screen again.\n10587,anetv_WLpjci5dN8s,4581,A knife is put into a sharpener and moved back and forth and used on a circular sharpener. A pair of scissors,A knife is put into a sharpener and moved back and forth and used on a circular sharpener.,A pair of scissors,gold,appears and begins cutting the shapes with lemons.,are placed on many different tools.,is then cut close by as if the knife has cut a clear out.,is sharpened on the sharpener.\n10588,anetv_WLpjci5dN8s,4582,A pair of scissors is sharpened on the sharpener. The scissors,A pair of scissors is sharpened on the sharpener.,The scissors,gold,cuts cut it with scissors.,cut up dresser in cups on the broken nails.,cut a purple towel and a piece of paper.,tool places the design on the professor's nails.\n10589,anetv_ahY7nqwwJEg,7436,The video leads into several clips of people performing skateboarding tricks out in public places. Many more clips,The video leads into several clips of people performing skateboarding tricks out in public places.,Many more clips,gold,are shown followed by more clips of people running around a field and running down a street and celebrating with their hands.,are shown of people riding around on skateboards doing flips and tricks.,are shown of spectators flipping and jumping ready to flip.,are shown of the trainers weaving up and tricks and others move down a street.\n10590,anetv_TMGG5x-UQ2s,16737,Nother shot is shown of a train of kids on inner tubes going down the hill. A child's face,Nother shot is shown of a train of kids on inner tubes going down the hill.,A child's face,gold,falls as a group of people walk in the bridge.,falls off to the floor covered in a hospital room.,is shown as he is speaking to the camera.,is shown on a lake but does n't seem to stay.\n10591,anetv_TMGG5x-UQ2s,8475,People are going down in snowy slides. people sitting on snow slides,People are going down in snowy slides.,people sitting on snow slides,gold,go down freeze slack.,down to their knees.,gets back onto a skateboard.,are going down a hill.\n10592,anetv_TMGG5x-UQ2s,16735,A few kids are walking in the snow behind a wall. The shot,A few kids are walking in the snow behind a wall.,The shot,gold,are shown to land shadows on the ground to the background.,is then of a bunch of people on sleds going down the snow covered hill.,goes into the trunk.,of a residential is shown on a pot and a napkin to his other.\n10593,anetv_TMGG5x-UQ2s,16736,The shot is then of a bunch of people on sleds going down the snow covered hill. nother shot,The shot is then of a bunch of people on sleds going down the snow covered hill.,nother shot,gold,with beautiful people are alarmed.,appears and a woman looks extremely in a blind direction.,is shown of a train of kids on inner tubes going down the hill.,stops only once and collapses down on the ground.\n10594,anetv_TMGG5x-UQ2s,16738,They then slide down the hill very fast and they are excited. They,They then slide down the hill very fast and they are excited.,They,gold,go doing the jumps down the slide.,continue other people ride back and forth in another row.,smile and continue down the hill.,move off over and wave at the camera.\n10595,anetv_LublNVXGH5I,1362,A man points to and picks up a pressurized spray can to display it. The man then,A man points to and picks up a pressurized spray can to display it.,The man then,gold,applies a reps table.,picks up a roll of paper towels.,pours over paints gold on the man.,returns to the images to wash a car to ensure it was covered.\n10596,anetv_LublNVXGH5I,1364,The man shakes the pressurized spray can. The man,The man shakes the pressurized spray can.,The man,gold,sprays the window where the stain is and wipes the area with a paper towel.,\"wipes off a car with the knife, wipes it on the towel, and wipes the ski.\",\"arches it, spraying it with a towel then moves a handle.\",pours the liquid into the bottle.\n10597,anetv_-79MZQX4CEA,5037,A man in a suit is sitting at a desk. Another man in a suit,A man in a suit is sitting at a desk.,Another man in a suit,gold,is talking in front of a large television.,slows up and walks away.,picks a man up and picks up a weight.,sits on the grass.\n10598,anetv_-79MZQX4CEA,12353,A man in a suit is talking. Another man in a suit,A man in a suit is talking.,Another man in a suit,gold,sits on a man in a blue shirt.,washes a large glass of water.,talks in front of a tv screen.,bends down onto the man's arm.\n10599,anetv_-79MZQX4CEA,12354,Another man in a suit talks in front of a tv screen. People,Another man in a suit talks in front of a tv screen.,People,gold,shoot at him from head to toe.,displays in different images.,stand open a line and start archery again.,are running around on a field playing lacrosse.\n10600,anetv_-79MZQX4CEA,5038,Another man in a suit is talking in front of a large television. People,Another man in a suit is talking in front of a large television.,People,gold,are shown sitting on a boat inside the tube.,are playing soccer on a field of grass.,are sitting in a big room playing beer pong.,is canoeing and playing on a grassy deck.\n10601,anetv_-79MZQX4CEA,5039,People are playing soccer on a field of grass. Two men in suits,People are playing soccer on a field of grass.,Two men in suits,gold,are playing a game of field hockey.,are playing a game of soccer.,serve a tennis ball on a beach.,are talking behind a desk.\n10602,anetv_yeEe8-aYA2E,13648,He does stunts and turns on the bike. He,He does stunts and turns on the bike.,He,gold,goes up and down ramps in a skate park.,goes back to the bike but does n't fall.,runs onto a parallel ramp and lands on a skateboard.,skateboarders doing tricks jump tricks at a skate park.\n10603,anetv_yeEe8-aYA2E,13647,A man is riding a bike while wearing a helmet. He,A man is riding a bike while wearing a helmet.,He,gold,is outside on a pair of skis.,speaks to the camera while a man wraps his arms around him.,pulls back a large truck traveling in the river.,does stunts and turns on the bike.\n10604,anetv_yeEe8-aYA2E,5748,He is jumping off a ramp. He,He is jumping off a ramp.,He,gold,jumps up and down to the sand.,runs down a street with the kites.,is seen jumping off his bike.,stands on the stilts and leaves.\n10605,anetv_yeEe8-aYA2E,5747,A man is riding a bike down the sidewalk. He,A man is riding a bike down the sidewalk.,He,gold,is riding the car in a park.,gets up and walks across the track.,begins to talk next to the porch.,is jumping off a ramp.\n10606,anetv_YPFk9ftkzl4,4080,A boy is sitting at a wooden table in a cafe. He,A boy is sitting at a wooden table in a cafe.,He,gold,\"lights a hookah, then pulls a drag on the smoke.\",is doing various moves in a low coat that she wants things to do.,comes from the camera and hits a hits with the racket.,is doing something sandwich on a cooker.\n10607,anetv_YPFk9ftkzl4,4081,\"He lights a hookah, then pulls a drag on the smoke. He\",\"He lights a hookah, then pulls a drag on the smoke.\",He,gold,\"sits back, blowing smoke out of his mouth.\",starts smoking and starts playing.,looks up and smiles.,begins blowing smoke out of a smoke.\n10608,anetv_hsJct3UsbAs,16839,These 2 people are standing on skis waiting for the boat to pull them in the water. Then they stand up and the boat,These 2 people are standing on skis waiting for the boat to pull them in the water.,Then they stand up and the boat,gold,is water sailing along the water.,begins paddling through the empty water.,is starting to break.,begins to pull them.\n10609,anetv_hsJct3UsbAs,19224,A boat is seen riding along a large lake with two people skiing on the back of the boat. The people ride on the skis for quite some time and one,A boat is seen riding along a large lake with two people skiing on the back of the boat.,The people ride on the skis for quite some time and one,gold,continues to ski and float up.,rides up the road with the person capturing them in the end.,moves into the other and both crash.,surfer approaches a man skiing up on a snowboard.\n10610,anetv_hsJct3UsbAs,16840,Then they stand up and the boat begins to pull them. The boat pulls them by the what they're attached to and they,Then they stand up and the boat begins to pull them.,The boat pulls them by the what they're attached to and they,gold,water ski happily ever after.,are enjoying themselves from the end of the road.,just hold out lemon sails through the water as well as display on the top.,'re water skiing over the boat.\n10611,anetv_cdHBwzbNI5Y,17607,A girl in a sparkling outfit marches onto the court followed by other girls. They,A girl in a sparkling outfit marches onto the court followed by other girls.,They,gold,girls looks around and speaking to one another then a boy in yellow shirt walks up to the camera.,jumps up and poses with the batons together.,continually standing on a wooden steps and cymbals remorsefully.,are holding batons as they march.\n10612,anetv_cdHBwzbNI5Y,17608,They are holding batons as they march. They then,They are holding batons as they march.,They then,gold,perform several playing rally and back and forth exercises.,twirl around a corner and twirl in several unison.,do somersaults and rail in unison.,\"walk away, off the court.\"\n10613,anetv_woiigfrANUM,3552,The man skates down a halfpipe and goes back and forth from one end to the other. The man,The man skates down a halfpipe and goes back and forth from one end to the other.,The man,gold,loses his skateboard and comes down the wall on his knees.,stops playing the racket.,pass near their clothes by waking him into funny clips.,zips the marathon and lands on the street as people pass by on the street.\n10614,anetv_woiigfrANUM,3553,The man loses his skateboard and comes down the wall on his knees. We,The man loses his skateboard and comes down the wall on his knees.,We,gold,see his right chopping the wood of the ax and swing them back.,see the floors fall and fall in the grass.,see the man in the woods.,see the man's disappointment as another man prepares to skate.\n10615,anetv_woiigfrANUM,3554,We see the man's disappointment as another man prepares to skate. The man,We see the man's disappointment as another man prepares to skate.,The man,gold,flips the cameraman and releases the kite.,holds the pole and powders the boy's face.,walks away and hops on his skateboard behind the stage.,shoots the ball that runs across the field.\n10616,lsmdc3080_THIS_MEANS_WAR-37443,19174,\"Now someone is bare feet, move up and down. She\",\"Now someone is bare feet, move up and down.\",She,gold,helps to leather equipment.,rolls up atop side as passes.,'s robe slips out of.,rests from using her fitness ball.\n10617,lsmdc3080_THIS_MEANS_WAR-37443,19173,She heads up some stairs. Now someone,She heads up some stairs.,Now someone,gold,\"is bare feet, move up and down.\",sees a black structure atop a mountain beneath.,'s jaguar turns outside home.,\"sits in the hospital suite with a bag tied to her shoulder, in her bra.\"\n10618,lsmdc0020_Raising_Arizona-57232,5220,\"Behind him, in the background, just rounding the open door from the nursery, yet another baby is making a mad dash for freedom. Someone\",\"Behind him, in the background, just rounding the open door from the nursery, yet another baby is making a mad dash for freedom.\",Someone,gold,\"looks through her window at someone, reacting the bouncers punch.\",\"emerges from the nursery and, stepping around the background baby, trots toward the baby in the foreground.\",hugs the rail to her friend.,\", first, is touching the door, with someone around her wagon.\"\n10619,lsmdc0020_Raising_Arizona-57232,5219,\"The floor - level wide - angle shot shows a baby crawling toward the camera in the foreground. Behind him, in the background, just rounding the open door from the nursery, yet another baby\",The floor - level wide - angle shot shows a baby crawling toward the camera in the foreground.,\"Behind him, in the background, just rounding the open door from the nursery, yet another baby\",gold,is making a mad dash for freedom.,is pushed slowly onto the floor.,intermittently reflected in the lens.,has been blown out.\n10620,anetv_TIAAUayALPI,19251,A woman is styling different women's hair. She,A woman is styling different women's hair.,She,gold,is talking about how she styles their hair.,is inside and removing varnish ginger hair.,brushes the hair away from her face.,brushes her hair with her work before combing it.\n10621,anetv_TIAAUayALPI,14597,The stylist unravels the braids then braids them backwards in a french braid. The stylist,The stylist unravels the braids then braids them backwards in a french braid.,The stylist,gold,shakes her hand to stand and bows.,is finally washed her final hair above her head.,ruffles and styles the hair with the new braid.,parts all the parts of the hair.\n10622,anetv_TIAAUayALPI,14595,The stylist runs her hands through a patrons hair and decides how to proceed. The stylist,The stylist runs her hands through a patrons hair and decides how to proceed.,The stylist,gold,flips the long hair back to make sure it is pretty.,looks calm and steady.,brushes her facial hair and ends by getting out of the car.,sprays product in the hair then separates sections and braids them.\n10623,anetv_TIAAUayALPI,19252,She is talking about how she styles their hair. She,She is talking about how she styles their hair.,She,gold,\"cleans her hair,.\",demonstrates some of her techniques as she goes.,\"works out of a hair curler, combing and combing her hair.\",removes her hair from the sides of her face and braids them with a pack.\n10624,anetv_TIAAUayALPI,14596,The stylist sprays product in the hair then separates sections and braids them. The stylist,The stylist sprays product in the hair then separates sections and braids them.,The stylist,gold,rubs the excess laborers face with a barbie board and then moves them under his hat to brush the cloth.,\"interviewed: black hair with gray hair, clipping it and removing it from the dog.\",unravels the braids then braids them backwards in a french braid.,applies sunscreen from side to side as the situps accepts.\n10625,anetv_TIAAUayALPI,14594,A stylist bushes people's hair and style is with hands. The stylist,A stylist bushes people's hair and style is with hands.,The stylist,gold,runs her hands through a patrons hair and decides how to proceed.,uses an electric razor to tie a woman's hair.,is holding a long fur - poodle blow dryer and applies it to the back of the woman hair as she talks.,resumes bobby pins using a hair iron and puts her hair around in a bun and shakes her hair back over.\n10626,lsmdc1024_Identity_Thief-82536,12875,The skiptracer twists his wrist. He,The skiptracer twists his wrist.,He,gold,stops and inches backwards from the car.,\"puts the glove over someone's head, obviously frustrated.\",writes it down and hands the skiptracer a slip of paper.,tosses his arms to the life preserver and lifts the shield.\n10627,lsmdc1024_Identity_Thief-82536,12877,The skiptracer holds his gun up to the window. Someone's thugs,The skiptracer holds his gun up to the window.,Someone's thugs,gold,approach with silenced pistols.,kiss him and both arrive in front of it.,travel the bush to an armored truck.,\"step close to him, deep in thug.\"\n10628,lsmdc1024_Identity_Thief-82536,12873,\"Now, they pull out of the lot in an old, run - down Chevy Caprice. Tossing it on the ground he\",\"Now, they pull out of the lot in an old, run - down Chevy Caprice.\",Tossing it on the ground he,gold,\"spots someone, shifting his tender gaze back to the vampire.\",steps a few more rows down.,walks over to the ticket booth.,takes his hand and waltzes it on her.\n10629,lsmdc1024_Identity_Thief-82536,12874,Tossing it on the ground he walks over to the ticket booth. He,Tossing it on the ground he walks over to the ticket booth.,He,gold,\"looks around the empty station, then sees the attendant with the hand out.\",\"pauses, disconnects it, and strides through a rich city street set.\",\"parks back, forming a crushed u - turn and toppling off.\",takes aside the hotel.\n10630,lsmdc3026_FRIENDS_WITH_BENEFITS-1444,2389,They go out to the patio. He,They go out to the patio.,He,gold,enters and finds someone with marley.,hugs a boy in a tuxedo.,waves the group up at someone.,puts it through the window.\n10631,lsmdc3026_FRIENDS_WITH_BENEFITS-1444,2388,They enter a friendly stylish home where open double doors reveal a beachfront patio. They,They enter a friendly stylish home where open double doors reveal a beachfront patio.,They,gold,go out to the patio.,fill the dim hallway of the two men.,\"turn from a rosemoor surf to watch each family, including the baby someone.\",sit in street chairs.\n10632,lsmdc3026_FRIENDS_WITH_BENEFITS-1444,2391,A tall blond woman arrives. She,A tall blond woman arrives.,She,gold,gazes in a wardrobe as he wheels.,lifts him in a hug.,\"enters, spinning a small pincer but misses.\",starts among the pedestrians.\n10633,lsmdc3018_CINDERELLA_MAN-8314,19414,Someone turns and shakes hands with a gentleman in a suit. It,Someone turns and shakes hands with a gentleman in a suit.,It,gold,advance straight across the court.,walks into someone's office and smiles at someone.,shows a packed arena.,bounces off the platform then heads left back at him.\n10634,lsmdc1041_This_is_40-9133,18727,\"On a stage, kids paint a set. Someone's parents\",\"On a stage, kids paint a set.\",Someone's parents,gold,watch watches as he smiles and gazes ahead.,watch a tv cage as someone goes.,watch from a row in the back.,watch as the mohawked boy walks away.\n10635,anetv_zX9DZ_x9rJ4,544,\"A man and woman wearing red aprons appear in a kitchen with a white kitchen aid mixer in front of them and a banner on the screen displaying all the ingredients. The view then changes to a shot from above to show what the man is doing, and the banner on the screen\",A man and woman wearing red aprons appear in a kitchen with a white kitchen aid mixer in front of them and a banner on the screen displaying all the ingredients.,\"The view then changes to a shot from above to show what the man is doing, and the banner on the screen\",gold,shows what he is doing.,is still showing the ingredients that are being used.,cut to the camera stating the image of the bottom is howcast.,say's the final rule on the bread.\n10636,anetv_zX9DZ_x9rJ4,543,\"A black intro screen with white words appear and it notes the location, the people, and the cake they are going to make. A man and woman wearing red aprons\",\"A black intro screen with white words appear and it notes the location, the people, and the cake they are going to make.\",A man and woman wearing red aprons,gold,are together in one atop the pier.,are in cookies on a lighted window.,approach a sandwich co - woman talking as they pass some talk about different ages.,appear in a kitchen with a white kitchen aid mixer in front of them and a banner on the screen displaying all the ingredients.\n10637,anetv_zX9DZ_x9rJ4,545,\"The view then changes to a shot from above to show what the man is doing, and the banner on the screen is still showing the ingredients that are being used. The view\",\"The view then changes to a shot from above to show what the man is doing, and the banner on the screen is still showing the ingredients that are being used.\",The view,gold,is put in a different sky that falls and a person runs down some yellow mat down beside two wheels.,changes from front to a top angle as the man is mixing the ingredients.,\"is now between the men who walks once afterwards, boy out of their board and throw them as the man makes the ball.\",changes to little laugh as the camera captures the motion of the video.\n10638,anetv_zX9DZ_x9rJ4,546,\"The outro includes a picture of the man and woman standing together, their names, the name of the cake they made, their address and the news station that aired it. The credits then\",\"The outro includes a picture of the man and woman standing together, their names, the name of the cake they made, their address and the news station that aired it.\",The credits then,gold,\"black text appear, an animation on a social fancy dirt bike.\",shown showing that a lady is holding the camera and then start to elliptical and they the white loser is getting ready to compete.,begin to capture several clips of the christmas tree on a christmas tree which is getting spread.,begin to scroll from bottom to top on a black screen with white letters.\n10639,anetv_JDn95TW9WoM,8572,\"The teams continue playing indoor soccer. The young man plays with the person and scores, then they\",The teams continue playing indoor soccer.,\"The young man plays with the person and scores, then they\",gold,stick hurling on the field.,continue playing the game on the right side.,stand together while talking.,float all over the crowd.\n10640,anetv_JDn95TW9WoM,8571,\"Then, the young man talks and then plays with a yellow ball and scores, while a person stand next to him. The teams\",\"Then, the young man talks and then plays with a yellow ball and scores, while a person stand next to him.\",The teams,gold,pass the kites in the field as the man walks across the end of the table.,\"take turns throwing the ball, celebrating with each other.\",continue playing indoor soccer.,throws balls with the motivational tape behind them playing a shooting of.\n10641,anetv_JDn95TW9WoM,17536,A man in a blue shirt kicks a yellow soccer ball and scores a goal. A man in a red shirt,A man in a blue shirt kicks a yellow soccer ball and scores a goal.,A man in a red shirt,gold,hits the ball again and returns several overhand springs.,runs and shoots a ball down a road.,stands behind him and puts his arm around him.,goes over the javelin and misses again.\n10642,anetv_JDn95TW9WoM,8570,\"A young man talks, and then two teams play indoor soccer. Then, the young man\",\"A young man talks, and then two teams play indoor soccer.\",\"Then, the young man\",gold,\"talks and then plays with a yellow ball and scores, while a person stand next to him.\",throws the ball really far.,begins having a ball against someone and scores.,play all players while other occasions practice tennis for their scores.\n10643,anetv_JDn95TW9WoM,17535,People are playing soccer in an indoor arena. A man in a blue shirt,People are playing soccer in an indoor arena.,A man in a blue shirt,gold,is trying to prevent them from falling.,goes down to big crashes.,kicks a yellow soccer ball and scores a goal.,is sitting on a billiard mat.\n10644,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9706,6615,\"Someone finds himself in the cellar at Honeydukes. Wearing his invisibility cloak, he\",Someone finds himself in the cellar at Honeydukes.,\"Wearing his invisibility cloak, he\",gold,climbs a wooden staircase.,turns and walks along a balcony.,walks away from a bedside lamp.,\"hurries, follows someone through the dining room, and chugs a bottle of wine.\"\n10645,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9706,6616,Honeydukes' busy sweet shop is full of Hogwarts students choosing confectionary. Someone's red lollipop,Honeydukes' busy sweet shop is full of Hogwarts students choosing confectionary.,Someone's red lollipop,gold,\"has the glowing ball, then all at speed, straight up to the full auction.\",is snatched from his hand and flips out into the street.,flies up at someone.,can't keep him on.\n10646,lsmdc3032_HOW_DO_YOU_KNOW-2682,16853,Someone and someone chat in the walk - in closet. He,Someone and someone chat in the walk - in closet.,He,gold,step out of the water and sip the tea.,\"joins someone at a table, then reclines in a chair nearby.\",pulls out a chair.,wakes himself and cups his ass in his hands.\n10647,lsmdc3032_HOW_DO_YOU_KNOW-2682,16854,He pulls out a chair. He,He pulls out a chair.,He,gold,rips off the kitten's skin with a delicate twist.,\"eyes the area, then cocks his staff inquisitively.\",hands her a box.,shows off a new piece of harness.\n10648,lsmdc3032_HOW_DO_YOU_KNOW-2682,16852,Someone gives a half - hearted wave. Someone and someone,Someone gives a half - hearted wave.,Someone and someone,gold,continue the dance together.,sit in someone's corner to inspect her drinkers.,chat in the walk - in closet.,\"step into the cafe, which explodes.\"\n10649,lsmdc3032_HOW_DO_YOU_KNOW-2682,16855,He hands her a box. He,He hands her a box.,He,gold,bends slightly and bobs his shoulder.,pulls a cardboard box out of the envelope.,opens the door to her.,sits up and someone laughs.\n10650,lsmdc1018_Body_Of_Lies-80406,2208,Someone feels for a pulse in his neck. He,Someone feels for a pulse in his neck.,He,gold,jumps up and crushes his hand away.,makes a call on his mobile.,has a sinister grin as he halts.,\"strokes the fringe of someone's hair, leaving the scalp on her sober face.\"\n10651,lsmdc1018_Body_Of_Lies-80406,2210,Someone's lieutenant pours a drink. He,Someone's lieutenant pours a drink.,He,gold,hands the drink to someone.,pours alcohol into someone's mouth.,plunks a golf litter up on a small plate - rest on a table.,puts her cheek on his rag and wipes them under his eyes.\n10652,lsmdc1018_Body_Of_Lies-80406,2203,Someone walks up and follows him to his car. They,Someone walks up and follows him to his car.,They,gold,start through the hotel.,watch from the porch.,drive out of the new motel.,are watched by men in a white four - by - four.\n10653,lsmdc1018_Body_Of_Lies-80406,2207,Someone lies on the ground covered in blood. Someone,Someone lies on the ground covered in blood.,Someone,gold,feels for a pulse in his neck.,glances down at someone's hospital bedside.,opens a bottle with a bottle of cash.,waves and looks toward the bank clerk.\n10654,lsmdc1018_Body_Of_Lies-80406,2204,They are watched by men in a white four - by - four. Someone,They are watched by men in a white four - by - four.,Someone,gold,\"barrels through the front gates, using a row of arrows.\",gets in his car.,passes a ball to their son and into the distance.,raises an eyebrow at someone.\n10655,lsmdc1018_Body_Of_Lies-80406,2205,An agent drives the suv after the four - by - four but crashes. Someone,An agent drives the suv after the four - by - four but crashes.,Someone,gold,falls right down on the courtyard.,flips to the ledge of the mountain.,is thrown through the windscreen.,leaps from through the windows.\n10656,lsmdc1018_Body_Of_Lies-80406,2201,\"In a park, someone calls someone, who's walking through an airport terminal. On a residential street, people\",\"In a park, someone calls someone, who's walking through an airport terminal.\",\"On a residential street, people\",gold,wash clothes in police - cars being driven customers.,watch as others watch him.,skateboard on their skateboards.,get out of an suv.\n10657,lsmdc1018_Body_Of_Lies-80406,2206,The attackers drive off after someone. Someone,The attackers drive off after someone.,Someone,gold,fires away from someone as he trots to the surf.,lies on the ground covered in blood.,\"wears a tiny, silver mask and wears only traditional vest and safety vests.\",is quite dressed by himself.\n10658,lsmdc1018_Body_Of_Lies-80406,2209,He makes a call on his mobile. Someone,He makes a call on his mobile.,Someone,gold,sits on a chair in a shabby room.,turns back to look at the documents.,stares out of the window.,sees a guard at first tech.\n10659,lsmdc1018_Body_Of_Lies-80406,2202,Someone emerges from an apartment building. Someone,Someone emerges from an apartment building.,Someone,gold,stands on the sill in the bottom of the room.,walks up and follows him to his car.,bounces off each of them.,runs backwards into the house and out of sight.\n10660,anetv_s2ra7HNzIF0,1355,The lady takes the pacifier from the baby and lets the baby eat ice cream. The baby,The lady takes the pacifier from the baby and lets the baby eat ice cream.,The baby,gold,makes a face and stare at the camera as she eats.,sets balls on the table until a friend tries to catch the fish.,zooms back on to an effort to make if a bottle of someone takes necklace and holding it black.,\"stops on two smears, then walks away.\"\n10661,anetv_s2ra7HNzIF0,1357,The lady puts the pacifier back in the babies mouth and eats her ice cream. We,The lady puts the pacifier back in the babies mouth and eats her ice cream.,We,gold,see the girls drink again.,see the ending screen for a video.,see the closing scene.,see the girls gun targets seated on the verandah.\n10662,anetv_s2ra7HNzIF0,1099,The woman is licking an ice cream cone. the woman,The woman is licking an ice cream cone.,the woman,gold,leans against the sink.,comes on a different lighter.,feeds the ice cream to the baby.,grabs the spoon and applies the red heal sandwich to the drink.\n10663,anetv_s2ra7HNzIF0,1354,A lady licks an ice cream cone and holds a baby. the lady,A lady licks an ice cream cone and holds a baby.,the lady,gold,looks up at the screen.,swings her hand over the frame.,puts the bread down and starts to pick up.,takes the pacifier from the baby and lets the baby eat ice cream.\n10664,anetv_s2ra7HNzIF0,1356,The baby makes a face and stare at the camera as she eats. the lady,The baby makes a face and stare at the camera as she eats.,the lady,gold,puts the bowl in the cups.,pretends to be and put eggs in the hand.,comes on and spits it out.,puts the pacifier back in the babies mouth and eats her ice cream.\n10665,anetv_s2ra7HNzIF0,1353,We see a title screen over the image. A lady,We see a title screen over the image.,A lady,gold,paints the top of a pumpkin.,licks an ice cream cone and holds a baby.,speaks with a male in a barber room.,is putting a contact lens into her ear knitting.\n10666,anetv_s2ra7HNzIF0,1098,A woman is holding a baby. the woman,A woman is holding a baby.,the woman,gold,holds a contact lens in her.,washes the arm of someone as he talks to his talking.,is spraying a dog.,is licking an ice cream cone.\n10667,anetv_8w9pf_Ecm_U,8871,Several people are shown watching in the background while the girls continue to do flexible moves. The grab canes and,Several people are shown watching in the background while the girls continue to do flexible moves.,The grab canes and,gold,continue spinning the canes while doing splits and various other dance moves.,show the kayaks and begin swinging it from the slope forward into the two - sidecar bump by falling backwards plunge into the water.,begin moving one onto the other one ends by pushing the object down the base.,end by fighting against one another and end by shaking the game in circles.\n10668,anetv_8w9pf_Ecm_U,8870,Two girls holding pom poms perform a dance routine in a gymnasium. Several people,Two girls holding pom poms perform a dance routine in a gymnasium.,Several people,gold,are in the middle of the gymnasium and their hands stretch multiple times.,flee the competition as otters watch.,are shown watching in the background while the girls continue to do flexible moves.,are interviewed and begin twirling as they perform.\n10669,anetv_lIqAkmaXnXg,323,The woman then takes her brush and begins brushing all of the pieces of foils on the top drawer while holding a hand under it to catch all the pieces that fall. The woman then,The woman then takes her brush and begins brushing all of the pieces of foils on the top drawer while holding a hand under it to catch all the pieces that fall.,The woman then,gold,demonstrates and moves the ladder out of the way and is shown painting blossoming nail all while tip trimmed.,takes a brush to wash them off and caresses her cheeks using the beads of the shoe.,removes her tattoo and cuts to the door and begins using her leg.,closes the drawer and brushes it some more.\n10670,anetv_XDBugI_CcYs,1183,They start playing a game of tug of war. People,They start playing a game of tug of war.,People,gold,are cheering them on behind a fence.,stands in a court below in a village.,stand on a slack line in the sand.,claps to the people as they clap and dance.\n10671,anetv_XDBugI_CcYs,1182,Girls in bikinis are standing on a beach. They,Girls in bikinis are standing on a beach.,They,gold,are outside and playing on the beach floating clothes.,perform a jump in the yellow water.,are playing a game of beach polo.,start playing a game of tug of war.\n10672,lsmdc3077_THE_VOW-35661,1574,Someone raises his glass with the others. Someone,Someone raises his glass with the others.,Someone,gold,\"stands at the bar, raising his arms and arms shake as he exits.\",ignores the receptionist from the door.,steps into a lip - stage.,gives a wry look.\n10673,lsmdc3077_THE_VOW-35661,1575,\"Someone gives a wry look. Someone eyes her lovingly, and she\",Someone gives a wry look.,\"Someone eyes her lovingly, and she\",gold,twitches an uneasy smile.,leaves the fresh little room.,allows a sarcastic smile.,blinks at the cameraman.\n10674,anetv_63Zt34YuyRk,9797,There's a nbc news reporter wearing a red sweater and white shirt talking about dog grooming by Scissor Wizard a grooming company. The representative from the company,There's a nbc news reporter wearing a red sweater and white shirt talking about dog grooming by Scissor Wizard a grooming company.,The representative from the company,gold,is talking about the services they offer and how those dogs participate in dog shows.,stands a long leash to argue the event.,brings a black paint product with a lawnmower using the stick to cycle the bone product brush.,makes a small signing resting.\n10675,lsmdc0009_Forrest_Gump-50876,8395,\"A truck honks its horn as someone runs across the street past the truck. Someone runs, the elderly woman\",A truck honks its horn as someone runs across the street past the truck.,\"Someone runs, the elderly woman\",gold,fired into the car.,dozes behind the wheel.,shouts from the bus stop bench.,pass behind the bar.\n10676,lsmdc0009_Forrest_Gump-50876,8390,A television shows someone and his staff as they react to gunshots in front of a limo. Someone,A television shows someone and his staff as they react to gunshots in front of a limo.,Someone,gold,runs into the room and is carrying a weather - lighted cigarette.,\"sits eating a sandwich, watching the news of the assassination attempt.\",\"listlessly flinches as the car reverses, sniffing the air.\",grins as he peels away.\n10677,lsmdc0009_Forrest_Gump-50876,8393,The elderly woman looks at the letter. Someone,The elderly woman looks at the letter.,Someone,gold,hastily grabs his suitcase and letter as he stands.,walks to the desk of the manuscript.,\"remains at the trunk, staring at the lumbering someone, as someone rounds his way.\",shows a cluster of domestic maize stickers on the bench.\n10678,lsmdc0009_Forrest_Gump-50876,8392,Someone takes the letter out of his pocket. The elderly woman,Someone takes the letter out of his pocket.,The elderly woman,gold,looks at his son.,looks at the letter.,opens the framed letter.,turns away from someone.\n10679,lsmdc0009_Forrest_Gump-50876,8389,Someone walks toward the group. A television,Someone walks toward the group.,A television,gold,man performs a comforted someone.,shows someone and his staff as they react to gunshots in front of a limo.,\"reads, solo medal appear in the distance across a long table.\",reads awarded: 10.\n10680,lsmdc0009_Forrest_Gump-50876,8396,Someone hands someone the box of chocolates. Someone,Someone hands someone the box of chocolates.,Someone,gold,picks up a scrapbook and turns the pages.,\"stands the top, looking someone uncomfortable.\",looks on but continues on with an armed glare.,flicks the cigarette with his white wand.\n10681,lsmdc0009_Forrest_Gump-50876,8391,\"Someone sits eating a sandwich, watching the news of the assassination attempt. Someone\",\"Someone sits eating a sandwich, watching the news of the assassination attempt.\",Someone,gold,picks up a listing in a board.,rushes for another rescue helicopter.,takes the letter out of his pocket.,returns to the shot.\n10682,lsmdc0009_Forrest_Gump-50876,8394,Someone hastily grabs his suitcase and letter as he stands. A truck,Someone hastily grabs his suitcase and letter as he stands.,A truck,gold,enters a room with a visible object.,runs through the crashed south jet.,honks its horn as someone runs across the street past the truck.,follows someone's view.\n10683,lsmdc1042_Up_In_The_Air-88324,712,Mountains give way to dense trees. A bell tower,Mountains give way to dense trees.,A bell tower,gold,appears at the top of the tower.,\"follows the house and casts a spell, which cleans the forbidden forest.\",rises above the trees.,appears on the horizon of a tall white window.\n10684,lsmdc1042_Up_In_The_Air-88324,713,A bell tower rises above the trees. Fluffy white clouds,A bell tower rises above the trees.,Fluffy white clouds,gold,drift up towards the horizon.,stream out around them.,tilt up together from a long blue sky.,float in a blue sky.\n10685,lsmdc1042_Up_In_The_Air-88324,711,Bright sunlight shines through clouds. Mountains,Bright sunlight shines through clouds.,Mountains,gold,covers the back beyond.,tumble against the water and thunder across the river to the gigantic river.,give way to dense trees.,of sun shimmering above the surface like a big moon.\n10686,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84958,6464,The gypsy man indicates a bearded man holding a goose. The gypsies,The gypsy man indicates a bearded man holding a goose.,The gypsies,gold,watch as someone unhooks the bikini deck away.,follow a wounded handshake for the conversation.,sprint out the rodeo nose.,surround people who smile politely.\n10687,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84958,6465,The atmosphere becomes more strained. A man,The atmosphere becomes more strained.,A man,gold,\"opens his jacket, revealing a knife.\",patrols and sounds a fire.,got fallen breaks in the lock.,cooked into the ice and grabs the glass.\n10688,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84958,6467,\"Someone pushes through the crowd, holding her bag which the gypsies have taken off someone. The man someone punched\",\"Someone pushes through the crowd, holding her bag which the gypsies have taken off someone.\",The man someone punched,gold,\"him blows the punches, and him takes in the front door, but someone stops him.\",examines some clothing then pops up in the pile alley.,\"is knocked back in pursuit, and buckbeak gallops up to a bench, sharpening a knife, taking a gallon pipe from the soldier\",watches them as they eat a meal.\n10689,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84958,6468,The man someone punched watches them as they eat a meal. Someone,The man someone punched watches them as they eat a meal.,Someone,gold,helps his daughter out with a cane.,arrives to find pictures of breakfast together.,holds the coat of someone.,looks up from his bowl and frowns.\n10690,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84958,6466,\"A man opens his jacket, revealing a knife. Someone\",\"A man opens his jacket, revealing a knife.\",Someone,gold,\"pushes through the crowd, holding her bag which the gypsies have taken off someone.\",puts a gloved hand into his lap and holds the paw on both hand.,stands stiffly up on the chopping table.,takes a wintry weather report.\n10691,anetv_jaaWdcA_COY,10703,\"There is a woman in a bikini walking past people with hula hoops. She goes to the grass and she begins hooping in circles, she\",There is a woman in a bikini walking past people with hula hoops.,\"She goes to the grass and she begins hooping in circles, she\",gold,begins jumping the pole between her feet.,then hula with way in.,is having a really good time dancing and hooping.,shows this off scale.\n10692,anetv_jaaWdcA_COY,10704,\"She goes to the grass and she begins hooping in circles, she is having a really good time dancing and hooping. Then, other people\",\"She goes to the grass and she begins hooping in circles, she is having a really good time dancing and hooping.\",\"Then, other people\",gold,are on and to begin performing the jump rope.,do words ball in front of them as she walks across the street.,\"are dancing around and hooping also, doing tricks and just enjoying the day.\",\"are shown standing on the beach, stroking, performing several different things.\"\n10693,anetv_jaaWdcA_COY,10705,\"Then, other people are dancing around and hooping also, doing tricks and just enjoying the day. Everyone\",\"Then, other people are dancing around and hooping also, doing tricks and just enjoying the day.\",Everyone,gold,falls down and does the same thing in the end.,turns around and talks as it's the other team.,is seen with the sirens.,is watching as the two girls hoop around outside of the store.\n10694,anetv_8Kj5Whf2JyA,19280,A large group of people are see bouncing around on trampolines throwing dodgeballs to one another. The camera,A large group of people are see bouncing around on trampolines throwing dodgeballs to one another.,The camera,gold,pans away and the girls fly around the field throwing balls around.,continues to capture kissing and hitting a tennis ball and throws them through the pins.,pans around to the people on the outside and back onto the kids playing.,moves around a man holding up a baton while many watch on the side.\n10695,anetv_t_Creyg6ANs,17297,Shuffleboard Olympics at Pembroke Pines appears on a black screen. Young children,Shuffleboard Olympics at Pembroke Pines appears on a black screen.,Young children,gold,performs outdoor dancing called a multicolored festival.,play paintball on a field int ice with an outside.,\"practice shaving bikes, extremely fast.\",\"pretend to play shuffleboard on a large outdoor board, although the really just push the puck down the length.\"\n10696,anetv_t_Creyg6ANs,12336,A little girl with wet hair is playing shuffle board on a blue court outdoors. We see a little girl spinning around and around and we,A little girl with wet hair is playing shuffle board on a blue court outdoors.,We see a little girl spinning around and around and we,gold,see a girl in a yellow dress playing shuffleboard.,see the brown man does a baton cartoon for another dancer.,see an archery set.,see only the players.\n10697,anetv_t_Creyg6ANs,12337,We see a little girl spinning around and around and we see a girl in a yellow dress playing shuffleboard. The girl in pink and the one in yellow,We see a little girl spinning around and around and we see a girl in a yellow dress playing shuffleboard.,The girl in pink and the one in yellow,gold,goes down and performs different steps the girl spins.,tries to hit her on.,walks around the stage swinging down a little bit off the steps.,walk to a man in a blue shirt and get candy and hugs and kisses.\n10698,anetv_t_Creyg6ANs,17298,\"Young children pretend to play shuffleboard on a large outdoor board, although the really just push the puck down the length. The children\",\"Young children pretend to play shuffleboard on a large outdoor board, although the really just push the puck down the length.\",The children,gold,finish and are given candy treats for playing.,\"appear to live on unicycle, and fully idle.\",are holding poles up to head and kicking.,begin to wave as everyone laughs and continues to get surfing.\n10699,anetv_t_Creyg6ANs,12338,The girl in pink and the one in yellow walk to a man in a blue shirt and get candy and hugs and kisses. We then,The girl in pink and the one in yellow walk to a man in a blue shirt and get candy and hugs and kisses.,We then,gold,see the ending screen.,see blue title screen.,see the white ending screen.,see the ending screen for the finish.\n10700,anetv_t_Creyg6ANs,12335,We see an opening title screen. A little girl with wet hair,We see an opening title screen.,A little girl with wet hair,gold,is playing shuffle board on a blue court outdoors.,is a glove on her finger.,is drying a mane with a corn brush.,\"walks around, drinking her beer.\"\n10701,anetv_t_Creyg6ANs,17299,The children finish and are given candy treats for playing. Credits,The children finish and are given candy treats for playing.,Credits,gold,roll over a black background.,waves and seem like a very happy living about what they've done.,see the title screens.,see the ending title screen.\n10702,anetv_gzyu1S2LNIw,10835,A small group of girls are seen standing ready holding flags and lead into them performing a routine. A man,A small group of girls are seen standing ready holding flags and lead into them performing a routine.,A man,gold,sits in front of them playing an instrument while they continue spinning and many on the sides watch.,throws a a stone and dances.,pushes a group to the crowd.,leads into people in arm wrestling.\n10703,anetv_0bosp4-pyTM,17771,He grind it hard to make the pieces smaller. Then he,He grind it hard to make the pieces smaller.,Then he,gold,sets it outside the samantha table and dumps the knife another time.,rubs his knuckles in a white match before dropping it in the sky with a unique stretched metal object.,lays onto top of the board and wiggles something on the ground like he do it successfully.,takes a piece of bark and rubs the powered stone pieces onto it.\n10704,anetv_0bosp4-pyTM,17768,A man is holding a pocket knife while sitting on some rocks in the wilderness. Then he,A man is holding a pocket knife while sitting on some rocks in the wilderness.,Then he,gold,shows how to wash the dog and a jar has come out to get it into a sink.,uses the torch to change white shoes and put the shoes on the ground.,takes a small stone from the flowing river and smashes it on another stone.,takes a fishing match into a wooden wall and holds it out for them to see.\n10705,anetv_0bosp4-pyTM,17770,He starts to crush the small stone to smaller pieces. He,He starts to crush the small stone to smaller pieces.,He,gold,\"closes his eyes for a moment, then drops his gaze hard.\",pours the paint onto the middle of the roof.,grind it hard to make the pieces smaller.,forced to turn to the direction of the shed and clink it together.\n10706,anetv_0bosp4-pyTM,17775,He then notices a little black and green poisonous frog sitting next to him. The frog then,He then notices a little black and green poisonous frog sitting next to him.,The frog then,gold,escapes and jumps away.,carves into each arm with the steel.,starts to talk about the machine as well as the man wearing white before mowing the grass.,struggle to place the gun on a nearby rack.\n10707,anetv_0bosp4-pyTM,17774,He then takes the knife and sharpens it against the wood piece. He then,He then takes the knife and sharpens it against the wood piece.,He then,gold,begins to sharpen it and peeling the equipment back and fourth.,mixes the chainsaw up and sharpen it.,touches the sharpener and gives lights off the red sky.,notices a little black and green poisonous frog sitting next to him.\n10708,anetv_0bosp4-pyTM,17773,The stone particles stick to the wet piece of wood. He then,The stone particles stick to the wet piece of wood.,He then,gold,\"moves it back to the playground, showing vital words.\",takes it in between.,takes the knife and sharpens it against the wood piece.,attaches it and the wood - blade steps into a.\n10709,anetv_0bosp4-pyTM,17769,Then he takes a small stone from the flowing river and smashes it on another stone. He,Then he takes a small stone from the flowing river and smashes it on another stone.,He,gold,glances around but then stone.,\"picks it up, stacks it down, and opens a small metal door on its flat.\",starts to crush the small stone to smaller pieces.,proceeds to pry a strip of wax towards the trunk.\n10710,lsmdc0030_The_Hustler-64544,9152,Someone takes some balls out of the return box and throws them on the table. But Big someone and Preacher,Someone takes some balls out of the return box and throws them on the table.,But Big someone and Preacher,gold,lean forward in their chairs to listen in.,get up from the table and walk after it.,start digging in their food.,try to throw his cue.\n10711,lsmdc0030_The_Hustler-64544,9147,\"Someone's arrival is noted by Big someone and Preacher, a gambler and an addict, who hang out at Ames at all hours, waiting for action. Someone\",\"Someone's arrival is noted by Big someone and Preacher, a gambler and an addict, who hang out at Ames at all hours, waiting for action.\",Someone,gold,gets out another step note.,pulls back the bump cards before jumping to another giraffe and seen in people's room at an end.,\"nods quickly, then gets up with disappointed look, as people walk past.\",takes his cue ball from the cashier's cage and heads for a table.\n10712,lsmdc0030_The_Hustler-64544,9146,They saunter over to the cashier's cage. A sign on the brass bar,They saunter over to the cashier's cage.,A sign on the brass bar,gold,\"reads, two police reports.\",reads no gambling allowed.,\"reads thrilled, thank you.\",looks mid - suited.\n10713,lsmdc0030_The_Hustler-64544,9151,His last test is to sweep the cue ball into the corner pocket. Someone,His last test is to sweep the cue ball into the corner pocket.,Someone,gold,goes through to the mall.,takes some balls out of the return box and throws them on the table.,\", wearing a white t - shirt, jeans is painted with the balls in the table.\",purposefully moves back to the table.\n10714,lsmdc0030_The_Hustler-64544,9148,\"As he passes someone, he mimics the cashier wickedly. The two\",\"As he passes someone, he mimics the cashier wickedly.\",The two,gold,are there then notices a shirtless man's out in front of him.,begin to close as he presses the doorbell.,are both escape into the aisle.,go to a table.\n10715,lsmdc0030_The_Hustler-64544,9149,The two go to a table. Someone,The two go to a table.,Someone,gold,\"selects a house cue, then rolls it over the table top to test the roll.\",cocks his rifle and stares.,hits a stack and bounces the ball on the aisle.,flips up a bottle of champagne and scrubs it with it.\n10716,lsmdc0030_The_Hustler-64544,9150,He runs his hand over the green felt as if he were caressing it. His last test,He runs his hand over the green felt as if he were caressing it.,His last test,gold,is bigger than he did earlier.,is taken by someone's fair - haired friend.,appears on the first photo and a series of letters.,is to sweep the cue ball into the corner pocket.\n10717,anetv_XBBT8UvESiE,17434,A woman is seen pulling off a hat and begins dancing around a man tied up. She,A woman is seen pulling off a hat and begins dancing around a man tied up.,She,gold,is skating the floor more and more close as she continues talking.,continues to laugh and continues to clip his knees.,wets a cloth over his face while still dancing and rubs cream all over his face.,jumps up and uses his stilts lighter to go down.\n10718,anetv_XBBT8UvESiE,16950,First you do some extraneous sexy moves. Next you,First you do some extraneous sexy moves.,Next you,gold,run under the water and perform a act to receive your red and bathing boots.,\"place a towel over the mans face, after dripping it seductively over yourself.\",\"need some black hair scissors to place them in the kit, pulling them waxes.\",show the cheerleader space and olympic stud environments.\n10719,anetv_XBBT8UvESiE,16952,\"Then you brush on shaving cream, and you straddle him and shave him. Last you\",\"Then you brush on shaving cream, and you straddle him and shave him.\",Last you,gold,smoothen the pumpkin using the spatula.,clean him up and enjoy the clean - cut look.,can discuss someone's face.,shave your legs and put the leg in white.\n10720,anetv_XBBT8UvESiE,16951,\"Next you place a towel over the mans face, after dripping it seductively over yourself. Then you brush on shaving cream, and you\",\"Next you place a towel over the mans face, after dripping it seductively over yourself.\",\"Then you brush on shaving cream, and you\",gold,straddle him and shave him.,can paint it through an elliptical board that is not finished to shave your hair.,can see each part the lady and my shoes.,'re two thumbs up in sections.\n10721,anetv_XBBT8UvESiE,17435,She wets a cloth over his face while still dancing and rubs cream all over his face. She then,She wets a cloth over his face while still dancing and rubs cream all over his face.,She then,gold,grabs a shoe and puts it on her head and takes off her little dress.,laughs and wipes her face as she clips the words to him.,prepares a sheer lift off the floor.,shaves his face while still dancing around and the man smiling in the end.\n10722,anetv_DepG0r3JiV4,5143,A man is seen speaking to the camera while holding onto a tennis racket. Clips,A man is seen speaking to the camera while holding onto a tennis racket.,Clips,gold,are then shown jumping around on one arm and several other men chasing them and leads into him playing down.,are shown of people playing tennis and him holding up the racket.,man continues on grass around the room.,using a rope to watch himself the man steps out of frame and kicks an object off from the display.\n10723,anetv_DepG0r3JiV4,5144,Clips are shown of people playing tennis and him holding up the racket. He,Clips are shown of people playing tennis and him holding up the racket.,He,gold,is hitting a ball with a bat and looking down onto a table.,continue to demonstrate how to properly hit the goals.,puts the racket closer to the camera.,continues cutting the lemons while several shots are shown in the end.\n10724,anetv_DepG0r3JiV4,3456,The credits of the clip are shown. A man,The credits of the clip are shown.,A man,gold,stands behind the person.,is holding a racket and speaking.,comes over and removes the lens from the tire.,throws a shot put into a cup.\n10725,anetv_DepG0r3JiV4,3457,A man is holding a racket and speaking. The man,A man is holding a racket and speaking.,The man,gold,moves his legs around and stands up and continues speaking.,is playing squash with a guy.,does the same to the same man.,falls over a brown stool and sits after the ball.\n10726,anetv_nhky9RGjzwc,14625,Two women are arm wrestling on a table. A woman in a referee uniform,Two women are arm wrestling on a table.,A woman in a referee uniform,gold,is sitting behind her.,is standing behind them.,picks up the flags on the table.,spins around two punching bags.\n10727,anetv_66nA52ux2Sk,19324,He is playing the drums and cymbals. He,He is playing the drums and cymbals.,He,gold,\"lays in a bag, ready to play.\",is playing.,pushes him up and down.,\"continues playing, hitting them with a pair of drum sticks.\"\n10728,anetv_66nA52ux2Sk,12785,\"The woman stops and moves herself near a hi hat. With her drumsticks, she\",The woman stops and moves herself near a hi hat.,\"With her drumsticks, she\",gold,holds her doll up and follows it's the other way out.,pitches a stance to shoot.,plays the hi hat.,dismounts with her gloved hands and dances back with her arms up to receive his score.\n10729,anetv_66nA52ux2Sk,19323,A boy in a wheelchair is seated in a corner. He,A boy in a wheelchair is seated in a corner.,He,gold,picks up a chainsaw and replaces it behind his chin.,\"cuts them, swoops down on the office desk.\",is playing the drums and cymbals.,starts to swing his ax onto the ground.\n10730,anetv_IBscTNN6qfY,7545,\"A woman is seated on a couch, brushing another woman's hair. She\",\"A woman is seated on a couch, brushing another woman's hair.\",She,gold,proceeds to talk about how to do corn rows.,sprays the dog and dries the dog with a towel.,closes another messages as the credits roll.,steps back then lets her hair off the ear.\n10731,anetv_IBscTNN6qfY,6927,She adds gel and begins to start braiding the hair. Once she has more or less finished braiding her hair she,She adds gel and begins to start braiding the hair.,Once she has more or less finished braiding her hair she,gold,talks about the process she did on the woman.,begins explaining a graphic name she will have for high school.,puts it on top of the braids while flipping over her hair.,puts the metal disk of the lips.\n10732,anetv_IBscTNN6qfY,6926,She begins to part the woman's hair and then gives the information of the products that you would need in order to do it. She,She begins to part the woman's hair and then gives the information of the products that you would need in order to do it.,She,gold,has a sweet amount of hair that is wearing a brown top and white talking.,shows how she should political her multitude of accomplishment.,\"scratches her nails together, delivering, in the end.\",adds gel and begins to start braiding the hair.\n10733,anetv_IBscTNN6qfY,6925,\"Any ethnicity can have their hair in corn rolls, a woman is inside of her house doing someone's hair. She\",\"Any ethnicity can have their hair in corn rolls, a woman is inside of her house doing someone's hair.\",She,gold,removes the mixture from the tree.,is swinging a bat toward the chair.,begins to part the woman's hair and then gives the information of the products that you would need in order to do it.,is scraping snow off of her fingers and talking about it to the camera.\n10734,anetv_F3tKnLz9YyE,1628,A boy and his dog are seen swimming under water in a large bowl. The two come above the surface and the dog,A boy and his dog are seen swimming under water in a large bowl.,The two come above the surface and the dog,gold,cheers with the shrieking couple sharing a fell effect.,comes back followed capture the couple laughing.,sleeps with both arms on his back.,runs around while the boy rubs his eyes.\n10735,anetv_gtzg66XV6E0,18144,\"A woman is in front of a table, holding a cat. She\",\"A woman is in front of a table, holding a cat.\",She,gold,loads the grooming tools on a table.,\"lets a cat add meat, then she hands it to the cat.\",pets the cat to calm him down.,finishes talking and places the curlers into the ground.\n10736,lsmdc3052_NO_STRINGS_ATTACHED-25303,1139,Someone goes to the intercom. Someone,Someone goes to the intercom.,Someone,gold,kicks his keys from a cane then slams the door shut.,grabs them in her hands and cuffs her.,opens the lobby door and hurries upstairs holding a box of cupcakes.,leaps on someone as he goes into his room.\n10737,lsmdc3052_NO_STRINGS_ATTACHED-25303,1140,Someone opens the lobby door and hurries upstairs holding a box of cupcakes. Someone,Someone opens the lobby door and hurries upstairs holding a box of cupcakes.,Someone,gold,turns off the light.,hands someone a box of nunchucks.,puts her cellphone to her ear and reads.,opens the apartment door.\n10738,lsmdc3052_NO_STRINGS_ATTACHED-25303,1138,\"At home, someone has made herbal teas. Someone\",\"At home, someone has made herbal teas.\",Someone,gold,takes his hand out of a colander.,gags on his car.,exits on the market in weird castle bach.,goes to the intercom.\n10739,anetv_eRQAjBwhDXk,6175,A person skis quickly down a snow covered hill. People,A person skis quickly down a snow covered hill.,People,gold,\"are on intertubes, sledding along the snow.\",peddling inflated cars and cars are moving on in a tunnel.,are going down a hill of snow.,see the man get up for the race on the track.\n10740,anetv_WQXoBfyUpaY,5720,The crowd claps for the people. The man,The crowd claps for the people.,The man,gold,bows and turns to the man.,kneels down and speaks to the crowd.,spins the lady around.,continues to dance while laughing to the camera.\n10741,anetv_WQXoBfyUpaY,5715,The man flips the woman and swings her around. The man,The man flips the woman and swings her around.,The man,gold,walks away from his wrestling contest.,talks to the camera.,finishes and stands up.,picks up the woman and puts her on his shoulders.\n10742,anetv_WQXoBfyUpaY,5716,The man picks up the woman and puts her on his shoulders. He then,The man picks up the woman and puts her on his shoulders.,He then,gold,flips her off and onto the ground.,walks over and waves to the man.,stands in front of her and watches.,stands up and waves back.\n10743,anetv_WQXoBfyUpaY,5717,He then flips her off and onto the ground. The man,He then flips her off and onto the ground.,The man,gold,\"changes into blue, flipping the windsurfing and demonstrates other exercises.\",gets ready to surf.,puts the lady on his shoulder and flips her two times.,stops before the doorway and waits for her to come out of a shot.\n10744,anetv_WQXoBfyUpaY,5718,The man puts the lady on his shoulder and flips her two times. The man,The man puts the lady on his shoulder and flips her two times.,The man,gold,kneels the bar and then claps straight ahead of him again.,waves after his arms with the hammer and watches.,puts her glasses in the cabinet.,spins the lady around and around and dips the lady.\n10745,anetv_WQXoBfyUpaY,5714,The man and woman perform a dance. The man,The man and woman perform a dance.,The man,gold,dances with another man.,walks by distractedly towards the audience.,flips the woman and swings her around.,performs several karate moves.\n10746,anetv_WQXoBfyUpaY,5721,The man spins the lady around. The dances,The man spins the lady around.,The dances,gold,finishes playing the violin as the band plays.,finish and take their bows and shake hands.,boarder does it again.,watches the lady playing with the baby.\n10747,anetv_WQXoBfyUpaY,5719,The man spins the lady around and around and dips the lady. The crowd,The man spins the lady around and around and dips the lady.,The crowd,gold,claps for the people.,continues to wash her face.,cheers in the crowd.,claps for the judges and the raised falls.\n10748,anetv_vTbeVoT1Gsg,744,She then throws the javelin off into the distance while other people watched in the distance. Her throw,She then throws the javelin off into the distance while other people watched in the distance.,Her throw,gold,is shown several times again.,is shown again several times and shown again successfully in slow motion.,is shown again again in slow motion.,changes the entire off down the stream.\n10749,anetv_vTbeVoT1Gsg,10734,\"First, the woman stands still for a few seconds and then begins running as she throws the javelin and many people are watching. When she starts running, the camera follows her as she runs a short distance and it\",\"First, the woman stands still for a few seconds and then begins running as she throws the javelin and many people are watching.\",\"When she starts running, the camera follows her as she runs a short distance and it\",gold,is then taken away altogether.,lands on the sand repeatedly.,lands running in the dark field.,shows how far the javelin flies.\n10750,anetv_vTbeVoT1Gsg,743,An athletic woman is seen standing ready holding a pole before a long track. She then,An athletic woman is seen standing ready holding a pole before a long track.,She then,gold,runs down the track and then jumps over a pile of sand.,takes the horse bar and swings all around the bar.,throws the javelin off into the distance while other people watched in the distance.,pushes herself into a beam while spinning around and spinning around.\n10751,anetv_vTbeVoT1Gsg,10735,\"When she starts running, the camera follows her as she runs a short distance and it shows how far the javelin flies. In the end, her score is shown and other people\",\"When she starts running, the camera follows her as she runs a short distance and it shows how far the javelin flies.\",\"In the end, her score is shown and other people\",gold,cheer awake and running around to protect her.,are starting to trade interviews.,run on to the top.,are shown doing things.\n10752,anetv_7edBQl3VD1o,10136,The man holding the camera follows. They,The man holding the camera follows.,They,gold,run a few feet off of the tower.,begin to play the drum again.,ski down the snowy hill.,see the logo sliding down a door.\n10753,anetv_7edBQl3VD1o,10139,They both stop and talk to a lady at the bottom of the hill. He,They both stop and talk to a lady at the bottom of the hill.,He,gold,continues walking on the street while the other truck sees the dog and jumps out.,\"drifts down to them, and sees the front of her fix on the others.\",\"sits down on the ground and gets out of the car, naked.\",takes off his glove and pulls his cell phone out.\n10754,anetv_7edBQl3VD1o,10138,The man in the orange jacket can be seen in front of him skiing. They both,The man in the orange jacket can be seen in front of him skiing.,They both,gold,stop and talk to a lady at the bottom of the hill.,\"continue having fun, running and dancing.\",do flips back and forth from each other.,reference into one to one another.\n10755,anetv_7edBQl3VD1o,10135,The person holding the camera puts their skis down and holds the poles. The man in the orange jacket,The person holding the camera puts their skis down and holds the poles.,The man in the orange jacket,gold,runs through the jungle.,walks all around the yard.,walks in the water.,skis down the hill.\n10756,anetv_7edBQl3VD1o,10137,They ski down the snowy hill. The man in the orange jacket,They ski down the snowy hill.,The man in the orange jacket,gold,rides on an overturned tractor.,starts walking down the street.,jumps over a tow line.,can be seen in front of him skiing.\n10757,anetv_7edBQl3VD1o,10134,A man in an orange jacket holding skis is walking on the snow to a hill. The person holding the camera,A man in an orange jacket holding skis is walking on the snow to a hill.,The person holding the camera,gold,puts their skis down and holds the poles.,shows how to change it.,is in the water behind him.,is holding a brush.\n10758,anetv_zcDA0s8eWU4,14308,A woman chops wood on a block with an ax. She,A woman chops wood on a block with an ax.,She,gold,takes an ax down a large stone frame.,walks around the foot.,has a hard time getting the ax out of the wood.,bends the ax to create two more.\n10759,anetv_zcDA0s8eWU4,14309,Someone else comes and tries to get it out but they can't. The first girl,Someone else comes and tries to get it out but they can't.,The first girl,gold,jumps from the boat into the ocean and rides off.,hops away from the wall and stops with the curly - haired person talking in.,comes back and continues trying to pull the ax out of the wood.,is about to ski after something.\n10760,anetv_j6Kf_y7k-yU,2116,The competitors walk back up to the stage and replace their robots. The judge signals for the competition to begin again and everyone,The competitors walk back up to the stage and replace their robots.,The judge signals for the competition to begin again and everyone,gold,does a push and the video ends.,takes up their air.,applauds when one of them wins.,walks up to the stage.\n10761,anetv_j6Kf_y7k-yU,2115,\"The robots begin to move, and one of the robots is pushed out of the circle. The competitors\",\"The robots begin to move, and one of the robots is pushed out of the circle.\",The competitors,gold,jump from the beam striking into the air.,walk back up to the stage and replace their robots.,\"fall to joust, and then reached into the lifeboat.\",are on a mat and the instructor successfully finishes clapping and claps to see them hug for the girl.\n10762,anetv_j6Kf_y7k-yU,2113,The competitors put their robots down in the circle as the judge instructs them. The judge,The competitors put their robots down in the circle as the judge instructs them.,The judge,gold,bows before shaking the is very cold audience.,signals the beginning of the competition.,returns his score to the trumpet player alongside him.,\"breaks in slack, as noblewoman moves the stool to begin walking.\"\n10763,anetv_j6Kf_y7k-yU,2114,\"The judge signals the beginning of the competition. The robots begin to move, and one of the robots\",The judge signals the beginning of the competition.,\"The robots begin to move, and one of the robots\",gold,begins with the other people swimming alone.,is pushed out of the circle.,rolls his hand to fly the game.,blasts metal lines.\n10764,anetv_j6Kf_y7k-yU,2112,People watch competitors get ready near a red stage. The competitors,People watch competitors get ready near a red stage.,The competitors,gold,put their robots down in the circle as the judge instructs them.,place their pom on their feet.,dance and get a ball from his shoulders as someone and the man try to catch their trophy.,sweep the court down and prepares the dive.\n10765,anetv_g7l-Y_bgPkI,8207,The man in the white hat is holding his hand up. The ball is served and it,The man in the white hat is holding his hand up.,The ball is served and it,gold,goes outside the court.,ornate to the 1.,rolls up dead tires.,is held up by a series of brown balls.\n10766,anetv_g7l-Y_bgPkI,8206,Several people are watching a man in a white hat on a tennis court. The man in the white hat,Several people are watching a man in a white hat on a tennis court.,The man in the white hat,gold,is holding his hand up.,cheers him for the ball.,looks out over a young man in a fur and black shirt.,stops to talk to him at the table.\n10767,anetv_g7l-Y_bgPkI,8208,The ball is served and it goes outside the court. The ball,The ball is served and it goes outside the court.,The ball,gold,\"bounces the tennis batter, which breaks up against the field.\",is thrown to the man in the white hat.,drops back to his home.,comes to the left and turns to get the ball into a basket.\n10768,lsmdc0033_Amadeus-67045,15269,He closes his eyes in fear. He,He closes his eyes in fear.,He,gold,keeps his gaze fixed on the ceiling and thrusts someone towards it.,dissolves into someone's carriage.,watches and glances up at her.,will not look at her or reply.\n10769,lsmdc0033_Amadeus-67045,15270,He will not look at her or reply. He,He will not look at her or reply.,He,gold,looks at her suddenly.,holds another hand up from her visor.,\"smiles, smiles faintly, and looks intently at the coin.\",sends the crowds back to someone 'office.\n10770,anetv_MyPQ_e4dGDw,10338,A lemon sits on a cutting board. Someone,A lemon sits on a cutting board.,Someone,gold,scoops a time off of the oven.,bend over a bar trying to wood a bowl.,hands to free a bench with a paddle.,chops the lemon and squeezes it into a glass.\n10771,lsmdc1034_Super_8-8324,1184,Someone looks out of a window. A shell strikes the house and the blast,Someone looks out of a window.,A shell strikes the house and the blast,gold,knocks the boys to the ground.,zooms in through the windows.,streams out of the dark.,hits someone sending out branches.\n10772,lsmdc1034_Super_8-8324,1174,Air Force soldiers grab someone in the evacuation center. Someone,Air Force soldiers grab someone in the evacuation center.,Someone,gold,\"falls to the backward then explodes on the chopper's knee, aiming for another.\",carries someone to a cab.,walks with his staff inspector.,retrieves his locket from someone's body.\n10773,lsmdc1034_Super_8-8324,1177,They hurry through a back garden shoving a washing line out of their way. They,They hurry through a back garden shoving a washing line out of their way.,They,gold,spot him by the window.,\"the dogs hair and side by side, they step on, then she goes to the archives, tries all to stay sincere.\",are staring at someone in disbelief.,leap a fence then race through a gate onto the street.\n10774,lsmdc1034_Super_8-8324,1181,The boys flee through a playground from an out of control tank. They,The boys flee through a playground from an out of control tank.,They,gold,navigate through a large rough waters.,abandon them as city areas.,pack a large pile.,hurry up a hill and take refuge in a house as the tank smashes up the playground.\n10775,lsmdc1034_Super_8-8324,1168,\"Someone breaks the window with his elbow and climbs out onto the side of the bus. At the front, the giant spider like alien\",Someone breaks the window with his elbow and climbs out onto the side of the bus.,\"At the front, the giant spider like alien\",gold,is busy trying to reach in to get someone.,\"comes out of the freely, it crashes into someone's thighs.\",sways overhead and slides to it down safely.,is laid out travels gently a narrow verdant mountain highway.\n10776,lsmdc1034_Super_8-8324,1182,They hurry up a hill and take refuge in a house as the tank smashes up the playground. The boys,They hurry up a hill and take refuge in a house as the tank smashes up the playground.,The boys,gold,walk up and under a grassy dune.,flip beneath the other guys cream t - shirt near their feet.,\"run down a main staircase, through a scope and phones the heads.\",hurry upstairs in the house.\n10777,lsmdc1034_Super_8-8324,1176,A tank opens fire on them and someone swerves to avoid the incoming round. The boys,A tank opens fire on them and someone swerves to avoid the incoming round.,The boys,gold,speeds up behind people and someone also yells again.,chase them for the same shot as her laps.,get out of the car and flee.,get off their bikes and walk away.\n10778,lsmdc1034_Super_8-8324,1183,The boys hurry upstairs in the house. Someone,The boys hurry upstairs in the house.,Someone,gold,\"reaches for the door and goes into the elevator, which someone happens.\",looks out of a window.,sees a full variety of un - dead woman bumping up to the house.,\"puts down their glasses, grins at someone, then leans back on the couch.\"\n10779,lsmdc1034_Super_8-8324,1157,\"As he nears the door, someone stops. A tentacle\",\"As he nears the door, someone stops.\",A tentacle,gold,steps out from behind a chair.,\"taps his arm, sending someone flying.\",is hurled towards his open wings.,reaches into the bus and grabs someone.\n10780,lsmdc1034_Super_8-8324,1169,\"At the front, the giant spider like alien is busy trying to reach in to get someone. Someone\",\"At the front, the giant spider like alien is busy trying to reach in to get someone.\",Someone,gold,tries his wand as the track lie dead on the ground.,\"helps someone out of the broken window followed by someone, and then someone.\",catches the cat and starts swinging on the thread.,\"continues to proceed, gripping the civilian as the power fails.\"\n10781,lsmdc1034_Super_8-8324,1172,\"Someone runs out of ammunition. Lying in a ditch, the boys\",Someone runs out of ammunition.,\"Lying in a ditch, the boys\",gold,roll up their arms.,drives up with two guys.,spill out his body.,watch as the alien leaps of the bus and disappears into the woods.\n10782,lsmdc1034_Super_8-8324,1180,\"Soldiers flee from their own malfunctioning machines which randomly spray shells, missiles, and bullets around them. The boys\",\"Soldiers flee from their own malfunctioning machines which randomly spray shells, missiles, and bullets around them.\",The boys,gold,prepare to begin while they consider words to be the other to get back and raise their hands.,head to the shelves.,collide together by a yellow partition.,flee through a playground from an out of control tank.\n10783,lsmdc1034_Super_8-8324,1165,A tentacle reaches in and crushes the driver. Someone,A tentacle reaches in and crushes the driver.,Someone,gold,lies on his side trying to catch up with sting the cut on his stomach.,pounds on a cracked window above them.,applies a wiper to a smaller piece of metal.,buries his face in his hands.\n10784,lsmdc1034_Super_8-8324,1175,He clocks the red bus. Someone,He clocks the red bus.,Someone,gold,reads casually reverses speed.,drives someone's car back into town.,hands someone cash and takes a photo in a hug.,\"reads the work hard, papers in someone's room.\"\n10785,lsmdc1034_Super_8-8324,1159,The boys watch in horror as it slaps him against the walls of the bus. The rifle,The boys watch in horror as it slaps him against the walls of the bus.,The rifle,gold,goes off hitting the window of the boys holding cell.,blows shut and flings streets down.,\"strikes someone down a side belt, blocking the security agents toward him.\",is locked in a space metal.\n10786,lsmdc1034_Super_8-8324,1158,A tentacle reaches into the bus and grabs someone. The boys,A tentacle reaches into the bus and grabs someone.,The boys,gold,continue holding their glass in surrender.,bundle themselves into the truck and barrels through them.,watch in horror as it slaps him against the walls of the bus.,duck out of reach as the camera finds them below.\n10787,lsmdc1034_Super_8-8324,1179,They see a tank being overturned. Soldiers,They see a tank being overturned.,Soldiers,gold,are in the head side of the military camp.,are outside on a very paddy field.,\"flee from their own malfunctioning machines which randomly spray shells, missiles, and bullets around them.\",come in and join them.\n10788,lsmdc1034_Super_8-8324,1160,\"The senior airman restarts the bus's engine and it lurches into life. As he stamps on the throttle, the bus\",The senior airman restarts the bus's engine and it lurches into life.,\"As he stamps on the throttle, the bus\",gold,reaches a mother's house.,pulls into the car's main.,drives off and stomps on the control control for a time.,is tipped onto its side.\n10789,lsmdc1034_Super_8-8324,1163,Someone tries to open the holding cell door but it's locked. Someone,Someone tries to open the holding cell door but it's locked.,Someone,gold,leaps out onto the balcony.,shuts the door behind him.,comes to the door.,is empty.\n10790,lsmdc1034_Super_8-8324,1171,The alien closes in on someone apparently undeterred by the automatic fire. Someone,The alien closes in on someone apparently undeterred by the automatic fire.,Someone,gold,releases from its lighter.,\"turns to look back down, and we shift to see him teaching the class and a book - practicing balancing on a wall.\",hits the chandelier then snaps a picture of himself.,runs out of ammunition.\n10791,lsmdc1034_Super_8-8324,1164,Someone comes to the door. A tentacle,Someone comes to the door.,A tentacle,gold,reaches in and crushes the driver.,is grabbed by the stairway outside.,rises up revealing people venturing out of the building as someone pulls someone to safety.,steadies his position then lunges across his chest.\n10792,lsmdc1034_Super_8-8324,1161,The boys pick themselves up. Someone,The boys pick themselves up.,Someone,gold,spots the flash body and throws an arm at someone.,climbs up stairs on the study and leans close.,tumbles out of the hole in the other side corner of the room.,tries to open the back door.\n10793,lsmdc1034_Super_8-8324,1156,\"Outside it's pitch dark. Clutching the rifle, someone cautiously\",Outside it's pitch dark.,\"Clutching the rifle, someone cautiously\",gold,opens the air shelter then slides wearily down onto the ground.,turns around to face him.,looks the keys and walks with someone.,makes his way along the aisle of the bus towards the open door.\n10794,lsmdc1034_Super_8-8324,1166,Someone pounds on a cracked window above them. Someone,Someone pounds on a cracked window above them.,Someone,gold,\"halfway inside, she peers out into the open closet of which lies a poker envelope sitting on a large bucket.\",slams someone into the backseat.,snaps key tags and runs to a kitchen window.,loads an assault rifle.\n10795,lsmdc1034_Super_8-8324,1162,\"Someone tries to open the back door. In the main body of the bus, a technical sergeant\",Someone tries to open the back door.,\"In the main body of the bus, a technical sergeant\",gold,keeps her watchful gaze fixed on him.,has been knocked cold.,pushes a small shuttle staffer over the water.,goes into his cottage at the airport.\n10796,anetv_zzci2xZ011A,4700,He is playing hackey sack with a person in front of him. People,He is playing hackey sack with a person in front of him.,People,gold,are riding down the mountain.,are sitting on the beach behind him.,\"wash the small boy of the dog, and he is washing the dog in white paint.\",are traveling down a large track.\n10797,anetv_sf77PM1CtNQ,4839,He unplugs the vacuum and plugs it back in. He,He unplugs the vacuum and plugs it back in.,He,gold,starts vacuuming the stairs.,removes the tape recorder from the seat.,continues to cut out text in different ways.,is paused to adjust a specific part of the wall.\n10798,anetv_sf77PM1CtNQ,4837,A backpack vacuum is sitting on the floor. A man,A backpack vacuum is sitting on the floor.,A man,gold,is sliding under a cement slab.,pulls something for the camera.,is sitting up by a carpet.,puts the backpack on his back.\n10799,anetv_sf77PM1CtNQ,19332,A backpack is placed on the floor. a man,A backpack is placed on the floor.,a man,gold,grabs a pair of shoes and drops on the ground floor.,is walking down some stairs.,is shown welding a piece of wood.,picks up the back pack and demonstrates its uses.\n10800,anetv_sf77PM1CtNQ,19331,An industrial vacuum cleaner is shown. a backpack,An industrial vacuum cleaner is shown.,a backpack,gold,is placed on the floor.,is working on the table.,vacuums a living room with plenty of tiled floors.,is next to a car.\n10801,anetv__EZnGbfMqsc,6401,She jump ropes multiple times. She,She jump ropes multiple times.,She,gold,stands on spring ropes and stands in the gym.,lands on the sand.,\"does it again, jump roping over and over again.\",throws the rope over the air.\n10802,anetv__EZnGbfMqsc,6402,\"She does it again, jump roping over and over again. She\",\"She does it again, jump roping over and over again.\",She,gold,does several cheer and tricks back to the bars.,jumps off the landing and landing.,looks into her eyes as she goes.,speaks to the camera.\n10803,anetv__EZnGbfMqsc,6395,She holds a jump rope and turns the jump rope in front of her. She,She holds a jump rope and turns the jump rope in front of her.,She,gold,performs the same thing again.,jumps and cartwheel with another time.,continues the guy jumps to perform flips through the monkey bars while coach.,\"jump, flipping and tumbling on the mat.\"\n10804,anetv__EZnGbfMqsc,6397,She turns the jump rope once more and catches it with her feet. She,She turns the jump rope once more and catches it with her feet.,She,gold,does it once more.,is still maintaining balance skis on right.,dismounts with the man gaining momentum and her legs assist her.,dismounts and resumes practicing.\n10805,anetv__EZnGbfMqsc,6399,She turns the jump rope and completes a full jump. She,She turns the jump rope and completes a full jump.,She,gold,does cartwheels as she goes.,vaults over him as gymnasts march down the track.,goes and does it again.,does a gymnastics routine on the bars.\n10806,anetv__EZnGbfMqsc,6398,She does it once more. She,She does it once more.,She,gold,starts walking backwards.,\"moves off, as they creak.\",turns the jump rope and completes a full jump.,leaves the pot and hands it to him.\n10807,anetv__EZnGbfMqsc,6396,She performs the same thing again. She,She performs the same thing again.,She,gold,throws the baton lying on her back.,chattering by the ballet moves again.,turns the jump rope once more and catches it with her feet.,sees she bending down to her waist for a nude look.\n10808,anetv__EZnGbfMqsc,6394,A young blonde girl jumps outside. She,A young blonde girl jumps outside.,She,gold,holds a jump rope and turns the jump rope in front of her.,approaches the front door frame and climbs down.,opens the front door and pulls in back.,forces her way along a bridge.\n10809,anetv__EZnGbfMqsc,6400,She goes and does it again. She,She goes and does it again.,She,gold,jump ropes multiple times.,goes for her hair bun.,is trying to victory it.,comes back the way talking again.\n10810,anetv_atw5LkvnAyo,13206,\"He rolls up the wallpaper, then reapplies. He\",\"He rolls up the wallpaper, then reapplies.\",He,gold,smoothes the paper against the wall as he goes.,gets back his chair and clears his chest.,uses the rag to clean it with a second cube.,takes a bag of matches out of a container as he goes in.\n10811,anetv_atw5LkvnAyo,13621,A person is seen in fast motion hanging a large picture onto a wall and then pushing it against the wall. He,A person is seen in fast motion hanging a large picture onto a wall and then pushing it against the wall.,He,gold,continues to burn for the entire time.,then stands up and continues to run outside around the house.,then looks up confused and places off in the distance.,places more paper up against the wall while cutting around the edges and laying it down evenly against the wall.\n10812,anetv_atw5LkvnAyo,13205,A man is hanging a large strip of wallpaper. He,A man is hanging a large strip of wallpaper.,He,gold,hands someone a leafy hood.,\"rolls up the wallpaper, then reapplies.\",\"points to his work, then walks up with the camera closed in hands.\",is cutting a lemon on the cutting board.\n10813,anetv_Ggtcmy29TxE,2858,He is then shown pushing a boy's head down on the bottom. The boy,He is then shown pushing a boy's head down on the bottom.,The boy,gold,continues brushing his teeth while he speaks to the camera.,sits down and throws his hands up over the sink.,loses his breath and rises to the surface.,continues moving around doing the same moves.\n10814,anetv_Ggtcmy29TxE,2857,A man is lying on the bottom of a pool. He,A man is lying on the bottom of a pool.,He,gold,jumps from his diving board to a pool to start diving into the water.,is then shown pushing a boy's head down on the bottom.,is pushed to a pool by a body of water.,gets off the couch and shaves.\n10815,anetv_Ggtcmy29TxE,17463,A man is under water wearing goggles. A woman,A man is under water wearing goggles.,A woman,gold,comes onto the screen.,is in bed talking.,goes to the bottom of the pool and lays on her back.,is setting down a yellow tank board with a sail on a boat.\n10816,anetv_Ggtcmy29TxE,17464,A woman goes to the bottom of the pool and lays on her back. A man,A woman goes to the bottom of the pool and lays on her back.,A man,gold,falls down to finish diving.,sits down next to her and begins moving her face.,talks to the camera and she talks for a solo.,lays on the bottom of the pool.\n10817,lsmdc3027_GET_HIM_TO_THE_GREEK-12392,8844,They share a kiss and someone pulls him into the modern industrial home. Someone,They share a kiss and someone pulls him into the modern industrial home.,Someone,gold,sits in the kitchen room with some packing.,grabs him from behind.,lies back as a blanket covering her midriff rides.,\"rolls his rear door, then tugs on the knob, and soars into it.\"\n10818,anetv_8UXuHMmOYGI,15391,The man then begins sharpening the knife using a tool on the table. He,The man then begins sharpening the knife using a tool on the table.,He,gold,then takes a sword and slides the blade over the carpet.,continues sharpening the knife and showing it close up to the camera.,puts down the iron on the side of his chair and then begins to precision the properly up and examines the left head.,continues to speak to the camera while showing a brush.\n10819,anetv_8UXuHMmOYGI,11748,A group of tools and knives are on a table top. A man,A group of tools and knives are on a table top.,A man,gold,shovels food from a fire outdoors.,is welding another beam.,uses a sharpener to sharpen a knife.,is laying on the floor with another man who is holding an iron and starts welding them.\n10820,anetv_8UXuHMmOYGI,11749,A man uses a sharpener to sharpen a knife. He,A man uses a sharpener to sharpen a knife.,He,gold,sharpens the knife and relaxes the knife.,puts a sharpener on top and cuts them to pieces.,rakes it over the sharpener several times.,sets a knife to make a piece of sharpener.\n10821,anetv_8UXuHMmOYGI,15390,A close up of tools are shown as well as a man holding up a knife. The man then,A close up of tools are shown as well as a man holding up a knife.,The man then,gold,uses an electric tool along with welding food items.,grabs the horse's and continues sharpening the knife on the sharpener.,begins brushing the horse while the calf is braided into another man.,begins sharpening the knife using a tool on the table.\n10822,anetv_IfKGdI5egKc,2576,\"These 2 people are trying to bathe this dog who is making the mission completely impossible. But, after a while the dog allows them to bathe him and there\",These 2 people are trying to bathe this dog who is making the mission completely impossible.,\"But, after a while the dog allows them to bathe him and there\",gold,is also someone else trying to bathe the big black dog.,is a woman speaking out of the screen too.,\"'s several dogs going on the previous side, on the way to other other runners.\",is splattering outside them all clean.\n10823,anetv_IfKGdI5egKc,7406,A couple is outside with a bucket and a dog. The dog,A couple is outside with a bucket and a dog.,The dog,gold,comes downstairs and throw the camera.,is running around trying to avoid a bath.,is getting a dog in a shower.,walks around the park.\n10824,anetv_W2wyahjyTFc,254,A little girl is standing in front of a hopscotch game in her living room. She,A little girl is standing in front of a hopscotch game in her living room.,She,gold,begins playing a tennis game of hopscotch on the driveway.,slides down the playground and lands on the ground.,\"jumps forward on each square, then turns and goes the other way.\",holds a bottle of liquor and dumps it around the room.\n10825,anetv_W2wyahjyTFc,255,\"She jumps forward on each square, then turns and goes the other way. She\",\"She jumps forward on each square, then turns and goes the other way.\",She,gold,gets down on the ground and starts her jump.,bounces as she lands on the platform and clinging to her legs.,smiles and bows for the camera.,trips into another lane in front of her.\n10826,anetv_EBdkGs_jFDw,4906,\"A person cleans a window screen, and then puts detergent on the lower part of the window and brush. Then, the person\",\"A person cleans a window screen, and then puts detergent on the lower part of the window and brush.\",\"Then, the person\",gold,\"brush a light on the canvas, then continue painting it.\",puts up the soap to get the left shoe off.,\"cleans the borders of the window with a cloth, and shows the dirt in the cloth.\",\"wash the belly with a rag, using a cloth on a device.\"\n10827,anetv_EBdkGs_jFDw,4907,\"Then, the person cleans the borders of the window with a cloth, and shows the dirt in the cloth. After, the person\",\"Then, the person cleans the borders of the window with a cloth, and shows the dirt in the cloth.\",\"After, the person\",gold,puts the thermometer off with a different tool to apply cement on the wall.,takes a bottle from the sill and continues cleaning the borders of the window screen.,sprays the snow with the vacuum and uses it with soap.,\"put it in a break and continues cleaning with it, using the shoes.\"\n10828,anetv_6LWkrN1qz8E,16570,A man is watching tv in a house. He,A man is watching tv in a house.,He,gold,is poured into a bucket of sand.,is talking to a camera while driving.,is brushing a little girl's hair as she stands in front of him.,see small videos of a man in a tv helicopter talking.\n10829,anetv_6LWkrN1qz8E,2657,An older man is seen sitting in a chair brushing the hair of a small child standing in front of him. The man,An older man is seen sitting in a chair brushing the hair of a small child standing in front of him.,The man,gold,folds his legs and lays down more water on his face.,continues brushing the girl's hair while she watches tv and another person sits on the side.,pretends to help the teach and apply product on the dog.,continues shaving off her face while putting the shoes around his head and the man continues presenting makeup from her face.\n10830,anetv_6LWkrN1qz8E,16571,He is brushing a little girl's hair as she stands in front of him. She,He is brushing a little girl's hair as she stands in front of him.,She,gold,holds up her hand and serves him some more.,trims the front of his beard.,walks up to the drummer in front of her.,watches tv while he continues to brush.\n10831,lsmdc0009_Forrest_Gump-50301,6316,\"Someone is about to sit on the first available seat, but the recruit sitting there refuses someone. Someone tries to sit on the next seat, but the second recruit\",\"Someone is about to sit on the first available seat, but the recruit sitting there refuses someone.\",\"Someone tries to sit on the next seat, but the second recruit\",gold,comes up and stops at this pier.,\"slides over, blocking him.\",feels on his lap.,goes into his arms so that someone can linger.\n10832,lsmdc0009_Forrest_Gump-50301,6301,Someone takes a bottle of dr. A servant,Someone takes a bottle of dr.,A servant,gold,stretches out his wand and hands it over.,rises from the agent's aid.,pours wine on a rock.,opens the bottle for him.\n10833,lsmdc0009_Forrest_Gump-50301,6294,Someone looks as the crowd cheers wildly. Someone,Someone looks as the crowd cheers wildly.,Someone,gold,spots someone's paws - - deep in thought.,erupt through the glass searching for someone.,hurries off into the aisle.,holds an autographed football as the all - american team stands behind him.\n10834,lsmdc0009_Forrest_Gump-50301,6292,The band motions for someone to stop and stay in the end zone. A group of defending players,The band motions for someone to stop and stay in the end zone.,A group of defending players,gold,rush to him.,are in the stands cheering for the crowd.,fall over each other in the end zone.,play tug o war.\n10835,lsmdc0009_Forrest_Gump-50301,6290,Someone stops in the end zone as he hears the crowd yells. The band members,Someone stops in the end zone as he hears the crowd yells.,The band members,gold,narrows cameras to listen and clap their fists in the air.,\"rush toward someone with their hands up, signaling him to stop.\",begin up with alarm.,follow their horses onstage.\n10836,lsmdc0009_Forrest_Gump-50301,6298,Someone steps up to the table. A large spread of food and soda,Someone steps up to the table.,A large spread of food and soda,gold,appear under the sink.,remains trashed on the table.,rests on his plate.,is on the table.\n10837,lsmdc0009_Forrest_Gump-50301,6293,A group of defending players fall over each other in the end zone. Someone,A group of defending players fall over each other in the end zone.,Someone,gold,tosses his sports discus as he falls.,looks like he is talking about the arrest.,looks as the crowd cheers wildly.,raises the paintball flag to greet them.\n10838,lsmdc0009_Forrest_Gump-50301,6315,Someone steps onto the army bus. Rain,Someone steps onto the army bus.,Rain,gold,in kids are in town.,falls over his knee.,pours outside as the army bus driver yells at someone.,someone is back to the professor; the nerd smiles.\n10839,lsmdc0009_Forrest_Gump-50301,6309,He steps up and accepts his diploma. The dean,He steps up and accepts his diploma.,The dean,gold,\"looks around, then the guy glances up.\",\"smiles through the glasses of chips at the ceiling, then drops the scotch.\",utter a deadpan gaze.,shakes someone's hand vigorously.\n10840,lsmdc0009_Forrest_Gump-50301,6297,The All - American players mingle around the food table. Someone,The All - American players mingle around the food table.,Someone,gold,steps up to the table.,opens the knife and puts his meal in the oven.,'girl shakes her head.,shakes his head and blinks back tears.\n10841,lsmdc0009_Forrest_Gump-50301,6311,People have their picure taken in front of a large statue. A military recruiter,People have their picure taken in front of a large statue.,A military recruiter,gold,is surrounded by a wool on trucks.,spots someone and steps up to him.,is standing on the end of the world.,points jig high above.\n10842,lsmdc0009_Forrest_Gump-50301,6299,A large spread of food and soda is on the table. Pepper,A large spread of food and soda is on the table.,Pepper,gold,are cut down on bread when it is done.,and contents is shown in the glass.,are displayed on the table.,and socks are put on a can.\n10843,lsmdc0009_Forrest_Gump-50301,6319,\"A large black recruit with a strange look on his face, much like someone's, looks up from his seat. Someone\",\"A large black recruit with a strange look on his face, much like someone's, looks up from his seat.\",Someone,gold,\"moves his case over, making room for someone to sit down.\",watches from the seat as someone unlocks the van and turns his way back.,draws himself onto his feet and spots something scrolling along the wall as he passes.,\"bluff in front of someone's stone building, removes his mask and takes out some glasses, letting the drips drop.\"\n10844,lsmdc0009_Forrest_Gump-50301,6289,Someone runs into the end zone. Someone,Someone runs into the end zone.,Someone,gold,\"stands away from the van, then runs into his team.\",\"brings his shot, looks down.\",gets to the feet of the attendant and reaches a negligee.,stops in the end zone as he hears the crowd yells.\n10845,lsmdc0009_Forrest_Gump-50301,6310,The dean shakes someone's hand vigorously. Someone,The dean shakes someone's hand vigorously.,Someone,gold,looks out into the crowd.,is silent for a moment.,emphatically allows him to give him applause.,shoots pool at the tv.\n10846,lsmdc0009_Forrest_Gump-50301,6320,\"Someone moves his case over, making room for someone to sit down. Someone\",\"Someone moves his case over, making room for someone to sit down.\",Someone,gold,\"appears, his hands, and knees, and tattoo again.\",walks away into the room behind someone and glances back at the stacks.,hands someone a handkerchief.,stands there holding a cabinet.\n10847,lsmdc0009_Forrest_Gump-50301,6295,Someone holds an autographed football as the All - American Team stands behind him. Someone,Someone holds an autographed football as the All - American Team stands behind him.,Someone,gold,is among the players in suits.,sends someone at the beach with bats.,'s face lights up as he approaches someone who swerves.,glances up at the old assistant.\n10848,lsmdc0009_Forrest_Gump-50301,6313,Someone takes the diploma from someone. The recruiter,Someone takes the diploma from someone.,The recruiter,gold,finds someone already there.,smile on the screen.,stare down at each other.,slaps someone on the shoulder and hands him some military literature.\n10849,lsmdc0009_Forrest_Gump-50301,6287,Someone runs across the field as the defending team chases him. Someone,Someone runs across the field as the defending team chases him.,Someone,gold,heads towards a aiming item with an arrow.,stares into his shoulder.,raises an ancient weapon above.,runs along the field.\n10850,lsmdc0009_Forrest_Gump-50301,6288,Someone runs along the field. Someone,Someone runs along the field.,Someone,gold,sees his name on a fallen stone.,turn and run away.,runs into the end zone.,stands on the flag.\n10851,lsmdc0009_Forrest_Gump-50301,6303,Someone begins to guzzle the dr. Someone,Someone begins to guzzle the dr.,Someone,gold,is in the kitchen.,sets down an empty dr.,notes his song at their student.,puts his daughters in prison.\n10852,lsmdc0009_Forrest_Gump-50301,6312,A military recruiter spots someone and steps up to him. Someone,A military recruiter spots someone and steps up to him.,Someone,gold,brings his fist to his chest.,\"runs down a bumpy road, weaving between two cars.\",watches the wave bellow up from the ground as well.,takes the diploma from someone.\n10853,lsmdc0009_Forrest_Gump-50301,6305,\"Someone urinates in the bathroom, then lowers the lid and flashes. Someone\",\"Someone urinates in the bathroom, then lowers the lid and flashes.\",Someone,gold,looks across the empty floor at someone.,\"washes his hands, then notices an autographed photo from someone and a photo of someone with his brother someone.\",strides forward and steps up into the cab.,gazes lovingly at an elderly woman reading a portrait.\n10854,lsmdc0009_Forrest_Gump-50301,6307,Someone sits on the bench and shakes his head. Students in their caps and gowns,Someone sits on the bench and shakes his head.,Students in their caps and gowns,gold,are obscured in melted ash.,traverses as the wave surfers each sea.,stand on an enclosed balcony.,step forward the podium to receive their diplomas.\n10855,lsmdc0009_Forrest_Gump-50301,6314,The recruiter slaps someone on the shoulder and hands him some military literature. Someone,The recruiter slaps someone on the shoulder and hands him some military literature.,Someone,gold,steps onto the army bus.,steps in the calm flow and watches them from behind.,opens it then takes a few puff of her here hair.,helps someone out of his sight as he closes the door to his assistant.\n10856,lsmdc0009_Forrest_Gump-50301,6317,\"Someone tries to sit on the next seat, but the second recruit slides over, blocking him. Someone\",\"Someone tries to sit on the next seat, but the second recruit slides over, blocking him.\",Someone,gold,fingers touch someone's face.,is hastily tumbled towards the doctor's cage.,\"steps forward, looking much like he did on his first bus ride to school years ago.\",punches someone in the face.\n10857,lsmdc0009_Forrest_Gump-50301,6308,Someone's name is called. He,Someone's name is called.,He,gold,steps up and accepts his diploma.,\"is walking to the backyard, holding a gift.\",\"was sitting on a dining table with rubbish - tipped, corgis in hand.\",\"stands there, gapes, listening, someone, and offscreen.\"\n10858,lsmdc0009_Forrest_Gump-50301,6285,Someone laughs and kisses someone on the cheek. People,Someone laughs and kisses someone on the cheek.,People,gold,\"hug on the bed as someone's roommate pretends to be asleep, but is listening, horrified, with her eyes open.\",bring an eight - year - old someone to someone.,\"look at him, writing.\",carry someone up from the wall.\n10859,lsmdc0009_Forrest_Gump-50301,6286,The crowd yells for someone. Someone,The crowd yells for someone.,Someone,gold,runs across the field as the defending team chases him.,picks in his cell phone.,takes down someone's supply.,drops his shard and moves himself right back over the bodies of the opponent.\n10860,lsmdc0009_Forrest_Gump-50301,6284,Someone leans over and puts her head on someone's shoulder. A song,Someone leans over and puts her head on someone's shoulder.,A song,gold,plays on someone's face as she wanders through the building.,on the tv shows someone fun.,- writer read beside him.,is coming over the radio.\n10861,lsmdc0009_Forrest_Gump-50301,6291,\"The band members rush toward someone with their hands up, signaling him to stop. The band\",\"The band members rush toward someone with their hands up, signaling him to stop.\",The band,gold,roars above his heads like a microphone!,cuts back to the song and passionately gambling still.,motions for someone to stop and stay in the end zone.,stops at the top of a large cab and a car drives by.\n10862,lsmdc0009_Forrest_Gump-50301,6306,\"Someone washes his hands, then notices an autographed photo from someone and a photo of someone with his brother someone. Someone\",\"Someone washes his hands, then notices an autographed photo from someone and a photo of someone with his brother someone.\",Someone,gold,sits on the bench and shakes his head.,uses a remote control.,crammed another toy into a bag.,\"enters the hallway and hangs his head with a hoe, but a heavy agent walks up.\"\n10863,lsmdc0009_Forrest_Gump-50301,6296,Someone is among the players in suits. The All - American players,Someone is among the players in suits.,The All - American players,gold,continue to cross his finger around.,continue to run out and litter the field.,mingle around the food table.,are raised in support and one of the broken collector is discussing his work.\n10864,lsmdc0009_Forrest_Gump-50301,6304,Someone holds his stomach and burps. Another player,Someone holds his stomach and burps.,Another player,gold,hits his lip reassuringly.,steps up to the president and shakes the president's hand.,attempts to pull him free.,appears on the swirling gray rope.\n10865,lsmdc0009_Forrest_Gump-50301,6318,\"Someone steps forward, looking much like he did on his first bus ride to school years ago. A large black recruit with a strange look on his face, much like someone's,\",\"Someone steps forward, looking much like he did on his first bus ride to school years ago.\",\"A large black recruit with a strange look on his face, much like someone's,\",gold,scrolls down through the counter and up the small table.,\"died, and in a flashback, he also wears a same black tulle.\",is now carrying a white cloth with onlookers.,looks up from his seat.\n10866,anetv_6fuOwhx91zM,6848,A man bends over and picks up his skateboard. He,A man bends over and picks up his skateboard.,He,gold,starts skateboarding down a hill.,starts flipping faster with his spray.,\"rides into a barbell with three other men standing behind him, smiling helplessly.\",helps him put the various liquors clockwise.\n10867,anetv_6fuOwhx91zM,6849,He starts skateboarding down a hill. He,He starts skateboarding down a hill.,He,gold,pumps his hand and then steps up to the foot of the mountain.,picks up his skateboard again and continues talking.,has the blanket on the side on the slide left are her head.,zooms out and a group of skis are shown with them biking.\n10868,anetv_6fuOwhx91zM,12130,He is holding a skateboard as he talks. He then,He is holding a skateboard as he talks.,He then,gold,does several tricks on the wheel ski.,shows the positions and ways to ride the board.,proceeds to measure the distance his machine.,demonstrates how to walk with the body of weights.\n10869,anetv_PllZQ09sBuI,18870,\"Then, a man and a woman set up a Christmas tree. Then, the couple\",\"Then, a man and a woman set up a Christmas tree.\",\"Then, the couple\",gold,presents a christmas tree together in the sand with other women.,lays down on the tree.,cuts the tree and put on ornaments.,put lights and ornaments on the tree.\n10870,anetv_PllZQ09sBuI,18874,\"A small Christmas tree is on table, and the toddler decorate it with lights and ornaments. After, the toddler\",\"A small Christmas tree is on table, and the toddler decorate it with lights and ornaments.\",\"After, the toddler\",gold,lay the grim conga cape on the table.,mows the lawn outside the blue tree with other boys.,puts ribbon on the tree and decorate the tree.,puts a star on the top and more ornaments.\n10871,anetv_PllZQ09sBuI,18873,\"After, the man holds a toddler that puts a star on top the Christmas tree. A small Christmas tree is on table, and the toddler\",\"After, the man holds a toddler that puts a star on top the Christmas tree.\",\"A small Christmas tree is on table, and the toddler\",gold,decorate it with lights and ornaments.,begins to squeeze something into the container.,add red ornaments to the christmas tree and decorate it.,talks to the camera.\n10872,anetv_PllZQ09sBuI,17836,And sart putting the christmas lights around the tree. once the lights are ready they,And sart putting the christmas lights around the tree.,once the lights are ready they,gold,are shown things together in pairs.,are putting red balls on the tree.,are shown for christmas.,put blue flowers on the back of the tree.\n10873,anetv_PllZQ09sBuI,18872,\"A toddler helps walks around and also help put ornaments on the tree. After, the man\",A toddler helps walks around and also help put ornaments on the tree.,\"After, the man\",gold,takes the box and prepares cross frame by others.,holds a toddler that puts a star on top the christmas tree.,pick up the ornaments and hang out ornaments.,puts out many different things and bowls a long piece which woman makes to start the performance this time.\n10874,anetv_PllZQ09sBuI,18869,\"A family shows Christmas materials and family members. Then, a man and a woman\",A family shows Christmas materials and family members.,\"Then, a man and a woman\",gold,drink from a table.,decorate the christmas tree for a house.,set up a christmas tree.,shoot stones at a tree.\n10875,anetv_PllZQ09sBuI,17833,Woman is holding a christmas balls crown. little baby,Woman is holding a christmas balls crown.,little baby,gold,is sleeping and swinging in a little chair.,is giving an interview with a cat.,\"is painting the table, then began putting the mattress in the corner of a black lawn.\",is walking in a bench next to the rollers and ushering them in paint.\n10876,anetv_PllZQ09sBuI,18871,\"Then, the couple put lights and ornaments on the tree. A toddler\",\"Then, the couple put lights and ornaments on the tree.\",A toddler,gold,gets up from a tree.,blends the mixture to each other and decorations it on their fingers.,starts mixing the cookies on a water board.,helps walks around and also help put ornaments on the tree.\n10877,anetv_PllZQ09sBuI,17837,Once the lights are ready they are putting red balls on the tree. th little girl on man's shoulders,Once the lights are ready they are putting red balls on the tree.,th little girl on man's shoulders,gold,are laying down on the bed.,put the star at the top of the tree.,gets away from the ground.,are enjoying a tightly kept surface erected.\n10878,anetv_PllZQ09sBuI,17832,People are saying hellow to the camera in christmas time. woman,People are saying hellow to the camera in christmas time.,woman,gold,is holding a christmas balls crown.,is standing in front of the white house talking.,is leaving trying to image the camera.,is in a store that is leading showing the demonstration.\n10879,anetv_PllZQ09sBuI,17835,A man a woman and a kid are taking out the thread from the tree. and,A man a woman and a kid are taking out the thread from the tree.,and,gold,tie the ribbon with pink ribbon.,sart putting the christmas lights around the tree.,pull the woman's hands from the back of the tree while putting her hands on the baby.,goes back for herself.\n10880,anetv_PllZQ09sBuI,17834,Little baby is sleeping and swinging in a little chair. a man a woman and a kid,Little baby is sleeping and swinging in a little chair.,a man a woman and a kid,gold,are chasing a woman with a dog as they start grooming tearfully.,are helping someone put her foot on the woman's shoulder.,are standing five or 3 kid in the room.,are taking out the thread from the tree.\n10881,anetv_-Z98HU6T7J8,12803,A man in a green shirt smokes a cigarette and blows the smoke on an animal attached to a window. The man,A man in a green shirt smokes a cigarette and blows the smoke on an animal attached to a window.,The man,gold,places the cigarette on the mouth of the animal.,nods while smoking and smoking from the hookah.,pulls the hookah pipe and takes a cigarette back to his mouth.,\"starts a cigarette and gets off blow smoke, sides right then flicks a can.\"\n10882,anetv_-Z98HU6T7J8,17707,The camera hangs off of a balcony. A small bat,The camera hangs off of a balcony.,A small bat,gold,sits in front of someone.,tangled in the air and hits the door.,raises a beam across a balance board.,is hanging on a window.\n10883,anetv_-Z98HU6T7J8,17708,A small bat is hanging on a window. A woman,A small bat is hanging on a window.,A woman,gold,grabs a third swinging bag erect.,is holding onto a set of bricks.,stands around looking at it.,is then shown attempting some sort of lock in a wall of a pinata with a stick.\n10884,lsmdc0014_Ist_das_Leben_nicht_schoen-55245,3305,Someone hands someone a glass of wine. Once more the crowd,Someone hands someone a glass of wine.,Once more the crowd,gold,consists from far below.,\"is caught, the line of ladies stand very the cloisters at the top of a skyscraper.\",breaks into cheering and applause.,comes up a roll of cabs and marches towards the edge of the ceremony.\n10885,lsmdc0014_Ist_das_Leben_nicht_schoen-55245,3306,\"Once more the crowd breaks into cheering and applause. His eye catches something on top of the pile, and he\",Once more the crowd breaks into cheering and applause.,\"His eye catches something on top of the pile, and he\",gold,reaches down for it.,seems happy with him.,proceeds to scrap it out while the spark can not towards him.,catches it and runs.\n10886,anetv_LmWcpkqUurg,9484,The man sits in the drivers seat of the van and places the rod frame into a socket and twists it around. The man,The man sits in the drivers seat of the van and places the rod frame into a socket and twists it around.,The man,gold,adjusts the rod and reaches under the van to remove a spare tire.,spins back and flips over again and the man flips the rope laying on his side.,inserts the handle while the water is towed as he installs some more on the car and the camera zooms vigorously on it's.,succeeds and the camera continues to start around and the left man reaches for the mower.\n10887,anetv_LmWcpkqUurg,9482,A man stands at the front of his minivan and shows it. The man,A man stands at the front of his minivan and shows it.,The man,gold,puts the skateboard ad in his hands as the man hands her the machine.,grabs the roofing and puts it in his garage.,lifts another ball off the back of the man that stick up to the camera and puts his hands in the air.,leans on the tailgate of his van and shows storage cargo features inside.\n10888,anetv_LmWcpkqUurg,9483,The man assembles together poles. The man,The man assembles together poles.,The man,gold,spins around and finishes with the fencer without bowing.,sits in the drivers seat of the van and places the rod frame into a socket and twists it around.,picks up the plate and the same men shuffles into the machine.,shoots the boy in the shirt and bounces off some others.\n10889,anetv_LmWcpkqUurg,9485,The man adjusts the rod and reaches under the van to remove a spare tire. The man,The man adjusts the rod and reaches under the van to remove a spare tire.,The man,gold,\"takes the tire off sign, then wets the replaces.\",removes the spare tire from its enclosure.,jerks out of the garage by kicking up the hit and darts through and jumps flat.,takes out a spare tire and snaps put in belt.\n10890,anetv_LmWcpkqUurg,9486,The man removes the spare tire from its enclosure. The man,The man removes the spare tire from its enclosure.,The man,gold,works on installing the new tire.,climbs off the ladder and waves it off the tree.,uncovers a new tire on the car.,gazes weakly through it.\n10891,anetv_ITGlho0dw-k,3675,We see a lady putting sunscreen on in a bathroom and on the beach. We,We see a lady putting sunscreen on in a bathroom and on the beach.,We,gold,see the lady talking on sunscreen for her.,see a title screen and see the lady buy her sunscreen and another title screen.,see the lady swinging with her teammate as she lands.,see another bathroom and films the lady eating.\n10892,anetv_ITGlho0dw-k,3676,We see a title screen and see the lady buy her sunscreen and another title screen. The lady,We see a title screen and see the lady buy her sunscreen and another title screen.,The lady,gold,is interviewing a woman in a professional sports event with a man in a shop.,throws a way a bottle and looks on her phone before going to the bathroom and putting sunscreen on.,puts into her ponytail piercing and scrubs along the lady's neck.,turns her hair in the bathroom and starts to brush her hair and the lady wipes her face with the towel.\n10893,anetv_ITGlho0dw-k,3677,The lady throws a way a bottle and looks on her phone before going to the bathroom and putting sunscreen on. We see a title screen and the lady applies sunscreen and a friend,The lady throws a way a bottle and looks on her phone before going to the bathroom and putting sunscreen on.,We see a title screen and the lady applies sunscreen and a friend,gold,brush her hair very quickly.,runs and dabs it with the food repeatedly.,talk to the camera and brush the hair.,puts some on her back.\n10894,anetv_ITGlho0dw-k,3679,The lady puts on sunscreen on the beach and her friend run on the beach. We,The lady puts on sunscreen on the beach and her friend run on the beach.,We,gold,see the trophy taking a shot.,see a title screen and the ending screen.,see the lady playing a piano.,see the water green until the end.\n10895,anetv_ITGlho0dw-k,3674,We see an opening title screen. We,We see an opening title screen.,We,gold,see a lady putting sunscreen on in a bathroom and on the beach.,see a man opening up a tree.,see the man filming shake hands and shake hands.,see a man punching and punching a cart in a bicycle path.\n10896,anetv_ITGlho0dw-k,3678,We see a title screen and the lady applies sunscreen and a friend puts some on her back. The lady puts on sunscreen on the beach and her friend,We see a title screen and the lady applies sunscreen and a friend puts some on her back.,The lady puts on sunscreen on the beach and her friend,gold,put a contact into her eye.,applies an individual sitting in the bathtub.,start putting cream on them.,run on the beach.\n10897,anetv_yweAN9o4QYI,8125,A man closes his eyes and tilt his head. A lady,A man closes his eyes and tilt his head.,A lady,gold,\"hunches down, lets black sun meet in the man's face and face.\",uses a brush to put black paint around a male eye.,takes a weight bottle from a hand and a shaving bottle an talks to the camera.,\"walks, kneels in front of him.\"\n10898,anetv_yweAN9o4QYI,5490,A woman is seen painting the face of another. The woman,A woman is seen painting the face of another.,The woman,gold,shows how to paint a fence while the man cheers.,shows the plate of cake.,speaks to the person while still painting.,screws her face on makeup while smiling to the camera.\n10899,anetv_yweAN9o4QYI,5491,The woman speaks to the person while still painting. The woman,The woman speaks to the person while still painting.,The woman,gold,continues to paint his face.,continues painting around the plant as the camera continues to show her movements.,speaks older and holds the hand of her mother.,laughs out more and brings the knife on top.\n10900,anetv_yweAN9o4QYI,8126,A lady uses a brush to put black paint around a male eye. The male,A lady uses a brush to put black paint around a male eye.,The male,gold,holds the cloth attached to the lady's braid.,finishes and talks to the camera.,stands up over them.,looks at her and then at the ceiling.\n10901,lsmdc0029_The_Graduate-64259,11322,The two chairs are slightly angled toward each other so that someone can look up at the stage without looking directly at someone. The stripper,The two chairs are slightly angled toward each other so that someone can look up at the stage without looking directly at someone.,The stripper,gold,is reflected in someone's glasses.,timing him is shown again.,\"is surrounded to small small groups of spectators each back on chairs, one by one.\",is not extremely crying or against her anger and the sense of fear on her tea.\n10902,lsmdc0029_The_Graduate-64259,11319,People are seated at a table. Someone,People are seated at a table.,Someone,gold,holds a racket in front of him.,sits in the chair with her back to the stage.,\"walks on, as they proceed down the block.\",gazes up at the indifferent fairy.\n10903,lsmdc0029_The_Graduate-64259,11321,She folds her hands on the table and looks down at them. The two chairs,She folds her hands on the table and looks down at them.,The two chairs,gold,are slightly angled toward each other so that someone can look up at the stage without looking directly at someone.,brush the shoe that holds the sheet of wallpaper on the ground.,line up and belly dancing.,have a knitted hat in their hands.\n10904,lsmdc0029_The_Graduate-64259,11320,Someone sits in the chair with her back to the stage. She,Someone sits in the chair with her back to the stage.,She,gold,answers the bottom of the phone.,folds her hands on the table and looks down at them.,\"view him again, her blonde hair curled.\",sits and lets her body down.\n10905,anetv_qRT0Z6Sz_Ck,3104,A person is rollerblading through a city and hanging out with friends. This,A person is rollerblading through a city and hanging out with friends.,This,gold,\"finishes their routine with throughout the stunts, end of jumping backwards down the floor.\",falls a last time over their heads.,man jumps and turns.,\"happens in many different places, but it basically the same thing.\"\n10906,anetv_qRT0Z6Sz_Ck,3103,A person gets off a plane. A person,A person gets off a plane.,A person,gold,paddles over a cliff while talking.,falls over the spear.,runs behind a boat.,is rollerblading through a city and hanging out with friends.\n10907,anetv_Po6tK3rYE8E,10278,\"He applies the sheet and photos to the wall, creating a real life photography mural. He\",\"He applies the sheet and photos to the wall, creating a real life photography mural.\",He,gold,wears an orange ivy mark uniform.,throws it into the bucket.,wipes the images onto the wall cleanly.,return at the dishes for the last day.\n10908,anetv_Po6tK3rYE8E,10277,\"A man rolls out a sheet of wallpaper from a tube, then a large photo. He\",\"A man rolls out a sheet of wallpaper from a tube, then a large photo.\",He,gold,pulls the trimmer gently and touches it.,uses a kneels to inspect the carpet.,\"applies the sheet and photos to the wall, creating a real life photography mural.\",then puts the letters on the wall.\n10909,anetv_nm2sHNDN7Lo,17096,The man on the left team blows the ball out of the cup. The man and the two ladies,The man on the left team blows the ball out of the cup.,The man and the two ladies,gold,are using the puck to collect the sticks into the target.,laugh and cheer and he high fives one lady.,walk up and wrestle.,start to push the ping pong ball across the court.\n10910,anetv_nm2sHNDN7Lo,17095,We see a man in a pink shirt throw a ball in a cup in a game of beer pong. The man on the left team,We see a man in a pink shirt throw a ball in a cup in a game of beer pong.,The man on the left team,gold,charges the ball and the guy jumps on the first man and flips him nearly.,blows the ball out of the cup.,swims away as he pins the ball which blows a shot.,rams the ball out and we see someone perform the second shot.\n10911,anetv_cMoy7UJtlyA,9327,He steers it through the lake. He,He steers it through the lake.,He,gold,watches the chopper between his fellow helicopters as he swerves over and falls toward the building.,box in a plane at the shore as the plane starts vanishing in its wake.,dives off the railing into the raft and climbs up.,stands on the dock again at the end.\n10912,anetv_cMoy7UJtlyA,9325,A man stands on a dock wearing a green shirt. He then,A man stands on a dock wearing a green shirt.,He then,gold,rides a boat with a sail.,begins to start out of his tube.,puts the hat on top.,swings the chain around the ring several times.\n10913,anetv_cMoy7UJtlyA,9326,He then rides a boat with a sail. He,He then rides a boat with a sail.,He,gold,steers it through the lake.,is shown skiing on a wave.,talks about it hopelessly as the man sets a boat back to a somersault.,looks down a steep shore through the river driveway.\n10914,anetv_jcQy1x8lDaQ,16093,\"The third time when he returns, he throws the ball and hits a strike one more time. When he returns the fourth time, he\",\"The third time when he returns, he throws the ball and hits a strike one more time.\",\"When he returns the fourth time, he\",gold,begins to play the video same as someone with the camera in his arms.,repeats his speed again until the person returns with the ball.,turns hopscotch and continues trying balls around the corner.,hits another strike by knocking down all the pins.\n10915,anetv_jcQy1x8lDaQ,19183,The person walks back and throws several more balls. The person,The person walks back and throws several more balls.,The person,gold,continues to bowl walking in and out of frame.,hits them with a mallet and places them down.,keeps swinging and running around fingers around frantically to the camera.,leaves around a bit and speaks to one another.\n10916,anetv_jcQy1x8lDaQ,16092,\"He hits a strike again for the second time in a row. The third time when he returns, he\",He hits a strike again for the second time in a row.,\"The third time when he returns, he\",gold,\"plays with one another, scoring a high five before another plays is shown.\",continues ski confidently in his partner riding on the floor next to the metal ball and falls with it.,\"stands and, as if someone is amazing, emerges with all his might.\",throws the ball and hits a strike one more time.\n10917,anetv_jcQy1x8lDaQ,16091,Then he comes back the second time with the bowling ball and aims directly at the pins after they are rearranged. He,Then he comes back the second time with the bowling ball and aims directly at the pins after they are rearranged.,He,gold,hits a strike again for the second time in a row.,comes down the first time.,takes a shot and throws another birdie before running the card across a blue mat.,freezes and catches the ball with the mallet in a hand and points his lane into a crowd.\n10918,anetv_jcQy1x8lDaQ,16090,There's a person in a red shirt and black shoes bowling in a bowling alley. He,There's a person in a red shirt and black shoes bowling in a bowling alley.,He,gold,falls down on a mat.,\"steps in the first time, holding the bowling ball in his right hand and aims for the pins and hits a strike.\",also push the ball up and kick the ball on and roll.,is throwing a bowling ball back up from the ground in boxing gloves.\n10919,anetv_jcQy1x8lDaQ,19182,A bowling lane is seen with a person throwing a ball. The person,A bowling lane is seen with a person throwing a ball.,The person,gold,walks back and throws several more balls.,pins it down and stops to speak to the camera.,throws a ball out onto the side of a field.,hits a man with a ball and slows down to hit him as they slide down.\n10920,anetv_pbz8c7TAlDs,15694,\"A guy carries a child on an inflated tire, and they ride the rocky body of water. The child\",\"A guy carries a child on an inflated tire, and they ride the rocky body of water.\",The child,gold,\"goes to the bridge in the river, trying to stay afloat.\",uses a hose on shore to pick up a fish off of a tube.,places on a chain beside the child.,falls into the water but gets back on the guy's lap.\n10921,anetv_pbz8c7TAlDs,15695,The child falls into the water but gets back on the guy's lap. The inflated tire,The child falls into the water but gets back on the guy's lap.,The inflated tire,gold,is illustrated until the woman is set up.,\"sinks, knocking some other girls onto the ground.\",is clipped and shows it trying to lift frost so thick.,turns over and both enter the body of water.\n10922,anetv_pbz8c7TAlDs,16532,A person is seen riding in a tube with a small child. The man and child,A person is seen riding in a tube with a small child.,The man and child,gold,navigate the hill amid the trees.,go down a hill before falling down again.,begin rafting tubes down the river.,ride down a river over waterfall.\n10923,lsmdc3025_FLIGHT-11788,12712,\"The broken off spire from the church lies some distance away from an ambulance, as rescue workers help survivors. In a hospital ward, someone slowly\",\"The broken off spire from the church lies some distance away from an ambulance, as rescue workers help survivors.\",\"In a hospital ward, someone slowly\",gold,follows the stairs dragging a pair of boxing equipment.,opens his right eye.,crosses to the windowsill and looks across the spacious opening at the hostages.,removes a book from his sink.\n10924,lsmdc3025_FLIGHT-11788,12708,\"Someone sees Ken leaning to the side in his seat, as he is dragged out. Someone\",\"Someone sees Ken leaning to the side in his seat, as he is dragged out.\",Someone,gold,watches a police car pass by.,jumps into someone's arms.,is slumped next to someone's still body.,sprints jauntily to someone's beautiful friend.\n10925,lsmdc3025_FLIGHT-11788,12716,\"On tv, cell phone footage shows the descent of the plane. It\",\"On tv, cell phone footage shows the descent of the plane.\",It,gold,drifts away alongside warehouse buildings and buildings.,is an array of evidence.,\"glides overhead, both engines on fire.\",reads 3: 30.\n10926,lsmdc3025_FLIGHT-11788,12711,Someone looks up at a female emt leaning over him. The broken off spire from the church,Someone looks up at a female emt leaning over him.,The broken off spire from the church,gold,is low in the archer mart.,illuminates its glistening bloodshot eyes.,\"lies some distance away from an ambulance, as rescue workers help survivors.\",is becoming a complete healthy quality.\n10927,lsmdc3025_FLIGHT-11788,12709,Someone is slumped next to someone's still body. Smoke,Someone is slumped next to someone's still body.,Smoke,gold,climb up the stone supports towards the rear of the cavern.,\"blocks someone's vision, as he is pulled away from the plane.\",is propped up by a tree trunk.,spins backwards into the crevasse.\n10928,lsmdc3025_FLIGHT-11788,12713,\"In a hospital ward, someone slowly opens his right eye. The other eye\",\"In a hospital ward, someone slowly opens his right eye.\",The other eye,gold,lies heavily on him where they lie get him close.,holds a towel above the teen's head.,stands tall in a doorway.,is covered by a bandage.\n10929,lsmdc3025_FLIGHT-11788,12710,\"As people in white robes help the passengers, a fire engine arrives. Someone\",\"As people in white robes help the passengers, a fire engine arrives.\",Someone,gold,takes out from a shelf and scrambles along an upper floor.,examines the thermos cup as she stalks through the hospital building.,goes through a hallway and grabs someone's shoes.,looks up at a female emt leaning over him.\n10930,lsmdc3025_FLIGHT-11788,12707,The plane hits the ground. Debris,The plane hits the ground.,Debris,gold,\"flies past the cockpit, as someone bangs his head and passes out.\",carries the plane on the shooters.,hear the temperature of a pipe.,\"crashes, clinging onto a cable and flies through.\"\n10931,lsmdc3025_FLIGHT-11788,12704,\"Someone loses her hold, and falls against the bulkhead. Someone\",\"Someone loses her hold, and falls against the bulkhead.\",Someone,gold,whacks someone against the banister shield.,runs all the way into the castle thousands - - doodles city blocks.,\"tumbles across the galley, as the plane straightens out.\",stares at him on his diamond watch.\n10932,lsmdc3025_FLIGHT-11788,12706,They head towards a church. Someone,They head towards a church.,Someone,gold,sits up on the sofa.,swings the hammer at his feet then spins the other rail.,steers the plane away from the church's steeple.,\"starts pulling, turning from d'artagnan to her students.\"\n10933,lsmdc3025_FLIGHT-11788,12714,The other eye is covered by a bandage. He,The other eye is covered by a bandage.,He,gold,pulls his eye followed by someone.,ties his son's collar.,\"comes back, searching for something.\",sees a seated man on the tv gesturing.\n10934,lsmdc3025_FLIGHT-11788,12718,\"Someone averts his gaze from the screen, and notices a man in the room. The man\",\"Someone averts his gaze from the screen, and notices a man in the room.\",The man,gold,goes back to his family and desperately tugs the door.,holds up a pen and holds a phone to his ear.,\"wears a suit with a collar open, and is staring intently at his cell phone.\",tosses more of the caulk and explodes.\n10935,lsmdc3025_FLIGHT-11788,12715,\"He sees a seated man on the tv gesturing. On tv, cell phone footage\",He sees a seated man on the tv gesturing.,\"On tv, cell phone footage\",gold,\"shows him skiing down a hill, sipping from a miniature bottle.\",shows a dog reaching a door.,shows the descent of the plane.,shows someone and under his cover.\n10936,lsmdc1020_Crazy_Stupid_Love-81397,2662,Someone looks down at the floor. Someone,Someone looks down at the floor.,Someone,gold,\"picks up someone, whispers in his eyes.\",\"looks up, sees her people staring slack - jawed.\",use their phones to get through the open gate.,nods and looks down.\n10937,anetv_uuhcDXyGrEI,15992,\"A man reads a sheet of paper while sitting on the food, then he opens a bread and puts ham on. After, the man\",\"A man reads a sheet of paper while sitting on the food, then he opens a bread and puts ham on.\",\"After, the man\",gold,is adjusting the pan.,\"add on top the ham mayonnaise, tomato sauce, cheese and brown sauce from a can.\",demonstrates how to cut pieces of the paste and melt the paper onto a peeler.,\"mixes the cheese and put it on a plate, after he fries cheese and butter.\"\n10938,anetv_uuhcDXyGrEI,15993,\"After, the man put cereal, chicken nuggets and a doll. Next, the man\",\"After, the man put cereal, chicken nuggets and a doll.\",\"Next, the man\",gold,lifts the other brush on the suede step on the cloth.,closes the bread and try to put inside the sandwich inside a tube with the help of a person.,puts on a drink and take the cooked garland.,folds the seeds and puts it on a finished pot.\n10939,anetv_uuhcDXyGrEI,11344,A man is seated at a table in a kitchen. He,A man is seated at a table in a kitchen.,He,gold,is seated and talking with the bleached in his hands.,sits on the sandwich table using an electric blowtorch.,reads from a piece of paper in front of him.,is wiping his face with colorful light.\n10940,anetv_uuhcDXyGrEI,11345,He reads from a piece of paper in front of him. He then,He reads from a piece of paper in front of him.,He then,gold,uses the ingredients on the table to create a sandwich.,pours it over and eats it at the time.,rolls it and puts it on the tree.,raises his bow in the air and ends the bow.\n10941,anetv_5QDwobEnN3g,15327,A family is seen sitting on the beach making sand castles with a object. People stand around to watch them work and the camera,A family is seen sitting on the beach making sand castles with a object.,People stand around to watch them work and the camera,gold,pans around the kids playing in the sand.,gets away from the camera.,continues on as the children walks in and out of frame.,pans in to landscapes and people skating on the beach.\n10942,anetv_Kwhp0DNop9I,10197,Woman is ni seashore wearing a big hat and smiling. peolpe,Woman is ni seashore wearing a big hat and smiling.,peolpe,gold,are sitting around the court watching the game.,are scuba diving in the sea next to the pier with bags on their backs and showing the fishes and rocks on the floor.,are holding a ring on their hands.,are standing up next to the rocks of the raft and is being pulled by a boat in the water water.\n10943,anetv_JzLqc6MhJtc,3757,A person is painting something onto their finger. The woman,A person is painting something onto their finger.,The woman,gold,looks up at the camera.,begins talking in front of a mirror.,\"leaves the end of the line, putting mascara in her face.\",starts painting the nails of the wall.\n10944,anetv_JzLqc6MhJtc,3756,A woman is sitting in a chair. A person,A woman is sitting in a chair.,A person,gold,puts her hand on her cheek to answer the tap.,is painting something onto their finger.,pushes a chair around behind a table.,is blowing the leaves in front of her.\n10945,anetv_cMeMbnjX-pg,16085,\"He cleans the floor as people try to talk to him. A man falls and slides, and another\",He cleans the floor as people try to talk to him.,\"A man falls and slides, and another\",gold,steps out and begins to ride.,talks to him about the same moves.,cuts to cut him in half.,grabs him in a fight.\n10946,anetv_cMeMbnjX-pg,16084,A man is skating on an indoor rink with a sweeper as people watch. He,A man is skating on an indoor rink with a sweeper as people watch.,He,gold,cleans the floor as people try to talk to him.,comes to the end of a ring and jumps into the middle of the track.,introduction cuts to photos of several audience wrestlers doing positioned and throw in slow motion.,yawns to the side as she runs often out of the submarine.\n10947,anetv_ozkDsQ1UY1k,17424,A close up of a pool table is seen followed by a man hitting a ball. Another man,A close up of a pool table is seen followed by a man hitting a ball.,Another man,gold,presents a ball continuously while a camera pans around people as well as him holding the bars.,demonstrates how to put their hands in a while hold raising beers.,is seen running around and holding onto a tennis racket and hitting balls.,steps up with the pool stick to aim his shot and hits the balls.\n10948,anetv_ozkDsQ1UY1k,17425,Another man steps up with the pool stick to aim his shot and hits the balls. The men,Another man steps up with the pool stick to aim his shot and hits the balls.,The men,gold,take turns back and fourth playing pool until one wins and the camera pans to a man watching.,\"demonstrate how to shoot the ball with paintball guns, while the camera zooms near on the counter.\",slam each other and chase each other.,\"continue to walk until the is and hits the ball, knocking them to the ground and back them together.\"\n10949,anetv_MHhMO3yhcfU,9840,A bull is chasing after men in a pen. A bull,A bull is chasing after men in a pen.,A bull,gold,\"fastens the bull between swinging legs and feet, an toddler.\",is watching the bull trying to catch the bull.,knocks a man down onto the ground.,fights out of the ring.\n10950,anetv_MHhMO3yhcfU,9841,A bull knocks a man down onto the ground. The bull,A bull knocks a man down onto the ground.,The bull,gold,runs after him and tackles the bull to his knee.,runs down the road using hand stand.,runs to the track and over the field.,continues to chase people in the pen.\n10951,anetv_MHhMO3yhcfU,16308,Pictures of several men are shown out in a field taming a bull. Two men then,Pictures of several men are shown out in a field taming a bull.,Two men then,gold,appear in a field of dirt and begin to chase the bull.,carry lifts while charging and pushing the men as others watch.,throw paste by the rope to catch the frisbee while the crowd continues to watch the bull.,move back and fourth on stage while various people watch on the side and wrestle.\n10952,anetv_MHhMO3yhcfU,16309,Two men then appear in a field of dirt and begin to chase the bull. The bull then runs over a man and the other tries to help but he,Two men then appear in a field of dirt and begin to chase the bull.,The bull then runs over a man and the other tries to help but he,gold,shoots his finger and runs after the bull.,ends up on the ground.,throws the stick when a black man calls out and puts his name down.,picks up a pole to hit the cow.\n10953,anetv_MHhMO3yhcfU,16310,The bull then runs over a man and the other tries to help but he ends up on the ground. Another fight is shown and the bull,The bull then runs over a man and the other tries to help but he ends up on the ground.,Another fight is shown and the bull,gold,falls on the back and ropes up the bull.,is winning over the person in each video.,tries to hit the frisbees bulls his way.,chases a bull after the bull as well.\n10954,lsmdc0033_Amadeus-66818,11404,He offers her the dish. She,He offers her the dish.,She,gold,picks up the trophy and captured her's head and walks off.,carries them to the bar.,takes one and puts it in her mouth.,leaves as he opens the door at an older couple.\n10955,lsmdc0033_Amadeus-66818,11403,He indicates a dish piled high with glazed chestnuts. He,He indicates a dish piled high with glazed chestnuts.,He,gold,tosses the wheelbarrow full of food.,hangs its head and hauls it toward his face.,gazes wistfully at the dark - haired woman.,offers her the dish.\n10956,anetv_n1NqFiDdlEU,10682,A crowd of people are cheering. A person on a motor bike,A crowd of people are cheering.,A person on a motor bike,gold,plays in a green area.,arrives with a red jump rope.,rides in the lake.,is doing tricks off of a jump.\n10957,anetv_n1NqFiDdlEU,2061,They start to take off into the air doing flips and really cool professional tricks. It,They start to take off into the air doing flips and really cool professional tricks.,It,gold,follow the cameramen and continue doing the cone.,pans back to men who were watching the game.,comes out over the video.,'s amazing and super cool how they go up the ramp and then into the air.\n10958,anetv_n1NqFiDdlEU,2060,On a giant dome of dirt there are many bikers at the top and a very big crowd watching. They,On a giant dome of dirt there are many bikers at the top and a very big crowd watching.,They,gold,leotard people by making a appearance.,both are skating near the other square and riding at the squares.,start to take off into the air doing flips and really cool professional tricks.,dash through the door and inside.\n10959,anetv_n1NqFiDdlEU,10683,A person on a motor bike is doing tricks off of a jump. Three people,A person on a motor bike is doing tricks off of a jump.,Three people,gold,are holding signs above their heads.,\"are skateboarding, running down different pogo sticks.\",are in an office talking about a bike.,are snowboarding down a ramp on the boat.\n10960,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60177,14311,\"Someone looks with Wonderment at Narsil, the Broken Blade of someone, which lies on a cloth - covered plinth. Someone\",\"Someone looks with Wonderment at Narsil, the Broken Blade of someone, which lies on a cloth - covered plinth.\",Someone,gold,emerges with a near - empty shell on the drawers.,hangs beneath a metal held arm.,puts it in his pocket and cuts the curtains.,senses someone's presence.\n10961,lsmdc3062_SORCERERS_APPRENTICE-30561,6331,\"The teacher steers him back outside. Back in the shop, the lid\",The teacher steers him back outside.,\"Back in the shop, the lid\",gold,hangs fixed and television.,sits tightly atop the urn.,flies back 20 stories.,\"shutters open, and the teacher arrives.\"\n10962,lsmdc3062_SORCERERS_APPRENTICE-30561,6333,\"Beneath its tapered neck, warlike paintings adorn its bulbous body. An alarm clock\",\"Beneath its tapered neck, warlike paintings adorn its bulbous body.\",An alarm clock,gold,\"reads, 7: 00.\",reads 8: deploy.,shows someone standing on passage upstairs.,reads 6 minutes and four minutes.\n10963,lsmdc3062_SORCERERS_APPRENTICE-30561,6320,\"Hundreds of roaches pour out of the doll and scuttle into a heap. The roaches, now numbering in the thousands,\",Hundreds of roaches pour out of the doll and scuttle into a heap.,\"The roaches, now numbering in the thousands,\",gold,is filled with terrifying blood.,can now get to it having fun.,swarm into a growing tower.,is still looking at the troops.\n10964,lsmdc3062_SORCERERS_APPRENTICE-30561,6312,\"Now, someone hurries downstairs into a basement. He\",\"Now, someone hurries downstairs into a basement.\",He,gold,\"looks around for the first time, before strolling into her's door.\",kneels in front of the brick supporting the stairs and waves his hands.,lies in bed beside them.,pushes his chair into the motel room.\n10965,lsmdc3062_SORCERERS_APPRENTICE-30561,6334,\"An alarm clock reads, 7: 00. A young man\",\"An alarm clock reads, 7: 00.\",A young man,gold,takes a seat at her apartment building and peers inside.,fires an orange pool.,\"fumbles to turn it off, then finds a full - grown bulldog lying on his chest.\",waits amid the winding channel filled with a black - and - grey breakfast with a fluttering sheet.\n10966,lsmdc3062_SORCERERS_APPRENTICE-30561,6323,He takes a breath and becomes real. The last roaches,He takes a breath and becomes real.,The last roaches,gold,is to break down as someone stands still with his hands.,\"is in the bodied, snug until half - thirty again.\",melt into his skin and scurry into his mouth.,is playing in his head from nowhere to be seen.\n10967,lsmdc3062_SORCERERS_APPRENTICE-30561,6314,\"Someone studies his dragon ring, turning it to catch the light. Someone jerks his hand to one side and the boxes\",\"Someone studies his dragon ring, turning it to catch the light.\",Someone jerks his hand to one side and the boxes,gold,swing back from his feet.,fall on the absorbs.,tumble off the shelf.,\"remain, causing someone to speak as he watches someone volumes through a trail.\"\n10968,lsmdc3062_SORCERERS_APPRENTICE-30561,6329,He follows his teacher into the store. They,He follows his teacher into the store.,They,gold,\"walk to their room, eating using their arms.\",\"lean with it, trying to figure out what they get.\",drive someone's car down the street.,find everything back to normal.\n10969,lsmdc3062_SORCERERS_APPRENTICE-30561,6315,He does it harder and the wall shatters. The doll,He does it harder and the wall shatters.,The doll,gold,gets stuck in the bricks.,looks and lowers the windows.,falls to the floor.,is thrown from his mouth.\n10970,lsmdc3062_SORCERERS_APPRENTICE-30561,6335,\"A young man fumbles to turn it off, then finds a full - grown bulldog lying on his chest. He\",\"A young man fumbles to turn it off, then finds a full - grown bulldog lying on his chest.\",He,gold,turns off his wristwatch.,\"spins around, lands on his body as he hurries through lane.\",swing along behind him.,notices the punk girl gazing at the ceiling like an accordian in her mouth.\n10971,lsmdc3062_SORCERERS_APPRENTICE-30561,6318,The boy drops it and the two halves of the outermost nesting doll open. A roach,The boy drops it and the two halves of the outermost nesting doll open.,A roach,gold,\"crawls out, then another.\",\"is on the hookah, while he is drinking water smoking his pipe.\",on the screen fades to black.,palm tree fills the frame.\n10972,lsmdc3062_SORCERERS_APPRENTICE-30561,6332,\"Back in the shop, the lid sits tightly atop the urn. Beneath its tapered neck, warlike paintings\",\"Back in the shop, the lid sits tightly atop the urn.\",\"Beneath its tapered neck, warlike paintings\",gold,\"spiraling, followed with dense patches of light.\",show an christmas manuscript.,mirror the sardines belonging to a tank.,adorn its bulbous body.\n10973,lsmdc3062_SORCERERS_APPRENTICE-30561,6316,The doll falls to the floor. Someone,The doll falls to the floor.,Someone,gold,opens a door in the bricks and slides out someone's ancient spell book.,smiles happily as he waves someone jet.,\"picks up a gun, who swoops it down onto the floor.\",grabs the glider stick and steals the remaining cat into midair.\n10974,lsmdc3062_SORCERERS_APPRENTICE-30561,6319,\"A roach crawls out, then another. Hundreds of roaches\",\"A roach crawls out, then another.\",Hundreds of roaches,gold,\"play their rinsed off, bottle in hand.\",ones wrestle as someone kicks his leg across the floor.,urchins climb boat.,pour out of the doll and scuttle into a heap.\n10975,lsmdc3062_SORCERERS_APPRENTICE-30561,6325,The innermost doll now shows a man with a high forehead and long fingernail. He,The innermost doll now shows a man with a high forehead and long fingernail.,He,gold,kisses someone's bleeding head.,has bulky rings on right index.,is moving wildly faster and faster.,ties up rugged his team.\n10976,lsmdc3062_SORCERERS_APPRENTICE-30561,6317,\"Someone opens a door in the bricks and slides out someone's ancient spell book. Upstairs, someone\",Someone opens a door in the bricks and slides out someone's ancient spell book.,\"Upstairs, someone\",gold,picks up the nesting doll and studies the painting of someone's unhappy face.,raises his gaze from its podium as a disarms man readies a battle hammer.,punches someone's door before a wide staircase.,\"leads her to a lecture desk, where an agent pulls out some books.\"\n10977,lsmdc3062_SORCERERS_APPRENTICE-30561,6336,He turns off his wristwatch. He,He turns off his wristwatch.,He,gold,crosses the room and steps in.,puts the medicine bottle.,scratches the dog's ear.,returns to the front vestibule and shuts the door behind him.\n10978,lsmdc3062_SORCERERS_APPRENTICE-30561,6328,Someone rushes outside and hurls the Grimhold away. He,Someone rushes outside and hurls the Grimhold away.,He,gold,follows his teacher into the store.,\"has one look, half hidden behind himself.\",\"bends down, messes up his head and stares straight ahead.\",reaches from the frame and loads his darts.\n10979,lsmdc3062_SORCERERS_APPRENTICE-30561,6327,He grabs someone's leg and reels into the urn. Someone,He grabs someone's leg and reels into the urn.,Someone,gold,\"desperately stares at the sight of the youths, then eyes.\",\"steps down the steps, her dark - restraint mask on her forehead.\",draws and hands her clothes to her.,rushes outside and hurls the grimhold away.\n10980,lsmdc3062_SORCERERS_APPRENTICE-30561,6324,The last roaches melt into his skin and scurry into his mouth. This,The last roaches melt into his skin and scurry into his mouth.,This,gold,pins him to the ceiling.,uses a chair in the middle of the room.,\"is completely stiff, as he lies back down at the chair.\",carries someone to the bar.\n10981,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7603,Someone clenches the steering wheel. The Maserati,Someone clenches the steering wheel.,The Maserati,gold,\"puts his hand on the steering wheel, disturbed to get out.\",drives off with someone.,on the amber side and chairs are visible over the promenade.,weaves around the other cars as it speeds down the strip.\n10982,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7606,Later the teens scramble along the base of its freestanding letters. Graffitied Greek letters,Later the teens scramble along the base of its freestanding letters.,Graffitied Greek letters,gold,rearrange themselves to form a message in english.,appear at the smash time.,find someone on jaggerman's cellphone.,\"appear on the e, barricade.\"\n10983,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7604,Thunderheads swirl over the iconic Hollywood sign. The radio,Thunderheads swirl over the iconic Hollywood sign.,The radio,gold,plays a news report.,'s glass hung and pointed.,then forms a keg.,is seen street police dotting with papers.\n10984,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7607,\"They stare past the sign, where the earth grumbles away to make a door sized fissure. The teens\",\"They stare past the sign, where the earth grumbles away to make a door sized fissure.\",The teens,gold,\"follow a path along a broad, tranquil river.\",approach people and look at the president.,\"run through the art gallery, passing a row of small photos stuffed in fragments.\",obliviously get back in the carriage and continue onward.\n10985,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7609,They find a gaunt man in a monk like robe standing in a rowboat. Someone,They find a gaunt man in a monk like robe standing in a rowboat.,Someone,gold,\"watching her with the newspaper, someone takes his gray - haired uncle and lights his book.\",leads his friends over.,pulls him with his back to dress.,sits back and sees a boy feeding himself.\n10986,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26159,7608,The doorway behind them closes. They,The doorway behind them closes.,They,gold,have reached the door.,follows as they arm around.,pounds someone's head.,find a gaunt man in a monk like robe standing in a rowboat.\n10987,lsmdc3068_THE_BIG_YEAR-3649,3283,\"Now, the chopper lands in front of a hangar reading Nevada Aviation. Someone\",\"Now, the chopper lands in front of a hangar reading Nevada Aviation.\",Someone,gold,has a bouquet of thin flowers to someone.,jumps up and pumps his fists.,\"watches from the outer of the elevator, briefly.\",\"celebrates and jumped, then exhibits and jumps up.\"\n10988,lsmdc3068_THE_BIG_YEAR-3649,3279,\"The chopper banks suddenly toward a mountain face, then swerves away at the last second. Someone\",\"The chopper banks suddenly toward a mountain face, then swerves away at the last second.\",Someone,gold,squeezes his eyes shut.,tumbles cautiously as the suv pilots it.,splash ab crawl telekinetically drags his way up.,dives back into the water.\n10989,lsmdc3068_THE_BIG_YEAR-3649,3285,\"Sitting on the edge of the hospital bed, he shoots his son a weary glance. Someone\",\"Sitting on the edge of the hospital bed, he shoots his son a weary glance.\",Someone,gold,grins at him as someone gives someone the next punch.,\"scrutinizes him, then walks to his bag which rests on a chair.\",glances at the open cauldron label and leads her into a meeting room where her mother sat.,smooths it off from his vest sleeve and stares down at someone's sleeping cellphone.\n10990,lsmdc3068_THE_BIG_YEAR-3649,3276,A wider view shows an industrial plant beyond the bushes. Someone,A wider view shows an industrial plant beyond the bushes.,Someone,gold,stumbles as someone tries to climb onto his shoulders.,throws a grave into the air.,watches with her feet flying across the drive room.,tugs it into the hole and drops upside down.\n10991,lsmdc3068_THE_BIG_YEAR-3649,3282,\"The bird nosedives, leaving the chopper headed straight toward a cliff face. The pilot\",\"The bird nosedives, leaving the chopper headed straight toward a cliff face.\",The pilot,gold,looks up as a vendor arrives.,turns away and watches someone approach beside him.,swerves away just in time.,turns the hatchback from its engine.\n10992,lsmdc3068_THE_BIG_YEAR-3649,3278,\"Sitting beside someone, the pilot, someone shifts his eyes to the jagged rocks. The chopper banks suddenly toward a mountain face, then\",\"Sitting beside someone, the pilot, someone shifts his eyes to the jagged rocks.\",\"The chopper banks suddenly toward a mountain face, then\",gold,the time stands on the road.,swerves away at the last second.,stands up and faces the procession.,stands gaze straight into the sky.\n10993,lsmdc3068_THE_BIG_YEAR-3649,3272,\"Someone opens his arms affirmatively. Now, he\",Someone opens his arms affirmatively.,\"Now, he\",gold,consults a map as someone drives.,reads the letter's selection page.,drags someone out the window.,reaches the bedroom grand staircase.\n10994,lsmdc3068_THE_BIG_YEAR-3649,3286,His dad takes a pair of glasses from his breast pocket. He,His dad takes a pair of glasses from his breast pocket.,He,gold,stares up at someone who gives him a hug.,clicks to the next image.,receives a coin and sets it down.,has a drink out of the way.\n10995,lsmdc3068_THE_BIG_YEAR-3649,3284,\"Someone stops his disco dancing as he sees someone's frown. Now, at a hospital, his mother\",Someone stops his disco dancing as he sees someone's frown.,\"Now, at a hospital, his mother\",gold,shakes with a hand nurse.,pours out a half - finished bottle.,buttons his father's shirt.,arrives with a hat on top.\n10996,lsmdc3068_THE_BIG_YEAR-3649,3273,\"Later, they paddle a canoe down a stream in Whitefish, Montana. Now, a car\",\"Later, they paddle a canoe down a stream in Whitefish, Montana.\",\"Now, a car\",gold,cruises down a crowded freeway for a london cab which pauses at a jazz station.,rolls down a dusty road between rocky mountains.,passes a forested company with someone's hangar key.,drives past some school of registering.\n10997,lsmdc3068_THE_BIG_YEAR-3649,3274,\"Now, a car rolls down a dusty road between Rocky Mountains. Later, someone\",\"Now, a car rolls down a dusty road between Rocky Mountains.\",\"Later, someone\",gold,hikes through a golf cart.,peers through bushes at water birds.,closes his eyes then steps beside him.,scowls smugly then halts.\n10998,lsmdc3068_THE_BIG_YEAR-3649,3277,\"At a bar, someone talks on his phone. He\",\"At a bar, someone talks on his phone.\",He,gold,doffs his darkened briefs.,\"hangs up, then turns to someone.\",checks someone's participation call.,puts his phone in the baby's mouth.\n10999,anetv_gUR1wXosHMo,4398,The boy taps his bottle of soda. The boy,The boy taps his bottle of soda.,The boy,gold,leaps off the crate labeled destroys with the stick.,in the t - shirt turns the lights off.,gives a mocking wince.,wipes off his mouth with his shirt sleeve.\n11000,anetv_gUR1wXosHMo,4397,A boy enjoys a soda at a restaurant. The boy,A boy enjoys a soda at a restaurant.,The boy,gold,taps his bottle of soda.,gets off the platform and drinks off the ice with the man.,walks out to sell and demonstrates how to put dishes dishes in the sink.,shows a tutorial of how to make an alcoholic drink and multiple sparks.\n11001,anetv_gUR1wXosHMo,888,He speaks to the camera while pausing to drink. He,He speaks to the camera while pausing to drink.,He,gold,continues to speak to the camera while still looking off.,also continues playing the guitar and looking to the camera.,goes back to his drink and finishes his drink.,continues drinking and pointing to the camera.\n11002,anetv_gUR1wXosHMo,887,A young child is seen drinking from a bottle. He,A young child is seen drinking from a bottle.,He,gold,pours scotch into the christmas.,speaks to the camera while pausing to drink.,is with a liquid drawn liquid on a side.,lifts the bar over and dips it into glasses.\n11003,lsmdc1011_The_Help-78273,16284,\"Someone looks across, with the same passive expression as before. Someone's attention\",\"Someone looks across, with the same passive expression as before.\",Someone's attention,gold,is turned into another gape.,is drawn to the voice on the tv.,is drawn on the others as someone moves towards him.,shows no sign of what someone has gathered.\n11004,lsmdc0026_The_Big_Fish-62257,4207,\"She is wearing a blue dress and hat. For no good reason, she\",She is wearing a blue dress and hat.,\"For no good reason, she\",gold,has not moved since she walked away.,is worried for someone.,looks back at someone.,manages to stand upright.\n11005,lsmdc0026_The_Big_Fish-62257,4211,Colossus is thumbing for a ride. The last pickup truck,Colossus is thumbing for a ride.,The last pickup truck,gold,is released over the peasants hill.,stops and lets him climb in back.,swings the wheel in black as the car careens fast.,straightens up and races towards the wheels which strikes someone who rule scene.\n11006,lsmdc0026_The_Big_Fish-62257,4212,\"The last pickup truck stops and lets him climb in back. As the truck pulls out, it\",The last pickup truck stops and lets him climb in back.,\"As the truck pulls out, it\",gold,spots someone's vest.,passes a dejected someone.,lies in the ground.,smacks someone and his arrival.\n11007,lsmdc0026_The_Big_Fish-62257,4209,\"A fiery baton remains mid - twirl, flames locked in place. Only someone\",\"A fiery baton remains mid - twirl, flames locked in place.\",Only someone,gold,flattens the spear against someone's neck and knees.,\"is free to move, winding his way between the frozen bodies, ducking underneath arms to get closer and closer to this woman.\",is the quizzical sponging now.,\"bursts underwater, and looks at the creatures.\"\n11008,lsmdc0026_The_Big_Fish-62257,4210,\"The crowd becomes a blur, and the young woman is lost in its wake. Now it\",\"The crowd becomes a blur, and the young woman is lost in its wake.\",Now it,gold,\"'s someone who's frozen, helpless in time.\",juts through the branches of a tree from the night sun.,reveals a wild noble man wearing black princess belly and gold robes.,shows a beam peeking over the low canopy.\n11009,lsmdc0026_The_Big_Fish-62257,4208,\"And as they do, all motion freezes. A fiery baton\",\"And as they do, all motion freezes.\",A fiery baton,gold,appears from the ground.,\"flies off the floor, followed by several ring of tunnels.\",\"remains mid - twirl, flames locked in place.\",comes up a screen with pom poms and its dancing.\n11010,lsmdc0026_The_Big_Fish-62257,4213,\"As the truck pulls out, it passes a dejected someone. He\",\"As the truck pulls out, it passes a dejected someone.\",He,gold,stops sipping a drink and stares at the cops having problems.,\"peers down the road, then figures someone off.\",\"'ll never find that girl, the love of his life.\",grasps one of the table and soberly raises an eyebrow at the boy.\n11011,anetv_hjsu3SGAdLs,3427,One of the elephant is trying to play the piano with his trunk. The man,One of the elephant is trying to play the piano with his trunk.,The man,gold,continues to play the piano in a fast pace using various keys on the piano.,is also downstairs to the ring with the hockey sticks.,finds his brother afterwards and adds the ride.,deftly picked up his food and dropped it on the ground.\n11012,anetv_hjsu3SGAdLs,3426,There are two elephants standing behind him. One of the elephant,There are two elephants standing behind him.,One of the elephant,gold,puts his face on the rug and looks around.,holding out the other stuffed animal leaves with a bat.,has a hook in the foreground.,is trying to play the piano with his trunk.\n11013,anetv_hjsu3SGAdLs,3428,The man continues to play the piano in a fast pace using various keys on the piano. He,The man continues to play the piano in a fast pace using various keys on the piano.,He,gold,continues cutting slowly throughout the entire room as he goes home.,is seen sitting in an alley talking to the camera.,continues to rub her head on the floor as well as any other tricks.,gives a big finish with the tune and then pats the elephant's trunk.\n11014,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94901,10708,\"On the stairs, someone is affronted. Someone\",\"On the stairs, someone is affronted.\",Someone,gold,\"stops them, practically working on her car.\",rolls over and someone stalks off.,hammers in a nail and hangs a decree.,decorated alligator sits on a table.\n11015,lsmdc0028_The_Crying_Game-63318,4885,\"Someone gets up slowly, walks toward the door. The sun\",\"Someone gets up slowly, walks toward the door.\",The sun,gold,is pouring in a long corridor.,has gone as she calls out from the beach.,coming up over the low hills around the farmhouse.,is pitch and night.\n11016,lsmdc0028_The_Crying_Game-63318,4888,Someone looks hard at him. He,Someone looks hard at him.,He,gold,\"rises, and drags someone out the door.\",whips someone's ring down.,\"pull out cups, pokes it through a straw, and gets off.\",presses his chin to the back of his head.\n11017,lsmdc0028_The_Crying_Game-63318,4886,The sun coming up over the low hills around the farmhouse. Someone,The sun coming up over the low hills around the farmhouse.,Someone,gold,\"enters, with a tray and some breakfast.\",leaps over the vehicle and across his street.,heads away from the school.,walk slowly up the mountain to the trunk of the snow laden lifeboat.\n11018,lsmdc0028_The_Crying_Game-63318,4883,Someone leads him hack toward the greenhouse. Someone,Someone leads him hack toward the greenhouse.,Someone,gold,leads someone back to his chair.,puts one hand connecting the bag.,loses a balance - - and follows a dolphins lid up.,\"stands at her windowed, then someone.\"\n11019,lsmdc0028_The_Crying_Game-63318,4884,Suddenly the hood is slammed back over his head. Someone,Suddenly the hood is slammed back over his head.,Someone,gold,\"is trapped beneath the tree, clutching the clown.\",\"gets up slowly, walks toward the door.\",\"looks down at someone, then, starts to crawl.\",starts to turn but the car is gone.\n11020,lsmdc0028_The_Crying_Game-63318,4890,He takes a plate and brings it toward someone. Someone,He takes a plate and brings it toward someone.,Someone,gold,hands stands on the counter.,puts it on him.,moves up the area where another woman also watches with interest.,lifts up someone's hood to expose his mouth and begins to feed him.\n11021,lsmdc0028_The_Crying_Game-63318,4892,Someone says nothing and keeps feeding him. Someone,Someone says nothing and keeps feeding him.,Someone,gold,\"comes in, puts her bag in the middle of someone's suitcase while the police come over before them.\",watches someone trying to keep his feet on the edge of the periscope.,shakes his head and says nothing.,thrusts the club down more to someone.\n11022,lsmdc0028_The_Crying_Game-63318,4891,Someone lifts up someone's hood to expose his mouth and begins to feed him. Someone,Someone lifts up someone's hood to expose his mouth and begins to feed him.,Someone,gold,shows the gas hose underneath the ship's tailgate.,\"lets him go, walks nervously toward the activity by evening.\",says nothing and keeps feeding him.,waits in a indigo corner.\n11023,lsmdc0028_The_Crying_Game-63318,4887,\"Someone enters, with a tray and some breakfast. Someone\",\"Someone enters, with a tray and some breakfast.\",Someone,gold,\"is sitting where he sat before, stock - still.\",sees someone in a restaurant inside a colonial hotel restaurant.,glances proudly at his general.,turns his back to the water.\n11024,lsmdc0028_The_Crying_Game-63318,4889,\"He rises, and drags someone out the door. Someone\",\"He rises, and drags someone out the door.\",Someone,gold,\"peeks over his shoulder, then follows someone through the shop and further away with his tree - bonnet handrail.\",goes back to the house.,\"looks up at him, doleful - faced.\",lies face down on a block.\n11025,anetv_QCBaT1NJ32E,13546,A woman is seen laughing to the camera and begins smoking a cigarette. The woman,A woman is seen laughing to the camera and begins smoking a cigarette.,The woman,gold,blows smoke out of the glass and smokes a cigarette.,continues by removing the contact lens and looking off into the distance.,continues to blow hair and ends by looking down holding pictures.,takes puffs off of her cigarette while looking into the camera.\n11026,anetv_QCBaT1NJ32E,13547,The woman takes puffs off of her cigarette while looking into the camera. The woman,The woman takes puffs off of her cigarette while looking into the camera.,The woman,gold,cuts her hair with a brush.,continues lifting up her cigarette and blowing smoke into the distance.,continues demonstrating how to use the hookah and blow smoke from the hookah.,sets all of the pictures back up and takes the end to the dog.\n11027,lsmdc0008_Fargo-49918,11262,It stops by one car and someone emerges. He,It stops by one car and someone emerges.,He,gold,pass abandoned cars on the road.,sets up her equipment.,\"grabs a newspaper, straightens his shoes and someone sits and sits down before them.\",\"quickly scans the lot, then kneels in the snow at the back of the parked car and starts unscrewing its license plate.\"\n11028,lsmdc0008_Fargo-49918,11263,\"He quickly scans the lot, then kneels in the snow at the back of the parked car and starts unscrewing its license plate. Someone\",\"He quickly scans the lot, then kneels in the snow at the back of the parked car and starts unscrewing its license plate.\",Someone,gold,pulls up and hands the attendant his ticket.,gets off the skateboard and goes back to the street steadily and he does all stunts on the skateboard.,is still sound puzzled from the sound of someone's voice.,skids to the curb and strikes a desk that knocks someone over by the car.\n11029,anetv__b_9BQvJ_v4,11449,\"Then, an old man plays Frisbee with a dog and doing tricks. A young man\",\"Then, an old man plays Frisbee with a dog and doing tricks.\",A young man,gold,rides an hammer across a fence.,talks to the camera and plays with one dog.,throw frisbees and the dog run to catch them.,throws the frisbee in the field with the dog in it.\n11030,anetv__b_9BQvJ_v4,11448,\"A man plays Frisbee, then the dog jumps on the back of the dog. Then, an old man\",\"A man plays Frisbee, then the dog jumps on the back of the dog.\",\"Then, an old man\",gold,plays frisbee with a dog and doing tricks.,spots another dog on a green board and sits in front of the dog on stilts moves.,\"brushes the dog, after the man throws it, and it splits the dirt to the woman's mouth.\",is seen throwing a frisbee of the frisbee.\n11031,anetv__b_9BQvJ_v4,18434,\"A man, a dog, and a frisbee perform several tricks. this pattern\",\"A man, a dog, and a frisbee perform several tricks.\",this pattern,gold,brings dogs to whipped around clothes from where it was full of dogs on the back.,is shown in slow motion as a rope begins to flicker.,is a trick by several clips of people jumping once taught while jumping into a boat.,is repeated with other performers.\n11032,anetv__b_9BQvJ_v4,11447,\"A woman plays Frisbee with a dog in a field. A man plays Frisbee, then the dog\",A woman plays Frisbee with a dog in a field.,\"A man plays Frisbee, then the dog\",gold,start and frisbee a dog to catch the frisbee.,jumps on the back of the dog.,walks around with a dog.,run to the back of the frisbee.\n11033,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-345,1963,\"Someone tosses out her ice cream dish, then browses the sunglasses stand. Someone\",\"Someone tosses out her ice cream dish, then browses the sunglasses stand.\",Someone,gold,puts her head into his lap.,puts two tongs at her plate.,gives a high wave with a commentator.,\"leans in close, transfixed.\"\n11034,lsmdc0011_Gandhi-52636,19868,\"During the very last of it someone has turned her face to him, touched with emotion. She starts to pour water from the pitcher into the glass again, then she\",\"During the very last of it someone has turned her face to him, touched with emotion.\",\"She starts to pour water from the pitcher into the glass again, then she\",gold,adds some more and adds her juice and touches it.,\"turns suddenly, her attention caught.\",\"stating the spoon, but she is n't finished.\",holds out flowers while someone stands watching her.\n11035,lsmdc0011_Gandhi-52636,19867,\"We intercut their faces, very close, as he speaks. During the very last of it someone\",\"We intercut their faces, very close, as he speaks.\",During the very last of it someone,gold,\"has turned her face to him, touched with emotion.\",blows angrily into the bedroom.,swats the shot away with his might.,\"pulls up the hem of her dress, revealing a full black lace belt.\"\n11036,lsmdc0011_Gandhi-52636,19866,She bends so she is looking at the floor and he is speaking almost into her ear. We,She bends so she is looking at the floor and he is speaking almost into her ear.,We,gold,watch her from a rail boat.,float in front of her.,take some time and shakes it.,\"intercut their faces, very close, as he speaks.\"\n11037,lsmdc0011_Gandhi-52636,19865,Someone signals her down to him. She bends so she is looking at the floor and he,Someone signals her down to him.,She bends so she is looking at the floor and he,gold,is speaking almost into her ear.,leans lightly and looks around.,strolls up and spots her with a glimpse of her generally middle - aged woman.,walks close to her.\n11038,anetv_vB2qMaP_JaI,18569,A woman braids her hair slowly. She then,A woman braids her hair slowly.,She then,gold,styles the curling iron.,picks up a product and begins to knit.,practice as he workout.,ties the braids together and ties the end together.\n11039,anetv_xAMZGWqRmqE,12189,The man wipes the Frisbee off with a towel. The man,The man wipes the Frisbee off with a towel.,The man,gold,throws it again for the dog to bring it to him.,falls down and two dogs play nearby.,pours clothes on the floor.,helps the lady pick up a cup of coffee and take a drag off the cigarette.\n11040,anetv_xAMZGWqRmqE,8681,The man threw the frisbee and the dog catch it and bring back to the man. The man,The man threw the frisbee and the dog catch it and bring back to the man.,The man,gold,wiped the frisbee and then threw it again and the dog caught and brought it back to the owner.,chases the cow with the dog legs with a frisbee.,spins the ball around in the dirt and sitting on the track with the horizontal mechanics of the frisbee.,dipped and brushed his feet with the pole.\n11041,anetv_xAMZGWqRmqE,8680,The man picked up the frisbee and play with it as the dog followed it. The man,The man picked up the frisbee and play with it as the dog followed it.,The man,gold,twirls around in circles and jumping back and forth as the man plays on the ground.,threw the frisbee and the dog catch it and bring back to the man.,\"continue to mess the paper, then throw it across the room.\",throws a frisbee he fetch with a leaf.\n11042,anetv_xAMZGWqRmqE,12188,The man throws it again and the dog returns it. The man,The man throws it again and the dog returns it.,The man,gold,takes the sword as another dart is taken off from the man.,puts a colored banana in the sink showing.,wipes the frisbee off with a towel.,runs back off the horse while the dog continue running.\n11043,anetv_9XanCE5nX2Q,16810,There is a woman dancing on stage in front of a man in the beginning. There,There is a woman dancing on stage in front of a man in the beginning.,There,gold,women are standing next to a crowd longer dancing as the crowd applauds.,\"laughs and multiple people do exercises, after they start performing their karate routine across the stage.\",are many different women doing hip hop moves.,holds a string of hair to a scary about music stand by waiting to watch and all.\n11044,lsmdc1010_TITANIC-77831,15841,The crewman grabs someone and guides her toward the lifeboat. Someone and another crew member,The crewman grabs someone and guides her toward the lifeboat.,Someone and another crew member,gold,urge each cart helmsman into the boat.,gather from the boat.,help someone climb into the boat.,push her body toward the ground.\n11045,lsmdc1010_TITANIC-77831,15844,\"Standing at the rail, people gaze at someone as the lifeboat lowers toward the water. Someone\",\"Standing at the rail, people gaze at someone as the lifeboat lowers toward the water.\",Someone,gold,comes back down and holds up his hands.,follows someone from his study.,\"removes his helmet and stares at it, the puzzled someone stares back down at them.\",stares back at someone.\n11046,lsmdc1010_TITANIC-77831,15842,Someone and another crew member help someone climb into the boat. Someone,Someone and another crew member help someone climb into the boat.,Someone,gold,keeps his hands on the water.,drapes a scarf around her leg as someone watches.,fires a little blast at the ugly.,turns and grasps someone's outstretched hand.\n11047,lsmdc1010_TITANIC-77831,15843,\"The crewman pushes someone back. Standing at the rail, people\",The crewman pushes someone back.,\"Standing at the rail, people\",gold,start to meet each other.,gaze at someone as the lifeboat lowers toward the water.,descend the dimly lit dance street.,meet the mustached stranger.\n11048,lsmdc3043_KATY_PERRY_PART_OF_ME-20664,18766,\"She holds out a cat charm on her necklace. On stage, someone\",She holds out a cat charm on her necklace.,\"On stage, someone\",gold,lounges in a sleeping trunk.,looks up from the cottage and sees a sweeper bench under the stylized hookah.,wears a sequined gown.,begins to work on a pair of bushy trees.\n11049,anetv_qZaWIb28kfU,3260,\"A man and a boy walks around a wood fire holding sheets and wearing corned hats, while a crowd stand in a circle. Then, the man\",\"A man and a boy walks around a wood fire holding sheets and wearing corned hats, while a crowd stand in a circle.\",\"Then, the man\",gold,watch a pole burn from a tree to the other.,stand and talks to people.,throws a skateboard in the woods.,\"lights it with his hand, and takes several people with it.\"\n11050,anetv_QooDDNWaQjU,29,A person throws a Frisbee for her dog for a dog to retrieve during an event on a sporting field. The dog,A person throws a Frisbee for her dog for a dog to retrieve during an event on a sporting field.,The dog,gold,catches the frisbee and brings it back to the trainer.,\"has a frisbee, while the man and dog run.\",runs back to her jogging.,tries to run as the dog swings into the air.\n11051,anetv_-_Ud3LXSjdE,4094,\"The kid flip the cigarette and tried to put the other end of the cigarette to his mouth. The young kid continue to smoke, he\",The kid flip the cigarette and tried to put the other end of the cigarette to his mouth.,\"The young kid continue to smoke, he\",gold,leaves the bar behind.,make faces and then smoked.,takes the dart and hit.,drinks and scurry beside the floor.\n11052,anetv_-_Ud3LXSjdE,4093,A young kid is smoking a cigarette. The kid,A young kid is smoking a cigarette.,The kid,gold,starts playing a harmonica while he is pretending to play the violin.,flip the cigarette and tried to put the other end of the cigarette to his mouth.,is holding a stick as the boy talks in front of him.,sets the camera in front of him and begins to mop the floor.\n11053,lsmdc0029_The_Graduate-64398,3578,Someone turns and goes back into the room. Someone,Someone turns and goes back into the room.,Someone,gold,looks back at someone.,sits in the chair.,takes a drink and walks along a river.,\"looks at all of them, smiles.\"\n11054,lsmdc0029_The_Graduate-64398,3576,People stand and look at each other for a few seconds. Someone,People stand and look at each other for a few seconds.,Someone,gold,\"gives a pistol up and steps away from stage, swinging from left to right, raising the guns outside into the air.\",\"turns his back to the different men, who's keeping him down on the trampoline.\",continue to run hand.,turns away and walks down the hall and starts down the stairs.\n11055,lsmdc0029_The_Graduate-64398,3571,Several boys are gathering in the hallway trying to see into the room. Someone,Several boys are gathering in the hallway trying to see into the room.,Someone,gold,talks about bungalow - donkey.,on to the top is the last.,edges through the door into the hallway.,turns and walks slowly up the stairs.\n11056,lsmdc0029_The_Graduate-64398,3573,He opens the door a little way. They all,He opens the door a little way.,They all,gold,look toward the ring.,\"stand stoically against the bolt, looking intently at someone and her son.\",meet on a balcony.,try to see in.\n11057,lsmdc0029_The_Graduate-64398,3575,The boys start back to their rooms. People,The boys start back to their rooms.,People,gold,push a ball ahead and one of the neighbors tries to restrain the men.,stand and look at each other for a few seconds.,run into a driveway.,with their boots on and stab their lines other bodies then lean in.\n11058,lsmdc0029_The_Graduate-64398,3574,They all try to see in. The boys,They all try to see in.,The boys,gold,drop down the stairs next to the young and girl friend.,start back to their rooms.,struggle to climb up who eventually deflects the light.,screeches off the boys skateboards.\n11059,lsmdc0029_The_Graduate-64398,3572,Someone edges through the door into the hallway. He,Someone edges through the door into the hallway.,He,gold,\"smiles at his father, then glances after her, then sits up before the other.\",runs his head quickly over the leopard coat.,\"goes into the dressing room, starts to her way up and shakes her head.\",opens the door a little way.\n11060,lsmdc0029_The_Graduate-64398,3577,Someone turns away and walks down the hall and starts down the stairs. Someone,Someone turns away and walks down the hall and starts down the stairs.,Someone,gold,turns and goes back into the room.,\"signals to himself, and sees people sitting nearby, standing next to him, watching him.\",\"creeps out of the study, looking down from her bed with a worried expression.\",sees her door up behind him and drive away.\n11061,lsmdc3034_IDES_OF_MARCH-2890,16360,\"She returns a cool, enticing smirk. Someone's heavy - lidded eyes\",\"She returns a cool, enticing smirk.\",Someone's heavy - lidded eyes,gold,meet across the edge of the general music store.,stare as someone looks thoughtful.,moves to the sky as lightning shines through the chain link window through the easier shaped structure.,remain fixed on her face.\n11062,lsmdc0026_The_Big_Fish-62033,14796,\"Someone leads his team to victory. On the sidelines, a pretty girl\",Someone leads his team to victory.,\"On the sidelines, a pretty girl\",gold,chases a wet egg.,holds up his sword.,holds his map closely towards the shore.,admits the name of her secret love.\n11063,lsmdc0026_The_Big_Fish-62033,14797,\"On the sidelines, a pretty girl admits the name of her secret love. Someone\",\"On the sidelines, a pretty girl admits the name of her secret love.\",Someone,gold,looks around the mirror.,turns on her phone and watches glumly into the room.,comes over to the table and hugs him.,\"looks over, glowers.\"\n11064,lsmdc0026_The_Big_Fish-62033,14794,The crack of a bat announces the game - winning home run. The crowd,The crack of a bat announces the game - winning home run.,The crowd,gold,\"cheers the swing, and especially the batter as he rounds the bases.\",slips into the game.,cheers as the teams play basketball.,\"looks different, etc.\"\n11065,lsmdc0026_The_Big_Fish-62033,14793,Young someone thinks this through. The crack of a bat,Young someone thinks this through.,The crack of a bat,gold,can be seen and children getting in.,\"tries to squeeze both balls for someone, who misses.\",announces the game - winning home run.,flies out the windshield.\n11066,lsmdc0026_The_Big_Fish-62033,14799,\"Someone takes an impossible shot at the buzzer from the other end of the court. Naturally, he\",Someone takes an impossible shot at the buzzer from the other end of the court.,\"Naturally, he\",gold,\"makes it, winning the game.\",sets down the cards.,uses his hand to tie the door.,spots a report leaving the bank again.\n11067,lsmdc0026_The_Big_Fish-62033,14800,\"Naturally, he makes it, winning the game. As the crowd goes wild for someone, someone\",\"Naturally, he makes it, winning the game.\",\"As the crowd goes wild for someone, someone\",gold,consults someone's information.,is the only teammate who does n't mob him.,turns to the game and spots his game.,steps running from the direction of the red team.\n11068,anetv_4innF37ifyY,4351,A man is shown on a diving board high atop a cliff. He,A man is shown on a diving board high atop a cliff.,He,gold,catches fish as he lands.,\"dives, jumping into the shallow waters below.\",removes the tip of his backpack and hands it to the guard.,is then hugged by several other cheerleaders who do karate on the floor.\n11069,anetv_vSpl69BWMKI,2272,\"A man in gray shirt and jeans with orange helmet is trimming the hedges, he is standing in a ladder to reach the top of the hedge and trim it, the man continue to trim the hedge. A man in white shirt and orange helmet\",\"A man in gray shirt and jeans with orange helmet is trimming the hedges, he is standing in a ladder to reach the top of the hedge and trim it, the man continue to trim the hedge.\",A man in white shirt and orange helmet,gold,are talking to a young neighbor who was helping them perform.,is trimming the burned hedges.,is mixing a tree rake to keep them in a row.,is mowing the lawn balancing in a kitchen.\n11070,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96140,8215,They look at each other. The children,They look at each other.,The children,gold,turn and face each other.,stare at him rapidly.,run back into the school and into someone's classroom.,watch on their promenade.\n11071,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96140,8216,The children run back into the school and into someone's classroom. They,The children run back into the school and into someone's classroom.,They,gold,look through their cell.,finish their song and clap for their team.,rush up to her desk.,\"talk to someone for a moment, then closes the door as someone faces someone who remains knee - length.\"\n11072,anetv_TpgtCuYz0RQ,13003,\"As the young lady holds the frisbee, she begins talking to her friend about the game and the guy holds a can in his hand. The girl then gets up and they begin playing a game rock, paper, scissor shoot; the girl loses and the male\",\"As the young lady holds the frisbee, she begins talking to her friend about the game and the guy holds a can in his hand.\",\"The girl then gets up and they begin playing a game rock, paper, scissor shoot; the girl loses and the male\",gold,kisses her on the cheek.,helps a little of the red vest.,jumps the green in the right and swings it with his arm on the floor.,asks a person to dance.\n11073,anetv_TpgtCuYz0RQ,1694,They play a game of rock paper scissors. The man,They play a game of rock paper scissors.,The man,gold,pats the girl's arm with scoots.,\"jumps paper, throws that onto the sand.\",takes a bow and arrow.,gives the girl a kiss on the cheek.\n11074,anetv_TpgtCuYz0RQ,13002,\"Several people are laid out on the beach and a boy walks over and gives a girl a frisbee. As the young lady holds the frisbee, she begins talking to her friend about the game and the guy\",Several people are laid out on the beach and a boy walks over and gives a girl a frisbee.,\"As the young lady holds the frisbee, she begins talking to her friend about the game and the guy\",gold,holds a can in his hand.,walks away from the beach with lots of stuff.,is able to stop the baton on his arm.,is still doing a cartwheel and then does jumps back on it.\n11075,anetv_TpgtCuYz0RQ,13004,\"The girl then gets up and they begin playing a game rock, paper, scissor shoot; the girl loses and the male kisses her on the cheek. After, several more videos\",\"The girl then gets up and they begin playing a game rock, paper, scissor shoot; the girl loses and the male kisses her on the cheek.\",\"After, several more videos\",gold,show the confused team using how to sweep the throw and win she ass their'd just as judges.,are shown of how to play the croquet game together unto the yard in different locations.,are shown of the boy playing while still sipping different cues.,appear of him doing this on several other occasions and a button to subscribe.\n11076,anetv_TpgtCuYz0RQ,1692,Girls are laying down on the beach. A man,Girls are laying down on the beach.,A man,gold,walks in front of them.,is taking ornaments off of a christmas tree.,is sitting on a bench next to the creek.,kneels down next to one of them and hands them a frisbee.\n11077,anetv_TpgtCuYz0RQ,1693,A man kneels down next to one of them and hands them a frisbee. They,A man kneels down next to one of them and hands them a frisbee.,They,gold,slide the barrel in their hands and the dog fetches the rope.,tie it up and have it there.,play a game of rock paper scissors.,then swing the bat while holding up the camera.\n11078,anetv_G0g7vEwI0z8,11137,Two people are cooking in pans on the oven. Two plates of food,Two people are cooking in pans on the oven.,Two plates of food,gold,are on the counter.,are seen behind a table.,are being set in a big bowl.,are washed followed by strain.\n11079,anetv_G0g7vEwI0z8,11138,Two plates of food are on the counter. Words,Two plates of food are on the counter.,Words,gold,\"the bowl silverware, a man refills the pan with olive oil.\",sound startles him.,come onto the screen.,holds a large plate from the stove with some covered ingredients and bowls mixes it.\n11080,anetv_ccKJg_f1UDo,9112,\"In the middle of the gym, a girl is doing a routine on the balance beam. After several flips and turns on the beam, she jumps off and a lady from the side panel\",\"In the middle of the gym, a girl is doing a routine on the balance beam.\",\"After several flips and turns on the beam, she jumps off and a lady from the side panel\",gold,bends over to her side.,rises from the floor.,has measured the wrong position to balance.,begins to hold up her score.\n11081,anetv_ccKJg_f1UDo,5886,A girl is sitting on a balance beam. She,A girl is sitting on a balance beam.,She,gold,comes down an elliptical machine and begins doing a routine on the side of her mats.,moves randomly and cleans the board.,make a instrument wait and cross to the bars.,begins to do a gymnastics routine on the balance beam.\n11082,anetv_ccKJg_f1UDo,9111,\"Several young kids are dressed in leotards in a gymnasium doing flips and acrobats. In the middle of the gym, a girl\",Several young kids are dressed in leotards in a gymnasium doing flips and acrobats.,\"In the middle of the gym, a girl\",gold,jumps up on a beam and falls jumping into the water and swings under the beam.,stands on a balance beam in an enclosed room.,is doing a routine on the balance beam.,talks on the rope in front of the audience.\n11083,anetv_ccKJg_f1UDo,5887,She begins to do a gymnastics routine on the balance beam. She,She begins to do a gymnastics routine on the balance beam.,She,gold,\"jumps and catches trampoline, also does little cartwheel.\",\"balances on a mat, trying to get it on the beam.\",does a gymnastics routine on the beam as he lands up.,jumps off onto the blue mat underneath her.\n11084,lsmdc1005_Signs-4674,16949,And someone gives him the receiver. People,And someone gives him the receiver.,People,gold,call it a stairwell.,people walk on the water.,stares at someone as he follows someone out of the office.,stare at each other and listen.\n11085,lsmdc1005_Signs-4674,16950,Someone looks down at someone and considers. Someone,Someone looks down at someone and considers.,Someone,gold,climbs out of the car and pulls the tire away.,leans back down into the car.,looks up from the typewriter.,pulls his daughter down and kisses him passionately.\n11086,anetv_nhW0O7NC0GM,5414,A man is seen sitting in the water in a kayak speaking to the camera. The man,A man is seen sitting in the water in a kayak speaking to the camera.,The man,gold,begins skiing quickly as well as talking to the camera.,continues performing and walks off and shows him climbing on the skis.,continues speaking while holding a paddle in his hands.,continues to kayak while sitting on the board as the camera pans up.\n11087,anetv_nhW0O7NC0GM,5415,The man continues speaking while holding a paddle in his hands. He,The man continues speaking while holding a paddle in his hands.,He,gold,continues to iron the rope all around the man.,is speaking to the camera while jumping and warming up.,moves around a bit in the water and leads into him paddling along the water.,then begins playing the drums and ends with him playing the instrument.\n11088,anetv_Nsl_tnIRNEo,17402,\"He throws the ball, and then we see several kids making a homemade version. They\",\"He throws the ball, and then we see several kids making a homemade version.\",They,gold,roll a ball and hit the pins.,player returns on the street.,take place as they lie in wait.,slice up and wrestle to hit at the pinata.\n11089,anetv_Nsl_tnIRNEo,8210,A man is bowling in a bowling alley. Some children,A man is bowling in a bowling alley.,Some children,gold,go over piles covered tractor for raining.,are playing a game of tennis.,are seen putting together and playing with toys bowling alleys.,come in to a bowling road.\n11090,anetv_THOVGzbo8w8,7160,A close up of a lacrosse game is shown that leads into a man speaking to the camera. More shots,A close up of a lacrosse game is shown that leads into a man speaking to the camera.,More shots,gold,are shown of the game with the players running up and down the field as well as many others speaking to the camera.,are shown of discus lay on the people and men fighting one another.,are shown of people playing more games with dogs as well as go down the river and speak to one another.,are shown of people running back and fourth in a line as well as others speaking and speaking to one another.\n11091,anetv_u2hzK9YyIXY,15056,A person's shoe is seen sitting in a sink and the person scrubs the outside of the shoe with water running. The person,A person's shoe is seen sitting in a sink and the person scrubs the outside of the shoe with water running.,The person,gold,puts the shoe down and dries it with rubbing shoes and puts it on the shoe.,\"lays on a rag and places it on the rag, then cleans it.\",holds up a rag and begins cutting the pumpkins and ends by looking back to the camera.,turns the water off and let's the dirt from the shoe run down the sink.\n11092,anetv_UyORfPxpaGo,1766,Another boy approaches as he wraps his legs around his neck. The second boy,Another boy approaches as he wraps his legs around his neck.,The second boy,gold,backs up as he watches them go.,grins happily and laughs.,spins him around and slams him to the ground.,kicks the boy on the ground.\n11093,anetv_Bs3OMhhUlY4,15315,A small group of boys are seen standing on the edge of a pool and grab one another by the sides. The boys then all,A small group of boys are seen standing on the edge of a pool and grab one another by the sides.,The boys then all,gold,jump into the pool together at once with some looking at the camera.,\"begin chasing one another, chasing along the side and performing tricks.\",keep alternately jumping and throwing their arms in the air to celebrate with teammates.,move around and speak to one another while the camera captures their movements.\n11094,lsmdc0004_Charade-47357,16524,\"The door opens and the policeman enters again, this time carrying a wicker basket which he deposits on someone's desk, and leaves. Someone\",\"The door opens and the policeman enters again, this time carrying a wicker basket which he deposits on someone's desk, and leaves.\",Someone,gold,stares up the picture.,rises from the balustrade.,peers into the basket.,walks away from someone's room.\n11095,lsmdc0004_Charade-47357,16525,\"He begins to take them out, placing them on the desk, identifying each item as he does. Someone\",\"He begins to take them out, placing them on the desk, identifying each item as he does.\",Someone,gold,walks into her room and pauses for a moment.,\"turns to the paper to his friend, whisks it in half, trying to hold it between his opposing pajama bottoms.\",\"helps someone, then a dress admires her father.\",hands her the letter and watches her closely as she reads it.\n11096,anetv_Xj--zKhm6k4,19270,People behind him laugh and clap. He,People behind him laugh and clap.,He,gold,slowly dances his time as he dances.,is throwing darts at a target in the distance.,closes her eyes then turns.,shows someone drag someone into someone's apartment.\n11097,anetv_n4apOkL24BE,13552,A person is seen kneeling down beside running water and looking over to the camera. The person then,A person is seen kneeling down beside running water and looking over to the camera.,The person then,gold,takes several brushes off of the shoe while still speaking to the camera.,pours liquid into the bucket and scrubs down the windows continuously.,dunks the clothes into a bucket under the water an begins dipping the clothes from one bucket to the other.,does a long jump in the water but jumps into a tubing area.\n11098,anetv_n4apOkL24BE,18865,A man is seen kneeling down next to running water. He,A man is seen kneeling down next to running water.,He,gold,is seen afterward off the pole and leads into him laying down several times.,throws clothes into a bucket and speaks to the camera.,is running in his cheek and a gesture.,lays down on the ground.\n11099,anetv_n4apOkL24BE,18866,He throws clothes into a bucket and speaks to the camera. He,He throws clothes into a bucket and speaks to the camera.,He,gold,is standing in front of a cross in the lake.,pulls out clothes from a bucket and dumps out the water as well as in the other bucket.,starts handing the shovel.,continues to sail around in circles while still speaking to the camera.\n11100,anetv_hlFJj2dT3sU,11010,He serves the ball with a racquet. He,He serves the ball with a racquet.,He,gold,\"serves it a few more times, hitting it each time.\",bends down and cuts the ball.,throws the mallet into the field.,hits it with the stick.\n11101,anetv_hlFJj2dT3sU,11009,A boy is on a tennis court outside. He,A boy is on a tennis court outside.,He,gold,is throwing balls from the pins.,serves the ball with a racquet.,throws a ball down the yard.,hits the ball against the grass.\n11102,lsmdc3074_THE_ROOMMATE-4127,9266,His eyes drift to someone's lips. He,His eyes drift to someone's lips.,He,gold,\"looks away at an old file, then peers in at his mother.\",\"clutches his wrists, then steps back.\",leans in and kisses her.,\"feeds his uncle's head, then backs away.\"\n11103,lsmdc3074_THE_ROOMMATE-4127,9269,\"Now someone marches down an aisle between library bookcases. Reaching a table, she\",Now someone marches down an aisle between library bookcases.,\"Reaching a table, she\",gold,stops and jerks a hand from her sister's.,plops down in a seat facing someone.,struts from the next door to the bed.,turns and peeks out.\n11104,lsmdc3074_THE_ROOMMATE-4127,9268,\"She recoils, shooting him a disapproving look. He\",\"She recoils, shooting him a disapproving look.\",He,gold,runs over to the table and another customer comes around.,turns and points at the wounded soldier.,turns back to the kitchen.,leans back in his seat.\n11105,lsmdc3074_THE_ROOMMATE-4127,9273,A pair of feet in seductive high - heeled shoes stride down a hall bathed in dim red light. Someone,A pair of feet in seductive high - heeled shoes stride down a hall bathed in dim red light.,Someone,gold,\"pats someone on the cheek with her ab heel and starts off, leading to the bedroom.\",finds himself in a cozy box.,arrives in the doorway to professor someones's office.,\"reaches down from the throne, followed by her own and admiring it.\"\n11106,lsmdc3074_THE_ROOMMATE-4127,9274,\"Putting on a jacket, he pauses. Someone\",\"Putting on a jacket, he pauses.\",Someone,gold,gazes up at the mysterious kid's fringe.,casts his coat out as he ends the call.,enters and shuts the door behind her.,steals an apple from a shelf.\n11107,lsmdc3074_THE_ROOMMATE-4127,9267,He leans in and kisses her. She,He leans in and kisses her.,She,gold,\"recoils, shooting him a disapproving look.\",crawls into the bathroom.,offers someone a taste.,grabs his arm and someone pulls away.\n11108,lsmdc3074_THE_ROOMMATE-4127,9272,Someone smiles and leans closer to someone. Someone,Someone smiles and leans closer to someone.,Someone,gold,\"rushes into the bathroom, covering the empty tray of utensils with his own hand.\",\"turns and freezes for a moment, instinctively about to happen.\",lays a hand on hers.,pulls the chair closer to him.\n11109,lsmdc3074_THE_ROOMMATE-4127,9271,Someone lowers her disgusted gaze and purses her lips. Someone,Someone lowers her disgusted gaze and purses her lips.,Someone,gold,sit aside as a waitress approaches.,\"nibbles a newspaper, she reveals an expression in his parted lips.\",smiles and leans closer to someone.,fills a stack of papers and a car car's windshield as they get out of the car.\n11110,anetv_i5jZVSzLbYQ,3138,A person is seen performing various flips and tricks in front of audience and leads into a young boy standing in the middle. The boy and man then,A person is seen performing various flips and tricks in front of audience and leads into a young boy standing in the middle.,The boy and man then,gold,play drums at the end while others watching it on the side.,perform tricks on the land and kicks off their kite over celebrating cheers.,steps up and begins driving around the car.,battle against one another doing several tricks and ends with the an holding the boy's arm.\n11111,anetv_i5jZVSzLbYQ,3139,The boy and man then battle against one another doing several tricks and ends with the an holding the boy's arm. He then,The boy and man then battle against one another doing several tricks and ends with the an holding the boy's arm.,He then,gold,claps to the boy and several people on the side clap.,takes a swing at the second of liberty and continues others as the boy returns.,walks away by the man using it as a girl to help him swim out.,falls out but does his best are around and gets back to step through wall and then at the table with the small boy.\n11112,anetv_J8mSgO4r-kQ,9723,They have drilled a hole through the ice. They,They have drilled a hole through the ice.,They,gold,use a fishing pole to catch fish through the hole in the water.,are engaged in a game of cricket.,pile in the trunk of a truck.,\"run to pick up the ball, knocking them under the water.\"\n11113,anetv_J8mSgO4r-kQ,13161,The man not fishing stands up briefly. The man not fishing,The man not fishing stands up briefly.,The man not fishing,gold,is how to change the camera.,is the hole of the roof's barrel.,inserts his hand into the water several times.,shoot down and taps the surface more times.\n11114,anetv_J8mSgO4r-kQ,9722,Two men are crouched on a frozen lake. They,Two men are crouched on a frozen lake.,They,gold,is holding a picture of the undulating sword.,have drilled a hole through the ice.,are aiming for the truck.,are in the water and filling with water.\n11115,anetv_J8mSgO4r-kQ,13163,The man not fishing helps to pull a fish out of the ice fishing hole. The two men,The man not fishing helps to pull a fish out of the ice fishing hole.,The two men,gold,are flattening a hole then land on a ground.,reach the edge of the rock.,\"go and turn around, where the feet drop a towards the ground.\",shake hands while a third walks behind them.\n11116,anetv_J8mSgO4r-kQ,13162,The man not fishing inserts his hand into the water several times. The man not fishing,The man not fishing inserts his hand into the water several times.,The man not fishing,gold,on the ice of the fish.,and the dog begins still rolling around on the ground while the rest of the song has gone on.,helps to pull a fish out of the ice fishing hole.,is around swift.\n11117,anetv_J8mSgO4r-kQ,13160,Intro text on a black screen is shown. Two men,Intro text on a black screen is shown.,Two men,gold,are playing beach soccer on a beach outside a closed rope.,talk while one of them engages in ice fishing.,are in a position in an indoor building area.,kneel down and start dancing.\n11118,anetv_9tAyfaBGwyg,15172,A woman is drawing a hopscotch board on the ground in chalk. She,A woman is drawing a hopscotch board on the ground in chalk.,She,gold,stands up and walks to the front of the hopscotch board.,\"continues jumping around quickly, demonstrating how to get the rope going on.\",sits down and starts to play a tune.,\"rings back and forth, and does a lot of crunches.\"\n11119,anetv_9tAyfaBGwyg,15173,She stands up and walks to the front of the hopscotch board. She,She stands up and walks to the front of the hopscotch board.,She,gold,begins jumping on the board.,laughs as she continues to talk to him.,moves through bars and into the water.,comes off and peels off the pink.\n11120,lsmdc3064_SPARKLE_2012-4447,9370,Someone presents her with a candy ring set in a tasteful jewelry box. He,Someone presents her with a candy ring set in a tasteful jewelry box.,He,gold,has a picture of his mother.,lifts over the box.,beams and holds it out.,\"takes his note with her, one hand shoved into hers.\"\n11121,lsmdc3064_SPARKLE_2012-4447,9369,\"Someone takes a nervous breath, then blows out the candle and smiles. Someone\",\"Someone takes a nervous breath, then blows out the candle and smiles.\",Someone,gold,takes up his uncle's letter and eyes his beard and backs away.,is not modest anymore.,presents her with a candy ring set in a tasteful jewelry box.,\"shifts her stops, eyes the rest on the stove.\"\n11122,lsmdc3064_SPARKLE_2012-4447,9371,He beams and holds it out. Someone,He beams and holds it out.,Someone,gold,writhes in beneath her navel as she climbs.,\"icily checks the controller, then empties the sauce on the truck.\",\"accepts the candy ring, and grins down at it.\",\"reads, and goes.\"\n11123,anetv_THPFtlx3gXw,2265,\"He is shown on a bmx dirt bike, performing a plethora of stunts, wheelies, and spins for a crowd. Women\",\"He is shown on a bmx dirt bike, performing a plethora of stunts, wheelies, and spins for a crowd.\",Women,gold,walk around the playground when several men are running in the dirt.,do this up and down for the same time.,\"are shown close up, dancing.\",rides on snowboards with a hauling crew and reporters.\n11124,anetv_7hfaWQgcDyo,18069,A close up of a sandwich is shown followed by a person mixing ingredients in a bowl. The person,A close up of a sandwich is shown followed by a person mixing ingredients in a bowl.,The person,gold,lays out bread with the ingredients and lays them on top of each other.,mixes up the ingredients in the pan and folds them over the mixing bowl.,mixes ingredients into a bowl and mixes ingredients onto their hands.,pours various ingredients into a bowl and garnishes it into a bowl.\n11125,anetv_7hfaWQgcDyo,18070,The person lays out bread with the ingredients and lays them on top of each other. He then,The person lays out bread with the ingredients and lays them on top of each other.,He then,gold,shows how to transfer the dough into dough while putting ice to the blender.,pulls the dough over and cuts the sandwich into half.,makes a sandwich and fries it on a pan and shows off the finished result in the end.,puts the mixture in a bowl and puts them onto a plate.\n11126,anetv_RnShLAifVno,6929,A woman is standing in a kitchen talking. She,A woman is standing in a kitchen talking.,She,gold,starts washing dishes in the sink.,lays a casserole in the oven and a congregation places the dough back on the cake.,begins to pour a glass of liquor into a glass.,is sitting in front of a sink as she is talking.\n11127,anetv_RnShLAifVno,6930,She starts washing dishes in the sink. She,She starts washing dishes in the sink.,She,gold,turns off the camera.,goes over quickly and washes the dishes.,continues talking to the camera.,\"removes the pressurized, wipes soap off the car and gets out of the toilet.\"\n11128,anetv_RnShLAifVno,11317,A lady stands in a kitchen talking. The same lady then,A lady stands in a kitchen talking.,The same lady then,gold,grabs a potato to make a sandwich in a flour.,turns to wipe her face.,applies gel to a desktop.,starts washing dishes for a while.\n11129,lsmdc0009_Forrest_Gump-50760,16910,\"Someone slides back and forth as he attempts to steer the boat. An anchorman over tv,\",Someone slides back and forth as he attempts to steer the boat.,\"An anchorman over tv,\",gold,is standing in front of a pier.,leans against the railing and peers around the lit at the prow.,\"slowly to the edge of the landing, the cold - looking reflected on.\",engaged by a soprano's song.\n11130,lsmdc0009_Forrest_Gump-50760,16914,Someone opens another big catch. Another catch,Someone opens another big catch.,Another catch,gold,flashes from his father.,drops open on top of yet another huge catch.,smells the bones from the road.,escapes blood in his mouth.\n11131,lsmdc0009_Forrest_Gump-50760,16913,A huge catch of shrimp falls onto the deck. Someone,A huge catch of shrimp falls onto the deck.,Someone,gold,is about eight feet tall.,stops across the bench and shoves the pamphlet into the pocket of his leather jacket.,is pulled to the saddle in a circle.,opens another big catch.\n11132,lsmdc0009_Forrest_Gump-50760,16915,The man sitting on the bench listens to someone. An elderly woman,The man sitting on the bench listens to someone.,An elderly woman,gold,sits next to the man.,\", someone, watches someone.\",sits on a table.,arrives over to a woman and she has a model.\n11133,lsmdc0009_Forrest_Gump-50760,16909,\"Someone on the rigging, shouts and shakes his fist as he is pelted by wind and rain. Someone\",\"Someone on the rigging, shouts and shakes his fist as he is pelted by wind and rain.\",Someone,gold,enters someone's kitchen.,slides back and forth as he attempts to steer the boat.,see him from behind a sedan window.,\"swims after them, then shakes its head as they step down the narrow comical.\"\n11134,lsmdc0009_Forrest_Gump-50760,16911,\"An anchorman over tv, is standing in front of a pier. The anchorman\",\"An anchorman over tv, is standing in front of a pier.\",The anchorman,gold,lets go and performs the dishes on the water.,is being pulled in the boat.,is standing in front of the ruined pier and boats.,\"sits on the table, just watching one of the passengers in his paunchy suits.\"\n11135,lsmdc0009_Forrest_Gump-50760,16912,The anchorman is standing in front of the ruined pier and boats. Someone's boat,The anchorman is standing in front of the ruined pier and boats.,Someone's boat,gold,comes down the river.,cruises through the peak of the ocean.,is in a sitting room.,is beautiful as they float through the city 100 yards away.\n11136,anetv_sG3JpMuXFnU,8878,We see the title screen on black. A lady,We see the title screen on black.,A lady,gold,rides a horse in a river.,notices a brunette standing by.,talks to the camera.,talks to the camera in a stationary vault.\n11137,anetv_sG3JpMuXFnU,8879,A lady talks to the camera. We,A lady talks to the camera.,We,gold,see them mopping the floor.,see cars and rafts.,see a lady from an upper fence.,see the bottom credits.\n11138,anetv_sG3JpMuXFnU,8881,We see people sitting on the rafts in the lake. A speedboat,We see people sitting on the rafts in the lake.,A speedboat,gold,jumps up the river.,speeds past the rafters.,is attached to a string.,appears on a screen.\n11139,anetv_sG3JpMuXFnU,8883,The people turn a black raft over in the water. We,The people turn a black raft over in the water.,We,gold,see a bridge in the distance.,see the car fall from the shore.,see rows of surfers on the camels.,then see the boat on the shore landscape.\n11140,anetv_sG3JpMuXFnU,8880,We see cars and rafts. We,We see cars and rafts.,We,gold,see people sitting on the rafts in the lake.,see a lady in a canoe floating on a river and a boat paddling.,see a man in a bar encouraging the camera to switch to locations before but moves away from the camera.,the curling sail.\n11141,anetv_sG3JpMuXFnU,4697,Woman is talking to teh camera wearing big sunglasses and behind her a family is sanding behind a suv talking. cars are parked on side of the road and people,Woman is talking to teh camera wearing big sunglasses and behind her a family is sanding behind a suv talking.,cars are parked on side of the road and people,gold,is going to a bank and be nearly asleep then start taking out ice.,is walking in te highway holding small kayaks.,drive on a dirt trail by a person's lush forest.,are running past on the pins.\n11142,anetv_sG3JpMuXFnU,8882,A speedboat speeds past the rafters. The people,A speedboat speeds past the rafters.,The people,gold,sail down the river two times.,ride toward metal water through the weather.,turn a black raft over in the water.,paddle a canoe down a river.\n11143,lsmdc1059_The_devil_wears_prada-98776,17550,Someone runs to fetch them. Someone,Someone runs to fetch them.,Someone,gold,has someone's coat and bag for her as she leaves.,pulls over an ivy - shaped claw and crawls in the back.,runs across the field towards a bashes player.,\"are, trying to get inside the mans' sheds, falling over.\"\n11144,lsmdc3088_WHATS_YOUR_NUMBER-42116,9868,\"In the pub, a dart bounces off the board. Someone\",\"In the pub, a dart bounces off the board.\",Someone,gold,throws another into a shelf of glasses.,falls into the pool.,\"rolls, gripping the ball in her hands.\",knocks down a tray of goblin basketball.\n11145,lsmdc3088_WHATS_YOUR_NUMBER-42116,9869,Someone throws another into a shelf of glasses. Another of her throws,Someone throws another into a shelf of glasses.,Another of her throws,gold,\"backwards, ripping them to a few piglets.\",out two girls down themselves.,bounces off the ceiling.,\", washing and the wall is shown.\"\n11146,anetv_k4a5XXRYKK4,11992,A game of lacrosse of being shown with a large group of people running around a field. Several people,A game of lacrosse of being shown with a large group of people running around a field.,Several people,gold,also perform football and fourth in the field.,are then shown walking around a field with capes and chasing their movements.,watch on the sidelines as the game continues and a ref steps in to make a call.,are shown jumping up for soccer as well as riding in formation across the field and cheering with one another.\n11147,anetv_JK8pYBpatAY,1,A woman is kneeling down on a blue mat. She,A woman is kneeling down on a blue mat.,She,gold,has a metal weight bar on her shoulders.,bends over to raise a weight.,walks slowly in front of the camera.,is briefly seen applying lotion to her body.\n11148,anetv_JK8pYBpatAY,2,She has a metal weight bar on her shoulders. She,She has a metal weight bar on her shoulders.,She,gold,moves up and down lifting the weight.,does a few more flips and then his hips.,lifts the barbell up to her chest.,begins to twirl her on the floor and holding her arms.\n11149,anetv_fBlvOzfFq-k,5472,A crowd is gathered in an arena. swimmers,A crowd is gathered in an arena.,swimmers,gold,are playing in a large field.,are lined up on a diving board.,are standing in a circle going in circles.,are watching a family on a mat on the bridge.\n11150,anetv_fBlvOzfFq-k,5473,Swimmers are lined up on a diving board. the swimmers,Swimmers are lined up on a diving board.,the swimmers,gold,are scuba diving at the edge of the swimming pool.,continue to dive as they swim to the ice.,take turns diving off the diving board.,are having a great time in the swimming pool.\n11151,anetv_fBlvOzfFq-k,8428,More shots of athletes and audiences are shown as well as people being interviewed on the camera. More divers,More shots of athletes and audiences are shown as well as people being interviewed on the camera.,More divers,gold,jump as well as several other interviews take place.,walk around a field and paddle towards the camera but does n't jumping along.,speak to the camera followed by another kite being played in the ground.,stand up and talk to the camera and continue fishing on his board.\n11152,anetv_fBlvOzfFq-k,8427,A large group of people are shown from several shots walking around as well as divers jumping off a drive. More shots of athletes and audiences,A large group of people are shown from several shots walking around as well as divers jumping off a drive.,More shots of athletes and audiences,gold,are shown as well as several shots of people sliding behind the water.,are seen as well as walking in a soccer sleep.,are shown as well as people being interviewed on the camera.,are shown as well as several more people crashing into each other.\n11153,lsmdc3087_WE_BOUGHT_A_ZOO-41763,263,\"In front of the tiger enclosure, someone gives a talk. Someone\",\"In front of the tiger enclosure, someone gives a talk.\",Someone,gold,joins someone in the sitting room.,watches his son leave the spacious workshop.,gets in his car and faces someone.,gives a talk to guests.\n11154,lsmdc3087_WE_BOUGHT_A_ZOO-41763,231,\"In his living room, someone reads in an armchair while someone sketches nearby. A glass of milk\",\"In his living room, someone reads in an armchair while someone sketches nearby.\",A glass of milk,gold,hang on the butter wrapped around him.,stands within her reach.,comes down a pile of artwork.,hits the tray onto someone's desk.\n11155,lsmdc3087_WE_BOUGHT_A_ZOO-41763,279,Someone nods at someone and she glances at the crowd. She,Someone nods at someone and she glances at the crowd.,She,gold,climbs out of the booth and gazes steadily at the young priest.,\"sits in the back seat on a narrow ledge carrying a comfortable, crude bed.\",lifts her brow in an impressed look.,leans against a wall.\n11156,lsmdc3087_WE_BOUGHT_A_ZOO-41763,238,\"In an open - air shelter, someone cuts potatoes into chunks, and then puts them in a scale's bowl, and reads the measurement. In town, in spite of the downpour, someone\",\"In an open - air shelter, someone cuts potatoes into chunks, and then puts them in a scale's bowl, and reads the measurement.\",\"In town, in spite of the downpour, someone\",gold,\"enters with their dialogue, the cartoon some national press.\",tries to roll the window in place of someone's hands.,holds a zoo poster up to a bulletin board.,casts a poking out from the back door.\n11157,lsmdc3087_WE_BOUGHT_A_ZOO-41763,259,\"With Crystal perched on his shoulder, someone lifts a boy off the tree and sets him on the ground. Beaming, the zoo staffers\",\"With Crystal perched on his shoulder, someone lifts a boy off the tree and sets him on the ground.\",\"Beaming, the zoo staffers\",gold,carry another sack of rocky base weapons in waiting room.,assist their eager guests.,pass someone to someone.,hands the book over to someone who returns to staring at someone.\n11158,lsmdc3087_WE_BOUGHT_A_ZOO-41763,251,\"Someone peers down the dirt road, but finds no sign of visitors. Someone\",\"Someone peers down the dirt road, but finds no sign of visitors.\",Someone,gold,comes from the safe house as the disgruntled rottweiler bike drives wildly.,sits across from the grail diary.,runs down the road.,walks along along the river's winding bayou.\n11159,lsmdc3087_WE_BOUGHT_A_ZOO-41763,249,\"Now, as someone dons a zookeeper uniform, someone enters in one of her own. The uniformed staffers\",\"Now, as someone dons a zookeeper uniform, someone enters in one of her own.\",The uniformed staffers,gold,listen with fond respectful gazes.,take the mirror off again.,hold hands and stand silently.,descend to the remains of the fluttering train.\n11160,lsmdc3087_WE_BOUGHT_A_ZOO-41763,275,A girl with glasses holds her spool above her head. And a boy,A girl with glasses holds her spool above her head.,And a boy,gold,winds the string of his.,bites at something over snow.,climbs on to help.,appears showing the tool.\n11161,lsmdc3087_WE_BOUGHT_A_ZOO-41763,244,\"Someone climbs out of bed and draws the curtains apart. Outside, the sun\",Someone climbs out of bed and draws the curtains apart.,\"Outside, the sun\",gold,shines brightly through a row of tall leafy trees.,is reflected on the pale white room below.,casts a gold sign on the bank of the cells.,shines on its black silhouette.\n11162,lsmdc3087_WE_BOUGHT_A_ZOO-41763,270,\"He kisses her and she closes her eyes. As he pulls away slightly, someone leans closer, her eyes still closed, and\",He kisses her and she closes her eyes.,\"As he pulls away slightly, someone leans closer, her eyes still closed, and\",gold,holds a tight roll over her nose.,lets her lips graze his.,rests her head against her head.,picks a paper bag.\n11163,lsmdc3087_WE_BOUGHT_A_ZOO-41763,252,He finds a massive tree blocking the road. Someone,He finds a massive tree blocking the road.,Someone,gold,'s group on motorbike arcade.,joins his son as he climbs onto the toppled tree.,hears the sound on a radio.,crashes through the windscreen and careens to the rubble.\n11164,lsmdc3087_WE_BOUGHT_A_ZOO-41763,269,\"Turning, he finds himself face to face with someone. She\",\"Turning, he finds himself face to face with someone.\",She,gold,remorsefully beckons someone's hand.,marks her strides to the students.,slowly helps him up.,closes her eyes and presses her lips to his.\n11165,lsmdc3087_WE_BOUGHT_A_ZOO-41763,262,\"Gazing down the road, someone sees long lines of people surging forward around the parked cars. Someone\",\"Gazing down the road, someone sees long lines of people surging forward around the parked cars.\",Someone,gold,\"looks out at the crowd, then glances at someone, and gives an overjoyed laugh.\",'s truck slows and an overhead light reveals a large patch of pine bones cutting a outward end of the road.,gazes outside the radio.,remains ahead with his hand raised.\n11166,lsmdc3087_WE_BOUGHT_A_ZOO-41763,248,\"The calendar's on someone's door. Now, as someone dons a zookeeper uniform, someone\",The calendar's on someone's door.,\"Now, as someone dons a zookeeper uniform, someone\",gold,moves across an empty field of towering concrete columns.,enters in one of her own.,breathes on his cigarette in the middle of the new roof.,arrives in interior of a hanger.\n11167,lsmdc3087_WE_BOUGHT_A_ZOO-41763,276,And a boy winds the string of his. Another kid,And a boy winds the string of his.,Another kid,gold,jumps in a swing.,holds his red kite up as he runs.,play slide on the grass.,stands by the fence then climbs over the wall.\n11168,lsmdc3087_WE_BOUGHT_A_ZOO-41763,236,Two tigers gaze out from windows in the big - cat house. Crystal,Two tigers gaze out from windows in the big - cat house.,Crystal,gold,'s hand twists her neck.,eyes a thin cockatoo sitting on the front of his bed.,licks rain from her fur.,flung through an open bathroom door.\n11169,lsmdc3087_WE_BOUGHT_A_ZOO-41763,278,\"With her eyes on him, someone straightens. Someone\",\"With her eyes on him, someone straightens.\",Someone,gold,raises his hand to her.,meets her gaze with a grateful look.,\"notices the unresponsive students watching him, reacting.\",draws someone by the neck.\n11170,lsmdc3087_WE_BOUGHT_A_ZOO-41763,271,\"Standing hastily, she leaves. He\",\"Standing hastily, she leaves.\",He,gold,\"glances after her, then shifts his thoughtful eyes.\",asks a nice word.,smiles sadly and forces her eyes.,sits at the altar of the chanting.\n11171,lsmdc3087_WE_BOUGHT_A_ZOO-41763,243,The zoo owner rolls over and finds sunlight peeking in between his curtains. Someone,The zoo owner rolls over and finds sunlight peeking in between his curtains.,Someone,gold,heads up a gangplank.,carries in a bouncing bag with marley.,climbs out of bed and draws the curtains apart.,sees another figure looking back up on the porch.\n11172,lsmdc3087_WE_BOUGHT_A_ZOO-41763,277,Another kid holds his red kite up as he runs. Someone,Another kid holds his red kite up as he runs.,Someone,gold,rakes his backpack through the sand.,is seen looking scared once finished.,\"stands with someone, who glances up at her as she flies her red kite.\",stands into the middle distance and looks at the camera as the finished conviction is used.\n11173,lsmdc3087_WE_BOUGHT_A_ZOO-41763,283,\"And the lion opens his mouth. Now, someone\",And the lion opens his mouth.,\"Now, someone\",gold,leads the troops into an warehouse.,joins someone in a lookout tower.,lies side to side working grasping someone's chair.,'s eating a restaurant in the garden.\n11174,lsmdc3087_WE_BOUGHT_A_ZOO-41763,265,Someone stands with two boys. Crystal,Someone stands with two boys.,Crystal,gold,listens to they drink.,sets his jacket on the dining room table on the picnic table.,smacks someone's head.,come over the door opposite someone.\n11175,lsmdc3087_WE_BOUGHT_A_ZOO-41763,268,\"Someone enters as she searches under a table. Turning, he\",Someone enters as she searches under a table.,\"Turning, he\",gold,finds a collection of discarded dark gray recruit.,finds himself face to face with someone.,finds her walking across the yard behind someone.,finds someone facing two finer sealed against a wall.\n11176,lsmdc3087_WE_BOUGHT_A_ZOO-41763,232,\"Someone eyes the unrelenting rainfall outside. Elsewhere, someone\",Someone eyes the unrelenting rainfall outside.,\"Elsewhere, someone\",gold,lowers the gunman with a worried expression.,opens a flask in his living quarters and finds the vessel empty.,steps into a cabin office.,stands on a tunnel doorway.\n11177,lsmdc3087_WE_BOUGHT_A_ZOO-41763,247,He hurries through the house. The calendar,He hurries through the house.,The calendar,gold,contains a shell - chick.,'s on someone's door.,boasts a second flat floor and a missing color.,\"opens, and looks in.\"\n11178,lsmdc3087_WE_BOUGHT_A_ZOO-41763,258,\"Someone and someone help the guests as they climb down on the other side. With Crystal perched on his shoulder, someone\",Someone and someone help the guests as they climb down on the other side.,\"With Crystal perched on his shoulder, someone\",gold,gazes through the jungle as the men chip out to the safe.,\"steps towards the water, looking back at someone on the sofa.\",lifts a boy off the tree and sets him on the ground.,tilts his head and beams as he penguin trots alongside him.\n11179,lsmdc3087_WE_BOUGHT_A_ZOO-41763,282,Buster lifts his face to the sunlight. Flamingos,Buster lifts his face to the sunlight.,Flamingos,gold,drink from a pond.,steps empty of someone's table.,pulls the string and takes off.,bounces over the toppled lemon.\n11180,lsmdc3087_WE_BOUGHT_A_ZOO-41763,256,Someone helps people climb over the tree. Someone,Someone helps people climb over the tree.,Someone,gold,picks up a bucket and runs it up the sky.,takes it with a gentle gaze.,takes a woman's hand as she climbs up.,\"waves her arms in, then turns to someone and grabs someone's wand.\"\n11181,lsmdc3087_WE_BOUGHT_A_ZOO-41763,280,We see animals in their respective enclosures. A capuchin,We see animals in their respective enclosures.,A capuchin,gold,sits on a chair to watch the news.,sticks out its tongue.,is hops on the dirt bike.,\"turns inside a screen, as the first man puts a toothpick in his hand.\"\n11182,lsmdc3087_WE_BOUGHT_A_ZOO-41763,235,The bearcat eats from someone's hand. Two tigers,The bearcat eats from someone's hand.,Two tigers,gold,gaze out from windows in the big - cat house.,keys rest on the floor beside someone.,approach each holding a dagger still resting on someone's side.,grasp an air - sized antenna.\n11183,lsmdc3087_WE_BOUGHT_A_ZOO-41763,234,Someone leaves a building and uses her walkie - talkie. The bearcat,Someone leaves a building and uses her walkie - talkie.,The bearcat,gold,eats from someone's hand.,rush to shut the door.,'suv follows into view.,tugs at the top.\n11184,lsmdc3087_WE_BOUGHT_A_ZOO-41763,284,\"Now, someone joins someone in a lookout tower. They\",\"Now, someone joins someone in a lookout tower.\",They,gold,show the bank's exterior.,wait in the convoy.,have to go in.,gaze out at departing guest.\n11185,lsmdc3087_WE_BOUGHT_A_ZOO-41763,267,\"As he smiles at passing patrons, his gaze finds the Home Depot cashier in the crowd. She\",\"As he smiles at passing patrons, his gaze finds the Home Depot cashier in the crowd.\",She,gold,holds out his hand to his son.,gives an impressed smile.,unpacks some french items from a wardrobe cabinet.,blows out the occasional breath as they cross into the boardroom balconies.\n11186,lsmdc3087_WE_BOUGHT_A_ZOO-41763,230,\"In another enclosure, monkeys gather on a branch. In his living room, someone\",\"In another enclosure, monkeys gather on a branch.\",\"In his living room, someone\",gold,\"gently slips out thread titled with a guiding cord by one forearm, then reaches behind a shelf.\",rests his head on someone's shoulder.,reads in an armchair while someone sketches nearby.,finds some vagrant shrimp.\n11187,lsmdc3087_WE_BOUGHT_A_ZOO-41763,250,The uniformed staffers listen with fond respectful gazes. Someone,The uniformed staffers listen with fond respectful gazes.,Someone,gold,cuts a red ribbon stretching across the entryway.,backs up with a waitress as they walk them on a short chair down next to the tall stone stairway.,hangs up framed in the swing.,\"approached someone with long blank words, which reads, guest - style, usa,, dignified.\"\n11188,lsmdc3087_WE_BOUGHT_A_ZOO-41763,274,She watches as someone and someone pretend to flex their biceps for a photo. A girl with glasses,She watches as someone and someone pretend to flex their biceps for a photo.,A girl with glasses,gold,holds her spool above her head.,shows off two shots of attractive people putting in someone's.,is speaking and pointing the lenses as she looks to the camera.,\"clinging to her forehead twists her hair, then laughs.\"\n11189,lsmdc3087_WE_BOUGHT_A_ZOO-41763,233,\"Elsewhere, someone opens a flask in his living quarters and finds the vessel empty. Someone\",\"Elsewhere, someone opens a flask in his living quarters and finds the vessel empty.\",Someone,gold,\"leans out from the table, a rusty leaf in his hand, adding the flavor - egg to a plate.\",sets down the alert blue words made up on the screen.,leaves a building and uses her walkie - talkie.,is exhausted from under a bar pipe.\n11190,lsmdc3087_WE_BOUGHT_A_ZOO-41763,241,\"In bed beside it, someone wakes and slaps it. He\",\"In bed beside it, someone wakes and slaps it.\",He,gold,goes to someone's bedside.,drops a bulge into a cupboard.,kicks the balls to her knees then lets him drop.,frowns and pushes himself up a little.\n11191,lsmdc3087_WE_BOUGHT_A_ZOO-41763,229,\"In Buster's enclosure, his enormous footprint is now a paw - shaped puddle. In another enclosure, monkeys\",\"In Buster's enclosure, his enormous footprint is now a paw - shaped puddle.\",\"In another enclosure, monkeys\",gold,gather on a branch.,listen to the bone yard.,can be glassy or lashes in place.,are having food masking his apartment.\n11192,lsmdc3087_WE_BOUGHT_A_ZOO-41763,273,She turns to her older cousin. Someone,She turns to her older cousin.,Someone,gold,\"looks at someone and someone, who pose with their arms draped over each other's shoulders.\",watches tv as it works.,\"looks into her card editor at the register, toward the photo, and returns it.\",slices a small hunk of tomato out of the sandwich's vent.\n11193,lsmdc3087_WE_BOUGHT_A_ZOO-41763,266,\"Crystal smacks someone's head. As he smiles at passing patrons, his gaze\",Crystal smacks someone's head.,\"As he smiles at passing patrons, his gaze\",gold,finds the home depot cashier in the crowd.,sweeps over someone's blonde colleague.,passes by a film.,drifts toward a picnic area adorned with quaint decked religious charts.\n11194,lsmdc3087_WE_BOUGHT_A_ZOO-41763,261,\"Someone holds out her hand for a descending woman. Gazing down the road, someone\",Someone holds out her hand for a descending woman.,\"Gazing down the road, someone\",gold,watches the older visitors file on the sidewalk as he kills the housekeeper.,sees long lines of people surging forward around the parked cars.,gives her spotted shrug.,steps to the levers at her door as she ventures away from them.\n11195,lsmdc3087_WE_BOUGHT_A_ZOO-41763,254,\"As someone stares with astonished eyes, the zoo's patrons give excited looks. He\",\"As someone stares with astonished eyes, the zoo's patrons give excited looks.\",He,gold,faces one of the scans.,starts with someone's lapel bangs.,snaps out of his daze.,and someone head to the window.\n11196,lsmdc3087_WE_BOUGHT_A_ZOO-41763,257,Someone takes a woman's hand as she climbs up. Someone and someone,Someone takes a woman's hand as she climbs up.,Someone and someone,gold,stride between a house and wearing the bonnet with bullet - snakes scarf.,hurry toward the platform.,help the guests as they climb down on the other side.,sit behind the partition sharing the horses and roar.\n11197,lsmdc3087_WE_BOUGHT_A_ZOO-41763,245,\"Outside, the sun shines brightly through a row of tall leafy trees. Someone\",\"Outside, the sun shines brightly through a row of tall leafy trees.\",Someone,gold,shifts his gaze at someone who won't follow him.,gives a satisfied smirk and dashes from the window.,wo in a small yard with braids lined up in her hair.,swings her leg out on his way.\n11198,lsmdc3087_WE_BOUGHT_A_ZOO-41763,246,Someone gives a satisfied smirk and dashes from the window. He,Someone gives a satisfied smirk and dashes from the window.,He,gold,\"opens his eyes and looks at them, increasingly angry.\",hurries through the house.,smacks someone with a blond garland.,walks on as someone walks up onto the fbi ship.\n11199,lsmdc3087_WE_BOUGHT_A_ZOO-41763,242,He frowns and pushes himself up a little. The zoo owner,He frowns and pushes himself up a little.,The zoo owner,gold,scrambles up and teeters before the roof as he attacks the plant.,looks down from it to someone.,looks up from the drawing of the bearded man.,rolls over and finds sunlight peeking in between his curtains.\n11200,lsmdc3087_WE_BOUGHT_A_ZOO-41763,272,Someone and someone watch from a bench. Someone,Someone and someone watch from a bench.,Someone,gold,\", he group to the bluff, facing a lanky man with thick mustache and a toothy beard.\",follows someone down the stairs through a gate as flanked by tall buildings within.,pretends to toss someone into the tiger enclosure.,grabs a brother's manuscript.\n11201,lsmdc3087_WE_BOUGHT_A_ZOO-41763,253,\"Someone, someone, and someone follow suit. On the other side, they\",\"Someone, someone, and someone follow suit.\",\"On the other side, they\",gold,find a crowd waiting by a line of cars.,find someone watch him go.,share a hug as someone faces his teacher.,set with one arm near the crowd.\n11202,lsmdc3087_WE_BOUGHT_A_ZOO-41763,264,Someone gives a talk to guests. Someone,Someone gives a talk to guests.,Someone,gold,is playing a grand piano with someone in the end.,starts to rest on his shoulder.,stands with two boys.,makes his way down past the crowd of customers.\n11203,anetv_8klHUzPHtQw,11173,We see the gate open and see the field. The rider,We see the gate open and see the field.,The rider,gold,jumps up from the shore.,\"falls, pushing the rider son.\",falls from the ground.,takes off down the course.\n11204,anetv_8klHUzPHtQw,11176,We see shots of men riding outdoors and another gate opens. We,We see shots of men riding outdoors and another gate opens.,We,gold,see a bike laying on it's side.,see a man cutting a man's leg.,see two ladies on the beach with a curling stick.,see the ending screen.\n11205,anetv_8klHUzPHtQw,11172,We see a bmx biker as he prepares to to ride. We,We see a bmx biker as he prepares to to ride.,We,gold,see a trailer and snowboarding hills.,go through a bar in the eye of walkway divider.,see the gate open and see the field.,see the boy practicing.\n11206,anetv_8klHUzPHtQw,11174,The rider takes off down the course. We,The rider takes off down the course.,We,gold,slide rapidly down the road to the over area.,pan off as the young boys are grouped.,see riders perform jumps and people riding bikes.,\", the man stops dead, and starts running down a track followed only by the chase.\"\n11207,anetv_8klHUzPHtQw,11175,We see riders perform jumps and people riding bikes. We see another start and a group of people,We see riders perform jumps and people riding bikes.,We see another start and a group of people,gold,are running around on snowboards.,lift them from the truck.,take off in an indoor track.,take the other wheel of the truck.\n11208,anetv_4zLTW7lT3fs,14663,Several shots are shown of people warming up that leads into them lifting weights. A man,Several shots are shown of people warming up that leads into them lifting weights.,A man,gold,is seen speaking to the camera while more people lift weights.,is seen speaking to the camera and transitions into several shots of people aiming the billiards balls.,is seen playing a game of soccer in the background.,lifts his hands up and ends by lifting them off the table.\n11209,anetv_4zLTW7lT3fs,14664,A man is seen speaking to the camera while more people lift weights. Several others,A man is seen speaking to the camera while more people lift weights.,Several others,gold,are seen looking around quickly as well.,are see speaking as well as more weight lifting.,jump up and throwing the object off into the distance.,are shown performing the same tricks with one another as well as reasonable groups.\n11210,anetv_xgb-qIgWHw0,6965,As the musician plays the drums the camera pans in for a closeup and then pans out. The musician,As the musician plays the drums the camera pans in for a closeup and then pans out.,The musician,gold,rises to his feet as she dances on top of the performance.,plays the violin first in the shifts a few times.,finishes and talks to the camera with the onlookers on a floor.,\"ends the performance, stands, and waives both sticks at the audience.\"\n11211,anetv_xgb-qIgWHw0,6963,\"A musician plays a set of drums on an elevated jumbo screen as a camera pans in and out on the performance. A musician with a headset attached to his ears and over his mouth,\",A musician plays a set of drums on an elevated jumbo screen as a camera pans in and out on the performance.,\"A musician with a headset attached to his ears and over his mouth,\",gold,preparing the audience to do tricks while he spins several more times and gathers air.,begins to play a set of drums.,and then to this series of performers in a row playing along with a lot of people who are standing on the grass.,\"answering the singing of dancing, claps his hands, with two other flashing honing over his heart.\"\n11212,anetv_xgb-qIgWHw0,6964,\"A musician with a headset attached to his ears and over his mouth, begins to play a set of drums. As the musician plays the drums the camera\",\"A musician with a headset attached to his ears and over his mouth, begins to play a set of drums.\",As the musician plays the drums the camera,gold,pans in for a closeup and then pans out.,goes in to the man in the red guitar and glasses while still spinning around and polishing a bystander.,cuts back to the other man.,\"man takes the positions and thrusts, then finishes playing his harmonica.\"\n11213,anetv_z08g5S7J-CY,3770,A woman climbs on top of the car. Two women,A woman climbs on top of the car.,Two women,gold,are doing ramps on a city street.,peel the ropes from a room smoking cabin.,grab hoses and start hosing the car down.,are seen putting cars inside of a apartment.\n11214,anetv_z08g5S7J-CY,3769,Girls are standing around a car washing it in bikinis. A woman,Girls are standing around a car washing it in bikinis.,A woman,gold,is washing snow on the car.,wash a window in the filthy day in the rain.,climbs on top of the car.,shoots a man into a wall.\n11215,anetv_z08g5S7J-CY,3772,The women start drying the car. A man,The women start drying the car.,A man,gold,walks behind the camera.,walks off and on back to the top of a car.,stands and talks to the camera.,pours mud on top of a car and eats a candy bar.\n11216,anetv_z08g5S7J-CY,3773,A man pours mud on top of a car and eats a candy bar. There,A man pours mud on top of a car and eats a candy bar.,There,gold,man brushes the chalice down his face while tubing.,person removes two of the snow bags.,filter is placed from around the wooden block to the camera.,is a line of cars waiting to get into the car wash.\n11217,anetv_z08g5S7J-CY,18897,A young man is dousing cars with mud and eating a candy bar. The dirty cars,A young man is dousing cars with mud and eating a candy bar.,The dirty cars,gold,proceed to the car wash.,begin to grill around.,begin dancing with the rope wrapped around the bit.,are made and this third thing seems records.\n11218,anetv_z08g5S7J-CY,3771,Two women grab hoses and start hosing the car down. The women,Two women grab hoses and start hosing the car down.,The women,gold,use steppers to ram on the ground.,wander to the things surrounding and continue fencing.,watch the car as they drive along the road.,start drying the car.\n11219,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25943,19462,Now someone slows his pace as they reach a courtly - logged boathouse. A lofty breezeway at its center,Now someone slows his pace as they reach a courtly - logged boathouse.,A lofty breezeway at its center,gold,reads a gathering at the school clinic.,comes a center line leading to it.,leads from the shore onto the water.,shows a huge ship being buffeted in the storm.\n11220,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25943,19461,He and someone stand at the edge of the clearing and look out at the distant lakeshore. They,He and someone stand at the edge of the clearing and look out at the distant lakeshore.,They,gold,ride through the town to a rocky formation.,shoots his binoculars and gets up.,\"hurry to the centaur, who bears the teacher's upper body.\",peers at the tank.\n11221,lsmdc0017_Pianist-56050,18246,\"Someone slips off his bunk, hurries to the door, opens it and comes face to face with a German nco and soldiers. Someone\",\"Someone slips off his bunk, hurries to the door, opens it and comes face to face with a German nco and soldiers.\",Someone,gold,\"leads them out, fascinated and wagging their backs.\",\"sits at his bottom frame, raising his chopsticks.\",\"retreats into the room, his nose bleeding.\",enters and runs along the street to a door stage.\n11222,lsmdc0017_Pianist-56050,18251,He marches off while she lies on the ground with blood spurting out of her. The partition,He marches off while she lies on the ground with blood spurting out of her.,The partition,gold,ceases and she crawls into his arms.,\"narrows, then tries to focus on the next eye.\",nuzzles on the tall gate's locked tread.,has been pulled aside.\n11223,lsmdc0017_Pianist-56050,18245,\"Then a volley of shots, German voices shouting. Someone\",\"Then a volley of shots, German voices shouting.\",Someone,gold,\"is being interviewed by the chaos, the trip is consumed and writhing in agony.\",\"slips off his bunk, hurries to the door, opens it and comes face to face with a german nco and soldiers.\",\"finally hits him, but there stays in the room as someone brings his mouth a grim of drinks.\",\"stands in a high rise watching someone in gray in confusion, and a man lying on its sidelines.\"\n11224,lsmdc0017_Pianist-56050,18247,The people and about twenty others lined up under lights shining on them from a couple of German vehicles. The nco,The people and about twenty others lined up under lights shining on them from a couple of German vehicles.,The nco,gold,gathers dying trips and the dust.,\"goes along the line, making a selection, using his pistol to prod people into moving.\",surveys him as the president leaves the table before someone.,flails quickly at him and then they walk up another trail of the house three more yards with them on their wheels.\n11225,lsmdc0017_Pianist-56050,18248,\"When he gets to the people he selects people. Then, he\",When he gets to the people he selects people.,\"Then, he\",gold,turns to those who are left.,\"stops in his middle of the road, bringing the cart wheel together.\",gains on fried egg and eggs for a while.,begins to ski on the camel.\n11226,lsmdc0017_Pianist-56050,18252,\"The partition has been pulled aside. People, including the people,\",The partition has been pulled aside.,\"People, including the people,\",gold,walk up to the van.,\"are dressing or dressed, packing up their belongings.\",stand in a line of abandoned houses to ride.,\"go into the hall, where someone sits astonished.\"\n11227,lsmdc0017_Pianist-56050,18250,The nco turns his pistol on the young woman and shoots her through the head. He,The nco turns his pistol on the young woman and shoots her through the head.,He,gold,\", someone and someone drag someone away.\",nudges her with a look.,moves within the mask as the fiery sphere expands so that it almost loses its shell.,marches off while she lies on the ground with blood spurting out of her.\n11228,lsmdc0017_Pianist-56050,18249,\"Then, he turns to those who are left. The nco\",\"Then, he turns to those who are left.\",The nco,gold,slowly into someone 'faces.,\", his wand - loses the dragon gun holder, totally destroying.\",takes out someone's shadow.,turns his pistol on the young woman and shoots her through the head.\n11229,lsmdc1044_Pride_And_Prejudice_Disk_Two-89631,1435,\"Inside, the housekeeper shows them a beautiful mahogany writing desk. They\",\"Inside, the housekeeper shows them a beautiful mahogany writing desk.\",They,gold,\"continue on, into the next room.\",and someone inside a classroom.,spring to her feet and put it on her face.,look in the study arm.\n11230,lsmdc1044_Pride_And_Prejudice_Disk_Two-89631,1433,Someone nods with a broad smile. The carriage,Someone nods with a broad smile.,The carriage,gold,pulls away on the bus and a red - haired waitress reacting.,pulls up through the quiet water to an ss indian bearded man in a black cap and a bowler cap.,\"rolls beneath a grand, ornate arch leading to someone.\",\"lurches to an slide, stifling tears.\"\n11231,lsmdc1044_Pride_And_Prejudice_Disk_Two-89631,1436,The housekeeper turns to someone. Someone,The housekeeper turns to someone.,Someone,gold,\"walks over to the window and looks out at the lake, mirror - like, at the foot of the lawn.\",stands at the end of his patio as he gets out out of the dessert.,places the pot on one side of one shoulder.,races to the window and pulls open a apartment building.\n11232,lsmdc1044_Pride_And_Prejudice_Disk_Two-89631,1434,\"The carriage rolls beneath a grand, ornate arch leading to someone. Inside, the housekeeper\",\"The carriage rolls beneath a grand, ornate arch leading to someone.\",\"Inside, the housekeeper\",gold,leads her into a restaurant study.,leads the two cops out by the door.,shows them a beautiful mahogany writing desk.,enters a modern apartment with a brown wall and thin canvas.\n11233,anetv_DfOqhNeHDgM,15582,We pan left and see a small boy clapping to the music. We,We pan left and see a small boy clapping to the music.,We,gold,see the man hit the ball while the camera follows the man.,see a crowd taking shots with a man before surf.,see the yellow team players losing formation.,change angle and see more of the crowd.\n11234,anetv_DfOqhNeHDgM,15581,We see a group of men playing drum outside as kids watch. We,We see a group of men playing drum outside as kids watch.,We,gold,see people in the audience throwing shoes as a man.,see the tire being pulled.,see the ending screen.,pan left and see a small boy clapping to the music.\n11235,anetv_DfOqhNeHDgM,15580,We see an opening title screen. We,We see an opening title screen.,We,gold,see a person putting plaster inside a rock.,see a large image in the distance.,see images from a magazine.,see a group of men playing drum outside as kids watch.\n11236,anetv_DfOqhNeHDgM,14931,Children that are surrounding the drum players are clapping. A shirtless boy,Children that are surrounding the drum players are clapping.,A shirtless boy,gold,\"is sitting in a chair in a black shirt, clapping and talking.\",is clapping and dancing in place.,walks by with a few hula hoops.,comes round and turns around to class.\n11237,anetv_ZOQSDsJYXIA,6426,A person is seen running down a long track into a pit followed by several more runners as well. More people,A person is seen running down a long track into a pit followed by several more runners as well.,More people,gold,are seen walking around the cars bumping into the car holding a camera.,are seen running down the track one after the other while ending by jumping into the pit.,are seen speaking to the camera and leads into them bouncing in the dirt.,are seen riding the horses.\n11238,anetv_ZOQSDsJYXIA,14907,The athlete in yellow ran and hopped and jump as the woman in white raised the red flag. Male athletes one by one,The athlete in yellow ran and hopped and jump as the woman in white raised the red flag.,Male athletes one by one,gold,taking a stance in front of the screen before running down a track.,are running and then hopped and jumped and landed on sandy ground.,speaking to the man doing scene of the jump with the medals in coat as the athlete did a high kick on the parallel bar,is on the vaulter recording the tango routine.\n11239,anetv_ZOQSDsJYXIA,14906,The young athlete run in the track and jumped and landed on the sandy part. The athlete in yellow,The young athlete run in the track and jumped and landed on the sandy part.,The athlete in yellow,gold,gets on when the position is shown.,ran and hopped and jump as the woman in white raised the red flag.,shirt chases the ball noticing.,threw a shotput and several tricks on the jump is jumping over the court in the competition.\n11240,lsmdc3086_UGLY_TRUTH-5994,9707,They enter a conference room. Someone,They enter a conference room.,Someone,gold,turns on a tv.,puts out the candle.,\"is there in the courtyard, being overheard by someone.\",pours something into an iron.\n11241,lsmdc3085_TRUE_GRIT-40572,36,\"Someone cocks his head, curiously. The rider appears to be a black bear and the second horse\",\"Someone cocks his head, curiously.\",The rider appears to be a black bear and the second horse,gold,topples the track with the green flag.,trails the recording installation.,has a dead body draped over it.,glows on his left boot.\n11242,lsmdc3085_TRUE_GRIT-40572,35,As they continue to sit and wait. Someone,As they continue to sit and wait.,Someone,gold,\"cocks his head, curiously.\",takes the check from her pocket.,finishes hugs them record.,moves back around while someone watches him out in the background.\n11243,lsmdc3085_TRUE_GRIT-40572,37,The rider stops facing someone. It,The rider stops facing someone.,It,gold,turns and blindly throws his arm to someone.,rides through a picture which lands in a historic hard structure.,'s the tooth and someone switches off the radio.,is in fact a grizzled old man wearing a bear skin with the head still attached.\n11244,lsmdc3085_TRUE_GRIT-40572,33,\"Someone and someone stay put, sitting on their horses by some trees. The snow\",\"Someone and someone stay put, sitting on their horses by some trees.\",The snow,gold,is almost 50 up the steep hill.,takes someone off of the tower and cheers off.,\"falls to the ground, laughing as someone gets in.\",\"falls heavier, swirling through the air.\"\n11245,lsmdc3085_TRUE_GRIT-40572,34,\"The snow falls heavier, swirling through the air. As they\",\"The snow falls heavier, swirling through the air.\",As they,gold,\"make it wide, more water slides down the waters beneath a black sky.\",turn away and get them out.,\"descend a flight of stairs, the air teeming with lava sweeps.\",continue to sit and wait.\n11246,anetv_gzuLIo5ZR9A,3389,We see a little girl holding the leash for a big dog. The little girl,We see a little girl holding the leash for a big dog.,The little girl,gold,falls and drops the leash.,hits a pinata again.,is brushing by a dog.,takes off and puts a leash on the dog.\n11247,anetv_gzuLIo5ZR9A,3391,The little girl then follows the dog to get the leash. She,The little girl then follows the dog to get the leash.,She,gold,gets the leash and walks the dog.,puts what into the mouth for a little bit.,continues pushing the dog while she twirls the duo around her movements.,begins pushing dogs around the yard and begins doing several tricks with her.\n11248,anetv_gzuLIo5ZR9A,3390,The little girl falls and drops the leash. The little girl then,The little girl falls and drops the leash.,The little girl then,gold,spins up and down the pinata while laughing.,follows the dog to get the leash.,falls away from the child.,grabs a little girl and jumped in the air.\n11249,lsmdc3023_DISTRICT_9-11317,12058,\"On - board the command module, someone leans back on his seat, blinking heavily. He\",\"On - board the command module, someone leans back on his seat, blinking heavily.\",He,gold,\"gazes down at the child in his lap, then eyes the navigation screen.\",\"opens his eyes, trying to catch a breath behind his head as he tries to utter a sound across the screen.\",looks around then gathers up his tie and tie.,\"drops a spoon, turns off the tap and stares glumly at a smashed vehicle.\"\n11250,lsmdc3023_DISTRICT_9-11317,12060,\"Bowing his head, he shields his face. We\",\"Bowing his head, he shields his face.\",We,gold,\"laughs, then holds his troubled gaze as someone thrusts his arms into the giant's grip.\",\", someone and someone holding their guns hands over next to the audience.\",revealing the bow body - someone's head.,watch him from above.\n11251,anetv_v5i_NAlJX1Y,4869,A woman work out in a rowing machine pulling a string with a handle. The woman,A woman work out in a rowing machine pulling a string with a handle.,The woman,gold,moves in the seat backward and forward while pulling the handle.,begins to exercise while the trainer is pushed on the machine.,removes the cables from the machine and replaces the pole inside.,pushes the bike down several times and uses a cable to remove the well off.\n11252,anetv_v5i_NAlJX1Y,14266,A woman is seen sitting on a piece of exercise equipment and rowing back and fourth. Her working out,A woman is seen sitting on a piece of exercise equipment and rowing back and fourth.,Her working out,gold,are shown in several more clips.,exercises are shown as well as her playing a bike.,does an exercise kick and close ups of shoulders and smiles are shown.,while the camera captures her movements.\n11253,anetv_v5i_NAlJX1Y,4870,The woman moves in the seat backward and forward while pulling the handle. An arrow,The woman moves in the seat backward and forward while pulling the handle.,An arrow,gold,comes in close to her jaw and enters the room.,shows where the hand of the woman have to reach.,walks to the other side as the pizzeria watches.,opens onto a horse bar and takes a bow.\n11254,lsmdc3014_CAPTAIN_AMERICA-5424,1303,Someone turns and walks away. Someone,Someone turns and walks away.,Someone,gold,stares at someone with an enraptured smile.,raises his weapon and sweeps a gun across the room.,\"hurries out, and passes both settings on one of the dead tables.\",stops and turns to face someone.\n11255,lsmdc3014_CAPTAIN_AMERICA-5424,1304,Someone stops and turns to face someone. Someone,Someone stops and turns to face someone.,Someone,gold,turns on bright lights behind the artist.,steps forward as someone goes back to pumped green.,touches his chin as the flaps clutching harnesses over his head.,\", he walks like a nazi crouching beside someone.\"\n11256,lsmdc3014_CAPTAIN_AMERICA-5424,1305,Dvs162 someone strides out of the room. Boys playing stickball on the street,Dvs162 someone strides out of the room.,Boys playing stickball on the street,gold,at someone's station.,move aside as someone and agent someone pass in a car.,\"stage cover someone, who laughs with interest.\",comes down some stairs.\n11257,anetv_z9l32VOM6wY,12749,A man is seen speaking to a woman while showing her how to sharpen a knife. The woman then,A man is seen speaking to a woman while showing her how to sharpen a knife.,The woman then,gold,uses the tool to sharpen the knife with the man's help.,fights back and fourth with the girl while the camera follows her comment to her comments.,begins cutting out more and shows how to use the knife to remove the arrow from the knife.,sharpens the sharpener and begins cutting and slicing.\n11258,anetv_z9l32VOM6wY,12750,The woman then uses the tool to sharpen the knife with the man's help. He,The woman then uses the tool to sharpen the knife with the man's help.,He,gold,points to a log again and pauses to speak to the camera.,points to the knife and shows her again how to do it properly.,finally moves the object with different knives.,continues sharpening the pointing knife while looking to the camera and sharpening the knife on it.\n11259,anetv_ynpvos7UFZo,15796,There are people sitting and knitting with yarn and needles. There,There are people sitting and knitting with yarn and needles.,There,gold,are standing in many racetrack personnel.,look up a gold picture.,is walking and leads people other speaking and having cake.,'s a man named john george talking about his knitting experience in the class.\n11260,anetv_ynpvos7UFZo,15798,He along with his other fellow knitters demonstrates how they knit. Another person named Charles Henry,He along with his other fellow knitters demonstrates how they knit.,Another person named Charles Henry,gold,is to help swing.,pulls the ball slim without any weed movements in the train continuing.,is demonstrating how to dismount inquisitively and backwards on mud.,is talking about his knitting experience at the cultural center.\n11261,anetv_ynpvos7UFZo,15797,There's a man named John George talking about his knitting experience in the class. He along with his other fellow knitters,There's a man named John George talking about his knitting experience in the class.,He along with his other fellow knitters,gold,demonstrates how they knit.,\"moves, tries, another piece of paper.\",is when he was skiing.,moves next to his performance as he takes a bow back of the drinking finger.\n11262,anetv_ynpvos7UFZo,15799,Several people are seen at the cultural center sitting together and knitting as one of the organizers talks. The news reporter,Several people are seen at the cultural center sitting together and knitting as one of the organizers talks.,The news reporter,gold,steps to still hold a snowy instrument and leaves.,demonstrates how to do karate moves with several toy moves making the different legs that fashion.,is speaking to a report and stands next two people for a video clip.,wears the gray sweater and looks very happy in it.\n11263,anetv_ynpvos7UFZo,15794,There are some people knitting with yarn and knitting needles at a cultural center. A rack of knitted hats and sweaters,There are some people knitting with yarn and knitting needles at a cultural center.,A rack of knitted hats and sweaters,gold,is stacked up against the wall.,are gathered on a piece of paper and sands to nets from trying to hilt it.,comes in and the word is displayed on the couch.,\"are on the front steps, pulling a small skinned item behind her hair.\"\n11264,anetv_ynpvos7UFZo,15795,A women representing The Daily news channel is talking about the sweater and then she wears it. There,A women representing The Daily news channel is talking about the sweater and then she wears it.,There,gold,is a close up of a young doe.,are located on a tv and is shown to weld together a slices of paper.,waiting and talking to the camera and continues smoking while the owner is combing the grass.,are people sitting and knitting with yarn and needles.\n11265,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1778,14994,She dampens the clothe again. Someone,She dampens the clothe again.,Someone,gold,\"looks at the pool with uncertainty, then back at someone.\",\"lets go down, finding herself in the passenger seat, and grabs the grate.\",'s skin hangs on one side.,\"stays very close together, after that.\"\n11266,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1778,14996,Someone gets up and turns his back to her. Someone,Someone gets up and turns his back to her.,Someone,gold,raises himself on his elbows and stares at the blue sky.,forces a hungry smile.,dismisses him with a hug.,steals a glance and is transfixed.\n11267,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1778,14995,She stands up and starts to disrobe. Someone,She stands up and starts to disrobe.,Someone,gold,gets up and turns his back to her.,has just given the news from her.,stares down netherfield hall.,walks down a driveway across a desolate field.\n11268,anetv_Jo3R272P8eM,16104,People are playing wall ball in the room. The woman,People are playing wall ball in the room.,The woman,gold,is playing tennis on the floor.,is standing all around them playing red yarn.,is inside an office room and talks into the woman.,is holding a piece of paper.\n11269,anetv_p1yiPvIkRec,1114,The person then begins moving their hands around the solve the cube. The person,The person then begins moving their hands around the solve the cube.,The person,gold,walks away from the man and taking the wall off the board.,solves the cube then turns the camera off.,walks in and out of frame and moves back to the side of the camera then walks back to the camera.,\"holds the contact with the contact smaller, and holds it above their eye.\"\n11270,anetv_p1yiPvIkRec,1113,A person is seen sitting on a bench holding a rubix cube. The person then,A person is seen sitting on a bench holding a rubix cube.,The person then,gold,attaches a rubik's cube over the cube.,solves and solves the cube over the cube.,rolls the dough into the pan and pours it into the dough.,begins moving their hands around the solve the cube.\n11271,anetv_YbD0P8dH6Oc,5381,\"Then the sumos wrestle, and the thin sumo throws the fat sumo to the floor. After, the fat sumo\",\"Then the sumos wrestle, and the thin sumo throws the fat sumo to the floor.\",\"After, the fat sumo\",gold,stands up and left the ring.,run back and continue fighting and sometimes one misses.,take turns with an ab catch.,run to the house to talk.\n11272,anetv_YbD0P8dH6Oc,5380,\"Two sumos prepares to wrestle in a ring while a judge stands in middle of them. Then the sumos wrestle, and the thin sumo\",Two sumos prepares to wrestle in a ring while a judge stands in middle of them.,\"Then the sumos wrestle, and the thin sumo\",gold,falls the blue sumo.,win the competition with their hands.,throws the fat sumo to the floor.,\"falls on a rope, then the woman wins.\"\n11273,anetv_9dqz5ojw-ys,2639,The players are yelling and then the ball is hit towards the goal and deflected as the crowd cheers them on. The ball,The players are yelling and then the ball is hit towards the goal and deflected as the crowd cheers them on.,The ball,gold,\"is shown in slow motion, a yellow player hits it against the net, with a hard one that has serious attention.\",is between the teams of a red team player on one side.,moves back into position to toss the ball over the net.,is then thrown back into the pool.\n11274,anetv_9dqz5ojw-ys,2638,People are in stands watching two teams in a pool play pool soccer. The players are yelling and then the ball,People are in stands watching two teams in a pool play pool soccer.,The players are yelling and then the ball,gold,pong as the other team plays the game.,is hit towards the goal and deflected as the crowd cheers them on.,appears to be big enough.,is shown playmate after the play.\n11275,anetv_GKM-K8jbfyE,2270,The person wipe the next glass window. The person,The person wipe the next glass window.,The person,gold,cleans the dog in a towel.,uses a measuring towel to rub the cup on the side.,wipe the next smaller glass window with the wiper.,walks into frame on the tile while the man is laying on the ground.\n11276,anetv_GKM-K8jbfyE,2414,A close up of a window is shown followed by a person using a tool on the windows. The person,A close up of a window is shown followed by a person using a tool on the windows.,The person,gold,\"removes a salad tire, folds it properly, sets it down and cuts a straw off of pipes.\",moves points around the hookah while the camera pans all around the area.,moves the stick all along the windows while the camera captures it's movements.,cleans off the hookah pipe with sticks.\n11277,anetv_GKM-K8jbfyE,2415,The person moves the stick all along the windows while the camera captures it's movements. The person,The person moves the stick all along the windows while the camera captures it's movements.,The person,gold,continues hammering down one of the wheels until the camera pans to a side to lift the tire up.,continues to move through the yard while the camera pans around them.,continues to push black pucks along the ice while the camera pans out.,moves the object up and down and all around the window.\n11278,anetv_GKM-K8jbfyE,2269,A person is wiping the glass using a tall wiper. The person,A person is wiping the glass using a tall wiper.,The person,gold,cleans the window with the blue tool.,puts water on the pressure washer and washes the board.,sprays water all over the board.,wipe the next glass window.\n11279,lsmdc3032_HOW_DO_YOU_KNOW-2076,4168,Someone exits the club with a blond man who stops to sign autographs. His date,Someone exits the club with a blond man who stops to sign autographs.,His date,gold,snatches up his broomstick by the captain.,continues walking down the alley.,starts the dial forlornly and clinks the soccer ball.,comes over and helps him up.\n11280,lsmdc3032_HOW_DO_YOU_KNOW-2076,4169,\"He points her around a corner, then runs after her grinning. Someone\",\"He points her around a corner, then runs after her grinning.\",Someone,gold,rolls on top of him as the dangles door swings just behind it.,slaps someone's door keys out of her hand.,\"rounds the corner, grabs someone, and lifts her off of her feet.\",notices the pool table and sinks a bite into her arm.\n11281,anetv_ean7ZR6XmG4,19097,Man is sitting on a table eating a sandwich in a rstaurant talking to other man. man,Man is sitting on a table eating a sandwich in a rstaurant talking to other man.,man,gold,is watching the man while eats and talking to him.,is behind the counter working the food on his hands.,is sitting on the table walking and eats food from a bucket.,is in a kitchen doing a salad and then a knife in his hand.\n11282,anetv_ean7ZR6XmG4,19099,Man is sitting on the chair and talks to the man on thefloor and throw him the sandwich. man walks to a desk and sits in front of te computer drinking water and the other man,Man is sitting on the chair and talks to the man on thefloor and throw him the sandwich.,man walks to a desk and sits in front of te computer drinking water and the other man,gold,is talking to the picture in the hands.,standing seated smoking drinks to a person who is eating by.,sits next to the host of the two bagpipe players.,is laying on the floor trying to talk.\n11283,anetv_ean7ZR6XmG4,19100,Man walks to a desk and sits in front of te computer drinking water and the other man is laying on the floor trying to talk. anoher man,Man walks to a desk and sits in front of te computer drinking water and the other man is laying on the floor trying to talk.,anoher man,gold,takes a cup from his pocket and drinks it.,siting in front talk to the man in the desk.,is sitting on back of the bed inside of the machine.,is laying around the room and then begins doing all dishes in a gym.\n11284,anetv_ean7ZR6XmG4,19098,Man is watching the man while eats and talking to him. both men stands and play rock paper scissors and man hits the man sand this,Man is watching the man while eats and talking to him.,both men stands and play rock paper scissors and man hits the man sand this,gold,red and a list on him behind him.,falls to the floor.,and puts her bandanna around.,deagol to another man.\n11285,anetv_p4MMyVArVc0,4208,The woman is showing various acrobatic moves. The woman,The woman is showing various acrobatic moves.,The woman,gold,continues talking about the cross.,is standing in the water and trying to catch.,is bouncing on the wire.,moves and the fooseball net in fast motion.\n11286,anetv_p4MMyVArVc0,4207,A woman is balancing on a tight rope outdoors. The woman,A woman is balancing on a tight rope outdoors.,The woman,gold,is showing various acrobatic moves.,is jumping while jump rope.,is ironing clothes in a skimpy bikini.,is dragged away as the young continues to walk from its way and jump into each hair.\n11287,anetv_p4MMyVArVc0,4209,The woman is bouncing on the wire. An animal,The woman is bouncing on the wire.,An animal,gold,\"follows him, hitting the frisbee.\",is in the field in the background.,appears across the screen.,runs into scene with a red dog pushes the door.\n11288,anetv_MsalIjwP3no,6822,A crew of workers works on constructing a brick wall. A man,A crew of workers works on constructing a brick wall.,A man,gold,file into o. g. someone sits at the table after the second young man.,\"walks past his desk, as he pushes a bedroom door open.\",\"puts on paper and is driving around, spinning in circles on his polishing work.\",uses water to wash down the wall surface.\n11289,anetv_MsalIjwP3no,6823,A man uses water to wash down the wall surface. A man,A man uses water to wash down the wall surface.,A man,gold,grabs a bottle of water and washes it.,uses a spatula to apply plaster to a brick column.,turns the windshield with water.,lies on the floor next to the painting new rug.\n11290,anetv_MsalIjwP3no,9802,Two men begin filling cups with water and tossing the water onto the brick wall. other men,Two men begin filling cups with water and tossing the water onto the brick wall.,other men,gold,begin to play beer pong with the other person.,get the fridge in front of them and grab drinks.,are shown standing at the edge with the big yellow helmets on it.,are seen scrapping the wall with a metal instrument.\n11291,anetv_MsalIjwP3no,9801,Three men are working on a brick wall. two men,Three men are working on a brick wall.,two men,gold,are using roof extensions with a lacrosse stick.,are shown from tiles in different martial art.,begin filling cups with water and tossing the water onto the brick wall.,are working on people sitting on a wooden carving.\n11292,lsmdc1038_The_Great_Gatsby-87276,13997,\"The man turns to someone, smiling. Someone\",\"The man turns to someone, smiling.\",Someone,gold,walks out on someone.,reaches forward and turns his face.,turns the american to his son.,\"gawks at someone, a handsome, fine - featured man with bright eyes and swept - back, wavy brown hair.\"\n11293,anetv_t_D9MYkEPEo,17947,An audience claps as a couple appears on stage. They,An audience claps as a couple appears on stage.,They,gold,\"the dance in the festival, the player flies a gymnast to two swipe at the throw and comes more and after seems tips repeats\",\"dance gracefully, spinning and twirling.\",do jumps from the dive and dives into the pool.,make a cool meter and turn over a soccer club with trainers.\n11294,anetv_t_D9MYkEPEo,17948,\"They dance gracefully, spinning and twirling. The couple\",\"They dance gracefully, spinning and twirling.\",The couple,gold,bow as they finish their routine.,raises their arms sharply.,stops dancing on the stage.,pulls out a inflatable branch.\n11295,anetv_JlCQlNjvXzA,11864,A man presses a button on an elliptical. the man,A man presses a button on an elliptical.,the man,gold,cuts the buttons on the wall and explains how to remove his bond.,cleans a sink with a carpet rag and tossed it into his face.,points the whole way.,holds on to the handle bars & begins vigorously using the elliptical.\n11296,anetv_JlCQlNjvXzA,19376,A man is working out on an elliptical trainer. He,A man is working out on an elliptical trainer.,He,gold,lifts a barbell up on the floor.,is working to work on a model in the shop.,pedals slowly but consistently in his living room.,shows the weight very easily.\n11297,anetv_B4LYBLihttQ,7533,\"The female put the pasta in boiling water, chopped the garlic and pour olive oil in the pan, she shredded the orange peel and put in the pan and added tomatoes and seafood. The woman\",\"The female put the pasta in boiling water, chopped the garlic and pour olive oil in the pan, she shredded the orange peel and put in the pan and added tomatoes and seafood.\",The woman,gold,\"drain the pasta, and put it on the sauce and put them in the white bowls.\",\"paints a plate and a mixing bowl, which all sliced the food.\",pours it into a pot and describes more ingredients and then held in the smaller icing and lift the omelette.,rub the potato and put on top onions.\n11298,anetv_B4LYBLihttQ,7532,\"The young female is standing in the kitchen talking to the camera. The female put the pasta in boiling water, chopped the garlic and pour olive oil in the pan, she\",The young female is standing in the kitchen talking to the camera.,\"The female put the pasta in boiling water, chopped the garlic and pour olive oil in the pan, she\",gold,\"started to spray the cooks, lifts some salad and placed it on the stove.\",add the cup and stirred in pastry.,dry the necessary ingredients.,shredded the orange peel and put in the pan and added tomatoes and seafood.\n11299,lsmdc1004_Juno-6636,8539,\"As she runs up to the Lorings' front door, she smoothes down the hem of the skirt she wears over her jeans. She\",\"As she runs up to the Lorings' front door, she smoothes down the hem of the skirt she wears over her jeans.\",She,gold,peers in through one of the two oval leaded windows.,\"looks up at someone, then, faintly, and turns to throw the last of his money on someone 'speaker.\",hugs her from behind and lands in dirt beside the little mirror.,\"leaves the cab and she steps up onto the porch, enraptured by a branch someone.\"\n11300,anetv_MIQiVsnwcWE,18990,A man dressed in black performs tai chi at a beach. The scene,A man dressed in black performs tai chi at a beach.,The scene,gold,changes to the man in an indoors environment demonstrating techniques.,cuts to four men standing outdoors with a man standing to a horizontal tent.,demonstrates how to use the monkey bars.,starts with an orchestra in front of a group of people.\n11301,anetv_MIQiVsnwcWE,2167,A man stands on a ocean front beach. the man,A man stands on a ocean front beach.,the man,gold,balances on the boat and waves.,rides a wake board in a water wave.,swings the stick as he steers their paddles.,begins doing tai chi.\n11302,anetv_MIQiVsnwcWE,2168,The man begins doing tai chi. the man then,The man begins doing tai chi.,the man then,gold,stands indoors and does tai chi.,turns towards the beam and begins hopping up and down.,rides on a skateboard off the road.,cuts the man's beard.\n11303,anetv_X3Nr9Gj6JR0,150,\"A person makes spaghetti from scratch using flour, eggs, a blender and a pasta press. A hand\",\"A person makes spaghetti from scratch using flour, eggs, a blender and a pasta press.\",A hand,gold,\"mixes flour in a bowl, adds eggs and mixes both ingredients with a mixer.\",\"puts sugar on the pasta, then adds a shot and puts it on the next dish.\",grabs a red egg on the stove and decorates it with raspberries and chocolate.,\"combines the dough and sings, then mix them in a bowl.\"\n11304,lsmdc3061_SNOW_FLOWER-30413,6222,She wraps it tightly around her slender torso and hugs it close over her chest. Her head droops forward and her eyes close as she,She wraps it tightly around her slender torso and hugs it close over her chest.,Her head droops forward and her eyes close as she,gold,stares longingly at the handsome woman.,strokes the side of the cutters.,strolls over to a sunny window.,flinches from her touch.\n11305,lsmdc3061_SNOW_FLOWER-30413,6224,\"Looking down, she pulls out a small brass key with a circular toggle and a small, round plastic coil. Someone\",\"Looking down, she pulls out a small brass key with a circular toggle and a small, round plastic coil.\",Someone,gold,is then silver and gold in his gold - gold suit.,turns to face her.,frowns quizzically as she turns it in her fingertips.,turns onto the stage to find a choir of random asian sounds.\n11306,lsmdc3061_SNOW_FLOWER-30413,6218,\"Someone looks up at him, her eyes wide and shining. Someone\",\"Someone looks up at him, her eyes wide and shining.\",Someone,gold,\"gives a stoic nod, then turns away, his handsome features set in a haggard frown.\",is on through one of the other windows.,takes her own hand and strides off.,watches as she removes her face.\n11307,lsmdc3061_SNOW_FLOWER-30413,6238,\"Taking them out, she reads the cover page SnowFlower And The Secret Fan.. Someone\",\"Taking them out, she reads the cover page SnowFlower And The Secret Fan..\",Someone,gold,lies in framed photographs while looking up at him.,\"enters the kitchen, then takes a roll of paper.\",returns to his booth.,\"flips to the next page and reads, her intent eyes fixed on her friend's completed manuscript.\"\n11308,lsmdc3061_SNOW_FLOWER-30413,6241,A tear slides down her cheek. Someone,A tear slides down her cheek.,Someone,gold,looks away at her husband.,kneels down to the girl.,gives him a shy pat.,\"laughs, but contorts with pain.\"\n11309,lsmdc3061_SNOW_FLOWER-30413,6216,\"Someone looks up at him and nods, her chest heaving beneath her black wool coat. Someone\",\"Someone looks up at him and nods, her chest heaving beneath her black wool coat.\",Someone,gold,\"grips the pole, smiling over the bridge of her shirt, turning and scowling.\",\"stares at her, then averts his stricken gaze.\",\"smoothes out her tears, and hops on as she does so.\",comes to a halt and puts an arm around someone.\n11310,lsmdc3061_SNOW_FLOWER-30413,6226,Someone steps through the doors. She,Someone steps through the doors.,She,gold,turns away discreetly to the ship.,steps back to the bus.,crosses a waiting area and approaches a front desk.,steps inside and sprints out uncertainly.\n11311,lsmdc3061_SNOW_FLOWER-30413,6217,\"Someone stares at her, then averts his stricken gaze. Someone\",\"Someone stares at her, then averts his stricken gaze.\",Someone,gold,shakes his head and shakes his head.,sadly faces her mother with a wounded gaze.,gives a coy smile.,\"looks up at him, her eyes wide and shining.\"\n11312,lsmdc3061_SNOW_FLOWER-30413,6227,She crosses a waiting area and approaches a front desk. The burly bathhouse attendant,She crosses a waiting area and approaches a front desk.,The burly bathhouse attendant,gold,enters a glass and starts a cigar with a flashlight.,\"follows a weary, maintains, crooked smile.\",stops eating and listens with a lifted brow.,finds the broken locket briefcase in the open.\n11313,lsmdc3061_SNOW_FLOWER-30413,6225,\"Now, a pair of wood - framed glass doors bear stenciled Chinese characters. Someone\",\"Now, a pair of wood - framed glass doors bear stenciled Chinese characters.\",Someone,gold,assignment blank sets of money at the computer.,cups her shoulder instead.,steps through the doors.,'s rib cage comes back on each hand.\n11314,lsmdc3061_SNOW_FLOWER-30413,6234,\"She opens it, spreading its creased paper panels and finds writing on each one. Flipping it over, she\",\"She opens it, spreading its creased paper panels and finds writing on each one.\",\"Flipping it over, she\",gold,selects a photo album with a framed photo of someone secret love.,tapes the book on her fingers and lights a candle.,notices a series of unopened spaces on a low shelf.,sees writing on only half of the back panels.\n11315,lsmdc3061_SNOW_FLOWER-30413,6233,Someone lifts a folded fan of the locker's shelf. She,Someone lifts a folded fan of the locker's shelf.,She,gold,\"stares with the quilt, then picks up someone's phone from its new case.\",\"takes someone's hand, then shifts.\",looks up and pushes his hand.,\"opens it, spreading its creased paper panels and finds writing on each one.\"\n11316,lsmdc3061_SNOW_FLOWER-30413,6221,\"Standing, she puts it on. She\",\"Standing, she puts it on.\",She,gold,wraps it tightly around her slender torso and hugs it close over her chest.,does someone 'pats.,turns and ties the laces of her genitals.,tosses it over the bar to a motionless man.\n11317,lsmdc3061_SNOW_FLOWER-30413,6220,\"Now sitting on her bed at home, someone removes the gray men's suit jacket from the plastic bag. The finely - tailored garment\",\"Now sitting on her bed at home, someone removes the gray men's suit jacket from the plastic bag.\",The finely - tailored garment,gold,unfolds gracefully as she holds it up.,is tipped from under the water.,holds him as he removes the board.,drifts up across their legs in the open door.\n11318,lsmdc3061_SNOW_FLOWER-30413,6235,\"Flipping it over, she sees writing on only half of the back panels. She\",\"Flipping it over, she sees writing on only half of the back panels.\",She,gold,\"rolls it, then picks it up and wields it.\",blinks her sad eyes and closes the fan.,finds someone holding a clipboard across her hand.,rips out a pair and examines her full crotch.\n11319,lsmdc3061_SNOW_FLOWER-30413,6237,\"Her gaze falls on something else in the locker and she tilts her head for a better look. On the bottom shelf, she\",Her gaze falls on something else in the locker and she tilts her head for a better look.,\"On the bottom shelf, she\",gold,smirks as she looks at his dad.,\"sees her sing coach, sings and shines her goateed.\",gives a startled look.,finds a stack of typed pages.\n11320,lsmdc3061_SNOW_FLOWER-30413,6236,She blinks her sad eyes and closes the fan. Her gaze falls on something else in the locker and she,She blinks her sad eyes and closes the fan.,Her gaze falls on something else in the locker and she,gold,holds out her wrist.,nods into the mirror again.,tilts her head for a better look.,allows her smile to fill.\n11321,lsmdc3061_SNOW_FLOWER-30413,6229,Someone gives a tiny bow and the man returns the gesture. She,Someone gives a tiny bow and the man returns the gesture.,She,gold,looks off then grins.,looks in someone's direction.,waits as he heads off.,turns toward someone who smiles his nods and nods.\n11322,lsmdc3061_SNOW_FLOWER-30413,6223,Her head droops forward and her eyes close as she strolls over to a sunny window. She,Her head droops forward and her eyes close as she strolls over to a sunny window.,She,gold,crushes out her wand as she rushes through the chamber.,locks her eyes and walks out of the kitchen.,\"sways dreamily on her feet, then lifts her head and slips her hands into the pockets with a heavy sigh.\",watches the crew pass someone in the empty lobby.\n11323,lsmdc3061_SNOW_FLOWER-30413,6239,\"Someone flips to the next page and reads, her intent eyes fixed on her friend's completed manuscript. Within the story, a girl\",\"Someone flips to the next page and reads, her intent eyes fixed on her friend's completed manuscript.\",\"Within the story, a girl\",gold,comes into view and stares.,stands in the doorway of someone's home.,is hanging on the wall.,is smoking from the newspaper.\n11324,lsmdc3061_SNOW_FLOWER-30413,6231,She makes her way to a bank of wooden lockers and skims her gaze over their numbers. A rectangular wooden plaque,She makes her way to a bank of wooden lockers and skims her gaze over their numbers.,A rectangular wooden plaque,gold,reads his photograph from diploma - year old daughter.,stands upright bearing the man's photo and a panel of chinese writing.,hammers a piece of place inside a canvas structure.,\"reads, reading a complex marked central buildings, and turns to a podium.\"\n11325,lsmdc3061_SNOW_FLOWER-30413,6228,\"The burly bathhouse attendant stops eating and listens with a lifted brow. Leading her into a room, he\",The burly bathhouse attendant stops eating and listens with a lifted brow.,\"Leading her into a room, he\",gold,turns to a worker.,scurries down a snowy flight of stairs.,finds the bottle on her hand and looks out.,holds the confusion sign for their granddaughter.\n11326,anetv_JMIvoKPtxRA,17839,The referee gets up and then kicks one of the characters out of the rink then he drops on the ground to bang his hand on the rink to end the wresting round. The outro video begins and it,The referee gets up and then kicks one of the characters out of the rink then he drops on the ground to bang his hand on the rink to end the wresting round.,The outro video begins and it,gold,\"shows out of a pair of polo players that men wearing yell uniforms are reacting, and sumo seeks flashes on the screen.\",screwed with a closing screen appears that say is steve square.,'s the man who talks to another woman.,'s the same as the intro video.\n11327,anetv_JMIvoKPtxRA,17838,\"The video game begins and there are 3 characters against 1 character and they are wrestling in a rink performing numerous tricks like strangling, hitting, running into the character to make them fall, or picking them up and then slamming them down to the ground while the referee is standing in the corner. A new round begins with different characters wrestling and the referee tries to stop them but one of the characters\",\"The video game begins and there are 3 characters against 1 character and they are wrestling in a rink performing numerous tricks like strangling, hitting, running into the character to make them fall, or picking them up and then slamming them down to the ground while the referee is standing in the corner.\",A new round begins with different characters wrestling and the referee tries to stop them but one of the characters,gold,continues to dance with one another as they separate.,grabs the prize and the one gives a broad thumbs and bows.,picks the referee up and then slams him to the ground where he lays there for a few seconds.,falls out the ground.\n11328,lsmdc3069_THE_BOUNTY_HUNTER-4827,17549,\"She rides down a ramp. Now, in the hotel suite's bathroom, someone\",She rides down a ramp.,\"Now, in the hotel suite's bathroom, someone\",gold,awakens on the floor.,opens her office door and marches intently through the long shadowy foyer.,peers through a window at someone another holding her her feet.,returns with his camera.\n11329,lsmdc3069_THE_BOUNTY_HUNTER-4827,17568,\"In the passenger seat, someone wipes her eyes then rests her forehead on the back of her hand, hiding her face. Someone\",\"In the passenger seat, someone wipes her eyes then rests her forehead on the back of her hand, hiding her face.\",Someone,gold,\"strides over to someone, who is lying in the back of a car.\",sheepishly opens his door and takes his seat at the wheel.,\"leans out of the mailbox, his wide - eyed gaze fixed fixed on the clerk.\",yanks the cab off her feet.\n11330,lsmdc3069_THE_BOUNTY_HUNTER-4827,17562,\"Her lips tighten and she shakes her head, looking skyward. She\",\"Her lips tighten and she shakes her head, looking skyward.\",She,gold,grabs someone by the hair and touches it to her own cheek.,opens her mouth and rubs her eyes.,\"nods, pushes her away from the window, and takes a deep breath.\",claps a hand to her mouth.\n11331,lsmdc3069_THE_BOUNTY_HUNTER-4827,17552,\"Behind the wheel, someone eyes the two - inch red mark on his neck in the rear - view mirror then touches it and winces. Now, someone\",\"Behind the wheel, someone eyes the two - inch red mark on his neck in the rear - view mirror then touches it and winces.\",\"Now, someone\",gold,walks through trees near a mowing cart.,crawls onto a porch plinth.,struggles to pedal down a highway.,brings a cliff to his chest few yards away.\n11332,lsmdc3069_THE_BOUNTY_HUNTER-4827,17570,\"Now, someone leads an elderly man with fuzzy hair into the grungy bathroom. Someone\",\"Now, someone leads an elderly man with fuzzy hair into the grungy bathroom.\",Someone,gold,eyes the dog as he puts his braces on the counter.,tries to pull back his chair across the neighborhood.,pulls out a chili.,rests his leg on the toilet.\n11333,lsmdc3069_THE_BOUNTY_HUNTER-4827,17571,Someone rests his leg on the toilet. The man,Someone rests his leg on the toilet.,The man,gold,leaps over the floor and holds his restraints.,takes out a giant syringe.,lies asleep behind a back wall.,stares at as his shoulders sag as he lowers his head.\n11334,lsmdc3069_THE_BOUNTY_HUNTER-4827,17563,Someone brushes her hair out of her face then sobs into her hand. He,Someone brushes her hair out of her face then sobs into her hand.,He,gold,hits the elderly woman.,helps her with her feet.,grabs her hand and force him to lift him away.,\"shifts the car into park, gets out, and faces his ex - wife.\"\n11335,lsmdc3069_THE_BOUNTY_HUNTER-4827,17566,\"It reads, Cupid's Cabin and shows a picture of a bed and breakfast in a Victorian style mansion. He\",\"It reads, Cupid's Cabin and shows a picture of a bed and breakfast in a Victorian style mansion.\",He,gold,meets someone's malevolent gaze.,shuffles back alongside the car.,puts his hand on someone's neck.,finds another owner humanoid with a little boy.\n11336,lsmdc3069_THE_BOUNTY_HUNTER-4827,17564,\"Someone tugs on the door handle, which sticks, then gives. She\",\"Someone tugs on the door handle, which sticks, then gives.\",She,gold,reluctantly barrels into a heavyset car.,comes into a large clearing.,\"climbs down from the gutter jam, opens the door and closes it.\",climbs into the seat and slams the door shut.\n11337,lsmdc3069_THE_BOUNTY_HUNTER-4827,17554,\"Cringing, she leans wearily over the handlebars. Someone\",\"Cringing, she leans wearily over the handlebars.\",Someone,gold,spots the pedicab from a block behind and gives a vengeful smile.,sees her thugs on the dim table.,\"breaks free, drops to his knees and regards her in a square.\",swallow down the drink chewing.\n11338,lsmdc3069_THE_BOUNTY_HUNTER-4827,17569,\"He backs the car away from the pedicab, steers around it, and drives off. Now, someone\",\"He backs the car away from the pedicab, steers around it, and drives off.\",\"Now, someone\",gold,\"lies on a bath very tightly, on his stomach in the night.\",opens a door and opens it.,leads an elderly man with fuzzy hair into the grungy bathroom.,jogs in an armored truck.\n11339,lsmdc3069_THE_BOUNTY_HUNTER-4827,17560,A sedan passes them and she climbs off the bike. She,A sedan passes them and she climbs off the bike.,She,gold,climbs a barrier and throws them off.,\"grabs up her purse and glares at him, then stalks around to the passenger door and reaches for the handle.\",steps over to him.,\"gets out of the van, stands up, and moves toward the walking truck.\"\n11340,lsmdc3069_THE_BOUNTY_HUNTER-4827,17555,Someone spots the pedicab from a block behind and gives a vengeful smile. Someone,Someone spots the pedicab from a block behind and gives a vengeful smile.,Someone,gold,holds a wedding ring on his fingertips.,faces a security camera.,spots him and scowls.,\"looks down at the table, turns and looks at the painting.\"\n11341,lsmdc3069_THE_BOUNTY_HUNTER-4827,17551,\"Later, an aerial view shows his baby - blue Delta driving away from the Taj Mahal. Behind the wheel, someone\",\"Later, an aerial view shows his baby - blue Delta driving away from the Taj Mahal.\",\"Behind the wheel, someone\",gold,drives his car blades by.,\"watches someone walk back to the someone, who sits alone on the bench.\",eyes the two - inch red mark on his neck in the rear - view mirror then touches it and winces.,drives the biker ship and the flamethrower.\n11342,lsmdc3069_THE_BOUNTY_HUNTER-4827,17553,\"Now, someone struggles to pedal down a highway. Cringing, she\",\"Now, someone struggles to pedal down a highway.\",\"Cringing, she\",gold,leans wearily over the handlebars.,\"looks at the page, which still hopelessly in its mobile.\",gives a guitarist look.,finds no sign of anyone.\n11343,lsmdc3069_THE_BOUNTY_HUNTER-4827,17559,Someone stops inches behind her then scoots forward and bumps the pedicab again. A sedan passes them and she,Someone stops inches behind her then scoots forward and bumps the pedicab again.,A sedan passes them and she,gold,heads down a narrow trail toward an fascinated areas.,climbs off the bike.,peeks up her ledge.,heads straight for a desk.\n11344,lsmdc3069_THE_BOUNTY_HUNTER-4827,17558,Someone drives up close behind her then backs off. Someone,Someone drives up close behind her then backs off.,Someone,gold,strokes his friend's hair and kisses him softly on the lips.,shuffles off and someone shoves him through his sunroof and the other opens the gate.,suddenly charges and sits.,stops inches behind her then scoots forward and bumps the pedicab again.\n11345,lsmdc3069_THE_BOUNTY_HUNTER-4827,17567,\"He shuffles back alongside the car. In the passenger seat, someone\",He shuffles back alongside the car.,\"In the passenger seat, someone\",gold,\"wipes her eyes then rests her forehead on the back of her hand, hiding her face.\",\"smirks with another couple, riding up a hill in a down hill along with a flower.\",guides someone off the bus.,points the car gun at someone.\n11346,lsmdc3069_THE_BOUNTY_HUNTER-4827,17548,The teenager chases her on foot. She,The teenager chases her on foot.,She,gold,grabs someone by the collar.,rides down a ramp.,returns her gaze to someone.,turns to a distant someone.\n11347,lsmdc3069_THE_BOUNTY_HUNTER-4827,17561,\"As she reaches for the handle, the car lurches forward. Someone\",\"As she reaches for the handle, the car lurches forward.\",Someone,gold,gets off her horse and peers through an incline towards the maintenance lot.,smashes the driver's window onto someone.,\"winces, stifling tears, then stares off.\",joins someone with a sour tone.\n11348,lsmdc3069_THE_BOUNTY_HUNTER-4827,17556,He drives up and taps the back of the pedicab with his bumper. Someone,He drives up and taps the back of the pedicab with his bumper.,Someone,gold,pauses around and pushes the ball back down the lane.,accelerates and taps her again.,soon the host turns the phone off.,drives through the house while in the roadster.\n11349,lsmdc3069_THE_BOUNTY_HUNTER-4827,17565,She climbs into the seat and slams the door shut. Someone,She climbs into the seat and slams the door shut.,Someone,gold,knocks a glass against the glass.,stares at the night then takes out her white dress.,turns and stalks off as someone gives it to someone.,looks over his shoulder and spots a billboard in a field.\n11350,lsmdc3069_THE_BOUNTY_HUNTER-4827,17557,Several other vehicles speed past them. Someone,Several other vehicles speed past them.,Someone,gold,pops up in the rear of an ambulance.,sits at a desk holding an open book.,drives up close behind her then backs off.,saunters slowly past one of the clerks.\n11351,anetv_XkTWEDKtP1A,19747,A man named bob is running and does a long jump. He,A man named bob is running and does a long jump.,He,gold,continues to talk while he explains what she is doing.,goes back and forth performing with the croquet club.,does it again landing into some sand.,slides over the top then kicks it.\n11352,anetv_XkTWEDKtP1A,19749,He continues to do this run and jump again landing like a pro. Then another man named ralph,He continues to do this run and jump again landing like a pro.,Then another man named ralph,gold,is going to take his own turn next.,cuts back a second man talking and goes back into the channel trying to talk.,tries website appears and shows how to describe your workout process.,talks to the camera and showing more viewers about the race.\n11353,anetv_XkTWEDKtP1A,19748,He does it again landing into some sand. He,He does it again landing into some sand.,He,gold,reaches the top of the slope.,gets to the end of the driveway and starts painting after it.,left alone at the same time of time.,continues to do this run and jump again landing like a pro.\n11354,anetv_ejMpWeFZLec,7217,A girl walks into the center of a room with a hula hoop. She,A girl walks into the center of a room with a hula hoop.,She,gold,begins to hula hoop and build the instrument accompany her finger.,\"does several acts and stunts with the hoop, bringing her head and arms in and out.\",dives into a pool.,\"lifts the rope up, then returns to her next knee hoop and starts to do the baton routine.\"\n11355,lsmdc0029_The_Graduate-64264,9019,She is twirling the tassels. Someone,She is twirling the tassels.,Someone,gold,yanks off a finger from the strokes.,puts her arm over someone.,\"turns around, looks at the stripper and turns back.\",\"raises her head again, then notices someone's technique in front of him.\"\n11356,lsmdc0029_The_Graduate-64264,9018,She is down to a tasseled bra and g - string. She,She is down to a tasseled bra and g - string.,She,gold,twists the collar open and slides.,rings the controls as a white curtain hangs on it.,wears a blue whole waist dress as she sits down wearing her grinds cap.,is twirling the tassels.\n11357,lsmdc3039_JACK_AND_JILL-2490,3275,Someone waves at the crowd. Someone,Someone waves at the crowd.,Someone,gold,claps as he walks away.,spins into the lake.,joins someone on the sidelines.,keeps his gaze downward.\n11358,lsmdc3039_JACK_AND_JILL-2490,3274,A jumbo screen on the digital scoreboard shows a celebrity cam image of the two stars. Someone,A jumbo screen on the digital scoreboard shows a celebrity cam image of the two stars.,Someone,gold,assembles a flyer and windsurfer also demonstrates the oar showing what to do at a port.,\"is in a room on white steel and video with purple lunch stands, and instructs.\",waves at the crowd.,\"enters with two people, then performs a gymnastics routine on a climbing beam.\"\n11359,lsmdc3039_JACK_AND_JILL-2490,3273,Someone sits down beside someone. A jumbo screen on the digital scoreboard,Someone sits down beside someone.,A jumbo screen on the digital scoreboard,gold,\"reads, displays the new element.\",shows a celebrity cam image of the two stars.,reads and there's a brunette woman standing outside an apartment room.,shows a game blank.\n11360,lsmdc3039_JACK_AND_JILL-2490,3271,\"She stops and stares at two players. Across the court, he\",She stops and stares at two players.,\"Across the court, he\",gold,stares back at the floor.,stands right behind his eyes wide.,taps on someone's shoulder.,binds a book in his hand.\n11361,lsmdc3039_JACK_AND_JILL-2490,3270,\"Walking courtside with her brother, someone holds a giant stick of cotton candy. She\",\"Walking courtside with her brother, someone holds a giant stick of cotton candy.\",She,gold,\"returns her gaze to immaculate living room, which is in her lap.\",passes to someone and takes someone's hand from his mouth.,stops and stares at two players.,pauses to face the door leading her.\n11362,lsmdc3039_JACK_AND_JILL-2490,3272,\"Across the court, he taps on someone's shoulder. Someone\",\"Across the court, he taps on someone's shoulder.\",Someone,gold,jumps out of the stage.,turns and walks away.,sits down beside someone.,\"spots someone and joins him, shoving a cigarette in his mouth.\"\n11363,lsmdc3039_JACK_AND_JILL-2490,3276,\"The camera zooms in on his face, and his name flashes below it. Ignoring him, someone\",\"The camera zooms in on his face, and his name flashes below it.\",\"Ignoring him, someone\",gold,takes a long sip of his drink through a straw.,breathes the needle in.,\"steps forward, then catches up with a weave, walks to the car room and peers onto his back.\",supervises doing some model system's static equipment that makes him with his speed's contraptions.\n11364,lsmdc0012_Get_Shorty-53325,12303,\"Someone says nothing, sits down in one of the red leather chairs. Someone\",\"Someone says nothing, sits down in one of the red leather chairs.\",Someone,gold,\"smiles at him, does n't give up the script.\",\"casually placed his fingers on the table, in the effort to just feel the surface of his mind with a greenish red color.\",\"looks up, cutting the pages of the manuscript.\",reacts to the swelling torrent and squeezes his eyes shut with someone.\n11365,lsmdc3013_BURLESQUE-4549,17005,\"Onstage, someone slides down beaded strands forming a curtain. In a black bra and panties, she\",\"Onstage, someone slides down beaded strands forming a curtain.\",\"In a black bra and panties, she\",gold,steps over the framed drawings of the people on deck.,maintains an actress with her long auburn hair.,pulls the kitten's.,lands in a split.\n11366,lsmdc3013_BURLESQUE-4549,17002,\"She walks out among the tables. Collecting empty glasses, the ambitious girl\",She walks out among the tables.,\"Collecting empty glasses, the ambitious girl\",gold,peels out a spoonful of caviar.,starts taking drink orders.,smiles in his wheelchair.,watch his backup guests table.\n11367,lsmdc3013_BURLESQUE-4549,17000,\"Now, the young hopeful from Iowa sees the pink - haired waitress snubbing a customer. So she\",\"Now, the young hopeful from Iowa sees the pink - haired waitress snubbing a customer.\",So she,gold,doffs her brown - leather jacket and grabs an empty tray from the bar.,\"glances at someone, then tucks a small wad of cash into the car and pulls out the content.\",\"can see, someone can answer.\",goes to the fridge.\n11368,lsmdc3013_BURLESQUE-4549,16999,\"The eager woman slouches sadly. On her way out, she\",The eager woman slouches sadly.,\"On her way out, she\",gold,collides with the brunette in large sunglasses.,smiles as she strokes the wet curls start from her face.,opens her mouth and stabs up a landed head.,rubs her forehead then crouches.\n11369,lsmdc3013_BURLESQUE-4549,17001,So she doffs her brown - leather jacket and grabs an empty tray from the bar. She,So she doffs her brown - leather jacket and grabs an empty tray from the bar.,She,gold,pushes the railing across the tap.,walks out among the tables.,\"grabs her phone, and waits her a few minutes before noticing someone in the lobby.\",steps aside and fidgets on one white black mahogany book.\n11370,anetv_G71xFbDSSno,17152,Someone wipes his face all over with a cloth. The baby,Someone wipes his face all over with a cloth.,The baby,gold,\"slowly rises, meeting the mixture on the pillows, wet flower.\",shivers and shakes from the temperature of the rag.,drops to the ground as someone wrapping the scarf around someone's neck.,\"looks up at someone and watches patiently, as if to await some words on the reaches of a mirror.\"\n11371,anetv_G71xFbDSSno,17151,A baby is shown lying on a polka dog sheet. Someone,A baby is shown lying on a polka dog sheet.,Someone,gold,turns to teddy who puts his finger in the bag.,is talking and teaching her dog to start with the wedding lights.,wipes his face all over with a cloth.,eats the last of the sandwich out of a trash can.\n11372,anetv_hzpFVURhKwo,3502,A man and woman are inside a small interior room. They,A man and woman are inside a small interior room.,They,gold,'re inside a chinese room.,are walking to them slowly.,\"are using a ladder, and trying to hang a strip of wallpaper.\",are doing expression together.\n11373,anetv_hzpFVURhKwo,13070,A woman steps on a ladder and hangs paper on the ceiling. A man,A woman steps on a ladder and hangs paper on the ceiling.,A man,gold,stands next to her holding the paper.,throws an object above the wood.,pulls a spray case against a wall with shingles.,stands in front of an elliptical machine.\n11374,anetv_hzpFVURhKwo,3503,\"They are using a ladder, and trying to hang a strip of wallpaper. The woman\",\"They are using a ladder, and trying to hang a strip of wallpaper.\",The woman,gold,blows her hair then a cooling iron.,pulls a sheet of paper out of the covered paper and loosens the boxes.,use a brush to paint the wall with a paintbrush.,hangs the paper as the man holds on to the other end.\n11375,anetv_hzpFVURhKwo,13071,A man stands next to her holding the paper. She,A man stands next to her holding the paper.,She,gold,gets off the ladder and moves it to continue putting the paper on the ceiling.,throws it across the field to a window.,walks up and resumes her conversation.,is talking about what they are talking about.\n11376,lsmdc3059_SALT-29005,10629,Someone holds her palms together as he cups her hands in his. She,Someone holds her palms together as he cups her hands in his.,She,gold,pulls her helmet off her shoulders.,hurries toward the sidewalk.,touches someone's face.,locks eyes with him impassively.\n11377,lsmdc3059_SALT-29005,10630,She locks eyes with him impassively. An aerial view,She locks eyes with him impassively.,An aerial view,gold,shows the professor ship jutting up through the sea of gulls.,shows the lights of washington d. c. glowing around the dome of the capital building.,shows an marked orc standing above.,shows a big van with a shadowy figure.\n11378,anetv_3A26j50_awY,920,We see a track with people standing around. We,We see a track with people standing around.,We,gold,see the machine appear again.,see a man walking down a street into a pole.,see a man in the distance in front of each other.,see a man with a javelin run.\n11379,anetv_3A26j50_awY,923,A man in red and white runs down a track and performs a high jump. The camera,A man in red and white runs down a track and performs a high jump.,The camera,gold,cuts to one for the first time.,is lowered and covered by a hand.,goes to the table and lands in time.,moves back to the left and says the first time.\n11380,anetv_3A26j50_awY,921,We see a man with a javelin run. The man returns and we,We see a man with a javelin run.,The man returns and we,gold,see the first person kitesurfing.,see another javelin thrower with him.,see a game of soccer being played.,see the other players.\n11381,anetv_3A26j50_awY,922,The man returns and we see another javelin thrower with him. A man in red and white,The man returns and we see another javelin thrower with him.,A man in red and white,gold,swings simultaneously on his right.,starts to race on his left body.,runs down a track and performs a high jump.,kicks lands in the arena.\n11382,anetv_Jvxk68D3F2w,2880,A camera pans all around a paintball course and shows a closeup of a person speaking. Several clips,A camera pans all around a paintball course and shows a closeup of a person speaking.,Several clips,gold,are shown of people jumping as skate boards as well as walking onto the field.,are shown of people riding a bike along the water as well as shots of lake riding.,are seen of people riding riding bikes and walking along a large track together.,are seen of people running around the course and shooting paintball at one another.\n11383,anetv_Jvxk68D3F2w,2881,Several clips are seen of people running around the course and shooting paintball at one another. More close ups,Several clips are seen of people running around the course and shooting paintball at one another.,More close ups,gold,are shown of a gun as well as a man speaking to the camera and others socializing with one another.,are shown with people running while others watch on the side.,are shown of capture panning around the area.,are shown of the women playing volleyball.\n11384,anetv_q1yuDuO01tg,15565,The women start taking their clothes off and bungee jump together. They,The women start taking their clothes off and bungee jump together.,They,gold,gets the dumps from the water and starts singing.,are standing in the front of them as they jumps.,jump and does several flips in the air.,kiss and then jump and down.\n11385,anetv_q1yuDuO01tg,11931,Scenes of two of the women getting on a cable car and bungee jumping nearly naked are shown. The two women,Scenes of two of the women getting on a cable car and bungee jumping nearly naked are shown.,The two women,gold,are now also talking and eating food on a screen.,begin moving their recumbent bikes while the camera pans around.,start to get out of the car wash.,are lowered to a mat on the ground by a crew.\n11386,anetv_q1yuDuO01tg,11930,A cable car line is shown. Two women,A cable car line is shown.,Two women,gold,stand behind next to.,are interviewed by a third.,rip and clean off a car with enough pressure.,are going through the snow covered road and going down the slope.\n11387,anetv_q1yuDuO01tg,15564,A plant is shown and then women are interviewed and start laughing. The women,A plant is shown and then women are interviewed and start laughing.,The women,gold,begin to put down nearby buckets in the soapy water.,stick to a band while other kids watch in horror.,are then pictured and emerge of an enclosed home.,start taking their clothes off and bungee jump together.\n11388,anetv_RpgTxW7lYJM,7676,The individual moves out of the way to allow the camera to capture the completed image on its own. The image,The individual moves out of the way to allow the camera to capture the completed image on its own.,The image,gold,brightens as they enter and directly on the surface.,fades to a thank you text on white screen.,goes spinning on much into the athlete's face as he displays it.,is shown again and several images of the video.\n11389,anetv_RpgTxW7lYJM,7675,An individual's hand is shown drawing something on a piece of paper in sped up video. The individual,An individual's hand is shown drawing something on a piece of paper in sped up video.,The individual,gold,moves out of the way to allow the camera to capture the completed image on its own.,shows how to use the drill to the tool works where the individual works.,begins to file the wacker that's attempting to abstract it.,shows how to drop the zooms over the water before sliding it on and throwing it across the sink loudly.\n11390,anetv_RpgTxW7lYJM,16926,A right hand is shown doing various strokes on a white paper. As the person continues painting you,A right hand is shown doing various strokes on a white paper.,As the person continues painting you,gold,put the repeating on the rock paper doll.,can see the remnants of a woman's face being drawn.,\"can, the person uses an electric roller brush.\",encouraging directions to explore the video.\n11391,anetv_ZWlwKbuK2fM,11615,Six kids are having karate lesson while several spectators are watching them on the sideline. They,Six kids are having karate lesson while several spectators are watching them on the sideline.,They,gold,form a single line and started to execute hand & feet move back and forth.,continue to play and make instruments to the audience.,are going in circles while a person in their black shorts walks like a string on both sides of their boat.,\"kick the name off the screen all the way to the right, and then twirls back and forth with the crowd.\"\n11392,anetv_ZWlwKbuK2fM,9114,\"Then, the children practice kicking movements. A man\",\"Then, the children practice kicking movements.\",A man,gold,gapes at the young boy while the children run.,puts on to his mouth.,runs to stand on front the children.,stands at front the man and cuts the spear deeply.\n11393,anetv_ZWlwKbuK2fM,11616,\"They form a single line and started to execute hand & feet move back and forth. After the kicking move, the line breaks and the last two kids in line move further back and the grown man\",They form a single line and started to execute hand & feet move back and forth.,\"After the kicking move, the line breaks and the last two kids in line move further back and the grown man\",gold,is turning massive black balls all around the room as they ride up the steps and harness.,moves to the right without the rod.,move on the side next to them.,flies out of the water pit.\n11394,anetv_ZWlwKbuK2fM,11618,They proceed to there previous position and began to rearrange and face their respective partners. They,They proceed to there previous position and began to rearrange and face their respective partners.,They,gold,are fired by the sumo.,go to woody's garage and get back to their coworker.,arrange their chips and put them before finally placed into the position of their can.,bow their heads with each partner and duel while the two man sitting on the chair are watching them.\n11395,anetv_ZWlwKbuK2fM,11617,\"After the kicking move, the line breaks and the last two kids in line move further back and the grown man move on the side next to them. They\",\"After the kicking move, the line breaks and the last two kids in line move further back and the grown man move on the side next to them.\",They,gold,\"continue to make the other intricate as the man gets out until he lands, twice.\",proceed to there previous position and began to rearrange and face their respective partners.,\"watch the man take a turn, but he falls back slightly.\",\"say reappears and they continue to exercising in a hole together, turning on an ad.\"\n11396,anetv_RjZ7jJBE1Qw,6878,\"A different man and a toddler girl are now standing next to a pool and the man throws the toddler in and she struggles to swim and struggles catch her breath while floating on her back multiple times. The toddler finally swims to the stairs where a woman is waiting for her, she stands up, the woman tries to give her a high five but the toddler rather\",A different man and a toddler girl are now standing next to a pool and the man throws the toddler in and she struggles to swim and struggles catch her breath while floating on her back multiple times.,\"The toddler finally swims to the stairs where a woman is waiting for her, she stands up, the woman tries to give her a high five but the toddler rather\",gold,is passed by the beach by trying to catch one.,kicks her to the bottom very quickly.,be held for comfort.,misses in the water to get her picture top.\n11397,anetv_RjZ7jJBE1Qw,1395,\"A man stands on back a toddler on the border of a swimming pool. Then, the man\",A man stands on back a toddler on the border of a swimming pool.,\"Then, the man\",gold,raise the toddler by the hands and throw her to the water.,flips the ball down water shoreline.,plays and balances on the ice on the top of a small pool.,puts salt from his mouth and lifts it up in the water into clean water.\n11398,anetv_RjZ7jJBE1Qw,6877,\"A blonde man is squatting outdoors and talking next to his small tree that he touches, and the words on the screen say phoenixlongevityarts com jake mace. A different man and a toddler girl are now standing next to a pool and the man throws the toddler in and she\",\"A blonde man is squatting outdoors and talking next to his small tree that he touches, and the words on the screen say phoenixlongevityarts com jake mace.\",A different man and a toddler girl are now standing next to a pool and the man throws the toddler in and she,gold,is focused on another girl and a camera is represented by the spectators watching her.,begins walking up a well enough range that wanders to the edge of the pool.,shows off to the next room of the little girl in the pool and applauds to pick another ball at the same time.,struggles to swim and struggles catch her breath while floating on her back multiple times.\n11399,lsmdc3074_THE_ROOMMATE-4374,17730,She touches someone's hair. She,She touches someone's hair.,She,gold,gets up and hurries outside.,glances at her restrained friend.,\"looks quizzically down at her mother, who lies face down in a blanket.\",\"is still gazing toward the window, her eyes glistening.\"\n11400,lsmdc3074_THE_ROOMMATE-4374,17728,\"Someone draws closer, and finds the bedside lamp on and the comforter on the bed rumpled. She\",\"Someone draws closer, and finds the bedside lamp on and the comforter on the bed rumpled.\",She,gold,\"puts it on, and pulls away from someone.\",\"pushes it out of her mouth, steeling herself.\",opens the door wider and steps into the room.,checks her clock then raises it to her left right hand and interlaces his fingers.\n11401,lsmdc3074_THE_ROOMMATE-4374,17722,Someone waits with a faint smile. She,Someone waits with a faint smile.,She,gold,gets upstairs and starts up a helicopter.,\"calmly waves the gun at someone, then runs in.\",\"reaches toward the face, examining some movement.\",pauses in front of someone's apartment as she finds the door ajar.\n11402,lsmdc3074_THE_ROOMMATE-4374,17723,\"She pauses in front of someone's apartment as she finds the door ajar. Pushing the door all the way open, she\",She pauses in front of someone's apartment as she finds the door ajar.,\"Pushing the door all the way open, she\",gold,pauses and turns darts.,passes back towards a low shelf.,calls at this softly as it starts to move.,walks into the dark apartment.\n11403,lsmdc3074_THE_ROOMMATE-4374,17727,Its door hangs partially open as well. Someone,Its door hangs partially open as well.,Someone,gold,motions his way alongside follows.,enters the pantry room.,\"draws closer, and finds the bedside lamp on and the comforter on the bed rumpled.\",\"pauses outside, shuts the doors and hurries to the front door.\"\n11404,lsmdc3074_THE_ROOMMATE-4374,17721,\"At someone's posh apartment building, someone crosses the lobby. Someone\",\"At someone's posh apartment building, someone crosses the lobby.\",Someone,gold,runs by a different red car.,waits with a faint smile.,sleeps soundly atop a layered wafting knit cap.,walks up at the curb and raise his gun.\n11405,lsmdc3074_THE_ROOMMATE-4374,17729,She opens the door wider and steps into the room. Someone,She opens the door wider and steps into the room.,Someone,gold,\"sets the mop aside, walks into the reception room, switches off her lamp light.\",\"comes out into the hall, carrying a tray of coffees.\",sits next to her.,aims a revolver at her.\n11406,lsmdc3074_THE_ROOMMATE-4374,17724,\"Pushing the door all the way open, she walks into the dark apartment. As she heads down a hall, she\",\"Pushing the door all the way open, she walks into the dark apartment.\",\"As she heads down a hall, she\",gold,dials that it's now a real blood motel.,pulls her phone from her bag and checks it.,finds three books neatly painted on a pair of framed make - on the door.,flips through the stacking book.\n11407,lsmdc3074_THE_ROOMMATE-4374,17726,\"Turning a corner, someone narrows her eyes as she heads toward someone's bedroom. Its door\",\"Turning a corner, someone narrows her eyes as she heads toward someone's bedroom.\",Its door,gold,\"opens, revealing a half - naked woman in a pool.\",swings open in a silver flash.,\"slides shut behind her, shaking hand.\",hangs partially open as well.\n11408,lsmdc3074_THE_ROOMMATE-4374,17725,\"As she heads down a hall, she pulls her phone from her bag and checks it. Turning a corner, someone\",\"As she heads down a hall, she pulls her phone from her bag and checks it.\",\"Turning a corner, someone\",gold,peers through the gap at her phone.,narrows her eyes as she heads toward someone's bedroom.,\"spots someone, who touches her bangs with a zipped smile.\",opens a corner club with blinds.\n11409,anetv_lEqYTrzaHsc,14389,An intro leads into a boat full of people flying on the water. The camera,An intro leads into a boat full of people flying on the water.,The camera,gold,shows several shots of people riding down a river.,briefly pans down the hill and the people have excited together and play.,shows various angles of the boat moving along the water as well as close ups on the people on board.,shows the crowd sighs and smiling at the camera.\n11410,anetv__ao0UwSJHWA,3224,A man is seen sitting in a large gym while speaking to the camera and sitting on a medicine ball. The man then,A man is seen sitting in a large gym while speaking to the camera and sitting on a medicine ball.,The man then,gold,bends forward onto the ball while still speaking to the camera.,walks down the mountain holding a stick along the frame while still looking down at the camera and leaving the end.,begins moving his hands off and fourth at various people while him pushing on the back.,begins surfing and moving on the water.\n11411,anetv__ao0UwSJHWA,3225,The man then bends forward onto the ball while still speaking to the camera. The man,The man then bends forward onto the ball while still speaking to the camera.,The man,gold,continues to walk while the camera follows him.,moves himself around the pool while spinning his body around as well.,continues continuously around while allowing himself to dance to throw another ball.,continues to balance on the ball and sits himself up as well as catches a ball.\n11412,anetv_fD9JNH5FWCk,8796,The children chase the guy. The children,The children chase the guy.,The children,gold,sleep on the bed.,skate away from each other.,go to his kids.,lay on the lawn with the guy.\n11413,anetv_fD9JNH5FWCk,8793,The credits of a clip are shown. Children,The credits of a clip are shown.,Children,gold,return where they put an hole in their wood board.,see baseboards massage supplies placed.,flash's hand stands across.,are outside playing with hula hoops.\n11414,anetv_fD9JNH5FWCk,6412,A young child is seen hula hooping that leads into clips of more children hula hooping. A woman,A young child is seen hula hooping that leads into clips of more children hula hooping.,A woman,gold,is seen speaking to the camera while more kids around her play with hula hoops.,coming to her side and continues speaking to the camera.,is seen lifting her feet together while speaking to the camera as well as other people laughing.,watches the toddler and moves for another panning around her and trimming along the strings.\n11415,anetv_fD9JNH5FWCk,8794,Children are outside playing with hula hoops. A lady,Children are outside playing with hula hoops.,A lady,gold,walks into the box and hits something with her hand.,is standing on the lawn and speaking.,walks out to throw dart.,is dashed in front of them.\n11416,anetv_fD9JNH5FWCk,6413,A woman is seen speaking to the camera while more kids around her play with hula hoops. The kids,A woman is seen speaking to the camera while more kids around her play with hula hoops.,The kids,gold,continues playing while rope and smiling to the camera.,sit around the blades and continue to row on the stool.,continue to play around with the hula hoops showing adults playing as well.,continue dancing with one another while others play on the sides.\n11417,anetv_fD9JNH5FWCk,8795,A lady is standing on the lawn and speaking. A guy,A lady is standing on the lawn and speaking.,A guy,gold,is sitting in the toy bumper parked by the woman.,takes his body through a hula hoop.,holds up his hand and gives them a hug.,starts dancing in the playground.\n11418,anetv_y9bLCC26MGQ,12771,A perdon walks in the field carrying two long poles. The long jump performed by the man,A perdon walks in the field carrying two long poles.,The long jump performed by the man,gold,and some of the team plays the sidewalk.,is shown in slow motion.,who stands cheers one of the bleachers.,spins the ball's springing and he starts to cross the street.\n11419,anetv_y9bLCC26MGQ,12770,\"Then the man runs, skip and then jumps long over the sand box. A perdon\",\"Then the man runs, skip and then jumps long over the sand box.\",A perdon,gold,join the other side to steady the person who does the flip.,stands in front of the tree in the garage.,walks in the field carrying two long poles.,catches his eye while talking about it a quick amount of time.\n11420,anetv_y9bLCC26MGQ,3551,The other man then runs down the track and jumps into a sand pit. His jump,The other man then runs down the track and jumps into a sand pit.,His jump,gold,is shown again in slow motion.,is replayed in slow motion as he continues on.,is repeated again several times from different angles.,is shown again several more times in slow motion.\n11421,anetv_y9bLCC26MGQ,12769,A man stands on the start line of a track. Then the man,A man stands on the start line of a track.,Then the man,gold,speeds over a bar.,\"runs, skip and then jumps long over the sand box.\",flips the javelin off into the road and gets out of the car.,\"jumps off and runs, trying to reach the ground.\"\n11422,anetv_MjRsR_7ECi8,11456,A man kisses a woman on the head and then speaks to another woman. In the end a woman,A man kisses a woman on the head and then speaks to another woman.,In the end a woman,gold,starts and hugs the baby.,talks on a black screen.,is talking and ending alone.,is taking a drink from a glass.\n11423,anetv_MjRsR_7ECi8,16363,A man talks to a woman behind a glass wall. A woman,A man talks to a woman behind a glass wall.,A woman,gold,walks in the casino holding an umbrella.,takes a drink of something out of a cup.,walks up with weights and begins talking.,takes a drink then drinks some more.\n11424,anetv_MjRsR_7ECi8,16361,A man shows up with flowers at a woman's door. A man in a suit,A man shows up with flowers at a woman's door.,A man in a suit,gold,kisses a woman laying in a bed.,walks into frame.,arrives in while he lounges on the floor in a room.,speaks to a camera in a room.\n11425,anetv_MjRsR_7ECi8,11455,A woman is seen opening the door to a man holding flowers and falling. A man,A woman is seen opening the door to a man holding flowers and falling.,A man,gold,rides down a slide and sits down.,walks out and begins painting brown leaves with a child.,kisses a woman on the head and then speaks to another woman.,cleans up a wooden window.\n11426,anetv_MjRsR_7ECi8,16362,A man in a suit kisses a woman laying in a bed. A man,A man in a suit kisses a woman laying in a bed.,A man,gold,gives in and walks on with a tight rope.,and a woman stand on the dance floor and dance.,talks to a woman behind a glass wall.,peels a snow off his surfboard.\n11427,anetv_TPu-vPWJtIA,10147,Men in the side of pool talk. Man in yellow,Men in the side of pool talk.,Man in yellow,gold,talks to the camera.,walks over and stands over the pool with three cans.,walks out to a bookshelf s feet along a pool.,falls off the flat screen.\n11428,anetv_TPu-vPWJtIA,10146,Women synchronize dance in the pool. Announcers,Women synchronize dance in the pool.,Announcers,gold,talk to the camera.,are in bikini or scuba diving.,music plays around them.,shoot with a white flag.\n11429,anetv_nVk5nIE-6bM,5914,\"There are 4 young people dressed in military attire carrying a red and white banner in a parade. They are then followed by a group of dancing girls that are all dressed in the same outfits that are red, white and black, but some are wearing white tops and the others\",There are 4 young people dressed in military attire carrying a red and white banner in a parade.,\"They are then followed by a group of dancing girls that are all dressed in the same outfits that are red, white and black, but some are wearing white tops and the others\",gold,\"are shown how to drum them at last and all of them are very well together, slowed after.\",are wearing red tops.,climbed and stand on the sides.,are varying jumping on.\n11430,anetv_nVk5nIE-6bM,5913,There are a lot of people gathered on the street to watch a parade or to be in the parade. There,There are a lot of people gathered on the street to watch a parade or to be in the parade.,There,gold,\"are the runners walking down the track, many children get out and start forward.\",are 4 young people dressed in military attire carrying a red and white banner in a parade.,is people in a large room with one man behind it.,people plays in a living room.\n11431,anetv_nVk5nIE-6bM,5915,\"They are then followed by a group of dancing girls that are all dressed in the same outfits that are red, white and black, but some are wearing white tops and the others are wearing red tops. They are then followed by a very large band that are playing different instruments and they are all in sync and one woman\",\"They are then followed by a group of dancing girls that are all dressed in the same outfits that are red, white and black, but some are wearing white tops and the others are wearing red tops.\",They are then followed by a very large band that are playing different instruments and they are all in sync and one woman,gold,is making frisbees and baton as they continue her routine.,is enjoying it so much that she begins to dance while the band plays on.,\"gives replays to a woman before fading out with the voices, laughing by showing the other aspects of her life.\",is holding a stick in her hand and almost fighting the new one around the woman's hair as the two continues together.\n11432,lsmdc0010_Frau_Ohne_Gewissen-51071,12300,\"Activity of secretaries going in and out of doors, etc. Someone\",\"Activity of secretaries going in and out of doors, etc.\",Someone,gold,stops too and has her briefcase in her hands.,enters his own office.,watches her with horror.,sits with someone on the phone receiver.\n11433,lsmdc0010_Frau_Ohne_Gewissen-51071,12304,He looks down at some mail. He,He looks down at some mail.,He,gold,\"reads it, sits down and leafs through his desk calendar.\",weighs some copy of his book enjoying his lawyer.,removes the phone from his ear and wipes off the newspaper.,stubs out someone's cigarette.\n11434,lsmdc0010_Frau_Ohne_Gewissen-51071,12308,He takes his hat off. He,He takes his hat off.,He,gold,\"watches on the beach, holding a gun and giving her a high five.\",\"opens the door, revealing inside the tips - to - the - separate office.\",stands there with a little smile.,holds a huge swig in his mouth.\n11435,lsmdc0010_Frau_Ohne_Gewissen-51071,12302,\"Someone, a salesman, sits at one of the desks, filling out a report. Someone\",\"Someone, a salesman, sits at one of the desks, filling out a report.\",Someone,gold,is talking about his own business.,\"enters, goes to his own desk.\",does n't know how to spot someone.,inspects them on his distant list.\n11436,lsmdc0010_Frau_Ohne_Gewissen-51071,12307,\"Outside is someone, wearing a sport coat, flannel slacks. He\",\"Outside is someone, wearing a sport coat, flannel slacks.\",He,gold,moves his head to someone.,admits the imaginary woman.,takes his hat off.,trails inadvertently just out of him as he pointed to one of the other tables before coming off to the balcony overlooking the room.\n11437,lsmdc0010_Frau_Ohne_Gewissen-51071,12303,\"Someone enters, goes to his own desk. He\",\"Someone enters, goes to his own desk.\",He,gold,\"turns over with a piece of tape, and holds the glock 19 in his hand.\",\"picks up a record, grabs it and starts to cross it.\",\"looks around - then gets put things in the parlor, continuing through scene.\",looks down at some mail.\n11438,lsmdc0010_Frau_Ohne_Gewissen-51071,12301,\"Someone enters his own office. Someone, a salesman,\",Someone enters his own office.,\"Someone, a salesman,\",gold,sits behind a train.,\"sits at one of the desks, filling out a report.\",\"is looking down at the center of his desk, waiting for him to realize he is not staggering away.\",is looking across at the russians on the left of the building.\n11439,lsmdc0010_Frau_Ohne_Gewissen-51071,12309,\"She heads toward a low tea table which stands in front of the davenport, with tall glasses, ice cubes, lemon, a pot of tea, etc. She\",\"She heads toward a low tea table which stands in front of the davenport, with tall glasses, ice cubes, lemon, a pot of tea, etc.\",She,gold,sits at the coffee table.,pours herself a glass of tea.,\"has been looking adoringly at someone, who is contemplatively singing, also sobbing.\",returns to the restaurant.\n11440,lsmdc0010_Frau_Ohne_Gewissen-51071,12305,\"He reads it, sits down and leafs through his desk calendar. The someone's feet and ankles as she comes down the stairs, her high heels\",\"He reads it, sits down and leafs through his desk calendar.\",\"The someone's feet and ankles as she comes down the stairs, her high heels\",gold,relax on her bed.,clicking on the tiles.,sticking to her back.,throwing a star down too.\n11441,lsmdc0010_Frau_Ohne_Gewissen-51071,12299,\"He walks out, still grinning. Someone\",\"He walks out, still grinning.\",Someone,gold,wears a helmet and large helmet.,\"is in motion, facing the piano.\",comes out of keys' office and walks back along the balcony.,grabs someone by the hand.\n11442,anetv_EHXpUlacN88,5013,He bends down and begins picking up the other man. He finally,He bends down and begins picking up the other man.,He finally,gold,does the splits on the roof.,throws the man down onto the bed.,lifts it over his head and looks around the area.,shows how to start a cutting machine and turn back to stop it.\n11443,anetv_EHXpUlacN88,5012,A man is seen standing with one man in a bedroom. He,A man is seen standing with one man in a bedroom.,He,gold,bends down and begins picking up the other man.,then walks taking the car and dipping snow into a bucket.,picks up balls while walking away and the man giving chase.,speaks while holding onto his hands as he runs back and forth.\n11444,anetv_RlC3n0VSGOU,8453,An intro leads into clips of people riding surfboards on the water as well as jet skis. The camera,An intro leads into clips of people riding surfboards on the water as well as jet skis.,The camera,gold,pans around the area and continues to show more clips of people surfing.,continues in behind a city area while an driver driving board watches in the distance.,then pans to various people lifting and jumping.,follows the man as the man approaches the water shore.\n11445,anetv_RlC3n0VSGOU,8454,The camera pans around the area and continues to show more clips of people surfing. A close up of a surf board,The camera pans around the area and continues to show more clips of people surfing.,A close up of a surf board,gold,is shown followed by several people playing water polo.,is shown followed by people posing with a woman that go back for a flute park.,is shown followed by many more people surfing on the water.,is shown followed by the person running around and over from the water.\n11446,anetv_9Rd8PpfRNmY,16402,A child paints her toenails with white nail polish on front a little child. A person,A child paints her toenails with white nail polish on front a little child.,A person,gold,places paint on a pumpkin painting this fingernail.,rotate the nail on the pumpkin that is covered with blue polish.,pass in the yard.,enters the room and walk on front the children.\n11447,anetv_9Rd8PpfRNmY,16404,\"Then, the child turns to listen somebody for a second and continues painting her toenails. After, a hand\",\"Then, the child turns to listen somebody for a second and continues painting her toenails.\",\"After, a hand\",gold,show how to use the burner any sharpened chair.,finishes painting the painted fence to bars laying down on it.,playing appear on a bed with purple colors and paws in the shape of the red runs razor.,touches the back of the child twice who turns and then continues painting her toenails.\n11448,anetv_9Rd8PpfRNmY,16403,\"A person enters the room and walk on front the children. Then, the child\",A person enters the room and walk on front the children.,\"Then, the child\",gold,turns to listen somebody for a second and continues painting her toenails.,puts two tanks in place.,dances with and carry other toys as a man and adult runs.,vacuums under the door.\n11449,anetv_AuVL_nkYXw0,4288,A man is seen speaking to the camera while standing in front of exercise equipment. He,A man is seen speaking to the camera while standing in front of exercise equipment.,He,gold,places the objects around a large area and begins to exercise using tubes.,continues moving back and fourth on jet equipment and moving into position.,lifts up weights up to his chest and look off into the distance.,continues speaking and leads into clips of a person's feet moving on the machine.\n11450,anetv_AuVL_nkYXw0,4289,He continues speaking and leads into clips of a person's feet moving on the machine. The man the uses the machine continuously while,He continues speaking and leads into clips of a person's feet moving on the machine.,The man the uses the machine continuously while,gold,adjusting his camera as well as talking.,pointing to his body and showing off his legs.,throwing the object down in slow motion.,continuously speaking back and fourth.\n11451,anetv_mI7Hwk_AF-M,17679,Women are in a big green field playing hurling. woman,Women are in a big green field playing hurling.,woman,gold,is showing stunts on a green court.,is running backwards on a field holding a net watching as they go and runs down the river.,is in a small green court practicing hurling shots.,is standing in the field to a field.\n11452,anetv_vrMWYB0UuGM,995,One of the individuals recovers the ball and serves. The same individual,One of the individuals recovers the ball and serves.,The same individual,gold,recovers the ball and serves again.,serves the batter with a ball.,comes down the sideline while gesturing at the opposing players.,serves the ball on the goal twice.\n11453,anetv_vrMWYB0UuGM,994,Two individuals play squash together in an indoor court. One of the individuals,Two individuals play squash together in an indoor court.,One of the individuals,gold,recovers the ball and serves.,is shown engaging in the lacrosse game.,sits outdoors and throws a more disc.,holds the stick to watch it.\n11454,anetv_puGw7gu96AM,10846,He lassos and ropes a calf. He then,He lassos and ropes a calf.,He then,gold,jumps down and ties the calf.,rolls over to pick on the child.,\"ties his legs, ties around the calf and talks.\",begins running a calf off the horse before climbing onto the horse.\n11455,anetv_puGw7gu96AM,10845,A man comes out of a gate on a horse. He,A man comes out of a gate on a horse.,He,gold,lifts a person by the man's neck and guide her around to a horse.,lassos and ropes a calf.,runs a hand over a brush then jumps out and throws it along the fence with a lasso.,jumps off the horse and walks away to the tree.\n11456,lsmdc1007_Spider-Man1-75032,346,\"Someone stands by the gravestone, sobbing. Suddenly, as if struck by a memory, she\",\"Someone stands by the gravestone, sobbing.\",\"Suddenly, as if struck by a memory, she\",gold,pulls herself out with ease of laughing.,can't go back.,moves her hand up to her lips.,\"stoops up, pushing him up and down.\"\n11457,lsmdc1007_Spider-Man1-75032,347,\"Suddenly, as if struck by a memory, she moves her hand up to her lips. She\",\"Suddenly, as if struck by a memory, she moves her hand up to her lips.\",She,gold,turns around sharply and looks at the departing someone.,\"runs towards the pool floor, and comes back to floor.\",pretends to style his hair.,\"spills herself onto someone's back, lightly spinning her lips.\"\n11458,lsmdc1007_Spider-Man1-75032,345,Someone sadly turns from her and slowly walks away. Someone,Someone sadly turns from her and slowly walks away.,Someone,gold,peeks out of the bedroom.,sees someone and steps over to someone.,\"stands by the gravestone, sobbing.\",furrows his brow and steps up.\n11459,lsmdc1007_Spider-Man1-75032,344,\"When she closes her lids, the tears roll down her cheeks. Someone\",\"When she closes her lids, the tears roll down her cheeks.\",Someone,gold,is in the sand.,embraces her and hurls her head at him.,sadly turns from her and slowly walks away.,watches as he tucks in.\n11460,anetv_WzAGE-xKDpw,7460,\"He put his feet on a holder, and put the strap on. He\",\"He put his feet on a holder, and put the strap on.\",He,gold,\"pull the bar, at the same time pushed his legs.\",slow takes a large metal mat from his left hand and positions the syringe.,\"hesitates, then wraps the bag around his shoulder and they pull out.\",hits several parts of the panel and ambles into the bag ignoring someone.\n11461,anetv_WzAGE-xKDpw,7461,\"He pull the bar, at the same time pushed his legs. He\",\"He pull the bar, at the same time pushed his legs.\",He,gold,serves both himself onto the bar while he does.,repeat the process several times.,continues to do a haircut while doing a gymnastics performance with them and shows everything straight.,tries to free the elastic blades.\n11462,anetv_qeYKXF8tsp4,5507,The game is stopped as a girl with a blue jersey grabs the ball in her hand and puts it in play. As the the girls chase the ball around at the other side of the field a whistle is blown and the game,The game is stopped as a girl with a blue jersey grabs the ball in her hand and puts it in play.,As the the girls chase the ball around at the other side of the field a whistle is blown and the game,gold,is on hold as the girls go their positions on the field.,begins to get out of the way.,returns with the crowd cheer around them as he watches her perform.,continues switching and moves across the field toward the camera.\n11463,anetv_qeYKXF8tsp4,5508,As the the girls chase the ball around at the other side of the field a whistle is blown and the game is on hold as the girls go their positions on the field. The game starts again and girls,As the the girls chase the ball around at the other side of the field a whistle is blown and the game is on hold as the girls go their positions on the field.,The game starts again and girls,gold,slide down a long dock together to celebrate happily.,are running to the other side of the field.,jump when the ball comes in to thrust a curling pin across the field.,run on the beach and play a game of sand during scurrying raketball tournament.\n11464,anetv_qeYKXF8tsp4,5506,Two teams of girls are on a field playing field hockey. The game,Two teams of girls are on a field playing field hockey.,The game,gold,tips on in the circle and several team run hurling.,is being played in front of a single player.,is on part of the track.,is stopped as a girl with a blue jersey grabs the ball in her hand and puts it in play.\n11465,anetv_qeYKXF8tsp4,12225,A player returns to the opposite side. The teams,A player returns to the opposite side.,The teams,gold,play a game of dodge ball polo.,continue playing with their fingers in their mouths.,follow polo he pretends to score a goal.,runs back towards the ball.\n11466,anetv_qeYKXF8tsp4,12224,Young women play field hockey on an outdoor school field with a stadium of onlookers. A player,Young women play field hockey on an outdoor school field with a stadium of onlookers.,A player,gold,talks among the players.,returns to the opposite side.,is in the soccer rink pulling the puck.,walks over behind the net.\n11467,anetv_ciIaZrpHqgs,1145,The camera then shows handicap individuals playing a game where they are sitting in a wheelchair pushing puck like objects with handles. A man,The camera then shows handicap individuals playing a game where they are sitting in a wheelchair pushing puck like objects with handles.,A man,gold,sits on the top of the stairs as if speaking and leads a crowd of people riding wild.,walks on a line with his arms to the camera and kisses one.,is then shown and begins talking describing the game that is taking place.,skates out to join in paintball.\n11468,anetv_w4CiGbHLTBg,9829,The brush of the paint brush is being shown on a person's finger. They,The brush of the paint brush is being shown on a person's finger.,They,gold,lay out of nail polish that disappear.,are painting with the brush.,holds the flowers on their hands.,\"are interviewed as they stand, trying to enter the camera.\"\n11469,anetv_w4CiGbHLTBg,9830,They are painting with the brush. They,They are painting with the brush.,They,gold,calls to his daughter.,are painting white tile and nails with orange colors.,fill a turnstile and glaze back and forth in the dark room.,are dropping thinner into the paint with a dropper.\n11470,anetv_w4CiGbHLTBg,9833,The airplane is being painted a gold color. A green paint brush,The airplane is being painted a gold color.,A green paint brush,gold,trimmed over the white canvas.,is being shown and turned around.,appears in a clearing.,\"is shown behind her, black and white.\"\n11471,anetv_w4CiGbHLTBg,9831,They are dropping thinner into the paint with a dropper. There,They are dropping thinner into the paint with a dropper.,There,gold,are light and throw on a county field.,is a model airplane sitting on the table.,is the ceiling of their car.,they are carved together.\n11472,anetv_w4CiGbHLTBg,9832,There is a model airplane sitting on the table. The airplane,There is a model airplane sitting on the table.,The airplane,gold,is being painted a gold color.,is out of the green.,hurtles forward through the windows.,secures around her shoulders and gets up.\n11473,anetv_45WfFPM5yvw,12319,\"He begins sailing on a surfboard, holding on tightly as he speeds up. He then\",\"He begins sailing on a surfboard, holding on tightly as he speeds up.\",He then,gold,takes a handlebars attached to the bike and begins sailing on his body.,\"stops in the water, leaning onto his side.\",begins to hold of water skis for a long time.,jumps up to get a leash from several other people.\n11474,anetv_45WfFPM5yvw,12318,\"He gets on a parasailer, and gets into the water. He\",\"He gets on a parasailer, and gets into the water.\",He,gold,catches up to the cook.,steps to the top of the rope and starts climbing.,\"begins sailing on a surfboard, holding on tightly as he speeds up.\",begins only in the water with his feet.\n11475,anetv_W3KCFRADoX8,10709,A woman is sitting in a room talking. There,A woman is sitting in a room talking.,There,gold,is holding a black guitar with his hands.,stretches to lift her shoes and some they do next and the woman is on pointe.,walks through to a shop and begins brushing it.,is a white cat on the bed behind her.\n11476,anetv_W3KCFRADoX8,10711,She starts braiding her hair to the side. She,She starts braiding her hair to the side.,She,gold,continues talking and blows a kiss to the camera.,finishes her hair and continues to effort it while braiding right through her braid.,starts braiding her hair and ends by brushing her hair under the water.,is standing on the beach.\n11477,anetv_W3KCFRADoX8,10710,There is a white cat on the bed behind her. She,There is a white cat on the bed behind her.,She,gold,is taking possession of it.,starts braiding her hair to the side.,keeps her hand on her hip.,is on a recumbent bed.\n11478,lsmdc0003_CASABLANCA-46883,2320,Someone begins to play a number. He,Someone begins to play a number.,He,gold,\"is nervous, waiting for anything.\",\"pushes his way through the crowd, snatches someone down and drags him down the flight.\",hands someone a new ensemble as he steps inside.,holds his upper hand.\n11479,lsmdc0003_CASABLANCA-46883,2319,He sits down and is ready to play. Someone,He sits down and is ready to play.,Someone,gold,\"opens a bottle of mouthwash, lets it from his mouth.\",\"gazes at him, a disgusted expression on his face.\",begins to play a number.,\"is in mid - athlete, carrying another belt blade behind him.\"\n11480,anetv_KdqoLhoXjS8,5487,A grooming room is shown and three people are washing different dogs. Other rooms are shown and the dogs,A grooming room is shown and three people are washing different dogs.,Other rooms are shown and the dogs,gold,are continuing in the move and rubbing rags along different side stools.,are loading the larger bucket a lot of theirs grooming dogs.,start dipping and pouring up cloth on a table.,continue being groomed and laying down on the ground waiting for their turn.\n11481,anetv_m-B1tlnywNY,16407,A group of cheerleaders run on stage with and get set in their spots to start their performance. They,A group of cheerleaders run on stage with and get set in their spots to start their performance.,They,gold,\"girls twirl the ball around, dancing elegantly for the crowd.\",jump over each sequence over standing as they stand dancing and seem to be walking away.,begin with the middle girls being flipped in the air and then the girls run on cheering and doing flips.,\"zoom around the area, twirling and doing summersault.\"\n11482,anetv_m-B1tlnywNY,16908,\"They form three small circles and throw three of them upward. They start their routine, the cheerleaders fall twice but they\",They form three small circles and throw three of them upward.,\"They start their routine, the cheerleaders fall twice but they\",gold,continue skating together in the crowd.,can't stop them.,jump at the batons.,continue dancing and cheering.\n11483,anetv_m-B1tlnywNY,16409,\"They stay in sync throughout the entire cheer, looking great and hitting all the moves with grace. They\",\"They stay in sync throughout the entire cheer, looking great and hitting all the moves with grace.\",They,gold,\"is floating above an underwater water, hundreds are lining up as they are about to move their guns.\",\"are at a young park attempting the winding, the manner of the other people who do.\",\"end the routine with a huge triangle of girl being held up by with three rows of women, top middle and bottom.\",\"do a park before to jump, then they jump back and walk off as they dance on the water.\"\n11484,anetv_m-B1tlnywNY,16907,A group of cheerleaders run in the center of the room while two of them are holding a japan banner. They,A group of cheerleaders run in the center of the room while two of them are holding a japan banner.,They,gold,enter the trophy and move into a bus where the young wrestler runs.,jump down and put left hands inside the air.,split with a team member playing on the front floor.,form three small circles and throw three of them upward.\n11485,anetv_m-B1tlnywNY,16408,They begin with the middle girls being flipped in the air and then the girls run on cheering and doing flips. They,They begin with the middle girls being flipped in the air and then the girls run on cheering and doing flips.,They,gold,is lifted onto the beam and is smiling to the audience.,play the men from the group and throwing the ball back and forth.,\"stay in sync throughout the entire cheer, looking great and hitting all the moves with grace.\",continue to do routine again and spin around and around with different students jumping in and out of them.\n11486,lsmdc3084_TOOTH_FAIRY-40152,11948,The winged man extends his arms straight by his sides and flies over us. Someone,The winged man extends his arms straight by his sides and flies over us.,Someone,gold,\"stands there, gasping.\",lowers the pins into someone's hand to shield his eyes.,observes like an ever - thick stream.,\"grins, tilting his head back to watch.\"\n11487,lsmdc3084_TOOTH_FAIRY-40152,11921,Someone repeats the encouraging gesture and gives a nod. The athlete,Someone repeats the encouraging gesture and gives a nod.,The athlete,gold,jumps up and catches his pace for a second time before raising one finger at his side.,arches her back slightly then smiles.,rips out his throat and over someone.,\"looks away, his chest heaving.\"\n11488,lsmdc3084_TOOTH_FAIRY-40152,11913,\"Straightening out of a slouch, someone grabs his helmet. In the stands, the nhl hopeful, someone,\",\"Straightening out of a slouch, someone grabs his helmet.\",\"In the stands, the nhl hopeful, someone,\",gold,watches anxiously as someone heads onto the ice.,passes the boy to the indian.,finds curlers from a magazine.,is about to hit a punch in the crotch with his lackey's clone.\n11489,lsmdc3084_TOOTH_FAIRY-40152,11923,\"Stopping short, he intercepts the puck. Someone\",\"Stopping short, he intercepts the puck.\",Someone,gold,stares slack - jawed.,paddles his struggling wife off the boat and rides beside the boy.,throws the man at him.,creeps over to someone's bedside.\n11490,lsmdc3084_TOOTH_FAIRY-40152,11962,\"Rolling over, someone scowls and removes his ear buds. He\",\"Rolling over, someone scowls and removes his ear buds.\",He,gold,holds an overcoat over his head.,awakes and stands up in his arms.,turns away from his visitor.,folds his father's face then rolls his eyes.\n11491,lsmdc3084_TOOTH_FAIRY-40152,11966,\"Crouching beneath the bed, he takes out his wand. Someone\",\"Crouching beneath the bed, he takes out his wand.\",Someone,gold,is sitting at the top of the stairs as someone's lifeboat gently shifts atop the land - sandy road.,\"looks up at the little crystal ring, where she writes on her wall.\",\"shuts his eyes, shakes his head, and mutters a silent wish.\",\"proceeds to tip the executives out, then takes a sip.\"\n11492,lsmdc3084_TOOTH_FAIRY-40152,11910,An opposing player blocks someone as he tries to weave around. The puck,An opposing player blocks someone as he tries to weave around.,The puck,gold,returns and crumbles down the stone tunnel to shoot again.,roll out of his body.,bounces off the net's frame.,falls from his hands.\n11493,lsmdc3084_TOOTH_FAIRY-40152,11949,\"Someone grins, tilting his head back to watch. Someone's teammates and fans\",\"Someone grins, tilting his head back to watch.\",Someone's teammates and fans,gold,shake their proud hands as they leave.,get to their feet.,put their hands up in the air.,come up behind someone.\n11494,lsmdc3084_TOOTH_FAIRY-40152,11957,Someone beams fondly at it. The winged man,Someone beams fondly at it.,The winged man,gold,\"leans forward, resting his elbows the side of someone's' bed as he gazes tenderly at her.\",blinks but drops his head.,crawls out under lingerie.,grabs the young boy.\n11495,lsmdc3084_TOOTH_FAIRY-40152,11956,He removes a tiny envelope sealed with a smiley face sticker. Someone,He removes a tiny envelope sealed with a smiley face sticker.,Someone,gold,follows someone's cell gaze.,beams fondly at it.,shows the scythe widened in silver clips.,takes the note boxes from someone's briefcase.\n11496,lsmdc3084_TOOTH_FAIRY-40152,11933,Someone reaches the center line with his teammates and exhales through pursed lips. Someone,Someone reaches the center line with his teammates and exhales through pursed lips.,Someone,gold,fixes her heartbroken gaze.,gets to his feet and marches out outside the verandah.,mentions his urge to lick his lobe.,spots someone by the bench tapping his watch.\n11497,lsmdc3084_TOOTH_FAIRY-40152,11924,Someone stares slack - jawed. The defender,Someone stares slack - jawed.,The defender,gold,watches his reflection.,\"lands with the strong glare of the sporting field deep in the green swirl of dementors, the reverse still adjusts their grip.\",replayed to the second set.,smacks him with his stick.\n11498,lsmdc3084_TOOTH_FAIRY-40152,11944,\"He skates a broad, graceful arc around the rink. Someone\",\"He skates a broad, graceful arc around the rink.\",Someone,gold,makes another turn and gathers speed.,steps from striking a dead duck.,leans over a table and looks off in disbelief.,jumps up and down from the stage.\n11499,lsmdc3084_TOOTH_FAIRY-40152,11919,Someone's hopeless gaze sweeps over the ice rink. He,Someone's hopeless gaze sweeps over the ice rink.,He,gold,gently shakes someone's hand again almost grins.,spots someone perched on a goal's crossbar.,furiously saves her through the office.,turns on the lamp.\n11500,lsmdc3084_TOOTH_FAIRY-40152,11925,\"The defender smacks him with his stick. Leaping, someone\",The defender smacks him with his stick.,\"Leaping, someone\",gold,\"takes one swipe at someone, who drinks from the sand.\",tumbles down the long lane.,smashes his face on a rock and kicks it.,flings the puck with his stick.\n11501,lsmdc3084_TOOTH_FAIRY-40152,11926,\"Leaping, someone flings the puck with his stick. He\",\"Leaping, someone flings the puck with his stick.\",He,gold,spies someone charging into the hut.,lands on his stomach and slides.,nods with his hands in his pockets.,steps toward it with a final kick.\n11502,lsmdc3084_TOOTH_FAIRY-40152,11908,\"At a game, a ref drops the puck. Two players\",\"At a game, a ref drops the puck.\",Two players,gold,paddle one and kick another man up to a goal.,step onto the side of the court and race from celebrating and retrieve the ball back into the net.,crash into each other.,spin and run on the field kicking a ball rapidly between the players and spectators by the groups.\n11503,lsmdc3084_TOOTH_FAIRY-40152,11946,\"Beside them, someone looks on proudly. In slow motion, someone's wings give a powerful flap and his skates\",\"Beside them, someone looks on proudly.\",\"In slow motion, someone's wings give a powerful flap and his skates\",gold,form as someone races over to someone.,passes over their heads.,lift off the ice.,move across the train.\n11504,lsmdc3084_TOOTH_FAIRY-40152,11927,He lands on his stomach and slides. The puck,He lands on his stomach and slides.,The puck,gold,falls on the table and stops.,flies into the net.,lies on the ground.,falls sideways as far as he can.\n11505,lsmdc3084_TOOTH_FAIRY-40152,11955,Someone's hand reaches under her pillow. He,Someone's hand reaches under her pillow.,He,gold,removes a tiny envelope sealed with a smiley face sticker.,clutches someone in her arms.,grabs someone's penis.,takes off his hat and glares at someone.\n11506,lsmdc3084_TOOTH_FAIRY-40152,11967,\"Someone shuts his eyes, shakes his head, and mutters a silent wish. Opening his eyes, he\",\"Someone shuts his eyes, shakes his head, and mutters a silent wish.\",\"Opening his eyes, he\",gold,flourishes the wand and sparkling light trails from its tip.,finds a stunned someone's sad face.,\"whirls to his right, never looking at their linked hands.\",\"finds an empty desk couch, exposing the tip of his thumb.\"\n11507,lsmdc3084_TOOTH_FAIRY-40152,11953,Someone swivels the gun as it shoots a thick jet of amnesia dust. As someone,Someone swivels the gun as it shoots a thick jet of amnesia dust.,As someone,gold,gains on the hummers someone runs the unseen unit through a buck.,fires a flash of light from the darkened corner his face grown.,sleeps soundly in her bed.,\"stares, a white dog throws the grappling hook over someone's approaching ship.\"\n11508,lsmdc3084_TOOTH_FAIRY-40152,11931,\"Someone gives a crooked smile and pumps his fist. With a warm smirk, someone\",Someone gives a crooked smile and pumps his fist.,\"With a warm smirk, someone\",gold,sits back on the bench.,smiles a little annoyed.,stares at his sober reflection.,climbs down a sidewalk to a bar.\n11509,lsmdc3084_TOOTH_FAIRY-40152,11920,As the discouraged athlete meets his gaze. Someone,As the discouraged athlete meets his gaze.,Someone,gold,stands beside the wall in his cell box.,swims some very cold water to some patrons.,repeats the encouraging gesture and gives a nod.,shoots forward a bow.\n11510,lsmdc3084_TOOTH_FAIRY-40152,11954,As someone sleeps soundly in her bed. Someone's hand,As someone sleeps soundly in her bed.,Someone's hand,gold,shakes someone's hand.,goes inside her head.,gently gently caressing someone's head and tracking her cheek.,reaches under her pillow.\n11511,lsmdc3084_TOOTH_FAIRY-40152,11940,\"Someone drops his stick, shakes off his gloves, and removes his helmet. His brow lifted, he\",\"Someone drops his stick, shakes off his gloves, and removes his helmet.\",\"His brow lifted, he\",gold,scoops up a pair of clear overalls and cap.,blinks heavily and sips his drink.,eyes the people filling the stands all around him.,finds a leather gun sitting on the side of his desk.\n11512,lsmdc3084_TOOTH_FAIRY-40152,11960,\"Taking a breath, someone tucks his wings out of sight. He\",\"Taking a breath, someone tucks his wings out of sight.\",He,gold,\"notices someone sitting in a chair with his pistol at his chest, hangs it up in front of him.\",collects his briefcase into the bin and puts it on his desk.,\"exhales bracing, then taps the boy's elbow.\",wraps his magazine around it.\n11513,lsmdc3084_TOOTH_FAIRY-40152,11970,\"As someone grins, someone joins them. Passing someone, someone\",\"As someone grins, someone joins them.\",\"Passing someone, someone\",gold,pauses and gives him a kiss.,meanders back into the water.,leads someone onto the stage.,wears a jeweled medal.\n11514,lsmdc3084_TOOTH_FAIRY-40152,11945,Someone makes another turn and gathers speed. He smiles at his benched teammates as he passes and they,Someone makes another turn and gathers speed.,He smiles at his benched teammates as he passes and they,gold,walk to another locked gate.,respond with slack - jawed stares.,both heft a dirt path to the base.,climb out of the corner.\n11515,lsmdc3084_TOOTH_FAIRY-40152,11947,\"In slow motion, someone's wings give a powerful flap and his skates lift off the ice. The winged man\",\"In slow motion, someone's wings give a powerful flap and his skates lift off the ice.\",The winged man,gold,ducks under two glasses.,\"actions his opponent hard, pulling his hands up.\",crawls on his stomach and swings forward into the air.,extends his arms straight by his sides and flies over us.\n11516,lsmdc3084_TOOTH_FAIRY-40152,11928,The puck flies into the net. His teammates cheer and someone's dad,The puck flies into the net.,His teammates cheer and someone's dad,gold,\"rises, hits someone's sword.\",takes the long shot.,hits someone who lowers his gaze to one of the fleeing friends.,lifts the boy in his arms.\n11517,lsmdc3084_TOOTH_FAIRY-40152,11930,\"Their coach folds his arms, shakes his head, and allows a smile. Someone\",\"Their coach folds his arms, shakes his head, and allows a smile.\",Someone,gold,smooths someone's hair off the back of his head.,stands and raises his arms.,stands and hugs him at his feet.,\"stands at the piano, singing.\"\n11518,lsmdc3084_TOOTH_FAIRY-40152,11968,\"Opening his eyes, he flourishes the wand and sparkling light trails from its tip. Someone\",\"Opening his eyes, he flourishes the wand and sparkling light trails from its tip.\",Someone,gold,looks around and smells its contents.,faces his peaceful partner.,eyes his handiwork and grins.,continues to sweep through the rubble which reveals an arrangement of sheets stacked around him.\n11519,lsmdc3084_TOOTH_FAIRY-40152,11911,The puck bounces off the net's frame. An opponent,The puck bounces off the net's frame.,An opponent,gold,\"appears, causing a doctor to get to the ground.\",dives into his shoulder.,bashes someone in the back.,knocks the football hard.\n11520,lsmdc3084_TOOTH_FAIRY-40152,11950,\"Someone's teammates and fans get to their feet. In the stands, someone\",Someone's teammates and fans get to their feet.,\"In the stands, someone\",gold,rushes to the bully who dabs his face with gear.,\"lies sleeping on a silver sheet, his face troubled.\",stands on his chair.,sits on a stone bench.\n11521,lsmdc3084_TOOTH_FAIRY-40152,11929,\"As the fans whoop, someone and another teammate shout joyfully. Their coach\",\"As the fans whoop, someone and another teammate shout joyfully.\",Their coach,gold,is in drama behind them.,\"folds his arms, shakes his head, and allows a smile.\",sounds the singer arguing with them.,opens and the three of them get up from the room.\n11522,lsmdc3084_TOOTH_FAIRY-40152,11934,Someone spots someone by the bench tapping his watch. As the athlete,Someone spots someone by the bench tapping his watch.,As the athlete,gold,\"raise his outstretched hands, someone faces someone staring ahead.\",\"stares, the case worker stubbornly points at his timepiece.\",\"gets up from the official's desk, he kicks his stomach.\",\"arrives, a young fiance pumps a disc.\"\n11523,lsmdc3084_TOOTH_FAIRY-40152,11918,His teammates pound the wall with their gloved hands. Someone's hopeless gaze,His teammates pound the wall with their gloved hands.,Someone's hopeless gaze,gold,drifts into the outside of a bejeweled wedding ensemble.,sweeps over the ice rink.,hits someone in the crotch.,\"stays about, her face a heated footboard.\"\n11524,lsmdc3084_TOOTH_FAIRY-40152,11964,\"Blinking tearfully, he rolls over and props himself up on his elbows. Someone\",\"Blinking tearfully, he rolls over and props himself up on his elbows.\",Someone,gold,sits at a table at the end of the bedside table.,inspects his befuddled owner.,\"shifts his sober gaze, nods, then raises a finger.\",\"returns her stunned gaze, then gives him a nod.\"\n11525,lsmdc3084_TOOTH_FAIRY-40152,11941,\"His brow lifted, he eyes the people filling the stands all around him. Someone\",\"His brow lifted, he eyes the people filling the stands all around him.\",Someone,gold,yields a stoic shrug and faces his case worker.,whirls and gathers the room book.,takes a key from the medicine cabinet.,unbuttons his jacket and slaps them away on his skyscraper.\n11526,lsmdc3084_TOOTH_FAIRY-40152,11965,\"Someone shifts his sober gaze, nods, then raises a finger. Crouching beneath the bed, he\",\"Someone shifts his sober gaze, nods, then raises a finger.\",\"Crouching beneath the bed, he\",gold,pushes up the bureau and writes it down.,takes out his wand.,uses his son's fingers to trace his rhythm.,pries off the skin off his face.\n11527,lsmdc3084_TOOTH_FAIRY-40152,11909,Two players crash into each other. An opposing player,Two players crash into each other.,An opposing player,gold,hits a ball in the green team head.,dives into another goal as the motorboat smashes it with his hand.,blocks someone as he tries to weave around.,in referee holds out his own hands.\n11528,lsmdc3084_TOOTH_FAIRY-40152,11937,The case worker's lips curl upward in a smile. His coach and teammates,The case worker's lips curl upward in a smile.,His coach and teammates,gold,give saws out for themselves.,stare wide - eyed.,\"join in with someone, who pushes.\",enjoy him in as the americans celebrate with an official quilt.\n11529,lsmdc3084_TOOTH_FAIRY-40152,11917,\"At the Ice Wolves' bench, the coach shouts impatiently. His teammates\",\"At the Ice Wolves' bench, the coach shouts impatiently.\",His teammates,gold,quickly leads someone across the jungle.,descend from the desks as they approach.,pump his fists and raised over his fists.,pound the wall with their gloved hands.\n11530,lsmdc3084_TOOTH_FAIRY-40152,11938,\"His coach and teammates stare wide - eyed. In the stands, someone\",His coach and teammates stare wide - eyed.,\"In the stands, someone\",gold,blinks at his favorite player.,watches anxiously as the pew is pushed down and someone gets from their seat.,stares at the cash boxes.,leans back and flexes one leg.\n11531,lsmdc3084_TOOTH_FAIRY-40152,11969,Someone eyes his handiwork and grins. Someone,Someone eyes his handiwork and grins.,Someone,gold,sizes up someone's outfit.,\"rides the horse along the trail, collecting a backpack.\",notices the stranger hurrying towards him.,makes the signature roll.\n11532,lsmdc3084_TOOTH_FAIRY-40152,11936,Someone gives a patient shrug. The case worker's lips,Someone gives a patient shrug.,The case worker's lips,gold,curl as he falls on his back.,gives a gentle look.,curl into an imaginary smirk.,curl upward in a smile.\n11533,lsmdc3084_TOOTH_FAIRY-40152,11951,\"In the stands, someone stands on his chair. From overhead, we\",\"In the stands, someone stands on his chair.\",\"From overhead, we\",gold,see someone snapping a different slice of apple pie with his hand.,watch someone ascend toward us with a wide - eyed smile.,view the overhead screen only to see him through a diving gaze.,notice the wet women coming down the tower staircase.\n11534,lsmdc3084_TOOTH_FAIRY-40152,11961,\"He exhales bracing, then taps the boy's elbow. Rolling over, someone\",\"He exhales bracing, then taps the boy's elbow.\",\"Rolling over, someone\",gold,notices her small jaws sticking out of his mouth.,continues to wander with the baby.,scowls and removes his ear buds.,\"drinks, then picks up his cellphone and takes a seat.\"\n11535,lsmdc3084_TOOTH_FAIRY-40152,11943,Someone flashes a self - conscious smirk. He,Someone flashes a self - conscious smirk.,He,gold,stares blankly at himself.,\"skates a broad, graceful arc around the rink.\",looks out the window of ames.,\"winces, his lips parting.\"\n11536,lsmdc3084_TOOTH_FAIRY-40152,11942,Someone yields a stoic shrug and faces his case worker. Someone,Someone yields a stoic shrug and faces his case worker.,Someone,gold,flashes a self - conscious smirk.,quickly shifts his stunned gaze to his frightened face.,shifts her weary gaze.,eyeballs the pretty brunette.\n11537,lsmdc3084_TOOTH_FAIRY-40152,11952,Someone rides out atop a zamboni mounted with a sleek gleaming cannon. Someone,Someone rides out atop a zamboni mounted with a sleek gleaming cannon.,Someone,gold,looks at a box of chocolates erupts on the corner of her mouth.,swivels the gun as it shoots a thick jet of amnesia dust.,turns from a stone jetty and attacks a banker in an army uniform.,rips out her skirt.\n11538,lsmdc3084_TOOTH_FAIRY-40152,11912,An opponent bashes someone in the back. Someone,An opponent bashes someone in the back.,Someone,gold,dives after someone and rolls on fearfully.,writhes face down on the ice.,joins one of the gypsies wearing red kicks.,leans back and then kisses someone's face.\n11539,lsmdc3084_TOOTH_FAIRY-40152,11915,His rivals bang their sticks. Someone wearily,His rivals bang their sticks.,Someone wearily,gold,pushes himself up onto all fours.,drops the bomb down.,joins her frustrated look and turns.,wakes to his elbows on a thrusting.\n11540,lsmdc3084_TOOTH_FAIRY-40152,11963,\"Someone shuts his eyes and bites his lip. Blinking tearfully, he\",Someone shuts his eyes and bites his lip.,\"Blinking tearfully, he\",gold,rolls over and props himself up on his elbows.,glances over his shoulder at each other.,finds her gaze tearful gently from it.,\"beams, he helps him squarely on the back of his head.\"\n11541,anetv_4IC1_C_dtvk,12837,The men laugh with one another as the man continues to play. He,The men laugh with one another as the man continues to play.,He,gold,picks up a change and is conducting.,continues to push the boy around the balls as well as throwing him to the camera.,plays the drum over and over while the others watch in amazement.,continues to do the demonstrations on the host.\n11542,anetv_4IC1_C_dtvk,447,Another person steps in to play drums while others are seen playing instruments from behind. The group,Another person steps in to play drums while others are seen playing instruments from behind.,The group,gold,continues playing around on the mat while talking to the camera and playing instruments.,zooms in on people's ears as the people make strum while the man continues to change the music.,continue playing and ends by walking away while a mic follows in the background.,continues playing with one another as the camera pans around them playing.\n11543,anetv_4IC1_C_dtvk,12836,A person is seen playing the drums while others watch on the side. The men,A person is seen playing the drums while others watch on the side.,The men,gold,continue spinning around in circles while laughing to one another.,laugh with one another as the man continues to play.,continue playing the game with one another and end by bowing.,continue dancing together turning one another and end by walking away.\n11544,anetv_4IC1_C_dtvk,446,Two people are seen sitting in a dark room playing a drum set. Another person,Two people are seen sitting in a dark room playing a drum set.,Another person,gold,comes along and stands up and shakes hands with one another.,steps in to play drums while others are seen playing instruments from behind.,is seen walking down the sidewalk and laughing with one another.,plays in front of a group and the person continues playing.\n11545,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33918,462,Now someone rides her motorcycle over a bridge as a train passes underneath. A detective,Now someone rides her motorcycle over a bridge as a train passes underneath.,A detective,gold,hangs up his phone.,takes in her cell phone.,follows someone through a big open door into an bank.,leads someone down the street.\n11546,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33918,463,A detective hangs up his phone. Someone,A detective hangs up his phone.,Someone,gold,follows him into a file room.,\"holds her phone out, then steps back.\",takes a business card out of his jacket.,smiles at his cell.\n11547,anetv_qCtoh8hxjOA,2981,A person is seen sitting a top a slide and begins riding down the slide. She,A person is seen sitting a top a slide and begins riding down the slide.,She,gold,meets another person at the bottom while laughing to the camera and another person running in.,is then seen moving back and fourth along the end while others watch on the side.,continues riding around with the dog on behind him while they run with the dog on the leash.,is shown of people riding in the desert and a woman walking around her and walking around.\n11548,lsmdc3002_30_MINUTES_OR_LESS-993,12959,Its headlights go dim and someone steps out. Someone,Its headlights go dim and someone steps out.,Someone,gold,exits the van in his mask.,hits from someone's car with his wipers and gets into a suv in the cab.,is outside trying to pull on her sweater.,pulls up a book on her desk and nods.\n11549,lsmdc3002_30_MINUTES_OR_LESS-993,12961,A buckle adorned with a smiley face sticker releases four straps. Someone,A buckle adorned with a smiley face sticker releases four straps.,Someone,gold,slowly unzips the vest from top to bottom then slides it off.,\"jumps into the dirt, pulls her away from the wrecked car and guides the large wiggle to her leg.\",approach a stately exterior lit house.,'s head sweeps across the dusty top.\n11550,lsmdc3002_30_MINUTES_OR_LESS-993,12954,Someone sits in the passenger seat while someone grabs the loot and gets behind the wheel. The Mustang,Someone sits in the passenger seat while someone grabs the loot and gets behind the wheel.,The Mustang,gold,pulls out of the empty lot and drives off past a few warehouses.,looks out through the clouds.,rolls past and then crashes back on.,\"boat begins to fix on a tree in its trunk, and the couple reaches second food towards the child's pet.\"\n11551,lsmdc3002_30_MINUTES_OR_LESS-993,12958,Someone runs down a path strewn with garbage. Now our view,Someone runs down a path strewn with garbage.,Now our view,gold,rises from a heap of crushed cars to reveal the mustang arriving in the scrapyard.,sweeps down an ornamental stone floored.,\"passes several rainy island, still looming around the sleek.\",fills an old woman's bedroom floor.\n11552,lsmdc3002_30_MINUTES_OR_LESS-993,12957,Someone steps out and the Mustang continues on down the dirt road. Someone,Someone steps out and the Mustang continues on down the dirt road.,Someone,gold,drives someone down the darkened road.,runs down a path strewn with garbage.,shoots through a window.,follows and pulls the hood up to someone.\n11553,lsmdc3002_30_MINUTES_OR_LESS-993,12962,Someone slowly unzips the vest from top to bottom then slides it off. As someone sets the vest aside someone,Someone slowly unzips the vest from top to bottom then slides it off.,As someone sets the vest aside someone,gold,breaks a completely conscious gaze.,starts packing his necklace and shakes it completely.,grabs the feather - sized balloon.,claps his hands overhead.\n11554,lsmdc3002_30_MINUTES_OR_LESS-993,12960,Someone ditches his jacket then picks the bag back up. Someone,Someone ditches his jacket then picks the bag back up.,Someone,gold,\"does an entourage - one - high - sized stumbling over the ground, his cell held on by only pairs of clean black leather\",enters the code into a keypad on the wired vest.,lifts the nears to a stairway labeled with vicious horns.,climbs a ladder and gets on a small platform suspended from its support platforms.\n11555,anetv_iCkDtX_mTII,9061,He pulls a bar in front of him and starts working out. He,He pulls a bar in front of him and starts working out.,He,gold,puts a sandwich on his lips.,catches himself at the bar and jumps again.,\"is running, and his legs wrapped around the side on the road.\",drops the bar and finishes.\n11556,anetv_iCkDtX_mTII,9060,A man is sitting on an exercise machine. He,A man is sitting on an exercise machine.,He,gold,begins welding a piece of clothing with a welding machine.,positions a pan on top of the handles.,is using a bicycle to do crunches.,pulls a bar in front of him and starts working out.\n11557,lsmdc0020_Raising_Arizona-57162,9712,\"Someone is wearily entering after a long day at work, clutching his lunchpail. Someone\",\"Someone is wearily entering after a long day at work, clutching his lunchpail.\",Someone,gold,takes the tupperware box from his pocket and opens it and drives along.,\"flies into frame and leaps into his arms, covering him with kisses.\",\"goes past a thick hook over the garden, mossy barn full of fields, flowers and droopy flowers and bushes.\",\"closes his window and heads around it, on the front porch of the cottage.\"\n11558,lsmdc0020_Raising_Arizona-57162,9713,\"Someone flies into frame and leaps into his arms, covering him with kisses. A squad car, its siren wailing,\",\"Someone flies into frame and leaps into his arms, covering him with kisses.\",\"A squad car, its siren wailing,\",gold,kicks up dust as it roars into the foreground.,gives both a flower and hug.,walks toward the car.,comes to a stop in the open of people.\n11559,lsmdc0020_Raising_Arizona-57162,9708,The amber is turning to a more neutral dusky light as the sun has set. People,The amber is turning to a more neutral dusky light as the sun has set.,People,gold,continue to stare at the point where it disappeared.,kayak in the music inside the white tent.,is very bleakly.,is beyond mount doom.\n11560,lsmdc0020_Raising_Arizona-57162,9704,Someone sits in a lawn chair in front of the trailer. Both,Someone sits in a lawn chair in front of the trailer.,Both,gold,\"with his cauldron on his arms, he takes a drink out of his cup.\",\"are wearing sunglasses, looking at the setting sun.\",slightly with mischievous flips waitresses the stuff he notices the group of them.,men watching the house through blinds.\n11561,lsmdc0020_Raising_Arizona-57162,9703,Someone is scowling at his paycheck. Someone,Someone is scowling at his paycheck.,Someone,gold,is first on his tabletop where he is superimposed up to the young man.,sits in a lawn chair in front of the trailer.,\"holds up the box, motioning for someone to make it.\",\"knocks the bar against someone's room, pouring herself against the desk.\"\n11562,lsmdc0020_Raising_Arizona-57162,9715,People are seated on folding chairs facing an agent's desk. Someone,People are seated on folding chairs facing an agent's desk.,Someone,gold,\"is hit on the shoulder, as someone climbs down.\",wears a sport coat over his hawaiian shirt.,\"stands close up, the switched on - hand on his feet.\",puts some money on someone's desk and opens the drugs.\n11563,lsmdc0020_Raising_Arizona-57162,9705,\"The scene is suffused with a warm yellow light. As the sun sets, the light\",The scene is suffused with a warm yellow light.,\"As the sun sets, the light\",gold,flares again six inches of face.,comes again and starts walking across the lawn.,is turning from yellow to amber.,switch - down someone.\n11564,lsmdc0020_Raising_Arizona-57162,9709,People continue to stare at the point where it disappeared. The dusk,People continue to stare at the point where it disappeared.,The dusk,gold,\"is blowing, still blowing from behind them in the night.\",falls on in the man's face.,is slipping away into darkness.,is growing in the sky.\n11565,lsmdc0020_Raising_Arizona-57162,9716,Someone wears a sport coat over his Hawaiian shirt. Someone,Someone wears a sport coat over his Hawaiian shirt.,Someone,gold,hands them to someone.,ties the laces up.,is in her dress blues.,\"stands behind them, watching tattered eagles.\"\n11566,lsmdc0020_Raising_Arizona-57162,9707,\"People watch, their heads following its slow downward arc. The amber\",\"People watch, their heads following its slow downward arc.\",The amber,gold,lights flare into them.,ocean of a vast restored shelter remains displayed.,is turning to a more neutral dusky light as the sun has set.,eyes as eyes and electricity inserting appear still underwater.\n11567,lsmdc3075_THE_SITTER-35018,6642,Someone reaches a locked chain linked fence. He,Someone reaches a locked chain linked fence.,He,gold,flies out of the room and aims the socket at someone.,slides on a bridge.,\"glances around, then kicks the chain link finding a section disconnected.\",\"guides it to the maximilian's enclosure, where a snatcher in his thirties stretches out his arms.\"\n11568,anetv_3ZUy7h-dN38,9031,A man wearing a black hat plays guitar for the camera to see. He,A man wearing a black hat plays guitar for the camera to see.,He,gold,continues strumming his fingers and moving his hands around the instrument until the song ends as well as the video.,removes the drums and turns it off.,is wearing a red shirt and plays the drums in a gym.,starts to slide the harmonica away from his hand.\n11569,anetv_AOBkrb8yYS4,6373,A close up of a ball is shown followed by a person hitting the ball in several locations. The man,A close up of a ball is shown followed by a person hitting the ball in several locations.,The man,gold,runs down the lane many times while the camera captures him from all angles.,continues hitting a ball in the audience while the man walks through the area starts firing the ball.,continues running around while the camera zooms out.,continues to demonstrate how to hit the ball in various angles as well as kneeling on the ground to shoot.\n11570,anetv_IuY073Pr4E4,8745,The man hangs from mounted bar type devices in the playground. The man,The man hangs from mounted bar type devices in the playground.,The man,gold,dismounts and walks back to the camera.,does dips and doors on the bike and walks off.,climbs the empty stairs.,stands in the riding bumper car and continues doing crunches.\n11571,anetv_IuY073Pr4E4,8744,The man walks towards a children's playground. The man,The man walks towards a children's playground.,The man,gold,talks to monkey tile on the boards.,hangs from mounted bar type devices in the playground.,turns on the light around the climbing floors.,gets up and walks off.\n11572,anetv_IuY073Pr4E4,8743,A man talks to the camera. The man,A man talks to the camera.,The man,gold,chases a javelin ball and throws a javelin over his shoulder.,walks towards a children's playground.,drives around and walks up front and enjoys a meal with a group of man wearing shirt.,blows a whistle on the screen for a moment then blows smoke blows.\n11573,anetv_3lkZPJES45Q,5653,A drummer shows the components of a double base drum pedal. The drummer then,A drummer shows the components of a double base drum pedal.,The drummer then,gold,place his feet on the pedals and demonstrates playing the double pedal process.,pretends to start to play while the others.,\"explains the violin musicians, how to do with the drums using a stick to continue the song.\",switch their knob and the person stops exercising.\n11574,anetv_3lkZPJES45Q,3389,\"The person then bends down and places his hand on the drum. After, the man\",The person then bends down and places his hand on the drum.,\"After, the man\",gold,solves the rubix cube cube.,begins moving both his feet rapidly as the stick begins to hit up against the bass drum.,demonstrates advanced on a guitar for a shirt.,finishes his instrument and stops and throws off his hands.\n11575,anetv_3lkZPJES45Q,5654,The drummer then place his feet on the pedals and demonstrates playing the double pedal process. The drummer,The drummer then place his feet on the pedals and demonstrates playing the double pedal process.,The drummer,gold,speeds up the foot pedal action on the double pedal and plays different beats.,continues to celebrated with the same song.,\"works a little shows, only more spectators just set able to slow away.\",strum the drum that was drumming loudly.\n11576,anetv_3lkZPJES45Q,3388,A bass drum is on the ground and a person swivels around in the chair and begins to kick the bass drum. The person then,A bass drum is on the ground and a person swivels around in the chair and begins to kick the bass drum.,The person then,gold,bends down and places his hand on the drum.,plays the violin close down and changes to the music.,comes in and continues to move alone until the drums sliced and each man waits on the stage.,hits the harmonica wearing black helmets and spins the blind around several times.\n11577,lsmdc1039_The_Queen-88018,4153,Someone slowly enters the room and a glass door shuts behind him. Someone,Someone slowly enters the room and a glass door shuts behind him.,Someone,gold,stands before a casket and waits a moment.,turns up the volume.,fixes his piercing gaze to the floor.,walks out the door.\n11578,lsmdc1039_The_Queen-88018,4155,\"He then walks around to the head of the casket. Seen from outside the room, the view of someone\",He then walks around to the head of the casket.,\"Seen from outside the room, the view of someone\",gold,'s face make his face normal.,comes from the forest into someone's dormitory.,is obscured by the frame of the glass door.,'s giant reveal again in the distance of someone's face.\n11579,lsmdc1039_The_Queen-88018,4154,Someone stands before a casket and waits a moment. He then,Someone stands before a casket and waits a moment.,He then,gold,finds the urinal there.,\"goes down the stairs, pointedly around the bus.\",walks around to the head of the casket.,rolls back into his chair then withdraws his hand and pins it away.\n11580,lsmdc1039_The_Queen-88018,4152,\"Striding down a corridor, someone suddenly stops outside a room. He\",\"Striding down a corridor, someone suddenly stops outside a room.\",He,gold,\"takes out the flame, which quickly applies light.\",pauses for a moment before entering.,climbs a pudgy man and pulls up a revolver.,clears its shelves and has a hand on it.\n11581,lsmdc1039_The_Queen-88018,4156,\"Seen from outside the room, the view of someone is obscured by the frame of the glass door. A priest\",\"Seen from outside the room, the view of someone is obscured by the frame of the glass door.\",A priest,gold,can be glimpsed speaking while someone has his hand over his mouth and looks in grief at the casket before him.,\"shines up the crest of a mountain then, just sprinting along the side.\",is working in a prison train and is being thrown a man inside furniture blocks.,\"stands at the end of the hall, gazing through the dense air.\"\n11582,anetv_yBL1hCKmX7s,14821,He runs down the track and throws a javelin onto the field in front of him. People,He runs down the track and throws a javelin onto the field in front of him.,People,gold,are playing on a beach.,are standing next to the field.,are running down the road towards the men which also are held behind.,jump out of the fence and spin it around as far as they can.\n11583,anetv_yBL1hCKmX7s,3922,He starts running and throws a javelin at a dirt area. Several other people,He starts running and throws a javelin at a dirt area.,Several other people,gold,stand at speed and cheer.,are riding as they go through the blades of dirt.,are standing in the background.,skate from various side on the playground and many other runners.\n11584,anetv_yBL1hCKmX7s,14820,A man is standing on a track. He,A man is standing on a track.,He,gold,throws a ball down a lane.,is holding a stick and playing hopscotch.,is clapping to a crowd of balloons and jump roping.,runs down the track and throws a javelin onto the field in front of him.\n11585,anetv_Flh-37A4HWY,10781,A person holds a coffee mug in a pool of koi. The koi,A person holds a coffee mug in a pool of koi.,The koi,gold,swim towards the coffee mug.,shapes the youtube and puts discs on the pack.,shuffles the accordion into the piano.,cuts the cake and finishes to peel the lemon.\n11586,lsmdc0011_Gandhi-51794,19485,\"Someone turns back, extemporizing rather lamely. He\",\"Someone turns back, extemporizing rather lamely.\",He,gold,\"is a rich and lastly building, advertised in odd intervals.\",is facing the crowd.,turns to seated woman.,walks cautiously toward the channel.\n11587,lsmdc0011_Gandhi-51794,19484,It is the end of the speech. He,It is the end of the speech.,He,gold,\"starts to write, like this is a pretty fact.\",lies on the road among the troops.,looks at the crowd.,stops to sew and explain.\n11588,lsmdc0011_Gandhi-51794,19478,\"He glances with a little apprehension at the police, then takes his notes from his pocket and moves to the front of the fire. He\",\"He glances with a little apprehension at the police, then takes his notes from his pocket and moves to the front of the fire.\",He,gold,stands in place with the woman in his arm.,\"acknowledges the applause, then others, in semi - circle, takes a couple of steps toward him.\",holds up his hand for attention.,removes his coat and heads for the door.\n11589,lsmdc0011_Gandhi-51794,19491,\"Someone is at the fire. For a second, his eyes lock with the sergeant's - - and then nervously, he\",Someone is at the fire.,\"For a second, his eyes lock with the sergeant's - - and then nervously, he\",gold,seems even more nervous than his cohorts.,mixes it with the juice.,\"snaps his fingers in the corners of his mouth, clutching his chest.\",\"takes a card and drops it in the wire basket, and another.\"\n11590,lsmdc0011_Gandhi-51794,19480,\"It is flat and dull, like someone reading a speech to themselves, and those in the crowd who had hesitated before wandering off shrug and continue on their way. This last has come more firmly, and he\",\"It is flat and dull, like someone reading a speech to themselves, and those in the crowd who had hesitated before wandering off shrug and continue on their way.\",\"This last has come more firmly, and he\",gold,\"lifts his head to the crowd, as though expecting a reaction.\",is there waiting for someone to reach the stairs when someone comes downstairs.,quietly lays his head down as well.,speeds at a inching collision.\n11591,lsmdc0011_Gandhi-51794,19493,\"Someone, on his hands and knees, blood trickling from his abraded cheek, has picked up a card from the ground and he leans forward apprehensively, his eyes fearfully on the sergeant, but he drops it defiantly in the basket. Someone\",\"Someone, on his hands and knees, blood trickling from his abraded cheek, has picked up a card from the ground and he leans forward apprehensively, his eyes fearfully on the sergeant, but he drops it defiantly in the basket.\",Someone,gold,pays for a check.,slams the bottle down and sits.,sags to the ground.,\"comes to his starting point, piercing his ear.\"\n11592,lsmdc0011_Gandhi-51794,19482,\"At last someone has got a reaction, but the dropping of the card has been as matter - of - fact as his speaking, with none of the drama one might expect from so startling a gesture. He\",\"At last someone has got a reaction, but the dropping of the card has been as matter - of - fact as his speaking, with none of the drama one might expect from so startling a gesture.\",He,gold,\"has money too, and the walls of the study, round more brass, has put on the altar.\",\"a sea tormentor, he takes someone's knee and goes away a bit and grabs it one more time.\",\"takes someone's notes from him, and faces the crowd.\",\"manages to suppress a rude gesture of its unloaded weighs for what reason, but someone says this.\"\n11593,lsmdc0011_Gandhi-51794,19488,He holds it aloft and then lowers it resolutely into the wire basket. The crowd reacts and the sergeant,He holds it aloft and then lowers it resolutely into the wire basket.,The crowd reacts and the sergeant,gold,follows her.,punches him and stretches up his arms and then aims his back out.,turns just in time to see it dropped in the flame.,starts off then leaves.\n11594,lsmdc0011_Gandhi-51794,19483,\"He takes someone's notes from him, and faces the crowd. It\",\"He takes someone's notes from him, and faces the crowd.\",It,gold,'s someone's list.,approaches with the red team on a sunny day at dusk.,steps up toward an envelope resting on a waiting envelope.,is the end of the speech.\n11595,lsmdc0011_Gandhi-51794,19497,His fingers finally clutch one. Someone,His fingers finally clutch one.,Someone,gold,\"lifts the card and painfully holds it over the fire, then drops it in the basket.\",\"drops down the pick with his free hand, then goes inside.\",takes it down by her belt then slowly bends slightly to her left.,puts his arms to his sides where people suspended on a wall.\n11596,lsmdc0011_Gandhi-51794,19489,\"He gestures to a constable, who turns from the crowd and marches to someone, seizing him by the arm and marching him to the paddy wagon. As he passes the sergeant, the sergeant\",\"He gestures to a constable, who turns from the crowd and marches to someone, seizing him by the arm and marching him to the paddy wagon.\",\"As he passes the sergeant, the sergeant\",gold,\"takes his billy club, and faces the crowd, rapping the club menacingly against his hand.\",gives one down while someone walks up after him at cabin side.,'s finger taps nervously on the finger.,climbs back the mercedes.\n11597,lsmdc0011_Gandhi-51794,19479,He holds up his hand for attention. He,He holds up his hand for attention.,He,gold,\"jerks the wheel aside to reveal someone, then looks up ahead.\",takes her hand and goes to meet her.,forces a smile - - then starts reading.,gets to the dance.\n11598,lsmdc0011_Gandhi-51794,19476,\"She possesses a surprising delicacy of feature, with large expressive eyes and a beautiful mouth - - but at this moment she is ill at ease and uncertain, forcing herself to do that which she would rather not. Someone\",\"She possesses a surprising delicacy of feature, with large expressive eyes and a beautiful mouth - - but at this moment she is ill at ease and uncertain, forcing herself to do that which she would rather not.\",Someone,gold,walks slowly up to her reading again.,\"to the studio, greens dressed in full focus and glaring at her camel.\",wets his lips nervously.,is long enough to hit her friend's easy dress.\n11599,lsmdc0011_Gandhi-51794,19474,We see five or six women in saris standing together. We,We see five or six women in saris standing together.,We,gold,are wiping the lotion off their face.,\"see the person, a white light.\",\"feature someone's wife, someone, standing at the front of the women.\",see a title screen.\n11600,lsmdc0011_Gandhi-51794,19481,\"Three or four committed supporters applaud as on cue, but his technique is so inexpert that it draws nothing but blank faces from the bulk of them. He\",\"Three or four committed supporters applaud as on cue, but his technique is so inexpert that it draws nothing but blank faces from the bulk of them.\",He,gold,\"glances nervously at someone, who is embarrassed for them both now.\",rises quickly to reach more people.,climbs backward into the pool.,glides back to the bag's register then checks someone's car.\n11601,lsmdc0011_Gandhi-51794,19490,\"Behind him, someone wavers indecisively a moment, then takes the box from someone and moves to the fire. Someone\",\"Behind him, someone wavers indecisively a moment, then takes the box from someone and moves to the fire.\",Someone,gold,pours down the hairy crack into the crystal - lit wood.,has someone in the back.,is at the fire.,signs from the tower.\n11602,lsmdc0011_Gandhi-51794,19475,\"We feature someone's wife, someone, standing at the front of the women. She possesses a surprising delicacy of feature, with large expressive eyes and a beautiful mouth - - but at this moment she\",\"We feature someone's wife, someone, standing at the front of the women.\",\"She possesses a surprising delicacy of feature, with large expressive eyes and a beautiful mouth - - but at this moment she\",gold,\"stops dancing, as if there's a real argument that fits in her skin.\",\"is ill at ease and uncertain, forcing herself to do that which she would rather not.\",is about to feel her presence.,can't lick with her finger.\n11603,lsmdc0011_Gandhi-51794,19494,\"The sergeant almost stops, but he strikes again. A quiver of distaste at his own act\",\"The sergeant almost stops, but he strikes again.\",A quiver of distaste at his own act,gold,makes the appearance of armies opponents.,crosses his face as someone sags.,rushes out through the office.,as he wears the ring.\n11604,lsmdc0011_Gandhi-51794,19486,\"He is facing the crowd. Behind him, someone\",He is facing the crowd.,\"Behind him, someone\",gold,crawls someone an executioner.,rides a large white veranda.,starts to teach someone's prayer and someone.,holds himself erect and slowly takes his own card from his pocket.\n11605,lsmdc0011_Gandhi-51794,19492,\"Again, a murmur from the crowd turns him. Someone, on his hands and knees, blood trickling from his abraded cheek, has picked up a card from the ground and he leans forward apprehensively, his eyes fearfully on the sergeant, but he\",\"Again, a murmur from the crowd turns him.\",\"Someone, on his hands and knees, blood trickling from his abraded cheek, has picked up a card from the ground and he leans forward apprehensively, his eyes fearfully on the sergeant, but he\",gold,puts the camera back in his face.,clicks his arm again.,drops it defiantly in the basket.,can still see the subject of someone's hand.\n11606,lsmdc0011_Gandhi-51794,19487,\"Behind him, someone holds himself erect and slowly takes his own card from his pocket. He\",\"Behind him, someone holds himself erect and slowly takes his own card from his pocket.\",He,gold,clinks someone's head.,\"stands still, looking up at the target.\",\"and someone are staring out up ahead, and someone comes in and rolls down the stairs.\",holds it aloft and then lowers it resolutely into the wire basket.\n11607,lsmdc0011_Gandhi-51794,19495,A quiver of distaste at his own act crosses his face as someone sags. Someone's anguished face,A quiver of distaste at his own act crosses his face as someone sags.,Someone's anguished face,gold,is wet with tears.,is cast against a bloodstained wall as someone sees a machine gun.,becomes deformed by someone's own laughter as the platinum force thug holds him back.,is still ominous and shadow.\n11608,anetv_7s7YqryNMAE,6654,A woman holds her eye open. She,A woman holds her eye open.,She,gold,friend holds her a meal for herself.,takes a contact lens out of her eye.,puts a straw over the shirted on the table.,are a treelike tropical cake.\n11609,anetv_7s7YqryNMAE,13342,The same shot is shown again and she puts and object in her eye to grab the lens. The same shot,The same shot is shown again and she puts and object in her eye to grab the lens.,The same shot,gold,is shown again in slow motion.,is shown again in slow motion and more clips of more men shown all the sponsors and dust.,is shown again while the camera is placed in her head.,is shown again in slow motion and the shot is repeated again.\n11610,anetv_7s7YqryNMAE,6655,She takes a contact lens out of her eye. She,She takes a contact lens out of her eye.,She,gold,drops the lens on the dart lens and moves it to her right.,follows the shells on her palm and glances aside.,uses a tool to take her contact lens out.,then puts the contact out of her eye.\n11611,anetv_7s7YqryNMAE,13341,A woman is seen holding her eye open and pushing a lens out of her eye. The same shot is shown again and she,A woman is seen holding her eye open and pushing a lens out of her eye.,The same shot is shown again and she,gold,is again smiling as well once scared herself.,speaks to another hair.,puts and object in her eye to grab the lens.,does styling her hair.\n11612,anetv_GX1EjqXAszM,2146,The third thing the person does it put jelly on a second slice of bread. the four thing the person does,The third thing the person does it put jelly on a second slice of bread.,the four thing the person does,gold,won't fix with pet.,\"n't have to make small, drier, when the woman is good at but the jeweled worms and the shoe cuts out.\",is put the two slices of bread together and cuts it down the middle with a butter knife.,pass paste on chips and make them fall the second tire.\n11613,anetv_GX1EjqXAszM,2700,The man wipes the knife clean. the man then,The man wipes the knife clean.,the man then,gold,sands the tiles with a knife.,takes one man and washes it with salt.,applies jelly to bread.,places a cup of squash on the table top.\n11614,anetv_GX1EjqXAszM,2145,The second thing the person did was clean the peanut butter of the knife using a napkin. the third thing the person does it,The second thing the person did was clean the peanut butter of the knife using a napkin.,the third thing the person does it,gold,is that the first subdues a little bit so it is right the first time.,put jelly on a second slice of bread.,and they put the salad in the skillet.,and there's a lot of tiny roadside ribs with red layer and a small rope tied to it.\n11615,anetv_GX1EjqXAszM,2699,A man applies peanut butter to bread. the man,A man applies peanut butter to bread.,the man,gold,juices a lemon and cooks it.,used his bread stick to fit it.,wipes the knife clean.,dumps tomatoes out of the bread.\n11616,anetv_GX1EjqXAszM,2143,A person shows you how to make a peanut butter and jelly sandwich. the person first,A person shows you how to make a peanut butter and jelly sandwich.,the person first,gold,\"left the cake off, the chocolate other angle and shown eyeing front the bread and then she bakes the cookies on a tray.\",puts slices of bread on a plate and spread peanut butter on one slice of bread.,shows how the omelette can mexican with the dog till.,places a touchscreen on the jelly cinnamon.\n11617,anetv_GX1EjqXAszM,2144,The person first puts slices of bread on a plate and spread peanut butter on one slice of bread. the second thing the person did,The person first puts slices of bread on a plate and spread peanut butter on one slice of bread.,the second thing the person did,gold,is put on a sandwich.,is correctly assembling the salad on and stack it in the bowl.,was clean the peanut butter of the knife using a napkin.,is placed on the pan and put the bread and a half - finished sandwich.\n11618,anetv_MM2ZYfEWCQo,16284,A man prepares some kindling for a fire. He,A man prepares some kindling for a fire.,He,gold,looks at the screen and talks.,makes circles with his fingers up the wood.,pours them into a gold pan and takes a fire.,takes a log with the ax and throws the ax.\n11619,anetv_MM2ZYfEWCQo,12601,A man is putting kindle into a fire pit. He,A man is putting kindle into a fire pit.,He,gold,starts a fire in the fire pit.,grabs the knife on the small table and lines the fire while dancing.,shoots another fire into the fire.,comes to a halt in the center of the floor.\n11620,anetv_MM2ZYfEWCQo,16287,The man starts adding smaller pieces of wood the fire. Two kids,The man starts adding smaller pieces of wood the fire.,Two kids,gold,move back in wave.,are shown crawling over the fence.,interact with the camera.,spread it on the tree.\n11621,anetv_MM2ZYfEWCQo,12602,He starts a fire in the fire pit. A kid,He starts a fire in the fire pit.,A kid,gold,stands behind him holding a stick.,is standing next to him swinging.,stands out and prepares a dart of fire.,stands with his ax behind her.\n11622,anetv_MM2ZYfEWCQo,16285,He looks at the screen and talks. He,He looks at the screen and talks.,He,gold,replaces a canvas on the canvas cover off the trunk.,starts striking his tools together over the kindling to start the fire.,sets the weight in front of a net.,demonstrates how to sip the mixture.\n11623,anetv_MM2ZYfEWCQo,16286,The kindling catches on fire. The man,The kindling catches on fire.,The man,gold,picks it up and covers it up with water.,dodges a lawn root.,starts adding smaller pieces of wood the fire.,\"touches the rod near the fire, then tosses the mallet down to the floor.\"\n11624,anetv_ynxngsa-IHU,8269,The stylist trims the sideburns and around the ears. The stylist,The stylist trims the sideburns and around the ears.,The stylist,gold,uses his hands to style the hair and blow drys it when finished cutting for the person to see.,wipes red from their brushes.,puts marks on the client's hair.,cuts her nails short and starts shooting.\n11625,anetv_ynxngsa-IHU,8268,The stylist combs out the persons hair and cuts it with scissors. The stylist,The stylist combs out the persons hair and cuts it with scissors.,The stylist,gold,uses another stylist to style his hair to apply more product.,trims the sideburns and around the ears.,removes the brush and ties it together.,combs the hair while braiding it.\n11626,anetv_ynxngsa-IHU,8265,A man stands in front of a wall filled with hair products. Various scissors and combs,A man stands in front of a wall filled with hair products.,Various scissors and combs,gold,are shown using very heavy hair and environments.,are laid out on a mat.,are being shown.,appear on screen.\n11627,anetv_ynxngsa-IHU,8267,The salon stylist towels off then rubs hair products through the man's hair with his hands. The stylist,The salon stylist towels off then rubs hair products through the man's hair with his hands.,The stylist,gold,\"holds up his wrist, then starts brushing his hair.\",shows a messy hairstyle look.,combs out the persons hair and cuts it with scissors.,continues to zoom on as the dog stylist shows her hair.\n11628,anetv_ynxngsa-IHU,8266,Various scissors and combs are laid out on a mat. The salon stylist towels off then,Various scissors and combs are laid out on a mat.,The salon stylist towels off then,gold,rubs hair products through the man's hair with his hands.,\"poses as her hair styling hovers, the newspaper falls.\",cuts the hair on someone's hair and shaves her hair before counting the brushed on the slide.,finish off and again cleans a bowl of scissors drying a patient's hair.\n11629,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6664,12014,Someone puts up his hand. Someone,Someone puts up his hand.,Someone,gold,hands someone a folded paper.,steps towards the table.,points hopefully at his wife.,throws down some food.\n11630,anetv_f3YyN44Dx8M,11179,The man lays on his back and the dog jumps over him. The man,The man lays on his back and the dog jumps over him.,The man,gold,falls to the ground and hits him and back on the ground.,raises his feet and looks at the camera with him.,continues to do tricks with the dog.,returns frisbee to the man in front of him.\n11631,anetv_f3YyN44Dx8M,11178,A man in a black shirt is juggling red frisbees. A small white and black dog,A man in a black shirt is juggling red frisbees.,A small white and black dog,gold,\"appears in a flat, wrathfully wounded man draped around him.\",has jumps into a sand castle.,is running around the man catching the frisbees being thrown by the man.,jumps on the floor making a long and small dog long run in circles.\n11632,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25951,8468,Someone wears chest armor as he follows someone to the training field. The students,Someone wears chest armor as he follows someone to the training field.,The students,gold,have to head down the stairs.,aim their rifles at the kung fu master.,\"join the men, then upstairs, gesturing to someone, who snaps out the spear and sprinkle them down.\",gather their weapons and form a crowd in front of someone.\n11633,anetv_l7nsRRyzD4k,18314,A girl is seen looking through a beach bag. The girl,A girl is seen looking through a beach bag.,The girl,gold,rides in while the camera follows her movement.,shows off the near bunch.,finds what she is looking for.,pulls back a stick and climbs onward.\n11634,anetv_l7nsRRyzD4k,18312,A girl waves to the camera. A man,A girl waves to the camera.,A man,gold,stands on a diving board.,hits a ball on a blue board.,kneel on a jump rope.,is seen digging in the sand.\n11635,anetv_l7nsRRyzD4k,18313,A man is seen digging in the sand. A girl,A man is seen digging in the sand.,A girl,gold,is seen looking through a beach bag.,is shaving a machine up and down her bicycle.,is seen fighting with their hands as other people walk by.,begins to walk from them jumping into a sand tube.\n11636,lsmdc1042_Up_In_The_Air-88688,18694,He pulls his black wheelie case. She,He pulls his black wheelie case.,She,gold,\"pulls a similar, neat red wheelie case.\",shows the youtube screen.,slumps his head against the vent.,lifts his sheepish gaze to the surveillance screen.\n11637,lsmdc1042_Up_In_The_Air-88688,18693,People walk through the airport terminal. He,People walk through the airport terminal.,He,gold,accepts a chairman with one of the friends.,pulls his black wheelie case.,\"taps a woman with a phone, then glares into the side - car diner on the pale day.\",gapes with concern and concern.\n11638,lsmdc1042_Up_In_The_Air-88688,18695,\"Later, they walk into the Chalet Suites, a Swiss lodge - themed hotel. They\",\"Later, they walk into the Chalet Suites, a Swiss lodge - themed hotel.\",They,gold,\"filled with high - sludge, coffee and walk bridges and trudges back flat, their curly hair clad teens.\",\"stop, spreading out candles of china lamps.\",join a short queue of people checking in.,hold off the daughters's toe.\n11639,lsmdc1042_Up_In_The_Air-88688,18696,They join a short queue of people checking in. Someone,They join a short queue of people checking in.,Someone,gold,notices a second counter with no queue.,entrance at the outdoor is.,and two others sit beside him.,\"cleans their fur on their mouths, creating a vast time.\"\n11640,lsmdc1042_Up_In_The_Air-88688,18692,A jet comes in to land. People,A jet comes in to land.,People,gold,are surfing through the water.,sit on a dock as the captain leaves.,\"pick up metal, staring under the kung.\",walk through the airport terminal.\n11641,lsmdc0049_Hannah_and_her_sisters-69240,13399,\"Someone mouths a thank you, glancing around. They\",\"Someone mouths a thank you, glancing around.\",They,gold,walks to his carriage.,try to keep a sign on.,\"is seated near the overturned building towards the burning fuel house, the fire truck by the big occupants wheel pulled by their sides.\",look at each other and raise their glasses in a toast.\n11642,lsmdc0049_Hannah_and_her_sisters-69240,13411,\"Someone, uneasy, looks down. The camera\",\"Someone, uneasy, looks down.\",The camera,gold,\"comes back towards someone's place in a circular pool room with its door, red and blue, smoking a cigarette.\",\"follows someone as she walks quickly to the stereo unit, pulling a record off the shelf.\",goes in through the tall windows of the house before someone walks up to the digital door and looks at it.,follows someone.\n11643,lsmdc0049_Hannah_and_her_sisters-69240,13418,\"The camera follows her as she goes past the nude drawings, which become the focus of attention as someone walks offscreen. Someone\",\"The camera follows her as she goes past the nude drawings, which become the focus of attention as someone walks offscreen.\",Someone,gold,creeps up to her and gives her a determined smile.,eyes unsteady on her as the smoke swirls in behind her and watches.,\"walks back onscreen, to the bookshelf behind the drawings.\",\"shifts his gaze across the courtyard, then pauses a moment and shifts his gaze.\"\n11644,lsmdc0049_Hannah_and_her_sisters-69240,13409,The camera leaves someone to follow the enthusiastic someone as she takes Dusty by the arm and starts leading him to the door. Someone,The camera leaves someone to follow the enthusiastic someone as she takes Dusty by the arm and starts leading him to the door.,Someone,gold,inspects him as it empties excitedly as he pours some for the gray cloud.,follows at a distance.,\"steps out, facing the kids.\",grabs two younger sweatpants from under her.\n11645,lsmdc0049_Hannah_and_her_sisters-69240,13391,Someone gets up from the couch where he'd been sitting. He,Someone gets up from the couch where he'd been sitting.,He,gold,paces back and forth as he talks over the screen.,puts the phone down in the bag next to someone's bedside.,\"sits, watching tv.\",gazes at us doubtfully.\n11646,lsmdc0049_Hannah_and_her_sisters-69240,13388,\"Someone is back in the present in his darkened living room, illuminated by a glow from a window behind the couch. A coffee table\",\"Someone is back in the present in his darkened living room, illuminated by a glow from a window behind the couch.\",A coffee table,gold,sits in front of the couch.,covers the door.,\"approaches someone, who picks it up.\",is covered with plastic sheets; his attention is drawn by his credit star.\n11647,lsmdc0049_Hannah_and_her_sisters-69240,13404,\"She turns and walks with people and Dusty farther into the loft, her hands clasped behind her back. Someone\",\"She turns and walks with people and Dusty farther into the loft, her hands clasped behind her back.\",Someone,gold,holds up one hand as a swarm of pant cuffs strung around him.,pulls out of the parlor with a smile on her face.,raises the stud and strings straight over her bare legs.,covers his face to hide his disgust.\n11648,lsmdc0049_Hannah_and_her_sisters-69240,13424,\"Someone enters the loft first, followed by a confused Dusty. They\",\"Someone enters the loft first, followed by a confused Dusty.\",They,gold,\"stride across the loft past someone, who is standing by the stereo.\",steps to the front door.,eyes the police set of monitors.,\"move backward into the living room, across and to each side.\"\n11649,lsmdc0049_Hannah_and_her_sisters-69240,13395,The soprano is leaning on a wagon wheel; her voice soars. Then it,The soprano is leaning on a wagon wheel; her voice soars.,Then it,gold,pulls into a netting house where it's for real estate.,'s back to a closer look at people in their box.,\"'s washed by metal, scissors and rodrigo and flame.\",\"is underneath someone, at which point when it is the first time.\"\n11650,lsmdc0049_Hannah_and_her_sisters-69240,13400,\"They look at each other and raise their glasses in a toast. Someone, wearing a baggy plaid shirt and jeans,\",They look at each other and raise their glasses in a toast.,\"Someone, wearing a baggy plaid shirt and jeans,\",gold,is wearing a tuxedo as his wife crouch down to get some ties.,\"has opened the door for someone and his client, wealthy rock star someone.\",sits on his bed.,holds up a 45 and pulls out the life bread.\n11651,lsmdc0049_Hannah_and_her_sisters-69240,13419,\"She takes the Edward Estlin Cummings book from the shelf and flips through it as she walks back to someone, who is still leaning by the stereo, still ruminating. Someone\",\"She takes the Edward Estlin Cummings book from the shelf and flips through it as she walks back to someone, who is still leaning by the stereo, still ruminating.\",Someone,gold,\"glances up at a president, which has a badge, although it is focused, adding some more with a new bolt.\",turns it over.,makes a loud noise and breathes more hysterically.,\"leaps up, grabs someone, and kisses her passionately.\"\n11652,lsmdc0049_Hannah_and_her_sisters-69240,13414,\"She listens to the music, her eyes closed. The record\",\"She listens to the music, her eyes closed.\",The record,gold,speeds off as he walks back into her room and runs down the narrow corridor and stops.,\"plays for a few moments in the quiet room, as someone walks over to someone and leans against the shelf near her.\",moves to one of the doors.,is moving out of the way as her mom speaks in.\n11653,lsmdc0049_Hannah_and_her_sisters-69240,13413,\"She pulls the record out of its jacket and puts it on the turntable. The record in place, someone\",She pulls the record out of its jacket and puts it on the turntable.,\"The record in place, someone\",gold,stands slowly someone sinks.,turns and leans back against the stereo unit.,turns to indicate the source of running.,sighs and explains his germs.\n11654,lsmdc0049_Hannah_and_her_sisters-69240,13422,Someone quickly turns away from someone. She tries to compose herself and the film,Someone quickly turns away from someone.,She tries to compose herself and the film,gold,cuts into a train of scissors.,falls on the back of the cargo ship and someone follows.,cuts to the loft entranceway.,goes back and forth over it.\n11655,lsmdc0049_Hannah_and_her_sisters-69240,13398,He uncorks the wine and pours some in both their glasses. Someone,He uncorks the wine and pours some in both their glasses.,Someone,gold,pours a glass into a silver capsule and brings it to a gradual three sip drink.,\"mouths a thank you, glancing around.\",takes in a foamy smile and handed him his beer.,\"is in someone's long, coffee shop talking to someone.\"\n11656,lsmdc0049_Hannah_and_her_sisters-69240,13410,\"The camera now moves back to someone, still staring at the nude drawings, as the sounds of someone's and Dusty's footsteps are heard leaving the loft. He\",\"The camera now moves back to someone, still staring at the nude drawings, as the sounds of someone's and Dusty's footsteps are heard leaving the loft.\",He,gold,\"pounds her stomach, starting up her legs with her stomach brace.\",gets to her feet and looks at him strangely.,turns and hesitantly smiles to an offscreen someone.,looks around and sees his sleeping body lying before her.\n11657,lsmdc0049_Hannah_and_her_sisters-69240,13416,\"Someone looks down again; the music plays softly and someone continues to stare at her, thinking. As someone's thoughts are heard over the scene, someone\",\"Someone looks down again; the music plays softly and someone continues to stare at her, thinking.\",\"As someone's thoughts are heard over the scene, someone\",gold,\"turns to someone, who shifts uncomfortably, uneasy.\",\"nods, takes out a glass of soda and speaks to the camera in a modern pink office.\",\"glances around the loft, then begins to walk away.\",strides back to their table.\n11658,lsmdc0049_Hannah_and_her_sisters-69240,13392,The film moves up to the private boxes in the upper loge. People,The film moves up to the private boxes in the upper loge.,People,gold,are seen working out in a wood room.,has poured more onto the laptop.,lower down the stairs and walk to the store.,can be seen from a distance sitting in one of the boxes.\n11659,lsmdc0049_Hannah_and_her_sisters-69240,13390,Papers are scattered on the floor. Someone,Papers are scattered on the floor.,Someone,gold,pulls up a wall.,sits on someone's lap.,gets up from the couch where he'd been sitting.,dances as he looks past her.\n11660,lsmdc0049_Hannah_and_her_sisters-69240,13401,\"Someone, wearing a baggy plaid shirt and jeans, has opened the door for someone and his client, wealthy rock star someone. Someone\",\"Someone, wearing a baggy plaid shirt and jeans, has opened the door for someone and his client, wealthy rock star someone.\",Someone,gold,someone's eyebrows light up and walks over to the porch.,closes the door behind the men and walks over to dusty.,\", someone is down on the ground at his feet, bristles the cigarette.\",\"opens the prying to someone's ankles and steps up out her window, she grabs his pouch and opens it.\"\n11661,lsmdc0049_Hannah_and_her_sisters-69240,13420,\"He clumsily turns around; she bumps against the stereo unit. As someone pulls away, she\",He clumsily turns around; she bumps against the stereo unit.,\"As someone pulls away, she\",gold,rises to her feet.,smashes into the turntable.,\"continues to walk along the streets to the dance floor, twisting along.\",clicks a wide - bladed dagger and screams at someone.\n11662,lsmdc0049_Hannah_and_her_sisters-69240,13394,Someone glances at her; he reaches down for a bottle of wine. The movie briefly,Someone glances at her; he reaches down for a bottle of wine.,The movie briefly,gold,cuts back to the stage.,mixes with a humor one.,\"follows, leaving only a few customers.\",takes a stunned sigh.\n11663,lsmdc0049_Hannah_and_her_sisters-69240,13417,\"As someone's thoughts are heard over the scene, someone glances around the loft, then begins to walk away. The camera\",\"As someone's thoughts are heard over the scene, someone glances around the loft, then begins to walk away.\",The camera,gold,\"moves back to the other, picks up gottfried's stopped cord, then stops.\",sits a short distance away.,\"follows her as she goes past the nude drawings, which become the focus of attention as someone walks offscreen.\",pulls back to the office again and the massive reflection of the shampoo brushes his hard teeth.\n11664,lsmdc0049_Hannah_and_her_sisters-69240,13406,\"As Dusty talks, the camera follows someone, who walks past the others to examine the drawings more closely. Two framed nude drawings of someone\",\"As Dusty talks, the camera follows someone, who walks past the others to examine the drawings more closely.\",Two framed nude drawings of someone,gold,\"sags her, a young age.\",faces on its screen displays a picture of a girl before him.,are propped up on an easel.,sits on the corridor dart.\n11665,lsmdc0049_Hannah_and_her_sisters-69240,13415,\"Someone stares at someone, who continues to look down, her arms around her chest. Someone looks down again; the music plays softly and someone\",\"Someone stares at someone, who continues to look down, her arms around her chest.\",Someone looks down again; the music plays softly and someone,gold,looks around abruptly as he starts to laugh.,\"continues to stare at her, thinking.\",pushes him lightly off the stage.,picks up one of the remaining cups while deep in conversation.\n11666,lsmdc0049_Hannah_and_her_sisters-69240,13407,Two framed nude drawings of someone are propped up on an easel. Someone,Two framed nude drawings of someone are propped up on an easel.,Someone,gold,checks them at the bottom.,\"glances admiringly at the drawings, then surreptitiously at someone, admiring her body as she converses with an offscreen dusty and someone.\",arrives at her father's apartment.,\"sniffles and applaud, and her image reappears.\"\n11667,lsmdc0049_Hannah_and_her_sisters-69240,13389,A coffee table sits in front of the couch. Papers,A coffee table sits in front of the couch.,Papers,gold,are scattered on the floor.,lay out carpet in front of a fireplace and show how to polish wall paper.,man is standing in a driveway in front of a camera area.,pulls up as she enters the gryffindor desk.\n11668,lsmdc0049_Hannah_and_her_sisters-69240,13408,\"Someone glances admiringly at the drawings, then surreptitiously at someone, admiring her body as she converses with an offscreen Dusty and someone. The camera\",\"Someone glances admiringly at the drawings, then surreptitiously at someone, admiring her body as she converses with an offscreen Dusty and someone.\",The camera,gold,leaves someone to follow the enthusiastic someone as she takes dusty by the arm and starts leading him to the door.,turns as the boys swim out of the park.,zooms in on her as he takes off his glasses and then lifts eye on a petite brunette with a mustache.,\"pans past someone, keeping a chatting meal on followed with him waiting for his meal.\"\n11669,lsmdc0049_Hannah_and_her_sisters-69240,13402,Someone closes the door behind the men and walks over to Dusty. Someone chuckles as she looks at him; he,Someone closes the door behind the men and walks over to Dusty.,Someone chuckles as she looks at him; he,gold,\"shakes her head, walks to the door, opens her eyes, smiles at him, and walks himself off.\",makes sure it's all there.,\"is wearing sunglasses, a red - imprinted t - shirt, and a baggy coat.\",has not moved only to her breathing where she was.\n11670,lsmdc0049_Hannah_and_her_sisters-69240,13412,\"The camera follows someone as she walks quickly to the stereo unit, pulling a record off the shelf. She\",\"The camera follows someone as she walks quickly to the stereo unit, pulling a record off the shelf.\",She,gold,strips put to the bottoms of the clothes on the mattress.,holds the fan out like a penis.,watches as they head through the jungle.,pulls the record out of its jacket and puts it on the turntable.\n11671,lsmdc0049_Hannah_and_her_sisters-69240,13405,\"Someone covers his face to hide his disgust. As Dusty talks, the camera\",Someone covers his face to hide his disgust.,\"As Dusty talks, the camera\",gold,\"lifts at someone, who stands motionless as he lowers the phone on his feet.\",\"follows someone, who walks past the others to examine the drawings more closely.\",\"moves toward the barred gate, then directly at us as it heads for half its path.\",drops from the streets.\n11672,lsmdc0049_Hannah_and_her_sisters-69240,13425,\"They stride across the loft past someone, who is standing by the stereo. Someone, standing near the nude drawings,\",\"They stride across the loft past someone, who is standing by the stereo.\",\"Someone, standing near the nude drawings,\",gold,\"is looking at something, screaming.\",blinks at him momentarily.,is looking through a book.,picks up someone's book.\n11673,lsmdc0049_Hannah_and_her_sisters-69240,13393,People can be seen from a distance sitting in one of the boxes. Someone glances at her; he,People can be seen from a distance sitting in one of the boxes.,Someone glances at her; he,gold,turns with all boys eyes.,\"stands and talks, really facing his brother.\",jerks his hand at the electronic mechanism.,reaches down for a bottle of wine.\n11674,lsmdc0049_Hannah_and_her_sisters-69240,13421,\"Someone, shocked, is gasping. Someone quickly\",\"Someone, shocked, is gasping.\",Someone quickly,gold,rolls onto the balcony and backs up up the grand staircase.,starts up the stairs.,dashes off his own and flops onto the ground.,turns away from someone.\n11675,lsmdc0049_Hannah_and_her_sisters-69240,13387,He takes a sip of coffee. Someone,He takes a sip of coffee.,Someone,gold,\"closes the fridge, which pans out.\",strides past it.,takes out a bill and puts it into the trash.,\"reaches for the cake as people exchange glances, reacting.\"\n11676,lsmdc0049_Hannah_and_her_sisters-69240,13397,The aria continues as someone hands a smiling someone a glass. He,The aria continues as someone hands a smiling someone a glass.,He,gold,uncorks the wine and pours some in both their glasses.,shoulders her leg and shimmies up in excitement.,\"emerges from the hotel and d. hypnotized, peeks around and strolls down the passage while people crowd at him.\",is dressed as eagerly as the other girl.\n11677,lsmdc0049_Hannah_and_her_sisters-69240,13423,She tries to compose herself and the film cuts to the loft entranceway. Someone,She tries to compose herself and the film cuts to the loft entranceway.,Someone,gold,tries to crack someone's side to fuss over it.,\"enters the loft first, followed by a confused dusty.\",sits at her bedside.,peeks out at the dark nursery.\n11678,lsmdc0049_Hannah_and_her_sisters-69240,13396,Then it's back to a closer look at people in their box. The aria,Then it's back to a closer look at people in their box.,The aria,gold,begins to explain and the person pulls up the small cord.,of battle records themselves with lessons at it olympics.,loses the baton then gasps as he walks on left and right.,continues as someone hands a smiling someone a glass.\n11679,anetv_L3X8OmIbj2c,13756,Guys arm wrestle indoors in the presence of two referees. The referees,Guys arm wrestle indoors in the presence of two referees.,The referees,gold,infinitely left and right wins the match.,point in the direction of the winner.,are doing different techniques with the opponent.,swings and fight around during the jury project.\n11680,anetv_EbQJuDQdW8U,16815,The lady moves a shirt around on an ironing board. A lady,The lady moves a shirt around on an ironing board.,A lady,gold,wearing a wet shirt looks in front of a mirror.,grabs a lemon and emptying it with scissors.,pass behind a title card on the wall.,is ironing a button down shirt.\n11681,anetv_EbQJuDQdW8U,16816,A lady is ironing a button down shirt. The lady,A lady is ironing a button down shirt.,The lady,gold,puts the garment on a pot repeatedly.,puts the iron down.,wipes the rubber band off the ironing.,fiddles with her hair.\n11682,anetv_EbQJuDQdW8U,15384,The lady then lays a shirt on an ironing board and checks the tags. The lady then,The lady then lays a shirt on an ironing board and checks the tags.,The lady then,gold,irons the shirt starting with the collar.,places the dog on the table.,hugs the girl all over the camera.,scrubs the end with a faucet.\n11683,anetv_EbQJuDQdW8U,16814,A lady speaks directly to the camera. The lady,A lady speaks directly to the camera.,The lady,gold,moves a shirt around on an ironing board.,puts sunglasses on and uses his hands.,inserts the box of solution into a piece of metal.,begins to pan back and forth in a bowl.\n11684,anetv_EbQJuDQdW8U,15383,A lady talks in a living room. The lady then,A lady talks in a living room.,The lady then,gold,lays on a piece of paper and stops achieved.,takes a plaster rack from how to mop it.,lays a shirt on an ironing board and checks the tags.,shows how to using shoe polish office.\n11685,anetv_iOpoR0UeJNg,6649,A man and a woman talk to the camera in a newscast setting. The scene,A man and a woman talk to the camera in a newscast setting.,The scene,gold,changes to the person from several angles.,transitions to various people training in gymnastics.,turns with the own name and the website.,switches to a tripod as the man is some doing his routine.\n11686,anetv_iOpoR0UeJNg,6650,Two women are interviewed on camera sequentially. The scene,Two women are interviewed on camera sequentially.,The scene,gold,transitions to wearing a bowling shirt mix showing a shoe and a small shirt.,continues to the man and woman.,transitions to a woman in a white shirt holding a brush.,transitions to more gymnastic practice segments.\n11687,lsmdc3083_TITANIC2-39125,4977,\"Smiling at someone, someone points to her own chin. Someone quickly\",\"Smiling at someone, someone points to her own chin.\",Someone quickly,gold,twirls the ax at her chest.,pats her daughter's shoulder.,\"removes someone's items, and clutches the baton in her pants.\",wipes saliva off his own chin.\n11688,lsmdc3083_TITANIC2-39125,4974,Someone takes someone's hand. He,Someone takes someone's hand.,He,gold,looks at the locket on someone's left hand.,takes his turn to his foot.,pulls her to a different section of the railing.,gently kisses someone's brow and nods.\n11689,lsmdc3083_TITANIC2-39125,4975,He pulls her to a different section of the railing. Someone,He pulls her to a different section of the railing.,Someone,gold,leans forward and spits.,\"walks up to a panel of keys, and looks at her nervously.\",gets out of the bag and brings a drink.,grins at two people waiting long below the road.\n11690,lsmdc3056_PUBLIC_ENEMIES-2882,961,\"Someone and his men, using their hostages as shields, cross to the getaway car. Someone\",\"Someone and his men, using their hostages as shields, cross to the getaway car.\",Someone,gold,pulls a lever and changes the cap tie.,aims at the police over the president's shoulder.,sits beside someone in front of the windows of their tent.,eyes the man as he grins on the tree.\n11691,lsmdc3056_PUBLIC_ENEMIES-2882,960,\"Another police car arrives down the block. Someone and his men, using their hostages as shields,\",Another police car arrives down the block.,\"Someone and his men, using their hostages as shields,\",gold,get into the blue ambulance.,are on the train's convoy.,cross to the getaway car.,throw each other to the ground.\n11692,lsmdc1040_The_Ugly_Truth-8627,16095,\"Someone comes downstairs, looking extremely sexy. She\",\"Someone comes downstairs, looking extremely sexy.\",She,gold,\"enters the room with a phone blaring, dipping a rag into the envelope and ends the call.\",stops eating and watches her.,\"wears black stilettos and a figure - hugging, low - cut black dress that stops at her knees.\",picks up a razor blade.\n11693,lsmdc1040_The_Ugly_Truth-8627,16093,\"Sitting in someone's living room, someone reaches down the side of the chair and picks up some knitting. He\",\"Sitting in someone's living room, someone reaches down the side of the chair and picks up some knitting.\",He,gold,\"hangs up, then sits lightly in the door of the den.\",frowns and quickly dumps it back on the floor.,sleeps with a newspaper.,tries to step off the bed.\n11694,lsmdc1040_The_Ugly_Truth-8627,16094,He frowns and quickly dumps it back on the floor. Someone,He frowns and quickly dumps it back on the floor.,Someone,gold,stares after it as he shovels his.,climbs to the ground and looks around.,staggers back and forth against a sidewalk.,\"comes downstairs, looking extremely sexy.\"\n11695,lsmdc1040_The_Ugly_Truth-8627,16096,\"She wears black stilettos and a figure - hugging, low - cut black dress that stops at her knees. Her long, blonde hair\",\"She wears black stilettos and a figure - hugging, low - cut black dress that stops at her knees.\",\"Her long, blonde hair\",gold,opens over her head from a back point - to - bouquet.,\"is as short as someone, someone's fur coat and pale face.\",hangs loose in flowing curls.,\"is curled around on the decorative, fluffy tree adorned like soft, gold feathers.\"\n11696,lsmdc0010_Frau_Ohne_Gewissen-51636,19203,Someone comes through the arch and walks slowly towards her. Someone,Someone comes through the arch and walks slowly towards her.,Someone,gold,is fuming with a smile.,\"sits down on the arm of the davenport, close to her.\",convulses herself as she twirls and runs out of the room.,turns the wheel away.\n11697,lsmdc3050_MR_POPPERS_PENGUINS-24496,17095,Behind them a penguin runs over to Captain and nuzzles with her. They,Behind them a penguin runs over to Captain and nuzzles with her.,They,gold,look down at her egg.,escape off the deck.,look with surprise as the chopper settles into a frothy white mist.,lean against the wall.\n11698,lsmdc3050_MR_POPPERS_PENGUINS-24496,17093,Someone and someone join their parents. Someone,Someone and someone join their parents.,Someone,gold,wraps his arm around his daughter.,addresses the table for sunlight.,runs off into the dark lit hall.,looks back at her and walks away.\n11699,lsmdc3050_MR_POPPERS_PENGUINS-24496,17094,Someone wraps his arm around his daughter. Behind them a penguin,Someone wraps his arm around his daughter.,Behind them a penguin,gold,sneaks up behind someone to catch him.,pulls out a poison ring.,runs over to captain and nuzzles with her.,runs into the apartment leaving her alone.\n11700,anetv_AUwam1VhQm0,17670,A large slide is shown with dozens of children climbing up and going down. Children,A large slide is shown with dozens of children climbing up and going down.,Children,gold,are then shown close up as well as two large kids walking around.,kids prepares to to the side as well as helps spar.,are seen holding on a string as well as putting toys.,run up and down the side and continue to ride down the slide.\n11701,anetv_AUwam1VhQm0,17671,Children run up and down the side and continue to ride down the slide. The camera,Children run up and down the side and continue to ride down the slide.,The camera,gold,captures them from several angles and ends with him grabbing on.,\"moves together outside, bumping into a pile of leaves yet again.\",pans all around the slides and shows the kids going down.,pans around many of the kids as they are all over the fence making the woman put their hands to the camera.\n11702,anetv_O2Y6rn4gFd4,6219,The young girl is shaving the other young man's leg. The young man,The young girl is shaving the other young man's leg.,The young man,gold,drops his knee and comes back quickly.,talked to the camera and continue to shave his leg.,behind the stump begins shaving his beard to clean hair with a razor.,\"walked in the salon and came, doing his brushing hair.\"\n11703,anetv_O2Y6rn4gFd4,556,He most likely lost a bet and now he has to pay the price which is the leg shaving. He,He most likely lost a bet and now he has to pay the price which is the leg shaving.,He,gold,is now getting at his dining on the counter where he stares forlornly at the counter.,\"takes off his brush at a treat, before a layer of liquid is mud to cover his face.\",is packing very long as he continues to mow the road as it changes back to the people working it.,makes some comments and continues on to shaving the leg making it very smooth.\n11704,anetv_O2Y6rn4gFd4,554,A boy is sitting inside on a chair shaving his legs with shaving cream. His sister,A boy is sitting inside on a chair shaving his legs with shaving cream.,His sister,gold,lifts his arm and views the tattoo.,comes out and begins shaving his beard.,\"walks up to him, and begins brushing his teeth.\",is shaving his other leg for him.\n11705,anetv_O2Y6rn4gFd4,555,His sister is shaving his other leg for him. He most likely lost a bet and now he,His sister is shaving his other leg for him.,He most likely lost a bet and now he,gold,has to pay the price which is the leg shaving.,wears a pair of clippers.,will fail to make an clearly.,sees all good dayton identically.\n11706,anetv_O2Y6rn4gFd4,6218,The young man is shaving his leg. The young girl,The young man is shaving his leg.,The young girl,gold,is shaving the other young man's leg.,comes over while hanging up.,come down to help him to help shave her legs.,shows to razor to shave up baked your face.\n11707,lsmdc1062_Day_the_Earth_stood_still-100711,8339,\"She pockets a vial of saline solution, goes to the syringe cabinet and opens, then closes the door. She\",\"She pockets a vial of saline solution, goes to the syringe cabinet and opens, then closes the door.\",She,gold,turns and holds up the syringe packet for the benefit of the suspicious agent.,moves forward and opens a wine bottle of champagne which opens.,unlocks the door.,opens the bottle of bottles.\n11708,lsmdc1062_Day_the_Earth_stood_still-100711,8338,\"She puts it in her pocket, then scans the shelves. The agent\",\"She puts it in her pocket, then scans the shelves.\",The agent,gold,takes out a photo on a cell phone.,winks back at someone.,drops her purse from a seat and crouches beside them.,hands her a vial.\n11709,lsmdc1062_Day_the_Earth_stood_still-100711,8337,\"She leans back against the door and composes herself, then takes a hypodermic in a sealed packet from a glass cabinet. She\",\"She leans back against the door and composes herself, then takes a hypodermic in a sealed packet from a glass cabinet.\",She,gold,shuts the door and follows someone with it down the hall.,\"puts it in her pocket, then scans the shelves.\",picks it up revealing the extinguisher on her left hand.,holds a bottle of champagne from her jacket.\n11710,lsmdc1062_Day_the_Earth_stood_still-100711,8336,She enters a storeroom with shelves full of vials of drugs. She,She enters a storeroom with shelves full of vials of drugs.,She,gold,\"hilt, holding a human - hand, goes through out intense white slime, thrown backwards on fire.\",\"leans back against the door and composes herself, then takes a hypodermic in a sealed packet from a glass cabinet.\",call high to the camera.,fills the bowl then joins a small mug on the counter.\n11711,anetv_YL3MvJVk6u0,9923,\"A man, in a field of dirt and fruit crops with bare branches from the winter, begins to prune dead branches from the fruit plants with a pruning tool and a hatchet. An image of the plants in fruit bearing months\",\"A man, in a field of dirt and fruit crops with bare branches from the winter, begins to prune dead branches from the fruit plants with a pruning tool and a hatchet.\",An image of the plants in fruit bearing months,gold,appears before returning to the man in the field pruning the dead branches.,with green mark is shown.,\"scenery is shown, sailing as the view focuses on he that is numerous websites of the book, and then begins front.\",holds is shown on the screen.\n11712,anetv_YL3MvJVk6u0,9922,\"A man prunes dead branches from fruit bearing plant stems in the winter. A man, in a field of dirt and fruit crops with bare branches from the winter,\",A man prunes dead branches from fruit bearing plant stems in the winter.,\"A man, in a field of dirt and fruit crops with bare branches from the winter,\",gold,speaks to a baked man with the catcher.,walks a ladder to a point on the camp.,begins to prune dead branches from the fruit plants with a pruning tool and a hatchet.,is seated on an leaf pattern.\n11713,anetv_WWhL75t7p8A,5783,A large group of people are seen holding a rope while two more walk into frame and the camera closes in on the people. The camera,A large group of people are seen holding a rope while two more walk into frame and the camera closes in on the people.,The camera,gold,follows the boy in his hands and leads into several clips of drummers jumping together.,pans around as another man is seen walking behind the walking and looking down while still walks on the camera.,continues to pan around the people and leads into a match of tug of war and the women celebrating.,pans around the other with several people standing in the end and waving to the camera.\n11714,anetv_PRTcRz--03E,17726,A person is seen walking into frame and begins playing on a set of bongo drums. The man,A person is seen walking into frame and begins playing on a set of bongo drums.,The man,gold,moves around the wall continuously while looking off into the distance.,continues playing while others arm up and cheer for him.,continues playing on the drums while the camera does n't move and ends with him hitting them once and walking away.,pushes in and begins playing gymnastic tricks before another person.\n11715,anetv_XD3yFrJHiv8,10300,\"Various clips begin to play and it briefly shows parts of a city, then most of it is of men outdoors and playing soccer on sand in a middle of city, and occasionally blue words pop up on the screen when certain plays in the game are made. When the clips end the man and woman on the couch begin talking and she\",\"Various clips begin to play and it briefly shows parts of a city, then most of it is of men outdoors and playing soccer on sand in a middle of city, and occasionally blue words pop up on the screen when certain plays in the game are made.\",When the clips end the man and woman on the couch begin talking and she,gold,appears to be as sexy.,puts her clipboard down.,laces up with a thin pink thong.,jumps into the water again and gets more volleyball from the crowd.\n11716,anetv_XD3yFrJHiv8,10299,\"The man is talking this whole time while the woman gets comfortable on her couch and the woman briefly talks. Various clips begin to play and it briefly shows parts of a city, then most of it is of men outdoors and playing soccer on sand in a middle of city, and occasionally blue words\",The man is talking this whole time while the woman gets comfortable on her couch and the woman briefly talks.,\"Various clips begin to play and it briefly shows parts of a city, then most of it is of men outdoors and playing soccer on sand in a middle of city, and occasionally blue words\",gold,fishes around the river with tourists.,pop up on the screen when certain plays in the game are made.,explain more of that matadors stream out.,appear on the screen that include people surrounded by soccer.\n11717,anetv_bFm6E4cz5tM,17893,The man watch a seal and a whale in the cold water. The man water ski in the water,The man watch a seal and a whale in the cold water.,The man water ski in the water,gold,just using the boat.,holding a rope pulled by a boat.,before furtively going away to the kayak.,uses a white waterfall.\n11718,anetv_bFm6E4cz5tM,17892,A man water ski on front a glacier. The man,A man water ski on front a glacier.,The man,gold,rides the horse down a slope bounce in a single set of rocks at the crest.,rides in a kayak and sits down two times and go up the rope.,watch a seal and a whale in the cold water.,uses a paul iron on a rope stuck on the top of a wall.\n11719,anetv_bFm6E4cz5tM,17894,\"The man water ski in the water holding a rope pulled by a boat. The man bends to pass a glacier, then he\",The man water ski in the water holding a rope pulled by a boat.,\"The man bends to pass a glacier, then he\",gold,swings it to the rim of the boat.,goes back and attempts to stay upright.,pass over an iceberg.,shows several other skiers.\n11720,anetv_bFm6E4cz5tM,17896,\"After, the man passes over an iceberg and spins, then snowboard over a big iceberg. The man slide from an iceberg and falls in the water, and people\",\"After, the man passes over an iceberg and spins, then snowboard over a big iceberg.\",\"The man slide from an iceberg and falls in the water, and people\",gold,watch and jam the rails.,throw around his face and also attempting their tricks.,sit on intertubes at the guardrail.,stand to watch an iceberg falls.\n11721,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5261,\"Someone grapples with the Turkish Agent. As someone grips his arms, we\",Someone grapples with the Turkish Agent.,\"As someone grips his arms, we\",gold,watch someone stand behind them.,see a gun in the agent's hand.,see the same chamber in full tilt.,carry him to someone.\n11722,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5264,\"Someone finally delivers the punch that sends the Turkish Agent flying overboard. Turning, someone\",Someone finally delivers the punch that sends the Turkish Agent flying overboard.,\"Turning, someone\",gold,finds the laboratory missing the criminal.,\"tries the bottle, and flings it aside.\",\"sees that someone has committed the speedboat to a course between the two freighters, now being pushed even closer together by a tugboat.\",slowly makes her way up another corridor.\n11723,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5253,\"Someone swims, looking for an escape route. The rats\",\"Someone swims, looking for an escape route.\",The rats,gold,go wild as someone emerges from the backseat of the plane.,continues as they move toward a clearing.,ruin their last names.,\"are beginning to force their way inside, swimming through the water and climbing on someone, who squirms and screams in terror.\"\n11724,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5256,\"Someone looks around at the postcard - perfect setting and smiles. Someone's delight, however,\",Someone looks around at the postcard - perfect setting and smiles.,\"Someone's delight, however,\",gold,snaps a man in front of someone.,remains someone lying on the cheek with her cheek close to his.,is short - lived since someone and two other turkish agents are running towards them with drawn guns.,is very cozy and like a platinum child.\n11725,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5268,Someone's Speedboat just manages to squeeze through the gap. But the Enemy Speedboat,Someone's Speedboat just manages to squeeze through the gap.,But the Enemy Speedboat,gold,\"him, attached his fingers, and glides along the river's edge.\",\"arms is too open for her, but he is scared to kill the others.\",\"explodes as it is crushed between the two freighters, flying into the air and splashing back down into the water.\",themselves into the entire body of water.\n11726,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5274,\"As someone's boat drifts toward the giant, turning propellers at the stern of another steamer, someone's boat draws up alongside and hits them. Someone\",\"As someone's boat drifts toward the giant, turning propellers at the stern of another steamer, someone's boat draws up alongside and hits them.\",Someone,gold,tries life with a grunt.,steps into someone's boat.,pulls the back of the submarine from his shoulder.,falls as the ark breathes up.\n11727,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5267,It's a race for daylight as the two Freighters drift ever closer to one another. Someone's Speedboat just,It's a race for daylight as the two Freighters drift ever closer to one another.,Someone's Speedboat just,gold,manages to squeeze through the gap.,hurtles out of someone's house.,glides across the street.,stops at the bottom of the hill.\n11728,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5263,\"Someone, having gained the advantage, leans on top of the Turkish Agent. Someone finally\",\"Someone, having gained the advantage, leans on top of the Turkish Agent.\",Someone finally,gold,gives her a last glance as he looks out as the horses gryffindors joyfully.,drops the letter to someone who holds it.,takes a shock out of his disapproving grasp.,delivers the punch that sends the turkish agent flying overboard.\n11729,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5258,He grabs someone by the hand and the two of them run down the dock and leap into a motorboat. Someone,He grabs someone by the hand and the two of them run down the dock and leap into a motorboat.,Someone,gold,fires up the engine and pulls away from the dock.,quickly joins many other people struggling to take the water off.,falls to the ground.,watches people gather around as water splashes on their faces.\n11730,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5275,Someone steps into someone's boat. He,Someone steps into someone's boat.,He,gold,takes a stern away from him.,\"turns away from the old hatchback, then returns to the carriage.\",\"knocks one of the turkish agents to the deck, then turns his attention to someone.\",nods curtly and leaves toward the soldier.\n11731,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5245,Someone braces his back against the altar and topples the coffin with his feet. It,Someone braces his back against the altar and topples the coffin with his feet.,It,gold,\"extends to someone, who shoots him in the face.\",crashes against the stone platform and splashes into the water.,picks it up and begins to fight.,clings to the grips with his hands caught in the air.\n11732,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5272,The machine gun runs out of ammunition. Someone,The machine gun runs out of ammunition.,Someone,gold,puts it down and takes control of the wheel from one of the turkish agents in the boat with him.,\"pulls a joint from his belt, and puts it on.\",screams and grinds meanwhile in the bathroom.,watches a light go away as he slowly steps up in it into the heat.\n11733,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5270,\"He stands in the moving boat, firing a machine gun at people. The two boats\",\"He stands in the moving boat, firing a machine gun at people.\",The two boats,gold,are now soaked with the road.,walk past a car.,\"are fired by great lake, around them.\",race across the water nearly side - by - side.\n11734,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5262,\"As someone fights with the Turk, he becomes aware of the Speedboats behind him and two enormous Freighters ahead of him, joined together by two giant ropes. Someone, having gained the advantage,\",\"As someone fights with the Turk, he becomes aware of the Speedboats behind him and two enormous Freighters ahead of him, joined together by two giant ropes.\",\"Someone, having gained the advantage,\",gold,\"carefully cut the pieces, pretending to be a human.\",\"swims in between the undergrowth with a torch, holding the glowing device straight to his forehead.\",leans on top of the turkish agent.,\"is suddenly on, running his hands around someone who clinging to his leg.\"\n11735,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5271,The two boats race across the water nearly side - by - side. The machine gun,The two boats race across the water nearly side - by - side.,The machine gun,gold,briefly briefly falls as someone helps the tiger across the living.,blaze at their participation family clipart.,runs out of ammunition.,to one side starts to wave as the waves move forward.\n11736,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5247,\"They jump into the water beside the bobbing, overturned coffin. Someone\",\"They jump into the water beside the bobbing, overturned coffin.\",Someone,gold,breaks into the white line.,\"paddles down through the paddles of the wave, including lightning.\",\"gets on crestfallen as she watches, and a surfer stares after him affectionately.\",literally dunks her and pushes her underneath.\n11737,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5276,By now half the boat has been chopped up into matchwood and the blades are getting closer. The wind of the blades,By now half the boat has been chopped up into matchwood and the blades are getting closer.,The wind of the blades,gold,are sunk back in the water.,is on their necks.,flies out on the ship's motor back side to water.,is creating a nasty growing bugs for now.\n11738,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5259,Someone fires up the engine and pulls away from the dock. Someone,Someone fires up the engine and pulls away from the dock.,Someone,gold,\"is on the passenger seat of the bus, pushed out of the other way.\",grabs the wheel and begins to steer the boat while someone and the turk trade punches.,hides behind the devastated buildings.,glares at some other women in the bushes and watches an anxious carriage approach.\n11739,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5255,\"Cafe customers are startled to see people climb out of the sewer, wet and smelly. Someone\",\"Cafe customers are startled to see people climb out of the sewer, wet and smelly.\",Someone,gold,looks around at the postcard - perfect setting and smiles.,trips over dead and goes into the water.,\"peeks in at the rear doors, leaving someone alone upside down on the pavement.\",wears a tight shirt and pushes his hair downward in synchronized motion.\n11740,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5244,Someone unfolds a piece of paper and holds it over the shield. The missing portion of the rubbing,Someone unfolds a piece of paper and holds it over the shield.,The missing portion of the rubbing,gold,is completed by the shield.,structure sails around the elaborate construction of the clearing.,take his turn off.,shines the slat into the floorboards.\n11741,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5254,\"The rats are beginning to force their way inside, swimming through the water and climbing on someone, who squirms and screams in terror. Someone\",\"The rats are beginning to force their way inside, swimming through the water and climbing on someone, who squirms and screams in terror.\",Someone,gold,tips over and winds around him.,pops back up through the water.,walks towards a desk with his head bowed.,chases someone toward the overturned frosty.\n11742,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5266,One Enemy Speedboat chases someone between the two Freighters. It,One Enemy Speedboat chases someone between the two Freighters.,It,gold,'s a race for daylight as the two freighters drift ever closer to one another.,rocks a fish and posh rock bordered coolers.,drives beyond a faint emergency and charred suv.,pads off as someone intercepts him.\n11743,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5257,\"Someone's delight, however, is short - lived since someone and two other turkish agents are running towards them with drawn guns. He grabs someone by the hand and the two of them\",\"Someone's delight, however, is short - lived since someone and two other turkish agents are running towards them with drawn guns.\",He grabs someone by the hand and the two of them,gold,\"get there, stumbling up into the ring.\",stare up at the crosswalk sign sign.,stand into the corner of a long line.,run down the dock and leap into a motorboat.\n11744,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5249,\"Someone surfaces into the air pocket created by the coffin, sputtering and spitting. Now someone\",\"Someone surfaces into the air pocket created by the coffin, sputtering and spitting.\",Now someone,gold,skids halfway down the runway.,enters with his flute restored.,learns to prepare her snowflakes for them.,pops up into the air pocket.\n11745,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5277,The wind of the blades is on their necks. Someone,The wind of the blades is on their necks.,Someone,gold,\"grabs someone just in time and jumps into the motorboat, driven by someone, which gets alongside in the nick of time.\",is wedged into the light.,stands in a flat stone hanging around its rise.,pokes someone and the latino driver gets on the bus.\n11746,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5269,Spin their boat around in a sharp half - circle to see someone's speedboat appear racing toward them. He,Spin their boat around in a sharp half - circle to see someone's speedboat appear racing toward them.,He,gold,\"quickly moves past troopers to the train bed, with the trolley coming from the front.\",\"stands in the moving boat, firing a machine gun at people.\",turns again for the phoenix crone then climbs to the edge of the raft and grabs the lifeboat.,\"sit jogging in one hand, peering into the darkness.\"\n11747,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5265,It's purely academic at this point since the hulls of the two Freighters loom up on either side of them like cavern walls. One Enemy Speedboat,It's purely academic at this point since the hulls of the two Freighters loom up on either side of them like cavern walls.,One Enemy Speedboat,gold,one a large olympic pool as someone sets off high above.,chases someone between the two freighters.,\"is wheeled between the scene with a grain, he takes it anxiously.\",\"the blast from one a girl, where she dives.\"\n11748,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5246,It crashes against the stone platform and splashes into the water. They,It crashes against the stone platform and splashes into the water.,They,gold,\"jump into the water beside the bobbing, overturned coffin.\",pop up off the wall.,\"stands distantly, dancing.\",see the iceberg looking off into the chasm as it approaches the tunnel below.\n11749,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5273,\"Someone puts it down and takes control of the wheel from one of the Turkish Agents in the boat with him. As someone's boat drifts toward the giant, turning propellers at the stern of another steamer, someone's boat\",Someone puts it down and takes control of the wheel from one of the Turkish Agents in the boat with him.,\"As someone's boat drifts toward the giant, turning propellers at the stern of another steamer, someone's boat\",gold,\"sits in the dusty lake, scuba, or the missile.\",trembles as the footage of this film moves.,draws up alongside and hits them.,\"hooked over a rim of a ship's mast, which engulfs near a pair of black waves.\"\n11750,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5250,Now someone pops up into the air pocket. He looks at someone - - they,Now someone pops up into the air pocket.,He looks at someone - - they,gold,are both soaking wet.,enjoy looking like someone.,gaze upon each other with blank eyes.,\"make no comment, reluctantly strides.\"\n11751,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5252,Someone disappears under the water and swims out from under the coffin. Someone,Someone disappears under the water and swims out from under the coffin.,Someone,gold,rises from under the umbrella.,walks off from the front.,\"swims, looking for an escape route.\",sits in a chair with her lips pressed together.\n11752,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5248,Someone literally dunks her and pushes her underneath. Someone,Someone literally dunks her and pushes her underneath.,Someone,gold,\"surfaces into the air pocket created by the coffin, sputtering and spitting.\",comes down from the couch holding a strap.,\"holds up her horn, climbs out, and walks down a narrow corridor.\",smashes a handrail onto the floor.\n11753,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5251,He looks at someone - - they are both soaking wet. Someone,He looks at someone - - they are both soaking wet.,Someone,gold,stares longingly at her husband as she tries his reflection in her dress.,leans back on her chair and gives her a look.,disappears under the water and swims out from under the coffin.,falls from the water's landing.\n11754,lsmdc0050_Indiana_Jones_and_the_last_crusade-70164,5260,Someone grabs the wheel and begins to steer the boat while someone and the Turk trade punches. Someone and his men,Someone grabs the wheel and begins to steer the boat while someone and the Turk trade punches.,Someone and his men,gold,\"disappear into a clearing, leaving the pucks in the dirt before falling back over.\",push the germans down a row of armed sailors.,rush to two more speedboats tied to the dock.,stare at the iceberg as their rafting travels along small mountains behind them.\n11755,lsmdc0021_Rear_Window-58779,19444,She comes forward hands one snifter to someone. Someone,She comes forward hands one snifter to someone.,Someone,gold,shifts away from her book.,takes out a windowed case.,reacts to her appreciatively.,enters someone's house.\n11756,lsmdc0021_Rear_Window-58779,19442,\"They are cupped in her hand, the stem between her fingers. She\",\"They are cupped in her hand, the stem between her fingers.\",She,gold,opens her mouth and nose.,makes her way to the top.,covers one of her fingers.,continues rotating the brandy.\n11757,lsmdc0021_Rear_Window-58779,19447,\"Someone stares after her, ignoring her remark, still not recovered from the fist sight of her attractiveness. Then quickly, his eyes\",\"Someone stares after her, ignoring her remark, still not recovered from the fist sight of her attractiveness.\",\"Then quickly, his eyes\",gold,rest on the cloth while he finds someone unconscious.,quickly fix his ailing father's direction as he makes a call.,flicker about the mouthpiece of his piercing and trying to blow his hammer in dust.,move down and to the left.\n11758,lsmdc0021_Rear_Window-58779,19441,She holds two large brandy snifters containing some brandy. They,She holds two large brandy snifters containing some brandy.,They,gold,come out of the dressing door.,hurry out of sight.,\"are cupped in her hand, the stem between her fingers.\",swing at them as a confused woman watches overalls.\n11759,lsmdc0021_Rear_Window-58779,19448,\"Then quickly, his eyes move down and to the left. Slowly someone's eyes\",\"Then quickly, his eyes move down and to the left.\",Slowly someone's eyes,gold,are fixed onto the binoculars as he raises his binoculars to show the great sized holes in the maize.,are closed into someone's dark eyes.,move on the automaton.,travel back to someone.\n11760,lsmdc0021_Rear_Window-58779,19446,\"She offers the second to someone. Someone bows his head slightly, but his eyes\",She offers the second to someone.,\"Someone bows his head slightly, but his eyes\",gold,fix so they don't see them.,are quiet enough to see.,remain on her in a fixed stare.,transform to the sight of their interest.\n11761,lsmdc0021_Rear_Window-58779,19443,She continues rotating the brandy. She,She continues rotating the brandy.,She,gold,comes forward hands one snifter to someone.,looks at her and nods.,lets go of her wrist.,looks down at her touch.\n11762,lsmdc0021_Rear_Window-58779,19440,He turns his head suddenly at the sound of someone coming out of the kitchen. She,He turns his head suddenly at the sound of someone coming out of the kitchen.,She,gold,takes his hands from a doll and hands it to her.,\"grapples with a doll first, begins to scream as he goes.\",\"slides off the bed, clicks off her number.\",is rotating them gently toward the body to warm the brandy.\n11763,anetv_SzCK4QuEG3c,18620,A pocket knife is taken from wooden box and held with a clamp. The man,A pocket knife is taken from wooden box and held with a clamp.,The man,gold,gets to apply a tool to the arm of the pumpkin.,uses sharpening stones on the blade of the knife.,talks on the phone as the man cuts the coke.,carefully wiped the lid with a cloth.\n11764,anetv_SzCK4QuEG3c,18619,A set of knifes rest on top of pin cones. A pocket knife,A set of knifes rest on top of pin cones.,A pocket knife,gold,is taken from wooden box and held with a clamp.,\"shows the backdrop of the pattern, once again, with the camera.\",is shown around the pumpkin.,is put to table.\n11765,lsmdc3084_TOOTH_FAIRY-39555,12156,\"Fans bang on the glass. Now, in the locker room, reporters\",Fans bang on the glass.,\"Now, in the locker room, reporters\",gold,gather around a young man.,swarm their guests discussing it.,cower from the bench.,and women sit on couches.\n11766,lsmdc3084_TOOTH_FAIRY-39555,12155,Someone enters the penalty box. Fans,Someone enters the penalty box.,Fans,gold,walks to a maintenance field.,sit in a lion's enclosure.,bang on the glass.,shoot through the zone.\n11767,lsmdc0023_THE_BUTTERFLY_EFFECT-59715,621,Someone turns to face the jeering crowd. The crowd,Someone turns to face the jeering crowd.,The crowd,gold,claps and more people look on.,breaks up and leaves.,applauds a nick of applause.,offers him the beer.\n11768,lsmdc0023_THE_BUTTERFLY_EFFECT-59715,622,The crowd breaks up and leaves. People,The crowd breaks up and leaves.,People,gold,push someone's wheelchair around the quad.,looks at the cheering and awed.,walk around a house.,are cross the street to be let in cops and handler adults.\n11769,lsmdc0023_THE_BUTTERFLY_EFFECT-59715,623,Someone now wears prosthetic arms. He,Someone now wears prosthetic arms.,He,gold,shakes his shoulders and they are gaining on a new wave.,caps his new uniform and throw his cape at two military policemen on a building.,sits with white love strapped to his shoulders.,looks up as someone rolls along and his eyes brighten to see someone.\n11770,lsmdc0023_THE_BUTTERFLY_EFFECT-59715,620,Someone carries a pair of prosthetic arms in her hands. Someone,Someone carries a pair of prosthetic arms in her hands.,Someone,gold,finds a small nod from behind.,restrains the helpless dog.,launches his body forward and spills clumsily out of the wheelchair.,spots a uniformed guard emerging from behind the gravestone.\n11771,anetv_ABQYqpWF1LA,12146,A person is seen speaking to the camera while rubbing himself in sunscreen and showing off several different kinds of lotion. The man,A person is seen speaking to the camera while rubbing himself in sunscreen and showing off several different kinds of lotion.,The man,gold,moves his hands with dried shaving gel down over his hair before putting her away and speaking to camera.,continues speaking while looking back to the camera and continues speaking into the camera.,is shown speaking with his shirt on and off while rubbing sun screen into his skin and wiping his face with a towel.,continues to demonstrate surfing as well as taking off in a long canyon and braiding a sand castle.\n11772,anetv_ABQYqpWF1LA,12933,The man is applying sunblock all over his body. The man,The man is applying sunblock all over his body.,The man,gold,is shown pointing on the billboard.,rides his bike constantly from a bag.,\"rolls over the hood, reaches into the pocket of his t - shirt while waking up.\",wraps the baby's body while it's moving.\n11773,anetv_x--RoqrwiLI,13024,A bare chested man in black track pants spins a hammer throw around and around until he releases into a field in front of him. The man then,A bare chested man in black track pants spins a hammer throw around and around until he releases into a field in front of him.,The man then,gold,picks with a different shake and gets himself in the middle of the roof move it and finally throws through large balls.,\"gets himself across the sand hundreds of feet, then completes the weight, the blade wearing an orange spike on his eyes.\",\"makes a thick demonstration to the mat, cautious, and then begins to face the backdrop of the ocean hanging onto a stone.\",goes on to perform at least six more hammer throws in the same way in the same location.\n11774,anetv_x--RoqrwiLI,13023,A man in a large green field practices over seven hammer throws in the field with a measuring tape in front of him stretched along the ground. A bare chested man in black track pants,A man in a large green field practices over seven hammer throws in the field with a measuring tape in front of him stretched along the ground.,A bare chested man in black track pants,gold,spins a hammer throw around and around until he releases into a field in front of him.,does two black iron dance uniform and a shorter routine on the machine and moves a rope to other people's shoulders.,leads a new cape.,is doing a hand stand in a tennis court while a boy watch them.\n11775,anetv_RMkaNGdydws,10948,The man placed the guid under the paper. The man cut the paper using a cutter and then he,The man placed the guid under the paper.,The man cut the paper using a cutter and then he,gold,cuts out the rock paper and measure the distance.,took the dry hand full of hand to push it with the paper.,brushed the paper with a brush.,washes the top of one of the man.\n11776,anetv_RMkaNGdydws,10949,The man cut the paper using a cutter and then he brushed the paper with a brush. The man,The man cut the paper using a cutter and then he brushed the paper with a brush.,The man,gold,finish and get through the hole.,continues cutting and trimming the strings using the tool.,placed the guide on top of the paper and cut it.,hold the red tire and hit it with a wooden knife.\n11777,anetv_RMkaNGdydws,8506,He shows off the products as he talks about how to cut metal. He then,He shows off the products as he talks about how to cut metal.,He then,gold,does a tutorial on how to use a shave.,demonstrates how to vacuums and arc the roof over back and forth.,demonstrates the technique for the camera.,uses an electric razor to add the parts in position.\n11778,anetv_RMkaNGdydws,8505,A man is working in a warehouse store. He,A man is working in a warehouse store.,He,gold,is using a scraper to clean his car.,shows off the products as he talks about how to cut metal.,reaches to clean a car.,practices explaining the equipment in the radio store at night.\n11779,lsmdc1035_The_Adjustment_Bureau-85959,12863,\"She sets it aside, then lifts her troubled gaze. Now someone\",\"She sets it aside, then lifts her troubled gaze.\",Now someone,gold,drives a young pickup truck onto country road.,moves through the files to someone's room.,sits down in the hallway as she returns to the sailboat.,approaches the ragged bar.\n11780,lsmdc1035_The_Adjustment_Bureau-85959,12864,\"Now someone approaches the ragged bar. As someone disappears inside, someone\",Now someone approaches the ragged bar.,\"As someone disappears inside, someone\",gold,walks wearily back down the elevator.,grabs his general and makes his way round the corner.,emerges from a neighboring door.,squares her chest and clenches her wrist inspecting the code.\n11781,lsmdc1035_The_Adjustment_Bureau-85959,12862,\"In her apartment, someone sits at the foot of her bed, eyeing a document. She\",\"In her apartment, someone sits at the foot of her bed, eyeing a document.\",She,gold,unbuckles her seat belt.,sits at the dressing table and chats.,\"sits at the table in the locker room, panting, his body cold and dirty.\",\"sets it aside, then lifts her troubled gaze.\"\n11782,lsmdc1035_The_Adjustment_Bureau-85959,12859,\"Seated outside a waterfront warehouse, he wears a sober frown. Now under a dusky sky, someone\",\"Seated outside a waterfront warehouse, he wears a sober frown.\",\"Now under a dusky sky, someone\",gold,is sweeping on the darkness.,sits alone on a monitor.,walks across a deserted shipping dock.,arrives outside a dorm.\n11783,lsmdc1035_The_Adjustment_Bureau-85959,12867,The bartender hands him a slip of paper. Someone,The bartender hands him a slip of paper.,Someone,gold,picks up a stack of cards and hands it over.,\"poses without a golf club, staring disbelievingly.\",rips the remote off the carnation.,\"stares after her, then reads the note.\"\n11784,lsmdc1035_The_Adjustment_Bureau-85959,12866,\"Inside, someone sits forlornly at the bar. The bartender\",\"Inside, someone sits forlornly at the bar.\",The bartender,gold,\"blows the smoke at her, man facing a female sitting next to the sexy brunette.\",sticks her head under the register.,\"drifts away, pours into a mug.\",hands him a slip of paper.\n11785,lsmdc1035_The_Adjustment_Bureau-85959,12868,\"Someone stares after her, then reads the note. At dusk, under pouring rain, he\",\"Someone stares after her, then reads the note.\",\"At dusk, under pouring rain, he\",gold,\"dives into the river, later he's holding his board and gets someone over the top of a motor boat.\",holds his jacket over his head as he runs along a dock to a warehouse.,stares at the phone to her.,\"walks past the mannequin bottles, puts them on and crosses to the porch, bends low to pick her up.\"\n11786,lsmdc1035_The_Adjustment_Bureau-85959,12861,\"He carelessly tracks his feet through a large glassy puddle and stops at the dock's edge, gazing toward the low sun. In her apartment, someone\",\"He carelessly tracks his feet through a large glassy puddle and stops at the dock's edge, gazing toward the low sun.\",\"In her apartment, someone\",gold,follows her out of the walkway and finds someone at the railing.,\"is making her way to the shore of a carriage, dressed in a large usually one without shorts.\",\"sits at the foot of her bed, eyeing a document.\",lands at a partially wrapped closed computer enclosure.\n11787,lsmdc1035_The_Adjustment_Bureau-85959,12860,\"Now under a dusky sky, someone walks across a deserted shipping dock. He\",\"Now under a dusky sky, someone walks across a deserted shipping dock.\",He,gold,is lost on another blanket.,close up from a safe as he crashes through with twelve minutes.,heads along the courtyard to the hole.,\"carelessly tracks his feet through a large glassy puddle and stops at the dock's edge, gazing toward the low sun.\"\n11788,lsmdc1035_The_Adjustment_Bureau-85959,12869,\"At dusk, under pouring rain, he holds his jacket over his head as he runs along a dock to a warehouse. In the evening, he\",\"At dusk, under pouring rain, he holds his jacket over his head as he runs along a dock to a warehouse.\",\"In the evening, he\",gold,\"steps up outside a building and sits in a wall, gazing straight ahead.\",\"leans on the wall, waiting.\",scrapes the overwhelming substance from a cleaning wardrobe.,finds a noncommittal staring in the back seat of someone's van.\n11789,anetv_55bimE5eU9E,9299,A man and a woman stand by each other as the man speaks. The woman,A man and a woman stand by each other as the man speaks.,The woman,gold,reaches down and lifts a bar.,displays an earring into a contact lens.,strokes the other woman's face.,drops the leaves and puts them in a bucket.\n11790,anetv_55bimE5eU9E,9302,She lifts the bar over her head and brings it down to her thigh area to continue the small lifts. She,She lifts the bar over her head and brings it down to her thigh area to continue the small lifts.,She,gold,continues to read her half - timer.,peers out of the window and looks down.,brings the bar back over her head and drops it down to the ground.,lifts the girl's head.\n11791,anetv_55bimE5eU9E,9301,She continues the small lifts and adds a variance of big lifts. She,She continues the small lifts and adds a variance of big lifts.,She,gold,make a design on the scale while reading.,takes a deep breath and chews a blueprint.,throws a bottle in front of a store cabinet.,lifts the bar over her head and brings it down to her thigh area to continue the small lifts.\n11792,anetv_55bimE5eU9E,9300,The woman reaches down and lifts a bar. She,The woman reaches down and lifts a bar.,She,gold,makes small lifts against her thighs.,adjusts the lace while standing on piano.,pins her body to the ferrari's rim.,walks up on the rod and bends down to pot the liquid.\n11793,anetv_OKTxSQMS560,10337,We see an opening screen with a dog. We,We see an opening screen with a dog.,We,gold,see a lady putting shades on spray on the black pixie face.,see a lady in a nurse shirt talking and two dogs in a kitchen.,see a series of people playing ping pong.,see a lady perform several vacuum cleaners.\n11794,anetv_OKTxSQMS560,10339,The lady has a small wet dog she is vacuuming on table and is brushing the dog. We,The lady has a small wet dog she is vacuuming on table and is brushing the dog.,We,gold,are scrubs with no security.,\"rest on the brushing dog, the dog is in the house and then she is blown to stand up.\",see the dogs running around on the kitchen floor.,the woman is putting makeup on her face which she shows to the brush of the dog on her arm.\n11795,anetv_OKTxSQMS560,10338,We see a lady in a nurse shirt talking and two dogs in a kitchen. The lady,We see a lady in a nurse shirt talking and two dogs in a kitchen.,The lady,gold,has a small wet dog she is vacuuming on table and is brushing the dog.,uses a card to help the lady a cat on her ironing board.,drops a potato onto the floor and starts brushing her nails.,brushes the horses teeth and waves it away.\n11796,anetv_OKTxSQMS560,10341,We see the lady shave a dogs fur and brush the dog. We then,We see the lady shave a dogs fur and brush the dog.,We then,gold,see the lady in the hair washing her hair.,see the dogs on the floor again.,see a black dog to pet the dog.,see the ending card with a compact of white.\n11797,anetv_OKTxSQMS560,10340,We see the dogs running around on the kitchen floor. We,We see the dogs running around on the kitchen floor.,We,gold,close the screen of a computer and see the titles from.,see the closing title screen.,see a third pile sliding down the floor.,see the lady shave a dogs fur and brush the dog.\n11798,anetv_OKTxSQMS560,10342,We then see the dogs on the floor again. We,We then see the dogs on the floor again.,We,gold,see the lady clip the cats lip.,see a man zoom towards it with the bull.,see two guys on the toy interviewed.,see the lady and her contact info over her face.\n11799,anetv_pznmOdbp7E0,13319,\"After mixing the cake ingredients she pour it on a glass bowl and put it inside the oven, bake it and insert a toothpick in the middle and inspect it and pull out the cake. It\",\"After mixing the cake ingredients she pour it on a glass bowl and put it inside the oven, bake it and insert a toothpick in the middle and inspect it and pull out the cake.\",It,gold,being sliced and white are shown on the screen.,is allowed to cool and add ready made icing an sprinkles on top.,needle the top of the cake.,shows the entire cake and the video stage show.\n11800,anetv_pznmOdbp7E0,13318,The materials listed are on the top of the kitchen counter while a girl is pointing on the temperature setting of the oven. The girl,The materials listed are on the top of the kitchen counter while a girl is pointing on the temperature setting of the oven.,The girl,gold,starts to make the cake with the written instruction at the bottom.,paints the polish from three polishes on the black right and places it on a painted counter.,moves vegetables up and shows the pan using toothpaste to put it on the baking sheet.,applies up the baking soda and puts flames around it.\n11801,anetv_pznmOdbp7E0,13317,A rectangular bowl of cake is top of stove followed by the ingredients and equipments list. The materials listed,A rectangular bowl of cake is top of stove followed by the ingredients and equipments list.,The materials listed,gold,are on the top of the kitchen counter while a girl is pointing on the temperature setting of the oven.,are shown with the cake and a plate with various ingredients placed on the table.,are displayed on a top.,are shown in various bowls of water.\n11802,anetv_Ly21QMQ4kGA,211,\"A table of food is shown and the person recording grabs a cookie and leaves the room. The next room he enters, there are several people standing around playing beer pong and he\",A table of food is shown and the person recording grabs a cookie and leaves the room.,\"The next room he enters, there are several people standing around playing beer pong and he\",gold,proceeds to walk through the house.,drinks no more joke.,briefly understands some german.,puts down the mug in ice.\n11803,lsmdc0041_The_Sixth_Sense-68110,10560,His eyes are drawn to the dining table. Only one place setting,His eyes are drawn to the dining table.,Only one place setting,gold,is for an accompanying.,is the same shape: someone: the middle of the aisle people faceless who are lying prone on the floor.,remains intent on the breakfast timing.,is out on the tabletop.\n11804,lsmdc0041_The_Sixth_Sense-68110,10561,Only one place setting is out on the tabletop. His eyes search again - - they finally,Only one place setting is out on the tabletop.,His eyes search again - - they finally,gold,rearrange out to clear them.,finds the peak at a motionless naked.,stifles what he sees.,lock on the wedding video playing.\n11805,lsmdc0041_The_Sixth_Sense-68110,10563,Someone watches images of himself on the screen. His eyes,Someone watches images of himself on the screen.,His eyes,gold,are put on sight.,fill with a storm of emotions.,settle on his lip - gloss.,cling on someone and wave.\n11806,lsmdc0041_The_Sixth_Sense-68110,10562,His eyes search again - - they finally lock on the wedding video playing. Someone,His eyes search again - - they finally lock on the wedding video playing.,Someone,gold,watches images of himself on the screen.,keeps facing someone through the scope.,licks a scanner on someone's hand.,\"puts her cake on the curb of the kitchen, then the kitchen.\"\n11807,lsmdc0041_The_Sixth_Sense-68110,10559,He looks in disbelief at the set of dead bolt locks on the door. His eyes,He looks in disbelief at the set of dead bolt locks on the door.,His eyes,gold,are still on him.,are drawn to the dining table.,\"shift, but he heads off.\",are already filled with perspiration.\n11808,lsmdc0041_The_Sixth_Sense-68110,10558,His eyes come to rest on the door to his basement office. He,His eyes come to rest on the door to his basement office.,He,gold,kisses the intercom and a lion comes consulting.,looks in disbelief at the set of dead bolt locks on the door.,places it on the luxurious counter.,\", someone shuts the door behind him, leans inside and opens the door.\"\n11809,lsmdc1014_2012-79183,19167,Someone descends steps in the Antinov. He,Someone descends steps in the Antinov.,He,gold,points his thumb upstairs.,\"scowls, later, someone.\",drops the yellow - shaped structure in the dark and falls off.,solemnly grabs another union gi.\n11810,lsmdc0038_Psycho-67198,1779,\"Someone looks weary, tired with strain and with hard driving. Her eyes\",\"Someone looks weary, tired with strain and with hard driving.\",Her eyes,gold,are on horror as rain lies.,are heavy with worry and deep thought.,\"stay ahead on someone, who stands locked against him.\",\"are distant, quiet and peaceful.\"\n11811,lsmdc0038_Psycho-67198,1780,Her eyes are heavy with worry and deep thought. We,Her eyes are heavy with worry and deep thought.,We,gold,look behind her desk.,\"alert someone appears in someone's bed, while an old woman is having her penned right on her hind legs.\",\"can see that it is much later in the day, almost dusk.\",\", watery line members stretch up the hill in a country park over various angeles, shaped hike, loops and cigarettes.\"\n11812,lsmdc0038_Psycho-67198,1781,\"We can see that it is much later in the day, almost dusk. Now we\",\"We can see that it is much later in the day, almost dusk.\",Now we,gold,drift beneath the ornate gardens.,see someone and someone having a good time.,drift down the street from the main entrance in the rain.,\"cut to the view of the road, from someone's viewpoint.\"\n11813,lsmdc0038_Psycho-67198,1782,Darkness of evening is coming. In the dim twilight we,Darkness of evening is coming.,In the dim twilight we,gold,see the neon sign of roadside restaurants and gas stations beginning to blaze on.,\"see a solitary figure sitting on the left, staring in an empty den.\",see the white lights of the lantern drawn by the outline of a salesman's carving.,\"see someone bedroom in candlelight, candle pajamas, and closing time.\"\n11814,lsmdc0038_Psycho-67198,1778,\"Camera is close on someone's face now, recording her anxiety, her fears. Someone\",\"Camera is close on someone's face now, recording her anxiety, her fears.\",Someone,gold,\"reaches over, picks up the receiver, and looks at her sharply.\",\"looks weary, tired with strain and with hard driving.\",stands on a monitor showing her talent.,moves closer and pulls off his hammer.\n11815,lsmdc0038_Psycho-67198,1783,In the dim twilight we see the neon sign of roadside restaurants and gas stations beginning to blaze on. A flush of painful guilt and regret,In the dim twilight we see the neon sign of roadside restaurants and gas stations beginning to blaze on.,A flush of painful guilt and regret,gold,rises up in someone's face.,are shown up the length of the empty room.,reflects on the card.,can not even come where it is.\n11816,anetv_N8BlpYSpgg4,10421,A woman is sitting on the ground holding a banner and is talking. The protesters,A woman is sitting on the ground holding a banner and is talking.,The protesters,gold,are standing on the side holding signs and banners.,are now on the mountain of a snowy slope very fast to the mountain.,compete in a band that are standing in musicians with her playing.,are waiting in the room for the race.\n11817,anetv_N8BlpYSpgg4,10420,The people are lying on the ground with red paint on their back. A woman,The people are lying on the ground with red paint on their back.,A woman,gold,is sitting on the ground holding a banner and is talking.,is sitting at the side of the house with a little black shovel.,holds up the blue sky with a covered child.,picks up a yellow pepper and cleans it.\n11818,anetv_HfN967uah8o,7073,A little girl laughs as she speeds down the hill. They,A little girl laughs as she speeds down the hill.,They,gold,ride as wave cool around their backs.,take her upstairs and then moves to a stop next to the swing.,are passed by another group going faster.,continue racing around the water going hopelessly towards the mountain and mountains.\n11819,anetv_HfN967uah8o,3615,More people are seen riding down a snowy hill on tubes as well as laughing into the camera. More children,More people are seen riding down a snowy hill on tubes as well as laughing into the camera.,More children,gold,are seen riding down water in a raft while also stopping to watch.,play on the hill and pull one another along down the mountain.,are seen riding around the beach as well as moving down a set track.,are seen riding with boats and several people riding around in tubes.\n11820,anetv_HfN967uah8o,7072,A bunch of people are riding tubes down snowy hills. A little girl,A bunch of people are riding tubes down snowy hills.,A little girl,gold,laughs as she speeds down the hill.,walks in the bottom of the mountain.,is seen riding a large jet device in the snow.,is snowboarding over a set.\n11821,anetv_HfN967uah8o,3614,A person is seen riding in a tube and looking at the camera. More people,A person is seen riding in a tube and looking at the camera.,More people,gold,are seen riding in the boat and others standing around the area.,are seen riding down a snowy hill on tubes as well as laughing into the camera.,ride around the tubes while others watch on the side.,speak into the camera while the people turn and walk towards the water.\n11822,anetv_7D5ItfgJFVw,17910,The white rabbit is in the cage. The rabbit,The white rabbit is in the cage.,The rabbit,gold,is clean stuck in its mouth.,\"is leaning towards the girls, swinging back and forth.\",is cleaning its hands by licking it.,is joined up behind the slack.\n11823,anetv_6VNFwlzQiuc,9540,\"A person is seen speaking to the camera and walking into a tattoo shop, followed by a person getting tattooed by an artist. The man\",\"A person is seen speaking to the camera and walking into a tattoo shop, followed by a person getting tattooed by an artist.\",The man,gold,points to several photos as well as raising your legs and leads into pictures fighting with others and walking it back.,begins shaving his legs with the tattoo clippers and pointing to the camera with his hand while still giving the camera a tattoo.,continues speaking to the camera while another is being tattooed in the background and continues speaking to the camera.,runs a little through the areas around his eyes and leads into him spraying down the plaster and speaking to the camera.\n11824,lsmdc1004_Juno-6542,8010,They take up the armchair. The armchair,They take up the armchair.,The armchair,gold,is shoved into the back of a car.,leaned against someone's toned lips.,shows the room sitting on the floor behind them.,talks as someone sits by someone.\n11825,anetv_W3TQnn0q9kc,2469,\"After, a person water surfs making pirouettes but falls, as well other water surfers fall. A person\",\"After, a person water surfs making pirouettes but falls, as well other water surfers fall.\",A person,gold,dives into the water bottle.,\"surfs holding a rope attached from a pole, but falls to the water.\",in a shirt is swimming outside with others following by on it.,hug each other.\n11826,anetv_W3TQnn0q9kc,2468,\"A person, water surf close to a boat holding a rope but he falls,, and reporters comment in teh studio. After, a person water\",\"A person, water surf close to a boat holding a rope but he falls,, and reporters comment in teh studio.\",\"After, a person water\",gold,seems happy as well as people riding.,jumps on the boat as a night surfer floats in the water.,ski to the top of the slope and lit up underwater.,\"surfs making pirouettes but falls, as well other water surfers fall.\"\n11827,anetv_W3TQnn0q9kc,3057,More shots of people in a studio are shown laughing and leads into people falling into the water. The people continue watching the videos and laughing and more people continuously,More shots of people in a studio are shown laughing and leads into people falling into the water.,The people continue watching the videos and laughing and more people continuously,gold,fall into the water.,shooting the final shot of the field.,lift into the pool and continue performing in front of it while waiting.,go down the river.\n11828,anetv_W3TQnn0q9kc,2466,\"A woman talks in a tv studio, and a man water surf behind a boat. Then, people sail in a boat, then a teen jumps in the water to surfboard, but the teen\",\"A woman talks in a tv studio, and a man water surf behind a boat.\",\"Then, people sail in a boat, then a teen jumps in the water to surfboard, but the teen\",gold,falls in the water.,keeps swinging in the water.,spreads the wave on in the boats.,sails a boat in the background.\n11829,anetv_W3TQnn0q9kc,3056,A woman is seen speaking to the camera and follows into several shots of people performing water sports. More shots of people in a studio,A woman is seen speaking to the camera and follows into several shots of people performing water sports.,More shots of people in a studio,gold,are shown as well as performing scoring moves as well as riding in the gym and jumping in.,are shown with various people performing a routine on the disk.,are shown laughing and leads into people falling into the water.,enjoying a game as well as one man faces into a camera and ends by shots of people playing beer pong.\n11830,anetv_W3TQnn0q9kc,2467,\"Then, people sail in a boat, then a teen jumps in the water to surfboard, but the teen falls in the water. A person, water surf close to a boat holding a rope but he falls,, and reporters\",\"Then, people sail in a boat, then a teen jumps in the water to surfboard, but the teen falls in the water.\",\"A person, water surf close to a boat holding a rope but he falls,, and reporters\",gold,fly out in the water before the large waves of people are shown sailing through the sea.,comment in teh studio.,rush them both around a boat.,stand on the side as the survivor watches.\n11831,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14201,He sticks his toothbrush in his ear. He,He sticks his toothbrush in his ear.,He,gold,heaves a remote his face and presses a blowtorch to the floor.,shakes someone's seat belt.,\"gulps, then spits it out without breaking his stride.\",picks up a cup and drinks.\n11832,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14203,\"Looking slightly embarrassed, someone grins. Someone\",\"Looking slightly embarrassed, someone grins.\",Someone,gold,holds him tight as he accepts it.,watches the boys head violently away.,gives him a knowing look.,turns to the advent stranger.\n11833,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14200,She half - turns to him. He,She half - turns to him.,He,gold,\"glances back at her, then leans forward.\",sashays into the room.,steps into the kitchen.,zips up her dress.\n11834,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14207,The Minister lays a flat pouch on the table. Someone,The Minister lays a flat pouch on the table.,Someone,gold,\"poopsie aims his stick, and holds the wand.\",grabs someone and flies onto the fire.,lifts one to the kind - operated gardening machine.,takes a document from his briefcase.\n11835,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14206,Someone joins people on the sofa. The Minister,Someone joins people on the sofa.,The Minister,gold,te reporter meets at them.,stops someone as someone plays.,lays a flat pouch on the table.,knocks away from him.\n11836,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14199,The back of her beaded dress is unfastened. He,The back of her beaded dress is unfastened.,He,gold,drops the magazine into a nearby chair and takes off someone's money.,\"creatures creatures, pine - like clusters, are buffeted by the vampires, to bow.\",\"walks over and stands behind her, hesitating for a moment.\",clean the floor as well as showing a sequence to the reception that is nails.\n11837,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14205,People face someone in the living room. Someone,People face someone in the living room.,Someone,gold,joins people on the sofa.,follows someone up the stairs.,is stepping on a tray of food.,lays his hand on the boy's arm.\n11838,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93718,14208,Someone takes a document from his briefcase. It,Someone takes a document from his briefcase.,It,gold,speeds down the middle of the street.,looks down at the churning water.,floats in front of him opening as it does so.,looks at someone and steps forward.\n11839,lsmdc1059_The_devil_wears_prada-98955,18407,\"With a smile on her face, someone strolls off along the Place de la Concorde. The Manhattan and Brooklyn suspension bridges\",\"With a smile on her face, someone strolls off along the Place de la Concorde.\",The Manhattan and Brooklyn suspension bridges,gold,follow between her and her feet.,\"stretch across the east river, which flows through the endless sprawl of buildings that make up new york city.\",with silver that drones emerge from the back facade where the street appear building behind displays.,pass along bordered with mountains in the middle of which walks the road.\n11840,lsmdc1059_The_devil_wears_prada-98955,18409,A casually - dressed someone is sitting in a coffee shop reading a newspaper. She,A casually - dressed someone is sitting in a coffee shop reading a newspaper.,She,gold,\"pops her head out in a breeze coat, covering a glance with candlelight.\",\"sits at her desk, smiling at the dirty book, and studies the magazine.\",looks up as someone walks in and sits down in front of her.,holds up a folded doll.\n11841,lsmdc1059_The_devil_wears_prada-98955,18402,Someone gets out of the car and watches someone as she makes her way through the throng. Someone,Someone gets out of the car and watches someone as she makes her way through the throng.,Someone,gold,turns over to show her reluctantly filling a sidewalk.,steps back from the iron bars and lowers himself onto the water.,\"turns the wheel, grimaces heavily, and gazes away from the window.\",\"ponders for a moment, then turns and walks off in the opposite direction.\"\n11842,lsmdc1059_The_devil_wears_prada-98955,18408,\"The Manhattan and Brooklyn suspension bridges stretch across the east river, which flows through the endless sprawl of buildings that make up New York City. A casually - dressed someone\",\"The Manhattan and Brooklyn suspension bridges stretch across the east river, which flows through the endless sprawl of buildings that make up New York City.\",A casually - dressed someone,gold,\"enters the house in park and faces us, mickey and nonchalant.\",throws one dollar card at the time.,is sitting in a coffee shop reading a newspaper.,looks the middle italian flag.\n11843,lsmdc1059_The_devil_wears_prada-98955,18403,\"Someone ponders for a moment, then turns and walks off in the opposite direction. Expecting someone to be behind her, someone\",\"Someone ponders for a moment, then turns and walks off in the opposite direction.\",\"Expecting someone to be behind her, someone\",gold,\"takes his gun and waves it at her, then self - consciously.\",turns back to address her.,\"is smashed, laughing for a few seconds.\",jumps and reaches up to shoot his gun on a nearby table.\n11844,lsmdc1059_The_devil_wears_prada-98955,18400,\"Someone puts on a pair of large sunglasses, smiles at someone and steps out of the car. A swarm of photographers\",\"Someone puts on a pair of large sunglasses, smiles at someone and steps out of the car.\",A swarm of photographers,gold,are waiting hungrily outside of the entrance of a grand building.,have pools on the inside of multiple police cars.,greets a figure and the woman in an elevator in the room.,\"gather behind the grave, her heels clicking on the ground below her.\"\n11845,lsmdc1059_The_devil_wears_prada-98955,18401,A swarm of photographers are waiting hungrily outside of the entrance of a grand building. Someone,A swarm of photographers are waiting hungrily outside of the entrance of a grand building.,Someone,gold,\"rises from his car, pulling door path, then runs to the gate then climbs over it.\",gets out of the car and watches someone as she makes her way through the throng.,shows it to someone.,\"approaches the house, wielding their guns.\"\n11846,lsmdc1059_The_devil_wears_prada-98955,18404,\"Expecting someone to be behind her, someone turns back to address her. She\",\"Expecting someone to be behind her, someone turns back to address her.\",She,gold,goes and lets go of it.,\"looks around in confusion, then sees her young assistant striding off across the road.\",\"turns her face out of the dining room, and looks unhappily over.\",has clips of glasses as she is dancing offscreen.\n11847,lsmdc1059_The_devil_wears_prada-98955,18406,Someone walks towards an ornate green and gold fountain. Someone,Someone walks towards an ornate green and gold fountain.,Someone,gold,\"follows someone to the bar, keeping fixes his position at the box.\",waits the long - legged steps to the big house.,is sitting at the table and reads a book printed on the note.,throws the phone into the fountain.\n11848,anetv_ig8RaXkocJ0,19484,Two wrestlers are shown jumping into the ring. They,Two wrestlers are shown jumping into the ring.,They,gold,pull out of the wrestling ring.,are then shown on the ring.,collapse as different people do the same jump.,repeat the number on the wrestling ring.\n11849,anetv_ig8RaXkocJ0,19483,A man has his hands in the air. Two wrestlers,A man has his hands in the air.,Two wrestlers,gold,are shown jumping into the ring.,are engaged in blue in red.,are talking in a room.,\"are sitting around the table, looking out.\"\n11850,anetv_cJyl4yqFuK0,16844,A young child is seen sitting next to a tub and bending over the side. A person,A young child is seen sitting next to a tub and bending over the side.,A person,gold,splashes down on them up with a towel.,speaks to her on the side while she looks back to the camera.,returns to the cake and pours it into a sink.,is seen kneeling down in the kitchen using an arm to exercise.\n11851,anetv__dFzOHyZSNk,18524,Two men are long boarding down a hill. He,Two men are long boarding down a hill.,He,gold,stops and puts his foot down on the ground.,\"begins walking through the yard, one to one begins laughing.\",retreats with each other but starts running.,are on harness with.\n11852,anetv__dFzOHyZSNk,18526,He is standing on his board upside down. A man in a green shirt,He is standing on his board upside down.,A man in a green shirt,gold,is throwing darts at a dart board.,is sitting on the ground with his long board in front of him.,holds a jump rope where he uses his feet to turn on his wipers.,is standing on top of him.\n11853,anetv__dFzOHyZSNk,18525,He stops and puts his foot down on the ground. He,He stops and puts his foot down on the ground.,He,gold,starts a fast pace with his jump rope.,pulls the emergency handle.,is standing on his board upside down.,moves his hand and begs at the glass.\n11854,anetv_g5-CU3qfSWY,16633,A person is seen running down a long track with a pole and attempting to push herself forward. Her run,A person is seen running down a long track with a pole and attempting to push herself forward.,Her run,gold,continues by carrying all the falls off her shoulders and moving across areas that she is holding.,performs tricks while swinging to the camera as it walks over the hills.,is shown again in slow motion as another person attempts to push over the pole and fails.,pans around a large fence attempting to set a javelin.\n11855,anetv_g5-CU3qfSWY,16634,Her run is shown again in slow motion as another person attempts to push over the pole and fails. More clips,Her run is shown again in slow motion as another person attempts to push over the pole and fails.,More clips,gold,are shown of people attempting to jump over the wall and not making it high enough.,are shown of the people running in the track while others attempts to pop someone at the end.,are shown of people surfing videos shown followed by the players playing water polo and playing several more times.,are shown of two men swimming around each other while underwater and getting it ready.\n11856,anetv_xaMEGQCxddY,930,Old videos are shown of track meets. A man,Old videos are shown of track meets.,A man,gold,drives with a bunch of kids talking to them with multiple backs.,is sanding down a long lane.,is shown multiple times as he throws a discus.,begins to run in a choreography.\n11857,anetv_xaMEGQCxddY,931,A man is shown multiple times as he throws a discus. He,A man is shown multiple times as he throws a discus.,He,gold,bounces the ball and calls towards a door.,talks about the players.,throws sheet up after a fire.,\"spins in circles, then throws the disc as far as he can.\"\n11858,lsmdc0014_Ist_das_Leben_nicht_schoen-54704,7182,The four of them parade through the office; someone puts the two dollars in the safe. Someone,The four of them parade through the office; someone puts the two dollars in the safe.,Someone,gold,steals a gun from someone.,climbs into the mercedes.,\"wipes someone's face with a towel, and sinks to the ground.\",rushes into his office to look out the window.\n11859,anetv_zzz_3yWpTXo,15820,A woman is seen standing behind a sink and washing dishes while speaking to the camera. The woman,A woman is seen standing behind a sink and washing dishes while speaking to the camera.,The woman,gold,continues washing clothes and a bucket and water drying the woman's leg.,continues speaking to the camera and ends by herself playing the dishes.,pours toothpaste onto the woman and scrubs them with a hose.,continues washing silverware while looking over to the camera and smiling.\n11860,lsmdc0027_The_Big_Lebowski-63052,15344,\"He finishes hammering, rises and grabs a straightbacked chair that stands nearby. When the door is opened - - outwards, The chair\",\"He finishes hammering, rises and grabs a straightbacked chair that stands nearby.\",\"When the door is opened - - outwards, The chair\",gold,\"shows oval office, listening to someone's bedside.\",is half filled with thick wooden foil.,clatters to the floor.,\"is held open, someone ignores someone.\"\n11861,lsmdc0027_The_Big_Lebowski-63052,15345,\"When the door is opened - - outwards, The chair clatters to the floor. Out of the blackness something\",\"When the door is opened - - outwards, The chair clatters to the floor.\",Out of the blackness something,gold,is immediately caught in the hayseeds.,\"has dumped, splintering the industrial like a large rock.\",is falling toward us.,\"blows towards someone's face with a red, and the figure turning away towards someone.\"\n11862,lsmdc0027_The_Big_Lebowski-63052,15346,\"Out of the blackness something is falling toward us. It is a woman, falling in slow motion, her limbs flailing, her mouth\",Out of the blackness something is falling toward us.,\"It is a woman, falling in slow motion, her limbs flailing, her mouth\",gold,fumbling open as she has sunk back in the backseat with her broken adolescent one.,quivering up by the scruff of her wand.,contorted by either fear or ecstasy.,furrowing behind the back of the train.\n11863,lsmdc0027_The_Big_Lebowski-63052,15347,\"It is a party, lit by festive beach lights and standing kerosene heaters. A man\",\"It is a party, lit by festive beach lights and standing kerosene heaters.\",A man,gold,puts one arm around each shoulder as they try to make their escape.,\"sits on its front stoop, studies him, then moves closer to someone.\",\"sits in the middle of the harbor, seated looking after him.\",walks towards the camera through the pools of beach light.\n11864,anetv_POYg9zju63U,14066,A woman is raking leaves into a pile. Another woman,A woman is raking leaves into a pile.,Another woman,gold,is shown laying on the ground.,is raking leaves away from a street.,is shown raking the snow.,is helping her decorate the floor.\n11865,anetv_POYg9zju63U,14067,Another woman is raking leaves away from a street. A man,Another woman is raking leaves away from a street.,A man,gold,asks her to wash her.,stands on a yard with a potted plant.,flips the camera around and talks.,walks and puts her in a tree and starts vacuuming.\n11866,anetv_POYg9zju63U,14449,A person is seen raking a pile of leaves in the yard while speaking and pointing to the camera. The camera,A person is seen raking a pile of leaves in the yard while speaking and pointing to the camera.,The camera,gold,pans around outside the camera as the camera pans back to the camera and lit more ingredients around the house.,pans all around to where the girl is pointing and walks back to zoom in on her face.,pans closer to the camera and shows all of the dogs sitting on a fence.,pans up to show the man looking off into the distance.\n11867,anetv_njsO-Nlwkmg,17523,A child plays with a vacuum attachment piece in a bedroom. The mother,A child plays with a vacuum attachment piece in a bedroom.,The mother,gold,throws the vacuum back and forth toting the hose.,takes a bite of the cake and plays to the camera.,moves a ladder to the floor.,vacuums the floor of the bedroom.\n11868,anetv_njsO-Nlwkmg,17524,The mother vacuums the floor of the bedroom. The child,The mother vacuums the floor of the bedroom.,The child,gold,unties up the arm of the group.,continues to press the floorboards.,\"jumps and puts the position on the floor, then scoops away the kid in a trowel.\",brings the vacuum attachment into the next bedroom.\n11869,anetv_yvzlX5St_Ok,17988,People are driving bumper cars on a brown floor. The bumper cars,People are driving bumper cars on a brown floor.,The bumper cars,gold,are being removed by cars.,are parked all across the driveway.,collide with each other.,are waiting very close.\n11870,lsmdc3015_CHARLIE_ST_CLOUD-1111,1179,\"He puts his baseball cap on, then wipes his nose on the back of his hand. Gazing skyward, he\",\"He puts his baseball cap on, then wipes his nose on the back of his hand.\",\"Gazing skyward, he\",gold,pretends to hit the trolley through a glass divider.,adjusts the hat lower on his forehead.,leans toward someone else.,joins a bald indian surfer wearing a suit slumped over his head.\n11871,lsmdc3015_CHARLIE_ST_CLOUD-1111,1178,\"In the glade, someone drops his gaze. He\",\"In the glade, someone drops his gaze.\",He,gold,\"goes to his bed and pulls on the bathrobe, covering his mouth with his hand.\",\"puts his baseball cap on, then wipes his nose on the back of his hand.\",\"sticks his jaw, recoils, then holds the ball to his lips.\",\"stands, sets his head on the canvas, and plants his feet.\"\n11872,lsmdc3015_CHARLIE_ST_CLOUD-1111,1175,\"In Quincy, the dock lights turn on and the sunset cannon fires. In the cemetery, shadows\",\"In Quincy, the dock lights turn on and the sunset cannon fires.\",\"In the cemetery, shadows\",gold,are scattered above a vast city.,hang through the ivy.,lie from a glass in a large metal carriage.,stretch over the grass.\n11873,lsmdc3015_CHARLIE_ST_CLOUD-1111,1180,\"Gazing skyward, he adjusts the hat lower on his forehead. Several teardrops\",\"Gazing skyward, he adjusts the hat lower on his forehead.\",Several teardrops,gold,\"survivors confer, his breath remains fixed on the floor.\",show a helmeted convoy outside.,plummet down his cheeks.,burst through the roach train.\n11874,lsmdc3015_CHARLIE_ST_CLOUD-1111,1173,It glints in the brilliant. He,It glints in the brilliant.,He,gold,rises over the deluminator.,flicks the key through the air can and leaves.,\"stares at the necklace with a knit brow, then squeezes his fist and turns his resolute glare toward the water.\",looms through the tuning lights.\n11875,lsmdc3015_CHARLIE_ST_CLOUD-1111,1176,\"The boy stares expectantly at the other end of the clearing, then shakes his hair out of his eyes. He\",\"The boy stares expectantly at the other end of the clearing, then shakes his hair out of his eyes.\",He,gold,splashes water by a man in a wetsuit.,flicks the pumpkin inside the cage.,pats him on the shoulder.,gives a slight wince.\n11876,lsmdc3015_CHARLIE_ST_CLOUD-1111,1177,He gives a slight wince. His lips,He gives a slight wince.,His lips,gold,pout into a frown.,drift still and shakes his head.,curl into a small knowing.,waggling upward.\n11877,lsmdc3015_CHARLIE_ST_CLOUD-1111,1174,\"He stares at the necklace with a knit brow, then squeezes his fist and turns his resolute glare toward the water. In Quincy, the dock lights\",\"He stares at the necklace with a knit brow, then squeezes his fist and turns his resolute glare toward the water.\",\"In Quincy, the dock lights\",gold,turn on and the sunset cannon fires.,abandon the vehicles face.,soar out at the horizon.,reverse as lights flash behind the goats.\n11878,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2636,\"Her eyes peeled, she gazes into the gloom. Narrowing her eyes, she\",\"Her eyes peeled, she gazes into the gloom.\",\"Narrowing her eyes, she\",gold,raises her lip demurely.,hugs her estranged laotong.,peers towards the dark shadows under the trees.,finds a young man in a bathroom now sits on jaggerman's bed.\n11879,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2639,The second man drops the body from his shoulder. The man,The second man drops the body from his shoulder.,The man,gold,does as he is told.,rolls to the ground and struggles to spin it back up.,dismounts the slack section with the man before starting down the mountain slope.,\"kisses two coaches, then returns two scissors to his side to make the point.\"\n11880,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2637,\"Narrowing her eyes, she peers towards the dark shadows under the trees. In the tent, someone\",\"Narrowing her eyes, she peers towards the dark shadows under the trees.\",\"In the tent, someone\",gold,makes gum as he struggles to seal the box.,watches as someone drums through the front door.,studies the marauder's map.,\"sits with her arms folded, and pads over her chair.\"\n11881,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2642,Someone steps out of the tent. He,Someone steps out of the tent.,He,gold,sees the two of them together.,lifts a cigarette from his lips.,calls toward the minister.,puts his hand on someone.\n11882,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2641,They walk towards the tent. Someone,They walk towards the tent.,Someone,gold,\"stirs in the circle, quickly sulky her face.\",notices an unconscious man looking anxious.,steps out of the tent.,lowers his gaze and walks away.\n11883,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94114,2640,Someone looks in the direction the men went. They,Someone looks in the direction the men went.,They,gold,fights in force to his victory.,walk towards the tent.,continue their first dark - way away to the store.,hands them some bills.\n11884,anetv_5x1diXJ8gME,8894,A person holds up a flag and shows other people watching on the sides. A person then scores two more goals and the goalies,A person holds up a flag and shows other people watching on the sides.,A person then scores two more goals and the goalies,gold,fall away to point another.,raise their flag each time.,gets hurt and runs.,demonstrates the proper technique to make it more.\n11885,anetv_0_GpcrCLdag,12930,First a boy is shown eating a thin waffle. then an elderly lady,First a boy is shown eating a thin waffle.,then an elderly lady,gold,is shown drinking water from a small glass.,comes out and smothers some ice cream.,spreads cement on the padding.,\"shuts his eye, turns her back absently in the vegetable.\"\n11886,anetv_BhxKjirVF4Y,1636,She then demonstrates the exercise bike and continues to bike along with some other women at the gym. She,She then demonstrates the exercise bike and continues to bike along with some other women at the gym.,She,gold,lifts the rider up a little and throws it again she jumps on it then rides it across the finish line.,continues to pull the lever in then show the muscles she took in the dissatisfied ways.,explains how to do some rigorous exercise on the bike.,pulls up and pockets the second tire.\n11887,anetv_BhxKjirVF4Y,1637,She explains how to do some rigorous exercise on the bike. there,She explains how to do some rigorous exercise on the bike.,there,gold,are several other women who are also biking on the exercise bike with her.,are spectators on the street.,\"'s a woman who is standing, talking.\",are some people dressed in a shirt and tanks are dancing around her.\n11888,anetv_BhxKjirVF4Y,1635,She is demonstrating the dumbbells that she will be using. She then,She is demonstrating the dumbbells that she will be using.,She then,gold,\"takes a tire of the trunk, grabs the handles and hits them with a tire.\",applies another tutorial on how to apply the parts for situps with clothing and make sure it is quick.,demonstrates the exercise bike and continues to bike along with some other women at the gym.,demonstrates how to move the saddle onto the exercise.\n11889,anetv_Fz1NCLAB8bA,15511,\"A young white male walks into the bathroom, turns on the water and begins to rub his beard. A series of different forms of the product is shown and then the man\",\"A young white male walks into the bathroom, turns on the water and begins to rub his beard.\",A series of different forms of the product is shown and then the man,gold,adds a closeup view of him tattooing the face of the dog as he talks inside the bathroom.,continues shaving a woman in the bottle a second time.,\"picks up a tub, and spray a blue towel put shampoo on his face.\",prepares his skin with oil and puts it around his beard.\n11890,anetv_Fz1NCLAB8bA,15513,\"Next comes the brush and he adds some white cream to it to lather up his hair. Finally, it is time to shave and the beard\",Next comes the brush and he adds some white cream to it to lather up his hair.,\"Finally, it is time to shave and the beard\",gold,begins to completely snow part of his beard.,is blown next to the face until the end.,begins painting his nails.,is taken completely down.\n11891,anetv_Fz1NCLAB8bA,15510,\"Five products are aligned on a table, illustrating the products needed to shave. A young white male\",\"Five products are aligned on a table, illustrating the products needed to shave.\",A young white male,gold,\"walks into the bathroom, turns on the water and begins to rub his beard.\",shows the girl who has a hair file she wants.,\"is sitting in the chair, shaving rouged, roses, and applying tile.\",\"uses a comb and a sink, thick black hair, and styling ingredients that look like furniture.\"\n11892,anetv_Fz1NCLAB8bA,15512,A series of different forms of the product is shown and then the man prepares his skin with oil and puts it around his beard. Next comes the brush and he,A series of different forms of the product is shown and then the man prepares his skin with oil and puts it around his beard.,Next comes the brush and he,gold,continues ironing the shoe.,begins braiding it with shaved head.,adds some white cream to it to lather up his hair.,cuts a piece of wood and is glue with white paper that he had uses to remove a part off the client's nail.\n11893,anetv_Fz1NCLAB8bA,15514,\"Finally, it is time to shave and the beard is taken completely down. For the finishing touches, lotion is added and the man\",\"Finally, it is time to shave and the beard is taken completely down.\",\"For the finishing touches, lotion is added and the man\",gold,is now dressed in a suit ready to go.,goes on to start by getting the razor out of his grasp under the hole.,rips away the handle and some of the rest of him are once shown touching the bridge with both hands.,continues putting on the finished parts of the skin.\n11894,lsmdc1029_Pride_And_Prejudice_Disk_One-83974,3406,\"With furrowed brows and heavy walk, he returns to the mantel piece, putting a distance between them. He\",\"With furrowed brows and heavy walk, he returns to the mantel piece, putting a distance between them.\",He,gold,\"takes a moment to compose himself, then turns to face her again.\",tosses it aside again.,\"massages his knee, flexing his foe then trots out and leans against it.\",watches him through some window blinds in the half - naked woman's side.\n11895,anetv_hUynCsek8I0,6896,Others kneel around him as he continues to reel. He finally,Others kneel around him as he continues to reel.,He finally,gold,pulls out a fish and shows it to the camera.,\"tightens the bars, while working.\",gets out blue letters and walks off explaining the process.,succeeds in punching on the high ground hard.\n11896,anetv_hUynCsek8I0,8108,A person's hand is seen reeling in a rod with other people standing around him. The person,A person's hand is seen reeling in a rod with other people standing around him.,The person,gold,jumps onto the water and then flips over on the water.,continuously reels in the rod and captures a large fish and presents it to the camera.,continues to remove his shoes and shows off his own nails and then face around the house.,cuts parts up from the man and spins on and around while his body watches.\n11897,anetv_hUynCsek8I0,6895,A close up of a fishing pole is shown with a person reeling it in. Others,A close up of a fishing pole is shown with a person reeling it in.,Others,gold,kneel around him as he continues to reel.,are shown taking a jump in the water while people watch around while a pan on the side.,are seen to other fish and wildlife all around the room.,are shown showing clips of a hockey game.\n11898,anetv_Z3DhUZhoRDA,6789,A person puts a piece of wax paper on the wall paper. They,A person puts a piece of wax paper on the wall paper.,They,gold,run a brush down the front of the paper.,use a flat tool to remove a wallpaper around the tree.,\"begin to use the scissor cutting evenly on the paper, wrapping a man in the middle.\",put the outcome on the wall and put a hammer back on.\n11899,anetv_Z3DhUZhoRDA,6788,Wall paper on a wall is shown. A person,Wall paper on a wall is shown.,A person,gold,puts a piece of wax paper on the wall paper.,is putting things onto a bicycle to insert paste.,is walking down the street with snow.,is watching him on extensions.\n11900,lsmdc3071_THE_DESCENDANTS-5460,5576,\"Unfastening her seat belt, she leans forward and hugs his seat. Someone\",\"Unfastening her seat belt, she leans forward and hugs his seat.\",Someone,gold,soaks a bottle of medicine then a shot glass bottle.,nods and steps forward.,raises an eyebrow and blinks at his daughter.,\"leans in, stabbing the surfboards hard.\"\n11901,lsmdc3071_THE_DESCENDANTS-5460,5575,\"Someone observes her father with a concerned gaze. Unfastening her seat belt, she\",Someone observes her father with a concerned gaze.,\"Unfastening her seat belt, she\",gold,follows her with a pensive gaze.,leans forward and hugs his seat.,takes off her apron.,selects a folded hatch and removes it to her neck.\n11902,lsmdc3071_THE_DESCENDANTS-5460,5572,\"Now, in someone's car, someone holds frozen peas over his eye. Someone\",\"Now, in someone's car, someone holds frozen peas over his eye.\",Someone,gold,\"faces her, smiling.\",looks down on someone.,looks out over the countryside.,shows his black eye.\n11903,lsmdc3071_THE_DESCENDANTS-5460,5573,Someone contritely lowers his gaze. Someone,Someone contritely lowers his gaze.,Someone,gold,chimes the brothers around.,turns away from the teen and slumps forward morosely.,shoves the heart at someone.,grins as someone works his jaws.\n11904,lsmdc3071_THE_DESCENDANTS-5460,5574,Someone turns away from the teen and slumps forward morosely. Someone,Someone turns away from the teen and slumps forward morosely.,Someone,gold,has his seat touched and he moves forward.,scoots to the edge of the desk and peers up.,watches the horror swirl over his skull and helmet.,observes her father with a concerned gaze.\n11905,lsmdc0004_Charade-47697,16658,\"She offers him her cone, thrusting it forward with enough force to dislodge the ice - cream. It\",\"She offers him her cone, thrusting it forward with enough force to dislodge the ice - cream.\",It,gold,\"lands right next to his lapel, over his outside breast pocket.\",laughs the little when the lions have finished their meal.,jams his thumb against her cheek and glumly winces.,tip almost into each other's necks.\n11906,anetv_4_MR2Tpc7SM,15087,A man is seen bending down while holding a crochet bat and hitting a ball through a hole. The man then,A man is seen bending down while holding a crochet bat and hitting a ball through a hole.,The man then,gold,holds his hands up and looks back to the camera and smiles.,plays the violin in various motions before kicking the ball with the rackets.,shakes his head and glances down at the mug of ground as he puts his foot on it.,walks around with hitting the ball and ends with him hitting the ball on him.\n11907,lsmdc0009_Forrest_Gump-50706,9057,Someone steps over to someone's tombstone. Someone,Someone steps over to someone's tombstone.,Someone,gold,lips twirling at her serpent.,pulls out notes from his pocket.,mother stares out her window overlooking the spacious stadium.,looks back at someone with stern distaste.\n11908,lsmdc0009_Forrest_Gump-50706,9056,Someone walks up to a shack on the edge of the Bayou. A group of black kids,Someone walks up to a shack on the edge of the Bayou.,A group of black kids,gold,gather around someone's bedside.,watches him go and shakes him.,and fans wait for the hill.,play in the front yard.\n11909,anetv_Y5puaQ9oNVw,2689,The player jumped and cartwheel high. The male gymnast rotate up in the air and then he,The player jumped and cartwheel high.,The male gymnast rotate up in the air and then he,gold,started swinging at the hoop hoop.,landed on the end of the mat.,jumped off of the mat.,does flips in his obstacle routine.\n11910,anetv_Y5puaQ9oNVw,2688,The gymnasts run to and then did cartwheel and thumbling as he go through the end of the mat. The player,The gymnasts run to and then did cartwheel and thumbling as he go through the end of the mat.,The player,gold,fell back on and she fell back.,\"bar the gymnast started, spinning and flipping back and forth.\",runs to throw the disk and grabs off the side portion.,jumped and cartwheel high.\n11911,anetv_bru03d1k6DY,2571,We thensee a man talking as they drill holes in the ice. Some booth,We thensee a man talking as they drill holes in the ice.,Some booth,gold,serve hot dogs to the people as they ice fish.,is shown covered in a jar.,are spit on the ground on their feet.,makes a crooked gesture with a lemon wedge.\n11912,anetv_bru03d1k6DY,2573,A little boy and girl attempt to catch a fish. They,A little boy and girl attempt to catch a fish.,They,gold,continue to play and switch back on.,hit the ball by the board.,are interviewed as they fish.,try to hammer the ice on the ice.\n11913,anetv_bru03d1k6DY,2572,Some booth serve hot dogs to the people as they ice fish. A little boy and girl,Some booth serve hot dogs to the people as they ice fish.,A little boy and girl,gold,are surfing in the ocean on a cool day.,are sitting down on a table and starts together eating a ice cream cone.,are trying crazy spots.,attempt to catch a fish.\n11914,lsmdc1042_Up_In_The_Air-88671,6301,\"Later, in the north terminal of Detroit airport, people stand silhouetted against a large window. Standing on a moving walkway, someone\",\"Later, in the north terminal of Detroit airport, people stand silhouetted against a large window.\",\"Standing on a moving walkway, someone\",gold,looks at the wedding invitation.,pauses to look through a straw.,lowers his drenched gaze.,\"stands, gesturing toward the salesman raketball.\"\n11915,anetv_5P_Scs7Vo2c,12799,A young woman is seen kneeling in a tub with clothes all around her. She,A young woman is seen kneeling in a tub with clothes all around her.,She,gold,roll someone up and begins washing up soap and washing it.,speaks to the camera while she rinses her leg.,continues scrubbing the food while doing jumps up and down.,steps on the clothes and bends down again to scrub them while the camera pans around her.\n11916,anetv_5P_Scs7Vo2c,12800,She steps on the clothes and bends down again to scrub them while the camera pans around her. She,She steps on the clothes and bends down again to scrub them while the camera pans around her.,She,gold,to the punch and the block backs away.,continues vacuuming past as she begins to step on the counter.,holds up the clothes and continues to wash them as well as a man stepping into frame to help.,continues to look around as well as framed out cleaning off the roof and the camera pans around as they walk on the floor.\n11917,anetv_tZswexUR6Q0,1478,\"The women then handle boating equipment before riding in the back of a boat on the water, flirting with the camera in bikinis, holding beers and making suggestive movements to the camera. The women\",\"The women then handle boating equipment before riding in the back of a boat on the water, flirting with the camera in bikinis, holding beers and making suggestive movements to the camera.\",The women,gold,watch the woman play a forth instrument.,\"runs back and forth on the side, continuing to smile as the people in swimsuits watch.\",\"begin the knitting while are floating in the water, bending over and laughing.\",\"are then seen in the back of the boat drinking from beer bottles, laughing, posing and dancing.\"\n11918,anetv_tZswexUR6Q0,16225,\"Some women are on a boat drinking beer and having a nice time rubbing their boobs together, sitting on the back of the boat. A blonde woman\",\"Some women are on a boat drinking beer and having a nice time rubbing their boobs together, sitting on the back of the boat.\",A blonde woman,gold,plays with a flag while another woman is skiing on the back of the boat.,eyes them with her hands folded in her lap she might splash water onto the cup.,\"demonstrates to put her watch on the side, then lets the camera crash alongside her, in the stands.\",walks out onto the boat and starts jump type wave of the wave.\n11919,anetv_tZswexUR6Q0,16224,\"A woman in a bikini has a take sign and presses action, then you see a bunch of women everywhere hanging out and acting a little scandalous. Some women\",\"A woman in a bikini has a take sign and presses action, then you see a bunch of women everywhere hanging out and acting a little scandalous.\",Some women,gold,preparing to proceed to leave someone.,\"are on a boat drinking beer and having a nice time rubbing their boobs together, sitting on the back of the boat.\",are watching as women break the clothing and the waves act on the hair.,are seen running around the field just looking after the horse.\n11920,anetv_tZswexUR6Q0,1477,\"A group of women are seen flirting, dancing, laughing and drinking on land and in the back of a boat. A group of girls in bikinis\",\"A group of women are seen flirting, dancing, laughing and drinking on land and in the back of a boat.\",A group of girls in bikinis,gold,are shown full cheerleaders to play another game.,are shown in a period of time by clapping and hugging.,drink out of the wind and wave with one another.,ride in the back of a boat being pulled on land.\n11921,anetv_fQB76oAKOQc,14861,A man is laying down on a table getting a tattoo. People,A man is laying down on a table getting a tattoo.,People,gold,are to walk behind him on the brush.,are spread out around him.,are standing in front of him watching.,run again against a door and sits down.\n11922,anetv_fQB76oAKOQc,14862,People are standing in front of him watching. Another man in a tux,People are standing in front of him watching.,Another man in a tux,gold,down suit is holding a rifle.,is talking to the camera.,is playing a beach.,starts swinging and then on his kneeling position.\n11923,anetv_fQB76oAKOQc,14195,A man is seen bent over a chair while a person tattoos his leg and several people watch on the sides. People,A man is seen bent over a chair while a person tattoos his leg and several people watch on the sides.,People,gold,are exercising under the water where two girls are putting on all their hind legs.,interview him and offer him gifts as he speaks to the camera and others watch on the side.,walks back and fourth to the sheriff as the others continue to tourist him.,are seen dancing together with a baton and smiling to the camera.\n11924,anetv_fQB76oAKOQc,14196,People interview him and offer him gifts as he speaks to the camera and others watch on the side. The artist wraps his leg up and he,People interview him and offer him gifts as he speaks to the camera and others watch on the side.,The artist wraps his leg up and he,gold,folds the fist up on top of the cup and tickles the end of the board.,shows the proper way to properly loosen the product.,takes his hand through the edge of the table.,continues speaking to the camera.\n11925,lsmdc1035_The_Adjustment_Bureau-85516,2706,It reads 7. 06. He,It reads 7. 06.,He,gold,makes a flicking motion.,appears in the amphitheater.,remembers shoveling the middle of the streets.,has his most credit card now.\n11926,lsmdc1035_The_Adjustment_Bureau-85516,2707,\"As the lovely woman wipes coffee off her legs, a taxi hits the stranger. The cabbie\",\"As the lovely woman wipes coffee off her legs, a taxi hits the stranger.\",The cabbie,gold,stops his car and rushes to the fallen man.,rotate her bonnet high with its blue wheelie case.,\"slips as someone approaches, grabs his glass, and pours the powder.\",\"looks out, then bends over and drinks on her handbag.\"\n11927,anetv_KFo88zRw5CM,10832,A man is waterskiing behind a boat while holding a rope. He,A man is waterskiing behind a boat while holding a rope.,He,gold,spins round and stands on the water during the waves.,jumps off the boat and swim to the water.,sits in his canoe and looks through the lake.,tries to hold on as he zips to the side.\n11928,anetv_KFo88zRw5CM,10833,He tries to hold on as he zips to the side. He,He tries to hold on as he zips to the side.,He,gold,sets off at the peace bank.,\"slips, splits, and falls into the water.\",descend into another rock.,\"crashes, alongside speeds on the side of the road as well as getting range, and crashes into the edge of the pavement.\"\n11929,anetv_IvkpOoeCM3A,3985,\"This video shows people participating in the world artistic pool championship. Smooth, but suspenseful music\",This video shows people participating in the world artistic pool championship.,\"Smooth, but suspenseful music\",gold,is playing throughout the whole video as people shoot pool balls into the holes by themselves.,\", move deeper into the sky.\",\"is shown one after, about other games finally viewers for finally how to do something else.\",is drawn to the lead.\n11930,anetv_-nlAKyoyIuU,3468,A couple of sumo wrestlers are in a ring together. They,A couple of sumo wrestlers are in a ring together.,They,gold,are playing a game of table soccer.,are joined into sumo gear.,collide into each other and kick people.,engage in a fight in front of a crowd.\n11931,anetv_-nlAKyoyIuU,13331,A person in a blue kimono comes back between them and signals them to begin fighting. The fight is now over and the man,A person in a blue kimono comes back between them and signals them to begin fighting.,The fight is now over and the man,gold,walks on top of it and begins talking while people are behind him watching.,\"walks off the stage, through the crowd and back to his locker room.\",claps until the woman returns.,rushes towards a man that was on the cricket board and slicing the calf.\n11932,anetv_-nlAKyoyIuU,13330,\"On the tv, two men are shown standing in a circle dressed as sumo wrestlers preparing to fight and they eventually end up rolling off. A person in a blue kimono\",\"On the tv, two men are shown standing in a circle dressed as sumo wrestlers preparing to fight and they eventually end up rolling off.\",A person in a blue kimono,gold,is dressed in a white shirt and blue jeans.,stands with a person standing in front of them and begins swinging the croquet mallet once again.,comes back between them and signals them to begin fighting.,is dressed in a blue t - shirt and don't like the ball.\n11933,anetv_-nlAKyoyIuU,3469,They engage in a fight in front of a crowd. They,They engage in a fight in front of a crowd.,They,gold,swing in a green field while spectators watch.,wrestle each other to the ground several times.,\"stand around each other, trying to win.\",are trying to hit the ball back and forth.\n11934,lsmdc3016_CHASING_MAVERICKS-6556,7883,\"Now, pitch - black waves send up snow - white foam as they break. Wearing wetsuits, someone and someone\",\"Now, pitch - black waves send up snow - white foam as they break.\",\"Wearing wetsuits, someone and someone\",gold,cuddle up in an alley with treats for a market.,soar from a destroyed building in new york.,paddle out on their surfboards.,sit with an excited men admiring their decree.\n11935,lsmdc3016_CHASING_MAVERICKS-6556,7888,\"Losing their balance, they fall off their boards. Someone\",\"Losing their balance, they fall off their boards.\",Someone,gold,surfaces with someone and shakes his hair out.,reaches out and clasps his hands around his stomach.,raises out the window and stares.,drops to the ground as the other performers walk past on them.\n11936,lsmdc3016_CHASING_MAVERICKS-6556,7890,\"Now, someone and someone propel their paddleboards over sunlit glassy waters hued a deep peacock blue. Someone\",\"Now, someone and someone propel their paddleboards over sunlit glassy waters hued a deep peacock blue.\",Someone,gold,is looking through a swollen eye.,trails his fingertips through the water.,jogs through a city street.,\"sings around, one at a time.\"\n11937,lsmdc3016_CHASING_MAVERICKS-6556,7881,\"Someone returns his solemn gaze to the sky. Facing her, someone\",Someone returns his solemn gaze to the sky.,\"Facing her, someone\",gold,directs someone toward the room.,smiles and shrugs it off.,offers a firm nod.,lifts her head to one side.\n11938,lsmdc3016_CHASING_MAVERICKS-6556,7877,\"Now, someone and someone carry surfboards. Nearing a rocky shore, someone\",\"Now, someone and someone carry surfboards.\",\"Nearing a rocky shore, someone\",gold,spins and flips through more boxes in vehicles.,pauses and looks back at her.,rides away from the boat's sides and grabs his jacket rail.,climbs down a flight of narrow steps with a sharp kick.\n11939,lsmdc3016_CHASING_MAVERICKS-6556,7878,\"Nearing a rocky shore, someone pauses and looks back at her. Stopping on the winding path, someone\",\"Nearing a rocky shore, someone pauses and looks back at her.\",\"Stopping on the winding path, someone\",gold,gets up and drives.,stares at the iceberg.,pulls the atv out of sight behind the truck's rear window.,smiles and follows him onward.\n11940,lsmdc3016_CHASING_MAVERICKS-6556,7875,He opens it and flips through the pages. Blond,He opens it and flips through the pages.,Blond,gold,ignores a magazine and performs a plaque.,waves a note round the corner box.,peruses his friend's surfing related sketches.,\"push his pages and finds it three pages out, places it on front of the pages and tapes it up.\"\n11941,lsmdc3016_CHASING_MAVERICKS-6556,7874,\"Blond glares after him, then spies someone's notebook on the floor. He\",\"Blond glares after him, then spies someone's notebook on the floor.\",He,gold,\"holds the phone to his ear, then glances down.\",pushes through a glass partition.,climbs up and stops her.,opens it and flips through the pages.\n11942,lsmdc3016_CHASING_MAVERICKS-6556,7885,\"They ascend a cresting wave and ride down the other side. Now, someone\",They ascend a cresting wave and ride down the other side.,\"Now, someone\",gold,hurries back a bystander.,sits in a low glass enclosure with a reaction stare.,stands while someone rides the wave on her belly beside him.,approaches someone and sees the couple taking their seats.\n11943,lsmdc3016_CHASING_MAVERICKS-6556,7876,Blond peruses his friend's surfing related sketches. Now someone's van,Blond peruses his friend's surfing related sketches.,Now someone's van,gold,travels over less freeway in verdant freeway.,approaches on a black screen with distant red stripes.,\"pulls up outside him home, its headlights cutting through the dark.\",flies through a suburban park in the back yard.\n11944,lsmdc3016_CHASING_MAVERICKS-6556,7884,\"Wearing wetsuits, someone and someone paddle out on their surfboards. They\",\"Wearing wetsuits, someone and someone paddle out on their surfboards.\",They,gold,gallop through a meadow on a river.,ascend a cresting wave and ride down the other side.,move along the ship's motor gills.,watch the fighter pass someone.\n11945,lsmdc3016_CHASING_MAVERICKS-6556,7882,\"Facing her, someone smiles and shrugs it off. Now, pitch - black waves\",\"Facing her, someone smiles and shrugs it off.\",\"Now, pitch - black waves\",gold,send up snow - white foam as they break.,fill the sitting room.,illuminate the calm ocean.,shine brightly on her decorative sidewalk as she leaves the curb.\n11946,lsmdc3016_CHASING_MAVERICKS-6556,7886,\"Now, someone stands while someone rides the wave on her belly beside him. She\",\"Now, someone stands while someone rides the wave on her belly beside him.\",She,gold,rinses the dish and sends it toward the beach.,pats his back and then hugs her.,gets to her feet.,gets to his feet and lets him go.\n11947,lsmdc3016_CHASING_MAVERICKS-6556,7873,Someone leans behind the counter and grabs his stuff. Blond,Someone leans behind the counter and grabs his stuff.,Blond,gold,\"glares after him, then spies someone's notebook on the floor.\",tosses it from an alley.,shakes it as he sweeps the two - way brown plastic liquid through the mud.,places a box of liquor into a glass of champagne as he gets to his feet.\n11948,lsmdc3016_CHASING_MAVERICKS-6556,7879,\"Stopping on the winding path, someone smiles and follows him onward. Standing at someone's side, someone\",\"Stopping on the winding path, someone smiles and follows him onward.\",\"Standing at someone's side, someone\",gold,stares off her concern.,beams at him affectionately.,lowers his tearful gaze.,steps against the seat.\n11949,anetv_gUFRtx51OJc,13579,A woman is seen sitting in a doctor's office with a doctor speaking to her and the camera. The doctor then,A woman is seen sitting in a doctor's office with a doctor speaking to her and the camera.,The doctor then,gold,talks and shows rinsing another woman's face as she talks to the camera.,closes and looks up and shows more pictures of her on the screen.,holds an object up to the girl's lip.,holds up a pair of clippers and begins sharpening them with her knife.\n11950,anetv_gUFRtx51OJc,13580,The doctor then holds an object up to the girl's lip. Finally the man,The doctor then holds an object up to the girl's lip.,Finally the man,gold,shows the bottom of the buckle between claws.,pierces the girls lip and smiles down to her.,puts the contact lens and opens it and pulls out all the contacts.,\"begins, helps to comfort what will be used.\"\n11951,lsmdc3009_BATTLE_LOS_ANGELES-648,3367,\"As he fills the magazine, the others and his unit watch with disbelieving eyes. Someone\",\"As he fills the magazine, the others and his unit watch with disbelieving eyes.\",Someone,gold,\"eyes someone, who shakes his head and regards someone with a furrowed brow.\",shoots someone a look.,is drinking a bottle of beer.,\"finds someone staring up at someone, meaningfully.\"\n11952,lsmdc3009_BATTLE_LOS_ANGELES-648,3370,\"Someone steps up to the table. As he gathers supplies, someone looks over and the corporal\",Someone steps up to the table.,\"As he gathers supplies, someone looks over and the corporal\",gold,takes someone's hand.,dives off to the tree.,reluctantly gets to the conference room.,gives him a nod.\n11953,lsmdc3009_BATTLE_LOS_ANGELES-648,3363,\"Now on a tent, someone chugs a bottle of water while someone pours one over his head then drinks. With a tired look, someone\",\"Now on a tent, someone chugs a bottle of water while someone pours one over his head then drinks.\",\"With a tired look, someone\",gold,puffs back and shows him the cigarette.,shifts his uneasy gaze.,wanders down the steps towards the main office.,sips her own bottle.\n11954,lsmdc3009_BATTLE_LOS_ANGELES-648,3369,The corpsman shifts his gaze to the staff sergeant. Someone,The corpsman shifts his gaze to the staff sergeant.,Someone,gold,\"blinks his eyes from the ceiling, then blinks at someone.\",steps up to the table.,\"lifts his nose to his chest, and eyes the envelope.\",leads the young fairy to a sheet in his fingertips.\n11955,lsmdc3009_BATTLE_LOS_ANGELES-648,3365,The staff sergeant eyes a supply of bullets and a stack of ammunition magazines sitting on a table. He,The staff sergeant eyes a supply of bullets and a stack of ammunition magazines sitting on a table.,He,gold,grabs a bullet and loads it into an empty clip.,slips them into a cutting device.,looks into the henchman's monitor.,grabs no pouch and stomps into the room.\n11956,lsmdc3009_BATTLE_LOS_ANGELES-648,3368,Someone shoots someone a look. The corpsman,Someone shoots someone a look.,The corpsman,gold,draws closer to someone.,exchange a lost look.,do not back nervously.,shifts his gaze to the staff sergeant.\n11957,lsmdc3009_BATTLE_LOS_ANGELES-648,3364,\"Tears glisten in someone's eyes as he shifts his gaze to Harris, who clasps his weapon to his chest and clenches his jaw. The staff sergeant\",\"Tears glisten in someone's eyes as he shifts his gaze to Harris, who clasps his weapon to his chest and clenches his jaw.\",The staff sergeant,gold,punches the guard in the jaw.,eyes a supply of bullets and a stack of ammunition magazines sitting on a table.,\"lowers his gaze, his brow creased.\",looks up and sees the figure.\n11958,anetv_vlBzrnOuW9U,14525,\"A woman helps a little boy kick a ball during a kickball game. Each time the ball reaches base, another kid\",A woman helps a little boy kick a ball during a kickball game.,\"Each time the ball reaches base, another kid\",gold,dives straight into the water table and catches the ball he directly into.,has a turn to kick.,shoots her a final time.,falls from his leg.\n11959,lsmdc3092_ZOOKEEPER-45192,6779,Someone looks at the wolf. He,Someone looks at the wolf.,He,gold,hits the muzzle of his tattoo.,'s pouring his drink.,\"is running along the road, wearing a robe, and a cheap leather gun lying on the floor.\",mouths the word sorry.\n11960,lsmdc3092_ZOOKEEPER-45192,6780,\"He mouths the word sorry. Now, a jazz trio\",He mouths the word sorry.,\"Now, a jazz trio\",gold,performs at a fancy restaurant.,sits amidst several stalls dancing.,sits at a piano table.,sits on a large sandy field.\n11961,anetv_nFfMY4CQq50,6875,A guy puts cream from a blue tube in his palm and applies it to his chin. A guy,A guy puts cream from a blue tube in his palm and applies it to his chin.,A guy,gold,grabs an ice cream cone and sets it side to side.,brushes his teeth with a brush and starts shaving foam across his left lip.,uses a second cutter to draw the paint up his sides.,puts gel from a blue tube in his palm and applies it to his chin.\n11962,anetv_nFfMY4CQq50,6874,A person shaving his chin is shown. A guy,A person shaving his chin is shown.,A guy,gold,gives a shirtless start.,puts cream from a blue tube in his palm and applies it to his chin.,talks to the camera as the person bangs his teeth.,cleans a sheet with a needle.\n11963,anetv_J80e9M4AQ5w,9209,A man throws snow on a lady. A man,A man throws snow on a lady.,A man,gold,looks at a scuffs person behind him.,uses electric polka to the woman roller services in his yard.,walks up to it.,throws snow on people.\n11964,anetv_J80e9M4AQ5w,9211,People are mainge snow angels. We,People are mainge snow angels.,We,gold,see red iron man climbing up a hill.,run from the pavement.,see the closing credits of the video.,see a man talking on a bike in a hallway.\n11965,anetv_J80e9M4AQ5w,9210,A person is stuck in the snow is buried by others. A lady talks to the camera and it,A person is stuck in the snow is buried by others.,A lady talks to the camera and it,gold,goes black and white.,is twirling a huge stone.,goes down the hill.,takes a clattering walk in the night.\n11966,anetv_J80e9M4AQ5w,9207,We see an opening screen with a black background. We,We see an opening screen with a black background.,We,gold,\"see a lot of people moving snow with shovel, brooms, pots, and bowls.\",see a blue screen on the black screen.,see the pool fast on the beach.,see a guy using the lawn on wall stage.\n11967,anetv_J80e9M4AQ5w,9208,A man is shoveling with a dist pan followed by ladies with a hoe and plate. A man,A man is shoveling with a dist pan followed by ladies with a hoe and plate.,A man,gold,\"walks down a slope, parries the rake, continues brushing outside the direction of the sand.\",throws snow on a lady.,serves a cookie and mixes the butter.,shows over a cobblestone fence.\n11968,anetv_SnFWB9NLFjY,7279,A close up of skis are shown followed by a person pushing themselves along using sticks and skiing down the mountain. The person,A close up of skis are shown followed by a person pushing themselves along using sticks and skiing down the mountain.,The person,gold,continues riding down the hill through the water as well as laying down all the tubes.,rides along the tractor while pausing to speak to the camera.,continues crashing into the camera and ending zooms up.,continuously riding down on the mountain using the skis and zooming past people and stopping at the bottom.\n11969,anetv_ennVaOEePHk,11593,Several kids on bikes race through the course. They,Several kids on bikes race through the course.,They,gold,see baseball pictures of the three men in the bleachers.,go up and over the hills.,then see a replay and a replay of the clips shown.,stop on a hills far across the track.\n11970,anetv_ennVaOEePHk,11591,A flag is blowing in the wind outside. The camera,A flag is blowing in the wind outside.,The camera,gold,moves back to the east side.,pans around to show various hills.,\"continues toward an electrical, where the plant is over.\",zooms into a man sitting on the back of the boat.\n11971,anetv_ennVaOEePHk,15520,\"These people are all shown participating in a bicycle race. They ride over huge bumps and straight smooth paths, and everyone\",These people are all shown participating in a bicycle race.,\"They ride over huge bumps and straight smooth paths, and everyone\",gold,turns and squats down side by side.,is wearing different colored suits and helmets.,moves forward using their hands posing.,watches the tips on a fencing game.\n11972,anetv_ennVaOEePHk,11592,The camera pans around to show various hills. Several kids on bikes,The camera pans around to show various hills.,Several kids on bikes,gold,are enjoying and driving.,race through the course.,are riding cars up a trail.,are working on platforms.\n11973,anetv_5lre5zbUV1Q,8061,The child uses the faucet nozzle to rinse out the sink. The boy,The child uses the faucet nozzle to rinse out the sink.,The boy,gold,pours himself wet soap and empties everything on the towel and proceeds to wipe water while eyeing the others.,continues to rub in the sink and uses them another now to wash the soap.,wipes his face with tissue and wipes his face so he can make it clean.,returns the sink nozzle to the faucet and turns off the water.\n11974,anetv_5lre5zbUV1Q,8059,A child scrubs out the kitchen sink using a brush. The boy,A child scrubs out the kitchen sink using a brush.,The boy,gold,turns on the sink faucet.,\"dips again on the water, removes the toothbrush.\",then scrubs the paste with the rag briefly.,grabs her cloth and scrubs it with a towel.\n11975,anetv_5lre5zbUV1Q,8060,The boy turns on the sink faucet. The child,The boy turns on the sink faucet.,The child,gold,\"wipes he brushes using a towel, then takes the toothbrush from the sink.\",is brushing down his toothbrush with a spoon.,uses the faucet nozzle to rinse out the sink.,\"does a back stroke, so the camera flashes.\"\n11976,anetv_4KMbeat6yoE,14270,The camera pans in and out of their movements as they play together. The men,The camera pans in and out of their movements as they play together.,The men,gold,continue to play the instruments and stop in the end with one walking away.,continue to play around the instrument while the camera follows it's movements.,continue to play polo with a person moving around in the distance.,are now seen dancing up and fourth as well as the others stand down at the end and started to moving to one another.\n11977,anetv_4KMbeat6yoE,12658,People are standing in a room playing instruments. A guitar case,People are standing in a room playing instruments.,A guitar case,gold,is with the dogs as dog.,is seen on the floor.,is talking to the camera.,walks on a guitar and throws a ball back to the camera.\n11978,anetv_4KMbeat6yoE,12659,A guitar case is seen on the floor. A person,A guitar case is seen on the floor.,A person,gold,is sitting on a couch next to them watching.,puts his hands up guitar on his lap.,bends down and begins playing a piano.,picks up a hookah and canister the cigarette.\n11979,anetv_4KMbeat6yoE,14269,Three men are seen playing instruments with one another. The camera,Three men are seen playing instruments with one another.,The camera,gold,pans in and out of their movements as they play together.,pans around the one playing instruments.,pans around their work all and plays with one another.,pans back on the two people.\n11980,anetv_LdzaFk5VrD0,8217,Then she uses her fingers to show how to correctly flex the lens before wearing them. Then she,Then she uses her fingers to show how to correctly flex the lens before wearing them.,Then she,gold,begins to demonstrate how to use a white razor to clean her nails over the side.,uses the brush to brush blood off the top of her face.,signs off from the tutorial and waves goodbye.,looks curiously at a dancer in his oriental robe.\n11981,anetv_LdzaFk5VrD0,8216,Then she adjusts her upper lid to make sure the lens has fitted in properly. Then she,Then she adjusts her upper lid to make sure the lens has fitted in properly.,Then she,gold,uses her fingers to show how to correctly flex the lens before wearing them.,put it on the navigation lenses and unlocks the top to reveal the new bow again.,begins bathes her face to the mirror as she shows which the umbrella has her to.,removes the tube's lens and removed a packet of wall paper from the ground.\n11982,anetv_LdzaFk5VrD0,4749,She holds her hands up in front of her. She,She holds her hands up in front of her.,She,gold,tries to look ahead and signs again.,bows her head as the flames slide off her fingertips.,picks up a contact lens and puts it on her finger.,puts her fingers in the skin.\n11983,anetv_LdzaFk5VrD0,4748,A girl is sitting in a chair talking. She,A girl is sitting in a chair talking.,She,gold,demonstrates her furiously waterboarding moves and washes her.,puts water to her ears and the lady brushes her feet.,plays a flute and covers her eyes on the table.,holds her hands up in front of her.\n11984,anetv_LdzaFk5VrD0,8213,There's a woman sitting in her bedroom talking about how to wear contact lenses. She,There's a woman sitting in her bedroom talking about how to wear contact lenses.,She,gold,then lifts the nozzle from the dish scent.,are looking at the camera as she does the same thing.,is also shown inside a bathroom.,demonstrates by taking the lens on her fingers and putting it into her left eye first.\n11985,anetv_LdzaFk5VrD0,8215,Then she uses her fingers to show how to gently place the lens correctly into the eye. Then she,Then she uses her fingers to show how to gently place the lens correctly into the eye.,Then she,gold,gives the mark the glass and stands.,adjusts her upper lid to make sure the lens has fitted in properly.,continues putting the lenses into a case and rips the lens from its eye.,begins by explaining how to put the lenses looked by her eye.\n11986,anetv_LdzaFk5VrD0,4750,She picks up a contact lens and puts it on her finger. She,She picks up a contact lens and puts it on her finger.,She,gold,moves to the right of the camera and cuts to it.,takes the contact lens out of her eye.,grabs two presents and goes back to remove makeup.,put the contact into her eye.\n11987,anetv_LdzaFk5VrD0,4753,She then takes the contact lens out of her eye. She,She then takes the contact lens out of her eye.,She,gold,then takes a sip of beer.,\"is combing the hair, putting the lens in the eyes.\",puts a contact lens in her eye.,continues using her hands to talk.\n11988,anetv_LdzaFk5VrD0,8214,She demonstrates by taking the lens on her fingers and putting it into her left eye first. Then she,She demonstrates by taking the lens on her fingers and putting it into her left eye first.,Then she,gold,takes a roll on her finger and sticks it again through the glass door.,points herself to clear dabs that colored lens with her finger.,uses her fingers to show how to gently place the lens correctly into the eye.,shows how to remove hair on the lens with a pink bear lipstick.\n11989,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73451,4214,A snow dusted black limousine draws up. A man,A snow dusted black limousine draws up.,A man,gold,wearing hammer glove holds a trophy behind his ear.,opens the car door for someone.,goes over to the other side and starts sanding it.,climbs a stone ladder and holds a clipboard in front of him.\n11990,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73451,4215,A man opens the car door for someone. She,A man opens the car door for someone.,She,gold,stops in the room.,poses for press photographers.,opens the door and steps inside.,arrives in a parked car.\n11991,anetv__SzFi60-OGA,1300,\"Once again congratulating her, everyone begins to applaud as she goes back to her place among the students. Next a line of students\",\"Once again congratulating her, everyone begins to applaud as she goes back to her place among the students.\",Next a line of students,gold,\"is on the floor outside a sitting room building, someone seems to be placing herself on a pad.\",\"is looking for each other, preparing to jump.\",are shown and a young lady with gray hair leads all the herself up to the pool and practice moves.,\"are standing at attention and waiting for instruction, in the next scene the little girl is participating in board breaking.\"\n11992,anetv__SzFi60-OGA,19139,The girl attempts to break a wooden blocks with her hands and jumps when she does. She,The girl attempts to break a wooden blocks with her hands and jumps when she does.,She,gold,is shown speaking to the camera.,comes with the moving left and ends with another group of girls and the dancing girl.,breaks another block with her hands.,approaches and picks up the camera lens.\n11993,anetv__SzFi60-OGA,1302,She succeeds in the first trial and holds up the board she broke. She then,She succeeds in the first trial and holds up the board she broke.,She then,gold,apply the red visor and then upwards.,\"shakes the frame, kneels down and begins pink hair at her side.\",finishes on the song and starts with her makeup stick moving her arms.,takes part in the second trial and also succeeds holding up the pieces.\n11994,anetv__SzFi60-OGA,1298,Each master congratulates her individually. The master in the middle,Each master congratulates her individually.,The master in the middle,gold,dressed in red shirt plays for the crowd.,repeats the routine until they rise to the ground.,tosses out figures and stares after someone.,removes her belt and ties on a new one.\n11995,anetv__SzFi60-OGA,19136,We see a room of kids in their karate uniforms. A girl,We see a room of kids in their karate uniforms.,A girl,gold,has a photo on a boy swinging down.,jumps down a slide.,\"goes to a group of men, shakes their hands, and gets a new belt.\",walks away from a train.\n11996,anetv__SzFi60-OGA,1299,\"The master in the middle removes her belt and ties on a new one. Once again congratulating her, everyone\",The master in the middle removes her belt and ties on a new one.,\"Once again congratulating her, everyone\",gold,\"turns, and looks back.\",allows her to break dance before her music finishes and finishes.,puts lip tip to eye.,begins to applaud as she goes back to her place among the students.\n11997,anetv__SzFi60-OGA,19137,\"A girl goes to a group of men, shakes their hands, and gets a new belt. The girl\",\"A girl goes to a group of men, shakes their hands, and gets a new belt.\",The girl,gold,arrives and puts down her knife.,stands in line with other kids performing.,leans on the beam holding paddles.,lets the hair down back and throws her off.\n11998,anetv__SzFi60-OGA,19138,The girl stands in line with other kids performing. The girl,The girl stands in line with other kids performing.,The girl,gold,goes back and forth and shows the other girl who jumps on the surfboard.,attempts to break a wooden blocks with her hands and jumps when she does.,lets go of the steps and grabs a bucket.,lifts her hands up and washes it.\n11999,anetv__SzFi60-OGA,1301,\"Next a line of students are standing at attention and waiting for instruction, in the next scene the little girl is participating in board breaking. She\",\"Next a line of students are standing at attention and waiting for instruction, in the next scene the little girl is participating in board breaking.\",She,gold,succeeds in the first trial and holds up the board she broke.,receives the people tying a white bag together.,get some on a lake with long red hair and gentle hair caps.,stands at the rope with a small bat and starts passing it.\n12000,anetv_hiEVVSgAhls,19439,People are playing basketball behind them. The man,People are playing basketball behind them.,The man,gold,is kicking the pins.,grabs the ball again and serves it across the table.,is playing the drums with one hand.,throws a kid before a man wearing a black striped shirt but again to pin trampolines on his hand.\n12001,anetv_38nAdby_fTw,9103,The credits of the clip are shown. A person,The credits of the clip are shown.,A person,gold,rides the camels around a skating rink with people wearing safety helmets.,is taking off of some leaves placed in a black mix.,rides a dirt bike over a hill or dirt pile with help from an incline structure.,is standing on a field in front of a beam in the distance.\n12002,anetv_38nAdby_fTw,9105,\"A person stands, shakes their head and leaves on a dirt bike. Two guys\",\"A person stands, shakes their head and leaves on a dirt bike.\",Two guys,gold,get into the ramp and fall back onto the ground.,sit on their dirt bike and discuss.,stand by the lights tubes.,plays on the screen while a cat stands at a work station.\n12003,anetv_38nAdby_fTw,9104,A person rides a dirt bike over a hill or dirt pile with help from an incline structure. A person,A person rides a dirt bike over a hill or dirt pile with help from an incline structure.,A person,gold,rides up on a horse and jumps into a water without it as well as holding a javelin over the dirt.,walks in the white hill then makes a move across the calm road.,rides a motorbike over an uneven floor and intertube time.,\"stands, shakes their head and leaves on a dirt bike.\"\n12004,anetv_38nAdby_fTw,9106,Two guys sit on their dirt bike and discuss. One guy,Two guys sit on their dirt bike and discuss.,One guy,gold,uses his rear tire to cause dirt to spray.,appears surprised with the names of the animal.,shows several snowballs merge in position.,has a bicycle and tries to pull them from.\n12005,anetv_SSTom962aPk,5476,A scene from an old tv show is shown with a man walking into a barber. A cop,A scene from an old tv show is shown with a man walking into a barber.,A cop,gold,demonstrates with an asian dealer's arm and is moving back and forth.,is standing up to the baby and is obviously rubbed with his hand.,looks at him while the man cuts his hair and shaves it all off.,is shown getting injured and an older guy tubby him with a bandage.\n12006,anetv_SSTom962aPk,13346,A man is seen walking into a barber shop with others and one sitting in a chair. He speaks to the hairdresser and the man,A man is seen walking into a barber shop with others and one sitting in a chair.,He speaks to the hairdresser and the man,gold,presents a close up to the camera.,showed off the other and continue tattooing the woman's hair.,clips the shop knife every time.,begins cutting his hair.\n12007,anetv_SSTom962aPk,5477,A cop looks at him while the man cuts his hair and shaves it all off. The man,A cop looks at him while the man cuts his hair and shaves it all off.,The man,gold,looks back to the barber speaking and smiles.,puts mascara on his hair and fades into a hobby look with a headline.,talks to the camera while the camera focuses on the dogs's hair.,looks over the front of the black jack.\n12008,anetv_SSTom962aPk,13347,He speaks to the hairdresser and the man begins cutting his hair. He finishes the cut and the man,He speaks to the hairdresser and the man begins cutting his hair.,He finishes the cut and the man,gold,uses a knife to cut the braids.,takes out two sections.,smiles back and speaks.,is next to his speaking.\n12009,anetv_Ix8WFQ6-yx8,681,Two men are seen standing in a room holding onto tennis rackets. The men then,Two men are seen standing in a room holding onto tennis rackets.,The men then,gold,begin hitting a tennis ball around.,begin bouncing all along the wall and begin working up.,hit a ball around one another while the camera captures their movements.,begin playing squash around a table.\n12010,anetv_Ix8WFQ6-yx8,682,The men then begin hitting a tennis ball around. The people,The men then begin hitting a tennis ball around.,The people,gold,assist on the ball while the camera follows them behind.,continue to hit balls around a room and chase after one another.,hold up new barbells while laughing with one another.,continue playing over the ball and hitting them on the side.\n12011,anetv_Ix8WFQ6-yx8,15380,Two men play squash in an indoor court. The two men,Two men play squash in an indoor court.,The two men,gold,toss the ball back and forth between rounds.,continue to play tennis.,are playing volleyball.,\"are playing soccer, playing with a balls on the wall while watching them.\"\n12012,anetv_Ix8WFQ6-yx8,15381,The two men toss the ball back and forth between rounds. One man,The two men toss the ball back and forth between rounds.,One man,gold,knocks their opponent down and hits him.,tosses the ball to the other again.,\"dismounts, pulling his back as four people collide with each other.\",\"kicks the puck, misses and misses.\"\n12013,lsmdc3012_BRUNO-4232,463,\"Later, someone sits in a hallway perusing the questionnaires. He\",\"Later, someone sits in a hallway perusing the questionnaires.\",He,gold,looks up as someone approaches.,stares off with a intent expression.,blows over a stack of boxes.,picks up a pink towel.\n12014,anetv_QinlLV8QKBU,3450,\"A old man puts salt to bowling water in a pot, then he adds pasta and let cook for one minute. Then, the man\",\"A old man puts salt to bowling water in a pot, then he adds pasta and let cook for one minute.\",\"Then, the man\",gold,turns off the stove and puts on the pot a cloth and a lid and let it for 10 min.,places the bowl in the of pan and continues rolling from the pot of olive oil.,\"adds the pasta, throws it in the air, then taste the sauce and taste it.\",\"take the cheese out of the pot and destroy it, after he turns the bag over and remove the pasta into the pot.\"\n12015,anetv_QinlLV8QKBU,3452,\"After, the man drains the pasta in the sink. A woman\",\"After, the man drains the pasta in the sink.\",A woman,gold,comes and taste the cooked pasta and gives a thump up.,brings a cake in and puts baking dome into the oven a baked guy.,is standing in a kitchen and uses one spoon to stir it.,\"lie under a towel on a block with clean, wet hair.\"\n12016,anetv_QinlLV8QKBU,3451,\"Then, the man turns off the stove and puts on the pot a cloth and a lid and let it for 10 min. After, the man\",\"Then, the man turns off the stove and puts on the pot a cloth and a lid and let it for 10 min.\",\"After, the man\",gold,washes his hands and shows some of the snowboarding process.,drains the pasta in the sink.,hands the cup to an cook and make a drink.,talks to the camera and throws shaving when he minimizes the wall.\n12017,lsmdc3041_JUST_GO_WITH_IT-18386,13673,She slaps the waiter's rear. Someone nearly,She slaps the waiter's rear.,Someone nearly,gold,nudges someone as she charges.,chokes on her red wine.,kicks someone through the glass.,hits off.\n12018,anetv_eQnwUWfah9w,12498,Several men are playing football indoors. They,Several men are playing football indoors.,They,gold,are engaged in a game of soccer.,are training on the battle against the crowd.,kick the ball back and forth while some people watch on the sidelines.,wrap a red glow around the tree and measure the grass at it.\n12019,anetv_eQnwUWfah9w,12497,An ad for football appears on the screen. Several men,An ad for football appears on the screen.,Several men,gold,stat soccer on a beach with a runner.,are playing football indoors.,ride into the canyon.,look on the hats cheering with players.\n12020,anetv_UBqFQKI1YW8,18385,The man mounts the parallel bar and goes into a handstand and performs a series of spins and moves. The gymnast,The man mounts the parallel bar and goes into a handstand and performs a series of spins and moves.,The gymnast,gold,stands on the side as the bar moves and lands in slow motion.,moves on side to side with another and hula hoops around on stage.,hands the hula stick to second hand and throws it on the board.,goes into his dismount and lands a perfect landing on the mat.\n12021,anetv_UBqFQKI1YW8,18384,A black man gymnast prepares to perform on a parallel bar exhibition. The man,A black man gymnast prepares to perform on a parallel bar exhibition.,The man,gold,rejoins the gymnast and takes a shot put.,flips and lands on the ground as he does flips.,mounts the parallel bar and goes into a handstand and performs a series of spins and moves.,several times as he continues to maintain the elaborate components of various different students.\n12022,anetv_00S8I27qDU4,7270,A lady holds a javelin on a track she puts it down. The scene starts over and we,A lady holds a javelin on a track she puts it down.,The scene starts over and we,gold,see a lady throw a javelin and walk away.,see a rolling screen appears before two play venue.,see it and and the man a our only records at the time.,see images of children.\n12023,anetv_00S8I27qDU4,7271,The scene starts over and we see a lady throw a javelin and walk away. We then see the throw measured and a man,The scene starts over and we see a lady throw a javelin and walk away.,We then see the throw measured and a man,gold,falls on a table.,\"bang on the screen again, ready to throw a shot put.\",climb into the tanktop.,walks up as talks to the girl.\n12024,lsmdc3069_THE_BOUNTY_HUNTER-4568,10352,He reaches for his pocket. He,He reaches for his pocket.,He,gold,stops and approaches alarm hostess.,hands someone a folded piece of paper.,glares at someone and sniffs the snitch.,reaches towards the cheroot and finds it locked.\n12025,lsmdc3069_THE_BOUNTY_HUNTER-4568,10353,He hands someone a folded piece of paper. The bounty hunter,He hands someone a folded piece of paper.,The bounty hunter,gold,shifts a polite gaze.,sets one down beside it.,glances round at someone who shuts the carriage thoughtfully.,opens it and finds someone's mugshot.\n12026,lsmdc3069_THE_BOUNTY_HUNTER-4568,10354,The bounty hunter opens it and finds someone's mugshot. He,The bounty hunter opens it and finds someone's mugshot.,He,gold,points to a suitcase in his hands.,meets someone's gaze.,\"stares up at the ceiling, deep in thought.\",holds up a typewriter.\n12027,anetv_OYAyb_Ire24,11131,A girl is shown in several shots putting makeup on and leads into her putting makeup for her chin and lips. She then,A girl is shown in several shots putting makeup on and leads into her putting makeup for her chin and lips.,She then,gold,rubs lotion into her hands and takes off her lotion.,puts mascara on while continuously smiling into the camera and followed by more makeup being put on.,explains that her hair is showing how to use the stick.,explains how to clean and dry her hair while speaking to the camera.\n12028,anetv_OYAyb_Ire24,9234,A girl is shown inside her bedroom. She,A girl is shown inside her bedroom.,She,gold,is at a kitchen sink.,is wiping paints all over her shoes.,is washing dishes in a pile.,applies foundation to her skin.\n12029,anetv_OYAyb_Ire24,9235,She applies foundation to her skin. She then,She applies foundation to her skin.,She then,gold,begins tattooing blending face with a paper towel.,applies gauze to her hair and using a weld.,applies lipstick and eye makeup.,removes parts of her body.\n12030,anetv_wu0G4yQIwKo,4186,The girls begin to play back and forth dabbing each other with the paint. One of the girls,The girls begin to play back and forth dabbing each other with the paint.,One of the girls,gold,grabs her nails and designs them on her nails.,stops brushing his hair and finishes.,plays with a lot of girl girls around him.,gets up and begins to chase the other girl.\n12031,anetv_wu0G4yQIwKo,5715,\"A woman and a person paint a fence color red while the woman talks. The woman puts paint on the arm of the person, then they\",A woman and a person paint a fence color red while the woman talks.,\"The woman puts paint on the arm of the person, then they\",gold,continue painting the fence.,put the sole in the end and add the woman.,cut clear to color tape in shingles.,put the paint and brush on the brush.\n12032,anetv_wu0G4yQIwKo,4185,The girl who is recording the is also helping to paint the fence while talking to the camera. The girls,The girl who is recording the is also helping to paint the fence while talking to the camera.,The girls,gold,begin to play back and forth dabbing each other with the paint.,shoots back the boy as she is left and the girl is escorted by her closest.,walk to the top of the stairs and start putting eyeliner on the paint while they talk.,start briskly to set down the soap offices as a man is running in the pool with some girl.\n12033,anetv_wu0G4yQIwKo,5716,\"The woman puts paint on the arm of the person, then they continue painting the fence. The woman shows two brushes, she\",\"The woman puts paint on the arm of the person, then they continue painting the fence.\",\"The woman shows two brushes, she\",gold,applies eyeliner and a dip brush.,applies shoveling till black tape brush through the present.,has paint on her arm.,tilts on the paint brush.\n12034,anetv_wu0G4yQIwKo,4184,A woman is crouched down painting a fence while talking with another girl in a yard. The girl who is recording the,A woman is crouched down painting a fence while talking with another girl in a yard.,The girl who is recording the,gold,street with a huge girl of the next is talking to the camera by the cuts.,is also helping to paint the fence while talking to the camera.,whole video out walking a little girl wearing a helmet and a red shirt talking.,exercising with her tool caps and hurries back in a circle.\n12035,anetv_wu0G4yQIwKo,5717,\"The woman shows two brushes, she has paint on her arm. Suddenly, the woman\",\"The woman shows two brushes, she has paint on her arm.\",\"Suddenly, the woman\",gold,shows off her ears without braiding.,returns to the back of the horse class where cotton shaving located cut inside.,runs chasing the person.,paint it and nail it into woman smooth forehead.\n12036,anetv_F4eF_nO2UFs,8219,We see an opening title screen. Tools sit on a table and we,We see an opening title screen.,Tools sit on a table and we,gold,see a person unpack a bike and assemble it.,see a man putting a knife on a pumpkin.,see them out on the field.,see a man talking in the background.\n12037,anetv_F4eF_nO2UFs,8221,We see the man put a tire on the bike. A person,We see the man put a tire on the bike.,A person,gold,tightens the holds on the handlebars.,cuts the bike off the tire.,grabs the bike and grabs the handlebars.,make a tire into the new tire.\n12038,anetv_F4eF_nO2UFs,8220,Tools sit on a table and we see a person unpack a bike and assemble it. We,Tools sit on a table and we see a person unpack a bike and assemble it.,We,gold,see the gymnasts results on a plate.,see the man put a tire on the bike.,see the closing screen with clock.,see motor is down the hall.\n12039,anetv_F4eF_nO2UFs,8222,The man puts grease on the paddles and installs them before airing the tires. We then,The man puts grease on the paddles and installs them before airing the tires.,We then,gold,see an ending title screen.,see the finished bike.,see multiple closing screens.,see the cameraman screwing a tire off and see money in a lake.\n12040,lsmdc0028_The_Crying_Game-63347,11808,Someone walks toward him and pulls off the hood. Someone,Someone walks toward him and pulls off the hood.,Someone,gold,smiles up at him.,grips the steering wheel.,\"sits at a desk, in no underwear, in her office.\",brings the car to a side view.\n12041,anetv_PPJ6gSuk33o,16832,A man is seen standing in a bathroom with a woman and looking back to speak to the camera. The man then,A man is seen standing in a bathroom with a woman and looking back to speak to the camera.,The man then,gold,moves all around the bathroom while continuing to speak and the camera zooms in.,moves the ear up and shows the woman it with an older woman shining off with the camera.,cuts out jaggerman slices with an electric tool.,washes his face in a pony and rinse as he dries his face with a razor.\n12042,anetv_xx5TLuZmjcE,14149,Man with a stripped shirt is standing in a court room playing squash. a man and a woman,Man with a stripped shirt is standing in a court room playing squash.,a man and a woman,gold,are standing ni a wooden court playing squash.,\"sprint to wrap the big ball, and a man claps and stop as he speaks, and throws the cement wall and one man\",are raking guns with a mallet.,are on front trying to demonstrate the techniques to demonstrate makeup.\n12043,anetv_xx5TLuZmjcE,14148,Woman wearing black clothes is playing squash in a small wooden room. man with a stripped shirt,Woman wearing black clothes is playing squash in a small wooden room.,man with a stripped shirt,gold,is standing in a court room playing squash.,holds them and begins talking to the camera.,bows his head and puts on one shoe.,is drinking the last serving of the cup.\n12044,anetv_Q2wd5aLtZ1E,16846,A man is shown on top of a roof. He,A man is shown on top of a roof.,He,gold,picks up a newspaper and throws it onto a wall.,starts working out on a piece of machinery.,is removing shingles one by one with a tool.,is demonstrating how to remove a shingles over the wall.\n12045,anetv_Q2wd5aLtZ1E,16847,He is removing shingles one by one with a tool. He then,He is removing shingles one by one with a tool.,He then,gold,cuts the top of a shoe and moves it to red tile.,\"replaces the shingles, drilling them back into place.\",uses hooks to rest on the top of two bags.,uses the tool to scrape the pieces off the ceiling.\n12046,anetv_Q2wd5aLtZ1E,6312,The man removes the roofing. the man then,The man removes the roofing.,the man then,gold,lays the tire again.,bounces the tool in front of him.,replaces the ski again and scrapes.,installs a new roof.\n12047,lsmdc1009_Spider-Man3-76390,3155,The maitre d 'bringing the champagne glasses passes someone as she storms out. Someone,The maitre d 'bringing the champagne glasses passes someone as she storms out.,Someone,gold,\"shifts someone his books, then turns to their sisters.\",\"swigs from a bottle of juice, then takes a couple of steps forward.\",stares after someone in shock as the maitre d 'sets the glasses down on the table and the waiter brings a champagne bucket.,tosses the tray from him.\n12048,lsmdc1009_Spider-Man3-76390,3158,He dries the ring with a napkin. Hazy morning sunshine,He dries the ring with a napkin.,Hazy morning sunshine,gold,\"spreads out in its fur, revealing a shimmering sheer white moon beneath the top of bright white clouds.\",washes over the new york skyline.,floods the driveway as they float through the weeds at a grave.,streams into the night sky as he is led onto a dark pirate ship.\n12049,lsmdc1009_Spider-Man3-76390,3157,\"As a violinist serenades him, someone picks up someone's glass and fishes the ring out of it with a fork. He\",\"As a violinist serenades him, someone picks up someone's glass and fishes the ring out of it with a fork.\",He,gold,dries the ring with a napkin.,\"swings himself around, shoving him towards the door.\",rubs it across the neck of the thigh.,nods to the gryffindor player with the bow she wants to have.\n12050,lsmdc1009_Spider-Man3-76390,3159,Hazy morning sunshine washes over the New York skyline. Someone,Hazy morning sunshine washes over the New York skyline.,Someone,gold,walks on with her legs still on a sidewalk.,'s on a payphone at his rundown digs.,navigates on the scoreboard as the video continues.,sees someone burning candles with pamphlets.\n12051,lsmdc1009_Spider-Man3-76390,3162,He spins around and answers the phone. Someone,He spins around and answers the phone.,Someone,gold,looks at the hot screen.,puts a mugshot down in front of someone.,approaches and unlocks the front door.,drops down and taps an arm.\n12052,lsmdc1009_Spider-Man3-76390,3156,\"Someone stares after someone in shock as the maitre d 'sets the glasses down on the table and the waiter brings a champagne bucket. As a violinist serenades him, someone\",Someone stares after someone in shock as the maitre d 'sets the glasses down on the table and the waiter brings a champagne bucket.,\"As a violinist serenades him, someone\",gold,overhears him from the cycle.,grips the middle and punch him in the head.,picks up someone's glass and fishes the ring out of it with a fork.,joins someone atop dark streets.\n12053,lsmdc1009_Spider-Man3-76390,3160,\"Someone's on a payphone at his rundown digs. At her home, someone\",Someone's on a payphone at his rundown digs.,\"At her home, someone\",gold,is staring at her phone.,peers out a window behind him.,finds someone waiting behind an open desk.,enters the gas airplane apartment.\n12054,anetv_myHHyzx6TPc,33,A girl jumps onto a balance beam. She,A girl jumps onto a balance beam.,She,gold,does a gymnastics routine on the balance beam.,dismounts from the handstand to a mat.,runs across the balance beam and jumps onto the balance beam.,drops her arms and performs a zumba routine on the beam.\n12055,anetv_myHHyzx6TPc,34,She does a gymnastics routine on the balance beam. She,She does a gymnastics routine on the balance beam.,She,gold,dismounts and lands on a mat next to the beam.,does a belly flipping routine.,\"dismounts, landing her baton in the air.\",walks down the yard to the other side of the beam and jump behind the beam.\n12056,anetv_myHHyzx6TPc,19300,\"When she is prepared, she grabs the balance beam and does a split over it. After several tricks, she\",\"When she is prepared, she grabs the balance beam and does a split over it.\",\"After several tricks, she\",gold,stands up and does a flip and continues to to walk across the beam doing flips and cart wheels.,lands and lands on a mat and does it.,\"begins standing with her arms forward, looking shocked and raising her arms up, watching them to go spinning as she speaks.\",takes some orange socks from her feet and ties the baton again.\n12057,anetv_myHHyzx6TPc,19299,\"A teenage girl has on a blue leotard standing behind a balance beam. When she is prepared, she\",A teenage girl has on a blue leotard standing behind a balance beam.,\"When she is prepared, she\",gold,\"begins doing balance moves into a gym then she jumps in place, it's stuck up before.\",begins to throw hula hoops as she continues on to do her moves.,grabs the balance beam and does a split over it.,begins proud at the time she jumps before the end of her balance and lands on the mat the entire time they suddenly appear.\n12058,anetv_myHHyzx6TPc,19301,\"After several tricks, she stands up and does a flip and continues to to walk across the beam doing flips and cart wheels. As she finishes, she\",\"After several tricks, she stands up and does a flip and continues to to walk across the beam doing flips and cart wheels.\",\"As she finishes, she\",gold,is shown doing the same thing that moves to spin and flips until her other side is on screen.,\"rotates around and does a double flip between the bar that includes flips and handstands, all with the hoops put around incredible medals.\",spins around and performs several flips and tricks several times and turns holding up her wand.,\"does a flip off the beam, stumbles a little bit and then sticks her landing and walks off.\"\n12059,anetv_YWfLZFXwjTE,1647,A woman is seen holding a baby and begins taking a drink from a cup and spitting it into the sink. The woman,A woman is seen holding a baby and begins taking a drink from a cup and spitting it into the sink.,The woman,gold,\"places an oven on her mouth, and bends its chicken leg while presenting it to the camera.\",takes a towel from the towel rack then puts off a colored apron.,does this several more times wile the baby watches and laughs.,\"continues speaking to the camera while speaking to the camera, creating several teeth in a sink to catch a palette and its grabbing proceeded\"\n12060,anetv_vKC23-I4pBc,14861,A small group of people walk onto a stage and stand in front of a glass window. A man then,A small group of people walk onto a stage and stand in front of a glass window.,A man then,gold,begins spinning around the yard while waving to the camera and moving his hands.,washes the window as fast as he can and then walks away afterwards.,takes a break behind the pool.,plays some sort of tune with his hands and legs with others.\n12061,anetv_vKC23-I4pBc,7190,Several individuals walk back and forth on a stage with glass panes mounted in the middle while others stand or sit nearby. One of the individuals,Several individuals walk back and forth on a stage with glass panes mounted in the middle while others stand or sit nearby.,One of the individuals,gold,hits the ball engaged first.,holds the clean mugs to the woman and young man.,goes to the first one.,speedily cleans the glass panes.\n12062,anetv__9v34KLET0g,3941,The man mixes the ingredients into a glass together and juices a lime into the glass. He then,The man mixes the ingredients into a glass together and juices a lime into the glass.,He then,gold,\"pours ingredients into the ingredients into a pan, then pours the mixture into a mug filled with water and fries it around.\",\"juices and pours lemons into a container, taking out ingredients in a straight glass, then puts them in a glass.\",replaces it with two flute and ice and adds it.,\"pushes the ingredients around and pours liquids into the glass, creating an alcoholic drink.\"\n12063,anetv__9v34KLET0g,3940,A man is seen speaking to the camera behind a table with various ingredients and glasses laid out. The man,A man is seen speaking to the camera behind a table with various ingredients and glasses laid out.,The man,gold,mixes the ingredients into a glass together and juices a lime into the glass.,continues speaking to the camera and showing more shots as well as the camera taking to the man spraying.,is shown speaking to the camera and presenting two more shots of him flirting.,throws more food all around the counter while still speaking to the camera and smiling.\n12064,anetv_BSIV5tJ3bv4,10194,An athlete walks in front of a crowd rubbing his hands in powder and grabbing a weight set. He,An athlete walks in front of a crowd rubbing his hands in powder and grabbing a weight set.,He,gold,walked up and down from it!,crowd slow three men in uniform and add to the middle of the people.,\"lifts the weights over his head and throws it down afterwards, raising his hands up with his coach.\",places the tire in his trunk again.\n12065,anetv_UF2v4emX7rc,889,A group of men in masks are gathered around targets. They,A group of men in masks are gathered around targets.,They,gold,run around and hit the ball back and forth.,make a hole in the field.,are holding paint guns as they run across the field.,are playing a game of tug of war.\n12066,anetv_UF2v4emX7rc,890,They are holding paint guns as they run across the field. They,They are holding paint guns as they run across the field.,They,gold,in the left photograph with people near the road.,lob the ball back and forth over the net.,\"sumo wrestler, punches them with the horns, then they lob the ball back, and make their way through the field.\",\"hide behind obstacles, shooting at each other.\"\n12067,anetv_PmWF-HawRw0,2732,Athletes run down a track and throw a javelins across the field. A referees,Athletes run down a track and throw a javelins across the field.,A referees,gold,runs out to check the javelin position.,holds up a trophy.,thumbs up and give a thumbs up.,run in the circle while the crowd cheers on.\n12068,anetv_PmWF-HawRw0,2733,A referees runs out to check the javelin position. A leader board,A referees runs out to check the javelin position.,A leader board,gold,jumping on the sand to break the cow.,is shows scores of athletes.,is shown also doing several tricks.,his hockey stick.\n12069,anetv_zh0haUMeZV0,9349,A man is shown speaking inside a gym. Several other people,A man is shown speaking inside a gym.,Several other people,gold,are in the background working out on the equipment.,are exercising near the smoke.,walk around to play.,are standing behind him as he talks.\n12070,anetv_zh0haUMeZV0,11543,A man is seen speaking to the camera while people work out around him. The man then,A man is seen speaking to the camera while people work out around him.,The man then,gold,begins demonstrating how to tie the shoes while showing off his decorations.,washes his face with a rag and puts shaving cream over his face.,moves himself around and moves back and fourth at turn.,kneels down and demonstrates how to properly lift a weight while moving his body all around.\n12071,lsmdc1031_Quantum_of_Solace-84549,16811,An elderly couple sit on a wooden bench on a rail platform. Someone's car,An elderly couple sit on a wooden bench on a rail platform.,Someone's car,gold,is parked in the parking lot.,arrives at the depot.,pulls back to the main station.,sits with a bag of groceries.\n12072,anetv_fwU91k-Vmb8,11317,A bunch of children are riding around in bumper cars. They,A bunch of children are riding around in bumper cars.,They,gold,run off onto the poop track.,hands the boys the line that tries to be passed.,go back and forth on the track.,are standing on the side of the road and trying to grab the balls and they bike it.\n12073,anetv_fwU91k-Vmb8,11318,They go back and forth on the track. They,They go back and forth on the track.,They,gold,\"bump into each other, smiling and laughing.\",play a tug of war again.,take off and holding the ball in the air.,grab the ball and throw it at the batter.\n12074,anetv_QRcwvzq7QUM,1555,We then see people in a field on horses. The people,We then see people in a field on horses.,The people,gold,are playing polo on the horses.,\"are using horses and pepper, trees on the field, standing followed by them.\",play more games on a rope.,carry a bull out onto a field.\n12075,anetv_QRcwvzq7QUM,1559,The man is talking to the camera again. We,The man is talking to the camera again.,We,gold,see everything off the table.,zoom out of the screen.,are filming the man in the sky.,see the polo players on their horses.\n12076,anetv_QRcwvzq7QUM,1556,The people are playing polo on the horses. We,The people are playing polo on the horses.,We,gold,are on the side of the bull on the court.,see a man talking to the camera.,see the crowd watching and fall.,point out the man giving it to the beach on the horse.\n12077,anetv_QRcwvzq7QUM,1560,\"We see the polo players on their horses. A man holds liquor in front of a horses mouth, We\",We see the polo players on their horses.,\"A man holds liquor in front of a horses mouth, We\",gold,serves him n the jukebox.,see the man throw a shot poster.,prepares it and talks about how to start playing.,see the newscaster again.\n12078,anetv_QRcwvzq7QUM,1554,We see a lady standing in a news studio talking to the camera. We then,We see a lady standing in a news studio talking to the camera.,We then,gold,\"see a student, standing and sitting on a table.\",see people in a field on horses.,see people curling playing lacrosse on grass.,see two men playing on the road.\n12079,anetv_QRcwvzq7QUM,1558,We then see the people playing again. The man,We then see the people playing again.,The man,gold,is talking to the camera again.,talks to the camera several times.,bends around to get one for wrestling.,is really wet and talks towards the camera.\n12080,anetv_QRcwvzq7QUM,1557,We see a man talking to the camera. We then,We see a man talking to the camera.,We then,gold,see people dancing on their flat surfboards.,see the curling title.,see some old teams fighting in the game.,see the people playing again.\n12081,anetv_vi8zTSA6bhY,3550,Man is in a swinging make a kind of somervault on the air. the man,Man is in a swinging make a kind of somervault on the air.,the man,gold,gets the ball back to the man.,makes the big jump in the air and lands in a bike and stat riding it.,goes in and takes the bar on his hands and heaves doing the classical.,moves the poles for her.\n12082,lsmdc1011_The_Help-78486,4202,Someone checks nobody is in near shot. Someone,Someone checks nobody is in near shot.,Someone,gold,\"comes in, carrying her little boy someone.\",playfully pinches someone's trigger and she looks at him suspiciously.,looks over the shoulder of other boxes and sizes up them.,enters his bedroom where he turns using someone.\n12083,anetv_mRyXubjYWEo,19347,\"Then, the man and the male fight while jumping and kicking. After, the male kick the face of the man with his feet and\",\"Then, the man and the male fight while jumping and kicking.\",\"After, the male kick the face of the man with his feet and\",gold,does a spin with a hand on the floor while the man lands on a foamy mat.,the woman raking its leg.,continues to spin his body over in pain.,dance handstands while taking the headlock.\n12084,anetv_YmAIoN4uuz0,5499,The man gives hand gestures to the camera and swims to the surface when another man grabs his gear and he speaks to the camera. More men,The man gives hand gestures to the camera and swims to the surface when another man grabs his gear and he speaks to the camera.,More men,gold,sit before the camera looking out and swimming against the pool.,are seen walking down the river on the water underwater.,speak to the camera as he jumps in.,\"are seen in a mirror at a fabric, and swimming around many fish.\"\n12085,anetv_YmAIoN4uuz0,5498,The man dives into the water and is shown in several clips swimming around and fish moving along as well. The man,The man dives into the water and is shown in several clips swimming around and fish moving along as well.,The man,gold,is seen diving off the board and moving her arms up and down.,continues to move on as he speaks to the camera as well as his score being seen on the screen.,continues to lead the water all around the ice while he continues speaking and bowing to the camera.,gives hand gestures to the camera and swims to the surface when another man grabs his gear and he speaks to the camera.\n12086,anetv_YmAIoN4uuz0,5497,Various clips are shown of landscapes as well as people riding along on boats and a man speaking to the camera. The man,Various clips are shown of landscapes as well as people riding along on boats and a man speaking to the camera.,The man,gold,returns to speak to the camera and begins riding behind a kayak while a camera pans around him.,dives into the water and is shown in several clips swimming around and fish moving along as well.,continues riding around while more people watching him.,continues to kayak along the grass as well as several people on the rope and speaking to the camera.\n12087,lsmdc0046_Chasing_Amy-68817,3585,People sit on the couch. Someone,People sit on the couch.,Someone,gold,lies asleep next to her.,\"'s at the piano, frowning.\",\"tilts his head, then cocks his head.\",paces in front of them.\n12088,lsmdc0046_Chasing_Amy-68817,3582,\"Then, an idea hits him. He\",\"Then, an idea hits him.\",He,gold,\"raises his teeth, baring his surprise.\",sees someone on a stage stage.,stumbles to his feet.,jumps up and dashes out of the park.\n12089,lsmdc0038_Psycho-67449,7038,They pause before the door of Cabin One. Someone,They pause before the door of Cabin One.,Someone,gold,glances back then descends the newspaper factory.,turns down the radio and drops the crop.,looks out the window with a smile as he places it in his hand pocket and leaves.,\"motions someone to wait, to hold still, then goes on to the office, opens the door, calls in.\"\n12090,lsmdc0038_Psycho-67449,7037,Together they walk along the porch in the direction of Cabin One. They,Together they walk along the porch in the direction of Cabin One.,They,gold,use steep ladders to step up a steep hill.,look in the small mirror.,pause before the door of cabin one.,step out onto the walkway at the top.\n12091,lsmdc0038_Psycho-67449,7035,He holds it open and she goes out. Someone,He holds it open and she goes out.,Someone,gold,caresses the back of his collar as he continues out into the hall.,walks down the hall and sees the door closing.,\"closes the door, joins someone, takes her hand.\",stops the opposite turn and hurls it down the road as the car pulls out.\n12092,lsmdc0038_Psycho-67449,7034,\"He goes to the door, opens it slightly, looks out, then, back to someone. Someone\",\"He goes to the door, opens it slightly, looks out, then, back to someone.\",Someone,gold,nods cautiously and gesturing as someone drags him back into the building.,turns to look and sees a lot of people together.,goes to the door.,rises to her feet.\n12093,lsmdc0038_Psycho-67449,7033,\"Someone considers a moment, nods agreement, rises. He\",\"Someone considers a moment, nods agreement, rises.\",He,gold,\"goes to the door, opens it slightly, looks out, then, back to someone.\",steps off the bench and walks down a corridor towards the drinking room.,is confronted by hundreds vacuuming machines.,walks up the stairs at the dwarf.\n12094,lsmdc0038_Psycho-67449,7036,\"Someone closes the door, joins someone, takes her hand. Together they\",\"Someone closes the door, joins someone, takes her hand.\",Together they,gold,drive towards someone's saloon.,leave her hotel room and exit the apartment.,exit another elevator and dance in.,walk along the porch in the direction of cabin one.\n12095,anetv_vFRSso8WQfY,15302,\"She places apples and sugar into the blender with ice, and blends them together. She then\",\"She places apples and sugar into the blender with ice, and blends them together.\",She then,gold,wrings his hands over a hanger and removes the wine he will need to make.,\"adds one apple and bends for a second, then insert the mixture into it until point.\",highlighting the cake with baking to bake it for the next time.,pours the mixture into two glasses while she continues talking.\n12096,anetv_vFRSso8WQfY,15301,A woman is standing in a kitchen at the island in front of a blender and various ingredients. She,A woman is standing in a kitchen at the island in front of a blender and various ingredients.,She,gold,adds sugar to the mixture and mixes the ingredients together in a bowl.,\"places apples and sugar into the blender with ice, and blends them together.\",garnishes the bowl with soda and the mixture into.,\"mixes more ingredients into a bowl, and all of four bottles and dips eggs into a bowl by oil.\"\n12097,anetv_YcxPoVlukf4,970,Several stills of him playing ice hockey are shown as he talks. He,Several stills of him playing ice hockey are shown as he talks.,He,gold,shows a man outdoors scene on a baseball.,continues talking as the pictures flash across the screen.,flashes a disappointed grin and wins the game.,moves away on a painting and a wall slate.\n12098,anetv_-06dWmCzbxY,3251,A person rides down a rapid on an inter tube in a group of friends on a rocky river. The people in the intertubes,A person rides down a rapid on an inter tube in a group of friends on a rocky river.,The people in the intertubes,gold,get onto the canoe and ride through an angry covered area where the wave is over.,grab a few pairs of tubes and begin going down a steep hill under a photograph on the top.,climb up a hill before being driven away.,are helped along by a river guides in polo shirt.\n12099,lsmdc3011_BLIND_DATING-682,5571,He steps on a wheel toy and falls flat on his back. A little girl,He steps on a wheel toy and falls flat on his back.,A little girl,gold,drops the car up into his backyard.,tosses him into the car.,pulls papers off the reception desk.,opens the door to someone and school.\n12100,lsmdc3011_BLIND_DATING-682,5572,A little girl pulls papers off the reception desk. A woman,A little girl pulls papers off the reception desk.,A woman,gold,get off the radio and start pouring down the contents.,runs to the conference door.,walks past behind someone.,races to the desk.\n12101,lsmdc3011_BLIND_DATING-682,5573,A woman races to the desk. She,A woman races to the desk.,She,gold,eyes someone as he rubs the back of his hands over his head.,puts the chair over the rack.,\"looks closely at some asian women standing outside, indoors.\",cleans up the papers.\n12102,lsmdc3011_BLIND_DATING-682,5569,\"As another boy struggle to separate them. In the lobby, someone\",As another boy struggle to separate them.,\"In the lobby, someone\",gold,is handed her purse next to a woman next at the desk.,turns off a lamp.,talks into a microphone.,finds a glass door and enters.\n12103,lsmdc3011_BLIND_DATING-682,5575,\"She sneers at someone and shakes her head. Now, in an office, a model human head\",She sneers at someone and shakes her head.,\"Now, in an office, a model human head\",gold,has a head similar.,is hanging for a moment before pouring into the blender.,approaches a sketch of an elderly young asian boy.,wears sunglasses with a camera on one lens.\n12104,lsmdc3011_BLIND_DATING-682,5574,She fixes a scrutinizing gaze on him. She,She fixes a scrutinizing gaze on him.,She,gold,jerks her head in her direction.,purses her lips then moves out toward a frown.,enters one of the french windows to the opposite end of the hall.,sneers at someone and shakes her head.\n12105,anetv_YtFGG_7A_UU,17676,\"In her hand, she has a small circular container with shoe polish it and takes a rag and dips the rag in the container. The woman then\",\"In her hand, she has a small circular container with shoe polish it and takes a rag and dips the rag in the container.\",The woman then,gold,\"shows off a clean applying shaded exterior, close the kitchen, while the woman continues to brush.\",\"scrubs like a bucket and begins spraying cleaning solution, while the sponge is completed.\",proceeds to clean the male dress shoe with the cloth and polish.,takes the sponge and continues to wipe it off with a cloth to wash her clothes.\n12106,anetv_YtFGG_7A_UU,17677,The woman then proceeds to clean the male dress shoe with the cloth and polish. She then,The woman then proceeds to clean the male dress shoe with the cloth and polish.,She then,gold,uses the nude shoe to clean the palm of the woman's back.,paints the woman's hair with the dryer.,cleans the shoe first and a brush on her shoe.,takes a brush and start going over the shoe with it and pauses briefly and begins talking.\n12107,anetv_YtFGG_7A_UU,17674,A middle aged white female is standing in a lobby of some sort next to a picture talking. She then,A middle aged white female is standing in a lobby of some sort next to a picture talking.,She then,gold,\"applies the makeup product of the client with nail holder, and discusses it for a second and time.\",grabs a bottle of nail polish on her hands while still showing how to place the paper on the glass wall.,\"reappears in another room of the same place and is talking in front of a mirror, vase, and plant.\",uses a pair of fingers to tighten the hair on each hair but left to show where she is done.\n12108,lsmdc1017_Bad_Santa-7742,15290,\"He kisses his way back down her body and grips her pants between his teeth and pulls on them. As he does so, the kid\",He kisses his way back down her body and grips her pants between his teeth and pulls on them.,\"As he does so, the kid\",gold,begins to twirl his hips and butt as he bends away.,bends down and lifts her legs up to her arm.,comes in through the door.,stands face up to show the fourth difference.\n12109,lsmdc1017_Bad_Santa-7742,15275,He punches the kid low. He,He punches the kid low.,He,gold,hits him on a tree.,whacks someone in the balls too.,\"grins, but clinging to his purse window.\",ducks into the bomb frame.\n12110,lsmdc1017_Bad_Santa-7742,15288,He leans down and seductively licks from her navel up to her bra. He then,He leans down and seductively licks from her navel up to her bra.,He then,gold,slaps his shirt again.,leans forward and kisses her.,lowers his wet fur.,rolls up his legs to find her emerging from the front door.\n12111,lsmdc1017_Bad_Santa-7742,15283,Someone looks on anxiously as someone bends over someone. Someone,Someone looks on anxiously as someone bends over someone.,Someone,gold,walks out of the room and approaches someone with a pillow.,looks round at someone.,snaps out of the daze.,tries to release it.\n12112,lsmdc1017_Bad_Santa-7742,15284,Someone looks round at someone. He,Someone looks round at someone.,He,gold,pulls up in an alleyway near the cottage and approaches him.,holds his hand in front of her mouth then puts his head to her chest to listen for a heartbeat.,\"circles around mjolnir, then pauses constantly.\",glances up at someone.\n12113,lsmdc1017_Bad_Santa-7742,15292,\"Mystified, someone looks at it. He\",\"Mystified, someone looks at it.\",He,gold,holds up his injured hand.,\"peeks over her shoulder, as she wanders off the bed with light.\",bows and bows together.,'s standing medium's.\n12114,lsmdc1017_Bad_Santa-7742,15291,\"As he does so, the kid comes in through the door. He\",\"As he does so, the kid comes in through the door.\",He,gold,hands someone a roughly carved bit of wood with a ribbon round it.,keeps his eye against the museum.,is standing by the door to his piano smiling.,\"end the timer, as if dozens of people approach out, hurry off the dragon.\"\n12115,lsmdc1017_Bad_Santa-7742,15287,\"A bare - chested someone sits astride her, wearing his jeans and someone hat. He\",\"A bare - chested someone sits astride her, wearing his jeans and someone hat.\",He,gold,leans down and seductively licks from her navel up to her bra.,rolls up his hand.,stares intently at the terminal under his steady glare.,\", someone uses his phone and dials his number.\"\n12116,lsmdc1017_Bad_Santa-7742,15278,Someone turns to the kid. They,Someone turns to the kid.,They,gold,clap for people and come back to observe.,\", comes to his halt, gets up and crosses the street into a great hall.\",kick at each other.,\"and experience calculating the producer's son lead in new town, these people are now a long winding south of crossover unhook.\"\n12117,lsmdc1017_Bad_Santa-7742,15285,\"Later on, in a bedroom, a black rug is spread out on the floor. Nearby, someone\",\"Later on, in a bedroom, a black rug is spread out on the floor.\",\"Nearby, someone\",gold,lies on her back in her bra and jeans.,pauses examines the typewriter with a pencil at his hand.,covers his mouth with a towel.,enters the bedroom and locks it with someone.\n12118,lsmdc1017_Bad_Santa-7742,15295,Someone takes the report card. Someone,Someone takes the report card.,Someone,gold,leaves someone from nearby.,puts the report card down.,stop the phone film a walkway.,scans the food boxes.\n12119,lsmdc1017_Bad_Santa-7742,15282,Someone goes over to her. Someone,Someone goes over to her.,Someone,gold,raises his brow and stares at the sight.,looks on anxiously as someone bends over someone.,helps his boys step aside.,fires a last look.\n12120,lsmdc1017_Bad_Santa-7742,15289,He then leans forward and kisses her. He,He then leans forward and kisses her.,He,gold,\"kisses her neck, then shifts her right hand to record her head with open hands.\",locks the drawer and looks at her through the open window.,kisses his way back down her body and grips her pants between his teeth and pulls on them.,looks away with her eyes closed.\n12121,lsmdc1017_Bad_Santa-7742,15294,\"The next morning, someone is back in his someone gear and rooting around in the fridge in the kitchen when the kid runs in. Someone\",\"The next morning, someone is back in his someone gear and rooting around in the fridge in the kitchen when the kid runs in.\",Someone,gold,goes into the street with his aid.,takes the report card.,is chewing on a rusty phone.,stares at the food in shocked look.\n12122,lsmdc1017_Bad_Santa-7742,15279,\"That night, someone has collapsed in front of the tv in the lounge when people come in, they see her. Someone\",\"That night, someone has collapsed in front of the tv in the lounge when people come in, they see her.\",Someone,gold,\"lies back on the sofa, deathly still, with her mouth agape.\",\"holding the razor to someone, sits at a bedside table and picks up a phone on the table.\",enters the adjoining stall.,\"walks over, goes back to the others, and walks towards vivian's cottage.\"\n12123,lsmdc1017_Bad_Santa-7742,15276,He whacks someone in the balls too. He hits someone in the nuts and all three combatants,He whacks someone in the balls too.,He hits someone in the nuts and all three combatants,gold,fight the fallen balls.,turn to look at him.,duck at the tree.,\"lie, writhing in agony, on the canvas.\"\n12124,lsmdc1017_Bad_Santa-7742,15281,They walk a little closer. Someone,They walk a little closer.,Someone,gold,\"spots the little girl and rubs her chin surface, then turns.\",goes over to her.,brings someone to two knees.,produces the last of pamphlet.\n12125,lsmdc1017_Bad_Santa-7742,15280,\"Someone lies back on the sofa, deathly still, with her mouth agape. They\",\"Someone lies back on the sofa, deathly still, with her mouth agape.\",They,gold,is normally lonely keeping fondly at her baby before walking back to the facing mirror.,are still associated with people.,\"walk distracted alongside for a long moment, then turns to someone now.\",walk a little closer.\n12126,lsmdc1017_Bad_Santa-7742,15286,\"Nearby, someone lies on her back in her bra and jeans. A bare - chested someone\",\"Nearby, someone lies on her back in her bra and jeans.\",A bare - chested someone,gold,grabs a girl's face as she slides on the youth's arms.,\"sits astride her, wearing his jeans and someone hat.\",sits in someone's right facing someone with a warm expression.,lifts his head and slowly nuzzles her ear against his thigh.\n12127,anetv_p8h3G0Tblqc,10077,A man introduces the basketball concepts of the video to the camera. The player,A man introduces the basketball concepts of the video to the camera.,The player,gold,throws darts at a basketball hoop while two men appear in a pool hollow coral.,starts from one side of the court and runs up and lays up the basketball in the net.,does three mikan drills on bars and scores while people watch on the wall.,shows an ice cream bowler.\n12128,anetv_p8h3G0Tblqc,10078,The player starts from one side of the court and runs up and lays up the basketball in the net. He,The player starts from one side of the court and runs up and lays up the basketball in the net.,He,gold,shakes his legs and throwing himself and lets the square ball run ahead afterwards.,repeats around the court from every angle.,\"games of the game, the blue and yellow team continue playing on and then the players start hitting other balls on the side.\",spins the ball off the croquet mallet mallet.\n12129,anetv_p8h3G0Tblqc,10079,He repeats around the court from every angle. The man,He repeats around the court from every angle.,The man,gold,\"continues moving back and fourth swings many times and misses, drawing for a second first and playing smaller.\",finishes paying the ball a few more times.,returns to go over the concepts again as the video closes.,\"continues using the racket in the glass, the saw at a table and wiping it in his head.\"\n12130,anetv_VXLyTLY1PAw,14503,A man runs and jumps over a bar onto a purple mat. A man in a blue hat,A man runs and jumps over a bar onto a purple mat.,A man in a blue hat,gold,squats down on the slack line in the gym.,is standing next to them.,is playing a set of drums.,is seen to the bottom of the screen.\n12131,anetv_VXLyTLY1PAw,14502,Two people are standing on a field. A man,Two people are standing on a field.,A man,gold,wipes paper substance from a brush using an electric knife.,stands in front of a lawn mower for their child and building a hill.,runs and jumps over a bar onto a purple mat.,grabs a lasso and throws them down.\n12132,anetv_VXLyTLY1PAw,10224,One takes off running across the red ground. He,One takes off running across the red ground.,He,gold,stands up and tries to grab his weight.,scrambles out over the water to grab their gear.,pause as the impulse to run down a hill.,jumps over a bar onto a mat.\n12133,anetv_VXLyTLY1PAw,10223,Two boys are on a field outdoors. One,Two boys are on a field outdoors.,One,gold,boy falls in the sand.,has threw ball at the same pinata.,progresses one and approaches shirtless.,takes off running across the red ground.\n12134,anetv_9pJZsi04xBk,9827,Two teams play a game of indoor field hockey. Teams,Two teams play a game of indoor field hockey.,Teams,gold,take shots on a goal keeper that are blocked.,are playing a game tennis with another man in the background.,engage in a game of lacrosse.,run across sticks on the court.\n12135,anetv_9pJZsi04xBk,9828,Teams take shots on a goal keeper that are blocked. The referee,Teams take shots on a goal keeper that are blocked.,The referee,gold,hits the ball to one 1.,takes several turns to volley them on the court.,is trying to get them just.,starts and stops the game.\n12136,anetv_1T66cuSjizE,2756,A couple of wrestlers are fighting in a ring. One,A couple of wrestlers are fighting in a ring.,One,gold,has each ring on the ring.,grabs the other before slamming him down.,picks up the bag and are bowing and hitting them side - by - side.,is holding a ring of balloons.\n12137,anetv_1T66cuSjizE,2757,One grabs the other before slamming him down. He,One grabs the other before slamming him down.,He,gold,jolts up on the stereo.,is walking in silence in the adjacent side.,holds him while the referee slides in.,jumps down onto the monkey bars.\n12138,anetv_1T66cuSjizE,17209,A wrestler is seen standing in pain on the side while one gets up on the edge. The man then,A wrestler is seen standing in pain on the side while one gets up on the edge.,The man then,gold,begins swinging himself back and fourth on the bars and throwing his arms up.,swings her leg over the layups and another.,drops a javelin and kicks the ground.,flips the other around on the ground and throws his leg up into the air.\n12139,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9256,\"He moves in slow motion, visible through a sea of mist. Someone\",\"He moves in slow motion, visible through a sea of mist.\",Someone,gold,bolts a hail of bullets.,sinks to the ground.,lands back on his feet.,waves it at the giant white water.\n12140,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9250,\"People, overcome with terror, throw themselves flat on the ground. The 5 Ringwraiths\",\"People, overcome with terror, throw themselves flat on the ground.\",The 5 Ringwraiths,gold,\"is on the streets and staring at all the commotion, toward someone.\",utter a chilling screech of excitement.,begins to speed down faster.,punches someone on the shoulder.\n12141,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9236,\"He is marooned on the tiny, flat peak, surrounded on all sides by a sheer 500 foot drop. Someone crosses quickly to the edge and peers down: pov: One of the beautiful Isengard trees\",\"He is marooned on the tiny, flat peak, surrounded on all sides by a sheer 500 foot drop.\",Someone crosses quickly to the edge and peers down: pov: One of the beautiful Isengard trees,gold,has been blown out by some rocks.,is being ripped from the ground by the orcs.,perches by a railing at the bottom of the last dive.,has barely enough thick - high clouds of silver dust.\n12142,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9249,\"Someone's blade shatters. the witch king lashes out with his fist, sending someone flying. People, overcome with terror,\",\"Someone's blade shatters. the witch king lashes out with his fist, sending someone flying.\",\"People, overcome with terror,\",gold,\"explode around them, trying to prevent someone from falling.\",lies on top of the fire.,throw themselves flat on the ground.,\"try deep together, before yelling.\"\n12143,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9255,\"Suddenly, someone charges at the ringwraiths, wielding his sword in one hand, a flaming torch in the other. He\",\"Suddenly, someone charges at the ringwraiths, wielding his sword in one hand, a flaming torch in the other.\",He,gold,\"moves in slow motion, visible through a sea of mist.\",leans his arms out.,have turned on hefty power tank.,dashes from the dancer 'tent.\n12144,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9244,\"People race into a ring of broken stones on the summit or Weathertop, the ruined base of an ancient tower. The hobbits\",\"People race into a ring of broken stones on the summit or Weathertop, the ruined base of an ancient tower.\",The hobbits,gold,are dead holding hands.,are frozen convinced the finished retreats.,\"stand back - to - back in the centre of the ring, waiting for the first assault.\",surround their huddle from devastated.\n12145,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9252,\"The witch king extends a haggard hand towards someone, reaching for the ring on his finger. Someone's trembling hand\",\"The witch king extends a haggard hand towards someone, reaching for the ring on his finger.\",Someone's trembling hand,gold,twists past his scarred face as he jerks the blade.,is his chest as he breathes heavily.,extends forward as if by the pull of the ring.,sits up straight as she blasts someone into the fire.\n12146,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9258,\"With draining strength, someone manages to pull the ring off his finger. Appearing back in the real world, someone\",\"With draining strength, someone manages to pull the ring off his finger.\",\"Appearing back in the real world, someone\",gold,shakes his head and presses a button.,gets out of his bath and looks out of the window.,bursts out of the sarcophagus.,rushes over to him.\n12147,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9238,\"Someone stands in Rain looking out into the dark night. the orc overseer sidles up to him, axe in hand, sweating with exertion. More and more trees\",\"Someone stands in Rain looking out into the dark night. the orc overseer sidles up to him, axe in hand, sweating with exertion.\",More and more trees,gold,arrive with his mischievous enthusiasm.,an around the hall and the hazy stone people staring up at them.,are hauled down and killed.,are stacked between people on the cello in the multicolored lights.\n12148,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9241,Someone. eyes flickering open. He suddenly,Someone. eyes flickering open.,He suddenly,gold,darts past the timbers.,blows air smoke into his mouth.,looks over at him but his bag is still there.,\"sits up, sniffing the air.\"\n12149,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9247,Someone rushes forward with a cry. He,Someone rushes forward with a cry.,He,gold,puts it swiftly on the cover.,\"swings his sword at the witch king, who blocks the blow with his own sword.\",gestures to his ears.,\"reaches out to someone, then back him back.\"\n12150,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9237,Someone crosses quickly to the edge and peers down: pov: One of the beautiful Isengard trees is being ripped from the ground by the orcs. Someone,Someone crosses quickly to the edge and peers down: pov: One of the beautiful Isengard trees is being ripped from the ground by the orcs.,Someone,gold,looks on in horror as orcs hack into the trunk with axes.,aims his 4x4 at its motionless figure.,\"continues to pull away from someone, breathing quietly from his grief - stricken sobs.\",sees that girl did at one last sprint and fail to make it too far.\n12151,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9245,\"The hobbits stand back - to - back in the centre of the Ring, waiting for the first assault. One by one, the 5 Ringwraiths appear. brandishing Gleaming swords, they\",\"The hobbits stand back - to - back in the centre of the Ring, waiting for the first assault.\",\"One by one, the 5 Ringwraiths appear. brandishing Gleaming swords, they\",gold,move slowly towards the hobbits.,protectively puts a trajectory of hotels in the otherwise giant clear sky.,spin and hurl into each other's wings.,huddle around the bow.\n12152,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9246,\"One by one, the 5 Ringwraiths appear. brandishing Gleaming swords, they move slowly towards the hobbits. Someone\",\"One by one, the 5 Ringwraiths appear. brandishing Gleaming swords, they move slowly towards the hobbits.\",Someone,gold,makes them go straight.,\"adorns, caressing uppermost, roots.\",gently pulls someone towards the red king.,rushes forward with a cry.\n12153,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9239,More and more trees are hauled down and killed. as someone looks on in helpless despair. Someone,More and more trees are hauled down and killed. as someone looks on in helpless despair.,Someone,gold,pulls up outside a classroom.,settles to his knees and swims as more powerful giants move towards them.,swim straight up and meet torches lit by bound pillars.,\"stops before a distant hill, topped by an ancient ruin.\"\n12154,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9251,\"Someone finds himself in the weird twilight world. he looks upon the Ringwraiths, now visible in their true appearance: Five Ghouls dressed in long Grey robes, with white hair, and Pallid, ruthless faces. The witch king\",\"Someone finds himself in the weird twilight world. he looks upon the Ringwraiths, now visible in their true appearance: Five Ghouls dressed in long Grey robes, with white hair, and Pallid, ruthless faces.\",The witch king,gold,\"looks around, reaches, as soon as he can balance something from someone underneath and a black feather approaches.\",looks up at someone and walks up the thin foliage towards the statue so that she can recognize on his face.,sniffs the back.,\"extends a haggard hand towards someone, reaching for the ring on his finger.\"\n12155,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9248,\"He swings his sword at the Witch King, who blocks the blow with his own sword. Someone's blade shatters. the witch king\",\"He swings his sword at the Witch King, who blocks the blow with his own sword.\",Someone's blade shatters. the witch king,gold,glides from his hand and grabs three enemies.,strikes a dementor that holds it close to the cat's throat.,brings a hand to her head and grabs the ax.,\"lashes out with his fist, sending someone flying.\"\n12156,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9257,\"Someone sinks to the ground. With draining strength, someone\",Someone sinks to the ground.,\"With draining strength, someone\",gold,drops a fuselage bomb.,eyes the window on the landing.,manages to pull the ring off his finger.,averts his wounded gaze.\n12157,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9254,\"He stabs at someone with a wicked dagger! Suddenly, someone\",He stabs at someone with a wicked dagger!,\"Suddenly, someone\",gold,swings his arm up.,pitches out onto the grass.,\"is angrily away, from his stone to his lip.\",\"charges at the ringwraiths, wielding his sword in one hand, a flaming torch in the other.\"\n12158,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60080,9242,\"He suddenly sits up, sniffing the air. People\",\"He suddenly sits up, sniffing the air.\",People,gold,are at a window covered in flames.,falls into each other's eyes.,eyes someone and gives a tentative smile.,huddled over a small fire.\n12159,anetv_eAOBdYKju70,12197,Various shots are shown of horse saddles and various people riding these saddles on horses. A girl,Various shots are shown of horse saddles and various people riding these saddles on horses.,A girl,gold,speaks to the camera while still speaking and laughing to the camera.,runs on front stables and leads people around a horse in several shots as well as kneeling around the man.,wraps the rope around her saddle while others practice on placed saddles.,is shown holding up and holding the leashes with shots of the drawing.\n12160,anetv_eAOBdYKju70,12198,People ride around the saddles and show various caddie and how to ride them. A tourist is being interviewed on riding experience but she,People ride around the saddles and show various caddie and how to ride them.,A tourist is being interviewed on riding experience but she,gold,is also shown bouncing around the terrain like a ramp.,demonstrates the three riding back down the river.,is very happy in the kayak.,watched other riding and felt confident.\n12161,lsmdc0032_The_Princess_Bride-66067,3112,\"And to his amazement, he is being forced back down the steps. He tries one style, another, but it all\",\"And to his amazement, he is being forced back down the steps.\",\"He tries one style, another, but it all\",gold,\"lock made sure, then, presents the room one.\",closed in complete speed then stretches across the air and pulls out a tentacle and brings him out from a dead attack.,\"almost too far, and he poses for nothing.\",comes down to the same thing - - someone seems to be in control.\n12162,lsmdc0032_The_Princess_Bride-66067,3102,Someone is now perched at the edge of the elevated castle ruin. Someone,Someone is now perched at the edge of the elevated castle ruin.,Someone,gold,stares down at him.,sits on a balustrade.,\"slips onto his bed, then awkwardly greets an asian woman.\",stares at the boyishly bale.\n12163,lsmdc0032_The_Princess_Bride-66067,3111,\"And now he changes hands, and at last, the battle is fully joined. And to his amazement, he\",\"And now he changes hands, and at last, the battle is fully joined.\",\"And to his amazement, he\",gold,becomes very handsome as people carry him.,goes to stop her own someone.,is being forced back down the steps.,\"rallies the volunteers, emotion and care.\"\n12164,lsmdc0032_The_Princess_Bride-66067,3100,\"Someone presses on, someone retreating up a rocky incline. And he\",\"Someone presses on, someone retreating up a rocky incline.\",And he,gold,peers under his helmet.,shifts his style now.,crawls on a few soldiers chased by someone.,\"sniffs her shoulders, then hugs him.\"\n12165,lsmdc0032_The_Princess_Bride-66067,3107,The Cliff edge is very close now. Someone,The Cliff edge is very close now.,Someone,gold,is then shown set.,moves up onto the front of the palace building.,shoves the german man inside the gate.,is continually being forced toward it.\n12166,lsmdc0032_The_Princess_Bride-66067,3113,\"He tries one style, another, but it all comes down to the same thing - - someone seems to be in control. And before someone knows it, the six - fingered sword\",\"He tries one style, another, but it all comes down to the same thing - - someone seems to be in control.\",\"And before someone knows it, the six - fingered sword\",gold,is changing beneath him.,drops drop to her arm.,is knocked clear out of his hand.,tumbles down of the rope as it cracks back through the ground.\n12167,lsmdc0032_The_Princess_Bride-66067,3105,\"The two men are almost flying across the rocky terrain, never losing balance, never coming close to stumbling; the battle rages with incredible finesse, first one and then the other gaining the advantage, and by now, it's clear that this is n't just two athletes going at it, it's a lot more that that. Someone fights and ducks and feints and slashes and it all\",\"The two men are almost flying across the rocky terrain, never losing balance, never coming close to stumbling; the battle rages with incredible finesse, first one and then the other gaining the advantage, and by now, it's clear that this is n't just two athletes going at it, it's a lot more that that.\",Someone fights and ducks and feints and slashes and it all,gold,outward at the same time as the occupants of it straps down on him.,\"ripped out, running up right but fails again.\",\"go hard, once as the kids try to catch that they finally come to measure and assist the weight, smashing it backwards out\",\"works, but not for long, as gradually someone keeps the advantage, keeps forcing someone back, closer and closer to death.\"\n12168,lsmdc0032_The_Princess_Bride-66067,3103,\"Someone stares down at him. And now, with the grace of an Olympian, someone\",Someone stares down at him.,\"And now, with the grace of an Olympian, someone\",gold,salutes herself and makes her dress off for her haircut.,stumbles onto the farm crammed with tourists.,morphs into pieces of masonry and tosses it over someone's shoulders.,\"flies off the perch, somersaults clean over someone's head, and lands facing his opponent.\"\n12169,lsmdc0032_The_Princess_Bride-66067,3114,\"And before someone knows it, the six - fingered sword is knocked clear out of his hand. He\",\"And before someone knows it, the six - fingered sword is knocked clear out of his hand.\",He,gold,dances and does a harm.,steps through the museum to entry hatch.,\"brings his hat to his chest, and purses his lips.\",\"swings out, lands, and scrambles to his sword and we.\"\n12170,lsmdc0032_The_Princess_Bride-66067,3104,\"And now, with the grace of an Olympian, someone flies off the perch, somersaults clean over someone's head, and lands facing his opponent. The two men are almost flying across the rocky terrain, never losing balance, never coming close to stumbling; the battle rages with incredible finesse, first one and then the other gaining the advantage, and by now, it's clear that this is n't just two athletes going at it, it\",\"And now, with the grace of an Olympian, someone flies off the perch, somersaults clean over someone's head, and lands facing his opponent.\",\"The two men are almost flying across the rocky terrain, never losing balance, never coming close to stumbling; the battle rages with incredible finesse, first one and then the other gaining the advantage, and by now, it's clear that this is n't just two athletes going at it, it\",gold,'s a lot more that that.,is a lot kind of hard at that you just seem to be paying off the advantage.,gets on its way even more miserable.,is almost followed between a man trots his scooter as he turns.\n12171,lsmdc0032_The_Princess_Bride-66067,3109,\"Now faster, someone is in control and someone is desperate. And the six - fingered sword\",\"Now faster, someone is in control and someone is desperate.\",And the six - fingered sword,gold,is a congo - war - blood and screaming flesh.,\"is all but invisible now, as he increases his attack, then suddenly switches styles again.\",falls from someone's intricately - shaped round - throne.,has been clamped out of his face: he runs through the throng.\n12172,lsmdc0032_The_Princess_Bride-66067,3106,\"Someone fights and ducks and feints and slashes and it all works, but not for long, as gradually someone keeps the advantage, keeps forcing someone back, closer and closer to death. The Cliff edge\",\"Someone fights and ducks and feints and slashes and it all works, but not for long, as gradually someone keeps the advantage, keeps forcing someone back, closer and closer to death.\",The Cliff edge,gold,is very close now.,\"startles him, knocking him to the floor.\",obscures someone as he soars into the shadows.,enters and it smashes down to the ground.\n12173,lsmdc0032_The_Princess_Bride-66067,3108,\"And he throws the six - fingered sword into his right hand and immediately, the tide of battle turns. The someone, stunned,\",\"And he throws the six - fingered sword into his right hand and immediately, the tide of battle turns.\",\"The someone, stunned,\",gold,doing everything be can to keep someone by the cliff edge.,throws the cup down to the ground.,puts their hands to their mouth and mouth.,does not realize what someone means her.\n12174,lsmdc0032_The_Princess_Bride-66067,3099,\"Their swords cross, then again, again, and the sound comes so fast it's almost continual. Someone\",\"Their swords cross, then again, again, and the sound comes so fast it's almost continual.\",Someone,gold,\"presses on, someone retreating up a rocky incline.\",storms off and strikes a long hand across the table with a faint smile.,leans against the thousands of people as they continue racing through the park.,lose the course with their charity.\n12175,anetv_aotVhoXjqS0,17294,A man in a red shirt is holding a ball and racket talking. He,A man in a red shirt is holding a ball and racket talking.,He,gold,brings his hands up to show the girl's face.,shoots the ball against the wall in front of him.,drops the ball and hits it against the wall.,\"puts the ball on the ground, and picks it up.\"\n12176,anetv_aotVhoXjqS0,14792,Then he hits the ball and it goes the way he said it would. Then the ball comes back to him somehow and he,Then he hits the ball and it goes the way he said it would.,Then the ball comes back to him somehow and he,gold,is done shooting the ball very directly then him to fetch it.,\"watched the boy shot, gets up and begins hitting him with his paddle.\",flips the ball to the ground.,bounces it and hits it again with the racket sending it into orbit in the room.\n12177,anetv_aotVhoXjqS0,14791,The man explains to viewers how to serve and what walls the ball will hit depending on which wall the ball hits first. Then he hits the ball and it,The man explains to viewers how to serve and what walls the ball will hit depending on which wall the ball hits first.,Then he hits the ball and it,gold,hits goals is missing.,is repeated several times afterwards.,goes the way he said it would.,misses and breaks when the ball approaches.\n12178,anetv_aotVhoXjqS0,17295,He drops the ball and hits it against the wall. He,He drops the ball and hits it against the wall.,He,gold,hits the racket with his hand.,\"throws the ball against the wall, missing the ball.\",throws down a towel.,swings the ball back and forth over the net.\n12179,lsmdc3023_DISTRICT_9-10837,8133,\"Night time, someone drives in traffic. Someone\",\"Night time, someone drives in traffic.\",Someone,gold,pulls into the driveway and gets out of the car.,\"sits in front of someone's computer, grabbing his cane.\",switches on the tv.,sits down to show the car ahead.\n12180,lsmdc3023_DISTRICT_9-10837,8135,Someone greets him as he enters the darkened house. The lights,Someone greets him as he enters the darkened house.,The lights,gold,are drawn off under the wipers.,return as he rounds a corner.,go out on the sunny floor.,go on in the house.\n12181,lsmdc3023_DISTRICT_9-10837,8134,Someone pulls into the driveway and gets out of the car. Someone,Someone pulls into the driveway and gets out of the car.,Someone,gold,slides his hand into someone's mouth.,sticks his head on his shoulder.,\"moves toward the front door, letting him spin around in the raincoat.\",greets him as he enters the darkened house.\n12182,anetv_PveTDlMybvU,4870,The rider waves his arms to signal the others and takes the crashed bike off the course. The rider,The rider waves his arms to signal the others and takes the crashed bike off the course.,The rider,gold,rides alongside over rapidly.,is seen crashing in slow motion.,rides away from the shore.,walks behind the body of water and followed by him.\n12183,anetv_PveTDlMybvU,4869,The crashed rider crawls on the ground and is helped by another. The rider,The crashed rider crawls on the ground and is helped by another.,The rider,gold,pulls up in the water.,waves his arms to signal the others and takes the crashed bike off the course.,\"collapses on the pavement, drenched in blood, as the dog hangs dangerously out of the vehicle's arm.\",picks up a circle and throws it back.\n12184,anetv_PveTDlMybvU,4868,The other rider slows down and pulls off the track. The crashed rider,The other rider slows down and pulls off the track.,The crashed rider,gold,stops then throws the man off the tractor.,sits at the edge holding two poles.,\"rushes down on him, unzips his jacket and ties it up.\",crawls on the ground and is helped by another.\n12185,anetv_PveTDlMybvU,4867,One rider crashes over a jump and falls off his bike. The other rider,One rider crashes over a jump and falls off his bike.,The other rider,gold,shovel him the next beach.,comes forward and put a rope in the saddle.,slows down and pulls off the track.,walks off and shoots the man with only his head.\n12186,anetv_PveTDlMybvU,4866,Motorcycle riders race around a dirt track during a competition. One rider,Motorcycle riders race around a dirt track during a competition.,One rider,gold,turns around with a javelin next to them.,\"gets on young kicks, guarded by other riders.\",skiis through a slopes of snow.,crashes over a jump and falls off his bike.\n12187,lsmdc1027_Les_Miserables-6101,11808,\"Someone looks puzzled, then bows curtly and takes his leave. Someone\",\"Someone looks puzzled, then bows curtly and takes his leave.\",Someone,gold,hugs him and glances at someone then leans back for another kiss.,\"watches him go, then leans on his desk.\",turns to find someone walking towards someone.,holds out a thermos and puts it over her coat pocket.\n12188,anetv_g-l5CI29DPQ,17086,A girl is playing hopscotch on a back porch. A person,A girl is playing hopscotch on a back porch.,A person,gold,is sitting down on a picnic table watching them.,is riding a mower in front of a boy.,walks on a pinata as she does.,takes a tube and uses the brush to paint it.\n12189,anetv_g-l5CI29DPQ,17087,A person is sitting down on a picnic table watching them. The other person,A person is sitting down on a picnic table watching them.,The other person,gold,stretches then one drop to the crowd then turns to face the other.,sets the cat down by the older owner.,starts brushing their teeth.,gets up and starts playing.\n12190,lsmdc1045_An_education-90024,839,Someone nods and gives a tight smile. Someone,Someone nods and gives a tight smile.,Someone,gold,\"faces someone, and takes a step.\",climbs back from a seat in her harbor.,smiles and gets out of the car.,removes his cap and wipes it off.\n12191,lsmdc0001_American_Beauty-45621,15448,\"Someone emerges from the bathroom, a towel wrapped around her torso, drying her wet hair. She\",\"Someone emerges from the bathroom, a towel wrapped around her torso, drying her wet hair.\",She,gold,\"chews the gauze from her cheek, then slowly closes her eyes and points her gun at her boyfriend.\",leaves the bathroom past more.,picks up the phone.,stares at her moist eyes.\n12192,lsmdc0001_American_Beauty-45621,15438,\"As usual, he is dressed conservatively. He\",\"As usual, he is dressed conservatively.\",He,gold,swigs from his tin mug.,\"looks at the phone, recoils, and whistles.\",is 2 - year - old.,\"looks back at her curiously, then raises his digicam and starts to videotape her.\"\n12193,lsmdc0001_American_Beauty-45621,15464,\"Someone's eyes flash angrily. A beat, as someone continues his calculations, before he\",Someone's eyes flash angrily.,\"A beat, as someone continues his calculations, before he\",gold,can manage his sudden words all by catching his breath and holding his guitar with his back.,\"runs, touches someone 'briefcase.\",\"can stop a dragon, leaps over his head.\",realizes a response is expected from him.\n12194,lsmdc0001_American_Beauty-45621,15443,\"Someone turns back into the room, her heart racing. Someone, dressed for work,\",\"Someone turns back into the room, her heart racing.\",\"Someone, dressed for work,\",gold,yanks out her lilies.,wanders nervously toward the mansion.,arrives outside a building and swings a hand next to each other.,goes through someone's address book.\n12195,lsmdc0001_American_Beauty-45621,15452,\"Someone picks up the address book, frowning. We\",\"Someone picks up the address book, frowning.\",We,gold,\"are across from someone's window, looking in.\",hear the crunch being airborne.,get out of the screen.,are treated in two childhood poses.\n12196,lsmdc0001_American_Beauty-45621,15449,She picks up the phone. Someone,She picks up the phone.,Someone,gold,swings someone's arm across the stage.,\"is sprawled across her bed, on the phone.\",counts up and out of her bag.,smiles at someone as someone takes a sip.\n12197,lsmdc0001_American_Beauty-45621,15465,\"A beat, as someone continues his calculations, before he realizes a response is expected from him. Someone\",\"A beat, as someone continues his calculations, before he realizes a response is expected from him.\",Someone,gold,\"sighs, then looks at his father.\",raises the broken glass.,convulses in the corner.,holds someone's fists as he sits down.\n12198,lsmdc0001_American_Beauty-45621,15445,\"He grabs someone's phone and dials, then stands with the receiver to his ear, nervous. Someone\",\"He grabs someone's phone and dials, then stands with the receiver to his ear, nervous.\",Someone,gold,\"is frozen, unable to speak.\",turns and walks out of the lot outside the apartment building.,takes one of the photos.,makes a twirl tot her hair then turns around.\n12199,lsmdc0001_American_Beauty-45621,15450,\"Someone is sprawled across her bed, on the phone. Then someone\",\"Someone is sprawled across her bed, on the phone.\",Then someone,gold,stands and stares down at the photo on the wall.,\"holds her bedroom door open, totally shaking her as.\",runs across the street to reach the others.,notices her address book open to the h page.\n12200,lsmdc0001_American_Beauty-45621,15435,We zoom toward someone as she walks up the driveway. She,We zoom toward someone as she walks up the driveway.,She,gold,comes out of the house.,\"turns suddenly, sensing our presence.\",watches from the police.,looks at her and smiles.\n12201,lsmdc0001_American_Beauty-45621,15457,Someone sits at a dinette reading The Wall Street Journal. People,Someone sits at a dinette reading The Wall Street Journal.,People,gold,shut the next page.,stumble in the air over a beam of bats.,\"look at each other, alarmed.\",are playing for parachutes life.\n12202,lsmdc0001_American_Beauty-45621,15456,\"Someone serves himself scrambled eggs from another pan, then joins his father at the table. Someone\",\"Someone serves himself scrambled eggs from another pan, then joins his father at the table.\",Someone,gold,holds out his right hand and knocks down the fork off his plate.,sits at a dinette reading the wall street journal.,narrows her eyes and flips through her merchandise.,breaks his warm gaze.\n12203,lsmdc0001_American_Beauty-45621,15460,\"Someone stares at them, suspicious. The people\",\"Someone stares at them, suspicious.\",The people,gold,pursue each other into an alleyway.,begin to stare as she straight bows to one of them.,\"look at each other, then back at someone.\",shoot at each other sideways.\n12204,lsmdc0001_American_Beauty-45621,15444,\"Someone, dressed for work, goes through someone's address book. He\",\"Someone, dressed for work, goes through someone's address book.\",He,gold,rubs the ashes of his cigarette.,\"grabs someone's phone and dials, then stands with the receiver to his ear, nervous.\",\"hands her a folded letter with little bills, then glances into a hole in the stomach.\",squints at her typewriter.\n12205,lsmdc0001_American_Beauty-45621,15454,\"Startled, someone turns to him. As she\",\"Startled, someone turns to him.\",As she,gold,\"walks, they enter bare in silhouette.\",\"throws his knees up spots the fight, in slow motion someone gets near her.\",attempts to serve him bacon.,\"floats beside him, richard parker watches someone.\"\n12206,lsmdc0001_American_Beauty-45621,15451,Then someone notices her address book open to the h page. Someone,Then someone notices her address book open to the h page.,Someone,gold,\"picks up the address book, frowning.\",pulls someone into the man carriage.,passes over various files with agent someone.,poses on a couch with the taped in her arm.\n12207,lsmdc0001_American_Beauty-45621,15455,As she attempts to serve him bacon. Someone,As she attempts to serve him bacon.,Someone,gold,\"serves himself scrambled eggs from another pan, then joins his father at the table.\",smokes from the couch.,can't take his eyes off someone.,bathes the auburn charmingly as she sleeps.\n12208,lsmdc0001_American_Beauty-45621,15436,\"She turns suddenly, sensing our presence. We\",\"She turns suddenly, sensing our presence.\",We,gold,appear at the end.,find as she catches up.,\"steps away, convinced that she must never be okay.\",are looking at the colonial house next door where the moving van was parked earlier.\n12209,lsmdc0001_American_Beauty-45621,15446,\"Someone is frozen, unable to speak. Someone\",\"Someone is frozen, unable to speak.\",Someone,gold,hangs up and exits quickly.,includes a crystal bright blue light and unusual in its amber top.,walks out of the clearing and watches the headmistress disappear.,takes hold of the alien.\n12210,lsmdc0001_American_Beauty-45621,15447,Someone hangs up and exits quickly. Someone,Someone hangs up and exits quickly.,Someone,gold,\"emerges from the bathroom, a towel wrapped around her torso, drying her wet hair.\",kicks the policeman in the window.,jumps off a railing and falls backward out of the train taking sight.,\"comes out, leaving someone walking still, alone.\"\n12211,lsmdc0001_American_Beauty-45621,15437,We are looking at the colonial house next door where the moving van was parked earlier. The front porch,We are looking at the colonial house next door where the moving van was parked earlier.,The front porch,gold,is shrouded in darkness.,is small from the room upside down down.,rattling a triumphant look.,is the middle of the house.\n12212,lsmdc0001_American_Beauty-45621,15459,\"Someone holds out a basket filled with flowers, vegetables and a small white cardboard box tied with raffia. Someone\",\"Someone holds out a basket filled with flowers, vegetables and a small white cardboard box tied with raffia.\",Someone,gold,blows all the way down to its floor and gets up to leave.,watches as he shakes the boys hand.,\"pops her fingers, then licks them together.\",\"stares at them, suspicious.\"\n12213,lsmdc0001_American_Beauty-45621,15463,\"In the passenger seat, someone is using a calculator and jotting numbers down in a notebook. Someone\",\"In the passenger seat, someone is using a calculator and jotting numbers down in a notebook.\",Someone,gold,heart - shaped metal panel has numbers on an filing drawer with a marker lines sole it.,\"come into a cluttered clearing, white mobile letters titled, shipping.\",looks at someone sharply.,glides through the air and finds the mysterious lady in a blue archery helmet.\n12214,lsmdc0001_American_Beauty-45621,15467,\"Someone is taken aback but quickly covers. Case closed, someone\",Someone is taken aback but quickly covers.,\"Case closed, someone\",gold,spots someone reading the last gangster.,picks up a folding table.,stares at the model and narrows his eyes at someone.,goes back to his calculations.\n12215,lsmdc0001_American_Beauty-45621,15461,\"The people look at each other, then back at someone. Someone\",\"The people look at each other, then back at someone.\",Someone,gold,\"looks at them, confused.\",vets to a nazi opponent with the pale boy.,\"clings to someone, sinking weakly to someone, who braces him.\",makes their way closer to someone.\n12216,lsmdc0001_American_Beauty-45621,15440,\"His pov, on video: someone, angry and self - conscious, turns and walks quickly toward her house, flipping us off as she goes. Someone\",\"His pov, on video: someone, angry and self - conscious, turns and walks quickly toward her house, flipping us off as she goes.\",Someone,gold,goes down the stairs to the ballet dancer.,\"waves into the living room, we both see the girl in the mirror sitting from the toilet.\",is going through the heavy glass on the ceiling.,\"enters, closes and locks the door.\"\n12217,lsmdc0001_American_Beauty-45621,15439,\"He looks back at her curiously, then raises his Digicam and starts to videotape her. His pov, on video: someone, angry and self - conscious, turns and walks quickly toward her house,\",\"He looks back at her curiously, then raises his Digicam and starts to videotape her.\",\"His pov, on video: someone, angry and self - conscious, turns and walks quickly toward her house,\",gold,flipping us off as she goes.,embraces the old woman in the heart.,landing in the seat.,\"emerging from the kitchen, swinging back.\"\n12218,lsmdc0001_American_Beauty-45621,15453,\"We are across from someone's window, looking in. She speaks into the phone, but we\",\"We are across from someone's window, looking in.\",\"She speaks into the phone, but we\",gold,see someone go cross betrayed an generator.,can barely see she is walking.,hear someone's voice by her side.,can't hear her.\n12219,lsmdc0001_American_Beauty-45621,15442,\"She quickly turns off the light that's been left on for her, then peeks through a window. Someone\",\"She quickly turns off the light that's been left on for her, then peeks through a window.\",Someone,gold,are cutting the roofs of a roof.,\"proceeds to thin up the cloth of someone's clothes, revealing an ornate handle.\",takes his car to a drive.,\"turns back into the room, her heart racing.\"\n12220,lsmdc0001_American_Beauty-45621,15433,Someone stares at the floor. Someone,Someone stares at the floor.,Someone,gold,\"stares at someone, who is running calls.\",materializes in a smart loft restaurant.,\"gets out of the car, still laughing, and waves as someone pulls away.\",eyes the agent worriedly.\n12221,lsmdc0001_American_Beauty-45621,15466,\"Someone sighs, then looks at his father. Someone\",\"Someone sighs, then looks at his father.\",Someone,gold,follows a moment and finds someone looking at someone.,is taken aback but quickly covers.,turns from a lamp then beams in his direction.,gives him a cheap look.\n12222,lsmdc0001_American_Beauty-45621,15441,\"Someone enters, closes and locks the door. She\",\"Someone enters, closes and locks the door.\",She,gold,\"turns the key that was locked, as she tries to run through the far wall of the room again.\",\"quickly turns off the light that's been left on for her, then peeks through a window.\",shuts driver's door and shuts the door after him.,\"gets out, carrying a newspaper draped over his shoulder.\"\n12223,lsmdc0001_American_Beauty-45621,15434,\"Someone gets out of the car, still laughing, and waves as someone pulls away. We\",\"Someone gets out of the car, still laughing, and waves as someone pulls away.\",We,gold,\"looks after him, then follows someone.\",\"rides him down the steep road to someone house, carrying plethora of serpentine metal creatures.\",\"back on the bedroom open, someone runs over to someone who sits on the edge watching his leg.\",zoom toward someone as she walks up the driveway.\n12224,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18682,\"He is uncomfortable, and she tries desperately to keep the conversation alive. Someone, in a bathrobe, and with her hair in curlers,\",\"He is uncomfortable, and she tries desperately to keep the conversation alive.\",\"Someone, in a bathrobe, and with her hair in curlers,\",gold,is addressing several military balloons.,standing in a corridor.,is leaning over the banister as she calls.,lets him rain down.\n12225,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18677,They go through the doorway into the parlor. Someone,They go through the doorway into the parlor.,Someone,gold,\"looks through the neighborhood in the woods, squinting, making his way through the empty yard.\",appear on a monkeysee screen.,sees the cartoon on the easel and bends down for a close look at it.,\", the woman, a small salesman, leads up a large pile of leaves near the security panel.\"\n12226,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18680,\"There is silence for a moment, then someone joins in singing with the phonograph record which has been playing all through the above scene. He\",\"There is silence for a moment, then someone joins in singing with the phonograph record which has been playing all through the above scene.\",He,gold,\"pretends to rush around, stiff and strains like an motion of it.\",\"stops flipping all over, smiling as he laughs, hands in the ground.\",began floating in the wind.,\"looks at his watch, as though about to leave.\"\n12227,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18681,\"He looks at his watch, as though about to leave. He is uncomfortable, and she\",\"He looks at his watch, as though about to leave.\",\"He is uncomfortable, and she\",gold,tries desperately to keep the conversation alive.,rises to keep hold of her arm.,puts down her pace.,waggles in his mood.\n12228,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18678,Someone sees the cartoon on the easel and bends down for a close look at it. People,Someone sees the cartoon on the easel and bends down for a close look at it.,People,gold,are reading on the someone forward extensive notebook journal.,crawls from the carriage.,sitting on the divan.,walk up to it and clip the manager's wedding.\n12229,lsmdc0014_Ist_das_Leben_nicht_schoen-54606,18679,\"People sitting on the divan. There is silence for a moment, then someone\",People sitting on the divan.,\"There is silence for a moment, then someone\",gold,\"sits down, sits down in a chair.\",staring if rises and blinks gently.,makes her look tearful and sighs in a voice.,joins in singing with the phonograph record which has been playing all through the above scene.\n12230,anetv_uY0ngQlbIZc,485,They are in an indoor enclosed court area playing the game. They,They are in an indoor enclosed court area playing the game.,They,gold,are moving around all over the court trying to hit the ball.,engage playing the sport in a gym with a goalie.,are presenting and getting their filter clear of their shorts.,eat with trophies and talk about their game.\n12231,anetv_uY0ngQlbIZc,484,Two men that are matching each other are playing a game of racket ball. They,Two men that are matching each other are playing a game of racket ball.,They,gold,run the ball around the room and kick it around.,are in an indoor enclosed court area playing the game.,again hit the ball back and forth in the balls.,appear behind him as they watch the film.\n12232,anetv_uY0ngQlbIZc,486,They are moving around all over the court trying to hit the ball. The bald man,They are moving around all over the court trying to hit the ball.,The bald man,gold,begins to walk out of the court smiling.,stands with the eggs.,runs towards the ball and throws the shot put.,comes onto the stage and hits a ball.\n12233,anetv_6l0tenUYS-w,1391,There is man speaking on the microphone to announce who's coming up. Next many different people,There is man speaking on the microphone to announce who's coming up.,Next many different people,gold,go up on stage to dance.,are shown performing scuba darts while the camera pans around them.,are going to flip through public skate studio that they give him down a game in a public room.,are snowboarding down a road on broomsticks.\n12234,lsmdc1034_Super_8-7915,4826,\"A police car is on the drive, and a boy, someone, sits on a swing in the garden. He\",\"A police car is on the drive, and a boy, someone, sits on a swing in the garden.\",He,gold,comes up the monkey track and skids up to the feet of the pit.,tosses a boat through the air and turns the boy level.,\"strides silently into the dark, forest before a pack of cigarette bags, raking this pavement out of his way.\",\"is about 14, and glumly looks down at a locket that he is holding.\"\n12235,lsmdc1034_Super_8-7915,4827,\"He is about 14, and glumly looks down at a locket that he is holding. A wake\",\"He is about 14, and glumly looks down at a locket that he is holding.\",A wake,gold,\"comes down from the water, and leaps thrusts into the water.\",descends down the slope.,crashes from the boat.,is being held inside the house.\n12236,lsmdc1034_Super_8-7915,4828,A wake is being held inside the house. People,A wake is being held inside the house.,People,gold,are rollerblading and wearing snowboards and skateboarding through the streets.,show off his smoking village where they fight off.,\"is playing, stuffing notes under the water.\",look at someone through the window.\n12237,lsmdc1034_Super_8-8453,679,Smiles spread across their faces. The spacecraft,Smiles spread across their faces.,The spacecraft,gold,place alongside the small truck.,projects their pews above the opening in the middle of the ship.,senses that everything is repeated in a disclaimer and a word of england comes up in the screen.,becomes a dot of light high up in the sky.\n12238,lsmdc1034_Super_8-8453,668,Someone looks over someone's shoulder at the water tower and sees the alien climbing up it. The creature,Someone looks over someone's shoulder at the water tower and sees the alien climbing up it.,The creature,gold,spins upside down and jabs hard at the dead.,steps into the now fully formed spaceship it's created on top of the water tower and the door closes behind it.,drops to its ground and beams into the supports.,\"coasts into the base of a high cliff, as someone dives through the circular bay into the oncoming mass.\"\n12239,lsmdc1034_Super_8-8453,650,\"Now back on the surface, people join troops on a street in town. Strange magnetic force\",\"Now back on the surface, people join troops on a street in town.\",Strange magnetic force,gold,has a thick veil of roots soaking the skin as sart float back out.,pulls metal items up off the ground and draws them towards the water tower.,\"brakes from a neighborhood, over a cold, dazed neighborhood.\",can be tipped over in the corn near the ghetto.\n12240,lsmdc1034_Super_8-8453,659,People pick themselves up and watch as a steady stream of metallic bits and pieces stream up towards the water tower and are melded into the ever growing structure on top of it. Someone,People pick themselves up and watch as a steady stream of metallic bits and pieces stream up towards the water tower and are melded into the ever growing structure on top of it.,Someone,gold,flood through the crowd.,continues with his family up.,takes a swipe at her lips as though aware of how happy they are thinking.,smiles as the vast structure begins to take shape.\n12241,lsmdc1034_Super_8-8453,648,\"It turns and runs away back up the tunnel, on its many legs. Someone\",\"It turns and runs away back up the tunnel, on its many legs.\",Someone,gold,\"stares after it, catching his breath.\",finds someone's doorknob.,looks around for the source.,lets go of the church's lid.\n12242,lsmdc1034_Super_8-8453,651,\"A bin, oil barrels, a table lamp, a bicycle and numerous other objects are all drawn irresistibly towards the tower. The items\",\"A bin, oil barrels, a table lamp, a bicycle and numerous other objects are all drawn irresistibly towards the tower.\",The items,gold,stick to the side of the structure.,are parked at the corner of the building when they are locked.,\"plethora of tutus are used to separate the events, taking the covers from someone's seeks.\",are put back together on top of the bucket.\n12243,lsmdc1034_Super_8-8453,672,\"The locket clicks open, revealing the picture inside, which is of someone's mother, holding him as a baby. Someone lets go of the locket's chain and it\",\"The locket clicks open, revealing the picture inside, which is of someone's mother, holding him as a baby.\",Someone lets go of the locket's chain and it,gold,shakes his head.,rips through someone's veil.,smashes into his giant's face.,floats up towards the water tower.\n12244,lsmdc1034_Super_8-8453,658,\"People have to dive onto the ground as the cubes pass overhead. The cubes, cars and other bits and pieces\",People have to dive onto the ground as the cubes pass overhead.,\"The cubes, cars and other bits and pieces\",gold,\"begin to fuse together, forming a gigantic structure on top of the tower.\",are torn from the impact course.,are sucked towards a road breaking wheels.,are sucked out of the dive.\n12245,lsmdc1034_Super_8-8453,675,\"The spaceship, which resembles the canopy of a palm tree, lifts into the air. He, people\",\"The spaceship, which resembles the canopy of a palm tree, lifts into the air.\",\"He, people\",gold,\"paddle from the boat, gesture at each other then faces his father.\",\"unload a rails and tubes from the snowy - slope, peering down a rocky mountain.\",watch as the spacecraft gains altitude in a blaze of bright lights.,\", lies on the back of his car.\"\n12246,lsmdc1034_Super_8-8453,673,Someone lets go of the locket's chain and it floats up towards the water tower. Someone and the others,Someone lets go of the locket's chain and it floats up towards the water tower.,Someone and the others,gold,stare through one of the doors as bullets explode inside them.,watch as the locket sticks to the side of the tower.,\"take them down, flipping their people onto the makeshift cottage below.\",watch as someone takes off war safety and drags someone away into the sunlit courtyard.\n12247,lsmdc1034_Super_8-8453,666,Someone looks over at her father as he steps up to her. They,Someone looks over at her father as he steps up to her.,They,gold,raises his hands to wave broadly.,\"glances at her feet, then pauses and gives her back downward and sitting down on the bench.\",works his way through the contorts and stops a few seconds when someone slips into them.,\"regard each other for a moment, then hug.\"\n12248,lsmdc1034_Super_8-8453,654,He hangs onto it and is lifted up off the ground. He,He hangs onto it and is lifted up off the ground.,He,gold,crashes down noisily on the ceiling and someone climbs along the bench.,is pulled about 20 feet into the air before letting go.,\"flips over, then jumps down and bends over on the ground.\",watches his chin peek cautiously towards his rear and glances outside the door.\n12249,lsmdc1034_Super_8-8453,671,\"It hangs in the air, pulled by an invisible force. The locket\",\"It hangs in the air, pulled by an invisible force.\",The locket,gold,\"clicks open, revealing the picture inside, which is of someone's mother, holding him as a baby.\",\"resumes the clip, someone talks to the captain.\",wanders down to the snake's skull as she regards it.,lies buried in the sludge.\n12250,lsmdc1034_Super_8-8453,664,\"The dads walk towards them and people go to meet them. Eyes closed, they\",The dads walk towards them and people go to meet them.,\"Eyes closed, they\",gold,pause on the end of the passage.,stare at the rain.,exchange one icy wave.,hold each other tight.\n12251,lsmdc1034_Super_8-8453,660,Someone smiles as the vast structure begins to take shape. A Jeep drives up and someone,Someone smiles as the vast structure begins to take shape.,A Jeep drives up and someone,gold,sees his dad and someone get out of it.,\"rises from the underbrush, still clinging to the submarine.\",spies the sun at the end of the alley under the web.,\"rides in to little someone, waiting at the controls.\"\n12252,lsmdc1034_Super_8-8453,677,\"Hobbling through town, people sit sailing up into the night sky. Still stoned in his car, someone slumbers on as the spaceship flies by, its lights\",\"Hobbling through town, people sit sailing up into the night sky.\",\"Still stoned in his car, someone slumbers on as the spaceship flies by, its lights\",gold,bounce off on the table.,blown off and its end beacon in on the ocean sun.,flashing on the bodhi tree.,reflected in his windshield.\n12253,lsmdc1034_Super_8-8453,667,\"They regard each other for a moment, then hug. Someone\",\"They regard each other for a moment, then hug.\",Someone,gold,comes up with them.,trudges along a corridor.,opens the door and takes out the phone.,looks over someone's shoulder at the water tower and sees the alien climbing up it.\n12254,lsmdc1034_Super_8-8453,678,\"As they watch it recede into the distance, people hold hands. Smiles\",\"As they watch it recede into the distance, people hold hands.\",Smiles,gold,sees the general somehow sway again.,\", they walk up through a mound of circular trees.\",\", someone stands together around the pool, looking for a prize.\",spread across their faces.\n12255,lsmdc1034_Super_8-8453,646,\"Hearing the machinery, the alien looks away for a moment, then turns back to someone. Someone\",\"Hearing the machinery, the alien looks away for a moment, then turns back to someone.\",Someone,gold,watches warily as the alien puts someone back on the ground.,\"turns to someone, his dark eyes scan the space behind someone.\",pours a liquid into a glass.,backs to the car next door.\n12256,lsmdc1034_Super_8-8453,663,\"Someone nudges someone, who looks round and sees her dad with someone. The dads walk towards them and people\",\"Someone nudges someone, who looks round and sees her dad with someone.\",The dads walk towards them and people,gold,try to grab someone's glare.,go to meet them.,\"seem to be good from winning it, joke in the meeting.\",is pulled together on the side corner.\n12257,lsmdc1034_Super_8-8453,645,\"It leans in close and retracts some protective membranes from over its eyes and its expression softens. Hearing the machinery, the alien\",It leans in close and retracts some protective membranes from over its eyes and its expression softens.,\"Hearing the machinery, the alien\",gold,heads up a hill.,\"looks away for a moment, then turns back to someone.\",joins the other lady because it explodes.,turns with the wiper.\n12258,lsmdc1034_Super_8-8453,657,\"Suddenly, the back of one of the military container lorries bursts open and the white cubes flood out of it. People\",\"Suddenly, the back of one of the military container lorries bursts open and the white cubes flood out of it.\",People,gold,have to dive onto the ground as the cubes pass overhead.,run onto the scenic path.,face the three men.,\"crash through a large exhausted bottle, as the other.\"\n12259,lsmdc1034_Super_8-8453,647,Someone watches warily as the alien puts someone back on the ground. It,Someone watches warily as the alien puts someone back on the ground.,It,gold,leans back onto the hood.,takes out the contract and studies it stoically.,\"turns and runs away back up the tunnel, on its many legs.\",blasts him through the face.\n12260,lsmdc1034_Super_8-8453,662,\"Someone looks up at the water tower, then spots someone. Someone\",\"Someone looks up at the water tower, then spots someone.\",Someone,gold,\"nudges someone, who looks round and sees her dad with someone.\",inserts a bullet at the shelf and slides it to the ground.,beams in horror as she nudges him with his arm as the teacher performs.,watches his eyes open - mouthed as beautiful vehicles pass.\n12261,lsmdc1034_Super_8-8453,649,\"Someone stares after it, catching his breath. Now back on the surface, people\",\"Someone stares after it, catching his breath.\",\"Now back on the surface, people\",gold,join troops on a street in town.,run to the coffin.,are away in a classroom.,apparate in their records en.\n12262,lsmdc1034_Super_8-8453,674,\"Someone and the others watch as the locket sticks to the side of the tower. The spaceship, which resembles the canopy of a palm tree,\",Someone and the others watch as the locket sticks to the side of the tower.,\"The spaceship, which resembles the canopy of a palm tree,\",gold,hangs above a thick tree as it explodes.,sits at its prow.,glows on someone's face.,lifts into the air.\n12263,lsmdc1034_Super_8-8453,656,\"A car rises up out of the used car lot. Suddenly, the back of one of the military container lorries bursts open and the white cubes\",A car rises up out of the used car lot.,\"Suddenly, the back of one of the military container lorries bursts open and the white cubes\",gold,\"plummet on the roof to smithereens, remaining by the cement tail.\",flood out of it.,funnels up on impact.,crashes into their hands.\n12264,lsmdc1034_Super_8-8453,669,Many bright lights on the arms shine out. Someone,Many bright lights on the arms shine out.,Someone,gold,\"separates from his father and is just in time to grab his mother's locket, which is being drawn towards the tower.\",slides past the glass walkway and rings it around his modest foot.,munches a cigarette on a large coffee table.,presses a hand down the laptop flower beams to each other.\n12265,lsmdc1034_Super_8-8453,652,A shop window bursts open and television sets are hoovered up into the air. A soldier,A shop window bursts open and television sets are hoovered up into the air.,A soldier,gold,\"lowers the camera, dancing and handing his gun.\",finds his rifle relentlessly drawn to the tower.,punches the driver as the helicopter speeds behind her.,sits in a chair near the female artist.\n12266,lsmdc1034_Super_8-8453,661,A Jeep drives up and someone sees his dad and someone get out of it. Someone,A Jeep drives up and someone sees his dad and someone get out of it.,Someone,gold,\"looks up at the water tower, then spots someone.\",is at this event with him.,\"crushes their unconscious vehicle in scatter, weaves through the snow around them and pulls one through cops parked galloping along the road.\",chase him above the shoulder.\n12267,lsmdc1034_Super_8-8453,670,\"Someone separates from his father and is just in time to grab his mother's locket, which is being drawn towards the tower. It\",\"Someone separates from his father and is just in time to grab his mother's locket, which is being drawn towards the tower.\",It,gold,\"blinks with restless eyes, shakes her head hopelessly and looks away.\",is a dilapidated pair of marley and a cocked bag with cash.,is coming around his house.,\"hangs in the air, pulled by an invisible force.\"\n12268,lsmdc3024_EASY_A-11629,14615,She crumbles ice - cream cones at the chubby server. Micah,She crumbles ice - cream cones at the chubby server.,Micah,gold,furrows her brow then meets her gaze thoughtfully.,scratches himself as he reads a bible.,grinds the tickets and loads them in the mustang.,downs her drinks and glances at the camera.\n12269,lsmdc3003_40_YEAR_OLD_VIRGIN-1050,13680,\"He enters a store called Smart Tech carrying his front bicycle tire and bag. Wearing a grey Smart Tech polo shirt, someone\",He enters a store called Smart Tech carrying his front bicycle tire and bag.,\"Wearing a grey Smart Tech polo shirt, someone\",gold,leads his opponent between a window.,rides the detonator with the hook.,nods to a tall woman with short blonde hair.,enters a small room and finds three children working on a pair of industrial fencing.\n12270,anetv_oxp7V1AKJWk,18299,He picks up a ball and throws it at the pins. He,He picks up a ball and throws it at the pins.,He,gold,practices a basketball in a gym.,turns around and walks away.,spins the ball and speeds off.,does a flip and backs out of his arms.\n12271,anetv_oxp7V1AKJWk,18298,A little boy is playing an arcade game. He,A little boy is playing an arcade game.,He,gold,stops as the hot soap enters.,\"is playing an accordian as he stands, playing and playing the violin.\",makes a heart shape with a picture.,picks up a ball and throws it at the pins.\n12272,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26290,7744,She keeps sword at his throat. Someone,She keeps sword at his throat.,Someone,gold,yanks the watermelon down.,\"leaps up on someone, who is slumped in a chair.\",\"hangs up, looks him in the eye.\",blocks two of his strikes and swipes back at him.\n12273,anetv_3I6LMFdA2lc,1404,A baby is shown laying in bed while a comb gently brushes it's hair. The baby eventually,A baby is shown laying in bed while a comb gently brushes it's hair.,The baby eventually,gold,attempts to curl in.,sits on his chair and lays down on top of the book.,smiling while the hand continues to brush the baby's head.,hops down the hood and shows how to secure the hair and getting it straight.\n12274,anetv_3I6LMFdA2lc,1405,The baby eventually smiling while the hand continues to brush the baby's head. The baby,The baby eventually smiling while the hand continues to brush the baby's head.,The baby,gold,releases the baby and is transfixed.,gently closes it's eyes and yawns while the brush continues to comb.,laughs and cheers with embarrassment before the woman catches the pinata.,holds out a hand and kisses the woman on the cheek and then runs off to go down the slide.\n12275,lsmdc0023_THE_BUTTERFLY_EFFECT-59411,16502,\"People walk down toward the house. As a station wagon rolls up the street, people\",People walk down toward the house.,\"As a station wagon rolls up the street, people\",gold,are watching the businessmen as it goes black.,are wandering behind the sign.,duck in nearby bushes.,\"stand a turn, carrying the other machines.\"\n12276,lsmdc0023_THE_BUTTERFLY_EFFECT-59411,16501,Someone discreetly watches her leave through the window. People,Someone discreetly watches her leave through the window.,People,gold,sit at the prow of the river.,walk down toward the house.,sit on one lit overlook.,watch their footage as someone reads the monitor.\n12277,lsmdc0023_THE_BUTTERFLY_EFFECT-59411,16503,\"As a station wagon rolls up the street, people duck in nearby bushes. The station wagon finally\",\"As a station wagon rolls up the street, people duck in nearby bushes.\",The station wagon finally,gold,backs up as the crowds march up towards the seated people.,careens into another car.,heads into the driveway.,pulls the general down from the oar station wagon.\n12278,anetv_Y1kCMRoDjWk,12188,A man stands by a row of hedges. He then,A man stands by a row of hedges.,He then,gold,brushes an tree with shears.,begins to trim them with sheers.,trims some bushes on a planter.,cuts the back legs a little.\n12279,anetv_Y1kCMRoDjWk,12189,He then begins to trim them with sheers. He,He then begins to trim them with sheers.,He,gold,stops bows and screws up his entire face.,trims the top of a bush.,\"uses different methods to remove the fangs, as she looks down for the phone.\",talks with his hand and pat the back of his neck.\n12280,anetv_p9yq0kAqGU4,6104,\"The men let go of the rope, one man falls and claps. A man\",\"The men let go of the rope, one man falls and claps.\",A man,gold,lifts his arm and shoots a clown on the head of the young man.,falls by a tree while deep in the snow.,smiles and gives a thumbs up to the camera.,hops over to the railing.\n12281,anetv_p9yq0kAqGU4,6103,A lady bends down to take a photo and a lady walks and films the even. We,A lady bends down to take a photo and a lady walks and films the even.,We,gold,see a tower in the field.,see the white jumping sign.,then asks through the rack.,are room holding a umbrella and a blue logo put on and the looking man is seated at a room.\n12282,anetv_p9yq0kAqGU4,6102,Men pull a rope in a game of tug of war. A lady bends down to take a photo and a lady,Men pull a rope in a game of tug of war.,A lady bends down to take a photo and a lady,gold,watches the referee throw the discus.,puts the ring down.,talks it in a bow line.,walks and films the even.\n12283,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26186,16443,\"Now the teens follow someone into an enormous sitting room. Carved reliefs of bound, emaciated men\",Now the teens follow someone into an enormous sitting room.,\"Carved reliefs of bound, emaciated men\",gold,step out from the doodle hole.,hurry into the atrium.,flank a tall fireplace.,stare at the figures.\n12284,anetv_0-kEI13BtcY,14061,People are raking the dirt around. Different people,People are raking the dirt around.,Different people,gold,are raking around on the sand.,are standing by a roof.,are being lined up with the mower.,are talking to the camera.\n12285,anetv_0-kEI13BtcY,14059,People are moving dirt around in a park. A woman in a black shirt and glasses,People are moving dirt around in a park.,A woman in a black shirt and glasses,gold,is holding a jump rope.,is standing in front of a mirror.,is sitting down next to her.,talks to the camera.\n12286,anetv_0-kEI13BtcY,14062,Different people are talking to the camera. The people,Different people are talking to the camera.,The people,gold,take turns to stewards then stilts off.,widen as their coach speaks harnessed to the camera.,are caught on paintball on the ground.,continue to landscape at the park.\n12287,lsmdc1057_Seven_pounds-97579,17968,\"Someone stands in the doorway watching her intently. As she stirs, someone\",Someone stands in the doorway watching her intently.,\"As she stirs, someone\",gold,heads over and wanders in behind her husband.,lifts her to her face and strokes her hair with a comb.,makes a swift but calm exit.,\"lifts his eyes, barely answering her.\"\n12288,lsmdc1057_Seven_pounds-97579,17976,He enters the beach house and puts down his things. She,He enters the beach house and puts down his things.,She,gold,sits huddled against the walkway that someone is struggling with.,\"stops, moves in the opposite direction, and looks round.\",\"looks around to see someone being brought through the grill, another very determined someone.\",\"is on the patio, looking out to sea.\"\n12289,lsmdc1057_Seven_pounds-97579,17966,He gets out of the lift and follows someone at a discreet distance. He,He gets out of the lift and follows someone at a discreet distance.,He,gold,pours himself a drink.,is showered with a rag.,sends him flying out in the dirt road.,stops at double doors and looks through the glass panes in them.\n12290,lsmdc1057_Seven_pounds-97579,17965,Someone waits and stops the lift door closing with the briefcase he is carrying. He,Someone waits and stops the lift door closing with the briefcase he is carrying.,He,gold,\"offers someone a sweater and grins, looking round at someone.\",lifts a wire to its rim and leans in.,gets out of the lift and follows someone at a discreet distance.,\"is out in a parked truck, after someone, director someone.\"\n12291,lsmdc1057_Seven_pounds-97579,17964,\"Someone, who is slender and wearing a nightdress, gets out of the lift and walks listlessly down a hospital corridor. Someone\",\"Someone, who is slender and wearing a nightdress, gets out of the lift and walks listlessly down a hospital corridor.\",Someone,gold,is awakened by a steam pipe.,waits and stops the lift door closing with the briefcase he is carrying.,looks over her shoulder at the tv.,steps through the room and presses a rack of used pearls on a saucer - shaped box.\n12292,lsmdc1057_Seven_pounds-97579,17967,30 - something someone lies asleep in her hospital bed in shadowy light. Someone,30 - something someone lies asleep in her hospital bed in shadowy light.,Someone,gold,tucks herself under her pillows.,stands in the doorway watching her intently.,\"looks puzzled, then faces someone who waits at his table.\",watches her as she leaves.\n12293,lsmdc1057_Seven_pounds-97579,17977,\"Someone lies lethargically on his couch, staring at his mobile phone on the coffee table. He\",\"Someone lies lethargically on his couch, staring at his mobile phone on the coffee table.\",He,gold,\"presses a button, peering through blinds in the next room.\",stops to watch her go.,picks the mobile up.,watches intently as he talks.\n12294,lsmdc1057_Seven_pounds-97579,17963,They all face the front. Then someone,They all face the front.,Then someone,gold,steps in a split and starts to head out.,turns and studies someone for a long moment.,notices another man with five more pirates standing on the bank.,keeps the other one down.\n12295,lsmdc1057_Seven_pounds-97579,17972,Someone addresseses colleagues in a small conference room at Apogee Aeronautics. He,Someone addresseses colleagues in a small conference room at Apogee Aeronautics.,He,gold,shakes off his glasses and peers into the kitchen.,hangs her champagne pipe on the kitchen table.,feels his way past the sedate wedding band.,points to a rocket model.\n12296,lsmdc1057_Seven_pounds-97579,17969,She sits up and stares after him. Someone,She sits up and stares after him.,Someone,gold,removes her mobile from the bag.,looks at her plate.,walks back to the hazy title house.,frowns and looks puzzled.\n12297,lsmdc1057_Seven_pounds-97579,17962,He stands aside as two doctors wearing stethoscopes get in with him. Someone,He stands aside as two doctors wearing stethoscopes get in with him.,Someone,gold,closes his eyes around someone.,emerges from a nearby camera.,steps out of the parlor and walks down the hall.,holds back the door.\n12298,lsmdc1057_Seven_pounds-97579,17973,He points to a rocket model. Someone,He points to a rocket model.,Someone,gold,\"thrusts his hand into space, takes it off his cane and digs it into his waistband.\",sits on the edge of the open bunk out of bed.,helps with possibly more apologetically.,checks a message on his blackberry.\n12299,lsmdc1057_Seven_pounds-97579,17971,\"Someone's car is parked in the dark, wet night. He\",\"Someone's car is parked in the dark, wet night.\",He,gold,is sitting by the van now.,\"sits at the wheel, deep in solemn thought as the wipers sweep back and forth.\",sits going down doing two decks.,\"in his trailer, someone is on the porch while someone stops in the traffic.\"\n12300,lsmdc1057_Seven_pounds-97579,17970,Someone frowns and looks puzzled. Someone's car,Someone frowns and looks puzzled.,Someone's car,gold,\"is parked in the dark, wet night.\",is parked on the opposite side of the road.,rolls up a web on her.,pulls up at a speed intersection before moving.\n12301,lsmdc1057_Seven_pounds-97579,17975,Someone drives a Corvette sports car. He,Someone drives a Corvette sports car.,He,gold,enters the beach house and puts down his things.,rolls down his side of the street and passes the passenger to him.,\"tosses the valet into a passenger corner, then opens his driver door and enters a darkened street.\",smashes into the camera's flatbed.\n12302,lsmdc3001_21_JUMP_STREET-218,13025,\"Someone sits down on a stool in front of someone, who tinkers with several cell phones. The other nerds\",\"Someone sits down on a stool in front of someone, who tinkers with several cell phones.\",The other nerds,gold,are posted at the entrance door.,\"are someone, who, still in spiky suits, has a white uniform over a doorway, penthouse, and jersey.\",let him stop tv.,go back to their game.\n12303,lsmdc1001_Flight-71731,830,He pours it down the sink. He,He pours it down the sink.,He,gold,\"uses the medicine paste to clean the sink, then sprays the sink.\",stuffs someone in her fridge and knocks.,lifts the bulging plastic trash bag out of the trash can and carries it outside.,lays the glass down onto a chair.\n12304,lsmdc1001_Flight-71731,811,A car turns into a dirt driveway. The car,A car turns into a dirt driveway.,The car,gold,speeds out of the house and goes down the driveway.,enters and people get in.,passes a dilapidated shed on the right and pulls up to large older farmhouse.,is parked fast on the road outside the diner.\n12305,lsmdc1001_Flight-71731,831,He lifts the bulging plastic trash bag out of the trash can and carries it outside. He,He lifts the bulging plastic trash bag out of the trash can and carries it outside.,He,gold,leaves off the road putting thick cream over his expression.,pretends to drag it off the back porch of his car.,shuts another closet door.,\"slides the doors of the shed open, revealing a two - seat cessna plane in the small hangar.\"\n12306,lsmdc1001_Flight-71731,832,\"He slides the doors of the shed open, revealing a two - seat Cessna plane in the small hangar. Someone\",\"He slides the doors of the shed open, revealing a two - seat Cessna plane in the small hangar.\",Someone,gold,\"fans the spare rack from the back, and reaches out someone's shopping bag.\",watches as the truck passes by.,removes the blanket covering the windshield and switches on the lights.,watches the crewmen drag them from the river.\n12307,lsmdc1001_Flight-71731,835,He pulls out a bottle of liquor from a bowling bag and tosses it aside. He,He pulls out a bottle of liquor from a bowling bag and tosses it aside.,He,gold,holds a framed wedding photo of himself and his wife.,makes a pull on the cigarette and drinks it in a toast.,drives away and shakes his hair to one side.,gazes out a window so that he only has three empty glasses.\n12308,lsmdc1001_Flight-71731,825,\"He takes a case of someone and some other beer cans from the fridge, and also, drains them. He\",\"He takes a case of someone and some other beer cans from the fridge, and also, drains them.\",He,gold,dumps the cans in a bin.,narrows his eyes and aims an explosive.,sips from his uncle's bowls.,\"stiffens and looks at someone, forcing someone.\"\n12309,lsmdc1001_Flight-71731,813,He grabs a hidden key. He,He grabs a hidden key.,He,gold,presses a button.,uses his key to pull off a handgun.,\"enters a cozy, fully furnished living room and looks around.\",\"is at a balustrade, a pair of headphones playing bagpipes.\"\n12310,lsmdc1001_Flight-71731,829,He opens a freezer and finds a bottle of vodka. He,He opens a freezer and finds a bottle of vodka.,He,gold,takes a deep breath.,presses a switch to the dashboard.,pours it down the sink.,opens the door and gets to the car.\n12311,lsmdc1001_Flight-71731,820,\"He licks his lips and clenches his jaw. Using a cane for support, he\",He licks his lips and clenches his jaw.,\"Using a cane for support, he\",gold,looks back then looks like a toy.,strides into the bathroom and dumps the pills down the toilet.,turns his head to test at the bar.,slips it out to o. c..\n12312,lsmdc1001_Flight-71731,816,Someone carries a plastic bag into the kitchen and places it on a dining table. He,Someone carries a plastic bag into the kitchen and places it on a dining table.,He,gold,eats pizza on an empty whiskey bottle.,pulls out a bag of keys and piles it in a chair.,plugs in a charger and checks his iphone.,shifts at his feet.\n12313,lsmdc1001_Flight-71731,812,Someone places a bag beside the door and reaches above one of the wooden posts supporting the veranda roof. He,Someone places a bag beside the door and reaches above one of the wooden posts supporting the veranda roof.,He,gold,passes in front of them.,falls with someone on his knees.,ankles with a brush to show off instructional skeletons leaving.,grabs a hidden key.\n12314,lsmdc1001_Flight-71731,815,\"Someone, his eyes still covered by a bandage, looks around. Someone\",\"Someone, his eyes still covered by a bandage, looks around.\",Someone,gold,\"hold joy, then continue drinking.\",gives a very nurse start.,carries a plastic bag into the kitchen and places it on a dining table.,\"appears on his upper hand, appalled.\"\n12315,lsmdc1001_Flight-71731,836,\"He holds a framed wedding photo of himself and his wife. Later that evening, he\",He holds a framed wedding photo of himself and his wife.,\"Later that evening, he\",gold,brings a house out of the truss gate.,clutches the shoe on someone's finger.,sits watching the news.,leans positioned on a large roofed cab.\n12316,lsmdc1001_Flight-71731,828,\"He continues his chore with determination as he moves from cabinet to cabinet, removing and tossing bottles and cans. He\",\"He continues his chore with determination as he moves from cabinet to cabinet, removing and tossing bottles and cans.\",He,gold,opens a freezer and finds a bottle of vodka.,\"leans on the counter, washing his hands and hands away, packing the food up in the car.\",peeks out toward the foyer.,presses the bell into his nostril.\n12317,lsmdc1001_Flight-71731,827,He takes a bag of marijuana from a wooden box in a drawer and flushes it. He,He takes a bag of marijuana from a wooden box in a drawer and flushes it.,He,gold,puts his cell next to a bag on the washing stove.,\"continues his chore with determination as he moves from cabinet to cabinet, removing and tossing bottles and cans.\",grabs a handful of keys and sets down his price.,\"scrolls quickly around someone, who holds a piece of schematic paper.\"\n12318,lsmdc1001_Flight-71731,833,Someone removes the blanket covering the windshield and switches on the lights. He,Someone removes the blanket covering the windshield and switches on the lights.,He,gold,\"drops the bike around a minute, takes it from his boot and sets it on the ground.\",opens the window as someone drives it.,drives in from the stained - glass window.,looks at a group of photos hanging above a work station off to one side of the hangar.\n12319,lsmdc1001_Flight-71731,822,He collects the bottles of liquor and the decanter and turns on the stereo. He,He collects the bottles of liquor and the decanter and turns on the stereo.,He,gold,\"throws the key to a rack for the street, flanked by people.\",stands up and puts his hands in his pockets.,\"knocks him to one side, and is face to face with him as he remembers his screams.\",empties the bottles in the sink.\n12320,lsmdc1001_Flight-71731,818,He leans on a bureau and pulls out a prescription bottle from his pocket. He,He leans on a bureau and pulls out a prescription bottle from his pocket.,He,gold,whispers to the bartender from behind and joins someone.,\"puts it on, then looks out the window.\",\"glances at the pills, then, at a decanter of whiskey.\",\"presses it back on to the wall, then lowers his gaze.\"\n12321,lsmdc1001_Flight-71731,814,\"He enters a cozy, fully furnished living room and looks around. A retro stereo\",\"He enters a cozy, fully furnished living room and looks around.\",A retro stereo,gold,\"sits on a sofa, which has french paintings stacked in the background.\",slows and the office begins to clatter.,is mopping the floor outside the foyer.,sits on a cabinet against the wall with framed photos.\n12322,lsmdc1001_Flight-71731,824,\"Then, he dumps the empties in the garbage. He\",\"Then, he dumps the empties in the garbage.\",He,gold,throws the smoke at the windshield.,grabs it from the car and goes into the kitchen.,slides the leaves into the lock.,\"takes a case of someone and some other beer cans from the fridge, and also, drains them.\"\n12323,lsmdc1001_Flight-71731,826,He dumps the cans in a bin. He,He dumps the cans in a bin.,He,gold,takes a bag of marijuana from a wooden box in a drawer and flushes it.,swings in a white puddle of water.,dusts his old cat floor.,takes the box from its pocket and picks it out.\n12324,lsmdc1001_Flight-71731,819,\"He glances at the pills, then, at a decanter of whiskey. He\",\"He glances at the pills, then, at a decanter of whiskey.\",He,gold,\"fills the glass with a spoon, then puts someone in glasses.\",rolls out of the window and stares up at the sky.,is standing at a bowling underpass with his own neck.,licks his lips and clenches his jaw.\n12325,lsmdc1001_Flight-71731,823,\"He empties the bottles in the sink. Then, he\",He empties the bottles in the sink.,\"Then, he\",gold,\"holds a box of food, and rubs something on the top of table hand.\",dumps the empties in the garbage.,washes them and puts money in a blender.,hits the paper out with the regular spray which kitchen soaked.\n12326,lsmdc1001_Flight-71731,821,\"Using a cane for support, he strides into the bathroom and dumps the pills down the toilet. He\",\"Using a cane for support, he strides into the bathroom and dumps the pills down the toilet.\",He,gold,collects the bottles of liquor and the decanter and turns on the stereo.,covers his body with his hand.,carefully lifts a bottle of his waistcoat and takes off the hat.,\"opens the front door back, as if for a moment, then beams.\"\n12327,anetv_I9wra8bj2sg,14604,\"Intermediately, the man get down the horse and tie the calf. Men\",\"Intermediately, the man get down the horse and tie the calf.\",Men,gold,attempts to keep up in the area stretching.,lift the calf and start volting all over a horse.,walks behind the horse.,stylists brushes the horse's hooves with and stay on the horse.\n12328,anetv_I9wra8bj2sg,14603,\"A horseman throws a rope to catch a calf while people watch. Intermediately, the man\",A horseman throws a rope to catch a calf while people watch.,\"Intermediately, the man\",gold,\"stand in front of the horse, then jump on the horse and take pictures.\",chase the calf back to the calf and ties the calf.,\"jumps along the rope several times and gives puzzled thumbs up, doing flips, with other tricks.\",get down the horse and tie the calf.\n12329,anetv_I9wra8bj2sg,14605,\"Men walks behind the horse. After, the man\",Men walks behind the horse.,\"After, the man\",gold,push the horse back and get arrow.,get in the horse.,scrapes the horses hooves in water.,stands and smells the horse.\n12330,anetv_Q78FBGHniCc,3200,\"Shortly after, a wind blower appears and someone begins blowing the leaves down the sidewalk. Once one side has moved, he\",\"Shortly after, a wind blower appears and someone begins blowing the leaves down the sidewalk.\",\"Once one side has moved, he\",gold,waves and takes off with the blower and ends by blowing into another river of surging shrubs.,goes down the street.,reaches it out along the passing plant.,moves to the left and starts blowing the trees out of the gutter off of the ladder and bricks.\n12331,anetv_Q78FBGHniCc,3199,\"A pile of trees are laying on the pavement up against a brown wooden fence. Shortly after, a wind blower appears and someone\",A pile of trees are laying on the pavement up against a brown wooden fence.,\"Shortly after, a wind blower appears and someone\",gold,\"waits a second to get up, goes to the ground, leaves his knees in shot and gets up.\",begins blowing the leaves down the sidewalk.,\"drops to the ground, blowing smoke from the ground.\",\"is blown outside, tied to one tree.\"\n12332,lsmdc3057_ROBIN_HOOD-27334,18334,\"Eyeing someone, he yanks up another cup. The brawny man\",\"Eyeing someone, he yanks up another cup.\",The brawny man,gold,\"stares at the archer tauntingly then, lifts the middle cup.\",\"puts down the drink, walks towards the waiter, takes it.\",meets his father's gaze and incinerates him with his desolate gaze.,takes out an office catalog and takes out an third ring.\n12333,lsmdc3057_ROBIN_HOOD-27334,18333,\"Someone reaches for the cups, but the man stops him. Eyeing someone, he\",\"Someone reaches for the cups, but the man stops him.\",\"Eyeing someone, he\",gold,yanks up another cup.,stops and unzips his earpiece.,drops back down on his counter.,points unwraps his drink.\n12334,lsmdc3088_WHATS_YOUR_NUMBER-42391,2181,Now we drift over trees to find an immaculately kept lawn set up for a wedding. Our view,Now we drift over trees to find an immaculately kept lawn set up for a wedding.,Our view,gold,pops up into the greenhouse.,drifts past someone's direction.,sweeps over the verdant estate to an upper window in someone's mother's house.,\"descends over a sunny horizon, roofs skyscrapers forming with thousands of round buildings.\"\n12335,lsmdc3088_WHATS_YOUR_NUMBER-42391,2182,\"Our view sweeps over the verdant estate to an upper window in someone's mother's house. As we drift closer, it\",Our view sweeps over the verdant estate to an upper window in someone's mother's house.,\"As we drift closer, it\",gold,moves closer to the edge of the slide.,zooms to the vast interior of a beautiful landscape.,shows a bare landscape and its face knits into a set of glass panels.,offers a glimpse of the bridal party's preparations.\n12336,lsmdc3088_WHATS_YOUR_NUMBER-42391,2179,He continues down without looking up. Someone,He continues down without looking up.,Someone,gold,taps his fangs against someone's shoulder.,is an earnest comforting him.,is sitting on the edge of the shower lost.,gazes after him remorsefully.\n12337,lsmdc3088_WHATS_YOUR_NUMBER-42391,2178,\"She works her mouth, then leans over the banister. He\",\"She works her mouth, then leans over the banister.\",He,gold,continues down without looking up.,throws a toy at the alien.,gets her hand and exhales heavily.,runs across the track and grabs her.\n12338,lsmdc3088_WHATS_YOUR_NUMBER-42391,2176,\"Someone stops halfway down a flight of stairs. As he continues down, someone\",Someone stops halfway down a flight of stairs.,\"As he continues down, someone\",gold,\"leads the way of a darkened den, leaving room in plain black space.\",notices the fluttering silver locks on her back.,sees the red car running through the crowd.,\"starts to speak, then stops herself.\"\n12339,lsmdc3088_WHATS_YOUR_NUMBER-42391,2177,\"As he continues down, someone starts to speak, then stops herself. She\",\"As he continues down, someone starts to speak, then stops herself.\",She,gold,looks into the mirror.,\"works her mouth, then leans over the banister.\",walks across the stage.,looks over at someone.\n12340,lsmdc3088_WHATS_YOUR_NUMBER-42391,2180,Someone gazes after him remorsefully. Now we,Someone gazes after him remorsefully.,Now we,gold,drift over trees to find an immaculately kept lawn set up for a wedding.,see an exam screen screen.,retreat in the courtyard adjoining room.,\"run through new york city, surrounded with two british police officers.\"\n12341,lsmdc0001_American_Beauty-45514,17159,Now she looks at him as if he is lost his mind. Someone,Now she looks at him as if he is lost his mind.,Someone,gold,\"looks serene and awed, his tone returning to normal.\",\"crosses the door to someone, then turns away abruptly.\",\"gropes down a little, trying to get a mustache and path it.\",is watching this closely.\n12342,lsmdc0001_American_Beauty-45514,17152,A moving van is parked in front of the colonial house next door to the Burnhams'. The Mercedes - Benz,A moving van is parked in front of the colonial house next door to the Burnhams'.,The Mercedes - Benz,gold,\"has first first man approach, removes the car in turn and heads on its's street, her windshield to black.\",pulls into the burnham driveway.,arrives at the front door.,opens the window and speeds away.\n12343,lsmdc0001_American_Beauty-45514,17155,\"As they get out of the car, someone scopes out the movers next door. Movers\",\"As they get out of the car, someone scopes out the movers next door.\",Movers,gold,carry furniture toward the house.,waves a hand above his head in a flushed green powder.,\"gets the fence, his car opens to the tail gate.\",examines them holding a gun.\n12344,lsmdc0001_American_Beauty-45514,17154,\"Someone drives, someone is in the passenger seat. As they get out of the car, someone\",\"Someone drives, someone is in the passenger seat.\",\"As they get out of the car, someone\",gold,is looking toward his dad.,finds the gun trained on a uniformed police officer.,scopes out the movers next door.,pulls out of the curb and goes to the taxi.\n12345,lsmdc0001_American_Beauty-45514,17153,\"The Mercedes - Benz pulls into the Burnham driveway. Someone drives, someone\",The Mercedes - Benz pulls into the Burnham driveway.,\"Someone drives, someone\",gold,\"slumps down into the backseat, pulls out an armful of casual snacks, two more cartridges.\",\"drapes herself on her collar, as the bus pulls away.\",drives through the city traffic.,is in the passenger seat.\n12346,lsmdc0001_American_Beauty-45514,17156,Movers carry furniture toward the house. She,Movers carry furniture toward the house.,She,gold,\"pulls a lever, creating sparks and lighter bullets.\",lies on side of the christmas tree on a sunny tree.,\"heads into the house, followed by someone.\",\"notices a banquet table with some plant solutions and corgis on it, awaiting them.\"\n12347,lsmdc0001_American_Beauty-45514,17157,\"She heads into the house, followed by someone. People\",\"She heads into the house, followed by someone.\",People,gold,\"lounging in a chair, someone looks at her, then tucks a blanket around her shoulders.\",\"his hand on her thigh, she turns and leaves the room.\",are eating dinner by candlelight.,\"look away, then draw back to stare at someone's.\"\n12348,lsmdc0001_American_Beauty-45514,17158,Someone suddenly turns to someone. Now she,Someone suddenly turns to someone.,Now she,gold,takes off her wedding bracelet with her finger.,looks at him as if he is lost his mind.,is plainly away into a salon.,frowns at the album posts.\n12349,anetv_u35hesPTsNE,8479,A band is seen sitting on the stage with one man playing the drums and a woman interviewing him. The man,A band is seen sitting on the stage with one man playing the drums and a woman interviewing him.,The man,gold,moves to the first with a man on the top and talks to the camera.,continues to speak while speaking to the camera while more shots of him doing various movements.,continues playing as the women speaks to the crowd and sings while they play.,continues dancing with the music with the band and the soldier out of focus.\n12350,anetv_zVOj9aaq4L0,3628,\"The woman blows her hair dry before posing, and is shown step by step creating curls in her hair with his tools. She\",\"The woman blows her hair dry before posing, and is shown step by step creating curls in her hair with his tools.\",She,gold,\"adjusts and brushes her hair, then shows off the final result.\",explains how you can clean through the lens forever.,moves are shown her supplies.,texts ups on carpet cover.\n12351,anetv_zVOj9aaq4L0,3626,\"A woman is shown, playing with her hair. A salon artist appears, and his tools\",\"A woman is shown, playing with her hair.\",\"A salon artist appears, and his tools\",gold,are displayed in her clothes.,are shown on a table.,for playing in her hair.,show a woman step.\n12352,anetv_zVOj9aaq4L0,3627,\"A salon artist appears, and his tools are shown on a table. The woman\",\"A salon artist appears, and his tools are shown on a table.\",The woman,gold,sits on the bed and begins talking about how to tighten it onto her body.,is positioning him in front of a piano with a seated body as he speaks.,\"blows her hair dry before posing, and is shown step by step creating curls in her hair with his tools.\",shows a paper bag while talking to the man on a bench.\n12353,anetv_J-uW8raljqE,503,A man enters a large field with a dog. He,A man enters a large field with a dog.,He,gold,uses a frisbee to teach the dog several tricks.,runs towards the camera as his horse runs up.,runs into shoes and does a hand stand.,catches a frisbee with a stick.\n12354,anetv_J-uW8raljqE,11135,\"A man is playing with his dog, while girl is holding a frisbee on top of the other dog. The man in black shirt threw the frisbee in the green field and the dog chase after it and bring it back to the man, the man\",\"A man is playing with his dog, while girl is holding a frisbee on top of the other dog.\",\"The man in black shirt threw the frisbee in the green field and the dog chase after it and bring it back to the man, the man\",gold,continue to threw the frisbee and the dog keep chasing it and return it to the man.,fells the dog with the dogs.,started to hit the frisbee with chases.,went back into the room.\n12355,anetv_J-uW8raljqE,504,He uses a frisbee to teach the dog several tricks. The dog,He uses a frisbee to teach the dog several tricks.,The dog,gold,walks to continue to hit the woman and the woman kicks the dog around the bit.,chases kid the frisbee.,does tricks to catch the frisbee.,\"continues to let the dog out performing tricks, catching the frisbees and bowing out.\"\n12356,lsmdc1040_The_Ugly_Truth-8636,17982,\"At the baseball game, the pitcher pitches and the batter hits. As people walk to their seats, someone\",\"At the baseball game, the pitcher pitches and the batter hits.\",\"As people walk to their seats, someone\",gold,aims his wand at someone.,remains motionless in his cage.,joins someone's team leaders at someone's back.,talks to someone on an earpiece.\n12357,lsmdc1040_The_Ugly_Truth-8636,17981,Someone smiles and gives someone the thumbs - up. Someone,Someone smiles and gives someone the thumbs - up.,Someone,gold,\"does a little victory dance, punching the air.\",cuts slowly across a driving tube which is been pushed by a bungee equipped with stripes.,waits for a moment after he releases the rope.,stirs a three - dollar bill.\n12358,anetv_8im-T1bsyHs,18820,An athlete is seen running down a large track and throwing a javelin into the air. Her throw,An athlete is seen running down a large track and throwing a javelin into the air.,Her throw,gold,is shown again in slow motion and is shown again afterwards.,is shown again in slow motion followed by several more athletes who take their turns.,is shown again in slow motion and ends by jumping and falling on the ground.,is shown again several times in slow motion followed by taking turns spinning around.\n12359,lsmdc3015_CHARLIE_ST_CLOUD-774,14317,\"Someone picks at bird poop on top of the stone, then studies it on the finger of his white glove. Elsewhere, someone\",\"Someone picks at bird poop on top of the stone, then studies it on the finger of his white glove.\",\"Elsewhere, someone\",gold,hauls the fallen man into a cellar.,leaps on a large wave of toy creatures.,carries a crossbow to a tree trunk stump with two arrows.,\"walks up his front porch with his wedding ring, the young men before him.\"\n12360,lsmdc3015_CHARLIE_ST_CLOUD-774,14320,Someone keeps his gaze locked on his boss as he uses a pair of pliers to tug a crossbow bolt out of the tree. Someone,Someone keeps his gaze locked on his boss as he uses a pair of pliers to tug a crossbow bolt out of the tree.,Someone,gold,\"nods, seemingly to no one.\",unplugs his cellphone and faces it.,opens a wallet and brings out the transit.,turns out the recorder.\n12361,lsmdc3015_CHARLIE_ST_CLOUD-774,14318,\"Elsewhere, someone carries a crossbow to a tree trunk stump with two arrows. Plopping the weapon on the ground, he quizzically\",\"Elsewhere, someone carries a crossbow to a tree trunk stump with two arrows.\",\"Plopping the weapon on the ground, he quizzically\",gold,\"pokes his spiked, and looks at it, holding the knife in his hand and throws it back in.\",eyes someone a short distance away.,avoids the silver and winces - - with both hands and hands.,pours over the boy.\n12362,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8976,The walls and floor are lined with shiny black tiles. They,The walls and floor are lined with shiny black tiles.,They,gold,see someone talking to someone.,drop bags out of the closet.,file into each other as she approaches.,do a gymnastics routine on the wooden floor.\n12363,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8967,Someone puts a ticket in the slot. Someone,Someone puts a ticket in the slot.,Someone,gold,is leaning back against the gates.,stands behind the wheel and parks.,drives inside the car's open.,hands the bill and pounds dials on it.\n12364,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8966,\"Someone stands stiffly holding both hand rails. Nearing the bottom, he\",Someone stands stiffly holding both hand rails.,\"Nearing the bottom, he\",gold,squats low over the spear's surface.,braces himself and steps off unsteadily.,sticks his finger in his temple.,watches people walk near the top of noon hills.\n12365,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8974,\"Then, the lift drops downwards. The two of them\",\"Then, the lift drops downwards.\",The two of them,gold,\"stand up, yelling and fighting.\",begin to run through a fence.,step out into a corridor.,struggling against the pillar.\n12366,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8972,They crowd into a Victorian lift with metal gates. Paper airplanes,They crowd into a Victorian lift with metal gates.,Paper airplanes,gold,tend to their pure firewood.,explode as a shield of towering higher surround someone's face.,swoop around their heads.,run out of ammunition.\n12367,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8970,\"Carrying briefcases and bundles of papers, they join the throngs of other witches and wizards hurrying to work through the great underground hall. Someone\",\"Carrying briefcases and bundles of papers, they join the throngs of other witches and wizards hurrying to work through the great underground hall.\",Someone,gold,watches as they stand through the wire door on the top stage.,follows someone past a fountain with huge golden statues.,outlines a scene across the stage.,\"continues to trot back on it, struggling to ignore the ballerina offstage.\"\n12368,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94733,8975,The two of them step out into a corridor. The walls and floor,The two of them step out into a corridor.,The walls and floor,gold,are lined with black and red text increasing and the circular hand bed of a smiling lawyer - with an tartan dropper.,are covered with a wrists bound and hands.,are lined with shiny black tiles.,come bursting with tropical welcomes.\n12369,lsmdc3038_ITS_COMPLICATED-17251,13916,\"Someone heads off, someone shakes her head. Someone\",\"Someone heads off, someone shakes her head.\",Someone,gold,looks over his shoulder.,steps out of her car as he follows her past a few seats ahead.,\"runs the station, looks around a corner, then steps up the stairs.\",looks at him blankly as he eyes the beautiful man.\n12370,anetv_hJn5L1nrkL4,8906,There is a person dressed in a black shirt seated near the players. There,There is a person dressed in a black shirt seated near the players.,There,gold,are playing a soccer game.,are all in the casino where they begin to play the lacrosse.,are several spectators seated in the stadium.,is a man talking in a white room and doing a handstands.\n12371,anetv_hJn5L1nrkL4,8905,One of the players is wearing blue and the other player is in a red shirt. There,One of the players is wearing blue and the other player is in a red shirt.,There,gold,pole is sitting next to him as they slowly ride a puck into the middle of the corner.,pause and stagehands form the game rejoins the team.,man is interviewed in front of the audience.,is a person dressed in a black shirt seated near the players.\n12372,anetv_hJn5L1nrkL4,8911,He continues dancing and goes towards his opponent to mock him. He then,He continues dancing and goes towards his opponent to mock him.,He then,gold,\"does some backflips and throws the flint they came onto, because then leaves.\",goes back to the table tennis table.,begins doing exact of his manner with several dance lifts with the extensions.,does the same thing again before it ends.\n12373,anetv_hJn5L1nrkL4,8910,The player in blue cheers loudly after his winning point and breaks into a dance. He,The player in blue cheers loudly after his winning point and breaks into a dance.,He,gold,scoring goals being cut up and able to score goals are seen as scores of teams celebrate and continue in the game.,interviews shown before mumakil futsal practicing and the winners of the polo team and middle trophy are watching.,continues dancing and goes towards his opponent to mock him.,jumps on the stool and runs to clapping as the crowd claps for them.\n12374,anetv_hJn5L1nrkL4,8908,They continue playing a rally for some time. The player in the red shirt,They continue playing a rally for some time.,The player in the red shirt,gold,shows his right hand blow to someone.,makes sure the ball is missed.,is watching the person.,misses the ball and gives his opponent a winning point.\n12375,anetv_hJn5L1nrkL4,8909,The player in the red shirt misses the ball and gives his opponent a winning point. The player in blue,The player in the red shirt misses the ball and gives his opponent a winning point.,The player in blue,gold,runs the right throwing the ball to a goalie in front of the basket.,hits the ball from the opponent to the goal.,cheers loudly after his winning point and breaks into a dance.,\", then the man joins the man and we return to the game.\"\n12376,anetv_hJn5L1nrkL4,8904,There are two men playing table tennis in an indoor stadium. One of the players is wearing blue and the other player,There are two men playing table tennis in an indoor stadium.,One of the players is wearing blue and the other player,gold,is in a red shirt.,hits the ball with the stick.,catches the ball first and grabs it.,is standing with his arms raised over his head.\n12377,anetv_hJn5L1nrkL4,8907,There are several spectators seated in the stadium. They,There are several spectators seated in the stadium.,They,gold,stand around semi standing holding axes.,continue playing a rally for some time.,\"are doing several stunts on the rope, going while they are puting from a workout.\",are on different ways and pairs of white words at the bottom of the mountain comes forward again.\n12378,anetv_oUdEoaKDHpA,17624,A close up of a floor is seen followed by two men walking and performing tricks. The men,A close up of a floor is seen followed by two men walking and performing tricks.,The men,gold,grab the baton and perform frisbee tricks while the girl catches the dog.,perform tricks all around various areas while pointing to the camera.,break continuously all around one another.,speak carefully move around themselves while walking around and looking to the side.\n12379,anetv_oUdEoaKDHpA,17625,The men perform tricks all around various areas while pointing to the camera. The men,The men perform tricks all around various areas while pointing to the camera.,The men,gold,continue to jump and dance around public places while laughing and playing with one another.,continue to push the paint all around the area while others get and feet.,continue throwing the ball around as well as the camera on the camera at the end.,continue to ride around the fence and turns around all around with a car following.\n12380,anetv_m5PO3T2uGzs,19211,There's a little baby dressed in a purple outfit swinging on a swing in children's park with her father standing next to her. The baby,There's a little baby dressed in a purple outfit swinging on a swing in children's park with her father standing next to her.,The baby,gold,laughs every time her father swings her and tickles her knees.,\"jumps the pinata several times, swinging on and walking near the pinata.\",runs into room crashing and slips into a blue leather chair.,gets up and swings at a pinata and completes it as she move around the baby.\n12381,anetv_m5PO3T2uGzs,17681,\"A boy jumps knelled behind the toddler. Then, the boy\",A boy jumps knelled behind the toddler.,\"Then, the boy\",gold,put the sponging on the wall.,walks and pass on side the toddler.,puts wallpaper on a wall.,plays and lay back down on the floor.\n12382,anetv_m5PO3T2uGzs,19212,\"There's a young boy in a black shirt and beige shorts right behind the baby playing and walking towards the swing next to the baby. As the father continues to swing the baby, the boy\",There's a young boy in a black shirt and beige shorts right behind the baby playing and walking towards the swing next to the baby.,\"As the father continues to swing the baby, the boy\",gold,stops and carries in the swing.,jumps to his feet.,walks away from the swing.,lets go of the swing.\n12383,lsmdc0030_The_Hustler-64697,364,She looks up for an instant as someone appears. Her eyes,She looks up for an instant as someone appears.,Her eyes,gold,are full of water getting hanged.,are slowly moving toward a window.,return to the printed page.,glaze with her fingernail.\n12384,lsmdc0030_The_Hustler-64697,359,\"As someone enters, carrying his bags, a few early morning travelers - - some soldiers and a man in a Stetson hat - - pass him by. He\",\"As someone enters, carrying his bags, a few early morning travelers - - some soldiers and a man in a Stetson hat - - pass him by.\",He,gold,walk casually toward an open closet.,has been up all night.,emerges from several vendors.,brings the captain up to arms.\n12385,lsmdc0030_The_Hustler-64697,356,\"He looks over at someone, asleep in the next bed. He\",\"He looks over at someone, asleep in the next bed.\",He,gold,grabs the van as they crowd down the car.,holds the humanity close to buster's cabin as he walks slowly in the window.,rolls out of bed and goes to the window.,wakes up and hits his head as if struggling for control.\n12386,lsmdc0030_The_Hustler-64697,361,It is a typical bus station washroom at that time of the morning. The residue of a full day's traveling,It is a typical bus station washroom at that time of the morning.,The residue of a full day's traveling,gold,\"is in evidence: crumpled paper towels, cigarette butts, etc.\",travels dramatically clearing green and darkness.,into view and a rainy day is pulled tucked behind the trees.,affect a brilliant flashback.\n12387,lsmdc0030_The_Hustler-64697,370,She returns to her reading. Someone,She returns to her reading.,Someone,gold,keeps looking at her.,gives an inviting nod.,picks up a post - covered wall as a book about the last of the preparations.,\"stands for a moment then lowers his thoughtful gaze, then raises an eyebrow.\"\n12388,lsmdc0030_The_Hustler-64697,351,He bangs against the corner of the table and falls onto the floor. Someone,He bangs against the corner of the table and falls onto the floor.,Someone,gold,looks at someone as he controls the reactor.,\"rises and walks, weaving sideways, landing steadily at two stationary colleagues.\",\"hears him go down and pauses, turning to see someone rush to someone's side.\",flips away from the boy who running red heels.\n12389,lsmdc0030_The_Hustler-64697,358,\"He picks up his valise, his hanging bag, and his leather cue case. Someone\",\"He picks up his valise, his hanging bag, and his leather cue case.\",Someone,gold,opens the gate and goes out.,puts a hand on her shoulder.,goes toward the door.,sits next to her.\n12390,lsmdc0030_The_Hustler-64697,360,He has been up all night. It,He has been up all night.,It,gold,siren is coming.,is a typical bus station washroom at that time of the morning.,is being driven into a night police car.,picks up his feathers.\n12391,lsmdc0030_The_Hustler-64697,366,He locks his bags in a locker. He now,He locks his bags in a locker.,He now,gold,marches up his driveway training procedures with putty hanging over an electrical drill.,places his earphones planks away with a case.,has on a clean shirt and is clean and freshly shaven.,flies over his cell reading them.\n12392,lsmdc0030_The_Hustler-64697,345,Someone bangs his head against the wall. He,Someone bangs his head against the wall.,He,gold,turns and watches as the offer passes through the trees.,knocks over a bottle as he tries to get up off the stool.,gives him a small brush.,makes a light sound.\n12393,lsmdc0030_The_Hustler-64697,348,\"Someone steps by someone and heads for the coat rack, slapping the stake money into someone's hand as he goes by. Someone\",\"Someone steps by someone and heads for the coat rack, slapping the stake money into someone's hand as he goes by.\",Someone,gold,cooks lettuce on a sofa as he cups a pan and sells it to someone.,\"returns the money to his billfold, wordlessly.\",takes a clergyman from the door and opens it.,peeks through it and sneaks out into the living room.\n12394,lsmdc0030_The_Hustler-64697,349,\"Someone returns the money to his billfold, wordlessly. The blinds are drawn and the light strikes someone in the eyes, but still he\",\"Someone returns the money to his billfold, wordlessly.\",\"The blinds are drawn and the light strikes someone in the eyes, but still he\",gold,\"stumbles after someone, holding his money out before him, pleading.\",makes the face of his hand.,does n't say anything.,looks up when someone comes in.\n12395,lsmdc0030_The_Hustler-64697,352,\"Someone hears him go down and pauses, turning to see someone rush to someone's side. After a moment, someone\",\"Someone hears him go down and pauses, turning to see someone rush to someone's side.\",\"After a moment, someone\",gold,\"stops and looks up at someone, who is drunk.\",moves into the bag and walks around.,\"grabs his suit jacket, climbs.\",continues on toward the door.\n12396,lsmdc0030_The_Hustler-64697,373,Someone goes back to reading. The waitress,Someone goes back to reading.,The waitress,gold,reaches to the advantage.,comes up bearing someone.,comes off the porch with someone in focus.,arrives to take someone's order.\n12397,lsmdc0030_The_Hustler-64697,367,\"Moving toward the counter, someone notices someone. He\",\"Moving toward the counter, someone notices someone.\",He,gold,sits up and takes out his tools.,takes his hand and pushes it over someone's head.,\"goes to the lunch counter, still looking at her.\",watches the survey team arrive.\n12398,lsmdc0030_The_Hustler-64697,372,\"Her lips are pale and thin, and the bone structure of her face, although delicate, is much in evidence. Someone\",\"Her lips are pale and thin, and the bone structure of her face, although delicate, is much in evidence.\",Someone,gold,goes back to reading.,\"with someone in the present dress, the young men wear life jackets.\",\"blood, it all is a picture of someone which was not before.\",is more larger than this point someone is retreating.\n12399,lsmdc0030_The_Hustler-64697,369,He sniffs some wrapped sandwiches. Someone,He sniffs some wrapped sandwiches.,Someone,gold,dumps it in his bulging garment.,wanders over to a table next to someone's and sits down.,\"continues to shave, clean and triangular.\",\"peeks at the branch with a furrowed brow, then bends back and overhears.\"\n12400,lsmdc0030_The_Hustler-64697,363,\"At one table, facing the lockers, is a young woman, someone: a book is open before her, and a cup of coffee, and an ashtray filled with cigarette butts. She\",\"At one table, facing the lockers, is a young woman, someone: a book is open before her, and a cup of coffee, and an ashtray filled with cigarette butts.\",She,gold,\"is dead, thrown, a little filled with soup and unusual ones lounge.\",is on her knees in a manuscript with shoulder - washing sheets facing her.,looks up for an instant as someone appears.,carefully brushes a piece of wood from the door.\n12401,lsmdc0030_The_Hustler-64697,357,He rolls out of bed and goes to the window. We,He rolls out of bed and goes to the window.,We,gold,pull the door shut and his face is the ground and he wrenches it and lays down on it.,see a neon sign flashing across the street.,\"the hotel room, he shows his.\",fall to the town within her session.\n12402,lsmdc0030_The_Hustler-64697,350,\"The blinds are drawn and the light strikes someone in the eyes, but still he stumbles after someone, holding his money out before him, pleading. He\",\"The blinds are drawn and the light strikes someone in the eyes, but still he stumbles after someone, holding his money out before him, pleading.\",He,gold,drags himself to the window and trots in the basket.,bangs against the corner of the table and falls onto the floor.,opens the door and goes inside.,throws some incredible blow through his hair.\n12403,lsmdc0030_The_Hustler-64697,355,\"Someone is lying on his bed staring at the ceiling, the crashing of pool balls sounding in his head. He\",\"Someone is lying on his bed staring at the ceiling, the crashing of pool balls sounding in his head.\",He,gold,\"looks over at someone, asleep in the next bed.\",lowers the hood up to a teller man and runs out the door.,\"kisses her at the register, and someone winks into the screen.\",\"walks behind the desk, sits down close to someone, tries to look at him, expectantly.\"\n12404,lsmdc0030_The_Hustler-64697,374,The waitress arrives to take someone's order. Someone,The waitress arrives to take someone's order.,Someone,gold,runs down the hall and up another gap in the door.,looks at a colored scar on his side.,pulls out of the tent.,\"holds up two fingers to the waitress, who departs.\"\n12405,lsmdc0030_The_Hustler-64697,368,\"He goes to the lunch counter, still looking at her. He\",\"He goes to the lunch counter, still looking at her.\",He,gold,looks rather disappointed as he comes toward the market.,zooms in to her corn parted lips.,\"is startled by the sound, utterly delighted.\",sniffs some wrapped sandwiches.\n12406,lsmdc0030_The_Hustler-64697,347,Someone rises and tosses his cue on the table. Someone,Someone rises and tosses his cue on the table.,Someone,gold,leaves the stage and leaves.,has a tall glass of wine.,\"turns to someone, who nods perfunctorily.\",gives him the stake money.\n12407,lsmdc0030_The_Hustler-64697,346,Someone gropes through his pockets and comes up with a few crumpled bills. Someone,Someone gropes through his pockets and comes up with a few crumpled bills.,Someone,gold,whips out a last piece of metal.,turns to look at him.,rises and tosses his cue on the table.,\"holds, unflinching, with a little laugh.\"\n12408,lsmdc0030_The_Hustler-64697,362,\"Part of the residue is a drunk who sits on the shoeshine seat, fast asleep. Someone\",\"Part of the residue is a drunk who sits on the shoeshine seat, fast asleep.\",Someone,gold,\"stands immobile, clutching at the cube, safety.\",lies awake in bed.,lies on his bed bed smoking a cigarette.,\"looks at him, shaking his head.\"\n12409,lsmdc1011_The_Help-78226,15835,Ring lettered someone drives along with a look of determined optimism. She,Ring lettered someone drives along with a look of determined optimism.,She,gold,pulls in at a gas station and waits as a black attendant cleans her windscreen.,\"pulls up a car chain with the rope wedged against the side of it, and not totally recovered from the metal.\",\"enters the vault, standing with one hand nearby and holds up sack of money.\",stares at someone who shrugs.\n12410,lsmdc1011_The_Help-78226,15836,\"She pulls in at a gas station and waits as a black attendant cleans her windscreen. Down in the street, someone\",She pulls in at a gas station and waits as a black attendant cleans her windscreen.,\"Down in the street, someone\",gold,is seated as he anxiously speeds down the driveway past a radio cars.,goes to the driver.,pulls up outside the main entrance.,\"sits down beside tissue as someone puts her arm around someone, and the operator.\"\n12411,lsmdc1011_The_Help-78226,15837,\"Down in the street, someone pulls up outside the main entrance. She\",\"Down in the street, someone pulls up outside the main entrance.\",She,gold,struggles to open the door with her snap.,crosses to a wooden desk with more letters running with some colorful letters.,strides confidently through the glass fronted door.,shows five: patrons.\n12412,anetv_oOYaw6-b4SY,7863,A blurry vision shows two people in a gym with one punching and kicking the other holding gloves. The two,A blurry vision shows two people in a gym with one punching and kicking the other holding gloves.,The two,gold,attempt to remove the items from several angles then hit the ball around.,of the men continue playing the game or jumping on the ground with one grabbing the weights.,\"act in room and spinning from one another making up groups, grabbing their hands and looking to someone.\",continue to move around the gym practicing their kicks and punches.\n12413,anetv_06dIgOEgYp0,14405,A long typed message about her reason of wanting to snowboard. She,A long typed message about her reason of wanting to snowboard.,She,gold,makes several attempts down the snowy hill and falls many times.,takes some bongo drums in front of her ears and pokes into the rhythm.,looks at the bank chubby vessel.,looks by her bedside.\n12414,lsmdc1018_Body_Of_Lies-80437,17605,He takes out a photograph of him and someone walking down a street. He,He takes out a photograph of him and someone walking down a street.,He,gold,drinks in his hot cauldron of brandy as someone stares at the mirror.,\"saunters away, looking down at his notebook.\",stares at the photo.,waves hands - bye goodbye.\n12415,lsmdc1018_Body_Of_Lies-80437,17601,Someone walks into his apartment and steps on an envelope. He,Someone walks into his apartment and steps on an envelope.,He,gold,slides it aside and sits on the passenger seat.,drives both along the kitchen with lawn equipment.,picks it up and shuts the door.,lowers his eyes to the next tree.\n12416,lsmdc1018_Body_Of_Lies-80437,17609,Someone speeds along a street and stops. Someone,Someone speeds along a street and stops.,Someone,gold,watches angrily as someone attacks them on the sidewalk.,gets out and runs across the street.,\"stares directly at the snake's rim, his mouth wide open.\",pauses at a speed - drawn car sprinting.\n12417,lsmdc1018_Body_Of_Lies-80437,17615,\"He tests the temperature of a pot of tea. Holding his gun, someone\",He tests the temperature of a pot of tea.,\"Holding his gun, someone\",gold,peers behind the counter.,plops someone on the couch.,walks along the hall and goes into the kitchen.,wanders the concrete path.\n12418,lsmdc1018_Body_Of_Lies-80437,17603,He walks into the living room. He,He walks into the living room.,He,gold,picks up the keys then starts playing the guitar.,drinks from a plastic bottle.,rotates on top of the picnic table on the side of the table.,puts his keys on the table and opens the envelope.\n12419,lsmdc1018_Body_Of_Lies-80437,17621,\"They stand facing each other. Edgy, someone\",They stand facing each other.,\"Edgy, someone\",gold,steps right up to someone.,\"stares at someone, who remains motionless on unseen ground.\",leans down to watch shiny balls of a complicated safety pull.,mounts the roundhouse kick.\n12420,lsmdc1018_Body_Of_Lies-80437,17608,\"Aggressively driving through town, he calls someone on his mobile. Someone\",\"Aggressively driving through town, he calls someone on his mobile.\",Someone,gold,raises his hands awkwardly from his temple.,speeds along a street and stops.,moves back to the kitchen.,'s on the tracks.\n12421,lsmdc1018_Body_Of_Lies-80437,17616,\"Holding his gun, someone walks along the hall and goes into the kitchen. He\",\"Holding his gun, someone walks along the hall and goes into the kitchen.\",He,gold,walks out the door and goes to the front door of the kitchen and starts a polishing bag.,criminals get out of their waiting cars.,puts on his shirt.,sees a streak of blood on the side of a worktop and touches it.\n12422,lsmdc1018_Body_Of_Lies-80437,17617,He sees a streak of blood on the side of a worktop and touches it. Someone,He sees a streak of blood on the side of a worktop and touches it.,Someone,gold,\"rubs the dark, sticky substance between his fingers.\",\"steps towards someone, grabs his hat, and throws him on the wand.\",and someone climb down and pull out of view.,kicks someone off and leans out of one side window.\n12423,lsmdc1018_Body_Of_Lies-80437,17604,He puts his keys on the table and opens the envelope. He,He puts his keys on the table and opens the envelope.,He,gold,flips past a chair and takes a sip.,spots a flash envelope.,takes out a photograph of him and someone walking down a street.,takes the bottle off his coat and peels it over.\n12424,lsmdc1018_Body_Of_Lies-80437,17611,Someone slaps the bonnet and runs to someone's apartment building. He,Someone slaps the bonnet and runs to someone's apartment building.,He,gold,\"wanders a little, tries to laugh.\",rushes down the street to someone's bathroom.,opens the driver's door and hurries away.,heads up the stairs with his phone pressed to his ear.\n12425,lsmdc1018_Body_Of_Lies-80437,17620,Someone leaves his attractive female companion and walks off with someone. They,Someone leaves his attractive female companion and walks off with someone.,They,gold,stand facing each other.,\"cross backward in a row, 15 feet passing beneath a high ridge.\",\"move her arms to help someone, who pauses.\",\", they file into a room.\"\n12426,lsmdc1018_Body_Of_Lies-80437,17606,\"Then, he picks up a bowl and hurls it at the wall. He\",\"Then, he picks up a bowl and hurls it at the wall.\",He,gold,sets the plate down behind the competition and watches.,continues to position as he tries to tie the racket right off.,pulls the two pieces up.,storms out of the apartment.\n12427,lsmdc1018_Body_Of_Lies-80437,17602,He picks it up and shuts the door. He,He picks it up and shuts the door.,He,gold,walks into the living room.,pushes it open bearing his colleague's uniform.,gives her friend a sly smile.,slams someone's hand against the glass and closes the door behind him.\n12428,lsmdc1018_Body_Of_Lies-80437,17614,\"He walks into someone's apartment and looks around, his face aglow with sweat. He\",\"He walks into someone's apartment and looks around, his face aglow with sweat.\",He,gold,\"places his hand on it, then bows his head.\",goes into the living room.,takes a huge leap through the air.,ascends his way down to his chest.\n12429,lsmdc1018_Body_Of_Lies-80437,17613,Someone slows up as he approaches a gate. He,Someone slows up as he approaches a gate.,He,gold,\"walks into someone's apartment and looks around, his face aglow with sweat.\",taps his skates through an intersection.,waddles on his trunk.,\"takes out her wrecked shoes, who stares at someone.\"\n12430,lsmdc1018_Body_Of_Lies-80437,17619,He walks out onto the balcony and makes a phone call. Someone,He walks out onto the balcony and makes a phone call.,Someone,gold,sits alone in a restaurant.,\"steps back, as someone speaks.\",\"picks up his phone and listens to his redcap, who looks around.\",\"hands her a fake, broken cable.\"\n12431,lsmdc1018_Body_Of_Lies-80437,17607,\"He storms out of the apartment. Aggressively driving through town, he\",He storms out of the apartment.,\"Aggressively driving through town, he\",gold,\"enters, pushing a carrier into a cab.\",calls someone on his mobile.,finds two vases of black soda.,swings frantically to the ground.\n12432,anetv_YDNgm6ufrJc,1665,She grabs a sponge and rinses it and her cup. She,She grabs a sponge and rinses it and her cup.,She,gold,puts the clothes in a bucket then gets in with a bucket of water.,asks for the dish soap and pours it in her cup.,grabs a big brush in water.,sprays it out with a towel and she coolly run onto the towel several times and smells it.\n12433,anetv_YDNgm6ufrJc,7203,A young child is pretend washing in the kitchen sink. She,A young child is pretend washing in the kitchen sink.,She,gold,has the baby sleeping and begins washing dishes.,walks up to the sink and stands to talk.,lay down and mops the floor.,talks to the camera.\n12434,anetv_YDNgm6ufrJc,7205,She starts washing a bottle with soap. She,She starts washing a bottle with soap.,She,gold,sprinkles paint on the model.,begins scrubbing her clothes again.,pumps her hands in the water.,steps away from the sink.\n12435,anetv_YDNgm6ufrJc,1666,She asks for the dish soap and pours it in her cup. the adult,She asks for the dish soap and pours it in her cup.,the adult,gold,\"puts the liquid in her mouth, then continues talking.\",drags the piece of tissue away.,takes the soap from the baby.,puts the ice tub to the faucet and she spoons the sauce.\n12436,anetv_YDNgm6ufrJc,1664,We see a baby rinse a cup. She,We see a baby rinse a cup.,She,gold,grabs a bottle from a sink and moves it into the bathroom.,grabs a sponge and rinses it and her cup.,lifts the white bucket and gags to her face.,continues rubbing windex with a towel.\n12437,anetv_YDNgm6ufrJc,1668,She pours it out and rinses her cup. She,She pours it out and rinses her cup.,She,gold,picks up the coffee spoon and wipes it with one of the times.,pours some into the glass and pours it in.,mixes up the ingredients in nice places including the mix.,drops the cup in the sink and gets off her ladder.\n12438,anetv_YDNgm6ufrJc,1667,The adult takes the soap from the baby. She,The adult takes the soap from the baby.,She,gold,grabs the dishes from a small bowl and dries them on a bin.,puts it in her mouth and reads the dips.,pours it out and rinses her cup.,see the ending screen.\n12439,anetv_YDNgm6ufrJc,7204,She talks to the camera. She,She talks to the camera.,She,gold,holds out a heavy razor.,dumps bottle of clothing with a blue bucket.,starts washing a bottle with soap.,continues talking to the camera.\n12440,anetv_uGVkH6PjXLs,7463,A young lady is standing in a field of dirt with an ax in her hand attempting to cut down a log. The girl,A young lady is standing in a field of dirt with an ax in her hand attempting to cut down a log.,The girl,gold,then throws the ironed hand of the ball and slaps out of it in the end and then grabs them on the tree.,lets go of the ax.,then taps circles really several times.,is not successful in her first attempt so she picks the log back up and tries again.\n12441,lsmdc1001_Flight-71998,5232,She rises and walks around the table at the head of the room. She,She rises and walks around the table at the head of the room.,She,gold,projects an image on two giant screens.,sets down his desk and looks at them uncertainly.,grabs a syringe and pours it into her brown bag.,moves forward as he gets around in the chair.\n12442,anetv_CHaTWk6uqd8,13276,A man is seen speaking to the camera while pointing to a bike frame and spinning around the tire. The man then,A man is seen speaking to the camera while pointing to a bike frame and spinning around the tire.,The man then,gold,shows how to paint bike and moves up and down continuously.,throws the object back and fourth before turning it around and laying off the object.,goes back down and continues areas around the bike while riding back to his bike.,uses tools to adjust the tire wheel and continues spinning it.\n12443,anetv_CHaTWk6uqd8,13277,The man then uses tools to adjust the tire wheel and continues spinning it. He,The man then uses tools to adjust the tire wheel and continues spinning it.,He,gold,pumps from his finger in the end and his lips trembling.,adjusts the skateboard to put his gear in the tire tire.,adjusts the bike and finishes with it in his hands.,is still seen working on the back of the bike while the camera zooms in.\n12444,anetv_tYV23sjRgt8,13044,This woman is showing viewers how to make a whiskey sour. First she,This woman is showing viewers how to make a whiskey sour.,First she,gold,\"notices some juice, then stirs the bowl with butter and graham crackers.\",pours one ounce of whiskey over ice into the ross glass.,starts creating rectangular mixes in a mixing bowl.,puts the mixer and a juicer that shows the getting bigger.\n12445,anetv_tYV23sjRgt8,13045,First she pours one ounce of whiskey over ice into the ross glass. Then she,First she pours one ounce of whiskey over ice into the ross glass.,Then she,gold,pours citrus into the glass and puts a straw into it.,places the glass cup down on the cake aid.,grabs a package and brings it up to her lips.,pours twice a glass of sugar and mixes more on the omelet.\n12446,lsmdc0043_Thelma_and_Luise-68254,1523,The activity has died down. In the back of a police car,The activity has died down.,In the back of a police car,gold,stands a pickup pull away.,going apart a rough man imploring her to even a yellow town.,sits the waitress with the door open.,is a little girl then a machine gun.\n12447,lsmdc0043_Thelma_and_Luise-68254,1524,In the back of a police car sits the Waitress with the door open. A detective in a suit,In the back of a police car sits the Waitress with the door open.,A detective in a suit,gold,hits him as he walks forward.,passes through his cell door.,leans over the car door with his note pad.,follows someone into a large courtyard.\n12448,anetv_FwbnNQBzqHw,12743,\"The woman crumbles the cake into a bowl, then adds frosting while she talks. She\",\"The woman crumbles the cake into a bowl, then adds frosting while she talks.\",She,gold,places a honey brush into someone's hands and picks up the frosting.,sprinkles a cookie on a cloth.,fixes a sugar on the object with the red root and takes it from the egg.,\"allows them to sit before melting candy coating, which she then dips the cake balls into.\"\n12449,anetv_FwbnNQBzqHw,12745,She decorates the cake ball in the final stages. A final array of cake pops,She decorates the cake ball in the final stages.,A final array of cake pops,gold,up on a moving cake.,\"and bugs appear and features of cheesecake post, forming a bun, shaped like a huge spider.\",is shown in becomes air and zooms orange and baked.,are shown as she ends the segment.\n12450,anetv_FwbnNQBzqHw,12744,\"She allows them to sit before melting candy coating, which she then dips the cake balls into. She\",\"She allows them to sit before melting candy coating, which she then dips the cake balls into.\",She,gold,takes the cake and puts the dough onto it.,grabs it and moves her head when she comes.,applies the word - melted metal metal to the person.,decorates the cake ball in the final stages.\n12451,anetv_FwbnNQBzqHw,12742,Ingredients are displayed next to actions mixing ingredients. The woman,Ingredients are displayed next to actions mixing ingredients.,The woman,gold,mixes parts of the drill and blends the ingredients together.,\"mixes their ingredients together, then nearly mixes the plates together.\",\"crumbles the cake into a bowl, then adds frosting while she talks.\",\"starts with two ice cubes, trying to look up.\"\n12452,lsmdc3015_CHARLIE_ST_CLOUD-991,16760,\"Clad in her buttoned down shirt, someone smiles at him. In the boat, someone\",\"Clad in her buttoned down shirt, someone smiles at him.\",\"In the boat, someone\",gold,finds a group stroll on the beach.,moves to the davenport.,trails his fingers in the water.,is holding a stuffed lamb.\n12453,lsmdc3015_CHARLIE_ST_CLOUD-991,16753,His head rolls toward us and his eyes blink open groggily. He,His head rolls toward us and his eyes blink open groggily.,He,gold,turns his head to one elbow and blinks back tears.,pulls apart the partly open door.,smacks his dry lips.,gently lies on his folded pipe up on the table.\n12454,lsmdc3015_CHARLIE_ST_CLOUD-991,16756,\"He breaks into a brief jog, rubbing his eyes. Reaching the cabin, he\",\"He breaks into a brief jog, rubbing his eyes.\",\"Reaching the cabin, he\",gold,finds a steel chair at the top and fills it with a spoon.,picks up the phone which he drops on the gun.,rises from his seat and looks over.,finds a slip of paper tacked to the door bearing a doodle of the splendid splinter.\n12455,lsmdc3015_CHARLIE_ST_CLOUD-991,16755,\"Now, in jeans and a T - shirt, someone hikes up the waterside path leading to the caretaker's grounds. He\",\"Now, in jeans and a T - shirt, someone hikes up the waterside path leading to the caretaker's grounds.\",He,gold,\"breaks into a brief jog, rubbing his eyes.\",eases on top of it with equally hairy fingers.,\"enters the dressing room, and steps out through a toilet - covered window.\",squints as someone's accomplice descends down the lane and follows her movement.\n12456,lsmdc3015_CHARLIE_ST_CLOUD-991,16751,Someone pulls her into a long kiss. Someone,Someone pulls her into a long kiss.,Someone,gold,flips the organize scaly.,holds the phone to his ear.,exits onto the road.,lays her head on his shoulder.\n12457,lsmdc3015_CHARLIE_ST_CLOUD-991,16754,\"He smacks his dry lips. Now, in jeans and a T - shirt, someone\",He smacks his dry lips.,\"Now, in jeans and a T - shirt, someone\",gold,sits at the edge of two bicycles.,looks at a scraggly card and caped full of purple.,puts on a plumed hat and waves beside gestures.,hikes up the waterside path leading to the caretaker's grounds.\n12458,lsmdc3015_CHARLIE_ST_CLOUD-991,16758,\"Turning the slip over, someone reads the message and smiles. He\",\"Turning the slip over, someone reads the message and smiles.\",He,gold,turns to the bustling executive.,remains down for a moment.,begins at the piano.,jogs toward the boat shed which sits with its barn doors closed.\n12459,lsmdc3015_CHARLIE_ST_CLOUD-991,16759,\"He jogs toward the boat shed which sits with its barn doors closed. Turning to the bay, he\",He jogs toward the boat shed which sits with its barn doors closed.,\"Turning to the bay, he\",gold,finds him standing upright.,closes the small car door.,leans into one of it and takes a step closer.,finds someone manning his old skiff.\n12460,lsmdc3015_CHARLIE_ST_CLOUD-991,16750,\"Smiling, she gives him a gentle peck on the lips. Someone\",\"Smiling, she gives him a gentle peck on the lips.\",Someone,gold,sucks in a breath and offers a cup to someone.,\"hesitates for a moment, then turns back onto the dogs feet.\",gazes into the back seat of the ship.,pulls her into a long kiss.\n12461,lsmdc3015_CHARLIE_ST_CLOUD-991,16757,\"A handwritten note on the back reads come find me. Turning the slip over, someone\",A handwritten note on the back reads come find me.,\"Turning the slip over, someone\",gold,reads the message and smiles.,falls flat on his brother's ottoman.,sets aside his purse.,adjusts the piece of paper.\n12462,anetv_ODblEia5mcI,8159,\"The man then makes repairs using tools while two cats walk around the periphery watching and moving around. The man produces a lot of black dust while making the repairs to the bicycle, and he\",The man then makes repairs using tools while two cats walk around the periphery watching and moving around.,\"The man produces a lot of black dust while making the repairs to the bicycle, and he\",gold,continues to ride on.,is now talking weird.,is out using the snow covering the debris.,\"eventually leaves the room, comes back and then leaves again as one cat approaches the area the man was working from.\"\n12463,anetv_ODblEia5mcI,8158,A man makes repairs to a bicycle on the hardwood floors of a bedroom while two cats look on. A man,A man makes repairs to a bicycle on the hardwood floors of a bedroom while two cats look on.,A man,gold,enters a bedroom and takes a part a bicycle on his bedroom floor.,puts plaster on the counter and begins switching the the wood with the sander.,talks to the camera and surly the hair of someone.,leads a kid up to his performs gymnastics balancing around a man on a diving board.\n12464,lsmdc1059_The_devil_wears_prada-98981,13932,\"As she walks down a set of steps leading to the pavement, a smile spreads across her face. Dressed in smart jeans, a black polo neck and a brown jacket, and still wearing a large grin, someone\",\"As she walks down a set of steps leading to the pavement, a smile spreads across her face.\",\"Dressed in smart jeans, a black polo neck and a brown jacket, and still wearing a large grin, someone\",gold,\"swims farther outside revealing the muscular looking young man, asian boy standing in front of a malevolent wall, leotard and a hat.\",gets out where she is eating and drops a pie with someone.,walks down a busy street.,joins her inside the daybreak office.\n12465,anetv_L963epA4MFU,1398,He is holding a leaf blower. He,He is holding a leaf blower.,He,gold,begins blowing smoke around the leaves.,uses a blower to capture it.,continues talking and pulling on the drive.,blows the leafs around.\n12466,anetv_L963epA4MFU,16227,A dark car drives down the street. The man returns to blowing leaves and a tractor,A dark car drives down the street.,The man returns to blowing leaves and a tractor,gold,appears under a pathway.,drives in from the left.,pulls out of a halt in front of the snow surrounding several trees.,enters on the sidewalk.\n12467,anetv_L963epA4MFU,1397,A man is in a street. He,A man is in a street.,He,gold,is spinning on a skateboard down a street.,is holding a record on the bowling machine.,is holding a leaf blower.,is pulling a vehicle in front of him.\n12468,anetv_L963epA4MFU,16226,Two men blow leaves in the street with leaf blowers. A dark car,Two men blow leaves in the street with leaf blowers.,A dark car,gold,is seen flying through the yard until the ground is spattered with flames.,is with a man at a restaurant on the sidewalk.,stops on a black and silver slide.,drives down the street.\n12469,anetv_C_bwHYiX-Vw,2392,A man shows how to change a tube in a tire. He,A man shows how to change a tube in a tire.,He,gold,pushes the spare tire onto the wall.,\"takes the old tube out, puts the new one in, then pumps it up.\",puts a tire back on the wheel.,demonstrates how to pry shoes for two.\n12470,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93113,2628,Someone's hair is turning red. They,Someone's hair is turning red.,They,gold,fingernails on the top of the red haired nail.,are walking the horses.,1 can monster.,turn and run out of the common room.\n12471,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93113,2629,\"Inside, people walk upstairs. They\",\"Inside, people walk upstairs.\",They,gold,start up the front gate.,stop as they find a pool of water on the landing.,all stare at one another.,rake their bags off the porch.\n12472,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93113,2627,\"Someone warns someone, who looks at him in dismay. Someone\",\"Someone warns someone, who looks at him in dismay.\",Someone,gold,leaps up and leaps into the backseat.,looks on over someone's head.,touches his forehead where his scar is reappearing.,kisses someone's forehead as she kisses it.\n12473,lsmdc0051_Men_in_black-70963,11023,\"Someone is outside the door, waiting for him. Someone\",\"Someone is outside the door, waiting for him.\",Someone,gold,recognizes him from last night.,is running up the stairs.,wanders up behind him.,smiles as someone rises to her feet.\n12474,lsmdc0051_Men_in_black-70963,11022,\"Someone is the last one out of the room, but he stops as he steps into the hallway. Someone\",\"Someone is the last one out of the room, but he stops as he steps into the hallway.\",Someone,gold,\"is working across the floor in front of someone holding a large bouquet of roses, setting making her butler.\",\"is outside the door, waiting for him.\",looks into the doorway.,comes down the stairs into the hall.\n12475,lsmdc0051_Men_in_black-70963,11020,The recruits follow someone out of the shooting gallery and into a long hallway. Someone,The recruits follow someone out of the shooting gallery and into a long hallway.,Someone,gold,sings offscreen as the audience begins to life.,mugshots of how about the dead masonry is taken from them.,motions them off to the left.,and he approach someone pass the military dirt on someone.\n12476,lsmdc0051_Men_in_black-70963,11024,\"Someone recognizes him from last night. As they pass an alcove, someone\",Someone recognizes him from last night.,\"As they pass an alcove, someone\",gold,stands in front of a mirror looking out.,\"notices the six other recruits, who have been herded into a corner.\",steps into the bathroom.,pushes an officer with a full stoop beside it.\n12477,lsmdc0051_Men_in_black-70963,11026,\"Someone, addressing them, pulls a neuralyzer from his pocket. He holds a neuralyzer up in front of them, and the Recruits\",\"Someone, addressing them, pulls a neuralyzer from his pocket.\",\"He holds a neuralyzer up in front of them, and the Recruits\",gold,decide it to turn.,stare obediently at it as someone slips on a pair of black sunglasses.,give him an embarrassed look.,stare at someone.\n12478,lsmdc0051_Men_in_black-70963,11021,\"Someone motions them off to the left. Someone is the last one out of the room, but he\",Someone motions them off to the left.,\"Someone is the last one out of the room, but he\",gold,\"looks already ahead, looking out of the window.\",does n't look very well.,is fairly there - - - looking everywhere as he is among the troops.,stops as he steps into the hallway.\n12479,lsmdc0051_Men_in_black-70963,11027,Alien shapes are visible within. People,Alien shapes are visible within.,People,gold,\"are there, much younger.\",suddenly into a spot.,drop their paddles constantly.,different legs straighten the?\n12480,lsmdc0051_Men_in_black-70963,11028,\"Yet another photograph, this one showing a young someone, in a shirt and tie, holding a bouquet of flowers, staring at the open door of the landed flying saucer. Someone\",\"Yet another photograph, this one showing a young someone, in a shirt and tie, holding a bouquet of flowers, staring at the open door of the landed flying saucer.\",Someone,gold,stage reveals the black and black crisis sitting on the deck.,sees another enormous giraffe trek out that the tray's caption:.,\"steers someone to the right, down another corridor, just as long as the first.\",drops in and explodes.\n12481,lsmdc0051_Men_in_black-70963,11025,\"As they pass an alcove, someone notices the six other Recruits, who have been herded into a corner. Someone, addressing them,\",\"As they pass an alcove, someone notices the six other Recruits, who have been herded into a corner.\",\"Someone, addressing them,\",gold,is following someone's convention to the audience.,glances from the changing room.,pulls a neuralyzer from his pocket.,\"takes a belt from him, then runs out.\"\n12482,anetv__79Qlv1SQ9k,12535,\"A leg wearing a blue pants with red and white lines is shown, it moves on the snow, the legs were crossed as the lifebuoy moves on the snow. A person from afar\",\"A leg wearing a blue pants with red and white lines is shown, it moves on the snow, the legs were crossed as the lifebuoy moves on the snow.\",A person from afar,gold,is on a lifebuoy sliding on the snow.,lies next to the tank.,brings the left hand over the red.,is shown kneeling down the hill of records.\n12483,anetv_uE15Mhtj9nE,17715,She turns around and bends over to pick up a steamer. She,She turns around and bends over to pick up a steamer.,She,gold,watches as they pass the boat.,sprays her hair with the blow dryer.,shows how to steam the wallpaper in sections.,places her skyward onto the low tree.\n12484,anetv_uE15Mhtj9nE,17720,She pulls the residue from the wall. She,She pulls the residue from the wall.,She,gold,walks out of camera range and comes back with a scraper to remove the left pieces.,whips herself for another long.,lies with her head in it.,\"knows there too, more complicated.\"\n12485,anetv_uE15Mhtj9nE,17716,She shows how to steam the wallpaper in sections. She,She shows how to steam the wallpaper in sections.,She,gold,explains the process under her sophisticated.,continues talking about the bottle and then on the graphics tools.,shows how to clean the furniture and viewer.,steps off the ladder and continues to steam the wallpaper.\n12486,anetv_uE15Mhtj9nE,17719,\"She moves the ladder, climbs up it and peels the wallpaper from the wall, picking the pieces that stick from the wall. She\",\"She moves the ladder, climbs up it and peels the wallpaper from the wall, picking the pieces that stick from the wall.\",She,gold,pulls the residue from the wall.,lays picture to the hole and shuts the door.,spins her around and throws her arms.,lets her legs fall from the floor and she spins it off.\n12487,anetv_uE15Mhtj9nE,17722,She bends down again and walks out of camera range again. She,She bends down again and walks out of camera range again.,She,gold,sidesteps and places a metal grip on her suit.,seems to be being driven away from the cars.,smiles at the camera.,has a sponge and is cleaning the wall.\n12488,anetv_uE15Mhtj9nE,17723,She has a sponge and is cleaning the wall. She,She has a sponge and is cleaning the wall.,She,gold,is pouring the powder into the cups.,does more scraping and scrubbing.,shows her how to cleaning the wall clean.,puts hairspray in the car.\n12489,anetv_uE15Mhtj9nE,17721,She walks out of camera range and comes back with a scraper to remove the left pieces. She,She walks out of camera range and comes back with a scraper to remove the left pieces.,She,gold,applies it to the wall.,bends down again and walks out of camera range again.,\"approaches them, pushing a curling drill at a pinata.\",worked in the process slot on a mechanism to remove a board or rubber vaults.\n12490,anetv_uE15Mhtj9nE,17724,She does more scraping and scrubbing. She,She does more scraping and scrubbing.,She,gold,turns and dries her shirt off in the sink.,rubs her face and shakes the lotion.,turns around and smiles.,scrapes the paste over the nails with the toothbrush.\n12491,anetv_uE15Mhtj9nE,17714,A woman is explaining how to remove wallpaper. She,A woman is explaining how to remove wallpaper.,She,gold,turns around and bends over to pick up a steamer.,sprays the bottle with an iron.,places a rug on the ground.,has a silicone racket and flies off after it.\n12492,anetv_uE15Mhtj9nE,17717,She steps off the ladder and continues to steam the wallpaper. She moves the ladder out of the way then she,She steps off the ladder and continues to steam the wallpaper.,She moves the ladder out of the way then she,gold,\"sprays it on and goes back out into the along room, continuing to scrape the carpet.\",pumps it in the faster.,continues to paint the wall as well as wrought.,\"steams more wallpaper, all the way to the bottom, across and the middle.\"\n12493,anetv_uE15Mhtj9nE,17718,\"She moves the ladder out of the way then she steams more wallpaper, all the way to the bottom, across and the middle. She\",\"She moves the ladder out of the way then she steams more wallpaper, all the way to the bottom, across and the middle.\",She,gold,\"gets up, turns to right in circles then turns.\",\"goes into more human parts, creating a crystal fire.\",climbs down the ladder and checks in her vehicle.,\"moves the ladder, climbs up it and peels the wallpaper from the wall, picking the pieces that stick from the wall.\"\n12494,anetv_PmyAt4zuLRY,16562,A woman is wearing a catty costume is standing behind the table. woman,A woman is wearing a catty costume is standing behind the table.,woman,gold,is dancing with a woman in purple stands and submerges it over her head.,is sitting in front of the table and dance when the woman fails the ball.,are wearing an apron then a room in front of the judges playing the violin.,is holding a toothbrush and brushes her teeth painting the side of the white sink.\n12495,anetv_MY6o5ZObFLE,8952,A girl is applying squirts of suntan lotion onto their bodies. Then then,A girl is applying squirts of suntan lotion onto their bodies.,Then then,gold,\"she applies, looking down at the purple and big woman with her left hand, and then she talks about this location.\",shows other girls how to dive off in the sand a bit.,practices then comb her hair to make a bun.,\"go into the water, swimming and walking in the surf.\"\n12496,anetv_MY6o5ZObFLE,8951,A man is sipping a drink on the beach. A girl,A man is sipping a drink on the beach.,A girl,gold,is applying squirts of suntan lotion onto their bodies.,is playing surf in the ocean.,is standing in front of her.,is pouring water in a sink.\n12497,lsmdc1011_The_Help-78647,10173,\"Someone shoots someone an appalled sidelong glance. At her house, people\",Someone shoots someone an appalled sidelong glance.,\"At her house, people\",gold,meet outside the main office.,are smiling at someone's manuscript.,stand outside in someone's house.,stand in disarray at the stairs corner of the room.\n12498,anetv_5MpJCKOxRVs,14095,Then he sits on the bike seat to achieve the best results. Then he,Then he sits on the bike seat to achieve the best results.,Then he,gold,gets a rubber band clipped and puts new angeles rubber on it.,uses up his hand so that you can make himself done exactly.,\"shows how to stand position and climbs his bike, then climbs on back and puts on snow gear.\",adjusts the handle bars again and makes sure they are firmly in place.\n12499,anetv_5MpJCKOxRVs,14094,Then he unscrews the base to level it out to his liking. Then he,Then he unscrews the base to level it out to his liking.,Then he,gold,scrubs the hammering above the rim before making it and looking into it.,adds the cooked pasta to it.,sits on the bike seat to achieve the best results.,begins and takes the second puff of the hookah.\n12500,lsmdc1039_The_Queen-87933,19368,Someone rushes up some stair with a dark - haired woman close behind. Someone,Someone rushes up some stair with a dark - haired woman close behind.,Someone,gold,\"pats him on the head, then salutes him.\",turns back to the operating table.,stares after someone with wide eyes.,stops outside a door while the woman walks up to it.\n12501,lsmdc1039_The_Queen-87933,19367,\"He puts on a black jacket, as he walks. Someone\",\"He puts on a black jacket, as he walks.\",Someone,gold,is falling over a floating picture.,is shocked by this realization that has returned to far earlier.,\"hands slip into the pan, he carries it to a makeshift truck on the sidewalk.\",rushes up some stair with a dark - haired woman close behind.\n12502,lsmdc1039_The_Queen-87933,19359,Archive footage shows a younger someone driving away from reporters. Archive footage,Archive footage shows a younger someone driving away from reporters.,Archive footage,gold,shows someone at a window in the photos of the travel agents.,shows someone trudging past a city hill.,shows a younger someone smiling as a photographer snaps her picture.,shows the people busy with ships before the tour.\n12503,lsmdc1039_The_Queen-87933,19366,Someone rushes down a corridor bustling with people. He,Someone rushes down a corridor bustling with people.,He,gold,stows a cozy foil sack in a box and pulls out the sketchbook.,takes off his jacket and enters.,\"puts on a black jacket, as he walks.\",swings up onto to a steep step.\n12504,lsmdc1039_The_Queen-87933,19365,\"Now, outside in the darkness, someone hurriedly approaches Balmoral Castle. Someone\",\"Now, outside in the darkness, someone hurriedly approaches Balmoral Castle.\",Someone,gold,rushes down a corridor bustling with people.,does academic students in the teachers study.,takes off her jacket as a maid films the rear.,\"'s legs are locked in a sling as someone drives, then stopping, pausing to stare as he crosses empty studio.\"\n12505,lsmdc1039_The_Queen-87933,19355,Numerous television reporters are gathered in front of a hotel opposite an entrance with a revolving door. A group men on motorbikes,Numerous television reporters are gathered in front of a hotel opposite an entrance with a revolving door.,A group men on motorbikes,gold,stand decorating and look it.,\"are seen dressed as convoy bikes, driving away in the park and building together.\",\"are dressed in seashore doing simple rafting activities in a parking lot, many people in the red suits at there.\",wait by the back door.\n12506,lsmdc1039_The_Queen-87933,19361,\"Now, six motorbikes are gaining on the Mercedes. On ski slope, someone\",\"Now, six motorbikes are gaining on the Mercedes.\",\"On ski slope, someone\",gold,hits a beaded tank on a truck's repaired hood.,steps to the parking lot.,wears a yellow shirt and tie on the stilts like a military box.,reaches out to mask a photographer's lens.\n12507,lsmdc1039_The_Queen-87933,19362,\"On ski slope, someone reaches out to mask a photographer's lens. As her hand blocks out the sunlight, a tunnel\",\"On ski slope, someone reaches out to mask a photographer's lens.\",\"As her hand blocks out the sunlight, a tunnel\",gold,looms ahead of the mercedes.,walks across a lawn dotted with tunnels.,pulls up itself.,writhes beneath a hand - like bridge.\n12508,lsmdc1039_The_Queen-87933,19358,The Mercedes is pursued by four motorcyclists each with photographers riding pillion. Archive footage,The Mercedes is pursued by four motorcyclists each with photographers riding pillion.,Archive footage,gold,shows the mirrored lightning at home.,is behind him completing the story.,\"shows a girl standing in a limo, waiting at the site.\",shows a younger someone driving away from reporters.\n12509,lsmdc1039_The_Queen-87933,19371,Someone switches on a bedside lamp. And someone,Someone switches on a bedside lamp.,And someone,gold,sits up beside her.,places her on top of a couple.,sees some patients begin paddling.,is in the dark red.\n12510,lsmdc1039_The_Queen-87933,19360,\"Archive footage shows a younger someone smiling as a photographer snaps her picture. Now, six motorbikes\",Archive footage shows a younger someone smiling as a photographer snaps her picture.,\"Now, six motorbikes\",gold,stand in line playing an indoor bench.,walk away from the arena.,are gaining on the mercedes.,come out and start boxing.\n12511,lsmdc1039_The_Queen-87933,19354,Video footage shows someone getting onto a small jet plane. Numerous television reporters,Video footage shows someone getting onto a small jet plane.,Numerous television reporters,gold,watch the tv.,appear as people emerge from their car in town.,emerge from the city's curb.,are gathered in front of a hotel opposite an entrance with a revolving door.\n12512,lsmdc1039_The_Queen-87933,19357,And the motorbikes follow her. Video footage,And the motorbikes follow her.,Video footage,gold,shows a maggot with a mechanic posing.,shows an ox wrecked dance in the city.,shows a crew on a ship with a dog on her tail.,shows someone in a swimming costume in the sea.\n12513,lsmdc1039_The_Queen-87933,19364,Someone lies in bed in a dark room. Someone,Someone lies in bed in a dark room.,Someone,gold,walks calmly on someone's.,\", a short naked blond woman carries a tray of popcorn, grabbed the crotch of a student bloodstained.\",carries a blanket of herbs and plants on a picnic table.,switches on a bedside lamp.\n12514,lsmdc1039_The_Queen-87933,19370,Someone looks up from her bed. Someone,Someone looks up from her bed.,Someone,gold,\"studies looking for a heartbeat, but does n't retreat.\",\"hands on her comforter, she brushes back her hair with an blow dryer.\",\"pushes someone's hat back down on the bench, pulls at someone and strides high.\",switches on a bedside lamp.\n12515,lsmdc1039_The_Queen-87933,19356,A black Mercedes pulls up. And the motorcycles,A black Mercedes pulls up.,And the motorcycles,gold,swarm around the car as someone gets inside it.,pulls onto a winding road with double tracking images.,pulls back to the drive.,yanks his shirt from the pavement in the other direction.\n12516,lsmdc1039_The_Queen-87933,19352,A photo shows people lounging. A photo,A photo shows people lounging.,A photo,gold,appears with someone's photo of someone's white t - shirt.,shows someone throwing himself into a wall.,appears with a handsome man in a blue studio.,shows someone sitting alone on a diving board.\n12517,lsmdc3024_EASY_A-11502,15777,Now she knocks on mr. She,Now she knocks on mr.,She,gold,listens as she closes it.,takes a seat facing his desk.,continues playing with the phone.,races up to him.\n12518,lsmdc3024_EASY_A-11502,15778,She takes a seat facing his desk. He,She takes a seat facing his desk.,He,gold,\"nods, then waggles a finger at a scarlet a on her pink bustier.\",starts press and tighter down.,stares at his digital mirror and extended his keys.,\"jumps out, hip approaches like breakfast.\"\n12519,anetv_BWanQWn1OYQ,710,A small group of girls are seen walking out onto a lake holding tubes and leads into others riding along in tubes. The people continue riding along the river on the tubes and the camera,A small group of girls are seen walking out onto a lake holding tubes and leads into others riding along in tubes.,The people continue riding along the river on the tubes and the camera,gold,pauses to speak to the camera.,pans around the large group.,rolls all along the river and ends with people riding on boards.,captures them as they splash the person's ride back.\n12520,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11893,A bottle stands beside the picture. He,A bottle stands beside the picture.,He,gold,cleans a tool repeatedly against a pressure washer.,turns and speaks to the picture.,is shown on a table as he talks about kids playing.,gazes closer at the diadem.\n12521,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11899,\"Someone stands to someone's right, around corner of table; he remains expressionless and immobile, until he speaks. The table\",\"Someone stands to someone's right, around corner of table; he remains expressionless and immobile, until he speaks.\",The table,gold,\"is switched, somewhat intact.\",\"reacts to the raging before it disappears and is shadowy, pounding this hard.\",is looking down towards the lanky figure.,is loaded with good food.\n12522,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11898,\"Someone sits at head of table. Someone stands to someone's right, around corner of table; he\",Someone sits at head of table.,\"Someone stands to someone's right, around corner of table; he\",gold,is looking at a picture of someone who remains behind.,\"remains expressionless and immobile, until he speaks.\",sees her on her own lap then pauses.,has a drink in his hand and beside his listening hoop.\n12523,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11896,The bottle falls from his hand onto its side on the edge of the chest. Someone rocks heavily; liquor,The bottle falls from his hand onto its side on the edge of the chest.,Someone rocks heavily; liquor,gold,takes his unblinkingly and hands it to the man.,is someone in the mouth.,gurgles from bottle to floor.,has a tightly shot.\n12524,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11895,Someone picks up the bottle. The bottle,Someone picks up the bottle.,The bottle,gold,has given him someone putting it in his hand.,falls from his hand onto its side on the edge of the chest.,runs from someone's hand.,is still from the table.\n12525,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11902,He lays the open knife on the table. Someone,He lays the open knife on the table.,Someone,gold,thinks the knife is a toy and crosses behind someone to pick it up.,\"lies asleep on the huge despair, resting on their pet animal.\",uses the razor to hookah them.,drive plates with a man on his phone.\n12526,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11891,\"Someone, his back to us, watches her a moment, then turns. We\",\"Someone, his back to us, watches her a moment, then turns.\",We,gold,goes into someone's bedroom and the other woman wearing a pink sweater and sweatpants.,\"begin with head close - up of someone as he rocks, and pull back he is rocking; and drunk.\",drives to see someone in the bus as she goes.,\", someone reappears.\"\n12527,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11892,\"We begin with head close - up of someone as he rocks, and pull back He is rocking; and drunk. A bottle\",\"We begin with head close - up of someone as he rocks, and pull back He is rocking; and drunk.\",A bottle,gold,stands beside the picture.,lies draped on top of a tube in each hand.,of lemon spilling everywhere.,of raining is seen.\n12528,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11897,Someone rocks heavily; liquor gurgles from bottle to floor. Someone,Someone rocks heavily; liquor gurgles from bottle to floor.,Someone,gold,rushes onto the bus and leaps up into the wooden walkway below.,starts to muck her bruised leg.,puts on gray narrow shorts and has a shawl to keep a watch.,sits at head of table.\n12529,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11901,He touches the spring; the blade flicks open. He,He touches the spring; the blade flicks open.,He,gold,\"punches the wiper of each one, which sits round the counter, then slides into another.\",grabs the wax tool and rips the man's chain free.,lays the open knife on the table.,moves forward and backwards.\n12530,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11894,He turns and speaks to the picture. Someone,He turns and speaks to the picture.,Someone,gold,\"waits a moment, gazing down at the disappointed raft.\",\"is awarded to someone, then walks up to him.\",picks up the bottle.,comes right above them.\n12531,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11885,She appears at head of stairs. Someone's head,She appears at head of stairs.,Someone's head,gold,\"turns, revealing a dot on a curtain.\",is hung in defeat.,raises to be dead.,sags against her chest.\n12532,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11890,\"Someone goes away along path outside. Someone, his back to us,\",Someone goes away along path outside.,\"Someone, his back to us,\",gold,\"watches her a moment, then turns.\",\"climbs back into his lift, comes down.\",watches as it moves closer to his unseen neighbor.,comes in through a laundry room.\n12533,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11884,Someone clucks her tongue o. s.. She,Someone clucks her tongue o. s..,She,gold,dances near the partition.,appears at head of stairs.,leaves snakes around the witches neck.,rotates on someone's elevated platform.\n12534,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11889,\"He watches someone leave, o. s.. Someone\",\"He watches someone leave, o. s..\",Someone,gold,leads someone as she dances toward the stage.,goes away along path outside.,stares in amazement at the sky.,takes a tear from his suit.\n12535,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11900,He brings out the knife. Someone,He brings out the knife.,Someone,gold,\"sways back and forth, as he returns to the music.\",shakes her head for no.,had broken it into simple pieces.,\"starts off again, picks him up, and turns to face her stained older brother and glare at him.\"\n12536,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11887,Someone looks to someone and we pan her in as someone's hand named love moves through her locks. We,Someone looks to someone and we pan her in as someone's hand named love moves through her locks.,We,gold,\"keeps their eyes locked and the snake lands backwards around the bed, turning to face their invisible mass of smoldering faces.\",pan with people as they move towards the door.,incoming her approach.,walks to his front door and opens it.\n12537,lsmdc0007_DIE_NACHT_DES_JAEGERS-49312,11883,\"The door opens; someone's head, carrying a candle in holder; a white - washed wall and stairs are lighted. Someone's voice\",\"The door opens; someone's head, carrying a candle in holder; a white - washed wall and stairs are lighted.\",Someone's voice,gold,turns the room block ever closer again.,is full of tents.,is from the window.,cuts cheerfully across his descent.\n12538,anetv_TmI9MxCDBMw,16020,A bunch of people on intertubes go by slowly. Then we,A bunch of people on intertubes go by slowly.,Then we,gold,see the group indoors and the sun on the hills where the old volunteers were sitting.,see the men on their attempts to receive their sirens.,see rapid waters as the tubers go over small falls.,see a school of people sitting outside the arch.\n12539,anetv_gEYutYXODs4,15865,She lights a candle in a room. She,She lights a candle in a room.,She,gold,cleans her cage with a wand.,strokes a red candle then enters.,is sitting down knitting.,walks to the closet and holds two figures on the table.\n12540,anetv_gEYutYXODs4,15868,She sits down and talks with another lady. They all,She sits down and talks with another lady.,They all,gold,begin knitting sitting next to each other.,sit behind the blackjack table and walks across the vacant kitchen.,\"hold both up and walk off, jump on stage.\",nod and talk at the end.\n12541,anetv_gEYutYXODs4,9546,The woman then lights a candle. the woman then,The woman then lights a candle.,the woman then,gold,catches it and puts it on the table.,sits in a living room and starts knitting.,paints the christmas tree in new paint.,puts a decoration in the wood.\n12542,anetv_gEYutYXODs4,15867,She is walking into a building. She,She is walking into a building.,She,gold,grabs two vegetables and twists them together.,\"shows how to perform, roping.\",clips up car's handlebars.,sits down and talks with another lady.\n12543,anetv_gEYutYXODs4,15864,A woman is washing her hands. She,A woman is washing her hands.,She,gold,is rubbing soap with a long towel.,is standing in a kitchen with pain in her eye.,uses a sponge to dry her hair.,lights a candle in a room.\n12544,anetv_rJKrXQ4v-9s,18631,\"A man is carving designs, burning them into the wood. He then\",\"A man is carving designs, burning them into the wood.\",He then,gold,cuts bits of wood in a bucket of oil.,\"rakes an iron across the boards, setting the image.\",shows the paper woman in on the pumpkin before carving the pumpkin.,cracks up and starts to add more stones to the fire.\n12545,lsmdc3027_GET_HIM_TO_THE_GREEK-12270,5496,Someone steps out behind someone and squints at him. The lanky rock - star,Someone steps out behind someone and squints at him.,The lanky rock - star,gold,breaks and falls off him.,has a bigger view over its head.,drops a hand on someone's shoulder.,focuses on the trees by the water.\n12546,lsmdc3008_BAD_TEACHER-3979,11455,\"Someone reads the cover, then gapes at someone. She\",\"Someone reads the cover, then gapes at someone.\",She,gold,shoots a look up of a woman and shakes her head excitedly.,gazes dreamily at him.,runs at him as he continues to pace under the sky.,kneels down beside someone and waves his hand in the air.\n12547,lsmdc1055_Marley_and_me-96512,4208,Marley bounds out of the house with someone holding his leash. Someone,Marley bounds out of the house with someone holding his leash.,Someone,gold,stops and looks around the night time street.,hikes through the winding woods.,\"lies in the mud, watches him grinning, and picks up an envelope.\",ambles up a nearby tree.\n12548,lsmdc1055_Marley_and_me-96512,4209,Someone stops and looks around the night time street. A slim teenage girl,Someone stops and looks around the night time street.,A slim teenage girl,gold,tumbles from the siding of a house.,sits in a salon.,is standing by her car in her driveway and clutching her side.,climbs out with a golden sorcerer in a striped dress and a white ring.\n12549,lsmdc1055_Marley_and_me-96512,4207,\"Marley's splayed out on the sofa, watching them. Marley\",\"Marley's splayed out on the sofa, watching them.\",Marley,gold,creeps up beside the car as he turns a corner.,sits across the pews.,bounds out of the house with someone holding his leash.,lies on her bed.\n12550,anetv_k5vE0ehf5TA,19581,The camera switches to a more side view of the dog. The camera,The camera switches to a more side view of the dog.,The camera,gold,switches to a more top down view of the dog.,pans to spin and we see the closing screen.,pans above to show a girl fixing the bangs and brushing the other boy.,\"zooms in on another person as someone speaks, and more dogs are seen riding along.\"\n12551,anetv_k5vE0ehf5TA,19580,An individual uses a vacuum cleaner hose to play with a dog. The camera,An individual uses a vacuum cleaner hose to play with a dog.,The camera,gold,pans back to us on it.,shows the yard being darkened.,switches to a more side view of the dog.,pans around revealing hummers with flowers around the clothes.\n12552,anetv_TexMXN2yegk,11017,The man continues carving the pumpkin. A dog,The man continues carving the pumpkin.,A dog,gold,is seen in the man watching.,is chewing on a blue ball.,puts a picture on the pumpkin.,walks in the hole of the tree.\n12553,anetv_TexMXN2yegk,11016,A man in a batman costume is shown. The man,A man in a batman costume is shown.,The man,gold,continues carving the pumpkin.,is welding several plaster on the floor.,starts bouncing rope in a gym.,dries off the car and ties it up.\n12554,anetv_QZi1yBFRZzc,17968,A woman is demonstrating how to use the garden shears in different situations. A younger girl,A woman is demonstrating how to use the garden shears in different situations.,A younger girl,gold,demonstrates how to use the shears.,goes to knit while sister continues to hold on the toy man.,paints the roof with a blend of fruit paint.,shows a tool to trim and paint paintball.\n12555,anetv_QZi1yBFRZzc,17967,A pair of garden shears is shown. A woman,A pair of garden shears is shown.,A woman,gold,is demonstrating how to use the garden shears in different situations.,is mowing the lawn at open park.,pushes excess brick down from a box.,is then used discussing the hedge.\n12556,anetv_QZi1yBFRZzc,17970,An older man shows how he uses the shears. A young man,An older man shows how he uses the shears.,A young man,gold,cuts pieces of bread.,is shown using the shears to reach something above his head.,is piecing the hedges to trim the bush.,shows how to use the hedge and make the showcase for a backyard art show in the yard.\n12557,anetv_QZi1yBFRZzc,17973,The same woman walks down a path with the shears. The woman then,The same woman walks down a path with the shears.,The woman then,gold,begins grooming her little dog about the dog ballet.,gets into her car and walks towards a tiled area of the floor.,steps away to the edge of the board neil as the woman walks in and out of frame.,shows how the shears work demonstrating on several other plants.\n12558,anetv_QZi1yBFRZzc,17976,The first woman shows additional features of the shears and the same examples of other people using the shears is shown again. The woman,The first woman shows additional features of the shears and the same examples of other people using the shears is shown again.,The woman,gold,\"then demonstrates different creates on the log she made, the chickens are rolling over on the base.\",joins with the ingredients and holds up mugs.,\"returns the tray again with various tips, using the tongs.\",walks up a set of stairs with the shears.\n12559,anetv_QZi1yBFRZzc,17974,The woman then shows how the shears work demonstrating on several other plants. A young woman,The woman then shows how the shears work demonstrating on several other plants.,A young woman,gold,is sitting on large congas with her arms out zooms in the windows.,is pictured on the field outside a blue word.,is shown using the shears.,is at the top of her journey and washes her hand.\n12560,anetv_QZi1yBFRZzc,17975,An older man uses the shears. Another man,An older man uses the shears.,Another man,gold,is shown using the shears to reach tree limbs.,assists a cow with a lasso.,stands in the spots watching.,is cleaning the fence with red bush.\n12561,anetv_QZi1yBFRZzc,17969,A younger girl demonstrates how to use the shears. An older man,A younger girl demonstrates how to use the shears.,An older man,gold,chases more firewood and begins painting a zoo.,attempts to trim her lower hedge.,struggles to trim the hedges.,shows how he uses the shears.\n12562,anetv_QZi1yBFRZzc,17971,A young man is shown using the shears to reach something above his head. The original woman shown,A young man is shown using the shears to reach something above his head.,The original woman shown,gold,pushing a potato and then a lawnmower.,demonstrates using the shears on different plant types.,walking trunks turns around on wooden chairs with a bucket of paint and showing how to make the painting.,using a hedge trimmer before a bushes as well as the garden.\n12563,anetv_QZi1yBFRZzc,17977,The woman walks up a set of stairs with the shears. The same woman,The woman walks up a set of stairs with the shears.,The same woman,gold,is shown in the store purchasing the shears.,begins trimming the woman's hair.,steps up beside the toddler.,is shown holding the knife and begins putting it on a metal bed stump.\n12564,anetv_QZi1yBFRZzc,17972,The same woman shows how to use the telescoping handle of the shears and cutting plants that would be out of reach. The same woman,The same woman shows how to use the telescoping handle of the shears and cutting plants that would be out of reach.,The same woman,gold,walks down a path with the shears.,walks to the first one.,demonstrates how to use the slat in painting and then cutting the path between the field.,moves his right hand to returns an arrow and again still fails once the circle to it.\n12565,anetv_ze6Bu0bcNbg,7013,\"Once fully charged, the man rinses the razors, applies shaving cream to this beard area and start to shave. As he is shaving, the man continues to talk and his face begins to turn a little big razor and the razor\",\"Once fully charged, the man rinses the razors, applies shaving cream to this beard area and start to shave.\",\"As he is shaving, the man continues to talk and his face begins to turn a little big razor and the razor\",gold,is cut back into place.,begins to brush all over his face.,is then placed back on the charger.,stays in his face.\n12566,anetv_ze6Bu0bcNbg,7012,\"Next, the razor is assembled and place on its charge to charge once it is plugged in. Once fully charged, the man\",\"Next, the razor is assembled and place on its charge to charge once it is plugged in.\",\"Once fully charged, the man\",gold,\"rinses the razors, applies shaving cream to this beard area and start to shave.\",continues to explain the blue floor taped work and complete the strength of the work.,cuts the together so quickly that cut man then paints the wall with a black and white bottle.,holds out the hammer have tugs the ring and uses a wooden steel rod to pull it apart.\n12567,anetv_ze6Bu0bcNbg,7011,\"A Phillips three headed razor is shown and then un - boxed on a red table. Next, the razor\",A Phillips three headed razor is shown and then un - boxed on a red table.,\"Next, the razor\",gold,is assembled and place on its charge to charge once it is plugged in.,is in 2 green and white - white.,comes and dips into the ending circular test of the boot nails.,is a piercing shown with a polish that all first replaced.\n12568,anetv_iaXlCCgLBdo,15920,Then it is replayed showing the man do this again in slow motion. Then the man,Then it is replayed showing the man do this again in slow motion.,Then the man,gold,screams and yells and jumps up and down in surprise of what he just did.,makes it and the spins.,stops two a little and shows how to look then demonstrated before stopping and looking at the skipper again.,begins talking again.\n12569,anetv_iaXlCCgLBdo,15919,The runner starts running and throws the javelin really far. Then it,The runner starts running and throws the javelin really far.,Then it,gold,runs as the man runs onto a board far and pumps the vigorously up in his hands.,grabs him again near the head and walks away from the sides of the yard.,\"lands again, the back.\",is replayed showing the man do this again in slow motion.\n12570,anetv_iaXlCCgLBdo,13538,\"Then, the man throws the javelin. A person wearing white shirt\",\"Then, the man throws the javelin.\",A person wearing white shirt,gold,jumps down and falls into the pool.,misses the bike.,walks behind the man.,falls off the skateboard.\n12571,anetv_BMzspHz04Q8,5250,She jumps on the balance beam and balances herself. She,She jumps on the balance beam and balances herself.,She,gold,steps up and lifts the beam over her head before jumping back onto the mat.,begins her balance beam routine.,\"spins around and lounges on the beam, doing a somersault.\",does the same gymnastics routine on the balance beam and continues balancing on and mounts to the beam.\n12572,anetv_BMzspHz04Q8,5249,A gymnast in a pink outfit stretches before starting routine. She,A gymnast in a pink outfit stretches before starting routine.,She,gold,jumps on the beam and quickly does the splits.,performs instructions throughout the performance as a man dressed in a red leotard has binoculars.,jumps on the balance beam and balances herself.,\"mounts her beam, spins the rod with her baton.\"\n12573,anetv_BMzspHz04Q8,5253,She is getting ready to dismount. She,She is getting ready to dismount.,She,gold,carries a bat higher.,starts to flip in the air as the crowd cheers and dances in a running crowd as she dives into stands.,stops off stage and is measuring herself high.,flips several times in the air during her dismount and lands perfectly.\n12574,anetv_BMzspHz04Q8,5251,She begins her balance beam routine. She,She begins her balance beam routine.,She,gold,\"enters as she ties the ropes, paper - spins and throws batons off the arena.\",walks past the camera several more times and ends by waving it to her right.,does several flips and somersaults.,throws the rope and does cartwheels as she wrestles.\n12575,anetv_BMzspHz04Q8,5252,She does several flips and somersaults. She,She does several flips and somersaults.,She,gold,lands against the stone wall.,is getting ready to dismount.,flips over the beam several times.,grabs her center furry stick and hits it several times.\n12576,lsmdc1001_Flight-72020,6541,Someone sits writing at his desk in his cell. A board,Someone sits writing at his desk in his cell.,A board,gold,hangs in a thick line.,hangs above the desk covered in photographs and cards.,pounds the towering desk.,reads inside the room.\n12577,lsmdc1001_Flight-72020,6542,A board hangs above the desk covered in photographs and cards. Someone,A board hangs above the desk covered in photographs and cards.,Someone,gold,places it on the table.,closes a bound book and tosses his glasses on it.,looks at the tv.,\"presses a button on a orb, which rolls in his hand.\"\n12578,anetv_pvFviIF1VGc,9396,\"A woman talks in a bar showing liquor bottles. Then, the woman put ice in a glass, then she\",A woman talks in a bar showing liquor bottles.,\"Then, the woman put ice in a glass, then she\",gold,hits the sugar extract along with a drink and add it to a glass touch.,adds alcohol to size lemons.,adds liquors from three bottles.,fills a glass with ice.\n12579,anetv_pvFviIF1VGc,9395,A person pours water to a cup. A woman,A person pours water to a cup.,A woman,gold,grabs the surfaces and washes behind the tray.,talks in a bar showing liquor bottles.,juices coffee cups on a table.,is in a gym holding a mop.\n12580,anetv_pvFviIF1VGc,9397,\"Then, the woman put ice in a glass, then she adds liquors from three bottles. After, the woman\",\"Then, the woman put ice in a glass, then she adds liquors from three bottles.\",\"After, the woman\",gold,add soda and put a straw.,drink water and adds sugar and lemon juice.,takes off the silver into a shaker.,drinks water from a glass.\n12581,lsmdc0038_Psycho-67273,10850,She begins to back into her room. Someone,She begins to back into her room.,Someone,gold,\"starts to follow, hesitates as he sees the total picture of an attractive young woman and a motel room.\",sits in her father's office.,turns to a mirror - and beckons her heels.,holds her for a moment and then goes over to someone.\n12582,lsmdc0038_Psycho-67273,10853,\"Someone looks after him, her face showing amused sympathy, then follows. Someone\",\"Someone looks after him, her face showing amused sympathy, then follows.\",Someone,gold,seethes as he tries to walk alone one.,\"applies his care down to the back of his ponytail, and wipes his face and exhales someone, reveal all of his faces.\",\"marches out again, past large screens.\",\"looks about, tray in hand, sees there is no reasonable place to spread out a supper.\"\n12583,lsmdc0038_Psycho-67273,10852,\"Without waiting for approval or disapproval, he turns, hurries to the office. Someone\",\"Without waiting for approval or disapproval, he turns, hurries to the office.\",Someone,gold,\"stands frozen at a nearby desk, tapping his hand, hands open the gay pouch remorsefully.\",\"is patiently washed barefoot, sipping a brandy.\",\"looks after him, her face showing amused sympathy, then follows.\",turns on climbing on the ledge.\n12584,lsmdc0038_Psycho-67273,10857,\"She takes up a small slice of ham, bites off a tiny bite, nibbles at it in the manner of one disturbed and preoccupied. Someone\",\"She takes up a small slice of ham, bites off a tiny bite, nibbles at it in the manner of one disturbed and preoccupied.\",Someone,gold,takes the document from her hand.,\"gazes at her, at the tiny bite she has taken, smiles and then laughs.\",plants a box filled with the items.,turns and humming happily at herself.\n12585,lsmdc0038_Psycho-67273,10856,\"She notices, too, the paintings on the wall; nudes, primarily, and many with a vaguely religious overtone. Finally someone\",\"She notices, too, the paintings on the wall; nudes, primarily, and many with a vaguely religious overtone.\",Finally someone,gold,\"reaches the sofa, sits down, looks at the spread.\",begins painting the picture with the video lantern.,is down wiping the bottom of the bed with his pillow.,gets into a quick shot.\n12586,lsmdc0038_Psycho-67273,10851,\"Someone starts to follow, hesitates as he sees the total picture of an attractive young woman and a motel room. Without waiting for approval or disapproval, he turns,\",\"Someone starts to follow, hesitates as he sees the total picture of an attractive young woman and a motel room.\",\"Without waiting for approval or disapproval, he turns,\",gold,\"spies someone to someone, who's then pushed to toppled over like a little magical.\",hurries to the office.,then rises into the office.,\"looks at her not mind, opens an auto - filled joint.\"\n12587,lsmdc0038_Psycho-67273,10854,\"Someone looks about, tray in hand, sees there is no reasonable place to spread out a supper. He\",\"Someone looks about, tray in hand, sees there is no reasonable place to spread out a supper.\",He,gold,moves the document to someone and then becomes tearful near his wave of people.,photos of the vanger appear.,has finally thrown closed up balls and silverware.,\"turns, sees someone standing in the doorway.\"\n12588,lsmdc0038_Psycho-67273,10855,\"He turns, sees someone standing in the doorway. As someone goes about spreading out the bread and ham and pouring the milk, we\",\"He turns, sees someone standing in the doorway.\",\"As someone goes about spreading out the bread and ham and pouring the milk, we\",gold,\"see someone, desperately rushing from his pocket, laughing at the meat, sweet and tomatoes.\",see the gash she was drunk.,follow someone across the room.,\"see that it's already gone, and brought short spoon.\"\n12589,lsmdc3092_ZOOKEEPER-45312,3192,\"Meanwhile, a bartender hands someone two drinks. Someone\",\"Meanwhile, a bartender hands someone two drinks.\",Someone,gold,\"blocks each shot, smiles, then turns back to someone.\",leans on the bar with a cocky smirk.,looks challengingly - tat - punches in someone's mouth.,lurches giddily as an ambulance approaches before him.\n12590,lsmdc3092_ZOOKEEPER-45312,3191,\"He points across the ballroom then squints. Meanwhile, a bartender\",He points across the ballroom then squints.,\"Meanwhile, a bartender\",gold,hands someone two drinks.,hands the photo to the bartender.,enters in spilling a glass with drinks.,taps her ice cream in her hotel tower.\n12591,lsmdc3092_ZOOKEEPER-45312,3190,\"Moving his arms like a robot, he clanks a fork and knife together. He\",\"Moving his arms like a robot, he clanks a fork and knife together.\",He,gold,grasps the fish of fish.,points across the ballroom then squints.,scans the room then points to his blurred image of the desk covered with books.,reaches into his palm and takes a bite of a scotch green ring.\n12592,anetv_xDRvD_-fvd8,7046,\"After a Tissot ad appears, a row of fencers are shown. They high five, and\",\"After a Tissot ad appears, a row of fencers are shown.\",\"They high five, and\",gold,hands other an interview.,pose for one oncoming grave.,drive through a coastal town together in snowy.,\"are displayed in several clips fighting, then back to the row of standing on the stage.\"\n12593,anetv_xDRvD_-fvd8,7047,\"They high five, and are displayed in several clips fighting, then back to the row of standing on the stage. One\",\"They high five, and are displayed in several clips fighting, then back to the row of standing on the stage.\",One,gold,talk to something and there is a young boy laying on a chair as he speaks.,\"instructs spectators and the crowd and parents stand in a large, video ball game.\",places the stick on the table and is hit by simulating rubbed it with the win and the goalie.,\"is injured, and is carried away.\"\n12594,lsmdc3035_INSIDE_MAN-1844,12676,\"Now, office workers in desks fill an elegant carpeted room. Someone\",\"Now, office workers in desks fill an elegant carpeted room.\",Someone,gold,raps on a large breakfast on the corridor.,sits before two shelves between shelves.,approaches a balding man.,waits for her to enter.\n12595,lsmdc3078_THE_WATCH-36079,3805,\"Wearing a blue shirt with the white printed words No More Murders, someone hurries onto the field and gets handed a microphone. He\",\"Wearing a blue shirt with the white printed words No More Murders, someone hurries onto the field and gets handed a microphone.\",He,gold,\"exits the room, the indian suit has the corner by his side.\",\"leads a group of motocross snowboarders, different ramps and flips as she runs in and out of town.\",writes through the last trash bag.,\"addresses the crowd, the back of his shirt emblazoned with a cross out sign over the word murders.\"\n12596,lsmdc3078_THE_WATCH-36079,3802,\"He expels a deep breath. Back at home, someone\",He expels a deep breath.,\"Back at home, someone\",gold,has come into the pizza.,eyes the golden window.,watches steadily as someone peers through wide eyes.,watches a news report.\n12597,lsmdc3078_THE_WATCH-36079,3803,\"Back at home, someone watches a news report. Now, at a high school football game, the tall man who bought the 3d tv at Costco\",\"Back at home, someone watches a news report.\",\"Now, at a high school football game, the tall man who bought the 3d tv at Costco\",gold,sits in the crowded bleachers.,tiers fixes his drawing on a newspaper.,appears with his back to him.,is also sipping a drink.\n12598,lsmdc3078_THE_WATCH-36079,3799,The officer opens the blood - spattered door. Someone,The officer opens the blood - spattered door.,Someone,gold,\"stops on the threshold, his eyes wide.\",\"freezes, staring patiently at someone.\",walks into a cubicle.,looks at some paperwork.\n12599,lsmdc3078_THE_WATCH-36079,3800,\"Now, wearing a suit, someone drives alone. Shifting his emotional gaze, someone\",\"Now, wearing a suit, someone drives alone.\",\"Shifting his emotional gaze, someone\",gold,steps out of the ironing gate.,follows someone down a flight of stairs.,leans closer to her suntan lassoes.,tugs at his collar.\n12600,lsmdc3078_THE_WATCH-36079,3807,He raises his own hand. The mascot,He raises his own hand.,The mascot,gold,chases him to a finish.,clutches by some policemen.,\"mocks him, rubbing his eyes.\",\"falls around, throwing him against the ground.\"\n12601,lsmdc3078_THE_WATCH-36079,3804,\"The announcer finds a 20. Wearing a blue shirt with the white printed words No More Murders, someone\",The announcer finds a 20.,\"Wearing a blue shirt with the white printed words No More Murders, someone\",gold,finishes the story and points to the hill.,hands the watch to someone.,shakes his grandson as the judge resumes the match.,hurries onto the field and gets handed a microphone.\n12602,lsmdc3078_THE_WATCH-36079,3801,\"Shifting his emotional gaze, someone tugs at his collar. He\",\"Shifting his emotional gaze, someone tugs at his collar.\",He,gold,hurries the guy through a doorway.,expels a deep breath.,takes off the cloak and slips it over his mouth.,sits up and enters his supply room.\n12603,lsmdc3078_THE_WATCH-36079,3798,The officers peers at someone. The officer,The officers peers at someone.,The officer,gold,\"walks away again, his face covered by the liquid, which slips out of the original patrolman.\",opens the blood - spattered door.,opens their subscription link.,glares into someone's glass to his serving master.\n12604,lsmdc3078_THE_WATCH-36079,3806,\"He addresses the crowd, the back of his shirt emblazoned with a cross out sign over the word Murders. He\",\"He addresses the crowd, the back of his shirt emblazoned with a cross out sign over the word Murders.\",He,gold,raises his own hand.,sees a car still in the back of the van.,appears startled and brighten.,opens the front car.\n12605,anetv_RLMvrl_vaqc,3354,\"Then, a man holds a hose to smoke and he looks in trouble with smoke in his mouth. After, a woman\",\"Then, a man holds a hose to smoke and he looks in trouble with smoke in his mouth.\",\"After, a woman\",gold,talks with a microphone.,walk in front of a long pipe then a door.,break sink in front of him.,is being shown with smoke and smoke.\n12606,anetv_RLMvrl_vaqc,3353,\"People are having fun in a house. Then, a man holds a hose to smoke and he\",People are having fun in a house.,\"Then, a man holds a hose to smoke and he\",gold,brings the hose to hit the door.,begins unscrewing the compartment.,looks in trouble with smoke in his mouth.,lights it and sticks it in a pile.\n12607,anetv_RLMvrl_vaqc,17482,A guy in a blue shirt sitting with friends inhales smoke from a hookah pipe. He,A guy in a blue shirt sitting with friends inhales smoke from a hookah pipe.,He,gold,puts his drink to the milk pack and takes off his suit.,\"coughs and passes it off to the friend to his right, while the friend to his left laughs at him.\",pulls out of the room.,continues smoking the cigar and blowing leaves.\n12608,anetv_RLMvrl_vaqc,17483,\"He coughs and passes it off to the friend to his right, while the friend to his left laughs at him. The camera pans to a woman holding a chicken wing and she\",\"He coughs and passes it off to the friend to his right, while the friend to his left laughs at him.\",The camera pans to a woman holding a chicken wing and she,gold,puts her hands together and continues to wave the camera.,uses her smile on a face and continues painting.,is chopping her co.,turns away from the camera.\n12609,anetv_Otm5TV4XI7w,4760,\"They are then shown randomly playing rock, paper, scissors with people. They\",\"They are then shown randomly playing rock, paper, scissors with people.\",They,gold,are shown doing different coats part by dancing while people watch on them.,\"take their positions and end signs and make green, electric colored ballet.\",hit the puck back and forth.,talk about how to play the game as they continue playing with several people.\n12610,anetv_Otm5TV4XI7w,9998,\"The champion himself explains how to win every game just by having mind control and looking at the opponent's hand to see what they put up. Then the champion even plays against someone and he wins, when they're done talking and having fun, the spokesperson\",The champion himself explains how to win every game just by having mind control and looking at the opponent's hand to see what they put up.,\"Then the champion even plays against someone and he wins, when they're done talking and having fun, the spokesperson\",gold,game continues and someone approaches an church.,video and the montage of his harmonica.,thanks the champion for coming.,may not be in a living.\n12611,anetv_Otm5TV4XI7w,9997,\"These two men are talking to each other and one of the men is the world champion of paper, scissors, rock. The champion himself\",\"These two men are talking to each other and one of the men is the world champion of paper, scissors, rock.\",The champion himself,gold,explains how to win every game just by having mind control and looking at the opponent's hand to see what they put up.,is wet on the dressing table.,approaches for a few but until the picture is being replaced.,\"on a desk, runs to retrieve the ball and throws it towards a wall.\"\n12612,anetv_Otm5TV4XI7w,4759,Two men are standing in front of a staples display and talking. They,Two men are standing in front of a staples display and talking.,They,gold,spin holding his arm as they walk.,turn their bodies while running side to side.,are all around with dirt bikes.,\"are then shown randomly playing rock, paper, scissors with people.\"\n12613,anetv_Otm5TV4XI7w,4761,They talk about how to play the game as they continue playing with several people. They,They talk about how to play the game as they continue playing with several people.,They,gold,begin playing the dancing using their sticks.,enjoy outdoors as they talk to each other about the sand.,conclude with final words and shaking hands.,blows back from the meeting outside.\n12614,lsmdc1039_The_Queen-88176,7034,People walk in the garden. Someone,People walk in the garden.,Someone,gold,returns her attention to her friend and take a breath.,comes down the stairs.,lowers his revolver as he lights a cigarette.,stops walking for a moment.\n12615,anetv_F5IWShcFIN4,5616,A storm trooper is seen speaking to the camera and leads into a camera panning around a neighbor and the man walking around. Many kids,A storm trooper is seen speaking to the camera and leads into a camera panning around a neighbor and the man walking around.,Many kids,gold,have seen who continue up and stacks up of something and leads with seeing out more tools.,are standing around many more shot in the locker holding area and running around putting huge shoes.,stop to speak to the man as well as cars stopping to speak.,continue onto the trees in the yard while one is washing his hand.\n12616,anetv_K9ccE4wrTts,15212,\"A male is standing in the bathroom talking about what he is about to do. After, he\",A male is standing in the bathroom talking about what he is about to do.,\"After, he\",gold,talks about the peppers and how he gets about how to lay food on the sandwich.,begins shaving with a new camera and cutting his beard down.,\"puts the bucket away in the sink, which is completely covered with a bit of sponge and a large splash.\",\"gets for the bathroom carrying his front, and begins clap up the screen for some beginning.\"\n12617,anetv_K9ccE4wrTts,1081,Man is sanding in a room talking to the camera. the man,Man is sanding in a room talking to the camera.,the man,gold,is talking to the camera in a dark room.,holds a razor and shave his beard.,is welding the piece of wood in slow motion.,is cleaning a bucket with paint.\n12618,anetv_K9ccE4wrTts,15213,\"After, he begins shaving with a new camera and cutting his beard down. Once complete, he\",\"After, he begins shaving with a new camera and cutting his beard down.\",\"Once complete, he\",gold,\"continues talking about the product and doing a review on it for free, as the disclaimer appears at the bottom.\",continues to shave the can and applies shaving cream on each side of his leg.,shaves his elbow extensively.,bends over again and starts shaving the side of his face in the mirror with some shaving cream above his head.\n12619,anetv_K9ccE4wrTts,1082,The man holds a razor and shave his beard. when,The man holds a razor and shave his beard.,when,gold,\"he is done, he stops and brushes the white razor herself.\",\"he is done, the man puts the toothpaste on his hand.\",ends the man keeps talking to the camera.,\"he is finished, he uses the razor shaver.\"\n12620,lsmdc1018_Body_Of_Lies-80286,11753,Someone takes the room key from the clerk. He,Someone takes the room key from the clerk.,He,gold,heads upstairs and along a corridor.,pushes out the first model's mobile.,walks into the darkness.,see his www across the screen and sheds a light tear from his eye.\n12621,lsmdc1018_Body_Of_Lies-80286,11761,A photo of someone with his family appears on the screen. Someone,A photo of someone with his family appears on the screen.,Someone,gold,eyes the owner of the convenience crops.,dials his cell phone.,climbs down the spiral staircase to his jacket.,picks up a football and hits it.\n12622,lsmdc1018_Body_Of_Lies-80286,11760,He switches it on and presses some keys. A photo of someone with his family,He switches it on and presses some keys.,A photo of someone with his family,gold,appears on the screen.,\"has gathered, which we pass around london.\",sits on the porch.,emerges inside the house.\n12623,lsmdc1018_Body_Of_Lies-80286,11755,Someone lets himself into a hotel room. He,Someone lets himself into a hotel room.,He,gold,climbs out high on the elevator landing.,walks through the room and out onto the balcony.,takes some whiskey back at the market.,holds her bag over his shoulder and takes a small drink.\n12624,lsmdc1018_Body_Of_Lies-80286,11756,He walks through the room and out onto the balcony. He,He walks through the room and out onto the balcony.,He,gold,stares out the window at a dive gazing roll over the pages.,\"climbs over the wall, steps along a ledge and climbs onto the balcony of the next room.\",steps towards the office where someone greet them.,\"rolls to his side, then turns to the light, turns on the gas, sees herself leaning back with a doleful look.\"\n12625,lsmdc1018_Body_Of_Lies-80286,11763,Someone's at a computer. A number of files,Someone's at a computer.,A number of files,gold,spill up from someone.,\"lie in line, soar.\",are bathed in all black.,appear on the laptop in front of someone.\n12626,lsmdc1018_Body_Of_Lies-80286,11754,He heads upstairs and along a corridor. Someone,He heads upstairs and along a corridor.,Someone,gold,lets himself into a hotel room.,\"logs down and ties the string to a rope, then shakes himself.\",circles his stereo set.,jogs towards her photograph in the hallway.\n12627,lsmdc1018_Body_Of_Lies-80286,11758,\"He peers in through the French windows, pushing a long curtain aside. Someone\",\"He peers in through the French windows, pushing a long curtain aside.\",Someone,gold,\"emerges from the shadows, bringing his foot down.\",heads to a laptop on the dressing table.,emerges from the diner.,steps briefly closer to the burnham.\n12628,lsmdc1018_Body_Of_Lies-80286,11757,\"He climbs over the wall, steps along a ledge and climbs onto the balcony of the next room. He\",\"He climbs over the wall, steps along a ledge and climbs onto the balcony of the next room.\",He,gold,\"peers in through the french windows, pushing a long curtain aside.\",is steamy on the floor.,reaches towards someone with the plastic bag slung around his shoulder.,uses an electric tool to sweep the hair all over the floor and landing it on the floor.\n12629,lsmdc1018_Body_Of_Lies-80286,11759,Someone heads to a laptop on the dressing table. He,Someone heads to a laptop on the dressing table.,He,gold,puts on a pair of surgical masks.,pushes a device into the socket at the back of the computer.,sets it on his computer.,puts the paper box in a clean study.\n12630,lsmdc1018_Body_Of_Lies-80286,11762,Someone dials his cell phone. Someone,Someone dials his cell phone.,Someone,gold,throws his phone back.,smiles as she touches with someone.,'s at a computer.,falls on his phone.\n12631,anetv_8itO1pQI9ww,6678,A man is standing in a room with a hose in his mouth that is attached to a bottle. The male then,A man is standing in a room with a hose in his mouth that is attached to a bottle.,The male then,gold,shows off six licks from the bottom of the shoe.,shakes the dog with a hose and then shovels the leaves.,shows two other moves and scratches them while shaking his cigarette in his hand.,begins to lift the bottle up over his head until he has consumed all of its content and takes it out of his mouth.\n12632,anetv_8itO1pQI9ww,285,Man wearing a white cap is guzzling beer. There,Man wearing a white cap is guzzling beer.,There,gold,is various beer playing on the table.,is a man standing in a wheelchair watching them.,is practicing ice clubs.,are balloons in the background.\n12633,anetv_8itO1pQI9ww,286,There are balloons in the background. A man,There are balloons in the background.,A man,gold,is wearing a black shirt.,is kneeling on a mat.,rubs a bow and cleans on the outside.,discusses holds a red stand with a broken emergency mechanism in front of him.\n12634,anetv_AUPs7Ukfc1I,7634,A man is seen speaking to the camera and holding up a razor. The man then,A man is seen speaking to the camera and holding up a razor.,The man then,gold,places a bowl in the sink and begins brushing it.,begins shaving his leg with a brush.,begins brushing down the sink while looking off into the distance.,begins shaving hair on his chin.\n12635,anetv_AUPs7Ukfc1I,7635,The man then begins shaving hair on his chin. He,The man then begins shaving hair on his chin.,He,gold,begins to shave his beard off with a razor and holding up a razor.,continues to shave his beard and end by speaking to the camera.,speaks and starts combing the man's facial hair.,continues shaving his chin and stops to look at the camera.\n12636,anetv_AUPs7Ukfc1I,2936,A man is holding a device for shaving in his hands. He,A man is holding a device for shaving in his hands.,He,gold,roars by to pick it high off of the floor.,begins shaving his beard off with the electric shaver.,begins to shave the man's leg.,is shaving his leg with a razor and proceeds to brush his teeth.\n12637,anetv_AUPs7Ukfc1I,2938,\"He finishes shaving, and cleans up what is left with the shaver. When he is clean, he\",\"He finishes shaving, and cleans up what is left with the shaver.\",\"When he is clean, he\",gold,is then seen talking and standing up dripping water sweat.,\"crawls across to him and sits his supplies, noses around, completely sleeping.\",\"shows off the wad of hair, and discards it by flushing it down the toilet.\",looks up at the woman she comes and shaves her face in her hands that can not look in her face.\n12638,anetv_AUPs7Ukfc1I,2937,He begins shaving his beard off with the electric shaver. He,He begins shaving his beard off with the electric shaver.,He,gold,begins shaving his beard.,walks to the window.,\"finishes shaving, and cleans up what is left with the shaver.\",begins shaving his leg as he shaves his beard.\n12639,anetv_p1fpQ4yR1co,4948,A woman is blow drying her hair. She,A woman is blow drying her hair.,She,gold,starts to blow drying the dog's hair.,turns a curling iron on and starts curling her hair.,looks at the vent but continues to blow with her hair.,takes a brush and begins to brush a brush from her hair.\n12640,anetv_p1fpQ4yR1co,4780,She pins her hair followed by curling it along the sides. She then,She pins her hair followed by curling it along the sides.,She then,gold,finishes and poses again while speaking to each camera with a stencil.,uses the blow needle to dip the braids in the shape.,straightens her hair afterwards and shows them side by side.,\"grabs it and puts it over her face, pausing to show the fashion until ending.\"\n12641,anetv_p1fpQ4yR1co,4779,A close up of products are shown leading into a woman holding a blow dryer. She,A close up of products are shown leading into a woman holding a blow dryer.,She,gold,pins her hair followed by curling it along the sides.,\"is pulled off the side of the machine, putting things on various equipment.\",is by pushing her hair back and styling them with a white towel.,demonstrates how to clear the hair while she speaks to the camera.\n12642,lsmdc1001_Flight-71772,9029,\"Someone sits at the bar and moves a cocktail napkin back and forth, as he studies the glass of vodka. He\",\"Someone sits at the bar and moves a cocktail napkin back and forth, as he studies the glass of vodka.\",He,gold,picks it up and takes a drink.,pours it into a liquor jar with his other hand that squeezes off labeled nuts.,spits off the commentary.,\"tries to leave the fridge, but stops short.\"\n12643,lsmdc1001_Flight-71772,9039,He passes the car with someone's things and glances through a few enlarged photographs in a basket. He,He passes the car with someone's things and glances through a few enlarged photographs in a basket.,He,gold,\"takes a sip from his beer and looks up, alert.\",drops the card in his bag and opens it with some awareness of the tracker.,selects the remainder of the shotgun with seven more seconds.,\"sits in front of someone, his face lying pad, looking downward.\"\n12644,lsmdc1001_Flight-71772,9034,\"Groggy - eyed, someone drives down a street, beer can in hand. He\",\"Groggy - eyed, someone drives down a street, beer can in hand.\",He,gold,rises away from his car and slowly cuts half of the car's backs.,passes a dead - end street and stops.,\"trots along the road toward the house, where the cop cars sit parked by.\",\"steps out of the building to the next cab, then pauses and takes a deep breath.\"\n12645,lsmdc1001_Flight-71772,9030,He picks it up and takes a drink. He,He picks it up and takes a drink.,He,gold,takes two liquor bottles off his side.,continues eating and seated around a large pile of food.,\"then opens the big bottle, shows out the black jack, puts it to the fridge and leaves the apartment.\",\"smacks his lips, picks up the glass again and drains the contents.\"\n12646,lsmdc1001_Flight-71772,9031,\"He smacks his lips, picks up the glass again and drains the contents. Later, he\",\"He smacks his lips, picks up the glass again and drains the contents.\",\"Later, he\",gold,sets a case of budweiser in the passenger seat.,hands someone to a boxer.,brings out groceries holding someone's shoulder.,\"kisses her, and she pulls him away.\"\n12647,lsmdc1001_Flight-71772,9032,\"Later, he sets a case of Budweiser in the passenger seat. He\",\"Later, he sets a case of Budweiser in the passenger seat.\",He,gold,hangs up his phone.,takes off his socks and takes a seat at the foot of the bed.,has a spoonful of cupcake noodles.,\"gets in the car and unscrews a gallon bottle of vodka, looks around and chugs it.\"\n12648,lsmdc1001_Flight-71772,9027,Someone stops in the bar area. A photo of someone,Someone stops in the bar area.,A photo of someone,gold,appears at a window.,is at the bar.,appears on the tv behind the bar.,on a shelf with his oranges approaches.\n12649,lsmdc1001_Flight-71772,9037,\"Someone looks away, then back at someone as she runs back through a worn fence. Someone\",\"Someone looks away, then back at someone as she runs back through a worn fence.\",Someone,gold,pulls up to the apartment entrance behind someone's car.,points at the other keys on the table.,goes on a slow step.,spins his arms away.\n12650,lsmdc1001_Flight-71772,9028,A photo of someone appears on the tv behind the bar. Someone,A photo of someone appears on the tv behind the bar.,Someone,gold,takes an envelope from a crying man at a desk in his bedroom.,moves across to someone who remains pinned against the wall.,watches the bus draw closer.,\"sits at the bar and moves a cocktail napkin back and forth, as he studies the glass of vodka.\"\n12651,lsmdc1001_Flight-71772,9035,He passes a dead - end street and stops. He,He passes a dead - end street and stops.,He,gold,watches as someone loads items in the back of a car.,takes the cue in someone's hand.,peeks up to join someone at the bottom rear.,picks up a pistol.\n12652,lsmdc1001_Flight-71772,9038,Someone pulls up to the apartment entrance behind someone's car. He,Someone pulls up to the apartment entrance behind someone's car.,He,gold,stops in front of the train going down office.,climbs out of the window and gapes off the spot.,\"fires up at the father's building, but falls into a car.\",passes the car with someone's things and glances through a few enlarged photographs in a basket.\n12653,lsmdc3042_KARATE_KID-19102,15436,\"Now, someone creeps beside the car. He\",\"Now, someone creeps beside the car.\",He,gold,opens the new compartment's door.,\"emerges, wrapped up in and revealing the groggy guy.\",hurries behind another parked car.,scoots off the road and drives towards the tree before crawling safely onto a mountainside.\n12654,lsmdc3042_KARATE_KID-19102,15515,\"Someone carries a skateboard under one arm, and races down the stairs in his apartment building. He\",\"Someone carries a skateboard under one arm, and races down the stairs in his apartment building.\",He,gold,passes his mother as she collects their mail in the lobby.,gazes down the windowed driveway to a backyard where the quill gunner sitting on his left side left.,\"staggers off, spotting that fluttering by the stairs.\",strolls inside and saunters out as someone turns on the light.\n12655,lsmdc3042_KARATE_KID-19102,15429,\"Someone nervously lags behind on purpose. Later, someone and the other boys\",Someone nervously lags behind on purpose.,\"Later, someone and the other boys\",gold,stand at their carwash and look at the puppets out.,ride over to someone as they soar along the narrow road toward the urban street.,walk through an arched gateway onto a narrow street.,stand in a doorway watching someone and feet.\n12656,lsmdc3042_KARATE_KID-19102,15467,\"As a younger boy kicks, someone blocks the attack with the tall boy. He\",\"As a younger boy kicks, someone blocks the attack with the tall boy.\",He,gold,\"pulls the young kicker in, uses him as a shield against the tall boy.\",\"holds the box against his neck, and bares his teeth.\",pretends to wriggle backwards.,falls from his face.\n12657,lsmdc3042_KARATE_KID-19102,15520,\"Down the road, he grabs the back of a bicycle - driven cart. He\",\"Down the road, he grabs the back of a bicycle - driven cart.\",He,gold,watches tearfully as he writes on a bicycle.,lets go as he reaches a gate into a neighborhood.,pulls a remote from someone's cabinet and opens the passenger door.,opens a storage compartment full of freezer cases.\n12658,lsmdc3042_KARATE_KID-19102,15551,Someone works his way up beside someone and adjusts his red kerchief. The students,Someone works his way up beside someone and adjusts his red kerchief.,The students,gold,head off the field.,\"gather, as someone for the rest of the dance steps.\",follow his gaze as they continue deeper.,shuffle on the side of the plane and give over.\n12659,lsmdc3042_KARATE_KID-19102,15507,He holds his arm across mr. As the instructor,He holds his arm across mr.,As the instructor,gold,\"unloads, he snaps again.\",adjusts the seat separating him to the seat.,\"head, his nostrils form a black circle.\",grabs him by the wrist.\n12660,lsmdc3042_KARATE_KID-19102,15487,Someone hands someone a glass of water. The boy,Someone hands someone a glass of water.,The boy,gold,\"pours a bottle in a champagne glass, then adds another drink.\",hands her an empty bar stool then leans against someone's island.,\"downs it, then hands back the empty glass.\",\"stares, then lifts a drink out of the champagne.\"\n12661,lsmdc3042_KARATE_KID-19102,15463,\"He delivers a kick, but someone intercepts his ankle. The man\",\"He delivers a kick, but someone intercepts his ankle.\",The man,gold,shoots at his captive and shoots him in the shoulder.,\"lifts someone's leg, then shoves him back.\",\"carries the duffel, nearly knocks them over as he hobbles out.\",charges at the waist and lunges even more.\n12662,lsmdc3042_KARATE_KID-19102,15411,Someone lowers her thoughtful eyes. Someone,Someone lowers her thoughtful eyes.,Someone,gold,wears a wounded smirk.,speed furiously after someone with the floodlights.,\"puts a hand, rubbing his hands together.\",pulls her tie coldly as someone gives a teasing smile and her smile fixed firm in someone's face.\n12663,lsmdc3042_KARATE_KID-19102,15512,Master someone glares at his back. Someone,Master someone glares at his back.,Someone,gold,stands over someone.,dashes through the immaculate marketplace.,obscures through the hanging fixture.,\"stares after someone, then hurries to catch up.\"\n12664,lsmdc3042_KARATE_KID-19102,15538,The boy lazily bends forward and grabs the jacket. He,The boy lazily bends forward and grabs the jacket.,He,gold,\"fall, and the boy run backwards between the seats.\",hangs it on the peg.,\"slides over it, making his way over the top.\",walks up onto it with the shaver on the boy's neck.\n12665,lsmdc3042_KARATE_KID-19102,15443,\"Someone topples a stack of boxes, knocking them in front of his pursuers. Someone\",\"Someone topples a stack of boxes, knocking them in front of his pursuers.\",Someone,gold,cruises across a deserted road.,tucks the scrolls in his pocket.,saunters up to someone and the elf lowers his gaze.,scales a pile of boxes beside them and climbs onto a roof.\n12666,lsmdc3042_KARATE_KID-19102,15459,\"The beaten boy lies on his side, his arm clutching his stomach. Through someone's point of view, we\",\"The beaten boy lies on his side, his arm clutching his stomach.\",\"Through someone's point of view, we\",gold,see no figure of someone.,see someone's blurry outline.,see someone watching horrified as someone stuns himself.,\"glimpse a red stain, the eiffel tower hilltop below it.\"\n12667,lsmdc3042_KARATE_KID-19102,15500,The instructor ceremoniously raises his open hand. The students,The instructor ceremoniously raises his open hand.,The students,gold,crowd on from a high tower.,\"stand at attention, their arms behind their backs, and their eyes straight ahead.\",disembark from their seats.,gaze intently at the puppet then stands.\n12668,lsmdc3042_KARATE_KID-19102,15413,Someone plods to his screen door and peers after them. Students,Someone plods to his screen door and peers after them.,Students,gold,flicker and move away to the interviewer.,watch people leave their group shed.,flood through to a vast palatial courtyard.,\"enter the facility to crisp two rows of panels at the end of the hall, imitating someone.\"\n12669,lsmdc3042_KARATE_KID-19102,15421,\"As someone walks some distance behind the others, Mrs. Po stops beside him. Mrs. Po kindly rests a hand on someone's back and\",\"As someone walks some distance behind the others, Mrs. Po stops beside him.\",Mrs. Po kindly rests a hand on someone's back and,gold,ushers him toward the group.,slaps her hand on his.,takes a seat next to someone.,idly reaches down the side.\n12670,lsmdc3042_KARATE_KID-19102,15439,\"His eyes shift to a grimy steam vent on the side of a building. On the stoop, someone\",His eyes shift to a grimy steam vent on the side of a building.,\"On the stoop, someone\",gold,lets a large chinese eagle trails over a hanger at the base of a building.,demonstrates kung fu moves to his friends.,hears a sound from downstairs.,leans on the wall and slides to the ground below.\n12671,lsmdc3042_KARATE_KID-19102,15497,\"As one boy attacks, the other blocks him. He\",\"As one boy attacks, the other blocks him.\",He,gold,\"crouches over his fallen opponent, draws back his fist, and hesitates.\",watches in amazement as he douses in shot.,\"hauls him out of the building, with someone on a wet muddy ground.\",frowns at his colleague.\n12672,lsmdc3042_KARATE_KID-19102,15454,Someone tries to climb over the inner wall. Someone,Someone tries to climb over the inner wall.,Someone,gold,watches the carpathia and frowns out the door.,brings a stone forward and finds someone floss.,hastily stands and backs away.,turns as someone can run after the spider.\n12673,lsmdc3042_KARATE_KID-19102,15540,He takes it back off. He,He takes it back off.,He,gold,hurries to its door.,swings it around his body.,takes it and places the cart under someone's wallet.,springs from his grasp.\n12674,lsmdc3042_KARATE_KID-19102,15448,\"He finds a piece of wire hanging from a nearby hook. As someone's crew struggle to open the doors, someone\",He finds a piece of wire hanging from a nearby hook.,\"As someone's crew struggle to open the doors, someone\",gold,steps back and waits.,rolls up a front door.,goes out after him.,\"sits up, and rises.\"\n12675,lsmdc3042_KARATE_KID-19102,15451,\"Another boy leaps over the wall. Following someone, the group\",Another boy leaps over the wall.,\"Following someone, the group\",gold,\"of meerkats dodges around him, passing knives, and disarms someone.\",\"races behind residential buildings, where drying clothes hang on lines.\",runs upstairs.,turns closed.\n12676,lsmdc3042_KARATE_KID-19102,15502,Someone notices someone and someone watching the class. He,Someone notices someone and someone watching the class.,He,gold,stands hand in hand.,stares intently at the phone from his bedside table.,stares at them as his instructor continues.,opens a door and steps into a hallway with both puritan naked.\n12677,lsmdc3042_KARATE_KID-19102,15526,\"Someone passes into a living room. A run - down car, missing its front fender,\",Someone passes into a living room.,\"A run - down car, missing its front fender,\",gold,drops someone's sleeve.,pours into a dark tunnel.,crowds the center of the room.,stands pressed against the glass wall.\n12678,lsmdc3042_KARATE_KID-19102,15528,\"Someone stares, his brow furrowed. Someone\",\"Someone stares, his brow furrowed.\",Someone,gold,plants someone's hand on his shoulder.,gets the way out of someone's head.,\"looks up and stares at someone, who is still staring at someone.\",\"stops her staring at him, then lingers inside as someone opens the door.\"\n12679,lsmdc3042_KARATE_KID-19102,15521,\"He lets go as he reaches a gate into a neighborhood. Checking a slip of paper, he\",He lets go as he reaches a gate into a neighborhood.,\"Checking a slip of paper, he\",gold,inserts a shot then backs out of the sight and sinks to the ground.,heads through the gate's double doors.,arrow and slides through a rope to the cross.,finds a black tag on a italian pop - packed t - shirt.\n12680,lsmdc3042_KARATE_KID-19102,15431,The boys stop at a collection of parked bicycles and goof around. Someone,The boys stop at a collection of parked bicycles and goof around.,Someone,gold,sets a sheet on the camp table.,reaches up and strikes it.,hides around the corner and watches.,closes a gnn gate and unlocks it.\n12681,lsmdc3042_KARATE_KID-19102,15472,\"Now, as someone fends off several boys simultaneously. Someone\",\"Now, as someone fends off several boys simultaneously.\",Someone,gold,lifts his dead foot and rushes into the room.,takes a second remotely effect arm as he grabs them off.,lifts his head and watches the fight.,keeps his hand up.\n12682,lsmdc3042_KARATE_KID-19102,15455,\"He sinks a fist into someone's gut. As someone doubles over, the two boys\",He sinks a fist into someone's gut.,\"As someone doubles over, the two boys\",gold,scramble out of the ring.,crawl around dirt for joy.,holding him straighten him back up.,begin to wiggle towards the table.\n12683,lsmdc3042_KARATE_KID-19102,15483,Someone watches as someone drops the flaming cotton ball into a bowl. He,Someone watches as someone drops the flaming cotton ball into a bowl.,He,gold,hands her truffle colored apple from its cage.,collapses to a container on the table.,rubs his hands together.,grabs an orange slip off the pool.\n12684,lsmdc3042_KARATE_KID-19102,15456,The boys straighten someone again. Someone,The boys straighten someone again.,Someone,gold,drives his fist into someone's stomach.,barely wipes his view.,glances behind her facing the mirror.,sets neatly on top of someone and pulls out his trash case.\n12685,lsmdc3042_KARATE_KID-19102,15501,\"The students stand at attention, their arms behind their backs, and their eyes straight ahead. Someone\",\"The students stand at attention, their arms behind their backs, and their eyes straight ahead.\",Someone,gold,aims them at someone.,\"lies sobbing, holding a hand over his head.\",leads the blindfolded someone up a wall.,notices someone and someone watching the class.\n12686,lsmdc3042_KARATE_KID-19102,15426,As the uniformed boys head down the sidewalk outside the school gate. Someone,As the uniformed boys head down the sidewalk outside the school gate.,Someone,gold,steps aside and shuts the doors.,watches with fearful eyes.,walks down onto the dance floor.,\"grabs it, breathing hard.\"\n12687,lsmdc3042_KARATE_KID-19102,15430,\"Later, someone and the other boys walk through an arched gateway onto a narrow street. Someone\",\"Later, someone and the other boys walk through an arched gateway onto a narrow street.\",Someone,gold,turns to the radio.,spins around in a circle.,wheels someone's suv and walks into a wide room.,follows at a safe distance.\n12688,lsmdc3042_KARATE_KID-19102,15510,He turns to his students. The students,He turns to his students.,The students,gold,stare at the surrounding shelves.,sit in the room.,look at their instructor.,rally at each other.\n12689,lsmdc3042_KARATE_KID-19102,15537,Someone drops it on to the tile. The boy,Someone drops it on to the tile.,The boy,gold,shuts his eyes then covers himself in and out.,rises to the end.,lazily bends forward and grabs the jacket.,sits on his raft.\n12690,lsmdc3042_KARATE_KID-19102,15479,\"Later, someone holds a cotton ball between chopsticks, and lights it on fire. Shirtless, someone\",\"Later, someone holds a cotton ball between chopsticks, and lights it on fire.\",\"Shirtless, someone\",gold,\"gets to his feet, at the front door, still using his cane.\",lies on a wicker couch.,lies on a bench in a nearby.,grins at the coach.\n12691,lsmdc3042_KARATE_KID-19102,15525,Dirty dishes clutter the cramped kitchen. Someone,Dirty dishes clutter the cramped kitchen.,Someone,gold,dumps a drink into the bin.,turns to the priest and stalls.,goes into the facility and knocks.,passes into a living room.\n12692,lsmdc3042_KARATE_KID-19102,15484,Someone touches his injured side. He,Someone touches his injured side.,He,gold,watches coldly as someone runs along a rocky ridge.,sighs as they go.,surrenders a machete on someone.,packs up his fire cupping equipment.\n12693,lsmdc3042_KARATE_KID-19102,15476,Someone gives him a look and the boy backs away. His chest,Someone gives him a look and the boy backs away.,His chest,gold,heaves as the camera watches the kung fu movements.,heaves as he turns from the group.,heaves as he lowers his glass.,heaves as he dreamily lifts his edge.\n12694,lsmdc3042_KARATE_KID-19102,15514,He catches up to someone. They,He catches up to someone.,They,gold,peer through weary clouds of fabric!,stays at the truck.,stop just outside the courtyard's gate.,\"exactly, someone knocks him.\"\n12695,lsmdc3042_KARATE_KID-19102,15450,Someone leaps over the wall. Another boy,Someone leaps over the wall.,Another boy,gold,leaps over the wall.,swipes the axe handle.,lifts up off a bar and falls off of light.,helps him into reach.\n12696,lsmdc3042_KARATE_KID-19102,15519,\"On his skateboard, someone holds on to the container bouquet and catches a ride. Down the road, he\",\"On his skateboard, someone holds on to the container bouquet and catches a ride.\",\"Down the road, he\",gold,passes through a clapping open lawn on a modest home.,sprints across the orange escalade and secures back up the corridor.,grabs the back of a bicycle - driven cart.,finds his father's hood flashing.\n12697,lsmdc3042_KARATE_KID-19102,15458,He knocks someone to the ground. The beaten boy,He knocks someone to the ground.,The beaten boy,gold,\"lies on his side, his arm clutching his stomach.\",winces in pain and falls as the boy tosses dried blood onto his nose.,is dragged beneath the ambulance.,shakes hands with someone.\n12698,lsmdc3042_KARATE_KID-19102,15542,\"Someone obeys each repeated command. Later, someone\",Someone obeys each repeated command.,\"Later, someone\",gold,opens a mini box and types it to a pilot control box.,\"sits on his patio, fanning himself.\",smashes the double stand.,\"bursts into a stairwell, tapping a floor beside the metal balustrade.\"\n12699,lsmdc3042_KARATE_KID-19102,15412,\"Someone shakes his head, his chin trembling. Someone\",\"Someone shakes his head, his chin trembling.\",Someone,gold,\"lowers her gaze, and sucks in a breath.\",hangs his head and attempts to make a decision.,\"nods, weary broadly.\",thoughtfully slides the cash in her pocket.\n12700,lsmdc3042_KARATE_KID-19102,15496,Someone scans his surroundings as he and someone enter. One of the sparring boys,Someone scans his surroundings as he and someone enter.,One of the sparring boys,gold,struggles to pass him.,throws his opponent to the mat.,opens the red door a complete drop.,enters a deep living room where rows of small trees are in the sunlight.\n12701,lsmdc3042_KARATE_KID-19102,15550,\"He glances at his mentor's blank face. Now, on the school's athletic field, dozens of uniformed students\",He glances at his mentor's blank face.,\"Now, on the school's athletic field, dozens of uniformed students\",gold,stand in neat ranks.,find the rise from the ground.,follow the usher to the lift.,look ready to receive the arrest.\n12702,lsmdc3042_KARATE_KID-19102,15466,\"He blocks a strike and holds a tall boy against his body. As a younger boy kicks, someone\",He blocks a strike and holds a tall boy against his body.,\"As a younger boy kicks, someone\",gold,blocks away from her brother then slams her.,blocks the attack with the tall boy.,comes down a flight of stairs.,slides the fist back his double.\n12703,lsmdc3042_KARATE_KID-19102,15442,Someone and his friends follow him across a road and into an alleyway. Someone,Someone and his friends follow him across a road and into an alleyway.,Someone,gold,finds him clearing out snow gnome.,\"topples a stack of boxes, knocking them in front of his pursuers.\",drags someone up a wooden street with a long stone carriage as he drags it into the surrounding room.,gets to the top of an exercise equipment in a corner.\n12704,lsmdc3042_KARATE_KID-19102,15432,Someone hides around the corner and watches. He,Someone hides around the corner and watches.,He,gold,turns on her lamps.,turns as a motorcycle cab trundles closer on a parallel course.,pushes the couple toward the hood of the car.,goes out of a busy swimming club.\n12705,lsmdc3042_KARATE_KID-19102,15418,\"With a smile, she stands beside him and joins him in craning her head back to take in the doors' full height. She\",\"With a smile, she stands beside him and joins him in craning her head back to take in the doors' full height.\",She,gold,steps up one of the little girls in a chair's cotta.,\"comes in to the attic with an african - shaped bow, which looks at him.\",whirls the interrogation room behind them as she inspects the other windows while the elevator doors shut.,places one of his hands on a golden cap.\n12706,lsmdc3042_KARATE_KID-19102,15489,Someone folds a blanket on the wicker couch. Someone,Someone folds a blanket on the wicker couch.,Someone,gold,\"stares up at him, his face loose from his robe.\",sets the shots at the table.,stares disappointedly as the man ignores him.,plays an acoustic guitar in an outdoor turntable.\n12707,lsmdc3042_KARATE_KID-19102,15468,\"He pulls the young kicker in, uses him as a shield against the tall boy. Someone and the others\",\"He pulls the young kicker in, uses him as a shield against the tall boy.\",Someone and the others,gold,begin to poke themselves through.,begin to advance through a ring which draws in a circle.,find one and one.,\"rush someone, who deflects their blows.\"\n12708,lsmdc3042_KARATE_KID-19102,15416,Someone pauses and turns around. She,Someone pauses and turns around.,She,gold,\"stares off, bathed in sunlight.\",slams her glass against the wall.,turns toward the entrance of the garden.,spots someone staring at the door and heads over.\n12709,lsmdc3042_KARATE_KID-19102,15474,\"He tangles a sleeve around the arm of another boy, and wraps the other sleeve around the jacket - wearer's neck. He\",\"He tangles a sleeve around the arm of another boy, and wraps the other sleeve around the jacket - wearer's neck.\",He,gold,criminals drop the chases and follow up to the security guard.,catches a third boy's leg in the sleeve.,escapes his gaze past someone who gawks below.,drives a meter police car across the crowded street and past fences - filled fences.\n12710,lsmdc3042_KARATE_KID-19102,15420,\"Shifting his eyes, he sees someone and his friends staring at them. Someone\",\"Shifting his eyes, he sees someone and his friends staring at them.\",Someone,gold,strides back to their seat and pulls on two cameras.,\"holds her hand, knowingly.\",\"follows his gaze to the boy, who gives a menacing look.\",gently shakes the snow from a nearby truck.\n12711,lsmdc3042_KARATE_KID-19102,15422,\"Later, a student - filled bus passes the gate bordering Tiananmen Square and the Forbidden City. A framed image of Mao Zedong\",\"Later, a student - filled bus passes the gate bordering Tiananmen Square and the Forbidden City.\",A framed image of Mao Zedong,gold,hangs above an arched entrance.,tigers is found followed by small children decked out and talking about the performance.,looks out and his sad features addressing his the story.,plays as a sun beside her dying ship lined madly the orange background.\n12712,lsmdc3042_KARATE_KID-19102,15457,Someone drives his fist into someone's stomach. Someone,Someone drives his fist into someone's stomach.,Someone,gold,applies gauze to her hairline.,wraps his arms around someone's neck and pulls him down and someone stares with interest.,\"releases the rope, while someone pins his back down and runs toward the plane.\",grits his teeth and squeezes his eyes shut.\n12713,lsmdc3042_KARATE_KID-19102,15541,He swings it around his body. Someone,He swings it around his body.,Someone,gold,\"spins their flippers, reacting.\",obeys each repeated command.,lies on his back in a flash of light.,has a white - bearded man behind him.\n12714,lsmdc3042_KARATE_KID-19102,15440,He and his friends give chase. Someone,He and his friends give chase.,Someone,gold,\"sprints down the street, passing vendors with their carts.\",.,jogs down a smaller street.,plays with his heavier dog.\n12715,lsmdc3042_KARATE_KID-19102,15504,\"In unison, his students sit at the platform's perimeter. Someone\",\"In unison, his students sit at the platform's perimeter.\",Someone,gold,tosses an overcoat and leaves away from the burly man.,strides to the center.,shows little tension and passion.,reveal a bulletin board three stories below and walks forward.\n12716,lsmdc3042_KARATE_KID-19102,15508,As the instructor grabs him by the wrist. Someone,As the instructor grabs him by the wrist.,Someone,gold,gives someone a stern smirk and gives a crooked smile.,\"looks at her dumbfounded, then at his phone.\",tensely grips someone's arm.,recovers from the shock and tall reeds.\n12717,lsmdc3042_KARATE_KID-19102,15533,Someone snatches his jacket back off the bar and faces someone skeptically. The irritated boy,Someone snatches his jacket back off the bar and faces someone skeptically.,The irritated boy,gold,\"closes his hand and strides around, pinning a grin being president.\",swings the jacket behind his back.,\"opens his amazed eyes, then our focus shifts to the floor.\",clinks his glass on himself.\n12718,lsmdc3042_KARATE_KID-19102,15470,\"He lifts one boy by his britches. In a move like ballroom dancing, someone\",He lifts one boy by his britches.,\"In a move like ballroom dancing, someone\",gold,wears a white outfit during the summer.,gazes across the ladies seat over the podium.,peeks onto her shoulder and studies her closely.,spins the controlled boy out.\n12719,lsmdc3042_KARATE_KID-19102,15531,Someone shoves a peg into the freshly drilled hole in the utility pole. Someone,Someone shoves a peg into the freshly drilled hole in the utility pole.,Someone,gold,\"shows the first real spot, then dives back to the water.\",rams his fist against the nearest railing.,does the research process.,hangs his jacket on the peg.\n12720,lsmdc3042_KARATE_KID-19102,15469,\"Someone and the others rush someone, who deflects their blows. He\",\"Someone and the others rush someone, who deflects their blows.\",He,gold,bashes him out against a canvas - obscured deck and someone.,\"sends two slamming into each other, chest to chest.\",looks into the wide - eyed mirror.,\"presses his fists, a bright light spreads across his face.\"\n12721,lsmdc3042_KARATE_KID-19102,15437,He hurries behind another parked car. Someone,He hurries behind another parked car.,Someone,gold,squats behind the car and waits.,stops at the sidewalk where several zombies follow.,walks off the office stretching.,walks on the porch.\n12722,lsmdc3042_KARATE_KID-19102,15499,The winning student approaches his instructor. The square - jawed man,The winning student approaches his instructor.,The square - jawed man,gold,sets up his hand on the elbows and slams him down for a hug.,winces uncomfortably then nods.,eyeballs someone.,rises from his bench and faces the boy.\n12723,lsmdc3042_KARATE_KID-19102,15532,Someone hangs his jacket on the peg. Someone,Someone hangs his jacket on the peg.,Someone,gold,checks his alarm.,takes a drag on his cigarette and tucks it in a pocket.,writes and faces his mother.,snatches his jacket back off the bar and faces someone skeptically.\n12724,lsmdc3042_KARATE_KID-19102,15492,\"The seasoned martial artist thoughtfully watches him go. Shifting his sad eyes, someone\",The seasoned martial artist thoughtfully watches him go.,\"Shifting his sad eyes, someone\",gold,gets to his feet then peeks out.,presses his lips together.,points the phone and smiles.,shifts his sober gaze.\n12725,lsmdc3042_KARATE_KID-19102,15498,\"He crouches over his fallen opponent, draws back his fist, and hesitates. The boy\",\"He crouches over his fallen opponent, draws back his fist, and hesitates.\",The boy,gold,follows him and runs to his side.,brutally punches his opponent in the face.,performs another martial - action.,shakes his head gently and gets to his feet.\n12726,lsmdc3042_KARATE_KID-19102,15441,\"Someone sprints down the street, passing vendors with their carts. Someone and his friends\",\"Someone sprints down the street, passing vendors with their carts.\",Someone and his friends,gold,rise from skateboard bowls.,approach a building with curly hair and shiny legs.,follow him across a road and into an alleyway.,\"arrive, toward a building.\"\n12727,lsmdc3042_KARATE_KID-19102,15453,\"Someone reaches the outer gate of his apartment complex, and races through its wide green doors. He\",\"Someone reaches the outer gate of his apartment complex, and races through its wide green doors.\",He,gold,smiles at his nametag.,runs into the cabin.,\"takes off spinning his chain, knocking the metal gates to the deck.\",halts as he notices the closed inner gate.\n12728,lsmdc3042_KARATE_KID-19102,15513,Someone gives an uneasy look. Someone,Someone gives an uneasy look.,Someone,gold,stands and beams brightly.,reads an unmoving billboard.,stops walking and stares.,\"smiles, licks his lips, and looks at his phone.\"\n12729,lsmdc3042_KARATE_KID-19102,15516,He passes his mother as she collects their mail in the lobby. Someone,He passes his mother as she collects their mail in the lobby.,Someone,gold,has a glass and white wine with someone.,goes out his rain - spill - school town building.,turns the street and faces someone.,smiles as she watches her son leave.\n12730,lsmdc3042_KARATE_KID-19102,15536,\"Arching his brow indulgently, he hangs the jacket on the makeshift coat rack. Someone\",\"Arching his brow indulgently, he hangs the jacket on the makeshift coat rack.\",Someone,gold,drives by the mercedes.,puts his down to the sink.,opens the door for him.,drops it on to the tile.\n12731,lsmdc3042_KARATE_KID-19102,15423,As someone leans forward menacingly. Mrs. Po,As someone leans forward menacingly.,Mrs. Po,gold,glances back from the front of the bus.,pushes someone into the bag.,glances over his seat then takes her phone off.,catches one of her eyes and grooves.\n12732,lsmdc3042_KARATE_KID-19102,15433,He turns as a motorcycle cab trundles closer on a parallel course. Someone,He turns as a motorcycle cab trundles closer on a parallel course.,Someone,gold,is moved by the passing force past enough earlier.,aims at the chopper a silver sedan - side window of a bowling road club.,turns to look at it with all her strength.,walks at a crouch alongside it.\n12733,lsmdc3042_KARATE_KID-19102,15473,Someone lifts his head and watches the fight. Someone,Someone lifts his head and watches the fight.,Someone,gold,angrily slaps one of the babies.,follows over to someone.,\"starts to go up the stairs, but instead it pulls away.\",grabs the arms of a boy in a warm - up jacket.\n12734,lsmdc3042_KARATE_KID-19102,15428,The group files off in the same direction that someone takes when leaving school. Someone nervously,The group files off in the same direction that someone takes when leaving school.,Someone nervously,gold,\"rushes back into his gold jacket, and sketches as he reads.\",looks aside and jerks his head at the keeper.,lags behind on purpose.,\"follows, to prevent a gangster at revolving.\"\n12735,lsmdc3042_KARATE_KID-19102,15445,As someone touches back down to the street. Someone,As someone touches back down to the street.,Someone,gold,\"trots to a window at someone, who sits again, astride the horse.\",hangs up and hurls himself at the tide of snatchers.,\"squirts him through the glass, knocking her wand.\",defensively tips over a stack of bottle - filled crates.\n12736,lsmdc3042_KARATE_KID-19102,15438,Someone squats behind the car and waits. His eyes,Someone squats behind the car and waits.,His eyes,gold,shift to a grimy steam vent on the side of a building.,fix on a sleek view mirror as someone drives.,lead the club toward him as he heads down the hill towards a affluent public neighborhood.,\"follow someone as someone, still standing on the porch, nearly jumps into the ocean.\"\n12737,lsmdc3042_KARATE_KID-19102,15548,\"Someone stares at the hanging jacket and shifts her wide - eyed gaze. Now, in the courtyard, someone\",Someone stares at the hanging jacket and shifts her wide - eyed gaze.,\"Now, in the courtyard, someone\",gold,\"approaches two amphitheater, which include several interesting bottles.\",holds an umbrella over someone as the boy takes off his jacket.,\"walks someone, at the church, and watches men on the bench.\",tosses a leather document at the television and makes a call.\n12738,lsmdc3042_KARATE_KID-19102,15491,He nods and reaches for the door. Someone,He nods and reaches for the door.,Someone,gold,checks his barely adopts fingers then guides someone's face sideways.,look tight toward the windows.,looks up as someone heads out.,\"slips it back into someone's pocket, and weeps.\"\n12739,lsmdc3042_KARATE_KID-19102,15517,\"Someone smiles as she watches her son leave. Now, a man rides a bicycle down the street, the back of his bike\",Someone smiles as she watches her son leave.,\"Now, a man rides a bicycle down the street, the back of his bike\",gold,slumped at the back in the canvas.,piled high with plastic containers.,\"is full, his front steps apart.\",to a cab which passes in front of her.\n12740,lsmdc3042_KARATE_KID-19102,15494,\"Now, someone and someone pass through the gates to the kung fu school. Their instructor\",\"Now, someone and someone pass through the gates to the kung fu school.\",Their instructor,gold,\"approaches someone, who's seated at a table.\",sits on a bench and watches.,hits furiously and walk silently to the large lobby.,hands him the address.\n12741,lsmdc3042_KARATE_KID-19102,15477,His chest heaves as he turns from the group. He,His chest heaves as he turns from the group.,He,gold,secures an injured brush at the brother.,manages to hang them from the ground as he watches the gunfight outside.,\"sweeps his arms around her neck, they kiss and kiss.\",crouches and gently grabs someone's arm.\n12742,lsmdc3042_KARATE_KID-19102,15417,\"She spots someone staring at the door and heads over. With a smile, she\",She spots someone staring at the door and heads over.,\"With a smile, she\",gold,grabs a bald built marine.,beats up a clear spotlight.,stands beside him and joins him in craning her head back to take in the doors' full height.,reaches under the dresser and wets the keys.\n12743,lsmdc3042_KARATE_KID-19102,15544,\"Later, he returns home. He\",\"Later, he returns home.\",He,gold,passes open refrigerator and takes a seat at several tables.,returns to someone's house.,sets down his skateboard.,trips and steps out of view with his arms folded.\n12744,lsmdc3042_KARATE_KID-19102,15543,\"Later, someone sits on his patio, fanning himself. He\",\"Later, someone sits on his patio, fanning himself.\",He,gold,flirts in a rock.,spots someone in his hospital bed.,steps out of the fusion.,watches coolly as someone hangs his jacket on the peg.\n12745,lsmdc3042_KARATE_KID-19102,15509,Master someone cocks his head. He,Master someone cocks his head.,He,gold,arrives at the goateed tiger.,shimmies for the seats.,stares at the zookeeper.,turns to his students.\n12746,lsmdc3042_KARATE_KID-19102,15539,Someone drapes the jacket over the peg. He,Someone drapes the jacket over the peg.,He,gold,shines his flashlight around the water.,lowers himself down on his lap.,takes it back off.,\"wakes, his brow shining with tears.\"\n12747,lsmdc3042_KARATE_KID-19102,15471,\"In a move like ballroom dancing, someone spins the controlled boy out. Now, someone\",\"In a move like ballroom dancing, someone spins the controlled boy out.\",\"Now, someone\",gold,\"spins herself onto the platform and looms at the air, her mouth rolled up above him.\",stands on the balcony in her bedroom and adjusts a huge stone shaft on the panel.,creeps up empty flight of stairs and strides across a busy foyer on his porch.,\"grips the boy's wrists in one hand, and draws back his fist to punch.\"\n12748,lsmdc3042_KARATE_KID-19102,15415,\"As someone trudges through the gates, the only student not wearing his uniform. Someone\",\"As someone trudges through the gates, the only student not wearing his uniform.\",Someone,gold,gazes at the cross.,\"goes toward the next room, standing in her rumpled white panties and her face bathed in blush.\",looks around at someone who is still observing the remaining fire.,pauses and turns around.\n12749,lsmdc3042_KARATE_KID-19102,15465,\"Someone waits in a fighting stance, his wrists crossed in an x shape. He\",\"Someone waits in a fighting stance, his wrists crossed in an x shape.\",He,gold,reveals his shotgun's weapon on the top of a tripod.,stops as someone says something possibly about.,drags the creature across to his old body and crawls onto it.,blocks a strike and holds a tall boy against his body.\n12750,lsmdc3042_KARATE_KID-19102,15475,He catches a third boy's leg in the sleeve. He,He catches a third boy's leg in the sleeve.,He,gold,secures himself on his hands someone shade.,\"struggles to catch the noise, then sprints around the country, smashing through the snow and shooting at his side.\",hits the leaves with a big toy mower.,pushes the tangled boys to the ground.\n12751,lsmdc3042_KARATE_KID-19102,15549,\"Now, in the courtyard, someone holds an umbrella over someone as the boy takes off his jacket. He\",\"Now, in the courtyard, someone holds an umbrella over someone as the boy takes off his jacket.\",He,gold,hurries onto his building and out onto the street when his kids are dragged to a street and pulls him down.,\"yanks him along, ripping back the thick of fabric.\",glances at his mentor's blank face.,gives a big wave and storms out of the water.\n12752,lsmdc3042_KARATE_KID-19102,15506,The instructor leaps off the platform and catches up to them. He,The instructor leaps off the platform and catches up to them.,He,gold,walks toward the congregation and moves away.,performs a cocktail while dancing before he returns to the judges.,pauses at the bottom of the stairs after someone.,holds his arm across mr.\n12753,lsmdc3042_KARATE_KID-19102,15518,\"Now, a man rides a bicycle down the street, the back of his bike piled high with plastic containers. On his skateboard, someone\",\"Now, a man rides a bicycle down the street, the back of his bike piled high with plastic containers.\",\"On his skateboard, someone\",gold,sits down on a narrow railway line.,aims his sword at him and looks on with his rifle.,holds on to the container bouquet and catches a ride.,rides a scooter again to a tightly lined street.\n12754,lsmdc3042_KARATE_KID-19102,15452,\"Following someone, the group races behind residential buildings, where drying clothes hang on lines. Someone\",\"Following someone, the group races behind residential buildings, where drying clothes hang on lines.\",Someone,gold,\"reaches the outer gate of his apartment complex, and races through its wide green doors.\",\"have been convulsing, including people with cash directly in front of them.\",across from them.,eyes the magazine.\n12755,lsmdc3042_KARATE_KID-19102,15545,He sets down his skateboard. He,He sets down his skateboard.,He,gold,moves from the rooftop in his rear - view mirror.,stops his way to a terrace bridge on a stage.,hangs up his jacket.,begins to play and dry his clothes.\n12756,lsmdc3042_KARATE_KID-19102,15464,Two boys' fists fly toward mr. Someone,Two boys' fists fly toward mr.,Someone,gold,\"waits in a fighting stance, his wrists crossed in an x shape.\",is overwhelmed by someone's someone.,remembers the man's throw in someone 'throw.,waits in the tracks.\n12757,lsmdc3042_KARATE_KID-19102,15534,\"The irritated boy swings the jacket behind his back. Scowling, someone\",The irritated boy swings the jacket behind his back.,\"Scowling, someone\",gold,slips down the paper.,obediently pulls the jacket off his shoulders and arms.,turns and calls outside.,lunges toward his dad.\n12758,lsmdc3042_KARATE_KID-19102,15434,He nervously peers through a window as he passes the rowdy group undetected. He,He nervously peers through a window as he passes the rowdy group undetected.,He,gold,runs to someone and prepares his rifle.,scurries from the cab to a parked car and crouches behind it.,presses a button on the curb behind him and kisses his lips.,reaches a window and shuts the door.\n12759,lsmdc3042_KARATE_KID-19102,15511,The students look at their instructor. Someone,The students look at their instructor.,Someone,gold,opens the door as they hug.,watches a map of the tunnel map.,eyes a wide - eyed smirk.,starts for the door.\n12760,lsmdc3042_KARATE_KID-19102,15524,\"Someone strides through someone's home, toting his skateboard. Dirty dishes\",\"Someone strides through someone's home, toting his skateboard.\",Dirty dishes,gold,are stopped on the mantelpiece.,are sitting as he clocks their cereal.,\", someone opens the package.\",clutter the cramped kitchen.\n12761,lsmdc3042_KARATE_KID-19102,15535,\"Scowling, someone obediently pulls the jacket off his shoulders and arms. Arching his brow indulgently, he\",\"Scowling, someone obediently pulls the jacket off his shoulders and arms.\",\"Arching his brow indulgently, he\",gold,hangs the jacket on the makeshift coat rack.,looks up at his robotic shoulders and examines the basic strip of vision momentarily.,glances into the shoulder at the security guard.,runs his lips to his body and cocks his head.\n12762,lsmdc3042_KARATE_KID-19102,15449,\"As someone's crew struggle to open the doors, someone steps back and waits. Someone\",\"As someone's crew struggle to open the doors, someone steps back and waits.\",Someone,gold,leaps over the wall.,kicks himself at a cell camera.,radiate through the back window.,gazes at the piece of realization in his stunned face.\n12763,lsmdc3042_KARATE_KID-19102,15425,\"Now, someone and his friends exit the bus. As the uniformed boys\",\"Now, someone and his friends exit the bus.\",As the uniformed boys,gold,\"flood their bicycles, a hands stop beside a shambling sign.\",get into the car.,head down the sidewalk outside the school gate.,\"huddle through the onboard, someone swoops down from a steep freeway.\"\n12764,lsmdc3042_KARATE_KID-19102,15503,\"The instructor stares down at them. In unison, his students\",The instructor stares down at them.,\"In unison, his students\",gold,sit at the platform's perimeter.,rise and hug each other again.,are ringing and occasionally met around as the thud.,follow someone out of the front door.\n12765,lsmdc3042_KARATE_KID-19102,15482,\"Grabbing another, he briefly holds the flame inside it. Someone\",\"Grabbing another, he briefly holds the flame inside it.\",Someone,gold,watches as someone drops the flaming cotton ball into a bowl.,puts it into his pocket.,knocks it from the coffee table.,releases his grip on the troll's face.\n12766,lsmdc3042_KARATE_KID-19102,15446,Someone defensively tips over a stack of bottle - filled crates. Someone,Someone defensively tips over a stack of bottle - filled crates.,Someone,gold,\"races through a set of double doors in a six - foot - high wall, then pulls them shut.\",\"holds his script to someone, and she is still unmoving.\",fires his body and someone springs the guns in the air and flips several fires.,pins them over the cyclone system.\n12767,lsmdc3042_KARATE_KID-19102,15460,\"Someone lunges with a punch, but a hand grabs his wrist. Someone\",\"Someone lunges with a punch, but a hand grabs his wrist.\",Someone,gold,touches down his own!,bends someone's hand down and in toward the wrist.,\"moves to the edge, slams back against the cage wall, and picks up the hefty magnetic fish from the figure.\",\"grabs someone's hand, pulls him by his throat, lies in a cot.\"\n12768,lsmdc3042_KARATE_KID-19102,15527,\"Sneering, he hurries into the rear courtyard. Someone\",\"Sneering, he hurries into the rear courtyard.\",Someone,gold,peers out the partially passenger door.,takes off his jacket and drops it in the doorway.,\"sits asleep on his bed, staring at the sharp, burly leather skates.\",leans in the bathroom door.\n12769,lsmdc3042_KARATE_KID-19102,15435,\"Across the street, a vendor shoos the unruly boys away and they move on. Now, someone\",\"Across the street, a vendor shoos the unruly boys away and they move on.\",\"Now, someone\",gold,creeps beside the car.,walks in the driver's side of the grocery store as he loads the suitcase.,stands in front of a computer in photo and watches the smoking cartoon.,barges into his composing.\n12770,lsmdc3042_KARATE_KID-19102,15490,Someone stares disappointedly as the man ignores him. He,Someone stares disappointedly as the man ignores him.,He,gold,\"grins at his daughter, who turns his gaze from someone, who hugs someone.\",falls to the ground and looks horrified.,glances towards a mirror and nods.,nods and reaches for the door.\n12771,lsmdc3042_KARATE_KID-19102,15505,\"Eyeing them, someone limbers up his strained wrist. The instructor\",\"Eyeing them, someone limbers up his strained wrist.\",The instructor,gold,sets the bar down and pretends to someone.,keeps his downcast gaze back.,leaps off the platform and catches up to them.,climbs over to his bag in the supports and looks to glare at the auburn - haired known.\n12772,lsmdc3042_KARATE_KID-19102,15522,\"Checking a slip of paper, he heads through the gate's double doors. An aerial view\",\"Checking a slip of paper, he heads through the gate's double doors.\",An aerial view,gold,shows the general coming into play.,shows someone tearing up a gift leaving only a smoldering piece of furniture.,shows someone standing at a utility pole in a courtyard behind his house.,shows a city of an angle to downtown los angeles.\n12773,lsmdc3042_KARATE_KID-19102,15414,Students flood through to a vast palatial courtyard. As someone,Students flood through to a vast palatial courtyard.,As someone,gold,\"glances toward the campfire, four intervention officers approach someone.\",\"struggles on the door, a corpse smacks the stone ground and support manila of it.\",\"trudges through the gates, the only student not wearing his uniform.\",climbs fog tanks on the road and their skiff.\n12774,lsmdc3042_KARATE_KID-19102,15444,Half the boys acrobatically navigate the roof. As someone,Half the boys acrobatically navigate the roof.,As someone,gold,shuffles over the town.,maneuvers off the lawn.,moves to the side of the road.,touches back down to the street.\n12775,anetv_VToS7Ma-V4g,2941,The woman is positioned to take off on the race track and the man moves out of the way for her to go. Then she,The woman is positioned to take off on the race track and the man moves out of the way for her to go.,Then she,gold,speeds off and does the triple jump into the sand making it all the way to the end of the 16 inch ruler.,goes left with the athlete running and then runs and begins lifting them and setting her up on the ground.,\"grabs a young female's mask, turns her back in the air with her foot free and smiles.\",places the tire on the bike and begins taking the bike in half.\n12776,anetv_VToS7Ma-V4g,2942,Then she speeds off and does the triple jump into the sand making it all the way to the end of the 16 inch ruler. Next she,Then she speeds off and does the triple jump into the sand making it all the way to the end of the 16 inch ruler.,Next she,gold,moves performs same cartwheels in the sand.,is shown standing off the track smiling with her arms raised in the air filled with joy.,knows she is beside her.,completes the benefits she has completed and her highlights are shown again leaving the interview in the middle of the field.\n12777,anetv_Lh50gF5l0dw,9564,He is going in a circular motion on a red circle painted on the ground. He,He is going in a circular motion on a red circle painted on the ground.,He,gold,shows two layers on the ground.,make a light turn shaped like a shape.,throws the shot put into the air.,moves faster and has to throw it up by himself.\n12778,anetv_Lh50gF5l0dw,9565,He throws the shot put into the air. Another man,He throws the shot put into the air.,Another man,gold,\"is swinging in circular motion, ready to throw the shot put.\",focuses on his skateboard.,wearing a black shirt and a white t - shirt is drinking from a jug.,walks up to stage.\n12779,anetv_Lh50gF5l0dw,9563,A man wearing a blue shirt is throwing the shot put. He,A man wearing a blue shirt is throwing the shot put.,He,gold,throws somersaults off the ground.,goes to the kitchen and takes a cola from the bowling bag.,is going in a circular motion on a red circle painted on the ground.,hits a tennis ball with a lacrosse stick.\n12780,anetv_7YOV0kZQIAo,18230,A man plays a saxophone while facing the camera. The man,A man plays a saxophone while facing the camera.,The man,gold,stops for a while and then demonstrates how to play the accordion.,talks to the camera and continues to speak to the camera again.,finishes playing and smiles at his instrument.,returns to the chair and moves on back toward the chair.\n12781,anetv_c4GQ3WTOeAA,10813,The camera pans all around her while she opens the present and smiles to the camera. She,The camera pans all around her while she opens the present and smiles to the camera.,She,gold,continues to applaud as she looks to the music.,continues to try to open the box while looking and smiling.,talks with the camera and she smiles to the camera and smiles.,begins putting it into her face as she continues painting.\n12782,anetv_c4GQ3WTOeAA,10812,A small child is seen sitting on a coach opening a present. The camera,A small child is seen sitting on a coach opening a present.,The camera,gold,focuses on the camera playing a game on the beach.,pans around the monkey bars stretching out over hills.,pans all around her while she opens the present and smiles to the camera.,pans back to the girl painting together with flowers and working out.\n12783,anetv_TM4-Miytfv4,10944,The lifts his body over a heighten hurdle. The guy,The lifts his body over a heighten hurdle.,The guy,gold,\"lands on his back, rises, begins to leave the padded platform.\",does a handstand on the stage.,lets go of it and we see the guy handles with the weight.,shows the skis to a bar.\n12784,anetv_TM4-Miytfv4,13533,A young man runs towards a pole in the air and hurls himself over it in a high jump. The man,A young man runs towards a pole in the air and hurls himself over it in a high jump.,The man,gold,is then seen climbing a donut and moving his legs to the side.,jumps and jumps into the sand.,finishes his routine and punches the coach as he stands and looks away from people.,lands on the other side of the bar onto a gym mat where he rolls and then gets up and walks.\n12785,anetv_TM4-Miytfv4,13532,\"A young man performs a high jump which is played in slow motion as the boy runs, jumps, and lands on a gym mat inside of a gym. A young man\",\"A young man performs a high jump which is played in slow motion as the boy runs, jumps, and lands on a gym mat inside of a gym.\",A young man,gold,gets up in a jump and moves his legs around the back of the horse then swinging to the next platform.,runs towards a pole in the air and hurls himself over it in a high jump.,\"does the same routine, one female punching the first man and then he begins to do it again successfully.\",is standing back practicing break dancing in the middle of a crowd.\n12786,anetv_TM4-Miytfv4,10943,A guy runs indoors in a gym. The,A guy runs indoors in a gym.,The,gold,puts the pinata in the top ground.,talks to the camera.,gives another shoulder down the crowd.,lifts his body over a heighten hurdle.\n12787,anetv_dDN37ufNu84,1010,A woman in a blue shirt is standing in front of a table. She,A woman in a blue shirt is standing in front of a table.,She,gold,does a zucchini and back his foot.,brings a bottle to her mouth and shows a bottle of spray.,is fighting an arrow as she continues to stand.,picks up a ping pong and starts hitting it with a paddle.\n12788,anetv_dDN37ufNu84,1920,\"She explains that she is going to show how to put a spin on the ball, and a yellow ball is shown hitting the table in a spin. She then is shown holding two balls and the paddle, she hits one and and\",\"She explains that she is going to show how to put a spin on the ball, and a yellow ball is shown hitting the table in a spin.\",\"She then is shown holding two balls and the paddle, she hits one and and\",gold,is jumping in a circle to begin to complete the pond.,then gets another from the bin on the right.,diagon girl is at last pop go and throw it.,starts to put it onto her body but then she sets it down and yells to the other.\n12789,anetv_dDN37ufNu84,1921,\"She then is shown holding two balls and the paddle, she hits one and and then gets another from the bin on the right. Then she\",\"She then is shown holding two balls and the paddle, she hits one and and then gets another from the bin on the right.\",Then she,gold,waves the ball on the board while still looking around and holds up an empty cup of water.,picks a black rubber cup from her cigarette and puts it in the case.,proceeds to demonstrate over and over how to hit the ball correctly to get the spin on it.,wrings her hands as she sits up.\n12790,anetv_dDN37ufNu84,1011,She picks up a ping pong and starts hitting it with a paddle. She,She picks up a ping pong and starts hitting it with a paddle.,She,gold,turns to face the camera.,watches the woman being nice.,continues hitting ping pong balls across the table.,\"slides into it, then continues to stand along the length of the net.\"\n12791,anetv_ZOeQh2-ci3M,504,A woman plays with the dogs. A person,A woman plays with the dogs.,A person,gold,tie up a calf.,washes their hands in a sink using foam soap.,hits the girls head on the table.,picks up a box of mice.\n12792,anetv_ZOeQh2-ci3M,506,The person uses a paper towel to dry off his hands. A person,The person uses a paper towel to dry off his hands.,A person,gold,explains how big green his hair is sprayed.,wipes the sink with a razor.,washes their hands in a stainless steel sink.,throws a piece of material as big as the red team car.\n12793,anetv_ZOeQh2-ci3M,502,The man leaves the bathroom without washing his hands. The man,The man leaves the bathroom without washing his hands.,The man,gold,grabs a shoe by wiping the cloth on a rag.,eats from food dishes using his hands.,continues to hit the water out of the sink.,reaches a brick that stands up to clean their shoes.\n12794,anetv_ZOeQh2-ci3M,501,A person uses the toilet in a stall. The man,A person uses the toilet in a stall.,The man,gold,rinses the toothbrush in his mouth thoroughly.,leaves the bathroom without washing his hands.,uses the brush to brush the dog's teeth.,turns and throws the man to the side of the tub.\n12795,anetv_ZOeQh2-ci3M,505,A person washes their hands in a sink using foam soap. The person,A person washes their hands in a sink using foam soap.,The person,gold,puts the rag in the sink and puts the shower on.,makes the faucet wash over the weakly sink that then straightens the sink to rinse with the towel.,uses a paper towel to dry off his hands.,scrubs some surfaces with soap and mixes them with the foam condensation.\n12796,lsmdc3014_CAPTAIN_AMERICA-5912,9430,\"Someone slowly opens a door and peers into the plane's spacious cockpit where a high - backed chair sits in front of a bank of windows. Passing the mechanism containing the glowing blue energy source, he\",Someone slowly opens a door and peers into the plane's spacious cockpit where a high - backed chair sits in front of a bank of windows.,\"Passing the mechanism containing the glowing blue energy source, he\",gold,connects a girder containing monitor panels at the top.,sets the glass under the door.,fishes a neuralyzer from the counter.,creeps toward the back of the chair.\n12797,lsmdc3014_CAPTAIN_AMERICA-5912,9428,He speeds toward the open bay door and crashes into the plane's hold. Someone,He speeds toward the open bay door and crashes into the plane's hold.,Someone,gold,\"looks behind him, as it was raining.\",opens the hatch and climbs out.,notes a pinched look.,turns and hunches tight and a smile.\n12798,lsmdc3014_CAPTAIN_AMERICA-5912,9423,\"Pulling back on the joystick, the pilot flies straight up. The trooper\",\"Pulling back on the joystick, the pilot flies straight up.\",The trooper,gold,\"dives it through, shattering a window.\",shifts his weary gaze.,\"follows the probe, shutting two passengers on a stretcher.\",falls into the bomb's rear propeller.\n12799,lsmdc3014_CAPTAIN_AMERICA-5912,9450,\"Someone picks up his shield and watches as the cube burns a hole through the deck, and plummets out of sight. Someone\",\"Someone picks up his shield and watches as the cube burns a hole through the deck, and plummets out of sight.\",Someone,gold,wades down a deck.,\"finger bodies fluttering scroll after the sphere eventually switches out, this time hand but the frenchman is stuck.\",takes of his helmet and sits in the pilot's chair.,\"quietly enters the steward, as he addresses that agent in only.\"\n12800,lsmdc3014_CAPTAIN_AMERICA-5912,9438,Someone pins down someone but he head - butts someone off of him. Someone,Someone pins down someone but he head - butts someone off of him.,Someone,gold,hurls someone into the controls causing the plane to head into a steep dive.,steps up to him and inhale deeply into his throat.,\"throws himself, then marches onto the bridge which is like a score of a white blue van.\",watches the birds storm around the car as the wind whipping poses.\n12801,lsmdc3014_CAPTAIN_AMERICA-5912,9424,Someone forces open the cockpit hatch and pulls the eject handle. Someone,Someone forces open the cockpit hatch and pulls the eject handle.,Someone,gold,closes the map again and peers over the island.,\"floats someone, futilely at the one that is still between them.\",'s lens pops away and dashes through the wreckage.,hops into the now empty cockpit and closes the canopy.\n12802,lsmdc3014_CAPTAIN_AMERICA-5912,9439,\"Now in free fall, the two men continue to fight as they float weightlessly. Someone\",\"Now in free fall, the two men continue to fight as they float weightlessly.\",Someone,gold,are all swirling around their bodies.,zombies gaze intently at the missing body of the dark green pool.,joins a man as he paddles overhead.,leaps and pins someone to the ceiling.\n12803,lsmdc3014_CAPTAIN_AMERICA-5912,9434,\"Someone grabs his leg and the two men grapple. Someone reaches for the blaster, but someone\",Someone grabs his leg and the two men grapple.,\"Someone reaches for the blaster, but someone\",gold,sticks his fist around the table.,throws a box and knocks it away.,takes the gun out of someone.,removes it from someone 'pocket.\n12804,lsmdc3014_CAPTAIN_AMERICA-5912,9427,\"Someone dodges the blasts, then flies in behind the bomber. He\",\"Someone dodges the blasts, then flies in behind the bomber.\",He,gold,slumps onto the tower upright.,speeds toward the open bay door and crashes into the plane's hold.,\"rolls around to a small round window, letting it drop as he drops to the ground.\",fires with a knife and prepares to throw a shot at the goalie.\n12805,lsmdc3014_CAPTAIN_AMERICA-5912,9451,\"A radar display reads, ziel, New York City. Grabbing the controls, someone\",\"A radar display reads, ziel, New York City.\",\"Grabbing the controls, someone\",gold,poses anxiously for the crowd.,hurries behind several stars.,reloads her now effortless throw.,steers out of the vast expanse of clouds.\n12806,lsmdc3014_CAPTAIN_AMERICA-5912,9445,\"Someone flings his shield, striking someone and smashing him into the energy mechanism which begins to spark and flicker with blue light. Someone\",\"Someone flings his shield, striking someone and smashing him into the energy mechanism which begins to spark and flicker with blue light.\",Someone,gold,\"is lying of the pavement, peels its wet fabric out from above one giant's hand, and grabs him.\",picks up the cube - shaped energy source.,leaps out from another pipe above the head as slowly directs the towering on the wall between the wood beams as someone nestles behind.,spins around and swims away.\n12807,lsmdc3014_CAPTAIN_AMERICA-5912,9443,Someone turns and pulls out a pistol blaster as he scans the room. Someone,Someone turns and pulls out a pistol blaster as he scans the room.,Someone,gold,kneels on someone 'shoulders.,\"looks at someone's box, as he thinks to himself.\",\"inserts his sealed lighter into the receiver, picks up a gun and points it at someone.\",dives behind metal struts as someone fires at him.\n12808,lsmdc3014_CAPTAIN_AMERICA-5912,9449,The cube drops onto the floor. Someone,The cube drops onto the floor.,Someone,gold,touches the outline of a mattress - wise up on it.,glares and twists in the doorway.,talks on the site.,\"picks up his shield and watches as the cube burns a hole through the deck, and plummets out of sight.\"\n12809,lsmdc3014_CAPTAIN_AMERICA-5912,9441,\"As the plane dives through a layer of clouds, someone pulls himself to the controls and re - engages the autopilot. As the plane levels out again, someone\",\"As the plane dives through a layer of clouds, someone pulls himself to the controls and re - engages the autopilot.\",\"As the plane levels out again, someone\",gold,holds the man in the windscreen shaker.,removes his back.,appears from the below's glass window.,slams onto the deck.\n12810,lsmdc3014_CAPTAIN_AMERICA-5912,9448,The energy beam shoots out of the top of the plane and into the sky. The cube,The energy beam shoots out of the top of the plane and into the sky.,The cube,gold,drops at the same time and the completed.,moon glows on the blue horizon.,drops onto the floor.,pops out upside down as the drone blows through the water.\n12811,lsmdc3014_CAPTAIN_AMERICA-5912,9426,Someone watches someone on a radar screen and fires bolts of blue energy from the plane's rotary cannon. Someone,Someone watches someone on a radar screen and fires bolts of blue energy from the plane's rotary cannon.,Someone,gold,\"dodges the blasts, then flies in behind the bomber.\",\"studies someone steadily amid the chopper's hood, the chopper scare and flying.\",climbs up a wall with the submarine and its like driver's.,returns to the commuter flat with her night vision goggles.\n12812,lsmdc3014_CAPTAIN_AMERICA-5912,9422,The flying bomb's wings unfold and a rear propeller spins. The pilot,The flying bomb's wings unfold and a rear propeller spins.,The pilot,gold,looks up as a ship hand walks slowly across the track towards someone.,levitates up a long piece of metal and metal.,\"flicks it free the shards of the tank, then races off, and falls over the seats of the assembled vehicles.\",\"tilts the flying bomb left and right, then dives straight down.\"\n12813,lsmdc3014_CAPTAIN_AMERICA-5912,9429,Someone opens the hatch and climbs out. He,Someone opens the hatch and climbs out.,He,gold,pulls up beside someone as he is knocked down to the floor of the night sky.,picks up his shield and slides it onto his left forearm.,\"and the other locals see on an old building as they continuously lock its doors, then swing off down and scuttles into the dirt\",opens a barred door.\n12814,lsmdc3014_CAPTAIN_AMERICA-5912,9447,Someone stands at the far end of the cockpit as the cube brightens. The energy beam,Someone stands at the far end of the cockpit as the cube brightens.,The energy beam,gold,shoots out of the top of the plane and into the sky.,illuminate a plethora of chopped characters laying on the counter.,lifts his hand weapon and sticks his fingers through the girders.,illuminates the chef's face and someone rolls his eyes.\n12815,lsmdc3014_CAPTAIN_AMERICA-5912,9442,\"As the plane levels out again, someone slams onto the deck. Someone\",\"As the plane levels out again, someone slams onto the deck.\",Someone,gold,turns and pulls out a pistol blaster as he scans the room.,presses his heard and takes another wheel to someone finger.,arrives in a diner beside a frozen lake.,speeds past the suv's rear wheel.\n12816,lsmdc3014_CAPTAIN_AMERICA-5912,9431,\"Passing the mechanism containing the glowing blue energy source, he creeps toward the back of the chair. Someone\",\"Passing the mechanism containing the glowing blue energy source, he creeps toward the back of the chair.\",Someone,gold,\"is serving the cat, while someone stands nearby and examines the butterfly blow.\",\"presses the elevator button, then becomes a fly.\",\"enters his bedroom and jumps in the steps, afterwards a pair of doors open to reveal someone.\",steps out from behind him and fires a blaster.\n12817,lsmdc3014_CAPTAIN_AMERICA-5912,9435,\"Someone reaches for the blaster, but someone throws a box and knocks it away. Someone\",\"Someone reaches for the blaster, but someone throws a box and knocks it away.\",Someone,gold,\"turns, catches up with his wooden ramp advertising some money.\",comes to the back of the monkey bars and lands in the dust at the bottom.,puts someone in a chokehold.,stomps onto a caged convict.\n12818,lsmdc3014_CAPTAIN_AMERICA-5912,9425,Someone hops into the now empty cockpit and closes the canopy. He,Someone hops into the now empty cockpit and closes the canopy.,He,gold,walks along a single covered walkway along the rickety path.,rushes over under the boxcar bus.,slides into the canoe and floats around.,steers the flying bomb clockwise around someone's plane.\n12819,lsmdc3014_CAPTAIN_AMERICA-5912,9444,Someone dives behind metal struts as someone fires at him. Someone,Someone dives behind metal struts as someone fires at him.,Someone,gold,sports his beaten beard and armor.,practice vaulting from a ball as a group of shield troopers wait on someone.,takes the seat with his clothes and hands him a large bottle of drink.,\"flings his shield, striking someone and smashing him into the energy mechanism which begins to spark and flicker with blue light.\"\n12820,lsmdc3014_CAPTAIN_AMERICA-5912,9432,\"Using his shield as cover, someone runs up and punches someone in the stomach causing him to drop his blaster. He slices at his throat with the shield, but someone\",\"Using his shield as cover, someone runs up and punches someone in the stomach causing him to drop his blaster.\",\"He slices at his throat with the shield, but someone\",gold,turns to face someone.,keeps his gun trained on her.,braces him against the neck.,dodges and punches someone to the deck.\n12821,lsmdc3014_CAPTAIN_AMERICA-5912,9440,\"Someone leaps and pins someone to the ceiling. They trade punches, then someone\",Someone leaps and pins someone to the ceiling.,\"They trade punches, then someone\",gold,punches the face off again.,climb out of the car.,trots down the stairs by the arm.,boots someone into the far wall.\n12822,lsmdc3014_CAPTAIN_AMERICA-5912,9433,\"He slices at his throat with the shield, but someone dodges and punches someone to the deck. Someone\",\"He slices at his throat with the shield, but someone dodges and punches someone to the deck.\",Someone,gold,'s bloodied flesh is blurred by the dragon wistfully.,struggles to the controls as someone jumps with him.,kicks him in the stomach.,gazes after the goblin.\n12823,lsmdc3014_CAPTAIN_AMERICA-5912,9437,\"Someone picks up his shield, but someone wrests it away and smacks someone across the face with it. Someone pins down someone but he\",\"Someone picks up his shield, but someone wrests it away and smacks someone across the face with it.\",Someone pins down someone but he,gold,head - butts someone off of him.,keeps his gaze downward and tear.,\"strikes it from the pocket and falls below, his gun coming to the other end.\",can't let it.\n12824,lsmdc3014_CAPTAIN_AMERICA-5912,9452,\"Grabbing the controls, someone steers out of the vast expanse of clouds. Meanwhile, someone, someone, and Col. someone\",\"Grabbing the controls, someone steers out of the vast expanse of clouds.\",\"Meanwhile, someone, someone, and Col. someone\",gold,hands the bottle to someone.,wait in the control tower.,swats him with both feet.,turns back to herself.\n12825,anetv_zLVNSgR4IoA,10058,The man is jumped to the two white poles and stand on his arms. The man in red shirt outside the court,The man is jumped to the two white poles and stand on his arms.,The man in red shirt outside the court,gold,speaks in the man in the crowd.,practicing them with his hands.,and threw the ball.,is watching the athlete as he swing on the pole.\n12826,anetv_zLVNSgR4IoA,10059,The man in red shirt outside the court is watching the athlete as he swing on the pole. The athlete swing and,The man in red shirt outside the court is watching the athlete as he swing on the pole.,The athlete swing and,gold,\"hit all the sticks, when the ball landed on the side of the court.\",throw his hands in the air around him.,then jumped of the pole and swing up and the air and landed on the mat.,fell from the ground.\n12827,lsmdc3008_BAD_TEACHER-3974,7190,She points to some water and a package of Oreo's. She,She points to some water and a package of Oreo's.,She,gold,stomps on the corner panel.,fakes a knowing look.,throws open closing door behind her.,places a peanut butter all on the ingredients.\n12828,lsmdc3025_FLIGHT-12179,15,The girl stares at someone as someone hands him a handkerchief. He,The girl stares at someone as someone hands him a handkerchief.,He,gold,\"grabs the pen, then takes off the glasses and walks out of the hall and sits.\",sees a cop with his heads down.,\"tilts his head back, and presses the cloth to his nostril.\",shakes his head.\n12829,lsmdc3025_FLIGHT-12179,13,Someone and someone follow behind him. They,Someone and someone follow behind him.,They,gold,\"see him move away, but someone lifts him with metal hand.\",shoot into the sky and the momentum knocks over the cover of the tower.,enter an elevator with a woman and a little girl.,\"grabs, and the crowd is.\"\n12830,lsmdc3025_FLIGHT-12179,12,Someone puts on his shades. Someone,Someone puts on his shades.,Someone,gold,stares down at the screen.,glares over a window.,strides out the room wearing sunglasses.,knits his brow nervously.\n12831,lsmdc3025_FLIGHT-12179,16,\"He tilts his head back, and presses the cloth to his nostril. He\",\"He tilts his head back, and presses the cloth to his nostril.\",He,gold,swallows the piercing.,\"finishes the walk screen then stares at someone, who shakes her head then follows her gaze.\",\"removes his glasses, and looks at his reflection on the elevator ceiling.\",\"leaning back in his chair, someone shifts his gaze to the older man and puts on his gray t - shirt.\"\n12832,lsmdc3025_FLIGHT-12179,11,\"Someone sucks on the cigarette, and hands it to someone. Someone\",\"Someone sucks on the cigarette, and hands it to someone.\",Someone,gold,looks around with a severed ax above one shoulder.,\"runs back and extends his bare leg to someone, who sits down to her.\",cuts more lines of coke.,the cigarette he heads off alone.\n12833,lsmdc3025_FLIGHT-12179,17,\"He removes his glasses, and looks at his reflection on the elevator ceiling. He\",\"He removes his glasses, and looks at his reflection on the elevator ceiling.\",He,gold,switches on his computer.,steps into view and watches as they head off at the curb.,pours his drink onto his straw.,lowers his gaze to the little girl.\n12834,lsmdc3025_FLIGHT-12179,14,They enter an elevator with a woman and a little girl. The girl,They enter an elevator with a woman and a little girl.,The girl,gold,is playing flute close to her keyboard.,stares at someone as someone hands him a handkerchief.,carries a girl down a long bed of red stone.,walk on a horse and take classes in singing while the woman dances.\n12835,lsmdc3025_FLIGHT-12179,10,\"Someone smiles up at someone. A torn piece of toilet paper, with a spot of blood,\",Someone smiles up at someone.,\"A torn piece of toilet paper, with a spot of blood,\",gold,falls on someone's face as he exits his vehicle.,hangs over his eye.,snaps into focus and bringing her back down.,leaves a polished table on the coffee table.\n12836,lsmdc3025_FLIGHT-12179,18,\"He lowers his gaze to the little girl. In the hearing room, cell phone footage of the plane crash\",He lowers his gaze to the little girl.,\"In the hearing room, cell phone footage of the plane crash\",gold,tosses about window.,is played on a large screen.,peers through the grating.,into the ground.\n12837,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72744,13504,Someone looks up at the giant someone. Someone,Someone looks up at the giant someone.,Someone,gold,\"has a bit of static on the machine, not sure what to do next or what she should do now.\",looks up at them as they march toward the balcony to the metal staircase.,is on the phone to someone.,bows his head and closes his eyes.\n12838,anetv_opCMfcAl7yw,11626,A large group of flags is shown. Several swimmers,A large group of flags is shown.,Several swimmers,gold,point a dish ball at the water.,are standing behind a bar at all the game.,are swimming in the pool.,are then seen running down the field.\n12839,anetv_opCMfcAl7yw,11627,Several swimmers are swimming in the pool. They,Several swimmers are swimming in the pool.,They,gold,pull the fish out of the pool.,\"swim competitively, shown from underneath.\",are about to attack the pool while they play.,lob the ball back and forth.\n12840,lsmdc3050_MR_POPPERS_PENGUINS-23951,17518,The other penguins run over. He,The other penguins run over.,He,gold,grabs the stone and marches to someone who falls back to his partner.,leaps up onto the platform at the back of the titanic.,points at his original penguin.,punches one of the gypsies.\n12841,lsmdc3050_MR_POPPERS_PENGUINS-23951,17507,\"He changes the channel to a news program called, The Squawk Box. The penguin\",\"He changes the channel to a news program called, The Squawk Box.\",The penguin,gold,then talks about the process around the time.,completes halfway around the bar.,waddles over and unties the gift's ribbon.,rolls on dirt through someone.\n12842,lsmdc3050_MR_POPPERS_PENGUINS-23951,17513,\"He finds a penguin eating from a tipped trashcan. In the bathroom, he\",He finds a penguin eating from a tipped trashcan.,\"In the bathroom, he\",gold,turns down the walk and wanders to the lectern.,finds his father sleeping on an easy bed couch.,tosses the cabinets aside and climbs paperwork.,finds a penguin in the toilet.\n12843,lsmdc3050_MR_POPPERS_PENGUINS-23951,17516,He finds a fifth atop a panel fountain. He,He finds a fifth atop a panel fountain.,He,gold,\"knocks on the door, knocking the pins into the building.\",opens a tin of sardines.,slams the door hook hard.,takes out a jumble of surfers strapped to an alien balloon.\n12844,lsmdc3050_MR_POPPERS_PENGUINS-23951,17510,Two penguins exit the crate. He,Two penguins exit the crate.,He,gold,bobs his head as he stares up at us.,places his penguin in the crate.,takes the check from someone.,\"unwraps someone's dress, tosses it back down.\"\n12845,lsmdc3050_MR_POPPERS_PENGUINS-23951,17517,Now he answers the door. A penguin,Now he answers the door.,A penguin,gold,appears at his feet.,is carving a picture into its cage.,steps through a shelf.,lies empty nearby.\n12846,lsmdc3050_MR_POPPERS_PENGUINS-23951,17515,In the dining area he finds three more birds. He,In the dining area he finds three more birds.,He,gold,\"turns a page, then reads something.\",\"breaks away the two bits, leaving the dead side by side.\",nods to one bird.,finds a fifth atop a panel fountain.\n12847,lsmdc3050_MR_POPPERS_PENGUINS-23951,17512,\"With a confused look, someone sets his penguin down and heads into the kitchen. He\",\"With a confused look, someone sets his penguin down and heads into the kitchen.\",He,gold,uses a shadow to cover the ceiling shapes.,finds a penguin eating from a tipped trashcan.,drops the trash bag down then returns to the kitchen.,drive along a higher road to the airport roads.\n12848,lsmdc3050_MR_POPPERS_PENGUINS-23951,17514,\"In the bathroom, he finds a penguin in the toilet. The bird\",\"In the bathroom, he finds a penguin in the toilet.\",The bird,gold,slides the boy's head up over the startled ceiling.,eyes his image then returns it to his picture.,flies from its perch.,spins with the flushing water.\n12849,lsmdc3050_MR_POPPERS_PENGUINS-23951,17508,\"The penguin waddles over and unties the gift's ribbon. Opening the door, someone\",The penguin waddles over and unties the gift's ribbon.,\"Opening the door, someone\",gold,finds a belly dancer.,finds a wooden crate.,puts his hand beneath his wallet.,turns to take her pull.\n12850,lsmdc3050_MR_POPPERS_PENGUINS-23951,17509,\"With its flippers extended behind it, the penguin hurries over. Someone\",\"With its flippers extended behind it, the penguin hurries over.\",Someone,gold,offers a wolf thoughtful smile.,removes a panel on the crate.,catch the lights of the armored vehicle as he fires.,extracts a photo of him getting his bearings.\n12851,anetv_Wy0u0amd4Ko,5924,Two people are seen holding tennis rackets and hitting around a ball in a closed room. The boys,Two people are seen holding tennis rackets and hitting around a ball in a closed room.,The boys,gold,continue hitting the ball around the room while chasing after it several times.,continue hitting the ball around one another while stopping to continue the game.,throw their balls back and fourth as they demonstrate how to make the ball.,continue hitting balls hitting one another and hitting a ball into cue by filling it.\n12852,anetv_Wy0u0amd4Ko,19227,A man in a yellow shirt swings his racket and hits the ball. A boy in a white shirt,A man in a yellow shirt swings his racket and hits the ball.,A boy in a white shirt,gold,swings his racket and hits the ball.,holds the ball around a court and hits it repeatedly boxing in the other.,\"leans on the table, a man behind.\",and hitting the goal from the water in the air while the players retreats.\n12853,anetv_Wy0u0amd4Ko,19226,Two people are in a room playing wall ball. A man in a yellow shirt,Two people are in a room playing wall ball.,A man in a yellow shirt,gold,is standing behind a net watching.,hits a ball with his foot.,is talking to the camera.,swings his racket and hits the ball.\n12854,anetv_c6nEk5N4fSU,3865,Several features of the elliptical is displayed. the woman,Several features of the elliptical is displayed.,the woman,gold,continues to use the machine.,moves all bikes and performing flips on a dirt mat.,laugh with one another.,uses a razor to blow both back her hair while speaking to the camera.\n12855,anetv_c6nEk5N4fSU,12637,A woman is standing on an elliptical machine. She,A woman is standing on an elliptical machine.,She,gold,lifts the barbell above her head.,puts her hands on the exercise machine with the machine inside.,is showing how to lift the lower part of a scales by layer drop.,starts working out on the machine.\n12856,anetv_YotaXgC6Ee8,11093,A man jumps off a diving board into a pool several times. Another person,A man jumps off a diving board into a pool several times.,Another person,gold,walks out of the pool.,is swimming in the pool.,then jumps onto the bridge in front of a swimming pool.,is in the pool behind him by the water.\n12857,anetv_YotaXgC6Ee8,11094,Another person is swimming in the pool. He,Another person is swimming in the pool.,He,gold,does a flip and lands in the water before surfacing.,uses a brush to raise.,gives someone some bubbles.,fixes the makeup on someone's face.\n12858,anetv_Q711Ki5aFHw,13036,The men pretend to pull imaginary ropes. The men,The men pretend to pull imaginary ropes.,The men,gold,crouch down one after the other and thrust there hips.,raise a few curls into the ring.,cut off the weld force.,continue to struggle with someone's leg and the man in the floor kneels up on their hands and knees.\n12859,anetv_Q711Ki5aFHw,13038,The men stand back to back in a partial circle and dance. The men,The men stand back to back in a partial circle and dance.,The men,gold,get back and stand rhythmically.,hold up there arms like a hindu goddess.,are both on chairs a way.,talk little as or play tennis tennis.\n12860,anetv_XkkOVpXegS8,1380,A graphic shows the number 9 followed by clips from a hockey game. A graphic,A graphic shows the number 9 followed by clips from a hockey game.,A graphic,gold,shows a logo on the map.,shows the number 8 followed by clips from a hockey game.,\"stands in the middle of a towering, turning square.\",show a winner and a violinist walk.\n12861,anetv_XkkOVpXegS8,1386,A graphic shows the number 3 followed by clips from a hockey game. A graphic,A graphic shows the number 3 followed by clips from a hockey game.,A graphic,gold,is shown as the kid signs to a partner interviewing the crowd.,shows the number 2 followed by clips from a hockey game.,is shown of a wood talking.,is the middle of a shuffleboard stadium with spectators around it.\n12862,anetv_XkkOVpXegS8,1384,A graphic shows the number 5 followed by clips from a hockey game. A graphic,A graphic shows the number 5 followed by clips from a hockey game.,A graphic,gold,is followed by a player on a court.,blocks sliding there then a man speaks to players.,shows a polo match and a team player pushed up the goal.,shows the number 4 followed by clips from a hockey game.\n12863,anetv_XkkOVpXegS8,1382,A graphic shows the number 7 followed by clips from a hockey game. A graphic,A graphic shows the number 7 followed by clips from a hockey game.,A graphic,gold,sticks up the snow and hurdles on the.,is shown the most branching.,is shown with hand gestures in the middle of the game.,shows the number 6 followed by clips from a hockey game.\n12864,anetv_XkkOVpXegS8,1385,A graphic shows the number 4 followed by clips from a hockey game. A graphic,A graphic shows the number 4 followed by clips from a hockey game.,A graphic,gold,shows the number 3 followed by clips from a hockey game.,is then shown showing information on how it works.,shows several different types stats in lines.,shows a news segment that where people are playing.\n12865,anetv_XkkOVpXegS8,1387,A graphic shows the number 2 followed by clips from a hockey game. A graphic,A graphic shows the number 2 followed by clips from a hockey game.,A graphic,gold,football game is shown.,shows the number 1 followed by clips from a hockey game.,comes onto the screen next to the security girls.,is shown with his name on it.\n12866,anetv_XkkOVpXegS8,1381,A graphic shows the number 8 followed by clips from a hockey game. A graphic,A graphic shows the number 8 followed by clips from a hockey game.,A graphic,gold,shows the number 7 followed by clips from a hockey game.,is shown of text and credits.,plays his team against a player and an audience cheers.,is shown with a woman on a gym.\n12867,anetv_XkkOVpXegS8,18935,People skate around the ice while the video counts down continuously. Audience members,People skate around the ice while the video counts down continuously.,Audience members,gold,walk around people throwing a discuss to each other.,react as more people score goals and the numbers count down.,play on more screens and go up as the helicopter fades to black.,shoot themselves in a measuring outdoor form swimming around and waving to the audience.\n12868,anetv_XkkOVpXegS8,1383,A graphic shows the number 6 followed by clips from a hockey game. A graphic,A graphic shows the number 6 followed by clips from a hockey game.,A graphic,gold,soccer player takes a ball.,shows the number 5 followed by clips from a hockey game.,pictures a crowd cheerleaders on the star of a field.,is shown with white text in condensation.\n12869,anetv_XkkOVpXegS8,1379,A graphic shows the number 10 followed by clips from a hockey game. A graphic,A graphic shows the number 10 followed by clips from a hockey game.,A graphic,gold,is shown with a game of fencing.,shows the number 9 followed by clips from a hockey game.,and a graphic is seen on the video.,is shown of someone in a green background.\n12870,anetv_XkkOVpXegS8,18934,A countdown is shown that leads into clips of people scoring goals. People,A countdown is shown that leads into clips of people scoring goals.,People,gold,skate around the ice while the video counts down continuously.,comes back to skateboard and grins around while people continue to play the game.,lead into her smiling to the camera.,are shown and leads into several more clips of people swimming.\n12871,anetv_aAZSPRL18Ss,19123,She leads the class in a bicycle riding class and inspires her students to peddle hard like this. The people,She leads the class in a bicycle riding class and inspires her students to peddle hard like this.,The people,gold,\"in their build laugh each constant, acutely upset as she is on her board.\",continue to dance together.,walk closer to each other as they move in and slowly the march in the pit.,smile along with her as the camera pans over several shots of the people.\n12872,lsmdc1010_TITANIC-78126,16662,Someone pries her hand out of someone's grip. She,Someone pries her hand out of someone's grip.,She,gold,places her arms around someone's chest.,sees a successful friend coming out at the park.,produces a script and turns to face someone.,\"kisses his hand, then releases him.\"\n12873,lsmdc1010_TITANIC-78126,16653,\"Someone floats in the sea beside her, his head and arms propped above water. Someone\",\"Someone floats in the sea beside her, his head and arms propped above water.\",Someone,gold,becomes quite obscured by a gust of air.,stands and faces the towering porter.,moves over to someone and holds his hands to his ears.,sings to herself as she gazes up at the starry night sky.\n12874,lsmdc1010_TITANIC-78126,16665,\"Her breath steaming out in clouds, someone swims to the frozen crewman and pulls the whistle from his lips. Someone\",\"Her breath steaming out in clouds, someone swims to the frozen crewman and pulls the whistle from his lips.\",Someone,gold,gazes by.,blows water over the murky pool and sits a few yards from the frozen lake.,\"his broomstick against the ceiling, someone pushes himself out of the bunk and faces him again.\",continues to blow into the whistle as the rescuers shine their lights on her.\n12875,lsmdc1010_TITANIC-78126,16655,\"Her hair and eyebrows caked with ice, someone turns her head as a distant light illuminates the side of her face. The lifeboat\",\"Her hair and eyebrows caked with ice, someone turns her head as a distant light illuminates the side of her face.\",The lifeboat,gold,lies in the sea on the countryside.,passes several yards away from her.,is lowered as she stares out of its windshield.,is loaded with turbulence.\n12876,lsmdc1010_TITANIC-78126,16664,\"Someone slides on her stomach to the edge of the platform, then rolls into the water. Her breath steaming out in clouds, someone\",\"Someone slides on her stomach to the edge of the platform, then rolls into the water.\",\"Her breath steaming out in clouds, someone\",gold,crosses to a pile of green leaves.,swims to the frozen crewman and pulls the whistle from his lips.,crosses to the neglected tent.,watches the video feed.\n12877,lsmdc1010_TITANIC-78126,16660,The lifeboat rows further away. Someone,The lifeboat rows further away.,Someone,gold,eyes the seated vessel.,trembles as she watches it recede.,faces the broken hangar cautiously.,looks up at the night sky.\n12878,lsmdc1010_TITANIC-78126,16661,Someone trembles as she watches it recede. She,Someone trembles as she watches it recede.,She,gold,purchase her cheap blue hat.,floats partway from the top.,lays down her head and closes her eyes.,adopts a makeshift slumbering pout and lifts her brow.\n12879,lsmdc1010_TITANIC-78126,16659,He floats motionless with his eyes closed. She,He floats motionless with his eyes closed.,She,gold,\"shakes him harder, then gazes toward the lifeboat.\",\"stares at someone, then shifts his gaze to professor someone who eyes her sympathetically.\",wraps a blanket around her shoulders as she stands and watches him view her arms wrapped in the blanket beneath her.,dives someone head people as someone glares.\n12880,lsmdc1010_TITANIC-78126,16654,\"Someone sings to herself as she gazes up at the starry night sky. Her hair and eyebrows caked with ice, someone\",Someone sings to herself as she gazes up at the starry night sky.,\"Her hair and eyebrows caked with ice, someone\",gold,opens a large plastic raft.,turns her head as a distant light illuminates the side of her face.,watches someone from a vendor.,looks about and glares at him.\n12881,lsmdc1010_TITANIC-78126,16658,\"Smiling, someone rubs someone's arm and sits up. He\",\"Smiling, someone rubs someone's arm and sits up.\",He,gold,glares at his father as he fights his friends out.,floats motionless with his eyes closed.,stomps against the kitchen table on her own.,taps someone's finger on the flat window with a wide scanner.\n12882,lsmdc1010_TITANIC-78126,16656,The lifeboat passes several yards away from her. She,The lifeboat passes several yards away from her.,She,gold,goes down the length of the passage.,checks her watch and lets it go happily.,shakes someone's hand.,falls to the ground.\n12883,anetv_f025sQGYfJM,19368,\"The lady helped the man and child to hang the decor in the Christmas tree, the man handed some decorations to the lady and she put it on the tree. The woman\",\"The lady helped the man and child to hang the decor in the Christmas tree, the man handed some decorations to the lady and she put it on the tree.\",The woman,gold,turns leaves and walks down the tree.,\"sat on the chair to arrange the christmas ball on the table, and helped them with the decorations.\",walked up to the tree and cut them all in palette.,walked to the sidewalk and began wiping down her skirt.\n12884,anetv_f025sQGYfJM,19369,\"The woman sat on the chair to arrange the christmas ball on the table, and helped them with the decorations. A lady in black top\",\"The woman sat on the chair to arrange the christmas ball on the table, and helped them with the decorations.\",A lady in black top,gold,is also shown other dog and the woman fell behind a boat.,stands on the counter talking.,is standing by the sand and the woman then began taking them cake.,put more decorations to the christmas tree.\n12885,anetv_f025sQGYfJM,19367,\"A man and a man in green shirt is decorating the Christmas tree with his kid in gray shirt, they are putting the decorations while the woman is sitting on a chair by the tree and put the decors on the blue table. The lady helped the man and child to hang the decor in the Christmas tree, the man handed some decorations to the lady and she\",\"A man and a man in green shirt is decorating the Christmas tree with his kid in gray shirt, they are putting the decorations while the woman is sitting on a chair by the tree and put the decors on the blue table.\",\"The lady helped the man and child to hang the decor in the Christmas tree, the man handed some decorations to the lady and she\",gold,quickly sit in the house again and fence doing the choreography.,started pulling the iron until the hips is lifted.,took the half out and put off the tree.,put it on the tree.\n12886,anetv_5u-PL0wr3TU,17298,\"A toddler goes down on a slide in a playground full of people, when the toddler touches the floor, she stand and run. Suddenly, a man\",\"A toddler goes down on a slide in a playground full of people, when the toddler touches the floor, she stand and run.\",\"Suddenly, a man\",gold,run behind the toddler.,gets on the rake and flips the rope all over on top of the bars making the bars end.,walk into the bedroom while her screaming and twirling on the floor.,\"plays a string, pauses and then falls away.\"\n12887,anetv_I5QbY8vlR54,14299,People are surfing behind the giant wave. The surfer,People are surfing behind the giant wave.,The surfer,gold,performs a little wave as he paddles.,maintains his balance as he surfs and goes beneath a second wave.,falls into the water surf and swims the people surfing with floats.,surfs his way to the water and falls into the water before that bitten surfers.\n12888,anetv_I5QbY8vlR54,14298,A large wave is crashing toward the shore. People,A large wave is crashing toward the shore.,People,gold,are surfing behind the giant wave.,throw darts around the pool while a group walks by.,are crashing around them in a wave.,are interviewed as it is lit by people dancing in the arcade.\n12889,anetv_Yf49q7bGpkk,10104,\"A bull in a ring starts chasing two men. Several others run onto the ring, and the bull flips as they\",A bull in a ring starts chasing two men.,\"Several others run onto the ring, and the bull flips as they\",gold,try to get help.,grab his horns and tail.,are able to swing.,arrive on the finish line.\n12890,anetv_Yf49q7bGpkk,10105,\"Several others run onto the ring, and the bull flips as they grab his horns and tail. They\",\"Several others run onto the ring, and the bull flips as they grab his horns and tail.\",They,gold,show after the person hug.,\"open the gate, but fail to get the bull back inside as he charges them.\",are sometimes chasing boys who are chasing it.,continue out of the fight trying to fight back two final attacks.\n12891,lsmdc0041_The_Sixth_Sense-67940,2775,People in suits and dark dresses move somberly in and out of the front door of the home. People,People in suits and dark dresses move somberly in and out of the front door of the home.,People,gold,are wearing black clothes with costumes from updo office.,sits at the piano as a secretary placed a bag on her back.,walk towards an open door.,join the visitors as they walk slowly towards the doors.\n12892,lsmdc0041_The_Sixth_Sense-67940,2774,Rows of parked cars spill out from the driveway onto the streets. People in suits and dark dresses,Rows of parked cars spill out from the driveway onto the streets.,People in suits and dark dresses,gold,sit either side on the road in a pair of orange jeans.,stand inside a blue hotel and o. ferris elevator of dance avenue.,move somberly in and out of the front door of the home.,\"are thrown on a white model, spies someone standing outside the closet door.\"\n12893,lsmdc0041_The_Sixth_Sense-67940,2773,The city bus slithers through the old Philadelphia streets working its way downtown. Rows of parked cars,The city bus slithers through the old Philadelphia streets working its way downtown.,Rows of parked cars,gold,disappear into the night sky.,are drawn up close up behind the sky.,spill out from the driveway onto the streets.,tread off behind the terraced house buildings.\n12894,lsmdc0041_The_Sixth_Sense-67940,2772,Someone slips back into silence. The city bus,Someone slips back into silence.,The city bus,gold,slithers through the old philadelphia streets working its way downtown.,turns on in the silence.,comes to a stop outside the distant construction.,stands slowly on the curb.\n12895,anetv_h1d-jcsWap8,5001,A person is seen peeling off potatoes into a box with pausing for a bit to speak to the camera. The person,A person is seen peeling off potatoes into a box with pausing for a bit to speak to the camera.,The person,gold,peels several potatoes and shows of a bowl full of potatoes while peeling even more.,continues knitting back and fourth while the man continues knitting.,continues rubbing on the cat while the man is cut a close up and showing how to properly cut the cat's claws.,continues vacuuming the carpet and ends with the closing credits gone.\n12896,anetv__j5JUQzOCtc,13645,A young boy wearing striped shirt in a gym lifts a weight bar over his head. A young man in blue shorts,A young boy wearing striped shirt in a gym lifts a weight bar over his head.,A young man in blue shorts,gold,spins around and jumps into a bar.,runs into the track several times.,falls off his leg and throws the ball across the floor.,lifts a weight bar over his head in a crowded gym.\n12897,anetv__j5JUQzOCtc,13644,An Olympic logo is seen with the 5 rings. A young boy wearing striped shirt in a gym,An Olympic logo is seen with the 5 rings.,A young boy wearing striped shirt in a gym,gold,\"walks on a track, then people continue to sit around the stage and are having fun and the exact width important.\",is standing on a blue and white mat.,is shown in a cardio room and juggling a ball such as a baton in his cold hand.,lifts a weight bar over his head.\n12898,anetv__j5JUQzOCtc,13646,A young man in blue shorts lifts a weight bar over his head in a crowded gym. Professional athletes in competitions,A young man in blue shorts lifts a weight bar over his head in a crowded gym.,Professional athletes in competitions,gold,\"kick each other, flipping after the mats.\",lift large heavily weighted bars overhead for judging.,throws a long pole during a competition.,race off the track in front of the crowd.\n12899,anetv_pHAIrx_cRFU,2404,The person puts on a third belt. The person,The person puts on a third belt.,The person,gold,is hit in the claws and hit them hard.,picks up hair and smells the top.,touches several hammer pieces.,sharpens the blade on the third belt.\n12900,anetv_pHAIrx_cRFU,2403,The person takes the second belt off. The person,The person takes the second belt off.,The person,gold,puts on a third belt.,stops brushing the shoe and presents.,puts one in to the dog that falls onto the ground.,walks over the board and then makes pin throw o them landing.\n12901,anetv_pHAIrx_cRFU,2402,The person sharpents the blade on the second belt. The person,The person sharpents the blade on the second belt.,The person,gold,shakes the paw again.,removes the left shoe.,rolls the finger with scissors and touches it.,takes the second belt off.\n12902,anetv_pHAIrx_cRFU,2401,The person takes the belt off the machine. The person,The person takes the belt off the machine.,The person,gold,places his shoes once more.,puts a new belt on the machine.,pulls the needle against and measuring.,pulls the container out of the vacuum.\n12903,anetv_pHAIrx_cRFU,2400,The person holds a blade to sharpen it. The person,The person holds a blade to sharpen it.,The person,gold,takes the belt off the machine.,puts the nail in the middle.,stops and shows us the powder.,lifts the wire up and lays on the paper.\n12904,anetv_pHAIrx_cRFU,2405,The person sharpens the blade on the third belt. The person,The person sharpens the blade on the third belt.,The person,gold,stamps the knife with a left foot.,finishes the finished cake.,finishes the piercing again.,demonstrates the blade's edge.\n12905,lsmdc3047_LIFE_OF_PI-21948,13483,\"At the zoo, young someone leads someone into a shadowy back room. Someone\",\"At the zoo, young someone leads someone into a shadowy back room.\",Someone,gold,\"dives into a slinky dark sedan, followed by people.\",\"climbs into his bed, opens the dresser and breathes unflinchingly.\",watches someone enter and gets ridden by someone.,continues into a caged area.\n12906,lsmdc3047_LIFE_OF_PI-21948,13480,\"His beautiful mother eyes her family. Slowly lifting his sheepish gaze, someone\",His beautiful mother eyes her family.,\"Slowly lifting his sheepish gaze, someone\",gold,shifts his pensive gaze.,takes her face away from hers.,looks around the table.,faces the plant with a look on his face.\n12907,lsmdc3047_LIFE_OF_PI-21948,13479,He glances between his sons. Someone,He glances between his sons.,Someone,gold,places her briefcase on someone's shoulder and narrows his eyes.,nods gently at his father.,\"abruptly stands up, and looks down.\",glances across the ship.\n12908,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15487,\"A sinister mounted ringwrath steps into view. hooded and faceless, mounted on a huge snarling black horse with insane eyes! The ringwraith\",\"A sinister mounted ringwrath steps into view. hooded and faceless, mounted on a huge snarling black horse with insane eyes!\",The ringwraith,gold,fires a meerkat in the alien's wings.,features a billboard: flies racing.,pauses right beside their hiding place.,unison disperse in and out of their movements.\n12909,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15488,\"The ringwraith pauses right beside their hiding place. he sits very still with his head bowed, listening. Beads of sweat\",\"The ringwraith pauses right beside their hiding place. he sits very still with his head bowed, listening.\",Beads of sweat,gold,gather on his brow.,fill the empty air.,fall on someone's face as he leans back against the wall.,fall from his eyes.\n12910,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15489,Beads of sweat gather on his brow. The ringwraith,Beads of sweat gather on his brow.,The ringwraith,gold,continues to study as the doctor begins cycling.,share a brief smile with his father.,\"suddenly slides off his horse, leaning over the mossy log, peering suspiciously into the woods.\",is pulling away from the dance floor!\n12911,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15484,Scattered leaves rise into the air Whirling down the road as if blown by an invisible wind. A long drawn wail,Scattered leaves rise into the air Whirling down the road as if blown by an invisible wind.,A long drawn wail,gold,shoots as the elder plane swivels its head.,pulls his perch in a burst of flames at the olympic.,\"comes down the wind, like the cry of some evil and lonely creature.\",appears across the chamber.\n12912,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15485,\"A long drawn wail comes down the wind, like the cry of some evil and lonely creature. Someone\",\"A long drawn wail comes down the wind, like the cry of some evil and lonely creature.\",Someone,gold,swings a third bolt.,turns around to see the helicopter lifting.,\"grabs people as the hobbits quickly scramble down the bank, hiding under a mossy log.\",\"turns to earth, stops to kiss the tree, but someone is in there.\"\n12913,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15490,\"The ringwraith suddenly slides off his horse, leaning over the mossy log, peering suspiciously into the woods. From inside the hood comes a sniffing noise as if he is trying to catch an elusive scent; his head\",\"The ringwraith suddenly slides off his horse, leaning over the mossy log, peering suspiciously into the woods.\",From inside the hood comes a sniffing noise as if he is trying to catch an elusive scent; his head,gold,turning from side to side.,becomes martin and thick.,is plunged back into the mud.,\"lingers in the glass glass, peering through the water.\"\n12914,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15478,People hurriedly gather their booty and race away. with people on their heels. People,People hurriedly gather their booty and race away. with people on their heels.,People,gold,rush and pull over.,\"tumble head over heels down a bank, onto a dark, wooded road.\",rush through the funeral entrance to a bustling canyon.,sit in a patrol car.\n12915,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15480,Someone has spied something under the trees on the far side of the road. People,Someone has spied something under the trees on the far side of the road.,People,gold,come to the bar.,race toward the mushrooms!,\"is walking in front of a posh gent, surrounded during the carnage, incredulity his voice.\",mounts the back of the hill with a loudspeaker.\n12916,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15477,A large pitchfork can be seen racing towards them along the Hedgerow. angry shouts from Farmer Maggot. People,A large pitchfork can be seen racing towards them along the Hedgerow. angry shouts from Farmer Maggot.,People,gold,struggles to him.,hurriedly gather their booty and race away.,are arguing as they leave someone's desk.,are dancing in the arena.\n12917,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15483,He realizes they are on a wooded road. Scattered leaves,He realizes they are on a wooded road.,Scattered leaves,gold,fall out and move on front a tree.,\"then illuminates the exterior of a suburban town town, gazing out from new houses.\",rise into the air whirling down the road as if blown by an invisible wind.,are lined up on the free - clad ground.\n12918,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15481,People race toward the mushrooms! Someone,People race toward the mushrooms!,Someone,gold,picks himself up and looks around quickly.,\"bored young, jumps through a pile of wood and pulls a snake around its neck.\",\"sprints down the track, past brown and white clouds.\",someone lowers the holograph.\n12919,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15486,The sound of hooves is close. A sinister mounted ringwrath,The sound of hooves is close.,A sinister mounted ringwrath,gold,smiles on the his driver.,steps into view.,gives him the parcel.,appears on the door frame.\n12920,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59986,15482,Someone picks himself up and looks around quickly. He,Someone picks himself up and looks around quickly.,He,gold,realizes they are on a wooded road.,\"grabs someone's hand, squeezing the water out of his hand.\",sets down a new wreath and turns on the lights.,zooms with something available to him.\n12921,anetv_xzoquwJYEZw,6957,Men are playing squash in a room holding rackets on his hands. the man,Men are playing squash in a room holding rackets on his hands.,the man,gold,is holding a racket and is talking to the camera.,is standing up next to the bat and a starts doing it.,walked and hit and hit the ball into squash.,is kicking the ball in a court while others are watching.\n12922,anetv_xzoquwJYEZw,6956,Man is standing in a wooden court talking to the camera. men,Man is standing in a wooden court talking to the camera.,men,gold,are playing squash in a room holding rackets on his hands.,are playing the drums and cymbals.,are playing in a pool playing a pool of sand in the middle of the street.,are sitting on top of a gym with boxing shoes.\n12923,anetv_hQXWnoipdFE,13274,There's a man who is mountain climbing on a steep slope. Another man,There's a man who is mountain climbing on a steep slope.,Another man,gold,takes a leap from the top of mountain in an attempt to bungee jump from that height.,makes his way up the hill and jumps in.,gets off and begins to ride away.,is climbing up wall and attached to a camel.\n12924,anetv_hQXWnoipdFE,13273,There are pictures of people wearing bandanas shown sitting on the mountain tops. There,There are pictures of people wearing bandanas shown sitting on the mountain tops.,There,gold,are putting their inflated tires on the windshield.,are people playing tug of war across goals.,'s a man who is mountain climbing on a steep slope.,is a bouquet of green and white letters on the stage behind the dancing young woman.\n12925,lsmdc1035_The_Adjustment_Bureau-86148,3307,He acknowledges them amiably touching the brim of his hat. People,He acknowledges them amiably touching the brim of his hat.,People,gold,give one another when he sees them at the house.,smile and wave at the audience.,\"are following someone, who leaves someone.\",\"glance after him, then continue forward together.\"\n12926,lsmdc0053_Rendezvous_mit_Joe_Black-71516,12753,\"Someone sees someone, she smiles but there is a tinge of sadness about her. He heads towards her, they\",\"Someone sees someone, she smiles but there is a tinge of sadness about her.\",\"He heads towards her, they\",gold,are somehow situated as if they were alone in this crowd.,arrive at his horse's study and enter as someone goes to peer down on it.,\"join, camera only taking a sip.\",are led by a bent vendor.\n12927,lsmdc0053_Rendezvous_mit_Joe_Black-71516,12751,\"Someone hesitates, waves and steps away, applause that grows into cheers, the music resumes, another dance tune. Quince\",\"Someone hesitates, waves and steps away, applause that grows into cheers, the music resumes, another dance tune.\",Quince,gold,spikes a volley of barmaid deck powder.,\"steps up in front of someone, occasionally rising her swivel head.\",\"grabs him, pumps his hand and claps him on the back.\",is there with him searching someone.\n12928,lsmdc0053_Rendezvous_mit_Joe_Black-71516,12752,\"Quince grabs him, pumps his hand and claps him on the back. Now someone spots someone, he wraps her in a tight embrace, they\",\"Quince grabs him, pumps his hand and claps him on the back.\",\"Now someone spots someone, he wraps her in a tight embrace, they\",gold,look toward the hands of the grubby young priest.,walk around to the entrance.,walk into each other.,\"hold each other close for a moment, but then are separated by a surge of guests.\"\n12929,anetv_aEG-_-m49mY,18226,The video then cuts to show that the fence is mostly completed. The video then,The video then cuts to show that the fence is mostly completed.,The video then,gold,proceeds away and quickly markers a small post.,shows several clips from dodgeball getting it down as well as obama playing and watching them play.,shows the two boys working together to complete the final panel of the fencing.,shows the pharmacy in florida history and still it is slowed down.\n12930,anetv_aEG-_-m49mY,18225,\"Another little boy is painting the other end of the fence, and the camera goes up to him. The video then\",\"Another little boy is painting the other end of the fence, and the camera goes up to him.\",The video then,gold,cuts to show that the fence is mostly completed.,cuts to several people competing to a fence who watch the kids fighting.,shows a honing rock and accurately the guy is showing home video.,\"goes around the snow in a high five, it goes into the backyard.\"\n12931,anetv_aEG-_-m49mY,18227,The video then shows the two boys working together to complete the final panel of the fencing. The video,The video then shows the two boys working together to complete the final panel of the fencing.,The video,gold,ends as the audience applauds.,\"ends, the man pointing holding a shovel and then he jumps and looks at a picture of a violin.\",ends as the camera pans out to show the house and the freshly painted fence.,ends behind the man putting gifts in a silver box and the credits of the video are shown.\n12932,anetv_aEG-_-m49mY,18224,\"The camera pans to the rest of the backyard and fence. Another little boy is painting the other end of the fence, and the camera\",The camera pans to the rest of the backyard and fence.,\"Another little boy is painting the other end of the fence, and the camera\",gold,pans around it to see a long ladder cutting off the floor.,zooms in on it.,is drawn back every time he was sure.,goes up to him.\n12933,anetv_aEG-_-m49mY,18223,A woman is recording a video of a little boy who is painting a fence. The camera,A woman is recording a video of a little boy who is painting a fence.,The camera,gold,pans to the rest of the backyard and fence.,focuses on a large painting with red paint.,shows her smiling too.,is instantly gone back.\n12934,lsmdc3092_ZOOKEEPER-45344,19565,\"He gives a dazed look. Blinking, he\",He gives a dazed look.,\"Blinking, he\",gold,turns away from her.,weaves through traffic traffic.,looks between the conflict and walls of play field.,stares ahead with a furrowed brow.\n12935,lsmdc3092_ZOOKEEPER-45344,19564,\"As someone stares with crestfallen eyes, someone leans. He\",\"As someone stares with crestfallen eyes, someone leans.\",He,gold,takes a drag off his cigarette and kisses it.,puts his paper on his knee.,\"shrugs, and drops the coffee into the goblet.\",gives a dazed look.\n12936,anetv_8HxMXHc8Nr0,18430,\"Then, the man continues to explain the process sitting in dining room. Two toddlers\",\"Then, the man continues to explain the process sitting in dining room.\",Two toddlers,gold,move back the mixing pat and use paperwork.,are seen playing decorate the room and caring for the wedding.,\"are sitting in a bike trailer, while the man attach the safety belts.\",walk on the sidewalk and begin several shoes punching with each hand.\n12937,anetv_8HxMXHc8Nr0,18428,A screen appears with instructions how to attach an InStep bike trailer. A man,A screen appears with instructions how to attach an InStep bike trailer.,A man,gold,explains about how to do a tutorial on how to do a braid home.,is showing how to attach an instep bike trailer on the back wheel of a bike.,\"wearing a black shirt next to quiet lakeside, rides a ramp, talks on the snow outdoors between cars and began doing crunches.\",falls over a barber bike as he then is shown again on a tan horse and then cuts two different exercises.\n12938,anetv_0x4TP4MPelY,15540,Two people are seen sitting at a table speaking to one another while one paints the other's hand. The person,Two people are seen sitting at a table speaking to one another while one paints the other's hand.,The person,gold,shows their fingers all the way up as well as the people around them.,continues painting the nails on the person while the camera captures her face and a thumbs up.,continues to play the piano while the camera captures his movements.,continues playing with one another while the camera follows to the cuts.\n12939,anetv_0x4TP4MPelY,1561,A close up of a person's hands are shown with a man painting them. The person,A close up of a person's hands are shown with a man painting them.,The person,gold,falls down then uses a scraper to wipe the pool surface on the towel.,then begins walking around the area and speaking to the camera.,rinses and wipes their hands down and ends by moving it over and looking one in the face.,continues painting the other's nails while the camera zooms in.\n12940,anetv_0x4TP4MPelY,1562,The person continues painting the other's nails while the camera zooms in. The person finishes the nails and the girl,The person continues painting the other's nails while the camera zooms in.,The person finishes the nails and the girl,gold,gives a thumbs up.,blows out a puff of smoke.,chops to some other moves.,blows the smoke some more.\n12941,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94823,19389,\"He stops as someone, the former Undersecretary, rises smiling primly. She\",\"He stops as someone, the former Undersecretary, rises smiling primly.\",She,gold,\"lifts his brow, then stands, sets the remote aside, and faces a photograph of himself.\",is a small woman in a sugar - pink suit with matching accessories.,picks the producer's dress up and holds it up.,sips his martini as they hug.\n12942,anetv_gfwSnetklbE,4166,A man is shoveling snow off of the top of a car. He,A man is shoveling snow off of the top of a car.,He,gold,is wiping his mouth with the pressure washer and a plastic washer.,is starting up the driveway in front of the baby's house.,hinges himself in being.,walks around the car and starts shoveling the ground.\n12943,lsmdc0041_The_Sixth_Sense-68027,13654,Someone looks around the room and then directly at someone. The Female Teacher,Someone looks around the room and then directly at someone.,The Female Teacher,gold,aims at the fallen agent.,shifts her eyes from one hand and mouths goodbye to her bicycle.,chokes on her cigarette.,looks to someone and nods.\n12944,lsmdc0041_The_Sixth_Sense-68027,13653,Someone finds someone sitting in a poor villager costume as a female teacher kneels next to him and makes final adjustments. Someone,Someone finds someone sitting in a poor villager costume as a female teacher kneels next to him and makes final adjustments.,Someone,gold,strolls over to a laughing panel.,looks around the room and then directly at someone.,puts someone down behind her.,takes a final swig and grimaces.\n12945,lsmdc3026_FRIENDS_WITH_BENEFITS-1377,8531,She looks on as he approaches the blond. Someone,She looks on as he approaches the blond.,Someone,gold,\"fills the bag with powder for someone, who lifts her head in frustration.\",rolls her eyes and looks away.,takes a step forward.,smiles down at someone.\n12946,lsmdc3026_FRIENDS_WITH_BENEFITS-1377,8529,Now in Central Park they carry sandwiches. He,Now in Central Park they carry sandwiches.,He,gold,hands someone his sandwich.,puts a layup as someone enters the room.,are holding a gold cube and some cases.,rolls over a window of his car.\n12947,lsmdc3026_FRIENDS_WITH_BENEFITS-1377,8530,He hands someone his sandwich. She,He hands someone his sandwich.,She,gold,takes someone's plate arm.,sips one of someone's son bottles.,\"squats down and kisses a few of the may, head elevated by an giant tank tiptoes.\",looks on as he approaches the blond.\n12948,lsmdc3026_FRIENDS_WITH_BENEFITS-1377,8534,Someone smiles and spreads her arms as he rejoins her. He,Someone smiles and spreads her arms as he rejoins her.,He,gold,stands in front of an open window.,averts her forlorn gaze.,goes inside and she takes off her jacket.,knocks the sandwich out of her hand.\n12949,lsmdc3026_FRIENDS_WITH_BENEFITS-1377,8532,Someone rolls her eyes and looks away. Someone,Someone rolls her eyes and looks away.,Someone,gold,\"smiles as she holds up his hand, which now fills someone's.\",climbs off into the building.,\"keeps sharing, as someone walks in, tentatively chewing one of it.\",shakes the blond's hand.\n12950,anetv_puwMWETdvL0,10259,A man etches a pumpkin with a knife like tool. The man then,A man etches a pumpkin with a knife like tool.,The man then,gold,hands a towel over and begins spreading an object with the tool in front of the camera.,uses a tool to sharpen the fusion knife.,sharpens the knife on the sharpener and continues torching.,carves a logo into the pumpkin.\n12951,anetv_puwMWETdvL0,10260,The man then carves a logo into the pumpkin. We,The man then carves a logo into the pumpkin.,We,gold,see the pumpkin with a light inside of it.,see the seeds out of the tree.,see the ending stencil.,see a person covered in mulch.\n12952,anetv_puwMWETdvL0,10261,We see the pumpkin with a light inside of it. We then,We see the pumpkin with a light inside of it.,We then,gold,see the white paint.,see a doctor installing crane.,see the lady pretend to swing and the off closeups of her hair.,see the same logo as the open.\n12953,anetv__3hVtPVXTmg,3680,A gymnast is seen running towards a set of uneven bars and performing a routine on the bars. She,A gymnast is seen running towards a set of uneven bars and performing a routine on the bars.,She,gold,to the end doing several flips and forward on the mat and begins spinning the hoop around herself.,swings all around and jumps on the mat to end her routine.,turns behind the beam and ends with her hands up and looking at the camera.,continues jumping and jumping on the swing bars and end by bending down beam beam doing gymnastics moves.\n12954,anetv_zi_TdMQffkU,5134,A person is seen sitting on a horse in front of a large crowd. The man then,A person is seen sitting on a horse in front of a large crowd.,The man then,gold,shows how to use wall tool on the horse and stick to stand close to the horse.,jumps and ropes a calf and dismounts while showing the stick of his horses.,pulls down a horse while still speaking to the camera.,rides in on the horse and ropes up a calf.\n12955,anetv_zi_TdMQffkU,5135,The man then rides in on the horse and ropes up a calf. He,The man then rides in on the horse and ropes up a calf.,He,gold,then rides his horse while he continues to walk the rope around the saddle.,flips the rope around in front of the man as the man on the horse helps the cow several more.,then jumps over the rope in a competition while a camera captures him running.,ties up the calf while others ride in on horses to help.\n12956,anetv_Ls-0SqAeXW0,11599,\"Two men are on a squash court playing a game of squash with each other. During the game, they also\",Two men are on a squash court playing a game of squash with each other.,\"During the game, they also\",gold,watch one hit the ball with many tennis balls.,stop to regard his students.,smack into each other with their sticks and hammer the ball over the net.,pause several times to reset when they start a new game.\n12957,anetv_Ls-0SqAeXW0,18421,\"An intense game begins and the two run from side to side taking turns hitting the ball making sure the ball does n't stop. After some time, the two guys\",An intense game begins and the two run from side to side taking turns hitting the ball making sure the ball does n't stop.,\"After some time, the two guys\",gold,throw white balls at each other as they hit the ball into a goal.,take a break before going back at it and hitting the ball again.,\"get back up again again, and the other boy in the background claps and helps.\",continue playing the ball.\n12958,anetv_Ls-0SqAeXW0,18420,Two individuals are inside of a small room with three white walls and a glass wall behind them stretching and holding a tennis racket. An intense game begins and the two,Two individuals are inside of a small room with three white walls and a glass wall behind them stretching and holding a tennis racket.,An intense game begins and the two,gold,run from side to side taking turns hitting the ball making sure the ball does n't stop.,begin to play numerous parts of the table before playing a game of tennis with the rubix game.,begin that on the tennis court one by one in the background.,continue walking around the room and standing together with one smooth broken run to other friend who lies on the ground self - consciously.\n12959,anetv_tb7s5a1H-IU,9459,\"A girl shows her long hair while talking, then she grabs a comb and comb her hair. Then, the girl\",\"A girl shows her long hair while talking, then she grabs a comb and comb her hair.\",\"Then, the girl\",gold,removes the braids and braids the ends of her long hair and stares at the camera.,shows a blue bottle that uses to spray liquid to her hair.,finishes styling the hair in curled hair while on the to make it at the end of the finish line.,stops brushing and begins brushing the dog who continues using the comb for the dog while it shows no time.\n12960,anetv_tb7s5a1H-IU,9460,\"Then, the girl shows a blue bottle that uses to spray liquid to her hair. After, the girl dry her hair using a blow dryer, then the girl\",\"Then, the girl shows a blue bottle that uses to spray liquid to her hair.\",\"After, the girl dry her hair using a blow dryer, then the girl\",gold,uses a brush to dry her hair.,braids the hair standing in front of a man and blow dry the hair with her boarding like hands.,blow dry her hair while the woman talks.,brushes ski and skate a line in slow motion while wearing a gray sweater.\n12961,anetv_tb7s5a1H-IU,18097,She begins a tutorial and starts brushing through her wet hair and parting it. She uses a certain brand of spray and sprays t around her hair and then she,She begins a tutorial and starts brushing through her wet hair and parting it.,She uses a certain brand of spray and sprays t around her hair and then she,gold,begins talking again about swinging for a towel and dryer.,spray again very quietly.,runs again and finished raising her hair.,picks up her blow dryer and a curling brush and begins to begins to blow dry her hair.\n12962,anetv_tb7s5a1H-IU,18096,A woman is standing alone inside her bathroom pointing towards her hair. She,A woman is standing alone inside her bathroom pointing towards her hair.,She,gold,begins a tutorial and starts brushing through her wet hair and parting it.,pulls gears around the ends.,dries the lotion on and wipes cream.,sets lipstick and eyeliner.\n12963,anetv_qx1FNJxiUuE,6338,Man is standing talking to the camera talking about caramel cookies. man,Man is standing talking to the camera talking about caramel cookies.,man,gold,is attaching the knife to the bow of the saddle.,is putting the caramel between the cookies and put grated coconut on the sides.,is explaining and demonstrating how to use a tack dispenser.,is being outside cleaning the side of a mexican town.\n12964,anetv_qx1FNJxiUuE,12475,A man is rolling out dough on a counter. He,A man is rolling out dough on a counter.,He,gold,cuts out round circles out of the dough.,has a table laid out on the table.,pours the cookies on top of the trash.,peels a potato to the other side.\n12965,anetv_qx1FNJxiUuE,12476,He cuts out round circles out of the dough. He,He cuts out round circles out of the dough.,He,gold,picks up the rhinestones and walks off to the camera.,puts them on a cookie sheet and puts them in the oven.,sets the picture back on the table.,cut the string into the pot and pours the sauce into the pot.\n12966,anetv_qx1FNJxiUuE,12477,He puts them on a cookie sheet and puts them in the oven. He,He puts them on a cookie sheet and puts them in the oven.,He,gold,measure the moment he returns to a little plate and tosses it to someone.,turns off the tv feed.,kisses the triangle.,puts frosting on the cookie and puts two of them together.\n12967,anetv_qx1FNJxiUuE,6339,The man talks to the camera and mash the cookies dough and make the cookies form. and,The man talks to the camera and mash the cookies dough and make the cookies form.,and,gold,\"then he start to stack the dough, then pour dough onto pan on the different plate.\",\"pours into the blender, working the cocktail.\",take the cookies in the oven to put a baking pan on a griddle.,put the cookies on waxes paper in metal tray.\n12968,anetv_FMlWHXByLL0,11375,Kids are jump roping in a gym. They,Kids are jump roping in a gym.,They,gold,do flips over each other.,is in disguise and doing tricks on a residential side.,hit a ball back and forth.,jump uneven with ropes.\n12969,anetv_FMlWHXByLL0,11376,They do flips over each other. People in the audience,They do flips over each other.,People in the audience,gold,clap for them at the end.,are watching them play.,give each other high fives.,cheer for someone and him.\n12970,anetv_DfOiHMcrCbs,12953,Several packs of cigarettes are shown with more people smoking. A man,Several packs of cigarettes are shown with more people smoking.,A man,gold,ends by holding up a pack and speaking to the camera.,is washing that in his hand until he has his glasses and sits.,walks away from them.,puts a handling hand up and blows on them.\n12971,anetv_DfOiHMcrCbs,18497,A man is seen speaking to a camera and leads into video surveillance of two men walking into a store then driving away. Shots,A man is seen speaking to a camera and leads into video surveillance of two men walking into a store then driving away.,Shots,gold,continue to show a story and walk down the wall without a tool.,\"are shown of the store, cigarettes, and people smoking cigarettes, followed by another man being interviewed and smiling to the camera.\",men are seen with one man speaking to the camera while another man is riding others.,go around their neighborhood as well as the car car shaking and following the interior area around others.\n12972,anetv_DfOiHMcrCbs,12952,A man is seen speaking to the camera and shows people smoking. Several packs of cigarettes,A man is seen speaking to the camera and shows people smoking.,Several packs of cigarettes,gold,are shown and signs more objects while still speaking.,are shown with more people smoking.,are laid out on the ground taking blows.,are shown as well as the man playing cigarettes and leads into them playing.\n12973,anetv_DfOiHMcrCbs,18498,\"Shots are shown of the store, cigarettes, and people smoking cigarettes, followed by another man being interviewed and smiling to the camera. One last man\",\"Shots are shown of the store, cigarettes, and people smoking cigarettes, followed by another man being interviewed and smiling to the camera.\",One last man,gold,is seen holding a pack of cigarettes and speaking to the camera.,being interviewed then throw the ball all around the corner and ends by looking out the window.,blows smoke over the hair then both hands the dogs to people.,talks to the camera while more shots of the woman and leads into the woman speaking to the camera.\n12974,lsmdc3071_THE_DESCENDANTS-5307,18545,Someone brings her into a bedroom and lays her down. Someone,Someone brings her into a bedroom and lays her down.,Someone,gold,waits as her friend grabs the phone.,guides her raised knees down and covers her with a quilt.,hands him another envelope.,leaves the room outside.\n12975,lsmdc3071_THE_DESCENDANTS-5307,18536,It turns up a driveway. A woman,It turns up a driveway.,A woman,gold,leans on the wall.,puts on a yellow hat.,is running out of another doorway too.,leads someone and someone forward.\n12976,lsmdc3071_THE_DESCENDANTS-5307,18531,The child flips him the bird. Troy,The child flips him the bird.,Troy,gold,takes the quill and snaps it off again.,nearby he whispers to a penguin.,\", the boy flutters his foot and rides away.\",responds with a resigned nod.\n12977,lsmdc3071_THE_DESCENDANTS-5307,18530,They pass the bar where someone drinks beer with his friends. The child,They pass the bar where someone drinks beer with his friends.,The child,gold,drinks him.,drinks from his stone hook and eats.,flips him the bird.,models a young girl.\n12978,lsmdc3071_THE_DESCENDANTS-5307,18540,The supervisor wearily leads the visitors down the hall to another door. A partition,The supervisor wearily leads the visitors down the hall to another door.,A partition,gold,\"slides down, revealing a groggy teen girl putting on glasses.\",\"opens and the door, but he opens it.\",crashes into the room and swoops after it.,emerges from the living room.\n12979,lsmdc3071_THE_DESCENDANTS-5307,18542,\"Now, in the darkness, the dorm supervisor uses a flashlight to lead. They\",\"Now, in the darkness, the dorm supervisor uses a flashlight to lead.\",They,gold,pass through a chain link gate to a driving range.,atop the water behind the stilt.,\", someone, hangs on a rack, and sets the thermos tray on one floor.\",follows.\n12980,lsmdc3071_THE_DESCENDANTS-5307,18534,\"At dusk, a red car passes terrain decorated with names spelled out in white stones. Later in the night, the car's headlights\",\"At dusk, a red car passes terrain decorated with names spelled out in white stones.\",\"Later in the night, the car's headlights\",gold,\"fade to a dark, wide view as they scream towards the bright sunshine.\",cut through the darkness.,burn as someone sits down in bed.,glow as strawberries are streaming in the window.\n12981,lsmdc3071_THE_DESCENDANTS-5307,18546,\"Someone guides her raised knees down and covers her with a quilt. Heading out, he\",Someone guides her raised knees down and covers her with a quilt.,\"Heading out, he\",gold,sneaks on to the hair rack.,pauses at the door and glances solemnly back at her.,finds her staring at her breathlessly.,finds the tattoo artist on the patio floor.\n12982,lsmdc3071_THE_DESCENDANTS-5307,18529,Someone leads his daughter back. They,Someone leads his daughter back.,They,gold,carry someone down a busy sidewalk.,\"takes a seat and wipes her face, then turns toward him again and follow someone with her.\",pass the bar where someone drinks beer with his friends.,rake parmesan mulch over the base of someone's body.\n12983,lsmdc3071_THE_DESCENDANTS-5307,18550,\"As someone takes the plate from the table, someone shuffles in. Without meeting his gaze, the teen\",\"As someone takes the plate from the table, someone shuffles in.\",\"Without meeting his gaze, the teen\",gold,continues down the hall.,takes a gulp from the flask.,licks his lips and faces someone.,\"takes a cola from the refrigerator, sits at the table, and slurps sullenly.\"\n12984,lsmdc3071_THE_DESCENDANTS-5307,18544,Her arms hug him around the neck and her head rests against his shoulder. Someone,Her arms hug him around the neck and her head rests against his shoulder.,Someone,gold,walks toward the edge of the balcony.,brings her into a bedroom and lays her down.,\"reaches towards someone, gently pulls her pants around him.\",\"grabs his roughly someone's hand, catching someone's hand, and kisses her.\"\n12985,lsmdc3071_THE_DESCENDANTS-5307,18547,\"Heading out, he pauses at the door and glances solemnly back at her. His expression growing resigned, he\",\"Heading out, he pauses at the door and glances solemnly back at her.\",\"His expression growing resigned, he\",gold,turns toward the door.,leaves and shuts the door.,pauses for a moment then gasps.,stretches out his hand and watches.\n12986,lsmdc3071_THE_DESCENDANTS-5307,18533,\"On the plane, someone and someone peer through a window at a verdant coastline. At dusk, a red car\",\"On the plane, someone and someone peer through a window at a verdant coastline.\",\"At dusk, a red car\",gold,is gliding along a dirt road in the sea.,passes terrain decorated with names spelled out in white stones.,pulls up beside river road.,rises into the street.\n12987,lsmdc3071_THE_DESCENDANTS-5307,18543,Someone carries a passed out someone down a hallway upstairs. Her arms hug him around the neck and her head,Someone carries a passed out someone down a hallway upstairs.,Her arms hug him around the neck and her head,gold,rests against his shoulder.,\"heads down, and undoes her restraints then leans forward.\",hangs shut over her eyes.,reaches to one side as her hand gently slips her ear.\n12988,lsmdc3071_THE_DESCENDANTS-5307,18538,Someone hurries ahead and knocks eagerly on a door. It,Someone hurries ahead and knocks eagerly on a door.,It,gold,knocks someone's head out of the display and finds someone crawling back on the upper deck.,bursts out of the door and slams the elevator door shut.,opens off a sparkler and goes.,\"opens, revealing a sleepy, disheveled teen.\"\n12989,lsmdc3071_THE_DESCENDANTS-5307,18548,\"His expression growing resigned, he leaves and shuts the door. In the morning, someone\",\"His expression growing resigned, he leaves and shuts the door.\",\"In the morning, someone\",gold,\"sits on a bench in his departure room, to his cluttered cot.\",\"sleeps contemplatively at his own office, wrapped in a blanket.\",walks down the hall to the basement.,transfers scrambled eggs from a pan onto a plate with toast.\n12990,lsmdc3071_THE_DESCENDANTS-5307,18549,\"In the morning, someone transfers scrambled eggs from a pan onto a plate with toast. He\",\"In the morning, someone transfers scrambled eggs from a pan onto a plate with toast.\",He,gold,sits hunched over his desk.,\"wraps it in half, then the doorway gone from the tent.\",rubs himself into the bathtub and holds up food.,sets the meal on a table for someone.\n12991,lsmdc3071_THE_DESCENDANTS-5307,18532,\"On a map, a dotted line traces a path from Oahu to the island of Hawaii. On the plane, someone and someone\",\"On a map, a dotted line traces a path from Oahu to the island of Hawaii.\",\"On the plane, someone and someone\",gold,sit brackets on a railing as people walk by.,approach a computer computer.,peer through a window at a verdant coastline.,wave a chain behind the boat.\n12992,lsmdc3071_THE_DESCENDANTS-5307,18551,\"Without meeting his gaze, the teen takes a cola from the refrigerator, sits at the table, and slurps sullenly. Someone\",\"Without meeting his gaze, the teen takes a cola from the refrigerator, sits at the table, and slurps sullenly.\",Someone,gold,sits at an open construction sandwich.,regards her with a disapproving smirk.,shoves the beer in the opposite ear.,\"closes into a door, then disappears briefly to find someone walking alone at an outdoor table.\"\n12993,lsmdc3071_THE_DESCENDANTS-5307,18535,\"Later in the night, the car's headlights cut through the darkness. It\",\"Later in the night, the car's headlights cut through the darkness.\",It,gold,bursts into a factory.,turns up a driveway.,stops licking a small spot at his heels.,drops out onto a green and dirt road.\n12994,lsmdc3071_THE_DESCENDANTS-5307,18537,A woman leads someone and someone forward. Someone,A woman leads someone and someone forward.,Someone,gold,hurries ahead and knocks eagerly on a door.,turns away from a window and beating someone's forehead shattering against a glass door.,runs as he steps to his cell.,walks shoveling with a card over her shoulder.\n12995,lsmdc3071_THE_DESCENDANTS-5307,18541,\"A partition slides down, revealing a groggy teen girl putting on glasses. Now, in the darkness, the dorm supervisor\",\"A partition slides down, revealing a groggy teen girl putting on glasses.\",\"Now, in the darkness, the dorm supervisor\",gold,uses a flashlight to lead.,picks up a stretcher at two stands and peers around the room.,looks into a cupboard with two items and a fire along the wall in front of her.,shifts to his right.\n12996,anetv_V66cwBOS80A,18654,Several shots are then shown of people riding down a riving in a raft while some fall out. More clips,Several shots are then shown of people riding down a riving in a raft while some fall out.,More clips,gold,are shown of a man in a kayak and speeds off the diving board.,are seen of people speaking on people on horses as well as swimming around and laughing through a large group and a person speaking to,are shown of people riding in the water as well as falling out and yelling to the camera.,are shown attempting and helping themselves with another and brushing the back.\n12997,anetv_8_XQPqLdblg,14803,\"In split screens, the person plays a guitar while a lady moves side to side in front of a microphone. In split screens, a lady\",\"In split screens, the person plays a guitar while a lady moves side to side in front of a microphone.\",\"In split screens, a lady\",gold,opens the door and drops it.,stops the harmonica and continues to play.,stand on and talks to the camera while the people clap.,sings while a person plays the guitar.\n12998,anetv_8_XQPqLdblg,1150,\"Four squares are shown of the same woman dressed in different clothes. In three of the rectangles, the woman is singing in front of a mic and on the bottom, she\",Four squares are shown of the same woman dressed in different clothes.,\"In three of the rectangles, the woman is singing in front of a mic and on the bottom, she\",gold,lifts him off the wall and runs back to the floor.,begins to act around the camera.,is playing the guitar.,continues playing with the stick and how to properly play the flute.\n12999,anetv_Ke5MPiv-wrY,13900,\"The man is standing next to a couple of other guys, he jumps up in the air and does some kicks. Now he\",\"The man is standing next to a couple of other guys, he jumps up in the air and does some kicks.\",Now he,gold,gets to his feet and watches the two friends walk to the center.,is doing back flips across the mat.,goes the other way.,jumps onto the ground as they swim.\n13000,anetv_Ke5MPiv-wrY,13897,The bystander points to his head and the gymnast also does the same to his own head. The gymnast,The bystander points to his head and the gymnast also does the same to his own head.,The gymnast,gold,runs a repeated sequence and leaps through the air and lands before them with another flip in half.,\"pauses behind a counter, then jumps up then over to the front of the stage.\",dismounts from the bars on two bars.,is talking to the camera again explaining what happened during that routine.\n13001,anetv_Ke5MPiv-wrY,13896,He then starts walking towards a man on the side of the mat. The bystander points to his head and the gymnast also,He then starts walking towards a man on the side of the mat.,The bystander points to his head and the gymnast also,gold,holds his legs.,does the same to his own head.,rides off.,raises on the ground and stops before walking down.\n13002,anetv_Ke5MPiv-wrY,13906,\"This time he is wearing a yellow shirt and starts by doing a kick, then starts flipping backwards. Now he\",\"This time he is wearing a yellow shirt and starts by doing a kick, then starts flipping backwards.\",Now he,gold,is walking across the mat slowly.,throws up the slices and lands on his other leg with the string.,is trying to reach out to leave as he does so.,looks back from an asking someone again with jump ropes.\n13003,anetv_Ke5MPiv-wrY,13895,\"The shirtless man is shown flipping and tumbling across the screen again, this time he does not land his final flip and he falls onto his side. He then\",\"The shirtless man is shown flipping and tumbling across the screen again, this time he does not land his final flip and he falls onto his side.\",He then,gold,does a handstand and falls off his skateboard.,starts walking towards a man on the side of the mat.,takes her hand and tries doing it again but instead of jumping pople is shaking the bit.,dips the paint to give the ceiling a look and several images and the video are shown of the machine.\n13004,anetv_Ke5MPiv-wrY,13905,Now he is flipping again and reverses and starts flipping the other way. This time he,Now he is flipping again and reverses and starts flipping the other way.,This time he,gold,runs at this speed and keeps walking.,\"is wearing a yellow shirt and starts by doing a kick, then starts flipping backwards.\",is swinging a little to speed while ripping by his cars without falling off.,is making croquet and starts to go across it and do several tricks with someone.\n13005,anetv_Ke5MPiv-wrY,13902,He goes from a forward flip to back - flipping. Now he,He goes from a forward flip to back - flipping.,Now he,gold,is standing on the side line getting ready to do flips.,gives several glances as he entering a mall.,\"stands up, standing in experience with someone as the other teens warm up with him.\",tumbles off the escalator and prepping the ski with his wide - lipped bony hand.\n13006,anetv_Ke5MPiv-wrY,13903,Now he is standing on the side line getting ready to do flips. He,Now he is standing on the side line getting ready to do flips.,He,gold,ends the jumps and goes into his arms.,is doing some more flips and landing on the red mat.,grows in routine the gymnast turns before he moves the beam forward walks on just as swiftly as he does the derby and moves backward,puts off the shirt now pitching windex.\n13007,anetv_Ke5MPiv-wrY,13893,The man is talking to the camera. A woman with a blue bow in hair,The man is talking to the camera.,A woman with a blue bow in hair,gold,\"starts walking along the street beside the girl, who still stands by her arms.\",is talking to the camera and showing the stylists how to cut sections in the hair.,walks across the screen behind the man and begins talking to another woman who exits the screen.,looks leading the others.\n13008,anetv_Ke5MPiv-wrY,13904,He is doing some more flips and landing on the red mat. Now he,He is doing some more flips and landing on the red mat.,Now he,gold,jumps the tube below the edge and lands in his sand.,walks up and successfully doing splits in the air.,is flipping again and reverses and starts flipping the other way.,picks up a cow and attempts to walk on the mat.\n13009,anetv_Ke5MPiv-wrY,13890,The Awesomeness tv Network Logo Animation plays. A man,The Awesomeness tv Network Logo Animation plays.,A man,gold,is flipping and tumbling across a mat.,\"kneels at a table, with someone, over his shoulder, and stuffs a black platter with his hands.\",rises in front of a small recorder.,turns to his right.\n13010,anetv_Ke5MPiv-wrY,13892,\"The same man flips across the mat again, this time not wearing a shirt. The man\",\"The same man flips across the mat again, this time not wearing a shirt.\",The man,gold,\"mounts the pommel bar, somersaults in times, cartwheels, flips.\",bends down and picks up the barbell with one hand and then ties it around his body.,puts his leg up behind his back.,is talking to the camera.\n13011,anetv_Ke5MPiv-wrY,13891,A man is flipping and tumbling across a mat. The same man,A man is flipping and tumbling across a mat.,The same man,gold,picks his arc javelin.,is doing gymnastics on the parallel bars.,\"flips across the mat again, this time not wearing a shirt.\",continues to run for the utility pole roping over and over.\n13012,anetv_Ke5MPiv-wrY,13899,\"He starts flipping across the mat again. The man is standing next to a couple of other guys, he\",He starts flipping across the mat again.,\"The man is standing next to a couple of other guys, he\",gold,holds a dart behind his head.,kicks foward against the wall.,jumps up in the air and does some kicks.,gets up and stuffs the bag into his bag before he leaves.\n13013,anetv_Ke5MPiv-wrY,13898,A small video pops up in the lower right replaying the moment he falls. He,A small video pops up in the lower right replaying the moment he falls.,He,gold,starts flipping across the mat again.,takes his helm to the top of the curved stone door.,\"goes to the front door, takes it and steers it downstairs.\",fastens the corset in make - o - nightie.\n13014,anetv_Ke5MPiv-wrY,13901,Now he is doing back flips across the mat. He,Now he is doing back flips across the mat.,He,gold,goes from a forward flip to back - flipping.,\"hops in place, then lifts the high high barbells before dismounting.\",is laying down on a mat.,stands on the horse who raise his leg in the air.\n13015,anetv_Ke5MPiv-wrY,13894,\"A woman with a blue bow in hair walks across the screen behind the man and begins talking to another woman who exits the screen. The shirtless man is shown flipping and tumbling across the screen again, this time he does not land his final flip and he\",A woman with a blue bow in hair walks across the screen behind the man and begins talking to another woman who exits the screen.,\"The shirtless man is shown flipping and tumbling across the screen again, this time he does not land his final flip and he\",gold,falls onto his side.,wears confronts a man sitting next to a young man.,gets in for her.,runs up to board.\n13016,anetv_0NgQr2-AieQ,3643,A close up of a baby is seen when a person begins to wipe down the baby with a rag. The person,A close up of a baby is seen when a person begins to wipe down the baby with a rag.,The person,gold,wipes down the rag while looking to the camera.,continues to wipe down the baby as he laughs and looks up to the camera.,wipes a rag off the sides with a rag while still speaking into the camera.,continues washing the car as well as a rag laying around the side.\n13017,anetv_0NgQr2-AieQ,12399,\"A baby boy with large brown eyes is laying down on his back on a yellow blanket. As he lays there, a hand\",A baby boy with large brown eyes is laying down on his back on a yellow blanket.,\"As he lays there, a hand\",gold,begins to light filter into the pond so he saw over on the grass.,bends down near the water and begins swimming as he walk away.,\"comes into frame, starts putting the tattoo on the back of the boy.\",appears dabbing his face with a yellow and white rag.\n13018,anetv_2SYTRqm4Ym4,3854,People are sliding down a large slide. A person in an orange shirt,People are sliding down a large slide.,A person in an orange shirt,gold,is helping a woman in.,is sitting in the tub wiping off his shoes.,stands on the stairs next to the slide.,is standing on misses the building.\n13019,anetv_2SYTRqm4Ym4,3855,A person in an orange shirt stands on the stairs next to the slide. A woman in a purple shirt,A person in an orange shirt stands on the stairs next to the slide.,A woman in a purple shirt,gold,is swimming in a hula ring.,rises into the kitchen.,gets to the bottom and gives the person in the orange shirt a high five.,is holding a book.\n13020,lsmdc0041_The_Sixth_Sense-67852,13092,Someone removes the gloves from his hand and places them next to his plate. Someone,Someone removes the gloves from his hand and places them next to his plate.,Someone,gold,turns and looks to his penguin.,holds the cube with his fist holding the embedded cake in his hand.,moves them to the floor.,extends the wand again and he taps them on the canvas.\n13021,anetv_zfU85oBVpfA,6664,A man is kneeling on a mat while holding a pole. He,A man is kneeling on a mat while holding a pole.,He,gold,\"leans forward, demonstrating a technique.\",is running up to the pins.,begins to demonstrate how to do a small jump.,does a set of gymnastics on the bars.\n13022,anetv_zfU85oBVpfA,10224,A man is located inside a building. he,A man is located inside a building.,he,gold,wears a blue shirt and puts on the stilts.,begins welding shingles on a bicycle.,is cutting the grass with green leaves.,kneels down on a mat while holding a pole.\n13023,anetv_zfU85oBVpfA,6665,\"He leans forward, demonstrating a technique. He\",\"He leans forward, demonstrating a technique.\",He,gold,demonstrates him to buffer some inclined toward the final view.,\"shifts and knocks his head around, widening with puke, then throws the girls behind him.\",continues to talk about the pole and his position.,\"returns to the tv, and calls a correspondent for a good security.\"\n13024,anetv_zfU85oBVpfA,10225,He kneels down on a mat while holding a pole. He,He kneels down on a mat while holding a pole.,He,gold,wipes it off and with a second landing pounds on his mouth.,lifts the heavy barbell over his head and drops it repeatedly.,looks to the camera and gives various exercise equipment.,shows how to lean holding the pole.\n13025,lsmdc3049_MORNING_GLORY-23295,12460,Someone's sitting in bed. Her alarm,Someone's sitting in bed.,Her alarm,gold,\"clock, 9, 45, spots maid is ready.\",goes off at 1: 30.,\"shows, both girls guard her, emptying the glass of water.\",slackens around her.\n13026,lsmdc3049_MORNING_GLORY-23295,12462,\"She hugs her knees, then folds her arms across her. She\",\"She hugs her knees, then folds her arms across her.\",She,gold,wearing a slinky dress.,walks on down her full length.,pulls her down next to her microwave.,fidgets and stares into space.\n13027,lsmdc3049_MORNING_GLORY-23295,12463,She fidgets and stares into space. She,She fidgets and stares into space.,She,gold,starts to pace behind her way.,switches on the tv.,smiles happily and shrugs as she steps on the folded stage.,leans back in his seat.\n13028,lsmdc3049_MORNING_GLORY-23295,12464,She switches on the tv. She,She switches on the tv.,She,gold,switches on another tv.,smiles as they head down the stairs and start on their way.,gets in and covers the screen with her hands.,\"attempts to compose herself and walk out, followed by her colleagues.\"\n13029,lsmdc0011_Gandhi-53064,239,\"He does so with effort, and at last he sees someone. Someone\",\"He does so with effort, and at last he sees someone.\",Someone,gold,takes her phone out of the box and smoothes it out.,turns back to his work.,reaches down to pick up someone 'dress.,sits near the head of the cot so the three of them are on a level.\n13030,lsmdc0030_The_Hustler-64983,2184,\"She has on new dress and someone, looking a little ill at ease, has on a suit and tie. The headwaiter\",\"She has on new dress and someone, looking a little ill at ease, has on a suit and tie.\",The headwaiter,gold,taps her hands in the air.,seats them at a table.,has kisses someone's ear.,pulls the windscreen onto the staircase.\n13031,lsmdc0030_The_Hustler-64983,2183,\"It is a quiet, elegant restaurant, one with soft piano music and subdued lighting. People\",\"It is a quiet, elegant restaurant, one with soft piano music and subdued lighting.\",People,gold,\"go back and forth between the window and bothering, moves down the terrace of the cataleya gallery before laughing with clouds hat out.\",had walked past it the first day they met.,is seated beneath her and is pointing to her cigarette in a bowl in various choreographed dancing.,looks up at the people scratched by the lights of the street and does n't see it.\n13032,lsmdc3030_GROWN_UPS-14013,8668,He takes a handful of ashes and tosses them. He,He takes a handful of ashes and tosses them.,He,gold,covers his mouth as he douses the water.,takes a cell phone from his cradle and reads.,retrieves more and scatters it into the air with an underhand throw.,puts out his handkerchief and heads off.\n13033,lsmdc3030_GROWN_UPS-14013,8669,\"He retrieves more and scatters it into the air with an underhand throw. Stifling a grin, someone\",He retrieves more and scatters it into the air with an underhand throw.,\"Stifling a grin, someone\",gold,slaps the other man's leg.,sits up next to someone.,exchanges a glance with someone.,notices an unfinished crate.\n13034,lsmdc3030_GROWN_UPS-14013,8667,\"Holding the basketball net around the urn, someone removes its lid. He\",\"Holding the basketball net around the urn, someone removes its lid.\",He,gold,drinks a glass of vodka.,\"walks around, pick up his lock, office, and walks past.\",takes a handful of ashes and tosses them.,\"swallows more beer, then lets it sit up.\"\n13035,lsmdc3009_BATTLE_LOS_ANGELES-441,8677,Someone looks at the clock. The second hand,Someone looks at the clock.,The second hand,gold,takes his adjacent cup to the living room.,\"is seen in the back pocket, further in, partly covers.\",is lightly rocking again.,ticks well pass the 12.\n13036,lsmdc3009_BATTLE_LOS_ANGELES-441,8674,They put someone into the backroom. Someone,They put someone into the backroom.,Someone,gold,turns his back on him.,swipes it with a glove.,sashays down a ramp.,compares a clock with his watch.\n13037,lsmdc3009_BATTLE_LOS_ANGELES-441,8678,The second hand ticks well pass the 12. Someone,The second hand ticks well pass the 12.,Someone,gold,clearly kicks the pinata on the opposite man.,puts his arm over someone's shoulder as he pulls up from the garage and has the phone on her.,looks at his wrist watch.,goes to a stair rail to creep back the way.\n13038,lsmdc3009_BATTLE_LOS_ANGELES-441,8679,Someone looks at his wrist watch. He,Someone looks at his wrist watch.,He,gold,places a hand on his forehead then pulls himself upright.,sees someone watching nearby.,looks up at the clock.,starts to take someone's hand.\n13039,lsmdc3009_BATTLE_LOS_ANGELES-441,8673,Someone meets her gaze and she nods. They,Someone meets her gaze and she nods.,They,gold,\"look away, leaving someone alone and putting on his life jacket.\",put someone into the backroom.,come running up the stairs leading someone to the elevator.,join the girls boys in the door.\n13040,lsmdc3009_BATTLE_LOS_ANGELES-441,8676,Someone puts his head to his knees. Someone,Someone puts his head to his knees.,Someone,gold,closes his sketchbook and looks around the room.,looks at the clock.,steps closer to someone.,wags his arm as they look at someone in bed.\n13041,anetv_jC1He93cebg,3791,The woman moves her feet on the machine as well as showing how the machine works. Another man,The woman moves her feet on the machine as well as showing how the machine works.,Another man,gold,is seen standing on motor equipment with a machine and she has a machine.,is shown up on the bike and's bouncing over the top into the track.,is seen exercising and ends with text on the screen.,moves her hands up and down and ends by showing off the camera afterwards.\n13042,anetv_jC1He93cebg,3790,A woman is seen standing on a piece of exercise equipment and moving herself around. The woman,A woman is seen standing on a piece of exercise equipment and moving herself around.,The woman,gold,spins the object while moving on legs up and out using the machine.,continues several clips of the girl moves while looking off into the distance.,moves her hands up and down while holding the baby to the camera.,moves her feet on the machine as well as showing how the machine works.\n13043,anetv_xfOs5nRsSuQ,3271,Woman is standing in a green field practicing balance a ball in a golf club. another woman is in the court and,Woman is standing in a green field practicing balance a ball in a golf club.,another woman is in the court and,gold,its practicing with the girl passing the ball from a golf club to another.,\"grab two yellow colored ball off the floor, then a woman in yellow shirt throws the ball against her hands.\",grab a yellow bag.,is putting her tennis ball on the floor near the woman.\n13044,anetv_xfOs5nRsSuQ,3272,Another woman is in the court and its practicing with the girl passing the ball from a golf club to another. in the background cars,Another woman is in the court and its practicing with the girl passing the ball from a golf club to another.,in the background cars,gold,and a few young women fly past and watch in the different directions in the background of the ball.,\"continue to move around the field, after the woman hits the ball and the girl poses again.\",have a lot of the sporting field where the girl with the big tank top and hits a ball with another bat.,are parked in a parking lot.\n13045,anetv_h3qKte2gv14,11400,A person is holding a cigarette in front of a door. They,A person is holding a cigarette in front of a door.,They,gold,open the door and walk outside.,are wriggling a small bucket of water behind them on the couch.,begin dancing on the stage.,start getting the lead and cream into the dogs.\n13046,anetv_h3qKte2gv14,11403,They take a drag off the cigarette and blow the smoke. They,They take a drag off the cigarette and blow the smoke.,They,gold,hold it tightly in place as they watch.,put the pipe up and put it on their nails.,is completely smoking to the smoke.,make a funny face and move their head around.\n13047,anetv_h3qKte2gv14,13430,A man is smoking a cigarette in front of a door. He,A man is smoking a cigarette in front of a door.,He,gold,is cleaning the sidewalk.,is using a mask on the window.,is standing and opens the door.,is playing a saxophone.\n13048,anetv_h3qKte2gv14,11401,They open the door and walk outside. They,They open the door and walk outside.,They,gold,are standing outside and light the cigarette.,\"pause, then see someone leaving her through the shadows.\",teach in their attire.,ride in a square in vehicles.\n13049,anetv_h3qKte2gv14,13431,He is standing and opens the door. He then,He is standing and opens the door.,He then,gold,turns the camera toward himself and blows smoke up his own nose.,begins to timer on his drum set.,takes a large ax and turns his right pole around to see a scene in between nights.,shows how to make tiled clean and vacuums the tiles to loosen it around.\n13050,anetv_h3qKte2gv14,11402,They are standing outside and light the cigarette. They,They are standing outside and light the cigarette.,They,gold,take a drag off the cigarette and blow the smoke.,tosses the iron down and is wiping down his knife on the ground free of the fire.,are pouring to the camera.,hang on the table together and keep them in harsh eye shadow.\n13051,anetv_h3qKte2gv14,11404,They make a funny face and move their head around. They,They make a funny face and move their head around.,They,gold,\"begin to hit the ball again, while another walks by and the ball on the wall ends.\",wipe their face all over the faces.,begin to crowd towards smoke.,take a drag and blow the smoke towards the camera.\n13052,anetv_cb5Xy7k7z1w,7529,A young girl and gymnast performs a gymnastic exercise on the balancing beam at a professional sports event in front of many photographers and an audience in the stands. A young gymnast in a blue outfit,A young girl and gymnast performs a gymnastic exercise on the balancing beam at a professional sports event in front of many photographers and an audience in the stands.,A young gymnast in a blue outfit,gold,begins to steps while the female athlete lifts multiple timers of all levels into the air.,is practicing flying shotput springs.,\"stands in front of a balance beam, jumps on it and begins to perform a routine involving flips.\",then dives before a beam.\n13053,lsmdc0053_Rendezvous_mit_Joe_Black-71468,18332,\"The kiss lingers, someone breaks away, reaches for the door, looks back longingly at someone and then she is gone, someone closing the door softly after her. He turns back into the foyer, looks up, someone is on the balcony, it\",\"The kiss lingers, someone breaks away, reaches for the door, looks back longingly at someone and then she is gone, someone closing the door softly after her.\",\"He turns back into the foyer, looks up, someone is on the balcony, it\",gold,\"'s someone's van, and takes someone.\",stands completely in an condition.,is clear he has observed people.,\"closes over someone, toward him.\"\n13054,lsmdc0053_Rendezvous_mit_Joe_Black-71468,18333,\"He turns back into the foyer, looks up, someone is on the balcony, it is clear he has observed people. Someone, in a state of shock,\",\"He turns back into the foyer, looks up, someone is on the balcony, it is clear he has observed people.\",\"Someone, in a state of shock,\",gold,\"lies on his hands and goes, looking at the cloth in the utility belt.\",gets on his suvs.,does n't answer for a moment.,\"stands a hotel - high, singing and stands three columns of sonia, their body pipes.\"\n13055,lsmdc0053_Rendezvous_mit_Joe_Black-71468,18336,Someone waits guardedly at the bottom of the stairs as someone descends. Someone,Someone waits guardedly at the bottom of the stairs as someone descends.,Someone,gold,\"senses someone's tone, does n't answer.\",follows someone into the cashier's room.,\"regards the sickly figure in her hair, almost terrified.\",looks over as someone takes off his hairless oyster engagement cup.\n13056,lsmdc3090_YOUNG_ADULT-44064,14580,\"Someone gazes downward, glances at someone, then watches the band. She\",\"Someone gazes downward, glances at someone, then watches the band.\",She,gold,tentatively watches someone pull down.,\"spies on someone, who flips off.\",looks across the room.,\"sits at her computer, taking her page out of her eyes and staring, her breath furrowing.\"\n13057,lsmdc3090_YOUNG_ADULT-44064,14579,Someone gazes at someone who smiles and nods his head as he watches the band. Someone,Someone gazes at someone who smiles and nods his head as he watches the band.,Someone,gold,jump backstage desks as dancers sing to the coy.,walks to some siding.,\"gazes downward, glances at someone, then watches the band.\",\"approaches someone, who stands and sits back with someone on his elbows.\"\n13058,lsmdc3090_YOUNG_ADULT-44064,14581,She looks across the room. Someone,She looks across the room.,Someone,gold,\"is there, petting someone.\",watches her from the kitchen doorway.,pulls onto a narrow country road in the actual hotel.,\"walks stiffly behind her, demonstrating how to play to her.\"\n13059,anetv_2wC0d2XUses,8654,Two kids are seen playing a game of shuffleboard on the side of a boat while the camera watches. The kids,Two kids are seen playing a game of shuffleboard on the side of a boat while the camera watches.,The kids,gold,continue taking turns while running up and down the path on the boat.,continue to push the ball around in the end and ends with one team holding a bow and spinning and cheering.,continue playing up badminton with one another while the camera captures the men away.,continue brushing through the ocean while the camera captures the movements.\n13060,lsmdc0022_Reservoir_Dogs-59282,12421,The camera moves into a closeup of someone. There,The camera moves into a closeup of someone.,There,gold,\"a balance, someone slides momentum smack her.\",'s a long pause while he rolls over what someone has said.,\", old smoke trails from the ceiling.\",\"and fights, a little girl sees over him.\"\n13061,anetv_MJZjSHG6tBY,498,Then people walk to a bar and sing inside drinking beer. Women,Then people walk to a bar and sing inside drinking beer.,Women,gold,are enter the polishing glasses with beers.,serves drinks from a fountain.,are marching in the street and is having fun in a marathon.,lie on their facing cushions.\n13062,anetv_MJZjSHG6tBY,500,\"A man talks on front a microphone and people continue singing and showing beer. Then, people\",A man talks on front a microphone and people continue singing and showing beer.,\"Then, people\",gold,watch out to play with other people in the audience who joke around them an not other men speak to each other.,\"are again singing, drinking and dancing outdoors.\",talk on television and sit next to people watching.,demonstrate the man man dance on his back performing dance moves.\n13063,anetv_E15z95ZcEYU,1574,A man is using a large needle on her arm. He,A man is using a large needle on her arm.,He,gold,is filling in a tattoo.,removes the contact another and then holds it in his eye.,puts a nozzle in the machines and starts before laying her hair out the legs.,grabs a clamp and a piece of metal.\n13064,anetv_E15z95ZcEYU,1575,He is filling in a tattoo. The woman,He is filling in a tattoo.,The woman,gold,shaves the guy's hand.,stares blankly at the ceiling.,has a special mask.,leaves a placing stain under his wrap.\n13065,anetv_E15z95ZcEYU,1573,A woman is laying back in a chair. A man,A woman is laying back in a chair.,A man,gold,is kicking a small dog on the floor.,is using a large needle on her arm.,talks to her in the mirror while talking.,is holding a tattoo on his shoulder.\n13066,lsmdc1042_Up_In_The_Air-88386,5365,\"He tries a swipe card at a door, but it does n't open. He\",\"He tries a swipe card at a door, but it does n't open.\",He,gold,opens the door with another card.,sets down his briefcase and throws a hand around her.,\"catches someone who's staring, his mouth slack.\",\"holds out his hand, knocks the door closed.\"\n13067,lsmdc1042_Up_In_The_Air-88386,5367,She lies on the bed. Someone,She lies on the bed.,Someone,gold,peers through a glass window at someone's shadow.,is laying on cushions on the floor.,is deep in thought.,sits on the bed facing him.\n13068,lsmdc1042_Up_In_The_Air-88386,5371,He hangs a sign on the handle. Someone,He hangs a sign on the handle.,Someone,gold,slices through a blueprint and tumbles across one of the makeshift boats.,takes the footage from someone.,swims in the hotel swimming pool.,find ominous footprints on the bluffs.\n13069,lsmdc1042_Up_In_The_Air-88386,5372,\"In a gents outfit, as someone looks at ties. He\",\"In a gents outfit, as someone looks at ties.\",He,gold,bathes his face as he sees.,steps up beside the wall and smiles at someone as he prepares to boot.,\"someone slows down, with his overcoat flashing, someone strides calmly into the hanger.\",takes out his cellphone and looks at the display.\n13070,lsmdc1042_Up_In_The_Air-88386,5368,Someone is laying on cushions on the floor. People,Someone is laying on cushions on the floor.,People,gold,are eating the food eating the breakfast.,continue to walk up the street.,sit facing each other and open their laptop computers.,wait through a steamy office.\n13071,lsmdc1042_Up_In_The_Air-88386,5366,\"Someone, in her 30s, with a curvaceous figure, walks across the room, naked apart from a tie around her waist. She\",\"Someone, in her 30s, with a curvaceous figure, walks across the room, naked apart from a tie around her waist.\",She,gold,presses himself down and stares at her.,stares at the doll.,returns to one hoodie.,lies on the bed.\n13072,lsmdc1042_Up_In_The_Air-88386,5369,People sit facing each other and open their laptop computers. They both,People sit facing each other and open their laptop computers.,They both,gold,type an entry and close their computers.,turn around to another beat.,dip his glasses in their lap.,swim slowly to glasses then read.\n13073,lsmdc3003_40_YEAR_OLD_VIRGIN-1164,15453,\"Now in a hotel corridor, someone walks past a maid and knocks on a door. He\",\"Now in a hotel corridor, someone walks past a maid and knocks on a door.\",He,gold,holds on tightly as an elevator enters allowing a passage before someone who stands behind her.,opens it and peeks his head inside.,\"catches the robe, which catches the doorknob, puts it down in front of her and grabs her on the tail.\",\"undoes a button, then stabs a colored button which spills on a boot as he peers across a panel.\"\n13074,lsmdc3003_40_YEAR_OLD_VIRGIN-1164,15454,\"He opens it and peeks his head inside. Entering the suite, he\",He opens it and peeks his head inside.,\"Entering the suite, he\",gold,\"spots a pair of baths smoking, which he desperately watches.\",looks around and steps into an empty sitting area.,looks over at the jump stools balanced in his hands.,drags a panel of loose leggings into someone's pants pockets.\n13075,lsmdc3036_IN_TIME-15368,4198,\"Eyeing him, she grimaces. On the patio, the young woman\",\"Eyeing him, she grimaces.\",\"On the patio, the young woman\",gold,blinks quizzically and glares down at her.,\"sits on a chair with his foot crossed, and looks at it.\",\"strides toward a small alcove, lost in thought.\",stops staring as a waitress serves her.\n13076,lsmdc3036_IN_TIME-15368,4195,\"Swallowing, someone swigs from a champagne flute. A waitress\",\"Swallowing, someone swigs from a champagne flute.\",A waitress,gold,carries an umbrella to the water.,leave an outdoor dining area.,\"pass someone, who nods and leaves.\",strolls up to his table.\n13077,lsmdc3036_IN_TIME-15368,4193,He shoots furtive glances at his surroundings as he devours his French fries. The auburn - haired young woman,He shoots furtive glances at his surroundings as he devours his French fries.,The auburn - haired young woman,gold,musters a lingering nod and cups both hands on his chest.,watches him from her table on a patio outside.,aims the gun at the bespectacled mustached american and nods.,looks at her sister.\n13078,lsmdc3036_IN_TIME-15368,4192,\"Later, a view through the hotel restaurant's window shows someone eating alone. He\",\"Later, a view through the hotel restaurant's window shows someone eating alone.\",He,gold,shoots furtive glances at his surroundings as he devours his french fries.,\"tweaks his arm with a glare and, briefly, he rounds a corner.\",\"sets his board down on a table, several yards away from him.\",takes down the bags.\n13079,lsmdc3036_IN_TIME-15368,4189,\"Now, someone lies asleep in his elegant suite. Awaking, he\",\"Now, someone lies asleep in his elegant suite.\",\"Awaking, he\",gold,sits up and looks around.,\"smoothes himself up, sitting in his overcoat and jeans.\",props himself up on the windowsill.,walks into the den.\n13080,lsmdc3036_IN_TIME-15368,4190,\"Lying back down, he lets his head drop onto the pillow and closes his eyes. He\",\"Lying back down, he lets his head drop onto the pillow and closes his eyes.\",He,gold,stirs up a steam pressure gauge.,opens them again and furrows his brow.,stares tenderly at his hairy hand.,holds it out and rises.\n13081,lsmdc3036_IN_TIME-15368,4194,\"The auburn - haired young woman watches him from her table on a patio outside. Swallowing, someone\",The auburn - haired young woman watches him from her table on a patio outside.,\"Swallowing, someone\",gold,swigs from a champagne flute.,drives with her arms fixed in her own.,\", a seated man brings out a laptop.\",shifts her wounded gaze.\n13082,lsmdc3036_IN_TIME-15368,4191,\"He opens them again and furrows his brow. Later, a view through the hotel restaurant's window\",He opens them again and furrows his brow.,\"Later, a view through the hotel restaurant's window\",gold,shows someone eating alone.,shows someone stepping toward drawing pool.,shows a cross - up check.,shows the palladium delivery card carrying the escalator.\n13083,anetv_uWnlmM2uOs4,8374,One girl wearing a bikini and holding a Coke can in her hand is rubbing sunscreen on another woman's chest. There,One girl wearing a bikini and holding a Coke can in her hand is rubbing sunscreen on another woman's chest.,There,gold,black bikers finishes her hand to ensure her little evening.,\", the team walks up to the scrub one along the freezer and holds the sink.\",\"girl is next to the white foam mix then gives two lather to the other, and the woman starts washing the container against her\",\"are some men standing in swim trunks behind them, talking to each other.\"\n13084,anetv_uWnlmM2uOs4,8373,There are many people in bathing suits standing in a lake with motor boats behind them. One girl wearing a bikini and holding a Coke can in her hand,There are many people in bathing suits standing in a lake with motor boats behind them.,One girl wearing a bikini and holding a Coke can in her hand,gold,is rubbing sunscreen on another woman's chest.,put her hands down in the front of the canoe paddling.,\"as she's pass top and finally they both, she looks very calm down and walks to her right woman and grabs it in\",joins a group of people in an alleyway.\n13085,anetv_1VmqefkNV_8,1016,People in the audience watching him are dancing with him. A man,People in the audience watching him are dancing with him.,A man,gold,in front of him is paused.,is holding a clipboard at his hands.,lifts him and she spins him to make him comfortable.,walks in front of the crowd.\n13086,anetv_K757XUwinrc,216,A woman is seen holding onto a brush and grabbing a brush. Another girl,A woman is seen holding onto a brush and grabbing a brush.,Another girl,gold,brushes through her hair while the camera pans her movements.,is seen under the water and ending up a paint brush.,is shown begins to brush her teeth while smiling in the camera.,is seen holding a razor and rubbing it all over the camera.\n13087,anetv_Y2UkP0rySHA,18014,People are standing at the top of a hill. A person,People are standing at the top of a hill.,A person,gold,water skis on the mountain.,is diving out to the ocean outdoors.,is flipping down the group on a long.,is skiing down a hill of snow.\n13088,anetv_Y2UkP0rySHA,592,Once he starts he takes his time moving his body with the gear. He,Once he starts he takes his time moving his body with the gear.,He,gold,begins lifting the weight towards it over his head.,starts working out and finishes by talking.,\"talks for a few seconds, then stands on a circular motion on the elliptical.\",takes his time building up some speed moving from one side to the other.\n13089,anetv_Y2UkP0rySHA,18015,A person is skiing down a hill of snow. They,A person is skiing down a hill of snow.,They,gold,get to the bottom of the hill and stop.,are going down a steep hill in front of the domed hill.,are snowboarding over the ski slope.,stand in front of a board on one hill.\n13090,anetv_Y2UkP0rySHA,591,A man is getting ready to go down a very snowy mountain using a very interesting contraption. Once he starts he,A man is getting ready to go down a very snowy mountain using a very interesting contraption.,Once he starts he,gold,gets a different height and does it again one last time in the center.,takes his time moving his body with the gear.,demonstrates his might as to perform more townspeople.,skiing down the mountain and goes back to steppers difficulty.\n13091,anetv_mYfo8LhPB5Y,1373,The man plays the accordion. The man,The man plays the accordion.,The man,gold,starts playing the violin on his shoulders and talking.,puts the tire down and plays the accordion.,plays a song on the piano.,sits up while continuing to play the accordion.\n13092,anetv_kk1Iqyox4c8,1105,A group of baseball players wait on the field. The man,A group of baseball players wait on the field.,The man,gold,continues to play the saxophone for the crowd.,plays ice ball while passing other players.,celebrates his race in a street.,returns hitting the javelin.\n13093,anetv_kk1Iqyox4c8,1104,A man walks up to a microphone while playing the sax. A group of baseball players,A man walks up to a microphone while playing the sax.,A group of baseball players,gold,are sitting behind the counter watching them.,throws a soccer ball on the field.,wait on the field.,run around in a game of croquette.\n13094,anetv_h3uTJ7HknzA,19650,\"A person dance and flips Capoeira while a band play music. Then, a woman\",A person dance and flips Capoeira while a band play music.,\"Then, a woman\",gold,stand in front of the drums and show the young girl wearing dark glasses.,falls on the floor and then gets off into the crowd.,\"talks with the man, after the man dance in group with other people.\",holds a violin on an outdoor field leading behind her.\n13095,anetv_kpE3q-Hmd7A,19027,A group of men are inside of a gym space stepping on aerobic steppers at a fast pace. They,A group of men are inside of a gym space stepping on aerobic steppers at a fast pace.,They,gold,are sitting behind opponents briefly.,\"are involved, sullen to the coach.\",are seen sitting on top of a gym and hitting a drum in.,look to be having a great time and begin reaching out with their arms and varying their workout.\n13096,anetv_kpE3q-Hmd7A,19028,They look to be having a great time and begin reaching out with their arms and varying their workout. They,They look to be having a great time and begin reaching out with their arms and varying their workout.,They,gold,help the person go and shave their legs.,continue on performing another series of similar workout with their steppers.,point to the center on the platform.,shift as if out of the swarm.\n13097,anetv_kpE3q-Hmd7A,19030,\"They move side to side, alternating their movements to a specific rhythm. Their last of their workouts seem to be a compilation of everything they have been doing thus far and they\",\"They move side to side, alternating their movements to a specific rhythm.\",Their last of their workouts seem to be a compilation of everything they have been doing thus far and they,gold,sings at the end with their white turns in.,land in before mixing their arms arms and feet during thirty seconds.,go to their feet.,are varying their movements within it.\n13098,anetv_kpE3q-Hmd7A,19029,They continue on performing another series of similar workout with their steppers. They,They continue on performing another series of similar workout with their steppers.,They,gold,intro straps in unison rope as they dance.,\"move side to side, alternating their movements to a specific rhythm.\",\"perform increasingly stunts as a ballerina tips again and they continue performing impressive tricks, looking at a smiley face to the camera.\",do back splits moves and they finish throughout the entire sequence gateway of the dance routine.\n13099,lsmdc3079_THINK_LIKE_A_MAN-36783,7285,Someone tosses away the rest of her hors d'oeuvre and wraps her arms around someone. Now someone,Someone tosses away the rest of her hors d'oeuvre and wraps her arms around someone.,Now someone,gold,appears at a door in the bathroom area by a high motorized chair.,tries to iron a pair of black leather shoes with a grainy message on it as they head down the corridor.,sits alone in his parked car.,pours bourbon and soda and gold onto a table.\n13100,lsmdc3079_THINK_LIKE_A_MAN-36783,7277,\"Keeping his gaze on here, someone gives a soft nod. The couple\",\"Keeping his gaze on here, someone gives a soft nod.\",The couple,gold,approaches the table and a nearby service cart.,descends to the front of the rows of living chairs.,look around their swimming trunks.,backtracks to the bottom to meet his gaze.\n13101,lsmdc3079_THINK_LIKE_A_MAN-36783,7274,\"Wide - eyed, someone watches him pour a glass. He\",\"Wide - eyed, someone watches him pour a glass.\",He,gold,\"shows the cash to someone, cringing from parted - lipped, still looking on.\",\"steps close, offering a glass.\",gazes up at her reflection.,\"fills his ice in glass, then glances up at his big spectacles.\"\n13102,lsmdc3079_THINK_LIKE_A_MAN-36783,7275,\"She toasts bluntly, then takes another side - step. Finishing her sip of wine, someone\",\"She toasts bluntly, then takes another side - step.\",\"Finishing her sip of wine, someone\",gold,closes her eyes ecstatically.,stops to a sink and talks some more.,strolls toward a window in the lounge.,hurries to the window and signals to someone along the corridor as he walks back.\n13103,lsmdc3079_THINK_LIKE_A_MAN-36783,7283,\"Tucking her hair behind her ear, she gives him a little shrug. She\",\"Tucking her hair behind her ear, she gives him a little shrug.\",She,gold,\"swallows his gaze, then gets up and backs up.\",\"closes her eyes for a moment, then faces someone.\",\"slumps down against the sofa of the couch, and looks around wildly.\",\"pulls her against him and kisses her, causing her to make her lip.\"\n13104,lsmdc3079_THINK_LIKE_A_MAN-36783,7279,\"As someone wraps his arms around someone from behind, someone arrives bearing a covered tray. He\",\"As someone wraps his arms around someone from behind, someone arrives bearing a covered tray.\",He,gold,shows someone's candle.,fumbles the trays lid.,grabs a silver and dollar bill.,pours down the cards again.\n13105,lsmdc3079_THINK_LIKE_A_MAN-36783,7276,\"Finishing her sip of wine, someone closes her eyes ecstatically. Keeping his gaze on here, someone\",\"Finishing her sip of wine, someone closes her eyes ecstatically.\",\"Keeping his gaze on here, someone\",gold,tilts his head and faces the front desk.,gets into his car and turns away.,gives a soft nod.,notices a framed drawing of a wig and necklace.\n13106,lsmdc3079_THINK_LIKE_A_MAN-36783,7280,\"He fumbles the trays lid. As someone leaves the couple, he\",He fumbles the trays lid.,\"As someone leaves the couple, he\",gold,shoves one of the hors d'oeuvres into his mouth.,shifts a full attention to his guest.,halts and cocks his head in an arcade look.,pulls up the broken case.\n13107,lsmdc3079_THINK_LIKE_A_MAN-36783,7282,\"As they hold each other close, they gaze out at the city rooftops. Tucking her hair behind her ear, she\",\"As they hold each other close, they gaze out at the city rooftops.\",\"Tucking her hair behind her ear, she\",gold,leafs through her hair.,turns to a woman in a wheelchair.,rests her head on her shoulder.,gives him a little shrug.\n13108,lsmdc3079_THINK_LIKE_A_MAN-36783,7281,\"As someone leaves the couple, he shoves one of the hors d'oeuvres into his mouth. As they hold each other close, they\",\"As someone leaves the couple, he shoves one of the hors d'oeuvres into his mouth.\",\"As they hold each other close, they\",gold,grab someone's sight to look her over.,pass together for the wedding.,meet with their lifeless hands.,gaze out at the city rooftops.\n13109,lsmdc3079_THINK_LIKE_A_MAN-36783,7278,\"The couple approaches the table and a nearby service cart. As someone wraps his arms around someone from behind, someone\",The couple approaches the table and a nearby service cart.,\"As someone wraps his arms around someone from behind, someone\",gold,arrives bearing a covered tray.,goes into his apartment hanging on outside.,dances against the ipod.,is absorbed in a seat.\n13110,anetv_MGF7I9aCPPM,17053,She is then doing push ups on the ground. She,She is then doing push ups on the ground.,She,gold,continues to make the rope flying out and jumping over the pole.,keeps jumping upstairs as they continue push.,does sit ups on the ground.,pushes through the classroom and ends by jumping.\n13111,anetv_DbuQn8EOJx0,16644,A boy sits in a room and talks to a camera while holding a demonstrating how to use an electronic cigarette. The boy,A boy sits in a room and talks to a camera while holding a demonstrating how to use an electronic cigarette.,The boy,gold,reaches down encasement holds his hatchet and replaces it on the handle.,watches the man talk again while diving and the grooming the sports practice is shown.,unscrews the cigarette to reveal the inside mechanism.,puts the saxophone down on the floor.\n13112,anetv_DbuQn8EOJx0,16645,\"The boy unscrews the cigarette to reveal the inside mechanism. The boy puts the cigarette back together and begins to smoke it as a woman walks by in the background, and then he\",The boy unscrews the cigarette to reveal the inside mechanism.,\"The boy puts the cigarette back together and begins to smoke it as a woman walks by in the background, and then he\",gold,puffs out of the hookah.,continues to talk to the camera.,holds the lighter in his hands.,goes back to talk again.\n13113,lsmdc0004_Charade-47580,8460,Someone looks around - - there is an open door at the end of a short hall. He and someone,Someone looks around - - there is an open door at the end of a short hall.,He and someone,gold,are still arriving at the same door as the stairs.,\"go to it, camera following.\",come up the passageway opening.,run up and down the passageway.\n13114,lsmdc0004_Charade-47580,8454,They are all occupied except one and she looks inside it. The receiver,They are all occupied except one and she looks inside it.,The receiver,gold,jokes when someone m face dazed and pissed.,\"hangs by its cord, swinging back and forth.\",morphs from his hand.,\"gets up, leaving the window just inches to reveal the interlocked spitting fire.\"\n13115,lsmdc0004_Charade-47580,8459,As someone follows someone out of the elevator. Someone looks around - - there,As someone follows someone out of the elevator.,Someone looks around - - there,gold,\"is something in his hand, emerging from an oval archway.\",'s a line of people walking up the sidewalk on their own with double agents.,\"is a whirlwind of blood inside, now the lady runs up to the base of the grand staircase.\",is an open door at the end of a short hall.\n13116,lsmdc0004_Charade-47580,8453,She opens the door of the cabin and starts out. As someone,She opens the door of the cabin and starts out.,As someone,gold,\"steps over, sees a cat.\",steps out of her cabin and starts looking in the others.,pulls off his sunglasses.,makes her way up a modest carriage.\n13117,lsmdc0004_Charade-47580,8456,\"The self - service elevator doors open, one or two passengers come out and people enter. A young girl\",\"The self - service elevator doors open, one or two passengers come out and people enter.\",A young girl,gold,steps up off her bed.,starts in after them.,leans out in a chair.,stands at its side.\n13118,lsmdc0004_Charade-47580,8455,\"The receiver hangs by its cord, swinging back and forth. People\",\"The receiver hangs by its cord, swinging back and forth.\",People,gold,\"sit on it, his head bowed.\",pick up the book again.,crawls farther up toward the slippery black door.,\"stand together, waiting for the elevator, someone clearly holding a gun in the pocket of his raincoat.\"\n13119,lsmdc0004_Charade-47580,8458,He reaches out and presses the top button with his metal hand. As someone,He reaches out and presses the top button with his metal hand.,As someone,gold,\"approaches the driver of the car, she halts.\",follows someone out of the elevator.,opens the helicopter door for module and enters.,\"opens his hands repeatedly and looks down at someone, who shoots a folded slip of paper against the front.\"\n13120,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73123,678,He takes a bite of burger. Someone,He takes a bite of burger.,Someone,gold,cocks it from someone.,sets the sandwich in his hands.,rolls his eyes as he listens in.,\"stares at it, as it passes before him.\"\n13121,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73123,676,Someone lowers her eyes as a golden haired woman in her mid - 40s wearing expensive sunglasses steps into the lift and turns her back on them. Someone,Someone lowers her eyes as a golden haired woman in her mid - 40s wearing expensive sunglasses steps into the lift and turns her back on them.,Someone,gold,approaches an alien pulls someone's back.,finds someone laptop in a basement holding a tie.,\"goes to swallow a mouthful of burger, but gags.\",grips her shoulders with both hands as they continue kicking in energetically.\n13122,anetv_Zi2Pah5-BXI,2719,The tattoo artist turns off the light and stops his work. The man,The tattoo artist turns off the light and stops his work.,The man,gold,wraps the paper around pages of the tattoo.,stands up and shows off his tattoo.,takes the tattoo down.,sharpens the machine briefly and inserts the needle again.\n13123,anetv_Zi2Pah5-BXI,2718,The tattoo artist wipes the area that he is working on and continues drawing. The tattoo artist,The tattoo artist wipes the area that he is working on and continues drawing.,The tattoo artist,gold,points to his face and adjusts his tattoo.,is drawing thick captions before the person's hand appears.,turns off the light and stops his work.,is seen reacting to the camera's tattoo tattoo and attempting again.\n13124,anetv_Zi2Pah5-BXI,2717,The man talks while a seated with a tattoo artist working on his shoulder. The tattoo artist,The man talks while a seated with a tattoo artist working on his shoulder.,The tattoo artist,gold,shows a doctor pointing in over showing information about his tattoo.,is painting the client's nails to its tattoo prints and a large tattoo.,is his design in hand and showed the tattoo on the back of the second man.,wipes the area that he is working on and continues drawing.\n13125,anetv_Zi2Pah5-BXI,2716,A man sits on a wooden bench up against a window with trophies. The man,A man sits on a wooden bench up against a window with trophies.,The man,gold,talks while a seated with a tattoo artist working on his shoulder.,rises as scenes of the planning clip is shown before the woman gets washed with a bottle of orange and orange paint.,\"climbs different parts onto a wall, then lifts the top over the camel.\",returns to the camera and talks on the bench and shows the bed.\n13126,anetv_Zi2Pah5-BXI,2715,The exterior a store is seen from the parking lot. A man,The exterior a store is seen from the parking lot.,A man,gold,sits on a wooden bench up against a window with trophies.,holds out the trunk.,holds a stick and fills the glass with water.,is seen looking at the camera and continuing to work around on a bike.\n13127,anetv_GKBYgS99oiI,637,A girl is shown trying to change a tire. She,A girl is shown trying to change a tire.,She,gold,\"successfully removes the tire, then replaces it with a spare, showing off their dirty hands afterward.\",follows knitting as she works.,is in a car take positions in the dirt.,\"stops in front of a tree, ties the wheel and climbs into the sand.\"\n13128,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5314,\"Someone lifts his gaze, his hazel eyes gleaming. In slow motion he\",\"Someone lifts his gaze, his hazel eyes gleaming.\",In slow motion he,gold,slows and stretches out his arms.,stands and makes his way to the stage.,gives someone a hug.,looks back at someone as he fires.\n13129,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5310,\"At graduation, someone's expression grows pensive. At the airport someone\",\"At graduation, someone's expression grows pensive.\",At the airport someone,gold,rafters work together through the water and rests the wedding raft on a huge inflatable boat.,lowers her gaze then smiles at someone again.,\"straightens up, then opens the hangar to find a powerful blow of someone working on his wand.\",notices and addresses two men.\n13130,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5334,She faces someone intently then looks back at the painting. The two teens hesitantly,She faces someone intently then looks back at the painting.,The two teens hesitantly,gold,met each other's gaze.,shift and the boys finish their descent.,dance on someone's knee.,emerge from his bedroom.\n13131,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5329,She joins him at his side then faces the portrait again. She,She joins him at his side then faces the portrait again.,She,gold,takes his hat back and inspects himself.,\"stands and leaves his team wearing pink helmets, and carrying the case in each hand.\",looks up at him with a teasing smirk.,returns an eye into an egg mixture.\n13132,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5304,The art teacher faces someone with a cocked eyebrow. He,The art teacher faces someone with a cocked eyebrow.,He,gold,\"lowers his eyes, revealing its features propped with a pair of french automobiles.\",studies an ink holding and sets the card keys.,\"shoves the boy, then envelops him in a proud embrace.\",regards lovingly at several spots of mercenaries surround the robber.\n13133,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5303,\"He steps back, his hands on his hips and regards it shrewdly as his troubled student stands nearby. The art teacher\",\"He steps back, his hands on his hips and regards it shrewdly as his troubled student stands nearby.\",The art teacher,gold,faces someone with a cocked eyebrow.,\"face someone, who stands with his pad on his clasped hands.\",\"enters, his back to us and turns.\",snickers him in a graceful pose.\n13134,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5277,She rubs her neck then rests her head in her hand and allows a brief sad smile. Someone,She rubs her neck then rests her head in her hand and allows a brief sad smile.,Someone,gold,looks down and bites her lips.,\"gazes at someone, who stands in her bathrobe.\",\"runs her fingers along his mouth, then gazes earnestly at her.\",reaches his hands and someone wraps her legs around his neck and kisses him.\n13135,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5327,\"As she passes obliviously behind her own portrait, moving with slow deliberate steps. Approaching the young artist, she\",\"As she passes obliviously behind her own portrait, moving with slow deliberate steps.\",\"Approaching the young artist, she\",gold,pauses for a moment then looks down at a mirror.,regards the portrait appraisingly then tilts her head and smiles.,frowns down at a photograph of her coworker.,peers into view as he down the corridor.\n13136,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5296,\"His other arm curls around the massive stack of completed homework assignments as he heads down the sidewalk at a brisk pace. Now, cars\",His other arm curls around the massive stack of completed homework assignments as he heads down the sidewalk at a brisk pace.,\"Now, cars\",gold,\"arrive, selling tanks and stacks to bags.\",fly across the abandoned platform.,drive across a above parking lot.,line up outside an international terminal at an airport.\n13137,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5311,\"At the airport someone lowers her gaze then smiles at someone again. At school, someone\",At the airport someone lowers her gaze then smiles at someone again.,\"At school, someone\",gold,stands in the kitchen.,sees a basilisk fang in his hand.,notices someone's tense demeanor.,poses with her older son.\n13138,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5290,Someone kisses him and drapes her arms around his shoulders. He,Someone kisses him and drapes her arms around his shoulders.,He,gold,removes her seat belt.,leaps out of his wheelchair domed body.,lays back on his seat.,smiles down at her.\n13139,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5320,\"Elsewhere someone turns, her surroundings washed out by sunlight. At graduation, someone's eyes\",\"Elsewhere someone turns, her surroundings washed out by sunlight.\",\"At graduation, someone's eyes\",gold,strolls up to the german.,widen as it shows her people.,shine as he lingers on the stage.,move tensely drawn under the soft glow of wedding lights and door.\n13140,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5324,In the doorway someone stands with her hands clasped before her. She offers a little smile and he,In the doorway someone stands with her hands clasped before her.,She offers a little smile and he,gold,wields a second guitar.,regards her with shining eyes.,puts an arm to someone's shoulder.,points it behind her back.\n13141,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5308,\"They briefly share a smile. At the boarding gate, someone\",They briefly share a smile.,\"At the boarding gate, someone\",gold,hops on its metallic zig - shaped boat.,walks up a snowy slope with buckets and throwing one.,shows someone a handgun in the four - scabbard office vent.,checks with a ticket agent then joins someone at the sun lit window.\n13142,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5309,\"At the boarding gate, someone checks with a ticket agent then joins someone at the sun lit window. With a fond smirk someone\",\"At the boarding gate, someone checks with a ticket agent then joins someone at the sun lit window.\",With a fond smirk someone,gold,stares back at the tv for a moment then looks at someone's in the mirror.,\"steps closer, cradles her head in his hands and gives her a tender kiss.\",moves back to greet a folded smile with a smile on her lips.,shoots a fist down through her straw and storms down into the walk - to - bridge.\n13143,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5328,\"Approaching the young artist, she regards the portrait appraisingly then tilts her head and smiles. She\",\"Approaching the young artist, she regards the portrait appraisingly then tilts her head and smiles.\",She,gold,glances across then notices a sign on a window.,\"looks across at her flashlight, where she has entered the move.\",\"stares, her hand - held digital artist's lips curved up with a shimmering crinkle at the bottom.\",joins him at his side then faces the portrait again.\n13144,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5294,\"She sets a heavy backpack at her feet. Elsewhere, someone\",She sets a heavy backpack at her feet.,\"Elsewhere, someone\",gold,rides an executive bike.,\"reads papers, papers, and desk.\",spots a someone trimming a hedges.,leaves his building with his now draped canvas tucked under one arm.\n13145,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5298,Someone and someone get out. In the Principal's office someone's hands,Someone and someone get out.,In the Principal's office someone's hands,gold,thunder down to someone.,set the massive stack of assignments down on the desk.,\"are addressed to someone, blonde paces back and forth.\",supported a small board reference knives.\n13146,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5305,\"The teen gives a dimpled smile as he returns the hug, then faces his work with gleaming eyes. Someone\",\"The teen gives a dimpled smile as he returns the hug, then faces his work with gleaming eyes.\",Someone,gold,puts an arm around his shoulder and looks at the painting with an appreciative scowl.,glances at him.,shoots at the target.,rubs his hands together.\n13147,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5295,\"Elsewhere, someone leaves his building with his now draped canvas tucked under one arm. His other arm\",\"Elsewhere, someone leaves his building with his now draped canvas tucked under one arm.\",His other arm,gold,stands in a broad dramatic titled.,curls around the massive stack of completed homework assignments as he heads down the sidewalk at a brisk pace.,lies draped over him.,ties a few drops of wire mail to the front of the boat.\n13148,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5301,\"The teen girl hesitates and looks around. In the art room, someone\",The teen girl hesitates and looks around.,\"In the art room, someone\",gold,is scanning her apartment.,finds someone seating through the dwarf shelves.,sets someone's canvas on an easel.,talks squats at the ballet fitness section set.\n13149,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5306,\"Someone puts an arm around his shoulder and looks at the painting with an appreciative scowl. At the boarding gate, someone\",Someone puts an arm around his shoulder and looks at the painting with an appreciative scowl.,\"At the boarding gate, someone\",gold,stands at the bottom of the pool.,lingers by a window.,raises a little axe.,looks over his path.\n13150,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5278,\"Someone looks down and bites her lips. With a faint smile, she\",Someone looks down and bites her lips.,\"With a faint smile, she\",gold,\"nods briefly, then glances at her neighbor.\",takes a drink and dials a number.,reaches out and takes his hand in hers stroking his fingers with her thumb.,continues peering inside and feeling her arms on a chair.\n13151,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5284,\"Her smile grows and she brings her lips to his again. As they share a series of soft gentle kisses, her hand\",Her smile grows and she brings her lips to his again.,\"As they share a series of soft gentle kisses, her hand\",gold,moves up to his shoulder.,\"rises on his thigh, palm up, lifts her shoulder to the shoulder and caresses his head.\",\"flies off her own, causing her to breathlessly helpless down his shoulders.\",caresses her rear end.\n13152,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5313,Someone beams warmly at him. Someone,Someone beams warmly at him.,Someone,gold,\"lifts his gaze, his hazel eyes gleaming.\",leans back and tenderly takes it.,stares at her outside.,steps away with someone.\n13153,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5321,\"At the school a teen girl comes outside in her cap and gown and joins two fellow graduates. In the art room, someone\",At the school a teen girl comes outside in her cap and gown and joins two fellow graduates.,\"In the art room, someone\",gold,wears hot rollers and stares with pale - looking eyes.,holds someone's wrist as they spring up.,tucks a long hook out of a joint.,stands with his graduation robe slung over one arm.\n13154,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5307,The teen takes his diploma and executes a groovy spin. Someone chuckles fondly and someone,The teen takes his diploma and executes a groovy spin.,Someone chuckles fondly and someone,gold,laughs into her hand.,ends the call in the conference room.,regaining her composure and grins.,squeezes to his own.\n13155,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5297,\"Now, cars line up outside an international terminal at an airport. A black luxury car with tinted windows\",\"Now, cars line up outside an international terminal at an airport.\",A black luxury car with tinted windows,gold,sits a half built over the back of the car.,pulls into view and parks at the curb.,is being hood over a fence.,swivels back into an examination station.\n13156,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5331,His hand reaches out taking a gentle hold of someone. As they linger facing the painting together she,His hand reaches out taking a gentle hold of someone.,As they linger facing the painting together she,gold,checks shadows on the mantelpiece.,presses his lips against hers.,glances at him fondly.,plays and reads the inscription on his features.\n13157,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5317,As the teen accepts it the Principal pats him on the arm and steps away. Someone,As the teen accepts it the Principal pats him on the arm and steps away.,Someone,gold,smiles after him appreciatively.,takes him in his chair.,\"niece him, his lips parted.\",smiles and someone removes the university away from someone.\n13158,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5285,\"As they share a series of soft gentle kisses, her hand moves up to his shoulder. Now in the soft predawn light, street lamps\",\"As they share a series of soft gentle kisses, her hand moves up to his shoulder.\",\"Now in the soft predawn light, street lamps\",gold,twinkle beyond a weathered wooden bench.,glows with the increasing sunset.,draw them into chili darkness.,shines on someone's apartment features.\n13159,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5330,She looks up at him with a teasing smirk. His hand,She looks up at him with a teasing smirk.,His hand,gold,\"runs around her long body, then continues to caress her long hair.\",goes limp against pant shorts.,reaches out taking a gentle hold of someone.,\"moves close to hers, almost tenderly to her.\"\n13160,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5318,Someone smiles after him appreciatively. His mother,Someone smiles after him appreciatively.,His mother,gold,\"beams proudly, her eyes glistening.\",dances with her baby.,\"looks at him, as if to share a smile.\",gives him a skeptical look.\n13161,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5316,He holds out someone's diploma. As the teen accepts it the Principal,He holds out someone's diploma.,As the teen accepts it the Principal,gold,shines dramatically to the front of an apartment building.,jerks his thumb at his son.,pats him on the arm and steps away.,quickly catches it but lingers.\n13162,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5279,\"With a faint smile, she reaches out and takes his hand in hers stroking his fingers with her thumb. Later as they follow the sidewalk, the young beauty\",\"With a faint smile, she reaches out and takes his hand in hers stroking his fingers with her thumb.\",\"Later as they follow the sidewalk, the young beauty\",gold,enters the house and crouches beneath the swirling cloak.,uses her hand to open onto his mouth.,\"casually bumps against someone, then tucks her hair behind her ear.\",wearily inserts a copy of it by a alligator covered hand.\n13163,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5286,\"Now in the soft predawn light, street lamps twinkle beyond a weathered wooden bench. Someone\",\"Now in the soft predawn light, street lamps twinkle beyond a weathered wooden bench.\",Someone,gold,reaches out from behind and pulls someone's blanket.,\"sits on the tracks, looking dazed.\",strolls into view and takes a seat.,runs up the staircase on the campus.\n13164,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5283,He invitingly brushes the tip of her nose with his. Her smile grows and she,He invitingly brushes the tip of her nose with his.,Her smile grows and she,gold,collects her things and leaves.,brings her lips to his again.,nods with a emotional smile.,\"moves for her cell, stopping before someone.\"\n13165,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5323,As he turns back he halts and stares. In the doorway someone,As he turns back he halts and stares.,In the doorway someone,gold,stands with her hands clasped before her.,sees three guys approach by.,watches quizzically to make a call.,stares as he studies the destroyer and an evil smile.\n13166,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5292,On the bench someone gives a hopeful smile. He,On the bench someone gives a hopeful smile.,He,gold,wheels his laptop against the sandbags face.,looks at a rat - like employee.,drives a transport car through the street towards home.,lowers his gaze and licks his lips.\n13167,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5280,\"Later as they follow the sidewalk, the young beauty casually bumps against someone, then tucks her hair behind her ear. Their interlocked hands\",\"Later as they follow the sidewalk, the young beauty casually bumps against someone, then tucks her hair behind her ear.\",Their interlocked hands,gold,\"drift to a tree, which have pulled up against the high ceiling.\",stay on their hips.,sway gently with their.,drift to their wispy hair and their vessel's throat.\n13168,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5319,The teen scans the room. Elsewhere someone,The teen scans the room.,Elsewhere someone,gold,\"turns, her surroundings washed out by sunlight.\",opens a hatch and parts the chamber roof.,\"sleeps on her baby bed, her visor dark.\",sits behind a framed picture of a woman in the girl's kit.\n13169,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5315,Smiling faintly he shakes someone's hand then leans in. He,Smiling faintly he shakes someone's hand then leans in.,He,gold,holds out someone's diploma.,joins the goateed man at the kitchen and eats a snack.,squeezes his lips shut and rubs her mouth.,shoves another card into the passenger pocket.\n13170,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5332,As they linger facing the painting together she glances at him fondly. Someone,As they linger facing the painting together she glances at him fondly.,Someone,gold,returns his gaze to the house as someone fills her view.,heaves a grave sigh.,arrives in a squad car.,bends down to look at her dress.\n13171,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5312,\"At school, someone notices someone's tense demeanor. Someone\",\"At school, someone notices someone's tense demeanor.\",Someone,gold,bends to play the piano when a smaller dancer rises in little cheer.,glances at the gleaming suv.,looks around her house.,beams warmly at him.\n13172,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5300,\"At the airport, someone and someone arrive at the boarding area where other passengers file through a gate. The teen girl\",\"At the airport, someone and someone arrive at the boarding area where other passengers file through a gate.\",The teen girl,gold,slips the key into a case.,shifts herself then steps away and stares on someone.,tries to reach in with her phone.,hesitates and looks around.\n13173,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5333,Someone heaves a grave sigh. She,Someone heaves a grave sigh.,She,gold,looks at someone earnestly.,slaps his hand away.,faces someone intently then looks back at the painting.,glances over at someone's rocker.\n13174,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5287,\"He stares off, his lips pursed in a thoughtful pout. Back in Charlotte's empty apartment someone\",\"He stares off, his lips pursed in a thoughtful pout.\",Back in Charlotte's empty apartment someone,gold,watches someone bounce out of bed.,pulls away abruptly and looks up at someone.,sits tenderly at her hands.,rolls around and finds someone in her bra and underwear.\n13175,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5291,He smiles down at her. On the bench someone,He smiles down at her.,On the bench someone,gold,gives a hopeful smile.,sits on a plain of covered rusted ottoman.,hands her book to him.,nuzzles with the belly dancer.\n13176,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5302,\"In the art room, someone sets someone's canvas on an easel. He\",\"In the art room, someone sets someone's canvas on an easel.\",He,gold,talks at the bottom of the sidewalk.,sets the book down and picks up the box's fang.,\"steps back, his hands on his hips and regards it shrewdly as his troubled student stands nearby.\",finds his bureau slumped on his diary.\n13177,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5281,Their interlocked hands sway gently with their. Now they,Their interlocked hands sway gently with their.,Now they,gold,look forlornly in a shabby office.,go to the captain's basin.,arrive at her deserted apartment.,embrace around the floor.\n13178,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5322,\"The subject gazes off with a stoic expression hinting at wisdom beyond her years. Turning away, someone\",The subject gazes off with a stoic expression hinting at wisdom beyond her years.,\"Turning away, someone\",gold,sets his diploma and graduation robes on a chair.,presses her lips on the flap in her hand.,watches the larger vessel as someone stalks through the net.,\"puts her arms around her, as a small crewman strokes her hair.\"\n13179,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5293,\"Now, verdant tree branches dapple our view of a bright blue sky patched with wispy clouds. She\",\"Now, verdant tree branches dapple our view of a bright blue sky patched with wispy clouds.\",She,gold,clouds the entire horizon.,\"watches, sprints backward, then slumps over a branch.\",sets a heavy backpack at her feet.,keels around her.\n13180,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5299,\"In the Principal's office someone's hands set the massive stack of assignments down on the desk. Working facing the wall, the administrator\",In the Principal's office someone's hands set the massive stack of assignments down on the desk.,\"Working facing the wall, the administrator\",gold,rounds on the floor.,shifts his guitarist gaze.,turns and looks up at someone.,\"poses, not sure what to exhibiting.\"\n13181,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5282,Now they arrive at her deserted apartment. They,Now they arrive at her deserted apartment.,They,gold,dumped her onto some shelves.,walk past the room with someone and two officers children.,sit before laced curtained windows filled with soft golden light and kiss tenderly.,are trying to get out of the cab.\n13182,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5289,Someone gives her an eager kiss. Someone,Someone gives her an eager kiss.,Someone,gold,tugs on her open blind and goes through her cage.,'s gaze follows his and he slaps her back.,pulls out a packet of popcorn.,kisses him and drapes her arms around his shoulders.\n13183,lsmdc3067_THE_ART_OF_GETTING_BY-32536,5326,Someone's eyes follow her. As she,Someone's eyes follow her.,As she,gold,\"pauses to stop him, she turns away.\",\"stop, someone cups her hair over her shoulder.\",\"smiles, she swallows, laughing uncontrollably.\",\"passes obliviously behind her own portrait, moving with slow deliberate steps.\"\n13184,anetv_kI0AyrGe-NU,452,One cat then begins to lick the other. The first cat then,One cat then begins to lick the other.,The first cat then,gold,grabs him and swings something in the end.,runs from the room smoking.,stops and the other licks afterwards.,mimes cutting the cat's claws.\n13185,anetv_kI0AyrGe-NU,451,Two cats are seen laying on a bed facing one another. One cat then,Two cats are seen laying on a bed facing one another.,One cat then,gold,pushes the cat's claws again.,begins to lick the other.,begins clipping a woman's nails.,goes back to the food and moves to the other side.\n13186,anetv__JE5T2RKZvo,9718,A woman is seen speaking to the camera and leads into her sanding down a board in several locations. She then,A woman is seen speaking to the camera and leads into her sanding down a board in several locations.,She then,gold,takes her hair in a rag while still speaking to the camera and moving her hair.,sands more objects and shows off a large selection of tools she has.,moves down and sets down several rubik's cubes while speaking to the camera.,peers down into various scenarios and puts out a tool down a pole.\n13187,anetv__JE5T2RKZvo,9719,She then sands more objects and shows off a large selection of tools she has. She,She then sands more objects and shows off a large selection of tools she has.,She,gold,hammers down the sides of the board and ends with her painting the board.,pans up and turns back to the camera and starts speaking again.,bring it out to the top as she speaks.,considers as she smiles.\n13188,anetv_rvcSqYeUZ9s,7519,A man is leaning foward on a bench. Another man,A man is leaning foward on a bench.,Another man,gold,enters and lifts the binoculars.,does several martial arts moves by a back wall.,sits down a polished floor and stands upright.,is applying suntan lotion onto his back.\n13189,anetv_rvcSqYeUZ9s,7520,Another man is applying suntan lotion onto his back. He,Another man is applying suntan lotion onto his back.,He,gold,stands up to work and begins to shave his legs.,stands up when the man is done with the lotion.,lays lotion on his face and puts his hands in the air.,adds some white lotion and gives it to another man.\n13190,lsmdc3026_FRIENDS_WITH_BENEFITS-1423,1490,\"Someone pulls on cut - off jeans shorts. With a bra in one hand, she\",Someone pulls on cut - off jeans shorts.,\"With a bra in one hand, she\",gold,open a door and glances at him.,storms to the bathroom and finds the phone on her leg.,tosses the metal into the pole.,climbs in front of a boxer.\n13191,anetv_7OcfzMIZsxA,6385,People are eating ice cream cones. A person,People are eating ice cream cones.,A person,gold,takes snow off of a car when it comes to the rescue and the pokes caught it.,puts ice cream into an ice cream cone.,is drinking an ice cream cone.,is licking a egg.\n13192,anetv_7OcfzMIZsxA,6386,A person puts ice cream into an ice cream cone. A woman in glasses,A person puts ice cream into an ice cream cone.,A woman in glasses,gold,holds the nail with a peeler.,is eating a soup in a kitchen.,is cutting the woman's hair.,talks to the camera.\n13193,lsmdc0022_Reservoir_Dogs-59168,9232,\"Someone reaches in his jacket for his gun, and pulls it out. The two men\",\"Someone reaches in his jacket for his gun, and pulls it out.\",The two men,gold,\"are with their guns outstretched, aiming at one another.\",\"point back to the men, they move to the bomb door opposite looking through a ceiling cabinet.\",slap open the side door.,glance back at each other at him.\n13194,anetv_v1ukgczEA5A,7175,They melt onto onto the bottom of the ski. They,They melt onto onto the bottom of the ski.,They,gold,\"are scuba snips on their backs, going back to the lake.\",\"stir it in a pan, then put it back into the workshop.\",see the hairstylist in the middle speaking to the camera.,run the iron over the top of the was on the ski.\n13195,anetv_oOnKQgQZOZ0,12734,\"There are a few spectators looking on from the sides of the pool, while a referee is following the actions to stay in control of the match. It\",\"There are a few spectators looking on from the sides of the pool, while a referee is following the actions to stay in control of the match.\",It,gold,is quiet other than the young kids that are involved in the game.,continues to throw the ball into the room's center because the goal is so fast.,walks to his own question and is recording drinking it all go by in low motion.,pushed the ball up and the person in green used water to smaller down the wall that wheeled the weight back.\n13196,anetv_oOnKQgQZOZ0,12735,It is quiet other than the young kids that are involved in the game. They,It is quiet other than the young kids that are involved in the game.,They,gold,listen to the music.,are having a great time and are very involved in what they are doing.,are shown that leads into several pictures of them playing beer pong.,rushing over to someone but she is nowhere to be seen.\n13197,anetv_QokthYjtPzM,2404,She then coats her nails with something. She then,She then coats her nails with something.,She then,gold,sprinkles glitter on them.,adds a fresh rag and lights on her nails.,pours the large clear liquid in her eyes while still talk to the camera.,shows the product when she laughs.\n13198,anetv_QokthYjtPzM,1611,The tutorial begins and a supply list along with pictures of the supplies of what you need to get the same glitter nails look are displayed. The first step is a hand holding gold nail polish and she,The tutorial begins and a supply list along with pictures of the supplies of what you need to get the same glitter nails look are displayed.,The first step is a hand holding gold nail polish and she,gold,comes to breaking the ornament.,begins to apply the nail polish to her pointy and middle finger nails.,begins to lean her bags to just nail it and place it.,used it to measure the nails as if the shiner rung has creation polish.\n13199,anetv_QokthYjtPzM,2403,A womans hand is shown on a counter. She then,A womans hand is shown on a counter.,She then,gold,coats her nails with something.,uses the knife to help.,discusses and shows the product.,applies some paint to a wall.\n13200,anetv_QokthYjtPzM,1612,The first step is a hand holding gold nail polish and she begins to apply the nail polish to her pointy and middle finger nails. The second step is shown and it,The first step is a hand holding gold nail polish and she begins to apply the nail polish to her pointy and middle finger nails.,The second step is shown and it,gold,is followed by a news person and stirring it in place and seals it with a jar and polished tape.,includes a blue screen with orange and black polish.,'s pouring the glitter onto the nails before the nail polish dries ensuring that every part of the nail gets glitter.,moves to her partner and her mind just about them to continue walking.\n13201,anetv_-HHybw--2XA,2820,A camera pans around a fenced in area and leads into a man and his dog performing tricks with a frisbee. The an,A camera pans around a fenced in area and leads into a man and his dog performing tricks with a frisbee.,The an,gold,leads leads into a man riding the horse and walking down the street.,continues to perform tricks with the dog using the toys and other dogs watching on the side.,walks up and leads into several people riding around on another side of one.,throws all the frisbees around the dog as well as riding around a bull while people applaud his movements.\n13202,anetv_eic6dpU0ytM,18564,Old woman is sitting on a chair knitting balaclavas. woman in a hospital room,Old woman is sitting on a chair knitting balaclavas.,woman in a hospital room,gold,is standing in stage of a large room room with one brown and white cat with a pink coat.,talk to the camera.,has a tattoo on a belly and a tattoo is sitting on front of her.,put the balaclava on baby's head and stands around the baby.\n13203,anetv_eic6dpU0ytM,17864,Several shots of machines and yarn are shown as well as the woman still knitting in a chair and helping a baby. The woman,Several shots of machines and yarn are shown as well as the woman still knitting in a chair and helping a baby.,The woman,gold,continues to speak with one another and the camera captures her movements and the begins putting her hair.,walks back to the camera while standing in front of her and rubbing her hands together.,bends down to talk to the camera that a man is sitting in a kitchen.,continues knitting in her chair and showing off a hat in the end.\n13204,anetv_eic6dpU0ytM,18565,Woman in a hospital room put the balaclava on baby's head and stands around the baby. the old woma,Woman in a hospital room put the balaclava on baby's head and stands around the baby.,the old woma,gold,is two violin strings.,is on the chair kniting again.,is watching as the two men push together.,explains the greats with the scissor too.\n13205,anetv_eic6dpU0ytM,17863,A person walking into frame sitting in a chair and knitting using yarn. Several shots of machines and yarn,A person walking into frame sitting in a chair and knitting using yarn.,Several shots of machines and yarn,gold,are shown as well as more ingredients.,are shown as well as mixed close into a woman and having proper sunscreen.,are shown that leads into two people standing into frame and demonstrating how to play nails.,are shown as well as the woman still knitting in a chair and helping a baby.\n13206,anetv_9R2wP-iceaw,4148,We see people playing dodgeball in what appears to be a basement of a building. A man in the middle,We see people playing dodgeball in what appears to be a basement of a building.,A man in the middle,gold,does a shot on his face with other men.,jumps out of the way of the ball.,is drawing a red piece of shit into a swiffer.,pushes a ball across a inflatable and throws a stick onto the ground below.\n13207,anetv_9R2wP-iceaw,4150,A man in yellow falls to the ground. There,A man in yellow falls to the ground.,There,gold,is one man on each team.,\"the doors, someone strides forward and does him pick takes off.\",are shots of the birdie and red scores.,white light illuminates the body of the sphere and the spider veil flies above it.\n13208,anetv_9R2wP-iceaw,4764,A man falls down onto the ground. People,A man falls down onto the ground.,People,gold,are sitting on the side watching the people play.,run down the track and stretch across all the beach.,are seen walking down a sidewalk on stage.,return the cow over the other river.\n13209,anetv_9R2wP-iceaw,4149,A man in the middle jumps out of the way of the ball. A man in yellow,A man in the middle jumps out of the way of the ball.,A man in yellow,gold,sits down next to him.,throws a bowling ball.,falls to the ground.,uniform is giving a perform.\n13210,anetv_9R2wP-iceaw,4151,There Is one man on each team. The orange team wins and the yellow team all,There Is one man on each team.,The orange team wins and the yellow team all,gold,\"go away and throws the ball before their opponent, with three other drinks.\",folds the ice on the foot of a large tree.,gives one when they drop the ball and scores.,jump in the air.\n13211,anetv_9R2wP-iceaw,4763,People are playing dodge ball in a room. A man,People are playing dodge ball in a room.,A man,gold,falls down onto the ground.,is kneeling on the floor.,takes two balls from a basket and leaves a court on date.,in a yellow shirt grab his bag and rolls.\n13212,anetv_9R2wP-iceaw,4765,People are sitting on the side watching the people play. The people,People are sitting on the side watching the people play.,The people,gold,continue kicking and turn towards the camera.,\"walks across the street, looking at each other in its arms.\",spin their arms up to talk to one another.,walk onto the mat and high five each other.\n13213,anetv_ZQSa_8wofFw,17953,They are then shown holding brooms and pushing containers around and writing on paper. In the end they,They are then shown holding brooms and pushing containers around and writing on paper.,In the end they,gold,'ve cleans the fence with red paint.,are put talking together with arrows.,continue to ride diners around a tree.,are shown speaking again outside.\n13214,lsmdc0002_As_Good_As_It_Gets-46589,18130,Someone walks up to someone in the car. She,Someone walks up to someone in the car.,She,gold,hands him a base ball cap.,\"get their bags out of the other study and walk towards them as a determined passenger goes, and has his back turns to her\",spreads his arms wide as he flies by.,gobbles up a soft - food meat hook.\n13215,lsmdc0002_As_Good_As_It_Gets-46589,18131,She hands him a base ball cap. Someone,She hands him a base ball cap.,Someone,gold,takes out her sandals and his.,gives a delighted nod and takes a sip.,sets the bar on a display shelf.,hangs up the phone.\n13216,anetv_ynda_PQe_CM,14150,The players celebrate some being followed by a camera. Men in suits hand a trophy to a man in yellow and he,The players celebrate some being followed by a camera.,Men in suits hand a trophy to a man in yellow and he,gold,\"jumps low with a large stick, shooting.\",holds it over his head with everyone in the background celebrating.,practices coffee in clothes.,is walking along the or tyler ball.\n13217,anetv_ynda_PQe_CM,14146,\"A man from each team kicks the ball at the goal, each man gets the ball in the net and it flies back out. The same thing\",\"A man from each team kicks the ball at the goal, each man gets the ball in the net and it flies back out.\",The same thing,gold,happens for one more man from each team.,is next to the player winning.,is all the players watching the other team competitors from the belligerent team mates.,\"lands in front of the goalie, landing in the net.\"\n13218,anetv_ynda_PQe_CM,14148,Another man from each team scores before the goalie blocks a ball kicked by a man in yellow. Another ball from thew red team is blocked and two men from the sidelines in suits,Another man from each team scores before the goalie blocks a ball kicked by a man in yellow.,Another ball from thew red team is blocked and two men from the sidelines in suits,gold,jump up and run on to the court and shake hands with a few players.,are also smoking a big red quaffle at that goal.,\"assist their scores and shake skaters and holding their players, then the ride behind the wall as they score a goal.\",hold the ball one time.\n13219,anetv_ynda_PQe_CM,14145,The yellow team tries to score and is blocked multiple times before finally scoring and a replay of this goal is shown twice. The game,The yellow team tries to score and is blocked multiple times before finally scoring and a replay of this goal is shown twice.,The game,gold,begins with the closing credits.,ends with the closing captions on a screen.,continues until the red team scores.,\"is replayed several times riding the first person row, and all the players craning down.\"\n13220,anetv_ynda_PQe_CM,14142,Several men are playing indoor soccer. A large crowd,Several men are playing indoor soccer.,A large crowd,gold,is shown playing a game of soccer.,watches on the sidelines.,watches from the stands.,is shown of soccer players.\n13221,anetv_ynda_PQe_CM,14143,A large crowd watches from the stands. A man wearing yellow kicks the ball into the goal and,A large crowd watches from the stands.,A man wearing yellow kicks the ball into the goal and,gold,is able to hit it.,\"pushes it across the ground, back and forth.\",takes his third opponent.,celebrates with his team before a replay of his goal is shown.\n13222,anetv_ynda_PQe_CM,14147,\"When the next red team member kicks, the goalie blocks the ball. Another man from each team\",\"When the next red team member kicks, the goalie blocks the ball.\",Another man from each team,gold,gives a final strike to the opposing goals.,scores before the goalie blocks a ball kicked by a man in yellow.,is playing with kisses and wearing a straight shirt.,hurries the ball balls after it.\n13223,anetv_ynda_PQe_CM,14149,Another ball from thew red team is blocked and two men from the sidelines in suits jump up and run on to the court and shake hands with a few players. The players,Another ball from thew red team is blocked and two men from the sidelines in suits jump up and run on to the court and shake hands with a few players.,The players,gold,celebrate some being followed by a camera.,are still performing the same thing once again on a field as soon as possible.,\"continue playing and the coach returns to the goal, an downs number of opponent applause.\",continue with the other laugh because the riders bow and point at the target.\n13224,anetv_ynda_PQe_CM,14144,A man wearing yellow kicks the ball into the goal and celebrates with his team before a replay of his goal is shown. The game continues and two men,A man wearing yellow kicks the ball into the goal and celebrates with his team before a replay of his goal is shown.,The game continues and two men,gold,throw to measure the distance.,scramble back to their feet and come forward a few times.,knock each other down before the red team scores a goal and a replay is shown.,then see men demonstrate one return on the field.\n13225,anetv_O1WvjCFqLz0,2847,A toddler is standing in a chair. the kid then,A toddler is standing in a chair.,the kid then,gold,starts grooming the little girl's hair.,starts putting several fake legs on the floor.,begins swinging his arms and punching.,swings down and kicks the boy.\n13226,anetv_O1WvjCFqLz0,2848,He the does a few kicks and head buts. a woman,He the does a few kicks and head buts.,a woman,gold,is seated in a field with people hanging out the other's jumping rope.,\"jumps out of a gymnast, then swings and performs flips.\",holds her ground with a towel.,is sitting next to him talking.\n13227,anetv_O1WvjCFqLz0,6085,A young boy stands on a chair at a table. He,A young boy stands on a chair at a table.,He,gold,throws the picture of the boy with a wall.,\"is doing several kickboxing style stunts, punching and bouncing, also banging his head.\",lies on the ground carefully with his body around it.,is holding a flower on a sofa.\n13228,anetv_4-rJZdNgMX8,9818,Dr Lisa Kellett speaks to the camera in a medical exam room next to a sink. The doctor,Dr Lisa Kellett speaks to the camera in a medical exam room next to a sink.,The doctor,gold,demonstrates the steps to washing hands like doctors do.,puts an earpiece in in the video.,\"is lying in bed, talking, standing up behind the sink.\",makes a call.\n13229,anetv_FEGf7ejk8Fc,9826,A young child is seen sitting in a chair in front of a table with a large body. The hands,A young child is seen sitting in a chair in front of a table with a large body.,The hands,gold,sharpens to an old man's thong and several clips of him put it continuously while others watch on the side.,are then seen writing a note and rubbing against the face while the child laughs and the hands continue moving.,are seen cleaning the wall while also rubbing it around then the person then showing off various tools on the paper.,are laid back on objects of the chair in the middle of it.\n13230,anetv_xsBFnpdLWkU,11048,She pulls a card out and sets it on top of the other cards. She,She pulls a card out and sets it on top of the other cards.,She,gold,looks at someone thoughtfully.,points at the next set of cards.,pays the impression into the box and gives it a little squeeze.,tilts her head and mouths the word sorry.\n13231,anetv_xsBFnpdLWkU,14361,She picks up more cards and lays them out. She,She picks up more cards and lays them out.,She,gold,taps the paper back on one hand and holds up her papers to take them down.,then puts a newspaper on a mulch in front of her and sets them in the middle.,continues to pull out more and more cards.,cracks his knuckles in the passenger seat.\n13232,anetv_xsBFnpdLWkU,11049,She points at the next set of cards. She,She points at the next set of cards.,She,gold,nods at the barman who waits outside.,pulls the doors shut and stares back round.,offers a second square pda sign.,pulls a card out and sets that on top of the cards.\n13233,anetv_xsBFnpdLWkU,11046,A woman sits behind a table dealing cards. She,A woman sits behind a table dealing cards.,She,gold,takes the cup vigorously and pours it into the glass in front of him.,points at one of the cards.,is coolly sitting on a bench next to a blonde woman.,takes a curling rink of sand on the court.\n13234,anetv_xsBFnpdLWkU,14360,A woman is seen sitting behind a table dealing cards. She,A woman is seen sitting behind a table dealing cards.,She,gold,picks up more cards and lays them out.,pauses cutting and begins hitting the ice around the present.,is shows how to lay the cards down with the balls and gives one another to the camera.,mixes liquids together into a glass while still looking at the camera and smiling.\n13235,anetv_xsBFnpdLWkU,11050,She pulls a card out and sets that on top of the cards. She,She pulls a card out and sets that on top of the cards.,She,gold,holds the photo at the end of a table.,\"stares at her mom, who waits.\",pulls another card out to add to hers.,stops and puts down a camera.\n13236,anetv_xsBFnpdLWkU,11047,She points at one of the cards. She,She points at one of the cards.,She,gold,\"looks at someone, who suppresses a smile.\",pulls a card out and sets it on top of the other cards.,bounces the ball along the stereo.,lays note cards beside them.\n13237,lsmdc3064_SPARKLE_2012-4181,11521,\"She awakes to her daughters performing, and leans closer. On the color tv, a close - up\",\"She awakes to her daughters performing, and leans closer.\",\"On the color tv, a close - up\",gold,of subtitles is whipped to the screen.,a slender piece of framed broomstick rotates.,of their private's arrives.,shows someone's seductive gaze.\n13238,anetv_5vd8j0hKIgs,2344,A woman is hanging from two bars. She,A woman is hanging from two bars.,She,gold,jumps down into a gymnastics position with a big pole on her shoulder.,throws a white towel over her head.,steps towards the top of the steps and picks up a stick of balls.,starts to work out on the bars.\n13239,anetv_5vd8j0hKIgs,2345,She starts to work out on the bars. She,She starts to work out on the bars.,She,gold,does several flips and tricks on the tightrope.,jumps on her back and stands in front of her watching.,begins braiding her hair.,stops and puts her feet on the ground.\n13240,lsmdc3056_PUBLIC_ENEMIES-3428,14272,\"One man sits slack - jawed, his head lolled back trailing blood from two holes. Someone\",\"One man sits slack - jawed, his head lolled back trailing blood from two holes.\",Someone,gold,\"rolls his eyes, piercing the corners of the gaping mouth.\",\"stares, stunned, then opens a rear door.\",intercepts him and stops kissing.,opens a blindfolded door stuck in.\n13241,lsmdc3056_PUBLIC_ENEMIES-3428,14273,\"Someone stares, stunned, then opens a rear door. An adjacent windows\",\"Someone stares, stunned, then opens a rear door.\",An adjacent windows,gold,shows a gangster taking aim.,show someone's region from the same chamber.,show the smoke already lit out.,sits at the passenger side window of the crate chamber.\n13242,anetv_Uru0CastJqU,8523,A person is seen walking forward and jumping up and down and diving in a pool. The same person,A person is seen walking forward and jumping up and down and diving in a pool.,The same person,gold,is seen throwing a shot off of a large dive while others watch on the side.,then jumps off the person's feet and shoot under the water.,stops to swim and end by standing behind.,is shown several more times performing various dives off a high board while the camera captures him from several angles.\n13243,anetv_Mw_AIqw6rfM,13982,The men then begin playing a game on the horses and shaking each other's hands. The princess then,The men then begin playing a game on the horses and shaking each other's hands.,The princess then,gold,picks up another and dumps them measure the distance.,lays down their cards while the three boys take blows into the game.,hands a box to one of the players and stands near several others holding a trophy.,runs down more time and having a good time.\n13244,anetv_Mw_AIqw6rfM,13981,A large group of people are seen standing around a horse track and leads into several men sitting on horses and one riding around swinging a stick. The men then,A large group of people are seen standing around a horse track and leads into several men sitting on horses and one riding around swinging a stick.,The men then,gold,begin playing a game on the horses and shaking each other's hands.,kick around one another while falling off on their foot.,ride around chasing one another while speaking to the camera.,perform several tricks on the stick and catching the calf as they go to turn around.\n13245,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8065,A purple triple - decker bus draws up. The conductor,A purple triple - decker bus draws up.,The conductor,gold,shows the cleaning and someone's silver and spinning red car.,\"is heroic in a cafe, wearing white radio talkie.\",reads from a dirty piece of card.,jogs out of a fountain.\n13246,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8046,Someone turns upside down showing her bloomers and floats into the conservatory. She,Someone turns upside down showing her bloomers and floats into the conservatory.,She,gold,starts back as she talks.,plays in another swell.,climbs on on the bed.,bumps against the glass roof.\n13247,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8057,\"In the distance, someone is a faint speck in the darkening sky. Someone\",\"In the distance, someone is a faint speck in the darkening sky.\",Someone,gold,\"is in the basket, carrying his briefcase under the divan.\",travels quick on a log to a straight line.,watches as someone observes from the tree.,\"walks quickly, breathing hard as he pulls the heavy trunk along the deserted streets.\"\n13248,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8062,\"The roundabout turns and a seesaw clumps down onto the grass. In front of him, a huge black dog\",The roundabout turns and a seesaw clumps down onto the grass.,\"In front of him, a huge black dog\",gold,looms out of the bushes.,walks through the house.,sits on the kitchen table.,hangs over the tower.\n13249,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8054,He drags his trunk down the stairs. He,He drags his trunk down the stairs.,He,gold,checks the second as he fires.,points his wand at someone.,kicks against his skates.,knocks through the front door of someone's apartment.\n13250,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8052,He sits on his bed. He,He sits on his bed.,He,gold,\"gets dead, skateboarding and retracting.\",crunches and land in a sling.,stands and doffs his purchase.,looks at the photograph on the bedside table of his parents dancing happily together.\n13251,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8066,\"The conductor reads from a dirty piece of card. Putting the card in his pocket, he\",The conductor reads from a dirty piece of card.,\"Putting the card in his pocket, he\",gold,opens it and heads inside.,picks up his phone.,finds a stamp reading atop the manuscript.,looks down at someone.\n13252,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8056,\"Someone leaves the house dragging his trunk on a small set of wheels. In the distance, someone\",Someone leaves the house dragging his trunk on a small set of wheels.,\"In the distance, someone\",gold,is a faint speck in the darkening sky.,\"spots his aide, follow someone through a door.\",takes note stances and an bullet on a rundown warehouse.,examines his wrist wrenches and tries.\n13253,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8067,\"Putting the card in his pocket, he looks down at someone. Someone\",\"Putting the card in his pocket, he looks down at someone.\",Someone,gold,stares nervously at the bushes.,takes out a letter and answers it.,faces someone with a kindly smile.,picks up his phone and someone.\n13254,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8058,\"Someone walks quickly, breathing hard as he pulls the heavy trunk along the deserted streets. The street lights\",\"Someone walks quickly, breathing hard as he pulls the heavy trunk along the deserted streets.\",The street lights,gold,give out as lights flood the street.,are reflected in the puddles on the damp pavements.,are on inside it.,in the prison are silhouetted in the darkness.\n13255,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8061,\"In the playground, the empty swings begin to move. The roundabout turns and a seesaw\",\"In the playground, the empty swings begin to move.\",The roundabout turns and a seesaw,gold,clumps down onto the grass.,walks down the barn.,head up at the bumps.,\", which slowly flips, revealing that someone just came back.\"\n13256,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8060,\"He sits wearily on the edge of the pavement, hunching his shoulders against the cold and damp. He\",\"He sits wearily on the edge of the pavement, hunching his shoulders against the cold and damp.\",He,gold,\"rises into the passenger seat, crushing his companion and feet.\",looks up as the streetlight above his head flickers and goes out.,\"stops, as the vehicle pulls away from the platform, then both dive toward the other.\",returns to his bedroom.\n13257,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8070,And someone steps inside the bus. On the lower deck,And someone steps inside the bus.,On the lower deck,gold,\"escape, people stand on the platform.\",\", a caddy carries a goat sized someone on a stretcher.\",line someone is in the same position.,\"is a row of beds, one of which is occupied.\"\n13258,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8053,He looks at the photograph on the bedside table of his parents dancing happily together. He,He looks at the photograph on the bedside table of his parents dancing happily together.,He,gold,looks down and sees someone lurking in traffic.,serves himself and puts his shot on someone 'head.,drags his trunk down the stairs.,steps up beside the younger woman.\n13259,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8048,She sails out into the garden. Someone,She sails out into the garden.,Someone,gold,throws air of firewood.,struggles after her with ripper clinging to his leg.,stands over a large ravine notebook by the dock.,is carried to the snow next to a house.\n13260,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8072,Someone turns the handle of his machine and gives someone a bus ticket. Someone,Someone turns the handle of his machine and gives someone a bus ticket.,Someone,gold,knocks on the driver's window.,walks through the lobby and down the hall.,gapes at a slender woman in a torso.,gets off the road and goes for his search.\n13261,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8049,All three are lifted off the ground. Someone,All three are lifted off the ground.,Someone,gold,pushes someone behind someone.,lets go and falls onto the grass.,checks both people on the walk in their line.,gets his arm around a soldier.\n13262,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8045,Someone rises into the air. She,Someone rises into the air.,She,gold,winces from a laugh.,lies on a chair.,bursts out of the chair.,slithers through a pair of snarling fairy characters.\n13263,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8064,Someone slowly rises to his feet. Someone,Someone slowly rises to his feet.,Someone,gold,scrambles to his feet and letting himself fall off the bench.,turns to face her.,steps forward and releases someone.,pulls out his wand and stumbles backwards onto the pavement.\n13264,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8051,\"Helplessly, people gaze after her. Someone\",\"Helplessly, people gaze after her.\",Someone,gold,glances his way who holds her attention.,\"stares ahead, his brows knitted.\",stands; someone makes tea.,is still eating and watching television.\n13265,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8063,\"In front of him, a huge black dog looms out of the bushes. Someone slowly\",\"In front of him, a huge black dog looms out of the bushes.\",Someone slowly,gold,walks back toward the party where several suitcases are parked.,lets his grey head stumble and thuds against the back of the lorry.,rises to his feet.,touches someone's hands.\n13266,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8055,He points his wand at someone. Someone,He points his wand at someone.,Someone,gold,unzips his chest - again.,speeds across the street as his brothers hurry up a flight of stairs then hurry down a staircase.,stares up at the painting.,leaves the house dragging his trunk on a small set of wheels.\n13267,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8059,\"The street lights are reflected in the puddles on the damp pavements. At last, he\",The street lights are reflected in the puddles on the damp pavements.,\"At last, he\",gold,stops on his headlights.,slows down and looks around him.,rises rapidly and leaps out of the way.,finds someone smiling in his truck as someone fires his shotgun.\n13268,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9418,8069,Someone picks up the trunk. And someone,Someone picks up the trunk.,And someone,gold,puts a plate on him.,steps inside the bus.,\"looks from the sill confidently to the podium, not ready to repeat, but without proudly points to them, questioningly.\",grabs him behind the tree.\n13269,anetv_94q8YdJoPUw,17250,He is unable to keep control as he is pushed backward by the rapids. He,He is unable to keep control as he is pushed backward by the rapids.,He,gold,battles hard to stay upright in the water as he trains for kayaking.,turns and starts down the street.,\", more lucky with fireworks threw a massive waterfall that has fallen on the deck.\",notices flames rolling past someone.\n13270,anetv_94q8YdJoPUw,554,\"After several subtitles, a man appears kayaking just sitting in the middle of the current struggling to go forward. Time passes by and he\",\"After several subtitles, a man appears kayaking just sitting in the middle of the current struggling to go forward.\",Time passes by and he,gold,begins to step forwards to the right.,starts to pull himself up off the tracks for a bit.,climbs into the boat and begins to do tricks several times by air.,is then seen again flipping over after continuous waves come knocking him out of the kayak.\n13271,anetv_94q8YdJoPUw,555,Time passes by and he is then seen again flipping over after continuous waves come knocking him out of the kayak. He,Time passes by and he is then seen again flipping over after continuous waves come knocking him out of the kayak.,He,gold,falls on the side of the horse and jumps out.,eventually gets it together and continues spinning around in circles in the water.,\"is shown again, moving the mop away and grabbing the phial out of the gaudy liquid.\",continue to move it around as he runs down the lane.\n13272,anetv_94q8YdJoPUw,553,\"A stream of water appears with rocks and medium but bold waves flashing throughout the water. After several subtitles, a man\",A stream of water appears with rocks and medium but bold waves flashing throughout the water.,\"After several subtitles, a man\",gold,is shown gliding through a river doing nonchalance on the ground.,skis to a side line as he goes down a steep hill.,appears kayaking just sitting in the middle of the current struggling to go forward.,\"is practicing submerged under the water, paddling a canoe.\"\n13273,anetv_94q8YdJoPUw,17249,A scene is shown of a person in rapid river water in a kayak. He,A scene is shown of a person in rapid river water in a kayak.,He,gold,starts kayaking on a rope.,is unable to keep control as he is pushed backward by the rapids.,go down the passageway.,instructors very happily watches.\n13274,anetv__Z71mu4aQy4,8843,A player makes a diving catch in the outfield. The player,A player makes a diving catch in the outfield.,The player,gold,shoots a ball over the other can.,smiles and is a good sport.,dives down into a lake.,picks up the motocross ball and bounces it on his board.\n13275,anetv__Z71mu4aQy4,8842,A cricket player hits a ball that is pitched. A player,A cricket player hits a ball that is pitched.,A player,gold,hits the ball into the goal opposing and walks off with a mallet.,hits the ball back and forth in the net.,makes a diving catch in the outfield.,\"grabs the ball and gets ready to catch balls, and the characters watch the game.\"\n13276,anetv_T_5ANYuDWOA,5664,They move the ladder and continue trimming the hedge. There,They move the ladder and continue trimming the hedge.,There,gold,quickly bring their coats.,is a rope on the top of the hedge.,seem to be seen again.,are images of people sleeping.\n13277,anetv_T_5ANYuDWOA,5663,A person stands on a ladder and trims the top of a hedge. They,A person stands on a ladder and trims the top of a hedge.,They,gold,move the ladder and continue trimming the hedge.,use the shears to cut them out of bowls.,see the boy standing talking and the camera follows him from view.,\"put it on, and the man pushes it away.\"\n13278,anetv_T_5ANYuDWOA,13278,A man is climbing on a ladder. He,A man is climbing on a ladder.,He,gold,is trimming the top of the hedges.,starts climbing a mountain and climbing.,climbs the ladder onto the horse.,is sitting down on the other buses.\n13279,anetv_T_5ANYuDWOA,13279,He is trimming the top of the hedges. He,He is trimming the top of the hedges.,He,gold,puts the ax on the roof bark again.,mows the grass with his ax.,gets up and moves the ladder.,is fixing the nails of his claw.\n13280,lsmdc0031_The_Lost_Weekend-65430,9369,\"As he looks at the stage, his imagination is working at top speed. The first drops of sweat\",\"As he looks at the stage, his imagination is working at top speed.\",The first drops of sweat,gold,are gathering on his forehead.,reveals his horizontal backwards pillared vertical watch.,rises as he treads across the lofty stone staircase.,\"lies on his back in pain, then turns to stands still.\"\n13281,lsmdc0031_The_Lost_Weekend-65430,9371,He takes the handkerchief from his pocket and wipes his forehead. The swaying echelon of choristers,He takes the handkerchief from his pocket and wipes his forehead.,The swaying echelon of choristers,gold,\", someone gazes at the coffin.\",makes both express kicking teeth at the unseen instruction.,shows playing its center.,\"slowly dissolves to a row of raincoats, exactly like the one someone wore.\"\n13282,lsmdc0031_The_Lost_Weekend-65430,9379,Someone rolls his program and sticks it into the sand of the cuspidor. The attendant,Someone rolls his program and sticks it into the sand of the cuspidor.,The attendant,gold,takes a swig of beverages's excitement.,\"gives a nod to cutters another, then frowns and sighs.\",stops him from his truck.,holds a short leopard coat and a lady's small umbrella.\n13283,lsmdc0031_The_Lost_Weekend-65430,9373,They hang from hangers and sway slowly to someone's rhythm. His eyes,They hang from hangers and sway slowly to someone's rhythm.,His eyes,gold,are encased in flames.,glued to what he sees on the stage.,are writing as her arms dangle over the one empty table.,flicker on little someone's exotic face.\n13284,lsmdc0031_The_Lost_Weekend-65430,9368,\"People are batting the drinking song back and forth, as the chorus, glasses in hand, stands slowly swaying, echoing each couplet. As he looks at the stage, his imagination\",\"People are batting the drinking song back and forth, as the chorus, glasses in hand, stands slowly swaying, echoing each couplet.\",\"As he looks at the stage, his imagination\",gold,bring tips for his trumpet.,\"begins a big, beefy wrestler from the entrance over two.\",are overturned by silver winds.,is working at top speed.\n13285,lsmdc0031_The_Lost_Weekend-65430,9375,He is wiping his parched mouth. He,He is wiping his parched mouth.,He,gold,is holding a drink on a cake.,puts the handkerchief back.,\"walks away, covering the windows with someone.\",is signing the contract with his hand.\n13286,lsmdc0031_The_Lost_Weekend-65430,9378,The attendant looks up from a newspaper. The attendant,The attendant looks up from a newspaper.,The attendant,gold,takes the check and leaves.,uses the cell to the manager's computer.,nervously approaches someone before kissing on someone.,straps her large tire.\n13287,lsmdc0031_The_Lost_Weekend-65430,9372,\"The swaying echelon of choristers slowly dissolves to a row of raincoats, exactly like the one someone wore. They\",\"The swaying echelon of choristers slowly dissolves to a row of raincoats, exactly like the one someone wore.\",They,gold,seems to rise to normal.,\"suddenly stop and swings, strikes but enters the middle aisle and puts the key to the brush's left hand.\",hang from hangers and sway slowly to someone's rhythm.,stop playing and spotlight comes with someone the two turns.\n13288,lsmdc0031_The_Lost_Weekend-65430,9370,The first drops of sweat are gathering on his forehead. He,The first drops of sweat are gathering on his forehead.,He,gold,gets back on the horse and adds it.,looks at them disapprovingly.,\"falls in the sand, his body submerged in a plume of water.\",takes the handkerchief from his pocket and wipes his forehead.\n13289,lsmdc0031_The_Lost_Weekend-65430,9377,He puts the check on the counter. The attendant,He puts the check on the counter.,The attendant,gold,dries the page with a yellow printed light.,looks up from a newspaper.,adds water to the shaker.,adds a silent charge into the controls' control mechanism.\n13290,lsmdc0031_The_Lost_Weekend-65430,9376,\"He rises and, to the irritation of his neighbors, leaves his seat amid some disapproving shushings from the row behind. He\",\"He rises and, to the irritation of his neighbors, leaves his seat amid some disapproving shushings from the row behind.\",He,gold,\"notes his head against the counter, staring sadly at air as someone drops down his bushy gear.\",puts the check on the counter.,drops to his side and comes in with a bouquet of red flowers.,\"blows on his fingers, holding the strip for his hands.\"\n13291,anetv_fxyqt18d-jo,4158,The man puts jelly and peanut butter on the bread. The man,The man puts jelly and peanut butter on the bread.,The man,gold,takes the plate and shows more cooking meat.,fries the grill on the bread.,sits up and slices a knife and slices the slices on a bread slice.,\"bites into the sandwich, begins talking again, slams the sandwich down on a plate and walks off.\"\n13292,anetv_fxyqt18d-jo,4157,The man holds up a jar of peanut butter and a bottle of jelly after pulling out two pieces of bread while standing in front of a kitchen countertop. The man,The man holds up a jar of peanut butter and a bottle of jelly after pulling out two pieces of bread while standing in front of a kitchen countertop.,The man,gold,removes the bologna from the ceramic pan and slices it around the slices of bread and eats.,puts jelly and peanut butter on the bread.,turn vegetables around a cake.,peels back the tile.\n13293,anetv_aPEqCGdCsp0,173,He fills in the spaces of chinese symbols with black ink. He,He fills in the spaces of chinese symbols with black ink.,He,gold,ominously of girls gathered for many places.,\"finds the picture on the note, which disappears around the top of the ravine.\",\"wipes it clean, then continues tattooing.\",\"around the table, he takes out a large circle and shoots the flames.\"\n13294,anetv_aPEqCGdCsp0,172,A tattoo artist is giving a man a tattoo on the leg. He,A tattoo artist is giving a man a tattoo on the leg.,He,gold,fills in the spaces of chinese symbols with black ink.,begins shaving the sides of his face.,talks about his injury with the attachments for discolored shoelaces.,moves his tattooed ankle and knee up to smaller cut.\n13295,anetv_aPEqCGdCsp0,9906,The artist stops for a few seconds to reload his needles while dipping it into a very small container of ink then goes back to tattooing the area. Two other men,The artist stops for a few seconds to reload his needles while dipping it into a very small container of ink then goes back to tattooing the area.,Two other men,gold,watch as the instructor approaches with a edging screen and a strand of white shirt visible across the intro panel.,come back from behind the desk and take turns cutting off the egg.,peek in from a door to talk to the cameraman and look at the tattoo progression.,are coming up and calls.\n13296,anetv_aPEqCGdCsp0,9907,Two other men peek in from a door to talk to the cameraman and look at the tattoo progression. The focus then,Two other men peek in from a door to talk to the cameraman and look at the tattoo progression.,The focus then,gold,switches back to the tattoo artist who is still working on the tattoo.,\"shows the kite's propellers, and then the camera says that the jack roughly 50 feet high!\",changes to show the iron bunch beside snow.,focuses on a final illustration of household chips.\n13297,anetv_lUw8OA9R4mQ,2346,A large group of people are seen standing around a room with a woman in front grabbing a drink. The woman,A large group of people are seen standing around a room with a woman in front grabbing a drink.,The woman,gold,then plays a piece of workout dancing while the camera continues to capture her movements.,points at the camera with several cameras and leads them into a restaurant with many still speaking into the camera.,puts her drink down and begins leading a group of people dancing around.,then dives into the water and shows off a piece of glass.\n13298,anetv_lUw8OA9R4mQ,2347,The woman puts her drink down and begins leading a group of people dancing around. The group,The woman puts her drink down and begins leading a group of people dancing around.,The group,gold,continues to replay and spins in greetings and ends by jumping up and down.,continues to dance around while the camera captures their movements.,continues to play together while finally playing and smiling to one another.,continue playing pose with one another and speaking to the camera.\n13299,anetv_uhnY3lZ9ZCI,10078,A man in a kayak is battling the waves. He,A man in a kayak is battling the waves.,He,gold,loses his paddle and tries to remain upright.,goes to another waterfall that is in them.,tries to tip the board along the ocean.,surfs along the beach.\n13300,anetv_uhnY3lZ9ZCI,9434,A man with a white hat on is sitting in a kayak. A kayak flips over and the man,A man with a white hat on is sitting in a kayak.,A kayak flips over and the man,gold,is skiing at the bottom of the hill.,begins to speed his surfboard.,continues surfing in the water.,goes into the water.\n13301,anetv_uhnY3lZ9ZCI,9433,A person goes down a large waterfall in a kayak. A man with a white hat on,A person goes down a large waterfall in a kayak.,A man with a white hat on,gold,is sitting in a kayak.,\", walks to some trees to paddle down the river.\",is shown holding the dogs through binoculars.,his tail and begins talking to the camera and standing at a stern.\n13302,anetv_uhnY3lZ9ZCI,10077,Rapid white waters of a river are shown. A man in a kayak,Rapid white waters of a river are shown.,A man in a kayak,gold,is surfing the water.,is riding on boats.,lays in the water.,is battling the waves.\n13303,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3433,Someone stretches out his arms. He,Someone stretches out his arms.,He,gold,sits by someone with the other man who lies unconscious on a couch.,\"looks up, see someone square away the army charleston.\",\"straightens, getting his position over the door of the building.\",clenches his fists and raises his hands above his head acknowledging the applause.\n13304,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3435,\"Lighted candles float in the air high above the long tables which are already prepared for the feast. Through the magnificent stained glass windows of the great hall of Hogwarts School, a glow of soft candlelight\",Lighted candles float in the air high above the long tables which are already prepared for the feast.,\"Through the magnificent stained glass windows of the great hall of Hogwarts School, a glow of soft candlelight\",gold,comes from a tree on the golden floor.,shines out into the night.,outlines a pointed star.,\"covers the walls, covered as primitive chandeliers.\"\n13305,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3431,\"The excited students crowd around someone. Overwhelmed, he\",The excited students crowd around someone.,\"Overwhelmed, he\",gold,follows the man out to the large church.,stretches out and shakes as many hands as he could reach.,collapses to someone's stomach onto the edge of the platform.,takes a half - filled swig as the boy hide.\n13306,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3429,\"Someone throws his arms around the giant's waist and hugs him. At the high table, someone\",Someone throws his arms around the giant's waist and hugs him.,\"At the high table, someone\",gold,clutches the waters in view.,walks onto the stage.,levels his way to one another in a quidditch and slips webbing into a large battle of defenders.,stands and starts to applaud.\n13307,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3434,He clenches his fists and raises his hands above his head acknowledging the applause. Lighted candles,He clenches his fists and raises his hands above his head acknowledging the applause.,Lighted candles,gold,are reflected in the sky.,are circled facing the table.,burn in another drawing.,float in the air high above the long tables which are already prepared for the feast.\n13308,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3427,Someone gets to his feet and looks up fondly at his huge friend. Someone,Someone gets to his feet and looks up fondly at his huge friend.,Someone,gold,gives him a hard stare.,gives a shy smile.,looks at him with confusion.,steps onto the steps and faces the figure behind him.\n13309,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3432,The giant wipes away a tear. Someone,The giant wipes away a tear.,Someone,gold,\"lays on the ground, standing amongst the cars.\",brings out a grain.,stretches out his arms.,points to the cylinder.\n13310,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93506,3430,The whole school rises to its feet. Someone,The whole school rises to its feet.,Someone,gold,stops people from joining in.,smiles silently and studies the dead cat.,\"clicks into the air, unharmed.\",\"comes up, finding himself ready to enter the kitchen.\"\n13311,anetv_CQocaUwWcQI,3059,A man runs down a track and jumps into a pile of sand several times. People,A man runs down a track and jumps into a pile of sand several times.,People,gold,pass at a high speed as the surf finishes and carries on running.,hold him up and shoot the others in the air and walk back to watch one argue face.,are standing on the side watching him.,hits the man who reach to help and other people for practice.\n13312,anetv_CQocaUwWcQI,18720,An athletic man is seen standing before a track and leads into him running down in a pit of sand. Several more clips,An athletic man is seen standing before a track and leads into him running down in a pit of sand.,Several more clips,gold,are shown of him moving back and fourth while the camera captures him from several angles.,are shown of people practicing with one another and leads into various martial arts athletes being interviewed.,are shown of the athletes running down the track and landing into a pit.,are shown of wrestlers eventually jumping and jumping into the sand into a pit.\n13313,anetv_mhPpeG3LrUk,2166,A girl is seen sitting outdoors and holding up a bottle of sunscreen while speaking to the camera. The girl then,A girl is seen sitting outdoors and holding up a bottle of sunscreen while speaking to the camera.,The girl then,gold,\"shakes up the bottle, pours it into her hands, and rubs it all over her body.\",begins moving her hands up and down on the top of the sink and putting them underneath her arm.,braids her hair with a brush and begins brushing her hair and speaking to the camera.,puts her arms down and speaks to the camera and using a spray on her hair.\n13314,anetv_bcOFV26B3jk,18015,The lady runs across the screen. The camera,The lady runs across the screen.,The camera,gold,focuses on two hands.,move in on the contestants viewers and all the customers come to be interviewed.,pans left and right to show the crowd standing around.,rides in her through her small flight supplies.\n13315,anetv_bcOFV26B3jk,18013,A lady kicks a ball in a field. The lady,A lady kicks a ball in a field.,The lady,gold,picks up the baby.,throws the balls in the field.,turns and throws disc.,starts talking and giving an interview.\n13316,anetv_bcOFV26B3jk,18014,The lady picks up the baby. The lady,The lady picks up the baby.,The lady,gold,shuts the camera again.,blows the beat of the sausage with a stick.,runs across the screen.,lifts her hands and puts her palms together.\n13317,anetv_73AGD3RWPEw,18343,A man stretches a rope between two trees. He then,A man stretches a rope between two trees.,He then,gold,rides to the top of the mountain with another rope.,removes the bottle at the foot of a hare.,holds onto a rope and begins racing around and kicking with the ropes.,\"balances on the rope as he walks, sits, and bounces on it.\"\n13318,anetv_73AGD3RWPEw,18344,\"He then balances on the rope as he walks, sits, and bounces on it. He\",\"He then balances on the rope as he walks, sits, and bounces on it.\",He,gold,starts to teach himself how to push and maneuver the ball before climbing.,\"lifts his stands up, five and then approaches.\",\"spins in circles, maintaining his balance.\",\"he takes as he spins a iron on the ground, he lets go of the rope.\"\n13319,anetv_73AGD3RWPEw,17000,Man is standing in a park attaching the ropes on trees. the man,Man is standing in a park attaching the ropes on trees.,the man,gold,is standing on the rope doing balance and making jumps and tricks.,starts tugging the rope and ropes a calf.,is climbing on rope as he balances o rope in a harness and yard.,take a bow and put on a purple belt.\n13320,anetv_qUFPq8D0jMc,6745,They are shown performing several different jump roping tricks while having fun and dancing. The video,They are shown performing several different jump roping tricks while having fun and dancing.,The video,gold,ends with the closing captions shown on the screen.,ends with the closing graphics shown on the screen.,ends with the closing credits shown across the screen.,ends with a pair of cheerleaders performing tricks on the sidelines.\n13321,anetv_qUFPq8D0jMc,6744,Several kids are shown arriving at a park where they put their bags down and proceeded to go into the park. They,Several kids are shown arriving at a park where they put their bags down and proceeded to go into the park.,They,gold,are shown performing several different jump roping tricks while having fun and dancing.,are shown playing around and the girl is shown with the christmas words on them.,\"are standing on a playground, pulling tubes in an inner tube.\",are riding down a hill on the mountain.\n13322,anetv_qUFPq8D0jMc,10945,A group of people are seen putting lunch boxes on a table followed by a girl riding down the slide looking over and people jump roping. More shots,A group of people are seen putting lunch boxes on a table followed by a girl riding down the slide looking over and people jump roping.,More shots,gold,are shown of people riding around on the bikes as well as watch on the sides and the other four jumps in the end.,are shown of people practicing around while riding as well as speaking.,are shown of people jump roping together and speaking to the camera as well as including other people in on the jumps.,are shown of people riding bikes in various city locations with her following the water with one another.\n13323,anetv_Y7VWbYGI0Oc,6216,The camera pans up to show the kite flying in front of a big bright sun. We,The camera pans up to show the kite flying in front of a big bright sun.,We,gold,zoom in with waves from the waters behind it.,are walking by and through the tree - shaped gap.,see bright spots fly about on the lens of the camera.,see the black car for its cycle skating.\n13324,anetv_Y7VWbYGI0Oc,11461,The kite goes up and the man looks up at it. The kite,The kite goes up and the man looks up at it.,The kite,gold,fly around the fire in the air before the star catches it.,runs a bases under the water which is contorted as kids perform and fly.,hangs on its back.,is high in the sky and is seen against a bright sun.\n13325,anetv_Y7VWbYGI0Oc,6215,The kite flys around low then takes off into the sky as the man watches it. The camera,The kite flys around low then takes off into the sky as the man watches it.,The camera,gold,captures the attempt before the camera shows him performing flips and tricks on the kite.,pans up to show the kite flying in front of a big bright sun.,panning up and out of another picture.,pans around the area of congas as he shows a interview back and forth throwing his hair in few more.\n13326,anetv_Y7VWbYGI0Oc,6217,We see bright spots fly about on the lens of the camera. The bright spots,We see bright spots fly about on the lens of the camera.,The bright spots,gold,move cautiously through the rain.,reappear on the screen.,falls to the screen.,peeking from behind a near post.\n13327,anetv_Y7VWbYGI0Oc,11460,A man is holding a string to a kite as he tries to get it to fly. the kite goes up and the man,A man is holding a string to a kite as he tries to get it to fly.,the kite goes up and the man,gold,looks up at it.,jumps down the slope more times.,jumps off the rake.,hits the ball several more times.\n13328,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94819,4753,Someone has an empty space beside him. He,Someone has an empty space beside him.,He,gold,has clearly come up on the siding with a newspaper.,\"looks over at someone, who pointedly ignores him.\",lies at his side.,reaches into his coat pocket and steals a halfway to his desk.\n13329,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94819,4752,\"In the great hall, someone and the other students tuck into a luscious assortment of puddings. Someone\",\"In the great hall, someone and the other students tuck into a luscious assortment of puddings.\",Someone,gold,has an empty space beside him.,fires a bullet over a huge wave as if rocket gurgles through the staff ranks.,'s a match - cue match.,steps back away sitting a bag in hand and heads off.\n13330,anetv_mbGDPga031E,3399,People play shuffleboard indoors and outdoors. A person,People play shuffleboard indoors and outdoors.,A person,gold,pours concrete on a mound of sand.,shows how to paint a bag with tools.,passes by while holding the ball and laughing.,observes when people plays shuffleboard in the street.\n13331,anetv_mbGDPga031E,3400,A couple of old people play outdoor. Other people,A couple of old people play outdoor.,Other people,gold,are or playing lacrosse at the beach house.,are now drinking a drink and spinning ice off a wooden cot.,are four shots playing.,play shuffleboard pushing the balls in the triangle.\n13332,anetv_foFFu7bY5ow,9394,Another man joins him as they have a conversation. They then,Another man joins him as they have a conversation.,They then,gold,begin hitting a ball into two goals.,talk about the art of surfing and some different moves.,see it for money.,slide down the puck at the same time.\n13333,anetv_foFFu7bY5ow,9393,A man is standing on the beach talking to the camera. Another man,A man is standing on the beach talking to the camera.,Another man,gold,joins him as they have a conversation.,walks in front of the camera filming something.,is shown laying on a golf course.,is standing next to the waters.\n13334,anetv_foFFu7bY5ow,2581,A man practices surfing on the sand. They,A man practices surfing on the sand.,They,gold,find some square swim into the water.,continue playing and then hug by the times.,clap forward and distraught.,go into the water and start surfing.\n13335,anetv_foFFu7bY5ow,2580,Two men are talking on the beach. A man,Two men are talking on the beach.,A man,gold,is removing a pair of shoes from his shoe.,is seated in another sand pit.,practices surfing on the sand.,is standing on the edge of the tree.\n13336,lsmdc1056_Rambo-96829,1918,She wears a sodden gray hoodie and jeans. She,She wears a sodden gray hoodie and jeans.,She,gold,climbs the wooden walkway.,\"has a tan coat, two boots and matching green shirts, her arms around someone, who kisses his shoulder.\",\"drives the elephant through the house, past an open door.\",glances at someone through the weakened youth.\n13337,lsmdc1056_Rambo-96829,1916,His face betrays no emotion. She,His face betrays no emotion.,She,gold,turns away from him with a faint smile and walks back along the harbor.,half attacks his right hand.,grabs the hem of his trousers.,\"sits on a couch, staring into the room.\"\n13338,lsmdc1056_Rambo-96829,1921,Someone is at the tiller. Someone,Someone is at the tiller.,Someone,gold,stoically leans on the tiller with both hands.,remains on it remains intact.,is passing on to the roof's edge.,waves his hand and gets out of his way.\n13339,lsmdc1056_Rambo-96829,1917,She turns away from him with a faint smile and walks back along the harbor. She,She turns away from him with a faint smile and walks back along the harbor.,She,gold,\"looks away, stunned.\",wears a sodden gray hoodie and jeans.,\"are running, and people quietly grabbed their business cards and stop arm - table: she sits in.\",goes to the window; it turned straight and disappears into the foreground.\n13340,lsmdc1056_Rambo-96829,1920,\"In the morning light, on someone's boat as it motors along the river, someone addresses his party. Someone\",\"In the morning light, on someone's boat as it motors along the river, someone addresses his party.\",Someone,gold,\"trots back and forth, slows, and makes his way further between the stone barriers.\",begins his approval of the conductor.,is at the tiller.,walk over the trees to build up some food heat.\n13341,lsmdc1056_Rambo-96829,1919,She climbs the wooden walkway. Someone,She climbs the wooden walkway.,Someone,gold,walks and moves the water between several grey walls.,steps to a corner porch and grabs a phone.,checks the photographs as she throws someone down on the sweet - refreshment bar.,\"rubs his chin and runs a hair through his hair, then walks along the harbor.\"\n13342,lsmdc3050_MR_POPPERS_PENGUINS-24039,8222,\"He reads from the printout. At home, someone\",He reads from the printout.,\"At home, someone\",gold,arrives at the desk in a passing mobile home.,keeps his balcony doors open.,reads his name written in a backyard.,approaches someone by his office bureau.\n13343,anetv_WqnnGmL-lmU,13639,The man continues to cut and style the womans hair as he speaks to the camera with the host. He,The man continues to cut and style the womans hair as he speaks to the camera with the host.,He,gold,lifts his arms above her head and hugs her in a hug.,shows several different ways to style the hair and ends with the woman looking pleased.,mechanism is then displayed on the scene.,talks from the camera while laughing to him.\n13344,anetv_WqnnGmL-lmU,9782,\"He washes her hair, then blow dries it. He then\",\"He washes her hair, then blow dries it.\",He then,gold,kicks the woman's hair.,begins styling his hair and straightening it.,cuts and styles her hair.,throws the styling towel and shows her how to shave.\n13345,anetv_WqnnGmL-lmU,13638,Clips are shown of a woman cutting a woman's hair while another speaks to the camera and he begins washing the hair. The man,Clips are shown of a woman cutting a woman's hair while another speaks to the camera and he begins washing the hair.,The man,gold,continues to cut and style the womans hair as he speaks to the camera with the host.,brushes the hair off his face and cuts her hair while brushing the hair.,continues drying the woman's hair while looking down and applying gel on his hand.,continues speaking to the camera and showing various pictures of the dog from behind.\n13346,anetv_WqnnGmL-lmU,9781,A man is touching a woman's hair in a salon. He,A man is touching a woman's hair in a salon.,He,gold,uses a razor hand to show up the hair.,\"washes her hair, then blow dries it.\",is playing a hat in a field in front of a house.,is trying to bounce across a board but is making it up and it seems like a lot of fun.\n13347,anetv_-0r0HEwAYiQ,9067,It seems to catch on the carpet. A close up,It seems to catch on the carpet.,A close up,gold,product in a roller is seen.,is shown of it hanging as she tries to vacuum.,can lead the man dribbling in the hoop.,is shown of people throwing stacked then entryway filing products.\n13348,anetv_-0r0HEwAYiQ,11712,First the person presses two buttons on the vacuum cleaner. The vacuum,First the person presses two buttons on the vacuum cleaner.,The vacuum,gold,is cleaned with the vacuum.,is being brushed and also sparks.,takes off with pink supplies.,is now turned on and gets rolled across the carpet and the hardwood floors.\n13349,anetv_-0r0HEwAYiQ,9066,A woman pushes a button on a vacuum. It,A woman pushes a button on a vacuum.,It,gold,'s leaning on the shoulder of a woman on her legs.,has clothes on an ironing board and begins to work on her regular underside.,is on a court with more people cleaning the bottom and put on the equipment.,seems to catch on the carpet.\n13350,anetv_SLfZUqfyfjs,17562,A man is outside trying to shovel off snow off of their windshield. The man then,A man is outside trying to shovel off snow off of their windshield.,The man then,gold,walks off of his car and into the side of the restaurant.,goes inside and starts talking.,gets on the tractor and pushing leaves and movements.,begins to skis on inflated waters.\n13351,anetv_BC1ZIeZvFXw,6755,A boy is riding a long board down various road ways. He,A boy is riding a long board down various road ways.,He,gold,rides it on a short cliff with the arm of a house.,turns away from it and drives away.,runs around the area but time to jump and is shown again.,does a flip trick riding down one of the road ways.\n13352,anetv_BC1ZIeZvFXw,6756,He does a flip trick riding down one of the road ways. He,He does a flip trick riding down one of the road ways.,He,gold,walks past numerous groups of obstacles on the ice.,winds back and fourth down the snowy road.,\"continues for a moment, racing with his throw.\",jumps and runs down the track after a kiss.\n13353,anetv_H_Spgfds1iY,13880,A large group of people are seen walking into an office and interviewing a man on television. Many people are watching the interview and one man,A large group of people are seen walking into an office and interviewing a man on television.,Many people are watching the interview and one man,gold,sitting under a desk leads him and move to help him.,speaks to a woman angrily.,speaking of the camera while the screen shows more detail of the instrument.,leaning on the side and is interviewed to the other.\n13354,anetv_H_Spgfds1iY,13882,The woman strikes the man and more people are seen walking around and talking. The people,The woman strikes the man and more people are seen walking around and talking.,The people,gold,walk into a bar and begin playing pool and speaking.,continue riding around as well as speaking to the camera.,continue back and fourth and bounce in place around the tables.,perform on the ground while another shows the shape and foot to the dance again.\n13355,anetv_ykdRdg1XvFM,4873,He starts playing an accordion in his hands. A brown dog,He starts playing an accordion in his hands.,A brown dog,gold,runs a little way over.,is also garbage and hits the rake in different directions.,runs up behind him.,comes up and stands by him.\n13356,anetv_ykdRdg1XvFM,8196,\"He starts playing accordion, enjoying and feeling the rhythm. The dog come to him, he\",\"He starts playing accordion, enjoying and feeling the rhythm.\",\"The dog come to him, he\",gold,stops playing then brush his dog's hair.,is holding some with shoes in his hands.,continues trying so while getting more.,has the song and his between guitar.\n13357,anetv_ykdRdg1XvFM,4872,A man sits down in a kitchen. He,A man sits down in a kitchen.,He,gold,starts playing a guitar.,throws a large coffee cup and dries himself off.,is a nurse in a mirror.,starts playing an accordion in his hands.\n13358,anetv_ykdRdg1XvFM,8195,A man sits down in his kitchen making himself comfortable. He,A man sits down in his kitchen making himself comfortable.,He,gold,pours a large pot into a pot.,starts listening to his climbing.,\"starts playing accordion, enjoying and feeling the rhythm.\",picks up a needle and begins it collapse.\n13359,anetv_VwmYoF9Rh_8,11292,\"Thhe camera is underwater, eventually lifting it to record the vast sea and other kayak riders. Several people\",\"Thhe camera is underwater, eventually lifting it to record the vast sea and other kayak riders.\",Several people,gold,\"are standing on the shoreline, but there are many people on their raft also shown in disarray.\",\"are just in their kayaks, paddling around.\",are shown there sailing through the various hills on the water.,\"are seen swimming down the ocean with one other, shimmering them together, adding others.\"\n13360,anetv_VwmYoF9Rh_8,17390,\"A view of the water is shown from underneath, then on top. A group of kayakers\",\"A view of the water is shown from underneath, then on top.\",A group of kayakers,gold,ticks up as the person continues paddling downstream.,floating in an track and pulled next to a table.,\"are inside an ice rink, competing against each other.\",\"gather, then float gently down the stream, enjoying the view of the perfectly clear water.\"\n13361,anetv_VwmYoF9Rh_8,11291,\"Bunch of people are getting ready for kayaking, then another man holding a selfie stick to record a video of himself and then his friend while they are in kayak. Thhe camera\",\"Bunch of people are getting ready for kayaking, then another man holding a selfie stick to record a video of himself and then his friend while they are in kayak.\",Thhe camera,gold,follows the people doing the movements and obstacles.,pulls a elk off the mountain on their left jump.,\"is underwater, eventually lifting it to record the vast sea and other kayak riders.\",stands in front of him.\n13362,anetv_VwmYoF9Rh_8,17389,Two men are looking down into a water hole. A view of the water,Two men are looking down into a water hole.,A view of the water,gold,is shown with several people sitting in the pool.,chases him under a spray of large water.,is seen in the pool.,\"is shown from underneath, then on top.\"\n13363,lsmdc1047_Defiance-91294,2027,\"Someone, in the barn, sighs with relief. Outside someone\",\"Someone, in the barn, sighs with relief.\",Outside someone,gold,stops the weeping germans.,hands out clothing to the jews who were hiding.,pushes him from the hot water and rolls in.,\"'s cab, someone prepares a cocktail of tea.\"\n13364,lsmdc1047_Defiance-91294,2029,The two friends shake hands and someone strides past the little group of Jews who watch him uncertainly. He,The two friends shake hands and someone strides past the little group of Jews who watch him uncertainly.,He,gold,sprints down the street as they exit into a room with blood - stained stone pillars.,glances over his shoulder without slowing down.,stares up at the girl who looks terrified in a weary gaze.,\"lifts up on his feet and slams someone's face up behind his back, knocking him off the train.\"\n13365,lsmdc1047_Defiance-91294,2026,He pats someone on the cheek and goes. Someone and the two young men with him,He pats someone on the cheek and goes.,Someone and the two young men with him,gold,step away from the grave shade.,go back to their car.,leave the party members yet to the rest of the party marches up after the reeds.,join someone in his office.\n13366,lsmdc1047_Defiance-91294,2030,He glances over his shoulder without slowing down. Early the next morning one of the Jews,He glances over his shoulder without slowing down.,Early the next morning one of the Jews,gold,\"stands, a illuminated cupcake on the walls and blocks her door.\",drops his coat onto the taxi and opens.,falls asleep on the bed.,comes up behind someone.\n13367,lsmdc1047_Defiance-91294,2028,Someone's soulful dark eyes look at someone with compassion and he nods. The two friends shake hands and someone,Someone's soulful dark eyes look at someone with compassion and he nods.,The two friends shake hands and someone,gold,faces them with a gun.,strides past the little group of jews who watch him uncertainly.,looks at him with a concerned expression.,talks with the aunt.\n13368,anetv_nR7tqWpNpe8,15193,Some of the rafters are on top of a hill and one of the rafter is diving into the water. The rafters,Some of the rafters are on top of a hill and one of the rafter is diving into the water.,The rafters,gold,continue their journey through the turbulent waters of the river.,have a good time during the rest of the ranch.,\"race down a steep, long top slope.\",climb out of the water and jump up on the rope in preparation to go.\n13369,anetv_nR7tqWpNpe8,15190,They are rowing the raft through the river as the turbulent waves gush towards their raft. They,They are rowing the raft through the river as the turbulent waves gush towards their raft.,They,gold,sticks their boat through an old yard and going up.,\"fly the end of the boat, then kayaks down to the bay, people.\",continue rafting through the river as they stay afloat against the fierce waves.,\"run rafting, route to a motor swimming surroundings and as people keep your boats paddling through a choppy waters.\"\n13370,anetv_nR7tqWpNpe8,15192,The rafters stay afloat despite the turbulent and agitated waves of the river. Some of the rafters are on top of a hill and one of the rafter,The rafters stay afloat despite the turbulent and agitated waves of the river.,Some of the rafters are on top of a hill and one of the rafter,gold,is diving into the water.,slides down a rope.,turns to move about again.,gets off his knees and continues sailing.\n13371,anetv_nR7tqWpNpe8,15189,There's a group of rafters wearing yellow vests going on an adventure. They,There's a group of rafters wearing yellow vests going on an adventure.,They,gold,are riding on a boat river behind a boat.,are drinking and drinking it.,add salt to the pot and turn it on.,are rowing the raft through the river as the turbulent waves gush towards their raft.\n13372,anetv_nR7tqWpNpe8,15191,They continue rafting through the river as they stay afloat against the fierce waves. The rafters,They continue rafting through the river as they stay afloat against the fierce waves.,The rafters,gold,are flowing at the lake.,stay afloat despite the turbulent and agitated waves of the river.,follow their backpacks over the bridge.,\"kneel in and shirt, trying to make pyramids.\"\n13373,anetv_nR7tqWpNpe8,15194,The rafters continue their journey through the turbulent waters of the river. There,The rafters continue their journey through the turbulent waters of the river.,There,gold,'s a person bungee jumping from an elevated crane into the river.,in water rafters wave back water.,are gathered on a ship.,down below are mountains.\n13374,anetv_88TLZbT_KkE,8387,Two men are seen kneeling on the ground laying down tiles. More men,Two men are seen kneeling on the ground laying down tiles.,More men,gold,begin putting plaster on the wall.,are shown bending down on the carpet then landing with a pink bucket.,are seen putting tiles around a person as he stands up.,are shown working with another man speaking to the camera.\n13375,anetv_88TLZbT_KkE,8388,More men are shown working with another man speaking to the camera. The men,More men are shown working with another man speaking to the camera.,The men,gold,continue sprinkle sunscreen on their hands as the camera plays around them performing their hands.,is then shown playing a game of hockey together.,replace his overcoat and pointing to one another and hands them cash.,continue working and laying down tiles on plaster.\n13376,lsmdc0011_Gandhi-51759,3725,He is taken out the ticket but there is a bit of bluster in his attitude and it is cut off by a cold rebuff from the European. He,He is taken out the ticket but there is a bit of bluster in his attitude and it is cut off by a cold rebuff from the European.,He,gold,gestures to the back of the train.,cuts a bite into the sandwich.,stands back in shock.,\"waits for him, strolling down a street, wrapping the ribbon around his neck.\"\n13377,lsmdc0011_Gandhi-51759,3727,\"The porter, wanting to avoid trouble, reaches for someone's suitcases. He\",\"The porter, wanting to avoid trouble, reaches for someone's suitcases.\",He,gold,\"opens the door in the foreground, trailed by the officers.\",bounces upside down as the coffin cheers someone out.,reaches into this waistcoat and produces a card which he presents to the conductor.,\"scrambles out after someone, landing in someone's ruin.\"\n13378,lsmdc0011_Gandhi-51759,3726,\"He gestures to the back of the train. The porter, wanting to avoid trouble,\",He gestures to the back of the train.,\"The porter, wanting to avoid trouble,\",gold,gets a living and dons kind of difficult coffee.,sits on his back and begins to shake.,\"zips up over the grate, shattering the horn.\",reaches for someone's suitcases.\n13379,lsmdc0011_Gandhi-51759,3723,\"The porter has glanced down the corridor, where from his point of view we can just glimpse the European talking with the conductor. He\",\"The porter has glanced down the corridor, where from his point of view we can just glimpse the European talking with the conductor.\",He,gold,dramatically runs his hand through someone's hair.,looks up suddenly then turns back quickly to his work.,\"stride lazily down the street, seeing the nod on their way, someone stops in front of them.\",begins to enter him.\n13380,lsmdc0011_Gandhi-51759,3724,He looks up suddenly then turns back quickly to his work. Someone,He looks up suddenly then turns back quickly to his work.,Someone,gold,makes his way across the street with their swords raised in triumph.,\"watches, confused someone turns toward the door from the open office door.\",\"notices someone on a vanity surrounded by vanity chairs, and an exam table.\",is incredulous that he is being addressed in such a manner.\n13381,lsmdc0011_Gandhi-51759,3728,\"Someone is still puzzled by his belligerence, but is beginning to react to it, this time with a touch of irony. He\",\"Someone is still puzzled by his belligerence, but is beginning to react to it, this time with a touch of irony.\",He,gold,\"shoots someone's hand: someone, friendly, nervous, edging his way through a doorway at the other end.\",crawls down to someone's writhing tangle.,\"goes on through the copies of the filling terminal, drawing of some potted plants.\",turns and walks out of the compartment.\n13382,lsmdc3063_SOUL_SURFER-31146,5877,Someone's legs writhe under. Someone,Someone's legs writhe under.,Someone,gold,enters someone's bedroom.,\"whips the gun gun off his trouser hand, snatching it away.\",opens his boot again.,taps his father's head.\n13383,anetv_f7ndXtwTep0,8194,She holds up various objects and begins washing clothes. She,She holds up various objects and begins washing clothes.,She,gold,touches another dish at the camera with the children.,puts clothes into a wet bucket while stopping to speak to the camera.,then begins washing the dishes.,showing her hair then rinses.\n13384,anetv_f7ndXtwTep0,14135,Woman scrubs dirty clothes using a brush. The woman,Woman scrubs dirty clothes using a brush.,The woman,gold,cleans the dog by washing it.,washes the cloth of a bucket trying to clean it while the woman pours her hand soap.,\"sits on the floor, dirty and backwards.\",dips the clothes in clean water.\n13385,anetv_f7ndXtwTep0,14136,The woman dips the clothes in clean water. Woman,The woman dips the clothes in clean water.,Woman,gold,cross her hands and start to dance.,collapses onto the dirt before putting on a wiper.,has a towel and ground.,squeezes all the extra water out of the clothing.\n13386,lsmdc1041_This_is_40-9355,8900,Someone sees the dealer license plate. He,Someone sees the dealer license plate.,He,gold,puts his head down as someone arrives.,notices someone trying to fire the street.,leans wearily as she walks towards him wearing a shirt.,pulls the bottle out of his mouth.\n13387,lsmdc1041_This_is_40-9355,8897,He punches someone in the face. The man,He punches someone in the face.,The man,gold,\"dangle free by someone who punches someone, and then walks away with his shoulders down.\",grimaces again and dodges himself.,\"easily absorbs someone's stomach punch, then knocks someone over with one.\",pulls someone away then slithers through the wall as someone sits in one of the doors.\n13388,lsmdc1041_This_is_40-9355,8901,\"He puts his head down as someone arrives. Now, in a hospital hallway, someone\",He puts his head down as someone arrives.,\"Now, in a hospital hallway, someone\",gold,shakes her head as she sits with someone.,sleeps on his red - tiled bed.,watches against a tiled wall and rubs someone's nose.,treads down a stairway to the floor.\n13389,lsmdc1041_This_is_40-9355,8899,Someone gets out and runs to someone. The man,Someone gets out and runs to someone.,The man,gold,turns as his sedan arrives and runs through the first guard's arms.,escapes as buffet around the van.,tries to let someone down.,gets in his suv as someone writhes in glass.\n13390,lsmdc1041_This_is_40-9355,8898,\"The man easily absorbs someone's stomach punch, then knocks someone over with one. Someone\",\"The man easily absorbs someone's stomach punch, then knocks someone over with one.\",Someone,gold,gets out and runs to someone.,dodges the man and runs along the stone rooftops.,serves the salt to him.,grabs her suspenders.\n13391,anetv_gxJeNdvNzhU,4048,\"The boy in the middle is standing in front of a woman who is tying the bandanna around his eyes so he can't see the pinata. As she is doing that, a man\",The boy in the middle is standing in front of a woman who is tying the bandanna around his eyes so he can't see the pinata.,\"As she is doing that, a man\",gold,\"is standing behind him, jumping off in the swing, still swinging of the bar.\",\"throws a white ball and running around it, knocking the cows in half.\",in blue goes down and runs after the other three.,comes along and directs the kids to back up so they won't get hit.\n13392,anetv_gxJeNdvNzhU,8337,A young child is being blindfolded by a man in front of a large crowd. The boy then,A young child is being blindfolded by a man in front of a large crowd.,The boy then,gold,swings and twirls on all of the diving raises.,begins to grab a swing and hit the pinata back and forth.,gets to the bathroom by the camera crowded.,begins swinging a bat at a pinata.\n13393,anetv_gxJeNdvNzhU,4047,A group of kids are gathered outside of a garage watching a the boy in the middle. The boy in the middle,A group of kids are gathered outside of a garage watching a the boy in the middle.,The boy in the middle,gold,has a blanket around his face standing outside.,begins shoveling a driveway and moving slowly through several yard blood cars.,is standing in front of a woman who is tying the bandanna around his eyes so he can't see the pinata.,has a little picture how to make hold parts.\n13394,anetv_XZZRyOhxQBE,18590,\"The athlete in orange top ran towards the mat, then did a high jump and he was able to go over the pole and landed on the mat. The man in gray shirt on the side\",\"The athlete in orange top ran towards the mat, then did a high jump and he was able to go over the pole and landed on the mat.\",The man in gray shirt on the side,gold,prepares to sit in the rope and walked at the front of the gym wearing a white microphone.,looked up and running away from the javelin lands.,grab another harness and fell on the ground and walked across the mat.,\"is holding a long pole, while a bald man is raising the flags.\"\n13395,anetv_XZZRyOhxQBE,10602,He vaults onto the pole and into the air. He,He vaults onto the pole and into the air.,He,gold,\"goes over the bar several times, landing on the mat.\",\"is then shown doing various department, fencing techniques.\",somersaults down the rake of the javelin.,demonstrates how to watch other athletes as he jumps up and down.\n13396,anetv_XZZRyOhxQBE,10601,A gymnast uses a long pole to approach a vault. He,A gymnast uses a long pole to approach a vault.,He,gold,\"swings a pole bar, then she swings out along the teeming street.\",vaults onto the pole and into the air.,mounts the high edge and vaults into a black arena.,see the names in front of a mirror.\n13397,anetv_XZZRyOhxQBE,18591,\"The man in gray shirt on the side is holding a long pole, while a bald man is raising the flags. The athlete\",\"The man in gray shirt on the side is holding a long pole, while a bald man is raising the flags.\",The athlete,gold,jumped and missed the rope.,picked up the stick and did another high jump.,runs and threw a rope on the field.,throw the javelin in the air and threw the discus.\n13398,anetv_G4mX4StOvQE,16259,A woman is kneeling down on a blue mat. A man,A woman is kneeling down on a blue mat.,A man,gold,stands behind her talking.,puts his hands up in the air.,kneels on the wall in front of her.,is laying on a mat while a man is watching.\n13399,anetv_G4mX4StOvQE,16260,A man stands behind her talking. The woman,A man stands behind her talking.,The woman,gold,starts moving her legs and arms.,removes the clear head from the box.,lifts her legs and lifts a barbell before a heighten hurdle.,\"walks up the parallel bars, then stops and turns around.\"\n13400,lsmdc3029_GREEN_ZONE-13795,15481,\"They park, lights out. Someone\",\"They park, lights out.\",Someone,gold,stretches their pen drawn.,picks up a bottle of drinks and sits down by the table.,keeps an eye on the garage door guards.,looks off as the elevator arrives.\n13401,lsmdc3029_GREEN_ZONE-13795,15477,Someone seizes someone by the collar. Someone's calm harsh gaze,Someone seizes someone by the collar.,Someone's calm harsh gaze,gold,falls on his lips.,meets the boy's.,sweeps over her long brown hair.,glares at someone who searches the general's eyes.\n13402,lsmdc3029_GREEN_ZONE-13795,15478,\"The high ranking Iraqi lets go. Now, theIraqi in street clothes\",The high ranking Iraqi lets go.,\"Now, theIraqi in street clothes\",gold,getting dressed in gray shorts are floating in the nearby animal room.,packs a bucket in a bin.,pounds on a metal door.,watch from mounds of coal passing outside.\n13403,lsmdc3029_GREEN_ZONE-13795,15482,Someone keeps an eye on the garage door guards. The Humvee commander,Someone keeps an eye on the garage door guards.,The Humvee commander,gold,watches the water tower.,\"escorts upstairs, peering into it.\",makes his way out onto the porch.,ducks under a window.\n13404,lsmdc3041_JUST_GO_WITH_IT-18539,2476,Someone shoves someone into the pool. He,Someone shoves someone into the pool.,He,gold,spins around on a flash beam.,\"jumps in the water, dunks her and holds her under.\",pushes his way up to the operating table.,\"fires from one of the body jackets, then speeds off down the road.\"\n13405,lsmdc0022_Reservoir_Dogs-59228,18432,When we move to a wider shot we see someone performing his monologue to someone in a parking lot. Someone,When we move to a wider shot we see someone performing his monologue to someone in a parking lot.,Someone,gold,\"joins in, taking stares.\",paces back and forth as he performs his story.,looks like the same girl and a pretty mouse - - each woman is in her bed.,slowly walks down an aisle.\n13406,lsmdc3025_FLIGHT-12079,13009,Someone sits on the bed. She,Someone sits on the bed.,She,gold,\"peers frantically in their windows, then suddenly flies through the snow filled forest.\",\"ends a call, and continues packing her things in the bedroom.\",fills out her bag.,\"points a remote at someone, and lowers herself into the water of the bed.\"\n13407,anetv_xF7etZzLFbY,8923,A man walks alongside a boy who is mowing the lawn. He,A man walks alongside a boy who is mowing the lawn.,He,gold,holds a sign for smoking and shows more clips of the hopscotch game being shown.,gets off his lawn mower and leaves it.,picks up the rake and starts to climb the tree in the grass.,instructs the boy on how to turn the mower and go around a small tree.\n13408,anetv_xF7etZzLFbY,8924,He instructs the boy on how to turn the mower and go around a small tree. He,He instructs the boy on how to turn the mower and go around a small tree.,He,gold,throws a fake fish off the back while he pets the dog.,\"cringes, then draws the door closed.\",continues walking and guiding the boy.,goes back to rub it with a can of soap.\n13409,anetv_fXdw7jwiP8g,18129,She starts dancing for the camera. She,She starts dancing for the camera.,She,gold,shows several dance moves as she does them.,is dancing with people it.,continues smoking and dancing for the camera.,does and moves her arms.\n13410,anetv_fXdw7jwiP8g,18128,A woman in a black leotard is talking on a stage. She,A woman in a black leotard is talking on a stage.,She,gold,is shown riding the drums in a stable.,is showing her hair in a ponytail.,starts dancing for the camera.,is back on an elliptical elliptical.\n13411,lsmdc0007_DIE_NACHT_DES_JAEGERS-49089,15388,Someone sits up and points at it. Someone,Someone sits up and points at it.,Someone,gold,pours wine over a bowl then pours it into a bowl.,notices her and sees it.,tosses the sails back onto the canvas.,shakes the limp man's hand.\n13412,lsmdc0007_DIE_NACHT_DES_JAEGERS-49089,15387,\"He moves, and as his shadow moves away we see the shadow of someone, motionless. Someone\",\"He moves, and as his shadow moves away we see the shadow of someone, motionless.\",Someone,gold,sits up and points at it.,swallows gripping the gun in his hand.,\"steps into his robe and approaches forward, holding a harmonica, motioning to someone.\",is bent over as he was tattooing his face.\n13413,lsmdc0011_Gandhi-52584,8876,\"A few of the tail - enders watching, some running clear of the police, some being beaten. Two police\",\"A few of the tail - enders watching, some running clear of the police, some being beaten.\",Two police,gold,\"squad recruit keep walking alongside the motorcade, their lights flickering.\",enter the smaller office where his german officer strides through.,have a man on the ground.,cruisers is blown through the field.\n13414,lsmdc0011_Gandhi-52584,8875,The marchers are men in loin - clothes and tunics; they brandish torn and ripped English cloth and shout in unison. Some of the marchers,The marchers are men in loin - clothes and tunics; they brandish torn and ripped English cloth and shout in unison.,Some of the marchers,gold,\"go, high fiving each other.\",turn to face him.,are being afraid of reporters.,turn at the shout.\n13415,anetv_tSUzEX6ps0s,16347,\"On a white piece is of paper is a foot long piece of bread and a row of ham, pepperoni, salami then cheese are added on the sub. Next, the man\",\"On a white piece is of paper is a foot long piece of bread and a row of ham, pepperoni, salami then cheese are added on the sub.\",\"Next, the man\",gold,puts the sub in the oven to be toasted and moves a tray of cookies to the other side of the counter.,blows the cucumber in on the butt of the sandwich.,\"is with a butter and bread, just tiny pieces of bread.\",adds the xs and uses a slice to scrape the vegetables.\n13416,anetv_tSUzEX6ps0s,16348,\"Next, the man puts the sub in the oven to be toasted and moves a tray of cookies to the other side of the counter. As he waits, he\",\"Next, the man puts the sub in the oven to be toasted and moves a tray of cookies to the other side of the counter.\",\"As he waits, he\",gold,pours the martini and helps them out to another table with vegetables on it.,takes off his shirt and opens a tin locker taking out the plates of bread.,begins talking to his friend and checking the cookies.,removes the plate with tin tissue and tomatoes as he talks to the camera and the lovelorn man continues to talk.\n13417,anetv_JcMOzfurtK4,5699,The woman and man are at the packing up their stuff like food. An old man,The woman and man are at the packing up their stuff like food.,An old man,gold,shows how to cook butter and the ingredients by pouring them over a small pan.,is holding in a stiff with cloth.,is pointing the map and then talking to the other guy then two men carried the canoe near the river.,is then standing on a sofa and is holding up a bag of candy.\n13418,anetv_JcMOzfurtK4,13586,A man is pointing at a map and talking before unloading canoes from a trailer. The people,A man is pointing at a map and talking before unloading canoes from a trailer.,The people,gold,set up tents and prepare their sleeping bags.,are at the start of the race rowing.,are inside a race facility sitting to a railing and putting equipment on.,are homes to the boats skiing through rough waters.\n13419,anetv_JcMOzfurtK4,13585,\"A group of people gather at a camp site, unpacking a truck. A man\",\"A group of people gather at a camp site, unpacking a truck.\",A man,gold,is pointing at a map and talking before unloading canoes from a trailer.,is on a track outside he talks.,is riding a canoe down the street on a large winding trail.,rolls on a raft in the street and walks around the garage.\n13420,anetv_JcMOzfurtK4,5701,Two people are canoeing in the calm water. The people,Two people are canoeing in the calm water.,The people,gold,\"are standing in the water, paddling.\",are riding on their kayaks in the rapids of the river.,are gathered on the boat.,set up the tent and continue to canoe and then go fishing.\n13421,anetv_JcMOzfurtK4,5700,An old man is pointing the map and then talking to the other guy then two men carried the canoe near the river. Two people,An old man is pointing the map and then talking to the other guy then two men carried the canoe near the river.,Two people,gold,ski in the backyard of the water where tubes at the bottom of a hill.,are canoeing in the calm water.,take off a helicopter.,are sitting in their kayaks sitting in a swimming pool.\n13422,anetv_JcMOzfurtK4,13587,The people set up tents and prepare their sleeping bags. They,The people set up tents and prepare their sleeping bags.,They,gold,put them into a pile and leaves a point in the day.,\"make a fire, then canoe down a river slowly.\",place a woman in a tow line.,slice the sandwich in another.\n13423,anetv_ryZuSiZNN2o,9601,A field of two teams are shown fighting over a lacrosse ball in the middle of a large green field. They then,A field of two teams are shown fighting over a lacrosse ball in the middle of a large green field.,They then,gold,appear playing a game of croquet in front of them as the people do this.,take hopscotch and begin throwing the ball pretty times back and forth across the field.,slow down and concentrate by running up and down the field wearing a yellow assists.,get up and continue playing across the large field.\n13424,lsmdc1039_The_Queen-87985,14443,\"Later, someone sits at a desk and writes in a book. Someone\",\"Later, someone sits at a desk and writes in a book.\",Someone,gold,compares it to his black uniform.,enters a room and stands by the door.,stands in front of him.,is reading a magazine.\n13425,lsmdc1039_The_Queen-87985,14442,\"Someone walks down a corridor and addresses a footman. Later, someone\",Someone walks down a corridor and addresses a footman.,\"Later, someone\",gold,stands in a barber shop as a guy works out an waterboard.,wakes with a pigeon.,takes out a lift and wears a beige dress.,sits at a desk and writes in a book.\n13426,anetv_IgAE9XJVIlk,14033,\"A young man stands on his hands spinning around and dance hip hop, also the teen dance hip hop during the day and night. Then, the young man\",\"A young man stands on his hands spinning around and dance hip hop, also the teen dance hip hop during the day and night.\",\"Then, the young man\",gold,jumps and spins for an free throw.,holds the camera back and now an event claps as the sax fades.,\"makes his path down a high sidewalk of the streets, standing by the curb then tries to go in fast.\",\"spins around many times, then the teen dance hip hop.\"\n13427,anetv_IgAE9XJVIlk,17695,The man moves his body around while the camera spins around him. He,The man moves his body around while the camera spins around him.,He,gold,uses the razor again to clear out the entire skin.,continues to dance around while looking off into the distance.,then watches the man illustrating the moves.,bike is shown through a closeup of the bike.\n13428,anetv_IgAE9XJVIlk,17694,A person is seen break dancing on a roof in the day as well as night. The man,A person is seen break dancing on a roof in the day as well as night.,The man,gold,holds up the vacuum hose and sprays on all spray.,continues playing with the camera and waving her arms arms and looking off into the distance.,is seen on the dirt in slow motion.,moves his body around while the camera spins around him.\n13429,anetv_IgAE9XJVIlk,14032,A teen dance hip hop in a rooftop during the day and night while other teens watch. A young man,A teen dance hip hop in a rooftop during the day and night while other teens watch.,A young man,gold,\"stands on his hands spinning around and dance hip hop, also the teen dance hip hop during the day and night.\",with a guitar sits on a barrier in the entrance followed by the man standing behind paddles.,gallops on to the street and begins the skateboard.,wearing gray shirts arrives in a suburban suburban neighborhood.\n13430,lsmdc3023_DISTRICT_9-10759,5090,Now he finds a rusty metal box. Black fluid,Now he finds a rusty metal box.,Black fluid,gold,\"reaches someone, who attacks.\",follows and someone comes in.,sprays him in the face.,brings him into a bookcase.\n13431,anetv_sbvdGKpHy2M,3673,He shows off the cream as he puts it on his client. He then,He shows off the cream as he puts it on his client.,He then,gold,shows his manicure hand to show performs before center stage.,gently and professionally gives the man a beard shave.,removes shanghai's skin to show the skull's teeth.,plugs on a sandwich and starts eating cream.\n13432,anetv_sbvdGKpHy2M,3671,The interior and supplies of an old fashioned barber shop are shown. A man,The interior and supplies of an old fashioned barber shop are shown.,A man,gold,picks up a bowling ball and sets it on a small table.,is painting on a wall.,starts painting the fence with her.,sharpens a razor strap.\n13433,anetv_sbvdGKpHy2M,3674,\"The man lies still as he applies a cloth, then aftershave. A close up\",\"The man lies still as he applies a cloth, then aftershave.\",A close up,gold,is shown of a shaving machine being trimmed.,is shown of the clean shaven face.,of a man's voice is seen.,\"is shown destroying the vacuum, washing blood.\"\n13434,anetv_sbvdGKpHy2M,3672,A man sharpens a razor strap. He,A man sharpens a razor strap.,He,gold,shows off the cream as he puts it on his client.,runs through a cape and hits a yellow mat with block restriction.,bounces up two black and tights.,begins shaving underneath bare legs before shaving his right arm.\n13435,anetv_MtmQjudesdM,18564,\"She runs, then jumps onto the mat. She\",\"She runs, then jumps onto the mat.\",She,gold,hangs the pole and gives many high fives.,jumps off a beam onto a mat.,steps onto the mat.,walks away dejectedly after missing.\n13436,anetv_MtmQjudesdM,13404,A female track athlete is standing on her tip - toes on a track. She,A female track athlete is standing on her tip - toes on a track.,She,gold,lifts her skateboard up in the dirt and starts jumping into the air.,walks around a track and throws a javelin.,lifts up her foot and runs at a angle toward a mat and completes a successful high jump.,runs with her horse a short distance in the wilderness.\n13437,anetv_MtmQjudesdM,18563,A track athlete prepares to run toward the target. She,A track athlete prepares to run toward the target.,She,gold,shoots him and then throws him onto the ice.,\"runs, then jumps onto the mat.\",dives to the side of the field.,lands on a mat and flips off a set of uneven bars.\n13438,lsmdc3002_30_MINUTES_OR_LESS-806,19223,\"Outside the Family Dollar store someone and someone wait in the van. Someone bops his head to the song, someone\",Outside the Family Dollar store someone and someone wait in the van.,\"Someone bops his head to the song, someone\",gold,observes the two of them with his scared foot.,pops out the cassette.,stops his traffic bus.,furrows his brow and says.\n13439,anetv_AK34mhNU28s,18522,A man holds a huge kite in a big field. A dog,A man holds a huge kite in a big field.,A dog,gold,misses the kite where the boys cheer.,jumps onto a spinning stage.,chases the man as he runs and jumps.,strikes a bowling ball.\n13440,anetv_AK34mhNU28s,18523,A dog chases the man as he runs and jumps. The man,A dog chases the man as he runs and jumps.,The man,gold,eats from the water with his frisbees.,brings the kite to the ground.,jumps and jumps from the pony.,spins and lassos a calf.\n13441,anetv_CSk99DHanfg,3483,People on a boat suit up in scuba gear then jump into the water. Scuba divers,People on a boat suit up in scuba gear then jump into the water.,Scuba divers,gold,are diving off the diving board under water.,go over many boards into the water.,jump into the open as well as water and swim boards.,swim through a cave area.\n13442,anetv_CSk99DHanfg,3486,Various fish are seen swimming through the reef. A manta ray,Various fish are seen swimming through the reef.,A manta ray,gold,swims in the ocean over a reef.,appears on the ice near the bowl.,sits on the ground and waves his arms.,works on the side of a long table.\n13443,anetv_CSk99DHanfg,3485,Sea turtles graze and swim in the ocean. Various fish,Sea turtles graze and swim in the ocean.,Various fish,gold,are also shown on the board along with dark skin and their life cards and sizes.,are reflected on a canvas where people are also gathered in the water.,are seen swimming through the reef.,\"are floating along the waters, paddling currents waves, but scuba only, as teenage children shark underwater ahead.\"\n13444,anetv_CSk99DHanfg,3484,A tropical beach is seen. Sea turtles,A tropical beach is seen.,Sea turtles,gold,graze and swim in the ocean.,is kayaking walking alongside them.,sets on puffy flowers.,is used in stacks of a village.\n13445,anetv_DR0hc7lT0hE,13097,The man then swings the hula hoop all around himself while walking to the camera. Another man,The man then swings the hula hoop all around himself while walking to the camera.,Another man,gold,enters with several others behind him as he continues to play.,is shown afterwards performing a routine in a different set performing a flip into others and leading to a big pile.,walks into frame and hula hoops with the man while still looking at the camera.,walks up and switches pushes and ends with another man wearing clips and rings a hula hoop.\n13446,anetv_DR0hc7lT0hE,13096,A man is seen backing away from the camera while speaking and holding a hula hoop. The man then,A man is seen backing away from the camera while speaking and holding a hula hoop.,The man then,gold,switches on the hula hoop.,bends down next to the materials hoop and ends with a man standing on.,wrestles the old men up with the large golf balls while tossing in.,swings the hula hoop all around himself while walking to the camera.\n13447,anetv_8-QcL1k5n6k,18093,The man adjusts the dial and works out more. We,The man adjusts the dial and works out more.,We,gold,see the person picking up the alfa jack from fixing the bike.,see the man's hand on the handle.,see the men record.,see a message screen.\n13448,anetv_8-QcL1k5n6k,18095,We see the machine folded and put away. We,We see the machine folded and put away.,We,gold,see the man workout again.,see the ending title screen.,see the ending credits.,see the skater reverts to focus.\n13449,anetv_8-QcL1k5n6k,14596,The man can easily fold up quickly for compact storage. The machine,The man can easily fold up quickly for compact storage.,The machine,gold,\"starts moving slowly, still exiting.\",has transport wheels for easy transport the rowing machine to exercise.,edges through the handle into the red cloth.,turns his head so the boot will keep up.\n13450,anetv_8-QcL1k5n6k,14594,\"A man exercise on a rowing machine pulling a handle and moving forward and backward. Then, the man\",A man exercise on a rowing machine pulling a handle and moving forward and backward.,\"Then, the man\",gold,increases the resistance of the machine and continue exercising.,grabs a rod and is demonstrating how to use the rowing machine.,lifts his arms in the air and does a hand stand.,gets on and rubs his leg together.\n13451,anetv_8-QcL1k5n6k,18092,We see a man on a rowing machine. The man,We see a man on a rowing machine.,The man,gold,uses rowing machine in rowing machine.,adds a smaller piece of metal to the wood.,adjusts the dial and works out more.,lifts the handle of his ski.\n13452,anetv_8-QcL1k5n6k,14595,The machine has a multi functional on board computer. The man,The machine has a multi functional on board computer.,The man,gold,is sucked on the device together and pulled forward by a device.,\"lunges at it with his foot, hands rubbing its chest over a metal rod.\",can easily fold up quickly for compact storage.,is holding a heavy machine gun in his hand in a replay of a red cup.\n13453,anetv_Fk0z6MeCV0I,18366,\"A class of kids are at outside at school dressed in uniforms with their teacher standing next to them. As they are in line, one girl\",A class of kids are at outside at school dressed in uniforms with their teacher standing next to them.,\"As they are in line, one girl\",gold,gives her the position then jumps in the other's hand.,mounts front from the red girl.,mounts a black rope in a field.,\"is in the middle of a game of hop scotch, turns around, finishes and gets back in line.\"\n13454,anetv_Fk0z6MeCV0I,18367,\"As they are in line, one girl is in the middle of a game of hop scotch, turns around, finishes and gets back in line. Once she is finishes, all of the other kids\",\"As they are in line, one girl is in the middle of a game of hop scotch, turns around, finishes and gets back in line.\",\"Once she is finishes, all of the other kids\",gold,head to down starting and walk out onto the street.,begin fighting with her another to continue jumping in.,takes their turn one by one.,\"walk away and end by taking turns, and running down the middle of the stick.\"\n13455,anetv_y-rgla4aNUo,15955,He is singing while he's playing. He,He is singing while he's playing.,He,gold,finishes playing and moves his guitar.,starts playing the bagpipes.,plays the harmonica and talks about to music.,gets on the instruments and starts playing the harmonica again.\n13456,anetv_y-rgla4aNUo,15954,A man is sitting in a chair playing an acoustic guitar. He,A man is sitting in a chair playing an acoustic guitar.,He,gold,is singing while he's playing.,starts playing the guitar on the couch.,begins taking ballet rings and moving his hands in the air.,is playing on a keyboard playing a song on a guitar.\n13457,anetv_y-rgla4aNUo,13378,He is playing a guitar in front of a drum set. He,He is playing a guitar in front of a drum set.,He,gold,learns to do the harmonica being played while trying to play.,is talking as he continues to play.,walks to the ground to play the bagpipes.,play a set of drums while they begin to play bass drums.\n13458,anetv_y-rgla4aNUo,13377,A man is seated inside a building. He,A man is seated inside a building.,He,gold,is playing on a stage while on to the cup.,is playing a guitar in front of a drum set.,is painting a fence.,is drawing a black substance from a large file.\n13459,anetv_d1JA5V3hO3Q,16188,The people get in the black van and drive away adn teh car owners stand on the street. We then,The people get in the black van and drive away adn teh car owners stand on the street.,We then,gold,see several tubers going down the road together.,see the ending scene.,see people on roller skating down the sidewalk.,see them leave the background and bush.\n13460,anetv_d1JA5V3hO3Q,16185,We see a title screen and people in suits wash cars as a joke. A man and a small boy with high powered hoses,We see a title screen and people in suits wash cars as a joke.,A man and a small boy with high powered hoses,gold,are on sheer boulders making guardrail south.,towed down the road to high speed.,wash cars followed by cheerleaders.,ride ahead of the house.\n13461,anetv_d1JA5V3hO3Q,16187,We see a black van with people getting out and a man in a top hat touch the car. The people,We see a black van with people getting out and a man in a top hat touch the car.,The people,gold,turn to switch with the machine.,walk in and cuts the hedge.,continue riding around and then run around the track.,get in the black van and drive away adn teh car owners stand on the street.\n13462,anetv_d1JA5V3hO3Q,16186,A man and a small boy with high powered hoses wash cars followed by cheerleaders. We,A man and a small boy with high powered hoses wash cars followed by cheerleaders.,We,gold,see the men in blue.,see their image in green and white.,see a black van with people getting out and a man in a top hat touch the car.,return or a car up road.\n13463,anetv_AcLZk6JyXUM,2664,The man then conducts the choir to sing together. The group,The man then conducts the choir to sing together.,The group,gold,continues to sing with one another while others watch on the side.,start to bow and go as they fan.,continue to dance in slow motion of the singing.,\"is dancing in the beginning, and dancing, playing the drums as fast as they can.\"\n13464,anetv_AcLZk6JyXUM,1333,A choir stands before a congregation. a choir director,A choir stands before a congregation.,a choir director,gold,stands in front of the choir and waves his hands.,takes the pictures of them.,\"accepts a band, where woman dance.\",reads to someone inside an early outdoor football.\n13465,anetv_AcLZk6JyXUM,2663,A man is seen standing in front of a group of people. The man then,A man is seen standing in front of a group of people.,The man then,gold,conducts the choir to sing together.,goes over and hits a ball.,starts dancing with the dog.,drinks another bottle of water and tosses it to the other driver.\n13466,anetv_knY08LrNyHg,7849,Several shots are shown of people pushing sail boats into the water as well as riding them around one another. People,Several shots are shown of people pushing sail boats into the water as well as riding them around one another.,People,gold,place the poles around and speak to the camera as well as smiling to the camera.,are seen riding on river followed by many clips of men using snowboards.,are seen riding around on jet skis following the boat as well as close ups of the boats being shown as well as underwater.,ride in the canoe and push in the end while hundreds of people ride the other.\n13467,anetv_knY08LrNyHg,7850,People are seen riding around on jet skis following the boat as well as close ups of the boats being shown as well as underwater. More people,People are seen riding around on jet skis following the boat as well as close ups of the boats being shown as well as underwater.,More people,gold,look on and speaks briefly as well as adjusting sides.,are shown jumping over skating as well as getting off.,are seen applauding the sealife.,are seen riding on smaller boats and end by dragging a boat back to shore.\n13468,anetv_OEQM6wYtYlk,1154,\"When he reaches the top, he pauses. Then he\",\"When he reaches the top, he pauses.\",Then he,gold,loads off three straight kicks.,finishes and turns away.,sits back down by his bars.,slides all the way to the bottom.\n13469,anetv_OEQM6wYtYlk,1520,\"A tall adult male is walking up and extremely long slide at an outdoor kid's wooden park. Once the man makes it to the top, he\",A tall adult male is walking up and extremely long slide at an outdoor kid's wooden park.,\"Once the man makes it to the top, he\",gold,\"dismounts and the fully worn slide comes back to him,.\",slides down rapidly and ends up doing a flip off of the slide.,begins hopping around the playground.,begins pushing the other along the monkey bars while the girl tugs on his legs.\n13470,anetv_s-kFpQRPcyE,1324,Hair products and hair tools are displayed. The male stylist,Hair products and hair tools are displayed.,The male stylist,gold,\"is does a client's hair with products, a clipper, and hair dryer.\",uses a set of braids blown around the hair section of a tennis basket.,combs a com comb the letter putting a wig and applies gel to the dolls hair.,kneels in front of the hair shop then joins him on the back.\n13471,lsmdc1039_The_Queen-88105,1155,A man sticks his hand up. Someone,A man sticks his hand up.,Someone,gold,leads him to a large park where several people are riding them.,stares back at them.,beams down the track between lines several times.,\"is blown down, headed back into the cross to know what was used to reach.\"\n13472,anetv_VlfnvORj6KY,8148,He begins playing the drums in front of him. He finishes playing and pictures,He begins playing the drums in front of him.,He finishes playing and pictures,gold,waves to his players.,the text on the screen.,go into their pockets.,are shown on the screen.\n13473,anetv_VlfnvORj6KY,8147,A man is sitting behind three drums. He,A man is sitting behind three drums.,He,gold,begins to play the drums on the play phone.,goes down a slide playing drums in front of him.,begins playing the drums in front of him.,plays drums with the sticks.\n13474,anetv_VLg5XqBRorY,11987,The man sprinkles seasonings on the omelets. The man,The man sprinkles seasonings on the omelets.,The man,gold,pours the omelettes on plates.,busts through a glass of straw.,locks the pot on dough.,takes several break chairs off of the fire.\n13475,anetv_VLg5XqBRorY,11986,We see the man pour more egg into the pans. The man,We see the man pour more egg into the pans.,The man,gold,puts the board together.,carries the ball under the tree.,uses the spoon to scoop the plaster.,sprinkles seasonings on the omelets.\n13476,anetv_VLg5XqBRorY,11989,We then see the ending screen. We,We then see the ending screen.,We,gold,see people walking in tubes.,see images of a field riding with a dog in a backyard.,see a man washing a ski in front of a barber shop.,see photos of the chef.\n13477,anetv_VLg5XqBRorY,11985,We see a chef at an omelette bar making multiple omelets at the same time. We,We see a chef at an omelette bar making multiple omelets at the same time.,We,gold,see the man pour more egg into the pans.,see a man holding a bat and the male kneeing them in his arms.,a plate with syrup and metal.,see a horizontal bit of break and push over tomatoes.\n13478,anetv_VLg5XqBRorY,11988,The man pours the omelettes on plates. We then,The man pours the omelettes on plates.,We then,gold,see the ending screen again.,see the cook healthy in a cooking pot.,\"see a man float eggs, and then stuffs ups.\",see the ending screen.\n13479,anetv_4x0LdQRN248,5297,A man is standing at a table with a blue mask on. He,A man is standing at a table with a blue mask on.,He,gold,is walking the ball over to the man.,are walking around a room.,begins welding something on the table.,is talking about the process of tattooing.\n13480,anetv_4x0LdQRN248,5298,He begins welding something on the table. He,He begins welding something on the table.,He,gold,continues moving the paper through the contents of the table.,is not a tool.,continues to lay the seat down in his chair.,stops welding and starts to lift his mask.\n13481,anetv_4x0LdQRN248,18934,He is using welding equipment on a metal horse. Sparks,He is using welding equipment on a metal horse.,Sparks,gold,row of drums are shown and the camera zooms on and the credits of the clip are shown.,begin to change parts.,fly everywhere as he continues to weld.,ensure the tags are ready.\n13482,anetv_4x0LdQRN248,18933,A man is wearing a mask inside a workshop. He,A man is wearing a mask inside a workshop.,He,gold,is using welding equipment on a metal horse.,uses tools to apply them on.,is setting the shingles upright on the floor.,picks up an iron and uses a cleaning tool to scrape the tire off.\n13483,anetv__Xydl5mYkQ8,5013,\"A man is in a bathroom, using a toilet. He\",\"A man is in a bathroom, using a toilet.\",He,gold,begins washing his underwear with a towel.,\"flushes, then smiles and talks to the camera.\",is using a needle in the back of a bath.,picks up weights in a sink.\n13484,anetv__Xydl5mYkQ8,5012,A counter is shown with beer cans on it. A man,A counter is shown with beer cans on it.,A man,gold,\"shows her hands to take cubes from the villa, tossing them in a bowl as he drives about the ice.\",is seen water boarding behind a boat.,stands and uses a tool on a wooden court on a tool.,\"is in a bathroom, using a toilet.\"\n13485,anetv_9xOUoTQLea4,926,The person then adds a bunch of sugary products to it. The man,The person then adds a bunch of sugary products to it.,The man,gold,uses a tool to scrape the ice over the windshield.,drinks it and then calls people from a smart phone.,proceeds to wipe the ink with the paper ads.,leaves the surf pool under the water.\n13486,lsmdc0002_As_Good_As_It_Gets-46307,14039,\"As they pass someone she does not break stride, nor give him notice. Though she is aware of him - - resentfully so - - hard not\",\"As they pass someone she does not break stride, nor give him notice.\",Though she is aware of him - - resentfully so - - hard not,gold,to notice he has a match in her eyes.,yet hearing - - she is in between.,to be since he is giving a moment to moment commentary on her every action.,telling yet so much - - and studies the tattoo in her hands.\n13487,lsmdc0002_As_Good_As_It_Gets-46307,14038,Someone is telling the story of the traumatic audition which may have turned her life. As they pass someone she,Someone is telling the story of the traumatic audition which may have turned her life.,As they pass someone she,gold,pets the dish that someone has been cooking.,\"does not break stride, nor give him notice.\",turns past the picture with a box of powder on her lap.,washes her face directly in tissue.\n13488,anetv_bxxSc2m08Sk,1484,The first man leaves and another man jumps in. The two men,The first man leaves and another man jumps in.,The two men,gold,grip each other forward.,finish and shake hands and hug.,give money to the other man and the man.,finish and raise jumpers.\n13489,anetv_bxxSc2m08Sk,1483,We see a man performing Capoiera in a plaza. The man,We see a man performing Capoiera in a plaza.,The man,gold,is joined by a second man and the practice together.,has his gun in the air.,claps his arms and talks.,pauses and looks back at the camera.\n13490,anetv_Ve0Ufrv-T0s,155,\"The pug dog starts urinating on a stone curb along a low stone mini wall, lands on all four legs to turn around, and then proceeds to start walking on its two forelegs only. The dog\",\"The pug dog starts urinating on a stone curb along a low stone mini wall, lands on all four legs to turn around, and then proceeds to start walking on its two forelegs only.\",The dog,gold,\"continues to follow the object, who is holding the helm.\",begins urinating while walking on its forelegs only with the yellow leash following behind as an unseen person walks the dog from the background.,\"moves up towards end and runs up to the front of his rock and does many tricks, trying to get the end.\",begins to pit itself up to his face to keep the frisbee in place.\n13491,anetv_L7Gt1NO1nx8,8216,We see the title over the scene. We,We see the title over the scene.,We,gold,see the reverse of a man is mowing his lawn with an electric mower.,see a man laying again in two arms.,see a lady outside a house and see a relief on camera.,see the title screen on black.\n13492,anetv_L7Gt1NO1nx8,8217,We see the reverse of a man is mowing his lawn with an electric mower. The man,We see the reverse of a man is mowing his lawn with an electric mower.,The man,gold,continues to mow the lawn mower.,swings a few times then runs to the black man to the grass.,goes halfway up the yard and turns around.,picks up and lifts his foot up high.\n13493,anetv_sR0hZeYm06I,16596,The man tickles the little boy's other hand too. The boy,The man tickles the little boy's other hand too.,The boy,gold,smiles and asks for more.,starts moving the stone under the boy's arm.,continues with the far end and the dog attacks her from the ground.,remains on the bar and he has six feet.\n13494,anetv_sR0hZeYm06I,16595,The boy seems to like it and asks him to do it on his other hand too. The man,The boy seems to like it and asks him to do it on his other hand too.,The man,gold,tickles the little boy's other hand too.,continues to explain the tricks in a chapman picture.,uses the bigger stick to blow the sculpture out of in all directions.,watches as the teen slides down the slide.\n13495,anetv_sR0hZeYm06I,16594,A man standing next to him with a small stick is tickling the boy's hand with the stick. The boy,A man standing next to him with a small stick is tickling the boy's hand with the stick.,The boy,gold,\"grabs a ball and begins throwing it, trying to cover his cue then throw it back.\",\"goes back and forth as the ball hits the ball at a pinata, falls and down on the jumps being picked up.\",\"hits the pinata, smashing the pinata, and splits him in.\",seems to like it and asks him to do it on his other hand too.\n13496,anetv_sR0hZeYm06I,16593,There's a little boy dressed in a red shirt and blue jeans seated on a black leather recliner. He,There's a little boy dressed in a red shirt and blue jeans seated on a black leather recliner.,He,gold,is sitting with his hands stretched out.,throws the white ball over the board.,continues to make serious gestures.,is shown climbing outside in bright light and squatting down.\n13497,anetv_drMXYzlmJQU,337,\"Grandma is talking with a little blond child sitting in a coach while is knitting in a red thread in a liing room. child holds the thread and run in the room pulling it and the woman is talking to him, the child\",Grandma is talking with a little blond child sitting in a coach while is knitting in a red thread in a liing room.,\"child holds the thread and run in the room pulling it and the woman is talking to him, the child\",gold,closes the pinata then continue the boy's headband.,start helping a boy.,grabs the thread from the floor and run in the living room.,is holding the sticks of teeth in her and then smoking dark hair.\n13498,anetv_LNd1TrbshXM,16151,A woman walks into frame playing with her hair and parting it behind her. The woman,A woman walks into frame playing with her hair and parting it behind her.,The woman,gold,continues braiding up her hair and shows off the end result while looking to the camera then away.,leans forward and touches the ballet pose while pausing to speak.,continues brushing her hair while speaking to the camera and speaking to the camera.,combs the clients hair and shows it a point.\n13499,lsmdc3016_CHASING_MAVERICKS-6755,2025,\"Someone steps out, wrapping herself in a sweater. Ending the call, he\",\"Someone steps out, wrapping herself in a sweater.\",\"Ending the call, he\",gold,notices her nervous gaze.,collects his purse for hers.,looks at the doctor now.,\"opens his eyes, sees through the window to her apartment and glances toward her bed.\"\n13500,lsmdc3016_CHASING_MAVERICKS-6755,2019,\"Someone's eyes dart toward his cigar box. Crossing the room, he\",Someone's eyes dart toward his cigar box.,\"Crossing the room, he\",gold,puts down the crystal.,\"lowers it and tosses it on someone's head, then picks up his cue and coat scraps.\",\"slams the cabinet shut with her fingertips, then bangs her fingers in a manila envelope.\",flips open the lid and dumps out its contents.\n13501,lsmdc3016_CHASING_MAVERICKS-6755,2026,\"Now, the sun shines brightly on a slate blue sea rolling beyond the meteorological complex. From a makeshift parking area, countless surfers and spectators\",\"Now, the sun shines brightly on a slate blue sea rolling beyond the meteorological complex.\",\"From a makeshift parking area, countless surfers and spectators\",gold,cling to the fields.,watch as survivors take their breath.,watch from animal groups.,make their way toward the beach.\n13502,lsmdc3016_CHASING_MAVERICKS-6755,2021,The teen lifts his disillusioned gaze and swallows. He,The teen lifts his disillusioned gaze and swallows.,He,gold,pauses thoughtfully then proceeds with a resolute glare.,jumps off the high bench and races off.,bites his finger and gives her a friendly smile.,\"lowers the weapon with his hands, then gives a taunting smile.\"\n13503,lsmdc3016_CHASING_MAVERICKS-6755,2020,\"Crossing the room, he flips open the lid and dumps out its contents. Plucking out the envelope, he\",\"Crossing the room, he flips open the lid and dumps out its contents.\",\"Plucking out the envelope, he\",gold,drums the elegant woman hurriedly with his foot!,replaces it with his hands as it rises for the return.,rips it open and reads the letter within.,pins it in his pocket.\n13504,lsmdc3016_CHASING_MAVERICKS-6755,2024,\"Camped out on his couch, someone rushes to the phone and answers it. Someone\",\"Camped out on his couch, someone rushes to the phone and answers it.\",Someone,gold,\"steps out, wrapping herself in a sweater.\",faces someone on with his tools.,\"answers someone, who makes a call and grabs it over it.\",flips his wedding photo up through the sketch.\n13505,lsmdc3016_CHASING_MAVERICKS-6755,2022,\"He pauses thoughtfully then proceeds with a resolute glare. Now, from overhead, we\",He pauses thoughtfully then proceeds with a resolute glare.,\"Now, from overhead, we\",gold,follow a giant wave as it rolls along the water toward the bluffs.,peer along the cloudy sky as it.,\"glimpse someone, who's wearing his uncle's eyes, with his sunglasses and clasped hands holding onto hands.\",see his shoulder rise above droplets on the bottom of the balcony.\n13506,lsmdc3016_CHASING_MAVERICKS-6755,2027,\"From a makeshift parking area, countless surfers and spectators make their way toward the beach. Taking his new surfboard down from the van's roof, someone\",\"From a makeshift parking area, countless surfers and spectators make their way toward the beach.\",\"Taking his new surfboard down from the van's roof, someone\",gold,pauses at the sight of blond approaching.,steers the ship into the lifeboat.,takes out the gate and cocks a handle.,rides in with someone on the ice.\n13507,lsmdc3016_CHASING_MAVERICKS-6755,2017,The teen takes in his inventory with deep nervous breaths. His gaze,The teen takes in his inventory with deep nervous breaths.,His gaze,gold,stays on eastern specs.,lifts to his drawing of a giant tentacle dragging a man down into the sea.,shifts to the water as someone cleans ear hairs with one body.,ducks him through the wreckage.\n13508,lsmdc3016_CHASING_MAVERICKS-6755,2016,\"It curls into a barrel as it breaks and sends up massive blasts of foam and spray. Now, someone's surfing gear\",It curls into a barrel as it breaks and sends up massive blasts of foam and spray.,\"Now, someone's surfing gear\",gold,lies neatly on his bed.,sits at the end of a wide hall.,looks out into the night.,grabs a rope from the tree that someone is carrying.\n13509,anetv_hXBeu7o9uUM,12926,A man is standing in a room holding a large instrument. He,A man is standing in a room holding a large instrument.,He,gold,is standing in front of a song.,opens the accordion and begins talking about the violin.,begins to play the instrument behind a microphone.,tips about what the music is doing.\n13510,anetv_hXBeu7o9uUM,12927,He begins to play the instrument behind a microphone. A man in a green shirt,He begins to play the instrument behind a microphone.,A man in a green shirt,gold,steps across the weapon very slightly and looks towards each end.,talks to him using his hands to begin playing his harmonica.,catches the joy.,is talking into a microphone.\n13511,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2082,\"As the tattoo faced monk looks for him, someone grabs the swords hilt, causing its blade to rust and crumble. The monk grabs someone's throat and he\",\"As the tattoo faced monk looks for him, someone grabs the swords hilt, causing its blade to rust and crumble.\",The monk grabs someone's throat and he,gold,\"dodges someone 'hand over the railing, and down the stairs.\",\"collapses to his knees, waving his hands in surrender.\",steps away as someone sets his hands on a marble slab.,sends the spider at itself.\n13512,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2078,Someone snaps a decaying monk's neck. He,Someone snaps a decaying monk's neck.,He,gold,grabs another from behind.,smiles at her in response.,swings away and falls when she lunges for him.,points at his watch.\n13513,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2068,The tattoo faced monk addresses someone. He,The tattoo faced monk addresses someone.,He,gold,is hurrying to sleep.,extends his brow.,\"runs the backs of his fingers down her cheek then jams his thumb just below her chin, knocking her unconscious.\",gives a thumbs up.\n13514,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2073,\"The tattoo faced monk draws a sword and taps its long curved blade to the back of someone's neck. With both hands, the executioner\",The tattoo faced monk draws a sword and taps its long curved blade to the back of someone's neck.,\"With both hands, the executioner\",gold,pushes the small toy puppet around the hole.,raises the sword overhead.,steps resolutely into the observatory.,\"stands in front of the glass congregation, and set the rival crank on the sides.\"\n13515,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2088,\"Then shrinks to a pinpoint as we drift among two petrified monks left permanently kneeling in prayer. As a butterfly lands on a sprouting mushroom, the image\",Then shrinks to a pinpoint as we drift among two petrified monks left permanently kneeling in prayer.,\"As a butterfly lands on a sprouting mushroom, the image\",gold,returns to reveal a series of overtaking pumpkins.,focuses on a moss ridden monk.,lingers for a few second.,becomes a brilliant light tool and focuses on the clippers.\n13516,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2066,He heads down a stairway carved into the stone. The path,He heads down a stairway carved into the stone.,The path,gold,leads him to bluff overlooking the region.,is bustling with activity.,seems to have been stopped to move.,smashes down as he passes by.\n13517,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2051,Someone takes it from him. He,Someone takes it from him.,He,gold,puts it on and puts a view beneath.,takes a bite then shifts his gaze.,\"withdraws, someone spots.\",lifts a glass of golden water from a glass of water and comes downstairs.\n13518,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2049,He puts one half back. He,He puts one half back.,He,gold,breaks off a piece for someone.,drops his bag and resumes it.,points it at someone.,sets the water in on fire.\n13519,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2052,He takes a bite then shifts his gaze. Someone,He takes a bite then shifts his gaze.,Someone,gold,hangs up in someone's sketchbook as he walks over to the father.,pats him on the shoulder.,sees an older surfer lying his troubled wipes.,licks her lips and leans on someone's back.\n13520,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2047,Someone turns to his bag and takes out a small loaf of bread. He,Someone turns to his bag and takes out a small loaf of bread.,He,gold,breaks it in half.,fry the steak on a plate.,takes a lid from a bottle.,straightens and glances oddly at the sleeping man which is encased in the spear of flames.\n13521,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2075,\"He finds himself surrounded by darkness, then twirls his sword defensively. As another monk gropes in the dark, someone\",\"He finds himself surrounded by darkness, then twirls his sword defensively.\",\"As another monk gropes in the dark, someone\",gold,races vacantly now as someone behind him turns to monitor.,nods revealing the black sedan.,\"grabs him from behind, rip him and lets him fall.\",flips the hammer repeatedly then bursts across the canvas surface.\n13522,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2058,A brilliant light flashes then shines down on him. He,A brilliant light flashes then shines down on him.,He,gold,cuts through the puzzle beating the dust off his face then rises to his feet.,jump into a face.,points to his gun.,collapses to his knees.\n13523,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2087,The boy steps back nervously. Someone,The boy steps back nervously.,Someone,gold,places the necklace over someone 'shoulder.,saunters past him as he rides his horse through a waterside road.,\"eyes him, stroking his platinum hair.\",comes out of the main mouth.\n13524,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2083,\"The monk grabs someone's throat and he collapses to his knees, waving his hands in surrender. Someone\",\"The monk grabs someone's throat and he collapses to his knees, waving his hands in surrender.\",Someone,gold,\"smashes the monk's hand, grabs his jaw, then slams him onto his back.\",try to fight him from upturned feet.,climbs down over the fire and falls into a pile of rubble.,gapes at the rising smoke.\n13525,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2080,The tattoo faced monk swings his sword. Someone,The tattoo faced monk swings his sword.,Someone,gold,leans towards his sister as a member approaches.,catches his wrist then vanishes.,raises the wand above his ear and hangs up while working on his own chair.,\"drops the dagger, then closes the door.\"\n13526,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2055,He reaches the end of the passage and a huge slab blocks him from turning back. He,He reaches the end of the passage and a huge slab blocks him from turning back.,He,gold,holds it against the black arc.,enters an empty room.,takes it and runs high up the water.,\"circles across the chamber, his shadow is erupting on a smoldering smaller one.\"\n13527,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2056,He enters an empty room. Someone,He enters an empty room.,Someone,gold,looks up at the room's domed ceiling.,\"is in one of the other tables, where he and a waiting woman just stand there watching the television.\",bounces metal footage for a moment and punching with him who scoots aside and adjusts the weapon.,\"smiles at someone, then bites her lip.\"\n13528,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2053,Someone pats him on the shoulder. Now someone,Someone pats him on the shoulder.,Now someone,gold,is entering a taxicab.,wanders through a tunnel.,drags her into the van.,pulls a small boat.\n13529,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2069,\"The monks drag someone and someone out. Outside, the hooded monks\",The monks drag someone and someone out.,\"Outside, the hooded monks\",gold,carries a large umbrella.,stand in a circle.,form a line of mugshots.,\"streaming into view, carrying a bag of racquets.\"\n13530,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2048,He breaks it in half. He,He breaks it in half.,He,gold,looks defiantly around the handle.,lifts it over his head.,puts one half back.,takes the knife in half.\n13531,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2050,He breaks off a piece for someone. Someone,He breaks off a piece for someone.,Someone,gold,takes it from him.,joyfully puffs out the smoke.,smiles and kisses her on the face.,stands at the bottom of the stairs.\n13532,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2085,\"Sneering at his victim, he holds two fingers over the monk's tattooed face. As he rots completely, someone\",\"Sneering at his victim, he holds two fingers over the monk's tattooed face.\",\"As he rots completely, someone\",gold,holds up his two fingers.,blinks quizzically and glances away.,lowers his gaze from his ink.,morphs into someone's portrait.\n13533,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2057,Someone looks up at the room's domed ceiling. A brilliant light flashes then,Someone looks up at the room's domed ceiling.,A brilliant light flashes then,gold,covers the man's face.,turns from the window.,shines down on him.,dashes through the walls.\n13534,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2067,Someone swipes at another monk with his free hand but the monk grabs his throat. The tattoo,Someone swipes at another monk with his free hand but the monk grabs his throat.,The tattoo,gold,faced monk addresses someone.,dementor grabs the boy.,is cracked and bloody.,reveals his hand - forearm.\n13535,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2062,\"Now on the floor of the empty room, someone lies flat on his back with his eyes closed. Our view\",\"Now on the floor of the empty room, someone lies flat on his back with his eyes closed.\",Our view,gold,draws near the side of his face.,passes over someone's shoulder which leaves someone's face.,drifts closer to their mouths of expanding smoke and a glowing flame.,rushes over his body to the young woman who was watching him.\n13536,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2079,He grabs another from behind. The tattoo,He grabs another from behind.,The tattoo,gold,flashes once again and shows people climbing exercises underneath.,\"is brushed on his legs, then form is clicking apart.\",faced monk swings his sword.,\"turns it up and someone prods it, nails.\"\n13537,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2081,\"Someone catches his wrist then vanishes. As the tattoo faced monk looks for him, someone\",Someone catches his wrist then vanishes.,\"As the tattoo faced monk looks for him, someone\",gold,repeats his second with another last final remark.,\"grabs the swords hilt, causing its blade to rust and crumble.\",\"removes the ring from his ring, pulls it onto his black finger, letting the end draw the ring to his cheek pocket.\",awakes in a hospital.\n13538,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2061,\"As it pulls taut, it breaks from his skull with a fiery flash. Now on the floor of the empty room, someone\",\"As it pulls taut, it breaks from his skull with a fiery flash.\",\"Now on the floor of the empty room, someone\",gold,sits at a sofa.,reels as someone carries his baby.,lies flat on his back with his eyes closed.,picks up a clock in the middle.\n13539,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2070,\"Outside, the hooded monks stand in a circle. Two more\",\"Outside, the hooded monks stand in a circle.\",Two more,gold,coworkers at one point blank.,knock down to the shot.,webs pull out from behind a boxing net.,bring someone to the center and bend him over a rock.\n13540,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2076,\"As another monk gropes in the dark, someone grabs him from behind, rip him and lets him fall. He\",\"As another monk gropes in the dark, someone grabs him from behind, rip him and lets him fall.\",He,gold,keeps his eyes hidden on the barred gun - barrel against his neck.,\"rips apart shorts, high above his head, exposing himself.\",succeeds in using someone to land on his own chest.,runs to another and throws him down.\n13541,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2054,Now someone wanders through a tunnel. He reaches the end of the passage and a huge slab,Now someone wanders through a tunnel.,He reaches the end of the passage and a huge slab,gold,lies out in beneath the skylight.,is concealed on its bottles.,\"tread nearly daring pommel, as fully supporting on the corners.\",blocks him from turning back.\n13542,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2065,He reaches the mouth of a cavern. He,He reaches the mouth of a cavern.,He,gold,heads down a stairway carved into the stone.,snatches a book from the models.,is laying on his bed asleep in bed.,sets his sword aside and slings his robe over the shoulders of the conductor who adds tremendous power.\n13543,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2046,He wipes a tear from his eye. Someone,He wipes a tear from his eye.,Someone,gold,turns to his bag and takes out a small loaf of bread.,turns to look at the reception of stylish guests and slowly moves aside.,stoops over his uncle in pain and fires.,\"keeps his light shut, then lulls to his knees with his arms crossed.\"\n13544,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2084,\"Someone smashes the monk's hand, grabs his jaw, then slams him onto his back. Sneering at his victim, he\",\"Someone smashes the monk's hand, grabs his jaw, then slams him onto his back.\",\"Sneering at his victim, he\",gold,takes his rat american pen from someone's hand.,draws some bills back from his head.,holds two fingers over the monk's tattooed face.,\"backs her nose on, followed by her.\"\n13545,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2089,\"As a butterfly lands on a sprouting mushroom, the image focuses on a moss ridden monk. Crouching over one of the dead, someone\",\"As a butterfly lands on a sprouting mushroom, the image focuses on a moss ridden monk.\",\"Crouching over one of the dead, someone\",gold,notices a alien beneath the bed.,picks up his cross necklace.,hangs up from a stuffed scaffold.,leans over rolling puppets of the book.\n13546,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2071,A monk pulls back the nervous boy's collar. The others,A monk pulls back the nervous boy's collar.,The others,gold,move forward and poke in.,join the silenced machine.,sway side to side.,run around the jungle desert.\n13547,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2060,\"He shoots a seemingly endless length of chain from his mouth. As it pulls taut, it\",He shoots a seemingly endless length of chain from his mouth.,\"As it pulls taut, it\",gold,becomes a everyday human form.,breaks from his skull with a fiery flash.,rams its explodes into the rafters.,begins to bite one at a time.\n13548,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2072,The others sway side to side. The tattoo,The others sway side to side.,The tattoo,gold,blocks the writer's face and stops spinning.,is a pale and formal spark.,faced monk draws a sword and taps its long curved blade to the back of someone's neck.,with a website on hardware the apron faces.\n13549,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13026,2064,\"He wakes with a start and rises to a crouch then looks at his gloved right hand, gives it a rub, and brightens. He\",\"He wakes with a start and rises to a crouch then looks at his gloved right hand, gives it a rub, and brightens.\",He,gold,realizes that someone is on with him so she is cast down.,reaches in and stuffs the suitcase into which he takes the comforter from her above.,starts his mirror while looking at the floor.,hurries through one of the passages.\n13550,anetv_Gpjx38IDVT0,14370,A boy is inside an outdoor net. He,A boy is inside an outdoor net.,He,gold,uses games of flips to block between these two.,swings a ball on a rope very quickly.,kicks the ball down the lane.,is holding a toothbrush brushing his teeth.\n13551,anetv_Gpjx38IDVT0,14371,He swings a ball on a rope very quickly. He,He swings a ball on a rope very quickly.,He,gold,continues to hop forward over the doberman and ride him back.,lets it go and watches as it flies across the field.,goes down the flagpole.,swings the side swing to the ground and catches the ball.\n13552,lsmdc3092_ZOOKEEPER-45389,5592,She beams at three balls in a row. Someone,She beams at three balls in a row.,Someone,gold,sits on the middle ball.,opens the box and takes out another bale.,clips a name on the cd.,speaks over the table as a song caster comes onto the screen.\n13553,anetv_ySQBZ8hqBo4,8481,The athlete is balancing in the bean as the man took out the spring jumper. The athlete,The athlete is balancing in the bean as the man took out the spring jumper.,The athlete,gold,takes to the bar and lands on an orange mat playing several more times.,did cartwheel on the beam as the crowd applauded.,grabs the pole and ready to body with the pole jump in the air.,stands by wearing the red cap as his red fedora continues to skate around.\n13554,anetv_ZBuPedt-oEE,9209,Next she gets a plate and a round stencil. she puts the plate under the dispenser and she,Next she gets a plate and a round stencil.,she puts the plate under the dispenser and she,gold,parent tests that melted liners above the dough before making it all suspended out of the dough.,removes it and slowly pulls the circle off of the cake once she is done smoothing the paste.,takes the cookies out of the oven.,grabs the potato to bite it.\n13555,anetv_ZBuPedt-oEE,9211,Then she uses a knife to put lines on the sides of the cake. Next she,Then she uses a knife to put lines on the sides of the cake.,Next she,gold,starts out and scrubs her hands on her own.,puts cream on the edges from top to bottom.,reads the things you need to make.,\"cuts the tomato, icing, dismisses, with the marker and eggs.\"\n13556,anetv_ZBuPedt-oEE,9207,She then holds a cup under a foam dispenser and remove sit when it's filled up. She then,She then holds a cup under a foam dispenser and remove sit when it's filled up.,She then,gold,wipes her eye with the yarn and then demonstrates this jerk.,adds sugar to the pasta judging.,pours various paragraphs into the bowl and mixes up the mixture.,tops it with crushed graham bears.\n13557,anetv_ZBuPedt-oEE,9208,She then tops it with crushed graham bears. next she,She then tops it with crushed graham bears.,next she,gold,puts the potato in it and makes it into multiple alley pieces.,sticks a finger to create a syrup.,gets a plate and a round stencil.,uses some razor to straighten the skin.\n13558,anetv_ZBuPedt-oEE,9213,Then she drizzles a little chocolate syrup on there. She,Then she drizzles a little chocolate syrup on there.,She,gold,is now done making the cake.,shows the replacement to it.,takes the ingredient from top of the molder.,whacks her head across the table.\n13559,anetv_ZBuPedt-oEE,9212,Next she puts cream on the edges from top to bottom. then she,Next she puts cream on the edges from top to bottom.,then she,gold,eats juices and a mango and gives it a kiss.,adds a clear pink sole.,begins shaving her earlobe in strands.,drizzles a little chocolate syrup on there.\n13560,anetv_ZBuPedt-oEE,9210,She puts the plate under the dispenser and she removes it and slowly pulls the circle off of the cake once she is done smoothing the paste. Then she,She puts the plate under the dispenser and she removes it and slowly pulls the circle off of the cake once she is done smoothing the paste.,Then she,gold,puts the product some more in the top while still shown putting hands on the string for the face of the piece of powder.,put the final layers with pasta and paints some notes on the fence.,uses more of the clear chalk on the entire hedge and begins to pile around the driveway away the whole time.,uses a knife to put lines on the sides of the cake.\n13561,anetv_R_AsoAmxd4o,6721,A dog is sitting on a board behind the boat. They,A dog is sitting on a board behind the boat.,They,gold,are pulled between the boards and fountains off the bottom.,continue to water ski behind the boat.,jumping out of the water gets to be hard.,is in front of a person push a camel out of the arena.\n13562,anetv_R_AsoAmxd4o,6720,People are water skiing behind a boat. A dog,People are water skiing behind a boat.,A dog,gold,is sitting on a board behind the boat.,is floating above rocks.,stands near the window of the house.,leans up in the water and brushes her teeth.\n13563,anetv_XHQLkc06XIc,17531,A little girl does an introduction for a video of herself playing the violin. She,A little girl does an introduction for a video of herself playing the violin.,She,gold,\"talks to the camera, offering her a song.\",begins to play the violin in a joyful and professional manner.,performs a outfit of throws and goes on the steps of the stage.,talks to the camera about the tennis technique.\n13564,anetv_XHQLkc06XIc,17532,She begins to play the violin in a joyful and professional manner. She,She begins to play the violin in a joyful and professional manner.,She,gold,begins to pick up the speed of the song.,then looks at a guitar and takes it out of her mouth.,\"finishes her voice, gradually stopping and raising a fist.\",walks back to the bench and begins dancing the same watches at the end.\n13565,anetv_XHQLkc06XIc,17533,She begins to pick up the speed of the song. When she is done playing she,She begins to pick up the speed of the song.,When she is done playing she,gold,explains that the piece she just played.,starts playing the guitar and pumps it in and explaining what she is doing.,blows up again of her superimposed over bean grief.,turns around and goes back to talks of the camera again.\n13566,lsmdc1060_Yes_man-99088,4956,He presses the mic against someone's nose. Someone,He presses the mic against someone's nose.,Someone,gold,\"lowers the mic and edges closer to someone, who inches backwards.\",gets off his bed and takes a step back.,scratches the blond's head.,squeezes his fist.\n13567,lsmdc1060_Yes_man-99088,4957,\"Someone lowers the mic and edges closer to someone, who inches backwards. He\",\"Someone lowers the mic and edges closer to someone, who inches backwards.\",He,gold,stares earnestly over her eyes.,hold them up to a pitcher.,hits someone with the mic.,curtsy in the end.\n13568,anetv_FV2TzKt9MdI,8482,A woman in a yellow tank top talks to the camera. A woman in a green tank top,A woman in a yellow tank top talks to the camera.,A woman in a green tank top,gold,puts on a yellow t - shirt.,is chopping a small pink box.,stands on a diving board.,talks to the camera.\n13569,anetv_FV2TzKt9MdI,8480,People are working out in a gym. People,People are working out in a gym.,People,gold,are watching some sort of acrobatic looks.,are shown such as a set of tools for steps.,are standing on the other side watching the referee.,are working out on spin bikes.\n13570,anetv_FV2TzKt9MdI,8481,People are working out on spin bikes. A woman in a yellow tank top,People are working out on spin bikes.,A woman in a yellow tank top,gold,starts to swim in the pool.,is putting a tire.,talks to the camera.,does a flip into the air.\n13571,anetv_0A-p1Q0rseE,5685,The next drink she makes is vodka seven. Then she,The next drink she makes is vodka seven.,Then she,gold,stands back in facebook headquarters and thinking.,\"makes a screwdriver, a greyhound, and then mixed with cranberry juice.\",hangs up the phone again.,goes into the gym where someone.\n13572,lsmdc1044_Pride_And_Prejudice_Disk_Two-89883,5744,\"An empty carriage arrives at Longbourn. As it pulls to a halt and the footman opens the door, the Wickhams\",An empty carriage arrives at Longbourn.,\"As it pulls to a halt and the footman opens the door, the Wickhams\",gold,leads two kids over a copy of the garden memorial bearing where a number of potted plants sit in a narrow log.,laces up photographs of the three children.,\"emerge from the house, surrounded by someone's sisters and parents.\",does so once on and off.\n13573,lsmdc0053_Rendezvous_mit_Joe_Black-71373,19237,\"He shifts the spoon from hand to hand, starts to stick it in his pocket, realizes this is inappropriate. Someone holds her hand out to him, he\",\"He shifts the spoon from hand to hand, starts to stick it in his pocket, realizes this is inappropriate.\",\"Someone holds her hand out to him, he\",gold,chooses something for shots.,places the spoon in it ,is at her.,starts to caress it.\n13574,lsmdc3020_DEAR_JOHN-9678,8776,He tosses the carton back inside and shuts the door. His father,He tosses the carton back inside and shuts the door.,His father,gold,pushing him off the bed.,opens the door and stands the carton upright.,looks up with a pleased frown.,heads up a circular alley with a malevolent smirk.\n13575,lsmdc3020_DEAR_JOHN-9678,8778,Someone goes to a stereo in the living room. His father,Someone goes to a stereo in the living room.,His father,gold,sits as he searches behind the office.,has a knapsack in her purse next to the counter.,looks up from a coin.,holds on for a kiss.\n13576,lsmdc3020_DEAR_JOHN-9678,8781,\"At the bottom of a staircase, she reaches a walkway where frantic peers gather and talk on cellphones. A confused someone\",\"At the bottom of a staircase, she reaches a walkway where frantic peers gather and talk on cellphones.\",A confused someone,gold,holds someone's letter with both hands as she observes the anxious activity.,reveals the dark - haired stranger standing next to him.,opens the door to someone's office.,reviews the hairstyle trolley.\n13577,lsmdc3020_DEAR_JOHN-9678,8782,\"A confused someone holds someone's letter with both hands as she observes the anxious activity. As someone remains frozen, our view\",A confused someone holds someone's letter with both hands as she observes the anxious activity.,\"As someone remains frozen, our view\",gold,turns back to the young guys and office.,is sent to take in a bird's eye view of the chaos.,widens to a building fills the sky.,focuses at the street intersection.\n13578,lsmdc3020_DEAR_JOHN-9678,8775,He drinks from the carton. He,He drinks from the carton.,He,gold,hands away one last time.,goes down his sidewalk and walks out of frame.,tosses the carton back inside and shuts the door.,removes the flask out of his mouth.\n13579,lsmdc3020_DEAR_JOHN-9678,8779,\"His father looks up from a coin. Seen distantly through the doorway, someone\",His father looks up from a coin.,\"Seen distantly through the doorway, someone\",gold,sees someone poured from a nearby bottle.,joins them and nods to himself.,leaves the stereo and walks out of sight.,throws throwing dart fires at someone.\n13580,lsmdc3020_DEAR_JOHN-9678,8786,\"Reaching the entrance, someone joins his dark - haired buddy to watch television news coverage. Someone\",\"Reaching the entrance, someone joins his dark - haired buddy to watch television news coverage.\",Someone,gold,watches his father walk up and down in front of the display with his gun on one shoulder.,breathes heavily as he watches debris falling off the building.,include a heavy rain ski number to make someone cross his right chest.,puts books on her shoulder as someone enters the beefy ornate dancing area.\n13581,lsmdc3020_DEAR_JOHN-9678,8785,\"Someone approaches a cafe, where pedestrians gather outside. Reaching the entrance, someone\",\"Someone approaches a cafe, where pedestrians gather outside.\",\"Reaching the entrance, someone\",gold,joins his dark - haired buddy to watch television news coverage.,shuffles higher and onward.,runs his fist into his head.,\"timidly ambles past an industrial building, where a quick steer works running fingers.\"\n13582,lsmdc3020_DEAR_JOHN-9678,8774,Now older someone takes milk out of the fridge. He,Now older someone takes milk out of the fridge.,He,gold,squirts butter at someone's house.,puts the glass down on the toilet.,make the sauce of a pan of lasagna.,drinks from the carton.\n13583,lsmdc3020_DEAR_JOHN-9678,8784,\"Now wearing plain clothes, someone walks alone on a busy street in an eastern European town. Someone\",\"Now wearing plain clothes, someone walks alone on a busy street in an eastern European town.\",Someone,gold,\"follows someone around a busy room, drinking a pretty medicine bottle.\",approaches the lobby and waits for someone to read the newspaper she loves about it.,\"approaches a cafe, where pedestrians gather outside.\",takes her hand off the side of the propeller.\n13584,lsmdc3020_DEAR_JOHN-9678,8780,\"Seen distantly through the doorway, someone leaves the stereo and walks out of sight. At the bottom of a staircase, she\",\"Seen distantly through the doorway, someone leaves the stereo and walks out of sight.\",\"At the bottom of a staircase, she\",gold,takes out a silver box.,reaches the telephone booth.,\"senses at someone, who is waiting for her steps.\",reaches a walkway where frantic peers gather and talk on cellphones.\n13585,lsmdc3020_DEAR_JOHN-9678,8783,\"As someone remains frozen, our view is sent to take in a bird's eye view of the chaos. Now wearing plain clothes, someone\",\"As someone remains frozen, our view is sent to take in a bird's eye view of the chaos.\",\"Now wearing plain clothes, someone\",gold,walks alone on a busy street in an eastern european town.,talks to the rest of the family.,slips into a large wooden ruin surrounded by two.,sits alone at the front of the bar.\n13586,anetv_feYYvRmqCgI,16944,\"A group of people sitting on elevated bleachers, watch a man on a horse lasso a small black calf in a, dirt covered, indoor, rodeo ring. The man\",\"A group of people sitting on elevated bleachers, watch a man on a horse lasso a small black calf in a, dirt covered, indoor, rodeo ring.\",The man,gold,\"emerges into the ring from a floor level door, on a horse, chasing after a small black calf.\",strikes the left for his goal.,\"walks around towards a horse, walks a horse through the obstacles, then splits the calf together.\",jumps off his bike and ties it together.\n13587,lsmdc1034_Super_8-8499,3813,A chalk outline of a body is drawn on the floor. Someone,A chalk outline of a body is drawn on the floor.,Someone,gold,picks up a baby.,arrives as the detective and talks to a witness.,casts it a slow.,\"is at the picture of him near a flat screen, with a yellow one protecting and some shots hit by several blocks.\"\n13588,lsmdc3037_IRON_MAN2-16727,8344,Someone glances up at a white armored suit on the scaffold. Someone,Someone glances up at a white armored suit on the scaffold.,Someone,gold,climbs the steps to the scaffold and pulls a control unit off the top of the suit.,picks up the momentum and leaves the plane.,\"stares calmly at giant body exposed, then opens a fan.\",\"watches him, then knocks down the driver's door.\"\n13589,anetv_ZLXhlWhrkno,4337,\"The buck stops and looks left, then right. The buck\",\"The buck stops and looks left, then right.\",The buck,gold,strikes a pan into small his head.,\"is braided on the blade, onto and completed.\",is third male original.,is drinking from a puddle the runs off startled.\n13590,anetv_ZLXhlWhrkno,4340,The hunter shoots the animal with a bow and it dies slowly. The hunter,The hunter shoots the animal with a bow and it dies slowly.,The hunter,gold,continues to surround the unseen someone.,is photographed with the dead animal.,scoops the fish from a hole.,falls out of a couple of shades.\n13591,anetv_ZLXhlWhrkno,4336,We zoom in on a buck walking in the woods. The buck,We zoom in on a buck walking in the woods.,The buck,gold,is shaving his face with a tan t - shirt.,starts with a small piece of player.,is beginning to strip off the shoe.,\"stops and looks left, then right.\"\n13592,anetv_ZLXhlWhrkno,4338,The buck is drinking from a puddle the runs off startled. The buck,The buck is drinking from a puddle the runs off startled.,The buck,gold,shoots up in the light bar.,stands in the clearing.,goes in the tile.,thickly applied and accidentally washes his dog's face with it.\n13593,anetv_ZLXhlWhrkno,4339,The buck stands in the clearing. A man,The buck stands in the clearing.,A man,gold,gets into a car and carries him out.,whips the dust off the broomstick.,runs his hands all over the instruction file.,is working with a bow while another films the animal.\n13594,anetv_ZLXhlWhrkno,4335,We see a clearing in the woods. We,We see a clearing in the woods.,We,gold,see a sped up screen.,see people in the forest playing undergrowth.,zoom in on a buck walking in the woods.,see people talking to a camera in a room.\n13595,anetv_kvqX0QOgYDc,2670,The scuba divers make hand gestures and joke. The men,The scuba divers make hand gestures and joke.,The men,gold,swim up close into view.,lose their glasses and talk.,give a top dance while the fish in their mouths tips over and bend again.,finish and the boy and the men sit and dance unhappily.\n13596,lsmdc0017_Pianist-55796,3995,\"Someone sits apart, aloof, his back to the piano and to someone. Someone suddenly makes a lunge for him, grabs hold of him, a rough struggle takes place and during it people\",\"Someone sits apart, aloof, his back to the piano and to someone.\",\"Someone suddenly makes a lunge for him, grabs hold of him, a rough struggle takes place and during it people\",gold,kiss and intensely slowly towards the crowd.,is brought into another source of excitement.,is causing him to drink.,\"appear at their bedroom door to watch, appalled.\"\n13597,lsmdc0017_Pianist-55796,3990,\"Someone sits beside her, puts an arm round her. Someone\",\"Someone sits beside her, puts an arm round her.\",Someone,gold,locks her gaze with her wired jaw.,slaps off her alarm as someone drags someone out.,push through grass and debris all around.,opens the purse to reveal a crumpled note.\n13598,lsmdc0017_Pianist-55796,3984,\"Someone, enters with a newspaper. She\",\"Someone, enters with a newspaper.\",She,gold,heads for the open door.,hands him the paper.,back at the basement window.,watches someone climb up the stairs and approaches.\n13599,lsmdc0017_Pianist-55796,3988,\"He laughs but they are disturbed by a sound from another room, the sound of crying. They look at each other puzzled, then someone\",\"He laughs but they are disturbed by a sound from another room, the sound of crying.\",\"They look at each other puzzled, then someone\",gold,\"smiles contentedly, takes off some snacks, and starts into the next room.\",begins to move slowly to leave someone and they continue in together.,wipes the hair off one cheek.,opens a door and looks in.\n13600,lsmdc0017_Pianist-55796,3985,\"She looks over his shoulder and reads. As she does so, the door of someone's room opens and he\",She looks over his shoulder and reads.,\"As she does so, the door of someone's room opens and he\",gold,sees someone reaching at the cane for a forward look.,\"walks toward her, turns the knob and uses her phone.\",finds the gaping open windows of the small building.,\"stands leaning in the doorway, watching, as if amused.\"\n13601,lsmdc0017_Pianist-55796,3981,\"Someone stops, turns fearfully and approaches the Germans. Someone\",\"Someone stops, turns fearfully and approaches the Germans.\",Someone,gold,are sitting at the table with someone.,has carried someone out of his circle.,\"mill after someone, missing her in the middle.\",\"reels, collects himself as best he can and starts to shuffle on -.\"\n13602,lsmdc0017_Pianist-55796,3989,\"Someone is asleep but someone is sitting on the bed, holding a purse, crying. Someone\",\"Someone is asleep but someone is sitting on the bed, holding a purse, crying.\",Someone,gold,gathers her hair and kisses.,\"sits beside her, puts an arm round her.\",sits down on the edge of the bed.,someone jumps into the hall.\n13603,lsmdc0017_Pianist-55796,3999,People walk beside the platform with people seated on it. Someone,People walk beside the platform with people seated on it.,Someone,gold,\"catches sight of someone among the onlookers, smiles and pushes through the crowd to someone, close to tears.\",glances at the watches someone as he limps to the foreground.,enters the night alone.,is with three fellow marines in burning figures who take the platform out.\n13604,lsmdc0017_Pianist-55796,3996,\"Someone suddenly makes a lunge for him, grabs hold of him, a rough struggle takes place and during it people appear at their bedroom door to watch, appalled. A great column of Jews of all ages\",\"Someone suddenly makes a lunge for him, grabs hold of him, a rough struggle takes place and during it people appear at their bedroom door to watch, appalled.\",A great column of Jews of all ages,gold,rest washed up outside the christmas tree.,\"seems, clutching the writing, pauses at the front of the marijuana burning, satisfied, screaming.\",\"are seen walking around someone, walking into the room where the other attendants are alive.\",make their way towards the area that will become the ghetto.\n13605,lsmdc0017_Pianist-55796,3983,\"He plays, makes adjustments with a pencil to the manuscript, plays again. Someone,\",\"He plays, makes adjustments with a pencil to the manuscript, plays again.\",\"Someone,\",gold,\"the professor at the empty desk, sees the woman sitting nearby.\",enters with a newspaper.,\"after walking, comes by and talks to someone as he looks at his bloody phone.\",\"reading, left vertically down the book.\"\n13606,lsmdc0017_Pianist-55796,3993,\"He sits at the piano, now examining the lacquer. Someone\",\"He sits at the piano, now examining the lacquer.\",Someone,gold,takes someone in her arms and kisses her.,\"stands in the bow, watching him.\",\"holds up the wardrobe, showing the video panties.\",holds the magazine lid.\n13607,lsmdc0017_Pianist-55796,3980,\"Someone, wearing the Star of someone armband, walks slowly along, carrying a string bag containing potatoes and carrots, his eyes fixed on the pavement as if his thoughts are a million miles away. He\",\"Someone, wearing the Star of someone armband, walks slowly along, carrying a string bag containing potatoes and carrots, his eyes fixed on the pavement as if his thoughts are a million miles away.\",He,gold,turns and looks across at her with serious expression.,opens the freezer to reveal nothing.,passes two german officers.,has a phone tied next to her.\n13608,lsmdc0017_Pianist-55796,3991,\"They play an octave, harsh, toneless, with straight fingers. The hands\",\"They play an octave, harsh, toneless, with straight fingers.\",The hands,gold,go under a spray bottle.,\"belong to someone, a dealer, early fifties.\",create a postcard line for entertainment.,go slowly to someone's.\n13609,lsmdc0017_Pianist-55796,3992,\"The hands belong to someone, a dealer, early fifties. He\",\"The hands belong to someone, a dealer, early fifties.\",He,gold,carries a chair across the room towards a soldier boy.,\"sits at the piano, now examining the lacquer.\",performs low plates and bowls.,\"removes the lizard from the counter, then turns around.\"\n13610,lsmdc0017_Pianist-55796,3997,\"On foot, on bicycles, on horse - drawn platforms, some pushing prams loaded with belongings. They\",\"On foot, on bicycles, on horse - drawn platforms, some pushing prams loaded with belongings.\",They,gold,reaches out and drops his hands.,ride along as well with someone in his arms.,are watched on either side of the street by poles.,\"emerge along the lower deck, both of them holstered at their ankles.\"\n13611,lsmdc0017_Pianist-55796,3982,\"Someone reels, collects himself as best he can and starts to shuffle on -. Someone\",\"Someone reels, collects himself as best he can and starts to shuffle on -.\",Someone,gold,steps off the pavement and walks in the gutter.,\"just hangs toward the back, but he speeds out.\",\"swings, but does n't try to stop.\",is setting his back on the court.\n13612,lsmdc0017_Pianist-55796,3987,\"Someone gazes at the map, horrified. He laughs but they\",\"Someone gazes at the map, horrified.\",He laughs but they,gold,struggle desperately to hold it under him.,\"are disturbed by a sound from another room, the sound of crying.\",\"get it on the wall, trying to stay upright.\",\"hold hands together, then pulls them from someone's suv.\"\n13613,lsmdc0017_Pianist-55796,3994,\"Someone stands in the bow, watching him. Someone\",\"Someone stands in the bow, watching him.\",Someone,gold,\"is at the table, also watching intently.\",keeps slack with his mouth hangs open.,plays the winning medal with him.,wears tight - fitting fedora.\n13614,anetv_shGGt9TRlkk,16764,A woman is eating a sandwich sitting on the front of the canoe. A man,A woman is eating a sandwich sitting on the front of the canoe.,A man,gold,is standing next to the woman from the camel.,is walking into the waves of the water.,takes a blue and white sweater from a living room while she pulls around.,walks up to the edge to clean the dishes.\n13615,anetv_shGGt9TRlkk,16763,People are sitting on kayaks on the land. A woman,People are sitting on kayaks on the land.,A woman,gold,shoots someone walking away.,helps a woman on the stairs while the woman claps her hands.,strikes at her legs.,is eating a sandwich sitting on the front of the canoe.\n13616,anetv_shGGt9TRlkk,19957,People are taking a break from kayaking to eat lunch on a beach. One person then,People are taking a break from kayaking to eat lunch on a beach.,One person then,gold,cuts the white paper in a raft.,\"sled up a slide, then stop washing south water.\",washes his hands in the water.,has the manta sink in the water.\n13617,anetv_w7IeqGuuA7Q,15370,Then other people are blindfolded and try and open the pinata. The third person opens the pinata and people,Then other people are blindfolded and try and open the pinata.,The third person opens the pinata and people,gold,take turns swings the weight to the ground.,come missed the start.,are helped down the slide sides.,go for what is inside.\n13618,anetv_w7IeqGuuA7Q,7128,They both are holding a bat. The boy and the woman,They both are holding a bat.,The boy and the woman,gold,swing at a pinata.,\"are playing ping - pong, smiling and laughing.\",\"lift their head, trying to get the finished nails.\",pass for the crystal ball to make it pretty narrow.\n13619,anetv_w7IeqGuuA7Q,15369,A mom helps a child hit a pinata. Then other people,A mom helps a child hit a pinata.,Then other people,gold,walk up to the girl with the teens.,are blindfolded and try and open the pinata.,stop the girl attempting to swing in the legs of the pinata.,slide to the ground in a swing and swing faster to cover the entire grass.\n13620,anetv_w7IeqGuuA7Q,7127,A woman is standing over a small boy with her hands wrapped around his. they both,A woman is standing over a small boy with her hands wrapped around his.,they both,gold,are holding a bat.,take pictures with both hands.,hold onto the camel with two hurls.,begin to play the accordian.\n13621,anetv_t9UsqWspqZM,7008,A person dressed up as Darth Vader plays a violin on the sidewalk. People,A person dressed up as Darth Vader plays a violin on the sidewalk.,People,gold,are watched by a guard as people walk through the parking lot.,are playing on the sidewalk.,\"runs through, taking turns jumping off a mallet.\",walk in front of him.\n13622,lsmdc0016_O_Brother_Where_Art_Thou-55547,5465,The oldest girl is about ten. Someone,The oldest girl is about ten.,Someone,gold,wears full fake lei and wet hair.,puts paint on her mouth and squints.,\"stomps toward the stage, fighting his way through the crowd.\",attempt to follow her crazy.\n13623,lsmdc0026_The_Big_Fish-62491,4708,\"Someone is so startled that he drops the pole, which disappears into the murky water. He\",\"Someone is so startled that he drops the pole, which disappears into the murky water.\",He,gold,\"looks around, relieved that no one saw that.\",\"swallows and down the view of his face, his tail swishing.\",is still activity and pouring the money everywhere but the spacecraft is nowhere to be seen.,\"in the dirt, he walks from the training contraptions where he's been talking.\"\n13624,lsmdc0026_The_Big_Fish-62491,4712,Someone hands someone a yellowed telegram. Someone,Someone hands someone a yellowed telegram.,Someone,gold,smiles as he charges.,goes to the car and tries to block them.,can't believe what he is reading.,\"moves forward to join someone with the children on the line, and several kids watch as he slides through it.\"\n13625,lsmdc0026_The_Big_Fish-62491,4711,\"Looking through a new file, someone makes a small sound. Someone\",\"Looking through a new file, someone makes a small sound.\",Someone,gold,starts away along someone's loft.,\"turns, walks somberly out of the kitchen.\",hands someone a yellowed telegram.,is going to buy an old model airplane.\n13626,lsmdc0026_The_Big_Fish-62491,4710,\"Two beaten metal file cabinets sit beside it. Looking through a new file, someone\",Two beaten metal file cabinets sit beside it.,\"Looking through a new file, someone\",gold,makes a small sound.,glares at the bolt.,looks around at the students at his desk.,finds the moment to find something there.\n13627,lsmdc0026_The_Big_Fish-62491,4709,\"The storeroom is a museum of hasty decisions and half - finished projects: partially built outboard motors, dead bonsai trees, Frankensteinian lawnmowers. We also\",\"The storeroom is a museum of hasty decisions and half - finished projects: partially built outboard motors, dead bonsai trees, Frankensteinian lawnmowers.\",We also,gold,see three fences in the horizon.,see people approaching the priest.,hear the rumble of the plaza below.,find boxes of products someone used to sell.\n13628,lsmdc0026_The_Big_Fish-62491,4707,\"The pool has long since gone native, a shiny slick of algae on the surface, slime covering the cemented rocks. Someone\",\"The pool has long since gone native, a shiny slick of algae on the surface, slime covering the cemented rocks.\",Someone,gold,\"plunges down on the crawl deck of somebody, gradually slow.\",\"waits in the middle of the table, waiting for someone.\",\"is so startled that he drops the pole, which disappears into the murky water.\",is too injured shooting the fire.\n13629,lsmdc0026_The_Big_Fish-62491,4713,\"A beat, then someone stands. Someone\",\"A beat, then someone stands.\",Someone,gold,\"shakes his head, walks away from him.\",wipes a flood of tears from his mouth.,listens ear - to - ear.,\"kisses him, then follows someone.\"\n13630,lsmdc0026_The_Big_Fish-62491,4715,\"We slowly push in on the telegram, held in the hand. Someone's voice\",\"We slowly push in on the telegram, held in the hand.\",Someone's voice,gold,comes out of the screen and see someone's powder house.,begins as a memory.,is familiar with the receiver still connected to their ears.,\"is subdued, aging.\"\n13631,anetv_10uSu442cOE,18656,A girl plays a brass flute standing on stage during a performance. The girl,A girl plays a brass flute standing on stage during a performance.,The girl,gold,offers the violin as she twirls on her intense yellow board.,finishes the performance and lowers her instrument.,is on a handstand and begins dancing with her hand.,talks with her friend several times as they get to sing and clap.\n13632,anetv_W84TQm1l90U,12119,The man walks forward while holding the woman in that position. The man,The man walks forward while holding the woman in that position.,The man,gold,begins doing how to wash both the men in the padded water.,leans forward and slams the woman down on her back onto a trampoline.,lies on his hands while the instructor helps properly in his sleep.,caresses her drafting table together before still speaking to the camera.\n13633,anetv_W84TQm1l90U,17095,A man picks up a woman onto his shoulders. The man,A man picks up a woman onto his shoulders.,The man,gold,throws the woman from his shoulders onto a trampoline.,shaves a man with a gold medal.,puts down several bottles of hazmat polo clothes.,knocks a man down.\n13634,anetv_W84TQm1l90U,12118,\"He bends down and lifts her up to his face, flipping her around. The man\",\"He bends down and lifts her up to his face, flipping her around.\",The man,gold,continues to show the trimmer while laying back down several more times.,breaks his shirt then kneels and leans down to the tree.,walks forward while holding the woman in that position.,twist around a little bit and shows his face rolled up about her leg.\n13635,anetv_W84TQm1l90U,12117,A man is standing there with a woman bending over in front of him. He,A man is standing there with a woman bending over in front of him.,He,gold,looks more at the two stoically while talking.,\"bends down and lifts her up to his face, flipping her around.\",begins wrapping a box around the kitten.,\"is standing in a field, and the child puts them around him and drops them on the ground.\"\n13636,anetv_mi6f8kGVR70,2117,A man and a kid are ridin a camel on a dusty path. woman is riding a camel behind the first man and men,A man and a kid are ridin a camel on a dusty path.,woman is riding a camel behind the first man and men,gold,watch the baby going down a man in a red shirt.,are helping her to get down the camel.,are in the cars and start talking about each other with exercise.,standing in the audience and watch the men walking after the woman.\n13637,anetv_mi6f8kGVR70,10285,A bald guy is riding a camel with his young son. A woman in orange shirt,A bald guy is riding a camel with his young son.,A woman in orange shirt,gold,sits on a sofa near the edge of the path.,sliding up a alley.,is riding a camel as three people are guiding the camel.,is talking to the women.\n13638,anetv_bLqd98mmu3w,9552,The woman jumps in the water and everyone cheers. The group of people,The woman jumps in the water and everyone cheers.,The group of people,gold,stand up and swim laps in the water.,are on a water room from a water polo.,put their gear in themselves.,are laughing and talking while more people jump in the water.\n13639,anetv_bLqd98mmu3w,9551,A woman is scared of going in the water and says she ca nt do this. A group of people,A woman is scared of going in the water and says she ca nt do this.,A group of people,gold,are sitting in a pool of water that is precariously close to the edge of a waterfall.,are sitting next to a table to the start of has two large trays of hot dogs and both women may be surrounded.,are standing in the sand pouring snow bodies along with other rocks.,are dancing while sitting next to them watching their game.\n13640,anetv_-y8LMGQt8uI,17048,A group of people are seen going up and down snowy mountains on skis and in ski cars. A view,A group of people are seen going up and down snowy mountains on skis and in ski cars.,A view,gold,\"breaks into view and shows a close up of a jump as well as various coral and sides, shots of the rapids hard.\",pans around the tubes and leads into people digging in piles of material.,is then seen of the snowy mountains with a bridge in front.,of a mountain is shown with people sitting on a mountain with ski snowboards and attached to the water.\n13641,anetv_Mgym0F-T7Js,16765,He wets the cloth over and over again while still rubbing it all along the furniture. He,He wets the cloth over and over again while still rubbing it all along the furniture.,He,gold,wipes it down and shows some better steam by the fluid.,continues rubbing and ends by smiling to the camera.,continues on broth until it's finished the end.,continues to stir and turns on to show the peanut wax using as he words to spray the wallpaper again a paint.\n13642,anetv_Mgym0F-T7Js,10479,A man is standing behind a desk. He,A man is standing behind a desk.,He,gold,is welding a piece of metal.,puts more ingredients at the sink and washes the dishes.,begins to play a drum guitar.,begins to wipe the desk with a sponge.\n13643,anetv_Mgym0F-T7Js,16764,A man is seen speaking to the camera and begins wiping down a piece of furniture. He,A man is seen speaking to the camera and begins wiping down a piece of furniture.,He,gold,points a small pile on the roof and starts to set the fire.,continues covering the tiles with a rag while the camera captures his movements.,wets the cloth over and over again while still rubbing it all along the furniture.,shows it up to the camera and shifts on top of the man.\n13644,anetv_Mgym0F-T7Js,10480,He begins to wipe the desk with a sponge. Words,He begins to wipe the desk with a sponge.,Words,gold,come onto the screen at the end.,a taser is roller to a green paint and then he picks it up and goes over another tool.,briefly shows a close up of the camera and how it works.,'s walks in the hall holding a bottle of soap and wipes the tiles off with a towel.\n13645,lsmdc0008_Fargo-49709,17595,\"Twisting perspective shows that it is an aerial shot of a two - lane highway, bordered by snowfields. The highway\",\"Twisting perspective shows that it is an aerial shot of a two - lane highway, bordered by snowfields.\",The highway,gold,\"looks down at the ocean, light flashing across the shore.\",is a large large set of fours and the woman is pulled over to the top of the structure.,carries one moving car.,\"is negative, controlled with the surrounding facility.\"\n13646,anetv_ywFa_D5QZ-k,4509,A person is ironing wax onto the bottom of a ski. She,A person is ironing wax onto the bottom of a ski.,She,gold,scrapes the wax off onto the floor.,is removing removing a single shirt and putting it on filter.,puts on an ironing board.,pulls off speedos shirt onto shirt.\n13647,anetv_ywFa_D5QZ-k,17505,The ski technician uses an iron to melt the wax on to the skis and describes the complete process of waxing skis. The ski technician now,The ski technician uses an iron to melt the wax on to the skis and describes the complete process of waxing skis.,The ski technician now,gold,tests the skis and demonstrate cross country skiing on a cross country trail.,speaks to people as he works.,leaps in the back of a building.,show us the ski medals.\n13648,anetv_ywFa_D5QZ-k,17504,A lady demonstrates how to wax a pair of skis. The ski technician,A lady demonstrates how to wax a pair of skis.,The ski technician,gold,brushes the final sections of her hair.,stops and ties various parts of the man's hair.,uses an iron to melt the wax on to the skis and describes the complete process of waxing skis.,holds the bottom of the ski in their ski gear.\n13649,anetv_ywFa_D5QZ-k,4511,She picks up brushes and brushes the bottom of the ski. She,She picks up brushes and brushes the bottom of the ski.,She,gold,is outside skiing down a hill.,brush the brush and brush and brush the hair of the woman.,has information about the client's hairstyle.,is feeling it any more than you can.\n13650,anetv_ywFa_D5QZ-k,17503,Still images of natural scenes of Utah sites. A lady,Still images of natural scenes of Utah sites.,A lady,gold,demonstrates how to wax a pair of skis.,\"is posing, finished playing various dryers and website.\",washes in front of a rack of doodles.,is doing a style against someone's hair.\n13651,anetv_ywFa_D5QZ-k,4510,She scrapes the wax off onto the floor. She,She scrapes the wax off onto the floor.,She,gold,uses the tool to remove the top off the edges and starting a way.,continuously dances around it and shows off the piece of material.,picks up brushes and brushes the bottom of the ski.,dips the low brush in paint.\n13652,anetv_ywFa_D5QZ-k,4512,She is outside skiing down a hill. A brown dog,She is outside skiing down a hill.,A brown dog,gold,rides around on several rocks and leads into her sitting in a kayak.,is belly to the bottom.,\"gets up, watching them on the tracks.\",is in the snow next to her.\n13653,anetv_ywFa_D5QZ-k,4507,Pictures of landscapes are shown on the screen. People,Pictures of landscapes are shown on the screen.,People,gold,is shown drinking the liquid from a small distance.,are walking up outside.,\"get out of the boat, can be shown as boats are on full waters.\",are sitting around a table eating.\n13654,anetv_DWVI_N4Aeo8,14479,A diving is seen standing ready with his arms out to the side. The man then,A diving is seen standing ready with his arms out to the side.,The man then,gold,performs an impressive dive and is followed by several clips of other people diving.,goes back to pouring water on the plate and throwing it against a sink.,does several more tricks on the bar as well as his arms and legs walking into frame.,lifts a blue weighted barbell over his head before placing it on his head.\n13655,anetv_Sd4C8_FMdjA,13385,A musician is standing and talking on a stage. He then,A musician is standing and talking on a stage.,He then,gold,begins dribbling a sandwich around.,uses a tool to blow some leaves across the grass.,demonstrates how to ski in a building and cleans the ground of an empty corridor.,displays several dance moves in front of a group of kids.\n13656,anetv_Sd4C8_FMdjA,13386,He then displays several dance moves in front of a group of kids. He,He then displays several dance moves in front of a group of kids.,He,gold,extends his arm over an arm wrestling match.,people are playing on a pool with coaches.,shows off the pages of a book with instructions on how to dance.,\"performs with his hand, speaking to the camera in the interview while people speak to him as well as him trying to talk.\"\n13657,anetv_Sd4C8_FMdjA,16795,\"He is then singing, talking and dancing with small children. He\",\"He is then singing, talking and dancing with small children.\",He,gold,are looking off the distance together.,person is shown spining and singing s more.,is a sudden delighted to meet him.,shows several dance moves and advertises his video for teaching dance.\n13658,anetv_Sd4C8_FMdjA,16794,A musician is shown leaning over a chair. He,A musician is shown leaning over a chair.,He,gold,\"plays a flute holding on the saxophone, performing it.\",is a public film with a number of people waiting.,\"is then singing, talking and dancing with small children.\",is then seen spinning his hands up and down.\n13659,anetv_VFvHqc5Bg-0,5103,\"A man in a green coat snow sleds over many surfaces up and down slopes as he passes other snow sledders while surrounded by bare brown foliage and snow covered roofs and hills. As the man snowboards, one person he passes falls down and break his sled and several of the other skiers\",A man in a green coat snow sleds over many surfaces up and down slopes as he passes other snow sledders while surrounded by bare brown foliage and snow covered roofs and hills.,\"As the man snowboards, one person he passes falls down and break his sled and several of the other skiers\",gold,perform trick as they snowboard including snow boarding off of elevated platforms and doing jumps as they snow board.,can perform at the bottom of the hill.,falls out of the dirt path between people running by.,bounce all the way all the way as he pulls a kayak over to the wall.\n13660,lsmdc3085_TRUE_GRIT-40394,14703,\"Someone watches, captivated man. A bag's\",\"Someone watches, captivated man.\",A bag's,gold,gurney covers the parking driver.,toad descends to the toilet.,placed over his head.,tapes hang on a chain.\n13661,lsmdc3085_TRUE_GRIT-40394,14704,A bag's placed over his head. A bag's,A bag's placed over his head.,A bag's,gold,commenting on a news scene on tv.,metal drops drop on the floor.,sticks fall out of the bag.,put over his head.\n13662,lsmdc3085_TRUE_GRIT-40394,14701,A crowd watches three men get hanged. The man who spoke,A crowd watches three men get hanged.,The man who spoke,gold,are spoken with roofing gear.,has a black bag placed over his head.,is holding a white trophy almost.,to the man and leaves the building.\n13663,anetv_AyicWbHhUWc,1058,A man walks onto a mat. He,A man walks onto a mat.,He,gold,stands up and jumps on the mat.,is pushing of a woman laying on the ground.,joins him for a short period before the camera pans back.,bends down and picks up a large weight over his head.\n13664,anetv_AyicWbHhUWc,1059,He bends down and picks up a large weight over his head. He,He bends down and picks up a large weight over his head.,He,gold,shaves his beard off with a knife.,rips the barbell off his forehead for a long period.,drops the weight onto the mat under him.,sits down at the table with it and then wipes his eyes with a towel.\n13665,anetv_AyicWbHhUWc,1237,A very thick man walks slowly into a a large room filled with people and he stands in front of a barbell with red and blue weights on both ends. The man,A very thick man walks slowly into a a large room filled with people and he stands in front of a barbell with red and blue weights on both ends.,The man,gold,takes a few breaths then reaches down and puts his hands on the barbell.,is lifting weights by his dark gloved fingers while circling above his head.,lifts the weight over his head and throws one foot in the air.,continues to lift the barbell and lifts it in the air and his head down and back.\n13666,anetv_AyicWbHhUWc,1238,\"The man takes a few breaths then reaches down and puts his hands on the barbell. After a while the man lifts the barbell to he neck, then jumps and bends his legs at the same time putting the barbell above his head, then he\",The man takes a few breaths then reaches down and puts his hands on the barbell.,\"After a while the man lifts the barbell to he neck, then jumps and bends his legs at the same time putting the barbell above his head, then he\",gold,lifts the barbells on his head.,finish by giving more kiss to the man's head.,throws the barbell to the ground.,starts to lift the weight securely on his knees.\n13667,lsmdc1015_27_Dresses-79691,12853,She brings a pile of paperwork to someone's office. She,She brings a pile of paperwork to someone's office.,She,gold,hangs up the phone and pretends to leave.,arrives at work on her phone.,grins as he talks happily on the phone.,goes across the table to someone.\n13668,lsmdc1015_27_Dresses-79691,12862,\"Underneath, she finds his wallet. Consulting his appointments, she\",\"Underneath, she finds his wallet.\",\"Consulting his appointments, she\",gold,grabs his dark shotgun.,heaves a sigh and leaves.,looks down at him.,hands over the scrap of money.\n13669,lsmdc1015_27_Dresses-79691,12851,A large bunch of yellow flowers is delivered. Someone,A large bunch of yellow flowers is delivered.,Someone,gold,runs casually around the heavy - featured man who has the others sit before him.,hands them to someone with a tight smile.,pulls off the shoes next to someone.,is still enjoying the street and an elderly man.\n13670,lsmdc1015_27_Dresses-79691,12858,\"As they kiss, someone looks mortified. Someone\",\"As they kiss, someone looks mortified.\",Someone,gold,'s wand slowly vanishes.,sits on one arm.,\"catches her eye, looks over at the lovebirds.\",\"lies in her room with a newspaper, watching tv.\"\n13671,lsmdc1015_27_Dresses-79691,12852,Someone hands them to someone with a tight smile. She,Someone hands them to someone with a tight smile.,She,gold,brings a pile of paperwork to someone's office.,glance up from the drawing on someone's head and beams steadily.,slams his fist into the tunnel.,waves his hands against at the men in peace.\n13672,lsmdc1015_27_Dresses-79691,12860,Someone holds up two ties for her approval. He,Someone holds up two ties for her approval.,He,gold,sinks off a coatcheck.,\"nods, tight - lipped, as she knots the tie.\",scuttle across the exposed infected.,\"smiles and grabs her napkin, and glances up.\"\n13673,lsmdc1015_27_Dresses-79691,12857,\"At her apartment she catches people kissing on the couch. Looking crushed, she\",At her apartment she catches people kissing on the couch.,\"Looking crushed, she\",gold,covers the phone with his thumb.,leaves them to it and goes out again.,leans him against a wall overlooking the loft.,rubs her eyes with his gloved hand.\n13674,lsmdc1015_27_Dresses-79691,12855,\"They all have dinner at someone's father's house. As someone chatters and the men smile, someone unhappily\",They all have dinner at someone's father's house.,\"As someone chatters and the men smile, someone unhappily\",gold,runs a turkey down his arm.,eats ice cream from a dressing table.,beats the corner of his nose.,stuffs her face with food.\n13675,lsmdc1015_27_Dresses-79691,12861,\"He nods, tight - lipped, as she knots the tie. She\",\"He nods, tight - lipped, as she knots the tie.\",She,gold,\"goes over to the pond, finally.\",lowers her chin and walks away.,smiles after him and heads back to her desk.,is at the park!\n13676,lsmdc1015_27_Dresses-79691,12856,\"As someone chatters and the men smile, someone unhappily stuffs her face with food. At her apartment she\",\"As someone chatters and the men smile, someone unhappily stuffs her face with food.\",At her apartment she,gold,approaches a bespectacled shaggy - haired woman.,\"tries to find her handbag, then opens the drawer and takes the litter out.\",catches people kissing on the couch.,marches down a corridor.\n13677,lsmdc1015_27_Dresses-79691,12854,She grins as he talks happily on the phone. They all,She grins as he talks happily on the phone.,They all,gold,watch as someone looks from twenty to the present and then to someone.,have dinner at someone's father's house.,have their belts on their hand.,\"start to look at the bar, which they secretly hear.\"\n13678,anetv_BB2vrBWgXkU,18486,A woman wearing a leopard print shirt and a denim jacket is doing a tutorial on fake nails and how to use them. She,A woman wearing a leopard print shirt and a denim jacket is doing a tutorial on fake nails and how to use them.,She,gold,crosses a rainy street with a baton.,is about how to do the frisbee around on the bicycle.,continues putting lens on your legs for a second.,is holding a packet of the fake nails in her hand as she explains the process.\n13679,anetv_BB2vrBWgXkU,18487,She is holding a packet of the fake nails in her hand as she explains the process. Then she,She is holding a packet of the fake nails in her hand as she explains the process.,Then she,gold,begins showing part lemons each baking and box baking product and places it on another cake.,demonstrates how to place the fake nails on top of her nails.,begins a small piece of instructions a bit and then inscribed her copy.,applies glitter of the paper to the parchment on the wall and paper.\n13680,anetv_BB2vrBWgXkU,18489,Then she takes a nail file and files the ends of the nails to smooth it. She then,Then she takes a nail file and files the ends of the nails to smooth it.,She then,gold,applies a pair of nail clippers to the brown lens and brushes back the residue of the tresses.,begins with laying her mouth down and scrubbing on the floor.,uses some glue to glue the nails over her nails.,begins putting the nails around the top of the roof while showing off the finished result.\n13681,anetv_BB2vrBWgXkU,18488,Then she demonstrates how to place the fake nails on top of her nails. Then she,Then she demonstrates how to place the fake nails on top of her nails.,Then she,gold,takes a nail file and files the ends of the nails to smooth it.,shows off the scraped product and the color includes a hanging design on the other end.,shows her nails with a piece of cheese and adds it next to her.,shows off the same nails and painted on her nail.\n13682,anetv_J959vSGFedM,8425,\"He is trying to do sit ups, slowing down and grimacing as the effort becomes more difficult with each one. He\",\"He is trying to do sit ups, slowing down and grimacing as the effort becomes more difficult with each one.\",He,gold,finds himself in the movie room and jumps side to side.,seems sure he's not really fast but it's not just completed.,\"spreads to his feet, drags and tries on his rear.\",\"stops, lying back and laughing.\"\n13683,anetv_J959vSGFedM,8424,A man is lying on his back on a tile floor. He,A man is lying on his back on a tile floor.,He,gold,stands holding a purple towel stuck in his neck.,starts spraying a wall with varnish.,crawls upside down landing on the roof.,\"is trying to do sit ups, slowing down and grimacing as the effort becomes more difficult with each one.\"\n13684,anetv_Yp9WuBrgbI4,4448,The shirtless man is doing crunches. The woman,The shirtless man is doing crunches.,The woman,gold,bounces until and does the splits.,is swinging his chair in place.,continues tumbling down lot quickly.,is doing crunches while her legs is on a machine.\n13685,anetv_Yp9WuBrgbI4,4450,The woman is holding the man's feet as he crunches. The man,The woman is holding the man's feet as he crunches.,The man,gold,grabs the ax from the girl then falls to the floor.,is moving his legs while he has big yoga ball under his legs.,walks by the object while holding it.,tosses the sheet away and stops at the end of a room.\n13686,anetv_Yp9WuBrgbI4,4449,The woman is doing crunches while her legs is on a machine. The woman,The woman is doing crunches while her legs is on a machine.,The woman,gold,grabs the jacket from the needle and walks away.,places her nails away in the wooden pot.,is holding the man's feet as he crunches.,picks up a phone and picks up the phone.\n13687,anetv_XwrF8edyJz0,14150,A camera pans around glasses of lemonade followed by a person squeezing juice out of lemons. The person,A camera pans around glasses of lemonade followed by a person squeezing juice out of lemons.,The person,gold,adds drinks from the bottles of ingredients and mixing them in a bowl.,cuts the lemon in a lemon and pours more sugar into the glass.,mixes various ingredients together into a bowl and pours it into a glass.,pours ice into a glass and pours lettuce into ingredients before shaking it in the pot.\n13688,anetv_XwrF8edyJz0,14151,The person mixes various ingredients together into a bowl and pours it into a glass. Several shots,The person mixes various ingredients together into a bowl and pours it into a glass.,Several shots,gold,are seen of wine as well as beer as well as showing the front.,are shown of palm washing washing and then putting ingredients into a glass.,are shown of the glasses being poured as well as presented to the camera.,are shown of the finished fry and begins mixing in some ingredients then leaves.\n13689,anetv_HGk9BqOuxCE,19143,A man is seen standing in front of a chalk board holding a musical instrument and transitioning to the chalk board every now and then. A person's hand,A man is seen standing in front of a chalk board holding a musical instrument and transitioning to the chalk board every now and then.,A person's hand,gold,is seen using an ipod followed by more shots of the person talking and writing on a paper.,is seen next to a man talking as he takes off the bike.,is seen taking off the shoes.,walks beside the wall smoking.\n13690,anetv_HGk9BqOuxCE,19144,A person's hand is seen using an ipod followed by more shots of the person talking and writing on a paper. The man then,A person's hand is seen using an ipod followed by more shots of the person talking and writing on a paper.,The man then,gold,begins to work out playing the pipes while pausing to continue to smoke the smoke in the end.,plays the instrument as the camera captures him from several angles while pausing to speak.,gets us a sub attached on the equipment and other objects begin to spin and close.,begins rubbing the paper all around the naked body as well as speaking to the camera and wiping water on his face.\n13691,anetv_3N1tbv5Z6Kk,1913,A man in tuxedo and woman in party dress dance the tango in a ballroom surrounded by crowd in chairs during performance. The crowd,A man in tuxedo and woman in party dress dance the tango in a ballroom surrounded by crowd in chairs during performance.,The crowd,gold,cheers to clap for people.,cheers at the end and claps hands.,applauds herself jump and gracefully move their hips like a performer.,dismounts while dancing on the stage floor.\n13692,anetv_iChE4EoYG6k,3399,A small group of people are seen attending an exercise class with a man leading in front. The man,A small group of people are seen attending an exercise class with a man leading in front.,The man,gold,practice some arts and leads into him standing down and speaking to the camera as he walks.,continues moving around with the woman on top of an exercise beam.,is interviewed around the gym by adjusting grab helmets and points.,lifts the weights together and drains them together.\n13693,anetv_iChE4EoYG6k,14850,The instructor stands still and jumps in the air. The instructor,The instructor stands still and jumps in the air.,The instructor,gold,rolls over for the first time in battle.,are in machine - air aerobic ballroom dance and moving their arms in a chokehold.,counts down and starts working out again.,sits on the bar again.\n13694,anetv_iChE4EoYG6k,14849,The instructor raises his hands in the air and walks around the classroom. The instructor,The instructor raises his hands in the air and walks around the classroom.,The instructor,gold,balances on the beam and shifts on the weight.,\"follows after the finish, the instructor flips off the entire time.\",stands still and jumps in the air.,is sitting in the stands watching the band.\n13695,anetv_iChE4EoYG6k,14847,We see a class of people working out on an exercise step. We,We see a class of people working out on an exercise step.,We,gold,see the individual turn out the dog.,see the instructor enter and lead the class as a person in the rear films the class.,see men talking again in a diaper room and having pulled back to play with.,see the rose and arm of yellow over their chest.\n13696,anetv_iChE4EoYG6k,3400,The man continues moving around with the woman on top of an exercise beam. The woman,The man continues moving around with the woman on top of an exercise beam.,The woman,gold,continue moving up and down with the man leading in front.,continues spinning around up continuously and jumps back and fourth and other girls body on the mat.,continues sitting on the mat and continues swinging back and fourth.,gets up from the pole and starts kicking make ups.\n13697,anetv_iChE4EoYG6k,14851,The instructor counts down and starts working out again. The instructor,The instructor counts down and starts working out again.,The instructor,gold,stops working out and leaves walks away.,turns to the right.,is being interviewed by the instructor.,finishes by breaking the connection.\n13698,anetv_iChE4EoYG6k,14848,We see the instructor enter and lead the class as a person in the rear films the class. The instructor,We see the instructor enter and lead the class as a person in the rear films the class.,The instructor,gold,raises his hands in the air and walks around the classroom.,is being groomed with their luggage and a cleaning lady looks.,returns with the instructor to back flips and steps into.,does the same then dismounts.\n13699,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13281,The door behind them slides away. The rows of glass spheres,The door behind them slides away.,The rows of glass spheres,gold,are ceiling down on a skyscraper.,\"fill the shelves, which stand close together and extend upwards high above their heads.\",fall into his face.,\"gather in its spacious courtyard, in a swept look.\"\n13700,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13284,He stops and shines his wand down onto the empty floor. He,He stops and shines his wand down onto the empty floor.,He,gold,grabs a paper and blows it in half.,faces someone who wears a thin chain on his back.,turns to his friends.,uses a shield to shield himself.\n13701,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13282,\"The rows of glass spheres fill the shelves, which stand close together and extend upwards high above their heads. By the light of his wand, someone\",\"The rows of glass spheres fill the shelves, which stand close together and extend upwards high above their heads.\",\"By the light of his wand, someone\",gold,looks curiously at someone.,\"searches the long, dark passages between the shelves.\",\"stands on the front of the van as someone guns up, watching closely.\",\"aims someone in the head, as if unable to properly pray, holding him continues to defend him.\"\n13702,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13283,\"By the light of his wand, someone searches the long, dark passages between the shelves. He\",\"By the light of his wand, someone searches the long, dark passages between the shelves.\",He,gold,wraps a box to the trunk.,stops and shines his wand down onto the empty floor.,\", someone's toting a letter in his hand, grabs his gear and drops his tie.\",bolts in front of a pool of lightning that were no longer there.\n13703,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13275,They eat sit astride the leathery back of a thestral. Someone,They eat sit astride the leathery back of a thestral.,Someone,gold,carries on an energy drains.,hurries off the horse and gives someone a fright.,\"takes out a pan of lasagna, a giant is torched.\",holds on tightly and looks around at his companions.\n13704,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13276,\"Someone holds on tightly and looks around at his companions. Flying close behind, someone\",Someone holds on tightly and looks around at his companions.,\"Flying close behind, someone\",gold,has disappeared into the gloom.,flies as shadows mikan near the weakly - brick wall.,notices the crowd from distant light.,gives him a happy smile.\n13705,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13287,\"As someone walks towards it, the sphere stars to glow, illuminating the swirling mist inside it. Someone\",\"As someone walks towards it, the sphere stars to glow, illuminating the swirling mist inside it.\",Someone,gold,reaches out and lifts it down.,comes toward a moment on a banister.,morphs into the huge armored armor of an alien body complete which bears the fiery creature's legs.,\"scrolling through our shutters, covering its tapestry, a moment he has been locked on someone.\"\n13706,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13279,The others follow him along the black corridor towards the blue door at the far end. Inside,The others follow him along the black corridor towards the blue door at the far end.,Inside,gold,\"appear in the corridor behind him looking at the men wearing bulletproof vests, carrying douses in carpets and cars, and other items.\",\"starts striding down the street sideways, throwing a hand - like tool which looses with air over the glider.\",\", someone leads someone outside.\",\"is a shadowy storeroom full of high, wooden shelves.\"\n13707,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13277,\"Flying close behind, someone gives him a happy smile. The thestrals\",\"Flying close behind, someone gives him a happy smile.\",The thestrals,gold,fly on through the stormy night buffeted by strong winds.,stands on the staggers of the street holding a boy's arm.,for the boy has talked to his friend.,puts his hand on the heart of the cafe.\n13708,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13280,\"Inside is a shadowy storeroom full of high, wooden shelves. They\",\"Inside is a shadowy storeroom full of high, wooden shelves.\",They,gold,\"and someone are making physical kickboxing, all of a sudden, but someone no longer cut out things.\",crushes the hallway in their raft and motions on to them.,sit up holding a chair to the manager's office desk.,hold up their lighted wands.\n13709,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95249,13286,\"Someone is reading a label on a shelf beneath one of the spheres. As someone walks towards it, the sphere stars\",Someone is reading a label on a shelf beneath one of the spheres.,\"As someone walks towards it, the sphere stars\",gold,\"to glow, illuminating the swirling mist inside it.\",glows on someone finger.,people in the middle.,and red ominously follow way.\n13710,anetv_2tpwfPdSEVo,1313,She shows off a pair of clipping scissors. She then,She shows off a pair of clipping scissors.,She then,gold,uses them to gently but quickly trim a cat's nails while another woman assists her.,polishes the tethered chair.,balances the braids.,points to continue the archery her nails.\n13711,anetv_2tpwfPdSEVo,1312,A woman talks as she is seated on the ground. She,A woman talks as she is seated on the ground.,She,gold,is showing how to use hair dryer.,is using a box to adjust writing on a phone.,cringes and studies the skin and wipes it clean of her hand.,shows off a pair of clipping scissors.\n13712,anetv_Eo3PUIfZSJU,19202,\"Then, the gymnast jumps, flips but staggers during her performance. The gymnast performs backward flips, then she\",\"Then, the gymnast jumps, flips but staggers during her performance.\",\"The gymnast performs backward flips, then she\",gold,continues with her routine.,does a step block on the balance beam.,goes down in unison.,balances down before him.\n13713,anetv_Eo3PUIfZSJU,19201,\"A gymnast performs on the vault on front a crowd, she flips and falls from the vault. Then, the gymnast\",\"A gymnast performs on the vault on front a crowd, she flips and falls from the vault.\",\"Then, the gymnast\",gold,dives to the ground while flipping and dismounts.,\"jumps, flips but staggers during her performance.\",dismounts and lands in the sand.,\"dismounts and falls, then swings her arms off the bar and lands as she performs to dive back and backward.\"\n13714,anetv_zwx1Kig4nXg,12583,We see a baby spining in a room with adults watching. An adult,We see a baby spining in a room with adults watching.,An adult,gold,falls off the bench.,dances with the baby.,helps an adult steer a disc to the playground.,walks the length of a slide.\n13715,anetv_zwx1Kig4nXg,12586,The baby dances alone again. The baby,The baby dances alone again.,The baby,gold,dances around while holding a child.,picks up a toy dog and dances with it.,stops and sits down.,stops walking and waves at the camera.\n13716,anetv_zwx1Kig4nXg,12584,An adult dances with the baby. Two adults,An adult dances with the baby.,Two adults,gold,fight down another while another man watches someone and the first women screams.,leave the woman.,hold the babies hands and dance.,help the child with the boy.\n13717,anetv_zwx1Kig4nXg,12585,Two adults hold the babies hands and dance. The baby,Two adults hold the babies hands and dance.,The baby,gold,gets up and walks out of frame.,lights the christmas and falls onto the red plug.,sits outdoors in the long kitchen.,is twirled in a circle.\n13718,lsmdc0053_Rendezvous_mit_Joe_Black-71339,13020,Someone nods perfunctorily and exits. Someone,Someone nods perfunctorily and exits.,Someone,gold,stares at him with great tenderness.,\"is frozen, dumbfounded.\",applies utter makeup to her eyes.,reads from a clipboard.\n13719,lsmdc0053_Rendezvous_mit_Joe_Black-71339,13019,\"Someone ignores her at first, finally he looks at someone then at someone, then once more at both of them as if to verify someone's presence has been acknowledged by someone. Someone\",\"Someone ignores her at first, finally he looks at someone then at someone, then once more at both of them as if to verify someone's presence has been acknowledged by someone.\",Someone,gold,takes a ragged breath.,\"turns around and looks at someone, pleased with fear.\",nods perfunctorily and exits.,becomes shocked as he walks in front of the crib.\n13720,lsmdc0030_The_Hustler-64627,13587,\"As Preacher opens the door to the back room, clutching a paper bag filled with bottles to his chest, we see six men seated around a table, playing poker. Preacher\",\"As Preacher opens the door to the back room, clutching a paper bag filled with bottles to his chest, we see six men seated around a table, playing poker.\",Preacher,gold,flinches as one of those grasping pirouettes pays someone free.,approaches one of them and whispers something hurriedly in his ear.,\"turns to the busty man, places his hands on someone arm suspiciously.\",runs the finger in her finger as the video goes.\n13721,lsmdc0030_The_Hustler-64627,13594,\"Someone holds a hand to his temple, unnerved by someone 'discomposure. People\",\"Someone holds a hand to his temple, unnerved by someone 'discomposure.\",People,gold,walk away from the cut - in line.,\"eye each other coldly, someone with his glass in his hand, someone with his bottle.\",\"to himself, he resumes talking incredulously.\",gently sits up against his wall.\n13722,lsmdc0030_The_Hustler-64627,13598,\"Someone replaces the billfold in his coat pocket. Someone, weary now, his hands resting on the table,\",Someone replaces the billfold in his coat pocket.,\"Someone, weary now, his hands resting on the table,\",gold,holding a partially box waiting for him.,\"looks up at the cool, impassive face of someone.\",is his business in a white t - shirt.,makes up.\n13723,lsmdc0030_The_Hustler-64627,13590,A floor full of cigarette butts surround someone's chair. Someone,A floor full of cigarette butts surround someone's chair.,Someone,gold,\"looks down cautiously at someone, who studies a deformed shipping animal.\",crushes out another on the floor and immediately reaches for more.,sits down a chair and raises it to his chest.,catches it and winks.\n13724,lsmdc0030_The_Hustler-64627,13597,Someone reaches forward to hand someone more money. Someone,Someone reaches forward to hand someone more money.,Someone,gold,walks directly toward someone.,replaces the billfold in his coat pocket.,strides off along the corridor and down the hall.,changes shots as someone accepts the cash.\n13725,lsmdc0030_The_Hustler-64627,13592,\"Only the voice of Sausage is heard, signaling the end of a game. Ames\",\"Only the voice of Sausage is heard, signaling the end of a game.\",Ames,gold,\"is the topic of real delivery with committed, loss, and challenging someone.\",manages to swim in someone's left frame.,\"- ajar, someone sticks a velvet toy over his shoulder and gently touches someone's cheek.\",\"is empty now, except for the players and the employees.\"\n13726,lsmdc0030_The_Hustler-64627,13586,\"They stand up, remove their jackets, and prepare to play again. As Preacher opens the door to the back room, clutching a paper bag filled with bottles to his chest, we\",\"They stand up, remove their jackets, and prepare to play again.\",\"As Preacher opens the door to the back room, clutching a paper bag filled with bottles to his chest, we\",gold,see two rubik's by a digital dinette.,see someone being mesmerized by a black smartphone.,\"see six men seated around a table, playing poker.\",\"see someone hands a glass wheel to someone, quizzically, then lifts the glass and notices it.\"\n13727,lsmdc0030_The_Hustler-64627,13595,\"People eye each other coldly, someone with his glass in his hand, someone with his bottle. Someone\",\"People eye each other coldly, someone with his glass in his hand, someone with his bottle.\",Someone,gold,\"see the light on the man, who head up.\",leans forward and kisses the back of his head.,takes a swig and returns to the game.,\"float in through windows together, crashing into each other.\"\n13728,lsmdc0030_The_Hustler-64627,13593,\"Ames is empty now, except for the players and the employees. As someone bends over to shoot, someone\",\"Ames is empty now, except for the players and the employees.\",\"As someone bends over to shoot, someone\",gold,draws the venetian blinds.,shakes his head as someone kicks him.,\"pulls a cue bag off the table, revealing 4 glittering balls in each hand.\",reaches a pair of shoes.\n13729,lsmdc0030_The_Hustler-64627,13588,\"Except for his dark glasses, he might pass for a conservative businessman out for an evening with the boys, sipping milk instead of alcohol to soothe an ulcer. He\",\"Except for his dark glasses, he might pass for a conservative businessman out for an evening with the boys, sipping milk instead of alcohol to soothe an ulcer.\",He,gold,turns to look at her ping - eyed reflection on the room.,nods to preacher who then leaves.,\"sticks her head in the glass, points to someone as he's up a brick.\",is slowly stripping someone's clothes and back for the camera.\n13730,lsmdc0030_The_Hustler-64627,13591,The hands of the clock on the wall spin around toward eight in the morning. Only the voice of Sausage,The hands of the clock on the wall spin around toward eight in the morning.,Only the voice of Sausage,gold,is not actually beginning to hear playing.,is the phrase hard to make his way back.,is backed away out by a milk man.,\"is heard, signaling the end of a game.\"\n13731,lsmdc0030_The_Hustler-64627,13596,Someone takes a swig and returns to the game. Someone,Someone takes a swig and returns to the game.,Someone,gold,\"looks down, withdrawing his excitement.\",reaches forward to hand someone more money.,\"puts his cap on and takes a drink from his beer bottle, pretending to be inquisitively a princess.\",aims at her attacker.\n13732,lsmdc0030_The_Hustler-64627,13599,\"Someone, weary now, his hands resting on the table, looks up at the cool, impassive face of someone. Someone\",\"Someone, weary now, his hands resting on the table, looks up at the cool, impassive face of someone.\",Someone,gold,points the bat at his opponent.,\"rises, moves his chair about six inches, and sits down again.\",walks over to the door where someone ushers himself out of her.,hides beneath his red hat by moaning.\n13733,lsmdc0030_The_Hustler-64627,13589,He nods to Preacher who then leaves. Someone,He nods to Preacher who then leaves.,Someone,gold,appears thoughtful for a moment.,throws the flowers at someone and pats on the door.,\"shuts the recorder, then waits stiffly as someone arrives.\",looks to someone who stands at her sides.\n13734,lsmdc0016_O_Brother_Where_Art_Thou-55646,7872,They too start up the stairs. Someone's pace is brisk and the midget,They too start up the stairs.,Someone's pace is brisk and the midget,gold,hops awkwardly to keep up.,looks around realizing the nervous wounds in his hand.,\"continues forward, sounding the last of a few days.\",is trying to contain himself from this complex.\n13735,lsmdc0016_O_Brother_Where_Art_Thou-55646,7874,\"The blackface has been scrubbed off but all four now wear long gray beards as disguise, clumsily affixed with spirit gum. Each\",\"The blackface has been scrubbed off but all four now wear long gray beards as disguise, clumsily affixed with spirit gum.\",Each,gold,of the two men take out of the shot.,put the flower to their mouths.,is carrying a musical - instrument case.,are joining the other women more than they should.\n13736,lsmdc0016_O_Brother_Where_Art_Thou-55646,7871,The midget tosses his balled - up white hood into the car and both men shrug into their suitcoats. They too,The midget tosses his balled - up white hood into the car and both men shrug into their suitcoats.,They too,gold,want to leave the farewell shop on the way to help people and let's a cab start.,politely quietly dressed in their elegant manner.,spot the clerk looking at someone with a half - smile.,start up the stairs.\n13737,lsmdc0016_O_Brother_Where_Art_Thou-55646,7870,Headlights play; the men suck back into the alley as a car passes by. The car tools up to the banquet hall and someone,Headlights play; the men suck back into the alley as a car passes by.,The car tools up to the banquet hall and someone,gold,emerges with his midget.,steps off the man's hood.,forces a rider down on it.,scans the crash course with a month.\n13738,lsmdc0016_O_Brother_Where_Art_Thou-55646,7873,Someone's pace is brisk and the midget hops awkwardly to keep up. People,Someone's pace is brisk and the midget hops awkwardly to keep up.,People,gold,\"her by the arm, she takes his face in his hands and kisses him.\",\"still hesitate, then lowers himself into a tall arch leading to the courtly skirts.\",are entering through the back door.,kisses someone widens her eyes in one of the windows.\n13739,lsmdc3083_TITANIC2-38922,18731,Someone smiles as she picks up a silver hand mirror. Someone,Someone smiles as she picks up a silver hand mirror.,Someone,gold,\"turns the mirror in her hands, catching her own reflection in the cracked glass.\",appears in the doorway.,shakes his bag over and tosses it away in the basket.,registers off and blinks back the tears.\n13740,lsmdc3083_TITANIC2-38922,18732,\"Someone turns the mirror in her hands, catching her own reflection in the cracked glass. She\",\"Someone turns the mirror in her hands, catching her own reflection in the cracked glass.\",She,gold,sets down the mirror and examines other objects.,sits on the table looking our view from the full - length mirror.,sits down and stares at her through the hoop.,struggles to the stairs as the thugs bend behind.\n13741,lsmdc3083_TITANIC2-38922,18733,She sets down the mirror and examines other objects. She,She sets down the mirror and examines other objects.,She,gold,picks up a pair of fake boots and puts them onto a dresser.,presents it to a man's body.,picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings.,goes over to work.\n13742,lsmdc3083_TITANIC2-38922,18734,She picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings. Someone,She picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings.,Someone,gold,steals another glance and turns back toward the counter.,\"looks around the room, sobbing silently.\",gulps as she stares at the comb.,gives him a quick look.\n13743,lsmdc0011_Gandhi-52062,3154,\"He nods to the tall civil servant, who bows and closes the door. Someone\",\"He nods to the tall civil servant, who bows and closes the door.\",Someone,gold,crosses the room toward a small cabinet.,sets them in a cage and leads them onward to the old gymnast.,picks up the boy's collar and holds it up.,turns in the denim.\n13744,lsmdc0011_Gandhi-52062,3152,\"Someone passes two male secretaries, and the tall civil servant scoots decorously around him to knock once on the inner doors. Then he\",\"Someone passes two male secretaries, and the tall civil servant scoots decorously around him to knock once on the inner doors.\",Then he,gold,goes through and notices the doorknob turning.,pushes them open and gestures someone in.,\"steps out, confidently, balconies laying against a button in a green satin vest.\",\"steps out of the compartment, pushing his pistol against the wall and looking at the interior.\"\n13745,lsmdc0011_Gandhi-52062,3149,The prison officer's eyes fall on him. Someone - - now manacled - -,The prison officer's eyes fall on him.,Someone - - now manacled - -,gold,sits on the street near the front of the house.,is being marched down the pavement before two guards.,take out the breath.,gets a magazine from the table.\n13746,lsmdc0011_Gandhi-52062,3153,\"We have seen it before when someone spoke to someone, but now we see its full breadth - - and the imposing figure someone makes as he stands behind the grand desk. He\",\"We have seen it before when someone spoke to someone, but now we see its full breadth - - and the imposing figure someone makes as he stands behind the grand desk.\",He,gold,\"nods to the tall civil servant, who bows and closes the door.\",is caught off into the distance of a skull and surrounding whatever is a shadow on them.,stands to tilt it over his shoulders and begins to gently splinter it with his foot.,\"arrives freighters at the top of the stairs, his arms bent, trying to push his way through the clouds.\"\n13747,lsmdc0011_Gandhi-52062,3151,The tall civil servant has been waiting for them. The prison officer,The tall civil servant has been waiting for them.,The prison officer,gold,gives a smile and returns his cool to the burly sergeant who kisses his bald forehead.,cuts the ladies' skiff.,\"drops to one side, studiously.\",reaches forward and undoes someone's manacles.\n13748,lsmdc0011_Gandhi-52062,3150,Someone - - now manacled - - is being marched down the pavement before two guards. The tall civil servant,Someone - - now manacled - - is being marched down the pavement before two guards.,The tall civil servant,gold,shows them on the vehicle suddenly comes running out of bed.,emerges in the second shot.,takes a hose to get the train radio up.,has been waiting for them.\n13749,anetv_pcrNMrBmy1I,3882,Two teams are playing lacrosse outdoors. Players,Two teams are playing lacrosse outdoors.,Players,gold,squats down and pound balls into the holes.,\"are playing a middle game of rock formation, teams are backstage for an interview.\",score and jump and run to celebrate the scores.,play in a small field and between the balls of the teammates.\n13750,anetv_5dXi-tAGqbs,12988,They are performing an aerobic exercise called zumba. They,They are performing an aerobic exercise called zumba.,They,gold,continue doing the moves in unison.,go quickly and set doing their moves.,are on steps doing many routines at the end.,is leading viewers that to balance retreat.\n13751,anetv_5dXi-tAGqbs,1729,\"They speed up their dancing as they go along. As the music ends, the women\",They speed up their dancing as they go along.,\"As the music ends, the women\",gold,switch and one double time with pom poms.,are around and screaming.,start to exchange a victory.,stop dancing and talk.\n13752,anetv_5dXi-tAGqbs,12987,A group of women are dancing inside a gym. They,A group of women are dancing inside a gym.,They,gold,\"dance gracefully, dancing, then heads towards the choir.\",are performing an aerobic exercise called zumba.,people are playing gum on sticks.,do a routine on the balance beam.\n13753,anetv_5dXi-tAGqbs,1728,They step back and forth and spin around. They,They step back and forth and spin around.,They,gold,are sitting in front of them watching.,\"get out of their chevrolet and then run, quick trying to knock something down.\",speed up their dancing as they go along.,move on the surface and dance around and ends with the closing skates and the screen.\n13754,anetv_5dXi-tAGqbs,1727,We see a group of women inside a zumba class as they begin to dance in rythm to music. They,We see a group of women inside a zumba class as they begin to dance in rythm to music.,They,gold,\"see the news, and tie up the irish trophy.\",bounced in a different flash forward.,step back and forth and spin around.,lady in class explains how to work out space on the machine.\n13755,lsmdc0008_Fargo-49734,961,\"As he reaches for the curtain, it explodes outward, animated by thrashing limbs. Someone, screaming, tangled in the curtain,\",\"As he reaches for the curtain, it explodes outward, animated by thrashing limbs.\",\"Someone, screaming, tangled in the curtain,\",gold,rips it off its rings and stumbles out into the bedroom.,rips the bindings open.,\"puts its arms high to the side, and faces them both.\",\"remains tossed in the face, screams, angry and triumphant.\"\n13756,lsmdc0008_Fargo-49734,963,\"Someone rushes toward the door, cloaked by the shower curtain but awkwardly trying to push it off. Still thrashing, someone\",\"Someone rushes toward the door, cloaked by the shower curtain but awkwardly trying to push it off.\",\"Still thrashing, someone\",gold,grabs a thin delivery machine.,stands by one of those unshaven someone.,\"removes his hand from the bed, glances at someone.\",\"crashes against the upstairs railing, trips on the curtain and falls, thumping crazily down the stairs.\"\n13757,lsmdc0008_Fargo-49734,959,\"He finds a salve but after a moment sets it down, noticing something in the mirror. The shower curtain\",\"He finds a salve but after a moment sets it down, noticing something in the mirror.\",The shower curtain,gold,is drawn around the tub.,is still on the way.,pulls out the thin black curtain.,is coming out of the living room.\n13758,lsmdc0008_Fargo-49734,964,Someone trots down after her. Someone sits behind his desk; another man,Someone trots down after her.,Someone sits behind his desk; another man,gold,plunks down on his bruised knee.,emerges from his bedroom.,sits playing a chair.,rises as someone enters.\n13759,lsmdc0008_Fargo-49734,960,\"The shower curtain is drawn around the tub. As he reaches for the curtain, it\",The shower curtain is drawn around the tub.,\"As he reaches for the curtain, it\",gold,\"creeps into view, lifts a fresh water starting looking down at the pool.\",\"explodes outward, animated by thrashing limbs.\",\"draws up, revealing inside the white envelope.\",is very deep and they begin to climb the stairs.\n13760,lsmdc0008_Fargo-49734,962,\"Someone, screaming, tangled in the curtain, rips it off its rings and stumbles out into the bedroom. Someone\",\"Someone, screaming, tangled in the curtain, rips it off its rings and stumbles out into the bedroom.\",Someone,gold,\"rushes toward the door, cloaked by the shower curtain but awkwardly trying to push it off.\",bends down and fires.,enters a coat of plush furniture.,slows down as he looks around the train.\n13761,lsmdc0008_Fargo-49734,957,Someone crosses to a high window above the toilet and throws it open. Someone,Someone crosses to a high window above the toilet and throws it open.,Someone,gold,\"rolls it off, grabs a pin, and throws it at someone's face.\",glances back as she steps up from the toilet seat to the tank.,\"sits staring at a large egg, covered in a millions of birds.\",\"unzips the collar, pulling a lever which come up behind him.\"\n13762,lsmdc0008_Fargo-49734,958,Someone glances back as she steps up from the toilet seat to the tank. The groaning of the door,Someone glances back as she steps up from the toilet seat to the tank.,The groaning of the door,gold,ends with the wood around its knob splintering and the knob itself falling out onto the floor.,hauls away by a blow - up whistle as she climbs up and down the stairs.,slides coolly against someone's vest and picks the lock.,is held open by someone but catches him.\n13763,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1723,16309,Someone pulls out a knife and swings. The retreating troll,Someone pulls out a knife and swings.,The retreating troll,gold,turns to look at someone.,beats his hand as someone dodges the attacker.,pushes out tray after his friends.,drum and lights come on.\n13764,anetv_3FAvxuTw4NI,14517,He uses a remote control to fly a toy airplane. The plane,He uses a remote control to fly a toy airplane.,The plane,gold,dips and glides through the air.,falls onto the surface of the rocky ground.,returns from a black sky above them.,cruises along finding a snow covered field filled with fish.\n13765,anetv_3FAvxuTw4NI,689,A person is seen walking away and begins flying a plane. The person,A person is seen walking away and begins flying a plane.,The person,gold,holds up on object with a rubber object to go around.,moves the plane all over the room.,continues riding around in the containers while others watch in the distance.,breaks another and talks as well as driving.\n13766,anetv_3FAvxuTw4NI,690,The person moves the plane all over the room. He,The person moves the plane all over the room.,He,gold,continues to walk around and steer the remote controlled plane and pans to others doing the same.,then wets the wax and rubs it down for the camera.,gets out of the water.,speaks to the camera while the video continues to lead into the outline of something in the corner.\n13767,anetv_QIkDYInr17A,11015,Two young children are seen standing behind a table with one peeling lemons and a boy watching on the side. Another child,Two young children are seen standing behind a table with one peeling lemons and a boy watching on the side.,Another child,gold,is seen squeezing lemons and zooms in on the kids working.,is seen eating the ice cream and ends with the girl drinking.,is seen removing from their hand and pours around into a bowl.,blinks to the camera and shows a recipe of eating a cake and speaking to the camera.\n13768,anetv_QIkDYInr17A,11016,Another child is seen squeezing lemons and zooms in on the kids working. The kids,Another child is seen squeezing lemons and zooms in on the kids working.,The kids,gold,continue to squeeze the lemon while looking and waving to the camera and speaking on the side.,continue curling with one another and lead into them pushing themselves along the water and laughing in it.,continue to push down the fence while people drink down and putting the soap on the tv.,continues just as the woman is dancing and dancing sprints on the yard.\n13769,anetv_WpKQV53ENHE,14304,Many outdoor waterfalls are shown at what looks to be an outdoor park. A group of people,Many outdoor waterfalls are shown at what looks to be an outdoor park.,A group of people,gold,are playing high in a lake that none of them is turning and getting ready to go.,are then shown walking across a bridge a man then jumps off the bridge into the water.,is seen standing in the middle of the wave while the camera man spins on.,are seen standing next to a large crowd behind them for jumping rope.\n13770,anetv_WpKQV53ENHE,14306,Several kayaks are then shown in the same water white water rafting and they begin to fall off as they go over rocks and hills. One group falls off and the raft gets stuck and the people,Several kayaks are then shown in the same water white water rafting and they begin to fall off as they go over rocks and hills.,One group falls off and the raft gets stuck and the people,gold,continue to walk around the raft.,continue surfing on the water below.,continue swimming down the river.,amble around while others run into him and get into the boat.\n13771,anetv_WpKQV53ENHE,14307,One group falls off and the raft gets stuck and the people continue swimming down the river. The last set of kayaking people are having more fun and someone,One group falls off and the raft gets stuck and the people continue swimming down the river.,The last set of kayaking people are having more fun and someone,gold,continues popping and flipping around themselves while bumping into one another.,does a flip out of the front of the kayak.,is seen coming into the boat in the background.,'s riding to one side and the youth continues to pull back.\n13772,anetv_WpKQV53ENHE,212,People are kayaking on the rapids and fell off and the kayak gets stuck in a rock whil epeople in water go with the flow. men are kayaking and a man,People are kayaking on the rapids and fell off and the kayak gets stuck in a rock whil epeople in water go with the flow.,men are kayaking and a man,gold,runs on the wave to slam them so that the person is facing them to shoot.,came up and rocks over the railing on the river.,makes a high jump to the river.,is drinking ice and are in a kayak wearing scuba gear from a river.\n13773,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19018,They duck down as a night watchman walks past the door. The watchman,They duck down as a night watchman walks past the door.,The watchman,gold,\"looks around skeptically, then moves on.\",\"suspends doleful eyes, as someone spots their flashlights.\",sweeps up a stairwell and moves it open in the dining room.,scoots a few feet away.\n13774,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19021,The full - bodied and now fashion - forward someone emerges from the side door. Someone,The full - bodied and now fashion - forward someone emerges from the side door.,Someone,gold,mounts the passenger seat to someone.,\"watches the husky girlish student back to the dorm, then lowers his binoculars.\",kicks him back against the car's passenger door.,lifts it from her head and glances at it.\n13775,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19019,\"The watchman looks around skeptically, then moves on. Someone\",\"The watchman looks around skeptically, then moves on.\",Someone,gold,grows weary as he kisses the other sailors.,peers through his binoculars.,\", crawling across a desktop, hangs up to a mermaid.\",stand happily in the balance beam.\n13776,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19014,\"On her way up the front steps, she glances back. Someone\",\"On her way up the front steps, she glances back.\",Someone,gold,comes down the stairs and walks at the bar.,gets out of bed.,\"tries to cover the window, then closes the next door.\",\"watches her go, then walks off.\"\n13777,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19016,They watch someone skirt around a building. Someone,They watch someone skirt around a building.,Someone,gold,points as the teen disappears into a side door.,turns on his heels.,plops down on his bed as he reads the address.,\"pulls away, from tux's nostrils.\"\n13778,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19017,Someone points as the teen disappears into a side door. They,Someone points as the teen disappears into a side door.,They,gold,duck down as a night watchman walks past the door.,\"walk away, now as they come into play.\",sit on someone's desk.,haul someone to his feet.\n13779,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-463,19020,Someone peers through his binoculars. The full - bodied and now fashion - forward someone,Someone peers through his binoculars.,The full - bodied and now fashion - forward someone,gold,emerges from the side door.,comes out through the window and through them.,sits in a suit suddenly depositing the small crowd.,looks out to a door and extends his hand.\n13780,anetv_-lV2zo5XsCg,17745,A close up of a horse is seen standing in a fenced in area. A person,A close up of a horse is seen standing in a fenced in area.,A person,gold,is then seen brushing the horse from the side.,follows onto a horse and leads into a man brushing a horse.,is then seen holding a razor pushing the mower along with a large brush.,is seen riding on a horse and looking in the mirror.\n13781,anetv_-lV2zo5XsCg,17746,A person is then seen brushing the horse from the side. The person,A person is then seen brushing the horse from the side.,The person,gold,continues brushing the dogs's fur while looking at the camera.,begins playing the instrument while speaking to the camera.,continues brushing as a close up of the horse is shown.,takes several clips off the dog while still speaking to the camera.\n13782,anetv_jETKNHeojN8,10512,Then the ballet dancer brings one foot into a coupe. Next she,Then the ballet dancer brings one foot into a coupe.,Next she,gold,begins to play the toys with the keys for the background.,straightens both legs and puts one leg in the front and brings it back down.,pulls up a new rope and turns it on.,goes back across the monkey bars.\n13783,anetv_jETKNHeojN8,10513,Next she straightens both legs and puts one leg in the front and brings it back down. She then,Next she straightens both legs and puts one leg in the front and brings it back down.,She then,gold,repeats those 3 steps over again.,drops the weight back on to her hair before she grabs the weight again.,wipes it down and picks up the barbell with her hands and chops.,hops on her feet and begins to take the shoes off.\n13784,anetv_jETKNHeojN8,10510,The woman says a few words in the beginning while the dancer stands silently. First the dancer,The woman says a few words in the beginning while the dancer stands silently.,First the dancer,gold,\"makes a peace sign, then lets go makes it even farther up.\",begins playing with the big set of exercise.,ends the cheer and his date continues.,makes sure her legs are positioned correctly.\n13785,anetv_jETKNHeojN8,10511,First the dancer makes sure her legs are positioned correctly. Then the ballet dancer,First the dancer makes sure her legs are positioned correctly.,Then the ballet dancer,gold,comes on the stairs and beats herself by punching.,drives the treadmill with another on her right hand.,brings one foot into a coupe.,scoots from a chair as the music stops and the dancer walks closer.\n13786,lsmdc3078_THE_WATCH-36352,10015,He runs toward his truck and yells. Someone,He runs toward his truck and yells.,Someone,gold,stands on the rear bumper.,makes his way around the field.,\"walks in, screaming in the engine.\",turns off and crosses the street.\n13787,lsmdc3078_THE_WATCH-36352,10017,They see shadowy movement in glowing red light. Someone startles them from behind and they,They see shadowy movement in glowing red light.,Someone startles them from behind and they,gold,find a massive shrieking beach with flames billowing in mist.,head towards the cupboard.,move away from the scene.,fall into the bushes.\n13788,lsmdc3078_THE_WATCH-36352,10018,\"Someone turns toward the front door and someone nudges someone forward. Elsewhere, at a party, teenage girls\",Someone turns toward the front door and someone nudges someone forward.,\"Elsewhere, at a party, teenage girls\",gold,\"relax in a hot tub, while others hold plastic drink cups around an in ground pool.\",cheers for someone with her father as the other younger girl watches.,stand nearby someone's staff talking.,stand in a saloon with a fake hides grin as someone frowns.\n13789,lsmdc3078_THE_WATCH-36352,10016,Someone stands on the rear bumper. They,Someone stands on the rear bumper.,They,gold,spots a long silver bag.,see shadowy movement in glowing red light.,make a u - turn.,see the wrong sign.\n13790,lsmdc3078_THE_WATCH-36352,10019,\"Elsewhere, at a party, teenage girls relax in a hot tub, while others hold plastic drink cups around an in ground pool. Two couples\",\"Elsewhere, at a party, teenage girls relax in a hot tub, while others hold plastic drink cups around an in ground pool.\",Two couples,gold,lie against each other as someone smiles for them.,drink an ice - filled mug while soda candies places on a dish.,make out in front of some bushes where someone and someone hide.,lie on their knees while the children watch from each other.\n13791,anetv_qZIJRg7hJ0o,15024,The people driving around in the cars while others watch on the sides. Another shot,The people driving around in the cars while others watch on the sides.,Another shot,gold,is shown of people playing bumper cars and crashing into one another.,continues driving up and back out.,shows seen the people speaking again in slow motion as well as stone spinning around one another.,of men do as well as screams as one another.\n13792,anetv_qZIJRg7hJ0o,15023,A small group of people are seen sitting in bumper cars playing a game with one another. The people,A small group of people are seen sitting in bumper cars playing a game with one another.,The people,gold,continue running around the game while smiling to one another.,continue all around the area with one speaking to one another.,continue to ride around one another with one another.,driving around in the cars while others watch on the sides.\n13793,anetv_9Xrw-WOipSI,10684,A woman in a brown dress is holding two sticks. She,A woman in a brown dress is holding two sticks.,She,gold,\"holds her rackets down, preparing to catch it.\",stretch with her hands high above the circle and they both flip over.,starts hitting a ball that was in the ground.,hits balls around goals on fake grass.\n13794,anetv_9Xrw-WOipSI,15918,The woman then begins hitting the balls around an area playing the game of crochet. The woman,The woman then begins hitting the balls around an area playing the game of crochet.,The woman,gold,continues to play tennis and pull the balls out while the camera watches her movements while moving back and fourth.,continues pushing the pucks as the men continue to play and continue playing.,continues hitting the balls and ends by speaking to the camera.,hits the birdie around while shooting up and looking off into the distance.\n13795,anetv_9Xrw-WOipSI,10685,She hits balls around goals on fake grass. Two balls,She hits balls around goals on fake grass.,Two balls,gold,are slammed into her.,pass the ball to each other.,are shown on the fake grass.,\"hit the ground, trying to hit the ball.\"\n13796,anetv_9Xrw-WOipSI,15917,A woman is seen speaking to the camera on a red carpet while holding sticks in her hands. The woman then,A woman is seen speaking to the camera on a red carpet while holding sticks in her hands.,The woman then,gold,continues putting rollers on her face and pauses to speak.,begins walking around and ends with a music up as well as speaking to the camera.,begin using the new individual as well as painting her nails to the side.,begins hitting the balls around an area playing the game of crochet.\n13797,anetv_sW_iLVVMF4w,18857,He picks up the camera and gets a close up of the leaf blower again. He now,He picks up the camera and gets a close up of the leaf blower again.,He now,gold,mows the grass towards a large current path.,continues to mow the yard.,shows how to blow the hedges from under the tree.,blows the leaves off of the roof of his shed.\n13798,anetv_sW_iLVVMF4w,18856,\"He shows a close up of the leaf blower and explains the specifics of it, primes the machine, sets the camera down and starts it. He\",\"He shows a close up of the leaf blower and explains the specifics of it, primes the machine, sets the camera down and starts it.\",He,gold,waits for his reply.,collects the smoke from a glass up and starts to ram it with a paint brush.,resumes throughout the process and adds citrus for it to pass the tobacco in the room on to another location.,picks up the camera and gets a close up of the leaf blower again.\n13799,anetv_eRN5gqZFXHI,5570,The kid grab another bottle and a scuff remover. the kid,The kid grab another bottle and a scuff remover.,the kid,gold,dunks the shirtless boy first.,adds coconut to the mans and then puts on the sneakers.,put a white sneaker on the table and spread the cleaner on the sole and clean it with a cloth.,removes a toothbrush in the back seat with his toothbrush and places the toothpaste on the brush.\n13800,anetv_eRN5gqZFXHI,5571,The kid put a white sneaker on the table and spread the cleaner on the sole and clean it with a cloth. then,The kid put a white sneaker on the table and spread the cleaner on the sole and clean it with a cloth.,then,gold,put paper into the oven and put it onto the dark wood.,shows the hot color brown paper and then rinse the dog with a sponge.,\"come back and cut some baking liquid, rub it over, not tap.\",spread white cream and clean the sneaker.\n13801,anetv_eRN5gqZFXHI,4137,He puts two more bottles on the table and shows off a pair of shoes. He,He puts two more bottles on the table and shows off a pair of shoes.,He,gold,puts cleaner on the shoes and shines them using a rag.,sets the new tray into the washing seat then plants the pot on the table.,is following them as he goes to his desk.,struggles still smoking and playing the saxophone.\n13802,anetv_eRN5gqZFXHI,4136,A young man is shown speaking to the camera and puts a can of cleaner on the table. He,A young man is shown speaking to the camera and puts a can of cleaner on the table.,He,gold,pours out a bottle of cleaner and continues cleaning again it before pouring them into a bucket and presenting the decks.,puts two more bottles on the table and shows off a pair of shoes.,puts sticks in the sink and brushes it away from the camera.,ingredients all while looking on the camera creating.\n13803,anetv_XeC4nqBB5BM,12933,A close up on the inside of a space ship is shown followed by a woman with crazy hair speaking into the microphone. She then,A close up on the inside of a space ship is shown followed by a woman with crazy hair speaking into the microphone.,She then,gold,dances on stage and ends by spinning a tango.,picks up her foot and starts shaving her leg.,plays a song on a flute with shots of another man in a different location playing a flute.,considers the ironing panel while moving her hands all around and moving her side.\n13804,anetv_OJiLPJkzel4,8279,\"After a few more moments of speaking, a shot of a young blond woman is shown in the same navy blue gear with white stripes down her arms. She\",\"After a few more moments of speaking, a shot of a young blond woman is shown in the same navy blue gear with white stripes down her arms.\",She,gold,lays on both of the clear and white sheet screens that say possibly snapped off.,continues in part and jumping up onto her shoulder rocking cheerleading.,\"has a look of concentration on her face as she performs this same sport, followed by raising her arms in triumph.\",is interviewed by the cia supply through awards to the cameras.\n13805,anetv_OJiLPJkzel4,8280,\"She has a look of concentration on her face as she performs this same sport, followed by raising her arms in triumph. The man, likely her teammate\",\"She has a look of concentration on her face as she performs this same sport, followed by raising her arms in triumph.\",\"The man, likely her teammate\",gold,\", finally is standing next to her smiling, standing as fire.\",\", is talking, followed by others walking around a studio counter.\",is against her grass breaks the fingers with her resentful white create.,\"resumes speaking once again, obviously enthusiastic about the game.\"\n13806,anetv_OJiLPJkzel4,8278,\"A couple of shots of this athlete performing his sport on the ice with a teammate is is shown. After a few more moments of speaking, a shot of a young blond woman\",A couple of shots of this athlete performing his sport on the ice with a teammate is is shown.,\"After a few more moments of speaking, a shot of a young blond woman\",gold,is shown in the same navy blue gear with white stripes down her arms.,is shown tossing her trampled cookbook.,on a blue horse runs to celebrate while a girl struggles to win the game.,is shown being interviewed and then caught.\n13807,anetv_XTErpg4IdiE,18347,\"He then moves it to the corer of the carpet and starts working on it. He moves it down more and pushing the carpet down, he\",He then moves it to the corer of the carpet and starts working on it.,\"He moves it down more and pushing the carpet down, he\",gold,cuts down some tiles and presses designs to them to clean.,does this to basically the entire room.,wrestles the stick and continues to put plaster down.,continues around to demonstrate process to different alcohol.\n13808,lsmdc1020_Crazy_Stupid_Love-81099,2102,\"He looks over at someone, who's making a bunch of women laugh. He\",\"He looks over at someone, who's making a bunch of women laugh.\",He,gold,climbs onto the couch and comes to see someone.,pulls a boom out and falls against the train's rushing water.,sucks his drink through a straw.,digs his cell phone from his pocket and gets on a coffee machine.\n13809,lsmdc1020_Crazy_Stupid_Love-81099,2098,Someone sits at the bar. Someone,Someone sits at the bar.,Someone,gold,drums his fingers on the countertop.,\"sits with someone, whose eyes still closed.\",shakes her head on someone's lap.,stands and flips a paper bag near the wall.\n13810,lsmdc1020_Crazy_Stupid_Love-81099,2097,People are leaving the upmarket bar people were in. Someone,People are leaving the upmarket bar people were in.,Someone,gold,opens the wood door and snaps back.,has lost all the cards.,sits at the bar.,sees two boys taking aim.\n13811,lsmdc1020_Crazy_Stupid_Love-81099,2099,She is talking to her friend. Someone,She is talking to her friend.,Someone,gold,stands in the street with a woman.,turns her back down around why she continues.,taps his glass on the bar.,wakes with great excitement.\n13812,lsmdc1020_Crazy_Stupid_Love-81099,2103,He sucks his drink through a straw. A balding man,He sucks his drink through a straw.,A balding man,gold,\"finishes his whiskey, sets up a stool and picks up a bottle of whiskey.\",checks his backpack cards on a desk.,squirts the milk cone to his mouth.,makes his way through an open - plan office.\n13813,lsmdc1020_Crazy_Stupid_Love-81099,2101,Someone laughs at his own joke. He,Someone laughs at his own joke.,He,gold,\"looks over at someone, who's making a bunch of women laugh.\",playfully juiced someone's mouth.,notices a resolute grin on his face.,roars with a kite dangling in the sky.\n13814,anetv_p2P5g7HTJeY,3395,A man knocks over one of his team mates. Two men almost,A man knocks over one of his team mates.,Two men almost,gold,fall into the other.,fall into a pile.,run out of the court.,crash into the camera.\n13815,anetv_p2P5g7HTJeY,3393,People are running around on a field playing a game of lacrosse. A man in white shorts,People are running around on a field playing a game of lacrosse.,A man in white shorts,gold,sits down in front of the camera.,throws a soccer ball.,walks into the water.,serves a ball over a net.\n13816,anetv_p2P5g7HTJeY,3396,Two men almost crash into the camera. A group of players,Two men almost crash into the camera.,A group of players,gold,fight over the ball.,\"still playing hockey, the man is holding a ball.\",continue to play ping pong in the middle of the field.,does hit on on each other.\n13817,anetv_p2P5g7HTJeY,3397,A group of players fight over the ball. A man,A group of players fight over the ball.,A man,gold,hits the ball far across the field.,leaps onto the ball and falls to the ground.,is swimming in the pool between several large houses.,bowls on a court with a ball racket.\n13818,anetv_p2P5g7HTJeY,3392,We see a green title screen. People,We see a green title screen.,People,gold,is standing behind the playing.,are running around on a field playing a game of lacrosse.,are also hot and ground.,poses in fast motion.\n13819,anetv_p2P5g7HTJeY,3394,A man in white shorts sits down in front of the camera. A man,A man in white shorts sits down in front of the camera.,A man,gold,jots backpacks in his canoe.,is shown slowly in the water while moving his bike and twigs.,goes down the snowy hill on the skateboard.,knocks over one of his team mates.\n13820,anetv_15Yf7NIDLtM,3163,A shot of a christmas tree is shown followed by a man walking into frame. The man then,A shot of a christmas tree is shown followed by a man walking into frame.,The man then,gold,begins decorating the tree as well as others.,begins chopping a wood in logs.,walks around and places their hands on the tree.,turns its thumbs up then shows a piece to her.\n13821,anetv_15Yf7NIDLtM,3164,The man then begins decorating the tree as well as others. People continuously,The man then begins decorating the tree as well as others.,People continuously,gold,sit around in the yard and wave to the camera.,watch behind the tree of ornaments that are still on the tree.,walk around afterwards and show off the person shooting toward the camera.,decorate the tree moving quickly around one another and end by presenting it to the camera.\n13822,lsmdc0046_Chasing_Amy-68808,14134,Someone's head snaps forward. He,Someone's head snaps forward.,He,gold,sees his father on his shoulder leaving credits of the video.,\"stares, wide - eyed at silent someone.\",\"moves into the clearing, then stops for a moment.\",sticks his wrist to the giant releases photo.\n13823,anetv_evj6y2xZCnM,7601,Man is doing skateboard and is felling of the board in different places. man,Man is doing skateboard and is felling of the board in different places.,man,gold,is in a locker room full of people.,is skateboarding going down a large stairs and fells.,is paddling fast through a sunny residential track.,are standing in a gallery fixing the boat.\n13824,anetv_evj6y2xZCnM,7602,Man is skateboarding going down a large stairs and fells. man,Man is skateboarding going down a large stairs and fells.,man,gold,is bouncing a pair of stilts on front the line.,is skateboarding down a cement rail in stairs.,is showing a handstand and record being used.,is down in a bridge and is doing tricks on the skis very quickly.\n13825,lsmdc3079_THINK_LIKE_A_MAN-36681,16110,He hits a button on his steering wheel. He,He hits a button on his steering wheel.,He,gold,\"closes his eyes, then gazes at someone.\",struggles to pull them from her grasp.,\"walks around, trying to get in place.\",takes the place in the air.\n13826,lsmdc3085_TRUE_GRIT-40608,8038,Blood speckles cover someone's cheek. He,Blood speckles cover someone's cheek.,He,gold,slides into someone's cheek with a faint smile.,\"gapes, then tears roll down his cheeks.\",looks down at someone with a knife sticking out of his chest.,pats a scar on the scar.\n13827,lsmdc3085_TRUE_GRIT-40608,8037,Someone plunges a knife into someone's chest. Someone,Someone plunges a knife into someone's chest.,Someone,gold,shoots someone in the face.,engulfs him in the wheelchair.,picks the baby up and smiles.,takes the last web from its tail and stabs it in.\n13828,anetv_0-CYG7bH54A,13696,\"An intro leads into several shots of various ingredients laid out on a wooden board, followed by a set of hands cutting up certain ingredients. A person then\",\"An intro leads into several shots of various ingredients laid out on a wooden board, followed by a set of hands cutting up certain ingredients.\",A person then,gold,grades some cheese into a bowl and breaks open the pasta.,cleans plates on the back and begins dipping it into a pan and speaks into the camera.,puts various ingredients on the cookie while pouring it into a bowl full of salt and presents a text.,grabs the places and begins holding it onto bread and smiling.\n13829,anetv_0-CYG7bH54A,13698,They put the pasta into a bowl as well as fry the shrimp and puts all the ingredients into one pan together. The person then,They put the pasta into a bowl as well as fry the shrimp and puts all the ingredients into one pan together.,The person then,gold,stirs a pot on a small plate then lifts the edges to the top.,takes some of the noodles previously and sets it on a frosting counter.,serves the food onto a plate and text appears across the screen.,cuts the omelette with a pan on the bowl and cuts it to a dish before cutting it into a pumpkin.\n13830,anetv_0-CYG7bH54A,13697,A person then grades some cheese into a bowl and breaks open the pasta. They,A person then grades some cheese into a bowl and breaks open the pasta.,They,gold,are seen holding an omelette as well as a steady pick pasta.,pour some syrup onto a pan and dry the ends.,\"add the chocolate mix with the knife, moving them until them are completely spread.\",put the pasta into a bowl as well as fry the shrimp and puts all the ingredients into one pan together.\n13831,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61011,15773,\"Someone's eyes fall to a plain black scabbard, which someone draws from beneath his robes. Someone's long white fingers\",\"Someone's eyes fall to a plain black scabbard, which someone draws from beneath his robes.\",Someone's long white fingers,gold,draw the hilt of a sword from the scabbard to reveal.,graze around his own long board.,are now bound to a line on end of the drop.,grab one of the women's clothes.\n13832,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61011,15774,Someone's long white fingers draw the hilt of a sword from the scabbard to reveal. Someone,Someone's long white fingers draw the hilt of a sword from the scabbard to reveal.,Someone,gold,follows the couple to the station.,places something in a bowl and starts to claw it around.,takes the sword staring at it in wonder.,\"pensively closes her eyes, grimaces, then leaves it to her temple.\"\n13833,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61011,15775,Someone takes the sword staring at it in wonder. Someone,Someone takes the sword staring at it in wonder.,Someone,gold,\"stops and looks towards the ocean, slowly, once again, flaring hand, too.\",draws the long blade from its sheath.,\"looks around someone, lettering letters read adverts names.\",lifts his hand upwards and injects its teeth into it.\n13834,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61011,15776,Someone draws the long blade from its sheath. Someone,Someone draws the long blade from its sheath.,Someone,gold,\", the flesh is beaten and torn.\",crashes over the asphalt and pulls him to its other end.,aims at the sword from hiding and steadies a syringe.,stares hard at someone.\n13835,lsmdc1027_Les_Miserables-6038,8386,\"Someone in a courtyard sees the other uniformed horseman who accompanies someone. Inside, someone\",Someone in a courtyard sees the other uniformed horseman who accompanies someone.,\"Inside, someone\",gold,paces in the office.,\"glances around at the heavyset newlyweds, followed by the approaching players and over their heads.\",sets down a long chain and steps further along the ramp.,sees someone grieving on his hands.\n13836,lsmdc1027_Les_Miserables-6038,8387,\"Inside, someone paces in the office. Someone slowly\",\"Inside, someone paces in the office.\",Someone slowly,gold,makes his way up the stairs.,places a bottle lower on her face.,lifts a large bottle over her head and plants a kiss on her forehead.,opens the barred door.\n13837,anetv__yWADgOFxP0,14539,A camera pans over a snowy area and leads into a man standing on a snowboard and riding down a mountain. The man,A camera pans over a snowy area and leads into a man standing on a snowboard and riding down a mountain.,The man,gold,continues speaking all along the side while the camera watches him and begins rowing himself up while the camera pans from side to side.,is then seen riding along the water track through a house while people watch on the side.,zooms in on himself riding down the hill and ends with him turning off the camera.,continues performing tricks on front the bull.\n13838,lsmdc0041_The_Sixth_Sense-67949,17831,Someone turns and stares quietly at the door. He,Someone turns and stares quietly at the door.,He,gold,waits a long time before reaching for the doorknob.,stretches an arm around his neck.,\"points for control of someone to go, still someone.\",\"opens it quickly and looks past his mother at someone, who sits beside him.\"\n13839,lsmdc1047_Defiance-91779,17218,Someone looks at him in disbelief. Someone,Someone looks at him in disbelief.,Someone,gold,tosses someone a web.,hands someone the microphone.,drops his head in shame.,sidles up behind him.\n13840,lsmdc1047_Defiance-91779,17220,\"Someone turns round to face the community, someone behind him, smirking. Someone\",\"Someone turns round to face the community, someone behind him, smirking.\",Someone,gold,stand in a cluttered van and stand in short lines.,\"spins round and shoots him point - blank, and points his gun at someone's cohort.\",peers out the passenger side window.,climbs into the driver wharf.\n13841,lsmdc1047_Defiance-91779,17219,Someone drops his head in shame. Someone,Someone drops his head in shame.,Someone,gold,grabs the cabinet and gets under the covers.,bursts through the air.,\"turns round to face the community, someone behind him, smirking.\",springs up and touches someone's hand.\n13842,anetv_iXLXRHHFp60,1474,One of the polo players is trotting on the horse across the field. Another game of polo,One of the polo players is trotting on the horse across the field.,Another game of polo,gold,is almost almost off.,appears before they continue playing the game with the red team inside the net.,fly through the sky then running.,takes place where several spectators are watching.\n13843,anetv_iXLXRHHFp60,1475,\"Another game of polo takes place where several spectators are watching. After the event is over, the judge\",Another game of polo takes place where several spectators are watching.,\"After the event is over, the judge\",gold,is posing for the team.,hands awards to the winners.,gets up and goes.,gives a point to the outro.\n13844,anetv_iXLXRHHFp60,1476,\"After the event is over, the judge hands awards to the winners. There\",\"After the event is over, the judge hands awards to the winners.\",There,gold,starts the official who walks out through the high ropers below the banner.,are ecstatic for joy.,are then playing siting on dirt bikes on a runway.,'s a british flag flying high in the field.\n13845,anetv_iXLXRHHFp60,1471,There's a brown horse tied outside a polo club. There,There's a brown horse tied outside a polo club.,There,gold,has a heavy stick stuck far.,is showing how to position a box on a drill until ironing another.,are several jockeys playing polo on the field in an event.,shows a large hedge trimmer which he uses to cut decisions and results.\n13846,anetv_iXLXRHHFp60,1472,There are several jockeys playing polo on the field in an event. There,There are several jockeys playing polo on the field in an event.,There,gold,is in an extremely grand court in the automatic court holding a body.,are sitting around talking of the red team field competition.,are also several spectators standing and watching the event.,are standing through a diving show.\n13847,anetv_iXLXRHHFp60,1473,There are also several spectators standing and watching the event. One of the polo players,There are also several spectators standing and watching the event.,One of the polo players,gold,is shown dressed in a red ring with weapons holstered in their hands.,is trotting on the horse across the field.,has a challenge on his rollerblades.,is moaning the winner.\n13848,anetv_nCzB1iXKYk4,3370,He takes a little pause and then restarts his dance moves as he goes sideways and in front and back motion. He also,He takes a little pause and then restarts his dance moves as he goes sideways and in front and back motion.,He also,gold,goes in a circular motion as he alternates between his feet to tap the floor.,stops the beam and smiles at the end of the dance squares.,makes another move like that spring.,lays back into another chair.\n13849,anetv_nCzB1iXKYk4,3367,\"He continues dancing rhythmically in fast motion, as he alternates his feet to tap the ground. He\",\"He continues dancing rhythmically in fast motion, as he alternates his feet to tap the ground.\",He,gold,goes to the basket and picks up a wooden cup.,watches from the gym watching as his body falls to the floor.,\"dances by tapping his heel first, followed by tapping his toes.\",stops as he goes upstairs.\n13850,anetv_nCzB1iXKYk4,3365,There's a man wearing blue jeans and sneakers tap dancing on a sidewalk. He,There's a man wearing blue jeans and sneakers tap dancing on a sidewalk.,He,gold,raise the horn in a waiting white line.,is walking down his street fingerprints.,begins first by spreading his feet shoulder width apart and then picks up speed to dance fast.,is carrying a large large bowl with words on the stairs.\n13851,anetv_nCzB1iXKYk4,3369,He continues the steps by alternating the speed by moving slow to moving fast. He,He continues the steps by alternating the speed by moving slow to moving fast.,He,gold,is surrounding the rocks by a fast pace and a backwards jump is reversed.,keeps the growing man upright and the fails see band resumes on the bar of the large building.,takes a little pause and then restarts his dance moves as he goes sideways and in front and back motion.,continues using the puzzles bouncing on top of the climber.\n13852,anetv_nCzB1iXKYk4,16323,Another person's feet are shown dancing. Words,Another person's feet are shown dancing.,Words,gold,are shown on the screen.,stand and graphics and grab onto some music.,sits as the female even grips hoop.,are standing in a room with a camera looking hard right to the side.\n13853,anetv_nCzB1iXKYk4,3368,\"He dances by tapping his heel first, followed by tapping his toes. He\",\"He dances by tapping his heel first, followed by tapping his toes.\",He,gold,takes some notebook magazines from his box.,\"beats on the shoes, bottoms urging him and the every step.\",continues the steps by alternating the speed by moving slow to moving fast.,takes the tape with his feet and then drops it.\n13854,anetv_nCzB1iXKYk4,3366,He begins first by spreading his feet shoulder width apart and then picks up speed to dance fast. He,He begins first by spreading his feet shoulder width apart and then picks up speed to dance fast.,He,gold,show with fitness and stopping on the parallel bars and he lifts his weight several times before dropping it in place to knee.,continues to do tricks as they are guided on the other end of the body.,\"continues dancing rhythmically in fast motion, as he alternates his feet to tap the ground.\",finishes and turns around to grab the coin and messes up with the speed and then lifts his foot up to the two.\n13855,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6990,He holds up a sweatshirt. Someone,He holds up a sweatshirt.,Someone,gold,shifts her jaw and gives a nod.,\"stares down at him boys on the couch, then turns away and casually walks out of the room.\",picks it up then takes off his cap and hands it to someone.,ellen drinks from a cup and rolls on to a cluttered table.\n13856,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7003,\"She moves along the dingy windows, continuing to wave as she watches them drive on. Someone\",\"She moves along the dingy windows, continuing to wave as she watches them drive on.\",Someone,gold,picks up the table and surveys it.,places her hand on a ledge above someone's waist as the waist turns someone.,\"spots a council of their team more players and someone, both staring at them.\",keeps his eyes on her until a tree finally blocks his view.\n13857,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7006,She watches the Mees move in. She,She watches the Mees move in.,She,gold,takes off his jacket.,beams at him with a wounded glare.,plays the violin behind her.,trades a look with her bearded colleague.\n13858,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7000,\"The sign reads, Welcome, Brave New Owners. Someone\",\"The sign reads, Welcome, Brave New Owners.\",Someone,gold,leans through an open door only pads to his kid and kisses his wife.,gets up from his motorcycle and calls the agent in on his next land.,\"waves to the blonde girl, who smiles and waves back.\",falls back in shock and slaps someone on the head.\n13859,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7008,Someone leads the kids to a door. He opens it and their beagle,Someone leads the kids to a door.,He opens it and their beagle,gold,carry out of the storage rooms.,darts in past the cluttered counters.,come up from inside.,gaze glows a steeply something across the house.\n13860,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6995,\"As he drives by, someone stares at a bank of windows. We\",\"As he drives by, someone stares at a bank of windows.\",We,gold,\"his car outside, he lays back on his bike.\",glimpse someone sitting alone at a booth inside.,man in a suit lifts him up.,\", the hummer cruises past an otherwise dilapidated mansion.\"\n13861,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6994,\"Patrons eat at sidewalk tables outside the corner cafe. As he drives by, someone\",Patrons eat at sidewalk tables outside the corner cafe.,\"As he drives by, someone\",gold,stares at a bank of windows.,ignores the writing on his desk.,passes somebody over the bar.,joins someone in a mercedes.\n13862,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6996,We glimpse someone sitting alone at a booth inside. Her brown eyes find us and she,We glimpse someone sitting alone at a booth inside.,Her brown eyes find us and she,gold,sits on a couch.,scoots off the couch.,gives a pretty smile.,sees her head sliding away.\n13863,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6992,He holds out a monkey puppet. Someone,He holds out a monkey puppet.,Someone,gold,also adds a haircut.,\"hesitantly, then giving up, faces the crowd.\",shakes from the ring then sinks to his chest.,\"eyes his rear view mirror, then glances back at someone, who wears earbuds.\"\n13864,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6993,The concerned father returns his attention to the road ahead and notices Little Dom's. Patrons,The concerned father returns his attention to the road ahead and notices Little Dom's.,Patrons,gold,\"someone's grim gaze, someone dons his cap and proceeds to his house.\",eat at sidewalk tables outside the corner cafe.,\"out in the shadowy water, he runs across the lawn and leaps on his back.\",looks down.\n13865,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6998,\"The suv now leads the moving truck onto the zoo property. In the back seat, someone\",The suv now leads the moving truck onto the zoo property.,\"In the back seat, someone\",gold,peers up at the wallaces head.,gets through the window to someone.,sighs and shifts his unhappy gaze.,takes out a stop silverware and shakes it.\n13866,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7004,\"Someone keeps his eyes on her until a tree finally blocks his view. Now in a downpour, a burly bearded man in a raincoat\",Someone keeps his eyes on her until a tree finally blocks his view.,\"Now in a downpour, a burly bearded man in a raincoat\",gold,pushes a wheelbarrow full of mulch.,blows the smoke out of his head.,walks her to the front entrance.,stands in the driveway with his face raised.\n13867,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6997,Her brown eyes find us and she gives a pretty smile. The suv now,Her brown eyes find us and she gives a pretty smile.,The suv now,gold,leads the moving truck onto the zoo property.,ruffles its big fins against the sky.,plunge across a desert of six rose high bicycles.,\"switches into a neat facade and lifts its door for someone's chubby boy, who strolls over.\"\n13868,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6999,\"In the back seat, someone sighs and shifts his unhappy gaze. Indoors, a blonde teenage girl\",\"In the back seat, someone sighs and shifts his unhappy gaze.\",\"Indoors, a blonde teenage girl\",gold,\"packs a suitcase, as the photographer gets out of her suv.\",rides on a swing by herself.,\"attaches light - up letters to a metal frame, which she displays in a window.\",places her hand on her desk and has a deep drag on her mouth.\n13869,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7002,Someone stares curiously at the welcoming stranger inside the restaurant. She,Someone stares curiously at the welcoming stranger inside the restaurant.,She,gold,smile at him as they walk in the living room.,angled two of her legs for her cake chair.,finds a microphone down to the gold pair.,\"moves along the dingy windows, continuing to wave as she watches them drive on.\"\n13870,lsmdc3087_WE_BOUGHT_A_ZOO-41045,6991,Someone puts it in a donations box. He,Someone puts it in a donations box.,He,gold,holds out a monkey puppet.,turns off the board and gets out.,opens the drawer and finds someone lying on the table.,sits in the table and checks his room clock.\n13871,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7001,\"From the back seat, someone waves as well. Someone\",\"From the back seat, someone waves as well.\",Someone,gold,puts her hands under a cushion.,watches a bus move then pulls up outside the street.,stares curiously at the welcoming stranger inside the restaurant.,shoos the bags over a moat.\n13872,lsmdc3087_WE_BOUGHT_A_ZOO-41045,7005,\"Now in a downpour, a burly bearded man in a raincoat pushes a wheelbarrow full of mulch. A sultry woman\",\"Now in a downpour, a burly bearded man in a raincoat pushes a wheelbarrow full of mulch.\",A sultry woman,gold,takes a flight photograph of her mother.,sits beside him in font of the boy.,stands in an old barn.,lies down to fit him.\n13873,lsmdc0011_Gandhi-52746,19339,\"A moment as someone considers it, then it is the general who speaks. Someone\",\"A moment as someone considers it, then it is the general who speaks.\",Someone,gold,comes running towards the transport one.,has turned to him.,looks at the orchid.,looks at his stupid goofy guy and waves.\n13874,lsmdc0011_Gandhi-52746,19340,Someone has turned to him. And this,Someone has turned to him.,And this,gold,makes up his mind.,time someone throws someone over a candy bar.,is: he is is talking in his car.,\"is someone, as if in a trance, out of control of someone.\"\n13875,lsmdc0011_Gandhi-52746,19338,\"Someone looks at his adc, then paces a bit, pondering it. A moment as someone considers it, then it\",\"Someone looks at his adc, then paces a bit, pondering it.\",\"A moment as someone considers it, then it\",gold,comes back downstairs in a shady scurrying office.,leaves the room and staircase to an airport.,'s obvious that someone is declared.,is the general who speaks.\n13876,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8321,Someone races down the spiral staircase. Someone,Someone races down the spiral staircase.,Someone,gold,turns and goes through the wobbly compartment.,\"goes farther faster, walking in fast to let someone pass.\",\"is still locked, a key in arm's part.\",is with someone and student someone.\n13877,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8308,\"Outside, the night is almost pitch black. The lights of Hogwarts\",\"Outside, the night is almost pitch black.\",The lights of Hogwarts,gold,are swirling in the sunshine.,house are busy with the building.,glow dimly in the distance.,room are empty.\n13878,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8317,\"She stands with her back to him. Stiffly, she\",She stands with her back to him.,\"Stiffly, she\",gold,rests her toes on her hands.,gazes into her wide eyes.,turns to face him.,turns to face her.\n13879,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8313,\"The People aim their wands in the air and loose off a volley of bolts of light. Like shooting stars, they\",The People aim their wands in the air and loose off a volley of bolts of light.,\"Like shooting stars, they\",gold,explode quickly to the recognizable police.,shoot a bright yellow cab.,rain down on the protective shield.,shoot out a web like a factory.\n13880,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8307,\"Her face is somber and anxious. Outside, the night\",Her face is somber and anxious.,\"Outside, the night\",gold,is almost pitch black.,\"marches back to face someone, in her arms again in a floral dress.\",sky also walks into the hospital.,is rumpled and rumpled.\n13881,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8316,\"Having confronted someone, she recedes, floating away from him. She\",\"Having confronted someone, she recedes, floating away from him.\",She,gold,\"makes her way to a car, smoking.\",\"falls onto the ground, her mouth bloodied.\",floats out into the walkway.,rolls his eyes as he slowly listens.\n13882,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8310,\"Amassed army of People stands on a rocky outcrop, looking down at the school. They\",\"Amassed army of People stands on a rocky outcrop, looking down at the school.\",They,gold,catch him by the camaro.,\"watches from the back of the ship, and hands it to someone.\",are standing by someone.,part as someone followed by someone strides through the army to the edge of the cliff.\n13883,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8312,\"Someone turns to glare at someone, who backs away. The People\",\"Someone turns to glare at someone, who backs away.\",The People,gold,has taken two letters in her hand.,look back into the training game.,aim their wands in the air and loose off a volley of bolts of light.,lean close to us.\n13884,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8311,They part as someone followed by someone strides through the army to the edge of the cliff. Someone,They part as someone followed by someone strides through the army to the edge of the cliff.,Someone,gold,\"staggers sideways, diving in closer, and dives to the center of a huge balcony.\",glares at her as someone's car drives in to land.,\"turns to glare at someone, who backs away.\",gazes longingly after his wife.\n13885,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8320,Someone transforms into a ball of light and speeds away. Someone,Someone transforms into a ball of light and speeds away.,Someone,gold,draws closer to someone.,\"looks up toward the rear open door, as someone lowers his back.\",pulls the driveway in front of him.,races down the spiral staircase.\n13886,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8318,\"She studies his careworn face, then moves closer to him. She\",\"She studies his careworn face, then moves closer to him.\",She,gold,sits up to show her glistening red eyes.,floats away from him.,leans down and kisses his cheek.,takes a handful of caviar.\n13887,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8319,She floats away from him. Someone,She floats away from him.,Someone,gold,lies back with someone.,draws her into a hug.,\"stares at her symbiote form, then turns away.\",transforms into a ball of light and speeds away.\n13888,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99902,8309,The lights of Hogwarts glow dimly in the distance. Amassed army of People,The lights of Hogwarts glow dimly in the distance.,Amassed army of People,gold,\"stands on a rocky outcrop, looking down at the school.\",walk clothes towards a walkway and amongst approaching trees.,are pursued through the forest of extinguishing journalists as they revolve around them.,rises from steps four times.\n13889,anetv_PQkambF3iEk,12721,Two people are seen fixing up a car and changing the tires on a vehicle. Another man,Two people are seen fixing up a car and changing the tires on a vehicle.,Another man,gold,grabs a hammer from a tire and puts that alcohol on it.,is seen speaking to the camera and is demonstrating how to properly iron the floor.,walks into frame as well as several others recording the incident.,rubs shampoo in his hands while riding forward on the shoes looking down the street.\n13890,anetv_PQkambF3iEk,12722,Another man walks into frame as well as several others recording the incident. A person,Another man walks into frame as well as several others recording the incident.,A person,gold,climbs into the car and drives away with everyone watching.,is then seen running the drums all along a block of grass and conversing about the names of the other.,is shown performing various tricks while talking to the camera.,walks around then shows several people watching the film.\n13891,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-136,6656,Someone scowls and mutters damn. They,Someone scowls and mutters damn.,They,gold,rise high into the air.,glance in the city's direction as their companions stare at him back.,are watched by someone aerial.,enter a cozy suite.\n13892,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-136,6657,They enter a cozy suite. A willowy blonde girl,They enter a cozy suite.,A willowy blonde girl,gold,is clumsily on a bed.,plays with someone stretching.,sits on the bed.,makes flannel sheet up wrapped in darkness.\n13893,anetv_tYyTrDyzB6o,3450,A person is seen riding in a tube down a river while the camera zooms in on a persons feet. The people in tubes,A person is seen riding in a tube down a river while the camera zooms in on a persons feet.,The people in tubes,gold,ride down at the end of the tube.,ride past others in the water.,ride down the snowy hill when it pulls back a hill.,are shown under the water as they drive in tubes.\n13894,anetv_tYyTrDyzB6o,3451,The people in tubes ride past others in the water. More people,The people in tubes ride past others in the water.,More people,gold,are seen riding on the tubes and jumping over the river.,continuously rides canoes while kayaks while others watch around the side.,\"ride on the trip, afterwards riding their snowboards down the hill.\",are seen riding down the river in tubes.\n13895,anetv_GEHPJEgMm_I,2792,A young man is shown swinging a tennis racket over and over again while hitting a ball at the same time. He,A young man is shown swinging a tennis racket over and over again while hitting a ball at the same time.,He,gold,continues to perform this swing several times and hits the ball every time.,as he continues to hit and another punching a man's shoulders in the sand as he makes this replay and moves alongside it.,knocks the ball back through the door and prepares it for a few seconds.,is seen serving and throwing the ball as he walks.\n13896,lsmdc1039_The_Queen-87896,4902,A door opens behind someone. A woman,A door opens behind someone.,A woman,gold,sits on the top of the dancefloor.,enters and puts a newspaper onto a bedside table.,walks across a bar.,stands staring at the dark closet.\n13897,lsmdc1039_The_Queen-87896,4901,\"In the gray skies high above him, the royal standard flag is gentled ruffled by the breeze. Someone\",\"In the gray skies high above him, the royal standard flag is gentled ruffled by the breeze.\",Someone,gold,lies in bed in a darkened room.,rocks his body alone on the three rocks below.,pushes him jacket desperately aside.,charges someone in the face and falls hard on her back.\n13898,anetv_NE6SEdnVUh4,893,One of the men hand another a stick made into a flute and he sits done and begins to start playing on it. The man,One of the men hand another a stick made into a flute and he sits done and begins to start playing on it.,The man,gold,starts playing saxophone along with him.,glances at the camera then walks off across the ice to point to her on the stage.,spins with his hand placed over the cups of the man around him.,continues playing while mopping and spray at the man.\n13899,anetv_NE6SEdnVUh4,892,A group of men are sitting outside playing instruments together. One of the men hand another a stick made into a flute and he,A group of men are sitting outside playing instruments together.,One of the men hand another a stick made into a flute and he,gold,sits done and begins to start playing on it.,begins to play with his hoops.,begins playing 4 drums to one another far away with a candle.,pretends to play it in two.\n13900,anetv_NE6SEdnVUh4,894,The man starts playing saxophone along with him. The other men all join in and they all,The man starts playing saxophone along with him.,The other men all join in and they all,gold,bump into each other and smile.,walk round a balcony.,jump off his rope.,\"make music together, having a nice time.\"\n13901,anetv_MKmrqcoCZ-M,15492,A man is sitting on a black mat in a gym. He,A man is sitting on a black mat in a gym.,He,gold,lays back and does crunches on the mat.,is holding a broom and swinging at the swings.,is seen lifting a barbell over his head and dropping it on the ground.,is looking up and down throwing a kick.\n13902,anetv_MKmrqcoCZ-M,15493,He lays back and does crunches on the mat. He,He lays back and does crunches on the mat.,He,gold,watches as they look past each other and move.,sits on the ground by meters above and sticks his tongue.,sits up and continues talking.,rides up as he lays the braided coat to the ground.\n13903,anetv_zBmVL3I3nFU,7636,First she sprays her hair with water from a spray bottle. Then she,First she sprays her hair with water from a spray bottle.,Then she,gold,brushes the hair all over her skin to different anticipation.,turns on the tap to scrub out a toothbrush and in the tub.,adds moisturizer to her hair and ties a ponytail holder onto her hair.,grabs her sweater and pours water in the drain and soapy.\n13904,anetv_zBmVL3I3nFU,7639,\"Then she lightly twists the braiding hair and uses as many bobby pins as she needs. Finally, she puts gel on her edges to lay them down and she\",Then she lightly twists the braiding hair and uses as many bobby pins as she needs.,\"Finally, she puts gel on her edges to lay them down and she\",gold,spins the hair in a face.,punches the camera in place.,puts a bandanna on her edges.,starts shaving her head once again.\n13905,anetv_zBmVL3I3nFU,7635,First the woman shows us how she looks with her afro before she makes a bug bun. First she,First the woman shows us how she looks with her afro before she makes a bug bun.,First she,gold,opens the different contact lenses and brushes the comb at its sides.,is talking and showing why they put ornaments on the christmas tree.,takes the hair out of her hair and puts it in a ponytail.,sprays her hair with water from a spray bottle.\n13906,anetv_zBmVL3I3nFU,7637,Then she adds moisturizer to her hair and ties a ponytail holder onto her hair. Then she twists the ends of her hair to make a small bun and she,Then she adds moisturizer to her hair and ties a ponytail holder onto her hair.,Then she twists the ends of her hair to make a small bun and she,gold,puts the cart in the back.,gives it all to the curls.,is able to move it from her hair on the end.,wraps it to make it secure.\n13907,anetv_zBmVL3I3nFU,7638,Then she twists the ends of her hair to make a small bun and she wraps it to make it secure. Then she,Then she twists the ends of her hair to make a small bun and she wraps it to make it secure.,Then she,gold,\"twist it around, rubs it off her mouth and lays it aside.\",bends forward and folds her legs and uses a different choreography to braid her hair.,shows off her fingers and ends and ruffles her hair.,lightly twists the braiding hair and uses as many bobby pins as she needs.\n13908,anetv_uMw7YplUbAM,18020,A man is seen holding an accordion while speaking to the camera and smiling. He then,A man is seen holding an accordion while speaking to the camera and smiling.,He then,gold,grabs several glasses and gently presses squash.,holds up some pictures and presents it to the camera.,plays the instrument while looking at the camera and ends by speaking more to the camera.,begins playing a violin while moving around the room and smiling to the camera.\n13909,lsmdc1057_Seven_pounds-97804,15778,\"Someone stands in a shop doorway, watching someone play. Someone\",\"Someone stands in a shop doorway, watching someone play.\",Someone,gold,makes his way over with water balls from numerous shirts and shoes.,\"bends over, pushes him back the rake, and leaps in back.\",looks deeply moved and appears to drift off into his own thoughts.,\"watches him over the bar, then looks down eyeing the customer ahead of them.\"\n13910,lsmdc1057_Seven_pounds-97804,15768,\"Their fingers entwined and they caress each other's skin. Lying in bed, beautiful dark - haired someone\",Their fingers entwined and they caress each other's skin.,\"Lying in bed, beautiful dark - haired someone\",gold,pours out of the lingerie.,sleeps peacefully in the bath.,gazes down at a ring from her uncle's wrist.,smiles up at someone beside her.\n13911,lsmdc1057_Seven_pounds-97804,15777,\"People of all different ages mill in the area, going about their business. Someone\",\"People of all different ages mill in the area, going about their business.\",Someone,gold,\"stands in a shop doorway, watching someone play.\",are conspicuously happier at cards.,\"runs, busily reading asking happily.\",abruptly fixes the lens in the jubilant eye.\n13912,lsmdc1057_Seven_pounds-97804,15780,\"A pretty, blonde waitress speaks to him. Someone\",\"A pretty, blonde waitress speaks to him.\",Someone,gold,has trouble sipping a drink of coffee.,passes someone stealing food.,\"stares at someone, then turns and walks away.\",\"sits, watching nearby.\"\n13913,lsmdc1057_Seven_pounds-97804,15784,\"Someone sits motionless in the shadowy room, then goes to pick up his mobile. He\",\"Someone sits motionless in the shadowy room, then goes to pick up his mobile.\",He,gold,\"stands by the terrace, watching the president approach a building.\",\"takes a gate, then starts to wander through the library.\",checks the display and slowly opens up the mobile.,sets up a typewriter and holds up a black plastic bag.\n13914,lsmdc1057_Seven_pounds-97804,15771,The figure of a dream - like someone gradually lies back down. Someone,The figure of a dream - like someone gradually lies back down.,Someone,gold,'s face completely fades to the lids of emerald green.,moves down a shadowy corridor on the boat.,watches helplessly as someone turns and paddles the lifeboat.,is alone in bed.\n13915,lsmdc1057_Seven_pounds-97804,15776,Someone sits playing the piano in the foyer of a modern glass and steel mall. People of all different ages,Someone sits playing the piano in the foyer of a modern glass and steel mall.,People of all different ages,gold,\"mill in the area, going about their business.\",walk up plastic london squares that are stacked atop dramatically balancing boxes.,are in earlier as someone chops a living room chair.,passes the babes wearing front jews and duck.\n13916,lsmdc1057_Seven_pounds-97804,15773,\"Someone blinks, and walks towards her steps. Someone\",\"Someone blinks, and walks towards her steps.\",Someone,gold,meets her earnest gaze as someone looks across the gallery.,falls flat on her face on the path.,stares intensely at someone.,enters and waits for someone to start running.\n13917,lsmdc1057_Seven_pounds-97804,15782,\"He throws money down onto his table. Someone, an attractive man with an aquiline nose and longish brown hair,\",He throws money down onto his table.,\"Someone, an attractive man with an aquiline nose and longish brown hair,\",gold,sits down from his box.,tries to get up by young friend and notices it.,sits on the porch.,\"sips his drink then self - consciously smooths down his hair, unaware of someone standing over him.\"\n13918,lsmdc1057_Seven_pounds-97804,15774,\"Someone uses a long, white stick to feel his way down a wide and long flight of stairs. Out on the street, someone\",\"Someone uses a long, white stick to feel his way down a wide and long flight of stairs.\",\"Out on the street, someone\",gold,feels his way along the pavements with the stick held out in front of him.,notices someone peeking nervously in the window.,\"stops with a faint smile, takes the box away, and clutches it, confused, then heads inside.\",\"has made just about the wounded stepfather, and wonders if that's what someone's saying.\"\n13919,lsmdc1057_Seven_pounds-97804,15766,\"Someone sits in deep, gloomy thought. A nurse\",\"Someone sits in deep, gloomy thought.\",A nurse,gold,brings him a beer.,meets her at the snack buster.,comes to get him.,reads inside an open bedroom door.\n13920,lsmdc1057_Seven_pounds-97804,15779,\"Someone looks deeply moved and appears to drift off into his own thoughts. Someone, who's in his 40s,\",Someone looks deeply moved and appears to drift off into his own thoughts.,\"Someone, who's in his 40s,\",gold,lies in bed as his mother got champagne.,is standing at a computer laptop.,sits wearily on her shoulder and looks out her window.,\"sits at a table nearby, sipping from a mug.\"\n13921,lsmdc1057_Seven_pounds-97804,15772,Someone bounds into someone's garden. Someone,Someone bounds into someone's garden.,Someone,gold,throng in front of them as they turn outside.,rubs his shoulder then pauses.,\"blinks, and walks towards her steps.\",is at the kid's alley now streaming into his car.\n13922,lsmdc1057_Seven_pounds-97804,15764,Someone holds his mobile to his ear. Someone,Someone holds his mobile to his ear.,Someone,gold,steps up and grabs a stuffed elephant.,starts rolling down the flights of the stairs.,\"stands looking distraught, then closes his mobile.\",snatches it from his pocket.\n13923,lsmdc1057_Seven_pounds-97804,15761,\"Someone returns someone's kindly stare with a slight smile. In another hospital room, someone\",Someone returns someone's kindly stare with a slight smile.,\"In another hospital room, someone\",gold,puts a restraining hand on her heart.,lies on the elevators.,makes a call on his mobile.,waits as mother and vet help someone open his leg.\n13924,lsmdc1057_Seven_pounds-97804,15770,He is lying on his stomach and looks woozy. A hand,He is lying on his stomach and looks woozy.,A hand,gold,comes from behind him and gently strokes his cheek.,\"in his face, someone appears pensive him.\",sits in his mouth.,withdraws down the point and bone into his briefcase.\n13925,lsmdc1057_Seven_pounds-97804,15767,\"Someone raises his eyes and stares ahead, his face etched with anguish as he remembers. Their fingers entwined and they\",\"Someone raises his eyes and stares ahead, his face etched with anguish as he remembers.\",Their fingers entwined and they,gold,tumble to his knees.,drift down at privet deck.,remain on his face.,caress each other's skin.\n13926,lsmdc1057_Seven_pounds-97804,15765,\"Someone stands looking distraught, then closes his mobile. Someone\",\"Someone stands looking distraught, then closes his mobile.\",Someone,gold,\"'s mouth hangs open and he, fumbling, starts to get it, revealing his answers.\",sits in a chair.,covers someone's head with his hand and goes to take a seat on the bed.,\"sits in deep, gloomy thought.\"\n13927,lsmdc1057_Seven_pounds-97804,15783,\"Someone, an attractive man with an aquiline nose and longish brown hair, sips his drink then self - consciously smooths down his hair, unaware of someone standing over him. Someone\",\"Someone, an attractive man with an aquiline nose and longish brown hair, sips his drink then self - consciously smooths down his hair, unaware of someone standing over him.\",Someone,gold,continues with all his strength.,street looks up screaming.,is embracing a cat.,looks down at the pie on a plate in front of someone.\n13928,lsmdc1057_Seven_pounds-97804,15763,Someone is drying up in her kitchen. Someone,Someone is drying up in her kitchen.,Someone,gold,are shutting the door.,holds his mobile to his ear.,walks down the street over to her.,moves the mower down some steps near his bike.\n13929,lsmdc1019_Confessions_Of_A_Shopaholic-80766,7207,He slumps on a seat. He,He slumps on a seat.,He,gold,shoots her a look.,pours vodka on the bread with another sauce.,uses a needle on the bar.,\"opens his bedside, still on her lips, eyes wide.\"\n13930,anetv_2UJ4wqJt_Y8,1231,A man roller blades fast. The man,A man roller blades fast.,The man,gold,runs away with the video.,does sit ups while laughing and watching.,steps past swings and falls.,lifts his hands up in the air and starts to stop his roller blades.\n13931,lsmdc0005_Chinatown-48232,8455,Someone is standing at the table as he does so. He,Someone is standing at the table as he does so.,He,gold,\"rises, allows her to sit.\",is looking over his shoulder on his own.,\"storms in past the warehouse tower, where all has a hand - lantern.\",takes off his blindfold and looks up.\n13932,lsmdc0005_Chinatown-48232,8454,\"Someone is seated, flips through the paper until he finds the obituary column, scans it, looks up, abruptly tears the column from the paper and puts it in his pocket. Someone\",\"Someone is seated, flips through the paper until he finds the obituary column, scans it, looks up, abruptly tears the column from the paper and puts it in his pocket.\",Someone,gold,is standing at the table as he does so.,looks at someone 'footprints.,\"is middle - aged, long - legged, osgiliath stick against a wall, there a yellow haze on the front of a tower\",\", scattered photograph shows the envelope, amongst grave snapshots of the mouthpiece, its set.\"\n13933,lsmdc0005_Chinatown-48232,8457,Someone looks down and smoothes her gloves. When she looks back up she,Someone looks down and smoothes her gloves.,When she looks back up she,gold,stares expectantly at someone.,notices something out of someone's brown eyes.,\"sees someone walks off, then rides into her father's room.\",sits back with his gun held down.\n13934,lsmdc0005_Chinatown-48232,8456,Someone is looking at someone 'nose. Someone,Someone is looking at someone 'nose.,Someone,gold,blows open a safe and carries him in.,walks up to her and kiss the end.,looks down and smoothes her gloves.,\"is pitch, very shaken.\"\n13935,lsmdc0005_Chinatown-48232,8458,When she looks back up she stares expectantly at someone. Someone,When she looks back up she stares expectantly at someone.,Someone,gold,pulls out a torn envelope.,\"turns, reading his spectacles.\",steps forward and takes a step back.,faces the window and holds his arms up.\n13936,lsmdc3034_IDES_OF_MARCH-2971,5223,\"Moving from the window, someone slides off his coat and drops it in a chair. He\",\"Moving from the window, someone slides off his coat and drops it in a chair.\",He,gold,sits at the car until he arrives at the same corridor where someone and someone are waiting.,\"dressed in a slinky - gown shirt, the movie shows him posing with broken sunglasses, as he plays.\",rests a hand on the open door as someone enters.,\"cuts a strip neck, and slides it onto his back.\"\n13937,lsmdc3034_IDES_OF_MARCH-2971,5217,\"A tear slides down someone's face and she swallows hard. Turning away, he\",A tear slides down someone's face and she swallows hard.,\"Turning away, he\",gold,rests his hand on hers.,gives a tiny shake of his head.,lowers his face toward hers.,cocks his head and glares ahead.\n13938,lsmdc3034_IDES_OF_MARCH-2971,5220,\"Sitting behind a desk near the front of the room, someone glances up at him. Someone\",\"Sitting behind a desk near the front of the room, someone glances up at him.\",Someone,gold,grabs his cane and follows him back into the house.,stands up on a bench behind him.,has fallen asleep on his back.,shoots her a brief look as he moves past the desks of the busy staffer.\n13939,lsmdc3034_IDES_OF_MARCH-2971,5227,He heads back into his office. Someone,He heads back into his office.,Someone,gold,anxiously gets up from her work and follows him.,\"stands, clutching a piece of paper.\",steps inside and finds four bottles.,sits up in bed.\n13940,lsmdc3034_IDES_OF_MARCH-2971,5221,\"Someone shoots her a brief look as he moves past the desks of the busy staffer. With his lips set in a troubled line, he\",Someone shoots her a brief look as he moves past the desks of the busy staffer.,\"With his lips set in a troubled line, he\",gold,\"enters his office, takes a seat at his desk.\",turns his head toward the glass with a chain around his neck.,turns his gaze from the envelope then looks back at his father.,finds a photo of someone on escape from the house.\n13941,lsmdc3034_IDES_OF_MARCH-2971,5226,He opens the door for someone to exit. He,He opens the door for someone to exit.,He,gold,rolls across the front door and closes the door.,moves over and kicks her back in the bathroom.,looks up from her box and looks at him for a long moment.,heads back into his office.\n13942,lsmdc3034_IDES_OF_MARCH-2971,5231,\"Later, someone removes his wallet from his coat pocket. At a counter, he\",\"Later, someone removes his wallet from his coat pocket.\",\"At a counter, he\",gold,waits as a teller tallies a handful of bills and sets them in front of him.,selects a smart phone.,picks up the glove box and hands it to someone.,\"replaces the syringe, causing it to bend.\"\n13943,lsmdc3034_IDES_OF_MARCH-2971,5228,\"As someone enters the office. On someone 'campaign stationary, it\",As someone enters the office.,\"On someone 'campaign stationary, it\",gold,\"reads, meet me in the stairwell at noon.\",is outside the school's union facade facade.,shows the chinese someone.,shares a small balcony with him in the store.\n13944,lsmdc3034_IDES_OF_MARCH-2971,5232,\"At a counter, he waits as a teller tallies a handful of bills and sets them in front of him. He\",\"At a counter, he waits as a teller tallies a handful of bills and sets them in front of him.\",He,gold,tucks the cash in his wallet.,takes a napkin and scrubs his hands on his ears.,faces the staff sergeant.,\"stops an shuffling through strand of bills and a jar, but someone is certain.\"\n13945,lsmdc3034_IDES_OF_MARCH-2971,5224,He rests a hand on the open door as someone enters. Someone,He rests a hand on the open door as someone enters.,Someone,gold,opens the doors and finds someone at home.,closes the door behind him.,\"holds the gun in her ear, then closes the car door.\",staggers back as she strolls into another room and enters the room.\n13946,lsmdc3034_IDES_OF_MARCH-2971,5233,\"He tucks the cash in his wallet. Now, he\",He tucks the cash in his wallet.,\"Now, he\",gold,takes a call as he exits the bank.,rests a hand cutting the key.,pulls on a mobile and brings it to his driver to join them other people.,pulls the borrowed photo in his lap and removing the ball.\n13947,lsmdc3034_IDES_OF_MARCH-2971,5219,\"Reaching campaign headquarters, he glances at an idealized poster of someone in a window. Sitting behind a desk near the front of the room, someone\",\"Reaching campaign headquarters, he glances at an idealized poster of someone in a window.\",\"Sitting behind a desk near the front of the room, someone\",gold,stands by a car in front of a computer salon.,glances up at him.,pulls out her glock and finds the phone in her purse.,\"studies his somber features, then lowers his weary gaze.\"\n13948,lsmdc3034_IDES_OF_MARCH-2971,5230,\"With a dejected nod, she leaves. Later, someone\",\"With a dejected nod, she leaves.\",\"Later, someone\",gold,uses an engagement announcement.,finds himself washing the groceries in the passenger seat.,enters the red sedan gym.,removes his wallet from his coat pocket.\n13949,lsmdc3034_IDES_OF_MARCH-2971,5218,\"Turning away, he gives a tiny shake of his head. Someone\",\"Turning away, he gives a tiny shake of his head.\",Someone,gold,passes no sign of carts filled with people and contempt.,strides down a sidewalk.,pulls her coat aside.,stands to a nearby desk.\n13950,lsmdc3034_IDES_OF_MARCH-2971,5225,Someone closes the door behind him. He,Someone closes the door behind him.,He,gold,blows smoke out of his mouth.,opens the door for someone to exit.,\"takes a swig from his beer bottle, while he opens the bottle and exhales.\",takes someone's dark form.\n13951,lsmdc3034_IDES_OF_MARCH-2971,5222,His gaze sweeps from some people examining writing on a whiteboard to the desks of other campaigners making phone calls and typing on laptops. He,His gaze sweeps from some people examining writing on a whiteboard to the desks of other campaigners making phone calls and typing on laptops.,He,gold,views several worried elven boats.,\"approaches the salesman, then he turns and hurries over.\",takes a deep breath.,stares at the back of someone's head as she works.\n13952,lsmdc1008_Spider-Man2-75913,1743,\"He looks down, intensely. He\",\"He looks down, intensely.\",He,gold,\"stares sadly at her hands, almost in prayer.\",ambles across the baby loft as the boy rocks in a daytime lane.,drives down an alley and kicks his opponent in the head.,bends under its weight.\n13953,lsmdc1008_Spider-Man2-75913,1765,\"Someone sits alone in the apartment, fondling the blade of the dagger with which he'd intended to kill someone. Hearing a noise, someone\",\"Someone sits alone in the apartment, fondling the blade of the dagger with which he'd intended to kill someone.\",\"Hearing a noise, someone\",gold,\"gets to his feet, the dagger in his right hand.\",brings someone a straight drink and blows his nose.,puts his hands into his trouser pockets.,leaps across the street and kicks them off as his body slams across a narrow tunnel.\n13954,lsmdc1008_Spider-Man2-75913,1761,A distant figure squats there in true someone pose. Someone,A distant figure squats there in true someone pose.,Someone,gold,approaches the gigantic army of soldiers.,falls down on someone.,leaps off the spear.,slips on the mask.\n13955,lsmdc1008_Spider-Man2-75913,1734,\"Their pincers closed, the tips of the limbs look like serpents' heads. He\",\"Their pincers closed, the tips of the limbs look like serpents' heads.\",He,gold,\"hangs, like jesus, as matadors tried to gain their order.\",\"blinks, then raises an eyebrow.\",stares to the stairs.,\"races from a ladder, which left throughout the dark.\"\n13956,lsmdc1008_Spider-Man2-75913,1738,\"Someone, still without the mask, spins round to see the incredulous look on someone's face as she recognizes him. Her face\",\"Someone, still without the mask, spins round to see the incredulous look on someone's face as she recognizes him.\",Her face,gold,breaks into a smile.,is covered in a bandage.,is turned away from him.,\"solemn, someone rushes out onto the room.\"\n13957,lsmdc1008_Spider-Man2-75913,1711,\"In the reconstructed lab, down by the pier, someone stands in the fusion chamber, studying the tritium. Someone, in chains,\",\"In the reconstructed lab, down by the pier, someone stands in the fusion chamber, studying the tritium.\",\"Someone, in chains,\",gold,stands outside his open open side.,struggles to twirl around the station.,is knocked from the desk.,is tied to a pillar.\n13958,lsmdc1008_Spider-Man2-75913,1736,\"Someone turns, his face grim and somber. The two men\",\"Someone turns, his face grim and somber.\",The two men,gold,trudge back back and forth grimly.,swivel their heads for observing the people screwing their bodies in front of door.,\"begin mid - boiler clearing and spin around, bumping into each other.\",stare long and hard at each other.\n13959,lsmdc1008_Spider-Man2-75913,1729,\"Someone struggles to pull out more cables. He succeeds, and both men\",Someone struggles to pull out more cables.,\"He succeeds, and both men\",gold,shake hands as they begin to struggle.,fall down to the deck.,\"clap for his troops and look on again more than someone, kicking one!\",are hurled through the air.\n13960,lsmdc1008_Spider-Man2-75913,1721,Someone is back on the rampage. He,Someone is back on the rampage.,He,gold,lifts the lid several inches.,tosses someone against a metal beam.,is standing on a basketball court outside the playing field.,has opened the big screen door.\n13961,lsmdc1008_Spider-Man2-75913,1769,He turns to the full - length mirror. He,He turns to the full - length mirror.,He,gold,raises his gun and shoots directly at the boy's nose.,\"frantically feels her chest, then stands.\",stares at his late father.,presses the waterfall into a puddle's necklace.\n13962,lsmdc1008_Spider-Man2-75913,1719,Someone is pulled towards the sphere. Someone,Someone is pulled towards the sphere.,Someone,gold,attaches a web to the rope and struggles to pull someone back from the glowing tritium.,flips the surviving carriage and hundreds of passengers surround someone.,\"nods and smiles, then turns away.\",jumps up to his wall and flips him down.\n13963,lsmdc1008_Spider-Man2-75913,1768,Someone looks anxiously around and stares up at the balcony surrounding the room. He,Someone looks anxiously around and stares up at the balcony surrounding the room.,He,gold,lies face down in his chair just in front of the great curtain.,turns to the full - length mirror.,peers at its striking model vessel statue on the ceiling.,is throwing themselves in stony walls.\n13964,lsmdc1008_Spider-Man2-75913,1766,\"Hearing a noise, someone gets to his feet, the dagger in his right hand. He\",\"Hearing a noise, someone gets to his feet, the dagger in his right hand.\",He,gold,\"grabs someone's mace, and tugs it.\",picks up the ax and plods off with the club.,hands the lady a piece of cloth.,takes a few paces forward and listens.\n13965,lsmdc1008_Spider-Man2-75913,1718,\"She hangs on the air, the chains on her leg drawn to the sphere. Someone\",\"She hangs on the air, the chains on her leg drawn to the sphere.\",Someone,gold,is pulled towards the sphere.,touches it's arm.,sits towards the webbed woman.,points his cell with a smile.\n13966,lsmdc1008_Spider-Man2-75913,1722,\"He tosses someone against a metal beam. He crashes to the floor, and someone\",He tosses someone against a metal beam.,\"He crashes to the floor, and someone\",gold,watches as rubble falls on top of him.,falls on his side on the stairs.,sends his gun between the two gunmen.,swings an ax handle over his shoulder.\n13967,lsmdc1008_Spider-Man2-75913,1732,\"More and more pieces of the structure of the lab are being sucked into the glowing sphere. Beyond the lab and on the streets of New York, lamp posts, taxis and cars\",More and more pieces of the structure of the lab are being sucked into the glowing sphere.,\"Beyond the lab and on the streets of New York, lamp posts, taxis and cars\",gold,of someone cross outdoors as someone steps through his waters.,are filled with trophies and a huge fleeing camera.,light their eye on a blazing map.,are all drawn towards the building and the tritium.\n13968,lsmdc1008_Spider-Man2-75913,1745,\"Someone, meanwhile, is under the fusion chamber, looking up at the sphere. He\",\"Someone, meanwhile, is under the fusion chamber, looking up at the sphere.\",He,gold,uses the limbs to remove the support girders.,\"hurtles towards the huge rocks, but dismounts.\",looks hard at her.,peeks around the photo and crosses to the heart of the ocean.\n13969,lsmdc1008_Spider-Man2-75913,1716,\"Someone shoots a web onto the building, and swings back in through a huge oil window, landing on someone. They\",\"Someone shoots a web onto the building, and swings back in through a huge oil window, landing on someone.\",They,gold,crash through the floorboards into the water below and trade blows.,\"look with no other at his abandon, and the time comes over.\",drive in the interior of the truck.,capes and binding them to their ankles.\n13970,lsmdc1008_Spider-Man2-75913,1751,\"Holding someone in his arms, he leaps up and uses a web to carry them away from the sinking laboratory. Underwater, the body of someone, the four limbs still attached to him,\",\"Holding someone in his arms, he leaps up and uses a web to carry them away from the sinking laboratory.\",\"Underwater, the body of someone, the four limbs still attached to him,\",gold,runs onto a track slab.,\"floats from the sides, suspended in energy.\",tips over a three - piece of life.,\"floats downwards, as does the sphere.\"\n13971,lsmdc1008_Spider-Man2-75913,1742,Someone is lying on the floor with him standing above her. He,Someone is lying on the floor with him standing above her.,He,gold,is chained to a web.,\"looks down, intensely.\",is lying unconscious on the floor.,looks from her toward the camera.\n13972,lsmdc1008_Spider-Man2-75913,1767,He takes a few paces forward and listens. Someone,He takes a few paces forward and listens.,Someone,gold,\"continues talking, demonstrating how to triple the piano while eating and two of them observing.\",looks anxiously around and stares up at the balcony surrounding the room.,stares at a small metal casually.,is waiting for a day or two.\n13973,lsmdc1008_Spider-Man2-75913,1725,\"Someone picks up a piece of timber, sneaks up on someone and is about to hit him when she is punched away. One pincer\",\"Someone picks up a piece of timber, sneaks up on someone and is about to hit him when she is punched away.\",One pincer,gold,\"pierces the sword of someone's necklace, then tries and in the bolt.\",tumbles up onto the jetty.,flicks out a blade.,catches the gun on the back of someone's back.\n13974,lsmdc1008_Spider-Man2-75913,1715,\"But they catch him and fling him up through the ceiling, and out into the night sky. Someone\",\"But they catch him and fling him up through the ceiling, and out into the night sky.\",Someone,gold,\"shoots a web onto the building, and swings back in through a huge oil window, landing on someone.\",stops and realizes the woman is lying in the early morning with men on the blanket.,steps outside of the building's closed archway.,looks up and sees his front door.\n13975,lsmdc1008_Spider-Man2-75913,1727,\"Two webs lift a power cable as a shield. The points of the pincer pierces the cable, and an enormous surge of electricity\",Two webs lift a power cable as a shield.,\"The points of the pincer pierces the cable, and an enormous surge of electricity\",gold,pulses into the sphere beneath them.,\"hits a hydra man amid the ice, forcing someone to the ground.\",rises to the ground at their feet as it shockwave across the skylight.,shoots up the limb to someone.\n13976,lsmdc1008_Spider-Man2-75913,1763,\"He looks at the city, then round to someone, before leaping into the night sky carried by a web. Tears\",\"He looks at the city, then round to someone, before leaping into the night sky carried by a web.\",Tears,gold,are drawn up after him.,\"falls away from someone's face, which starts wrapped through a chain shingle, and falls over to a branch.\",\"appear, obviously, someone has pursued instructions how things that would seem like.\",trickle down someone's face as she rests her head on someone's shoulder.\n13977,lsmdc1008_Spider-Man2-75913,1723,\"He crashes to the floor, and someone watches as rubble falls on top of him. Someone strides over, and one of the limbs\",\"He crashes to the floor, and someone watches as rubble falls on top of him.\",\"Someone strides over, and one of the limbs\",gold,lifts spider - man and suspends him in mid - air.,\"fights them to the side of someone's head, knocking him to the ground.\",smashes the crumbling flamingos on the ground.,lowers him onto a stretcher.\n13978,lsmdc1008_Spider-Man2-75913,1713,\"In the fusion chamber, beams of light appear. The tritium\",\"In the fusion chamber, beams of light appear.\",The tritium,gold,sweeps up her dark figure.,is suddenly filled with blue and white pearl.,\"can gas, set out.\",\"glows brightly, illuminating the way for spider - man to creep across a beam.\"\n13979,lsmdc1008_Spider-Man2-75913,1756,\"As she glides elegantly down from on high, the convoy of cars draws closer to her, their lights flashing. The passenger door\",\"As she glides elegantly down from on high, the convoy of cars draws closer to her, their lights flashing.\",The passenger door,gold,does the woman who delivers all her money in the cash.,\"opens and out steps someone, who looks up at the descending someone.\",opens and we view the sunny sky facing the city skyline.,opens as an armored truck pulls up.\n13980,lsmdc1008_Spider-Man2-75913,1762,Someone slips on the mask. He,Someone slips on the mask.,He,gold,gives a wink and the young man watches as someone claps.,\"looks at the city, then round to someone, before leaping into the night sky carried by a web.\",holds someone in a helpless stare.,leaps for a second into the open pit.\n13981,lsmdc1008_Spider-Man2-75913,1748,He reaches down to someone. He,He reaches down to someone.,He,gold,\"keeps reading, sizing her up.\",grabs a knife from the arm of his ax.,removes a wooden beam trapping her.,picks up his books.\n13982,lsmdc1008_Spider-Man2-75913,1717,The tritium sphere begins to attract metals to it. She,The tritium sphere begins to attract metals to it.,She,gold,takes his shot and turns it back so he can again get his head on it.,cuts the wall of the ring abutting the stadium courtyard.,\"hangs on the air, the chains on her leg drawn to the sphere.\",\"ran the knife down first, spots the match, and hurls it onto the table, pinching it down.\"\n13983,lsmdc1008_Spider-Man2-75913,1757,\"The passenger door opens and out steps someone, who looks up at the descending someone. She\",\"The passenger door opens and out steps someone, who looks up at the descending someone.\",She,gold,\"glances at one of the girls, who hurries her over.\",picks up the carton.,taps the back of the box.,turns on hearing him approach.\n13984,lsmdc1008_Spider-Man2-75913,1728,\"The points of the pincer pierces the cable, and an enormous surge of electricity shoots up the limb to someone. Someone\",\"The points of the pincer pierces the cable, and an enormous surge of electricity shoots up the limb to someone.\",Someone,gold,swats the goblin from the locket and tosses it onto the office floor.,converge like a tree.,struggles to pull out more cables.,holds out the wand.\n13985,lsmdc1008_Spider-Man2-75913,1741,\"As the whole side of the building crashes down towards her in one, he sprints to hold it up. Someone\",\"As the whole side of the building crashes down towards her in one, he sprints to hold it up.\",Someone,gold,pulls it from her throat.,is lying on the floor with him standing above her.,looks at each other then places her foot on the railing and indicates the safe rooftop.,holds a sign out with it.\n13986,lsmdc1008_Spider-Man2-75913,1735,\"When they are almost upon it, the limbs stop. Someone\",\"When they are almost upon it, the limbs stop.\",Someone,gold,faces the name of someone.,\"turns, his face grim and somber.\",reaches forward and kisses him on his cheek.,pulls the wand from someone's mouth and carries him to his bunk.\n13987,lsmdc1008_Spider-Man2-75913,1753,\"He lies beside her way above the river, the lights of the city twinkling far below them. She\",\"He lies beside her way above the river, the lights of the city twinkling far below them.\",She,gold,spots a man on horseback behind.,passes the door with gentle teary eyes.,\"leans against the bed, looking at himself in front of the mirror.\",looks earnestly at him.\n13988,lsmdc1008_Spider-Man2-75913,1754,\"She screws up her face and fights back tears. Up on the web attached to the crane, someone\",She screws up her face and fights back tears.,\"Up on the web attached to the crane, someone\",gold,rises and hobbles around the stones.,turns to face someone once more.,\"is looking on the rifle, smiling at the receiver.\",takes her phone from her hand and the pins loose.\n13989,lsmdc1008_Spider-Man2-75913,1749,He removes a wooden beam trapping her. They,He removes a wooden beam trapping her.,They,gold,steam juices in his forest.,are chatting excitedly.,turn to see a revolving mass of metal speed towards them.,hurry over and puppets the chicken.\n13990,lsmdc1008_Spider-Man2-75913,1744,\"He bends under its weight. Someone, meanwhile,\",He bends under its weight.,\"Someone, meanwhile,\",gold,comes up to his father and pulls his keys on the pot.,\"is under the fusion chamber, looking up at the sphere.\",dials and checks his mobile.,\"runs up a second, picks up his backpack!\"\n13991,lsmdc1008_Spider-Man2-75913,1747,Someone exerts all his strength and throws the side wall after it. He,Someone exerts all his strength and throws the side wall after it.,He,gold,peels someone and stabs him.,reaches down to someone.,\"watches as someone winds the rope, but sits back on the ground.\",quickly throws down at the bow.\n13992,lsmdc1008_Spider-Man2-75913,1755,\"Later, he eases her down towards the ground with an ever - lengthening string of web emanating from his wrist. As she glides elegantly down from on high, the convoy of cars\",\"Later, he eases her down towards the ground with an ever - lengthening string of web emanating from his wrist.\",\"As she glides elegantly down from on high, the convoy of cars\",gold,\"draws closer to her, their lights flashing.\",hammers a metal toward the left.,\"moves in the graphics, rumbling, robotic - switches.\",\"passes behind the elderly man, swinging at someone, then someone, glancing over.\"\n13993,lsmdc1008_Spider-Man2-75913,1746,He uses the limbs to remove the support girders. Someone,He uses the limbs to remove the support girders.,Someone,gold,heaves him from the control tank.,struggles to hold up the side wall.,\"paces to us, gun in hand.\",slows to another stop.\n13994,lsmdc1008_Spider-Man2-75913,1724,\"Someone strides over, and one of the limbs lifts Spider - Man and suspends him in mid - air. Someone\",\"Someone strides over, and one of the limbs lifts Spider - Man and suspends him in mid - air.\",Someone,gold,pages of the devil's snapshots swirl out.,stretches her arms around someone and locates her spinning tilts on her head.,\"picks up a piece of timber, sneaks up on someone and is about to hit him when she is punched away.\",unleashes more is and runs off him.\n13995,lsmdc1008_Spider-Man2-75913,1759,\"Meeting in the middle, they hug tightly. As someone nuzzles her neck, someone\",\"Meeting in the middle, they hug tightly.\",\"As someone nuzzles her neck, someone\",gold,looks across and up to the crane.,rubs her cheek with her heart.,digs up her lower lip.,kisses her hand then kisses it.\n13996,lsmdc1008_Spider-Man2-75913,1740,\"Someone watches her fondly, then spots beams and a girder toppling. As the whole side of the building crashes down towards her in one, he\",\"Someone watches her fondly, then spots beams and a girder toppling.\",\"As the whole side of the building crashes down towards her in one, he\",gold,flips off down around the roof.,pulls away towards the trees.,sprints to hold it up.,hauls someone away from his skin.\n13997,lsmdc1008_Spider-Man2-75913,1720,Someone attaches a web to the rope and struggles to pull someone back from the glowing tritium. The chains on her legs break free and she,Someone attaches a web to the rope and struggles to pull someone back from the glowing tritium.,The chains on her legs break free and she,gold,gets out of someone's stomach.,catapults back to someone.,halts two steps astride in the chamber.,transforms back against wheeled her ankle.\n13998,lsmdc1008_Spider-Man2-75913,1731,\"Someone sees the severed cables, but the sphere keeps drawing metal objects to it. He\",\"Someone sees the severed cables, but the sphere keeps drawing metal objects to it.\",He,gold,\"stands before it, hands apart.\",\"remains still, concentrating and glinting.\",takes the gun out of a computer.,drops from a shaft of his spear.\n13999,lsmdc3083_TITANIC2-39169,17898,\"Someone takes someone's other arm. Someone, someone, and someone\",Someone takes someone's other arm.,\"Someone, someone, and someone\",gold,\"watch through a tree in front of the fire, watching someone through the growing plains.\",share a lingering kiss.,walk to the front of the center.,step into the large dining room.\n14000,lsmdc3083_TITANIC2-39169,17899,Someone and someone stroll through the dining room. They,Someone and someone stroll through the dining room.,They,gold,put decorations onto the christmas tree.,stop at their table.,marches them down the aisle for a few steps then stops.,boyfriend sneaks past him and shuts the door.\n14001,lsmdc0021_Rear_Window-58483,15620,She turns back to him with a blank stare. Someone,She turns back to him with a blank stare.,Someone,gold,\"turns and looks at her, quite unaware of her surprise at his comment.\",seems frozen to death.,is rolling her eyes.,tries to compose himself.\n14002,lsmdc0021_Rear_Window-58483,15624,\"He is beginning his song again, and it has taken on new fullness and melody. At that moment the songwriter\",\"He is beginning his song again, and it has taken on new fullness and melody.\",At that moment the songwriter,gold,hears the sound of a flood from voice and a louder one.,'s danger is called.,returns to his composing.,has turned to someone.\n14003,lsmdc0021_Rear_Window-58483,15626,\"Although it is not complete, it is farther along then before, and he plays his theme a number of different ways, trying to move it note by note to its completion. Someone\",\"Although it is not complete, it is farther along then before, and he plays his theme a number of different ways, trying to move it note by note to its completion.\",Someone,gold,looks up at the newlyweds as someone hurries restaurant toward the railing.,points up the music to see him.,\"is already going to hit, trying to take his place.\",just stares at someone for a moment.\n14004,lsmdc0021_Rear_Window-58483,15613,Someone moves his eyes slightly to something outside the window. She,Someone moves his eyes slightly to something outside the window.,She,gold,\"is reading a book held in one hand, while eating a sandwich in another.\",turns to the right and looks down at the room.,nods and fixes a look at the cat's tail.,\"dreams of someone, who has pointy sideburns raises their sails slowly.\"\n14005,lsmdc0021_Rear_Window-58483,15616,\"The only light in the apartment is from a reading lamp. Her back is bare, and all she wears\",The only light in the apartment is from a reading lamp.,\"Her back is bare, and all she wears\",gold,is the anchor style someone.,is a mop someone begins wiping her shoe later.,\"is her dark boyfriend, and hulking specs and iron clothes.\",is a pair of brief dark blue shorts.\n14006,lsmdc0021_Rear_Window-58483,15627,Someone just stares at someone for a moment. We,Someone just stares at someone for a moment.,We,gold,can see him over someone's shoulder.,don't look around who he is.,can't see a smiling man going to the table.,hit him as they hug.\n14007,lsmdc0021_Rear_Window-58483,15634,He goes through the living room into the bedroom. Someone,He goes through the living room into the bedroom.,Someone,gold,\"reaches quickly for his binoculars, and trains them on the salesman's apartment.\",enters and paces as someone observes someone on the face as he moves to the stairs.,\"leans over someone, asleep in bed.\",\"hangs up from his seat, shakes it, moved cautiously, then unlocks the door to the garage.\"\n14008,lsmdc0021_Rear_Window-58483,15630,Over this we hear someone's voice. Someone,Over this we hear someone's voice.,Someone,gold,\"walks off to see the boys, against the shelves of a mansion.\",looks around at his braces and considers.,places a faded copy of his chute back beside the shelf and lifts it up.,puts out a restraining hand.\n14009,lsmdc0021_Rear_Window-58483,15635,\"Someone, still stretched out on the divan looking at someone, suddenly sits upright and then getting up from the divan, mover over to someone, the camera going with her. In a sudden surprise move, she\",\"Someone, still stretched out on the divan looking at someone, suddenly sits upright and then getting up from the divan, mover over to someone, the camera going with her.\",\"In a sudden surprise move, she\",gold,swings his chair completely around so that his back is to the window.,\"shakes her head, puts her rest in embarrassment, rolls her eyes.\",\"attempts over to a parked car which is really deep, and is that like someone is reading goodbye.\",turns and regards her friend nothing.\n14010,lsmdc0021_Rear_Window-58483,15609,\"Someone stands, straightens out her dress, stretches a little then she turns to the divan, apparently not too interested in his observation about the salesman's life. However, her expression\",\"Someone stands, straightens out her dress, stretches a little then she turns to the divan, apparently not too interested in his observation about the salesman's life.\",\"However, her expression\",gold,goes blank as someone comes out to and impulse a smile at someone's face.,seems to be slightly dazzling as she turns back.,is disturbed as she watches someone.,\"is gone now, as if she speaks its our truth.\"\n14011,lsmdc0021_Rear_Window-58483,15631,Someone puts out a restraining hand. At last the salesman,Someone puts out a restraining hand.,At last the salesman,gold,arrives over from the safe.,places the board on fire.,is seen coming along the corridor.,gets in the suv.\n14012,lsmdc0021_Rear_Window-58483,15636,\"In a sudden surprise move, she swings his chair completely around so that his back is to the window. He\",\"In a sudden surprise move, she swings his chair completely around so that his back is to the window.\",He,gold,\"pulls the lamp outside, and throws it.\",tosses the switch to a blonde - eyed man.,drops the binoculars into his lap in surprise.,pulls himself out of her chair and deposits her into a car chair.\n14013,lsmdc0021_Rear_Window-58483,15615,\"Someone is lying, face down, on her divan bed. The only light in the apartment\",\"Someone is lying, face down, on her divan bed.\",The only light in the apartment,gold,has the taken strains.,are also slowly off.,is from a reading lamp.,explodes as a wall of lights.\n14014,lsmdc0021_Rear_Window-58483,15612,Someone stretches herself out on the divan. Someone,Someone stretches herself out on the divan.,Someone,gold,nudges someone leaping in the air.,\"sits beside her, staring at her face, body in a daybed.\",moves his eyes slightly to something outside the window.,points away her eyes for a moment and then leads the way back to his car seat.\n14015,lsmdc0021_Rear_Window-58483,15633,\"Slung over one shoulder, with his arm through is, is a large coil of sturdy rope. He\",\"Slung over one shoulder, with his arm through is, is a large coil of sturdy rope.\",He,gold,leads him towards the gryffindor booth.,goes through the living room into the bedroom.,sits up again and picks up the note.,pats someone's shoulder and glances down the hall at someone as he steps further into the aisle.\n14016,lsmdc0021_Rear_Window-58483,15610,\"We are now able to see that someone's apartment is in darkness, only faintly lit from the distant light of the neighbors' window. Someone is thoughtful for a moment, then he\",\"We are now able to see that someone's apartment is in darkness, only faintly lit from the distant light of the neighbors' window.\",\"Someone is thoughtful for a moment, then he\",gold,relaxes and smiles a little.,goes back to the porch.,stops and stares off into the distance.,\"sees it, leans out, and rain down off the porch.\"\n14017,lsmdc0021_Rear_Window-58483,15621,\"Someone turns and looks at her, quite unaware of her surprise at his comment. He\",\"Someone turns and looks at her, quite unaware of her surprise at his comment.\",He,gold,sits on the edge of the chair and stares at her.,walks on and turns around to face her direction.,does not seem to have an idea what he was saying.,\"looks away from someone, thoughtfully.\"\n14018,lsmdc0021_Rear_Window-58483,15617,\"Her back is bare, and all she wears is a pair of brief dark blue shorts. At one point, she\",\"Her back is bare, and all she wears is a pair of brief dark blue shorts.\",\"At one point, she\",gold,spins to the open circle where she started between her hands and other woman's outstretched weapon behind her.,talks with ceremony and claps.,lifts her torso up slightly to brush crumbs out from beneath her.,is wearing her bra and panties.\n14019,lsmdc0021_Rear_Window-58483,15623,Someone sits bolt upright on the divan. She,Someone sits bolt upright on the divan.,She,gold,reaches back quickly and pulls on the overhead light.,stands there with her eyes closed.,removes the glass rim.,stares somberly through the corner of her eyes.\n14020,lsmdc0021_Rear_Window-58483,15625,\"At that moment the songwriter returns to his composing. Although it is not complete, it is farther along then before, and he\",At that moment the songwriter returns to his composing.,\"Although it is not complete, it is farther along then before, and he\",gold,begins to take his phone in.,\"plays his theme a number of different ways, trying to move it note by note to its completion.\",\"looks back to seeing the figure of someone in a maintenance grappling journal, as far off we see.\",has found someone's line of the length of the bed of the salesman's cell.\n14021,lsmdc0021_Rear_Window-58483,15628,We can see him over someone's shoulder. Someone,We can see him over someone's shoulder.,Someone,gold,can be seen holding over to parents.,pulls a shot stick from his pocket.,is stuffing a screw in her skirt.,is staring out of the window again.\n14022,lsmdc0021_Rear_Window-58483,15629,Someone is staring out of the window again. Over this we,Someone is staring out of the window again.,Over this we,gold,see it's someone's place.,can see: we then can see an alleyway behind a fence.,see someone carried run through the door.,hear someone's voice.\n14023,lsmdc0021_Rear_Window-58483,15618,\"At one point, she lifts her torso up slightly to brush crumbs out from beneath her. Someone\",\"At one point, she lifts her torso up slightly to brush crumbs out from beneath her.\",Someone,gold,is then applied with her fingertips until it partially gone.,leans forward and looks out the window to see what someone is referring to.,taps a hook.,places the needle on her leg.\n14024,lsmdc0021_Rear_Window-58483,15619,Someone leans forward and looks out the window to see what someone is referring to. She,Someone leans forward and looks out the window to see what someone is referring to.,She,gold,reaches to her lips.,\"follows someone in to kiss the narrator, but stops in someone's path.\",turns back to him with a blank stare.,produces a military record.\n14025,lsmdc0021_Rear_Window-58483,15632,\"At last the salesman is seen coming along the corridor. Slung over one shoulder, with his arm through is,\",At last the salesman is seen coming along the corridor.,\"Slung over one shoulder, with his arm through is,\",gold,is a large coil of sturdy rope.,goes behind the desk and opens a laptop.,sees the main doors.,helmeted young guy sits in a great chair.\n14026,lsmdc0021_Rear_Window-58483,15622,\"He looks away from someone, thoughtfully. Someone\",\"He looks away from someone, thoughtfully.\",Someone,gold,shrugs his palms and winds along with his fist.,\"glances away, then faces someone.\",plays more scale with his ax.,sits bolt upright on the divan.\n14027,anetv_99KPQLxH4cw,19444,Several shots are shown of various snow boarders grinding down rails into snow with one falling and hurting himself. More shots of people wiping out in the end,Several shots are shown of various snow boarders grinding down rails into snow with one falling and hurting himself.,More shots of people wiping out in the end,gold,are shown on one side as well as people following on.,are shown afterwards while laying on the chair all looking back with the camera.,are shown as well as people dancing around him out of the shop.,are shown as well as people talking to one another in a circle.\n14028,anetv_tyuyI30cZ00,18528,The camera follows her putting eye makeup on and still looking to the camera. She looks away from a moment and the camera,The camera follows her putting eye makeup on and still looking to the camera.,She looks away from a moment and the camera,gold,zooms back in on her.,focuses back on stage.,zooms in on her face again.,pans up to show her shadow.\n14029,anetv_tyuyI30cZ00,18527,A woman is seen with her arm bent up and looking into a mirror. The camera,A woman is seen with her arm bent up and looking into a mirror.,The camera,gold,shows her long body drinking it as she looks directly to a mirror.,follows her putting eye makeup on and still looking to the camera.,moves in around with another boy with clippers.,pans around her area and show the product then begins rubbing it over her hair and squeezing it into place.\n14030,anetv_tyuyI30cZ00,8714,A woman is doing something in her face in front of a mirror. The reflection in the mirror,A woman is doing something in her face in front of a mirror.,The reflection in the mirror,gold,is having and self - consciously.,shows the earring is attached to the skin for a glass.,is a little in the mirror in the bathroom.,shows that she is fixing her right eyebrows shifting to her left eyebrows.\n14031,anetv_tyuyI30cZ00,8715,\"The reflection in the mirror shows that she is fixing her right eyebrows shifting to her left eyebrows. Then the reflection in the mirror again, she\",The reflection in the mirror shows that she is fixing her right eyebrows shifting to her left eyebrows.,\"Then the reflection in the mirror again, she\",gold,removes the contact of his eye and notices another man in the ribs.,continues to apply blush to her toothbrush.,starts to fix her left eye.,lathers up her braid.\n14032,anetv_xlCOq0ryx-Y,14580,The man on guitar on the right takes his cigarette out of his mouth and puts it down. The man on the left,The man on guitar on the right takes his cigarette out of his mouth and puts it down.,The man on the left,gold,\"appears on top the drums, someone, and begins to play with his left foot.\",reads his middle finger while clapping.,pretends to turn his head through the fist.,takes his cigarette out and wipes mouth on his arm.\n14033,anetv_xlCOq0ryx-Y,14581,The man on the left takes his cigarette out and wipes mouth on his arm. They finish and the man on the left wipes his mouth and the right,The man on the left takes his cigarette out and wipes mouth on his arm.,They finish and the man on the left wipes his mouth and the right,gold,takes his cigarette out and blows smoke.,walks on the table and gives one thumbs up.,man nearly hits the glass.,breaks into the shattering tile of the pile.\n14034,anetv_xlCOq0ryx-Y,14579,Two men sit in a room smoking cigarettes one playing guitar the other on keyboard. The man on guitar on the right,Two men sit in a room smoking cigarettes one playing guitar the other on keyboard.,The man on guitar on the right,gold,talks to the camera while dancing.,plays the stage with another man who looks back into the microphone.,takes his cigarette out of his mouth and puts it down.,gets to be right behind his head.\n14035,lsmdc1034_Super_8-8156,6191,Someone puts someone in the back of his patrol car. He,Someone puts someone in the back of his patrol car.,He,gold,sees the honda in the room but follows him around the corner.,walks through a hallway containing a corridor with several bins.,goes over to talk to someone.,takes a seat at a bay window.\n14036,lsmdc1034_Super_8-8156,6190,The kids watch uncertainly as someone takes the camera. Someone,The kids watch uncertainly as someone takes the camera.,Someone,gold,puts someone in the back of his patrol car.,puffs his.,snaps his reading glasses.,glances over his shoulder at someone.\n14037,anetv_t6vWMTMooDc,18778,\"Next, the man holds up a bag of lemons and begin to talk before they put their head equipment on. Now, it is time for the match and they\",\"Next, the man holds up a bag of lemons and begin to talk before they put their head equipment on.\",\"Now, it is time for the match and they\",gold,begin wrestling with one another.,have something to mix it.,take a jack throughout the lake.,go through a straw exam where they cheer with other people.\n14038,anetv_t6vWMTMooDc,18776,A man and a woman are standing in a living room with large sumo costumes on. The girl jumps up and then the man,A man and a woman are standing in a living room with large sumo costumes on.,The girl jumps up and then the man,gold,tries it to see how heavy the uniform is.,would run on the race blind.,dances to greet her.,move to stand and pause.\n14039,anetv_t6vWMTMooDc,18779,\"Now, it is time for the match and they begin wrestling with one another. However, they've added a feature to the match and each person\",\"Now, it is time for the match and they begin wrestling with one another.\",\"However, they've added a feature to the match and each person\",gold,- wins the match almost where the is right.,is solving more armor that all the spectators still alive.,wins the process and the match is removed from the metal ring.,has to put lemons in the other's hat to gain points.\n14040,anetv_t6vWMTMooDc,18780,\"However, they've added a feature to the match and each person has to put lemons in the other's hat to gain points. After several attempts, the girl wins and the score\",\"However, they've added a feature to the match and each person has to put lemons in the other's hat to gain points.\",\"After several attempts, the girl wins and the score\",gold,go shown while the judge receives the drink with the liquid.,is 4 to 0.,is only two feet tall.,blows silver smoke throughout their entire glass.\n14041,lsmdc3076_THE_SOCIAL_NETWORK-35296,5337,\"At the side, someone sits up fearfully. The door\",\"At the side, someone sits up fearfully.\",The door,gold,\"looked in the middle of the hall, revealing a lot of shiny black water.\",\"swings open, revealing someone.\",\"swings open, leaving someone alone and looking at someone as he wakes.\",scrambles to the floor clutching his phone on the transparent knob.\n14042,anetv_FDIYymZEFi0,16208,A young boy is seen pouring soap into his hands and scrubbing his hands above a sink. He then,A young boy is seen pouring soap into his hands and scrubbing his hands above a sink.,He then,gold,rubs wax all over his board with a rag and lays the bristle all in.,rinses the soap with a rag and rag and places it into the sink.,grabs a paper towel and dries off his hands.,rubs his arms all around the sink and ends by pulling back to the sink.\n14043,lsmdc3052_NO_STRINGS_ATTACHED-25436,5776,\"Someone switches off the car headlights and gets out. Wearing a pretty pale lilac someone dress, someone\",Someone switches off the car headlights and gets out.,\"Wearing a pretty pale lilac someone dress, someone\",gold,wears a searching expression as he steps around the porch.,walks casually off to the back of the gym.,walks up the steps to the house.,walks over to someone and hugs him.\n14044,lsmdc3052_NO_STRINGS_ATTACHED-25436,5775,Lights glow beneath the porch roof. Someone,Lights glow beneath the porch roof.,Someone,gold,light drift across its home and surround dark saloon.,\"looks down at someone above a small church over the street and slows leaving someone, sitting in his car, blowing a whistle.\",sees someone house.,switches off the car headlights and gets out.\n14045,anetv_qX7UMKN6ygM,3087,\"At the beach, a group of soccer balls lie next to a man who is kicking them at the goal, protected by a keeper. He\",\"At the beach, a group of soccer balls lie next to a man who is kicking them at the goal, protected by a keeper.\",He,gold,bring a flag to a field while flying far as a large splash of blue stadium.,battles game keeper stands in volley as the play of a football team falls instead.,boots them up and off his knee before shooting wide.,is interviewed for sunset and records the news.\n14046,anetv_qX7UMKN6ygM,3089,He finally scores over the keeper. His final ball,He finally scores over the keeper.,His final ball,gold,is saved once again by the keeper.,falls against the wall and igniting the goal.,is being scored along the screen of the goalie.,is scored from it's goal.\n14047,anetv_qX7UMKN6ygM,3088,He boots them up and off his knee before shooting wide. He finally,He boots them up and off his knee before shooting wide.,He finally,gold,uses it to turn as he passes through obstacles.,scores over the keeper.,takes the hole back to their left.,gets back into their saloon and peels off the shirts.\n14048,anetv_wVCDyGGog4I,11100,The group then begins moving around with fans in their hands moving their arms and legs. The group,The group then begins moving around with fans in their hands moving their arms and legs.,The group,gold,continues moving around together and ends with them standing together and looking off into the distance.,continues dancing as the ladies cheer with one another as well as text about the music choir.,begins moving their hands and hand while the crowd claps as they continue to play.,continue to flip across the game and fly back and fourth while the people continue to spin around their bodies.\n14049,anetv_wVCDyGGog4I,11099,A small group of people are seen standing ready in a park with their arms and legs by their sides. The group then,A small group of people are seen standing ready in a park with their arms and legs by their sides.,The group then,gold,kick their legs around with one another and then shake their hands.,runs out acting around while they kick the butt of their sticks.,begins moving around with fans in their hands moving their arms and legs.,spins around and continuously speeds around the cars while others ride around.\n14050,lsmdc0019_Pulp_Fiction-56737,15333,\"She is wearing a long tee - shirt with a picture of someone on it. As she walks in the living room, she\",She is wearing a long tee - shirt with a picture of someone on it.,\"As she walks in the living room, she\",gold,sits near the couch someone storms out.,\"sees people standing over someone, who's lying on the floor in the middle of the room.\",lifts her arm up and shaves her legs.,begins to pull off her pants.\n14051,lsmdc0019_Pulp_Fiction-56737,15334,\"From here on in, everything in this scene is frantic, like a documentary in an emergency ward, with the big difference here being nobody knows what the fuck they are doing. Someone\",\"From here on in, everything in this scene is frantic, like a documentary in an emergency ward, with the big difference here being nobody knows what the fuck they are doing.\",Someone,gold,looks up at someone.,keep the third floor and grades midway up on a wall.,is totally guard in the room.,\"'s arrival has been short, for restrained reason, then they've gone and night.\"\n14052,lsmdc0019_Pulp_Fiction-56737,15332,\"Someone, in bed, throws off the covers and stands up. She\",\"Someone, in bed, throws off the covers and stands up.\",She,gold,is wearing a long tee - shirt with a picture of someone on it.,feels his victims face and ducks shut behind her.,voices start to give no comment.,batter to a plate boy frisbee a big loaf of sausage.\n14053,lsmdc0019_Pulp_Fiction-56737,15329,\"Someone charges from the window, out the door to his front lawn. Someone\",\"Someone charges from the window, out the door to his front lawn.\",Someone,gold,\"returns to the base, then turns to someone, who studies him awkwardly.\",\"grabs the bag from the shelf, pulls back towards the apartment building.\",\"is already out of the car, working on getting someone out.\",sets the breakfast tray down.\n14054,lsmdc0019_Pulp_Fiction-56737,15331,\"We start in someone's and someone's bedroom. Someone, in bed,\",We start in someone's and someone's bedroom.,\"Someone, in bed,\",gold,throws off the covers and stands up.,sleeps on the bed with his thumbs up.,lies back asleep in her bed.,opens his door wide and turns around.\n14055,anetv_LFbW1KVHT8s,3073,A elder man is on water standing on a jet ski. The man,A elder man is on water standing on a jet ski.,The man,gold,goes to the tower and hands it to the man.,\"climbs to the ground, opens upwards and sunset skis.\",is wake boarding behind a boat.,begins to jet ski.\n14056,anetv_LFbW1KVHT8s,3075,The man takes on hand off of the handle. The man,The man takes on hand off of the handle.,The man,gold,uses a spare to show the tire.,tries the handle bars and moves the engine equipment better.,places both hands back on the handle and jet skis.,comes on top of the machine.\n14057,anetv_LFbW1KVHT8s,3074,The man begins to jet ski. The man,The man begins to jet ski.,The man,gold,cleans the surface as the boat ski.,starts doing tai chi behind the town.,lands in the skis with one of his hands.,takes on hand off of the handle.\n14058,anetv_i_Fs0Qrtu90,9165,\"The person put back the phone, and started typing on the black keyboard. The bacteria shot\",\"The person put back the phone, and started typing on the black keyboard.\",The bacteria shot,gold,is given for the man dealing the card before marketing template.,is put in the scene.,shows the man back at the sink.,is removed and the plunger is displayed on the table.\n14059,anetv_i_Fs0Qrtu90,9166,The bacteria shot is put in the scene. The woman,The bacteria shot is put in the scene.,The woman,gold,holds the trophy under the studio.,adds a candy wedge.,put her hand on the mouse.,resumes playing the drums.\n14060,anetv_i_Fs0Qrtu90,9170,The woman saw a man and shake his hand. The woman,The woman saw a man and shake his hand.,The woman,gold,holds a knife and starts cleaning.,went to the bathroom.,talks and smiles in good time.,gets on the horse.\n14061,anetv_i_Fs0Qrtu90,9169,The woman got up and walk towards the hallway. The woman,The woman got up and walk towards the hallway.,The woman,gold,is riding the woman as he goes.,begins dancing performing a funny design with a shiny shoe on the table.,saw a man and shake his hand.,stops and then offers the doll a soapy bottle.\n14062,anetv_i_Fs0Qrtu90,9171,The woman went to the bathroom. The woman,The woman went to the bathroom.,The woman,gold,\"took off her ring, wash her hand, got home soap and rub it on her hand thoroughly and rinse it.\",begins adjusting the refrigerator in front of the ironing tub.,is painting the floor with a brush.,kicks around and then cheered.\n14063,anetv_i_Fs0Qrtu90,9168,She put her hand on the wooden desktop. The woman,She put her hand on the wooden desktop.,The woman,gold,inserts the bolts to the wall.,removes the harmonica and begins painting the nails.,got up and walk towards the hallway.,toss the drums back into play.\n14064,anetv_i_Fs0Qrtu90,9172,The woman sneeze on her hand. She,The woman sneeze on her hand.,She,gold,hold a short thick blow dryer between product and builds the room and catch it up.,claps her hands on hips and dances around the room.,\"walks towards her office, put her hand on the desk and phone.\",puts the book back into the glove box and waits across it.\n14065,anetv_i_Fs0Qrtu90,9164,\"A woman touched a black phone, and a screen of purple capsule like bacteria showed up. The person\",\"A woman touched a black phone, and a screen of purple capsule like bacteria showed up.\",The person,gold,\"put back the phone, and started typing on the black keyboard.\",began piercing a second lens on her cheek with a paper clip of the razor mirror.,leans and flips the flower on her beam and strike it all around the ship.,tossed in several letters.\n14066,anetv_i_Fs0Qrtu90,9167,The woman put her hand on the mouse. She,The woman put her hand on the mouse.,She,gold,brings a small stick to the orb of her hand.,put her hand on the wooden desktop.,pops the timer on the dashboard.,begins to remove the gift.\n14067,lsmdc3045_LAND_OF_THE_LOST-21151,5781,Someone touches someone's bare legs. Someone,Someone touches someone's bare legs.,Someone,gold,slaps his hand away.,extends his arms and punches someone in the air.,\"glances out from the staircase, then passes in the hall.\",'s eyes sweep across their seats.\n14068,lsmdc3045_LAND_OF_THE_LOST-21151,5778,\"Three crescent moons hover in the dark sky above a warm glow from the setting sun. Inside the cave, the record\",Three crescent moons hover in the dark sky above a warm glow from the setting sun.,\"Inside the cave, the record\",gold,continues to turn on the phonograph.,revolves on a central table and joins a group of candles around the cottage.,lies throwing tiny someone in a fountain.,emerges from the observation deck.\n14069,lsmdc3045_LAND_OF_THE_LOST-21151,5779,\"Inside the cave, the record continues to turn on the phonograph. Someone\",\"Inside the cave, the record continues to turn on the phonograph.\",Someone,gold,stops as it is suddenly sucked into its system.,trudges to the front door.,rips her pant legs into shorts.,turns on the screen and stands staring forlornly at the debris.\n14070,lsmdc3045_LAND_OF_THE_LOST-21151,5780,Someone rips her pant legs into shorts. Someone,Someone rips her pant legs into shorts.,Someone,gold,\"stretches out her hand, forcing her into pins.\",touches someone's bare legs.,helps someone shaving her foot.,notices an attractive young woman wearing a white gown.\n14071,lsmdc3045_LAND_OF_THE_LOST-21151,5777,\"The group cautiously follows the music, moving deeper into the cave. Three crescent moons\",\"The group cautiously follows the music, moving deeper into the cave.\",Three crescent moons,gold,strut for two women.,hover in the dark sky above a warm glow from the setting sun.,\"black dots, spread hang across the horizon.\",closely into an otherwise central campsite.\n14072,anetv_WL4iqWa_1Z0,14954,Two young males are sitting at a desk behind two microphones and two computers. One boy leaves and the other guys,Two young males are sitting at a desk behind two microphones and two computers.,One boy leaves and the other guys,gold,slide down as well.,sit with him smiling happily.,move to do karate moves.,stays to gather his belongings.\n14073,anetv_WL4iqWa_1Z0,14955,\"One boy leaves and the other guys stays to gather his belongings. As he is packing up, a young woman\",One boy leaves and the other guys stays to gather his belongings.,\"As he is packing up, a young woman\",gold,sneaks up a money store.,walks in and begins shutting off the equipment and cleaning up around the radio station.,mounts a rope.,\"sits at the legs of the stairs, watching him.\"\n14074,anetv_WL4iqWa_1Z0,14956,\"As he is packing up, a young woman walks in and begins shutting off the equipment and cleaning up around the radio station. Once everything is packed up, the boy\",\"As he is packing up, a young woman walks in and begins shutting off the equipment and cleaning up around the radio station.\",\"Once everything is packed up, the boy\",gold,looks in her face.,leaves and begins blowing kisses to the camera.,is cupped again to the camera.,puts the things back on.\n14075,lsmdc1010_TITANIC-77306,6830,\"Outside, someone climbs a railing, then hops onto a deck where a boy wearing a cap winds a string around a top. The boy\",\"Outside, someone climbs a railing, then hops onto a deck where a boy wearing a cap winds a string around a top.\",The boy,gold,spins the top on the deck.,remains on the floor.,tosses his jacket over a bin.,shakes the bag neatly to his back.\n14076,lsmdc1010_TITANIC-77306,6828,\"On the bridge, a crewman steps up to the captain. Someone\",\"On the bridge, a crewman steps up to the captain.\",Someone,gold,leans forward and presses a button.,\"reads a note, then smiles at someone.\",sits on a stool and arrives indoors.,\"raises her hand, catching the volunteer's breath.\"\n14077,lsmdc1010_TITANIC-77306,6827,\"The two stewards escort someone away. On the bridge, a crewman\",The two stewards escort someone away.,\"On the bridge, a crewman\",gold,crawls on the chopper.,steps up to the captain.,walks over and grabs a hare.,shoots out of their way.\n14078,lsmdc1010_TITANIC-77306,6831,The boy spins the top on the deck. Someone,The boy spins the top on the deck.,Someone,gold,sits in the cockpit.,\"steps toward another railing, pauses, and picks up a black bowler hat and long coat from a chair.\",rises toward the edge of the platform.,\"moves past the audience, supporting himself on the canvas.\"\n14079,lsmdc1010_TITANIC-77306,6832,\"Someone steps toward another railing, pauses, and picks up a black bowler hat and long coat from a chair. Donning the hat, someone\",\"Someone steps toward another railing, pauses, and picks up a black bowler hat and long coat from a chair.\",\"Donning the hat, someone\",gold,\"pockets the energy strip, leaving it on the wooden floor of a wooden room.\",marches onto the beach and throws a ball into the glass beside someone.,wets his fingers and plasters down his hair.,\"stretches out his arms, hunched over the weights, then straightens and steps up to instruct someone someone.\"\n14080,anetv_QosVN26lb1g,17477,We see a woman hitting a pinata. The lady,We see a woman hitting a pinata.,The lady,gold,pauses to line up her shot.,spins and throws a discus.,spins around the tree several times.,moves the bear down and stands up.\n14081,anetv_QosVN26lb1g,17478,The lady pauses to line up her shot. The lady,The lady pauses to line up her shot.,The lady,gold,talks to the camera and claps.,holds the pinata as she hits it.,jumps up and down on her back.,continues to dance and drop flip.\n14082,anetv_QosVN26lb1g,17479,The lady holds the pinata as she hits it. A man,The lady holds the pinata as she hits it.,A man,gold,puts a few glasses next to her.,swings a calves pinata while the girl swings after him.,takes the bat from the ladies hands.,is picking it up and speaks.\n14083,lsmdc1058_The_Damned_united-98286,18159,Rain soaks the muddy pitch in the empty Leeds United stadium. Photographers' flashes,Rain soaks the muddy pitch in the empty Leeds United stadium.,Photographers' flashes,gold,follow the scene down the stairwell.,are cast and beaming on their heads.,roll down someone's face.,light up the boardroom windows.\n14084,lsmdc1058_The_Damned_united-98286,18158,The manager of England is the most coveted job in the country. Rain,The manager of England is the most coveted job in the country.,Rain,gold,is sitting on the far side of the road drinking sullenly in a chair.,\"is busily inside, followed by him.\",comes to porters through the ceiling behind his father.,soaks the muddy pitch in the empty leeds united stadium.\n14085,lsmdc1058_The_Damned_united-98286,18160,\"Photographers' flashes light up the boardroom windows. Burly, middle - aged someone\",Photographers' flashes light up the boardroom windows.,\"Burly, middle - aged someone\",gold,\"makes his way from the boardroom to a press conference, flanked by members of the leeds board.\",lifts his face as he approaches the restaurant.,sits at the table with the younger man.,opens the door carrying a hefty disheveled man.\n14086,anetv__UPD2IvdQ_M,11128,\"He concentrates, and then mounts to begin his routine. He\",\"He concentrates, and then mounts to begin his routine.\",He,gold,jumps down the steps and money.,\"performs first one, and then a second impressive handstand while gripping one handle with both hands.\",perform tai chi and jumping up and down with other teammates.,\"includes a photograph of the dog, and starts performing on how to do a jump.\"\n14087,anetv__UPD2IvdQ_M,11127,An audience is gathered in a gymnasium to watch the gymnast on the pommel horse. He,An audience is gathered in a gymnasium to watch the gymnast on the pommel horse.,He,gold,swiftly pushed off the beam at the end of the platform.,leads brings her routine and begins performing a gymnastic routine by the parallel bars.,\"concentrates, and then mounts to begin his routine.\",spins it under his hands as well as his performance.\n14088,anetv__UPD2IvdQ_M,11129,\"He performs first one, and then a second impressive handstand while gripping one handle with both hands. He\",\"He performs first one, and then a second impressive handstand while gripping one handle with both hands.\",He,gold,dismounts he catches it.,takes picture in slow motion.,explains them to detail the proper way to flip your legs each time.,\"completes his routine, and then finishes with a flawless dismount to cheering.\"\n14089,lsmdc1010_TITANIC-77147,7355,She releases his hand and walks away. She,She releases his hand and walks away.,She,gold,stares at him with her mouth open.,torches someone stroll among the recruits.,spanks him then casts a spell at the window.,\"storms up, then bends over a railing and over the top deck as another member lands at his back.\"\n14090,lsmdc1010_TITANIC-77147,7354,Someone shakes someone's hand up and down. She,Someone shakes someone's hand up and down.,She,gold,deliberately levitates the paper.,\"steps out of the car, smiling.\",releases his hand and walks away.,leans forward and kisses her on the cheek.\n14091,lsmdc1010_TITANIC-77147,7357,She snatches someone's sketchbook. Someone,She snatches someone's sketchbook.,Someone,gold,rounds the rink with him.,sits beside someone as she flips through his drawings.,\"stands, then wipes her eyes.\",spits in the murky words.\n14092,anetv_i9DlXuEewE8,7443,A young teen age girl is sitting in a large chair talking on the phone and making faces. Two other females then,A young teen age girl is sitting in a large chair talking on the phone and making faces.,Two other females then,gold,begin dancing out front in the yard on a sidewalk.,walk past on the ground and smile.,appear in line using a lab they are both dancing with.,begin dancing in one music hands.\n14093,lsmdc1055_Marley_and_me-96697,135,\"He looks again and sees his family, gathered together, sipping hot drinks. The trees in the garden\",\"He looks again and sees his family, gathered together, sipping hot drinks.\",The trees in the garden,gold,are covered with brown and gold autumn leaves.,continues to follow them backwards and shoot by the gateway entrance.,\"are buffeted by the strength, trying to uncover the beast.\",begin to go out towards ice.\n14094,lsmdc1055_Marley_and_me-96697,136,The trees in the garden are covered with brown and gold autumn leaves. Someone,The trees in the garden are covered with brown and gold autumn leaves.,Someone,gold,crosses the yard and tugs her way down the door.,heads back to the house.,is partially falling in the rain.,blinks wide - eyed and gazes to the clay market.\n14095,lsmdc1055_Marley_and_me-96697,132,She drops the necklace in with Marley. Someone,She drops the necklace in with Marley.,Someone,gold,\"finds someone sitting in his kitchen table, looking deep.\",\"squats down, looking at marley's body wrapped in his favorite blanket.\",\"chases after him, then turns back to the girls with triple - barreled precision.\",looks nearby as they dump sand.\n14096,anetv_Gq8-XVrlAt4,18240,A man and woman are standing on a tennis court. They,A man and woman are standing on a tennis court.,They,gold,bounce and serve the ball one at a time.,are engaged in a game of beer pong.,begin spinning around each other.,hit a ball and catches the ball.\n14097,anetv_Gq8-XVrlAt4,1009,She continues to hit the ball while the trainer rakes through the basket. There,She continues to hit the ball while the trainer rakes through the basket.,There,gold,are balls left all over the court.,is still laughing as he continues to hit.,\", show the same batter line at the end of a goalie in the lane and she soars in bounds down the game.\",gets in and takes a book.\n14098,anetv_Gq8-XVrlAt4,18241,They bounce and serve the ball one at a time. The woman,They bounce and serve the ball one at a time.,The woman,gold,comes to costumes to get the ball.,concentration the ends waiting for another game with her.,continues serving the ball against the back fence.,shoots a third club and begins to speed above the attempt to win the game before the game progresses.\n14099,anetv_Gq8-XVrlAt4,1008,A woman is hitting tennis balls from a basket while her trainer gives her instructions. She,A woman is hitting tennis balls from a basket while her trainer gives her instructions.,She,gold,starts after them until the end.,throws the ball to the woman and throws it into her mouth.,continues to hit the ball while the trainer rakes through the basket.,gets onto a small table using great balls to hit the racket while another watches.\n14100,anetv_Gq8-XVrlAt4,1010,There are balls left all over the court. The woman,There are balls left all over the court.,The woman,gold,boots a white ball to the left.,stands next to various body guarding and stands ready for the race.,stands with the light on hand in the air.,is hitting balls again while the trainer watches.\n14101,anetv_Gq8-XVrlAt4,1011,The woman is hitting balls again while the trainer watches. A couple,The woman is hitting balls again while the trainer watches.,A couple,gold,\"has the back sparks of the match, coming out of her right hand.\",of guys play several shots in a bowling table.,\"blows on the field, then bounces twenty several times and stands upright.\",are walking by behind the fence.\n14102,lsmdc0033_Amadeus-66781,7498,Someone is glaring at someone. Someone,Someone is glaring at someone.,Someone,gold,jumped off a bowl.,looks hastily away from her.,grabs her elbows into the kitchen.,take care of the object from someone.\n14103,lsmdc0033_Amadeus-66781,7502,\"He nods pleasantly to all and leaves the stage, with his someone. Someone\",\"He nods pleasantly to all and leaves the stage, with his someone.\",Someone,gold,\"turns with a savage look at someone and leaves the stage the opposite way, to her dressing room, tossing her plumed head.\",follows his children out the way with people crawling down on their bed.,has opened the closet door.,holds himself as if he had makeup.\n14104,lsmdc0033_Amadeus-66781,7500,\"She attempts to kiss the royal hand, but faints instead. Someone\",\"She attempts to kiss the royal hand, but faints instead.\",Someone,gold,\"is in her bedroom, looking at him unhappily.\",contemplates her prone body and steps back a pace.,caresses her belly with her toes.,stares after him with someone's withering eyes.\n14105,lsmdc0033_Amadeus-66781,7503,\"Someone stays for a second, indecisive whether to follow the soprano or help someone. She\",\"Someone stays for a second, indecisive whether to follow the soprano or help someone.\",She,gold,brings others another variety of high - backed present.,pauses on the adjoining counter.,looks up at us and smiles.,catches him looking at her and tries to compose herself.\n14106,lsmdc0033_Amadeus-66781,7501,Someone contemplates her prone body and steps back a pace. He,Someone contemplates her prone body and steps back a pace.,He,gold,\"nods pleasantly to all and leaves the stage, with his someone.\",stares out the window.,steps on the kitchen bench and smiles.,sits at a table with a yellow bird seated beside her and pauses.\n14107,anetv_P2H4fTMMHNE,16356,She continues ironing the shirt on the ironing board. She,She continues ironing the shirt on the ironing board.,She,gold,speaks to the camera from the top of her bike.,lifts the shirt up and puts it over the ironing board.,begins doing the braiding.,continues ironing the bathrobe.\n14108,anetv_P2H4fTMMHNE,16357,She lifts the shirt up and puts it over the ironing board. She,She lifts the shirt up and puts it over the ironing board.,She,gold,shows how to put the winter clothing on.,puts her cigarette in the bar.,turns the shirt inside out and holds it up.,puts it back on the other shoe.\n14109,anetv_P2H4fTMMHNE,16354,A woman is ironing a brown shirt on an ironing board. She,A woman is ironing a brown shirt on an ironing board.,She,gold,is ironing a white shirt on top of a table with a few paper scissors.,looks at the tag on the shirt.,is being pulled on a black nozzle.,grabs the iron and throws it up at the water.\n14110,anetv_P2H4fTMMHNE,16355,She looks at the tag on the shirt. She,She looks at the tag on the shirt.,She,gold,is pointing up at the knitting house.,\"stands on the sofa, looking away bewildered.\",\"pauses for a moment, then turns to the piano.\",continues ironing the shirt on the ironing board.\n14111,anetv_2eep4G5Tgho,3933,A man is outside of a building. He,A man is outside of a building.,He,gold,does a gymnastics routine on the balance beam.,are selling shingles shingles around a building together.,is using commercial lawn mowing equipment.,is chopping at targets in a iron.\n14112,anetv_2eep4G5Tgho,3934,He is using commercial lawn mowing equipment. He,He is using commercial lawn mowing equipment.,He,gold,walks back and forth as he mows the grass.,begins mowing the snowy up tower.,mixes the flooring in.,pulls out plywood sneakers and shows them in the garbage to clean the windshield.\n14113,anetv_O8tsM_ilGx4,8744,He ropes a little calf with a lasso. He,He ropes a little calf with a lasso.,He,gold,even frisbee the other missing calf.,jumps down and ties up the calf.,jumps up and throws his legs to the air.,jumps off the rope and hangs it close to the back of the jump.\n14114,anetv_O8tsM_ilGx4,8743,A cowboy riding a horse exits a gate. He,A cowboy riding a horse exits a gate.,He,gold,gets on the horse then ties the calf in the air.,\"takes off running through the park, walking through numerous hedges.\",try to free himself.,ropes a little calf with a lasso.\n14115,anetv_HlFnWOx53XU,10743,Woman is standing in the middle of a parking lot playing bag pipes. a blue house,Woman is standing in the middle of a parking lot playing bag pipes.,a blue house,gold,is behind the woman that is playing bagpipes.,makes bullet tourniquet to the back of the head.,is on a podium in a room.,holds a man and is sitting on an rope while wearing purple frisbees chasing the frisbee.\n14116,anetv_HlFnWOx53XU,10742,Woman is standing in a field playing bagpipes. woman,Woman is standing in a field playing bagpipes.,woman,gold,is on a black slab and watching the woman in the red top is riding the horse.,is siting in a tube in front of a sailboat as she begins to ride along the night.,is in a stage playing of the hop scotch.,is standing in the middle of a parking lot playing bag pipes.\n14117,anetv_fghAmraOM9A,10106,A woman wearing a protective helmet speaks to the camera while standing outdoors next to a palm tree. The woman,A woman wearing a protective helmet speaks to the camera while standing outdoors next to a palm tree.,The woman,gold,in the orange suit continues to fire the rope and eventually gets on the base of the tree.,is standing on a sidewalk wearing rollerblades and protective gear.,begins demonstrating how to play the bagpipes.,puts her hair down and begins blow drying her hair.\n14118,anetv_fghAmraOM9A,10107,The woman is standing on a sidewalk wearing rollerblades and protective gear. The woman,The woman is standing on a sidewalk wearing rollerblades and protective gear.,The woman,gold,begins talking and looking off into the distance and adding positions to her.,speaks to the camera and demonstrates different techniques of skating down the sidewalk.,are then walking in a driveway and begins by working behind power prep.,walks up to the open car and hands off repair products.\n14119,anetv_3La7NPOBVN8,10351,She shows off a braid in her hair. She then,She shows off a braid in her hair.,She then,gold,demonstrates how to make the braid.,continues to put her hair down.,brushes hair out of her hands.,\"does a back flip, flipping back and forth while performing cartwheels and ends with her hair still on its side.\"\n14120,anetv_3La7NPOBVN8,19267,The she braids her hair in a braid to the side. At the end she,The she braids her hair in a braid to the side.,At the end she,gold,undoes the braids in her hair and combs her bangs together.,\"puts a hair tie on it, pulls the braid a bit and smiles.\",lights the colored foam something by herself.,turns to the camera camera and replays down the hair.\n14121,anetv_3La7NPOBVN8,19266,The scene cuts to the bathroom and the girl is seen brushing her hair. The she,The scene cuts to the bathroom and the girl is seen brushing her hair.,The she,gold,braids her hair in a braid to the side.,presents her father's trophies to the camera and smiles at the camera.,rinses her blue dishes then wipes them all off with a towel.,takes off the shoes and begins curling her shoe.\n14122,anetv_3La7NPOBVN8,10350,A woman is talking as she is seated in a room. She,A woman is talking as she is seated in a room.,She,gold,shows off a braid in her hair.,is sitting on the couch as she plays and stops playing.,is holding a flute as she plays his flute.,is applying a water hose to her face.\n14123,anetv_SOpFjnAT_SE,3949,\"She is smoking a hookah with a red tip, and blowing the smoke out of her mouth. She\",\"She is smoking a hookah with a red tip, and blowing the smoke out of her mouth.\",She,gold,held the back of her finger with her paws on the bottom.,\"laughs, then shares the hookah with another woman, who changes the tip and smokes as well.\",puts the cigarette in the mouth and rubs the juice on his paw followed by final shots of a woman's corpse.,pours herself a pale cup and then pours it into the bowl by another glass window.\n14124,anetv_SOpFjnAT_SE,3950,\"She laughs, then shares the hookah with another woman, who changes the tip and smokes as well. The women\",\"She laughs, then shares the hookah with another woman, who changes the tip and smokes as well.\",The women,gold,finishes and takes a cup of coffee in both hands as she swallows her round.,\"continue touching around while sitting around, smiling.\",talk and smoke at the table for a long time.,continues making clips looking at the camera at the end.\n14125,anetv_SOpFjnAT_SE,3948,A girl sits in front of a lap top. She,A girl sits in front of a lap top.,She,gold,barges in with three different sets.,gets off of the couch and adjusts the beauty on her hand.,is shown next and showing shots of a world close up shown.,\"is smoking a hookah with a red tip, and blowing the smoke out of her mouth.\"\n14126,anetv_KPfKLVV-HCQ,14719,The people move up and down on a beam kicking their legs up and moving around. The people,The people move up and down on a beam kicking their legs up and moving around.,The people,gold,step down and performing more food on their hands and end by walking down.,continue moving all around the board while the camera captures their movements.,continue dancing around and end by jumping off a beam of flashing sparks.,continue to jump around one another and end by looking off into their distance.\n14127,anetv_K1TizK5Sg78,8993,He takes a nineteenth puff. And he,He takes a nineteenth puff.,And he,gold,\"stops, shifting his starting arm at his back.\",grabs a paper iron and tosses it to the ceiling.,takes a final puff.,\"rises a little and strolls towards the house, he finds someone sitting by a car.\"\n14128,anetv_K1TizK5Sg78,8985,He takes a second puff. He,He takes a second puff.,He,gold,takes a third puff.,turns to someone who is still intently drinking tea.,walks in and does several liquors himself.,incorporates his smoke and lunges at him.\n14129,anetv_K1TizK5Sg78,8991,He takes a tenth puff. He,He takes a tenth puff.,He,gold,throws a cocky grenade.,glances across at someone as he kicks at someone's feet.,steps closer to someone in his cell.,takes a eleventh puff.\n14130,anetv_K1TizK5Sg78,8989,He takes a sixth puff. He,He takes a sixth puff.,He,gold,takes a seventh puff.,makes his way over to someone who lies on his side.,spits out the bottle.,rolls to his feet.\n14131,anetv_K1TizK5Sg78,8990,He takes a seventh puff. He,He takes a seventh puff.,He,gold,trains a radio on the yard.,takes an eight puff.,\"whirls out of the room, like a machine east, to one rooftop with several rifles.\",opens the entrance to someone.\n14132,anetv_K1TizK5Sg78,8983,A man pulls out a cigarette and lights it. He,A man pulls out a cigarette and lights it.,He,gold,picks up a cigarette then places it around his mouth.,takes a puff off his smoke.,walks over to a group of children and gives him a trophy.,replaces it with the lighter.\n14133,anetv_K1TizK5Sg78,8988,He takes a fifth puff. He,He takes a fifth puff.,He,gold,spits bathrooms the pipe.,takes a sixth puff.,exhales smoke and starts to smoke.,has to eat her.\n14134,anetv_K1TizK5Sg78,8984,He takes a puff off his smoke. He,He takes a puff off his smoke.,He,gold,\"puts it in a cage, and lowers it in his arms.\",takes a second puff.,has a cigarette in his mouth.,is jumping down in the house.\n14135,anetv_K1TizK5Sg78,2670,He lights up and smokes a cigarette. He,He lights up and smokes a cigarette.,He,gold,gets a drink of the bar and sets it down on the table.,continues smoking and standing with his arms crossed.,takes a cool puff.,uses a tool.\n14136,anetv_K1TizK5Sg78,8987,He takes a fourth puff. He,He takes a fourth puff.,He,gold,blows leafs over the parcel.,\"grabs his jacket, and hangs it on the peg.\",takes a fifth puff.,\"falls face on the rock face, face falls in pain.\"\n14137,anetv_K1TizK5Sg78,2669,A man is standing in front of a tiled wall. He,A man is standing in front of a tiled wall.,He,gold,begins the length of shaving.,is climbing on the wood.,does flips and tricks and using a racquet.,lights up and smokes a cigarette.\n14138,anetv_K1TizK5Sg78,8986,He takes a third puff. He,He takes a third puff.,He,gold,hands the jigger to someone.,holds a box of white blood in the end of his nose.,blows the whistle and arrow at another.,takes a fourth puff.\n14139,anetv_K1TizK5Sg78,8992,He takes a eleventh puff. He,He takes a eleventh puff.,He,gold,\"brightens, then lifts the phone to his ear.\",\"sprints, tosses the bug off.\",leaves a slice of cake on a metal rack.,takes a twelve puff.\n14140,anetv_fykq7xuc3zk,13878,A man runs down a diving board. He,A man runs down a diving board.,He,gold,bounces on the board a couple of times.,begins performing tricks with the swimmers as well as his men watching.,does a double stand and lets go and lifts high up.,lands on his back landing the a postures and this man kicks him backwards.\n14141,anetv_fykq7xuc3zk,7901,He bounces several times in place. He then,He bounces several times in place.,He then,gold,vaults rapidly in a 17 bag.,throws the ball down.,tries again as another person goes by.,dives into the massive pool.\n14142,anetv_fykq7xuc3zk,7900,A man runs up a diving board. He,A man runs up a diving board.,He,gold,throws the ball into the pool.,swings two feet into the pool.,kicks his feet up into the air.,bounces several times in place.\n14143,anetv_fykq7xuc3zk,13879,He bounces on the board a couple of times. Then he,He bounces on the board a couple of times.,Then he,gold,drops the line and hits them.,moves the stick to his chest and does some break dance.,turns around and catches the ball.,jumps into the swimming pool.\n14144,anetv_-SCRtjT7dto,16478,The man then pours the salad dressing over the leafy greens and mixes it with his hands. The man then,The man then pours the salad dressing over the leafy greens and mixes it with his hands.,The man then,gold,begins to eat the salad with his hands.,uses the grilled juicer to cut over the tuna sandwich.,paints the finished bowl then makes it and ends by spreading his hands in mid cup.,puts the butter in it and then pours to the pot.\n14145,anetv_-SCRtjT7dto,16476,A man wearing a tank top holds a bowl of leafy greens and a salad dressing up to the camera. The man then,A man wearing a tank top holds a bowl of leafy greens and a salad dressing up to the camera.,The man then,gold,removes it and then moves down and begins braiding her hair.,puts a piece of bread for tall strawberries and cuts some more in the pan.,places the leafy greens on a blue plate.,demonstrates the proper techniques and demonstrates how to pierce the end.\n14146,anetv_-SCRtjT7dto,16477,The man then places the leafy greens on a blue plate. The man then,The man then places the leafy greens on a blue plate.,The man then,gold,equips the egg and grabs it.,adds some cream and places a blue on top.,pours the salad dressing over the leafy greens and mixes it with his hands.,comes to the first counter and lifts a finger over the finished frosting.\n14147,anetv_-SCRtjT7dto,10011,The man then puts the leaves on a frisbee and pours dressing on the salad. He,The man then puts the leaves on a frisbee and pours dressing on the salad.,He,gold,and the girl behind the drink house.,closes up the bottle and begins eating the food.,returns with his knife and two more.,continues in the yard and speaking to the camera.\n14148,anetv_-SCRtjT7dto,10010,A man is seen sitting in front of the camera while holding up leaves and dressing. The man then,A man is seen sitting in front of the camera while holding up leaves and dressing.,The man then,gold,holds up various things and then begins moving the mop around onto their feet.,shows how to use the machine as well as talking to other people.,puts the leaves on a frisbee and pours dressing on the salad.,demonstrates how to use a knife on the machine and checking the other end.\n14149,lsmdc1038_The_Great_Gatsby-87480,3120,They tumble into the ballroom. Someone,They tumble into the ballroom.,Someone,gold,bites down on his jeans and flops twice.,flutters a bright blue petticoat up as a breeze gathers its way across the trees.,hits the platform on them.,takes people on a tour.\n14150,anetv_fU-kGMQ68jg,2621,A picture of people tubing is shown followed by large groups of people riding tubes down a snowy hill. The people,A picture of people tubing is shown followed by large groups of people riding tubes down a snowy hill.,The people,gold,eventually get into a kayak and they continue recording as well.,pull up rope down the hill with the tube as people walk by.,continue moving down the hill and end by standing up and walking around in the end.,continue riding along the snow in the water as well as walking off the base of the lake.\n14151,anetv_fU-kGMQ68jg,17944,A group of people are seen standing around with sleds. People then,A group of people are seen standing around with sleds.,People then,gold,begin riding a skateboard around with another person.,begin sliding down the hill on the tubes spinning around.,turn on the ropes while people watch on the sides.,push in tubes down the mountain.\n14152,anetv_fU-kGMQ68jg,17945,People then begin sliding down the hill on the tubes spinning around. Several people,People then begin sliding down the hill on the tubes spinning around.,Several people,gold,stand around and close together in the back end.,are seen paddling properly while the camera captures their movements.,are then shown flips and tricks on their bikes.,ride down one after the other and smile to the camera.\n14153,anetv_8ycO15nH8YM,1283,The lady moves everything and brings it back. We then,The lady moves everything and brings it back.,We then,gold,see the ending title screen.,see a closing screen.,see the ending credits.,see the ending screen again.\n14154,anetv_8ycO15nH8YM,1280,A lady has a cake turned upside down she puts back in the tray. The lady,A lady has a cake turned upside down she puts back in the tray.,The lady,gold,lays on her helmet and starts inking her nails.,points at the cat in the orange hot shower and with a discuss form.,juices a nike flower and stirs it in it.,slices parts of the cake and flips it again.\n14155,anetv_8ycO15nH8YM,1281,The lady slices parts of the cake and flips it again. The lady,The lady slices parts of the cake and flips it again.,The lady,gold,brings the lady a plate and pours it in a cake bowl to make the cake syrup.,cuts the edges off the cake.,maneuvers the sheet around the shape and climbs a braid of the cellophane paper.,decorates the cake into place.\n14156,anetv_8ycO15nH8YM,1282,The lady cuts the edges off the cake. The lady,The lady cuts the edges off the cake.,The lady,gold,\"put cookies her four legs, creating another gift.\",cuts the hair parts from the top of the cake.,paints on the cats nails.,moves everything and brings it back.\n14157,anetv_8ycO15nH8YM,1279,We see a title screen on white. A lady,We see a title screen on white.,A lady,gold,shimmies in a blue room standing with a dog arm.,paints a fence and then wipes the cream on pink paint.,gets a shirt first and holds cinnamon colored toothbrushes.,has a cake turned upside down she puts back in the tray.\n14158,anetv_XlEmG7nM0jw,4031,A man is seen speaking to the camera while pouring ice into a glass. The man then,A man is seen speaking to the camera while pouring ice into a glass.,The man then,gold,pours liquid into the glass and shakes it up.,puts the drink on in the pan while pouring the drink into a glass.,\"begins mixing the lemon into bowls, jumping up and down.\",begins filling the drink followed by putting it on a glass.\n14159,anetv_XlEmG7nM0jw,13263,\"He pours ice into a glass, then adds different liquors. He\",\"He pours ice into a glass, then adds different liquors.\",He,gold,\"prepares the drink, ready to serve.\",continues speaking to the camera.,dips a drink into a pitcher and pours the contents in it.,adds pasta and juice to a pitcher.\n14160,anetv_XlEmG7nM0jw,4032,The man then pours liquid into the glass and shakes it up. He finally,The man then pours liquid into the glass and shakes it up.,He finally,gold,lays down the glass and begins to pour into the glass.,pours the rest into the glass while smiling to the camera.,pours the beer into a cup.,wipes the milk off his face and puts ribbon on it.\n14161,anetv_XlEmG7nM0jw,13262,A man is talking from behind a bar. He,A man is talking from behind a bar.,He,gold,is unscrewing the handlebars.,he begins cutting off the wax into a male stylist.,jumps into the mud.,\"pours ice into a glass, then adds different liquors.\"\n14162,anetv_D9hS68pULz0,3501,One of them counts down something. They then,One of them counts down something.,They then,gold,begin competing in the lacrosse game.,glide away a step.,begin hitting the ball.,chug all of the beer.\n14163,anetv_D9hS68pULz0,14466,\"They are laughing and talking about the results, one of them pouring on to little plates. Then they all\",\"They are laughing and talking about the results, one of them pouring on to little plates.\",Then they all,gold,start getting rowdy and jumping around and yelling.,eat cake from behind the table and go to the table.,come to their left and continue to taste of the time.,begin to bake in a sunny day and try to be cool with fun.\n14164,anetv_D9hS68pULz0,3500,Several men sit around a table. They,Several men sit around a table.,They,gold,give their ornaments as they ride on stage.,are all holding beers.,kick each other on the ladder and stand in place.,begin hitting other balls in a net.\n14165,anetv_D9hS68pULz0,14465,They all chug for as long as they can some finish and some don't. They,They all chug for as long as they can some finish and some don't.,They,gold,continue to cream and speed away from the children.,\"are laughing and talking about the results, one of them pouring on to little plates.\",have helped the people in powerful gulps of the sun.,can be stuck again as someone jumps on the ground.\n14166,anetv_UPfQNZl0_dg,1344,The camera focuses on a video playing on the laptop. The logo GenderFun com,The camera focuses on a video playing on the laptop.,The logo GenderFun com,gold,speak to the teen.,appears on screen with the words boys girls everything in - between.,is shown on at the desk.,flashes the color sunset.\n14167,anetv_UPfQNZl0_dg,11680,A person is sitting down putting makeup on their face. There,A person is sitting down putting makeup on their face.,There,gold,is an open laptop on the desk in front of them.,are people smoothing them out.,are putting eggs in a green bowl.,notes are shown in his backyard and looks out to the camera.\n14168,anetv_UPfQNZl0_dg,11681,There is an open laptop on the desk in front of them. They,There is an open laptop on the desk in front of them.,They,gold,all assemble on the table.,turn around and talk to the camera.,shows you how to use the ball of a disc and retrieve it.,see a photograph in a man's ring.\n14169,anetv_UPfQNZl0_dg,1342,A close up of the Mac desktop on a Macbook laptop. A man,A close up of the Mac desktop on a Macbook laptop.,A man,gold,put his framed items and a box down the stairs on a bike.,shows the mohawk boy photos on a belt in front of his karate trainer in a room.,puts on makeup in a lit mirror next to his laptop.,\"is sitting in the background, recording with a folded exercise weight.\"\n14170,anetv_UPfQNZl0_dg,1343,A man puts on makeup in a lit mirror next to his laptop. The camera,A man puts on makeup in a lit mirror next to his laptop.,The camera,gold,focuses on a video playing on the laptop.,zooms in on the different man who is backing up and uses several gun in the hoop.,continues to restart serious focus.,moves across the sky until he finishes to walk with the changed woman.\n14171,lsmdc0021_Rear_Window-58777,6413,Someone looks back toward someone's bedroom. We,Someone looks back toward someone's bedroom.,We,gold,see someone on the couch.,see the dark apartment beyond him.,in the row of dancers clad in rhythm of a body.,sees a flash of light on the other side of someone's bed from the bed.\n14172,anetv_TKGjHAmCaRo,10679,A man is playing with a dog on the grass. he then,A man is playing with a dog on the grass.,he then,gold,flips and throws a frisbee.,throws a frisbee for the group.,grabs a can of shampoo.,tricks on a dog that is tied to the ground.\n14173,anetv_TKGjHAmCaRo,10681,The dog runs side to side and chases it. He,The dog runs side to side and chases it.,He,gold,continues to catch the pinata and swings it around in time.,grabs two other frisbees and tosses them around while the dog jumps.,brings the wheel back to the screen.,brings the dog down to the ground.\n14174,anetv_TKGjHAmCaRo,10683,He throws the Frisbee some more while the dog runs. The dog,He throws the Frisbee some more while the dog runs.,The dog,gold,continues some to the camera with its camera watching.,continues jumping side to side and running in all directions as they get thrown.,continues to go back and forth every time he laughs from the dog.,chases him back into the field then picks up some more dogs.\n14175,anetv_TKGjHAmCaRo,10680,He then flips and throws a Frisbee. The dog,He then flips and throws a Frisbee.,The dog,gold,stops while the dog begins following it.,then throws a frisbee on the man.,helps to throw the frisbees and gets off his bike.,runs side to side and chases it.\n14176,anetv_TKGjHAmCaRo,10682,He grabs two other Frisbees and tosses them around while the dog jumps. He,He grabs two other Frisbees and tosses them around while the dog jumps.,He,gold,begins swinging the blower into pieces.,throws the frisbee some more while the dog runs.,moves to the front of the mower and jumps over it again.,leaves with a man around him.\n14177,lsmdc3078_THE_WATCH-36372,634,\"As someone slowly rises, someone grabs him. Someone\",\"As someone slowly rises, someone grabs him.\",Someone,gold,hurls him through the glass front door.,\"rubs his muddy hands on someone's face, sweat glistening in his eyes.\",takes their phone out and continues cooking.,leaps high up catching someone.\n14178,lsmdc3078_THE_WATCH-36372,635,Someone hurls him through the glass front door. Chelsea,Someone hurls him through the glass front door.,Chelsea,gold,runs to her dad as the whole party watches.,stands up in bed and tosses his legs.,sets the tray on a steel counter full of three wooden blocks.,shakes his hands as she weaves past with people.\n14179,lsmdc3078_THE_WATCH-36372,633,\"In a bedroom, someone rubs Chelsea's lower stomach as they kiss. She\",\"In a bedroom, someone rubs Chelsea's lower stomach as they kiss.\",She,gold,pushes his hand away.,sets the earpiece in a comforting position by their pillows.,smiles at her boyfriend.,pulls into a fully upright drawing of a man in a chair.\n14180,anetv_HBJzxWj7CaY,7150,Dozens of people line up and begin swimming in the ocean to race. Many more people,Dozens of people line up and begin swimming in the ocean to race.,Many more people,gold,are interviewed while the race continues and many people watch and discuss the events.,and pictures are shown that a waterfall is shown as well as people walking on the trees.,are seen riding boats in the water as well as several people walking out of frame.,are seen swimming around the ocean when one catches a fish and someone attached to him.\n14181,anetv_HBJzxWj7CaY,7149,A panel of people speak to one another and people get ready for a race. Dozens of people,A panel of people speak to one another and people get ready for a race.,Dozens of people,gold,appears with many people as an exit into sequence and all rest.,line up and begin swimming in the ocean to race.,are shown shown up by a contract and the reporter demonstrating closely.,are all standing on the side of the pool watching and jump back.\n14182,anetv_HBJzxWj7CaY,7148,Another man is interviewed followed by several more shots of the area. A panel of people speak to one another and people,Another man is interviewed followed by several more shots of the area.,A panel of people speak to one another and people,gold,get ready for a race.,helping a man shoveling.,followed by a man demonstrating an exercise in slow motion.,also helping the lead into another wrestling match and the men talk.\n14183,anetv_HBJzxWj7CaY,7147,A man stands in front of the camera speaking and various trips of people and sites are shown. Another man,A man stands in front of the camera speaking and various trips of people and sites are shown.,Another man,gold,walks up next to a pool of water and is seen two others participating in bowls.,is skiing on the beach.,\"is shown standing on parallel bars, swinging his legs a rod.\",is interviewed followed by several more shots of the area.\n14184,anetv__TeU8A-CGbU,14669,\"The person cuts a piece of stained carpet. Then, the person\",The person cuts a piece of stained carpet.,\"Then, the person\",gold,paints everything on the metal piece and rearranges the stone.,rubs wax on the toy.,weld a toy in a green cloth.,replace with a new piece and bush.\n14185,anetv__TeU8A-CGbU,14668,A person install a carpet using a machine. The person,A person install a carpet using a machine.,The person,gold,moves a welding tool around the metal area.,cuts a piece of stained carpet.,starts washing the car with cleaning solution.,uses a clear buffer to sync it.\n14186,anetv_ujltXvkQK_g,11955,A large white building is seen and the words cbs Sports in gold. A newscaster,A large white building is seen and the words cbs Sports in gold.,A newscaster,gold,speaks to the camera while gesturing with a mop near his hands.,shows a picture of a fallen set and a paper polishing man.,starts to dance in an archery gymnasium and begins shooting two more arrows.,starts speaking and goes on to talk about a football player while footage of the man plays.\n14187,anetv_ujltXvkQK_g,11956,A newscaster starts speaking and goes on to talk about a football player while footage of the man plays. The man in question then,A newscaster starts speaking and goes on to talk about a football player while footage of the man plays.,The man in question then,gold,serves what he will miss and only then do the same thing again until he gets to play it.,speaks for awhile and then his coach.,hit the man when the boy talks.,dies the flute while the harmonica still plays.\n14188,anetv_ujltXvkQK_g,11957,The man in question then speaks for awhile and then his coach. At the end footage,The man in question then speaks for awhile and then his coach.,At the end footage,gold,of a biker in a car walk down hills covered with snow.,is shown of the man playing lacrosse at the time the video was made.,is shown of the man riding down the slide and is shown again several times in slow motion.,of the video is shown.\n14189,anetv_ujltXvkQK_g,881,\"A sports newscaster does a special news report on the successful lacrosse career of athlete, Jim Brown. A reporter\",\"A sports newscaster does a special news report on the successful lacrosse career of athlete, Jim Brown.\",A reporter,gold,\"talks to the camera before cutting to images of jim brown, jim brown's stats and jim brown giving an interview.\",plays a news screen in front of a volleyball net in an indoor plaza with a large group of hockey players.,shows his seething gleefully and fades to white.,\"is sitting on stepping, climbing stools.\"\n14190,anetv_WaXfGbfUYJg,13865,Woman applies a base coat to her fingernail. Woman,Woman applies a base coat to her fingernail.,Woman,gold,applies white nail polish to her fingernail.,burns her ribs with a blade.,puts the wallpaper down.,throws a tissue in her hand and clutches it to her.\n14191,anetv_WaXfGbfUYJg,9981,The person uses a long brush with a clear liquid on the nails. The person,The person uses a long brush with a clear liquid on the nails.,The person,gold,puts the paper all right and uses red nail polish on it.,paints blush on the windshield and eventually the shapes and spit.,puts several more clear coats over the nails.,\"takes a little brush, then wraps the paintbrush.\"\n14192,anetv_WaXfGbfUYJg,9980,The person paints white tips on the nails. The person,The person paints white tips on the nails.,The person,gold,rubs the belly of the box that has five colored nail polish on the right leg.,streaks the title for several colors together.,uses a long brush with a clear liquid on the nails.,shows the nails nail polish.\n14193,anetv_WaXfGbfUYJg,9979,Several hands with nail polish are shown. The person,Several hands with nail polish are shown.,The person,gold,demonstrates how to clean the furniture and inside.,uses a honing ringed then throws a light down at the finished drill.,paints white tips on the nails.,uses to polish the cats nails with a marker.\n14194,anetv_WaXfGbfUYJg,13866,Woman applies white nail polish to her fingernail. Woman,Woman applies white nail polish to her fingernail.,Woman,gold,sprays a green tissue for her match.,\"woman shows her knife down and lacy, with a nail coating separating the tire.\",\"began cutting the nails, after, the woman put a claw into the back of a piece of wood with polish.\",applies a coat of nail polish remover to her fingernail.\n14195,anetv_WaXfGbfUYJg,9982,The person puts several more clear coats over the nails. The person,The person puts several more clear coats over the nails.,The person,gold,clean off and empties the pumpkin into the skillet.,shows off the finished nails.,dips the carpet of nails into more paint.,finishes recording the video.\n14196,lsmdc1028_No_Reservations-83374,3859,\"On her therapist's roof terrace overlooking Manhattan, someone turns and eyes the man with realization. In a shabby elevator, someone\",\"On her therapist's roof terrace overlooking Manhattan, someone turns and eyes the man with realization.\",\"In a shabby elevator, someone\",gold,stands in the light of his house wearing his identical toy sunglasses.,clutches a copper saucepan wrapped in a tea towel.,stands at the front of the bus while ropes strapping woman before him.,puts her hands on the desk and makes a dingy glance back with a concerned frown.\n14197,lsmdc1028_No_Reservations-83374,3861,She steps out onto a landing lined with a discarded metal trolley and window grill. She,She steps out onto a landing lined with a discarded metal trolley and window grill.,She,gold,\"stops to look at his sleeping wife, then presses the mace against someone own chest.\",sits at a desk.,steps a few steps and breath in agony.,\"hesitates, then knocks.\"\n14198,lsmdc1028_No_Reservations-83374,3860,\"In a shabby elevator, someone clutches a copper saucepan wrapped in a tea towel. She\",\"In a shabby elevator, someone clutches a copper saucepan wrapped in a tea towel.\",She,gold,removes a cloth from the wardrobe.,steps out onto a landing lined with a discarded metal trolley and window grill.,stirs a sack of water into someone's shoulder.,winds down for a wild turkey trying to avoid his shiny silver outfit too.\n14199,anetv_0T1FKHx3yOk,10309,The green boy runs into the other boy with a minibike. A girl in a sum suit in thrown from a wheel barrow and the referee,The green boy runs into the other boy with a minibike.,A girl in a sum suit in thrown from a wheel barrow and the referee,gold,attempts to stuff it up.,counts the match as finished.,starts to try to get the ball from the girl.,picks up from the ground.\n14200,anetv_0T1FKHx3yOk,10308,The boy in red grabs and hits the green boy on the ladder with a guitar. The red boy,The boy in red grabs and hits the green boy on the ladder with a guitar.,The red boy,gold,shows the other man winning.,is seated and the rest of the hair brushes his teeth.,spins his shovel puzzles his face and hits the ball to his chest.,brings an ironing board and jumps on the other boy from the ladder.\n14201,anetv_0T1FKHx3yOk,10310,A girl in a sum suit in thrown from a wheel barrow and the referee counts the match as finished. We,A girl in a sum suit in thrown from a wheel barrow and the referee counts the match as finished.,We,gold,eventually begin their next jump going as the hugs.,\", both men are allowed to load the car as the man in the end kisses the flask and blocks the shot.\",appear a couple of cheerleaders into the scoreboard.,see the ending title screen.\n14202,lsmdc3024_EASY_A-11492,13868,\"Our view whizzes to the bleachers, where another girl chats with a couple. We\",\"Our view whizzes to the bleachers, where another girl chats with a couple.\",We,gold,\"zoom through tennis courts, through a locker room, and into the gym.\",watches her pour the drink that was gills girl on.,start on a field behind someone.,\"arrive with a friend, who walks in the kelly concepts of soup ways.\"\n14203,lsmdc3024_EASY_A-11492,13867,\"She heads to the track, where four other girls race, then stop and huddle around a phone. Our view\",\"She heads to the track, where four other girls race, then stop and huddle around a phone.\",Our view,gold,\"whizzes to the bleachers, where another girl chats with a couple.\",moves up to a gentle silhouette through the house's window.,\"shields her from view, leaving others walking by on.\",\"drifts back toward them, hopeful.\"\n14204,lsmdc3024_EASY_A-11492,13866,\"Nearby, a girl talks to a football player. She\",\"Nearby, a girl talks to a football player.\",She,gold,\"heads to the track, where four other girls race, then stop and huddle around a phone.\",picks up a suitcase and hands it to someone.,\"kicks the other over her shoulder, shooting the rockets at her.\",turns at a hot speed.\n14205,lsmdc3024_EASY_A-11492,13865,\"Our view zooms from guys texting at the pool, to more guys huddle around a cellphone on the soccer field. Nearby, a girl\",\"Our view zooms from guys texting at the pool, to more guys huddle around a cellphone on the soccer field.\",\"Nearby, a girl\",gold,\"shoves a nozzle at a android, who shares a tense look with her.\",talks to a football player.,spills a golf ball down the porch of her brother boy and kisses her.,in glasses holds an arrow - and shows the host of the three.\n14206,lsmdc3024_EASY_A-11492,13869,\"A dance team reads a text, as they rehearse a can - can. We\",\"A dance team reads a text, as they rehearse a can - can.\",We,gold,hang over a railings.,\"whiz back through the locker room, to the lap pool, where someone stands uncomfortably.\",see the race to overtake him.,sward with rosy letters on the counter.\n14207,anetv__BWSmg81iMM,6575,The crowd looks around and anticipates the event. The school sign,The crowd looks around and anticipates the event.,The school sign,gold,\"is rugged, almost registering.\",returns to the children with the gardeners where doctors come down the line.,is on june 13.,is seen hanging above the podium.\n14208,anetv_4YJ_L7jqgoA,16556,An athlete is seen beginning to lift a heavy bar over his shoulders while moving in slow motion. The man,An athlete is seen beginning to lift a heavy bar over his shoulders while moving in slow motion.,The man,gold,continues moving the machine and shows off many clips in each other's arms.,runs back and fourth and lands people away back and fourth.,continues to lift the bar over his head while jumping an finally throwing it down in the end.,continues hitting the ramp on a stool and ends by walking down.\n14209,anetv_4YJ_L7jqgoA,4001,A weight lifter is inside a gym. He,A weight lifter is inside a gym.,He,gold,lifts a heavy weight.,lifts a barbell up to his chest and pauses.,woman is getting his weight up to her chest.,is demonstrating various different exercises.\n14210,anetv_4YJ_L7jqgoA,4002,He lifts a barbell up to his chest and pauses. He then,He lifts a barbell up to his chest and pauses.,He then,gold,lifts it sideways before dropping it to his weight.,lifts the barbell up over his head before dropping it to the ground.,lifts the weights down over his head again.,lifts it over his head before dropping it.\n14211,anetv_t6f_O8a4sSg,2188,Skateboarder to different tricks spinning their boards. People,Skateboarder to different tricks spinning their boards.,People,gold,sit by a building and watch friends skateboard.,performs tricks around some sort of city street with onlookers.,are red riding in the city.,\"clap to the people, as dunks towards a ping pong table.\"\n14212,anetv_t6f_O8a4sSg,2189,People sit by a building and watch friends skateboard. The man,People sit by a building and watch friends skateboard.,The man,gold,does a trick and lands with one foot on the board.,pulls off the skateboard and hits a dart.,stands up and walks to the stepper.,\"takes three turns as they walk down the street, making it pass if reunited.\"\n14213,anetv_t6f_O8a4sSg,16635,Several tricks are shown while someone narrates the tricks. A man,Several tricks are shown while someone narrates the tricks.,A man,gold,is running in a croquet line several times.,follows him as well as his body and jumps up and walks around his area.,is shown on a skateboard down a ramp quickly.,is shown on the screen giving details about the tricks and offering pointers and tips.\n14214,anetv_t6f_O8a4sSg,2191,The skateboards miss their tricks and catch themselves. The skateboarder,The skateboards miss their tricks and catch themselves.,The skateboarder,gold,rubs the top of his grip tape with his hand.,see a queue of the rapids are shown.,bounces his butt off his feet and lays on a dock beside his group.,runs all the way into the street.\n14215,anetv_t6f_O8a4sSg,2190,The man does a trick and lands with one foot on the board. The skateboards,The man does a trick and lands with one foot on the board.,The skateboards,gold,miss their tricks and catch themselves.,pass on with two wearing a purple high - rise.,jumps five times and then score.,swerve to get any higher clean.\n14216,anetv_t6f_O8a4sSg,16634,An introduction comes onto the screen for a video about skate boarding tricks. Several tricks,An introduction comes onto the screen for a video about skate boarding tricks.,Several tricks,gold,are shown as well as many people dressed as snowboard and others laying on the track.,are shown while someone narrates the tricks.,are shown of the angles.,are then shown of athletes skating before skating.\n14217,anetv_7p99ez6MEeo,3425,They celebrate as they get the ball over the net. They,They celebrate as they get the ball over the net.,They,gold,hit the volleyball back and forth.,continue hitting the ball back and forth.,hit the ball wet and sandy the way again.,are instructed by who kids are interviewed while people are in the room watching them.\n14218,anetv_7p99ez6MEeo,3424,A bunch of people are playing volleyball on a sand court. They,A bunch of people are playing volleyball on a sand court.,They,gold,go down the track in an area of sand.,are playing a game of indoor lacrosse.,are playing a game on the shuffleboard.,celebrate as they get the ball over the net.\n14219,anetv_7p99ez6MEeo,4268,\"They fight over the ball, doing ritualistic stunts in between. They\",\"They fight over the ball, doing ritualistic stunts in between.\",They,gold,continue lobbing the ball over the net.,are completed practicing video of a versus at work.,play without audience seems to be watching.,are watching through five more.\n14220,anetv_NdnosxA2c5g,6067,A horse grazes on grass on the side of a trail. A child,A horse grazes on grass on the side of a trail.,A child,gold,runs down the roads behind the camel while an adult walks in in the background.,plays in a house in different clothing.,\"lies in a snow yard across a lawn, prepping his haunches with a towel.\",smells then throws a handful of flowers into the air.\n14221,anetv_NdnosxA2c5g,6068,A child smells then throws a handful of flowers into the air. The group,A child smells then throws a handful of flowers into the air.,The group,gold,\"flips several girls into a bath, then pulls boys help and kids rush out into their arms.\",rides together on horses down a forested path.,turns all around as the bull pillars blow.,enters someone carry two trays filled with two males.\n14222,anetv_NdnosxA2c5g,5938,\"A woman takes a selfie while sits on a horse. The little girl rides a horse behind three adults, and adult\",A woman takes a selfie while sits on a horse.,\"The little girl rides a horse behind three adults, and adult\",gold,regarding them other people and then talk.,crouches also using white braids.,rides a horse behind her.,tries to grab a calf.\n14223,anetv_NdnosxA2c5g,5937,\"People rides horses in a trail road of a forest, then a little girl throws something to the ground. A woman\",\"People rides horses in a trail road of a forest, then a little girl throws something to the ground.\",A woman,gold,poses with stabbing kicks on a field while people stand across to her.,takes a selfie while sits on a horse.,\"in white shirt falls, coyly.\",enters the white bucket behind the horse stick.\n14224,anetv_C7sabT8febk,13022,Paint is shown being mixed on a styrofoam plate. A hand,Paint is shown being mixed on a styrofoam plate.,A hand,gold,wets the right cleanser on the towel.,\"uses an electric spatula to rub the clean cheek, repeatedly an empty liquid, then with melted cream on it.\",bottle is shown shown on the instructions small table.,draws on a piece of paper using a brush and the mixed paint.\n14225,lsmdc0005_Chinatown-48012,4751,Someone reaches down and opens his glove compartment. The cheap price tags,Someone reaches down and opens his glove compartment.,The cheap price tags,gold,are still on them.,is displayed on the shoreline.,is in a velvet bundle on an island.,is the mask of gort.\n14226,lsmdc0005_Chinatown-48012,4750,\"Someone pulls it off, gets in the car and turns on the dash light. Someone\",\"Someone pulls it off, gets in the car and turns on the dash light.\",Someone,gold,\"reaches down to open the coffee, and drapes them around the safe.\",twists his shirt through the windshield glass.,reaches down and opens his glove compartment.,steps off the car and makes his way across a busy street lined with trees.\n14227,anetv_mTmcz5NWNQA,16553,A group of people riding bmx dirt bikes come down a path together. Then,A group of people riding bmx dirt bikes come down a path together.,Then,gold,moves around stacks of them in their bikes and speeds.,floats in the middle of the field.,\"spin around, taking sharp turns and curves on the track.\",are wrapping a tunnel and looking into each other's hands as they go.\n14228,anetv_mTmcz5NWNQA,16554,\"Then spin around, taking sharp turns and curves on the track. When the race is over, they\",\"Then spin around, taking sharp turns and curves on the track.\",\"When the race is over, they\",gold,\"do a back flip on the street's head, one by one.\",\"take a bit of their twirl, try and shift their losing opponent.\",are attempting towards javelins.,walk around handing out medals and posing for photos.\n14229,anetv_Bnw54GNBKlU,16860,Woman is jumping on sidewalk playing trick. another woman,Woman is jumping on sidewalk playing trick.,another woman,gold,is in the sidewalk jumping playing trick.,is sitting behind a room doing tai.,is walking behind holding diapers embroidered purchases.,jumps into her night roping.\n14230,lsmdc0011_Gandhi-52157,9169,\"When he speaks his voice is thick with feeling. His eyes are watery with emotion, but he\",When he speaks his voice is thick with feeling.,\"His eyes are watery with emotion, but he\",gold,stares at someone rigidly.,has cropped black beard.,does not move so.,knows someone's sound.\n14231,lsmdc0011_Gandhi-52157,9168,He pauses and looks at someone - - and for the first time he smiles. When he speaks his voice,He pauses and looks at someone - - and for the first time he smiles.,When he speaks his voice,gold,\", is someone asking, still embarrassed.\",is thick with feeling.,\"is charged, so you can't hear the statement.\",\"becomes more terrible, the forehead is shaking.\"\n14232,anetv_fKDl_CnA8nY,1292,\"There is a man playing a saxophone, and then he talks for awhile. He\",\"There is a man playing a saxophone, and then he talks for awhile.\",He,gold,unplugs a song on the table and plays a tune with the accordion.,demonstrates a few notes and how you can change the pitch.,\"is leaning on a wall, talking about how to properly press themselves to make the other rim.\",stands on a record demonstrating how to make it.\n14233,anetv_fKDl_CnA8nY,1813,The man in black and white shirt is playing saxophone and then began talking to the camera. The man,The man in black and white shirt is playing saxophone and then began talking to the camera.,The man,gold,hold his saxophone and began playing again.,end to serve the camera.,is demonstrating how to spray the brown sticks on the saxophone.,continues to play while applauding the city.\n14234,anetv_fKDl_CnA8nY,1814,The man hold his saxophone and began playing again. The man,The man hold his saxophone and began playing again.,The man,gold,touched his neck briefly as he talked to camera.,put his head to the camera and ends stiffly.,holds up his hands and cuts the strings with it.,spits out the lime green.\n14235,anetv_fKDl_CnA8nY,1293,He demonstrates a few notes and how you can change the pitch. At the end the logo,He demonstrates a few notes and how you can change the pitch.,At the end the logo,gold,stick a procedure to venice on the link.,appears at the bottom of the screen while another vehicle is seen surrounded by crowds.,shows again with a website.,fades to black as the men play jokes.\n14236,lsmdc3017_CHRONICLE-7310,8314,\"Now, someone films himself on a stairway landing. Someone\",\"Now, someone films himself on a stairway landing.\",Someone,gold,lies through a smoke type plane.,\"storms into view, her shoulder covered in vomit.\",continues to clean with someone.,shuts the scooter and allows a brief smirk.\n14237,lsmdc3017_CHRONICLE-7310,8315,Someone quickly pulls up his pants. Someone,Someone quickly pulls up his pants.,Someone,gold,\"lies belly - down on his bedroom floor, half - propped on his elbows with his hands folded.\",\"plays on the low light, battered.\",shuffles free from the sheets.,breathes heavily then closes his eyes.\n14238,lsmdc3017_CHRONICLE-7310,8316,\"Someone lies belly - down on his bedroom floor, half - propped on his elbows with his hands folded. He\",\"Someone lies belly - down on his bedroom floor, half - propped on his elbows with his hands folded.\",He,gold,takes the photo and sets it down.,brings his fingers to the framed photograph of the dead man.,'s harpsichord is be set up on his head at the end of which he has been surrounded.,watches a spider crossing in front of him.\n14239,lsmdc3017_CHRONICLE-7310,8319,They sit in a basement. Someone,They sit in a basement.,Someone,gold,clap hands and back at someone.,slouches downcast as his father points fingers.,'s old man walks to the window and steps out a ledge.,\"puts paper in his hand and scoops it up, then spreads around the nails.\"\n14240,lsmdc3017_CHRONICLE-7310,8317,He watches a spider crossing in front of him. Someone,He watches a spider crossing in front of him.,Someone,gold,\"shoves down the axe, knocking someone aside.\",aims a hand at the creature and levitates it.,touches the back of his neck as single invisible cat struggles and walks toward him.,holds him at gunpoint.\n14241,anetv_4QvpJ71d8Nk,1507,The scene changes once again to the second group performing rope tricks. The scene,The scene changes once again to the second group performing rope tricks.,The scene,gold,ends with both highlights of the rustling as the people still swim.,ends with a man on the sidewalk watching the sidewalk.,ends still dancing on the screen.,returns once more to the first group performing rope tricks.\n14242,anetv_4QvpJ71d8Nk,1503,A group of people jump rope in a coordinated pattern. Three of them at the front roll to the side and,A group of people jump rope in a coordinated pattern.,Three of them at the front roll to the side and,gold,jump rope.,walk down the hall.,start doing tango steps at their top.,retreat to the back.\n14243,anetv_4QvpJ71d8Nk,1506,The scene changes to the original group performing jump rope tricks. The scene,The scene changes to the original group performing jump rope tricks.,The scene,gold,transitions to a closeup of one of the hosts.,transitions followed by several pedestrians being shown as well as others.,changes back to several slow motion shots of a boy visit.,changes once again to the second group performing rope tricks.\n14244,anetv_4QvpJ71d8Nk,1505,The scene changes to a different group doing jump rope tricks. The scene,The scene changes to a different group doing jump rope tricks.,The scene,gold,\"changes to enjoying the event, interspersed with competitive kicks and flipping.\",ends with the closing credits shown on a screen.,ends and different shots of the ocean are shown and we see the girl going to braids.,changes to the original group performing jump rope tricks.\n14245,anetv_4QvpJ71d8Nk,9109,A black screen appears with a green lettering on it that read Rope Skipping Sportensemble Chemnitz tsv Einheit Sud www sportensemble de. A large group of mostly women and one man wearing green tops and black bottoms are standing in an indoor gymnasium and they each,A black screen appears with a green lettering on it that read Rope Skipping Sportensemble Chemnitz tsv Einheit Sud www sportensemble de.,A large group of mostly women and one man wearing green tops and black bottoms are standing in an indoor gymnasium and they each,gold,start a dance with two other woman in the middle of the class.,practicing a high jump five each other.,\"hold each other's hands, then begin to kick in the line.\",jump and do their routine with their own jump ropes.\n14246,anetv_4QvpJ71d8Nk,1508,The scene returns once more to the first group performing rope tricks. The scene,The scene returns once more to the first group performing rope tricks.,The scene,gold,cuts up and shows everyone walking.,changes one final time to the second group performing rope tricks.,finishes while the boy continues to talk.,is shown again in slow motion.\n14247,anetv_4QvpJ71d8Nk,1504,Three of them at the front roll to the side and retreat to the back. The scene,Three of them at the front roll to the side and retreat to the back.,The scene,gold,is a man wearing dark glasses with a tattoo man dressed in a striped shirt and ping pants are playing the fencing game.,\"cuts back to reveal the open entrance tunnel, deep in the silver theater, with dark ground.\",is in purple and the wood lay covered with marks on them.,changes to a different group doing jump rope tricks.\n14248,lsmdc0001_American_Beauty-45676,1644,\"He looks at her intently, his eyes searching hers. Someone\",\"He looks at her intently, his eyes searching hers.\",Someone,gold,keeps his gaze ahead of her.,wipes her hand and her arm.,looks uncertain at the sound.,is unnerved and has to look away.\n14249,lsmdc0001_American_Beauty-45676,1646,Someone smiles and walks off. Someone,Someone smiles and walks off.,Someone,gold,\"shoots a wide - eyed look at someone, who ignores it.\",abruptly shows off someone's customized helmet.,swallows and nods absently.,runs and taps the kids on a bus.\n14250,anetv_NNKEE-015ZY,2612,\"Then, the teen runs with the dog were other youth play frisbee, after the teen talks. A woman\",\"Then, the teen runs with the dog were other youth play frisbee, after the teen talks.\",A woman,gold,\"runs and eats the baby, and she's skip with sand in front of a dog.\",explains the pink frisbee called jump to another girl.,holds the dog over to ensure the two then continues on.,reads a book lean on a dispenser soda machine.\n14251,anetv_NNKEE-015ZY,2613,A woman reads a book lean on a dispenser soda machine. A man,A woman reads a book lean on a dispenser soda machine.,A man,gold,walks together in front of the group.,wets his teeth and lines around the recorder.,walks a dog in a parking lot and the street.,walks over and washes her the bar.\n14252,anetv_tzwIHzuzG9c,19910,A barber uses electric sheers to buzz a mans hair. The man,A barber uses electric sheers to buzz a mans hair.,The man,gold,takes the contact lens out of his eye and looks out above the camera.,prepares his hair and cutting the mans hair back.,uses a comb to help style the hair.,leads the thrashing hair down by several leaves.\n14253,anetv_tzwIHzuzG9c,1148,A barber cuts the man hair with clippers. the men,A barber cuts the man hair with clippers.,the men,gold,cut and cut the beard with scissors.,both laugh and talk during the hair cut.,interact to different braids and braids.,releases the camera and pushes them into the wall.\n14254,anetv_tzwIHzuzG9c,1147,A man is sitting in a barber chair. a barber,A man is sitting in a barber chair.,a barber,gold,helps him shave his haircut.,cuts the man hair with clippers.,is showing off his hairs.,is used to brush his hair.\n14255,anetv_EzX0FZI6pCg,9037,The man is holding a ball and begins to spin himself around and around multiple times and then throws the ball. After he throws the ball he,The man is holding a ball and begins to spin himself around and around multiple times and then throws the ball.,After he throws the ball he,gold,lets himself go from inches of his hammer and hits the ball.,jumps down while others watch it on the side.,takes off after running down the lane.,falls hard and quickly onto the ground.\n14256,anetv_EzX0FZI6pCg,9036,A young man is standing in a netted green circular area. The man,A young man is standing in a netted green circular area.,The man,gold,spins around and throws the ball on the field before people watch.,stands in and walks up to get off the ladder and bends down while laying on the ground.,is holding a ball and begins to spin himself around and around multiple times and then throws the ball.,starts playing a paintball with people.\n14257,lsmdc1043_Vantage_Point-89152,5459,\"Someone checks his hand for blood, then takes in the scene of devastation in front of him. He\",\"Someone checks his hand for blood, then takes in the scene of devastation in front of him.\",He,gold,grabs someone by the collar.,\"throws fire at the giant body of dementors, until he does the same.\",\"stretches out for his camera by his side, then sees someone with the injured someone.\",appears in his doorway.\n14258,lsmdc1043_Vantage_Point-89152,5464,People are in pursuit of someone. Someone,People are in pursuit of someone.,Someone,gold,pulls up through the portico which had been driven away.,eyes shield his flesh.,leads someone to the gymnast.,still carrying someone runs after them.\n14259,lsmdc1043_Vantage_Point-89152,5455,Someone watches someone throw her bag under the podium. People,Someone watches someone throw her bag under the podium.,People,gold,interact as they approach a large brass building.,hurry around the station on deck.,are thrown off their feet by the force of the explosion.,sit down at the back of the box.\n14260,lsmdc1043_Vantage_Point-89152,5457,\"Black smoke filled the plaza. As the smoke subsides, someone\",Black smoke filled the plaza.,\"As the smoke subsides, someone\",gold,falls off the cliff.,slowly sits up and rubs the back of his neck.,hides around the corner and throws someone into the figure of an attack.,goes out of the shot.\n14261,lsmdc1043_Vantage_Point-89152,5463,He sees someone making his escape. People,He sees someone making his escape.,People,gold,hurtle through rocky mountains.,\"turns and wearing a subtle, vibrating smile.\",tosses his drink to the ground who catches someone at the face.,are in pursuit of someone.\n14262,lsmdc1043_Vantage_Point-89152,5456,People are thrown off their feet by the force of the explosion. Flames,People are thrown off their feet by the force of the explosion.,Flames,gold,go down the track as it bounces down on the guard's shoulder.,get off the train.,soar up from the podium.,plunge into the water and fill the room.\n14263,lsmdc1043_Vantage_Point-89152,5458,\"As the smoke subsides, someone slowly sits up and rubs the back of his neck. Someone\",\"As the smoke subsides, someone slowly sits up and rubs the back of his neck.\",Someone,gold,abruptly away from someone.,sees someone conversing intensely between his fingertips.,\"checks his hand for blood, then takes in the scene of devastation in front of him.\",brings the cord over to someone's back.\n14264,lsmdc1043_Vantage_Point-89152,5462,\"He picks her up in his arms and runs out of the plaza with her. Outside, he\",He picks her up in his arms and runs out of the plaza with her.,\"Outside, he\",gold,releases the wood on two wood logs.,draws her long stick and kisses her.,gives someone a glass of whiskey.,hears someone who's chasing someone.\n14265,lsmdc1043_Vantage_Point-89152,5460,\"He stretches out for his camera by his side, then sees someone with the injured someone. Someone\",\"He stretches out for his camera by his side, then sees someone with the injured someone.\",Someone,gold,'s turned on near someone.,looks down to watch him emerge from his pipe and aiming his pistol at someone door.,pushes himself up onto his feet and looks around.,and others ride past in the boat's raft.\n14266,anetv_BUk-fR6TAnk,4632,\"Scissors and different types of tape are shown, as well as a roll of wrapping paper. A woman\",\"Scissors and different types of tape are shown, as well as a roll of wrapping paper.\",A woman,gold,is on the floor with a box.,is dangling in her pink dress.,is cutting the paper and cutting up pieces of paper.,arrives at the back of the wrapping with lights.\n14267,anetv_BUk-fR6TAnk,4633,A woman is on the floor with a box. She,A woman is on the floor with a box.,She,gold,is standing over a chair in front of a large mop.,removes her arm and puts it on the woman's back.,demonstrates how to cut and fold the paper around the present.,set in the heels of her shoes.\n14268,anetv_BUk-fR6TAnk,4635,She tapes the present shut. She then,She tapes the present shut.,She then,gold,places a translucent bow on the gift.,combs into different mistakes.,puts a sport belt in the sweater.,dips the paper with cloth and shows the artists under plastic.\n14269,anetv_BUk-fR6TAnk,4634,She demonstrates how to cut and fold the paper around the present. She,She demonstrates how to cut and fold the paper around the present.,She,gold,fix the lens with a tissue.,tightens the parts on the hair and starts slicing down the pepper.,tapes the present shut.,continues taking the ribbon and putting in the new tie.\n14270,anetv_BUk-fR6TAnk,4631,A blue page with white writing explains that the video is about how to wrap a present. Scissors and different types of tape,A blue page with white writing explains that the video is about how to wrap a present.,Scissors and different types of tape,gold,are wrapping paper and tape.,\"are shown, as well as a roll of wrapping paper.\",occupy barely the end.,appear on the screen.\n14271,lsmdc3040_JULIE_AND_JULIA-18101,5306,Later she returns with someone to her apartment. Someone's concierge,Later she returns with someone to her apartment.,Someone's concierge,gold,gives someone a covered check.,gets up and walks away.,opens the front door as they approach.,\", someone, and someone lie into each other's arms.\"\n14272,anetv_gjz9pSK0Y9I,2974,The boy tries to walk in heels. The boy,The boy tries to walk in heels.,The boy,gold,dances hard and smells the leaves.,tries to walk in large shoes.,starts dancing around other movements.,continues the beat of the hopscotch again.\n14273,anetv_gjz9pSK0Y9I,2976,The boy tries to put on another pair of shoes. The boy,The boy tries to put on another pair of shoes.,The boy,gold,wins the lines and takes the bow from them.,resumes talking to the camera while interacting with the fourth pair of shoes.,twirling and walks to the pins to start on the other side of the court.,mimics the tattoo that is on the older man's leg.\n14274,anetv_gjz9pSK0Y9I,2973,A boy talks to the camera from behind a row of shoes. The boy,A boy talks to the camera from behind a row of shoes.,The boy,gold,switches back on long legs.,walks to a iraqi man while standing outdoors.,tries to walk in heels.,runs through the tall wooden lot and play.\n14275,anetv_gjz9pSK0Y9I,12962,He speaks to the camera and tries on a pair of shoes. He,He speaks to the camera and tries on a pair of shoes.,He,gold,tries on more pairs while still speaking to the camera.,\"stops playing the violin, turning to the patrolman.\",curls past them then rinses it back in another sink.,jumps out back to yell.\n14276,anetv_gjz9pSK0Y9I,12961,A young man is seen kneeling down before a set of shoes. He,A young man is seen kneeling down before a set of shoes.,He,gold,draws down and begins cutting several different parts of the rope while pausing to speak.,speaks to the camera and tries on a pair of shoes.,continues playing and pausing to move his arms.,begins spinning around riding his hips while speaking to the camera.\n14277,anetv_gjz9pSK0Y9I,2977,The boy resumes talking to the camera while interacting with the fourth pair of shoes. The boy,The boy resumes talking to the camera while interacting with the fourth pair of shoes.,The boy,gold,puts on the fourth pair of shoes.,lays down the cloth continuously.,continue playing and ends by showing to the camera.,takes another stand in the end and walks over to someone.\n14278,anetv_gjz9pSK0Y9I,2975,The boy tries to walk in large shoes. The boy,The boy tries to walk in large shoes.,The boy,gold,looks up to see them walk away.,gets to his feet and continues raking.,leaves and ropes the basket while running.,tries to put on another pair of shoes.\n14279,anetv__8aVDfNQtq0,8202,An introduction comes onto the screen for a video about beach soccer. Several people,An introduction comes onto the screen for a video about beach soccer.,Several people,gold,\"are standing at the beach, playing lacrosse.\",are shown playing volleyball on the beach.,start playing soccer with a trophy.,are shown playing soccer on the beach and having a great time.\n14280,anetv__8aVDfNQtq0,8205,The players are shown receiving several different awards as well. The video,The players are shown receiving several different awards as well.,The video,gold,ends with the man in a sports uniform.,ends with the closing credits shown across the screen.,ends with intro of the people overlaid briefly.,begins with the coaches attempting tricks and still doing it and knock their boards off.\n14281,anetv__8aVDfNQtq0,8578,Several people are on this beach. Two teams,Several people are on this beach.,Two teams,gold,drive through croquet pacific.,play water polo in the field.,play beach soccer in a green net.,kick a ball back and forth.\n14282,anetv__8aVDfNQtq0,8204,People are shown doing soccer ball tricks with one another as well as mingling and watching the competition. The players,People are shown doing soccer ball tricks with one another as well as mingling and watching the competition.,The players,gold,do tricks on the field.,continue fencing on their team while others watch on the sidelines.,continue doing the layups and end by flipping in the water.,are shown receiving several different awards as well.\n14283,anetv__8aVDfNQtq0,8203,Several people are shown playing soccer on the beach and having a great time. People,Several people are shown playing soccer on the beach and having a great time.,People,gold,are seen on the beach playing jump and walks in the sand on the beach.,get off of the board and walk around each other through the water.,are swimming and playing together on the beach behind them.,are shown doing soccer ball tricks with one another as well as mingling and watching the competition.\n14284,anetv__8aVDfNQtq0,8577,Several flags stand on a sandy beach. Several people,Several flags stand on a sandy beach.,Several people,gold,are shown in a pit arena.,play buckets with a blue ribbon.,are on this beach.,perform tai chi stunts.\n14285,anetv_l4UJiGsZVfE,2146,A group of children race dirt bikes over a series of rolling hills several times. A group of children,A group of children race dirt bikes over a series of rolling hills several times.,A group of children,gold,wears protective suits walks through a break.,are seen in various clips running around bats.,\"race, ride, and jump over hilly race courses surrounded by trees and buildings.\",hit a ball back and forth over the ocean.\n14286,anetv_l4UJiGsZVfE,2148,A group of children descend from a hill behind a gated start place in a professional race. Several more races,A group of children descend from a hill behind a gated start place in a professional race.,Several more races,gold,\"leap onto the water, with poles and dirt besides their bikes.\",have their horses and plastic tubes and others stands to win and finish the contest.,are shown with the children traversing the same kinds of hilly obstacles on the race trail.,\"line up and finally race off top speed, then the two horses appear in the air.\"\n14287,anetv_l4UJiGsZVfE,4066,Several dirt bikers are shown riding over hills. several kids,Several dirt bikers are shown riding over hills.,several kids,gold,are chasing on people on a sandy boardwalk.,are shown holding bags for riding on bumper bikes.,try to get a wheel down a track.,are lined up while mounted on a dirt bikes.\n14288,anetv_l4UJiGsZVfE,2147,\"A group of children race, ride, and jump over hilly race courses surrounded by trees and buildings. A group of children\",\"A group of children race, ride, and jump over hilly race courses surrounded by trees and buildings.\",A group of children,gold,watch on its side as they continue their journey.,descend from a hill behind a gated start place in a professional race.,are seen doing the other through the water.,stand on a ramp of the competition to the beach.\n14289,anetv_l4UJiGsZVfE,4067,Several kids are lined up while mounted on a dirt bikes. the kids then,Several kids are lined up while mounted on a dirt bikes.,the kids then,gold,go into the bars demonstrating the techniques in the competition.,try to cross base outfits.,continues riding around on the skis with their glassy forms.,race off on onto a course of hills.\n14290,anetv_UlGX-5x0Mak,2642,A boy holds an ice cream cone to a baby sitting in a high chair seat. The baby,A boy holds an ice cream cone to a baby sitting in a high chair seat.,The baby,gold,holds a brunette beside her while the girl walks behind the boy.,puts his arm over someone four person leg and something pulls their home stick forward.,enjoys the ice cream cone.,stands by tattooing his ear.\n14291,anetv_Mz-yz0fQ_Hk,78,\"The woman accelerates her boat. For a final time, the woman\",The woman accelerates her boat.,\"For a final time, the woman\",gold,tugs on the rope in her boat.,climbs further on the bike to make sure she's fully vacuums.,pauses and continues to buy at fall from the boat by paddling more well.,continues cleaning on a small.\n14292,anetv_Mz-yz0fQ_Hk,76,\"Again, the woman tugs on the rope. The woman\",\"Again, the woman tugs on the rope.\",The woman,gold,accelerates her little boat on the waters.,\"gets back ready, and then stands up.\",helps on the tie.,lays into a kayak on water boards.\n14293,anetv_Mz-yz0fQ_Hk,14828,\"She moves the boat for awhile and then the video slows and replays her movements, while the words close reach are shown, and then powerpause then Leeward heel and finally accelerate. Afterwards the video\",\"She moves the boat for awhile and then the video slows and replays her movements, while the words close reach are shown, and then powerpause then Leeward heel and finally accelerate.\",Afterwards the video,gold,is shown with the first fake rope pole recovered from the ground.,ends the video showing the complete head and location.,is replayed yet again and describes some more of her movements.,ends with another young couple standing at the end.\n14294,anetv_Mz-yz0fQ_Hk,14830,Then the video splits into four segments each with video of people maneuvering boats and the action they are performing. At the end a website address,Then the video splits into four segments each with video of people maneuvering boats and the action they are performing.,At the end a website address,gold,appears beside the screen that appears fallen rock as well.,appears full of stills more letters.,appears on the screen which say celebration during the video.,is shown on the screen.\n14295,anetv_Mz-yz0fQ_Hk,77,The woman accelerates her little boat on the waters. The woman,The woman accelerates her little boat on the waters.,The woman,gold,helps people stay afloat as the propellers sink behind the top of the chain.,demonstrates tugging on the rope again.,turns to her side and her friends start playing.,walks out onto a platform and does a bleeding whistle as the rider crashes off the boat.\n14296,anetv_Mz-yz0fQ_Hk,14827,\"There is an intro which shows the logo for the rya Champion Club, and then with the word accelerating in front of a person on a boat and water. Then there\",\"There is an intro which shows the logo for the rya Champion Club, and then with the word accelerating in front of a person on a boat and water.\",Then there,gold,are several skiers jumping on a yellow track and bumping into each other.,\"are clips of a man on the boat moving around obstacles, showing licks and techniques.\",is a woman who is at first sitting in a blue boat and then directing the boat in the water by maneuvering the sail.,\"are several other people in the small boat kayaking down some water, in the bodies and water as well as being pulled back.\"\n14297,anetv_Mz-yz0fQ_Hk,79,\"For a final time, the woman tugs on the rope in her boat. The woman\",\"For a final time, the woman tugs on the rope in her boat.\",The woman,gold,waves and goes down into the water waters.,helps in the kayak on the catamarans machine.,accelerates her boat one last time.,approach two trees with an old bow - shaped rope.\n14298,anetv_Mz-yz0fQ_Hk,74,The woman tugs on a rope. The woman,The woman tugs on a rope.,The woman,gold,push them around the court.,puts a leg on the rope to finish the rope.,begins accelerating her boat through the waters.,crosses the woman's legs.\n14299,anetv_Rokj1EIAHHk,17762,Man is running in a blue race track doing big somersaults on a competition. girl,Man is running in a blue race track doing big somersaults on a competition.,girl,gold,jumps down in the stands and read the players.,is skateboarding on an open field in front of a body of sand.,is running a long jump preparing for a football.,is reading a book in stands.\n14300,anetv_Rokj1EIAHHk,17125,The man performs gymnastics on the platformed runway. The camera,The man performs gymnastics on the platformed runway.,The camera,gold,switches off the cut on the stunts onto athletes.,spins the same action.,shows a crowd scene at the event.,shows his design running backwards.\n14301,anetv_Rokj1EIAHHk,17126,The camera shows a crowd scene at the event. The man,The camera shows a crowd scene at the event.,The man,gold,continues dancing and runs around a male celebrating.,beats with his baton and glides around a wall along the hall talks.,performs a second set of gymnastics at the same location.,takes a bow and arrow back with her bow.\n14302,anetv_OxPzQ4yqfwg,5238,\"Roofers are on the roof fixing some issues, putting in some new shingles. A woman on the phone with the company\",\"Roofers are on the roof fixing some issues, putting in some new shingles.\",A woman on the phone with the company,gold,is on the phone to the woman that is hiding behind the camera posts.,holds him while talking.,walks up and hands the phone to her husband.,are mixing vigorously into pasta.\n14303,anetv_OxPzQ4yqfwg,5236,An older woman sitting at the table reading her paper work. Her husband,An older woman sitting at the table reading her paper work.,Her husband,gold,comes up behind her and reads through it with her.,looks around as they look at a book.,\"sits on the couch, staring angrily into the distance.\",sits in a armchair beside her bruised and flesh.\n14304,anetv_OxPzQ4yqfwg,5237,Her husband comes up behind her and reads through it with her. Roofers,Her husband comes up behind her and reads through it with her.,Roofers,gold,looks at her body pale she looks at him twice and says something.,\"are on the roof fixing some issues, putting in some new shingles.\",meet in the words of the network - - half - ugly.,proudly from someone's photo.\n14305,anetv_SSLcbqaBiRM,15369,A man starts out riding a dirt bike and immediately crashes into the ground behind him. The video,A man starts out riding a dirt bike and immediately crashes into the ground behind him.,The video,gold,follows several more people attempting to race a dirt bike and instantly crashing on the path in front of them.,continues with the skiers spinning the bikes all down the street while others watch on to the side.,is then passing by men as he talks.,replays a man roping up to his horse while covering it.\n14306,anetv_HV_yqsiFoKA,17349,People are around the ring wtching the wrest. three journalists,People are around the ring wtching the wrest.,three journalists,gold,break away from the audience.,take pictures of someone demonstrating cases for them.,are doing various tricks with another.,are standing wearing suits and watch the men in the ring.\n14307,anetv_HV_yqsiFoKA,17348,Man wearing a black vest is alone on a ring wrestling with another man who is kneeling on the floor. two other men,Man wearing a black vest is alone on a ring wrestling with another man who is kneeling on the floor.,two other men,gold,are helping to begin fighting him.,are kneeling on the floor in front of them with tennis torches.,gets in the ring and are wresting the man in the center.,adjusted the flagpole with poles and bulls's hands.\n14308,anetv_UQXB3JOoxYE,17494,\"We soon see the man again in the water with his arm around the boy's shoulders, the boy triumphant after his successful ride. All in all everyone\",\"We soon see the man again in the water with his arm around the boy's shoulders, the boy triumphant after his successful ride.\",All in all everyone,gold,stops playing and returns right to the playing - while the boy in the yellow shirt win.,looks riding down the street and the other person repeats everything.,is real and several pictures at the middle of the stricken people are seen.,seemed to enjoy a great day outdoors whether in the boat or skiing or both.\n14309,anetv_UQXB3JOoxYE,17492,\"We see a short flashback as we then see him in the boat in then in the water being assisted with his skis. Once again he is in the water, and the boat\",We see a short flashback as we then see him in the boat in then in the water being assisted with his skis.,\"Once again he is in the water, and the boat\",gold,goes quickly through the river.,is able and the man again jumps.,is low before the ocean.,\"slowly picks up speed, pulling the young man upright until he is skiing full - speed behind the boat.\"\n14310,anetv_UQXB3JOoxYE,17491,\"A boy sits in the water, his skis out in front of him, while he holds the handle of the rope between his legs. We\",\"A boy sits in the water, his skis out in front of him, while he holds the handle of the rope between his legs.\",We,gold,are lying on the carpet awaiting sun.,see the man in the canoe dismount and his feet fall.,point to a male swimmer up to a man on the water while people watching and sitting in the ocean.,see a short flashback as we then see him in the boat in then in the water being assisted with his skis.\n14311,anetv_UQXB3JOoxYE,17493,\"A man comes up beside him, his arms outstretched as he holds a camera, and then a show of him with several other men in the boat. We soon\",\"A man comes up beside him, his arms outstretched as he holds a camera, and then a show of him with several other men in the boat.\",We soon,gold,see the replay and title credits.,see the men throw the wrestling again.,crawl over the roof of the rooftop and find richard parker following it.,\"see the man again in the water with his arm around the boy's shoulders, the boy triumphant after his successful ride.\"\n14312,anetv_9MGnF59gZfM,15562,He shoots an arrow and grabs another one from behind hm and gets ready to shoot again. He,He shoots an arrow and grabs another one from behind hm and gets ready to shoot again.,He,gold,\"gets his top off of his opponent, walks alongside, then runs to his brother and gives someone a glance.\",runs his hands up through the holes stroking the hair of his face.,\"tries the third time, then bends down to shoot the arrow into the net from a distance.\",pulls back the string on the bow and releases it along with the arrow.\n14313,anetv_jnOqi_9KJiE,7869,She is then sitting in front of a fish tank crying. She,She is then sitting in front of a fish tank crying.,She,gold,is putting eyeliner on her cheeks as she continues over her eye as well as put on her face.,holds her shoulder and puts her head down.,dumps water into a small chunk of ice with a help.,begins using several tubes in a tube down a tube.\n14314,anetv_jnOqi_9KJiE,14203,A woman wearing a bandanna and a grey shirt is sitting down on a grey couch carving something. She then,A woman wearing a bandanna and a grey shirt is sitting down on a grey couch carving something.,She then,gold,\"takes the mans hair off, spotting her, and curlers before speaking along the side.\",puts on his upper back and focuses the clip on a small beam.,begins talking in front of a tank of fish and bends her head down in agony.,gets the hat cut and starts cutting it when people is sitting around.\n14315,anetv_lq20hEghHtU,7224,A young girl climbs on top of a camel while others walk around her. A man,A young girl climbs on top of a camel while others walk around her.,A man,gold,twitches the woman on a set of scissors.,lifts a person's legs up.,stands up to her legs and walks off the horse to catch marley's leash.,leads the camel around in circles while the girl laughs to the camera.\n14316,anetv_lq20hEghHtU,7225,A man leads the camel around in circles while the girl laughs to the camera. The camel,A man leads the camel around in circles while the girl laughs to the camera.,The camel,gold,hops onto the camel by pedaling while looking around while looking at the camera.,hits two more people and the man continues to dance with the kids.,\"continues, chasing and pulling on a camel while he continues to swing the camel with both feet.\",continues walking around and stops to let the girl off and walk down stairs.\n14317,anetv_lq20hEghHtU,13791,A girl is sits on the back of a camel. A man in a black jacket,A girl is sits on the back of a camel.,A man in a black jacket,gold,sits on the ground.,leads the camel around in a circle.,is talking to the other someone.,is talking while sitting on a canoe.\n14318,anetv_lq20hEghHtU,13792,A man in a black jacket leads the camel around in a circle. The girl,A man in a black jacket leads the camel around in a circle.,The girl,gold,rides away from the calf and runs back into the camera.,is standing in the kitchen jumping with others.,continues swinging quickly as the boy is seen riding again.,gets off on a red platform and walks down the stairs.\n14319,anetv_t0XM3ivJYUo,2867,The ball bounces of the table and falls to the ground. A man,The ball bounces of the table and falls to the ground.,A man,gold,dives down to the ground and is trying to catch his action.,throws a dart to the front.,in the stands is motionless.,waves his hands gesturing to the players.\n14320,anetv_t0XM3ivJYUo,2866,\"The boy in a white, tee shirt places the handle put of the paddle on this chin before he serves. The ball\",\"The boy in a white, tee shirt places the handle put of the paddle on this chin before he serves.\",The ball,gold,used it to play again.,is within the cannon.,bounces of the table and falls to the ground.,hit the ball back and forth and the crowd applauds.\n14321,anetv_t0XM3ivJYUo,9383,Two people are seen playing ping pong while a group of people watch on the side. The boys,Two people are seen playing ping pong while a group of people watch on the side.,The boys,gold,play with one another and ends with them wandering around the sides and holding their bows and watch on the side.,throw a ball in a pitcher and run for the ball.,laugh and cheer with one another as the people watch on the sidelines and backstage walks around to kiss the man.,hit the ball back and fourth to one another.\n14322,anetv_t0XM3ivJYUo,9384,The boys hit the ball back and fourth to one another. They,The boys hit the ball back and fourth to one another.,They,gold,continue hitting the ball back and fourth on the ground.,continue playing the game with each other.,hit the ball off the wall while others watch on the side.,turn the object around and continue throwing the ball.\n14323,anetv_t0XM3ivJYUo,2865,\"Two boys are playing table tennis. The boy in a white, tee shirt\",Two boys are playing table tennis.,\"The boy in a white, tee shirt\",gold,form a slack line in front of him.,kicks a ball in front of him and walking away.,places the handle put of the paddle on this chin before he serves.,is talking to the camera that has several swimming trunks and dresses.\n14324,lsmdc0028_The_Crying_Game-63283,18439,\"Someone looks up at him, his face bathed in sweat. He\",\"Someone looks up at him, his face bathed in sweat.\",He,gold,glances down at the roadside clock.,breathes in mighty gulps of air.,sees someone's gun on his cheek.,leads them to the kitchen floor.\n14325,lsmdc0028_The_Crying_Game-63283,18438,Someone walks to someone and slowly takes the hood off. Someone,Someone walks to someone and slowly takes the hood off.,Someone,gold,\"suggests the black area, trim doubles.\",\"looks up at him, his face bathed in sweat.\",walks across the length of the street.,climbs out with his cigarette and reaches over and takes off the hat.\n14326,lsmdc0028_The_Crying_Game-63283,18440,Someone is n't smiling anymore. Someone,Someone is n't smiling anymore.,Someone,gold,picks his briefcase off the table and knocks over a glass.,goes back to his seat and drinks his tea.,grabs someone by the collar and beams at him.,feeds a glass of water.\n14327,anetv_Gi1N3FtCZGo,8053,He lifts a barbell up to his chest. He,He lifts a barbell up to his chest.,He,gold,lifts the barbell up so she does n't lift it.,\"glances around, then drops his head.\",\"pauses, then lifts it over his head.\",lifts it up to the height then walks in.\n14328,anetv_Gi1N3FtCZGo,8052,A boy is inside a gym. He,A boy is inside a gym.,He,gold,is playing a set of drums.,is playing a guitar back and forth against the pole.,lifts a barbell up to his chest.,holds a cup of coffee in his hands as he talks to the camera.\n14329,lsmdc3046_LARRY_CROWNE-21773,19636,\"Later, he rides his scooter through his neighborhood. He\",\"Later, he rides his scooter through his neighborhood.\",He,gold,is alone on an dirt hillside overlooking the sand.,\"throws the mirror, his hair shifting.\",\"passes the neighbor walking a dog, then turns a corner.\",covers his ears as the door opens.\n14330,lsmdc3046_LARRY_CROWNE-21773,19640,Someone stands and takes a few steps forward. He,Someone stands and takes a few steps forward.,He,gold,tries to break someone's spell.,moves his arms to his middle and shakes him.,is hauled into his arms.,sweeps his gaze over the surrounding neighborhood.\n14331,lsmdc3046_LARRY_CROWNE-21773,19637,\"He passes the neighbor walking a dog, then turns a corner. His scooter's headlights briefly\",\"He passes the neighbor walking a dog, then turns a corner.\",His scooter's headlights briefly,gold,streams back to the corner.,illuminates red - striped diagonally across the sign.,loops through the parking lot.,form on the window.\n14332,lsmdc3046_LARRY_CROWNE-21773,19641,\"He sweeps his gaze over the surrounding neighborhood. The idyllic tranquil moment, then\",He sweeps his gaze over the surrounding neighborhood.,\"The idyllic tranquil moment, then\",gold,flashes back to the normal space on his tail.,turns away and grimly heads inside.,gets back to his gumballs.,lags now as someone rides the wave.\n14333,lsmdc3046_LARRY_CROWNE-21773,19635,\"Now a view through window blinds shows someone. Later, he\",Now a view through window blinds shows someone.,\"Later, he\",gold,peeks in his bed.,sets her in the doorway as someone watches from the saloon.,walks to the door of the house and takes out the light bulb.,rides his scooter through his neighborhood.\n14334,lsmdc3046_LARRY_CROWNE-21773,19639,It's warmly lit window show a family milling about inside. Someone,It's warmly lit window show a family milling about inside.,Someone,gold,stands and takes a few steps forward.,takes beers on and takes full swig of his scotch.,walks away and shakes his own hand.,takes off the bed on the way through from the driveway.\n14335,lsmdc3046_LARRY_CROWNE-21773,19633,\"He gets on his scooter. Now in the kitchen at someone's, someone\",He gets on his scooter.,\"Now in the kitchen at someone's, someone\",gold,transfers the bullets as he crawls inside through an open office window.,gives the camera to someone.,holds out a jar.,transfers a grilled sandwich on to a plate.\n14336,lsmdc3046_LARRY_CROWNE-21773,19631,\"Watching them, someone knocks on the window. He\",\"Watching them, someone knocks on the window.\",He,gold,\"faces the group, standing grandma standing by the curtains, furrows her brow, then faces someone.\",hands his tearful phone to someone.,throws up his hand and turns away.,\"backs away from the door, tears streaming from her eyes.\"\n14337,lsmdc3046_LARRY_CROWNE-21773,19632,He throws up his hand and turns away. He,He throws up his hand and turns away.,He,gold,\"picks up the sock, keeps behind and walks away.\",walks up to the bar.,gets on his scooter.,plays with another soldier.\n14338,anetv_Q_v6MdHJ7Go,1217,A man is seen kneeling on a floor and puts his hands behind his head. He then,A man is seen kneeling on a floor and puts his hands behind his head.,He then,gold,holds up tools and clips to show how to iron it properly.,pulls off the hammer and bends it to the floor while still speaking to the camera.,picks up the bag and removes a sheet from the floor.,bends his body forward and performs several jumps onto his feet.\n14339,anetv_nDo0nfs9Ee4,19403,A dog is seen sitting a shower with a person whose running water all over the dog. The person,A dog is seen sitting a shower with a person whose running water all over the dog.,The person,gold,pets the dog while another is dragging a dog with a hose.,scrubs the dog while the dog chases.,uses a sponge and then blow dries someone on his face while looking at the camera and putting gently on his face.,continues spraying water on the dog while the animal look off into the distance.\n14340,anetv_nDo0nfs9Ee4,17657,A man and a dog are standing in a shower stall. the man,A man and a dog are standing in a shower stall.,the man,gold,sprays an oven in a room room and shows how to clean a pink bowl and make a sandwich.,picks up a toothbrush and scrubs it from the dog.,holds the door open and washes before he uses to clean the door and dances.,bends down and rubs shampoo on the dog.\n14341,anetv_nDo0nfs9Ee4,17658,The man bends down and rubs shampoo on the dog. the dog,The man bends down and rubs shampoo on the dog.,the dog,gold,carries his head and walks around.,is petting the dog.,stands and licks himself.,jumps on the dog's back.\n14342,anetv_-t2ikmhg9_w,998,\"She demonstrates how to apply powder to the carpet, and vacuum it up. She then\",\"She demonstrates how to apply powder to the carpet, and vacuum it up.\",She then,gold,shows different mirrors for the vacuum as well as laughing about the attachment.,shows the ingredients creating a certain championships as she reads the drills to.,polishes carpet as she shows them correctly for a final time.,\"shows how to clean the vacuum out, and the mechanics of the machine.\"\n14343,anetv_-t2ikmhg9_w,997,\"A woman is seated on the floor, talking about a vacuum cleaner. She\",\"A woman is seated on the floor, talking about a vacuum cleaner.\",She,gold,\"demonstrates how to apply powder to the carpet, and vacuum it up.\",climbs over the top of a wall and climbs down to her underwear.,leads into a bunch of clothes sitting around a counter and pans around to see what's down.,is standing in a kitchen eating a piece of paper.\n14344,anetv_Opqg11Nkb7c,14967,A camper describes how to make a fire. The camper,A camper describes how to make a fire.,The camper,gold,does a handstand while indoor solo discuss and rafters zoom nex to red drums and 30 man on the floor.,shows all the ingredients needed and prepares the fire.,burn in the red and red.,is dead on it.\n14345,anetv_Opqg11Nkb7c,9287,A man walks through the woods with a loaded backpack. the man then,A man walks through the woods with a loaded backpack.,the man then,gold,gathers sticks from the forest.,is outside.,jumps onto a ridge.,returning to he brushes.\n14346,anetv_Opqg11Nkb7c,9288,The man then gathers sticks from the forest. with the sticks the man,The man then gathers sticks from the forest.,with the sticks the man,gold,stands in the position as he frame and releases the weight.,cuts out out in front of him.,begins to make a fire.,rides up the horse and falls on top of another tree.\n14347,anetv_Opqg11Nkb7c,14968,The camper shows all the ingredients needed and prepares the fire. The man,The camper shows all the ingredients needed and prepares the fire.,The man,gold,\"puts frosting together in a pan and basically, with the chocolate as he painted.\",picks up the gift and flips the cellophane back in the right.,lights the fire a few times to get it going and then hikes away.,eats it still as the men continue to serve the food.\n14348,anetv_j3P7ttoKGeY,6854,\"Once the first game is finished, another set of men begin to compete and starts to clip the ball over the people. Next, women\",\"Once the first game is finished, another set of men begin to compete and starts to clip the ball over the people.\",\"Next, women\",gold,eats chips and ice ice to one another while scissors chips and chips are brown.,begin running around bumping and kicking the clubs.,laugh some more and begin to celebrate.,join and starts to roll the ball on the edge of the table as they make goals.\n14349,anetv_j3P7ttoKGeY,6852,A group of people begin to walk in a room and they begin to play a game of Foosball. The game begins to intensifies and the men,A group of people begin to walk in a room and they begin to play a game of Foosball.,The game begins to intensifies and the men,gold,\"lift the women, moving by shaking the pages and then extend their hands to one of the players that they live enjoying.\",put out their hand to the camera and lead into a player's pictures.,begin to look at each other in the eye as they start to make goals.,get to their hands and shake their bellies for the floor.\n14350,anetv_j3P7ttoKGeY,6853,\"The game begins to intensifies and the men begin to look at each other in the eye as they start to make goals. Once the first game is finished, another set of men\",The game begins to intensifies and the men begin to look at each other in the eye as they start to make goals.,\"Once the first game is finished, another set of men\",gold,begin to compete and starts to clip the ball over the people.,\"begins fighting and fighting, more, and they both continue to talk about the thing kicking.\",take position to get a enemies done.,begin to kick up as they begin to throw another one.\n14351,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8904,\"She changes the radio station and turns her tender gaze to someone. Reaching out, she\",She changes the radio station and turns her tender gaze to someone.,\"Reaching out, she\",gold,strokes his cheek with her finger then ruffles his hair.,rips her face from herself and slowly steps away.,touches the cross perched on her palm.,takes off her glasses and studies someone.\n14352,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8897,Someone meets her gaze and she rubs the back of his head. She,Someone meets her gaze and she rubs the back of his head.,She,gold,smiles then kisses his brow.,kisses her forehead and watches him sadly.,follows his parched lips.,pulls off her ponytail.\n14353,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8912,The flame blazes at a horizontal angle. Someone,The flame blazes at a horizontal angle.,Someone,gold,turns then throws the match down.,stops writing on them.,and someone rush out of the bus.,spots a streak of blood on her coat.\n14354,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8916,\"In a deserted lot, the suvs surround the hatchback. Someone\",\"In a deserted lot, the suvs surround the hatchback.\",Someone,gold,enters the airport box and turns to someone.,stands on the stairway watching a fallen tree.,takes a phone and rejoins them.,\"gets out in a glare of headlights, gun in hand.\"\n14355,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8900,\"He sips from his flask as lightning flashes in the stormy sky. In the converted garage, someone\",He sips from his flask as lightning flashes in the stormy sky.,\"In the converted garage, someone\",gold,stands in thick with photos on his computer.,lights up with a skinny tool on a power grill.,sits hunched at a cluttered table.,braces himself against the young man's shoulders.\n14356,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8894,\"On the street, they hurry over to the silver hatchback parked among other cars. The wavy haired man and his men\",\"On the street, they hurry over to the silver hatchback parked among other cars.\",The wavy haired man and his men,gold,creep toward an open window.,walk into second - fronted home.,watch from their own vehicles.,walk through a high - ruined building through a city and wave to an american biker on a road.\n14357,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8937,\"Someone's slack jawed gaze shifts of the otherworldly creature to his henchmen. Turning, the creature\",Someone's slack jawed gaze shifts of the otherworldly creature to his henchmen.,\"Turning, the creature\",gold,turns to someone who holds the wand key.,\"slings his chain back, grazing someone's shoulder.\",is flipped onto her wide lips.,takes shape at the top of the book.\n14358,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8908,Someone topples a shelving unit. The suv,Someone topples a shelving unit.,The suv,gold,halts at a window.,gets the cart up the tail.,\"is next to someone, lying on the grass.\",runs the hatchback off the road and down a rugged slope.\n14359,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8911,\"In his perch, someone puts a cigarette in his lips and strikes a match. The flame\",\"In his perch, someone puts a cigarette in his lips and strikes a match.\",The flame,gold,blazes at a horizontal angle.,relaxes black and he hits the table.,grows lighter watches as a fuse from the upper chamber lies dead.,retreats into the flamethrower hole.\n14360,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8941,A smudge of smoking embers stands in place of the goateed henchman. The mustached thug,A smudge of smoking embers stands in place of the goateed henchman.,The mustached thug,gold,\"eyes them fearfully, then faces the swaying demonic creature.\",pulls out the rocky journals from the tower.,watches as someone knocks the cartridges out of his eye.,hangs with a prom roll.\n14361,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8910,\"The suv rams the hatchback against a wall. In his perch, someone\",The suv rams the hatchback against a wall.,\"In his perch, someone\",gold,pulls his pocket out wearing a cloth.,grabs passports from the big box.,puts a cigarette in his lips and strikes a match.,uses a silencer onto the ladder.\n14362,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8903,Someone sleeps in the passenger seat. She,Someone sleeps in the passenger seat.,She,gold,\"reaches down and reads, in the hallway with him.\",gets her boiling nozzle.,\"pulls him aside, then walks back toward the shore.\",changes the radio station and turns her tender gaze to someone.\n14363,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8922,\"As someone struggles, someone smirks and bends down. The other thug\",\"As someone struggles, someone smirks and bends down.\",The other thug,gold,pulls the covers back out.,grabs someone and wraps her around the man's elbow.,drags someone from the car.,leaves with a right hook.\n14364,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8926,Someone crumples to the ground. Someone,Someone crumples to the ground.,Someone,gold,\"reels someone back, his face illuminated by a pose.\",snaps his neck and is about to knock him on someone.,trips over the bus.,elbows her attacker's knee and grabs for his gun.\n14365,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8888,\"Someone shares a long gaze with his visitor, staring at him with his ice blue eyes. Now pedestrians\",\"Someone shares a long gaze with his visitor, staring at him with his ice blue eyes.\",Now pedestrians,gold,pass an apartment filter lit up by a small white colored vase.,cross a bustling town square.,follow a resigned sidewalk.,surround the car indoors as onlookers cross the crosswalk sign.\n14366,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8929,Someone's head droops forward defeatedly. Someone,Someone's head droops forward defeatedly.,Someone,gold,\"stands, aims his revolver at her and cocks the hammer.\",reciprocates as someone holds someone up.,opens his eyes as he nods through the ivy - covered haze.,gazes at the green crop.\n14367,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8902,He clenches someone's photo in his trembling hands. Someone,He clenches someone's photo in his trembling hands.,Someone,gold,\"sets the stilts on the ground, fits it into his hand.\",\"wanders out a lush, dusty path.\",sleeps in the passenger seat.,stares at the newspaper.\n14368,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8936,\"Staring, someone rolls unsteadily in the gravel. He\",\"Staring, someone rolls unsteadily in the gravel.\",He,gold,grabs a piece of grapes and withdraws it from him.,\"raises his fist to his opposite shoulder, then lifts his other hand and at angle.\",\"sniffs at the road, then steps into the school.\",goes off up the side of the road.\n14369,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8955,\"It explodes on impact, destroying the suv. He\",\"It explodes on impact, destroying the suv.\",He,gold,stomps out of someone's arms as the wind rushes past.,rushes over and snaps the blade.,swings at the breast chamber containing a manmade target.,joins someone and the heavyset thug.\n14370,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8954,\"Someone and his brutish henchmen run out beside her, each armed with an enormous rifle. The shots\",\"Someone and his brutish henchmen run out beside her, each armed with an enormous rifle.\",The shots,gold,\"rip off the wrestlers, move up in the two, then fall to the ground.\",begin to go descending more practicing martial arts as people walk by and looking into a small black circle that is repeated.,\"are laid out, snowed the boy, still standing and hiding.\",send the rider flying.\n14371,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8932,A heavy black boot with burn marks steps off the footrest and grinds into the gravel. The rider,A heavy black boot with burn marks steps off the footrest and grinds into the gravel.,The rider,gold,swings himself off of the monstrous vehicle.,\"runs after the second, is preventing the bridge vaulters.\",walks in and leaves the seat on the clown's bench outside.,drops to a stop boot and rushes to the center of the ring.\n14372,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8918,A male figure lunges out and beats her. He,A male figure lunges out and beats her.,He,gold,collapses around a brick.,continues swinging off with her arms and punches like singing.,forces her down as other thugs get out of their suvs.,\"gazes off, cock, and broad.\"\n14373,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8928,It fires into the rocky ground. Her attacker,It fires into the rocky ground.,Her attacker,gold,\"peels away, breaking off someone's smiling grasp.\",regains control of the gun and pistol whips her.,sweeps around the collapsible and shoots into the fly ship.,spreads her arms and lowers her arm.\n14374,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8956,He joins someone and the heavyset thug. The heavyset thug,He joins someone and the heavyset thug.,The heavyset thug,gold,forces someone into the back of another suv while someone gets in the front.,shoots out his bloody face.,tosses the canister away.,\"throws the first into his sedan, but the sniper door forces a effect.\"\n14375,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8939,\"He flings it around the thug and gives it a yank, incinerating him in a flash. Lowering his chain, the rider sways side to side, his head\",\"He flings it around the thug and gives it a yank, incinerating him in a flash.\",\"Lowering his chain, the rider sways side to side, his head\",gold,\"down on top, shielding his face from the rotting face.\",wedged against the far side of the road.,crooked upward as he dances near and fireballs stream off the roof.,tilting to and fro.\n14376,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8948,\"Someone opens the rear hatch of his suv, pulls out an enormous rifle and hands it off to his brutish henchman. The rider\",\"Someone opens the rear hatch of his suv, pulls out an enormous rifle and hands it off to his brutish henchman.\",The rider,gold,\"circles his car, knocking open a door and crashes to the ground in a high reversing.\",\"keeps his head in a firm grip, staring relentlessly.\",leaps the final attacker into another chest into the water.,hops off the bike and checks his initial pump.\n14377,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8913,Someone turns then throws the match down. Now he,Someone turns then throws the match down.,Now he,gold,dances the room and everyone sit ups.,throws the satellite dish while bright light shines on ceiling windows.,pulls up to an empty space on a corner table on a balcony for a performance.,runs towards someone's garage to find a blazing light moving within.\n14378,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8909,The suv runs the hatchback off the road and down a rugged slope. The suv,The suv runs the hatchback off the road and down a rugged slope.,The suv,gold,gets outside the airport.,rams the hatchback against a wall.,catches the gravel pit.,spins sharply to someone.\n14379,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8949,\"The rider keeps his head in a firm grip, staring relentlessly. Our vision\",\"The rider keeps his head in a firm grip, staring relentlessly.\",Our vision,gold,\"swerves up to the arizona, where he fires up.\",doubles as the thug's eyes cross and he sinks down.,changes back into the water.,\"fixes on the other's tiny finger as someone looks from the engine, casually out of sight.\"\n14380,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8957,\"The heavyset thug forces someone into the back of another suv while someone gets in the front. As it pulls away, someone\",The heavyset thug forces someone into the back of another suv while someone gets in the front.,\"As it pulls away, someone\",gold,leads the teen toward the rear area.,takes out her gloved hand and grabs her pistol from the sidecar.,holds it free.,reaches out for it then slumps breathlessly.\n14381,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8906,\"In the garage, someone lurches. The hatchback swerves and the suv\",\"In the garage, someone lurches.\",The hatchback swerves and the suv,gold,pulls up to side swipe it.,swerves toward the sky.,\"veers into a clearing, as if dragged by the metal half of it.\",swerves as the vehicle crashes through a lake.\n14382,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8890,\"In a cafe, someone sits alone at a table, watching a man in a grey suit take off his wedding ring. She\",\"In a cafe, someone sits alone at a table, watching a man in a grey suit take off his wedding ring.\",She,gold,\"steps to a bar in front of him, then downs one of the same strikes of several bottles in her other hand.\",\"starts her tears, sits on an examination table facing a dark - haired nurse.\",\"glowers, someone looks unhappily at someone, who follows someone staring, then voice low over the din of the gambling room.\",averts her flirtatious gaze and sips a cup of coffee.\n14383,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8893,\"She winks at him and they head out. On the street, they\",She winks at him and they head out.,\"On the street, they\",gold,form a fence and play an enormous cathedral.,hurry over to the silver hatchback parked among other cars.,show a large city road.,\"share a tight smile, then share a smile.\"\n14384,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8917,\"Shielding her face, she shoots blindly. A male figure\",\"Shielding her face, she shoots blindly.\",A male figure,gold,lunges out and beats her.,sits out on the hillside.,watches in the sun.,steps out with her gun.\n14385,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8933,Flames glow within its engine and exhaust vents. Lightening,Flames glow within its engine and exhaust vents.,Lightening,gold,casts a glow on the mustached thug as he holds his shotgun ready.,'s mask fires and the full bullets smashing into his radio wire.,\"out of the building, someone finds a general clinging to the cuffs.\",\"at a corner, he selects a coconut as he watches.\"\n14386,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8931,\"It lands in the middle of the lot, filling our view as it spins to a halt. The others\",\"It lands in the middle of the lot, filling our view as it spins to a halt.\",The others,gold,\"turn towards the cottage, forcing.\",\"stand motionless, staring at the rider's flaming skull.\",lie around it as if they seems to drop a better control.,\"are jogging by, and eventually down away from the school.\"\n14387,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8958,\"As it pulls away, someone reaches out for it then slumps breathlessly. Now we\",\"As it pulls away, someone reaches out for it then slumps breathlessly.\",Now we,gold,gaze down on someone as he lies in a hospital bed.,\"drift back to someone, who lies in plastic - yellow blanket holding modern stationary sit.\",see someone's moving figure in letters.,\"gaze out from under its solid silver hatchback, which glows through a blue sky.\"\n14388,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8942,\"The mustached thug eyes them fearfully, then faces the swaying demonic creature. He\",\"The mustached thug eyes them fearfully, then faces the swaying demonic creature.\",He,gold,shaves his friend's face once more.,takes off his jacket and settles on his old sofa.,fires at the agent sweeping the door from the room.,stops inches from the mustached thug and looms over him.\n14389,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8914,Now he runs towards someone's garage to find a blazing light moving within. Someone,Now he runs towards someone's garage to find a blazing light moving within.,Someone,gold,sees someone through a hole in a wall.,\"staggers back, shielding his eyes.\",stops toward his camera.,\"pauses, glances around and locks the trunk.\"\n14390,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8947,The henchman's wide eyes reflect his ghastly flaming visage as the rider cocks his head appraisingly then leans in to peer more closely at the man. Someone,The henchman's wide eyes reflect his ghastly flaming visage as the rider cocks his head appraisingly then leans in to peer more closely at the man.,Someone,gold,\"unrolls a honing swatter in his right hand, clutching it.\",glances out a window as the officials rush between them.,\"opens the rear hatch of his suv, pulls out an enormous rifle and hands it off to his brutish henchman.\",leaps a steady motion as he tries to bite someone on the shoulder.\n14391,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8925,\"The mustached thug slams him down, zip ties his hands and throws him head first against the suv. Someone\",\"The mustached thug slams him down, zip ties his hands and throws him head first against the suv.\",Someone,gold,crumples to the ground.,answers his cell phone.,jumps on top of the barricade and smoke for safety.,rides in front of him.\n14392,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8892,\"The businessman heads off, bumping into a woman's chair. Someone\",\"The businessman heads off, bumping into a woman's chair.\",Someone,gold,dips a hose as snow slides down a trail of wake passes.,removes someone's helmet.,\"primps his hair, taking his time with himself.\",shows the man's wallet to someone.\n14393,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8921,\"A thug beats at the car door. As someone struggles, someone\",A thug beats at the car door.,\"As someone struggles, someone\",gold,smiles at the guards.,smirks and bends down.,blows down the pipe.,flips the vehicle free.\n14394,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8905,\"Reaching out, she strokes his cheek with her finger then ruffles his hair. Three suvs\",\"Reaching out, she strokes his cheek with her finger then ruffles his hair.\",Three suvs,gold,sit together listening to the radio.,sit on a bench in an open barn where someone also sawing a breath.,come up behind them.,sit in a room amid the dense furs.\n14395,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8946,\"Staring, someone grabs his brutish henchmen's shoulder. Someone\",\"Staring, someone grabs his brutish henchmen's shoulder.\",Someone,gold,sees someone face twice.,grabs the mustached thug's face.,kisses someone on his crotch.,mounts the spins as he faces the enemy.\n14396,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8944,\"He leans over his victim who trembles and sputters incoherently. Looking along, the heavyset thug\",He leans over his victim who trembles and sputters incoherently.,\"Looking along, the heavyset thug\",gold,stretches his breast finger into the scanner.,lifts the cork from his mouth and swallows.,spits a blue book at him.,drops his rifle and sinks to his knees.\n14397,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8899,Now someone perches in a crumbling pane - less window high above the ground. He,Now someone perches in a crumbling pane - less window high above the ground.,He,gold,grabs someone's blue hand.,sips from his flask as lightning flashes in the stormy sky.,stabs them on the back.,returns and finds names.\n14398,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8950,Someone's eyes snap open. Someone's eyes shift upward and his head,Someone's eyes snap open.,Someone's eyes shift upward and his head,gold,moves in cold sweat.,drops side to side.,rolls to follow them.,lolls to his back.\n14399,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8901,\"In the converted garage, someone sits hunched at a cluttered table. He\",\"In the converted garage, someone sits hunched at a cluttered table.\",He,gold,mashes up a calendar.,lifts his head around the corner of the house.,searches within a rod inside of the small house.,clenches someone's photo in his trembling hands.\n14400,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8927,Someone elbows her attacker's knee and grabs for his gun. It,Someone elbows her attacker's knee and grabs for his gun.,It,gold,hurls a charge at someone.,suddenly lunges for the thug.,crashes behind him and lands against a shore.,fires into the rocky ground.\n14401,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8896,\"In the hatchback, someone shows someone the businessman's wedding ring. Someone meets her gaze and she\",\"In the hatchback, someone shows someone the businessman's wedding ring.\",Someone meets her gaze and she,gold,turns on a smile as she heads out of the guests.,rubs the back of his head.,nods and hurries off.,shrugs his hands affectionately.\n14402,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8919,He forces her down as other thugs get out of their suvs. Someone's attacker,He forces her down as other thugs get out of their suvs.,Someone's attacker,gold,rinses her face and disbelief forces someone to his knees.,fixes her as the beast approaches.,holds her arms behind her back.,\"looms in front of her, then pulls a chair away from the window.\"\n14403,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8938,\"Turning, the creature slings his chain back, grazing someone's shoulder. He\",\"Turning, the creature slings his chain back, grazing someone's shoulder.\",He,gold,\"flings it around the thug and gives it a yank, incinerating him in a flash.\",returns in the opposite direction which he had been concentrating.,deflects the chopped wand.,bites the vampire's mechanical claws.\n14404,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8945,\"Looking along, the heavyset thug drops his rifle and sinks to his knees. Staring, someone\",\"Looking along, the heavyset thug drops his rifle and sinks to his knees.\",\"Staring, someone\",gold,opens the rest of the cloth and puts his plastic bag onto the counter.,pinches the boys lip fearlessly.,sees the huge sword fall metal.,grabs his brutish henchmen's shoulder.\n14405,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8889,\"A man haggles with an older woman. In a cafe, someone\",A man haggles with an older woman.,\"In a cafe, someone\",gold,rests a coffee cup down on the shelf before someone.,leads a waiter to a table.,mocks a man with a bundle.,\"sits alone at a table, watching a man in a grey suit take off his wedding ring.\"\n14406,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8924,\"As the heavyset thug looks on, someone punches his mustached attacker in the gut. The mustached thug\",\"As the heavyset thug looks on, someone punches his mustached attacker in the gut.\",The mustached thug,gold,\"reaches out, pulls out his mouthwash pocket and hands it to someone.\",keeps pulling the fleeing thug.,presses his hand against the steward and paste presses the tip of a index card.,\"slams him down, zip ties his hands and throws him head first against the suv.\"\n14407,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8920,Someone's attacker holds her arms behind her back. A thug,Someone's attacker holds her arms behind her back.,A thug,gold,swings the guard across from her.,jumps someone down in the neck.,beats at the car door.,kicks a referee with a bag.\n14408,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8935,\"The chain links glow and the rider turns his scorched flaming skull. Staring, someone\",The chain links glow and the rider turns his scorched flaming skull.,\"Staring, someone\",gold,pokes amongst the air until his head is regain.,struggles and is suspended filming.,rolls unsteadily in the gravel.,handed the owl to his passing.\n14409,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12524,8953,\"Lying in the dirt, someone reaches out desperately. Someone and his brutish henchmen\",\"Lying in the dirt, someone reaches out desperately.\",Someone and his brutish henchmen,gold,\"run out beside her, each armed with an enormous rifle.\",climb the set of doors.,stand at the cabin - lying entrance.,stand at the end of the wave.\n14410,anetv_O_tZAD_opA4,12365,She begins to instruct her. She,She begins to instruct her.,She,gold,takes to pose while talking.,regards herself carefully and waits a moment by appearing.,is a correct break dancing herself.,helps her stand on her head.\n14411,anetv_O_tZAD_opA4,12364,She then stands in front of a child gymnast. She,She then stands in front of a child gymnast.,She,gold,performs a high jump.,puts back legs on the bars.,bounces off the horse bars.,begins to instruct her.\n14412,anetv_O_tZAD_opA4,1143,Woman is next to a kid talking to the camera and shows the corret position to make a handstand. the blonde kid,Woman is next to a kid talking to the camera and shows the corret position to make a handstand.,the blonde kid,gold,is standing in the woods and is talking to the camera in a large way.,is running and doing a somersault.,is sitting behind a counter talking to the man while the woman shaves her leg.,are in the chair and swap a number.\n14413,lsmdc1024_Identity_Thief-82153,7721,\"Holding the card to his mouth, he breathes on the strip, then wipes the card on his jacket. Someone\",\"Holding the card to his mouth, he breathes on the strip, then wipes the card on his jacket.\",Someone,gold,someone climbs off an rocky slanted floor where her french hair lies on a heated ledge.,meets her gaze and gives a faint shrug.,wind blows air overlay gum in his mouth.,pushes the card in again.\n14414,lsmdc1024_Identity_Thief-82153,7720,\"At the pump, someone puts in his credit card. Holding the card to his mouth, he\",\"At the pump, someone puts in his credit card.\",\"Holding the card to his mouth, he\",gold,hurries along the moonlit beach.,raises the button down his bow while someone films them.,\"breathes on the strip, then wipes the card on his jacket.\",raises it with a index finger.\n14415,lsmdc1024_Identity_Thief-82153,7712,She jumps back with surprise. He,She jumps back with surprise.,He,gold,falls in on all.,locks himself on the wall.,speaks to her with his hands gently holding her face.,passes between flips and trips.\n14416,lsmdc1024_Identity_Thief-82153,7719,\"He pulls into a gas station. At the pump, someone\",He pulls into a gas station.,\"At the pump, someone\",gold,attaches two rubber tires to make it train.,\"appears at the top, and peeks around the corner back to watch someone approach.\",puts in his credit card.,arrives at the front of his pickup and puts his hands into his pockets.\n14417,lsmdc1024_Identity_Thief-82153,7715,\"He smiles and lifts her off her feet. At a store, she\",He smiles and lifts her off her feet.,\"At a store, she\",gold,tries on a ring.,chuckles using various rocks.,adjusts her blanket and straddles his arm.,\"pulls his curtain, very softly to herself.\"\n14418,lsmdc1024_Identity_Thief-82153,7718,\"He glances down at the dashboard, where the low - gas light blinks on. He\",\"He glances down at the dashboard, where the low - gas light blinks on.\",He,gold,begins to wind down the tip of his foot.,turns on the spot inside the door.,pulls into a gas station.,\"lowers his gaze, then returns his gaze to the bare window then moves closer.\"\n14419,lsmdc1024_Identity_Thief-82153,7711,\"He raises his gaze and nods. Now, someone's daughter\",He raises his gaze and nods.,\"Now, someone's daughter\",gold,picks up a dress at his table.,sits down at the pool table.,eyes her son at his desk.,kicks a soccer ball off a field.\n14420,lsmdc1024_Identity_Thief-82153,7714,\"Holding her hand over her mouth, she jumps with joy and gives someone a hug. He\",\"Holding her hand over her mouth, she jumps with joy and gives someone a hug.\",He,gold,smiles and lifts her off her feet.,\"heads up the platform, then quickly pulls out a door and walks through the crowd.\",hurries forward as the sedan drives away.,holds his hands to his mouth.\n14421,lsmdc1024_Identity_Thief-82153,7717,\"In his car, someone smiles and bobs his head as he taps his thumbs on the steering wheel. He\",\"In his car, someone smiles and bobs his head as he taps his thumbs on the steering wheel.\",He,gold,\"glances down at the dashboard, where the low - gas light blinks on.\",sits in front of a mirror and rubs the rest of his face.,\"removes his jacket, then replaces his helmet and shifts on his seat.\",looks at his eyes.\n14422,lsmdc1024_Identity_Thief-82153,7716,\"Now, someone and his daughters brush their teeth. In his car, someone\",\"Now, someone and his daughters brush their teeth.\",\"In his car, someone\",gold,smiles and bobs his head as he taps his thumbs on the steering wheel.,applies the makeup seriously.,tends his new son.,stands into the passenger seat and smiles out expectantly as if sitting in a car seat.\n14423,lsmdc1024_Identity_Thief-82153,7723,The attendant swipes the card. He,The attendant swipes the card.,He,gold,studies an extension of the ship.,takes his notes into his chambers.,talks into his earpiece.,proudly watches his score screen.\n14424,lsmdc1024_Identity_Thief-82153,7713,\"He speaks to her with his hands gently holding her face. Holding her hand over her mouth, she\",He speaks to her with his hands gently holding her face.,\"Holding her hand over her mouth, she\",gold,is surprised off the grasping tube.,stills her long design.,\"leans close, closing.\",jumps with joy and gives someone a hug.\n14425,lsmdc1024_Identity_Thief-82153,7722,\"Someone pushes the card in again. Inside, the attendant\",Someone pushes the card in again.,\"Inside, the attendant\",gold,pulls out his phone and studies it with a puzzled frown.,\"stands behind a clear protective glass, talking on an earpiece.\",\"takes the hat to him, flings the iron bar to the audience, and grabs him from behind.\",pulls a the camera.\n14426,lsmdc3046_LARRY_CROWNE-21822,7808,She briefly touches her flushed cheeks. Someone,She briefly touches her flushed cheeks.,Someone,gold,pilots her into a lifeboat.,\"someone looks behind, she tries her makeup, to meet the middle - aged woman's gaze.\",'s handgun hangs on the penalty sleeve.,enters following her raven haired friend.\n14427,lsmdc3046_LARRY_CROWNE-21822,7804,He returns someone's smart phone. As someone heads out of the lecture hall the professor,He returns someone's smart phone.,As someone heads out of the lecture hall the professor,gold,stops and stares.,points at the entrance of the reading faded apartment building.,steps into the room.,lifts his thermos cup in a toast.\n14428,lsmdc3046_LARRY_CROWNE-21822,7805,\"As someone heads out of the lecture hall the professor lifts his thermos cup in a toast. Taking a sip, she\",As someone heads out of the lecture hall the professor lifts his thermos cup in a toast.,\"Taking a sip, she\",gold,sips a handful of martini eggs then sinks down heavily.,stares ahead test the ecstatic outlaws chandeliers.,\"stares thoughtfully at the screen, touches a hand to her lips and gives a faint smile.\",sips from a sunken mug.\n14429,lsmdc3046_LARRY_CROWNE-21822,7801,\"Later in economics, Professor someone watches his students from his desk. He\",\"Later in economics, Professor someone watches his students from his desk.\",He,gold,walks out through a leafy bodhi tree as someone walks slowly on the street and descends his own.,lifts his waiting gaze then frowns pencil at his son.,caps a thermos then sets it near a collection of cellphones and sips from the thermos cup.,watches guests arrive in the laundry room room.\n14430,lsmdc3046_LARRY_CROWNE-21822,7802,\"He caps a thermos then sets it near a collection of cellphones and sips from the thermos cup. Sitting at the long tables, the econ students\",He caps a thermos then sets it near a collection of cellphones and sips from the thermos cup.,\"Sitting at the long tables, the econ students\",gold,with amusement crowd the cheering players.,keeps with its children.,individual championship shuffling awkwardly.,diligently work on their exams.\n14431,lsmdc3046_LARRY_CROWNE-21822,7809,Someone Who shares a booth with someone spots someone too. Someone,Someone Who shares a booth with someone spots someone too.,Someone,gold,\", someone points to a silver box printed on a sweatshirt sized small roll up with the musicians on its lapel.\",approaches someone's booth.,reaches to talk about her options for she has a test.,nods the little in annoyance.\n14432,lsmdc3046_LARRY_CROWNE-21822,7806,The screen shows her speech 217 gradebook. Someone,The screen shows her speech 217 gradebook.,Someone,gold,\"cooked, a cook and a second man, to eat mashed potatoes.\",\"considers, then adds a plus.\",tips she shifts her confused gaze.,looks at the giraffe.\n14433,anetv_OWEwmnZvvJE,2711,A young man is seen standing around a pool followed by several clips of the boy jumping in the pool and swimming around. The boy,A young man is seen standing around a pool followed by several clips of the boy jumping in the pool and swimming around.,The boy,gold,continues to throw the ball into the field several times as taking attempts to run.,continues moving along the canal while still running down the hill.,continues to swim all around the pool with a man swimming behind him and the boy smiling to the camera.,continues spreading about several different angles and doing various things and panning around the pool.\n14434,anetv_Y97KgwAmdrU,10629,The person is then shown placing dough balls into the oven and pressing a button. Then person then takes the cookies out and they,The person is then shown placing dough balls into the oven and pressing a button.,Then person then takes the cookies out and they,gold,continue to rub it around the cake net.,add a weed tip to mix it in a pan before working together with all and pour it on the side of the fruit.,\"disappear, all in stop animation.\",take the oven cookies out of the oven.\n14435,anetv_Y97KgwAmdrU,10628,Various ingredients are laid out on a counter and are all mixed together in a bowl. The person,Various ingredients are laid out on a counter and are all mixed together in a bowl.,The person,gold,\"rinses the lemon to some water, blends it for a bit, and cooks food into the pan.\",is then shown placing dough balls into the oven and pressing a button.,puts ingredients on the side and puts peppers to the bowl.,hulls the top of the flour into the oven.\n14436,anetv_D5EgASje8MQ,2367,Lawrence Welk is playing an accordion and directing his band. He,Lawrence Welk is playing an accordion and directing his band.,He,gold,play the tam - tam between his hands before the irregular lifting is on the screen.,\"solo in number how to do various violin movements, a little girl exercise as the room, private dances.\",is joined by another accordion player.,play basketball is put around the bagpipe.\n14437,anetv_D5EgASje8MQ,2368,He is joined by another accordion player. The band stands up to plan and the camera,He is joined by another accordion player.,The band stands up to plan and the camera,gold,goes back and forth between the accordion players and the band.,follows into various stills while the camera walks around and more clips are shown of the man bowing and gazing out the window.,also stops and begin playing.,moves back while playing the song while the audience.\n14438,anetv_D5EgASje8MQ,2369,The band stands up to plan and the camera goes back and forth between the accordion players and the band. They,The band stands up to plan and the camera goes back and forth between the accordion players and the band.,They,gold,continue to play the accordions with the band behind them.,\"are playing the cymbals, wanting to be here as people have to listen.\",\"continue to play the drums again, the two children continue to sing and clap for the beat.\",run back and forth across the ice and try lots of judges.\n14439,lsmdc3049_MORNING_GLORY-23614,16412,Someone's fallen asleep on a couch. Someone,Someone's fallen asleep on a couch.,Someone,gold,sits on a bench nearby.,throws a pencil at him.,leaps out and pokes up the hole.,sits with a cardboard box.\n14440,lsmdc3049_MORNING_GLORY-23614,16411,Someone watches a man screwing on a door handle. Someone's,Someone watches a man screwing on a door handle.,Someone's,gold,go to the doorway.,eyes widen as he dismounts with his arms wrapped around them.,face on the toilet.,fallen asleep on a couch.\n14441,lsmdc3049_MORNING_GLORY-23614,16410,\"She talks to the producer in the corridor. In the studio, someone\",She talks to the producer in the corridor.,\"In the studio, someone\",gold,turns his back to show the apartment.,hangs off the head and stomps across the office.,kicks her door open.,is getting a tattoo on his ass.\n14442,anetv_oLEagb_RGq8,15814,A young woman is seen standing behind a lawn mower in a yard. She,A young woman is seen standing behind a lawn mower in a yard.,She,gold,swings some from around her.,holds up the shovel and leads into him mowing the grass.,gets stuck on the stick and ends with bows on the yard.,begins pushing the lawn mower along the yard.\n14443,anetv_oLEagb_RGq8,15815,She begins pushing the lawn mower along the yard. She,She begins pushing the lawn mower along the yard.,She,gold,moves herself back on the lawn and looks into the camera.,continues cleaning and blowing the leaves of the yard while talking.,continues to climb in and out of frame.,rubs the table as she continues to mow the lawn.\n14444,lsmdc3074_THE_ROOMMATE-3957,8242,\"Someone exits the elevator and passes someone in a common room. As someone stops, someone\",Someone exits the elevator and passes someone in a common room.,\"As someone stops, someone\",gold,recalls then empty bed.,straightens the grip of her motor piece.,leaves the restroom and eavesdrops.,grins slowly then hands back.\n14445,lsmdc3074_THE_ROOMMATE-3957,8243,\"As someone stops, someone leaves the restroom and eavesdrops. Someone\",\"As someone stops, someone leaves the restroom and eavesdrops.\",Someone,gold,gets up from a couch and faces her.,smiles as he appears.,\"looks over at someone, who looks back to her and nods.\",is watched by relief with people.\n14446,lsmdc3015_CHARLIE_ST_CLOUD-1198,18039,Then sunlight seeps through the trees as someone goes on his way. She,Then sunlight seeps through the trees as someone goes on his way.,She,gold,\"shrugs, acknowledging the crowd.\",takes his ax out of a wooden box.,stares toward the iceberg.,stands waiting for someone.\n14447,lsmdc3015_CHARLIE_ST_CLOUD-1198,18029,\"Grinning, he holds out his hand. Sunlight\",\"Grinning, he holds out his hand.\",Sunlight,gold,rubs someone's face with her hand.,rises in from the cursive.,look on at hand as she sips a beverage.,shines on his upturned palm as someone places her hand in his.\n14448,lsmdc3015_CHARLIE_ST_CLOUD-1198,18036,\"He squats, resting his arms on is bent legs. Someone\",\"He squats, resting his arms on is bent legs.\",Someone,gold,stops bitterly as the shadow moves slowly over the distance.,squats a few yards back with his eyes on his older brother's anguished face.,is standing in front of a terrace jumping.,presses his fingers to the keys.\n14449,lsmdc3015_CHARLIE_ST_CLOUD-1198,18037,\"He shifts his eyes over someone's spot during their games of catch, then turns away and starts to trudge out of the glade. He abruptly\",\"He shifts his eyes over someone's spot during their games of catch, then turns away and starts to trudge out of the glade.\",He abruptly,gold,closes his eyes on the bedroom stairway.,turns back to the empty clearing.,turns back to find someone standing there looking into the fireplace.,\"begins to write as he maneuvers past a low, light gray light.\"\n14450,lsmdc3015_CHARLIE_ST_CLOUD-1198,18027,\"Someone strolls over, his eyes fixed on her perplexed face. She\",\"Someone strolls over, his eyes fixed on her perplexed face.\",She,gold,faces the map as a rows -.,looks down at someone.,blinks at him as he holds her gaze.,climbs up onto the waist sink and leans over the counter.\n14451,lsmdc3015_CHARLIE_ST_CLOUD-1198,18038,He abruptly turns back to the empty clearing. Then sunlight,He abruptly turns back to the empty clearing.,Then sunlight,gold,seeps through the trees as someone goes on his way.,\"illuminates the entrance of minas tirith and dazed, looking over at the humanoid statue in the middle of a large desolate field.\",cuts through mud by his arrival.,silhouettes the branches of the three women passing out as the phone plays.\n14452,lsmdc3015_CHARLIE_ST_CLOUD-1198,18035,\"Someone stares into the trees, his brow creased and the corners of his mouth turn down slightly. He\",\"Someone stares into the trees, his brow creased and the corners of his mouth turn down slightly.\",He,gold,\"looks over, looks around, sees the journal before him, walks alongside for cubicles.\",\"squats, resting his arms on is bent legs.\",signs off his book and turns back to the tv.,takes of his head.\n14453,lsmdc3015_CHARLIE_ST_CLOUD-1198,18026,\"She shakes her head, her lips parted. Someone\",\"She shakes her head, her lips parted.\",Someone,gold,\"looks up at the ceiling, without breaking her stride.\",\"strolls over, his eyes fixed on her perplexed face.\",leans out of the window and gazes down a dark corridor.,\"covers his face with port sleeve, then resumes his pacing.\"\n14454,lsmdc3015_CHARLIE_ST_CLOUD-1198,18028,\"She blinks at him as he holds her gaze. Glancing down, she\",She blinks at him as he holds her gaze.,\"Glancing down, she\",gold,presses her lips to his.,meets someone's gaze.,\"bites her lower lip, then tightens her mouth into a thoughtful line.\",notices someone at a ragged end.\n14455,lsmdc3015_CHARLIE_ST_CLOUD-1198,18034,\"Later, someone strolls into the glade. His arms\",\"Later, someone strolls into the glade.\",His arms,gold,reaches the corner and finds someone watching him teach.,is limp beneath his wetsuit.,hang loosely at his sides as he scans his eyes over the clearing.,tightly curled and his shoulders heave as he approaches.\n14456,lsmdc3015_CHARLIE_ST_CLOUD-1198,18030,\"Sunlight shines on his upturned palm as someone places her hand in his. Now, light\",Sunlight shines on his upturned palm as someone places her hand in his.,\"Now, light\",gold,\"shines out from the office, a dim shot below.\",shines from his body at the windows of a car.,shines in the woods.,shines through the windows into the empty cabin.\n14457,lsmdc3015_CHARLIE_ST_CLOUD-1198,18032,He glances at his watch. He,He glances at his watch.,He,gold,walks slowly and stop.,looks down and sees her.,tugs on the ladder and holds up leaves before moving to the door.,circles for a beat as he stands at the top of his group.\n14458,lsmdc3015_CHARLIE_ST_CLOUD-1198,18025,\"He stares after her as she walks away. With a shocked look, someone\",He stares after her as she walks away.,\"With a shocked look, someone\",gold,stops and turns back to him.,\"approaches to her side, standing without the coat, and leaves put out the coat - basket.\",\"looks over her bouquet then at someone, who stares down at the corpses of guidance.\",reaches for another trolley.\n14459,lsmdc3015_CHARLIE_ST_CLOUD-1198,18031,\"Now, light shines through the windows into the empty cabin. He\",\"Now, light shines through the windows into the empty cabin.\",He,gold,wipes tears from his brow.,glances at his watch.,\"looks at the shelves full of mannequins, his lone gears.\",\"peers at the plane, which runs down a runway.\"\n14460,anetv_6YmUCNIMpB4,7029,\"The man cuts a long hedge of a garden using an electric cutter. Then, the man\",The man cuts a long hedge of a garden using an electric cutter.,\"Then, the man\",gold,cuts the tail of the horse while he trims the camera in the trimmer.,demonstrate a other sign to sharpen instructions.,removes leaves on top the hedge with his hand.,cuts the grass after the rod.\n14461,anetv_6YmUCNIMpB4,7028,A man bends on front a hedge holding an electric cutter. The man,A man bends on front a hedge holding an electric cutter.,The man,gold,cuts a long hedge of a garden using an electric cutter.,continues to drill a hole in the table.,throw some wood into cool clothing.,demonstrates how to roll the knives.\n14462,anetv_C9yUg3e1dEg,10758,A man in a black shirt stands behind him. Words,A man in a black shirt stands behind him.,Words,gold,arrow cutting bow is removed from his litter.,perform curl jacks.,starts lifting the weight lift.,come on the screen at the end.\n14463,anetv_C9yUg3e1dEg,10757,A man is lifting a large weight over his head several times. A woman,A man is lifting a large weight over his head several times.,A woman,gold,is lifting him up over his head.,in a black shirt walks over a bar.,is standing behind the weights one taking pictures.,walks in front of him.\n14464,lsmdc3081_THOR-37615,10876,Various artifacts sit in recesses along the hall. The guards,Various artifacts sit in recesses along the hall.,The guards,gold,approach the glowing blue box which rests upon a pedestal of scored rock at the end of the corridor.,escort a young guard down a narrow corridor lined with crowded stone buildings.,\"rush across the bay to find someone, who talks to him in horror.\",remaining diligently in competition raise their hands in preparation for rollerblading while being event.\n14465,anetv_Nr49JFixNE4,14974,People are standing in a gymnasium talking. They,People are standing in a gymnasium talking.,They,gold,start dancing on the sand court.,are engaged in a game of soccer.,start running and throwing balls at each other.,are jumping up and down before sliding down.\n14466,anetv_CvmhLCrOjhM,10811,He works hard to solve the puzzle. He,He works hard to solve the puzzle.,He,gold,solves several times and lets it first time.,'s not focused fluidly from the public.,gets it done and sets the block down.,looks back toward someone.\n14467,anetv_CvmhLCrOjhM,5017,He then attempts to solve a rubix cube while a timer watches him. The man then,He then attempts to solve a rubix cube while a timer watches him.,The man then,gold,\"solves his rubix cube as he takes a bite of the cube, attempting to solve it.\",solves it throwing his arms up and cheering with another.,solves the puzzle in front of him.,throws himself a hard trying to solve the rubik's cube.\n14468,anetv_CvmhLCrOjhM,10810,A woman is timing a boy as he attempts to solve a rubik's cub. He,A woman is timing a boy as he attempts to solve a rubik's cub.,He,gold,\"takes a sketch from the woman, then gives his friend a thoughtful look.\",works hard to solve the puzzle.,flips through and goes back to a silver cube writing on a shelf.,drops it at a tray on a table.\n14469,anetv_CvmhLCrOjhM,5016,A young man is seen sitting before a table with a woman standing over him. He then,A young man is seen sitting before a table with a woman standing over him.,He then,gold,rolls into a pit onto a mat.,\"mixes several ingredients into the bowl, presenting it to the bowl and hands it back.\",attempts to solve a rubix cube while a timer watches him.,picks up a large bottle and places it into her mouth.\n14470,anetv_O1XzCrHZm34,8512,The camera pans to show a wall and the words iLoveKickboxing dot com is on the wall along with a logo that includes a heart with wings and boxing gloves hanging from the bottom of the right wing. The room,The camera pans to show a wall and the words iLoveKickboxing dot com is on the wall along with a logo that includes a heart with wings and boxing gloves hanging from the bottom of the right wing.,The room,gold,is back to a lanky man wearing a beige black shirt and a white leather shirt playing with his cousin sitting in a car.,pans back to the rest of the room and continues to show many women still punching the hanging punching bags.,is shown and he demonstrates the same thing.,is covered with ice and a face is shown along with a large object.\n14471,lsmdc3078_THE_WATCH-36153,6782,\"Someone and someone hold the boy by his collar. As someone approaches, they\",Someone and someone hold the boy by his collar.,\"As someone approaches, they\",gold,reach an abandoned stairway and move through the shadows.,look up from the wreckage on each other.,shove the boy to his knees at the front desk.,hop up between the wreckage of the mountain.\n14472,lsmdc3078_THE_WATCH-36153,6774,\"The mid - sized crossover kicks up dust as it tears out of the parking lot. Now, the guys\",The mid - sized crossover kicks up dust as it tears out of the parking lot.,\"Now, the guys\",gold,jump the biker back at the bar.,\"fly through the cabin, people hunched over each other, seamen behind the bar.\",escort the man into hot delivery.,walk the empty football field with flashlights.\n14473,lsmdc3078_THE_WATCH-36153,6779,\"He closes in on him, lunges, and tackles him near the end zone. Someone\",\"He closes in on him, lunges, and tackles him near the end zone.\",Someone,gold,pulls his luggage up on a stand and takes off his hood.,carries a golf - cart out to the four - by - four.,pins him down as the rest of the guys run over.,\"sees someone standing up in bed, holding someone's arms and legs.\"\n14474,lsmdc3078_THE_WATCH-36153,6775,\"Now, the guys walk the empty football field with flashlights. Bright lights\",\"Now, the guys walk the empty football field with flashlights.\",Bright lights,gold,shine in their eyes.,glide across the floor.,ascend over the side of the ship.,illuminate the crystalline settlement in a black desert.\n14475,lsmdc3078_THE_WATCH-36153,6776,Raw eggs pelt their faces. Four boys,Raw eggs pelt their faces.,Four boys,gold,scuttle among a dirt bike fight.,begin to describe how to board.,throw eggs from the stands.,pass the white chairs.\n14476,lsmdc3078_THE_WATCH-36153,6780,\"Someone pins him down as the rest of the guys run over. As the boy breaks free, they all\",Someone pins him down as the rest of the guys run over.,\"As the boy breaks free, they all\",gold,get on their feet.,rush to pin him down.,gaze around the pool mirror.,fall into the heap where they rest on the legs.\n14477,lsmdc3078_THE_WATCH-36153,6777,\"Someone chases a boy with a backpack. Pumping his arms, someone\",Someone chases a boy with a backpack.,\"Pumping his arms, someone\",gold,looks up from a wall.,gets the boy in the arm.,sprints down the field after the boy with the backpack.,barges into a wall.\n14478,lsmdc3078_THE_WATCH-36153,6778,\"Pumping his arms, someone sprints down the field after the boy with the backpack. He\",\"Pumping his arms, someone sprints down the field after the boy with the backpack.\",He,gold,\"closes in on him, lunges, and tackles him near the end zone.\",runs slowly through the woods and sees a little thug running into a large ditch.,fumbles to pick it up.,takes a jacket and returns to the patio area facing the driver.\n14479,lsmdc3078_THE_WATCH-36153,6781,\"As the boy breaks free, they all rush to pin him down. Someone and someone\",\"As the boy breaks free, they all rush to pin him down.\",Someone and someone,gold,escort his aunt to the walkway.,get in and get out of the car.,hold the boy by his collar.,hold hands as the children try to kick their weapons.\n14480,anetv_-E9YQ_Uhu50,9816,The person steps up to the window with the violin. The person,The person steps up to the window with the violin.,The person,gold,uses a device to turn the vacuum and switches off the lights.,starts playing the violin near the window.,\"puts the cord on and the individual returns the stick, pausing, then sits on the ice across the board.\",reveals the nickel that he has.\n14481,anetv_-E9YQ_Uhu50,11816,Scene of an old home video of a woman playing violin is shown. woman,Scene of an old home video of a woman playing violin is shown.,woman,gold,is jumping on two pipes.,is putting it in a tv screen.,is in a house playing violin.,is showing a baby in a tennis court.\n14482,anetv_-E9YQ_Uhu50,9817,The person starts playing the violin near the window. The image of the person,The person starts playing the violin near the window.,The image of the person,gold,changes to a digitally animated screen.,plays the piano is shown.,is painting the corner of the screen.,has a lemon on its belly.\n14483,lsmdc0003_CASABLANCA-46942,1573,While they are locked in an embrace they hear the dull boom of cannons. Someone,While they are locked in an embrace they hear the dull boom of cannons.,Someone,gold,is with the commendatore outside.,reaches a parked car and refills the fuel trunk.,reacts to this worriedly.,grabs the buds and beckons him on stage.\n14484,lsmdc0003_CASABLANCA-46942,1571,Someone looks at him tenderly. Someone,Someone looks at him tenderly.,Someone,gold,gazes away somberly as well.,opens her folded seat revealing a half heart standing there.,\"takes her in his arms, and kisses her hungrily.\",\"stares to her mother, totally back as she stares at the picture.\"\n14485,lsmdc0001_American_Beauty-45772,1792,\"Rose petals float on the surface of the water, obscuring her naked body. She\",\"Rose petals float on the surface of the water, obscuring her naked body.\",She,gold,arches her back and looks up at him provocatively.,transforms back to someone.,lands face down on the table.,looks into her mother's eyes.\n14486,lsmdc0001_American_Beauty-45772,1794,\"Someone gives her a hard look, then slowly slips his hand into the water between her legs. Her eyes widen and she\",\"Someone gives her a hard look, then slowly slips his hand into the water between her legs.\",Her eyes widen and she,gold,throws her head back.,frowns as the screen fades to black.,glances over her shoulder at him.,shows us a bottle of dolls.\n14487,lsmdc0001_American_Beauty-45772,1790,The room is filled with steam. Someone,The room is filled with steam.,Someone,gold,holds a finger against a neighboring balcony.,\"throws his jacket, revealing the duffel when someone is thrown in outside.\",\"sits by two more men, leaning in front of someone, clutching his rifle.\",\"looks around, confused, then focuses on: across from us, in a pedestal bathtub, is someone.\"\n14488,lsmdc0001_American_Beauty-45772,1791,\"Someone looks around, confused, then focuses on: Across from us, in a pedestal bathtub, is someone. Rose petals\",\"Someone looks around, confused, then focuses on: Across from us, in a pedestal bathtub, is someone.\",Rose petals,gold,\"play the night's pops in the small, purple flower.\",appear across a massive stone chandelier as someone opens a glass to reveal stone.,\"spill out from under someone and single dress, coming from behind them like a shirtless man.\",\"float on the surface of the water, obscuring her naked body.\"\n14489,lsmdc0001_American_Beauty-45772,1793,She arches her back and looks up at him provocatively. Someone,She arches her back and looks up at him provocatively.,Someone,gold,\"puts each arm in hers, and rubs her hands together.\",\"gives her a hard look, then slowly slips his hand into the water between her legs.\",claps one hand over her mouth.,\"wraps his arm around her, leading him down in the corner and into the room.\"\n14490,lsmdc0001_American_Beauty-45772,1795,Her eyes widen and she throws her head back. She,Her eyes widen and she throws her head back.,She,gold,follows the dark crowded room.,flips over and faces him.,stands on the opposite side of the ward and injures herself for someone.,arrives at a hydra cloud.\n14491,lsmdc1058_The_Damned_united-98469,12116,\"Someone nods sagely, then leans close. Someone\",\"Someone nods sagely, then leans close.\",Someone,gold,\"looks up at her, dipping her chin into his hand.\",grins and swaps smiles.,walks towards the players' tunnel.,watches the train drop outside a open window.\n14492,lsmdc3040_JULIE_AND_JULIA-17856,2041,She snaps tongs at him. She,She snaps tongs at him.,She,gold,hides his back cover.,looks up from a magazine.,\"dons a rubber glove, removes the lid from a pot of boiling water, and takes a lobster out of the bag.\",takes the grail too.\n14493,lsmdc3040_JULIE_AND_JULIA-17856,2050,\"Dressed like someone Child, someone puts her hands on her hips and faces her guests. Someone\",\"Dressed like someone Child, someone puts her hands on her hips and faces her guests.\",Someone,gold,\"appears and disappears into the pit, slipping back and pushing her way.\",grimaces in pain as someone carries the baby in the sand.,\"pulls out the lenses case, and glances at the man with his finger.\",\"models her '50s era look, then hugs her friends.\"\n14494,lsmdc3040_JULIE_AND_JULIA-17856,2049,\"One guy hands off a cake. Dressed like someone Child, someone\",One guy hands off a cake.,\"Dressed like someone Child, someone\",gold,transfers the mixture to two more cousins.,puts her hands on her hips and faces her guests.,sits his piano back with a blanket.,kicks a tiny ball at a girl.\n14495,lsmdc3040_JULIE_AND_JULIA-17856,2043,\"She stuffs a second lobster in the pot, and returns to the bag for a third. She\",\"She stuffs a second lobster in the pot, and returns to the bag for a third.\",She,gold,goes down on her knees and puts her leg on top of her.,hurries to the information counter.,slings her bag aside and stows the box in the bag.,\"sticks the third in the pot, flips a stray antenna off the brim, and puts the lid back on.\"\n14496,lsmdc3040_JULIE_AND_JULIA-17856,2042,\"She stuffs the lobster in, then grabs another. She\",\"She stuffs the lobster in, then grabs another.\",She,gold,remembers even another horse being attached to the horse's tail.,\"stuffs a second lobster in the pot, and returns to the bag for a third.\",is busy for the crowd.,turns and walks away.\n14497,lsmdc3040_JULIE_AND_JULIA-17856,2048,\"Someone lets go of her head and looks over. As she cautiously approaches the kitchen, someone\",Someone lets go of her head and looks over.,\"As she cautiously approaches the kitchen, someone\",gold,grabs an apple and takes a bite.,climbs the ladder and gets out of the water.,tries to overcome someone as he leads her along.,walks her past it.\n14498,lsmdc3040_JULIE_AND_JULIA-17856,2044,\"Standing over the closed pot with all the lobsters inside, someone smiles proudly. The lid pops into the air, and someone\",\"Standing over the closed pot with all the lobsters inside, someone smiles proudly.\",\"The lid pops into the air, and someone\",gold,swigs from a smaller glass.,pauses for a smile before dropping on.,starts to take off the salad.,runs out of the kitchen.\n14499,lsmdc3040_JULIE_AND_JULIA-17856,2047,\"Someone grabs the hot lid from the floor, and covers the pot. Someone\",\"Someone grabs the hot lid from the floor, and covers the pot.\",Someone,gold,lets go of her head and looks over.,rolls his eyes and slides across the ground.,drops the box from a bottle on someone's hand.,raises the lid of the plastic lid.\n14500,lsmdc3040_JULIE_AND_JULIA-17856,2046,Someone hops up as someone flails her arms and clutches her head. Someone,Someone hops up as someone flails her arms and clutches her head.,Someone,gold,'s face and she's.,flies up and down in front.,\"grabs the hot lid from the floor, and covers the pot.\",drags herself through and sees someone to the tank operator.\n14501,lsmdc3040_JULIE_AND_JULIA-17856,2045,\"The lid pops into the air, and someone runs out of the kitchen. Someone\",\"The lid pops into the air, and someone runs out of the kitchen.\",Someone,gold,hops up as someone flails her arms and clutches her head.,sits up to him.,are down as he hears someone coming in from the direction the door is.,stuffed for someone senses the snacks.\n14502,lsmdc3040_JULIE_AND_JULIA-17856,2040,\"At a fish market, an employee takes a live lobster from a tank and bags it, someone and someone swap a look. Someone\",\"At a fish market, an employee takes a live lobster from a tank and bags it, someone and someone swap a look.\",Someone,gold,opens as the carriage rises.,mustache gulps back a bite.,snaps his hand and throws a knife to someone.,\"unbuckles her seat - belt, and checks the bag.\"\n14503,anetv_FkSf3pxra3M,13477,\"Many judges sit around a field, waiting the performance of an athlete. An athlete\",\"Many judges sit around a field, waiting the performance of an athlete.\",An athlete,gold,performs one long jump and stops before his competition.,stepped forward and turned down by the camera.,is seen speaking to the camera while holding up a hat.,approaches the field area.\n14504,lsmdc3068_THE_BIG_YEAR-3795,16784,\"Now, someone opens a door with a wreath on it. She\",\"Now, someone opens a door with a wreath on it.\",She,gold,slams the door in their faces.,carries him into the apartment.,grabs a fork and undoes it with her finger.,deposits herself on a modest bike.\n14505,lsmdc3068_THE_BIG_YEAR-3795,16785,\"She slams the door in their faces. As the two friends start to leave the porch, the door\",She slams the door in their faces.,\"As the two friends start to leave the porch, the door\",gold,swings shut behind them.,slams shut behind her.,flies open behind them.,swings shut behind him.\n14506,anetv_tu6EkaMa9c8,12600,Tubers are going down the river. West Virginia advertisement,Tubers are going down the river.,West Virginia advertisement,gold,is still on the screen.,is pulling at scenes on the room.,is on the screen.,are at high speed of the river.\n14507,anetv_tu6EkaMa9c8,12602,A tuber goes under a plank with a dog on it. The camera,A tuber goes under a plank with a dog on it.,The camera,gold,zooms in on the boys as well.,returns to the person putting posters at the bottom.,is pointed towards the sky and trees.,follows her back to a quick cleaned room.\n14508,anetv_tu6EkaMa9c8,12603,\"The camera is pointed towards the sky and trees. One tuber runs into branches, one\",The camera is pointed towards the sky and trees.,\"One tuber runs into branches, one\",gold,appears in stone formations.,crashing into the ground.,spoke off a shoulder holding the other.,stands up and falls over.\n14509,anetv_tu6EkaMa9c8,12599,A tubing advertisement is on the screen. Tubers,A tubing advertisement is on the screen.,Tubers,gold,are snowboarding down a slope.,are snowboarding down a hill.,are going down the river.,follow a fish's in the snow.\n14510,anetv_tu6EkaMa9c8,12604,\"One tuber runs into branches, one stands up and falls over. the cameraman\",\"One tuber runs into branches, one stands up and falls over.\",the cameraman,gold,points as line at the surfers.,heads up to hold a tree as others watch him.,turns circles in his tube then has a snack.,hangs up the tree.\n14511,anetv_qHu0fz_anTQ,18688,She demonstrates how to cut cellophane and wrap it around a gift. She,She demonstrates how to cut cellophane and wrap it around a gift.,She,gold,scoops it back from her hand and lays it on a cookie sheet.,demonstrates how to roll the dough and mixing it.,moves to wrap a gift for wrapping paper.,\"ties a string around the gift, showing off the final product.\"\n14512,anetv_qHu0fz_anTQ,18687,A woman is standing at a table with a pile of scissors and supplies. She,A woman is standing at a table with a pile of scissors and supplies.,She,gold,goes with a mirror and brushes the doors of her shirt.,snatches the paper off of her dresser the woman stands in front of her on the floor and resumes eating.,demonstrates how to cut cellophane and wrap it around a gift.,explains to show how to gather the wrapping paper in hand and box.\n14513,anetv_Z_F01eV0Iqw,11970,The cameraman hands him skis. A woman and baby come sit near him and he,The cameraman hands him skis.,A woman and baby come sit near him and he,gold,puts down on her knees so they get stuck too.,\"attempts to walk, only to fall.\",crouches to return his kite.,talks to a little boy.\n14514,anetv_Z_F01eV0Iqw,11972,\"Next are clips of the little boy skiing with his father down a snowy slope. At one point, he\",Next are clips of the little boy skiing with his father down a snowy slope.,\"At one point, he\",gold,does the same thing as a different man.,\"sits on a rock, then on to the water.\",glides on a small ramp.,is full of spectators watching them go down the hill.\n14515,anetv_Z_F01eV0Iqw,11973,He also faces a tumble. Soon the boy and his family,He also faces a tumble.,Soon the boy and his family,gold,catch free from the kid.,load their vehicle to leave.,get down from the ravine.,are outside a helicopter.\n14516,anetv_Z_F01eV0Iqw,11971,\"A woman and baby come sit near him and he attempts to walk, only to fall. Next\",\"A woman and baby come sit near him and he attempts to walk, only to fall.\",Next,gold,are clips of the little boy skiing with his father down a snowy slope.,meet a girl who walks on the sidewalk of a bowling packet and tries several times to slow the settings.,is dancing in front of the large crowd urging him to play.,walks over to the monkey park and answers several more times at this time.\n14517,anetv_Z_F01eV0Iqw,11974,Soon the boy and his family load their vehicle to leave. The video,Soon the boy and his family load their vehicle to leave.,The video,gold,ends with the closing captions shown on the screen.,shows how the sandcastle is complete.,ends with a picture of the little boy and his dad.,ends with the closing credits shown on the screen.\n14518,anetv_xICaX0kCCF4,1926,A man dressed as Ernie soon joins Bert. They,A man dressed as Ernie soon joins Bert.,They,gold,point to the other side of the vehicle's window.,traveling through the supply store.,\"bike together, as if in a race.\",are in an upscale arena.\n14519,anetv_s0swzu1jIpc,12390,He gives a list of things you will need to take care of a bald head. He,He gives a list of things you will need to take care of a bald head.,He,gold,\"reads, then more magazines.\",lifts another neighborhood discovered and resumes brushing it.,places the items on the sink.,\"duck in one ear, then blink ahead.\"\n14520,anetv_s0swzu1jIpc,2361,A man is shown screaming into a mirror and laying out objects on a sink. He,A man is shown screaming into a mirror and laying out objects on a sink.,He,gold,puts the soap sheet into the cup and irons the end.,rubs lotions on his head and begins shaving his head.,moves one leg with a bucket of cleaner and continues washing his hands.,continues shaving a dog's hair while showing several kinds of shaving iron.\n14521,anetv_s0swzu1jIpc,12391,He places the items on the sink. He then,He places the items on the sink.,He then,gold,picks up a bottle of cleaning wine.,rinses his men then walks away.,mixes the noodles together with a teddy solution.,lathers and shaves the skin on his head.\n14522,anetv_s0swzu1jIpc,2362,He rubs lotions on his head and begins shaving his head. He,He rubs lotions on his head and begins shaving his head.,He,gold,spits out another slug.,sheds a few quick strides demonstrates and puts the needle around his throat.,walks around putting on various hats and takes them off and walks around.,spray the scratches and someone off with their paint.\n14523,anetv_soDdkeamoMM,9812,A boy is swinging back and forth. The boy then,A boy is swinging back and forth.,The boy then,gold,falls on his face and cries.,swings down and raises his sticks.,spins around and turns it around.,goes into a hill under the water.\n14524,lsmdc3022_DINNER_FOR_SCHMUCKS-10498,10464,Someone gives up hitting him and someone sits up again. Someone,Someone gives up hitting him and someone sits up again.,Someone,gold,talks over the phone.,kicks him off the bench and collapses into his back.,shoots into the soccer lane.,\"turns away, looking fed up.\"\n14525,lsmdc3022_DINNER_FOR_SCHMUCKS-10498,10461,\"As someone watches her go, someone pulls up in someone's Porsche Boxster. Someone\",\"As someone watches her go, someone pulls up in someone's Porsche Boxster.\",Someone,gold,gets in the driver's seat.,hides his lips in a mounting argentina stare.,knocks the door open and whispers to someone.,\"drives, two young women dressed as someone doing tricks with a mechanic.\"\n14526,lsmdc3022_DINNER_FOR_SCHMUCKS-10498,10463,Someone smashes the rear window. She,Someone smashes the rear window.,She,gold,pauses in front of a massive hole in which the star is built.,\"emerges, fastens her position by the rails.\",reaches out and pulls out a handful of tunnels.,smashes off a wing mirror then breaks the passenger's window before breaking the headlights and pounding the bonnet with a barrier pole.\n14527,lsmdc3022_DINNER_FOR_SCHMUCKS-10498,10462,Someone gets in the driver's seat. Someone,Someone gets in the driver's seat.,Someone,gold,helps into the driver's seat.,soldiers wait outside on the road and get graves.,smashes the rear window.,\"drives down the tunnel, stabbing someone.\"\n14528,anetv_KgccYb6ufPY,5039,A man runs to performs a long jump in a competition. Men,A man runs to performs a long jump in a competition.,Men,gold,stands around the sand box holding meters.,stand around the next man.,throws a javelin on the field before celebrates.,break up on the track.\n14529,anetv_KgccYb6ufPY,5040,Men stands around the sand box holding meters. Other athlete,Men stands around the sand box holding meters.,Other athlete,gold,moves in two goals while the goalie kicks someone in the face.,is parked on a race track.,hold on rope to make it into a room.,performs long jump in the competition.\n14530,anetv_KgccYb6ufPY,5414,The second sprinter goes again. Another sprinter,The second sprinter goes again.,Another sprinter,gold,is shown in the water.,is talking about the finished roof and the connection.,swims down the slope.,follows the second sprinter.\n14531,lsmdc0020_Raising_Arizona-57726,2286,The road rushes under the camera. Someone,The road rushes under the camera.,Someone,gold,\"drives, gazing out at the road.\",is paddling through the waves at a distance in the lake.,is trapped against a wall that can't stay closed.,gets to her feet.\n14532,lsmdc0020_Raising_Arizona-57726,2294,Someone is pulling a gun out of his belt. The Cashier,Someone is pulling a gun out of his belt.,The Cashier,gold,comes from the tile again.,rips off her coat and overcoat.,\"is already down on the floor, out of frame.\",arrives at the bar and stands up at speed.\n14533,lsmdc0020_Raising_Arizona-57726,2302,\"Screaming as he watches the foot. Someone, choked up,\",Screaming as he watches the foot.,\"Someone, choked up,\",gold,watches the man run onto a long board.,gets to the bottom of the alleyway.,recalls someone striding along the sidewalk at a table surrounded between shrubs and gothic wing cones.,speaks in a low unsteady voice.\n14534,lsmdc0020_Raising_Arizona-57726,2300,The two men's heads whip around to look in the back seat. They,The two men's heads whip around to look in the back seat.,They,gold,pretty quick imitates the exterior of the house.,look at each other in horror.,are passenger the door.,haul off into bumper cars.\n14535,lsmdc0020_Raising_Arizona-57726,2299,The two men look at each other. The two men's heads,The two men look at each other.,The two men's heads,gold,are turned into a opposite mess of a kiss.,whip around to look in the back seat.,are being perusing someone's plasters walkways and thin rundown gates.,are dark in an arcade.\n14536,lsmdc0020_Raising_Arizona-57726,2290,The Cashier is ringing them up. Through the open door beyond them we,The Cashier is ringing them up.,Through the open door beyond them we,gold,see them coming home.,see someone sitting on the sofa.,can see a strip of the parking lot.,see a windowed door.\n14537,lsmdc0020_Raising_Arizona-57726,2297,Someone drives as someone sorts through his purchases. Someone,Someone drives as someone sorts through his purchases.,Someone,gold,cuddles him and pulls off a car.,\"halts the corner reception and closes the door, his hands dangling at his sides.\",\"is looking around, puzzled.\",massages one foot apart from the gun hatch.\n14538,lsmdc0020_Raising_Arizona-57726,2288,\"Someone holds someone, occasionally bouncing him. Someone\",\"Someone holds someone, occasionally bouncing him.\",Someone,gold,\"take breaks, pads down a path, and cross to another monk hall to find him.\",puts the third finger in his mouth and jacket.,\"jumps into the american, and falls to the ground.\",\"is looking down at the baby, shifting him in his lap.\"\n14539,lsmdc0020_Raising_Arizona-57726,2295,\"The Cashier is already down on the floor, out of frame. , someone\",\"The Cashier is already down on the floor, out of frame.\",\", someone\",gold,\"is casually standing the knitting woman, who demonstrating how to stand.\",\"has a casual drink, starts to drink.\",reaches for the back door.,dances into inch - deep water.\n14540,lsmdc0020_Raising_Arizona-57726,2291,Through the open door beyond them we can see a strip of the parking lot. He,Through the open door beyond them we can see a strip of the parking lot.,He,gold,takes a plastic - covered squirt gun off a display rack and drops it on the counter.,\"concentrates from the side of the road, reaches a street under the tall verdant center.\",replaces the hood on his left foot and takes off his jacket.,\"shuts the trailer door, holding a car at the back end and opens up next set.\"\n14541,lsmdc0020_Raising_Arizona-57726,2283,He snaps a clip into the automatic. Someone,He snaps a clip into the automatic.,Someone,gold,pulls up the side of the room and sees a soldier.,\"knocks a door backward, revealing his toy bag hanging in his hands.\",\"is leaving frame again, continuing to talk as we hear him rummaging offscreen.\",bundles it up and trims someone's face.\n14542,lsmdc0020_Raising_Arizona-57726,2292,He takes a plastic - covered squirt gun off a display rack and drops it on the counter. He is looking around at the other impulse purchases displayed by the register; he,He takes a plastic - covered squirt gun off a display rack and drops it on the counter.,He is looking around at the other impulse purchases displayed by the register; he,gold,unhooks a bag of balloons.,\"looks down to the twelve nine phones, who has half turned to him.\",passes a dish with a straw to his mouth.,\"is the third height, his attention and his third take, than the next door to his ransacked apartment.\"\n14543,lsmdc0020_Raising_Arizona-57726,2289,\"Someone has various baby purchases - the diapers, baby food, etc. The Cashier\",\"Someone has various baby purchases - the diapers, baby food, etc.\",The Cashier,gold,\"ship shows her a study, then cooks a meal.\",is getting louder.,is ringing them up.,\"sits back and show, watching someone close, putting the rest back on the adults.\"\n14544,lsmdc0020_Raising_Arizona-57726,2284,\"Someone is leaving frame again, continuing to talk as we hear him rummaging offscreen. Someone\",\"Someone is leaving frame again, continuing to talk as we hear him rummaging offscreen.\",Someone,gold,\"enters frame with the two handguns stuck in his belt, holding his pump - action shotgun.\",can pan up to someone for a minute though.,\"just looks at the children going by and at their feet, the door labeled, later, after someone shuffles off.\",\"encounters someone and, still looking at the chef, that him to have attention.\"\n14545,lsmdc0020_Raising_Arizona-57726,2282,\"He is walking back into frame holding another handgun now in addition to the. 38, this one an automatic. He\",\"He is walking back into frame holding another handgun now in addition to the. 38, this one an automatic.\",He,gold,snaps a clip into the automatic.,\"stops trying springs punch a punch, trying to get his glass.\",runs toward the pickup with a bewildered frown.,\"does the advantage, yet not exactly particularly.\"\n14546,lsmdc0020_Raising_Arizona-57726,2298,\"Someone is looking around, puzzled. The two men\",\"Someone is looking around, puzzled.\",The two men,gold,look at each other.,take on the cigarette and hit it in someone's fist.,\"look at each other for a moment, heads for the hotel.\",\"look at each other, then cuff the bride and hug, then heads over to them.\"\n14547,lsmdc0020_Raising_Arizona-57726,2301,They look at each other in horror. The two men's eyes widen as they remember at the same time: both,They look at each other in horror.,The two men's eyes widen as they remember at the same time: both,gold,puts the kids up below their knees.,are leaving town on the top of the flowing nine silver sound of cathedral intricate.,are trying to throw the ball to the ground.,look up at the roof of the car.\n14548,lsmdc0020_Raising_Arizona-57726,2285,He primes the shotgun: whoosh - someone. The road,He primes the shotgun: whoosh - someone.,The road,gold,\"illuminates with a human skull, its billowing dark.\",eases into the middle of the street.,rushes under the camera.,is a blossoming tank.\n14549,lsmdc0020_Raising_Arizona-57726,2287,\"Someone drives, gazing out at the road. Someone\",\"Someone drives, gazing out at the road.\",Someone,gold,\"holds someone, occasionally bouncing him.\",\"sits outside one of them, then drives off.\",\"takes a short, last breath and begins down his car speed along the street.\",telekinetically lifts onto a roof.\n14550,lsmdc0020_Raising_Arizona-57726,2293,He is looking around at the other impulse purchases displayed by the register; he unhooks a bag of balloons. Someone,He is looking around at the other impulse purchases displayed by the register; he unhooks a bag of balloons.,Someone,gold,is pulling a gun out of his belt.,walks through the living room.,\"stops near him, licks his lips then clutches her chin.\",sits down on the ground reading from a newspaper.\n14551,anetv_gf3JIm2C59g,9910,There's a middle aged couple demonstrating how to do ball room dancing. They,There's a middle aged couple demonstrating how to do ball room dancing.,They,gold,are followed by another fighting one holding the pose.,are laying down holes on the wood floor.,set off roller slide on the grass.,are in a room with large mirrors on a wall and hardwood floors.\n14552,anetv_gf3JIm2C59g,9911,They are in a room with large mirrors on a wall and hardwood floors. They,They are in a room with large mirrors on a wall and hardwood floors.,They,gold,continue practicing in the daylight.,are showing how to move the foot back and forth in rhythm while twirling their hips.,stand up as they step down to finish the dancing.,paint the wall with paint with a spatula as they watch paper and play the locker.\n14553,lsmdc3078_THE_WATCH-36416,10115,\"Now, someone joins the three watchmen as they march up the steps of a house. Someone\",\"Now, someone joins the three watchmen as they march up the steps of a house.\",Someone,gold,starts across the street.,reads a magazine on someone's bed.,kicks the front door open.,stares at the chalkboard.\n14554,lsmdc3078_THE_WATCH-36416,10118,She blocks someone's exit. He,She blocks someone's exit.,He,gold,drives straight past someone.,\"gazes down at a fallen man, then turns away abruptly and peers away.\",kisses her forehead and touches her face.,rolls her penthouse and lets the door slide shut.\n14555,lsmdc3078_THE_WATCH-36416,10116,\"Someone kicks the front door open. In slow motion, he\",Someone kicks the front door open.,\"In slow motion, he\",gold,\"raises his middle finger to his mother, who watches tv in the living room.\",\"throws a gas barrel, which wraps around someone's neck and joins him in an easy embrace.\",grabs a bottle of whiskey from the tactical vest.,makes his way past the first man.\n14556,lsmdc3078_THE_WATCH-36416,10117,They nod to her and leave. She,They nod to her and leave.,She,gold,pushes someone away from the floor.,shoves back in the car.,blocks someone's exit.,moves to meeting someone's gaze.\n14557,anetv_nsdB1r31-70,9962,A person pushing a stroller is behind them. The boy,A person pushing a stroller is behind them.,The boy,gold,drags the tube down toward the grass.,turns the mower into the other side.,turns away from the camera.,walks in and puts his hand on a pot.\n14558,anetv_QHmZWkRK528,91,They get into a formation. They then,They get into a formation.,They then,gold,glide through the water.,lunge towards each other.,do a cheer routine.,make funny faces towards the rink.\n14559,anetv_QHmZWkRK528,4376,A group of cheerleaders lay down a flag on a court. They,A group of cheerleaders lay down a flag on a court.,They,gold,start down the session.,step up from the running band with fans within then steps up a parallel beam and takes a street.,\"assemble, then begin tossing each other in the air.\",men finish fighting and stand in the middle of a room filled with officials.\n14560,anetv_QHmZWkRK528,90,Several cheerleaders stand around a gym. They,Several cheerleaders stand around a gym.,They,gold,get into a formation.,are throwing darts in a competition.,are then shown on a hockey rink.,madame the batons beam before dismounting.\n14561,anetv_QHmZWkRK528,92,They then do a cheer routine. They,They then do a cheer routine.,They,gold,throw each other up into the air.,build on a table and wins again.,come back down in the last competition and stand on the bar.,run on the board and pick signs.\n14562,anetv_QHmZWkRK528,4377,\"They assemble, then begin tossing each other in the air. They\",\"They assemble, then begin tossing each other in the air.\",They,gold,are jumping up and down on the ground while a number of them appear on the screen.,\"put on a performance for the crowd, flipping and dancing.\",\"follow each other, but the end becomes a jig.\",continue dancing in a circle and dancing in unison.\n14563,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6774,5703,Someone appears in his pajamas. Someone,Someone appears in his pajamas.,Someone,gold,is a strange man rocking tight on her coat.,\"walks towards her, still holding her hands to his chest.\",turns and goes back up the stairs.,open a bottle in the vanity and uses a hose to wipe him clean.\n14564,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6774,5701,Someone looks nervously over his shoulder as he hears the sounds of a door. A shadow,Someone looks nervously over his shoulder as he hears the sounds of a door.,A shadow,gold,comes out behind him.,stretches along the floor as his substance falls into his mouth.,spreads across his face.,moves on the stairs.\n14565,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6774,5702,A shadow moves on the stairs. Someone,A shadow moves on the stairs.,Someone,gold,dives down to some carpet.,stands beside a wooden tower.,reaches toward the spaceship.,appears in his pajamas.\n14566,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6774,5707,Someone throws off the cloak. A dragon,Someone throws off the cloak.,A dragon,gold,draws itself into the air.,flies down towards the sky.,breathes a burst of flame.,launches at someone and sends it back.\n14567,lsmdc0030_The_Hustler-64532,18422,There is a cocky leer on his face as he reaches for the dollar bills. Someone,There is a cocky leer on his face as he reaches for the dollar bills.,Someone,gold,sucks the cotton takeout bag from someone's hands.,is obvious in the back of the street without glancing past her.,\"holds up his stuffed billfold for his pal, someone, to see.\",hangs up the phone.\n14568,lsmdc0030_The_Hustler-64532,18423,\"Someone holds up his stuffed billfold for his pal, someone, to see. He\",\"Someone holds up his stuffed billfold for his pal, someone, to see.\",He,gold,and a plane soar in the air across the grand bridge.,tosses it on the seat beside him and turns on the ignition.,shoots it in the back of the car and finds it empty.,\"shows the envelope of his own phone, steps forward, and makes one glaring eye across the way.\"\n14569,anetv_0EepbsAtiDk,15563,A close up of a horse is shown walking along the beach behind several other people riding on horses. The camera,A close up of a horse is shown walking along the beach behind several other people riding on horses.,The camera,gold,\"pans to show the camels, the people sitting on the boat.\",pans into a group walking through a river and going the waters of a river.,shows the young people talking around the forest while the camera captures them from several angles.,continues to pan around as the people ride on horses all along the beach.\n14570,anetv_0EepbsAtiDk,16606,\"A group of individuals rides horses on a beach, with the camera view being from the perspective of one of the riders. The camera pans right\",\"A group of individuals rides horses on a beach, with the camera view being from the perspective of one of the riders.\",The camera pans right,gold,to show the people practicing with a title gate.,to the left and the person.,and point to the horse.,to show cars nearby.\n14571,anetv_4uwtqRBE4Kk,3312,A sea is shown with a green forest on seashore. blond man,A sea is shown with a green forest on seashore.,blond man,gold,is indoors standing in an outdoor top with a cricket bat and preparing to flip around on the track.,is standing in seashore and talking to the camera and surfing big waves on the sea.,are shown removing a colored slope dunes.,talks in a circular ice rink.\n14572,anetv_4uwtqRBE4Kk,3313,Blond man is standing in seashore and talking to the camera and surfing big waves on the sea. man,Blond man is standing in seashore and talking to the camera and surfing big waves on the sea.,man,gold,plays the inside of a pool with a volleyball game.,is surfing in the water and ramps in a park in the water doing tricks.,is in a scuba circle with a person holding a large rope.,is walking on seashore through a lot of people and talking to the camera and holding an award and talking about surfing the seashore.\n14573,anetv_hfBTv5b_Cok,1000,\"Then, a person writes and explains the music synthesizer while people are playing. People\",\"Then, a person writes and explains the music synthesizer while people are playing.\",People,gold,is in one of chairs surfing.,explains about the instruments and the musicians.,\"walk along, scour the baby.\",is interviewed near a mat.\n14574,anetv_hfBTv5b_Cok,11516,A group of men are shown in recording studios. Several men,A group of men are shown in recording studios.,Several men,gold,are wearing boxing gloves.,talk in one class.,are shown and then start to show tricks with capes.,are shown playing drums and cymbals.\n14575,anetv_hfBTv5b_Cok,11517,Several men are shown playing drums and cymbals. A man,Several men are shown playing drums and cymbals.,A man,gold,plays drums and sings.,is seated on a red stage holding his swimmers microphone.,puts a flame on his face and begins playing an instrument again.,is shown inside the studio talking and adjusting the sound levels.\n14576,anetv_zuqNxHmtBD8,2121,We see another man stretching his arms. The jumper waits for the scores to appear on the screen and the man who jumped,We see another man stretching his arms.,The jumper waits for the scores to appear on the screen and the man who jumped,gold,successfully threw his dart.,throws his jump and other recruits are watching him or bites on the wall.,is on the pole.,throws his hands in the air and runs away.\n14577,anetv_zuqNxHmtBD8,2119,We see a man's face up close with his name imposed over it as the man prepares to run on a track. The man,We see a man's face up close with his name imposed over it as the man prepares to run on a track.,The man,gold,continues dancing with one another and ends by waving to the camera.,spins himself around the entire stage.,runs down the track and performs a long jump and throws his arms in the air.,starts his soccer and gives it a ramp.\n14578,anetv_zuqNxHmtBD8,2120,The man runs down the track and performs a long jump and throws his arms in the air. We,The man runs down the track and performs a long jump and throws his arms in the air.,We,gold,as the person track his score and score by riding on his bike.,man hand wearing sunglasses complete to the camera.,music then does this routine swiftly in the street again.,see another man stretching his arms.\n14579,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72757,9954,Someone presses the tip of his wand against his temple. He,Someone presses the tip of his wand against his temple.,He,gold,looks down blankly and crosses to people.,struggles to his feet.,closes his eyes then pulls the wand away.,\"collapses, smashing into the ceiling railing.\"\n14580,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72757,9953,He blinks and his eyes moisten. Someone,He blinks and his eyes moisten.,Someone,gold,\"straightens in a seat, then leans her head back.\",presses the tip of his wand against his temple.,finishes his search and runs off in the wrong direction.,sleeps with his eyes open.\n14581,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72757,9956,\"His hand shaking, he holds up a small test tube. The memory\",\"His hand shaking, he holds up a small test tube.\",The memory,gold,welds attached to a metal bowl.,drops into the container.,switches back to the opposite color.,shows someone ogles someone's reflection in the glass above him.\n14582,lsmdc0013_Halloween-53586,19517,\"She begins to scream, trying to fend off the blows with her hands, then suddenly falls out of frame to the floor. The pov\",\"She begins to scream, trying to fend off the blows with her hands, then suddenly falls out of frame to the floor.\",The pov,gold,\"move slowly, revealing the last shoppers.\",starts to record her.,\"moves back away from the sister's lifeless body, spins around and careens out of the bedroom.\",man smiles inside anger and overwhelming pain.\n14583,lsmdc0013_Halloween-53586,19515,\"Sensing a presence, she spins around and stares at the pov, covering her breasts quickly. The sister\",\"Sensing a presence, she spins around and stares at the pov, covering her breasts quickly.\",The sister,gold,continues to stare incredulously.,\"slouched stiffly, eyeing the tile stone then vomits down.\",smiles as she walks on the walks to her mother's bedroom.,\"lifts her eye up to the troll, then does an intricate dance.\"\n14584,lsmdc0013_Halloween-53586,19514,\"She is still completely nude. Sensing a presence, she\",She is still completely nude.,\"Sensing a presence, she\",gold,\"picks her up from the potion and shoots it through the far wall of the room, breaking off a final lamp.\",gapes at the defeated students and has been forced back.,\"spins around and stares at the pov, covering her breasts quickly.\",looks down at her stocking feet and continues.\n14585,lsmdc0013_Halloween-53586,19516,There is a rapid blur as the pov drives the butcher knife into the sister's chest and out again almost before we've seen it. She,There is a rapid blur as the pov drives the butcher knife into the sister's chest and out again almost before we've seen it.,She,gold,faces over her husband's eyes.,\"begins to scream, trying to fend off the blows with her hands, then suddenly falls out of frame to the floor.\",just sits beside someone.,kid looks miserable.\n14586,lsmdc0013_Halloween-53586,19511,The pov bends down and picks it up. Then suddenly the pov is covered by the mask and we,The pov bends down and picks it up.,Then suddenly the pov is covered by the mask and we,gold,see the arquillian get close for her right end.,see n't see them.,see through the eye - holes.,see a middle - aged campaign personnel standing with suit hats on in them.\n14587,lsmdc0013_Halloween-53586,19512,Then suddenly the pov is covered by the mask and we see through the eye - holes. The sister,Then suddenly the pov is covered by the mask and we see through the eye - holes.,The sister,gold,dives into the water above the table.,emerges from someone's room and starts shaking the bag.,retrieves another ball up in the air.,sits at her night - table brushing her hair.\n14588,lsmdc0013_Halloween-53586,19510,Suddenly we move down to the discarded Halloween mask on the floor. The pov,Suddenly we move down to the discarded Halloween mask on the floor.,The pov,gold,inches of the car fighting on his jacket.,\", illuminating the house, light, from the divan comes to a sound, coming slowly through the room.\",bends down and picks it up.,channel of the sky board.\n14589,lsmdc0013_Halloween-53586,19513,The sister sits at her night - table brushing her hair. She,The sister sits at her night - table brushing her hair.,She,gold,glances sternly in her direction.,looks dazed who perks up.,is still completely nude.,stops for a moment and gazes up at her.\n14590,anetv_Jh07fhoPWEI,148,A woman is seen holding a rubix cube and begins attempting to solve it. She,A woman is seen holding a rubix cube and begins attempting to solve it.,She,gold,continues painting the wall into one frame while swinging back and fourth.,continues running around while stopping to speak to the camera.,tries again moving the object around and around.,continues to be seen performing close ups before the camera captures people in the background.\n14591,anetv_Jh07fhoPWEI,14947,\"In between each take, a paragraph appears and begins to describe her experiences and the time it took her using each routine. Finally, a still image is shown of a solved cube and another paragraph\",\"In between each take, a paragraph appears and begins to describe her experiences and the time it took her using each routine.\",\"Finally, a still image is shown of a solved cube and another paragraph\",gold,that is written on it and everyone fades to see the phone.,comes across with her official time on it.,being stirred and golden rings begin to take on the screen.,comes into one of the groups behind it.\n14592,anetv_Jh07fhoPWEI,14946,\"A middle age woman is sitting in a classroom trying to solve a Rubik's cube. In between each take, a paragraph\",A middle age woman is sitting in a classroom trying to solve a Rubik's cube.,\"In between each take, a paragraph\",gold,pops up in the air and places when she put glue into one cube.,is shown of the woman doing various karate exercises using the needle as the class fades out.,appears and begins to describe her experiences and the time it took her using each routine.,is next shown with her heal.\n14593,anetv_Jh07fhoPWEI,149,She tries again moving the object around and around. She,She tries again moving the object around and around.,She,gold,continues pushing the nickel into the net.,holds up the puzzle and solves it several more times.,finishes kicking the frame.,continues painting the bowl while stands.\n14594,anetv_-ZBsdK10Trs,19262,Several boys are then shown hitting the camera. The balls,Several boys are then shown hitting the camera.,The balls,gold,continue to fly as others watch on the side.,are held down and put all over the field.,begin being rumpled and serving as they talk into each other.,are shown as well as horses and holding a puck.\n14595,anetv_-ZBsdK10Trs,4706,A large gymnasium is seen followed by a ball hitting the camera and shown again several times. The same shot,A large gymnasium is seen followed by a ball hitting the camera and shown again several times.,The same shot,gold,is shown again over and over while showing different effects during the process.,is shown again in slow motion putting the players on the sides.,is shown again and the same person does several flips several times.,is shown again followed by clips of people throwing the shotput at one another.\n14596,lsmdc3083_TITANIC2-38876,15036,\"Snoop Dog glides into a room, the remains of a wooden bed lie collapsed on the floor. Another eel\",\"Snoop Dog glides into a room, the remains of a wooden bed lie collapsed on the floor.\",Another eel,gold,sits in front of someone.,pill bottle fills the air.,hotels from the top of another view into the lifeboat.,swims past a porcelain bathtub.\n14597,lsmdc3083_TITANIC2-38876,15035,\"One of the robotic explorers shines its lights on the rotted remains of a grand piano. Snoop Dog glides into a room, the remains of a wooden bed\",One of the robotic explorers shines its lights on the rotted remains of a grand piano.,\"Snoop Dog glides into a room, the remains of a wooden bed\",gold,contains a six stone people.,dripping with a large pink ball.,illuminated with its broken lens.,lie collapsed on the floor.\n14598,anetv_8SMXK2uOvk0,16946,A person is trying to start a fire. The person,A person is trying to start a fire.,The person,gold,is vacuuming the stem after them.,is taking puffs off the fire.,feeds the fire and moves it to a hole.,begins to float on the carpet.\n14599,anetv_8SMXK2uOvk0,16944,The credits of the clip are shown. People,The credits of the clip are shown.,People,gold,are biking down a path.,hikes up a lane lanes with a man.,bring some plaster to a man that is sitting down on the ground.,are in a train station washing a landing and waxing boards on a board.\n14600,anetv_8SMXK2uOvk0,16945,People are biking down a path. A person,People are biking down a path.,A person,gold,is trying to start a fire.,is running down a hill of snow.,is standing on a snow plow doing somersaults.,is pushing a wheelbarrow of trees.\n14601,anetv_UCOn2HkJJt8,14701,The camera then zooms in on the target. The website scrolls across the screen again and the man,The camera then zooms in on the target.,The website scrolls across the screen again and the man,gold,plays the number before putting it back down on one hand and puts the helmet on.,fires three more arrows.,captures from the scroll.,continues to paint the stone areas of the crowd.\n14602,anetv_UCOn2HkJJt8,14698,The man stands up on the four wheeler and hits his break lights to inspect a target. A man holding a bow and arrow,The man stands up on the four wheeler and hits his break lights to inspect a target.,A man holding a bow and arrow,gold,appears in the rink where the dart catches a flare.,evaluating a man plastering the corner.,is talking and demonstrating features on the bow he's holding.,is shown with manis running on the field.\n14603,anetv_UCOn2HkJJt8,14699,A man holding a bow and arrow is talking and demonstrating features on the bow he's holding. A website,A man holding a bow and arrow is talking and demonstrating features on the bow he's holding.,A website,gold,scrolls across the screen while the man fires the bow at a target.,appears introducing the offer with a flag in their hand.,appears and then cuts out.,appears on the screen as he and the girl give this a trophy.\n14604,anetv_UCOn2HkJJt8,14700,A website scrolls across the screen while the man fires the bow at a target. The camera then,A website scrolls across the screen while the man fires the bow at a target.,The camera then,gold,zooms in on the target.,focuses on the spraying bushes.,zooms in a graph on the canvas.,spins to see a metal object attached to the machine.\n14605,anetv_UCOn2HkJJt8,14697,A man rides a four wheeler in a field. The man,A man rides a four wheeler in a field.,The man,gold,walks behind the boy and a group of other men on the beach.,spreads the rope over the tire.,goes down backwards on the calm green and bowls lane making them hit forward.,stands up on the four wheeler and hits his break lights to inspect a target.\n14606,lsmdc3022_DINNER_FOR_SCHMUCKS-10248,18894,Now he airbrushes a sunbathing mouse so that it looks like a topless female mouse has a bikini line. Two more mice,Now he airbrushes a sunbathing mouse so that it looks like a topless female mouse has a bikini line.,Two more mice,gold,\"run for the door, followed by someone.\",talk in its slot.,are posed with their hands in each other's back pockets.,are poured into a small white fabric bowl.\n14607,lsmdc3022_DINNER_FOR_SCHMUCKS-10248,18895,Two more mice are posed with their hands in each other's back pockets. The man,Two more mice are posed with their hands in each other's back pockets.,The man,gold,\"appears, holing his captors, no frame with rods and looking, moving unsteadily.\",dons clothes and is on a warmly lit window as he continues to work.,bends his hand to prevent them from hitting the chopped part ropes.,paints a piece of cheese resting on a table between two mice sitting in a pergola.\n14608,lsmdc3022_DINNER_FOR_SCHMUCKS-10248,18896,\"All the separate but identical mouse couples are revealed in their places on the diorama. Three office workers - someone, someone and someone -\",All the separate but identical mouse couples are revealed in their places on the diorama.,\"Three office workers - someone, someone and someone -\",gold,watch a man carry a box of things to a car in the car park below.,carousel the opposite into a business fifties.,\"others from the press conference, sit around their beds, whilst the family is very looking.\",are only with a barred door in front beside the van someone's just 2000 earlier.\n14609,lsmdc3022_DINNER_FOR_SCHMUCKS-10248,18893,Mice are posed spinning hula - hoops and riding on a roundabout. The man,Mice are posed spinning hula - hoops and riding on a roundabout.,The man,gold,uses a gas lighter to light little balls that one of the bespectacled male mice is juggling.,grabs and free and falls.,skips and throws the sand on the floor while the dog continues to play.,pushes lemons to the lead and even different while the kids watch.\n14610,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13212,Someone steps closer to inspect it. She,Someone steps closer to inspect it.,She,gold,takes a compassionate puff.,carries the baby into the house.,sees someone sitting stony - faced.,darts at the memory frame.\n14611,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13213,She heads for her room. It,She heads for her room.,It,gold,turns to close someone's door.,shines excitedly toward the water building.,is charged with what someone is looking at.,'s in the basement.\n14612,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13215,\"She opens the top drawer of a dresser, places the baby in it, and half - closes the drawer. She\",\"She opens the top drawer of a dresser, places the baby in it, and half - closes the drawer.\",She,gold,hesitates then takes it out as he approaches a table.,sits up and spots more letters.,\"drops the note in the pan, rocking on her desk.\",opens her room door to someone.\n14613,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13216,She opens her room door to someone. A doctor,She opens her room door to someone.,A doctor,gold,stands over an aged resident.,goes to a digital window to look out.,helps the man closely by his arm.,stands up and hugs someone.\n14614,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13211,\"Someone opens the blanket to reveal the baby, which has an old and very wrinkled face. Someone\",\"Someone opens the blanket to reveal the baby, which has an old and very wrinkled face.\",Someone,gold,flexes his wrist as he limps forward.,steps closer to inspect it.,has an ink and littered fingernail over their nails.,rocks upside down and gets turned to face them.\n14615,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13217,Two white - haired old women laugh. Someone,Two white - haired old women laugh.,Someone,gold,quietly approaches someone and whispers in his ear.,takes someone's crotch.,smiles as if trying to man the joke.,turns and finds her lying down on her desk.\n14616,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86233,13214,\"Someone closes her door on the old lady, who's wearing a pearl necklace, then peels the blanket from over the baby's face. She\",\"Someone closes her door on the old lady, who's wearing a pearl necklace, then peels the blanket from over the baby's face.\",She,gold,bears a blue scar on his left forearm.,\"turned, giggling at the sight and louder.\",\"opens the top drawer of a dresser, places the baby in it, and half - closes the drawer.\",wraps his arms around someone's shoulders and kisses him on the cheek with a thumbs smile.\n14617,anetv_5c8HvpeRWrc,11848,Two ballerinas are seen dancing in a room with one another while twirling around. More girls,Two ballerinas are seen dancing in a room with one another while twirling around.,More girls,gold,are seen standing around one another.,demonstrate pairs on the step stage and end by holding a pose.,are seen in the background dancing as well.,perform the same while others watch on the side.\n14618,anetv_5c8HvpeRWrc,4970,A group of girls are seen performing ballet moves together. A woman,A group of girls are seen performing ballet moves together.,A woman,gold,walks in and out of frame watching the girls as they continue to dance.,adjusting their hips and pans around.,waves in front of a camera while a crowd watches her on the side.,stretching the floor removes the cloth and leads into small men playing ballet dancing.\n14619,anetv_5c8HvpeRWrc,11849,More girls are seen in the background dancing as well. The girls,More girls are seen in the background dancing as well.,The girls,gold,continue dancing with one another and stop in the end to look around.,continue dancing by one another while dancing.,pauses smiling and begins another video of someone with them.,move away from the camera.\n14620,anetv_J0EWvkkxh5o,5409,The girl jumps and stands looking scared of the height. The girl,The girl jumps and stands looking scared of the height.,The girl,gold,turns and dives into the water.,brushes a toe from one toe.,is showing her ponytail evening.,jumps off her running side and falls with the water.\n14621,anetv_J0EWvkkxh5o,5410,The girl turns and dives into the water. The girl,The girl turns and dives into the water.,The girl,gold,does the jump and jumps off the diving dive into the pool.,surfaces and swims to the edge of the pool.,swims to the edge and swims closer to the water.,soars to the sidelines and makes another jump.\n14622,anetv_J0EWvkkxh5o,5408,We see a girl preparing to dive in an indoor pool. The girl,We see a girl preparing to dive in an indoor pool.,The girl,gold,dives in a turn.,jumps over a trampoline then dives back into pool.,jumps and stands looking scared of the height.,swings high and lands in a split on the ice holding a stick above.\n14623,lsmdc3013_BURLESQUE-4468,5453,\"The blonde enters another building. Later still, she\",The blonde enters another building.,\"Later still, she\",gold,xs out two more ads for singers and dancers as she continues down the boulevard.,waves to him and helps him walk past someone with his bike.,parks in front of someone watching someone.,meets people around them as she steals from their positions.\n14624,lsmdc3013_BURLESQUE-4468,5454,\"Later still, she Xs out two more ads for singers and dancers as she continues down the boulevard. She\",\"Later still, she Xs out two more ads for singers and dancers as she continues down the boulevard.\",She,gold,didn't wear any though full dress.,\"gives someone a polite smile, which instantly fades as she moves on.\",\"on the stairs, someone emerges joyfully.\",points happily at her own.\n14625,lsmdc3013_BURLESQUE-4468,5456,\"On the building's fire escape, she sees a woman in a sexy corset with a short feathery skirt. As the woman adjusts her striped thigh - highs, her gaze\",\"On the building's fire escape, she sees a woman in a sexy corset with a short feathery skirt.\",\"As the woman adjusts her striped thigh - highs, her gaze\",gold,meets the blonde's.,returns with another pout.,focuses on his white figure.,drops forward.\n14626,lsmdc3013_BURLESQUE-4468,5457,\"Our view sweeps up a nearly completed high - rise behind her that advertises, Luxury Condos for Sale. It\",\"Our view sweeps up a nearly completed high - rise behind her that advertises, Luxury Condos for Sale.\",It,gold,entwined her dimly loved feature.,\"shows a pixie - faced blue - eyed brunette and reads, the best view on the sunset strip.\",pauses and gazes at it coldly.,looks in as her husband reacts to it.\n14627,lsmdc3013_BURLESQUE-4468,5462,\"She casts another glance at the show, then hands over a $20. Onstage, the reclined dancers\",\"She casts another glance at the show, then hands over a $20.\",\"Onstage, the reclined dancers\",gold,let hem of her short skirt.,kick their hand out.,snap then raise their arms in the air.,\"form two lines, kissing with force.\"\n14628,lsmdc3013_BURLESQUE-4468,5460,\"As she heads down a staircase, she eyes the lounge's stage through a window. A doorman\",\"As she heads down a staircase, she eyes the lounge's stage through a window.\",A doorman,gold,holds out his hand.,enters the dining room.,touches his ear button.,opens the front door for her and slips inside.\n14629,lsmdc3013_BURLESQUE-4468,5461,The blonde opens her wallet and hesitates. She,The blonde opens her wallet and hesitates.,She,gold,\"casts another glance at the show, then hands over a $20.\",\"flicks his plaid towel over her own sweating someone, then runs through it and crosses the parking lot.\",finds a photo of someone holding a plate and a report case and pulls her to him.,turns her attention to them.\n14630,lsmdc3013_BURLESQUE-4468,5448,\"Then she rips the card to shreds. At her open window, she\",Then she rips the card to shreds.,\"At her open window, she\",gold,tosses the scraps and watches them flutter downward.,shows 2 safe glasses.,sets the check over her chest and shoots.,crouches under the couch.\n14631,lsmdc3013_BURLESQUE-4468,5444,\"Other views show the glitzy athletic dancers in unison. In the bathroom, she\",Other views show the glitzy athletic dancers in unison.,\"In the bathroom, she\",gold,\"gathers up three red flowers, then kneel at each desks as she carries an identical bundle away.\",\"lifts the lid off the toilet tank and carefully sets the bag inside, leaving its top edge over the back rim.\",tapes the beard back and puts it back on.,pauses by the door outside the house.\n14632,lsmdc3013_BURLESQUE-4468,5449,\"At her open window, she tosses the scraps and watches them flutter downward. Now she\",\"At her open window, she tosses the scraps and watches them flutter downward.\",Now she,gold,steps onto a busy sidewalk.,sips the water and cooks it.,wears a basement dressing dress.,scrambles back through the town station.\n14633,lsmdc3013_BURLESQUE-4468,5443,\"Now the Hollywood sign fills the screen. On the bus, the sleepy blonde\",Now the Hollywood sign fills the screen.,\"On the bus, the sleepy blonde\",gold,holds her bag as they go back into the car.,notices the girl in a black wig rattles right up.,gives a faint look.,opens her eyes just as the sign's reflection skates across her window.\n14634,lsmdc3013_BURLESQUE-4468,5458,\"It shows a pixie - faced blue - eyed brunette and reads, The Best View on the Sunset Strip. Entering the building, the blonde\",\"It shows a pixie - faced blue - eyed brunette and reads, The Best View on the Sunset Strip.\",\"Entering the building, the blonde\",gold,haired recoiling and wears a red skirt as she walks into the room and front.,plants one kiss behind her neck and sets her down.,brushes her cellphone atop her outfit and leaps up from her chair.,makes her way down a dim wood - paneled hall.\n14635,lsmdc3013_BURLESQUE-4468,5442,Now she peers dreamily out the window of a cruising bus. As the sequined - clad dancers,Now she peers dreamily out the window of a cruising bus.,As the sequined - clad dancers,gold,\"lounge on her parents' couch, someone smiles as someone stares after her.\",move beneath from her.,\"command their stage, the blonde sings to empty chairs in someone's bar.\",shake their bony wings.\n14636,lsmdc3013_BURLESQUE-4468,5446,She replaces the porcelain lid. Now she,She replaces the porcelain lid.,Now she,gold,pulls a view of a jar filled with ice.,unpacks her framed photo.,scoots aside to lift the lid and pulls a discarded metal cross from her clear plastic case.,sits in her pouring dress with some hair cut with leather wrap.\n14637,lsmdc3013_BURLESQUE-4468,5455,\"Her eyes sweeping her surroundings. On the building's fire escape, she\",Her eyes sweeping her surroundings.,\"On the building's fire escape, she\",gold,sees a woman in a sexy corset with a short feathery skirt.,finds another one of the sniper rifle and peers into the other direction.,sees rows of blonde women standing at a podium topped by a black and western - related someone.,takes up her stereo as she packs a gun.\n14638,lsmdc3013_BURLESQUE-4468,5450,Now she steps onto a busy sidewalk. She,Now she steps onto a busy sidewalk.,She,gold,pours a bottle of tea.,\"walks back to the bar, where someone sits someone with her new bottle of blond wine.\",\"sits down in her chair with his back to his hand, and gives her a hug.\",lifts her gaze from an issue of back stage magazine in her hand and finds a sign for hollywood boulevard.\n14639,lsmdc3013_BURLESQUE-4468,5459,\"Entering the building, the blonde makes her way down a dim wood - paneled hall. As she heads down a staircase, she\",\"Entering the building, the blonde makes her way down a dim wood - paneled hall.\",\"As she heads down a staircase, she\",gold,turns to her students and regards her gravely.,steps onto a high stair case which grunts.,makes the marble new behind.,eyes the lounge's stage through a window.\n14640,lsmdc3013_BURLESQUE-4468,5445,\"In the bathroom, she lifts the lid off the toilet tank and carefully sets the bag inside, leaving its top edge over the back rim. She\",\"In the bathroom, she lifts the lid off the toilet tank and carefully sets the bag inside, leaving its top edge over the back rim.\",She,gold,replaces the porcelain lid.,\"moves down a long, spiral examining section of the basement, and throws it cloudy.\",sets it down the entryway and scoots.,\"eyes the crank on its instrument, then goes to the edge of the chair and shuts it with a cold stare.\"\n14641,lsmdc3013_BURLESQUE-4468,5451,She lifts her gaze from an issue of Back Stage Magazine in her hand and finds a sign for Hollywood Boulevard. Her finger,She lifts her gaze from an issue of Back Stage Magazine in her hand and finds a sign for Hollywood Boulevard.,Her finger,gold,trails down an ad in the magazine that seeks background singers for urban group.,goes straight into a khaki village as it's pretty covered.,drops the receiver and holds it up to her lips.,\"- like finger, as well, begins the design around the first tree.\"\n14642,lsmdc3013_BURLESQUE-4468,5452,Her finger trails down an ad in the magazine that seeks background singers for urban group. Our view,Her finger trails down an ad in the magazine that seeks background singers for urban group.,Our view,gold,moves to one past two enormous piglet which paints a jagged scar.,sweeps up the towering circular capitol records building.,\"takes back a metropolitan manhattan full of text, which is held at two ornate arch.\",sweeps across a tall concrete facade with shiny leaves and across breeze like filters semi - paved street.\n14643,anetv_3mymOHc5-Gs,19412,\"A man shows a boot and shining tools. Then, the man\",A man shows a boot and shining tools.,\"Then, the man\",gold,cleans the shoe with a cloth.,hammers with a white paper cloth.,adds with his rubber gloves.,paints a wood box with dark paint.\n14644,anetv_3mymOHc5-Gs,19413,\"After, the man points the tip of the shoe and applies black paint and shows insoles. Then, the man\",\"After, the man points the tip of the shoe and applies black paint and shows insoles.\",\"Then, the man\",gold,uses the product of a item from the walls.,\"polish the shoes using a cream, after spray the shoes.\",dip the paint and add liquid.,turns his face with the cloth and sprays it on a towel.\n14645,anetv_OkMH4AlF8hQ,5915,A young child is seen holding an ice cream cone and speaking to the camera while smiling. She,A young child is seen holding an ice cream cone and speaking to the camera while smiling.,She,gold,\"speaks to the camera man holding a doll in the other hand, then sits down on the ground.\",continues brushing the teeth and still brushing teeth while speaking to the camera.,grabs a screwdriver to larger the fish before finally holding up her fingers and wiping her face while stopping.,bends down and tries to speak more after the ride.\n14646,anetv_0kykNR9FUWU,13026,\"There is a panel of judges watching her in the stadium in Nanning, China. She\",\"There is a panel of judges watching her in the stadium in Nanning, China.\",She,gold,gets off the bar and falls back onto a chair.,jumps off of the bars and jumps on a woman at the bottom of a bus.,continues to gracefully walk on the horse bar as she jumps and does a back flip right onto the ground and then walks away.,continue to play moves and do it the other way she is holding the slides into position.\n14647,anetv_0kykNR9FUWU,13025,A girl gymnast in red sparkly leotard is doing gymnastics on a horse bar. She,A girl gymnast in red sparkly leotard is doing gymnastics on a horse bar.,She,gold,is doing a karate routine in a gym filled with playground of different exact.,is walking from behind her holding it high and down to the ground.,is in a gym gym wearing a red top and shorts.,swiftly jumps and does handsprings and back flips on the horse bar.\n14648,anetv_YLT7YEwUCwI,13045,The man then begins swimming around the pool back and fourth with others. Several shots,The man then begins swimming around the pool back and fourth with others.,Several shots,gold,are shown of him swimming around people as well as moving in the water.,are shown of people swimming around in the water with arms in the end.,are shown of people playing drums while others watch on the side and run away.,are shown of people riding around in the water below.\n14649,anetv_YLT7YEwUCwI,13044,A man is seen speaking to the camera and leads into him sitting still in a pool. The man then,A man is seen speaking to the camera and leads into him sitting still in a pool.,The man then,gold,begins riding in the kayak with the rapids and leads into him playing in the water.,begins swimming around the pool back and fourth with others.,swinging back and fourth on the board while talking.,gets sand and begins to solve a rubik's cube.\n14650,anetv_zGDecqEw9AU,16855,Two people are seen playing a fooseball table and cheering with one another. The people,Two people are seen playing a fooseball table and cheering with one another.,The people,gold,continue playing and pausing to cheer ending with a handshake.,continue to play and continue to play the game while they continue playing with one another.,begin to play with one another trying to help.,continue playing soccer while playing around and speaking to the camera.\n14651,anetv_wV2c3sdctbs,11267,\"A boy is explaining how to put on toes shoes on his left foot. Then, the boy\",A boy is explaining how to put on toes shoes on his left foot.,\"Then, the boy\",gold,switch people and does the same shine.,raise the right foot and take out the toe shoe and continue explaining.,rolls the ice and put a ball carrying a weigh.,puts a razor in the holes then applies the wood stick to the kid in a blue shirt and irons.\n14652,lsmdc1028_No_Reservations-82908,8161,Someone leads the couple to their table. People,Someone leads the couple to their table.,People,gold,pages the boys reading.,\"go into a small glass - fronted room filled with well - stocked, floor - to - ceiling wine racks.\",pushes to the floor to follow someone.,set the door for someone.\n14653,lsmdc1028_No_Reservations-82908,8160,Someone whisks the man's coat off him. Someone,Someone whisks the man's coat off him.,Someone,gold,leads the couple to their table.,punches him in the throat.,hands someone a drink of tea.,pulls his wife closer.\n14654,anetv_A8dBgZCuQow,19884,A woman is seen waving to the camera and leads into her putting makeup all over her face. The woman,A woman is seen waving to the camera and leads into her putting makeup all over her face.,The woman,gold,continues washing while smiling at the camera.,continues using the machine and moving the brush back and fourth in the end.,continues putting makeup on all over her face and ends by smiling to the camera.,put a contact lens in her eye and then wipe all of her face with a rag and a solution.\n14655,anetv_A8dBgZCuQow,10484,She applies eyelash makeup while using a mirror for help. She then,She applies eyelash makeup while using a mirror for help.,She then,gold,shows the elastic back of her hair as well as her body legs.,applies mascara to a mixture.,adds mascara to one eye.,shows a small makeup case and applies makeup to her lips.\n14656,anetv_A8dBgZCuQow,10483,She then uses various size brushes to apply the makeup to her face. She,She then uses various size brushes to apply the makeup to her face.,She,gold,are shown a ballet style outfit so she runners to pose.,applies eyelash makeup while using a mirror for help.,nods with a different hit.,sets her feet in the camera and she places more water down her face.\n14657,anetv_A8dBgZCuQow,10481,A woman sitting in a room puts on makeup as a song plays. She,A woman sitting in a room puts on makeup as a song plays.,She,gold,takes out a small mirror to help her.,\"is licking an accordion in front of a sofa next to her, dancing and doing a picture.\",is an ntsb while flipping her hair off and mixing various ingredients together.,leans on the spring board and shakes her head.\n14658,anetv_A8dBgZCuQow,10482,She takes out a small mirror to help her. She then,She takes out a small mirror to help her.,She then,gold,irons on another one of the places.,shows how to remove the clothes for storage.,uses various size brushes to apply the makeup to her face.,holds it in her mouth and dabs the half with it.\n14659,anetv_Xq2LIzE5eDs,8891,A dog is shown swimming after a ball in the ocean. He,A dog is shown swimming after a ball in the ocean.,He,gold,is also shown the swim while drinking and drinking with water.,\"is shown again several times, starting one at a time.\",is being drug by a large wave to cool the cool land.,catches up to it near a wooden slat floating in the water.\n14660,anetv_Xq2LIzE5eDs,8085,A white dog is playing with a ball in the water. The dog,A white dog is playing with a ball in the water.,The dog,gold,takes the ball back into the water.,is watching the cow behind the frisbee.,\"dances with the dog, spinning and doing tricks on the dog.\",is trying to cut the leaves into the background.\n14661,anetv_Xq2LIzE5eDs,8892,He catches up to it near a wooden slat floating in the water. He,He catches up to it near a wooden slat floating in the water.,He,gold,weary of all of the recruits!,\"gets out of the pot, peers at the screen for a moment before putting in their shaker.\",aims with a bullet around uniform.,\"snaps at the ball, rolling it back toward the shore.\"\n14662,anetv_Xq2LIzE5eDs,8086,The dog takes the ball back into the water. The dog,The dog takes the ball back into the water.,The dog,gold,sits on the camel and waits for a moment.,\"gets back on his horse, as he raises the young lady feet from the air.\",comes onto the shore with the ball.,climbs on the table with people beside him.\n14663,lsmdc3034_IDES_OF_MARCH-3217,5112,\"Someone accepts his jacket from a colleague and puts it on. As someone leaves, a tv\",Someone accepts his jacket from a colleague and puts it on.,\"As someone leaves, a tv\",gold,manager joins someone at desk.,shows an interview with someone.,shows a british phone scene.,indicates the far end.\n14664,lsmdc3034_IDES_OF_MARCH-3217,5118,\"They share a knowing gaze, then someone files past one of the security guards. Walking in our direction, he\",\"They share a knowing gaze, then someone files past one of the security guards.\",\"Walking in our direction, he\",gold,\"ambles down the middle of an empty corridor, then notices a stone staircase leading up to an ornate amphitheater.\",\"dials her phone, then freezes at someone's desk.\",\"crosses a darkened corridor, his face cast in shadow.\",spots some large fairy objects peeking out of a door.\n14665,lsmdc3034_IDES_OF_MARCH-3217,5114,\"Outside, someone marches across a walkway and heads up the front steps of the campus building. Later, he\",\"Outside, someone marches across a walkway and heads up the front steps of the campus building.\",\"Later, he\",gold,hikes up a path's overgrown estate.,heads about partially obscured by the hedges.,heads down an empty stairwell.,shuffles through the courtyard in front of the taj noble house.\n14666,lsmdc3034_IDES_OF_MARCH-3217,5116,Someone waits in a corridor. She,Someone waits in a corridor.,She,gold,follows someone down the hall toward a pair of imposing guards.,presses a button on the box.,is wide - eyed by someone asleep in the sewer.,reaches for a gun hook and rejoins both agents anxiously.\n14667,lsmdc3034_IDES_OF_MARCH-3217,5126,\"As our view finally settles facing the young campaign manager, someone looks to his left. He\",\"As our view finally settles facing the young campaign manager, someone looks to his left.\",He,gold,selects a $test card.,\"notices the blonde - haired makeup artist admiring him, then faces the camera and lowers his gaze.\",indicates someone's side.,takes his penguin out of his paper and marches off toward a window.\n14668,lsmdc3034_IDES_OF_MARCH-3217,5127,\"He notices the blonde - haired makeup artist admiring him, then faces the camera and lowers his gaze. We gradually\",\"He notices the blonde - haired makeup artist admiring him, then faces the camera and lowers his gaze.\",We gradually,gold,begin to stare and the kiss becomes longer.,faces the even older people.,\"press in on the campaign manager's handsome face, his eyes downcast.\",backed away and holds up a big slug which to go down it.\n14669,lsmdc3034_IDES_OF_MARCH-3217,5125,\"Someone nods, gazing straight ahead with a deadpan expression. As our view finally settles facing the young campaign manager, someone\",\"Someone nods, gazing straight ahead with a deadpan expression.\",\"As our view finally settles facing the young campaign manager, someone\",gold,waddles towards his parents.,stares a knowing smile.,sits at the piano.,looks to his left.\n14670,lsmdc3034_IDES_OF_MARCH-3217,5128,\"We gradually press in on the campaign manager's handsome face, his eyes downcast. Someone\",\"We gradually press in on the campaign manager's handsome face, his eyes downcast.\",Someone,gold,reaches out and takes his gun.,looks directly at us.,makes this pulling one door at the less time trying to stay upright.,watches on the floor.\n14671,lsmdc3034_IDES_OF_MARCH-3217,5115,\"Later, he heads down an empty stairwell. Someone\",\"Later, he heads down an empty stairwell.\",Someone,gold,leads his way to a market edge.,waits in a corridor.,\"crosses the diner, trying to escapes.\",flow through the rising darkness.\n14672,lsmdc3034_IDES_OF_MARCH-3217,5122,Someone arrives at the makeshift set and takes a seat under a spotlight. A soundman,Someone arrives at the makeshift set and takes a seat under a spotlight.,A soundman,gold,view appears on the parade with colorful banners of smoke.,watches girls from on the sidelines.,is lying on a faded white bed.,outfits him with an earpiece while a makeup artist touches up his face.\n14673,lsmdc3034_IDES_OF_MARCH-3217,5119,\"An overhead light briefly reveals the young campaign manager's emotionless gaze. As he continues his stride, another overhead\",An overhead light briefly reveals the young campaign manager's emotionless gaze.,\"As he continues his stride, another overhead\",gold,offers a second glimpse of his plain look.,grabs large boxes into the fountain and darting around.,shows a graceful descending instructor let in his hands.,\"shows someone, his free arm where he works.\"\n14674,lsmdc3034_IDES_OF_MARCH-3217,5123,\"A soundman outfits him with an earpiece while a makeup artist touches up his face. As the soundman preps him for the interview, our view\",A soundman outfits him with an earpiece while a makeup artist touches up his face.,\"As the soundman preps him for the interview, our view\",gold,fixes on his face as a band sits.,shows someone working on the other knee.,gradually orbits around the side of someone's face.,tilts towards another unoccupied rise.\n14675,lsmdc3034_IDES_OF_MARCH-3217,5121,\"Beyond it, the lone campaign manager emerges as a blurry form from the corridor. Someone\",\"Beyond it, the lone campaign manager emerges as a blurry form from the corridor.\",Someone,gold,sees the red revolver behind the back of someone's handgun.,distributes the scroll from the radio.,read a magazine.,arrives at the makeshift set and takes a seat under a spotlight.\n14676,lsmdc3034_IDES_OF_MARCH-3217,5110,\"Now, the new campaign manager leads the way down a hall into a room marked Morris Event Staff Only.. Staff members\",\"Now, the new campaign manager leads the way down a hall into a room marked Morris Event Staff Only..\",Staff members,gold,sit at laptops facing three flat screens.,stare down at the competing crowd and drag him horizontally.,come out from the suite.,step out from behind the door.\n14677,lsmdc3034_IDES_OF_MARCH-3217,5117,\"He dons his i d.. They share a knowing gaze, then someone\",He dons his i d..,\"They share a knowing gaze, then someone\",gold,files past one of the security guards.,looks about.,meets his gaze with a frown.,\"notices someone, now the same troubled writer.\"\n14678,lsmdc3034_IDES_OF_MARCH-3217,5120,\"As he continues his stride, another overhead offers a second glimpse of his plain look. Beyond it, the lone campaign manager\",\"As he continues his stride, another overhead offers a second glimpse of his plain look.\",\"Beyond it, the lone campaign manager\",gold,shows the tourist lighting the smoke.,\"makes his way down the street, heading along the aisle.\",studies his mirror face and khakis.,emerges as a blurry form from the corridor.\n14679,lsmdc3034_IDES_OF_MARCH-3217,5113,\"The brunette intern faces someone. Outside, someone\",The brunette intern faces someone.,\"Outside, someone\",gold,spots a goateed man at the end of the piano.,shifts on sober eyes.,waits in the hotel.,marches across a walkway and heads up the front steps of the campus building.\n14680,lsmdc3034_IDES_OF_MARCH-3217,5124,\"As the soundman preps him for the interview, our view gradually orbits around the side of someone's face. Someone\",\"As the soundman preps him for the interview, our view gradually orbits around the side of someone's face.\",Someone,gold,\"comes out again, trailed by the man.\",turns from the reverie then sees an approaching photo showing two quotes saying sketches.,\"nods, gazing straight ahead with a deadpan expression.\",rockets toward the ferry.\n14681,anetv_WbZpWiPCHVU,10547,They then clean seats of a car. They,They then clean seats of a car.,They,gold,empty the water into the sink.,spray the wheels back on a bike again.,wash hands and trailer making citrus.,are sitting outside in bathing lights of the rain.\n14682,anetv_WbZpWiPCHVU,10548,They empty the water into the sink. They,They empty the water into the sink.,They,gold,wash the people dishes in their hands.,gaze from the gravestone to the choir.,\"get the camera scene, and see the screen with hot flashes.\",empty the bucket into another bucket.\n14683,anetv_KgEHEyz3oKw,4165,He is holding a large shovel. He,He is holding a large shovel.,He,gold,begins painting a wooden fence.,washes the trees with a brush.,holds it up in the air.,uses a electric vacuum to paint the hardwood floor.\n14684,anetv_KgEHEyz3oKw,4164,A man is standing in the snow. He,A man is standing in the snow.,He,gold,is running very quickly down a track.,is wearing a pair of skates.,is vacuuming a carpet in front of him.,is holding a large shovel.\n14685,anetv_KgEHEyz3oKw,2131,The man uses a home made snow shovel to clear away small road. The man,The man uses a home made snow shovel to clear away small road.,The man,gold,\"talks about unloads handfuls of colored metal, a car stirred with a product.\",and the scraper stands and puts the shovel on a pile.,uses the white tool to scrape snow painting a table.,picks up the shovel and points to the underside showing the construction details of it.\n14686,anetv_KgEHEyz3oKw,4166,He holds it up in the air. He then,He holds it up in the air.,He then,gold,bends down and trips over a white towel.,bends down and dips it into his shovel.,starts to shovel the snow.,\"begins playing the moves, applying paper tiles and extend his fingers.\"\n14687,anetv_KgEHEyz3oKw,2130,A man holds up a basic snow shovel and demonstrates how to use it throwing a scoop of snow. The man,A man holds up a basic snow shovel and demonstrates how to use it throwing a scoop of snow.,The man,gold,stands on the street near the sidewalk while the gym owner stands by.,pauses to pick a leaf and continues drilling.,\"drops onward like an ax, then a man comes and cleans the windscreen in a clear green cover.\",uses a home made snow shovel to clear away small road.\n14688,anetv_UNbC2c1C824,7340,She begins dancing around with batons while smiling to the audience. She,She begins dancing around with batons while smiling to the audience.,She,gold,walk away by the girl captures her movements.,poms over their feet as she dismounts with one foot.,is too happy to get the tattoo on her arm.,continues dancing and smiling to the camera and holds a pose in the end.\n14689,anetv_UNbC2c1C824,7339,A woman is seen holding a pose on a stage. She,A woman is seen holding a pose on a stage.,She,gold,lifts her legs off revealing her body.,applies instruments together while moving her hands up and down.,picks up another pattern and spins on the coffee table.,begins dancing around with batons while smiling to the audience.\n14690,anetv_UNbC2c1C824,7621,A woman is dancing with a baton. She,A woman is dancing with a baton.,She,gold,begins spinning the baton using a baton.,twirls a hula hoop around his neck.,does not go back to the kitchen wrestling as she plays.,twirls the baton around in the air.\n14691,anetv_pCUun9uE3h8,264,More people walk past the people marching. The group,More people walk past the people marching.,The group,gold,runs after the stairs.,continues playing their instruments in the hall.,continues running down the slide and bumping into one another.,continues marching and playing instruments.\n14692,anetv_pCUun9uE3h8,263,A marching band is seen walking down the street with people watching. More people,A marching band is seen walking down the street with people watching.,More people,gold,walk down the street followed by reporters.,walk past the people marching.,are holding the band outdoors.,are seen kneeling down near the stage with the group playing instruments behind the people on the side.\n14693,anetv_pCUun9uE3h8,930,More and more people continue marching down the road while several people walk in and out of frame. People drumming,More and more people continue marching down the road while several people walk in and out of frame.,People drumming,gold,rhythmically at instruments between the two.,continue doing perfect movements and the streets of the river are shown.,are shown in the end as a camera closes in around the people.,tourists line the leaves.\n14694,anetv_pCUun9uE3h8,929,A large group of people are seen walking down the street holding flags while many watch on the side. More and more people,A large group of people are seen walking down the street holding flags while many watch on the side.,More and more people,gold,run in and out of frame and see being again diving from the water.,are seen gliding around the field while dancing and speaking to one another.,continue marching down the road while several people walk in and out of frame.,are seen performing push ups on the rope while many watch on the sides.\n14695,anetv_sTev5fWX3T8,11509,\"A teen is balancing on the higher uneven bar. Then, the teen flips and a man\",A teen is balancing on the higher uneven bar.,\"Then, the teen flips and a man\",gold,flips while first swing.,\"disc on the air, or does gymnastics before flipping as the second gymnast dive and does gymnastics.\",gives the little boy a high jump.,helps her to pass to the lower uneven bar.\n14696,anetv_-fBxVUu0KcQ,14818,People are playing a sport on sand. A man in a green uniform,People are playing a sport on sand.,A man in a green uniform,gold,walks up to his horse.,gives a high five to someone on the sidelines.,shakes some ice cubes in front of him.,is looking off into the distance.\n14697,anetv_y3r4IrZkgBo,3984,A woman is seen sitting on a tub with a towel wrapped around her and shaving her legs. She then,A woman is seen sitting on a tub with a towel wrapped around her and shaving her legs.,She then,gold,brushes around with the razor and begins shaving the side of the person's hair.,shows the girl hopping across the injury to make 1000 movements.,puts clothes on the dryer and scrubs it off with a towel.,laughs to the camera and runs out with a young boy pushing her to the floor.\n14698,anetv_gBOWkZBlc8g,3693,A large group of people are seen swimming around an ocean while two men pass a soccer ball back and fourth to one another on the shore. More people,A large group of people are seen swimming around an ocean while two men pass a soccer ball back and fourth to one another on the shore.,More people,gold,are shown playing as well as passing the ball and speaking to one another as well as keeping up with the same people.,walk in and out of frame as the men continue to kick the ball back and fourth to one another.,are seen interviewing a news segment that leads into a teammate throwing a ball down a lane.,begin riding around one another while the camera captures him from several angles.\n14699,anetv_JeSxkw4ed-I,18804,A person is seen sitting in a tub while another sprays a dog. The people,A person is seen sitting in a tub while another sprays a dog.,The people,gold,scrub down the dog while spraying it with a shower head.,continue putting the bag on.,are sleeping while laughing.,are then seen sitting in a car as well as a chasing baby laying on the grass.\n14700,anetv_JeSxkw4ed-I,12715,He then begins washing a dog and spraying water all over the dog. One woman then,He then begins washing a dog and spraying water all over the dog.,One woman then,gold,takes a shower and sprays the dog with soap.,sprays soap down over their heads and walks in the room.,scrubs the dog around with the water.,leads the person up in a bucket near a toddler.\n14701,anetv_JeSxkw4ed-I,18805,The people scrub down the dog while spraying it with a shower head. They,The people scrub down the dog while spraying it with a shower head.,They,gold,are shown the middle of the room with the finished shoes.,walk back from the interior of the car.,continue to rub down the dog.,continue measuring and washing them all together.\n14702,anetv_JeSxkw4ed-I,12714,A dog is seen sitting in a tub with two women are kneeling above him. He then,A dog is seen sitting in a tub with two women are kneeling above him.,He then,gold,rubs the lotion over his legs while still poking his legs in the sink.,bends down to blow his hair while still looking in the mirror.,begins washing a dog and spraying water all over the dog.,picks up the towel and continues rubbing himself up with the hose.\n14703,anetv_QJKFphS_3UQ,281,A woman is seen speaking to the camera holding an instrument and leads into her playing the flute. The camera,A woman is seen speaking to the camera holding an instrument and leads into her playing the flute.,The camera,gold,then begins to go back and fourth to the floor and ends by still feeding her around.,continues to zoom in on her playing the instrument while she intervenes by speaking to the camera.,sticks to her hands and shows a woman while holding flute and speaking to her while holding the instrument while speaking to the camera.,continues to swing the violin and how to bow and end by smiling to the camera.\n14704,anetv_mQ9e5RyHE_k,9891,A man is seen speaking to the camera as well as several shots of a bowling alley and him bowling a ball. He,A man is seen speaking to the camera as well as several shots of a bowling alley and him bowling a ball.,He,gold,continues and ends by talking once more.,continues speaking to the camera while showing several videos of him throwing the bowling ball and hitting several pins.,laughs with the man after partying the mouthwash all around the sides.,throws the ball back down further and then walks off in the distance.\n14705,lsmdc1010_TITANIC-77629,1836,\"Meanwhile, someone descends the e deck stairs and stops above the water, which has risen above several steps. She\",\"Meanwhile, someone descends the e deck stairs and stops above the water, which has risen above several steps.\",She,gold,signals so that someone can follow out of their way.,\"steps down into the water, grabs and overhead frame, and ducks her head out into the hallway.\",draws the stone on the horizon and points to the table.,gestures to the chanting crowd.\n14706,lsmdc1010_TITANIC-77629,1844,\"Someone walks to the wooden cabinet, swings the axe and strikes the cabinet door. Someone\",\"Someone walks to the wooden cabinet, swings the axe and strikes the cabinet door.\",Someone,gold,lets out a sigh and looks for it.,drops someone inside the flaming room.,\"swings the ax and hits the cabinet door, missing the first mark by several inches.\",emerges from under some water.\n14707,lsmdc1010_TITANIC-77629,1851,Someone points to the flooded stairway. Someone,Someone points to the flooded stairway.,Someone,gold,begins to sway to the edge of a jaguar chair.,walks into a second pawn shop.,watch a submarine pass to the edge of the runway and return someone head to the enchanted ceiling.,pulls her toward the opposite end of the corridor.\n14708,lsmdc1010_TITANIC-77629,1807,\"In another corridor, someone stops a steward and turns to a brunette woman, a blond maid. Someone\",\"In another corridor, someone stops a steward and turns to a brunette woman, a blond maid.\",Someone,gold,puts this coffee with her friends.,hears a door straining a blow open door with a deadbolt.,\"talks onto a box, then finds new mutilated partner working together.\",checks a passenger cabin.\n14709,lsmdc1010_TITANIC-77629,1804,\"In the master - at - arms' office, someone peers at the water covering the porthole window. He\",\"In the master - at - arms' office, someone peers at the water covering the porthole window.\",He,gold,\"sits at the back of the table, squatting down a boulder.\",disappears from the water.,bangs his handcuffs against the water pipe.,\"takes it from someone's hand, knocking him to the floor.\"\n14710,lsmdc1010_TITANIC-77629,1819,\"She walks down a short corridor and turns down a long hallway. In the office, someone, still handcuffed to the pipe,\",She walks down a short corridor and turns down a long hallway.,\"In the office, someone, still handcuffed to the pipe,\",gold,climbs onto a desk as the water rises.,\"turns to leave, then beckons the boy.\",takes a newspaper and turns to someone.,makes his way into a corridor.\n14711,lsmdc1010_TITANIC-77629,1857,Someone pulls a sobbing gray - haired woman away from her husband. Someone,Someone pulls a sobbing gray - haired woman away from her husband.,Someone,gold,scrambles up to meet the girl.,wraps an arm around someone's neck.,puts her in the boat.,wraps her arms around the boy.\n14712,lsmdc1010_TITANIC-77629,1800,Someone stands in the lifeboat. Someone,Someone stands in the lifeboat.,Someone,gold,knits her brow at him.,vacantly from dazed school to peer out.,waves fondly over the express house.,helps someone into the boat.\n14713,lsmdc1010_TITANIC-77629,1817,\"Someone watches the elevator ascend, then glances around as she wades through the water. She\",\"Someone watches the elevator ascend, then glances around as she wades through the water.\",She,gold,takes a step figure.,glances up at a sign over a doorway.,\"looks thoughtfully at the temperature, waiting.\",\"on her forehead, she maintains her balance and notices with her eyes averted, as she looks around.\"\n14714,lsmdc1010_TITANIC-77629,1831,She punches him in the face. He,She punches him in the face.,He,gold,tosses the pebble a contract.,stumbles back and touches his bloody nose.,reaches her with a long arm around his shoulder before he reaches out.,\"grabs his ankle, tries to release him, but the ring drops to his armpits.\"\n14715,lsmdc1010_TITANIC-77629,1835,\"On the bridge, someone leans over the railing and gazes down at the flooding bow and front well deck. Meanwhile, someone\",\"On the bridge, someone leans over the railing and gazes down at the flooding bow and front well deck.\",\"Meanwhile, someone\",gold,open her laptop.,\"joins the rest of the platoon, interacting in the mud with the figure of the towering statues.\",raises with his attached shoulder.,\"descends the e deck stairs and stops above the water, which has risen above several steps.\"\n14716,lsmdc1010_TITANIC-77629,1814,\"The elevator descends into rising water, which pours into the elevator. Someone\",\"The elevator descends into rising water, which pours into the elevator.\",Someone,gold,opens the elevator doors and steps into a flood corridor.,stops in front of an alley entrance door.,indicates one of the policemen.,\"lowers her eyes, but does not look down.\"\n14717,lsmdc1010_TITANIC-77629,1847,Someone stretches the chain across the pipe and closes his eyes. Someone,Someone stretches the chain across the pipe and closes his eyes.,Someone,gold,peers into a ledge and notices his younger teacher.,and frog - like throats expand.,play a guitar for the camera.,\"closes her eyes, swings, and cuts the handcuff chain in half.\"\n14718,lsmdc1010_TITANIC-77629,1815,Someone opens the elevator doors and steps into a flood corridor. The operator,Someone opens the elevator doors and steps into a flood corridor.,The operator,gold,pulls the lever up.,pushes the frame away.,steps into the mirrored chamber.,notices a blurry image of a different set of tents.\n14719,lsmdc1010_TITANIC-77629,1841,\"With her free hand, she grasps a long pipe running along the ceiling, propelling herself down the hallway. She\",\"With her free hand, she grasps a long pipe running along the ceiling, propelling herself down the hallway.\",She,gold,\"sits on the edge of the floor, watching her intently, her fingers hovering over her ears.\",\"taps her head, then lowers her gun.\",skips into an elevator and a panel rises.,holds the axe over her head and walks through the chest - deep water into the office.\n14720,lsmdc1010_TITANIC-77629,1827,She kisses someone and makes her way out of the office. Someone,She kisses someone and makes her way out of the office.,Someone,gold,comes up behind her and picks up the receiver.,\"she puts his things to the back of a car, closing the door behind her.\",\"moves down the long, dim corridor in waist - deep water.\",was stood before sliding down and recording her walk.\n14721,lsmdc1010_TITANIC-77629,1826,Someone pushes the desk chair out of her way as she walks to someone. She,Someone pushes the desk chair out of her way as she walks to someone.,She,gold,hesitates and narrows her eyes at her.,presses the ear buds lens with her thumb.,\"shows a warning that someone is drinking the tea at a restaurant, the janitor is asleep now drinking and reading.\",kisses someone and makes her way out of the office.\n14722,lsmdc1010_TITANIC-77629,1853,\"Outside, passengers paddle two lifeboats away from the Titanic. In one lifeboat, people\",\"Outside, passengers paddle two lifeboats away from the Titanic.\",\"In one lifeboat, people\",gold,see someone and little children in a dvd section.,swim around the people.,bring to the water barrier.,\"stare at the ship, now tilted forward with its bow nearly submerged.\"\n14723,lsmdc1010_TITANIC-77629,1816,The operator pulls the lever up. Someone,The operator pulls the lever up.,Someone,gold,\"watches the elevator ascend, then glances around as she wades through the water.\",'s eyes widen and he looks up sharply.,slams the door shut.,leads people under the door.\n14724,lsmdc1010_TITANIC-77629,1822,The hall lights flicker on and off. Someone,The hall lights flicker on and off.,Someone,gold,\"stands at the box, showing the dollar all someone and the card.\",is seen moving up a ladder in a chair.,turns toward the closed office door.,aims his gun at her.\n14725,lsmdc1010_TITANIC-77629,1829,Someone gazes down the empty corridor. She,Someone gazes down the empty corridor.,She,gold,sulks up at the kitchen door.,\"makes her way upstairs, out into the swimming pool.\",takes a few steps and stops as the lights go out.,hands the jacket and tightly.\n14726,lsmdc1010_TITANIC-77629,1849,Someone lifts his hands and smiles. They,Someone lifts his hands and smiles.,They,gold,are gaping at each other.,move into the corridor.,see the tiny bird on his right shoulder.,run away from someone.\n14727,lsmdc1010_TITANIC-77629,1818,She glances up at a sign over a doorway. She,She glances up at a sign over a doorway.,She,gold,\"puts back pictures and walks into the tent, measuring his surroundings.\",walks down a short corridor and turns down a long hallway.,produces a vial of liquid luck.,turns standing by someone.\n14728,lsmdc1010_TITANIC-77629,1803,\"The crewmen lower the lifeboat. In the master - at - arms' office, someone\",The crewmen lower the lifeboat.,\"In the master - at - arms' office, someone\",gold,nods restlessly and she grins.,watches a mesmerized someone and snoop woman walk into a glossy waterfall.,sets the tiller upright.,peers at the water covering the porthole window.\n14729,lsmdc1010_TITANIC-77629,1809,\"Someone climbs up the water pipe near the ceiling and bangs the handcuffs against the pipe. Elsewhere, someone\",Someone climbs up the water pipe near the ceiling and bangs the handcuffs against the pipe.,\"Elsewhere, someone\",gold,removes his spectacles as he stares at her dead feet.,helps someone walk out.,bumps into a steward as she runs to an elevator.,leaves a cup beside another seat.\n14730,lsmdc1010_TITANIC-77629,1805,He bangs his handcuffs against the water pipe. Water,He bangs his handcuffs against the water pipe.,Water,gold,come on as others stretch and the stands in the end.,floods a staircase and streams down a long corridor leading to the office.,quickly tugs at his headgear.,gurgles out of his mouth then withdraws his hand to reveal down at a piece of supported chart.\n14731,lsmdc1010_TITANIC-77629,1833,\"She steps forward, unwraps a fire hose, and uses it to break the glass on a case containing an axe. She\",\"She steps forward, unwraps a fire hose, and uses it to break the glass on a case containing an axe.\",She,gold,goes down her leg to sit at the pool with the girl she was talking with.,\"peers off, then faces the handsome daylight.\",grabs the radio coat in her briefcase.,grabs the axe and runs toward the e deck stairs.\n14732,lsmdc1010_TITANIC-77629,1856,\"On the boat deck, passengers crowd around the remaining lifeboats. Someone\",\"On the boat deck, passengers crowd around the remaining lifeboats.\",Someone,gold,backs out of the car as he unleashes a barrage of bullets.,lifts one knee and lifts the weight over her shoulders.,'s cousin arrives with her moss nailed.,pulls a sobbing gray - haired woman away from her husband.\n14733,lsmdc1010_TITANIC-77629,1823,Someone hurries to the office door. Someone,Someone hurries to the office door.,Someone,gold,hurries up to the elevators.,steps into the office.,knocks someone away from the desk.,stops in front of her as the manager affectionately pats their back.\n14734,lsmdc1010_TITANIC-77629,1837,\"She steps down into the water, grabs and overhead frame, and ducks her head out into the hallway. She\",\"She steps down into the water, grabs and overhead frame, and ducks her head out into the hallway.\",She,gold,\"glances both ways down the flooded hallway, then steps back and hangs the axe on the frame.\",slips through the ropes some more furious jumps.,share a grin.,stares nervously into the radio.\n14735,lsmdc1010_TITANIC-77629,1820,\"In the office, someone, still handcuffed to the pipe, climbs onto a desk as the water rises. Someone\",\"In the office, someone, still handcuffed to the pipe, climbs onto a desk as the water rises.\",Someone,gold,approaches one of the synchronized motion he attempts to break his leg arm.,\"glugs down his drink, then crosses to the fridge and puts two bottles in someone's tray.\",snatch it to him.,\"pauses at a staircase, then turns left and walks down another floated corridor, littered with floating furniture.\"\n14736,lsmdc1010_TITANIC-77629,1848,\"Someone closes her eyes, swings, and cuts the handcuff chain in half. Someone\",\"Someone closes her eyes, swings, and cuts the handcuff chain in half.\",Someone,gold,tiptoes through the partially lit house and enters the bedroom door.,\"takes a few steps back, moving closer to someone, who smiles outside.\",lifts his hands and smiles.,looks at the bear.\n14737,lsmdc1010_TITANIC-77629,1855,\"A flare shoots up from the bridge deck and explodes. On the boat deck, passengers\",A flare shoots up from the bridge deck and explodes.,\"On the boat deck, passengers\",gold,askew dunks in their protective suits.,changed out of their fellow hydra lab.,hold onto the ship's deck as a huge guide passes between them.,crowd around the remaining lifeboats.\n14738,lsmdc1010_TITANIC-77629,1828,\"Someone moves down the long, dim corridor in waist - deep water. She\",\"Someone moves down the long, dim corridor in waist - deep water.\",She,gold,climbs upstairs to the d deck and runs down hallways.,\"at a table, someone lowers the slats.\",\"leans on the edge of the water and leans on the kid, and splashes the dish with his hands.\",\"takes him into the air, then she turns to the front door, and he starts to run down the hallway.\"\n14739,lsmdc1010_TITANIC-77629,1811,Someone shoves the operator into the elevator. The operator,Someone shoves the operator into the elevator.,The operator,gold,takes the phone and smashes into the ear.,pulls a seven and pops out.,watches the approaching operator.,pushes a lever down as someone closes the door.\n14740,lsmdc1010_TITANIC-77629,1821,\"Someone pauses at a staircase, then turns left and walks down another floated corridor, littered with floating furniture. The hall\",\"Someone pauses at a staircase, then turns left and walks down another floated corridor, littered with floating furniture.\",The hall,gold,\"furnished in black, distant, gloomy.\",\"places a small envelope, in a bent bag - a wallet, then the steps of it on the piano.\",is darkness as a kid appears.,lights flicker on and off.\n14741,lsmdc1010_TITANIC-77629,1842,She holds the axe over her head and walks through the chest - deep water into the office. She,She holds the axe over her head and walks through the chest - deep water into the office.,She,gold,holds out the axe.,moves away from the faucet then rips off his shirt.,is on the phone.,is talking as someone sits in an ice - orange outfit with shades on her chest.\n14742,lsmdc1010_TITANIC-77629,1840,\"She grabs the axe with one hand and wades into the water. With her free hand, she\",She grabs the axe with one hand and wades into the water.,\"With her free hand, she\",gold,\"grasps a long pipe running along the ceiling, propelling herself down the hallway.\",\"bares her teeth, urging her on.\",shuffles even through it with some spears as she watches it.,\"gets away from her mother, which kneels down and lets go of a fire.\"\n14743,lsmdc1010_TITANIC-77629,1852,\"Someone pulls her toward the opposite end of the corridor. Outside, passengers\",Someone pulls her toward the opposite end of the corridor.,\"Outside, passengers\",gold,walk out of the lift and push someone into the backroom.,paddle two lifeboats away from the titanic.,clap their hands then run onward.,watch as someone watches the plane burn.\n14744,lsmdc1010_TITANIC-77629,1830,She takes a few steps and stops as the lights go out. Her chest,She takes a few steps and stops as the lights go out.,Her chest,gold,turns to a funny angle and reaches into the open bag on her kitchen table.,\"heaves as she watches someone leave, hiding in a collection of figures.\",heaves as she leans back against the wall.,heaves as she stares at the floor with her head resting on her knees.\n14745,lsmdc1010_TITANIC-77629,1858,Someone puts her in the boat. Someone,Someone puts her in the boat.,Someone,gold,exits the ship and hauls it down with her own weapon.,turns toward someone as he approaches.,sits on the water.,reaches for the pitcher.\n14746,lsmdc1010_TITANIC-77629,1850,They move into the corridor. Someone,They move into the corridor.,Someone,gold,turns into a huge pool of light.,\"checks out the door, broken by dark, deserted.\",points to the flooded stairway.,\"glances across the quad, her carrier hanging up another bed.\"\n14747,lsmdc1010_TITANIC-77629,1802,\"Someone follows and grabs her. As she steps away, someone\",Someone follows and grabs her.,\"As she steps away, someone\",gold,'s gaze drops on someone's as he lifts his braid out of massage off her shoulders.,struggles to climb the rim of her surfboard.,grabs someone and spins her toward him.,\"comes out of the vault, and peers over a bar.\"\n14748,lsmdc1010_TITANIC-77629,1797,\"Someone picks up the handcuff key from the table, places it in his breast pocket, and leaves. Someone\",\"Someone picks up the handcuff key from the table, places it in his breast pocket, and leaves.\",Someone,gold,helps a brunette woman.,shuts the door and shuts the door behind him.,smiles to himself as he stands on his radio.,looks at it then frowns.\n14749,lsmdc1010_TITANIC-77629,1843,She holds out the axe. Someone,She holds out the axe.,Someone,gold,sprays knife a second time.,steps through the room.,does cars in on a plate.,stretches the chain connecting the handcuffs out on the water pipe.\n14750,lsmdc1010_TITANIC-77629,1824,Someone searches through a cabinet filled with keys. Someone,Someone searches through a cabinet filled with keys.,Someone,gold,watches carefully in the bed mirror.,picks up a bottle of liquor.,pulls out a desk drawer.,puts on his equipment.\n14751,lsmdc1010_TITANIC-77629,1810,\"As she reaches the elevator, an elevator operator with dark blond hair stops her. Someone\",\"As she reaches the elevator, an elevator operator with dark blond hair stops her.\",Someone,gold,\"stops short, someone tears in her eyes.\",approaches and drops the gun on his belt.,halts and looks at someone's shoulder.,shoves the operator into the elevator.\n14752,lsmdc1010_TITANIC-77629,1825,Someone searches in the drawer. Someone,Someone searches in the drawer.,Someone,gold,\"floats among the newspaper, scattering eggs.\",pushes the desk chair out of her way as she walks to someone.,\"reads something, but empty.\",\"takes the box of held up to model box, then leans back against again destroying it.\"\n14753,lsmdc1010_TITANIC-77629,1834,\"She grabs the axe and runs toward the e deck stairs. On the bridge, someone\",She grabs the axe and runs toward the e deck stairs.,\"On the bridge, someone\",gold,\"and someone enter, then resumes flaring.\",\"climbs out, still astride someone.\",leans over the railing and gazes down at the flooding bow and front well deck.,leaves bicycles in pursuit.\n14754,lsmdc1010_TITANIC-77629,1799,Someone scans the passengers on the lifeboat. Someone,Someone scans the passengers on the lifeboat.,Someone,gold,bursts in as his cronies celebrate.,turns to someone and smiles.,holds up her rifle and wave to someone.,looks up at someone in office.\n14755,lsmdc1010_TITANIC-77629,1854,\"In one lifeboat, people stare at the ship, now tilted forward with its bow nearly submerged. A flare\",\"In one lifeboat, people stare at the ship, now tilted forward with its bow nearly submerged.\",A flare,gold,carries brightly to mountain view of the waves.,pours off the glassy surface and fails down to the water around his face and nose.,shoots up from the bridge deck and explodes.,comes along with the eiffel tower.\n14756,lsmdc1010_TITANIC-77629,1832,\"Someone leans back against the wall, blinks, then stares ahead. She\",\"Someone leans back against the wall, blinks, then stares ahead.\",She,gold,hides through a pile of bricks and glowing logs into the stone tower.,begins to draw his head.,\"steps forward, unwraps a fire hose, and uses it to break the glass on a case containing an axe.\",pulls someone close and kisses her.\n14757,lsmdc1010_TITANIC-77629,1845,Someone grips the axe handle with both hands. She,Someone grips the axe handle with both hands.,She,gold,lifts his tipping face toward its insect.,moves her hands apart.,yanks out a small control structure.,takes a deep breath as their mother grins at someone.\n14758,anetv_rhDxMg72ofo,2410,She then begins talking to the camera while stroking her hair followed by blow drying and brushing her hair. She then,She then begins talking to the camera while stroking her hair followed by blow drying and brushing her hair.,She then,gold,dries her face and smiles to the camera and also clips her nails and shows off the finished look.,shows how to use a brush and hairspray to style nose hair with the brush.,puts lotion into her hair and breaking her hair into sections.,puts several more parts and begins crashing up her hair while combing the side.\n14759,anetv_rhDxMg72ofo,2409,\"An intro begins then shows pictures of a girl standing in the bathroom with long, straight hair. She then\",\"An intro begins then shows pictures of a girl standing in the bathroom with long, straight hair.\",She then,gold,applies a piece to her nose as well as peel the lenses.,takes a razor and begins to blow and burying the dog's head and hair.,begins talking to the camera while stroking her hair followed by blow drying and brushing her hair.,\"lifts a razor and then rubs her chin, followed by applying off the razor and the palette.\"\n14760,anetv_rhDxMg72ofo,2411,She then puts lotion into her hair and breaking her hair into sections. She,She then puts lotion into her hair and breaking her hair into sections.,She,gold,starts again and is thoroughly covered and totters her hair dryers.,bangs it on the ground as she continues speaking to the camera and holding her legs straight.,changes clothes and showing off the product between them.,straightens each section of hair and smiles in the end.\n14761,anetv_eElKkhIJXCs,16676,A group of kids are playing on a field. The coaches,A group of kids are playing on a field.,The coaches,gold,are playing cards on a table.,talk to them as they run.,\"are standing around, performing tricks in the middle of the field.\",are going down the hallway together.\n14762,lsmdc1018_Body_Of_Lies-79926,19375,Plumes of smoke rise into the air. Letters,Plumes of smoke rise into the air.,Letters,gold,sweep around the ship.,\"fly on the night sky, following people on all fours.\",emerge from brief flashes of grainy surveillance footage.,swarm around a destroyed vessel.\n14763,lsmdc1018_Body_Of_Lies-79926,19366,More officers huddle on a street corner as the milk float drives around. Officers,More officers huddle on a street corner as the milk float drives around.,Officers,gold,\"her seat, she knocks.\",spill from the open container.,make their way upstairs at the back of a boarded up house.,\"taxi pulls out of the docks and onto a merchandise rack, then drives off and someone sets her safety belt over the bicycle.\"\n14764,lsmdc1018_Body_Of_Lies-79926,19372,Bomb making equipment is spread out on a table. One of the men,Bomb making equipment is spread out on a table.,One of the men,gold,presses a key on a mobile phone.,addresses the babysitter and puts their makeup on.,is cleaning the ceiling with a scraper.,is removed from the tree.\n14765,lsmdc1018_Body_Of_Lies-79926,19367,Officers make their way upstairs at the back of a boarded up house. Officers,Officers make their way upstairs at the back of a boarded up house.,Officers,gold,train their automatic weapons on the front of the terraced house.,join a sit on the dirt field.,\"pounds on the wall, then dorm.\",enter the nazi mechanism.\n14766,lsmdc1018_Body_Of_Lies-79926,19369,The marksman on the roof takes aim. The milkman,The marksman on the roof takes aim.,The milkman,gold,catches the web and steps again toward the chopper.,goes through the rain.,walks up to the front door and puts two pints of milk on the doorstep.,swings from the warehouse gun.\n14767,lsmdc1018_Body_Of_Lies-79926,19373,One of the men presses a key on a mobile phone. Police and civilians,One of the men presses a key on a mobile phone.,Police and civilians,gold,\", escorts a partner in his car.\",mill around on the youths.,parade on a street in front of a large facade at st.,dive for cover as debris rains down.\n14768,lsmdc1018_Body_Of_Lies-79926,19371,The three men are alerted. Bomb making equipment,The three men are alerted.,Bomb making equipment,gold,\"are scattered on the ground, ripped down the poles, and down into the ditch.\",is spread out on a table.,are shown on deck hoists and calves up.,are being made by piles.\n14769,lsmdc1018_Body_Of_Lies-79926,19365,The milk float drives off. More officers,The milk float drives off.,More officers,gold,rush into the diner and chase them with their weapons.,huddle on a street corner as the milk float drives around.,join someone on the plane.,continue up a hill and take refuge on a car near the diner.\n14770,lsmdc1018_Body_Of_Lies-79926,19374,\"Thick, gray smoke fills the air. Plumes of smoke\",\"Thick, gray smoke fills the air.\",Plumes of smoke,gold,rise into the air.,rolling to form dust.,fly into the sky.,hang from the ceiling.\n14771,lsmdc1018_Body_Of_Lies-79926,19368,Officers train their automatic weapons on the front of the terraced house. The Sikh milkman,Officers train their automatic weapons on the front of the terraced house.,The Sikh milkman,gold,stops and picks up some pints of milk.,\"stares straight out at the table, then crosses to someone and advances to perform.\",leads them down from the house.,spots a great distance of the captain and a group of soldiers rush in and exit the courtroom below.\n14772,lsmdc1011_The_Help-78669,6392,\"Someone, in a smart, cream dress and navy hat, is packing her suitcase. She\",\"Someone, in a smart, cream dress and navy hat, is packing her suitcase.\",She,gold,displays a classroom: goes a secret service exam.,enters the living room.,tosses a cross to the door of her bedroom.,passes without her blonde dress.\n14773,lsmdc0009_Forrest_Gump-50222,3806,The football coach runs along the sidelines as he yells. Someone,The football coach runs along the sidelines as he yells.,Someone,gold,goes to the foreground in someone's hands.,\"gives a confused look, then slaps him on the back.\",cuts and runs toward the sidelines.,picks up his phone.\n14774,lsmdc0009_Forrest_Gump-50222,3839,\"Someone, holding a box of chocolates, looks at the car. The two people inside the car\",\"Someone, holding a box of chocolates, looks at the car.\",The two people inside the car,gold,start digging out laughter.,are pushing the cars to their feet.,\"are outside the main store, waiting.\",begins to kiss and embrace each other.\n14775,lsmdc0009_Forrest_Gump-50222,3796,Someone runs along the road in front of the high school. The truck,Someone runs along the road in front of the high school.,The truck,gold,continues to chase him as the boys pound on the roof.,stops in the car as someone comes down the street.,enters the station entrance.,drops from the helicopter perch toward the houses of structures demolished houses.\n14776,lsmdc0009_Forrest_Gump-50222,3838,\"A song is heard from the radio. Someone, holding a box of chocolates,\",A song is heard from the radio.,\"Someone, holding a box of chocolates,\",gold,is on his phone.,comes back someone handed an envelope.,looks at the car.,notices someone standing at her stove someone.\n14777,lsmdc0009_Forrest_Gump-50222,3828,The television reveals someone as he stands at the schoolhouse door. He,The television reveals someone as he stands at the schoolhouse door.,He,gold,\"looks around, then waves.\",approaches with a sugar figurine.,emerge through the doorway to the landing hut and reach the closed office door.,appears in front of the dictaphone.\n14778,lsmdc0009_Forrest_Gump-50222,3835,The black woman looks down at her watch. The Black Woman,The black woman looks down at her watch.,The Black Woman,gold,returns to the present.,gets up and steps over to the bus.,\"lowers her eyes over her features for some soft, gentle kiss.\",wanders over to a walk on the left's legs.\n14779,lsmdc0009_Forrest_Gump-50222,3840,The two people inside the car begins to kiss and embrace each other. Someone,The two people inside the car begins to kiss and embrace each other.,Someone,gold,comes down the stairs.,is inside the car with a boy.,goes back and forth to the car car door.,turns back to the kids as they drive.\n14780,lsmdc0009_Forrest_Gump-50222,3809,The opposing players try to catch him. Someone,The opposing players try to catch him.,Someone,gold,takes the first after it hitting it with three balls.,shoots his opponents at the net and shoots him off too.,descends the stairs from the control tank.,runs into the end zone as an opposing player dives at his feet.\n14781,lsmdc0009_Forrest_Gump-50222,3830,The football coach and two assistant coaches look. Someone,The football coach and two assistant coaches look.,Someone,gold,dries himself off with a towel as he steps from the showers.,grabs the phone then boards into his cell.,hops through a picture.,writhes in his embracing star.\n14782,lsmdc0009_Forrest_Gump-50222,3801,He looks up into the cheering crowd as his teammate fields the kickoff. The teammate,He looks up into the cheering crowd as his teammate fields the kickoff.,The teammate,gold,kicks him in the gut.,runs over to someone and hands him the ball.,falls off and grabs a towel.,aims at the group just and the cow charges at him.\n14783,lsmdc0009_Forrest_Gump-50222,3826,He brings it up to the girl. A coach,He brings it up to the girl.,A coach,gold,looks at the television.,leaps onto his shoulder.,holds someone's trophy.,\"rides forward, on a bench in the playground.\"\n14784,lsmdc0009_Forrest_Gump-50222,3833,A white woman with a bay sits left. A bus,A white woman with a bay sits left.,A bus,gold,pulls up to the bus stop.,leads the person down on a freeway.,drives along the nice front several other cars.,plows across the mountain motion.\n14785,lsmdc0009_Forrest_Gump-50222,3812,\"Someone continues to run, smashing through the band members, then all the way toward the team tunnel. The football coach\",\"Someone continues to run, smashing through the band members, then all the way toward the team tunnel.\",The football coach,gold,heads up to us.,brings two fists back and nudges him.,looks at an assistant coach.,comes to find them for someone.\n14786,lsmdc0009_Forrest_Gump-50222,3829,\"He looks around, then waves. An assistant coach\",\"He looks around, then waves.\",An assistant coach,gold,is at the kitchen and looking confused.,reaches up and lifts the open walkway toward him.,\"looks at the television, then at the other coaches.\",pulls off someone's backpack.\n14787,lsmdc0009_Forrest_Gump-50222,3831,Some men wrestle the shooter. Someone,Some men wrestle the shooter.,Someone,gold,listens to the story.,lies wounded on the ground.,lowers his wand to a locked window.,drags someone down to the ground.\n14788,lsmdc0009_Forrest_Gump-50222,3823,The young black girl drops one of her books. Someone,The young black girl drops one of her books.,Someone,gold,notices and steps past the policeman toward the book on the ground.,spots a shadow under the boy's foot.,sits down and takes her hands.,jig through their binocular as they enter the observation.\n14789,lsmdc0009_Forrest_Gump-50222,3800,The football players run around on the field. Someone,The football players run around on the field.,Someone,gold,is in a university of alabama football uniform.,pushes the chair towards a boy face.,is running down a track and jumping on a brown bowling field game.,joins a friend in the back.\n14790,lsmdc0009_Forrest_Gump-50222,3811,\"The referee holds up his arm, signaling a touch down. Someone\",\"The referee holds up his arm, signaling a touch down.\",Someone,gold,breaks the air and spits on the ground.,\"continues to run, smashing through the band members, then all the way toward the team tunnel.\",\"takes someone's arm and leads her across the dance floor, in their room, a short plus - haired way too.\",reaches for a gun and drops it around himself.\n14791,lsmdc0009_Forrest_Gump-50222,3795,Someone looks left as he continues telling his life story. Someone,Someone looks left as he continues telling his life story.,Someone,gold,stops walking with her eyes lowered.,\"looks up at the tiger, who's not between a tree trunk.\",runs along the road in front of the high school.,is taking uncle someone's place.\n14792,lsmdc0009_Forrest_Gump-50222,3822,Two black students were being led toward the schoolhouse. The young black girl,Two black students were being led toward the schoolhouse.,The young black girl,gold,\"sighs and stares expressionless, then glances down.\",move a few seats.,stares with some hostile hatred.,drops one of her books.\n14793,lsmdc0009_Forrest_Gump-50222,3802,\"The football coach, the assistants, and Alabama players cheer for someone. Someone\",\"The football coach, the assistants, and Alabama players cheer for someone.\",Someone,gold,covers his face off with a magazine.,runs across the field.,runs across the street to someone and someone.,mimes a little laugh.\n14794,lsmdc0009_Forrest_Gump-50222,3794,Someone leaps over a five - foot fence as the boys try to catch him. Someone,Someone leaps over a five - foot fence as the boys try to catch him.,Someone,gold,'s he lowers himself on the platform and is getting off and slamming the door.,struggle to hang up to the wood as the snitch hangs up the gate.,\", dozens of his troops throw a line at one of the men behind him.\",looks left as he continues telling his life story.\n14795,lsmdc0009_Forrest_Gump-50222,3805,Someone runs past the opposite players. The football coach,Someone runs past the opposite players.,The football coach,gold,draws him across to his friends.,runs along the sidelines as he yells.,dives still then back to the entrance.,leads his passengers with the puck.\n14796,lsmdc0009_Forrest_Gump-50222,3841,Someone is inside the car with a boy. She,Someone is inside the car with a boy.,She,gold,puts the cash into the suitcase and gathers his cash.,leans back against the passenger side door as they struggle to get comfortable.,sits up and gestures him the hospital.,\"jumps out of the bus, turns hastily, and looks away from the upstairs glass.\"\n14797,lsmdc0009_Forrest_Gump-50222,3818,The footage cuts to someone as he speaks to someone. Someone,The footage cuts to someone as he speaks to someone.,Someone,gold,takes out a sling and a small wound in his chest.,stands next to someone and listens.,signs on pretty dates square steps from the car.,stares desperate as he walks past the corpse and lashed to the grated barrier.\n14798,lsmdc0009_Forrest_Gump-50222,3815,Someone walks through a crowd of people. Someone,Someone walks through a crowd of people.,Someone,gold,\"yanks it off him, treads over her bag.\",shuffles into a pit and stands amongst the abandoned graves.,\"sits along a bench, aiming something behind his back.\",steps over to a young man as the crowd looks at the demonstration.\n14799,lsmdc0009_Forrest_Gump-50222,3825,Someone steps out from the crowd and picks up the book. He,Someone steps out from the crowd and picks up the book.,He,gold,brings it up to the girl.,turns to find someone with someone.,\"closes the books behind someone, and exits.\",observes the way she has a glass tray on her hands as he steps towards them.\n14800,lsmdc0009_Forrest_Gump-50222,3804,He speeds past the defending players. Someone,He speeds past the defending players.,Someone,gold,destroys for a break.,climbs onto the hillside.,shoots him a glance.,runs past the opposite players.\n14801,lsmdc0009_Forrest_Gump-50222,3803,Someone runs across the field. He,Someone runs across the field.,He,gold,picks her up in the air and throws him down.,speeds past the defending players.,cross a field covered with dust.,points a gun at his leader.\n14802,lsmdc0009_Forrest_Gump-50222,3824,Someone notices and steps past the policeman toward the book on the ground. Someone,Someone notices and steps past the policeman toward the book on the ground.,Someone,gold,\"stands back on the settee, hands on her gown and wanders away.\",opens a hand of greetings and puts some money onto the table.,nods toward the set.,steps out from the crowd and picks up the book.\n14803,lsmdc0009_Forrest_Gump-50222,3810,Someone runs into the end zone as an opposing player dives at his feet. The referee,Someone runs into the end zone as an opposing player dives at his feet.,The referee,gold,aims someone in the eye and aims fearfully in the direction of his amber - foot helmet.,kicks his opponent at the put where.,\"holds up his arm, signaling a touch down.\",kicks him in the back and sends him tumbling across the mat.\n14804,lsmdc0009_Forrest_Gump-50222,3799,The crowd roars with excitement as a football is kicked off. The football players,The crowd roars with excitement as a football is kicked off.,The football players,gold,cheer for a group.,run around on the field.,break out and play the ball to the white man with pom poms.,are hanging from the side of the road by the front entrance.\n14805,lsmdc0009_Forrest_Gump-50222,3819,Someone stands next to someone and listens. Some of the Alabama policeman and citizens,Someone stands next to someone and listens.,Some of the Alabama policeman and citizens,gold,are someone seen as they all figure out on someone who is holding her prisoner.,are been listening to someone with their fists and a spoke in the ear.,clap their hands as the national guardsmen stand at attention with their weapons in front of them.,\"are interviewed from a shop, many of them dispatches city and some are still in mid - swept landscape.\"\n14806,lsmdc0009_Forrest_Gump-50222,3821,Someone walks through the crowd. Two black students,Someone walks through the crowd.,Two black students,gold,charge at each other.,were being led toward the schoolhouse.,step out onto the stage.,stare at the building sunset above.\n14807,lsmdc0009_Forrest_Gump-50222,3817,A football coach looks at a black and white television as a newsman outside the schoolhouse speaks to the camera. The footage,A football coach looks at a black and white television as a newsman outside the schoolhouse speaks to the camera.,The footage,gold,is now in slow motion on the scene in the foreground.,\"freezes again, one picture of the young woman picking up a steep hill.\",shows a swirl of black as he flies into it and flies toward the field.,cuts to someone as he speaks to someone.\n14808,lsmdc0009_Forrest_Gump-50222,3834,A bus pulls up to the bus stop. The black woman,A bus pulls up to the bus stop.,The black woman,gold,\"sits in the passenger seat, listening to the driver.\",looks down at her watch.,hops right through the bus.,gets out of her car.\n14809,lsmdc0009_Forrest_Gump-50222,3808,Someone runs along the sidelines. The opposing players,Someone runs along the sidelines.,The opposing players,gold,try to catch him.,drag the quaffle towards us.,fall over the edge of the board.,haul someone down into a large shower.\n14810,lsmdc0009_Forrest_Gump-50222,3798,Someone runs under the field goal post and through the end zone. The crowd,Someone runs under the field goal post and through the end zone.,The crowd,gold,roars with excitement as a football is kicked off.,\"blocks their attack, leading the crowd of students.\",feeds her to her family.,drones behind them with a monitor.\n14811,lsmdc0009_Forrest_Gump-50222,3813,The football coach looks at an assistant coach. An anchorman,The football coach looks at an assistant coach.,An anchorman,gold,slams the boy to the fence.,joins him standing behind a desk.,named someone appears over the television.,opens a front gate.\n14812,lsmdc0009_Forrest_Gump-50222,3827,A coach looks at the television. The television,A coach looks at the television.,The television,gold,shows the irritation of someone.,shows the tower's name.,shows the picture to the nurse.,reveals someone as he stands at the schoolhouse door.\n14813,lsmdc0009_Forrest_Gump-50222,3807,Some opposing players fall down. Someone,Some opposing players fall down.,Someone,gold,falls off of a goal.,runs along the sidelines.,makes a three - turn by the fountain.,gives him a pat.\n14814,lsmdc0009_Forrest_Gump-50222,3820,Some of the Alabama policeman and citizens clap their hands as the National Guardsmen stand at attention with their weapons in front of them. Someone,Some of the Alabama policeman and citizens clap their hands as the National Guardsmen stand at attention with their weapons in front of them.,Someone,gold,grins as someone laughs.,is busy with her book.,drops to his knees.,walks through the crowd.\n14815,anetv_szdKUpvx9Sk,16207,The dealer counts the money and gives the man chips. The dealer deals a hands of blackjack and the we,The dealer counts the money and gives the man chips.,The dealer deals a hands of blackjack and the we,gold,see the dealer dealing cards off.,see the men clapping and the dealer laughing.,nip here wrist with secluded letters.,see improvement i love you.\n14816,anetv_szdKUpvx9Sk,16206,We see a man and put money on the table. The dealer,We see a man and put money on the table.,The dealer,gold,speaks and adds people free cards to a bench.,takes a blue rag and wipes them to the table.,gives the cards to the dealer.,counts the money and gives the man chips.\n14817,anetv_szdKUpvx9Sk,16208,The dealer deals a hands of blackjack and the we see the men clapping and the dealer laughing. We see the dealer give the man chips and the man,The dealer deals a hands of blackjack and the we see the men clapping and the dealer laughing.,We see the dealer give the man chips and the man,gold,continues talking the dealer facade.,linger his turn to other presents.,stands in his group showing his friends his stack of chips.,bring the table up to the window.\n14818,anetv_szdKUpvx9Sk,16209,We see the dealer give the man chips and the man stands in his group showing his friends his stack of chips. Two men cheer and throw their fists in the air and the me,We see the dealer give the man chips and the man stands in his group showing his friends his stack of chips.,Two men cheer and throw their fists in the air and the me,gold,on the horses takes off from above.,laugh and cheer and walk.,walk back to his field.,come out from the large cups and talk about them.\n14819,anetv_szdKUpvx9Sk,16205,We see men standing around in a casino holding beers. We,We see men standing around in a casino holding beers.,We,gold,see a title screen in response.,see a man and put money on the table.,see a volleyball landing on the ground.,see people in the room cheering.\n14820,anetv_PSAfQ1qjtOA,7508,A gymnast stands and waves her arms before a performance. The gymnast,A gymnast stands and waves her arms before a performance.,The gymnast,gold,reappears then moves his arms up and spins the woman around on itself.,does a cartwheel and falls backward several times.,hops up and mounts the balance beam.,flips herself around one side then ties her arms around him.\n14821,anetv_PSAfQ1qjtOA,7511,The gymnast jump and does the splits in the air. The gymnast,The gymnast jump and does the splits in the air.,The gymnast,gold,hops off and vaults onto the parallel bars.,gets up and goes.,does the splits in the air and falls on the mat.,dismounts the balance beam onto the mat.\n14822,anetv_PSAfQ1qjtOA,7510,The gymnast does a routine on the balance beam doing flips and hand springs. The gymnast jump and,The gymnast does a routine on the balance beam doing flips and hand springs.,The gymnast jump and,gold,performs handsprings and jumps quickly.,does the girls routine.,does the splits in the air.,does a routine on the mat.\n14823,anetv_PSAfQ1qjtOA,7509,The gymnast hops up and mounts the balance beam. The gymnast,The gymnast hops up and mounts the balance beam.,The gymnast,gold,\"performs routine multiple flips and mounts, then shows the gymnasts jumping off of his balance beam.\",does a handstand and lands on the balance beam.,does a routine on the balance beam doing flips and hand springs.,stands on the beam before jumping off the mat and lands on the mat.\n14824,lsmdc3001_21_JUMP_STREET-555,2124,The bikers aim guns at someone. Someone,The bikers aim guns at someone.,Someone,gold,grabs someone and flees them over.,backs out of the concrete's vault.,bounds after them from buster's pursuers.,barges in knocking someone aside.\n14825,lsmdc3001_21_JUMP_STREET-555,2127,He turns and aims his gun. He,He turns and aims his gun.,He,gold,aims the gun upward.,takes off his sunglasses.,catches his comrade's arm.,strides to the bodhi tree and sees a small round in someone's eye.\n14826,lsmdc3001_21_JUMP_STREET-555,2125,The long - haired thug aims at the guys. Someone,The long - haired thug aims at the guys.,Someone,gold,grins and someone removes the empty ammo ring from someone's hand.,dashes back from their shots.,gives a sneering nod.,shoots four jabs at their father.\n14827,lsmdc3001_21_JUMP_STREET-555,2126,Someone gives a sneering nod. He,Someone gives a sneering nod.,He,gold,\"enters, opens the new door.\",turns and aims his gun.,opens the door to someone's who opens a double door.,looks at someone emptying the joint.\n14828,lsmdc0008_Fargo-50025,15910,\"Someone, cheeks sunk, eyes hollow, looks sourly out at the road. She\",\"Someone, cheeks sunk, eyes hollow, looks sourly out at the road.\",She,gold,looks nervously at the chest of drawers.,\"falls on the board, terrified.\",glances up in the rear - view mirror.,\"pours the batter into a chef's steak, and thrusts it into her center.\"\n14829,anetv_nbcRj00xCKM,9855,An individual is mostly submerged underwater while wearing a wakeboard and holding a tether to a boat. The individual,An individual is mostly submerged underwater while wearing a wakeboard and holding a tether to a boat.,The individual,gold,stops an empty bike on a boat while a young man in frame curls in kayaks onto the machine while tied with small bags.,lets out a final scream in the competition as all of the divers clearly go on.,gets dragged forward and begins wakeboarding with the camera capturing the individual from a low angle.,adjusts the settings on the right as mouthwash falls out of the water.\n14830,anetv_nbcRj00xCKM,132,\"She then gets up and begins traveling in the water while holding on to a bar attached to a rope. The journey continues, and person\",She then gets up and begins traveling in the water while holding on to a bar attached to a rope.,\"The journey continues, and person\",gold,lets go of the motocross machine and comes back to speak to the camera again.,step back out and wash her face while talking once more.,begins to sway back and forth as the waves continue crashing up against her.,lassos and throws the letters in again.\n14831,anetv_nbcRj00xCKM,9856,The individual gets dragged forward and begins wakeboarding with the camera capturing the individual from a low angle. The individual,The individual gets dragged forward and begins wakeboarding with the camera capturing the individual from a low angle.,The individual,gold,talks and music up to the audience.,clips the rider hold onto the ski's hatchet.,releases the tether and begins to sink into the water.,\"slides away from the water again, then removes several right.\"\n14832,anetv_nbcRj00xCKM,131,A small GoPro is shown and a woman appears in the middle of the water. She then,A small GoPro is shown and a woman appears in the middle of the water.,She then,gold,demonstrates how to do sit ups on the water and walks between windows and ocean water.,leans noisily against the side of the pool and sees a woman standing in the water.,gets up and begins traveling in the water while holding on to a bar attached to a rope.,begins skiing after ramps.\n14833,lsmdc1024_Identity_Thief-82136,6721,Someone puts down a file and follows someone's assistant. He,Someone puts down a file and follows someone's assistant.,He,gold,\"peeks into an office, where someone beckons him to enter.\",headlines through a photo of himself.,grabs someone by the shoulders.,expectantly sit at the table before her.\n14834,anetv_CfDdbeAk8LE,16766,He is moving his hand while he's welding. He,He is moving his hand while he's welding.,He,gold,finishes welding and lifts up his mask.,puts the lever back onto the fire.,moves a piece of furniture to the door and wipes it.,is struggling to get the roots comfortable.\n14835,anetv_CfDdbeAk8LE,16765,A man is welding something on a table. He,A man is welding something on a table.,He,gold,is moving his hand while he's welding.,is sanding blue and sands the fire.,is measurements on carpet to start.,is welding a stack of logs in the center of room.\n14836,anetv_2-xPjKzp-Kk,5068,\"After, the client shows with the hand, then the person make gestures with the hand showing the table. Next the woman\",\"After, the client shows with the hand, then the person make gestures with the hand showing the table.\",Next the woman,gold,pick up the cards.,begins painting her nails.,cleans the shoe with products.,tosses a paper and uses a key cutter to wipe off a tear.\n14837,anetv_2-xPjKzp-Kk,5067,\"Then people start to gamble, while the woman distribute the cards and pick up tokens. After, the client shows with the hand, then the person\",\"Then people start to gamble, while the woman distribute the cards and pick up tokens.\",\"After, the client shows with the hand, then the person\",gold,removes an air jigger and open the box in the locker.,throw how the pot is done.,make gestures with the hand showing the table.,puts the original matches back and forth.\n14838,anetv_2-xPjKzp-Kk,5066,\"A client tap with the finger inside a square. Then, the person\",A client tap with the finger inside a square.,\"Then, the person\",gold,\"add the dual yellow bumps towel, then brush and shine the shoe with polish.\",take the roll poke around the pot and put it on a holder.,stacks all the cards and puts the tokens inside the squares.,shows how to add some liquid when sitting before a fence.\n14839,anetv_VcthLhKIntA,12781,\"A woman enters, and she begins to dance. The woman\",\"A woman enters, and she begins to dance.\",The woman,gold,play the violin while someone eventually dances.,takes her hand.,turns and turns while she waits and talks.,\"lights a hula hoop on fire, dancing with the hoop.\"\n14840,anetv_yjQ-0AGqFS4,2463,We see a boy playing drums in an instrument store. We,We see a boy playing drums in an instrument store.,We,gold,see a group having a game.,see a man across the room playing drums.,play tapping around cymbals.,switch to the boy lit.\n14841,anetv_yjQ-0AGqFS4,2465,\"We see a girl, another boy, and the dad. We\",\"We see a girl, another boy, and the dad.\",We,gold,see the lady talk to the camera in background.,\"see the man across the room, then the boy.\",see the phone screen.,see a group gearing up for the jump competition.\n14842,anetv_yjQ-0AGqFS4,2467,The boy in stripes touches something on the drums. We,The boy in stripes touches something on the drums.,We,gold,see the ending credits.,is pictured in a black container with a pair of drums in the middle of the room.,see a large hiding lens and points.,see the boy and the man at the same time.\n14843,anetv_yjQ-0AGqFS4,2469,The boy in the stripes shirt rocks back and forth. The boy,The boy in the stripes shirt rocks back and forth.,The boy,gold,reaches around and strikes his face just after he hit him again after a while.,moves back and forth on the canvas while people watch on the side.,walks over and rubs his legs.,finishes and looks at the camera.\n14844,anetv_yjQ-0AGqFS4,2466,\"We see the man across the room, then the boy. The boy in stripes\",\"We see the man across the room, then the boy.\",The boy in stripes,gold,joins the teen man.,slides onto the bed and sets the swing.,holds a ball against his neck.,touches something on the drums.\n14845,anetv_yjQ-0AGqFS4,2468,We see the boy and the man at the same time. The boy in the stripes shirt,We see the boy and the man at the same time.,The boy in the stripes shirt,gold,started to swing and kneels.,rocks back and forth.,caresses the other boy's face with a tentative.,begins to slam the man in the machine.\n14846,anetv_yjQ-0AGqFS4,2464,We see a man across the room playing drums. We,We see a man across the room playing drums.,We,gold,see the man throw a ball in the air.,see all of the croquet.,see the man dive the receiver and jump before him swimming.,\"see a girl, another boy, and the dad.\"\n14847,anetv_J7Q3b1uFHyc,18502,Then one person is shown wearing glasses and other snow gear in the snow tubes. Then a great amount of other people,Then one person is shown wearing glasses and other snow gear in the snow tubes.,Then a great amount of other people,gold,are shown working while the camera comes to the camera.,are shown snow tubing next to each other.,are floating down the mountain pushing quickly past one rolling nuts.,are rowing up the hills again.\n14848,anetv_J7Q3b1uFHyc,18501,First the camera shows the three people who are snow tubing down the slippery snowy slide. Then one person,First the camera shows the three people who are snow tubing down the slippery snowy slide.,Then one person,gold,deposits the boy away and jumps off the tube.,is shown wearing glasses and other snow gear in the snow tubes.,is continually making snow castles in the track while more riding in a white path.,walks along the water while one shaves his face showing some shaving cream being made on the side of the suits.\n14849,lsmdc0032_The_Princess_Bride-65887,6409,But the eyes are bright. He,But the eyes are bright.,He,gold,\"has a wrapped package tucked under one arm as be immediately goes to the kid, pinches his cheek.\",tries desperately to spit a tiny whistle of his mouth.,is charmingly and mighty different than he taught himself to swings.,cross to reach out the alien with yet cylinder bell - shaped mark on it.\n14850,anetv_YVxuIAwOyoE,4472,A game of cricket is in progress. They,A game of cricket is in progress.,They,gold,\"gloved around with the person walking across the square, picked it up and shovel it away.\",sit on a table.,are making many of them.,\"hit the ball with the bat, trying to get it into the goal.\"\n14851,anetv_YVxuIAwOyoE,8106,A few lips of the people playing are shown and the man finishes talking. People continue hitting a ball with a thick paddle in a small patch of rectangular dirt and more techniques,A few lips of the people playing are shown and the man finishes talking.,People continue hitting a ball with a thick paddle in a small patch of rectangular dirt and more techniques,gold,are shown or change to play.,are being pointed out.,are shown on the ice.,of a song on it.\n14852,lsmdc1056_Rambo-96882,7883,He carries a small bundle. Someone,He carries a small bundle.,Someone,gold,ties up the camel.,wears a concerned frown.,stands beside it as he turns on.,receives another text from the back.\n14853,lsmdc1056_Rambo-96882,7890,\"On the bank, someone hoists a bulky black rucksack onto his shoulders. Someone\",\"On the bank, someone hoists a bulky black rucksack onto his shoulders.\",Someone,gold,takes cover then writes a comic book.,sits ashen - faced.,lowers her middle arm.,walks up the gangplank.\n14854,lsmdc1056_Rambo-96882,7916,Someone gives him a comforting pat. Someone,Someone gives him a comforting pat.,Someone,gold,\"looks down at them, then at the waiting patients.\",smells while someone shovels the snow into his driveway.,\"gets up, pale, smile and sorrowful.\",'s mother carries her paddle toward a window.\n14855,lsmdc1056_Rambo-96882,7935,Someone looks up just as two of the soldiers grab her by the arms. She tries to fight them off but they,Someone looks up just as two of the soldiers grab her by the arms.,She tries to fight them off but they,gold,\"fall, palm and heart.\",continue grabbing their heavy crates.,haul her to her feet.,knock them on the ground.\n14856,lsmdc1056_Rambo-96882,7920,The rockets are fired by the army. A man,The rockets are fired by the army.,A man,gold,forcing them onto the face of the enemy.,swigs from a rifle while the nazi soldier burns fire.,in the vest knocks him over.,is blown to pieces.\n14857,lsmdc1056_Rambo-96882,7877,\"The volunteers stand up in the boat, collect their belongings and begin to disembark. Local peasants\",\"The volunteers stand up in the boat, collect their belongings and begin to disembark.\",Local peasants,gold,are then shown being careful to shoot their boards.,act as porters nearby.,are taking shelter on green seashell.,are shown at the barn jackets.\n14858,lsmdc1056_Rambo-96882,7910,Another volunteer gives medical care. Someone,Another volunteer gives medical care.,Someone,gold,\"closes his eyes, then hangs out then glances at the police wedding map.\",passes by him and walks up wooden steps into a hut.,wipes up horses hair.,slip a heavy slot.\n14859,lsmdc1056_Rambo-96882,7925,\"One is shot and the other bayoneted in the stomach while his face is held down by an army boot. A woman is shot, another abused and a third\",One is shot and the other bayoneted in the stomach while his face is held down by an army boot.,\"A woman is shot, another abused and a third\",gold,dragged away by her hair.,\"caretaker, after her landed on the floor.\",\"begins to stretch, then puts them back on speed and continues just working.\",member starts out on the back of the river.\n14860,lsmdc1056_Rambo-96882,7922,Someone roams with a child in his arms. Rockets,Someone roams with a child in his arms.,Rockets,gold,are snatched from a man's crotch.,hit the paddy field.,replayed ardent over someone's face with it.,\"eyes, someone struggles to slumber to his story.\"\n14861,lsmdc1056_Rambo-96882,7923,A wooden hut is destroyed. The army,A wooden hut is destroyed.,The army,gold,enter the village with weapons blazing.,races through a barred landscape which depicts two small sculptures choosing new types of fire.,mashes their potatoes in anguish.,passes several rows of detailed or scarred identity with a sword in evening.\n14862,lsmdc1056_Rambo-96882,7876,\"There is a simple harbor beneath a large, spreading tree which overhangs the water. The volunteers\",\"There is a simple harbor beneath a large, spreading tree which overhangs the water.\",The volunteers,gold,\"bring tools over to the box, soaked by the paper, and someone picks it up.\",are some selling biscuits and beer cans.,\"stand up in the boat, collect their belongings and begin to disembark.\",tend to people sitting on narrow surfboards.\n14863,lsmdc1056_Rambo-96882,7879,Someone gets off the boat and walks away up a wooden gangplank. Someone,Someone gets off the boat and walks away up a wooden gangplank.,Someone,gold,lingers and turns to someone.,walks under the water and picks up a white tube.,rolls on the edge of the couch.,sprints up stairs into his water and fishes out his cell phone.\n14864,lsmdc1056_Rambo-96882,7880,Someone lingers and turns to someone. Her blonde hair,Someone lingers and turns to someone.,Her blonde hair,gold,is tied back in a bunch.,is indeed a lot of pale and agitated.,\"is still behind the mirror, still holding someone.\",runs down her palm.\n14865,lsmdc1056_Rambo-96882,7871,She places her slim hand on his beefy forearm. Her eyes,She places her slim hand on his beefy forearm.,Her eyes,gold,are wide and brimming with tears.,filling with tears and tears.,\"widen as she backs out, spurting a brilliant light which collides with someone.\",follow anxiously on the aisle she is not aware.\n14866,lsmdc1056_Rambo-96882,7884,Someone wears a concerned frown. Someone,Someone wears a concerned frown.,Someone,gold,downs it with a kick.,\"calmly picks the can from her pocket, turns it over to someone, crossing his stomach.\",stares at him sadly.,is hardly touched as he leaves the street.\n14867,lsmdc1056_Rambo-96882,7929,The villagers are massacred in mid - flight. Someone,The villagers are massacred in mid - flight.,Someone,gold,is accompanied by a mother and a child who run with her.,faces the transport and seagulls real visible.,bursts down the corridor and follows wearing a pale - yellow suit.,\"backs aside, gazes into the street.\"\n14868,lsmdc1056_Rambo-96882,7926,\"In slow motion, a volunteer in a baseball cap tries to outrun the rocket fire. Soldiers\",\"In slow motion, a volunteer in a baseball cap tries to outrun the rocket fire.\",Soldiers,gold,hack off villagers' limbs.,stand on a boat staring at the boat.,look back toward the village thick group of workers carrying hills.,shows the official to how grace he is yell at.\n14869,lsmdc1056_Rambo-96882,7912,\"Young people sit in a waiting area, some with missing limbs. Someone\",\"Young people sit in a waiting area, some with missing limbs.\",Someone,gold,finds someone with another patient who lies on the floor of the hut.,begins to move running.,picks up his coat and leaves his case in front of his face.,holds a white coconut above them.\n14870,lsmdc1056_Rambo-96882,7903,Someone opens up another can and drowns the deck in more petrol. The petrol,Someone opens up another can and drowns the deck in more petrol.,The petrol,gold,reaches for the latch.,washes pools of blood over the side of the boat.,pumps down from a scrub then rubs part of the cars.,station is clear.\n14871,lsmdc1056_Rambo-96882,7875,The boat plows through the river water. The floodlights of the now derelict pirate boat,The boat plows through the river water.,The floodlights of the now derelict pirate boat,gold,\"touches their departing stand, as the boat motors into the inky blackness.\",is held beneath the grill of the ship's nest.,appear at the top of the river to get ahead.,is lodged in the side of the river.\n14872,lsmdc1056_Rambo-96882,7911,Someone passes by him and walks up wooden steps into a hut. Young people,Someone passes by him and walks up wooden steps into a hut.,Young people,gold,\"are on the other side of the stairwell, one in each.\",stretch several steps to the base of the staircase as they climb.,\"sit in a waiting area, some with missing limbs.\",walk from behind the pole.\n14873,lsmdc1056_Rambo-96882,7908,\"Stalks of rice plants stand upright in a paddy field below the village. Outside a hut, someone\",Stalks of rice plants stand upright in a paddy field below the village.,\"Outside a hut, someone\",gold,spots a door jam and leaps after them.,hands a book to a puzzled child.,uses an ax to ram a gap.,sits on the elephant facing his mentor.\n14874,lsmdc1056_Rambo-96882,7915,He binds a stump where his shin should be. Someone,He binds a stump where his shin should be.,Someone,gold,stands and jabs the sword in the vest's right shoulder.,gives him a comforting pat.,can squeeze inside the wrists with a wooden knife.,takes his father's knife.\n14875,lsmdc1056_Rambo-96882,7938,\"The commander watches, his eyes hidden behind his sunglasses. Someone's boat\",\"The commander watches, his eyes hidden behind his sunglasses.\",Someone's boat,gold,sits serenely at its home harbor.,stops above the path in the crystal coupe.,drags him along an empty road lined with traveling slats.,backs out of the lab.\n14876,lsmdc1056_Rambo-96882,7919,Someone hands a child to its mother. The rockets,Someone hands a child to its mother.,The rockets,gold,are fired by the army.,shoot in the air.,move slowly across the plaza twilight.,explode in the hell with someone.\n14877,lsmdc1056_Rambo-96882,7936,She tries to fight them off but they haul her to her feet. They,She tries to fight them off but they haul her to her feet.,They,gold,perform with protective using frisbees and shoes.,reach the pavement and comes out on the pavement.,drag her away by the scruff of her neck.,swarm around the cars as the passengers exit.\n14878,lsmdc1056_Rambo-96882,7894,Someone stares warily at it as they past. A single corpse,Someone stares warily at it as they past.,A single corpse,gold,\"lunges at someone, who readies the launcher.\",descends down a slab of black snow with lava.,emerges from a nearby cage and plants army webs around the people.,lies on the deck near the abandoned machine gun.\n14879,lsmdc1056_Rambo-96882,7939,\"Someone sits on the deck with his elbows resting on his knees, toying with the crucifix someone gave him in his sinewy hands. He\",\"Someone sits on the deck with his elbows resting on his knees, toying with the crucifix someone gave him in his sinewy hands.\",He,gold,halts at his father's massive window.,musses his left eye from the blow - pipe.,slumps unsteadily against the narrow pane.,\"looks up thoughtfully, then stands.\"\n14880,lsmdc1056_Rambo-96882,7887,His fingers close over the gift. She,His fingers close over the gift.,She,gold,\"nods, then takes off past a sports truck.\",\"stares at him, then turns away.\",grabs some items from a rack between his.,returns to someone's.\n14881,lsmdc1056_Rambo-96882,7933,The commander pulls on his cigarette. More villagers,The commander pulls on his cigarette.,More villagers,gold,come off to join it.,run towards the truck.,go out to avoid the arrangement.,converge on the stage.\n14882,lsmdc1056_Rambo-96882,7918,A very small boy has only one leg. The village,A very small boy has only one leg.,The village,gold,is talking with their baby.,is attacked with rocket fire.,takes a few paces ahead.,is coming close for them.\n14883,lsmdc1056_Rambo-96882,7886,She smiles faintly and places a small crucifix on a necklace into his enormous hand. His fingers,She smiles faintly and places a small crucifix on a necklace into his enormous hand.,His fingers,gold,close over the gift.,are holding a large tin in her hand.,dig inside her nails.,begin to spread as he holds the key into a nearby box and lowers it from the ground.\n14884,lsmdc1056_Rambo-96882,7927,Soldiers hack off villagers' limbs. A soldier with a flamethrower,Soldiers hack off villagers' limbs.,A soldier with a flamethrower,gold,sends a plume of flame into a building.,volley - to the fighter.,is being chased down the street.,find a sign mounted on a protective tower.\n14885,lsmdc1056_Rambo-96882,7893,\"Someone's boat rounds a headland and comes upon the pirates' motorboat, floating near a bank. Someone\",\"Someone's boat rounds a headland and comes upon the pirates' motorboat, floating near a bank.\",Someone,gold,\"sprints down a winding tunnel flanked by rows of people, avoiding myrtle's passing.\",peers into a shocked - white water at the stern of the ship.,stares warily at it as they past.,uses only to survey the devastation.\n14886,lsmdc1056_Rambo-96882,7934,More villagers run towards the truck. Their bodies,More villagers run towards the truck.,Their bodies,gold,are static on the motorcycle.,follow the rail as they perform.,are torn apart by bullets.,scatter to gain from the rubble.\n14887,lsmdc1056_Rambo-96882,7891,\"Two of the bearers carry a pole between them, from which a large carton hangs. Someone's boat\",\"Two of the bearers carry a pole between them, from which a large carton hangs.\",Someone's boat,gold,\"passes on little blackie, high through the water.\",wends its way back down the river.,slips back into the raging pool of sunlight.,darts upwards under the water's edge.\n14888,lsmdc1056_Rambo-96882,7914,Someone hands someone a roll of bandage. He,Someone hands someone a roll of bandage.,He,gold,holds a hook to add explosives.,binds a stump where his shin should be.,seizes up and wipes his face.,\"pauses, gazing back at someone.\"\n14889,lsmdc1056_Rambo-96882,7906,\"He flips open and lights a cigarette lighter. From his own boat, he\",He flips open and lights a cigarette lighter.,\"From his own boat, he\",gold,\"tosses the lighter into the pirate boat, which bursts into flame.\",crawls over the.,staggers out of the car.,holds the stick.\n14890,lsmdc1056_Rambo-96882,7900,The volunteers approach the village. They,The volunteers approach the village.,They,gold,shoot the skiptracer into the back door.,are greeted by small children and adults alike.,look at the tow.,head to someone's side desk.\n14891,lsmdc1056_Rambo-96882,7928,A soldier with a flamethrower sends a plume of flame into a building. A small child,A soldier with a flamethrower sends a plume of flame into a building.,A small child,gold,blows the smoke up in the air with a juxtaposed trunk.,stands at a stop beside a building in front of some bank.,is torn from its mother and tossed into the burning building.,\"runs through frame, followed into a small fuss.\"\n14892,lsmdc1056_Rambo-96882,7874,\"With a sullen glare, someone fires up the boat's motor and adjusts the tiller. The boat\",\"With a sullen glare, someone fires up the boat's motor and adjusts the tiller.\",The boat,gold,drives away from the alfa tiers at an end.,winds along as the boat sails within supports past the water.,plows through the river water.,\"rushes, brake and hard to avoid all of the rocks.\"\n14893,lsmdc1056_Rambo-96882,7895,A single corpse lies on the deck near the abandoned machine gun. Someone,A single corpse lies on the deck near the abandoned machine gun.,Someone,gold,shoots a flashlight and knocks on the door.,cemented him back to the boat.,steps on his feet as they race through the forest.,grips the tiller firmly and guides his boat towards the pirate boat.\n14894,lsmdc1056_Rambo-96882,7917,\"Someone looks down at them, then at the waiting patients. A very small boy\",\"Someone looks down at them, then at the waiting patients.\",A very small boy,gold,has only one leg.,is illuminated by his two.,shows someone from his coat.,comes out of the strange kitchen.\n14895,lsmdc1056_Rambo-96882,7904,The petrol washes pools of blood over the side of the boat. He,The petrol washes pools of blood over the side of the boat.,He,gold,throws an empty can into the hold of the boat.,\"rides down, holding a hose, and shows two more corpses.\",rolls the window close over his bellowing!,carries the lobster out of the car and knocks him over the head as she speeds to the house.\n14896,lsmdc1056_Rambo-96882,7897,\"On the pirate boat, one of the pirate corpses has turned a mottled purple. The boat\",\"On the pirate boat, one of the pirate corpses has turned a mottled purple.\",The boat,gold,falls to its shore into the water.,moves into a riverbank.,starts to mount the boat.,paddles forward in its outstretched blue eyes.\n14897,lsmdc1056_Rambo-96882,7913,Someone finds someone with another patient who lies on the floor of the hut. Someone,Someone finds someone with another patient who lies on the floor of the hut.,Someone,gold,hands it to her.,approaches a skeleton standing from a wooden chandelier.,hands someone a roll of bandage.,bear hugs someone and pulls her up.\n14898,lsmdc1056_Rambo-96882,7896,\"His own follows behind it, piloted by one of his men. On the pirate boat, one of the pirate corpses\",\"His own follows behind it, piloted by one of his men.\",\"On the pirate boat, one of the pirate corpses\",gold,lie in the sky.,is turning to the visitors.,is hovering toward him.,has turned a mottled purple.\n14899,lsmdc1056_Rambo-96882,7930,Someone is accompanied by a mother and a child who run with her. The mother,Someone is accompanied by a mother and a child who run with her.,The mother,gold,wanders silently along the street.,is shot in the back and drops to the ground.,fans off with the braided toy bag.,looks around as someone precedes someone on.\n14900,lsmdc1056_Rambo-96882,7881,\"Her blonde hair is tied back in a bunch. On the riverside, someone\",Her blonde hair is tied back in a bunch.,\"On the riverside, someone\",gold,is in the bedroom.,whacks someone in the face.,pauses and watches them.,\"sits her chair up, taking off a spring mask.\"\n14901,lsmdc1056_Rambo-96882,7899,Someone locks off the motor and brings the pirate boat to a halt. He,Someone locks off the motor and brings the pirate boat to a halt.,He,gold,heads off through a last pane someone tunnel.,\"bounces from the pail, lands on his elbows and rises off his feet.\",hits with the tires and slams down.,grabs petrol cans and rope and makes his way through the pirate corpses.\n14902,lsmdc1056_Rambo-96882,7907,\"From his own boat, he tosses the lighter into the pirate boat, which bursts into flame. Stalks of rice plants\",\"From his own boat, he tosses the lighter into the pirate boat, which bursts into flame.\",Stalks of rice plants,gold,\"float up behind someone, creating someone flashes.\",set near the edge of the large rocky clockwork facility.,stand upright in a paddy field below the village.,hover atop a low branch and pushes him out from underneath.\n14903,lsmdc1056_Rambo-96882,7870,She stares at him desperately. She,She stares at him desperately.,She,gold,\"slumps for a moment, then adjusts the blanket with his legs.\",shoots at him from the top.,places her slim hand on his beefy forearm.,leans into his side pipe with the burning gun clutched in her hand.\n14904,lsmdc1056_Rambo-96882,7905,He throws an empty can into the hold of the boat. He,He throws an empty can into the hold of the boat.,He,gold,swims to reach the edge of the pool table.,flips open and lights a cigarette lighter.,takes it out and starts opening it on the bench.,\"studies it for a long time, completely exhausted.\"\n14905,lsmdc1056_Rambo-96882,7924,A volunteer carrying a child in each arm is cut down. The children,A volunteer carrying a child in each arm is cut down.,The children,gold,continue spinning and flipping and fold out into the garden.,move to the other bike and place an arm wrestling.,are dragged from him.,throw out each other on their potatoes.\n14906,lsmdc1056_Rambo-96882,7909,\"Outside a hut, someone hands a book to a puzzled child. One of the volunteers\",\"Outside a hut, someone hands a book to a puzzled child.\",One of the volunteers,gold,knocks the teens out.,deposits his saddle bags.,gives an oral examination to a woman.,picks up a sack who holds on a large stump.\n14907,lsmdc1056_Rambo-96882,7872,Her eyes are wide and brimming with tears. Someone,Her eyes are wide and brimming with tears.,Someone,gold,lies asleep on her stomach faces under the mattress.,\"looks away, disgustedly.\",shoots someone with sharp horns.,\"remains astride by trees, staring in amazement.\"\n14908,lsmdc1056_Rambo-96882,7921,A man is blown to pieces. Someone,A man is blown to pieces.,Someone,gold,runs into the crowd and looks down.,roams with a child in his arms.,watches him go through the garden gate.,looks up at her and smiles.\n14909,lsmdc1056_Rambo-96882,7937,Huts and trees are on fire. The commander,Huts and trees are on fire.,The commander,gold,rafts right behind the stables.,\"watches, his eyes hidden behind his sunglasses.\",throws up two balls.,chops one of the armed flags with it.\n14910,lsmdc1056_Rambo-96882,7882,\"On the riverside, someone pauses and watches them. He\",\"On the riverside, someone pauses and watches them.\",He,gold,faces the x - rays.,shines his flashlight across the pacific.,carries a small bundle.,loads an ax into the man's face.\n14911,lsmdc1056_Rambo-96882,7931,\"From the truck, the cool commander watches the carnage while his subordinate blazes away. Partially caught by a blast, someone\",\"From the truck, the cool commander watches the carnage while his subordinate blazes away.\",\"Partially caught by a blast, someone\",gold,tumbles into the water of the field.,turns and takes on the ground and paddles away.,shares a glance with her son and tvs in the barn.,rushes behind the rushing water.\n14912,lsmdc1056_Rambo-96882,7889,\"She gets off the boat. On the bank, someone\",She gets off the boat.,\"On the bank, someone\",gold,hoists a bulky black rucksack onto his shoulders.,approaches the pretty teenager to someone's head.,picked up her newly inspection report and tosses it to someone.,smiles at the bus driver.\n14913,lsmdc1044_Pride_And_Prejudice_Disk_Two-89732,4457,Someone goes over to the door and opens it. They,Someone goes over to the door and opens it.,They,gold,\"follow them, still gripping as the door slams.\",\"head out, leaving someone alone with her letters.\",see where the locket is.,\"land in the lobby, and someone still tries to pull the door shut.\"\n14914,lsmdc1044_Pride_And_Prejudice_Disk_Two-89732,4458,\"They head out, leaving someone alone with her letters. She\",\"They head out, leaving someone alone with her letters.\",She,gold,\"waits in a doorway to a pretty blonde, who looks down at her son.\",removes the car by a window and exits the building.,settles down and opens the first one.,reaches for his painting glasses.\n14915,anetv_vigHVj40dO4,1433,A man is seen pushing a piece of machinery over large grass. A 3d animation,A man is seen pushing a piece of machinery over large grass.,A 3d animation,gold,is shown of many people using around hands.,is shown how the tool works.,is shown of people riding down the hill while smiling to the camera.,is shown followed by people's wide flashes.\n14916,anetv_vigHVj40dO4,11368,A man is seen pushing a large machine around a wooded area and cutting the grass along the trees. A video,A man is seen pushing a large machine around a wooded area and cutting the grass along the trees.,A video,gold,speaks to the camera and cuts to landscapes running around in their yard.,shows how the machine works and leads into a man speaking to the camera and shots of the machine working.,is then seen sitting on another horse and speaks to the camera.,is shown leading into several clips of children running and others still running around.\n14917,anetv_vigHVj40dO4,1434,A 3d animation is shown how the tool works. A woman,A 3d animation is shown how the tool works.,A woman,gold,is then seen using the machine and pushing through the tall grass as well as others using the machine.,speaks to them with a green shark.,grabs a guy from the protective glasses and talks to the camera.,lies on the ground in front of the house.\n14918,lsmdc1034_Super_8-8376,8150,\"They try all the doors, but they are firmly locked. They\",\"They try all the doors, but they are firmly locked.\",They,gold,play the hand on their hands - and keeps swinging around their pedals and laughing.,hold their coconut lifts to their chests.,all advance to give them down.,break the doors open and step inside.\n14919,lsmdc1034_Super_8-8376,8153,It falls about 30 feet before touching the bottom. They,It falls about 30 feet before touching the bottom.,They,gold,\"stand at the edge of the pit, looking down.\",are walking on the water floor.,oil and words are shown.,move along and backward.\n14920,lsmdc1034_Super_8-8376,8151,They break the doors open and step inside. A tunnel,They break the doors open and step inside.,A tunnel,gold,glides past the spar.,gets held by a white uniformed woman.,appears up off the dance floor.,leads into the earth.\n14921,lsmdc1034_Super_8-8376,8152,Someone lights one of the sparklers and tosses it into the tunnel. It,Someone lights one of the sparklers and tosses it into the tunnel.,It,gold,continues splashing across the windshield from intersection until it records them.,falls about 30 feet before touching the bottom.,shoot off the rooftop.,dives into the top and dementor.\n14922,lsmdc1034_Super_8-8376,8149,\"Someone is about to strap up someone's leg, which has been broken in the explosion. People\",\"Someone is about to strap up someone's leg, which has been broken in the explosion.\",People,gold,reach the living room.,have a point as the vampire falls.,run up to his car and disappear.,\"run to the building in the cemetery, where someone saw earth being thrown about.\"\n14923,lsmdc3045_LAND_OF_THE_LOST-21092,18023,He turns on the amplifier. Rocks,He turns on the amplifier.,Rocks,gold,fall from the ceiling.,as lightning flashes of the giant arrows to the sea behind him.,float towards the scape.,his time against someone's low door.\n14924,lsmdc3045_LAND_OF_THE_LOST-21092,18022,Someone studies a hand - held meter. He,Someone studies a hand - held meter.,He,gold,locks green locks in a box.,crouches down to hold it against himself.,buries his head in the red handbag.,turns on the amplifier.\n14925,lsmdc1028_No_Reservations-83346,873,She runs her hand through her hair. Someone,She runs her hand through her hair.,Someone,gold,\"creeps into the office, pins the door open.\",moves around to the side of someone's bed and catches sight of the cuddly toys on her pillow.,\"smiles at someone, each with a tight smile.\",applies her eyes to her mirror.\n14926,lsmdc1028_No_Reservations-83346,874,Someone moves around to the side of someone's bed and catches sight of the cuddly toys on her pillow. She,Someone moves around to the side of someone's bed and catches sight of the cuddly toys on her pillow.,She,gold,\"picks open a bottle, hovers it with his finger.\",\"considers them briefly, then picks up the furry kangaroo.\",mopes to the hospital.,\"taps the cell rod in his hand, asks for a few minutes.\"\n14927,lsmdc1028_No_Reservations-83346,871,They drive around in someone's blue pickup truck. Someone,They drive around in someone's blue pickup truck.,Someone,gold,\"chases fireball through the entrance, followed by the crowd.\",holds her hand to her mouth.,shoots out of the vehicles at the engine.,\"withdraws his hand, bullets march on.\"\n14928,anetv_6sorAV7KJxA,11785,Then he starts removing some parts of wood from the roof and he piles all of the tiles up. Then he,Then he starts removing some parts of wood from the roof and he piles all of the tiles up.,Then he,gold,walks on front a board and clips a tool on the wall.,puts them where they should go to make a full part on the roof.,\"paints the sole he used to remove the layer of slush, very snow off.\",closes the hairspray on the blade on the roof and continues peeling.\n14929,anetv_6sorAV7KJxA,11784,This man is shown standing on the roof saying a few words. Then he starts removing some parts of wood from the roof and he,This man is shown standing on the roof saying a few words.,Then he starts removing some parts of wood from the roof and he,gold,piles all of the tiles up.,turns with the light to be absolutely certain he is falling.,demonstrates how to remove a car detail.,gets the openings into the machine then spreads it tiles.\n14930,anetv__S6D21MV8Ks,2385,\"One of the boys then takes the ball and bounces it against the wall and the two begin taking turns hitting the ball back and forth. After sometime, they are n't able to keep the ball up and one boy\",One of the boys then takes the ball and bounces it against the wall and the two begin taking turns hitting the ball back and forth.,\"After sometime, they are n't able to keep the ball up and one boy\",gold,starts to bounce the ball up and down on racket by himself.,returns smiling to the camera.,hits it at them and is walking back to speak to the camera when he's done.,knocks them all over and puts the stick between them back in place.\n14931,anetv__S6D21MV8Ks,2386,\"After sometime, they are n't able to keep the ball up and one boy starts to bounce the ball up and down on racket by himself. The game then\",\"After sometime, they are n't able to keep the ball up and one boy starts to bounce the ball up and down on racket by himself.\",The game then,gold,continues on in the same fashion as the people on the other side of the glass watches them play with each other.,clears and the bull loses the step.,gets interviewed waves to the restaurant man and the guy.,breaks into place to hit the ball back and forth into the goal again.\n14932,anetv__S6D21MV8Ks,2384,Two young boys are standing in the room with two tennis rackets in their hand surrounded by three white walls and a glass wall behind them. One of the boys then takes the ball and bounces it against the wall and the two,Two young boys are standing in the room with two tennis rackets in their hand surrounded by three white walls and a glass wall behind them.,One of the boys then takes the ball and bounces it against the wall and the two,gold,are then already given his after the ball and returned with the pins.,begin taking turns hitting the ball back and forth.,begin to play again.,\"continue doing it, stops it, then moves a small ball back on the floor from the beginning and dries on the ground.\"\n14933,anetv_3ImTO0bzXPA,17649,A woman is seen sitting in a chair with a man rubbing her face. The camera,A woman is seen sitting in a chair with a man rubbing her face.,The camera,gold,zooms in on her faces and shows the man giving the girl a piercing.,pierces the back of her upper lip and leads into her using her hand to move their hand along the floor.,zooms in on her face while shaving her chin as he speaks to the camera.,focuses on a doctor sitting on a watch.\n14934,anetv_3ImTO0bzXPA,1129,The man then puts a dot on her face and begins putting in a piercing. The camera,The man then puts a dot on her face and begins putting in a piercing.,The camera,gold,shows the woman shaving while holding the razor.,zooms in as the man pierces her face and puts a rag on afterwards.,zooms in on a man then shows off pans to the camera pans to show a man interacting in a snow shop.,pans back and the woman continues playing on the instrument.\n14935,anetv_3ImTO0bzXPA,1128,A woman is seen sitting in a chair with a man rubbing her face. The man then,A woman is seen sitting in a chair with a man rubbing her face.,The man then,gold,puts her hands on her hands and begins covering her mouth with the liquid.,puts a dot on her face and begins putting in a piercing.,pushes the other girl down and leads into her pointing at the mirror.,wrestles the person off and ends with her speaking to the camera.\n14936,anetv_kpnGg2lOBLM,11078,A large group of people are seen jumping rope in a gymnasium while moving back and fourth with the camera. A woman,A large group of people are seen jumping rope in a gymnasium while moving back and fourth with the camera.,A woman,gold,is seen performing a routine performing slow dancing moves while camera moves around underneath the indoor.,jumps out onto the back of a pole while kids watch on the side.,stands in front to instruct the group and continue jumping rope and then stopping.,runs next to them and pass by a rope while the crowd watches.\n14937,anetv_kpnGg2lOBLM,11079,A woman stands in front to instruct the group and continue jumping rope and then stopping. The people then,A woman stands in front to instruct the group and continue jumping rope and then stopping.,The people then,gold,perform a dance routine of the ball as the man jumps and mat the routine.,perform back and fourth while still speaking to the camera when they're done.,spin in front of the male using two sword techniques.,do a warm up with one another and stretch with the woman leading in front.\n14938,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72257,13759,She steps towards the potions. Someone,She steps towards the potions.,Someone,gold,looks at the cigarette.,opens a cupboard door.,leans in to kiss someone.,\"comes again, continuing to slow dance.\"\n14939,anetv_esNQZCjMZaM,2096,\"Announcers talk as she gets closer to the bullseye. She hits very close to the center, and a fellow player\",Announcers talk as she gets closer to the bullseye.,\"She hits very close to the center, and a fellow player\",gold,\"helps, after the video ends.\",jerks a puck backwards from the net.,gives her a thumbs up.,wants her to kick.\n14940,anetv_esNQZCjMZaM,2094,A woman is on a field with an archery set. She,A woman is on a field with an archery set.,She,gold,slows up and makes a puck.,shoots an arrow at a target while other girls watch and wait their turn.,is grabbing two potatoes.,is speaking to the camera in an elliptical machine.\n14941,anetv_esNQZCjMZaM,19039,\"After she releases it, the girls behind her begin to clap and look in amazement at her results. Two more girls go after her and the commentators\",\"After she releases it, the girls behind her begin to clap and look in amazement at her results.\",Two more girls go after her and the commentators,gold,try to roll the exact same.,jump up and down in glee and begin to laugh.,continue to get to hold their hands.,continue to grab her arm and pushing rally around to keep them up from the box as she finishes her aerobics.\n14942,anetv_esNQZCjMZaM,19038,\"A young woman is standing in a stadium on a mat holding up a bow and arrows and releasing it onto the target. After she releases it, the girls behind her\",A young woman is standing in a stadium on a mat holding up a bow and arrows and releasing it onto the target.,\"After she releases it, the girls behind her\",gold,stop and watch stretching.,begin to clap and look in amazement at her results.,pushes the woman down.,runs when she speaks over and over again.\n14943,anetv_esNQZCjMZaM,2095,She shoots an arrow at a target while other girls watch and wait their turn. Announcers,She shoots an arrow at a target while other girls watch and wait their turn.,Announcers,gold,jump on an obstacles and jump into two stone vaulters.,shine their arms in the wind.,talk as she gets closer to the bullseye.,run left staying along the track while other clips are going in the holes.\n14944,anetv_esNQZCjMZaM,19040,Two more girls go after her and the commentators jump up and down in glee and begin to laugh. The other girls then,Two more girls go after her and the commentators jump up and down in glee and begin to laugh.,The other girls then,gold,jump over a trampoline back and fourth on a rope and tell them what to do.,help her perform and the results are introduced as the girl fall dancing with boys who've also started to jump and laugh violently.,step up to take their turns as the ladies give them thumbs up and other cheers.,begin dancing back and fourth while looking in their hands and ends by kissing face to the camera.\n14945,anetv_HGK_K2XqhTA,13588,\"A teen shakes his hand on front a glass of water while a youth watch him. Then, the teen\",A teen shakes his hand on front a glass of water while a youth watch him.,\"Then, the teen\",gold,is four places started to nature and then people wearing bathrooms and purple t - shirt on the first light of their skis.,jump on their diving board and dives into a pool of water.,takes the glass shaking his hand and drinks the water while the laugh.,walks a three the board then goes in the other direction while then he begins cooking in the pan.\n14946,anetv_HGK_K2XqhTA,13590,\"After, the youth takes the glass, then holds a cup while the teen fold his right hand. Next, the teen\",\"After, the youth takes the glass, then holds a cup while the teen fold his right hand.\",\"Next, the teen\",gold,has beer from a beer can and blows for matches.,demonstrates tai chi while a groomed prepares.,removes a tip in a hole before applying it in.,takes a cup and pretend to drink while making gestures of pain.\n14947,anetv_HGK_K2XqhTA,13589,\"Then, the teen takes the glass shaking his hand and drinks the water while the laugh. After, the youth\",\"Then, the teen takes the glass shaking his hand and drinks the water while the laugh.\",\"After, the youth\",gold,\"takes the glass, then holds a cup while the teen fold his right hand.\",rides in a swimming pool room and dives.,\"takes a sip while shakes off his flute, puts his drink on the tray.\",takes back two glasses of beer and serves it up.\n14948,anetv_OUY4TkdjnyA,15533,\"Then, a clip is shown of two boys playing with the foosball table, one of whom is reading a magazine while playing. Several additional clips\",\"Then, a clip is shown of two boys playing with the foosball table, one of whom is reading a magazine while playing.\",Several additional clips,gold,of logos in the family gambling session are shown.,are shown of people riding on the elevated marches.,show one boy playing a piano.,appear showing the boys playing foosball in different ways.\n14949,anetv_OUY4TkdjnyA,15532,\"A screen with words shows up. Then, a clip\",A screen with words shows up.,\"Then, a clip\",gold,is shown and a woman is demonstrating how to do a jump board.,\"is shown of two boys playing with the foosball table, one of whom is reading a magazine while playing.\",is shown talking about sharpening the tool with the child.,screen appear before the screen.\n14950,anetv_OUY4TkdjnyA,15531,It begins with a title screen. Then a clip,It begins with a title screen.,Then a clip,gold,of a man using a device to use a screen on his hands.,is shown of a little boy who puts a ball shaped like an eyeball on a foosball table.,\"leads into a video showing how it hurl a stationary bike, complete with an animated tool showing no place of it.\",begins dotted with black and white words that say asks if what it is about.\n14951,anetv_OUY4TkdjnyA,15530,The topic of the video shows how to play foosball. It,The topic of the video shows how to play foosball.,It,gold,introduces loads of cakes.,takes someone's gown.,begins with a title screen.,is shown complete a game of polo competition.\n14952,anetv_OUY4TkdjnyA,15534,Several additional clips appear showing the boys playing foosball in different ways. The video,Several additional clips appear showing the boys playing foosball in different ways.,The video,gold,makes a replay of the throw and multiple times in overlays showing.,goes over their original acrobatic effort.,ends with one of the boys falling asleep while playing.,ends with a able video video showing athletes participating and running to measure the competition.\n14953,anetv_-3Ss9jSRbKk,17601,A woman kneels on the hardwood floors of a gym room and talks to the camera. The camera pans out and another woman,A woman kneels on the hardwood floors of a gym room and talks to the camera.,The camera pans out and another woman,gold,is standing next to the sink.,is revealed lying on her back on a gym mat as the woman kneeling above her continues to talk.,is shown putting a pair of shoes on the ground.,is shown sitting along the bed by the man.\n14954,anetv_-3Ss9jSRbKk,17600,\"A woman demonstrates how to do sit ups, in a gym room, using a woman who is simulating the exercise as an example. A woman\",\"A woman demonstrates how to do sit ups, in a gym room, using a woman who is simulating the exercise as an example.\",A woman,gold,is now in chinese jumping on a wood set on the ladder of her boat where another performing is moving with her.,kneels on the hardwood floors of a gym room and talks to the camera.,is pressing her exercising machine with her hands while using exercise devices.,shows a few weights and some drones large bars.\n14955,anetv_-3Ss9jSRbKk,17602,The camera pans out and another woman is revealed lying on her back on a gym mat as the woman kneeling above her continues to talk. The woman lying down demonstrates how to do a sit up and the other woman,The camera pans out and another woman is revealed lying on her back on a gym mat as the woman kneeling above her continues to talk.,The woman lying down demonstrates how to do a sit up and the other woman,gold,continues to talk at times touching the other woman's stomach.,continues to hoping across the floor.,gets two bags to lift her bags down from her body.,records her in the nightstand.\n14956,anetv_Marb8CMxPV0,2656,Various people are seen standing in an open area performing several tricks with their dogs. Many people watch on the sidelines and more people,Various people are seen standing in an open area performing several tricks with their dogs.,Many people watch on the sidelines and more people,gold,continue to show tricks with their dogs.,come around and ends with ending text in the end.,are seen riding on bikes as well as a team speaking to the camera.,go out to the camera to reveal their lively objects.\n14957,anetv_Marb8CMxPV0,2657,Many people watch on the sidelines and more people continue to show tricks with their dogs. Several people,Many people watch on the sidelines and more people continue to show tricks with their dogs.,Several people,gold,\"gather on the horses, trying to stay forested after the race.\",fly around them around the tree.,are interviewed by the camera and leads into even more tricks being shown.,are seen speaking to the camera and start dancing down a screen.\n14958,lsmdc1039_The_Queen-88035,2396,\"Someone walks off and someone leaves in another direction. Monday, video footage\",Someone walks off and someone leaves in another direction.,\"Monday, video footage\",gold,\"shows someone strolling down the corridor followed by someone, rear - view, wearing water - black suit.\",\"shows hogwarts toasted guy commercial drills with bearded russian, contemplatively.\",\"shows a long line of people standing outside buckingham palace, laying more flowers at the gates.\",shows someone and someone in the cockpit.\n14959,lsmdc1039_The_Queen-88035,2395,\"Outside, someone stands with someone. Someone walks off and someone\",\"Outside, someone stands with someone.\",Someone walks off and someone,gold,stands in front of the boots uncle.,comes in after them.,leaves in another direction.,\"strokes someone's hair, then slaps him.\"\n14960,lsmdc1039_The_Queen-88035,2393,Someone looks at the vehicles from an upstairs window. She,Someone looks at the vehicles from an upstairs window.,She,gold,opens the door and approaches him.,\"drive ahead, passing a highway adjacent.\",leans her shoulder against a door to find the firmly gawking visitors.,watches as two men exit from the lead vehicle.\n14961,lsmdc1039_The_Queen-88035,2392,\"Nighttime, two Range Rovers pull into the courtyard at Balmoral. Someone\",\"Nighttime, two Range Rovers pull into the courtyard at Balmoral.\",Someone,gold,\"takes a challenge from someone, of someone with someone.\",stows an egg sandwich in a salad.,looks at the vehicles from an upstairs window.,digs on the bunker's wrecked tier.\n14962,lsmdc1039_The_Queen-88035,2397,\"Monday, video footage shows a long line of people standing outside Buckingham Palace, laying more flowers at the gates. Bunches of flowers\",\"Monday, video footage shows a long line of people standing outside Buckingham Palace, laying more flowers at the gates.\",Bunches of flowers,gold,are then shown with the finished product on the table.,pile up at the railings.,appear and stand around someone's porsche and someone goes back inside.,gather on the oak tree for sale.\n14963,lsmdc1039_The_Queen-88035,2398,Bunches of flowers pile up at the railings. A massive people,Bunches of flowers pile up at the railings.,A massive people,gold,\"approach a barbershop, facing the sun.\",fall down inside through the flaming hole.,arranged on a round - stone skyscraper.,were held back by metal barriers.\n14964,lsmdc1039_The_Queen-88035,2391,\"Someone picks his finger nails while someone scratches her wrist. Nighttime, two Range Rovers\",Someone picks his finger nails while someone scratches her wrist.,\"Nighttime, two Range Rovers\",gold,fly through the leaves and through a window.,fly into a halt.,pull into the courtyard at balmoral.,waltzing out with purple army soldiers.\n14965,lsmdc1039_The_Queen-88035,2394,She watches as two men exit from the lead vehicle. Someone,She watches as two men exit from the lead vehicle.,Someone,gold,takes out a collection of golf fabric.,hangs up the phone.,\"pockets the guest's wallet, and gently touches it.\",turns away from the window.\n14966,lsmdc1039_The_Queen-88035,2399,\"A massive people were held back by metal barriers. Inside a large room, dignitaries and their advisers\",A massive people were held back by metal barriers.,\"Inside a large room, dignitaries and their advisers\",gold,sit around a long table.,soar streak through white clouds.,go into place in the home.,arrive on a desk.\n14967,anetv_UTiSAR1o2nU,14494,A girl has tied a rope between two trees. She,A girl has tied a rope between two trees.,She,gold,uses the pole to finish it and flips go before backwards.,stands up and hugs people.,\"balances on the rope, trying to walk across it.\",kicks the ice cream away.\n14968,anetv_UTiSAR1o2nU,8857,A guy lifts a male onto the slack line. The guy and lady,A guy lifts a male onto the slack line.,The guy and lady,gold,perform in the lounge.,hold a lady's notice and exhales.,pose in a photo.,slam the man in the face.\n14969,anetv_UTiSAR1o2nU,8856,People try to walk on a tight rope or slack line. A guy,People try to walk on a tight rope or slack line.,A guy,gold,walks up to the water and adjusts the rope using the rope.,\"is riding on a rope, trying to pull up the rope.\",lifts a male onto the slack line.,comes on and lowers his legs but can not see it.\n14970,anetv_UTiSAR1o2nU,14495,\"She balances on the rope, trying to walk across it. She jumps off, and a man\",\"She balances on the rope, trying to walk across it.\",\"She jumps off, and a man\",gold,is pulled over her own feet.,jump into an olympic dive.,takes her place on the rope behind her.,is shown preparing the video too.\n14971,anetv_Nk4p-ah_PkA,14141,People playing a baseball game are shown on a large field with dozens of people watching on the side. The people,People playing a baseball game are shown on a large field with dozens of people watching on the side.,The people,gold,continue playing the game and ends with several players running of the field in the end.,continue playing with one another holding rackets and hitting the ball.,hit the ball back and fourth while others watch on the sides.,continue playing the hockey game on the beach and waving to one another.\n14972,anetv_cxVbaN4GxxU,5825,He looks inside the tent at a group of kids playing cards and a woman sitting outside. A boy,He looks inside the tent at a group of kids playing cards and a woman sitting outside.,A boy,gold,catches her hair and offers a huge smile.,selling i man marked someone in someone's yard.,starts out with a second eye.,\"walks through parked cars, smiling.\"\n14973,anetv_cxVbaN4GxxU,5824,A man stands outside a tent. He,A man stands outside a tent.,He,gold,looks inside the tent at a group of kids playing cards and a woman sitting outside.,lifts a barbell up to his chest.,talks to the camera.,gives the man another arrow.\n14974,anetv_cxVbaN4GxxU,5826,\"A boy walks through parked cars, smiling. He\",\"A boy walks through parked cars, smiling.\",He,gold,breaks the camera lens.,walks into a residential house and gets out.,is then shown on a kayak in a lake.,gets on a bike and picks up a clean shoe.\n14975,lsmdc3044_KNOCKED_UP-21057,17432,He returns to the others. He,He returns to the others.,He,gold,shakes his head and sits down.,walks out from the room.,\"drops them, and they jog across the beach.\",pushes him to face bottom.\n14976,anetv_DvDfifKGXXg,18001,A couple of little boys are outside in a yard. They,A couple of little boys are outside in a yard.,They,gold,have many hats on each other.,are using paint brushes on a set of metal bars.,are using a large iron by the surf.,run down the sidewalk under tents and prepare.\n14977,anetv_DvDfifKGXXg,1204,We zoom on the left boy. We then,We zoom on the left boy.,We then,gold,switch to and zoom on the right boy.,see the man again again.,see the end screen and the name of the gymnastic attempt.,see the person riding on a horse.\n14978,anetv_DvDfifKGXXg,18002,They are using paint brushes on a set of metal bars. The boys,They are using paint brushes on a set of metal bars.,The boys,gold,bend around on roller blades.,try every time to do down that.,\"move around a suspension fence, while with a brush on the ground.\",are attempting to pain the bars black.\n14979,anetv_DvDfifKGXXg,1203,The boy in white wipes his shirt. We,The boy in white wipes his shirt.,We,gold,see the title lying of the beam.,see how to take his picture and show it that a living room is the office.,see a bowler hitting the ball.,zoom on the left boy.\n14980,anetv_DvDfifKGXXg,1205,We then switch to and zoom on the right boy. We,We then switch to and zoom on the right boy.,We,gold,see both boys fill their brushes with paint.,see the man in a new shirt.,see the man run again.,see a red title screen.\n14981,anetv_PIGH5p2iMoI,14097,A marching band is playing on a field. A man in a trench coat,A marching band is playing on a field.,A man in a trench coat,gold,is talking into a microphone.,is standing out of frame and showing a roller bucket.,walks onto the street with a hand to her mouth.,is playing the bagpipes in front of a pile of pipes.\n14982,anetv_PIGH5p2iMoI,14098,A man in a trench coat is talking into a microphone. A team,A man in a trench coat is talking into a microphone.,A team,gold,sits on a stage microphone.,stands on a diving board and an audience clapping.,is playing lacrosse on a field of grass.,is sitting on the car watching him.\n14983,lsmdc3024_EASY_A-11522,15084,She yanks her into a hug. Someone,She yanks her into a hug.,Someone,gold,gives a disappointed kick.,holds a red stick in both hands.,trudges to the papers and paces.,seizes her in another hug.\n14984,lsmdc3024_EASY_A-11522,15086,Someone points at her ceramics partner and mimes gagging. Someone,Someone points at her ceramics partner and mimes gagging.,Someone,gold,\"two cronies look down at someone, who is thrown out of sidewalk.\",arrival toward someone he takes a huge leap and hurries off.,falls off her surfboard as she dances with someone.,gives a sarcastic thumbs up.\n14985,lsmdc3024_EASY_A-11522,15091,Someone steps in and overhears. Now someone,Someone steps in and overhears.,Now someone,gold,leaves someone's study with a small display of an tablet.,collapses to the roof.,\"has part of the dealers, leading the way.\",storms into the locker room.\n14986,lsmdc3024_EASY_A-11522,15085,The next day they hug again. Someone,The next day they hug again.,Someone,gold,points at her phone.,emerges from the shadows and looks into space.,fires a gun pistol.,rolls out his cuff desk.\n14987,lsmdc3024_EASY_A-11522,15089,\"Later she uses her cellphone. Now in the school office, someone\",Later she uses her cellphone.,\"Now in the school office, someone\",gold,holds a phone to her ear.,remembers typing on a newspaper.,hangs on a window.,lies asleep in her bed.\n14988,anetv_leKf6Q87IYg,9230,Several pictures of seen of a man wakeboarding and leading into him speaking to the camera. He,Several pictures of seen of a man wakeboarding and leading into him speaking to the camera.,He,gold,shows people preparing to kick a canoe while smiling.,demonstrates how to properly perform moves while standing on the lawn.,continues talking while the man is drug out.,begins to ski as well as credits.\n14989,anetv_DfiPwDSjjHE,122,She picks up a large stuffed animal. She then,She picks up a large stuffed animal.,She then,gold,reaches the top and picks it up.,picks up a small red bag.,uncaps the air with her thumb.,tosses a flute inside the hole.\n14990,anetv_DfiPwDSjjHE,121,She closes the box and puts it away. She,She closes the box and puts it away.,She,gold,drops the cup in the floor.,holds the book back to someone.,hides her tablet in her laptop.,picks up a large stuffed animal.\n14991,anetv_DfiPwDSjjHE,119,A woman in a pink shirt is talking. She,A woman in a pink shirt is talking.,She,gold,porsche's being never coming up.,starts washing her face in the sink.,picks up a clear box and opens it.,kicks the ball with her hands in the air.\n14992,anetv_DfiPwDSjjHE,120,She picks up a clear box and opens it. She,She picks up a clear box and opens it.,She,gold,closes the box and puts it away.,puts the contacts in her pack and adds them under her index finger.,sees someone lounging on top of a food rod.,picks it up and looks for a collage.\n14993,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6875,\"He steadies himself, the Basilisk fang in his hand. Someone\",\"He steadies himself, the Basilisk fang in his hand.\",Someone,gold,gazes into his mouth as his eyes seem to lick his nervous smoke.,\"spots it and fires at someone, who falls onto a lower staircase.\",\"roars back at him, moves behind it.\",flings at the tower which someone also closes down.\n14994,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6881,\"Someone lands and takes aim. The walkway collapses, and someone\",Someone lands and takes aim.,\"The walkway collapses, and someone\",gold,drops to the floor below.,pulls the gun from his chair.,\"gets to his feet, as he smokes his cigarette.\",stumbles at the end of the field.\n14995,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6879,The unconscious someone comes too. He,The unconscious someone comes too.,He,gold,wipes a blood off his nose with his thumb and brushes it off the sleeping vest.,watches with his eyes fixed straight ahead with heavy fangs.,\"sits up woozily, oblivious to the mayhem of battle around him.\",steps casually at the butcher.\n14996,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6865,The people make their escape back across the bridge. Someone,The people make their escape back across the bridge.,Someone,gold,\"is alone, clutching his wand.\",rises from someone's grasp!,looks at the gun with his sword.,runs into the captain's courtyard and follows someone toward the entrance.\n14997,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6886,\"On a narrow platform, they hurl energy blasts at each other. Someone seemingly\",\"On a narrow platform, they hurl energy blasts at each other.\",Someone seemingly,gold,has the better of someone.,churns as the man pins them down.,drops the grenade launcher.,finds out of someone's character.\n14998,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6870,He shows himself as someone climbs the main staircase. They,He shows himself as someone climbs the main staircase.,They,gold,walk out from the church.,pass youths' side as the sub approaches.,gaze on cavern.,fend off each other's energy blasts like sword fight.\n14999,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6873,Someone is forced backwards as someone slithers up the stairs towards him. It,Someone is forced backwards as someone slithers up the stairs towards him.,It,gold,\"deflects a blast onto the ceiling, bringing stone beams down onto the stair.\",lies on his back on the railroad track outside.,looks up at the students desk with a number of precision cases.,head down the lane.\n15000,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6877,\"Someone slithers across a landing. Hit by a stone, the snake\",Someone slithers across a landing.,\"Hit by a stone, the snake\",gold,stops leaving the stone.,turns and looks over the edge of the stairs.,lifts as it crashes into someone's parapet.,falls from her grasp.\n15001,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6869,Someone hides behind a wall clutching a Basilisk fang. He,Someone hides behind a wall clutching a Basilisk fang.,He,gold,storms fire onto the roof and shatters it.,\"pushed him a death eater, knocking him to the ground.\",shows himself as someone climbs the main staircase.,runs down the tunnel one created but still there do not see him.\n15002,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6867,\"Hearing movement, he spins, then again he fires, hitting a door frame. Three bodies\",\"Hearing movement, he spins, then again he fires, hitting a door frame.\",Three bodies,gold,slouched behind his feet as he collapses and heads outside.,are thrown against a shelving unit.,lie on the ground.,dive him deep into the tunnel.\n15003,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6887,Someone seemingly has the better of someone. Someone,Someone seemingly has the better of someone.,Someone,gold,reaches out to explore his son's shot and studies the map.,looks at her child and stretches closer.,\"advances wildly, and strikes someone several times.\",turns back to someone's face.\n15004,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6864,Several People make their escape. The students,Several People make their escape.,The students,gold,peer past drones on their faces.,look on the bridge as they go.,\"give interviews, their kids to the congregation.\",run into the school.\n15005,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6866,\"Walking backwards, he turns sharply. Hearing movement, he spins, then again he\",\"Walking backwards, he turns sharply.\",\"Hearing movement, he spins, then again he\",gold,ponders for another moment.,\"sees someone sitting over him, his black grandmother untouched.\",\"fires, hitting a door frame.\",obliviously dives for a collection nearby bank.\n15006,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6871,They fend off each other's energy blasts like sword fight. He,They fend off each other's energy blasts like sword fight.,He,gold,\"moves towards someone, someone behind him.\",ducks through a pain - high wall.,\"sniffs fire, raising a hand over someone's head.\",casts an sheen around the domed king.\n15007,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6882,\"Someone advances on someone, who retreats, a basilisk fang in one hand. Also wielding a fang, someone\",\"Someone advances on someone, who retreats, a basilisk fang in one hand.\",\"Also wielding a fang, someone\",gold,\"creeps up the stairs towards the snake, who turns on him.\",dodges a barrage of runaway blood - thuds from someone's arms.,looks up at him.,follows the giant statues of debris against a wall.\n15008,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6863,\"Someone stares defiantly at someone. As he draws the sword from the Sorting Hat, someone\",Someone stares defiantly at someone.,\"As he draws the sword from the Sorting Hat, someone\",gold,looks up at the screen.,leaps from someone's arms.,swings his head into it as he peers down at someone.,halts his salute and folds his bow.\n15009,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6888,\"Someone advances wildly, and strikes someone several times. Mouth agape, the stunned someone\",\"Someone advances wildly, and strikes someone several times.\",\"Mouth agape, the stunned someone\",gold,continues to contain his grateful smirk.,raises her hands in the air.,enclosure himself as someone gradually rises.,\"places his hand on the sheet, then swings the pizzas.\"\n15010,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6874,\"It deflects a blast onto the ceiling, bringing stone beams down onto the stair. He\",\"It deflects a blast onto the ceiling, bringing stone beams down onto the stair.\",He,gold,continues binding the rope up in a helpless hand.,blasts it with an ax.,\"walks to catch them, with a particular sound.\",\"steadies himself, the basilisk fang in his hand.\"\n15011,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6880,\"On the ground behind him, he sees the Sword of Gryffindor. Someone\",\"On the ground behind him, he sees the Sword of Gryffindor.\",Someone,gold,grins as he moves to the door.,lands and takes aim.,guides the makeshift sword down his leg.,runs along the side of the street.\n15012,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6885,\"Someone takes someone's place. On a narrow platform, they\",Someone takes someone's place.,\"On a narrow platform, they\",gold,sit at a private lobby.,hurl energy blasts at each other.,set off for the theater.,lie flat on their feet.\n15013,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6862,His hand's on his heart. Someone,His hand's on his heart.,Someone,gold,gazes down at the little winged flags lying on the bed calendar.,\"watches him go, her lips masking.\",twists in his ink.,stares defiantly at someone.\n15014,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6884,\"In another part of the school, people are dueling it out. Someone\",\"In another part of the school, people are dueling it out.\",Someone,gold,is painting the painting.,takes someone's place.,\", people, and young women share a giant envelope of money.\",is on the bank.\n15015,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6868,He runs as someone apparates at the main staircase. Someone,He runs as someone apparates at the main staircase.,Someone,gold,shakes his top off.,hides behind a wall clutching a basilisk fang.,rests each foot in someone's back eye.,stares coldly at the radio.\n15016,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100380,6876,Someone disappears from someone's sight. Someone,Someone disappears from someone's sight.,Someone,gold,falls off his board and hurls a tumble.,slithers across a landing.,finds someone and keys.,leans back against the curtain and peeks out.\n15017,lsmdc1020_Crazy_Stupid_Love-81238,978,She screws her eyes shut. A guy,She screws her eyes shut.,A guy,gold,leaps and carries her.,hands her a back door.,changes a brown leather stuff.,spots her and stops.\n15018,lsmdc1020_Crazy_Stupid_Love-81238,976,She wears a low - cut black dress and makes a beeline for him. She,She wears a low - cut black dress and makes a beeline for him.,She,gold,\"her head, the lady, wild - eyed, runs up a aisle, temporarily missing the furious balls.\",shakes her silky hair from her face.,looks at her.,follows the ladder onto the platform.\n15019,lsmdc1020_Crazy_Stupid_Love-81238,979,A guy spots her and stops. He,A guy spots her and stops.,He,gold,comes into the room.,moves back as he heads off.,hands over the flag.,jumps up a slide at someone.\n15020,lsmdc1020_Crazy_Stupid_Love-81238,975,He can't take his eyes off her. She,He can't take his eyes off her.,She,gold,gives her hand a shake and she storms into the dining room.,takes a long drag away.,searches the remaining truffles.,wears a low - cut black dress and makes a beeline for him.\n15021,lsmdc1020_Crazy_Stupid_Love-81238,974,\"Someone watches someone leave with all the different women, including two at the same time. He\",\"Someone watches someone leave with all the different women, including two at the same time.\",He,gold,\"enters radio cut carrying two men, men, and three same ladies in a posh movie theater.\",can't take his eyes off her.,whips the bowl and makes her way straight the rear aisle.,is a neat man as skewered.\n15022,anetv_Y-SehqCvzME,13372,The man begins playing the guitar and singing into a microphone. The man,The man begins playing the guitar and singing into a microphone.,The man,gold,continues singing and playing and stops in the end.,begins to play the instrument curled up on the floor.,plays the drums while the man still plays.,points at the guitar and points.\n15023,anetv_Y-SehqCvzME,13371,A man is seen speaking to the camera while holding a guitar in his hands. The man,A man is seen speaking to the camera while holding a guitar in his hands.,The man,gold,continues playing the harmonica while sitting.,begins playing the guitar and singing into a microphone.,continues playing back and fourth while holding up his mouth.,continues to play his instrument while moving his hands out and leads into him playing his guitar.\n15024,anetv_JUfowIpmwaE,7568,A person is kite boarding in the water. They,A person is kite boarding in the water.,They,gold,are flying kites in the air and rotation in diagon energy & foam.,get in a yellow kayak from the polo section.,are doing jumps in the water and fall onto their side.,\"sail down a path, landing the plane on the ground.\"\n15025,anetv_JUfowIpmwaE,4642,Surfers spin the sail holding the handle only with one hand. A sailer,Surfers spin the sail holding the handle only with one hand.,A sailer,gold,spins his sail with both hands without falling to the water.,watches on the performance with the referee rode.,appears in the ocean's cordon.,helps the child go.\n15026,anetv_JUfowIpmwaE,7569,They are doing jumps in the water and fall onto their side. A kite boarder,They are doing jumps in the water and fall onto their side.,A kite boarder,gold,is pulled onto the board and falls in the water and falls back into the water before letting go.,jumps in the water.,is seen in the background as people sail on stage.,is shown going up and down in the water so they're displayed in the barn.\n15027,anetv_JUfowIpmwaE,4641,\"People surf on sailboards in the ocean, one person falls when demonstrates a turn. Surfers\",\"People surf on sailboards in the ocean, one person falls when demonstrates a turn.\",Surfers,gold,move across the dirt to hilly charge.,takes more people to rapids fall into the swimming pool.,spin the sail holding the handle only with one hand.,\"are sitting on surfboards, across the panicked ground several times and doing flips.\"\n15028,anetv_86hyAYM5d3E,7387,He gets off and lays down on the grass. He then,He gets off and lays down on the grass.,He then,gold,stops and talks to the camera.,helps by receiving a knitting star.,comes and walks forward with the horse.,confederate a small child forward and putting it down.\n15029,anetv_86hyAYM5d3E,7386,A man is riding a riding lawn mower on a baseball field. He,A man is riding a riding lawn mower on a baseball field.,He,gold,\"starts to leave the house, when the camera cuts to him.\",is then shown standing on the grass swinging the lawn mower around a corner.,has the lawn mower which is attached to a bush.,gets off and lays down on the grass.\n15030,anetv_86hyAYM5d3E,6923,A man gets off the lawn mower and falls down onto the grass. He,A man gets off the lawn mower and falls down onto the grass.,He,gold,continues trying to hit his dog to get back into the bushes.,gets back onto the lawn mower.,\"runs into the fence, moving on the side of the lawn.\",gives a thumbs up.\n15031,anetv_86hyAYM5d3E,6922,People are mowing the lawn on a baseball field. A man,People are mowing the lawn on a baseball field.,A man,gold,gets off the lawn mower and falls down onto the grass.,is sitting on a patio room a board.,wearing a yellow hat blower falls into a dirt container.,wearing blue leaves in front of a black and black grass while another leaf blower man closes in.\n15032,anetv_Y-dpHbPGQWE,17341,An opening screen with the title of a song is shown. We,An opening screen with the title of a song is shown.,We,gold,see a bull hanging from the scene.,see a man on a running class jump with judges who say goodbye to the audience wearing front.,is on stage and handstand pushes the batons.,see a man playing a guitar in a recording studio.\n15033,anetv_Y-dpHbPGQWE,17342,We see a man playing a guitar in a recording studio. We,We see a man playing a guitar in a recording studio.,We,gold,see a ending screen with the man's youtube channel address on it.,see the title screen.,see a bag playing the drums.,see the camera operator and is seen kicking the rhythm with the davis.\n15034,lsmdc3033_HUGO-14468,12746,Someone takes off the key from around her neck. He,Someone takes off the key from around her neck.,He,gold,looks down at it.,throws her arms at him.,does this to her.,eats the breakfast at the table and gives the members a hopeful smile.\n15035,lsmdc3033_HUGO-14468,12748,They stare at one another then both face the automaton. Someone,They stare at one another then both face the automaton.,Someone,gold,backs away from someone.,looks up as they round the shoulders of their son's table.,walks behind it and turns the crank attached to its back.,\"looks at someone, who stands not looking at him.\"\n15036,lsmdc3033_HUGO-14468,12749,Someone walks behind it and turns the crank attached to its back. He,Someone walks behind it and turns the crank attached to its back.,He,gold,\"races past someone, but large sedan glides from the slope as he sprays the wrecked car.\",\"plunges in to someone's gem, and hurries to the back porch, a light - haired man.\",turns the wheel and looks over his metal hand to ensure that you should take it out and cross the parking lot.,inserts the heart - shaped key into the lock.\n15037,lsmdc3033_HUGO-14468,12747,He looks down at it. They,He looks down at it.,They,gold,kick up a rock from the ceiling.,stare at one another then both face the automaton.,sees someone gulp down the drink.,grow up in a mess.\n15038,anetv_e4AIrRnWakA,1141,Various children are seen walking around an area holding cigarettes and smoking. A man,Various children are seen walking around an area holding cigarettes and smoking.,A man,gold,speaks to the camera as well as a woman while more clips are shown of the city.,leads her along the pipe while holding a racket and speaking to the camera along in the end.,is seen putting a tobacco around a hookah while looking to the camera.,inserts the paddle into the camera while people talk around the sides.\n15039,anetv_e4AIrRnWakA,5068,\"Several shots of kids smoking are shown as well as city areas, and followed by a man wearing glasses speaking to the camera. More pictures\",\"Several shots of kids smoking are shown as well as city areas, and followed by a man wearing glasses speaking to the camera.\",More pictures,gold,are shown of people playing with one another and more dancing with one another.,are shown of men playing a bunch of beer pong.,are shown and followed by the man speaking and more kids smoking.,are shown of people playing outdoors.\n15040,anetv_e4AIrRnWakA,1142,A man speaks to the camera as well as a woman while more clips are shown of the city. More people,A man speaks to the camera as well as a woman while more clips are shown of the city.,More people,gold,are seen working on equipment off one of others while the camera captures them from several angles.,talk to the camera as close ups are shown of kids smoking and others watching.,speak and speak to one another while demonstrating how to properly vault with scenes.,are shown playing lacrosse along with one man putting on a casual shirt.\n15041,anetv_e4AIrRnWakA,5067,\"Various pictures of a child smoking and cigarettes are shown, followed by a man speaking to the camera and kids smoking cigarettes. Several shots of kids smoking\",\"Various pictures of a child smoking and cigarettes are shown, followed by a man speaking to the camera and kids smoking cigarettes.\",Several shots of kids smoking,gold,\"are shown as well as city areas, and followed by a man wearing glasses speaking to the camera.\",is shown and the man smoking and smoking her cigarette.,\", drinking up kicks and club while a man speaks to the camera.\",are shown as well as talking a skeleton into the sky and the man recording the darts hold and laughs with one another.\n15042,anetv_-V00wKlFJA0,3270,A man is seen standing in a garage and proceeds to play a set of bagpipes. The man,A man is seen standing in a garage and proceeds to play a set of bagpipes.,The man,gold,continues playing on the waves while the kids continue speaking.,continues playing the instrument while moving his hands around and stops in the end to turn off the camera.,continues playing and drums while he continues to speak.,continues playing the violin back and fourth while the camera watches him.\n15043,anetv_DACWnbWrd18,9554,A large patch of grass is shown. A man,A large patch of grass is shown.,A man,gold,is mowing the yard next to the bushes.,\"talks to the camera, then starts to play it.\",is mowing the branches of a tree.,demonstrates how to make the fire.\n15044,anetv_DACWnbWrd18,9555,A man is mowing the yard next to the bushes. He,A man is mowing the yard next to the bushes.,He,gold,hops up on the lawnmower.,blows the leaves outdoors and starts blowing leaves off the trees.,continues mowing the thread and twisting his body.,stops and talks to the camera.\n15045,anetv_470dhR3Yrjs,5871,This is a video on how to do a braid for girl's hair. A girl,This is a video on how to do a braid for girl's hair.,A girl,gold,is outdoors in a yard as she shows her braided hair.,is shown doing a blow animation off the garden curling and knitting her various hands.,comes to make a formula and begins being customized by a stylist.,stands in her hotel and explains some various techniques.\n15046,anetv_470dhR3Yrjs,5872,Indoors this girl shows the back of her head as she gives a tutorial on how to braid the hair as she begins with the top of hear head and finishes at the nape of her neck. Again she,Indoors this girl shows the back of her head as she gives a tutorial on how to braid the hair as she begins with the top of hear head and finishes at the nape of her neck.,Again she,gold,\"does this and shows clips of the ends of a grooming violin, while she begins to talk and himself.\",is shown outside in a yard with her braid and a blue bow at the end of the braid.,begins hula hooping as the other girl rips a polka dress off her shoulders and walks away together.,does the bunch of makeup and continues some until the mother has reached the bottom.\n15047,anetv_470dhR3Yrjs,18121,The girl continues to braid her hair while the camera captures her hand movements. The girl,The girl continues to braid her hair while the camera captures her hand movements.,The girl,gold,continues to keep her braid over her hair and speak to the camera.,continues brushing her hair into the end and ends by walking towards her camera.,\"continues brushing, but the image is still visible in her face.\",finishes braiding her hair by tying a bow inside while the camera pans around.\n15048,anetv_470dhR3Yrjs,18120,A close up of a girl's hair is seen that leads into her in a room braiding her hair. The girl,A close up of a girl's hair is seen that leads into her in a room braiding her hair.,The girl,gold,speaks to the camera and showing off clips of her hair over a hair dryer and showing her hair up above.,continues braiding her hair and ends by speaking to the camera.,continues to knit with the lady who continues around and ends with her standing and speaking to the camera.,continues to braid her hair while the camera captures her hand movements.\n15049,lsmdc1057_Seven_pounds-98041,2414,\"The home nurse gives someone a questioning look. In the motel room, someone\",The home nurse gives someone a questioning look.,\"In the motel room, someone\",gold,\"comes out on a shrinking, dirty floor.\",'s manager pulls it up from her dress.,stares at her monitor with a flash on her phone.,looks in a mirror as he carefully shaves off his heavy stubble with a wet razor.\n15050,lsmdc1057_Seven_pounds-98041,2411,She cringes and looks hopeful. Someone,She cringes and looks hopeful.,Someone,gold,glances around as he enters the wintry passageway.,ambles toward her body.,smiles as he gets in this car.,breaks into an uncertain smile.\n15051,lsmdc1057_Seven_pounds-98041,2413,She smiles and puts down the phone. The home nurse,She smiles and puts down the phone.,The home nurse,gold,resumes her long pointed forehead.,gives someone a questioning look.,gives her mother a pleading look.,makes it through to the home room.\n15052,lsmdc1057_Seven_pounds-98041,2412,Someone breaks into an uncertain smile. She,Someone breaks into an uncertain smile.,She,gold,smiles and puts down the phone.,offers a bowl of toast.,turns and looks at the inside of the room.,sets down the coat and looks out.\n15053,lsmdc1057_Seven_pounds-98041,2415,\"In the motel room, someone looks in a mirror as he carefully shaves off his heavy stubble with a wet razor. He\",\"In the motel room, someone looks in a mirror as he carefully shaves off his heavy stubble with a wet razor.\",He,gold,walks into the living room and picks up the silk gown.,turns and sees someone in the bathroom mirror.,\"remains on the floor, staring at her dumbfounded.\",stops and studies himself solemnly.\n15054,lsmdc1057_Seven_pounds-98041,2417,Someone pulls up at someone's. Someone,Someone pulls up at someone's.,Someone,gold,gets out of the car with a gift - wrapped parcel.,\"shines his flashlight onto another pillow, illuminating the open blinds.\",retrieves the barrier and strides doggedly down the hall.,presses the call button.\n15055,anetv_0CTnYEE7rdo,3595,He is seen talking to the camera in the middle of the road. Then we,He is seen talking to the camera in the middle of the road.,Then we,gold,see him doing several different stunts as he winds in and out of traffic.,see the bull and see the front of the horse.,see telephoto transitioning in on the window.,\"see the boys in several sports, and a score of an anchor is shown.\"\n15056,anetv_0CTnYEE7rdo,3594,A man is skateboarding down a city street. He,A man is skateboarding down a city street.,He,gold,is seen talking to the camera in the middle of the road.,is been skateboarding down a street.,comes down a walk and gets on the sidewalk.,is seen sliding down a long street with the stilts.\n15057,lsmdc0001_American_Beauty-45853,19503,\"Someone sits up, eager to learn from the master. Someone\",\"Someone sits up, eager to learn from the master.\",Someone,gold,\"is quick to pick up her cue and kisses him, ready for another round.\",\"moves dreamily back in the bay of the dance room, as she enjoys his song.\",\"stands beside their mother, as they head over an empty dilapidated jetty in an adjoining tranquil gloomy space.\",is attacking someone in the trunk.\n15058,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17893,\"Someone backs his crane into a police car, then swings the arm straight through someone's cab. Someone\",\"Someone backs his crane into a police car, then swings the arm straight through someone's cab.\",Someone,gold,ducks at the last moment.,\"circles two other buses drive through the streets, which sale completely covered with old mirrors of guns.\",\"uses a whiskey hose, and turns a suv from above.\",watches the ring go in place.\n15059,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17885,Someone falls onto a passing truck. Someone,Someone falls onto a passing truck.,Someone,gold,\"swings down, sending him into the air.\",\"scrambles down, clutching a web to his head.\",sits at the controls.,slams someone's boot down.\n15060,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17880,In the crane cab someone jerks a lever as someone bursts in. He,In the crane cab someone jerks a lever as someone bursts in.,He,gold,shoots at someone but misses.,takes her seat and gets onto the bus.,swaggers off of his bike.,dashes through the doors to master's room.\n15061,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17881,\"As they fight the crane lifts the car, smashes it into a brick wall, then drags it up the wall. Someone\",\"As they fight the crane lifts the car, smashes it into a brick wall, then drags it up the wall.\",Someone,gold,helps someone into it.,punches someone then sits at the controls.,studies some type of photo against the digital mechanism.,climbs down onto the quarters of water and tries on the brakes.\n15062,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17920,Someone stands and holds a lighter's flame onto the three scrolls. Someone,Someone stands and holds a lighter's flame onto the three scrolls.,Someone,gold,puts money into his mouth and starts to wander through it.,steps into the station as someone races toward the door.,leads a hasty retreat after the departing camp.,freezes with a bottle in his hand.\n15063,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17888,\"Sneering, he sits at the controls. As someone swivels his crane, someone\",\"Sneering, he sits at the controls.\",\"As someone swivels his crane, someone\",gold,swings the arm of his crane into him.,glances over his shoulder and lifts his gaze to the building.,fires as he fires the ships.,smiles down at his observatory and faces someone.\n15064,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17912,\"Someone swings back, but someone stops the blow and kicks someone to the ground. Someone gets to his feet and charges, but someone\",\"Someone swings back, but someone stops the blow and kicks someone to the ground.\",\"Someone gets to his feet and charges, but someone\",gold,leans towards the captured woman only inches away.,manages to pick himself up.,throws a fishing net over him.,pretends to fall off the couch.\n15065,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17900,Overhead someone and someone continue their crane duel. Both men,Overhead someone and someone continue their crane duel.,Both men,gold,drop in after someone illuminate the metallic turn.,look at the historic gold roof region.,swing the arms of their cranes together.,\"steer the boats into a jet of people, then travel.\"\n15066,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17910,Someone parries the blow and whacks him across his rump. He,Someone parries the blow and whacks him across his rump.,He,gold,throws a grenade into someone's nose.,kicks the ring laboriously from his pocket.,stomps someone's foot and elbows him in the face.,\"glares, then glances at someone, then smiles.\"\n15067,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17905,Someone glances over his shoulder as someone's crane tilts and falls. Someone,Someone glances over his shoulder as someone's crane tilts and falls.,Someone,gold,\"vaults his fist in the vortex, then lightly cocks his head.\",drops his head as a crackle leaps onto someone's side.,spills out of the cab and onto a stack of crates.,wrenches his shield and flies near a gust of traffic.\n15068,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17914,He yanks someone into a crate of whiskey bottles. Someone,He yanks someone into a crate of whiskey bottles.,Someone,gold,giggles as someone is touching the scooter.,grabs a medicine packet from a bin and dials a number.,turns his back on someone and whips his blade through the air.,places the envelope in someone's mouth.\n15069,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17917,A bottle strikes someone in the back. Someone,A bottle strikes someone in the back.,Someone,gold,\"throws more bottles, one of which knocks the sword out of someone's hand.\",flips through the light.,turns to see two albums.,\"grins, then slams a remote into the sitting position.\"\n15070,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17901,\"Both men swing the arms of their cranes together. Separated by only a few feet, the two man\",Both men swing the arms of their cranes together.,\"Separated by only a few feet, the two man\",gold,backs from the window.,nonchalantly approach the lifeboat around four.,\", kneeling at the edge of the hill, get down on the galley bridge.\",sneer at each other.\n15071,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17882,The crane swings the car over the water. Someone,The crane swings the car over the water.,Someone,gold,flies above the head of the train as hundreds of passengers emerge the lift.,holds a handle over its pristine main windshield.,forces a heavy burst of blue that are looking at him.,pulls himself onto a railing.\n15072,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17896,The crates break apart and rain down around someone. Several tires,The crates break apart and rain down around someone.,Several tires,gold,jerk off in the air traffic and fly back into the jungle.,\"are lowered, and a motorcycle is knocking back as a spray takes out destroying the trunk.\",\"catapult him away, knocking someone over and cover him up.\",\"fall over someone, pinning his arms to his sides.\"\n15073,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17907,\"Silhouetted by bright lights, Sakharin strides down a section of broken crane toward him. Someone\",\"Silhouetted by bright lights, Sakharin strides down a section of broken crane toward him.\",Someone,gold,picks up a metal bar.,pulls him closer and kisses him.,enters the silver pickup shop.,\"smiles, then hurries over to his boat.\"\n15074,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17909,Someone pulls his sword out of his cane. Someone,Someone pulls his sword out of his cane.,Someone,gold,flips onto the dragon beam and starts running.,stares off the window to see that he is gone.,looks at him through the familiar battle top.,runs up to him and swings the metal bar.\n15075,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17904,It smashes into someone's cab. Someone,It smashes into someone's cab.,Someone,gold,struggles to avoid the engines to turn off.,sits on the bed with his thumb over his mouth and clenching his neck.,glances over his shoulder as someone's crane tilts and falls.,slams into the policeman's passenger seat.\n15076,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17898,\"As more of someone's thugs run up, Snowy pushes over a crate of cans and spills them across the dock. The thugs\",\"As more of someone's thugs run up, Snowy pushes over a crate of cans and spills them across the dock.\",The thugs,gold,load onto the watery boat.,\"stop next to the guards, who retreat inside.\",slip on the cans and fall in a pile.,get dried in a market.\n15077,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17890,Someone quickly pivots his crane and smashes him back. Someone and the policemen,Someone quickly pivots his crane and smashes him back.,Someone and the policemen,gold,duck as the cranes smash and twist above their heads.,make a coffee obliviously.,bounce off the wrecked truck.,scramble into the parlor of the goat.\n15078,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17884,\"Someone rushes into the control cab, grabs someone and drags him across the floor and tosses him over the railing. Someone\",\"Someone rushes into the control cab, grabs someone and drags him across the floor and tosses him over the railing.\",Someone,gold,\", the men, the guard and royal guard, then surround him.\",makes him handing her his phone.,falls onto a passing truck.,\"rolls away, beside someone, who holds a towel above his head.\"\n15079,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17903,Someone backs up his crane then swings the arm in a full circle. It,Someone backs up his crane then swings the arm in a full circle.,It,gold,\"retracts over dead, ignoring the approaching germans.\",bears a debris - from truck mate.,smashes into someone's cab.,enters the bank of mordor.\n15080,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17895,Someone swings at load of crates into someone's crane. The crates,Someone swings at load of crates into someone's crane.,The crates,gold,drop off the hot - iron gate.,point high through the air as a police car heads past.,break apart and rain down around someone.,push away through the long metal boats with hummers on spattered stripes.\n15081,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17913,\"Someone gets to his feet and charges, but someone throws a fishing net over him. He\",\"Someone gets to his feet and charges, but someone throws a fishing net over him.\",He,gold,\"ducks up the cliff top, then swings him to the ground.\",yanks someone into a crate of whiskey bottles.,\"rocks again, onto the concrete ground.\",wriggles out of the mast someone helps someone up.\n15082,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17892,Someone uses his crane to sweep dusty someone into someone's cab. Someone,Someone uses his crane to sweep dusty someone into someone's cab.,Someone,gold,then glances at someone for another wheel before turning off the radio.,\"backs his crane into a police car, then swings the arm straight through someone's cab.\",drives down the tower and people cut off with them.,\"the garage, someone dumps a sack.\"\n15083,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17911,\"He stomps someone's foot and elbows him in the face. Someone swings back, but someone\",He stomps someone's foot and elbows him in the face.,\"Someone swings back, but someone\",gold,manages even looking for his father.,catches him swing and walks back to his side.,stops the blow and kicks someone to the ground.,keeps pulling the belt off his head.\n15084,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17897,\"Several tires fall over someone, pinning his arms to his sides. As more of someone's thugs run up, Snowy\",\"Several tires fall over someone, pinning his arms to his sides.\",\"As more of someone's thugs run up, Snowy\",gold,pushes over a crate of cans and spills them across the dock.,bites to one side of it.,runs through the gate.,chucks of ranks of coal biker mp joins him.\n15085,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17883,Someone pulls himself onto a railing. Someone,Someone pulls himself onto a railing.,Someone,gold,\"sits down in the chaise lounge, her bag slung around her waist.\",and someone peer into the tunnel.,\"rushes into the control cab, grabs someone and drags him across the floor and tosses him over the railing.\",chases off as others run up the shuttered - ceilinged street to the factory.\n15086,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17889,\"As someone swivels his crane, someone swings the arm of his crane into him. Someone\",\"As someone swivels his crane, someone swings the arm of his crane into him.\",Someone,gold,\"reaches up and touches someone, who's nude on his feet.\",quickly pivots his crane and smashes him back.,snaps his fingers over his head as he continues down.,is carried down the stairs.\n15087,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17919,He drives someone backward over a small ledge. Someone,He drives someone backward over a small ledge.,Someone,gold,bends to grab his tire's hood.,wears his free hand and spies someone through a hole in the wall.,mouths the passenger shots.,stands and holds a lighter's flame onto the three scrolls.\n15088,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17894,Someone ducks at the last moment. Someone,Someone ducks at the last moment.,Someone,gold,raises his gun and mimes aim.,swings at load of crates into someone's crane.,passes through the shelves lined with mordor.,shoos the man in as we follow him away.\n15089,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17918,\"Someone throws more bottles, one of which knocks the sword out of someone's hand. He\",\"Someone throws more bottles, one of which knocks the sword out of someone's hand.\",He,gold,lies down face down on the table.,drives someone backward over a small ledge.,takes it from someone's backpack.,walks up onto the wooden porch.\n15090,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17887,\"Someone leaps from the car, and now with his top down into the control cab of another crane. Sneering, he\",\"Someone leaps from the car, and now with his top down into the control cab of another crane.\",\"Sneering, he\",gold,hears a magic horn and gets in the ambulance.,\"crouches upside down in front of him, gripping a large bamboo stick in its chest.\",sits at the controls.,somersaults onto the treacherous branch.\n15091,lsmdc3066_THE_ADVENTURES_OF_TINTIN-32002,17886,Someone sits at the controls. Someone,Someone sits at the controls.,Someone,gold,resolutely enters her skirt.,\"leaps from the car, and now with his top down into the control cab of another crane.\",\"shifts her gaze to the beat, then gets on with seeing an older man pushing her away.\",\"watches with a faint smile, then blinks thoughtfully, then wipes his lips.\"\n15092,anetv_TnOdqLQPQA4,16059,A woman is standing in a camp site. She,A woman is standing in a camp site.,She,gold,is wearing a computer gear.,walks onto a mat an the ceiling.,lights matches and throws them into a pile of wood.,is stacking with snowy on the floor.\n15093,anetv_Vq2mQvMp_c4,10550,Celebratory cheers are heard as the group is enjoying riding across the stream. Then we,Celebratory cheers are heard as the group is enjoying riding across the stream.,Then we,gold,\"see a couple of riders, one of them standing up in his saddle.\",see the lady fall almost serenely.,see a man who duggar arm prepare and rub cream on his legs.,hear the hard water.\n15094,anetv_Vq2mQvMp_c4,10549,\"We soon see the riders are part of a group, and we follow the group across a parking lot and into a stream. Celebratory cheers\",\"We soon see the riders are part of a group, and we follow the group across a parking lot and into a stream.\",Celebratory cheers,gold,are shown on their faces.,are heard as the group is enjoying riding across the stream.,is shown in a red sky as people in blue jump outfits cheering.,show the same clip as another truck comes to a halt with some handles.\n15095,anetv_Vq2mQvMp_c4,10548,\"Someone is riding a horse across a grassy field and comes upon other people on horseback. We soon see the riders are part of a group, and we\",Someone is riding a horse across a grassy field and comes upon other people on horseback.,\"We soon see the riders are part of a group, and we\",gold,follow the group across a parking lot and into a stream.,see them hopping over the trees as he get on a horse.,see an horses tail working over their horses.,see images of horses with horses.\n15096,lsmdc0029_The_Graduate-64386,4204,Someone steps forward and grasps someone's hand. Someone,Someone steps forward and grasps someone's hand.,Someone,gold,turns back and looks at him.,steps back and puts an arm around someone's shoulder.,closes own eyes and nods softly.,\"closes his eyes briefly, then looks down.\"\n15097,lsmdc0029_The_Graduate-64386,4203,He reaches out and takes someone's hands. Someone,He reaches out and takes someone's hands.,Someone,gold,directs the submarine to give chase.,hurries out of the jungle.,frowns and looks up over someone's shoulder at someone.,watches them for a long moment.\n15098,lsmdc0029_The_Graduate-64386,4202,He takes the pipe out of his mouth and puts it in his pocket. He,He takes the pipe out of his mouth and puts it in his pocket.,He,gold,reaches out and takes someone's hands.,takes the vent out of his curled glove and puts the towel down to his knee.,toasts the other and rocking himself with lights.,grabs the handle and smiling in fear.\n15099,lsmdc0029_The_Graduate-64386,4205,Someone steps back and puts an arm around someone's shoulder. The three of them,Someone steps back and puts an arm around someone's shoulder.,The three of them,gold,\"swoop down toward someone, his twisted features cast.\",are still in position.,look at each other for a moment.,catches someone's eye.\n15100,lsmdc0029_The_Graduate-64386,4201,Someone strides up to them. He,Someone strides up to them.,He,gold,sits down in a chair and bears his name.,takes the pipe out of his mouth and puts it in his pocket.,\"circles someone, who's pulled out of him.\",gets out of his car and drives off.\n15101,anetv_Cx3QGeQu7xM,1546,\"After, the man holds up the frisbee and the dogs stands in two legs. After, the dog\",\"After, the man holds up the frisbee and the dogs stands in two legs.\",\"After, the dog\",gold,pass between the legs of the person.,dances on a dance floor and dance.,lands in a box next to the dog on the leash.,spins and toss another person in the air.\n15102,anetv_Cx3QGeQu7xM,1263,A guy is tossing a freebie outsides in a field. A dog,A guy is tossing a freebie outsides in a field.,A dog,gold,cut grass over a pole.,is talking to a big dog.,is fetching the freebie.,launches in a white cape around it.\n15103,anetv_Cx3QGeQu7xM,1545,\"Then, the man throws the frisbee and the dog runs to get it. After, the man holds up the frisbee and the dogs\",\"Then, the man throws the frisbee and the dog runs to get it.\",\"After, the man holds up the frisbee and the dogs\",gold,stands in two legs.,throws the disc across the floor.,is then shown in and through a black t - shirt.,catches it on the small dog.\n15104,anetv_Cx3QGeQu7xM,1547,\"After, the dog pass between the legs of the person. Next, the person holds a frisbee high and the dog\",\"After, the dog pass between the legs of the person.\",\"Next, the person holds a frisbee high and the dog\",gold,sprints and takes it off.,jumps to get the frisbee.,runs to fetch it back.,jumps on top of the dog.\n15105,anetv_Cx3QGeQu7xM,1544,\"A person throws a frisbee and the dog runs to get it. The man lays down and put his feet up, and the dog\",A person throws a frisbee and the dog runs to get it.,\"The man lays down and put his feet up, and the dog\",gold,runs for powder in the distance.,stops to continue talking.,jumps on the feet.,chases him several times.\n15106,lsmdc0051_Men_in_black-70914,16541,\"Someone twists in his chair, to get a better look. All he sees\",\"Someone twists in his chair, to get a better look.\",All he sees,gold,is frozen in place.,\"is someone, facing whoever it is in the hallway.\",is revealing someone's expression.,are watched by someone and someone.\n15107,lsmdc0051_Men_in_black-70914,16543,\"Someone says something else and someone steps forward, now also out of someone's line of vision. Someone\",\"Someone says something else and someone steps forward, now also out of someone's line of vision.\",Someone,gold,stands in the mercedes still staring at him as he looks to the passenger compartment.,\"stretches even further in his seat, when there is a blinding flash from the corridor.\",\"drops the weight on the floor, waiting for someone to come back.\",'s jumpsuit falls limp and rubs it onto someone's arm.\n15108,lsmdc0051_Men_in_black-70914,16540,\"She looks over her shoulder once, then whispers to him. Someone\",\"She looks over her shoulder once, then whispers to him.\",Someone,gold,\"twists in his chair, to get a better look.\",\"is familiar, pulling on the conversation, then goes back along the traffic chute and walks down a spiral staircase.\",shows a windblown beam on his actual shoulder.,leads the way past someone and someone toward a set.\n15109,lsmdc0051_Men_in_black-70914,16544,\"Someone stretches even further in his seat, when there is a blinding flash from the corridor. Really curious now, he\",\"Someone stretches even further in his seat, when there is a blinding flash from the corridor.\",\"Really curious now, he\",gold,looks around the seemingly endless expanse of cabin.,does not cross his eyes to his own except for his landing lamp.,\"stands up, trying to notice he is still staring at him.\",starts to get up - - - - when someone steps into the room and closes the door behind him.\n15110,lsmdc0051_Men_in_black-70914,16542,\"All he sees is someone, facing whoever it is in the hallway. Someone says something else and someone\",\"All he sees is someone, facing whoever it is in the hallway.\",Someone says something else and someone,gold,\"steps forward, now also out of someone's line of vision.\",\", too, is n't so obviously.\",remains at the table.,is out of frame.\n15111,anetv_rgJ00nNS_r0,9339,The group of men are accompanied by onlookers as they continue to maneuver the croquet ball with their mallets. One croquet goal,The group of men are accompanied by onlookers as they continue to maneuver the croquet ball with their mallets.,One croquet goal,gold,is the other man in a puck medal.,is in slow motion and takes some more shots of the crowd cheering.,is accomplished on the grass by one player in brown shoes and a blue pants in the final clip.,is shown in slow motion as the white team starts to fight for continues.\n15112,anetv_rgJ00nNS_r0,9338,The men begin playing croquet with one man making a sexual reference with the croquet stick as people walk by on the grass. The group of men,The men begin playing croquet with one man making a sexual reference with the croquet stick as people walk by on the grass.,The group of men,gold,are accompanied by onlookers as they continue to maneuver the croquet ball with their mallets.,are playing a game of tug of war and the people around them watch while the races look around for the camera.,\"take a run at each other and rhythm up again, pressing their hands into their respective.\",\"play lacrosse, followed by a man pulling a ball with a stick and kicking it in orange cones.\"\n15113,anetv_rgJ00nNS_r0,9337,A group of men play croquet on a large grass covered field at an outdoor social event. The men,A group of men play croquet on a large grass covered field at an outdoor social event.,The men,gold,move back and round at what they are doing and waiting.,hold back signs before they continue to hug.,begin playing croquet with one man making a sexual reference with the croquet stick as people walk by on the grass.,prepare to engage in a race.\n15114,anetv_An_CpsJkJMM,5191,\"Then, the toddler splash water on his face and smile. The toddled\",\"Then, the toddler splash water on his face and smile.\",The toddled,gold,return to the beach and take the kids in a pool.,licks their neck and helps him rinse the water.,gets up and continues to face the length of the bar and takes a step back.,\"puts water on his face, and then moves his head.\"\n15115,anetv_An_CpsJkJMM,5190,\"A toddler wash his hands in the sink. Then, the toddler\",A toddler wash his hands in the sink.,\"Then, the toddler\",gold,removes it from a bucket of water first woman.,splash water on his face and smile.,messes with water before standing next to the sink.,kicks the stocking then bend over over the floor.\n15116,anetv_bDf_xpUpdmU,438,A falls off a skateboard in an awkward way. Then we,A falls off a skateboard in an awkward way.,Then we,gold,see raindrops crossing paths of a beach.,see a person playing goals.,see several other boys as they trip and fall.,see the man in his yellow shirt clapping.\n15117,lsmdc3077_THE_VOW-35983,6650,\"As they head up to the street, she takes his arm in a friendly gesture. Now someone\",\"As they head up to the street, she takes his arm in a friendly gesture.\",Now someone,gold,rides his bike past a military complex and into a tiny village store.,jerks his arm back over his stubbly shoulder and share a smile.,showers out the passenger window of the cop.,sits on a bench on the law school's quad and stares into the distance.\n15118,anetv_9Cs3CYCMH2w,11468,The boy starts jump roping by himself. The girl,The boy starts jump roping by himself.,The girl,gold,extends his arms before the boy to jump.,does a flip in the air.,flips the other over and turns.,lifts to his feet on the floor.\n15119,anetv_9Cs3CYCMH2w,11467,The girl does a hand stand. The boy,The girl does a hand stand.,The boy,gold,swings two kicks repeatedly.,starts jump roping by himself.,walks away from his older brother.,puts his hands on the girl's face.\n15120,anetv_9Cs3CYCMH2w,11465,Two people are jump roping outside on a patio. The boy leaves and the girls,Two people are jump roping outside on a patio.,The boy leaves and the girls,gold,grab the other gear and put them on the shore.,do great on the little sand together.,starts jump roping by herself.,do the same thing around each other in the corner.\n15121,anetv_9Cs3CYCMH2w,11469,The girl does a flip in the air. The boy,The girl does a flip in the air.,The boy,gold,does a flip in the air.,breaks and jumps into the water.,pulls on the rope.,spins back and forth on the fourth still while holding his arms in the air.\n15122,lsmdc3022_DINNER_FOR_SCHMUCKS-10597,996,\"Someone, someone and someone are cracking up. The vulture man and the beard man\",\"Someone, someone and someone are cracking up.\",The vulture man and the beard man,gold,are n't a muslim.,approach from the window.,trims his own neck.,shake their heads sadly.\n15123,lsmdc3022_DINNER_FOR_SCHMUCKS-10597,997,\"The vulture man and the beard man shake their heads sadly. Annoyed, someone\",The vulture man and the beard man shake their heads sadly.,\"Annoyed, someone\",gold,plops up his letter and greets it.,shuffles over to his shoes.,sprinkles three waitress cards on the table.,gets up from the table.\n15124,anetv_2DTwoKZsLMo,12116,He wears the shoes over black socks and ties the shoe laces securely. He then,He wears the shoes over black socks and ties the shoe laces securely.,He then,gold,removes the shoes with the right paw pointed to the left.,stands up after he's done wearing the brown leather shoes.,grabs his shoes and begins to put into the girl for shoes.,\"removes additional volumes to show off his shoe, and sets it aside.\"\n15125,anetv_2DTwoKZsLMo,12112,A man wearing black socks is shown putting his black leather shoes on and tying his laces. There,A man wearing black socks is shown putting his black leather shoes on and tying his laces.,There,gold,'s another person wearing brown leather shoes on black socks.,\", the shoes tip a adhesive cover on his coat and starts to shave the times from the shoes.\",in black shoes are shirtless.,the young man is talking to the camera while the man is wearing his bottoms.\n15126,anetv_2DTwoKZsLMo,12113,There's another person wearing brown leather shoes on black socks. He,There's another person wearing brown leather shoes on black socks.,He,gold,ties the laces tightly to secure them.,\"is doing orange exercises in the shoes he is wearing finally, but the man has removed them from his shoes and continues walking.\",wakes.,are in a gym making tiled choreography.\n15127,anetv_2DTwoKZsLMo,12115,Followed by several scenes showing the person wearing brown leather shoes with laces. He,Followed by several scenes showing the person wearing brown leather shoes with laces.,He,gold,wears the shoes over black socks and ties the shoe laces securely.,smiles hard to other people.,jumps over the city to the girl performing a choreography just getting changed.,repeatedly dances with one man sitting the big bronze medal.\n15128,anetv_2DTwoKZsLMo,12114,He ties the laces tightly to secure them. Then another scene,He ties the laces tightly to secure them.,Then another scene,gold,shows a person wearing leather slip on shoes over black socks.,happens as the previous student amused.,is shown with bmx stifles posters and shown on screen by clips.,goes up to a man throws down another pair of stilts.\n15129,anetv_Jo2-IPbuapw,5476,The person then paints a large tree while still moving around quickly on the painting. The person,The person then paints a large tree while still moving around quickly on the painting.,The person,gold,finishes assembling the ingredients and ends by painting it up on the canvas.,continues pushing the grass along the tree and eventually stopping to look around.,finishes the painting and signs their name and shows a picture of themselves.,continues to the swings again and finishes by raking leaves and smiling into the camera.\n15130,anetv_Jo2-IPbuapw,5475,A person's hands are seen places in the middle of a paper and begins drawing along the picture. The person then,A person's hands are seen places in the middle of a paper and begins drawing along the picture.,The person then,gold,paints all along the clean bush.,moves the object across all circles and shows it along the entire area area.,paints a large tree while still moving around quickly on the painting.,begins painting nails nails through the person's hands and creating a tattoo.\n15131,lsmdc3075_THE_SITTER-34917,13017,He points at someone as he goes. Facing it a boy,He points at someone as he goes.,Facing it a boy,gold,\"blinks to himself, then runs away.\",blows out the zippo.,plays with a sparkler.,leans closer and scans the film.\n15132,anetv_P14X14uarj0,6124,A person is seen passing a basketball all around a court to others and ending by shooting a basket. The group,A person is seen passing a basketball all around a court to others and ending by shooting a basket.,The group,gold,continue to arm wrestle as they continue to laugh as the men watch the game play.,continues painting the fence while standing around and speaking to one another.,continues to pass the ball around to one another performing drills while the coach instructs.,continue curling around with balls as well as being led in the same competition.\n15133,lsmdc3018_CINDERELLA_MAN-7975,19126,\"Fans rise from their seats. Remembering his children's bed lying empty, someone\",Fans rise from their seats.,\"Remembering his children's bed lying empty, someone\",gold,walks down to someone's portrait in his room.,eyes someone in the shin from under him.,looks up at his opponent's swollen face.,\"stares back at the kids brimming with the shopping, larger two shorter children.\"\n15134,lsmdc3018_CINDERELLA_MAN-7975,19125,Someone looks up at someone who appears to sink away. Fans,Someone looks up at someone who appears to sink away.,Fans,gold,leap to someone's feet.,can not contain his laughter.,rise from their seats.,comment brittle its coffin feebly.\n15135,lsmdc3018_CINDERELLA_MAN-7975,19124,Quick flashes show someone frowning and the past due notice on the milk bottle. Someone,Quick flashes show someone frowning and the past due notice on the milk bottle.,Someone,gold,\"notices her radio, sets it down, shuts the open and makes a marker.\",\"rushes in for a moment, then it opens for another.\",looks up at someone who appears to sink away.,beams at himself and dances in front of the display.\n15136,anetv_beASFdYJFUU,10743,The women are again shown playing hockey in a competition with one another. A close up,The women are again shown playing hockey in a competition with one another.,A close up,gold,is shown of the puck.,is seen of a ping pong game.,is shown of the two skiers.,is shown of the truck and the tops.\n15137,anetv_beASFdYJFUU,10742,They are shown talking to the camera about the game. The women,They are shown talking to the camera about the game.,The women,gold,in bikini is practicing break dancing.,continue to knit and give them a soft look.,put their hands on their hands and play.,are again shown playing hockey in a competition with one another.\n15138,anetv_beASFdYJFUU,10740,Women are playing indoor hockey and competing. They,Women are playing indoor hockey and competing.,They,gold,walk away back where the paintball coach is pointing and talking to the camera.,are walking in past a ball in the pan.,are running down a track in the sand and game of pool.,begin fighting over the inflatable pucks.\n15139,anetv_beASFdYJFUU,10741,They begin fighting over the inflatable pucks. They,They begin fighting over the inflatable pucks.,They,gold,turn slowly to the sand.,stand in place on the side of a roof.,roll the ball and pull them down at the top.,are shown talking to the camera about the game.\n15140,anetv_LOhacn4jdT4,18048,The man gets on a stage and powders his hands. The man,The man gets on a stage and powders his hands.,The man,gold,walks before a barbell with weights.,claps excitedly while talking about the shoes.,dismounts and shows a microphone before the young boy prepares to shoot once more.,puts his hand down and claps his hands.\n15141,anetv_LOhacn4jdT4,18049,The man drops the weights. The man,The man drops the weights.,The man,gold,walks off stage as attendants move to the weight on stage.,drops the barbell on the ground.,looks from left to right.,presses his weight up.\n15142,anetv_LOhacn4jdT4,18050,The man walks off stage as attendants move to the weight on stage. A replay of the lift,The man walks off stage as attendants move to the weight on stage.,A replay of the lift,gold,hits the second man who tries the audience.,is shown from a different angle.,is shown as the man talks to the camera and flips the businessman on.,\"is shown, followed by a very brittle weight.\"\n15143,anetv_otq24Pdm3sc,15956,A young child is seen close up that leads into a large group of people in a sand pit. The people,A young child is seen close up that leads into a large group of people in a sand pit.,The people,gold,wave and spin around as the camera pans around the men as well as slow motion divers.,continue flickering the ingredients in various shots and continuously grooming their hair and smiling to one another.,are seen riding around on the bumper with one another while other sumo stand on the side of the side.,stand around and being to grab a rope while others watch on the side.\n15144,anetv_otq24Pdm3sc,11140,Several people are gathered on a court on a beach. Players,Several people are gathered on a court on a beach.,Players,gold,load the sand onto their back.,are gathered inside the ring together.,are watching the game and walk for one another.,are playing soccer for a competition.\n15145,anetv_otq24Pdm3sc,15957,The people stand around and being to grab a rope while others watch on the side. The women then,The people stand around and being to grab a rope while others watch on the side.,The women then,gold,begin to cheer and ride over in the sand castle.,get into a tug of war with another group and end by falling down.,jumps off the rope and both take themselves down and end as well as woman speaking.,jumps into a large sand pit and flips and ends by several more people around the sides.\n15146,anetv_25Wxe9TQzY8,15548,The person begins riding along the water on the board. The person,The person begins riding along the water on the board.,The person,gold,continues riding along the water.,continues walking around while the camera follows.,lifts down the sail as the camera pans around the water.,rides very slowly along the water and continues to explore his body in the water.\n15147,anetv_25Wxe9TQzY8,15547,A person is seen standing on a board with others in the water. The person,A person is seen standing on a board with others in the water.,The person,gold,begins riding along the water on the board.,falls on the beach to clean them over moves.,brings the brush down and places sand into a pit while others watch.,pick up a stick and begins playing with the camera.\n15148,anetv_25Wxe9TQzY8,18418,The man is parasailing in the water. The surfer,The man is parasailing in the water.,The surfer,gold,wave again with a wave.,surfs the waves in the sand.,jumped on the water.,gets in the raft and dives into the water.\n15149,anetv_CYPfbnL0bCI,1616,The hands use a measuring spoon to pour something into the foil paper bowl. The hands,The hands use a measuring spoon to pour something into the foil paper bowl.,The hands,gold,are then at table exhibits then under a finish result.,use a match to light the contents of the foil paper on fire.,hold the gift and show them to a pot of salt.,each turns the flute on and while talking to the camera.\n15150,anetv_CYPfbnL0bCI,1614,The matches and gasoline are shown sitting on some sort of metal stand. A pair of hands,The matches and gasoline are shown sitting on some sort of metal stand.,A pair of hands,gold,\"inch up, then remove garlic, garlic, vinegar, sugar and salt and a pan.\",are shown as well as putting an egg on a plate and putting them on.,shape a piece of foil paper into a bowl shape on the metal stand with the matches but not the gasoline visible.,are seen under the bar and some liquid all shirts are shown.\n15151,anetv_CYPfbnL0bCI,9698,A matches box and a fuel are on dry leaves. then woods,A matches box and a fuel are on dry leaves.,then woods,gold,is shown again violent in a mountain.,are on a pile.,is shown with the sky blower again a wind blowing like an animal.,is totally formed in the outside of a man commercial.\n15152,anetv_CYPfbnL0bCI,1613,A pile of logs is shown. The matches and gasoline,A pile of logs is shown.,The matches and gasoline,gold,is added to the paper.,are shown sitting on some sort of metal stand.,are leisurely mixing sand.,are added to the product.\n15153,anetv_CYPfbnL0bCI,1615,A pair of hands shape a piece of foil paper into a bowl shape on the metal stand with the matches but not the gasoline visible. The hands,A pair of hands shape a piece of foil paper into a bowl shape on the metal stand with the matches but not the gasoline visible.,The hands,gold,expand and put the stirring volume on a grill as they attach.,fold stickers on it and began to flatten the fabric.,use a measuring spoon to pour something into the foil paper bowl.,start to take apart from all the metal tiles.\n15154,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13234,He joins someone in the hall. Someone,He joins someone in the hall.,Someone,gold,stacks the photographs while smoking.,sits at his desk.,unlocks the door then turns to someone.,leans over sternly clergyman and someone grabs the sphere.\n15155,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13233,\"Someone's fist emerges from the pile, clutching the keys. He\",\"Someone's fist emerges from the pile, clutching the keys.\",He,gold,turns to his daughter.,turns the wheel and gets inside.,\"wipes his palm, pulls off the blue paper and shoves it on.\",joins someone in the hall.\n15156,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13253,\"Someone aims a pistol, but Snowy deflects his arm. Someone\",\"Someone aims a pistol, but Snowy deflects his arm.\",Someone,gold,climbs out with a grenade in his chin and chest.,punches someone and grabs the gun.,raises his fist as the wolf raises.,blocks his face as the men run past the statue.\n15157,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13278,Someone rows the lifeboat while someone sits with his hands on his knees. Someone,Someone rows the lifeboat while someone sits with his hands on his knees.,Someone,gold,rises another step back.,careens back to life.,takes out the brochure.,emerges from his bedroom window.\n15158,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13266,\"Someone shoots the handle of a searchlight beside someone, turning it on and blinding his pursuers. Someone\",\"Someone shoots the handle of a searchlight beside someone, turning it on and blinding his pursuers.\",Someone,gold,leaps on to the lifeboat and shoots through the last rope.,watches the man following directions with both chopsticks.,\"steals a revolver from a bag, hitting it on the chest.\",waves the missile at his brother.\n15159,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13236,He opens the door to a store room filled with liquor bottles. Someone,He opens the door to a store room filled with liquor bottles.,Someone,gold,sits at his wooden vanity and notices a growing array of books on his bed.,stuffs several bottles into his clothing.,\"stands unresponsive to the blonde, handsome - faced man.\",places a glass on the kitchen counter and enters the bathroom.\n15160,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13271,Someone grabs a searchlight and focuses it on to a drifting lifeboat. The ship,Someone grabs a searchlight and focuses it on to a drifting lifeboat.,The ship,gold,speeds toward the bobbing wooden lifeboat.,cranes its beak as the watch.,sweeps in the chamber and moves up its shaft.,'s propellers turn and look.\n15161,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13276,Someone grabs someone and shoves him against a railing. The wind,Someone grabs someone and shoves him against a railing.,The wind,gold,blows him down the snow.,gets someone's coat and shatters quickly towards a fallen tree.,blows a piece of paper across the deck.,ship prepares to stop.\n15162,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13243,\"Someone shakes his injured fist, then follows the captain. Snowy stands on the thug's chest and growls, then\",\"Someone shakes his injured fist, then follows the captain.\",\"Snowy stands on the thug's chest and growls, then\",gold,pulls his ax down and turns it again.,gyrates precariously.,trots after the others.,blasts him with a hammer wall.\n15163,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13242,Someone swings down his empty fist knocking the thug to the deck. Someone,Someone swings down his empty fist knocking the thug to the deck.,Someone,gold,breaks down the snitch.,\"shakes his injured fist, then follows the captain.\",'s head drops to the side of the van.,grabs the soldier's forehead.\n15164,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13239,\"A crane lowers a pontoon plane wrapped in canvas onto the track. Stepping out of a door, someone\",A crane lowers a pontoon plane wrapped in canvas onto the track.,\"Stepping out of a door, someone\",gold,watches the file helicopter across a slate bay before a transport plane.,takes a bottle from someone and sneaks up behind a thug with a gun.,crawls across the face and crawls towards trees.,slams a case behind someone sonia eyes.\n15165,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13252,Someone releases a rope and the lifeboat falls. Someone,Someone releases a rope and the lifeboat falls.,Someone,gold,grabs the air and bounces back with all his might.,moves back as a jet flies overhead.,moves to a neighboring lifeboat and checks under its tarp as he readies it.,pass a large flowing ring.\n15166,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13237,Someone stuffs several bottles into his clothing. On the ship's deck crew members,Someone stuffs several bottles into his clothing.,On the ship's deck crew members,gold,weld together a long track.,watch the facility closing.,are captured with their surfboards as they speed across the paddy field.,impatiently of his own.\n15167,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13272,Captain someone hugs Snowy to his chest as the ship's metal keel slices through the water like a knife. It,Captain someone hugs Snowy to his chest as the ship's metal keel slices through the water like a knife.,It,gold,\"lashes the chamber of gently winds, clinging to the bomb.\",strikes the lifeboat and shatters it.,\"heads to the pedestal, face, welding an attacker's face.\",\"moves towards the reigns, and again, grabs the handle.\"\n15168,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13228,\"Someone crawls along an empty bunk with Snowy, then reaches out toward a set of keys dangling from Jaggerman's hand. Someone\",\"Someone crawls along an empty bunk with Snowy, then reaches out toward a set of keys dangling from Jaggerman's hand.\",Someone,gold,holds the handcuff down behind his head sending him to a piece of metal.,balances on his knees as he extends his body.,grabs him and pulls him to a tree trunk.,hikes across a dark street.\n15169,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13257,Someone shoves another lifeboat over the side of the boat as Snowy jumps in. Someone,Someone shoves another lifeboat over the side of the boat as Snowy jumps in.,Someone,gold,skids to a stop beside an armed thug who spins and faces him.,\"reaches for her gun, but panicking.\",releases her and keeps going.,someone reaches the main door and passes someone who barrels back the side of the pond as another boat moves at the shore.\n15170,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13229,Someone balances on his knees as he extends his body. He,Someone balances on his knees as he extends his body.,He,gold,lifts it over his head and sniffs it.,slips but catches himself.,throws the guitar and gets out.,adjusts his tie as he undoes someone's ankle.\n15171,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13260,Someone pushes Snowy in the lifeboat over the side of the ship. He,Someone pushes Snowy in the lifeboat over the side of the ship.,He,gold,\"takes someone's jacket to her shoulders, leads them questioningly down a hill of rubble.\",\"steps to a run, and finds richard parker hovering to his knees.\",slips and falls into the lifeboat causing a rope to snap.,tilts his head in someone.\n15172,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13230,He slips but catches himself. Someone,He slips but catches himself.,Someone,gold,\"and his kids climb the stairs to the gym, and now she pulls a shirt off her head.\",pulls on his hands.,ducks out into the hall.,\"releases someone, lowering himself over the counter.\"\n15173,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13235,Someone unlocks the door then turns to someone. He,Someone unlocks the door then turns to someone.,He,gold,hands a handful of dropped handguns and he's locked.,kneads his heels and rolls down the search blinds.,opens the door to a store room filled with liquor bottles.,heads for the door.\n15174,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13263,\"Meanwhile avoiding the gunfire someone drops to a lower level, then kicks a thug down a staircase. Someone\",\"Meanwhile avoiding the gunfire someone drops to a lower level, then kicks a thug down a staircase.\",Someone,gold,\"lifts him down again, then halts.\",\"hops to her feet and pulls away, lowering her butt on her bed.\",helps him draw hold of a rocket launcher.,fires his pistol behind himself as he rounds a corner.\n15175,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13258,Someone skids to a stop beside an armed thug who spins and faces him. Someone,Someone skids to a stop beside an armed thug who spins and faces him.,Someone,gold,stabs a missile and knocks over a zombie's face.,puts his machine gun on the back of his head.,glances in sharply and runs backward out of view.,\"dodges a punch, kicks out his legs, then sprints away.\"\n15176,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13261,He slips and falls into the lifeboat causing a rope to snap. Someone,He slips and falls into the lifeboat causing a rope to snap.,Someone,gold,sees something from a hanger and ties it up.,plunges a small hole in the air and staggers to his feet.,hangs on with one hand and grips snowy with the other.,\"straightens the pool harder, but manages a faint smile.\"\n15177,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13270,They lie in the bottom of the lifeboat as searchlights sweep over the water. Someone,They lie in the bottom of the lifeboat as searchlights sweep over the water.,Someone,gold,moves the wall of the tunnel leading to a cavern.,grabs a searchlight and focuses it on to a drifting lifeboat.,looks at a small group.,rises airport high in the aircraft.\n15178,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13262,\"Someone hangs on with one hand and grips Snowy with the other. Meanwhile avoiding the gunfire someone drops to a lower level, then\",Someone hangs on with one hand and grips Snowy with the other.,\"Meanwhile avoiding the gunfire someone drops to a lower level, then\",gold,kicks a thug down a staircase.,follows him down a corridor into a dark - haired fair chic cavernous lounge.,closes and reaches another.,lands on top of the bludger.\n15179,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13232,\"A sleeping man rolls on top of someone, but he shoves him off. Someone's fist\",\"A sleeping man rolls on top of someone, but he shoves him off.\",Someone's fist,gold,meets his reflection on the side and the reference of the newspaper gives a slight wince.,cheap up it.,slams her over the table.,\"emerges from the pile, clutching the keys.\"\n15180,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13255,Someone bursts out of the bridge with someone in pursuit. Someone,Someone bursts out of the bridge with someone in pursuit.,Someone,gold,kicks the pipes into a lizard tank.,leaps over a railing then ducks between crates as a thug opens fire with a machine gun.,passes down the radio and disappears down the river.,kicks off the tool then skids to a halt.\n15181,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13249,He slips the brochure into a pocket then studies a map tacked to a wall. Someone,He slips the brochure into a pocket then studies a map tacked to a wall.,Someone,gold,\"reaches up, and finds a white page.\",spots someone's sword running toward someone's temple and gasps.,notices the wounded clip her foot with his feet.,\"sits at the radio and switches it on, then puts on a pair of headphones.\"\n15182,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13269,\"As the helmsman spins the ship's wheel, someone runs onto the deck and shoots a flare into the night sky. They\",\"As the helmsman spins the ship's wheel, someone runs onto the deck and shoots a flare into the night sky.\",They,gold,ride in the scour village.,lie in the bottom of the lifeboat as searchlights sweep over the water.,\"climb into the plane, soaring over inspection debris.\",go off and falls amongst the vehicles.\n15183,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13268,\"Someone strides to a deck railing and glares down at someone and someone as they row away. As the helmsman spins the ship's wheel, someone\",Someone strides to a deck railing and glares down at someone and someone as they row away.,\"As the helmsman spins the ship's wheel, someone\",gold,\"emerges away from someone, who stands.\",runs onto the deck and shoots a flare into the night sky.,taps one of the models of the ship's back creating short sparks.,and someone close over them.\n15184,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13273,It strikes the lifeboat and shatters it. Liquor bottles,It strikes the lifeboat and shatters it.,Liquor bottles,gold,hang from a funnel.,are spilling out in them and spins them inside.,\"fall into the dish rack by the wardrobe, which someone weeping out.\",float up and bob amongst the someone.\n15185,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13247,\"Snowy leaps up onto a map table and snarls at a rat nibbling on a sandwich. He picks up the sandwich in his jaws, but the rat\",Snowy leaps up onto a map table and snarls at a rat nibbling on a sandwich.,\"He picks up the sandwich in his jaws, but the rat\",gold,tries to get him away.,has reluctantly fold off of the familiar cucumber.,tugs at the other end.,traps his hand between his three kids.\n15186,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13251,\"Meanwhile out on the deck, someone holds the lifeboat steady. A crewman with a bottle\",\"Meanwhile out on the deck, someone holds the lifeboat steady.\",A crewman with a bottle,gold,soldiers inside.,puts her face down to the ice.,emerges from under the lifeboat's tarp.,leads each of the waxes.\n15187,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13250,\"Someone sits at the radio and switches it on, then puts on a pair of headphones. Meanwhile out on the deck, someone\",\"Someone sits at the radio and switches it on, then puts on a pair of headphones.\",\"Meanwhile out on the deck, someone\",gold,holds the lifeboat steady.,sits hunched at his desk in the dim room.,stands staring awkwardly under the awning.,climbs up the back.\n15188,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13275,\"As the lifeboat sinks, someone and someone watch from inside their own lifeboat nearby. Someone\",\"As the lifeboat sinks, someone and someone watch from inside their own lifeboat nearby.\",Someone,gold,stomps around the building with a helmet.,removes his glasses.,frees her face in anguish.,grabs someone and shoves him against a railing.\n15189,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13245,\"Working together, someone and someone swing a lifeboat over the side of the ship. Snowy\",\"Working together, someone and someone swing a lifeboat over the side of the ship.\",Snowy,gold,\"chews the lemon, wipes his lips and strides out.\",\"a smoldering, light, mottled pink skull, through his gray smoke, someone appears as the huge soldiers disappear under mustached student.\",steps out of the building into a long corridor.,follows someone as he creeps toward the bridge.\n15190,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13240,\"Stepping out of a door, someone takes a bottle from someone and sneaks up behind a thug with a gun. As he raises the bottle into the air someone\",\"Stepping out of a door, someone takes a bottle from someone and sneaks up behind a thug with a gun.\",As he raises the bottle into the air someone,gold,throws them against the glass.,raises the injection into the air.,puts a hand on his hip.,takes it back and drinks.\n15191,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13274,\"Liquor bottles float up and bob amongst the someone. As the lifeboat sinks, someone and someone\",Liquor bottles float up and bob amongst the someone.,\"As the lifeboat sinks, someone and someone\",gold,watch the jumbo rockets.,sit down while several girls gather around.,watch from inside their own lifeboat nearby.,sit alone in the woods clutching their tent to two rocky plants.\n15192,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13277,A crewman pulled the tarp of the sea plane and swiveled the track over the side of the boat. Someone,A crewman pulled the tarp of the sea plane and swiveled the track over the side of the boat.,Someone,gold,rows the lifeboat while someone sits with his hands on his knees.,spins the board without following words.,is pulled outside of the car.,heads into the trailer.\n15193,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13264,Someone fires his pistol behind himself as he rounds a corner. Someone,Someone fires his pistol behind himself as he rounds a corner.,Someone,gold,looks down from an upper deck.,eyes widen as someone's head falls to the floor as steam rises behind him.,shoots at the third and tries another shot.,raises his weapon and grabs each of his captor - steadying hands.\n15194,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13267,Someone leaps on to the lifeboat and shoots through the last rope. The lifeboat,Someone leaps on to the lifeboat and shoots through the last rope.,The lifeboat,gold,drops into the ocean with everyone aboard.,\"is carried across the glassy, bloody sand.\",lands motionless on the sand.,smashes the solid ground beside the ship and explodes.\n15195,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31560,13238,On the ship's deck crew members weld together a long track. A crane,On the ship's deck crew members weld together a long track.,A crane,gold,eats white tendrils to some forms and points them at a lectern.,rolls up on his boulder and faces the sun pilot face.,lowers a pontoon plane wrapped in canvas onto the track.,messes up the wheels as they crash toward the board.\n15196,anetv_tScqYRQ7zyo,7796,She begins putting lip stick on. She,She begins putting lip stick on.,She,gold,corner of the cage shows a video afterwards.,shows the proper way behind the cube.,closes the mirror and looks down.,takes a few more and walks away.\n15197,anetv_tScqYRQ7zyo,18381,A close up of a woman is putting on makeup and looking into a mirror. The woman,A close up of a woman is putting on makeup and looking into a mirror.,The woman,gold,pulls out a container and rubs the lotion out in the water.,continues putting makeup on as the camera watches her from the side.,continues smoothing all of the makeup while still speaking to the camera.,lays a contact into her eye and fixes them with a cloth.\n15198,anetv_tScqYRQ7zyo,7795,A woman is seen looking into a mirror. She,A woman is seen looking into a mirror.,She,gold,begins paddling down into a swimming pool.,leads into him wiping down a window.,begins putting lip stick on.,sprays lotion over her legs.\n15199,lsmdc3025_FLIGHT-12132,16485,\"He looks around for the source of the knocking. Lying in bed, he\",He looks around for the source of the knocking.,\"Lying in bed, he\",gold,'s awakened by the same sound.,steps down onto the train and kisses someone on his forehead.,takes the letter and hands it over to someone.,lies in the spiral fallen on the bed.\n15200,lsmdc3025_FLIGHT-12132,16480,\"He picks up a can of coke, and goes over to the fridge. He\",\"He picks up a can of coke, and goes over to the fridge.\",He,gold,finds it stocked with juices and non - alcoholic beverages.,looks at himself in the mirror.,shoves down a wad of cash.,takes out a plastic kettle.\n15201,lsmdc3025_FLIGHT-12132,16491,Someone swoops up the bottle. Someone,Someone swoops up the bottle.,Someone,gold,\"exits an elevator, carrying three coffees.\",sprays it with a paper.,sweeps a chance across a polished red balcony towards an archway.,is burning.\n15202,lsmdc3025_FLIGHT-12132,16482,\"He eats a meal alone, in his room. He\",\"He eats a meal alone, in his room.\",He,gold,\"just blinks, then draws a sketch finger from his shelves complete during a search game, seemingly a defeated lazily in a black shirt\",\"lies in bed, surfing channels on the tv.\",beings to pay 20 children.,reaches back for his magic billboard.\n15203,lsmdc3025_FLIGHT-12132,16488,Someone walks over and gazes at the skyline. A plane's beacon lights,Someone walks over and gazes at the skyline.,A plane's beacon lights,gold,illuminate the skyscrapers around a mansion.,shines softly from the rooftop.,flash in the night sky.,illuminate the desert skyline.\n15204,lsmdc3025_FLIGHT-12132,16481,He finds it stocked with juices and non - alcoholic beverages. He,He finds it stocked with juices and non - alcoholic beverages.,He,gold,demonstrates how to move liquor in a stainless steel bowl while sipping a liquor as he get beer and looking at it.,\"eats a meal alone, in his room.\",\"pretends to blend the drink, serves it and drinks it into an adjacent glass.\",bites him some more.\n15205,lsmdc3025_FLIGHT-12132,16483,\"He sits over the toilet, smoking as the bath fills. The clock\",\"He sits over the toilet, smoking as the bath fills.\",The clock,gold,shows a minute light to make shines on who appears on the monitor.,shows firing and headphones carries to the back of the chevy.,shows 2: 08 a. m. ,is on the floor with his backpack slung across his shoulder and picks an alarm clock which rests on his desk.\n15206,lsmdc3025_FLIGHT-12132,16486,\"Lying in bed, he's awakened by the same sound. He\",\"Lying in bed, he's awakened by the same sound.\",He,gold,is swept away and spun off the heat top.,look ominously at someone.,\"gets out of bed, and goes to a side door.\",picks up the soap and sets them on top of the toilet.\n15207,lsmdc3025_FLIGHT-12132,16489,\"Still kneeling, he unscrews the top from the bottle. He\",\"Still kneeling, he unscrews the top from the bottle.\",He,gold,holds it up to the rock forehead.,hooks a seat back on the set.,brings the bottle to his nose.,backs down into the water.\n15208,lsmdc3025_FLIGHT-12132,16487,\"He gets out of bed, and goes to a side door. He\",\"He gets out of bed, and goes to a side door.\",He,gold,shuts the doors and takes it inside.,stops ringing the intercom.,picks up the book then walks out.,holds his ear to it.\n15209,lsmdc3025_FLIGHT-12132,16479,Someone looks around the spacious room. He,Someone looks around the spacious room.,He,gold,\"notices them standing on a hallway, staring intently.\",\"picks up a can of coke, and goes over to the fridge.\",spots someone and someone sitting in front.,approaches a panel of framed sculptures on a wall.\n15210,lsmdc3025_FLIGHT-12132,16484,The clock shows 2: 08 a. m.. He,The clock shows 2: 08 a. m..,He,gold,is asleep in a hill cirith michelle with his own.,looks around for the source of the knocking.,runs his hands in the pockets of the kneeing bunk.,looks up but very reluctantly go up and goes back down.\n15211,anetv_Q_LhL-t0Yls,18478,The boy with flute walked to the stage and he is being interviewed by the Asian man. The boy,The boy with flute walked to the stage and he is being interviewed by the Asian man.,The boy,gold,began playing his flute in front of the judges and when he finished he bowed.,gets out and grabs a man while people in the background stand with someone.,started next to a brown table and people began wiping the words quickly.,takes his sticks in the sand and throws his arms around his hips with the closing bronze letters.\n15212,anetv_Q_LhL-t0Yls,11858,We see the crowd in the room and a photographer goes to the stage and takes photos. The young boy,We see the crowd in the room and a photographer goes to the stage and takes photos.,The young boy,gold,stands on the end of the white mat until only a note in a white dress behind her.,watches his leafs with photos of a friend and the children 'shop.,talks to the camera.,is playing his flute on stage and takes a bow.\n15213,anetv_Q_LhL-t0Yls,11855,A man with a microphone read from cards on stage. A young boy and his flute,A man with a microphone read from cards on stage.,A young boy and his flute,gold,sit on a table.,play by his brother.,are followed on stage by another man.,are playing tennis on a drum set.\n15214,anetv_Q_LhL-t0Yls,11856,A young boy and his flute are followed on stage by another man. The host,A young boy and his flute are followed on stage by another man.,The host,gold,begins to play the piano and singing.,goes up and resumes playing the flute.,speaks to the kid with the flute.,continues his song on the stage at the end.\n15215,anetv_Q_LhL-t0Yls,11857,The host speaks to the kid with the flute. We see the crowd in the room and a photographer,The host speaks to the kid with the flute.,We see the crowd in the room and a photographer,gold,is giving out podium drugs and celebrities.,approaches and walks back to his room that he is holding.,walks up.,goes to the stage and takes photos.\n15216,anetv_Q_LhL-t0Yls,11859,\"The young boy is playing his flute on stage and takes a bow. The boy leaves the stage, and the host\",The young boy is playing his flute on stage and takes a bow.,\"The boy leaves the stage, and the host\",gold,begins to play the piano.,returns to the stage.,gets more and more.,escorts him away.\n15217,anetv_Q_LhL-t0Yls,18477,An Asian man walked to the stage and introduce the boy. The boy with flute walked to the stage and he,An Asian man walked to the stage and introduce the boy.,The boy with flute walked to the stage and he,gold,started to play ping pong.,started singing while talking.,started to play a drum drum.,is being interviewed by the asian man.\n15218,anetv_Fe-DUewB8ok,7779,The adult and child high five with gloved hands. The adult,The adult and child high five with gloved hands.,The adult,gold,wrap the gift and put it on an oven.,starts to get off the floor.,falls down on the doll and then play the black shoe.,twists the boat back and forth.\n15219,anetv_eBEnQDNyzFk,9660,A close up of food is shown followed by two women speaking to the camera and presenting various ingredients. The women then,A close up of food is shown followed by two women speaking to the camera and presenting various ingredients.,The women then,gold,mixes several ingredients into a bucket as well as pushing them up and grabbing food up a sponge.,mixes ingredients together into a bowl with laid the bucket and speaking.,mix the ingredients into a pot after the noodles are cooked and then mix everything together in a bowl.,begin mixing ingredients into a bowl and mixing them together.\n15220,anetv_N_FbnDY_2j8,3356,\"A person ski on the pent of a hill covered with snow. Then, the person\",A person ski on the pent of a hill covered with snow.,\"Then, the person\",gold,puts up snow and washes it away.,takes the bucket to shovel snow and a ski mountain appears.,arrives to a flat area where there are four people.,ski in the snow and talk to the camera.\n15221,anetv_mg0n3DNtUZU,4859,\"The men stand behind a rope waving their arms up in the air, and lead into shots of teams playing tug of war with another in front of a large crowd. One team wins and the announcer\",\"The men stand behind a rope waving their arms up in the air, and lead into shots of teams playing tug of war with another in front of a large crowd.\",One team wins and the announcer,gold,passes two lines in the seventh.,yells back when running.,hands them a trophy and ends with the man speaking and credits rolling.,starts again twice at once.\n15222,anetv_mg0n3DNtUZU,2134,A man is shown speaking. People,A man is shown speaking.,People,gold,cheer in the audience.,are kayaking the shore.,walk past a fence.,run over and talk to each other.\n15223,anetv_8XB_0x_erho,59,\"The little chinese boy then goes outside and start playing in a park, having fun by his self while the camera man record him. the boy little slides down the slide, climb steps while\",\"The little chinese boy then goes outside and start playing in a park, having fun by his self while the camera man record him.\",\"the boy little slides down the slide, climb steps while\",gold,trying to adjust the pinata.,returning up first and thirty to the ground.,looking into the blue proud eyes and some other loose steps.,smiling and having fun.\n15224,anetv_lSTqYESahrY,3762,A man in a wheel chair is talking about his shoe and how he puts it on. He,A man in a wheel chair is talking about his shoe and how he puts it on.,He,gold,takes out and sprays the fluid with a handkerchief.,shows his fingers and how he puts them a certain way.,starts making a face in front of him taking a picture.,contemplates onto the shoe and ties it on the fur.\n15225,anetv_lSTqYESahrY,1360,A man in a wheelchair speaks to the camera and holds up a pair of shoes. He,A man in a wheelchair speaks to the camera and holds up a pair of shoes.,He,gold,puts on the shoes while still speaking.,pulls out a harmonica and begins playing an accordion.,holds up a blue razor and brushes it.,uses the iron and puts it on his lips to throw a frisbee.\n15226,anetv_lSTqYESahrY,3764,\"Then he very casually brings his foot up over on to his lap. He places the shoe on his foot and demonstrates how to put it on, then when he is down he\",Then he very casually brings his foot up over on to his lap.,\"He places the shoe on his foot and demonstrates how to put it on, then when he is down he\",gold,puts his foot back down and continues to talk.,begins to demonstrate once more to untie the polish.,begins to do duffel socks on the ground as he scratches it with his foot.,begins to sit down but is bare back at relaxing.\n15227,anetv_lSTqYESahrY,1361,He puts on the shoes while still speaking. He,He puts on the shoes while still speaking.,He,gold,continues shaving the dogs arm while the dog follows.,continues to wash the shoes and back out the sink.,continues speaking and rolls away.,goes over ramps and people skateboard.\n15228,anetv_lSTqYESahrY,3763,He shows his fingers and how he puts them a certain way. Then he,He shows his fingers and how he puts them a certain way.,Then he,gold,very casually brings his foot up over on to his lap.,cuts the mixture down and chops the new ends with it.,grabs the arrows and uses it to show the way they chose about touching it like a bow.,takes a powerful pressure puff through the metal they force like melted into the glass.\n15229,lsmdc1006_Slumdog_Millionaire-73957,17102,Someone carries a tray of tea at the call center. She,Someone carries a tray of tea at the call center.,She,gold,holds an eastern magazine.,stirs everything into someone's tray.,walks hesitantly across the words.,pours someone a glass of vodka.\n15230,anetv_uIOIcv5MhuA,5996,A woman laying on the floor takes out a cigarette from a carton. She,A woman laying on the floor takes out a cigarette from a carton.,She,gold,pulls the curler from her mouth and clamps it through her mouth.,lights the cigarette and smokes as the camera gazes over her body.,puts something over out in front of the toilet.,explains how to decorate and break lemonade.\n15231,anetv_uIOIcv5MhuA,5997,She lights the cigarette and smokes as the camera gazes over her body. The video,She lights the cigarette and smokes as the camera gazes over her body.,The video,gold,cuts to a man lying on the ground while carrying a large piece of sandwich strapped behind her back.,appears on the screen.,ends with showing how to use a shoe and style her hair.,ends with the closing captions shown on the screen.\n15232,anetv_uIOIcv5MhuA,367,The blond woman opens a carton of cigarettes places a cigarette in her mouth lights a match and then lights the cigarette. The camera man,The blond woman opens a carton of cigarettes places a cigarette in her mouth lights a match and then lights the cigarette.,The camera man,gold,zooms in on the woman's face as she drags on the cigarette.,goes back to a tall guy who stands with his arms folded.,cuts the show of wrapping paper in a seat in the living room.,reaches for a metal.\n15233,anetv_uIOIcv5MhuA,366,A blond woman dressed in sexy black pants lies on a carpeted floor. The blond woman,A blond woman dressed in sexy black pants lies on a carpeted floor.,The blond woman,gold,opens a carton of cigarettes places a cigarette in her mouth lights a match and then lights the cigarette.,looks over in her wicker laundry basket and heads off.,gets out and follows her right foot into a pair of trainers leading her.,puffs smoke through her mouth.\n15234,anetv_vt81bZ6_GcQ,16326,People are in a pool playing water polo. A man in a white shirt,People are in a pool playing water polo.,A man in a white shirt,gold,speaks to the camera.,is running in front of the camera.,walks along side the pool.,is playing with a large white soccer ball.\n15235,anetv_OPp3DqFq0O0,9347,She is playing a violin. She,She is playing a violin.,She,gold,is clapping her hands.,is playing her flute.,smiles at the end.,is getting dressed up as a handsome little girl.\n15236,anetv_OPp3DqFq0O0,9345,A woman stands in a room. She,A woman stands in a room.,She,gold,walks into the room while holding the bucket on the floor.,has a knife placed in her lap.,is drying her hair with a lotion.,is wearing a blue polka dot dress.\n15237,anetv_OPp3DqFq0O0,9346,She is wearing a blue polka dot dress. She,She is wearing a blue polka dot dress.,She,gold,is alone in the trashed room.,is playing a violin.,spreads her neck and poses.,wears a brown gown.\n15238,anetv_E4PIKUW4v0k,13646,A man and a woman stand on a street talking on front a window. A person,A man and a woman stand on a street talking on front a window.,A person,gold,walks towards the camera.,is combing the hair of a woman.,passes on front the man and the woman.,continues knitting with a hula hoops hand.\n15239,anetv_IIAg_MFuCoY,1173,The lady shimmy's and bends down to the ground and back up. The man,The lady shimmy's and bends down to the ground and back up.,The man,gold,sits back and looks up to see the closing screen.,dips the woman and the smile at the camera.,uses a green funnel to rub his face.,takes the dolls hand and pours more into the mug.\n15240,anetv_IIAg_MFuCoY,1171,We see a man looks in the camera and opens his mouth as a group of people walk past. A man in a black shirt,We see a man looks in the camera and opens his mouth as a group of people walk past.,A man in a black shirt,gold,is shown next to a mat with a ramp on his back.,walks past the camera and stands their for a moment.,speaks to the camera as several people lounge on their skateboards.,is standing in the yard next to a lacrosse ball.\n15241,anetv_IIAg_MFuCoY,1172,A man in a black shirt walks past the camera and stands their for a moment. The lady shimmy's and,A man in a black shirt walks past the camera and stands their for a moment.,The lady shimmy's and,gold,moves a hand toward the other woman in the pool.,walks on the sidewalk.,drop both 8 times.,bends down to the ground and back up.\n15242,anetv_GlvfqDfvbKA,5014,The first man plays the drums. The first man,The first man plays the drums.,The first man,gold,stops playing and turns to the camera.,begins playing the drums.,plays the piano where his only drum set then.,plays the drums with the hands clasped together.\n15243,lsmdc3057_ROBIN_HOOD-27297,18143,As the youngster keeps watch as his cohorts escape. He,As the youngster keeps watch as his cohorts escape.,He,gold,looks down at someone.,lowers the phone to his ear.,tosses his gun at someone.,\"defiantly tips his head back, then runs out the gate.\"\n15244,lsmdc3057_ROBIN_HOOD-27297,18142,Someone hands her an arrow. As the youngster,Someone hands her an arrow.,As the youngster,gold,juts off his helmet.,wags her thumb and wags past.,pass a high tail visible in the distance.,keeps watch as his cohorts escape.\n15245,lsmdc3057_ROBIN_HOOD-27297,18141,Someone leads someone and someone toward the distant. Someone,Someone leads someone and someone toward the distant.,Someone,gold,\"overlooks the stage, wide - eyed.\",lags behind as they settle on the bike.,hands her an arrow.,reaches for someone's head.\n15246,anetv_WCCkmuFrSQ0,2390,\"The girl in pink dress and the girl in wonder woman costume is fixing the tiles, the girl in dress continue to play, then the girl in wonder woman costume play the hop scotch. An adult man\",\"The girl in pink dress and the girl in wonder woman costume is fixing the tiles, the girl in dress continue to play, then the girl in wonder woman costume play the hop scotch.\",An adult man,gold,\"begins, carrying the fashion girl under a green shirt.\",is standing low with one arm on the street and hammering a wall mud while wood pops seams on frame.,took a picture and put her in the place she was last earlier.,appeared and joined the girls and play hop scotch.\n15247,anetv_WCCkmuFrSQ0,452,Little girl is standing in a living room wearing a pincess custome and behind her kid wearing a wonderwoman custom is playing with her. kids,Little girl is standing in a living room wearing a pincess custome and behind her kid wearing a wonderwoman custom is playing with her.,kids,gold,are sitting on bleachers in the stage doing a dance routine.,are sitting in a circle and watching the game leaving the ball.,are playing hopscotch in a kitchen.,are siting behind a fence watching what they tumble.\n15248,anetv_WCCkmuFrSQ0,453,Kids are playing hopscotch in a kitchen. a man,Kids are playing hopscotch in a kitchen.,a man,gold,rides a trampoline behind a ball.,is sitting in a bed in the living room with a large bucket wielding his arm against his neck.,is in the kitchen playing hopscotch with the girls.,is mixing a water bag in a bowl and spinning around a spoon with people.\n15249,anetv_WCCkmuFrSQ0,2388,The little girl is wearing pink princess costume while the other girl is wearing wonder woman costume. The girl in pink dress,The little girl is wearing pink princess costume while the other girl is wearing wonder woman costume.,The girl in pink dress,gold,\"play the hop scotch, pause at the center and continue to hopped back to the start.\",is brushing wearing short skimpy cat outfits.,talks sitting back on the stage talking while still standing next to a bush and clipping her gloved hands while talking.,grabs one and pulls her skirt.\n15250,anetv_WCCkmuFrSQ0,2389,\"The girl in pink dress play the hop scotch, pause at the center and continue to hopped back to the start. The girl in pink dress and the girl in wonder woman costume is fixing the tiles, the girl in dress continue to play, then the girl in wonder woman costume\",\"The girl in pink dress play the hop scotch, pause at the center and continue to hopped back to the start.\",\"The girl in pink dress and the girl in wonder woman costume is fixing the tiles, the girl in dress continue to play, then the girl in wonder woman costume\",gold,flies behind the marching band.,play the hop scotch.,clapped the middle of one hand in a circle and jumped in the air and cheered.,sets to make a fight.\n15251,lsmdc3011_BLIND_DATING-696,15824,She fiddles with her top button. Someone,She fiddles with her top button.,Someone,gold,watches the headlines on the far wall.,looks expectantly at the apartment and she holds it open.,shifts his wide - eyed gaze.,walks past the open garage door.\n15252,lsmdc3052_NO_STRINGS_ATTACHED-25457,2593,Someone opens his cardigan and puts Freckles on the bed. Someone,Someone opens his cardigan and puts Freckles on the bed.,Someone,gold,dashes warmly on the window.,sits beside the bed.,slips another sheet and puts down a white envelope.,waits in the observation room.\n15253,lsmdc3052_NO_STRINGS_ATTACHED-25457,2590,\"Someone takes Freckles and walks off. With a look of distaste, someone\",Someone takes Freckles and walks off.,\"With a look of distaste, someone\",gold,rises off the next casual face and shoots a perturbed glance at his wife.,looks over at someone in a green dress and starts to walk.,wipes her hands together and goes.,awkwardly moves his cart down.\n15254,lsmdc3052_NO_STRINGS_ATTACHED-25457,2591,With Freckles hidden inside his blue cardigan someone sneaks past reception. Someone,With Freckles hidden inside his blue cardigan someone sneaks past reception.,Someone,gold,\"enters, knocks, and goes down a window.\",buries his head on his chest.,nods back at someone and woozily.,covers freckles completely with his cardigan and heads along a corridor.\n15255,lsmdc3052_NO_STRINGS_ATTACHED-25457,2592,Someone covers Freckles completely with his cardigan and heads along a corridor. He,Someone covers Freckles completely with his cardigan and heads along a corridor.,He,gold,turns and steps into the dressing room.,grabs a cigarette from his ashtray and makes a call.,walks into a room where someone lies in a slightly tilted bed.,bats a victorious disc out of the gate under his hat.\n15256,lsmdc3052_NO_STRINGS_ATTACHED-25457,2589,She holds out the fluffy white Pomeranian. Someone,She holds out the fluffy white Pomeranian.,Someone,gold,casts an energy glare at someone.,takes freckles and walks off.,is beautiful and beautiful.,crawls from the wall.\n15257,anetv_2x-Xqt98Ek4,6146,\"A man plays tam - tam, and then he talks with crossed hands on a tan - tam. Then, the man\",\"A man plays tam - tam, and then he talks with crossed hands on a tan - tam.\",\"Then, the man\",gold,talks and the man in blue walks past and walk again and then see a mustard pineapple cake.,begins with the guitar while playing.,plays a guitar from an accordion at an instruction table talking to the camera.,plays tam - tam with his right hand and plays with sticks with the left hand.\n15258,lsmdc1028_No_Reservations-83197,10501,Someone pretends to be an elephant. The three then,Someone pretends to be an elephant.,The three then,gold,hold hands with their.,play pick - up sticks with bread sticks.,come out of the oven to someone.,holds her toes in a room.\n15259,anetv_XYW6F_4qKJU,2230,An intro screen appears on a black screen that look like a white square that has yellow and blue drawings on it and words on the screen put together say vi do vet tagliare le unghie al gatto. A vet wearing scrubs,An intro screen appears on a black screen that look like a white square that has yellow and blue drawings on it and words on the screen put together say vi do vet tagliare le unghie al gatto.,A vet wearing scrubs,gold,is holding the left front paw of a black and white cat while someone else not in scrubs is also assisting.,is shown making a tutorial on the bowl and adds a mop to a medical pot.,and talking to the camera and begins pinning a disc in the air on the ice to the side of the pool.,\"is talking to the camera next to a large piece of maize, showing how you should prepare.\"\n15260,anetv_XYW6F_4qKJU,15596,A cat is seen close up with a person holding it from behind. The person,A cat is seen close up with a person holding it from behind.,The person,gold,is seen holding clippers and begins cutting the cat's nails.,holds onto the stick and zooms in on the cat as well as blowing.,combs one of the stretches and shows the cat bending down sideways.,cuts the wrapping paper and presents it to the camera.\n15261,anetv_XYW6F_4qKJU,2232,The diagram goes away and the people begin cutting the nails of the calm cat. The outro appears and it,The diagram goes away and the people begin cutting the nails of the calm cat.,The outro appears and it,gold,gives in a logo of the man to follow the instructions.,'s nine in blue.,\"is now browned for them, they also take a scree out of chips.\",'s the same as the intro with the drawing that is yellow and blue on a white screen.\n15262,anetv_XYW6F_4qKJU,2231,\"A white screen appears and it includes a diagram of a cat's nails, the names of the parts of the nails, and where they should cut the nail. The diagram goes away and the people\",\"A white screen appears and it includes a diagram of a cat's nails, the names of the parts of the nails, and where they should cut the nail.\",The diagram goes away and the people,gold,begin cutting the nails of the calm cat.,begin running and running thoroughly.,have made a final match from homes in pictures to the final product that you have applied for them.,jump their nails on the paws of long nail and then piling the nails some different techniques.\n15263,lsmdc0011_Gandhi-52319,19103,\"A car is pulling hurriedly in near the clubhouse, an officer in it, and people are streaming toward it. A major\",\"A car is pulling hurriedly in near the clubhouse, an officer in it, and people are streaming toward it.\",A major,gold,leaves people's car buildings down the street.,\"squeezes his hand near to someone, which aims in the other direction.\",is standing on the back seat.,\"comes out of her and comes out, raises the gun to her eye, then turns back in his direction.\"\n15264,anetv_x1Mb7cN8WgU,16160,A person is hammering nails into a roof. She,A person is hammering nails into a roof.,She,gold,is welding the wall with a brush.,is moving in front of the machine in a car.,is being washed by an oil sprayer.,slide tiles onto the roof and nail them into place.\n15265,anetv_H-hgVm5G54Y,10568,A girl then shows us her brush. The girl,A girl then shows us her brush.,The girl,gold,uses the brush to brush her hair.,uses to brush her teeth.,uses a brush to wipe her face again.,uses a towel to wipe up her face.\n15266,anetv_H-hgVm5G54Y,10569,The girl uses the brush to brush her hair. She,The girl uses the brush to brush her hair.,She,gold,then uses the scissors to spray the tree with her hair.,stands in front of the mirror and talks back.,shows us her brush again.,ends by talking to the camera.\n15267,anetv_H-hgVm5G54Y,10567,We see a persons hand on the camera. A girl then,We see a persons hand on the camera.,A girl then,gold,breaks up on the bars with her feet.,places a vacuum and dumps them down the floor.,shows us her brush.,begins drawing its nails with an ink brush.\n15268,lsmdc1007_Spider-Man1-74756,17017,He leaps on his glider. Someone,He leaps on his glider.,Someone,gold,\"opens cabinet, revealing a long black tooth.\",leaves and it goes to a black diner with a secret burning.,blocks his aim and shoots.,shoots off into the night.\n15269,anetv_FJ7yrh2UiQ8,11854,A man is seen gearing up and walking through a forest with others. They,A man is seen gearing up and walking through a forest with others.,They,gold,move across the vault.,walk to a paintball field and aim their guns around the area.,are open through snow or in a pit.,ride around an area and playing with one another.\n15270,anetv_FJ7yrh2UiQ8,11855,They walk to a paintball field and aim their guns around the area. The men then,They walk to a paintball field and aim their guns around the area.,The men then,gold,begin shooting others and playing paintball.,play a paintball match in different ways.,hit the puck away.,performs tricks and dirt with one another.\n15271,anetv_FJ7yrh2UiQ8,11856,The men then begin shooting others and playing paintball. The men,The men then begin shooting others and playing paintball.,The men,gold,push the puck back and fourth to each other.,continue shooting the bow and hold one another up.,take pictures and end with a shot.,continue to play and walk around.\n15272,anetv_GFQuGc1yY8o,8767,A man is shown with a woman dancing in front of a large crowd on a tv show. The woman,A man is shown with a woman dancing in front of a large crowd on a tv show.,The woman,gold,bends down and bends over to step down on a mat while jumping.,continues to do several martial arts moves for the camera as she continues her workout.,spins around as the man leads her through the routine.,laughs as she performs several dance dances.\n15273,anetv_GFQuGc1yY8o,8769,She then is lifted up and spun around again. They dance very romantically and she,She then is lifted up and spun around again.,They dance very romantically and she,gold,is spun around various times before being tipped backwards by the man as they continue to dance.,is utterly furious.,did when she was done.,\"repeats this going forward, pandemonium.\"\n15274,anetv_GFQuGc1yY8o,8768,The woman spins around as the man leads her through the routine. She then,The woman spins around as the man leads her through the routine.,She then,gold,runs past her opponent make a bow and turns her baton.,jumps up the ropes and swings away before the end.,turns around and throws the object back and fourth several times.,is lifted up and spun around again.\n15275,lsmdc1027_Les_Miserables-6092,3939,He recoils as she spits in his face. Someone,He recoils as she spits in his face.,Someone,gold,plants his hands on the cup and reaches for her arm.,inserts another pill into her mouth and taking out the bottle.,follows her out of the bathroom.,raises a hand to hold back one of his men.\n15276,anetv_WwwfCw1dYlg,12787,\"A man is talking inside a pool gym. A view is shown under the water, then it\",A man is talking inside a pool gym.,\"A view is shown under the water, then it\",gold,shaves a sea ski ringed with static wood.,\"is shown, talking.\",cuts back to him talking.,\"is swimming back and forth, black air, swimming.\"\n15277,lsmdc1007_Spider-Man1-74651,11105,Someone kicks a gun from a robber's hand then jumps on him. He,Someone kicks a gun from a robber's hand then jumps on him.,He,gold,turns the wheel towards the open door.,opens the door and tries to turn the handle.,turns to the camera.,searches in another drawer.\n15278,lsmdc1007_Spider-Man1-74651,11104,A camera is suspended in a web. Someone,A camera is suspended in a web.,Someone,gold,kicks a gun from a robber's hand then jumps on him.,sharpens a sharp dagger with someone.,watches it as he climbs over the curtains and beams fondly at the baby.,leans against a peak onto a rock.\n15279,lsmdc1007_Spider-Man1-74651,11103,He reads the Bugle's reward for someone photo. A camera,He reads the Bugle's reward for someone photo.,A camera,gold,pulls up behind him.,is suspended in a web.,pushes through the open plan door.,pulls up as someone approaches.\n15280,lsmdc1007_Spider-Man1-74651,11106,\"A photograph of someone swinging off a roof, crawling down a building, saluting the cops, looking at them is the Bugle's editor, someone. Someone\",\"A photograph of someone swinging off a roof, crawling down a building, saluting the cops, looking at them is the Bugle's editor, someone.\",Someone,gold,turns with his fly.,sits at the counter as he reads.,hands back his photographs.,leads the bus away.\n15281,anetv_M0cKfbLMlSA,13693,Another pair of men are seen talking and gesturing about boxing in the distance. The main pair of boxers,Another pair of men are seen talking and gesturing about boxing in the distance.,The main pair of boxers,gold,begin moving and putting on the equipment and begins fencing.,take a short break.,are now grabbing each other's ankle as well.,jump out and zoom back in between people.\n15282,anetv_M0cKfbLMlSA,13692,Both pairs of men are seen boxing. Another pair of men,Both pairs of men are seen boxing.,Another pair of men,gold,is shown shaving while holding on to the hand points to the other various matches.,hands high with each other.,are shown indoors that leads into several clips of the man playing the helmet.,are seen talking and gesturing about boxing in the distance.\n15283,anetv_M0cKfbLMlSA,13695,All groups stop boxing and begin to talk. One of the men,All groups stop boxing and begin to talk.,One of the men,gold,\"spins and walks back to the hoop and swings the hammer, then to throw one at others.\",walks to resemble a covered wall.,begins hanging on a rope and swinging forwards and backwards.,kneel and chopping the rest of the unit until he started at the hunting center.\n15284,anetv_M0cKfbLMlSA,13694,The main pair of boxers take a short break. All groups,The main pair of boxers take a short break.,All groups,gold,stop boxing and begin to talk.,walk toward the entrance of the building.,\"move in the opposite direction, landing full on the constructed and possibly families of despite these whose hors restrained.\",chase one another and then walk to the end.\n15285,anetv_AS1nLh3xfxI,18983,The person lays out dirt and cut a hole into it while also putting a plant inside. The person,The person lays out dirt and cut a hole into it while also putting a plant inside.,The person,gold,stops playing along with the tool and zooms out together.,continues to paint the fence while gesturing to the camera.,continues sharpening the object while people watch on the side.,waters the plant and ends by laying out more dirt.\n15286,anetv_AS1nLh3xfxI,18982,A close up of boots are seen as well as person digging a hole. The person,A close up of boots are seen as well as person digging a hole.,The person,gold,lays out dirt and cut a hole into it while also putting a plant inside.,begins to corner the hole in the pumpkin and continues peeling them.,then transfers mud on a picture and pushes a wall of fire in.,continues his stunts and dismounts the chalk.\n15287,anetv_QPxiOzXkUFM,14022,Photo of a iver is shown and he car going through the haighway and arriving to a lake. people,Photo of a iver is shown and he car going through the haighway and arriving to a lake.,people,gold,are in boat paddling in the river and arriving to a camp on pier.,\"are riding bikes, and after, the young man puts his helmet in the air?\",are riding his tubes on a trail.,\"are then shown talking interviews, rubbing his nose and polishing the balls of cold water.\"\n15288,anetv_QPxiOzXkUFM,14021,Man is sitting on a boat in a calm lake. car,Man is sitting on a boat in a calm lake.,car,gold,is being driven in a highway with cars standing on the sides.,is cleaning another man in a canoe next to a man.,pouring while cooking in the back of the boat.,is sitting in the water talking to the camera.\n15289,anetv_Ed08LA1pjIg,5320,The person is skiing down the high snow covered mountains. A red helicopter,The person is skiing down the high snow covered mountains.,A red helicopter,gold,is flying around as the skiers are climbing the top mountain.,explains a hill of snow in a tube behind a motel.,goes up a ramp on a parallel course and then drives along a road covered with snow.,is shown afterwards.\n15290,anetv_Ed08LA1pjIg,5321,A red helicopter is flying around as the skiers are climbing the top mountain. The skiers,A red helicopter is flying around as the skiers are climbing the top mountain.,The skiers,gold,\"start climbing, as group of the tubers smile on sand on or go on the rocks.\",\"ski down the slope, ride their motorcycles, went fishing, and ski.\",stop down on the couch.,is very hard snowboarding down the steep slopes and stop by snow.\n15291,anetv_vb1CG5i1lEs,7100,\"A person wearing a large, white suit is shown spraying down a fence with water. The person\",\"A person wearing a large, white suit is shown spraying down a fence with water.\",The person,gold,is holding a brush and is brushing a woman's hair.,is shown from various angles performing the task and makes the fence look brand new.,is cutting the bushes with scissors.,picks up a sand pad and dumps it into large sand.\n15292,lsmdc3013_BURLESQUE-4738,2550,\"She slings her bag over her shoulder. Resting her chin on her fist, she\",She slings her bag over her shoulder.,\"Resting her chin on her fist, she\",gold,jerks her thumb away.,gazes at a black - and - white photo stuck to her mirror.,smiles and sets down the suitcase and goes over to the stack of papers.,smirks with wistful eyes.\n15293,lsmdc3013_BURLESQUE-4738,2553,Someone's eyes shift to her makeup. She,Someone's eyes shift to her makeup.,She,gold,\"his finger at the client's envelope someone picks his pocket then crosses to the room, coldly descends the elevator.\",picks up a thin makeup brush.,\"pauses a eyelids close, then turns and makes her way along the hallway at foot high one.\",\"holds her hand and someone scoots through the covered cabin and approaches a bank of dark, dark - haired guard table.\"\n15294,lsmdc3013_BURLESQUE-4738,2555,As someone nears the dressing room. The blonde,As someone nears the dressing room.,The blonde,gold,pulls out a piece of clothing and finds a bag of chips.,swivels up a sunlit grin.,discreetly sneaks off the bite.,pushes her eyelashes up with a brush.\n15295,lsmdc3013_BURLESQUE-4738,2557,She paints black lines along someone's eyelid. She,She paints black lines along someone's eyelid.,She,gold,picks up the glass of polish and hands one to someone.,swerves away from a maitre d '' surveillance screen.,shoots it beneath the needle's barrel.,applies color to someone's lids.\n15296,lsmdc3013_BURLESQUE-4738,2554,She picks up a thin makeup brush. As someone,She picks up a thin makeup brush.,As someone,gold,\"exits on the dimly lit driveway, the front door opens.\",\"goes back into the room, the service door swings closed for her.\",pulls out the daughter dresses.,nears the dressing room.\n15297,lsmdc3013_BURLESQUE-4738,2552,It shows a glamorous burlesque dancer. Someone's eyes,It shows a glamorous burlesque dancer.,Someone's eyes,gold,dart across the rink.,dart from the crest to her violin.,scan the professor dining room.,shift to her makeup.\n15298,lsmdc3013_BURLESQUE-4738,2551,\"Resting her chin on her fist, she gazes at a black - and - white photo stuck to her mirror. It\",\"Resting her chin on her fist, she gazes at a black - and - white photo stuck to her mirror.\",It,gold,shows a glamorous burlesque dancer.,leads a young woman to a large booth.,curls out of his mouth and down his throat.,whizzes past from the wooden mesh into the room and wipes out over the earth.\n15299,lsmdc3013_BURLESQUE-4738,2556,Someone unzips a pouch and withdraws a brush. She,Someone unzips a pouch and withdraws a brush.,She,gold,squeezes her eyes shut.,shows it to the archer webcam.,holds it out to someone.,studies one of the speaker beneath the door.\n15300,lsmdc3013_BURLESQUE-4738,2549,\"As someone pulls on her sweater, the other dancers head out of the dressing room. She\",\"As someone pulls on her sweater, the other dancers head out of the dressing room.\",She,gold,pauses just over a lounge ledge and glances at someone who sits beside the pool table.,runs his fingers along a socket on her forehead.,stands on her coffee.,slings her bag over her shoulder.\n15301,anetv_yE5euaQmcXw,1187,A man is seen grabbing a puck and curling along the ice in front of others. The people,A man is seen grabbing a puck and curling along the ice in front of others.,The people,gold,perform multiple matches with one another while still speaking to the camera.,are then seen running towards a woman's man as well as a large group of people running through the ice.,continue hitting pucks with one another and ends with a team putting a thick lens on their hands and walking up the fight.,push the puck down the ice and celebrate with one another.\n15302,anetv_iJqLgrShN-w,10058,\"He kind of almost falls down but continues moving. He is skiing fast through trees, passing by other skiers, he\",He kind of almost falls down but continues moving.,\"He is skiing fast through trees, passing by other skiers, he\",gold,repeats a flurry of snow while the process is done.,moves the road with very s. cream weed until the bottom of another mountain from go first.,continues to talk as he strides towards the camera.,continues to go so fast.\n15303,anetv_iJqLgrShN-w,6376,\"The person is skiing in extremely cold weather using one hand as he holds the selfie stick recording himself with the other. Soon, someone else\",The person is skiing in extremely cold weather using one hand as he holds the selfie stick recording himself with the other.,\"Soon, someone else\",gold,\"is so fast that seems to pull from his wheelchair, except he is full of advice, talking that they're online.\",takes ice at the top of the ski and walks to the right.,is standing in the center of the pool for the jumps.,\"comes along and starts to watch, but eventually does the same thing as he guides his way through the snowy paths.\"\n15304,anetv_iJqLgrShN-w,6377,\"Soon, someone else comes along and starts to watch, but eventually does the same thing as he guides his way through the snowy paths. This person\",\"Soon, someone else comes along and starts to watch, but eventually does the same thing as he guides his way through the snowy paths.\",This person,gold,arrives before going into a large building and stops at the end of the yard.,rides up with a yellow sand hooked with a white plastic bag tied all over the head.,records himself and another person skiing in the snow.,\"is leading a man riding down the street, with his left hand on.\"\n15305,anetv_iJqLgrShN-w,10057,\"Snow is building up all over his face, it looks extremely cold. He\",\"Snow is building up all over his face, it looks extremely cold.\",He,gold,stares intently at them as they wander off.,\"lunges and, knocking him over a maze, lands on the oar wall.\",continues to look for the other as he goes down.,kind of almost falls down but continues moving.\n15306,anetv_pf9u7M6vafU,15367,A young girl is seen sitting on a bed with two knitting needles and thread in her hands. The camera,A young girl is seen sitting on a bed with two knitting needles and thread in her hands.,The camera,gold,pans around her and watches her knit while she speaks and looks off into the distance.,pans around and braiding her hair while a camera cuts around her face.,begins to show close up of the tattoo where the woman sits.,cuts to her shadow and rubs brushes down over her nails as she brushes her teeth.\n15307,anetv_opxLlaEPxqw,5059,An athlete is seen standing ready holding a javelin and throwing it off into the distance. Several more people,An athlete is seen standing ready holding a javelin and throwing it off into the distance.,Several more people,gold,are seen running around one time throwing a javelin once more.,are seen riding around in the water performing impressive throw while many watch on them.,are seen throwing the disc back and fourth while others watch on the sides.,are seen throwing a javelin with their throw being shown again afterwards.\n15308,anetv_opxLlaEPxqw,5060,Several more people are seen throwing a javelin with their throw being shown again afterwards. The camera,Several more people are seen throwing a javelin with their throw being shown again afterwards.,The camera,gold,pans forward shows another underwater shot.,zooms in and celebrates and others are seen running down and then playing the game outdoors.,pans around the woman in the end and shows off their score.,continues with the men riding around and ends with a dog watching and waving to him.\n15309,lsmdc0046_Chasing_Amy-68637,14607,Someone reaches in and pulls someone out. Someone,Someone reaches in and pulls someone out.,Someone,gold,throws his arms around someone.,sits in his driveway.,\"watches them go, then turns and kisses someone.\",works his way through the market.\n15310,lsmdc0046_Chasing_Amy-68637,14605,Someone waves at him as he exits. Someone,Someone waves at him as he exits.,Someone,gold,opens a small box of condoms.,slides out of the booth.,offers someone a tool.,joins someone across the street.\n15311,lsmdc0046_Chasing_Amy-68637,14608,\"The Receptionist stops typing and looks at someone, shocked. Someone\",\"The Receptionist stops typing and looks at someone, shocked.\",Someone,gold,\"flips through magazines, biting off mini pieces of the gum he is chewing.\",comes on the phone.,is slowly struggling to stay in place.,pulls himself up from his spectacles and puts down the newspaper.\n15312,lsmdc0046_Chasing_Amy-68637,14606,Someone slides out of the booth. Someone,Someone slides out of the booth.,Someone,gold,presses the tip of his broomstick against the four.,reaches in and pulls someone out.,kicks someone with his gun again.,sits cross - legged on the floor.\n15313,anetv_cdO-xmdjM7Q,14371,\"A group of people walk holding inflatable boats and arrive to a lake, then the people sail in the lake. After, the people\",\"A group of people walk holding inflatable boats and arrive to a lake, then the people sail in the lake.\",\"After, the people\",gold,raise their sails into the wooded waters.,ski through the water in tubes and sail.,take the boats to sail on a narrow choppy river.,sail around in the water where the people are surfing to arrange.\n15314,anetv_cdO-xmdjM7Q,14372,\"After, the people take the boats to sail on a narrow choppy river. The rafters arrive to a cascade and the boats fold when descend the cascade, then they\",\"After, the people take the boats to sail on a narrow choppy river.\",\"The rafters arrive to a cascade and the boats fold when descend the cascade, then they\",gold,continue rafting in the river.,go on to side hilly going in elven boats without paddling.,can go around boarding.,continue and ride through the rough river.\n15315,anetv_AElVyfjSHIo,6006,A man is seen speaking to the camera and leads into him playing on a set of drums. The man,A man is seen speaking to the camera and leads into him playing on a set of drums.,The man,gold,continues to play the object throughout the instrument and ends by smiling to his camera.,continues speaking to the camera with his hands and moving the sticks while looking around.,continues walking around continuously hitting a shot followed by different objects and playing around.,continues playing on the piano and continues laying down while looking at the camera.\n15316,anetv_bG7hnpAeja0,7135,The black cloth is removed and seven sumo are uncovered. The sumo,The black cloth is removed and seven sumo are uncovered.,The sumo,gold,do a performance for the people waiting.,is finished laying down and tossing the knuckles to the ground.,is speaking to the women and helping peel out of the room.,is and started talking to the camera on the jumpers.\n15317,anetv_bG7hnpAeja0,3732,\"They continue running through the city doing various activities such as going to bars, drinking milk and eating at the gas station. The video then\",\"They continue running through the city doing various activities such as going to bars, drinking milk and eating at the gas station.\",The video then,gold,pans in both ways to show several others used to start a race.,shows a woman in the fridge with some ingredients.,at the end of the row of the racers to sit on the side and sails their arms.,changes to animated and other video links become present.\n15318,anetv_bG7hnpAeja0,7136,The sumo run on the beach. A flock of birds,The sumo run on the beach.,A flock of birds,gold,spreads around the tree until it fades to black.,are on their wake.,fly in the sky.,pass by behind the multiple words distances and object as well.\n15319,anetv_bG7hnpAeja0,3731,\"As they run through trash cans, a group of cheerleaders are also running and the sumo wrestlers stop short to not run into the cheer leaders. They\",\"As they run through trash cans, a group of cheerleaders are also running and the sumo wrestlers stop short to not run into the cheer leaders.\",They,gold,\"end the robots, and fail again.\",while they take a bow and play the intensifies.,\"continue running through the city doing various activities such as going to bars, drinking milk and eating at the gas station.\",comes up for women's tricks.\n15320,anetv_bG7hnpAeja0,7139,A vehicle appears directly where the sumo were sitting. The vehicle,A vehicle appears directly where the sumo were sitting.,The vehicle,gold,\"reading, number 18, bursts into the receiver.\",is shown again in slow motion.,crashes into a grassy mailman into a garbage bag.,moves on a road.\n15321,anetv_bG7hnpAeja0,3730,\"After, a black sheet comes down and six sumo wrestlers begin dancing before they take off running. As they run through trash cans, a group of cheerleaders are also running and the sumo wrestlers\",\"After, a black sheet comes down and six sumo wrestlers begin dancing before they take off running.\",\"As they run through trash cans, a group of cheerleaders are also running and the sumo wrestlers\",gold,stop short to not run into the cheer leaders.,kick an shin bull stick at each other.,are also very sync.,fight over each other during the book.\n15322,anetv_bG7hnpAeja0,7138,The sumo sit at a gas station to eat Chinese food in a picnic type setting. A vehicle,The sumo sit at a gas station to eat Chinese food in a picnic type setting.,A vehicle,gold,floorboards the table.,appears directly where the sumo were sitting.,breaks it behind him.,of the fiair sits along the pavement.\n15323,anetv_TEh6gfRUFZQ,3532,A man is standing near a window talking to the phone and looking out at the weather. The man then,A man is standing near a window talking to the phone and looking out at the weather.,The man then,gold,continues doing various tricks and tricks to keep roping up in the end.,comes outside and starts talking about the snow holding a red plastic stick in his hand.,puts a cherry on his cell and shows up a product.,goes portable and places a hand on the motorcycle to put the goggles on.\n15324,anetv_TEh6gfRUFZQ,3533,\"The man then comes outside and starts talking about the snow holding a red plastic stick in his hand. With the stick, he\",The man then comes outside and starts talking about the snow holding a red plastic stick in his hand.,\"With the stick, he\",gold,proceeds to the car and start slicing the snow off of his windshield.,continues spraying his rake.,takes the man's hands and rewinds the wavy lens and pulls on safety smoke.,\"begins to brush his nails, showing the contact before lying back down to so not tuck his nails from the stairs.\"\n15325,anetv_TEh6gfRUFZQ,16686,A man is talking to a camera next to a window and then outside. The man,A man is talking to a camera next to a window and then outside.,The man,gold,starts talking to the camera and ends by adjusting the low squeegee.,removing shingles on the roof using a tool.,uses a red paddle to work on removing snow from a car.,stands in front of the car and stands in front of a mirror.\n15326,lsmdc3022_DINNER_FOR_SCHMUCKS-10521,15731,\"Hands sunk deep in his pockets, someone wades ankle deep into a pond next to the ranch house. Someone\",\"Hands sunk deep in his pockets, someone wades ankle deep into a pond next to the ranch house.\",Someone,gold,pulls down rails and bouncing.,watches him for a moment.,mounts his horse at heels.,emerges from the cabin holding a grave.\n15327,lsmdc3022_DINNER_FOR_SCHMUCKS-10521,15732,Someone watches him for a moment. They,Someone watches him for a moment.,They,gold,\"stand side - by - side, staring morosely at the water.\",\"come to a candlelit room where someone is staring at the video, making his way through his own scope.\",\"walk up the street and down the empty streets, lovingly, and peeking over a set of the barricade.\",drive through the traffic.\n15328,lsmdc1017_Bad_Santa-7374,12587,\"Inside the pub, various groups of friends, families, and work colleagues have gathered together for a festive drink and to exchange presents. They\",\"Inside the pub, various groups of friends, families, and work colleagues have gathered together for a festive drink and to exchange presents.\",They,gold,realize that someone can shoot some caviar out of her mouth and for leaving.,begin forcing to run at tables.,\"chat and laugh, enjoying the christmas spirit.\",watch others signs.\n15329,lsmdc1017_Bad_Santa-7374,12586,\"A few people wander down the street, clutching gifts for their loved ones. Inside the pub, various groups of friends, families, and work colleagues\",\"A few people wander down the street, clutching gifts for their loved ones.\",\"Inside the pub, various groups of friends, families, and work colleagues\",gold,watch from the piano among the crowd of people.,are seated between rows of tables.,have gathered together for a festive drink and to exchange presents.,stand in the packed field.\n15330,lsmdc1017_Bad_Santa-7374,12588,\"They chat and laugh, enjoying the Christmas spirit. At the far end of the bar, a seedy, unshaven man in his late 40s, wearing someone costume,\",\"They chat and laugh, enjoying the Christmas spirit.\",\"At the far end of the bar, a seedy, unshaven man in his late 40s, wearing someone costume,\",gold,\"sits alone, enjoying two glasses of an entirely different kind of spirit.\",brings a new duffel to his waist.,\"takes up his gloves and stubs him out of its pocket, removing a netting from a pair of well - stars sunglasses and bottoms\",\"walks up to the desk, pouring water from the cups to the bottles and some other milk.\"\n15331,lsmdc3021_DEATH_AT_A_FUNERAL-1268,7176,He fills out a check. Someone,He fills out a check.,Someone,gold,dumps his pack of cigarettes in a gun - bag.,holds out his phone and answers.,drives the wavy slush in front of himself.,\"holds up his hands, then turns to someone.\"\n15332,lsmdc3021_DEATH_AT_A_FUNERAL-1268,7175,Someone sits at a desk and takes out a pen. He,Someone sits at a desk and takes out a pen.,He,gold,puts his ax in his pocket.,fills out a check.,stops his chops and walks someone out the door.,sees someone hanging in a turban from the hanger.\n15333,lsmdc3021_DEATH_AT_A_FUNERAL-1268,7174,Someone settles into a leather chair. Someone,Someone settles into a leather chair.,Someone,gold,\"keeps a eyebrow at a mirror, and replaces it on his mouth.\",picks up his hat.,sits at a desk and takes out a pen.,sits down and pours coffee.\n15334,anetv_GSo0lqq5zmM,18422,\"Three men are standing in a room talking to three other people who are dressed in a black and reg hoodie with their team name on. After, the three men take their hoodies out of a bag and they\",Three men are standing in a room talking to three other people who are dressed in a black and reg hoodie with their team name on.,\"After, the three men take their hoodies out of a bag and they\",gold,start covering the match into one another.,end up on the ramp and continue dancing.,hug each other with a bright white shirt.,begin to play a game.\n15335,anetv_GSo0lqq5zmM,12729,Some men put on yellow shirts. We,Some men put on yellow shirts.,We,gold,see two dogs eating balls from the table and measuring one of them to get a grain hand.,players put a ball on a court that comes on and the man in the yellow shirt wins his play.,see several sumo wrestlers using batons and rush times.,see people on the ice with curling supplies.\n15336,anetv_GSo0lqq5zmM,12732,We watch the yellow team throw the curling stone. The other team then,We watch the yellow team throw the curling stone.,The other team then,gold,has a turn on the stone.,start playing and play.,plays an actual game on the field.,picks up the tourists and hugs.\n15337,anetv_GSo0lqq5zmM,12730,We see people on the ice with curling supplies. We,We see people on the ice with curling supplies.,We,gold,see flashing information for the dojo and bosses standing up.,see a man balance a pole.,see a tree above the water.,see the team counts for the parade.\n15338,anetv_GSo0lqq5zmM,18423,\"Once all dressed, each of them appear in an in door rink in wheel chairs and begin playing the slider game. Finally, the game ends and a man\",\"Once all dressed, each of them appear in an in door rink in wheel chairs and begin playing the slider game.\",\"Finally, the game ends and a man\",gold,up by the officials area in the field.,makes them fold up the hand to stick something in his right hand.,\"takes his jersey off, throws it on the ground and walks out of the warehouse.\",on the left walks to the edge and looks the discus.\n15339,lsmdc3018_CINDERELLA_MAN-7624,3239,Now a woman exits the shop. Plucked chickens,Now a woman exits the shop.,Plucked chickens,gold,fly over the top of the ridge.,covers a container of penguins on a floor.,fires into the sky.,hang in the window.\n15340,lsmdc3018_CINDERELLA_MAN-7624,3247,\"Someone leans down to his wide - eyed son, propping his hands on his knees. Someone\",\"Someone leans down to his wide - eyed son, propping his hands on his knees.\",Someone,gold,pushes the papers back to reveal a page off someone's canvas.,unties the folded fan in his hand.,nods then gulps hard.,brings two out of his bedroom tray.\n15341,lsmdc3018_CINDERELLA_MAN-7624,3242,Another sign mounted below the window displays the Coca Cola logo. Someone and someone,Another sign mounted below the window displays the Coca Cola logo.,Someone and someone,gold,follow the busy sidewalk.,climb on over the side door and into an empty office.,pick up their typewriter.,arrive outside wearing a school blazer.\n15342,lsmdc3018_CINDERELLA_MAN-7624,3237,The boy gets up and grabs the salami off the table. Someone,The boy gets up and grabs the salami off the table.,Someone,gold,charges the service.,gets in holding the flower high and shakes the dog out of it and goes on.,\"begins to walk on the next corridor, picking up the letter again.\",eyes his wife then follows someone to the stairs.\n15343,lsmdc3018_CINDERELLA_MAN-7624,3234,\"She runs over to someone. In the basement apartment, someone's oldest son\",She runs over to someone.,\"In the basement apartment, someone's oldest son\",gold,sits against a wall with his arms folded.,sleeps with her bedside bed on someone.,digs out a second aid ruler.,sits by a heavy machine on a leather sofa and opens.\n15344,lsmdc3018_CINDERELLA_MAN-7624,3229,He meets someone's gaze. Someone's finger,He meets someone's gaze.,Someone's finger,gold,trails across her ear then yanks it off.,\"glues down the two letters fingernails, stabbing each other's face.\",points away from the boxer.,dips like a machine.\n15345,lsmdc3018_CINDERELLA_MAN-7624,3249,\"Crouching below his son's eye level, someone rubs his hands together. Someone\",\"Crouching below his son's eye level, someone rubs his hands together.\",Someone,gold,turns in his file.,holds out his hand.,gets off his feet and moves away.,enters the apartment building.\n15346,lsmdc3018_CINDERELLA_MAN-7624,3241,\"A sign reads, Speagle's Meat and Poultry Shop. Another sign mounted below the window\",\"A sign reads, Speagle's Meat and Poultry Shop.\",Another sign mounted below the window,gold,shows the devastated house of someone.,displays the coca cola logo.,reads the name as he sees someone.,shows them tearing through.\n15347,lsmdc3018_CINDERELLA_MAN-7624,3233,Someone climbs out of a makeshift fort. She,Someone climbs out of a makeshift fort.,She,gold,\"sets his books down on the stair rail, climbs into the water, and lets go of it.\",blows water across the sheet.,runs over to someone.,glides up to meet him.\n15348,lsmdc3018_CINDERELLA_MAN-7624,3235,\"In the basement apartment, someone's oldest son sits against a wall with his arms folded. Someone\",\"In the basement apartment, someone's oldest son sits against a wall with his arms folded.\",Someone,gold,catches up to him.,hands them to someone who folds his paper at her.,descends the stairs toward the open door holding someone.,\"rounds the corner someone, dazed and drags someone along a dingy corridor.\"\n15349,lsmdc3018_CINDERELLA_MAN-7624,3232,\"Twirling, he sees someone arrive in the gravely courtyard below. Someone\",\"Twirling, he sees someone arrive in the gravely courtyard below.\",Someone,gold,\"stretches out his arms and heads for a corridor, with his shirt flailing, landing on his face.\",strokes his min than at his feet.,climbs out of a makeshift fort.,continues up the stairs and into someone's office.\n15350,lsmdc3018_CINDERELLA_MAN-7624,3230,\"Glowering, someone turns away. Now, a boy\",\"Glowering, someone turns away.\",\"Now, a boy\",gold,toys with his date.,jumps on a rusty box spring mattress left out on a staircase balcony.,rides a tarpaulin while another sets use their bicycle.,\"jumps out of the hut, following through the undergrowth.\"\n15351,lsmdc3018_CINDERELLA_MAN-7624,3246,\"The boxer looks around, shifting on his feet. Someone\",\"The boxer looks around, shifting on his feet.\",Someone,gold,gives a blond wince with a smile then extends his hand to someone.,\"leans down to his wide - eyed son, propping his hands on his knees.\",wheels the boat again.,\"removes an earpiece, then readies the button as he hammers a piercing into his skin.\"\n15352,lsmdc3018_CINDERELLA_MAN-7624,3243,Someone and someone follow the busy sidewalk. The straight haired boy,Someone and someone follow the busy sidewalk.,The straight haired boy,gold,looks up at his father.,leads the kids down the other steps of the backyard on a grassy slope.,sports a long mustache.,approaches the elegant hostess.\n15353,lsmdc3018_CINDERELLA_MAN-7624,3244,\"The straight haired boy looks up at his father. Arms shaking, someone\",The straight haired boy looks up at his father.,\"Arms shaking, someone\",gold,hurries back to someone.,faces someone's sister.,walks down the street towards a large bay.,glances down at him and swallows.\n15354,lsmdc3018_CINDERELLA_MAN-7624,3245,\"Arms shaking, someone glances down at him and swallows. The boxer\",\"Arms shaking, someone glances down at him and swallows.\",The boxer,gold,\"looks around, shifting on his feet.\",\"lifts his unrelenting gaze, then heads out.\",looks nervous with his sandwich up.,makes another call and stops.\n15355,lsmdc3018_CINDERELLA_MAN-7624,3231,\"Now, a boy jumps on a rusty box spring mattress left out on a staircase balcony. Twirling, he\",\"Now, a boy jumps on a rusty box spring mattress left out on a staircase balcony.\",\"Twirling, he\",gold,\"leans lazily wearily on his elevated piece of cane, then kicks the ball aside.\",twists by the edge of the dropping face and drops gracefully into the ground.,sees someone arrive in the gravely courtyard below.,plucks the much candy from the counter and puts it on his shoulder.\n15356,anetv_2WzsyEvhPPI,14313,He grabs various objects off the table and explains his instructions. He,He grabs various objects off the table and explains his instructions.,He,gold,scrapes the flips on the paper and wipes it with his fingers.,wraps a box with tin foil then writes on the box with a marker.,is then seen dressed up and shows one.,puts pieces of folded paper into a box while others watch on the side.\n15357,anetv_2WzsyEvhPPI,14312,A man talking to the camera while holding a poster. He,A man talking to the camera while holding a poster.,He,gold,shows how to wrap a pillow and working on cooking.,grabs various objects off the table and explains his instructions.,begins doing smokes on a saxophone as the camera captures his movements and begins to talk.,stuck his face into the wall in between numerous images of a dog.\n15358,anetv_2WzsyEvhPPI,14314,He wraps a box with tin foil then writes on the box with a marker. He,He wraps a box with tin foil then writes on the box with a marker.,He,gold,lays out more tin foil and wraps another object with it.,holds up the small box of drawers.,opens a worn brush with tape and dabs the other tissue for the paint with it.,\"sits at the typewriter, sits on the wall, smoking.\"\n15359,anetv_2WzsyEvhPPI,14315,He lays out more tin foil and wraps another object with it. He,He lays out more tin foil and wraps another object with it.,He,gold,was 2007 who's a soft fire from inside the club.,finishes wrapping all objects with tin foil and showing how.,is nowhere to be seen in place.,extend the shrimp in the present.\n15360,anetv_blOgPoTkhks,11756,A woman in black is on the right and walks away from the bars. A girl,A woman in black is on the right and walks away from the bars.,A girl,gold,holding a violin from the guitar stands near her hands.,walks out holding a violin.,is swinging on one of the bars.,walks up to the mirror and puts her arm around them.\n15361,anetv_blOgPoTkhks,11757,A girl is swinging on one of the bars. Then she,A girl is swinging on one of the bars.,Then she,gold,swings upward and swinging the bars.,swings backwards and does.,lands with the dog in her arms and throws her arms up in the air.,swings herself onto the higher bar while other girls watch.\n15362,anetv_blOgPoTkhks,11755,Girls are in a gymnasium with the bars and beams set up. A woman in black,Girls are in a gymnasium with the bars and beams set up.,A woman in black,gold,does the performance and then jumps into the girl's arms.,is on the right and walks away from the bars.,takes a rope doing athletic female and spins.,does a gymnastics routine on the monkey bars.\n15363,anetv_blOgPoTkhks,6299,A girl jumps onto a bar. She,A girl jumps onto a bar.,She,gold,does a gymnastic routine on the balance beam.,does several flips on the bar.,does a gymnastics routine on the beam.,does a gymnastics routine on the mat.\n15364,anetv_blOgPoTkhks,6300,She does several flips on the bar. She,She does several flips on the bar.,She,gold,lands on a mat.,gets out and puts her arms in the air.,jumps from that bar onto a higher bar.,stands on the mat doing her routine.\n15365,anetv_-5Yp-vToI2E,7293,A large group of people are seen standing around a ballet room and leads into four performing a dance. The four,A large group of people are seen standing around a ballet room and leads into four performing a dance.,The four,gold,dismounts and hug their legs up and move around.,clips play intensifies now while several people dance and hold around the air.,continuously move together while holding hands and doing the same moves.,women end up performing herself around on stage and leads into her performing and performing tricks.\n15366,anetv_-5Yp-vToI2E,7294,The four continuously move together while holding hands and doing the same moves. The girls,The four continuously move together while holding hands and doing the same moves.,The girls,gold,drains from the platform and begins to return it.,continue playing and ends by walking away.,laugh together and continue dancing and ending by holding a pose.,continue jumping all over the ring while people dance to rest around.\n15367,anetv_jVp2BsFOIVA,14514,One of the boys climb and slides down the slide. More kids join and and they,One of the boys climb and slides down the slide.,More kids join and and they,gold,slide off slam down.,go down the slide together and move around the set very quickly.,step on the rope again.,continue decorating the rope.\n15368,anetv_jVp2BsFOIVA,14513,Three kids swinging on the play set in the back yard. One of the boys,Three kids swinging on the play set in the back yard.,One of the boys,gold,begin to do drinks.,runs off to the left.,kicks a ball back while still hitting the frisbees.,climb and slides down the slide.\n15369,lsmdc3039_JACK_AND_JILL-2735,1119,Someone holds someone in the headlock and flings her around. Someone,Someone holds someone in the headlock and flings her around.,Someone,gold,hobbles toward the shelf and opens the other end of the chamber.,smiles as she sits at her son's bedside.,launches herself out of the shower.,\"attacks someone, who releases someone.\"\n15370,lsmdc3039_JACK_AND_JILL-2735,1121,A spear pops a balloon and someone arrives as someone Quixote. Someone,A spear pops a balloon and someone arrives as someone Quixote.,Someone,gold,sneaks up with a bottle.,\"falls off, knocking him unconscious.\",steps up and over the railing at the back of his limo.,leaps the pool in the air.\n15371,lsmdc3039_JACK_AND_JILL-2735,1120,\"Someone attacks someone, who releases someone. She\",\"Someone attacks someone, who releases someone.\",She,gold,swipes him onto a worktop.,dives off his effortless spot.,flings someone into a wall.,lies on his back and lies on top of her.\n15372,anetv_ffWMjZCysO0,14513,The man runs around using strings as well as speaking to the camera. The man,The man runs around using strings as well as speaking to the camera.,The man,gold,continues riding along the water while others watch on the side.,continues to play while people to be seen again speaking to the camera and more text on the side.,is seen playing the cards while continuing to speak to the camera.,continues speaking while more shots are shown of him running.\n15373,anetv_ffWMjZCysO0,14512,A person is seen running along the road wearing equipment and speaking to the camera. The man,A person is seen running along the road wearing equipment and speaking to the camera.,The man,gold,cleans the dirt all along the mountain and people performing tricks.,runs around using strings as well as speaking to the camera.,moves menacingly all around on the lawn while others watch on the sides.,continues various jumps on skateboards as well while people watch behind them.\n15374,lsmdc1028_No_Reservations-82989,10635,\"The staff sit around a table, as someone dishes up spaghetti. A plate\",\"The staff sit around a table, as someone dishes up spaghetti.\",A plate,gold,rises on a coffee table towards a third grade class.,appears in front of a man's hall.,is passed along to someone.,backs the other jews and gets in.\n15375,lsmdc1028_No_Reservations-82989,10650,\"He puts a plate down on the worktop, and picks up a squeezy bottle of dessert sauce. Someone\",\"He puts a plate down on the worktop, and picks up a squeezy bottle of dessert sauce.\",Someone,gold,pushes out his sandwich.,\"closes it, puts down a towel and drops down the fork.\",sits down on the couch with the red and white beans.,picks up another bottle and begins to decorate a plate.\n15376,lsmdc1028_No_Reservations-82989,10654,\"Someone picks up the dessert plate and a plate containing a second sugar cage, and moves to the other side of the worktop. Someone\",\"Someone picks up the dessert plate and a plate containing a second sugar cage, and moves to the other side of the worktop.\",Someone,gold,pushes a tall steward nearby.,\"dries it with a fork, then someone brings the scene back into the oven.\",\"stairs at her, contemplatively.\",opens the back door.\n15377,lsmdc1028_No_Reservations-82989,10644,Someone smiles as he chats with someone. Someone,Someone smiles as he chats with someone.,Someone,gold,blinks her doe look.,notices the two of them talking and looks over at them disapprovingly.,averts his gun and walks into the kitchen.,\", someone opens the open door for the german soldiers, who's locked in the mood.\"\n15378,lsmdc1028_No_Reservations-82989,10645,Someone notices the two of them talking and looks over at them disapprovingly. Someone,Someone notices the two of them talking and looks over at them disapprovingly.,Someone,gold,throws her head back and laughs.,\"glances around and his gaze drifts to the clear patio, as they wait on the corner.\",flips open the newspaper.,follow someone by the window across the campus.\n15379,lsmdc1028_No_Reservations-82989,10647,Someone catches someone's eye. He,Someone catches someone's eye.,He,gold,kicks his boss out of the window.,adds angrily as he grabs his bag.,sees a winged soldier wielding an arrow across their spears.,holds out a pan and offers her a taste of the food he is cooking.\n15380,lsmdc1028_No_Reservations-82989,10646,Someone throws her head back and laughs. Someone,Someone throws her head back and laughs.,Someone,gold,approaches someone and puts on his jacket.,takes hold of her and watches.,sees the dust spewing out.,catches someone's eye.\n15381,lsmdc1028_No_Reservations-82989,10636,\"Handsome, shaggy - haired someone stares at someone, a little put out. Someone\",\"Handsome, shaggy - haired someone stares at someone, a little put out.\",Someone,gold,surfaces on the mound.,puts a napkin over his lips before disappearing.,gives someone a look.,\"reads, holding someone to his chest as he melts.\"\n15382,lsmdc1028_No_Reservations-82989,10651,Someone picks up another bottle and begins to decorate a plate. She briefly,Someone picks up another bottle and begins to decorate a plate.,She briefly,gold,looks up at him.,slams the second potato into the bowl.,shakes it and the candle disintegrates.,wraps a scarf over the wound.\n15383,lsmdc1028_No_Reservations-82989,10648,He holds out a pan and offers her a taste of the food he is cooking. She,He holds out a pan and offers her a taste of the food he is cooking.,She,gold,makes to duck across the boat.,removes a grape - cream cone at a coffee table.,shakes her head dismissively and wanders off.,strides wildly as he pours liquor into his glass and sets its photo on a table.\n15384,lsmdc1028_No_Reservations-82989,10649,She shakes her head dismissively and wanders off. A selection of mouth - watering desserts,She shakes her head dismissively and wanders off.,A selection of mouth - watering desserts,gold,\", she rests her face on the cake as she leaves.\",\"sits in the clouds, looks around the packed buildings.\",rises it shields her open.,\"are arranged neatly on gleaming, white plates.\"\n15385,lsmdc1028_No_Reservations-82989,10637,\"Hungrily tucking into their food, people watch people. Someone, who's been doing a crossword in the paper,\",\"Hungrily tucking into their food, people watch people.\",\"Someone, who's been doing a crossword in the paper,\",gold,goes up to him hiting an apple.,stands up next to someone's vest.,\"sits, looking at his book with some clear typed pages.\",sticks a pencil into her neat bun and takes a mouthful of the pasta.\n15386,lsmdc1028_No_Reservations-82989,10653,\"Someone picks up a delicate spun - sugar cage, and gently positions it over a white chocolate mousse on a bed of sliced strawberries. Someone\",\"Someone picks up a delicate spun - sugar cage, and gently positions it over a white chocolate mousse on a bed of sliced strawberries.\",Someone,gold,\"watches over her shoulder, unnerving someone.\",puts down her luggage in a tray and lets it to her side.,\", someone walks across to the wharf until in the tavern by day.\",leaves on a balcony.\n15387,lsmdc1028_No_Reservations-82989,10641,She goes over to someone. Someone,She goes over to someone.,Someone,gold,cover his shoulders with younger - parts.,\"bursts through the doorway through glass door and for someone, two women outside on a covered patio.\",dips a spoon into a pan and holds it out for someone to taste.,climbs up at the bottom of the sheet and looks over it.\n15388,lsmdc1028_No_Reservations-82989,10643,\"Later, he stirs another pan. Someone\",\"Later, he stirs another pan.\",Someone,gold,replaces another piece of wine next to someone.,looks at the open magazine on his desk.,approaches a spaghetti one.,smiles as he chats with someone.\n15389,lsmdc1028_No_Reservations-82989,10642,Someone dips a spoon into a pan and holds it out for someone to taste. Someone,Someone dips a spoon into a pan and holds it out for someone to taste.,Someone,gold,has her own spoon.,is startled blue - - all of which someone stands in a small kitchen talking with a sponge and some white trunks.,'s way gets to his original plate.,stands at a door.\n15390,lsmdc1028_No_Reservations-82989,10639,\"In her office, someone slices a menu in half. Someone\",\"In her office, someone slices a menu in half.\",Someone,gold,flicks ice across the windshield.,\"nods, staring out toward a window.\",stands up and grabs her father.,gets back to her paperwork.\n15391,lsmdc1028_No_Reservations-82989,10638,She looks up at someone petulantly. Someone,She looks up at someone petulantly.,Someone,gold,walks back over to someone.,stares at him expectantly.,watches it from a newsstand.,shakes his big hand over his mouth then walks out of the room.\n15392,anetv_66BGqvwHbUw,19228,A camera zooms in on a person playing guitar and leads into a man speaking. Several more shots of people playing guitar and guitars on walls,A camera zooms in on a person playing guitar and leads into a man speaking.,Several more shots of people playing guitar and guitars on walls,gold,are shown followed by a man playing drums in the distance.,are shown as well as the same man speaking to the camera.,are shown as well as the musicians playing.,is shown followed by several surfers kites on the side.\n15393,anetv_nS9PgniAQAE,16943,She brushes the hair of the dog. The dog,She brushes the hair of the dog.,The dog,gold,watches as she scoops it up and puts it on a cabinet.,continues brushing down the hair.,smiles and then turns back pets the cat.,is playing on the floor with a ball.\n15394,anetv_nS9PgniAQAE,10792,A dog sits in a kennel and wags its tail. The dogs fur,A dog sits in a kennel and wags its tail.,The dogs fur,gold,is trimmed by a groomer.,is shown in the end.,is tied.,looks up into the night.\n15395,anetv_nS9PgniAQAE,10796,The groomer trims the head and face of the dog. The dog,The groomer trims the head and face of the dog.,The dog,gold,jumps out of a carrier bag and plays with a ball.,gets up with the lady who was also the woman.,ties after the comb.,is diving the trying to get off with the dog because the dog gets flat on the man.\n15396,anetv_nS9PgniAQAE,16940,A small white dog is in a black cage. It,A small white dog is in a black cage.,It,gold,\"is out alive with a flashlight, with large binoculars in the back.\",gets tied up to a table.,is wearing a white costume and snarling it arabian.,is holding the cooked pumpkin.\n15397,anetv_nS9PgniAQAE,16942,A woman starts shaving the dogs hair. She,A woman starts shaving the dogs hair.,She,gold,sits in bed and looks into the camera.,washes the hair with a comb and comb.,is brushing the horse.,brushes the hair of the dog.\n15398,anetv_nS9PgniAQAE,10794,The dogs tail and hind legs are trimmed by the groom. The groomer,The dogs tail and hind legs are trimmed by the groom.,The groomer,gold,shows her hair in the air with her dog.,brushes her hair and brushes over a dryer.,brushes and trims the back of the dog.,spots a couple of wild dogs on the left.\n15399,anetv_nS9PgniAQAE,10795,The groomer brushes and trims the back of the dog. The groomer,The groomer brushes and trims the back of the dog.,The groomer,gold,brushes the dogs teeth with the dogs.,trims the head and face of the dog.,brushes the mane while ending by jumping on him.,picks up her brush and brushes the horses mane.\n15400,anetv_nS9PgniAQAE,10793,The dogs fur is trimmed by a groomer. The dogs tail and hind legs,The dogs fur is trimmed by a groomer.,The dogs tail and hind legs,gold,are acting wildly in the bathroom.,are shown petting the potatoes.,are trimmed by the groom.,is shown in front of the cat and making styrofoam choices carefully.\n15401,anetv_YZhNtSJMzq8,8805,A boy mows a backyard using a mower that has a collecting bag on back. The boy,A boy mows a backyard using a mower that has a collecting bag on back.,The boy,gold,starts in a pile in the distance and starts clapping on the other side of the lawn.,is throwing the mower along the grass directly with cattle lined roofs and gravel.,throws off the easel and sits around it smiling.,pass the sidewalk and turn to the yard to continue cutting the grass.\n15402,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10872,\"Someone throws the second soldier over the railing, then heads after them. He\",\"Someone throws the second soldier over the railing, then heads after them.\",He,gold,jumps a stairway railing.,grabs the table and twirls it over his head.,grabs a yellow tanker and lowers the raft.,arrives at his discarded bar.\n15403,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10874,\"The wavy haired man taps him with his revolver, then points the gun at the clergyman's head. The someone\",\"The wavy haired man taps him with his revolver, then points the gun at the clergyman's head.\",The someone,gold,pushes the dart on the window in front of him.,spots the escaping vehicle.,cocks his injured weapon.,holds up a long hose with a taco horn.\n15404,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10883,The wavy haired man hangs out the passenger window with his revolver in hand. He,The wavy haired man hangs out the passenger window with his revolver in hand.,He,gold,switches his hand and walks out of the room.,\"shoots out the hatchback's rear window, then the motorcycle's back tire, launching someone over a safety railing.\",drops the pants and shoves shots in his pocket.,lets someone through the doors on the veranda.\n15405,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10878,Now the silver hatchback emerges from the tunnel on the mountainside road. Someone,Now the silver hatchback emerges from the tunnel on the mountainside road.,Someone,gold,peers intensely over the steering wheel.,drives the lawnmower through the leafy water.,walks into the night.,meets someone with an accomplice.\n15406,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10877,\"Kicking up gravel, he rides out of the fortress. Now the silver hatchback\",\"Kicking up gravel, he rides out of the fortress.\",Now the silver hatchback,gold,sits several feet up a half - built track of traffic.,pulls up on a stony street.,hangs above the building into the sea.,emerges from the tunnel on the mountainside road.\n15407,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10879,Someone peers intensely over the steering wheel. Someone,Someone peers intensely over the steering wheel.,Someone,gold,gains on the car as he rounds a bend.,takes a few bites.,trots down and climbs back to his motorcycle.,stands as someone jogs toward someone.\n15408,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10884,\"He shoots out the hatchback's rear window, then the motorcycle's back tire, launching someone over a safety railing. In slow motion, someone\",\"He shoots out the hatchback's rear window, then the motorcycle's back tire, launching someone over a safety railing.\",\"In slow motion, someone\",gold,walks to his aircraft.,tosses off of the side of the car and follows her partner across the hall backing across the water to the burnham driveway.,\"smashes into a wall hard, dropping the keys against the pillar, then takes the key from his pocket and pulls it on.\",twists his body and takes aim at the suv with only the distant forest floor below him.\n15409,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10882,\"The three vehicles round another bend, now one right behind the other. The wavy haired man\",\"The three vehicles round another bend, now one right behind the other.\",The wavy haired man,gold,hangs out the passenger window with his revolver in hand.,walks alongside holding the camera to his mouth by a rose perched on skis.,faces his well - cropped hair as he watches.,with the red hood just smiles as it tumbles toward him.\n15410,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10873,Someone jumps down to the dungeon floor and finds the door locked. The wavy haired man,Someone jumps down to the dungeon floor and finds the door locked.,The wavy haired man,gold,\"taps him with his revolver, then points the gun at the clergyman's head.\",\"struggles to enter a windowed chamber, and pours ash into space and locks it with a cement slab.\",\"gets to his feet, enters the elevator, opens the door and hurries towards his house.\",watches him go for a split then enters.\n15411,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10880,Someone gains on the car as he rounds a bend. Someone,Someone gains on the car as he rounds a bend.,Someone,gold,reveals the candle burnt fang in a white rose.,eyes the satellite dish.,glances over his shoulder then trades a look with someone.,rides along a brick tunnel into a cab looking stuck.\n15412,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10885,\"In slow motion, someone twists his body and takes aim at the suv with only the distant forest floor below him. One of someone's bullets\",\"In slow motion, someone twists his body and takes aim at the suv with only the distant forest floor below him.\",One of someone's bullets,gold,\"hits him over the head, sending him in the clear.\",\"pierces the vehicle back tire, causing the suv to tip on its side.\",\"hits the head of the boarder, which has the heavy golden ball and misses the gate.\",cuts his knee and rule number 10 drops after its holstered twigs.\n15413,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12468,10881,Someone peeks over her shoulder. The three vehicles,Someone peeks over her shoulder.,The three vehicles,gold,\"round another bend, now one right behind the other.\",make its way along a rooftop across town.,\"arrive, one in the rear seat, and the van pulls away.\",arrive at the grocery store and creeps up from the old ladder with lofty stone walls.\n15414,anetv_UAgb3FEjBN8,9585,An intro leads into a small child riding a dirt bike on a dirt path. Several shots of the boy grown up,An intro leads into a small child riding a dirt bike on a dirt path.,Several shots of the boy grown up,gold,are shown followed by more footage of the boy riding a dirt bike.,are shown as well as people riding down the hill.,are shown as well as shows more shots of people riding and riding camels.,are shown as well as riding riding bikes back and fourth.\n15415,anetv_N-LaOcSqZaM,15080,A large group of people are seen standing around a volleyball court. One person,A large group of people are seen standing around a volleyball court.,One person,gold,hits a ball all around the yard while holding a mallet.,continues playing on the side of the court.,skates over the ball and scores a goal.,hits the ball over the net.\n15416,anetv_N-LaOcSqZaM,17270,A group of young women and men play a game of volleyball on the beach while wearing swimsuits and trunks. A group of woman and men,A group of young women and men play a game of volleyball on the beach while wearing swimsuits and trunks.,A group of woman and men,gold,are standing on the field playing foosball.,eat ice cream next to the pool.,\"are playing volleyball, on the beach on an overcast day with all players approaching the ball to hit it.\",are in mid community cheering.\n15417,anetv_N-LaOcSqZaM,15081,One person hits the ball over the net. The others,One person hits the ball over the net.,The others,gold,run and serve each other.,continue to hit the ball while the camera records.,grab back while a person attempts to make a goal.,quickly follow while standing in the end line.\n15418,anetv_tfepV4CXF7c,715,\"Little girl is sitting on a table and have a glass of soda on the hand, other people is in the table and an elderly man toast with her. the girl\",\"Little girl is sitting on a table and have a glass of soda on the hand, other people is in the table and an elderly man toast with her.\",the girl,gold,is sitting in a room wearing a her dance sweater is standing in front of them and leads people walking behind her and sunglasses.,pushes the front woman into a room and talks to a refrigerator and help pour the gushing bottles with ice.,is showing the ghost book.,uses a napkin and clean her mouth and drinks again from the soda.\n15419,anetv_tfepV4CXF7c,17434,A child is sitting at a table with food. He,A child is sitting at a table with food.,He,gold,sets down a white pinata sitting in the bed.,bends down over the table.,\"hands him the cake, then kisses him quickly.\",is drinking root beer from a large mug.\n15420,anetv_EgPk-mmJyS8,7482,A woman is seen speaking to the camera and leads into her laying out a paid of shorts. She then,A woman is seen speaking to the camera and leads into her laying out a paid of shorts.,She then,gold,demonstrates how to properly iron the clothing items.,puts the potato into a metal bowl and shows the cooker.,wipes her arms for the camera and continues dancing again.,comes around and puts down the contact lotion.\n15421,anetv_XwW5p80hYCg,7048,A logo and the words Master Lube tv show up on a black screen. A young man,A logo and the words Master Lube tv show up on a black screen.,A young man,gold,is standing and talking in a business while other young men are cleaning and detailing the inside and outside of a silver vehicle.,\"lays in a chair in front of a work desk and the barber arrives, demonstrating how to use it.\",is shown talking about a door in a building and he picks up the bottles and tail to talk to the emery.,a black shirt is pointing to the camera man while working on a piece of equipment.\n15422,anetv_XwW5p80hYCg,7051,The vehicle is now parked and two young men are wiping it down with a a dry cloth. More clips of the young man,The vehicle is now parked and two young men are wiping it down with a a dry cloth.,More clips of the young man,gold,stuck on the machine is shown.,applying several snow in the tire are shown.,talking solo and all the cleaning they did previously replays.,play the cards cards to them.\n15423,anetv_XwW5p80hYCg,7049,A young man is standing and talking in a business while other young men are cleaning and detailing the inside and outside of a silver vehicle. The now cleaned vehicle,A young man is standing and talking in a business while other young men are cleaning and detailing the inside and outside of a silver vehicle.,The now cleaned vehicle,gold,is doing it in some snow and is painting an orange car on a sidewalk.,pulls out of the garage and drives away from the business.,is then seen tearing a table down a dirt.,is seen shoveling the floor with snow and making an face on the wall.\n15424,anetv_XwW5p80hYCg,7050,The now cleaned vehicle pulls out of the garage and drives away from the business. The vehicle is now parked and two young men,The now cleaned vehicle pulls out of the garage and drives away from the business.,The vehicle is now parked and two young men,gold,stroll past him toward a tire on the graffiti.,takes out the butcher shop on the research bicycle insert.,are wiping it down with a a dry cloth.,lie on the cover in their tubes.\n15425,anetv_XwW5p80hYCg,7052,\"More clips of the young man talking solo and all the cleaning they did previously replays. A red, white and blue flag with the words hand car wash\",More clips of the young man talking solo and all the cleaning they did previously replays.,\"A red, white and blue flag with the words hand car wash\",gold,is shown in a jar.,down the street have cover.,appears on a window.,blows in the wind.\n15426,anetv_zJquKzopJuI,17018,A group of men standing beside each other are all bent forward chugging beer through very long straws. There,A group of men standing beside each other are all bent forward chugging beer through very long straws.,There,gold,are people in front of them watching them and pointing at them as they chug.,is ice base or and appears and scores the base.,\"women run for it, grinding the camera.\",\", the woman continue on the task and the camera pans.\"\n15427,anetv_zJquKzopJuI,17019,There are people in front of them watching them and pointing at them as they chug. They,There are people in front of them watching them and pointing at them as they chug.,They,gold,move faster to more to their work.,made it a game they are racing to see who can finish first.,continue skating down the field and the half of the main team is fast.,are then seen outside skateboarding down a trail of concrete.\n15428,anetv_zJquKzopJuI,17020,They made it a game they are racing to see who can finish first. They all stop around the same time and the people watching,They made it a game they are racing to see who can finish first.,They all stop around the same time and the people watching,gold,go over to race throughout the course and take turns making the smoke.,them slump to land.,are measured after the match.,continue to be very rowdy.\n15429,anetv_HGtfDm5EOtc,3692,Two men are seen swinging their arms and legs around one another while a group of people stand around and watch them. The men,Two men are seen swinging their arms and legs around one another while a group of people stand around and watch them.,The men,gold,speak back and fourth with one another while standing around.,bump all into each other and end by grabbing arrows and pushing off the weights.,continue spinning around wile people clap and end with them shaking each other's hands.,hit the ball together in a circle and end by talking to one another and interacting with one another.\n15430,lsmdc0011_Gandhi-51972,19908,Someone moves forward and he holds up his hand for silence. People,Someone moves forward and he holds up his hand for silence.,People,gold,sit at the very end of the line of chairs.,side - by - side.,\"climb through the house, look up.\",battle around the room.\n15431,lsmdc0011_Gandhi-51972,19909,A uniformed policeman stands near them. When is subsides someone,A uniformed policeman stands near them.,When is subsides someone,gold,\"opens the taxi, and shows how much score and folded is delivered against the wall.\",takes some sheets from the rigging.,\"looks down at the plainclothes policemen, fixing his gaze on them.\",steps forward to make heard empty.\n15432,lsmdc1059_The_devil_wears_prada-98656,43,Someone arranges a pile of magazines on someone's desk before quickly tidying up her own. Someone,Someone arranges a pile of magazines on someone's desk before quickly tidying up her own.,Someone,gold,\"heads forward to the kitchen, followed by her father.\",\"leans in, letting her hands fly off the bench.\",\"freezes, looking at his daughter.\",strides through the foyer and approaches a lift.\n15433,lsmdc1059_The_devil_wears_prada-98656,44,Someone strides through the foyer and approaches a lift. She,Someone strides through the foyer and approaches a lift.,She,gold,slides down to the side of the living room and the professor enters.,peers under her bed's candle staircase.,\"takes a boat down the stairs that she ascends a staircase, only to be seen in the rain.\",pulls off her designer shades.\n15434,lsmdc1059_The_devil_wears_prada-98656,42,A woman uses a webcamming feature on her computer to touch up her makeup. Someone,A woman uses a webcamming feature on her computer to touch up her makeup.,Someone,gold,sits on a stool to polish a dark leather bucket to polish the nails thoroughly before rubbing it on her nails.,\"clip smokes her hair, and then is shown of her hair and she demonstrates to do some ballet moves.\",arranges a pile of magazines on someone's desk before quickly tidying up her own.,\"picks up the number in her glasses and cocks it, how the men throw him out.\"\n15435,lsmdc1059_The_devil_wears_prada-98656,45,She pulls off her designer shades. Someone,She pulls off her designer shades.,Someone,gold,slides the top into the screen.,smiles as she writer with a proud smile.,'s running to meet her.,escorts the ambulance down the stairs.\n15436,lsmdc3040_JULIE_AND_JULIA-18139,12268,\"In his office, someone leans his head back on a pillow. Someone falls backward onto the bed, the phone\",\"In his office, someone leans his head back on a pillow.\",\"Someone falls backward onto the bed, the phone\",gold,drops to her shoulder.,clutched to her chest.,protruding from his shoulder.,dangling at its belt and a nurse struggles to reach into her walkie.\n15437,lsmdc3040_JULIE_AND_JULIA-18139,12270,\"As he reads her latest entry, he swallows hard. In the apartment, someone\",\"As he reads her latest entry, he swallows hard.\",\"In the apartment, someone\",gold,sits in his yearbook room.,\"is lying on the floor on the bed, pretending to sleep.\",\"lays face - down on the bed with a pillow over her head, and the phone clutched in her hand.\",reaches his apartment door.\n15438,lsmdc3040_JULIE_AND_JULIA-18139,12269,\"Someone falls backward onto the bed, the phone clutched to her chest. She\",\"Someone falls backward onto the bed, the phone clutched to her chest.\",She,gold,buries her face in his hands.,starts shaking her head and walking toward the door.,rushes out of the stairwell and stops just rounding a corner.,turns it on again and listens.\n15439,lsmdc3040_JULIE_AND_JULIA-18139,12264,\"She moves the cursor to the publish button on screen and clicks it, then turns off the desk lamp. Someone\",\"She moves the cursor to the publish button on screen and clicks it, then turns off the desk lamp.\",Someone,gold,joins her father as her hand grabs his.,picks up the cordless phone and dials.,\", someone feeds her some of the things she just received.\",\"looks over at the young male, who still lies behind a chair as she shuffles the driver door covering the shelves and heads out\"\n15440,lsmdc3040_JULIE_AND_JULIA-18139,12266,\"Meanwhile in his office, someone lies on the couch reading. He\",\"Meanwhile in his office, someone lies on the couch reading.\",He,gold,pulls a button off her duct tape.,notices a note propped up on a broomstick.,glances at the phone.,shows us the paper in an identical newspaper.\n15441,lsmdc3040_JULIE_AND_JULIA-18139,12267,\"In the apartment, someone hangs up. In his office, someone\",\"In the apartment, someone hangs up.\",\"In his office, someone\",gold,leans his head back on a pillow.,rubs the customer's bag over his hand and fumbles around.,\"pats someone's thigh, then meets his gaze.\",comes into the kitchen looking out a window at the back of the cafe.\n15442,anetv_8tddzer_NfY,377,\"She poses with her baton, and begins dancing. She\",\"She poses with her baton, and begins dancing.\",She,gold,\"performs her routine, teaching a series of people to perform flips.\",gets the baton and continues.,flips and spins the baton as she dances.,\"moves to one side, and puts her foot on the crystal air.\"\n15443,anetv_8tddzer_NfY,376,A young woman wearing a pink dress walks onto a gym floor. She,A young woman wearing a pink dress walks onto a gym floor.,She,gold,is playing a game of hopscotch on a trampoline.,girl is seen sitting on a couch drinking a soda from a coffee mug.,rides an exercise bike.,\"poses with her baton, and begins dancing.\"\n15444,anetv_8tddzer_NfY,378,She flips and spins the baton as she dances. She,She flips and spins the baton as she dances.,She,gold,hangs up the hoop and twirls around the room.,finishes with a graceful bow before leaving the gym.,\"secures her wrist with the hoop, then dismounts and jumps in her tracks.\",\"jumps on the court, does a series of jumps before she is laying down.\"\n15445,anetv_8tddzer_NfY,178,She does the splits on the floor. She,She does the splits on the floor.,She,gold,stops and listens and lands a few feet away.,climbs into the pit with all her strength.,bows and walks off the floor.,throws the mop on the floor.\n15446,anetv_8tddzer_NfY,175,She starts dancing and twirling a baton on the floor. She,She starts dancing and twirling a baton on the floor.,She,gold,does a front flip on the floor.,throws a baton into the air and receives a text with her.,\"spins around, flipping herself keeps going and capturing us with her hand.\",does a belly dance around on the stage.\n15447,anetv_8tddzer_NfY,176,She does a front flip on the floor. She,She does a front flip on the floor.,She,gold,drops her baton on the ground and picks it up.,goes down along the bars and does dance again.,is swinging back and forth on the beam.,jumps from the bars and lands on the back bumper.\n15448,anetv_8tddzer_NfY,177,She drops her baton on the ground and picks it up. She,She drops her baton on the ground and picks it up.,She,gold,begins to flash the dances as she starts to walk off.,help her free hand as she yells.,does the splits on the floor.,spins it over her shoulders to find it in the sea.\n15449,anetv_8tddzer_NfY,174,A woman walks onto a gym floor. She,A woman walks onto a gym floor.,She,gold,starts dancing and twirling a baton on the floor.,puts down a pair of scissors.,jumps in the water with steppers.,jumps over a bar with a white rag and words over the screen.\n15450,lsmdc0017_Pianist-56222,12664,\"Someone tries to untie the string, but he is too terrified and can't manage it. The ss Lieutenant\",\"Someone tries to untie the string, but he is too terrified and can't manage it.\",The ss Lieutenant,gold,\"shoves him out of the way, then takes from his belt a dagger and cuts the string.\",\"studies someone, then shakes his head and his hands on his hips.\",directs someone to join someone.,already has the bar turned on the music.\n15451,lsmdc0017_Pianist-56222,12668,He throws the oatmeal in someone's face. He,He throws the oatmeal in someone's face.,He,gold,kicks someone viciously and marches away.,starts exhaling and his eye pulls again.,grab her by the butt.,throws the ball at his hair.\n15452,lsmdc0017_Pianist-56222,12667,\"He glowers at someone, reaches in again, produces a handful of oatmeal. He\",\"He glowers at someone, reaches in again, produces a handful of oatmeal.\",He,gold,\"slides over to someone, who looks around.\",\"pops the ball over his mouth, like a tiny bird holding it to his ear.\",sets down a pen and places it on his inside.,throws the oatmeal in someone's face.\n15453,lsmdc0017_Pianist-56222,12671,\"He hides them under his clothes. The Jewish workers, with their bundles of potatoes and bread,\",He hides them under his clothes.,\"The Jewish workers, with their bundles of potatoes and bread,\",gold,removes a chain gun from fallen wood that collapses in a stall.,steps up on top of the goateed man.,sits some on the construction grid.,march back towards the ghetto gates escorted by the two polish policemen.\n15454,lsmdc0017_Pianist-56222,12666,The ss Lieutenant reaches in and withdraws a handful of long yellow beans. He,The ss Lieutenant reaches in and withdraws a handful of long yellow beans.,He,gold,children stares and passes them.,dashes to the end of the cross and lands directly on the grass.,\"glowers at someone, reaches in again, produces a handful of oatmeal.\",takes out a fake carrot.\n15455,lsmdc0017_Pianist-56222,12669,He kicks someone viciously and marches away. Someone,He kicks someone viciously and marches away.,Someone,gold,\"catches his breath, then quickly reaches into the bottom of the sack and finds a pistol and ammunition.\",shuts around an abandoned car and dumps it down in his own wheel suit.,\"lobs a red balls to someone, who turns on her.\",wedges the blade against the vampire's leg.\n15456,lsmdc0017_Pianist-56222,12670,\"Someone catches his breath, then quickly reaches into the bottom of the sack and finds a pistol and ammunition. He\",\"Someone catches his breath, then quickly reaches into the bottom of the sack and finds a pistol and ammunition.\",He,gold,\"puts the phone in, takes out the frozen key.\",piles up the doll's crumpled brown equipment.,runs his electric fork into the side of his temples.,hides them under his clothes.\n15457,anetv_oNc2lJ9hV9E,15387,The lady mixes her dry ingredients then mixes them in the mixer with red food coloring and pours them into cake pans cooks and cools them on racks. The lady,The lady mixes her dry ingredients then mixes them in the mixer with red food coloring and pours them into cake pans cooks and cools them on racks.,The lady,gold,\"mixes all the ingredients together by mixing the sauce to blend it in, and sets the cocktail in place.\",takes on the miracle whip.,makes frosting in the mixer and puts frosting in between the layers of cake and on top.,adds any paper ingredients to the plate.\n15458,anetv_oNc2lJ9hV9E,15385,A lady speaks in a kitchen with a medal on the screen and we see shots of cake and cooking. We,A lady speaks in a kitchen with a medal on the screen and we see shots of cake and cooking.,We,gold,see the ending title screen.,see scenes of the stylist as well as the man and the man are walking together.,see the lady make a cake and give instructions.,see a lady brush the dog's fur and cuts them again.\n15459,anetv_oNc2lJ9hV9E,15386,We see the lady make a cake and give instructions. The lady,We see the lady make a cake and give instructions.,The lady,gold,puts the cards up in the oven and teaches her how to cook the ingredients.,takes and prepares her cake pans.,pours and add some chocolate wrapping and stir the rhinestones.,dances and the lady gathers the ingredients and puts it in her mouth.\n15460,anetv_o-S8I8lhQpo,14778,She goes through tough waves. She,She goes through tough waves.,She,gold,\"has taken her by her arms in a hug, then performs her belly dancing.\",\"goes over a large wave, which knocks her over.\",leaves the trunk and the motorcycle carefree pull hard.,falls onto the bars.\n15461,anetv_o-S8I8lhQpo,14777,A woman is parasailing in the ocean. She,A woman is parasailing in the ocean.,She,gold,is holding a sailboat in her hands.,is shown a fish from the ocean with lightning.,stands with the tubes flowing beside her.,goes through tough waves.\n15462,lsmdc3070_THE_CALL-32652,13000,A man reaches into the broken window as someone goes to the stairs. Someone rapidly,A man reaches into the broken window as someone goes to the stairs.,Someone rapidly,gold,grabs a bag of suitcases and leaves.,types on her computer.,bares his muscles as he slips back into the mud.,\"raises his eyes, setting a hand on his daughter.\"\n15463,lsmdc3081_THOR-37945,4701,Someone blinks at someone then nods. A bartender,Someone blinks at someone then nods.,A bartender,gold,swigs milk from a bottle.,discreetly consults her notes.,holds up a cup of coffee.,sets down two shots and two mugs of beer.\n15464,lsmdc3081_THOR-37945,4704,\"Traveling by means of a Bifrost bridge, a person rockets down onto the icy surface of Jotunheim. Later, amid the crumbled ruins, someone\",\"Traveling by means of a Bifrost bridge, a person rockets down onto the icy surface of Jotunheim.\",\"Later, amid the crumbled ruins, someone\",gold,hears an alien run inside.,reclines in a casket beside her.,\"stalks out, standing on a bow hook, brooding.\",\"steps past frost giants as he approaches king someone, who sits on his throne.\"\n15465,lsmdc3081_THOR-37945,4702,A bartender sets down two shots and two mugs of beer. Someone,A bartender sets down two shots and two mugs of beer.,Someone,gold,grabs the camera and waves.,pours the shots into the beers then touches his glass against someone's.,\"puffs on a snack, then smiles at someone and gives sits a little grin while the two of them raise away.\",guides the loaf to his mouth.\n15466,lsmdc3081_THOR-37945,4705,\"Later, amid the crumbled ruins, someone steps past frost giants as he approaches king someone, who sits on his throne. Someone\",\"Later, amid the crumbled ruins, someone steps past frost giants as he approaches king someone, who sits on his throne.\",Someone,gold,watches his horse soar off the walkway in both directions.,cocks his head to one side.,\"bounces up him by stone steps, holding someone by the scar on his face.\",\"holds someone and pushes someone forward, staring off a equal strand of someone's fringe and blanket.\"\n15467,anetv_0fsMeZoZzJI,7318,We see a shirtless man enter a bathroom. We,We see a shirtless man enter a bathroom.,We,gold,see a girl shaving a man's leg in the bathtub.,see an indoor field full of machinery.,see a ballerina in a water.,see a man off the mirror.\n15468,anetv_0fsMeZoZzJI,6652,A person then shaves the mans leg while speaking to the camera. The woman,A person then shaves the mans leg while speaking to the camera.,The woman,gold,continues shaving as the camera walks away.,continues torching the side.,grabs a razor on her face and continues shaving her cars while speaking to the camera.,raise the tools by sitting down while the man watching them.\n15469,anetv_0fsMeZoZzJI,7319,We see a girl shaving a man's leg in the bathtub. The woman,We see a girl shaving a man's leg in the bathtub.,The woman,gold,use a stepper to shave his beard and shave.,shows us a toothbrush.,points at the man's leg.,cuts her pink fingernails.\n15470,anetv_0fsMeZoZzJI,7320,The woman points at the man's leg. The camera,The woman points at the man's leg.,The camera,gold,lifts the shoe up again.,turns to reveal both the defensive goddess in dragon queen.,pans towards the man.,returns to show the ending stance.\n15471,anetv_0fsMeZoZzJI,7321,The camera pans towards the man. We,The camera pans towards the man.,We,gold,see a pile of flowers in the door.,see divers swimming in the ocean.,see a person in a gray shirt and a toilet.,see the closing screen on the screen.\n15472,anetv_DAv8CEings8,3930,A crowd is gathered around a shuffle board. four people,A crowd is gathered around a shuffle board.,four people,gold,are standing on stilts and a team dressed in their gear.,are standing playing shuffleboard.,are in the arena playing clapping.,begin wrestling throwing dodge balls at each other.\n15473,anetv_DAv8CEings8,3931,Four people are standing playing shuffleboard. three people,Four people are standing playing shuffleboard.,three people,gold,are playing volleyball in the net.,are helping to make a red dvd bar at the very end.,\"are playing instruments, holding their hands and playing the drums.\",are sitting watching the shuffleboard game.\n15474,anetv_DAv8CEings8,5036,A group of elderly people play shuffle board on an outdoor court. They,A group of elderly people play shuffle board on an outdoor court.,They,gold,people pass them in outdoor line as another crowd stands around the circle as they pull the rope.,play lacrosse in a dirt stadium outdoors.,and the coach are trying to play very different people in the outfield.,take turns pushing the puck towards the end of the game board.\n15475,anetv_701qhmCLPxU,15848,The person bounces up to a standing position to start the routine. The person,The person bounces up to a standing position to start the routine.,The person,gold,continues down the game.,kicks the ball to the ground to continue to run.,lifts the balls up angle and hitting it.,bounces on the rope and with her stomach.\n15476,anetv_701qhmCLPxU,15847,A girl climbs onto a slack line rope. The person,A girl climbs onto a slack line rope.,The person,gold,starts a special cartwheel on a person.,is executing a arch.,bounces up to a standing position to start the routine.,does a flip harness.\n15477,anetv_701qhmCLPxU,3050,\"Then, the girl stands on the rope and jump on her legs, and touches the rope with the body and buttocks. At the end, the girl\",\"Then, the girl stands on the rope and jump on her legs, and touches the rope with the body and buttocks.\",\"At the end, the girl\",gold,stops and stands on the horse.,shows landed on a horse's back and stands in the air.,finally leaps up as an older woman gets thrown over the floor and performs with life at the top.,\"jumps high, make a flip and jump on the floor.\"\n15478,anetv_701qhmCLPxU,15849,The person bounces on the rope and with her stomach. The person,The person bounces on the rope and with her stomach.,The person,gold,closes the pinata and jumps away.,flips off from the rope onto the mat.,bounces off the stands and leans back on the beam.,\"keeps looking back and smiling, looking away at the camera.\"\n15479,anetv_701qhmCLPxU,3049,\"A girl raise the left leg on a rope and bounce while people watch from the bleachers. Then, the girl\",A girl raise the left leg on a rope and bounce while people watch from the bleachers.,\"Then, the girl\",gold,jumps off the wall after she fast back to track.,\"stands on the rope and jump on her legs, and touches the rope with the body and buttocks.\",does another flip but jumps a five.,does different batons in a gym.\n15480,anetv_Cf7xy_HQ9H0,1869,He does several tricks on his rollerblades. He,He does several tricks on his rollerblades.,He,gold,swings at a pinata with his hands.,hits the cymbals again.,shows off his electric skills.,does a cart wheel on the ground.\n15481,anetv_Cf7xy_HQ9H0,1868,A man is rollerblading outside in a parking lot. He,A man is rollerblading outside in a parking lot.,He,gold,is water skating in an elevated parking lot.,is putting in the front of his shirt riding wearing the stilts stunts.,does several tricks on his rollerblades.,stands on the front of a bicycle in front of them and begins to spin.\n15482,anetv_Tb875ldI6AY,8224,A young man is seen speaking to the camera and begins holding a cigarette. The man,A young man is seen speaking to the camera and begins holding a cigarette.,The man,gold,is used in the cup while the camera pans around.,puts the potato on a plate and begins eating it.,begins playing the guitar while hitting the ball behind with the electric guitar.,takes a puff from the cigarette while still speaking to the camera.\n15483,anetv_Tb875ldI6AY,8225,The man takes a puff from the cigarette while still speaking to the camera. The man,The man takes a puff from the cigarette while still speaking to the camera.,The man,gold,continues to work while hitting the lighter around the man.,talks to the camera while showing shots of fish in a close up in the sky.,continues smoking while looking off and speaking to the camera.,talks to a camera in an ashtray that is helping him with a cigarette and continues smoking.\n15484,anetv_xXXQyLS1uuY,10325,A person pushes a lady in a tube down a hill. We,A person pushes a lady in a tube down a hill.,We,gold,see a person ski off a raft.,see the face of the woman in front and the lady looks her in the eye.,see a tuber person from their point of view cut with scenes of the tubes going down the hill.,see people in the desert.\n15485,anetv_xXXQyLS1uuY,10324,We see a person tubing down a hill and a intro screen on the left. A person,We see a person tubing down a hill and a intro screen on the left.,A person,gold,is being interviewed by people.,pushes a lady in a tube down a hill.,runs up a steep hill.,move along the snow with a pile of inter tubes.\n15486,anetv_xXXQyLS1uuY,10013,Several people are shown riding the tubes down the paths. They,Several people are shown riding the tubes down the paths.,They,gold,ride around before flipping and flipping around the water.,\"rake along the road, disappearing through the rapids.\",smile and laugh as they go downhill.,continue tubing and falling onto the water.\n15487,anetv_xXXQyLS1uuY,10326,We see a tuber person from their point of view cut with scenes of the tubes going down the hill. The lady reaches the bottom of the hill and the tube,We see a tuber person from their point of view cut with scenes of the tubes going down the hill.,The lady reaches the bottom of the hill and the tube,gold,falls to her lips.,spins on the snow.,slides to ash.,zooms in again before the other walks over the fence with the snow.\n15488,anetv_xXXQyLS1uuY,10012,A child zooms past the camera on a snowy hill. Several people,A child zooms past the camera on a snowy hill.,Several people,gold,paddle out riding down a river continuously.,are seen riding in tubes as well as riding.,\"are seen riding along the mountain, the camera barely spraying in the snow.\",are shown riding the tubes down the paths.\n15489,anetv_sYphlW-m1pU,11967,He grabs the cube again and begins to complete it. He,He grabs the cube again and begins to complete it.,He,gold,\"shows the case on the desk, shifting to his feet on the ground.\",is still jerks a little feet up from the wall.,finishes again and starts another game of the cube.,flips and starts talking through paperwork with two hands.\n15490,anetv_sYphlW-m1pU,11965,A young boy is sitting in front of a desktop as he plays with a Rubik cube. He,A young boy is sitting in front of a desktop as he plays with a Rubik cube.,He,gold,finishes and solves the cube.,finishes the cube and sets it on the desk and quickly stops a timer.,solves a small cube puzzle while twisting the cube puzzle and holds it over his finger every week.,mows the sky with a map.\n15491,anetv_sYphlW-m1pU,11966,He finishes the cube and sets it on the desk and quickly stops a timer. He,He finishes the cube and sets it on the desk and quickly stops a timer.,He,gold,reaches in front of his friend then tosses it into the air.,turns on the puzzle to remove the cube from the pocket clock.,grabs the cube again and begins to complete it.,shows off the envelope with the digital before applying it across his lap.\n15492,lsmdc0043_Thelma_and_Luise-68258,16578,Someone did not realize she was doing it. Someone,Someone did not realize she was doing it.,Someone,gold,cast someone his army stance back.,cocks the fried stalls.,slams the closet door.,takes out a flash photo.\n15493,anetv_ctFlPn4EfkU,4277,People are playing golf on the grass. A man,People are playing golf on the grass.,A man,gold,hits the ball with a club.,\", wearing white shirt is talking.\",walks standing in front of someone holding a flash stick.,is holding a surf in his hands.\n15494,anetv_1LrEiYVd3qg,11699,The man is then seen kneeling over a fire and begins lighting a flame into a pit. A boy,The man is then seen kneeling over a fire and begins lighting a flame into a pit.,A boy,gold,is seen sitting up on fire and also hitting the sticks with a broom.,plays a set of bagpipes as well as paint lines on the door.,is seen dipping hands in a bucket and speaking to the camera while speaking to the camera.,is seen walking around with a tennis racket and points to the ground while the man is still sitting in front of the fire.\n15495,anetv_1LrEiYVd3qg,11698,A man is seen speaking to the camera in front of a large trailer in he moods. The man,A man is seen speaking to the camera in front of a large trailer in he moods.,The man,gold,is then seen kneeling over a fire and begins lighting a flame into a pit.,mixes several different shots of the car as well as moving along a street area over and over again in several shots and techniques.,continues pushing the machine and moving it down and several more plaster in.,continues playing and leads into some people playing crochet behind him.\n15496,anetv_W4XaqnwD6gU,5212,A man is seen playing a violin while the camera pans all around him moving his arms up and down. The man continues to play while others play behind him and the violinist,A man is seen playing a violin while the camera pans all around him moving his arms up and down.,The man continues to play while others play behind him and the violinist,gold,continues to play and instructions.,speak while smiling to the camera.,playing and looking at the audience.,continues to play him and his play is shown again.\n15497,anetv_HYYQ56oZSDM,19463,A woman and man dancing provocatively outside of a restaurant. She,A woman and man dancing provocatively outside of a restaurant.,She,gold,is talking to him holding a photo of a woman.,women to the man in olive green blue shirt measures headlamp as a guide.,goes to the kitchenette.,is wearing a very sexy short dress and kicking her legs up and down in heels.\n15498,anetv_kLflIBGCNrc,3554,A large group of people are seen swimming around a pool playing a game while the video pauses to show off players. The camera,A large group of people are seen swimming around a pool playing a game while the video pauses to show off players.,The camera,gold,captures their movements getting it done and lead to several people shooting.,continues to pan around the players swimming all around the pool throwing a ball and others reacting on the sidelines.,pans around the man taking out more of the cups and leads into him hitting a ball and speaking to the camera.,shows the person throwing the ball to another room while one man films him and that cheers all his awards.\n15499,anetv_LVG7DLzI-GM,17510,\"The lady deals out two card each 5 times and deals her self one card. the lady then explains what you are allowed to do with the cards that you where dealt with, she also\",The lady deals out two card each 5 times and deals her self one card.,\"the lady then explains what you are allowed to do with the cards that you where dealt with, she also\",gold,holds up a plastic bag.,deals out two more cards one each deck.,makes a good shot with different customers.,jumps to give a guest names part of which point she misses again.\n15500,anetv_LVG7DLzI-GM,17509,A lady that works at a casino shows you how to play black jack. the lady,A lady that works at a casino shows you how to play black jack.,the lady,gold,carries the box and talks to the camera while doing putting the card on the floor.,sets the case aside.,deals out two card each 5 times and deals her self one card.,pass the woman and place the fine polished foot using careful bicycles and pasta.\n15501,lsmdc0038_Psycho-67140,15693,\"Someone opens door, looks in. Someone\",\"Someone opens door, looks in.\",Someone,gold,strides to the sink under the bed and leans on over the counter.,\"is drinking from a large tumbler, winks at her without pausing in his drinking.\",\"stares at his hat occasionally, then gazes ahead with flashlights.\",whips the cigarette from his pocket with his gloved hand.\n15502,lsmdc0038_Psycho-67140,15691,\"When the men are gone and the door is closed, someone picks up a bundle, smiles at it. Someone\",\"When the men are gone and the door is closed, someone picks up a bundle, smiles at it.\",Someone,gold,is signing more sheet space tears.,has put one bundle into a large envelope and takes the other from someone.,struggles wants to dance.,\"contemplates the couch, then walks out and puts on other clothes.\"\n15503,lsmdc0038_Psycho-67140,15692,\"When the bills are away, she puts the filled envelope in her handbag, notices the remaining deed copies on her desk, picks them up, goes to the private office door, knocks, starts to open door as. Someone\",\"When the bills are away, she puts the filled envelope in her handbag, notices the remaining deed copies on her desk, picks them up, goes to the private office door, knocks, starts to open door as.\",Someone,gold,\"lights up and number 11 - 1 watching reads the next six, the logo 0 '.\",stops the cart's horn and hops out.,\"looks at the picture, still standing behind her until she dials a hippie, and looks on.\",\"opens door, looks in.\"\n15504,lsmdc0038_Psycho-67140,15694,\"Someone is drinking from a large tumbler, winks at her without pausing in his drinking. Someone\",\"Someone is drinking from a large tumbler, winks at her without pausing in his drinking.\",Someone,gold,picks up a plastic foil.,\"remains on threshold a moment, then crosses to the desk, talking as she goes.\",slips a peek through the envelope.,turns and fidgets then cheers his way.\n15505,lsmdc0038_Psycho-67140,15688,\"He rises, reels toward someone's office, pauses, turns, speaks to someone, meaningfully. Someone\",\"He rises, reels toward someone's office, pauses, turns, speaks to someone, meaningfully.\",Someone,gold,\"starts after him, pauses, turns to someone.\",stops and sniffs his drink.,signals and leaves the booth.,is too terrified to sway as he holds up his right hand.\n15506,lsmdc0038_Psycho-67140,15689,\"Someone starts after him, pauses, turns to someone. Someone\",\"Someone starts after him, pauses, turns to someone.\",Someone,gold,has gone into lower's office.,stands on an elbows - post bridge.,walks into and slowly walks to the door.,continues to kiss at the shelves.\n15507,anetv_dfex2oZYqmU,9259,A soccer match is occurring on a field and a player is shown falling down. The man is able to get up and the video,A soccer match is occurring on a field and a player is shown falling down.,The man is able to get up and the video,gold,is in the end.,clearly completed the contract for pictures.,shows the fall again in slow motion.,starts at the end of the video.\n15508,anetv_dfex2oZYqmU,9260,The players continue playing and one of them even scores a goal. The goal,The players continue playing and one of them even scores a goal.,The goal,gold,is shown over and over in low motion to show the significance of the play.,setting up against a shelf.,is shown again in slow motion and hits another.,is over again the team looks with.\n15509,anetv_bzJTmN6wAC4,8445,A man is seated in front of a canvas. He,A man is seated in front of a canvas.,He,gold,is using a palette to paint an ombre scene.,is slowly shaving on his head.,is extensively about his using.,moves canvas and bowls a piece of the fish.\n15510,anetv_rEDbnmvTblI,7631,\"At the bottom, a large pile of tubes stops the person from sliding further. The camera\",\"At the bottom, a large pile of tubes stops the person from sliding further.\",The camera,gold,zooms in and out of view that is glistening to the bottom of a hill.,pans left to show a video of them riding out.,pans to another group of people who have also finished sliding down the slope.,split a men is standing behind one child using a paddle to scan the area.\n15511,anetv_rEDbnmvTblI,7630,\"They quickly slide down and travel through the snowy path. At the bottom, a large pile of tubes\",They quickly slide down and travel through the snowy path.,\"At the bottom, a large pile of tubes\",gold,stops the person from sliding further.,continue to pick themselves up.,continue up and a man gives up their replays.,loads again before riding on back on the cliff.\n15512,anetv_rEDbnmvTblI,7629,\"The person starts at the top of the slope, riding a tube. They\",\"The person starts at the top of the slope, riding a tube.\",They,gold,ride in the car moving their luggage up and down.,quickly slide down and travel through the snowy path.,come into a residential house.,\"ride the snow on a river with tubes, while riding boats.\"\n15513,anetv_rEDbnmvTblI,7628,The video is shot in first person view along a snowy slope. The person,The video is shot in first person view along a snowy slope.,The person,gold,rides on the boat.,\"starts at the top of the slope, riding a tube.\",shifts bikes down to the watering lanes.,comes down on the lease.\n15514,lsmdc3024_EASY_A-11586,965,\"He presents a gift card. Staring at it, someone\",He presents a gift card.,\"Staring at it, someone\",gold,looks at the open carriage door.,gives a sad smile and leaves as he sings.,tears up and bites her lip.,slides the photo on the table.\n15515,lsmdc3024_EASY_A-11586,974,She gives a grateful nod. Now someone,She gives a grateful nod.,Now someone,gold,\"enters, trees with misty wafting mist.\",\"drives, as someone cries in the passenger seat.\",stands on top of the grand hall.,kicks a registration book.\n15516,lsmdc3024_EASY_A-11586,969,She turns her back to him and cries. She,She turns her back to him and cries.,She,gold,enters the engine room and arrives.,bites her lip hard.,\"rolls onto his back, grasping for his crotch.\",rises and raises her arms.\n15517,lsmdc3024_EASY_A-11586,971,Someone picks at the stitching of her a.. Someone,Someone picks at the stitching of her a..,Someone,gold,stands alone in the race track: energy beam.,steps up out of the tank.,comes out from the back of the building.,gets on the wall.\n15518,lsmdc3024_EASY_A-11586,966,\"Staring at it, someone tears up and bites her lip. Someone\",\"Staring at it, someone tears up and bites her lip.\",Someone,gold,hustles towards it and disappears.,takes someone's eyes to her.,kisses lightly still someone neck.,looks up at him with a wounded glare.\n15519,lsmdc3024_EASY_A-11586,973,Someone's car peals through the parking lot as the off - duty waiter approaches the tearful girl. She,Someone's car peals through the parking lot as the off - duty waiter approaches the tearful girl.,She,gold,\"takes a stationary bellowing boy in his tuxedo, and turns on the mic.\",\"looks around, then as sisters kneel.\",gives a grateful nod.,gathers several liquids from a jar for her and someone.\n15520,lsmdc3024_EASY_A-11586,972,Someone comes out from the back of the building. Someone's car peals through the parking lot as the off - duty waiter,Someone comes out from the back of the building.,Someone's car peals through the parking lot as the off - duty waiter,gold,applies the flashing sign.,approaches the tearful girl.,runs after the fleeing soldier.,rises to her knees.\n15521,lsmdc3024_EASY_A-11586,968,She chucks the gift card at him. She,She chucks the gift card at him.,She,gold,leans over and kisses her.,fills out a sack of cash.,\"notices him and heads off, leaving the cashier, bag on.\",turns her back to him and cries.\n15522,lsmdc3024_EASY_A-11586,975,\"Now someone drives, as someone cries in the passenger seat. She\",\"Now someone drives, as someone cries in the passenger seat.\",She,gold,heads off stage at someone's's dilapidated hotel hall.,\"gets up, hesitantly at the crash - stand.\",\"stands ahead, backs gravel, and raises his feet.\",\"shakes her head, wincing tearfully.\"\n15523,lsmdc3024_EASY_A-11586,967,Someone wrestles him off her. She,Someone wrestles him off her.,She,gold,\"pulls into a car in the observation booth, while protesters watch and see people running along the road through a quiet desert.\",\"gives her a little smile, someone hurries into the elevator as well as the number even.\",chucks the gift card at him.,webs grab one of the ladder chains and pull him off the side.\n15524,anetv_uh-H5Gmt4PI,3204,The male's friend then grabs a bar and begins lifting weights and jerking. All of the actions,The male's friend then grabs a bar and begins lifting weights and jerking.,All of the actions,gold,continue but with different people as various people step up to grab the bar.,are held properly throwing the cement head down.,are shown that includes some ballet shots.,are then shown with one man holding where the vault was covered with ice.\n15525,anetv_uh-H5Gmt4PI,3203,A bald man is standing in an industrial building with a lot of glass on the ceiling. The male's friend then,A bald man is standing in an industrial building with a lot of glass on the ceiling.,The male's friend then,gold,begins stepping over tiles to get his shaved positions.,grabs a bar and begins lifting weights and jerking.,put on the goggles while skiing.,lifts up parts of the ceiling and begins putting him down the wall.\n15526,anetv_oyLTgy93soQ,1796,\"A gymnast holds a heavy ball on his right hand, then the gymnast turns to his side and throws the ball to the ground while people watch him. A person\",\"A gymnast holds a heavy ball on his right hand, then the gymnast turns to his side and throws the ball to the ground while people watch him.\",A person,gold,\"dance on the tight lifts to the male, then in the standing man performing the japanese routine on stilts.\",watches the other gymnasts on the side of the green rope forested with one arm.,spins the dart around and throws his jump.,cleans his face with a towel.\n15527,anetv_oyLTgy93soQ,9067,She throws a ball across a lawn. They,She throws a ball across a lawn.,They,gold,grab each other on the rope.,arrange flowers from a pile.,measure the distance to the ball.,try to hit the pinata.\n15528,anetv_oyLTgy93soQ,9066,A women is outside wearing a jersey. She,A women is outside wearing a jersey.,She,gold,walks down a track as she runs down a trail.,is bathing at the tree.,throws a ball across a lawn.,\"talks in a room filled with men, in the middle of a gym.\"\n15529,lsmdc1023_Horrible_Bosses-82046,3680,They get in someone's car. A squad car,They get in someone's car.,A squad car,gold,runs out of them.,follows her as he climbs into the driver's seat.,has blocked them in.,drives down a wall.\n15530,lsmdc1010_TITANIC-77132,219,Someone looks down at his unlaced boots. Someone,Someone looks down at his unlaced boots.,Someone,gold,\"strides on, peeking out of the broken window.\",\"gets on a skateboard and approaches the farmhouse, where a black - bearded man runs through the fuel station.\",looks down as the man walks off.,dips someone's head and brings him all along the small ledge.\n15531,lsmdc1010_TITANIC-77132,217,He steps up to someone and holds out a cigarette case. Someone,He steps up to someone and holds out a cigarette case.,Someone,gold,opens the door to the living room and uses a dark laundry box.,\"takes two cigarettes, placing one in his mouth and the other behind his left ear.\",is speaking to her boss.,strides past someone.\n15532,lsmdc1010_TITANIC-77132,218,\"Someone takes two cigarettes, placing one in his mouth and the other behind his left ear. Someone\",\"Someone takes two cigarettes, placing one in his mouth and the other behind his left ear.\",Someone,gold,\"looks nervous, still looking somewhat entranced.\",looks down at his unlaced boots.,laughs appreciatively as the others continue behind him.,watches him struggle off as if she was going to get stuck.\n15533,lsmdc1010_TITANIC-77132,221,\"In her berth, someone sits at a vanity table and holds her silver hand mirror. She\",\"In her berth, someone sits at a vanity table and holds her silver hand mirror.\",She,gold,\"drops on the floor on her bed, then turns and looks down at them together.\",pushes a silver dress with autumn tape over her head.,sets down the mirror as someone opens the door.,\"turns, strides up the steps, her long hair combed by someone's hair.\"\n15534,lsmdc1010_TITANIC-77132,220,\"Someone looks down as the man walks off. In her berth, someone\",Someone looks down as the man walks off.,\"In her berth, someone\",gold,lies at a laptop.,sits at a vanity table and holds her silver hand mirror.,sits pensively on a log as she sketches herself.,sits at a table with several other bridesmaids.\n15535,anetv_9PGFsuE3Ye0,6686,The man celebrates as people watch and clipart is shown as well as more shots of the man celebrating and bowling. The man,The man celebrates as people watch and clipart is shown as well as more shots of the man celebrating and bowling.,The man,gold,celebrates the javelin throw and ends with the man holding a javelin.,continues to speak again with the closing instruction shown in the screen.,holds a trophy in the end and screams to the camera and the audience.,turns around on his back showing his board and performing various flips and tricks.\n15536,anetv_9PGFsuE3Ye0,6685,A man is seen doing karate in front of another with a knife and leads into a shot of a man bowling and text across his face. The man,A man is seen doing karate in front of another with a knife and leads into a shot of a man bowling and text across his face.,The man,gold,walks into view and begins working out of his pants.,is then seen throwing a basketball on a rock and jumping in slow motion.,continues to sit on the ground while still bowling with his stick.,celebrates as people watch and clipart is shown as well as more shots of the man celebrating and bowling.\n15537,anetv_G1LGXWN_9v4,12134,A man is seen playing a bongo drum quickly moving his hands all around the instrument. He,A man is seen playing a bongo drum quickly moving his hands all around the instrument.,He,gold,continuously plays the drum while closing his eyes in concentration and ends by hitting his hands faster.,walks across the couch and speaks to the camera.,begins moving the instrument as the man performing on the instrument and moving it back and fourth.,stops some notes on the tennis instrument and continues to speak for a while at the end.\n15538,anetv_rYcac4QmSms,6230,She rides up in a yellow cart. She,She rides up in a yellow cart.,She,gold,carves a knife into a push pot.,slides along a log onto others.,jumps off the side of the cart and bungee jumps.,runs towards the weights.\n15539,anetv_rYcac4QmSms,2256,A girl is seen laying on a platform and begins walking towards the camera. She,A girl is seen laying on a platform and begins walking towards the camera.,She,gold,continues dancing around with people up on the sides and ends by brushing her hair.,steps on a platform that lifts her up while speaking to the camera and looking around.,seems disappointed in her and leads into other girls performing jump ropes.,moves up and down the board while looking off into the distance with several hands.\n15540,anetv_rYcac4QmSms,6231,She jumps off the side of the cart and bungee jumps. She,She jumps off the side of the cart and bungee jumps.,She,gold,stands at the end of the diving board and stands upright.,lays back down on the mat to get the harness taken off.,takes a plane leap into the air.,climbing another set of stairs then crashes on a hard board.\n15541,anetv_rYcac4QmSms,2257,She steps on a platform that lifts her up while speaking to the camera and looking around. She then,She steps on a platform that lifts her up while speaking to the camera and looking around.,She then,gold,walks over and lifts her leg.,jumps off the side and lands on a mat with two others helping her off.,moves the glass all along the machines as well as the others working on the side.,moves her arms around while moving her arms back and fourth while smiling and smiling.\n15542,anetv_rYcac4QmSms,6229,A woman is laying down getting a harness put on her. She,A woman is laying down getting a harness put on her.,She,gold,goes to set up a toothbrush.,puts her leg in the bar.,uses a brush to adjust the sheet.,rides up in a yellow cart.\n15543,lsmdc1014_2012-78858,2473,The watcher in the trees is a guy called someone. He,The watcher in the trees is a guy called someone.,He,gold,frowns enviously and snatches a wands.,reports into a walkie - talkie on the activity by the basin.,\"walks past him with someone higher, driving for a closer look.\",continues to stare at it as he backs and moves away from the pillar.\n15544,lsmdc1014_2012-78858,2474,\"Someone sits in the passenger seat of an army geep, the kids in the back. They\",\"Someone sits in the passenger seat of an army geep, the kids in the back.\",They,gold,notice an muscle police taxi across the street toward their car.,are standing at the wheel of the bus.,approach someone from behind the desk.,arrive at a busy research facility.\n15545,lsmdc1014_2012-78858,2471,\"Stationed amongst the trees on a hillside, somebody watches the three of them through binoculars. Steam\",\"Stationed amongst the trees on a hillside, somebody watches the three of them through binoculars.\",Steam,gold,\"by the roof, they cross the gathering in a circular shop surrounded by tall columns.\",get out of the plane of a rental car.,\"up as someone walks in the crowded convention room, a bunch of reporters and photographers are standing behind the four.\",rises from the lake bad around someone.\n15546,lsmdc1014_2012-78858,2466,\"Someone and her brother, someone, follow someone along a sparse trail. They\",\"Someone and her brother, someone, follow someone along a sparse trail.\",They,gold,\"stand near balls and make hand stands, still stomping of someone's arms.\",cross to the departing staffer.,\"scan the corner, stopping facing someone.\",\"arrive at a clearing with a parched, lake basin in the middle.\"\n15547,lsmdc1014_2012-78858,2467,\"They arrive at a clearing with a parched, lake basin in the middle. They\",\"They arrive at a clearing with a parched, lake basin in the middle.\",They,gold,head down to the cordoned off basin which is bubbly and marshy underfoot.,\"went into the makeshift housing enclosure, passed the kitchen counter.\",\"turned around in the grass, formed in a bunch of crumpled plants.\",react to the sight.\n15548,lsmdc1014_2012-78858,2469,Big tripods have been positioned within the cordon. Someone and the kids,Big tripods have been positioned within the cordon.,Someone and the kids,gold,chase the inspectors at the fair.,gather outside holding pumpkins.,\"approach a dead, rotting stag.\",\"hurry around a track, selling their awards.\"\n15549,lsmdc1014_2012-78858,2470,\"Someone and the kids approach a dead, rotting stag. Stationed amongst the trees on a hillside, somebody\",\"Someone and the kids approach a dead, rotting stag.\",\"Stationed amongst the trees on a hillside, somebody\",gold,watches the three of them through binoculars.,tries to enter the camp again.,falls to the floor.,reads someone finally point to the front wall among the residents at the table.\n15550,lsmdc1014_2012-78858,2472,He takes his kid's hands as a conveyor army comes arising in the top infornt of him. The watcher in the trees,He takes his kid's hands as a conveyor army comes arising in the top infornt of him.,The watcher in the trees,gold,is a guy called someone.,is almost deserted and the house cracks with rage.,takes an upright breath.,reaches for the right to stay clothe.\n15551,lsmdc1014_2012-78858,2468,They head down to the cordoned off basin which is bubbly and marshy underfoot. Big tripods,They head down to the cordoned off basin which is bubbly and marshy underfoot.,Big tripods,gold,\"jumps off, and it screams.\",have been positioned within the cordon.,draws on the horseman.,see covered bullets of the shooters out around them.\n15552,anetv_6_uxd3nj2d0,759,\"A woman leans over a boy, dabbing his face with a substance. He\",\"A woman leans over a boy, dabbing his face with a substance.\",He,gold,uses a color clipper and clean it.,laughs and struggles as she continues.,pulls up some baby pants.,dries his face in a towel.\n15553,anetv_6_uxd3nj2d0,760,He laughs and struggles as she continues. He,He laughs and struggles as she continues.,He,gold,takes the cello off.,\"grabs her by the hair, eating the piece of food she had been rubbing on him.\",hands five more times.,starts crying and hangs her head.\n15554,anetv_kElViDpjunQ,9118,\"After, she walks into another room and cleans a Chuck Taylor with a sponge, some liquid and a white towel. The shampoo is then shown on a table alone and the lady\",\"After, she walks into another room and cleans a Chuck Taylor with a sponge, some liquid and a white towel.\",The shampoo is then shown on a table alone and the lady,gold,brushes her hair.,rinses it in the sink.,sprays herself along under perfume.,continues to talk about it.\n15555,anetv_kElViDpjunQ,9194,An introduction comes onto the screen for a video about leather care and cleaning. A woman,An introduction comes onto the screen for a video about leather care and cleaning.,A woman,gold,begins to talk about different methods that are used to clean and care for leather.,picks up a paper and begins to get in the water.,is then seen speaking to the camera as well as showing off his top hair followed by a knitting.,talks with the woman showing one of you dollar girl's moves.\n15556,anetv_kElViDpjunQ,9196,She starts by demonstrating a dry method to clean leather and then moves on to a wet method used to clean leather. She,She starts by demonstrating a dry method to clean leather and then moves on to a wet method used to clean leather.,She,gold,proceeded to show several different products are best at properly cleaning the leather.,\"is wearing a pair of white shorts and a hillside, explaining the work.\",continues to remove her things and quickly hurry past an address.,swishes something around her lips and blow before her.\n15557,anetv_kElViDpjunQ,9195,A woman begins to talk about different methods that are used to clean and care for leather. She,A woman begins to talk about different methods that are used to clean and care for leather.,She,gold,starts by demonstrating a dry method to clean leather and then moves on to a wet method used to clean leather.,\"shows how she is looking at some of the paintings, including her.\",continues to spar while her hand grabs on some ends and the camera pans quickly to a second woman.,takes off all of it carrots and places them in a box.\n15558,lsmdc1014_2012-79192,15324,He enters the Presidential cabin. She,He enters the Presidential cabin.,She,gold,\"peers through the wrought - iron door, then grabs his coat and drives past.\",rises from the plastic.,looks away from him.,leaps from a toy fort.\n15559,anetv_R-lGXNY19wE,3654,A woman is holding a baby on the beach. She,A woman is holding a baby on the beach.,She,gold,is surfing towards the camera while holding the paddle.,cradles the kite in her hands.,sets the baby on a towel and starts rubbing sunscreen on the baby.,is trying to play a game of tennis.\n15560,anetv_R-lGXNY19wE,3655,She sets the baby on a towel and starts rubbing sunscreen on the baby. She,She sets the baby on a towel and starts rubbing sunscreen on the baby.,She,gold,continues sitting on the horse and moving her legs in both hands.,picks the baby up and gives it a kiss.,dries the hair away from the finger.,peels the shoes off and takes a paper afterwards.\n15561,anetv_II0BlR0BriI,10646,\"A group of female gymnasts form a cluster, then lift a girl over their heads. They\",\"A group of female gymnasts form a cluster, then lift a girl over their heads.\",They,gold,continue running on a mat performing front flips.,run without checking out some softball video.,slowly shuffles down the hall toward the locked door.,hold her up by one leg before twirling her back down and catch her in their arms.\n15562,anetv_II0BlR0BriI,10645,A man is talking inside a gym. A group of female gymnasts,A man is talking inside a gym.,A group of female gymnasts,gold,are practicing trying to do exercise right in a park.,is at the table.,\"dances, one jumping on a concrete eliptical.\",\"form a cluster, then lift a girl over their heads.\"\n15563,lsmdc0033_Amadeus-66751,17031,Someone plays the first half of the march with deadly accuracy. He,Someone plays the first half of the march with deadly accuracy.,He,gold,\"plays the first half again but stops in the middle of a phrase, which he repeats dubiously.\",witnesses the nail an determined to be found.,cues the match with a loop.,lunges defensively onto the rotunda from the performance.\n15564,anetv_kh42ufAYMZQ,16311,She is holding a pair of cat toe nail clippers. She gently,She is holding a pair of cat toe nail clippers.,She gently,gold,brushes his bangs with her tongue.,clips each nail one at a time.,\"attaches the wooden paw to the electric cut paw, which is the logo pasted on the hedge.\",pulls down the cat's nail and puts something into its cat.\n15565,anetv_kh42ufAYMZQ,16310,A cat is lying down in a woman's lap. She,A cat is lying down in a woman's lap.,She,gold,is eating the cat while the cat is still in her lap.,lays out of a large floor with a baby and looks to the camera.,is holding a pair of cat toe nail clippers.,is smoking while a new nail is sitting on a piece of paper.\n15566,anetv_kh42ufAYMZQ,3624,A cat is behind held by a woman as she takes out a pair of clippers and cuts her nails. The cat is then laid down across her lap and she,A cat is behind held by a woman as she takes out a pair of clippers and cuts her nails.,The cat is then laid down across her lap and she,gold,has her hands on the table.,begins clipping the claws of the cat with hairspray.,starts to clip the bottom paws.,begins moving back and fourth with her cat.\n15567,anetv_kh42ufAYMZQ,3625,The cat is then laid down across her lap and she starts to clip the bottom paws. She,The cat is then laid down across her lap and she starts to clip the bottom paws.,She,gold,vet talks to her again.,\"is finally finished, and starts to mess with the cat and the cat tries to bite her.\",touches a log and rolls with the outline.,moves the nails around the cat's paws while still plays in the grass.\n15568,anetv_kF6tSW-ZOFg,64,The lady then jumps across the hopscotch court towards the right. The lady then,The lady then jumps across the hopscotch court towards the right.,The lady then,gold,hops back where she started.,turns and slides down the chalk.,hits the dirt twice and wins.,comes forward in circles and starts laughing again.\n15569,anetv_kF6tSW-ZOFg,63,A lady stands at the end of a hopscotch court. The lady then,A lady stands at the end of a hopscotch court.,The lady then,gold,holds the hoop ring on her finger.,stands and does a belly routine.,jumps across the hopscotch court towards the right.,begins dancing with her hands on her hips.\n15570,anetv_8B4M8AsGZmQ,7869,A camera pans around a person standing and leads into him looking off into the distance and carrying gear. The man,A camera pans around a person standing and leads into him looking off into the distance and carrying gear.,The man,gold,suits up as the camera shows close ups of his board.,continues to cut down a mountain of rock and speaking to the camera.,continues riding around the rocks using a torch and moving along.,picks up a silver ball and continues looking over the net in various shots.\n15571,anetv_8B4M8AsGZmQ,7870,The man suits up as the camera shows close ups of his board. The man,The man suits up as the camera shows close ups of his board.,The man,gold,is then seen doing numerous tricks over the water while following behind a boat.,shows how to iron and melt the orange wax down.,moves a board in front of the teams and stretches in the water and looking off down the distance.,shows off the task and fails to clean the floor.\n15572,anetv_hf1JuvacaJc,19291,Individuals bowl at their lanes and knock down pins. A guy,Individuals bowl at their lanes and knock down pins.,A guy,gold,follows them before the man ends.,gets up and walks back to the room.,bowls a strike and open his mouth to express anguish.,walks up to cups and adjusts the item.\n15573,anetv_cXY-ONmtylc,19843,Man is mixing cement in a big plastic bowl. the man is talking to the camera and its milling the walls wih a spatula and a woman,Man is mixing cement in a big plastic bowl.,the man is talking to the camera and its milling the walls wih a spatula and a woman,gold,is putting wall paper in a roofed kitchen.,is doing the same.,is sanding the door finished water and putting on makeup and eating a cocktail.,putting ingredients into the glass.\n15574,anetv_cXY-ONmtylc,11930,\"A man mix concrete using a machine. After, the man\",A man mix concrete using a machine.,\"After, the man\",gold,leans on a van while holding a cigarette.,puts butter in a large press and cuts the top of the ice omelette.,washes the shoe box.,puts metal on a metal object.\n15575,anetv_cXY-ONmtylc,11934,\"Then the woman applies cement to the wall, after she takes a plank to flatten the uneven wall. Three laborers stand on the street, then they go inside and the girl\",\"Then the woman applies cement to the wall, after she takes a plank to flatten the uneven wall.\",\"Three laborers stand on the street, then they go inside and the girl\",gold,makes her task.,stops the gymnastics women.,takes a bag of cement and walk outside the home.,is scrubbed on sore and red.\n15576,anetv_cXY-ONmtylc,19845,People are laying on the store. the man,People are laying on the store.,the man,gold,passes kicks and pins.,stops using a camera.,raises his arms up and rises while laying on the grass.,is talking to the camera holding big poles.\n15577,anetv_cXY-ONmtylc,11932,\"Then, the man covers a wall with concrete. A man\",\"Then, the man covers a wall with concrete.\",A man,gold,picks it back up.,runs and cleans the floor of the ceiling.,replaces a goal with the pressure.,talks while a woman shows her arm.\n15578,anetv_cXY-ONmtylc,11933,A man talks while a woman shows her arm. Then the woman,A man talks while a woman shows her arm.,Then the woman,gold,holds the wand and polish a finger using a knife.,makes a spray with the rag and starts trimming.,\"applies cement to the wall, after she takes a plank to flatten the uneven wall.\",demonstrates how to pink on a bench in demonstrates a store product.\n15579,anetv_cXY-ONmtylc,19846,The man is talking to the camera holding big poles. the woman,The man is talking to the camera holding big poles.,the woman,gold,is playing a accordion in front of her.,is standing next to him watching him under the room and dancing blackjack.,grab a cement bag and carry it.,stands in the field on the lawn and watches the two men in the red shirt and left shoes.\n15580,anetv_cXY-ONmtylc,11931,\"After, the man leans on a van while holding a cigarette. Then, the man\",\"After, the man leans on a van while holding a cigarette.\",\"Then, the man\",gold,gets on the swing and continues taking the rings.,put ice on the tire.,covers a wall with concrete.,puts out the camera in the car.\n15581,anetv_Yfg0bZbxjVg,15424,The lady rinses the dog and wraps in him in a mustard orange towel. the lady,The lady rinses the dog and wraps in him in a mustard orange towel.,the lady,gold,takes a large tube from a boy and puts it in the faucet.,sits and talks as the dog sits in her lap.,rinses her face thoroughly.,puts on some other stuff.\n15582,anetv_Yfg0bZbxjVg,15421,We see two opening title screens. A lady,We see two opening title screens.,A lady,gold,picks up the paper and leaves.,goes down a slide.,talks in a gym.,sits on a bathtub and talks while playing with a dog.\n15583,anetv_Yfg0bZbxjVg,15422,A lady sits on a bathtub and talks while playing with a dog. The lady,A lady sits on a bathtub and talks while playing with a dog.,The lady,gold,puts the dog in the water and washes him.,follows the dogs direction and ends by petting the dog and leaving behind.,continues to shear the dog's fur.,blow the shoe up.\n15584,anetv_Yfg0bZbxjVg,15423,The lady adds more soap. The lady,The lady adds more soap.,The lady,gold,grabs the hose and gets on the machine and walks backwards out of the dirt with the hose.,wipes the rinsed put.,rinses the dog and wraps in him in a mustard orange towel.,is stroking a red spray solution.\n15585,anetv_Yfg0bZbxjVg,15425,The lady sits and talks as the dog sits in her lap. The ending credits,The lady sits and talks as the dog sits in her lap.,The ending credits,gold,is on the screen.,roll up the screen.,appears on the screen.,fall on the screen.\n15586,anetv_NzRNlTfyYtI,2862,A woman uses a NordicTrack exercise machine. The exercise machine,A woman uses a NordicTrack exercise machine.,The exercise machine,gold,shows a close shirt.,starts lifting seats straight.,is shown by itself.,is shown on the machine.\n15587,anetv_NzRNlTfyYtI,2863,The exercise machine is shown by itself. The woman,The exercise machine is shown by itself.,The woman,gold,uses the machine again.,begins to push her hair.,measures the vacuuming machine as the woman talks about what she's going to do.,is assisting the woman very close.\n15588,anetv_NzRNlTfyYtI,2864,A splash screen of a woman and a show title are shown. The woman,A splash screen of a woman and a show title are shown.,The woman,gold,plays a tennis match on stationary yoga mat.,is interviewed in a wave.,exercises on the machine again.,looks from right to left.\n15589,lsmdc3030_GROWN_UPS-14097,3193,\"Later in the lake house, someone works. Someone\",\"Later in the lake house, someone works.\",Someone,gold,staggers out of the closet.,catches someone's wrist.,rolls his eyes on someone.,watches the car curiously.\n15590,anetv_NzL_uQyQjIw,7377,\"After, men water ski jumping and turning around. Next, a person\",\"After, men water ski jumping and turning around.\",\"Next, a person\",gold,\"surf on the waves created by the boat, after the man water ski jumping and flipping high.\",\"climbs ski with the ski while a man helps, the man rides it on the skis.\",gets from a bungee rope outdoors.,talks on the back wall.\n15591,anetv_9o_SlEkq-L0,13338,The man is then shown moving the grass again and when he's done he's once again indoors and this time getting three one dollar bills handed to him. He is once again back in the yard but this time he has the container filled with cut grass and a special effect,The man is then shown moving the grass again and when he's done he's once again indoors and this time getting three one dollar bills handed to him.,He is once again back in the yard but this time he has the container filled with cut grass and a special effect,gold,comes to the shovel with the ground.,makes it look like the cut grass is jumping into his container.,is caught on the top paw.,would that be a frisbee telescopic time.\n15592,anetv_9o_SlEkq-L0,13340,The man goes back to mowing the yard and then back indoors to get one more dollar handed to him. The man is very happy about this and he,The man goes back to mowing the yard and then back indoors to get one more dollar handed to him.,The man is very happy about this and he,gold,is prepared to start.,is a grown man on the bench.,showing off different lengths of homes as he goes.,'s back in the yard celebrating by jumping and mowing the yard a little more.\n15593,anetv_9o_SlEkq-L0,13339,A special effect shows the man quickly in one place and then in another spot that varies a lot all throughout the yard. The man,A special effect shows the man quickly in one place and then in another spot that varies a lot all throughout the yard.,The man,gold,rides the black skate through the city holding long black and white shopping bags.,is then shown in slow motion to a measuring up dartboard which he is holding.,goes back to mowing the yard and then back indoors to get one more dollar handed to him.,shoots the wall one more times then goes extremely fast.\n15594,anetv_ByIIq3jFOKo,5572,They are using paddles to navigate the rough waters. They,They are using paddles to navigate the rough waters.,They,gold,\"lift, skip, and slowly advance on the road.\",swim through the water rapidly as they turn around on their kayaks.,use flashlights to stay upright and raft the raft.,pause to wave at the camera when it is easier going.\n15595,anetv_ByIIq3jFOKo,16216,They all work together and paddle themselves through the water and most of them are smiling. The water splashes onto the front of the camera while they're in the water and they,They all work together and paddle themselves through the water and most of them are smiling.,The water splashes onto the front of the camera while they're in the water and they,gold,continue to paddle around the water.,'re wearing helmets along with water gear.,go from the boat to bring all the crashing down.,spray along the water that plays on the ceiling.\n15596,anetv_ByIIq3jFOKo,5571,Several large groups of people are riding multiple seated rafts. They,Several large groups of people are riding multiple seated rafts.,They,gold,are using paddles to navigate the rough waters.,are riding several rafts down a large marsh.,begin put on two helmets and have popped one up.,swim now and go into a water waterfall till lead by two people who are kayaking jostling.\n15597,anetv_PbZIYJxoWdY,2214,A man is seen speaking to the camera and leads into several shots of a boat on water as well as people holding a camera and wake boarding. The people,A man is seen speaking to the camera and leads into several shots of a boat on water as well as people holding a camera and wake boarding.,The people,gold,\"are then seen climbing on a rock and walking around a forest, ending by jumping in the water.\",then ride a canoe continuously and back into the man in time to other people swimming underwater while others get out of the water.,get back in the water and begin surfing off the rope while sitting on the side of the boat.,move the canoes all down the deck while holding around a circle and smiling to one another.\n15598,anetv_PbZIYJxoWdY,2215,\"The people are then seen climbing on a rock and walking around a forest, ending by jumping in the water. More clips\",\"The people are then seen climbing on a rock and walking around a forest, ending by jumping in the water.\",More clips,gold,are shown of people swinging and riding around one another on the stilts.,are shown of them wakeboarding as well as riding in the boat and jumping into the water.,are shown of men riding snowboards and falling off a mountain with bike tools and talking to the camera.,are shown of the end people jumping rope while people keep climbing in.\n15599,lsmdc1056_Rambo-96705,6940,\"The boat's on a lake, silhouetted against the sun. Someone\",\"The boat's on a lake, silhouetted against the sun.\",Someone,gold,watches the vets crowd as someone runs out of the town.,gazes down at a vast sky hanging above mountains.,stands on the prow of the boat with a bow and arrow.,ventures further through a downpour.\n15600,lsmdc1056_Rambo-96705,6928,The troops pass cash among themselves. An officer in dark glasses,The troops pass cash among themselves.,An officer in dark glasses,gold,finds his black badge.,\"sits in one of the trucks, coolly smoking a cigarette.\",holds out their hands.,turns to look at an officer standing behind a wooden desk.\n15601,lsmdc1056_Rambo-96705,6950,They stop what they are doing and turn their attention to the boat. One man,They stop what they are doing and turn their attention to the boat.,One man,gold,wears a white t - shirt and a black hat.,starts to fall off the board by passing the back of another.,\"turns to the camera, taking the man down.\",flipped on the right.\n15602,lsmdc1056_Rambo-96705,6946,One of someone's friends hands a fish to the small boy. The men in the boat,One of someone's friends hands a fish to the small boy.,The men in the boat,gold,\"pulls at someone's observatory, freeing the rider by the right.\",sit facing each other in the helmets.,wear burnt orange robes and have shaved heads.,expertly wields the heavy bar around each other.\n15603,lsmdc1056_Rambo-96705,6943,He draws the bow - string. He,He draws the bow - string.,He,gold,\"fires into the water and pulls out a large fish, which has been skewered by his arrow.\",engage in a martial arts.,rises towards the others railing.,crosses and they hug and run toward the dark dock.\n15604,lsmdc1056_Rambo-96705,6941,Someone stands on the prow of the boat with a bow and arrow. His arrow,Someone stands on the prow of the boat with a bow and arrow.,His arrow,gold,drifts out from the hole of the rock.,has a line attached.,shoots another arrow once of the target.,bounces on a surface on the center of the lawn.\n15605,lsmdc1056_Rambo-96705,6927,The troops are dressed in khaki fatigues and wear wide - brimmed hats with a gold - colored Burmese military emblem fixed to the front. The troops,The troops are dressed in khaki fatigues and wear wide - brimmed hats with a gold - colored Burmese military emblem fixed to the front.,The troops,gold,pass cash among themselves.,wave his flags toward the people.,start at the jump track skating to the right.,are wearing football uniforms and protective uniforms.\n15606,lsmdc1056_Rambo-96705,6945,\"On a river, the boat passes a small canoe, in which there are two men and a small boy. One of someone's friends\",\"On a river, the boat passes a small canoe, in which there are two men and a small boy.\",One of someone's friends,gold,hold one man to his side as they come down to the base.,gives grades under a water waterfall in the river chased by flags and spectators watching with his scuba vests.,walks up to palm tree.,hands a fish to the small boy.\n15607,lsmdc1056_Rambo-96705,6952,The boat slows to a halt. Someone and his men,The boat slows to a halt.,Someone and his men,gold,ride a cable through an empty narrow dock.,watch as the russian ship descends.,disembark from the boat.,peer down at the dying zebra.\n15608,lsmdc1056_Rambo-96705,6933,The commander pulls on his cigarette. One of the peasants,The commander pulls on his cigarette.,One of the peasants,gold,is blown to pieces.,casually taps his head with a scanner.,is swept away by the crash.,crumples the scroll and loses the puff.\n15609,lsmdc1056_Rambo-96705,6947,The men in the boat wear burnt orange robes and have shaved heads. Someone,The men in the boat wear burnt orange robes and have shaved heads.,Someone,gold,\"is at the tiller, steering.\",stands on the wo of the man's feet.,goes out onto the sidewalk.,holds someone and someone follows with the orchestra.\n15610,lsmdc1056_Rambo-96705,6937,\"The men are snake - wranglers. With his hand, someone\",The men are snake - wranglers.,\"With his hand, someone\",gold,\"scoops up the snake by its neck, and secures it in a sack.\",speaks to another chanting.,plods up to the office.,checks his struggling hands.\n15611,lsmdc1056_Rambo-96705,6949,The boat pulls in at a harbor on which there are two men. They,The boat pulls in at a harbor on which there are two men.,They,gold,go down a hill while a second pass.,paddle their pick through the hole.,stop what they are doing and turn their attention to the boat.,are seeing it swinging fast.\n15612,lsmdc1056_Rambo-96705,6939,\"They slosh though shallow water, and someone leads the men up the boat's gangplank. The boat\",\"They slosh though shallow water, and someone leads the men up the boat's gangplank.\",The boat,gold,\"jumps off with a large wave, shakes his face as he sail out the boat.\",\"leans up on the ship's prow, leaning against the ocean as the lifeboat pulls off.\",\"'s on a lake, silhouetted against the sun.\",moves along a column of fighters with evergreens along the sky.\n15613,lsmdc1056_Rambo-96705,6934,A verdant valley edged with ferns. shirt,A verdant valley edged with ferns.,shirt,gold,has a thick cloth covering his body.,look around triumphantly as she walks out.,holds a large cloth over the urn.,pokes undergrowth with a stick.\n15614,lsmdc1056_Rambo-96705,6953,Someone and his men disembark from the boat. Someone's face,Someone and his men disembark from the boat.,Someone's face,gold,is doleful and weary.,drops onto a river.,drops to the water.,\"is lathered red, looking much better than the slightest could of someone.\"\n15615,lsmdc1056_Rambo-96705,6926,\"Brandishing rifles, the troops order a group of terrified and cowering peasants off the truck and onto the road. The troops\",\"Brandishing rifles, the troops order a group of terrified and cowering peasants off the truck and onto the road.\",The troops,gold,make up look while several soldiers from the sides rush toward the bank of the street.,\"are hauled down as more figures flee them flips, like the shooting.\",are dressed in khaki fatigues and wear wide - brimmed hats with a gold - colored burmese military emblem fixed to the front.,\"come out of the corral and point their knife, filling their path.\"\n15616,lsmdc1056_Rambo-96705,6938,\"The trio return to a small boat, which is moored on a sandbank where the stream widens into a river. They slosh though shallow water, and someone\",\"The trio return to a small boat, which is moored on a sandbank where the stream widens into a river.\",\"They slosh though shallow water, and someone\",gold,leads the men up the boat's gangplank.,\"reaches into the arms, sway against the sea, pulling both beams up like them.\",gets all the way through the chamber to avoid the falling.,dumps someone of his swimming lawn.\n15617,lsmdc1056_Rambo-96705,6954,Someone's face is doleful and weary. The sun,Someone's face is doleful and weary.,The sun,gold,blazes downward in a great night sky.,draws down to reveal people huddled at the rear of the sun and step marked.,shines as the farmhouse close back and forth.,casts an orange glow on the river water.\n15618,lsmdc1056_Rambo-96705,6944,\"He fires into the water and pulls out a large fish, which has been skewered by his arrow. On a river, the boat\",\"He fires into the water and pulls out a large fish, which has been skewered by his arrow.\",\"On a river, the boat\",gold,is making moves in bigger groups of different directions.,\"drops out of the water are catches a few yards from the shore, then lies on the ground next to someone.\",travels off as the third boy near him stirs.,\"passes a small canoe, in which there are two men and a small boy.\"\n15619,lsmdc1056_Rambo-96705,6932,The peasants are pushed at gunpoint to the edge of the field. They,The peasants are pushed at gunpoint to the edge of the field.,They,gold,\"begin to half - run, half - stumble across the paddy field towards the solitary soldier.\",scrolls up to the crowd.,runs backward onto a bank's slanted deck.,run through the crowd in pursuit.\n15620,lsmdc1056_Rambo-96705,6931,The soldier stops about 100 yards from the truck. The peasants,The soldier stops about 100 yards from the truck.,The peasants,gold,ride along the wreckage.,rest with his feet.,are pushed at gunpoint to the edge of the field.,go out of the ring.\n15621,lsmdc1056_Rambo-96705,6951,One man wears a white t - shirt and a black hat. The boat,One man wears a white t - shirt and a black hat.,The boat,gold,is being pulled by a boat.,goes pretty fast as the leaf falls onto the ground.,slows to a halt.,looks up and through the crowd.\n15622,lsmdc1056_Rambo-96705,6930,They splash harmlessly on sodden ground. The soldier,They splash harmlessly on sodden ground.,The soldier,gold,brushes dirty the large surfaces.,pulls his breeches up off the planks as he dives back into the water.,\"retreats, then especially his khaki friends.\",stops about 100 yards from the truck.\n15623,lsmdc1056_Rambo-96705,6942,His arrow has a line attached. He,His arrow has a line attached.,He,gold,draws the bow - string.,throws the ball away with the shawl and concerned takes it.,screws a shotgun in his pocket.,\"is athletic, running fast.\"\n15624,lsmdc1056_Rambo-96705,6948,\"A building on the riverside features a sign, comprising a large painting of a cobra, on the wall. The boat\",\"A building on the riverside features a sign, comprising a large painting of a cobra, on the wall.\",The boat,gold,'s taking in the new direction.,soars through the air.,comes up through a pan of feed.,pulls in at a harbor on which there are two men.\n15625,lsmdc1056_Rambo-96705,6925,A pair of large military - style trucks are driven in tandem along a dirt road. The first,A pair of large military - style trucks are driven in tandem along a dirt road.,The first,gold,\"spies someone peering through water blinds in someone's dark yard, revealing the wrecked work vehicle.\",\"stands several feet tall as as clean, lithe and strange, too.\",briskly turns someone through the head entrance.,\"has a single soldier standing in the back, and the second a whole troop.\"\n15626,lsmdc1056_Rambo-96705,6929,\"An officer in dark glasses sits in one of the trucks, coolly smoking a cigarette. A soldier\",\"An officer in dark glasses sits in one of the trucks, coolly smoking a cigarette.\",A soldier,gold,walks behind him through the venetian blind.,is smoking a cigarette.,walks in a nearby paddy field and tosses a primed grenade.,peers out from window and enters.\n15627,lsmdc1056_Rambo-96705,6936,Someone pushes his stick into the greenery. The stick,Someone pushes his stick into the greenery.,The stick,gold,\"hits someone, who crashes it into the water.\",lies on hand to his throat.,is now being dragged by another boy.,has a hook on the end.\n15628,anetv_5iIJl-wjE9U,8126,Girls are talking to the camera. They,Girls are talking to the camera.,They,gold,pull on the rope and the man in the red jacket bounces to his feet.,are making hand motions as they talk.,cry and plan doubles.,playing paintball in the field.\n15629,anetv_5iIJl-wjE9U,8127,They are making hand motions as they talk. They,They are making hand motions as they talk.,They,gold,play a game of volleyball with each other.,take a sip from his drink and gaze across the room.,\"are playing rock, paper scissors.\",continue flipping through the batons as they run.\n15630,anetv_5iIJl-wjE9U,8128,A girl is laying on the ged as another girl puts her butt in her face. The girl,A girl is laying on the ged as another girl puts her butt in her face.,The girl,gold,brushes her long bangs at her hair.,is talking to the camera again.,brushes her hair with the brushes.,sits at the edge of the stag's face while her face turned away from the girl.\n15631,anetv_rBMQFpHspmo,11001,The same shot is shown again in slow motion as well as several other attempts the boy makes. He,The same shot is shown again in slow motion as well as several other attempts the boy makes.,He,gold,goes behind the ball and walks down quickly to a party whose run a fourth person in the ball.,points towards the camera again because the camera zooms in on his face and he shows again different times and goes out.,performs several more times and a man stretches as the girl throws an orange ball.,attempts the jump several more times while people watch him on the sides.\n15632,anetv_rBMQFpHspmo,11000,Several people are seen wandering around an indoor field with one pole volting over a bar. The same shot,Several people are seen wandering around an indoor field with one pole volting over a bar.,The same shot,gold,is shown again in slow motion as well as several other attempts the boy makes.,is shown again in slow motion and the people waving.,is shown on the players as they continue to work out and teaching the girl how to properly push the puck.,is shown followed by several more clips of a show of examples jumping up.\n15633,anetv__CFadTE9L4I,19498,A woman washes clothes in a bucket with soap. The woman,A woman washes clothes in a bucket with soap.,The woman,gold,wrings out a towel.,sprays paper with a sponge.,cleans off the shoes.,jumps on a towel towel.\n15634,anetv__CFadTE9L4I,19499,The woman wrings out a towel. Someone,The woman wrings out a towel.,Someone,gold,uses hands to take the product and dry its hands.,picks up the hair and puts lotion onto it.,is folding in the background while the woman continues washing the clothes.,\"goes to the table, tries to roll the box.\"\n15635,lsmdc3078_THE_WATCH-36035,8452,\"He shines his light on a torn open box, then continues at a weary pace. Antonio\",\"He shines his light on a torn open box, then continues at a weary pace.\",Antonio,gold,drops the power machine.,\"passes the first man, whose wrists are long tied around his waist.\",turns to a rocking display of batteries.,shows a rail searching then spots a painting from a patch of wall across the boulevard.\n15636,lsmdc3078_THE_WATCH-36035,8447,\"Antonio turns on his flashlight, then flips a few switches. He\",\"Antonio turns on his flashlight, then flips a few switches.\",He,gold,\"glances at someone, who arrives outside.\",shines his flashlight across the store.,looks around and answers his cell.,stops and kneels facing him.\n15637,lsmdc3078_THE_WATCH-36035,8460,Someone helps with her luggage. She,Someone helps with her luggage.,She,gold,shoots into the next.,peers into an office.,pulls open the door.,leaves in a cab.\n15638,lsmdc3078_THE_WATCH-36035,8450,\"He walks the aisles, the beam of his flashlight leading the way. Advancing cautiously, he\",\"He walks the aisles, the beam of his flashlight leading the way.\",\"Advancing cautiously, he\",gold,grabs him and faces a metal gate.,reaches down to protect his face as his figure nears.,ventures away down a hallway.,scans the surrounding shelves.\n15639,lsmdc3078_THE_WATCH-36035,8436,\"Crossing the store, he slides to a stop. Strutting down an aisle, he\",\"Crossing the store, he slides to a stop.\",\"Strutting down an aisle, he\",gold,heads up an alley.,follows someone's gaze along a sidewalk.,sits back in his bike and licks his lips.,wiggles his fingers and bobs his head.\n15640,lsmdc3078_THE_WATCH-36035,8442,\"Now, he rounds a corner on a tricycle, drinking and driving. Using a forklift, he\",\"Now, he rounds a corner on a tricycle, drinking and driving.\",\"Using a forklift, he\",gold,steadies his friends.,\"salutes the guard then dashes to the boarding gate, knuckles knocking him outside.\",clings to a metal barrier as a hinged window peeks out from behind the opening.,sets a recliner chair down in front of a wall of flat screen televisions.\n15641,lsmdc3078_THE_WATCH-36035,8437,\"Strutting down an aisle, he wiggles his fingers and bobs his head. He\",\"Strutting down an aisle, he wiggles his fingers and bobs his head.\",He,gold,stands locked in two easy.,pushes through reference pages.,lifts his gaze to faint shafts of light on the surface.,grabs a six - pack of coke then spots a bottle of vodka.\n15642,lsmdc3078_THE_WATCH-36035,8449,An item falls from a shelf. Antonio,An item falls from a shelf.,Antonio,gold,is measured by different flips.,returns to the camera to show how the stylist adjust makeup while back.,leaves the circuit breaker panel.,makes the other man still in the water.\n15643,lsmdc3078_THE_WATCH-36035,8444,\"Watching a movie, he lights a hand - rolled cigarette. In the movie, a young woman in a blue swimsuit\",\"Watching a movie, he lights a hand - rolled cigarette.\",\"In the movie, a young woman in a blue swimsuit\",gold,skin touch regards firm chin on his back and frowns.,appears with the professor in its eyes.,runs her hand through her long hair.,\"emerges from the podium, clutching a glass of cocktail soda.\"\n15644,lsmdc3078_THE_WATCH-36035,8451,\"Advancing cautiously, he scans the surrounding shelves. He\",\"Advancing cautiously, he scans the surrounding shelves.\",He,gold,lifts his brow at both and hearing.,spies on your boss.,\"wags his rifle at someone, then slips down the tarp.\",\"shines his light on a torn open box, then continues at a weary pace.\"\n15645,lsmdc3078_THE_WATCH-36035,8435,\"Later, Antonio cranks up the volume on a stereo system. Crossing the store, he\",\"Later, Antonio cranks up the volume on a stereo system.\",\"Crossing the store, he\",gold,peeks out the back office door.,slides to a stop.,presses the other agent to his ear.,alternates climbing a wall.\n15646,lsmdc3078_THE_WATCH-36035,8446,The power goes out throughout the store. Antonio,The power goes out throughout the store.,Antonio,gold,\"turns on his flashlight, then flips a few switches.\",\", his dad puts a trunk into a hot bag, loosens a rubber car and pulls it closed.\",look on the phone and try to push.,prisoners start getting ready for their wrestling.\n15647,lsmdc3078_THE_WATCH-36035,8443,\"Using a forklift, he sets a recliner chair down in front of a wall of flat screen televisions. Watching a movie, he\",\"Using a forklift, he sets a recliner chair down in front of a wall of flat screen televisions.\",\"Watching a movie, he\",gold,proceeds to lift a newspaper.,lights a hand - rolled cigarette.,sits on the exam sheet and switches off a lamp.,holds on to the sheet.\n15648,lsmdc3078_THE_WATCH-36035,8463,\"Behind the wheel, someone notices various emergency vehicles parked outside of the taped off entrance. The emergency responders\",\"Behind the wheel, someone notices various emergency vehicles parked outside of the taped off entrance.\",The emergency responders,gold,gather around a few police cars and an ambulance.,carry their majority out.,floods the curb then glances over the wall.,talk behind the bank slot.\n15649,lsmdc3078_THE_WATCH-36035,8461,\"She leaves in a cab. Now, a mid - sized crossover\",She leaves in a cab.,\"Now, a mid - sized crossover\",gold,sits on the stairs of a huge park.,nearly hits someone.,approaches in a flash of speech.,pulls into the costco parking lot.\n15650,lsmdc3078_THE_WATCH-36035,8455,\"He runs out of ammo and ditches his gun, then knocks over a display of plastic bottles. Antonio\",\"He runs out of ammo and ditches his gun, then knocks over a display of plastic bottles.\",Antonio,gold,dashes through the darkened store.,pushes wood with a plastic stick.,leaves as he swerves the station to normal.,cups a pill in his mouth.\n15651,lsmdc3078_THE_WATCH-36035,8454,\"Firing wild, he backs away. He\",\"Firing wild, he backs away.\",He,gold,runs his hand over his body.,\"runs out of ammo and ditches his gun, then knocks over a display of plastic bottles.\",hands guard onto someone's table.,pauses and kisses the side of someone's neck.\n15652,lsmdc3078_THE_WATCH-36035,8465,\"Someone steps out of his vehicle and shuts the door. Noticing him, a mustached officer\",Someone steps out of his vehicle and shuts the door.,\"Noticing him, a mustached officer\",gold,drops someone's phone.,pulls a cigar from someone's mouth and pushes it onward.,sets down a cup of coffee.,sits down on his boat deck and the trophy's lid flippers up.\n15653,lsmdc3078_THE_WATCH-36035,8464,The emergency responders gather around a few police cars and an ambulance. Someone,The emergency responders gather around a few police cars and an ambulance.,Someone,gold,marches into the bathroom.,opens a gate behind someone as he approaches a garage.,reads a note then crumples it.,steps out of his vehicle and shuts the door.\n15654,lsmdc3078_THE_WATCH-36035,8438,He grabs a six - pack of Coke then spots a bottle of vodka. He,He grabs a six - pack of Coke then spots a bottle of vodka.,He,gold,snatches the bottle then chugs from it and spits vodka overhead.,sees a purple gate over the middle of the wooden grill.,shoots her a bright whiskey contest as he pretends to hit him.,someone looks on.\n15655,lsmdc3078_THE_WATCH-36035,8445,He crosses to a circuit breaker panel and opens its door. The power,He crosses to a circuit breaker panel and opens its door.,The power,gold,fixes someone so the dog hurries on.,is hurled through a skylight crawling on the walls.,goes out throughout the store.,\"enters, retracts the upper and heavily stained frame with the new panel.\"\n15656,lsmdc3078_THE_WATCH-36035,8453,Antonio turns to a rocking display of batteries. The sweaty security guard,Antonio turns to a rocking display of batteries.,The sweaty security guard,gold,faces someone as he shows his drawing on his finger.,stomps towards the basket of angelina.,rides a trolley and her dog of the farm helper.,takes out a revolver and holds it up.\n15657,lsmdc3078_THE_WATCH-36035,8434,\"The manager leaves and the security guard heads into the store. Later, Antonio\",The manager leaves and the security guard heads into the store.,\"Later, Antonio\",gold,sits in a chair behind a car and peers over the window.,arrive in a gymnasium.,\"stands across the front, lobbing the ball down with him.\",cranks up the volume on a stereo system.\n15658,lsmdc3078_THE_WATCH-36035,8456,Antonio dashes through the darkened store. He,Antonio dashes through the darkened store.,He,gold,walks to the bus.,is pushed up to the plastic toy steel lagoon.,reaches the exit door and tries a key.,can be seen from approaching the closet and entering a trailer with a man.\n15659,lsmdc3078_THE_WATCH-36035,8457,\"An empty parking lot surrounds the Costco. At home, the manager\",An empty parking lot surrounds the Costco.,\"At home, the manager\",gold,helps someone with his bike in the secured office.,packs a hidden travel wallet.,knocks two men into a suite.,returns the closing scene.\n15660,lsmdc3078_THE_WATCH-36035,8439,He snatches the bottle then chugs from it and spits vodka overhead. He,He snatches the bottle then chugs from it and spits vodka overhead.,He,gold,\"rushes outside, munching a sweet kick, then joins her in the parking theater.\",sees him and pours through the bathroom door behind him.,dances along with a workout video.,grabs some more sprinkles and drinks them down.\n15661,lsmdc3078_THE_WATCH-36035,8448,He shines his flashlight across the store. An item,He shines his flashlight across the store.,An item,gold,appears in the crack.,is draped over someone's bed.,falls from a shelf.,leads to someone's picture at an aircraft.\n15662,lsmdc3078_THE_WATCH-36035,8458,\"At home, the manager packs a hidden travel wallet. She\",\"At home, the manager packs a hidden travel wallet.\",She,gold,checks a test stick.,emerges carefully as a red buffer car pass a building.,lowers the phone as she gives it all alone.,drops her hand over someone throat.\n15663,lsmdc3078_THE_WATCH-36035,8440,\"He dances along with a workout video. In the pharmacy, he\",He dances along with a workout video.,\"In the pharmacy, he\",gold,holds a fork to his mouth and sniffs it.,has a perfect sign at all.,notices a photo of someone holding someone's shoes.,picks out a medicine bottle and eats a few pills.\n15664,lsmdc3078_THE_WATCH-36035,8462,\"Now, a mid - sized crossover pulls into the Costco parking lot. Behind the wheel, someone\",\"Now, a mid - sized crossover pulls into the Costco parking lot.\",\"Behind the wheel, someone\",gold,holds him.,adds bullets off a truck.,notices various emergency vehicles parked outside of the taped off entrance.,\", accompanied by the thug, smiles at the gran torino and runs up behind him.\"\n15665,anetv_uhAIe9rcjSo,2957,A close up is seen of a metal double sink. Then we,A close up is seen of a metal double sink.,Then we,gold,\"see a woman using a gas sprayer, put the washer in and then haul a tissue.\",see two bowls with powder and a cut lime.,see a man in the bathroom cleaning the sink.,see one of the men use a ladder.\n15666,lsmdc0012_Get_Shorty-53276,1532,As the Bear opens the door for people. Someone,As the Bear opens the door for people.,Someone,gold,\"sits behind the desk, watching the two of them come into the office.\",shoves his hands forward and pushes himself back towards the mother's.,grabs from the kids.,removes her spectacles and puts it in her mouth.\n15667,lsmdc0012_Get_Shorty-53276,1538,\"He too stares at someone. Someone shakes his head, he\",He too stares at someone.,\"Someone shakes his head, he\",gold,folds his lips and bows his head.,is heading towards the water.,rolls over and starts to climb out of the car.,can't believe he is hearing this.\n15668,lsmdc0012_Get_Shorty-53276,1539,\"Someone shakes his head, he can't believe he is hearing this. The limo guys\",\"Someone shakes his head, he can't believe he is hearing this.\",The limo guys,gold,\"take off into the lift, now halfway to the ground.\",go into bed in the gunfire.,file out from the back aisle by someone.,\"nod to people nods back, trying to catch someone's eye.\"\n15669,lsmdc0012_Get_Shorty-53276,1537,Someone already forgetting his instructions. Someone,Someone already forgetting his instructions.,Someone,gold,swigs from someone 'finger.,looks at someone for a long moment later - and goes other of him.,can't believe it.,\"widens his eyes harder, then looks toward the players.\"\n15670,lsmdc0012_Get_Shorty-53276,1533,\"Someone sits behind the desk, watching the two of them come into the office. Someone\",\"Someone sits behind the desk, watching the two of them come into the office.\",Someone,gold,\"labored, and someone gets out of the control cab.\",watches as someone comes first.,talks on his cell phone.,picks up the receipt books.\n15671,lsmdc0012_Get_Shorty-53276,1534,\"Someone sits down in the chair and hooks one leg over the arm, swings it up and down, his motor running on some chemical. Someone\",\"Someone sits down in the chair and hooks one leg over the arm, swings it up and down, his motor running on some chemical.\",Someone,gold,\"steps into frame toward the door in front of him, propelling himself through its long strainer.\",waves them right into the two cracked red leather chairs facing the desk.,\"sits over his newspaper, two glasses in his hands.\",reloads for the others but does n't fall.\n15672,lsmdc0012_Get_Shorty-53276,1535,\"Someone waves them right into the two cracked red leather chairs facing the desk. Sitting down, he\",Someone waves them right into the two cracked red leather chairs facing the desk.,\"Sitting down, he\",gold,opens another drawer of a new cabinet.,\"opens a cell phone and finds a glazed diamond covered by photos of other soaps, drawers and tanks.\",nods to someone who ignores him.,grabs a newspaper from the envelope.\n15673,lsmdc1060_Yes_man-99336,15290,They walk backstage at a music venue. It,They walk backstage at a music venue.,It,gold,\"pulls up at a gymnast dressed in black, shirt and a brown shirt.\",then he puts someone's back on a chair and they share a bored glance.,is full of the thugs and children been watching and smoking.,'s full of equipment.\n15674,lsmdc1060_Yes_man-99336,15291,It's full of equipment. They,It's full of equipment.,They,gold,get back to shoot at the security mob.,\"round a corner and walk out on stage, and look at the vast hollywood bowl amphitheater.\",begin all together at the same time.,stays on the ground.\n15675,lsmdc1060_Yes_man-99336,15288,It has a gate which is locked. She,It has a gate which is locked.,She,gold,starts to climb over.,looks away and flips through her books.,drops herself at the edge of the top of the display.,pulls the leash from her leash.\n15676,lsmdc1060_Yes_man-99336,15287,People hurry towards a chain - link fence. It,People hurry towards a chain - link fence.,It,gold,is wearing a short - sleeved sweatshirt and frantic outfits.,'s race is shown as they races going through the other areas of a flight onto the plummeting to the center of the building.,\"roads as cars track along the road, in worried scenes, as the screech of a crash line turns.\",has a gate which is locked.\n15677,lsmdc1060_Yes_man-99336,15289,She starts to climb over. They,She starts to climb over.,They,gold,walk backstage at a music venue.,\"glimpse only one car on the big screen, and allowing them to cross it.\",show off her smooth painted nails.,\"push the horses up, then flips open and down, now holding on to the back of a cart.\"\n15678,lsmdc1060_Yes_man-99336,15292,\"They round a corner and walk out on stage, and look at the vast Hollywood Bowl amphitheater. Hand - in - hand, people\",\"They round a corner and walk out on stage, and look at the vast Hollywood Bowl amphitheater.\",\"Hand - in - hand, people\",gold,wander beneath the domed archway that covers the stage.,ride their horses through a flowing cement gateway.,emerge from a clearing between a huge army and handfuls of shears.,pose in front of a display of reading photographs.\n15679,lsmdc1060_Yes_man-99336,15286,People zoom down a dark street on someone's scooter. Someone,People zoom down a dark street on someone's scooter.,Someone,gold,\"gets out of his bathroom and approaches someone, who squats behind him.\",\", with his gun, and starts walking toward the door.\",shoots a quick glance at someone.,sits behind her with his arms around her waist.\n15680,lsmdc3074_THE_ROOMMATE-4159,17967,\"Screwing up her doll - like features, she hits herself again. She\",\"Screwing up her doll - like features, she hits herself again.\",She,gold,repeats the process over and over.,punches someone twice in the chest.,moves from the porch of someone's house as guests make a path towards the house.,switch his other employees to look at the phone and look at another.\n15681,lsmdc3074_THE_ROOMMATE-4159,17971,\"The troubled young woman closes her eyes, winces, and rips the knifepoint across her flesh. Now beneath a photo of a statue depicting a screaming man, she\",\"The troubled young woman closes her eyes, winces, and rips the knifepoint across her flesh.\",\"Now beneath a photo of a statue depicting a screaming man, she\",gold,leads someone in an alley.,morphs into a human form.,lies on her bed.,\"crosses herself, and the front of the water - filled latrine.\"\n15682,lsmdc3074_THE_ROOMMATE-4159,17968,\"Later, our lowering gaze takes in a nasty welt on her arm, then bruises on her outer thigh. From a jar of art supplies, she\",\"Later, our lowering gaze takes in a nasty welt on her arm, then bruises on her outer thigh.\",\"From a jar of art supplies, she\",gold,takes out a utility knife.,reaches in and shuts the screen.,finds someone lying on a bed.,strokes the plot on the own stemmed bowl.\n15683,lsmdc3074_THE_ROOMMATE-4159,17969,\"From a jar of art supplies, she takes out a utility knife. Pressing her thumb to a switch on its side, she\",\"From a jar of art supplies, she takes out a utility knife.\",\"Pressing her thumb to a switch on its side, she\",gold,pulls her phone out.,turns and addresses a spoon.,slides the blade's tip out from its metal handle.,answers the sharpening ribbon.\n15684,lsmdc3074_THE_ROOMMATE-4159,17973,\"Someone rocks her injured roommate. Noticing blood, she gingerly\",Someone rocks her injured roommate.,\"Noticing blood, she gingerly\",gold,lifts up someone's shirt.,turns her back to the soldier and ducks forward.,pretends to brush her teeth.,reaches out to reveal a suitcase.\n15685,lsmdc3074_THE_ROOMMATE-4159,17970,\"Pressing her thumb to a switch on its side, she slides the blade's tip out from its metal handle. Someone\",\"Pressing her thumb to a switch on its side, she slides the blade's tip out from its metal handle.\",Someone,gold,turns around and fearfully opens the exposed tunnel.,creates a small vat.,\"lifts up her shirt, revealing her smooth flat abdomen.\",topples the windscreen off as the craft looms backwards.\n15686,anetv_JQcN61A1MEU,4010,People are playing a game of indoor soccer. People,People are playing a game of indoor soccer.,People,gold,\"are playing soccer in a large stadium, and players watch bounced the american.\",are sitting in the stands watching the game.,\"are running in, holding them and trying to break the ball.\",are seen dancing back and forth.\n15687,anetv_JQcN61A1MEU,18038,\"After, a group of young men are pictured playing indoor soccer. The Black team's forwards takes the ball and begins dribbling it to make a goal and he succeeds and it\",\"After, a group of young men are pictured playing indoor soccer.\",The Black team's forwards takes the ball and begins dribbling it to make a goal and he succeeds and it,gold,bounces back into the pool to continue kicking goals.,covers all the crowd.,knocks up more balls.,is replayed in slow motion.\n15688,anetv_JQcN61A1MEU,4011,People are sitting in the stands watching the game. A person,People are sitting in the stands watching the game.,A person,gold,sweep a white banner over their heads!,is putting wood through a black hole in the pit.,kicks the ball into the goal.,is walking on the open paintball field.\n15689,anetv_JQcN61A1MEU,18037,\"A black screen is pictured and white words begin to bounce down on the screen. After, a group of young men\",A black screen is pictured and white words begin to bounce down on the screen.,\"After, a group of young men\",gold,is playing an indoor game.,get out on the dirt and begin to walk across the court.,are pictured playing indoor soccer.,are shown laying down on a snowy mat.\n15690,anetv_kBUDMFgWO9I,5258,A person on one of the platforms dive into the pool. The diver hitting the pool,A person on one of the platforms dive into the pool.,The diver hitting the pool,gold,is now running caught in the motion.,causes a small splash.,area with a silly face.,\"plays with his hand, occasionally taking his ball out of it.\"\n15691,anetv_kBUDMFgWO9I,5257,A view of a very large diving platform with different heights is shown and people around the pool are walking. A person on one of the platforms,A view of a very large diving platform with different heights is shown and people around the pool are walking.,A person on one of the platforms,gold,\"climbs a balcony landing, then slumps on top of the platform.\",falls down to what they are doing.,dive into the pool.,is skateboarding in a pool to pass all around the apartment and is adding sizes to the second empty second.\n15692,anetv_DVlDRG0SxG8,16049,The front of a yellow kayak is seen as the boat floats through turbulent white waters of a river. It,The front of a yellow kayak is seen as the boat floats through turbulent white waters of a river.,It,gold,is seen standing at the end of a dock and then shown paddling down the river using some water.,see females in a canoe and start to slide off the rocks.,stops near the fish surface.,passes a rock and numerous trees before slowing down.\n15693,anetv_eyWerZITH1Y,19255,A man jumps onto a balance beam. They,A man jumps onto a balance beam.,They,gold,begin to do a gymnastics routine on the balance beam.,jumps onto a balance beam.,man stands on the ground.,swing against lord arms.\n15694,anetv_eyWerZITH1Y,19256,They begin to do a gymnastics routine on the balance beam. They,They begin to do a gymnastics routine on the balance beam.,They,gold,jump off onto a mat next to it.,take a turn round and start trying to stand with a benefit.,spin and twirl while twirling and swirling around the mat.,do a flip back and backward and dive on a diving board motionless together.\n15695,anetv_bNR0MmJ9d8I,3961,A man speaks to the camera. He,A man speaks to the camera.,He,gold,presents a knife about proper technique while going demonstrates several areas of the ax.,rolls a big box into the room and proceeds to open a box where a bicycle sits inside.,shows how to mount a horse and drop it and pulls the calf in between.,pans down to the carpet in front of the camera again.\n15696,anetv_bNR0MmJ9d8I,3968,\"He takes the bicycle for a ride. Briefly, he\",He takes the bicycle for a ride.,\"Briefly, he\",gold,\"enters the room, then gives the water.\",speaks to the camera.,puts a tube under his arm.,turns the car off.\n15697,anetv_bNR0MmJ9d8I,3962,\"He rolls a big box into the room and proceeds to open a box where a bicycle sits inside. From the inside of the box, he\",He rolls a big box into the room and proceeds to open a box where a bicycle sits inside.,\"From the inside of the box, he\",gold,tapes nuts with stuffed animals.,uses a sandwich to insert point of the paper.,takes out a small box full of tools for the use of assembling the bicycle.,halts and turns away.\n15698,anetv_bNR0MmJ9d8I,3965,\"He removes all of the boxes sitting around the bicycle and assembles the bike. Again, he\",He removes all of the boxes sitting around the bicycle and assembles the bike.,\"Again, he\",gold,speaks to the camera.,gets in and keeps a rubber bike to fly.,jumps up on the bike and removes an upside out rim.,takes out a sled and shows how to do it properly.\n15699,anetv_bNR0MmJ9d8I,3967,He removes two pedals from bags and attaches both pedals onto the bicycle. He,He removes two pedals from bags and attaches both pedals onto the bicycle.,He,gold,removes the tire and holds it on as he pulls out the tire.,puts them on a bicycle bike to avoid it and flips over and over twice.,begins by throw the bike just a few feet away.,takes the bicycle for a ride.\n15700,anetv_bNR0MmJ9d8I,3966,\"Again, he speaks to the camera. He\",\"Again, he speaks to the camera.\",He,gold,pauses for a moment before clearing up the hospital.,shows a closeup of the vacuum he has on a wall.,removes two pedals from bags and attaches both pedals onto the bicycle.,\"holds for a long moment without looking back at the camera, almost turning into each other.\"\n15701,lsmdc3029_GREEN_ZONE-13560,8385,He shifts his gaze to someone and offers a firm nod. Someone,He shifts his gaze to someone and offers a firm nod.,Someone,gold,\"opens his mouth, then gazes at the roiling ice.\",hands him a folder.,leans forward and produces a small knife.,meets his gaze for the moment.\n15702,lsmdc1027_Les_Miserables-6077,8602,Her once clear skin is blotchy and smeared with dirt. She,Her once clear skin is blotchy and smeared with dirt.,She,gold,hangs with the manicurist from the window.,puts it on as he gestures towards her place.,strokes her short cropped hair.,turns to the dog.\n15703,anetv_5Wp2dxIAocI,5932,She pushes the paper all along the box and tucking in the sides. She,She pushes the paper all along the box and tucking in the sides.,She,gold,continues to push the horses around while still speaking to the camera.,flips to a end and speaks to the camera.,tapes down the box and presents it to the camera.,lowers it gently and shows off air steam.\n15704,anetv_5Wp2dxIAocI,5931,A woman is seen speaking to the camera and begins wrapping a box. She,A woman is seen speaking to the camera and begins wrapping a box.,She,gold,starts clipping the cats nails around.,\"moves into the end, putting one slip of paper into it.\",zooms in on her foot and puts several nails on it.,pushes the paper all along the box and tucking in the sides.\n15705,anetv_5Wp2dxIAocI,8934,A woman is seen sitting at a table speaking to the camera and begins wrapping a present. She,A woman is seen sitting at a table speaking to the camera and begins wrapping a present.,She,gold,is seen being followed by camera while holding a person's eye.,demonstrates how to properly wrap a present as well as tape up the sides and present the box in the end.,lays down the black box and presents it to a woman.,moves the paper on while cutting off in her bow and grabbing it in a brushing.\n15706,anetv_GwIHO7HpGkY,14019,\"The man then pulls on the fishing wire a few times and stands there holding his fishing pole, moving it, and winding it from time to time. The end of the pole begins to bend and the man starts pulling the pole and winding it up and he pulls a fish out of the hole and it\",\"The man then pulls on the fishing wire a few times and stands there holding his fishing pole, moving it, and winding it from time to time.\",The end of the pole begins to bend and the man starts pulling the pole and winding it up and he pulls a fish out of the hole and it,gold,lands on a side row.,is larger than the game.,lands onto the ice.,is relating to the other shaking him from the bear.\n15707,anetv_GwIHO7HpGkY,14020,The man grabs the fish from the ice and puts it right back into the hole he just pulled it out from while it's still attached to the hook and his wire. The man then,The man grabs the fish from the ice and puts it right back into the hole he just pulled it out from while it's still attached to the hook and his wire.,The man then,gold,\"begins to pull on the fishing wire, pulls his pole up and and down a few times, and then adjusts the camera.\",uses a large clod to get up on his lap by using it to properly being his portion.,stands close to later still speaking while her face is shown caught by another person in front of him.,jumps off his suit while the man continues to move and other objects are made in the ground.\n15708,anetv_32EWNGHBctI,8975,A professional tennis match is played during a tournament. The players,A professional tennis match is played during a tournament.,The players,gold,take place on the beach as a man throws a croquet ball.,are seen hitting a ball to an indoor bowling alley.,talk on headsets during the match.,throw after other cheerleaders performing the tricks.\n15709,anetv_32EWNGHBctI,8978,The man serves the ball and scores a point. The opposing team,The man serves the ball and scores a point.,The opposing team,gold,throws the ball to the goalie.,gets round and shot.,has a turn to serve the ball.,runs towards the players holding the flowers.\n15710,anetv_32EWNGHBctI,8977,A man prepares to serve the ball to start the match. The man,A man prepares to serve the ball to start the match.,The man,gold,bounces up and down.,serves the ball and scores a point.,gives the ball to four sumo wrestlers serve.,throws the ball and the ball falls hit the ground.\n15711,anetv_e34P8tr-Mi4,1718,Three men are applying plaster to the ceiling of an unfinished room while another man watches. One of the men,Three men are applying plaster to the ceiling of an unfinished room while another man watches.,One of the men,gold,\"moves forward, slowly seated face to face with the individual.\",climbs a ladder to reach the ceiling.,places the completed plaster on the wall and put a weight over one ear.,goes down the stairs and down the roof.\n15712,anetv_e34P8tr-Mi4,1720,One man performs a short dance. The camera,One man performs a short dance.,The camera,gold,is cheering with their tango swing.,pans down to each other side as the teen plays.,moves to reveal that the man dancing and another one of the men are using stilts to reach the ceiling.,stops short and drops to the floor.\n15713,anetv_e34P8tr-Mi4,1719,One of the men climbs a ladder to reach the ceiling. One man,One of the men climbs a ladder to reach the ceiling.,One man,gold,strikes the ceiling then falls off.,takes the ladder to fall backwards from the roof.,pumps a heavy weight and goes back down.,performs a short dance.\n15714,anetv_eufCY8KHuMA,18339,\"People are shown trying to jump fences in several scenes, falling over or breaking through them at break neck speeds. As the rider walks away, the words Do you\",\"People are shown trying to jump fences in several scenes, falling over or breaking through them at break neck speeds.\",\"As the rider walks away, the words Do you\",gold,struggle to three it's small group and stop to play again.,think it's easy?,clank a wind down chain either weathered against the green machinery.,include the creatively flailing.\n15715,anetv_eufCY8KHuMA,18338,A man is riding a black horse in slow motion. People,A man is riding a black horse in slow motion.,People,gold,\"are shown trying to jump fences in several scenes, falling over or breaking through them at break neck speeds.\",\"hold their horses in place, and do a few flips on them.\",are sitting on horses riding the horses.,pass backwards off the horse and sway horses with each other.\n15716,anetv_V3Sz4WWJ2_M,14612,He then dips paper in water and begins hanging it up on the walls. He,He then dips paper in water and begins hanging it up on the walls.,He,gold,continues speaking to the camera and shows up more martial arts moves.,makes sure the hammer flies so fast that he can do it over and over goes to the surface perfectly.,lassos the piece of wood and throwing it in a saucepan.,holds up a spray bottle to spray the walls while the others help.\n15717,anetv_V3Sz4WWJ2_M,14613,He holds up a spray bottle to spray the walls while the others help. The people,He holds up a spray bottle to spray the walls while the others help.,The people,gold,check the wall and take the paper off followed taking the actual wallpaper off and rubbing the wall.,are seated around a table and begin to drink the tea.,continue speaking to the camera while smiling and smiling to the camera.,continues back around the building as he escorts them around.\n15718,anetv_V3Sz4WWJ2_M,14611,A man is seen holding up objects while speaking to a woman and rubbing the object along the wall. He then,A man is seen holding up objects while speaking to a woman and rubbing the object along the wall.,He then,gold,begins pushing the tiles all around the room while looking back and dancing around the floor.,focuses back on the machine as he peels away.,dips paper in water and begins hanging it up on the walls.,mixes the match together and taking it into a plastic bag and dipping it into a bucket in the end.\n15719,lsmdc1059_The_devil_wears_prada-98913,18104,He kisses her again and again. She,He kisses her again and again.,She,gold,kisses him with a smile.,is already there.,looks over the stage at someone with no answer.,\"kisses him back, wrapping her arm around his neck.\"\n15720,lsmdc1059_The_devil_wears_prada-98913,18107,\"Someone wakes up in his bed alone, and puts her hand to her head with a grimace. She\",\"Someone wakes up in his bed alone, and puts her hand to her head with a grimace.\",She,gold,allows a brief smile.,rolls over and consults her watch on the bedside table.,smiles at a browse woman.,stares at her shoulder.\n15721,lsmdc1059_The_devil_wears_prada-98913,18108,She rolls over and consults her watch on the bedside table. Someone,She rolls over and consults her watch on the bedside table.,Someone,gold,finds another gangster's kit gun.,goes to grab her jacket and knocks over someone's bag.,quizzically rolls at his ashen face.,raps a remote on a laptop between the rows of kids waiting at its lockers.\n15722,lsmdc1059_The_devil_wears_prada-98913,18109,Someone goes to grab her jacket and knocks over someone's bag. Someone,Someone goes to grab her jacket and knocks over someone's bag.,Someone,gold,comes out of the bathroom in a towel.,\"turns him on, the leaves leaving him.\",looks at the key and does n't even get it.,stops for a moment to look at the snow.\n15723,lsmdc1059_The_devil_wears_prada-98913,18105,\"She kisses him back, wrapping her arm around his neck. They\",\"She kisses him back, wrapping her arm around his neck.\",They,gold,are surrounded by bare trees adorned with fairy lights.,\"looks again, his eyes wide.\",\"closes his eyes, and his chest loosens as he turns away.\",\"sweeps gently against the abbey, which snipers lower overhead.\"\n15724,anetv_OHNH7IV0768,13752,A group of swimmers are inside a public pool. They,A group of swimmers are inside a public pool.,They,gold,are riding bmx stationary bikes.,are involved in a game of water polo.,\"hit the ball back and forth, trying to hit the ball.\",take the breaks off and switch to kick it and start tai hooping and practice.\n15725,anetv_OHNH7IV0768,13753,They are involved in a game of water polo. They,They are involved in a game of water polo.,They,gold,engage in a game of fencing.,are involved in a game of volleyball.,try to keep the ball away from each other.,'re wearing earphones as they listen.\n15726,anetv_OHNH7IV0768,7435,The swim around the pool. People,The swim around the pool.,People,gold,walk alongside the pool.,fall into the swimming pool again.,swim alone in the water.,are standing outside the paintings.\n15727,anetv_OHNH7IV0768,7434,Several people are in a pool of water. They,Several people are in a pool of water.,They,gold,are playing beach soccer on the beach.,dives at a high dive tower.,are splashing water on a paddle.,are hitting a yellow ball.\n15728,lsmdc0033_Amadeus-67114,226,She turns and faces him. He,She turns and faces him.,He,gold,\"strokes his chin, then steps away from his with a tight smile.\",\"hands her his gun, introduced someone, he and someone share a menacing look.\",\"stares at her, stunned.\",rolls a stone as the ball strikes his crotch.\n15729,anetv_EFEI0-awheU,12133,A man wearing glasses is seen speaking to the camera and leads into a man sitting down holding an iron. The man then,A man wearing glasses is seen speaking to the camera and leads into a man sitting down holding an iron.,The man then,gold,begins demonstrating how to make a performance in a violin while the camera focuses on the city.,moves the rubix quickly while moving his hands around and smiling to the camera.,uses supplies to make a plaster up on the side of the wall while another man stands on it.,looks over to the camera and takes a sip of water.\n15730,anetv_EFEI0-awheU,786,A man in glasses is talking. Another man,A man in glasses is talking.,Another man,gold,is sitting down at a table ironing a shirt.,blow dries his hair.,is playing the bagpipes.,is pointing the hooks on a pole.\n15731,anetv_EFEI0-awheU,787,Another man is sitting down at a table ironing a shirt. He,Another man is sitting down at a table ironing a shirt.,He,gold,is wearing a blue shirt and is kneeling over and talking to the camera.,demonstrates how to play an acoustic guitar.,is showing his rollers together.,takes a drink of his water and spits it onto what he is ironing.\n15732,lsmdc3053_PARENTAL_GUIDANCE-25869,9663,\"Stepping around the hole, someone grabs a shovel and pats the restaurant owner on the back. They all\",\"Stepping around the hole, someone grabs a shovel and pats the restaurant owner on the back.\",They all,gold,stare down at the bed.,scramble to the left then stop in front of the house.,watch as he throws dirt in the grave.,seem to have a dog as the camera follows them.\n15733,lsmdc3053_PARENTAL_GUIDANCE-25869,9662,\"With wide eyes, he looks up at someone and someone who smile at their son's affection. Stepping around the hole, someone\",\"With wide eyes, he looks up at someone and someone who smile at their son's affection.\",\"Stepping around the hole, someone\",gold,bow his head without looking at the bow.,lies on one of the pillars as lava cling them.,grabs a shovel and pats the restaurant owner on the back.,proceeds to visit an accomplice.\n15734,lsmdc3053_PARENTAL_GUIDANCE-25869,9661,\"Someone quickly glances down as someone grabs hold of his hand. With wide eyes, he\",Someone quickly glances down as someone grabs hold of his hand.,\"With wide eyes, he\",gold,looks up at someone and someone who smile at their son's affection.,\"slips into someone's house, which shatters and falls on the bar.\",screws his head up and kisses his wrist.,takes a deep breath and shifts his gaze to the sun below.\n15735,anetv_v13d7g_uUXM,4103,A man is seen walking into frame bending down to grab a set of weights and begins to lift himself upward. He then,A man is seen walking into frame bending down to grab a set of weights and begins to lift himself upward.,He then,gold,lifts the weight up over his shoulder several times while jumping to give himself momentum.,jumps down onto the bars and continues kicking.,zooms in over the weight.,uses his hands to do move backwards and down again while speaking to the camera.\n15736,anetv_Ug3pM64HhK4,12887,A Woman is braiding her hair. She,A Woman is braiding her hair.,She,gold,is crossing the strands.,walks in front of a mirror and begins on a knit.,starts playing down her hair.,continues to tape her sides.\n15737,anetv_Ug3pM64HhK4,12889,Her braid is done on one side and she continues on the next. Crossing and,Her braid is done on one side and she continues on the next.,Crossing and,gold,braiding it using a crash.,adding hair to the braid.,hangs in her hair in the time as she continues to tie her hair down.,walks over to the camera.\n15738,anetv_Ug3pM64HhK4,12888,She is Crossing the strands. Her braid is done on one side and she,She is Crossing the strands.,Her braid is done on one side and she,gold,continues on the next.,puts her hair out to her with her braid.,bends backward and stops.,begins to put two large on her sides.\n15739,anetv_Ug3pM64HhK4,12890,Crossing and adding hair to the braid. She,Crossing and adding hair to the braid.,She,gold,begins to show how to do mascara on a pair as she continues brushing her routine doing toe stepping.,\"braids are shown, and there are another woman and a women sitting on a floor holding a small paper bag.\",finishes and turns around and puts the back into a ponytail.,cuts her hair before applying lotion onto her hair before nodding at the camera.\n15740,anetv_KjXvBqmh5C4,13023,A shot of a gym is shown followed by several clips of a person attempting to pole volt and others socializing. Several people,A shot of a gym is shown followed by several clips of a person attempting to pole volt and others socializing.,Several people,gold,are shown jumping and moves by a fence having fun and surfing.,are at the bar at a bar.,speak to the camera and lead into them pole volting.,speak to the man with the racket followed by several clips of badminton being played.\n15741,anetv_KjXvBqmh5C4,13024,Several people speak to the camera and lead into them pole volting. More people,Several people speak to the camera and lead into them pole volting.,More people,gold,are then seen running out onto a jump rope and begin performing several dodgeball shots and warming up.,are seen boxing around the studio and cheering with one another.,are seen speaking to one another as well as the camera and using a pole to get over a bar.,is seen interviewed from a distance while more people are seen surfing.\n15742,anetv_nKBjM-kdeeI,13437,He goes down the slide and runs around to the other side. The man,He goes down the slide and runs around to the other side.,The man,gold,hangs high up in the air then falls off the swing.,falls back again on the slide while the dog continues to speak to him.,talks to the camera for a bit and then begins to record the boy again.,\"runs down a slide, very faster hopping from front.\"\n15743,anetv_nKBjM-kdeeI,13438,The man talks to the camera for a bit and then begins to record the boy again. The man,The man talks to the camera for a bit and then begins to record the boy again.,The man,gold,begins playing the harmonica again all right.,continues to talk to the camera while the man continues to play and goes skateboarding.,gets right off the intertube and walks back to the car while still looking at the camera.,films the boy playing with a musical toy as the man talks to the camera.\n15744,anetv_nKBjM-kdeeI,2817,A young boy is seen wandering around a playground and climbing up a side while a man records himself at times. The man,A young boy is seen wandering around a playground and climbing up a side while a man records himself at times.,The man,gold,views more to the playground and ends with him smiling off.,continues to follow the boy around while he plays on the playground and all the various toys.,continues to run and jumps on the raft many times while other people watch and exercise.,gets up and continues to run down another ramp while others cheer on him.\n15745,anetv_nKBjM-kdeeI,13436,A boy is plying on a jungle gym while a man video tapes him. He,A boy is plying on a jungle gym while a man video tapes him.,He,gold,links him around the body.,is trying to reach for the little bowling pin over the pins in the sidecar.,goes down the slide and runs around to the other side.,ties his legs around.\n15746,lsmdc1047_Defiance-91350,3785,\"Two young men enter the camp, one wielding a rifle. Someone\",\"Two young men enter the camp, one wielding a rifle.\",Someone,gold,puts his hands up.,crosses to the room.,turns to find someone at the edge of a room with the mask - and envelops his hands in the air.,\"sticks his head in the loser's hands, then turns away as he drips past the floorboards into his jacket.\"\n15747,anetv_qeyCTRqPCN4,13719,The bull rolls a barrel while the clown is behind it. A trophy,The bull rolls a barrel while the clown is behind it.,A trophy,gold,bears the powder barrel on his cheek: the hanged men stand and watch the bulls fight with each other.,is awarded to the bull fighter.,\"is restrained, then people stand on fire.\",hangs from the bark house door.\n15748,anetv_qeyCTRqPCN4,13718,There are clips of bull fights and man is talking about his bull fighting experience. The bull,There are clips of bull fights and man is talking about his bull fighting experience.,The bull,gold,is around the bull fighting people in people.,starts several times again.,rolls a barrel while the clown is behind it.,is who is just walking behind the bull trying to catch it.\n15749,anetv_qeyCTRqPCN4,13717,Bullfighting is being advertised on the screen. There are clips of bull fights and man,Bullfighting is being advertised on the screen.,There are clips of bull fights and man,gold,playing with the bull.,running around agape.,is talking about his bull fighting experience.,women reacting on the tv.\n15750,anetv_wJV-kQRmaGc,16369,When the banner overlay goes away a man jumps to the end of a diving board and then does a forward front flip and flips 5 times before he dives straight into the water in the pool. There,When the banner overlay goes away a man jumps to the end of a diving board and then does a forward front flip and flips 5 times before he dives straight into the water in the pool.,There,gold,are a lot of spectators standing on the sidelines.,put up into a booth while dancing dressed in school.,\"the man high on the edge, he is shown posing on the diver and he prepares to do jump exact.\",of the mountain turns white drops in the water and the man with the helmet runs out to watch the diver.\n15751,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26118,8591,Fireworks blossom over a pair of high rises lit in a pinstriped pattern. An illuminated logo,Fireworks blossom over a pair of high rises lit in a pinstriped pattern.,An illuminated logo,gold,reflects the swooping completed video.,shows a dark pink dome - shaped flower over the words lotus hotel and casino.,appears on the bottom of the screen.,is on the ship's white fun with bright blue lights.\n15752,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26118,8590,\"Now the pickup travels past an airport tarmac situated across the street from a sign reading Welcome to Fabulous Las Vegas, Nevada. The truck\",\"Now the pickup travels past an airport tarmac situated across the street from a sign reading Welcome to Fabulous Las Vegas, Nevada.\",The truck,gold,drives through the road.,is in town where someone comes outside having a round stocking.,rides away from the philadelphia streets.,shows a first grade car speeding along the street to his left.\n15753,anetv_uPyciwjOz3E,2968,Their owners talk about the. Several vendors,Their owners talk about the.,Several vendors,gold,move back and forth as they bounce on leashes.,close up to a man in a house.,are set up in tents.,fall from the carriage and enter the secret populated structure.\n15754,anetv_uPyciwjOz3E,2969,Several vendors are set up in tents. The ownders,Several vendors are set up in tents.,The ownders,gold,launches into the scene to someone.,walk the dogs around.,makes their way through the forest past glowering clouds.,begins to speed their pursuer.\n15755,lsmdc0006_Clerks-48754,8557,\"Someone closes the door and stands there, momentarily, totally appalled by her exiting remark, then shakes his head. He\",\"Someone closes the door and stands there, momentarily, totally appalled by her exiting remark, then shakes his head.\",He,gold,reaches behind the counter and grabs a ring of keys.,\"tries to spin, but he slumps to the floor, unable to get a better look.\",holds out a pack of magazines.,\", she sketches her seeping through his hair, making a cordial smile as he attempts to help her back.\"\n15756,lsmdc0006_Clerks-48754,8555,\"She tries again, but this time with a different approach. Someone\",\"She tries again, but this time with a different approach.\",Someone,gold,\"sits beside him, looking at her: a mirror.\",\"continues to read his paper, not looking up.\",squeezes someone again and sends her buttons back.,dives for the water and wraps with him.\n15757,lsmdc0006_Clerks-48754,8560,The odd man holds an egg up to the light and studies it from several different angles. He,The odd man holds an egg up to the light and studies it from several different angles.,He,gold,sinks to the floor.,gets to his feet and washes their hands together.,\"grabs a carton from the cooler case, pops it open, and examines each egg carefully.\",puts the rod down in front of a crate.\n15758,lsmdc0006_Clerks-48754,8562,People study the o. c.. The odd man,People study the o. c..,The odd man,gold,faces a sleeping priest in a side room.,is staring up at a cliff.,taps on the chief's back.,is spinning an egg on the floor.\n15759,lsmdc0006_Clerks-48754,8565,The odd man places a handkerchief over an egg on the floor. He quickly,The odd man places a handkerchief over an egg on the floor.,He quickly,gold,whisks the handkerchief away to reveal the egg still sitting on the floor.,\"wags it, turns it and starts to wipe his face on it.\",passes it and places it in the tin foil.,rubs the cut cloth neatly on her fingers.\n15760,lsmdc0006_Clerks-48754,8559,\"An odd man sits on the floor, surrounded by cartons of eggs, all opened. The odd man\",\"An odd man sits on the floor, surrounded by cartons of eggs, all opened.\",The odd man,gold,holds an egg up to the light and studies it from several different angles.,pours harry into one pot and puts it in between.,carries the star cut profile.,is swaying and tossing and turning around to face the man.\n15761,lsmdc0006_Clerks-48754,8556,\"Someone, as always, reads on. The indecisive customer\",\"Someone, as always, reads on.\",The indecisive customer,gold,shakes her head in disgust and throws the movies back onto the wall.,tries to attack someone.,is used to stay the station at this.,enters and is n't touched.\n15762,lsmdc0006_Clerks-48754,8554,The indecisive customer half turns to see if her comment was even heard. She,The indecisive customer half turns to see if her comment was even heard.,She,gold,\"tries again, but this time with a different approach.\",\"sees something, then breaks up wearing a pink t - shirt.\",looks to the old photograph not spanish.,\"scratches her tongue, winces, and smiles, appreciatively.\"\n15763,lsmdc0006_Clerks-48754,8552,People remain respectfully quiet for a moment. Someone,People remain respectfully quiet for a moment.,Someone,gold,looks up in disbelief.,\"presses a remote, grasps to someone's head, and walks off solemnly.\",hardly stirs and continues to read his paper.,seats beside her aunt.\n15764,lsmdc0006_Clerks-48754,8553,\"The indecisive customer is a tad flabbergasted, but not put off. The indecisive customer half\",\"The indecisive customer is a tad flabbergasted, but not put off.\",The indecisive customer half,gold,joins their son and forced forward to curtsey.,turns to see if her comment was even heard.,\"into the frame let out a fiery sheen, pulls out the keys, and opens door.\",is behind a counter.\n15765,anetv_T1T3UvwZcKU,16152,A young child is seen sitting a top of a slide with his tongue sticking out. He,A young child is seen sitting a top of a slide with his tongue sticking out.,He,gold,puts on a pair of shoes and continues ironing and sledding.,ties the laces together and puts them back on.,continues spraying down the bottom while speaking with the camera and speaking to the camera.,begins to go down the slide but falls off the side and is seen laying on the floor.\n15766,anetv_-kmomJph-6E,17757,Two kids with extremly long hair are outside near a group of sheds. The shorter boy,Two kids with extremly long hair are outside near a group of sheds.,The shorter boy,gold,knocks the man from his bed.,begins pulling the other guys hair and pulling him by it.,suddenly managed to wiggle the green ball to the other side of an ice bag zippo.,\"then walks off the dirt street, chases a man, and starts jumping down a dirt slope.\"\n15767,anetv_-kmomJph-6E,17758,\"The shorter boy begins pulling the other guys hair and pulling him by it. However, the boy lets the guys hair go and the guy\",The shorter boy begins pulling the other guys hair and pulling him by it.,\"However, the boy lets the guys hair go and the guy\",gold,'s his normal bee.,\"begins to knee him in the private area, pick him up over his head and drop him on a piece of wood.\",picks up the iron with their arms in disgust while already being charged.,frowns to the bull.\n15768,anetv_jherly5DNjg,3924,He jumps off the horse and hog ties the calf. He,He jumps off the horse and hog ties the calf.,He,gold,removes his horse and ties up the calf.,shoots a calf before leaping on his horse.,gets back on the horse and walks towards the calf.,drops the calf and ties the calf in a last glow.\n15769,anetv_jherly5DNjg,9748,A man sits on a horse while another person watches behind a fence. The man,A man sits on a horse while another person watches behind a fence.,The man,gold,waves to the man and gets the foundation of it.,uses fur to hedge it around the wall.,grabs a wood stick and cuts into a man on a horse.,chases and lassos a cow.\n15770,anetv_jherly5DNjg,9749,The man chases and lassos a cow. The man,The man chases and lassos a cow.,The man,gold,jumps onto the horse and throws.,walks to the man and ties the calf.,cheers and remounts the horse.,pushes the kid up.\n15771,anetv_jherly5DNjg,3923,A man is riding a horse and roping a calf. He,A man is riding a horse and roping a calf.,He,gold,stands on it and ties it.,does a little tutorial on how to crop the curve in several different places.,lifts high rope and flips.,jumps off the horse and hog ties the calf.\n15772,lsmdc1038_The_Great_Gatsby-87523,15889,Someone halfheartedly raises his glass and turns back to watch the dancing. Someone,Someone halfheartedly raises his glass and turns back to watch the dancing.,Someone,gold,kisses her forehead and walks through another room.,\"reaches the rail set slowly and waits, completely mesmerized by his routine.\",whispers something to someone and leads her away through the slow - dancing couples.,scrutinizes him uneasily and glares at him.\n15773,lsmdc1038_The_Great_Gatsby-87523,15905,Someone points his cottage out to someone. Someone,Someone points his cottage out to someone.,Someone,gold,runs up the steps to the platform and claps.,looks towards the cottage.,grabs a bottle of vodka and aims it at a boy.,sees his grandmother walking away.\n15774,lsmdc1038_The_Great_Gatsby-87523,15877,Someone considers for a moment. Someone,Someone considers for a moment.,Someone,gold,\"looks at someone, slightly bemused.\",rises from her chair and gazes at the cafe white queen.,\"turns around and walks back into the living room, with someone watching him.\",rubs her neck to her self.\n15775,lsmdc1038_The_Great_Gatsby-87523,15880,\"Someone, a hard - faced man in a sharp suit, has arrived with his associates. As the band plays, people\",\"Someone, a hard - faced man in a sharp suit, has arrived with his associates.\",\"As the band plays, people\",gold,are watching the song.,sit at each end of a marching band.,share a polite smile.,fight back and forth on the floor.\n15776,lsmdc1038_The_Great_Gatsby-87523,15898,\"Drink in hand, someone stands on the terrace looking out into the darkness. Looking slightly disheveled, someone\",\"Drink in hand, someone stands on the terrace looking out into the darkness.\",\"Looking slightly disheveled, someone\",gold,moves down the street into the sanitarium.,turns to a nearby coworker.,walks up behind him.,wrestles someone or her to creep back.\n15777,lsmdc1038_The_Great_Gatsby-87523,15883,Someone slips the silver pencil into someone's breast pocket. Someone,Someone slips the silver pencil into someone's breast pocket.,Someone,gold,continues to walk along the vent pods.,hands two bottles of dynamite to someone.,closes the carriage screen and hands it back.,takes her arm and leads her down to the dance floor.\n15778,lsmdc1038_The_Great_Gatsby-87523,15887,Someone looks round and sees someone looking at him as if she is waiting for him. He,Someone looks round and sees someone looking at him as if she is waiting for him.,He,gold,goes to join her and glances back at someone.,is a young man who breaks the cab.,sits back with her arm to someone's face and crumples against her hair.,sees the wrecked tractor taken off.\n15779,lsmdc1038_The_Great_Gatsby-87523,15891,Someone nods to a couple of servants and follows someone across the terrace. Someone,Someone nods to a couple of servants and follows someone across the terrace.,Someone,gold,has come outside and stands by a drinks table with a cocktail fountain on it.,sees the school walk by.,\"places his hand on her belly, then looks around the room.\",starts to cry as she runs with the house.\n15780,lsmdc1038_The_Great_Gatsby-87523,15899,\"Looking slightly disheveled, someone walks up behind him. Someone\",\"Looking slightly disheveled, someone walks up behind him.\",Someone,gold,drags someone into his office.,looks again behind the thug as they go.,turns to someone and frowns.,smiles and glares at it.\n15781,lsmdc1038_The_Great_Gatsby-87523,15881,\"As the band plays, people share a polite smile. Someone\",\"As the band plays, people share a polite smile.\",Someone,gold,slaps his face as he watches him on her mother expressing her emotions.,comes out of the bus and gives her young man a hug.,supporters are sitting down.,gets up and gestures towards the dance floor.\n15782,lsmdc1038_The_Great_Gatsby-87523,15892,Someone has come outside and stands by a drinks table with a cocktail fountain on it. Someone,Someone has come outside and stands by a drinks table with a cocktail fountain on it.,Someone,gold,\"roars toward the window and walks down the street towards the producer wide - eyed, grinning.\",stops and turns back.,stands up someone with his arm around someone 'neck.,sits at her desk at night.\n15783,lsmdc1038_The_Great_Gatsby-87523,15902,Someone continues to cover someone in kisses. Someone,Someone continues to cover someone in kisses.,Someone,gold,\"runs to the fence, picks up the flaming canister.\",shoots him gets a shove along the narrow ledge.,pauses and lifts his head with a slight smile.,wraps a chain around his neck.\n15784,lsmdc1038_The_Great_Gatsby-87523,15903,Someone pauses and lifts his head with a slight smile. He,Someone pauses and lifts his head with a slight smile.,He,gold,lets the phone drop which reveals his bare ear.,digs into his pocket and leans towards someone.,steps onto the stage and swings over to him.,meets someone's gaze.\n15785,lsmdc1038_The_Great_Gatsby-87523,15901,Someone smooths his hair back and turns to the barman. Someone,Someone smooths his hair back and turns to the barman.,Someone,gold,forces him to the desk.,recoils as he starts in the garage.,speeds off as someone glares from the others.,continues to cover someone in kisses.\n15786,lsmdc1038_The_Great_Gatsby-87523,15885,Someone scans about and sees the attractive actress someone. He,Someone scans about and sees the attractive actress someone.,He,gold,goes to the phone door and joins the other boys.,\"restrains her from behind, lumbering back and forth.\",raises his eyebrows and nods to her.,\"grasps his hand as she stares at the cold, wistful.\"\n15787,lsmdc1038_The_Great_Gatsby-87523,15878,\"Someone looks at someone, slightly bemused. The butler, someone,\",\"Someone looks at someone, slightly bemused.\",\"The butler, someone,\",gold,is studying deadly mordor.,comes over and leans down to someone.,is incredulous and noticing that someone was making any decision.,climbs onto a thickly wrapped metal beam.\n15788,lsmdc1038_The_Great_Gatsby-87523,15890,\"Outside, someone follows someone through a gate. Someone\",\"Outside, someone follows someone through a gate.\",Someone,gold,\"remains standing at the edge of the wreck of the missing, almost - cloud cuting route.\",hurdles the cliff's side of his cage.,nods to a couple of servants and follows someone across the terrace.,steals a lady from her truck and drops it.\n15789,lsmdc1038_The_Great_Gatsby-87523,15886,Someone sees people follow someone upstairs. She,Someone sees people follow someone upstairs.,She,gold,\"gazes at the atrium, then turns to someone.\",wraps her hand around his neck.,sees four guns straight out with someone.,smiles brightly at someone.\n15790,lsmdc1038_The_Great_Gatsby-87523,15894,They gaze into each other's eyes. He,They gaze into each other's eyes.,He,gold,\"smiles awkwardly, shakes his head, then shakes his head.\",\"cups his hand against her cheek, leans closer and kisses her passionately on the lips.\",sees nothing unusual has just happened.,\"lowers her hand, then holds him tightly.\"\n15791,lsmdc1038_The_Great_Gatsby-87523,15908,Someone steps away from someone. Someone and his associates,Someone steps away from someone.,Someone and his associates,gold,arrive in his parking spot before giving directions to two children.,raise their weapons.,are fighting with the staff.,join their real wedding as a small group of men describing zumba approaches.\n15792,lsmdc1038_The_Great_Gatsby-87523,15893,\"Someone, in a dark dinner suit and bow tie, slowly approaches her. They\",\"Someone, in a dark dinner suit and bow tie, slowly approaches her.\",They,gold,gaze into each other's eyes.,\"embrace the blanket around her husband, who knows what she loves, she does so.\",\"gentleman is rubbing her face with the arm, all looking changed out of her.\",find facing cowboy into the ocean.\n15793,lsmdc1038_The_Great_Gatsby-87523,15895,\"He cups his hand against her cheek, leans closer and kisses her passionately on the lips. He\",\"He cups his hand against her cheek, leans closer and kisses her passionately on the lips.\",He,gold,\"takes her touch, then touches his face, which tweaks with her fingers.\",\"wraps his arm around her waist, pulls her close and kisses her neck.\",shakes the woman's sandy lips.,takes a long drink.\n15794,lsmdc1038_The_Great_Gatsby-87523,15888,He goes to join her and glances back at someone. Someone,He goes to join her and glances back at someone.,Someone,gold,glances down with someone's hands as he turns.,halfheartedly raises his glass and turns back to watch the dancing.,is at the tv.,\"smiles, then sits up the pen.\"\n15795,lsmdc1038_The_Great_Gatsby-87523,15879,\"The butler, someone, comes over and leans down to someone. Someone, a hard - faced man in a sharp suit,\",\"The butler, someone, comes over and leans down to someone.\",\"Someone, a hard - faced man in a sharp suit,\",gold,has arrived with his associates.,walks back into the room.,hangs up as he walks out into the courtroom.,is licking his carriage.\n15796,lsmdc1038_The_Great_Gatsby-87523,15907,Someone touches someone's face. Someone,Someone touches someone's face.,Someone,gold,turns around and sees someone.,clasps her hands together.,gets up to him.,steps away from someone.\n15797,lsmdc1038_The_Great_Gatsby-87523,15876,They walk through the party with someone. Someone,They walk through the party with someone.,Someone,gold,joins someone outside the bedroom.,hurries over to someone.,looks worried around someone and someone.,takes someone's arm.\n15798,lsmdc1038_The_Great_Gatsby-87523,15896,\"He wraps his arm around her waist, pulls her close and kisses her neck. Her eyes closed, someone\",\"He wraps his arm around her waist, pulls her close and kisses her neck.\",\"Her eyes closed, someone\",gold,pinches her lips with her fingers and licks her chin.,\"tilts her head back, enraptured.\",gets on his bike again as the car pulls back out.,turns back to him.\n15799,lsmdc1038_The_Great_Gatsby-87523,15884,Someone takes her arm and leads her down to the dance floor. Someone,Someone takes her arm and leads her down to the dance floor.,Someone,gold,\"walk over to the tea room, where she is holding a piece of paper, which has both hands in front of her.\",strides into his room and helps on a sofa.,raises her's hand and rides off through the street.,scans about and sees the attractive actress someone.\n15800,lsmdc1038_The_Great_Gatsby-87523,15909,Someone and his associates are fighting with the staff. Someone,Someone and his associates are fighting with the staff.,Someone,gold,falls into the sand.,puts down his glass.,looks towards the crowd.,smiles at people as they cross the other room.\n15801,lsmdc1038_The_Great_Gatsby-87523,15882,Someone smiles and they stand. Someone,Someone smiles and they stand.,Someone,gold,slips the silver pencil into someone's breast pocket.,opens canvas cover with bloodshot eyes.,\"looks at someone, who finds the love of youth boy wearing a very black lei around his neck.\",claps his hands together and mouths lie.\n15802,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94897,322,\"Someone throws down a piece of raw meat. Ignoring the apple, the baby Thestral\",Someone throws down a piece of raw meat.,\"Ignoring the apple, the baby Thestral\",gold,\"with a coiled tissue, and shutting it down giving another man to someone.\",flaps its wings and gobbles up the meat.,some seedy out toddlers cackles to it.,tries to put it away.\n15803,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94897,323,\"Ignoring the apple, the baby Thestral flaps its wings and gobbles up the meat. Someone\",\"Ignoring the apple, the baby Thestral flaps its wings and gobbles up the meat.\",Someone,gold,glares at the marine with the sunglasses.,glances over someone's shoulder.,shifts him back in the direction of his cousins.,gobbles a sausage at breakfast.\n15804,lsmdc0019_Pulp_Fiction-56587,857,They enter the apartment building. People,They enter the apartment building.,People,gold,walk through the reception area and wait for the elevator.,head to the front door smiles.,exit to the apartment.,sit around the bed.\n15805,anetv_qm8sJxsZ5VY,8371,We see the man pretend to sleep and talk in his sleep as the words appear on the screen and the barber laughs. The man,We see the man pretend to sleep and talk in his sleep as the words appear on the screen and the barber laughs.,The man,gold,throws shaving cream on his face to see the front of the screen.,rests his right hand on the mother's lap.,appears to fall out of the chair.,moves and grabs his gun shop as the man speaks about the tour.\n15806,anetv_qm8sJxsZ5VY,8367,We see an animated title screen. A man in red cap,We see an animated title screen.,A man in red cap,gold,is then seen on the outside.,\"removes his sunglasses, holds a balding weight to his ear, and then stands a butler.\",holds the trophy at hand.,stands outside a barbershop talking.\n15807,anetv_qm8sJxsZ5VY,8370,The man pretends to be asleep and the barber points at him and the man pretend to wake up and fall back asleep while getting his hair cut. We,The man pretends to be asleep and the barber points at him and the man pretend to wake up and fall back asleep while getting his hair cut.,We,gold,then by several different tools being shown.,play them with the man.,see the man pretend to sleep and talk in his sleep as the words appear on the screen and the barber laughs.,all wearing facial parts.\n15808,anetv_qm8sJxsZ5VY,8369,He sits in a chair and the barber uses electric razors to cut his hair. The man pretends to be asleep and the barber points at him and the man,He sits in a chair and the barber uses electric razors to cut his hair.,The man pretends to be asleep and the barber points at him and the man,gold,pretend to wake up and fall back asleep while getting his hair cut.,begins to tie the curlers with other hair.,wrenches the leg away.,prepares and brushes his teeth.\n15809,anetv_qm8sJxsZ5VY,8368,A man in red cap stands outside a barbershop talking. He sits in a chair and the barber,A man in red cap stands outside a barbershop talking.,He sits in a chair and the barber,gold,uses electric razors to cut his hair.,starts shaving his legs with shoes.,begins to shave his legs with it.,takes a couple of roller.\n15810,anetv_qm8sJxsZ5VY,16958,A man is seen standing next to a barber shop and leads into him cutting the hair of others. The man,A man is seen standing next to a barber shop and leads into him cutting the hair of others.,The man,gold,is shown is several clips using a razor on a person's head as well as combing and speaking to the camera.,sits and talks while still speaking to the camera and points at the camera.,speaks to the camera before continuing to shave off his hair with a pen.,continues putting rollers through the hair and the camera pans all around the interior as well as speaking to the camera.\n15811,anetv_qm8sJxsZ5VY,16959,The man is shown is several clips using a razor on a person's head as well as combing and speaking to the camera. People,The man is shown is several clips using a razor on a person's head as well as combing and speaking to the camera.,People,gold,watch the man work on the side and end with men smiling to the camera.,is then shown shaving his face as well as shaving.,speaks while laughing to the camera.,continue snowboarding along the hill on the side.\n15812,anetv_twGoVVPO08Q,15384,An audience watching pans out into a large track and athletes running into a pit. Several people,An audience watching pans out into a large track and athletes running into a pit.,Several people,gold,continue to throw and perform a basket of their performance.,step out onto the field as onlookers compete by onlookers.,are shown running down the track while the audience claps and people speak to the camera.,walk up to a mirror and begin running for them.\n15813,anetv_cpy_BFGQoQ8,745,Inside of a rock climbing store men are gathered around a jumping on a rope. The man in the green does some tricks and then a man in a hoodie,Inside of a rock climbing store men are gathered around a jumping on a rope.,The man in the green does some tricks and then a man in a hoodie,gold,begins instructing the athlete on front a red camel.,walks him from the camera.,jumps and walks on it.,begins to lift the body as it combs behind his face.\n15814,anetv_1G5cu1NvDFw,7285,A young child is seen running around a back yard on a large set of stilts. The boy,A young child is seen running around a back yard on a large set of stilts.,The boy,gold,walks down the playground and flips back very fast on the bars.,runs up and moves the boy back and fourth while the camera captures his movements.,continues dancing on the field while several other players are shown on the sides.,continues bouncing around as the camera captures him as well as running.\n15815,anetv_bRVazNYfpGE,5724,There's a girl gymnast dressed in purple leotards doing flips on a horse bar in a large indoor stadium filled with spectators. She,There's a girl gymnast dressed in purple leotards doing flips on a horse bar in a large indoor stadium filled with spectators.,She,gold,continues doing front flips and twisting her body around on the horse bar.,steps out of her room and tries to wrestle some of her harness.,rushes through the front of the stage.,performs cartwheel in her performance on the ground and the high splits does the flips.\n15816,anetv_bRVazNYfpGE,5726,\"She walks the entire horse bar and then finally jumps off the horse bar to successfully end her round. As she jumps down and walks away, the crowd\",She walks the entire horse bar and then finally jumps off the horse bar to successfully end her round.,\"As she jumps down and walks away, the crowd\",gold,looks on and there is no crowd in the crowd below.,\"claps, jumping and smiling into the camera watching him.\",cheer and applaud loudly.,increases as she walks the length of the field with her arms up.\n15817,anetv_Q2jdtN4-RE0,10933,A woman is seen standing outside with her feet together and looking off into the distance. The woman then,A woman is seen standing outside with her feet together and looking off into the distance.,The woman then,gold,begins moving slowly around the area while moving her hands back and fourth.,jumps down into the pit and leads into him jumping and looking to the camera.,throws the javelin off into the distance and starts walking through the track.,grabs a hula hoop and begins dancing herself onto a swingset.\n15818,anetv_Q2jdtN4-RE0,2084,A woman is standing on her back patio. She,A woman is standing on her back patio.,She,gold,is holding a mop and putting the hair to the side.,\"moves very slowly, lifting and lowering her arms and legs.\",is looking down some type of makeup.,is hitting the pinata with hula hoops and even hula hoop.\n15819,anetv_Q2jdtN4-RE0,2085,\"She moves very slowly, lifting and lowering her arms and legs. She\",\"She moves very slowly, lifting and lowering her arms and legs.\",She,gold,performs several slow martial arts moves.,\"starts to move, but she moves into the rhythm of the other end and falls slowly.\",\"pulls the barbell, maintaining her balance, lifting it to his chest.\",riverbed superimposed across to the wall as slow moving hips and women buy from footage.\n15820,anetv_Q2jdtN4-RE0,10934,The woman then begins moving slowly around the area while moving her hands back and fourth. She,The woman then begins moving slowly around the area while moving her hands back and fourth.,She,gold,continues speaking more speak to the camera with her hands while walking away from the area.,continues using the material to break apart a couple of pictures.,uses several products to work along the lens and occasionally looking back at the camera.,continues moving her body around and looking off into the distance.\n15821,lsmdc3011_BLIND_DATING-1070,11991,\"As someone relaxes, his mother briefly fills his view. He\",\"As someone relaxes, his mother briefly fills his view.\",He,gold,squeezes his own back.,\"bows his head, then lets his touch recognize her face.\",presents the baby from someone.,enters the sunny dock.\n15822,lsmdc3011_BLIND_DATING-1070,11992,\"He bows his head, then lets his touch recognize her face. He\",\"He bows his head, then lets his touch recognize her face.\",He,gold,\"looks again, sees her tender and emotional gaze and smiles at her.\",goes and joins her father at the pool table.,\"looks up, closes his eyes.\",hangs up and closes his eyes.\n15823,lsmdc3011_BLIND_DATING-1070,11993,\"He looks again, sees her tender and emotional gaze and smiles at her. They\",\"He looks again, sees her tender and emotional gaze and smiles at her.\",They,gold,look horrible in the swans.,\"fade into black, crushing the doubt of someone's thoughts.\",put up under her husband's cast.,share a tight hug.\n15824,lsmdc3011_BLIND_DATING-1070,11990,He glimpses a hazy black and white image of someone in the living room. More flashes,He glimpses a hazy black and white image of someone in the living room.,More flashes,gold,glow from the shore past hogwarts.,appear to someone slowly.,illuminate a friend's name now.,reveal someone and someone.\n15825,lsmdc3011_BLIND_DATING-1070,11995,His mom rubs his back and cradles the nape of his neck. As someone's hand,His mom rubs his back and cradles the nape of his neck.,As someone's hand,gold,\"reaches out, his father's curious face cranes in to his view.\",reaches someone's chest.,twists with the ring.,pulls the paper squishing out between his knees.\n15826,lsmdc3011_BLIND_DATING-1070,11996,\"Someone keeps his eyes respectfully on the reunion. Now, someone\",Someone keeps his eyes respectfully on the reunion.,\"Now, someone\",gold,\"runs down the donut slope, the same lights glow on his face.\",carries an ax into a locked trunk.,shakes his head with the driver's hand.,eagerly reaches for someone to approach.\n15827,anetv_cjS2B52jBbU,4824,\"He throws darts at a board, trying to hit the target while the crowd claps. Another competitor\",\"He throws darts at a board, trying to hit the target while the crowd claps.\",Another competitor,gold,\"appears, doing the same.\",passes by flipping who stands back and hits him.,is running across the ice.,is also shown out of a ring.\n15828,anetv_cjS2B52jBbU,4825,\"Another competitor appears, doing the same. The winner\",\"Another competitor appears, doing the same.\",The winner,gold,\"walks onto the stage as camera flash, celebrating.\",is mesmerized to the surf as a crowd watches.,goes down more flips as the mechanism reach and succeeds.,performs on parallel ticks.\n15829,lsmdc1018_Body_Of_Lies-80107,5558,\"He smiles, and she prepares a syringe. She\",\"He smiles, and she prepares a syringe.\",She,gold,holds her fist up.,\"walks around to him, smiling.\",shoots out of the railing and pulls around the side of the plane.,trips over a table he sends her away.\n15830,lsmdc1018_Body_Of_Lies-80107,5548,\"As the man swipes at someone with a knife, two dogs attack. Someone\",\"As the man swipes at someone with a knife, two dogs attack.\",Someone,gold,pauses for a moment before taking them off.,slams the man against a wall and yanks his arm up behind his back.,looks one every time they both can.,grabs a cup of whiskey and puts it in the distance.\n15831,lsmdc1018_Body_Of_Lies-80107,5550,A dog sinks its teeth into someone 'ankle. He,A dog sinks its teeth into someone 'ankle.,He,gold,catches in the head.,\"lifts it to his head, then holds the goat around his neck.\",is jumping through the water.,\"grabs the knife, stabs the man repeatedly and stabs the dog biting him.\"\n15832,lsmdc1018_Body_Of_Lies-80107,5557,\"She looks at the deep, bloody bites on someone 'leg. She\",\"She looks at the deep, bloody bites on someone 'leg.\",She,gold,pushes him away to let him get to the last ditch.,looks at his bloody hands and cut arm.,\"bends down the counter, wrapping her buttocks climbed into someone's grip, and examines someone woeful face.\",\"has a suitcase and a concerned frown, the hand - of - white woman, holds it out.\"\n15833,lsmdc1018_Body_Of_Lies-80107,5547,\"Rounding a corner, the man pushes a cyclist over. The man\",\"Rounding a corner, the man pushes a cyclist over.\",The man,gold,leaves with their eyelids open.,shows his face and nods again.,pulls the autograph file from one of the hostages.,climbs over a high wall.\n15834,lsmdc1018_Body_Of_Lies-80107,5559,\"She walks around to him, smiling. Someone\",\"She walks around to him, smiling.\",Someone,gold,places her hands in a hat.,grins from her mirror.,\"goes back to paris, across the walkway to the school.\",studies her as she holds up the syringe and flicks it.\n15835,lsmdc1018_Body_Of_Lies-80107,5549,Someone slams the man against a wall and yanks his arm up behind his back. A dog,Someone slams the man against a wall and yanks his arm up behind his back.,A dog,gold,\"stands on his leg in a skimpy, and a man spits on a table.\",watches her as the dragon return home.,sinks its teeth into someone 'ankle.,ushers through a glass window holding a can of squirming o..\n15836,lsmdc1018_Body_Of_Lies-80107,5543,\"Someone watches on the large surveillance screen. On the screen, the streets\",Someone watches on the large surveillance screen.,\"On the screen, the streets\",gold,hit mid air by inch - deep traffic.,are viewed from above.,vanishing in small circus scenes.,of chicago and new people are.\n15837,lsmdc1018_Body_Of_Lies-80107,5552,Someone pulls himself free and clambers over the wall. He,Someone pulls himself free and clambers over the wall.,He,gold,grabs him by the elbow.,puts his running hand over his face.,makes a call as he limps across wasteland.,points someone backward showing ruins of a fruit - shaped cliff.\n15838,lsmdc1018_Body_Of_Lies-80107,5542,\"The man briskly stands and runs off, pushing a guy over as he goes. Someone\",\"The man briskly stands and runs off, pushing a guy over as he goes.\",Someone,gold,gets out of the car.,watches on the large surveillance screen.,tries to point sideways and then grabs another jumps one more time.,touches a wall on the lawn.\n15839,lsmdc1018_Body_Of_Lies-80107,5551,\"Someone clambers up on the wall, and the dogs bite his ankles. Someone\",\"Someone clambers up on the wall, and the dogs bite his ankles.\",Someone,gold,hangs down after him so effortlessly than that he emerges.,kisses his hand where he flings the shield aside.,keels over and tosses it back sadly.,pulls himself free and clambers over the wall.\n15840,lsmdc1018_Body_Of_Lies-80107,5544,\"On the screen, the streets are viewed from above. Someone\",\"On the screen, the streets are viewed from above.\",Someone,gold,runs after the man and loses him in a crowd.,is carrying a stack of folders at the gates of the abbey.,snow looms loosely over light hill beneath it.,sprinkles crumbs over the tower.\n15841,lsmdc1018_Body_Of_Lies-80107,5560,Someone studies her as she holds up the syringe and flicks it. He,Someone studies her as she holds up the syringe and flicks it.,He,gold,winces as she injects him in the stomach.,replaces the remnants of her gem.,snaps it in half.,gets out of the car and runs away.\n15842,lsmdc1018_Body_Of_Lies-80107,5545,Someone runs after the man and loses him in a crowd. Someone,Someone runs after the man and loses him in a crowd.,Someone,gold,approaches from another direction.,jabs the bully's back.,bites by a magnificent shower tunnel.,\"ducks head first and stands by, then the feed releases the bull.\"\n15843,lsmdc1018_Body_Of_Lies-80107,5553,\"Someone parks the bmw on a busy street, and he and someone get out. They\",\"Someone parks the bmw on a busy street, and he and someone get out.\",They,gold,pass him and get out of the car holding a passing sign as he approaches.,walk into a health clinic.,move down a jet road.,chase on the road behind the highway.\n15844,lsmdc1018_Body_Of_Lies-80107,5556,She gets a packet from a cabinet and goes to someone. She,She gets a packet from a cabinet and goes to someone.,She,gold,\"looks at the deep, bloody bites on someone 'leg.\",lays a guitar on the tray.,watches her leave the cab.,grabs the mask again.\n15845,lsmdc1018_Body_Of_Lies-80107,5555,\"The doctor leaves and the pretty young nurse, someone, walks in. She\",\"The doctor leaves and the pretty young nurse, someone, walks in.\",She,gold,\"has her, and shares her hair with one of the officers who just stares.\",gets a packet from a cabinet and goes to someone.,hands over for someone's smooth jumper.,\"drags his hands closer to his mouth, returning his attention to an older chair.\"\n15846,lsmdc1018_Body_Of_Lies-80107,5554,\"They walk into a health clinic. In a treatment room, someone\",They walk into a health clinic.,\"In a treatment room, someone\",gold,splashes food on his face.,gets out of a taxi.,opens a china drawer.,sits up on a bed.\n15847,lsmdc1018_Body_Of_Lies-80107,5546,\"The man runs down a quiet alley. Rounding a corner, the man\",The man runs down a quiet alley.,\"Rounding a corner, the man\",gold,pushes a cyclist over.,\"backs away, heading towards the back church.\",throws his skateboard across the room.,emerges wearing a white biker jacket.\n15848,lsmdc1011_The_Help-78555,4713,One of the men cautions her. Someone witnesses white mothers and their children,One of the men cautions her.,Someone witnesses white mothers and their children,gold,turned away with studded indifference.,fill nervous prayer at their secret dining table.,raise the pacifier to her lips.,\"enter, red in extreme jerseys billowing.\"\n15849,lsmdc1011_The_Help-78555,4714,Someone witnesses white mothers and their children turned away with studded indifference. Someone,Someone witnesses white mothers and their children turned away with studded indifference.,Someone,gold,runs to a vampire.,\"sits in her car with her son, her face impassive.\",turns the boy towards him and pushes him down on the sink.,sleeps peacefully in bed by the blanket.\n15850,anetv_PSUGaj7_5LI,19488,\"He waits for his ball to come back and gets prepared to take his next turn, it's another strike. He takes another turn and makes another strike, everyone\",\"He waits for his ball to come back and gets prepared to take his next turn, it's another strike.\",\"He takes another turn and makes another strike, everyone\",gold,has to start into the table.,keeps walking up the street.,falls on the ground before him is shown on several darts.,is congratulating and hugging him.\n15851,lsmdc1005_Signs-5021,13154,\"They looked towards a boarded up window to the right of the mantle piece, their gaze passes across the fireplace as they turned to follow the noises. Shadows\",\"They looked towards a boarded up window to the right of the mantle piece, their gaze passes across the fireplace as they turned to follow the noises.\",Shadows,gold,flit across the slit of moonlight between two planks across the window on the left of the mantle piece.,is at the front window.,wanders as the penguins wander in.,\"are there, like human.\"\n15852,lsmdc1005_Signs-5021,13157,Someone starts to back away. Someone,Someone starts to back away.,Someone,gold,\"loads his briefcase into the backseat of the suitcase, then scrambles into the driver's seat.\",\"goes direction, out of the shadows in someone's way.\",\"returns unsteadily and motionless, gripping the sword in his hand as he tries to get the plane inside.\",looks around and puts a comforting hand on someone's shoulder before kneeling down in front of the frightened boy.\n15853,lsmdc1005_Signs-5021,13156,They swing around and stare petrified down the hallway and into the kitchen towards the backdoor. They,They swing around and stare petrified down the hallway and into the kitchen towards the backdoor.,They,gold,\"turn quickly back around to look at the front door, one plank nailed across the frame halfway up.\",\"enters, followed by a lion, almost screaming.\",stare at it for many minutes then takes the phone to the balding receptionist as the operator gets up.,leads her downstairs.\n15854,lsmdc1005_Signs-5021,13152,Someone's eyes dart nervously around. His fingers,Someone's eyes dart nervously around.,His fingers,gold,tightening on someone's shoulders in front of him.,drifting around the ring and turns around.,move up to someone 'chin.,slowly outlines the model's hair.\n15855,lsmdc1005_Signs-5021,13155,\"Slowly, the family turns to watch the figures block out the soft light, diffusing through the gaps between the boards on another window at the front of the house. They\",\"Slowly, the family turns to watch the figures block out the soft light, diffusing through the gaps between the boards on another window at the front of the house.\",They,gold,join the structure down on a slack line and disappear in a horizontal line.,\"in a barbershop, someone sits at a desk with his long hair.\",heads out of the woods.,swing around and stare petrified down the hallway and into the kitchen towards the backdoor.\n15856,lsmdc3060_SANCTUM-29497,14627,Someone moves to his son's ledge and crouches. He,Someone moves to his son's ledge and crouches.,He,gold,reaches out and feels his left nostril.,grasps his ring then tucks it into the cavity of his blazer.,places a hand on someone's shoulder.,\"faces someone, who bites his wrist.\"\n15857,lsmdc3060_SANCTUM-29497,14628,\"Shifting his jaw, someone pulls away. He\",\"Shifting his jaw, someone pulls away.\",He,gold,meets his father's gaze and nods.,hides the pigs in a line.,\"stares yards, his lips upturned.\",reads swarm vehicles as they cling to it.\n15858,lsmdc3060_SANCTUM-29497,14629,He meets his father's gaze and nods. Someone,He meets his father's gaze and nods.,Someone,gold,watches the train as he uses his phone.,pulls his son over a stretcher.,stumbles as he makes his way over the uneven ground.,gives someone a look.\n15859,lsmdc0021_Rear_Window-58621,17801,He pauses his hand on the door knob. He,He pauses his hand on the door knob.,He,gold,\"starts to go out the door, and closes it behind him.\",drives her to a black cab.,and windmills feels the temperature.,turns on the radio.\n15860,lsmdc0021_Rear_Window-58621,17800,\"He goes up the steps to the door, putting on his hat. He\",\"He goes up the steps to the door, putting on his hat.\",He,gold,dashes off the vehicle and into the alley.,pauses his hand on the door knob.,\"sits at the booth, drinking drinks.\",attaches a plastic sketch up to a stone archway to his own.\n15861,lsmdc1062_Day_the_Earth_stood_still-100592,18933,A Chinook helicopter stands outside a large hanger. The convoy,A Chinook helicopter stands outside a large hanger.,The convoy,gold,rides the bench one casually.,gets thrown onto rocky bodies.,pulls up at an aircraft.,comes and came towards it.\n15862,lsmdc1062_Day_the_Earth_stood_still-100592,18937,Someone finds a space and sits down nervously. She,Someone finds a space and sits down nervously.,She,gold,\"goes back to someone, but his attention is up on the disclaimer.\",\"looks across at a man with a dark, bushy beard.\",\"stops by the window for a moment, unsure.\",\"drives quickly through a dirt area, frantically picking up the bottles to the floor, tossing them around on the rug.\"\n15863,lsmdc1062_Day_the_Earth_stood_still-100592,18930,Beyond the outliners their side of the highway is empty. She,Beyond the outliners their side of the highway is empty.,She,gold,looks at shine with misty eyes.,checks each line and checks her pulse and trying to battle with the other team.,stares at the expressionless agent who stares straight ahead ignoring her.,is across the canal street on the sign.\n15864,lsmdc1062_Day_the_Earth_stood_still-100592,18936,\"Inside, it's packed with soldiers and some civilians. Someone\",\"Inside, it's packed with soldiers and some civilians.\",Someone,gold,looks for a yellow stock - suit wearing no cables.,grabs cups and cups for him.,finds a space and sits down nervously.,crawls over a gray - faced cattle and backs away.\n15865,lsmdc1062_Day_the_Earth_stood_still-100592,18935,\"The agent ushers the stunned someone towards the helicopter. Inside, it\",The agent ushers the stunned someone towards the helicopter.,\"Inside, it\",gold,swings towards a public boat holding three boys.,knocks someone's fist down.,falls on the vault shelf.,'s packed with soldiers and some civilians.\n15866,lsmdc1062_Day_the_Earth_stood_still-100592,18931,She stares at the expressionless agent who stares straight ahead ignoring her. More vehicles,She stares at the expressionless agent who stares straight ahead ignoring her.,More vehicles,gold,move in to find someone still shooting at her target in the diner.,drive along a country road along city street.,join the convoy rolling down the empty night - time highway.,\"move closer, sending balls down rocks.\"\n15867,lsmdc1062_Day_the_Earth_stood_still-100592,18934,The convoy pulls up at an aircraft. The agent,The convoy pulls up at an aircraft.,The agent,gold,ushers the stunned someone towards the helicopter.,turns with a smile as someone strolls off.,stares forlornly at him.,kicks the sedan on the wheel.\n15868,lsmdc1062_Day_the_Earth_stood_still-100592,18932,More vehicles join the convoy rolling down the empty night - time highway. A Chinook helicopter,More vehicles join the convoy rolling down the empty night - time highway.,A Chinook helicopter,gold,arrives at the bridge.,stands outside a large hanger.,reverses the teens at the roadside.,passes over the gate before darkness.\n15869,anetv_koEfnIoZB_4,6488,A fourth man leaps into the tunnel. A fifth man,A fourth man leaps into the tunnel.,A fifth man,gold,shoots into the air with two inflated propellers as the body begins to collapse.,brings himself to the ground and raises his other leg.,leaps into the tunnel with his arms flared open.,takes off his cassettes.\n15870,anetv_koEfnIoZB_4,6486,Another man leaps into the large tunnel. A third man,Another man leaps into the large tunnel.,A third man,gold,jumps down and jumps off the top ramp.,leaps into the tunnel.,swings the ball in front of his fire.,lassos the calf and ties it up.\n15871,anetv_koEfnIoZB_4,6484,A crowd watches a man leap into a large tunnel. Someone,A crowd watches a man leap into a large tunnel.,Someone,gold,walks by tall bushes.,\"takes his phone off the box, then shakes it.\",gets up and walks down the ramp.,gives a thumbs up.\n15872,anetv_koEfnIoZB_4,6489,A fifth man leaps into the tunnel with his arms flared open. A sixth man,A fifth man leaps into the tunnel with his arms flared open.,A sixth man,gold,reaches for control and someone yanks his hold open.,incinerates them in the windshield vest.,leaps into the tunnel.,turns into his office and puts several glass on top.\n15873,anetv_koEfnIoZB_4,6487,A third man leaps into the tunnel. A fourth man,A third man leaps into the tunnel.,A fourth man,gold,sits with the person behind him and massages his butt to the ground.,pulls the biker low into a passage.,is crouched down on the police line.,leaps into the tunnel.\n15874,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7385,7093,Someone finds someone packing his case in the boys' bedroom. The professor,Someone finds someone packing his case in the boys' bedroom.,The professor,gold,\"flounces out of bed as debris, stands on the open screen with a phone book.\",working in the mirrored room takes out a flash photo.,leaves someone's room.,touches the velvet drapes on the four - poster bed.\n15875,anetv_J4hnBPgwDlw,19945,She starts talking about a bottle of mouthwash. She then,She starts talking about a bottle of mouthwash.,She then,gold,takes a bottle of wine and pours it into a cup.,rinses and cleans under some of the towels.,uses the mouthwash to gargle and rinse in the sink.,takes some toothpaste and sucks on the toothbrush.\n15876,anetv_J4hnBPgwDlw,1764,A woman is seen speaking to the camera and leads to her holding up mouth wash and then swishing it around her mouth. She,A woman is seen speaking to the camera and leads to her holding up mouth wash and then swishing it around her mouth.,She,gold,speaks to the camera and demonstrate how to twirl it properly and squeezing her hair and various several afterwards.,continues swishing it around while closing the cap then spits it out and smiles to the camera.,brushes all of the dog with the water and continues scrubbing all around the dog.,continuously piercing in and out onto the camera as she continues laying her makeup and looking in a mirror.\n15877,anetv_J4hnBPgwDlw,19944,A woman wearing glasses has her hand on her hip. She,A woman wearing glasses has her hand on her hip.,She,gold,goes over him with his hand plate in front of him.,starts talking about a bottle of mouthwash.,on the floor she sits in a chair with her hands on her hips.,picks her way down from the floor and picks up the glass.\n15878,anetv_uzXbaoWOm5o,14774,There are two Asian women standing face to face very close to one another and talking about a can while subtitles show up at the bottom. The woman holding the bottle on the right,There are two Asian women standing face to face very close to one another and talking about a can while subtitles show up at the bottom.,The woman holding the bottle on the right,gold,and talking who has a shot lens near holder.,both men then seen liquid liquid and slide out over the ocean.,tries to unscrew the bottle open and has a hard time so someone reaches in and opens it for her and hands it back.,\"facing the titanic, upside down pointing to the plunging woman in blue.\"\n15879,anetv_1Z3mjpu1I2A,1474,She uses a blue dish scrub and plenty of dish soap and washes the glass and spoons while keeping the tap running. She,She uses a blue dish scrub and plenty of dish soap and washes the glass and spoons while keeping the tap running.,She,gold,is baking water over her newly boiled salad in a large green bowl.,cleans its mouth in the red towel and places the cards on the table in front of her.,has her hands covered with soap foam as she washes the spoons and knives under the tap.,continues to sink as she continues to demonstrate how to properly washing your hand.\n15880,anetv_1Z3mjpu1I2A,1473,There's a little girl washing dishes and spoons in the kitchen sink. She,There's a little girl washing dishes and spoons in the kitchen sink.,She,gold,picks up a bottle and slides it over her shoulder.,is then cooked out under a dish and sink to a bowl.,\"is talking on the sink, with a close up of the dishes on a stove.\",uses a blue dish scrub and plenty of dish soap and washes the glass and spoons while keeping the tap running.\n15881,anetv_1Z3mjpu1I2A,1475,She has her hands covered with soap foam as she washes the spoons and knives under the tap. She then,She has her hands covered with soap foam as she washes the spoons and knives under the tap.,She then,gold,combs the honey off her fluffy brown hair.,washes a pizza cutter and spoon thoroughly with the soap and water.,wipes lotion off over the sink and then rubs them with a towel.,lays down on the sink and begins washing her shoes in a bathtub.\n15882,anetv_rKtktLDSOpA,5582,We see the image multiples and see spectators. A lady in a white hat,We see the image multiples and see spectators.,A lady in a white hat,gold,is playing the saxophone without jumping gould after her.,is sitting on the water.,plays and is interviewed.,looks through binoculars at the game.\n15883,anetv_rKtktLDSOpA,5584,Men are playing polo in a field. A girl in green runs behind the men with a flat and we,Men are playing polo in a field.,A girl in green runs behind the men with a flat and we,gold,see the lady talking.,see the lady in the hat with a video camera recording the event.,see a person throw in the net.,see an audience clapping.\n15884,anetv_rKtktLDSOpA,5019,The camera is blurry then focuses on people playing polo. Two teams,The camera is blurry then focuses on people playing polo.,Two teams,gold,appear in two shots.,sit on a table together.,play against each other.,play a game of volleyball in a gym.\n15885,anetv_rKtktLDSOpA,5585,A girl in green runs behind the men with a flat and we see the lady in the hat with a video camera recording the event. We,A girl in green runs behind the men with a flat and we see the lady in the hat with a video camera recording the event.,We,gold,see the screen back and forth for a practice.,see he people playing polo again.,see a cartoon display in the background and the extensions clink the braids.,see a man introduces his interviews.\n15886,anetv_rKtktLDSOpA,5583,A lady in a white hat looks through binoculars at the game. Men,A lady in a white hat looks through binoculars at the game.,Men,gold,continue to ride around while some people in gear and hit the ball back and forth.,are playing polo in a field.,jump off of the shore.,aims several more darts at a table and chases an arrow.\n15887,lsmdc3060_SANCTUM-29225,16222,He views his disgruntled son onscreen. Someone,He views his disgruntled son onscreen.,Someone,gold,shuts off the feed.,carries two coffees into the gym area lobby.,chases his pirate boat across.,removes his hat and hands it to someone.\n15888,lsmdc3060_SANCTUM-29225,16223,\"Later, he prepares for the dive. He\",\"Later, he prepares for the dive.\",He,gold,sets his rebreather backpack.,puts down his bloodstained shirt and retrieves it.,\"enters the room, reaching an electrical wall.\",reaches above his knees and balances.\n15889,anetv_plZs-3GtoOo,9500,He is using clippers on a young man. The website,He is using clippers on a young man.,The website,gold,text is shown as he shows the human words.,appears on double screen.,is advertised on the screen with pictures of the website.,cut to a smiling logo.\n15890,anetv_plZs-3GtoOo,9497,He is also styling a boy's hair with gel and a comb. He,He is also styling a boy's hair with gel and a comb.,He,gold,cuts the finished product in the bottle.,is shaving a man's beard with shaving gel and a razor.,something to the back of his ear.,dries and shaving cream on his chest as he continues to talk.\n15891,anetv_plZs-3GtoOo,9498,He is shaving a man's beard with shaving gel and a razor. He,He is shaving a man's beard with shaving gel and a razor.,He,gold,puts the tattoo on his face on the ground.,is also cutting a man's hair with scissors to give him a mohawk.,is shaving the laces of his left foot.,starts shaving the first man's hair with shaving cream on only his left hand.\n15892,anetv_plZs-3GtoOo,9499,He is also cutting a man's hair with scissors to give him a Mohawk. He,He is also cutting a man's hair with scissors to give him a Mohawk.,He,gold,pierces his ear with complete impact.,is using clippers on a young man.,is manipulating the razor in the mark by demonstrating to take care of a hanging tool.,talks around while still looking at the camera.\n15893,anetv_plZs-3GtoOo,9496,He is shaving a man's head with shaving cream and a razor. He,He is shaving a man's head with shaving cream and a razor.,He,gold,wets his chin and performing exercises with his legs and feet.,brushes out the razor with his own.,wipes the shaving off of his head with a black marker.,is also styling a boy's hair with gel and a comb.\n15894,anetv_plZs-3GtoOo,9495,A barber is shown using clippers on his client's head in a hair salon. He,A barber is shown using clippers on his client's head in a hair salon.,He,gold,is shown very close to the camera speaking and showing the product.,is shaving a man's head with shaving cream and a razor.,is not touching a mans arm is trying to give a tutorial.,blow dryers the hair with his hands.\n15895,anetv_uPqh5uA1mhA,8537,Reese Hoffa steps up and throws the ball and a man rushes to measure the throw. Reese,Reese Hoffa steps up and throws the ball and a man rushes to measure the throw.,Reese,gold,adjusts his shirt and waits for his score.,engineer gets into the other man's arms as the men charge the men in the ice.,remain in the kitchen.,times the ball then gets off the lane and lands at a red table where he grabs the silver stick.\n15896,anetv_uPqh5uA1mhA,8541,The score is shown on the screen. Fans,The score is shown on the screen.,Fans,gold,take the ball and kneel on the field.,watch and watch the white team throw.,are shown doing the wave.,are clapping gathered for the beach where people are drinking from a nearby v formation.\n15897,anetv_uPqh5uA1mhA,8540,He is shown standing with his team and an instant replay of the throw is shown. The score,He is shown standing with his team and an instant replay of the throw is shown.,The score,gold,is on black that is picked up again in slow motion.,is shown on the screen.,is shown again in slow motion.,shows they return meet more players and continue to fight off their team moves.\n15898,anetv_uPqh5uA1mhA,8538,Reese adjusts his shirt and waits for his score. Davis Storl,Reese adjusts his shirt and waits for his score.,Davis Storl,gold,are shown in a wave and they use it a special way.,sits and is featured on the screen.,are seen in tennis stands.,are pushed off the hill.\n15899,anetv_uPqh5uA1mhA,8536,Kurt drinks from a Gatorade bottle. Reese Hoffa steps up and throws the ball and a man,Kurt drinks from a Gatorade bottle.,Reese Hoffa steps up and throws the ball and a man,gold,falls into the water before one of the bulls in the air.,rushes to measure the throw.,stands in the background.,rolls wads of newspaper on his back - to - approval.\n15900,anetv_uPqh5uA1mhA,8535,\"The screen shows the words Shot Put Men. Kurt Roberts, in a yellow top, throws the ball and a man\",The screen shows the words Shot Put Men.,\"Kurt Roberts, in a yellow top, throws the ball and a man\",gold,prepares to throw himself on the floor nursing six knives.,takes out a racquetball match which is returned to the other places.,skateboard in top of it.,rushes to measure the throw.\n15901,anetv_uPqh5uA1mhA,8539,Davis Storl sits and is featured on the screen. He then throws the ball and the man,Davis Storl sits and is featured on the screen.,He then throws the ball and the man,gold,rushes to measure the distance.,hands it all over.,begins to play while on the wall.,starts to dance in sync.\n15902,lsmdc3052_NO_STRINGS_ATTACHED-25489,5811,They get out of the car. Someone,They get out of the car.,Someone,gold,pick up the skateboard butt.,pours rain in her face.,wears jeans and a t - shirt.,comes to catch up with someone.\n15903,lsmdc3052_NO_STRINGS_ATTACHED-25489,5813,They stand side - by - side and watch the proceedings. Someone,They stand side - by - side and watch the proceedings.,Someone,gold,turns to meet people dancing.,jumps up from the tower.,turns to someone smiling nervously.,\"rises, then turns to his boy on his stage.\"\n15904,lsmdc3052_NO_STRINGS_ATTACHED-25489,5814,Someone turns to someone smiling nervously. With a wry smile he,Someone turns to someone smiling nervously.,With a wry smile he,gold,looks down and takes her hand in his gently knitting their fingers together.,walks to that edge window and looks around to the passenger seat.,walks away beneath the california sun and opens the front door in the great hall.,yanks her off the platform.\n15905,lsmdc3052_NO_STRINGS_ATTACHED-25489,5812,Someone wears jeans and a t - shirt. They,Someone wears jeans and a t - shirt.,They,gold,stand side - by - side and watch the proceedings.,are adding a picture of someone terribly black horses.,\"are several buttons on the armour, selling restaurant and dressing to the royal cake.\",get into a tuxedo.\n15906,lsmdc3052_NO_STRINGS_ATTACHED-25489,5810,They drive along the coast road. They,They drive along the coast road.,They,gold,find it raining inside a car.,\"are buffeted by the wave, to the car.\",move toward someone's car.,get out of the car.\n15907,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99590,3214,Someone leans down into the tomb. He,Someone leans down into the tomb.,He,gold,watches then frame from the house step before us.,gazes at the black elder wand in his hand and thrusts up his arm.,watches the piano mushroom.,\"taps his son's fighter's chest, then another movement.\"\n15908,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99590,3213,The rippling waters of Hogwarts' lake are surrounded by dark mountains. Someone,The rippling waters of Hogwarts' lake are surrounded by dark mountains.,Someone,gold,jumps into a car and stops someone.,leans down into the tomb.,is in a hammock.,arrives at the top of the quadrangle and heads away.\n15909,anetv_tilmCzSf1oc,17972,The boy performs a karate routine with hand scythes. The boy,The boy performs a karate routine with hand scythes.,The boy,gold,measures up others singing and dancing around.,ends his routine and bows.,does the splits elegantly on the field.,does a karate routine on the parallel bars.\n15910,lsmdc3069_THE_BOUNTY_HUNTER-4997,7665,\"Checking someone's wallet, he finds their wedding photo. It\",\"Checking someone's wallet, he finds their wedding photo.\",It,gold,shows someone and him beaming as bride and groom.,'s empty places written on the counter corner.,\"notices a stranger sitting on the edge of his yard, wraps his arms around someone.\",runs out of it.\n15911,anetv_wBhtt9x74TA,1798,A woman is standing by a toilet in a bikini. A man,A woman is standing by a toilet in a bikini.,A man,gold,is rubbing sunscreen onto her legs.,rubs his hand as she puts butter in a pan.,is holding a selfie stick and a stick on a bicycle.,in dress is walking on the snow.\n15912,anetv_wBhtt9x74TA,1799,A man is rubbing sunscreen onto her legs. She,A man is rubbing sunscreen onto her legs.,She,gold,bends down and starts shaving her legs.,continues shaving her face.,is using a rod to wash the shoes.,begins to rub her leg.\n15913,anetv_iMF8-iDLl6U,17622,An intro featuring the text how to change a tire plays. A woman,An intro featuring the text how to change a tire plays.,A woman,gold,travels up to play the scotch set.,has a tool that allows you put the tire on to a rim while a man holds the tool.,sits back on a sidewalk while waving to the camera.,talks onto a phone and lifts a ribbon.\n15914,anetv_iMF8-iDLl6U,17623,A woman has a tool that allows you put the tire on to a rim while a man holds the tool. The woman then,A woman has a tool that allows you put the tire on to a rim while a man holds the tool.,The woman then,gold,uses the same tool to remove the tire from the rim.,sits off the bike and shows the difference on the saddle she was equipped.,uses an allen chain to loosen the chain of the bike.,uses the proper methods to remove snowy on the new base.\n15915,anetv_iMF8-iDLl6U,17625,A man opens a Bridgestone locker or machine to show the inside. The video,A man opens a Bridgestone locker or machine to show the inside.,The video,gold,continues to show a woman in a room holding a multicolored bar.,ends with an image of a solar powered vehicle.,cuts to a instructor man holding a shovel and begins trimming the weeds.,shows some shots of work light made up to show the piles of plan.\n15916,anetv_iMF8-iDLl6U,17624,The woman then uses the same tool to remove the tire from the rim. The person filming,The woman then uses the same tool to remove the tire from the rim.,The person filming,gold,gets up and talks to the camera showing finished angles.,\"shows the back and shape of the tire, creating but putting the bike onto the tire.\",speaks with the broom.,shows an iphone's timer at various points to show how long a step should take.\n15917,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11746,She hangs up and speed dials a number. She,She hangs up and speed dials a number.,She,gold,\", a woman leaves pursuers.\",phone pulls a phone call.,\"listens in, but drops his head to a window, looks up at her feet.\",hangs up and strides out of the lady's room.\n15918,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11742,\"At night, someone cries as she crosses a street. Now the someone and someone movie\",\"At night, someone cries as she crosses a street.\",Now the someone and someone movie,gold,in corn on the abandoned field.,stand someone's making tattoos.,sweeps across a sleek parking lot.,plays on someone's tv.\n15919,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11741,\"A nearby security guard sees someone. At night, someone\",A nearby security guard sees someone.,\"At night, someone\",gold,has left beside someone.,holds branches onto a hedge.,\"tugs on his eyelids, knocking him to the ceiling.\",cries as she crosses a street.\n15920,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11744,Someone swigs a beer watching their screen kiss. Now someone,Someone swigs a beer watching their screen kiss.,Now someone,gold,gets a call from the office.,has a tip in his hand and middle finger starts to leave.,pours him a cup of coffee.,casts someone onto an armored track.\n15921,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11747,\"She hangs up and strides out of the lady's room. Later at gq, someone\",She hangs up and strides out of the lady's room.,\"Later at gq, someone\",gold,marches over to someone's office.,notices someone walking into the opposite room.,sits in the spacious hallway.,spoons a reel of cocktail sauce over me - some descent from the bar.\n15922,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11745,Now someone gets a call from the office. She,Now someone gets a call from the office.,She,gold,gets out of the control room and sits.,hangs up and speed dials a number.,gets into the cab and goes on to the cars.,thrusts his arms inward.\n15923,lsmdc3026_FRIENDS_WITH_BENEFITS-1581,11743,Now the someone and someone movie plays on someone's tv. Someone,Now the someone and someone movie plays on someone's tv.,Someone,gold,swigs a beer watching their screen kiss.,spins and slides someone's boots onto the floor.,looks up stiffly as the email pops out.,hands her a book.\n15924,lsmdc0043_Thelma_and_Luise-68486,16126,He is getting a little panicky. Someone,He is getting a little panicky.,Someone,gold,pulls the gun they stole from the state patrolman.,spits the cork upside down.,is jostled in heels.,reaches the end of the dining bench and raises it.\n15925,lsmdc0043_Thelma_and_Luise-68486,16130,\"She points the gun at it, takes a second to get a bead, then shoots two of the tires flat. The truck\",\"She points the gun at it, takes a second to get a bead, then shoots two of the tires flat.\",The truck,gold,breaks the shingle and the lights are shown and the train continues.,slowly sinks as the air escapes from the tires.,\"has taken to new york, under the station.\",slides out of its box and slides onto the new roof.\n15926,lsmdc0043_Thelma_and_Luise-68486,16127,Someone pulls the gun they stole from the State Patrolman. He,Someone pulls the gun they stole from the State Patrolman.,He,gold,looks at the gun.,secures their wood hastily.,removes his helmet lamp and scrambles underneath then grabs his hood.,gives him his path.\n15927,lsmdc0043_Thelma_and_Luise-68486,16131,The truck slowly sinks as the air escapes from the tires. People,The truck slowly sinks as the air escapes from the tires.,People,gold,roll all around the house.,stand motionless in the dim office.,passes through the potomac as its attendant gets a strainer from the overturned space.,look at each other.\n15928,lsmdc0043_Thelma_and_Luise-68486,16129,Someone looks at his truck off in the distance. She,Someone looks at his truck off in the distance.,She,gold,cuts the dim interior of the pickup.,walks back casually to maneuver it into the dummy.,\"points the gun at it, takes a second to get a bead, then shoots two of the tires flat.\",runs around and stumbles in the stomach.\n15929,lsmdc0043_Thelma_and_Luise-68486,16132,They both turn towards the truck and fire rounds into the tankers until they explode in a huge ball of fire. Someone,They both turn towards the truck and fire rounds into the tankers until they explode in a huge ball of fire.,Someone,gold,knocks them just in front of the soldiers.,\"falls to his knees, catches sight of someone, by the horn again.\",kicks across a cannon and catches himself.,starts the car and starts driving in circles around the truck driver.\n15930,lsmdc0043_Thelma_and_Luise-68486,16133,Someone starts the car and starts driving in circles around the truck driver. People,Someone starts the car and starts driving in circles around the truck driver.,People,gold,starts arriving as someone leaps into her arms.,watch a dirt flying outside the corner of the track.,are both howling at the top of their lungs.,look faces and concentration.\n15931,anetv_1zyyumIi0iQ,18583,They perform a routine shown by several videos and pictures and continue showing various tricks backstage and on stage. The girls speak to one another back stage with their coach and many people,They perform a routine shown by several videos and pictures and continue showing various tricks backstage and on stage.,The girls speak to one another back stage with their coach and many people,gold,interact with them in the audience.,watch them run and jump place spin while others watch.,continue high and thanks.,speak to the crowd.\n15932,lsmdc3032_HOW_DO_YOU_KNOW-2148,17034,\"Now in the bathroom, someone urinates. He\",\"Now in the bathroom, someone urinates.\",He,gold,\"barges through a room, hurling some passengers as the cashier cheers.\",grabs his phone with his free hand.,searches through a drawer into a cupboard.,presses the elevator button.\n15933,lsmdc3032_HOW_DO_YOU_KNOW-2148,17035,\"She lifts her shirt and pats her enormous belly. Heading down a staircase, someone\",She lifts her shirt and pats her enormous belly.,\"Heading down a staircase, someone\",gold,trips and slides to the bottom on his back.,bounds through the wall with fright guidance.,bumps someone's cab.,sets her books on a floor.\n15934,lsmdc3032_HOW_DO_YOU_KNOW-2148,17028,\"Later, he grills a steak on a patio balcony, his tie discarded and his shirt untucked. He\",\"Later, he grills a steak on a patio balcony, his tie discarded and his shirt untucked.\",He,gold,is being launched from the hoop to the marketplace.,\"falls off his feet mid - air, grimacing.\",shows the joint to his lips and shakes his head.,sprinkles seasoning on the meat.\n15935,lsmdc3032_HOW_DO_YOU_KNOW-2148,17032,The image dissolves to him clumsily refilling the glass with straight vodka. Now he,The image dissolves to him clumsily refilling the glass with straight vodka.,Now he,gold,is back on the knees.,points a remote control.,bursts back with a billiard table.,\"enters her, followed by the businessman, pushes him outside.\"\n15936,lsmdc3032_HOW_DO_YOU_KNOW-2148,17031,\"With a celery stalk, he stirs his glass of Bloody Mary, then takes a sip. Later, someone\",\"With a celery stalk, he stirs his glass of Bloody Mary, then takes a sip.\",\"Later, someone\",gold,sets down the tin as the chopsticks go to carton.,fills his empty glass with more bloody someone.,looks up at a props - off door across the window.,\"crosses the hallway carrying a cane, chats with someone.\"\n15937,lsmdc3032_HOW_DO_YOU_KNOW-2148,17033,Now he points a remote control. He,Now he points a remote control.,He,gold,removes the beer from the freezer.,levitates another burst of smoke.,spots the teacher running down the tunnel.,sings into a lamp like a microphone.\n15938,lsmdc3032_HOW_DO_YOU_KNOW-2148,17029,\"Stabbing a fork into the steak, he flips it repeatedly. Now inside, he\",\"Stabbing a fork into the steak, he flips it repeatedly.\",\"Now inside, he\",gold,examines a knife which emits a lei around his neck.,continues packing a meal on his dinner table.,finds someone sitting on the wooden bench and watches from the sink.,pours vodka into a shot glass and eyeballs it.\n15939,lsmdc3032_HOW_DO_YOU_KNOW-2148,17030,\"Now inside, he pours vodka into a shot glass and eyeballs it. He\",\"Now inside, he pours vodka into a shot glass and eyeballs it.\",He,gold,\"sits in his chair, dials his i d. someone turns and sets it down and walks out of the studio office.\",alcoholic drinks in it and he gets to the counter.,pours half of the glass back into the bottle.,reaches over to wipe off the glasses.\n15940,lsmdc1008_Spider-Man2-75256,7286,The man looks up at the floor display as it changes from 10 to nine. Someone,The man looks up at the floor display as it changes from 10 to nine.,Someone,gold,then reads the screen and shop to another name to reach the bookshelf and the other men behind all of it.,leans forward and presses a button.,reluctantly puts a stance on his work.,'s another one to pick out the table display.\n15941,lsmdc1008_Spider-Man2-75256,7288,\"He passes a wall which has been plastered with someone's perfume ads, showing her soft, pretty face. He\",\"He passes a wall which has been plastered with someone's perfume ads, showing her soft, pretty face.\",He,gold,is not so lucky.,drops her books under a blue sheet.,\"looks at the images briefly, then carries on going, a preoccupied look on his face.\",exits the elevator and smiles uncertainly.\n15942,lsmdc1008_Spider-Man2-75256,7285,\"Someone looks away from the man, then bows his head and stares at the wall. The man\",\"Someone looks away from the man, then bows his head and stares at the wall.\",The man,gold,cuts to his skin with a knife.,\"glances up and makes his way up the steps, spots them, and takes someone by the hand.\",\"does n't look tearful, walks away, and steps out of a basement, examining the heavy papers.\",looks up at the floor display as it changes from 10 to nine.\n15943,lsmdc1008_Spider-Man2-75256,7284,The man puts his card back in his pocket. Someone,The man puts his card back in his pocket.,Someone,gold,\"looks away from the man, then bows his head and stares at the wall.\",struggles to control his cohorts.,hands the handcuff key.,\"averts his thoughtful gaze, then marches in, still clutching the book.\"\n15944,lsmdc1008_Spider-Man2-75256,7289,\"He looks at the images briefly, then carries on going, a preoccupied look on his face. He\",\"He looks at the images briefly, then carries on going, a preoccupied look on his face.\",He,gold,gently lifts the shimmering surface away in a split.,is dragging his broken moped along behind him.,turns to a book and walks up to her.,stares as someone stares at his even.\n15945,lsmdc1008_Spider-Man2-75256,7290,Someone sits doodling in someone 'class. He,Someone sits doodling in someone 'class.,He,gold,spots the uncooked carcass.,\"is drawn his face, half someone and half someone.\",\"regards him as he presses the detonator, revealing someone.\",\"frowns, sharing the cone between his mother and children.\"\n15946,lsmdc1008_Spider-Man2-75256,7287,\"Later, someone traipses down a deserted sidewalk. He\",\"Later, someone traipses down a deserted sidewalk.\",He,gold,turns after two guards.,tries to weave through the traffic.,\"passes a wall which has been plastered with someone's perfume ads, showing her soft, pretty face.\",reaches the station tip between his mother and someone.\n15947,anetv_sbIh_M0oGs8,8718,The kids then go around turns. The video,The kids then go around turns.,The video,gold,goes down various females dancing in unison.,shows with a closing garage.,is also shows slow motion progress.,finishes with them on a jump.\n15948,lsmdc1031_Quantum_of_Solace-84290,18025,All over the auditorium men stand up and make their way out. He,All over the auditorium men stand up and make their way out.,He,gold,blocks another boy's glare.,\"lumbers down into the hall, carrying his suitcase.\",takes photos with his phone.,\"stops someone, and watches intently as someone talks about his pic.\"\n15949,anetv_CRzaKuaCXr8,2715,A couple dance holding hands in a party while people watch them. A woman,A couple dance holding hands in a party while people watch them.,A woman,gold,spins a christmas cake.,wearing a dressing shirt is sitting behind a counter holding a alarm.,turns around holding the hand of a juvenile.,sits outside and brings a microphone in her hands.\n15950,anetv_CRzaKuaCXr8,7704,The man has his hand on the woman's waist. The man,The man has his hand on the woman's waist.,The man,gold,puts his hand on his waist.,smiles at the audience.,pats the man's leg.,removes the cap and shows it to her.\n15951,anetv_CRzaKuaCXr8,7705,The man puts his hand on his waist. The man,The man puts his hand on his waist.,The man,gold,puts the record onto his lap.,holds an accordion and joins him in a bedroom that before playing and puts the phone down.,hits his head accidentally.,beats the hammer with a hammer.\n15952,anetv_CRzaKuaCXr8,7706,The man hits his head accidentally. A person,The man hits his head accidentally.,A person,gold,takes a ball at a pinata then the man in red hits balls repeatedly with a mallet.,hits the item hanging from the roof.,walks into frame one man puts on a swipe card.,is welding three pieces of the machine in the center.\n15953,anetv_CRzaKuaCXr8,2717,\"Then, the couple dance holding each other and turning around. Also, the couple\",\"Then, the couple dance holding each other and turning around.\",\"Also, the couple\",gold,dance holding both hands or one hand hand to spin the woman.,dances on in a room and other women ride on the dance floor.,dance in several competition.,continues to eat with the little girls.\n15954,anetv_CRzaKuaCXr8,7702,A man and a woman are dancing together. The man,A man and a woman are dancing together.,The man,gold,reaches up to take the moat and park areas.,dips under the woman's arm.,puts glasses and a woman is decorating a christmas tree.,is grabbing the rope and swinging.\n15955,anetv_CRzaKuaCXr8,2716,\"A woman turns around holding the hand of a juvenile. Then, the couple\",A woman turns around holding the hand of a juvenile.,\"Then, the couple\",gold,jumps into the ice diving hole.,dance holding each other and turning around.,measures her hands while walking away.,hold a phone up and put glasses on his head.\n15956,anetv_CRzaKuaCXr8,7703,The man dips under the woman's arm. The man,The man dips under the woman's arm.,The man,gold,has his hand on the woman's waist.,straightens and intervenes on a portable dancing stage.,drops her glow gaze.,waggles the hand on an extra weight.\n15957,anetv_j5SX_9JKtfs,8294,\"Cleaning materials sit next to a double sink, then a person puts a bottle with blue liquid next to the cleaning materials. After, the person\",\"Cleaning materials sit next to a double sink, then a person puts a bottle with blue liquid next to the cleaning materials.\",\"After, the person\",gold,clean a white shoe and puts on a purple shirt.,applies liquid soap to the trash glass while the other boy wash easily.,\"dries the hose, the cat cleans up the glass.\",pours a little bit of blue liquid in the sink and scrubs the sinks with a sponge.\n15958,anetv_j5SX_9JKtfs,8295,\"After, the person pours a little bit of blue liquid in the sink and scrubs the sinks with a sponge. After, the person\",\"After, the person pours a little bit of blue liquid in the sink and scrubs the sinks with a sponge.\",\"After, the person\",gold,uses a black container to scrub a bag with scrub suds on the sink.,uses the rag to rub the blue plant over the surface.,cleans the blender with soap and rinse the sink using solution.,rinse the sinks with water and dries with a cloth.\n15959,anetv_L2oaUDyzWPA,16265,We see a golden title on a black screen. A man,We see a golden title on a black screen.,A man,gold,is holding a saxophone that is holding an electric guitar.,stands before a room of empty and plays a set of instruments.,pulls off the painting and puts it on an electric line.,is playing a harmonica as arrows point to numbers above him.\n15960,anetv_L2oaUDyzWPA,16268,The title screen returns and the man plays with the arrows above him again. The fourth title screen and the man,The title screen returns and the man plays with the arrows above him again.,The fourth title screen and the man,gold,plays with arrows above.,points another slam drives both of the men.,is shown showing his teeth.,displays other people in the background can be seen.\n15961,anetv_L2oaUDyzWPA,16266,A man is playing a harmonica as arrows point to numbers above him. We,A man is playing a harmonica as arrows point to numbers above him.,We,gold,orbit the students their faces.,see another title screen and more arrows on numbers.,are dressed in yellow and black.,are interrupted by the referee.\n15962,anetv_L2oaUDyzWPA,16267,We see another title screen and more arrows on numbers. The title screen returns and the man,We see another title screen and more arrows on numbers.,The title screen returns and the man,gold,loads his bike across the screen and responds.,hops back while her shooting hoops.,plays with the arrows above him again.,comes to the end and throw the dart.\n15963,anetv_iddZ6YIWLWc,12657,\"As the man in the green shirt attempts to walk, he falls off the line. When they are finished, the two couples\",\"As the man in the green shirt attempts to walk, he falls off the line.\",\"When they are finished, the two couples\",gold,stand next to each other.,start to fall.,start dancing and applause.,sit in the grass enjoying a picnic.\n15964,anetv_iddZ6YIWLWc,727,A long rope is shown with a man tightening it and a woman walking across holding onto a man. More people,A long rope is shown with a man tightening it and a woman walking across holding onto a man.,More people,gold,jump up and stop pulling a rope for the camera.,are seen speaking to the camera while the camera watches.,attempt to walk the rope while others watch on the side.,come and get slowly around and climb along a cliff and lead rock.\n15965,anetv_iddZ6YIWLWc,12655,\"Then two couples appear and the men are assisting females tight rope across the slack line. Next, the two men\",Then two couples appear and the men are assisting females tight rope across the slack line.,\"Next, the two men\",gold,\"struggle off each other and continue the routine, each holding a pose off their shoulders, then they stand on the display.\",stand together holding position and walk over.,\"kneel, do a flip, and fall forward doing harness.\",begin to take their turn and walk across it jokingly holding up bottles of wine.\n15966,anetv_iddZ6YIWLWc,12654,A strong young man is shown on the other side of the tree pulling the line to ensure that is the tightest it can be around the trunk of the trees. Then two couples appear and the men,A strong young man is shown on the other side of the tree pulling the line to ensure that is the tightest it can be around the trunk of the trees.,Then two couples appear and the men,gold,starts their stunts back on the country and puts in a white shirt to get a better position.,\"climb a dirt hill and begin latest to work up the treat, it the get trophies.\",\"are also skating in a city where they are holding the boy, preparing to fight.\",are assisting females tight rope across the slack line.\n15967,anetv_iddZ6YIWLWc,728,More people attempt to walk the rope while others watch on the side. They,More people attempt to walk the rope while others watch on the side.,They,gold,begin to fight as well as other people in the background.,walk down a road while people watch on the sides.,all perform perform with other flips and dismounts while returning from the uneven bar.,fall off continuously and end by sitting and eating on the ground.\n15968,anetv_UrQ7Jq1s95o,14013,\"A man is in a gym, weight lifting. He\",\"A man is in a gym, weight lifting.\",He,gold,\"bends at the knees, and lifts a barbell up to his chest.\",move on jacks to exercise.,lifts the barbell up over his head and does crunches.,lifts the barbell over his head.\n15969,anetv_UrQ7Jq1s95o,14014,\"He bends at the knees, and lifts a barbell up to his chest. He then\",\"He bends at the knees, and lifts a barbell up to his chest.\",He then,gold,lifts on between his feet and faces the barbell even above.,pulls off the tiny stretches of tape and ties only his legs.,\"lifts it above his head, dropping it to the ground again as a small crowd claps.\",is brought back to his feet and lays down down hard.\n15970,anetv_UrQ7Jq1s95o,13284,A man bends down and picks up a large weight. He,A man bends down and picks up a large weight.,He,gold,drops the weight then lifts it over his head.,\"starts to pull the inflated pin, picks up the bike, and puts all of its strength into it.\",lifts it over his head and drops it onto a mat.,dances and does more swimming down the bar.\n15971,anetv_UrQ7Jq1s95o,13285,He lifts it over his head and drops it onto a mat. People,He lifts it over his head and drops it onto a mat.,People,gold,lifts his upper arms.,are watching him and applauding him.,atop the desks of the desks of a small double writer.,stretches green plaster to the floor.\n15972,lsmdc1056_Rambo-96821,17974,She begins to walk the length of the harbor towards the walkway. She,She begins to walk the length of the harbor towards the walkway.,She,gold,smiles and notices a husband sitting in the back seat as someone listens in.,pauses and brushes rain from her head.,gets off her bike and climbs over the bike to other side.,stares out the windshield as it slows to a halt.\n15973,lsmdc1056_Rambo-96821,17973,\"She emerges from the canopy of the boat and walks past him, climbing onto the harbor. She\",\"She emerges from the canopy of the boat and walks past him, climbing onto the harbor.\",She,gold,places a pan on the stove.,falls into the boat room and climbs aboard.,begins to walk the length of the harbor towards the walkway.,\"checks the packed end, then glances up to the trailer.\"\n15974,lsmdc1056_Rambo-96821,17976,Someone steps onto the harbor. She,Someone steps onto the harbor.,She,gold,turns and stares at him before walking back towards him with an imploring look.,switches off a yellow light.,tests the temperature of a tree.,spreads innocently out on his way out.\n15975,lsmdc1056_Rambo-96821,17977,She turns and stares at him before walking back towards him with an imploring look. She,She turns and stares at him before walking back towards him with an imploring look.,She,gold,\"moves slowly up behind someone and her aunt, too.\",brushes rain from her hair once more.,\"is decorating a christmas tree, mounted in blue more.\",holds a dingy kitchen to anyone.\n15976,anetv_fgP3D3Gqn6U,673,A man and a little boy are walking and holding the reins of a horse. We,A man and a little boy are walking and holding the reins of a horse.,We,gold,young man is swinging with his horse and the man in the middle is on the horse.,are tethered to a person standing in the grassy field and spin a horse and do a move.,see an older man holding the reins of a horse.,are watching from the shore.\n15977,anetv_fgP3D3Gqn6U,672,We see a calf running in the ring and another calf being hogtied. A man and a little boy,We see a calf running in the ring and another calf being hogtied.,A man and a little boy,gold,haul a child through the beach.,walk up one of the camels.,pass over the board.,are walking and holding the reins of a horse.\n15978,anetv_fgP3D3Gqn6U,671,People sit on a bench at a rodeo. We,People sit on a bench at a rodeo.,We,gold,gather in the field.,see people in snowboarding down a hill.,see people standing around a fence.,notice passengers staring dazed at a long skirt.\n15979,lsmdc0013_Halloween-53656,975,Someone comes out of the side doors of the high school and calls after people. The girls,Someone comes out of the side doors of the high school and calls after people.,The girls,gold,stop and wait for someone.,escort someone through an open - plan office.,hurry over to run down the stairs.,\"begin talking to each other, well, and breathe together.\"\n15980,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6090,\"Breaking the connection, someone grabs someone. The cup\",\"Breaking the connection, someone grabs someone.\",The cup,gold,falls on its cups which is caught by the wedge fetal.,flies into his hand.,flies into her mouth.,rises under someone's touch.\n15981,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6087,Someone controls his quivering wand with both hands. Someone's face,Someone controls his quivering wand with both hands.,Someone's face,gold,falls up and lifelessly.,sinks in a bitter despair as he catches it.,is twisted with hatred.,is shown from nowhere.\n15982,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6084,\"Summoning up every ounce of courage, someone faces someone. Red light\",\"Summoning up every ounce of courage, someone faces someone.\",Red light,gold,\"glows on their faces, facing someone as they play in a circle.\",dissolves to the sky.,rises round someone's neck.,\"streams from someone's wand, green light from someone's.\"\n15983,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6085,\"Red light streams from someone's wand, green light from someone's. Sparks\",\"Red light streams from someone's wand, green light from someone's.\",Sparks,gold,fly as they struggle desperately to overcome each other.,of mist and light covers the office.,shines from beneath the glass window.,bursts into a burst of flame.\n15984,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6086,Sparks fly as they struggle desperately to overcome each other. Someone,Sparks fly as they struggle desperately to overcome each other.,Someone,gold,pushes someone forward until someone lies over the crib.,flings the sheet over and flings his back to the floor.,\"lightning takes the ball with the dragon's bottom, ready for the one to turn.\",controls his quivering wand with both hands.\n15985,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6088,Someone's face is twisted with hatred. Streaks of light,Someone's face is twisted with hatred.,Streaks of light,gold,shoot into someone's face.,\"swirl around him, standing on.\",\"burst all around, illuminating the dark sky.\",\"caress the wake of the boat, creating a connection.\"\n15986,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7323,6089,\"First someone, then someone, the old caretaker, killed in the mansion. Someone's father and mother\",\"First someone, then someone, the old caretaker, killed in the mansion.\",Someone's father and mother,gold,stand out of the window.,move in and out into the living room beside one of the small dwarf tirith.,fight up a stunned hall.,appear at his side.\n15987,anetv_rcpsp52nguY,17488,A man walks across some snow carrying a large snow shovel. The man,A man walks across some snow carrying a large snow shovel.,The man,gold,picks up a shovel and takes a few steps to the back.,turns on the bottom of the slide and goes after him.,\"runs out onto the finish line, does a back flip while rapidly climbing the hill on the back once they are done.\",shovels a long path of snow.\n15988,anetv_rcpsp52nguY,17490,The man turns around and shovels a long path of snow again. The man,The man turns around and shovels a long path of snow again.,The man,gold,takes another one with ice fishing and root board through the hole.,shovels snow for a third time.,begins sliding snow off of the car with his camera.,\"has a scraper and paints all over it, then continues to shovel it with a sprayer.\"\n15989,anetv_rcpsp52nguY,17489,The man shovels a long path of snow. The man,The man shovels a long path of snow.,The man,gold,picks up the snow from a snowy hill and turns back.,uses the shovel to wipe the snow off of the boy.,sat down on the mower and trims the bottom part of the hedge.,turns around and shovels a long path of snow again.\n15990,anetv_rcpsp52nguY,17492,The man shovels a really long path of snow at a different location. The man,The man shovels a really long path of snow at a different location.,The man,gold,continues cutting the timekeeper along the gate while the black dog follows after him.,uses a small metal tool to power paint a fence.,\"is painting the logs plate until he finally left the detail knife on the wall, and then in all the pieces.\",\"turns around and shovels a second path of snow, right next to the recent shoveled snow path.\"\n15991,anetv_rcpsp52nguY,17491,The man shovels snow for a third time. The man,The man shovels snow for a third time.,The man,gold,stops behind a fence to get away from the car and puts some more ingredients out.,shovels a really long path of snow at a different location.,cleans his wavy wet hair while he speaks to the camera.,pans around the boarder on his bikes and shows the information products.\n15992,anetv_BEA4YVQv7Wk,598,A camera pans around a large indoor pool and shows a man jumping off a diving board into the water. Several people,A camera pans around a large indoor pool and shows a man jumping off a diving board into the water.,Several people,gold,are shown warming up and followed up by many jumping into the pool.,are seen different boards and swimming around the water.,are shown doing move and making their way up the rapids as well as well as swimming in the water.,are shown swimming several clips as well as more shots of scoring game where many other others cheer.\n15993,anetv_H-fl49tiqGE,2998,Women are in rubbers sliding down a snowy hill. women,Women are in rubbers sliding down a snowy hill.,women,gold,roll a car in the snow.,ride in a drive around in a corner.,stands and laugh and walks.,are kayaking in many city.\n15994,anetv_agM7yjqVKo0,17183,They pass the ball to one another and one makes a basketball. They,They pass the ball to one another and one makes a basketball.,They,gold,continue speaking and shooting hoops.,flatten the ball the third time they walk to the start on the occasions one wants to win.,\"the ball, a man stands behind him and gives a score of passing mans the ball.\",throw the other down and run back to soccer.\n15995,anetv_agM7yjqVKo0,11051,A man is holding a basketball on a court. They,A man is holding a basketball on a court.,They,gold,put tennis balls in the net.,begin to play basketball.,jeans is standing next to him.,begin to kick a ball back and forth in the pool.\n15996,anetv_agM7yjqVKo0,11052,They begin to play basketball. Words,They begin to play basketball.,Words,gold,\"people are mostly playing dodge balls, they hit the ball at one another.\",\"gymnasts field hockey and other teams does karate, they finish and do quick cheers and see them throwing a ball.\",\"stand and talk for a while, then a girl in a black shirt talks to them and serves him a pins.\",come up onto the screen.\n15997,anetv_d8M7yIj9jbE,9485,A young man is sitting down in a room talking to three other people serving as news anchors. The video then,A young man is sitting down in a room talking to three other people serving as news anchors.,The video then,gold,shows a bit having fun and an opening for more quartet play casino and anonymous taking pictures.,angles to bartender as the trainer speaking to the camera as well as presenting the correct combination of hairstyle.,moves on the the paper and shows sanding and items used on the computer display.,flips to a bar and shows obama playing a game of pool.\n15998,anetv_d8M7yIj9jbE,9486,\"The video then flips to a bar and shows Obama playing a game of pool. After, the four people\",The video then flips to a bar and shows Obama playing a game of pool.,\"After, the four people\",gold,begin talking again about the former president and his attire.,play splits underwater in different locations.,stop together and take positions while going around and performs flips.,switch and knock the men indoors.\n15999,lsmdc0014_Ist_das_Leben_nicht_schoen-54500,11462,He can not see her anywhere. We,He can not see her anywhere.,We,gold,nods and nods.,see someone's face peering out from the leaves.,\"there is no sign of him, as the lovely woman greets the girl as she walks her past a crowded gym.\",jogs out from the train.\n16000,lsmdc0014_Ist_das_Leben_nicht_schoen-54500,11460,\"As someone finishes talking, he jumps up out of his chair. As he speaks, the man\",\"As someone finishes talking, he jumps up out of his chair.\",\"As he speaks, the man\",gold,\"walks toward another groups carrying glasses and, facing it, takes an swig.\",\"leaves the porch and goes into his house, slamming the front door.\",\"links his arm around him, also cheering.\",holds up his drumsticks and sips.\n16001,lsmdc0014_Ist_das_Leben_nicht_schoen-54500,11461,\"Someone has been once more standing on the belt of her bath robe, so as she goes, her robe comes off. He\",\"Someone has been once more standing on the belt of her bath robe, so as she goes, her robe comes off.\",He,gold,sees someone on the other balcony clatters down onto the floor.,drops his bundle of clothes and picks up someone's robe.,\"lays the white comforter on the flannel wet bureau, and slowly heads for the door.\",\"sits up and looks at someone, trying to open the family gown.\"\n16002,lsmdc0014_Ist_das_Leben_nicht_schoen-54500,11463,We see someone's face peering out from the leaves. Someone,We see someone's face peering out from the leaves.,Someone,gold,sets the tray aside and picks up a small pot from the kitchen counter.,faces someone and kisses her.,climbs back into the seat as the driver walks by behind them.,walks toward the bush.\n16003,lsmdc0014_Ist_das_Leben_nicht_schoen-54500,11464,Someone walks toward the bush. He,Someone walks toward the bush.,He,gold,reluctantly comes over and hurls his bowl down onto the table and picks up the fork.,takes a bite of her soup.,runs in the other direction.,\"is about to throw her the robe, when a thought strikes him.\"\n16004,lsmdc1046_Australia-90934,6808,The small boat pulls out of the shadow of the huge liners evacuating the town. The boy,The small boat pulls out of the shadow of the huge liners evacuating the town.,The boy,gold,crouches by seeing someone as his friends move away.,races forward throwing a stone.,looks up at someone.,runs toward the house.\n16005,lsmdc1046_Australia-90934,6813,\"On the back of the boat, someone turns and looks up at a priest. Someone\",\"On the back of the boat, someone turns and looks up at a priest.\",Someone,gold,\"leans on the wharf rail in despair, trying to control her sobs.\",lines other men are lowered in their red oars.,\"turns to someone, one of them frees someone.\",\"pedestrians across the street, someone drives his.\"\n16006,lsmdc1046_Australia-90934,6811,He turns smugly to her. He,He turns smugly to her.,He,gold,grins and saunters off.,turns into the light.,finds the journal with her fingers.,leans her head against his shoulder.\n16007,lsmdc1046_Australia-90934,6807,\"She runs down the wharf, as someone runs to the stern of the boat. The small boat\",\"She runs down the wharf, as someone runs to the stern of the boat.\",The small boat,gold,pulls out of the shadow of the huge liners evacuating the town.,rises to a deck in the middle of the boat.,grabs her as an enemy to curl her unconscious body.,stops in front of a table full of snow and dry buildings.\n16008,lsmdc1046_Australia-90934,6810,\"Someone leans on the railing next to her, as the boat sails away. He\",\"Someone leans on the railing next to her, as the boat sails away.\",He,gold,halts in the bench.,closes a gap and tugs him to a lower platform.,swims to the casket.,turns smugly to her.\n16009,anetv_61iCOJ3Meus,5897,A boy in a white tshirt picks up his brother over head and body slams him onto the bed. The brother in army colored shirt,A boy in a white tshirt picks up his brother over head and body slams him onto the bed.,The brother in army colored shirt,gold,gets up from bed.,cleans the shoe with his shoe.,stands up to his horse and has a jacket on.,knocks down a ring of sand; whacks him between his knee.\n16010,anetv__LAABOgXU1s,2273,A man is taking a tire off a hub with a tool. He then,A man is taking a tire off a hub with a tool.,He then,gold,puts the tire on top of the tool to finish taking it off.,uses the jack to pierce the tire pedal.,gives the push tools on the bike while speaking to the camera.,inserts the small wheel on it and turned to remove the bolts off of the car.\n16011,anetv_-5h2E52tl4Q,3670,A middle aged female talks about a cleaning product. The female,A middle aged female talks about a cleaning product.,The female,gold,opens a container of cleaner and puts it on a rag.,applies various items and wipes her legs with the toothbrush.,rinses their hands with water and soap.,\"applies a cleaner on her foot, then she wiped her face.\"\n16012,anetv_-5h2E52tl4Q,3673,The same female then uses a different rag to rub the sink surface. The female,The same female then uses a different rag to rub the sink surface.,The female,gold,shows a brush with water from various liquids then tastes the water on a scale.,is shown talking to the camera and showing off the excess fluid and covering it in the sink without her and brush is talking.,adds the dishes and washes her shoe in order to clean it.,puts more cleaner on the rag and cleans the counter top.\n16013,anetv_-5h2E52tl4Q,3672,The female then uses the rag to rub the inside of the sink. The same female then,The female then uses the rag to rub the inside of the sink.,The same female then,gold,uses an brush to clean the area using a cloth and dips the drain into the sink.,uses a different rag to rub the sink surface.,\"takes how to clean different garment, then lathers it before washing her thoroughly.\",demonstrates how to stir the mop in rags on tapping her mirror.\n16014,anetv_-5h2E52tl4Q,3671,The female opens a container of cleaner and puts it on a rag. The female then,The female opens a container of cleaner and puts it on a rag.,The female then,gold,uses the rag to rub the inside of the sink.,puts hairs in the buckets and opens the bag and sets it back down.,removes the clothes and unrolls it in half of the sink.,lifts it up from her head and puts it on.\n16015,lsmdc0041_The_Sixth_Sense-67532,18577,It's printed on aged parchment - type paper. The frame,It's printed on aged parchment - type paper.,The frame,gold,of the equipments straggly with a goatee.,is a polished mahogany.,of the display goes black.,of the visual is seen.\n16016,lsmdc0041_The_Sixth_Sense-67532,18578,The frame is a polished mahogany. He,The frame is a polished mahogany.,He,gold,cuts a maid off the stove to shine it in her garage area.,makes a face by a taser blowing at her face.,slips on the sweatshirt.,looks sucks into an iron shirt.\n16017,lsmdc0041_The_Sixth_Sense-67532,18576,Someone points to the huge framed certificate propped up on a dining room chair. It,Someone points to the huge framed certificate propped up on a dining room chair.,It,gold,\"lies on a chair, watching the ladies wear the victims.\",'s printed on aged parchment - type paper.,rolls over the city someone climbs onto a bed and lifts a sash.,bursts into a clearing and grimaces.\n16018,lsmdc0041_The_Sixth_Sense-67532,18579,He slips on the sweatshirt. Her attention slowly,He slips on the sweatshirt.,Her attention slowly,gold,enters with secret service agents talk phone.,approaches someone as she continues up the front steps.,moves to the framed certificate.,follows a ricochet featuring her child.\n16019,anetv_dVCAykynRzs,4628,\"Several shots are then shown of people playing rock paper scissors with employees. When people win the game, they\",Several shots are then shown of people playing rock paper scissors with employees.,\"When people win the game, they\",gold,pass mountains in the distance.,begin to play a game of curling.,engage in long yoga together.,get a free ice cream.\n16020,anetv_dVCAykynRzs,4627,A camera pans around a mcdonalds and leads into a man speaking to a cashier. Several shots,A camera pans around a mcdonalds and leads into a man speaking to a cashier.,Several shots,gold,are shown of people standing on a scaffold while smiling to the camera.,are shown of handles as well as more people standing and posing to others.,are shown of men laughing as well as beer and beer pong.,are then shown of people playing rock paper scissors with employees.\n16021,anetv_6azNzt8rXAs,6799,A man is seen practicing his ping pong abilities followed by him playing the game against another person. A man,A man is seen practicing his ping pong abilities followed by him playing the game against another person.,A man,gold,is shown speaking behind him as well as people to talk to the camera man.,is shown in several clips playing a game of beer pong.,makes seen gestures to the camera and shows the camera.,watches on the side as the men continue to play with more people stopping to watch.\n16022,anetv_qMJi2nXWOkg,18367,Baseball team is in a court playing. batter,Baseball team is in a court playing.,batter,gold,serves the ball and the replay goes red.,is being put on a line.,is wearing the green jersey misses a bowling ball indoors.,hits the ball in a court.\n16023,anetv_qMJi2nXWOkg,16769,We see a man kick a ball and start running. A man in red,We see a man kick a ball and start running.,A man in red,gold,demonstrates a billiard shot.,shoots the ball hard in orange balls.,walk down the street wearing a tight shirt and throw it around.,grabs the ball and pushes a person in pink over.\n16024,lsmdc0002_As_Good_As_It_Gets-46493,10379,And finally someone notes someone's mood and pauses. She,And finally someone notes someone's mood and pauses.,She,gold,saying something to the bull too.,is a determined - up children washing.,is standing and keeps going.,\"looks at him for a very strange, long beat.\"\n16025,anetv__uPVFvEQocU,17732,\"I woman talks to the camera while holding a ping pong ball and standing by a ping pong table, interspersed with closeups of short demonstrations of technique. The woman\",\"I woman talks to the camera while holding a ping pong ball and standing by a ping pong table, interspersed with closeups of short demonstrations of technique.\",The woman,gold,\"is shown playing then methods of cards, mixer is shown.\",retrieves a new ball.,is animated with camera and is talking about getting to the beat as she smokes a cigarette.,\"begins vigorously using the machines, hitting the ball as far as she can.\"\n16026,anetv__uPVFvEQocU,17733,The woman retrieves a new ball. The woman,The woman retrieves a new ball.,The woman,gold,styles the girl's hair with her thumbs and ends by showing the braid to her own.,\"retrieves two balls, then gets rid of one.\",presents another piece of paper.,misses the ball to score the game.\n16027,lsmdc3084_TOOTH_FAIRY-40348,350,\"On stage, her son's playing grows bolder and more relaxed. He\",\"On stage, her son's playing grows bolder and more relaxed.\",He,gold,starts for the line.,\"glances up from his guitar, confidently facing the audience between phrases.\",stops dancing and looks on.,reaches a flashing panel of the hospital door and turns into view.\n16028,lsmdc3084_TOOTH_FAIRY-40348,355,The boy takes a bow and someone gives a thumbs up. Someone,The boy takes a bow and someone gives a thumbs up.,Someone,gold,tosses a strand of tape onto someone's cheek.,smiles bark at people and helps him up.,blows him a kiss.,lowers his binoculars into the white sky.\n16029,lsmdc3084_TOOTH_FAIRY-40348,349,\"The boy rhythmically bobs his knees and wags his head. As the audience listens appreciatively, the band members\",The boy rhythmically bobs his knees and wags his head.,\"As the audience listens appreciatively, the band members\",gold,leans for the microphone.,swirl on toward the stage.,peek out from backstage.,applauds from the battle.\n16030,lsmdc3084_TOOTH_FAIRY-40348,354,Someone bites his lip in blissful concentration. As the audience,Someone bites his lip in blissful concentration.,As the audience,gold,grins and pumps their fists.,\"applauds, the tray and someone join behind them.\",\"glances up toward them, a wide grin smile crosses her face.\",\"applaud, someone carries a catcher.\"\n16031,lsmdc3084_TOOTH_FAIRY-40348,352,Someone faces the crowd with a joyful smile. Someone draws someone close and she,Someone faces the crowd with a joyful smile.,Someone draws someone close and she,gold,leans her hand into her son's arm.,points to her seat.,offers a tight smile.,blinks back proud tears.\n16032,lsmdc3084_TOOTH_FAIRY-40348,357,\"Someone returns the gesture, then swaps friendly nods with his fellow musicians. Someone\",\"Someone returns the gesture, then swaps friendly nods with his fellow musicians.\",Someone,gold,\"glances disapprovingly at someone, then heads off.\",pulls a tray over - - and away from the young hopeful.,removes an legal surgeon.,grins up at him.\n16033,lsmdc3084_TOOTH_FAIRY-40348,358,\"She shares an elated smile with him, then faces the stage. She\",\"She shares an elated smile with him, then faces the stage.\",She,gold,looks to the crowd then steps them.,sits up and stands up.,stands and puts one paw over her mouth.,\"stares, then rolls her head in a double take.\"\n16034,lsmdc3084_TOOTH_FAIRY-40348,356,Someone blows him a kiss. Someone,Someone blows him a kiss.,Someone,gold,wipes the hands and plays the violin.,'s head lulls in his lap.,\"returns the gesture, then swaps friendly nods with his fellow musicians.\",is curled up in the tub.\n16035,lsmdc3084_TOOTH_FAIRY-40348,351,\"Dancing with someone, someone raises her hand high and someone beams. Someone\",\"Dancing with someone, someone raises her hand high and someone beams.\",Someone,gold,holds the controls and the hammer into her hand.,sings into the elevator.,\"grins, then raises her hand to shake.\",faces the crowd with a joyful smile.\n16036,lsmdc3084_TOOTH_FAIRY-40348,359,\"She stares, then rolls her head in a double take. Someone\",\"She stares, then rolls her head in a double take.\",Someone,gold,gazes into her eyes.,sits by her bed with someone eyes closed and her mouth agape.,bursts into the room.,\"returns to the bar, stands and leans forward, forcing someone on the bar with her arms.\"\n16037,lsmdc3084_TOOTH_FAIRY-40348,361,They share a passionate kiss and hold each other tight. Someone,They share a passionate kiss and hold each other tight.,Someone,gold,takes off his jacket and grabs someone's penis.,kisses her on the shoulder.,spots someone watching them.,pulls his hand away from the door and falls back.\n16038,lsmdc3084_TOOTH_FAIRY-40348,353,\"Someone draws someone close and she blinks back proud tears. Elsewhere in the crowd, someone\",Someone draws someone close and she blinks back proud tears.,\"Elsewhere in the crowd, someone\",gold,smiles up at the guitarist.,holds a torch toward her companions.,jams her arms together.,and someone share a glance with some friends.\n16039,lsmdc3084_TOOTH_FAIRY-40348,360,\"Smiling tearfully, she nods. They\",\"Smiling tearfully, she nods.\",They,gold,share a passionate kiss and hold each other tight.,is talking about plods on her feet and legs.,\", someone gawks tearfully.\",\"one breath, someone jolts up and wanders out.\"\n16040,anetv_1SXVKikAHdM,17794,A box of rollerbldes is shown and the lid is opened amd tje accesories are shown with the rollerblades. man,A box of rollerbldes is shown and the lid is opened amd tje accesories are shown with the rollerblades.,man,gold,is then doing a elliptical room talking about it.,is showing how he is painting a central piece of black material.,is in a room making lemonade with a laptop.,is in street skating and showing pictures of the skates.\n16041,anetv_FNlEHAIh6LQ,6848,Then the woman shows the steps to braiding hair. For the Finish she,Then the woman shows the steps to braiding hair.,For the Finish she,gold,begins mirror the eye.,applies a spray product to keep the braid in place.,takes two long time braided hair with a base brush.,wraps the ribbon around the hair curler while still looking into the camera's display.\n16042,anetv_FNlEHAIh6LQ,6844,The words Redken Ready appear in large theater style lights behind a woman getting her hair done. A man,The words Redken Ready appear in large theater style lights behind a woman getting her hair done.,A man,gold,\"wearing an orange shirt throw a ball around the corner and tackles him, and moves back backwards.\",shows off the leaving light in the counter.,speak to the camera with a woman seated next to him.,runs along a parked lawn with rain flowing around haired woman to participate as the boy continues.\n16043,anetv_FNlEHAIh6LQ,6847,For The Prep the woman demonstrates spraying her hair. Then the woman,For The Prep the woman demonstrates spraying her hair.,Then the woman,gold,shows the steps to braiding hair.,washes the dry hair all over.,rinses the dog with a towel.,puts foundation on her skin before pinning and combing his face.\n16044,anetv_FNlEHAIh6LQ,11240,\"Finally, the bottom is secured with a pony tail holder and she sprays her hair to ensure the style will be locked into place. After, the male\",\"Finally, the bottom is secured with a pony tail holder and she sprays her hair to ensure the style will be locked into place.\",\"After, the male\",gold,stands on the left and right of the bars.,finishes the prep with an iron.,cleans off the blow faucet and wipes off her face when she comes close.,comes back and gives tips on hair and beauty.\n16045,anetv_FNlEHAIh6LQ,6846,Tools and products are listed for The Look. For The Prep the woman,Tools and products are listed for The Look.,For The Prep the woman,gold,is talking to secure the bread.,\"is in saturday day, white pasta.\",demonstrates spraying her hair.,works out wrapped in the water.\n16046,anetv_FNlEHAIh6LQ,11239,\"After, several products including spray and brushes are shown as the necessary things to complete the look, The lady then comes back and goes step by step starting with a pony tail and separating her hair into equal strands until it is braided to the end. Finally, the bottom is secured with a pony tail holder and she\",\"After, several products including spray and brushes are shown as the necessary things to complete the look, The lady then comes back and goes step by step starting with a pony tail and separating her hair into equal strands until it is braided to the end.\",\"Finally, the bottom is secured with a pony tail holder and she\",gold,comes back to the first girl to remove the blindfold pieces.,sprays her hair to ensure the style will be locked into place.,begins taking picture and putting it out to give the same bottles in a monstrous position.,is finished hair most of it to pieces.\n16047,anetv_FNlEHAIh6LQ,11238,A man and a woman are standing together talking on a studio set. The woman then,A man and a woman are standing together talking on a studio set.,The woman then,gold,appears alone and starts to braid her hair in a large french braid.,changes a position with his personal trainer while a man lifts her leg off as soon as heat is ready.,pushes packing a very long equipment.,begins capoeira of the restaurant.\n16048,anetv_FNlEHAIh6LQ,6849,For the Finish she applies a spray product to keep the braid in place. Finally the man,For the Finish she applies a spray product to keep the braid in place.,Finally the man,gold,bend over the desk to touch the ice again.,returns to give tips on hair styling.,passes by to the camera as she returns to.,puts the braids section of the braid into place and tightens the braid.\n16049,anetv_rzIaKwWJDZI,7527,She begins making a diaper cake on the table. She,She begins making a diaper cake on the table.,She,gold,\"continues midway, laughing.\",begins to polish a new bowl on a table and uncovers it product.,talk and transitions into while.,puts lace and small stuffed animals onto the cake.\n16050,anetv_rzIaKwWJDZI,4067,A woman puts diapers into a metal pan. She,A woman puts diapers into a metal pan.,She,gold,pours the sugar in a bucket.,puts the noodles down in her mug.,stacks them on top of each other.,explains how to make a cake.\n16051,anetv_rzIaKwWJDZI,4065,A woman is sitting in a chair talking. A cake,A woman is sitting in a chair talking.,A cake,gold,is shown on the screen.,is talking in a room.,is shown before a woman raking leaves.,is shown on a table.\n16052,anetv_rzIaKwWJDZI,4068,She stacks them on top of each other. She,She stacks them on top of each other.,She,gold,is 10 her stage.,rolls under his chin.,\"is down in her chair, kicking them all together.\",decorates the cake with lace and small stuffed animals.\n16053,anetv_XORmEz1vOeQ,14820,A man kneels down by a tree in a yard. He,A man kneels down by a tree in a yard.,He,gold,talks as he digs with his hands.,swings with a bus rope.,begins brushing the tiles and talking to the camera.,is cut up from the grass to start demonstrating the hedges.\n16054,anetv_XORmEz1vOeQ,14821,He talks as he digs with his hands. He,He talks as he digs with his hands.,He,gold,flame ends and he takes a count of three stairs as he records.,chuckles at the television.,\", enjoy him deep and easy.\",shows and instructs on how to apply and pack mulching around the base of the tree.\n16055,lsmdc0012_Get_Shorty-53176,16818,\"Someone looks up at the hotel as someone takes a pair of leather gloves from top of the dash, opens the door. As someone\",\"Someone looks up at the hotel as someone takes a pair of leather gloves from top of the dash, opens the door.\",As someone,gold,looks unblinkingly at someone.,\"comes up fully, he is in his boxers.\",pulls up out front.,opens the door for a soundman.\n16056,anetv_bnItfkwBogY,5945,A woman performs a dance routine with a hoop on a stage. The woman,A woman performs a dance routine with a hoop on a stage.,The woman,gold,spins at times and throws a baton.,removes a few ropes as the dance moves.,spins and throws her baton.,performs the routine with two hoops.\n16057,anetv_bnItfkwBogY,5946,The woman performs the routine with two hoops. The woman,The woman performs the routine with two hoops.,The woman,gold,returns to performing with one hoop.,take mighty off and belly bounce down on a mat.,stands up while actually watching the gymnast.,continues and batons while the audience claps.\n16058,anetv_Rj_SwlpOhNk,17129,The man begins paddling profusely. the water eventually calms and the man,The man begins paddling profusely.,the water eventually calms and the man,gold,paddles at regular speed.,has some running paint.,turns on the water.,continues out of the two pieces.\n16059,anetv_Rj_SwlpOhNk,5520,The person in front continuously paddles while the person behind them records. The person,The person in front continuously paddles while the person behind them records.,The person,gold,continues riding along in the canoe.,paddles into the water and continues climbing.,sat on a chair.,jumps around and shown riding again.\n16060,lsmdc3079_THINK_LIKE_A_MAN-36957,3263,He gives a desperate look. He,He gives a desperate look.,He,gold,holds as close as possible.,locks his eyes on hers.,remembers his presence: someone lying in his bunk in a scream.,unplugs a bag in the satchel.\n16061,lsmdc3079_THINK_LIKE_A_MAN-36957,3262,He gives a resigned look. He,He gives a resigned look.,He,gold,gives a desperate look.,\"blinks, lifts his brow, then raises his arm.\",walks forward and takes off the hat.,peers across the floor.\n16062,lsmdc3079_THINK_LIKE_A_MAN-36957,3264,\"As she gazes at him, her eyes filled with tears. Someone\",\"As she gazes at him, her eyes filled with tears.\",Someone,gold,\"sits on the sofa couch, shifting her thoughtful eyes to the sun.\",steps forward and kisses her.,takes a deep breath and looks up at them.,turns and walks away with his breathing still closed.\n16063,lsmdc3079_THINK_LIKE_A_MAN-36957,3266,\"She wraps an arm around his neck. Now at her family reunion, someone\",She wraps an arm around his neck.,\"Now at her family reunion, someone\",gold,sits at a picnic table with three women.,looks over from a newspaper.,sits in a restaurant with a plate of food.,returns someone's suv by to the train station wagon.\n16064,lsmdc3079_THINK_LIKE_A_MAN-36957,3265,Someone steps forward and kisses her. She,Someone steps forward and kisses her.,She,gold,wraps his arms.,wraps an arm around his neck.,shakes her head thoughtfully.,walks down the stunning soaked walkway.\n16065,lsmdc3079_THINK_LIKE_A_MAN-36957,3268,\"As she eats, someone stares off with a distant look. Duke\",\"As she eats, someone stares off with a distant look.\",Duke,gold,\"purses her lips, and d'artagnan, someone's suv descends upward.\",\"wipes his hands gently on his feet, silhouetted against a bright doorway.\",creeps out of the hotel and checks the alien's wake.,drags someone over by the hand.\n16066,lsmdc3079_THINK_LIKE_A_MAN-36957,3267,\"Now at her family reunion, someone sits at a picnic table with three women. As she eats, someone\",\"Now at her family reunion, someone sits at a picnic table with three women.\",\"As she eats, someone\",gold,stares off with a distant look.,poses with the ex - like friend.,stares vacantly as she lifts up coffee.,stares at someone incredulously.\n16067,lsmdc3079_THINK_LIKE_A_MAN-36957,3269,Duke drags someone over by the hand. He,Duke drags someone over by the hand.,He,gold,puffs out a cigar.,waves at the table.,watches her through a window.,\"stumbles, flinging the zebra backwards.\"\n16068,anetv_PcSnU_nGi5E,17724,The man in brown shirt is standing next to a pile of tennis ball while he is talking to the camera. He,The man in brown shirt is standing next to a pile of tennis ball while he is talking to the camera.,He,gold,drops the ball into the wall.,is playing by the puck on the ice.,is talking to the camera as he makes aim toward the camera.,played tennis ball with another person.\n16069,anetv_PcSnU_nGi5E,17725,He played tennis ball with another person. The man in purple shirt,He played tennis ball with another person.,The man in purple shirt,gold,hits the trash can.,has two balls slowly and fends the player on.,serve the ball while the black man hit the ball back.,making the ping pong racket hits his teammate but the boy grabs his opponent.\n16070,lsmdc3071_THE_DESCENDANTS-5622,19531,\"The lamp blinks off and the scene cuts to black. Now, on a misty morning, the waves\",The lamp blinks off and the scene cuts to black.,\"Now, on a misty morning, the waves\",gold,shine revealing the crescent shaped canvas.,stretch as the tally ticks to zero.,crawl up on the sandy beach beneath an overcast sky.,trudge away from the modern retirement home.\n16071,lsmdc3071_THE_DESCENDANTS-5622,19528,Someone settles into his pillows. Someone,Someone settles into his pillows.,Someone,gold,picks up a paper and shoves it on the wall.,gives a thoughtful nod and regards the teen.,lies across the water beneath someone.,watches the movie chip.\n16072,lsmdc3071_THE_DESCENDANTS-5622,19547,\"He descends halfway down the porch steps, then leans back against a supporting pillar. A pretty woman with strawberry blond hair\",\"He descends halfway down the porch steps, then leans back against a supporting pillar.\",A pretty woman with strawberry blond hair,gold,\"comes out, trailed by two boys.\",drops into bed and tries to catch sight of someone.,walks over past him.,sits up at someone.\n16073,lsmdc3071_THE_DESCENDANTS-5622,19544,\"Seen from inside, the gap shows someone darting across to take cover behind the opposite hedge. He\",\"Seen from inside, the gap shows someone darting across to take cover behind the opposite hedge.\",He,gold,eyes fixed on the grimhold.,\"balances on the rope, lifting the webs off its legs.\",points at the chancellor.,peeks up over the top and finds someone climbing steps.\n16074,lsmdc3071_THE_DESCENDANTS-5622,19558,\"In her sweater and black bikini bottoms, she watches her boys at play. The woman\",\"In her sweater and black bikini bottoms, she watches her boys at play.\",The woman,gold,\"holds her leg aside, and skates cheerfully to them.\",\"is standing next to the sink, talks to the camera, and started trying to explain before applying the dish.\",grins good - naturedly.,swigs from the sofa.\n16075,lsmdc3071_THE_DESCENDANTS-5622,19545,\"Staying put, someone narrows his eyes. Someone\",\"Staying put, someone narrows his eyes.\",Someone,gold,stares with wide eyes.,pours the adds label and counts out.,explains that over trust's a quick video.,\"comes back out, guzzling water from a bottle.\"\n16076,lsmdc3071_THE_DESCENDANTS-5622,19532,\"Now, on a misty morning, the waves crawl up on the sandy beach beneath an overcast sky. In a faded black t - shirt, someone\",\"Now, on a misty morning, the waves crawl up on the sandy beach beneath an overcast sky.\",\"In a faded black t - shirt, someone\",gold,inspects with a different note.,wears jeans drenched with sweat as it works on the back of someone's car in the speeding car.,jogs along the shoreline.,feeds a teen with spiky cloth and a cold white blanket.\n16077,lsmdc3071_THE_DESCENDANTS-5622,19529,Someone gives a thoughtful nod and regards the teen. Someone,Someone gives a thoughtful nod and regards the teen.,Someone,gold,\"smiles at him briefly, then turns to someone.\",offers a kind smile.,steps away from someone.,drops his gaze and rests his face on the bed.\n16078,lsmdc3071_THE_DESCENDANTS-5622,19543,\"He arrives at the hedge and ducks behind it near the gap. Seen from inside, the gap\",He arrives at the hedge and ducks behind it near the gap.,\"Seen from inside, the gap\",gold,\"flips open, revealing a large crushing blue wall and bright bright winding and light.\",leaps up.,\"is accompanied so his started paddling forward, drawing out its oars.\",shows someone darting across to take cover behind the opposite hedge.\n16079,lsmdc3071_THE_DESCENDANTS-5622,19533,\"In a faded black t - shirt, someone jogs along the shoreline. He\",\"In a faded black t - shirt, someone jogs along the shoreline.\",He,gold,looks at a little framed portrait.,talks to someone and begins trimming his nails.,finds his son at the locker room.,\"moves with a rhythmic, purposeful gait, glancing occasionally over the slate - hued water.\"\n16080,lsmdc3071_THE_DESCENDANTS-5622,19536,His brow knits and he takes off after someone. He,His brow knits and he takes off after someone.,He,gold,falls into the passenger seat.,puts his arm in his back to cover his face in despair.,\"quickens his pace, struggling to catch up to his wife's lover.\",shifts in his seat as he works at his computer.\n16081,lsmdc3071_THE_DESCENDANTS-5622,19538,But someone's long - legged stride keeps him several yards ahead. Someone,But someone's long - legged stride keeps him several yards ahead.,Someone,gold,\"works his way up to a sprint, staring at someone through wild eyes.\",imploring him to act offscreen.,'s hair moves up ahead.,pushes the bird upright.\n16082,lsmdc3071_THE_DESCENDANTS-5622,19535,\"Someone returns the gesture, then halts and stares back at him. His brow knits and he\",\"Someone returns the gesture, then halts and stares back at him.\",His brow knits and he,gold,shifts his gaze to someone in the neighboring kitchen.,gestures to the band.,walks past his desk where his team colleagues watch.,takes off after someone.\n16083,lsmdc3071_THE_DESCENDANTS-5622,19551,\"He slowly sinks out of view. Now, sitting on a blanket on the beach, someone\",He slowly sinks out of view.,\"Now, sitting on a blanket on the beach, someone\",gold,walks down the middle of the corridor.,leans back on his hands.,pulls a blanket out from behind her then boots him forward.,makes her way up the stairwell.\n16084,lsmdc3071_THE_DESCENDANTS-5622,19546,\"Someone comes back out, guzzling water from a bottle. He\",\"Someone comes back out, guzzling water from a bottle.\",He,gold,\"descends halfway down the porch steps, then leans back against a supporting pillar.\",cuts off with toilet paper.,proceeds to the surface.,sits casually to an overweight drunk.\n16085,lsmdc3071_THE_DESCENDANTS-5622,19549,They bring plates and cups to a table on the lawn. Someone's arched eyebrows,They bring plates and cups to a table on the lawn.,Someone's arched eyebrows,gold,mingle in big and unusual pattern of someone.,mingle above its comfy bubbles.,gently dug in a candlelight cake.,knit and his eyes narrow.\n16086,lsmdc3071_THE_DESCENDANTS-5622,19541,\"Someone pauses, watching him run toward a gate - like gap in the greenery. As someone passes out of sight, the wronged husband\",\"Someone pauses, watching him run toward a gate - like gap in the greenery.\",\"As someone passes out of sight, the wronged husband\",gold,continues making his way over a startled someone.,dashes toward the hedge line.,\"barges in way beside him, scrubbing and marley with a ragged bolt.\",brings the plastic plates closer to the tired fence.\n16087,lsmdc3071_THE_DESCENDANTS-5622,19537,\"He quickens his pace, struggling to catch up to his wife's lover. But someone's long - legged stride\",\"He quickens his pace, struggling to catch up to his wife's lover.\",But someone's long - legged stride,gold,keeps him several yards ahead.,drives through the branches and dashes around the heads hurt around them.,\"pensively toward the door, she looks around wildly.\",sits on the edge of the bed.\n16088,lsmdc3071_THE_DESCENDANTS-5622,19534,The real estate agent gives a sportsmanlike wave as he passes. Someone,The real estate agent gives a sportsmanlike wave as he passes.,Someone,gold,\"returns the gesture, then halts and stares back at him.\",sits on the parlor facing the couch.,sees a blurred teen with protesters in him.,suddenly runs to the edge of the forest.\n16089,lsmdc3071_THE_DESCENDANTS-5622,19555,Someone rolls over and sits up. She,Someone rolls over and sits up.,She,gold,indicates closest to a white plate.,\"glances toward someone, then gazes after her father curiously.\",lowers her beer and twirls his arm with her elbow in the air.,looks at the clerk.\n16090,lsmdc3071_THE_DESCENDANTS-5622,19553,\"As someone watches her, he shoots frequent glances over his shoulder toward someone's rental. Someone\",\"As someone watches her, he shoots frequent glances over his shoulder toward someone's rental.\",Someone,gold,rubs his pockets with her sleeve then flinches.,rubs someone's chest and snakes his hips.,notices someone hurrying off the lead.,\"notices, as the boys race to the water.\"\n16091,lsmdc3071_THE_DESCENDANTS-5622,19554,\"Someone notices, as the boys race to the water. The woman\",\"Someone notices, as the boys race to the water.\",The woman,gold,slows to a walk.,opens the door to someone.,turns to someone and smiles tearfully.,swims towards the destroyer at the center of the podium.\n16092,lsmdc3071_THE_DESCENDANTS-5622,19557,\"Someone meanders down to the water's edge and stops a few feet from the woman. In her sweater and black bikini bottoms, she\",Someone meanders down to the water's edge and stops a few feet from the woman.,\"In her sweater and black bikini bottoms, she\",gold,dives for an empty seat.,stands behind her car.,watches her boys at play.,moves her toes for a strip of brush.\n16093,lsmdc3071_THE_DESCENDANTS-5622,19548,\"A pretty woman with strawberry blond hair comes out, trailed by two boys. They\",\"A pretty woman with strawberry blond hair comes out, trailed by two boys.\",They,gold,lean against a doorway.,open her nose and face.,bring plates and cups to a table on the lawn.,sit up on the floor.\n16094,lsmdc3071_THE_DESCENDANTS-5622,19550,Someone's arched eyebrows knit and his eyes narrow. He slowly,Someone's arched eyebrows knit and his eyes narrow.,He slowly,gold,limps straight through the room emblazoned with his red false bottom.,starts to pace as he reaches his feet point up.,serves the food with both hands.,sinks out of view.\n16095,lsmdc3071_THE_DESCENDANTS-5622,19540,The real estate agent turns and trots up the beach toward a row of hedges. Someone,The real estate agent turns and trots up the beach toward a row of hedges.,Someone,gold,offers the conductor in greeting.,\"pauses, watching him run toward a gate - like gap in the greenery.\",grabs the puppet's phone.,holds up a hand to reveal the slowly flowing spray.\n16096,lsmdc3071_THE_DESCENDANTS-5622,19530,\"Someone glances down ponderously, nods again, and trains a warm gaze on the boy. Someone\",\"Someone glances down ponderously, nods again, and trains a warm gaze on the boy.\",Someone,gold,gives a wave to himself.,takes a deep breath.,lies in a fenced enclosure.,collects his attention and drinks hard.\n16097,lsmdc3071_THE_DESCENDANTS-5622,19556,\"She glances toward someone, then gazes after her father curiously. Someone\",\"She glances toward someone, then gazes after her father curiously.\",Someone,gold,meanders down to the water's edge and stops a few feet from the woman.,smiles as she touches someone's lips.,hands over a bible.,shakes her head thoughtfully.\n16098,lsmdc3071_THE_DESCENDANTS-5622,19552,\"Now, sitting on a blanket on the beach, someone leans back on his hands. Beside him, someone\",\"Now, sitting on a blanket on the beach, someone leans back on his hands.\",\"Beside him, someone\",gold,performs in her graveled position.,takes his tablet out.,\"washes most of her pale, wet skin.\",lies down and chats with a reclining someone.\n16099,lsmdc3071_THE_DESCENDANTS-5622,19539,\"Someone works his way up to a sprint, staring at someone through wild eyes. The real estate agent\",\"Someone works his way up to a sprint, staring at someone through wild eyes.\",The real estate agent,gold,turns and trots up the beach toward a row of hedges.,\"moves toward him, then drags him into the pit.\",leads someone away from the airport in the street.,has an out his ear and shakes his head.\n16100,lsmdc1055_Marley_and_me-96660,13425,\"At home, someone's leafing through someone's old columns. Someone\",\"At home, someone's leafing through someone's old columns.\",Someone,gold,arrives at the water.,walks in and ruffles his blonde hair.,\"grasps his wand, tries to put the axe into the shape of someone's face.\",tosses him aside and takes up his cell.\n16101,lsmdc1055_Marley_and_me-96660,13421,\"The boy looks imploringly at his parents. Someone frowns in sympathy at her son's pain, and someone\",The boy looks imploringly at his parents.,\"Someone frowns in sympathy at her son's pain, and someone\",gold,sits down next to him.,looks back at her.,tries a reassuring smile.,grins broadly.\n16102,lsmdc1055_Marley_and_me-96660,13424,\"She closes the door and presses her hand to the glass as someone drives away down the winding drive through trees adorned with golden brown autumn leaves. At the surgery, someone\",She closes the door and presses her hand to the glass as someone drives away down the winding drive through trees adorned with golden brown autumn leaves.,\"At the surgery, someone\",gold,sits and waits with his hands clasped together.,\"peers down into a painting of a man in his silver cot, holding his heart in front of him.\",closes down the street.,becomes fans crawling as she snags her position on her heels and rhythm with a butterfly resting on her son.\n16103,lsmdc1055_Marley_and_me-96660,13423,He carries Marley out to the car and gently lays the old dog down in the boot. Someone,He carries Marley out to the car and gently lays the old dog down in the boot.,Someone,gold,\"and his wife, behind the wheel, stand at the entrance watching futilely, he passes the passenger door.\",goes to get behind the wheel as someone tearfully strokes her dying pet.,\"look through the bundle presents both ladles, which decent people carry with it.\",walks up the hill when a thick turban hangs out.\n16104,lsmdc1055_Marley_and_me-96660,13422,\"Someone frowns in sympathy at her son's pain, and someone tries a reassuring smile. He\",\"Someone frowns in sympathy at her son's pain, and someone tries a reassuring smile.\",He,gold,stands in the vulnerable rain.,carries marley out to the car and gently lays the old dog down in the boot.,\"sits halfway down to his mother, as the bear shifts his attention to the door.\",turns his attention to the front of the rolls.\n16105,lsmdc1055_Marley_and_me-96660,13420,Someone takes the stuffed lamb and someone tearfully hugs Marley. The boy,Someone takes the stuffed lamb and someone tearfully hugs Marley.,The boy,gold,\"wipes his head, eyes full of tears.\",looks imploringly at his parents.,\"sits across from someone, the note tossed in his pocket.\",takes a few steps to his chair.\n16106,anetv_ZNUkzdw2EeI,16468,He then runs excitedly while cameras follow him and shown other athletes spinning the disk. More shots are shown of people celebrating and the athlete,He then runs excitedly while cameras follow him and shown other athletes spinning the disk.,More shots are shown of people celebrating and the athlete,gold,jumps over and celebrates.,runs into the stands.,throws the ball into more baskets.,shows more clips.\n16107,anetv_ZNUkzdw2EeI,16467,An athletic man is seen stepping up to a circle and throwing a discuss off into the distance. He then,An athletic man is seen stepping up to a circle and throwing a discuss off into the distance.,He then,gold,spins himself around and punches in the end while looking off into the distance.,runs excitedly while cameras follow him and shown other athletes spinning the disk.,begins performing the gymnastics routine while waving to the camera.,moves it and bounces it by looking the same.\n16108,anetv_gGg-kio0dmU,5727,People are playing and swimming in a pool. a girl,People are playing and swimming in a pool.,a girl,gold,runs into a pool.,is in a blue pool watching someone.,does a back flip off a board.,walks in a red shirt.\n16109,anetv_q4jeW0iSA9Y,11261,Various text intros lead into several people running down a long track. The camera,Various text intros lead into several people running down a long track.,The camera,gold,captures all that begin left the same.,pans around the field as well as people running along a trail.,zooms around on moving their arms in circles as well as talk about the sport.,captures the runners from several angles and leads into them performing jumps.\n16110,anetv_q4jeW0iSA9Y,11262,The camera captures the runners from several angles and leads into them performing jumps. The runners continuously,The camera captures the runners from several angles and leads into them performing jumps.,The runners continuously,gold,jump into the pit and end with text across the screen.,run and end by performing stunts on the horses as well as women doing the same tricks to one camera.,perform a cheer routine in the pit when the men push the man away.,hit the people while water run all around the area.\n16111,anetv_0rDLcTmgzGQ,14849,The men riding the horses are playing polo in the field. The men,The men riding the horses are playing polo in the field.,The men,gold,ride the horses and ride the horses on the make.,open the players balls and pose to the camera.,are chasing the ball and hitting with mallet.,have started to start jumping on the rope indoor.\n16112,anetv_0rDLcTmgzGQ,14850,The men are chasing the ball and hitting with mallet. A player,The men are chasing the ball and hitting with mallet.,A player,gold,\"hit the ball and then ran after it, behind him are other players.\",knocked someone misses them.,hits a girl and kicks them.,angrily steps forward and kicks the ball.\n16113,anetv_GR6Ul2pD8_Y,11226,The man in the green knit cap tries twice and the leaf blower starts. The girl in the blue jacket,The man in the green knit cap tries twice and the leaf blower starts.,The girl in the blue jacket,gold,does a double somersault.,explains to the lady while the camera shows her finally lapse to the routine of the tank's lens.,lays down in a chair to catch the toy.,mounts the leaf blower on her back and begins to blow leafs around.\n16114,anetv_GR6Ul2pD8_Y,11223,A man wearing a green knit cap drives up to the camera on a lawn tractor. The man,A man wearing a green knit cap drives up to the camera on a lawn tractor.,The man,gold,hops out of the car and starts pulling the tractor wheel.,points over his face.,\"approaches himself, desolate at the playground as he stands over one door.\",stops the tractor and gets out of the lawn tractor and walks up to the camera.\n16115,anetv_GR6Ul2pD8_Y,11225,The camera pans across the yard and takes a close up of a leaf blower laying the yard. A girl in a blue jacket,The camera pans across the yard and takes a close up of a leaf blower laying the yard.,A girl in a blue jacket,gold,tries to start the leaf blower many times but is unable to.,brushes the hair of the girl with a brush.,climbs in and walks out from under the tree.,hides behind the bow.\n16116,anetv_GR6Ul2pD8_Y,11227,The girl in the blue jacket mounts the leaf blower on her back and begins to blow leafs around. The man in the green knit cap is using the leaf blower and the girl in the blue jacket,The girl in the blue jacket mounts the leaf blower on her back and begins to blow leafs around.,The man in the green knit cap is using the leaf blower and the girl in the blue jacket,gold,uses blue ribbon on the tree.,have stepped through another room.,has her elbows out and smashes the fins of the canvas into the gift with a round of straw.,is now driving the lawn tractor.\n16117,anetv_GR6Ul2pD8_Y,11224,The man stops the tractor and gets out of the lawn tractor and walks up to the camera. The camera,The man stops the tractor and gets out of the lawn tractor and walks up to the camera.,The camera,gold,pans all around the car as the camera zooms past the camera.,zooms down on the boy and throw someone in the car park.,\"walks in, indicating the garage looks exterior.\",pans across the yard and takes a close up of a leaf blower laying the yard.\n16118,anetv_GR6Ul2pD8_Y,6731,The man then shows a woman how to start a left blowing machine. they both,The man then shows a woman how to start a left blowing machine.,they both,gold,begin playing together until it fades to white.,have numbers on a one above his head.,have a seat on top of it with sticks and some shells.,begin cleaning their yard.\n16119,anetv_GR6Ul2pD8_Y,6730,\"A man rides a huge lawn mower, gets off and starts talking. the man then\",\"A man rides a huge lawn mower, gets off and starts talking.\",the man then,gold,shows a woman how to start a left blowing machine.,starts moving over snow.,\"spins on his knee, continuing.\",creates a lot of different lifts.\n16120,lsmdc3020_DEAR_JOHN-9734,8965,Someone returns and offers someone a drink. Someone,Someone returns and offers someone a drink.,Someone,gold,\"hands the keys to someone, gazes closely at her father.\",shifts his frustrated gaze.,shoves it in his jacket and pumps a hand.,takes the drink and averts his gaze.\n16121,lsmdc3020_DEAR_JOHN-9734,8962,\"Now at the someone house, they get out of the car. Someone\",\"Now at the someone house, they get out of the car.\",Someone,gold,goes to the front door.,\"races up to the defending ward, opens the hatchback to a curb.\",disappears by the light of the pickup.,climbs out but someone bike the mansion down the street to the trailer in the background.\n16122,lsmdc3020_DEAR_JOHN-9734,8960,\"She touches his back, and he walks off. He\",\"She touches his back, and he walks off.\",He,gold,\"beams, and meets someone's gaze.\",pulls the jacket to the peg.,heaves a breath and sighs heavily.,\"walks a few paces away, then halts and hunches forward, catching his breath.\"\n16123,lsmdc3020_DEAR_JOHN-9734,8961,\"He walks a few paces away, then halts and hunches forward, catching his breath. Now at the someone house, they\",\"He walks a few paces away, then halts and hunches forward, catching his breath.\",\"Now at the someone house, they\",gold,watch their teammates leave the living room as someone's wife sleeps on the sofa in the dark lobby.,pass someone with uniformed hostages.,get out of the car.,stand in the grove and out of sight.\n16124,lsmdc3020_DEAR_JOHN-9734,8959,The car stops and someone gets out. Someone,The car stops and someone gets out.,Someone,gold,takes his hat out of the box.,is reversing.,paint a rainy area.,slouches at the side of the road.\n16125,lsmdc3020_DEAR_JOHN-9734,8964,\"Now someone's car pulls onto a private road. A stylish brunette woman in a white dress,\",Now someone's car pulls onto a private road.,\"A stylish brunette woman in a white dress,\",gold,crosses the front porch of a colonial plantation home.,gives her title to someone's frantic logo.,and a red bikini adjusts the strap bar.,unpacks the congo with a sweet smile.\n16126,lsmdc3020_DEAR_JOHN-9734,8963,They both stare ahead somberly. Now someone's car,They both stare ahead somberly.,Now someone's car,gold,swerves from the back as the alfa pulls closer behind someone.,pulls onto a private road.,stops outside a shiny building.,is parked outside the wood - strewn kitchen.\n16127,anetv_eMI2x3HFozQ,16938,The referee holds the boys hand in the air and a man hands the boy a sucker. The boy,The referee holds the boys hand in the air and a man hands the boy a sucker.,The boy,gold,stares at the boy and laughs.,leans against the yellow wall by the left.,shakes the hand of his opponent.,uses a stick to pull the guitar off.\n16128,anetv_eMI2x3HFozQ,16937,The man and the boy arm wrestle as the boy grimaces. The man,The man and the boy arm wrestle as the boy grimaces.,The man,gold,swings his right arm and the one on the other.,holding the darts and gradually playing lacrosse.,throw the rope with the winning wrestler and the weight and it bends on the floor.,lets the boy win and jumps up pretending to be upset.\n16129,anetv_eMI2x3HFozQ,16936,The boy and the man sit and the referee put his hand on the man's hand then removers it to signal the start of the race. The man and the boy arm,The boy and the man sit and the referee put his hand on the man's hand then removers it to signal the start of the race.,The man and the boy arm,gold,wrestling on the floor.,wrestle the barbel and shake his arms.,lifted the floor and the whole barbel started to pull the wrestler up.,wrestle as the boy grimaces.\n16130,anetv_eMI2x3HFozQ,12260,The man throws a fit. The audience,The man throws a fit.,The audience,gold,circle the crowd applauds for the crowd.,cheers the small child.,laughs the prayer.,ducks as the crowd congratulate their position.\n16131,anetv_9qJbSz-eCq0,2722,\"Ice cream fills the pints, and is mixed in a giant vault before other ingredients are added and the pints filled. We then\",\"Ice cream fills the pints, and is mixed in a giant vault before other ingredients are added and the pints filled.\",We then,gold,see the ladies start cooking.,\"see popsicles being created, before a man and woman are shown eating the treats.\",see the other cowboy pouring the bill of powder into a small bowl.,see an intro of the pleasing parchment that the flute next to and his description on screen.\n16132,anetv_9qJbSz-eCq0,2721,\"We see the inside of a plant, where cookies are crushed and put into containers of vanilla ice cream, then sorted. Ice cream\",\"We see the inside of a plant, where cookies are crushed and put into containers of vanilla ice cream, then sorted.\",Ice cream,gold,\"fills the pints, and is mixed in a giant vault before other ingredients are added and the pints filled.\",appears to brush like the bucket picking up the ball on the ice.,makes this turn like and hits a hole.,appears on the screen.\n16133,lsmdc0030_The_Hustler-65182,3061,\"Someone makes a good break, leaving the cue ball teetering over the far corner pocket. Someone\",\"Someone makes a good break, leaving the cue ball teetering over the far corner pocket.\",Someone,gold,waves to someone as he tries to get him.,watches in someone glasses and shows several well on a number of faraway downs.,looks at the lineup of the balls.,\"is at another table, a large spoon, covered in glass with fried twinkies.\"\n16134,lsmdc0030_The_Hustler-65182,3066,He rams a bank shot into the pack. The one ball,He rams a bank shot into the pack.,The one ball,gold,pops out and blocks them both.,\"rolls in, while others scatter about the table.\",hits the man back into a squatting puddle.,\"is standing on the border of the tent, sobbing.\"\n16135,lsmdc0030_The_Hustler-65182,3059,\"Someone also takes a seat, but far away, near the coat rack. Someone\",\"Someone also takes a seat, but far away, near the coat rack.\",Someone,gold,looks in.,clean the paneled somberly and booth.,\"folds several dresses and stands before him, and smiles.\",taps someone on the lapel.\n16136,lsmdc0030_The_Hustler-65182,3057,The balls are already racked and ready. Someone,The balls are already racked and ready.,Someone,gold,drives up and drive off down the street.,collects their stake money and prepares to toss the coin.,ducks nearby after he leans it underneath the pillar.,shoves someone through the bottom fist.\n16137,lsmdc0030_The_Hustler-65182,3065,He turns and snatches up his cue. He,He turns and snatches up his cue.,He,gold,\"sees someone with her pole raised, turns and steps back.\",walks back and forth looking up.,rams a bank shot into the pack.,does a big teach on the fence in front of a green field.\n16138,lsmdc0030_The_Hustler-65182,3063,Then he sets down his cue and walks over to the washroom. He,Then he sets down his cue and walks over to the washroom.,He,gold,picks up the cushion and continues to speak to the camera.,glances at someone as he sprinkles the powder on his hands.,tumbles out of the bowl and takes off his hat.,\"lets go of the engine, then steps out.\"\n16139,lsmdc0030_The_Hustler-65182,3064,He glances at someone as he sprinkles the powder on his hands. He,He glances at someone as he sprinkles the powder on his hands.,He,gold,glides out onto the road as they land on an shore.,\"points at someone, who hits someone in the crotch.\",turns and snatches up his cue.,leaves a white line past along the top of the stone.\n16140,lsmdc0030_The_Hustler-65182,3055,Someone starts to screw his cue together. He,Someone starts to screw his cue together.,He,gold,\"and forth, he smiles and looks at someone with a smile: someone walks away.\",turns to join someone at the table.,collapses as someone rests around him and salutes forward one ring.,picks up the white year - winning basket over the table.\n16141,lsmdc0030_The_Hustler-65182,3054,\"Someone rises, ready to play. Someone\",\"Someone rises, ready to play.\",Someone,gold,\"returns to her bedroom, looking out toward the night from the huge meeting room.\",shovels him out of view.,starts to screw his cue together.,\"flops forward, kicks his legs, stand back up.\"\n16142,lsmdc0030_The_Hustler-65182,3062,Someone looks at the lineup of the balls. Then he,Someone looks at the lineup of the balls.,Then he,gold,sets down his cue and walks over to the washroom.,\"straightens in tie, then takes off his glasses and watches.\",grabs the weights and swings it around her body.,steps into the water bank.\n16143,lsmdc0030_The_Hustler-65182,3056,He turns to join someone at the table. The balls,He turns to join someone at the table.,The balls,gold,are already racked and ready.,flash toward the boys.,are knocked off the tray.,fall off the table.\n16144,lsmdc0030_The_Hustler-65182,3060,Sausage sends the cue ball down the table and the game begins at once. Someone,Sausage sends the cue ball down the table and the game begins at once.,Someone,gold,is doing with the trick.,\"makes a good break, leaving the cue ball teetering over the far corner pocket.\",rushes back to the practicing.,shakes it with both hands and approaches him.\n16145,lsmdc3009_BATTLE_LOS_ANGELES-635,11602,Someone's chest heaves as he watches them disappear around the corner. He,Someone's chest heaves as he watches them disappear around the corner.,He,gold,stifles a smile with a smile.,\"sweeps his gaze over the area, finding it unoccupied then lowers his gun.\",\"runs off with someone, someone.\",paces excitedly across a stone stairway to the other.\n16146,lsmdc3009_BATTLE_LOS_ANGELES-635,11601,The aliens race away from the prevailing humans. Someone's chest,The aliens race away from the prevailing humans.,Someone's chest,gold,flips below as the water survey the platform.,heaves as he watches them disappear around the corner.,is broken that he can only feel his skin visibly webbed in place.,heaves as they start down down the mud towards someone's broomstick.\n16147,lsmdc3009_BATTLE_LOS_ANGELES-635,11603,Sunlight shines behind someone's unit silhouetting them as they stand amidst the rubble and stare at the destroyed vessel. Now someone and a handful of his comrades,Sunlight shines behind someone's unit silhouetting them as they stand amidst the rubble and stare at the destroyed vessel.,Now someone and a handful of his comrades,gold,stroll through an courtyard.,get up amid salad slices on the promenade.,ride in the cabin of a helicopter.,descend the slopes of hogwarts ancient chins.\n16148,lsmdc3009_BATTLE_LOS_ANGELES-635,11598,\"Someone watches the drones, which spin out of control as they descend. It\",\"Someone watches the drones, which spin out of control as they descend.\",It,gold,erupts the heavy lever.,bashes into their war armor.,\"hurriedly tries a rope, then they burst above the waves.\",hits the ground near the group.\n16149,anetv_57buK1yvKPk,595,A young girl is seen peeling potatoes and speaking to the camera. She,A young girl is seen peeling potatoes and speaking to the camera.,She,gold,continues speaking and shows various angles and moves in several resort cookies.,continues shaving the horse's length while still speaking to the camera.,chops around the ingredients as well as her legs and shows it to the camera while stuffing a napkin to the wine.,waves her potato to the camera and continues peeling.\n16150,anetv_57buK1yvKPk,596,She waves her potato to the camera and continues peeling. She,She waves her potato to the camera and continues peeling.,She,gold,shows the potato with a spoon.,takes a sip of lemonade and exhales.,waves it around and continues peeling.,shuts the door in the truck right behind her.\n16151,anetv_57buK1yvKPk,14741,The girl continues peeling while speaking to the camera and waving the potato all around her. The girl,The girl continues peeling while speaking to the camera and waving the potato all around her.,The girl,gold,continues to speak and brushes off the hair and ends by looking away from the camera.,continues drumming while smiling to the camera and smiling to the camera.,continues peeling while looking over and speaking to the camera.,continues cutting the hair as they try to bring down the pumpkins.\n16152,anetv_57buK1yvKPk,14740,A young girl is seen standing before a counter peeling potatoes with a peeler. The girl,A young girl is seen standing before a counter peeling potatoes with a peeler.,The girl,gold,then begins rinsing her food on the plate and ends by taking it out and presenting it into the pan.,continues peeling while speaking to the camera and waving the potato all around her.,then moves up the iron and begins washing a tomato on the plate.,then puts all the seeds into a bowl and continues cutting the tomato.\n16153,anetv_tl2RLYJUu3k,16366,Three martial artists with black belts do a demonstration for younger children. They,Three martial artists with black belts do a demonstration for younger children.,They,gold,fight each other in between in the competition of flips.,hit each other with croquet bats.,jump and kick then bow to each other.,take refuge on actual structure and hop tricks.\n16154,anetv_5LveCNjz_zg,3635,The cat is meowing as the woman holds her paws. there,The cat is meowing as the woman holds her paws.,there,gold,'s a purple cat with seven nails very close to a pointed nail.,'s a woman standing at a table holding chocolate cake.,\"'s another man with nail clippers, slipping the cat's nails.\",is a man doing gymnastics.\n16155,anetv_5LveCNjz_zg,3636,\"There's another man with nail clippers, slipping the cat's nails. The cat meows loudly in pain and the woman\",\"There's another man with nail clippers, slipping the cat's nails.\",The cat meows loudly in pain and the woman,gold,begins pinning his scarf down with a dark gray dog.,starts swinging the pages.,takes a second steadying on the pinata.,kisses the cat to calm her down.\n16156,anetv_5LveCNjz_zg,3637,The man continues to clip the cat's nails as the woman cajoles the cat and kisses the cat's ears. The man,The man continues to clip the cat's nails as the woman cajoles the cat and kisses the cat's ears.,The man,gold,continues tattooing his dog and ends by walking out of the water with the cat's nails.,blows smoke all around the area while the camera pans around and flicks down more.,is then again cutting the cats claws and finally stirring the cat all around the cat's claws.,continues clipping the nails until he's done.\n16157,anetv_D7ZeRbotot0,3789,He stops the welding job. Then he,He stops the welding job.,Then he,gold,turns around and cleans the line with the tool.,moves away and inspect it.,starts welding the ornament.,leans down to maintain the bolts.\n16158,anetv_D7ZeRbotot0,3788,A man in yellow and black suit welds a steel. He,A man in yellow and black suit welds a steel.,He,gold,is welding it from the desk in pieces.,moves the tool on the individual's double.,stops the welding job.,places her knees on a salad.\n16159,lsmdc1008_Spider-Man2-75623,18064,\"Someone, his face grim and curious, steps forward towards the balustrade. As he looks over the parapet, one of the mechanical limbs\",\"Someone, his face grim and curious, steps forward towards the balustrade.\",\"As he looks over the parapet, one of the mechanical limbs\",gold,bends down and places his arm in it.,rears up and throws him off his feet.,\"enter his father's arms, wave him over and disappear.\",gives him plates his.\n16160,lsmdc1008_Spider-Man2-75623,18056,Two of the limbs push a curved base in a replica fusion chamber in a space from which now four curved pillars rise. Someone,Two of the limbs push a curved base in a replica fusion chamber in a space from which now four curved pillars rise.,Someone,gold,approaches him.,\"fires himself, setting his stories to fly with the spear.\",eases the final girder securely it into position.,\"checks its path, then, a three - yards vehicle flies back overhead.\"\n16161,lsmdc1008_Spider-Man2-75623,18058,He steps back standing inside the fusion chamber which floats on the river below. He,He steps back standing inside the fusion chamber which floats on the river below.,He,gold,explodes into the rising water from rising water.,looks around while being burned down below.,zips down his tie.,looks up at the structure and the limb.\n16162,lsmdc1008_Spider-Man2-75623,18063,\"Lights on the pillars and small trees and bushes are dormant. Someone, his face grim and curious,\",Lights on the pillars and small trees and bushes are dormant.,\"Someone, his face grim and curious,\",gold,looks at someone with pride.,stands his back to the camera's tricks.,steps forward towards the balustrade.,returns to the doorway of the room.\n16163,lsmdc1008_Spider-Man2-75623,18059,\"Suddenly, someone spins around. The houseman\",\"Suddenly, someone spins around.\",The houseman,gold,looks her up and down.,falls into the water.,enters as someone drinks.,spins him around as someone follows.\n16164,lsmdc1008_Spider-Man2-75623,18065,\"As he looks over the parapet, one of the mechanical limbs rears up and throws him off his feet. Someone's glass\",\"As he looks over the parapet, one of the mechanical limbs rears up and throws him off his feet.\",Someone's glass,gold,gets sprayed from someone's hand.,flies in the air.,\"is distorted, threatening to attack.\",flies down into the water.\n16165,lsmdc1008_Spider-Man2-75623,18060,The houseman enters as someone drinks. Someone,The houseman enters as someone drinks.,Someone,gold,shuffles his shorter shoe.,turns and walks out.,shakes the drink from his glass.,throws his drink down and blocks someone's shot.\n16166,lsmdc1008_Spider-Man2-75623,18061,Someone turns and walks out. Someone,Someone turns and walks out.,Someone,gold,\"is in the dark, watching the film.\",brushes back away from him.,carries a paint bucket towards the house.,strides over to the open french windows which lead out onto a balcony.\n16167,lsmdc1008_Spider-Man2-75623,18062,He stops when he hears a distant thud. He,He stops when he hears a distant thud.,He,gold,\"looks, lifted again, then sits once more.\",gestures the way across the carpet.,starts to look around the vast terrace - like balcony.,reaches on his desk seductively.\n16168,anetv_0vJfctL116Y,3730,A woman holds the bowl up and shows the salad while smiling. The woman who tossed the salad,A woman holds the bowl up and shows the salad while smiling.,The woman who tossed the salad,gold,is washing her hands off on a towel.,is added upside down.,is stirred in a glass.,runs through the end of the net.\n16169,anetv_0vJfctL116Y,3726,She puts more dressing on the salad. A lady in the background,She puts more dressing on the salad.,A lady in the background,gold,is pulling saran wrap out.,talks on the dish.,looks up at the mutants anxiously.,is watching the half of the salad getting baked.\n16170,anetv_0vJfctL116Y,3725,She opens a bottle with her teeth and pours that onto the salad too. She,She opens a bottle with her teeth and pours that onto the salad too.,She,gold,looks back at the blue screen and points her legs.,is standing in the sink and explains that you will need to wash the dishes.,puts more dressing on the salad.,cuts and spray plate and make it multiple times to make another cake.\n16171,anetv_0vJfctL116Y,3728,She continues tossing the salad and mixing the dressing into it. A woman behind her,She continues tossing the salad and mixing the dressing into it.,A woman behind her,gold,and puts the spices on top of her plate.,eats a bite of a meal of ice cream.,continues to mix the hulte a bit.,pours seasoning onto the salad.\n16172,anetv_0vJfctL116Y,3729,A woman behind her pours seasoning onto the salad. A woman,A woman behind her pours seasoning onto the salad.,A woman,gold,holds the bowl up and shows the salad while smiling.,shoves a guy into the bucket.,takes potatoes and sets it down.,picks up a brown pot and pours it in a clear pot.\n16173,anetv_0vJfctL116Y,3727,A lady in the background is pulling saran wrap out. She,A lady in the background is pulling saran wrap out.,She,gold,woman screws the dough onto a counter and puts them on a table.,presents a wrap's wrapping paper.,opens the bricks to keep him upright.,continues tossing the salad and mixing the dressing into it.\n16174,anetv_0vJfctL116Y,3722,She dries and cuts some cucumbers to put in a bowl of salad. She,She dries and cuts some cucumbers to put in a bowl of salad.,She,gold,is then shown in top of how to make the mushrooms.,starts with her potatoes in order to block the tomato.,\"squeezes it shows a few pictures, and then apples.\",tosses the salad with her hands.\n16175,anetv_0vJfctL116Y,3721,A woman in a white apron is slicing lettuce on a board. She,A woman in a white apron is slicing lettuce on a board.,She,gold,cuts the bread mechanism.,is mixing the vegetables in her sink.,dries and cuts some cucumbers to put in a bowl of salad.,puts a dressing on a plate.\n16176,anetv_0vJfctL116Y,3724,She grabs a bottle of vinegar and pours it on top of the salad. She,She grabs a bottle of vinegar and pours it on top of the salad.,She,gold,places the painted cookie into a hot oven and takes it off the stove water.,takes the doll and grabs it in her own hand.,opens a bottle with her teeth and pours that onto the salad too.,rolls into a tub and puts on a layer of abs.\n16177,anetv_0vJfctL116Y,3723,She tosses the salad with her hands. She,She tosses the salad with her hands.,She,gold,fingernail moves across its furrowed path.,closes the grill and peels the paper on the bread.,grabs a bottle of vinegar and pours it on top of the salad.,puts out a copy of the pasta.\n16178,anetv_CzyMYAvKE2E,127,\"A knife cuts the top of a pumpkin. Then, the knife\",A knife cuts the top of a pumpkin.,\"Then, the knife\",gold,cuts the eyes and the nose of the pumpkin.,sharpens the knife with both hands.,is peeled out of the paper.,stands before a painted bush.\n16179,anetv_CzyMYAvKE2E,13529,Then a knife cuts off the top of the pumpkin seemingly on its own with no person holding it. The knife then,Then a knife cuts off the top of the pumpkin seemingly on its own with no person holding it.,The knife then,gold,cuts out a halloween pumpkin face on the pumpkin and the insides come out of its mouth.,cuts itself into rectangular pieces.,begins to move more slowly.,\"cuts into half empty shapes then picks the knife out before making an layers, driving it out quickly.\"\n16180,anetv_CzyMYAvKE2E,13528,A pumpkin is spinning around on a table and then stops. Then a knife,A pumpkin is spinning around on a table and then stops.,Then a knife,gold,appears on the woman's hand.,\"is cut away, a pumpkin focuses on the fire carving the pumpkin.\",cuts off the top of the pumpkin seemingly on its own with no person holding it.,is shown from the sunken container with a cube.\n16181,anetv_k5wjc4OO1XM,10517,A man pours an egg into a small pan. He,A man pours an egg into a small pan.,He,gold,storms into the house.,paints the top of the pumpkin.,sets the pan onto a stove.,tosses it onto a plate.\n16182,anetv_k5wjc4OO1XM,10518,He sets the pan onto a stove. He,He sets the pan onto a stove.,He,gold,holds it in his ear and he takes it off.,dumps the food out onto a plate.,cooks sugar on the.,\"drops the pot, setting it back under a tree.\"\n16183,anetv_IRz9PYgpb8U,8644,\"A man uses a trimmer to trim the leaves on a tree in a backyard, starting in the middle. He\",\"A man uses a trimmer to trim the leaves on a tree in a backyard, starting in the middle.\",He,gold,moves to his left to continue trimming the tree.,is cutting the wood with a shovel until the ground goes next so he is mowing the weeds.,goes to a pile on the ground outside of a neighbor's house.,\"falls inside, using his shovel to get back several leaves in his yard.\"\n16184,anetv_m22vOf2fw1M,15234,\"A person trims the top of a pink hedge using a hedge trimmer. Then, the man\",A person trims the top of a pink hedge using a hedge trimmer.,\"Then, the man\",gold,stops using the shears and records it with the shelf and with the heads bottom.,cleans the window with the shears.,peeks hole after the nails.,trim the sides of the pink hedge on front a house.\n16185,lsmdc1046_Australia-90532,5343,She gets off her knees. She,She gets off her knees.,She,gold,\"nods to the woman, kneels, beside someone, staring dumbly.\",looks him right in the eye.,\"holds herself up, turning as she backs out.\",slams it against the pot.\n16186,anetv_hJiaSHwOkcs,5916,A man is sitting on top of a horse. He,A man is sitting on top of a horse.,He,gold,begins getting chased around the arena by a man pushing a wheelbarrow.,is then seen playing with the dog.,is petting a horse's leash.,is brushing the long hair of a dog.\n16187,anetv_hJiaSHwOkcs,5917,He begins getting chased around the arena by a man pushing a wheelbarrow. The horse,He begins getting chased around the arena by a man pushing a wheelbarrow.,The horse,gold,continues to move and chase him down the trees while gathering around the ends of a cage dunk.,runs from bull in the pen.,hammers through on the fence while the others laugh.,plays for a bit of the crowd.\n16188,anetv_GHcNgllmcpM,13711,A large crowd is seen sitting before a stage and leads into a young woman hitting drums in a circle and moving around the stage. The woman,A large crowd is seen sitting before a stage and leads into a young woman hitting drums in a circle and moving around the stage.,The woman,gold,lets go of the hoop with the closing caption shown on the screen.,begins flipping around the court while the camera captures her movements and ends with her routine flipping over a bar.,continues hitting the drums while the crowd watches and ends with text scrolling across the screen.,braids the woman's hair round then continues dancing around the room and ends with her walking in the end.\n16189,lsmdc0009_Forrest_Gump-50473,595,Rockets explode all around the field. Someone,Rockets explode all around the field.,Someone,gold,sits at a bar among a group.,zooms in on a white van and rolls along.,shoots another flag but misses.,runs into the jungle.\n16190,lsmdc0009_Forrest_Gump-50473,593,Someone looks down and covers his head as rockets explodes all around him. The platoon,Someone looks down and covers his head as rockets explodes all around him.,The platoon,gold,jumps into the plane still throwing up the handle.,\"swings straight through the air, flying confetti across the street.\",races two nazi soldiers of giants.,gets up and runs toward the cover of the jungle.\n16191,lsmdc0009_Forrest_Gump-50473,597,The soldiers run through the jungle as bullets explode all around. A soldier,The soldiers run through the jungle as bullets explode all around.,A soldier,gold,places someone through the high dirt on the ship.,gives supplies at a hook.,is blown up by a rocket.,aims at the bullet man.\n16192,lsmdc0009_Forrest_Gump-50473,596,Someone runs into the jungle. The soldiers,Someone runs into the jungle.,The soldiers,gold,marches down a mountain.,run through the jungle as bullets explode all around.,take turns throwing big inflatable flags at his attacker.,continue to go till they hit a bit across by unfinished giant of branches.\n16193,lsmdc0009_Forrest_Gump-50473,594,The platoon gets up and runs toward the cover of the jungle. Rockets,The platoon gets up and runs toward the cover of the jungle.,Rockets,gold,explode all around the field.,\"jutting forward, high in the air!\",fall to the floor as journals splash her.,\"move through the cover of the ancient foliage, some from the world of mordor.\"\n16194,lsmdc0009_Forrest_Gump-50473,610,\"Someone drops another wounded soldier down at the bank of the river next to someone, and then runs back toward the jungle. Someone\",\"Someone drops another wounded soldier down at the bank of the river next to someone, and then runs back toward the jungle.\",Someone,gold,grabs the third wounded soldier up from the ground and turns him over.,steps up to an otherwise empty cabin.,is now at home - at the library and a pinched nazi wears hoodie.,spews yet another development.\n16195,lsmdc0009_Forrest_Gump-50473,603,Rockets explode in the jungle. Someone,Rockets explode in the jungle.,Someone,gold,looks out at the ramshackle in his bedroom.,slips through the water.,climbs up slowly before someone.,runs back into the jungle to look for someone.\n16196,lsmdc0009_Forrest_Gump-50473,604,Someone runs back into the jungle to look for someone. Someone,Someone runs back into the jungle to look for someone.,Someone,gold,stops and aims his weapon.,leaps out of her boat and to the sarcophagus.,rests a brush on a shoe.,\"crashes, but turns towards myrtle entrance.\"\n16197,lsmdc0009_Forrest_Gump-50473,607,\"Someone lies on the ground, his face distorted with pain. Someone\",\"Someone lies on the ground, his face distorted with pain.\",Someone,gold,descends the steps to his phone.,\"flings a pillow at someone, who ducks into someone.\",creeps up to the wintry blue sound on his chest.,carries someone out of the jungle and into the clearing.\n16198,lsmdc0009_Forrest_Gump-50473,602,\"Someone turns around, then runs back into the jungle. Rockets\",\"Someone turns around, then runs back into the jungle.\",Rockets,gold,ships swirl around him.,is being steels himself and he goes above the front corner.,explode in the jungle.,scurries from the balustrade as someone leads someone on to the other side of the path.\n16199,lsmdc0009_Forrest_Gump-50473,608,Someone carries someone out of the jungle and into the clearing. He,Someone carries someone out of the jungle and into the clearing.,He,gold,\"sets someone down on the bank of a river, and runs back into the jungle.\",walks onto the bridge and spots it.,climbs out of the tank and runs toward the pool.,glares at her and spots someone with a fresh - faced boy wearing a white t - shirt.\n16200,lsmdc0009_Forrest_Gump-50473,609,\"He sets someone down on the bank of a river, and runs back into the jungle. Someone\",\"He sets someone down on the bank of a river, and runs back into the jungle.\",Someone,gold,breaks into a fight.,\"drops another wounded soldier down at the bank of the river next to someone, and then runs back toward the jungle.\",swims pass through the pod.,sprints down a staircase.\n16201,lsmdc0009_Forrest_Gump-50473,601,Rockets explode in the jungle as someone runs out toward a clearing. Someone,Rockets explode in the jungle as someone runs out toward a clearing.,Someone,gold,\", with a car which swerves across the air, then falls into the water with a crash.\",lays a chair down on a wooden tether.,\"throws the gun, knocking a woman down in the crash center.\",\"turns around, then runs back into the jungle.\"\n16202,lsmdc0009_Forrest_Gump-50473,599,A soldier runs through the jungle. Someone,A soldier runs through the jungle.,Someone,gold,runs past the soldier.,\"switches on discus show and begins quickly bit more about a jump, and fails.\",ducks into a hut.,punches him in the head.\n16203,lsmdc0009_Forrest_Gump-50473,600,Someone runs past the soldier. Rockets,Someone runs past the soldier.,Rockets,gold,explode in the jungle as someone runs out toward a clearing.,runs out over the field.,\"runs back to the podium, someone is now on the collapsible.\",\", he crawls along.\"\n16204,lsmdc0009_Forrest_Gump-50473,605,Someone stops and aims his weapon. He,Someone stops and aims his weapon.,He,gold,\"looks around, scared.\",\"uses his gun, showing the pistol on someone.\",\"looks up at him, unsure in what he means.\",brings her a bottle of whiskey.\n16205,lsmdc0009_Forrest_Gump-50473,606,\"He looks around, scared. Someone\",\"He looks around, scared.\",Someone,gold,\"steps back a bit, takes the shot and gets out.\",\"turns and looks, then rushes over.\",\"goes to someone's relief, too.\",is running around the floor ripping his hair.\n16206,anetv_ISEbX4WvBW4,19792,A small boy is on a tire swing. the tire swing,A small boy is on a tire swing.,the tire swing,gold,begins spinning around in a circle with the boy on it.,swings up and down as it roars like a house.,is nailed back upside down.,makes him a locked swing.\n16207,anetv_ISEbX4WvBW4,6030,A young boy swings in a donut style swing at a park. The boy,A young boy swings in a donut style swing at a park.,The boy,gold,sets his skateboard and skateboard on the track.,swings around and around smiling and laughing.,is seen holding his hands up.,is trying to hit his wooden bar.\n16208,anetv_ISEbX4WvBW4,6031,The boy swings around and around smiling and laughing. The boy,The boy swings around and around smiling and laughing.,The boy,gold,finishes and continues to stare to the camera.,kneels down and sets his closeup.,swings more and laughs into camera.,stops playing and laughs.\n16209,anetv_ISEbX4WvBW4,19793,The tire swing begins spinning around in a circle with the boy on it. the boy,The tire swing begins spinning around in a circle with the boy on it.,the boy,gold,continues to hoop around the scene and stops playing.,smiles and laughs as he rides the tire swing.,continues walking over more water while letting the board work out.,gets up and holds over his trunk and harness.\n16210,anetv_ISEbX4WvBW4,6029,A boy plays on a swing set in an outdoors children's playground. A young boy,A boy plays on a swing set in an outdoors children's playground.,A young boy,gold,walks into an old playground.,does a handstand as he plays and demonstrates how to play a piano.,sits behind a playground mower and stands upright.,swings in a donut style swing at a park.\n16211,lsmdc0051_Men_in_black-70832,18773,People move past him and approach the row of nervous immigrants. He,People move past him and approach the row of nervous immigrants.,He,gold,joins his german shepherd.,draws his wand across the grounds.,hefts the one materials in the hand he picked up.,\"walks down the row, studying the faces, greeting each one cheerily in spanish.\"\n16212,lsmdc0051_Men_in_black-70832,18771,\"It's a boxy, black 1986 Ford ltd. Two men\",\"It's a boxy, black 1986 Ford ltd.\",Two men,gold,\"raise arm to arm, pushing them towards each other.\",\"get out, dressed in plain black suits, crisp white shirts, simple black ties, shiny black shoes.\",pass through hanger windows.,\"are putting thru windows, extinguishing the brightly colored illustration.\"\n16213,lsmdc0051_Men_in_black-70832,18772,\"Someone, fiftyish, is the apotheosis of world - weary; his partner, someone, mid - sixties, is just weary. They\",\"Someone, fiftyish, is the apotheosis of world - weary; his partner, someone, mid - sixties, is just weary.\",They,gold,\"hold him out, matronly someone's hair behind his back.\",\"panicked, utterly confused off in the living room.\",\"looks up at the ceiling, smiling, in the chair.\",approach the ins agents.\n16214,anetv_vqqoDYma9F8,4255,Clips are shown of men hanging off of buildings washing windows while another man speaks to the camera. The men,Clips are shown of men hanging off of buildings washing windows while another man speaks to the camera.,The men,gold,are adding out organic dogs after dogs run after them all and enjoy a job.,wash windows all along a building and stop to smoke cigarettes and speak to one another.,continue movements as the tiling fashion around the vehicle and continue to shovel the snow and moving to the side.,are detailing different rooms and warming up in the water as well as shining the walls.\n16215,anetv_vqqoDYma9F8,13191,\"A worker talks and then fix his uniform, and then descent to clean he windows of a building with other laborers. Again the the worker talks, then big buildings\",\"A worker talks and then fix his uniform, and then descent to clean he windows of a building with other laborers.\",\"Again the the worker talks, then big buildings\",gold,\"display on the screen after, workers hang on a building and clean the windows.\",are shown on gold walls and ghetto offices.,appear across the street.,are shown for a racing time.\n16216,anetv_vqqoDYma9F8,13190,\"A tv reporter talks while a worker clean the windows of a building. A worker talks and then fix his uniform, and then descent\",A tv reporter talks while a worker clean the windows of a building.,\"A worker talks and then fix his uniform, and then descent\",gold,smooths the side of a red wall.,to clean he windows of a building with other laborers.,\"twirling around, after his robots are done.\",demonstrates a new rod.\n16217,anetv_vqqoDYma9F8,4254,A woman speaks to the camera while hosting a news segment and leads into a man speaking to the camera. Clips,A woman speaks to the camera while hosting a news segment and leads into a man speaking to the camera.,Clips,gold,are shown in the beach and still shots of the kites.,are shown of men hanging off of buildings washing windows while another man speaks to the camera.,show clips of another man performing various tricks and drums while still walking around and laughing.,of more people are seen while speaking to the camera and ends with a woman speaking and smiling to the camera.\n16218,lsmdc0011_Gandhi-52956,16130,\"He grins in his youthful, beguiling manner and makes the pranam to the cheering crowd. It\",\"He grins in his youthful, beguiling manner and makes the pranam to the cheering crowd.\",It,gold,has given back to someone.,\"rises from tall women, opening it for another.\",picks up a goblet.,\"is cut off by the sound of a door being opened, close.\"\n16219,lsmdc0011_Gandhi-52956,16129,\"A detachment of Indian Royal Air Force comes to attention at the shouted command of their nco. An elaborately dressed military aide opens the door and someone, resplendent in naval uniform,\",A detachment of Indian Royal Air Force comes to attention at the shouted command of their nco.,\"An elaborately dressed military aide opens the door and someone, resplendent in naval uniform,\",gold,sits on the hillside in a series of flickering wooden currents.,is pinned with white letters layer into the narrowed pries of his mouth.,is sitting alone on his bed by the window.,steps out onto the platform.\n16220,lsmdc0011_Gandhi-52956,16135,He slaps his lighter shut and addresses someone in hushed but fiercely felt words. People,He slaps his lighter shut and addresses someone in hushed but fiercely felt words.,People,gold,ladles homeless people come and get read.,\"are approaching from the conference room, both of them looking worn and angry too.\",are two very loud.,keep up on their brother's mailbox.\n16221,lsmdc0011_Gandhi-52956,16134,Someone's anger is clearly too deep to be left at the conference table. He,Someone's anger is clearly too deep to be left at the conference table.,He,gold,\"looks at it, his eyes rolling across the street.\",slaps his lighter shut and addresses someone in hushed but fiercely felt words.,comes into a toned lot of gaming tables and an old framed reception desk.,looks down at the serene.\n16222,lsmdc0011_Gandhi-52956,16133,\"It is a break in their Independence Conference, and as he lights a cigarette, a weary someone approaches him with someone. Someone's anger\",\"It is a break in their Independence Conference, and as he lights a cigarette, a weary someone approaches him with someone.\",Someone's anger,gold,takes someone's knee.,is muffled by the horrible monkeys of the passionately set on the far wall.,is clearly too deep to be left at the conference table.,begins to thin and catches a fiery substance.\n16223,lsmdc0011_Gandhi-52956,16131,\"It is cut off by the sound of a door being opened, close. Someone\",\"It is cut off by the sound of a door being opened, close.\",Someone,gold,turns to discover someone standing against the door which are open too; god.,rides along a hall and into the vampire's face.,turns to look at it.,stands by one of the great pillars of the immense portico.\n16224,lsmdc0011_Gandhi-52956,16132,\"Someone stands by one of the great pillars of the immense portico. It is a break in their Independence Conference, and as he lights a cigarette, a weary someone\",Someone stands by one of the great pillars of the immense portico.,\"It is a break in their Independence Conference, and as he lights a cigarette, a weary someone\",gold,holds out a prize guitar.,strolls their two friends along the heavily bruised pews.,approaches him with someone.,cocks his head.\n16225,lsmdc0053_Rendezvous_mit_Joe_Black-71304,7325,\"Someone at the door now, pauses abruptly, her eyes on someone. Someone\",\"Someone at the door now, pauses abruptly, her eyes on someone.\",Someone,gold,hoists the hood strap of her purse.,holds the door for someone as they step out onto the street.,scrambles out of the cab while someone walks beside someone.,holds the contact directly in its eye.\n16226,lsmdc0053_Rendezvous_mit_Joe_Black-71304,7326,\"Someone holds the door for someone as they step out onto the street. Someone is staring at him now, he\",Someone holds the door for someone as they step out onto the street.,\"Someone is staring at him now, he\",gold,is awareness in a small tentacle.,is still cut to his sofa.,opens the door of his police car.,\"smiles, all open and vulnerable.\"\n16227,anetv_3XUxm78gjJE,6159,People are playing baseball on a field of grass. A person in a blue shirt,People are playing baseball on a field of grass.,A person in a blue shirt,gold,falls down throwing the baseball.,is holding a volleyball spreading to the ball.,is standing next to her.,is standing on top of him.\n16228,anetv_0w2XFd-Q9Eg,18254,\"A person sits on front a laptop and a cube puzzle. Then, the person\",A person sits on front a laptop and a cube puzzle.,\"Then, the person\",gold,resumes this grated moves by using it.,puts the bars down and grabs tires in a tube.,solves a cube puzzle.,adds the cube to puzzle.\n16229,anetv_0w2XFd-Q9Eg,18255,\"Then, the person solves a cube puzzle. After, the person solves the cube puzzle\",\"Then, the person solves a cube puzzle.\",\"After, the person solves the cube puzzle\",gold,puts it on the laptop.,puzzle by the second one.,consisting of the puzzle.,is repeated by slow motion.\n16230,anetv_m1pNOYN-DoI,1089,A guy takes the golf ball out of the cup and attempts to drink the liquid. A guy,A guy takes the golf ball out of the cup and attempts to drink the liquid.,A guy,gold,\"throws a golf ball with his back toward the table, lands it inside the cup, and leaves the room.\",coughs and pours the glass of red liquid.,\"pauses up to a seat on a bike, with his hands behind his head.\",throws bowling balls at him.\n16231,anetv_m1pNOYN-DoI,1088,Guys point at the camera and laugh. A guy,Guys point at the camera and laugh.,A guy,gold,catches the ball and leave.,takes the golf ball out of the cup and attempts to drink the liquid.,walks out of frame holding the stick.,throws darts at a dartboard.\n16232,anetv_m1pNOYN-DoI,1090,\"A guy throws a golf ball with his back toward the table, lands it inside the cup, and leaves the room. The guys\",\"A guy throws a golf ball with his back toward the table, lands it inside the cup, and leaves the room.\",The guys,gold,\"play the balls together, hitting each other through the open ground.\",head towards the entrance.,celebrate and give high fives.,throw darts at each other and dart from side to side.\n16233,anetv_m1pNOYN-DoI,1087,Two guys high five after one guy gets the golf ball into the plastic cup. Guys,Two guys high five after one guy gets the golf ball into the plastic cup.,Guys,gold,shows dynamite against the black team.,break a shot and walks around on the field.,point at the camera and laugh.,takes off his tumbles in the alley.\n16234,anetv_m1pNOYN-DoI,1086,Four guys are throwing golf balls across a table to hit plastic cups. Two guys high five after one guy,Four guys are throwing golf balls across a table to hit plastic cups.,Two guys high five after one guy,gold,kicks the chair over a chair.,gets the golf ball into the plastic cup.,goes cheerfully hitting the ball when the guy in it hits a goal.,hits a ball on the table with a big bat.\n16235,anetv_l12QfUhRLLc,8545,Stadium is shown with a lot of people in the audience sitting on stands watching a criquet game. men,Stadium is shown with a lot of people in the audience sitting on stands watching a criquet game.,men,gold,are playing lacrosse on the field.,are being interviewed in the field.,are walking in a gym doing martial arts arts next to a man wearing green long safety gloves.,are holding a rope but doing a perfect routine on a rope.\n16236,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19894,\"20 more tentacles ripple out of the Lake! Again the creature grabs someone and pulls him to the lake, someone\",20 more tentacles ripple out of the Lake!,\"Again the creature grabs someone and pulls him to the lake, someone\",gold,is flung in the air as the fellowship battle the creature.,\"resting on his back, gesturing with his hands.\",edge a hollow pool forward.,knocks back his flat and backs away.\n16237,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19893,\"Someone severs the Tentacleholding someone, and pulls him to safety. someone hacks at the other Writhing Limbs. 20 more tentacles\",\"Someone severs the Tentacleholding someone, and pulls him to safety. someone hacks at the other Writhing Limbs.\",20 more tentacles,gold,ripple out of the lake!,\"fly through the water, knocking the wreck off of the car.\",fly from the walls as someone flicks someone moves forward.,move and fall over someone's bloody wrists.\n16238,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19897,\"With a shattering echo, the creature rips the doors away, creating a rock slide that crashes down the Cliff Face. A faint light\",\"With a shattering echo, the creature rips the doors away, creating a rock slide that crashes down the Cliff Face.\",A faint light,gold,pops out of his vision.,\"rises from someone's staff, throwing a creepy glow across the old wizards face.\",is on to the edge.,emerges from a shop.\n16239,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19889,\"Many dwarf Skeletons are strewn about, clearly the dead of some old battle. the rusting armor and shields are peppered with arrows and axes. The Fellowship\",\"Many dwarf Skeletons are strewn about, clearly the dead of some old battle. the rusting armor and shields are peppered with arrows and axes.\",The Fellowship,gold,transforms into a battle.,\"draw swords and back away, towards the entrance.\",notice the gun is left in the corner of the orb.,are centers themselves to fix monitors.\n16240,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19896,\"Retreating into the Moria Chamber as many Coiling arms seize the large doors. With a shattering echo, the creature\",Retreating into the Moria Chamber as many Coiling arms seize the large doors.,\"With a shattering echo, the creature\",gold,\"stands in place, frozen with blood and scorched frightening fly.\",halts its severed wings.,\"stops someone, smoking on tobacco.\",\"rips the doors away, creating a rock slide that crashes down the cliff face.\"\n16241,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19895,\"Again the creature grabs someone and pulls him to the lake, someone is flung in the air as the Fellowship battle the creature. Someone\",\"Again the creature grabs someone and pulls him to the lake, someone is flung in the air as the Fellowship battle the creature.\",Someone,gold,faster and races its way with every movement.,arrives up just under the stuns bridge.,hacks at a tentacle.,\"runs to the kids, only to find him.\"\n16242,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19892,A long sinuous Tentacle is wrapped around someone's ankle and is dragging him towards the lake. Someone,A long sinuous Tentacle is wrapped around someone's ankle and is dragging him towards the lake.,Someone,gold,cries out as people rush forward!,emerges from a forest field.,smiles as someone boards the bus and leaps on past the ss men.,lands in the stern.\n16243,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19891,Someone is suddenly pulled to the ground. A long sinuous Tentacle,Someone is suddenly pulled to the ground.,A long sinuous Tentacle,gold,is wrapped around someone's ankle and is dragging him towards the lake.,appears boasting balmoral's ruined walls.,form the wheels of a partially swastika enclosure dotted with lines of footsteps and on a soars hurtling towards them.,\"appears from behind him, being a giant firework in which her head gurgles along the tunnel.\"\n16244,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60259,19890,\"The Fellowship draw swords and back away, towards the Entrance. Someone\",\"The Fellowship draw swords and back away, towards the Entrance.\",Someone,gold,strokes the pages of the diary as she walks in.,come downstairs and find someone lying in bed.,is suddenly pulled to the ground.,leans forward and kisses his shoulder.\n16245,anetv_KKEyKFmatq0,18081,People are playing a game of soccer in an indoor arena. A man,People are playing a game of soccer in an indoor arena.,A man,gold,stops on the wall near a group of men.,throws a ball which hits the ground trying to score the goal.,picks up the ball and throws it someone else.,stands in the middle of the court and begins to perform.\n16246,anetv_KKEyKFmatq0,18082,A man picks up the ball and throws it someone else. People,A man picks up the ball and throws it someone else.,People,gold,continues doing tricks with the bull.,fall onto the arena floor.,are inside a stand of a church.,shake hand with soldiers as they walk away.\n16247,anetv_baktSTMnMv4,9584,A bunch of billiards players and shots are shown. The shots,A bunch of billiards players and shots are shown.,The shots,gold,are shown of several people winning the game and followed by them playing a game.,are shown of the olympic referees in the gym.,are trick shots in the second half of the video.,take brief and progress a well in slow motion.\n16248,anetv_zxm4KYn7r8c,14997,A man is seen speaking to the camera in various clips as well as shooting a bow and arrow. The man,A man is seen speaking to the camera in various clips as well as shooting a bow and arrow.,The man,gold,is then seen helping the man more darts in slow motion.,turns show and shown into the camera shooting high targets in the distance.,spins and walks off while waving to the camera.,demonstrates several times how to properly shoot a bow in different locations while looking back to speak to the camera.\n16249,lsmdc3068_THE_BIG_YEAR-3249,10704,\"Someone's Day One tally shows 29. At the park, someone\",Someone's Day One tally shows 29.,\"At the park, someone\",gold,peers out from behind the sunlit hatch.,returns to his car.,seats down the steps to a railing at the base of the stairs.,mixes a bowl of cereal.\n16250,lsmdc3068_THE_BIG_YEAR-3249,10707,\"As his camera flashes, his Day One tally clicks from 30 to 31. Now, a view through binoculars\",\"As his camera flashes, his Day One tally clicks from 30 to 31.\",\"Now, a view through binoculars\",gold,keeps coming from the farmer library.,shows a flock of seagulls.,shows richard parker waking someone.,is trained she brushes past an equally large brick mask.\n16251,lsmdc3068_THE_BIG_YEAR-3249,10699,\"On a mountain, a man spies on a bird. The girl's father\",\"On a mountain, a man spies on a bird.\",The girl's father,gold,slips down her skirt.,sleeps on a massage table.,appears on the binoculars.,drops his head into his folded arms.\n16252,lsmdc3068_THE_BIG_YEAR-3249,10697,\"He hangs a handicap - parking pass on his rear view mirror, then jumps out of the car. He\",\"He hangs a handicap - parking pass on his rear view mirror, then jumps out of the car.\",He,gold,sticks his head back.,crouches to get his bearings.,lifts him from the edge and hops in.,races into the woods.\n16253,lsmdc3068_THE_BIG_YEAR-3249,10706,\"His eyes widen and he races back into the woods. As his camera flashes, his Day One tally\",His eyes widen and he races back into the woods.,\"As his camera flashes, his Day One tally\",gold,is stuck through the flatbed skids.,flies 30 at the pace.,peaks aggressively through into a truck.,clicks from 30 to 31.\n16254,lsmdc3068_THE_BIG_YEAR-3249,10701,\"Reaching a lake's edge, she spots a bird through his binoculars. Turning, he\",\"Reaching a lake's edge, she spots a bird through his binoculars.\",\"Turning, he\",gold,sees a massive birder snapping shots of his find.,\"trots down towards the top of the stream, shielding his eyes from him.\",spots the surfers aboard in the ocean.,sees a shadowy house sign.\n16255,lsmdc3068_THE_BIG_YEAR-3249,10700,\"The girl's father drops his head into his folded arms. Reaching a lake's edge, she\",The girl's father drops his head into his folded arms.,\"Reaching a lake's edge, she\",gold,ropes a stout flame.,spots a bird through his binoculars.,glances at the wire.,notices the copy of the photograph cross.\n16256,lsmdc3068_THE_BIG_YEAR-3249,10695,\"Now, four skiers stop on a slope. Someone and his son\",\"Now, four skiers stop on a slope.\",Someone and his son,gold,stroll onto the inflatable bridge.,take off down the mountainside.,ski on the beach.,\"ride away, heading farther into the house.\"\n16257,lsmdc3068_THE_BIG_YEAR-3249,10702,\"Turning, he sees a massive birder snapping shots of his find. Swerving off to the side, someone\",\"Turning, he sees a massive birder snapping shots of his find.\",\"Swerving off to the side, someone\",gold,finds someone visibly sarcastic and kind.,gets to his feet.,skids to a stop.,catches up to him.\n16258,lsmdc3068_THE_BIG_YEAR-3249,10696,\"Someone and his son take off down the mountainside. Meanwhile, someone\",Someone and his son take off down the mountainside.,\"Meanwhile, someone\",gold,vomits on a towel.,explores a ship's main deck.,knocks the man down.,pulls into the state park.\n16259,lsmdc3068_THE_BIG_YEAR-3249,10708,\"Now, a view through binoculars shows a flock of seagulls. Standing at an office window, someone\",\"Now, a view through binoculars shows a flock of seagulls.\",\"Standing at an office window, someone\",gold,\"lifts his phone, then turns to someone.\",slings the white wine over his shoulder.,lowers the binoculars and sighs.,\"uses glasses, polishes a clear glass window.\"\n16260,lsmdc3068_THE_BIG_YEAR-3249,10709,\"His Day One tally clicks to one. Later, he\",His Day One tally clicks to one.,\"Later, he\",gold,sits at the dinner table with his father.,heads toward a brick house.,steps into a busy street.,holds a cell phone in his gloved hands.\n16261,lsmdc3068_THE_BIG_YEAR-3249,10705,\"At the park, someone returns to his car. His eyes widen and he\",\"At the park, someone returns to his car.\",His eyes widen and he,gold,races back into the woods.,glances off to a number.,stares down at the bag charts.,rides the car upside down.\n16262,lsmdc3068_THE_BIG_YEAR-3249,10698,\"He races into the woods. On a mountain, a man\",He races into the woods.,\"On a mountain, a man\",gold,spies on a bird.,sprays the branches on a cot.,shares a caged version with four others.,holds a plant against his temples.\n16263,anetv_MleVjHU-wI8,4242,The man takes a shot at the gift wrapping. The lady,The man takes a shot at the gift wrapping.,The lady,gold,finishes wrapping the gift.,throws the bills on the table.,shows off her rake.,presents the smaller cellophane.\n16264,anetv_MleVjHU-wI8,4240,The man opens the plastic bag. The lady gift,The man opens the plastic bag.,The lady gift,gold,a gift box and lifts the receiver.,pastries from a cabinet.,buttons and picks up the product.,wraps the box for the man.\n16265,anetv_MleVjHU-wI8,4243,\"The man folds an edge, and the lady tapes it. The man\",\"The man folds an edge, and the lady tapes it.\",The man,gold,leafs to a box media channel.,removes the lip from a hot iron while the rope's attached.,shows how to wax a new board.,presents the box to the camera and talks.\n16266,anetv_MleVjHU-wI8,4238,We see a white opening screen. We then,We see a white opening screen.,We then,gold,see people playing foosball in a kitchen.,see the closing screen.,see a man holding a pumpkin and finding a book about the floor.,see a man holding something wrapped in a plastic bag.\n16267,anetv_MleVjHU-wI8,4239,A woman joins the man. The man,A woman joins the man.,The man,gold,opens the plastic bag.,spins the net around.,appears on the stage talking.,clicks past the first one.\n16268,anetv_vPZf3F3bNAA,12564,\"The man runs down, throws the javelin, and walks back while his throw is shown again several times in slow motion. In the end he\",\"The man runs down, throws the javelin, and walks back while his throw is shown again several times in slow motion.\",In the end he,gold,throws the ball and throws it away.,sits in the same position.,throws the ball across the mat and lands perfectly in the sand.,is seen celebrating and running around the field.\n16269,anetv_vPZf3F3bNAA,12563,An athletic man steps up before a track while holding a javelin ad standing ready. The man,An athletic man steps up before a track while holding a javelin ad standing ready.,The man,gold,continues running around the track while others watch on the sides.,swings the ax in the air before putting it back in.,\"runs down, throws the javelin, and walks back while his throw is shown again several times in slow motion.\",jumps on his bike several times until he jumps off the side of the board.\n16270,lsmdc0016_O_Brother_Where_Art_Thou-55686,17039,\"In the black we hear snuffling, growing louder, closer, slobberier. We\",\"In the black we hear snuffling, growing louder, closer, slobberier.\",We,gold,zoom in two throughout.,are inside a cupboard.,tilt his face and lashed across him.,pass on the rope as deep as it passes overhead.\n16271,lsmdc0016_O_Brother_Where_Art_Thou-55686,17043,People are walking through the woods. They,People are walking through the woods.,They,gold,get a small snowball from trucks.,slide down a hill.,are in yellow bulbs.,emerge into a clearing.\n16272,lsmdc0016_O_Brother_Where_Art_Thou-55686,17044,The cabin stands before them. Two shotgun - wielding goons,The cabin stands before them.,Two shotgun - wielding goons,gold,wear boxing ones.,converge on some ice.,rush into an ugly position.,fall in behind the four men and push them forward.\n16273,lsmdc0016_O_Brother_Where_Art_Thou-55686,17045,Two shotgun - wielding goons fall in behind the four men and push them forward. Moving forward,Two shotgun - wielding goons fall in behind the four men and push them forward.,Moving forward,gold,\", someone follows someone flying away.\",\", someone unplugs the mustang's hood.\",\"painfully, someone averts her eyes.\",\"reveals, next to the oak tree, three fresh - dug graves.\"\n16274,lsmdc0016_O_Brother_Where_Art_Thou-55686,17038,\"As he passes he turns to call back over his shoulder. Someone, smiling,\",As he passes he turns to call back over his shoulder.,\"Someone, smiling,\",gold,gets out of his car and heads over to the oncoming car.,takes a phone call.,turns and sprints towards him as a low sun hangs over a tree.,shakes his head as he watches him go.\n16275,lsmdc0016_O_Brother_Where_Art_Thou-55686,17036,\"A crowd carrying torches jogs behind a man in clanking leg irons and wrist manacles who is being escorted by four policemen trotting alongside, their nightsticks held across their chests in riot - ready formation. Someone and the rest of the Soggy Bottom Boys\",\"A crowd carrying torches jogs behind a man in clanking leg irons and wrist manacles who is being escorted by four policemen trotting alongside, their nightsticks held across their chests in riot - ready formation.\",Someone and the rest of the Soggy Bottom Boys,gold,jump from the platform.,descend the last couple of steps to meet the oncoming criminal.,are knocked down in front of someone.,take their place atop the restaurant table.\n16276,lsmdc0016_O_Brother_Where_Art_Thou-55686,17046,\"Moving forward reveals, next to the oak tree, three fresh - dug graves. The goons\",\"Moving forward reveals, next to the oak tree, three fresh - dug graves.\",The goons,gold,and their buildings look similar and isolated.,hustle out their community stadium.,leave their lobster's camp.,are shoving them toward the tree.\n16277,lsmdc0016_O_Brother_Where_Art_Thou-55686,17041,Its door is being nosed open by an eagerly sniffing snout. As the door swings wide the inside of the cupboard,Its door is being nosed open by an eagerly sniffing snout.,As the door swings wide the inside of the cupboard,gold,gets into the armchair with the smell on it.,is washed with light.,are turned out.,\"are empty, some depth is able to move the tears and the letters have gone in effect.\"\n16278,lsmdc0016_O_Brother_Where_Art_Thou-55686,17037,\"It is indeed someone, grinning and game despite his heavy restraints. As he passes he turns\",\"It is indeed someone, grinning and game despite his heavy restraints.\",As he passes he turns,gold,to someone and he stiffens herself.,to someone through fading thoughtful.,to the teller door and sits up.,to call back over his shoulder.\n16279,lsmdc0016_O_Brother_Where_Art_Thou-55686,17040,We are inside a cupboard. Its door,We are inside a cupboard.,Its door,gold,reflects a whiskey shot.,is being nosed open by an eagerly sniffing snout.,of the missile is the crack open.,\"drops shut, crossed in the covers.\"\n16280,lsmdc0016_O_Brother_Where_Art_Thou-55686,17042,As the door swings wide the inside of the cupboard is washed with light. People,As the door swings wide the inside of the cupboard is washed with light.,People,gold,struts up the driveway and through the window of the house.,are walking through the woods.,are asleep on turns.,\"flops into someone's bed, leaving him in place.\"\n16281,lsmdc3055_PROMETHEUS-26728,12081,Someone stares grimly at someone. Someone,Someone stares grimly at someone.,Someone,gold,punches someone and glances at someone.,hands the grail diary to someone.,glares at the scene and takes a bite.,smiles up at him.\n16282,anetv_RAaRFD5M8h4,14132,The person then holds up the dogs face and begins trimming around it's eyes. The person,The person then holds up the dogs face and begins trimming around it's eyes.,The person,gold,continues cutting and ends with people pushing the paws all around the body.,continues shaving and ends by combing it's face.,continues moving his claws while looking very apprehensive from the camera.,is then seen riding to the camera and leads into clips of his children walking around.\n16283,anetv_RAaRFD5M8h4,14131,A close up of a dog is seen with a person holding a razor. The person then,A close up of a dog is seen with a person holding a razor.,The person then,gold,holds up the dogs face and begins trimming around it's eyes.,places a rag onto the table and trims the nails.,begins spraying the base of the dog.,combs the hair and ends with a woman waving at the camera.\n16284,anetv_nmUJ2GfVkKY,13575,The man smiles and paces after the long jump as a British flag waves in the background and a template of his score goes across the screen along with slow motion re - inactments. The man,The man smiles and paces after the long jump as a British flag waves in the background and a template of his score goes across the screen along with slow motion re - inactments.,The man,gold,moves back over and does several stunts.,uncaps his player again.,presenting the same triangle to the view and works the tool.,takes his shoes off while sitting on a bench.\n16285,anetv_nmUJ2GfVkKY,13573,An athlete performs a long jump at a professional sports event as onlookers watch and clap. A man in an athletic outfit and a paper number,An athlete performs a long jump at a professional sports event as onlookers watch and clap.,A man in an athletic outfit and a paper number,gold,pinned to his chest paces on a sports field.,fighting on a demonstrating event.,shows how to throw on badminton springs.,walks onto the parallel platform.\n16286,anetv_nmUJ2GfVkKY,13574,A man in an athletic outfit and a paper number pinned to his chest paces on a sports field. The man,A man in an athletic outfit and a paper number pinned to his chest paces on a sports field.,The man,gold,takes a shot in another glove and takes a shot.,stops playing and talks to the camera about how to perform bagpipes move stand.,runs a distance and performs a long jump.,brushes quickly and hits his body twice.\n16287,lsmdc0016_O_Brother_Where_Art_Thou-55715,6945,Someone bows his head to silently pray. Someone,Someone bows his head to silently pray.,Someone,gold,takes the drag of his hand.,mimes the seamen with a sigh.,glances around at the crowd that now him.,bows his head as well.\n16288,anetv_y0Kio7VOk5o,1110,A young woman is seen walking forward on a board. She,A young woman is seen walking forward on a board.,She,gold,begins riding around on the equipment aiming a gun.,walks to the end and raises her hands up in the air.,flips more darts as well as several others afterwards doing more flips and ends into a bow to the camera.,follows and lifts the bar over her head and head backwards to face the camera while looking for the camera.\n16289,anetv_y0Kio7VOk5o,1111,She walks to the end and raises her hands up in the air. She,She walks to the end and raises her hands up in the air.,She,gold,is angry at him as he demonstrates how to use his knife.,is speaking to the camera and close up behind her.,dives off the side and rises to the surface swimming to the end of the pool.,\"does this several more times, but she then throws a shot put.\"\n16290,anetv_y0Kio7VOk5o,10532,A high board is shown as girls walk up to the diving portion. They,A high board is shown as girls walk up to the diving portion.,They,gold,see the ending title screen.,are shown underwater doing a very high dive.,\"place their arms in the air, then dive into the pool below before getting out.\",are on the promenade in the water.\n16291,anetv_I4kjOE8HnU0,2201,An athlete are shown performing long jumps on a track. There,An athlete are shown performing long jumps on a track.,There,gold,\"is also a relay race shown on the video, as well.\",is shown in slow motion and he falls off and lands on the ground.,are running in slow motion as a crowd throws a javelin and the athlete returns to the track.,are led to people watching from the sides and doing aerobic exercises.\n16292,anetv_I4kjOE8HnU0,2204,The long jumper is shown in Paris where they also perform several long jumps. He,The long jumper is shown in Paris where they also perform several long jumps.,He,gold,watches the television act.,turns and walks forward and lands on a landing and the other.,is shown training and practicing as well as getting caught in the rain.,perform exercises while walking to the stilts and putting in the middle part of the seal.\n16293,anetv_I4kjOE8HnU0,2200,An introduction comes onto the screen for a video about a track and field. An athlete,An introduction comes onto the screen for a video about a track and field.,An athlete,gold,runs off and lands on a mat.,falls off the skateboard.,practices soccer and throws the disc on the field.,are shown performing long jumps on a track.\n16294,anetv_I4kjOE8HnU0,2202,\"There is also a relay race shown on the video, as well. The boys\",\"There is also a relay race shown on the video, as well.\",The boys,gold,play a game of hockey together and hold their bats.,are shown standing together talking and having fun.,and the gorilla ride on the machines at an older girl.,\"have field balls, and they try to win the goal with them, and continue to shoot.\"\n16295,anetv_I4kjOE8HnU0,2203,The boys are shown standing together talking and having fun. The long jumper,The boys are shown standing together talking and having fun.,The long jumper,gold,is shown in paris where they also perform several long jumps.,is overlaid by the screens.,sets up roller base.,instructs someone made in the pool.\n16296,lsmdc3059_SALT-29134,11197,They shove her in and then one wraps a blanket around her shoulders. She,They shove her in and then one wraps a blanket around her shoulders.,She,gold,stares down at her cheeks as she studies him in the eye mirror.,\"blinks a moment, then walks away and dons her arm.\",finds someone seated across from her.,touches him like a kiss.\n16297,anetv_FPv0qnoQbq0,10445,A person is seen sitting on a horse behind a gate surrounded by people. The man then,A person is seen sitting on a horse behind a gate surrounded by people.,The man then,gold,move to the ground while holding up signs while still speaking to the camera.,begins using frisbees for dog.,grabs a pair of scissors and begins moving the dog around the area.,rides in on a horse and roping the calf up.\n16298,anetv_FPv0qnoQbq0,2095,The man rides in and rope up a calf. He,The man rides in and rope up a calf.,He,gold,ties the calf and walks back on the horse.,attempts to rope up and ties up the calf.,ropes the calf and takes down the rope.,takes off his jacket and ride off.\n16299,anetv_FPv0qnoQbq0,10446,The man then rides in on a horse and roping the calf up. He,The man then rides in on a horse and roping the calf up.,He,gold,continues by holding the calf with the horse and walking back to the stage.,pats around and around and sings with another woman standing in the background.,ties the animal up and climbs back on the horse.,watches on as the boy rides the horse up and down while the others watch around.\n16300,anetv_FPv0qnoQbq0,2094,A man is seen sitting on a horse while others stand around. The man,A man is seen sitting on a horse while others stand around.,The man,gold,rides in and rope up a calf.,finishes mops while still looking to the camera.,continues to perform some tricks with the hammer.,goes closer to her as still works on her.\n16301,lsmdc1035_The_Adjustment_Bureau-85880,4958,\"The adjustment officer blinks his disapproving eyes. Meanwhile at Cedar Lake, dancers\",The adjustment officer blinks his disapproving eyes.,\"Meanwhile at Cedar Lake, dancers\",gold,hurry to the finish line.,\"perform on one section of a low, l - shaped stage.\",arrive at someone's elevator at the bottom of the bridge hall.,are unconvinced by curling activity.\n16302,lsmdc1035_The_Adjustment_Bureau-85880,4964,\"As she hunches forward, a group of dancers gathered behind her lifts her into the air. Someone\",\"As she hunches forward, a group of dancers gathered behind her lifts her into the air.\",Someone,gold,\"spins a ball to her balance and throws herself onto someone's chest, and takes a stance.\",\"watches her with a mesmerized expression, as someone wraps her arms around a male dancer's necks and he lifts her.\",\"clutches his side, smiling.\",follows him the way she came the stairs.\n16303,lsmdc1035_The_Adjustment_Bureau-85880,4967,\"The dancer sets her down, then lifts her by the waist. Two others\",\"The dancer sets her down, then lifts her by the waist.\",Two others,gold,pick up the entire sphere vent.,\"join him, taking someone's hands as the center dancer lowers her, then raises her again.\",\"descend at the rising soldier, then closes.\",walk in a circle in their room.\n16304,lsmdc1035_The_Adjustment_Bureau-85880,4969,\"Turning, someone glares at him. Someone\",\"Turning, someone glares at him.\",Someone,gold,takes the glass and looks after him.,walks back to the window.,holds someone's broomstick behind his head.,gives him a sidelong look.\n16305,lsmdc1035_The_Adjustment_Bureau-85880,4965,\"Someone watches her with a mesmerized expression, as someone wraps her arms around a male dancer's necks and he lifts her. As they rotate together, someone\",\"Someone watches her with a mesmerized expression, as someone wraps her arms around a male dancer's necks and he lifts her.\",\"As they rotate together, someone\",gold,slides one of his legs and twirls her until she notices a swollen bruise.,\"lifts him against the wall, missing the edge's edge.\",spreads her legs gracefully.,\"keeps her gaze from them, then heads out.\"\n16306,lsmdc1035_The_Adjustment_Bureau-85880,4966,\"As they rotate together, someone spreads her legs gracefully. The dancer\",\"As they rotate together, someone spreads her legs gracefully.\",The dancer,gold,hands him a plumed hat.,\"sets her down, then lifts her by the waist.\",places her palms on the sink.,steps up onto a belly dancer.\n16307,lsmdc1035_The_Adjustment_Bureau-85880,4957,He shifts his gaze to a bay door and it begins to rise. The adjustment officer,He shifts his gaze to a bay door and it begins to rise.,The adjustment officer,gold,gets out of the carriage and drives off.,directs the bartender to the control panel.,blinks his disapproving eyes.,pulls the door shut off the campaign diner.\n16308,lsmdc1035_The_Adjustment_Bureau-85880,4968,\"Two others join him, taking someone's hands as the center dancer lowers her, then raises her again. Someone\",\"Two others join him, taking someone's hands as the center dancer lowers her, then raises her again.\",Someone,gold,\"goes back to the living room, then lifts the teacher's hand.\",accost them at a competition.,steps up behind someone.,gives a surprised look and gestures to his pocket.\n16309,lsmdc1035_The_Adjustment_Bureau-85880,4963,He joins a group of patrons who stand near a tiered section of stage. Someone,He joins a group of patrons who stand near a tiered section of stage.,Someone,gold,\"sits on the top platform, her feet resting on a bench below it.\",stands in the doorway.,\"looks back at someone, who sits at the bar.\",lies down in front of herself.\n16310,lsmdc1035_The_Adjustment_Bureau-85880,4961,The taxi slows in front of Cedar Lake. Now someone,The taxi slows in front of Cedar Lake.,Now someone,gold,drives through a suburban garage with her high and distant banks.,enters the dance studio.,drives his motorcycle into new - style clothes.,plays on tv outside the hotel.\n16311,lsmdc1035_The_Adjustment_Bureau-85880,4970,Someone gives him a sidelong look. Someone's eyes,Someone gives him a sidelong look.,Someone's eyes,gold,dart over the card.,move as he says.,move in searching his face with his teeth.,remain on the dancers.\n16312,lsmdc1035_The_Adjustment_Bureau-85880,4959,\"Meanwhile at Cedar Lake, dancers perform on one section of a low, L - shaped stage. As they twirl gracefully, male dancers\",\"Meanwhile at Cedar Lake, dancers perform on one section of a low, L - shaped stage.\",\"As they twirl gracefully, male dancers\",gold,suffering very quietly zumba movements as they spin the dance.,footbridge their partners then share extravagantly silent sounds.,\"leap across the other section, then drop to their knees and spin.\",whisks their way down the stage into the middle of the dance floor several feet from her and twirling their hips.\n16313,lsmdc1035_The_Adjustment_Bureau-85880,4960,\"Someone rides in the back of a cab, his eyes shifting to his window as the city's glimmering lights glide past. The taxi\",\"Someone rides in the back of a cab, his eyes shifting to his window as the city's glimmering lights glide past.\",The taxi,gold,\"is speeding down the street alley, bumping into someone with his intense alarm.\",slows in front of cedar lake.,pulls up to a landing.,pulls across across a driveway in the distance of children.\n16314,lsmdc1035_The_Adjustment_Bureau-85880,4962,Now someone enters the dance studio. He,Now someone enters the dance studio.,He,gold,joins a group of patrons who stand near a tiered section of stage.,puts dark glasses in his mouth.,springs off the bars and smiles.,glances at the band in suits and ties up a pair of pants.\n16315,anetv_7RESODKApso,15783,He speaks and gestures to the camera. He,He speaks and gestures to the camera.,He,gold,sets down his drink and picks up a fishing rod pulling a tiny fish out of the hole.,walks up and out.,\"moves and shows his brush, and then shows how it works.\",pauses to speak and begins to clean it.\n16316,anetv_7RESODKApso,7151,A man sitting on a bucket by some snow drinks a beer. He,A man sitting on a bucket by some snow drinks a beer.,He,gold,continues to stride along the road.,speaks to the camera.,\"women talk, talk on a table next to the man.\",pours some of the ice clean.\n16317,anetv_7RESODKApso,15782,A man drinks from a can next to a hole in the snow. He,A man drinks from a can next to a hole in the snow.,He,gold,is holding a dog in his hand.,throws something onto a piece of the board.,speaks and gestures to the camera.,starts going down the hill.\n16318,anetv_7RESODKApso,7153,He puts down his beer and grabs a fishing pole and begins to fish. He,He puts down his beer and grabs a fishing pole and begins to fish.,He,gold,holds the fishing pole string.,gets the fish out of a fish tank.,takes out the fishing line and tucks them in the fish.,rams into the fish tank.\n16319,anetv_7RESODKApso,7152,He speaks to the camera. He,He speaks to the camera.,He,gold,puts down his beer and grabs a fishing pole and begins to fish.,opens his cigarettes cigarette and shakes it with both hands.,works down on the machine.,\"stands, looking into the mirror.\"\n16320,lsmdc0019_Pulp_Fiction-56604,15591,\"People take in the place, with their hands in their pockets. Someone\",\"People take in the place, with their hands in their pockets.\",Someone,gold,is the one who does the talking.,sips his beer as someone goes.,gives a thumbs up to the two men.,falls asleep in the taxi.\n16321,anetv_NBawYEfglow,3281,The man finishes playing violin and starts talking. He,The man finishes playing violin and starts talking.,He,gold,strides up to him and knocks him over.,walks away and talks to another man.,points to the bed as he talks about it.,stops playing the saxophone and hands it to him.\n16322,anetv_NBawYEfglow,3280,People dance in the room. The man,People dance in the room.,The man,gold,plays stage and leaves.,kneels down on the floor.,finishes playing violin and starts talking.,releases the hammer but does n't break.\n16323,anetv_NBawYEfglow,3278,A man in a blue suit dances in the room. The man,A man in a blue suit dances in the room.,The man,gold,is playing the piano.,tries to roll the cup.,continues playing the violin.,in white hat is seated behind him.\n16324,anetv_NBawYEfglow,322,The crowd dances sarcastically to his music. He,The crowd dances sarcastically to his music.,He,gold,leaves the stage in frustration.,guests till the guitarist arrives.,gloomily enters the crowd as the man watches on tv.,\"knocks him to the floor, then swings up his arms.\"\n16325,anetv_NBawYEfglow,3279,The man continues playing the violin. People,The man continues playing the violin.,People,gold,are shown preparing to play instruments.,continue to play as more others watch on the sidelines.,continue walking around the room.,dance in the room.\n16326,anetv_NBawYEfglow,3277,A woman in a green dress smokes and holds her ears. A man in a blue suit,A woman in a green dress smokes and holds her ears.,A man in a blue suit,gold,talks about the advanced song.,tries to bring it out.,is throwing the box around.,dances in the room.\n16327,anetv_NBawYEfglow,3276,Two men in suits cheer. A woman in a green dress,Two men in suits cheer.,A woman in a green dress,gold,smokes and holds her ears.,throws a basketball at a wedding.,mounts a hammer ornamental steel ball.,starts playing with some ball.\n16328,anetv_sf2zGT5nN04,5584,A man is shown talking on a stage. He,A man is shown talking on a stage.,He,gold,turns then jumps off of a diving board.,is performing a routine with his skateboard.,is mixing several ingredients into bowls.,demonstrates how to do a wooden devil dancing back and forth.\n16329,anetv_sf2zGT5nN04,5814,Various ingredients are shown laid out in bowls and switches between a man talking and mixing ingredients. The pan,Various ingredients are shown laid out in bowls and switches between a man talking and mixing ingredients.,The pan,gold,puts oil in a hot pan and pours the ingredients into the pan while continuously stirring and speaking to the camera.,is shown in the end and showing more ingredients that you have tortured and the finished cooked pasta.,boils in a pot and shows some greenish lemons melting a water mixture.,\"is then cut, creating a tomato hand and a rod.\"\n16330,anetv_sf2zGT5nN04,5815,The pan puts oil in a hot pan and pours the ingredients into the pan while continuously stirring and speaking to the camera. In the end he,The pan puts oil in a hot pan and pours the ingredients into the pan while continuously stirring and speaking to the camera.,In the end he,gold,begins to walk around on the end of the room in more clips and shows how he can cook them.,pours all the food out and presents it on a plate.,\"puts another into a bowl and leans on the table, holding it out.\",eats a plate with blanketed vegetables and places them to another pot.\n16331,anetv_sf2zGT5nN04,5585,He is mixing several ingredients into bowls. He,He is mixing several ingredients into bowls.,He,gold,is using cucumber slices and scissor to head with them.,demonstrates how to make a salad for the audience.,lifts up strawberries and puts them into an oven.,begins mixing the ingredients together into the pan and mixing everything together into a bowl.\n16332,anetv_WDbG2_sDHow,19528,\"A young male is standing on a diving board and does multiple tucked in twist into the pool. After the dive is complete, he\",A young male is standing on a diving board and does multiple tucked in twist into the pool.,\"After the dive is complete, he\",gold,chases it off of the diving board and lands on a sparkling mat.,walks out of the room with a towel and begins smiling and walking.,begins to flip his board and making a flip.,throws the ax one up and lands on the mat in an indoor pool.\n16333,anetv_WDbG2_sDHow,16979,The jump of the swimmer is showed again. The man,The jump of the swimmer is showed again.,The man,gold,get off the weight of the rocks.,clutches the belly upside down.,grabs the darts and swims forward with his foot and knock his cue around while kicks.,walks drying his body.\n16334,lsmdc0041_The_Sixth_Sense-67655,14744,Someone lowers his hands surprised. Someone,Someone lowers his hands surprised.,Someone,gold,smiles confidently and moves around.,rises and flicks his hand in the night.,puts his fingers to his temple.,sits on the beach and stares up at the sky.\n16335,lsmdc0041_The_Sixth_Sense-67655,14742,Someone is wearing a large silver watch. It,Someone is wearing a large silver watch.,It,gold,swims on his thin wrist.,flies in the water.,looks at the drunken men with their wands as she walks sideways and looks away.,is wearing blue t gloves.\n16336,lsmdc0041_The_Sixth_Sense-67655,14743,Someone takes a step back. Someone,Someone takes a step back.,Someone,gold,stops and turns toward the shoulder.,\"glances at her driver, then turns away.\",lowers his hands surprised.,leans out to the child and wraps his arms around his ears.\n16337,lsmdc0041_The_Sixth_Sense-67655,14741,Someone looks to someone's arm. Someone,Someone looks to someone's arm.,Someone,gold,is wearing a large silver watch.,\"stands there, watching someone.\",\"knocks him off the bed, then starts off.\",finds someone smiling to himself.\n16338,anetv_k0w1lMRoqYk,16560,A young girl is seen talking to the camera and leads into her browsing the internet then raking up leads in a yard. The girl,A young girl is seen talking to the camera and leads into her browsing the internet then raking up leads in a yard.,The girl,gold,is then seen sitting in the leaves and transitions into speaking with her mother in the kitchen.,grabs some supplies and presents it to the machine.,counts down some more of another girl on the stadium and then in a kitchen and hair gel and other objects back.,begins braiding the hair and ends by her speaking to the camera and rubbing all along the fence while speaking to the camera.\n16339,anetv_JQf_oSGY8q4,17369,There's a woman dressed in black playing billiards in front of some spectators. After she's done another lady,There's a woman dressed in black playing billiards in front of some spectators.,After she's done another lady,gold,walks up to them and begins them dancing.,is walking in a stage with her hands on the hips.,takes her turn and hits a few shots.,with red hair goes to the camera and begins hula hooping.\n16340,anetv_JQf_oSGY8q4,17371,The second contestant aims and shoots the ball in the hole. She,The second contestant aims and shoots the ball in the hole.,She,gold,throws darts between their teammates.,repeats 10 times twice.,turns the pole and makes a final shot on the player.,\"aims precisely and shoots the balls in the holes one by one, without missing a single shot.\"\n16341,anetv_JQf_oSGY8q4,17370,After she's done another lady takes her turn and hits a few shots. The second contestant,After she's done another lady takes her turn and hits a few shots.,The second contestant,gold,jumps and does cartwheels and a flip and are but before the never calms down.,stops to get up for she does.,aims and shoots the ball in the hole.,performs a running throw on the different team.\n16342,anetv_JQf_oSGY8q4,17372,\"She aims precisely and shoots the balls in the holes one by one, without missing a single shot. She\",\"She aims precisely and shoots the balls in the holes one by one, without missing a single shot.\",She,gold,creates a series of images from each detail.,smiles and shoots the men in.,continues to concentrate and shoots the balls till only one ball is left on the billiards table.,wrestles the attacker with her outstretched hand and her arm flails.\n16343,anetv_QOMvNgo6CQ4,16509,He is brushing and polishing the man's shoe for him. He,He is brushing and polishing the man's shoe for him.,He,gold,then gets up and puts the finished tee on it.,\"continues brushing and polishing, intent on his work.\",looks at a illustration over a boy using a construction.,picks up his shirt and puts it over his head.\n16344,anetv_QOMvNgo6CQ4,12044,The boy begins shining down the shoes of the man. The boy,The boy begins shining down the shoes of the man.,The boy,gold,\"turns his face and says, then studies the shoes.\",twists his shoes all around.,cuts off the black shoe.,continues cleaning off the shoes.\n16345,anetv_QOMvNgo6CQ4,16508,A small boy is kneeling at a man's foot. He,A small boy is kneeling at a man's foot.,He,gold,bends next to other monkey bars sitting back down.,bends down to hold the sling to the left side.,is brushing and polishing the man's shoe for him.,picks it up and starts punching the punching bag.\n16346,lsmdc1004_Juno-6616,326,\"Someone's attempted conversation is met with a baffled look. Then, he and both women\",Someone's attempted conversation is met with a baffled look.,\"Then, he and both women\",gold,look up towards the sound drifting down from the floor above.,just remain out to wave over the cabin as someone comes in.,\"sit on their shoulders, facing each other.\",look at someone that some of them remain listening.\n16347,anetv_Wg0xG-eRTho,15682,\"On the upper right hand of the screen a small video plays and shows a veet product while the girl takes two veet wax strips and puts them on her leg, then removes them in the order they were put on. The girl then\",\"On the upper right hand of the screen a small video plays and shows a veet product while the girl takes two veet wax strips and puts them on her leg, then removes them in the order they were put on.\",The girl then,gold,finishes a hop scotch routine and jumps in where her feet are seen in the air.,appears a towel in front of them and places the injury of the girl on her arm.,moves over the pointing back and then over the entire panel and slides it around the top top of the box.,\"takes another veet product which turns out to be wiping strips and wipes her legs down, then takes a towel to her legs.\"\n16348,anetv_Wg0xG-eRTho,15681,A standing pair of legs appear and the words Summer Leg Routine are displayed on the screen. The legs are now bent with the knee up from the ground and the girl,A standing pair of legs appear and the words Summer Leg Routine are displayed on the screen.,The legs are now bent with the knee up from the ground and the girl,gold,teaches the girl to make make up.,\"removes the tattoo back in its chin, demonstrating an practices with a continues to use that the boy is rowing out of stage correctly\",\"rubs the mango scrub all over her legs, then wipes the excess off with a towel.\",demonstrating how to play the shoes is making a tattoo of big on the channel once another game is done.\n16349,anetv_I6IfZiNmlWA,18946,A player takes a shot at the net. The shot misses and the ball,A player takes a shot at the net.,The shot misses and the ball,gold,returns to the lady's teammate.,is thrown back with it.,hits the ball and explodes.,is in play down the field.\n16350,anetv_I6IfZiNmlWA,16070,People in the audience are watching. A person,People in the audience are watching.,A person,gold,is standing next to them.,is performing in a crowd of spectators.,is claps and drums to his side.,is standing on the sideline watching.\n16351,anetv_I6IfZiNmlWA,18945,Video of a lacrosse game taken from the stands is shown. A player,Video of a lacrosse game taken from the stands is shown.,A player,gold,takes a shot at the net.,walks up and picks up his phone.,talks after talking about the game.,makes a goal with a goalie and scores multiple goals.\n16352,anetv_WUOiJOqrHlI,12912,More clips are shown of the actors playing with one another and a man showing the footage on a computer while speaking to the camera. Tom Hanks,More clips are shown of the actors playing with one another and a man showing the footage on a computer while speaking to the camera.,Tom Hanks,gold,footage shows more clips of several people sitting together talking at the end of the video.,report credits are shown.,is shown and leads into pictures of people curling the game as well as speaking to the camera.,is interviewed several times about the event and then sits down in the end while playing.\n16353,anetv_WUOiJOqrHlI,12911,A shot of the movie Forest Gump is shown with the man playing ping pong in several shots and him laughing in the end. More clips,A shot of the movie Forest Gump is shown with the man playing ping pong in several shots and him laughing in the end.,More clips,gold,are shown of people hitting tennis balls along the ice while other people cheer for the man.,are shown of the actors playing with one another and a man showing the footage on a computer while speaking to the camera.,are shown of people jumping up and over their necks and encouraging them to continue fighting.,are shown of people playing volleyball while the camera captures the win and focuses on the game.\n16354,anetv_PuylbPlzbH0,2221,We then see a man playing a piano. The camera,We then see a man playing a piano.,The camera,gold,pans and fades to black as people walk from the tree.,sits down and shows a man playing a violin.,cuts to a large cashier wearing a pair of headphones.,moves around the man's back.\n16355,anetv_PuylbPlzbH0,2223,The crowd then claps for the man. The man then,The crowd then claps for the man.,The man then,gold,enjoys the crowd and wash the man while also speaking.,looks up and speaks.,changes his hair with a bow at the end.,dismounts to his left with the pole.\n16356,anetv_PuylbPlzbH0,2220,We see people holding their phones up to record. We then,We see people holding their phones up to record.,We then,gold,see the cups being played.,see the ending screens.,see a title screen.,see a man playing a piano.\n16357,anetv_PuylbPlzbH0,2222,The camera moves around the man's back. The crowd then,The camera moves around the man's back.,The crowd then,gold,claps for the man.,continues to talk to a man in another room.,begins moving along the yard.,pulls the sticks down forward.\n16358,anetv_BrgYIg6UXhU,18948,The man then picks up a snow brush and ice scraper and begins to brush the snow from the car. The man in the blue jacket,The man then picks up a snow brush and ice scraper and begins to brush the snow from the car.,The man in the blue jacket,gold,says hello to a neighbor and continues cleaning the car.,puts the man's goggles off and walks around.,\"waits taped the window, then proceeds across it to remove cars.\",shows us a blue shirt and uses roller to cut the clean side of the board.\n16359,anetv_BrgYIg6UXhU,10281,The person climbs in the car for a moment then climbs back out to clean off his car. He,The person climbs in the car for a moment then climbs back out to clean off his car.,He,gold,uses the scraper all along the car and ends by putting it in the back and turning off the camera.,continues to speak to the camera as the man gets up from the bike and begins running down the driveway.,gets out of the car and goes over to the car.,the boy is right broadside.\n16360,anetv_BrgYIg6UXhU,18949,The man in the blue jacket says hello to a neighbor and continues cleaning the car. The man,The man in the blue jacket says hello to a neighbor and continues cleaning the car.,The man,gold,continues to wash up off the car.,trims his brush again.,begins to brush the horse and cleans the area with a mirror.,continues to scrape the ice and brush the snow from the windshields and body of the car.\n16361,anetv_BrgYIg6UXhU,18947,A man wearing a blue jacket approaches a blue car. The man then,A man wearing a blue jacket approaches a blue car.,The man then,gold,lifts for the chain.,scrapes and pumps snow out of his hand.,peels off a ski mask.,picks up a snow brush and ice scraper and begins to brush the snow from the car.\n16362,anetv_BrgYIg6UXhU,10280,A close up of a car is seen following by a person walking into frame. The person,A close up of a car is seen following by a person walking into frame.,The person,gold,sets the iron down beside the car and speaks to the camera.,shakes the boat and end by jumping off between the boat.,puts shoes on a building and begins performing tricks with the person.,climbs in the car for a moment then climbs back out to clean off his car.\n16363,anetv_Nn9qwOB-g34,2780,The audience cheers and the same shot is shown again several times and the player walking away. Many more shots of goals,The audience cheers and the same shot is shown again several times and the player walking away.,Many more shots of goals,gold,are shown in slow motion as they drive across the waves.,are shown as well as people spinning around the field.,are shown as well as more people playing soccer and shooting discs and others celebrating.,are shown during the game followed by the same shot shown again in slow motion.\n16364,anetv_H3pQJc8d8H8,1025,Three men in white are doing karate moves in a room. They,Three men in white are doing karate moves in a room.,They,gold,are using your hands to face the bull.,do a few kicks in the air.,begin to do baskets and get over the bar.,lift their flags up in the air.\n16365,anetv_H3pQJc8d8H8,1026,They do a few kicks in the air. Two of the men,They do a few kicks in the air.,Two of the men,gold,were inside the bank.,start fighting each other.,begin to jump up and fall in the crowd.,throw the ball off each other.\n16366,anetv_e-Z9xiEQqPQ,7405,A horse trainer talks near a forested area. The man in a jersey,A horse trainer talks near a forested area.,The man in a jersey,gold,walks up and picks up the bell.,practices a close up of a chair.,stops on the horse as he approaches the funeral procession.,\"hits his boots, but is kicked and released.\"\n16367,anetv_e-Z9xiEQqPQ,7404,A journalist rides with a man in football jersey along a sidewalk. A horse trainer,A journalist rides with a man in football jersey along a sidewalk.,A horse trainer,gold,talks near a forested area.,is listening to his kayak.,is dropped in the grass with a man dressed his boots.,splits through a pair of sewerage care.\n16368,anetv_e-Z9xiEQqPQ,7400,A military procession carries a coffin and goes through a funeral ceremony. A news anchor,A military procession carries a coffin and goes through a funeral ceremony.,A news anchor,gold,talks in a newsroom.,presents another young group.,stands at a bar in the locker room.,shows someone with his gun hidden behind him in the hangar.\n16369,anetv_e-Z9xiEQqPQ,7401,A coffin and is carried by a wagon along with military personell. A military man,A coffin and is carried by a wagon along with military personell.,A military man,gold,presents a flag to a guest.,holding a long pole.,is standing a cattle behind a bundle of metal.,\"escorts the group into a hospital, holding a bucket.\"\n16370,anetv_e-Z9xiEQqPQ,7402,A military man presents a flag to a guest. A man with a prosthetic leg and a woman,A military man presents a flag to a guest.,A man with a prosthetic leg and a woman,gold,kneels in front of him and sets a new belt on a position.,taps on the side of her.,pick up a large weight and pull on it.,ride horses with trainers with a trainer alongside.\n16371,anetv_e-Z9xiEQqPQ,7403,A man with a prosthetic leg and a woman ride horses with trainers with a trainer alongside. A journalist,A man with a prosthetic leg and a woman ride horses with trainers with a trainer alongside.,A journalist,gold,moves himself up of the side of the recumbent jet to greet people.,steps across the rooftop and starts running for a jump before getting ready to jump.,rides with a man in football jersey along a sidewalk.,walks the bicycle up a set of steps in the plaza venue.\n16372,anetv_W1FmiUTYt3I,19166,\"Then a man is shown and they are seen going down a slide. Then both the man and the boy are in the window again, and they are talking about washing hands and wipes, the video\",Then a man is shown and they are seen going down a slide.,\"Then both the man and the boy are in the window again, and they are talking about washing hands and wipes, the video\",gold,returns and all more children get out of the frame while another two men are sitting behind the bowling and talking to the camera.,gives a thumbs up as he explains and then bees to the camera.,flashes back to all the things the boy does with his hands and back to the window.,first brought a gift including honey and covered with result and is pressing along the sheets as the jewelry continue to cut.\n16373,anetv_W1FmiUTYt3I,19167,\"Then both the man and the boy are in the window again, and they are talking about washing hands and wipes, the video flashes back to all the things the boy does with his hands and back to the window. The boy and the man then\",\"Then both the man and the boy are in the window again, and they are talking about washing hands and wipes, the video flashes back to all the things the boy does with his hands and back to the window.\",The boy and the man then,gold,show how to wash hands and all the steps.,show the tile to close the camera.,talk to the men in the bedroom.,start doing handstands together.\n16374,anetv_W1FmiUTYt3I,19165,A little boy looks through the window shutters on a plastic playhouse. Then a man is shown and they,A little boy looks through the window shutters on a plastic playhouse.,Then a man is shown and they,gold,are having fun while sitting on horses.,are both themselves on the roof.,are seen going down a slide.,stop in front of the wall.\n16375,lsmdc3064_SPARKLE_2012-4378,1249,The receptionist watches someone take a seat on a long bench across the reception area. The patient young woman,The receptionist watches someone take a seat on a long bench across the reception area.,The patient young woman,gold,steps out of the bedroom.,\"holds her purse over her lap, wearing a leather jacket.\",watches in amazement as the patient continues flying along.,places a plastic towel over her head.\n16376,lsmdc3064_SPARKLE_2012-4378,1245,\"In the daytime, someone enters a marbled floor lobby through a set of revolving doors. She\",\"In the daytime, someone enters a marbled floor lobby through a set of revolving doors.\",She,gold,steps through the double doors and throws his arms at the women.,speaks with a guard sitting within a circular counter.,\"is surrounding a conference room, full of friends.\",pass a dark - haired woman at a bar in a hallway with live music from someone.\n16377,lsmdc3064_SPARKLE_2012-4378,1241,\"At night with the room fully furnished, someone unpacks. Sitting on her bed by an open cardboard box, she\",\"At night with the room fully furnished, someone unpacks.\",\"Sitting on her bed by an open cardboard box, she\",gold,tosses a family photo beside a single.,flips through the pages of her song journal.,uses a bins of contacts.,opens the small utility box and takes out a sheet of colored glue levitates.\n16378,lsmdc3064_SPARKLE_2012-4378,1248,\"Arriving at Columbia Records, she crosses to the desk of the blonde haired receptionist. The receptionist\",\"Arriving at Columbia Records, she crosses to the desk of the blonde haired receptionist.\",The receptionist,gold,holds two jolts capsules at the reception desk as he grabs a bag of dr.,watches someone take a seat on a long bench across the reception area.,\"backs away from her friend, introduces someone's spaceship call levels.\",goes through the meeting room with her laptop list on silver mobile stations.\n16379,lsmdc3064_SPARKLE_2012-4378,1256,\"She approaches the desk, and the busy executive glances at her. He\",\"She approaches the desk, and the busy executive glances at her.\",He,gold,stares wide - eyed.,hangs up the phone.,\"turns over to a shelf cabinet, which he just searches through the basket, condoms, etc.\",lowers his chin gazing benignly.\n16380,lsmdc3064_SPARKLE_2012-4378,1242,\"Sitting on her bed by an open cardboard box, she flips through the pages of her song journal. She\",\"Sitting on her bed by an open cardboard box, she flips through the pages of her song journal.\",She,gold,\"presses the finger to her mouth, revealing a document of crimson ink on her lips.\",\"smiles to herself and turns the page, stopping.\",\"studies a fork of a scruffy, fair - haired girl.\",\"eyes the cap, arches her brow, then turns her head away.\"\n16381,lsmdc3064_SPARKLE_2012-4378,1253,A receptionist wakes her and she smiles. she,A receptionist wakes her and she smiles.,she,gold,follows the receptionist through a door.,hands off her shirt.,buries her chin in her hair.,peels off her apron.\n16382,lsmdc3064_SPARKLE_2012-4378,1255,\"The receptionist leads someone down a hall and into someone's office. As someone takes a look around, the door\",The receptionist leads someone down a hall and into someone's office.,\"As someone takes a look around, the door\",gold,opens open and someone turns the key.,opens and someone hurries down the stairs.,runs over to someone and a dress.,swings shut behind her.\n16383,lsmdc3064_SPARKLE_2012-4378,1251,\"On another day, now wearing a pink dress, someone watches a businessman head off for a meeting. Now wearing a checkered outfit, she\",\"On another day, now wearing a pink dress, someone watches a businessman head off for a meeting.\",\"Now wearing a checkered outfit, she\",gold,enters the full classroom.,notices another businessman on his way out.,pretends to be a scruffy - looking man.,\"paces back to the cafe, wearing smart work glasses and a gold dress and an orange print shirt.\"\n16384,lsmdc3064_SPARKLE_2012-4378,1252,\"Wearing an outfit with yellow sleeves, she eats a sandwich, kicking her leg out of boredom. In a striped dress, she\",\"Wearing an outfit with yellow sleeves, she eats a sandwich, kicking her leg out of boredom.\",\"In a striped dress, she\",gold,woozily throws a glossy disc.,kicks the stick with a stick.,bumps her legs past the window windows.,sleeps clutching a magazine.\n16385,lsmdc3064_SPARKLE_2012-4378,1244,\"At her apartment, someone writes in her songbook. In the daytime, someone\",\"At her apartment, someone writes in her songbook.\",\"In the daytime, someone\",gold,rides a skimpy trick track.,lies asleep by an aide's chair.,frantically lunges for a paintball gun.,enters a marbled floor lobby through a set of revolving doors.\n16386,lsmdc3064_SPARKLE_2012-4378,1246,She speaks with a guard sitting within a circular counter. She,She speaks with a guard sitting within a circular counter.,She,gold,pushes a flag across the platform and stands.,nods and heads down a hall.,takes a step out of it.,begins welding an array of metal ingredients.\n16387,lsmdc3064_SPARKLE_2012-4378,1247,\"Now on another floor, she exits the elevator. Arriving at Columbia Records, she\",\"Now on another floor, she exits the elevator.\",\"Arriving at Columbia Records, she\",gold,reads down the aisles.,dons a text on her watch.,crosses to the desk of the blonde haired receptionist.,glances closely at her head.\n16388,lsmdc3064_SPARKLE_2012-4378,1243,\"She smiles to herself and turns the page, stopping. At night alone at home, someone\",\"She smiles to herself and turns the page, stopping.\",\"At night alone at home, someone\",gold,is asleep while her parents are sleeping.,hangs a shawl over her shoulders then faces him along a narrow country road.,smokes a cigarette on her couch.,enters alone in a forest.\n16389,lsmdc3064_SPARKLE_2012-4378,1254,She follows the receptionist through a door. The receptionist,She follows the receptionist through a door.,The receptionist,gold,reacts awkwardly before sitting on his bed.,watches something at someone.,leads someone down a hall and into someone's office.,starts for the door.\n16390,lsmdc3064_SPARKLE_2012-4378,1239,\"At home, someone watches tv. Someone\",\"At home, someone watches tv.\",Someone,gold,turns off the set.,reads a note on a calendar inside a store.,watches as the timer counts down.,drives the car in a gas station.\n16391,lsmdc3064_SPARKLE_2012-4378,1240,\"Someone looks over an empty apartment, as a white man stands at the open door. She\",\"Someone looks over an empty apartment, as a white man stands at the open door.\",She,gold,stops for a moment before turning to face her.,crosses to a window and looks outside.,looks at another photograph.,\"is standing under the stalks, looking up on him.\"\n16392,anetv_ZO8ValsY3rE,10905,\"Then, the woman wash and dry her hands and light a hand with the uv light. After, the woman\",\"Then, the woman wash and dry her hands and light a hand with the uv light.\",\"After, the woman\",gold,add shredded other ingredients to the molder and put white powder into it.,puts lipstick on all parts of the counter and is blow drying the woman's mouth.,rinses the sink off and put it on the screen.,takes off her ring and wash and wash her hands with soap and rinse with water.\n16393,lsmdc1018_Body_Of_Lies-80065,18306,Someone hangs up and looks down. He,Someone hangs up and looks down.,He,gold,slows up as he looks at the elegant someone.,pins him and punches him in the face.,closely undoes the strap of someone's vest.,picks at a small bloody wound and digs out a splinter of bone.\n16394,lsmdc1018_Body_Of_Lies-80065,18309,\"Someone opens a matchbox and drops the fragment into it. Deep in thought, he\",Someone opens a matchbox and drops the fragment into it.,\"Deep in thought, he\",gold,looks down at her sister with brown eyes.,makes his way through the crowd.,pulls the diary from his pocket and hands it to her.,rubs his hands together.\n16395,lsmdc1018_Body_Of_Lies-80065,18305,Someone frowns and stares intensely. Someone,Someone frowns and stares intensely.,Someone,gold,wears a gentle smile as the machine descends with her keys.,hangs up and looks down.,hangs a raised turning.,beats out a piece by each chair.\n16396,lsmdc1018_Body_Of_Lies-80065,18308,He holds up the tiny pointed fragment on his fingertip for a moment. Someone,He holds up the tiny pointed fragment on his fingertip for a moment.,Someone,gold,looks up at the scarred overhead.,shares a sinister smile.,opens a matchbox and drops the fragment into it.,rips it off and polish it in a small stopper.\n16397,lsmdc1018_Body_Of_Lies-80065,18307,He picks at a small bloody wound and digs out a splinter of bone. He,He picks at a small bloody wound and digs out a splinter of bone.,He,gold,finds a white bath jacket on it.,waves into the sky.,holds up the tiny pointed fragment on his fingertip for a moment.,cuts a morsel of seed from an apple steak covered in white strips of brown ink.\n16398,anetv_RgaFRpTYYR4,934,A close up of a man is seen holding an accordion and sitting in front of a camera. The man,A close up of a man is seen holding an accordion and sitting in front of a camera.,The man,gold,begins cutting the man's hair with a closeup and grabbing it flat on his face.,begins playing the instrument while looking to the camera.,continues performing martial arts while gesturing to the camera.,mounts his shoes on the bike and begins walking away.\n16399,anetv_RgaFRpTYYR4,935,The man begins playing the instrument while looking to the camera. He,The man begins playing the instrument while looking to the camera.,He,gold,pauses to speak for a moment then continues on playing.,holds up his hand and points into the side of the screen followed by more instruction on how man works.,continues playing the instrument while stopping to speak to the camera.,stretches out his hand.\n16400,lsmdc1001_Flight-71561,5368,She gets off the bed. The woman,She gets off the bed.,The woman,gold,sits eating the ice cream.,buries her hands on his shoulders.,takes the shoes from the table.,takes a purse and walks out of the room as the man picks up a cell phone.\n16401,lsmdc1001_Flight-71561,5366,\"It turns to 7. 14. A naked dark haired woman with her hair falling around her shoulders,\",It turns to 7. 14.,\"A naked dark haired woman with her hair falling around her shoulders,\",gold,followed by the rider.,\"steps in her seat, bandaged.\",pulls herself down and puts her hand up.,sits up on a bed.\n16402,lsmdc1001_Flight-71561,5375,The man lies on his back. The woman,The man lies on his back.,The woman,gold,climbs on the bed.,throws him down the bed.,points at the camera.,falls on his side.\n16403,lsmdc1001_Flight-71561,5379,An airplane pin is on his lapel. People,An airplane pin is on his lapel.,People,gold,run across the tarmac as rain lashes the airport.,'s on a dock.,are in a large grassy grassy field.,hold two teams - gun and shake hands.\n16404,lsmdc1001_Flight-71561,5377,He sits up and snorts a line of cocaine. The man,He sits up and snorts a line of cocaine.,The man,gold,lifts the weight up over his head.,glares at his son.,\"settles forward and lands above the caddy, which lies on his back on the other side.\",walks out of the room dressed in a black suit and sporting dark glasses under a pilot's cap.\n16405,lsmdc1001_Flight-71561,5370,He sits up in bed. He,He sits up in bed.,He,gold,picks up a audio file and leads them away.,\"comes through the night, reaching for someone's hand in the other.\",is going down the stairs.,drinks from an almost entry beer bottle.\n16406,lsmdc1001_Flight-71561,5374,The woman lights a joint. The man,The woman lights a joint.,The man,gold,drains the drink in water.,opens the fire and cuts the trunk.,lies on his back.,wrinkles his nose and tongue.\n16407,lsmdc1001_Flight-71561,5367,\"A naked dark haired woman with her hair falling around her shoulders, sits up on a bed. She\",\"A naked dark haired woman with her hair falling around her shoulders, sits up on a bed.\",She,gold,pulls off a pair of socks from a closet.,adjusts the straps on her head.,is shown again in slow motion.,gets off the bed.\n16408,lsmdc1001_Flight-71561,5378,The man walks out of the room dressed in a black suit and sporting dark glasses under a pilot's cap. An airplane pin,The man walks out of the room dressed in a black suit and sporting dark glasses under a pilot's cap.,An airplane pin,gold,is dropped in the bow beams.,is shown with a black screen that has a firemen print life.,is on his lapel.,falls to the second beige railing.\n16409,lsmdc1001_Flight-71561,5369,The woman takes a purse and walks out of the room as the man picks up a cell phone. He,The woman takes a purse and walks out of the room as the man picks up a cell phone.,He,gold,sits up in bed.,hops inside and wraps her fingers around him.,returns to speaking and walks to help the boy to her car.,picks it up and has the seat facing him.\n16410,lsmdc1001_Flight-71561,5372,And watches the shapely woman as she reenters the room. The woman,And watches the shapely woman as she reenters the room.,The woman,gold,hurries on to an outdoor conference office.,'s head hangs forlornly from someone's hand and lowers her gaze.,slides off the hinges.,picks out some clothes.\n16411,lsmdc1001_Flight-71561,5364,\"A plane takes off from Orlando International Airport amid heavy clouds. In a room, a digital clock on a bedside table\",A plane takes off from Orlando International Airport amid heavy clouds.,\"In a room, a digital clock on a bedside table\",gold,\"drops 12 rings beside someone's slim desk, then the other turns to find someone staring off.\",reads a opulent hasty residence.,hits the hangar door.,reads 7.\n16412,lsmdc1001_Flight-71561,5371,He drinks from an almost entry beer bottle. And,He drinks from an almost entry beer bottle.,And,gold,hurls a piece of fabric into he's mouth.,\"is standing behind someone pacing by a small public desk, all of him calming, rumpled; the official members follow him.\",twists in the bag.,watches the shapely woman as she reenters the room.\n16413,lsmdc1001_Flight-71561,5376,She puts the joint to his lips. She,She puts the joint to his lips.,She,gold,leans forward to punch it.,pokes his head again.,closes her eyes nervously and leaves the piece stuck on her nose.,gets off the bed.\n16414,lsmdc1001_Flight-71561,5373,The woman picks out some clothes. She,The woman picks out some clothes.,She,gold,sprays it all with a mop.,cleans the water with windex.,jumps in a tub using a dryer.,slips on a thong.\n16415,lsmdc1001_Flight-71561,5382,He trots to the mobile stairway leading to the passenger walkway and slips on the first step. He,He trots to the mobile stairway leading to the passenger walkway and slips on the first step.,He,gold,pulls a tube out from under his eye and maintains an exasperated look as someone moves through the back door.,sees a pretty lady in a red dress dress.,\"rolls down his side and hangs up, then steps into a corner.\",joins the passengers through a side door.\n16416,lsmdc1001_Flight-71561,5380,People run across the tarmac as rain lashes the airport. He,People run across the tarmac as rain lashes the airport.,He,gold,\"reaches for the handle of the car, hauling them under the water.\",arrives at a hospital early.,pauses near one of the wheels.,has an agent around his arm.\n16417,lsmdc1001_Flight-71561,5365,\"In a room, a digital clock on a bedside table reads 7. 13. It\",\"In a room, a digital clock on a bedside table reads 7. 13.\",It,gold,watches her with a winged grin.,lifts his haircut and touches his temples.,blot the tracing from its heart.,turns to 7.\n16418,lsmdc3007_A_THOUSAND_WORDS-3513,4074,Someone steps outside toward the Bodhi tree. Pool lights,Someone steps outside toward the Bodhi tree.,Pool lights,gold,appear in the sky.,are raining on several bed.,shimmer across its green leaves.,shine on the headlights of an old - fashioned white car.\n16419,lsmdc3007_A_THOUSAND_WORDS-3513,4072,\"Someone walks through the dining room. Stopping, he\",Someone walks through the dining room.,\"Stopping, he\",gold,peers into the backyard then slides open a patio door.,finds someone behind him.,looks around his office.,turns to the main office.\n16420,lsmdc3007_A_THOUSAND_WORDS-3513,4075,\"Pool lights shimmer across its green leaves. As someone stares at the tree, Gaudencio\",Pool lights shimmer across its green leaves.,\"As someone stares at the tree, Gaudencio\",gold,steps out of the shadows toward him.,blows out.,rot off the head of his snowflakes.,pretends to rise cds and unravels.\n16421,lsmdc3007_A_THOUSAND_WORDS-3513,4076,\"As someone stares at the tree, Gaudencio steps out of the shadows toward him. They\",\"As someone stares at the tree, Gaudencio steps out of the shadows toward him.\",They,gold,hurry back at the house after them.,wait as the survey group walk towards him.,look back at the trunk.,gaze at the tree.\n16422,lsmdc3007_A_THOUSAND_WORDS-3513,4073,\"Stopping, he peers into the backyard then slides open a patio door. Someone\",\"Stopping, he peers into the backyard then slides open a patio door.\",Someone,gold,removes the ring from his rucksack.,opens the little shoebox and puts on some cans.,steps outside toward the bodhi tree.,get out and closes the lid.\n16423,lsmdc3052_NO_STRINGS_ATTACHED-25358,10497,Someone steps up to her with his hands behind his back. He,Someone steps up to her with his hands behind his back.,He,gold,places someone's hand resting on the table.,holds up a bunch of carrots.,steps back to dance.,opens the front door to reveal a glamorous woman with no hair.\n16424,lsmdc3052_NO_STRINGS_ATTACHED-25358,10496,Someone walks up wearing a raincoat over a shimmering silver shirt dress. Someone,Someone walks up wearing a raincoat over a shimmering silver shirt dress.,Someone,gold,sits in the principal's office.,\"stares at the woman with a boyish colleague, then lurches upward.\",reaches into the guest's pockets.,steps up to her with his hands behind his back.\n16425,lsmdc3052_NO_STRINGS_ATTACHED-25358,10495,A smartly dressed someone sits on the bonnet of his car waiting outside the hospital. Someone,A smartly dressed someone sits on the bonnet of his car waiting outside the hospital.,Someone,gold,sees moving to the window and his eyes glow again.,sits on the phone in an fbi kitchen with his eyes closed.,drives someone into the bar and stands casually up against a passenger window.,walks up wearing a raincoat over a shimmering silver shirt dress.\n16426,lsmdc1017_Bad_Santa-7380,340,Someone lurches unsteadily up a snow - filled back alley. He,Someone lurches unsteadily up a snow - filled back alley.,He,gold,leans against the wall and throws up.,smashes through one living frame.,looks incredulously to someone's fiance.,peers in the bricks.\n16427,lsmdc1017_Bad_Santa-7380,341,\"He leans against the wall and throws up. In a brightly lit shopping mall, a mother and her young children\",He leans against the wall and throws up.,\"In a brightly lit shopping mall, a mother and her young children\",gold,are in the middle of the house looking up amidst photos of scenes from the girls at the marathon solo.,are having sex on spar's white bed.,sit in their room.,ride up an escalator.\n16428,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96201,19006,A white pawn moves itself forward. Someone,A white pawn moves itself forward.,Someone,gold,runs across a narrow passageway.,\"is chewing on it, carefully.\",looks at someone anxiously.,captures the items from three children.\n16429,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96201,19005,Someone climbs onto the stone horse of the black knight. Someone,Someone climbs onto the stone horse of the black knight.,Someone,gold,walks away then sits back down.,reaches down and aims his shotgun.,looks onto the bodhi tree.,looks across the board.\n16430,anetv_GHOCVoZsFHE,9468,A man is seen speaking to the camera an leads into clips of him demonstrating martial arts with another man. The men,A man is seen speaking to the camera an leads into clips of him demonstrating martial arts with another man.,The men,gold,work out quietly along the side and end by pushing the ropes clean while the camera captures her movements.,move the camera all around the object and lead into people walking up and speaking to the camera.,continue to demonstrate with one another while pausing to speak to the camera.,continues playing darts with one another and others watch around the sides.\n16431,anetv_DZVJtWJrWTU,16521,A young woman with red and black hair is shown using a hair dryer. She,A young woman with red and black hair is shown using a hair dryer.,She,gold,uses a paper razor and smooth add gray dryer to trim some curls.,uses a large round brush to brush her hair straight as it dries.,uses a brush pad and clear polish before putting on to the finer with a scrub shoe.,is spraying the hair with a brush.\n16432,anetv_DZVJtWJrWTU,16522,\"She uses a large round brush to brush her hair straight as it dries. When she is done, she\",She uses a large round brush to brush her hair straight as it dries.,\"When she is done, she\",gold,sets down the costumes for another beautiful painting.,goes to a mirror and begins to dry her hair.,rakes her hand through her hair and brushes it into place.,puts the toothpaste on her right leg.\n16433,anetv_VLjfzOpn-AQ,18428,Then we see several people in wetsuits getting ready outside. Then they,Then we see several people in wetsuits getting ready outside.,Then they,gold,are seen kayaking in the water of a river while music plays.,\"get satisfied and rise quickly around them, everybody's legs runs to the camera.\",are shown playing the game together.,\"continue talking, racing and pedestrians in the school.\"\n16434,anetv_VLjfzOpn-AQ,18429,Then they are seen kayaking in the water of a river while music plays. There,Then they are seen kayaking in the water of a river while music plays.,There,gold,are shown on the screen beneath the water.,are credits at the end while someone walks a kayak down some steps.,videos is shown of the men playing in a room and they stand around one another.,\", a small group of people show a river on a rocky ocean while a man rides a canoe through a river.\"\n16435,anetv_VLjfzOpn-AQ,18427,A black and white drawing of an angry dog is shown with the words Grrrr Productions. Then we,A black and white drawing of an angry dog is shown with the words Grrrr Productions.,Then we,gold,see images of red horses and moves.,see several people in wetsuits getting ready outside.,see the man and a man creating a home around the top of a sand castle.,move down outdoors for a person who is exploring the top of a steep mountain.\n16436,anetv_VLjfzOpn-AQ,13874,\"Several people are gathered on the side of a road, putting on water rafting gear. They\",\"Several people are gathered on the side of a road, putting on water rafting gear.\",They,gold,\"go through the air, swooping over obstacles, and jumps down from their makeshift boards.\",push their kayaks into a river.,take off the beach together to be fun.,pass some civilians and follow them to the river.\n16437,anetv_VLjfzOpn-AQ,13875,They push their kayaks into a river. The group,They push their kayaks into a river.,The group,gold,\"goes down stream, then are shown walking a path toward the water again.\",rides up a hill.,begin paddling through the turbulent water.,\"rides a elevator into the water, then caught on a wave.\"\n16438,lsmdc0009_Forrest_Gump-50788,11083,She is surrounded by her many children. She,She is surrounded by her many children.,She,gold,takes aim at her head.,runs her fingers through her hair.,looks at the check and faints.,continues flipping as children look through the mirror.\n16439,lsmdc0009_Forrest_Gump-50788,11082,A new cross is placed on the steeple. A postman,A new cross is placed on the steeple.,A postman,gold,approaches someone who hugs someone.,brings someone's hood.,stands up and looks near.,delivers a letter to someone's mom.\n16440,lsmdc0009_Forrest_Gump-50788,11081,New furniture is taken inside. A new cross,New furniture is taken inside.,A new cross,gold,is lying across the tree.,is placed on the machine.,is seen with a mop and a robe.,is placed on the steeple.\n16441,lsmdc0009_Forrest_Gump-50788,11084,She looks at the check and faints. A door,She looks at the check and faints.,A door,gold,opens as a white woman serves someone's mom some shrimp.,\"sign for someone's who is also now 17 pauses on the sidewalk near her apartment, the street.\",rolls in the air.,necklace shows someone jesus.\n16442,lsmdc0009_Forrest_Gump-50788,11080,Someone rides a lawn tractor as he moves the football field lawn. Someone,Someone rides a lawn tractor as he moves the football field lawn.,Someone,gold,\"comes up behind her, watching water in his sleeve.\",\"stares off, looking from his bottle to another man.\",fixes the violin as he looks down at his extended spiked body.,takes out a letter and opens it.\n16443,anetv_9eJgsiS3xH8,10348,Sailboat is in open sea with some people standing on it. men,Sailboat is in open sea with some people standing on it.,men,gold,\"are setting up a field and talking to them, talking to the camera as people are walking.\",are siting on te sailboat and are driving it and talking to each other.,do all on water ski in different slopes in earth.,are sitting under the driving ramp going out the river like water.\n16444,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93182,10631,Someone is standing next to a bed where a petrified girl is lying. People,Someone is standing next to a bed where a petrified girl is lying.,People,gold,is watching him on a bed.,\"sees her bra, late at night.\",stare with horror at the stiff figure.,are watched as someone leads a girl to her parents sitting up.\n16445,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93182,10633,Someone's eyes are wide open and staring. Someone,Someone's eyes are wide open and staring.,Someone,gold,\"sits at the piano, his head facing the empty cabinet.\",reacts to the earth.,returns to look at it and nods.,gently strokes her outstretched hand.\n16446,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93182,10632,People stare with horror at the stiff figure. Someone's eyes,People stare with horror at the stiff figure.,Someone's eyes,gold,are still on the monitor.,are wide open and staring.,widen as the rocket flies through the air.,\"are wide and foreboding, impossibly bluff, visible.\"\n16447,anetv_t6Hc2tHRrs4,11447,\"Then we see people on bikes, performing stunts, going around a ring and jumping hills. A biker flies through the air, then we\",\"Then we see people on bikes, performing stunts, going around a ring and jumping hills.\",\"A biker flies through the air, then we\",gold,see the slack man stop kitesurfing.,get all round the lady to do acrobatics again.,see a final photo of the winners with their medals.,see his procession stride out of the gym.\n16448,anetv_t6Hc2tHRrs4,11446,A group is shown together and racing on bmx bikes in a series of photos. Then we,A group is shown together and racing on bmx bikes in a series of photos.,Then we,gold,see several people doing skateboard stunts on skateboards in a stadium.,\"see people on bikes, performing stunts, going around a ring and jumping hills.\",see their father getting ready to race around some of the riders.,see them clapping and celebrates with video of people dancing.\n16449,anetv_6iuD3pSgBcw,18908,A young man is standing on stage and eventually several other boys join in wearing kilts. They,A young man is standing on stage and eventually several other boys join in wearing kilts.,They,gold,stand in front of one drum and perform a routine using only drums.,are sitting in the pool clapping and looks at each other.,\"fold down one last orbit, then bend on the ground to talk.\",\"are doing many different moves on each go, right straight on their stools.\"\n16450,anetv_6iuD3pSgBcw,18909,They stand in front of one drum and perform a routine using only drums. The boys,They stand in front of one drum and perform a routine using only drums.,The boys,gold,continue playing the guitar instrument until the end play ends.,continue drum and move around in the end while speaking quickly to each other.,spin and flip their sticks constantly and continue performing their drumming routine.,move across to the drummer huddled up and stopping to gather themselves.\n16451,anetv_6iuD3pSgBcw,18910,The boys spin and flip their sticks constantly and continue performing their drumming routine. One,The boys spin and flip their sticks constantly and continue performing their drumming routine.,One,gold,discusses the camera as appears.,stands up and begins singing a song while the others join in.,of the strings dancing becomes couples on the main face.,of a group of kids players jumps and cheers one at one time.\n16452,anetv_6iuD3pSgBcw,18911,One stands up and begins singing a song while the others join in. They boys,One stands up and begins singing a song while the others join in.,They boys,gold,continue playing and clapping while the camera zooms over.,go back to playing the drums and finally finish by playing each other's drums and faster than other.,continue playing together and dance together one by one.,continue singing with the batons in the end.\n16453,anetv_QLbWA54l1Sg,4843,The women compete in an arm wrestling match seated at a table. The women,The women compete in an arm wrestling match seated at a table.,The women,gold,take off their glasses and remove their hands and move around at their side.,\"are twirling, working, shaking their hips and smiling, then begin dancing with other individuals.\",partying into the man behind the bar raises her arm.,switch hands and and arm wrestle with their left hands.\n16454,anetv_QLbWA54l1Sg,4842,The two people hold out hands to begin an arm wrestling match. The women,The two people hold out hands to begin an arm wrestling match.,The women,gold,are scoring a video of the passing twins.,gather jumpsuit gale the bottom and see them score.,compete in an arm wrestling match seated at a table.,plenty a room fire and laugh.\n16455,lsmdc1006_Slumdog_Millionaire-74105,17386,\"At the police station, the inspector and someone drink milky tea in glasses. Someone\",\"At the police station, the inspector and someone drink milky tea in glasses.\",Someone,gold,smacks an empty tray on her daughter's bedside table.,puts a hand into someone's cupped hand.,appears in front of the tv.,gulps his down quickly.\n16456,anetv_6ZUHLsyJ6yo,12307,Several bass drummers appear wearing jerseys. They all,Several bass drummers appear wearing jerseys.,They all,gold,\"play drums, shuffle the cymbals.\",are in the same classroom doing tricks.,make a song while a performer does a violin.,play a beat as people with cameras walk between them.\n16457,anetv_blSOfdlqJtY,16916,A large group of people are seen playing around a gymnasium throwing balls at one another and bouncing around. The people,A large group of people are seen playing around a gymnasium throwing balls at one another and bouncing around.,The people,gold,continue throwing balls when one hits the camera and shows a persons face.,continue hitting the ball around and shows people hitting the ball and ends at the beach.,look back and fourth with one another and ends by waving to their hands.,continue riding around while more clips are shown of the screen as well as speaking to one another.\n16458,anetv_blSOfdlqJtY,16917,The people continue throwing balls when one hits the camera and shows a persons face. The game,The people continue throwing balls when one hits the camera and shows a persons face.,The game,gold,returns to the kids again the video ends with the basketball player seen hitting the ball off the wall.,continues to show the people moving in and out in play while the camera captures their movements.,continues to show people on the stilts.,continues on with the people throwing balls around and people watching on the sides.\n16459,anetv_b1s0BdtlFZs,19251,A person holding a camera walks into the bathroom. The man,A person holding a camera walks into the bathroom.,The man,gold,demonstrates how he begins to solve a rubik's cube.,takes out his hat and takes his seat working out.,begins spraying the carpet with a rag.,rubs shaving cream on their legs.\n16460,anetv_b1s0BdtlFZs,19252,The man rubs shaving cream on their legs. He,The man rubs shaving cream on their legs.,He,gold,picks up the camera and starts to hold the iron again.,begins to shave his leg in the sink.,continues brushing the pan and ending the fire.,continues talking while the man still is tattooing his belly.\n16461,anetv_b1s0BdtlFZs,19250,A man sits on a toilet with her leg up. A person holding a camera,A man sits on a toilet with her leg up.,A person holding a camera,gold,is washing its paw.,begins shaving cream up the girl's leg.,walks into the bathroom.,holds up a birthday microphone.\n16462,lsmdc1039_The_Queen-88093,5275,The corgis run through the clearing. Video footage,The corgis run through the clearing.,Video footage,gold,shows someone decorating a lit lantern with a confident someone.,shows crowds of people lining up in a queue.,shows someone fighting with a start.,shows someone seated in fish in a big ostrich leading towards a brightly lit mountain.\n16463,anetv_cRP9tyF1N4I,19304,A man is seen riding on a tube down a hill holding a stick to record his face. He,A man is seen riding on a tube down a hill holding a stick to record his face.,He,gold,then spits it onto a person bringing the mower and pushes it off of the mountain.,continues surfing along the water as the boat accelerates very difficult.,is then shown running while running with a tube and into the end.,moves back and then continues quickly riding while speaking to the camera.\n16464,anetv_cRP9tyF1N4I,11906,A man wearing sunglasses is tubing down a hill. He,A man wearing sunglasses is tubing down a hill.,He,gold,\"is shown going forward, then in reverse.\",is leading a group in a boat and hitting on a harness with a man carrying a board.,is bumping for his board while another man sits in his boat.,pulls shovels a trail on the snow.\n16465,anetv_v7OluHKECRA,3691,Chocolate is added to the mix. A liquid,Chocolate is added to the mix.,A liquid,gold,is also added to it.,is poured into the plate.,is poured from a jar.,is added to the top.\n16466,anetv_v7OluHKECRA,15746,A blender blending a mixture in a red bowl. The chef,A blender blending a mixture in a red bowl.,The chef,gold,mixes up ingredients and puts them into a mixer.,takes out a yellow plate and mixes the eggs together again.,finishes and adds pasta to the hot mix.,scrapes the side of the bowl with a grey scraper.\n16467,anetv_v7OluHKECRA,3690,Sugar is added to the bowl. Chocolate,Sugar is added to the bowl.,Chocolate,gold,\"is added to the original bowl, which rolls and sugar.\",is added to the mix.,and flour is filled.,is shown with an empty pitcher.\n16468,anetv_v7OluHKECRA,3689,Butter is blended in a bowl. Sugar,Butter is blended in a bowl.,Sugar,gold,are added to the mix and stirred to spoon.,is added to the bowl.,is spreading products and silverware.,are added into bowls.\n16469,anetv_v7OluHKECRA,15747,The chef scrapes the side of the bowl with a grey scraper. The chef then,The chef scrapes the side of the bowl with a grey scraper.,The chef then,gold,adds chocolate syrup into the mixture and a brown powder into the mixture and blends the ingredients together.,begins cutting the colored oven presser.,\"puts olive oil on a blue eye container, turns it in his hand and places the sharpener on the sharpener.\",\"uses a fork to cut a tomato, cut the tomato while now on the cake.\"\n16470,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1299,\"Now, he reaches into a box. He\",\"Now, he reaches into a box.\",He,gold,places a block of vodka on the table.,\"pulls out his own duke university diploma, then makes a call on his cell.\",finds the ticket unlocked.,finds a key slot on her desk.\n16471,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1297,He hurries up the front walkway to his house and enters. He,He hurries up the front walkway to his house and enters.,He,gold,\"peeks into the vacant living room, then heads upstairs.\",shoots from renovation tank top.,sets the gun back on his aim.,moves behind the car with the chain link follow.\n16472,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1293,A car almost hits the mailman. Someone,A car almost hits the mailman.,Someone,gold,\"tackles him to the ground, sending envelopes flying into the air.\",\"slaps it, opens the door, and emerges into the air through the crowd.\",\"reaches behind the arizona wall, then picks up the receiver and dials a number.\",\"pulls out, long - sleeve hard.\"\n16473,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1295,The fbi agent grabs the bulky Duke University letter and stands. He,The fbi agent grabs the bulky Duke University letter and stands.,He,gold,sprints back to his suv.,\"slips, half into the page, leaving someone grinning at her.\",adjusts his hat is pointing a heated affair.,steps up from a nearby cabinet into a room's main window.\n16474,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1298,\"He peeks into the vacant living room, then heads upstairs. Now, he\",\"He peeks into the vacant living room, then heads upstairs.\",\"Now, he\",gold,reaches into a box.,turns and dashes traffic.,\"circles back into the driveway, speeds up from his car and fall back into his seat.\",gazes at his beady red eyes.\n16475,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-0,1294,\"Someone tackles him to the ground, sending envelopes flying into the air. The fbi agent\",\"Someone tackles him to the ground, sending envelopes flying into the air.\",The fbi agent,gold,watches his watch through a window.,watches a squad of paintball steal a route in the leak.,grabs the bulky duke university letter and stands.,closes the window with a grim expression of despair.\n16476,anetv_ulJxGEx2r7o,14782,An intro leads to a small group of small children standing on a stage holding instruments. They,An intro leads to a small group of small children standing on a stage holding instruments.,They,gold,stand together afterwards playing the music together.,are playing the drums all along a stage and more people leading the dance continue to little dance as they play.,continue dancing with one another while they continue dancing and dancing in the end people break away.,begin playing the instruments while the camera zooms in out of each of them playing.\n16477,anetv_8GqAgX-kseE,16945,\"A boy is barefoot, pushing a lawn mower in his yard. A little girl\",\"A boy is barefoot, pushing a lawn mower in his yard.\",A little girl,gold,runs by as he mows.,plays hopscotch as a boy chases the kid on foot.,comes and leaves the sign with the lawn mower.,is standing in a garden using an ax.\n16478,anetv_TfFVoogTDJY,6516,The small fence was put down the the bikers went bike racing over the big ramps. The spectators,The small fence was put down the the bikers went bike racing over the big ramps.,The spectators,gold,get in the cars and start racing.,are on the side of the tracks.,get off the ladder and fast and start wrestling for the park.,are watching an event.\n16479,anetv_TfFVoogTDJY,6515,\"The bikers are biking on the ramp, while on the starting line the group of bikers are in positioned. The small fence was\",\"The bikers are biking on the ramp, while on the starting line the group of bikers are in positioned.\",The small fence was,gold,pushed back on so they started motocross.,put on a tight rope for scissors.,put and won a bunch of those to take off.,put down the the bikers went bike racing over the big ramps.\n16480,lsmdc3064_SPARKLE_2012-3798,12860,The mc ogles someone as she steps to the mic. Someone,The mc ogles someone as she steps to the mic.,Someone,gold,carefully helps someone free from the toyshop.,nods to the band.,gets to her feet and rubs the tissue painted onto her back.,crosses to the two pages working on his laptop.\n16481,lsmdc3064_SPARKLE_2012-3798,12861,Someone nods to the band. Red stage lights,Someone nods to the band.,Red stage lights,gold,turn on and exits the stage.,\"glisten on her shiny silver dress, as she swings her hips.\",dims with white rimmed white and white mannequins.,illuminate paint from the ceiling.\n16482,anetv_UhB739uudDo,5710,A man is seen standing in a field with a dog while holding onto toys. The man then,A man is seen standing in a field with a dog while holding onto toys.,The man then,gold,begins running around a yard while many people watch on the sides.,begins throwing the toys while the dog chases after them.,begins doing tricks with frisbees while keeping hold of the dog up.,begins taking turns pushing his dog along and performing various tricks and attached to the camera.\n16483,anetv_UhB739uudDo,5711,The man then begins throwing the toys while the dog chases after them. The men,The man then begins throwing the toys while the dog chases after them.,The men,gold,\"continue walking up and down the hall, performing tricks.\",run off and continue performing tricks with one another holding more frisbees.,resume playing the game in a corner.,continues to do tricks with the dog and end with a picture.\n16484,lsmdc3053_PARENTAL_GUIDANCE-25652,7485,The orange team fumbles their way through a warmup game of catch. They,The orange team fumbles their way through a warmup game of catch.,They,gold,throw the black ball back to the goal and the man talks.,put in a saddle on the other side of the game.,\"struggle through sit - ups, toe touches, and pushups.\",appear doing different tricks.\n16485,lsmdc0005_Chinatown-48568,8670,Someone is holding the bifocals with the broken lens now. Cross,Someone is holding the bifocals with the broken lens now.,Cross,gold,\"nods, trying to turn the board from left to right.\",looks at the glasses.,carefully deflects her tape.,is a badge - tied cut woman.\n16486,lsmdc0005_Chinatown-48568,8671,Cross looks at the glasses. Cross,Cross looks at the glasses.,Cross,gold,makes a funny little cock of his head.,looks back from his mother's table.,runs to them and manages to slip.,walks into the room.\n16487,anetv_qF3EbR8y8go,16425,Woman is painting a blue ad purple chinese flower. a red and black flowers,Woman is painting a blue ad purple chinese flower.,a red and black flowers,gold,covers the screen with the other customers.,is in front of a garage fence.,are on the table painting it.,are painted on a white paper with very detail for the same woman in a dark room.\n16488,anetv_qF3EbR8y8go,16424,A red paint is shown and woman put a stamp on the corner of the paper. woman,A red paint is shown and woman put a stamp on the corner of the paper.,woman,gold,puts leather paper on the room counter and put on sunscreen.,puts paints in brown and red polish some lightly sanding it.,is painting a blue ad purple chinese flower.,is arrange a yellow paper paint nail and afraid of the dough.\n16489,anetv_qF3EbR8y8go,16423,Woman is painting in a white paper green leaves in a chinese tree. a red paint is shown and woman,Woman is painting in a white paper green leaves in a chinese tree.,a red paint is shown and woman,gold,put a stamp on the corner of the paper.,is cleaning the hardwood with glue.,is scooping seeds out of the pumpkin with a tissue.,\"is walking and starting a table painting the nails, after you get out of a paper.\"\n16490,anetv_i0jy3fjw8xQ,17057,They are putting equipment around each other's bodies to protect them. The person,They are putting equipment around each other's bodies to protect them.,The person,gold,trots down another ladder and continue riding around and picking up pictures.,\"jumps off the side of the bridge on a bungee cord, swinging over the water below.\",moves the top ladder up sticking down on the floor.,shows various objects en by spraying up the wood and peeling.\n16491,anetv_i0jy3fjw8xQ,17056,A group of people are standing on an outdoor bridge. They,A group of people are standing on an outdoor bridge.,They,gold,are engaged in a game of water polo.,are putting equipment around each other's bodies to protect them.,were trying to throw over the ball.,are playing a game of water polo.\n16492,lsmdc0003_CASABLANCA-46756,18902,\"As they talk, people walk by toward the entrance of the cafe. It intermittently\",\"As they talk, people walk by toward the entrance of the cafe.\",It intermittently,gold,smiles before them and there's someone.,claps on the open side.,sheds its light on someone's face.,\"blows the candles on a patio in front of someone, who, looking on as he steps through the flood lounge.\"\n16493,lsmdc0003_CASABLANCA-46756,18896,He pulls her along toward the door. People,He pulls her along toward the door.,People,gold,\"come out, over to the dock and in the bathroom.\",approach the waiting cab.,look up as they find someone sitting on a belly stage graceful profile.,\"eyes spreading out, fencing nervously.\"\n16494,lsmdc0003_CASABLANCA-46756,18893,\"Someone turns, looks at someone, and extends her glass to him. She\",\"Someone turns, looks at someone, and extends her glass to him.\",She,gold,takes off her glasses and picks them up.,\"looks at him bitterly, without saying a word.\",\"opens the front door, puts money on his briefcase and waggles a finger at someone house.\",\"remembers the two steps on the path, which finally pours all of the steps into the garden with someone's glass.\"\n16495,lsmdc0003_CASABLANCA-46756,18901,\"Someone sits down at the table. As they talk, people\",Someone sits down at the table.,\"As they talk, people\",gold,watch her signal the attention.,\"look hard at each other, watching.\",walk by toward the entrance of the cafe.,and couples stand in a row behind a desk.\n16496,lsmdc0003_CASABLANCA-46756,18892,He pays no attention to her. Someone,He pays no attention to her.,Someone,gold,hands to her friend.,looks down at someone's earnest glare at her.,\"opens the door to someone, leaving him in silence, silence.\",\"turns, looks at someone, and extends her glass to him.\"\n16497,lsmdc0003_CASABLANCA-46756,18903,Someone talks non - stop and someone tries. They both,Someone talks non - stop and someone tries.,They both,gold,finish pulling behind the curtain.,\"stop, salute someone, and walk into the cafe.\",stare facing towards someone.,laugh and stop at the pavement with clenched fists.\n16498,lsmdc0003_CASABLANCA-46756,18900,Someone walks over to him. Someone,Someone walks over to him.,Someone,gold,takes up the photo.,\"hurries out the phone, gets down, looks up toward someone.\",\"stops a few feet away, followed by some, reacting.\",sits down at the table.\n16499,lsmdc0003_CASABLANCA-46756,18887,\"Someone, who looks at her with lovesick eyes, fills her tumbler. Back at the bar, someone, an attractive young French woman,\",\"Someone, who looks at her with lovesick eyes, fills her tumbler.\",\"Back at the bar, someone, an attractive young French woman,\",gold,sits on a stool drinking brandy.,sits one a board.,stand on the community floor with an overcast sky.,sits on a bench facing a picture group of a prom date.\n16500,lsmdc0003_CASABLANCA-46756,18899,\"Someone sits at a table on the cafe terrace, watching this evening's performance. Someone\",\"Someone sits at a table on the cafe terrace, watching this evening's performance.\",Someone,gold,\"turns uncomfortably, fiddling with her hair.\",marches down a hallway in his own apartment.,walks over to him.,\"walks to the kitchen, where her mother is pointing she separates out of her purse.\"\n16501,lsmdc0003_CASABLANCA-46756,18905,The plane flies directly over their heads. Someone still,The plane flies directly over their heads.,Someone still,gold,has preoccupied.,looks in the direction of the airport.,holds the fly higher in the air.,looks down at the naked woman.\n16502,lsmdc0003_CASABLANCA-46756,18888,\"Back at the bar, someone, an attractive young French woman, sits on a stool drinking brandy. Someone\",\"Back at the bar, someone, an attractive young French woman, sits on a stool drinking brandy.\",Someone,gold,\"saunters over and leans on the bar, next to someone.\",stomps a bottle in her mouth with a napkin.,reaches out and picks up someone's bottoms.,sits at the packed dining room.\n16503,lsmdc0003_CASABLANCA-46756,18894,\"She looks at him bitterly, without saying a word. Someone\",\"She looks at him bitterly, without saying a word.\",Someone,gold,is withdrawing the bow.,\"is seeing her phone video, checking everything.\",stands at the curb on the street in front of someone's and signals for a cab.,picks up his hat as he rows outside.\n16504,lsmdc0003_CASABLANCA-46756,18889,\"Someone saunters over and leans on the bar, next to someone. Someone\",\"Someone saunters over and leans on the bar, next to someone.\",Someone,gold,looks up through the window at someone and walks back into the mess smiling.,makes his way down the aisle to the main door.,takes down his notes once more.,has never taken her eyes off someone.\n16505,lsmdc0003_CASABLANCA-46756,18891,Someone looks the check over and tears it up. He,Someone looks the check over and tears it up.,He,gold,surrenders the bottle in front of her and fixes her gaze.,is very aware of what someone has come through there.,rolls on top of the indecisive customer.,pays no attention to her.\n16506,lsmdc0003_CASABLANCA-46756,18904,People look up when they hear the buzz of a plane taking off from the adjacent airfield. The plane,People look up when they hear the buzz of a plane taking off from the adjacent airfield.,The plane,gold,\"turns out from hogwarts, turning back at the station building.\",flies directly over their heads.,snaps over the edge of a curved - bridge.,flies in black smoke and night goes over the debris.\n16507,lsmdc0003_CASABLANCA-46756,18890,Someone has never taken her eyes off someone. Someone,Someone has never taken her eyes off someone.,Someone,gold,has not put a puritan girl in his arms.,looks the check over and tears it up.,sits in a modest chauffeur's saloon.,\"lets out a small sigh, narrows her eyes, and shifts it.\"\n16508,lsmdc0003_CASABLANCA-46756,18897,People approach the waiting cab. Someone,People approach the waiting cab.,Someone,gold,stands and looks up at the revolving beacon light from the airport.,takes the wheel and gets in a corner.,is drawn across the street following someone.,\"reaches to his front door, presses a button, and examines waiting all.\"\n16509,lsmdc0003_CASABLANCA-46756,18906,Someone still looks in the direction of the airport. His look,Someone still looks in the direction of the airport.,His look,gold,has stopped at a stark steeple.,is n't a happy one.,extraordinarily thick and taught.,is shy when people all look up.\n16510,anetv_eZ_IOp638kQ,13670,An athletic man is seen running to throw a ball and another person hits it into the audience. More clips,An athletic man is seen running to throw a ball and another person hits it into the audience.,More clips,gold,are shown to one athlete pushing the puck up and around in the end.,are shown different people perform scoring as well as cheering for the goalie.,are shown of people playing the game on the field with the audience cheers and players move around the field.,are shown of people riding down the track.\n16511,lsmdc3020_DEAR_JOHN-9770,4493,She flinches and shifts away from him. Someone,She flinches and shifts away from him.,Someone,gold,\"glances over her shoulder at someone, then turns away.\",bows his head and faces her from the side.,\"reaches towards it, and smiles at her.\",\"begins to move back away, stopping in a specific pathway with just a banana.\"\n16512,lsmdc3020_DEAR_JOHN-9770,4494,\"She grimaces, agonizing and someone lowers his gaze. She\",\"She grimaces, agonizing and someone lowers his gaze.\",She,gold,glares at someone then twitches a smile.,lines gather around her face.,\"storms past him and disappears down the front steps, leaving him alone on the porch.\",shuts him around a embrace and undoes her dressing gown.\n16513,lsmdc3020_DEAR_JOHN-9770,4497,Someone finds someone siting alone on a bench overlooking a marsh. His pace,Someone finds someone siting alone on a bench overlooking a marsh.,His pace,gold,moves closer and closer to the bow.,increases as he listens to.,slows as he draws closer.,goes further and surges around a hazy environment.\n16514,lsmdc3020_DEAR_JOHN-9770,4492,\"He stands behind her, and she lowers her gaze. She\",\"He stands behind her, and she lowers her gaze.\",She,gold,bows and holds his gaze.,reluctantly glances across the room and pauses.,looks toward the bedroom.,flinches and shifts away from him.\n16515,lsmdc3020_DEAR_JOHN-9770,4495,\"She storms past him and disappears down the front steps, leaving him alone on the porch. Someone\",\"She storms past him and disappears down the front steps, leaving him alone on the porch.\",Someone,gold,\", looks through the window, and comes over, peering between the curtains.\",\"watches her go, then swallows hard and hangs his head.\",\"smiles, someone shakes her head.\",\"stops and stares up at someone, who receives the tender glance.\"\n16516,lsmdc3020_DEAR_JOHN-9770,4491,\"Now on the porch, someone paces behind someone. She\",\"Now on the porch, someone paces behind someone.\",She,gold,\"leans on the railing, gazing out over the lawn as departing guests find their cars.\",\"sleeps in the living area, with someone slumped down in the blankets.\",looks on with cellphone and clubs the fan's shoulder.,touches the page with a pencil.\n16517,anetv_Jtlvh2w1aUM,7926,The person blows leaves out of a tight corner and then progresses to a walkway. The person,The person blows leaves out of a tight corner and then progresses to a walkway.,The person,gold,stops painting the floor.,blows leaves from a walkway and across a lawn.,\"stops a few feet and gets a foot, which rests on the ceiling before the office.\",continues to brush the lawn then is shown with the smoke hitting the chair in the new place.\n16518,anetv_Jtlvh2w1aUM,7924,A person blows leaf off of a lawn and walkway using a leaf blower. The person,A person blows leaf off of a lawn and walkway using a leaf blower.,The person,gold,does a handstand then the camera pans around them.,faces a window to navigate a set of medium bars.,puts a leash along a leaf blower while talking to the camera.,begins by pointing the leaf blower towards leaves around a bush and near grass.\n16519,anetv_Jtlvh2w1aUM,7925,The person begins by pointing the leaf blower towards leaves around a bush and near grass. The person,The person begins by pointing the leaf blower towards leaves around a bush and near grass.,The person,gold,blows leaves out of a tight corner and then progresses to a walkway.,cuts off the foliage back and forth much while in the watches as the boat finishes with the blower showing a shady tree.,speaks to one another and pans off into the distance while the boy eventually takes his hand.,continues walking across the grass.\n16520,lsmdc3073_THE_GUILT_TRIP-34888,377,She finally lets go and holds him at arm's length. She,She finally lets go and holds him at arm's length.,She,gold,\"jumps back, peering out of the window.\",looks at the offscreen someone.,\"holds a finger up to her face, as if just remembering something.\",sits there.\n16521,lsmdc3073_THE_GUILT_TRIP-34888,381,\"Someone takes out his cell phone and stares at it, waiting. He\",\"Someone takes out his cell phone and stares at it, waiting.\",He,gold,gets up and passes by.,comes back to test it.,\"lands slowly forward, as if crossing to the driver's side seat.\",looks from his mother to his phone and shrugs with a wry smile.\n16522,lsmdc3073_THE_GUILT_TRIP-34888,375,\"Someone hugs someone, holding on to him tightly. She\",\"Someone hugs someone, holding on to him tightly.\",She,gold,sits on the chair and outside look overlapping.,raises his arm and kisses him tenderly on the lips.,sighs and throws his racquet into the air.,\"kisses him on the cheek and smiles to herself, holding back tears.\"\n16523,lsmdc3073_THE_GUILT_TRIP-34888,383,\"The end credits start to roll over the scene, as a man pushes his mother on a wheelchair, and a teenager offers his mom a sip from his juice box. And a boy\",\"The end credits start to roll over the scene, as a man pushes his mother on a wheelchair, and a teenager offers his mom a sip from his juice box.\",And a boy,gold,\"drops in to the spot, then gets right to stop leaving - - waits and turns away from the window.\",\"advances a small young boy, clutching a fom - face and fox security objects in the air behind him.\",\"runs before his mom, guiding her as they both haul their luggage.\",points to a record in an ashtray coffee armchair.\n16524,lsmdc3073_THE_GUILT_TRIP-34888,380,\"As he watches her walk away, she takes out her cell phone from her purse and dials a number. Someone\",\"As he watches her walk away, she takes out her cell phone from her purse and dials a number.\",Someone,gold,nods with his hand.,pushes the door open and her hair is wet and her head wrapped in a blanket.,\"takes out his cell phone and stares at it, waiting.\",\"pass through the throng, and a petite redhead leads a black, blonde boss standing with a stereo.\"\n16525,lsmdc3073_THE_GUILT_TRIP-34888,376,\"She kisses him on the cheek and smiles to herself, holding back tears. She finally\",\"She kisses him on the cheek and smiles to herself, holding back tears.\",She finally,gold,lets go and holds him at arm's length.,\"walks away, leans back against the chair and whispers an ear ear to her ear, as someone follows over.\",takes off her glasses and puts her hand down as she fetches the chocolate.,\"hugs him tightly, turns him to someone, waits for a moment, then leans in and kisses her.\"\n16526,lsmdc3073_THE_GUILT_TRIP-34888,385,And a security guard guides another child to his mother. The scene,And a security guard guides another child to his mother.,The scene,gold,fades to someone as a shirtless animal moves past a doorway.,rushes out inside a waiting room.,freezes as he hears his footsteps through the shadowy forest behind him.,fades to black and credits continue to scroll.\n16527,lsmdc3073_THE_GUILT_TRIP-34888,379,\"Someone touches a finger to her lips and waves goodbye to someone. As he watches her walk away, she\",Someone touches a finger to her lips and waves goodbye to someone.,\"As he watches her walk away, she\",gold,drapes her arms around him and places her hair behind her neck.,takes out her cell phone from her purse and dials a number.,steals a brief glance then firm out on the lawn.,stands stiffly and gazes past him.\n16528,lsmdc3073_THE_GUILT_TRIP-34888,384,\"And a boy runs before his mom, guiding her as they both haul their luggage. And a security guard\",\"And a boy runs before his mom, guiding her as they both haul their luggage.\",And a security guard,gold,watches someone fight at the monkey harshly.,runs up and down the street.,bumps a chair down opposite someone.,guides another child to his mother.\n16529,lsmdc3073_THE_GUILT_TRIP-34888,378,\"Someone smiles again, genuinely touched by someone's declaration. Someone\",\"Someone smiles again, genuinely touched by someone's declaration.\",Someone,gold,slowly dances out of their embrace while standing resplendent in her black and white dress.,touches a finger to her lips and waves goodbye to someone.,\"walks away, dejected, his roommates uncomfortable.\",does not look up as she is struck taut on the divan.\n16530,lsmdc3073_THE_GUILT_TRIP-34888,386,The scene fades to black and credits continue to scroll. Various clips of someone and someone driving in their car,The scene fades to black and credits continue to scroll.,Various clips of someone and someone driving in their car,gold,appears with crashing them.,are disturbed of the events that paddle during day terrible.,enters with skate bumper cars.,appear beside the credits.\n16531,lsmdc3073_THE_GUILT_TRIP-34888,382,He looks from his mother to his phone and shrugs with a wry smile. Someone,He looks from his mother to his phone and shrugs with a wry smile.,Someone,gold,gets to his feet and reaches one hand to help him.,points at herself and reaches out to grab the wheel of her rental.,picks up his briefcase and walks off into the bustling crowd.,goes to the desk up to the bed.\n16532,anetv__CJaovqcgtM,14550,\"On the show, two men are wrestling each over moving on the ground. The fat man then\",\"On the show, two men are wrestling each over moving on the ground.\",The fat man then,gold,\"picks up the skinny guy, drops him, and stands over him.\",glues the clothes on both legs of his bicycle while sticking his legs in the air.,put one arm on the ribs until an winner watching them.,helps the man with a towel to dry his face.\n16533,anetv__CJaovqcgtM,14549,\"A flat screen television is sitting on a stand showing the television show raw. On the show, two men\",A flat screen television is sitting on a stand showing the television show raw.,\"On the show, two men\",gold,are positioned facing the sink.,appear across from him quietly in the head.,sit up from each other on the sofa.,are wrestling each over moving on the ground.\n16534,lsmdc1031_Quantum_of_Solace-84236,5180,Two black 4 by 4 arrived at an airfield. Someone and his guard,Two black 4 by 4 arrived at an airfield.,Someone and his guard,gold,exit the stairwell then drive away.,run up various stairs.,get out of the car.,go down a parking vault and up a hill.\n16535,anetv_HK9tOFFF5II,6640,A scene from th big bang theory is shown and the man is lying down in a table in a tattoo room and a tattoo artist is standing by him. man in the bed,A scene from th big bang theory is shown and the man is lying down in a table in a tattoo room and a tattoo artist is standing by him.,man in the bed,gold,is filling up a game sharpener and ice cream.,are talking and everybody taking in the match.,is covered with white and white with the text.,stands and talk to a woman and remove the fake tattoo sleeves.\n16536,anetv_5gc896my38M,12652,Several couples are shown running outside and doing various activities outside in the sun. More and more people begin talking and each of them,Several couples are shown running outside and doing various activities outside in the sun.,More and more people begin talking and each of them,gold,seems excited to their young voices.,is still trying to cheer their parents indoors.,interviewed without words or text of how to sing.,has a bottle of sun screen and starts to squirt it on their arms in effort to protect their skin.\n16537,anetv_5gc896my38M,12653,More and more people begin talking and each of them has a bottle of sun screen and starts to squirt it on their arms in effort to protect their skin. A small blue bottle of the sun screen is then shown and several more people,More and more people begin talking and each of them has a bottle of sun screen and starts to squirt it on their arms in effort to protect their skin.,A small blue bottle of the sun screen is then shown and several more people,gold,are attempting to make it into the room.,are shown on the outside and their video continuing on when they're done playing.,begin talking about the product.,are shown on a bow and showing a bottle of water next to a net.\n16538,anetv_0XRZ2F5B7fQ,8966,A man in a long black wool coat scrapes ice off of a blue car's windshield while a woman in a black fur collared coat talks to him from the side of the car. A second woman,A man in a long black wool coat scrapes ice off of a blue car's windshield while a woman in a black fur collared coat talks to him from the side of the car.,A second woman,gold,comes in between her drinking and she is washed away by the van.,uses the rollers dryer to move more hair and section tools away from the girl's hair.,begins wiping snow off of the car's windshield wipers while talking to the woman in the fur hooded coat.,walks out of a photo area.\n16539,anetv_-GRvxWH4axc,8018,\"As it moves, a little girl dressed in a floral dress begins taking several wack at the pinata but she is n't capable of breaking it. When her turn is complete, she then\",\"As it moves, a little girl dressed in a floral dress begins taking several wack at the pinata but she is n't capable of breaking it.\",\"When her turn is complete, she then\",gold,passes the stick to the other boy who looks anxiously at the pinata.,runs to the last side of the playground and begins to get onto the bus.,throws her hair and punches it.,\"begins walking around and moves over to him by jumping up and down, stopping behind the camera.\"\n16540,lsmdc1018_Body_Of_Lies-80277,6288,\"In a hotel room, someone rubs a towel over his wet hair then brushes on a foamy white solution. He\",\"In a hotel room, someone rubs a towel over his wet hair then brushes on a foamy white solution.\",He,gold,\"scans the studio mirror, turns, and strides out of the room.\",descends the front steps of the jet and approaches the musician from the boarding party.,picks up a glass of beer then glances at someone.,looks at himself in a mirror.\n16541,lsmdc1018_Body_Of_Lies-80277,6287,\"Cranes stand beside buildings under construction, which, without their glass cladding, resemble towering honeycombs. In a hotel room, someone\",\"Cranes stand beside buildings under construction, which, without their glass cladding, resemble towering honeycombs.\",\"In a hotel room, someone\",gold,finds someone sitting with a newspaper at her shoulder.,'s sitting outside the loft dialing as someone looks away.,rubs a towel over his wet hair then brushes on a foamy white solution.,watches and looks of a mirror at a phone.\n16542,lsmdc1018_Body_Of_Lies-80277,6289,He looks at himself in a mirror. Someone's hair,He looks at himself in a mirror.,Someone's hair,gold,rolls back and forth.,is drawn over a hood.,has light - brown highlights.,has a firm build.\n16543,lsmdc1018_Body_Of_Lies-80277,6290,\"Someone's hair has light - brown highlights. In an office on a construction site, he\",Someone's hair has light - brown highlights.,\"In an office on a construction site, he\",gold,sits at a coffee table and takes out a sketch book handwritten notes on a desk.,cuts through the stain with a cloth.,speaks to a bald agent posing as a construction worker.,sucks up his cell.\n16544,lsmdc1029_Pride_And_Prejudice_Disk_One-83854,11790,\"Later, the girl with red hair is standing with someone as people look on. Someone\",\"Later, the girl with red hair is standing with someone as people look on.\",Someone,gold,smiles at someone as he takes the girl's hand and leads her down through the column of dancers.,enter a small area.,takes out a blackened corpse and sets it on a nearby table.,\"eyes someone, who points to a monitor.\"\n16545,lsmdc1029_Pride_And_Prejudice_Disk_One-83854,11791,Someone smiles at someone as he takes the girl's hand and leads her down through the column of dancers. Someone,Someone smiles at someone as he takes the girl's hand and leads her down through the column of dancers.,Someone,gold,spins a moves around from a dancer and attempts to dance.,\"are both dressed, silhouetted with statues and contemporary patterns.\",\"frowns, and fans gives him a slap.\",smiles back at him.\n16546,lsmdc1029_Pride_And_Prejudice_Disk_One-83854,11788,\"The men stand in one line with the ladies opposite them, then briefly touch hands as they move around the other dancers. Someone\",\"The men stand in one line with the ladies opposite them, then briefly touch hands as they move around the other dancers.\",Someone,gold,turns around to face her.,crosses the room and sees people sitting down.,they go in the belly of the stone and then start belly dance across the floor.,sits with the steward watching them.\n16547,lsmdc1029_Pride_And_Prejudice_Disk_One-83854,11793,Someone turns her attention back to the dance floor where the red haired girl is eyeing someone coyly. Someone,Someone turns her attention back to the dance floor where the red haired girl is eyeing someone coyly.,Someone,gold,\"stands alone behind the counter, her eyes wide.\",trudges through the snow toward the lake.,smacks someone in the forehead with a girlish smile.,grabs someone's arm.\n16548,lsmdc1029_Pride_And_Prejudice_Disk_One-83854,11787,Someone turns to glare at her husband. The men,Someone turns to glare at her husband.,The men,gold,\"look mortified at each other, waiting for someone, and now on their way through the clouds.\",rush to the door.,\"stand in one line with the ladies opposite them, then briefly touch hands as they move around the other dancers.\",draw their hands rhythmically.\n16549,anetv_gmFioIDX4X0,8467,A person is seen climbing into the back of a kayak with another man and paddling alone the water. The camera,A person is seen climbing into the back of a kayak with another man and paddling alone the water.,The camera,gold,pans around the area and zooms back and fourth along the water and pans to people on the beach.,shows footage of people on foot canoes and jump roping in the middle.,is then continuously pulling around as the person move with him back and fourth.,pans while moving around the area followed by clips of men riding up.\n16550,anetv_HppLOtjJY_Q,2889,A large group of people are standing on a bridge. They,A large group of people are standing on a bridge.,They,gold,are looking into the rapid waters below.,pick up a storm of paper and put them at the back of the boat.,are both in helmets on their bikes.,are playing a game of lacrosse.\n16551,anetv_HppLOtjJY_Q,2890,They are looking into the rapid waters below. Several people on canoes,They are looking into the rapid waters below.,Several people on canoes,gold,walk along the water with rapids near them.,\"come through the bridge, which is the finish line.\",are lined up in one mountain.,are cheering in the crowd.\n16552,lsmdc0029_The_Graduate-64501,18128,The other guests are ad - libbing their confusion. Her face,The other guests are ad - libbing their confusion.,Her face,gold,is a glare of wonder.,is swollen and hers are pinched and stung.,turning quickly to look up at someone.,\"is gone, as if her eyes are closed.\"\n16553,lsmdc0029_The_Graduate-64501,18127,The organ music starts to thunder. He,The organ music starts to thunder.,He,gold,moves to the center of the window and begins to pound on the glass.,beats it with a rhythm.,\"bobs nimbly in the audience, smiling.\",\"is in stage someone sits with her hands on her hips, watching the chorus behind her, but does n't really dance.\"\n16554,anetv_8s3b1f6OMw0,15525,A group of people are seen swimming across a large pool with various people watch and record from the sidelines. The people,A group of people are seen swimming across a large pool with various people watch and record from the sidelines.,The people,gold,begin to ride around the ground performing a match for a while people continue to play.,continue swimming around passing a ball to one another and playing a water of water polo.,continue performing tricks with one another as well as clips of girls performing.,come up on the sides and start swimming with a paddle in the water.\n16555,anetv_8s3b1f6OMw0,1577,They are throwing a ball back and forth. People,They are throwing a ball back and forth.,People,gold,blow it and throw the ball to each other.,is doing a split in the room.,are standing on the side of the pool watching.,go around throwing the balls between them and hitting them out onto the ground.\n16556,anetv_7hvq4VqEGCE,9964,The child cries and then hugs the nurse. Another child,The child cries and then hugs the nurse.,Another child,gold,plays in the background.,goes through and ties the girls hair.,looks as the adult comes along.,stops and lays on the sleeping child.\n16557,anetv_7hvq4VqEGCE,9963,\"A nurse then tries to get something else in the eye, but the child is resisting. The child\",\"A nurse then tries to get something else in the eye, but the child is resisting.\",The child,gold,scrubs back her hair while looking down at the camera.,cries and then hugs the nurse.,carries in a video of the vacuum.,\"makes a salute, then continues cutting.\"\n16558,anetv_7hvq4VqEGCE,10754,He is forcing the child's eyelids open. The baby,He is forcing the child's eyelids open.,The baby,gold,is falling asleep despite what the man is doing.,\"dismounts from his side, turns to him and closes his eyes.\",begins to go up in his boat on a fake with and swings painfully toward himself.,is standing just recording the masked man from behind.\n16559,anetv_7hvq4VqEGCE,10753,A man is holding a baby down in a room. He,A man is holding a baby down in a room.,He,gold,is forcing the child's eyelids open.,is mixing two balls into a large bowl.,sits at a table with a yellow racket.,starts scene splits and switching on the sandwich.\n16560,anetv_CcMic7jNIuE,8728,The same man comes back and lifts the weight over his head again. He,The same man comes back and lifts the weight over his head again.,He,gold,drops it on the ground and walks away.,moves his hips right and left.,\"builds up very slowly, is almost, and beats a button on it, still bouncing him beneath the weight.\",picks up a large weight.\n16561,anetv_CcMic7jNIuE,8727,Another man is filming it. The same man,Another man is filming it.,The same man,gold,stunts as he is ride the tractor.,comes back and lifts the weight over his head again.,is shown practicing a smile stretch while a man talks.,is waxing the ice from a large tray.\n16562,anetv_txsupdxCToQ,18402,A guy does roller blading on the ramps. The man,A guy does roller blading on the ramps.,The man,gold,walks across a path.,celebrates lying on the floor below.,takes off his shirt and then continues to do tricks.,lets the water tumble on the floor.\n16563,anetv_txsupdxCToQ,6192,An intro leads into a roller blading grinding down a rail as well as performing tricks in a skate park. Several more clips,An intro leads into a roller blading grinding down a rail as well as performing tricks in a skate park.,Several more clips,gold,are shown of people riding around on skateboards as well as speaking to the camera.,are shown of the skateboards in the street as the camera captures them from several angles.,are shown of people roller blading in various areas and one speaking into the camera leading into more clips of roller blading.,are shown and several clips of pictures of people kissing by either side.\n16564,anetv_txsupdxCToQ,18403,The man takes off his shirt and then continues to do tricks. He,The man takes off his shirt and then continues to do tricks.,He,gold,sees a teen jump on a force board several times.,fails to give himself some support leaves.,does a flip that gets up and falls up on the ground while his still surfing.,falls down and then is interviewed.\n16565,anetv_htBt3oP9zuo,18260,A woman demonstrates how to apply wallpaper to a wall. A woman,A woman demonstrates how to apply wallpaper to a wall.,A woman,gold,holds up the various tools needed to apply wallpaper.,is painting the floor with an ice foundation.,applies wax paper to the wall.,\"likes a black line, then paints different scenic and tiled floors.\"\n16566,anetv_htBt3oP9zuo,18262,The woman demonstrates the process before applying the paper in short demonstration segments. The woman then,The woman demonstrates the process before applying the paper in short demonstration segments.,The woman then,gold,begins to apply the wallpaper to a wall step by step.,shows up the client used to.,places the parts around and lathers some change parts to the machine.,demonstrated a proper hand on a zumba exercise.\n16567,anetv_htBt3oP9zuo,18261,A woman holds up the various tools needed to apply wallpaper. The woman,A woman holds up the various tools needed to apply wallpaper.,The woman,gold,continues to talk to the camera and a shot is chest pile in front of a man.,demonstrates the process before applying the paper in short demonstration segments.,put a purple machine on the table and apply lotion to the results.,begins with a tool that appears to be a soldering carpets material.\n16568,anetv_iDMzTPfELoc,15083,\"He hops all around his street on the sidewalk as he passes a stop sign, and a street with cars and traffic. He\",\"He hops all around his street on the sidewalk as he passes a stop sign, and a street with cars and traffic.\",He,gold,comes onto his apartment and door as someone gets back.,emerges from the back of the chauffeur - driven limo and pulls his left hand to the curb.,\"breaks the top off in front of her, sees her helmet and listless, and hurries off.\",hops till he reaches the end of the sidewalk which marks the end of the hopscotch squares too.\n16569,anetv_iDMzTPfELoc,15077,There's a young boy playing hopscotch on his driveway and sidewalk with a girl and another boy. The hopscotch squares,There's a young boy playing hopscotch on his driveway and sidewalk with a girl and another boy.,The hopscotch squares,gold,are seen and the kids are dancing and jumping to the same stage.,boathouse with a brush by those hands shown around the wood.,are drawn all the way from the driveway onto the sidewalk.,give the boy the gel and he keeps going over the grass.\n16570,anetv_iDMzTPfELoc,15078,The hopscotch squares are drawn all the way from the driveway onto the sidewalk. The boy,The hopscotch squares are drawn all the way from the driveway onto the sidewalk.,The boy,gold,is down on the street with his equipment parked up the lawn.,puts on his electric mask and talks to the camera again as he goes down the hill to play.,\"begins hopping on the squares, starting from his driveway.\",falls off into the wall.\n16571,anetv_iDMzTPfELoc,15081,The girl joins him near the sidewalk and walks along his side as he hops across the squares. The boy,The girl joins him near the sidewalk and walks along his side as he hops across the squares.,The boy,gold,continues hopping across all the squares that drawn throughout the other side of the house on the sidewalk.,hops on a straight line then puts his arms around her.,\"bounces off the leg successfully as he falls, swinging in another direction he can.\",\"almost falls back in his swing, and they jump down again.\"\n16572,anetv_iDMzTPfELoc,15085,Two other girls walk besides him as he finishes hopping till the end. After he's done hopping he,Two other girls walk besides him as he finishes hopping till the end.,After he's done hopping he,gold,walks on the street and watches.,keeps his dog on the ground and approaches them.,grabs the certificates from the other hand.,smiles and begins walking back.\n16573,anetv_iDMzTPfELoc,15079,\"The boy begins hopping on the squares, starting from his driveway. Then he\",\"The boy begins hopping on the squares, starting from his driveway.\",Then he,gold,goes up the curves of the rope that falls apart and starts to get across the bars with the stilts.,\"puts the bowl empty and ends by walking out, sitting in the sand and is showing himself how to arrange the christmas tree.\",walks along a sidewalk across the street.,hops all the way to the sidewalk where more squares are drawn with chalk.\n16574,anetv_iDMzTPfELoc,15084,He hops till he reaches the end of the sidewalk which marks the end of the hopscotch squares too. Two other girls,He hops till he reaches the end of the sidewalk which marks the end of the hopscotch squares too.,Two other girls,gold,\"are helped to branch, they walk on.\",continues to take a swing on the animal mouths.,walk besides him as he finishes hopping till the end.,do the same thing that would make it.\n16575,anetv_iDMzTPfELoc,15082,The boy continues hopping across all the squares that drawn throughout the other side of the house on the sidewalk. He,The boy continues hopping across all the squares that drawn throughout the other side of the house on the sidewalk.,He,gold,\"squeezes two wet forms in the left hand, and stops.\",\"hops all around his street on the sidewalk as he passes a stop sign, and a street with cars and traffic.\",see what he's doing and kisses the front of the classroom.,hugs herself as she twitches by.\n16576,anetv_iDMzTPfELoc,13356,The boy continues jumping all along the sides with a woman standing next to him. The camera person,The boy continues jumping all along the sides with a woman standing next to him.,The camera person,gold,\"pushes the object around, begins racing down the driveway while the camera captures her movements.\",continues to slow downward on the ice before looking back to the camera.,wins and shows the position in slow motion while waving to the camera.,shows their face and ends with the boy walking and talking.\n16577,anetv_iDMzTPfELoc,13355,A small child is seen starting a hop scotch game while going down the street and others walking into frame. The boy,A small child is seen starting a hop scotch game while going down the street and others walking into frame.,The boy,gold,continues jumping all along the sides with a woman standing next to him.,continues playing the bagpipes playing while the camera zooms in on the story a person behind him.,playing the set kneels down in front of the kids and begins to play.,in the stage rides the mower closer to the camera and begins talking.\n16578,anetv_iDMzTPfELoc,15080,Then he hops all the way to the sidewalk where more squares are drawn with chalk. The girl,Then he hops all the way to the sidewalk where more squares are drawn with chalk.,The girl,gold,grins at the corners.,pushes past and notices the area around his neck as she locks up and starts walking around her yard.,\"then dashes from the group to the yard, stretched steps.\",joins him near the sidewalk and walks along his side as he hops across the squares.\n16579,anetv_WaFDgdqY1DM,2179,The camera pans around and back to the monkey who is now sitting on the branch. The monkey,The camera pans around and back to the monkey who is now sitting on the branch.,The monkey,gold,is then seen eating food and looking at the camera.,give a thumbs up and see the people something pulling the child further down the slope.,\"lifts the pinata slowly from the tree, then to catch it and eventually reaches the living.\",rolls off the ski to the right and swings back into the pool.\n16580,anetv_WaFDgdqY1DM,6198,The monkey stops and eats something in its hand. It,The monkey stops and eats something in its hand.,It,gold,continues to see under the crowd and someone and the boy continue swinging their horses.,uses its foot to scratch its head.,then puts the dogs face down and pets the paw which is attached to the dog.,starts walking down the sidewalk.\n16581,anetv_WaFDgdqY1DM,2178,A large monkey is seen walking up onto a tree branch. The camera,A large monkey is seen walking up onto a tree branch.,The camera,gold,pans around the man standing ice cream.,watches the men push up and down in it.,zooms in on the dog grabbing onto his leash.,pans around and back to the monkey who is now sitting on the branch.\n16582,anetv_WaFDgdqY1DM,6197,A small monkey is walking along a branch. The monkey,A small monkey is walking along a branch.,The monkey,gold,walk off and has a hard time recovering on a stool.,is moving back and fourth on the floor.,picks up a motorcycle which is rolling over the land sleeping on the floor.,stops and eats something in its hand.\n16583,anetv_cjFHlsWZY4c,4805,Someone is drawing on tape and cutting it out. They,Someone is drawing on tape and cutting it out.,They,gold,dip a paint brush in paint and paint it put it on a sponge.,secure the hook - on end.,were called humans of the victor.,\", someone is transfixed.\"\n16584,anetv_cjFHlsWZY4c,4807,They put that on their nail and put a top coat on. They,They put that on their nail and put a top coat on.,They,gold,eat the cookies and put it on the coffee tray as they decorate a cake and make the cake.,put glitter over the heart on the nail.,put the nails on their nails.,see the finished table with the curling iron.\n16585,anetv_cjFHlsWZY4c,4806,They dip a paint brush in paint and paint it put it on a sponge. They,They dip a paint brush in paint and paint it put it on a sponge.,They,gold,continue painting on shimmering panels and through furniture attachments to clean different colors of the purple paint.,put that on their nail and put a top coat on.,put it in the mirror and brushes back it.,\"enter coats, stroking each white ink fingernail.\"\n16586,lsmdc1057_Seven_pounds-98118,5430,\"Someone walks briskly back towards the house, then breaks into a jog. He\",\"Someone walks briskly back towards the house, then breaks into a jog.\",He,gold,\"heave herself against the swinging door, driving a little bit.\",steps back over the picket fence and returns to the workshop.,\"follows him down the spiral staircase at a door, occasionally pausing suddenly.\",finds a pistol in someone's hand.\n16587,lsmdc1057_Seven_pounds-98118,5429,Someone reaches into his jeans' pocket and hands them over. Someone,Someone reaches into his jeans' pocket and hands them over.,Someone,gold,puts his face into his jacket and starts slides out of us.,stand lost inside.,\"walks briskly back towards the house, then breaks into a jog.\",puts.\n16588,lsmdc1057_Seven_pounds-98118,5431,He steps back over the picket fence and returns to the workshop. Someone,He steps back over the picket fence and returns to the workshop.,Someone,gold,places himself on top of the stone carving.,\"sits in a sultry pose, waiting for him.\",is loading a carriage.,watches someone down a staircase while holding the baby.\n16589,lsmdc1057_Seven_pounds-98118,5426,He reaches in for the i d.. Someone,He reaches in for the i d..,Someone,gold,\"sees his open disappear inside, then drops his gaze, lovingly and shuts his eyes.\",welds the blaze from embossed intact.,stretches out his foot.,\"hands the i d to his brother, someone.\"\n16590,lsmdc1057_Seven_pounds-98118,5427,\"Someone, who has put his gift back in the car, looks sheepish. The real someone\",\"Someone, who has put his gift back in the car, looks sheepish.\",The real someone,gold,cuts stroking his insides.,with another averted with brown eyes.,considers uneasily for a moment.,blinks down a headline.\n16591,anetv_7I6v9c00aRA,18612,The man bare foot skis on a rope off the side of a boat attempting to stand up. The man,The man bare foot skis on a rope off the side of a boat attempting to stand up.,The man,gold,\"has the head on the rope, and then he makes a rope.\",stands up and immediately falls into the water at high speed.,drives up and down the street and pack up on snowboard.,swings the fish and swims backwards from the water.\n16592,lsmdc3037_IRON_MAN2-16290,4624,Someone and someone approach a young brunette woman leaning against a white convertible. Someone climbs behind the wheel and someone,Someone and someone approach a young brunette woman leaning against a white convertible.,Someone climbs behind the wheel and someone,gold,rides backwards down the grand road.,puffs on her cigarette.,sits in the passenger seat.,rubs the back of her hand.\n16593,lsmdc3037_IRON_MAN2-16290,4623,Someone autographs Iron Man photos. Someone and someone,Someone autographs Iron Man photos.,Someone and someone,gold,approach a young brunette woman leaning against a white convertible.,give him angry shoves.,wave at the pretty brunette who wears a bemused smile.,share the public laugh.\n16594,lsmdc3037_IRON_MAN2-16290,4622,A blond woman hands someone a note. Someone,A blond woman hands someone a note.,Someone,gold,takes the box and stops her move.,throws the box behind open chair as someone lounges in bed.,is cutting her hair with a kit.,autographs iron man photos.\n16595,lsmdc3037_IRON_MAN2-16290,4621,\"Brown - haired bodyguard, someone Hogan, leads someone outside. A blond woman\",\"Brown - haired bodyguard, someone Hogan, leads someone outside.\",A blond woman,gold,with sunglasses on with another stick peek out from the driver's door.,\"notices her spotless, blonde couple.\",hands someone a note.,walks into glass cups and taps a button.\n16596,lsmdc3037_IRON_MAN2-16290,4626,\"The woman holds up a federal marshal's badge. Smiling, she\",The woman holds up a federal marshal's badge.,\"Smiling, she\",gold,removes round tuxedo belts.,sets her computer aside.,steps away from the car.,slaps someone 'cheek with her thumb.\n16597,lsmdc3071_THE_DESCENDANTS-5756,17708,\"Someone pushes out a breath and shifts her attention to her mother. From the corridor, someone\",Someone pushes out a breath and shifts her attention to her mother.,\"From the corridor, someone\",gold,unveils the real energy wand.,\"peers into the room, then enters with his wife and son behind him.\",\"sits on the ledge beneath the blankets, resting her head against the pillow, her brow quince revealed.\",closes her eyes to his.\n16598,lsmdc3071_THE_DESCENDANTS-5756,17704,He kisses the top of her head. He,He kisses the top of her head.,He,gold,strokes his head with his thumb.,leans in to kiss her.,\"caresses her hair, then tilts her face up to meet his gaze.\",\"circles her neck, pulling her legs up.\"\n16599,lsmdc3071_THE_DESCENDANTS-5756,17697,They gaze at their unresponsive mother. She,They gaze at their unresponsive mother.,She,gold,\"rises to her feet as someone sits them on the top of the lifeboat and looks up at someone, his eyes narrowing.\",lies with each hand curled around a rolled up towel and her mouth hanging slack.,feels his own ascend.,tenderly faces his father's reflection in a mirror.\n16600,lsmdc3071_THE_DESCENDANTS-5756,17707,Someone lifts his eyes to his older daughter. Someone,Someone lifts his eyes to his older daughter.,Someone,gold,pushes out a breath and shifts her attention to her mother.,caresses her lips with a gentle gaze.,carries the sponge to the dining room.,stares patiently as the officer straightens his tie.\n16601,lsmdc3071_THE_DESCENDANTS-5756,17694,\"As she stirs a little, getting comfortable, the image dissolves to a corridor in the hospital. Someone, his daughters, and someone\",\"As she stirs a little, getting comfortable, the image dissolves to a corridor in the hospital.\",\"Someone, his daughters, and someone\",gold,flash uncomfortably as someone emerges in the ransacked room.,someone hurry someone up a staircase.,trudge in from around a corner.,\"wrapped in a cardboard pole, get out of the elevator position.\"\n16602,lsmdc3071_THE_DESCENDANTS-5756,17711,\"As someone leads her uncle and grandmother to someone's bedside, someone shifts his gaze to someone. The boy\",\"As someone leads her uncle and grandmother to someone's bedside, someone shifts his gaze to someone.\",The boy,gold,is struggling to get some money.,\"gives him a sullen look, then turns away.\",\"looks back with etched disappointment, then drops his gaze.\",\"gazes up at someone, who finds more photos and hangs up.\"\n16603,lsmdc3071_THE_DESCENDANTS-5756,17699,\"Someone, someone, and someone look on from in front of someone's bed. The grief counselor's lips\",\"Someone, someone, and someone look on from in front of someone's bed.\",The grief counselor's lips,gold,spread into a faint smile.,form a sympathetic line.,burn as they climb in the car.,curl into a sliding smile.\n16604,lsmdc3071_THE_DESCENDANTS-5756,17703,The bereaved little girl watches the woman leave with someone. He,The bereaved little girl watches the woman leave with someone.,He,gold,gets out of the car and drives up the street and goes by stepping into someone.,smacks the side of someone's eyelids.,goes to map a note in someone's wallet.,kisses the top of her head.\n16605,lsmdc3071_THE_DESCENDANTS-5756,17696,\"As the girls approach someone's bed, someone wraps her arm around her sister's shoulders. They\",\"As the girls approach someone's bed, someone wraps her arm around her sister's shoulders.\",They,gold,gaze at their unresponsive mother.,remain atop gazes shut.,embrace and kiss each other.,put the arm over an alien car and bend over.\n16606,lsmdc3071_THE_DESCENDANTS-5756,17709,\"From the corridor, someone peers into the room, then enters with his wife and son behind him. Someone\",\"From the corridor, someone peers into the room, then enters with his wife and son behind him.\",Someone,gold,sets aside his work.,joins someone in the doorway.,frowns and glances at someone.,\"looks in her eyes, as she reads.\"\n16607,lsmdc3071_THE_DESCENDANTS-5756,17706,Someone gently slides her hands down her sister's ponytail. Someone,Someone gently slides her hands down her sister's ponytail.,Someone,gold,sets her slim arm firmly behind his back and presses her hand to his back.,\"turns to maps and rocks his way beneath one of the compares cabinet, then someone.\",lifts his eyes to his older daughter.,gives someone a wide curtsey.\n16608,lsmdc3071_THE_DESCENDANTS-5756,17700,The grief counselor's lips form a sympathetic line. Someone's eyes fill with tears and she,The grief counselor's lips form a sympathetic line.,Someone's eyes fill with tears and she,gold,shifts down eyebrows.,gives a wounded sheepish.,stands and reaches into a position book.,turns to her father.\n16609,lsmdc3071_THE_DESCENDANTS-5756,17695,\"Someone, his daughters, and someone trudge in from around a corner. As the girls approach someone's bed, someone\",\"Someone, his daughters, and someone trudge in from around a corner.\",\"As the girls approach someone's bed, someone\",gold,sips his tea and looks back at his colleagues.,sleeps curled up on a sofa in her chemistry office.,wraps her arm around her sister's shoulders.,\"aims his arms out of the net and down the hall, then pauses to find a couple laughing in.\"\n16610,lsmdc3071_THE_DESCENDANTS-5756,17698,\"Now, a kind - faced woman addresses someone. Someone, someone, and someone\",\"Now, a kind - faced woman addresses someone.\",\"Someone, someone, and someone\",gold,look on from in front of someone's bed.,hurry down a road.,follow down the sidewalk towards the polished steps.,sit in a restaurant.\n16611,lsmdc3071_THE_DESCENDANTS-5756,17693,\"In the window seat beside her big sister, someone sleeps. As she stirs a little, getting comfortable, the image\",\"In the window seat beside her big sister, someone sleeps.\",\"As she stirs a little, getting comfortable, the image\",gold,dissolves to a corridor in the hospital.,shows no signs of music.,\"goes black, revealing the shape.\",cuts to the address of the park.\n16612,lsmdc3071_THE_DESCENDANTS-5756,17710,\"Someone sets aside his work. As someone leads her uncle and grandmother to someone's bedside, someone\",Someone sets aside his work.,\"As someone leads her uncle and grandmother to someone's bedside, someone\",gold,looks down at someone.,stands on the molding.,kicks a toy beside someone.,shifts his gaze to someone.\n16613,anetv_i69NhEDno_M,11461,They are paddling in a boat down a river. A man,They are paddling in a boat down a river.,A man,gold,is riding the sled through the water.,is seen driving the boat in the water.,is standing in the water holding an oar.,holds two frisbee around his dog as the air blows the water away with him.\n16614,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60219,18499,\"Someone slumps into a chair, his head in his hands. Someone\",\"Someone slumps into a chair, his head in his hands.\",Someone,gold,soap on his head.,bows at someone.,falters.,remains down.\n16615,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60219,18497,\"A shadow passes across someone. for a split second he becomes a wrinkled creature with a hungry face and someone, groping hands. Someone\",\"A shadow passes across someone. for a split second he becomes a wrinkled creature with a hungry face and someone, groping hands.\",Someone,gold,\"comes breathlessly up the stairs of someone's house, swinging alone, leaving someone standing above as someone collapses in bed.\",steps out of the building in silence to get a figure of turning it wide.,\"stops, then stands and raises one arm as he continues walking.\",\"pulls away, shocked.\"\n16616,anetv_p4pj27t5B6g,6367,A young man talks while showing a saxophone. The young man,A young man talks while showing a saxophone.,The young man,gold,bops around as the hispanic man is interviewed.,plays the violin while talking.,takes the flute and someone points to the instrument.,points the keys of the saxophone while talking.\n16617,anetv_p4pj27t5B6g,6368,\"The young man points the keys of the saxophone while talking. Then, the young man\",The young man points the keys of the saxophone while talking.,\"Then, the young man\",gold,finishes skateboarding for a brief period of time.,plays guitar and comments and keeps playing a game.,fasten the saxophone with a blue ribbon on his neck.,push two buttons a it man talks to jump stilts doing the stunts of shoes.\n16618,anetv_25dJIdZj6Xs,6251,Two people wearing scuba gear are sitting at the edge of a boat with their backs to the water. The person on the right,Two people wearing scuba gear are sitting at the edge of a boat with their backs to the water.,The person on the right,gold,begins to get in the water again.,\"jumps in the lake as she dives under the water, but a large wave crashes over her and falls into the water.\",leans all the way back and splashes in the water.,holding up the kayak.\n16619,anetv_i7L1KNGeEqU,7577,Snowboarder is in big field in white snow. a cubicle in the mountain and,Snowboarder is in big field in white snow.,a cubicle in the mountain and,gold,is snowboarding carpet being hewn.,his team is kayaking down the mountain.,the snow walks down the sidewalk.,slip down the mountain in snowboard.\n16620,anetv_i7L1KNGeEqU,7578,A cubicle in the mountain and slip down the mountain in snowboard. people,A cubicle in the mountain and slip down the mountain in snowboard.,people,gold,\"watch the woman gear the camera, a whole tribe on the mountain back.\",\"are outside in a building, crashing rocks and sealing up a ramp.\",is in cubicle and moving down the mountain in snowboard and pass by a parking lot.,keep pushing - driving.\n16621,lsmdc0009_Forrest_Gump-50893,4994,Someone continues to stare at someone. Someone then,Someone continues to stare at someone.,Someone then,gold,picks up more cards and kisses him.,looks frightened and starts to back away.,pushes someone's wand away.,\"twitches hard, sweaty.\"\n16622,lsmdc0009_Forrest_Gump-50893,4996,\"He looks at someone, then at someone. Someone\",\"He looks at someone, then at someone.\",Someone,gold,immediately gets up and a paper bag hangs from the desk in the middle of the room.,walks into the room and sits down next to someone.,\"'s mouth hangs open, his brow knitted.\",is struck from the screen.\n16623,lsmdc0009_Forrest_Gump-50893,4993,The little boy runs into other room and picks up tv remote control. Someone,The little boy runs into other room and picks up tv remote control.,Someone,gold,\"in the background, someone, carrying a torch, has starting out.\",continues to stare at someone.,takes it off and realizes he has lost his mind.,hangs close to listen in his tune.\n16624,lsmdc0009_Forrest_Gump-50893,4995,Someone then looks frightened and starts to back away. Someone,Someone then looks frightened and starts to back away.,Someone,gold,\"stares after him, then comes back to his seat.\",turns and looks at someone in the other room.,\"swings frantically, aiming at someone.\",raises his arm as someone exits the car.\n16625,anetv_C8IEqXTBod0,11561,We see the title screen for the video. We,We see the title screen for the video.,We,gold,change to a woman putting on her cold weather clothes.,see the tractor throw again.,see cars on a street throwing high waves.,see men playing in a roofed gym.\n16626,anetv_C8IEqXTBod0,11563,She grabs a shovel and walks away. We,She grabs a shovel and walks away.,We,gold,are suvs out through the garage and outside of a house.,\"begin a race on the track, and no one pass or anything.\",see the lady sitting and laying on a chair and reading.,paint and a circle dips and fills everything.\n16627,anetv_C8IEqXTBod0,11566,We see articles online about shoveling. The lady,We see articles online about shoveling.,The lady,gold,walks outside the arena helping with some gifts.,\"holds it unlit, trying to put some new ingredients on the back.\",begins kicking the young plastic up and hobbles.,is jumping and warming up.\n16628,anetv_C8IEqXTBod0,11562,We change to a woman putting on her cold weather clothes. She,We change to a woman putting on her cold weather clothes.,She,gold,faces her view with her blonde haired friend.,grabs a shovel and walks away.,walks off wearing a white someone's blouse.,puts on a blanket in a bed.\n16629,anetv_C8IEqXTBod0,11565,The lady is outside shoveling the snow and talking. We,The lady is outside shoveling the snow and talking.,We,gold,see how the woman wash a car with canister.,see articles online about shoveling.,see the riding papers.,see a lady wheeled the camel over a paved street.\n16630,anetv_LtdO87DWEHM,6118,Several clips of shown of a person riding down city streets on roller blades. The person continues riding along the streets and then text,Several clips of shown of a person riding down city streets on roller blades.,The person continues riding along the streets and then text,gold,is reversed.,appears across the screen.,is shown of them falling at all angles.,appears to give them workout hunches.\n16631,anetv_0ys4fnsu9Jc,11862,A small child is seen standing on a trampoline and throwing a ball off into the distance. More kids,A small child is seen standing on a trampoline and throwing a ball off into the distance.,More kids,gold,are shown in the game as the person throws sand away.,are seen rollerblading around on obstacles and hitting a pinata.,are seen picking up balls and throwing them to the other side.,are shown run around the field and speaking to the camera.\n16632,anetv_0ys4fnsu9Jc,11863,More kids are seen picking up balls and throwing them to the other side. More kids,More kids are seen picking up balls and throwing them to the other side.,More kids,gold,are seen throwing balls and playing dodgeball with one another.,are seen running down the hill watching as the camera follows their movements and the people interviewed.,begin a funny game of squash and ends with one speaking to the camera.,walk around and slide down the adults past the guards.\n16633,anetv_Zfo0XXcWXiU,3842,A woman brushes and dries her hair. The woman,A woman brushes and dries her hair.,The woman,gold,sets a towel on her hair.,shows the photo for her.,adds a piece of the hair and shows it to the camera.,puts the blow dryer down and brushes her hair again.\n16634,anetv_McwVhHxdr5g,11796,A little boy is riding inline skates down a driveway. He,A little boy is riding inline skates down a driveway.,He,gold,is pulling dirt bikes along the road.,is going past a course.,gets back on the bike and pumps his fist.,\"waves his arms, trying to keep his balance.\"\n16635,anetv_McwVhHxdr5g,11797,\"He waves his arms, trying to keep his balance. He\",\"He waves his arms, trying to keep his balance.\",He,gold,\", he slams the car door shut.\",balances on someone 'rope and knocks on the frame as he jumps.,\"runs, then falls on the skates.\",stumbles back onto the bed and looks down into the water.\n16636,anetv_iwHZqcYwZYU,14520,\"A man steps on a diving board and jumps. Then, the man\",A man steps on a diving board and jumps.,\"Then, the man\",gold,takes a turn and lands heavily on the board.,dismounts again from the water.,pass over the bar and lifts his legs to the lane to dive.,flips three times and and dive in the pool.\n16637,anetv_hANXaoStVR0,7278,He is in the pool playing water polo with a yellow ball and two other people. He throws the ball across and the people sitting by the pool and,He is in the pool playing water polo with a yellow ball and two other people.,He throws the ball across and the people sitting by the pool and,gold,try to help their drum.,are out of their place.,doing the same thing.,watching him play cheer loudly.\n16638,anetv_hANXaoStVR0,7277,There's a man in the swimming pool playing water polo. He,There's a man in the swimming pool playing water polo.,He,gold,is in the pool playing water polo with a yellow ball and two other people.,is playing a game of ping pong with a yellow net.,rolls up the fishes and takes the ball out of the water.,jumps in diving gear when the man hits a ball.\n16639,lsmdc0029_The_Graduate-64029,9954,She takes out her key and opens the door. Someone,She takes out her key and opens the door.,Someone,gold,\"opens the door to someone, who opens the passenger door.\",enters with two open doors for a young man and opens the door.,picks up the receiver.,turns and walks down the hall.\n16640,lsmdc0029_The_Graduate-64029,9955,She pours herself a drink. She,She pours herself a drink.,She,gold,\"tastes the bar, revealing an attractive empty stag on its back.\",hands him a drink.,pours it back in someone.,feeds some more milk.\n16641,lsmdc0029_The_Graduate-64029,9953,They move to the door. She,They move to the door.,She,gold,looks behind a guy silver - face partition and cocks it.,reaches out and picks up another song.,starts to enter someone's office moves at the open door of a house.,takes out her key and opens the door.\n16642,lsmdc0029_The_Graduate-64029,9952,Someone gets out and goes around to her side and opens the door. They,Someone gets out and goes around to her side and opens the door.,They,gold,step back on her.,are hanging from an outer wall with a pin and carpet.,continue to stare as our view rises from the pavement.,move to the door.\n16643,anetv_LHiui4s2X1s,13027,Two people are seen standing in front of a large crowd with one cheering and shoving his arms back and fourth. The men,Two people are seen standing in front of a large crowd with one cheering and shoving his arms back and fourth.,The men,gold,jump into one another while the people continue to fight on the end.,continue their step as they applaud.,continue to play with one another and lead into two players in a sumo wrestling competition.,\"throw the ball back and fourth and switch places with another, ending with the same man cheering and hugging another.\"\n16644,anetv_MWn4qozlaMs,7383,A woman is seen pulling food out of a fridge and speaking to a girl who walks downstairs. They women,A woman is seen pulling food out of a fridge and speaking to a girl who walks downstairs.,They women,gold,wash the clothes and drive away.,begin going around a corner with people leading him on and leaving.,are seen steering each side as he enjoys food and eats some ice cream.,continue speaking when a man also walks down the stairs.\n16645,anetv_p1_6T9d4ZuY,5827,She grasps the bar and begins to flip herself around the bar before leaping to the next bar and propelling herself up and over it repeatedly. She,She grasps the bar and begins to flip herself around the bar before leaping to the next bar and propelling herself up and over it repeatedly.,She,gold,moves straight toward the cushion and continues to do the same thing.,launches herself in the air and lands on the mat.,continues paws and flips in the end.,flips the next blue rope and shows several more moments of replays.\n16646,anetv_V9MTU7xLukc,17517,People are walking on the rooftop in the right part of the building. people,People are walking on the rooftop in the right part of the building.,people,gold,are standing on front of an inflated ski structure.,are in a rooftop walking and cleaning.,take turns climbing onto the railing.,are observing the big dark hall with tents.\n16647,anetv_V9MTU7xLukc,17516,Two men are on a rooftop cleaning the red roof with soap. people,Two men are on a rooftop cleaning the red roof with soap.,people,gold,are walking on the rooftop in the right part of the building.,are standing ready with snow mobiles.,are running feet running down a track.,are removing a tire from the fence and are hanging up and hanging with roller smoothen.\n16648,anetv_V9MTU7xLukc,13793,Two people are seen standing on a roof while the camera pans around them painting. The camera,Two people are seen standing on a roof while the camera pans around them painting.,The camera,gold,pans up to show the old stages of the time.,continues panning around the are and watches the people continuing to paint.,leads into clips from various parts of clothing and sunscreen on to the sides.,pans up to show video of the distant swimming near the ceiling.\n16649,anetv_RrVsNvO6Yd4,6892,A group of men are seen standing around an begin break dancing. People,A group of men are seen standing around an begin break dancing.,People,gold,are seen sitting in a field putting a trophy on.,are off in the background followed by several people walking around and playing out.,walk onto the stage and look to one another.,watch on the side as the men take turns dancing around.\n16650,anetv_RrVsNvO6Yd4,13009,More people take turns with the man break dancing in the middle. More men,More people take turns with the man break dancing in the middle.,More men,gold,continue taking turns with one another while people watch on the sides.,\"continue to play around the block, counting equipment and others involved.\",run around the rooms and fall to the floor.,join in pool gear jumping with them and throws volleyball.\n16651,anetv_RrVsNvO6Yd4,6893,People watch on the side as the men take turns dancing around. The men,People watch on the side as the men take turns dancing around.,The men,gold,bow and lead into a fencing match and others cheer holding or standing and explaining.,continue to walk in and out of the circle and dance.,take a bow and proceed to hold up the weights.,continue dancing and dancing as they continue to play.\n16652,anetv_RrVsNvO6Yd4,13008,A large group of people are seen standing in a circle with a man break dancing in the middle. More people,A large group of people are seen standing in a circle with a man break dancing in the middle.,More people,gold,are seen riding up the stage while the others dance around them.,are seen sitting down on a audience clapping and performing flips.,take turns with the man break dancing in the middle.,walk around the stage and end with several shots of people shooting bows and arrows.\n16653,anetv_i2u80Y3BMYs,9440,One man is then shown and he bends down and shows the proper way to lift the bar with weight on it. A replay is then shown and the boy,One man is then shown and he bends down and shows the proper way to lift the bar with weight on it.,A replay is then shown and the boy,gold,drops in the end to demonstrating how to properly iron it.,winning along with the host into presenting the weight rope to his body.,bends from the knees and then flips his wrist and brings it over his shoulder as he goes down into a squatting position.,practice using the pole torching out of lens near his right eye and still speaking to the camera.\n16654,anetv_i2u80Y3BMYs,9439,Two men in work out clothes are standing up against the wall and they begin to talk about working out. One man is then shown and he,Two men in work out clothes are standing up against the wall and they begin to talk about working out.,One man is then shown and he,gold,\"demonstrates what he should do and the other woman begins to pull into constant pain, knowing the bug has color gone on.\",bends down and shows the proper way to lift the bar with weight on it.,finally allowed all the equipment around the table until he is finished as the two continues to play the floor.,has an assortment of pistols and begins to hit the tennis back and forth by cutting each other.\n16655,anetv__Rcb5kuhn90,6508,A woman manipulates a Rubik's cube while a man watches on in a competitive setting. Two men,A woman manipulates a Rubik's cube while a man watches on in a competitive setting.,Two men,gold,then hit a ball talking.,sit on the chopping board.,walk through the camera frame in the background.,\"stand on the border of the court, then continue practicing.\"\n16656,anetv_LFeoVokXAFY,13467,He swings it at a pinata shaped like spongebob squarepants. He,He swings it at a pinata shaped like spongebob squarepants.,He,gold,\"sits up, a tear running down someone's forehead.\",\"stares unsure of what to do, but, out different way.\",\"misses several times, and keeps swinging.\",throws away drawing pieces to someone.\n16657,anetv_kIjYdddY3Xk,2843,He is wiping his shoe down. He,He is wiping his shoe down.,He,gold,turns around and smiles at the camera.,uses a towel to polish the shoe with a rag.,is spraying the sink with a white scrub.,washes the shoe with a rag.\n16658,anetv_VOxaxr5LPiQ,9340,A shop attendant holds up the hula hoop and shows how to grip it. The woman,A shop attendant holds up the hula hoop and shows how to grip it.,The woman,gold,throws the disc on the table and talks to the camera.,drops the hoop and lets it spin around her body to the ground.,flips on the hoop then walks away holding the bow and exercising to hula it.,begins moving the hula hoop by her hair and occasionally sitting in her braid.\n16659,anetv_VOxaxr5LPiQ,9341,The woman drops the hoop and lets it spin around her body to the ground. The woman,The woman drops the hoop and lets it spin around her body to the ground.,The woman,gold,stops at her end and starts wrestling a few more times.,poses when the man gets to the end preparing her.,does flips and backflips.,drops the hula hoop and lets it spin around her body then catches it.\n16660,anetv_VOxaxr5LPiQ,9342,The woman drops the hula hoop and lets it spin around her body then catches it. The woman,The woman drops the hula hoop and lets it spin around her body then catches it.,The woman,gold,practices swinging the hoop between two legs.,takes a black flip down and hits it.,pauses for a second time then faces her.,takes off her hat and is shown again once again.\n16661,anetv_VOxaxr5LPiQ,9344,The woman catches the spinning hula hoop as it falls between her legs. The woman,The woman catches the spinning hula hoop as it falls between her legs.,The woman,gold,spins the hoop upwards around her body.,performs her routine with a baton and continues getting a piercing in her hand while looking off into the distance.,mounts and pants on the girl's upper body.,\"spins and catches another baton, runs and presses at the pinata.\"\n16662,anetv_VOxaxr5LPiQ,9343,The woman practices swinging the hoop between two legs. The woman,The woman practices swinging the hoop between two legs.,The woman,gold,does so as she finishes stretching her legs.,catches the spinning hula hoop as it falls between her legs.,pose on the mat as they come.,\"finally swings her body away, bounces her ball again and walks away.\"\n16663,lsmdc1059_The_devil_wears_prada-98868,8978,\"Someone leads someone off and someone checks out the art, standing alone to admire the floor - to - ceiling, blown - up black - and - white photographs of street scenes. Someone\",\"Someone leads someone off and someone checks out the art, standing alone to admire the floor - to - ceiling, blown - up black - and - white photographs of street scenes.\",Someone,gold,is at the opening too.,\"is at the arch, frowning against a beautiful neutral - wind stick.\",\"balcony - laden, water rains greenish interlocked windows of the tower.\",\"stacked in a white curtains cover a wall wall shows the clean - featured, white man, mr.\"\n16664,lsmdc1031_Quantum_of_Solace-83983,16904,\"Light surrounds the sun, and a shadowy someone aims his pistol. Someone's shadow\",\"Light surrounds the sun, and a shadowy someone aims his pistol.\",Someone's shadow,gold,follows warily as the mighty fires him.,is smudged by ash.,passes in the darkened sky.,passes over the dunes.\n16665,lsmdc1031_Quantum_of_Solace-83983,16883,He guns his shiny Aston - Martin past a line of traffic as his pursuers open up. Bullet holes,He guns his shiny Aston - Martin past a line of traffic as his pursuers open up.,Bullet holes,gold,pepper the aston's windows.,fly over the back of the last man's tiny structure.,approach from the keys towards the diner.,\"strike him, knocking him down.\"\n16666,lsmdc1031_Quantum_of_Solace-83983,16879,Towering crags rise out of a shining sea. Two powerful cars,Towering crags rise out of a shining sea.,Two powerful cars,gold,speed along a tunnel which runs along the coast.,fly overhead into the air with a strong wind.,begin galloping down the docks where people are on.,sway slowly in the wind.\n16667,lsmdc1031_Quantum_of_Solace-83983,16901,\"He stops, gets out and opens the boot. A man\",\"He stops, gets out and opens the boot.\",A man,gold,hangs the malfunctioning lapel.,blinks up at him.,leaps in behind the shaking panel with his eyes shut.,sets it behind his counter.\n16668,lsmdc1031_Quantum_of_Solace-83983,16895,The Alfa draws alongside and the two cars trade dusty paintwork. A bulldozer,The Alfa draws alongside and the two cars trade dusty paintwork.,A bulldozer,gold,\"runs down the cottage, the truck pauses.\",head rolls to her side.,looms in front of them.,needle pulls someone by the railings.\n16669,lsmdc1031_Quantum_of_Solace-83983,16882,\"A gun is caught, the driver checks his rear view mirror. He\",\"A gun is caught, the driver checks his rear view mirror.\",He,gold,guns his shiny aston - martin past a line of traffic as his pursuers open up.,\"struggles against the chevrolet, clutching the newspaper.\",\"eyes a zombie flees, his pistol raised.\",turns to the window.\n16670,lsmdc1031_Quantum_of_Solace-83983,16912,Someone falls towards the expanding people in the eye. He,Someone falls towards the expanding people in the eye.,He,gold,\"rises, trailing the lips of the statue from the left.\",replacing him with an ice cream civilian.,raises his pistol and fires in super slow - motion.,drips against their blood.\n16671,lsmdc1031_Quantum_of_Solace-83983,16881,\"A shiny wheel flashes, a driver's eyes are fixed on the road. A gun is caught, the driver\",\"A shiny wheel flashes, a driver's eyes are fixed on the road.\",\"A gun is caught, the driver\",gold,opens its door to the convertible car.,watches the boy's swerving as the labels prevents him very well.,checks his rear view mirror.,starts to get into the car.\n16672,lsmdc1031_Quantum_of_Solace-83983,16894,The Alfa gunman is leaning out of the car's passenger window. Someone,The Alfa gunman is leaning out of the car's passenger window.,Someone,gold,looks down and looks into a line.,\"drives forward, gazing into the driver's window at the street below.\",ducks as glass and bullets fill the aston.,stubs out the remaining stays by the lapel.\n16673,lsmdc1031_Quantum_of_Solace-83983,16885,He swerves past the truck which pulls out on him. Someone,He swerves past the truck which pulls out on him.,Someone,gold,lies on its back in the park and lies on top of someone.,presses a gas to someone's side.,brakes hard causing the metal to rip his door open sending the aston spinning down the road in front of the truck.,runs into the cockpit with the evil rottweiler.\n16674,lsmdc1031_Quantum_of_Solace-83983,16896,Both cars swerve round it. Someone,Both cars swerve round it.,Someone,gold,climbs out of the car.,leaves a jetty in the back barrier then mimes had kicks him against the wall.,looks back at someone's car.,draws a machine - gun.\n16675,lsmdc1031_Quantum_of_Solace-83983,16908,A womans naked body emerges from the flowing sand. Someone,A womans naked body emerges from the flowing sand.,Someone,gold,is shaking hands with someone.,holds it above his heart.,turns aiming his gun.,downs the pace with the water.\n16676,lsmdc1031_Quantum_of_Solace-83983,16907,Someone stands in the low light. A womans naked body,Someone stands in the low light.,A womans naked body,gold,leaps in front of him.,is pulled down behind him.,is lifted up into the air.,emerges from the flowing sand.\n16677,lsmdc1031_Quantum_of_Solace-83983,16892,He swerves past tracked excavators and down a winding bumpy track in front of a smooth new quarry rock face. The Land Rover,He swerves past tracked excavators and down a winding bumpy track in front of a smooth new quarry rock face.,The Land Rover,gold,make the way up.,halts the skiptracer on a narrow line and does the ride.,plows into a building and off the edge of a cliff.,\"stretches out, which slowly slides across.\"\n16678,lsmdc1031_Quantum_of_Solace-83983,16891,The Aston - Martin followed by the black Alfa - Romeo driving towards the quarry. The cops,The Aston - Martin followed by the black Alfa - Romeo driving towards the quarry.,The cops,gold,glimpse the cars speed over a bridge.,spot him and spot the village on a downtown plaza which a variety of locations.,slides it on an overpass.,rip up the jeep with a spare.\n16679,lsmdc1031_Quantum_of_Solace-83983,16889,But his pursuers hit the truck head on. Another Alfa Romeo,But his pursuers hit the truck head on.,Another Alfa Romeo,gold,falls out of a highway at night.,is still in the chase.,knocks someone to the ground.,drives someone in the opposite direction.\n16680,lsmdc1031_Quantum_of_Solace-83983,16880,\"Two powerful cars speed along a tunnel which runs along the coast. A shiny wheel flashes, a driver's eyes\",Two powerful cars speed along a tunnel which runs along the coast.,\"A shiny wheel flashes, a driver's eyes\",gold,towing the motorbike expertly.,\"widened, a small, and now stone truck smashed up beneath it.\",are fixed on the road.,\"have turned caught in the headlights, as someone stops with the others.\"\n16681,lsmdc1031_Quantum_of_Solace-83983,16898,Someone drives the dusty battered Aston into a medieval Italian town with stone buildings and narrow streets. A lofty campanile bell tower,Someone drives the dusty battered Aston into a medieval Italian town with stone buildings and narrow streets.,A lofty campanile bell tower,gold,sits in the middle behind her.,dominates the huddle of buildings.,stands behind a gleaming backdrop with zumba trees.,sits in the sand on a plain hillside surrounded by four warden cases.\n16682,lsmdc1031_Quantum_of_Solace-83983,16906,A naked woman lies over the dunes in the half light. Someone,A naked woman lies over the dunes in the half light.,Someone,gold,looks up at the white saleswoman.,stands in the low light.,lays back on the couch.,moves the wheelchair in front apron and smiles.\n16683,lsmdc1031_Quantum_of_Solace-83983,16886,Someone brakes hard causing the metal to rip his door open sending the Aston spinning down the road in front of the truck. He,Someone brakes hard causing the metal to rip his door open sending the Aston spinning down the road in front of the truck.,He,gold,regains control and speeds off.,\"struggles to hold it away as he runs between the table, toward the freeway.\",parks a few feet across the road as quickly trundles down a road of snow.,collapses over his shoulder.\n16684,lsmdc1031_Quantum_of_Solace-83983,16913,He raises his pistol and fires in super slow - motion. The bullet,He raises his pistol and fires in super slow - motion.,The bullet,gold,knocks her ankle to the ground.,spins slowly as it flies.,escapes and points his gun.,kills the dead woman.\n16685,lsmdc1031_Quantum_of_Solace-83983,16888,He locks into a gap. But his pursuers,He locks into a gap.,But his pursuers,gold,chop out from the trunk.,\"fall, hide him.\",hit the truck head on.,fall off the balcony onto his head and heads to another.\n16686,lsmdc1031_Quantum_of_Solace-83983,16890,Another Alfa Romeo is still in the chase. Approaching a traffic jam he,Another Alfa Romeo is still in the chase.,Approaching a traffic jam he,gold,veers down a street.,catches it into the curve and drags it through.,climbs into a cable car and pushes an empty street toward the reservoir.,\"swerves left, flying down another tunnel to chase a track's vision off.\"\n16687,lsmdc1031_Quantum_of_Solace-83983,16905,Someone's shadow passes over the dunes. a naked woman,Someone's shadow passes over the dunes.,a naked woman,gold,is sprawled over a branch as he climbs down the bridge.,lies over the dunes in the half light.,in a coat and fresh blood stains his hand.,rides up through the snow.\n16688,lsmdc1031_Quantum_of_Solace-83983,16893,His eyes widen as the Land Rover bounces across the track right in front of him. The Alfa gunman,His eyes widen as the Land Rover bounces across the track right in front of him.,The Alfa gunman,gold,\"lowers from side to side, his arms swinging back and forth in the air.\",follows it as the second rider gives baskets of tentacles and pursues the others.,is leaning out of the car's passenger window.,\"follows closely to his and surrounding gate according to someone, who's walking by him.\"\n16689,lsmdc1031_Quantum_of_Solace-83983,16884,\"The tire on a truck bursts and gets swerved into the Aston's path sliding along the wall as someone, the steely - eyed Aston driver bakes hard. He\",\"The tire on a truck bursts and gets swerved into the Aston's path sliding along the wall as someone, the steely - eyed Aston driver bakes hard.\",He,gold,cocks a gun as he flies next ping is fired knocking off a cell.,\"turns the corner and pops his rear view mirror as he trots down, crashing several times.\",swerves past the truck which pulls out on him.,peeks up with a knife.\n16690,lsmdc0020_Raising_Arizona-57798,18200,Someone's arms rise into frame. With a roll of his wrists two knives,Someone's arms rise into frame.,With a roll of his wrists two knives,gold,appear in his hands.,cut to a small table.,appear dot his chest.,is in his cane.\n16691,lsmdc0020_Raising_Arizona-57798,18216,\"As someone lands against it, banging his head. He\",\"As someone lands against it, banging his head.\",He,gold,\"kicks, swinging his sword fiercely.\",\"drives, leaving someone's family watching.\",sinks to the ground.,grief - stricken someone drives out of the cottage.\n16692,lsmdc0020_Raising_Arizona-57798,18195,\"Someone flat on his back, woozily shaking his head. He weakly\",\"Someone flat on his back, woozily shaking his head.\",He weakly,gold,raises himself on his elbows to look down the street.,pulls up and left to ground.,\"collapses back to his chair, as someone smiles weakly.\",picks up his gun stick and sets it a few feet away.\n16693,lsmdc0020_Raising_Arizona-57798,18193,Looking up the street to where someone is wheeling his bike in a U - turn. He,Looking up the street to where someone is wheeling his bike in a U - turn.,He,gold,is momentarily forced between the two and leaves the locomotive moving along the road.,shoots people to their seats.,brings the swing open.,is not finished yet.\n16694,lsmdc0020_Raising_Arizona-57798,18179,\"Framed against fire and smoke, he is coming directly toward us, and the baby. As they\",\"Framed against fire and smoke, he is coming directly toward us, and the baby.\",As they,gold,\"pass the vent, someone reaches a dark horse along the field.\",\"chant, his eyes focus on someone.\",\"gallop away, everyone runs to the edge of the street and turns their hips.\",top a rise coming from the other direction.\n16695,lsmdc0020_Raising_Arizona-57798,18174,People are climbing into their car. People,People are climbing into their car.,People,gold,are already peeling out.,are going on inside.,crash through a car.,are shooting motorcycles at the top of images of dead indoor yellow figures.\n16696,lsmdc0020_Raising_Arizona-57798,18166,They both twist frantically to look in the back seat. With a loud flat crack something detonates in the front seat and the interior of the car,They both twist frantically to look in the back seat.,With a loud flat crack something detonates in the front seat and the interior of the car,gold,sends up the remains of their clean structure.,appears to be the ford alfa.,zooming out as it glides overhead.,is spattered with bright blue paint.\n16697,lsmdc0020_Raising_Arizona-57798,18158,The teller hits a button on the device and it starts ticking; she shoves it into the sack. He,The teller hits a button on the device and it starts ticking; she shoves it into the sack.,He,gold,comes back to introduce his ad full fun video.,takes off his jacket and gets inside.,\"is grabbing the two sacks and tosses one to someone, who also picks up the baby.\",grabs a handful of potatoes and knocks down the glass with a bottle of coffee.\n16698,lsmdc0020_Raising_Arizona-57798,18206,\"He jerks the bike right, to where an alleyway flanks the side of the bank. Someone\",\"He jerks the bike right, to where an alleyway flanks the side of the bank.\",Someone,gold,is running up the alley toward the front of the bank as someone enters.,soars through the air.,\"stares at his stiff protege, then gives someone a dirty look.\",is leaning open someone's desk.\n16699,lsmdc0020_Raising_Arizona-57798,18160,As the two are backing toward the door. They,As the two are backing toward the door.,They,gold,bolt out the door.,have arranged on a crowded line.,do a little talk.,start for the rear of the fight.\n16700,lsmdc0020_Raising_Arizona-57798,18208,Someone hits the ground hard as his bike spins out from under him. Someone,Someone hits the ground hard as his bike spins out from under him.,Someone,gold,slams the door shut and looks around the direction.,watches as the roadster fills the stone with a tray of food.,\"swings the crowbar as a truck parked, its burning twisted with shattered supports.\",is rising to his feet beyond them as someone nods encouragement to someone.\n16701,lsmdc0020_Raising_Arizona-57798,18209,Someone is rising to his feet beyond them as someone nods encouragement to someone. Someone,Someone is rising to his feet beyond them as someone nods encouragement to someone.,Someone,gold,is reaching back to throw his knife.,peers into the house.,walks out on the bed.,transform over after someone.\n16702,lsmdc0020_Raising_Arizona-57798,18220,Behind him we can see someone casually reaching down and grabbing an ankle. The shot,Behind him we can see someone casually reaching down and grabbing an ankle.,The shot,gold,is a bartender who makes no effort to snap the store.,goes wrong and we see him hit the ball.,\"goes down with the eel swinging back sideways, tackling him to the ground.\",is framed identically to the shot in the arizona nursery where someone pulled a baby from under the crib.\n16703,lsmdc0020_Raising_Arizona-57798,18177,As the explosion echoes and fades we hear the deep rumble of an approaching engine. Someone 'motorcycle,As the explosion echoes and fades we hear the deep rumble of an approaching engine.,Someone 'motorcycle,gold,soar upwards to the ground.,pulls away from the crowd.,appears over the rise.,careens over the small town.\n16704,lsmdc0020_Raising_Arizona-57798,18165,They look at each other. They both,They look at each other.,They both,gold,shake fists and punch.,twist frantically to look in the back seat.,give each other a look.,grab his bags and drive them away.\n16705,lsmdc0020_Raising_Arizona-57798,18207,Closing on someone as she reaches the mouth of the alley. Someone,Closing on someone as she reaches the mouth of the alley.,Someone,gold,\"sits on the stairs, inspecting her bag and walks out of the mall's yellow squares of unfinished sculpture.\",reaches for a bottle of wine.,darts crazily to the road.,hits the ground hard as his bike spins out from under him.\n16706,lsmdc0020_Raising_Arizona-57798,18219,Someone flops over onto his stomach and starts wriggling under the car. Behind him we,Someone flops over onto his stomach and starts wriggling under the car.,Behind him we,gold,see the shot of the flaming van.,see someone wad the umbrella out of his hands.,see the man coming down.,can see someone casually reaching down and grabbing an ankle.\n16707,lsmdc0020_Raising_Arizona-57798,18157,\"Close on her hands, we see her putting in a cash packet that is really only a few bills and a sleeve surrounding and hiding a small plastic device. The teller hits a button on the device and it starts ticking; she\",\"Close on her hands, we see her putting in a cash packet that is really only a few bills and a sleeve surrounding and hiding a small plastic device.\",The teller hits a button on the device and it starts ticking; she,gold,looks very disappointed to it.,looks down and looks up at the volume of the moving ladder.,shoves it into the sack.,rapidly folds it goes out.\n16708,lsmdc0020_Raising_Arizona-57798,18202,As the knife stings the gun out of his hand. Someone,As the knife stings the gun out of his hand.,Someone,gold,\"shakes hands with someone, and wanders off.\",meets someone's amused gaze.,bends to scoop up the knife he dropped.,grabs some cover and strikes the stabs poison.\n16709,lsmdc0020_Raising_Arizona-57798,18168,\"Blue dollar bills snap and flutter around the inside of the car. The car is swerving wildly as someone drives blind, the inside of the windshield\",Blue dollar bills snap and flutter around the inside of the car.,\"The car is swerving wildly as someone drives blind, the inside of the windshield\",gold,\"twisting out, then billows through the air.\",covered with blue paint.,mirrors upside down from the impact.,\"mangled, passes someone off methodically.\"\n16710,lsmdc0020_Raising_Arizona-57798,18167,\"People, both covered in blue, are screaming in rage, fear and incomprehension. Blue dollar bills\",\"People, both covered in blue, are screaming in rage, fear and incomprehension.\",Blue dollar bills,gold,run all over someone's arms as she cocks her head.,snap and flutter around the inside of the car.,is rolled up on the table in front of them.,sit on the dead tree.\n16711,lsmdc0020_Raising_Arizona-57798,18176,From beyond the crest of the road ahead a ball of flame has leapt up with the explosion. As the explosion echoes and fades we,From beyond the crest of the road ahead a ball of flame has leapt up with the explosion.,As the explosion echoes and fades we,gold,see a reverse shape coming from outside.,see two shadowy figures of huge hooves on a dull black earth.,see someone's face disappears into blackness.,hear the deep rumble of an approaching engine.\n16712,lsmdc0020_Raising_Arizona-57798,18181,\"We see the baby sitting in the middle of the street, and someone fast approaching from the background. The extremely low wide shot, locked down to the speeding bike,\",\"We see the baby sitting in the middle of the street, and someone fast approaching from the background.\",\"The extremely low wide shot, locked down to the speeding bike,\",gold,is led by two others who have no one of them.,shows us rushing toward the rear of someone's car seat.,uses a lasso to support a handle.,follows the closing right up on her.\n16713,lsmdc0020_Raising_Arizona-57798,18170,He reaches forward to wipe clear a patch of windshield. As the blue paint is smeared away we,He reaches forward to wipe clear a patch of windshield.,As the blue paint is smeared away we,gold,see a spot of red blood on someone's finger.,see a gray cloud returning from the window.,the marchers turn.,see people's car parked broadside in the middle of the road.\n16714,lsmdc0020_Raising_Arizona-57798,18173,\"Someone is staggering around in shock, looking in disbelief at his own blue body. People\",\"Someone is staggering around in shock, looking in disbelief at his own blue body.\",People,gold,are climbing into their car.,\"are standing on them in wall, a birder pulls a metal so you varnish it and remove the buttons on the side.\",\"- haired and expensive, ticking - eyes stand empty and tearfully.\",steps in front of someone who takes a coffee and takes some champagne.\n16715,lsmdc0020_Raising_Arizona-57798,18188,He is sawing out his second shotgun. Someone,He is sawing out his second shotgun.,Someone,gold,recalls a bullet midair down another man's leg.,\"grabs his hand and gazes at a painting of a small skinned man, sword in a relay courtroom.\",pulls it behind someone and lets him wrap his arm around someone.,\"looks around, reaches and pulls someone down beneath him just as: ka - boom!\"\n16716,lsmdc0020_Raising_Arizona-57798,18213,As he reaches up to unhook a chain from a ring on his vest shoulder. As the free chain,As he reaches up to unhook a chain from a ring on his vest shoulder.,As the free chain,gold,\"tumbles upwards, the vampire raises the gate open.\",\"wraps around her, he cleans the chain.\",\", his concentration disappear again.\",drops down into his palm.\n16717,lsmdc0020_Raising_Arizona-57798,18163,It is the same locked - down shot over the gumballs. Someone is driving; someone,It is the same locked - down shot over the gumballs.,Someone is driving; someone,gold,smiles as he pulls toward his family.,starts pawing through one of the sacks.,puts him into the shower and starts to really fast on him.,is looking to the back of the limousine which gets out of the lift.\n16718,lsmdc0020_Raising_Arizona-57798,18159,\"He is grabbing the two sacks and tosses one to someone, who also picks up the baby. As the two\",\"He is grabbing the two sacks and tosses one to someone, who also picks up the baby.\",As the two,gold,have chased the boy.,are backing toward the door.,\"director enters the bedroom, his friend nods enthusiastically.\",other engineers rush toward him.\n16719,lsmdc0020_Raising_Arizona-57798,18212,\"Someone backs up, swinging the knife - studded plank to make someone keep his distance. As he\",\"Someone backs up, swinging the knife - studded plank to make someone keep his distance.\",As he,gold,reaches up to unhook a chain from a ring on his vest shoulder.,falls backward someone lunges at someone.,crouches someone hands him a condom.,tumbles from a line or pull up.\n16720,lsmdc0020_Raising_Arizona-57798,18169,\"The car is swerving wildly as someone drives blind, the inside of the windshield covered with blue paint. He\",\"The car is swerving wildly as someone drives blind, the inside of the windshield covered with blue paint.\",He,gold,is standing in the middle of a car.,is frozen upright as he touches a photograph of it in the picture.,reaches forward to wipe clear a patch of windshield.,drops to his knees and rests the steering wheel.\n16721,lsmdc0020_Raising_Arizona-57798,18192,As she dives for cover behind a parked car. The explosion,As she dives for cover behind a parked car.,The explosion,gold,flings him to the ground in the middle of the street.,sparks her drone's missile.,\"hits a grenade into the windscreen, sending the car into the sidecar.\",\"throws the suv over the ground, then crumbles on his lawn tire.\"\n16722,lsmdc0020_Raising_Arizona-57798,18199,Someone is again sluing the bike around. Smoking as it,Someone is again sluing the bike around.,Smoking as it,gold,stares past a cloudy - tinted sky.,floats in the air amid the darkness.,\"'s raining, someone has him into a nazi control cab.\",\"skids around in the foreground, completing its turn.\"\n16723,lsmdc0020_Raising_Arizona-57798,18180,As they top a rise coming from the other direction. We,As they top a rise coming from the other direction.,We,gold,wags the blonde hair in his face.,\"see the baby sitting in the middle of the street, and someone fast approaching from the background.\",zip into the night sky.,run out of the room onto the corridor.\n16724,lsmdc0020_Raising_Arizona-57798,18215,As the chain snakes around it and rips it out of someone's hands. An uppercut from his heels,As the chain snakes around it and rips it out of someone's hands.,An uppercut from his heels,gold,move up towards the town.,sends someone sprawling back.,shatters someone's lifeless body.,slams on the wooden ceiling.\n16725,lsmdc0020_Raising_Arizona-57798,18171,As the blue paint is smeared away we see people's car parked broadside in the middle of the road. People,As the blue paint is smeared away we see people's car parked broadside in the middle of the road.,People,gold,\"are in front of it, someone aiming his scatter gun, someone a revolver.\",come to finish up the path and stops at the tracks.,reach an arm around shop.,start to wake up.\n16726,lsmdc0020_Raising_Arizona-57798,18184,He is scooped up and out of frame as someone roars by. He,He is scooped up and out of frame as someone roars by.,He,gold,\"watches someone's eyes light up, then squeezes off.\",\"bends around, undoes her coat, opens her hair and lets go of her hair.\",is dragged towards a huge pile of light shells.,hooks the car seat over his handlebars.\n16727,lsmdc0020_Raising_Arizona-57798,18182,\"The extremely low wide shot, locked down to the speeding bike, shows us rushing toward the rear of someone's car seat. With a clank of chains someone's hand\",\"The extremely low wide shot, locked down to the speeding bike, shows us rushing toward the rear of someone's car seat.\",With a clank of chains someone's hand,gold,\"keeps moving forward, as it approaches the trailer's edge of another tanker before turning from the other side into a concrete framework.\",moves from the tree to the left.,comes up wheel upside down.,\"drops down into frame, palm forward, tensing to scoop up the car seat that we are almost upon.\"\n16728,lsmdc0020_Raising_Arizona-57798,18178,\"Someone 'motorcycle appears over the rise. Framed against fire and smoke, he\",Someone 'motorcycle appears over the rise.,\"Framed against fire and smoke, he\",gold,pushes out the window and takes a deep breath.,\"climbs onto the cabin, looking at his hands with blood.\",\"is coming directly toward us, and the baby.\",glances around; someone strides past.\n16729,lsmdc0020_Raising_Arizona-57798,18210,\"Someone is reaching back to throw his knife. Someone, unaware,\",Someone is reaching back to throw his knife.,\"Someone, unaware,\",gold,is processing the kiss.,takes him in a throat shaft.,\"is turning to face him, presenting the plank as - the knife is thrown.\",does not wear pleased.\n16730,lsmdc0020_Raising_Arizona-57798,18198,\"Dragged several yards before the boot shakes him off, leaving him on his stomach in the middle of the road. Someone\",\"Dragged several yards before the boot shakes him off, leaving him on his stomach in the middle of the road.\",Someone,gold,falling back almost out of view again.,looks up the road.,pulls down a sheet of paper.,looks towards the house that night.\n16731,lsmdc0020_Raising_Arizona-57798,18222,Someone wraps his arms around him and applies a tremendous bear hug. His hands,Someone wraps his arms around him and applies a tremendous bear hug.,His hands,gold,bring in to show under the embrace.,slouching a rest against his pillow.,resting on his own waist straight.,paw futilely at someone's chest.\n16732,lsmdc0020_Raising_Arizona-57798,18217,He sinks to the ground. Someone,He sinks to the ground.,Someone,gold,pretends to laugh inside the toilet bowl.,\"takes the enormous landing, ducking under the beam.\",\"is casually walking toward him, lighting a cheroot.\",\"watches from his window as someone, breathing hard, glances down at the windscreen and his sandwich ropes.\"\n16733,lsmdc0020_Raising_Arizona-57798,18218,\"Someone is casually walking toward him, lighting a cheroot. Someone\",\"Someone is casually walking toward him, lighting a cheroot.\",Someone,gold,continues burning with flames and rolling around with a whip.,flops over onto his stomach and starts wriggling under the car.,\"is munching it, no sign of someone.\",\"steps behind him, beating his light gently on his chin.\"\n16734,lsmdc0020_Raising_Arizona-57798,18221,Someone is dragged away from the camera and out from under the car. Someone,Someone is dragged away from the camera and out from under the car.,Someone,gold,wraps his arms around him and applies a tremendous bear hug.,\"reaches in, stands, picks up a pistol from a church, and storms through it.\",is stopped in a railing nearby.,is parked as a cemetery in the street.\n16735,lsmdc0020_Raising_Arizona-57798,18185,\"Shooting through where the windshield used to be, cutting in at the end of the skid as the car rocks to a halt. People\",\"Shooting through where the windshield used to be, cutting in at the end of the skid as the car rocks to a halt.\",People,gold,are raising their heads.,widen as the limo slows a sideways angle toward her husband.,\"hit someone, just out of the way, from a wall and into a construction board where his car is everywhere.\",begin their roller - tails as they climb down a flight of stairs.\n16736,lsmdc0020_Raising_Arizona-57798,18214,As the free chain drops down into his palm. As the chain,As the free chain drops down into his palm.,As the chain,gold,\"falls through the police car, its broken end clamps itself on his arm.\",\"rises, the engineer a flight of feet.\",snakes around it and rips it out of someone's hands.,\"smokes more, the camera pans around the sedan gun.\"\n16737,lsmdc0020_Raising_Arizona-57798,18194,\"He is not finished yet. Someone flat on his back,\",He is not finished yet.,\"Someone flat on his back,\",gold,\"leaps at the bar, landing on a mat.\",\"looking at the chessboard, then he knows it.\",woozily shaking his head.,\"turns on someone, and dances.\"\n16738,lsmdc0020_Raising_Arizona-57798,18161,They bolt out the door. Siren,They bolt out the door.,Siren,gold,jumps in loud at the cut.,timekeeper knocks over a door with a spotlight on them.,\"screams at him and skips into a pit, screaming into the sea.\",are going around in the open on the porch as they open.\n16739,lsmdc0020_Raising_Arizona-57798,18183,\"With a clank of chains someone's hand drops down into frame, palm forward, tensing to scoop up the car seat that we are almost upon. He\",\"With a clank of chains someone's hand drops down into frame, palm forward, tensing to scoop up the car seat that we are almost upon.\",He,gold,brushes the flower from her nose.,walks up to the window and locks it angrily.,is scooped up and out of frame as someone roars by.,raises his head as someone helps him arrive.\n16740,lsmdc0020_Raising_Arizona-57798,18211,\"It thunks into the plank, piercing it through. Someone\",\"It thunks into the plank, piercing it through.\",Someone,gold,\"is out of her mouth, turning to horror, swinging upside down.\",\"tries again, but with a second policeman.\",is hauled out of the blue cable.,\"backs up, swinging the knife - studded plank to make someone keep his distance.\"\n16741,lsmdc0020_Raising_Arizona-57798,18186,\"People are raising their heads. Facing forward, they\",People are raising their heads.,\"Facing forward, they\",gold,do not see someone approaching again through the rear window.,paddle their feet like foot and flip happily.,\"push together against each other, yelling individuals.\",look gently like policemen.\n16742,lsmdc0020_Raising_Arizona-57798,18175,\"As we hold on someone. As we boom up to show the empty street beyond the baby, we\",As we hold on someone.,\"As we boom up to show the empty street beyond the baby, we\",gold,look at the carriage mirror and see the voices of someone.,gradually breaking view with people rushing by.,return to someone in her family rooms where she swings at two strange tables suspended from the ceiling.,hear the crack of return fire and furiously squealing brakes.\n16743,lsmdc0020_Raising_Arizona-57798,18156,\"A teller is finishing stuffing the last of two burlap bags. Close on her hands, we\",A teller is finishing stuffing the last of two burlap bags.,\"Close on her hands, we\",gold,see her putting in a cash packet that is really only a few bills and a sleeve surrounding and hiding a small plastic device.,\"watch someone walk farther off, shutting her car aid.\",see someone leaving them.,see someone kisses someone.\n16744,lsmdc0020_Raising_Arizona-57798,18205,\"It sails off a step into the sunken atrium, and lands with a crash amidst the hayseeds. As she\",\"It sails off a step into the sunken atrium, and lands with a crash amidst the hayseeds.\",As she,gold,scans to a booth.,\"stares as she lays back in the bed, a woman quickly discovers someone in the room under the covers.\",struggles to the first.,runs for the back door and pushes through it.\n16745,lsmdc0020_Raising_Arizona-57798,18164,Someone is driving; someone starts pawing through one of the sacks. They,Someone is driving; someone starts pawing through one of the sacks.,They,gold,are enjoying themselves on a canoe and goofy dog steps.,look at each other.,get to a jam in the restroom door.,remove the light from the chain.\n16746,anetv_MmOQhq95Z_g,11798,We see a blue opening screen. We,We see a blue opening screen.,We,gold,see a man putting cars on a table with a woman.,see man standing on the edge of a diving board.,see a man riding a tractor in the tunnel.,see the names of the pole vaulters.\n16747,anetv_MmOQhq95Z_g,6944,They run down the track with a long pole. They,They run down the track with a long pole.,They,gold,try to jump rope to land as the crowd claps.,show up some jump rope in different locations.,use the pole to vault over a bar.,nod and move back and forth lose from the bar doing another jump and a high replay.\n16748,anetv_MmOQhq95Z_g,11799,We see the names of the pole vaulters. We,We see the names of the pole vaulters.,We,gold,see a replay inside her head.,watch young men pole vault.,see the bottom outro screen.,see the man dive hitting his board.\n16749,anetv_MmOQhq95Z_g,11800,We watch young men pole vault. We,We watch young men pole vault.,We,gold,immediately jump on stilts.,see an intro screen with skull.,see a man jump up on his feet.,policeman kneels pass in front of the bouquet.\n16750,anetv_MmOQhq95Z_g,11802,A man lands far back on the mat. We,A man lands far back on the mat.,We,gold,people jump on a casket.,\"got a gun, then a man and the other team approach.\",see a man jump with his name on the screen.,recognize the man's terrain.\n16751,anetv_MmOQhq95Z_g,11801,We see a man jump up on his feet. A man,We see a man jump up on his feet.,A man,gold,opens a title card.,lands spinning on the ground.,lands far back on the mat.,approaches a starting rope.\n16752,lsmdc1011_The_Help-78758,10687,\"Her lips trembling, someone holds someone's firm gaze, then runs off into the next room. Someone\",\"Her lips trembling, someone holds someone's firm gaze, then runs off into the next room.\",Someone,gold,leaps over his shoulder and stabs him.,dives off onto a deck on another train.,\"to the corner of the hospital, he digs a business pocket out of his pocket and hands someone the check.\",blows out her cheeks as she tries to catch her breath.\n16753,lsmdc1011_The_Help-78758,10686,\"Someone grabs someone's arm. Her lips trembling, someone\",Someone grabs someone's arm.,\"Her lips trembling, someone\",gold,\"holds someone's firm gaze, then runs off into the next room.\",knocks someone's board in one shelf.,rests her elbows on her knees with her good leg and drop her onto her shoulders.,smiles and concentrates writhes.\n16754,anetv_QvM8SFUUvsw,6852,A man is shown solving a rubix rube at record speed while a timer is going and a man records him. Another player at a younger age,A man is shown solving a rubix rube at record speed while a timer is going and a man records him.,Another player at a younger age,gold,walks up to the lanes and 2 wheeler are walking and a goal.,\"and tries to be jeans a timer, then prepares to walk and jump.\",is shown solving the rubix cube as well as a third patron shortly after.,walks across the equipment and begins hopping on the handle and adjusting it.\n16755,anetv_z-iuSgXKUcw,17369,A man is standing up in a suit at the front playing a violin. Another man in a suit,A man is standing up in a suit at the front playing a violin.,Another man in a suit,gold,talks on the phone.,is leading the band.,is running by playing his guitar on his hips.,sits on the floor speaks to the camera once more.\n16756,anetv_z-iuSgXKUcw,2865,The camera zooms in on a man playing a violin. The man,The camera zooms in on a man playing a violin.,The man,gold,releases the saxophone together multiple times and moves a net on to a fence.,moves his arms around the side of the drink and walks off with the crowd.,pulls his loose instrument out of the frame and continues moving along with the man playing.,continues playing with a conductor shown as well as others playing instruments.\n16757,anetv_z-iuSgXKUcw,2864,A large group of people are seen playing instruments with one another. The camera,A large group of people are seen playing instruments with one another.,The camera,gold,pans around and shows people playing around while others watch on the side.,pans around more clips of people playing lacrosse.,pans around the area while hitting the ball around while others watch on the side.,zooms in on a man playing a violin.\n16758,anetv_z-iuSgXKUcw,17368,A band of people are playing instruments. A man,A band of people are playing instruments.,A man,gold,describes a guitar game on stage.,stands together and plays guitar in the living room.,is standing up in a suit at the front playing a violin.,is standing on the side of a room talking in front of the group.\n16759,anetv_ILgkiTHnGVI,18532,A man shows up on the screen wearing a martial arts uniform showing people how to do a side kick. He,A man shows up on the screen wearing a martial arts uniform showing people how to do a side kick.,He,gold,is then shown steadying himself along the beam and playing proper techniques.,does a 360 and spin disco jumping when he catches it.,jumps up and down at high horizontal position and doing jump rope tricks.,sways from side to side to show how to control your balance.\n16760,anetv_ILgkiTHnGVI,18533,He sways from side to side to show how to control your balance. He,He sways from side to side to show how to control your balance.,He,gold,\"lifts his knees, one after alternating from left to right to show how to begin the kick.\",\"secures the rope, twists, and begins a little attempt to hang around in the saddle of him.\",jumps off of the diving board so that he can be seen afterwards.,realizes he is ready to start when he climbs the rope.\n16761,anetv_ILgkiTHnGVI,18534,\"He lifts his knees, one after alternating from left to right to show how to begin the kick. He\",\"He lifts his knees, one after alternating from left to right to show how to begin the kick.\",He,gold,continues to show how to finish the side kick with a follow through.,gets in and continues to hash his twist leg across his back.,pauses to talk about the process a moment.,lifts up his elbows to practice.\n16762,anetv_ILgkiTHnGVI,18535,He continues to show how to finish the side kick with a follow through. Then he,He continues to show how to finish the side kick with a follow through.,Then he,gold,talks more his interview about his skill and explodes throughout the entire scene setting successfully.,strikes the man on the path as it is thrown onto the open field by the fence.,holds the soap over ass a muscle before once he is finished.,demonstrates how to do the kick from several angles.\n16763,anetv_LKeQMeUZFso,15699,The person turns off the vacuum then replaces the attachment with a larger one for carpets. The person,The person turns off the vacuum then replaces the attachment with a larger one for carpets.,The person,gold,walks back and opens the machine again.,uses the right brush to turn off the lights.,continues putting the cement back down.,adjusts a knob on the vacuum cleaner.\n16764,anetv_LKeQMeUZFso,15697,A person walks up to a vacuum cleaner and picks up the wand. The person,A person walks up to a vacuum cleaner and picks up the wand.,The person,gold,vacuums a carpet in the hallway of a home.,attempts to start style the fire with the vacuum.,vacuums the carpet and starts to vacuum.,sprays the ceiling again.\n16765,anetv_LKeQMeUZFso,15698,The person vacuums a carpet in the hallway of a home. The person,The person vacuums a carpet in the hallway of a home.,The person,gold,uses a brush and vacuums the carpet again.,vacuums the vacuum on a floor.,scrubs a vacuum mop on the floor.,turns off the vacuum then replaces the attachment with a larger one for carpets.\n16766,lsmdc3013_BURLESQUE-4630,5077,She enters her ransacked studio apartment. She,She enters her ransacked studio apartment.,She,gold,finds the empty sandwich baggie on the floor.,fills the small dressing room.,shows a berth woman wearing a beautiful suit.,starts to perform a set of double bars.\n16767,lsmdc3013_BURLESQUE-4630,5078,\"She finds the empty sandwich baggie on the floor. On the bed, someone\",She finds the empty sandwich baggie on the floor.,\"On the bed, someone\",gold,\"dives out out of view, sending someone sprawling backward through the bubbles toward the restaurant.\",\"finds her photograph under broken glass, halfway out of its now - bent frame.\",puts an arm around the kid's shoulders and approaches his stepfather 'inflated boat.,appears on the stereo.\n16768,lsmdc3013_BURLESQUE-4630,5079,\"On the bed, someone finds her photograph under broken glass, halfway out of its now - bent frame. She\",\"On the bed, someone finds her photograph under broken glass, halfway out of its now - bent frame.\",She,gold,\"dials a faint number on the grass, reacting with her wing.\",\"appears in a pan, leading from another corner among the other guests in a party.\",paintings above her head remains listless.,holds the photo of the mother and child.\n16769,lsmdc3013_BURLESQUE-4630,5076,Someone finds her door broken in. She,Someone finds her door broken in.,She,gold,\"pushes someone's legs away and runs around to the dining room, breaking some of the safe.\",enters her ransacked studio apartment.,sits back in the chair.,insistently from his call.\n16770,lsmdc3013_BURLESQUE-4630,5080,She holds the photo of the mother and child. Someone,She holds the photo of the mother and child.,Someone,gold,\"glances around, then sits on the edge of the bed and covers her mouth.\",\"stands up, then returns to the kitchen.\",kisses someone's cheek.,slides her attention from someone to the newspaper and her nightstand.\n16771,anetv_rAuz_Pf3lp8,1349,\"The family then appears, floating, talking and smiling on inflatable tubes on a narrow body of water. The event ends and the family\",\"The family then appears, floating, talking and smiling on inflatable tubes on a narrow body of water.\",The event ends and the family,gold,appears in a giant pool of water on the water.,leaves an area bordered by a wooden fence.,prepares to jump off the boat to end this competition.,stop to score horses standing in the canoe in the water.\n16772,anetv_rAuz_Pf3lp8,1347,\"A family of people sit at an outdoor wooden picnic table, eating, waiving at the camera. The family\",\"A family of people sit at an outdoor wooden picnic table, eating, waiving at the camera.\",The family,gold,watch the weather outdoors as it begins to rain and a little girl runs out into the rain and dances in it.,will then wrap a hole in tubes in front of a tray.,continues on someone's conversation with a woman on the dappled gold platform.,\"pauses by someone's washroom, livid with his scenes.\"\n16773,anetv_rAuz_Pf3lp8,1346,\"A family has a picnic, and goes tubing on inflatable rafts in a narrow body of water surrounded by trees, on a rainy day. A family of people\",\"A family has a picnic, and goes tubing on inflatable rafts in a narrow body of water surrounded by trees, on a rainy day.\",A family of people,gold,\"sit at an outdoor wooden picnic table, eating, waiving at the camera.\",are climbing the middle of the cliff as they watch around a mountain.,are ahead and group keep creating a steer into a river.,sits in the stands at a people kayaking down the dock.\n16774,anetv_2ooY3GqZieg,7325,Several clips are then shown of people riding skateboards in crowded areas. The people,Several clips are then shown of people riding skateboards in crowded areas.,The people,gold,are shown shown together in various shots and then eating.,begin to move around in girls having fun.,ride all around a city while looking to the camera and pushing their board.,snowboards down various hills and skating up a snowy hill country jumping up and down.\n16775,anetv_2ooY3GqZieg,14097,The people walk for a bit and then are seen riding their boards along a city. The men,The people walk for a bit and then are seen riding their boards along a city.,The men,gold,continue playing the instrument while one man runs and begins moving around the field.,ride along the city while several people on bikes ride around and the camera pans over people in the city.,continuously lift the rope while looking off into the distance.,continue to sing into one another as well as laughing boards and holding both hands with paddles.\n16776,anetv_2ooY3GqZieg,14096,A person is seen sitting on a train with skateboard sitting in their laps and another skateboarder sleeping. The people,A person is seen sitting on a train with skateboard sitting in their laps and another skateboarder sleeping.,The people,gold,ride around country roads around as the kids cheers.,then continuing on rollerblading down an hill while looking into each other and come to a stop in the end.,continue to ride off as they pass.,walk for a bit and then are seen riding their boards along a city.\n16777,anetv_2ooY3GqZieg,14098,The men ride along the city while several people on bikes ride around and the camera pans over people in the city. More shots of the city,The men ride along the city while several people on bikes ride around and the camera pans over people in the city.,More shots of the city,gold,are shown as well as surfers riding around on the water.,are shown of several scenes shown and people riding together.,are shown as well as a large group of people indoors and outdoors.,are shown as well as men playing skateboards through some large windows and looking off into the distance.\n16778,anetv_o_-a7AMw74M,10163,Man is standing in a white bathtub ceaning hisshoes and his foot with the water from something red that apears to be blood. then the man,Man is standing in a white bathtub ceaning hisshoes and his foot with the water from something red that apears to be blood.,then the man,gold,is lying across the green behind someone who is standing holding a trainer guitar.,takes off the shirt and start the hoop in the grass to scoop the man up.,\"begins ironing his shirt, creating a purple t.\",do the same with the other foot and the other shoe.\n16779,anetv_o_-a7AMw74M,14445,A person's feet are seen walking along a bloody tub and then rinsed off with water. The person then,A person's feet are seen walking along a bloody tub and then rinsed off with water.,The person then,gold,begins rubbing lotion all over the dog's legs and well as adjusting her leg.,clean water off of a bucket and walks into frame and tries to take a position with the hose.,grabs an sponge speaking with the dog and messes with the toothbrush.,takes their shoe off to run under the water and then put on again.\n16780,anetv_o_-a7AMw74M,14446,The person then takes their shoe off to run under the water and then put on again. He,The person then takes their shoe off to run under the water and then put on again.,He,gold,slides down the center and skis on the back of the chair.,does the same with the other foot and then take both shoes off to show.,moves his shoes all together while the camera captures their movements.,\"watches the man and then goes to pool, using the methods that he will own.\"\n16781,anetv_o_-a7AMw74M,10164,Then the man do the same with the other foot and the other shoe. then the man,Then the man do the same with the other foot and the other shoe.,then the man,gold,uses down sands going towel to orange string to hide clean.,paints polish in the first roll of polish.,put the shoe under the water so can clean it on inside.,\"jumps down his front slide, then other moves the shoes on and puts them on one side.\"\n16782,anetv_d83YCo6xLkk,18384,A person is seen standing on a beach looking down at sand. The person then,A person is seen standing on a beach looking down at sand.,The person then,gold,begins moving down the sand from the box.,begins stepping around the object while looking off into the distance.,begins building a large sand castle in front of them.,lays down and throws a disc.\n16783,anetv_d83YCo6xLkk,18385,The person then begins building a large sand castle in front of them. The person,The person then begins building a large sand castle in front of them.,The person,gold,then proceeds to go with the shoes and jump on the buckets.,continue moving the tubing until the finally ends.,continues working around the sand and ends by walking out of frame.,finishes the painting and then begins dancing in a final routine before continuing several dance.\n16784,anetv_zlOErVVHKEk,11592,The man with the mallet is shown getting hit in slow motion. A woman,The man with the mallet is shown getting hit in slow motion.,A woman,gold,is up to bat and is shown running after getting a hit.,is seen trying to solve a rubik's cube.,is shown climbing another rock who begins talking to a camera about the entire performance before engrossed in the game.,is holding a gun as she gets a bow and arrow.\n16785,anetv_zlOErVVHKEk,11591,A man with a blue shirt runs toward home plate. The man with the mallet,A man with a blue shirt runs toward home plate.,The man with the mallet,gold,picks up the ball.,talk to another man while the players stat next to him.,is shown getting hit in slow motion.,shakes off the cue.\n16786,anetv_zlOErVVHKEk,11590,The man with the mallet and the man with the red hat run back and forth. A man with a blue shirt,The man with the mallet and the man with the red hat run back and forth.,A man with a blue shirt,gold,runs toward home plate.,is stretching over the man.,throws up cold distress on the man for a long time.,press several balls to his face.\n16787,anetv_zlOErVVHKEk,11589,People are playing a game in a field. The man with the mallet and the man with the red hat,People are playing a game in a field.,The man with the mallet and the man with the red hat,gold,run back and forth.,is standing behind watching him.,has helped from the side.,is standing on the field.\n16788,lsmdc1014_2012-79392,9352,She nudges the kids forward. Someone,She nudges the kids forward.,Someone,gold,grabs the devil's car free and sets someone down.,smashes the passenger door of a cab but a gap.,spots someone's grandma.,makes baskets as she holds her.\n16789,anetv_Fv1qhPABYk0,552,One team pulls against the other. One team wins and the girls,One team pulls against the other.,One team wins and the girls,gold,continue to watch as the team watches.,move back to the robot.,speak to one another.,raise their hands in neat period.\n16790,anetv_Fv1qhPABYk0,8988,A large group of people are seen sitting in a gymnasium with a group of girls playing tug of war. The camera,A large group of people are seen sitting in a gymnasium with a group of girls playing tug of war.,The camera,gold,pans back to a circle and shows more games of soccer being made.,pans to a woman in a bikini on the sidelines as well as a kicking.,pans around the groups as they continue to pull from one another.,pans around the person riding and continuing to film with an horses as well as title coaches.\n16791,anetv_Fv1qhPABYk0,551,A group of girls are seen pulling a rope. One team,A group of girls are seen pulling a rope.,One team,gold,grabs a fishing pole and holds it up.,stands up and begins dancing with one another.,ties a rope over the gym to.,pulls against the other.\n16792,anetv_Fv1qhPABYk0,8989,The camera pans around the groups as they continue to pull from one another. In the end one group,The camera pans around the groups as they continue to pull from one another.,In the end one group,gold,speaks to the camera and leads into a group of people and a man eating ice cream.,is shown more shots of shown scoring and scoring the ball as more shots are shown of the locker.,ends up in a ring room.,pulls it further than the other.\n16793,anetv_ave_VDl3LwE,17657,A still of a woman is seen holding mustard and leads into a picture of her pouring a drink into a cup. The videos,A still of a woman is seen holding mustard and leads into a picture of her pouring a drink into a cup.,The videos,gold,are shown of sticks on them that she starts to show and a drink detaches.,transitions into a girl holding a piece of wood and swinging an axe to chop it in half.,\"ends, and the man struggles to show the entire bowl and seen after again and more man demonstrates.\",show the back of the camera and the ice reporter stopping her to drink the drink from the beer she finishes her speaking.\n16794,anetv_ave_VDl3LwE,3655,A woman hammers a stake into the ground next to a bbq pit. She,A woman hammers a stake into the ground next to a bbq pit.,She,gold,extends a stick to the boy who stands in front of the ball.,moves around the tool and measures a wood with strips of outer fabric.,continues to hammer it until it goes in.,\"swings the rock backwards, ending at the same angle.\"\n16795,anetv_ave_VDl3LwE,3654,A group of women are outdoors around a fire. A woman,A group of women are outdoors around a fire.,A woman,gold,grabs a case of poker and puts it on display as she poses.,is moving and holding a hula hoop in front of them.,hammers a stake into the ground next to a bbq pit.,is talking about a black bunch of riveted looking women.\n16796,lsmdc1027_Les_Miserables-5992,6282,\"He walks up a snow - covered hillside, a lonely figure silhouetted against the skyline. A satchel over his shoulder, he\",\"He walks up a snow - covered hillside, a lonely figure silhouetted against the skyline.\",\"A satchel over his shoulder, he\",gold,steps onto a ledge and glances at the mountains ahead.,walks out of the office.,sets the phone on his lap.,climbs over the railing.\n16797,lsmdc1027_Les_Miserables-5992,6284,\"Seeing men at work, he stops by a farmer. The farmer\",\"Seeing men at work, he stops by a farmer.\",The farmer,gold,\"reads them, as someone removes his woolen hat.\",reaches under a ridge.,takes out scrambled metal noodles.,dashes down near a large snowed bloody.\n16798,lsmdc1027_Les_Miserables-5992,6283,\"A satchel over his shoulder, he steps onto a ledge and glances at the mountains ahead. Seeing men at work, he\",\"A satchel over his shoulder, he steps onto a ledge and glances at the mountains ahead.\",\"Seeing men at work, he\",gold,stops by a farmer.,\"crosses to a enclosure, opens a few can.\",notices a glimpse from a approaching train.,covers someone with his wet hand.\n16799,anetv_wDw3i5ODGWA,14058,\"Then, he begins to ride down the street in the concrete for a while moving down casually. Another man skating down the side walk\",\"Then, he begins to ride down the street in the concrete for a while moving down casually.\",Another man skating down the side walk,gold,showing a row of skateboards and they begin his a successful manner.,to untie basically and camera playing correct.,on jumping stilts and lifts and then well.,gets off and on to the street.\n16800,anetv_wDw3i5ODGWA,12428,The boy then rides that skate board down a street. the boy,The boy then rides that skate board down a street.,the boy,gold,jumps back on the roof and makes another run with another.,then runs down the streets again playing the actions.,performs several tricks on the skateboard.,rides around in several more ramps while a man watches to the side.\n16801,anetv_wDw3i5ODGWA,14057,\"In the back of the car, in the trunk a man is using a screwdriver to fix his board. Then, he\",\"In the back of the car, in the trunk a man is using a screwdriver to fix his board.\",\"Then, he\",gold,pretends to pull the tire out of the back of the bike.,\"places both arms on the smart, and pushes the car all along its contents.\",\"obliges clumsily, using a board to grab the others with him and his young man how totally wearing it.\",begins to ride down the street in the concrete for a while moving down casually.\n16802,anetv_wDw3i5ODGWA,12427,A boy is in tinkering with a skateboard in the trunk of a car. the boy then,A boy is in tinkering with a skateboard in the trunk of a car.,the boy then,gold,falls into the sand.,begins washing the car with a sink.,shows the man being hit while spraying a window.,rides that skate board down a street.\n16803,anetv_PqrexMJ5ohk,16691,A close up of balls moving around a pool table are shown followed by a person walking around the table. Two men then,A close up of balls moving around a pool table are shown followed by a person walking around the table.,Two men then,gold,begin arm wrestling with one another and ends by talking around the ceiling.,end on bumper cars around one another and begin hitting a ball around while gesturing to one another.,hit the balls off of the ground while punching them and throwing the ball off into the distance.,hit the balls around the table back and fourth while many watch and react around them.\n16804,anetv_qpeovDXc1cg,1321,A woman is drinking a cup of coffee. Coffee beans,A woman is drinking a cup of coffee.,Coffee beans,gold,are poured into the cups.,are poured into the glass.,are poured onto the little table.,are shown in a cup.\n16805,anetv_qpeovDXc1cg,1322,Web articles are being shown. A cup mug,Web articles are being shown.,A cup mug,gold,is being filled with coffee.,sits on a table covered with lemonade.,is shown in a liquid solution pouring on a counter.,is working on a table.\n16806,lsmdc3081_THOR-37782,11155,Others lounge beside coolers as they watch about a dozen men gathered around Mjolnir. One of them,Others lounge beside coolers as they watch about a dozen men gathered around Mjolnir.,One of them,gold,starts preparing to fight with the ball far which has been shown and ends.,slides a lantern on another detail sweeping back in the gun.,is an anchorman decorated with a automobiles - year - old woman in uniform.,tugs on the hammer to no avail.\n16807,lsmdc3081_THOR-37782,11156,One of them tugs on the hammer to no avail. A bald man grilling hot dogs,One of them tugs on the hammer to no avail.,A bald man grilling hot dogs,gold,frolic under the field.,belly flips through his jumper.,darts through the trucks.,raises his tongs and cheers.\n16808,lsmdc3081_THOR-37782,11159,\"The truck drives forward, and the chain snaps taught. The truck's tires\",\"The truck drives forward, and the chain snaps taught.\",The truck's tires,gold,spin in the loose soil until the truck bed breaks off and flips backwards.,are created up against the wall.,bears the fusion machine with weakly pressed to the back of the vehicle.,split on the two side trampolines.\n16809,lsmdc3081_THOR-37782,11149,\"Meanwhile, someone lies strapped to a bed in a white hospital room. Someone\",\"Meanwhile, someone lies strapped to a bed in a white hospital room.\",Someone,gold,adjusts the remote control and doubles over.,\"faces the paintball gate, then cranks a key through the chain.\",\"struggles against his bonds, then lies still.\",returns to the breakfast nook.\n16810,lsmdc3081_THOR-37782,11162,\"Back at the research lab, bare - chested someone, now wearing jeans steps out of a bathroom. Someone\",\"Back at the research lab, bare - chested someone, now wearing jeans steps out of a bathroom.\",Someone,gold,\"lifts someone's foot across the elevated platform, 7 on his left foot.\",struggles to scratch someone's shoes and raises his hands toward his hips.,brushes his tears with his teeth as he blinks.,walks up to a desk and examines some equipment.\n16811,lsmdc3081_THOR-37782,11152,\"Outside, someone, someone and someone run into the hospital then hurry up a corridor past the wrecked emergency room. They\",\"Outside, someone, someone and someone run into the hospital then hurry up a corridor past the wrecked emergency room.\",They,gold,grabs two other bags and carries one into the dining room.,wait against the apartment entrance.,\", they wander down a hallway.\",step into a room holding an empty bed with loosened restraints.\n16812,lsmdc3081_THOR-37782,11154,They hustle outdoors again and climb into their research truck. Someone,They hustle outdoors again and climb into their research truck.,Someone,gold,\"starts the truck, puts it into reverse, and backs into someone.\",'s through security notes as someone and someone enter the entrance.,fires their sirens to the cameras and gets out.,and someone sit in their drive ways.\n16813,lsmdc3081_THOR-37782,11158,Veins pop out on a burly man's neck as he pulls on the hammer's handle. A white pickup truck,Veins pop out on a burly man's neck as he pulls on the hammer's handle.,A white pickup truck,gold,sits with a car following into the road.,pulls up to the dining cars curb.,\"backs up to the lip of the crater, as men wrap a chain around mjolnir.\",runs over onto the street; flinches minute - man.\n16814,lsmdc3081_THOR-37782,11160,The truck's tires spin in the loose soil until the truck bed breaks off and flips backwards. A silver car,The truck's tires spin in the loose soil until the truck bed breaks off and flips backwards.,A silver car,gold,pulls onto a ridge overlooking the crater.,tire stands before a coupe.,that are sitting beneath the car steeple.,pulls up over a clean's hangar.\n16815,lsmdc3081_THOR-37782,11161,A man with short brown hair and wearing a black suit steps out. He,A man with short brown hair and wearing a black suit steps out.,He,gold,hears them running out.,rises on his back and leads into dark rows of white clouds and steam.,is holding his camera looking to him.,\"takes off his sunglasses as he stares at the crater, then takes out a cell phone.\"\n16816,lsmdc3081_THOR-37782,11157,A bald man grilling hot dogs raises his tongs and cheers. Veins,A bald man grilling hot dogs raises his tongs and cheers.,Veins,gold,gives oil to stirring an ox.,add the batter out.,pop out on a burly man's neck as he pulls on the hammer's handle.,someone turns as someone's hoard descend.\n16817,lsmdc3081_THOR-37782,11150,\"Someone struggles against his bonds, then lies still. He\",\"Someone struggles against his bonds, then lies still.\",He,gold,flowing forms into his hand and frustration.,pulls a lever behind a guide line.,\"twists his left wrist, sliding it through the restraint.\",\"musters a smile, then gives someone a reassuring nod.\"\n16818,lsmdc3081_THOR-37782,11151,\"He twists his left wrist, sliding it through the restraint. Outside, someone, someone and someone\",\"He twists his left wrist, sliding it through the restraint.\",\"Outside, someone, someone and someone\",gold,watch as the film fades to black.,\"bow the poles, twirl around the waist and toss him down.\",run into the hospital then hurry up a corridor past the wrecked emergency room.,\"step down each aisle, holding the broken plate between them.\"\n16819,lsmdc3081_THOR-37782,11165,Someone removes a name tag from the shirt. Someone,Someone removes a name tag from the shirt.,Someone,gold,catches it and rubs it around someone's hand.,drives a mug rail down a street toward an apartment building.,picks up a large carton of noodles.,folds his arms and stares at someone as he walks away.\n16820,lsmdc3081_THOR-37782,11164,\"Someone takes the equipment out of someone's hands, then writes in a notebook as he puts on a black t - shirt. Someone\",\"Someone takes the equipment out of someone's hands, then writes in a notebook as he puts on a black t - shirt.\",Someone,gold,turning shelves with disgruntled gear and moving across the wall between his broken ceiling.,removes a name tag from the shirt.,moves down a small panel of boxes along a bank of the rundown driveway.,\"stares at the prisoner, confused.\"\n16821,lsmdc3081_THOR-37782,11153,They step into a room holding an empty bed with loosened restraints. They,They step into a room holding an empty bed with loosened restraints.,They,gold,hustle outdoors again and climb into their research truck.,\"knit and look at the young someone, chewing.\",stretches glass and hands each over.,\"travels, dancing from the doorway.\"\n16822,lsmdc3081_THOR-37782,11147,\"In a research lab, someone and someone join someone at a bulletin board covered with pictures of the magnetic storm. In one photograph, the shadowy figure of a man\",\"In a research lab, someone and someone join someone at a bulletin board covered with pictures of the magnetic storm.\",\"In one photograph, the shadowy figure of a man\",gold,approaches a piece of cake kissing back at a table with a patch of shiny scar on his back.,emerges from a large gully.,hands someone someone's sword.,drifts inside surging storm currents.\n16823,anetv_fsyMiHRW3z4,13701,A woman stands by a yellow hopscotch and talks to the camera. The woman,A woman stands by a yellow hopscotch and talks to the camera.,The woman,gold,plays hopscotch on the painted concrete.,uses the knife to push and pound the wood.,climbs the ladder and begins to scale the wall.,works her tongue out as the video continues.\n16824,anetv_fsyMiHRW3z4,13702,The woman plays hopscotch on the painted concrete. The woman,The woman plays hopscotch on the painted concrete.,The woman,gold,stops and runs around the carpet doing up most of them.,wipes out a sixth tile sliding across the floor with another woman cloth color.,stops dancing and bravely does a philadelphia dance.,talks to the camera once again.\n16825,anetv_goSGYjLTGnQ,19377,The boy comes along and starts flipping and doing a variation of the robot. All of the men behind him then,The boy comes along and starts flipping and doing a variation of the robot.,All of the men behind him then,gold,start performing tricks again doing flips several more times and then watching in the end.,begin to arm wrestle.,become his background dancers as the boy takes a microphone and begins singing.,leap into the sand.\n16826,anetv_goSGYjLTGnQ,19376,\"A young male dressed in an red jumpsuit is on the stage break dancing. Once he is finished, a group of guys swarm him and they all\",A young male dressed in an red jumpsuit is on the stage break dancing.,\"Once he is finished, a group of guys swarm him and they all\",gold,meet in behind a large microphone.,point to another boy so he can take the stage.,sit gazing back into the distance.,type out him to dance together from inside the ballroom.\n16827,anetv_BPpq8m93LSI,11274,The man demonstrates hitting a ball and we see him in play hitting the ball. We,The man demonstrates hitting a ball and we see him in play hitting the ball.,We,gold,see the title screen and a man approaches.,again and there is a group of young boys playing bumper and hitting the ball against one another.,see the ending title screen.,see the left title screen.\n16828,anetv_BPpq8m93LSI,11273,We see an instructional title screen. The man demonstrates hitting a ball and we,We see an instructional title screen.,The man demonstrates hitting a ball and we,gold,see ingredients that continue to play.,see a player score a goal.,see him in play hitting the ball.,see a man turning behind the bar.\n16829,anetv_BPpq8m93LSI,11272,We see balls and paddle and a blue table then a man talks and two men playing table tennis. We,We see balls and paddle and a blue table then a man talks and two men playing table tennis.,We,gold,see the players toss against each other.,see an instructional title screen.,see a man seeing the wall get competitions.,see another woman footstool on a desk and look up at the camera.\n16830,anetv_BPpq8m93LSI,11271,We see an opening title screen. We,We see an opening title screen.,We,gold,see players on doubles back on the beach.,see another person wearing a black walking suit.,see balls and paddle and a blue table then a man talks and two men playing table tennis.,see a man with a bow and arrow to see who practices curling the beach.\n16831,anetv_yJSQmNSFlNI,19448,\"A man swing holding a rope attached to a tree. Again, people\",A man swing holding a rope attached to a tree.,\"Again, people\",gold,\"grab the boy, a child begin to get up and walk away.\",\"take a rest while drinking, after they continue sailing on the boats.\",are throwing balls and swim against each other in different locations.,twirl the curling rope together.\n16832,anetv_yJSQmNSFlNI,14372,Several people are in tubes on the river. They,Several people are in tubes on the river.,They,gold,ride a boat down the river.,wave their surfboards in the air.,drive up on the rafters while paddling through the water.,float past a bridge.\n16833,anetv_yJSQmNSFlNI,19446,\"A group of people take a rest having some drinks. After, people\",A group of people take a rest having some drinks.,\"After, people\",gold,start drinking silver.,pass alongside other cars.,put some dirt on top of someone's thigh.,sail down the river drinking from cans.\n16834,anetv_yJSQmNSFlNI,19447,\"After, people sail down the river drinking from cans. A man swing\",\"After, people sail down the river drinking from cans.\",A man swing,gold,holding a rope attached to a tree.,is cleaning the window and return to the fire and away at a fast pace.,does the same thing while holding up in his hands and in his first pursuers.,drumsticks as a man films on a young shore.\n16835,anetv_yJSQmNSFlNI,14373,The water gets rockier as they go. They,The water gets rockier as they go.,They,gold,drop into the sea.,swim down the river at the ocean.,drink beers as they float.,pass a girl on a platform.\n16836,anetv_yJSQmNSFlNI,19445,People sail on inflatable boats down the street in a river. A group of people,People sail on inflatable boats down the street in a river.,A group of people,gold,are rafting down the river rapids as they go.,are in the ocean.,are marching through a snowy storm.,take a rest having some drinks.\n16837,anetv_lWFGSRpuopM,13555,Kids are driving around in bumper cars. The cars,Kids are driving around in bumper cars.,The cars,gold,move at the cars and change into balls and a lot of people walk bumper cars.,pass by as the public car wash away.,crash into each other.,are clinging to each other then they bump.\n16838,anetv_lWFGSRpuopM,13556,The cars crash into each other. The kid in the green car,The cars crash into each other.,The kid in the green car,gold,gets out the cars.,crashes into the wall.,wipes a bottle down the corner of his car.,swings into a parking lot behind him.\n16839,anetv_z85nM9V4058,15488,The adult female is drawing squares on the ground while two kids are watching her. The little boy,The adult female is drawing squares on the ground while two kids are watching her.,The little boy,gold,takes a pink girl and leaves on a desk of excitement.,walks back up to the rock and began playing the instrument.,\"walked back to the boy who was at the second man, beer first in hand.\",\"is waving at the camera, then played hop scotch.\"\n16840,anetv_z85nM9V4058,17246,\"When she is finished, the older child stands behind the number one, waves to the camera and hops all the way through the game. Then the lady grabs the rock, but the boy\",\"When she is finished, the older child stands behind the number one, waves to the camera and hops all the way through the game.\",\"Then the lady grabs the rock, but the boy\",gold,spills down an orange push.,spits lectern with his long stick.,\"tries to build up, throwing another ball.\",comes back and takes another turn.\n16841,anetv_z85nM9V4058,17247,\"Then the lady grabs the rock, but the boy comes back and takes another turn. Finally, the little girl throws the rock and takes her turn but she\",\"Then the lady grabs the rock, but the boy comes back and takes another turn.\",\"Finally, the little girl throws the rock and takes her turn but she\",gold,demonstrates the right at her end.,goes on and next children swimming in ways.,can't pull the rod.,ends up jumping pass the game before turning around coming back.\n16842,anetv_z85nM9V4058,15489,\"The little boy is waving at the camera, then played hop scotch. The little girl\",\"The little boy is waving at the camera, then played hop scotch.\",The little girl,gold,moved the monkey to present him again while other girls watch.,sits on the bleachers in front of her.,throw the stone on the ground and play hop scotch.,looks at the camera.\n16843,anetv_z85nM9V4058,17245,\"A woman is outside with her two kids, drawing a game of hopscotch on the ground with a piece of chalk. When she is finished, the older child\",\"A woman is outside with her two kids, drawing a game of hopscotch on the ground with a piece of chalk.\",\"When she is finished, the older child\",gold,rubs her hand at the back of the horse's neck with a red cloth.,\"begins painting a blue ball, five young children to stop it.\",bounces the ball over to the woman and throws the ball across the field for business.,\"stands behind the number one, waves to the camera and hops all the way through the game.\"\n16844,lsmdc0007_DIE_NACHT_DES_JAEGERS-49241,16321,The shot slowly closes down on it and becomes still. We,The shot slowly closes down on it and becomes still.,We,gold,are in someone's singing.,see the paper - dolls blow past him.,\"look very much at him, or is too great to find it.\",\"move to the right, upside down.\"\n16845,lsmdc0007_DIE_NACHT_DES_JAEGERS-49241,16318,\"Someone starts guiltily and looks towards him, scrambling money together. She\",\"Someone starts guiltily and looks towards him, scrambling money together.\",She,gold,shakes effortlessly with cold eyes.,continues to gather the money together.,\"snatches up her wand, then straightens her dress.\",\"opens her eyes, takes out her drink and hands him over.\"\n16846,lsmdc0007_DIE_NACHT_DES_JAEGERS-49241,16320,He stands at far end of arbor. The shot,He stands at far end of arbor.,The shot,gold,holds a long pointed straight from a pier.,slowly closes down on it and becomes still.,\"sprawls, turns off.\",drops in full salute.\n16847,lsmdc0007_DIE_NACHT_DES_JAEGERS-49241,16319,She continues to gather the money together. He,She continues to gather the money together.,He,gold,stands at far end of arbor.,slams the card aside with a photo.,jumps up to watch the big green army jump out.,answers the ringing again.\n16848,lsmdc0007_DIE_NACHT_DES_JAEGERS-49241,16322,We see the paper - dolls blow past him. Someone,We see the paper - dolls blow past him.,Someone,gold,opens her dress and strokes the scar on her cheek.,starts to laugh uncontrollably.,gathers gather swords and runs with someone.,\"stands measured for the dress to catch the dust box, and put it on.\"\n16849,anetv_F4GwrEQUvDc,14308,\"An athlete runs with a stick, then he shoot the javelin and walks away in a stadium. Then, a man\",\"An athlete runs with a stick, then he shoot the javelin and walks away in a stadium.\",\"Then, a man\",gold,\"stands and slices off his head, then spins with his arms and mounts the platforms.\",\"holds a javelin and runs to throw the javelin, then another athlete also shoot the javelin.\",runs and stands over a trophy.,throws a javelin discuss in the distance.\n16850,lsmdc3083_TITANIC2-39046,18963,\"She gazes down at the churning waters of the ship's wake. Slowly, she\",She gazes down at the churning waters of the ship's wake.,\"Slowly, she\",gold,places her hands on the railing then climbs onto its first rung.,rubs herself against someone as he backs down.,twitches weakly as she is carried out of the vast desert.,gets him close to face.\n16851,lsmdc3083_TITANIC2-39046,18971,He unlaces his boots and pulls them off. Someone,He unlaces his boots and pulls them off.,Someone,gold,ties his shirt and laces around the skirts.,\"pulls the guitar down at his thighs and rubs his own thighs, then kicks over the girls.\",stares down at the water.,walks solemnly from the vehicle and goes ahead.\n16852,lsmdc3083_TITANIC2-39046,18969,Someone stops a few paces from her. He,Someone stops a few paces from her.,He,gold,looks around but no words comes across.,tilts his head as a faint light covers his face.,stops abruptly and goes back to the room.,\"takes a last puff on his cigarette, then leans forward and tosses it off the ship.\"\n16853,lsmdc3083_TITANIC2-39046,18957,\"Someone opens a gate, then dashes down a lower deck leading to the rear of the ship. Meanwhile, someone\",\"Someone opens a gate, then dashes down a lower deck leading to the rear of the ship.\",\"Meanwhile, someone\",gold,reaches for an idea.,walks down the mountainside.,lies on a bench and smokes a cigarette as he gazes up at the starry sky.,reads the letter.\n16854,lsmdc3083_TITANIC2-39046,18960,Someone runs onto the poop deck at the rear of the ship. Tears,Someone runs onto the poop deck at the rear of the ship.,Tears,gold,springs off her feet and reaches her teammate over the water with a life pouch.,come onto the raft.,streaming down her face.,the concert is now falling.\n16855,lsmdc3083_TITANIC2-39046,18961,Tears streaming down her face. She,Tears streaming down her face.,She,gold,fixes her makeup on him.,\"glances over her shoulder, then steps toward the railing.\",is passionately of the poem print.,tears hold of someone's cheeks; he looks around at the men.\n16856,lsmdc3083_TITANIC2-39046,18968,Someone creeps up behind her. Someone,Someone creeps up behind her.,Someone,gold,stops a few paces from her.,lays his arms on her hand and brings her hips.,closes the door behind her.,holds him on her back with a forced smile.\n16857,lsmdc3083_TITANIC2-39046,18959,He sits up as someone runs past. Someone,He sits up as someone runs past.,Someone,gold,runs onto the poop deck at the rear of the ship.,looks up from the cup.,anchors someone into action.,releases someone into the sniper's ranks and flees.\n16858,lsmdc3083_TITANIC2-39046,18964,\"Slowly, she places her hands on the railing then climbs onto its first rung. Holding on to a flagpole, she\",\"Slowly, she places her hands on the railing then climbs onto its first rung.\",\"Holding on to a flagpole, she\",gold,returns to the tomb.,sets the back down and goes.,\"sets a remote and looks around at the body of plastic, which lands in the sky.\",swings her feet over the railing one at a time.\n16859,lsmdc3083_TITANIC2-39046,18970,\"He takes a last puff on his cigarette, then leans forward and tosses it off the ship. He\",\"He takes a last puff on his cigarette, then leans forward and tosses it off the ship.\",He,gold,watches as he blows in leafy smoke.,stands at the edges of the crater.,\"slots the sim card around someone's file, then holds the letter.\",places his hands into his pockets and turns to someone.\n16860,lsmdc3083_TITANIC2-39046,18967,She leans forward over the ocean. Someone,She leans forward over the ocean.,Someone,gold,falls from the lake and catches dark fish floating ahead of her.,walks out of the terminal building.,\"lowers her eyes to the ghost who is leaning against legs, gazing back at someone.\",creeps up behind her.\n16861,lsmdc3083_TITANIC2-39046,18958,\"Meanwhile, someone lies on a bench and smokes a cigarette as he gazes up at the starry sky. He\",\"Meanwhile, someone lies on a bench and smokes a cigarette as he gazes up at the starry sky.\",He,gold,\"climbs over, and climbs onto the balance rail.\",leans to a window ledge and turns on the lights.,sits up as someone runs past.,looks at her with a ailing expression.\n16862,lsmdc3083_TITANIC2-39046,18956,Someone shoves past other passengers as she runs down a deck. Someone,Someone shoves past other passengers as she runs down a deck.,Someone,gold,\"opens a gate, then dashes down a lower deck leading to the rear of the ship.\",grabs a crowbar and carton of suspenders.,chases a guard out of the barn.,hears a noise as she speeds down the hallway.\n16863,lsmdc3083_TITANIC2-39046,18962,\"She glances over her shoulder, then steps toward the railing. She\",\"She glances over her shoulder, then steps toward the railing.\",She,gold,\"up his hand, she sits on the other side and flips over a hill leading along the river.\",\"she leans in, her head drops to one side.\",gazes down at the churning waters of the ship's wake.,leaps inside and closes the door behind her.\n16864,lsmdc3083_TITANIC2-39046,18966,\"Gripping the railing for support, someone turns and faces the water. She\",\"Gripping the railing for support, someone turns and faces the water.\",She,gold,leans forward over the ocean.,\"hurries after him, but falls to the field.\",flips the door shut after him as he declares the two.,stands in the doorway.\n16865,anetv_RfXFS9fy-mI,8635,They shoot and make a goal into the net. The players,They shoot and make a goal into the net.,The players,gold,hug on the court.,continue to play on the cliff with their medals.,are watching on the sidelines.,walk next to the goal that is separated by two presents.\n16866,anetv_RfXFS9fy-mI,8634,People are playing soccer in an indoor arena. They,People are playing soccer in an indoor arena.,They,gold,walk back and forth over the pool.,shoot and make a goal into the net.,are playing a game of soccer.,are engaged in a game of baseball.\n16867,anetv_C1TWr5XH8b0,8869,Various text is shown across the screen and leads into a man speaking and more tools being shown. The man,Various text is shown across the screen and leads into a man speaking and more tools being shown.,The man,gold,ends the score showing the segments and coaches at the camera.,then begins drumming the puzzle while moving his hands up and down.,continues to show the shown as well as a man playing an instrument and showing dirt movements.,rubs the tools along his skin and points back and fourth to the vacuum while speaking.\n16868,anetv_Ia3Aa4AO-_E,3843,Two twins dressed in the same way and with the same hairstyle are in a room talking to the camera. the man in the back start putting some boxers above the pants and the man in front,Two twins dressed in the same way and with the same hairstyle are in a room talking to the camera.,the man in the back start putting some boxers above the pants and the man in front,gold,continue speaking to the camera.,demonstrates how to jump rope crunch.,is off his feet.,pretends to shave from his hands.\n16869,anetv_Ia3Aa4AO-_E,3844,\"The man in the back start putting some boxers above the pants and the man in front continue speaking to the camera. Man in front holds a brushteeth and put some toothpaste and clean his teeth, then the guy\",The man in the back start putting some boxers above the pants and the man in front continue speaking to the camera.,\"Man in front holds a brushteeth and put some toothpaste and clean his teeth, then the guy\",gold,rubs his mouth with an iron.,starts dragging the black beetle.,wets his teeth on a sheet and rinses it off with a black towel.,introduces the toothbrush into a honey pot and brush the teeth with it.\n16870,anetv_Ia3Aa4AO-_E,3845,\"Man in front holds a brushteeth and put some toothpaste and clean his teeth, then the guy introduces the toothbrush into a honey pot and brush the teeth with it. man in front holds an hairbrush and the other guy drinks water, the other guy\",\"Man in front holds a brushteeth and put some toothpaste and clean his teeth, then the guy introduces the toothbrush into a honey pot and brush the teeth with it.\",\"man in front holds an hairbrush and the other guy drinks water, the other guy\",gold,then slap them beside switching crotch.,holds a toothbrush with jam and brush his teeth.,presents the sandwich without it while working effects showing those too distributes brush.,holds a small red marker.\n16871,anetv_RhokmoZJrco,4267,Two people surfing kites are shown riding along the water followed by several more people riding in and out of frame. One person,Two people surfing kites are shown riding along the water followed by several more people riding in and out of frame.,One person,gold,is shown as well as themselves doing tricks on the snow.,rides faster and whips themselves around while many watch on the side.,jumps down while moving their arms up and down then continue to ride down the hills.,is then seen surfing in the water while driving around.\n16872,anetv_RhokmoZJrco,3213,\"They float through the water, holding their sails upright. A person\",\"They float through the water, holding their sails upright.\",A person,gold,kicks off a surface.,spots the wake board under their starting raft.,throws water over their terrace water to wash them.,goes over another person in the water.\n16873,anetv_RhokmoZJrco,3212,A couple of people were sailing on the ocean. They,A couple of people were sailing on the ocean.,They,gold,pick up multiple bolts and their hands as they strike.,\"float through the water, holding their sails upright.\",are then brought down with inflatable oars.,are on a rough river passing to a pier.\n16874,lsmdc3040_JULIE_AND_JULIA-17750,15644,He shifts his gaze then nods. Her husband,He shifts his gaze then nods.,Her husband,gold,turns her desk and marches quickly.,gently covers the cup.,gives him an envelope.,eyes her with an affectionate smirk.\n16875,lsmdc3040_JULIE_AND_JULIA-17750,15645,\"Now in a millinery workshop, someone sits before an unadorned hat on a stand. She\",\"Now in a millinery workshop, someone sits before an unadorned hat on a stand.\",She,gold,someone the plane president.,\"himself, she holds out a drawer of a pair of gum, but slightly hesitantly.\",picks up a ribbon and pulls one end through the other with a dissatisfied pout.,\"goes back into the living room, his eyes wide in anticipation.\"\n16876,lsmdc3040_JULIE_AND_JULIA-17750,15643,Someone stares wide - eyed at her. He,Someone stares wide - eyed at her.,He,gold,shifts his gaze then nods.,wakes up and looks away.,glances at the dog.,drained the overhead light and led away from the ark.\n16877,lsmdc3040_JULIE_AND_JULIA-17750,15641,Someone refrains from digging in and faces someone. She,Someone refrains from digging in and faces someone.,She,gold,stares down at it.,shifts her restless gaze.,shakes his head as the three little kids watch with astonishment.,swipes a stone from his scrawled hand.\n16878,lsmdc3040_JULIE_AND_JULIA-17750,15646,\"She picks up a ribbon and pulls one end through the other with a dissatisfied pout. In a bridge class, someone\",She picks up a ribbon and pulls one end through the other with a dissatisfied pout.,\"In a bridge class, someone\",gold,stands on the front steps and climbs out.,steps out of the office with a music box.,stares out a window.,shows a weather report.\n16879,lsmdc3040_JULIE_AND_JULIA-17750,15642,She shifts her restless gaze. Someone,She shifts her restless gaze.,Someone,gold,pounds someone's arm a denim - stained shirt.,\"turns away, tears well behind her eyes and sucks her hair up at her face.\",stares wide - eyed at her.,follows someone back into the office.\n16880,lsmdc3050_MR_POPPERS_PENGUINS-23832,19453,Someone ambles into the living room. He,Someone ambles into the living room.,He,gold,smokes a cigarette then eyes her.,sprays the windows into a building as sunlight pours in through a window.,\"looks in his mirror, startled.\",sits beside his daughter.\n16881,lsmdc0020_Raising_Arizona-57656,6291,\"Perfectly motionless, he stares at the campfire. We\",\"Perfectly motionless, he stares at the campfire.\",We,gold,drift over the pine cylinder.,fires from the rear of the truck.,glide over their necks.,are floating in toward him.\n16882,lsmdc0020_Raising_Arizona-57656,6300,His eyes continue to follow some phantom movement. When the Biker speaks it,His eyes continue to follow some phantom movement.,When the Biker speaks it,gold,has his lips moving one hand over and over again.,\", he sees someone catches his wrist.\",begins to leave different lines.,\"is still without looking at someone, and with a surprisingly soft voice and mild, unhurried manner.\"\n16883,lsmdc0020_Raising_Arizona-57656,6294,\"Swinging as he walks, the Biker's hand produces a fresh cheroot from no apparent source - either sleight - of - hand or magic. The match\",\"Swinging as he walks, the Biker's hand produces a fresh cheroot from no apparent source - either sleight - of - hand or magic.\",The match,gold,stops when a heavy tire hits the siren and disappeared in the other direction.,erupts into roaring flame.,is stopped.,starts in its roar as it tastes horrible.\n16884,lsmdc0020_Raising_Arizona-57656,6290,\"Through it we can see the Biker sitting on the ground, legs stretched out in front of him, back resting against his parked motorcycle, arms folded across his chest. Perfectly motionless, he\",\"Through it we can see the Biker sitting on the ground, legs stretched out in front of him, back resting against his parked motorcycle, arms folded across his chest.\",\"Perfectly motionless, he\",gold,moves off with pieces of spray.,slowly turns to stare as he drives.,holds his hands up.,stares at the campfire.\n16885,lsmdc0020_Raising_Arizona-57656,6297,\"The door swings open and someone stands looking in, his middle - aged secretary hanging at his elbow. Someone\",\"The door swings open and someone stands looking in, his middle - aged secretary hanging at his elbow.\",Someone,gold,trains a revolver in his eyes.,raises his own arm.,stares at the pickle smiling dazzling than staring at the mirror.,is staring toward his desk.\n16886,lsmdc0020_Raising_Arizona-57656,6292,\"As we come closer, eventually drawing in to a close shot of his face, we gradually realize something peculiar about his eyes: He seems to have none. Although his eyes are unblinkingly open we\",\"As we come closer, eventually drawing in to a close shot of his face, we gradually realize something peculiar about his eyes: He seems to have none.\",Although his eyes are unblinkingly open we,gold,can not know where the camera has left the floor.,\"do not see eyeballs, but only fire - either a reflection of the campfire or something roaring - burning - inside.\",can see that it's raining hard.,can see a shadow crosses the - rise.\n16887,lsmdc0020_Raising_Arizona-57656,6293,A jackbooted foot grinds it out. The Biker's mail - and - chained fist,A jackbooted foot grinds it out.,The Biker's mail - and - chained fist,gold,is dissolves into the tiny metal splinter.,hangs his car socks off from the bike floor.,pushes the door open.,is leaning against the rear view of its windows.\n16888,lsmdc0020_Raising_Arizona-57656,6299,\"Eyes on the Biker he slams the door shut behind him, looking for some reaction. He still\",\"Eyes on the Biker he slams the door shut behind him, looking for some reaction.\",He still,gold,\"looks weird, but still nothing.\",\"does not react to someone, not even bothering to give him a glance.\",picks up his free hand and blocks him smashing.,swerves in the car slamming the door when the van pulls up.\n16889,anetv_c-3ed17J3F8,12359,\"Next, a man in a navy uniform begins walking down the road and ends up in the room with the man. The two of them\",\"Next, a man in a navy uniform begins walking down the road and ends up in the room with the man.\",The two of them,gold,continue back along the road and fall on all fours without colossus.,are walking out in front of him and trying to fight him off the bridge.,talk in the middle of a game with cameras aiming for an interview.,begin polishing a pair of boots together with a white cloth and a green brush.\n16890,anetv_c-3ed17J3F8,12360,\"The two of them begin polishing a pair of boots together with a white cloth and a green brush. As they finish, the man in the green shirt is given a patch and a screen of tips\",The two of them begin polishing a pair of boots together with a white cloth and a green brush.,\"As they finish, the man in the green shirt is given a patch and a screen of tips\",gold,is shown in the drawing of the pruning side.,appear to apply multicolored on screen.,attachments to catch who notices the difference between boxers apparent as what it needs to be about and some attempt this.,come on the screen for properly caring for your boots.\n16891,anetv_c-3ed17J3F8,12358,\"A man is standing in a shed behind a crafts table talking to the camera. Next, a man in a navy uniform\",A man is standing in a shed behind a crafts table talking to the camera.,\"Next, a man in a navy uniform\",gold,shows how to make long puffs.,begins walking down the road and ends up in the room with the man.,\"is explaining about inflatable to be ina pool before observing other people, the knitting and their group.\",is taps two sticks on the flat machine.\n16892,anetv_mzbhfWgJ2sU,14601,She cuts up vegetables and put them in a bowl. They,She cuts up vegetables and put them in a bowl.,They,gold,eat the mixture with forks.,are mixing ice product in a bowl.,use towels to mix the ingredients together.,roll up the tray.\n16893,anetv_mzbhfWgJ2sU,15692,Two people are seen hosting a news segment that leads into two women speaking to the camera. A woman then,Two people are seen hosting a news segment that leads into two women speaking to the camera.,A woman then,gold,attempts to play hockey in front of a ping pong match.,rides up a dirt skate track followed by one girl helping.,holds up two large windows and leads into a woman talking.,shows the host how to make a meal by mixing various ingredients together.\n16894,anetv_mzbhfWgJ2sU,15693,A woman then shows the host how to make a meal by mixing various ingredients together. She,A woman then shows the host how to make a meal by mixing various ingredients together.,She,gold,squirts off more parts on the baking pan and stirs it with a spoon.,adds a salad to flour and make a salad.,\"pours the ingredients into a dish, then pours over and mixture into a glass.\",stirs around the mixture while adding more and taking bites in the end while smiling to the camera.\n16895,anetv_mzbhfWgJ2sU,14600,A woman peels a fruit in her hand. She,A woman peels a fruit in her hand.,She,gold,talks to the camera about trimming the contact cover and the strange facial expression.,unloads items from a plate as a man helps them carry sprinkles on strawberry cake.,cuts up vegetables and put them in a bowl.,adds the wallpaper to the wall.\n16896,anetv_mzbhfWgJ2sU,14599,Two women are standing in a kitchen. A woman,Two women are standing in a kitchen.,A woman,gold,comes on stage holding a cup.,enters and poses for a picture.,is holding a plate of food and pans to go into the carriage.,peels a fruit in her hand.\n16897,lsmdc1015_27_Dresses-79916,18691,Twenty - seven former brides have lined up wearing the dresses from someone's closet. They,Twenty - seven former brides have lined up wearing the dresses from someone's closet.,They,gold,dashes from a slide as days and kicks up toward someone directly and fires.,\"kiss then turn towards their guests, smiling happily.\",is piled up with a pair of articles many inn hot.,watch the bag reflection through a hole in a glass wall.\n16898,anetv_JjGhHZgdWVI,7615,\"A man turns on a welding tool, sparks flying. He\",\"A man turns on a welding tool, sparks flying.\",He,gold,moves over to work and plugs his big slice through the hole.,sits in the passenger seat and beings to take some tiles carefully once more.,uses the tool to weld something on the floor.,is transitioning to the tip of a button and describes how to use it.\n16899,anetv_JjGhHZgdWVI,5527,A man shows a yellow post it note in front of the camera. A man,A man shows a yellow post it note in front of the camera.,A man,gold,\"is dressed up in a blue shirt, holding a large torch in view.\",seeks dirt next to the metal.,is welding something on the ground.,talks and clips the dog with his pencil.\n16900,anetv_JjGhHZgdWVI,7614,Several boxes are stacked in piles. A man,Several boxes are stacked in piles.,A man,gold,gives a sauce product in his foot.,\"jumps out of the spherical pit onto a grass weld, then flips the man once again.\",dashes to a set and vacuums the white carpet.,\"turns on a welding tool, sparks flying.\"\n16901,anetv_cvEOK7xAPSs,7281,People running up the beach very quickly. Then they,People running up the beach very quickly.,Then they,gold,use their backpacks and designer signs before going down a set of ramps.,start to make strange faces towards the camera.,jump and jump back up and down the ramps.,throw their hands up and down and continue trying to throw them.\n16902,anetv_cvEOK7xAPSs,7283,They start bouncing and doing tricks on some kind of bouncy rope. Some of the the tricks,They start bouncing and doing tricks on some kind of bouncy rope.,Some of the the tricks,gold,are outdoors at the same time.,look like they are very extreme.,\"are on, practicing turn archery, talking and diving.\",are as fast as they can jump on and flipping and jumping.\n16903,anetv_2cc7BoZHEJI,858,People are playing a game of water polo in a swimming pool. A woman standing on the side of the pool,People are playing a game of water polo in a swimming pool.,A woman standing on the side of the pool,gold,begins to make bounce.,is engaged in a game of pool.,is talking to the camera.,watching her and talking to the camera.\n16904,anetv_2cc7BoZHEJI,859,A woman standing on the side of the pool is talking to the camera. A man,A woman standing on the side of the pool is talking to the camera.,A man,gold,blows a whistle on the side of the swimming pool.,picks up a rubiks cube.,kneels down next to her both.,is swimming in a empty pool off while talking.\n16905,anetv_90vop6PS2Y0,14514,A boy pushes a rake while riding a scooter down the driveway. It,A boy pushes a rake while riding a scooter down the driveway.,It,gold,follows the kids in the snow.,gets agitated and continues off to the road.,pushes the leaves in the driveway out to the road.,walks down the tree and the camera follows their boards in the woods.\n16906,anetv_90vop6PS2Y0,14515,It pushes the leaves in the driveway out to the road. He,It pushes the leaves in the driveway out to the road.,He,gold,finds one of the radio bottles.,arrives with a red armored suit inside.,continues the pattern until the driveway is clean of debris.,see the back of him with another lady from the rooftop.\n16907,anetv_90vop6PS2Y0,12578,He is using a rake to push leaves. He,He is using a rake to push leaves.,He,gold,is hitting in a pile.,goes up and down the driveway.,is cutting into a toothpick.,trims to the ash and piles all around.\n16908,anetv_jRfTdoqG7Tw,14687,A close up of a woman's face is shown followed by someone putting makeup on her and a woman speaking to her. The woman,A close up of a woman's face is shown followed by someone putting makeup on her and a woman speaking to her.,The woman,gold,continues placing shaving on the girl's hair.,moves this around using a lead while eating while speaking to the girl.,continues putting makeup on as well as the woman putting makeup on herself and showing off the finished product.,hold onto a product faucet the girl men can't see.\n16909,anetv_jRfTdoqG7Tw,19031,A woman is seen getting makeup put on and leads into two women speaking. One woman then,A woman is seen getting makeup put on and leads into two women speaking.,One woman then,gold,speaks to the camera followed by the women putting them on.,begins putting makeup on the other while still speaking.,demonstrates how to use two panels and show them and presenting them in a washer.,speaks to the camera using a large paint brush on a wall.\n16910,anetv_Ds-LrRrLj9c,15328,\"A little girl wearing a brown bow is standing in front of the sink brushing her teeth. The little girl, then turns the water on and\",A little girl wearing a brown bow is standing in front of the sink brushing her teeth.,\"The little girl, then turns the water on and\",gold,holds her chin.,reaches for her left paw.,brushes her teeth as the boy suppresses and shakes her head a bit.,spits several times in the sink.\n16911,anetv_Ds-LrRrLj9c,15329,\"The little girl, then turns the water on and spits several times in the sink. Finally, she\",\"The little girl, then turns the water on and spits several times in the sink.\",\"Finally, she\",gold,gets into the chair and starts wiping with the mouthwash.,\"puts the brush down, rinses her mouth and dries it with a brown towel.\",pours the pasta into a glass and dumps it into the glass.,\"returns to the beginning of the life of a nice spot, then water all together continuously going back together.\"\n16912,anetv_YDNEa5ZOf6c,4985,\"A man wearing a hood is opening a paper, then he went down the stair and walked to a pathway. The woman\",\"A man wearing a hood is opening a paper, then he went down the stair and walked to a pathway.\",The woman,gold,holds up a piece of string and use it to touch the banker's chest.,\"in a pink shirt puts the piece of wood onto a slice of wood, he put it on the wall.\",run behind removing the leaves by the foot.,is talking to the camera and showing the ground covered with snow.\n16913,anetv_j1oB2NAlYsQ,6333,Then another young man dives from the same diving board. They both,Then another young man dives from the same diving board.,They both,gold,stand then get ready from dive and talk to two other divers.,jump on the water and pushing.,do the forward diving move.,\"continue to hop, then multi.\"\n16914,anetv_j1oB2NAlYsQ,6330,There is a diver wearing yellow swim trunks is diving from a diving board in an indoor swimming pool. He,There is a diver wearing yellow swim trunks is diving from a diving board in an indoor swimming pool.,He,gold,performs several flips and flips in the air before jumping over the diving board.,is still being swimming behind a pool paddle on it.,and son stands facing it.,jumps off of the diving board several times as some other people are leisurely swimming in the pool.\n16915,anetv_j1oB2NAlYsQ,6334,They both do the forward diving move. Another diver,They both do the forward diving move.,Another diver,gold,is shown in blue shorts and jumps in on a wagon for two or two fab.,goes up much higher and dives right into to pool.,is shot with another wave.,flips off the surfboard.\n16916,anetv_j1oB2NAlYsQ,6331,He jumps off of the diving board several times as some other people are leisurely swimming in the pool. He,He jumps off of the diving board several times as some other people are leisurely swimming in the pool.,He,gold,helps him out of the air as they swim down.,\"watches the shape swims to a spot on the right, swims a bit and then dives into the pool.\",does the backward and forward diving moves as another young man watches him dive right into the pool.,walks to the edge of the pool and continues to spin around when someone finds his board on the board and dive around it.\n16917,anetv_KEUJ7ulD-_A,2631,Several racers are introduced with their names shown on the screen. The race starts and the racers,Several racers are introduced with their names shown on the screen.,The race starts and the racers,gold,perform a long soak walk across the track.,begin playing hopscotch with each other.,continue fast racing over the track.,race around the track.\n16918,anetv_KEUJ7ulD-_A,2630,The racers are shown at the gate getting ready for the race. Several racers,The racers are shown at the gate getting ready for the race.,Several racers,gold,run by try and shoot at each other.,race towards a fence to greet cute curves in the track.,are introduced with their names shown on the screen.,begin a race at the forest.\n16919,anetv_KEUJ7ulD-_A,2629,The video opens up with an intro segment for a bmx race. The racers,The video opens up with an intro segment for a bmx race.,The racers,gold,on other bikes is then shown speaking to the camera.,are shown at the gate getting ready for the race.,pass the red team on the race track.,\"starts performing the trick, trying to measure the distance.\"\n16920,anetv_kWPvAxLzGw8,13000,A woman is sitting down wearing green sunglasses. She,A woman is sitting down wearing green sunglasses.,She,gold,is playing a set of bagpipes.,is seen smoking a cigarette as she demonstrates the smoke.,is putting a hula hoop around her legs.,is talking on the cell phone.\n16921,anetv_kWPvAxLzGw8,13004,She is showing her foot tattoo. She,She is showing her foot tattoo.,She,gold,is sitting outside talking again.,talks about how to pound the nail in her palm.,speaks to the camera and shows her how to play the rhythm.,comes then instructions on how to move your legs.\n16922,anetv_kWPvAxLzGw8,13003,She is laying on a chair getting her foot tattooed. She,She is laying on a chair getting her foot tattooed.,She,gold,dismounts and falls to the floor.,is showing her foot tattoo.,seems to be smiling at all the experience in her background.,\"saunters off, shaves her leg, and rubs her leg.\"\n16923,anetv_kWPvAxLzGw8,13001,She is talking on the cell phone. She,She is talking on the cell phone.,She,gold,puts a microphone in her ear.,finishes with a crunch.,is riding in a car.,is playing in front of a tv.\n16924,anetv_qvLFSqPCvn8,16041,\"The man then grabs the tire he pulled out from the back of the car, puts it on the car, puts the rim on it and tightens lugs onto them with his hand and then he picks up the tool and tightens the lugs with that. The man then removes the jack from under the car and tightens the lugs again with the tool and he\",\"The man then grabs the tire he pulled out from the back of the car, puts it on the car, puts the rim on it and tightens lugs onto them with his hand and then he picks up the tool and tightens the lugs with that.\",The man then removes the jack from under the car and tightens the lugs again with the tool and he,gold,lets it go off and pours the fish against the driver's side.,\"slides the pants lid, and then scrapes it at a can of milk.\",stands up out of breath and smiles.,continues peeling off until it is coming up while laughing and talking to the camera.\n16925,anetv_qvLFSqPCvn8,16040,\"A man grabs a tire from the back of the car and quickly runs to the front right of the car, drops it on the grass, then runs to the tire still on the car and begins to raise the car with a jack, and remove the lugs, rim and tire and throws them on the grass. The man then grabs the tire he pulled out from the back of the car, puts it on the car, puts the rim on it and tightens lugs onto them with his hand and then he\",\"A man grabs a tire from the back of the car and quickly runs to the front right of the car, drops it on the grass, then runs to the tire still on the car and begins to raise the car with a jack, and remove the lugs, rim and tire and throws them on the grass.\",\"The man then grabs the tire he pulled out from the back of the car, puts it on the car, puts the rim on it and tightens lugs onto them with his hand and then he\",gold,picks up the tool and tightens the lugs with that.,travel on top it into the foreground and there's a small man sitting in a picnic on the street.,puts the whole in.,takes the car and presenting it to the camera while the camera is being driven up on people that covered with the sled inside.\n16926,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1877,208,\"Someone pulls out a knife and battles someone. Using her unnatural strength, she\",Someone pulls out a knife and battles someone.,\"Using her unnatural strength, she\",gold,opens the fiercely.,grabs someone and stabs him in the stomach.,shoots the ex - wife.,raises her arms ecstatically and tiptoes away.\n16927,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1877,209,\"Using her unnatural strength, she grabs someone and stabs him in the stomach. She\",\"Using her unnatural strength, she grabs someone and stabs him in the stomach.\",She,gold,\"hops on one hook, then continues dancing through the gutter onto her hands.\",grabs his throat and shaves his back with her.,shifts her cold eyes then shakes her.,stabs him again and pushes him down into the cellar.\n16928,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1877,210,It's morning in the abandoned cottage. He,It's morning in the abandoned cottage.,He,gold,pours oil into the glass tower.,\"surfaces as someone takes off, then turns to someone.\",pushes aside the bowl.,is trying to be college in a basement.\n16929,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33433,3022,He takes out of the datebook. Someone,He takes out of the datebook.,Someone,gold,leans toward the datebook.,starts snatching the phone away.,slowly takes an egg.,rockets towards the fire.\n16930,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33433,3023,Someone leans toward the datebook. He,Someone leans toward the datebook.,He,gold,slides it back to his visitor.,puts down the pills.,waves his hand in the air then unties the rope and smiles.,hugs her and he waves back.\n16931,anetv_r8RJSDKy9iA,5287,A young girl has several people holding her eye open while another tries to put in a contact lens. They,A young girl has several people holding her eye open while another tries to put in a contact lens.,They,gold,woman puts glasses on the end of this twist and eye a contact lens in her eye.,can not get the lens in at the eye at first and try over and over again.,walk to the edge.,\"begins to gel and women, are eye to eye.\"\n16932,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72784,7449,\"Descending the stairs, he meets someone who has overheard his exchange with someone. He\",\"Descending the stairs, he meets someone who has overheard his exchange with someone.\",He,gold,grabs the razor in one hand and lights him in the mirror.,turns to watch as the team marks wildly to the boxer.,stops in front of someone for a moment then continues his descent.,\"holds his face silently, keeping his eyes fixed on the television.\"\n16933,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72784,7450,He stops in front of someone for a moment then continues his descent. Someone,He stops in front of someone for a moment then continues his descent.,Someone,gold,falls as his hand moves above the straps of the cross.,\"looks down in her seat, carefully perspiring the pain.\",gazes out the window and tenderly squeezes the spinning door shut.,climbs up to the upper platform.\n16934,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72784,7448,\"Someone abruptly leaves the astronomy tower. Descending the stairs, he\",Someone abruptly leaves the astronomy tower.,\"Descending the stairs, he\",gold,turns away.,meets someone who has overheard his exchange with someone.,follows a few pair of men to a cliff top who runs around the space and lands below before him on a mat.,drops in the bolt.\n16935,anetv_b1QkoG9hxk8,8731,A blond girl wearing a black blouse instructs on how to prepare a mudslide. The bartender,A blond girl wearing a black blouse instructs on how to prepare a mudslide.,The bartender,gold,demonstrates how to prepare the drink.,holds a measuring cup.,starts to play some accordion.,is addressing one booth.\n16936,anetv_b1QkoG9hxk8,14726,\"A woman shows how to make mixed drinks with chocolate syrup, kahlua, and Bailey's. She\",\"A woman shows how to make mixed drinks with chocolate syrup, kahlua, and Bailey's.\",She,gold,stuffs a package with a pair of tongs.,\"joins the ingredients to bake it, then adds the chocolate coloring to it.\",\"adds ice, the liqueur and puts it on a napkin.\",demonstrates a piece of shrimp with the camera.\n16937,anetv_x99PS_O6JW8,13806,A young man is talking to the camera outside while taking puffs off of a hookah. He,A young man is talking to the camera outside while taking puffs off of a hookah.,He,gold,starts followed and holds a paintbrush in his hands.,puts the pipe away and takes a swing out of an energy drink.,\"is dying, a little out of the smoke and presenting it on a fire to make sure the throw is not shown.\",shows how to play a set of bongo kicks in unsuccessful comforting between them.\n16938,anetv_x99PS_O6JW8,13808,He moves the camera to show another man and continues smoking the hookah next to the other man. Both look into the camera while smoking and the boy still,He moves the camera to show another man and continues smoking the hookah next to the other man.,Both look into the camera while smoking and the boy still,gold,has notes in his nostrils.,continues drinking the energy drink.,holds onto another woman by the hand.,looking as the camera view moves up a picture.\n16939,anetv_x99PS_O6JW8,13807,He puts the pipe away and takes a swing out of an energy drink. He,He puts the pipe away and takes a swing out of an energy drink.,He,gold,moves the camera to show another man and continues smoking the hookah next to the other man.,dives towards the bowler.,\"drops the rest of the lighter on the chair, peering onto it and still smiling.\",thrusts someone in cup as he is poured into a glass.\n16940,anetv_B73wt5icB-c,3046,\"A girl is outside on a slab of concrete next to a body of water and she beings to jump rope doing intricate jumps in between. As the location changes, she\",A girl is outside on a slab of concrete next to a body of water and she beings to jump rope doing intricate jumps in between.,\"As the location changes, she\",gold,moves in front of a mountain of rocks and begins twirling before she returns to jump roping.,spins quickly around a different white pole vaults across a hedge.,remains on the ski bar again and performs several slow stunt ups on the end before the pole.,has one hand extended while holding it in her hand.\n16941,anetv_B73wt5icB-c,3047,\"As the location changes, she moves in front of a mountain of rocks and begins twirling before she returns to jump roping. After, two girls appears dressed identically and they both\",\"As the location changes, she moves in front of a mountain of rocks and begins twirling before she returns to jump roping.\",\"After, two girls appears dressed identically and they both\",gold,believe in silver bathing suits and mounds sport flips all the same way in the small park.,begin jumping near the water and twirling.,have most people's rule in the background.,eat in a current together and put on their shirt and make a complete total swift and do jumps in the air.\n16942,anetv_B73wt5icB-c,11147,A woman is standing on the ground next to the ocean. She,A woman is standing on the ground next to the ocean.,She,gold,is doing several tricks and stunts with a jump rope.,swings his broom around.,goes back and forth and various soaps are presented.,is using a bench to measure the wind using her hands.\n16943,anetv_B73wt5icB-c,3048,\"After, two girls appears dressed identically and they both begin jumping near the water and twirling. It's now dark outside and people\",\"After, two girls appears dressed identically and they both begin jumping near the water and twirling.\",It's now dark outside and people,gold,'s face lit with a green taking up yellow brush.,begin sailing in the water in a a boat.,ride beach lights while the camera following in the stilts.,\"have a struggle in the fall, explores such swimming workouts that stands behind their bellies.\"\n16944,anetv_B73wt5icB-c,11148,She is doing several tricks and stunts with a jump rope. She,She is doing several tricks and stunts with a jump rope.,She,gold,continues twirling and jumping on the rocks.,flips into the pool in several more position.,jumps in the ropes and do water pass behind the dog.,\"rises, flipping to one side and jumps backward in.\"\n16945,anetv_iJzt1rvGiOc,9715,The blond woman walks back into the room and shows all the various pairs of sneakers the man has laying all over the hotel room. The blond woman,The blond woman walks back into the room and shows all the various pairs of sneakers the man has laying all over the hotel room.,The blond woman,gold,\"sits on the sofa, speaking to one another and covers them up with the brush.\",\"puts the arm behind her head while she talks, then she sits with a woman who pulls back.\",\"is working the colorful flowers on an electrical box covered in bushes, which the tourist is drawing her from.\",walks back into the bathroom and video tapes the man holding the white sneakers.\n16946,anetv_iJzt1rvGiOc,9717,The man is now outside putting polish and plastic tape on the sneakers and he is detailing them with a toothbrush. There,The man is now outside putting polish and plastic tape on the sneakers and he is detailing them with a toothbrush.,There,gold,shows the man smiling and folds the dishes while speaking to the camera.,sees the man rubbing powder on the shoes.,are various pictures of the end product of clean sneakers.,are used to talk in each other and jars and drink cups.\n16947,anetv_iJzt1rvGiOc,9716,The blond woman walks back into the bathroom and video tapes the man holding the white sneakers. The man is now outside putting polish and plastic tape on the sneakers and he,The blond woman walks back into the bathroom and video tapes the man holding the white sneakers.,The man is now outside putting polish and plastic tape on the sneakers and he,gold,is polishing her shoes with pants.,wipes the car with the solution.,gets on top of her.,is detailing them with a toothbrush.\n16948,anetv_iJzt1rvGiOc,9714,The woman stands up and points the camera to the door into the bathroom where a man is washing his sneakers in the sink with a brush. The blond woman,The woman stands up and points the camera to the door into the bathroom where a man is washing his sneakers in the sink with a brush.,The blond woman,gold,\"appears on the table, dressed in as a towel, and swishes.\",has shaves her legs and tattooed and long legs.,turns on the faucet and talks to the camera while the woman walking towards the camera and showing off his shoes.,walks back into the room and shows all the various pairs of sneakers the man has laying all over the hotel room.\n16949,anetv_e07y3QI4Kbg,10531,Two people are seen arm wrestling with one another while one man holds their hands. The men then,Two people are seen arm wrestling with one another while one man holds their hands.,The men then,gold,begin spinning back and fourth swinging each other and up upside down.,walk back and fourth.,begin throwing swords at one another while the camera captures their movements.,continue to wrestle with one slamming the other's hand down.\n16950,lsmdc1018_Body_Of_Lies-79966,18003,Someone looks at a stone house through binoculars. Goats,Someone looks at a stone house through binoculars.,Goats,gold,swarm around in front.,hops down onto the street in front of the small building.,crawls around a row of shirtless troopers.,burn in his chest.\n16951,lsmdc1018_Body_Of_Lies-79966,18005,Someone calls on his mobile. They,Someone calls on his mobile.,They,gold,are watched on a screen in a cia surveillance room.,stop a steer and enters the bustling restaurant.,\"disintegrate, like a shotgun bomb, then drag someone away.\",run through the forest.\n16952,lsmdc1018_Body_Of_Lies-79966,18009,\"He sees something glinting in the sky. The Predator drone, an unmanned surveillance aircraft,\",He sees something glinting in the sky.,\"The Predator drone, an unmanned surveillance aircraft,\",gold,controls up a noose then hits the floor.,chases him off the train.,is flown to a higher altitude.,extends out the middle of the room.\n16953,lsmdc1018_Body_Of_Lies-79966,18007,Someone walks along the track with someone. Someone,Someone walks along the track with someone.,Someone,gold,takes out his cell phone and looks at it.,\"nears a fire booth in the field, then peers into us.\",steps around to find someone hunched over a plush owl.,sits on the ottoman in a fast chair.\n16954,lsmdc1018_Body_Of_Lies-79966,18006,\"In the surveillance room, someone stands by a wall. Someone\",\"In the surveillance room, someone stands by a wall.\",Someone,gold,\"passes a man in the farm casino, listening, with beer in hand.\",is in a coffin.,sits behind the abbey.,walks along the track with someone.\n16955,lsmdc1018_Body_Of_Lies-79966,18004,Goats swarm around in front. Someone,Goats swarm around in front.,Someone,gold,hack out of the cage.,calls on his mobile.,climbs up a ladder against a mountainside.,swings his mallet at someone.\n16956,lsmdc1018_Body_Of_Lies-79966,18008,Someone takes out his cell phone and looks at it. He,Someone takes out his cell phone and looks at it.,He,gold,sees something glinting in the sky.,\"releases the cattle, then takes a few tickets out of his pocket.\",\"stands to the registration table, reading a book virtually the same.\",\"nods, and opens it on his face.\"\n16957,anetv_kC8DS6b76yI,4412,He is using a red can of spray paint to demonstrate how to paints a cream colored sofa with red paint. He continues to spray paint the back and the arm,He is using a red can of spray paint to demonstrate how to paints a cream colored sofa with red paint.,He continues to spray paint the back and the arm,gold,is moving in laundry.,rests of the sofa.,up to polish the fence.,stirs in white paint.\n16958,anetv_kC8DS6b76yI,4411,There's a man wearing a black shirt and a green bandana demonstrating how to spray paint a microfiber sofa. He,There's a man wearing a black shirt and a green bandana demonstrating how to spray paint a microfiber sofa.,He,gold,\"is standing in front of a paintbrush, he begins mixing the seasonings in the bowl.\",is using the scissor to paint the fence with a green cutter.,shows off his nail knife with a white knife and paint.,is using a red can of spray paint to demonstrate how to paints a cream colored sofa with red paint.\n16959,lsmdc3070_THE_CALL-32868,14228,\"Hopping out, he approaches a chubby service attendant with some cash in hand. He\",\"Hopping out, he approaches a chubby service attendant with some cash in hand.\",He,gold,rushes back around the car and opens the gas cap.,\"waits for it to wait, and instantly disappears immediately.\",heads to the detective.,walks around one rainy road.\n16960,lsmdc3070_THE_CALL-32868,14229,He rushes back around the car and opens the gas cap. Large sweat stains,He rushes back around the car and opens the gas cap.,Large sweat stains,gold,stains on the windscreen.,mark his chest and back.,the side of the drenched street.,his lips and his eyes stray to the silver hill.\n16961,lsmdc3070_THE_CALL-32868,14227,\"Now, the kidnapper pulls into an empty gas station with old style pumps. Hopping out, he\",\"Now, the kidnapper pulls into an empty gas station with old style pumps.\",\"Hopping out, he\",gold,\"climbs the ramp of the oncoming ramp, pumps ahead up with a scraper.\",\"locks the report card and finds a tractor - filled, long - walled carriage riding nearby two more rows.\",approaches a chubby service attendant with some cash in hand.,finds a narrow road sliding along an ice road below.\n16962,anetv_ZT63nK4lexg,5605,A man walks over and chalks his hands. The man,A man walks over and chalks his hands.,The man,gold,strikes the ball with a person.,measures the width of the foot and kneels on the floor.,\"walks the bars, stretches and stands there.\",pats makeup on the man's face.\n16963,anetv_ZT63nK4lexg,5606,\"The man walks the bars, stretches and stands there. The man\",\"The man walks the bars, stretches and stands there.\",The man,gold,mounts the bars and begins to spin.,moves backward and takes the same.,starts jump roping around while standing.,walks forward continuously and kicks the palms of his companions.\n16964,anetv_sVk-Br0zfkA,5256,A close up of a woman is seen looking off into the distance and holding a dart. She,A close up of a woman is seen looking off into the distance and holding a dart.,She,gold,points to the camera on front of the dart board that leads to her playing a game of water hockey.,jumps in the end and walks around the net.,throws the dart onto the board which is show up close.,continues spinning around in the machine moving around and aiming at the camera.\n16965,anetv_6tveUnZe7WA,399,\"As he is standing, he plays the bag pipes with the American Flag hanging down from them. When he is finished, he\",\"As he is standing, he plays the bag pipes with the American Flag hanging down from them.\",\"When he is finished, he\",gold,\"turns before recovers, holds himself onto his back and runs to apply something to the woman's neck as he stands applaud.\",begins to walk in position and show the original place yo be taken out.,\"begins to look to his right, shakes his head, catches his breath and keeps playing.\",opens it again to add glasses and throws the flute back on the table.\n16966,anetv_6tveUnZe7WA,398,\"A white male is dressed outside in a Scotland uniform standing outside in the middle of a cemetery. As he is standing, he\",A white male is dressed outside in a Scotland uniform standing outside in the middle of a cemetery.,\"As he is standing, he\",gold,takes several turns on applying the clipboard to a man in an orange shirt green and black tights.,\"is dancing to rest of the boy by holding, the lady who is swinging on the side.\",\"'s riding his skateboard in the middle of the park, spinning along and bouncing all around it.\",plays the bag pipes with the american flag hanging down from them.\n16967,anetv_o_AftOrP4zI,1023,\"The athlete is putting on his red sneakers, then he talked to the camera, and then run in the indoor tracking field. He rested for a bit, then his coach is having interview, then the scene change where the athlete started to practice, running around,\",\"The athlete is putting on his red sneakers, then he talked to the camera, and then run in the indoor tracking field.\",\"He rested for a bit, then his coach is having interview, then the scene change where the athlete started to practice, running around,\",gold,showing to the off wall.,onto an opposing tennis display.,\"begins the talking, the video refreshments as minnesota ames to be introduced.\",then did some pole jumped.\n16968,anetv_o_AftOrP4zI,1024,\"He rested for a bit, then his coach is having interview, then the scene change where the athlete started to practice, running around, then did some pole jumped. He\",\"He rested for a bit, then his coach is having interview, then the scene change where the athlete started to practice, running around, then did some pole jumped.\",He,gold,is also doing him tricks again.,did some exercises and stretches.,crouch and continue again to demonstrate how to lay them down.,is performing a martial arts act with a basket.\n16969,lsmdc3080_THIS_MEANS_WAR-37262,9984,\"Someone sticks up his middle finger. Behind his back, he\",Someone sticks up his middle finger.,\"Behind his back, he\",gold,sees his shadow running across the street.,discreetly draws a gun then makes a show of resting his hand behind someone's seat back.,passes the ropes and steps.,sees smoke ringed the outside of a room.\n16970,lsmdc3080_THIS_MEANS_WAR-37262,9983,\"From a surveillance room, someone watches footage from its camera. Someone\",\"From a surveillance room, someone watches footage from its camera.\",Someone,gold,drops a bedside sheet and sets it down on a couch.,shuts her eyes and clamps his mouth shut.,sticks up his middle finger.,footage shows the necessary equipment to scientists.\n16971,lsmdc3080_THIS_MEANS_WAR-37262,9986,\"Now someone takes someone to an enormous art vault. In an alcove, several paintings by Klimt\",Now someone takes someone to an enormous art vault.,\"In an alcove, several paintings by Klimt\",gold,stand propped against crates.,leans on someone's door.,beams illuminate the marble floor.,stand along the walls.\n16972,lsmdc3080_THIS_MEANS_WAR-37262,9981,Someone rides in the Camaro with her. A spy drone,Someone rides in the Camaro with her.,A spy drone,gold,opens a low back door of a plane despondently.,is knitting as someone snorts dartboard and chips it up with a dumpster.,flies into view behind them.,addresses the group of men and women.\n16973,lsmdc3080_THIS_MEANS_WAR-37262,9985,\"Behind his back, he discreetly draws a gun then makes a show of resting his hand behind someone's seat back. He\",\"Behind his back, he discreetly draws a gun then makes a show of resting his hand behind someone's seat back.\",He,gold,\"shoots the drone, destroying it.\",bends down and sweeps his fingers across his own chest.,\"takes a step back, still wearing headsets.\",\"stares blankly at the house, just staring at the ceiling.\"\n16974,lsmdc3080_THIS_MEANS_WAR-37262,9982,\"Tilting his side mirror, someone spots it. From a surveillance room, someone\",\"Tilting his side mirror, someone spots it.\",\"From a surveillance room, someone\",gold,watches footage from its camera.,unzips the man's mask.,sees the x - rays on the monitor.,\"grins at the camera, and makes her eye point fly with both hands.\"\n16975,lsmdc3080_THIS_MEANS_WAR-37262,9987,\"In an alcove, several paintings by Klimt stand propped against crates. At a remote location, someone\",\"In an alcove, several paintings by Klimt stand propped against crates.\",\"At a remote location, someone\",gold,sits and walks up the steps toward a bar.,watches her with a sober expression.,starts on his jersey.,speaks into a headset.\n16976,anetv_Vi2gzCrS-fE,5732,A person is seen cutting up a tomato and demonstrating how the knife works on a piece of paper. The person then,A person is seen cutting up a tomato and demonstrating how the knife works on a piece of paper.,The person then,gold,begins by cutting a piece of wood into the cloth and cutting the knife.,spreads it along the cream and ends by marking it off a plate.,shows up to present the wrapping wrapping as he twists it all around and starts the object through it.,sharpens the blade on a coffee mug and cuts through the paper.\n16977,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5392,The nose hits the button and it lights up. Someone's pen,The nose hits the button and it lights up.,Someone's pen,gold,is removed as the lighted sun is escorted across the palace.,shows to drop out from the picture's glowing swiffer and dolce pulses with his tattooed drawing.,falls apart as he holds his arms up in the air and moves among the pages.,bumps the paper too hard and spills ink on the deed.\n16978,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5350,\"Glancing at him, someone stomps to the chair. She\",\"Glancing at him, someone stomps to the chair.\",She,gold,looks at the stained lips.,fills it with a cigarette and sets it on the table.,is now falling asleep on the bench at a work moment.,kneels and peeks underneath.\n16979,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5346,\"At the farmhouse, someone clutches a pen in his hands as he hovers over someone, watching her review the contract. As he leans over her shoulder, the fountain pen poised, someone\",\"At the farmhouse, someone clutches a pen in his hands as he hovers over someone, watching her review the contract.\",\"As he leans over her shoulder, the fountain pen poised, someone\",gold,breaks into a run.,\"steps on the mat, his hand resting on the space.\",\"continues on and looks at a newspaper, who is wide - eyed eyes staring at her with smiles.\",gives him a look.\n16980,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5369,\"Someone searches through a drawer, tossing items out, then moves onto the next one. He\",\"Someone searches through a drawer, tossing items out, then moves onto the next one.\",He,gold,looks around at the man.,pulls onto the pillow beside him.,knocks a piece to the floor.,pours out all of the cocaine boxes on the face.\n16981,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5366,\"He frowns as he notices the table and the contracts, but no pen. Lifting the papers, he\",\"He frowns as he notices the table and the contracts, but no pen.\",\"Lifting the papers, he\",gold,\"searches underneath, then pats his pockets.\",walks past the winged librarian.,puts the glasses back on.,runs his hands down from the folded paper to the table.\n16982,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5388,Someone plucks out the pen. Someone,Someone plucks out the pen.,Someone,gold,kidnapper quivers his feet.,holds him in his arms and tries to stop himself.,smiles at someone as he holds up the rear.,sadly eyes her daughter as someone stands and uncaps the pen.\n16983,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5363,\"Lord someone watches the boy shoot him a final glance, then exit the room. Now someone and someone\",\"Lord someone watches the boy shoot him a final glance, then exit the room.\",Now someone and someone,gold,gallop down the avenue of st.,arrive at the bedroom then at the sleeping someone.,turn in chair in the kitchen.,hurry through the war office building.\n16984,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5358,Cyril's lips purse into an uncertain smirk. His father,Cyril's lips purse into an uncertain smirk.,His father,gold,dodges his sobered glare.,sets down the cards and lights his ax.,stands on his knees and licks his fists.,\"flashes a hint of a smile, then nods.\"\n16985,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5341,Someone shifts his gaze from someone to Lord someone. The man,Someone shifts his gaze from someone to Lord someone.,The man,gold,opens a fresh fruit.,falls from the sack of milk.,\"looks into his nephew's unwavering eyes, then opens his mouth to speak.\",\"pauses, his chin pinched warily.\"\n16986,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5393,Someone's pen bumps the paper too hard and spills ink on the deed. She and the kids,Someone's pen bumps the paper too hard and spills ink on the deed.,She and the kids,gold,rush out of the pulpit and up a corner.,\"play briskly, kissing away.\",rush to the window.,make small facade as she turns to someone.\n16987,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5352,Someone gives someone a puzzled look. Someone,Someone gives someone a puzzled look.,Someone,gold,rests his head on someone's hand.,\"come across the street revealing his thick, unshaven brother.\",grabs it and stows it in her tool belt.,look at her eyes and the lights go out.\n16988,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5376,\"Back at the farm, someone sits alone in the barn and watches some chickens. The baby elephant\",\"Back at the farm, someone sits alone in the barn and watches some chickens.\",The baby elephant,gold,lies on his back with its paws on his lap.,appears behind him and taps him with its trunk.,stands in front of him and helps tie them to their feet.,puts his head on the rocks and listens.\n16989,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5362,\"With a nod, someone releases his father's hand and turns away. Lord someone\",\"With a nod, someone releases his father's hand and turns away.\",Lord someone,gold,pulls someone's cheek around his own neck.,sets his flags away.,watches as a tear rolls down her cheek.,\"watches the boy shoot him a final glance, then exit the room.\"\n16990,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5344,\"Lord someone stares downward, picks up his glasses, then lifts his gaze thoughtfully to the boys before him. As he trudges out of the room, someone\",\"Lord someone stares downward, picks up his glasses, then lifts his gaze thoughtfully to the boys before him.\",\"As he trudges out of the room, someone\",gold,wears filthy unshaven pants and a neatly trimmed coveralls.,lowers his eyes as he drinks on his wine.,turns to someone and gives him a hug.,rests a hand on someone's shoulder.\n16991,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5359,\"His father flashes a hint of a smile, then nods. Lord someone\",\"His father flashes a hint of a smile, then nods.\",Lord someone,gold,allows his smile through.,nods to paws at the press.,shuts his eyes as someone shakes his head.,\"kicks at the stern, and brings his eyes to his forehead.\"\n16992,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5371,The girls share a glance as someone tears apart another drawer. He,The girls share a glance as someone tears apart another drawer.,He,gold,\"looks inside a box, then turns to them with three pens.\",\"cuts her tongue, hugs him, and runs off.\",knocks and polishes it with the sword.,goes and then takes a drink.\n16993,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5383,\"With a dry look, he brushes his bangs out of his face. Someone\",\"With a dry look, he brushes his bangs out of his face.\",Someone,gold,\"grins at someone, then leans forward.\",trails his confusion anxiously through his hairline.,chases after him with a hook on his back.,\"stands up in the bathroom, turns to the front.\"\n16994,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5351,She kneels and peeks underneath. Someone,She kneels and peeks underneath.,Someone,gold,gives someone a puzzled look.,spots a marketing pin with a sticky sticker.,lies huddled over the bed.,is painting someone's upper cheek.\n16995,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5380,\"As they search under the table, the elephant steals the other two pens. Someone and someone\",\"As they search under the table, the elephant steals the other two pens.\",Someone and someone,gold,bleed as someone roars to the gryffindor arena.,observe attentively as the movie cuts off.,stifle their grins as someone searches under the table.,\"watch a stubborn, ample smirk and survey the council.\"\n16996,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5357,He faces someone and takes a breath. The boy,He faces someone and takes a breath.,The boy,gold,sits on his bench and nods.,smiles and shakes his head.,shifts his heavy gaze.,holds his father's gaze.\n16997,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5342,\"With an embarrassed look, he turns away. The boys\",\"With an embarrassed look, he turns away.\",The boys,gold,grab several other things.,watch as he walks back behind his desk and straightens his tie.,stare straight ahead in the raft.,run up the stairs as someone passes.\n16998,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5373,The view lifts from someone's face through the roof. Someone,The view lifts from someone's face through the roof.,Someone,gold,\"looks down, sees people with the bloated hindu supervising in his arms.\",stares at the sky as she drives someone and someone.,\"walks toward the edge of someone's bed, concentrating.\",tosses cupcakes to the stove.\n16999,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5360,Lord someone allows his smile through. He,Lord someone allows his smile through.,He,gold,steps out of the ring dancing and looks at the other dancers.,takes the flower off his breast and folds his glass.,nods and views his hair back.,shakes someone's hand.\n17000,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5379,Someone sets two pens beside someone who holds her head as she reads the papers. The elephant's trunk,Someone sets two pens beside someone who holds her head as she reads the papers.,The elephant's trunk,gold,follows a work car.,has n't been pushed to pieces.,\"reveals the caddy, answers it.\",sneaks up from under the table and steals it.\n17001,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5377,The baby elephant appears behind him and taps him with its trunk. The elephant,The baby elephant appears behind him and taps him with its trunk.,The elephant,gold,head was right back.,\"curls its trunk, then extends it.\",comes out and up to him.,kicks its limbs around the house.\n17002,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5384,\"Someone grins at someone, then leans forward. Back at the house, someone and someone\",\"Someone grins at someone, then leans forward.\",\"Back at the house, someone and someone\",gold,walk past the truck which rises aboard.,sit across the room's front abreast.,nervously watch someone as he shuffles over on his knees.,cruise along a hallway towards a solid ceiling wall.\n17003,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5370,He knocks a piece to the floor. The girls,He knocks a piece to the floor.,The girls,gold,are still shot down the wall.,share a glance as someone tears apart another drawer.,burst in house and peeks in through the window.,runs to a window revealing a smaller child following him.\n17004,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5343,The boys watch as he walks back behind his desk and straightens his tie. Lord someone,The boys watch as he walks back behind his desk and straightens his tie.,Lord someone,gold,\"steps closer, locking the door behind him.\",\"stares downward, picks up his glasses, then lifts his gaze thoughtfully to the boys before him.\",\"walks confidently towards the elegant table, holding the feather tangled in his and brings it back up to someone.\",cuffs the teacher's hat.\n17005,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5353,Someone grabs it and stows it in her tool belt. Someone,Someone grabs it and stows it in her tool belt.,Someone,gold,shoots someone the oar as he steps towards a boy.,grabs her dad and brings someone up onto the ground.,leans against a wall.,steps out of the vehicle.\n17006,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5345,\"As he trudges out of the room, someone rests a hand on someone's shoulder. At the farmhouse, someone\",\"As he trudges out of the room, someone rests a hand on someone's shoulder.\",\"At the farmhouse, someone\",gold,\"picks out a box of matches, and swings it open.\",waits outside as someone leads someone over to the diner.,\"clutches a pen in his hands as he hovers over someone, watching her review the contract.\",walks barefoot in a bathroom.\n17007,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5365,Someone climbs off the counter. Someone,Someone climbs off the counter.,Someone,gold,walks up to the stove.,cuts someone who's facing the mutants.,grips a wall and holds it to her trembling hand.,climbs down from the chair.\n17008,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5368,\"He scratches behind his ears, then tilts his head as if shaking out water. Someone\",\"He scratches behind his ears, then tilts his head as if shaking out water.\",Someone,gold,\"searches through a drawer, tossing items out, then moves onto the next one.\",lifts his face by his son.,\"looks across from his bag, then rubs his head against nothing.\",runs to him first.\n17009,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5390,\"Below, in the house, someone starts to sign the deed. As he sneezes, the pilot's head\",\"Below, in the house, someone starts to sign the deed.\",\"As he sneezes, the pilot's head\",gold,falls against the last railcar.,becomes upright and sure to stay gaunt.,\"bobs, dropping dangerously close to a red control button.\",\"explodes, as someone speeds forward and makes his way over to the burning hut.\"\n17010,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5382,\"Someone's head rises from behind the tabletop as he straightens and eyes someone. With a dry look, he\",Someone's head rises from behind the tabletop as he straightens and eyes someone.,\"With a dry look, he\",gold,\"strides down the aisle, one which is chubby and bobs slightly.\",brushes his bangs out of his face.,\"turns to his colleague, smiles faintly, and walks over to a machine.\",unzips a penguin flap in his seat and bends to search the knife.\n17011,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5347,\"As he leans over her shoulder, the fountain pen poised, someone gives him a look. Someone\",\"As he leans over her shoulder, the fountain pen poised, someone gives him a look.\",Someone,gold,flips away from them.,\"yanks the pen from someone, then continues reading.\",takes a silver jacket and allows the man to dance what they kiss.,\"swings up and he lands on top of her and falls, as does the jubilant.\"\n17012,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5372,Someone storms onto the stairs and peers upward. The view,Someone storms onto the stairs and peers upward.,The view,gold,keeps to someone's cottage.,soars from another window.,pulls up under the school.,lifts from someone's face through the roof.\n17013,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5356,\"With a tender look, Lord someone strides down the narrow red carpet, his eyes on his son. He\",\"With a tender look, Lord someone strides down the narrow red carpet, his eyes on his son.\",He,gold,\"lies at his knees, his head bowed.\",faces someone and takes a breath.,waits as the film cuts to someone.,steps from the doorway.\n17014,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5391,\"As he sneezes, the pilot's head bobs, dropping dangerously close to a red control button. Someone\",\"As he sneezes, the pilot's head bobs, dropping dangerously close to a red control button.\",Someone,gold,\", run or tap her ankle, shows the floor to the lower level before holding the air and others.\",finishes writing her first name.,\"walks onstage, listening to the music.\",rush out of the room.\n17015,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5375,Someone lifts the walking stick from the sidecar. Someone,Someone lifts the walking stick from the sidecar.,Someone,gold,pan back to the car and continues to watch the tree on the other side of the road.,tosses at the boat with board and falls across the water.,is spun in front of the house from a building.,looks nervously at someone.\n17016,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5349,\"Someone steps up onto a chair. Glancing at him, someone\",Someone steps up onto a chair.,\"Glancing at him, someone\",gold,leaves the driveway with someone.,\"shakes her head, nods, then hurries away.\",snatches it to the room.,stomps to the chair.\n17017,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5355,\"The boys stop by the door. With a tender look, Lord someone\",The boys stop by the door.,\"With a tender look, Lord someone\",gold,strides over to the boy who noses open an envelope.,\"strides down the narrow red carpet, his eyes on his son.\",lights someone's long black glasses.,pinches the dog's teeth.\n17018,lsmdc3051_NANNY_MCPHEE_RETURNS-24945,5385,\"Back at the house, someone and someone nervously watch someone as he shuffles over on his knees. He\",\"Back at the house, someone and someone nervously watch someone as he shuffles over on his knees.\",He,gold,\"stares eye level to someone, gawking first at her, then at her tool belt.\",puts his wand in a bin.,brushes the long hair and watches with his eyes open.,rolls over and picks up a chicken leg.\n17019,lsmdc0027_The_Big_Lebowski-63008,19138,The driver's side exterior has been scraped raw. The policeman,The driver's side exterior has been scraped raw.,The policeman,gold,pushes someone of the car and discreetly pushes him up with his stick.,is heaving the unconscious man.,\"pats her face, then turns on her heel.\",hands someone a door handle and an exterior rear - view mirror.\n17020,lsmdc0027_The_Big_Lebowski-63008,19137,They have reached someone's car. The driver's side exterior,They have reached someone's car.,The driver's side exterior,gold,\"is seen close: once again except the young man, the light continuing on the station and the siren from below.\",\"is on the same street as someone bobs up, smiling, now in the morose pout.\",are rolled across a top half.,has been scraped raw.\n17021,lsmdc0027_The_Big_Lebowski-63008,19136,The three men turn to leave. They,The three men turn to leave.,They,gold,see punches and the woman serving cars.,have reached someone's car.,shoot an arrow in the sky.,leave in the distance and pass by a car's windows.\n17022,anetv_MBouLt-hXDU,17807,The start to give step by step instructions on how to mix the ingredients together. They,The start to give step by step instructions on how to mix the ingredients together.,They,gold,put a sandwich on top of the baking baking on a chopping block.,kneel up and take a bacon for ketchup.,are shown at a new bowl as a woman is explaining how another bowl is properly being used.,give very detailed information about what to do before putting them in the oven.\n17023,anetv_GEhtyurCwDQ,18807,The man shaves his hand then adds a guard and shaves his beard and the hairline in back. The man,The man shaves his hand then adds a guard and shaves his beard and the hairline in back.,The man,gold,removes the pliers from shaving this man's scalp.,goes to shave on to his face.,rinses the shaver and works on his neck.,sits and spread very evenly on his face and face.\n17024,anetv_GEhtyurCwDQ,18806,The product is being taken out of it's packaging. The man,The product is being taken out of it's packaging.,The man,gold,uses a new axe to pull it back.,sets the ski and starts combing his hair out to blow dry his eye dry.,shaves his hand then adds a guard and shaves his beard and the hairline in back.,uses the tool to keep the cards from the orangutan floating on the tree.\n17025,anetv_GEhtyurCwDQ,18805,The man unwraps the product and takes it out of the bag. The product,The man unwraps the product and takes it out of the bag.,The product,gold,is being taken out of it's packaging.,grabs the tape and picks up another person.,grows in the easel and cuts out to show the art.,begins to brush the pair of shoes.\n17026,anetv_GEhtyurCwDQ,18808,The man rinses the shaver and works on his neck. We then,The man rinses the shaver and works on his neck.,We then,gold,see the man putting the tattoo on it.,see the shave eventually.,see the ending screen.,see a brown brush and brush it.\n17027,anetv_GEhtyurCwDQ,18803,We see an opening title screen. We,We see an opening title screen.,We,gold,see an electric shaver from various angles.,see a gong with a light switch.,see a man walking in the ocean.,see a white sink in green.\n17028,anetv_FLZPaPf027E,15228,The man demonstrates playing the harmonica. The man,The man demonstrates playing the harmonica.,The man,gold,stops playing band and plays a song on the song.,stops playing the harmonica and talks to the camera again.,stops playing guitar and returns talking.,spins on the chair and plays with somebody.\n17029,anetv_FLZPaPf027E,15227,A man wearing a hat and holding a harmonica talks to the camera. The man,A man wearing a hat and holding a harmonica talks to the camera.,The man,gold,stops playing the drums using his hands.,uses a saxophone to spin the saxophone up.,demonstrates playing the harmonica.,swings and lifts his hands to see how to play in replaces.\n17030,anetv_FLZPaPf027E,16427,He begins playing a harmonica he is holding in his hand. He,He begins playing a harmonica he is holding in his hand.,He,gold,begins to play a song on the keyboard.,\"gives a shudder down the chords, and then goes back to the piano.\",claps his hands on his hips and snapping his fingers from the above.,sets the harmonica down and continues talking.\n17031,anetv_FLZPaPf027E,15229,The man stops playing the harmonica and talks to the camera again. The man,The man stops playing the harmonica and talks to the camera again.,The man,gold,stops and takes a break.,starts hitting drums with one hand.,stops playing the saxophone and takes again.,resumes playing the harmonica.\n17032,anetv_FLZPaPf027E,16426,A man in a black hat is talking to the camera. He,A man in a black hat is talking to the camera.,He,gold,leaves talking to the camera.,begins playing a harmonica he is holding in his hand.,begins shaving his hands.,picks it up out and begins to mow the grass.\n17033,lsmdc1042_Up_In_The_Air-88368,4669,He drags his case into a lounge and sits in a leather armchair. He,He drags his case into a lounge and sits in a leather armchair.,He,gold,\"has a bottle of milk under his arm, then points at it.\",\"comes across from his box, leaving the plate of handwritten notes on his laptop.\",\"sits at a dark table by a desk, a restraining sign on his hand.\",looks at a piece of paper and makes a phone call.\n17034,anetv_PRT0Z9HPF4U,15408,\"A man leans over a pool table, cue in hand. He\",\"A man leans over a pool table, cue in hand.\",He,gold,\"mounts, then backflip into a deep pit.\",\"hits the white ball, knocking the other balls toward the pockets.\",brings it back 20 feet!,leans in and puts his toothbrush on his lips.\n17035,anetv_PRT0Z9HPF4U,2787,Boy shakes his wooden pool cue. Boy,Boy shakes his wooden pool cue.,Boy,gold,tries to pick the microphones up into his nose on the room.,shoots a pool ball into the hole.,pulls the bucket off of the ball.,is in a bowling alley lane with a ball.\n17036,anetv_PRT0Z9HPF4U,2786,Man hits the white billiard ball. Boy,Man hits the white billiard ball.,Boy,gold,dances in a circle and takes the ground on its big turn.,is in sporting field showing how to hit the ball.,\"see a black ball through the crowd, lingering menacingly and pass it to someone.\",shakes his wooden pool cue.\n17037,anetv_PRT0Z9HPF4U,15409,\"He hits the white ball, knocking the other balls toward the pockets. A young boy\",\"He hits the white ball, knocking the other balls toward the pockets.\",A young boy,gold,watches and waits his turn.,comes behind the desk and holds a bottle out to someone.,is standing behind the wheel holding a phone.,stands at a ping pong table by the goal.\n17038,anetv_LYqq0dPB-U8,9261,People are helping her decorate the Christmas tree. A man,People are helping her decorate the Christmas tree.,A man,gold,stands on the ladder and puts a star on top of the tree.,begins to bend over a tree aluminum while sitting on a porch.,is cutting a tree with ornaments.,slows and touches his smooth wings.\n17039,anetv_LYqq0dPB-U8,9260,A woman is standing on a ladder putting decorations on a Christmas tree. People,A woman is standing on a ladder putting decorations on a Christmas tree.,People,gold,continue to drag the baking sheet over the christmas tree.,are blowing leaves behind a tree.,are helping her decorate the christmas tree.,are taking ornaments out of the border of a tree.\n17040,anetv_LYqq0dPB-U8,3984,\"A couple begins decorating a Christmas tree with garland as a boy sits on the couch. After, the whole family\",A couple begins decorating a Christmas tree with garland as a boy sits on the couch.,\"After, the whole family\",gold,joins in and adds the lights to the tree.,lets down amidst the events on the tree behind them.,goes into the house and shoot in flames.,start painting their legs in the grass.\n17041,anetv_TF591ByrGYk,16601,A young male gymnast is is an arena standing on a mat preparing to do his routine. The boy then,A young male gymnast is is an arena standing on a mat preparing to do his routine.,The boy then,gold,begins performing a gymnastics routine on the wall and ends with the baton jumping the end.,comes running and instructing him several times to do it again in slow motion.,approached the bars and does a series of swings and hand stand in the air.,runs his legs as he continues to perform a gymnastics routine and then does several flips and tricks.\n17042,anetv_TF591ByrGYk,16602,\"The boy then approached the bars and does a series of swings and hand stand in the air. While he's performing, he\",The boy then approached the bars and does a series of swings and hand stand in the air.,\"While he's performing, he\",gold,flips his punches while slamming him down.,adds several flips and rolls into his performance before finally jumping off of the bars.,does a flip and swings in the air.,does a hand stand on the bars of the parallel bars while the man blocks the bars.\n17043,anetv_ysbUc6WS12k,8187,There's a bon fire lit in an open ground next to some tents and bikes. There,There's a bon fire lit in an open ground next to some tents and bikes.,There,gold,'s a person dressed in a biker's suit who comes up and sets fire to a pile of wood sticks.,play the piano on military motion men's bikes.,\"there's a budge interspersed with pictures of skiers are groomed, wearing winter clothes.\",is a hose and car tools in is standing with a hose and a guy walks in door for the press.\n17044,anetv_ysbUc6WS12k,8188,There's a person dressed in a biker's suit who comes up and sets fire to a pile of wood sticks. The fire,There's a person dressed in a biker's suit who comes up and sets fire to a pile of wood sticks.,The fire,gold,splits up back at someone 'chest and the flames burst across the ceiling.,goes smoothly behind a set of metal doors kneeling around the living room.,begins to spread through the twigs and wood sticks and bursts into large flames.,starts to burn up the men then end and jump over the tree trying to fend off ornaments.\n17045,lsmdc1012_Unbreakable-7317,2232,\"People are at the table, leaning towards each other, holding hands. They\",\"People are at the table, leaning towards each other, holding hands.\",They,gold,punch each other in the stomach.,swarm into each other's eyes.,\"look around at him, smiling.\",turn toward the street and into the sound kitchen.\n17046,lsmdc1012_Unbreakable-7317,2250,\"At the Limited Edition Gallery, a bored security man looks at a picture, and a waitress carries a tray of food amongst the smartly dressed guests. Someone\",\"At the Limited Edition Gallery, a bored security man looks at a picture, and a waitress carries a tray of food amongst the smartly dressed guests.\",Someone,gold,hands out a wound feeling in the table's passenger side.,is talking to a couple from his wheelchair.,fall back as the seats come up.,jumps off the sofa.\n17047,lsmdc1012_Unbreakable-7317,2230,\"Someone opens her eyes again as someone closes his, and his face relaxes. Someone, in a green T - shirt with white and gold bands around the middle,\",\"Someone opens her eyes again as someone closes his, and his face relaxes.\",\"Someone, in a green T - shirt with white and gold bands around the middle,\",gold,walks downstairs and into the kitchen.,comes out of the harbor and walks up to meet it.,\"wears a gray - coat, white - shirt.\",gets pushed up the chair.\n17048,lsmdc1012_Unbreakable-7317,2236,\"Someone sits at the table, looking up at her cautiously. Someone\",\"Someone sits at the table, looking up at her cautiously.\",Someone,gold,opens the glass door to her.,runs up the stairs and into a vacant liquor store.,\"opens the door, peeks inside, walks out of the darkness.\",continues to read the paper.\n17049,lsmdc1012_Unbreakable-7317,2247,\"Someone closes his mouth, swallows, and blinks hard. Someone puts a finger to his lips, and someone\",\"Someone closes his mouth, swallows, and blinks hard.\",\"Someone puts a finger to his lips, and someone\",gold,\"cocks his head, his lips trembling.\",nods and wipes away a tear.,gazes around him all's eyes go pointed to rise.,\"takes a few steps toward his glasses, which falls on her shoulders.\"\n17050,lsmdc1012_Unbreakable-7317,2239,\"Someone continues to read, at last looking up and nodding. Someone\",\"Someone continues to read, at last looking up and nodding.\",Someone,gold,walks in and sees someone cutting someone's paper gently.,stares extensively about it as who leaves.,unscrews the cap of a big carton of orange juice and carefully pours himself half a glass full.,is asleep above the edge.\n17051,lsmdc1012_Unbreakable-7317,2243,\"Someone looks up at his father, who almost imperceptibly nods down at the story. Someone\",\"Someone looks up at his father, who almost imperceptibly nods down at the story.\",Someone,gold,pulls the paper to him and reads.,waits anxiously for the second time.,hurries forward to address someone on the radio at the wrecked bar.,\"comes over, wrapping his arm around someone.\"\n17052,lsmdc1012_Unbreakable-7317,2235,She is wearing a white T - shirt and green and white striped pajama bottoms. Someone,She is wearing a white T - shirt and green and white striped pajama bottoms.,Someone,gold,\"sits at the table, looking up at her cautiously.\",is wearing red gloves and headphones while his headphones plays and keyboard on off her.,is very slowly in the bonnet of bath tub.,releases a punching bag.\n17053,lsmdc1012_Unbreakable-7317,2251,Someone is talking to a couple from his wheelchair. Someone,Someone is talking to a couple from his wheelchair.,Someone,gold,\"is walking with someone, getting out of a pool.\",\"wanders in wearing a casual brown jacket and open - neck shirt, glances around him, and stops in front of a picture.\",loads the tattoo gun onto the back.,signals to someone: to climb onto the skis.\n17054,lsmdc1012_Unbreakable-7317,2240,Someone unscrews the cap of a big carton of orange juice and carefully pours himself half a glass full. He,Someone unscrews the cap of a big carton of orange juice and carefully pours himself half a glass full.,He,gold,brings a glass in the juicer as he wanders down to the deck.,replaces the cap and stands to remove the carton from the table.,\"drops down on the table, unfastens his jacket and pulls out his earpiece.\",pretends underneath the drink.\n17055,lsmdc1012_Unbreakable-7317,2245,\"Beside the headline is a black and white drawing of the heroic figure in a cape, with a particularly prominent square jaw. Someone\",\"Beside the headline is a black and white drawing of the heroic figure in a cape, with a particularly prominent square jaw.\",Someone,gold,\"stands up, holding his son.\",\"gazes down at the paper, his lips moving slightly.\",takes the bolt from him and catches it quickly.,\"turns his back for the chamber, moaning angrily, then kneels down beside someone.\"\n17056,lsmdc1012_Unbreakable-7317,2252,\"Someone wanders in wearing a casual brown jacket and open - neck shirt, glances around him, and stops in front of a picture. A black woman with gray hair\",\"Someone wanders in wearing a casual brown jacket and open - neck shirt, glances around him, and stops in front of a picture.\",A black woman with gray hair,gold,kisses a neon photograph by a clipboard.,lifts her onto her shoulders and move her leg over it.,\"approaches him, looks across the busy gallery.\",is hanging from a hat on a sofa next to the camp.\n17057,lsmdc1012_Unbreakable-7317,2241,He replaces the cap and stands to remove the carton from the table. He,He replaces the cap and stands to remove the carton from the table.,He,gold,\"moves to one side, tosses them against the wall.\",pour two bottles into the glass.,\"sits again, staring at the glass.\",opens the back door.\n17058,lsmdc1012_Unbreakable-7317,2249,\"Someone glances down, then looks up and gives someone a smile. At the Limited Edition Gallery, a bored security man looks at a picture, and a waitress\",\"Someone glances down, then looks up and gives someone a smile.\",\"At the Limited Edition Gallery, a bored security man looks at a picture, and a waitress\",gold,gives someone a point.,carries a tray of food amongst the smartly dressed guests.,approaches to looks at him.,is taking a sip.\n17059,lsmdc1012_Unbreakable-7317,2244,Someone pulls the paper to him and reads. Beside the headline,Someone pulls the paper to him and reads.,Beside the headline,gold,reveals the headline suddenly racing again.,is a label advertising the photos.,\"is a black and white drawing of the heroic figure in a cape, with a particularly prominent square jaw.\",is a little planet.\n17060,lsmdc1012_Unbreakable-7317,2234,Someone picks up the paper and someone goes to the cooker. She,Someone picks up the paper and someone goes to the cooker.,She,gold,strokes marley's arm.,wipes down the mess of pipes and steps in place.,sprinkles seasonings on the tiled calendar.,is wearing a white t - shirt and green and white striped pajama bottoms.\n17061,lsmdc1012_Unbreakable-7317,2231,\"Someone, in a green T - shirt with white and gold bands around the middle, walks downstairs and into the kitchen. People\",\"Someone, in a green T - shirt with white and gold bands around the middle, walks downstairs and into the kitchen.\",People,gold,\"chuckles softly toward herself and points her upper hand, looking down, then considers for a moment.\",\"are at the table, leaning towards each other, holding hands.\",are perched on chairs in the lobby with their hands clasped behind their heads.,\"sit on the other side, watching tv.\"\n17062,lsmdc1012_Unbreakable-7317,2233,\"They look around at him, smiling. Someone picks up the paper and someone\",\"They look around at him, smiling.\",Someone picks up the paper and someone,gold,rushes to pick up a bottle.,goes to get ice fishing.,goes to the cooker.,quickly shakes it out.\n17063,lsmdc1012_Unbreakable-7317,2246,\"Someone gazes down at the paper, his lips moving slightly. He\",\"Someone gazes down at the paper, his lips moving slightly.\",He,gold,\"looks up at someone, mouth open.\",\"raises his hand, a moment, then we hear a door open.\",\"shifts slowly to the gravestone, as someone watches.\",\"stops walking, looking across the counter.\"\n17064,lsmdc1043_Vantage_Point-89432,2530,People look behind them as they join a busy road. The chase,People look behind them as they join a busy road.,The chase,gold,weaves through a slow traffic.,people runs forward and speeds off the road.,starts clearing off the ranks off the track through the streets towards the jungle.,looks over a fresh wire shelter.\n17065,lsmdc1043_Vantage_Point-89432,2526,They accelerate along parallel lines. Someone,They accelerate along parallel lines.,Someone,gold,holds a script up to her forehead.,continues scanning their surroundings.,spits onto the mat and punches and morphs posture.,drives through a pedestrian colonnade.\n17066,lsmdc1043_Vantage_Point-89432,2532,\"Two bullet holes appear in someone 'windscreen, and someone sits back into the police car. Someone\",\"Two bullet holes appear in someone 'windscreen, and someone sits back into the police car.\",Someone,gold,\"looks to his friend with someone, staring at him.\",looks in his rear view mirror and steers.,burst from the riverbank.,\", someone, the mechanic, stare up in front of someone.\"\n17067,lsmdc1043_Vantage_Point-89432,2558,Someone stands frozen as the ambulance crashes and careens towards her on its side. Someone,Someone stands frozen as the ambulance crashes and careens towards her on its side.,Someone,gold,surfaces to a road where a single antenna lies on its roof.,\"slides down someone's ramp, high above the back.\",eyes a equally old - haired man in a green leather pants.,\"dives in and grabs someone, then hits the deck as vehicles pile up behind them.\"\n17068,lsmdc1043_Vantage_Point-89432,2542,Someone spins and opens fire. Someone,Someone spins and opens fire.,Someone,gold,fires back as someone starts the police car.,hands someone his cell.,falls across the ring rooftop.,\"glowers at the batsman, and returns his eyes to his boyish marine.\"\n17069,lsmdc1043_Vantage_Point-89432,2537,Someone pushes the windscreen out of the wrecked hatchback and climbs out onto the road. The truck driver,Someone pushes the windscreen out of the wrecked hatchback and climbs out onto the road.,The truck driver,gold,backs up and follows him.,holds his arms out.,lands in the dusty driveway.,helps stay with her.\n17070,lsmdc1043_Vantage_Point-89432,2520,Someone gets on the radio. Someone,Someone gets on the radio.,Someone,gold,grins as he lights an egg.,raps them on the back car.,sees herself and walks away from her open door.,dodges traffic as he races past pavements full of panicking pedestrians.\n17071,lsmdc1043_Vantage_Point-89432,2555,Someone strikes the back of someone's head. Someone,Someone strikes the back of someone's head.,Someone,gold,frowns wildly then hits someone on the cheek.,pulls him from the cargo hold and puts money on the table.,wanders into the road as the ambulance approaches.,pulls a ring out of someone's wrist.\n17072,lsmdc1043_Vantage_Point-89432,2568,A badly injured someone pulls his gun and aims. Someone,A badly injured someone pulls his gun and aims.,Someone,gold,shoots someone in the stomach.,\"tries the handle then slides down the lane, curling around his trunk one at a time.\",scrambles to the vehicle and dives under the canvas.,tucks it into an slashed with his shirt sheath.\n17073,lsmdc1043_Vantage_Point-89432,2528,Someone spots two cars in the way and brakes. Someone,Someone spots two cars in the way and brakes.,Someone,gold,rolls off a porch.,is thrown around as the hatchback breaks through the gap.,gets out of their wheels and walks to the front seat of the car.,gets out and gets in the car.\n17074,lsmdc1043_Vantage_Point-89432,2549,Someone approaches the police car with his handgun held out in front of him. He,Someone approaches the police car with his handgun held out in front of him.,He,gold,\"the blood from his wrists, someone lies back on the center of the bed, breathing heavily.\",\"someone is on the driver's side, and pulls on a lever.\",breathes heavily as he opens the driver's door.,slips the key into a piece of tunnel inside the circular box.\n17075,lsmdc1043_Vantage_Point-89432,2539,Someone pulls his gun and heads for the underpass. Veins,Someone pulls his gun and heads for the underpass.,Veins,gold,look on someone's face.,stand out on someone's forehead as he presses the gun up to someone forehead.,accost an injured car with a white cloth through it.,someone races through the lives course!\n17076,lsmdc1043_Vantage_Point-89432,2522,Someone fidgets anxiously in the police car's passenger seat. The chase,Someone fidgets anxiously in the police car's passenger seat.,The chase,gold,\"runs to someone, glaring.\",\"mounts a pedestrian area and crashes down a wide stone staircase, then rejoins the main road.\",takes off towards someone.,catches them as the cop fires her gun.\n17077,lsmdc1043_Vantage_Point-89432,2574,\"Someone puts his cell phone to his ear and touches his forehead anxiously, then looks at his hand which appears steady. Outside, someone\",\"Someone puts his cell phone to his ear and touches his forehead anxiously, then looks at his hand which appears steady.\",\"Outside, someone\",gold,barges out his weathered colleague.,holds someone and touches someone.,gets on a radio radio.,reaches the front door end in her purse and takes out its tray.\n17078,lsmdc1043_Vantage_Point-89432,2565,He opens the door slightly and points his gun through the narrow gap. He,He opens the door slightly and points his gun through the narrow gap.,He,gold,steps to the window and glances down at the industrial complex inside.,spots someone lying face down.,pushes a cubicle door and a couple of people approach.,passes across the windshield to the pursuit.\n17079,lsmdc1043_Vantage_Point-89432,2524,Other cars desperately veer to the side as someone powers onward. Someone,Other cars desperately veer to the side as someone powers onward.,Someone,gold,\"looks around at someone, who is alone in a swinging seat.\",swerves to avoid a collision and mounts the pavement.,peers out the side of the cargo ship.,flings the brakes in front.\n17080,lsmdc1043_Vantage_Point-89432,2525,Someone swerves to avoid a collision and mounts the pavement. He,Someone swerves to avoid a collision and mounts the pavement.,He,gold,wrestles with his steering wheel as someone looks back and sees someone lose a little bit of ground.,walks in the diner and throws his red - haired dad over the side.,runs to a pier area where he is holding a huge cannon.,straddles him and rubs his head against it.\n17081,lsmdc1043_Vantage_Point-89432,2562,He spots a handgun by someone's bloodied corpse. Someone,He spots a handgun by someone's bloodied corpse.,Someone,gold,glares proudly at someone.,\"shrugs his finger against gauze, then looks at him.\",kicks a remote and explodes in a fireball.,reloads his own weapon with a fresh clip.\n17082,lsmdc1043_Vantage_Point-89432,2519,\"Someone throws his car into gear and accelerates after someone, who power - slides around a corner, someone in hot pursuit. Someone\",\"Someone throws his car into gear and accelerates after someone, who power - slides around a corner, someone in hot pursuit.\",Someone,gold,goes along in the end.,reaches out to the door to make the fire escape.,gets on the radio.,drags someone towards the car.\n17083,lsmdc1043_Vantage_Point-89432,2564,Smoke rises into the air around the wrecked vehicle as someone makes his way to the back doors. He,Smoke rises into the air around the wrecked vehicle as someone makes his way to the back doors.,He,gold,opens the door slightly and points his gun through the narrow gap.,\"in a huge jam and with someone still going through some chest, he knocks through the front gate for the other nerds.\",slips off his broomstick.,storms out of view.\n17084,lsmdc1043_Vantage_Point-89432,2553,\"Someone falls to the ground. In the speeding ambulance, someone\",Someone falls to the ground.,\"In the speeding ambulance, someone\",gold,hauls himself up with a firm grip on the metal bar he took off the gurney.,clutches a dozen empty.,\"gets out of the plane, slides out and bungee rope harness, swinging the metal plane back and executes his tumbling back.\",takes cover behind a gun on the floor outside a balcony.\n17085,lsmdc1043_Vantage_Point-89432,2544,\"They both land shoulder hits, and someone grabs the door of someone's car. Someone\",\"They both land shoulder hits, and someone grabs the door of someone's car.\",Someone,gold,pulls a gun and shoots someone point blank as he accelerates.,rushes to the front door where the van races up.,push - ups on a stretcher.,\"is at someone, watching her from the window.\"\n17086,lsmdc1043_Vantage_Point-89432,2533,\"Then handbrake turns the police car round a corner and into the path of a truck which loses control. As someone rounds the corner, the truck\",Then handbrake turns the police car round a corner and into the path of a truck which loses control.,\"As someone rounds the corner, the truck\",gold,\"is on the road, which pulls over the together and rumbles the vehicle.\",smashes into the hatchback.,pulls away from the guardrail.,accelerates forward as the ghost walks up.\n17087,lsmdc1043_Vantage_Point-89432,2556,Someone wanders into the road as the ambulance approaches. Someone,Someone wanders into the road as the ambulance approaches.,Someone,gold,spots someone right in the ambulance's path.,'s with the michelle youth.,turns to a laptop.,unloads handfuls of food from a refrigerator.\n17088,lsmdc1043_Vantage_Point-89432,2573,Someone looks over at someone's dead body. Someone,Someone looks over at someone's dead body.,Someone,gold,\"lifts a wooden finger above her head, hitting it.\",\"says nothing, not nothing.\",\"puts his cell phone to his ear and touches his forehead anxiously, then looks at his hand which appears steady.\",climbs down next to the fire.\n17089,lsmdc1043_Vantage_Point-89432,2575,\"Outside, someone holds someone and touches someone. Someone\",\"Outside, someone holds someone and touches someone.\",Someone,gold,\"reaches out and waves as someone heads off holding someone, who waves back.\",pulls him off of someone's army costume.,snatches the evening headphone off of someone and his daughters.,climbs frame of a car.\n17090,lsmdc1043_Vantage_Point-89432,2554,\"In the speeding ambulance, someone hauls himself up with a firm grip on the metal bar he took off the gurney. Someone\",\"In the speeding ambulance, someone hauls himself up with a firm grip on the metal bar he took off the gurney.\",Someone,gold,strikes the back of someone's head.,thrusts his arm skyward.,bursts swiftly his back.,\"sits on the ledge, backing up with towels.\"\n17091,lsmdc1043_Vantage_Point-89432,2541,Someone takes aim some way back. Someone,Someone takes aim some way back.,Someone,gold,spins and opens fire.,fires at his target and fires.,wakes and punches combat with his cape.,glances behind the eldest old man.\n17092,lsmdc1043_Vantage_Point-89432,2557,Time seems to slow down as someone spots the tragedy about to happen. Someone,Time seems to slow down as someone spots the tragedy about to happen.,Someone,gold,stands frozen as the ambulance crashes and careens towards her on its side.,\"picks up a cup, grinds something, and yanks it out.\",\"crossing a group at a mid - lake, they brush the tomb across an old paper.\",stands for a moment.\n17093,lsmdc1043_Vantage_Point-89432,2559,\"Someone dives in and grabs someone, then hits the deck as vehicles pile up behind them. Someone\",\"Someone dives in and grabs someone, then hits the deck as vehicles pile up behind them.\",Someone,gold,\"enters his trembling seat, grabs his brace, rips off his coat, and spills someone into the car.\",\"leads someone out of the main gate and down the long, broken bridge.\",climbs the other side of the bank and crouches on a bench.,rushes over as cars continue to crash.\n17094,lsmdc1043_Vantage_Point-89432,2527,Someone drives through a pedestrian colonnade. Someone,Someone drives through a pedestrian colonnade.,Someone,gold,cares someone's death.,spots two cars in the way and brakes.,guides the band into a solemn spot.,alleyway reflects their view of an approaching armored truck.\n17095,lsmdc1043_Vantage_Point-89432,2521,Someone dodges traffic as he races past pavements full of panicking pedestrians. Someone,Someone dodges traffic as he races past pavements full of panicking pedestrians.,Someone,gold,fidgets anxiously in the police car's passenger seat.,is alone in a kitchen.,cycles on beneath the blondes and dusty towering city streets.,\"carries the handlebars back to the chevy fully filled with two people, who are lined up for the concert.\"\n17096,lsmdc1043_Vantage_Point-89432,2548,Someone lies dead on the road with his face resting against his right arm. Someone,Someone lies dead on the road with his face resting against his right arm.,Someone,gold,\"eyes him, panting and tries to close his teeth.\",approaches the police car with his handgun held out in front of him.,looks up at the crystal.,walks towards the old man who sits next to him.\n17097,lsmdc1043_Vantage_Point-89432,2563,Someone reloads his own weapon with a fresh clip. Smoke,Someone reloads his own weapon with a fresh clip.,Smoke,gold,shakes his head and gives a big sigh.,takes someone over the cable truck.,rises as someone struggles to trigger the fire.,rises into the air around the wrecked vehicle as someone makes his way to the back doors.\n17098,lsmdc1043_Vantage_Point-89432,2517,Taxi plows into the side of someone's hatchback. His small blue car,Taxi plows into the side of someone's hatchback.,His small blue car,gold,slides off the road as someone watches the jet scooter.,pulls up in a parking lot.,is parked to a curb.,is sent into a spin along the road behind someone.\n17099,lsmdc1043_Vantage_Point-89432,2529,Someone is thrown around as the hatchback breaks through the gap. People,Someone is thrown around as the hatchback breaks through the gap.,People,gold,\"fly upside down, landing in an ring.\",look behind them as they join a busy road.,wanders away from the hammer.,get out as the car roars.\n17100,lsmdc1043_Vantage_Point-89432,2523,\"The chase mounts a pedestrian area and crashes down a wide stone staircase, then rejoins the main road. Other cars desperately\",\"The chase mounts a pedestrian area and crashes down a wide stone staircase, then rejoins the main road.\",Other cars desperately,gold,focused on the mountainside and stop by him.,veer to the side as someone powers onward.,pick up their daughter.,\"wait zombie someone, who holds the man's gun out nervously.\"\n17101,lsmdc1043_Vantage_Point-89432,2569,Someone shoots someone in the stomach. Someone,Someone shoots someone in the stomach.,Someone,gold,tries to grab it.,stares at someone's corpse with wide eyes as someone grips someone's arm.,appears and knocks it away from the diver.,bends down; he snaps it shut.\n17102,lsmdc1043_Vantage_Point-89432,2518,His small blue car is sent into a spin along the road behind someone. Someone,His small blue car is sent into a spin along the road behind someone.,Someone,gold,seems like a passers - of - a - outdoor.,are parked near and some guys has tipped out.,rights the vehicle with a determined frown.,\"holds his hand out to someone, who faces someone.\"\n17103,lsmdc1043_Vantage_Point-89432,2545,Someone pulls a gun and shoots someone point blank as he accelerates. Someone,Someone pulls a gun and shoots someone point blank as he accelerates.,Someone,gold,gives chase on foot as someone dies by the roadside.,gets his head close.,\"grabs the pump and swims to the boat, dock as for the boat's target.\",stomps the food's table.\n17104,lsmdc1043_Vantage_Point-89432,2550,He breathes heavily as he opens the driver's door. He,He breathes heavily as he opens the driver's door.,He,gold,are standing inside.,drags the wounded someone.,blanches grimly.,arrives on the living room floor.\n17105,lsmdc1043_Vantage_Point-89432,2547,Someone looks dazed and loses control of the car. Someone,Someone looks dazed and loses control of the car.,Someone,gold,\"approaches someone, wheeling in the passenger seat as someone gets out of the truck.\",gets on its wheels and jumps onto the balcony.,\"stands at the edge, taking two glances at others as they still speak.\",lies dead on the road with his face resting against his right arm.\n17106,lsmdc1043_Vantage_Point-89432,2540,Veins stand out on someone's forehead as he presses the gun up to someone forehead. Someone,Veins stand out on someone's forehead as he presses the gun up to someone forehead.,Someone,gold,blasts himself through the holes.,lowers his head and slumps past.,leans him in the eye then kisses him passionately.,takes aim some way back.\n17107,lsmdc1043_Vantage_Point-89432,2552,Someone slips down the car. Someone,Someone slips down the car.,Someone,gold,enters the elevator with someone.,looks up the staircase.,falls to the ground.,slides on a foggy sidewalk.\n17108,lsmdc1043_Vantage_Point-89432,2543,\"Someone fires back as someone starts the police car. They both land shoulder hits, and someone\",Someone fires back as someone starts the police car.,\"They both land shoulder hits, and someone\",gold,grabs the door of someone's car.,throws on the bed in the living room.,\"squeezes the two boys along, sending her to the left.\",moves along the sharp street towards someone.\n17109,lsmdc1043_Vantage_Point-89432,2576,\"Someone reaches out and waves as someone heads off holding someone, who waves back. Someone\",\"Someone reaches out and waves as someone heads off holding someone, who waves back.\",Someone,gold,speeds across the highway.,lifts his hat and shoots someone a glance.,and someone gaze out her window before an appointment road between each other on a soccer area.,wears a dazed expression as he answers his ringing cell phone.\n17110,lsmdc1043_Vantage_Point-89432,2536,\"Someone films nearby, then spots someone crossing the road. Someone\",\"Someone films nearby, then spots someone crossing the road.\",Someone,gold,\"lifts her date to the ground, draws up one of the flowers and rubs to the painting.\",\"gives him a sultry professional smile, then makes him forward.\",covers a shopping cart.,pushes the windscreen out of the wrecked hatchback and climbs out onto the road.\n17111,lsmdc1043_Vantage_Point-89432,2572,\"Someone nods, and someone helps to drag him into a sitting position. Someone\",\"Someone nods, and someone helps to drag him into a sitting position.\",Someone,gold,struggles to hold someone's fist onto her chest.,looks over at someone's dead body.,comes across the court and whispers to the barmaid.,hangs her head as she glances at someone.\n17112,lsmdc1043_Vantage_Point-89432,2535,\"Someone shoots the armed someone, then points his gun at someone's face. Someone films nearby, then\",\"Someone shoots the armed someone, then points his gun at someone's face.\",\"Someone films nearby, then\",gold,breaks from a fishing hook.,sneaks up behind a high beam.,spots someone crossing the road.,returns to the radio.\n17113,lsmdc1043_Vantage_Point-89432,2531,\"He leans out of the window and fires. Two bullet holes appear in someone 'windscreen, and someone\",He leans out of the window and fires.,\"Two bullet holes appear in someone 'windscreen, and someone\",gold,lies silently on top of him.,snags someone on it.,sits back into the police car.,leaps onto a burning orange light.\n17114,lsmdc1043_Vantage_Point-89432,2570,Someone stares at someone's corpse with wide eyes as someone grips someone's arm. Someone,Someone stares at someone's corpse with wide eyes as someone grips someone's arm.,Someone,gold,walks to his hands and knees and touches another body of water.,taps his car's wall.,nods and takes at someone's hands.,turns over and looks up.\n17115,lsmdc1043_Vantage_Point-89432,2534,Someone stops the car and someone gets out. Someone,Someone stops the car and someone gets out.,Someone,gold,\"shoots the armed someone, then points his gun at someone's face.\",stops at the end and smiles and snatches someone's hand.,steps into a police car.,runs up after her.\n17116,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3748,\"They point their wands at someone, who is covered in dirt. Someone\",\"They point their wands at someone, who is covered in dirt.\",Someone,gold,notices the bones on the ground.,\"screams on the side of the school, which floats with purpose.\",\"looks at the eyes in shock, then to himself.\",notices a handful of boxes lying in the floor.\n17117,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3746,The shaft becomes a smooth pipe. They,The shaft becomes a smooth pipe.,They,gold,slide down it and fall onto a floor covered with animal bones.,open the doors on the street and bend rails around the building.,drive across a city's emerald - grey road and disappears into a dark tunnel.,head along the walls of a train train.\n17118,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3737,He notices a raised decoration on the side of it. He,He notices a raised decoration on the side of it.,He,gold,runs his finger over it.,turns to the fallen friend executive.,kneels down and carries a small piece of furniture to clear the grass.,moves away from the fire and tries to climb to the debris.\n17119,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3741,It uncovers a deep shaft. Someone,It uncovers a deep shaft.,Someone,gold,\"looks down into it, then backs away.\",rubs the top's sole edge.,reaches out and places the key into the lock.,sets a flow surface.\n17120,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3745,\"Someone jumps, quickly followed by someone. The shaft\",\"Someone jumps, quickly followed by someone.\",The shaft,gold,becomes a smooth pipe.,is a blur; a pot is thrown into someone standing in a golden door.,overtakes someone's eyes.,knocks him from the shield.\n17121,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3742,He almost falls down the shaft. He,He almost falls down the shaft.,He,gold,stares down the shaft.,\"grips the ground, and wraps her arms around them.\",lowers his hand to left people.,leaps off the wave and lets him down the platform.\n17122,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3738,\"Staring at the tiny snake, someone concentrates hard. He\",\"Staring at the tiny snake, someone concentrates hard.\",He,gold,thrashes back and forth as someone thinks about it.,opens his mouth and speaks.,creeps around the rippling water and gently takes off his glasses.,pulls his weapon close to someone.\n17123,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3747,They slide down it and fall onto a floor covered with animal bones. They,They slide down it and fall onto a floor covered with animal bones.,They,gold,start to step in the corner.,share a stall while someone does to knock him down.,\"point their wands at someone, who is covered in dirt.\",\"walk across the bottom of the hill, now in street in act of racing, mouth moving slowly in half.\"\n17124,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3736,Someone crosses to the ring of sinks which are set around the base of an ornate marble structure. He,Someone crosses to the ring of sinks which are set around the base of an ornate marble structure.,He,gold,picks up a script.,\"turns to look at it, then turns back in pods to find someone lurking at the figure.\",looks up and runs his hand along the ledge above.,turns on a lamp.\n17125,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3750,Someone makes someone follow someone through a huge pipe. The pipe,Someone makes someone follow someone through a huge pipe.,The pipe,gold,leads to a low cave where something scaly is lying on the ground.,\"spills into the night as someone appears in a white light with him, a blanket and others.\",is sucked from above ground.,\"pops up, dead.\"\n17126,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3749,Someone notices the bones on the ground. Someone,Someone notices the bones on the ground.,Someone,gold,stunned someone watches them go; as someone reaches for the hands of someone's clothes.,slaps the ease and cuts the reigns back in the head.,notices some curves at the foot of the closet.,makes someone follow someone through a huge pipe.\n17127,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3740,The sink decorated with the snake slowly disappears downwards. It,The sink decorated with the snake slowly disappears downwards.,It,gold,looks around the fronts of a lantern.,brings the knife and the power swings inside the box.,leaps out of the plane's engine.,uncovers a deep shaft.\n17128,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93303,3743,Someone gives him a push and someone disappears. They,Someone gives him a push and someone disappears.,They,gold,\"pour out, going down.\",\"follow someone into an elevator, then slings him down on the floor, and slides him up the side of the building.\",stare down after him.,find the bursting sphere.\n17129,lsmdc0013_Halloween-54238,6508,\"He walks slowly down to the window and peers out. He looks down at the spot where someone should be, but there\",He walks slowly down to the window and peers out.,\"He looks down at the spot where someone should be, but there\",gold,\"is nothing there, just a trampled patch in the grass.\",is not one there at least a second.,\"is some rickety of ants, entirely on him.\",\"is a building in the foreground, breaking in numerous pieces of numerous walkways moving back at different chairs and eating.\"\n17130,lsmdc0013_Halloween-54238,6509,\"He looks down at the spot where someone should be, but there is nothing there, just a trampled patch in the grass. He\",\"He looks down at the spot where someone should be, but there is nothing there, just a trampled patch in the grass.\",He,gold,hikes across the road to the plaza of the fallen barn.,\"stares down with growing fear, then looks out from the house.\",\"shuts the bag, throws it out of the makeshift bin.\",puts the right hand between his fingers and holds him tight to him.\n17131,lsmdc0013_Halloween-54238,6507,\"Someone looks down at her, then up at the shattered window at the end of the hall. He\",\"Someone looks down at her, then up at the shattered window at the end of the hall.\",He,gold,\"reaches out her hand, pulls out a wooden box and kneels.\",lived in with people become quite awe as the sidewalk of the house sits.,\"meets the sound, as the elevator trundles down one of the doorways.\",walks slowly down to the window and peers out.\n17132,lsmdc0013_Halloween-54238,6506,\"Someone begins to cry again, harder and harder. Someone\",\"Someone begins to cry again, harder and harder.\",Someone,gold,lurches into the suv and slumps into a rock.,steps into the courtyard and someone closes the front door.,\"looks down at her, then up at the shattered window at the end of the hall.\",'s face is now covered with blood.\n17133,anetv_5pzCqex6S48,11905,A man is seen standing ready and putting his arms up by his sides. The man then,A man is seen standing ready and putting his arms up by his sides.,The man then,gold,turns around and begins spinning himself around on his horse.,jumps onto a set of uneven bars and begins performing a gymnastics routine.,holds up a razor and stands up to see if he is using plaster.,gets back in the water and then dives back onto the mat.\n17134,anetv_5pzCqex6S48,11906,The man then jumps onto a set of uneven bars and begins performing a gymnastics routine. The man,The man then jumps onto a set of uneven bars and begins performing a gymnastics routine.,The man,gold,spins himself all around and ends by jumping off the side with his arms up.,begins spins around the bars and ends by jumping off his feet and bowing.,jumps up something parallel on the mat and walks off while a man stands on the sidelines to her.,continues spinning around one another as well as helping the camera and end by moving himself around and performing various flips.\n17135,anetv_EMDTvPUEr7E,13937,The boy in orange shirt took turn and play the hop scotch. A woman in brown shirt,The boy in orange shirt took turn and play the hop scotch.,A woman in brown shirt,gold,is sitting on top of a rope.,picks off the balls.,holds out a bow.,is scratching her face as she watch the boy in white shirt.\n17136,anetv_EMDTvPUEr7E,13936,A young boy and young girl are playing hop scotch as the kids and adults are on the side watching. The boy in orange shirt,A young boy and young girl are playing hop scotch as the kids and adults are on the side watching.,The boy in orange shirt,gold,pick the ball from a green tree.,walks around the street to the side line.,took turn and play the hop scotch.,is in the pool making throw balls.\n17137,anetv_EMDTvPUEr7E,10161,A small group of kids are seen playing a hopscotch match with one another while taking turns jumping on the chalk. Older women help the kids on the side as they continue to play and others,A small group of kids are seen playing a hopscotch match with one another while taking turns jumping on the chalk.,Older women help the kids on the side as they continue to play and others,gold,watch on the sides.,watch at the end.,watch on the background.,watch on the sidelines.\n17138,anetv_4_CcDjbCXBQ,10044,A woman is seen hosting a news segment and leads into shots of people playing soccer and audience members watching. More highlights of the game,A woman is seen hosting a news segment and leads into shots of people playing soccer and audience members watching.,More highlights of the game,gold,are shown as well as team mates celebrating and hugging one another.,are shown in slow motion as well as people spinning in a circle and doing many tricks with it.,are shown as well as the people hitting the ball while still speaking to the camera.,\"are shown as well as shots of people playing polo on the ice, and playing a stretch.\"\n17139,anetv_XLdqEn8pqis,14852,A little girl plays accordion in a classroom pushing the buttons of the instrument with both hands. The girl,A little girl plays accordion in a classroom pushing the buttons of the instrument with both hands.,The girl,gold,turns on the light to the room and uses it.,plays the flute and looks around and smiles to herself.,uses her fingers to cut the ending scarf as briefly as her other hand walk closer to her.,bends her head to her left side and then stop playing.\n17140,anetv_XLdqEn8pqis,9044,A young child is seen sitting in a chair holding an accordion. She,A young child is seen sitting in a chair holding an accordion.,She,gold,puts the guitar and pauses to speak to the camera that leads to a person playing a flute.,begins playing the drums as the others continues to win.,begins playing while rocking back and fourth.,continues playing the instrument while different people watch him play.\n17141,anetv_XLdqEn8pqis,9045,She begins playing while rocking back and fourth. She,She begins playing while rocking back and fourth.,She,gold,gets on her hands and tries to play the clarinet.,crosses to the window and shakes her hand.,begins by putting down her things and continuing to play.,continues playing to the camera over and over.\n17142,lsmdc3063_SOUL_SURFER-31341,17249,A judge jots the names. An official,A judge jots the names.,An official,gold,sits down on a podium.,adds someone and someone.,arrives at the computer.,touches it and turns his hand at a man in a tuxedo and his earpiece.\n17143,lsmdc3073_THE_GUILT_TRIP-34706,16409,\"Someone leaves the conference room, downcast, and sees someone eagerly waiting for him at the front desk. Back in the car, someone\",\"Someone leaves the conference room, downcast, and sees someone eagerly waiting for him at the front desk.\",\"Back in the car, someone\",gold,plays her audio book.,shows off an alarm clock.,walks from a waitress towards the table.,runs across the green grounds.\n17144,anetv_l7gWFOa7FnI,13857,He cuts the tile with a red saw. He,He cuts the tile with a red saw.,He,gold,pours leaves and there completely those words with him.,is finished painting the fence.,sets chairs and flowers on the tile.,sidles up fast and shaves the front of his hand as he sparks from his brushes.\n17145,anetv_l7gWFOa7FnI,13856,He starts putting the tile down on the ground. He,He starts putting the tile down on the ground.,He,gold,continues to slide down the carpet.,cuts the tile with a red saw.,pulls the roller and does it again.,lifts it up to the surface of the board.\n17146,anetv_l7gWFOa7FnI,13855,A man is standing outside holding a black tile. He,A man is standing outside holding a black tile.,He,gold,applies plaster to the tile as he falls.,starts putting the tile down on the ground.,\"is then mopping the floor, the floor and ceiling tiles.\",is talking about the plaster in front of him.\n17147,anetv_l7gWFOa7FnI,14150,He intersects them together one at a time. He,He intersects them together one at a time.,He,gold,comes back doing big dishes.,\"sits on the bed next to the other woman dangling above the door, his head swaying rhythmically to the music.\",has instructions numbers on the painting equipment as he continues playing the guitar.,talks about how to do it across an entire patio and shows it done.\n17148,anetv_Ncfysce-svA,13174,\"A room is shown with an acoustic guitar lying across a beige sofa and a stone art piece in front of the sofa with rocks in it. A person, face unseen,\",A room is shown with an acoustic guitar lying across a beige sofa and a stone art piece in front of the sofa with rocks in it.,\"A person, face unseen,\",gold,approaches the sofa and picks up the guitar.,\"starts up again sitting on the couch, moving back and fourth.\",is showing how to do a different thing.,sits up and has a flat iron on a plate in front of him.\n17149,anetv_kl_JsmJ84PI,18286,A group of people are seen playing a game of soccer in an indoor field while a group of people watch on the sides. People shown fighting in the stands and players walk around watching the fight and the paramedics,A group of people are seen playing a game of soccer in an indoor field while a group of people watch on the sides.,People shown fighting in the stands and players walk around watching the fight and the paramedics,gold,take a man away.,continue for the game.,measure and play with another man.,begins to stand but recognizes.\n17150,anetv_teDceMxV9PA,601,A reporter reports on a story about amputees and non amputees using replacement limbs with advanced technology or as leg extenders and performance enhancers for non amputees. A reporter,A reporter reports on a story about amputees and non amputees using replacement limbs with advanced technology or as leg extenders and performance enhancers for non amputees.,A reporter,gold,sits at a reporters table during a news broadcast before the clip cuts to people wearing limb replacement technology.,runs out and the runners begin running and running in running outfits.,\"watches the conductor like a sweet lady and other female, who do four lenses like pool balls.\",interviews as fairies point a hand east out between the social and social media jumpers.\n17151,anetv_teDceMxV9PA,602,A reporter sits at a reporters table during a news broadcast before the clip cuts to people wearing limb replacement technology. Several clips of men who are not amputees wearing amputee extender legs,A reporter sits at a reporters table during a news broadcast before the clip cuts to people wearing limb replacement technology.,Several clips of men who are not amputees wearing amputee extender legs,gold,are on pit and doing wrestling.,are shown with the subjects running and bounced in the street.,are thirty into one night.,\"and black hair are objects now, above.\"\n17152,anetv_U7SRRMoCGks,6406,A man is seen standing before an exercise beam and begins moving himself on the bars while others practice around him. The man,A man is seen standing before an exercise beam and begins moving himself on the bars while others practice around him.,The man,gold,pulls another man out of the rope when he's done.,continues to set up the parallel bars while moving himself up and down on the man.,continues to workout on the beam and pauses to speak to the camera while using his hands.,continues laying down on the bars while the people watch on the side while he continues talking.\n17153,lsmdc3052_NO_STRINGS_ATTACHED-25477,11659,Someone gets out of the car and walks over to him. He,Someone gets out of the car and walks over to him.,He,gold,sits down a chair and speedily washes his face with both hands.,creeps toward him and lets the car wheel out.,enters the house and grabs his jacket.,steps closer then frowns.\n17154,anetv_2OPk79DNQdM,6381,A young woman is seen speaking to the camera and transitions into her with her hair in front of her face. She,A young woman is seen speaking to the camera and transitions into her with her hair in front of her face.,She,gold,continues dancing capoeria and talks to the camera.,continues carving the cat's nails and ends by presenting it to the camera.,continue to speak to the camera and dancing with the final beauty before walking away and talking to the camera.,slowly brushes and parts her hair and flips her hair back in the end.\n17155,anetv_4M4MXPP9oRY,3048,There are several people gathered to watch a competitive game of water polo on a sunny day. There,There are several people gathered to watch a competitive game of water polo on a sunny day.,There,gold,are cheering in the sand.,is a team of three men who are walking in a shuttle and playing hip hop.,is not very much to people.,are two teams in an outdoor swimming pool playing against each other.\n17156,anetv_4M4MXPP9oRY,3051,\"After one of the team scores a point, the fellow teammates cheer for them. The winning team\",\"After one of the team scores a point, the fellow teammates cheer for them.\",The winning team,gold,misses a shot afterwards a goal.,wins for the final time and standing in the net celebrating.,scores more points and receives applause from the crowd.,is in the game with another goal standing in their hands.\n17157,anetv_4M4MXPP9oRY,3049,There are two teams in an outdoor swimming pool playing against each other. The spectators,There are two teams in an outdoor swimming pool playing against each other.,The spectators,gold,are interviewed at the same time.,cheer and start to cheer.,continue to run and run between other teammates.,are watching and cheering for the players.\n17158,lsmdc0019_Pulp_Fiction-56612,16950,\"Someone is regressing on the spot. Someone 'eyes go to someone, someone smirks, someone\",Someone is regressing on the spot.,\"Someone 'eyes go to someone, someone smirks, someone\",gold,rolls his eyes and shoot someone in the shoulder.,pensively as though they are finished in the actual chaos.,\"leans forward, pushes the hand on his paunchy mother.\",is standing settling in doing armchair.\n17159,lsmdc0019_Pulp_Fiction-56612,16948,Someone still can't speak. Someone now,Someone still can't speak.,Someone now,gold,knows how long he will be.,sits in a lone chair before someone like a political prisoner in front of an interrogator.,has a deep pout and sparks through.,sees some passengers on the cattle stand.\n17160,lsmdc0019_Pulp_Fiction-56612,16947,\"He is not crying or whimpering, but he is so full of fear. Someone\",\"He is not crying or whimpering, but he is so full of fear.\",Someone,gold,is scraping the dirt from someone's truck.,\"rushes up to the house, approaches the driver's door.\",is not quite dumb hear now.,can't say a word.\n17161,anetv_Pu85El6jhao,14028,They are floating through the river passing all the green scenery. The man in the red wet suit,They are floating through the river passing all the green scenery.,The man in the red wet suit,gold,sinks push and forward down the river below.,is holding a pipe so he can be able to stop the source of it.,falls down and grabs the surf board and onto it again as well as gets himself on.,is leading the way.\n17162,anetv_Pu85El6jhao,14027,\"Next to hime are many other people on their own floats, just relaxing. They\",\"Next to hime are many other people on their own floats, just relaxing.\",They,gold,begin down polo choreographed playing a rally.,\"are walking around, applauding and washing their hands and chatting.\",are floating through the river passing all the green scenery.,emerge from a just flip.\n17163,anetv_Pu85El6jhao,14026,A man in a red wet suit is sitting on a float talking casually. Next to hime,A man in a red wet suit is sitting on a float talking casually.,Next to hime,gold,is shown to be shown ice surfing and after he puts the foil up.,\", richard parker wakes and looks at the scuba fish.\",\"are many other people on their own floats, just relaxing.\",is removing the lights from the windshield and other water instructs on enough surf to wih the third of the various activities.\n17164,lsmdc3035_INSIDE_MAN-1869,8754,He turns to the busty woman. He,He turns to the busty woman.,He,gold,\"forces her inside, closes the door and walks onward to another office.\",pauses and glances over towards people at the counter.,grabs someone's hand about and shakes it out.,rubs her hands together and gives a smile before driving.\n17165,lsmdc3035_INSIDE_MAN-1869,8751,\"At the front, she forces the busty woman forward. They\",\"At the front, she forces the busty woman forward.\",They,gold,reach a second office where another robber stands by just out.,hurry back to the daybreak offices.,follow her off the way she stops.,are completely in between.\n17166,lsmdc3035_INSIDE_MAN-1869,8755,\"He forces her inside, closes the door and walks onward to another office. In interrogation, the Asian guy\",\"He forces her inside, closes the door and walks onward to another office.\",\"In interrogation, the Asian guy\",gold,sits at an breakfast table in mid - air.,\"goes to the stereo, saying her i d. a series of recording demonstrates.\",\"reached someone, a woman happily behind her.\",looks at a group of instant photos.\n17167,lsmdc3035_INSIDE_MAN-1869,8749,She opens an office door and points to a row of hostages. She,She opens an office door and points to a row of hostages.,She,gold,checks her hair and glances up at it.,takes a swig of a table about all the sculptures and dishes up on the table.,leads them into the hallway in a line.,\"spots a security guard intersection through the walls, his coat revealing a large bullpen in a corner.\"\n17168,lsmdc3035_INSIDE_MAN-1869,8750,\"She leads them into the hallway in a line. At the front, she\",She leads them into the hallway in a line.,\"At the front, she\",gold,forces the busty woman forward.,turns from a bank wall.,turns a page from the door.,arrives with a wig of smoking cigarettes.\n17169,lsmdc3035_INSIDE_MAN-1869,8752,He removes the busty woman. The criminal,He removes the busty woman.,The criminal,gold,picks up his cuffed phone.,leads her around the vault to another office.,mows his shoe in it.,produces a remote control and pins it on.\n17170,lsmdc3035_INSIDE_MAN-1869,8748,\"In the bank, someone heads down a hallway past an accomplice. She\",\"In the bank, someone heads down a hallway past an accomplice.\",She,gold,strides over to a line of huts and peeks back and forth between them.,slows to a stop and replaces the accelerator.,opens an office door and points to a row of hostages.,gestures to the agents as the group faces into the tunnel.\n17171,lsmdc3035_INSIDE_MAN-1869,8746,Someone joins the cops and walks toward the bank. They,Someone joins the cops and walks toward the bank.,They,gold,set the food and water on the ground.,go into one another and keep removing the satchel and briefcase.,are at a table and a tattoo artist is laying on a blue mat.,\"let the flagpole over one shoulder, then under the shining.\"\n17172,lsmdc3035_INSIDE_MAN-1869,8747,\"Command truck, the police listen intently to a radio transmission. As someone hangs his head, someone\",\"Command truck, the police listen intently to a radio transmission.\",\"As someone hangs his head, someone\",gold,stares up at the dolphins.,holds his brow wrinkled.,stares at them both.,calls someone a questioning look.\n17173,lsmdc3035_INSIDE_MAN-1869,8745,The man's gaze drops. Someone,The man's gaze drops.,Someone,gold,lowers his tiny gaze and smiles.,joins the cops and walks toward the bank.,listens and walkie - talkie.,\"uses a tray to a stand, gestures, and strides out.\"\n17174,lsmdc3035_INSIDE_MAN-1869,8753,He opens the next room. He,He opens the next room.,He,gold,turns to the busty woman.,hurls the tv on a desk.,puts a second window light across the basement.,\"covers her chest, and spits it into the bedroom.\"\n17175,anetv_Q6uc1kl008o,953,People are playing basketball on a basketball court. People,People are playing basketball on a basketball court.,People,gold,are walking in the stands finding their seats.,are running in chairs and running on stilts.,are on stage flirting with the baton.,are playing lacrosse on a beach.\n17176,anetv_Q6uc1kl008o,17115,A man in gray talks to an usher and four other men comedown the stairs and go to their seats. A lady in pink shirt,A man in gray talks to an usher and four other men comedown the stairs and go to their seats.,A lady in pink shirt,gold,stops playing and holds a piece of paper on her arm.,walks up the stairs.,stands with her hands up in messy hair and curls.,talks to the man on the first board.\n17177,anetv_Q6uc1kl008o,954,People are walking in the stands finding their seats. A woman in a red vest,People are walking in the stands finding their seats.,A woman in a red vest,gold,is shown inside the newsroom.,is standing in a large sand pile.,is standing on the side of the court.,sits down in a chair.\n17178,anetv_Q6uc1kl008o,17116,A lady in pink shirt walks up the stairs. Two people in a low level,A lady in pink shirt walks up the stairs.,Two people in a low level,gold,get up and move further back and stop to speak with the usher.,on the team dive in the pool.,\"mops the roof, and up close we see the mopping table of a woman standing inside a bathroom.\",stand on the floor in the background.\n17179,anetv_or7N8oeI-SY,8568,We see an illustration of a washer. The lady,We see an illustration of a washer.,The lady,gold,puts her shoe in the bucket and scrubs it with a the brush.,starts hula hooping with a lady.,takes clippers and scrapes.,shows nails and tiling floors.\n17180,anetv_or7N8oeI-SY,8565,\"We see a lady sitting on the floor with a shoe, bucket of water, brush and soap. The lady\",\"We see a lady sitting on the floor with a shoe, bucket of water, brush and soap.\",The lady,gold,adds paste to the sink again.,removes a tunic from the dog stand and walks to the lady in the stable.,runs her hands up the covers and presses the attachments on her cheek designs.,shows us the items one at a time.\n17181,anetv_or7N8oeI-SY,8570,She shows us the already cleaned shoe. We,She shows us the already cleaned shoe.,We,gold,protrude it in a hand mirror.,saw the white stair project.,goes back to her painting.,see a radiator illustration.\n17182,anetv_or7N8oeI-SY,8566,The lady shows us the items one at a time. We,The lady shows us the items one at a time.,We,gold,see the ending title screen.,see a close up of the board as she clips us for the dog.,see the ending screen.,see an illustration of a thermometer.\n17183,anetv_or7N8oeI-SY,8569,The lady puts her shoe in the bucket and scrubs it with a the brush. She,The lady puts her shoe in the bucket and scrubs it with a the brush.,She,gold,finishes the lemon in paper and begins brushing her teeth.,meets the lady with an blistered tool and takes her right eye off.,pick up it and paint it at a brown table.,shows us the already cleaned shoe.\n17184,anetv_or7N8oeI-SY,8564,We see an opening screen on white. We,We see an opening screen on white.,We,gold,see a girl holding the rod with a string of blue balls.,see using a blower on the leaves using the blower again.,see children sailing in a hotel crowded with a team of friends.,\"see a lady sitting on the floor with a shoe, bucket of water, brush and soap.\"\n17185,anetv_or7N8oeI-SY,8567,We see an illustration of a thermometer. We,We see an illustration of a thermometer.,We,gold,see the ending screen.,see a person polishing a bottle with a hose.,see a person adjust the violin.,see an illustration of a washer.\n17186,anetv_x0TiekqVMj0,11399,A woman is seen performing a belly dancing routine in a dark room with one single line shown on her. She,A woman is seen performing a belly dancing routine in a dark room with one single line shown on her.,She,gold,walks over to the side and pipes up.,continues dancing around the room and ends by the room going dark as she spins.,walk around the corner and into a corridor.,pushes them off and moves in.\n17187,lsmdc3085_TRUE_GRIT-40552,5248,Someone shoots his pistol in the air and the bird flies off. Someone and someone,Someone shoots his pistol in the air and the bird flies off.,Someone and someone,gold,advance down a steep hill.,step onward as they freeze over.,look over someone's shoulder.,walk over and stand beneath the hanged man.\n17188,lsmdc0003_CASABLANCA-47103,16342,\"While someone takes off some jewelry he walks to the window and peers out into the darkness. Below and across the street, a man\",While someone takes off some jewelry he walks to the window and peers out into the darkness.,\"Below and across the street, a man\",gold,stands under an arch.,enters a lanky man's leg.,is seen watching toward the car.,arrives at the dark yard and sees a man with little interest behind the bushes.\n17189,lsmdc0003_CASABLANCA-47103,16340,People walk to their room. Someone,People walk to their room.,Someone,gold,looks up at someone.,\"reaches over to see someone shaking an arm around someone, who comes to a doorway and continues looking at people.\",nods to someone and sits back on his seat.,switches on the light as they enter.\n17190,lsmdc0003_CASABLANCA-47103,16333,Someone comes quickly up to someone. The croupier,Someone comes quickly up to someone.,The croupier,gold,comes out of the gambling room and up to someone.,works by someone for someone.,chuckles with the closing strains.,smiles and he laughs and someone shoots someone.\n17191,lsmdc0003_CASABLANCA-47103,16332,People get up and begin to leave. Someone,People get up and begin to leave.,Someone,gold,follows the busty person down the hall.,\"is in the jet - trailer, snapped out of someone's limousine as he stands with someone.\",tries to look at his skill.,comes quickly up to someone.\n17192,lsmdc0003_CASABLANCA-47103,16330,\"The room grows quiet, all eyes turn toward someone. An angry murmur\",\"The room grows quiet, all eyes turn toward someone.\",An angry murmur,gold,directs a wind band across the grass as the dog chases into it.,starts among the crowd.,has entered the room.,plays mumbles to the man and starts to watch as speaker dance.\n17193,lsmdc0003_CASABLANCA-47103,16344,\"Someone watches him, then draws down the shade. He\",\"Someone watches him, then draws down the shade.\",He,gold,\"crosses to a table, takes a cigarette from a box, and strikes a match.\",trains a light on someone's side.,breaks into a smile.,sees the figure of someone.\n17194,lsmdc0003_CASABLANCA-47103,16334,The croupier comes out of the gambling room and up to someone. He,The croupier comes out of the gambling room and up to someone.,He,gold,hands him a roll of bills.,takes his cue and leans her against the plate.,picks through a stack of cards and gets to someone.,is featured on microphones.\n17195,lsmdc0003_CASABLANCA-47103,16331,An angry murmur starts among the crowd. People,An angry murmur starts among the crowd.,People,gold,are walking in front of one of the balconies.,get up and begin to leave.,moves on hungrily as people march past.,\"look around, entranced.\"\n17196,lsmdc0003_CASABLANCA-47103,16336,\"As the cafe empties, someone approaches someone. She\",\"As the cafe empties, someone approaches someone.\",She,gold,\", someone applies a napkin to a customer.\",expression heavy.,wears his stole and throws it.,\"looks at him, understanding what he means.\"\n17197,lsmdc0003_CASABLANCA-47103,16343,\"Below and across the street, a man stands under an arch. Someone\",\"Below and across the street, a man stands under an arch.\",Someone,gold,\"watches him, then draws down the shade.\",exits the stage wearing a low headdress.,\"hesitates, grasping him.\",lifts his mask as his bare legs writhe slightly.\n17198,lsmdc0003_CASABLANCA-47103,16338,He bows and exits as someone arrives at the table. They,He bows and exits as someone arrives at the table.,They,gold,start out of the cafe.,exchange a look and someone shyly shakes the drink.,land on a automobile park between two men.,moment bends down to give the shot of the back door.\n17199,lsmdc0003_CASABLANCA-47103,16337,\"She looks at him, understanding what he means. He\",\"She looks at him, understanding what he means.\",He,gold,gingerly pours pasta in sauce.,bows and exits as someone arrives at the table.,\"looks down at the money, which breaks into traffic.\",grabs the package he is carrying.\n17200,lsmdc0003_CASABLANCA-47103,16341,Someone switches on the light as they enter. While someone takes off some jewelry he,Someone switches on the light as they enter.,While someone takes off some jewelry he,gold,places someone's bike inside.,walks to the window and peers out into the darkness.,ports them into a building.,walks over and reads out more softly.\n17201,lsmdc0003_CASABLANCA-47103,16335,He hands him a roll of bills. His manner,He hands him a roll of bills.,His manner,gold,is abrupt but cordial.,seems to fill the table.,is the equestrian for acrobatics.,\"is disturbed by someone's voice, almost as darkness around.\"\n17202,anetv_9KNOOoIK0zw,16227,The hair stylist first places a liquid in her hand and rubs it into the models hair and then brushes clients hair. The lady in the black tank top,The hair stylist first places a liquid in her hand and rubs it into the models hair and then brushes clients hair.,The lady in the black tank top,gold,is put wearing a black braid.,uses the blow drier while combing the hair with a brush.,puts clothing on and mops her hand.,shows the woman seated.\n17203,anetv_9KNOOoIK0zw,16226,A lady in a black tank top gives instruction on how to blow dry a girl's hair wearing a blue t - shirt. The hair stylist,A lady in a black tank top gives instruction on how to blow dry a girl's hair wearing a blue t - shirt.,The hair stylist,gold,continues to liquid the other style while a dog catch horseman.,hugs yellow hair for a while then brushes it.,\"continues styling the dog's hair, then down the hair and to brushing and styling the hair casually.\",first places a liquid in her hand and rubs it into the models hair and then brushes clients hair.\n17204,anetv_8uP35-qttBo,18426,One man shows off his while clips are shown of people shooting the bow and shown in between. The other man,One man shows off his while clips are shown of people shooting the bow and shown in between.,The other man,gold,engages in various presents and another another walks up and begins shooting bows.,spins around the ball and leads into another man pointing the place.,shifts his attention thoughtfully as the leader waits outside the game.,shows off his bow while still showing off his specs.\n17205,anetv_8uP35-qttBo,18425,Two men are seen speaking to the camera while each hold a bow and arrow. One man,Two men are seen speaking to the camera while each hold a bow and arrow.,One man,gold,speaks to the camera while the lights still appear.,shows another arrow over a smaller site where people push the cards around at the end.,gives an x to the kayak while the camera zooms in on them.,shows off his while clips are shown of people shooting the bow and shown in between.\n17206,anetv__crwKCjKRjg,19018,\"They are driving the cars around, bumping into each other. They\",\"They are driving the cars around, bumping into each other.\",They,gold,reach the other side of the hill.,\"spin the wheels hard, trying to hit each other.\",roll down the car in a parking lot.,place to look at each other.\n17207,anetv__crwKCjKRjg,12780,\"A man gets stuck with other cars, but after free and people continue riding cars. A yellow car bumps with another car, after people\",\"A man gets stuck with other cars, but after free and people continue riding cars.\",\"A yellow car bumps with another car, after people\",gold,stand on the road behind it.,continues riding bumper cars.,throws dirt on them.,spray washing cars while skateboarding.\n17208,anetv__crwKCjKRjg,19017,A group of kids are playing on bumper cars. They,A group of kids are playing on bumper cars.,They,gold,speed over and tricks off in the other direction.,are getting very high together.,hit when passing cars.,\"are driving the cars around, bumping into each other.\"\n17209,anetv_UL4YwgCFrDI,2297,They engage in several martial arts moves. They,They engage in several martial arts moves.,They,gold,move their bodies slowly and in unison.,throws more hammer croquette as they go to the ground.,perform cartwheels and harmonicas.,throw a javelin into a goal and throw the ball around.\n17210,anetv_UL4YwgCFrDI,6456,We see two men standing on a river bank. The men,We see two men standing on a river bank.,The men,gold,perform tai chi slowly.,splash the underwater face then into the lake.,get everything to start and push fish.,drink water and water.\n17211,anetv_UL4YwgCFrDI,6458,The men turn and face the left. The men slowly,The men turn and face the left.,The men slowly,gold,clap for the ball.,turn around and kneel down.,throw the darts towards the camera.,turn to the right.\n17212,anetv_UL4YwgCFrDI,2296,A couple of men are standing next to a river. They,A couple of men are standing next to a river.,They,gold,engage in several martial arts moves.,are engaged at a drink in a pool.,start playing a game of volleyball.,carry the river using one the rest before walking away.\n17213,anetv_UL4YwgCFrDI,6457,The men perform Tai Chi slowly. The men,The men perform Tai Chi slowly.,The men,gold,finish and hop off the arena.,continue the different fencing techniques.,turn and face the left.,move normal and then dance in front of a crowd.\n17214,anetv_H9FxfosWRTE,11210,A woman is seen kneeling down before a large weight and speaking to the camera continuously. She,A woman is seen kneeling down before a large weight and speaking to the camera continuously.,She,gold,moves the child around and the man pans to her face back and fourth.,continues to push the woman around rubbing lotion all over her legs.,moves her body around the weight and pointing around to demonstrate how to properly hold the weight.,reaches out to look at the camera and turns back to show the others arm while looking at the camera.\n17215,lsmdc1011_The_Help-78357,14665,A white mother pushing a pram slows down as she passes. Someone,A white mother pushing a pram slows down as she passes.,Someone,gold,arrives and comes to cover herself at the top of the stairs.,launches into the water where someone falls.,is consumed by the punch and painfully comfort her.,takes the slip of paper.\n17216,anetv_85HxidMLf5Y,295,\"A man cleans a small board of wood with a cloth in a workshop. Then, the man\",A man cleans a small board of wood with a cloth in a workshop.,\"Then, the man\",gold,serves the two shoes.,adds orange chopping brush.,uses flannel to polish the wood board thoroughly.,removes the ski and walks up before walking to the finish roof.\n17217,anetv_PNdG3SUdJzc,5965,The kneeling man starts a fire. One of the spectators,The kneeling man starts a fire.,One of the spectators,gold,rises and removes the rope.,covers the crate open fire.,approaches as the men run headlong to logs.,kisses the kneeing man.\n17218,anetv_YrS64TBX798,6761,A young girl is seen moving quickly around a horse brushing it's sides. She,A young girl is seen moving quickly around a horse brushing it's sides.,She,gold,uses him to take the tire off of the swing in the end.,brushes all over the horse while another horse walks in and out of frame.,sprays the dogs all along the ski while others ride around.,puts her fingers up over the sides and turns spinning and walks with her brush on her hair.\n17219,anetv_YrS64TBX798,6762,She brushes all over the horse while another horse walks in and out of frame. She,She brushes all over the horse while another horse walks in and out of frame.,She,gold,shows a form blown out of the wood at the end.,brushes past the calf as possible and stands up on the horse.,continues to brush the horse while the camera captures her movements.,continues speaking to the camera and pauses to speak to the camera.\n17220,lsmdc0010_Frau_Ohne_Gewissen-51068,5179,\"He goes out, closing the door after him. Someone\",\"He goes out, closing the door after him.\",Someone,gold,calls from the boys to stand on the lifeboat.,reaches out for that to spot him.,takes his cigar stub from his mouth and turns it slowly in the flame of a lighted match.,\"leaps out of the window, stumbles to the door, and drags the last passengers into an office.\"\n17221,anetv_pspJX3Lyys0,19865,The athlete walks away and another steps up and throws the discuss. Several more people,The athlete walks away and another steps up and throws the discuss.,Several more people,gold,perform tricks and ends with people cheering for the volleyballs.,are seen demonstrating how to throw a javelin at each other as one as to bounce yellow ball and lead into several goals.,\"chase a dodgeball, being caught by the wounded attendants.\",step up to throw the object and ends with one athlete winning and walking away.\n17222,anetv_XdqHO4x2FL0,13879,A buff man shows off his muscles on a city street. The man,A buff man shows off his muscles on a city street.,The man,gold,peels a colored black with the fifth hand put to the left step.,runs on his board and shows off the sides of a road.,\"continues to show how he should throw to jump different tricks, and finally again shows where he skates.\",holds up both arms.\n17223,anetv_XdqHO4x2FL0,13878,We see an opening screen on white. A buff man,We see an opening screen on white.,A buff man,gold,runs down the track followed by arrows on the pole.,shows off his muscles on a city street.,is sitting on a rug.,holds an object in his left.\n17224,anetv_XdqHO4x2FL0,11410,He is talking to the camera in the daylight. He,He is talking to the camera in the daylight.,He,gold,is wearing sunglasses and is holding a heavy bottle of snow.,shines his shaver with a colorful twirling shaver.,shows off his large muscles as they talk.,signs a pumpkin that is dully shows light a swans lit in a mike.\n17225,anetv_XdqHO4x2FL0,13880,The purple shirt man wins the match. The men,The purple shirt man wins the match.,The men,gold,get up from the table and the buff man in purple laughs.,continue to arm wrestle.,hug each other in the gym.,return to the table.\n17226,anetv_XdqHO4x2FL0,13881,The men get up from the table and the buff man in purple laughs. We,The men get up from the table and the buff man in purple laughs.,We,gold,see a tennis ball participating in the game.,see a young child in a red uniform carrying a stick and showing a title stage.,dart from another direction where she s lying at him.,see the closing screen.\n17227,anetv_XdqHO4x2FL0,11409,A man is standing on a busy street. He,A man is standing on a busy street.,He,gold,is playing a recorder on his phone.,is talking to the camera in the daylight.,rolls out the lemonade.,is hammering down a square in the garden.\n17228,anetv_dsgQVrJi71g,19659,\"A man plugs a mowing machine, then he pushes the mower to cut the grass in a backyard. After, the man\",\"A man plugs a mowing machine, then he pushes the mower to cut the grass in a backyard.\",\"After, the man\",gold,trims on mowing the lawn and move the mower and mowing.,bends over and proceeds to smile on a area using his hands.,shovels snow from a block and shows off the dog mowing the yard.,cuts the grass on the borders with garden scissors.\n17229,anetv_xWxpAaPhknA,9020,They are walking up a set of stairs to get to the diving board. A person,They are walking up a set of stairs to get to the diving board.,A person,gold,brings his arms and then they both fall down.,takes it and immediately jumps into the water.,\"does forward kicks side flip, throws their clothes and spinning in the air.\",does a back flip into the water.\n17230,anetv_xWxpAaPhknA,9019,People are jumping off diving boards into the pool below them. They,People are jumping off diving boards into the pool below them.,They,gold,run down a slope toward the river.,are walking up a set of stairs to get to the diving board.,put makeup on their faces.,\"are doing exercise, diving after they both went.\"\n17231,lsmdc3027_GET_HIM_TO_THE_GREEK-12373,10440,She gives an acquiescent shrug. Now she and someone,She gives an acquiescent shrug.,Now she and someone,gold,walk backstage of a hotel room.,face each other on a bed.,step down a staircase.,exit past apartment buildings and beginning a lobby.\n17232,anetv_hW6aZXhKl9M,5684,A horse defecates in the water. People,A horse defecates in the water.,People,gold,are shown riding horses on a field.,are fishing on their horses.,are tubing down a hill of snow.,form a line with the horses while riding in the ocean.\n17233,anetv_hW6aZXhKl9M,8673,At one point they see a school of fishes in the water. The person recording also,At one point they see a school of fishes in the water.,The person recording also,gold,tries to wrestle while they are supervising.,shows the view from the water to the beachfront.,waves to the camera and capturing the area on its mechanical legs.,rides the path to one of the waves.\n17234,anetv_hW6aZXhKl9M,5683,People ride horses in the shallow waters of the sea. People,People ride horses in the shallow waters of the sea.,People,gold,ride the horses in the water along the shore.,rides a surf board near a rocky shore where a group of children floating near the river.,are pulling the raft across the river.,are rafting on canoe surfboards river water.\n17235,anetv_hW6aZXhKl9M,8672,Some people are recording themselves as they ride on horseback through the water on a beach. At one point they,Some people are recording themselves as they ride on horseback through the water on a beach.,At one point they,gold,pick up gates and paddle down a river.,play pictures in the grounds.,see a school of fishes in the water.,lose their heels at the end.\n17236,lsmdc3017_CHRONICLE-7136,3116,Someone films a tailgating truck. It suddenly,Someone films a tailgating truck.,It suddenly,gold,veers through a guardrail.,strikes her's legs.,knocks the tech from his grasp.,currents as he settles among other passengers.\n17237,lsmdc3017_CHRONICLE-7136,3127,\"The driver lies limp with a long cut up his forearm and a streak of blood staining the corner of his mouth. Kneeling with his arms around the injured man, someone\",The driver lies limp with a long cut up his forearm and a streak of blood staining the corner of his mouth.,\"Kneeling with his arms around the injured man, someone\",gold,squints to a high brace and pumps his hands at his chest.,\"grabs his gun, races to the bridge, where someone flings him into the sand.\",gets out onto the bed and shuffles near the actor.,lifts his gaze to someone's viewfinder.\n17238,lsmdc3017_CHRONICLE-7136,3117,It suddenly veers through a guardrail. Now they,It suddenly veers through a guardrail.,Now they,gold,find the truck nose down in a river.,turn it off and drive to the house in the big bang.,retreat outside and tip the top of.,hit the row shovel on the bumper.\n17239,lsmdc3017_CHRONICLE-7136,3125,Someone surfaces with the truck driver. Someone,Someone surfaces with the truck driver.,Someone,gold,uncovers his belt and fires the bullet through the air.,spots someone with him and beckons him to the car.,helps him drag the unconscious man onto the muddy riverbank.,looks around the forecourt and sees someone alone.\n17240,lsmdc3017_CHRONICLE-7136,3119,\"Shedding his jacket and shoes, someone dives into the water. Someone\",\"Shedding his jacket and shoes, someone dives into the water.\",Someone,gold,drags himself down the shaft.,stands looking at the car.,is dragged out of an adjacent rack.,moves to the riverbank.\n17241,lsmdc3017_CHRONICLE-7136,3121,Someone swims to the trucks. He,Someone swims to the trucks.,He,gold,looks at a plastic meerkat.,runs to the launch captain.,turns and finds the timekeeper's headlights straight ahead.,plunges below the water surface.\n17242,lsmdc3017_CHRONICLE-7136,3120,Someone moves to the riverbank. Someone,Someone moves to the riverbank.,Someone,gold,pushes away his glasses then rubbing his eyes.,steps close to someone.,checks someone's wristwatch.,swims to the trucks.\n17243,lsmdc3017_CHRONICLE-7136,3126,Someone helps him drag the unconscious man onto the muddy riverbank. The driver,Someone helps him drag the unconscious man onto the muddy riverbank.,The driver,gold,lies limp with a long cut up his forearm and a streak of blood staining the corner of his mouth.,climbs in a cab of the car and takes up the plane.,\"turns down, as the captain moves on.\",hops away as the other families trudge out of the pavilion.\n17244,lsmdc3017_CHRONICLE-7136,3123,Someone whips off his jacket. Rain,Someone whips off his jacket.,Rain,gold,tosses himself to the ground.,spills onto someone's legs.,pelts the water surface.,shoves its open hood.\n17245,lsmdc3017_CHRONICLE-7136,3122,He plunges below the water surface. Someone,He plunges below the water surface.,Someone,gold,washes over someone with a wave.,looks towards the devastated face and gives a shy wave.,whips off his jacket.,\"tries to swim toward him, knocking him to the ground.\"\n17246,lsmdc3017_CHRONICLE-7136,3124,Rain pelts the water surface. Someone,Rain pelts the water surface.,Someone,gold,squats and peers around a bump.,jumps up and tosses a pole at someone.,appears at the kitchen sink.,surfaces with the truck driver.\n17247,lsmdc3017_CHRONICLE-7136,3112,\"Facing the parked car, someone telekinetically drags it out of its spot. He\",\"Facing the parked car, someone telekinetically drags it out of its spot.\",He,gold,turns it around to face a different space.,hurls a wad of candy at the car.,sees the car prop open.,drops his contact and holds his limp gaze.\n17248,lsmdc3017_CHRONICLE-7136,3113,\"Someone bounces excitedly, then pops his vest collar. He\",\"Someone bounces excitedly, then pops his vest collar.\",He,gold,holds a bloody tissue out at someone.,unbuttons his shirt pocket with someone's smooth panty skirt.,gets off the main ramp and walks anxiously toward her ex - daughter.,swings him and 45 his arms around his elbows.\n17249,lsmdc3017_CHRONICLE-7136,3114,As the woman finds her car in its new space. Someone,As the woman finds her car in its new space.,Someone,gold,'s jaw drops as she says.,nudges his shoulder against someone's.,spots a scene from the mirror.,blows her closed and she slides across the park.\n17250,lsmdc3017_CHRONICLE-7136,3111,\"A woman gets out of the red car. Facing the parked car, someone\",A woman gets out of the red car.,\"Facing the parked car, someone\",gold,shows a beige paper case to someone.,takes off her bag then removes a second bolt.,breaths the zipper up.,telekinetically drags it out of its spot.\n17251,lsmdc3017_CHRONICLE-7136,3115,\"Someone nudges his shoulder against someone's. Later, someone\",Someone nudges his shoulder against someone's.,\"Later, someone\",gold,pounds someone's dashboard.,leads the pursuing eaters down the beach.,sets a tray peacefully in a large tub.,eyes his son with his boyish sketch of someone.\n17252,anetv_n1KeC6NXPUA,17922,A girl is playing on a playground. She,A girl is playing on a playground.,She,gold,is jumping on a set of monkey bars.,lays them down in front of the bigger girl.,goes backwards on the monkey bars.,jumps on an adult in bed.\n17253,anetv_n1KeC6NXPUA,17923,She goes backwards on the monkey bars. She,She goes backwards on the monkey bars.,She,gold,shows her hands to the camera and continues talking.,\"swings above a horn and falls on the ground, then twirls on her pole.\",is hanging in the balance and glides back and forth.,is at the front bars as she splits on the ground.\n17254,lsmdc1047_Defiance-91915,14672,She brings out a revolver. He,She brings out a revolver.,He,gold,\"touches someone's face then steps away, his face almost bleeding.\",checks the chamber and hands it back to her.,\"sticks her board through its pockets, slings it in her lap, stands nimbly from her chain - service headlight.\",jumps to her back and she sticks out of her dress and studies the damage.\n17255,lsmdc1047_Defiance-91915,14673,He checks the chamber and hands it back to her. He,He checks the chamber and hands it back to her.,He,gold,turns and leaves the room.,\"hurriedly reaches out to touch someone, his eyes upward.\",cocks his own gun.,raises the axe and she remains at the edge.\n17256,lsmdc1047_Defiance-91915,14669,Someone's whole body is trembling. Someone,Someone's whole body is trembling.,Someone,gold,drops to the ground.,\"feels again, his eyes intent.\",hacks it from his grasp.,looks to someone for an answer.\n17257,lsmdc1047_Defiance-91915,14671,Someone stares ahead like a man who has lost his way. She,Someone stares ahead like a man who has lost his way.,She,gold,brings out a revolver.,walks into the booth.,moves it in through the night sky.,has stopped struggling and steps on the sewing machine.\n17258,lsmdc1047_Defiance-91915,14670,Someone looks to someone for an answer. Someone,Someone looks to someone for an answer.,Someone,gold,stares ahead like a man who has lost his way.,rises from her mouth and kisses down her sleeve.,somersaults off the couch and sets his hands on the couch.,\"hangs on, catching their breath.\"\n17259,anetv_MNpV9WvVPSA,13915,Instructions of how to play chords on the violin are shown. woman,Instructions of how to play chords on the violin are shown.,woman,gold,shimmies along the machines.,is standing in a field playing drums with a bare rug lit up.,is standing in front of an arched sorting sign.,is in a room playing the violin.\n17260,anetv_MNpV9WvVPSA,13916,Woman is in a room playing the violin. woman,Woman is in a room playing the violin.,woman,gold,is showing up court knitting.,are sitting on a cemented playing drums and bongos.,plays an instrument in front of them.,is showing how to play chords on wooden violin.\n17261,lsmdc0030_The_Hustler-64760,5493,She seems amused by their encounter. He,She seems amused by their encounter.,He,gold,takes his drink and joins her at the booth.,smiles shyly over her uncle.,\"rises, comes out waving and hugs her.\",grabs a snake and locks it outside of the snowboard segment with the sister.\n17262,lsmdc0030_The_Hustler-64760,5492,\"As he looks around the bar he sees someone, alone at a back booth, sipping a highball. She\",\"As he looks around the bar he sees someone, alone at a back booth, sipping a highball.\",She,gold,reaches someone and spots the cash.,\"sits close to someone, looking for someone, smiling.\",\"comes on, followed by someone's mother.\",seems amused by their encounter.\n17263,anetv_dzR4voNDZ7g,2191,A person sets a can on the front of their canoe. A man,A person sets a can on the front of their canoe.,A man,gold,is rowing while sitting in the canoe.,runs a brush over a sink and sprays it on top of the bed.,behind a male begin to play the shoe and pet.,gets in the water then is getting to make a wetsuit is surfboard.\n17264,anetv_dzR4voNDZ7g,7386,\"A video then switches to a man navigating the river while drinking beers. Finally, the man\",A video then switches to a man navigating the river while drinking beers.,\"Finally, the man\",gold,hears the splash and talks more and come around the tv.,falls in the water and walks along the island smiling.,\"appears in the room, then people stand at the end.\",shows the view from hiking.\n17265,anetv_dzR4voNDZ7g,7385,A person canoes on a flat water. A video then,A person canoes on a flat water.,A video then,gold,shows various vehicles and ramps to the people in their cabin.,passes and excess up the side of the boat.,switches to a man navigating the river while drinking beers.,shows the people start skiing down a hill.\n17266,lsmdc1039_The_Queen-88054,13554,Someone looks out of the window and clinches her jaw. Someone,Someone looks out of the window and clinches her jaw.,Someone,gold,opens her eye.,casts his eyes down.,has guided him to a car.,takes her bride's hand and kisses him.\n17267,anetv_FMVECEaQ0Jo,18329,A group of people are walking on a suspended wooden bridge in a mountainous region. The group of people then,A group of people are walking on a suspended wooden bridge in a mountainous region.,The group of people then,gold,open their kayak and start towards the rapids.,seen tubing down the mountain in inflatable tubes.,jog through the wooded area.,begin paddling down the river together.\n17268,anetv_FMVECEaQ0Jo,1937,A man from the Micah tribe practices on running with his dog. He and others,A man from the Micah tribe practices on running with his dog.,He and others,gold,are teaching him to dance.,watch him straight for the show.,show several's vehicles on the field.,talks on and on for quite a bit of time.\n17269,anetv_FMVECEaQ0Jo,1938,He and others talks on and on for quite a bit of time. You,He and others talks on and on for quite a bit of time.,You,gold,are on a basketball court preparing to hit a ball.,get to see see about the people in the community who also run.,is seen passing the phone and shows people walking backwards.,catch up with the events n the city.\n17270,anetv_FMVECEaQ0Jo,18331,\"There's a man in a denim shirt and hat sitting in a curbside cafe with a book in his hand, talking about what's in the book. Black and white pictures of some tribal pictures\",\"There's a man in a denim shirt and hat sitting in a curbside cafe with a book in his hand, talking about what's in the book.\",Black and white pictures of some tribal pictures,gold,explain the original color of croquet.,are shown standing near a large tent.,are shown with white balloons.,are shown of themselves and people playing.\n17271,anetv_FMVECEaQ0Jo,18330,The group of people then jog through the wooded area. Then they,The group of people then jog through the wooded area.,Then they,gold,are seen walking in a large crowd wearing hats and colorful capes.,\"begin to struggle together, going down hills on the wall.\",continue to show the scary they should put at the bottom of the hill.,see the washes up on the boat running through the water before finally landing on the water and drinking water.\n17272,anetv_FMVECEaQ0Jo,18328,There are some cops in a city walking around with riffles on their shoulders and walkie talkies in their hand. A group of people,There are some cops in a city walking around with riffles on their shoulders and walkie talkies in their hand.,A group of people,gold,are walking on a suspended wooden bridge in a mountainous region.,are shoveling past rafters.,are pulling a paintball line lead by a small animal standing in the middle of a road.,to cuddling in sidewalk while people stand around them.\n17273,anetv_gh0GD6OvLHE,16064,A woman is seen sitting in the shower with her leg out. She,A woman is seen sitting in the shower with her leg out.,She,gold,shaves her legs and looks to the camera smiling.,leans against the wall and begins to play on the kitchen floor.,takes the weights and rubs it on the woman's shoulder.,sprays push lotion onto her body as well as continuously stroking the dog's hair and resumes speaking.\n17274,anetv_gh0GD6OvLHE,14136,A girl shaves her legs quickly in the shower. Someone,A girl shaves her legs quickly in the shower.,Someone,gold,rubs his hand with long razor and wipes the shoe off.,gets her and pushes her down.,drops it on the towel as the other group continue to dance.,walks to the side.\n17275,anetv_k7nuduqYOdQ,18813,A close up of a weight is shown. Several individuals,A close up of a weight is shown.,Several individuals,gold,are then shown riding stationary bikes on a sidewalk.,walk into frame and throwing leaves off their heads.,are shown lifting barbells with weights in various ways in a gym while other individuals watch or exercise in the background.,are seen running down the room all down off the snowy.\n17276,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61431,17940,\"Someone turns to someone who bows his head in homage. Someone, in his gondorian armour,\",Someone turns to someone who bows his head in homage.,\"Someone, in his gondorian armour,\",gold,stride down a staircase at an adjoining apartment.,stands by the fireball.,wrenches the passengers from his seat.,looks around at the devastation.\n17277,lsmdc0031_The_Lost_Weekend-65839,17269,\"With a last look at the room, he walks into the bathroom. Someone\",\"With a last look at the room, he walks into the bathroom.\",Someone,gold,\"enters the bathroom wearing his jeans, dressed in mourning.\",\"sits at his bedside, talking.\",\"stands and looks at himself in the mirror, the gun in his hand.\",turns to face the killer.\n17278,lsmdc0031_The_Lost_Weekend-65839,17268,\"Someone is seated at the desk. With a last look at the room, he\",Someone is seated at the desk.,\"With a last look at the room, he\",gold,goes quickly to the bureau.,stuffs a bookshelf onto the stretcher.,walks into the bathroom.,takes off his book.\n17279,lsmdc0031_The_Lost_Weekend-65839,17270,\"He notices the unbuttoned points of his collar and with a rueful smile at the funny timing of his urge for tidiness, buttons one. As he is buttoning the second, there\",\"He notices the unbuttoned points of his collar and with a rueful smile at the funny timing of his urge for tidiness, buttons one.\",\"As he is buttoning the second, there\",gold,is a sound from outside.,\"are two teams sitting on the beach to start his awakened down pulse, the other in english.\",is a man in a bikini who is shrugging.,'s someone sitting nearby with nothing but whimpering.\n17280,lsmdc0031_The_Lost_Weekend-65839,17266,\"He puts down the pen, gets up, stands the letter conspicuously on the desk, picks up the revolver, gets the cartridges from the drawer and loads the gun. As he has been out in the rain, his hair\",\"He puts down the pen, gets up, stands the letter conspicuously on the desk, picks up the revolver, gets the cartridges from the drawer and loads the gun.\",\"As he has been out in the rain, his hair\",gold,\"is grabbed, pushing him all the way.\",is still a little damp.,is covered in plastic.,\"blows out of the paper, showing the cops photo that has just returned.\"\n17281,lsmdc0031_The_Lost_Weekend-65839,17267,\"As he has been out in the rain, his hair is still a little damp. Someone\",\"As he has been out in the rain, his hair is still a little damp.\",Someone,gold,is even stronger than the present.,is the pain of the story.,is seated at the desk.,is the only one who practices the conversation.\n17282,anetv_M6sXLVNtTSA,7388,Another man hands the camels reigns to the man riding and the camel starts walking. The camel,Another man hands the camels reigns to the man riding and the camel starts walking.,The camel,gold,stands up and holds out the slender foliage and dog's head above the high screen.,is family in front of a fenced crops.,returns in a pretends to signal the camel.,turns it's head around and yells at the man riding him.\n17283,anetv_M6sXLVNtTSA,7386,One man is sitting on a camel. The man,One man is sitting on a camel.,The man,gold,is pulling several rock back from the camera.,explains the correct way to ride a camel.,throws the first onto his knees and over the counter.,picks up one of the dogs.\n17284,anetv_M6sXLVNtTSA,7387,The man explains the correct way to ride a camel. A man in the background,The man explains the correct way to ride a camel.,A man in the background,gold,goes on people carry equipment and household goods.,holds a video camera.,talks up the camel and pauses for a moment before offering another tire on the distance.,\"eats and shakes stumbles and walks forward, going through the garden of the machine to different rooms.\"\n17285,anetv_M6sXLVNtTSA,7385,\"A group of men, boys and camels are in a desert area. One man\",\"A group of men, boys and camels are in a desert area.\",One man,gold,is sitting on a camel.,sits cross a big stool in the middle in the snow over other rocks.,shovels snow from the driveway.,pulls a rope out from behind a parked car.\n17286,anetv_q4QPF-qNBTY,7924,Several girls are gathered in a gym. They,Several girls are gathered in a gym.,They,gold,are twirling and staring at each other.,are engaged in a game of jousting.,are engaged in a game of arm wrestling.,take turns running down the mat and doing flips over the beam.\n17287,anetv_q4QPF-qNBTY,7925,They take turns running down the mat and doing flips over the beam. They,They take turns running down the mat and doing flips over the beam.,They,gold,continue to grab and jump over the rope.,jump and run onto the mat.,get up as they part.,are each named as they run and flip.\n17288,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14056,\"Struggling to free himself, someone's grief turns to rage when he sees someone Lestrange's evil smile. She\",\"Struggling to free himself, someone's grief turns to rage when he sees someone Lestrange's evil smile.\",She,gold,stands dressed like traditional cat.,slips away quickly around a dark corner.,regain his strength and keeps firing his revolver at someone.,\"leaps from the only transport, but is blocked by the policeman.\"\n17289,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14043,\"Ahead of him, a scowling someone is restraining someone, his wand at her throat. Someone\",\"Ahead of him, a scowling someone is restraining someone, his wand at her throat.\",Someone,gold,looks around for the others.,sits on the edge of her bed and looks at someone.,\"resumes position, gazing out at the winter buildings.\",blasts some other stones towards the door and softly tries to open it.\n17290,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14057,She slips away quickly around a dark corner. Someone,She slips away quickly around a dark corner.,Someone,gold,constantly moves past more rats.,\"climbs onto the couch, propelling herself at a chair.\",breaks free from someone and races after her.,\"climbs up to her coming ford, driving and is seated about a moment later.\"\n17291,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14059,The spell stops her and she falls. Someone,The spell stops her and she falls.,Someone,gold,hands someone the letter.,opens her mouth and shakes someone's turbulent hand.,\"stands rooted, looking bathed and squinting in the sunshine.\",stands over her aiming his wand.\n17292,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14052,He taps his stick and someone is hurled away backwards. Someone,He taps his stick and someone is hurled away backwards.,Someone,gold,congratulates someone and disarms someone.,\"flips the writhing limbs around, then wraps a bloody arm around someone's head.\",follows her from behind.,runs the knife in someone's face.\n17293,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14061,Red light streams from someone's wand. The two powerful forces,Red light streams from someone's wand.,The two powerful forces,gold,thrust quickly around an enormous tower.,pull forward towards their victim.,meet like molten lava in a burst of flashing sparks and flame.,curl into a wider plume of water.\n17294,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14058,Someone breaks free from someone and races after her. He,Someone breaks free from someone and races after her.,He,gold,slows the tension to get further out her way.,catches up with her as she runs through the great hall of the ministry of magic.,pushes the search party toward a green grassy area.,\"walks along a platform, then climbs out of the ledge and hugs someone.\"\n17295,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14065,The pieces of glass are deflected and reduced to a fine sand. Someone,The pieces of glass are deflected and reduced to a fine sand.,Someone,gold,\"acknowledges the serve, prepares to launch the hammer into a cutting net.\",\"faces him, standing in front of someone to protect him.\",is a star hero throw from the ground where someone and someone put headphones.,shuts the trunk of a van's door.\n17296,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14064,The banner with the picture of someone is torn to shreds by flying shards of glass. He,The banner with the picture of someone is torn to shreds by flying shards of glass.,He,gold,\"knocks it off the board, splintering it to someone, then knocking him down.\",grabs a shot bag and rips it off.,\"sends the jagged pieces of broken glass hurling towards people, who produces a force field to protect them.\",bounces into the shape fixture under the ceiling.\n17297,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14068,He falls to the ground. His eyes,He falls to the ground.,His eyes,gold,hit the ground.,remain shut when it lands.,\"are dark - rimmed, red and staring.\",narrowing as he breathes heavily.\n17298,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14040,They raise their wands for protection as a group of black - cloaked figures swoops down. The People,They raise their wands for protection as a group of black - cloaked figures swoops down.,The People,gold,shield their backs to form a faint vapor light with no rats.,swirl around them trailing plumes of dense black smoke.,\"trade spins with another soldier, as the dragon leaps free and the kill.\",dispute themselves from behind.\n17299,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14060,Someone knocks someone's wand from his hand. Someone,Someone knocks someone's wand from his hand.,Someone,gold,stung lips crinkle widely.,appears out of a fireplace.,steps into a doorway and paces onward.,follows someone into sunglasses.\n17300,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14055,\"Distraught, someone tries to follow. Someone\",\"Distraught, someone tries to follow.\",Someone,gold,grabs him tightly and holds him back.,puts her lipstick on her forearm.,\"catches her, but the pearl is not missing.\",moves back to someone as he rejoins his staff.\n17301,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14049,The glass sphere grows dark. Someone,The glass sphere grows dark.,Someone,gold,\"stares, then glances across.\",shoots an arrow at someone.,turns and looks at someone.,holds it up in triumph.\n17302,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14041,Someone lies huddled on the rocky mound clutching the prophecy sphere. He,Someone lies huddled on the rocky mound clutching the prophecy sphere.,He,gold,embraces his and pulls away from a post frame by the water's edge.,ripples the fireball erupts in the strange.,gets cautiously to his feet.,looks about towards sir someone.\n17303,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14051,\"People swoop above their heads, trailing black smoke. He taps his stick and someone\",\"People swoop above their heads, trailing black smoke.\",He taps his stick and someone,gold,is hurled away backwards.,pumps a white left foot and the contemporary black man regards him sadly.,glides down the stairs.,props his mouth shut.\n17304,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14063,Someone draws a great wave of water from the pools surrounding the fountain and submerges someone. The water,Someone draws a great wave of water from the pools surrounding the fountain and submerges someone.,The water,gold,begins to ski along the edge.,forms a huge rolling ball with someone trapped inside.,cooler as the turbulent water careens down onto the main deck of the ship.,\"falls apart, revealing the people - clad men.\"\n17305,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14053,Someone congratulates someone and disarms someone. He,Someone congratulates someone and disarms someone.,He,gold,eyes the corner of his bangs that fall onto his landing.,gives an awkward nod with his thumb and then leaves.,sends him hurling backwards.,lifts it from a branch.\n17306,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14066,\"Someone faces him, standing in front of someone to protect him. Someone\",\"Someone faces him, standing in front of someone to protect him.\",Someone,gold,notices as he takes his father's twelve and stares his head through his sunglasses.,\"suddenly disappears in whirlwind of sand, which ruffles someone's white beard.\",comments in the morning past.,remain in the distance.\n17307,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14046,\"Someone looks around at his friends, helpless in the grip of the People. He\",\"Someone looks around at his friends, helpless in the grip of the People.\",He,gold,\"turns away from the loft, cutters in someone's hand, only slightly illuminated by the rain.\",looks back at someone 'outstretched hand.,\"whips off his helmet, all at once, and drives himself into his sprint.\",raises his lips in a welcoming gesture.\n17308,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14042,\"He gets cautiously to his feet. Ahead of him, a scowling someone\",He gets cautiously to his feet.,\"Ahead of him, a scowling someone\",gold,is slapping someone 'face.,\"is restraining someone, his wand at her throat.\",dashes through a thick pile of flyers.,drives a cart with him through a garden.\n17309,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14050,\"Shoulder - to - shoulder, people fight people in front of the stone archway. People\",\"Shoulder - to - shoulder, people fight people in front of the stone archway.\",People,gold,hold each other's gaze.,\"swoop above their heads, trailing black smoke.\",run to push a man out of the back on with the shield.,looks at someone's slosh.\n17310,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14067,\"Someone suddenly disappears in whirlwind of sand, which ruffles someone's white beard. A shiver\",\"Someone suddenly disappears in whirlwind of sand, which ruffles someone's white beard.\",A shiver,gold,spreads across the screen.,spills from the floor into the shot as someone looks away from the missing lifeboat.,runs through the sand on the floor at their feet.,raised someone high over the crowd other soldiers shoot.\n17311,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14044,Someone looks around for the others. Each of his friends,Someone looks around for the others.,Each of his friends,gold,checks a telephone in the way.,take cover beside what appear to be an prowler.,is held prisoner by a grim - faced someone.,walk through the hallway and into a vacant clearing.\n17312,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95308,14048,\"Someone is holding someone by the hair. With an evil smile, she\",Someone is holding someone by the hair.,\"With an evil smile, she\",gold,stands between the two women.,presses her wand to his throat.,moves backward past an array of pie - lined tables.,goes the hall casually.\n17313,anetv_KtUshVJ28us,2208,We then see the title screen. We,We then see the title screen.,We,gold,see two men sitting back and gesturing.,see the girl perform flips.,see a man braids a man.,see the intro screens.\n17314,anetv_KtUshVJ28us,2210,The girl flips on a trampoline. She,The girl flips on a trampoline.,She,gold,jumps from a pinata toward the pinata.,jumps and does a split in the air.,repeatedly jumps up and lands on a tree.,try to tie the rope.\n17315,anetv_KtUshVJ28us,2211,She jumps and does a split in the air. We,She jumps and does a split in the air.,We,gold,see a man unto a house lush background.,are moving around the parking lot.,\"finale, she falls on the next.\",see the bloopers where she falls and a title screen.\n17316,anetv_kSdWy3subNE,10191,He jumps on a diving board and does a back flip into the water. He,He jumps on a diving board and does a back flip into the water.,He,gold,continues to get up and wrestle to the floor.,skis down the street.,tries to do sit ups and keep jumping off of the board.,surfaces and gets out of the pool.\n17317,anetv_kSdWy3subNE,2340,A man in a speedo walks down a diving board. He,A man in a speedo walks down a diving board.,He,gold,falls over the water and lands on the ground.,continues to jump over and competitively to a far beam.,dives simultaneously through a turbulent water surface.,begins jumping up and down.\n17318,lsmdc3011_BLIND_DATING-654,1186,She drops her skirt by her feet revealing someone thigh highs. The therapist,She drops her skirt by her feet revealing someone thigh highs.,The therapist,gold,innocent someone with her ankles.,shakes her hands out.,throws a glass of milk and joins her.,turns and someone breaks out.\n17319,lsmdc3088_WHATS_YOUR_NUMBER-41933,3906,Now a door opens and someone steps inside a foyer. She,Now a door opens and someone steps inside a foyer.,She,gold,\"sits up in bed, watching.\",photographs the class in disgust.,\"removes the wrong shades, but someone punches him out.\",climbs a flight of stairs up to a tasteful party where an elegant blonde spots her.\n17320,lsmdc3088_WHATS_YOUR_NUMBER-41933,3905,\"She fidgets self - consciously, then takes a breath and trots across a driveway. Now a door opens and someone\",\"She fidgets self - consciously, then takes a breath and trots across a driveway.\",Now a door opens and someone,gold,steps up behind him.,walks through a mall.,steps inside a foyer.,glances away at the ballet dancer.\n17321,lsmdc3088_WHATS_YOUR_NUMBER-41933,3903,\"She steps out of the shower, obscured by steam. Now a taxi\",\"She steps out of the shower, obscured by steam.\",Now a taxi,gold,pulls up outside a low - ascending redhead in a bathing suit.,comes out of the bathroom as someone reaches after him.,pulls away revealing someone in a navy blue sheath dress.,has drawn a row in the courtyard.\n17322,lsmdc3088_WHATS_YOUR_NUMBER-41933,3898,\"She sets the magazine aside, then bites her lip and shifts her calculating gaze. She\",\"She sets the magazine aside, then bites her lip and shifts her calculating gaze.\",She,gold,touches him head tensely.,reaches into the box and pulls out a small notebook and pen.,\"allows a grin as she stubs off her cigarette, then adds another.\",cocks her head like a long piece of cake.\n17323,lsmdc3088_WHATS_YOUR_NUMBER-41933,3899,\"Glancing around, she opens it and heads a blank page with the words People I've Slept With.. Finding the elevator out of service, she\",\"Glancing around, she opens it and heads a blank page with the words People I've Slept With..\",\"Finding the elevator out of service, she\",gold,starts inside after all.,runs into the red cab.,follows the elevator over the hall and looks at it.,heads up the winding rectangular staircase.\n17324,lsmdc3088_WHATS_YOUR_NUMBER-41933,3902,Now she showers with the bathroom door open. She,Now she showers with the bathroom door open.,She,gold,collapses down on the floor and manages to remove the attachment off both floor.,\"lifts the sash to reveal a pair of drums, reading them.\",\"calls after them, then calls up to the window again.\",\"steps out of the shower, obscured by steam.\"\n17325,lsmdc3088_WHATS_YOUR_NUMBER-41933,3897,\"Turning away, someone defensively screws her mouth to one side. She\",\"Turning away, someone defensively screws her mouth to one side.\",She,gold,takes a seat and plants her arms over her partner's body.,\"sets the magazine aside, then bites her lip and shifts her calculating gaze.\",\"opens his eye and extracts, then blinks groggily.\",shoulders a throng of text.\n17326,lsmdc3088_WHATS_YOUR_NUMBER-41933,3900,\"Now a wall in her apartment shows her shadow as she undresses. Wearing only panties, she\",Now a wall in her apartment shows her shadow as she undresses.,\"Wearing only panties, she\",gold,crosses the studio down stairs.,creeps out after her puts her jacket hungrily over her face.,\"throws off her panties, pointing up onto a hem of her skirt.\",scampers across our view.\n17327,lsmdc3088_WHATS_YOUR_NUMBER-41933,3904,Now a taxi pulls away revealing someone in a Navy Blue sheath dress. She,Now a taxi pulls away revealing someone in a Navy Blue sheath dress.,She,gold,\"fidgets self - consciously, then takes a breath and trots across a driveway.\",falls to her knees.,walks toward the stage.,eyes a full - length mirror.\n17328,lsmdc3088_WHATS_YOUR_NUMBER-41933,3901,\"Wearing only panties, she scampers across our view. Now she\",\"Wearing only panties, she scampers across our view.\",Now she,gold,sees someone leaning into his.,peeks up at someone 'hairy features.,peers down at the anchor's key angle.,showers with the bathroom door open.\n17329,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95708,3819,Someone steps up on to the platform. He sits on the stool and the hat,Someone steps up on to the platform.,He sits on the stool and the hat,gold,mounts off his feet.,falls off its wheels.,lowers himself to his feet.,is placed on his head.\n17330,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95708,3817,The sorting hat is placed on his head. It,The sorting hat is placed on his head.,It,gold,takes his place between arms and crossed arms from the table.,screws the creatures innocent.,\"has thin, dark hair, smiling salami over his shoulders.\",recognizes him at once.\n17331,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95708,3818,Someone sighs with relief and someone smiles. Someone,Someone sighs with relief and someone smiles.,Someone,gold,presses his ear against someone's neck.,leans forward with interest.,responds with a bemused smile as he leaves.,lifts her head towards the door.\n17332,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95708,3816,A man with black hair is sitting next to someone. Someone,A man with black hair is sitting next to someone.,Someone,gold,takes energy and begins to solve a rubik's cube.,winces and touches his scar.,does a short bob and goes to the window and turn the camera.,changes from with a faint grin on his face.\n17333,anetv_12IrPzohRSw,17747,The camera pans left and we see the driving court. A person in purple,The camera pans left and we see the driving court.,A person in purple,gold,drives past the camera.,goes down a hill of falls.,moves the pin from the jump.,is shaving their face and hair.\n17334,anetv_12IrPzohRSw,17748,A person in purple drives past the camera. A girl,A person in purple drives past the camera.,A girl,gold,tosses a dog in a bag of dirt.,runs out of the intertube looking at the camera.,smiles at the camera as she drives past.,is riding a scooter in the air.\n17335,lsmdc3076_THE_SOCIAL_NETWORK-35177,248,Someone looks over at it then grabs her computer. He,Someone looks over at it then grabs her computer.,He,gold,puts on his jacket.,\"friend holds up a hand, accepting it.\",\"runs to the promoter, waiting for her to follow her.\",\"puts the newspaper down, goes down the road to frustrated.\"\n17336,lsmdc3076_THE_SOCIAL_NETWORK-35177,249,\"He puts on his jacket. Outside, he\",He puts on his jacket.,\"Outside, he\",gold,finds someone's face parked outside the church.,gazes out the window.,hurries upstairs and jogs across a shadowy bridge.,\"marches inside, covering the damage from his hand.\"\n17337,anetv_NB4IBjUmrcI,10439,\"A man is indoors, wearing boxing gloves. He\",\"A man is indoors, wearing boxing gloves.\",He,gold,\"is kickboxing with a large punching bag, kicking and punching it over and over.\",gathers up some rubik's cubes together.,stands on stage his legs and puts his feet down.,is being slapped on a yellow machine.\n17338,anetv_zHXpo62bCaQ,11548,\"A woman with blonde long hair is carrying a white hula hoops, the hula hoops has rainbow colored tape on parts of it. The girl walked towards the lake, she\",\"A woman with blonde long hair is carrying a white hula hoops, the hula hoops has rainbow colored tape on parts of it.\",\"The girl walked towards the lake, she\",gold,was shot again.,started dancing with her arms up in the air.,is walking barefoot on the grass.,kisses the ground with her spin.\n17339,anetv_zHXpo62bCaQ,11550,\"The camera turns towards her face, then she started swirling the hula hoops and put it on her. The girl\",\"The camera turns towards her face, then she started swirling the hula hoops and put it on her.\",The girl,gold,\"started to do hula hoops tricks, first on her waist then up, then to her legs and arms.\",shrugs then folds her hands and twirling herself off as well.,started using a bow cord to swing the racquet over and over again.,\"falls off of a line, then she does standing forward, and she begins swimming and looking to the camera.\"\n17340,anetv_zHXpo62bCaQ,11549,\"The girl walked towards the lake, she is walking barefoot on the grass. The camera turns towards her face, then she\",\"The girl walked towards the lake, she is walking barefoot on the grass.\",\"The camera turns towards her face, then she\",gold,starts to work away.,started swirling the hula hoops and put it on her.,laughs and rubs her back and is away with the man again.,grabs the brush followed and pours both more leaves on it.\n17341,anetv_JZDTcGPKw2w,2534,Woma is riding a horse in a barn and pictures of people riding horses. woman,Woma is riding a horse in a barn and pictures of people riding horses.,woman,gold,runs and jumps onto another horse.,is standing on the horse holding a line and walking.,start after the bull.,is riding a horse in a riding track.\n17342,anetv_5nOc03oiFvk,11248,A camera pans around several shots of a mountain and shows people strapping rope onto themselves. A couple people,A camera pans around several shots of a mountain and shows people strapping rope onto themselves.,A couple people,gold,start up back together and share a small stretch of skis.,are shown speaking to one another and transitions into several clips of people falling off the roof and bikes scattered over to bin off.,stand into rafts in the river and begin playing a game of tug of war with one another.,are then seen climbing up large rocks while another waits at the bottom.\n17343,anetv_5nOc03oiFvk,11249,A couple people are then seen climbing up large rocks while another waits at the bottom. They,A couple people are then seen climbing up large rocks while another waits at the bottom.,They,gold,show more areas of the nearby location as well as more people climbing up the rock and riding around the area.,continue jumping up and down and moving back and fourth across the platform.,put the back of the bike in place.,take off their scuba gear and ends with them moving their arms all around and looking up at the camera.\n17344,anetv_5nOc03oiFvk,12691,A boy on a bicycle prepares to go rock climbing. The boy,A boy on a bicycle prepares to go rock climbing.,The boy,gold,starts climbing the climbing wall.,jumps off the monkey bars and misses the swing with both arms in the air.,sets up his climbing gear and proceeds to climb a rock mountain.,moves backward through a large concrete pole.\n17345,anetv_5nOc03oiFvk,12692,The boy sets up his climbing gear and proceeds to climb a rock mountain. The boy,The boy sets up his climbing gear and proceeds to climb a rock mountain.,The boy,gold,continues riding and ends with running down the hill.,picks up several sticks and climbs on his feet as the group climb up and down.,is climbing shirtless while secured by a climbing rope.,throws the rock up and tries climbing the climbing wall.\n17346,anetv_5nOc03oiFvk,12693,The boy is climbing shirtless while secured by a climbing rope. The boy,The boy is climbing shirtless while secured by a climbing rope.,The boy,gold,dismounts from a rope skipping and tying the other jumps again.,kneels down onto the ladder and stands on.,repels down the side of the cliff secured by a rope and pulleys.,jumps by closing doors while fixing a rock.\n17347,anetv_rrXdhD3WDy4,14068,The man screws on hardware to the end of the piercing. The woman wearing a costume,The man screws on hardware to the end of the piercing.,The woman wearing a costume,gold,sits up and shows her new piercings.,is shown in a fine suit.,sits down and begins to explain that he works while talking.,is shown the camera to a front view of the studio while they are demonstrating how to use the products.\n17348,anetv_rrXdhD3WDy4,14067,A piercing artist inserts a bar into a woman's nipple. The man,A piercing artist inserts a bar into a woman's nipple.,The man,gold,pierces her nose and holds her neck.,screws on hardware to the end of the piercing.,puts excess jewelry into her eyes and smiles.,falls out from her wrist position.\n17349,anetv_mvl6wff267o,8666,Two girls check their wrists while one speaks to the camera and several shots of a wristband are shown. More people,Two girls check their wrists while one speaks to the camera and several shots of a wristband are shown.,More people,gold,are shown speaking as well as closeups of pictures of women nude and others playing in the arena.,are seen playing spectators on the field.,stand up and wait when a woman walks up.,are interviewed while wearing the wrist bands and show how they work while many run around.\n17350,anetv_c6ie4KwFnAs,14222,There is also another game of soccer between a team dressed in red and a team dressed inn blue. The first set of teams,There is also another game of soccer between a team dressed in red and a team dressed inn blue.,The first set of teams,gold,continue playing the game as the solid blue team scores a goal.,comes running making goals as every players run toward the ball until final score's win.,are interviewed by one of the people who were organizing the ball.,hits the ball around the goal.\n17351,anetv_c6ie4KwFnAs,14220,There are several spectators seated on the side watching the players play soccer. The goalie,There are several spectators seated on the side watching the players play soccer.,The goalie,gold,is n't talking to the man or helix sport.,\"just greeted the quaffle for goal, sending it across the goal.\",scores more shots of the game with a table and two players.,dressed in yellow tries to stop the opponent's ball.\n17352,anetv_c6ie4KwFnAs,14219,There is a team of boys dressed in blue uniforms playing soccer against another team of boys dressed in blue striped uniforms in an indoor gym. There,There is a team of boys dressed in blue uniforms playing soccer against another team of boys dressed in blue striped uniforms in an indoor gym.,There,gold,are little swimmers next to each referee and pull the ball to get it into the goal.,young people are standing in the middle and hitting out a ball while they hit the ball.,are several spectators seated on the side watching the players play soccer.,\", the outdoor field jersey for a force take and the game begins by in the back of the game.\"\n17353,anetv_c6ie4KwFnAs,14221,The goalie dressed in yellow tries to stop the opponent's ball. There,The goalie dressed in yellow tries to stop the opponent's ball.,There,gold,feels its way to one of the flow.,are several lanes without the person.,is also another game of soccer between a team dressed in red and a team dressed inn blue.,are lines on the screen.\n17354,anetv_ku65ME0vW8s,7363,The boy swings off the monkey bars and lands. Boy,The boy swings off the monkey bars and lands.,Boy,gold,\"stretches his legs above s, and yanks him backwards.\",stands on the swings in front of the bars.,weaves along a set of gold bars and then jumps inside of nuts.,climbs the stairs with a smile.\n17355,anetv_ku65ME0vW8s,981,A boy is crossing the monkey bars. He,A boy is crossing the monkey bars.,He,gold,runs back and forth against the monkey bars.,does several flips and jumps back to swing.,starts climbing over a bit something and getting up starts.,gets to the end and goes back the other way.\n17356,anetv_ku65ME0vW8s,7361,A boy stand and claps hand. A boy,A boy stand and claps hand.,A boy,gold,jumps to grab monkey bars.,touches his stomach for the time.,throws a girl long jump at an outdoor bowling event.,competes on a cliff with bounce lapels.\n17357,anetv_ku65ME0vW8s,7362,A boy swings on the monkey bars. The boy,A boy swings on the monkey bars.,The boy,gold,jumps on the bars with a big toy.,swings off the monkey bars and lands.,runs around to the monkey bars while the boy go back and fourth.,does multiple back flips.\n17358,anetv_ku65ME0vW8s,982,He gets to the end and goes back the other way. He,He gets to the end and goes back the other way.,He,gold,walks forward and onto the bench.,\"flees at the bell, arms folded.\",goes to's side and stands in front of her.,lands on the black playground and walks up the stairs.\n17359,anetv_Th0SMArnWiY,7736,We see a laughing man holding a surfboard. A lady,We see a laughing man holding a surfboard.,A lady,gold,crashes in the rocks.,performs a tight hula hooping herself.,opens the car door.,throws a hand sign to the camera.\n17360,anetv_Th0SMArnWiY,7733,Two men fall off their bikes. We,Two men fall off their bikes.,We,gold,see a man riding a poster on top.,see the races start high on a platform.,see them in their bikes and hold hands.,see a guy push a lever on the line.\n17361,anetv_Th0SMArnWiY,7737,A lady throws a hand sign to the camera. We,A lady throws a hand sign to the camera.,We,gold,see aerial shots of the fields.,see the boy go on his bike.,see the girl spin to shuffle in the grass.,see a man preparing for a demonstration.\n17362,anetv_Th0SMArnWiY,7735,A man holds a surfboard and a man carries a bike up steps. We,A man holds a surfboard and a man carries a bike up steps.,We,gold,see the man on the sports boat laughing.,approach the men in a lift.,see a laughing man holding a surfboard.,glide down the hill.\n17363,anetv_Th0SMArnWiY,7732,We see bmx racers on the field and in various locations and riding their bikes. Two men,We see bmx racers on the field and in various locations and riding their bikes.,Two men,gold,fall off their bikes.,sit in bleachers on the right side of the vault.,jump from a rooftop with two teens standing on a street followed by them.,shake hands and finish and then get in behind the car.\n17364,anetv_Th0SMArnWiY,7734,We see the races start high on a platform. A man holds a surfboard and a man,We see the races start high on a platform.,A man holds a surfboard and a man,gold,carries a bike up steps.,jumps into it.,in a costume paddle into the river that are pulled by it.,forces the vehicle slide down.\n17365,anetv_sYAGVE3luRo,609,They start marching in a circle in a room. A person holding a baton,They start marching in a circle in a room.,A person holding a baton,gold,stands up with her hands behind her head.,is sitting next to them.,runs in front of the spectators watching.,stands in front of the band.\n17366,anetv_sYAGVE3luRo,608,People are playing instruments marching down a street. They,People are playing instruments marching down a street.,They,gold,are playing a game of tug and war.,start marching in a circle in a room.,continue on their knees going with their sticks.,sit down on a couch and get people lining up.\n17367,anetv_ICM-GjDa9QY,16733,\"After, the young man cleans the wet screen with a cloth. The young man\",\"After, the young man cleans the wet screen with a cloth.\",The young man,gold,\"began falling and clean the snow, then wheels the snow all over the smiling car.\",compares a dirt screen with the clean one and gives a thump up.,removes the shoe spray the dressing.,puts the middle section near a curve and uses a key to put it all into his bags.\n17368,anetv_ICM-GjDa9QY,16732,\"A young man puts detergent in a blue bucket, then shows and explains how to clean a screen windows using a squeegee. After, the young man\",\"A young man puts detergent in a blue bucket, then shows and explains how to clean a screen windows using a squeegee.\",\"After, the young man\",gold,continues cleaning the bathroom and shows the proper placement.,continue to talk as the young man wakes.,cleans the wet screen with a cloth.,continues applying the top of its ski.\n17369,lsmdc3015_CHARLIE_ST_CLOUD-861,17582,\"The vessel's lowered sails rest loosely around the boom, their folds draped over the cabin's roof. Someone\",\"The vessel's lowered sails rest loosely around the boom, their folds draped over the cabin's roof.\",Someone,gold,\"sweeps his gaze up at taut vertical line, then gives it a light karate chop.\",moves forward and kisses his lifted hand toward the glider.,is holding a brick as he races to his car.,turns on a brass crucifix.\n17370,lsmdc3015_CHARLIE_ST_CLOUD-861,17578,\"As he pulls his jacket tight around himself, his gaze freezes and he stares wistfully out at the water. A lamp at the dock's railing\",\"As he pulls his jacket tight around himself, his gaze freezes and he stares wistfully out at the water.\",A lamp at the dock's railing,gold,shows him gradually falling along.,opens as a wave bounces off of it's island.,finally jostles the view.,illuminates his lonesome figure.\n17371,lsmdc3015_CHARLIE_ST_CLOUD-861,17585,He leans back and tugs on the line. He,He leans back and tugs on the line.,He,gold,remembers holding a line on his own boat.,has the whip under his arm.,goes to the other side of his desk.,hovering at a plane that uses a coat to fix a narrow mountainside.\n17372,lsmdc3015_CHARLIE_ST_CLOUD-861,17580,\"Now, someone cautiously grabs a suspended safety wire running along the side of someone's sloop. He\",\"Now, someone cautiously grabs a suspended safety wire running along the side of someone's sloop.\",He,gold,head down the tunnel as someone fell onto the sand.,slides his hand across it as he walks the length of the deck.,pushes it through its beak.,gets off the rope and puts it on his lawn.\n17373,lsmdc3015_CHARLIE_ST_CLOUD-861,17581,He slides his hand across it as he walks the length of the deck. The vessel's lowered sails,He slides his hand across it as he walks the length of the deck.,The vessel's lowered sails,gold,low over the heart of the ocean.,\"rest loosely around the boom, their folds draped over the cabin's roof.\",yards in the mountains of light.,a bow at the head of the canvas.\n17374,lsmdc3015_CHARLIE_ST_CLOUD-861,17576,\"Outside, someone heads on to the dock with his bag. He\",\"Outside, someone heads on to the dock with his bag.\",He,gold,prints in someone's screen.,whips a flap on a closet and chucks the key into the trash.,takes the ship's bench and climbs a stairwell.,\"glances over his shoulder at some people leaving the tavern, then pauses and examines his right hand.\"\n17375,lsmdc3015_CHARLIE_ST_CLOUD-861,17587,She smirks at him as she pulls the crank off a winch. She,She smirks at him as she pulls the crank off a winch.,She,gold,climbs up onto her deck and looks down at someone.,floats pleasantly from the fan.,walks back to her office where someone sits.,bites the plank of the cornbread.\n17376,lsmdc3015_CHARLIE_ST_CLOUD-861,17583,\"Someone sweeps his gaze up at taut vertical line, then gives it a light karate chop. Grabbing onto it, he\",\"Someone sweeps his gaze up at taut vertical line, then gives it a light karate chop.\",\"Grabbing onto it, he\",gold,puts it on his boulder.,\"holds someone against the wall railing for a moment, then disarms it with a sneer.\",strikes the stone completely in the crop.,jumps up onto the edge of the deck.\n17377,lsmdc3015_CHARLIE_ST_CLOUD-861,17579,\"A lamp at the dock's railing illuminates his lonesome figure. Now, someone\",A lamp at the dock's railing illuminates his lonesome figure.,\"Now, someone\",gold,cautiously grabs a suspended safety wire running along the side of someone's sloop.,leaves the clapboard mansion.,climbs onto the canvas.,is lying on the porch.\n17378,lsmdc3073_THE_GUILT_TRIP-34716,16589,\"Someone scowls and closes his eyes. The next morning, someone\",Someone scowls and closes his eyes.,\"The next morning, someone\",gold,stands on her bed holding her arms closed.,wakes up and stretches his arms.,sits on a concrete crate.,runs across the graveyard with someone.\n17379,lsmdc3073_THE_GUILT_TRIP-34716,16586,They both settle into their twin beds and someone turns out the light. She then,They both settle into their twin beds and someone turns out the light.,She then,gold,reaches for the bedside table and picks up a small packet.,bows her head with her hand and lays her back on the keyboard.,poses for a taxi now.,takes a short supply of jeans and a roll of pants and tucks them under the jeans.\n17380,lsmdc3073_THE_GUILT_TRIP-34716,16590,\"The next morning, someone wakes up and stretches his arms. Someone\",\"The next morning, someone wakes up and stretches his arms.\",Someone,gold,\"spreads on his face as he steps past, then looks at someone with a feeble beat.\",comes to the floor where someone is sleeping.,\"blinks, then stares up at the ceiling.\",slows to a stop in his tracks.\n17381,lsmdc3073_THE_GUILT_TRIP-34716,16587,She then reaches for the bedside table and picks up a small packet. Someone,She then reaches for the bedside table and picks up a small packet.,Someone,gold,picks with a pad and drops it onto the sheet.,\"looks at it, but nothing wrathfully.\",\"touches the trigger as the right arm extends her arm, someone pulls away.\",looks over at his mother.\n17382,lsmdc3073_THE_GUILT_TRIP-34716,16588,Someone looks over at his mother. Someone,Someone looks over at his mother.,Someone,gold,\"heads inside, heading for the door.\",scowls and closes his eyes.,arrives with a high - horn stonewall and smothers himself some more.,\"steps forward, then walks off.\"\n17383,anetv_QJmoA3byOzo,5967,\"The camera zooms out to show the man spraying the car with soap. The camera zooms in again to show the soap running down the back of the car, then the camera\",The camera zooms out to show the man spraying the car with soap.,\"The camera zooms in again to show the soap running down the back of the car, then the camera\",gold,moves to show the left side of the car.,shows the cameraman's movements.,pans over to the camera.,zooms in and down on a blue board.\n17384,anetv_QJmoA3byOzo,5966,The camera zooms in to show the car's front right wheel. The camera,The camera zooms in to show the car's front right wheel.,The camera,gold,is out with the closing screens showing the action.,zooms out to show the man spraying the car with soap.,watches through the open window.,walks back to the woman that you can see that someone works on the elliptical machine.\n17385,anetv_QJmoA3byOzo,5968,\"The camera zooms in again to show the soap running down the back of the car, then the camera moves to show the left side of the car. Then two men\",\"The camera zooms in again to show the soap running down the back of the car, then the camera moves to show the left side of the car.\",Then two men,gold,follow a woman kneeling laying on shaving their legs together or getting them clean.,spray water on the car to wash the soap off.,sled down the street and get in two other skis.,are shown getting it off packed and water staining the bottom of the sink.\n17386,lsmdc0031_The_Lost_Weekend-65267,12237,\"Someone freezes, his eyes turning towards the door, horrified. He\",\"Someone freezes, his eyes turning towards the door, horrified.\",He,gold,\"rises slowly from the couch, takes a few steps towards the entrance door.\",\"gazes across a nearby house, then gazes at his table.\",punches two - one.,\"takes the diary, sets it in the pail of the soggy, then turns towards his truck.\"\n17387,lsmdc0031_The_Lost_Weekend-65267,12210,\"Someone, sensing something amiss, looks from one brother to the other. Someone\",\"Someone, sensing something amiss, looks from one brother to the other.\",Someone,gold,is behind the hag who lunges at him.,\"he looks up from the plate of minions, someone stand in front of him, resting his head on her hand.\",\"lets someone go, staring at someone, panic in his eyes.\",\"looks up at his daughter, who gazes after him uncertainly, blinking.\"\n17388,lsmdc0031_The_Lost_Weekend-65267,12226,\"It is narrow and simple. A skylight, somewhat obscured by dirt and dust,\",It is narrow and simple.,\"A skylight, somewhat obscured by dirt and dust,\",gold,looks down the chimney with someone.,lights the fourth floor back.,begins to move up the staircase.,\"pumped up, racing up the driveway to someone's house.\"\n17389,lsmdc0031_The_Lost_Weekend-65267,12223,\"Someone stands, hat in hand, holding the door open. He\",\"Someone stands, hat in hand, holding the door open.\",He,gold,\"goes out, shutting the door behind him.\",stands poised and approaches his companions.,\"calls back, pointing intensely at someone.\",\", the handsome, white - haired someone.\"\n17390,lsmdc0031_The_Lost_Weekend-65267,12228,They descend a few steps. Someone,They descend a few steps.,Someone,gold,\"stares at the ceiling, then looks at a mom.\",stares at the tall funnels behind.,takes her arm quickly.,ducks behind the locked door as they destroy the bomb.\n17391,lsmdc0031_The_Lost_Weekend-65267,12212,\"Someone, the bottle in his hand, goes through the living room toward the kitchenette. Someone\",\"Someone, the bottle in his hand, goes through the living room toward the kitchenette.\",Someone,gold,\"turns to face, then in the pan, revealing a white man, standing through the doorway.\",are gathered at a close - up spot which prepares to take some splashing water.,\"rummages into the freezer case, pours out the contents, rinsing the kitchen.\",\"looks after him, then follows him, a stubborn smile on his lips.\"\n17392,lsmdc0031_The_Lost_Weekend-65267,12218,\"The bottle emptied, someone puts it in the sink. She\",\"The bottle emptied, someone puts it in the sink.\",She,gold,\"kisses him on the mouth, a woman hopelessly in love.\",\"turns, climbs back to the enclosure, then slips another arrow into a hole.\",\"looks off, someone nods at him and then turns to him.\",\"leans in, shakes his head, then gives him a cold look.\"\n17393,lsmdc0031_The_Lost_Weekend-65267,12225,\"Someone steps quickly to the door, presses his ear against it to hear what the two are saying outside. It\",\"Someone steps quickly to the door, presses his ear against it to hear what the two are saying outside.\",It,gold,is a icon being heard as he finishes for drinks.,turns her gaze back to him and glares at her.,is narrow and simple.,covers it and wraps the chain around his neck.\n17394,lsmdc0031_The_Lost_Weekend-65267,12214,Someone has stepped to the sink. He,Someone has stepped to the sink.,He,gold,\"opens the bottle, turns it upside down and lets the whiskey run out.\",grabs her and grabs her baby.,\"starts for the door, holding the food back for him.\",brings him a tray of coffee.\n17395,lsmdc0031_The_Lost_Weekend-65267,12233,\"Someone comes running in, goes to the couch, pulls it away from the wall, throws himself on his belly on the couch and reaches under the side of it which was towards the wall. His hand\",\"Someone comes running in, goes to the couch, pulls it away from the wall, throws himself on his belly on the couch and reaches under the side of it which was towards the wall.\",His hand,gold,sags to eight pins.,explores among the springs.,\"remains before someone, his eyes wide.\",\"is on his arms, and again is pale and rocking.\"\n17396,lsmdc0031_The_Lost_Weekend-65267,12216,\"Someone trails after them, acutely embarrassed. People\",\"Someone trails after them, acutely embarrassed.\",People,gold,\"begin stunned, then turns and heads off.\",continue to slow dance and hold each other in and dance for the wavy.,run down a plain family.,come to the door from the living room and stand watching.\n17397,lsmdc0031_The_Lost_Weekend-65267,12227,\"A skylight, somewhat obscured by dirt and dust, lights the fourth floor back. They\",\"A skylight, somewhat obscured by dirt and dust, lights the fourth floor back.\",They,gold,look down at someone's grave.,rides the citizens upon a sunny field.,look at goblin's face and knocks on the apartment.,descend a few steps.\n17398,lsmdc0031_The_Lost_Weekend-65267,12209,\"He leans from the window. Someone, sensing something amiss,\",He leans from the window.,\"Someone, sensing something amiss,\",gold,looks from one brother to the other.,holds his tallest out.,\"stands up and looks at him, then studies the painting and then opens it.\",turns to someone and sniffs the steel.\n17399,lsmdc0031_The_Lost_Weekend-65267,12230,They go on down the stairs. Someone,They go on down the stairs.,Someone,gold,moves towards the banister and beads the door with both hands.,sits at a table with someone's cousin.,\"stands at the door, panic in his face.\",stands up and trailers himself.\n17400,lsmdc0031_The_Lost_Weekend-65267,12232,\"Someone dashes in, takes a nail file, kneels beside the grille of a register in the side wall, pries it out with the file, looks inside, puts his hand in. He\",\"Someone dashes in, takes a nail file, kneels beside the grille of a register in the side wall, pries it out with the file, looks inside, puts his hand in.\",He,gold,\"looks at the five shelves, then finds a full d card.\",sees his note once more.,\"looks at the hole wide - eyed, pushes back the grille and runs out.\",tries to travel down the page.\n17401,lsmdc0031_The_Lost_Weekend-65267,12224,\"He goes out, shutting the door behind him. Someone\",\"He goes out, shutting the door behind him.\",Someone,gold,drops the salesman's hand on one of the peanuts.,glances up in the bath tub doing sit - ups.,\"steps quickly to the door, presses his ear against it to hear what the two are saying outside.\",\"follows the sound of someone to the door, which is been on one side of the wharf.\"\n17402,lsmdc0031_The_Lost_Weekend-65267,12236,\"It opens as far as the chain will allow, stops with a sharp bite of metal on wood. Someone\",\"It opens as far as the chain will allow, stops with a sharp bite of metal on wood.\",Someone,gold,\", someone joyfully move in.\",looks a little more than he can.,takes large chunks of root to the glass.,\"freezes, his eyes turning towards the door, horrified.\"\n17403,lsmdc0031_The_Lost_Weekend-65267,12222,\"Someone comes out quickly and taking a handkerchief from her bag, hurries past someone into the hall. Someone\",\"Someone comes out quickly and taking a handkerchief from her bag, hurries past someone into the hall.\",Someone,gold,\"watches through the window, leaning through a glass window, then lowers someone's gaze.\",\"stands, hat in hand, holding the door open.\",\"takes the ladder and handles it to the refrigerator, then sees her holding the box.\",\"leans up over her, as he at the center's wrist.\"\n17404,lsmdc0031_The_Lost_Weekend-65267,12234,His face is covered with sweat. He,His face is covered with sweat.,He,gold,faces the fence for a moment.,takes out his handkerchief and wipes his face.,is pale and pale.,approaches someone who sits motionless with his hands in the air.\n17405,lsmdc0031_The_Lost_Weekend-65267,12217,\"Someone has something of the feeling of a man watching the execution of a very good friend, but he senses someone's eyes upon him and preserves his nonchalant expression. The bottle emptied, someone\",\"Someone has something of the feeling of a man watching the execution of a very good friend, but he senses someone's eyes upon him and preserves his nonchalant expression.\",\"The bottle emptied, someone\",gold,\"is sharpening his climbed, thrower.\",puts it in the sink.,shoves someone out.,opens the door for someone.\n17406,lsmdc0031_The_Lost_Weekend-65267,12215,\"He opens the bottle, turns it upside down and lets the whiskey run out. Someone\",\"He opens the bottle, turns it upside down and lets the whiskey run out.\",Someone,gold,reaches him with all his might.,shakes the head of someone and goes to someone.,\"trails after them, acutely embarrassed.\",hit the floor while looking into her bag.\n17407,lsmdc0031_The_Lost_Weekend-65267,12231,\"Someone stands at the door, panic in his face. Has his brother\",\"Someone stands at the door, panic in his face.\",Has his brother,gold,just as he speaks.,discovered the other two bottles?,taken by his brother.,\"down onto the floor, someone shakes his head, someone comes face to face with the man.\"\n17408,lsmdc0031_The_Lost_Weekend-65267,12220,\"Then, so that he won't see her moist eyes, she turns and hurries into the entrance hall. Someone\",\"Then, so that he won't see her moist eyes, she turns and hurries into the entrance hall.\",Someone,gold,\"speaks up and startles him, goes over to her laptop, and goes in, takes baskets and sets it down.\",opens the door and sees that the floor is ajar.,\"turns toward someone, who has followed someone to the entrance hall.\",approaches someone's v8.\n17409,lsmdc0031_The_Lost_Weekend-65267,12219,\"She turns to go, but someone holds her back. Then, so that he won't see her moist eyes, she\",\"She turns to go, but someone holds her back.\",\"Then, so that he won't see her moist eyes, she\",gold,\"reaches out, points at the flying photo.\",turns and hurries into the entrance hall.,lays her head against his.,\"scrambles towards the vehicle, except for the the cross and starts to lift someone out.\"\n17410,lsmdc0031_The_Lost_Weekend-65267,12211,\"Someone has twisted the string off the bottle. Someone, the bottle in his hand,\",Someone has twisted the string off the bottle.,\"Someone, the bottle in his hand,\",gold,goes through the living room toward the kitchenette.,pushes it away and gazes down at it hopelessly.,\"slashes someone, passes him.\",looks down at someone 'and runs her finger along the wood.\n17411,lsmdc0031_The_Lost_Weekend-65267,12208,Someone flips the cigarette into the garden and is about to turn back into the room when his eyes fall on the cleat and the string. He,Someone flips the cigarette into the garden and is about to turn back into the room when his eyes fall on the cleat and the string.,He,gold,nods the contents into a glass filled with ginger.,walks in the sunshine to the valet.,leans from the window.,pulls him out of a room and next to him in a ashtray beside him.\n17412,lsmdc0031_The_Lost_Weekend-65267,12229,Someone takes her arm quickly. They,Someone takes her arm quickly.,They,gold,pull the handcuffs as the next.,go on down the stairs.,stand behind him and share a passionate kiss.,slap each other again.\n17413,anetv_h-_dzZ3cCfc,18871,The athletes prepare themselves for the match and are shown playing out on the field. The men,The athletes prepare themselves for the match and are shown playing out on the field.,The men,gold,try his turn and move across the pool.,cheer when they score a goal and sit on the bench after being tired.,follow after the other and they continue to discuss as people watch their movements.,laugh and hug each other and hug each other.\n17414,anetv_h-_dzZ3cCfc,18870,Various players are shown one on one with several shots of stadium and cities are shown. The athletes,Various players are shown one on one with several shots of stadium and cities are shown.,The athletes,gold,bounce around a base and float high in the air firework which is on the screen receiving an advertisement for warming high.,prepare themselves for the match and are shown playing out on the field.,move around lanes bumping and smiling around with one another as well as performing a fooseball ball.,perform some same tricks and putting and partying and getting human.\n17415,lsmdc3047_LIFE_OF_PI-21961,16618,The magnificent tiger stops a foot away. His ears,The magnificent tiger stops a foot away.,His ears,gold,pop into the tiger's mouth.,thrash as he focuses on his boards.,point backward as he extends his nose to the meat.,disintegrate into cloud and remainder of the storm.\n17416,lsmdc3047_LIFE_OF_PI-21961,16617,The young boy remains still as the tiger nears. The magnificent tiger,The young boy remains still as the tiger nears.,The magnificent tiger,gold,leans forward and leaves us to beside himself.,takes off before others.,brushes her off his room.,stops a foot away.\n17417,lsmdc3047_LIFE_OF_PI-21961,16615,Someone extends a handful of meat between the bars. Richard Parker,Someone extends a handful of meat between the bars.,Richard Parker,gold,\", on one hand, turns to the cornflakes then takes a breath as the smoke startles him.\",glances at a gated off entrance to his side.,trots back into the vault.,runs a finger along the wire on the side rim.\n17418,lsmdc3047_LIFE_OF_PI-21961,16616,Richard Parker glances at a gated off entrance to his side. The young boy,Richard Parker glances at a gated off entrance to his side.,The young boy,gold,closes his own mouth.,pulls into a kayak and sets down his bag.,wears a small beanie.,remains still as the tiger nears.\n17419,lsmdc3047_LIFE_OF_PI-21961,16614,Someone turns and runs but someone remains still. Someone,Someone turns and runs but someone remains still.,Someone,gold,\"seeming to pull off his dryer, then staggers to his feet.\",\"opens the door in his mercedes, and someone begins to drive off.\",extends a handful of meat between the bars.,is sitting on a rocking chair with her feet crossed.\n17420,anetv_iUGuDzgow2I,10303,The gymnast begins by getting onto the horse bar and does some front and back hand springs. He,The gymnast begins by getting onto the horse bar and does some front and back hand springs.,He,gold,stands at the end then swings the legs at the other side of the gymnasium.,twirls the pole over then reaches an mount and stops for a moment to catch the jump.,continues doing the hand springs and then does a hand stand for a few seconds.,stops and the man does the same at the end of the playground where he completes the splits in his stance.\n17421,anetv_iUGuDzgow2I,10304,He continues doing the hand springs and then does a hand stand for a few seconds. Then he,He continues doing the hand springs and then does a hand stand for a few seconds.,Then he,gold,is done and does the same thing.,swings back down again in another front hand spring.,\"jumps into the air, loses her feet clutching the water while dancing, then looks the other way.\",\"stops and gets up and walks away, balancing on his knees as well as his hands then on him.\"\n17422,anetv_iUGuDzgow2I,568,\"The gymnast swing from the border of the bars, the jumps to stand on the hands and make tuns. Then, the gymnast\",\"The gymnast swing from the border of the bars, the jumps to stand on the hands and make tuns.\",\"Then, the gymnast\",gold,\"bounces all the beam and performs the jump, dismounts, and lands on the bars.\",jumps on the rope and walks back flips and lands on the mat above.,hops up and jumps on the finish line.,flips in the air and lands stand on the mat.\n17423,anetv_iUGuDzgow2I,10302,\"There's a gymnast dressed red leotards performing gymnastics on a horse bar in an indoor gym with another gymnast, some judges and spectators. The gymnast\",\"There's a gymnast dressed red leotards performing gymnastics on a horse bar in an indoor gym with another gymnast, some judges and spectators.\",The gymnast,gold,begins by getting onto the horse bar and does some front and back hand springs.,is wearing snarling and immobile capes.,tangles more and she highlights the routine.,is a gymnast up in a gym with several student other gymnasts and trying to balance the kickboxing.\n17424,anetv_j1XZ3FA8EYY,11048,The video starts out with several different soccer players showing highlights of incredible goals they've made. The video,The video starts out with several different soccer players showing highlights of incredible goals they've made.,The video,gold,ends with the back captions in the field.,continues with various other kids doing long shot rock uruk.,ends with the players kicking a ball in targets against the side of the rink.,continues with several more amazing soccer moves being shown with players high fiving and cheering in the end.\n17425,anetv_j1XZ3FA8EYY,2437,\"This video teaches viewers futsal tricks and goals. There is no audio, but there is lots of movement between players and some\",This video teaches viewers futsal tricks and goals.,\"There is no audio, but there is lots of movement between players and some\",gold,\"that shown, most of it traditional wrapped with crocodile clothes.\",got abrupt land with one running into the surfer.,\"include kicking the ball really high, or backwards into the goal.\",rules on the opposite side of the track.\n17426,anetv_5I5xXW25OXs,927,Two men getting ready for a contest by doing paper scissors rocks to see who goes first. The men,Two men getting ready for a contest by doing paper scissors rocks to see who goes first.,The men,gold,cross their arms and began drinking the liquids during the contest.,are going far next showing the fire in the fire.,are then seen sitting behind a pair building and demonstrating how to play.,continue to win then one also wins a match.\n17427,anetv_qNHfEf72V3g,11238,The men break the door down and enter a room in an attack formation that looks like a kitchen with a yellow refrigerator. The men then,The men break the door down and enter a room in an attack formation that looks like a kitchen with a yellow refrigerator.,The men then,gold,grab some ice and drink at one point.,start standing around watching and gesturing for their gestures.,illuminate a large body with wooden mirrors under the screen.,enter an empty bedroom crouched and ready for combat.\n17428,anetv_qNHfEf72V3g,11240,They enter another room wear the encounter the enemy and begin shooting at each other. The men in the military fatigues in an offensive position,They enter another room wear the encounter the enemy and begin shooting at each other.,The men in the military fatigues in an offensive position,gold,raise their glasses up.,maneuver throughout the building going from room to room looking for their opponents.,are getting ready on their knees in a dimly lit room.,begin to play a badminton game.\n17429,anetv_qNHfEf72V3g,12182,\"They run in, hiding behind obstacles. They\",\"They run in, hiding behind obstacles.\",They,gold,\"have paintball guns, which they shoot at each other.\",run around in a circle.,see them on a wall with all of them.,grab each other for a signal.\n17430,anetv_qNHfEf72V3g,11237,A group of men wearing military fatigues and armed with paintball guns prepare to enter a building. The men,A group of men wearing military fatigues and armed with paintball guns prepare to enter a building.,The men,gold,use flags on their shoes to mask them wearing blue shirts.,practice while a man in a bead cap watches the camera.,break the door down and enter a room in an attack formation that looks like a kitchen with a yellow refrigerator.,leave the orb and stop at a pile of buses where they are being filmed by cameras.\n17431,anetv_qNHfEf72V3g,12181,A large group of men are outside a warehouse. They,A large group of men are outside a warehouse.,They,gold,\"run in, hiding behind obstacles.\",are in race works behind a barriers that turn into a red and red rapidly.,are wearing a colorful rope that are gathered before a crowded of stadium.,grab timber in a gold box explaining what you needs to do.\n17432,anetv_qNHfEf72V3g,11239,The men then enter an empty bedroom crouched and ready for combat. They,The men then enter an empty bedroom crouched and ready for combat.,They,gold,do not become another person by hitting them from the floor.,continue adding shots into the crash and skiing down the road.,dance as they rope disassembled bag pull up.,enter another room wear the encounter the enemy and begin shooting at each other.\n17433,anetv_6fI4gF_2VCk,18256,The man continues to take drags out of the cigarette while blowing smoke off into the distance. He,The man continues to take drags out of the cigarette while blowing smoke off into the distance.,He,gold,\"blows the smoke out on the hookah, does not break.\",continues blowing smoke out the smoke and waving to the camera.,continues going up and out of the bottle as he continues smoking and smiling to the camera.,moves his hand up and down to smoke and blow the smoke out.\n17434,anetv_6fI4gF_2VCk,18255,A man's face is seen close up speaking and leads into him smoking a cigarette. The man,A man's face is seen close up speaking and leads into him smoking a cigarette.,The man,gold,speaks to the camera while looking around at the camera.,speaks to the camera while showing a close up of the vacuum lighter.,\"lays down the ball, sticks a cigarette through his mouth and grimaces.\",continues to take drags out of the cigarette while blowing smoke off into the distance.\n17435,anetv_jCd-VeMUwRg,2932,A group of people are wearing snorkeling gear in the edge of the ocean water. They,A group of people are wearing snorkeling gear in the edge of the ocean water.,They,gold,\"are sitting at a canoe, trying to stay afloat in the water.\",\"are then seen under the water, exploring and looking at fish.\",float in a river while the boats go on and downhill.,\"pause as a man walks along the river, rocky boats arranged on a set.\"\n17436,anetv_jCd-VeMUwRg,2933,\"They are then seen under the water, exploring and looking at fish. They\",\"They are then seen under the water, exploring and looking at fish.\",They,gold,are enjoying themselves but most of it is for a couple who approach to fall right.,\"are in the water that float, as one suddenly reappears.\",continue hitting the tree back and forth as people swim.,reach out to touch the fish as they swim by.\n17437,anetv_0Zg-7EgFiC8,3553,They are doing various cheerleading routines. They,They are doing various cheerleading routines.,They,gold,are shown showing how splits and wrestling.,talk for a little long time.,\"are acting silly, riding each other for the camera.\",are jumping and doing cartwheels.\n17438,anetv_0Zg-7EgFiC8,12820,\"Then, two people sits on the leg of her playmates. The girls organize to form a human tower, then a boy\",\"Then, two people sits on the leg of her playmates.\",\"The girls organize to form a human tower, then a boy\",gold,gives a bouquet of flower to the girl on the top.,places them on the table.,comes up to execute the same.,comes to flip first.\n17439,anetv_0Zg-7EgFiC8,12821,\"The girls organize to form a human tower, then a boy gives a bouquet of flower to the girl on the top. After, a girl\",\"The girls organize to form a human tower, then a boy gives a bouquet of flower to the girl on the top.\",\"After, a girl\",gold,walks to the other girl.,stand seen standing at the end of the ring leaning to her left and shaking hands with the other.,\"brings a boy with the eyes covered, and when he turns take the girl and holds and hugs her.\",gets out of the water and runs her arms across her bright pink dress.\n17440,anetv_0Zg-7EgFiC8,3552,A group of people are running around inside a gym. They,A group of people are running around inside a gym.,They,gold,lift the weights five to one side.,bring their legs into a fight.,are doing various cheerleading routines.,stop by the kids.\n17441,anetv_wAqQ-8OxhXY,14116,A close up of homes are shown with a person walking with a dog and then speaking to the camera. The man,A close up of homes are shown with a person walking with a dog and then speaking to the camera.,The man,gold,continues people into clips of them swinging at various angles.,continues looking down various different objects and leads into a close up of a wooden fence.,continues speaking as he leads the dog around the neighborhood.,continues speaking and presents the sink with a cloth.\n17442,anetv_RZpbFG3j-Bo,11346,The lady is let in an office where she undergoes an eye exam. A eye contact,The lady is let in an office where she undergoes an eye exam.,A eye contact,gold,covers the contact lens of one eye.,is shown hard in the screen.,is examined using a tool and a human hand.,is shown in the middle of the screen.\n17443,anetv_RZpbFG3j-Bo,11345,The credits of the video are shown. A lady,The credits of the video are shown.,A lady,gold,puts a contact in her eye.,stands outside and talks.,raises a red flag on a skate park.,makes hand gestures in her face and talks.\n17444,anetv_RZpbFG3j-Bo,11350,A hand bends a contact lens. A man,A hand bends a contact lens.,A man,gold,stands by a shower in a bathroom.,inserts a contact lens through a lens.,snips a contact lens.,puts a contact lens in.\n17445,anetv_RZpbFG3j-Bo,11348,A lady picks up a contact lens. A man,A lady picks up a contact lens.,A man,gold,crashes into the camera.,puts a white eye show a woman's lenses.,writes the letter l on a paper.,puts a girl's cheek to the woman's neck.\n17446,anetv_RZpbFG3j-Bo,11351,A man puts a contact lens in. A lady,A man puts a contact lens in.,A lady,gold,holds up a bottle.,stands and puts up the lens.,walks towards the camera camera and leaves the room.,puts each contact lens in.\n17447,anetv_7KT-z20qxI4,17465,\"A team is playing ice hockey, and celebrating as they win a game. The happy teammates\",\"A team is playing ice hockey, and celebrating as they win a game.\",The happy teammates,gold,have a small bow for the team to come for a sand trophy with his hand.,\"practice tackling, licking the balls.\",smile for interviews in the locker room after.,come out and congratulate each other and information expanding attempt to keep up with their seven team mates.\n17448,anetv_7KT-z20qxI4,17466,The happy teammates smile for interviews in the locker room after. The news casters,The happy teammates smile for interviews in the locker room after.,The news casters,gold,are shown holding number sticks and laughing.,is then seen while he looks in his open window and goes to put the billiard stick between himself.,talks about a celebrating on his other teams in a kitchen.,appears talking to people while playing volleyball.\n17449,anetv_7KT-z20qxI4,17464,\"Three people are in a news room, talking to the camera. A team\",\"Three people are in a news room, talking to the camera.\",A team,gold,is in a line holding a hockey stick.,is riding a kite at a rodeo track.,\"is playing ice hockey, and celebrating as they win a game.\",deals a 7 ball.\n17450,lsmdc1059_The_devil_wears_prada-98824,10945,\"Someone's being summoned from one of the other rooms, but she can't see someone. She\",\"Someone's being summoned from one of the other rooms, but she can't see someone.\",She,gold,pulls apart and sees someone looking at him.,yanks her cap off and smooths her fringe before heading in.,\"stands from a mirror for a moment, then leans back again to speak.\",shows off a scanner.\n17451,lsmdc1059_The_devil_wears_prada-98824,10944,\"She puts the dry cleaning into the correct closet and is about to leave the book when. Someone's being summoned from one of the other rooms, but she\",She puts the dry cleaning into the correct closet and is about to leave the book when.,\"Someone's being summoned from one of the other rooms, but she\",gold,includes the opposite section all the way into a syringe into the bed.,can't see someone.,drops in on the edge in the car.,shuts the door in the sink.\n17452,lsmdc1059_The_devil_wears_prada-98824,10943,\"She is wearing a cool monochrome outfit with black trousers and pale boots and a big, floppy cap on her head. She\",\"She is wearing a cool monochrome outfit with black trousers and pale boots and a big, floppy cap on her head.\",She,gold,puts the dry cleaning into the correct closet and is about to leave the book when.,\"is in the middle of a long as someone lies on her side, but she seems natural.\",\"wears a white wig, bikini, and cuts hair style: here, ingratiating.\",\"raises the quaffle onto the hatch, including running out past the greenhouse for a second.\"\n17453,lsmdc1059_The_devil_wears_prada-98824,10946,She yanks her cap off and smooths her fringe before heading in. Someone,She yanks her cap off and smooths her fringe before heading in.,Someone,gold,'s in a chair in the lounge.,'s husband stands at attention.,jumps from the car and rides back across the car.,sets down her racket.\n17454,lsmdc1059_The_devil_wears_prada-98824,10942,\"Hanging his head, he turns and mooches off into the bedroom. Looking glum, someone\",\"Hanging his head, he turns and mooches off into the bedroom.\",\"Looking glum, someone\",gold,looks away with his finger.,shines his wand against the wall.,blows out the candle on the cake.,\"comes in, clutching a baby to her wound.\"\n17455,lsmdc3090_YOUNG_ADULT-43866,17029,Someone pulls into a Hampton Inn beside a strip mall. She,Someone pulls into a Hampton Inn beside a strip mall.,She,gold,turns a corner and sets a finger someone.,staggers down a pile of steps and down ad pieces of that hurt for him.,adjusts a wide open room area.,\"walks into the lobby, steps up to a blonde - haired desk clerk.\"\n17456,lsmdc3090_YOUNG_ADULT-43866,17030,\"She walks into the lobby, steps up to a blonde - haired desk clerk. Someone\",\"She walks into the lobby, steps up to a blonde - haired desk clerk.\",Someone,gold,hands the woman a credit card.,drops his gaze onto the table.,enters the ladies room.,takes a card out of her pocket.\n17457,anetv_2KYGAq5qQCI,9769,A close up is shown of a room with a window. a man,A close up is shown of a room with a window.,a man,gold,is seen using a sprayer in the washer.,shows how to install a rug and cleans the clean floor using a hose.,holds out a hookah and puffs into the pipe and cigarette out smoke.,is smoothing mud over the wall.\n17458,anetv_2KYGAq5qQCI,9770,A man is smoothing mud over the wall. He,A man is smoothing mud over the wall.,He,gold,is trying to hit rope with a rope.,measures and cuts then spreads again.,is holding onto a oar.,is descending a rope to mounds of wood.\n17459,anetv_M7MDkkGdkas,18922,\"She turns on water, showing how to properly soap her hands. She then\",\"She turns on water, showing how to properly soap her hands.\",She then,gold,scrubs the mop along with water.,pour more and water on her mouth on the shiny surface.,drops the surf after the water on her hand.,rinses and dries them.\n17460,anetv_M7MDkkGdkas,18921,A woman is talking to a camera inside a kitchen. She,A woman is talking to a camera inside a kitchen.,She,gold,is demonstrating how to cut apples with cleaning products.,takes ice and blends it with a spoon.,\"turns on water, showing how to properly soap her hands.\",is showing a baby and cooking materials.\n17461,lsmdc1041_This_is_40-9001,8292,Someone smiles tightly as his dad cuddles the little blonde boy. Two more boys,Someone smiles tightly as his dad cuddles the little blonde boy.,Two more boys,gold,arrive identical to the first.,hold extra sticks in the club.,greet at the parents' party and a cell phone.,\"swing their hands at the animal as two girls approach, but pass more one around.\"\n17462,anetv_W1Cp1UyY8S8,15774,Text appears on the screen briefly. A man,Text appears on the screen briefly.,A man,gold,plays rock paper scissors.,is power washing a fence.,begins talking a man's mouth.,spots a heavy tire put something in the middle.\n17463,anetv_W1Cp1UyY8S8,15775,A man is power washing a fence. It,A man is power washing a fence.,It,gold,cuts the growth on the training background.,starts to cut down the fingernails.,cuts to him power washing a different section.,go away from boy.\n17464,anetv_W1Cp1UyY8S8,15776,It cuts to him power washing a different section. It,It cuts to him power washing a different section.,It,gold,takes a pile of clothing and another blue block having measured the chips.,uses one to draw the gun.,lies beneath the water.,fades to an open shot of the fence.\n17465,lsmdc3050_MR_POPPERS_PENGUINS-24389,9999,Captain flees with a colorful kite strapped to her back. She,Captain flees with a colorful kite strapped to her back.,She,gold,escapes into an elevator.,grabs someone and pulls him to safety.,falls off the raft then takes off in the jeep as it plunges away from the water.,\"throws her arms around, and gives him a high five.\"\n17466,lsmdc3050_MR_POPPERS_PENGUINS-24389,10016,\"He tightens the cable loop around someone's wrists. With the pole, he\",He tightens the cable loop around someone's wrists.,\"With the pole, he\",gold,\"shoots his opponent, knocking him up and down.\",\"circles the suspended post all around, then deposits on top of a roof.\",pull back and manages.,shoves someone's hands into his face.\n17467,lsmdc3050_MR_POPPERS_PENGUINS-24389,9997,Captain gets her webbed foot twisted in a kite string dangling from a high shelf. She,Captain gets her webbed foot twisted in a kite string dangling from a high shelf.,She,gold,\"is joined in the room, a tall section, butterfly wings around her torso.\",turns in a circle becoming entwined.,takes the knife stuck.,dangles from her gravel lifeboat.\n17468,lsmdc3050_MR_POPPERS_PENGUINS-24389,9994,\"Someone swivels his pointed arm. Removing their masks, the someone\",Someone swivels his pointed arm.,\"Removing their masks, the someone\",gold,steps close beside someone.,picks the paper up with both hands.,walk nonchalantly into a gift shop.,leads three prisoners into the enemy railcar.\n17469,lsmdc3050_MR_POPPERS_PENGUINS-24389,10002,\"Nearby, a big guard intercepts a mother and daughter trying to leave the zoo. Someone\",\"Nearby, a big guard intercepts a mother and daughter trying to leave the zoo.\",Someone,gold,hesitates just as someone's clock reads.,checks her cell phone.,is fed a meal.,rides in with dozens of computers talking over tall columns as someone strolls to him.\n17470,lsmdc3050_MR_POPPERS_PENGUINS-24389,9991,\"Someone opens a holding tank. Luring the birds with sardines, he\",Someone opens a holding tank.,\"Luring the birds with sardines, he\",gold,throws another zombie at the aircraft.,steps into the holding tank.,studies the platform of the planet.,quickly stows his books in the trash bag and answers it.\n17471,lsmdc3050_MR_POPPERS_PENGUINS-24389,10005,The family nears the guard crouching over someone. Someone,The family nears the guard crouching over someone.,Someone,gold,is peeling up a wall.,tries to crawl on barrel.,turns a corner and spots the someone.,watch in a dark cemetery.\n17472,lsmdc3050_MR_POPPERS_PENGUINS-24389,10003,A text from someone reads: Produce a perturbance!. Someone,A text from someone reads: Produce a perturbance!.,Someone,gold,falls over its windscreen.,hears the flames start to cut.,\"records by the building, someone raises his shotgun.\",eyes her boss lingering in a doorway.\n17473,lsmdc3050_MR_POPPERS_PENGUINS-24389,10015,Someone grabs it and pulls it through the bars of the gate. He,Someone grabs it and pulls it through the bars of the gate.,He,gold,sits up and inspects the second gate on it.,pulls someone up to the upper balustrade.,tightens the cable loop around someone's wrists.,swings back and forth at the roof.\n17474,lsmdc3050_MR_POPPERS_PENGUINS-24389,10011,The two guards follow close behind. She,The two guards follow close behind.,She,gold,watches the girl on his way to someone.,bounces off his tail and examines its motionless body.,peers at the ground below.,moves up and down.\n17475,lsmdc3050_MR_POPPERS_PENGUINS-24389,9995,\"Removing their masks, the someone walk nonchalantly into a gift shop. Nimrod\",\"Removing their masks, the someone walk nonchalantly into a gift shop.\",Nimrod,gold,bumps into a fixture and stumbles.,continues in toward a sound booth.,moves onto a large circle marked po house.,follow someone through the abandoned aircraft.\n17476,lsmdc3050_MR_POPPERS_PENGUINS-24389,9992,\"Later, in a veterinary lab, he finds a stack of surgical masks. Zoo - goers\",\"Later, in a veterinary lab, he finds a stack of surgical masks.\",Zoo - goers,gold,hustle away from the masked family.,help the crumbled skulls from their nails inside an elephant.,engage in a enemy camp.,\"sit between him and amber while someone looks ahead, his eyes darting to the window.\"\n17477,lsmdc3050_MR_POPPERS_PENGUINS-24389,10014,\"As she soars over someone, he readies his catch - pole. Someone\",\"As she soars over someone, he readies his catch - pole.\",Someone,gold,grabs it and pulls it through the bars of the gate.,rushes forward and snatches the quaffle with her cigarette.,swings back and forth as it carries a plane flying overhead.,lands in a black van by a sedan.\n17478,lsmdc3050_MR_POPPERS_PENGUINS-24389,10007,As the group races to the limo. Someone,As the group races to the limo.,Someone,gold,wrestles the big guard to the ground.,pushes gate and sweeps away.,pauses at the red datsun.,pats a table as he eats someone's.\n17479,lsmdc3050_MR_POPPERS_PENGUINS-24389,10017,\"With the pole, he shoves someone's hands into his face. He\",\"With the pole, he shoves someone's hands into his face.\",He,gold,speeds toward an underpass on the path.,holds it up and tries to slip out his 7 - eleven ball.,\"anchors the pole, securing the someone's bound hands between the bars.\",\"starts to follow, down and so does him.\"\n17480,lsmdc3050_MR_POPPERS_PENGUINS-24389,10006,Someone turns a corner and spots the someone. As the group,Someone turns a corner and spots the someone.,As the group,gold,races to the limo.,\"scurries into the huge hangar, she stops to remove her makeup brush.\",\"someone, he reaches for the bag.\",blows out their wand.\n17481,lsmdc3050_MR_POPPERS_PENGUINS-24389,10000,\"She escapes into an elevator. Outside, someone\",She escapes into an elevator.,\"Outside, someone\",gold,speeds frantically down an alley.,wrestles zombie out into the street.,hurriedly flips up her elaborate red cape.,paces by the limo.\n17482,lsmdc3050_MR_POPPERS_PENGUINS-24389,9998,She turns in a circle becoming entwined. Captain,She turns in a circle becoming entwined.,Captain,gold,flees with a colorful kite strapped to her back.,eyes pierce the arm and lets doll.,their way past her immaculate living room.,\"straightens the neck, and stares up in surprise aiming his red skin to those under the body sheets.\"\n17483,lsmdc3050_MR_POPPERS_PENGUINS-24389,10012,\"She peers at the ground below. Flapping her flippers, she\",She peers at the ground below.,\"Flapping her flippers, she\",gold,walks uneasily past captain.,falls away and goes after someone.,steps to the precipice.,adds a little crab.\n17484,anetv_KUorCsuIe2A,12702,The boy walks off stage and is interviewed. The boy,The boy walks off stage and is interviewed.,The boy,gold,walks away from the men.,is serving the sax to the coach and the crowd cheers.,is seated speaking his phone.,comes and shows the hair made of the chair.\n17485,anetv_KUorCsuIe2A,12699,The boy walks on the stage and talks to the judges. The boy,The boy walks on the stage and talks to the judges.,The boy,gold,stops playing and talks to the camera before the dance dance.,\"dismounts, flips on the bars, and lifts the woman pose.\",takes a massive leap at the end.,performs a break dance.\n17486,anetv_KUorCsuIe2A,12697,We see a boy in a cap in a room laughing and sitting. We,We see a boy in a cap in a room laughing and sitting.,We,gold,see the boy backstage talking to two men.,see a dive of the pool and we see it in slow motion.,switch to two younger men and women playing curling.,see a title screen.\n17487,anetv_KUorCsuIe2A,12701,The crowd lifts their arms in the air. The boy,The crowd lifts their arms in the air.,The boy,gold,walks off stage and is interviewed.,is collecting the dry leaves.,walks but only faces the audience.,goes to spin and dismounts.\n17488,anetv_KUorCsuIe2A,12698,We see the boy backstage talking to two men. The boy,We see the boy backstage talking to two men.,The boy,gold,steps on the black sun pumps and laughs.,puts a metal back on his head.,walks on the stage and talks to the judges.,is in pointe playing dodgeball.\n17489,anetv_KUorCsuIe2A,12700,The boy finises dancing and the judges give their feedback. The crowd,The boy finises dancing and the judges give their feedback.,The crowd,gold,turns and raises their arms.,lifts their arms in the air.,cheers to the thrower.,cheers on them and they play a game of arm wrestling.\n17490,lsmdc0022_Reservoir_Dogs-59308,16702,Someone lifts his. 45 and places the barrel between someone's eyes. The camera,Someone lifts his. 45 and places the barrel between someone's eyes.,The camera,gold,\"lifts to the patch, but someone is still controlling the syringe.\",\"follows - as the thin overhears someone runs to the window, crushes it.\",moves into an extreme closeup of someone.,shows someone relaxing as someone shuts his eyes and cocks his head.\n17491,anetv_RfbEuBH1Pow,14506,Two teams play water polo against each other. A crowd,Two teams play water polo against each other.,A crowd,gold,is thrown for girls.,looks on from the stands.,is followed by the instructor playing.,stands in the pool.\n17492,anetv_RfbEuBH1Pow,14504,A team of swimmers are huddled in. The team,A team of swimmers are huddled in.,The team,gold,gets in the pool.,bounces out of the ball.,adds red bulbs to the wall.,\"stands at the head, exploding the ball in formation.\"\n17493,anetv_RfbEuBH1Pow,14505,The team gets in the pool. Two teams,The team gets in the pool.,Two teams,gold,pull a lacrosse team against goals.,play a game of dodge ball in a net.,play water polo against each other.,fight each other and scores.\n17494,anetv_ZTwmb1d44bc,10249,A blue team player takes his turn and curls his stone into the center. The blue team,A blue team player takes his turn and curls his stone into the center.,The blue team,gold,kicks each other and walks back and forth over the net.,sits on his field with his back to balance on his stick.,waves while the turk takes cricket.,comes and hugs the player as they celebrate.\n17495,anetv_ZTwmb1d44bc,10247,The white team high five each other. The blue team,The white team high five each other.,The blue team,gold,scores together postcard in the competition.,discuss while a member points.,score off inside another pool where the players tumble from the rackets and run over onto the sand.,clear the floor trying to throw the ball.\n17496,anetv_ZTwmb1d44bc,10248,The blue team discuss while a member points. A blue team player,The blue team discuss while a member points.,A blue team player,gold,explaining them and is walking by in the background.,takes his turn and curls his stone into the center.,runs and plays at an event with a paintball map.,slides off the court to join the team.\n17497,anetv_ZREM_AcXHX8,7515,A new segment leads into clips of a woman speaking to the camera and holding up a bow and arrow. The girl,A new segment leads into clips of a woman speaking to the camera and holding up a bow and arrow.,The girl,gold,shoots the bow while still speaking to the camera and bending the bow.,continues kicking several times and ends with a bow in the end.,turns into a bow and brushes the woman's hair while speaking to the camera while holding the camera.,continues speaking and demonstrates how to properly hit the pinata.\n17498,anetv_ZREM_AcXHX8,7516,The girl shoots the bow while still speaking to the camera and bending the bow. She,The girl shoots the bow while still speaking to the camera and bending the bow.,She,gold,whips down the stuffed arrow as she makes it to the side with her bow.,continue to fish on the left and finishes.,continues speaking while using her hands and showing off pictures to the camera.,holds up her stick and he hits it with the knife which sits in a board again.\n17499,anetv_Ws5jA8cMKas,20089,\"As the camera moves, you can see a young woman standing in a chair blow drying his hair. Also in the bathroom, is another young woman holding the camera and another boy\",\"As the camera moves, you can see a young woman standing in a chair blow drying his hair.\",\"Also in the bathroom, is another young woman holding the camera and another boy\",gold,is shown waiting with a dog with a piece of spring board.,is standing in the door way of the bathroom watching.,lined up in front of a large table that are continued thoroughly for one.,begins applying facial makeup over her container then shows back to subscribe by the tattoo on her neck.\n17500,anetv_Ws5jA8cMKas,20088,\"A young boy is sitting down in a chair with a grey hoodie on getting his hair done. As the camera moves, you\",A young boy is sitting down in a chair with a grey hoodie on getting his hair done.,\"As the camera moves, you\",gold,can see a young woman standing in a chair blow drying his hair.,do the same board and wash hose you can handle paint.,can see that the boy in the green shirt is escorted.,take the exercise from punching the air.\n17501,anetv_Ws5jA8cMKas,20090,\"Also in the bathroom, is another young woman holding the camera and another boy is standing in the door way of the bathroom watching. Once the drying has finished, the boy\",\"Also in the bathroom, is another young woman holding the camera and another boy is standing in the door way of the bathroom watching.\",\"Once the drying has finished, the boy\",gold,leaves and rubs the mans face slower.,continues drying her hair and ends by twirling her hair around while explaining about her hair.,grabs the blow dryer and starts to blow dry his own hair.,takes the finished shower to continue speaking at the camera.\n17502,anetv_Ws5jA8cMKas,1365,A boy is getting his hair dried by a girl. Several people,A boy is getting his hair dried by a girl.,Several people,gold,are gathered together in the kitchen.,are in the bathroom with them.,are shown performing tricks on uneven bars.,are shown working in the same clips.\n17503,anetv_Ws5jA8cMKas,1366,Several people are in the bathroom with them. They,Several people are in the bathroom with them.,They,gold,assemble the omelette in the mixer put.,talk into the water and make gestures with knives.,laugh as they look in the mirror.,ride on the stationary bikes.\n17504,anetv_Ws5jA8cMKas,20091,\"Once the drying has finished, the boy grabs the blow dryer and starts to blow dry his own hair. Next to him, is the camera girl and she\",\"Once the drying has finished, the boy grabs the blow dryer and starts to blow dry his own hair.\",\"Next to him, is the camera girl and she\",gold,pulls herself over her head and smiles to the camera.,begins smiling and blowing kisses to the screen.,\"is doing so, shaking her head and is unwrapping the skin on the bottom of the board.\",is standing quite hard.\n17505,anetv_w_PJ9N8CMo8,587,A man washes his face in front of a mirror. He,A man washes his face in front of a mirror.,He,gold,puts the product over her hair.,begins to wipe sweat off his face.,combs his hair and shaves products.,laughs at the camera.\n17506,anetv_w_PJ9N8CMo8,589,He rubs his face some more. He,He rubs his face some more.,He,gold,\"glances over, then follows.\",watches as she walks over to the car and touches it.,unwraps his fist and allows a loving smile.,bends into the sink to rinse it.\n17507,anetv_w_PJ9N8CMo8,588,He laughs at the camera. He,He laughs at the camera.,He,gold,puts potatoes on his head and blow dry his hair.,holds a saxophone up close to the shoulder.,rubs his face some more.,throws her down in her arms and cranes her arms into a corner.\n17508,lsmdc3074_THE_ROOMMATE-3910,12653,\"Outside, someone shuts the door of her red convertible. She\",\"Outside, someone shuts the door of her red convertible.\",She,gold,\"rounds the grocer, steals one more vans with her tray.\",enters the restaurant and joins her roommate at the booth.,slides down the stoop.,turns to a window.\n17509,lsmdc3074_THE_ROOMMATE-3910,12651,\"Now in a diner, someone stirs a cup of coffee, sitting alone at a booth. She\",\"Now in a diner, someone stirs a cup of coffee, sitting alone at a booth.\",She,gold,cranes her neck as a car arrives.,\"pauses, singing and drinking beer.\",\"cautiously someone to the table with a plate in her hand, and drops it.\",sips her champagne as she casually approaches.\n17510,lsmdc3074_THE_ROOMMATE-3910,12654,She enters the restaurant and joins her roommate at the booth. Someone,She enters the restaurant and joins her roommate at the booth.,Someone,gold,gives a tight - lipped smile.,licks her lips as they stare at him with a haunted expression.,gazes at a door with a manuscript sound inside it.,\"controls his steering wheel and sits in the cab seat, a parking lot.\"\n17511,lsmdc3074_THE_ROOMMATE-3910,12650,\"She sits up and grabs her cellphone from a nightstand. Now in a diner, someone\",She sits up and grabs her cellphone from a nightstand.,\"Now in a diner, someone\",gold,sits at a desk with a number four.,checks the ticket booth.,\"stirs a cup of coffee, sitting alone at a booth.\",sits nearby in a crowded gym.\n17512,lsmdc3074_THE_ROOMMATE-3910,12648,\"Outside the bar, someone heads down an alley past a few club goers huddled in pairs. Reaching an adjacent sidewalk, she\",\"Outside the bar, someone heads down an alley past a few club goers huddled in pairs.\",\"Reaching an adjacent sidewalk, she\",gold,finds a full - aim gun slung over a low armpits.,finds an array of comics with pasta and jars.,raises her stocky teacher's gun.,stops and looks around.\n17513,lsmdc3074_THE_ROOMMATE-3910,12652,\"She cranes her neck as a car arrives. Outside, someone\",She cranes her neck as a car arrives.,\"Outside, someone\",gold,shuts the door of her red convertible.,\"regards a cat with an arm watch, one lit cat.\",runs through a oncoming traffic while the convertible rounds more young people tread toward the barrel from the ship.,pulls the briefs under his shaved head.\n17514,anetv_a8dUtKcAunw,18816,A man with a cigarette is playing a guitar. He,A man with a cigarette is playing a guitar.,He,gold,goes back to his car with a long metal racket.,speaks for a long time.,starts singing into a microphone and playing the guitar.,continues to play the saxophone while dancing.\n17515,anetv_a8dUtKcAunw,12135,He is holding a white guitar and playing it. He,He is holding a white guitar and playing it.,He,gold,rubbed the surface on the guitar drum.,begins to play the guitar.,begins singing into a microphone.,starts to play a song on the drums.\n17516,anetv_a8dUtKcAunw,12134,A man is sitting down smoking a cigarette. He,A man is sitting down smoking a cigarette.,He,gold,puts the hookah on a pipe.,is sitting on the ice next to the hookah.,puts something on his coat rack.,is holding a white guitar and playing it.\n17517,anetv_awv0jtZpeoo,16317,A woman in a purple shirt walks behind him. Two people,A woman in a purple shirt walks behind him.,Two people,gold,are talking to each other behind him.,walk into the middle of them.,talk to each other on the table.,are working out on a rowing machine.\n17518,anetv_8E8bytYxwAA,18695,She spins around the bar multiple times before dismounting. She,She spins around the bar multiple times before dismounting.,She,gold,lifts her hands in the air between her legs.,shuts the door to someone.,\"lands on the mat, arms in the air.\",\"holds up a switch, and finishes talking.\"\n17519,anetv_8E8bytYxwAA,17526,Little kid is in a roofed gym doing gymnastics. littl kids,Little kid is in a roofed gym doing gymnastics.,littl kids,gold,are walking around the court playing a set of pads.,are also working out in elliptical machines.,are running down a roofed exercise competition.,are sitting on side of the gym.\n17520,anetv_8E8bytYxwAA,18694,A female gymnast is spinning around a bar in a gym. She,A female gymnast is spinning around a bar in a gym.,She,gold,is standing on a bar next to the game.,does a gymnastics routine on the large mat.,\"does a final flip on her balance beam, then lands with her hands off of her body, propelling her backwards and backward.\",spins around the bar multiple times before dismounting.\n17521,anetv_p-lwebxSYyo,3094,A dog walks behind them. They,A dog walks behind them.,They,gold,spin around and flip off a water frisbee.,continue painting the fence.,see the horn and a pot of water.,all bows and some dogs are funny.\n17522,lsmdc3051_NANNY_MCPHEE_RETURNS-24645,1959,\"As someone turns away, someone directs the elephant up the stairs with a friendly pat on its rear. Someone\",\"As someone turns away, someone directs the elephant up the stairs with a friendly pat on its rear.\",Someone,gold,sit behind the parked car.,gets off a car and drives nearer.,starts for the door.,paces down the street with him.\n17523,lsmdc3051_NANNY_MCPHEE_RETURNS-24645,1957,\"As someone returns to the sink, a baby elephant enters the house. She\",\"As someone returns to the sink, a baby elephant enters the house.\",She,gold,\"opens a sitting bag, as well as calls to the bank.\",pulls the camera out to find someone standing alone at the corner.,hands her a glass of stuffs.,shields the elephant from someone.\n17524,lsmdc3051_NANNY_MCPHEE_RETURNS-24645,1954,\"Someone stares stoically, her snaggletooth pressing into her lower lip. She\",\"Someone stares stoically, her snaggletooth pressing into her lower lip.\",She,gold,puts one leg on a mirror.,produces her walking stick from inside her frock and raises it.,enters their new apartment elevator and leaves the office.,\"stares at her eye, some in her nose, joins at a kitchen sink.\"\n17525,lsmdc3051_NANNY_MCPHEE_RETURNS-24645,1958,\"The elephant nudges someone with its trunk. As someone turns away, someone\",The elephant nudges someone with its trunk.,\"As someone turns away, someone\",gold,directs the elephant up the stairs with a friendly pat on its rear.,follows his mother downstairs.,races out of the kitchen as the teacher approaches.,takes someone's prone sword.\n17526,lsmdc3051_NANNY_MCPHEE_RETURNS-24645,1955,\"At a second look, she finds the staircase as plain as ever. She\",\"At a second look, she finds the staircase as plain as ever.\",She,gold,turns and opens the box.,\"opens the barrier door, followed by someone, who is carrying a suitcase at the coffin.\",positions the un - haired man on the toilet.,collects a teapot from the kitchen table and turns her attention to the sink.\n17527,anetv_ZtfdFFYa8vY,14925,Dog is running in the treadmill that is next to a drawer. dog,Dog is running in the treadmill that is next to a drawer.,dog,gold,is wearing a red necklace and is doing exercise.,is on a white sheet that is being returned.,is running on the floor holding a mop.,is sitting next to the trainer wearing a spiked claus.\n17528,anetv_ZtfdFFYa8vY,14924,Black dog is walking in a treadmill in a white room. dog,Black dog is walking in a treadmill in a white room.,dog,gold,is in a recumbent shirt with his arms.,is riding a bike on street near a horse.,start washing dishes and playing water into the camera.,is running in the treadmill that is next to a drawer.\n17529,anetv_RhsCYNiAaV8,6975,A waterfall spills into the raft. Two boats of rafters,A waterfall spills into the raft.,Two boats of rafters,gold,shoot on the shore.,raft down a river.,jumps in flowing water.,crowd around the river with one case strapped into the boat's wake.\n17530,anetv_RhsCYNiAaV8,6974,We see people sitting in their raft then start rowing. A waterfall,We see people sitting in their raft then start rowing.,A waterfall,gold,spills into the raft.,is shown in the water in front of them.,glows in the water on the river.,is shown as the city stands up close.\n17531,anetv_RhsCYNiAaV8,6976,Two boats of rafters raft down a river. The first boat,Two boats of rafters raft down a river.,The first boat,gold,surfs paused with their 3 vinyl chimes.,is water up in the air.,starts rowing and a row of troubled spheres appears.,splashes the rear boat.\n17532,anetv_RhsCYNiAaV8,6977,The rafters splash each other. A raft,The rafters splash each other.,A raft,gold,is pulled away from the wall of the boat.,\"begins, continuing the wave.\",turns over in the water and rafters float to the river bank.,with raft washes over a flowing river indoor river.\n17533,anetv_RhsCYNiAaV8,6978,A raft turns over in the water and rafters float to the river bank. A van,A raft turns over in the water and rafters float to the river bank.,A van,gold,gets caught in the bottom of the river.,is then driving down the road.,flips in a wake and onto inflated ship.,approaches a raft and kayaks down the river on front a large waterfall.\n17534,anetv_RhsCYNiAaV8,6973,Images of rafts are shown. We,Images of rafts are shown.,We,gold,we see three people washing boats with a bow and also carrying a sail.,see people sitting in their raft then start rowing.,belong to a man in the world and the man goes down the hill.,\"are running in a race from dislodge water, come into cargo and jump on plane boards.\"\n17535,lsmdc0038_Psycho-67154,10621,\"The Patrolman walks around to the front of the car, checks the license plate, and returns. The Patrolman peers in, checks the car registration on the steering wheel,\",\"The Patrolman walks around to the front of the car, checks the license plate, and returns.\",\"The Patrolman peers in, checks the car registration on the steering wheel,\",gold,lights his cell call.,returns someone's wallet.,then tries a take.,emerges a few feet a car and pointed the box.\n17536,lsmdc0038_Psycho-67154,10624,\"She starts ahead, fast. As she drives, she\",\"She starts ahead, fast.\",\"As she drives, she\",gold,\"stops short with increasing textured in her eyes, looking at a brand station.\",glances into her rear - view mirror.,\"trots after him, scratching his forehead.\",\"has a couple of the position looking down, as if she is too uncomfortable for a specific space.\"\n17537,lsmdc0038_Psycho-67154,10627,\"The Patrolman is no longer following, has not turned off after her. She\",\"The Patrolman is no longer following, has not turned off after her.\",She,gold,\"breathes a sigh of relief, thinks a moment, makes a quick decision.\",looks at her son.,looks out the window at him.,shoots back into the basement.\n17538,lsmdc0038_Psycho-67154,10626,She glances out at her surroundings. She suddenly,She glances out at her surroundings.,She suddenly,gold,turns off the highway.,\"stops, lost in thought.\",makes his way down the hall.,stands inside a small foyer.\n17539,lsmdc0038_Psycho-67154,10622,\"The Patrolman peers in, checks the car registration on the steering wheel, returns someone's wallet. She\",\"The Patrolman peers in, checks the car registration on the steering wheel, returns someone's wallet.\",She,gold,\"seems like a new sample thing blinks, but it keeps climbing far over.\",puts an earring beside a case and crouches and sprays it and rips the lens.,\"cut a juicer, completed it, and deals it over in a small display the waiting wreckage.\",\"takes it, looks at him for a flicker of a moment.\"\n17540,lsmdc0038_Psycho-67154,10618,\"She puts her hand in it, rummages for her wallet, can not find it. The Patrolman\",\"She puts her hand in it, rummages for her wallet, can not find it.\",The Patrolman,gold,is staring at her.,\"rips it open, and pulls it open.\",can take what he sees.,does n't have much money.\n17541,lsmdc0038_Psycho-67154,10620,\"He looks at the wallet, then at the car. The Patrolman\",\"He looks at the wallet, then at the car.\",The Patrolman,gold,sneer wipes his face.,comes out to him.,jumps out of his chair.,\"walks around to the front of the car, checks the license plate, and returns.\"\n17542,lsmdc0038_Psycho-67154,10623,\"She takes it, looks at him for a flicker of a moment. She\",\"She takes it, looks at him for a flicker of a moment.\",She,gold,goes back to sleep.,\"looks back into the room, through a low wall.\",\"starts ahead, fast.\",places his arm forlornly beside her.\n17543,lsmdc0038_Psycho-67154,10617,\"Someone pulls her handbag up from the floor, where she'd placed it when she stretched out for sleep. She\",\"Someone pulls her handbag up from the floor, where she'd placed it when she stretched out for sleep.\",She,gold,looks in the other direction.,rips off her blouse.,brings him to the operating table looking slightly soft.,\"puts her hand in it, rummages for her wallet, can not find it.\"\n17544,lsmdc0038_Psycho-67154,10619,\"Nervously, badly controlling her fear, she takes out the money - filled envelope, and then the important papers envelope, filled then a couple of other items, places them on the seat, finally finds her wallet, opens it, hands it to him. He\",\"Nervously, badly controlling her fear, she takes out the money - filled envelope, and then the important papers envelope, filled then a couple of other items, places them on the seat, finally finds her wallet, opens it, hands it to him.\",He,gold,\"people continue to search, only the cruise directly out, someone stares out the window into the forecourt.\",rounds to the front and sits facing someone.,\"looks at the wallet, then at the car.\",\"pockets it into a check - in, and shows his name on a moment.\"\n17545,lsmdc0038_Psycho-67154,10625,\"The Patrolman is following in his automobile, keeping behind her at a matched speed. She\",\"The Patrolman is following in his automobile, keeping behind her at a matched speed.\",She,gold,hits someone and drink drug across a floor.,\"hands to her feet, her suddenly cast suspicious and tracks through the town.\",struggles to out over the din of his pursuers.,glances out at her surroundings.\n17546,anetv_RK1L77bNTxg,8174,A history about curling sport and the kids team playing in the field and scoring is shown in the screen. back to the studio reporters,A history about curling sport and the kids team playing in the field and scoring is shown in the screen.,back to the studio reporters,gold,see a band instruction and play the drums.,keep talking about the history.,are holding people on some breathing very high.,are posing for photos of the couple.\n17547,lsmdc0032_The_Princess_Bride-65960,7908,\"People squinting back, trying desperately to see. At this moment, they\",\"People squinting back, trying desperately to see.\",\"At this moment, they\",gold,are all holding their breaths.,have both door under bottle.,have awakened someone out.,are practically calm and rough.\n17548,lsmdc0032_The_Princess_Bride-65960,7909,\"At this moment, they are all holding their breaths. The moon slips through and - - someone was right - - something\",\"At this moment, they are all holding their breaths.\",The moon slips through and - - someone was right - - something,gold,has moldy and twisted only with ax.,is quite audible - - beautiful and beautiful.,is very much there.,shrouded out with them.\n17549,lsmdc0032_The_Princess_Bride-65960,7905,\"And suddenly the three whirl, stare back and as they do. It's hard to see; the moon\",\"And suddenly the three whirl, stare back and as they do.\",It's hard to see; the moon,gold,starts a thin layer through some hair.,is behind clouds now.,is completely way up place for side now.,\"rises in, breaking through the wind.\"\n17550,lsmdc0032_The_Princess_Bride-65960,7907,And suddenly it's all gone ominous. People,And suddenly it's all gone ominous.,People,gold,someone's startling with the crowd.,forces himself to go too far.,\"squinting back, trying desperately to see.\",appear in the dusty wake.\n17551,lsmdc0032_The_Princess_Bride-65960,7910,\"The moon slips through and - - someone was right - - something is very much there. It's a good distance behind them, but it\",The moon slips through and - - someone was right - - something is very much there.,\"It's a good distance behind them, but it\",gold,\"is no real, there's only still at the time.\",acknowledges them to make a comment.,'s too comforting to hear it.,\"'s coming like hell, closing the gap.\"\n17552,lsmdc0032_The_Princess_Bride-65960,7906,It's hard to see; the moon is behind clouds now. And suddenly it,It's hard to see; the moon is behind clouds now.,And suddenly it,gold,is the large part of the titanic.,'s all gone ominous.,presses into the lamp.,looks like she slowly expected to see it any wrong.\n17553,anetv_qSXMTcGBqtY,3064,\"A woman straights the hair of a young lady using a brush and a hair dryer. The woman holds part of the the hair up, then she\",A woman straights the hair of a young lady using a brush and a hair dryer.,\"The woman holds part of the the hair up, then she\",gold,curves the hair with and hair iron.,dries water and hands it into the falling hair.,cleans her hair and blow the fur off her face.,applies it to her black sleeve.\n17554,anetv_odbjmsyfJe4,2379,A man is brushing his hair in a mirror. The brush,A man is brushing his hair in a mirror.,The brush,gold,is shown again as a child is seen.,gets stuck in his hair.,cleans the hair with a large brush.,is shown being sprayed in polish.\n17555,anetv_odbjmsyfJe4,1083,A man combs his hair in front of the mirror in the bathroom and lingers on one stroke of the comb while making faces in the mirror. A man,A man combs his hair in front of the mirror in the bathroom and lingers on one stroke of the comb while making faces in the mirror.,A man,gold,comes up and begins shaving the dog's hair with strokes of the same woman.,\"stands in the mirror, shirtless, combing his hair.\",sits outside of the side of a boat with the man in a yellow hoodie and walks towards the water.,is seen bending over his shoulders while kneeling and showing how to make leg moves up.\n17556,anetv_odbjmsyfJe4,1084,\"A man stands in the mirror, shirtless, combing his hair. The comb gets stuck in a knot and the man\",\"A man stands in the mirror, shirtless, combing his hair.\",The comb gets stuck in a knot and the man,gold,does his leg in front of the mirror.,starts making faces in the mirror.,continues twist or taller.,raises his pencil to show with his hair.\n17557,anetv_odbjmsyfJe4,2381,He struggles to remove it from his hair. Afterward he,He struggles to remove it from his hair.,Afterward he,gold,stares at himself in the mirror.,cuts the contents in the orange palette hide it revealing and cut it downwards.,gets a few dough results.,leaves and someone wraps it to herself and shows.\n17558,anetv_odbjmsyfJe4,2380,The brush gets stuck in his hair. He,The brush gets stuck in his hair.,He,gold,uses a pink tool to apply products to reapplies.,struggles to remove it from his hair.,gestures right after the camera.,finishes waving the dryer and walks up to a window.\n17559,anetv_odbjmsyfJe4,1085,The comb gets stuck in a knot and the man starts making faces in the mirror. The man,The comb gets stuck in a knot and the man starts making faces in the mirror.,The man,gold,finishes combing his hair and makes another face.,\"screws his hands in the air, struggles to his feet.\",trims his applying tool to her hair while giving it straight up and punch before still talking.,finishes and rubs her hands together.\n17560,anetv_9FJwDxnlW7Y,14707,A middle aged man is shoveling snow on a sidewalk while a medium sized brown dog chases the shovel. The man,A middle aged man is shoveling snow on a sidewalk while a medium sized brown dog chases the shovel.,The man,gold,throws the snow and turns the other way to repeat the shoveling while the dog continues to chase the shovel.,climbs down to the red wall and runs and moves the lawn towards a parking garage.,is laying on his snow across the shop and falls back to the other side.,sits on the bike while holding the shovel.\n17561,anetv_9FJwDxnlW7Y,14711,\"The man does not turn around and shovel the sidewalk again, but carries the snow in the shovel and walks away from the dog. The dog\",\"The man does not turn around and shovel the sidewalk again, but carries the snow in the shovel and walks away from the dog.\",The dog,gold,keeps talking and giving information about the boot tourist for how at video.,trails behind as if tired.,drives off back at the figure of man sitting on a couch using a lawn mower.,moves to a stop and talks while the man moves his head across the snow.\n17562,anetv_9FJwDxnlW7Y,14708,The man throws the snow and turns the other way to repeat the shoveling while the dog continues to chase the shovel. At the end of the sidewalk near a driveway a young woman in a black snowsuit lying on her stomach,The man throws the snow and turns the other way to repeat the shoveling while the dog continues to chase the shovel.,At the end of the sidewalk near a driveway a young woman in a black snowsuit lying on her stomach,gold,sees the dog chasing the shovel and laughs.,is recording the camera.,starts to talk to the other side.,is set up on the ground.\n17563,anetv_9FJwDxnlW7Y,14709,At the end of the sidewalk near a driveway a young woman in a black snowsuit lying on her stomach sees the dog chasing the shovel and laughs. The man now turns and runs down the sidewalk shoveling the snow again and the dog,At the end of the sidewalk near a driveway a young woman in a black snowsuit lying on her stomach sees the dog chasing the shovel and laughs.,The man now turns and runs down the sidewalk shoveling the snow again and the dog,gold,runs with his dog.,comes from after the woods where he accelerates.,runs along with him.,runs across the street and yells.\n17564,anetv_9FJwDxnlW7Y,14710,The man now turns and runs down the sidewalk shoveling the snow again and the dog runs along with him. The man,The man now turns and runs down the sidewalk shoveling the snow again and the dog runs along with him.,The man,gold,continues to mow the lawn while the camera captures his movements.,continues to shear the puddles of wood once more and lays back on the dirt.,continues to mow the grass as he walks down the street.,\"does not turn around and shovel the sidewalk again, but carries the snow in the shovel and walks away from the dog.\"\n17565,lsmdc1011_The_Help-78727,16889,She tosses away the branch. Someone,She tosses away the branch.,Someone,gold,\"lies on top of someone, clipboard under her gaze.\",breaks and crashes into the grunt.,slides from the rock floor.,helps pick up the groceries.\n17566,lsmdc1011_The_Help-78727,16892,\"In the heavily decorated dining room, someone, in an off - the - shoulder dress, carefully places a dish of cookies into the center of the table, alongside a cooked ham, several cakes and pies, and other dishes of food. Someone, taking off his jacket,\",\"In the heavily decorated dining room, someone, in an off - the - shoulder dress, carefully places a dish of cookies into the center of the table, alongside a cooked ham, several cakes and pies, and other dishes of food.\",\"Someone, taking off his jacket,\",gold,\"tries to bite her food and sits behind someone, as the derelict jug slowly breaking from the glass.\",putting some food in and signing a newspaper.,leads the way into the dining room and stands next to his wife.,walks to the door and ends the entrance.\n17567,lsmdc1011_The_Help-78727,16894,Someone beams from ear - to - ear. Someone,Someone beams from ear - to - ear.,Someone,gold,\"reaches down, grabs a cell receiver, and grabs the girlfriend's head.\",pulls out a chair for someone.,slaps him then steps out of a car.,gives a silent bow.\n17568,lsmdc1011_The_Help-78727,16893,Someone's lips crease into a smile. Someone,Someone's lips crease into a smile.,Someone,gold,\"hangs her head, then sits back down.\",steps up to someone.,cheerfully holds out her hand.,beams from ear - to - ear.\n17569,lsmdc1011_The_Help-78727,16890,Someone helps pick up the groceries. He,Someone helps pick up the groceries.,He,gold,d'oeuvres someone's belongings.,bashes his pack with his gun.,hands her her bag.,releases the remote on the suggestively.\n17570,lsmdc1011_The_Help-78727,16891,\"He hands her her bag. With a gentle guiding hand at her back and a good - natured smile, he\",He hands her her bag.,\"With a gentle guiding hand at her back and a good - natured smile, he\",gold,looks up at us.,jogs out of the shed in his open - duty lock.,notices a gardener beaming out at him.,walks her towards the house.\n17571,lsmdc1011_The_Help-78727,16895,\"Someone pulls out a chair for someone. As someone serves up, someone\",Someone pulls out a chair for someone.,\"As someone serves up, someone\",gold,puts a cushion under armchair and kneels.,looks admiringly at the spread in front of her.,is gathered on the dance floor.,takes a breath and nods.\n17572,lsmdc3016_CHASING_MAVERICKS-6739,12291,\"She wears a troubled gaze. Turning away, she\",She wears a troubled gaze.,\"Turning away, she\",gold,reaches for the chair.,presses her lips over hers.,sinks down to the floor.,leaves the cabin and hurries out.\n17573,lsmdc3016_CHASING_MAVERICKS-6739,12287,\"As a giant wave rolls over the teen, a surfing buddy with longer hair faces someone solemnly. Now, someone\",\"As a giant wave rolls over the teen, a surfing buddy with longer hair faces someone solemnly.\",\"Now, someone\",gold,peeks out from behind a mirrored partition.,listens to his weather radio at work.,leads the pedestrians toward a bank spread across the front wheel of a mechanical train.,spies someone's face while looking over his shoulder.\n17574,lsmdc3016_CHASING_MAVERICKS-6739,12284,\"Silhouetted against the blue sky, someone and his three surfing buddies gaze out at the water. As someone smiles proudly, someone\",\"Silhouetted against the blue sky, someone and his three surfing buddies gaze out at the water.\",\"As someone smiles proudly, someone\",gold,\"holds a dolly from its rack, then sniffs and peers through the engineer faces.\",\"plants his hands on their white things, and touches his friends to grin.\",allows one wave after another to crash down on him.,carries the kite now and soars through the air toward the city.\n17575,lsmdc3016_CHASING_MAVERICKS-6739,12290,\"She steps in past him, halts, then lowers the hood of her raincoat. She\",\"She steps in past him, halts, then lowers the hood of her raincoat.\",She,gold,opens it and slaps back to face.,wears a troubled gaze.,brushes to the cabinet and slides through the archway.,shares her smile with her sister as she fidgets.\n17576,lsmdc3016_CHASING_MAVERICKS-6739,12288,\"Now, someone listens to his weather radio at work. Someone\",\"Now, someone listens to his weather radio at work.\",Someone,gold,switches off his radio and leaves the deserted after - hours kitchen.,\"stops himself, then enters the booth, gets on a stone, and goes to someone.\",stands and plugs the nose of someone's unit.,grabs a mobile phone and dials a caller.\n17577,lsmdc3016_CHASING_MAVERICKS-6739,12292,\"Turning away, she sinks down to the floor. Someone\",\"Turning away, she sinks down to the floor.\",Someone,gold,comes into the room and gazes at her reflection.,sits up by the window.,returns from the loft and leaves the chair.,joins her on the floor.\n17578,lsmdc3016_CHASING_MAVERICKS-6739,12285,\"As someone smiles proudly, someone allows one wave after another to crash down on him. Out in the water, someone\",\"As someone smiles proudly, someone allows one wave after another to crash down on him.\",\"Out in the water, someone\",gold,\"sees a woman behind his boat, long on the larger, still - lit deck.\",submerges himself in a wave.,holds his electric swords for him.,opens her eyes.\n17579,lsmdc3016_CHASING_MAVERICKS-6739,12286,\"Out in the water, someone submerges himself in a wave. Squinting in the sun, his shortest friend\",\"Out in the water, someone submerges himself in a wave.\",\"Squinting in the sun, his shortest friend\",gold,shows him at a tower rise with someone and a woman watching on the port side.,gives someone a disapproving look.,drags him over a section of the river.,wears a knit cap.\n17580,lsmdc3016_CHASING_MAVERICKS-6739,12289,\"Unlocking the front door, he lets someone inside. She\",\"Unlocking the front door, he lets someone inside.\",She,gold,rips open a metal door and swings it flat on the pavement.,shuts the door and comes out.,\"steps for her closet, then climbs down and hurries out of the room.\",\"steps in past him, halts, then lowers the hood of her raincoat.\"\n17581,anetv_fJEXzQ0L1uU,3934,Various shots of signs are shown as well as people walking around a field and getting ready for events. Many people,Various shots of signs are shown as well as people walking around a field and getting ready for events.,Many people,gold,are shown speaking to the camera and leads into clips of people playing clips.,are interviewed for the camera and show people waving and getting ready on the sides.,shoot up weapons and run to one another and end by throwing darts at the ground.,are seen walking around the field with one person throwing another catch.\n17582,anetv_fJEXzQ0L1uU,3935,Many people are interviewed for the camera and show people waving and getting ready on the sides. People,Many people are interviewed for the camera and show people waving and getting ready on the sides.,People,gold,get shot of one hitting the ball.,are talking around watching computer screen on the beach.,is cleaning a reception as well as sitting in place.,wave to the camera and stand around holding signs while more speak to the camera and show games of hopscotch.\n17583,lsmdc0022_Reservoir_Dogs-59225,17659,\"Someone paces back and forth, in and out of frame, rehearsing the anecdote. He is reading it pretty good, but he is still reading it from the page, and every once in a while he\",\"Someone paces back and forth, in and out of frame, rehearsing the anecdote.\",\"He is reading it pretty good, but he is still reading it from the page, and every once in a while he\",gold,is alternatively hugging and climbing on top.,demonstrates to patron extremely the it to make this harder.,does n't know it.,stumbles over his words.\n17584,anetv_5ssP_EapV9Q,19119,They play a game of hockey while skating past one another. The men,They play a game of hockey while skating past one another.,The men,gold,end playing the game with their coach walking past.,continue playing and game to where they hit a ball.,continue to skate around while the camera captures their movements.,hit the ball back and fourth while the camera pans around during their performance.\n17585,anetv_5ssP_EapV9Q,9237,A group of players are seen playing hockey on the ice. People continuously,A group of players are seen playing hockey on the ice.,People continuously,gold,watch the contestants as people watch and play fooseball.,\"walk around the court, kicking the ball around.\",hit the puck back and forth over the net.,skate around the ice while pushing a puck.\n17586,anetv_5ssP_EapV9Q,9238,People continuously skate around the ice while pushing a puck. The men,People continuously skate around the ice while pushing a puck.,The men,gold,moves past one another and ends by skating away.,continue to throw into baskets and play back and fourth while other man watches.,continue on the game while people walk around him during the game.,begin hitting a ball back and fourth while passing another ball.\n17587,anetv_5ssP_EapV9Q,19118,A small group of hockey players are seen skating around the ice. They,A small group of hockey players are seen skating around the ice.,They,gold,hit the ball back and forth.,courses with bolts of lacrosse hooked from the sides.,are playing a game of soccer.,play a game of hockey while skating past one another.\n17588,anetv_R0B5bBr6t8w,12176,Boys in gym class passes the ball to a partner who then takes a shot. The boy,Boys in gym class passes the ball to a partner who then takes a shot.,The boy,gold,misses a skip and throws one ball across the field.,\"throws the ball to the two boys, loosens it three times, and throw it into a basketball on the wall.\",returns to the top of the basketball key and passes it to his partner who takes a shot.,slides his face to his brother while pulling.\n17589,anetv_R0B5bBr6t8w,7533,A man in grey throws a ball at a man in white. The man in white,A man in grey throws a ball at a man in white.,The man in white,gold,makes a layup shot and runs out of camera frame while the man in gray retrieves the ball.,outfit without ready to throw him another throw.,walks over to the man and hits him with a hose.,throws it down and kneels over sand.\n17590,anetv_R0B5bBr6t8w,7534,The man in white makes a layup shot and runs out of camera frame while the man in gray retrieves the ball. A second man in white,The man in white makes a layup shot and runs out of camera frame while the man in gray retrieves the ball.,A second man in white,gold,throws a ball at the first man in white out of camera frame.,runs through the ice.,shorts throws one on a competition but also has n't hit a man.,takes off of the girls shirt boy and pins him down against the wall.\n17591,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10129,\"In pairs, dancers leap across the stage. Out of breath, he\",\"In pairs, dancers leap across the stage.\",\"Out of breath, he\",gold,\"dashes into an guestroom, revealing a large white cat, which snaps off.\",kicks his hips out at the dance.,raises the high rises on stage others.,grabs a curtain to brace himself.\n17592,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10132,\"The students gather above them. Outside a public high school, someone\",The students gather above them.,\"Outside a public high school, someone\",gold,shows someone's cd to passing students.,\"is standing at the top of the stairs, propping his handbag across the table.\",sweeps up a path of oil and flowers.,pins up a bow and shows an award.\n17593,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10125,The teacher pushes someone down into a deep knee bend. He,The teacher pushes someone down into a deep knee bend.,He,gold,falls on his back.,pulls the boy off his belt.,leaps into the chair then pounds his hands under a faucet.,raises it up like a sharp left fist.\n17594,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10127,\"In the next trio, someone dances clumsily and out of sync. As they lie on the floor, someone\",\"In the next trio, someone dances clumsily and out of sync.\",\"As they lie on the floor, someone\",gold,does one arm push - ups.,stands on the elegant stage at the same time.,unrolls a lipstick and closes her lips into a sheet of paper.,does n't look forwards.\n17595,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10122,\"In someone's room, someone dumps a pile of demo cds on the bed. He\",\"In someone's room, someone dumps a pile of demo cds on the bed.\",He,gold,\"opens a cd case, takes out a disc, and puts it in a stereo.\",drags someone to the window again.,strolls across the field and springs to his feet.,\"sleeps in the center of the stove, the light pours down.\"\n17596,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10123,\"He opens a cd case, takes out a disc, and puts it in a stereo. Someone\",\"He opens a cd case, takes out a disc, and puts it in a stereo.\",Someone,gold,goes through the far bottom of the house.,\"taking out the paper, she sits and walks past the gym.\",moves his shoulders to the beat.,places the lemons on the counter.\n17597,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10120,\"Now, a Mercedes sits parked outside someone's house. Someone, someone, and someone\",\"Now, a Mercedes sits parked outside someone's house.\",\"Someone, someone, and someone\",gold,walk up the front steps.,get on the car.,sit and chat with someone.,arrive at their hotel.\n17598,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10128,\"Someone nearly crushes his partner. In pairs, dancers\",Someone nearly crushes his partner.,\"In pairs, dancers\",gold,tortured their maroon uniforms.,work on their machines.,run across the room.,leap across the stage.\n17599,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10131,\"Someone peeks around some of the other girls for a better look. Spinning out of control, someone\",Someone peeks around some of the other girls for a better look.,\"Spinning out of control, someone\",gold,sees someone and a man reaches into her hair.,falls off the stage and lands on his stepfather.,throws someone a knife and grabs the chain.,yanks out his bed.\n17600,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10126,\"He falls on his back. In the next trio, someone\",He falls on his back.,\"In the next trio, someone\",gold,unfolds sheet black paper around him.,pulls out their tentacles.,looks around someone again.,dances clumsily and out of sync.\n17601,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10124,\"Someone studies the back of the cd case. The next day at the girls school disguised as someone, someone\",Someone studies the back of the cd case.,\"The next day at the girls school disguised as someone, someone\",gold,swings a blanket onto the peg.,awkwardly squats beside someone who eyes him.,walks toward the study and finds herself finding the cover under a tree.,creates a beautiful autumn party.\n17602,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10130,Someone leaps across the stage. Someone,Someone leaps across the stage.,Someone,gold,and arthur look at someone's caps as he listens.,lands on her back and pins someone back on the crate.,casts another yellow split to the ground.,peeks around some of the other girls for a better look.\n17603,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-253,10121,\"Someone, someone, and someone walk up the front steps. In someone's room, someone\",\"Someone, someone, and someone walk up the front steps.\",\"In someone's room, someone\",gold,puts a slip of paper on a nearby tree.,carefully opens the door with a small automaton beside her.,dumps a pile of demo cds on the bed.,dawns pale feather's strip bath robe with a pair of orange shorts.\n17604,anetv_CGIrDfEP5lE,14738,A man is riding a lawn mower outside a house. He,A man is riding a lawn mower outside a house.,He,gold,rides a hard lawn mower over the grass.,is standing next to him mowing the yard using the lawn mower.,\"goes around in circles, covering the lawn.\",is using a lawn mower to stop a lawn mower.\n17605,anetv_CGIrDfEP5lE,5414,Another girl is dancing behind her. The second girl,Another girl is dancing behind her.,The second girl,gold,goes in and takes some more tongs.,continues dancing toward the camera.,runs toward people while a referee walks around.,stands and starts talking animatedly.\n17606,anetv_CGIrDfEP5lE,14739,\"He goes around in circles, covering the lawn. A little girl\",\"He goes around in circles, covering the lawn.\",A little girl,gold,chases and dances behind the mower.,came and help him with the rake of the yard to cut the grass.,follows him and opening his binoculars down on three books.,walks in front of the tv and moves in front of him.\n17607,lsmdc1011_The_Help-78560,7130,\"Someone, behind the counter, leans into someone. His wise dark eyes\",\"Someone, behind the counter, leans into someone.\",His wise dark eyes,gold,tremble and someone's eyebrows.,reflected in the moon.,peer at her through his owl - like glasses.,fixed on someone's face before he looks across the room at someone.\n17608,lsmdc1011_The_Help-78560,7134,\"They all turned to look at her with their somber smooth skinned faces. Her eyes brimming with tears, she\",They all turned to look at her with their somber smooth skinned faces.,\"Her eyes brimming with tears, she\",gold,steps into the center of the room.,digs into the phone and stares at the clerk.,turns away and smirks in unison.,caresses her bruised shoulder.\n17609,lsmdc1011_The_Help-78560,7133,She finds the living room full of maids. They all,She finds the living room full of maids.,They all,gold,move into her room.,\"look around, pausing to listen, looking offscreen at the grand party.\",lean in the net.,turned to look at her with their somber smooth skinned faces.\n17610,lsmdc1011_The_Help-78560,7131,His wise dark eyes peer at her through his owl - like glasses. She,His wise dark eyes peer at her through his owl - like glasses.,She,gold,rushes over to someone.,finds bright lights illuminate several doors into the lobby.,turns and looks up at the young girl holding someone's front hand and the sky.,meets his middle finger.\n17611,anetv_8pR6NBu7Ay0,12610,A man is joined by two others in front of a display of guns. They,A man is joined by two others in front of a display of guns.,They,gold,hold out a metal position along with metal plank work wood.,\"spin around to the other side, then the wall untie it.\",\"talk about the guns, then join a game of paintball outdoors, hiding behind obstacles as they shoot at each other.\",pull a gun from a hole.\n17612,anetv_8pR6NBu7Ay0,12609,The outside of a box containing a gun is shown. A man,The outside of a box containing a gun is shown.,A man,gold,is walking through an elevator with a bike.,is standing up talking to a man.,is joined by two others in front of a display of guns.,breaks a hold on a chain while sparks fly after it.\n17613,anetv_KZ-6u3MUp44,2781,\"A man spins, throwing a disc through the air. He\",\"A man spins, throwing a disc through the air.\",He,gold,lowers his arm to catch it.,stops to walk between two tall troops.,drops the ball back onto the ground.,walks around the field afterward.\n17614,anetv_KZ-6u3MUp44,2780,A game is in progress in front of a crowd. A man,A game is in progress in front of a crowd.,A man,gold,set an arrow at each end of a track.,\"is taking a ball towards a racquetball court, followed by his teammates in the audience.\",walks through the grass and puts his head under a sand bar.,\"spins, throwing a disc through the air.\"\n17615,lsmdc3092_ZOOKEEPER-45289,14681,\"She moves off and waves her arms at the dj on a balcony, then returns to her date. She\",\"She moves off and waves her arms at the dj on a balcony, then returns to her date.\",She,gold,takes someone's arm and leads him to the dancefloor.,\"enters the living room with her back to someone, who holds a bible.\",\"bounces out of her high heels, facing her.\",\"hastily watches patrons ascend quickly as the taxi approaches below, coaches them.\"\n17616,lsmdc3092_ZOOKEEPER-45289,14683,\"Someone grabs two of the hanging silk drapes. Playful smile, she\",Someone grabs two of the hanging silk drapes.,\"Playful smile, she\",gold,holds the bag up onto the floor.,pounds on the door frame.,carries her luggage back in.,grabs her own pair of drapes.\n17617,lsmdc3092_ZOOKEEPER-45289,14682,She takes someone's arm and leads him to the dancefloor. Someone,She takes someone's arm and leads him to the dancefloor.,Someone,gold,turns in disgust and presses the hall.,\"gazes at his wife, and nods him into the hold.\",scoops up the food with his hand.,grabs two of the hanging silk drapes.\n17618,lsmdc3092_ZOOKEEPER-45289,14684,\"Playful smile, she grabs her own pair of drapes. He\",\"Playful smile, she grabs her own pair of drapes.\",He,gold,starts to sway a little.,\"helps himself to his feet, then pulls down his sleeve.\",pulls someone's necklace.,swoops down the stringy - haired girl.\n17619,anetv_y3xcwZpcLvI,726,A female gymnast mounts a low beam. She,A female gymnast mounts a low beam.,She,gold,does backflips on the water.,\"spins the hula hoop on her feet, then dives into the hoop and does cartwheels, raising the hands.\",turns and balances on the beam.,jumps back down onto the mat.\n17620,anetv_y3xcwZpcLvI,727,She turns and balances on the beam. She,She turns and balances on the beam.,She,gold,spins on her dress.,\"turns and flips repeatedly, dodging the intruders.\",runs across the room and walks alone in the lift.,goes forward doing jumps and springs.\n17621,anetv_ptukoEe5jvI,13677,A woman dances after making a serve and hugs her friend. A player,A woman dances after making a serve and hugs her friend.,A player,gold,scores a point and gives teammate a high five.,throws something and pours them into a pitcher.,appears wearing a pink beanie in white shorts.,stops and the woman puts a bottle pass the rooftop.\n17622,anetv_ptukoEe5jvI,13676,A group of beach goers play a game of volley ball on a busy beach wearing swimsuits. A woman,A group of beach goers play a game of volley ball on a busy beach wearing swimsuits.,A woman,gold,dances after making a serve and hugs her friend.,walks behind a instructor in front of the screen and plays hockey.,waves a white flag amid the goal and slides on a runway.,is now dressed in white robes that is the side of an braided table.\n17623,anetv_ptukoEe5jvI,13678,A player scores a point and gives teammate a high five. Beach goers,A player scores a point and gives teammate a high five.,Beach goers,gold,are seen playing in the water.,stand on the lakeside in a pool of light.,go up to a track over a marathon.,are on the event goers watching.\n17624,anetv_rwUlqI6HWyY,11510,A chef in a white chef's uniform stands in an empty commercial kitchen and demonstrates how to make an omelette. A chef,A chef in a white chef's uniform stands in an empty commercial kitchen and demonstrates how to make an omelette.,A chef,gold,is hurled over water and enjoys the salad and needs to slice it down.,stands in a kitchen talks to the camera before taking an egg and pouring it into a mini black skillet.,chops the vegetables on top of a cooker with lettuce and onions and fries.,puts ingredients for the cake and materials to eat and baked to make the cookie sandwich.\n17625,anetv_rwUlqI6HWyY,11511,The chef maneuvers the egg over the stove with a fork gently prodding it. The chef then,The chef maneuvers the egg over the stove with a fork gently prodding it.,The chef then,gold,\"finishes mixed pasta, cuts the sandwich and talks to the camera while he talks about the end.\",pours paint into a large container and mixes it.,grabs the pan and speaks to the camera about the final jump he has in the camera for the last few seconds.,fold the egg in half in the skillet and plates it on a white plate before turning to the camera and talking again.\n17626,anetv_wlx5YuEHsO8,10357,\"A white intro screen appears with special effects and a lot of coloring that include words, numbers, and logos. Men are then shown in a dark room filled with people as they put on shirts, shakes hands with others, pose and then they begin a game of Foosball while images of their flag briefly show up on the screen and a lot of people around them\",\"A white intro screen appears with special effects and a lot of coloring that include words, numbers, and logos.\",\"Men are then shown in a dark room filled with people as they put on shirts, shakes hands with others, pose and then they begin a game of Foosball while images of their flag briefly show up on the screen and a lot of people around them\",gold,compete.,watch as different men team up against one another.,are coloring players and other people as the shooting of hockey scores for the goal of the middle of the game.,are seen playing side by side.\n17627,anetv_wlx5YuEHsO8,10358,\"Men are then shown in a dark room filled with people as they put on shirts, shakes hands with others, pose and then they begin a game of Foosball while images of their flag briefly show up on the screen and a lot of people around them watch as different men team up against one another. When they are done playing a man and a woman\",\"Men are then shown in a dark room filled with people as they put on shirts, shakes hands with others, pose and then they begin a game of Foosball while images of their flag briefly show up on the screen and a lot of people around them watch as different men team up against one another.\",When they are done playing a man and a woman,gold,are standing and talking at a mic while one man hands over a box to another man and they walk off the stage.,are in a red shirt talking as a woman gives an interview and they both appear nervous.,start singing they are game in the ring with a polo match.,begin dancing up and down the pit with their hands.\n17628,lsmdc3081_THOR-37920,17260,Someone releases the tension on his bow and lowers it. An agent,Someone releases the tension on his bow and lowers it.,An agent,gold,illuminated up crystal windows above.,\"steps up and handcuffs someone, who offers no resistance.\",\"bends over with the book, and passes it over to someone, examining it with a badge.\",\"hands his jacket, but he leaps back.\"\n17629,lsmdc3083_TITANIC2-39090,732,Someone opens a box containing the Heart of the Ocean. He,Someone opens a box containing the Heart of the Ocean.,He,gold,hurries out of the garage.,fastens the necklace with the blue heart - shaped diamond on someone.,flies backwards into an old giant.,waves to the baby.\n17630,lsmdc3083_TITANIC2-39090,730,\"In her berth, someone sits at a vanity table and holds her silver hand mirror. She\",\"In her berth, someone sits at a vanity table and holds her silver hand mirror.\",She,gold,\"has a bite, except for the door in the mirror.\",\"swings her other legs up, kicks her around the shoulder, but manages to get the stole from her.\",sets down the mirror as someone opens the door.,\"chuckles, empties the water in her eyes, and massages it in the tumbler.\"\n17631,lsmdc3083_TITANIC2-39090,735,She places her right hand over the diamond. Someone and someone,She places her right hand over the diamond.,Someone and someone,gold,walk along an upper deck.,arrange a yellow bag.,get up and look at it.,walk away quickly with his shoes and their hearts butts.\n17632,lsmdc3083_TITANIC2-39090,733,He fastens the necklace with the blue heart - shaped diamond on someone. Someone,He fastens the necklace with the blue heart - shaped diamond on someone.,Someone,gold,takes the package and hands it to someone.,glares at someone and the tiny boy shakes his head.,strokes the necklace as she gazes at her own reflection in the vanity mirror.,picks up the letter and holds it to his lips.\n17633,lsmdc3083_TITANIC2-39090,729,\"Someone looks down as the man walks off. In her berth, someone\",Someone looks down as the man walks off.,\"In her berth, someone\",gold,sits at a vanity table and holds her silver hand mirror.,\"dives back into the open drawer, keeping her eyes straight.\",crosses to a window and unravels on the knob.,\"stands alone in her dressing gown, her hands shaking some slipping leaves.\"\n17634,lsmdc3088_WHATS_YOUR_NUMBER-42268,11558,\"He opens her shirt, looks at her naked body. They\",\"He opens her shirt, looks at her naked body.\",They,gold,continue to watch her but she leans her head against the confusion.,\"kiss, wrapping their arms around each other.\",\", she hangs up.\",are separate.\n17635,lsmdc3088_WHATS_YOUR_NUMBER-42268,11557,\"Later, they return to someone's apartment and someone shuts the door behind them. As they face each other, he\",\"Later, they return to someone's apartment and someone shuts the door behind them.\",\"As they face each other, he\",gold,\"glances at the door, then moves into the room.\",\"looks into her eyes, then lowers his gaze.\",enters the bathroom.,meets someone's father's gaze.\n17636,lsmdc3088_WHATS_YOUR_NUMBER-42268,11566,Someone rolls on his back. He,Someone rolls on his back.,He,gold,nods and unscrews his role a gun.,is enveloped in a cloud of dust as he gets in the lift.,\"walks out, putting this on.\",\"rests his hand on his knee, then pats the bed.\"\n17637,lsmdc3088_WHATS_YOUR_NUMBER-42268,11553,\"They each strip out of their underwear, hurry to the edge of the dock. They share a gaze, then someone\",\"They each strip out of their underwear, hurry to the edge of the dock.\",\"They share a gaze, then someone\",gold,mounts a narrow banquette leading into them and pulls up a grenade.,\"offers his hand, which someone accepts.\",blinks from ear to ear.,touches it and snaps it in.\n17638,lsmdc3088_WHATS_YOUR_NUMBER-42268,11562,He measures six inches with his hands. They,He measures six inches with his hands.,They,gold,get a check from his boot and put it in place.,\"man runs across the floor, picks up balance and pins him to the ground.\",proudly places two cards inside.,share an affectionate gaze.\n17639,lsmdc3088_WHATS_YOUR_NUMBER-42268,11552,\"Following him, someone drops her high heels and loses the button - down shirt. They each\",\"Following him, someone drops her high heels and loses the button - down shirt.\",They each,gold,bow again as someone punches him in the abdomen with both hands before heading through the exit.,take a curtained off the bottle.,form a serious pink cocktail.,\"strip out of their underwear, hurry to the edge of the dock.\"\n17640,lsmdc3088_WHATS_YOUR_NUMBER-42268,11565,\"Smiling, she turns on her side. Someone\",\"Smiling, she turns on her side.\",Someone,gold,braces herself against a worktop.,rolls on his back.,sweeps out of view.,sets his hat down and turns around.\n17641,lsmdc3088_WHATS_YOUR_NUMBER-42268,11564,\"The next morning, our view descends to the bed. She\",\"The next morning, our view descends to the bed.\",She,gold,removes her hand from his unshaven face.,enters someone's suite.,ambles onto the couch and picks up her things.,twists it open and winks at someone.\n17642,lsmdc3088_WHATS_YOUR_NUMBER-42268,11560,She backs into her bedroom and they fall on her bed. He lies beside her and she,She backs into her bedroom and they fall on her bed.,He lies beside her and she,gold,\"peers at him, her eyes closed.\",covers up a bit.,\"wakes, staring at him.\",wraps her in a tight embrace.\n17643,lsmdc3088_WHATS_YOUR_NUMBER-42268,11556,\"They tread water within a circle of moonlight reflected on the rippling surface of the water, then swim for the dock. Later, they return to someone's apartment and someone\",\"They tread water within a circle of moonlight reflected on the rippling surface of the water, then swim for the dock.\",\"Later, they return to someone's apartment and someone\",gold,shuts the door behind them.,stops at an alarm.,sits on the canvas.,dives from under water.\n17644,lsmdc3088_WHATS_YOUR_NUMBER-42268,11559,She unbuckles his belt and he pulls her close. She backs into her bedroom and they,She unbuckles his belt and he pulls her close.,She backs into her bedroom and they,gold,fall on her bed.,sway onto a piece of music.,fly into the fireplace.,sit huddled together at the door.\n17645,lsmdc3088_WHATS_YOUR_NUMBER-42268,11555,\"Together, they leap into the water. They\",\"Together, they leap into the water.\",They,gold,touch the edge of the table.,walk through a dance with the young woman.,\"tread water within a circle of moonlight reflected on the rippling surface of the water, then swim for the dock.\",land in the sand.\n17646,lsmdc3088_WHATS_YOUR_NUMBER-42268,11563,\"They share an affectionate gaze. The next morning, our view\",They share an affectionate gaze.,\"The next morning, our view\",gold,follows his surroundings inside.,nears the swanky arizona house.,descends to the bed.,stops through his vehicle as he rides in the main house area.\n17647,lsmdc3088_WHATS_YOUR_NUMBER-42268,11569,\"Later at a flower shop, someone stands alone with an open binder in her hand. She\",\"Later at a flower shop, someone stands alone with an open binder in her hand.\",She,gold,notices someone walking by with a clipboard and returns her attention to the binder.,gives the baby a squeeze and places it on her lap.,stares off with the glittering stars painting its muzzle muzzle in the sunlight.,throws a trash seller towards someone.\n17648,lsmdc3088_WHATS_YOUR_NUMBER-42268,11568,\"She fills her purse with various items including one of two cell phones. Later at a flower shop, someone\",She fills her purse with various items including one of two cell phones.,\"Later at a flower shop, someone\",gold,looks over his shoulder at the applauding living room.,\"drinks vodka from a water jug, calm someone.\",stands alone with an open binder in her hand.,stumbles down on a sofa.\n17649,lsmdc3088_WHATS_YOUR_NUMBER-42268,11567,She falls off the bed. She,She falls off the bed.,She,gold,fills her purse with various items including one of two cell phones.,\"whacks someone with shoulder, lifting her body with him.\",drops the gun on her desk.,\"flips out of bed, opening letters on a shelf.\"\n17650,anetv_2l50doS2wB4,14198,The man scrubs the shoes down with a rag while continuing to speak to the camera. In the end he,The man scrubs the shoes down with a rag while continuing to speak to the camera.,In the end he,gold,shows off the techniques as well as dogs as well as reacting to the camera and still speaking.,shows how to scrub the shoes and walk off.,speaks to the camera while looking around and speaking to the camera.,holds up the shoes while still speaking and giving the camera a thumbs up.\n17651,anetv_2l50doS2wB4,14197,A man is seen holding onto a pair of shoes while speaking to the camera and spraying them down. The man,A man is seen holding onto a pair of shoes while speaking to the camera and spraying them down.,The man,gold,shaves the face while fourth and well well with more objects.,uses the camera on his legs and begins tattooing the legs.,scrubs the shoes down with a rag while continuing to speak to the camera.,speaks to the camera on a man demonstrating how to wash a small metal box.\n17652,anetv_fbIEeQknsuo,7028,Several tourists walk alongside the camels while some them ride the camels. A group of tourists,Several tourists walk alongside the camels while some them ride the camels.,A group of tourists,gold,are in a school standing behind them.,are riding the camels as they enjoy themselves.,are camels pushing the camels.,are walking away by the camels.\n17653,anetv_fbIEeQknsuo,18852,The people seated on the camels go riding the camels. A man in a white t - shirt stands in front of the group and,The people seated on the camels go riding the camels.,A man in a white t - shirt stands in front of the group and,gold,begins running between sticks.,waves his hand in front of a dog.,photographs the camel walk.,kneels down among some dwarf women.\n17654,anetv_fbIEeQknsuo,18851,A group of people are gathered around some camels. The people seated on the camels,A group of people are gathered around some camels.,The people seated on the camels,gold,are sitting on their horses.,is in front of them as the soldiers are riding camels.,are riding horses and camels.,go riding the camels.\n17655,anetv_fbIEeQknsuo,7026,The camel owner who is dressed in a large robe helps the tourists climb up on the camel's back as they begin their ride. The camels,The camel owner who is dressed in a large robe helps the tourists climb up on the camel's back as they begin their ride.,The camels,gold,start to walk on the wet sands on the shore.,hold the truck around without asking them to sit down.,pass by the little girl from which rides through on top of the camel and pulls along.,continue pulling on the motorcycles with the hog yanking the rope from the kids.\n17656,anetv_fbIEeQknsuo,7027,The camels start to walk on the wet sands on the shore. Several tourists,The camels start to walk on the wet sands on the shore.,Several tourists,gold,get out of the saloon.,run over to rub their hands over their face.,are helping and people sit on the garden in the field area.,walk alongside the camels while some them ride the camels.\n17657,anetv_fbIEeQknsuo,7029,A group of tourists are riding the camels as they enjoy themselves. One of the tourists,A group of tourists are riding the camels as they enjoy themselves.,One of the tourists,gold,smiles as she poses for the camera while on the camel's back.,\"is visible under the waves, watching.\",go in for a race.,is tossed into the camel when something hops to his purchase.\n17658,anetv_fbIEeQknsuo,7025,Some of the tourists are already on the camels while the others are waiting for their turn. The camel owner who is dressed in a large robe,Some of the tourists are already on the camels while the others are waiting for their turn.,The camel owner who is dressed in a large robe,gold,is sitting on a camel as another camel sits in the bus.,\"wrapped in a white pair of scissors and talking in front of a dull, white shoe.\",and a peeler is mowing his lawn in a fast pace.,helps the tourists climb up on the camel's back as they begin their ride.\n17659,anetv__A5iOie5VkM,4985,Then he steps across the board so he is backwards. And then,Then he steps across the board so he is backwards.,And then,gold,shows several times flying side.,begins to move fast and crawl as she walks across the length.,he seems distracted when the others approach the ledge.,moves around the side of the board.\n17660,anetv__A5iOie5VkM,4998,The man then starts exercising on a stair stepper. the man,The man then starts exercising on a stair stepper.,the man,gold,continues to spin in through the iron bars.,continues martial arts and moving up and down.,completes and entire workout routine.,flips over a ski bar and pans slowly around the upper floor.\n17661,anetv__A5iOie5VkM,4987,He proceeds to go all the way around the board in different directions. He,He proceeds to go all the way around the board in different directions.,He,gold,makes a turn around the board.,turns into them several times before getting to the surface.,is shown again in slow motion as the darts on their board.,perform the same trick and fades on a large wave.\n17662,anetv__A5iOie5VkM,4997,A young man is in a studio gym standing. the man then,A young man is in a studio gym standing.,the man then,gold,starts exercising on a stair stepper.,\"begins to pull himself back on the wall, occasionally lifting the weights in his arms.\",is kicking three batons in the gym.,begins walking into the team room.\n17663,anetv__A5iOie5VkM,4984,He steps across the step board to the opposite side. Then he,He steps across the step board to the opposite side.,Then he,gold,falls into her arms as the first step is riding alongside.,\"is on the sword, swinging his sword and coming in through the gates as he yells.\",takes herself very quickly without digging.,steps across the board so he is backwards.\n17664,anetv__A5iOie5VkM,4988,He makes a turn around the board. And,He makes a turn around the board.,And,gold,stares after the interrogator.,continues to cross the board in all different directions while dancing.,rises onto the bed.,points onto the grill in a glass.\n17665,anetv__A5iOie5VkM,4983,A young man is stepping up and down in a forward motion on a step apparatus in a gym studio and his arms are also moving forwards and backwards. He,A young man is stepping up and down in a forward motion on a step apparatus in a gym studio and his arms are also moving forwards and backwards.,He,gold,sways and pointing the stick into place.,seems to stop running and does some flipping moves to do the barbells.,steps across the step board to the opposite side.,performs a degree l dancing form and lands on his back while he looks around the riding.\n17666,anetv__A5iOie5VkM,4986,And then moves around the side of the board. He,And then moves around the side of the board.,He,gold,proceeds to go all the way around the board in different directions.,takes a final glimpse of a figurine woman crossing the monkey bars.,\"bends down, chinese something down, and pours something into his hand.\",zooms away on the target and pretends to hit the back of the boards.\n17667,anetv__HeqBIO9TgQ,4615,The little girl walks away. The lady,The little girl walks away.,The lady,gold,walks in the yard behind her and continues cutting.,rinses her dishes and puts them on a shelf.,blows her hair in the pavement.,puts down her stuff until a girl spots her.\n17668,anetv__HeqBIO9TgQ,4618,We see the shelf and the dishes. We then,We see the shelf and the dishes.,We then,gold,see people surfing in the shower.,see the red screen again.,see the closing credits screen.,see the ending plates.\n17669,anetv__HeqBIO9TgQ,4616,The lady rinses her dishes and puts them on a shelf. We,The lady rinses her dishes and puts them on a shelf.,We,gold,see the counter wash and wash them hands.,see the screen and somebody driving down another.,see ingredients in the water.,see the boys standing behind the lady.\n17670,lsmdc3059_SALT-28873,14610,The congregation and choir take their seats. The u. s. president,The congregation and choir take their seats.,The u. s. president,gold,\"goes to his knees, raises his spear, and ducks.\",kisses his wife then treads forward and tenderly lays his hand on the casket.,hands rises on his point to a gesturing woman.,is on the screen.\n17671,lsmdc3059_SALT-28873,14609,\"At the front of the cathedral, the flag draped casket lies before the apse. In front of it, a soldier in dress uniform\",\"At the front of the cathedral, the flag draped casket lies before the apse.\",\"In front of it, a soldier in dress uniform\",gold,steps out wearing a dark black suit.,ends a salute and marches away.,appears in the crowd.,touches someone's upper arm.\n17672,lsmdc3059_SALT-28873,14613,\"Now Matveyev takes the podium. In a stairwell, someone\",Now Matveyev takes the podium.,\"In a stairwell, someone\",gold,faces a blazing soldier.,dashes up several flights.,attaches other things to the theater.,uncorks a folded spectacular condom.\n17673,lsmdc3059_SALT-28873,14611,\"Someone jogs through an access tunnel with a low ceiling. As the steam fills a chamber beneath her, she\",Someone jogs through an access tunnel with a low ceiling.,\"As the steam fills a chamber beneath her, she\",gold,finds a huge brass benefit watch from a fountain.,falls over onto a stone floor clutching a coat beam.,reaches a door and peeks through its window into a hallway.,sits on the edge of the bed.\n17674,lsmdc3059_SALT-28873,14606,\"In front of him, dozens of men and women in the choir wear white robes and hold songbooks as they sing soberly. In the congregation, Matveyev\",\"In front of him, dozens of men and women in the choir wear white robes and hold songbooks as they sing soberly.\",\"In the congregation, Matveyev\",gold,struggles to push the boat and sway up the music.,sits on a stool.,colossus swallows a rafting segment.,greets a middle - aged woman with auburn hair.\n17675,lsmdc3059_SALT-28873,14607,\"In the congregation, Matveyev greets a middle - aged woman with auburn hair. He\",\"In the congregation, Matveyev greets a middle - aged woman with auburn hair.\",He,gold,hugs her in a blue dress.,approaches a lanky man in a row behind her.,nuzzles a woman's neck with long black hair.,finds someone eyeing baskets.\n17676,lsmdc3059_SALT-28873,14612,\"As the steam fills a chamber beneath her, she reaches a door and peeks through its window into a hallway. Two security agents\",\"As the steam fills a chamber beneath her, she reaches a door and peeks through its window into a hallway.\",Two security agents,gold,lead someone from the den.,\"enter a restaurant, then hurries to check the clock.\",duck down on the walkway.,enter from another door.\n17677,lsmdc1028_No_Reservations-82965,5932,\"Incredulous, someone lies back on the couch. A gaggle of schoolchildren\",\"Incredulous, someone lies back on the couch.\",A gaggle of schoolchildren,gold,appear on the stairs.,get blown out of the house.,run down the steps of someone's school.,pop out of the house and investigate someone's way.\n17678,lsmdc1028_No_Reservations-82965,5934,She smiles as she sees someone walking out on her own. The two of them,She smiles as she sees someone walking out on her own.,The two of them,gold,\"walk through the room, towards the entrance of the ambulance.\",laugh and fight the rally.,walk along the street together.,is several degrees dressed.\n17679,lsmdc1028_No_Reservations-82965,5933,Someone stands with the other parents and guardians on the pavement outside. She,Someone stands with the other parents and guardians on the pavement outside.,She,gold,drags someone out of her house.,are on the edge of the street.,smiles as she sees someone walking out on her own.,\"has taken upside to the ground, he seems confused at once body being only twelve feet away a few inches.\"\n17680,anetv_sMO2IlNgDuw,8579,\"The camera is then seen moving around a room, walking down stairs and following the young girl. The girl\",\"The camera is then seen moving around a room, walking down stairs and following the young girl.\",The girl,gold,walks back into her room to play with her toy while the camera follows.,continues to walk around while speaking to the camera and end by jumping down.,continues spinning her body around several times while still looking around and moving her arms around.,begins dancing around the woman while still looking the other way.\n17681,anetv_sMO2IlNgDuw,8578,A young child is seen playing with a toy and putting lip stick on her lips. The camera,A young child is seen playing with a toy and putting lip stick on her lips.,The camera,gold,pans back to the man and is still watching the play.,\"is then seen moving around a room, walking down stairs and following the young girl.\",pans back to her and showing off a series of using strokes.,pans around to side and the person pushing it in her hand.\n17682,lsmdc1010_TITANIC-76943,7624,\"Nearby, a porcelain doll's face juts out of the silt. Someone's lamps\",\"Nearby, a porcelain doll's face juts out of the silt.\",Someone's lamps,gold,catch her gaze.,shine into a bunk room.,turn into light lighting.,shine as the water glows with lights.\n17683,lsmdc1010_TITANIC-76943,7618,\"Outside, the other sub releases a second remotely operated vehicle. Someone\",\"Outside, the other sub releases a second remotely operated vehicle.\",Someone,gold,\"the opening, someone picks someone up then flips off a board.\",smooths a window with a long sub handle.,leads the way down a dusty low onto a grassy hillside.,descends into an open pit in the ship's hull.\n17684,lsmdc1010_TITANIC-76943,7620,Someone moves through an opening. Its bright lights,Someone moves through an opening.,Its bright lights,gold,glows below a beautiful red - saber lion.,illuminate the rows of cages.,zoom out across the water at the panes of an ambulance.,\"illuminate a crystal chandelier, still dangling from a ceiling.\"\n17685,lsmdc1010_TITANIC-76943,7623,\"A partially decayed boot lies on the sediment beside a pair of eyeglasses missing one lens. Nearby, a porcelain doll's face\",A partially decayed boot lies on the sediment beside a pair of eyeglasses missing one lens.,\"Nearby, a porcelain doll's face\",gold,washes the air while it forms a storm of bubbles.,drops into the doorway.,\"illuminates the skull's edge, and now, someone throws open the container and hoists the trunk.\",juts out of the silt.\n17686,lsmdc1010_TITANIC-76943,7619,Someone descends into an open pit in the ship's hull. Someone,Someone descends into an open pit in the ship's hull.,Someone,gold,passes its surface across the water and surfaces.,throws a knife onto a balcony.,sits in a hammock.,moves through an opening.\n17687,lsmdc1010_TITANIC-76943,7622,Someone glides up a corridor. A partially decayed boot,Someone glides up a corridor.,A partially decayed boot,gold,\"is close, following on a sleeping us.\",sits by masked agents.,lies on the sediment beside a pair of eyeglasses missing one lens.,stands in the middle of the counter.\n17688,lsmdc1010_TITANIC-76943,7617,\"Powered by a small propeller, someone glides past the door. Outside, the other sub\",\"Powered by a small propeller, someone glides past the door.\",\"Outside, the other sub\",gold,flies through snow as water swarm through the corridors of the bank below.,rotates around someone's body.,releases a second remotely operated vehicle.,returns to the burning room.\n17689,lsmdc1010_TITANIC-76943,7625,Someone's lamps shine into a bunk room. A broken door,Someone's lamps shine into a bunk room.,A broken door,gold,lies on the floor beside a dilapidated bed frame.,\"rests on a wall, and he looks up to see where he is seated.\",rests and falls on someone's body.,is attached to the ceiling.\n17690,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60276,3408,He appears to be in some kind of trance. Someone,He appears to be in some kind of trance.,Someone,gold,is nervous.,\"has said, amused, pleased with himself.\",\"seething at the meeting, someone sighs.\",drink from each hand.\n17691,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60276,3406,The Atmosphere is very sinister. The path,The Atmosphere is very sinister.,The path,gold,goes into a slow - motion shot.,splits into three passages.,slumps behind the cruiser's wheel.,is performed once more.\n17692,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60276,3407,\"The Fellowship are nervously waiting. while someone sits, staring intently at the 3 tunnel mouths in front of him. He\",\"The Fellowship are nervously waiting. while someone sits, staring intently at the 3 tunnel mouths in front of him.\",He,gold,can glow on in his face as he turns and shakes the pumpkin off.,appears to be in some kind of trance.,head back to a human wall and lands in a utility basket.,\"lights are behind the house, cars are parked by a garage window.\"\n17693,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60276,3405,\"They continue up a steep stair, passing through a dwarf cemetery. The graves are despoiled. dwarf skeletons are strewn about and Goblin Graffiti\",\"They continue up a steep stair, passing through a dwarf cemetery.\",The graves are despoiled. dwarf skeletons are strewn about and Goblin Graffiti,gold,in the murky ranks of their runners.,is scrawled on monuments in dried dwarf blood.,are one wall with highlights.,is trying to untangle themselves.\n17694,anetv_AAfFlwaXW3c,5874,People works in a construction site. A construction worker,People works in a construction site.,A construction worker,gold,is seated on a baseball board.,sits and drinks from a cup.,leads an army military patrol.,is working at a window shows.\n17695,anetv_AAfFlwaXW3c,5876,\"Then, a man arrives and lift a weight, while the construction worker watch, and then holds up a round sign. After, the construction worker\",\"Then, a man arrives and lift a weight, while the construction worker watch, and then holds up a round sign.\",\"After, the construction worker\",gold,sits next the man who wears a gold medal on his chest.,folds a metal rod and shows it and shows how it works.,uses a tool to remove process of climbing snow.,uses a hand to measure.\n17696,anetv_AAfFlwaXW3c,16293,Several scenes depict construction workers working on a building. A man,Several scenes depict construction workers working on a building.,A man,gold,\"leans against the wall and to a shelf of welding bottles, welding.\",vacuums a gardening machine using a wooden machine that is attached to the roof.,touches his skateboard along with wooden shacks by different paths.,\"sits inside, drinking a cup of coffee.\"\n17697,anetv_AAfFlwaXW3c,5875,\"A construction worker sits and drinks from a cup. Then, a man\",A construction worker sits and drinks from a cup.,\"Then, a man\",gold,licks the ice ice cream with a spoon.,\"arrives and lift a weight, while the construction worker watch, and then holds up a round sign.\",drinks water as the smiling drinks.,walk and eats a candy tiered purple bread while eating an ice cream cone.\n17698,anetv_T7kOKW76EsA,12273,Paper is shown laid out on a floor while feet walk back and a vacuum is seen sucking up the paper. The vacuum moves all along the floor sucking up the paper and the feet,Paper is shown laid out on a floor while feet walk back and a vacuum is seen sucking up the paper.,The vacuum moves all along the floor sucking up the paper and the feet,gold,begin to move up as well as show that separates the chair.,show how it can be washed out.,continue pulling on the video equipment while looking off into the distance.,walk back into frame.\n17699,anetv_T7kOKW76EsA,3617,A vacuum is shown afterwards moving in and out. The vacuum,A vacuum is shown afterwards moving in and out.,The vacuum,gold,begins working out as well as spraying down the room.,is put on a tripod.,continues to sweep around it.,sucks up the mess on the floor while a person's feet are shown.\n17700,anetv_T7kOKW76EsA,3616,A close up of a floor is shown with a person walking in and out of frame. A vacuum,A close up of a floor is shown with a person walking in and out of frame.,A vacuum,gold,is seen laying on the floor and leads into another person laying tiles down and laying others remove the tiles.,is seen using the vacuum cleaner working on the floor.,is laid down by the dogs up close and the person putting the hose down.,is shown afterwards moving in and out.\n17701,anetv_Et8xkGzQOTA,8469,A person starts dancing on the street. A man,A person starts dancing on the street.,A man,gold,starts break dancing in front of a car.,picks up the wheel.,stands on a hillside.,is walking across the sand.\n17702,anetv_Et8xkGzQOTA,8468,A man in a black hat is standing on the street. A person,A man in a black hat is standing on the street.,A person,gold,grabs an orange radio and places it on the ground to show it.,starts dancing on the street.,is walking up a hill to go.,hits a pinata with his hand.\n17703,lsmdc0033_Amadeus-67011,6229,\"He runs out of he room, into his workroom, and shuts he door. Now a little scared herself, someone\",\"He runs out of he room, into his workroom, and shuts he door.\",\"Now a little scared herself, someone\",gold,\"looks up at her, shocked.\",moves into the kitchen where he finds an egg with a television on.,grabs her by the hair and turns to the old guys.,goes to he front door and opens it cautiously.\n17704,lsmdc0033_Amadeus-67011,6230,\"Someone stands there, floridly dressed as usual. Someone\",\"Someone stands there, floridly dressed as usual.\",Someone,gold,reluctantly takes her own hand and handkerchief out of sight.,watches with the left look on his face.,is a shiver way through his.,is seen peeking out from the kitchen.\n17705,lsmdc1011_The_Help-78421,10264,\"Later, someone pulls up outside Brent's Drug Store Diner and hurries in carrying her briefcase. People\",\"Later, someone pulls up outside Brent's Drug Store Diner and hurries in carrying her briefcase.\",People,gold,see a maid standing outside the door with a newspaper in her hand.,speed toward the house.,are already sitting in a booth.,sit on the bench behind her.\n17706,lsmdc1011_The_Help-78421,10265,People are already sitting in a booth. Someone,People are already sitting in a booth.,Someone,gold,slides a milkshake in front of someone.,sit down on a dance floor.,grabs a letter at its base.,is sitting down at a table and dialing.\n17707,lsmdc3018_CINDERELLA_MAN-8196,1972,\"Now inside her dark house, someone heads down a hallway and opens a door. The defending champion\",\"Now inside her dark house, someone heads down a hallway and opens a door.\",The defending champion,gold,takes someone a cell phone.,turns on to her.,lingers in the hallway.,\"stares down a nearby street, clutching the fedora pooling up on its shoulders.\"\n17708,lsmdc3018_CINDERELLA_MAN-8196,1967,\"Reaching the aisle, someone wears a silky blue robe. With someone just behind him, the fighter\",\"Reaching the aisle, someone wears a silky blue robe.\",\"With someone just behind him, the fighter\",gold,\"holds the mic against his neck, gripping the guard's bell.\",aims him on then takes off her jacket and starts for the door.,walks past the compact cabinet.,passes two guards and looks around the packed arena.\n17709,lsmdc3018_CINDERELLA_MAN-8196,1970,\"With a nervous look, he glances back at someone then starts toward the ring. Following his manager, someone\",\"With a nervous look, he glances back at someone then starts toward the ring.\",\"Following his manager, someone\",gold,climbs the stairs to the ring.,looks sympathetically at her watchful cousin.,watches his shocked son with a glimmer of his fury.,spies someone waving his arms at her.\n17710,lsmdc3018_CINDERELLA_MAN-8196,1969,\"Someone eyes the staring crowd. With a nervous look, he\",Someone eyes the staring crowd.,\"With a nervous look, he\",gold,ventures wearily to his throne.,glances back at someone then starts toward the ring.,gets out of the booth by approaches someone.,goes to a window.\n17711,lsmdc3018_CINDERELLA_MAN-8196,1971,\"A tall balding man removes his hat and someone nods. As someone faces the crowd, his wife\",A tall balding man removes his hat and someone nods.,\"As someone faces the crowd, his wife\",gold,stares down at one of the beds.,gives him a kiss on the shoulder.,glances briefly at someone.,grins in a bright red hat and waves.\n17712,lsmdc3018_CINDERELLA_MAN-8196,1968,Someone takes a deep breath. Someone,Someone takes a deep breath.,Someone,gold,stands with her arms against his head and looks up at the crowd.,looks up from his makeshift packets.,drives someone from someone.,eyes the staring crowd.\n17713,anetv_WKLLTGbDI7w,12315,The recipe for making limeade is shown. Limes,The recipe for making limeade is shown.,Limes,gold,are juiced and then combined with water and sugar.,is made and fencing.,are being sprayed by a dish.,of the men and female staff give a tutorial on how to use bar to make food.\n17714,lsmdc3035_INSIDE_MAN-2220,17658,Someone bounces her shapely leg. Someone's gaze,Someone bounces her shapely leg.,Someone's gaze,gold,lingers on the woman.,softens with a smile with her lips closed.,stays fixed on him.,\"lingers on the heavy wagon, then taps the passenger seat.\"\n17715,lsmdc3035_INSIDE_MAN-2220,17657,Someone turns off the recorder. Someone,Someone turns off the recorder.,Someone,gold,binds her swollen eyes.,bounces her shapely leg.,waves the tiller down.,cuts paper away from the sorcerer.\n17716,anetv_3MJQEQ98168,17871,Kid is hanging from horizontal stairs on the playground. the kid,Kid is hanging from horizontal stairs on the playground.,the kid,gold,stands at the edge of the stairs in the playground.,fly the web and try to push it.,wearing a white shirt looks at the boy and keeps his hands and a gift.,jumps off the board and shoots around.\n17717,anetv_3MJQEQ98168,14130,A little boy is using the monkey bars on a playground. He,A little boy is using the monkey bars on a playground.,He,gold,slips off the rope and balances on the bars.,performs the instructor down the slide.,returns to a boy of mother drinking from his.,climbs across the bars to the other side.\n17718,anetv_3MJQEQ98168,14131,He climbs across the bars to the other side. He,He climbs across the bars to the other side.,He,gold,recruits are displayed and paperwork.,gets down from the bars and jumps up and down.,rips the titanic water from the floor.,\", someone finds himself in his way, almost standing facing his border.\"\n17719,anetv_3MJQEQ98168,17870,Little kid is standing in a playground with he feet on the stairs. kid,Little kid is standing in a playground with he feet on the stairs.,kid,gold,gets out of the toilet with a broom.,is hanging from horizontal stairs on the playground.,is sitting on the grass of the playground going across the monkey bars.,is standing in front of a hopscotch on the ground playing a hopscotch post in the ground.\n17720,lsmdc3032_HOW_DO_YOU_KNOW-2347,4915,\"With a thoughtful look, someone hangs up. Now she\",\"With a thoughtful look, someone hangs up.\",Now she,gold,flings the packages around and makes her way to the taj mahal room.,packs a duffel bag in her room.,flips a lamp bolt from a bag then sets it outside.,zips someone's jacket onto a matching clothing store.\n17721,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15580,\"Looking outside a door, someone sees the guns engaging. Someone\",\"Looking outside a door, someone sees the guns engaging.\",Someone,gold,steps closer to her confidently.,feels his way down the hallway.,fires his pistol in the air.,puts the dart in his belt and points at someone.\n17722,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15593,A plunging case nearly strikes someone. He,A plunging case nearly strikes someone.,He,gold,swings at someone who's hurled backwards.,leaps from the ground.,hurls someone off the roof.,\"peers down, on the shield.\"\n17723,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15619,\"The two men work their way to their feet. Now as the building burns in the darkness, the father and son\",The two men work their way to their feet.,\"Now as the building burns in the darkness, the father and son\",gold,sit up in someone's arms.,crack up amongst the rocks above and leans in.,arrive to connect with a second set of monitors for the ball.,shuffle out among the wreckage.\n17724,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15615,\"Sitting up, someone rests his back against the basin's elevated rim. Grabbing someone's shirt, he\",\"Sitting up, someone rests his back against the basin's elevated rim.\",\"Grabbing someone's shirt, he\",gold,hangs it over his head.,helps him out of the water.,slips inside the tent where he finds someone standing by the tub.,returns to the pool.\n17725,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15586,\"Opening his eyes, someone sees the chopper shooting upward and losing control. Someone\",\"Opening his eyes, someone sees the chopper shooting upward and losing control.\",Someone,gold,sees the truck hanging out and hurls the radio aside.,sweeps his suit straight toward the night sky.,\", someone climbs onto the wheel of a boat and pulls it into the air.\",just finding someone in a gray armored suit sitting in an suv.\n17726,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15603,\"Outside, the helicopter nears the building. Someone\",\"Outside, the helicopter nears the building.\",Someone,gold,\"quickly shakes the metal hand, steps forward and pours his time against the lock.\",\"looks away, beaming.\",\"helps someone to his feet, as burning debris rains down around them.\",\"climbs aboard, falling onto the side of the dune.\"\n17727,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15616,\"Grabbing someone's shirt, he helps him out of the water. Settling next to his father, someone\",\"Grabbing someone's shirt, he helps him out of the water.\",\"Settling next to his father, someone\",gold,bows his head demurely.,drifts awkwardly to the dark - haired patients.,gulps down breaths of air and winces painfully.,sweeps glances at his clock.\n17728,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15592,He knocks someone down and quickly stands. Someone,He knocks someone down and quickly stands.,Someone,gold,climbs up on his boulder.,drags someone to the edge.,wraps his chain around the rifle rail slowing him down.,hobbles down a ladder.\n17729,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15613,\"Underwater, we view his slowly paddling legs. He\",\"Underwater, we view his slowly paddling legs.\",He,gold,stands patiently and goes into the current of land.,struggles to his feet as someone staggers away.,\"steps back, then turns and climbs slightly back.\",dives beneath the surface.\n17730,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15604,\"Someone helps someone to his feet, as burning debris rains down around them. Positioning the chopper in front of the room, someone\",\"Someone helps someone to his feet, as burning debris rains down around them.\",\"Positioning the chopper in front of the room, someone\",gold,narrows her eyes and grips the weapon trigger.,rubs his fingers along some metal.,slides the barrel - mounted coin against someone's neck.,pounds on the wall beside an alien filling.\n17731,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15589,\"In slow motion, he runs across a series of docks spanning the roof as sparks fly from the rotor blades hitting the sign. Someone\",\"In slow motion, he runs across a series of docks spanning the roof as sparks fly from the rotor blades hitting the sign.\",Someone,gold,crawls over as it makes its way over the giant cavern below.,zips through the dust - filled air.,\"rips his shirt off, revealing whips rock, covered with some blueprint.\",steps up and bends his jacket over his hood.\n17732,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15599,\"As the truck swings wide, someone lets go. Flailing, he\",\"As the truck swings wide, someone lets go.\",\"Flailing, he\",gold,flies towards an enormous window in slow motion.,backs out of the parking lot.,takes off his helmet.,\"frees himself, then sinks over the surface of the water.\"\n17733,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15590,\"Someone zips through the dust - filled air. With glaring eyes, someone\",Someone zips through the dust - filled air.,\"With glaring eyes, someone\",gold,dives toward someone who tries to aim at him.,\"strides towards it, peering right through them.\",dips his hands to his lap.,\"picks himself up, showcases his sifter.\"\n17734,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15594,\"He hurls someone off the roof. In slow motion, he\",He hurls someone off the roof.,\"In slow motion, he\",gold,smashes down two barrels through the plastered wall.,loses his footing and falls over the roof of the desk.,throws his arms forward.,\"plummets - face up, his eyes wide.\"\n17735,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15607,\"Someone sees the helicopter rapidly approaching. In slow motion, he and someone\",Someone sees the helicopter rapidly approaching.,\"In slow motion, he and someone\",gold,leap out of the shattered window as the chopper's nose collides with the building.,break into the fiery bank and stagger to a halt.,jump over a railing on a train platform.,emerge from behind soldiers.\n17736,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15614,\"Someone leans his head back in a relieved sigh, then swims to the pool's edge. Sitting up, someone\",\"Someone leans his head back in a relieved sigh, then swims to the pool's edge.\",\"Sitting up, someone\",gold,lifts his humiliated gaze to someone door.,rests his back against the basin's elevated rim.,twists his fingers to the bag.,sinks to his knees and tucks into his pocket.\n17737,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15608,\"In slow motion, he and someone leap out of the shattered window as the chopper's nose collides with the building. Someone\",\"In slow motion, he and someone leap out of the shattered window as the chopper's nose collides with the building.\",Someone,gold,\"cautiously on the marble floor, then points to the steward and sets down his pistol.\",gives a final look.,indicates the hero from a country rooftop.,watches them fall with glaring eyes.\n17738,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15609,\"Someone watches them fall with glaring eyes. In extreme slow motion, the flailing men\",Someone watches them fall with glaring eyes.,\"In extreme slow motion, the flailing men\",gold,thrashes kennel.,turn back to crawl at the hobbits.,plummet beside the aircraft.,surroundings a tub lying empty.\n17739,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15585,\"Someone drives the truck out of the cargo hold, tilting the chopper's nose upward. Opening his eyes, someone\",\"Someone drives the truck out of the cargo hold, tilting the chopper's nose upward.\",\"Opening his eyes, someone\",gold,pulls at the packaged newspaper across it.,sees the chopper shooting upward and losing control.,stares up at a map of oncoming traffic.,grits his teeth and looks upwards zookeeper its eyes.\n17740,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15598,\"Kicking his legs, someone keeps hold of the bumper. Someone\",\"Kicking his legs, someone keeps hold of the bumper.\",Someone,gold,moves the itself off and closes the chain.,\"whips pant legs up, hitting a massive squid - like creature with a studded - like skull.\",continues to the opposite side.,dodges two cars in the hall.\n17741,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15611,\"The chopper's nose drags along the building, sending a barrage of debris into the air. They\",\"The chopper's nose drags along the building, sending a barrage of debris into the air.\",They,gold,get through the fence.,plunge into the leak - filled pool as the helicopter lands on the flaming truck.,herd to a puddle.,step out beyond a muzzle light on the trapdoor.\n17742,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15600,\"Flailing, he flies towards an enormous window in slow motion. Someone\",\"Flailing, he flies towards an enormous window in slow motion.\",Someone,gold,adjusts his lighter and takes his seat at a wheel.,\"lands hard, rolling in shattered glass on the floor.\",pokes his bunk like a spider.,appears to point around the edge of the cement tower.\n17743,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15606,Someone flies at the building. Someone,Someone flies at the building.,Someone,gold,looks at him soberly.,sees the helicopter rapidly approaching.,throws someone in front of the car.,throws down a can.\n17744,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15617,\"Settling next to his father, someone gulps down breaths of air and winces painfully. Someone\",\"Settling next to his father, someone gulps down breaths of air and winces painfully.\",Someone,gold,gets to his feet and hurries down a passageway.,shifts his weight and grimaces.,races down the bridge towards a school.,looks up gently with golden strokes.\n17745,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15583,Someone secures a chain to the truck and tops inside. Someone,Someone secures a chain to the truck and tops inside.,Someone,gold,\"leans his head against a window, confidently sipping a small red coffee.\",whips out a knife at someone 'face.,clenches her jaw and fires.,appears from behind a cables.\n17746,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15596,\"Someone hangs from the truck's bumper, as the chopper spins. Someone\",\"Someone hangs from the truck's bumper, as the chopper spins.\",Someone,gold,runs along the roof's edge.,kicks his chest out.,catches a glimpse of the wounded soldier holding a mallet.,grimaces as he fires.\n17747,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15618,Someone shifts his weight and grimaces. The two men,Someone shifts his weight and grimaces.,The two men,gold,study each other again as a few cars approach.,work their way to their feet.,pose with each other.,lean in and down together.\n17748,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15581,Someone fires his pistol in the air. The heavy caliber bullets,Someone fires his pistol in the air.,The heavy caliber bullets,gold,skeleton someone's legs silhouette structures its way.,dive out under it.,extinguishes several hydra vehicles and approaching fans.,\"rip into the building, following the helicopter's searchlights.\"\n17749,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15610,\"In extreme slow motion, the flailing men plummet beside the aircraft. The chopper's nose\",\"In extreme slow motion, the flailing men plummet beside the aircraft.\",The chopper's nose,gold,perfect and its graceful outline rises inches on a thin wallpaper.,\"drags along the building, sending a barrage of debris into the air.\",still pressing down a plume of planes.,\"is broken in the grating, where people are asleep on the side.\"\n17750,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15588,\"Someone hops to his feet. In slow motion, he\",Someone hops to his feet.,\"In slow motion, he\",gold,runs across a series of docks spanning the roof as sparks fly from the rotor blades hitting the sign.,swings the clock's wings open.,trips bravely and lands in his path.,pumps himself to his knees and launches into his arms.\n17751,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15591,\"With glaring eyes, someone dives toward someone who tries to aim at him. He\",\"With glaring eyes, someone dives toward someone who tries to aim at him.\",He,gold,\"shakes his head, occasionally seeing the surf as people knocked over.\",knocks someone down and quickly stands.,snaps the lights on.,hands the raises a launcher.\n17752,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15602,\"Regaining control, someone loops the chopper around. He\",\"Regaining control, someone loops the chopper around.\",He,gold,shields his face from the smoke.,climbs into another sidecar.,stacks of the checkpoint on the screen.,dashes down the corridor and takes a train lift to the pilot side.\n17753,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3381,15605,\"Positioning the chopper in front of the room, someone narrows her eyes and grips the weapon trigger. Someone\",\"Positioning the chopper in front of the room, someone narrows her eyes and grips the weapon trigger.\",Someone,gold,flies at the building.,climbs a staircase leading to the steps.,takes the bell and rolls over.,writhes on his head.\n17754,lsmdc1038_The_Great_Gatsby-87623,16349,People lie in bed together in the dark. People,People lie in bed together in the dark.,People,gold,use tables at either end of a table.,stand in a hallway.,stand side by side on the platform.,lie next to each other in bed.\n17755,anetv_NnLjEbG31ZE,10728,A group of friends ride inter tubes through small rapids in a tropical jungle. The group,A group of friends ride inter tubes through small rapids in a tropical jungle.,The group,gold,carries down another escalator.,ride down the ramp while dragging their equipment over the water.,goes past large boulders popping up out of the water.,rides on together underwater on rapids.\n17756,anetv_7mDiIJ9r4EU,10861,He is water skiing over ramps and turning flips. Another man,He is water skiing over ramps and turning flips.,Another man,gold,is seen riding down on roads as he skis off.,is sitting at the top of the dive.,is watching as he performs stunts on the skis.,is sitting on a rowing rowing machine and pulling motor equipment.\n17757,anetv_7mDiIJ9r4EU,4865,\"He performs tricks, flipping and going up multiple ramps. He\",\"He performs tricks, flipping and going up multiple ramps.\",He,gold,does the flips up in the air.,\"performs several tricks, flipping through the air and curves in slow motion.\",spins from the pole's feet and lands on a mat.,\"comes to a stop, then is shown speaking to the camera as others complete the same tasks.\"\n17758,anetv_7mDiIJ9r4EU,10860,A man jumps off a pier into the ocean. He,A man jumps off a pier into the ocean.,He,gold,waves the sail in the water.,is water skiing over ramps and turning flips.,is walking around from the boat.,is drug from a boat on the sail.\n17759,anetv_7mDiIJ9r4EU,4864,An althletic male takes off on a water ski. He,An althletic male takes off on a water ski.,He,gold,reads other persons com skills fitness.,\"follows several people, standing behind a dog.\",are doing a brazilian swallows jump.,\"performs tricks, flipping and going up multiple ramps.\"\n17760,anetv_3G3Zear4vog,10295,Two girls are seen moving quickly around the room while switching places and looking into a camera. The younger girl,Two girls are seen moving quickly around the room while switching places and looking into a camera.,The younger girl,gold,shows several shots of the girl hitting him while the camera captures her.,continues speaking to the camera while some looking into the camera.,laughs to the camera while putting on makeup and the other moves around quick.,looks back and pushes her hair all along the wall while moving her arm all the way up and taking a bow.\n17761,anetv_R6kXT4Spiwo,15100,We see the scores and a title screen. We,We see the scores and a title screen.,We,gold,see the address on the scoreboard.,see the mountains outside in an arena.,see the final results and scores.,see the drill being scored.\n17762,anetv_R6kXT4Spiwo,15098,We switch to see people on a diving board diving into an Olympic pool. We,We switch to see people on a diving board diving into an Olympic pool.,We,gold,see a graph and move across the screen.,see a person do a dive from a handstand.,see people swimming in scuba diving.,we see four men standing side to side and the continues diving in the pool.\n17763,anetv_R6kXT4Spiwo,15099,We see a person do a dive from a handstand. We,We see a person do a dive from a handstand.,We,gold,see the scores and a title screen.,see a lady in the striking pool.,see a wrestler screaming.,see a man running a beam.\n17764,anetv_R6kXT4Spiwo,19212,A diver is standing at the top of a diving board. He,A diver is standing at the top of a diving board.,He,gold,runs around a diving board a third time.,prepares to jump from the high dive multiple times.,gets back into the water and walks away.,gets on a diving board in the water.\n17765,anetv_R6kXT4Spiwo,19213,He prepares to jump from the high dive multiple times. He,He prepares to jump from the high dive multiple times.,He,gold,falls into the sand and falls and lands in the water.,\"throws a ball on the water, then finds a ball.\",is replayed in slow motion.,\"jumps, flipping as he hits the water.\"\n17766,anetv_l_T3zfRQhic,7621,He is using a tree trimmer on his short trees. He,He is using a tree trimmer on his short trees.,He,gold,\"goes down the side, trimming them one by one.\",is still there as he tries to continue the mower and trimming it's side.,uses a knife to disassemble.,shows different bushes in the yard.\n17767,anetv_l_T3zfRQhic,6519,A man is shown in his back yard. He,A man is shown in his back yard.,He,gold,mops the floor with a mop.,continues cutting the grass with the ax.,\"walks slowly down the street, using the detail squares to play his guitar.\",is using a chain saw on a large hedge.\n17768,anetv_l_T3zfRQhic,7620,A man is standing in his yard. He,A man is standing in his yard.,He,gold,throws the other man through the woods.,is using a tree trimmer on his short trees.,throws the darts to a rack in front of him.,is pushing a utensil in the yard.\n17769,anetv_l_T3zfRQhic,6520,He is using a chain saw on a large hedge. He,He is using a chain saw on a large hedge.,He,gold,struggles with the shears so he looks round and speaks to him.,uses it to trim the leaves and shape the hedges.,rakes down the trash and landing the can.,sets up a tree in front of him.\n17770,anetv_maHLwXvNN3w,9951,A man is seen pulling a pair of drums closer. He then,A man is seen pulling a pair of drums closer.,He then,gold,pours the drink down and pours it into a glass.,begins playing an instrument.,swings around the drums on the bongos while bowing and continues to speak to the camera.,begins playing on the drums.\n17771,anetv_maHLwXvNN3w,9952,He then begins playing on the drums. The man,He then begins playing on the drums.,The man,gold,pans the torch to sideways down.,continues to play while looking off into the distance.,puts the orange end in and begins ballroom dancing.,comes up and holds the blue accordion to his nose.\n17772,anetv_maHLwXvNN3w,4352,\"A man is standing in the room playing a set of orange and white congas with a green taped cross on it. As the man continues, he\",A man is standing in the room playing a set of orange and white congas with a green taped cross on it.,\"As the man continues, he\",gold,\"leaves the decorative movement, stops and begins to remove the overcoat.\",\"moves back because he finishes and measures to a replay, then stops at the right corner of the room and starts talking again.\",begins to move his lips for a while as if he is talking to someone else in the room.,begins dissolving the instrument up and down.\n17773,anetv_TdNiQsZNJTU,15631,A group of people are swimming in a large indoor pool. They,A group of people are swimming in a large indoor pool.,They,gold,stand in front of the crowd watching and clap.,swim laps back and forth as they go.,watch to a blue jacket swimming near the cattle.,are lobbing towards the ground to look up at people.\n17774,anetv_fkgojk18K0E,12033,We see a lady in a dancing costume. She,We see a lady in a dancing costume.,She,gold,picks up the shoes and begins to sharpen her shoes.,shows her ballet routine performing.,lifts the batons and surveys her body into the air.,points at her hips and waist.\n17775,anetv_fkgojk18K0E,12034,She points at her hips and waist. She,She points at her hips and waist.,She,gold,begins to belly dance slowly.,nods and moves on purposefully.,dancer raises her hand and thrusts her legs back and forth under it.,\"flips briefly, but bangs her ear against someone's forehead.\"\n17776,anetv_fkgojk18K0E,12037,She goes slower then goes fast again. The lady,She goes slower then goes fast again.,The lady,gold,\"finishes her dance, stops and bows.\",laughs and turns towards him and stops.,waves underneath his shoulder.,comes and stops and faces the camera.\n17777,anetv_fkgojk18K0E,12036,She picks up speed and spins her hands. She,She picks up speed and spins her hands.,She,gold,goes slower then goes fast again.,slows to a end and starts to pedal routines.,is unstable several times.,enters into her apartment and finds it empty.\n17778,anetv_fkgojk18K0E,12035,She begins to belly dance slowly. She,She begins to belly dance slowly.,She,gold,picks up speed and spins her hands.,moves her legs from the bar and puts a foot forward in the end.,smiles as she finishes and looks into the dancer.,goes down the slide.\n17779,anetv_qxmrH20IA2Q,9499,Three people are watching after the stones. Two people,Three people are watching after the stones.,Two people,gold,are brushing the front of the stone.,are in the middle wearing horses.,mount the camel moves.,are hit by ball in the middle of the sand.\n17780,anetv_qxmrH20IA2Q,9498,The stones heat each other causing them to move forward. Three people,The stones heat each other causing them to move forward.,Three people,gold,are running on the water as one time and walk on rope.,are sitting in the pool drinking from the pipes.,are watching after the stones.,successfully raise a steeply performance as the crowd cheers.\n17781,anetv_hCFCYe_Jp-k,14035,There's a woman in a gray shirt and black tights and very short hair performing tricks with a small stick in her backyard by the swing. She,There's a woman in a gray shirt and black tights and very short hair performing tricks with a small stick in her backyard by the swing.,She,gold,watches and starts her walk around the house as her dance is sped up and the girl is shown again from the boy.,demonstrates how to jump rope.,is holding a pinata and turns in to catch her by turning and throwing her off the ground.,is juggling between two sticks in her hand and trying to catch one stick while throwing the other in the air.\n17782,anetv_mE02JHvCEUM,13101,A man is seen playing a piano and singing in a public place. People,A man is seen playing a piano and singing in a public place.,People,gold,he begins playing with her hair and explains them how to explain how the song starts.,\"finishes, looking away.\",stop to speak to the camera and switch on the lighted playing.,stand around him and watch him play on the side.\n17783,anetv_mE02JHvCEUM,13102,People stand around him and watch him play on the side. A man,People stand around him and watch him play on the side.,A man,gold,does a gymnastics routine in front of him.,hands out pamphlets while the man continues to play piano and others watch.,throws a ball.,holds him in front of stage.\n17784,anetv_mE02JHvCEUM,3494,A man is seen playing a piano in the middle of a busy mall while people stand around him and watch. The man,A man is seen playing a piano in the middle of a busy mall while people stand around him and watch.,The man,gold,continues to move around and jump to the camera and back around and ends with the baton spinning and waving to the camera.,stops and turns around again while the man continues to speak at the crowd.,continues to play as people continue to stop and watch him on the side.,continues playing and ends by hitting a tennis ball around the field.\n17785,anetv_Yd3G3732WbI,3053,Several shots are then shown of them wrapping up the paper and using yarn to wrap the gift. Then,Several shots are then shown of them wrapping up the paper and using yarn to wrap the gift.,Then,gold,presents around ribbons while looking off into the distance.,begin playing the spoons and ends by other placing hands on the table.,end by laughing and smiling to the camera.,clear up and show wrapping tape in gift paper.\n17786,anetv_Yd3G3732WbI,3052,Two women are seen speaking to the camera and leads into them boxing gifts and wrapping paper around them. Several shots,Two women are seen speaking to the camera and leads into them boxing gifts and wrapping paper around them.,Several shots,gold,of a playground are shown with people jumping around around the area as well as outdoors.,are then shown several more of the machine being shown followed by the man rubbing up paint all along the paper.,are then shown of them moving around in the ring close to one another and shortly done with dancing.,are then shown of them wrapping up the paper and using yarn to wrap the gift.\n17787,anetv_Yd3G3732WbI,5701,A woman is shown with another woman in a living room. They,A woman is shown with another woman in a living room.,They,gold,cut out a strip of wrapping paper and show how to stuff the box with gift paper.,\"come behind him, looking into a mirror.\",play alone a fooseball table.,swing around the monkey bars.\n17788,anetv_Yd3G3732WbI,5702,They cut out a strip of wrapping paper and show how to stuff the box with gift paper. They then,They cut out a strip of wrapping paper and show how to stuff the box with gift paper.,They then,gold,use the box to flow out the credits.,wrap the paper around and wrapping them around.,tie a plant and tape around them.,tape the material together and place a bow on it.\n17789,anetv_TiiSh9R89vM,10787,There are two people out on a snow tubing slope where one of them is video taping his experience of snow tubing with his friend. There,There are two people out on a snow tubing slope where one of them is video taping his experience of snow tubing with his friend.,There,gold,\", two people in purple on boats, soapy tubes in the woods in the middle of the desert.\",is slopes and houses in the mountains of tubers getting ready to drop back on and when the finish kayaking.,the woman standing around the beach.,'s a woman who picks up some ice that's fallen o the ground.\n17790,anetv_TiiSh9R89vM,10788,There's a woman who picks up some ice that's fallen o the ground. There,There's a woman who picks up some ice that's fallen o the ground.,There,gold,is standing in the sky.,watches her eyes burn wide.,are several people waiting in line to go snow tubing.,keep lying while doing it.\n17791,anetv_TiiSh9R89vM,10790,\"After they reach the top of the slope, they get into their tubes and begin sliding downhill. They\",\"After they reach the top of the slope, they get into their tubes and begin sliding downhill.\",They,gold,ride and slide off the landing safely wall and slide onto the border of the kids.,go down the snow covered slopes till they reach the bottom.,jumps in a steep hill and ends by turning to the girls again.,\"the men get up, walk over to begin when they hit the tubes down over the water and then back down again.\"\n17792,anetv_TiiSh9R89vM,10789,\"There are several people waiting in line to go snow tubing. After they reach the top of the slope, they\",There are several people waiting in line to go snow tubing.,\"After they reach the top of the slope, they\",gold,\"get one and raise their hands, and begin to crouch down on the snow of the t tubes.\",get into their tubes and begin sliding downhill.,\"follow again and down the stream of fast dirt hitting a snowy slope at different angles, for help grappling.\",go down and slide around a ski resort.\n17793,lsmdc3041_JUST_GO_WITH_IT-18668,322,\"Someone pensively rubs his chin. Perched on the edge of a hot tub, someone\",Someone pensively rubs his chin.,\"Perched on the edge of a hot tub, someone\",gold,appears in the doorway and dives out.,stares ahead and lowers the phone.,bounces the brim of its lid.,leans shakily against a stone railing beside a railing.\n17794,anetv_LZEiFNEAyyw,880,A woman is seen spreading lotion all over her face and leads into apply foundation around her eyes. She then,A woman is seen spreading lotion all over her face and leads into apply foundation around her eyes.,She then,gold,puts a razor on the machine and holds up.,applies lotion on her face and then waves to the camera while standing to the camera.,scrubs the girls with the sprayer while speaking to the camera as well as speaking to the camera.,puts lipstick on her lips and rubs more lotion into her skin.\n17795,anetv_LZEiFNEAyyw,12816,A woman holds a lotion bottle in her hands. She,A woman holds a lotion bottle in her hands.,She,gold,uses scissors to move her leg into a holder.,skates an arc around a woman's hair.,starts painting a large flat on the floor.,pumps some of it onto her hands.\n17796,anetv_LZEiFNEAyyw,12817,She pumps some of it onto her hands. She then,She pumps some of it onto her hands.,She then,gold,pours cement onto the floor.,lifts the axe under the surface.,crouches and spits onto the carpet.,rubs the lotion onto her face.\n17797,lsmdc3013_BURLESQUE-5184,737,\"Someone and someone enter his office. Inside, a white - haired man\",Someone and someone enter his office.,\"Inside, a white - haired man\",gold,stands up and shakes his head.,enters two jail room.,heads down a hallway with a balding man with a white kimono wrapped around him.,\"sits at a desk, talking on the phone.\"\n17798,lsmdc3013_BURLESQUE-5184,736,\"Someone lowers her gaze, then looks up and gives an amused roll of the eyes. Onstage, the dancers\",\"Someone lowers her gaze, then looks up and gives an amused roll of the eyes.\",\"Onstage, the dancers\",gold,kneel and admire them with stunned advantage.,\", someone, and someone disperse.\",finish their number to the delight of a packed house.,walk together with black steps forward.\n17799,anetv_LLD4SapVrgQ,14678,Bmx waiting at the gate for the gate to come down and the race to begin. They,Bmx waiting at the gate for the gate to come down and the race to begin.,They,gold,take off on the track going really fast through it really fast.,cut more tight after steps around the track.,returns to going down outside street and into.,walk around with people in the bikes.\n17800,anetv_QylENMzsW9w,9183,A person is mopping the floor of a room. They,A person is mopping the floor of a room.,They,gold,put the vacuum in a plastic bucket.,vacuum down a wall in a bucket.,are mopping under a coffee table.,run with a decrepit tool of laying a fence.\n17801,anetv_QylENMzsW9w,18200,\"A woman appears, mopping the floors. She\",\"A woman appears, mopping the floors.\",She,gold,\"shows the person washing her hands, as well as her washers it up.\",'s the young woman is using a mixer to blend the stem together and the woman peels away a hot silicone drink.,pan over the pot as she washes several red at board.,continues mopping until the floor is clean.\n17802,anetv_QylENMzsW9w,9184,They are mopping under a coffee table. They then,They are mopping under a coffee table.,They then,gold,begin filling two buckets in the buckets.,start over and move in shoes.,put out a marker box and pour the adhesive on rock.,begin to mop under chairs.\n17803,anetv_QylENMzsW9w,18199,A living room in a house is shown. A woman,A living room in a house is shown.,A woman,gold,paints putty onto the strawberries.,\"appears, mopping the floors.\",sits at the bottom of a slide.,leads a bull into a ring.\n17804,lsmdc3027_GET_HIM_TO_THE_GREEK-12441,17778,The pale twilight sky glows over the water. Now someone,The pale twilight sky glows over the water.,Now someone,gold,sleeps on her mother's bed fully fully dressed.,watches tv in his apartment.,enters the elevator and steps forward.,\"'s away, hanging a fish from a chandelier.\"\n17805,lsmdc3018_CINDERELLA_MAN-7898,10476,Someone and someone load the bales onto dolly. Each bundle,Someone and someone load the bales onto dolly.,Each bundle,gold,has their tires up.,lifts the single file away.,is a urine - poison cloth sack.,fills a worker's dolly.\n17806,lsmdc3018_CINDERELLA_MAN-7898,10478,\"In his parked car, someone spots someone and someone walking forward. Someone\",\"In his parked car, someone spots someone and someone walking forward.\",Someone,gold,sees him drive off.,turns his way to the car.,gets up and walks past the horse gate.,drives off at the stubble faced blonde.\n17807,lsmdc3018_CINDERELLA_MAN-7898,10477,\"As they hook another bale, someone nods. In his parked car, someone\",\"As they hook another bale, someone nods.\",\"In his parked car, someone\",gold,blocks someone's jaw.,forces through the roadster.,spots someone and someone walking forward.,screws out a purple bag.\n17808,lsmdc3018_CINDERELLA_MAN-7898,10480,Someone and someone play in a decrepit car parked by the courtyard garages. Someone and a friend,Someone and someone play in a decrepit car parked by the courtyard garages.,Someone and a friend,gold,exit a race cars.,join the arriving painters.,go to her fort.,carry in hats while holding the broken tin in their mouths.\n17809,lsmdc3018_CINDERELLA_MAN-7898,10479,Someone sees him drive off. Someone,Someone sees him drive off.,Someone,gold,stares out of the window as though remorse earlier happened.,walks over his shoulder menacingly.,follows past a bushes.,runs down the alley past someone.\n17810,lsmdc1034_Super_8-8110,8378,\"She lunges at him, pretending to bite his neck. They\",\"She lunges at him, pretending to bite his neck.\",They,gold,\"someone, someone caught the knife and scrambles to the floor.\",\"regard each other, smiling.\",\"watches his friend as he leans forward, a smile emblazoned on his lips.\",snatches the baby from her too.\n17811,lsmdc1034_Super_8-8110,8377,\"Waving her arms around jerkily, she draws closer. She\",\"Waving her arms around jerkily, she draws closer.\",She,gold,sets him down in front of her.,\"lunges at him, pretending to bite his neck.\",hangs up her phone and gazes at her beau.,\"lowers her arms, close her eyes, and tall sharp claws on the bar.\"\n17812,anetv_s5y4xXcphcc,8565,People are seen riding on surf boards with sails along the water. The camera,People are seen riding on surf boards with sails along the water.,The camera,gold,follows their movements and fills them with water.,follows around the people riding on the water.,walks up more clips of men riding around in the water.,follows all the surfers above a river and crashing into other water.\n17813,anetv_s5y4xXcphcc,9156,\"Several men are outside in a large body of water, holding on to large sails as the move on their surfboard. The tasks continues, and the men\",\"Several men are outside in a large body of water, holding on to large sails as the move on their surfboard.\",\"The tasks continues, and the men\",gold,continue surfing and the waves on the yellow board.,are being interviewed while the camera captures their movements.,jump over the jump with their arms up.,pass more people and start to make circles around each other.\n17814,anetv_s5y4xXcphcc,8566,The camera follows around the people riding on the water. They,The camera follows around the people riding on the water.,They,gold,continue to push themselves along the water past one another.,surfing on the beach is shown followed by a person speaking to the camera while several others are shown riding around in a car pushing,rakes around the fence and as they continue to move all around the area while the boy continue to speak.,hugs them and continues guiding the walk.\n17815,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7318,She lies buried in stuffed animals. He,She lies buried in stuffed animals.,He,gold,notices a book covering his ears.,enters her look with the goat.,takes a few toys off of her.,takes the knife down.\n17816,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7309,\"Someone screws her mouth to one side, lifts her brow, and tilts her head. Her father\",\"Someone screws her mouth to one side, lifts her brow, and tilts her head.\",Her father,gold,studies his father as he traces his construction across a landscape.,\"looks to spar, then nods resolutely.\",turns someone head to gaze out through someone on the street before them.,wears a nodes look.\n17817,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7311,\"The boy takes a recoiling step back, then looks around uneasily as he advances. Ahead, a long flat crate\",\"The boy takes a recoiling step back, then looks around uneasily as he advances.\",\"Ahead, a long flat crate\",gold,reflects a vast vast skyline.,lies on a steel table.,lies dead beside him.,\"appears by the chalked torches, which presents full waist supplies.\"\n17818,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7319,He takes a few toys off of her. Someone,He takes a few toys off of her.,Someone,gold,looks at her then stares coldly.,turns his back to a window.,catches it and picks it up.,comes out of his room.\n17819,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7307,They view each other through the cage wire. Someone,They view each other through the cage wire.,Someone,gold,enter the bank and watched in the background.,presses a button into someone's dark shirt.,\"grins, ready to share.\",gives an understanding nod.\n17820,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7316,A third pokes its head out. Now someone,A third pokes its head out.,Now someone,gold,draws the curtains in someone's bedroom.,leans over the scar.,shows a c - someone on someone's stomach.,framed her photo together.\n17821,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7300,\"Someone hands someone a bucket. Smirking, someone\",Someone hands someone a bucket.,\"Smirking, someone\",gold,swivels away and walks toward an old pickup parked nearby.,gives someone a dark look.,swings a statue at the first woman.,looks away thoughtfully as he consults a map.\n17822,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7310,\"In the garage, someone peers into an open bin filled with wriggling mealworms. The boy\",\"In the garage, someone peers into an open bin filled with wriggling mealworms.\",The boy,gold,sits on the bed facing the boy.,\"takes a recoiling step back, then looks around uneasily as he advances.\",presses a button on an empty panel.,smiles as he stands down the street.\n17823,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7315,\"On his way out, he switches off the lights. A third\",\"On his way out, he switches off the lights.\",A third,gold,peer around the house at night.,pokes its head out.,\"notices him, who stares blankly at the ticket.\",rushes over and takes the briefcase.\n17824,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7304,Spar lies on his side. Spar,Spar lies on his side.,Spar,gold,\"throws his arms up, gripping the air.\",pushes a button on the wall.,flips the horse away.,nudges his head closer to someone.\n17825,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7313,He lifts the lid to reveal a writhing tangle of intertwined snakes. Someone,He lifts the lid to reveal a writhing tangle of intertwined snakes.,Someone,gold,lowers the lid and flees.,appears on the floor below.,throws the inspector's gun at someone and burned.,takes cover under the branches.\n17826,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7305,Spar nudges his head closer to someone. The little girl,Spar nudges his head closer to someone.,The little girl,gold,smiles with his glass.,hands him the paddle.,faces his human companion.,regards her father tenderly.\n17827,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7312,\"Ahead, a long flat crate lies on a steel table. He\",\"Ahead, a long flat crate lies on a steel table.\",He,gold,watches a stone through a door open around a corridor filled with crumbling racks.,raises his gold colored wand over the hilt of his spear.,lifts the lid to reveal a writhing tangle of intertwined snakes.,plants two feet back on his face then retracts it.\n17828,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7317,Now someone draws the curtains in someone's bedroom. She,Now someone draws the curtains in someone's bedroom.,She,gold,takes it and sits upset.,pours champagne through a small plastic case and hands it to someone.,lies buried in stuffed animals.,\"looks at him, then licks her lips and faces her friend.\"\n17829,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7306,Someone's gaze softens appreciatively. They,Someone's gaze softens appreciatively.,They,gold,shakes his head as if avoiding the downcast eyes.,catches her breath in his regretful gaze.,fall over several members of the jury.,view each other through the cage wire.\n17830,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7314,\"Someone lowers the lid and flees. On his way out, he\",Someone lowers the lid and flees.,\"On his way out, he\",gold,taps that top of his war finger and then the soldier rises.,lifts someone to a small chandelier.,switches off the lights.,dashes toward the door.\n17831,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7321,\"He looks in, but remains unseen. Tickling someone, someone\",\"He looks in, but remains unseen.\",\"Tickling someone, someone\",gold,stares after them sharply.,wipes his mouth with his handkerchief.,beats him with a rolling ball.,finds the old sweatshirt under the covers.\n17832,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7320,Someone comes out of his room. He,Someone comes out of his room.,He,gold,stands in a position sticking his knee in.,\"looks in, but remains unseen.\",wears a tie and tie.,gives the door to someone.\n17833,lsmdc3087_WE_BOUGHT_A_ZOO-41196,7301,\"Smirking, someone swivels away and walks toward an old pickup parked nearby. Someone\",\"Smirking, someone swivels away and walks toward an old pickup parked nearby.\",Someone,gold,begins to pace back from her with his arm around her.,sits in his kitchen.,\"sits on a bar, sipping a drink.\",gazes after the young woman as she hefts up a few supply bags slung around her shoulders.\n17834,anetv_6nMQRUhOcwM,13775,A black and white dog is chasing after the frisbees. The woman,A black and white dog is chasing after the frisbees.,The woman,gold,then turns through the twirling box and over.,throws a frisbee around to pick a frisbee in the air and falls with the dog.,spins the dog around.,kneels down to pick up a frisbee.\n17835,anetv_6nMQRUhOcwM,8264,A dog is seen running through a yard and performing various frisbee tricks with a woman. The woman,A dog is seen running through a yard and performing various frisbee tricks with a woman.,The woman,gold,is then seen walking over the horse to the side and ties up with the dog.,continues doing tricks on a horse as others watch on the side.,continues to throw the frisbee around while the dog chases after it and grabs it in it's mouth.,holds the dog with the frisbee and then perform tricks and stops again.\n17836,anetv_6nMQRUhOcwM,13774,A woman is throwing a red frisbee. A black and white dog,A woman is throwing a red frisbee.,A black and white dog,gold,is chasing after the frisbees.,is laying on a bench in an orange path.,is walking on the ground next to her.,is standing behind him.\n17837,lsmdc3079_THINK_LIKE_A_MAN-36968,2320,Someone gives the crowd a bashful smile. Someone,Someone gives the crowd a bashful smile.,Someone,gold,pulls his ring out of his pocket and takes out a gun.,lifts his brow at someone.,steps back as he flash his t - shirt.,leads a couple of men eating breakfast.\n17838,anetv_EVtM8DKW4bc,7513,A small group of people are seen sitting in bumper cars in the middle of a large crowd. The cars then,A small group of people are seen sitting in bumper cars in the middle of a large crowd.,The cars then,gold,move girls around the cars while the camera closes in on their bent tires.,drive around one another and bump into each other while the people watch around the sides.,lone continues driving around then bumping into each other.,move all around the bumper cars and leads to a display of people.\n17839,anetv_EVtM8DKW4bc,332,A large group of people are seen speaking to one another and begin playing bumper cars. The cameraman,A large group of people are seen speaking to one another and begin playing bumper cars.,The cameraman,gold,along shows the same song as they continue to play on another bicycle while camera captures their movements.,pans around the camera continuously while people continue recording interviewed and ending by speaking and pointing to one another.,drives around and continues crashing into one another.,records him bouncing around quickly around and ends with people standing side to side.\n17840,anetv_EVtM8DKW4bc,333,The cameraman drives around and continues crashing into one another. The man,The cameraman drives around and continues crashing into one another.,The man,gold,shoots into the sky.,continues driving and stops in the end.,begin skateboarding backward several times.,pushes a tube close to the side.\n17841,anetv_nARkYpOZWyg,7206,A man rides on a small rail cart blowing leaves with a leaf blower. The man,A man rides on a small rail cart blowing leaves with a leaf blower.,The man,gold,goes right on a fork in the tracks on a cart and around a bend.,then brushes the leaves while the other people.,is falls to the man and the man puts the camera in the man's hands and the words.,dries from the car.\n17842,lsmdc3078_THE_WATCH-36191,8821,\"Someone pulls out a long, slim tentacle with a turtle - shaped end. It\",\"Someone pulls out a long, slim tentacle with a turtle - shaped end.\",It,gold,drops down into a split - split creature and slips.,speeds to the soles end.,shows off and darken the moon above her head.,dangles limp from his fingers.\n17843,anetv_I4_jFA46Uio,13303,She has a bowl and a knife in her hand. She,She has a bowl and a knife in her hand.,She,gold,pours an olive - solution into her glass.,demonstrates how to clean the glass.,forms a hole inside the tire.,is peeling potatoes with the knife.\n17844,anetv_I4_jFA46Uio,13302,A little girl is standing in front of a kitchen sink. She,A little girl is standing in front of a kitchen sink.,She,gold,has a bowl and a knife in her hand.,begins to pour the ice cream on her side.,\"is using mouthwash mouthwash, while standing on her sidewalk.\",steps over the sink and then wipes her face.\n17845,anetv_lrlUN65DM8c,10674,A man swings around and throws a disc onto the field several times. People,A man swings around and throws a disc onto the field several times.,People,gold,are watching him in the audience.,are watching from behind each other.,throw the balls onto the ground and pick it up.,pass in a river behind him.\n17846,anetv__AaSNARQPfE,6580,A man in a black shirt is standing next to him. Another man,A man in a black shirt is standing next to him.,Another man,gold,stands next to him and lifts a bar with him.,walks up and points to the diving pucks.,is seen dancing in front of a crowd.,\"is on his side, putting a hand down on another form.\"\n17847,anetv__AaSNARQPfE,6579,A man picks up a bar and raises it several times. A man in a black shirt,A man picks up a bar and raises it several times.,A man in a black shirt,gold,is sitting at the end of the table next to him.,is standing next to him.,is talking into a microphone.,turns a corner and throws the ball.\n17848,anetv__AaSNARQPfE,6578,A man picks up a weight over his head and drops it on the ground. A man,A man picks up a weight over his head and drops it on the ground.,A man,gold,swings out of the bar and finishes it.,lifts up his weight and lays down on his back.,picks up a bar and raises it several times.,rolls to the ground to get weight up.\n17849,lsmdc3078_THE_WATCH-36384,3017,\"Now, someone sits on someone's front steps as his pickup pulls into the driveway. Someone\",\"Now, someone sits on someone's front steps as his pickup pulls into the driveway.\",Someone,gold,'s passenger door opens.,\"turns from the window of his car, opens the refrigerator and turns.\",eyes someone around the passenger side and indicates a cool smirk.,stands as the tall man helps his daughter out of the truck.\n17850,lsmdc3078_THE_WATCH-36384,3018,Someone stands as the tall man helps his daughter out of the truck. She,Someone stands as the tall man helps his daughter out of the truck.,She,gold,turns his weapon menacingly back to someone.,reaches for someone with a bloody hanky.,\"picks up the surfer, holds him along with the crone on his cheek and waves off.\",\"jolts up, blood on her sister's head.\"\n17851,lsmdc3084_TOOTH_FAIRY-39940,11847,Someone holds out his fist. Someone,Someone holds out his fist.,Someone,gold,reaches inside and pulls some clumps from the flap.,\"eyes it, then pounds his fist to someone's.\",glances back at someone.,makes his way over to someone and grabs him by the neck.\n17852,anetv_K-eZfCs8yOc,1839,\"A young man plays violin while wearing headsets. Then, the young man\",A young man plays violin while wearing headsets.,\"Then, the young man\",gold,performs a hand practice while holding a microphone.,practice playing an accordion and singing.,throws a big his skateboard and starts running on the grass.,finish playing and take off the headsets.\n17853,anetv_pev7rvOE8eM,11124,A woman in hooded black snow coat brushes snow from her car. The woman,A woman in hooded black snow coat brushes snow from her car.,The woman,gold,drives a little while a paint shovel looks at the screen.,walks through heavy snow and does a snow angel in it.,removes her ice from the heel and dumps it in a frying pan.,\"jumps, making adjustments to the search water.\"\n17854,anetv_pev7rvOE8eM,11123,A young child watches television inside a house. A woman in hooded black snow coat,A young child watches television inside a house.,A woman in hooded black snow coat,gold,is hanging on top of a tree.,brushes snow from her car.,faces an golden sign.,sits behind a set of bongo drums in front of a large crowd.\n17855,anetv_pev7rvOE8eM,14962,The camera pans to show a small child indoors watching television. The camera,The camera pans to show a small child indoors watching television.,The camera,gold,pans back to a painting of a man hangs in a window.,focuses on a group of women dancing together.,returns to the person cleaning snow off the car outside.,pans on view and shows another man in her arms.\n17856,anetv_pev7rvOE8eM,11125,The woman walks through heavy snow and does a snow angel in it. A man in green hooded jacket,The woman walks through heavy snow and does a snow angel in it.,A man in green hooded jacket,gold,rides in over the dirt area.,starts taking woman shoveling the snow.,brushes snow from his car during a snowstorm.,is wearing a pair of exercise stilts.\n17857,anetv_pev7rvOE8eM,14961,An individual cleans snow off a car. The camera pans,An individual cleans snow off a car.,The camera pans,gold,left to show a black title riding store alone on the upper right.,to show a small child indoors watching television.,\"right to a roof, interspersed by someone in firing murder.\",to a windshield while the camera focuses on the climber.\n17858,anetv_pev7rvOE8eM,11126,A man in green hooded jacket brushes snow from his car during a snowstorm. The man,A man in green hooded jacket brushes snow from his car during a snowstorm.,The man,gold,\"drops the shovel, touches the patch over the guys painted skin over his forehead with a shell.\",uses the object to push the snow off of the snow.,gets into his car and drives down the street.,talks to the camera about two men in rope and masks.\n17859,anetv_pev7rvOE8eM,14963,The camera returns to the person cleaning snow off the car outside. The individual outside,The camera returns to the person cleaning snow off the car outside.,The individual outside,gold,kneels a green towel and sprays some of her snow away.,wiped the top while stopping to speak to the camera.,shows an aerobic room looking puzzled.,enters the cleaned car and drives away.\n17860,anetv_cz2ESqP3PDk,6902,He does this over and over again not really demonstrating anything else. All he does,He does this over and over again not really demonstrating anything else.,All he does,gold,\"n't just go along, the advertisement is most nice.\",is know how to catch the back bulls throw and pads technique.,n't know how to do it.,is pull out more and more cards and put them to the side.\n17861,anetv_cz2ESqP3PDk,6900,A man is using some type of card shark system. He,A man is using some type of card shark system.,He,gold,pulls out a card from this device one by one and puts the cards to the other side of the table.,goes to get several parts of the store.,begins to have devices in his hands.,'s using to brush a whole out on the lip of the competition.\n17862,anetv_cz2ESqP3PDk,6901,He pulls out a card from this device one by one and puts the cards to the other side of the table. He,He pulls out a card from this device one by one and puts the cards to the other side of the table.,He,gold,men are videos of a table on an indoor court.,looks up and strokes someone.,does this over and over again not really demonstrating anything else.,\"drinks with soda, too.\"\n17863,anetv_cz2ESqP3PDk,6543,\"A person put the left hand on a dispenser. Then, the person\",A person put the left hand on a dispenser.,\"Then, the person\",gold,put it over his chest and hold it up and properly put the ingredient on it.,places dough on all of the baking dish and put on it.,put the black lens on a box.,takes off a card from a dispenser with the left hand and pass to the right hand that throws it on the table.\n17864,anetv_cz2ESqP3PDk,6544,\"Then, the person takes off a card from a dispenser with the left hand and pass to the right hand that throws it on the table. Then, the left hand\",\"Then, the person takes off a card from a dispenser with the left hand and pass to the right hand that throws it on the table.\",\"Then, the left hand\",gold,takes of a card that the right hand flips and throws on the table for many times.,destroys the contact lens.,puts the pink paper to the right on the goal line.,\"shows the tool to the bottom, and shakes the clients hair.\"\n17865,anetv_mZ1Di2gg-I4,9598,Woman is standing in the middle of a stage making yoga movements. woman,Woman is standing in the middle of a stage making yoga movements.,woman,gold,is doing movements in slow motion in front of an orange screen.,is sitting in a chair in a roofed gym and is standing around for the roofed gym exercises.,is standing in a room talking to the camera and diving into the pool.,is walking in front of a band playing a flute holding cymbals and watching the hockey game.\n17866,anetv_mZ1Di2gg-I4,11493,The woman slowly starts to move and does various karate movements in slow motion that it almost looks like a dance. The woman,The woman slowly starts to move and does various karate movements in slow motion that it almost looks like a dance.,The woman,gold,continues to perform multiple twist exercises while doing her hand and then also starts running down her beam.,speeds it up a little and jumps and kicks and lands on her feet and continues on with her karate routine.,are spinning and twirling and dancing and performing various sexy tricks.,watches as she lays her hands on the floor.\n17867,anetv_mZ1Di2gg-I4,11494,\"The woman slowly lifts her left leg all the way up to her head level, squats to the ground slowly with her leg still pointing up then stands up and never loses her balance when she's balancing on just one foot and she continues to do her routine until the finish. When she's done she\",\"The woman slowly lifts her left leg all the way up to her head level, squats to the ground slowly with her leg still pointing up then stands up and never loses her balance when she's balancing on just one foot and she continues to do her routine until the finish.\",When she's done she,gold,\"brings her hands together in the front of her to indicate she's done, then turns and walks off the stage.\",stirs and walks up to the machine as do her movements.,picks up a calf and puts her body on it.,stands up and leans down the slopes and covering her feet sliding the thrusts up onto the floor.\n17868,anetv_mZ1Di2gg-I4,11492,An Asian woman is dressed in all white and is standing on a stage alone. The woman,An Asian woman is dressed in all white and is standing on a stage alone.,The woman,gold,looks away in excitement as she plays a hula hoop with the baton while the microphone's on restraints.,is raised fans on her legs juxtaposed with batons.,twirls a hula hoop in front of a stage that is in the middle of her performance.,slowly starts to move and does various karate movements in slow motion that it almost looks like a dance.\n17869,anetv_mZ1Di2gg-I4,9599,Woman is doing movements in slow motion in front of an orange screen. woman,Woman is doing movements in slow motion in front of an orange screen.,woman,gold,is sanding quiet and then start doing movements.,is on raising the arm in front of a gym.,is sitting in a wooden machine wit the poles and stores.,gets down and throws the hula hoops all over the hoop.\n17870,lsmdc1034_Super_8-7923,15173,\"Someone, a dark haired man of about 40, shoves someone into the back of the police car on the drive. He\",\"Someone, a dark haired man of about 40, shoves someone into the back of the police car on the drive.\",He,gold,\"wanders in, opens a door, and waits outside.\",\"stops in the courtyard, looking before the salesman, who sits with the phone receiver.\",looks up and sees an apprehensive someone watching him.,passes a shed and runs out of the car.\n17871,lsmdc1034_Super_8-7923,15178,\"Bicycles are taken out of a bike rack, and someone is amongst the throng of pupils. One of the boys from the wake, someone,\",\"Bicycles are taken out of a bike rack, and someone is amongst the throng of pupils.\",\"One of the boys from the wake, someone,\",gold,\"comes out of her porch, runs.\",comes over to him.,stops walking and stands away.,falls towards a massive complex with the excited crowds gathered at its center.\n17872,lsmdc1034_Super_8-7923,15172,\"Someone watches as his dad, someone, bundles someone outside. Someone, a dark haired man of about 40,\",\"Someone watches as his dad, someone, bundles someone outside.\",\"Someone, a dark haired man of about 40,\",gold,makes his way through a lone metropolitan filmed above the russia lighthouse.,\"folded in a textbook, watches him as he goes.\",\"dons a white shirt and feather vertical wet spectacles, and enters.\",shoves someone into the back of the police car on the drive.\n17873,lsmdc1034_Super_8-7923,15176,Someone watches as it disappears up the road. He,Someone watches as it disappears up the road.,He,gold,turns to look at the concourse connected to people '.,crosses to a window and quickly turns and starts off.,looks back down at the locket he is holding and snaps it shut.,runs to the bottom of the stairs and picks up an ducks.\n17874,lsmdc1034_Super_8-7923,15175,He gets in the patrol car and drives it off with its lights flashing. Someone,He gets in the patrol car and drives it off with its lights flashing.,Someone,gold,\"stops, roping around a patio taking in puffs.\",leans against the passenger window and smiles at someone.,watches as it disappears up the road.,drums and singing on the car.\n17875,lsmdc1034_Super_8-7923,15174,He looks up and sees an apprehensive someone watching him. He,He looks up and sees an apprehensive someone watching him.,He,gold,quickly strangles her and other people ride underneath.,rests her head against his shoulder.,tries to get in.,gets in the patrol car and drives it off with its lights flashing.\n17876,lsmdc1034_Super_8-7923,15177,\"Excited pupils spill out of someone Middle School as it closes for the summer holidays. Bicycles are taken out of a bike rack, and someone\",Excited pupils spill out of someone Middle School as it closes for the summer holidays.,\"Bicycles are taken out of a bike rack, and someone\",gold,is amongst the throng of pupils.,is riding a white bumper car.,slips quietly toward her elevator.,drags someone across the back of someone.\n17877,anetv_koSLx0E23gU,8630,We see an arena from out doors. We,We see an arena from out doors.,We,gold,see the team practice taking a bike style.,then an ending title screen and drives.,see people on trampoline performing flips in the arena.,follow people down a corridor aisle at a brisk race track down the prowl of the city.\n17878,anetv_koSLx0E23gU,8634,A person flips multiple times down a strip on the ground. We,A person flips multiple times down a strip on the ground.,We,gold,are displayed on the screen.,then turns to the person in the top of a hill on the tubes.,guests help the lamb with bikers.,see a man jump and land on the trampoline in slow motion.\n17879,anetv_koSLx0E23gU,8632,We see a person almost fall after flipping. The person,We see a person almost fall after flipping.,The person,gold,lays back down and helps skateboard to get upright and fall to the ground.,lands and almost falls.,is on the rim of the surfboard.,heads back under the water to splash the man leaving the orange.\n17880,anetv_koSLx0E23gU,8631,We see people on trampoline performing flips in the arena. We,We see people on trampoline performing flips in the arena.,We,gold,see the kids dive in the pool.,see two men and a boy dressed in a match.,see a person almost fall after flipping.,see their hands and the men spin and bounce.\n17881,anetv_koSLx0E23gU,8633,The person lands and almost falls. A person,The person lands and almost falls.,A person,gold,jumps fly onto a trail and lets fly flying in the air.,flips multiple times down a strip on the ground.,hits the turn upside down.,throws a javelin and thumbling.\n17882,anetv_koSLx0E23gU,8635,We see a man jump and land on the trampoline in slow motion. We,We see a man jump and land on the trampoline in slow motion.,We,gold,see large faces with views of a city.,see our dolphin and white horizontally.,see the ending title screens.,see the players in purple scores.\n17883,anetv_HWcWElJfEjw,6015,The man stuffs a toy into the ball and spins it around. He then,The man stuffs a toy into the ball and spins it around.,He then,gold,plays around for it and continues playing.,ties a bow around the top and presents it to the camera.,walks back to his father and continues trying to take it out of the distance.,throws the ball on the floor.\n17884,anetv_HWcWElJfEjw,273,A man is standing in front of a large plastic dome. He,A man is standing in front of a large plastic dome.,He,gold,is on top of a rustic christmas tree.,holds out and tightens the ski.,fills it with streamers and toys.,begins sharpening the knife.\n17885,lsmdc1027_Les_Miserables-6023,13702,He throws the pieces into the air. The church in the walled village,He throws the pieces into the air.,The church in the walled village,gold,is lit at home.,have complex fringe.,sits on the top of a hill.,rise slowly going around him.\n17886,lsmdc1027_Les_Miserables-6023,13703,The church in the walled village sits on the top of a hill. One piece of paper,The church in the walled village sits on the top of a hill.,One piece of paper,gold,is repaired by rust and another iron.,flies high in the air towards the sun.,has been replaced from the descent of a uniformed dark - haired people.,is pressed against a plane's window.\n17887,lsmdc1027_Les_Miserables-6023,13701,Someone strides out of the church ripping his papers to shreds as he goes to the far corner of the church yard. He,Someone strides out of the church ripping his papers to shreds as he goes to the far corner of the church yard.,He,gold,\"is lying still on the floor, his face twisted with pain.\",\"plays a gramophone, then smiles at him.\",throws the pieces into the air.,notices a plant victor beside someone who's holding a grappling axe.\n17888,anetv_AJ15GW-sS5M,1462,We see the man in green from the front and up close. We,We see the man in green from the front and up close.,We,gold,see a man in black from the front.,see the competition of insert appear.,see a man sitting on a drum in a row.,see images of the piercing.\n17889,anetv_AJ15GW-sS5M,1463,\"We see a man in black from the front. We see the man in white jump, we see a score and he\",We see a man in black from the front.,\"We see the man in white jump, we see a score and he\",gold,starts several big troopers with jump ropers.,stands in a field and pulls his hair up.,jumps again and falls.,can take the pole from.\n17890,anetv_AJ15GW-sS5M,13148,One of the men celebrates his distance as he finishes his jump. Another man,One of the men celebrates his distance as he finishes his jump.,Another man,gold,is shown stepping on the line before he continues to complete his jump.,is shown taking pictures of the other band.,rides his board across a dirt course.,is shown playing some of the sport.\n17891,anetv_AJ15GW-sS5M,13147,Several different men are shown making long jumps in track and field competitions. One of the men,Several different men are shown making long jumps in track and field competitions.,One of the men,gold,celebrates his distance as he finishes his jump.,scores a series and kick them in the pit as he walks away to read.,poses for the fall.,then begins skiing for a goal.\n17892,anetv_AJ15GW-sS5M,1461,We see a various men performing high jumps on different tracks. We,We see a various men performing high jumps on different tracks.,We,gold,rafts rollerblading and people on the street outdoors.,see a horse race and girls are riding horses in the dirt field.,see a group of people on bikes.,see the man in green from the front and up close.\n17893,anetv_AJ15GW-sS5M,1465,We see a man's foot on the track. We,We see a man's foot on the track.,We,gold,see the lights intro funkin.,see the subscribe ending screen.,see people snowboarding across the hill.,see a lady pushing an vacuum out of the way.\n17894,anetv_AJ15GW-sS5M,13149,Another man is shown stepping on the line before he continues to complete his jump. The video,Another man is shown stepping on the line before he continues to complete his jump.,The video,gold,ends with more clips of the man speaking to the camera and ending by speaking to the camera.,ends with the closing caption displayed across the screen.,scrolls and charged with men.,ends with the closing credits shown on the screen again.\n17895,anetv_YlK_P4Ys6hE,559,A skier is seated in the snow on top of a hill. He,A skier is seated in the snow on top of a hill.,He,gold,dons his skiing equipment and helmet.,surfs with a mallet doing skateboard new waters.,\"is in a tube on a raft, preparing to run.\",has extended surfboard in his hand.\n17896,anetv_YlK_P4Ys6hE,10111,They begin snowboarding down a hill of snow. People,They begin snowboarding down a hill of snow.,People,gold,take off on paddles as they run along the water.,\"get on the beach, spin in their gear.\",ride around on the tracks.,are sitting on a ski lift and riding up the mountain.\n17897,anetv_YlK_P4Ys6hE,560,He dons his skiing equipment and helmet. He then,He dons his skiing equipment and helmet.,He then,gold,completes the video animation with surfing and warming it up.,\"pulls on the silver cord attached to back steering, while he mounts his certain size.\",focuses on what waxes ski.,\"zooms down the hill on his snowboard, weaving and doing stunts.\"\n17898,anetv_YlK_P4Ys6hE,10110,A person is sitting in the snow putting a helmet on. They,A person is sitting in the snow putting a helmet on.,They,gold,shoot some balls at each other.,use a tool to remove the cloak.,begin snowboarding down a hill of snow.,start pulling gloves from the bike.\n17899,anetv_cTioh2vzxGE,7054,A man is seated on an ornate couch. He,A man is seated on an ornate couch.,He,gold,is playing a harmonica in his hand.,is sitting on a stationary sofa.,is sharpening the chain on a fence.,has a large black lens on his face.\n17900,anetv_cTioh2vzxGE,7055,He is playing a harmonica in his hand. A person,He is playing a harmonica in his hand.,A person,gold,standing next to him is talking very slow.,pass running his fingers over his hair.,stops in the middle of a finish line in a corridor.,gets in the way as he continues to play.\n17901,anetv_cTioh2vzxGE,10375,A man is sitting on a couch playing a harmonica. A man,A man is sitting on a couch playing a harmonica.,A man,gold,is sitting outside holding a violin.,is doing back flips and drums on his chest.,is wearing headphones watching the woman.,comes up in front of him and takes pictures of the man playing.\n17902,lsmdc1009_Spider-Man3-76723,15533,He turns away from his aunt's inquiring eyes and goes over to the French windows. His mournful face,He turns away from his aunt's inquiring eyes and goes over to the French windows.,His mournful face,gold,is lit by a ghostly blue blow from the city outside.,is on their plates as many packages scatter before they revs the page.,\"is dark, lashed with soft steel, everything by.\",\"becomes the distant woman, obviously.\"\n17903,lsmdc1009_Spider-Man3-76723,15532,He holds out the engagement ring and drops it into the palm of her hand. He,He holds out the engagement ring and drops it into the palm of her hand.,He,gold,comes closer to his son.,traces the space on his limb's body.,\"carries onto her father's cot, and faces her father's body, holding her hostage.\",turns away from his aunt's inquiring eyes and goes over to the french windows.\n17904,lsmdc0012_Get_Shorty-53543,6995,\"The Bear kicks him, sending someone back into the living room at someone's feet. The Bear\",\"The Bear kicks him, sending someone back into the living room at someone's feet.\",The Bear,gold,\"knees someone in the gut, then shoves him out on to the balcony.\",reads 12: 25.,sits up in front of someone.,takes the bundle of toys from a small table.\n17905,lsmdc0012_Get_Shorty-53543,6993,The Bear won't look at him. Someone,The Bear won't look at him.,Someone,gold,is very much in love.,lifts his head to meet her gaze.,lifts her head and leans her forehead against his.,looks at the bear.\n17906,lsmdc0012_Get_Shorty-53543,6997,And the Bear hits someone again. Someone,And the Bear hits someone again.,Someone,gold,puts another arrow into someone's face.,moves up to the bear.,stares corrupt for a long moment.,punches him in the crotch.\n17907,lsmdc0012_Get_Shorty-53543,6994,Someone looks at the Bear. The Bear,Someone looks at the Bear.,The Bear,gold,is completely cuffed by a long black tail.,buries its head in his past.,\"kicks him, sending someone back into the living room at someone's feet.\",lies in bed at the window.\n17908,lsmdc0012_Get_Shorty-53543,6996,\"The Bear knees someone in the gut, then shoves him out on to the balcony. Someone\",\"The Bear knees someone in the gut, then shoves him out on to the balcony.\",Someone,gold,pauses on the deck treading water.,follows them out there.,\"cracks eye shadow of someone, then tilts her head back.\",shrugs his arm giddily and pretends.\n17909,lsmdc3056_PUBLIC_ENEMIES-2828,407,He gets up and leaves the garage. As he,He gets up and leaves the garage.,As he,gold,crosses to the house.,\"straightens the driveway, lights stand on the drive.\",climbs out of his car.,approaches the gate we are at the roadside.\n17910,lsmdc3056_PUBLIC_ENEMIES-2828,415,Men collects cash from a teller. Someone,Men collects cash from a teller.,Someone,gold,\"turns to someone, who limply shakes his head.\",studies a photo of fairy sports.,smacks him in the head with his pistol and points it.,walks into step stairs and joins an invisible man in the pants.\n17911,lsmdc3056_PUBLIC_ENEMIES-2828,408,As he crosses to the house. Someone,As he crosses to the house.,Someone,gold,tosses a set of keys to someone.,takes the motorcycle out of the suit and walks off with someone.,descends a pantry and a box containing a large replica of a heavy moving cage.,notices someone wearing a white suit and dials a cellphone.\n17912,lsmdc3056_PUBLIC_ENEMIES-2828,404,\"Later in a garage, someone sits across from a gunsmith. Trigger handle and\",\"Later in a garage, someone sits across from a gunsmith.\",Trigger handle and,gold,pulls out a coil.,\"a detection wand, someone's jaw falls slack.\",glock gloves lies close beside his stomach.,\"med equipment bears people on its side, while the bartender watches.\"\n17913,lsmdc3056_PUBLIC_ENEMIES-2828,409,\"Inside, someone enters the kitchen. A man\",\"Inside, someone enters the kitchen.\",A man,gold,arrives on a sink counter.,\"jogs toward the diner, walks down the street, and runs to his car at the club.\",leans against the refrigerator.,is washing music flashing in his kitchen.\n17914,lsmdc3056_PUBLIC_ENEMIES-2828,400,As the other looks out the window. A large man in suspenders,As the other looks out the window.,A large man in suspenders,gold,dumps items into it.,runs down a farm road.,peers through the blinds.,grabs the secretary of his arm.\n17915,lsmdc3056_PUBLIC_ENEMIES-2828,421,\"Inside the bank, someone waits as the president fills a sack with money from the safe. In a getaway car, someone\",\"Inside the bank, someone waits as the president fills a sack with money from the safe.\",\"In a getaway car, someone\",gold,sets a plastic bag on her bedside table and opens a bag.,\"checks the time on a pocket watch, then drives.\",strides into the long - walled parking lot.,\"peers top and around the track as a large military truck passes to his right, the attractive new man in the green uniform.\"\n17916,lsmdc3056_PUBLIC_ENEMIES-2828,420,\"He knocks with the butt of his rifle. Inside the bank, someone\",He knocks with the butt of his rifle.,\"Inside the bank, someone\",gold,waits as the president fills a sack with money from the safe.,joins someone as he unlocks his cell door and sees someone knock.,cranks the wheels off of a rack and storms over to the train door.,catches himself with a heavy - caliber ax and takes out the open case.\n17917,lsmdc3056_PUBLIC_ENEMIES-2828,418,\"Outside, Homer discretely holds a rifle at his side. He\",\"Outside, Homer discretely holds a rifle at his side.\",He,gold,stuffs his supply bag then lurches inside.,sees an arriving police car and backs into a recess by a set of double doors.,takes a man's face shot.,passes out steps across the field.\n17918,lsmdc3056_PUBLIC_ENEMIES-2828,403,As they approach the house. He,As they approach the house.,He,gold,grins and gives the blonde a kiss.,gently nails a piece of paper on the side of the car.,looks at a teapot on an overturned chair.,is cracked up and unrolling a buffet.\n17919,lsmdc3056_PUBLIC_ENEMIES-2828,416,Someone smacks him in the head with his pistol and points it. Someone,Someone smacks him in the head with his pistol and points it.,Someone,gold,appears at the door to his car and turns to a large window in a house.,hugs the tire and then brakes.,\"hops up on the counter, aiming his machine gun.\",takes in the general's hands.\n17920,lsmdc3056_PUBLIC_ENEMIES-2828,402,\"He turns away from the window and hurries out of the room. Outside, someone and his men\",He turns away from the window and hurries out of the room.,\"Outside, someone and his men\",gold,\"are about to chat, then smile at someone.\",walk outside with someone with a basket in hand.,walk towards someone's door.,step out of their car.\n17921,lsmdc3056_PUBLIC_ENEMIES-2828,413,They pass a trembling customer. Someone,They pass a trembling customer.,Someone,gold,notices the wounded coming over from his side.,turns away around and returns the elevator.,pushes the president forward to a metal gate.,walks among the tables on the uppermost deck.\n17922,lsmdc3056_PUBLIC_ENEMIES-2828,417,\"Someone hops up on the counter, aiming his machine gun. Outside, Homer discretely\",\"Someone hops up on the counter, aiming his machine gun.\",\"Outside, Homer discretely\",gold,emerges through a window.,stuffs his alien sack in his pockets and pistol fire next to a dirt car.,checks the narrator's gun.,holds a rifle at his side.\n17923,lsmdc3056_PUBLIC_ENEMIES-2828,401,A large man in suspenders peers through the blinds. He,A large man in suspenders peers through the blinds.,He,gold,descends the stairs as he studies the ailing art.,turns away from the window and hurries out of the room.,walks to the edge of the dock towards the waterfall.,aims for the phone.\n17924,lsmdc3056_PUBLIC_ENEMIES-2828,412,\"Now, three men in fedoras and overcoats ascend a wide staircase. Someone\",\"Now, three men in fedoras and overcoats ascend a wide staircase.\",Someone,gold,\"stops, scanning a huge bank with angular walls lined with tellers.\",looks up and sees two squad cars draws on the steps.,\"reaches a pleasant suite with the troop, then climbs the stairs again.\",has swept up face like a jacket around someone's nostril.\n17925,lsmdc3056_PUBLIC_ENEMIES-2828,406,Someone steps out of the safe house. He,Someone steps out of the safe house.,He,gold,gets up and leaves the garage.,puts someone's luggage down and steps over to her.,slams out the entranceway to the center of the courtyard.,opens the door.\n17926,lsmdc3056_PUBLIC_ENEMIES-2828,414,Someone pushes the president forward to a metal gate. Men,Someone pushes the president forward to a metal gate.,Men,gold,collects cash from a teller.,gather behind him as he uses someone.,\"hammers a pump on the exploding engine, then jumps up from her back and steam each of the officers.\",drives a white building to someone.\n17927,lsmdc3056_PUBLIC_ENEMIES-2828,422,\"In a getaway car, someone checks the time on a pocket watch, then drives. Someone\",\"In a getaway car, someone checks the time on a pocket watch, then drives.\",Someone,gold,directs a wearing dark american surfer in his underwear.,adjusts his license choices on the sketchbook.,pushes the president forward.,digs a worried clip into a trash bag.\n17928,lsmdc3056_PUBLIC_ENEMIES-2828,405,\"Outside a window behind the gunsmith, two cars arrive. Someone\",\"Outside a window behind the gunsmith, two cars arrive.\",Someone,gold,picks out her brown paper bag and turns to face someone as she takes out a paper bag and reads it.,steps out of the safe house.,\"reading over bouncers approach, then reaches the front door.\",drops the door and goes inside.\n17929,lsmdc3056_PUBLIC_ENEMIES-2828,419,He sees an arriving police car and backs into a recess by a set of double doors. He,He sees an arriving police car and backs into a recess by a set of double doors.,He,gold,pulls on to a spot with the black doors down the handcuffed agent.,knocks with the butt of his rifle.,slams someone repeatedly across the courtyard.,\"passes the elevator, where his trainer tracks someone.\"\n17930,lsmdc3056_PUBLIC_ENEMIES-2828,411,Someone hands him a stuffed envelope. He,Someone hands him a stuffed envelope.,He,gold,slips the cartridge into his pants pocket.,tie it to someone.,goes around the table.,turns to him and peruses a buy photo of someone's sister.\n17931,anetv_qpdREcmjhUw,12893,\"The puck goes to far down the board and the toddler chases after it. Once the puck is back on the board, he\",The puck goes to far down the board and the toddler chases after it.,\"Once the puck is back on the board, he\",gold,academy jumps to the screen while head down and bravely hits the stick and he makes it to the end of the team.,fails and falls into the water.,zooms in the water before he hits the ball.,takes off running back down the board.\n17932,anetv_WreRcthWXv8,7783,A man is standing by a fountain of water. People,A man is standing by a fountain of water.,People,gold,are standing behind them and lining up something.,are doing roller skating tricks.,are seen walking in front of the ranch.,are sitting in front of the diving board.\n17933,anetv_WreRcthWXv8,7782,A person is holding onto a motorcycle wearing roller blades and being dug along a street. A man,A person is holding onto a motorcycle wearing roller blades and being dug along a street.,A man,gold,is standing by a fountain of water.,is full on the driver is a sreet wearing handcuffs.,\"is standing on the side of a truck performing several stunts, tricks, and tricks.\",is standing behind a fence of a black car with people riding stilts in the snow.\n17934,anetv_dnQcp43wbRY,18988,\"Two men are in a garage, assembling parts on a tripod. They\",\"Two men are in a garage, assembling parts on a tripod.\",They,gold,\"begin to walk, hands with arms.\",ride off in a line of water.,talk to his bike and lift it up.,are creating a bicycle as they work.\n17935,anetv_dnQcp43wbRY,18091,They put the pedals on the bike. They,They put the pedals on the bike.,They,gold,enter the outside vault.,finish assembling the bike.,pull away and kiss.,continue to get the buff top then jump off the bar again.\n17936,anetv_dnQcp43wbRY,18989,They are creating a bicycle as they work. They,They are creating a bicycle as they work.,They,gold,\"put on the tires, completing the bike and showing it off for the camera.\",work on together and assemble a house.,see people in a wheelbarrow.,try to climb the bike back and forth next to the cake.\n17937,anetv_dnQcp43wbRY,18090,They put the tires onto the bike. They,They put the tires onto the bike.,They,gold,put the tire on.,put the open trunk on top and put the bikes tire made.,put the pedals on the bike.,take the wheel from the bike and put them on edge.\n17938,anetv_dnQcp43wbRY,18089,Two men are assembling a bicycle on a stand. They,Two men are assembling a bicycle on a stand.,They,gold,take another shot in place.,put the tires onto the bike.,start cleaning the yellow car seat.,throw their arms up and drive them.\n17939,anetv_y_bXP4NtAw0,2258,He then starts welding again. He,He then starts welding again.,He,gold,holds up a shaken list and is then shown on the skis.,draws a triangle between it and holds it up and unbuttons it again.,is spraying a substance with a mallet.,stops and lifts his mask up before reaching for the camera.\n17940,anetv_y_bXP4NtAw0,3920,He starts welding a piece of metal in front of him. He,He starts welding a piece of metal in front of him.,He,gold,stops and lifts his mask up and takes his gloves off.,puts the welding tool onto his head then starts to weld it.,takes her hand and puts it against the belt.,lifts the barbells over his head.\n17941,anetv_y_bXP4NtAw0,3919,A man kneels down and puts a mask on. He,A man kneels down and puts a mask on.,He,gold,uses a sharpening knife to cut and cuts a piece of wood in plastic.,bends down and adjusts the balance and begins to fall.,is doing shaving circles in his tattoo.,starts welding a piece of metal in front of him.\n17942,anetv_y_bXP4NtAw0,2257,A man bends down wearing a mask and starts welding. He,A man bends down wearing a mask and starts welding.,He,gold,stops and uses a tool to scrape what he just welded.,stops and moves back and fourth with the machine withdrawn.,gets back on the machine and sits in front of a building.,takes a puff from a sander.\n17943,lsmdc3081_THOR-37833,14654,\"Still standing in the middle of the street, someone watches as someone and the women leave. As they round a corner, someone\",\"Still standing in the middle of the street, someone watches as someone and the women leave.\",\"As they round a corner, someone\",gold,\"arrives with the others, who stepped out of the games hut.\",leans against the window with his parted hand.,\"pauses and glances back at someone, then hurries off.\",steps out of the open toyshop and sees the couple.\n17944,anetv_8dhDEj0Dd5s,7778,She starts to twirl her baton and move her body a long with it doing flips and everything. She,She starts to twirl her baton and move her body a long with it doing flips and everything.,She,gold,finishes and lifts up baton to her feet before bowing before her.,does her backflip into the air and dances around the air.,begins to do one handed cartwheels and swinging the baton around her neck.,watches as she does the spin in the air before letting all the dance.\n17945,anetv_8dhDEj0Dd5s,7777,A gymnast is standing at a pose waiting to begin her performance. She,A gymnast is standing at a pose waiting to begin her performance.,She,gold,performs the routine on the beam.,starts to twirl her baton and move her body a long with it doing flips and everything.,describes how to properly perform flips in trampoline.,stands on an back railing and makes the first performance on the stage for the whole time.\n17946,lsmdc1015_27_Dresses-79682,18718,\"Her father stares at someone's agonized expression. As people flirt in his office, someone\",Her father stares at someone's agonized expression.,\"As people flirt in his office, someone\",gold,is seated in the bunker over a set of ears from her advent pack.,slides a letter vertically from his desk.,\"frowns, seeing someone's name in her filofax.\",looks in his mirror and finds someone on the desk with someone.\n17947,lsmdc1015_27_Dresses-79682,18719,\"As people flirt in his office, someone frowns, seeing someone's name in her filofax. Someone\",\"As people flirt in his office, someone frowns, seeing someone's name in her filofax.\",Someone,gold,\"returns to the dressing room, opens the door.\",dials someone's number.,stretches out his wrist.,throws out the papers.\n17948,anetv_idTzZaMtGy8,9020,Several players are seen walking around a field and leads into them playing a lacrosse game with one another. The people,Several players are seen walking around a field and leads into them playing a lacrosse game with one another.,The people,gold,continue running around the field while other players watch on the sides.,continue running around while the camera captures their movements as well as ending with the pole being drawn.,hit the ball back and fourth while others watch on the sides and try to flock them up.,continue to play all around the field and ends by scoring up cards and running against the wall.\n17949,lsmdc1044_Pride_And_Prejudice_Disk_Two-89770,4576,\"Meanwhile, someone is traveling in a carriage, his expression thoughtful and determined. Four chestnut horses\",\"Meanwhile, someone is traveling in a carriage, his expression thoughtful and determined.\",Four chestnut horses,gold,ride near the other stop.,\"ride along a crowded sidewalk, with fast autumn trees and formal gardens.\",are covered with obstacles on mountain tops.,\"speed through the countryside, a seated driver and two footmen on the back of someone's carriage.\"\n17950,lsmdc1045_An_education-90250,3569,People walk to the car park in their overcoats. Someone,People walk to the car park in their overcoats.,Someone,gold,pours someone a beer.,\"limps up the front steps and pauses, his head bowed.\",opens the boot and rummages inside.,follows someone to an elevator.\n17951,lsmdc1045_An_education-90250,3568,\"Someone looks bored, then smiles ruefully at someone. Someone\",\"Someone looks bored, then smiles ruefully at someone.\",Someone,gold,\"holds him the ball, and someone places someone in the back seat.\",\"smiles, then turns to watch the dancers returning.\",spins and moves the mower with his hand while someone shakes his head.,\"sits down on the bed, accompanied by his mother.\"\n17952,anetv_Scv939uhNCc,13687,\"The two boys to the right have already started and the two boys on the left are at a delay. In eight seconds, the boy solves his cube and the boys behind them\",The two boys to the right have already started and the two boys on the left are at a delay.,\"In eight seconds, the boy solves his cube and the boys behind them\",gold,\"stand by the end when he is done, finally with the camera to show how they stop and walk away from each other.\",begin to solve the cube.,punches him again and pins them away.,jump up and begins to congratulate him as the others continue to solve their.\n17953,anetv_sfPGQnxbJ3U,16155,Men are in front of a mirror in a room. man,Men are in front of a mirror in a room.,man,gold,is putting a desk in front of something.,holds white shoes and a heavy shirt and machine gloves.,is watering the kitchen.,is alone practicing kicks and punches.\n17954,anetv_KvscV2XxyTE,18010,\"A forward flip and jump follows along with a sideways flip. After briefly wobbling on the bar, Micah\",A forward flip and jump follows along with a sideways flip.,\"After briefly wobbling on the bar, Micah\",gold,spreads it over on the glider as the other two to watch.,grabs and closes heidler in place.,regains her composure and performs a forward summersault.,enjoy drinks when ends up sitting of it.\n17955,anetv_KvscV2XxyTE,18008,Gymnast Micah Ross mounts the balance beam before a celebrated audience as the crowd cheers and shouts her name. Her routine,Gymnast Micah Ross mounts the balance beam before a celebrated audience as the crowd cheers and shouts her name.,Her routine,gold,is shown in slow motion as people watch very judges jump in and down.,is yelling when she dismounts and closes her hands over her eyes.,\"begins with a flip, split, and summersault.\",begins to spin in a motion as the gymnast flips and shoots a brick slide down several times.\n17956,anetv_KvscV2XxyTE,18011,\"After briefly wobbling on the bar, Micah regains her composure and performs a forward summersault. Ross successfully\",\"After briefly wobbling on the bar, Micah regains her composure and performs a forward summersault.\",Ross successfully,gold,\", the mechanism part begins extending and finally dismounting.\",\", she dives at the end and the same girl sits at a bar and looks and down for her every move.\",stands on the stage while a friend in a pink shirt removes a attachment from a playground.,dismounts with a double flip to the applause of the audience.\n17957,anetv_KvscV2XxyTE,18009,She then performs two backwards flips and a pirouette. A forward flip and jump,She then performs two backwards flips and a pirouette.,A forward flip and jump,gold,does the same dance in slow motion.,follows along with a sideways flip.,are shown in a parking area as the crowd is thrown.,is shown numerous times.\n17958,anetv_PUI2Qrn0qbE,12950,Kids are driving on bumper cars spinning and bumping. kid,Kids are driving on bumper cars spinning and bumping.,kid,gold,is wearing blue shirt and clash with the fence holding the handles with both hands.,stands in the field clutching hands.,is struggling a little boy in a suit is walking towards them.,does push ups and not jumping the four men that push him.\n17959,anetv_boRX-UKXzy8,3383,A bumper car arena is shown followed by people driving around and bumping into one another. Several shots,A bumper car arena is shown followed by people driving around and bumping into one another.,Several shots,gold,of people leading people are shown afterwards and riding a camel around.,are then shown of people walking down the track and bumping into one another.,are shown of people crashing into one another and a man speaking to the camera in the end.,are then shown of different people riding on hazmat cars.\n17960,anetv_1epGZvRN3Fw,6227,One man is holding a pole then lifted it as the other man instructed him how to lift properly. The barbel has green plate and the man,One man is holding a pole then lifted it as the other man instructed him how to lift properly.,The barbel has green plate and the man,gold,started to lift the barbell as the other man watches.,was indoor punching the guys.,is won on the receiving board.,grab the loose cord while the man had it and went back towards the camera.\n17961,anetv_1epGZvRN3Fw,6228,The barbel has green plate and the man started to lift the barbell as the other man watches. The barbell has yellow plate and the man,The barbel has green plate and the man started to lift the barbell as the other man watches.,The barbell has yellow plate and the man,gold,step by step through a knock in the end.,hit it with six shotgun cups in the mouth.,kneels down to grab it.,started to lift it several times as the other man is sitting and watching him.\n17962,anetv_1epGZvRN3Fw,18914,Two men are seen working out in a back yard lifting heavy weights while taking turns. The men,Two men are seen working out in a back yard lifting heavy weights while taking turns.,The men,gold,continue moving around while looking at the camera and continuing to look around in circles.,help one another lift the heavy weights and then shakes hands in the end.,continue playing while sitting on a chair with a man standing side to side.,continue to spin spin all around while others watch on the side.\n17963,anetv_we6Ddq1ABcQ,7770,The man throws the ball and the player hits the ball which return behind the man. The man,The man throws the ball and the player hits the ball which return behind the man.,The man,gold,talks from the back and kicks the ball over the net.,points to it and walks away before hitting it back and forth.,takes the ball and throw to another player.,pass on the red wall before it sails.\n17964,anetv_we6Ddq1ABcQ,7767,\"A man runs with a ball and throws it to a person holding a stick to hits the ball. The player runs, and the man\",A man runs with a ball and throws it to a person holding a stick to hits the ball.,\"The player runs, and the man\",gold,grabs a ball from the ground an throws it and runs.,scores and ends with the team mates.,quickly hits the ball while sitting next to him.,scores and hit the defenders on the far side of the beach.\n17965,anetv_we6Ddq1ABcQ,14880,A player looks around while another steps up to the plate and several players and coaches look around and laugh. More players are seen walking around and one,A player looks around while another steps up to the plate and several players and coaches look around and laugh.,More players are seen walking around and one,gold,leads into how to use a swimming stick running around a large pool area.,playing fourth clapping to the camera.,spins with different poles and performs in a cricket motion.,grabs his hat to pull it down.\n17966,anetv_we6Ddq1ABcQ,7768,\"The player runs, and the man grabs a ball from the ground an throws it and runs. The players\",\"The player runs, and the man grabs a ball from the ground an throws it and runs.\",The players,gold,return to the house and continue fencing the final game of the boy.,gather together and talk.,dismount to spot the throw.,sit on the bench as another toddler teammate runs off.\n17967,anetv_we6Ddq1ABcQ,7769,The players gather together and talk. The man throws the ball and the player,The players gather together and talk.,The man throws the ball and the player,gold,in red gets off by steps in the background.,hits the ball which return behind the man.,picks up the boy and the man hug.,bounces up and down a bit after that.\n17968,anetv_we6Ddq1ABcQ,14879,A person is seen hitting a ball while many run around him to grab it. A player looks around while another steps up to the plate and several players and coaches,A person is seen hitting a ball while many run around him to grab it.,A player looks around while another steps up to the plate and several players and coaches,gold,look around and laugh.,watch him perform around the wall table.,discussing with a lacrosse class but someone with other team members.,are also shown taking pictures of the boy.\n17969,lsmdc3058_RUBY_SPARKS-28293,8234,\"Later, they play charades. Someone\",\"Later, they play charades.\",Someone,gold,pats his frustrated brother on the back.,\"sits up, adjusting a head collar.\",transforms into his eyes.,opens fire and flings the door.\n17970,lsmdc3058_RUBY_SPARKS-28293,8237,\"Someone pats her rear end. After a shower, someone\",Someone pats her rear end.,\"After a shower, someone\",gold,keeps vacuuming and stares at someone with a cheery smile.,covers herself with a towel.,is pushed lobe by the bathroom.,struggles to pull both other legs.\n17971,lsmdc3058_RUBY_SPARKS-28293,8239,Someone joins someone in bed. Someone,Someone joins someone in bed.,Someone,gold,watches someone get into his car.,sits up and drives away.,\"lies on her side, turning away from someone.\",strips down unto his thigh.\n17972,lsmdc3058_RUBY_SPARKS-28293,8246,\"Later, someone's mom climbs up to the tree house. She\",\"Later, someone's mom climbs up to the tree house.\",She,gold,\"steps across the kitchen and into the living room of someone's apartment, then watches someone.\",\"finds her son sleeping on his back, holding the book over his chest.\",picks up her coat then leaves.,enters from inside and sets off the gift on a coffee table.\n17973,lsmdc3058_RUBY_SPARKS-28293,8243,Someone stands on a roof near a waterfall flowing into the pool. Someone,Someone stands on a roof near a waterfall flowing into the pool.,Someone,gold,reads in a tree house.,stands and runs alongside the injured civilian.,steps out into the corridor.,is hiking up his trousers and tie in a raincoat.\n17974,lsmdc3058_RUBY_SPARKS-28293,8242,\"The next day, someone cannonballs into a pool. Someone\",\"The next day, someone cannonballs into a pool.\",Someone,gold,sets food on a pan table from someone.,\"turns away from their army and runs toward them, into a church.\",stands on a roof near a waterfall flowing into the pool.,\"sees the raging man on stage, then moves into a pool and looks him over.\"\n17975,lsmdc3058_RUBY_SPARKS-28293,8238,\"After a shower, someone covers herself with a towel. Someone\",\"After a shower, someone covers herself with a towel.\",Someone,gold,flings a hair down over her face.,watches as she gazes at the white pillow which held under one leg.,joins someone in bed.,smacks the girl's face.\n17976,lsmdc3058_RUBY_SPARKS-28293,8240,\"Someone lies on her side, turning away from someone. He\",\"Someone lies on her side, turning away from someone.\",He,gold,\"rests her head on his shoulder, then drops his arms.\",returns his attention to a book.,\"turns and sees the sheriff, a frown, then heavy - eyed, controlled.\",smiles down at her.\n17977,lsmdc3058_RUBY_SPARKS-28293,8248,\"He holds glasses over Scotty's eyes. Wearing an indignant smirk, someone\",He holds glasses over Scotty's eyes.,\"Wearing an indignant smirk, someone\",gold,crosses the room to his desk and stands by his reception desk.,\"steers off, whipping her arms around him.\",cocks his head and scans the group.,watches a clock over the mantelpiece.\n17978,lsmdc3058_RUBY_SPARKS-28293,8245,He steps out to a railing. Someone,He steps out to a railing.,Someone,gold,peeks into the room.,\"cannonballs off the roof, making a huge splash.\",railing by their boat.,\"climbs on the back, showing off the feet of the meanders.\"\n17979,lsmdc3058_RUBY_SPARKS-28293,8247,Someone makes the same face but with a crinkled brow. He,Someone makes the same face but with a crinkled brow.,He,gold,holds glasses over scotty's eyes.,shakes his head with a firm shake of his head.,\"blows the flaming blood from his neck and sends it flying, its feet twitching in the air.\",\"makes the water, very gently on the top of his head.\"\n17980,lsmdc3058_RUBY_SPARKS-28293,8244,Someone reads in a tree house. He,Someone reads in a tree house.,He,gold,steps out to a railing.,clenches his beaming teacher.,walks to a look trailer on a scooter.,hands her some coats.\n17981,anetv_1Dpm9kvn3M8,16592,A man is seen speaking to the camera while holding up a cigarette. The man,A man is seen speaking to the camera while holding up a cigarette.,The man,gold,puts a guitar around and shows the ending stage and leads into a couple throwing a ball into the band and laughing.,puts a cigarette in his mouth and puts it in his mouth.,then turns around and smiles while looking down.,takes several puffs out of the cigarette while still looking back to the camera.\n17982,anetv_1Dpm9kvn3M8,16593,The man takes several puffs out of the cigarette while still looking back to the camera. He,The man takes several puffs out of the cigarette while still looking back to the camera.,He,gold,continues smoking and looking back up to the camera.,continues to demonstrate on how to play and ends by speaking to the camera.,continues showing more clips of the recording and occasionally pushing it back.,continues playing on the cigarette while looking at the camera.\n17983,anetv_oLrkd6M2WRY,3944,Man is talking to the camera standing next to a box. man,Man is talking to the camera standing next to a box.,man,gold,is holding a sandwich box and put a shaker in a wooden box.,is dancing in a kitchen with a small piece of snow.,is on a green room holding the machine.,is assembling a shuffleboard court in a sidewalk.\n17984,lsmdc1058_The_Damned_united-98345,14505,Someone yells beside a glowering someone as the Leeds players surround the ref. The physio,Someone yells beside a glowering someone as the Leeds players surround the ref.,The physio,gold,war referee raises on their hands and sways awkwardly.,\"carries someone off, piggyback.\",\"member grab his fist, goes forward.\",flies out in silhouette of a man.\n17985,anetv_GoVqtUSnshE,15358,\"Then we see breaking news videos on the screen. A woman is shown drinking some kind of fluid on a dare, and the women\",Then we see breaking news videos on the screen.,\"A woman is shown drinking some kind of fluid on a dare, and the women\",gold,starts to give it the documents.,take turns drinking the liquid.,is also being interviewed.,has a drill of being mixed for serving in a kitchen.\n17986,anetv_GoVqtUSnshE,15357,A news woman is speaking from a news room. Then we,A news woman is speaking from a news room.,Then we,gold,\"see a lady putting lotion on her face in the mirror, trimming her hair.\",see an upward game in a studio.,see breaking news videos on the screen.,see kids riding bikes on a beach.\n17987,lsmdc3007_A_THOUSAND_WORDS-3661,1964,Someone shakes his fists and walks into the backyard. He,Someone shakes his fists and walks into the backyard.,He,gold,marches to his back and lifts his shield as it scans the street around someone.,\"sits back in his chair, his hands clasped behind her back.\",steps to the bodhi tree and glares up at it.,stands and runs a pass out with the blonde girl.\n17988,anetv_Tko7eefi1BI,9556,A woman is sitting outside on a white chair playing at accordion. There,A woman is sitting outside on a white chair playing at accordion.,There,gold,is a music stand sitting in front of her.,is a pink box walking into the band area.,watch as another woman runs with her and performs a break dance.,are filmed in the background.\n17989,lsmdc3063_SOUL_SURFER-31243,13689,\"Someone trudges up to his daughter. As he sits beside her, she\",Someone trudges up to his daughter.,\"As he sits beside her, she\",gold,gazes tenderly at him.,shifts her gaze away.,looks into someone's eyes.,watches the procession go.\n17990,anetv_lrxLP-R_ILw,21,A girl does a tutorial on how to pack a bag. She then,A girl does a tutorial on how to pack a bag.,She then,gold,grabs a rag and throws it at the girl.,demonstrates how to clips impressive shingles in the leg until they continue working.,puts the hose into a small paper bag.,\"gives ballerina tips, especially on how to treat one's feet right.\"\n17991,anetv_Xxng1g1PrdE,8160,A camera pans around an area and leads into people riding in rafts and a man jumping out the back. More people,A camera pans around an area and leads into people riding in rafts and a man jumping out the back.,More people,gold,are shown riding in rafts and shows the man jumping out several more times.,move down and down the sand while the camera captures any movements.,are shown riding on snowboards down the street while grabbing tubes and climbing down the hill.,push around the river of the water and one stream down the cascade while others dancing around the sides.\n17992,anetv_Xxng1g1PrdE,14536,A boy stands and jumps high on a boat. A young man,A boy stands and jumps high on a boat.,A young man,gold,stand on the border of a boat and jumps to the water.,stands on a diving board near the lake.,holds a blue paddle and performs.,shows off and flips his roping several times.\n17993,anetv_Xxng1g1PrdE,8161,More people are shown riding in rafts and shows the man jumping out several more times. More and more people,More people are shown riding in rafts and shows the man jumping out several more times.,More and more people,gold,are shown running around the mountains.,run out of the water and chase after the calf.,are shown skiing as well as riding on the skis riding.,ride around in raft.\n17994,anetv_Xxng1g1PrdE,14535,People on boats are rafting down the river. A boy,People on boats are rafting down the river.,A boy,gold,takes out a speedboat.,is paddling in big ramps with a motor boat.,addresses people while pointing to her equipment.,stands and jumps high on a boat.\n17995,anetv_Xxng1g1PrdE,14534,Water flows on a river that pass through a forest. People on boats,Water flows on a river that pass through a forest.,People on boats,gold,pass by side of the river.,do swimming along the ocean where a water paddles works.,are rafting down the river.,go down a country river.\n17996,anetv_r1y_ASZDdEo,7568,A couple of teams engage in a game of cricket on the field. They,A couple of teams engage in a game of cricket on the field.,They,gold,\"swing their bats, hitting the ball and throwing it.\",\"are done, the players pull it together and pins it down, trying to hit it back but it is blocked.\",get a volley ball onto the net between them.,lob the ball back and forth over the net.\n17997,anetv_r1y_ASZDdEo,7567,A group of people are walking across a field and talking. A couple of teams,A group of people are walking across a field and talking.,A couple of teams,gold,are holding sand castles in an indoor field.,engage in a game of cricket on the field.,are walking on some indoor field with a blond woman.,are playing polo in a field.\n17998,anetv_r1y_ASZDdEo,11235,\"A person and a young man walks in a field who are followed for people. The young man stands on a track, then he\",A person and a young man walks in a field who are followed for people.,\"The young man stands on a track, then he\",gold,spins around while he waits in the sand.,is in front of a pinata.,turns at times in slow motion on the sand.,plays cricket with the person.\n17999,anetv_4DFKpHF2aq4,10234,There's a young man wearing a black hoodie and hat out in the wilderness. He,There's a young man wearing a black hoodie and hat out in the wilderness.,He,gold,takes an umbrella in his hand and then tosses it behind him.,is then shown skiing with a lot of fun on a boat.,walks back to his car and reads the package without answering it.,locks the clamp on the man and shuts it with a stick.\n18000,anetv_4DFKpHF2aq4,10236,Then he walks on a tight rope and tries to balance himself. There,Then he walks on a tight rope and tries to balance himself.,There,gold,continue to move across the rope as he does higher fives.,kicks out a small net of the tricks hold the flip boy.,is behind him trying to jump the rope.,\"are some other men doing the same thing out in the wilderness, trying to balance themselves and walk on tight ropes.\"\n18001,anetv_4DFKpHF2aq4,10235,He takes an umbrella in his hand and then tosses it behind him. Then he,He takes an umbrella in his hand and then tosses it behind him.,Then he,gold,beats it back with the hose and climbs over the nearest tree.,\"grabs it, sending them away, into the glass, then snaps it in.\",\"sees a tear slide down the boy's nose and holds his ear, toothbrush and emphatically.\",walks on a tight rope and tries to balance himself.\n18002,anetv_78WY5lXk42A,3951,A man spreads a white sheet onto a wall. He then,A man spreads a white sheet onto a wall.,He then,gold,puts the tool down when the model is pressed against it.,rips off the wall paper.,presses a sheet with a photo printed onto it onto the white background.,begins to seal the cut pages.\n18003,anetv_78WY5lXk42A,3952,\"He then presses a sheet with a photo printed onto it onto the white background. When he is finished, there\",He then presses a sheet with a photo printed onto it onto the white background.,\"When he is finished, there\",gold,is an animated closeup of the fingering and what he just did.,is a photo of a yellow motorbike parked against a brick wall on a living room wall.,is a roll of tapes up to his face when the match is done.,'s a person in a white shirt scores the words appear.\n18004,anetv_diBZlwUO8rc,6194,We see a lady in a chefs coat in a kitchen talking. A lady,We see a lady in a chefs coat in a kitchen talking.,A lady,gold,sharpens a knife on a rod.,messes with hair down on her side.,introduces a mixer to mix it.,is using a vacuum cleaner.\n18005,anetv_diBZlwUO8rc,6197,Then back to the black block. We,Then back to the black block.,We,gold,light keeps going on in the hallway.,see a closing title screen.,power diving hits the armoire.,middle - team woman starts painting the fence in a sink ball.\n18006,anetv_diBZlwUO8rc,6195,A lady sharpens a knife on a rod. The lady,A lady sharpens a knife on a rod.,The lady,gold,puts water on a black sharpener block.,\"picks up a mop, showing a sharpening blade and sharpening it.\",throws the knife and spins metal.,cleans the knife with a knife.\n18007,anetv_diBZlwUO8rc,6193,We see an opening title screen. We,We see an opening title screen.,We,gold,see a boy weld a pumpkin with a scissor.,see a lady in a chefs coat in a kitchen talking.,see the ending title credits.,see the ending title screen.\n18008,lsmdc0013_Halloween-53830,14985,She steps back inside and crosses to the washing machine. She,She steps back inside and crosses to the washing machine.,She,gold,opens the top and dumps her clothes inside.,picks up a handheld device.,takes out a bag full of gasoline.,wades through the knee - deep water.\n18009,lsmdc0013_Halloween-53830,14983,The wind blows the door open a little wider. She,The wind blows the door open a little wider.,She,gold,lifts a head with his free hand as he sits up.,glances outside the door.,climbs to the next window and begins to go.,gazes delightedly at a bottle of light lit out.\n18010,lsmdc0013_Halloween-53830,14981,Someone turns toward the slightly open door. Behind the door we,Someone turns toward the slightly open door.,Behind the door we,gold,see a duffle pushed through its window.,see someone round the counter and find further oversized glasses.,see a flash of light coming on.,see the outline of the shape standing there.\n18011,lsmdc0013_Halloween-53830,14992,\"Finally she gets up and walks to the phone, her eyes pivoted on the tv. She\",\"Finally she gets up and walks to the phone, her eyes pivoted on the tv.\",She,gold,\"stands with her back to someone, who has been talking from behind her desk.\",faces him with a smile.,looks at the book.,picks up the receiver.\n18012,lsmdc0013_Halloween-53830,14980,Almost immediately the wind blows the door shut! Someone,Almost immediately the wind blows the door shut!,Someone,gold,turns toward the slightly open door.,wears the combination package tarts.,sees her morose raincoat.,enters the speech releasing.\n18013,lsmdc0013_Halloween-53830,14979,\"In the light from the main house, someone sees the light switch. Almost immediately the wind\",\"In the light from the main house, someone sees the light switch.\",Almost immediately the wind,gold,reveals the shapes of white smoke and the dragon drops from it's impact.,blows the door shut!,sweeps someone's tail from his grasp.,is coming over the pavement.\n18014,lsmdc0013_Halloween-53830,14978,\"Someone walks into the dark laundry room. In the light from the main house, someone\",Someone walks into the dark laundry room.,\"In the light from the main house, someone\",gold,finds someone wine beer in her bedroom.,lounges into the tub.,sees the light switch.,finds someone assembling someone's belongings on a stool.\n18015,lsmdc0013_Halloween-53830,14991,\"Someone turns and glances at the window above the washing machine. Behind her, in the open window above the washing machine, we\",Someone turns and glances at the window above the washing machine.,\"Behind her, in the open window above the washing machine, we\",gold,follow someone's nowhere.,hear her rummaging through the floorboards.,see the shape looking in.,see the door: a cheerleader.\n18016,lsmdc0013_Halloween-53830,14988,\"Someone, 8 years old with a pretty face, watches the Horror Marathon at top volume on tv. Someone still\",\"Someone, 8 years old with a pretty face, watches the Horror Marathon at top volume on tv.\",Someone still,gold,looks at them quickly with delighted young men.,\"dressed, from the darkness of someone's coverage, is at the wheel locomotive wheel being worked on.\",stands on the podium and hides the crashed tattoo.,sits in front of the tv.\n18017,lsmdc0013_Halloween-53830,14977,She is wearing a nylon robe and carrying her clothes to be washed. The wind,She is wearing a nylon robe and carrying her clothes to be washed.,The wind,gold,washes into her hair.,blows the robe open.,\"is wild, while someone is still curled around the bed.\",washes her hair as she talks.\n18018,lsmdc0013_Halloween-53830,14986,She opens the top and dumps her clothes inside. Suddenly a big gust of wind,She opens the top and dumps her clothes inside.,Suddenly a big gust of wind,gold,is pulling us from the tub.,comes through the opened window above her.,sends someone away toward the stage.,falls right into her dress.\n18019,lsmdc0013_Halloween-53830,14976,Someone takes it and together they walk into the kitchen. Someone,Someone takes it and together they walk into the kitchen.,Someone,gold,hands him an envelope.,is in the bedroom.,\"has fallen, on someone's stomach - to his shoulder.\",walks through the passageway to the laundry room.\n18020,lsmdc0013_Halloween-53830,14982,Behind the door we see the outline of the shape standing there. The wind,Behind the door we see the outline of the shape standing there.,The wind,gold,leaves the room as she walks in.,- bird voice is everywhere.,seems to be too close as she heads back and returns to his backdoor.,blows the door open a little wider.\n18021,lsmdc0013_Halloween-53830,14975,Someone holds out her hand. Someone takes it and together they,Someone holds out her hand.,Someone takes it and together they,gold,turn back at someone's house.,put a smile on her lips.,walk into the kitchen.,ride out of the carriage.\n18022,lsmdc0013_Halloween-53830,14989,Someone still sits in front of the tv. She,Someone still sits in front of the tv.,She,gold,while her parents look anxious.,lets the phone ring away.,sits at a bar with her new mother.,\"approaches someone, who pokes shoulder.\"\n18023,lsmdc0013_Halloween-53830,14990,She lets the phone ring away. Someone,She lets the phone ring away.,Someone,gold,looks as the dog drives away.,runs after the car while dropping their snitch.,runs past a taxi that cranks a winch.,turns and glances at the window above the washing machine.\n18024,lsmdc0030_The_Hustler-64961,17866,\"It is a warm, beautiful day, and someone has a basket with her. Someone\",\"It is a warm, beautiful day, and someone has a basket with her.\",Someone,gold,\"shows someone lie beside each other, trying to get the candy rings.\",\"seems happy to be out with her, almost as if he has forgotten the casts on his hands.\",\"stands very barefoot, touched.\",is pinned over the stairs.\n18025,lsmdc0030_The_Hustler-64961,17869,Someone leans back on the grass and looks at someone. They both,Someone leans back on the grass and looks at someone.,They both,gold,\"look at someone again, enraptured when someone finally has with a nod and walks with her fighting way.\",push someone and ram someone.,seem easy and relaxed in the sunshine together.,\"look at each other, then retreat behind the tailgate of the freestanding bishop.\"\n18026,lsmdc0030_The_Hustler-64961,17864,\"As she unbuttons his shirt for him, he takes her face in his hands and kisses her. People\",\"As she unbuttons his shirt for him, he takes her face in his hands and kisses her.\",People,gold,lie in a tub.,lie in and kiss her tenderly on the lips.,emerges from the doorway.,leans over and kisses him again.\n18027,lsmdc0030_The_Hustler-64961,17867,\"Someone seems happy to be out with her, almost as if he has forgotten the casts on his hands. They\",\"Someone seems happy to be out with her, almost as if he has forgotten the casts on his hands.\",They,gold,keeps looking at him in amazement.,look at each other as they all move in their command.,stop at a spot that overlooks the river and spread out a blanket.,are after the women.\n18028,lsmdc0030_The_Hustler-64961,17863,\"She watches him struggle with the button for a while then spread his arms in a gesture of helplessness. As she unbuttons his shirt for him, he\",She watches him struggle with the button for a while then spread his arms in a gesture of helplessness.,\"As she unbuttons his shirt for him, he\",gold,proceeds to in her true costume.,gives himself an dangerous bump and stuffs the car in.,breezes through the office.,takes her face in his hands and kisses her.\n18029,lsmdc0030_The_Hustler-64961,17868,They stop at a spot that overlooks the river and spread out a blanket. Someone,They stop at a spot that overlooks the river and spread out a blanket.,Someone,gold,\"someone sits in front of a house overlooking a comfy hillside, where they were sitting.\",leans back on the grass and looks at someone.,\"tracing a line along with trots, squishing up and down.\",\"sits at the edge of a bed, propped up on the landing.\"\n18030,lsmdc0030_The_Hustler-64961,17865,\"People emerges from the doorway. It is a warm, beautiful day, and someone\",People emerges from the doorway.,\"It is a warm, beautiful day, and someone\",gold,sees a tree behind it.,looks up from the paperwork.,has a basket with her.,sleeps with a.\n18031,lsmdc3086_UGLY_TRUTH-6426,9697,\"Meanwhile, someone walks down a hallway. He\",\"Meanwhile, someone walks down a hallway.\",He,gold,picks up a clipboard.,\"stops, turns the other way, then turns back again.\",shoots a guard with a look.,steps out of the spurs gate.\n18032,lsmdc3086_UGLY_TRUTH-6426,9699,He rubs his nose nervously. He,He rubs his nose nervously.,He,gold,eyes him with a sneering frown but he's coldly knowing what to say.,strides determinedly to someone's door and raises his fist.,gives an encouraging nod.,slowly reaches out and pulls up his rifle with a machine gun mounted.\n18033,anetv_dm5ZnhOeBBQ,15539,She takes the vacuum and vacuums up the mess. She,She takes the vacuum and vacuums up the mess.,She,gold,turns up the driveway and sees a sitting figure standing outside.,uses the vacuum to dig up the vacuum covered bed using a rug.,takes the hose off the vacuum and starts using that on the floor.,\"gives it to the cooker, then cleans supplies to clean the door.\"\n18034,anetv_dm5ZnhOeBBQ,15538,She dumps something onto the floor. She,She dumps something onto the floor.,She,gold,shows how to use the shears.,stirs her wet bowl with her spoon.,picks up a layout attachment and tapes it on the ceiling.,takes the vacuum and vacuums up the mess.\n18035,anetv_dm5ZnhOeBBQ,15537,A woman is standing next to a vacuum. She,A woman is standing next to a vacuum.,She,gold,begins spraying a vacuum with a hose.,is laying the rug in front of the vacuum.,is using a vacuum cleaner and spray the carpet.,dumps something onto the floor.\n18036,lsmdc3076_THE_SOCIAL_NETWORK-35319,19132,Someone arrives at Facebook headquarters. He,Someone arrives at Facebook headquarters.,He,gold,checks his autographed calendar.,swivels his chair around and glares accusingly.,leads the waiter down a hall.,is leaning over to someone at the tv.\n18037,lsmdc3076_THE_SOCIAL_NETWORK-35319,19133,He swivels his chair around and glares accusingly. Someone,He swivels his chair around and glares accusingly.,Someone,gold,takes two beers from the officers rail.,moves away from the grave as someone catches her hand.,shakes his hand and stares thoughtfully at his own wristwatch.,picks up a contract and reads.\n18038,lsmdc3076_THE_SOCIAL_NETWORK-35319,19134,\"The lawyer averts his gaze. Through the glass enclosure, we\",The lawyer averts his gaze.,\"Through the glass enclosure, we\",gold,see shadows blowing in the breeze.,watch someone approach the church.,glimpse the bunny owl on his stove.,view the lawyer explaining.\n18039,lsmdc3076_THE_SOCIAL_NETWORK-35319,19136,Someone spies someone at a distance in headphones working at a station across the main floor. Someone,Someone spies someone at a distance in headphones working at a station across the main floor.,Someone,gold,climbs up with a cab.,enter a modern doors and chooses a sign to the city.,perches on a nearby desk.,hears the ringing off of the garage.\n18040,lsmdc3076_THE_SOCIAL_NETWORK-35319,19135,\"Through the glass enclosure, we view the lawyer explaining. Someone\",\"Through the glass enclosure, we view the lawyer explaining.\",Someone,gold,slides the card in a drawer then grabs a bottle of it and hands it to someone.,adjusts another page of the former convention.,spies someone at a distance in headphones working at a station across the main floor.,talks over her bicycle in cricketers.\n18041,lsmdc3076_THE_SOCIAL_NETWORK-35319,19137,Someone perches on a nearby desk. Someone,Someone perches on a nearby desk.,Someone,gold,offers someone a radio.,stares at his head.,gives the baby to someone.,bursts from the room.\n18042,anetv_mbmMY04yMUA,16519,There is some script shown on fear of singing on stage. A woman in a green shirt,There is some script shown on fear of singing on stage.,A woman in a green shirt,gold,is singing while doing the dishes in her kitchen sink.,is playing the guitar for a while.,continues clapping and talking about a video playing instruction.,is watching them play with many different types of music.\n18043,anetv_mbmMY04yMUA,16521,She continues to wash the spoons and forks with a blue scrub and soap as she sings in a high pitch and tone. She,She continues to wash the spoons and forks with a blue scrub and soap as she sings in a high pitch and tone.,She,gold,then there is a last word to win with replacement four.,strokes that the first door is just opening.,\"goes further on the water, setting up an mix of food and pop containers.\",continues to wash a large knife and then places the wet utensils on a drying rack.\n18044,anetv_mbmMY04yMUA,16520,A woman in a green shirt is singing while doing the dishes in her kitchen sink. She,A woman in a green shirt is singing while doing the dishes in her kitchen sink.,She,gold,goes to ride the woman while brushing her teeth.,is comments about how to put vanilla ice in an bowl.,is then seen washing her hair on a towel and brushing it under the sink.,continues to wash the spoons and forks with a blue scrub and soap as she sings in a high pitch and tone.\n18045,anetv_mbmMY04yMUA,16522,She continues to wash a large knife and then places the wet utensils on a drying rack. She,She continues to wash a large knife and then places the wet utensils on a drying rack.,She,gold,shaves the potato with the paint brush.,\"kneels down at the table, and lays a pan on the sink.\",washes some glasses and scrubs them thoroughly with the same sponge.,is chopped dried with various parts left in that directions.\n18046,anetv_mbmMY04yMUA,16523,She washes some glasses and scrubs them thoroughly with the same sponge. Then,She washes some glasses and scrubs them thoroughly with the same sponge.,Then,gold,places the glass on the drying rack.,gets the dough and uses it to prep the car.,rinses the toothbrush and scrubs it in thoroughly.,applies the soap on rinse and rinse and dry them.\n18047,anetv_g_AwwSsBj0s,2893,A camera pans around various people riding around on roller blades inside a mall. The camera,A camera pans around various people riding around on roller blades inside a mall.,The camera,gold,pans all around the bench and dancing around city areas.,pans back into the hugging then begin performing various tricks on the rope.,continues to watch the people as they skate all around the area and other people walk and watch in the distance.,captures their faces around the sides of the piano as the camera pans around the entire corner.\n18048,anetv_g_AwwSsBj0s,13089,Several people are moving around in the floor. Some people,Several people are moving around in the floor.,Some people,gold,are roller skating past each other.,are lined up on the ground.,are watching from the sidelines.,are drumming behind a table.\n18049,anetv_5OWJ7WqKWMU,13268,The boy rinses the toothbrush and his mouth with running tap water. The boy,The boy rinses the toothbrush and his mouth with running tap water.,The boy,gold,dries the bottle company on a towel and wipes it on the table.,drinks the bottle and returns to mouthwash.,plays with the toothbrush some more.,clamps a toothpaste hand on a toothbrush.\n18050,anetv_5OWJ7WqKWMU,13267,The boy stops brushing his teeth and starts manipulating the buttons on the electric toothbrush. The boy,The boy stops brushing his teeth and starts manipulating the buttons on the electric toothbrush.,The boy,gold,uses a toothbrush to brush his teeth.,rinses the toothbrush and his mouth with running tap water.,dances down and takes a tube down to heat it.,is giving the girl a basketball while the rest of the other open his mouth with the other hand.\n18051,anetv_5OWJ7WqKWMU,13269,The boy plays with the toothbrush some more. An adult briefly,The boy plays with the toothbrush some more.,An adult briefly,gold,leans into frame to kiss the boy.,has his arm around his dad.,holds his ear to the woman in back.,cups the man's eye on the watch.\n18052,anetv_5OWJ7WqKWMU,13266,A small boy brushes his teeth at a bathroom sink. The boy,A small boy brushes his teeth at a bathroom sink.,The boy,gold,grabs a razor and wipes the window with a towel.,stops brushing his teeth and starts manipulating the buttons on the electric toothbrush.,takes his toothbrush licks off the toothbrush and spits it into the water.,removes food from his mouth and add dry wax on his toothbrush.\n18053,anetv_5OWJ7WqKWMU,16828,The young boy then figures it out and starts talking about the toothbrush and begins laughing. He then,The young boy then figures it out and starts talking about the toothbrush and begins laughing.,He then,gold,comes back to speak to the camera and sings to a bit of others talking and grinning.,begins to paint as hard as he can.,puts the brush under the water and continues brushing his teeth.,removes the glasses of the man and applies more lotion to his face and resumes continuing his piercing.\n18054,anetv_5OWJ7WqKWMU,16826,\"A young toddler boy is standing in front of a sink with an electrical toothbrush, brushing his teeth. Someone then\",\"A young toddler boy is standing in front of a sink with an electrical toothbrush, brushing his teeth.\",Someone then,gold,washes the shoe while showing brushing the shoe.,comes by him and helps hip operates his toothbrush.,is brushing again with the shaver on his hands.,\"pushes the ice to the floor, a little towel.\"\n18055,anetv_5OWJ7WqKWMU,16827,Someone then comes by him and helps hip operates his toothbrush. The young boy then,Someone then comes by him and helps hip operates his toothbrush.,The young boy then,gold,lifts the last one that is made on washing frame.,puts into his work to blow dry his hair.,starts to leave.,figures it out and starts talking about the toothbrush and begins laughing.\n18056,anetv_BCC6fxrmA9M,6919,\"Four men are in a room, three of whom are being interviewed by the fourth man who has blonde hair, is wearing glasses, and has a camera crew with him. The interviewer\",\"Four men are in a room, three of whom are being interviewed by the fourth man who has blonde hair, is wearing glasses, and has a camera crew with him.\",The interviewer,gold,steps into the room raising his hands while the others and the other players look toward the audience.,\"leads one of the men into the hallway to a piano, where the man has a seat.\",of the men give some of his shears to engage in a masked form next to the first man.,looks at another flag over the field.\n18057,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33187,14790,He walks off in the rain. Later he,He walks off in the rain.,Later he,gold,enters a coffee shop.,steps along the sidewalk outside his apartment.,drives someone to new cabin.,is outside on a shelter at his hotel.\n18058,anetv_OzXD3WO6jrs,14526,\"A man stands on front the parallel bars preparing to perform. Then, the man\",A man stands on front the parallel bars preparing to perform.,\"Then, the man\",gold,performs his routine on the parallel bars.,\"points to his back, waist, and flip.\",holds his child up in the trampoline.,jumps and then jumps and lands in front of a large group of people.\n18059,anetv_OzXD3WO6jrs,9703,A man jumps onto two bars. He,A man jumps onto two bars.,He,gold,does a gymnastic bar routine.,jumps over the bars while jumps and lands on a mat.,does a gymnastics routine on the balance bars.,does a gymnastics routine on the bars.\n18060,anetv_OzXD3WO6jrs,14528,\"Then, the man flips twice an after continues with his routine. The man\",\"Then, the man flips twice an after continues with his routine.\",The man,gold,\"stands on his hands, then flips twice an land stand on the mat.\",sits down and throws the host's body in the air.,\"runs, soaring, through the wide bars that sit on a tower.\",\"spins around on his body but then dismounts and he amused, head down as he does his final success.\"\n18061,anetv_OzXD3WO6jrs,9704,He does a gymnastic bar routine. He,He does a gymnastic bar routine.,He,gold,lands on a mat with people above him.,is lobbing himself off the beam.,gives high the set up alone hanging in ready to jump.,does a back flip off and lands on the mat.\n18062,anetv_OzXD3WO6jrs,14527,\"Then, the man performs his routine on the parallel bars. Then, the man\",\"Then, the man performs his routine on the parallel bars.\",\"Then, the man\",gold,lets a gymnast down and over the waves.,measures and moves the bars on set.,\"dismounts, spins on the mat, then spins his baton in the air and lands on the mat again.\",flips twice an after continues with his routine.\n18063,anetv_Cx1614E1Mgk,10575,\"A man is talking and playing drums in a split screen. As he explains the process, he\",A man is talking and playing drums in a split screen.,\"As he explains the process, he\",gold,walks up and gives them a thumbs up.,has a list of hand phrases on screen.,uses his hands to beat out a tune.,plays again and shows the muscles on the musician model.\n18064,lsmdc3027_GET_HIM_TO_THE_GREEK-12264,18384,\"Someone's stares slack - jawed, then drops his gaze. Someone\",\"Someone's stares slack - jawed, then drops his gaze.\",Someone,gold,stares at him in alarm.,gets up and walks away.,stares up at them and stares after tears.,\"nods, but his face becomes serious.\"\n18065,lsmdc0001_American_Beauty-45712,17651,\"People stand next to a dumpster behind the service entrance to the hotel, smoking a joint. Suddenly, the service entrance opens, and a large catering boss in a cheap suit\",\"People stand next to a dumpster behind the service entrance to the hotel, smoking a joint.\",\"Suddenly, the service entrance opens, and a large catering boss in a cheap suit\",gold,peers out at them.,\"speeding down toward the clerk, the shopping bag.\",fills the ropes as they tongues up.,sits up beside them bespectacled a wooden tray - - laying on his cage - sleeves.\n18066,lsmdc0001_American_Beauty-45712,17650,This situation is loaded and they both know it. People,This situation is loaded and they both know it.,People,gold,\"brought their own wallet, the girl refuses; they get excited to unload the money.\",\"stand next to a dumpster behind the service entrance to the hotel, smoking a joint.\",looks from another man into the harbor on the wharf.,is a short humored man in a goatee manner as he is searching on shelves.\n18067,anetv_Ac_8KQGAe0c,1060,A person takes the cats paw and starts clipping its nails. The person,A person takes the cats paw and starts clipping its nails.,The person,gold,shows off the table nails and takes a sharpener knife from the red bag.,picks the cat up to clip their back paws.,unrolls the cat's nails and pads toward a painting of a larger room.,picks up a plastic brush and starts painting the back of a cat paw.\n18068,anetv_Ac_8KQGAe0c,1059,A cat is standing on a table getting petted. A person,A cat is standing on a table getting petted.,A person,gold,licks an ice cream cone at the boy's mouth.,is standing ready to play the cone.,is drilling holes into a paper.,takes the cats paw and starts clipping its nails.\n18069,anetv_Ac_8KQGAe0c,1061,The person picks the cat up to clip their back paws. The person,The person picks the cat up to clip their back paws.,The person,gold,pets the cat after clipping its nails.,cuts the cat's claws while the baby's claws lick it around.,records the bite in cake.,put the swing back down and then pushed to cut its claws.\n18070,anetv_tww0AR8NanU,2630,Te man in the room is playing the harmonica. the man,Te man in the room is playing the harmonica.,the man,gold,sits down in a room playing the piano in front of an audience.,is playing the harmonica and guitar on his lap playing the tune.,is playing a small flute while talking to the camera.,stops playing and keeps talking to the camera in a small white room.\n18071,anetv_tww0AR8NanU,2629,Man is standing talking to the camera showing a big metal piece. te man in the room,Man is standing talking to the camera showing a big metal piece.,te man in the room,gold,talks and shows how he shows the d'oeuvre properly.,is talking to the camera and talking to the camera.,is playing the harmonica.,walks in place behind a man.\n18072,anetv_UaCSf-kW2Ho,1270,People are sitting down in chairs playing drums. People,People are sitting down in chairs playing drums.,People,gold,are sitting behind them.,are playing drums and playing.,are playing drums on the floor as they play.,are walking past on the sidewalk.\n18073,anetv_RTS4mOH3cFY,6788,\"A residential security video is playing and shows an empty yard and road. A man walking two dogs show up walking on the side closer to the camera, and he quickly notices another dog from the other side of the road suddenly coming his way so he tries to tighten up his dogs leash to gain control of them, but the other dog\",A residential security video is playing and shows an empty yard and road.,\"A man walking two dogs show up walking on the side closer to the camera, and he quickly notices another dog from the other side of the road suddenly coming his way so he tries to tighten up his dogs leash to gain control of them, but the other dog\",gold,is not really exposed.,begins running towards them and starts attacking the man's dogs.,still tied behind his back also.,can try to work nice with the tail and curved across the yard.\n18074,lsmdc1046_Australia-90469,825,The sun sets on the darkening plains and hills. Darkness,The sun sets on the darkening plains and hills.,Darkness,gold,\", she stares out of the clouds, moving behind him, and finds her mother sleeping in him.\",settles on the house and buildings of faraway downs.,\"hangs onto the wall, dappled by the shadow.\",watches someone suspiciously as he races toward the woods.\n18075,lsmdc1046_Australia-90469,824,\"He gives a smile as dry as the flat plains which stretch out to the hills on the horizon, and accompanies someone down the hill, away from the cemetery. The sun\",\"He gives a smile as dry as the flat plains which stretch out to the hills on the horizon, and accompanies someone down the hill, away from the cemetery.\",The sun,gold,shines on as she stalks along a winding coast with very violent waters.,goes off around the defeated trees as the others arrive.,sets on the darkening plains and hills.,\"pushes through the grecian forest, into the desert, after swirling of feathers.\"\n18076,anetv_5MfhJjbNNJE,15602,A man is holding a jump rope and talking. He,A man is holding a jump rope and talking.,He,gold,starts jump roping and doing tricks.,stops and turns on.,puts the rope around the man.,pulls a pole to his balance then lifts it to the ground and hits it against the fence a few times.\n18077,anetv_G16xScfD5WM,16316,\"A man does a flip, then does a back flip. We\",\"A man does a flip, then does a back flip.\",We,gold,\"in the dribbling competition, the young man falls and gets into a roofed gym.\",\", the man jumps again do the same routine with the balance bar.\",see the people playing instruments again.,gymnasts chops the discus again.\n18078,anetv_G16xScfD5WM,16314,A man kicks another man to the ground. We,A man kicks another man to the ground.,We,gold,see a man toss another man over his back.,snake nudges his pockets and he then lands.,pull himself up out of the clothes and walks off before covering himself into dismounting.,crosses the blue panel on the wall.\n18079,anetv_G16xScfD5WM,16311,We see the title over a landscape. People,We see the title over a landscape.,People,gold,walk around the house in scene.,see the close view of a man riding on a horse.,are playing instruments in a field.,begin cleaning in the car.\n18080,anetv_G16xScfD5WM,16315,We see a man toss another man over his back. A man,We see a man toss another man over his back.,A man,gold,jumps out in front of a body.,discusses a man standing on ice.,is in a large arena twirling a bull.,\"does a flip, then does a back flip.\"\n18081,anetv_G16xScfD5WM,16313,We then see men practicing martial arts. A man,We then see men practicing martial arts.,A man,gold,holds up a baton.,talks to the camera.,bends using poles as they talk.,kicks another man to the ground.\n18082,anetv_G16xScfD5WM,16312,People are playing instruments in a field. We then,People are playing instruments in a field.,We then,gold,see men practicing martial arts.,see people playing tug of war in a arena.,see a man sitting on the ground behind the boy.,see a man in a green shirt perform steps in between bumping in each other.\n18083,lsmdc0041_The_Sixth_Sense-67786,10604,The house seems threateningly still. An unnatural silence,The house seems threateningly still.,An unnatural silence,gold,fills the old television.,fills each room of the house.,begins to fight the wail of the scattering germans.,is heard over the screen.\n18084,lsmdc0041_The_Sixth_Sense-67786,10612,His eyes catch a slant of light now coming from the kitchen. He,His eyes catch a slant of light now coming from the kitchen.,He,gold,slips breakfast and walks into a kitchen.,stops at the door to the living room.,moves down the hall and turns the corner - - coming to a stop in the doorway of the kitchen.,offers a basket of cigarettes.\n18085,lsmdc0041_The_Sixth_Sense-67786,10609,He closes his pants and turns. He,He closes his pants and turns.,He,gold,enters the cannon's room.,spots a pile of foosball outfits on his bed.,takes off his socks and puffs over someone's skin.,just stands there and stares into the darkness of the hall.\n18086,lsmdc0041_The_Sixth_Sense-67786,10624,Tiny statues of saints surround the interior perimeter. We,Tiny statues of saints surround the interior perimeter.,We,gold,\"mariachi certificates leisurely landing, motorcycles.\",apparate in the desert.,see the statue someone stole from the church is in here.,see the names of a plant growing from several giant lines.\n18087,lsmdc0041_The_Sixth_Sense-67786,10610,He just stands there and stares into the darkness of the hall. His breath,He just stands there and stares into the darkness of the hall.,His breath,gold,comes and slowly closes inches from his fingers.,catches more sparks as he looks up from his wand.,forms tiny clouds in the cold air.,is visible in the sunlight now at central park.\n18088,lsmdc0041_The_Sixth_Sense-67786,10607,His body becomes very still. He slowly,His body becomes very still.,He slowly,gold,glides over the dance and makes a wish.,reaches for the toilet handle and flushes.,turns hers back down his head and stares after her.,straightens up and looks around.\n18089,lsmdc0041_The_Sixth_Sense-67786,10605,He moves cautiously into the hall. Someone,He moves cautiously into the hall.,Someone,gold,gazes down the staircase.,moves briskly to a door halfway down the corridor.,sat at the end through the trap door.,hands down someone and with him down a hallway.\n18090,lsmdc0041_The_Sixth_Sense-67786,10618,They've been savagely cut. Someone,They've been savagely cut.,Someone,gold,\"lifts the bottle to someone, transfixed.\",turns and runs down the hall.,gets to yank them away.,has been calling someone's cab.\n18091,lsmdc0041_The_Sixth_Sense-67786,10613,He moves down the hall and turns the corner - - coming to a stop in the doorway of the kitchen. Someone,He moves down the hall and turns the corner - - coming to a stop in the doorway of the kitchen.,Someone,gold,stares at the back of a person cooking food on the stove.,is lying on the side of the bed behind him staring at his surroundings.,leans forward and aims at the window.,\"leaps up from the cab, sees something crashing on the sidewalk, and shuts it up.\"\n18092,lsmdc0041_The_Sixth_Sense-67786,10620,His legs disappear as the bedsheets flap closed behind him. The crazed woman,His legs disappear as the bedsheets flap closed behind him.,The crazed woman,gold,flops back dazed in the wind.,sits still in a chair under stacks of bandages.,stands at the end of the hall.,follows as someone races out of the cabin.\n18093,lsmdc0041_The_Sixth_Sense-67786,10623,The bedsheet walls of the tent are lined with religious pictures taped to the walls. Tiny statues of saints,The bedsheet walls of the tent are lined with religious pictures taped to the walls.,Tiny statues of saints,gold,creatures appear animated by workshop.,ones are weathered: desolate.,surround the interior perimeter.,dot eerily vertical straight lines is shown.\n18094,lsmdc0041_The_Sixth_Sense-67786,10611,His breath forms tiny clouds in the cold air. Someone finally,His breath forms tiny clouds in the cold air.,Someone finally,gold,rests a few posts on the back of a balustrade as if in a prayer.,looks into his son's eyes.,leans in and gazes up at the water.,steps out into the hallway.\n18095,lsmdc0041_The_Sixth_Sense-67786,10608,He slowly reaches for the toilet handle and flushes. He,He slowly reaches for the toilet handle and flushes.,He,gold,stops and looks at the red fax worker.,closes his pants and turns.,turns around and peeks up onto the bed.,reaches out to video decorates this.\n18096,lsmdc0041_The_Sixth_Sense-67786,10615,Someone's face turns the color of ash. Someone,Someone's face turns the color of ash.,Someone,gold,flips the unit off the bed.,backs up to the doorway.,smiles as she glances at him.,\"regards towards the ground, smiling.\"\n18097,lsmdc0041_The_Sixth_Sense-67786,10622,Someone is curled up in the tent. The bedsheet walls of the tent,Someone is curled up in the tent.,The bedsheet walls of the tent,gold,are combined with multi colored parasails and its red wings.,protect themselves as hell lie right under them.,are lined with religious pictures taped to the walls.,are bright and waiting in the narrow peering pattern inside the house.\n18098,lsmdc0041_The_Sixth_Sense-67786,10625,We see the statue someone stole from the church is in here. This tent,We see the statue someone stole from the church is in here.,This tent,gold,is a sanctuary made by an eight - year - old to hide in.,\"is in a smartly furnished room, all about, shelves of straws taking apart.\",\"is parked in the side of the great river, gazing out into the water as he moves closer.\",is packed with someone and someone.\n18099,lsmdc0041_The_Sixth_Sense-67786,10616,Someone backs up to the doorway. The woman,Someone backs up to the doorway.,The woman,gold,slightly looks at her and watches her into the room.,spots someone two long poles sticking away from two men in a tree.,\"turns and steps off, climbing the windshield.\",smiles menacingly as she thrusts her wrists forward.\n18100,lsmdc0041_The_Sixth_Sense-67786,10617,The woman smiles menacingly as she thrusts her wrists forward. They,The woman smiles menacingly as she thrusts her wrists forward.,They,gold,'ve been savagely cut.,slowly paces toward the bar.,\"blazes, leaving after she is done.\",dance the kisses on her forehead.\n18101,lsmdc0041_The_Sixth_Sense-67786,10619,Someone turns and runs down the hall. Someone,Someone turns and runs down the hall.,Someone,gold,joins someone as an assistant walks across.,runs across his room.,turns to look at the phone.,\", naked, is naked.\"\n18102,lsmdc0041_The_Sixth_Sense-67786,10606,Someone moves briskly to a door halfway down the corridor. Someone,Someone moves briskly to a door halfway down the corridor.,Someone,gold,gets in his car and faces someone.,turns on the light in the bathroom.,stares down at the automaton.,walks stiffly through the roof of the forest.\n18103,anetv_Z2GWtB7MGVs,8639,A sailboat is being swayed by a large wave. A lady,A sailboat is being swayed by a large wave.,A lady,gold,gives her a once lifted while two divers walk by.,has sand under a boat's hull and is creating a wave.,is surfing on a large wave as a boat rides next to her filming it.,on the camera moves sailing on a surfboard in the water.\n18104,anetv_Z2GWtB7MGVs,8642,We see people surfing the large waves of the river. A man,We see people surfing the large waves of the river.,A man,gold,stands flying in the air above his water.,rides down on rafts and dives into the water.,does a handstand on a surfboard while surfing.,waves to the camera.\n18105,anetv_Z2GWtB7MGVs,8640,A lady is surfing on a large wave as a boat rides next to her filming it. We,A lady is surfing on a large wave as a boat rides next to her filming it.,We,gold,see in the upper point to the bridge.,see the boat in the water swaying again.,see the end of the clip on and the lady points up a photo of a boat.,people join by the man and the water and the boat pulled by large poles and snowboards.\n18106,anetv_Z2GWtB7MGVs,8638,The camera pans back to show a hotel with red lanterns in the air and crows of people standing and looking out over the beach. A man,The camera pans back to show a hotel with red lanterns in the air and crows of people standing and looking out over the beach.,A man,gold,is lying on the floor shining his shoe.,rides a jetski in front of a large wave of dirty water.,carries the kite out of his hand and walks through the yard with a crowd.,stands across from the side pads and approaches the camera.\n18107,anetv_Z2GWtB7MGVs,8641,We see the boat in the water swaying again. We,We see the boat in the water swaying again.,We,gold,see people surfing the large waves of the river.,see a boy on a hispanic helmet.,see the person ride and see the boat again.,see the surfer hard off.\n18108,anetv_xrl3oxTa6sQ,15542,Some of the fire gets in the floor and the man step on the fire to turn of the fire. men,Some of the fire gets in the floor and the man step on the fire to turn of the fire.,men,gold,are sitting on chairs staring at a truck.,poke out each other or form the fire as the man drive on and the same setting gets fire.,bring weapons and wipe it down the tree.,are drinking beer and standing around a firewood.\n18109,anetv_xrl3oxTa6sQ,2031,A darkness is shown with the camera moving around followed by a light and a large blaze shooting up into the sky. A group of men,A darkness is shown with the camera moving around followed by a light and a large blaze shooting up into the sky.,A group of men,gold,play of numerous movies and do tricks with bowling balls.,are shown doing tricks with machine all together by a different camera and face off sides as well.,stand around the fire and laugh with one another and then try to stop out some fire.,get out of their lift and walk away as they cross the street after they look back and forth between the wood and tree.\n18110,anetv_xrl3oxTa6sQ,15541,Dark wood is shown and men are in front of a big firewood. some of the fire gets in the floor and the man,Dark wood is shown and men are in front of a big firewood.,some of the fire gets in the floor and the man,gold,is talking and talking about it.,pushes a large whipping device out of the way.,picks up a large piece of wood by a thick pipe.,step on the fire to turn of the fire.\n18111,anetv_uK0dxEMBXfY,5267,The man motions he had across the yard. The man then,The man motions he had across the yard.,The man then,gold,clears the skin near the intermittently.,plays using other parts of the room.,\"turns, practicing his tutorial.\",mows his lawn with his mower.\n18112,anetv_uK0dxEMBXfY,5266,A man standing in a yard talks to the camera about his yard. The man motions he,A man standing in a yard talks to the camera about his yard.,The man motions he,gold,begins to hand his hand on drawing and with the comb.,had across the yard.,is outside by raking something out of the way.,starts to apply block alone.\n18113,anetv_uK0dxEMBXfY,5268,The man then mows his lawn with his mower. The man,The man then mows his lawn with his mower.,The man,gold,continues playing the tattoo on the grass in the end.,walk down the hall carrying a towel.,stops and shows the electrical cord on his mower.,gets to the mower and walks with the stick to mow.\n18114,lsmdc1012_Unbreakable-6847,17260,Someone nods abstractedly as the crimson stain quickly spreads. The other body,Someone nods abstractedly as the crimson stain quickly spreads.,The other body,gold,\"follows someone, his face soaked with sweat in the cold.\",heaves as blood forms a pool on top of the bandages.,rises off the carpet and takes its wagging.,\"enters, with a lightning cannon in the center of the graphic.\"\n18115,lsmdc1012_Unbreakable-6847,17259,\"Still staring at the other figure, someone slowly shakes his head. Someone\",\"Still staring at the other figure, someone slowly shakes his head.\",Someone,gold,\"shakes his head again, watching a crimson stain slowly seeping through the bandages of the other passenger.\",rises to his feet and stands over his head.,stands up and kneels down to someone.,opens his eyes and stares.\n18116,anetv_P00O62PPzNU,2487,A large group of people seen pulling a rope away from one another. More games,A large group of people seen pulling a rope away from one another.,More games,gold,are shown afterwards and leads into several men riding on the horse.,are shown of people playing tug of war.,upset a man talking to the camera while others watch on the side.,are shown with various people performing jump roping while others watch on the sides.\n18117,anetv_P00O62PPzNU,2488,More games are shown of people playing tug of war. People,More games are shown of people playing tug of war.,People,gold,continue to walk down the dirt path.,watch on the sides as the men continue to play with one another.,put people around a fence trying to get one.,man underwater with the camera helps.\n18118,anetv_jwndE_xn8sA,2864,A man woman with long hair is seen poking at her cheeks and taking a puff out of a hookah. She then,A man woman with long hair is seen poking at her cheeks and taking a puff out of a hookah.,She then,gold,rubs herself all together and blows into smoke.,blows smoke rings into the camera and looks down smiling.,throws one another down and pierces her nose with the hookah.,puts it in a tough manner and mashes them back into paper smiling.\n18119,anetv_jwndE_xn8sA,11086,A girl is sitting in front of the camera. the girl,A girl is sitting in front of the camera.,the girl,gold,begins helping her put her feet on the ground.,picks up an arm and stands on the bottom of the will.,takes several puffs from a large pipe.,begins cutting her hair with her hands.\n18120,anetv_IbcBQFvcS9o,11780,A car covered in snow appears and the person is cleaning the snow from the car and its open the road in front of the car. a red car appears covered in snow and a person,A car covered in snow appears and the person is cleaning the snow from the car and its open the road in front of the car.,a red car appears covered in snow and a person,gold,is scoops through rapids of a person's nose.,is cleaning the snow.,is welding something in the snow.,is helping the bottom to the air and shovel snow.\n18121,anetv_IbcBQFvcS9o,11779,A white house and a backyard full of snow appears a person is cleaning the fron entrance of the house. a car covered in snow appears and the person,A white house and a backyard full of snow appears a person is cleaning the fron entrance of the house.,a car covered in snow appears and the person,gold,is cleaning the snow with a gas mask.,is cleaning the snow from the car and its open the road in front of the car.,comes out of the gate where a whole bull bikers are parked.,trims the roof of the back of the car a second time.\n18122,anetv_IbcBQFvcS9o,11781,A red car appears covered in snow and a person is cleaning the snow. a black car,A red car appears covered in snow and a person is cleaning the snow.,a black car,gold,is going down the driveway.,suddenly reappears on a shanty street.,starts shoveling snow on another car.,is covered in snow.\n18123,lsmdc1045_An_education-90016,17855,He gets back behind the wheel. He,He gets back behind the wheel.,He,gold,drives up at walking pace beside someone.,leaps over the wheel and grabs the wheel.,walks into the home.,sits in a passenger seat beside the scooter.\n18124,lsmdc1045_An_education-90016,17853,He gets out of the car. He,He gets out of the car.,He,gold,runs around to put the cello in the back seat.,drapes him into the corner of the van.,grabs someone's hands and follows them to the wheel.,gets in the car.\n18125,lsmdc1045_An_education-90016,17854,He runs around to put the cello in the back seat. He,He runs around to put the cello in the back seat.,He,gold,\"raises a telephone to even more, kneels with the phone that sits listening.\",starts at his tech quickly when he hears the sound of the bottle door.,is playing the drums with a smiley bow to his ear.,gets back behind the wheel.\n18126,lsmdc3009_BATTLE_LOS_ANGELES-291,6276,\"Someone and someone grab their gear. Outside, the group\",Someone and someone grab their gear.,\"Outside, the group\",gold,arrives at a lined road.,rushes toward the bus.,run along the hallway.,of men flank someone.\n18127,lsmdc3009_BATTLE_LOS_ANGELES-291,6279,Someone gets down on the bus floor. Someone,Someone gets down on the bus floor.,Someone,gold,displays someone's makeup.,marketing line says good - bye?,grimaces on the floor.,\"his head in his hands, he lets go of the rope and breaks off the back in the shower.\"\n18128,anetv_kVzojOj5_Zg,14231,He plays with another instructor on the court. He,He plays with another instructor on the court.,He,gold,comes to the screen.,is playing the violin.,\"lands in the sky with a player, then two people compete against each other.\",just talks and talks for a while about all about it.\n18129,anetv_kVzojOj5_Zg,14230,A volleyball instructor is giving information about his volleyball skills in salt lake city. He,A volleyball instructor is giving information about his volleyball skills in salt lake city.,He,gold,begins to cross multiple different surfing sport in the water and duet.,waves to people from the beach.,plays with another instructor on the court.,\"takes several awards, hitting the pucks with their paddles.\"\n18130,anetv_an5XI45pIl8,18312,They wave and clap toward the crowd. One man,They wave and clap toward the crowd.,One man,gold,plunges onto the water with an oar.,helps push the puck and falls to a column.,\"presents the other man, a musician, with an award.\",flips off and then stands at the lectern and speak in unison.\n18131,anetv_an5XI45pIl8,17391,One of the men waves and the other man claps. The man,One of the men waves and the other man claps.,The man,gold,wins and twinkle his gaze.,claps a young lady up on the disc face.,stands and hands an object to the older man as he stands.,touches the rub lotion on his left hand.\n18132,anetv_an5XI45pIl8,18311,Two men are seated together on a stage. They,Two men are seated together on a stage.,They,gold,wave and clap toward the crowd.,begin pumping their arms and leads.,are playing a more play game.,are engaged in a game of lacrosse.\n18133,anetv_an5XI45pIl8,17393,More still shots of the older man and a video of the older man playing drums are shown. The two men,More still shots of the older man and a video of the older man playing drums are shown.,The two men,gold,drop on their hands stop playing together.,play together while more clips are shown of people playing guitar.,\"shake hands, sit down and talk.\",continue to play the new solo instrument while others watch.\n18134,anetv_an5XI45pIl8,17392,Still shots of the older man and a video of the older man playing drums are shown. The two men,Still shots of the older man and a video of the older man playing drums are shown.,The two men,gold,are practicing in the grass.,continue to play a game together.,shake hands and play while the man hi the cars.,discuss the object they are holding.\n18135,anetv_HtkuvF7VbSQ,9836,A woman in a pink shirt is sitting in front of him. He,A woman in a pink shirt is sitting in front of him.,He,gold,completes the opening of a first block.,shows him to a pair of different people working on a lawn.,is playing an exercise machine in an elliptical machine.,walks out the door of the shop and walks down the street.\n18136,anetv_HtkuvF7VbSQ,9835,He stands up and yells at the man tattooing. A woman in a pink shirt,He stands up and yells at the man tattooing.,A woman in a pink shirt,gold,is hitting a pinata hanging from a wall.,is throwing darts at a dartboard.,is sitting in front of him.,attempts to put the ring on the ground.\n18137,anetv_HtkuvF7VbSQ,15032,The man leaves the chair and walks out of the venue. The man,The man leaves the chair and walks out of the venue.,The man,gold,is walking down the sidewalk.,tries to get him over.,holds up a window and talks to the cameraman.,falls to the man's pink face.\n18138,anetv_HtkuvF7VbSQ,15030,A guy uses a tattoo gun on a man's arm. The man,A guy uses a tattoo gun on a man's arm.,The man,gold,uses his electric tool to tap it quickly.,is upset by the tattoo procedure.,weld on his helmet.,peels across the side of the screen.\n18139,anetv_HtkuvF7VbSQ,9834,A man is sitting in a chair getting a tattoo. He,A man is sitting in a chair getting a tattoo.,He,gold,has medics up to move a tattoo on his right leg.,stands up and yells at the man tattooing.,brushes and rubs the hair up a woman's face.,walks between them and begins playing again.\n18140,anetv_HtkuvF7VbSQ,15031,The man is upset by the tattoo procedure. The man,The man is upset by the tattoo procedure.,The man,gold,\"danced, showing images.\",approaches another side of the table using the object.,leaves the chair and walks out of the venue.,cuts a cat's claws two more times.\n18141,anetv_HtkuvF7VbSQ,15029,A boy is talking directly into a camera. A guy,A boy is talking directly into a camera.,A guy,gold,dog images gobs his home.,takes a selfie stick while diving.,uses a tattoo gun on a man's arm.,is laying a tray of ice and tray to play.\n18142,lsmdc3024_EASY_A-11482,17821,\"Someone lingers, brushing her hair back. She\",\"Someone lingers, brushing her hair back.\",She,gold,spots someone and strolls toward him.,watches as someone plops down on a bench.,has a low expression on her hair.,looks at his daughter.\n18143,lsmdc3024_EASY_A-11482,17822,She watches as someone plops down on a bench. He,She watches as someone plops down on a bench.,He,gold,glumly eats a snack.,stands over a folder.,joins the open trunk.,gets out of bed and gets out.\n18144,lsmdc3024_EASY_A-11482,17820,She stutters and stalks off. She,She stutters and stalks off.,She,gold,pets a tight red hat.,trains her eyes on the incantus.,gives him an angry gape.,\"grins broadly, checks her wristwatch and stares distantly.\"\n18145,anetv_GQzwzOM9db8,7187,\"The athlete who is wearing gray tights and black shirt with number 2 on it started go on the beam and started to swirl around. When he got of from the beam, he\",The athlete who is wearing gray tights and black shirt with number 2 on it started go on the beam and started to swirl around.,\"When he got of from the beam, he\",gold,dismounts from the calf and jumped around the bars to show off the jumps and his arms.,\"walked towards the yellow container that contains white powder, then went back to the beam and did his tricks by swirling around.\",bends down and kicked the father.,repels and hit the ball and just jumped off the bars.\n18146,anetv_FeKEqUxiReA,9434,A woman is laughing as she jumps rope inside a gym. She,A woman is laughing as she jumps rope inside a gym.,She,gold,is fighting with a coach doing her jump.,\"is wearing an orange skirt and smiling, jumping up and down on a mat with her arms in the air.\",bumps against an ornament on the playground.,\"continues jumping for a long period of time, speeding up and changing positions as men with cameras record her.\"\n18147,anetv_3K62qZ2hGyw,7394,She pats her head and shakes her hips faster. The lady,She pats her head and shakes her hips faster.,The lady,gold,shakes her hips faster and waves her arms over her head.,went behind then stops and picks up the shovel.,straightens up the bowler to braid it.,stops playing and quickly rides the other right.\n18148,anetv_3K62qZ2hGyw,7393,The lady shows how to lift your hips one at a time. She,The lady shows how to lift your hips one at a time.,She,gold,pats her head and shakes her hips faster.,continues talking while sitting on the bar and enjoying the time.,does a synchronized dismount on the platform.,steps back down to the floor.\n18149,anetv_3K62qZ2hGyw,7391,The lady shows us how to belly dance by dancing. She,The lady shows us how to belly dance by dancing.,She,gold,gets up and talks in the microphone.,guy is shown above the camera while wearing a ballerina costume and we see several ladies dance about dance.,finishes talking and roams a little bit before falling down.,shifts to her right then back and lifts her hips while belly dancing.\n18150,anetv_3K62qZ2hGyw,7395,The lady shakes her hips faster and waves her arms over her head. She,The lady shakes her hips faster and waves her arms over her head.,She,gold,stops dancing and stands still.,stacks the bow while waiting for his partner to stop.,who beams to the camera as her daughter bends over someone.,drops each faint tugs on her head.\n18151,anetv_3K62qZ2hGyw,7390,A lady is standing in a white room talking to the camera. The lady,A lady is standing in a white room talking to the camera.,The lady,gold,sands down the sharpener and begins mixing it into a sponge.,stops knitting and starts talking.,shows us how to belly dance by dancing.,\"puts shoe down, and starts to iron the shirt on the garden.\"\n18152,anetv_3K62qZ2hGyw,7392,She shifts to her right then back and lifts her hips while belly dancing. The lady,She shifts to her right then back and lifts her hips while belly dancing.,The lady,gold,performs pommel high backwards at session and then flips.,is then seen sitting in her turn on rowing exercise while the weights gymnasts don't cartwheel and moves with her arms up in the,shows how to lift your hips one at a time.,walks off the stage away from the stage.\n18153,anetv_3K62qZ2hGyw,7389,We see the title screen for Howcast. A lady,We see the title screen for Howcast.,A lady,gold,is standing in a white room talking to the camera.,is in a gym and she is shown using cues.,talks to the camera in front of a glass bucket and paints a top brush to her hair.,tests the bar talks to the camera.\n18154,anetv_4R5KDUqBPcU,1338,There's a man wearing a black athletic suit in a shot put field practicing shot put. He,There's a man wearing a black athletic suit in a shot put field practicing shot put.,He,gold,begins by taking the ball in his hand and holding it against his neck.,gives the air a high five.,stands up and begins running around.,throws the javelin and the race is not done.\n18155,anetv_4R5KDUqBPcU,1339,He begins by taking the ball in his hand and holding it against his neck. Then he,He begins by taking the ball in his hand and holding it against his neck.,Then he,gold,spins around and throws the ball far ahead.,goes back to the refrigerator and begins to outdoors that he records.,\"starts playing the drums them faster, finally pausing to speak to the camera of passing.\",\"pours the bottle in brown that is on the ground, drums the cloth on the table the announcers have to play.\"\n18156,anetv_l2drIA62T8w,4325,The groomer brushes the neck and back of a dog on a table with brushes. The groomer,The groomer brushes the neck and back of a dog on a table with brushes.,The groomer,gold,uses a glove with brushing surface to groom the dog.,retrieves the dog as well as its grooming gets groomed.,brushes the dog in hair as the groomer brushes the dog's hair.,brushes the horses hair and starts to brush the different man's hair.\n18157,anetv_l2drIA62T8w,15162,\"She picks up an electric razor, talking about it. She\",\"She picks up an electric razor, talking about it.\",She,gold,continues to wash the thermometer with a plastic fork.,uses the razor to cleanly groom a long haired dog.,takes out a toothbrush and wipes down her face with a brush.,removes the shoes and sprays stain on the lens.\n18158,anetv_l2drIA62T8w,4323,A dog groomer pets the dog's fur with her hands. The groomer,A dog groomer pets the dog's fur with her hands.,The groomer,gold,pets the dog while also brushing down the sidewalk.,brushes the fur on the dog's fur.,brushes the neck and back of a dog on a table with a comb.,continues to brush the cats fur and brushes the dog as she pets the dog.\n18159,anetv_l2drIA62T8w,15161,A woman is talking to the camera in front of a white background. She,A woman is talking to the camera in front of a white background.,She,gold,does a different dance routine before she falls backward and lands on a mat.,begins in an animated series of energetic workout very casually and on a mat.,applies a contact lens to her eye.,\"picks up an electric razor, talking about it.\"\n18160,anetv_l2drIA62T8w,4324,The groomer brushes the neck and back of a dog on a table with a comb. The groomer,The groomer brushes the neck and back of a dog on a table with a comb.,The groomer,gold,removes the hair of the cat attempting to cleans the dog with the stick.,proceeds to brush the horse's mane.,paints the cat fur to the right then then brush the shoe and zoom off the left side to face a second.,brushes the neck and back of a dog on a table with brushes.\n18161,anetv_gXk9TiqGUHs,11968,A lady spins on skates. A guy,A lady spins on skates.,A guy,gold,jumps backwards on the beam.,throws wire and falls into the water.,falls into the sand wearing only red mask.,walks with surf board underneath his arm.\n18162,anetv_gXk9TiqGUHs,11963,A man surfs on a body of walk. A male,A man surfs on a body of walk.,A male,gold,does roughly himself as he jumps onto a ski board.,pulls a duffel bag.,pass sniffs a wave in front.,extends the raft in place.\n18163,anetv_gXk9TiqGUHs,11966,A guy sticks his pinkie finger into his ear. The guy,A guy sticks his pinkie finger into his ear.,The guy,gold,points gestures in front of the camera.,rubs his eye with his fingers.,talks and then makes gestures with a small white dog.,is getting his ear pierced.\n18164,anetv_gXk9TiqGUHs,11964,A male pulls a duffel bag. The male,A male pulls a duffel bag.,The male,gold,writes on a slip.,leans back into the seat.,stamps the shoe out.,throws a heavy stack.\n18165,anetv_gXk9TiqGUHs,11967,The guy rubs his eye with his fingers. A guy,The guy rubs his eye with his fingers.,A guy,gold,removes a contact from the man's nose.,touches his back while he sits and talks.,wipes sunscreen out on his back and wet his fingers.,\"eyes a tiger, then makes a sarcastic salute, grabs, thumb and continues to ski.\"\n18166,anetv_gXk9TiqGUHs,11965,The male writes on a slip. A guy,The male writes on a slip.,A guy,gold,walks on the wall.,thin then pushes a machine and shoves them.,sticks his pinkie finger into his ear.,moves across a wall towards a small room.\n18167,lsmdc3060_SANCTUM-29255,19095,\"Someone follow, shining her flashlight over the rock walls. A single spotlight\",\"Someone follow, shining her flashlight over the rock walls.\",A single spotlight,gold,peers through the city's huge funnels.,shines on someone's face as he plays the drums.,falls from someone's name.,shines up from the floor as someone leads them through the darkened chamber.\n18168,lsmdc3060_SANCTUM-29255,19096,\"At the other base camp, someone dunks a teabag into a mug. Seated on a rock, he\",\"At the other base camp, someone dunks a teabag into a mug.\",\"Seated on a rock, he\",gold,prepares from the makeshift tin bale.,waits for someone and someone to reach the bottom.,opens a drawer with a photo in a guy's checked shaving session.,grows as word line appears on the screen.\n18169,anetv_b1RAYvxWawA,11168,Another boy is seen riding along the water in a canoe as well as several others paddling by. More shots,Another boy is seen riding along the water in a canoe as well as several others paddling by.,More shots,gold,are shown of diving.,are shown of people playing water polo as well as the water and people riding kayaks.,are shown of people riding in their canoes and capturing the scenery around them.,are shown of cars afterwards and people taking the water farther back and paddling.\n18170,anetv_b1RAYvxWawA,11167,A camera pans all around a lake showing the trees and mountains as well as the canoe sitting in front of him. Another boy,A camera pans all around a lake showing the trees and mountains as well as the canoe sitting in front of him.,Another boy,gold,is seen speaking to the camera and speaking to various men in various eats in a large pile.,rides into the boat and ends with more people closest to the group as well as people and various clips of bleachers gathered.,is seen riding along the water in a canoe as well as several others paddling by.,walks out of frame as he looks on the side to speak two more.\n18171,anetv_0WVkoTBmhA0,11892,A cartoon animation video is shown with people wandering around and rockets being shot. Two men,A cartoon animation video is shown with people wandering around and rockets being shot.,Two men,gold,fight robots of evil and ends with a to be continued.,crash up one another while still speaking to one another before playing the bagpipes.,are playing basketball back and fourth while the crowd watches.,are seen fencing indoors and cheering with one another while partying with one another.\n18172,lsmdc0046_Chasing_Amy-68545,12777,\"Someone goes down, falling forward into the crowd. The crowd screams and starts to scatter, someone\",\"Someone goes down, falling forward into the crowd.\",\"The crowd screams and starts to scatter, someone\",gold,screams in at the same extravagantly.,jumps over the table and raises his fists in the air.,sprints down a track chasing a punching bag.,raises the raised pistol.\n18173,lsmdc0046_Chasing_Amy-68545,12776,\"Someone explodes, He pulls a nine millimeter from his belt, draws on someone and fires. Someone\",\"Someone explodes, He pulls a nine millimeter from his belt, draws on someone and fires.\",Someone,gold,slides disconnects his hatchet's flame - stick.,\"goes down, falling forward into the crowd.\",unbuckles free and runs toward the truck.,\"slips underneath the cable, taking off his bloody mask.\"\n18174,lsmdc0046_Chasing_Amy-68545,12778,The crowd - is gone. Someone,The crowd - is gone.,Someone,gold,\"groggily violently then leans out a window, looking up at the dish in the dining kitchen.\",\"sits in his chair, laughing.\",walks up to a row of other cobwebs and puts a sheet to floor level.,\"above it, someone grabs someone's hand then kicks him to the ground.\"\n18175,anetv_PI1ZaFQ28Ao,12295,A lady discusses while standing in a kitchen adjacent to a sink. The lady,A lady discusses while standing in a kitchen adjacent to a sink.,The lady,gold,adds soda in a container and shows the silver bottle.,is holding a sponge while the sink water is running.,shows off her bottles and mixes.,adds oats into a glass of water.\n18176,anetv_PI1ZaFQ28Ao,12296,The lady is holding a sponge while the sink water is running. The lady,The lady is holding a sponge while the sink water is running.,The lady,gold,is soaking dishes in soapy water.,\"comes out of the faucet, and grabs a hand soap off it.\",grabs the board for a second and starts spraying herself.,rinses the glass with a liquid and wash it in front of her then again wipes the dishrag of the vinegar on a towel.\n18177,anetv_S_1_ZSMxRfg,10656,The person then cuts up vegetables and butters bread then putting various ingredients on the bread to make a sandwich. The person,The person then cuts up vegetables and butters bread then putting various ingredients on the bread to make a sandwich.,The person,gold,empties the cheese into slices in a pail and measures them to make sure the sandwich has back on.,cuts up the sandwich and places it around a plate to present in the end.,presents the tennis with a spatula.,put the bottle down in bed and tops them with a taste down using a spatula.\n18178,anetv_S_1_ZSMxRfg,47,\"The mayonnaise is spread on the toasted bread and then the ham is placed and then cheese, then mayo is spread again, then the bacon is added and then the lettuce and tomatoes. The person put sticks on the sandwich then cut into four, then he\",\"The mayonnaise is spread on the toasted bread and then the ham is placed and then cheese, then mayo is spread again, then the bacon is added and then the lettuce and tomatoes.\",\"The person put sticks on the sandwich then cut into four, then he\",gold,took the knife and put gently on the bread.,took out half bit to the slice to cut them dry in six slices of paper and also put them slowly together.,put a dish and spread the eggs in the kitchen.,placed fries on the plate and the sandwiches.\n18179,anetv_S_1_ZSMxRfg,46,\"The tomato is being sliced on the board. The mayonnaise is spread on the toasted bread and then the ham is placed and then cheese, then mayo is spread again, then the bacon\",The tomato is being sliced on the board.,\"The mayonnaise is spread on the toasted bread and then the ham is placed and then cheese, then mayo is spread again, then the bacon\",gold,is sprinkled along the carpet in a chinese bowl.,is grabbed and let sandwich slices.,is mayo into a mayo and butter on the bread.,is added and then the lettuce and tomatoes.\n18180,anetv_S_1_ZSMxRfg,45,A hand cooked the bacon on the pan. The tomato,A hand cooked the bacon on the pan.,The tomato,gold,is poured over the bar.,is being sliced on the board.,is put in the pan and the plate is sliced.,is chocolate while being cut.\n18181,anetv_ZsicrMkZEN8,787,People are sitting at a table behind them. A woman sitting at the table behind them,People are sitting at a table behind them.,A woman sitting at the table behind them,gold,is pouring paint around the table.,puts a jacket on.,leans her hands out and begins playing the guitar.,is holding a vacuum.\n18182,anetv_ZsicrMkZEN8,8981,\"They perform with batons, swinging and twirling them. The girls\",\"They perform with batons, swinging and twirling them.\",The girls,gold,dance in unison as they perform.,end again attendants catch up.,cheer and doing flips in half.,rake their kicks as they perform their routine on stage.\n18183,anetv_ZsicrMkZEN8,8980,A couple of girls are on a gym court. They,A couple of girls are on a gym court.,They,gold,\"perform with batons, swinging and twirling them.\",move through the mob.,are trying to keep a ball off of her.,continue wrestling them by returning the match.\n18184,lsmdc1039_The_Queen-87921,15977,He takes it and kisses it. And someone,He takes it and kisses it.,And someone,gold,looks down and then smiles at her.,returns to the counter.,drives slowly out onto the road.,turns the others into a troop.\n18185,lsmdc1039_The_Queen-87921,15976,Someone extends her right hand to someone. He,Someone extends her right hand to someone.,He,gold,opens towels at the desks of an office building.,glow alongside her engagement rings.,\"taps his car to the right, then presses it into her rear.\",takes it and kisses it.\n18186,lsmdc1039_The_Queen-87921,15978,And someone looks down and then smiles at her. Someone,And someone looks down and then smiles at her.,Someone,gold,shakes someone's hand.,can't spies his face at the pickaxe.,kisses their father again.,fights with someone as he eyes someone wooded island.\n18187,anetv_T-Ngg5bptUc,2181,\"A living room is shown, and a man and two boys bring in a christmas tree. The family\",\"A living room is shown, and a man and two boys bring in a christmas tree.\",The family,gold,is on the other side while talking.,is tall in the skies above the tree.,takes down the netting from the tree.,adds the lights outside and is washing the pumpkin.\n18188,anetv_T-Ngg5bptUc,16682,Some children and a woman help too. There,Some children and a woman help too.,There,gold,stand in camels's walkway but someone's clad in ad tattoos covering sleeps against the back of the mountain's hood and hood.,\"on the screen, a boy is shaving a person's hair and a man knits his neck with the shovel.\",is a fire going the whole time.,push people on their backs lifted some farther away from the dog while other small shorts slide in chairs.\n18189,anetv_k-071peyck4,15097,\"Several people are outdoors, washing laundry in open basins. The women\",\"Several people are outdoors, washing laundry in open basins.\",The women,gold,use a pump to bring in water into the basins.,\"are sitting at the counter camisole and clipped, occasionally hitting shells with green buckets.\",\"are turned in carpet, first from an adjoining kitchen.\",\"are sitting down as they play tam - pong, under a sofa.\"\n18190,anetv_BP9MfTepAv4,6542,A man is seen playing an instrument in front of the camera. He,A man is seen playing an instrument in front of the camera.,He,gold,continues to play several shots while the camera captures them from several angles.,pauses to speak to the camera and continues playing on.,pushes the flute off the ground again and looks down into various small objects.,begins playing the instrument while moving his hands up and down.\n18191,anetv_BP9MfTepAv4,13715,We shift to see him play and he talks to the camera. We,We shift to see him play and he talks to the camera.,We,gold,fade in from black as the man talks.,to the people playing on the bar while other men get out.,see his shot is examined.,shows several scenes of football coverage in the background.\n18192,anetv_BP9MfTepAv4,13716,We fade in from black as the man talks. We,We fade in from black as the man talks.,We,gold,see his hand up close.,see a man shaving the man in a suit and wash it.,then see men playing soccer in a large room.,see the girls using their electric blades on their nails.\n18193,anetv_BP9MfTepAv4,13718,He talks and we see a split screen of the accordion. We,He talks and we see a split screen of the accordion.,We,gold,is playing the drum in a bunch of colorful pots.,see a little game being played.,see him playing the accordion again.,see a game of curling being played.\n18194,anetv_BP9MfTepAv4,13714,We see his hand up close as he plays. We shift to see him play and he,We see his hand up close as he plays.,We shift to see him play and he,gold,stops a few feet away.,talks to the camera.,sits up on the seat facing himself.,stands there for quite a beat.\n18195,anetv_BP9MfTepAv4,13713,The camera zooms out on the man playing the accordion. We,The camera zooms out on the man playing the accordion.,We,gold,then shows the woman playing the guitar and pausing.,see his hand up close as he plays.,\"play a set of bagpipes in front of his home theater, and there's a young someone seated alongside him.\",then plays a violin and laugh as well as the words in front of him.\n18196,anetv_BP9MfTepAv4,13717,We see his hand up close. He talks and we,We see his hand up close.,He talks and we,gold,see another drain to measure.,see a split screen of the accordion.,see a continuously in each back.,see another illustration of the images in him.\n18197,anetv_Cy2wqpjppy8,12227,The child waves to the camera and begins playing in the sand. He,The child waves to the camera and begins playing in the sand.,He,gold,continues to play in the sand while a person's feet are shown.,recovers the ball and walks away.,spins the camera back and forth while moving around and laying.,lifts the child onto a swing and starts climbing beside her.\n18198,anetv_Cy2wqpjppy8,5451,\"A large helicopter is flying in a clear blue sky above a beach that has people, and a man and a child are the main focus of the people playing in the sand. The child\",\"A large helicopter is flying in a clear blue sky above a beach that has people, and a man and a child are the main focus of the people playing in the sand.\",The child,gold,jumps after he right and another shirtless man waves and appears to perform a long jump.,is shown playing a slow person getting ready to dive and another man in the balloon walking returns for the first time.,is wearing a blue and white wet shirt and swimming trunks and is playing with the sand with his just his hands.,plays and the camera pans to a group of different people.\n18199,anetv_gIzsM5cv7XM,18106,\"The girl with the pink sweater wins and she sits on the girls face. Afterwards, the three girls\",The girl with the pink sweater wins and she sits on the girls face.,\"Afterwards, the three girls\",gold,play the game with one another and end by adding their hands to their arm.,stand together and start talking to the camera.,begin fighting and doing big kicks.,move to the living room yelling with each other.\n18200,lsmdc1015_27_Dresses-79780,2282,\"The car slides backwards down a grassy slope, just missing a tree. Coming to a halt, they\",\"The car slides backwards down a grassy slope, just missing a tree.\",\"Coming to a halt, they\",gold,\"descend and watch as someone, the fighting beaten trooper grinds down the curb and rolls out of the alley.\",sit frozen in shock.,watch proudly at the ceiling.,\"are in a palatial square, with their attention to the main.\"\n18201,lsmdc1015_27_Dresses-79780,2284,They stick their cell phones out of the windows trying to get a signal. They,They stick their cell phones out of the windows trying to get a signal.,They,gold,- 'the messenger takes his tape off and points the one to take out her ring.,sit not looking at each other.,go through a door - at - flight of state blocks.,lift the other and step away from the edge of the vehicle.\n18202,lsmdc1015_27_Dresses-79780,2286,\"Someone checks the public telephone, but indicates with a roll of her eyes that it's not working. They\",\"Someone checks the public telephone, but indicates with a roll of her eyes that it's not working.\",They,gold,take flight where someone allows her to look when she recognizes her woman and leaves.,\"take a few of the executives out, but continue by the sulking information.\",looks over her shoulder to arrive at the salesman's apartment.,head to the bar.\n18203,lsmdc1015_27_Dresses-79780,2285,They sit not looking at each other. Someone,They sit not looking at each other.,Someone,gold,watches someone go to the phone.,\"checks the public telephone, but indicates with a roll of her eyes that it's not working.\",\"looks at her daughter, then gives him a loving smile.\",leads the family car to the side of the lorry.\n18204,lsmdc1015_27_Dresses-79780,2283,\"Coming to a halt, they sit frozen in shock. They\",\"Coming to a halt, they sit frozen in shock.\",They,gold,run out through the trees.,come towards the eyes.,stick their cell phones out of the windows trying to get a signal.,open briefly.\n18205,anetv_qbUQVhjQJ48,17950,A man pushes a disc in front of a hopscotch game. Another person,A man pushes a disc in front of a hopscotch game.,Another person,gold,walks to the fallen tree and is shown indoors.,is pushed by a rope with other people.,holds onto the field then walks down the field.,pushes a disc towards the hopscotch.\n18206,anetv_qbUQVhjQJ48,17951,Another person pushes a disc towards the hopscotch. The first man,Another person pushes a disc towards the hopscotch.,The first man,gold,walks to the young man and counts the balls.,stops and looks talking.,presses smiles legs and faces a photographer.,makes a funny face.\n18207,lsmdc1047_Defiance-91266,15020,Someone handing over the bottle. He,Someone handing over the bottle.,He,gold,gulps back some vodka.,\"picks up a bottle, his hat and briefcase.\",\"protectively meets someone, who sits beside someone, who has fallen.\",hands over a flask to someone's cheek then offers it to someone.\n18208,lsmdc1047_Defiance-91266,15016,The wife is chopping meat. Someone,The wife is chopping meat.,Someone,gold,tries to bite them.,scrambles to get it out before using it.,bites into a piece of bread.,pours a pan into the water pan.\n18209,lsmdc1047_Defiance-91266,15017,A beam of light shines through the window. As someone,A beam of light shines through the window.,As someone,gold,dives out of the back door.,wanders along the edge of the chapel and softly scratches over her shoulder.,\"reads the nearest bus, the opulent gold - mounted train arrives.\",\"peers closely at a wall, both are just close and replacing someone out likeness of one of the ancient queen.\"\n18210,lsmdc1047_Defiance-91266,15014,Someone standing nearby looks uneasy. Someone,Someone standing nearby looks uneasy.,Someone,gold,\"hands the tall, balding man out.\",sets off leaving someone looking unconvinced.,'s head shoots up from one side as an anchorman sits on someone's dance leg.,answer away though someone.\n18211,lsmdc1047_Defiance-91266,15022,Someone coughs in the barn. Someone,Someone coughs in the barn.,Someone,gold,passes the bottle to a colleague.,dashes out of the trap house.,stops listening to open the front door.,watches as the others walk down the sidewalk.\n18212,anetv_-F7QWQA8Eh8,7059,A camera pans close to a stage as well as a woman's face. The woman then,A camera pans close to a stage as well as a woman's face.,The woman then,gold,begins to perform martial arts moves on two fencing moves in the audience.,plays the instruments while she speaks to the camera.,begins dancing with a man on stage while holding a crown.,begins to play the hula while the camera pans around the area several angles.\n18213,anetv_-F7QWQA8Eh8,6851,\"A woman lifts a crown, then the man starts dancing. She joins him, and they\",\"A woman lifts a crown, then the man starts dancing.\",\"She joins him, and they\",gold,put his foot high in the air.,continue to hold there platform him.,finish on the back watching the dance.,dance exuberantly for the crowd.\n18214,anetv_-F7QWQA8Eh8,7060,The woman then begins dancing with a man on stage while holding a crown. The couple,The woman then begins dancing with a man on stage while holding a crown.,The couple,gold,performs a dance trick as others continue to dance all holding her arms while standing up behind them.,stretch out on stage beneath a band playing soccer while standing on the stage.,continue dancing around and ends by bowing to the audience.,continues down the tightrope while looking around and ends by speaking to the camera and looking off into the distance.\n18215,lsmdc1028_No_Reservations-82853,13210,\"Someone puts her wineglass down. In the empty kitchen, someone\",Someone puts her wineglass down.,\"In the empty kitchen, someone\",gold,holds her face and faces her daughter.,spies her behind a terminal window.,flips open the mug.,ties her apron around her waist.\n18216,lsmdc0020_Raising_Arizona-57396,17900,A policeman from inside the house is taking someone by the elbow. As someone allows himself to be led back into the house he,A policeman from inside the house is taking someone by the elbow.,As someone allows himself to be led back into the house he,gold,moves to the edge of the roof and gazes back at the ceiling below.,turns and runs quickly through the orange living room and bumping into a dark pane.,readies the panicking mass of weapons from their seats.,calls back over his shoulder.\n18217,lsmdc0020_Raising_Arizona-57396,17902,\"We are following the two, hand - held, as the Police leads someone toward the living room. The room\",\"We are following the two, hand - held, as the Police leads someone toward the living room.\",The room,gold,\"tethered with familiar - sized clear curtains, now walking across the room looking very dotted where we saw pair of eyes.\",\"goes slowly along the aisle like a swivel chair, and someone becomes aware of the note welcoming the corner.\",\"is now quiet as the prison addresses the movie, under new and older now shows they first notice.\",\"is filled with policemen milling about in several different uniforms: local police, state troopers, plainclothes detectives.\"\n18218,lsmdc0020_Raising_Arizona-57396,17904,Someone has taken someone's right hand and is rolling its fingers onto the inkpad. Someone,Someone has taken someone's right hand and is rolling its fingers onto the inkpad.,Someone,gold,sits in a stance with his arms overhead.,jerks his hand away.,moves past the old man.,shoves himself out and puts on the lights.\n18219,lsmdc0020_Raising_Arizona-57396,17903,The original Policeman is leading someone to a table where a white - smocked technician is preparing inkpad and exemplar sheets. The dialogue,The original Policeman is leading someone to a table where a white - smocked technician is preparing inkpad and exemplar sheets.,The dialogue,gold,latching even more and more softly on the rounds.,\"is urgent, rapid - fire and overlapping.\",hits all the strength he could n't find.,is at the tutorial: reading the words.\n18220,lsmdc0020_Raising_Arizona-57396,17901,As someone allows himself to be led back into the house he calls back over his shoulder. We,As someone allows himself to be led back into the house he calls back over his shoulder.,We,gold,\"are following the two, hand - held, as the police leads someone toward the living room.\",look on anxiously as the man rises from the ceiling to catch them.,track them down in front of the green house.,pan around the window to the morgue.\n18221,anetv_iNs17kcwlDk,8791,The man looked sideways and talked. The camera zoomed in to the bongo and then zoom out and the man in green shirt,The man looked sideways and talked.,The camera zoomed in to the bongo and then zoom out and the man in green shirt,gold,perform the left hops back.,removes his helmet and places his palms on the board.,continue to play the drums.,showed the toothbrush a bit.\n18222,lsmdc3025_FLIGHT-11778,14832,The planes turns upside down. She,The planes turns upside down.,She,gold,flows across the bridge which rotates once.,skims another pebble through a hole.,slides the side stick forward.,has nothing behind him.\n18223,lsmdc3025_FLIGHT-11778,14833,She slides the side stick forward. One wheel,She slides the side stick forward.,One wheel,gold,bounces wildly and lands.,tousles the plush handkerchief.,\"stops blowing out the door, and he crosses the perimeter of a stair, the face still solemn.\",gets stuck while retracting.\n18224,lsmdc1058_The_Damned_united-98292,15013,\"Someone goes with a nonchalant wave. Gaunt, grey - haired someone, director of the board, brings his hand to his mouth as he\",Someone goes with a nonchalant wave.,\"Gaunt, grey - haired someone, director of the board, brings his hand to his mouth as he\",gold,wears his name his uniform.,\"runs down the winding path, to someone's viewpoint, through a doorway.\",sits uneasily before the press.,jumps out of the bus.\n18225,anetv_d6lajCxMhPE,11750,A person holding a broom cleans the floor back and forth. The person,A person holding a broom cleans the floor back and forth.,The person,gold,turn the broom to collect the dust.,puts two shoes on they put on gloves.,shows off a tennis shoe.,gets on the carpet and begins turning to get paint.\n18226,anetv_sZ95YHZtVCc,6807,\"A young woman with large breast is sitting outside in a small pink shirt, she pulls her sleeves down and starts playing with her boobs and then turns back around. As she is sitting down, man come around for her to polish their shoes and they all\",\"A young woman with large breast is sitting outside in a small pink shirt, she pulls her sleeves down and starts playing with her boobs and then turns back around.\",\"As she is sitting down, man come around for her to polish their shoes and they all\",gold,begin to stair down her shirt watching her breast move rapidly.,begin putting the shoes on of her shoulders.,hear an concerned singing - like comment.,turn the birdie to both of them.\n18227,anetv_sZ95YHZtVCc,15103,A man comes up in front of her and stares at her breasts. Another man,A man comes up in front of her and stares at her breasts.,Another man,gold,begins to smile briefly to himself.,sits down and stares at her breasts.,stands in a room talking to the camera.,appears and pet her to do something for him.\n18228,anetv_gHk4mjlJ5cg,17545,A shirtless man talks in a gym. A lady,A shirtless man talks in a gym.,A lady,gold,waves his arms and points to his weight.,does biking performs a yoga balance and hip with a piece of exercise equipment.,runs past both ways then jumps rope behind the man.,discusses to the crowd.\n18229,anetv_gHk4mjlJ5cg,17544,We see an opening title screen. A shirtless man,We see an opening title screen.,A shirtless man,gold,washes dishes in a bar.,spins his body around hitting a billiard ball.,describes furniture in a gym.,talks in a gym.\n18230,anetv_gHk4mjlJ5cg,17548,We see a lady jumping rope eleven different ways. We,We see a lady jumping rope eleven different ways.,We,gold,see the ending title loads.,see a man in a black suit get out and run.,see a lady films fingers on large soccer rink in different locations.,see the ending title screen.\n18231,anetv_gHk4mjlJ5cg,17547,We see title screens with instructions. We,We see title screens with instructions.,We,gold,see an outdoors man filming a man.,see a number on the karate team.,see a lady jumping rope eleven different ways.,see a lady speaking and see how to clean it and dryer broom.\n18232,anetv_BQRidRi2V1c,11045,Several girls are in a gym. They,Several girls are in a gym.,They,gold,are dancing together in unison.,hit a ball in the field.,are playing a game of cheerleading.,are practicing spinning from their swords.\n18233,anetv_BQRidRi2V1c,8583,A large group of girls are seen dancing around a gymnasium holding jump ropes and leads into the girls performing a routine. The girls,A large group of girls are seen dancing around a gymnasium holding jump ropes and leads into the girls performing a routine.,The girls,gold,continue the routine all in sync and end by standing together and two high fiving.,continue jumping around one another and end by stepping on the rope and moving forward.,get up and onto the gym while.,continue performing a routine together while audience members watch her.\n18234,anetv_k74CgBa46bA,15410,A man without a shirt on sits outside by the trees and drinks out of a coffee cup. A person,A man without a shirt on sits outside by the trees and drinks out of a coffee cup.,A person,gold,passes by the seat above.,plays in front of the second man.,drinks a bottle of tea.,is seen petting a cat.\n18235,anetv_LdAT5MEBkuQ,11204,The water skiier glides back and forth on the water of the river. The man in glasses,The water skiier glides back and forth on the water of the river.,The man in glasses,gold,talks about the water skiis.,sits up and drinks.,is then kayaking down in the strong going through the turbulent waters.,turns next to his lantern.\n18236,anetv_LdAT5MEBkuQ,11199,A man water skiis at a river. A long haired man operates a boat and the boat,A man water skiis at a river.,A long haired man operates a boat and the boat,gold,is floating side by side.,drags a man water skiing across the water.,has difficulty on the boat.,is interviewed further out.\n18237,anetv_LdAT5MEBkuQ,11202,A guy holding onto a rope attached to a boat water skiis. The man in the glasses,A guy holding onto a rope attached to a boat water skiis.,The man in the glasses,gold,goes up to the water.,\"appears again, speaking to the camera and points to a man water skiing on the river.\",sits on the iron ski and puts the surfboard then goes to the water.,talks to a camera about how the selfie should possibly become.\n18238,anetv_LdAT5MEBkuQ,11203,\"The man in the glasses appears again, speaking to the camera and points to a man water skiing on the river. The water skiier\",\"The man in the glasses appears again, speaking to the camera and points to a man water skiing on the river.\",The water skiier,gold,hangs from a rock on the river and the two continue to stay around in the water and try to stay nearby.,glides back and forth on the water of the river.,back from the boat continues to capture the people moving opposite every so he can continue water skiing.,\"take that the kayak to the water, then all spectators and finish once together as a dog walks across the beach.\"\n18239,anetv_LdAT5MEBkuQ,11200,A long haired man operates a boat and the boat drags a man water skiing across the water. A man in glasses,A long haired man operates a boat and the boat drags a man water skiing across the water.,A man in glasses,gold,speaks to the camera.,speaks to his camera.,stands in a kayak floating on a stream as the man rocks and stands.,onto the ground while still standing on the boat.\n18240,anetv_LdAT5MEBkuQ,11201,A man in glasses speaks to the camera. A guy,A man in glasses speaks to the camera.,A guy,gold,is running a dog on a rake.,holding onto a rope attached to a boat water skiis.,attempts to play a harmonica while smoke rings a little.,holds a finger and proceeds to paint with an electric toothbrush.\n18241,lsmdc3049_MORNING_GLORY-23710,15134,\"He gazes in through the window, his craggy face set in its usual curmudgeonly expression. Someone\",\"He gazes in through the window, his craggy face set in its usual curmudgeonly expression.\",Someone,gold,\"fixes his blue coat on someone, grins.\",smiles and exhales deeply.,shuffles away and head down with an imploring look.,shakes her head and looks down at the note in her hands.\n18242,lsmdc3049_MORNING_GLORY-23710,15128,\"She turns and heads back towards the entrance of the building. In the Daybreak offices, she\",She turns and heads back towards the entrance of the building.,\"In the Daybreak offices, she\",gold,spots people sitting at.,is handing a book to someone.,\"stands in a doorway staring down, and puts her hand on her hip.\",finds someone sitting heavily on the desk.\n18243,lsmdc3049_MORNING_GLORY-23710,15127,\"Someone stands on the plaza, her chest heaving, her eyes wet with tears. She\",\"Someone stands on the plaza, her chest heaving, her eyes wet with tears.\",She,gold,turns and heads back towards the entrance of the building.,regards the bounty and spoons her thumb and forefinger forward into a full - length smile.,tries to run off the stage but falls to the ground!,looks up from his book and steps to the camera.\n18244,lsmdc3049_MORNING_GLORY-23710,15132,Someone laughs and jokes with a couple of other members of staff. Someone,Someone laughs and jokes with a couple of other members of staff.,Someone,gold,sits on his throne.,chats animatedly with colleagues.,\"retrieves his wallet, picks up a cork.\",waves his right hand out at the instructors.\n18245,lsmdc3049_MORNING_GLORY-23710,15130,A woman approaches carrying a note. The woman,A woman approaches carrying a note.,The woman,gold,wipes food on a passerby.,enters a living room and on the pottery hand.,leaves the note with someone and heads off.,casts the leaves into a circular puddle over it.\n18246,lsmdc3049_MORNING_GLORY-23710,15135,Someone shakes her head and looks down at the note in her hands. Someone,Someone shakes her head and looks down at the note in her hands.,Someone,gold,holds a long strand of hair behind her ear.,extends back and helps someone to the crate.,stands outside the nbc building and examines the note in her hands.,walks over to the cabinet and opens it.\n18247,lsmdc3049_MORNING_GLORY-23710,15133,Someone chats animatedly with colleagues. One of them,Someone chats animatedly with colleagues.,One of them,gold,throws a screwed up piece of paper at him.,shows someone with the locker door that has just opened for someone.,comes down the hall and kneels down beside someone.,mugs a pensive frown.\n18248,lsmdc3049_MORNING_GLORY-23710,15136,Someone stands outside the nbc building and examines the note in her hands. She,Someone stands outside the nbc building and examines the note in her hands.,She,gold,hangs between his knees but lies still.,looks up at the enormous skyscraper.,\"faces the worker, then heads up the beach towards someone.\",steps back under the autumn leaves.\n18249,lsmdc3049_MORNING_GLORY-23710,15129,\"In the Daybreak offices, she stands in a doorway staring down, and puts her hand on her hip. A woman\",\"In the Daybreak offices, she stands in a doorway staring down, and puts her hand on her hip.\",A woman,gold,approaches her door with a glass of white oil.,hands her a boot.,approaches carrying a note.,opens a window for her and exits the porch.\n18250,lsmdc3049_MORNING_GLORY-23710,15131,\"The woman leaves the note with someone and heads off. Later, someone\",The woman leaves the note with someone and heads off.,\"Later, someone\",gold,\"stands, still in her underwear.\",sits hunched behind a desk holding two stacks of ice.,\"dances in someone's house, then steps up stairs out in the nightgown.\",sits on the couch with the note still in her hands.\n18251,anetv_cB5ozEChN5Q,5503,We watch as the camera man goes down the hill. We,We watch as the camera man goes down the hill.,We,gold,see a light screen in the background.,see two men sitting in frame and start talking.,see the ending screen.,see the news from the man riding.\n18252,anetv_cB5ozEChN5Q,5500,People ride a line up a hill in a tubing resort. A person,People ride a line up a hill in a tubing resort.,A person,gold,falls down onto the water and start riding the camera down the road.,\"checks his legs while sitting on bikes, then jumps down the steep hill and jumps down.\",pulls a horse over its low snow and jumps as if it is going over a pole.,rides a tube down a hill.\n18253,anetv_cB5ozEChN5Q,5501,A person rides a tube down a hill. We,A person rides a tube down a hill.,We,gold,slide a bridge onto the water.,see the snowboarding structure where a house sits in a canyon.,watch the people walking up the hill holding their tubes and watch people go down the hill.,hauls a person behind a tube.\n18254,anetv_cB5ozEChN5Q,5502,We watch the people walking up the hill holding their tubes and watch people go down the hill. We,We watch the people walking up the hill holding their tubes and watch people go down the hill.,We,gold,see a boy teen on a ramp.,see in front of the back of a wooden park.,are then shown riding down a hill and putting more sand around.,watch as the camera man goes down the hill.\n18255,anetv_Yezk4k2E5s0,14376,A person in a red shirt stands and holds a javelin on a red outdoor track. The person,A person in a red shirt stands and holds a javelin on a red outdoor track.,The person,gold,\"spins the skate embankment, then drops the javelin and swings a stick off of it.\",throws a disc into a field and vaults over horizontal pins down.,rides the horses with wile people talking to the camera.,lines up the shot and runs forward.\n18256,anetv_Yezk4k2E5s0,14377,The person lines up the shot and runs forward. The person,The person lines up the shot and runs forward.,The person,gold,swings a ball around the lane and throws it into the distance.,is shown again kicking the ball away.,continues several more times as the camera dances closer to the camera.,throws the javelin and watches as they turn away as others who are around watch as well.\n18257,anetv_Yezk4k2E5s0,3623,Woman is doing a javelin throw in a big green field. men,Woman is doing a javelin throw in a big green field.,men,gold,are siting in chairs in front of a table watching the woman.,\"ride horses behind a village, and checks the camels.\",are running out of a picnic area playing basketball.,are standing on top of the bleachers watching the kids.\n18258,anetv_cFJo7Nm2W3Y,15675,The men then begin a soccer match with one another and cheering when they score a goal. The men continue to play against one another while the audience cheers and the ref,The men then begin a soccer match with one another and cheering when they score a goal.,The men continue to play against one another while the audience cheers and the ref,gold,is running with a ball and throws high into the air.,cheering on the sides.,stands on the side.,attempts to get in while another member to the camera.\n18259,anetv_cFJo7Nm2W3Y,15674,A large group of people are seen standing around a sand pit shaking hands and speaking with one another. The men then,A large group of people are seen standing around a sand pit shaking hands and speaking with one another.,The men then,gold,begin a soccer match with one another and cheering when they score a goal.,begin swimming around one another and cheering with one another.,begin riding horses while others watch on the side while the man continues to speak to the camera.,sit and speak to one another and begin playing as well as others on the side keeping their eyes on it.\n18260,anetv_smGijLg8Cho,13777,The man in the peach shirts throws a dart at the dart board. A man in blue,The man in the peach shirts throws a dart at the dart board.,A man in blue,gold,hits the ball towards the goal.,kicks a ball stomping his shot as a man celebrates.,picks up a ball from a few different angles.,hits a cue ball.\n18261,anetv_smGijLg8Cho,13783,A woman stands by the dart board and smiles. The man in peach,A woman stands by the dart board and smiles.,The man in peach,gold,shoots off the beam several times in slow motion.,throws her bag straight in the pool.,is talking in front of a fountain and begins talking to the camera.,throws three darts at the board again and smiles as he removes them.\n18262,anetv_smGijLg8Cho,13782,The man in peach walks to remove the darts. A woman,The man in peach walks to remove the darts.,A woman,gold,is shown collecting in the alley and walking away.,stands by the dart board and smiles.,pass wearing shorts top into a mini skirt.,is walking between two rows.\n18263,anetv_smGijLg8Cho,13778,A man in blue hits a cue ball. The man in peach lines back up and,A man in blue hits a cue ball.,The man in peach lines back up and,gold,shoots three darts at the dart board and removes them.,turns to throw the balls for the other guys to shoot.,fires the ball with his foot.,throws the red ball in the field.\n18264,anetv_smGijLg8Cho,13780,More people gather around as two men remove the darts from the dartboards and walk back a distance. Both men,More people gather around as two men remove the darts from the dartboards and walk back a distance.,Both men,gold,stand and sit down to the ground.,\"turn off their cameras, people and several photographers and to talk.\",leap out of the screen and move beside one another.,throw a dart at the dartboard.\n18265,anetv_smGijLg8Cho,13781,Both men throw a dart at the dartboard. The man in peach walks,Both men throw a dart at the dartboard.,The man in peach walks,gold,backward across the street.,further into the parking space.,to remove the darts.,carefully down the court.\n18266,anetv_smGijLg8Cho,13779,The man in peach lines back up and shoots three darts at the dart board and removes them. He,The man in peach lines back up and shoots three darts at the dart board and removes them.,He,gold,appears to be a target in front of the team.,slings it over his shoulder and draws onto the basketball ball.,lines back up in front of the board and throws one more dart.,\"dissolves several times, raising his finger up to show the shape dart.\"\n18267,anetv_smGijLg8Cho,13776,Three men are set up to play darts. The man in the peach shirts,Three men are set up to play darts.,The man in the peach shirts,gold,continue to place the ball.,throws a dart at the dart board.,try to lift his ball.,is put on their faces.\n18268,lsmdc1024_Identity_Thief-82551,19179,\"Later, they cruise over the Mississippi River into st. The Gateway Arch\",\"Later, they cruise over the Mississippi River into st.\",The Gateway Arch,gold,stands tall over the city.,has been spread and people staring into their eyes.,is half - built.,is blown back as it shifts to a full speed and wades through the water.\n18269,lsmdc1024_Identity_Thief-82551,19180,\"The Gateway Arch stands tall over the city. At a gas station, someone\",The Gateway Arch stands tall over the city.,\"At a gas station, someone\",gold,shifts his attention as he passes someone.,pounds the whiskey bottle in one.,stands beside a lantern carving the sphere.,fills up as someone emerges from the car.\n18270,lsmdc3077_THE_VOW-35792,18209,\"Now, someone helps someone out of his car. Someone\",\"Now, someone helps someone out of his car.\",Someone,gold,sees someone sprinting out of the car.,\"nods, leaving her uncomfortably naked.\",buries his face in his hands and drives away.,heads toward her parents' house.\n18271,lsmdc3077_THE_VOW-35792,18218,\"Someone smiles sadly, her eyes welling up. Someone\",\"Someone smiles sadly, her eyes welling up.\",Someone,gold,notices her as she stirs.,glares at her friend.,shakes her head tearfully.,stares mesmerized at what she is saying.\n18272,lsmdc3077_THE_VOW-35792,18220,\"Someone gives her a hug. On a sunny day, someone\",Someone gives her a hug.,\"On a sunny day, someone\",gold,walks with his friends.,sets down a few brisk bow and paddles away.,tears up a map with two strips on one end of the desk.,strides around the crowded floor of mnemonic.\n18273,lsmdc3077_THE_VOW-35792,18206,The young woman wraps an arm around her husband's bare shoulder and he cradles her head in his hand. Someone's hand,The young woman wraps an arm around her husband's bare shoulder and he cradles her head in his hand.,Someone's hand,gold,comes out of his bedroom and she kisses him.,\"moves down the keyboard, as she stares away tenderly.\",finds his cheek and caresses it softly.,reaches out her breast.\n18274,lsmdc3077_THE_VOW-35792,18186,\"Someone responds with a warm appreciative smile. Now at someone Mnemonic, the front window\",Someone responds with a warm appreciative smile.,\"Now at someone Mnemonic, the front window\",gold,opens and glares at someone.,shows the chocolate valley surrounding him.,shows someone and someone enjoying a meal and wine at a table for two.,shows someone standing in the bank.\n18275,lsmdc3077_THE_VOW-35792,18205,\"Someone smiles up at him sweetly, and his parted lips find hers. The young woman wraps an arm around her husband's bare shoulder and he\",\"Someone smiles up at him sweetly, and his parted lips find hers.\",The young woman wraps an arm around her husband's bare shoulder and he,gold,rests his chin on his brow.,cups her hand to her cheek.,cradles her head in his hand.,sets his hands on his veil.\n18276,lsmdc3077_THE_VOW-35792,18201,Someone wraps a blanket around his shivering shoulders and laughs with someone. Someone,Someone wraps a blanket around his shivering shoulders and laughs with someone.,Someone,gold,sets down his colt.,\"considers, then envelops her hands in both his own.\",pats the bride's shoulder.,hears blazing in the tent.\n18277,lsmdc3077_THE_VOW-35792,18217,\"In the next room, someone waits up seated with a book. Someone\",\"In the next room, someone waits up seated with a book.\",Someone,gold,\"smiles sadly, her eyes welling up.\",sits from the bar.,\"continues to examine someone's stuff, then sighs.\",appears in the doorway.\n18278,lsmdc3077_THE_VOW-35792,18193,\"He sets a small wetsuit beside her and regards her with a subdued, wily smile. Someone\",\"He sets a small wetsuit beside her and regards her with a subdued, wily smile.\",Someone,gold,\"arrives behind her, letting her hand slip in of her chin.\",\"unbuckles her safety belt, then writhes in her seat, working her demure dress off over her head.\",joins the choir at the window.,brings someone's hands to his head and raises his fist into the air.\n18279,lsmdc3077_THE_VOW-35792,18216,\"Inside the house, someone sets down her keys and takes off her shoes. In the next room, someone\",\"Inside the house, someone sets down her keys and takes off her shoes.\",\"In the next room, someone\",gold,waits up seated with a book.,feeds the baby to the others.,sits with costumes and music.,enters with the duffel on the bin.\n18280,lsmdc3077_THE_VOW-35792,18215,\"As she shuts the door, he turns away and steps around his car. Inside the house, someone\",\"As she shuts the door, he turns away and steps around his car.\",\"Inside the house, someone\",gold,\"stands for a moment, leaning against the office door.\",sits alone in an elegant sunny shed.,sets down her keys and takes off her shoes.,fetches her hair and holds it up to her face.\n18281,lsmdc3077_THE_VOW-35792,18192,Someone rocks in her seat. He,Someone rocks in her seat.,He,gold,smiles at someone and directs her gaze out the windshield.,extends the cloth to gauze.,preps the vests goes in fast.,\"keeps facing the other and looks around again, smiling coyly.\"\n18282,lsmdc3077_THE_VOW-35792,18199,\"Now he helps someone up and gives her a piggyback ride ashore. Grabbing a towel and blanket, he\",Now he helps someone up and gives her a piggyback ride ashore.,\"Grabbing a towel and blanket, he\",gold,uses it to rush out of the room.,flies on the grass in front of the castle.,rubs a towel to the room floor.,wraps both around her.\n18283,lsmdc3077_THE_VOW-35792,18188,\"She turns the box of chocolates to face someone. Someone eats one, someone\",She turns the box of chocolates to face someone.,\"Someone eats one, someone\",gold,watches as they leave.,pops another in her mouth.,stares at the kid.,\", still smiling in her seat.\"\n18284,lsmdc3077_THE_VOW-35792,18187,As someone chews the second truffle her eyes light up with a surprised smile. She,As someone chews the second truffle her eyes light up with a surprised smile.,She,gold,perks her head and hurries over to the room but her husband arrives behind her.,places in someone's hands and she bows her head and shakes her head.,turns the box of chocolates to face someone.,looks into the passenger door of her father's cupboard.\n18285,lsmdc3077_THE_VOW-35792,18219,Someone shakes her head tearfully. Someone,Someone shakes her head tearfully.,Someone,gold,cautiously convulses on the cavity spread out.,shakes her husband's hand.,gives her a hug.,leans against the roof and turns back.\n18286,lsmdc3077_THE_VOW-35792,18213,She meets his gaze with a gentle smile. Someone,She meets his gaze with a gentle smile.,Someone,gold,picks her up from a table.,rubs her face as she looks blank.,\"turns away, her eyes fixed on her godmother's tiny cut adorned with stringy hair.\",\"lingers on the spot, shifting boyishly on his feet as his wife enters her parents' home.\"\n18287,lsmdc3077_THE_VOW-35792,18189,\"Someone eats one, someone pops another in her mouth. Someone\",\"Someone eats one, someone pops another in her mouth.\",Someone,gold,\"looks angrily down his shoulder to her husband, then leans back in his chair.\",points at his sketchbook.,\", women are shown only wearing dresses, and wearing only matching panties as he comes up to her.\",\"takes a deep breath, then tries another.\"\n18288,lsmdc3077_THE_VOW-35792,18196,Joining hands they run further out into the glistening lake. Someone plunges in and someone,Joining hands they run further out into the glistening lake.,Someone plunges in and someone,gold,steps away.,submerges up to her shoulders.,grabs the steering wheel with his belt.,rips off his vision to pull the pixies off.\n18289,lsmdc3077_THE_VOW-35792,18200,Someone hurries back into his car and he follows. Someone,Someone hurries back into his car and he follows.,Someone,gold,\"leans against the bar, eating a pal of cereal.\",wraps a blanket around his shivering shoulders and laughs with someone.,comes out from under his hat and runs up the street to someone.,rushes after him and knock someone's hands away.\n18290,lsmdc3077_THE_VOW-35792,18202,\"Someone considers, then envelops her hands in both his own. He\",\"Someone considers, then envelops her hands in both his own.\",He,gold,blinks his delighted eyes and turns away.,blows on her fingers then kisses them tenderly.,sticks his artificial palm to his temple.,descends heavily and faces his friend.\n18291,lsmdc3077_THE_VOW-35792,18203,\"He blows on her fingers then kisses them tenderly. At its far end, someone and someone\",He blows on her fingers then kisses them tenderly.,\"At its far end, someone and someone\",gold,enjoy an unknown fire with each other.,lie naked.,share an eager look.,sway in an embrace.\n18292,lsmdc3077_THE_VOW-35792,18195,\"Clad in biker briefs, someone grabs her around the waist and carries her back in. Joining hands they\",\"Clad in biker briefs, someone grabs her around the waist and carries her back in.\",Joining hands they,gold,run further out into the glistening lake.,hear a loving glance as they dance into a tender kiss.,roll the handcuffs as she leans on the table beside her.,stand in position as someone and his daughter sit on the table.\n18293,lsmdc3077_THE_VOW-35792,18190,\"Someone takes a deep breath, then tries another. Someone\",\"Someone takes a deep breath, then tries another.\",Someone,gold,leans his hand up against someone's face.,skeptically chews another truffle.,cleans his face and eyes someone.,works its way through the smoke.\n18294,lsmdc3077_THE_VOW-35792,18194,\"Someone runs into the water up to her ankles and bids a hasty retreat. Clad in biker briefs, someone\",Someone runs into the water up to her ankles and bids a hasty retreat.,\"Clad in biker briefs, someone\",gold,talks on a mobile phone attached to one ear.,crosses to the bathroom.,grabs her around the waist and carries her back in.,tilts them back to her side.\n18295,lsmdc3077_THE_VOW-35792,18191,Someone reaches for the fleck. Someone,Someone reaches for the fleck.,Someone,gold,is then blown down.,rocks in her seat.,follows a small step.,relaxes his aim and shoots someone a look.\n18296,lsmdc3077_THE_VOW-35792,18212,Someone hunches her shoulders and looks away. She,Someone hunches her shoulders and looks away.,She,gold,watches his pursuer as they come past the group.,pulls as someone looks on.,rests her chin on her shoulder.,meets his gaze with a gentle smile.\n18297,lsmdc3077_THE_VOW-35792,18197,Someone plunges in and someone submerges up to her shoulders. Someone,Someone plunges in and someone submerges up to her shoulders.,Someone,gold,lifts both her feet and her upper body dunks up to her chin.,strolls over her shoulder and lifts down her hand.,grabs a leafy canopy and dashes down the last hill a great staircase.,\"looks around himself, then wrenches herself.\"\n18298,lsmdc3077_THE_VOW-35792,18207,\"Someone's hand finds his cheek and caresses it softly. As they make out, we\",Someone's hand finds his cheek and caresses it softly.,\"As they make out, we\",gold,find a porcelain rectangular crystal carved martin.,see someone examine the contact of the eye.,see someone's extended passenger.,look on from the far end of the table.\n18299,anetv_GiHxeCLGNy8,16045,The camera moves over to a little boy as he is talking to the camera person. The camera person,The camera moves over to a little boy as he is talking to the camera person.,The camera person,gold,continues to narrate the situation as he records the fire.,walks in and gives a drink for the camera.,walks down the hallway as well as they claw.,is seen with a picture of himself on the side.\n18300,anetv_dKiy-7TZqeI,1991,He ropes a small cattle. He then,He ropes a small cattle.,He then,gold,jumps across the woods.,serves up a different calf in the water.,ropes a calf and beating a calf.,ties it up in rope.\n18301,anetv_dKiy-7TZqeI,16977,A group of men open the gates and a man chasing a cow on top of a horse comes running out. He,A group of men open the gates and a man chasing a cow on top of a horse comes running out.,He,gold,throws a rope around its neck and then runs off the horse after it.,\"picks up a man and grabs a japanese calf, and sways towards it with his left leg.\",jumps and throws the frisbee on the ground.,is mounted on the general's steps.\n18302,anetv_dKiy-7TZqeI,16979,He aggressively ties the rope around the cow and then runs off. He gets back on the horse and they,He aggressively ties the rope around the cow and then runs off.,He gets back on the horse and they,gold,smile at each other.,pose on their sliding ropes.,get ready to ride back.,go as he swells.\n18303,anetv_dKiy-7TZqeI,1989,A rodeo is attended by several people. A man,A rodeo is attended by several people.,A man,gold,peels a piece of paper.,comes out on a horse.,draws a horse red for the woman.,\"jumps, then jumps.\"\n18304,anetv_dKiy-7TZqeI,16978,He throws a rope around its neck and then runs off the horse after it. he,He throws a rope around its neck and then runs off the horse after it.,he,gold,\"throws more darts, and goes down the stick so it spikes a stick.\",calls off the side of the hill before climbing.,aggressively ties the rope around the cow and then runs off.,scrapes in several more clips and ropes the calf.\n18305,anetv_dKiy-7TZqeI,1990,A man comes out on a horse. He,A man comes out on a horse.,He,gold,jumps onto his back and ropes up a calf.,steps attaches to a clipping on a large stump.,is placing leaves on the hay.,ropes a small cattle.\n18306,anetv_DRSH-_Ye9eE,8384,A man hits another man with the lacrosse stick and knocks the man down. A man runs all the way down the field to the other side and another man,A man hits another man with the lacrosse stick and knocks the man down.,A man runs all the way down the field to the other side and another man,gold,catches the ball and the ball rolls.,catches him and lets him fall away on the side.,jogs painfully to the side.,throws the ball in the net and makes a goal.\n18307,anetv_DRSH-_Ye9eE,8046,\"A large group of people including teens and adults are on a large grassy field surrounded by a lot of trees and players are running into place on the field. Two larger teens quickly start running to the right, other players start running to them and one of the boys\",A large group of people including teens and adults are on a large grassy field surrounded by a lot of trees and players are running into place on the field.,\"Two larger teens quickly start running to the right, other players start running to them and one of the boys\",gold,runs from one distance in front of the team.,stops then another screens steps in front of them.,hit the boy so hard with his stick that the boy falls.,falls backwards into the water to receive that bag stick and go.\n18308,anetv_DRSH-_Ye9eE,8382,We see a group of young men playing lacrosse on a field outdoors. The team,We see a group of young men playing lacrosse on a field outdoors.,The team,gold,with the yellow team lifts a birdie up into the air.,run towards each other using high poles.,\"plays a game of croquet, waving to the camera and the camera follows.\",runs to the left and then to the right.\n18309,anetv_DRSH-_Ye9eE,8383,The team runs to the left and then to the right. A man,The team runs to the left and then to the right.,A man,gold,hits another man with the lacrosse stick and knocks the man down.,chases after the goalie.,appears standing in the middle of a crouched game in a field.,scores a goal and takes a shot toward the pins.\n18310,anetv_DRSH-_Ye9eE,8048,The boy quickly gets up and the boy who knocked the other boy down runs to the ball and picks up with his net at the end of the stick and starts running towards the goal while the referee runs with him. When the boy gets to the goal area he tosses the ball to another player and that player attempts to throw it into the goal and the players,The boy quickly gets up and the boy who knocked the other boy down runs to the ball and picks up with his net at the end of the stick and starts running towards the goal while the referee runs with him.,When the boy gets to the goal area he tosses the ball to another player and that player attempts to throw it into the goal and the players,gold,chase the ball instead.,continue to look for the ball.,are interviewed in the entryway.,stading on the side.\n18311,anetv_DRSH-_Ye9eE,8047,\"Two larger teens quickly start running to the right, other players start running to them and one of the boys hit the boy so hard with his stick that the boy falls. The boy quickly gets up and the boy who knocked the other boy down runs to the ball and picks up with his net at the end of the stick and\",\"Two larger teens quickly start running to the right, other players start running to them and one of the boys hit the boy so hard with his stick that the boy falls.\",The boy quickly gets up and the boy who knocked the other boy down runs to the ball and picks up with his net at the end of the stick and,gold,continues bouncing the rope that plays around the boys and then the round.,starts running towards the goal while the referee runs with him.,gets away from the ground and plays with before as baby.,is all pushed up.\n18312,anetv_StvwTXdXG2U,16629,The video leads into several shots of people riding around on skateboards and performing tricks. Many more people riding,The video leads into several shots of people riding around on skateboards and performing tricks.,Many more people riding,gold,around on show the people riding flips and spinning the others in circles in the end.,are shown followed by cheering and others standing in the water by the sides.,are shown and leads into a young man speaking to the camera and a picture of a t - shirt.,are shown several times and then falling out onto the mat as well as several dancing moves on the road.\n18313,lsmdc0020_Raising_Arizona-57691,8991,His index finger and thumb are pinched together - holding the leg of a struggling fly that he has just plucked from the air. He,His index finger and thumb are pinched together - holding the leg of a struggling fly that he has just plucked from the air.,He,gold,forms a flying sedan.,moves into the control tank.,flicks the fly away.,glances around as they begin to pause it.\n18314,lsmdc0020_Raising_Arizona-57691,8992,He flicks the fly away. Someone,He flicks the fly away.,Someone,gold,rolls onto his side and spins him away.,waves sprig and flicks in the foam.,\"scores 2, in las vegas.\",stares grimly at someone.\n18315,lsmdc0020_Raising_Arizona-57691,8990,\"Quick as a flash the heretofore languid someone bolts forward, his fist stopped an inch short of someone's nose. His index finger and thumb\",\"Quick as a flash the heretofore languid someone bolts forward, his fist stopped an inch short of someone's nose.\",His index finger and thumb,gold,are pinched together - holding the leg of a struggling fly that he has just plucked from the air.,twitch and he points a finger at rohan agents.,bobs in the air.,stops above someone's shoulder.\n18316,lsmdc3069_THE_BOUNTY_HUNTER-4551,12566,\"As he follows the sidewalk, he roots around in the pocket of his cargo shorts and pulls out a set of keys. Stopping at the storefront's glass door, he\",\"As he follows the sidewalk, he roots around in the pocket of his cargo shorts and pulls out a set of keys.\",\"Stopping at the storefront's glass door, he\",gold,finds someone lying at a table.,opens them and slips out.,pulls the wheel - lock handle inside the safe.,unlocks it and heads inside.\n18317,lsmdc3069_THE_BOUNTY_HUNTER-4551,12563,He pulls someone out of his car. He,He pulls someone out of his car.,He,gold,\"turns the knob, then backs away.\",shoves him into an suv.,unlocks the driver's door on the excavator's spell structure.,spots him running along the train track.\n18318,lsmdc3069_THE_BOUNTY_HUNTER-4551,12561,He glances over his shoulder and blows out an impatient breath. A man,He glances over his shoulder and blows out an impatient breath.,A man,gold,smashes his window with a crowbar.,sees someone taking a couple of his magazine.,walks around him at his looms.,rises the fedora and knocks the injured soldier in the head.\n18319,lsmdc3069_THE_BOUNTY_HUNTER-4551,12567,\"Stopping at the storefront's glass door, he unlocks it and heads inside. A sign on the window\",\"Stopping at the storefront's glass door, he unlocks it and heads inside.\",A sign on the window,gold,shows an apartment building lead through the drapes.,\"reads, sid's bail bonds.\",reveal someone's thugs.,makes an elderly couple panning through the room.\n18320,lsmdc3069_THE_BOUNTY_HUNTER-4551,12562,A man smashes his window with a crowbar. He,A man smashes his window with a crowbar.,He,gold,slot a table against his wall.,fires at the young man.,pulls someone out of his car.,is behind a soldier carrying a rifle.\n18321,lsmdc3069_THE_BOUNTY_HUNTER-4551,12560,\"Someone sits in his car, nervously tapping his steering wheel. He\",\"Someone sits in his car, nervously tapping his steering wheel.\",He,gold,stares at the staff meeting with a pensive expression.,reaches a snack machine.,scoops up a plastic bottle into an ashtray and thumps it into the trash.,glances over his shoulder and blows out an impatient breath.\n18322,lsmdc3069_THE_BOUNTY_HUNTER-4551,12564,\"He shoves him into an suv. As he slams the door, a cab\",He shoves him into an suv.,\"As he slams the door, a cab\",gold,pulls into the parking lot.,opens up to a motorcyclist.,leaps over someone's back.,pulls up behind him and speeds off.\n18323,anetv_DxtISmKol2I,5635,Other people watch on the side as the two robots begin to attack one another. One pushes the other off the side and the men,Other people watch on the side as the two robots begin to attack one another.,One pushes the other off the side and the men,gold,continue the dance while more and end text of people saying reach the end.,drop the pool floor.,continue to ride around the end.,put the robots back to battle several more.\n18324,anetv_DxtISmKol2I,5634,Two people are seen kneeling down before a board and pushing down objects. Other people,Two people are seen kneeling down before a board and pushing down objects.,Other people,gold,are shown standing around the ice while dancing around and speaking to one another.,are shown riding through ropes together and moving out continuously.,are seen sitting on tubes as well as paddling through floats and swimming around them.,watch on the side as the two robots begin to attack one another.\n18325,lsmdc0050_Indiana_Jones_and_the_last_crusade-70543,13890,The Sultan gets up from his chair and walks toward the trunk. He,The Sultan gets up from his chair and walks toward the trunk.,He,gold,goes right past it and begins to inspect the nazi staff car parked nearby.,speeds off through the wooden gates of the building and then tips toward several icy tents on the bank.,says nothing and hangs back down.,opens the door and the toilet opens.\n18326,lsmdc0050_Indiana_Jones_and_the_last_crusade-70543,13891,He goes right past it and begins to inspect the Nazi staff car parked nearby. The Sultan,He goes right past it and begins to inspect the Nazi staff car parked nearby.,The Sultan,gold,stops over his factory and reaches his open coat on the wall.,has shot the stubble on his cheek.,\"makes no attempt, trying to stop.\",points to the engine under the hood.\n18327,lsmdc1047_Defiance-91366,11665,\"The heavy search light is on ground and picks out someone, who fires straight at it, destroying the bulb. He and someone\",\"The heavy search light is on ground and picks out someone, who fires straight at it, destroying the bulb.\",He and someone,gold,gather up their armory of guns and run.,are in the rocks of divan bedroom.,try to haul someone into the chair.,are long fencing over the image.\n18328,lsmdc1047_Defiance-91366,11648,The brothers watch it plow into the wire. The people,The brothers watch it plow into the wire.,The people,gold,\"increase, trying to defend torn and pieces.\",\"look at each other, people staring sadly ahead.\",swarm towards the german soldier sprawled on the ground.,dawn on the trees ahead of the clad family.\n18329,lsmdc1047_Defiance-91366,11659,The group examine the weapons they have collected. More headlights,The group examine the weapons they have collected.,More headlights,gold,appear: people still trying to get up.,shine brightly from the office.,are drawn into a fire.,appear in the distance.\n18330,lsmdc1047_Defiance-91366,11664,\"Armed Germans go after someone, but their bullets whiz past him. The heavy search light\",\"Armed Germans go after someone, but their bullets whiz past him.\",The heavy search light,gold,\"comes out, as someone slowly rolls away just halfway in, glancing back.\",\"is on ground and picks out someone, who fires straight at it, destroying the bulb.\",\"appears, revealing the pirates holding the swords.\",can fill someone's body from a raised stone.\n18331,lsmdc1047_Defiance-91366,11655,The other Germans are ambushed from behind. The sergeant,The other Germans are ambushed from behind.,The sergeant,gold,\"is a quiet door, staring solemnly at someone.\",shoots blindly into the darkness.,\"amiably wipes his gaze, and stunned someone's there is a gasp.\",is down - the driver is following an overhead police.\n18332,lsmdc1047_Defiance-91366,11646,Someone running along a dirt track joins the others hiding in a ditch. Someone,Someone running along a dirt track joins the others hiding in a ditch.,Someone,gold,swerves out of someone's window.,throws out some wire across the track.,\"regains her composure, her hair still on one side, as someone spins to a chair near her.\",sees someone a white tail.\n18333,lsmdc1047_Defiance-91366,11666,\"He and someone gather up their armory of guns and run. The next morning at their camp, sandy - haired someone\",He and someone gather up their armory of guns and run.,\"The next morning at their camp, sandy - haired someone\",gold,talks to a radio.,looks across at someone with fury in his pale blue eyes.,stands at the table with more cds on the top.,enters with the two children opposite someone.\n18334,lsmdc1047_Defiance-91366,11654,Driver peers to the side of the road near to where someone and the others are hiding. The driver,Driver peers to the side of the road near to where someone and the others are hiding.,The driver,gold,lays tightly on the car seat.,gets in the cruiser and drives off.,advances fires as the thugs advance down the busy road toward the road speeding back in reverse.,opens his fly and takes a leak all over someone who tries to protect his face with his hands.\n18335,lsmdc1047_Defiance-91366,11668,\"Someone in his hat, coat, and woolen scarf, watches her grimly. Others in the camp\",\"Someone in his hat, coat, and woolen scarf, watches her grimly.\",Others in the camp,gold,pops up in bed.,sit camels in the pews.,are inside her car.,look pale and gaunt.\n18336,lsmdc1047_Defiance-91366,11653,The driver gets out of the open - topped car to investigate the obstacle in the road. Driver,The driver gets out of the open - topped car to investigate the obstacle in the road.,Driver,gold,peers to the side of the road near to where someone and the others are hiding.,leave a track and move on.,has sunk into the water.,zips up from his muddy coat and wedges his head around his cell.\n18337,lsmdc1047_Defiance-91366,11662,Someone helps someone to his feet and pulls him away from the line of fire. He,Someone helps someone to his feet and pulls him away from the line of fire.,He,gold,holds a grenade and fires.,pulls himself up by his own throat.,picks up another rifle and dashes into the bushes.,lion stands nervously at the end of the convenience.\n18338,lsmdc1047_Defiance-91366,11663,Soldiers jump off the back and run after someone who's haring across a field. A search light on its route,Soldiers jump off the back and run after someone who's haring across a field.,A search light on its route,gold,\"leads to a steward, a man wearing one eye measure, the figures of the zimmer silhouetted through the shadows.\",becomes the scene of the hero.,shows someone approaching a cruiser.,picks out someone running across the field.\n18339,lsmdc1047_Defiance-91366,11652,They take up their positions and watch the car draw nearer. The driver,They take up their positions and watch the car draw nearer.,The driver,gold,checks a car then steps by.,picks up the bottle.,looks out with an awkward smile.,gets out of the open - topped car to investigate the obstacle in the road.\n18340,lsmdc1047_Defiance-91366,11649,They relieve the dead man of his weapon and rifle through his saddle bags. A car's headlights,They relieve the dead man of his weapon and rifle through his saddle bags.,A car's headlights,gold,filter out and someone hammers its roof all over the neighborhood.,blink out through the farm house.,appear in the distance.,shoot past the trucks.\n18341,lsmdc1047_Defiance-91366,11647,A German motorbike comes into view. The brothers,A German motorbike comes into view.,The brothers,gold,get out of this car and up into the stairs.,step into a pursuer elevator.,hurry out of the door.,watch it plow into the wire.\n18342,lsmdc1047_Defiance-91366,11656,Someone unleashes a machinegun fire. Someone,Someone unleashes a machinegun fire.,Someone,gold,hits a card on fire.,lobs the javelin and falls into the sea.,chases after the fleeing private and brings him down.,stares at the ground full of burning flaming torches.\n18343,lsmdc1047_Defiance-91366,11667,\"The next morning at their camp, sandy - haired someone looks across at someone with fury in his pale blue eyes. Someone\",\"The next morning at their camp, sandy - haired someone looks across at someone with fury in his pale blue eyes.\",Someone,gold,opens a book to reveal someone sitting alone at the table with the child.,is scraping the bottom of a cooking pot with a ladle.,remains on the cubicle side of the desk.,waits for the cage as someone leans in.\n18344,lsmdc1047_Defiance-91366,11657,Someone chases after the fleeing private and brings him down. Someone,Someone chases after the fleeing private and brings him down.,Someone,gold,demurely approaches the log.,finishes up the germans in the car.,locks the kids around.,removes the cloak from someone.\n18345,lsmdc1047_Defiance-91366,11645,\"Together with people, he tosses the old man's body into the burning bed of the truck. Someone running along a dirt track\",\"Together with people, he tosses the old man's body into the burning bed of the truck.\",Someone running along a dirt track,gold,rolls up in tar.,sends a series of weeds along the track trying to find a target.,towards the rippling sand.,joins the others hiding in a ditch.\n18346,lsmdc1047_Defiance-91366,11661,Someone recoups more guns and runs into a field. Someone,Someone recoups more guns and runs into a field.,Someone,gold,helps someone to his feet and pulls him away from the line of fire.,dashes past a cluster of police cars.,lifts a stack of clothes from a rack.,catches up with someone.\n18347,lsmdc1047_Defiance-91366,11669,\"Others in the camp look pale and gaunt. Someone, chewing on a piece of bread,\",Others in the camp look pale and gaunt.,\"Someone, chewing on a piece of bread,\",gold,\"hands it to someone, the teenage girl.\",leans over the table's rim then turns around.,roams on one of them holding two serious chess.,tries to listen someone about to deliver it.\n18348,lsmdc1047_Defiance-91366,11658,Someone shoots his prey point blank. The group,Someone shoots his prey point blank.,The group,gold,climbs the stairs from the menacing rain.,examine the weapons they have collected.,arrives at the sri stand beside him.,continues to push warehouses.\n18349,lsmdc1047_Defiance-91366,11651,Someone and the others pick up the body. They,Someone and the others pick up the body.,They,gold,people in the once closed door.,take up their positions and watch the car draw nearer.,land in the rocky tower.,\"missing the air is bounces up on the floor at the trapdoor, it goes dead.\"\n18350,lsmdc1047_Defiance-91366,11660,More headlights appear in the distance. The brothers,More headlights appear in the distance.,The brothers,gold,\"stand side - by - side, wall by one wall, and then hands against each side.\",are buried against the car.,line up and open fire into the dazzling light.,throw at them through the trees.\n18351,lsmdc1006_Slumdog_Millionaire-73979,6787,People sit on the edge of the building. The vast city scape,People sit on the edge of the building.,The vast city scape,gold,reveals a grey suit and actress someone's stoic face.,grows dark except for the shadow of the applauding.,or towering arcs of ship walk are filling the street.,is spread out before them.\n18352,anetv_QZyR7yfp8hA,13196,The host speaks to another man while more shots of horses are shown as well as a man hitting a ball. The men then,The host speaks to another man while more shots of horses are shown as well as a man hitting a ball.,The men then,gold,ride horses and learn to play a sport and ends with the host speaking in a uniform.,use the paddle to vault over the net while falling on the ice and having fun.,bow back and fourth while the speak to one another.,throw one another and end by holding an up stick which attaches the men up and fourth.\n18353,anetv_QZyR7yfp8hA,13195,A man is seen speaking to the camera next to a horse and leads into clips of him riding around on the horse and close ups of other horses. The host,A man is seen speaking to the camera next to a horse and leads into clips of him riding around on the horse and close ups of other horses.,The host,gold,continues to draw the rope around himself while the camera pans around him off as they continue to ride throughout the audience.,speaks to another man while more shots of horses are shown as well as a man hitting a ball.,speaks as he continues moving his hands back and fourth while looking off into the distance.,continues riding the horses and speaks to the camera while laying up and down at the rope.\n18354,lsmdc1047_Defiance-91818,2305,She stands in front of him unflinching. Slowly he,She stands in front of him unflinching.,Slowly he,gold,\"walks over to someone, who strokes him.\",moves his mouth towards hers lightly brushing her lips.,changes seasonings to a pan of flour.,\"moves towards him, not like his face.\"\n18355,lsmdc1047_Defiance-91818,2304,He looks at her in mute surprise. She,He looks at her in mute surprise.,She,gold,stands in front of him unflinching.,flips someone groggily and wipes on people.,grabs his hand and drags her to the mantle.,rolls himself up onto the floor.\n18356,lsmdc1047_Defiance-91818,2303,Someone gazes at someone and his face softens. She,Someone gazes at someone and his face softens.,She,gold,plants a kiss on his lips.,\"takes someone's seat in his hands, and gives her an injection.\",takes a heavy breath and shuts himself into the blindly office.,strokes someone's cheek from his.\n18357,lsmdc1047_Defiance-91818,2307,\"Someone, hiding behind a tree, watches faithfully. At the camp, people\",\"Someone, hiding behind a tree, watches faithfully.\",\"At the camp, people\",gold,are still in their closet.,are hunched over their chess set.,hold their arms off as they watch the area?,use paddles to aim on the control device.\n18358,lsmdc1047_Defiance-91818,2306,\"He smiles and their lips meet again. Beyond some trees, a German truck full of soldiers\",He smiles and their lips meet again.,\"Beyond some trees, a German truck full of soldiers\",gold,sit high on their backs.,runs toward the herd.,\"walks past them, engrossed in hot weather.\",drives across a metal bridge followed by a car.\n18359,lsmdc3032_HOW_DO_YOU_KNOW-2573,6448,\"Someone grins down at her. Ending the call, someone\",Someone grins down at her.,\"Ending the call, someone\",gold,smiles down at her again.,goes back to her run and poses for the camera.,\"backs off from a few other cars sitting around a bridge full of parked bicycles, eyeing the words on that tape.\",sprays herself behind a counter.\n18360,lsmdc3032_HOW_DO_YOU_KNOW-2573,6457,\"Someone faces Lisa, his green eyes sparkling. Someone\",\"Someone faces Lisa, his green eyes sparkling.\",Someone,gold,peers into the shadows.,gets to her feet.,wears a upturned hand around his neck.,\"narrows his eyes as well, to the landscape.\"\n18361,lsmdc3032_HOW_DO_YOU_KNOW-2573,6453,Someone stares off with an embarrassed frown. She,Someone stares off with an embarrassed frown.,She,gold,\"marches up, enters the apartment, and pauses to face someone.\",gets a bottle of wine from a second box and takes out another door.,finds one girl sleeping.,stands up with her arms around his neck.\n18362,lsmdc3032_HOW_DO_YOU_KNOW-2573,6455,\"Releasing her he backs off, open hands raised. Someone\",\"Releasing her he backs off, open hands raised.\",Someone,gold,rides on a gurney and slamming past.,passes his accomplice flyer.,fires as someone's chopper leaps directly at them.,\"frowns, gives a small nod and turns away.\"\n18363,lsmdc3032_HOW_DO_YOU_KNOW-2573,6449,\"Ending the call, someone smiles down at her again. He\",\"Ending the call, someone smiles down at her again.\",He,gold,springs to his feet and sweeps his feet.,springs from his seat.,pats her own cheek and strides off.,turns toward the bus.\n18364,lsmdc3032_HOW_DO_YOU_KNOW-2573,6447,Someone yields a comforted nod. Someone,Someone yields a comforted nod.,Someone,gold,grins down at her.,wraps the nunchucks around it and moves it to the dresser.,shifts her gaze anxiously.,backs off him with tears after his eyes.\n18365,lsmdc3032_HOW_DO_YOU_KNOW-2573,6452,She pauses on the landing. Someone,She pauses on the landing.,Someone,gold,points her tearful face.,stares off with an embarrassed frown.,plants her feet on the towering canvas.,\"runs to the dining room, where he is sitting and waiting by a small stream.\"\n18366,lsmdc3032_HOW_DO_YOU_KNOW-2573,6454,As he covers her mouse she cocks a fist. Releasing her he,As he covers her mouse she cocks a fist.,Releasing her he,gold,glances back at his wife smiles and exhales.,\"points against the group, then steps forward.\",\"backs off, open hands raised.\",carries her up the ladder.\n18367,lsmdc3032_HOW_DO_YOU_KNOW-2573,6451,Later she leans against a display window. The door,Later she leans against a display window.,The door,gold,opens and her shifty sparse shoes smile on her.,opens delicately in shadow.,\"opens, revealing a dark mark on her arm.\",opens to reveal a smiling someone.\n18368,lsmdc3032_HOW_DO_YOU_KNOW-2573,6450,\"He springs from his seat. Rushing around his living room, he\",He springs from his seat.,\"Rushing around his living room, he\",gold,gathers up laundry and stacks books on a coffee table.,\"approaches the hanger a paunchy, hardcover trashcan.\",notices her gazing out through his open window as a bearded woman approaches him.,finds someone sitting on the cushions outside.\n18369,anetv_0jBwj0bfZ3Y,10636,A small ground of people are seen standing around a baseball field looking around to one another. Suddenly a few begin dancing around and one,A small ground of people are seen standing around a baseball field looking around to one another.,Suddenly a few begin dancing around and one,gold,holds the ball in the middle.,is dancing and shooting around a circle.,of them trying to hit the balls.,with their men and cutting the grass.\n18370,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3313,3289,Someone smirks at someone as someone shakes his head. He,Someone smirks at someone as someone shakes his head.,He,gold,hands it to someone then leaves.,hands someone to one of the men.,looks down from someone's piercing glare.,\"caresses the back of the wincing drummer, then turns back to see someone.\"\n18371,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3313,3288,\"Looking away, someone spots the pistol beside someone's dead body. Someone\",\"Looking away, someone spots the pistol beside someone's dead body.\",Someone,gold,observes from someone 'panel.,smirks at someone as someone shakes his head.,shoots a web at his partner.,stops just beneath the bar.\n18372,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3313,3291,\"As someone pins him by the neck, someone reaches into his coat. A sinister grin\",\"As someone pins him by the neck, someone reaches into his coat.\",A sinister grin,gold,hops on the taller man's neck.,spreads on someone's face.,spreads on someone's wide eyes as someone tries to look at the glass.,falls on the woman's face.\n18373,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3313,3290,\"He looks down from someone's piercing glare. As someone pins him by the neck, someone\",He looks down from someone's piercing glare.,\"As someone pins him by the neck, someone\",gold,pumps his fists and fists.,gives her a girlish smile.,gestures to the field with his ex.,reaches into his coat.\n18374,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3313,3287,\"Someone shifts his gaze between them. Looking away, someone\",Someone shifts his gaze between them.,\"Looking away, someone\",gold,notices a row of suitcases.,\"shakes her head as they walk across the gentle, golden stone towards the city.\",watches his footprints move away from the station.,spots the pistol beside someone's dead body.\n18375,anetv_iGXUvIRX77c,1022,People are playing the drums in a room. They,People are playing the drums in a room.,They,gold,begin to videotape the five women.,are sitting in their room showing karate to an.,begin marching back and forth in the room.,are playing instruments together.\n18376,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6648,3924,The spider hovers over someone. It,The spider hovers over someone.,It,gold,blasts out their wands.,glows with blue fiery letters.,transforms into a number of shapes that accompanies people.,drops into someone's hair.\n18377,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6648,3925,It drops into someone's hair. The spider,It drops into someone's hair.,The spider,gold,lashes out to someone.,clamps itself on someone's face.,struggles to his father's wrists and clutches his chest.,nudges him with his foot.\n18378,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6648,3923,\"It lands on a desk, then on a boy's head. It\",\"It lands on a desk, then on a boy's head.\",It,gold,\"runs from the bathroom, lets go of someone's hair and freed his feet.\",\"slips from the shelf, pulling something to someone's neck.\",tips then sits in the chair.,crawls up a girl's arm.\n18379,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6648,3922,Someone takes a lid from a glass jar. He,Someone takes a lid from a glass jar.,He,gold,scoops out a spider.,removes the milk and saunters off.,turns up a straw.,squints and cocks it.\n18380,anetv_E0U3v4WLuEA,7430,Next he screws on some screws to have them ready. He then,Next he screws on some screws to have them ready.,He then,gold,lands on a chalk board from the bottom of the slide and raises it.,slides on the grips onto the handles of the bike.,takes one and nailing it on the floor.,makes some mechanics of the different method of the pro film set.\n18381,anetv_E0U3v4WLuEA,7428,A man demonstrates how to install some grips onto bicycle handles. First he,A man demonstrates how to install some grips onto bicycle handles.,First he,gold,installs some rings onto the grips themselves.,stands on the basic pedal and eventually starts spins the car in position.,continues cutting the pieces that work behind him.,uses a machine to show an rights combination material 1600 for proper use.\n18382,anetv_E0U3v4WLuEA,7429,First he installs some rings onto the grips themselves. Next he,First he installs some rings onto the grips themselves.,Next he,gold,sets it down and ends in the end the second roughly.,places the center of the welding while he writes on the machine.,flips the top puff after he finishes inserts the flames.,screws on some screws to have them ready.\n18383,anetv_E0U3v4WLuEA,7431,He completes the tightening of the grips with an Alan wrench. Last he,He completes the tightening of the grips with an Alan wrench.,Last he,gold,\"maneuvers over the wheel and then reaches forward and puts the panel into the lock, gently pulling it.\",inserts plugs into the end of the grips and the handle bars.,\"walks along the bars, pulling apart and bouncing.\",drops the reactor onto the platform and swings across the board.\n18384,anetv_m_sBF4vLRRc,5783,Woman is wearing a red shirt and is standing talking to the camera in a white room. woman,Woman is wearing a red shirt and is standing talking to the camera in a white room.,woman,gold,is holding a hula hoop while doing gymnastic begins.,is cleaning a window in a workshop.,is playing tennis and watching her play.,start dancing salsa steps on a wooden court.\n18385,anetv_HLZLkI1NYAs,4443,\"A man rolls a bowling ball, then send it down the lane, followed by another. He\",\"A man rolls a bowling ball, then send it down the lane, followed by another.\",He,gold,miss it to the trailer where he missed landed on the lane because he's not just contestants.,\"skates out and balls the ball inside, making it for the ball to get it into pieces.\",falls pins onto the bowling field to knock the two men down.,\"makes a strike, then lets the slower ball hit the remaining two pins.\"\n18386,anetv_HLZLkI1NYAs,4441,Several scenes are shown of the inside of a bowling alley. Waitresses,Several scenes are shown of the inside of a bowling alley.,Waitresses,gold,run onto stunts and bumper cars.,is seen running the different part of a ball then jumping over long uneven bar into a pit.,are in a ponytail on a ledge.,carry drinks to the patrons.\n18387,anetv_HLZLkI1NYAs,13885,A woman is holding a tray of drinks. A man,A woman is holding a tray of drinks.,A man,gold,bowls several balls down a lane.,is dancing in the middle of the table.,shows the man how to dance.,is in his hand playing a violin.\n18388,anetv_HLZLkI1NYAs,13886,A man bowls several balls down a lane. He,A man bowls several balls down a lane.,He,gold,goes to the field with papers on the back of the room.,jumps and begin playing a game of bowling.,knocks over the pins on the lane.,becomes one of them standing on a basketball volley by tennis player.\n18389,anetv_HLZLkI1NYAs,4442,Waitresses carry drinks to the patrons. A man,Waitresses carry drinks to the patrons.,A man,gold,fans over rakes.,draws near another drum set.,stands by a medical partner.,\"rolls a bowling ball, then send it down the lane, followed by another.\"\n18390,anetv_1OJa2iiFxfk,6162,The shiner returns to buffing the right shoe. The shiner,The shiner returns to buffing the right shoe.,The shiner,gold,gives the flower touching the ground with her shoe while using it.,pull out a rope.,places it in an iron and rolls it.,wipes the shoe with a cloth.\n18391,anetv_1OJa2iiFxfk,6159,Two men on either side of the shoe shiner is observing the crowd. The shiner,Two men on either side of the shoe shiner is observing the crowd.,The shiner,gold,continues to buff the left shoe.,gives the man the thumbs in and the man spins around.,of these gray assists polish even larger locations.,continues trying to hit the ball on a hard cloth.\n18392,anetv_1OJa2iiFxfk,6156,A young man with a backpack is talking and walking through a station. There,A young man with a backpack is talking and walking through a station.,There,gold,then a man standing in front of a long older man lost behind the bar hanging on the side.,is a man sitting on the ground shining a shoe.,unlit windows on the train still is complete.,watch as a horse rides a horse and rides it towards a subway station.\n18393,anetv_1OJa2iiFxfk,6166,The man takes the cloth to shine the left shoe. The customer,The man takes the cloth to shine the left shoe.,The customer,gold,puts the shoe onto the coffee table.,removes some shoes and replaces the shoes as well.,steps into the bathroom.,observes his shiny shoes.\n18394,anetv_1OJa2iiFxfk,6167,The customer observes his shiny shoes. The customer,The customer observes his shiny shoes.,The customer,gold,makes his way out the lawn on a patch.,nods to the crest of the balcony than - turns away.,spots a tear and turns on the tap.,steps away from the shoe shiner.\n18395,anetv_1OJa2iiFxfk,6165,The man drops his block and resumes buffing. The man,The man drops his block and resumes buffing.,The man,gold,holds the right hand shard.,takes a rubber puff and checks it.,takes the cloth to shine the left shoe.,finishes and walks down the blade.\n18396,anetv_1OJa2iiFxfk,6163,The shiner wipes the shoe with a cloth. The man,The shiner wipes the shoe with a cloth.,The man,gold,resumes buffing the left shoe.,takes off his sandals and serves them off.,picks up the shoes and presents it.,washes the water as he applies the covers to his face as he finishes the chocolate.\n18397,anetv_1OJa2iiFxfk,6160,The shiner continues to buff the left shoe. The train,The shiner continues to buff the left shoe.,The train,gold,\"comes back to move and then tutus up, dancing and dance.\",pulls out in the cramped driveway.,is held out by two cars.,is moving along the station as a crowd walks by.\n18398,anetv_1OJa2iiFxfk,6157,He applies ointment to the shoe and resumes buffing the shoe. The customer moves his right foot down and places his left foot on the stand and the man,He applies ointment to the shoe and resumes buffing the shoe.,The customer moves his right foot down and places his left foot on the stand and the man,gold,is about to clean the table.,starts polishing the shoe.,holding his body with the dip under his back and rakes forward.,wags a small toy stud on his blue shoe.\n18399,anetv_1OJa2iiFxfk,6164,The man resumes buffing the left shoe. The man,The man resumes buffing the left shoe.,The man,gold,stops from the ladder and starts to play.,drops his block and resumes buffing.,smears the face clean and cleans the dog.,stops to wipe the snow off the windshield.\n18400,anetv_b4DhjwkO-b4,14487,We see a line of people standing against a wall. We,We see a line of people standing against a wall.,We,gold,see a man standing behind a campfire.,see a group of men climbing together in an empty gymnasium.,see a trophy on a screen.,see people playing dodge ball in a gym.\n18401,anetv_b4DhjwkO-b4,14492,We see only one man left on the court. The final man,We see only one man left on the court.,The final man,gold,\"starts wrestling with the basket on the floor, ready to hitting.\",turns and sits back at his bar.,is hit by a ball.,makes the launching jumper and skips every time.\n18402,anetv_b4DhjwkO-b4,14491,We see a man hit hard by a ball. We,We see a man hit hard by a ball.,We,gold,hits a ball into a large net.,see a cameraman cheering.,see only one man left on the court.,man runs and hits a rock.\n18403,anetv_b4DhjwkO-b4,714,A group of people stand against a wall. Three of them,A group of people stand against a wall.,Three of them,gold,\"crouch down the sand, then people pass the other way, finally base and the top of the rope.\",are using curling sticks.,are standing outdoors in the dark room as they put the strength on their kick.,run and start playing dodgeball.\n18404,anetv_b4DhjwkO-b4,14493,The final man is hit by a ball. The man,The final man is hit by a ball.,The man,gold,stands the man gets a ball at the man's pool.,dips a yellow ball into the lake.,catches his teammates and throws in pure grass.,kicks the wall and walks away.\n18405,anetv_b4DhjwkO-b4,14488,We see people playing dodge ball in a gym. The people,We see people playing dodge ball in a gym.,The people,gold,try to hit the ball around the field.,push the disk in and out of frame.,run towards balls and pick them up.,take turns and throw the ball again.\n18406,anetv_b4DhjwkO-b4,14490,We see a lady catch a ball and throw it. We,We see a lady catch a ball and throw it.,We,gold,see a man hit hard by a ball.,see an opening title mouth.,see the lady chop the wood and lay it on the table.,see a man in a blue coat climb in the pool.\n18407,anetv_b4DhjwkO-b4,14489,The people run towards balls and pick them up. We,The people run towards balls and pick them up.,We,gold,see you score the tree.,see a lady catch a ball and throw it.,move extremely fast down the field.,sitting on the ground watching people play.\n18408,anetv_swkSdgwCxHs,5216,An animated field of a track is shown filled with a crowd of people. An African American female,An animated field of a track is shown filled with a crowd of people.,An African American female,gold,player and is outside for the camera.,takes off running and begins to attempt a high jump but fails when the bar drops and walks off.,stands behind a microphone.,spins and performs a roundhouse kick.\n18409,anetv_swkSdgwCxHs,3735,The athlete ran and jumped over the pole The female athlete get off the mat and walked away. The female athlete,The athlete ran and jumped over the pole The female athlete get off the mat and walked away.,The female athlete,gold,stand in a bright good position and threw some a rope that fell runs down the graph.,jumped slightly in the stands a few times before the athlete jumped when the girl walks her jump.,jumped down onto the monkey bars and fell on the squares.,jumped over the pole and wave at everyone.\n18410,anetv_swkSdgwCxHs,3734,The female athlete is standing and then positioned. The athlete,The female athlete is standing and then positioned.,The athlete,gold,swings then drops down the disc and knocked down numerous times suddenly.,begins jumping the stairs.,ran and jumped over the pole the female athlete get off the mat and walked away.,prepares to throw two balls into the air.\n18411,lsmdc0032_The_Princess_Bride-66319,7450,\"Camera holds on it while we hear the Grandfather's voice reading. And if we thought it was packed before, we\",Camera holds on it while we hear the Grandfather's voice reading.,\"And if we thought it was packed before, we\",gold,didn't know how many more could fit in this courtyard.,see him in the black - tinted apartment.,look to the general group then turn and punch the guy.,\"see someone, who starts to shake his head.\"\n18412,lsmdc0032_The_Princess_Bride-66319,7452,People stand high on the balcony. And the scene,People stand high on the balcony.,And the scene,gold,\"freezes, someone caught in mid - sentence.\",breaks into a opera house.,is a shouts audience.,goes dark as a kick on multiple sides of the street is repeated.\n18413,lsmdc0032_The_Princess_Bride-66319,7451,\"And if we thought it was packed before, we didn't know how many more could fit in this courtyard. People\",\"And if we thought it was packed before, we didn't know how many more could fit in this courtyard.\",People,gold,are find each other.,gets into bed from the bridal party with knitting supplies and notebook.,were gathering with multi - colored water.,stand high on the balcony.\n18414,lsmdc0032_The_Princess_Bride-66319,7453,\"And the scene freezes, someone caught in mid - sentence. The Kid\",\"And the scene freezes, someone caught in mid - sentence.\",The Kid,gold,is now lining awakened to their own mayhem.,flies backwards on the night sky.,\"is half sitting now, not strong yet, but clearly stronger than when we first saw him.\",stops in the doorway as she and someone drag someone out through a window.\n18415,anetv_rFTVKkMqpIQ,2221,A nurse is standing in a room with another woman. She,A nurse is standing in a room with another woman.,She,gold,is standing and standing next to the patient.,demonstrates how to wash her hands in the sink.,is demonstrating how to remove her laces.,\"wears a pair of boots, a khaki skirt and coat.\"\n18416,anetv_rFTVKkMqpIQ,2222,She demonstrates how to wash her hands in the sink. She,She demonstrates how to wash her hands in the sink.,She,gold,\"lathers well, then rinses and dries her hands.\",lies on the side of the bed creating a piercing.,stands up and talks to another camera.,\"puts soap into his mouth, then gently washes her hand.\"\n18417,anetv_rFTVKkMqpIQ,13940,Disclaimer text appears on screen warning of possible injury if improper application of medical skills are used. A nurse,Disclaimer text appears on screen warning of possible injury if improper application of medical skills are used.,A nurse,gold,walks up next to someone.,enters a medical facility and carefully washes her hands in the sink.,appears wearing a shoe covered with a dressing and clothing.,\"spits out blood at the dry machine, dressing and nurse.\"\n18418,anetv_hc4DBHpRuGM,12331,A woman is shown riding the machine. She,A woman is shown riding the machine.,She,gold,shows how to use the screen on the machine as she works out.,keeps walking in and bowing with the dog.,uses a tool to move paint.,takes a torch to destroy a fire as well.\n18419,anetv_hc4DBHpRuGM,16549,A woman is working out on an elliptical machine. She,A woman is working out on an elliptical machine.,She,gold,\"is with lipstick in front of her, showing how her shop is braided.\",\"continues tattooing her, and showing various product about her and grooming equipment that she wants.\",pushes a button on the screen of the machine.,demonstrates how to do a portion of exercise while singing.\n18420,anetv_hc4DBHpRuGM,16550,She pushes a button on the screen of the machine. She,She pushes a button on the screen of the machine.,She,gold,picks up and begins to use the screw equipment to move it in place.,picks up the video fom and showing the residue on the wall.,levitates pictures of the case.,adjusts the handles on the machine.\n18421,anetv_hc4DBHpRuGM,12330,Several views are shown of an elliptical in a room. A woman,Several views are shown of an elliptical in a room.,A woman,gold,\"is standing in a studio, holding a spinning piece of equipment.\",is shown riding the machine.,is knitting and knitting.,bends down and picks up an vacuum.\n18422,anetv_aLv03Fznf5A,8903,People behind him are watching his routine. He,People behind him are watching his routine.,He,gold,pushes the door shut for him.,dismounts off the beam and sets his elbows first.,bends over the obstacle and jumps out on the clap.,does a hand stand before jumping off and landing on a mat.\n18423,anetv_aLv03Fznf5A,8902,A man is doing a gymnastics routine on a balance beam. People behind him,A man is doing a gymnastics routine on a balance beam.,People behind him,gold,stand in the gym.,are watching him shake in a line.,are doing other jumps and kicks.,are watching his routine.\n18424,anetv_aLv03Fznf5A,14479,Musculous man is doing gymnastics in a balance beam. in the background kids,Musculous man is doing gymnastics in a balance beam.,in the background kids,gold,are gathered on olympics doing jumps going around pole vaulting.,are practicing in a gym.,are doing karate in front of a screen.,are sitting on benches in front of a court.\n18425,anetv_ZeN0mrRQHg8,8465,A group of kids are riding in bumper cars. They,A group of kids are riding in bumper cars.,They,gold,walk and collide into each other.,lay on the ground trying to get to the air.,shovel and toss the balls at each other.,\"spin and move, hitting each other.\"\n18426,anetv_ZeN0mrRQHg8,8466,\"They spin and move, hitting each other. The kids\",\"They spin and move, hitting each other.\",The kids,gold,continues to struggle forwards and swing balance.,walk to the camera and try to keep up.,continue and ends with him smiling.,smile and laugh at each other as they collide.\n18427,anetv_OJYajhN1RHs,5790,A woman does a hair dressing routine by brushing and blowdrying hair. The woman,A woman does a hair dressing routine by brushing and blowdrying hair.,The woman,gold,sits and has the hairdresser work her magic in under ten minutes.,washes her hands with a clipper.,combs the braiding's hair and sets it in her blonde hair on her chest.,turns her face full of soap.\n18428,anetv_VmwvfQDR4YQ,16773,A man in a white hat is standing next to the man. One of the men,A man in a white hat is standing next to the man.,One of the men,gold,throws a rock into the air.,comes in the sidewalk.,steps over to the fireplace and blows on a cigarette.,looks up at the men.\n18429,anetv_VmwvfQDR4YQ,16772,A man is doing flips on the grass. A man in a white hat,A man is doing flips on the grass.,A man in a white hat,gold,is seated on a surfboard.,stands on his back as people wave and knock by the truck.,is holding on tight on the rope.,is standing next to the man.\n18430,anetv_HM_rHjh-wqQ,1302,\"A man stands in front of a group of people and plays the violin while other people, sitting on the floor, play the violin behind him. A man\",\"A man stands in front of a group of people and plays the violin while other people, sitting on the floor, play the violin behind him.\",A man,gold,runs with a woman sitting behind a male and begins playing the instrument.,lifts a small microphone and stands at a piano leading to the people by the piano between chairs.,lays a white guitar on the floor and walks up to the lady.,holds up a violin in front of a room of people and then begins to play it.\n18431,anetv_HM_rHjh-wqQ,1303,\"A man holds up a violin in front of a room of people and then begins to play it. While he plays a group of people, sitting on the floor behind him,\",A man holds up a violin in front of a room of people and then begins to play it.,\"While he plays a group of people, sitting on the floor behind him,\",gold,play the violin as well.,the man resumes playing the drums once he is done.,lit by a man on the other side.,away from his lake.\n18432,anetv_HM_rHjh-wqQ,4137,He starts to play and people seem entranced by it. He,He starts to play and people seem entranced by it.,He,gold,\"nods, lost in a white fist on the throat.\",continues on as the camera pans around and shows the rest of the room he is in.,\"stops someone and waddles on, sucking his tongue.\",walks backwards and walks around.\n18433,anetv_HM_rHjh-wqQ,1304,\"While he plays a group of people, sitting on the floor behind him, play the violin as well. The man\",\"While he plays a group of people, sitting on the floor behind him, play the violin as well.\",The man,gold,\"is now in shadow, almost performing in front of a large crowd.\",stops playing momentarily and talks to the audience before starting to play again.,\"dances around for pizza, then kisses his hands and walks.\",\"hops on the bar, picks up the flute and twirls his performance.\"\n18434,anetv_HM_rHjh-wqQ,4136,A man is shown indoors playing the violin as people look on. he starts to play and people,A man is shown indoors playing the violin as people look on.,he starts to play and people,gold,stand on all sides and wave to the outside.,walk around him while the audience watches.,are shown again in slow motion.,seem entranced by it.\n18435,anetv_lyJpgvmTOpo,9889,A man chugs an entire mug of beer. The friends,A man chugs an entire mug of beer.,The friends,gold,raises his arms and cheers.,eat ice on each man.,start drinking and drinking ale.,wring out the components and give him a beer.\n18436,anetv_lyJpgvmTOpo,14593,\"A juvenile holds a jar of beer while a young person looks at him smiling. Then, the juvenile\",A juvenile holds a jar of beer while a young person looks at him smiling.,\"Then, the juvenile\",gold,drinks all the beer in one go.,wash the shoes in slow motion and laughing.,puts down the wet potato and shakes them.,put the glasses on.\n18437,anetv_G98dfNXqu4Q,13030,Several people are on horses at a rodeo. One man,Several people are on horses at a rodeo.,One man,gold,introduces the men to a group that are joined together.,skateboards around a large field between obstacles in privet drive.,crashes into a large rock with another black calf with a back cart but chasing the man is chasing a calf.,comes out of the gate and ropes a calf.\n18438,anetv_G98dfNXqu4Q,13031,One man comes out of the gate and ropes a calf. The calf,One man comes out of the gate and ropes a calf.,The calf,gold,runs after the calf and lasso it jumping on the floor.,falls to the ground as he is roped into place.,falls off and lands on the sidewalk.,jumps on the ground and ties up the calf.\n18439,anetv_aw4ehW-wTKA,2942,People are seen taking turns on the rope attempting to balance by sitting and standing. The group,People are seen taking turns on the rope attempting to balance by sitting and standing.,The group,gold,continues performing splits around the beam while others watch on the camera.,is people jumping up and down on the platform performing tricks and tricks.,drifts on a park with people up and down in a thrift shop.,continue to balance on the ropes while the camera fades away.\n18440,anetv_aw4ehW-wTKA,2941,People are seen standing around and speaking to one another followed by a woman walking across a rope. People,People are seen standing around and speaking to one another followed by a woman walking across a rope.,People,gold,are seen running in a field area fencing in many martial arts matches.,follow one another as they watch on the side and walk away before they show the men how to properly perform at the event.,are seen taking turns on the rope attempting to balance by sitting and standing.,are shown playing football with one another while people watch on the sides.\n18441,anetv_aw4ehW-wTKA,7202,People are walking on the slack line. A man in a green shirt,People are walking on the slack line.,A man in a green shirt,gold,is talking into the camera and holding two archery outfits.,takes a pen and talks to the camera.,is holding a string and leaning on a railing.,is sitting on the slack line.\n18442,anetv_aw4ehW-wTKA,7201,People are putting up a slack line. People,People are putting up a slack line.,People,gold,are walking a horse on a dirt road.,are walking on the slack line.,gather to a grassy area with equipment on their backs.,are walking towards the camels.\n18443,anetv_wbrnTczxvVw,3216,Then both the women show how to twirl the hoop by raising it high up above their heads. They,Then both the women show how to twirl the hoop by raising it high up above their heads.,They,gold,get the lacrosse balls onto the table.,twist the bow upside down.,bend their backs to lower themselves down as the continue to hula hoop.,rolls on the side while the other woman swims rope in the atrium.\n18444,anetv_wbrnTczxvVw,3215,The woman in the blue tank top shows how to hula hoop in fast motion. Then both the women,The woman in the blue tank top shows how to hula hoop in fast motion.,Then both the women,gold,show how to twirl the hoop by raising it high up above their heads.,hula hooping in and out flips are shown.,and the woman watch a little boy in the pool.,takes the letters out and begins hula hoop rings.\n18445,anetv_wbrnTczxvVw,3213,They both begin spinning with blue and silver hula hoops. They,They both begin spinning with blue and silver hula hoops.,They,gold,wearing the blue color again indoors.,are in a spacious room with little furniture and hardwood floors.,\"dance, dancing with each other and dance in unison.\",\"are walking forwards to make a small box before going up and jumping, annoyed.\"\n18446,anetv_wbrnTczxvVw,3217,They bend their backs to lower themselves down as the continue to hula hoop. They,They bend their backs to lower themselves down as the continue to hula hoop.,They,gold,talk to each other as they share tips about ways to hula hoop.,reach the attachment for different dance moves.,continue playing and playing with them in the pool.,hold the kiss again.\n18447,anetv_wbrnTczxvVw,3212,There are two women dressed in black and blue tank tops demonstrating how to use the hula hoop. They both,There are two women dressed in black and blue tank tops demonstrating how to use the hula hoop.,They both,gold,\"take their hoops to others, and are n't dancing like any other people on.\",begin spinning with blue and silver hula hoops.,are lost and starts iron themselves with an oar line crossing them in place.,put the liquids down as well as the man put out together and start at the fencers on the screen for a final performances.\n18448,anetv_wbrnTczxvVw,3214,They are in a spacious room with little furniture and hardwood floors. The woman in the blue tank top,They are in a spacious room with little furniture and hardwood floors.,The woman in the blue tank top,gold,is covering the floor while pushing the tiles.,is vacuuming down a pile of tiles in a room.,shows how to hula hoop in fast motion.,is doing a ballroom batons in the middle of the court.\n18449,lsmdc3033_HUGO-14643,20078,Someone and someone inspect book titles as they stroll past shelves. Someone,Someone and someone inspect book titles as they stroll past shelves.,Someone,gold,walks up to them and leaves his dressing room.,\"stares at someone, who stares in surprise.\",\"pulls a tall, thick book from a shelf.\",runs up swiftly through the jungle.\n18450,lsmdc3033_HUGO-14643,20079,\"Someone pulls a tall, thick book from a shelf. Someone\",\"Someone pulls a tall, thick book from a shelf.\",Someone,gold,hangs the box and stands over someone.,sets the volume onto a table.,looks at the gate with a frown.,stands and opens it.\n18451,lsmdc3018_CINDERELLA_MAN-7566,17442,\"Their lips still locked, someone rises and holds her in his arms. Towering over him, she\",\"Their lips still locked, someone rises and holds her in his arms.\",\"Towering over him, she\",gold,twitches an eager smile and pulls him back up.,pulls him up and sets him down on the sidewalk.,smiles as they embrace.,reaches out towards her.\n18452,lsmdc3018_CINDERELLA_MAN-7566,17457,She kisses her daughter's head as someone puts on his shoes. As he,She kisses her daughter's head as someone puts on his shoes.,As he,gold,\"walks away, someone glances at her.\",turns her back defiantly the convertible trapping them.,ushers her into a corridor.,lifts someone onto his lap.\n18453,lsmdc3018_CINDERELLA_MAN-7566,17459,\"Outside before sunrise, someone heads upstairs. Two empty milk bottles\",\"Outside before sunrise, someone heads upstairs.\",Two empty milk bottles,gold,float down the hall.,are on a door.,float into the air.,sit in a basket.\n18454,lsmdc3018_CINDERELLA_MAN-7566,17445,\"Later, in a bedroom, someone stands at a dresser. The boxer\",\"Later, in a bedroom, someone stands at a dresser.\",The boxer,gold,takes off a catholic cross necklace.,like her lifted bullets.,shows multiple wallet evidence to the model models teen after need.,\"in the vest, holds a accordion to their ear, then splashes the pair of shoes together.\"\n18455,lsmdc3018_CINDERELLA_MAN-7566,17460,\"Wearing suspenders over his t - shirt, he grabs the bottles. Now he\",\"Wearing suspenders over his t - shirt, he grabs the bottles.\",Now he,gold,eats a lunch in half as she walks out on a deserted street.,returns to the shower.,turns and flicks his wand.,returns to the basement apartment.\n18456,lsmdc3018_CINDERELLA_MAN-7566,17449,Someone squints at his reflection in a mirror. He,Someone squints at his reflection in a mirror.,He,gold,shifts his thoughtful gaze.,\"spins and pushes someone up with his arms, then gazes at the boy's reflection.\",runs a hand down his cheeks.,removes the black clorox pane from his mouth.\n18457,lsmdc3018_CINDERELLA_MAN-7566,17441,\"Letting them back down, she grabs him by the collar and kisses him. Their lips still locked, someone\",\"Letting them back down, she grabs him by the collar and kisses him.\",\"Their lips still locked, someone\",gold,shakes her head in disbelief.,lets go of her wrist.,lowers his head as if in a trance.,rises and holds her in his arms.\n18458,lsmdc3018_CINDERELLA_MAN-7566,17440,\"She raises his arms overhead. Letting them back down, she\",She raises his arms overhead.,\"Letting them back down, she\",gold,grabs him by the collar and kisses him.,plummets sideways to the floor and dashes off.,holds a glimpse of her cat's enclosure.,surfaces and points up at the sky.\n18459,lsmdc3018_CINDERELLA_MAN-7566,17443,\"Behind them, lights glow on string of colorful lanterns. They\",\"Behind them, lights glow on string of colorful lanterns.\",They,gold,hold their arms in each other's arms.,go off into the darkness.,\"converge on someone's peruse, then untie the handcuff belt from the rope.\",strip through a modern and down buildings beneath the rooftop.\n18460,lsmdc3018_CINDERELLA_MAN-7566,17450,\"He picks up a jagged hooked strip of metal with an ivory nub angled down from one end. Wincing, he\",He picks up a jagged hooked strip of metal with an ivory nub angled down from one end.,\"Wincing, he\",gold,puts the sword on his hand and winces.,tightens his jaw as he reaches someone.,picks up the books and slings it over one shoulder.,fits it into his mouth.\n18461,lsmdc3018_CINDERELLA_MAN-7566,17451,\"Wincing, he fits it into his mouth. He\",\"Wincing, he fits it into his mouth.\",He,gold,cycles up to the thick root.,walks around the center of the hedge.,\"has it over his head, grabbing his pants.\",checks his fake tooth in a mirror rubbing it with a forefinger.\n18462,lsmdc3018_CINDERELLA_MAN-7566,17447,\"As our view moves across the flower print wallpaper, the picture goes dark. Now our view\",\"As our view moves across the flower print wallpaper, the picture goes dark.\",Now our view,gold,\"races down the street, with a glimpse of her flaxen hair, bowing over someone's raven hair.\",\"rises from the hollywood overlook, which nearly activates bell high and falling of the street.\",shows the holes covering its black wall structure.,keeps moving to a white washed dresser top lined with a simple lace runner.\n18463,lsmdc3018_CINDERELLA_MAN-7566,17446,\"A second wad plunks down in a money clip. On the lacquer dresser, another box\",A second wad plunks down in a money clip.,\"On the lacquer dresser, another box\",gold,displays four handcuffs on his shoulder.,\"is twirled close to the lacquer, which ends by an old print poster.\",\"sits filled with earrings, rings, and necklaces.\",has colored salad on fabric.\n18464,lsmdc3018_CINDERELLA_MAN-7566,17452,\"Scratching his belly through his t - shirt, he steps around a wall of exposed lathe. A girl\",\"Scratching his belly through his t - shirt, he steps around a wall of exposed lathe.\",A girl,gold,returns her gaze and grins in delight.,sits up in bed.,points to ones at the open window and talks.,steps up behind a curtain and jumps dead.\n18465,lsmdc3018_CINDERELLA_MAN-7566,17448,A man's fingers reach for a folded straight razor near the Braddock's unframed wedding photo. Someone,A man's fingers reach for a folded straight razor near the Braddock's unframed wedding photo.,Someone,gold,regards from all angles.,\"is a screwed out piece jello hair, where a plastic kit attorney stands aside and folder had been taken.\",\"emerges from the bed, which separates an infant.\",squints at his reflection in a mirror.\n18466,lsmdc3018_CINDERELLA_MAN-7566,17461,\"Now he returns to the basement apartment. As his wife looks over from the stove, he\",Now he returns to the basement apartment.,\"As his wife looks over from the stove, he\",gold,fishes over his shirt from trying to avoid a fight.,\"looks at the other clock, which reads, prep assassination go at this minute.\",shows her the past due notice.,secretly points his spike through the hot - featured roommate just as the goat enters the cab.\n18467,lsmdc3018_CINDERELLA_MAN-7566,17458,He sits her at the table. He,He sits her at the table.,He,gold,takes the arm of both women.,\"closes the drapes, turning the trunk to the park.\",\"eats the contents of the glass, shaking her head.\",sets the plate in front of her.\n18468,lsmdc3018_CINDERELLA_MAN-7566,17466,As she pours a glass of milk. Someone,As she pours a glass of milk.,Someone,gold,keeps looking at him.,angrily wipes his hand.,returns to the table.,stands on the veranda.\n18469,lsmdc3018_CINDERELLA_MAN-7566,17455,As she holds them out to the groggy boxer. He,As she holds them out to the groggy boxer.,He,gold,holds the socks to his face.,\"glances at someone who points at someone, whose sunglasses unbuttoned.\",kicks out his arms and dodging traffic.,\"flips the board into the air, then grimaces.\"\n18470,lsmdc3018_CINDERELLA_MAN-7566,17456,He holds the socks to his face. She,He holds the socks to his face.,She,gold,kisses her daughter's head as someone puts on his shoes.,holds the lighter halfway down.,caresses the head of his own neck.,looks out into the foggy sky.\n18471,lsmdc3018_CINDERELLA_MAN-7566,17462,\"As his wife looks over from the stove, he shows her the Past Due notice. Someone\",\"As his wife looks over from the stove, he shows her the Past Due notice.\",Someone,gold,observes her as someone stands flat on his back.,lies curled out on a woman's couch as she heads off to the girls lounge.,reads the chapel then lowers her hands from a dancer's.,puts the empties on a shelf.\n18472,lsmdc3018_CINDERELLA_MAN-7566,17465,She stabs it into the last morsel of meat. As she,She stabs it into the last morsel of meat.,As she,gold,slices down the letter and slices the contents clear.,meticulously pierces her top severe.,ducks over a branch.,pours a glass of milk.\n18473,lsmdc3018_CINDERELLA_MAN-7566,17444,\"They go off into the darkness. Later, in a bedroom, someone\",They go off into the darkness.,\"Later, in a bedroom, someone\",gold,stands at a dresser.,gets up and gets out.,sleeps curled up in the tub.,sleeps on one of the pillows.\n18474,anetv_U6Xnw2RGjsI,14353,A young man pumps up and down kneeling on both legs. The student,A young man pumps up and down kneeling on both legs.,The student,gold,punches him in the face.,falls into the water rushing down water hose.,\"stops and stands, walks on the ground and continues hopping to the right.\",jumps up from the kneeling position and lands on top of a stack of mat then lands on the ground.\n18475,lsmdc3029_GREEN_ZONE-13565,15988,As someone exits the building. He,As someone exits the building.,He,gold,xs through a third room.,strides past someone then glances back at him.,moves through the stacks.,picks up a bottle of whiskey.\n18476,lsmdc3029_GREEN_ZONE-13565,15992,As someone unfolds it and skims its contents. He,As someone unfolds it and skims its contents.,He,gold,lifts his eyes to someone's.,pulls a receiver yards towards the entrance.,hits the unopened safe in the technician door.,takes a wad of books from the shelf.\n18477,lsmdc3029_GREEN_ZONE-13565,15994,Someone watches with narrowed eyes. Someone,Someone watches with narrowed eyes.,Someone,gold,walks up to his friend.,turns away then sits down.,\"hurries up, carrying the silver - haired bearded woman wearing a brown suit.\",heads into a lobby.\n18478,lsmdc3029_GREEN_ZONE-13565,15991,A colleague makes a call. As someone,A colleague makes a call.,As someone,gold,leads another host toward the theater.,unfolds it and skims its contents.,\"trudges and turns a page, a star light changes from atop someone's cradle.\",climbs up the laptop someone types.\n18479,lsmdc3029_GREEN_ZONE-13565,15990,\"Someone shifts his confused gaze. Someone loiters nearby, his car now\",Someone shifts his confused gaze.,\"Someone loiters nearby, his car now\",gold,tagged with the letters us on its door.,going up the front steps.,heading straight behind a corner of a grassy lake.,eaten by an unopened cut of patterned carpet.\n18480,lsmdc3029_GREEN_ZONE-13565,15989,He strides past someone then glances back at him. Someone,He strides past someone then glances back at him.,Someone,gold,turns to look at someone 'feet.,happens at a seductive look with lights of drunkenly.,shifts his confused gaze.,walks toward someone with a towel in his mouth.\n18481,lsmdc3029_GREEN_ZONE-13565,15987,\"Someone slings the money filled backpack over his shoulder and leaves. Outside, someone\",Someone slings the money filled backpack over his shoulder and leaves.,\"Outside, someone\",gold,waits by his sedan.,follows in his footsteps.,flips off an armed valet.,looks around the dark house.\n18482,lsmdc3029_GREEN_ZONE-13565,15993,As someone and his agents leave. Someone,As someone and his agents leave.,Someone,gold,points and sets up the radio.,stops halfway down a metal staircase.,watches with narrowed eyes.,punches someone in the gut.\n18483,lsmdc3055_PROMETHEUS-26681,8783,\"The android lifts a glass off a shelf with his thumb and middle finger, leaving his index finger extended. Someone\",\"The android lifts a glass off a shelf with his thumb and middle finger, leaving his index finger extended.\",Someone,gold,rolls a ball toward him.,\"perches on the oyster, bracing a new claw against the waistband of his shirt.\",scowls as she stands faster.,takes a swig of pills and wipes both hands and easing.\n18484,lsmdc3055_PROMETHEUS-26681,8772,\"In the lab, someone peers through a microscope. In the other lab, someone\",\"In the lab, someone peers through a microscope.\",\"In the other lab, someone\",gold,works in a shop.,gently twists the top off the urn and sets it aside.,packs a signed envelope with newspaper paper.,walks over toward several panel covering their window.\n18485,lsmdc3055_PROMETHEUS-26681,8767,She steps before him and he slows to a stop. She,She steps before him and he slows to a stop.,She,gold,\"nods, closing his eyes.\",\"steps closer, fixing him with a piercing stare.\",picks her way through the crowd so her back is facing the crowd.,\"crosses to the ledge beneath a ledge, then turns and wheels back to where the porter crouches.\"\n18486,lsmdc3055_PROMETHEUS-26681,8784,Someone rolls a ball toward him. Someone,Someone rolls a ball toward him.,Someone,gold,shoves back his hood.,\"shoots him, then engulfs it again.\",are on their stomachs and firearms on their way to their room.,props his head on both hands.\n18487,lsmdc3055_PROMETHEUS-26681,8771,\"Opening one, he removes the urn he took from the inner chamber. In the lab, someone\",\"Opening one, he removes the urn he took from the inner chamber.\",\"In the lab, someone\",gold,peers through a microscope.,peers down the tunnel tunnel.,looks around the child.,drops it on and steps to the door.\n18488,lsmdc3055_PROMETHEUS-26681,8780,\"Putting his fingertip over the resulting hole, he tips it upside down. A tiny drop of the black matter\",\"Putting his fingertip over the resulting hole, he tips it upside down.\",A tiny drop of the black matter,gold,sits on the tip of his index finger.,is ripped from someone's winter mouth.,\"filled up here, except to someone's chest.\",shaped pieces is sucked down onto the top.\n18489,lsmdc3055_PROMETHEUS-26681,8770,\"Someone approaches a wall of glass - doored coolers filled with supplies. Opening one, he\",Someone approaches a wall of glass - doored coolers filled with supplies.,\"Opening one, he\",gold,removes the urn he took from the inner chamber.,\"finds a small desk, money.\",takes place atop a chair that waits between his cuffed hands.,finds obliviously hanging an object from its holder.\n18490,lsmdc3055_PROMETHEUS-26681,8764,\"He removes his helmet and amber visor, revealing his stoic expression. Now, as he\",\"He removes his helmet and amber visor, revealing his stoic expression.\",\"Now, as he\",gold,\"strides onto the cubicle at his back apartment, camera spies him as he scoops a cigar in his mouth.\",strides down a corridor.,\"talks, the president lifts.\",leaves someone outside someone's house the platforms train to a stop in the trees of the forest.\n18491,lsmdc3055_PROMETHEUS-26681,8773,\"In the other lab, someone gently twists the top off the urn and sets it aside. Meanwhile, with someone, a green laser beam\",\"In the other lab, someone gently twists the top off the urn and sets it aside.\",\"Meanwhile, with someone, a green laser beam\",gold,aims at a slide.,hovers across the foyer ceiling.,illuminates a tall stone view.,brings letter up to the street.\n18492,lsmdc3055_PROMETHEUS-26681,8758,The chamber door slides shut and another shot of white mist blast it. Someone,The chamber door slides shut and another shot of white mist blast it.,Someone,gold,aims it at someone.,pulls the ax over her stomach and climbs into a bag.,lowers her white doctor's mask.,moves wildly to the bar.\n18493,lsmdc3055_PROMETHEUS-26681,8760,\"Later, the storm continues to pelt Prometheus. He\",\"Later, the storm continues to pelt Prometheus.\",He,gold,blows out his stirs along with someone.,puts back the frost down the ski.,tear up a fish sandwich through tossed water in a silver mug.,wears the helmet with the glowing visor.\n18494,lsmdc3055_PROMETHEUS-26681,8768,\"As someone tries to side step around her, she blocks him. They\",\"As someone tries to side step around her, she blocks him.\",They,gold,stare at each other only a few inches apart.,zipper pulls down his tail.,\"back in the car, she straightens her hair.\",arm grabs her coat!\n18495,lsmdc3055_PROMETHEUS-26681,8765,\"Now, as he strides down a corridor. Rounding a bend, He\",\"Now, as he strides down a corridor.\",\"Rounding a bend, He\",gold,slices a supporting cat mouse on a black top.,lifts his long blondes end wand in his windows.,spread up chess houses.,finds someone waiting for him.\n18496,lsmdc3055_PROMETHEUS-26681,8777,\"As he tips it upside down. In the lab, someone\",As he tips it upside down.,\"In the lab, someone\",gold,shows several leg length squats.,looks on.,peers at the monitor.,stares back at her.\n18497,lsmdc3055_PROMETHEUS-26681,8774,\"On screen, a map of the engineer's dna overlaps a human sample. Meanwhile, someone\",\"On screen, a map of the engineer's dna overlaps a human sample.\",\"Meanwhile, someone\",gold,lifts a rack of four large vials from the urn.,\"stops holding two giant columns, then leaps and comes down on the cement slab.\",\"finds himself at his desk, taking a swig of whiskey.\",jumps from train sedan web and weaves through a portable jet.\n18498,lsmdc3055_PROMETHEUS-26681,8779,\"Now someone breaks off the tip of the vial. Putting his fingertip over the resulting hole, he\",Now someone breaks off the tip of the vial.,\"Putting his fingertip over the resulting hole, he\",gold,removes the pill from his fingers.,finds his fingers red sweater.,tips it upside down.,holds up his hand.\n18499,lsmdc3055_PROMETHEUS-26681,8782,\"Now, someone enters the mess hall with a bottle of liquor and sees someone drunkenly fiddling with balls on the pool table. The android\",\"Now, someone enters the mess hall with a bottle of liquor and sees someone drunkenly fiddling with balls on the pool table.\",The android,gold,\"carries him to the beachfront, then sets the timer on the counter counter.\",\"lifts a glass off a shelf with his thumb and middle finger, leaving his index finger extended.\",\"'s rocks are stretched neatly behind the narrow ball and jazz, landing on the floor his head about, one to the other.\",\"'s sitting out in the atlantic, with a couple of them sitting on the edge of the bed, watching the tv.\"\n18500,lsmdc3055_PROMETHEUS-26681,8776,Gray ooze drips off the container as he sets it down on a work surface. As he,Gray ooze drips off the container as he sets it down on a work surface.,As he,gold,\"holds his son very tightly, then his head down.\",tips it upside down.,lays down his jacket.,\"nears the rescuers approaching, our view slowly switches to a tearful sleeping monk.\"\n18501,lsmdc3055_PROMETHEUS-26681,8766,\"Rounding a bend, He finds someone waiting for him. She steps before him and he\",\"Rounding a bend, He finds someone waiting for him.\",She steps before him and he,gold,\"tightens his jaw, patting the back of her leg.\",slows to a stop.,rolls to his side.,lets his arms fall on the seat beneath a red mask.\n18502,lsmdc3055_PROMETHEUS-26681,8769,They stare at each other only a few inches apart. She,They stare at each other only a few inches apart.,She,gold,looks up at him.,takes a few steps forward.,turns to face someone.,pins him to a wall.\n18503,lsmdc3055_PROMETHEUS-26681,8781,A tiny drop of the black matter sits on the tip of his index finger. He,A tiny drop of the black matter sits on the tip of his index finger.,He,gold,sees then puts on his unlaced boots.,is cast on a calm reaching triangular walled stone cage.,reaches for the hook.,lifts it to eye level and peers closely at it.\n18504,lsmdc3055_PROMETHEUS-26681,8763,Someone touches his palm to its top and a light glowing within dims. He,Someone touches his palm to its top and a light glowing within dims.,He,gold,turns his face like a stone fan.,races someone toward the table as the boy stands up.,\"removes his helmet and amber visor, revealing his stoic expression.\",fires more lightning at the cover.\n18505,lsmdc3055_PROMETHEUS-26681,8761,He wears the helmet with the glowing visor. He,He wears the helmet with the glowing visor.,He,gold,allows a slight smile and bows his head.,\"retracts them in robert's hand, putting some signals to his lips.\",\"closes his eyes and peers out at someone's side, her red arm at arm's length.\",leads through an electronics store.\n18506,lsmdc3055_PROMETHEUS-26681,8775,\"Meanwhile, someone lifts a rack of four large vials from the urn. Gray ooze\",\"Meanwhile, someone lifts a rack of four large vials from the urn.\",Gray ooze,gold,\"the horse head, someone spreads his wings as someone climbs on a flight of stairs.\",attend to his steer who ride past.,drips off the container as he sets it down on a work surface.,\"ascend as richard parker lashes over the polished roof, who flips after richard parker.\"\n18507,anetv_tTkavaWq0QM,16523,A man and woman are seen performing a tango routine that leads into another couple performing a tango routine. The new couple,A man and woman are seen performing a tango routine that leads into another couple performing a tango routine.,The new couple,gold,of men play then stands in the stands and pose while moving their arms all around.,continues dancing around the stage with one another and ends by holding a pose and presenting each other.,begins dancing tango with one another while the girl swings their arms and legs back and fourth.,begin to flip through the stage as people continue to dance and dance without stopping.\n18508,anetv_tTkavaWq0QM,10042,The man walks towards the woman. The two,The man walks towards the woman.,The two,gold,men high five each other.,men cellphones the board.,brushes a small helper's hand.,begin to dance together.\n18509,anetv_tTkavaWq0QM,10041,The curtain raises and a man and a woman are shown. The man,The curtain raises and a man and a woman are shown.,The man,gold,lets a ball down in a lit pool by a man.,walks towards the woman.,talks back and forth while playing an accordion.,dances as a female gymnast.\n18510,anetv_tTkavaWq0QM,10043,The two begin to dance together. The scene,The two begin to dance together.,The scene,gold,ends with the boys moving around after dancing.,goes far from before.,switches from black and white to full color.,cuts to old kids dancing barefoot.\n18511,anetv_l-R4wiSZcRc,16113,An intro leads into several older clips of olympic performers performing incredible acts. One group of people are seen swimming while hundreds of people cheer and many people,An intro leads into several older clips of olympic performers performing incredible acts.,One group of people are seen swimming while hundreds of people cheer and many people,gold,grab their bike while cheering.,cheer at the end with their cameras ending scene.,continue dancing with text in a screen.,look to the camera and smile.\n18512,anetv_l-R4wiSZcRc,16114,One group of people are seen swimming while hundreds of people cheer and many people look to the camera and smile. Another man shakes the hand of an athlete and he waves while,One group of people are seen swimming while hundreds of people cheer and many people look to the camera and smile.,Another man shakes the hand of an athlete and he waves while,gold,shaking the hands of others and people applauding.,clapping and hauling - up.,bowing over the edge.,ending the crowd back.\n18513,anetv_P79nFNUaysw,3639,A man is seen speaking to the camera and leads into shots of water boiling in a pot. He,A man is seen speaking to the camera and leads into shots of water boiling in a pot.,He,gold,is shown walking on the beach and continues to speak to the camera as well as other people in the ocean.,takes a bite of the of the pasta and ends with him still smiling to the camera.,rolls around and speaks to the camera while speaking to the camera.,person grabs a tomato on the rag and mixes it up onto a plate while still speaking to the camera's camera.\n18514,anetv_nfBBazBLQFk,9144,They are flying kites in the air over the brick building. The men,They are flying kites in the air over the brick building.,The men,gold,\"spin along the road, moving in skipping.\",\"ski on a pile of snow with a long winding hill, along with grated tomatoes.\",make the kites dip and dive as they talk and interact.,fall on the invisibility seal and curious as they approach and go around cautiously.\n18515,anetv_nfBBazBLQFk,9143,\"A man stands on the roof of a building, and two others appear. They\",\"A man stands on the roof of a building, and two others appear.\",They,gold,pans to a room full of people and some sites.,are helping the man out shoveling tiles up and forth.,wipe their hand on the incline and wipe it down.,are flying kites in the air over the brick building.\n18516,anetv_63HZk1SInLk,2438,She speaks more to the camera while also showing various ingredients and pouring water and salt into a pot. She,She speaks more to the camera while also showing various ingredients and pouring water and salt into a pot.,She,gold,stirs a spoon while the water and rubs it along the side.,mixes around different ingredients and then begins receiving a drink of the mixer.,mixes more ingredients in the bowl and strain the fruits into a bowl in the end.,gets mixed into the glass and then turns away from the bowl.\n18517,anetv_63HZk1SInLk,2437,A woman is seen sitting behind a desk taking her classes down and clip arts of her and objects. She,A woman is seen sitting behind a desk taking her classes down and clip arts of her and objects.,She,gold,continues on the horse and ends by holding it to her lips.,plays the woman's hands and continue to dance around.,new colored changes is shown dancing on the floor in front of her and she begins sitting all towards the camera.,speaks more to the camera while also showing various ingredients and pouring water and salt into a pot.\n18518,anetv_CLbEvGHmK8k,3438,The aerobics instructor has the class switch to a new aerobics move in which the group dances their arms out in front of them and incorporate clapping as they take steps. Their next move,The aerobics instructor has the class switch to a new aerobics move in which the group dances their arms out in front of them and incorporate clapping as they take steps.,Their next move,gold,is moving slightly from the right corner around the screen.,take their turns competing with the instructor while finding a slip of paper.,turns as the teen leave the stage and start jumping in unison and stops to talk to the camera.,is placing their hands up towards the sky as they take a step.\n18519,lsmdc3059_SALT-28784,251,\"Someone waves at her oblivious neighbor. As the young girl shifts her gaze, she\",Someone waves at her oblivious neighbor.,\"As the young girl shifts her gaze, she\",gold,notices the woman outside and returns the wave.,offers him a napkin.,spots a lady at the edge of his bed.,\"sits on a pier, demonstrating the latest skill of little silk gifts.\"\n18520,lsmdc3059_SALT-28784,249,\"Now she reaches a window of a fire escape. Peeking inside, she\",Now she reaches a window of a fire escape.,\"Peeking inside, she\",gold,\"sits on one labeled, dilapidated building.\",sees a young girl in headphones doing homework at a table.,\"closes into the panel, opens her eyes, and looks at the low walls in the distance.\",turns as a cannon starts to shoot.\n18521,lsmdc3059_SALT-28784,250,\"Peeking inside, she sees a young girl in headphones doing homework at a table. Someone\",\"Peeking inside, she sees a young girl in headphones doing homework at a table.\",Someone,gold,wraps her arms around someone and carries him away.,waves at her oblivious neighbor.,makes a call with his mom.,deposits her legs off a stand of laundry and neatly on campus.\n18522,lsmdc3059_SALT-28784,245,As someone leans out the window. He,As someone leans out the window.,He,gold,begun to drift up.,sweeps his gaze over the u - shaped courtyard then looks to the ground roughly ten stories below.,hauls him towards the car.,quietly puts his nose on the hood.\n18523,lsmdc3059_SALT-28784,246,\"He sweeps his gaze over the U - shaped courtyard then looks to the ground roughly ten stories below. Hugging the wall, she\",He sweeps his gaze over the U - shaped courtyard then looks to the ground roughly ten stories below.,\"Hugging the wall, she\",gold,storms out and she paddles away.,runs to the picture.,sidesteps to the next window.,\"finds herself in small, open - paneled salon.\"\n18524,lsmdc3059_SALT-28784,244,She grabs an air conditioning unit and crosses to its other side. As someone,She grabs an air conditioning unit and crosses to its other side.,As someone,gold,steps up the side staircase to the bottom.,leans out the window.,sprints back up the swift rush someone stumbles.,hides in a doorway.\n18525,lsmdc3059_SALT-28784,247,\"Hugging the wall, she sidesteps to the next window. Her toes\",\"Hugging the wall, she sidesteps to the next window.\",Her toes,gold,deftly feeling for its latch.,jerking gracefully submerges near her.,dug into the thread.,clamped on the ground under his shades.\n18526,lsmdc3059_SALT-28784,243,\"On the wall just outside, someone climbs. She\",\"On the wall just outside, someone climbs.\",She,gold,eyes the gun with his gun.,swings his hand and pulls the lock aside.,attention is fixed on the stall.,grabs an air conditioning unit and crosses to its other side.\n18527,lsmdc3059_SALT-28784,248,Her toes deftly feeling for its latch. Now she,Her toes deftly feeling for its latch.,Now she,gold,reaches for the first base positions.,move around into space and into sweeps.,holds up a pack of cigarettes.,reaches a window of a fire escape.\n18528,anetv_mIi5fkvHDAo,9193,The monkey driving the speed boat is shown again. The monkey,The monkey driving the speed boat is shown again.,The monkey,gold,slides a rolling bumper.,circles the steering wheel with the boat moving.,\"jumps, followed by a boat sticking off the pole.\",picks up the item and demonstrates.\n18529,anetv_mIi5fkvHDAo,9192,Another monkey is seen driving a speed boat pulling a skiing monkey. Several people,Another monkey is seen driving a speed boat pulling a skiing monkey.,Several people,gold,are gearing up in the tubes.,walk along on the stilts and jump as when swimming outside and looking off into the distance.,watch and take photos and video from the shore.,are seen flying over town in a tube.\n18530,anetv_mIi5fkvHDAo,9190,A female news anchor is talking about a clip that will be shown. Monkeys,A female news anchor is talking about a clip that will be shown.,Monkeys,gold,talks to the camera while looking into the camera.,sits next to a snowy hill.,is underway and picks up a piece of paper.,are skiing behind a boat in the water.\n18531,anetv_mIi5fkvHDAo,9191,Monkeys are skiing behind a boat in the water. Another monkey,Monkeys are skiing behind a boat in the water.,Another monkey,gold,is shown bent forward trying to stay.,is trapped in a kayak and talking about their experience as they ride through the water.,is seen driving a speed boat pulling a skiing monkey.,is shown over the rafters.\n18532,anetv_mIi5fkvHDAo,9194,The monkey circles the steering wheel with the boat moving. The monkey then,The monkey circles the steering wheel with the boat moving.,The monkey then,gold,\"move all around, water boarding in the air, before a boat is seen down the road.\",lowers the camera over his head as the camera pans around the lone tractor the other side of the road.,hold the rope while the woman talks.,drives the boat to a set of buoys where three people are waiting for him.\n18533,anetv_erevt6avST0,9251,The store front is shown to the door. the man,The store front is shown to the door.,the man,gold,is holding the hose and washing it.,stands in front of a card and does the waves.,is still at the counter talking.,pushes the handle along the slide with more frame.\n18534,anetv_erevt6avST0,9254,The man at the counter is showing a particular gun. A man at the course,The man at the counter is showing a particular gun.,A man at the course,gold,exercising makes shoots out of the machine.,are watching at the table.,is running around aiming and shooting his gun.,gets a pan on his plate.\n18535,anetv_erevt6avST0,9257,The man on the course runs around and shoots. The man at the counter,The man on the course runs around and shoots.,The man at the counter,gold,tosses the ball until he deflected by another team member.,stands in the tracks.,continues to talk with the gun in his hand.,kicks the ball back and forth.\n18536,anetv_erevt6avST0,9253,A man in the course is aiming his gun. The man at the counter,A man in the course is aiming his gun.,The man at the counter,gold,is paying attention to some anything.,is showing a particular gun.,has a large steel that is being shown with a small machine.,pulls her off then climbs in behind a car.\n18537,anetv_erevt6avST0,9258,The man at the counter continues to talk with the gun in his hand. The man at the course,The man at the counter continues to talk with the gun in his hand.,The man at the course,gold,peers around a corner aiming his gun.,picks up the ball and hits it hard of the paddle.,begins to speak using the vine.,moves his rifle and kicks at the cameraman before continuing on the rooftop.\n18538,anetv_erevt6avST0,9256,The man at the counter is still holding the gun talking. The man on the course,The man at the counter is still holding the gun talking.,The man on the course,gold,cheer and waves the other two back.,is seen how to throw the ball before 5 times.,cleans a piece of wood.,runs around and shoots.\n18539,anetv_erevt6avST0,9259,The man at the course peers around a corner aiming his gun. The man at the counter,The man at the course peers around a corner aiming his gun.,The man at the counter,gold,walks out of the restaurant.,is talking and motioning with the gun in his hand.,is pointing at the bar.,picks up a supplies and draws them out.\n18540,anetv_erevt6avST0,9255,A man at the course is running around aiming and shooting his gun. The man at the counter,A man at the course is running around aiming and shooting his gun.,The man at the counter,gold,is still holding the gun talking.,shows how to roll the nest onto the ice.,cuts the man's arm and then hits his target onto the table.,show how to talk to him pursuing and shooting while blocking the long grass.\n18541,anetv_XB139ATiXuk,7043,The composer talks about music and the orchestra behind him. One member,The composer talks about music and the orchestra behind him.,One member,gold,then receives his more applause and continues to face quick gestures.,recovers the performance on the others.,is interview while the man plays tam - tams.,comes out to play the saxophone for a solo as the crowd claps along.\n18542,anetv_XB139ATiXuk,7042,The crowd applauds and smiles. The composer,The crowd applauds and smiles.,The composer,gold,takes it out of the band members.,applauds the woman and kiss.,fight for the host.,talks about music and the orchestra behind him.\n18543,anetv_XB139ATiXuk,7046,The song ends and the crowd applauds thunderously. The saxophonist,The song ends and the crowd applauds thunderously.,The saxophonist,gold,bows and returns to her seat.,passes the camera in their silence.,stands past authority of judges and onlookers.,joins the band on the stage.\n18544,anetv_XB139ATiXuk,7045,The orchestra gradually joins in for a full performance. The song,The orchestra gradually joins in for a full performance.,The song,gold,slows and builds as the crowd joins back in with claps.,ends on the screen.,is over and the music fades.,continues with the drummers begin playing as complete.\n18545,anetv_XB139ATiXuk,7044,One member comes out to play the saxophone for a solo as the crowd claps along. The orchestra,One member comes out to play the saxophone for a solo as the crowd claps along.,The orchestra,gold,plays a song until the match has fun finished.,gradually joins in for a full performance.,continues to play while the band sits in the middle.,change red and the drummer falls into a bass stage and the audience claps.\n18546,anetv_XB139ATiXuk,7041,A well attended classical concert is shown. The composer,A well attended classical concert is shown.,The composer,gold,stop 5 - 7.,fighting against ceiling approaches.,speaks to the audience about music.,continues to dance with the others in each end.\n18547,anetv_xekPSA9h_jg,271,Two people are seen walking around a fooseball table playing. The people,Two people are seen walking around a fooseball table playing.,The people,gold,are shown playing tennis while a crowd watches on the sidelines.,grab the poles and hit the ball around the table.,are playing a game of badminton with one another.,play the game all around and ends by walking away.\n18548,anetv_xekPSA9h_jg,15611,We see two men playing Foosball. The left man,We see two men playing Foosball.,The left man,gold,claps and plays the violin.,throws a shot put.,walks quickly towards people.,has the ball caught and tries to score but fails.\n18549,anetv_xekPSA9h_jg,15612,The left man has the ball caught and tries to score but fails. The man,The left man has the ball caught and tries to score but fails.,The man,gold,keeps talking into the camera.,then takes the ball from one hand to the ground.,throw again and the dog come after him and all.,tries again and fails.\n18550,anetv_xekPSA9h_jg,272,The people grab the poles and hit the ball around the table. They,The people grab the poles and hit the ball around the table.,They,gold,continues to struggle and spin around one another while stopping to speak to the camera.,kick the ball back and forth over the ball.,continue to play with one another.,try to hit balls all over the counter.\n18551,anetv_ksNvNH4fpdo,15100,He moves his arms back and fourth lifting weights. He,He moves his arms back and fourth lifting weights.,He,gold,\"begins starting with the bar with weights, and they both enjoy their transition.\",watches behind him as her performance cuts away.,shows him how the barbell is done and he climbs up again more times and lifts it over his head.,continues to lift the weights and look off into the distance.\n18552,anetv_ksNvNH4fpdo,15099,A man is seen sitting on a piece of exercise equipment. He,A man is seen sitting on a piece of exercise equipment.,He,gold,moves his arms back and fourth lifting weights.,continues climbing onto the bars and leads into several clips of him speaking as well as speaking to the camera.,zips through a large open area and goes behind enters.,talks while moving his working out and looking at a computer board.\n18553,lsmdc1019_Confessions_Of_A_Shopaholic-80814,1753,Two women emerge from the powder room. Someone,Two women emerge from the powder room.,Someone,gold,sprays high - operations windows on a building.,opens a cap pipe.,leap her from across the floor.,dives for the door.\n18554,lsmdc1019_Confessions_Of_A_Shopaholic-80814,1752,\"Someone, her long hair crimped, runs to a side table and tries to stuff a canape into the tear. Two women\",\"Someone, her long hair crimped, runs to a side table and tries to stuff a canape into the tear.\",Two women,gold,emerge from the powder room.,\"are singing, including florence, staring in the next room.\",pose in the open doorway.,seem excited to notice another car.\n18555,lsmdc1019_Confessions_Of_A_Shopaholic-80814,1755,The woman loses her balance. They,The woman loses her balance.,They,gold,girl lifts her legs.,see the pencil on her right leg.,fall into each other's arms.,man enter the room and leans hands on another woman.\n18556,lsmdc1019_Confessions_Of_A_Shopaholic-80814,1754,\"As she comes through to her, a woman is glugging back champagne. Her jacket catches on the door, and beads\",\"As she comes through to her, a woman is glugging back champagne.\",\"Her jacket catches on the door, and beads\",gold,is stamped with pink foam.,fall into a gift.,floats down the shed.,tumble to the floor.\n18557,lsmdc3088_WHATS_YOUR_NUMBER-42306,11857,\"He hops on the couch, then grabs a magazine from a coffee table and starts to read. She\",\"He hops on the couch, then grabs a magazine from a coffee table and starts to read.\",She,gold,flicks the wand with little bits.,drops the cell phone on him and walks out.,returns indoors.,look at it.\n18558,anetv_fFWHlFZEm3M,11993,\"A lot of people are shown on the boat with life vests moving quickly about the ship, and men are frantically pulling at rope. A man and a woman are now sweeping the area where the boat was hit and another man\",\"A lot of people are shown on the boat with life vests moving quickly about the ship, and men are frantically pulling at rope.\",A man and a woman are now sweeping the area where the boat was hit and another man,gold,tips briefly when the boat is in there to reveal other people kayaking on the facility.,appears taking another picture.,is helping to pick up broken pieces.,is riding with a shovel.\n18559,anetv_fFWHlFZEm3M,11992,\"A humongous red, black and white ship is shown on the water, then a smaller ship is shown quickly approaching the boat that is filming and suddenly it crashes into the boat and it has black smoke coming from the top of it. A lot of people are shown on the boat with life vests moving quickly about the ship, and men\",\"A humongous red, black and white ship is shown on the water, then a smaller ship is shown quickly approaching the boat that is filming and suddenly it crashes into the boat and it has black smoke coming from the top of it.\",\"A lot of people are shown on the boat with life vests moving quickly about the ship, and men\",gold,are frantically pulling at rope.,are vacuuming the water like a steaming balloon.,are water sailing in the glasses next to the ocean.,commenting on the impulse of pays as the executives are sitting outside one of the tables.\n18560,anetv_22n4w0uferc,12956,\"The man is now sharpening the edges of a file then begins to scrape the skis, then finishes up by ironing it with different clothes between the iron and skis. The outro screen appears and it's the exact picture like the intro but the words now say Checkout our video Scraping & Brushing and it also\",\"The man is now sharpening the edges of a file then begins to scrape the skis, then finishes up by ironing it with different clothes between the iron and skis.\",The outro screen appears and it's the exact picture like the intro but the words now say Checkout our video Scraping & Brushing and it also,gold,includes a man polo and turn on sidewalks and begins to be demonstrating how to do tai chi.,includes the company logo.,windsurfers to other skaters who are shirtless.,ends with the nail company.\n18561,anetv_8z29qtUWwdU,17335,He then glides the knife down the sharpener and shows how other knives work with different sharpeners. He,He then glides the knife down the sharpener and shows how other knives work with different sharpeners.,He,gold,turns around the block before turning to the camera and smiling.,uses the power blade to push various water to different pieces and stops the chair when he is done.,presents the knife one last time while still speaking to the camera.,cuts the wax and completes the blade he uses.\n18562,lsmdc1010_TITANIC-76956,15211,The remains of a wooden bed lie collapsed on the floor. Another eel,The remains of a wooden bed lie collapsed on the floor.,Another eel,gold,lies across the bed in the burning bedroom.,\"pushes at it, knocking a door across.\",swims past a porcelain bathtub.,knocks back but someone pokes out.\n18563,lsmdc1010_TITANIC-76956,15209,One of the robotic explorer shines its lights on the rotted remains of a grand piano. Someone,One of the robotic explorer shines its lights on the rotted remains of a grand piano.,Someone,gold,puts his keys still on the desk.,grasps the rider's back.,glides into a room.,puts someone into the wooden bar.\n18564,lsmdc1010_TITANIC-76956,15210,Someone glides into a room. The remains of a wooden bed lie,Someone glides into a room.,The remains of a wooden bed lie,gold,on the ground where people lie hitting the floor below.,\"in the darkness, staring dumbly at someone as he can't say what.\",featuring two people in the room.,collapsed on the floor.\n18565,anetv_M0sa3xWhFGo,2943,A group of cheerleaders are seen yelling to an audience. They,A group of cheerleaders are seen yelling to an audience.,They,gold,hold each speaking to the people.,continue playing on stage while the crowd claps for them.,then perform a karate routine with one another and people watch him.,begin performing a routine by lifting one another and jumping around.\n18566,anetv_M0sa3xWhFGo,2944,They begin performing a routine by lifting one another and jumping around. The girls,They begin performing a routine by lifting one another and jumping around.,The girls,gold,continue with their cheer leading routine and ends with them walking off stage and hugging.,begins doing dance routine as well as many people holding their cover and trying to dance.,perform their dance routine as well as jumping off into the end.,continue to run around and frame each other and one boy attempts to throw the ball.\n18567,anetv_M0sa3xWhFGo,5357,\"A cheerleading team in teal, navy and white dance around a field in front of several girls and red and in pink tank tops. After milling around for a few minutes in a couple of clusters and talking with each other, they\",\"A cheerleading team in teal, navy and white dance around a field in front of several girls and red and in pink tank tops.\",\"After milling around for a few minutes in a couple of clusters and talking with each other, they\",gold,begin dancing in unison.,lie and sing and play camera underwater.,return to the wallpaper across the wall covering trees.,get into formation and do some of their routines.\n18568,anetv_M0sa3xWhFGo,5358,\"After milling around for a few minutes in a couple of clusters and talking with each other, they get into formation and do some of their routines. They\",\"After milling around for a few minutes in a couple of clusters and talking with each other, they get into formation and do some of their routines.\",They,gold,shuffle the of their heads while making greetings.,finish their final put one as well as the match continues.,\"seem to end with their impressive human pyramid, several girls on top of each other's shoulders.\",go down a hill all towards a windsurfer.\n18569,anetv_U0jlI70N_DQ,17703,One of the girls gets the ball and makes a shot into the net as the crowd cheers. The game resets and the teams,One of the girls gets the ball and makes a shot into the net as the crowd cheers.,The game resets and the teams,gold,begin to play again.,stick the ball down the lane again.,resumes watching the game.,begins on the game again with the same team.\n18570,anetv_U0jlI70N_DQ,17702,Several kids are in a pool playing a game of water polo. One of the girls,Several kids are in a pool playing a game of water polo.,One of the girls,gold,gets the ball and makes a shot into the net as the crowd cheers.,falls into the water tank and underwear race and falls over onto the beach.,is swinging back and forth.,steps up to the girl.\n18571,anetv_KgONRjXP8_Y,196,A person dips a paint brush into a pan. They,A person dips a paint brush into a pan.,They,gold,grab a paintbrush and paints them on the slide.,spray the wood with a paint brush.,use a sprayer to clean the sink.,use the brush to paint the side of a table.\n18572,anetv_KgONRjXP8_Y,197,They use the brush to paint the side of a table. They,They use the brush to paint the side of a table.,They,gold,are shown how to use paint as the credits of the video are shown.,bush cutting the paper with a brush.,wipe the snow off their windshield.,\"use large strokes, continuing to paint.\"\n18573,anetv_x-WGuz3_2Fc,2950,A man is seen speaking to the camera while peeling potatoes and looking to the camera. The camera,A man is seen speaking to the camera while peeling potatoes and looking to the camera.,The camera,gold,pans all around him as they continue cutting and cutting around one another.,watches in the end while the camera pans to the side.,pans around the man continuously as he continues to peel the potatoes and speak.,pans around the cars then zooms in on the car.\n18574,anetv_NzrOOXRyDPM,16578,The bull knocks a man over and another man pulls the bull off the man. A bunch of men,The bull knocks a man over and another man pulls the bull off the man.,A bunch of men,gold,are standing at the bottom of the sink trying to throw dog.,are holbrooks in the yard using scissors to get the bull out.,hold the bull as a man gets on it's back and falls off.,\"loop open, watching the kids, readying their guns.\"\n18575,anetv_NzrOOXRyDPM,5723,Several matadors use capes and try to ward off the bull. The bull,Several matadors use capes and try to ward off the bull.,The bull,gold,tries properly hit the field several times.,walks away from them while they chase him.,rushes over the shirt and shakes the sumo to him.,throws the cattle farmer.\n18576,anetv_NzrOOXRyDPM,16579,A bunch of men hold the bull as a man gets on it's back and falls off. The crowd claps and we,A bunch of men hold the bull as a man gets on it's back and falls off.,The crowd claps and we,gold,see a man hold the flag and drop it.,see the shorter running again.,see names scroll across the screen.,see the news suit running on it.\n18577,anetv_NzrOOXRyDPM,5722,A bull runs onto a field. Several matadors,A bull runs onto a field.,Several matadors,gold,stand on a field and hiding into a jog.,\"are in the same room in a ring holding fort fires, laying bulls.\",use capes and try to ward off the bull.,run in the street to distract the bull.\n18578,anetv_NzrOOXRyDPM,16575,We see an opening title screen. We,We see an opening title screen.,We,gold,see another raft and kayak.,see a man and a man walk away.,see men in a ring bullfighting.,see a couple being interviewed.\n18579,anetv_NzrOOXRyDPM,16576,We see men in a ring bullfighting. A man,We see men in a ring bullfighting.,A man,gold,walks in first samurai holding a hula hoop.,in black serves.,skiing in the night gets hit with several cars.,runs out in padding and is trampled by the bull.\n18580,anetv_NzrOOXRyDPM,16577,A man runs out in padding and is trampled by the bull. The bull knocks a man over and another man,A man runs out in padding and is trampled by the bull.,The bull knocks a man over and another man,gold,pulls the bull off the man.,climbs pull up and being dragged away.,comes again.,gives the players all shot.\n18581,anetv_4CRacVTadPQ,1190,She then lifts the bucket out of the room. She,She then lifts the bucket out of the room.,She,gold,pushes the mop gently across the floor and roof.,repeats it over two times.,starts mopping the tile on the floor.,puts a black towel over her face.\n18582,anetv_4CRacVTadPQ,1188,She opens the bottle and pours it into a bucket on the ground. She,She opens the bottle and pours it into a bucket on the ground.,She,gold,puts a mop rag into the bucket and puts it on her mop.,looks back and then drinks from the glass when they are gone.,takes the cake from the box and places it in the woman.,puts the lemonade bottle in a glass and places it on the ice in front of her.\n18583,anetv_4CRacVTadPQ,1187,A woman in a yellow shirt is holding a bottle in her hand. She,A woman in a yellow shirt is holding a bottle in her hand.,She,gold,puts a black coat over her shoes.,walks onto the sidewalk and faces into the house.,smokes the cigarette and takes the puff of the hookah in her mouth.,opens the bottle and pours it into a bucket on the ground.\n18584,anetv_4CRacVTadPQ,1189,She puts a mop rag into the bucket and puts it on her mop. She then,She puts a mop rag into the bucket and puts it on her mop.,She then,gold,lifts the bucket out of the room.,shows several different ways to use the mop to clean it.,\"scrubs the sides with the rag, wipes it down and pours down to the sink.\",\"scrubs the hardwood floor with the mop, then continues patiently on the mopping.\"\n18585,anetv_uUzmPV8Vgqg,15644,A woman in track pants and her daughters wash a small dog with soap and water in a bucket on a patio. A woman,A woman in track pants and her daughters wash a small dog with soap and water in a bucket on a patio.,A woman,gold,uses a cup to pour water on the dog to remove the soap.,grabs a red shirt and fur on the cutting tape they put on.,carries the banquette through a blue corridor while another person jumps in the water next to a stairwell.,peels clothes and soap while pretending are mopping a living room while she is washing the dog.\n18586,anetv_1SouLWwpbvU,16888,\"Midway through, the instructor gets off and walks around while the rest of the class continues. After, the grab the stair step, place it against the wall and\",\"Midway through, the instructor gets off and walks around while the rest of the class continues.\",\"After, the grab the stair step, place it against the wall and\",gold,continue using the rope until clouds are coming.,come back to their spots for the remainder of the workout.,\"continue it, after a pause until the window and the bedroom wall into place.\",\"make a sharp turn, until have passed.\"\n18587,anetv_1SouLWwpbvU,16887,\"They then turn around and start to dance on the stair step and intensifying the workout. Midway through, the instructor\",They then turn around and start to dance on the stair step and intensifying the workout.,\"Midway through, the instructor\",gold,trails short shorts to the other side of the platform as it does a routine.,gets off and walks around while the rest of the class continues.,comes up and stops the race ends.,begins to exercise as she stretches to get under the beam and slides to the bottom.\n18588,anetv_1ebIpLiTCvw,4021,A woman is seen speaking to the camera while a dog moves in and out of frame. Two pieces of bread,A woman is seen speaking to the camera while a dog moves in and out of frame.,Two pieces of bread,gold,is shown being scrubbed up followed by an older person riding the dogs.,holds a close up.,are shown holding up a dog and speaking to the camera.,are shown with ingredients on top and the woman wrapping them up.\n18589,anetv_1ebIpLiTCvw,14351,A woman is sitting in a chair talking. A small tan dog,A woman is sitting in a chair talking.,A small tan dog,gold,\"is walking on a leash, peeled and securely on her back.\",is shown playing with.,is walking on the ground behind her.,is sitting on the bath.\n18590,anetv_1ebIpLiTCvw,14353,A person is making a sandwich on tin foil. They,A person is making a sandwich on tin foil.,They,gold,peel lemons to the stove.,wrap the sandwich up and put it in a bag.,put that in saran wrap and roll out a toy bowl.,keep up hands and explain the metal omelette.\n18591,anetv_1ebIpLiTCvw,14354,They wrap the sandwich up and put it in a bag. They,They wrap the sandwich up and put it in a bag.,They,gold,are driving their car around giving people the food.,lift the whole congregation and walk away into the crowd.,\"read the bread, and add the bacon.\",wrap a sandwich and then split up together.\n18592,anetv_1ebIpLiTCvw,4022,Two pieces of bread are shown with ingredients on top and the woman wrapping them up. She,Two pieces of bread are shown with ingredients on top and the woman wrapping them up.,She,gold,is brown with the product.,ties grated cellophane cream out of the dough and put it in a box.,shows off several bags of lunches and made and finally drives around and area giving homeless people the bags.,is pulling the wrapping paper on a piece of paper.\n18593,anetv_kCOMyIb7f0Q,16874,People are skiing in doors in between each other. A button,People are skiing in doors in between each other.,A button,gold,lifts the fourth bottles.,is pushed on a machine.,is put in a black track suit.,goes down the hill on the other.\n18594,anetv_kCOMyIb7f0Q,16876,People walk into a cabin. A person,People walk into a cabin.,A person,gold,is laying down tubing on the beach.,sets a kit in the font of the mop head.,is racing the dirt between cars.,is trying on skis.\n18595,anetv_kCOMyIb7f0Q,16877,A person is trying on skis. Other people,A person is trying on skis.,Other people,gold,are leading by row canoes where they are talking.,are practicing skiing on a motor belt.,do water skiing on an overturned tank.,are watching people heading across the building.\n18596,lsmdc3015_CHARLIE_ST_CLOUD-676,841,Someone looks back and forth between his mother and brother. Their mother,Someone looks back and forth between his mother and brother.,Their mother,gold,gazes wistfully out her window.,looks down at the grin.,and baby share their laughter.,follows in his sped - up driveway.\n18597,lsmdc3015_CHARLIE_ST_CLOUD-676,842,Their mother gazes wistfully out her window. They,Their mother gazes wistfully out her window.,They,gold,see a wedding viewfinder.,dress her neck and hands.,talks with both men.,watch parents enter a school.\n18598,lsmdc3015_CHARLIE_ST_CLOUD-676,843,They watch parents enter a school. She,They watch parents enter a school.,She,gold,tugs at her cardigan.,displays at the laptop without bumping construction workers.,uses a curly - brown brush.,\"hurries behind, but heads down the door where her bench staffer goes.\"\n18599,lsmdc3015_CHARLIE_ST_CLOUD-676,844,\"At the podium, someone's sailing partner elbows her. Now, in a lobby, someone\",\"At the podium, someone's sailing partner elbows her.\",\"Now, in a lobby, someone\",gold,drives through a bowling alley.,adjusts someone's tie.,dances in her bathroom with her colleague.,finds someone sitting at a desk.\n18600,anetv_QsRW8dj-F7M,11820,A mascot is seen running around a field as the camera pans around a large audience. Several mascots,A mascot is seen running around a field as the camera pans around a large audience.,Several mascots,gold,are shown with jerseys being showcased and lead into the castles afterwards.,stands on the field and begins to cheer with the pucks and be thrown off afterwards.,are seen holing sticks on a field walking around one another and leads into them chasing a ball.,walk around and arguing with one another as well as interact against each other.\n18601,anetv_q4FZTmaqEx8,12824,A man is seen speaking to the camera and begins kneeling down on a roof. The man then,A man is seen speaking to the camera and begins kneeling down on a roof.,The man then,gold,throws his arms up in the air and throws his arms down into the air.,use a tool to scrape off tiles on the roof as well as another tool to put them back down.,bends down to lift the weight.,lays down a bike while looking down.\n18602,anetv_q4FZTmaqEx8,12825,The man then use a tool to scrape off tiles on the roof as well as another tool to put them back down. The man,The man then use a tool to scrape off tiles on the roof as well as another tool to put them back down.,The man,gold,continues taking off tiles on the roof and gluing others down and ends by smiling to the camera.,continues cleaning the roof of the truck and opens the the window before cleaning back into the end.,continues to get the snow off his top as well as blowing leaves out of the way.,continues speaking while showing off the bag areas and shows more effects.\n18603,anetv_wU-8acM-IUM,16920,He is playing a golden saxophone. He,He is playing a golden saxophone.,He,gold,self - consciously eyes his number.,is then shown talking about the instrument.,starts playing in the palms of people.,is playing casually and drums with a dog.\n18604,anetv_wU-8acM-IUM,2506,The man is sitting with the saxophone talking. the man then,The man is sitting with the saxophone talking.,the man then,gold,plays the saxophone while sitting.,throws the flute down high on his lap.,picks up the hand cup.,plays the guitar for awhile.\n18605,anetv_wU-8acM-IUM,2507,The man then plays the saxophone while sitting. the man,The man then plays the saxophone while sitting.,the man,gold,continues playing after the large object.,continues located in front.,uses an electric guitar to look to the camera.,talks points to parts of the saxophone.\n18606,anetv_wU-8acM-IUM,2508,The man talks points to parts of the saxophone. the man,The man talks points to parts of the saxophone.,the man,gold,fades to robots performing a retreat.,talks to the camera and vigorously bows and moves around.,lifts his arm and leans forward while some drummer watch him.,continues to talk and play the saxophone on and off.\n18607,anetv_zpBZ7HMNO34,13069,When finish she take off the elliptical and push it very easily. woman,When finish she take off the elliptical and push it very easily.,woman,gold,grabs another rolled from side to side and continues washing dishes.,is doing exercise in a living room in front of a white couch.,continues explaining on how to use the arm to make the second move.,reaches around and grabs them on the leg.\n18608,anetv_zpBZ7HMNO34,6321,A woman is riding on an eliiptical as advertisements for the equipment flash across the screen. She,A woman is riding on an eliiptical as advertisements for the equipment flash across the screen.,She,gold,\"uses the trainer from multiple angels, pushing and pulling while pedaling.\",forces a flip shut save by her extended victory.,s playing pool with a lot of people seated and sitting down.,runs down a low floor through the rapid water in the city.\n18609,anetv_zpBZ7HMNO34,13068,Woman is in a living room doing exercise in a elliptical machine. when finish she,Woman is in a living room doing exercise in a elliptical machine.,when finish she,gold,take off the elliptical and push it very easily.,gets off the bars and kneel down with another man.,is singing for awhile and a bottle of methods are use.,stops moving in the kitchen.\n18610,anetv_-rCYwovSK4s,17714,A man is shown attempting several hammer throws in a practice arena while. Other people,A man is shown attempting several hammer throws in a practice arena while.,Other people,gold,are seen canoes with many men watching on a side.,come and go in the background as the man performs his hammer throws.,watch as the arts crowd watches.,are shown hitting the balls up the hallway and spinning all around.\n18611,anetv_-rCYwovSK4s,6850,\"A man in yellow shirt and black tights is standing in a circle that is placed in the center of a small court that is surrounded by green net. The young man started to swirl the hammer throw, up and down then let it go, the hammer throw\",A man in yellow shirt and black tights is standing in a circle that is placed in the center of a small court that is surrounded by green net.,\"The young man started to swirl the hammer throw, up and down then let it go, the hammer throw\",gold,hit the makeshift wall made of plastic and tarp.,splits a bit and but then went back and is beginning to blasted out of the bottom.,proceeds to slow down several times.,lay on the floor.\n18612,anetv_-rCYwovSK4s,17715,Other people come and go in the background as the man performs his hammer throws. The video,Other people come and go in the background as the man performs his hammer throws.,The video,gold,\"ends with the man still in his hat, then the woman in the hat setting the scene to twinkling city lights.\",\"continues as he performs some karate tricks during several clips together, hitting a ball.\",shows several participants as a group of girls are shown standing on a second board.,ends with the closing captions shown on the screen.\n18613,anetv_-rCYwovSK4s,17713,An introduction comes onto the screen for a video about a hammer throw. A man,An introduction comes onto the screen for a video about a hammer throw.,A man,gold,is seen talking to the camera with various techniques and posing after being out on a wheelie and still smoking.,is playing a game of badminton on the grass.,begins to solve the cube as the other fans try to solve the discus.,is shown attempting several hammer throws in a practice arena while.\n18614,anetv_w2HnFjJei7k,18481,A man is standing inside a small room. He,A man is standing inside a small room.,He,gold,holds out another and is hanging up a bag on his shoulders.,is drinking from a bottle with a blue substance.,\"is in pain a little workout, machine pump hand weightlifting.\",is being put on a drum set for a second and exercise.\n18615,anetv_w2HnFjJei7k,15822,The man brings the bottle closer to his mouth and laughs some more and then pours the liquid from the small bottle onto his mouth and begins to gargle until bubbles come out of his mouth. The man then,The man brings the bottle closer to his mouth and laughs some more and then pours the liquid from the small bottle onto his mouth and begins to gargle until bubbles come out of his mouth.,The man then,gold,\"follows the man to the woman drinking the drink, showing off the mouth of mouthwash and mixes it all with a liquid.\",quickly leans forward and spits it all out of his mouth.,laughs and smiles at the camera as well as the rocks hoping and still laughing.,puts his hand on the end of a napkin and brushes the moist vinegar all over the brush until he tastes it.\n18616,anetv_w2HnFjJei7k,18482,He is drinking from a bottle with a blue substance. He,He is drinking from a bottle with a blue substance.,He,gold,puts the ice cream around his finger.,lifts him onto a stool with a drum and continues to play.,\"swishes it in his mouth, then spits it out making bubbles.\",continues playing another handful of the times he has brought water to tip.\n18617,anetv_Amnp8434e90,8593,Various shots of windersurfers are shown on a large body of water with several people swimming off in the distance. The wake boarders,Various shots of windersurfers are shown on a large body of water with several people swimming off in the distance.,The wake boarders,gold,are shown as well as the boat tools on the shore.,are seen as well as diving into each other in a swimming pool.,are shown with two people in the background watching him from the shore.,ride back and fourth past each other and perform several tricks.\n18618,lsmdc3046_LARRY_CROWNE-21499,7820,\"She gives a disappointed nod. With her eyes averted, she\",She gives a disappointed nod.,\"With her eyes averted, she\",gold,finds a clear shirt on top of the closet and pulls out the garment.,grabs her bag off the table and strides to the back of the classroom.,\"shakes her head filed, then turns to her colleague.\",turns the gun back to meet her.\n18619,lsmdc3046_LARRY_CROWNE-21499,7821,\"With her eyes averted, she grabs her bag off the table and strides to the back of the classroom. The students\",\"With her eyes averted, she grabs her bag off the table and strides to the back of the classroom.\",The students,gold,gawk on the table as someone talks.,\"walk together against the ground, as she rises to leave with smiling a basket of papers.\",watch as the professor exits.,sit up with their heads viewing.\n18620,lsmdc3046_LARRY_CROWNE-21499,7819,He lifts his brow at the unresponsive students. She,He lifts his brow at the unresponsive students.,She,gold,gives a disappointed nod.,\"heads closer, at someone, someone shifts his gaze to someone.\",gives a wounded nod.,lifts his sweaty brow.\n18621,lsmdc3023_DISTRICT_9-11223,16805,\"Meanwhile, the robot jumps over a car. As the mercenaries fire, someone\",\"Meanwhile, the robot jumps over a car.\",\"As the mercenaries fire, someone\",gold,spots someone faces someone.,uses a piece of metal as a shield.,and egg watch his hostage.,fires a web spun around him.\n18622,lsmdc3023_DISTRICT_9-11223,16806,Mercenaries' bodies go limp. The sniper,Mercenaries' bodies go limp.,The sniper,gold,knocks the wrestler forward.,is tower - only.,cocks his rifle and steers fixedly into its sight.,says: decide gun.\n18623,lsmdc1010_TITANIC-77025,10303,Inside a saloon with a view of the Titanic men smoke and drink as they play a game of cards. A brown haired card player,Inside a saloon with a view of the Titanic men smoke and drink as they play a game of cards.,A brown haired card player,gold,\"rests against someone's back, revealing another eagle.\",\"appears on the same line, which is only six yards away.\",turns to a man beside him.,goes out to the two tickets in the hand.\n18624,lsmdc1010_TITANIC-77025,10308,Someone lays down his cards. Someone,Someone lays down his cards.,Someone,gold,snatches the tickets and dances.,\"watches his eyes, his chest heaving.\",adds the same black picture album.,reads bible verses on someone's story.\n18625,lsmdc1010_TITANIC-77025,10311,\"Someone quickly sweeps the winnings into someone's cap. Later, the two young men\",Someone quickly sweeps the winnings into someone's cap.,\"Later, the two young men\",gold,hike into each other's arms and release their descent.,face someone who inserts the barrage.,run along the dock.,walk out of the school.\n18626,lsmdc1010_TITANIC-77025,10314,\"Hundreds of passengers wave to the people on the dock below as tugboats pulled the Titanic away from the shore. Turning up clouds of silt, on the dock, a bearded man\",Hundreds of passengers wave to the people on the dock below as tugboats pulled the Titanic away from the shore.,\"Turning up clouds of silt, on the dock, a bearded man\",gold,watches him through his window.,settles in and peers into the gap.,turns a crank on a movie camera as the ship glides forward.,peers into the house.\n18627,lsmdc1010_TITANIC-77025,10305,\"Blonde someone deals someone another card and then exchanges one of his own for a card from the deck. Eyes narrowed, someone\",Blonde someone deals someone another card and then exchanges one of his own for a card from the deck.,\"Eyes narrowed, someone\",gold,gives someone a warm nod.,stares down at his reflection in the mirror as someone sways his head across the front leg.,steps up to the plinth and removes his pants.,smokes a cigarette as he peers across the table to someone's partner.\n18628,lsmdc1010_TITANIC-77025,10306,\"Eyes narrowed, someone smokes a cigarette as he peers across the table to someone's partner. A black haired man\",\"Eyes narrowed, someone smokes a cigarette as he peers across the table to someone's partner.\",A black haired man,gold,races toward someone and passes her.,records an intervention program.,brings a potatoes to him.,raps his knuckles on the table.\n18629,lsmdc1010_TITANIC-77025,10317,\"In her cabin, someone unpacks a painting. A porter\",\"In her cabin, someone unpacks a painting.\",A porter,gold,takes out her red paper shoe and writes.,takes a picture from her friends.,is on a tight pupil metal screen.,carries in a pair of suitcases as someone enters from the adjoining promenade deck.\n18630,lsmdc1010_TITANIC-77025,10307,A black haired man raps his knuckles on the table. Someone,A black haired man raps his knuckles on the table.,Someone,gold,turns on his phone.,\"turns slowly away to someone, who sits next to him on the table.\",lays down his cards.,\"poses, playing with his heavyset friend.\"\n18631,lsmdc1010_TITANIC-77025,10304,A brown haired card player turns to a man beside him. Blonde someone,A brown haired card player turns to a man beside him.,Blonde someone,gold,stretches his shirt under his hat and lowers the camera slowly.,deals someone another card and then exchanges one of his own for a card from the deck.,\"hands her cash to him, which contains a negative album.\",watches someone pass on the young blonde in the opposite direction.\n18632,lsmdc1010_TITANIC-77025,10316,White seagulls appear no larger than insects as they flutter past the Titanic's massive crowd. People,White seagulls appear no larger than insects as they flutter past the Titanic's massive crowd.,People,gold,pass in the opposite direction.,\"throw survivors on horseback, land for mission, welcome to osgiliath.\",\"storms off, leaving someone alone and with every squat.\",\"climbs out of the shelter, objects to someone who engulfs it with a shawl then hangs up on a railing.\"\n18633,lsmdc1010_TITANIC-77025,10310,Someone kisses the tickets and hugs someone as someone throttles someone. Someone,Someone kisses the tickets and hugs someone as someone throttles someone.,Someone,gold,sits at her desk as someone flips through various paperwork.,\"glances his way, then goes in and presses a button.\",quickly sweeps the winnings into someone's cap.,comes into the shot.\n18634,lsmdc1010_TITANIC-77025,10312,\"Later, the two young men run along the dock. People\",\"Later, the two young men run along the dock.\",People,gold,fly off the boat then disappear into the ocean.,join someone out of the way he scans the rehearsal.,\"see someone, who is looking at a photograph.\",run up a gangplank.\n18635,lsmdc1010_TITANIC-77025,10315,\"Turning up clouds of silt, on the dock, a bearded man turns a crank on a movie camera as the ship glides forward. White seagulls\",\"Turning up clouds of silt, on the dock, a bearded man turns a crank on a movie camera as the ship glides forward.\",White seagulls,gold,\"float from the top of the motors, creating smoke as it winds down around them.\",fly through white that seemingly 2013 - grade.,\"fly through the sky, illuminating the night sky.\",appear no larger than insects as they flutter past the titanic's massive crowd.\n18636,anetv_o2hmponBzIE,7207,A small group of girls wearing costumes are seen walking out onto a gym floor and holding a pose in front of a large audience. The girls,A small group of girls wearing costumes are seen walking out onto a gym floor and holding a pose in front of a large audience.,The girls,gold,perform a dance routine with batons in their hand and end by lining up and walking away.,then pose while she walks on her arms and leads into people dancing and performing tricks in a bar and dancing to the camera.,move their baton and point while a circle and circle one balancing a pose as pictures.,are playing instruments on the floor.\n18637,anetv_LZ-Cy0GqCiU,2633,Once again the bull charges the man and knocks him down. People,Once again the bull charges the man and knocks him down.,People,gold,come out and distract the bull.,\"kick and kick at each other, people, and other boys start out.\",miss each other and fall on top of the boy.,falls down the slide and come up against the wall while still kneeling.\n18638,anetv_LZ-Cy0GqCiU,2632,He is carried off out of the ring. Once again the bull,He is carried off out of the ring.,Once again the bull,gold,charges the man and knocks him down.,tries to run through the undergrowth.,is attacked at once.,is shown up into the air.\n18639,anetv_LZ-Cy0GqCiU,2631,He gets knocked around again until people come out to distract the bull. He,He gets knocked around again until people come out to distract the bull.,He,gold,is carried off out of the ring.,appears and more people get in - war penalty with at the top of the stairs.,speeds after someone as they scramble from the shore.,finishes and tosses the rope as he walks around the room.\n18640,anetv_LZ-Cy0GqCiU,2630,It cuts to the man again being charged by the bull. He,It cuts to the man again being charged by the bull.,He,gold,gets knocked around again until people come out to distract the bull.,\"chases, then continues to show him speaking to the camera while cutting sticks.\",\"is carrying a skateboard, and he is concentrating hard on the combination bars with different pins set on his face.\",lathers his head with both arms and attempts to smile and jump down.\n18641,anetv_LZ-Cy0GqCiU,2628,A photo is zoomed in on of a man being gored by a bull. A bull,A photo is zoomed in on of a man being gored by a bull.,A bull,gold,runs around a bull.,kicks a man in the forehead while the bull stabs them.,smashes a bull down a man's shoulder.,charges a man and knocks him around until people come out and distract him.\n18642,anetv_LZ-Cy0GqCiU,2629,A bull charges a man and knocks him around until people come out and distract him. It,A bull charges a man and knocks him around until people come out and distract him.,It,gold,help him to help him.,\"races down the adjacent stairs, and splits by half of the break.\",\"avoids him off at the end of a strike, but talking about what he told him.\",cuts to the man again being charged by the bull.\n18643,anetv_LZ-Cy0GqCiU,2634,People come out and distract the bull. He,People come out and distract the bull.,He,gold,punches her across the face.,is carried out for a last time.,continues getting his names on the street from the bull.,backs the clown from the pinata.\n18644,anetv_n9teiB6FW84,4126,A person is seen riding along a bike trail while a person wearing a camera following from behind. More clips,A person is seen riding along a bike trail while a person wearing a camera following from behind.,More clips,gold,are shown of people doing skateboards on the beach as well as standing by their side and end by credits.,are shown riding on a person riding in the water as well as people riding across.,\"are shown of a newscaster speaking to the camera near him, interspersed with clips of kids and clips.\",are shown of people riding bikes along the trail while the camera captures it from several angles.\n18645,anetv_V1AqyQ3qaQY,4954,He loads an arrow in the bow. He,He loads an arrow in the bow.,He,gold,\"pulls out his pistol, gapes at it, and gives it a couple of shove.\",puts one on a barrel.,\"shoots the arrow at a ceramic cat, knocking it into the water before moving on to other targets.\",is very pleased with it.\n18646,anetv_V1AqyQ3qaQY,4953,A man is standing next to a pond. He,A man is standing next to a pond.,He,gold,starts drinking a beer with a sponge.,walks up to a sink to make a sink.,is in the water above the water.,loads an arrow in the bow.\n18647,anetv_lBfyQsXSvUk,8104,He is getting a tattoo on his arm. A man,He is getting a tattoo on his arm.,A man,gold,is welding something in his tube.,watches him get the tattoo.,in white stands behind him.,is sitting on a tube next to him on a couch.\n18648,anetv_lBfyQsXSvUk,8103,A man is sitting in a chair. He,A man is sitting in a chair.,He,gold,is spinning in a plastic cube.,shows how to tie a chair.,is getting a tattoo on his arm.,is holding a microphone next to a drum.\n18649,anetv_lBfyQsXSvUk,8105,A man watches him get the tattoo. He,A man watches him get the tattoo.,He,gold,clears in the middle and a man in a protective coat talks in the bedroom talking about real objects.,slows and lands on his back.,holds up the carpet and slides it upward.,gets his tattoo wraps with saran wrap.\n18650,lsmdc0033_Amadeus-67077,1583,\"We do not hear what he is saying to someone, who still sits writing assiduously. Someone is looking very sick: sweat\",\"We do not hear what he is saying to someone, who still sits writing assiduously.\",Someone is looking very sick: sweat,gold,mark on his bruised face.,gives way to his knee.,is pouring from his forehead.,pinned to his collar.\n18651,anetv_VDYSVR0HbpM,3746,Text intro and credits are shown. A number of individuals,Text intro and credits are shown.,A number of individuals,gold,are used in extend in a competition.,are shown dancing ballet style in various environments.,\"are shown surfing on side on the ocean, interspersed with clips of kids playing soccer.\",stand on the ground holding sticks and a person in a swimsuit in the sky.\n18652,anetv_VDYSVR0HbpM,12830,Several ballerinas dance outside on the concrete. They,Several ballerinas dance outside on the concrete.,They,gold,continue dancing around the room.,are shown dancing in several locations.,begin playing the drums with a green light.,see a man in the sand.\n18653,anetv_VDYSVR0HbpM,12831,They are shown dancing in several locations. They,They are shown dancing in several locations.,They,gold,go along the misty way.,are wearing multicolored outfits.,embrace a woman in the living room.,are at the water they start to clear.\n18654,anetv_VDYSVR0HbpM,3747,A number of individuals are shown dancing ballet style in various environments. A static logo,A number of individuals are shown dancing ballet style in various environments.,A static logo,gold,appears on screen displaying the footage of the justin.,is shown with contact and subscribe buttons.,poses in the middle of the screen followed by women dancing and dancing.,appears on screen followed by graphics with a logo.\n18655,lsmdc3063_SOUL_SURFER-31357,8173,\"Someone stops paddling and sits up, peering through narrowed eyes at the rolling water. She\",\"Someone stops paddling and sits up, peering through narrowed eyes at the rolling water.\",She,gold,stands nestled near two stacked portraits on the top of the road.,caresses the ocean's surface with her hand.,ducks behind a shelving board.,guides him to the bathroom.\n18656,lsmdc3063_SOUL_SURFER-31357,8176,A few yards ahead a wave appears and quickly swells. Someone,A few yards ahead a wave appears and quickly swells.,Someone,gold,keeps his grip on the pole as people fight.,smiles to herself and paddles toward it.,lingers under a long floral mattress.,covers a bottle of water with both hands.\n18657,lsmdc3063_SOUL_SURFER-31357,8175,\"From underwater, we peer up at it through dappled rays of sunlight. A few yards ahead a wave\",\"From underwater, we peer up at it through dappled rays of sunlight.\",A few yards ahead a wave,gold,catches the same moon.,poses a wave as it rises.,dies beneath a cresting wave.,appears and quickly swells.\n18658,lsmdc3063_SOUL_SURFER-31357,8174,\"She caresses the ocean's surface with her hand. From underwater, we\",She caresses the ocean's surface with her hand.,\"From underwater, we\",gold,peer up at it through dappled rays of sunlight.,see someone's reflection in the darkness.,see them on the open floor.,watch the fishing boat crash against the eiffel's sea.\n18659,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93498,196,\"Reaching the Gryffindor table, someone stops beside people. They\",\"Reaching the Gryffindor table, someone stops beside people.\",They,gold,\"look through the window: someone stands alone in a exam room, clutching the phone cradled under her ear, watching the mohawked guy\",smile up at him.,stride towards her father in the doorway.,\"goes over to someone, someone in the kitchen, closes his eyes and pushes the counter aside.\"\n18660,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93498,193,\"At the top table, someone looks disapproving. Someone\",\"At the top table, someone looks disapproving.\",Someone,gold,coughs over the alcohol of another glass.,smiles warmly at someone as he takes his seat again.,\"comes out of his tent, grabs a pack of pastries and dumps them into a cupboard.\",grins someone worriedly then eyes someone.\n18661,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93498,195,He starts to walk down the long hall towards the top table. Someone,He starts to walk down the long hall towards the top table.,Someone,gold,opens the door for her.,\"uses to do the steps, save his note and drops back on the seat atop the research building.\",looks guiltily at someone who nods benignly.,hangs completely dark except he catches a glimpse of someone.\n18662,anetv_s04x6lhUmtY,508,He begins by bouncing on the slackline while sitting on it. Then he,He begins by bouncing on the slackline while sitting on it.,Then he,gold,climbs on the slackline and balances himself as he jumps up and down on the flat webbing.,throws the last breaks to cross himself and attempts to help a little.,gets back into his feet and continues playing slower.,holds his head up and lays it down over him that lays on the ground.\n18663,anetv_s04x6lhUmtY,510,He continues to bounce up and down while trying to balance on the webbing. He then,He continues to bounce up and down while trying to balance on the webbing.,He then,gold,does a back flip from the slackline to directly land on the ground behind him.,jumps on the horse again while he bounces faster and faster.,dismounts and ties the poles around his shoulders.,finishes by putting it on the man after holding and describing the game.\n18664,anetv_s04x6lhUmtY,5510,\"A blue slack line is attached to two trees outside in an open field. On the line, there\",A blue slack line is attached to two trees outside in an open field.,\"On the line, there\",gold,'s a man on a rope in a picture of a man.,'s a man in a red shirt jumping on a track.,is several people who walk behind the rope.,is a man bouncing up and down while standing on the line before he gets off.\n18665,anetv_s04x6lhUmtY,507,There's a man dressed in a black shirt and camouflage shorts doing stunts on a blue slackline that is tied between two trees used as anchors in a yard. He,There's a man dressed in a black shirt and camouflage shorts doing stunts on a blue slackline that is tied between two trees used as anchors in a yard.,He,gold,\"turns him back to his feet, ready to start his routine.\",hits the blade of some wood over an.,begins by bouncing on the slackline while sitting on it.,continues to do hop in a rodeo bar.\n18666,anetv_s04x6lhUmtY,509,Then he climbs on the slackline and balances himself as he jumps up and down on the flat webbing. He,Then he climbs on the slackline and balances himself as he jumps up and down on the flat webbing.,He,gold,jumps in horizontal consistently as the can vertically misses and spins around the canoe many times.,drops the rope in his water.,grabs a diving board and demonstrates several impressive cartwheels before talking to himself and audiences.,continues to bounce up and down while trying to balance on the webbing.\n18667,anetv_s04x6lhUmtY,5511,\"On the line, there is a man bouncing up and down while standing on the line before he gets off. After, more Cobra Slacklines\",\"On the line, there is a man bouncing up and down while standing on the line before he gets off.\",\"After, more Cobra Slacklines\",gold,their way successfully preparing to run into the ocean side.,cuts the sheet and press it behind nuts.,are shown by the stone and dancing easily.,are shown as well as other advertisements for the object.\n18668,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7247,\"As another man comes up to have his book signed, the bearded agent sits beside someone and passes him a note. Someone\",\"As another man comes up to have his book signed, the bearded agent sits beside someone and passes him a note.\",Someone,gold,turns towards a lamp pouring out the surges across the room.,looks at the note then puts it in a leather covered notebook before signing another book.,slips out more emerald apprehensively distantly.,\"pauses, turns and scans but someone helps him to the end.\"\n18669,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7250,\"As bearded, middle - aged someone gets out of a carriage outside of the Addrelle de someone. The rough looking bloke\",\"As bearded, middle - aged someone gets out of a carriage outside of the Addrelle de someone.\",The rough looking bloke,gold,hits the stone rail and the broken supports in the foreground.,is hovering nearby with another identical man.,\"florence dressed with a black coat, a leather position, walks across the shoulders of all of a young women, turned.\",leads closely as the owner looks over the wire fence at several nut store bombs.\n18670,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7241,Someone takes someone's monogrammed handkerchief out of someone 'bag and glances over at someone. Someone,Someone takes someone's monogrammed handkerchief out of someone 'bag and glances over at someone.,Someone,gold,drives the tee - shirts of the bus past a central park.,\"goes back to the motel room, where a cage is empty.\",takes the hanky and walks over to the railing.,\"stands, grins out of control.\"\n18671,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7244,The paddle - steamer approaches the French coast. A flier posted on a wall in Paris,The paddle - steamer approaches the French coast.,A flier posted on a wall in Paris,gold,community center reads a headline.,shows a number in the gate.,show during the act with the camera.,advertises a lecture by someone.\n18672,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7252,\"They keep an eye on someone. At a gypsy camp in the countryside, men\",They keep an eye on someone.,\"At a gypsy camp in the countryside, men\",gold,practice their horse riding skills.,rhythmically fondly playing the wind of fast dancing conversation.,\"come through the opening of the large wooden fence, and hurries to the door.\",show the various activities lining the boathouse.\n18673,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7248,Someone looks at the note then puts it in a leather covered notebook before signing another book. He,Someone looks at the note then puts it in a leather covered notebook before signing another book.,He,gold,turns to his agent as he autographs the book.,is standing inside them and walking on the side watching with him full of paperwork.,grapple with thread on a bench.,watches as young someone lies on their bed.\n18674,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7254,People drive up on the outskirts of the camp in an open carriage. A man,People drive up on the outskirts of the camp in an open carriage.,A man,gold,\"is sideways and his body position on a brick wall, at his long work, filled with cement.\",stands inside a circle hangs from wallpaper.,rides a troop of bullfighters outside the building.,comes over to them and holds their horse.\n18675,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7240,\"The train rattles on through the night. People, now out of his disguise,\",The train rattles on through the night.,\"People, now out of his disguise,\",gold,catch up with him.,move toward someone's house's entrance.,are on the steamer's rear promenade deck.,watch him and front a boulder.\n18676,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7239,Someone smiles ruefully at the mention of Paris. The train,Someone smiles ruefully at the mention of Paris.,The train,gold,waits patiently turns to someone.,rattles on through the night.,does a side turn into the scaffold hotel la.,passes through the tuning - sized bag to prep.\n18677,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7246,\"He hands it back to the man. As another man comes up to have his book signed, the bearded agent\",He hands it back to the man.,\"As another man comes up to have his book signed, the bearded agent\",gold,\"turns and faces toward the cockpit, only his features hidden in the night darkness.\",stares at the cataleya file.,sits beside someone and passes him a note.,\"kneels down towards someone and they including someone, who stares at a blankly.\"\n18678,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7249,He turns to his agent as he autographs the book. The agent,He turns to his agent as he autographs the book.,The agent,gold,whips his leather apples from one of the folders.,takes two tickets from his jacket pocket.,grabs a pair of gun tools.,pushes the square away revealing it from someone.\n18679,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7243,Someone looks down at the hanky then glances over his shoulder at someone before casually tossing it over the side. The paddle - steamer,Someone looks down at the hanky then glances over his shoulder at someone before casually tossing it over the side.,The paddle - steamer,gold,\"has the sickly glow gone, breathing heavily.\",grinds through its deep canyon.,is now racing along a road ahead of them.,approaches the french coast.\n18680,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7242,Someone takes the hanky and walks over to the railing. He,Someone takes the hanky and walks over to the railing.,He,gold,grabs the kettle bells.,rises from the ship then runs down the deck.,climbs onto the top of a skyscraper and pulls up his brick building.,\"sniffs the hanky, inhaling its scent, as he looks out to sea.\"\n18681,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7251,The rough looking bloke is hovering nearby with another identical man. They,The rough looking bloke is hovering nearby with another identical man.,They,gold,keep an eye on someone.,pass in chairs at a resort.,walk down a walkway to by an older woman.,pass an empty metal box on the wall.\n18682,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7255,A man comes over to them and holds their horse. Someone,A man comes over to them and holds their horse.,Someone,gold,see the ending title screen.,\", tears the signs.\",\"calls over to a group of men then nudges someone, who appears to be asleep.\",swipes his horn.\n18683,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7245,\"In a grand building, someone is signing a copy of his book on asteroids for an admirer. He\",\"In a grand building, someone is signing a copy of his book on asteroids for an admirer.\",He,gold,hands it back to the man.,\"nods, looking on to the shock of disappointment.\",stares defiantly at him rigidly.,is on the phone.\n18684,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84931,7253,\"At a gypsy camp in the countryside, men practice their horse riding skills. People\",\"At a gypsy camp in the countryside, men practice their horse riding skills.\",People,gold,use some of those items to use on the pirates's shears.,drive up on the outskirts of the camp in an open carriage.,work on the corpses on their hands.,and gear lies on many bridges property on these size grassy field.\n18685,anetv_GnLUmMkyvCo,18981,A male is dressed in warm clothing outside in a field preparing to throw a shot put. The man,A male is dressed in warm clothing outside in a field preparing to throw a shot put.,The man,gold,is made up to the steep discs and catches a discuss about the sport.,is then shown in slow motion interspersed with jump roping tricks.,does several turns with the ball and then eventually lets it go.,tries to fight as he is standing for awhile.\n18686,anetv_GnLUmMkyvCo,631,The man throws it again several more times. More people,The man throws it again several more times.,More people,gold,ride the two men away from each other.,shoot and are getting out remaining.,are shown throwing the object one after other.,continue to sniff around the equipment area.\n18687,anetv_GnLUmMkyvCo,18982,The man does several turns with the ball and then eventually lets it go. Several videos of him,The man does several turns with the ball and then eventually lets it go.,Several videos of him,gold,do jon on the track and the camera zooms up up on the screen.,are then shown over a period of time of him repeating the same tasks.,blows in an inhaler while the dog jumps on the floor.,are shown being demonstrated by the tournament.\n18688,anetv_GnLUmMkyvCo,630,A man is seen spinning around and throwing an object off into the distance. The man,A man is seen spinning around and throwing an object off into the distance.,The man,gold,moves the hammer around continuously down while others watch.,continues jump roping while holding back and smiling to the camera while laughing.,drops the darts and moves to a stop while people watch on the sides.,throws it again several more times.\n18689,anetv_yj2WJBqmEHk,16998,There is a two little kids in front of them on small tubes. A person in a red jacket,There is a two little kids in front of them on small tubes.,A person in a red jacket,gold,is behind the boy.,is leading a group of people.,joins the other person inside the blue raft.,stands at the bottom of the hill.\n18690,anetv_yj2WJBqmEHk,16997,A person is tubing down a hill. There,A person is tubing down a hill.,There,gold,is a two little kids in front of them on small tubes.,are seen riding around a christmas tree with hands.,and the express are on the path executing a crash.,the way into the hill.\n18691,anetv_yj2WJBqmEHk,16018,The person then begins riding down the hill in a tube. The person,The person then begins riding down the hill in a tube.,The person,gold,then rides up and down the hill.,is then seen kneeling under the water sledding on the slope.,rides all the way to the end.,moves in slow motion making sure the tube is set in the end.\n18692,anetv_yj2WJBqmEHk,16017,A person is seen sitting at the top of a hill sitting in a tube. The person then,A person is seen sitting at the top of a hill sitting in a tube.,The person then,gold,begins riding a snowboard along a board and showing off a surf paddling along in kayak.,rides around the side of the tubes and begins paddling.,begins riding down the hill in a tube.,pierces the top of the hedge.\n18693,lsmdc1047_Defiance-91312,6688,Someone ties some rope and goes. Someone,Someone ties some rope and goes.,Someone,gold,is a lieutenant with a long - cut beard.,walks up a leafy slope towards the old man filling the grave with earth.,takes a incline of her hands.,searches for someone's display.\n18694,lsmdc1047_Defiance-91312,6689,\"Inside someone, his wife and two sons who were with him at someone's house, are having dinner. They all\",\"Inside someone, his wife and two sons who were with him at someone's house, are having dinner.\",They all,gold,step out or move the cart as they watch the tv.,look towards the door as someone walks into the room.,lie down at a table in the other end.,lie back in their seats at a booth outdoors.\n18695,lsmdc0027_The_Big_Lebowski-62927,9578,\"The car swerves and lurches and someone, cursing, takes the wheel. Someone tumbles onto the shoulder and - - rat - tat - tat - tat! - - muzzle flashes tear\",\"The car swerves and lurches and someone, cursing, takes the wheel.\",Someone tumbles onto the shoulder and - - rat - tat - tat - tat! - - muzzle flashes tear,gold,still through the ugly rear windshield.,glows within the darkening sky.,open the wrapping paper.,split someone's face.\n18696,lsmdc0027_The_Big_Lebowski-62927,9582,As someone struggles out holding the satchel of money. Someone,As someone struggles out holding the satchel of money.,Someone,gold,pulls him the mask off and thrusters it into the convertible.,\"stares at the altar - - cubicle and stares thoughtfully at the photograph, holding up fans.\",slips off his shoes case and strides into his room.,\"runs up the road toward the bridge, frantically waving the satchel in the air.\"\n18697,lsmdc0027_The_Big_Lebowski-62927,9579,Someone tumbles onto the shoulder and - - rat - tat - tat - tat! - - muzzle flashes tear open the wrapping paper. The car rocks and someone,Someone tumbles onto the shoulder and - - rat - tat - tat - tat! - - muzzle flashes tear open the wrapping paper.,The car rocks and someone,gold,hauls the truck up.,wrestles with the wheel.,hits towards the camera.,swoops off to rest now.\n18698,lsmdc0027_The_Big_Lebowski-62927,9575,He flings it out the window. Someone,He flings it out the window.,Someone,gold,somersaults into his arms as someone pulls him sideways.,kicks himself then heads to the kitchenette.,points across the seat at the paper - wrapped bundle.,puts the ticket back on.\n18699,lsmdc0027_The_Big_Lebowski-62927,9580,The car rocks and someone wrestles with the wheel. Someone,The car rocks and someone wrestles with the wheel.,Someone,gold,is thrown forward as the car hits something.,\"drives in, pulling arm right behind his back.\",grabs someone from behind and speeds off.,looks at the owls and smirks slightly.\n18700,lsmdc0027_The_Big_Lebowski-62927,9574,Someone reaches one arm across Dude's body to grab the laundry. He,Someone reaches one arm across Dude's body to grab the laundry.,He,gold,staggers to his knees beside the bushes.,takes another try and holds the bat to side mine.,flings it out the window.,holds someone up justin despair.\n18701,lsmdc0027_The_Big_Lebowski-62927,9581,Someone is thrown forward as the car hits something. As someone,Someone is thrown forward as the car hits something.,As someone,gold,\"stares out from the window, our view moves in from the windows.\",\"darts out of the garage, the gunman tends to someone, unlocks the door, and bangs the tube with both feet.\",struggles out holding the satchel of money.,flicks the swarm around after acting himself back and runs through the water like a charging serpent.\n18702,lsmdc0027_The_Big_Lebowski-62927,9577,Someone has flung open his door and is leaning halfway out over the road. Someone,Someone has flung open his door and is leaning halfway out over the road.,Someone,gold,comes running out as he goes.,\"rolls out with his parcel, giving a loud grunt as he hits the pavement.\",\"turns someone's heel and runs into school as someone, standing casually in his late twenties holding a bustling barbecue tray.\",shields his eyes as they run down the middle of the courtyard towards the edge.\n18703,lsmdc3049_MORNING_GLORY-23524,8643,Someone stares into the distance wearily. Someone,Someone stares into the distance wearily.,Someone,gold,\"gently strokes someone's throat, then winces.\",wags his whip and runs into the busy salon.,watches daybreak in his office.,shoves the car through wipes.\n18704,anetv_GtCXZRGSaqk,11380,\"Two people ski side to side, then one person free the rope and falls. After, a man\",\"Two people ski side to side, then one person free the rope and falls.\",\"After, a man\",gold,blocks and ski while the woman frolic after.,\"runs down the slide, and people after him on the jump rope.\",ski behind a boat in a lake.,resumes flipping out and rubbing his face to the camera.\n18705,anetv_GtCXZRGSaqk,11379,People water ski holding a ski ropes that are pulled by a boat. Two people,People water ski holding a ski ropes that are pulled by a boat.,Two people,gold,handles the boat as they float all the way before the others continue drilling at the glowing waters in the river.,\"are sitting on a ski lift with a large ski, also in skiing gear.\",are shown on shore kayaking along with streaks of rays of water.,\"ski side to side, then one person free the rope and falls.\"\n18706,anetv_GtCXZRGSaqk,10489,The man on the sea is doing wakeboarding on the sea. woman,The man on the sea is doing wakeboarding on the sea.,woman,gold,is doing wakeboard next to the man.,wears white long sleeves by the man and lady.,is standing next to a boat on the side of the arena.,is doing gymnastics in the pool.\n18707,anetv_GtCXZRGSaqk,10488,Someone is walking on sand to a beach. the man on the sea,Someone is walking on sand to a beach.,the man on the sea,gold,walks else in the snow.,is doing wakeboarding on the sea.,takes her as she walks over the water.,is wearing a yellow hoodie and fix the straps of the boat.\n18708,lsmdc1058_The_Damned_united-98315,15881,The elderly groundskeepers eye the letters missing from the club's sign. Someone,The elderly groundskeepers eye the letters missing from the club's sign.,Someone,gold,looms over the glass desk.,points at the visitor's entrance.,tosses the sword at a coin.,wanders through the crowd into an open market.\n18709,lsmdc1058_The_Damned_united-98315,15882,Someone points at the visitor's entrance. He,Someone points at the visitor's entrance.,He,gold,imagines someone knocking out the fire.,offers the phone to someone and walks off.,turns off the levitating tiles.,marches in through the tatty door.\n18710,lsmdc1058_The_Damned_united-98315,15883,He marches in through the tatty door. Someone,He marches in through the tatty door.,Someone,gold,walks the lookout highway way to the middle of the lanes.,leaves to someone and begins to wave his pipe and loosened his smoke.,passes by with someone.,dashes down corridors to smoking cleaners.\n18711,anetv_zc-RT9tpoBA,13654,A man is sitting inside a room. He,A man is sitting inside a room.,He,gold,is welding something on the floor.,is making some kind of stands.,is spreading out on the canvas in scissors.,is talking to the camera animatedly.\n18712,anetv_zc-RT9tpoBA,13655,He is talking to the camera animatedly. He,He is talking to the camera animatedly.,He,gold,is standing in the water and sweeping with the kite on.,is talking about and demonstrating how to play a harmonica.,is using the attachments to hold a leash.,starts pulling around on the pipe.\n18713,anetv_xOTW_-tiEjY,5707,A baby is sitting at a table eating a Popsicle. He,A baby is sitting at a table eating a Popsicle.,He,gold,takes the porch and looks at her.,turns to check her swing.,takes a bite out of his popsicle.,puts his hand on the receiver while brushing it.\n18714,anetv_J_CqwWJZTh4,2909,A woman is seen speaking into a microphone and leads into her throwing darts at a person's head after spinning. The person wears a pumpkin head and more people,A woman is seen speaking into a microphone and leads into her throwing darts at a person's head after spinning.,The person wears a pumpkin head and more people,gold,are shown through the window.,are seen running onto the field and various shots of the shot are shown followed by clips of men talking.,are seen attempting to throw darts.,engage in holding up different places.\n18715,anetv_J_CqwWJZTh4,2910,The person wears a pumpkin head and more people are seen attempting to throw darts. In the end the man,The person wears a pumpkin head and more people are seen attempting to throw darts.,In the end the man,gold,pulls the ax by pulling it to his ear and a bit in chasing around the dart.,grabs the pumpkin and shows how it can put the pumpkin to the pumpkin.,takes the pumpkin off of his head.,keeps shooting at the camera.\n18716,anetv_TADJh_DZOfE,13490,The female athlete runs and elevates her body over a heighten hurdle. The female athlete,The female athlete runs and elevates her body over a heighten hurdle.,The female athlete,gold,performs the performance on a mat.,\"kneels, person and drys her hands.\",lifts a barbell up to her chest and flies forward.,rises and yells in joy.\n18717,anetv_fY2IeYSxY4U,4877,The young lady continues progressing up the wall as the man continues to talk in a split screen. The man lifts his foot up to talk about a certain position and the girl,The young lady continues progressing up the wall as the man continues to talk in a split screen.,The man lifts his foot up to talk about a certain position and the girl,gold,stops to put it in his hand.,demonstrates it as she begins getting off the plate.,demonstrates step moves to his ear already story.,lifts the weight again afterwards another moves to prep him.\n18718,lsmdc0053_Rendezvous_mit_Joe_Black-71407,12059,\"Someone shakes his head, a firm no. But when he looks and speaks to Easter again, it\",\"Someone shakes his head, a firm no.\",\"But when he looks and speaks to Easter again, it\",gold,is quiet again at the footpath.,is with concern and even regret.,\"stops, and joins someone.\",'s slightly open with the shopkeeper.\n18719,anetv_uBhuULfs3Hc,5335,\"People are shown, one at a time, throwing the discs. The winner\",\"People are shown, one at a time, throwing the discs.\",The winner,gold,puts more bowling balls down various pins.,\"stands with his trophy, shaking hands of people who walk up to him.\",is interviewed as well as them gambling and more about it.,\"spreads his arms, claps his hands and mouths.\"\n18720,anetv_uBhuULfs3Hc,5332,\"A man is at a mound, spinning a disc around in circles. He\",\"A man is at a mound, spinning a disc around in circles.\",He,gold,continues to walk around the frisbee and starts moving back and forth.,\"does multiple different stunts on the balance bars, gripping his leg in the air.\",takes a large leap between the blocks.,lets go of the disc and watches it fly.\n18721,anetv_uBhuULfs3Hc,5334,\"A line of discs is shown before a group of people on the field, choosing their own disc. People\",\"A line of discs is shown before a group of people on the field, choosing their own disc.\",People,gold,swim towards the inflatable pit.,\"are shown, one at a time, throwing the discs.\",\"are then seen swimming in the pool, making various liquors and looking to the camera.\",go around for a long.\n18722,anetv_8ClpQ4q6NmM,657,A man is seen kneeling down next to a dog scrubbing his back while another man pours water over the dog's body. The man,A man is seen kneeling down next to a dog scrubbing his back while another man pours water over the dog's body.,The man,gold,continues spraying the dog continuously while moving it around to show the buttons.,begins putting a rag on the sink and scrubs it all over with a cloth.,continues scrubbing as the other pours water and ends with the dog running away.,then returns his shirt back and holds it out to show the dog's face.\n18723,anetv_ksvIIhvmSRM,19379,Shots of the water is shown followed by people riding down a river on the tubes. The people,Shots of the water is shown followed by people riding down a river on the tubes.,The people,gold,continue to ride down one after the other while people watch on the side.,paddle around the water and end by a continuously small machine.,ride tubes as well as riding one another and leads into people holding on to the water.,pass around the people as well push one another in the end.\n18724,anetv_ksvIIhvmSRM,19378,A man is seen sitting in a tube speaking and leads into people walking around carrying tubes. Shots of the water,A man is seen sitting in a tube speaking and leads into people walking around carrying tubes.,Shots of the water,gold,is shown followed by people riding down a river on the tubes.,are seen and sparks continue scrubbing snow around.,are shown and people driving around.,are shown afterwards crashing into one another.\n18725,anetv_e-44ig51evc,7839,We watch the boy in the white shirt score a goal. We see a boy kick a goal and the goalie,We watch the boy in the white shirt score a goal.,We see a boy kick a goal and the goalie,gold,reaches to stop the ball but misses.,tries to shoot and runs after the ball.,scores a goal to save the other team.,gives him a high five by a swinging net goal.\n18726,anetv_e-44ig51evc,7838,We then see little boys playing soccer in a couple of gymnasiums. We,We then see little boys playing soccer in a couple of gymnasiums.,We,gold,see two men hug to flag crowd.,see what people are doing.,see the audience jumping off and shoot into the water.,watch the boy in the white shirt score a goal.\n18727,anetv_e-44ig51evc,7840,We see the boy in white score a goal and his Teammates hug him. 3: 10 The white ream number 10 scores and a teammate,We see the boy in white score a goal and his Teammates hug him.,3: 10 The white ream number 10 scores and a teammate,gold,celebrates across the field on a professional horse - player runner.,gives him a high five.,dives after the ball.,shoots the balls into the air and gives everything just placement.\n18728,anetv_e-44ig51evc,7837,We see a title screen for the video. We then,We see a title screen for the video.,We then,gold,see the closing screen.,see little boys playing soccer in a couple of gymnasiums.,see the ending title and 2.,see him talking about his archery set.\n18729,lsmdc1018_Body_Of_Lies-80180,2611,\"Later, walking back to his apartment, he is on the phone. Someone\",\"Later, walking back to his apartment, he is on the phone.\",Someone,gold,looks at a man with his arms folded.,sees someone in his apartment.,enters the apartment building's apartment door and someone enter.,swigs a bottle of whisky.\n18730,lsmdc1018_Body_Of_Lies-80180,2609,Someone hangs up and someone takes the phone. Someone,Someone hangs up and someone takes the phone.,Someone,gold,\"looks down, grabs a pen from his pocket and starts to read it.\",reluctantly turns and walks away to the tv.,stares up at someone.,marches out of the house.\n18731,anetv_FBtrv1Vg8hU,9085,\"The lady is then shown exercising on a blue mat doing several yoga stretches. After, she\",The lady is then shown exercising on a blue mat doing several yoga stretches.,\"After, she\",gold,is pictured in her home talking while sitting on the couch.,shows her legs each do sit ups and smile once more.,\"gets up and starts playing, observing the area.\",begins twisting her legs and continues on.\n18732,anetv_FBtrv1Vg8hU,9086,\"After, she is pictured in her home talking while sitting on the couch. Finally, the screen returns and she\",\"After, she is pictured in her home talking while sitting on the couch.\",\"Finally, the screen returns and she\",gold,is shown in horseback riding in the field going through the stable.,has finally stopped her drums and applies makeup to her face.,shows her photo and then back to to her bike work.,begins to demonstrate how to rubik her hair.\n18733,anetv_FBtrv1Vg8hU,9084,A young woman on a white horse is shown riding through the field. The lady,A young woman on a white horse is shown riding through the field.,The lady,gold,\"is standing by a black horse, with her eyes lowered.\",stops talking and lays a hand on both of the horses.,is then shown exercising on a blue mat doing several yoga stretches.,waves and waves before going back to the path again.\n18734,lsmdc0019_Pulp_Fiction-56837,6244,Someone holds it for sometime. He,Someone holds it for sometime.,He,gold,\"sits nude, near the young man, wearing color on his back feigns.\",returns with a faint smile.,gives her the bill.,proceeds inside the house floor of a victorian garage.\n18735,lsmdc0019_Pulp_Fiction-56837,6243,She goes to take it. Someone,She goes to take it.,Someone,gold,holds it for sometime.,checks his pockets and walks toward the door.,lowers the receiver and looks down heavily.,looks completely on.\n18736,anetv_XoeGnEtEq3U,3232,The camera pans around a large group of women sitting in chair knitting and speaking to one another. Several shots,The camera pans around a large group of women sitting in chair knitting and speaking to one another.,Several shots,gold,are shown of women knitting and leading back into people helping one another knit and more pictures shown.,are shown of many girls in sumo outfits and helping them with costumes.,are shown of her changing a makeup piercing while still riding around on the speaking.,are shown of ladies swinging back and fourth with one another and performing different movements.\n18737,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4555,The bearded man has disappeared. Someone,The bearded man has disappeared.,Someone,gold,places the dart in his bag.,grimaces then shakes his gun radio.,enters and looks from someone to someone.,spins so he can get some money from his desk.\n18738,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4549,\"She hands the package to a mature man, who gives her a letter. The doctor\",\"She hands the package to a mature man, who gives her a letter.\",The doctor,gold,tosses off some gum uneasily.,points at them in a meeting.,starts to open the package.,follows her out of the padded envelope.\n18739,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4542,The man starts to whistle again. Someone,The man starts to whistle again.,Someone,gold,\"reaches the back of the crouch, smiles up at her then shakes her back and catches them.\",\"falters, then loses his balance, and unbuttons his shirt.\",weaves the lug mechanism and sits outside.,\"is crouched on the ground, as if in a trance.\"\n18740,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4538,Someone manages to duck beneath the crate swung at him and kicks an attacker to the ground. They,Someone manages to duck beneath the crate swung at him and kicks an attacker to the ground.,They,gold,step back as they see two uniformed policemen on the beat.,peer after him into someone's fires.,\"tries it for a few punches, but someone strikes off, pleased with his fight thrusting into his legs.\",erupt over them like they had hit which only half of them have now blown.\n18741,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4543,\"Someone is crouched on the ground, as if in a trance. In his mind, he\",\"Someone is crouched on the ground, as if in a trance.\",\"In his mind, he\",gold,sees the action about to unfold.,jerks a flaming globe.,\"stares ahead solemnly, then frowns.\",has an energy for him.\n18742,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4558,\"The bearded man in the tweed suit watches the speaker. The bearded man clinks a teaspoon against a glass, and all the clientele and staff, with the exception of him and the man behind the curtain,\",The bearded man in the tweed suit watches the speaker.,\"The bearded man clinks a teaspoon against a glass, and all the clientele and staff, with the exception of him and the man behind the curtain,\",gold,leans back in prayer.,detaches the other three - halves they opened up a crack and relief that the soprano is someone.,grabs a beers from the hip and starts to salute.,rise and leave the dining room.\n18743,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4528,The swarthy man who was tossing the apples steps out in front of them. She,The swarthy man who was tossing the apples steps out in front of them.,She,gold,prepares one for someone to run before.,sits about her chair in her lap and slides down his gaze.,takes the package back from him.,is interviewed for a final time.\n18744,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4541,The swarthy man tosses coins at him. The man,The swarthy man tosses coins at him.,The man,gold,picks up a woman in the car.,does a little skip.,puts on a hat in his room.,shoves the rodeo bale into someone's hand.\n18745,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4556,Someone places the dart in his bag. Someone,Someone places the dart in his bag.,Someone,gold,furrows her brow and leads her onward.,\"is led to a table in the center of the restaurant and sits by a curtain, shielding her from a nearby table.\",gently takes aim and aims another gun.,sits up to him.\n18746,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4553,\"Someone, the back of his Oriental jacket covered in dust from the explosion, spots the doctor slumped against a wall. He\",\"Someone, the back of his Oriental jacket covered in dust from the explosion, spots the doctor slumped against a wall.\",He,gold,takes someone down and places it around someone's lap.,looks at someone and her father.,\"feels for a pulse, then notices a tiny dart in the man's thigh.\",springs into the tank midst to face them.\n18747,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4545,\"Someone thwarts the knife thrust and spins the thug, forcing the blade into another. He\",\"Someone thwarts the knife thrust and spins the thug, forcing the blade into another.\",He,gold,breaks it around the floor and slides it open.,\"lowers himself back onto the ledge, and shoots her uncertain stare.\",stands on the other side of the pool.,throws the man with the club and snatches the gun from the leader's hand.\n18748,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4531,\"The swarthy man studies someone 'shabby disguise, then whistles. Someone\",\"The swarthy man studies someone 'shabby disguise, then whistles.\",Someone,gold,emerges from the workshop's window.,removes his spectacles as the three men facing him close in.,locks eyes and dark hair shades his cheek.,lifts someone's bells.\n18749,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4527,She leads him by the hand into an alley. The swarthy man who,She leads him by the hand into an alley.,The swarthy man who,gold,was tossing the apples steps out in front of them.,runs out of the door gets a little tangled.,wear a pink jacket pats the chaise near the bed.,\"reached the door, lands on her forehead and nods.\"\n18750,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4560,The man behind the curtain draws it open. Someone,The man behind the curtain draws it open.,Someone,gold,\"closes her eyes, then glances down at her cup.\",\"back with the band, he hears the voices of men talking, and faces him directly.\",appears in a blue spider.,photographs together and face the grim.\n18751,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4547,Someone empties the gun and hands it back. He,Someone empties the gun and hands it back.,He,gold,\"makes to attack the leader, who shrinks back.\",peers at a chimney mallet.,removes the top of the shoe with a crumpled expression.,regards it along with an ingredient in his seat.\n18752,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4533,The swarthy man grabs him by the neck and throws him against a fence. Someone,The swarthy man grabs him by the neck and throws him against a fence.,Someone,gold,pulls on a blue gate and tugs on the sheet.,punches someone in the face stretching the legs in attention.,jerks his hood upwards as he imitates someone's kick.,\"kicks the man, then punches him.\"\n18753,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4540,Someone slumps to the ground. The swarthy man,Someone slumps to the ground.,The swarthy man,gold,tosses coins at him.,\"drops the monkey bar and rolls backwards on a swing, then drags off with it under his arm.\",grits his teeth as his skull drops in a consecutive rapid.,mows the bus rear.\n18754,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4537,\"As the leader closes in with a crate, someone spits coffee beans into his face. Someone\",\"As the leader closes in with a crate, someone spits coffee beans into his face.\",Someone,gold,rolls over and she glares at someone.,clambers up onto the bed.,manages to duck beneath the crate swung at him and kicks an attacker to the ground.,stands near someone and stares off.\n18755,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4525,Someone grabs handfuls of rice and coffee beans and places them in a bag. Someone,Someone grabs handfuls of rice and coffee beans and places them in a bag.,Someone,gold,strides through the open market.,kisses someone who's lost as he drops an apple.,\"looks out her window, horrified.\",points on their tail and raise it up at a time.\n18756,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4557,\"Someone is led to a table in the center of the restaurant and sits by a curtain, shielding her from a nearby table. She\",\"Someone is led to a table in the center of the restaurant and sits by a curtain, shielding her from a nearby table.\",She,gold,kicks the ball in half.,\"stands facing him for a moment, then lowers her chin on her head.\",appears the page of a soldier's face watching her.,turns to the waiter.\n18757,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4552,\"Someone turns, and the man looks away. Someone, the back of his Oriental jacket covered in dust from the explosion,\",\"Someone turns, and the man looks away.\",\"Someone, the back of his Oriental jacket covered in dust from the explosion,\",gold,struggles in the air.,enters following himself on the tower balcony above the rapidly shrieking jack.,\"reaches up, revealing the swimming pool.\",spots the doctor slumped against a wall.\n18758,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4529,She takes the package back from him. She,She takes the package back from him.,She,gold,leaves him with the loaf.,hangs to the point.,\"walks through the shops, illuminating off her apartment without practicing light.\",strolls along the steps of her fingertips and brings a finger into her mouth.\n18759,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4548,\"On foot, someone enters the auctioneers, people. She\",\"On foot, someone enters the auctioneers, people.\",She,gold,\"hands the package to a mature man, who gives her a letter.\",points at the kitchen.,\"watches as she dismounts, dodges a forward run, and dashes between two bodies in the sand.\",stumbles as someone sprints down the trail.\n18760,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4536,\"Someone makes a good account of himself, then is pressed back against the slatted wooden fence and chains are wrapped round his wrists. As the leader closes in with a crate, someone\",\"Someone makes a good account of himself, then is pressed back against the slatted wooden fence and chains are wrapped round his wrists.\",\"As the leader closes in with a crate, someone\",gold,\"sinks several feet away off the surface, toward the flooded ceiling.\",spits coffee beans into his face.,stops the aid draco.,opens the crate slowly and straps down on the ice.\n18761,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4554,\"He feels for a pulse, then notices a tiny dart in the man's thigh. He\",\"He feels for a pulse, then notices a tiny dart in the man's thigh.\",He,gold,\"examines the dart, then turns.\",\"reaches out to someone, who buttons the alien chain, then opens it.\",begins to move the red ring repeatedly.,measures it with and some ice cream.\n18762,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4523,\"A man in a frock coat carries a brown paper package under his right arm. As he passes a woman in a wide - sleeved outfit, he\",A man in a frock coat carries a brown paper package under his right arm.,\"As he passes a woman in a wide - sleeved outfit, he\",gold,goes down the hall.,transfers the package to her.,rests a hand on an african woman.,notices an image of someone as she speaks to him.\n18763,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4534,\"Someone kicks the man, then punches him. He\",\"Someone kicks the man, then punches him.\",He,gold,\"glances around, then stares at the mustached crew.\",thumps his chest and knocks against his wig.,\"throws rice in one of the thug's face, ducks as another throws a punch and instead hits his colleague.\",takes his hat off and storms away.\n18764,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4559,\"The bearded man clinks a teaspoon against a glass, and all the clientele and staff, with the exception of him and the man behind the curtain, rise and leave the dining room. Someone\",\"The bearded man clinks a teaspoon against a glass, and all the clientele and staff, with the exception of him and the man behind the curtain, rise and leave the dining room.\",Someone,gold,stops sipping her tea and looks anxiously around as the place empties.,gives someone an embarrassed look on his face as they drive along a deserted card.,takes the ax and runs outside.,\"can be seen in one of the tables including the little residence, has an indian - chef leopard hat, glasses looking on.\"\n18765,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4539,They step back as they see two uniformed policemen on the beat. Someone,They step back as they see two uniformed policemen on the beat.,Someone,gold,rolls down the back.,someone turn her head and walk up the stairs to the front of the studio.,slumps to the ground.,clamps her eyes shut.\n18766,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4524,\"The pretty, dark - haired woman with a hat perched jauntily on her head is someone. Someone, disguised as an Oriental man,\",\"The pretty, dark - haired woman with a hat perched jauntily on her head is someone.\",\"Someone, disguised as an Oriental man,\",gold,lies on a mattress in the street smoking a pipe.,comes to a placed chair with her entourage.,looks out at the dangling guest.,\"waiting to be struggling across the street, where somebody is heard.\"\n18767,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4551,Someone takes the ticking package from the doctor. He,Someone takes the ticking package from the doctor.,He,gold,\"slowly opens the vehicle revealing an envelope with salt, it barely submerges as the bug stands up in the box.\",kneads his blanket over his chest.,picks it up and dumps squirrel out of the locker.,runs to the sarcophagus.\n18768,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84579,4535,\"He throws rice in one of the thug's face, ducks as another throws a punch and instead hits his colleague. Someone\",\"He throws rice in one of the thug's face, ducks as another throws a punch and instead hits his colleague.\",Someone,gold,\"leaps back into the air and rolls onto his back, tilting his face up.\",\"stands awkwardly by the bonnet of the car, stumbling onto a grass patch.\",let go of the broomstick and pull away from the ship as someone skids to his knees.,\"makes a good account of himself, then is pressed back against the slatted wooden fence and chains are wrapped round his wrists.\"\n18769,anetv__sgg_QEjcEE,7942,A boy is now standing on the concrete circle and he's practicing his swings with a shirt. A man is now indoors and he,A boy is now standing on the concrete circle and he's practicing his swings with a shirt.,A man is now indoors and he,gold,'s practicing his swings with a golf club.,jumps and goes back for a time.,'s driver jump overlaid in a coach.,allows jumps to fix congas.\n18770,anetv__sgg_QEjcEE,7943,A man is now indoors and he's practicing his swings with a golf club. The outro screen,A man is now indoors and he's practicing his swings with a golf club.,The outro screen,gold,\"appears, african night surfing as sea black and blue engines going to water.\",is mainly white with a black design on it and the name of the company and a person.,\"is black and black with pink, red background.\",appears to screen as the words are repeated.\n18771,anetv__sgg_QEjcEE,7939,\"A young lady is now standing on a concrete circle and she begins swinging her red discus, then swings her body and then throws it. A black screen appears with white letters that say Out of several faults we select one problem, and the video continues to show the problem and words\",\"A young lady is now standing on a concrete circle and she begins swinging her red discus, then swings her body and then throws it.\",\"A black screen appears with white letters that say Out of several faults we select one problem, and the video continues to show the problem and words\",gold,indicate it tips from paper to form that video sculpting club.,swaying one with a blue ironed following her arm.,\"protecting and taping the video, still rewind for time.\",appear on the screen to explain them.\n18772,anetv__sgg_QEjcEE,7941,A black screen appears again with red and white words that say other similar exercises on the same idea: focus on the low point of the implement trajectory. A boy is now standing on the concrete circle and he,A black screen appears again with red and white words that say other similar exercises on the same idea: focus on the low point of the implement trajectory.,A boy is now standing on the concrete circle and he,gold,begins before he does right and falls onto it next to the cliff.,'s practicing his swings with a shirt.,begins running in his room with his hand on it.,\"begins talking to the camera and then a bit of doing moves, jumping and walking side riding.\"\n18773,anetv__sgg_QEjcEE,7940,\"A black screen appears with white letters that say Out of several faults we select one problem, and the video continues to show the problem and words appear on the screen to explain them. The same young lady\",\"A black screen appears with white letters that say Out of several faults we select one problem, and the video continues to show the problem and words appear on the screen to explain them.\",The same young lady,gold,speaks to a camera and moves a shrub and the other is then shown on the side of a yard.,is then shown himself in slow motion and ends by letting the object down once more.,shows her foot five and how to do the crunches.,is now standing in a different area holding a hand towel as she practices her swings and words on the screen give tips.\n18774,anetv__sgg_QEjcEE,7938,A black screen appears with red and white letters on it that say discus throw Example of correction of a delivery problem for a beginner. A young lady is now standing on a concrete circle and she,A black screen appears with red and white letters on it that say discus throw Example of correction of a delivery problem for a beginner.,A young lady is now standing on a concrete circle and she,gold,\"begins swinging her red discus, then swings her body and then throws it.\",puts on the white blue lights at the beach and looks over the area.,demonstrates how her work pedal and includes a tutorial shot on the high mountain yoga pad.,\"does the same thing and smirks to the camera, and then pins the iron and goes around again doing her previous spin.\"\n18775,lsmdc1015_27_Dresses-79914,1222,\"Someone can't take his eyes off someone, who, smiling radiantly, kisses her dad on the cheek. The wedding couples\",\"Someone can't take his eyes off someone, who, smiling radiantly, kisses her dad on the cheek.\",The wedding couples,gold,dance together in the hall lobby and raise their fists into their pockets.,stand face to face.,\"are still indoors, the words make way.\",pause at the olympic side.\n18776,anetv_-2dxp-mv2zo,13019,A tray of potatoes is loaded into the oven and removed. A large tray of cake,A tray of potatoes is loaded into the oven and removed.,A large tray of cake,gold,is made before a cake being whipped.,is placed against the oven.,cookies are put into the oven and shown eating from the oven.,is flipped over and placed on counter.\n18777,anetv_-2dxp-mv2zo,13018,A knife is used to cut cylinder shaped dough into rounds. A tray of potatoes,A knife is used to cut cylinder shaped dough into rounds.,A tray of potatoes,gold,is dried with a long knife.,are shown within a box of vegetables.,is loaded into the oven and removed.,are poured in a bowl with a tea tray.\n18778,anetv_-2dxp-mv2zo,13016,A female chef in white uniform shows a stack of baking pans in a large kitchen presenting them. The pans,A female chef in white uniform shows a stack of baking pans in a large kitchen presenting them.,The pans,gold,are filled with pastries and loaded into the oven.,beats are cooking and the the remaining cookies are bejeweled in the oven piece.,pans around a dog taking a piece of cookie dough and showing off dough.,stirs the couple and switches the credits on the spoons.\n18779,anetv_-2dxp-mv2zo,13017,The pans are filled with pastries and loaded into the oven. A knife,The pans are filled with pastries and loaded into the oven.,A knife,gold,is put in an oven on the cooked lawn.,is pulled and whipped from a modern lock.,is used to cut cylinder shaped dough into rounds.,is then cooked on the christmas presents.\n18780,anetv_-2dxp-mv2zo,13020,A large tray of cake is flipped over and placed on counter. A large tray of meat,A large tray of cake is flipped over and placed on counter.,A large tray of meat,gold,\"are shown in strips of a bread knife, a pair of black and white plate is used and removed onto a plate.\",is prepared then it is removed from the oven by a helper when done.,is shown and a tray of sandwiches are placed on the ground.,is laid out on the grater.\n18781,lsmdc1001_Flight-71957,19074,\"Still kneeling, he unscrews the top from the bottle, and runs his fingers over the cold surface of the glass. He\",\"Still kneeling, he unscrews the top from the bottle, and runs his fingers over the cold surface of the glass.\",He,gold,brings the bottle to his nose.,makes his way over to it.,takes someone's cell off his mask and hurls it at someone.,picks up the fan and thumps it.\n18782,lsmdc1001_Flight-71957,19075,He brings the bottle to his nose. He,He brings the bottle to his nose.,He,gold,\"replaces the cap, then slowly stands up and sets the bottle on top of the fridge.\",pierces his nose then glances up.,\"tries to put cassettes on the table, but his shoe is covered and wet with a green cloth.\",\"stands, looking at himself at the mirror.\"\n18783,lsmdc1001_Flight-71957,19077,He closes the fridge door and walks away. Someone,He closes the fridge door and walks away.,Someone,gold,flinches with the symbiote.,swoops up the bottle.,stamps a label by candlelight.,takes someone's notebook and drinks drinks.\n18784,lsmdc1001_Flight-71957,19076,\"He replaces the cap, then slowly stands up and sets the bottle on top of the fridge. He\",\"He replaces the cap, then slowly stands up and sets the bottle on top of the fridge.\",He,gold,is sitting in a chair.,closes the fridge door and walks away.,closes the box lid.,opens his locker and peers inside.\n18785,lsmdc0007_DIE_NACHT_DES_JAEGERS-49551,5755,Someone minces off around the side of the house. He,Someone minces off around the side of the house.,He,gold,\"wipes off tears with the heel of his left hand, watching her.\",closes the door behind him.,follows someone as the elevator burns.,peers down at his uncle.\n18786,lsmdc0007_DIE_NACHT_DES_JAEGERS-49551,5754,He breaks out into great thankful sobs. Someone,He breaks out into great thankful sobs.,Someone,gold,pauses someone sees someone find someone and someone.,minces off around the side of the house.,is down on the bridge boards.,drives them amongst the trees.\n18787,lsmdc0017_Pianist-56392,3768,\"Someone, partially turned away from him, plays Bach on the cello. Someone\",\"Someone, partially turned away from him, plays Bach on the cello.\",Someone,gold,\"puts the plaque on a plaque that reads, rule number twelve.\",watches her and listens.,struggles to hold someone standing still.,raises the flags and follows someone.\n18788,lsmdc0017_Pianist-56392,3771,Someone takes in the room. He,Someone takes in the room.,He,gold,hands a piece of paper to her.,\"looks sternly at someone, whose hands slip over his shirt.\",\"sees the piano, is still for a moment, then goes to it.\",\"is pinned upright on his small, seashell throne.\"\n18789,lsmdc0017_Pianist-56392,3770,Someone comes up behind someone. Someone,Someone comes up behind someone.,Someone,gold,\"casts a spell, then brings the gun to his father's shoulder.\",narrows his eyes at them.,knits his brow then.,makes for the door.\n18790,lsmdc0017_Pianist-56392,3766,\"He swings his legs off the sofa, stands, and crosses to a door. Quietly, he\",\"He swings his legs off the sofa, stands, and crosses to a door.\",\"Quietly, he\",gold,opens it a little.,opens it and climbs out.,addresses the remaining agent.,turns and strikes towards someone.\n18791,lsmdc0017_Pianist-56392,3767,\"Quietly, he opens it a little. Someone, partially turned away from him,\",\"Quietly, he opens it a little.\",\"Someone, partially turned away from him,\",gold,plays bach on the cello.,uneasily bops his camera.,\"stares blankly at the table above the bed bed rapidly moving towards the sound, breaking the silence.\",is staring at her with his hands gently brushing her.\n18792,lsmdc0017_Pianist-56392,3769,Someone carries a bag of provisions and puts them on a table while someone goes immediately to the window and looks out. Someone,Someone carries a bag of provisions and puts them on a table while someone goes immediately to the window and looks out.,Someone,gold,goes down the slide.,\"remains in the muddy bedroom, talking to her hairdresser, still about to sink in with his on to back.\",comes up behind someone.,starts into his office and notices someone sitting in the food drinking.\n18793,anetv_XSnPmf41ToA,10046,She swings a ball around several times. She,She swings a ball around several times.,She,gold,lifts up a case.,\"lets go, letting the ball fly through the air.\",spins around and ends up hitting it back and forth throwing the ball into the air.,goes down and across the ball.\n18794,anetv_XSnPmf41ToA,10045,A woman slaps her cheek as she prepares on a field. She,A woman slaps her cheek as she prepares on a field.,She,gold,scores as she takes the ball from her onto the mat.,swings a ball around several times.,\"cheers and the couple move in slow motion, more people wearing and taking the movements of the players.\",throws it over her own black jacket and diary.\n18795,anetv_kfW5sm39ZYE,8593,The person puts their hand under the raised tire. The man,The person puts their hand under the raised tire.,The man,gold,adds a wall of spray to the windshield and back.,takes off the bad tire.,adds a wax board and cleans the dirt.,runs and drives the wheels of the bike.\n18796,anetv_kfW5sm39ZYE,8594,The man takes off the bad tire. The man,The man takes off the bad tire.,The man,gold,takes the ax and puts it on the piece of wood.,adds the paper to the car that pulls back and begins to weld upright on the camera.,uses a sliding tool to loosen the car.,shows a screw in his tire.\n18797,anetv_kfW5sm39ZYE,8592,The person jacks up the car. The person,The person jacks up the car.,The person,gold,puts their hand under the raised tire.,finishes cleaning the windshield with snow.,continues clipping the car with snow and puts them on.,paints the bottom of the car.\n18798,anetv_kfW5sm39ZYE,8596,The man puts the spare tire on. The man,The man puts the spare tire on.,The man,gold,holds the tire up.,puts the cash into the tire.,messes the button and leaves the bike bench.,lowers the car on the spare.\n18799,anetv_kfW5sm39ZYE,8595,The man shows a screw in his tire. The man,The man shows a screw in his tire.,The man,gold,puts the spare tire on.,screws the bike into place.,lifts up the handlebars on the exercise bike.,puts the tire on the bike.\n18800,anetv_kfW5sm39ZYE,8591,The owner takes out the spare tire and tools. The person,The owner takes out the spare tire and tools.,The person,gold,puts the lights and the leaves.,jacks up the car.,opens the trunk quickly and washes the trunk.,climbs the end of the bike.\n18801,anetv_kfW5sm39ZYE,8590,We see a flat tire on a car. the owner,We see a flat tire on a car.,the owner,gold,takes out the spare tire and tools.,puts two rubber wings on the tire.,throws himself onto the ground.,gives the camera a thumbs up.\n18802,anetv_zmmiX3_TJ84,18833,They turn to the side and kick their leg up. A picture of a man and woman,They turn to the side and kick their leg up.,A picture of a man and woman,gold,are shown followed by a man playing a violin.,is shown walking down a snowy track.,are shown on the screen.,learn to play croquet.\n18803,anetv_zmmiX3_TJ84,19267,We see people in a gymnasium doing dance aerobics. The people,We see people in a gymnasium doing dance aerobics.,The people,gold,are posing together in a living room.,swing at the platform in unison.,kick their legs back and forth.,\"walk indoors, and we see the ending credits and credits.\"\n18804,anetv_zmmiX3_TJ84,19266,We see a colorful title shot. We,We see a colorful title shot.,We,gold,see a lady speaking to the camera finished applying a drink.,see five girls in white hats with white and white clothes.,see people in a gymnasium doing dance aerobics.,see a person in a purple shirt in a sand court.\n18805,anetv_zmmiX3_TJ84,18832,People are standing in a room dancing. They,People are standing in a room dancing.,They,gold,turn to the side and kick their leg up.,are doing a wrestling match on a stage.,start chasing leaves through the forest.,move the baton and dance around taking off their shoes.\n18806,anetv_zmmiX3_TJ84,19268,The people kick their legs back and forth. The people,The people kick their legs back and forth.,The people,gold,continue to slide in circles as one continues to play hopscotch.,continue moving back and fourth.,perform the kicks again.,laugh and walks away.\n18807,anetv_hFtmkU7wdx4,12789,A sky with the sun is peeking through the clouds. A man,A sky with the sun is peeking through the clouds.,A man,gold,is wandering along the other front of the lake.,is on a track in front of a crowd.,is seated atop the roof.,blows the trees in a large field.\n18808,anetv_hFtmkU7wdx4,12791,\"He runs, doing a long jump in slow motion. He\",\"He runs, doing a long jump in slow motion.\",He,gold,\"is then interviewed, spinning and throwing a discuss.\",celebrates as he wins the medal.,alternates in the stands and runs off.,stretches over his arms.\n18809,anetv_hFtmkU7wdx4,12792,He celebrates as he wins the medal. A man,He celebrates as he wins the medal.,A man,gold,holds the two referees flag as they march down the street.,appears on his skateboard.,appears in a field.,is shown talking about him.\n18810,anetv_hFtmkU7wdx4,12790,A man is on a track in front of a crowd. He,A man is on a track in front of a crowd.,He,gold,\"runs, doing a long jump in slow motion.\",does a tight rope on a field.,is then shown back in different clips doing jump roping tricks.,\"takes some energy bar, performing martial arts moves.\"\n18811,anetv_EGLJPCJnG64,19654,A man talks in front of a camera while holding a racket and ball. He,A man talks in front of a camera while holding a racket and ball.,He,gold,spins and turns back and forth.,makes the throw while the first man scans this entire game.,begins to hit the ball against the wall.,continues brushing his legs while bouncing around on the hips.\n18812,anetv_EGLJPCJnG64,19655,He begins to hit the ball against the wall. He,He begins to hit the ball against the wall.,He,gold,moves into the bar while people walk up to him.,runs off and lands on the wall next to him.,turns and hits the beam again.,turns and talks to the camera again.\n18813,anetv_EGLJPCJnG64,19657,He hits the ball and jumps. He,He hits the ball and jumps.,He,gold,pile with another ball hits it.,stands up and does.,\"surfs down the ocean pretty hard, keeping his balance as he goes.\",continues to move around talking and explaining technique.\n18814,anetv_EGLJPCJnG64,7039,A man is standing and talking in front of a white wall. He,A man is standing and talking in front of a white wall.,He,gold,is licking his neck and talking.,is doing acrobatics on a board.,is in the ice behind him showing another move from the event door.,continues talking as he shows how to play a game of indoor tennis.\n18815,anetv_EGLJPCJnG64,19656,He turns and talks to the camera again. He,He turns and talks to the camera again.,He,gold,\"sits on the piano, posing in musical photographs.\",adjusts his glasses on a messy street.,hits the ball and jumps.,\"stops drumming on tennis, then goes.\"\n18816,anetv_cbR34GknrBs,15219,A woman runs down the track. She,A woman runs down the track.,She,gold,jump a jump and do multiple times and over.,stand in line from high.,jumps into a pile of sand.,jumps over a dirt course and performs a long run.\n18817,anetv_cbR34GknrBs,15218,People are running around a track. A woman,People are running around a track.,A woman,gold,runs down the track.,runs and picks up the javelin.,is stopped skateboarding first.,is skating in a sand pit.\n18818,anetv_cbR34GknrBs,7280,Woman is in a racetrack running and making a high jump into arena. a man and a woman,Woman is in a racetrack running and making a high jump into arena.,a man and a woman,gold,are marching around in a court practicing stilts.,are running around the racetrack.,run across a small roofed gym.,play in a court in a field doing a big throw.\n18819,anetv_ur873jaQO3A,675,The bow and arrow is shown up close. She,The bow and arrow is shown up close.,She,gold,flashes the arrow along the logo.,comes over to measure and are fighting over the wipes.,places a contact into her eye.,stands outside and shoots an arrow.\n18820,anetv_ur873jaQO3A,674,A man is holding a bow and arrow in his hand. The bow and arrow,A man is holding a bow and arrow in his hand.,The bow and arrow,gold,is cut in half.,is caught by an arrow and arrow.,are lit.,is shown up close.\n18821,anetv_ur873jaQO3A,12634,He shows the up close mechanics of the bow. He,He shows the up close mechanics of the bow.,He,gold,starts playing the saxophone.,puts the pedals on the gate and zips it up.,is then shown demonstrating how to use the bow and arrow to shoot at targets.,\"hugs his foot, and smiles.\"\n18822,anetv_ur873jaQO3A,12632,A man is standing outside in front of a row of trees. He,A man is standing outside in front of a row of trees.,He,gold,is surrounded by a yellow line going around the tree.,is in a room and doing several stretches.,stands on a blue mat and climbs onto the fence.,is holding and talking about an archery set.\n18823,anetv_ur873jaQO3A,12633,He is holding and talking about an archery set. He,He is holding and talking about an archery set.,He,gold,is then shown doing his own trick.,is shown using his hands in the salon.,shows the up close mechanics of the bow.,is shown taking the picture on a leaf board off into the background.\n18824,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16365,The man casually chews gum. The driver,The man casually chews gum.,The driver,gold,looks up at the man's coke face.,pulls out of an open window where he arrives in a black suv.,reluctantly hands his boss a cellphone detonator with wires and electronics taped on.,\"stares after her, then shifts his contemplative eyes, then saunters off in the driveway.\"\n18825,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16367,\"Behind him, armed men in body armor and gas masks fill the truck. Someone\",\"Behind him, armed men in body armor and gas masks fill the truck.\",Someone,gold,advances to reach of the end.,drops into the lake holes where a gypsy wraps his arm around his ankles.,\"runs away, someone and the others stare at the giant fish.\",rolls on the ground as frantic civilians scatter through the smoke and someone.\n18826,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16398,\"Returning to the street, it sideswipes a car. Someone\",\"Returning to the street, it sideswipes a car.\",Someone,gold,runs out of a car to smooth traffic.,sets its hand beside a closed loading hatch.,gets in a flatbed truck.,\"comes in, takes up his bags, carefully hurls it to his dad.\"\n18827,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16387,\"He tosses someone a jacket. Someone blocks the van, and someone\",He tosses someone a jacket.,\"Someone blocks the van, and someone\",gold,drives it as the police car starts parked outside.,\"falls off, flanked by a group of armed men.\",slams on the brakes.,marches on a troubled sidewalk.\n18828,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16368,Someone rolls on the ground as frantic civilians scatter through the smoke and someone. Someone,Someone rolls on the ground as frantic civilians scatter through the smoke and someone.,Someone,gold,climbs to his feet and jumps through the chaos.,tumbles out of the window and disappears.,begins to walk away.,\"appear in the water, jumps and looks up over the balustrade.\"\n18829,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16340,\"Outside the courthouse, hundreds of protesters gather. Someone\",\"Outside the courthouse, hundreds of protesters gather.\",Someone,gold,strolls through the chaos.,reach the chamber's outer junction area.,glances nervously to the fireplace.,scans his arms and concentrates.\n18830,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16372,\"Someone helps someone to his feet, as the men rush inside the building. A masked man\",\"Someone helps someone to his feet, as the men rush inside the building.\",A masked man,gold,looks puzzled while money are on his shoulders as they sit up.,shoots the policeman and shoots a soldier in the knee.,leaps over the rows of chained males.,tosses a duffel bag to his dark - haired boss.\n18831,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16359,\"The prisoners simultaneously sit in their adjacent glass cells, and someone faces someone. Slowly turning, someone\",\"The prisoners simultaneously sit in their adjacent glass cells, and someone faces someone.\",\"Slowly turning, someone\",gold,produces two wand guns.,nestles his temple against the invisible western.,turns and returns warily towards the stage.,connects with his glaring eyes.\n18832,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16378,They shoot the soldier without hesitation. Someone,They shoot the soldier without hesitation.,Someone,gold,\"just rolls down the rope, each desk, every guy, and the other cronies.\",\"emerges through the haze, gripping someone's handcuffs.\",both very parked.,looks at his butt stonily.\n18833,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16388,\"Elsewhere, someone hurries down a debris - covered street, as two of his armed men flank him. Moving to the driver's door, someone\",\"Elsewhere, someone hurries down a debris - covered street, as two of his armed men flank him.\",\"Moving to the driver's door, someone\",gold,opens his eyes and peeks out.,climbs into someone's boat.,pulls on the locked handle.,heads off and someone enters out the driver's window.\n18834,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16383,The masked woman mercilessly executes an injured civilian and pieces of ceiling sprinkle down. She slowly,The masked woman mercilessly executes an injured civilian and pieces of ceiling sprinkle down.,She slowly,gold,\"proceeds through the room, stopping beside the dark - haired boss.\",goes in and moves around the room.,turns away from the window and peeks through.,\"moves over the room slowly, patting him in the face.\"\n18835,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16366,The driver reluctantly hands his boss a cellphone detonator with wires and electronics taped on. The three Sedans,The driver reluctantly hands his boss a cellphone detonator with wires and electronics taped on.,The three Sedans,gold,are camera as someone drives at full drive.,remain still as the court session continues inside.,\"climb into the back drawer, and briefly follows someone to the rooftop.\",step onto the elevator at the open quad where someone lays back a stack of letters.\n18836,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16361,\"The old man averts his gaze and faces the courtroom. At the checkpoint, the soldier\",The old man averts his gaze and faces the courtroom.,\"At the checkpoint, the soldier\",gold,\"warms the third officer down, now wearing his mask and fights looking up.\",tips the bank vault doors forward as his agent checks out.,makes a cessna truck down the stream.,finishes searching the third sedan and waves them through.\n18837,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16338,\"Elsewhere, police vehicles surround a parked prisoner transport truck. Uniformed Russian soldiers along with an armed guard in a ski mask,\",\"Elsewhere, police vehicles surround a parked prisoner transport truck.\",\"Uniformed Russian soldiers along with an armed guard in a ski mask,\",gold,escort someone and someone to the truck.,grabbing in to a thread in a carriage.,\"cowboy hat, a knife.\",who answers his cell.\n18838,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16344,\"At the courthouse, two police motorcycles lead the heavily guarded motorcade to the front entrance. Someone\",\"At the courthouse, two police motorcycles lead the heavily guarded motorcade to the front entrance.\",Someone,gold,\"stops in front of a stately stone building, silhouetted in a lightning light.\",\"stands alone nearby, with protesters marching behind him.\",\"shifts his attention, his helmet glare blazing with the rifle.\",walks up inside the supposed building.\n18839,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16352,\"Uniformed soldiers seal every exit. From overhead, the three black Sedans\",Uniformed soldiers seal every exit.,\"From overhead, the three black Sedans\",gold,round the corner and continue down a one - way street.,descend along the girder created by a fiery train.,turn in the engines streaming off the tank.,ride down after a street.\n18840,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16358,\"Using a rounded mirror on a pole, a soldier checks the underside of the first Sedan. Then he quickly\",\"Using a rounded mirror on a pole, a soldier checks the underside of the first Sedan.\",Then he quickly,gold,jumps off the speeding board and sees the inspector approaching from the arena.,moves on to the second.,turns an address and peruses the number.,approaches the birder's control hitch.\n18841,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16391,\"Spinning around, someone spots the van nearby. Someone\",\"Spinning around, someone spots the van nearby.\",Someone,gold,\"gazes up at him for a moment, then takes a deep breath.\",sees someone and his crew.,slides the car door open.,rides a bike down a narrow street in a grassy town.\n18842,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16339,\"Uniformed Russian soldiers along with an armed guard in a ski mask, escort someone and someone to the truck. Elsewhere, three black Sedans\",\"Uniformed Russian soldiers along with an armed guard in a ski mask, escort someone and someone to the truck.\",\"Elsewhere, three black Sedans\",gold,wait either side cooling on the wood.,\"move through an alley, barely wide enough for cars.\",surround a white bench surrounded by black plastic containers.,march down a small road to the news room.\n18843,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16376,\"Someone leads someone down a dark corridor. Sitting up, an injured soldier\",Someone leads someone down a dark corridor.,\"Sitting up, an injured soldier\",gold,aims his gun on the ground.,takes two rifles from his hand.,beats a goateed man.,reaches for his weapon as the masked men enter.\n18844,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16343,\"Fixing his suit jacket he continues downstairs. At the courthouse, two police motorcycles\",Fixing his suit jacket he continues downstairs.,\"At the courthouse, two police motorcycles\",gold,ammo a car with his escort.,lead the heavily guarded motorcade to the front entrance.,stand in the middle of the floor of a military estate.,haul someone over the scruff of a luxury vehicle.\n18845,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16379,\"Someone emerges through the haze, gripping someone's handcuffs. The old man\",\"Someone emerges through the haze, gripping someone's handcuffs.\",The old man,gold,struggles to break free.,carries an old comfy over his head.,takes someone's mechanical arm and lays it over someone's head.,convulses on the kitchen floor with the broom.\n18846,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16349,His softening gaze slowly drifts to the ground. The prisoners,His softening gaze slowly drifts to the ground.,The prisoners,gold,are quickly moving along spear ground.,continue through two lines of darkly clad armed guards.,are relaxing to hear.,run among their newly dug among dead derby playing.\n18847,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16350,\"The prisoners continue through two lines of darkly clad armed guards. Inside, a crowded courtroom\",The prisoners continue through two lines of darkly clad armed guards.,\"Inside, a crowded courtroom\",gold,is being photographed in one of the nazi bears shining arrows to monitors.,erupts as the soldiers escort the man.,is built to a full building.,is beautifully suspended by broken stone.\n18848,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16346,\"As a policeman opens the truck, uniformed soldiers escort the prisoners out. The black Sedans\",\"As a policeman opens the truck, uniformed soldiers escort the prisoners out.\",The black Sedans,gold,shoots to one last line.,continue in an evenly spaced line.,lift over a hearse at a train station.,is expertly turned into two prisoners.\n18849,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16399,\"Reaching over, he grabs an earpiece from the glove box and puts it on. The armored truck\",\"Reaching over, he grabs an earpiece from the glove box and puts it on.\",The armored truck,gold,drops from a supply hatch.,takes the tip of a machine gun.,lies on top of it.,sends a parked car flying.\n18850,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16371,\"The armored truck parks beside the charred Sedans, and the masked men pour out the back. Someone\",\"The armored truck parks beside the charred Sedans, and the masked men pour out the back.\",Someone,gold,crosses back to his feet as he steps away.,\"helps someone to his feet, as the men rush inside the building.\",crouches off the bed.,takes another swig of cash.\n18851,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16370,\"Inside, someone kicks the grate off his cell and finds someone hunched next to his. The armored truck parks beside the charred Sedans, and the masked men\",\"Inside, someone kicks the grate off his cell and finds someone hunched next to his.\",\"The armored truck parks beside the charred Sedans, and the masked men\",gold,shoot and celebrate with all his might.,bump against a wall.,begin in at a humiliated someone.,pour out the back.\n18852,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16369,\"Someone climbs to his feet and jumps through the chaos. Inside, someone\",Someone climbs to his feet and jumps through the chaos.,\"Inside, someone\",gold,hears an approaching elk carrying down his companions.,covers a backpack over his head.,kicks the grate off his cell and finds someone hunched next to his.,\"stops at one side of the center inn, swinging in a fancy bar.\"\n18853,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16354,\"He watches a large armored truck, reverse behind a building corner at the end of the block. In the truck, a dark - haired man\",\"He watches a large armored truck, reverse behind a building corner at the end of the block.\",\"In the truck, a dark - haired man\",gold,peers out from behind the door.,opens his car door.,checks the timer on his watch.,makes his way inside a stone desk.\n18854,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16351,\"Inside, a crowded courtroom erupts as the soldiers escort the man. The soldiers\",\"Inside, a crowded courtroom erupts as the soldiers escort the man.\",The soldiers,gold,throw the piece of fine foam at each other's feet.,\"cross the citadel, running towards someone with someone who is at the bottom of the table illuminating a pistol next to an old woman\",place someone and someone in adjacent thick glass holding cells.,watch them run past a veranda.\n18855,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16374,Someone leaps a half wall and faces someone. The masked men,Someone leaps a half wall and faces someone.,The masked men,gold,stand back with eye craning.,clings to the villagers - - only one of the trees.,talk to the hydra.,charge up the stairs.\n18856,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16341,\"Someone strolls through the chaos. Elsewhere, someone\",Someone strolls through the chaos.,\"Elsewhere, someone\",gold,walks through a dim arched hallway.,searches into a bunk painting.,pulls the card inside from his forehead.,takes the report.\n18857,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16342,\"Elsewhere, someone walks through a dim arched hallway. The three Sedans\",\"Elsewhere, someone walks through a dim arched hallway.\",The three Sedans,gold,watch in a corner behind a pair of doors.,arrive at the second floor roof.,travel a street along a river.,drop pass on either side of their pond.\n18858,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16363,\"As the checkpoint bar rises, the black Sedans enter the restricted area beneath the rooftop snipers. They\",\"As the checkpoint bar rises, the black Sedans enter the restricted area beneath the rooftop snipers.\",They,gold,petite dancers eye upon their shoulders and face.,round a raised curb by a side entrance and park in a line along the courthouse.,be mopping a short corridor before school.,\"cross all along a large black mound, looking up at the passengers.\"\n18859,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16347,\"As the soldiers escort the prisoners along the barricaded path, someone spots his son. Someone\",\"As the soldiers escort the prisoners along the barricaded path, someone spots his son.\",Someone,gold,holds up a broken ramp between their hinges.,runs up through the window and peeks through the gap into the back wall of the van to close the of fire.,trails her wounded gaze as she falls.,\"remains still with his brow tense, as he watches his son reach the courthouse stairs.\"\n18860,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16356,\"In the courtroom, the prisoners stand attentively in their holding cells. Someone\",\"In the courtroom, the prisoners stand attentively in their holding cells.\",Someone,gold,\"sits in bed, staring into space.\",is propped up over her shoulder.,joins someone at a construction conference in a ship.,glances over at someone's son.\n18861,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16396,The armored truck rumbles toward someone. Someone,The armored truck rumbles toward someone.,Someone,gold,stops when someone looks over his eyes.,looks up at the hilton.,runs around more refugees as he strides by.,eyes the truck in his rear view mirror as he drives over a cobblestone courtyard.\n18862,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16360,\"Slowly turning, someone connects with his glaring eyes. The old man\",\"Slowly turning, someone connects with his glaring eyes.\",The old man,gold,averts his gaze and faces the courtroom.,throws off the mask and glares at the dead man.,leaps up someone's phone and locks it.,walks to the chair and backs toward them.\n18863,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16389,\"Moving to the driver's door, someone pulls on the locked handle. Someone\",\"Moving to the driver's door, someone pulls on the locked handle.\",Someone,gold,exits the van and looks about.,climbs up slowly and unfastens the chain around the latch.,\"moves up and down on the pavement, weaving wildly from the conversation.\",\"stops, just grinning as marley spins around on the roof.\"\n18864,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16377,\"Sitting up, an injured soldier reaches for his weapon as the masked men enter. They\",\"Sitting up, an injured soldier reaches for his weapon as the masked men enter.\",They,gold,set up around the burning wreckage.,look down each wielding the lower guns.,shoot the soldier without hesitation.,form the concrete on a rooftop.\n18865,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16353,\"Outside the courthouse, someone slowly tilts his head. He\",\"Outside the courthouse, someone slowly tilts his head.\",He,gold,\"stares upwards at someone, who remains in the water but watching intently.\",sits on a chair with his head resting on someone's foot.,\"watches a large armored truck, reverse behind a building corner at the end of the block.\",sets down his hat.\n18866,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16397,Someone eyes the truck in his rear view mirror as he drives over a cobblestone courtyard. The truck,Someone eyes the truck in his rear view mirror as he drives over a cobblestone courtyard.,The truck,gold,steals only its visor.,\"follows, smashing through a cement monument.\",emerges from our arizona house.,pulls someone and a squad car.\n18867,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16357,\"Someone glances over at someone's son. Using a rounded mirror on a pole, a soldier\",Someone glances over at someone's son.,\"Using a rounded mirror on a pole, a soldier\",gold,flings the car slightly at someone and someone.,checks the underside of the first sedan.,shoots his shotgun in the shoulder.,fires out one shot at a speeding car.\n18868,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16395,He and his men hurry inside. Someone,He and his men hurry inside.,Someone,gold,\"drops the doorknob, holding the elder necklace in his hand.\",\"takes off, leaving his father on the street.\",pierces someone's hand.,enters and sees someone with every picture of himself as someone works there.\n18869,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16385,\"As someone starts away, someone pulls him toward the blue van. With someone in the passenger seat, he\",\"As someone starts away, someone pulls him toward the blue van.\",\"With someone in the passenger seat, he\",gold,\"rubs his temple, then looks out.\",reverses on to the street.,collapses on the car.,climbs off the bed.\n18870,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16364,They round a raised curb by a side entrance and park in a line along the courthouse. The dark - haired man,They round a raised curb by a side entrance and park in a line along the courthouse.,The dark - haired man,gold,holds out his hand.,\"joins the couple, his gaze fixed appraisingly ahead.\",swoops down the glass.,stands by the giant.\n18871,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16345,\"Someone stands alone nearby, with protesters marching behind him. As a policeman opens the truck, uniformed soldiers\",\"Someone stands alone nearby, with protesters marching behind him.\",\"As a policeman opens the truck, uniformed soldiers\",gold,load their vehicles onto an abandoned warehouse from the london rafting facility.,get off their car and load their captive.,hurry into a police station.,escort the prisoners out.\n18872,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16381,\"In the courtroom, the masked men scour the someone, aiming flashlight - mounted rifles. Their boss\",\"In the courtroom, the masked men scour the someone, aiming flashlight - mounted rifles.\",Their boss,gold,lead someone to bed near the edge of the table.,on the tv donning a menacing mask as an older tracker shows part of the chamber.,finds the glass cells with no one inside.,ushers one of them out past their prisoners and makes an instrument.\n18873,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16375,The masked men charge up the stairs. Someone,The masked men charge up the stairs.,Someone,gold,topples from the transmitter tower.,leads someone down a dark corridor.,punches someone into someone hunter's basket.,comes furiously and cuts to the left.\n18874,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16392,Someone drags someone back and someone's small thug fires. Someone,Someone drags someone back and someone's small thug fires.,Someone,gold,aims at his father's head.,knocks it off after a few punches.,watches the passengers pass back inside the crate.,sprints away from his broomstick.\n18875,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16380,\"Someone grabs a pistol from a deceased officer and pushes someone forward. In the courtroom, the masked men\",Someone grabs a pistol from a deceased officer and pushes someone forward.,\"In the courtroom, the masked men\",gold,break through a row of bank guards.,peer dashing into the building's factory.,\"scour the someone, aiming flashlight - mounted rifles.\",fill a safe with abandoned hostages.\n18876,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16382,Their boss finds the glass cells with no one inside. They,Their boss finds the glass cells with no one inside.,They,gold,shoot off the roof.,continue searching as the masked brunette enters.,peer into the operating room.,\", someone starts the fridge.\"\n18877,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16362,\"At the checkpoint, the soldier finishes searching the third Sedan and waves them through. Someone\",\"At the checkpoint, the soldier finishes searching the third Sedan and waves them through.\",Someone,gold,places the weapon against the key.,finds a barrier and taps on his toes on the bath floor.,quickly over a hanger and back along the dimly lit driveway.,steps toward the crowd of protesters.\n18878,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16348,\"Someone remains still with his brow tense, as he watches his son reach the courthouse stairs. His softening gaze slowly\",\"Someone remains still with his brow tense, as he watches his son reach the courthouse stairs.\",His softening gaze slowly,gold,drifts down the darkened street.,ventures up ahead of his grandfather.,sets someone's hands through his pockets.,drifts to the ground.\n18879,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-2726,16386,\"With someone in the passenger seat, he reverses on to the street. He\",\"With someone in the passenger seat, he reverses on to the street.\",He,gold,pulls out a small blue car with his green.,tosses someone a jacket.,calls the car's rear door.,\"steps to the end of the fence, and reaches for his keys.\"\n18880,anetv_Bg-0ibLZrgg,9845,\"Then, the man get out the water, after he takes surfboard and return to surf in a high wave. People\",\"Then, the man get out the water, after he takes surfboard and return to surf in a high wave.\",People,gold,swim in the beach.,sail in the sea standing under the sea to the sea.,cross the street where the lures is primed.,grabs it from one of the surfers into the water.\n18881,anetv_Bg-0ibLZrgg,9844,\"A man surfs in a small wave along the beach. Then, the man\",A man surfs in a small wave along the beach.,\"Then, the man\",gold,wash out of the water.,\"get out the water, after he takes surfboard and return to surf in a high wave.\",does the hand stand and pans to the water.,pass through the water.\n18882,anetv_Bg-0ibLZrgg,9843,People surf in the ocean and a man pass under a huge wave. A man,People surf in the ocean and a man pass under a huge wave.,A man,gold,\"waves from a hand to the side, as the boy pushes him back.\",\"is shown jogging backwards behind the water, followed by a man on the water as well as a boat.\",surfs in a small wave along the beach.,pulls a board to continue skiing jive.\n18883,anetv_sN1MPx9hb1I,5799,An intro is shown of a woman knitting with her hands while various pictures of cats are shown in the background. Text on how to knit,An intro is shown of a woman knitting with her hands while various pictures of cats are shown in the background.,Text on how to knit,gold,uses appears as a large woman continues to paint her nails.,are shown as well as clothing.,appears while her hands continue moving to demonstrate how to properly knit.,and a vans top is shown.\n18884,anetv_8gKV8f3qSOg,4882,\"She is shown massaging cream into her face, then rinsing it off with water and patting dry with a towel. She then\",\"She is shown massaging cream into her face, then rinsing it off with water and patting dry with a towel.\",She then,gold,speaks to the camera again.,blow dries her hair on the side of his head.,brushed her hair and how to sharpen the razor.,lays over the towel and puts the tissue back on a dresser.\n18885,anetv_8gKV8f3qSOg,4881,\"A woman in a purple dress is seated, speaking to the camera. She\",\"A woman in a purple dress is seated, speaking to the camera.\",She,gold,\"stops on a balcony, then performs multiple flips and tricks before it.\",\"is shown massaging cream into her face, then rinsing it off with water and patting dry with a towel.\",looks left and right again.,begins playing with her hands down the center of the stage.\n18886,anetv_2rgamh4uty8,5306,\"The man opened a bottle, rubbed the bottle on the ski board. The man\",\"The man opened a bottle, rubbed the bottle on the ski board.\",The man,gold,adds to water from the sink.,rubbed the wax on the skiboard.,removes the shaken liquid from his tank.,wipes the eye with a touched towel.\n18887,anetv_2rgamh4uty8,5307,The man rubbed the wax on the skiboard. The man,The man rubbed the wax on the skiboard.,The man,gold,snowboarding down a hill on the side.,brushed the ski board.,sprays the ski with the electric shaver.,rubs the ski with a cloth and see the white into the white shop.\n18888,anetv_2rgamh4uty8,19944,The man adds different waxes to a snowboard surface on the workbench. The worker,The man adds different waxes to a snowboard surface on the workbench.,The worker,gold,washes the paper in the water and shows the image.,uses a brush to apply the wax to the skis surface.,showcases the buckets and finishes supplies for talking.,cuts iron wallpaper on the man's ironing board.\n18889,anetv_2rgamh4uty8,19943,A man applies different waxes to a ski that is sitting on a work bench. The man,A man applies different waxes to a ski that is sitting on a work bench.,The man,gold,adds different waxes to a snowboard surface on the workbench.,slips the box on the trolley and twists a few times.,stands over the ski and rubs lotion on his face.,uses the scraper to clean off him as fast as possible.\n18890,lsmdc0019_Pulp_Fiction-56712,6897,\"Someone is on all fours trying to crawl to the bathroom, but it's like she is trying to crawl with the bones removed from her knees. Blood\",\"Someone is on all fours trying to crawl to the bathroom, but it's like she is trying to crawl with the bones removed from her knees.\",Blood,gold,\"from slightly above is an old root, then moves to its surface slightly.\",seems to be having a break.,begins to drip from someone's nose.,\"the sarcophagus - like the tiny looks support him, they have to turn up and go back and stairs as fast as possible.\"\n18891,lsmdc0019_Pulp_Fiction-56712,6890,Her hand reaches back in the pocket and pulls out his Zippo lighter. She,Her hand reaches back in the pocket and pulls out his Zippo lighter.,She,gold,\"gets out, propelling herself at the actual island.\",shrugs them aside as he leaves the bedroom.,\"slaps the lighter against her leg, trying to light it fancy - style like someone did.\",smacks it at someone.\n18892,lsmdc0019_Pulp_Fiction-56712,6892,\"She triumphantly brings the fat flame up to her fat smoke, lighting it up, then loudly snaps the Zippo closed. Someone - made cigarette is brought up to her lips, and she\",\"She triumphantly brings the fat flame up to her fat smoke, lighting it up, then loudly snaps the Zippo closed.\",\"Someone - made cigarette is brought up to her lips, and she\",gold,\"lifts himself up to his feet, careful to stay trained.\",sneers stonily toward someone.,\"takes a long, cool drag.\",begins to wear a pair of leather briefs.\n18893,lsmdc0019_Pulp_Fiction-56712,6888,\"Like a little girl playing cowboy, she spreads the tobacco on some rolling paper. Imitating what he did earlier, licks the paper and\",\"Like a little girl playing cowboy, she spreads the tobacco on some rolling paper.\",\"Imitating what he did earlier, licks the paper and\",gold,\"stuffs them into the sack, leaving and grinning.\",picks it after way for the blond mouse.,rolls it into a pretty good cigarette.,takes the paper out of her pocket.\n18894,lsmdc0019_Pulp_Fiction-56712,6893,\"Someone - made cigarette is brought up to her lips, and she takes a long, cool drag. Her hand\",\"Someone - made cigarette is brought up to her lips, and she takes a long, cool drag.\",Her hand,gold,is begun to the top of her head.,slides the zippo back in the overcoat pocket.,runs out of keys behind her ear.,goes into her mouth without emotion.\n18895,lsmdc0019_Pulp_Fiction-56712,6894,\"Those fingers bring out a plastic bag with white powder inside, the madman that someone bought earlier from someone. Wearing a big smile, someone\",\"Those fingers bring out a plastic bag with white powder inside, the madman that someone bought earlier from someone.\",\"Wearing a big smile, someone\",gold,shoves on another sketch of her squeezing medicine.,strides up to the podium and gazes out of a window at the flower path.,spots his hands over quickly and pinches them shut.,brings the bag of heroin up to her face.\n18896,lsmdc0019_Pulp_Fiction-56712,6896,\"Someone dries his hands on a towel while he continues his dialogue with the mirror. Someone is on all fours trying to crawl to the bathroom, but it\",Someone dries his hands on a towel while he continues his dialogue with the mirror.,\"Someone is on all fours trying to crawl to the bathroom, but it\",gold,has been tangled in water.,takes out a can by the sink.,was prevent him from land.,'s like she is trying to crawl with the bones removed from her knees.\n18897,lsmdc0019_Pulp_Fiction-56712,6889,\"Imitating what he did earlier, licks the paper and rolls it into a pretty good cigarette. Her hand\",\"Imitating what he did earlier, licks the paper and rolls it into a pretty good cigarette.\",Her hand,gold,reaches back in the pocket and pulls out his zippo lighter.,is agitatedly wires under the lid.,is driven slowly along a trail of black goo as someone comes towards the boy and sticks out her tongue.,\"ruffles his hair, trails his fingers around his wife's cheek.\"\n18898,lsmdc0019_Pulp_Fiction-56712,6895,\"Someone has the unbeknownst - to - her heroin cut up into big lines on her glass top coffee table. Taking her trusty hundred dollar bill like a human Dust - Buster, she quickly\",Someone has the unbeknownst - to - her heroin cut up into big lines on her glass top coffee table.,\"Taking her trusty hundred dollar bill like a human Dust - Buster, she quickly\",gold,snorts the fat line.,sets his flat money down.,picks up another model.,\"curves another pair of slim, red boots.\"\n18899,lsmdc0019_Pulp_Fiction-56712,6891,\"What do you know, she did it! She\",\"What do you know, she did it!\",She,gold,has speck on the bottom in the street.,tells you how you could wiggle your lasso pleasure.,\"triumphantly brings the fat flame up to her fat smoke, lighting it up, then loudly snaps the zippo closed.\",\"looks down disappointed, looking feelings.\"\n18900,anetv_PIr3WhkKB1o,9546,\"The newscaster woman is now shown outdoors and talking to people on a beach, and clips of people sunbathing, applying suntan lotion, and different types of suntan lotions are show. The newscaster woman\",\"The newscaster woman is now shown outdoors and talking to people on a beach, and clips of people sunbathing, applying suntan lotion, and different types of suntan lotions are show.\",The newscaster woman,gold,\"why she is filming for young silver women are gathered in a plaza area, indicating ones swirling around pole dance making a meal.\",\"brushes cream in a large white picture of blue mother and pink, in red soil while the girl play ice.\",\"is now sitting on the beach, holding a bottle of suntan lotion and begins to apply lotion all over her arm.\",turns while talking to the dog in the field.\n18901,anetv_PIr3WhkKB1o,9547,\"The newscaster woman is now sitting on the beach, holding a bottle of suntan lotion and begins to apply lotion all over her arm. A new clip appears with the newscaster woman interviewing a Doctor, then a woman is shown sitting in a chair while the Doctor is standing up talking to her, and the banner below say's his name is dr paul cohen dermatologist and various clips of people\",\"The newscaster woman is now sitting on the beach, holding a bottle of suntan lotion and begins to apply lotion all over her arm.\",\"A new clip appears with the newscaster woman interviewing a Doctor, then a woman is shown sitting in a chair while the Doctor is standing up talking to her, and the banner below say's his name is dr paul cohen dermatologist and various clips of people\",gold,combing and skiing on some dirty board.,horrified laugh.,hanging at her and having sex.,playing in the sun play in between him talking.\n18902,anetv_PIr3WhkKB1o,9548,\"A new clip appears with the newscaster woman interviewing a Doctor, then a woman is shown sitting in a chair while the Doctor is standing up talking to her, and the banner below say's his name is dr paul cohen dermatologist and various clips of people playing in the sun play in between him talking. The newscaster woman is back indoors with the man she was shown with earlier and they\",\"A new clip appears with the newscaster woman interviewing a Doctor, then a woman is shown sitting in a chair while the Doctor is standing up talking to her, and the banner below say's his name is dr paul cohen dermatologist and various clips of people playing in the sun play in between him talking.\",The newscaster woman is back indoors with the man she was shown with earlier and they,gold,end with a smile.,'re several people who need their fax.,begin again by holding more instruments.,'re listening in various sports.\n18903,anetv_PIr3WhkKB1o,9545,A special effect video clip appears with someone running on a treadmill and white words on the middle of the screen that read CityNews health. A man and woman newscaster,A special effect video clip appears with someone running on a treadmill and white words on the middle of the screen that read CityNews health.,A man and woman newscaster,gold,begin to hump them from several different angles with other women in black.,\"appear sitting on stools, both dressed in work attire and talking to the camera and to one another.\",sit high and talk while the woman with the white one is explaining to her friend.,are inside a room playing a saxophone together talking.\n18904,anetv_kxUkqmzS2wc,4697,A man puts shaving cream on his face. He,A man puts shaving cream on his face.,He,gold,lifts another shaving skin from his neck.,puts gel on his arm.,starts shaving his face with a razor.,applies cream on a face and rubs shaving cream onto his face.\n18905,anetv_Jk3oA2mhPD8,13743,She does several back flips on a trampoline. She,She does several back flips on a trampoline.,She,gold,does split and she throws a ball and the camera zooms out on the jacket.,does a flip into a pile of foam pieces.,air flashes as she sees a dishes.,\"pops up, tries to shoot multiple times, then dives into a pool.\"\n18906,anetv_aVDVMN9hE8A,14578,\"The person puts two bottles and two slices of bread on the table, then he slices the cheese. After, the person puts the cheese and jam on the bread, then he\",\"The person puts two bottles and two slices of bread on the table, then he slices the cheese.\",\"After, the person puts the cheese and jam on the bread, then he\",gold,\"screws all the ingredients in cucumber slices, then adds a spoon.\",eats the sandwich and drink soda from bottle.,yanks the along the ham salad and gives the sandwich tin all over.,\"sharpens the knife into omelets, then slices a knife.\"\n18907,lsmdc3041_JUST_GO_WITH_IT-18360,6544,\"Someone faces him with a wide - eyed smirk. Now at a private school, someone\",Someone faces him with a wide - eyed smirk.,\"Now at a private school, someone\",gold,leads a student through a crowded hallway.,hangs neatly on a roof.,turns to the middle and cuts through the demonstration.,climbs a ladder at the top of a tower and stands at the edge of the step.\n18908,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95822,19145,The staircase swings into a different position on the opposite wall. Someone,The staircase swings into a different position on the opposite wall.,Someone,gold,comes out after him.,opens the door at the top of the stairs.,drops the bowling club.,sashays into the room.\n18909,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95822,19149,\"The door opens, and they rush through. He\",\"The door opens, and they rush through.\",He,gold,holds up a lantern and peers around suspiciously.,locks the door behind them and hurries to the door.,\"enters the salon, finding the supplies clasped with his hands.\",arrives in her dressing gown and downstairs.\n18910,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95822,19147,They see a statue covered in cobwebs. The caretaker's scary red - eyed cat,They see a statue covered in cobwebs.,The caretaker's scary red - eyed cat,gold,\"walks within, farther along a ridge away from a house above, flashes on the door, revealing their oldest son.\",leads high into the room.,falls into its center.,watches them run down a torch - lit corridor.\n18911,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95822,19148,The caretaker's scary red - eyed cat watches them run down a torch - lit corridor. Someone,The caretaker's scary red - eyed cat watches them run down a torch - lit corridor.,Someone,gold,looks around from worriedly on the gymnasium floor.,is hardly ready to react.,introduced as someone's officer off.,struggles with the latch.\n18912,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95822,19146,Someone opens the door at the top of the stairs. They,Someone opens the door at the top of the stairs.,They,gold,open the door.,see a statue covered in cobwebs.,run to the end of the hall.,run into the elegant office and lean in magic goods.\n18913,anetv_V-6nF6U6rfI,14575,A gymnast is seen standing ready and holding her arms up that lead into her climbing on a beam and performing a gymnastics routine on the beam. The girl,A gymnast is seen standing ready and holding her arms up that lead into her climbing on a beam and performing a gymnastics routine on the beam.,The girl,gold,lands the other girls along the mat on top of her and her performance decorates.,is seen jump roping routine with her hands as well as climbing across the bars and performing tricks.,performs several jumps and tricks that ends with her jumping into a mat and holding her arms up.,continues swinging around and performs several flips while jumping down on the top as others watch on back.\n18914,anetv_2iW1Eq9SDW4,1880,One person then hits a ball up into the air to another person. The people then,One person then hits a ball up into the air to another person.,The people then,gold,begin hitting him again and ends by walking down and looking off into the distance.,fall down and continue fiving one another.,kneel by holding their rackets and throwing a ball of white board into the pool.,play a game of volleyball with one another.\n18915,anetv_2iW1Eq9SDW4,1879,A small group of people are seen standing around a sandy beach. One person then,A small group of people are seen standing around a sandy beach.,One person then,gold,extends her arms down to capture one another.,begins playing with one another while looking into the camera.,is pushing a puck around a table.,hits a ball up into the air to another person.\n18916,anetv_2iW1Eq9SDW4,6206,\"Once they have finished talking, the beach volley ball game begins and the competition starts. However, after a couple of serves, the lady in the front gets hit in the head with the ball and everybody\",\"Once they have finished talking, the beach volley ball game begins and the competition starts.\",\"However, after a couple of serves, the lady in the front gets hit in the head with the ball and everybody\",gold,gets out and is set on.,jumps to see it.,maintains the successful place as well as it's shot.,stops to look at her.\n18917,anetv_00ZRoqhhb8g,13100,A man gets a running start on a outdoor clay colored track and stops short of a line and throws the javelin then watches with an anticipating look as the javelin lands. The man,A man gets a running start on a outdoor clay colored track and stops short of a line and throws the javelin then watches with an anticipating look as the javelin lands.,The man,gold,walks and approaches different ways.,runs with some of his injured family.,stops and spins the rope to make sure it stays underneath.,\"is then shown throwing the javelin several more times with different reactions after the throws, including joy and indifference.\"\n18918,anetv_00ZRoqhhb8g,4326,A group of people in winter gear gather as a man runs down a track. He,A group of people in winter gear gather as a man runs down a track.,He,gold,is pulled on a rope attached to a bridge.,stumbles down a long flight of stairs on the water.,throws a javelin as far as he can.,turns holding a rope and ropes up a ramp on an elevated platform and jumped down.\n18919,lsmdc3086_UGLY_TRUTH-6316,8605,Someone ogles a busty woman standing at the bar behind someone. The producer,Someone ogles a busty woman standing at the bar behind someone.,The producer,gold,prepares exits a cell.,follows his gaze and sneers.,notes her ample bud.,\"pauses, listening.\"\n18920,lsmdc3016_CHASING_MAVERICKS-6531,14375,\"Someone watches as someone looks up at the shark again and exhales more air. As the creature swims away, the mentor\",Someone watches as someone looks up at the shark again and exhales more air.,\"As the creature swims away, the mentor\",gold,leans in front of the door.,lets a limp body tumble into it.,flips and falls back.,grabs the teen and urges him up toward the surface.\n18921,lsmdc3016_CHASING_MAVERICKS-6531,14371,\"As someone watches it calmly, someone flails his arms and recoils. The shark\",\"As someone watches it calmly, someone flails his arms and recoils.\",The shark,gold,\"turns, giving a view of its glassy black eyes.\",descends just overhead as a dark orange cloud walks past.,swims past the blue escape and swoops in through the hole in the floor.,moves from their grip.\n18922,lsmdc3016_CHASING_MAVERICKS-6531,14377,\"The teen edges back against the cabin. Climbing on board, someone\",The teen edges back against the cabin.,\"Climbing on board, someone\",gold,removes his mask and faces his breathless protege.,looks down from the grenade and clicks its teeth.,struggles to make a submerged again.,watches as he unties the train.\n18923,lsmdc3016_CHASING_MAVERICKS-6531,14373,\"Noticing someone's rising panic, someone turns the boy to face him and gives calming gestures. Large air bubbles\",\"Noticing someone's rising panic, someone turns the boy to face him and gives calming gestures.\",Large air bubbles,gold,\"hover in the air on a sea of fish, as the water closes in.\",\"rise up the slanted floor, as well as the rocky passage below.\",escape from the teen's mouth.,float from the way.\n18924,lsmdc3016_CHASING_MAVERICKS-6531,14369,\"Facing someone, he jerks his thumb upward. Lifting his contented gaze, the teen\",\"Facing someone, he jerks his thumb upward.\",\"Lifting his contented gaze, the teen\",gold,does a double take.,slides another hand back.,\"swallows boyishly, then scowls.\",shifts his sober stare.\n18925,lsmdc3016_CHASING_MAVERICKS-6531,14372,\"The shark turns, giving a view of its glassy black eyes. Noticing someone's rising panic, someone\",\"The shark turns, giving a view of its glassy black eyes.\",\"Noticing someone's rising panic, someone\",gold,crouches down and hauls out a jolt.,opens the front door of a lantern and unlocks it.,storms off with someone to a plain of beach green water.,turns the boy to face him and gives calming gestures.\n18926,lsmdc3016_CHASING_MAVERICKS-6531,14374,Large air bubbles escape from the teen's mouth. Someone,Large air bubbles escape from the teen's mouth.,Someone,gold,leans his arms closer to marley's ear.,watches as someone looks up at the shark again and exhales more air.,\"shoot down the sky without shattering a drone on the side of the ship, it has propped on a barrier above the crowd.\",\"lounges in a chair at the top of a sketchpad, and is facing someone, his hand wearing knuckles.\"\n18927,lsmdc3016_CHASING_MAVERICKS-6531,14376,\"As the creature swims away, the mentor grabs the teen and urges him up toward the surface. The teen\",\"As the creature swims away, the mentor grabs the teen and urges him up toward the surface.\",The teen,gold,lifts his gaze to the face - laden image.,heaves the massive current toward their shot.,\"looks up at someone, then at the audience.\",edges back against the cabin.\n18928,anetv_mkEME_iWi9o,10338,The game the teams are playing is cricket. They,The game the teams are playing is cricket.,They,gold,see the man squash.,run after the ball and hit it toward the goal.,play hockey with the game moving on screen.,continue to play field tennis as the team scores.\n18929,anetv_mkEME_iWi9o,16904,A players scores a goal and interviews the camera as well as several other players and coaches. The team,A players scores a goal and interviews the camera as well as several other players and coaches.,The team,gold,continues talking while the camera continues down while the game continues.,hold their ball and get by cheering and cheering for the winner.,celebrates with others and pictures shown in the end.,continue to play as they continue to score the balls.\n18930,anetv_mkEME_iWi9o,16903,A game of lacrosse begins with two players fighting and them running across the field. A players,A game of lacrosse begins with two players fighting and them running across the field.,A players,gold,\"runs after a group of girls, including the man who talks and leads them to an indoor field where people cheer.\",scores a goal and interviews the camera as well as several other players and coaches.,congratulate each other and several of the nets pass over and over.,are standing and talking as the two teams play crochet.\n18931,lsmdc1046_Australia-90373,18214,\"He climbs on the horse's back and urges the animal on and out of the water. Wearing only shorts, his long hair streaming out behind him, he\",He climbs on the horse's back and urges the animal on and out of the water.,\"Wearing only shorts, his long hair streaming out behind him, he\",gold,rides through a dusty landscape of thinly spread out trees and soaring rocky crags.,runs along the sandy - length path.,is brushing his beard and features.,returns to his bag.\n18932,lsmdc1046_Australia-90373,18210,The boy lies wide - eyed on the bottom as a White man in a suit falls face - first into the water. He,The boy lies wide - eyed on the bottom as a White man in a suit falls face - first into the water.,He,gold,\"opens his mouth to speak, but we can n't hear a voice behind him.\",\"floats lifelessly over where the boy is lying, his blood staining the water.\",stops at the window.,picks up a rowdy green duck and leans position to retrieve the arrow.\n18933,lsmdc1046_Australia-90373,18217,A bonfire's smoke mixes with the dust in the air. An animal skull,A bonfire's smoke mixes with the dust in the air.,An animal skull,gold,\"crashes a flamethrower on a court, where two thugs stop fighting.\",tilts its head onto a rock.,lies in the middle of a similar uneven wall toward the plumes that billows into dense darkness.,hangs from a dry branch.\n18934,lsmdc1046_Australia-90373,18216,He rides through a settlement of wood buildings and animal pens. A bonfire's smoke,He rides through a settlement of wood buildings and animal pens.,A bonfire's smoke,gold,flares from one of his own.,rises from the dome.,black writing glows in by the candle.,mixes with the dust in the air.\n18935,lsmdc1046_Australia-90373,18221,He peeks through a crack in the tank. An elegant woman in a bonnet and long coat,He peeks through a crack in the tank.,An elegant woman in a bonnet and long coat,gold,runs through a walkway directly along a balcony.,stands outside her bedroom door.,strides purposefully towards the house.,opens the door and peers out into the courtyard.\n18936,lsmdc1046_Australia-90373,18223,A woman rides a horse and a car pulls up at a large country house. A man in a bowler hat,A woman rides a horse and a car pulls up at a large country house.,A man in a bowler hat,gold,rides down on the pommel horse.,gets out of the car.,rides the horse behind the dog.,approaches the woman and waves in front of the camera.\n18937,lsmdc1046_Australia-90373,18215,\"Wearing only shorts, his long hair streaming out behind him, he rides through a dusty landscape of thinly spread out trees and soaring rocky crags. He\",\"Wearing only shorts, his long hair streaming out behind him, he rides through a dusty landscape of thinly spread out trees and soaring rocky crags.\",He,gold,quietly keyhole through it and folds his belt.,rides through a settlement of wood buildings and animal pens.,fends off his sword as the probe tilts upward.,drives around la blackberry.\n18938,lsmdc1046_Australia-90373,18220,He hides in a water tank as a man tries to grab the horse. He,He hides in a water tank as a man tries to grab the horse.,He,gold,grabs it and ties it up.,captures a group of other survivors and the yellow team.,dismounts away and lands on a nearby bench.,peeks through a crack in the tank.\n18939,lsmdc1046_Australia-90373,18213,The horse swims towards him and he strokes its muzzle. He,The horse swims towards him and he strokes its muzzle.,He,gold,holds his hands to his head.,reaches the top of its head.,\"pulls the horses out of the stables and pushes him forward, carrying him at the carriage.\",climbs on the horse's back and urges the animal on and out of the water.\n18940,lsmdc1046_Australia-90373,18218,\"He spots a massively overloaded truck approaching through the dusty haze and dismounts, looking worried. He\",\"He spots a massively overloaded truck approaching through the dusty haze and dismounts, looking worried.\",He,gold,wheels in a parking spot and pulls one of the racecars leading to his car.,pulls off the hood and rolls them down.,sprints through the settlement called faraway downs.,reaches out and takes another seat at the end.\n18941,lsmdc1046_Australia-90373,18211,\"He floats lifelessly over where the boy is lying, his blood staining the water. He\",\"He floats lifelessly over where the boy is lying, his blood staining the water.\",He,gold,\"lowers his hat, settling on mr.\",breaks the surface and sees a horse panicking in the water.,thumps the canvas surface against the mound.,removes his keys and sits at a leather man's chest.\n18942,lsmdc1046_Australia-90373,18212,He breaks the surface and sees a horse panicking in the water. He,He breaks the surface and sees a horse panicking in the water.,He,gold,reaches out towards it.,\"trots up, descending a rocky path, opens the trunk.\",raises his canvas eyes.,is now snowboarding along a trail.\n18943,lsmdc1046_Australia-90373,18219,He sprints through the settlement called Faraway Downs. He,He sprints through the settlement called Faraway Downs.,He,gold,hides in a water tank as a man tries to grab the horse.,fires the pistol and fires to the runway.,approaches as he plops.,pours another final check.\n18944,lsmdc1046_Australia-90373,18222,An elegant woman in a bonnet and long coat strides purposefully towards the house. A woman rides a horse and a car,An elegant woman in a bonnet and long coat strides purposefully towards the house.,A woman rides a horse and a car,gold,lift her by his legs.,pulls up at a large country house.,lifts her up to a boy standing nearby.,talks about the tourists.\n18945,lsmdc1046_Australia-90373,18209,His grandfather grabs his fishing pole. The boy,His grandfather grabs his fishing pole.,The boy,gold,waves at his reflection then catches the quaffle hanging from the basketball school.,lies wide - eyed on the bottom as a white man in a suit falls face - first into the water.,rides serenely near a rocky wooden plowing it with his stick and swims into the ocean.,plants his right hand on the tube and takes out more brushes.\n18946,anetv_lFlQ_xWVt8M,3246,\"The man then puts his mask on, the screen goes black and a very hot flame that is blue, white and green appear and is moving, while a blue cev logo is at the bottom right of the screen. A close up of the man holding a small metal piece\",\"The man then puts his mask on, the screen goes black and a very hot flame that is blue, white and green appear and is moving, while a blue cev logo is at the bottom right of the screen.\",A close up of the man holding a small metal piece,gold,is shown followed by the man tattooing the rag and showing different strands of a completed result.,is shown while a black object points at circular markings in the metal.,begins to move right around his neck along the ends.,is shown again finished the man that took shingle the wall once it walks and how quickly are doing the game together.\n18947,anetv_lFlQ_xWVt8M,3245,\"The man is holding a tool in his right arm and the camera zooms in to show what it is while the man continues to talk. The man then puts his mask on, the screen goes black and a very hot flame that is blue, white and green appear and is moving, while a blue cev logo\",The man is holding a tool in his right arm and the camera zooms in to show what it is while the man continues to talk.,\"The man then puts his mask on, the screen goes black and a very hot flame that is blue, white and green appear and is moving, while a blue cev logo\",gold,is at the bottom right of the screen.,is commenting on the screen and a oher man on it is agitatedly being pictured in the first position to show him posing on the,is on on this point that the man begins to work on his bike too.,wraps around a person posted around the side.\n18948,anetv_lFlQ_xWVt8M,17772,He pulls his mask down and begins using the tool in the dark. He,He pulls his mask down and begins using the tool in the dark.,He,gold,works in a brake one more time.,is showing what he did with the tool.,holds up the high hose as well as the shirt to iron the tire.,spins around and ends by stepping up and down on the faucet.\n18949,anetv_lFlQ_xWVt8M,17771,He is holding a tool in his hand. He,He is holding a tool in his hand.,He,gold,begins to blow dry the long hair of the man.,pulls his mask down and begins using the tool in the dark.,moves the bike seductively and pulls it up.,is using the knife to cut his mulch.\n18950,anetv_lFlQ_xWVt8M,17770,A man in a blue shirt is wearing brown gloves and sitting in a chair. He,A man in a blue shirt is wearing brown gloves and sitting in a chair.,He,gold,is holding a tool in his hand.,is washing the dish in a bath tub.,is ironing a shirt inside the car.,sets down the wallpaper and puffs on it.\n18951,anetv_lFlQ_xWVt8M,3244,A man dressed in protective gear and wearing a metal mask is sitting on metal stool in front of a metal table. The man is holding a tool in his right arm and the camera,A man dressed in protective gear and wearing a metal mask is sitting on metal stool in front of a metal table.,The man is holding a tool in his right arm and the camera,gold,zooms in to show what it is while the man continues to talk.,begins spinning the object.,removes a mask from his mouth.,pans around the person from what left left left.\n18952,anetv_1AZxtWKkRlo,4087,A group of cheerleaders run onto a stage before a cheering audience. They,A group of cheerleaders run onto a stage before a cheering audience.,They,gold,finish and end the routine.,applaud and bring their heads through the streets in unison.,\"get into formation, then begin dancing and flipping as male cheerleaders join them.\",perform a routine and perform gymnastic around the mat.\n18953,anetv_1AZxtWKkRlo,4089,\"They all continue dancing and flipping, doing hand springs. When they are finished, they\",\"They all continue dancing and flipping, doing hand springs.\",\"When they are finished, they\",gold,\"jump up and down happily and walk off the stage, exhausted.\",resume their fencing positions and are shown near the bow and to the first one.,finish the routine and go over the bars frame to flip to scenes of the flipping legs.,use their hands to jump in place on the color stage.\n18954,anetv_1AZxtWKkRlo,4088,\"They get into formation, then begin dancing and flipping as male cheerleaders join them. They all\",\"They get into formation, then begin dancing and flipping as male cheerleaders join them.\",They all,gold,jump on the stage and dance around an dancing women.,cheer in the coaches behind them when they squad dances.,walk off out of the room and eventually cheering in city gymnasium.,\"continue dancing and flipping, doing hand springs.\"\n18955,anetv_F4FpAZJSV1g,8431,Woman is putting numbers in a scoeboard. man,Woman is putting numbers in a scoeboard.,man,gold,is in a room talking to a camera.,is running in the middle of the field.,is standing in a bowling alley by a park.,sits in a yellow room talking with a woman.\n18956,anetv_xXGc5_0_2QI,13637,He gets off of his horse and brings the bull down and starts walking back to his horse. He,He gets off of his horse and brings the bull down and starts walking back to his horse.,He,gold,ties the calf to the horse and ties it while bouncing with a pole.,performs his hand once again and throws the action again and looking away into the distance.,pulls off a action stick and grabs it.,gets back on the horse as the bull just lays on the ground defeated.\n18957,anetv_xXGc5_0_2QI,13636,One of the men starts to chase after a bull on his horse. He,One of the men starts to chase after a bull on his horse.,He,gold,gather behind the scottish woman.,gets off of his horse and brings the bull down and starts walking back to his horse.,dig a area behind the two railings.,stops and assemble the dogs.\n18958,anetv_xXGc5_0_2QI,13635,Inside of a fence men are sitting upon horses waiting. One of the men,Inside of a fence men are sitting upon horses waiting.,One of the men,gold,starts to chase after a bull on his horse.,hands the camel to the man and begins ironing a blue dangerous calf with a pair of knees.,takes off his shirt and notices him dig to demonstrate how he should tie the cow.,\"stands in front of them, applying ties and ties.\"\n18959,lsmdc0005_Chinatown-48325,19801,Someone is badly banged up and half out on his feet. Someone 'back,Someone is badly banged up and half out on his feet.,Someone 'back,gold,opens the side of the lantern and bass into the radio.,is to someone's dancing chair.,is soaked with the agony.,is to the red faced farmer.\n18960,lsmdc0005_Chinatown-48325,19802,Someone 'back is to the Red Faced Farmer. Someone,Someone 'back is to the Red Faced Farmer.,Someone,gold,falls onto the bed.,\"leans against the back of his car, breathing heavily.\",goes onto the green boat stage.,appears to enter his bedroom window.\n18961,lsmdc0005_Chinatown-48325,19800,\"Someone is hefted half off the ground and the two younger Farmers spin him around, going through his clothes. They\",\"Someone is hefted half off the ground and the two younger Farmers spin him around, going through his clothes.\",They,gold,\"toss his wallet, his silver cigarette case, etc.\",demonstrate their tricks without turning the dogs away.,\"perform ten poses on the dual chapman boards above, filled with rafts and thick string.\",winds to one of them - ends it down on the ground with a tent surrounded by a coil of chains.\n18962,anetv_z6g5QbIPatk,9842,The girl then turns around and the video is sped up to show her drawing on a pumpkin near a kitchen while multiple people are moving about around her. The girl finishes the drawing and she,The girl then turns around and the video is sped up to show her drawing on a pumpkin near a kitchen while multiple people are moving about around her.,The girl finishes the drawing and she,gold,gives a thumbs up that is so happy that he will need some light paint to heat up the dressing area.,gestures to speak to the makeup artist.,begins to carve the design out of the pumpkin while the video is still in a sped up mode.,creates the living room from a soapy pitcher and ends them chasing a cookie chair put around and put them on the oven.\n18963,anetv_z6g5QbIPatk,9843,The girl finishes the drawing and she begins to carve the design out of the pumpkin while the video is still in a sped up mode. The pumpkin is now done being carved and it,The girl finishes the drawing and she begins to carve the design out of the pumpkin while the video is still in a sped up mode.,The pumpkin is now done being carved and it,gold,appears on a black screen with just the carved out area illuminating in an orange color.,completes the entire nails and is then torching the knife cutting through the pages of the pumpkin.,'s a little bit and then grabs it and with its tools.,huddles in white light of the paint.\n18964,anetv_z6g5QbIPatk,9841,A girl holds up a white piece of paper and it has a drawing on it that is done in black ink. The girl then turns around and the video,A girl holds up a white piece of paper and it has a drawing on it that is done in black ink.,The girl then turns around and the video,gold,ends with the lady to congratulate the girls the different colors of the red house.,is sped up to show her drawing on a pumpkin near a kitchen while multiple people are moving about around her.,ends showing the scissors and disapproving nail scissors and nails quick to polish it with the hairstylist.,is on black again.\n18965,lsmdc1011_The_Help-78381,3391,Someone at the kitchen table reads from a list of questions. Someone,Someone at the kitchen table reads from a list of questions.,Someone,gold,\"hears the matter - of - fact, staring up from his salad with popcorn.\",looks mournfully at the photograph of the graduate student.,has his feet laces together.,turns his gaze back to the patient.\n18966,anetv_zLbSEo4xhVY,5673,A few men appear near the lake and then a series of different clips and men on water boards play one after another as they all waterboard quickly on the water and some are doing flips while holding onto the rope. A woman in pink shorts appears and she,A few men appear near the lake and then a series of different clips and men on water boards play one after another as they all waterboard quickly on the water and some are doing flips while holding onto the rope.,A woman in pink shorts appears and she,gold,knocks the ends up on the beam.,is briefly shown water boarding as well.,is doing water while holding up various kites at the bottom nearby.,falls off into the water but is able by wiping the side of the boat as slow on the yellow wakeboard.\n18967,anetv_zLbSEo4xhVY,5674,\"A woman in pink shorts appears and she is briefly shown water boarding as well. Now a man is sitting on a boat while a large remote controlled airplane is flying towards him, and a standing man quickly grabs it before it hits the face of the sitting man, and the sitting man\",A woman in pink shorts appears and she is briefly shown water boarding as well.,\"Now a man is sitting on a boat while a large remote controlled airplane is flying towards him, and a standing man quickly grabs it before it hits the face of the sitting man, and the sitting man\",gold,turns to the camera to give a shocked and relief look on his face.,inches a hand up next to him and talk to her.,seems to do somewhat sexy.,continues doing the case.\n18968,anetv_zLbSEo4xhVY,5675,\"Now a man is sitting on a boat while a large remote controlled airplane is flying towards him, and a standing man quickly grabs it before it hits the face of the sitting man, and the sitting man turns to the camera to give a shocked and relief look on his face. The clips of various people waterboarding shows up again and they\",\"Now a man is sitting on a boat while a large remote controlled airplane is flying towards him, and a standing man quickly grabs it before it hits the face of the sitting man, and the sitting man turns to the camera to give a shocked and relief look on his face.\",The clips of various people waterboarding shows up again and they,gold,\"are all still holding onto the rope while standing on the boards and doing jumps, flips and other tricks.\",see that the others are enjoying themselves doing a good sponsored flexibility.,are both completely quiet.,are n't going to look like a turkish army.\n18969,anetv_zLbSEo4xhVY,5676,\"The clips of various people waterboarding shows up again and they are all still holding onto the rope while standing on the boards and doing jumps, flips and other tricks. The outro clip begins and it\",\"The clips of various people waterboarding shows up again and they are all still holding onto the rope while standing on the boards and doing jumps, flips and other tricks.\",The outro clip begins and it,gold,is shown again several times.,shows on the screen and black screens.,includes the website on purple.,'s similar to the intro.\n18970,anetv_zLbSEo4xhVY,5672,A special effect intro of a man airborn on a waterboard with the words mmxiv hyperlite collection is on the screen. A few men appear near the lake and then a series of different clips and men on water boards,A special effect intro of a man airborn on a waterboard with the words mmxiv hyperlite collection is on the screen.,A few men appear near the lake and then a series of different clips and men on water boards,gold,rowing and preparing how to go past waterfalls while they stand.,play one after another as they all waterboard quickly on the water and some are doing flips while holding onto the rope.,floating in the water.,begin to throw their things.\n18971,lsmdc3085_TRUE_GRIT-40427,2069,\"Black suited someone Cogburn sits in a wooden chair. In his 60s, he\",Black suited someone Cogburn sits in a wooden chair.,\"In his 60s, he\",gold,walks toward the entrance of the cafe.,uses to unpack a flint.,\"shows someone, his whiskey.\",has a gnarled old face with a black patch over his right eye.\n18972,lsmdc3085_TRUE_GRIT-40427,2070,\"In his 60s, he has a gnarled old face with a black patch over his right eye. His ratty gray hair\",\"In his 60s, he has a gnarled old face with a black patch over his right eye.\",His ratty gray hair,gold,is carrying his eight son in his arms.,is secured to a post.,stands before him patiently.,is slicked over in a side parting.\n18973,lsmdc3003_40_YEAR_OLD_VIRGIN-1111,4311,She presses a three - inch cloth strip onto the wax. She,She presses a three - inch cloth strip onto the wax.,She,gold,rubs the surface of the golden foam leaving her upper exposed.,grabs one end of the cloth.,powder blue coat removes his bag and puts it in the driveway.,wraps it around his neck.\n18974,lsmdc3003_40_YEAR_OLD_VIRGIN-1111,4309,Now they enter in a salon. Someone,Now they enter in a salon.,Someone,gold,enters his cell carrying a guilt box.,taps a wooden tool against the crowded basin.,exposes his extremely hairy chest.,enters he leaning her on the oven.\n18975,lsmdc3003_40_YEAR_OLD_VIRGIN-1111,4310,Someone exposes his extremely hairy chest. She,Someone exposes his extremely hairy chest.,She,gold,pushes off wildly down some ledge at the top.,watches him jefferson cartoon.,draws him against a partition.,presses a three - inch cloth strip onto the wax.\n18976,lsmdc1020_Crazy_Stupid_Love-81438,3254,\"Someone gapes over at the couple, her eyes wide, her expression anxious. Someone\",\"Someone gapes over at the couple, her eyes wide, her expression anxious.\",Someone,gold,cradles her in a hug.,eyes her boyfriend searchingly.,\"winds up, tossing them aside, landing in a backseat ditch.\",turns to someone.\n18977,lsmdc1020_Crazy_Stupid_Love-81438,3255,Someone eyes her boyfriend searchingly. Someone,Someone eyes her boyfriend searchingly.,Someone,gold,sits watching him on her phone.,steps in close to him.,spins off his mask's hood to look around.,lifts a coconut to his waist.\n18978,anetv_j5mhELw7XaM,6100,\"A boy shows a skateboard and wring on his hand while standing on a bridge, then he does tricks on the road. Suddenly, a boy wearing a red t - shirt skates over a bench and landing on the road to do tricks, then a boy wearing a black shirts\",\"A boy shows a skateboard and wring on his hand while standing on a bridge, then he does tricks on the road.\",\"Suddenly, a boy wearing a red t - shirt skates over a bench and landing on the road to do tricks, then a boy wearing a black shirts\",gold,is standing in a competition of them.,makes a blue shirt to the field.,spins over a skateboard.,stands behind the truck.\n18979,anetv_j5mhELw7XaM,4911,He is then seen using a skateboard in different venues. He,He is then seen using a skateboard in different venues.,He,gold,and tricks by the speed of the falls are shown.,he is shocked and embarrassed than when shown throughout the scene.,\"begins of skating on track, then others applauds.\",does several stunts and tricks on the skateboard.\n18980,anetv_VpZ3PaLi2RQ,8740,A view is seen of a child pushing a lawn mower. He,A view is seen of a child pushing a lawn mower.,He,gold,\"pushes it far across the lawn, then turns.\",begins sweeping the grass around the yard while the camera captures his movements.,turns around and holds up one of the objects.,then runs up and down the slide while looking back to the camera.\n18981,anetv_VpZ3PaLi2RQ,8741,\"He pushes it far across the lawn, then turns. He\",\"He pushes it far across the lawn, then turns.\",He,gold,\"balances himself over the low rocks, then scrambles to his feet and jumps out of the swamp.\",kicks it off his window instead.,sits beside his bed.,continues mowing for the entire video.\n18982,lsmdc1015_27_Dresses-79831,19999,Someone stares challengingly at someone. She,Someone stares challengingly at someone.,She,gold,leans back to face him.,comes on the phone.,wraps her arms in his waist.,stuffs the whole sausage roll into her mouth at once.\n18983,lsmdc1015_27_Dresses-79831,20000,She stuffs the whole sausage roll into her mouth at once. Someone,She stuffs the whole sausage roll into her mouth at once.,Someone,gold,brings some hat off as someone returns to the apartment and frowns.,\"looks worried as someone strides off, then turns and grins at her.\",\"slows, then puts down her purse and kisses into the kitchen.\",dips a one lower lip.\n18984,anetv_g5CYoFJFkPk,2981,A young woman dressed in green performs with her baton in front of a judge. She,A young woman dressed in green performs with her baton in front of a judge.,She,gold,is attached to the bar and she is kneeing and dancing.,bounces her baton on the floor and catches it.,\"the girl is served with jump high, then a guy approaches a lady who swap a high kick.\",is also showing off laying her nails on a floor.\n18985,anetv_g5CYoFJFkPk,4084,She continues spinning and flipping around the floor with her baton while a panel of judges watch her perform. She,She continues spinning and flipping around the floor with her baton while a panel of judges watch her perform.,She,gold,continues spinning to take a turn and then up to herself on the bar.,jumps and then attacks the bar.,continues performing some different dance in several motions as she continues to perform and ends tricks to the next picture.,finishes her routine with a few more spins and presenting her stick into the air.\n18986,anetv_g5CYoFJFkPk,4083,A woman is seen performing a routine on a large gymnasium floor with a baton in her hands. She,A woman is seen performing a routine on a large gymnasium floor with a baton in her hands.,She,gold,turns and spins herself around on white poles and ends with her standing up.,performs several martial arts flips along a mat while one woman records them.,continues throws a baton and end by holding her hands.,continues spinning and flipping around the floor with her baton while a panel of judges watch her perform.\n18987,anetv_Pr3iVnKpv0c,18657,A teen plays violin in a room. The teen,A teen plays violin in a room.,The teen,gold,plays a drum while others crowd by.,throws a tennis ball from a bucket.,holds the violin with the left hand moving the fingers and playing with the bow.,rides down a seafront instrument.\n18988,anetv_vh55SaEpuws,8943,A young man stares out of a window. an elder woman,A young man stares out of a window.,an elder woman,gold,\"shows two sailors into the boat, drinking again and smiling to the camera.\",sit across from him as he touches them.,enters the room and starts talking to the man.,snags her phone again.\n18989,anetv_vh55SaEpuws,8589,A man and women sit in chairs and peel potatoes and talk to each other. People,A man and women sit in chairs and peel potatoes and talk to each other.,People,gold,are shown walking around outside a building.,take a bit and rub each other's mouth.,move the chair on the floor on the floor where the cat lays.,do not know what to do.\n18990,anetv_34NXXCSWyzE,10938,A man riding a horse and swinging a rope around is seen chasing after a calf and eventually grabbing the animal with his rope. He holds the calf down and another man,A man riding a horse and swinging a rope around is seen chasing after a calf and eventually grabbing the animal with his rope.,He holds the calf down and another man,gold,\"is running around as well, but later again he uses the lasso to speak to the camera.\",begins to rescue the calf.,comes out to help the man tie up the calf.,watches the dog on the side as the man continues to rub down the horse's legs.\n18991,anetv_34NXXCSWyzE,10939,He holds the calf down and another man comes out to help the man tie up the calf. He then,He holds the calf down and another man comes out to help the man tie up the calf.,He then,gold,rides his horse on the horse on his horse and comes back on the horse.,gathers around several bush and ties them around the sides.,grabs his rope and rides out of the arena on his horse.,begins to give her hugs and continues talking to the horse.\n18992,lsmdc3057_ROBIN_HOOD-27795,1810,\"Someone studies the old man uneasily, then blinks his eyes shut and swallows. Young someone\",\"Someone studies the old man uneasily, then blinks his eyes shut and swallows.\",Young someone,gold,holds his phone gaze.,helps someone lift into the zookeeper's lap.,\"glances down the list, then addresses some more armed bodyguards.\",jogs through a crowd.\n18993,lsmdc3057_ROBIN_HOOD-27795,1809,He tosses him in the air. Someone,He tosses him in the air.,Someone,gold,\"studies the old man uneasily, then blinks his eyes shut and swallows.\",swings the electric stylist's hair back from her face.,plops down in his chair and stands up in the basin.,rides down a strip round a steep ridge together.\n18994,lsmdc3057_ROBIN_HOOD-27795,1807,Stone is laid on the base of a cross at Barnsdale. Someone,Stone is laid on the base of a cross at Barnsdale.,Someone,gold,lifts steam from a cluster of different guns running at high speed.,sticks a finger into the water with the inside of two fingers.,is painting the hedges.,hugs his son someone.\n18995,lsmdc3057_ROBIN_HOOD-27795,1808,Someone hugs his son someone. He,Someone hugs his son someone.,He,gold,runs over someone to someone who unloads the trunk.,tosses him in the air.,pulls the wad of money out of his pocket.,grabs someone by the lapel.\n18996,lsmdc1040_The_Ugly_Truth-8568,15838,Someone pulls the closet door shut. Someone,Someone pulls the closet door shut.,Someone,gold,walks into the apartment.,does not carry the tray.,gets into her car.,opens the door and sits.\n18997,lsmdc1040_The_Ugly_Truth-8568,15839,Someone walks into the apartment. He,Someone walks into the apartment.,He,gold,kisses the robber's butt.,follows the teacher in a file.,pulls someone to his knees and kneels down in front of her.,dumps his bag on a chair and presses play on his answer phone.\n18998,anetv_apPeChgjzs4,19262,There are other sets of drums to his left. To his right,There are other sets of drums to his left.,To his right,gold,is a green bag and a hat situated on a table.,\", the boy is making a javelin on the right of it.\",is a dance rhythm.,is talking to the camera.\n18999,anetv_apPeChgjzs4,19261,A shirtless man is playing bongo drums in front of a microphone. There,A shirtless man is playing bongo drums in front of a microphone.,There,gold,are other sets of drums to his left.,is a video of the piano play.,start playing their drums while occasionally explaining and listen to him.,is then shown in the audience performing to them.\n19000,lsmdc3059_SALT-28927,7398,\"As the sleeper agent sunders pass the sidewalk vendor's hat rack, she steals an ushanka - style fur cap. Later, clouds\",\"As the sleeper agent sunders pass the sidewalk vendor's hat rack, she steals an ushanka - style fur cap.\",\"Later, clouds\",gold,fill the bright afternoon sky.,\"of darkness, he leads her outside.\",travel through the skyscrapers.,\"float over the airport, someone watches anxiously.\"\n19001,lsmdc3059_SALT-28927,7395,\"Inside, someone steals a key ring from the driver's belt. Bystanders\",\"Inside, someone steals a key ring from the driver's belt.\",Bystanders,gold,\"pig thugs maneuvers a car along the side of the car, where a man drives off in the other direction.\",\"enter the theater office, walking.\",tread toward the passenger side of the suv as someone slips out the driver's side.,\"open the door to the middle of the room, now someone glares at him.\"\n19002,lsmdc3059_SALT-28927,7397,\"As two men rush to help the driver, she hides and unlocks the handcuffs. Later, she\",\"As two men rush to help the driver, she hides and unlocks the handcuffs.\",\"Later, she\",gold,takes a sawed end from her bag and hands it to him.,strides casually away with her hands in her pockets.,pulls up using a security gate.,sits at her computer.\n19003,lsmdc3059_SALT-28927,7394,\"Someone winces, bracing herself. Inside, someone\",\"Someone winces, bracing herself.\",\"Inside, someone\",gold,goes back to fixing the garden.,yanks his wife's briefcase into bed.,is carried by the spinning step.,steals a key ring from the driver's belt.\n19004,lsmdc3059_SALT-28927,7400,Passengers sit calmly on a ferry. And her shoulders,Passengers sit calmly on a ferry.,And her shoulders,gold,show pleasure sharing her presence.,heave as her hands drop overboard.,are turning to look alarmed.,wrapped in a knee length fur lined shawl.\n19005,lsmdc3059_SALT-28927,7399,\"Later, clouds fill the bright afternoon sky. Passengers\",\"Later, clouds fill the bright afternoon sky.\",Passengers,gold,wait in a car bench where the lights land before a sunlit view of the city.,sit calmly on a ferry.,are lined up outside.,pull and flip through some crazy - looking and plummet at the pavement.\n19006,lsmdc3059_SALT-28927,7393,Moonlight glows on his scarred cheek. Someone,Moonlight glows on his scarred cheek.,Someone,gold,pulls his gun from his head and points it at someone.,takes a seat at the foot of the table and touches someone's other stick.,\"winces, bracing herself.\",\"rests a finger on the back of his neck - - takes a few steps closer, then stops the bus and slides him a\"\n19007,anetv_XFZ5_uNU7jE,4291,\"The cat touch the sink with his mouth and intend to pass to the other side of the sink but the woman prevents it. Then, the cat\",The cat touch the sink with his mouth and intend to pass to the other side of the sink but the woman prevents it.,\"Then, the cat\",gold,drinks water from the sink and cat continues watching the woman.,\"spits and disappears, a brush appears on the screen with a small eye lens.\",grabs his toothbrush and placed the barrel of the gas foundation of the back of his head.,climbs up the sheets on the floor while a girl kneels on a floor and shaves an adult's hand.\n19008,anetv_i887uArWX9w,9932,We pan up and see the players. We,We pan up and see the players.,We,gold,see the players on the left.,see the refrigerator leaving the game.,see the winner use trophy.,switch to a man playing a badminton goal.\n19009,anetv_i887uArWX9w,9931,We see a game of Foosball being played. We,We see a game of Foosball being played.,We,gold,see three men building an orange ball in a gymnasium.,see two kids playing a game of soccer.,pan up and see the players.,see a blue opening screen on a sidewalk.\n19010,anetv_Qz_PtO18pXE,633,A woman is posing on a diving board. She,A woman is posing on a diving board.,She,gold,is laying on a platform filled with water.,grabs a second jumping rope and performs a jump.,springs backward into the water in front of a watching group.,is standing on with her hands on her hips.\n19011,anetv_TM_5fb15eXQ,9553,A guy is giving a lesson about snow boards he puts a big rub brand on the board to hold the foot placers in place. the guy,A guy is giving a lesson about snow boards he puts a big rub brand on the board to hold the foot placers in place.,the guy,gold,plays the hand spin and step into a massive animation of swimmers and gives them a thumbs up.,put the lights on the rope to finish by giving examples control and lift the boy on shore.,shows the difference between snow boards and put them on a object to smoothing out the bottom of the board for better skiing.,moves the handlebars from his foot for a time and then starts walking again.\n19012,anetv_kt3hzGla8r4,3090,\"The singer take the yellow guitar from the audience and started playing. The singer pointed to the drummer, and the drummer\",The singer take the yellow guitar from the audience and started playing.,\"The singer pointed to the drummer, and the drummer\",gold,is strumming his guitar.,went back to break his legs.,stopped playing drum then continue.,started to walk off.\n19013,anetv_kt3hzGla8r4,3091,\"The singer pointed to the drummer, and the drummer stopped playing drum then continue. The band\",\"The singer pointed to the drummer, and the drummer stopped playing drum then continue.\",The band,gold,take their bow as the audience applauded.,go off in the city.,applauds and a crowd laughs hysterically while judges watch.,pauses as the boy continues to play the violin.\n19014,anetv_kt3hzGla8r4,7701,The man grabs a guitar from the audience and begins playing both one after the other. He,The man grabs a guitar from the audience and begins playing both one after the other.,He,gold,continues playing the instruments and ends by waving to the crowd and walking off stage.,zooms out to dance again receiving a final gesture.,continues to play the piano while the others sing with him playing the guitar.,shown opening up the person on playing the harmonica and pulling on the instrument.\n19015,anetv_kt3hzGla8r4,7700,A man is seen playing guitar on a stage with others playing instruments behind him. The man,A man is seen playing guitar on a stage with others playing instruments behind him.,The man,gold,grabs a guitar from the audience and begins playing both one after the other.,takes a jump up and down while others using the pose as well as plays.,\"pans around the end and sits down while the audience claps, camera watches.\",continues speaking and cheers with her hands.\n19016,anetv_r10jGF9lQYM,8296,We see a tittle screen and a plane flys overhead in the sky and we see the people on the ice and a truck in the distance. A kids,We see a tittle screen and a plane flys overhead in the sky and we see the people on the ice and a truck in the distance.,A kids,gold,pass on front a beach.,runs down the sidewalk eventually and a skier jumps off the skateboard and passing the cameraman.,walks over to the truck where a lady is cooking hot dogs in the truck bed full of food.,take off in a team of war.\n19017,anetv_r10jGF9lQYM,8295,A man and boys standard sit on the snow and ice fish. We see a tittle screen and a plane flys overhead in the sky and we,A man and boys standard sit on the snow and ice fish.,We see a tittle screen and a plane flys overhead in the sky and we,gold,see a driving man drinking beers and washing the tube.,see the people on the ice and a truck in the distance.,see ropes on a covered in tire.,see four people at a target throw.\n19018,anetv_r10jGF9lQYM,8294,We see an opening title screen. A man and boys standard,We see an opening title screen.,A man and boys standard,gold,sit on the snow and ice fish.,enter a store behind an individual with a sickle and beers a little behind.,\"dancing, dance in a stadium.\",\"hold their batman masks, then sniff around the inside floor.\"\n19019,anetv_r10jGF9lQYM,8297,A kids walks over to the truck where a lady is cooking hot dogs in the truck bed full of food. We,A kids walks over to the truck where a lady is cooking hot dogs in the truck bed full of food.,We,gold,lift the horse and hug.,are riding on horse bikes while walking to the crowded front with a tall man in view.,see a title screen and see frozen fish sitting in the snow.,see a man shave his stomach with a tools.\n19020,anetv_ZyOPt4sgsbs,10106,The cat begins to fuss around and the woman continues to smile. The woman then,The cat begins to fuss around and the woman continues to smile.,The woman then,gold,moves up and down while showing off the pad and the man ends and looks to be with his parents.,makes a sawed and plant bowl.,takes a knife and thinks while the person plays with her nails on her lap.,cuts the cats claws while the cat still moves around and she holds up the cat.\n19021,anetv_ac1DjqY4xHs,4443,A young boy swings at a pinata without getting a good hit on it. The boy,A young boy swings at a pinata without getting a good hit on it.,The boy,gold,picks up the boy and hurls it at the pinata.,swings at an instant - length pinata.,shows everything he was trying to serve in the end.,dodges the pinata that is swinging at him.\n19022,anetv_ac1DjqY4xHs,4444,The boy dodges the pinata that is swinging at him. The boy,The boy dodges the pinata that is swinging at him.,The boy,gold,is on another swing.,continues to swing and sew on the monkey bars.,is swinging back and forth.,gives up and walks away.\n19023,anetv_oOURAJ7nraU,5478,\"A male athlete is standing outside on a field stretching preparing himself to run. After he is ready, the man\",A male athlete is standing outside on a field stretching preparing himself to run.,\"After he is ready, the man\",gold,takes off running and does several long jumps into the pit.,is american a flag.,takes three puffs from a large pole and is then able to pull a strike.,\"walks numerous spins, throwing a ball to make a disc, then the man stirs the pommel ball and jumps into the air.\"\n19024,anetv_oOURAJ7nraU,5479,\"After he is ready, the man takes off running and does several long jumps into the pit. As he ends his last jump, two people\",\"After he is ready, the man takes off running and does several long jumps into the pit.\",\"As he ends his last jump, two people\",gold,enter the bank and come onto the lower stairs.,are holding the red rope as they walk off enjoying the video.,\"crash around him and jump another five times it, coming forward.\",come to the pit and start to measure the distance.\n19025,anetv_zNpILhjhFbQ,8239,A person sits on a mat in a gym and does sit ups while holding her legs up. The person,A person sits on a mat in a gym and does sit ups while holding her legs up.,The person,gold,continues touching the bottom of the machine repeatedly together very fast.,bends down and lift the barbell straight five times.,finishes the exercise routine and takes a break.,crosses a close up and runs a hand on the wall.\n19026,anetv_zNpILhjhFbQ,8240,The person finishes the exercise routine and takes a break. A graphic,The person finishes the exercise routine and takes a break.,A graphic,gold,slides in and closer to the man.,is seen with a feather falling.,is shown before the judge has started on.,sits on the border of the home drawn.\n19027,anetv_sJ0Tc4nthOA,13670,Two people are shown holding fencing sticks and pointing towards each other. They,Two people are shown holding fencing sticks and pointing towards each other.,They,gold,are shown performing a game of swim and ending with the camera panning all around.,move back and fourth and match with each other.,continues hitting targets in the rink.,\"keeps watch, and then scales the wall and the men begin to walk away around the room.\"\n19028,lsmdc3036_IN_TIME-15408,2396,The dealer slides two cards from his five giving someone a straight. Someone,The dealer slides two cards from his five giving someone a straight.,Someone,gold,hits a goal.,drives behind the onlookers.,shoots the auburn - haired woman a sidelong glance.,drops his fist into the top of the paper and takes it off.\n19029,lsmdc3036_IN_TIME-15408,2394,Someone slides his wrist under a scanner. The dealer,Someone slides his wrist under a scanner.,The dealer,gold,pitches the note to someone.,sets a fifth card face up.,flies out of his skin as his timers appear.,sets a remaining guard on the brim of his hat perched thoughtfully on his lips.\n19030,lsmdc3036_IN_TIME-15408,2391,As someone shifts his uncertain eyes. Someone,As someone shifts his uncertain eyes.,Someone,gold,keeps his head out and stares out the window.,points at someone with a stoic and pout.,gives a knowing smile.,flashes a boyish smile as he ambles away as someone eats another chip.\n19031,lsmdc3036_IN_TIME-15408,2399,His clock counts up to 1100 years and one second. Someone,His clock counts up to 1100 years and one second.,Someone,gold,\"goes to the phone, but an officer slams the tv back on.\",gives a tight smile.,continues up off the set with some papers.,is looking at his father.\n19032,lsmdc1038_The_Great_Gatsby-87158,5148,The suited man stands at the end of the dock by railings. Someone,The suited man stands at the end of the dock by railings.,Someone,gold,motions at the paper sliding down to switch along the polished surface.,is in a balding man in a warehouse with short cable ties.,watches the man slowly raise his right hand.,is slumped over a window in someone's direction.\n19033,lsmdc1038_The_Great_Gatsby-87158,5146,Someone drives along a tree - lined lane. He,Someone drives along a tree - lined lane.,He,gold,gets chased by the bull.,parks his car in front of his cottage and gets out.,\"lands in his face silhouetted against a pillar, knocking people down in front of the car.\",watches someone watch from a distance.\n19034,lsmdc1038_The_Great_Gatsby-87158,5149,\"Someone watches the man slowly raise his right hand. In the sanitarium, someone\",Someone watches the man slowly raise his right hand.,\"In the sanitarium, someone\",gold,lies on his back.,\"stands at the window, tapping the frosted glass.\",bites his lower lip as he puts his hands up.,\"places the baby head against the distant shore, and pats the side of the mouth.\"\n19035,lsmdc1038_The_Great_Gatsby-87158,5150,\"Outside, snow continues to fall. The doctor\",\"Outside, snow continues to fall.\",The doctor,gold,walks over to him.,stoops into the water.,paces on the pavement then attacks another.,passes at the crewman holding a computer - ray wand.\n19036,lsmdc1038_The_Great_Gatsby-87158,5147,He parks his car in front of his cottage and gets out. He,He parks his car in front of his cottage and gets out.,He,gold,flicks a shredded goodbye.,looks over at the dock.,plays a few percussion instruments.,activates a gold - tinted window.\n19037,lsmdc1038_The_Great_Gatsby-87158,5144,\"She gazes wistfully into the distance, beyond the lavish gardens, past the green beacon and across the Bay of Consequence, towards West Egg and someone's mansion. In the dark, a man\",\"She gazes wistfully into the distance, beyond the lavish gardens, past the green beacon and across the Bay of Consequence, towards West Egg and someone's mansion.\",\"In the dark, a man\",gold,carries an antique building.,opens a laptop as the crowd gathers.,gazes in a stone hallway carrying two trains as he goes through her else.,\"walks towards the end of a long, narrow, raised dock which juts out into the bay.\"\n19038,lsmdc3076_THE_SOCIAL_NETWORK-35103,14896,\"A fifth boat leads the pack, 50 yards ahead. They\",\"A fifth boat leads the pack, 50 yards ahead.\",They,gold,emerge from the doorway into the courtyard.,stop on a balcony by the water's edge.,\"row through the low - lying mist, leaving the other boats far behind.\",keep walking with their rifles ready or waiting.\n19039,lsmdc3076_THE_SOCIAL_NETWORK-35103,14894,\"Near a calm riverside, four two - men crews row their boats along the misty water. They\",\"Near a calm riverside, four two - men crews row their boats along the misty water.\",They,gold,\"drift down on the bridge rails, ice rest beside the city.\",wait their turn to look at water.,pass under a bridge followed by a small motor boat.,cling to the surface in the shallow water.\n19040,lsmdc3076_THE_SOCIAL_NETWORK-35103,14895,\"On one boat, a young man glanced. A fifth boat\",\"On one boat, a young man glanced.\",A fifth boat,gold,\"leads the pack, 50 yards ahead.\",brings four shots of the rafters.,hangs in the air.,is rising into a crowd of boats.\n19041,lsmdc3042_KARATE_KID-19030,19829,\"He glances toward the auditorium. With a kick, he\",He glances toward the auditorium.,\"With a kick, he\",gold,finds his girlfriend outside using a web necklace.,leaps over the sprinklers wall to one side.,abruptly steps back and walks up to her.,sends someone's bag flying high.\n19042,lsmdc3042_KARATE_KID-19030,19828,Someone steps closer to someone. He,Someone steps closer to someone.,He,gold,flips over and locks himself onto the board's poles.,falls back in bed.,leans up against the ceiling.,glances toward the auditorium.\n19043,lsmdc3042_KARATE_KID-19030,19825,\"Now, someone steps outside and ambles along with a smile. He\",\"Now, someone steps outside and ambles along with a smile.\",He,gold,encounters someone and his friends.,hold a necklace in a bottle.,\"nods and applauds him, while someone smiles uncertainly.\",steps in and hands someone a glass of beer.\n19044,lsmdc3042_KARATE_KID-19030,19824,\"She allows a brief chuckle. Now, someone\",She allows a brief chuckle.,\"Now, someone\",gold,lies on a piano in the lounge.,steps outside and ambles along with a smile.,finds a photo of herself in a similar situation.,sits in someone's chair before an art studio.\n19045,lsmdc3042_KARATE_KID-19030,19837,She dabs ice cream on his forehead. Someone,She dabs ice cream on his forehead.,Someone,gold,looks past her and stares.,screws up her face.,watches her through tearful eyes.,uses a lemon knife.\n19046,lsmdc3042_KARATE_KID-19030,19832,\"Someone lies on the couch, watching the cartoon. As his mother comes in, someone\",\"Someone lies on the couch, watching the cartoon.\",\"As his mother comes in, someone\",gold,begins playing the piano with his headphones.,grabs a guitar from him.,picks up a towel.,curls up and shuts his eyes.\n19047,lsmdc3042_KARATE_KID-19030,19821,\"As someone scrambles away, someone resumes practicing. The instructor\",\"As someone scrambles away, someone resumes practicing.\",The instructor,gold,lifts someone's chair.,\"loses his stand, hands on his mouth.\",sits at the piano and nods.,\"halts and yells at shot, her back to someone.\"\n19048,lsmdc3042_KARATE_KID-19030,19827,He and his friend dump out its contents. Someone,He and his friend dump out its contents.,Someone,gold,sees someone and someone inside.,waddles up behind someone.,steps closer to someone.,blocks the enclosure with an extinguisher.\n19049,lsmdc3042_KARATE_KID-19030,19834,Someone maintains his slumbering charade as she crouches beside him. Someone,Someone maintains his slumbering charade as she crouches beside him.,Someone,gold,averts his gaze as he gently rides a noise.,places the doll - sized ax on his dark leg.,\"heaves a sigh as she regards her son, then smiles affectionately.\",sits on a cleaning modified train.\n19050,lsmdc3042_KARATE_KID-19030,19840,\"On a large rain - soaked courtyard stretching before them, 100s of students in identical crimson uniforms stand in tidy ranks. At the instructor's command, they\",\"On a large rain - soaked courtyard stretching before them, 100s of students in identical crimson uniforms stand in tidy ranks.\",\"At the instructor's command, they\",gold,follow through calmly bar boulders on the platform.,\"packaged animals into the air and then start, racing through the woods when int maize hunter stays ahead.\",stop two rats crawling along with the local.,perform athletic moves with razor - sharp precision.\n19051,lsmdc3042_KARATE_KID-19030,19831,\"Now, the living room tv shows SpongeBob Square Pants. Someone\",\"Now, the living room tv shows SpongeBob Square Pants.\",Someone,gold,passes his desk at a window and sees start working out.,\"lies on the couch, watching the cartoon.\",watches him stalk.,presses a button on his glasses show.\n19052,lsmdc3042_KARATE_KID-19030,19838,Someone looks past her and stares. He,Someone looks past her and stares.,He,gold,rushes across a busy street without her.,\"looks uneasy, a little.\",passes them to someone.,shows his dead legs.\n19053,lsmdc3042_KARATE_KID-19030,19839,\"He rushes across a busy street without her. Catching up, someone\",He rushes across a busy street without her.,\"Catching up, someone\",gold,\"flies at the youth, who lurches hard then spins her around.\",\"steps inside, wearing a cocaine cerulean and pale blouse.\",walks out of the back sidewalk and the hat drops on his hand.,follows him through a gate flanked by gilded sculptures of kung fu warriors in action.\n19054,lsmdc3042_KARATE_KID-19030,19833,\"As his mother comes in, someone curls up and shuts his eyes. She\",\"As his mother comes in, someone curls up and shuts his eyes.\",She,gold,picks up an old chinese box.,looked admiringly at the house where he was sitting.,sets a tote bag and purse on a dining table.,\"pulls out the low - bond fan, rips it open.\"\n19055,lsmdc3042_KARATE_KID-19030,19841,\"Beaming, someone rushes forward. Someone\",\"Beaming, someone rushes forward.\",Someone,gold,smacks someone's knee.,\"strolls along the outdoor class' perimeter, watching the students.\",kisses his bare chubby mother.,stiffens herself as she rides with someone.\n19056,lsmdc3042_KARATE_KID-19030,19830,\"With a kick, he sends someone's bag flying high. One of the other boys kicks it as it lands, and the third\",\"With a kick, he sends someone's bag flying high.\",\"One of the other boys kicks it as it lands, and the third\",gold,glance at someone's head.,hits the ball into the rafters.,tosses a book at someone.,knocks him out of the tunnel.\n19057,lsmdc3042_KARATE_KID-19030,19835,\"Someone heaves a sigh as she regards her son, then smiles affectionately. She\",\"Someone heaves a sigh as she regards her son, then smiles affectionately.\",She,gold,\"leads him away from the diner, then follows out of her surroundings.\",picks up a remote and turns the tv off.,strokes her cheeks.,creeps to her front door to watch as she staggers away nervously.\n19058,lsmdc3042_KARATE_KID-19030,19826,The shorthaired boy picks it up. He and his friend,The shorthaired boy picks it up.,He and his friend,gold,dump out its contents.,follow the other side.,follow the winnings into the tunnel.,huddle two gentlemen forward then salute each another.\n19059,anetv_1wjnveHAhGE,4665,A man is seen sitting on a piece of machinery while speaking to the camera. The man then,A man is seen sitting on a piece of machinery while speaking to the camera.,The man then,gold,begins playing the instrument by moving his hands up and down.,moves his arms and legs around and begins using the machine.,begins performing more martial arts moves while the camera zooms in on another woman.,jumps around the bike while other person waxes tricks.\n19060,anetv_1wjnveHAhGE,13826,A man is sitting on an elliptical machine against a wall. He,A man is sitting on an elliptical machine against a wall.,He,gold,is talking about how to extend him as he works.,shots moves past a man and man play in front of various small children holding instruments.,lifts up the monitor portion of the elliptical machine.,shows off a small waxes object.\n19061,anetv_1wjnveHAhGE,4666,The man then moves his arms and legs around and begins using the machine. The men continuously,The man then moves his arms and legs around and begins using the machine.,The men continuously,gold,moves around on the machine while looking off into the distance.,perform several moves all along the beam and ends with them cheering around as well as watches.,moves all around and throws the object off into the distance while continuing to speak.,picks up the air frisbee and kneels around while looking off in the distance.\n19062,anetv_1wjnveHAhGE,13827,He lifts up the monitor portion of the elliptical machine. He,He lifts up the monitor portion of the elliptical machine.,He,gold,does a hand sit down on the parallel bars with his back to the group.,climbs onto a bar board and hops around the skyscraper.,gets up and starts to advance.,begins working out on the elliptical machine.\n19063,lsmdc1044_Pride_And_Prejudice_Disk_Two-89529,10487,He replenishes the nib with ink. He,He replenishes the nib with ink.,He,gold,\"rinses his hands, waves it out with a paper plastic bag, then continues to talk with his raised hands.\",puts down the pen and leans back in his chair with a defeated air.,\"walks heads with a measuring heart which is welded by a large justice, then it is a wall of white objects with wires previously\",tries to write notes in a outfit on.\n19064,lsmdc1044_Pride_And_Prejudice_Disk_Two-89529,10488,He puts down the pen and leans back in his chair with a defeated air. He,He puts down the pen and leans back in his chair with a defeated air.,He,gold,goes over to the paned window.,turns back to the clerk.,looks thoughtfully into his laptop and folds.,gives a little smile.\n19065,lsmdc1044_Pride_And_Prejudice_Disk_Two-89529,10485,\"Someone hurries into a room upstairs and stands in the middle of the room, looking deeply troubled. He\",\"Someone hurries into a room upstairs and stands in the middle of the room, looking deeply troubled.\",He,gold,dashes over to a bureau and pulls out a sheet of paper.,\", someone walks down the front steps with his eyes on the garden of the bride.\",holds his hold in one hand.,pops a big funnel from someone's cot.\n19066,lsmdc1044_Pride_And_Prejudice_Disk_Two-89529,10486,\"He dashes over to a bureau and pulls out a sheet of paper. Picking up a pen, he\",He dashes over to a bureau and pulls out a sheet of paper.,\"Picking up a pen, he\",gold,unfolds it in half.,removes it and hands it over.,finds the unopened envelope filled with celebrity photos.,\"dips it into an ink pot, then sets about writing a letter.\"\n19067,lsmdc1010_TITANIC-77020,17300,The man hands over money. The man,The man hands over money.,The man,gold,recovers the ball and motions the couple to strike the court.,turns the fence and raises it back.,checks his pocket watch then steps to someone and her mother.,stops drinking containers on beer in front of them.\n19068,lsmdc1010_TITANIC-77020,17301,\"Someone follows her fiancee, someone Hockley, through the crowd. A health inspector\",\"Someone follows her fiancee, someone Hockley, through the crowd.\",A health inspector,gold,pulls his gun into hogwarts' office.,breaks out of their starting base.,runs a comb through a man's dark hair and beard.,starts to inspect the wall.\n19069,anetv_pEr9p5-qUsU,17232,Several groups are playing beer pong. Some people,Several groups are playing beer pong.,Some people,gold,are cheering about winning.,play pong for a beach volley.,wearing fencing gear and watch a paintball match.,are sitting on chairs watching a video game.\n19070,anetv_pEr9p5-qUsU,17233,Some people are cheering about winning. Others,Some people are cheering about winning.,Others,gold,begin skateboarding into their arena.,takes a hit and quickly turns the ball from the ad.,watch from the back seat of the fight with the students.,look upset about losing.\n19071,anetv_pEr9p5-qUsU,17231,Several tables are set up in a large room. Several groups,Several tables are set up in a large room.,Several groups,gold,dance with each other as the buildings continue to relax.,are playing beer pong.,of people play at the area.,are playing a game of tug of war.\n19072,anetv_L-A8RECKhtQ,12965,\"The man sings along while performing his routine and is then seen running across the yard with a lawn mower. More dancing and singing is seen, a picture of holding cards\",The man sings along while performing his routine and is then seen running across the yard with a lawn mower.,\"More dancing and singing is seen, a picture of holding cards\",gold,are shown as well as smiling loudly walking on the street.,\"is shown, and ends with him cutting the grass and holding down with a friend.\",followed by them moving the end and posing in the middle.,are shown from the perform and leads into people walking by throwing up one by one.\n19073,anetv_L-A8RECKhtQ,12964,A picture of a man is seen and leads into a man bending down on a lawn and performing various dance moves. The man,A picture of a man is seen and leads into a man bending down on a lawn and performing various dance moves.,The man,gold,continues playing crochet and end by holding up a bag of smoke and pointing it around.,finishes and throws another object off and rests on the edge of the sidewalk in front.,sings along while performing his routine and is then seen running across the yard with a lawn mower.,also points his racket from the floor in front of the closed station.\n19074,anetv_KnF56TCKPYw,15586,\"The couple walk the dog down to a lake. There are other owners and dogs, and they\",The couple walk the dog down to a lake.,\"There are other owners and dogs, and they\",gold,are walking over several motor bikes.,are moving back and forth.,keep watch people on leashes.,play at the water's edge.\n19075,anetv_KnF56TCKPYw,15585,A dog sniffs the feet of a man and a woman. The couple,A dog sniffs the feet of a man and a woman.,The couple,gold,walk the dog down to a lake.,tussle before the owner and leave the chair.,\"rides their horses, while a woman dancing and dogs walk towards them.\",laugh with one another and show covers of dogs.\n19076,anetv_fm9mf-VuWxI,14756,A woman in a blue shirt is holding a lacrosse stick. They,A woman in a blue shirt is holding a lacrosse stick.,They,gold,pause at the game of squash.,are seen playing a game of polo.,are shooting soccer on a stage.,continue to play lacrosse.\n19077,anetv_fm9mf-VuWxI,14755,People are playing lacrosse on a field. A woman in a blue shirt,People are playing lacrosse on a field.,A woman in a blue shirt,gold,is holding a side bar.,is spinning with a baton.,is watching as people watch.,is holding a lacrosse stick.\n19078,anetv_7eR0DyDg7wQ,3663,The camera zooms out from a radio sitting on a counter. A man,The camera zooms out from a radio sitting on a counter.,A man,gold,smashes the radio with a baseball bat.,is working on boards and packing his clothes.,skates near talking to a camera.,speaks and speaks to another man.\n19079,anetv_7eR0DyDg7wQ,3666,The man walks to and sits at a table with the mug. The man,The man walks to and sits at a table with the mug.,The man,gold,begins to put it on the machine plate.,eats something from the mug.,drinks another drink on the liquor bottle.,finally has a tray of drinks.\n19080,anetv_7eR0DyDg7wQ,3664,A man smashes the radio with a baseball bat. The man,A man smashes the radio with a baseball bat.,The man,gold,\"is pushed down and puts it onto the throw, the balls are missiles from the ice.\",boxes a smoke grenade.,stops and lets smoke smoke out of his nose.,talks to no one in particular while pouring something from a container into a mug.\n19081,anetv_7eR0DyDg7wQ,13368,A man hits the radio with a baseball bat. He,A man hits the radio with a baseball bat.,He,gold,attacks an enemy to a target.,\"strikes the ball around, making it into the basket.\",walks into the kitchen and pours a cup of coffee as he gloats.,starts for a car in an alley.\n19082,anetv_7eR0DyDg7wQ,3665,The man talks to no one in particular while pouring something from a container into a mug. The man,The man talks to no one in particular while pouring something from a container into a mug.,The man,gold,walks to and sits at a table with the mug.,stops pushing and slides the man's head back in the car.,dives and takes the cup and then puts the other mixture into a cup.,adds a cup of liquid in his mouth with a napkin removes it from a bottle.\n19083,anetv_7eR0DyDg7wQ,13367,An old style radio is sitting on a counter. A man,An old style radio is sitting on a counter.,A man,gold,hits the radio with a baseball bat.,throws drinks in the mug of water.,cleans several razors with chefs using a measuring liquid as well.,is bowling on a yellow shirt and a barbell leads him to the desk.\n19084,anetv_7TOw39_59xo,304,The person wipes down the front of the cars with a rag including along the tires. The cars,The person wipes down the front of the cars with a rag including along the tires.,The cars,gold,are shown lined up afterwards and shown all cleaned off.,continue to clean the the snow as the cars drive around.,begin to move their large as they walk.,pass side by side along the level and clean a hose afterwards.\n19085,anetv_7TOw39_59xo,303,A close up of several cars are seen that leads into a person cleaning the cars. The person,A close up of several cars are seen that leads into a person cleaning the cars.,The person,gold,wash cars at a park while a person stays behind and still painting it in.,wipes down the front of the cars with a rag including along the tires.,arrives and rubs it all over the sink and ends by rubbing it down on top of his face.,shows a truck with a second person on it.\n19086,lsmdc3057_ROBIN_HOOD-27514,18755,Lady someone nervously covers her mouth. She,Lady someone nervously covers her mouth.,She,gold,turns toward the forest and sees a group of bare chested boys running away.,\"sails off, revealing a pickpocket tinted film.\",sets the coconut on the table.,stands and two hands overhead.\n19087,anetv_M2wdIwZMNm8,4773,A person is seen sitting on the snow around a hole and loading up a pole. He,A person is seen sitting on the snow around a hole and loading up a pole.,He,gold,runs while on a rope and goes to a helicopter.,points to his motion while moving around in a sand pit.,continues to ride on the board and turns it upside down.,looks at a machine and continues adjusting his pole.\n19088,anetv_M2wdIwZMNm8,19771,He is attempting to catch a fish through a hole in the ice. He,He is attempting to catch a fish through a hole in the ice.,He,gold,continues mashing the fish and shaking back the camera.,turns around looking down at the target.,\"reels in a fish, and removes the hook.\",grabs the fish from the fish and slides it under.\n19089,anetv_M2wdIwZMNm8,19770,A man is on a snow covered lake with a fishing pole and fish reader. He,A man is on a snow covered lake with a fishing pole and fish reader.,He,gold,begins talking to the camera behind the bar.,\"is thrown from a boat onto the river waters so long, hard the boat keeps sailing down.\",runs on the board in front of a group of swimmers.,is attempting to catch a fish through a hole in the ice.\n19090,anetv_M2wdIwZMNm8,19772,\"He reels in a fish, and removes the hook. He\",\"He reels in a fish, and removes the hook.\",He,gold,stands up and moves off camera.,looks in the bucket of water at the sink.,\"looks at the water, then opens his eyes tightly.\",glides across the water towards the mother.\n19091,anetv_M2wdIwZMNm8,4774,He looks at a machine and continues adjusting his pole. He,He looks at a machine and continues adjusting his pole.,He,gold,moves his pole around a bit and holds up a fish that he catches.,\"jumps off his skateboard, kicking himself up on the sandy mat with three arms.\",crawls across the roof of the car hitting him.,is seen pans the competition action.\n19092,anetv_iGax3fokst8,17185,He is simulating situps with the bar. He,He is simulating situps with the bar.,He,gold,\"takes a bite, then rips it back with the stick.\",gets up and runs up to the building.,jumps in the bar several times.,\"rolls over, trying to get up.\"\n19093,anetv_iGax3fokst8,17184,A small boy is rocking back and forth on a piece of exercise equipment. He,A small boy is rocking back and forth on a piece of exercise equipment.,He,gold,is simulating situps with the bar.,walks rope to it over the frame.,beats on the keys of a highway bit.,is climbing up on a wooden beam.\n19094,anetv_iGax3fokst8,12809,Kid is playing with an abs machine while a person is swinging him. little kid,Kid is playing with an abs machine while a person is swinging him.,little kid,gold,is doing somersaults on the kid with a picture in her.,is laying on the floor playing with a crunch machine.,is standing in front of th pool watching and jumps.,is walking at the shirt rope.\n19095,anetv_rWfi4xN3XQI,16683,Two girls stand outdoors with another horse and brush it. The first woman,Two girls stand outdoors with another horse and brush it.,The first woman,gold,\"browses what is holding the peering brush, while craning their neck and head and front on the girl.\",demonstrates the stretches of the girl.,returns with a new brush and allows children to help brush the horse.,talks to the girls on the horse.\n19096,anetv_rWfi4xN3XQI,16682,\"A woman stands in a stall with a horse with a grooming brush, she starts brushing it. Two girls\",\"A woman stands in a stall with a horse with a grooming brush, she starts brushing it.\",Two girls,gold,stand outdoors with another horse and brush it.,brush the horse after the woman.,are together in the water talking as they brush the horse's mane.,throw the horse on its forelegs and legs.\n19097,anetv_rfH9VLQAuwY,10050,Various pictures are shown of people standing around on shuffleboard courses. The pictures,Various pictures are shown of people standing around on shuffleboard courses.,The pictures,gold,on the worktop are shown as well as people climbing on the netting.,continue to play as well as empty dirt.,pans around the walls and show people hanging around a basket.,continue with people playing the game as well as smiling into the camera.\n19098,anetv_rfH9VLQAuwY,19404,The video leads into several pictures of people standing outside playing a game of shuffleboard. More pictures,The video leads into several pictures of people standing outside playing a game of shuffleboard.,More pictures,gold,are shown of people adjusting and sometimes decorating followed by other guiding photos and sitting on the sea.,are then shown of people playing instruments and ends the people walking around and pausing to talk in a office.,are shown of people playing volleyball croquet as well as being interviewed.,are shown of the people playing a game a game as well as others watching on the side.\n19099,anetv_XuFiQCgRsRo,5061,She sits on an exercise machine while speaking to the camera. Three other people,She sits on an exercise machine while speaking to the camera.,Three other people,gold,are walking on stools.,start playing hop bikes at the same time.,\"are near her, also on exercise machines.\",are standing next to them watching and flipping.\n19100,anetv_XuFiQCgRsRo,5063,The woman then begins to use the exercise machine. The video,The woman then begins to use the exercise machine.,The video,gold,continues moving her legs back and fourth.,ends with the woman stopping the machine and smiling at the camera.,shows the correct way to explain.,ends with the closing captions shown on screen and credits.\n19101,anetv_XuFiQCgRsRo,5062,\"Three other people are near her, also on exercise machines. The woman then\",\"Three other people are near her, also on exercise machines.\",The woman then,gold,begins to use the exercise machine.,goes to the register.,shows what to do to the camera.,begins showing and begins doing exercises alone in between.\n19102,anetv_XuFiQCgRsRo,5060,A young woman is in a gym. She,A young woman is in a gym.,She,gold,begins throwing darts at a dartboard.,is eating an ice cream sundae.,sits on an exercise machine while speaking to the camera.,is playing a guitar while standing in front of the camera.\n19103,anetv_czCM6ZNwHK8,18450,The guy plays a saxophone and uses a microphone. The guy,The guy plays a saxophone and uses a microphone.,The guy,gold,turns the flute around.,\"flips past the lady, touches his back and shoulders hard as the lady cheers.\",takes the saxophone out of his mouth and bents over.,plays the accordion in a fast rhythm.\n19104,anetv_czCM6ZNwHK8,18449,A guy prepares to play an instrument. The guy,A guy prepares to play an instrument.,The guy,gold,lights a match with the discs and cuts in with the right hand.,gives him a low five and talks.,plays a saxophone and uses a microphone.,hits the drum again.\n19105,anetv_5_UEjPqtnE0,16006,A young child is seen sitting before a fooseball table when one hands her the ball and she puts it into the game. The man then,A young child is seen sitting before a fooseball table when one hands her the ball and she puts it into the game.,The man then,gold,helps the girl play on the table by moving the poles all around and pushing the people.,takes a few drags balls and continues round ready with the ball and anticipating it to be it.,pulls the cake out and starts playing with the paper.,picks up the tennis ball and walks back to the camera at the other end.\n19106,anetv_aEyTdUOp-qs,16049,A man walks up with a mop and bucket. He,A man walks up with a mop and bucket.,He,gold,person is standing behind a mop.,takes it off the counter.,man then begins using cloths with products.,takes them up out of the bucket and begins to mop the floor.\n19107,anetv_aEyTdUOp-qs,16050,He takes them up out of the bucket and begins to mop the floor. After a moment she,He takes them up out of the bucket and begins to mop the floor.,After a moment she,gold,\"picks carpet, gathers her things and moves to break the door.\",slowly wakes out and goes to open door.,claps his hands and starts to speak.,begins to pretend that he is dancing with the mop.\n19108,anetv_HpQrpwNgCjc,5430,A close up of a high dive is shown followed by people walking up the steps. Suddenly a person,A close up of a high dive is shown followed by people walking up the steps.,Suddenly a person,gold,is seen riding around on a horse with a bobby.,is seen throwing the ball into a set of pipes.,is seen jumping off of the high dive and into the pool.,does the style cleaning.\n19109,anetv_WlsVDIIo2dk,8308,Several couples of men and women are shown performing a tango routine in front of a group of people. Many people watch on the sides and one couple,Several couples of men and women are shown performing a tango routine in front of a group of people.,Many people watch on the sides and one couple,gold,continuously doing tricks one kicking the other around on the stage.,laughs and walk away in the end.,jumping with one another while others watch on the side.,is performing by the bodies.\n19110,anetv_5Z-78AmLjFo,16718,Another man is holding up a shield to protect himself. The man,Another man is holding up a shield to protect himself.,The man,gold,crouches and kicks tearfully back and forth.,holds up a shield to his face as he welds.,tumbles onto the support beam.,continues to blow the smoke.\n19111,anetv_5Z-78AmLjFo,16717,A man is using a welding tool on a pile of random metal indoors. Another man,A man is using a welding tool on a pile of random metal indoors.,Another man,gold,is peeling a piece of wood and taking it down before practicing.,is sitting in front of the tire with one spinning and putting wires in on it.,is shown holding a welding tool.,is holding up a shield to protect himself.\n19112,anetv_-KWToNMY1Lc,16661,A cow is released and the man chases after it. The man,A cow is released and the man chases after it.,The man,gold,stops and joins his calf.,blows with the frisbee as the bull pushes away.,lassos and ties it up.,catches a calf and gets dropped to the field.\n19113,anetv_-KWToNMY1Lc,16662,The man lassos and ties it up. A man briefly,The man lassos and ties it up.,A man briefly,gold,stands on the left with his legs in the air.,demonstrates how to trim pieces of wood with scissors.,\"shaves a man's hair, then holds onto his dog and then places the rest on the dog.\",enters the camera frame.\n19114,anetv_3CImIarFM30,10255,A person's hands are seen playing in dirt while moving their hands all around the soil. The person,A person's hands are seen playing in dirt while moving their hands all around the soil.,The person,gold,continues to hit the stick while speaking and ends with the man speaking with more shots in the end.,continues to sniff around themselves.,continues to play around in the soil while the camera watches their hand movements.,puts them into a ball and stares out of the area.\n19115,anetv_LW8UDBQ1yJc,17866,Several young men are shown performing various stunts on skateboards. They,Several young men are shown performing various stunts on skateboards.,They,gold,are performing different draining techniques doing stunts on the banks.,continue to go on and pass around them passing and skateboarding.,try to keep up to the skateboarders.,\"jump on tables, over fountains, and down stairs.\"\n19116,anetv_LW8UDBQ1yJc,17865,The opening credits for a film appears on the screen. Several young men,The opening credits for a film appears on the screen.,Several young men,gold,perform before the game.,begin enter through tiled plaza outdoor public seeing students.,are shown performing various stunts on skateboards.,ride roping on a diving board.\n19117,anetv_mNq0NksbsZ4,9885,People are long boarding down a hill. A silver truck,People are long boarding down a hill.,A silver truck,gold,is standing in the tracks.,rises onto a road and falls onto the ground.,is parked next to the hill.,crashes by on the opposite side.\n19118,anetv_mNq0NksbsZ4,9886,A silver truck is parked next to the hill. A person,A silver truck is parked next to the hill.,A person,gold,makes a move through the snow of a ramp in the water.,falls off the long board onto the pavement.,is riding a bike with a grey tube in her pants.,in an old yellow skis jacket sits on the beach.\n19119,anetv_tGuPkIKGIK4,15629,\"The dog looks angry and show his teeth. Then, woman\",The dog looks angry and show his teeth.,\"Then, woman\",gold,cleans the fur off the tires.,is showing the teeth teeth teeth beneath her teeth.,give a kiss to then dog.,chase his little dog with frisbee and jumps.\n19120,anetv_tGuPkIKGIK4,15628,The dog waits until the woman grab a towel to dry the body of the dog. The dog,The dog waits until the woman grab a towel to dry the body of the dog.,The dog,gold,continues to cut the dog's tail in one hand and moves on the blindfold dog.,\"flips out at the dog, after her woman is shown, drinking two dogs.\",looks angry and show his teeth.,looks up as the baby wipes his mouth.\n19121,anetv_rmaHl5HTcwE,3974,A close up of a dart board is seen that leads into darts appearing. A person's hand takes off the darts and more darts,A close up of a dart board is seen that leads into darts appearing.,A person's hand takes off the darts and more darts,gold,are shown hitting the board.,shoot off into the distance.,are shown into the hole.,are shown disappearing into the water.\n19122,anetv_rmaHl5HTcwE,3975,A person's hand takes off the darts and more darts are shown hitting the board. This,A person's hand takes off the darts and more darts are shown hitting the board.,This,gold,throws up between the men and begin throwing darts at the top board.,around the pool while looking back and holding several darts as well as the camera.,\"curtsey and move around the ball balls and words past shown, after the game continues in the end.\",happens several more times while the camera captures it's movements.\n19123,anetv_U2-GFZxIufw,10404,A boy grabs the rope and goes in the water after the boat. The boat,A boy grabs the rope and goes in the water after the boat.,The boat,gold,returns and paddles through the water.,begins to speed up.,goes to the stern and is flown to the top.,is wakeboarding as hard as a boat.\n19124,anetv_U2-GFZxIufw,10403,A boat goes on to a lake with a rope behind it. A boy,A boat goes on to a lake with a rope behind it.,A boy,gold,stands on a safety beam and jumps up from a rock into the water.,is walking in the ocean as the camera crashes near the river.,helps take little boats from the back of the boat.,grabs the rope and goes in the water after the boat.\n19125,anetv_U2-GFZxIufw,10405,The boat begins to speed up. The boy,The boat begins to speed up.,The boy,gold,waves a hook and catches board as he tosses his casket on the deck.,is brought to his feet and begins to water ski.,hops in along the side and climbs out with his feet as he rides.,goes along the railing and slides through the water.\n19126,anetv_d79uK3AhtTU,13583,\"He jumps, bungee jumping to the ground below. He\",\"He jumps, bungee jumping to the ground below.\",He,gold,throws down large black javelin.,\"is released, breathing heavily as other men help him.\",shoots several wrestlers in the air.,\"stops, gets up, jumps off and bends down.\"\n19127,anetv_d79uK3AhtTU,4844,\"He jumps, swinging back and forth from the rope. He\",\"He jumps, swinging back and forth from the rope.\",He,gold,throws the ball across the pool.,is doing hop demonstrations in place.,\"performs a long jump, jumps and lands back a winning while.\",is pulled back up by another man.\n19128,anetv_d79uK3AhtTU,13582,The man is suspended by a long rope attached to equipment around his body. He,The man is suspended by a long rope attached to equipment around his body.,He,gold,\"jumps, bungee jumping to the ground below.\",opens the other man board and then goes through a hole.,is sitting behind a panel.,takes a new piece of equipment with a power wire.\n19129,anetv_d79uK3AhtTU,4843,\"A man is hanging from a rope, dressed in bungee gear. He\",\"A man is hanging from a rope, dressed in bungee gear.\",He,gold,\"jumps, swinging back and forth from the rope.\",\"reaches after the stone, tries to run and back the wrong way.\",mixes through an equipment bathroom while doing tricks onto a mat with instruction on how to do it to explain it's work.,is showing how to use the rock on a grass and stand up while he is getting his snowboard.\n19130,anetv_d79uK3AhtTU,13581,A man is standing in front of another man outside. The man,A man is standing in front of another man outside.,The man,gold,is suspended by a long rope attached to equipment around his body.,walks towards the camera taking up to the man wearing a large wooden hat.,\"performs a martial arts, then talks to the camera, and shows people in the dance.\",is talking while holding a gun and four kids clothes behind them.\n19131,anetv_eRh6V0bcBpU,4445,\"Then, she goes to practice hitting it by herself for a little bit. This\",\"Then, she goes to practice hitting it by herself for a little bit.\",This,gold,\"deflates the house, then hitting the ball, takes it in and throws it repeatedly until it continues.\",\"is a game she really enjoys to play, its a hobby.\",first a woman is talking and making care.,helps her stay in the beam.\n19132,anetv_L6BxxvCbwpQ,16493,A guy is crawling on the ground. The guy,A guy is crawling on the ground.,The guy,gold,is using a box knife to cut the carpet.,runs to the camera.,shows a dog kick and gives a sideways kick.,climbs out of his truck.\n19133,anetv_L6BxxvCbwpQ,16494,The guy looks behind him. There,The guy looks behind him.,There,gold,faces someone with a doorway beside.,are a lot of papers on the wall.,rage credit stands on his hands.,steps toward a lineup of fruit and lies up in the split.\n19134,lsmdc0002_As_Good_As_It_Gets-46536,4536,They arrives at the table. He,They arrives at the table.,He,gold,pays up a florist.,\"speaks to a waiter, smiling in the passenger room.\",continues to sit against the table.,holds out her chair for her.\n19135,anetv_SXRSA62VbZg,18996,Then he cleans the client's arms with alcohol. The artist,Then he cleans the client's arms with alcohol.,The artist,gold,removes the compact from the needle and pauses to brush his hand.,work on the table.,moves it by the design.,wears a pair of latex gloves and begins tattooing the client's arm.\n19136,anetv_SXRSA62VbZg,18993,There's a person sitting on the counter of the salon. A customer,There's a person sitting on the counter of the salon.,A customer,gold,walks in and gives a child's picture to the tattoo artist.,is standing behind the counter watching and a woman going across the monkey bars and having fun.,springs the wooden chair against the bar.,is using a tissue to give the plastic cup he is rubbing his hand on a shelf.\n19137,anetv_SXRSA62VbZg,18997,He replicates the image traced from the picture on the client's arm along with some additional designs. He then,He replicates the image traced from the picture on the client's arm along with some additional designs.,He then,gold,takes a picture of the client's tattooed arm on a cellphone.,demonstrates adjustments to his razor trim and shows the completed reward address.,\"cuts the man's tail with the razor, then forces a closeup.\",throws a gray suit off next to the correct decorations painting the length of the lawn.\n19138,anetv_SXRSA62VbZg,18994,A customer walks in and gives a child's picture to the tattoo artist. The tattoo artist,A customer walks in and gives a child's picture to the tattoo artist.,The tattoo artist,gold,pulls off the ripping ring of the pliers and points the knife.,is holding a razor to his eye.,cuts out the tattoo of a swollen belly.,traces the child's picture on a paper.\n19139,anetv_SXRSA62VbZg,18992,A tattoo salon has displayed a metallic blue motor cycle. there,A tattoo salon has displayed a metallic blue motor cycle.,there,gold,is a man in a clothing as they wash him back and forth.,\"are two other people walking below, one looking in the left or out display intensifies.\",are a blue hills downwards that the event is bringing towards the scene behind her.,'s a person sitting on the counter of the salon.\n19140,anetv_SXRSA62VbZg,18995,The tattoo artist traces the child's picture on a paper. Then he,The tattoo artist traces the child's picture on a paper.,Then he,gold,cleans the client's arms with alcohol.,finds another metal sticker on the floor.,indicates a lady wearing a white robe.,extends the page with a marker.\n19141,lsmdc1010_TITANIC-76922,3152,The man smiles at a bearded crew mate. They,The man smiles at a bearded crew mate.,They,gold,pass along side upper balconies running down the side of the ship.,join him in a modest shop.,arrive at a pen station.,get out of the back of the truck.\n19142,lsmdc1010_TITANIC-76922,3148,\"The two subs disappear as they sink into the dark ocean depths. Later, the subs\",The two subs disappear as they sink into the dark ocean depths.,\"Later, the subs\",gold,chamber grows too dark.,creep just above the ocean floor.,drenched sun brightly lit by the horizon shows them stealing paintings.,move out past the protesters who hide behind a pile of scattered pools.\n19143,lsmdc1010_TITANIC-76922,3147,The lights grow brighter as two objects approach. The two subs,The lights grow brighter as two objects approach.,The two subs,gold,disappear as they sink into the dark ocean depths.,leap through them.,watch the light blazing torches.,stare at each other and form a smile of shock.\n19144,lsmdc1010_TITANIC-76922,3149,\"Which are covered in a growth resembling drippy, gray concrete. The sub\",\"Which are covered in a growth resembling drippy, gray concrete.\",The sub,gold,slices off the entire piece of earth to reveal feet crossing reek like state.,rises to twelve feet wider.,moves forward stirring up clouds of sediment as the second sub follows close behind.,rotates on the keys of the bust of the ship.\n19145,lsmdc1010_TITANIC-76922,3154,The man sets down his camcorder as the subs descend toward the wreck. Lights,The man sets down his camcorder as the subs descend toward the wreck.,Lights,gold,\"the transport, he runs up to the start line and climbs onto a sitting ledge.\",\", someone, big someone fast spread over a circular tile before him, vacuum it into position.\",illuminate rectangular windows with panes of broken glass.,\", as someone descends amid the bright sun - goers, the woman gazes up into the night sky.\"\n19146,lsmdc1010_TITANIC-76922,3150,The sub moves forward stirring up clouds of sediment as the second sub follows close behind. A brown - haired man,The sub moves forward stirring up clouds of sediment as the second sub follows close behind.,A brown - haired man,gold,\"leaps over a counter, crashes into the parking tunnel, drops her hands like a cane.\",films himself with a camcorder as he stares out the window at the wreck.,\"looks out of the window, then takes a brush.\",maintains her stern gaze as her son whips his head on the top of the rich man's head.\n19147,lsmdc1010_TITANIC-76922,3151,A brown - haired man films himself with a camcorder as he stares out the window at the wreck. The man,A brown - haired man films himself with a camcorder as he stares out the window at the wreck.,The man,gold,closes his eyes as his son get out.,begins to fold himself in the picture.,smiles at a bearded crew mate.,\"'s friends join the lake, then skiing.\"\n19148,lsmdc1010_TITANIC-76922,3153,They pass along side upper balconies running down the side of the ship. The man,They pass along side upper balconies running down the side of the ship.,The man,gold,assembles his exercise bike on a tube and sits by her body on the raft.,\"turns over the book and types in the sack, gesturing to the man as he stands on the translucent canvas.\",sets down his camcorder as the subs descend toward the wreck.,\"waves, waves others and welcome to the shore.\"\n19149,lsmdc1010_TITANIC-76922,3146,\"Surrounded by inky darkness, a pair of small bluish white lights glow. The lights\",\"Surrounded by inky darkness, a pair of small bluish white lights glow.\",The lights,gold,turn off from their modern building.,grow brighter as two objects approach.,selfies the flickering torch.,are thrown into a young boy.\n19150,anetv_tzsgg_o6xHo,8578,A woman in man in black clothing stand in together and discuss a routine. The woman,A woman in man in black clothing stand in together and discuss a routine.,The woman,gold,cuts into a woman who's been laying on a chair while uneven abs in her head.,demonstrates with a ball and playing and continues to vault jumping tires and in the air before turning foam out into their foot.,begins dancing and goes in a circle a few times while the man watches.,talks to the woman dispenser and dance.\n19151,anetv_ojQdrhHT_gE,1788,The three bumper cars break away and begin to drive in different directions as they continue to bump into one another. Two girls in a bumper car bump into a wall and briefliy,The three bumper cars break away and begin to drive in different directions as they continue to bump into one another.,Two girls in a bumper car bump into a wall and briefliy,gold,onto one another for the other.,themselves down the sidewalk several times.,\"running along the sidewalk post, and on the various side bumps and clips.\",have a hard time getting back to moving.\n19152,anetv_ojQdrhHT_gE,1787,People are driving in bumper cars and bump into one another and are forced to stop. The three bumper cars,People are driving in bumper cars and bump into one another and are forced to stop.,The three bumper cars,gold,break away and begin to drive in different directions as they continue to bump into one another.,walk by in the background.,cheer and cheer to one another and midway to one another.,ride down the road when another person climbs the side of the street.\n19153,anetv_ojQdrhHT_gE,1789,Two girls in a bumper car bump into a wall and briefliy have a hard time getting back to moving. People,Two girls in a bumper car bump into a wall and briefliy have a hard time getting back to moving.,People,gold,\"continue a game to finish and start running back, then grab the lanes and get them in.\",get in a car and lead them in the street.,are constantly driving their bumper cars and bumping into things until the ride is over.,get out of the garbage to the sidelines and walk through the large opening in to get the car side of the car.\n19154,lsmdc3032_HOW_DO_YOU_KNOW-2270,15491,He crosses to the door. Someone,He crosses to the door.,Someone,gold,\"is at a lab, looking by monitors.\",sulks into the living room.,lights a lit cigarette.,wears someone's bed.\n19155,lsmdc3032_HOW_DO_YOU_KNOW-2270,15492,Someone sulks into the living room. She,Someone sulks into the living room.,She,gold,exits the bedroom and looks out the window.,writes in a half from her bed.,halts abruptly and looks around.,guides her foot worriedly.\n19156,anetv_zEyFuCsJh3Y,6693,People are working out on cycle bikes in a gym. A woman in the front,People are working out on cycle bikes in a gym.,A woman in the front,gold,pulls out on a bike.,stands up and pedals on the bike.,talks to another camera.,is raising both hands.\n19157,anetv_vgUSEkvJRlI,6003,\"The camera pans around people wandering around an arena waving and smiling to the camera followed by a group of fencers lined up. A bike passes by the fencers and the people then fence against one another,\",The camera pans around people wandering around an arena waving and smiling to the camera followed by a group of fencers lined up.,\"A bike passes by the fencers and the people then fence against one another,\",gold,ending with them walking around and posing.,throwing into one another.,and the mother is seen cut in front and smiling to the camera.,then the man is shown and many performing impressive flips and tricks.\n19158,anetv_vgUSEkvJRlI,5787,A title screen after a white screen announces the video as a fencing flash mob. Team members,A title screen after a white screen announces the video as a fencing flash mob.,Team members,gold,are jumping up and down and then measuring a area.,stand at the arena and watch as judges dances hitting back and forth.,are seen boarding a train with their fencing gear and assemble outside in a courtyard.,gather to follow a groomer.\n19159,anetv_vgUSEkvJRlI,5788,Team members are seen boarding a train with their fencing gear and assemble outside in a courtyard. They,Team members are seen boarding a train with their fencing gear and assemble outside in a courtyard.,They,gold,hold frisbees while hold a frisbees and interact behind beiber pointing to a camera.,are in their white uniforms and masks outside of some ancient ruins.,hold the kites into the air with their boards.,laugh with each other as they show how they do it done.\n19160,anetv_4KgIfmPLuAY,4928,\"A man kneels on a mat and shows her back an front with his left hand while talking. Then, the man\",A man kneels on a mat and shows her back an front with his left hand while talking.,\"Then, the man\",gold,puts the dough on his finger and then puts the lights on.,is left talking to the man.,lift a kettlebell and put on front his chest while talking.,flips and drop his weight.\n19161,anetv_4KgIfmPLuAY,4929,\"Then, the man lift a kettlebell and put on front his chest while talking. Then, the man\",\"Then, the man lift a kettlebell and put on front his chest while talking.\",\"Then, the man\",gold,gently sets all the weight on.,put powder on his hands and put words on the screen.,put the kettlebell on the floor and continues talking.,casually lifts the completed weight above his head with a glass of water.\n19162,lsmdc1043_Vantage_Point-89236,12584,Someone stands at the lectern. Someone,Someone stands at the lectern.,Someone,gold,checks his watch as someone drives down the street.,\"sits on the edge of a silver church secured in black, facing the tall girl with a folded shoulder.\",sees his double on tv.,\"stares at the room monitor then yields, blinks her eyes firmly and nods.\"\n19163,lsmdc1043_Vantage_Point-89236,12580,\"They follow someone down a corridor. At the plaza, the crowd\",They follow someone down a corridor.,\"At the plaza, the crowd\",gold,\"watches, people and someone, playing in unison.\",\", a gold - haired man sits, sits and his father opens his book.\",waves spanish flags as the secret service agents escort someone's double to the podium.,appears with the words the depths sloop is executing.\n19164,lsmdc1043_Vantage_Point-89236,12582,\"In his hotel room, someone opens the curtains and gazes out of the window of the Plaza someone. The Secret Service agents\",\"In his hotel room, someone opens the curtains and gazes out of the window of the Plaza someone.\",The Secret Service agents,gold,take positions around someone on the red - carpeted podium.,hold up slatted bags.,follow him down the stairwell.,emerge from his hiding car and run through a dark tunnel.\n19165,lsmdc1043_Vantage_Point-89236,12581,\"At the plaza, the crowd waves Spanish flags as the Secret Service agents escort someone's double to the podium. In his hotel room, someone\",\"At the plaza, the crowd waves Spanish flags as the Secret Service agents escort someone's double to the podium.\",\"In his hotel room, someone\",gold,opens the curtains and gazes out of the window of the plaza someone.,watches his wife break out on both sides of the platform.,rests her head on someone's shoulder.,watches medics drive down a bulletin board in the wire.\n19166,lsmdc1043_Vantage_Point-89236,12583,The Secret Service agents take positions around someone on the red - carpeted podium. Someone,The Secret Service agents take positions around someone on the red - carpeted podium.,Someone,gold,covers them with a newspaper.,looks in the eight - style car.,stands at the lectern.,swings her arms around someone.\n19167,anetv_Z90-HZ_geSI,5840,Many woman are shown brushing the dogs and trimming their fur while giving them head scratches in between. More dogs,Many woman are shown brushing the dogs and trimming their fur while giving them head scratches in between.,More dogs,gold,continue to play the guitar while speak to the camera while still speaking to the camera.,are shown of the dogs sticking out as well as nails thrown back and caressing.,are seen sitting in crates and barking at the camera while the wind blows on them.,continue walking back and fourth while stopping to talk at the end.\n19168,anetv_Z90-HZ_geSI,5839,An intro leads into shots outside a dog groomers and inside where several dogs are tied it. Many woman,An intro leads into shots outside a dog groomers and inside where several dogs are tied it.,Many woman,gold,are shown brushing the dogs and trimming their fur while giving them head scratches in between.,are shown chasing a dog around and ends with her bending rags off dry dogs.,\"gather around a bush and begin push the dog around, and continues raking.\",are seen in wolf costumes as well as riding with dogs on a video.\n19169,anetv_2zQk4ZEfzf4,13413,A man is seen standing in a sand pit and begins spinning around and throwing the object. The man,A man is seen standing in a sand pit and begins spinning around and throwing the object.,The man,gold,is seen laying on a board on the ground while speaking to the camera and ends by kneeling along behind him.,moves back arms fourth and end by moving his arms back and fourth.,is shown several times spinning around and throwing the object off into the distance.,continues moving around with one throwing and walking to one another.\n19170,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26200,9890,\"They stalk closer, backing someone and the others toward the souls. They\",\"They stalk closer, backing someone and the others toward the souls.\",They,gold,sit around the stage laughing and applaud.,\"hammered nails into the next, stabbing them.\",push the group to within a few feet of the fire.,ladle the salad with a yellow liquid.\n19171,anetv_bY-4XBIGiwI,14893,Various shots are shown of a man kicking his legs around and jumping rope at the same time. The man,Various shots are shown of a man kicking his legs around and jumping rope at the same time.,The man,gold,throws the object off in the end and walks over to the casino area.,performs several different jumps and flips on the gym floor with the jump rope.,continues to speak with the camera while running.,gets back on the horse and continues to speak by performing the tricks.\n19172,anetv_bY-4XBIGiwI,5481,He is using a pair of nunchucks for exercise. He,He is using a pair of nunchucks for exercise.,He,gold,begins to walk on the bike.,is jumping up and down and flipping ahead in unison.,stops short to change the various moves.,jumps and spins around the nunchucks.\n19173,anetv_bY-4XBIGiwI,5480,A boy spins around inside a gym. He,A boy spins around inside a gym.,He,gold,is using a pair of nunchucks for exercise.,holds a racket as he walks on.,gets out of the pool.,swings in front of a roof with another man walking to the bar.\n19174,anetv_t3dHI5TeY7I,7861,A man is sitting in a wheel chair taking his shoes and socks off. A dog,A man is sitting in a wheel chair taking his shoes and socks off.,A dog,gold,is sitting on the floor talking to the camera.,gets onto camels very fast as they walk.,appears reaching behind the table.,is on the floor next to the man.\n19175,anetv_t3dHI5TeY7I,4689,This man is showing viewers how he puts his socks on while he sits in his wheelchair. First he lifts one leg up onto the other leg and he,This man is showing viewers how he puts his socks on while he sits in his wheelchair.,First he lifts one leg up onto the other leg and he,gold,demonstrates how to clean it with a can of shaving hand.,puts one white high knee sock on.,ballerina jumps off the monkey bars and lands in front of the height of the drummer.,crosses it and motions attached to a rope to tighten his momentum to put the rest on it.\n19176,anetv_t3dHI5TeY7I,7862,A dog is on the floor next to the man. The man,A dog is on the floor next to the man.,The man,gold,puts on socks and shoes.,begins to wipe it out with a lawn mower.,slides on the man's leg and start touching the street.,pushes back the carpet and it out of the way.\n19177,anetv_t3dHI5TeY7I,4690,\"First he lifts one leg up onto the other leg and he puts one white high knee sock on. A small white dog walks by while he puts on his socks and afer a while, he\",First he lifts one leg up onto the other leg and he puts one white high knee sock on.,\"A small white dog walks by while he puts on his socks and afer a while, he\",gold,continues to ride the bicycle to show the brunette green ladies who are leaning.,begins brushing and using his legs.,has both socks on his feet.,continues to demonstrate how to hold the shoes in certain locations.\n19178,lsmdc3082_TITANIC1-38832,18881,He turns and watches lights glint off the surface of rolling waves. Someone,He turns and watches lights glint off the surface of rolling waves.,Someone,gold,looks down on himself as she collects pins in his hands and waggles his neck.,hides behind a curtain.,\"swims through the opening towards the bucks, landing into another boat in the pool just before leaving the disgusted river.\",walks barefoot across the desolate deck.\n19179,lsmdc3082_TITANIC1-38832,18884,\"She grips the railing with one hand. Smiling, she\",She grips the railing with one hand.,\"Smiling, she\",gold,stares down into the water.,straightens a knob resting on the rail of the railing.,swings away and lands at it as her sister swirls over it.,closes the jaguar hall.\n19180,lsmdc3082_TITANIC1-38832,18888,\"Back on the deck of the Keldysh, someone has the diamond necklace in her hand. Someone\",\"Back on the deck of the Keldysh, someone has the diamond necklace in her hand.\",Someone,gold,smiles and exhales deeply.,swats her back outside the wall.,stops the magical dust funnel.,leans against the window ledge and peers inside.\n19181,lsmdc3082_TITANIC1-38832,18883,Someone walks to a railing at the back of the ship. She,Someone walks to a railing at the back of the ship.,She,gold,grips the railing with one hand.,\"shakes the record, and lifts it up.\",\"presses it onto the board, then holds the bird upright.\",crashes down near a nearly bubbles waterfall.\n19182,lsmdc3082_TITANIC1-38832,18886,\"She unclasps her left hand, revealing the Heart of the Ocean. On the deck of the Carpathia, young someone\",\"She unclasps her left hand, revealing the Heart of the Ocean.\",\"On the deck of the Carpathia, young someone\",gold,show boats their long engraved distances.,peers over the hut.,stands in the sunlight onstage.,stands in the rain and stares at the statue of liberty.\n19183,lsmdc3082_TITANIC1-38832,18882,Someone walks barefoot across the desolate deck. Someone,Someone walks barefoot across the desolate deck.,Someone,gold,continue to recover someone as the trio sets in unison.,stares out of the window as someone walks into the apartment.,walks along a sunny street at the top of the stairs.,walks to a railing at the back of the ship.\n19184,lsmdc3082_TITANIC1-38832,18880,\"Staring at someone, someone smiles and shakes her head. He\",\"Staring at someone, someone smiles and shakes her head.\",He,gold,\"closes his ear, and looks at her.\",covers her face with her hands.,blinks off the floor.,turns and watches lights glint off the surface of rolling waves.\n19185,lsmdc3082_TITANIC1-38832,18887,\"Frowning, she looks down. Back on the deck of the Keldysh, someone\",\"Frowning, she looks down.\",\"Back on the deck of the Keldysh, someone\",gold,props her other against the canvas.,has the diamond necklace in her hand.,massages someone's neck with a thumb.,creeps toward the aircraft and pops up.\n19186,anetv_c5dvRUBZw2Q,12443,The camera pans the rest of the people on the boat and the girl finally jumps in wearing her equipment to breath efficiently. A water buoy and rope,The camera pans the rest of the people on the boat and the girl finally jumps in wearing her equipment to breath efficiently.,A water buoy and rope,gold,is shown taking a closeup angle and then landing on a thick solo line.,winds up and glancing around to see the surfer and one woman in a gorilla dress demonstrating the side or talking in the background.,is attached to a boats in the foreground.,is then shown as the girl goes deep under the water and swims with several schools of fish.\n19187,anetv_c5dvRUBZw2Q,12444,\"A boy then pulls out several cards under the water and they begin doing truth or dares under the water and he asks the women will she marry him. After the guy gets his answer, they leave from under the water and several pictures\",A boy then pulls out several cards under the water and they begin doing truth or dares under the water and he asks the women will she marry him.,\"After the guy gets his answer, they leave from under the water and several pictures\",gold,are shown of pool door.,resume the game showing the wise advertises.,are shown to show off the ring.,are then shown for the screen.\n19188,anetv_c5dvRUBZw2Q,12442,A young girl is standing in a neon wet suit on a boat preparing to jump off. The camera pans the rest of the people on the boat and the girl finally,A young girl is standing in a neon wet suit on a boat preparing to jump off.,The camera pans the rest of the people on the boat and the girl finally,gold,sails on a rope and stands by the water.,jumps high and swoops down it.,speaks quickly to the crowd.,jumps in wearing her equipment to breath efficiently.\n19189,anetv_c5dvRUBZw2Q,15752,Several jump into the water and begin swimming underwater with scuba gear. The people,Several jump into the water and begin swimming underwater with scuba gear.,The people,gold,start to hurt around them as they continue skiing.,interact with the water while continuing to speak and ends with fish swimming all around them.,continue riding and doing tricks as people as a tube.,continues to swim around the ocean while holding up cards and gesturing to one another.\n19190,anetv_U2td95KJU7Y,9781,\"A man hugs the boy who looks happy, and the boy walks around. The boy\",\"A man hugs the boy who looks happy, and the boy walks around.\",The boy,gold,spins and turns on his bathtub.,pushes others to the area with the kids.,jumps from a diving board and does four flips in the air before gets into the water.,swings his body very badly while making baskets and waving to the camera.\n19191,anetv_U2td95KJU7Y,9780,\"Then, the boy jumps and does four flips in the air and falls into the water. The crowd\",\"Then, the boy jumps and does four flips in the air and falls into the water.\",The crowd,gold,cheers with the girls on the phone.,applaud the boy holding british flags.,claps as he lifts and dismounts.,cheers on the sidelines with the second drone.\n19192,anetv_U2td95KJU7Y,9779,\"A boy stand on a pool diving board in an Olympic competition. Then, the boy\",A boy stand on a pool diving board in an Olympic competition.,\"Then, the boy\",gold,dives to strike in the ball fall.,jumps and does four flips in the air and falls into the water.,perform a tight trick poses using an oar.,spins and dives around outdoors again.\n19193,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61811,12187,Someone nods back to sleep. Someone,Someone nods back to sleep.,Someone,gold,\"sighs, burying the bottle in place.\",sits on his bed as someone eats her raw chicken.,rests his head against him.,puts down the paper.\n19194,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61811,12188,\"As someone looks up, he is stung by the beauty before him. Someone, celeborn and someone\",\"As someone looks up, he is stung by the beauty before him.\",\"Someone, celeborn and someone\",gold,are waiting for them.,\"now standing in a doorway with a combination of - - with extended tones, and several singers surrounding their heads.\",go down off the hillside.,cut up a chute of their own hoping which fit around the table.\n19195,anetv__3lgJ6yp7o8,9053,A person is seen sitting in a kayak and moving himself down a rough river. The person,A person is seen sitting in a kayak and moving himself down a rough river.,The person,gold,continues to surf and swim above the water as well as shots of the water.,continues skiing and taking up ski boards while others watch on the side.,continues along the other while more people walk around and watch.,continues riding down the river while another people watches on the side.\n19196,lsmdc3001_21_JUMP_STREET-390,16055,Someone spots him running away. Someone,Someone spots him running away.,Someone,gold,wraps her arms around her and presses her against the wall.,catches up with him.,turns to face him as she crosses the ice.,grabs his arm and rests her head on the back of her head.\n19197,lsmdc3001_21_JUMP_STREET-390,16053,The bikers gain on them. They,The bikers gain on them.,They,gold,slap at each other's hands.,knocks them down from the dirt in the path.,are engaged in a game of curling.,rush to the back and take the passengers off them before returning to the proper position.\n19198,lsmdc3001_21_JUMP_STREET-390,16054,They slap at each other's hands. Heading up a clogged freeway onramp they,They slap at each other's hands.,Heading up a clogged freeway onramp they,gold,scramble past the crane's roots.,fly through the air with a rolling wave.,drive around a convoy of clouds.,\"jam the breaks, stopping an inch shy of a station wagon full of kids.\"\n19199,lsmdc3001_21_JUMP_STREET-390,16060,\"A biker pulls out a handgun and takes aim. Using a tennis racket, someone\",A biker pulls out a handgun and takes aim.,\"Using a tennis racket, someone\",gold,leaps up several feet and bashes someone again.,adds an automatic rocket.,hits a golf ball into his head.,shoots an opponent with white net.\n19200,lsmdc3001_21_JUMP_STREET-390,16046,\"As the last of the bikers rides off, someone rises from someone's lap. The Driver's Ed car\",\"As the last of the bikers rides off, someone rises from someone's lap.\",The Driver's Ed car,gold,pulls up behind them.,\"is still a little stuck in sunlight breathlessly through the windscreen on its melancholy looking vehicle, which reverses out of its sparking speed.\",stops at attention and explodes.,pulls up outside someone's apartment.\n19201,lsmdc3001_21_JUMP_STREET-390,16045,\"One by one the bikers ride off on their choppers. As the last of the bikers rides off, someone\",One by one the bikers ride off on their choppers.,\"As the last of the bikers rides off, someone\",gold,runs into the past.,rises from someone's lap.,bounces around him aggressively.,changes the airborne stairway on the rider above destination.\n19202,lsmdc3001_21_JUMP_STREET-390,16049,He rips the student driver sign off the roof and bashes it over the hood. As he jumps up and down on the hood his cohorts,He rips the student driver sign off the roof and bashes it over the hood.,As he jumps up and down on the hood his cohorts,gold,\"follow in to him, someone runs down a ramp wearing his fists.\",find out heavy with it.,get off their bikes and watch.,\"turn to see someone running towards the gale, white and white.\"\n19203,lsmdc3001_21_JUMP_STREET-390,16058,Someone pulls him out then gets behind the wheel. A light turns green and he,Someone pulls him out then gets behind the wheel.,A light turns green and he,gold,speeds on to the freeway.,tumbles again down the street to join people.,sees the elderly couple on the desk.,swims triumphantly to a palm tree.\n19204,lsmdc3001_21_JUMP_STREET-390,16047,\"Someone steps on the brake and the car stops short again. As someone recoils, the car\",Someone steps on the brake and the car stops short again.,\"As someone recoils, the car\",gold,rams the bearded biker's rear tire knocking him onto the hood.,swerves him out of view.,rises and someone shakes the driver and smashes the suv into the sidecar.,hits the zombie driver instead.\n19205,lsmdc3001_21_JUMP_STREET-390,16059,A light turns green and he speeds on to the freeway. A biker,A light turns green and he speeds on to the freeway.,A biker,gold,spinning hinged hits the ground.,runs outdoors down the ramp into the road.,pulls out a handgun and takes aim.,rides a cart with a blue dirt skateboard.\n19206,lsmdc3001_21_JUMP_STREET-390,16051,\"Someone observes an instruction card, before you drive fasten seatbelt, check mirrors, hands on ten and two. They\",\"Someone observes an instruction card, before you drive fasten seatbelt, check mirrors, hands on ten and two.\",They,gold,make several tricks orders the man.,exits the curve and cut it on the floor with a leveler.,cooked out amid the clips of people walking in the bar.,blow through a red light.\n19207,lsmdc3001_21_JUMP_STREET-390,16048,\"As someone recoils, the car rams the bearded biker's rear tire Knocking him onto the hood. He\",\"As someone recoils, the car rams the bearded biker's rear tire Knocking him onto the hood.\",He,gold,rips the student driver sign off the roof and bashes it over the hood.,nuts are attached to a string.,blows over a whirling pissed out man.,screeches to the scene as the sedan pulls itself away.\n19208,lsmdc3001_21_JUMP_STREET-390,16044,Someone pulls someone's head toward his lap. One by one the bikers,Someone pulls someone's head toward his lap.,One by one the bikers,gold,trains with someone's edge.,approach a silver truck.,spring out a perfect unison.,ride off on their choppers.\n19209,lsmdc3001_21_JUMP_STREET-390,16052,They blow through a red light. The bikers,They blow through a red light.,The bikers,gold,brake boarder bursts out of the snow as the vehicle swerves into a city.,get in a car.,get back on the motorcycles and speed after them.,are gathered in the large area dragging one person.\n19210,lsmdc3001_21_JUMP_STREET-390,16057,He spots a sports car. Someone,He spots a sports car.,Someone,gold,drives a barrel of dust through a front door.,pulls him out then gets behind the wheel.,stands in frenetic chaos behind the building.,turns to his father on the porch as he pulls his seat toward the waiting cab.\n19211,anetv_-8awLlFLcQc,1655,Presentation of an oreck is shown. the man,Presentation of an oreck is shown.,the man,gold,shows a collection how the same process include different types of things.,continues talking and in front of him.,open the vacuum and check it and put it on the back and seat it in place.,\"stands up swiftly, then lifts to a weight and prepares to do a skims backflip.\"\n19212,anetv_-8awLlFLcQc,1658,The the man change the head and vacuum an office chair. the man,The the man change the head and vacuum an office chair.,the man,gold,is cleaning the ceiling slit.,sprays the blood in a towel.,applies a sheet left over the man's hair.,starts cutting the tiles.\n19213,anetv_-8awLlFLcQc,1091,Several pictures of vacuums are shown. A man,Several pictures of vacuums are shown.,A man,gold,\"washes his hands, then washes.\",is then seen cleaning a room of a lie.,shovels spaghetti in a torching machine.,is shown loading a vacuum cleaner.\n19214,anetv_-8awLlFLcQc,1657,Man is vacuuming the carpet in an office and the inside of a trash bin. the the man,Man is vacuuming the carpet in an office and the inside of a trash bin.,the the man,gold,walks in a hoodie cutting off the wallpaper.,flips to put unrolling tiles flat on the floor between people.,change the head and vacuum an office chair.,reaches into the cameraman and turns to his security standing.\n19215,anetv_-8awLlFLcQc,1656,The man open the vacuum and check it and put it on the back and seat it in place. man,The man open the vacuum and check it and put it on the back and seat it in place.,man,gold,uses the vacuum to wipe the wax.,is vacuuming the carpet in an office and the inside of a trash bin.,is sitting next to the machine and proceeds to fix criss - peels.,is sitting in the exercise car and presses the button with the machine.\n19216,anetv_nDRaXY5ddPs,3621,A small dog is chasing the mop. They,A small dog is chasing the mop.,They,gold,see the boy rub together.,pass several animals on horses.,\"are pushed along the floor, deflecting it.\",continue to mop with the dog on the mop.\n19217,anetv_nDRaXY5ddPs,3620,A person is using a mop to mop the floor. A small dog,A person is using a mop to mop the floor.,A small dog,gold,is seen standing in a room with a mop behind.,is mopping the floor.,is chasing the mop.,begins to force the floor.\n19218,anetv_RKzwMrL5Th4,15269,\"The player kicked the ball to the goal, but the goalkeeper is able to block it. The players\",\"The player kicked the ball to the goal, but the goalkeeper is able to block it.\",The players,gold,ran after the ball and catch the ball.,trade balls and jump in action.,pushed the ball when the player ran after the ball.,continue to play soccer in the indoor field.\n19219,anetv_RKzwMrL5Th4,17032,A group of players run up and down the court. They,A group of players run up and down the court.,They,gold,start playing a game of beach soccer.,are chasing a ball back and forth.,throw the balls into the floor.,are playing a game of lacrosse together.\n19220,anetv_RKzwMrL5Th4,15267,\"Three male players are running in the court after the ball. The player in red shirt is slowly kicking the ball, then he\",Three male players are running in the court after the ball.,\"The player in red shirt is slowly kicking the ball, then he\",gold,kicked it hard to the goal.,throws a yellow ball at the blue team.,tries again to begin a goal.,does a raise of the opposing players layups to the other side.\n19221,anetv_RKzwMrL5Th4,17033,They are chasing a ball back and forth. They,They are chasing a ball back and forth.,They,gold,pick up the belt to put them on.,\"kick the ball, trying to get it into a goal.\",roofed arena is sitting on three public tables playing croquet.,is in a garage prepares for fight.\n19222,anetv_RKzwMrL5Th4,15268,\"The player in red shirt is slowly kicking the ball, then he kicked it hard to the goal. The player kicked the ball to the goal, but the goalkeeper\",\"The player in red shirt is slowly kicking the ball, then he kicked it hard to the goal.\",\"The player kicked the ball to the goal, but the goalkeeper\",gold,is able to block it.,hits and walks and kicked.,looked up as the championship game continues.,jumped over the first ball and kicked it into the sand.\n19223,lsmdc3037_IRON_MAN2-17053,16175,Someone and someone shoot and punch more drones as they approach. One drone,Someone and someone shoot and punch more drones as they approach.,One drone,gold,fends him off with a train.,fires in the vast way below.,stands around a carriage with a 200 - duel shotgun.,\"fires a missile at someone, who dodges it.\"\n19224,lsmdc3037_IRON_MAN2-17053,16171,They turn as a Navy drone lands on the ledge above them. Other military drones,They turn as a Navy drone lands on the ledge above them.,Other military drones,gold,drop down and surround them.,hurtle through the in red flood cheering city.,wait in the gentle shaft of the iceberg.,\"soars on ahead, smoothing one of the ships medals.\"\n19225,lsmdc3037_IRON_MAN2-17053,16173,The face plates on someone's and someone's suits flip back down. The drones,The face plates on someone's and someone's suits flip back down.,The drones,gold,\"drink from a club, but someone quickly guns it.\",fire their guns as they charge toward the two men.,take their carts and cover her cheek.,are on the country beach.\n19226,lsmdc3037_IRON_MAN2-17053,16172,Other military drones drop down and surround them. Someone and someone,Other military drones drop down and surround them.,Someone and someone,gold,stand back to back as they glance around at the drones.,\"look around in amazement, penguins as the motorcyclist skates down opposite them.\",escort the rifle down his victim.,cover the alien in distress.\n19227,lsmdc3037_IRON_MAN2-17053,16174,The drones fire their guns as they charge toward the two men. Someone and someone,The drones fire their guns as they charge toward the two men.,Someone and someone,gold,\"turn, tackling a morsel on the ship.\",peer into the chopper's tail end.,\"ascend, then dive deeper until it's level and intensifies.\",shoot and punch more drones as they approach.\n19228,lsmdc3037_IRON_MAN2-17053,16176,\"One drone fires a missile at someone, who dodges it. Someone\",\"One drone fires a missile at someone, who dodges it.\",Someone,gold,\"collects his hand from the cord and looks helplessly at the american, one at a time.\",\"comes through a door, bumps the key and falls on a balcony below.\",\"fires a blast at the drone, which explodes, also destroying two other drones flanking it.\",shoots out at the air as someone flies out of the expo.\n19229,lsmdc3037_IRON_MAN2-17053,16177,\"Someone fires a blast at the drone, which explodes, also destroying two other drones flanking it. Someone and someone\",\"Someone fires a blast at the drone, which explodes, also destroying two other drones flanking it.\",Someone and someone,gold,\"climb out from the fridge, gather around, and engage in a flash of green flame.\",fly from the office.,scurry out from all rows as the two decapitated men run past them.,shoot and destroy more drones.\n19230,anetv_vbHLA5l_BRc,17809,\"A woman stands up in a boat, then a man looks closely at the camera. The machine\",\"A woman stands up in a boat, then a man looks closely at the camera.\",The machine,gold,moves to his chest as he continues to exercise.,is placed in the water as the man is water skiing while attached to it.,appears and continues to fill at the bottom from the screen to watch on the screen.,falls to the ground.\n19231,anetv_vbHLA5l_BRc,15302,He is then shown riding along the water while the camera watches from below. He,He is then shown riding along the water while the camera watches from below.,He,gold,continues to ride while shots of the boat are shown and him smiling at the camera.,ends the video to the camera.,is shown cutting his blows as well as touching his face.,\"continues to speak more, closing the trunk seat after her.\"\n19232,anetv_vbHLA5l_BRc,17810,The machine is placed in the water as the man is water skiing while attached to it. We,The machine is placed in the water as the man is water skiing while attached to it.,We,gold,\"see a large spray of water, followed by the man in the water as he smiles and waves.\",go man in a canoe.,are sitting close behind the man on the rowing machine.,on top of the ending screen is shown.\n19233,anetv_vbHLA5l_BRc,15301,People are seen looking close up to a camera with a cam climbing on a set of skis. He,People are seen looking close up to a camera with a cam climbing on a set of skis.,He,gold,turns on the water and continues skiing and ends by sliding out of the car.,speaks quickly through the camera while gesturing to the camera while standing near them and continuing to use rag.,is then shown riding along the water while the camera watches from below.,push themselves along the water and end by walking down.\n19234,anetv_3nzXMKByUnk,16524,A young woman is seen kneeling on the side of a building and leads into shots of her dancing with another man. The man and woman,A young woman is seen kneeling on the side of a building and leads into shots of her dancing with another man.,The man and woman,gold,continuously spin around in the middle of a city square and ends by dipping the woman.,continuously skate down followed by the woman dancing for the camera while moving the feet back and fourth.,grab her cigarette and continue to play and stand up.,speak to one another while holding a pose and posing in a public dance area.\n19235,lsmdc3055_PROMETHEUS-27253,8848,\"Grimacing painfully, someone sits up. Her gaze\",\"Grimacing painfully, someone sits up.\",Her gaze,gold,freezes as he paces.,fixes on the shoes and he bends down and glares to someone.,fixes on her tinted skin.,darts to a wrecked atv half - buried in a mound of dirt.\n19236,anetv_p8UOE62POAE,14843,The man chases around the calf and attempts to tie up the calf. He,The man chases around the calf and attempts to tie up the calf.,He,gold,falls up on the floor and jumps down.,grabs two frisbees and walks away and stands up into the water.,successfully ties up the calf and walks out of frame while an audience watches on the side.,ties up the calf and ties the calf up.\n19237,anetv_p8UOE62POAE,15595,He throws it to the ground and ties its back legs. Someone,He throws it to the ground and ties its back legs.,Someone,gold,steps out from the trunk and opens the trunk for the camera.,rides up next to him on a horse holding a red flag.,plants a hand over his mouth and presses the pen against a bloody patch of debris.,watches as the pig snowmobiles up the steps.\n19238,anetv_p8UOE62POAE,15594,A man ropes a white lamb. He,A man ropes a white lamb.,He,gold,chops a tree using axes.,falls to the water.,throws it to the ground and ties its back legs.,holds a large weight in his hands as he eats an ice cream cone.\n19239,anetv_p8UOE62POAE,14842,A large calf is seen running around a pit followed by a man running into frame. The man,A large calf is seen running around a pit followed by a man running into frame.,The man,gold,continues to perform various tricks over the horse while others watch on the side.,chases around the calf and attempts to tie up the calf.,continues to lay down all of the horse kicking and others watching on the side.,kicks the man along quickly while climbing on a horse.\n19240,anetv_UxhKb-zZoWE,6577,More wrestlers bend down towards one another and begin wrestling while people drum on the side. More people,More wrestlers bend down towards one another and begin wrestling while people drum on the side.,More people,gold,are seen running in the kicking people around when they come in the car.,are walked in and continue wrestling on the pit.,runs into the girl trying to push them away from the woman.,onstage show the people adding proper in control while the audience watch them watch him on the sidelines.\n19241,anetv_UxhKb-zZoWE,6576,Two sumo wrestlers are seen fighting that leads into people walking in and others dancing together. More wrestlers,Two sumo wrestlers are seen fighting that leads into people walking in and others dancing together.,More wrestlers,gold,bend down towards one another and begin wrestling while people drum on the side.,are shown putting clothes in the end and swinging the phone door.,are shown fencing and ends with a man smiling and swinging up and still laughing.,do jump up and go jumping as well as asian men playing.\n19242,anetv_RxXBMgsu6uU,4880,When the race finishes the winner is interviewed. The video,When the race finishes the winner is interviewed.,The video,gold,ends with the closing credits and credits.,ends with the closing graphics with sped and graphics.,ends with the closing captions shown on the screen.,ends with the crowd credits interviewed on the background.\n19243,anetv_RxXBMgsu6uU,5228,Several male children are biking. Children,Several male children are biking.,Children,gold,enter and karate move in circles.,do backflips at steps.,are doing one choreography in a side room.,sit on bikes getting ready to race.\n19244,anetv_RxXBMgsu6uU,5231,A man walks back and forth around the boys in their bikes. The gate is released and the boys,A man walks back and forth around the boys in their bikes.,The gate is released and the boys,gold,are wearing hard winter outfits.,jump around jump flagpole.,bike on the dirt.,walk together to help.\n19245,anetv_RxXBMgsu6uU,5229,Children sit on bikes getting ready to race. A cameraman,Children sit on bikes getting ready to race.,A cameraman,gold,is shown in the first location and park playing.,takes a pole up the side of the slide and very quickly jumps.,gathers a huge yellow ball over a race course.,captures the boys sitting on their bikes.\n19246,anetv_RxXBMgsu6uU,4879,The gate opens and the race starts. One of the bikers,The gate opens and the race starts.,One of the bikers,gold,falls on the track.,has returned with the original packaged.,goes down to the van.,goes straight to the back.\n19247,anetv_RxXBMgsu6uU,5230,A cameraman captures the boys sitting on their bikes. A man,A cameraman captures the boys sitting on their bikes.,A man,gold,bends down next to one another and pets the cat.,rides his board and stands on the skateboard and falls into a passers - up position.,performs a shot but a policeman waves flags in someone behind him.,walks back and forth around the boys in their bikes.\n19248,anetv_RxXBMgsu6uU,5232,The gate is released and the boys bike on the dirt. A boy,The gate is released and the boys bike on the dirt.,A boy,gold,cuts up the string but manages to pick the dog out.,falls off his bike.,runs ahead of the cattle.,picks the waste off and smashes the pins with a large metal tool.\n19249,anetv_RxXBMgsu6uU,5233,A boy falls off his bike. A boy,A boy falls off his bike.,A boy,gold,keeps his balance and speeds down the street.,takes a picture with a fan.,raises his arm as he skateboards.,lifts off a skateboard.\n19250,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-541,1476,Audience members look on uneasily. Someone,Audience members look on uneasily.,Someone,gold,runs out and sits beside her.,shoots a glance over his shoulder as someone stands behind him.,enters the room and faces someone.,holds his finger to his temple.\n19251,lsmdc3046_LARRY_CROWNE-21731,8501,\"He places a checkmark on the last line of a list. Picking up a key, he\",He places a checkmark on the last line of a list.,\"Picking up a key, he\",gold,eyes a handwritten tag tied to it with string.,peers inside the car.,\"grabs it and hurries out, leaving the men blank in.\",lets it drop in front of him.\n19252,lsmdc3046_LARRY_CROWNE-21731,8500,\"Chain swings from someone's pocket as he pulls his bag over his shoulder. Now at home, someone\",Chain swings from someone's pocket as he pulls his bag over his shoulder.,\"Now at home, someone\",gold,takes the books from a desk and a boy meets captain sitting at his desk.,helps haul the girl into the backseat of the jeep.,\"enters a apartment, someone sitting next to him.\",packs papers into a large accordion file.\n19253,lsmdc3046_LARRY_CROWNE-21731,8499,With his lips pressed in a solemn line someone gives a respectful nod. Chain,With his lips pressed in a solemn line someone gives a respectful nod.,Chain,gold,swings from someone's pocket as he pulls his bag over his shoulder.,\", he turns to face a syringe.\",briefly blinks in the scene.,\"- wielding, someone takes two bottles from someone's rise, then returns to his desk.\"\n19254,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60883,1638,Someone proffers his ring which someone kisses. Someone gently,Someone proffers his ring which someone kisses.,Someone gently,gold,squeezes his hand into someone's breast pocket.,raises someone's head.,strokes her new face.,pushes it from his ear.\n19255,lsmdc1060_Yes_man-99145,8930,Someone holds up her camera to take a picture. She,Someone holds up her camera to take a picture.,She,gold,veers across the road onto the wrong side.,walks warmly along the door of her apartment.,\"wipes makeup on her face, then photographs the bookseller.\",\"walks through the living room, looking curiously by some carpet.\"\n19256,lsmdc1060_Yes_man-99145,8926,\"Someone sits behind the woman, someone. He\",\"Someone sits behind the woman, someone.\",He,gold,arm beaten from across the desk.,folds the padding and removes a cigarette.,smiles at him warmly.,wears the helmet and clings onto her.\n19257,lsmdc1060_Yes_man-99145,8935,\"He gazes at her feigning surprise. Wearing the helmet, she\",He gazes at her feigning surprise.,\"Wearing the helmet, she\",gold,marches over to him.,rests her chin on his hand.,runs over to the reception window and launches her arms across the air.,reaches for her bag.\n19258,lsmdc1060_Yes_man-99145,8932,He pours petrol into his car. He,He pours petrol into his car.,He,gold,taps one side of the window well.,ushers it into the house.,breaks into a smile.,\"aims the washer glass at the little girl, who sinks to his knees.\"\n19259,lsmdc1060_Yes_man-99145,8928,They weave in and out of the other traffic. She,They weave in and out of the other traffic.,She,gold,\"speeds up, overtaking two vehicles.\",strides into someone's apartment.,glances at him from the directory.,\"squints, displaying the flicker of her jaw, then leaves.\"\n19260,lsmdc1060_Yes_man-99145,8934,He hands it back to her. He,He hands it back to her.,He,gold,drops the keys and takes a condom.,gazes at her feigning surprise.,\"steps inside, leaving barefoot.\",watches as the phoenix core jumps into the air.\n19261,lsmdc1060_Yes_man-99145,8929,\"She speeds up, overtaking two vehicles. Someone\",\"She speeds up, overtaking two vehicles.\",Someone,gold,leans forward to address her friend.,spots the truck driver and reads a dumbfounded.,holds up her camera to take a picture.,snorts tiered last land.\n19262,lsmdc1060_Yes_man-99145,8937,He gazes at her as she gets back onto her scooter. She,He gazes at her as she gets back onto her scooter.,She,gold,tries to cry but he straightens her.,drives off with a smile.,pulls down the stairs and spins her.,drops a newspaper and gets a cup of coffee.\n19263,lsmdc1060_Yes_man-99145,8938,She drives off with a smile. His eyes,She drives off with a smile.,His eyes,gold,tremble as he sees someone frantically sprinting towards his grave.,meet her as he meets her worried gaze.,follow her as she goes.,shift to adjust his rearview mirror as someone struggles to start ride.\n19264,lsmdc1060_Yes_man-99145,8941,His eyes dart around nervously. He,His eyes dart around nervously.,He,gold,opens the kitchen door in a hmong office and takes a seat.,hands it to someone.,bends down to take the cue from hers.,puts the petrol cap back on.\n19265,lsmdc1060_Yes_man-99145,8940,He is holding the Polaroid of them on the scooter in his hand. He,He is holding the Polaroid of them on the scooter in his hand.,He,gold,gets on the seats next to the car.,\"scrutinizes the photo, nods and smiles.\",is doing jumps on his skateboard.,is wearing a cardigan and fur collar.\n19266,lsmdc1060_Yes_man-99145,8925,They tear down a road on the scooter. Someone,They tear down a road on the scooter.,Someone,gold,uses another towel to hold his shoes.,walks over and winces while she wipes the dish.,\"sits behind the woman, someone.\",\"scrapes the fish off of the window, whose head partly topped by a tree.\"\n19267,lsmdc1060_Yes_man-99145,8936,\"Wearing the helmet, she marches over to him. She\",\"Wearing the helmet, she marches over to him.\",She,gold,raises a hand in the air then touches it.,reaches a landing and perches on top of a male.,presses herself against him and kisses him hard on the lips.,lifts her chin and aims a gun.\n19268,lsmdc1060_Yes_man-99145,8939,His eyes follow her as she goes. He,His eyes follow her as she goes.,He,gold,stops a few yards away.,\"turns back slowly, smiling to himself.\",grabs her broken arm.,glances at the signature.\n19269,lsmdc1060_Yes_man-99145,8942,Someone stamps the form with an approved stamp. A slice,Someone stamps the form with an approved stamp.,A slice,gold,is signed crude.,pops out of a box.,hangs from someone's chest.,has been cut from the cake.\n19270,lsmdc1060_Yes_man-99145,8927,He wears the helmet and clings onto her. They,He wears the helmet and clings onto her.,They,gold,weave in and out of the other traffic.,\"emerges from the studio, later in prison uniform.\",reclines on his bed and peers at her.,tries to turn back toward the dancefloor.\n19271,anetv_2NMTArm9IkA,14295,He cuts a grapefruit in half on a block. He then,He cuts a grapefruit in half on a block.,He then,gold,rubs the grapefruit onto the inside of a sink.,put the stencil in the covered pot of boiling water.,pours liquid into the basin with the brolly.,places to a peeler on a piece of roof.\n19272,anetv_2NMTArm9IkA,14294,A man is standing in a kitchen. He,A man is standing in a kitchen.,He,gold,cuts a grapefruit in half on a block.,is cooking down on the meat counter.,is washing dishes in a sink.,shows a set of several ingredients.\n19273,anetv_UW1wC80VNd8,7524,\"A woman is in a kitchen, stirring food in a pot. She\",\"A woman is in a kitchen, stirring food in a pot.\",She,gold,\"adds her gathered ingredients one a time as she talks, showing the pasta she is using.\",\"put the pasta into a pot with sugar, then pours added eggs.\",put the chocolate mix in a pot and stuff.,\"mops a small bowl, then pours the pasta in a pot.\"\n19274,lsmdc3045_LAND_OF_THE_LOST-21133,18463,She gestures then pounds her chest. Someone,She gestures then pounds her chest.,Someone,gold,\"looks at someone, then rushes over.\",avoids his gaze then furrows his brow.,pads up to her soup.,stands before a waiter as they set a can on a bar.\n19275,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2757,\"On the arena floor, a blond woman wearing a hooded jacket watches a man in a burgundy tank top dance then imitates his moves. Backstage, someone's personal trainer\",\"On the arena floor, a blond woman wearing a hooded jacket watches a man in a burgundy tank top dance then imitates his moves.\",\"Backstage, someone's personal trainer\",gold,records him as he is about to toss.,directs swimming movements from the floor.,carries a sweet shape.,stretches someone's left leg skyward as she lies on her back.\n19276,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2756,\"A person jogs around a nearly empty arena. On the arena floor, a blond woman wearing a hooded jacket\",A person jogs around a nearly empty arena.,\"On the arena floor, a blond woman wearing a hooded jacket\",gold,watches a man in a burgundy tank top dance then imitates his moves.,enters the bathroom as people stroll in the base of the basement with a boy on its mother.,walks along a dirt road.,shoots a alcoholic drink.\n19277,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2760,She drops the jump rope then walks out of the room. Elsewhere someone,She drops the jump rope then walks out of the room.,Elsewhere someone,gold,strolls down a hallway.,\"scans someone, who hangs his head on both of them.\",sits alone in bed.,strolls across the busy reception.\n19278,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2758,\"Backstage, someone's personal trainer stretches someone's left leg skyward as she lies on her back. The trainer\",\"Backstage, someone's personal trainer stretches someone's left leg skyward as she lies on her back.\",The trainer,gold,winces while rinsing her mouth.,\"delivers a boy down to his front, then stumbles to his feet with his back to the boxer.\",leads the others forward.,pushes on someone's left leg then presses down on her spread knees.\n19279,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2755,A statue of a man on horseback stands amidst several city buildings. A hallway,A statue of a man on horseback stands amidst several city buildings.,A hallway,gold,is shown with a woman with a broom.,is wrought by a man at a rodeo.,is held out by the sea and trees.,leads to a large arena.\n19280,lsmdc3043_KATY_PERRY_PART_OF_ME-20704,2754,\"In her dressing room, someone bites into a slice of pizza. A statue of a man on horseback\",\"In her dressing room, someone bites into a slice of pizza.\",A statue of a man on horseback,gold,\"walks over, holding a bouquet, son, and a grey - haired brown woman.\",stands amidst several city buildings.,arrives in the early light.,walks along the back side of a large room.\n19281,lsmdc1038_The_Great_Gatsby-87487,18104,Someone walks down a spiral staircase. He,Someone walks down a spiral staircase.,He,gold,\"shifts slowly for a moment, his gaze fixed skywards.\",slides down a steps to the second floor of the cross.,shrugs the framed picture of her forearm as she smiles at him.,looks at a wall and a desk where pictures and trophies are displayed.\n19282,lsmdc1038_The_Great_Gatsby-87487,18105,He looks at a wall and a desk where pictures and trophies are displayed. Someone,He looks at a wall and a desk where pictures and trophies are displayed.,Someone,gold,strokes two hooked boxes.,\"appears out of the window, opening.\",\"sits on his bed, holding someone close to him.\",continues to stand of carpet and dry torch books on the floor.\n19283,lsmdc1038_The_Great_Gatsby-87487,18106,\"Someone sits on his bed, holding someone close to him. Someone\",\"Someone sits on his bed, holding someone close to him.\",Someone,gold,sets her bag aside and drags to the settee.,rests her head in someone's lap and follows his gaze to the window and beyond.,throws him down behind a chair.,opens the door and watches in horror.\n19284,anetv_8rHY_Vt2FLA,1118,A car is seen driving around and leads into a man pumping air in the tire. The man,A car is seen driving around and leads into a man pumping air in the tire.,The man,gold,then pans slams along a scrubby highway area with the camera panning around him attacking a instrument away from his fingers.,puts a wire along the tire and continues to spin it around.,is then shown riding another bike drive down the bike road.,falls and the man flips over people also in camera.\n19285,anetv_8rHY_Vt2FLA,1119,The man puts a wire along the tire and continues to spin it around. He,The man puts a wire along the tire and continues to spin it around.,He,gold,pumps more hair into the tire and takes off the jack driving it away.,continues to scoop up the hair and uses it properly.,then begins to demonstrate how to brush on the water.,opens it and briefly focuses in the brave manner.\n19286,anetv_6_NquDQUFm0,57,She grabs a pole and runs down the track jumping over a bar and onto a mat. She,She grabs a pole and runs down the track jumping over a bar and onto a mat.,She,gold,goes to the end and stands frozen for a moment before stopping before separating the spin.,dismounts from the trampoline and walks towards the end.,jumps up and walks over to a group of people keeping her score.,lifts the barbel above her head.\n19287,anetv_6_NquDQUFm0,56,A woman is seen running back and fourth on a small track and leads into her putting a helmet on. She,A woman is seen running back and fourth on a small track and leads into her putting a helmet on.,She,gold,performs high jumps before him and then runs back down the ramp back into the pit spinning herself.,gets it up in the water and walks off.,continues to do two tricks and throws it to the other and continues cutting around.,grabs a pole and runs down the track jumping over a bar and onto a mat.\n19288,lsmdc3092_ZOOKEEPER-45458,18877,She kisses someone then wraps her arms around his neck and kisses him again. Our view,She kisses someone then wraps her arms around his neck and kisses him again.,Our view,gold,rises to meet someone.,circles the embracing couple.,shifts as he watches her approach.,drifts silently through the vast front door.\n19289,anetv_vMYPNyBR3d0,14782,The left man holds his nears near his chest. A man,The left man holds his nears near his chest.,A man,gold,raises his friend to the target.,acts weird and sprays himself.,focuses on a large brown dog's mouth.,is standing behind a bar near a railing outside a glass cup.\n19290,lsmdc1019_Confessions_Of_A_Shopaholic-80901,3811,\"Someone waves the list of excuses at the studio audience. Someone, sitting next to someone,\",Someone waves the list of excuses at the studio audience.,\"Someone, sitting next to someone,\",gold,is talking to someone who is wearing a dressing gown.,gives him a helpless look.,places her cat angel on the floor.,\"stands, sits at her bar cue, speaks to her friend.\"\n19291,anetv_pWotXONgXtc,5561,Two people are seen holding tennis rackets and begin hitting a ball around the court back and fourth to one another. The men,Two people are seen holding tennis rackets and begin hitting a ball around the court back and fourth to one another.,The men,gold,continue to play and kick the ball back and fourth with one another as well as more goals.,continue to push the puck all around the room and ends by grabbing another ball.,continue hitting up and then to each other and kicking the ball across the court.,continue hitting the ball back and fourth to one another while racing around the room to hit the ball.\n19292,anetv_pWotXONgXtc,9949,Two men play wall tennis in a gym room with hardwood floors and a glass wall. Two men,Two men play wall tennis in a gym room with hardwood floors and a glass wall.,Two men,gold,get out of the tub with the ball and the camera.,stand against balls squares and silence.,lift the wall towards the side of the room.,\"are in a gym room alone, together, wearing black gym shorts and t - shirts.\"\n19293,anetv_pWotXONgXtc,9951,The two men begin to play wall tennis hitting the tennis ball against the wall back and forth. The men,The two men begin to play wall tennis hitting the tennis ball against the wall back and forth.,The men,gold,continue hitting the balls into other both while people play ping pong and ends with the game of lacrosse falling.,are gently hitting each other with a stick behind the other.,continue to play tennis with each man at different times dominating the ball.,play side the casino ball over and moves during the game.\n19294,anetv_pWotXONgXtc,9950,\"Two men are in a gym room alone, together, wearing black gym shorts and t - shirts. The two men\",\"Two men are in a gym room alone, together, wearing black gym shorts and t - shirts.\",The two men,gold,are wrestling across the pool continuously.,begin to play wall tennis hitting the tennis ball against the wall back and forth.,are practicing in the same way while performing.,talk together at the center of the gym.\n19295,anetv_8OA30kYcAUQ,2975,The man screws the black object at the end of the rake handle. The man,The man screws the black object at the end of the rake handle.,The man,gold,lights the metal racket and adjusts it again then moves away.,leaves next to the camera.,hits the skateboard up and throws it just to the ground.,moves the trashcan and rakes.\n19296,anetv_8OA30kYcAUQ,2978,The man removes a pair of rakes for the tree and lifts it above his head. The man,The man removes a pair of rakes for the tree and lifts it above his head.,The man,gold,uses the dual rakes to pick up the leaves and put them into the trashcan.,pulls down a log from the tree and cuts the grass with a brush.,throw the shovel over the branches and surfaces down the grass.,is holding the dogs moving the stick and moves it around in front of him.\n19297,anetv_8OA30kYcAUQ,2976,The man moves the trashcan and rakes. The man,The man moves the trashcan and rakes.,The man,gold,stopped down and sat on a couch smoking a hookah.,shows his daughter how to wrap an christmas kite and shows the cleaning.,talks while showing the ingredients to the sink and washes his dishes.,\"stop raking, walks toward a tree, and hangs the rake on the tree.\"\n19298,anetv_8OA30kYcAUQ,2971,A man rakes brown leaves in a lawn. The man,A man rakes brown leaves in a lawn.,The man,gold,continues mowing the lawn.,puts the leaves in a trashcan.,gets up and walks between two cars.,kicks the leaves on the tree.\n19299,anetv_8OA30kYcAUQ,2972,The man puts the leaves in a trashcan. The man,The man puts the leaves in a trashcan.,The man,gold,lays the seated child down and grabs it.,washes his hands in the sink.,stops and moves the trashcan.,dumps something in the pot.\n19300,anetv_8OA30kYcAUQ,2979,The man uses the dual rakes to pick up the leaves and put them into the trashcan. The man,The man uses the dual rakes to pick up the leaves and put them into the trashcan.,The man,gold,vacuums place in the cars.,steers around near the vehicle while the camera follows him from several angles.,'s car is staying in the ground with his hand draped with a spray of oil on his hand.,lifts the dual rakes above his head and then pairs them together.\n19301,anetv_8OA30kYcAUQ,2974,The man pulls out a black object from his pocket and presents it. The man,The man pulls out a black object from his pocket and presents it.,The man,gold,has to focus on the white pawn he took from the overnight paper.,then walks back and places a cup on the box wrapped in a purple paper bag still.,screws the black object at the end of the rake handle.,picks up a latex finger and pierces the liquid.\n19302,anetv_8OA30kYcAUQ,2970,The credits of the video is shown. A man,The credits of the video is shown.,A man,gold,shows eye contact with another man before taking the clamp to his head.,rakes brown leaves in a lawn.,turns away from the dog laying down with a towel on the ground.,is pictured making bowling balls in a tattoo shop.\n19303,anetv_8OA30kYcAUQ,2973,The man stops and moves the trashcan. The man,The man stops and moves the trashcan.,The man,gold,gets out of bed.,pulls out a black object from his pocket and presents it.,spins again in throws.,flips the book off on a hand and looks at the camera.\n19304,anetv_8OA30kYcAUQ,2980,The man lifts the dual rakes above his head and then pairs them together. The man,The man lifts the dual rakes above his head and then pairs them together.,The man,gold,clears up and starts bouncing his shoes together before walking out of the room.,throws the javelin on his hands.,picks the boy up and begins to clean the mans hair.,takes the paired rakes back to the tree where he hangs them on a branch.\n19305,lsmdc3084_TOOTH_FAIRY-39758,11204,Someone grimaces as he sucks on the tube. He,Someone grimaces as he sucks on the tube.,He,gold,presses a finger to his lips then finds her sheath at his side.,pushes him out of the way and engulfs him.,smacks his lips thoughtfully as he lowers the tube.,opens the repaired window to a man in black that places different facades of windows that are boarded up at an inverted storefront.\n19306,lsmdc3084_TOOTH_FAIRY-39758,11206,Someone raises his foot at someone. Someone,Someone raises his foot at someone.,Someone,gold,\"falls to someone's cheek, and someone kisses someone passionately.\",clutches someone's shoulder brace.,bends with his head by marley.,sets his foot down.\n19307,lsmdc3084_TOOTH_FAIRY-39758,11224,\"He stumbles slightly as the stands on the bed's plush surface. With his gaze fixed on the boy's closed eyes, someone\",He stumbles slightly as the stands on the bed's plush surface.,\"With his gaze fixed on the boy's closed eyes, someone\",gold,screws up his face.,strolls through the gap.,creeps toward the headboard.,pulls the bag back.\n19308,lsmdc3084_TOOTH_FAIRY-39758,11238,He scampers behind a miniature skateboard half pipe. Someone,He scampers behind a miniature skateboard half pipe.,Someone,gold,blows on a tech's gate.,\"swings the spoon at him, then looks sternly at his head.\",swings frantically as its headlights roll yards the road.,reaches out from behind the half pipe and retrieves a tiny skateboard.\n19309,lsmdc3084_TOOTH_FAIRY-39758,11243,\"With a grimace, he peeks around the corner into the hallway and sees the tabby closing in. He\",\"With a grimace, he peeks around the corner into the hallway and sees the tabby closing in.\",He,gold,sweeps out one of his cardigan and his horse and runs downstairs.,\"gets up, takes a shower, and runs after a wall door.\",lopes stomping out of the way.,notices a cat door on the other side of the kitchen.\n19310,lsmdc3084_TOOTH_FAIRY-39758,11208,\"He drops a rolled up dollar. In someone's hands, the dollar\",He drops a rolled up dollar.,\"In someone's hands, the dollar\",gold,business and bottles are placed inside the drawer.,is the size of a rolled up poster.,pops up at someone's - - off sunglasses.,\"bills are filled with gold, blue balls.\"\n19311,lsmdc3084_TOOTH_FAIRY-39758,11223,\"Someone glances around, then swings his legs up. He\",\"Someone glances around, then swings his legs up.\",He,gold,swings his cane and leg and strikes it with a laser.,\"leaves, someone pins his hand into his neck pocket and tosses them over his head, killing again.\",stumbles slightly as the stands on the bed's plush surface.,stumbles backward into the crowd.\n19312,lsmdc3084_TOOTH_FAIRY-39758,11233,Someone lands safely on the back of a plush alligator. He,Someone lands safely on the back of a plush alligator.,He,gold,skeptically bites her lip as he listens to some introduction.,swallows the plate filled with tins and carrots.,covers himself with food.,rolls off and shakes out his arms.\n19313,lsmdc3084_TOOTH_FAIRY-39758,11239,\"Someone reaches out from behind the half pipe and retrieves a tiny skateboard. As the tabby stalks closer, someone\",Someone reaches out from behind the half pipe and retrieves a tiny skateboard.,\"As the tabby stalks closer, someone\",gold,looks from the basket.,watches as a camera pans around.,rides the skateboard up the half pipe and soars into the air.,\"wears a jaw, a hopeful smile.\"\n19314,lsmdc3084_TOOTH_FAIRY-39758,11213,\"With the dollar strapped to his back, he cautiously tiptoes across a hardwood floor, making his way past a looming dining table. He\",\"With the dollar strapped to his back, he cautiously tiptoes across a hardwood floor, making his way past a looming dining table.\",He,gold,folds his wig under his father's chin.,sits up and holds a coffee.,peers around a corner.,enters the living room beneath the scene we saw.\n19315,lsmdc3084_TOOTH_FAIRY-39758,11226,\"He crawls underneath the pillow. Using the lit tip of his wand, he\",He crawls underneath the pillow.,\"Using the lit tip of his wand, he\",gold,searches under the pillow.,flies over and strokes the lurch cat.,holds the flame tightly.,flicks the lighter free.\n19316,lsmdc3084_TOOTH_FAIRY-39758,11221,\"Clinging to the blanket, he climbs up. He\",\"Clinging to the blanket, he climbs up.\",He,gold,\"reaches the top and peeks over at the boy, whose chest rises rhythmically.\",props himself up on his round.,secures someone's robe in place.,limps down to the freeway.\n19317,lsmdc3084_TOOTH_FAIRY-39758,11225,\"With his gaze fixed on the boy's closed eyes, someone creeps toward the headboard. He\",\"With his gaze fixed on the boy's closed eyes, someone creeps toward the headboard.\",He,gold,hangs out the window with a stricken look.,pulls his thumb onto one - beefy forearm and presses closer.,points a finger and switches to music.,takes a cautious step toward the boy's pillow.\n19318,lsmdc3084_TOOTH_FAIRY-39758,11219,Someone dashes to a night stand. He,Someone dashes to a night stand.,He,gold,\"walks along the driveway, his back to the window.\",wraps his arms around her neck and kisses her on the head.,grabs hold of a knob on the night stand and hoists himself up to the drawer above.,examines the cushions on the food table.\n19319,lsmdc3084_TOOTH_FAIRY-39758,11240,\"As the tabby stalks closer, someone rides the skateboard up the half pipe and soars into the air. He\",\"As the tabby stalks closer, someone rides the skateboard up the half pipe and soars into the air.\",He,gold,takes a bracelet off her shoulder.,sits down nervously between the headstones.,\"grabs someone's arm, then pulls away and protectively lopes up the flames.\",winks at the cat as he passes over its head.\n19320,lsmdc3084_TOOTH_FAIRY-39758,11235,The flung open door whacks him. Someone,The flung open door whacks him.,Someone,gold,talks in frustration.,peeks out from behind the door.,blows them out of the shattered pipe.,tosses a tire to someone.\n19321,lsmdc3084_TOOTH_FAIRY-39758,11244,He notices a cat door on the other side of the kitchen. He,He notices a cat door on the other side of the kitchen.,He,gold,\"reaches into his pouch, pulls out his cat away canister.\",turns face to face.,sits at her desk with a drawing.,\"looks back at new professionals, who gawks at them.\"\n19322,lsmdc3084_TOOTH_FAIRY-39758,11201,\"At the front door, someone takes out his tube of shrinking paste. Shaking his head skeptically, someone\",\"At the front door, someone takes out his tube of shrinking paste.\",\"Shaking his head skeptically, someone\",gold,offers his own cash.,opens it and takes out the spray bottle.,glances aside for the old kitchen.,twists the cap off the tube.\n19323,lsmdc3084_TOOTH_FAIRY-39758,11212,\"Now, he straightens on the other side of the door and looks around. With the dollar strapped to his back, he\",\"Now, he straightens on the other side of the door and looks around.\",\"With the dollar strapped to his back, he\",gold,dashes into the tommy's full body and carries it to safety a couple of feet tread.,\"cautiously tiptoes across a hardwood floor, making his way past a looming dining table.\",picks up the vibrating briefs.,brings the can to his forehead.\n19324,lsmdc3084_TOOTH_FAIRY-39758,11202,\"Shaking his head skeptically, someone twists the cap off the tube. He\",\"Shaking his head skeptically, someone twists the cap off the tube.\",He,gold,polishes its cigar and turns it into the kitchen.,lifts the tube to his lips.,takes a handful of blood and reaches the sheet.,opens some books and bears them inside.\n19325,lsmdc3084_TOOTH_FAIRY-39758,11209,\"In someone's hands, the dollar is the size of a rolled up poster. Someone\",\"In someone's hands, the dollar is the size of a rolled up poster.\",Someone,gold,hauls him up behind his desk and finds a stack of books and notes as someone puts down a bundle.,glares sourly as someone lies on his stomach and wriggles under the door.,\"grabs the golden tunic, revealing a leopard intermittently, her parents shoes in in a brimmed hat.\",surfs on an occasional glance.\n19326,lsmdc3084_TOOTH_FAIRY-39758,11203,He lifts the tube to his lips. Someone,He lifts the tube to his lips.,Someone,gold,turns facing the traffic as he reaches the rear edge.,\"looks around himself, then listens again.\",grimaces as he sucks on the tube.,lifts the heavy weights above his head.\n19327,lsmdc3084_TOOTH_FAIRY-39758,11222,\"He reaches the top and peeks over at the boy, whose chest rises rhythmically. Someone\",\"He reaches the top and peeks over at the boy, whose chest rises rhythmically.\",Someone,gold,\"glances around, then swings his legs up.\",leans heavily against the woman.,\"clicks his fingers and glances at someone, his mouth open.\",holds it tightly as his shoulders tremble.\n19328,lsmdc3084_TOOTH_FAIRY-39758,11246,The tabby shoots upward then runs off. He,The tabby shoots upward then runs off.,He,gold,\"inspectors someone, who leaps from his chair and grabs his van with another wriggling bundle which hits him in the face.\",\"hesitates, then drops into his jacket, hands through a basket.\",tumbles outside then hurries away.,\"few paces forward, our view rises up through the water and into the tub.\"\n19329,lsmdc3084_TOOTH_FAIRY-39758,11214,\"With a frightened look, he steps out and stares at a sleeping cat. Someone carefully\",\"With a frightened look, he steps out and stares at a sleeping cat.\",Someone carefully,gold,shifts his worried face.,\"chews open its spherical hatch, takes a pipe.\",flops back against the headboard and hits himself in the eyes.,sidesteps past the head of the sleeping tabby.\n19330,lsmdc3084_TOOTH_FAIRY-39758,11247,He tumbles outside then hurries away. She,He tumbles outside then hurries away.,She,gold,sees him standing by her car and unzips her shirt.,\"stands by him, using the rear window.\",swims over at him.,lies on the sofa.\n19331,lsmdc3084_TOOTH_FAIRY-39758,11220,\"He grabs hold of a knob on the night stand and hoists himself up to the drawer above. On the nearby bed, the blanket\",He grabs hold of a knob on the night stand and hoists himself up to the drawer above.,\"On the nearby bed, the blanket\",gold,lies back under him.,hangs over the side.,drifts into the hall.,rises into the sky.\n19332,lsmdc3084_TOOTH_FAIRY-39758,11227,\"Creeping further under the pillow, he finds a tooth. He\",\"Creeping further under the pillow, he finds a tooth.\",He,gold,sticks his head through the door and barges in.,grabs it and starts to wriggle back out.,pulls off his shirt.,flings the crutch down through the legs.\n19333,lsmdc3084_TOOTH_FAIRY-39758,11210,Someone glares sourly as someone lies on his stomach and wriggles under the door. He,Someone glares sourly as someone lies on his stomach and wriggles under the door.,He,gold,runs to the railing and drops him among murdered spools.,is spilling ice cream onto his forehead.,drops the rolled up dollar and slides back to retrieve it.,lies hard on the floor as the doctor head away.\n19334,lsmdc3084_TOOTH_FAIRY-39758,11234,He rolls off and shakes out his arms. The boy,He rolls off and shakes out his arms.,The boy,gold,tucks a blanket back to her.,peers down at him.,runs out of ammunition and runs under the cover.,is chevy sword in a sling - like sling.\n19335,lsmdc3084_TOOTH_FAIRY-39758,11230,\"Someone cautiously crawls out from under the pillow. As he straightens, he\",Someone cautiously crawls out from under the pillow.,\"As he straightens, he\",gold,\"spots the cat and, paws in the air, lets him bang itself on the cat's head.\",\"looks at the boy, then turns to the edge of the bed.\",offers her a half - naked glasses.,tapes his chin compassionately.\n19336,lsmdc3084_TOOTH_FAIRY-39758,11232,\"The boy rolls in his sleep, knocking someone off the bed. Someone\",\"The boy rolls in his sleep, knocking someone off the bed.\",Someone,gold,lands safely on the back of a plush alligator.,\"lies under someone's weary eyes, then blinks and looks down.\",smiles wistfully at the automaton.,wanders off with her ex - husband.\n19337,lsmdc3084_TOOTH_FAIRY-39758,11231,\"As he straightens, he looks at the boy, then turns to the edge of the bed. The boy\",\"As he straightens, he looks at the boy, then turns to the edge of the bed.\",The boy,gold,shakes himself up in a fetal position before leaning back in her seat.,\"rolls in his sleep, knocking someone off the bed.\",stares at the boy.,bounces on his feet.\n19338,lsmdc3084_TOOTH_FAIRY-39758,11245,\"He reaches into his pouch, pulls out his cat away canister. The tabby\",\"He reaches into his pouch, pulls out his cat away canister.\",The tabby,gold,shoots upward then runs off.,looks on someone and clicks it off.,pets the dog the dog ignores him from behind.,goes back and slaps him.\n19339,lsmdc3084_TOOTH_FAIRY-39758,11216,\"Now, someone slides under a bedroom door. Someone\",\"Now, someone slides under a bedroom door.\",Someone,gold,yanks back a wheel.,emerges on the other side of a door.,\"leaps into the basement, reaching the icy sphere, spewing the spiked wallpaper moving towards him.\",walks through a plush ring.\n19340,lsmdc3084_TOOTH_FAIRY-39758,11211,\"He drops the rolled up dollar and slides back to retrieve it. Now, he\",He drops the rolled up dollar and slides back to retrieve it.,\"Now, he\",gold,trips and falls from the rest of the soggy.,straightens on the other side of the door and looks around.,opens a crate and pedals himself with his bike.,check out someone's photos.\n19341,lsmdc3084_TOOTH_FAIRY-39758,11218,A few toys show in silhouette underneath his bed. Someone,A few toys show in silhouette underneath his bed.,Someone,gold,dashes to a night stand.,glances toward the door of a grocery store.,wipes his eyes and looks through him then sees someone looking bewildered.,enters carrying a dart bag.\n19342,lsmdc3084_TOOTH_FAIRY-39758,11217,Someone emerges on the other side of a door. A few toys,Someone emerges on the other side of a door.,A few toys,gold,show in silhouette underneath his bed.,roll down her body.,impulse jumps to hang on another.,stand below the lawn.\n19343,lsmdc3084_TOOTH_FAIRY-39758,11228,\"He grabs it and starts to wriggle back out. With a quick glance over his shoulder, he\",He grabs it and starts to wriggle back out.,\"With a quick glance over his shoulder, he\",gold,leaves the rolled up dollar someone in its place.,finds someone smiling but not quite looking at it through a window.,sees a dead soldier heading for his house.,cuts over a policeman tugs the windshield.\n19344,lsmdc3084_TOOTH_FAIRY-39758,11229,\"With a quick glance over his shoulder, he leaves the rolled up dollar someone in its place. Someone cautiously\",\"With a quick glance over his shoulder, he leaves the rolled up dollar someone in its place.\",Someone cautiously,gold,crawls out from under the pillow.,\"comes out of the compartment, searching a suitcase for an abandoned basket.\",\"approaches someone, then examines another ticket.\",reaches into his pocket and finds the envelope hanging under the lid.\n19345,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1122,\"Someone stands in front of someone and smiles sweetly down at him, her eyebrows raised. Someone\",\"Someone stands in front of someone and smiles sweetly down at him, her eyebrows raised.\",Someone,gold,eyes the teen coolly again.,looks around and sees her help with him.,picks up a champagne bottle.,boldly meets her gaze then blinks.\n19346,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1121,\"As someone writes on the paper, the words appear cut into the skin on the back of his hand. Someone\",\"As someone writes on the paper, the words appear cut into the skin on the back of his hand.\",Someone,gold,cautiously peers over his shoulder and with a wide expression.,bows his head as he chews.,looks at the quill in disbelief.,scratches his eyes and looks at someone.\n19347,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1117,Someone looks out of the window and smiles with secret anticipation. Someone,Someone looks out of the window and smiles with secret anticipation.,Someone,gold,\", his body sprawled and raised in line, looks out of the window, gasping.\",notices her placing a hat and a bag which is draped around someone's waist.,realizes silicone takes his place.,starts to write with the quill in his right hand.\n19348,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1119,\"To his surprise, the words appear on the paper written in red. Someone\",\"To his surprise, the words appear on the paper written in red.\",Someone,gold,smiles again as someone winces with pain.,\"snatches the lighter up from someone, picks it up.\",leans in and kisses someone's forehead.,puts his reading glasses onto the case and drives off.\n19349,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1118,\"Someone starts to write with the quill in his right hand. To his surprise, the words\",Someone starts to write with the quill in his right hand.,\"To his surprise, the words\",gold,appear on the paper written in red.,seem to have no effect.,riddle someone's throat.,come out in finishing greek letters across the screen.\n19350,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1123,Someone boldly meets her gaze then blinks. She,Someone boldly meets her gaze then blinks.,She,gold,\"leans over him, smiling with satisfaction.\",\"squeezes it, and faces someone.\",whacks him one on the cheek.,eyes someone again: eyes open.\n19351,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94867,1120,Someone smiles again as someone winces with pain. An angry red arc,Someone smiles again as someone winces with pain.,An angry red arc,gold,appears on the back of his left hand and then another.,hangs from the mail on the bedside table.,goes across the elder line.,returns out to someone's room.\n19352,anetv_iFTYM1Ez5ZM,17274,The competitor gradually begins by running slowly then picking up speed to a sprint and landing one foot on the white marker line and two more hops on each foot and then jumps over the sand course. The competitor,The competitor gradually begins by running slowly then picking up speed to a sprint and landing one foot on the white marker line and two more hops on each foot and then jumps over the sand course.,The competitor,gold,rakes before and jumps into a hill.,goes into the same positions then goes away.,falls from inside a blue and falls approaching to red sand.,skips and runs off of the track and goes to the spectator stands and celebrates his jump.\n19353,anetv_iFTYM1Ez5ZM,17275,The competitor skips and runs off of the track and goes to the spectator stands and celebrates his jump. A close up of the competitors foot position landing on the white marker line is shown on a close up and the jump,The competitor skips and runs off of the track and goes to the spectator stands and celebrates his jump.,A close up of the competitors foot position landing on the white marker line is shown on a close up and the jump,gold,is then seen again slow over and measuring other people waving to the kids.,and silver flags.,in the takes cheers.,is shown in slow motion and at regular speed multiple times.\n19354,anetv_8JgckTuL1WA,5086,People are playing a game of badminton on a court. People,People are playing a game of badminton on a court.,People,gold,are standing at the edge of the beach watching them.,are playing tennis on a court.,have been carve the court over the stands as a large audience watches.,are sitting behind them watching the game.\n19355,anetv_8JgckTuL1WA,5087,People are sitting behind them watching the game. A girl in a pink shirt,People are sitting behind them watching the game.,A girl in a pink shirt,gold,is holding the ice cream.,is standing on a shuffleboard court.,picks up the ball.,has the ball still strapped to her back.\n19356,anetv_xE5KichXWrA,437,A man does spins around in a circle and completes the throw celebrating his distance. He,A man does spins around in a circle and completes the throw celebrating his distance.,He,gold,continue throwing a ball.,prepares for another throw by getting himself into position.,falls and falls on the sand celebrating.,allows an athlete to run before the ball comes to the quote and throws as the man walks and throws the ball again.\n19357,anetv_xE5KichXWrA,440,He completes the next throw and prepares for the next. He,He completes the next throw and prepares for the next.,He,gold,falls as he stands up and stands to see more still.,hits the ball some more.,\"picks up a roll of balls, throws the ball and reaches for it to hit it.\",completes the last throw and again celebrates a good distance.\n19358,anetv_xE5KichXWrA,439,He completes the throw and prepares for another. He,He completes the throw and prepares for another.,He,gold,jumps into the water and runs into the pit.,completes the next throw and prepares for the next.,\"flips over to the air, landing into the pool.\",balances the goal and is also pushed by the puck and ends.\n19359,anetv_xE5KichXWrA,436,An intro shows on the screen introducing a winter throwing video. A man,An intro shows on the screen introducing a winter throwing video.,A man,gold,does spins around in a circle and completes the throw celebrating his distance.,is seen kneeling back and shaving his legs before is shown again in slow motion on the screen.,shows next in a room and talking.,runs like a punching truck.\n19360,anetv_xE5KichXWrA,438,He prepares for another throw by getting himself into position. He,He prepares for another throw by getting himself into position.,He,gold,finishes the routine and continues running.,throws down with one hand landing on the back of his shirt.,completes the throw and prepares for another.,plays with a red cord.\n19361,anetv_G7kqlq8WhRo,643,A different group of men plays tug of war among a large crowd cheering for them. Some of the men,A different group of men plays tug of war among a large crowd cheering for them.,Some of the men,gold,begin wrestling together and engage in a game of tug of war.,fall down as they win the game.,stretches his legs to celebrate he then takes off his shirt and puts his shirt back to all his jump and flips at the end,lie on one rope and they also continue fighting.\n19362,anetv_G7kqlq8WhRo,644,Some of the men fall down as they win the game. Another group,Some of the men fall down as they win the game.,Another group,gold,of men hit a game of soccer to a target.,enters the bin and takes to a convention.,is seen up close with a crowd of people and a young girl screaming.,dances around in shots of the people from the game.\n19363,anetv_G7kqlq8WhRo,631,A forth group of men is shown also playing tug of war in a crowd. A fifth group of men,A forth group of men is shown also playing tug of war in a crowd.,A fifth group of men,gold,begin balancing their sticks on one stick as two women stand by the end of the mat.,listen to another with people and the security of the other.,begin the same games and jump gives amusement.,is shown playing tug of war in a crowd of people and dogs.\n19364,anetv_G7kqlq8WhRo,634,A seventh group of men is playing tug of war in a crowd. A different group of men,A seventh group of men is playing tug of war in a crowd.,A different group of men,gold,\"are seen passing on stones, then engaged in a game.\",is playing tug if war and appear to be winning while being cheered on by the crowd.,wearing suits gather in a gymnasium and are controlling a ball and hundreds of fighters cheering around them.,are skateboarding in the field.\n19365,anetv_G7kqlq8WhRo,639,A different group of men is seen playing while people sit and stand around them. A different group of men,A different group of men is seen playing while people sit and stand around them.,A different group of men,gold,are seen standing around a large casino down other people working with them as well as fencing.,is shown up close while people sit and stand in the background.,are seen riding around and speaking to one another and one transitions to them walking away from people.,\"are shown in several ducks, cheering with one another.\"\n19366,anetv_G7kqlq8WhRo,628,A large group of people is seen standing around several men holding a rope preparing to play tug of war. Another group of men,A large group of people is seen standing around several men holding a rope preparing to play tug of war.,Another group of men,gold,keep running from each other and gesture to others impassively.,are seen rolling around a grassy area while others are led to the sides and a man standing grips him.,is seen with pulling the rope while a crowd standing around cheers them on.,scurries along the ropes and another in the end while the other watches on.\n19367,anetv_G7kqlq8WhRo,641,A group of men is shown up close playing tug of war with people around them. Another group of men,A group of men is shown up close playing tug of war with people around them.,Another group of men,gold,is seen playing while people stand on the sidewalk watching.,protrudes shoving a flag with one of them gesturing to the other.,tries to stand up and lower the rope.,walk quickly lathering their bodies while jumping up and jumping up to playing a rope.\n19368,anetv_G7kqlq8WhRo,638,Another group of men plays while people sit and stand in the background. A different group of men,Another group of men plays while people sit and stand in the background.,A different group of men,gold,are shown shooting some arrows.,demonstrates more clips of lines fencing against the wall.,poses in european green uniforms.,is seen playing while people sit and stand around them.\n19369,anetv_G7kqlq8WhRo,642,A group of men in all black plays tug of war while people stand around them. A different group of men,A group of men in all black plays tug of war while people stand around them.,A different group of men,gold,plays tug of war among a large crowd cheering for them.,interact with one another and start fighting with their men on stage.,are running in a field desert trying to win with two other people that tied to one of the bulls in shock that say going,swing back and fourth to one another.\n19370,anetv_G7kqlq8WhRo,632,A fifth group of men is shown playing tug of war in a crowd of people and dogs. A different group of men,A fifth group of men is shown playing tug of war in a crowd of people and dogs.,A different group of men,gold,taunt other spiked swords in slow motion.,are seen playing a game of croquet.,plays tug of war with a crowd watching.,in black uniforms get into position and push the hair to the mouth.\n19371,anetv_G7kqlq8WhRo,633,A different group of men plays tug of war with a crowd watching. A seventh group of men,A different group of men plays tug of war with a crowd watching.,A seventh group of men,gold,tie together the marching band while marching after the marching band.,use balls to hit.,are out in the court doing flips.,is playing tug of war in a crowd.\n19372,anetv_G7kqlq8WhRo,636,\"Yet, another group of men is playing tug of war while a crowd watches on. Another group of men\",\"Yet, another group of men is playing tug of war while a crowd watches on.\",Another group of men,gold,in black line up on the side of the court and the unison ends in the same competition.,is shown playing tug if war up close while a crowd watches.,are wounded over the ground on an archery field in the back.,in a casket are longer chained to one another.\n19373,anetv_G7kqlq8WhRo,630,A third group of men are seen playing tug of war with a crowd around them. A forth group of men,A third group of men are seen playing tug of war with a crowd around them.,A forth group of men,gold,are watching on the side as another group of people wearing socks are playing mixing drums with an audience.,move to look on and position as well as around the matadors as other members watch.,is shown also playing tug of war in a crowd.,is shown with a sumo wrestling and shooting a referee back and fourth.\n19374,anetv_G7kqlq8WhRo,640,A different group of men is shown up close while people sit and stand in the background. A group of men,A different group of men is shown up close while people sit and stand in the background.,A group of men,gold,is shown up close playing tug of war with people around them.,begin practicing gymnastics together several times in various locations.,are playing together and the girl moves forward to take bar.,are in a gym which are wearing a red shirt.\n19375,anetv_G7kqlq8WhRo,635,\"A different group of men is playing tug if war and appear to be winning while being cheered on by the crowd. Yet, another group of men\",A different group of men is playing tug if war and appear to be winning while being cheered on by the crowd.,\"Yet, another group of men\",gold,is playing tug of war while a crowd watches on.,win a game of matches and sports of a member who is training in the field & black team.,are backstage playing cricket.,successfully attempt to play throwing the batons at joy and show.\n19376,anetv_G7kqlq8WhRo,637,Another group of men is shown playing tug if war up close while a crowd watches. Another group of men,Another group of men is shown playing tug if war up close while a crowd watches.,Another group of men,gold,paddle the camel up and throw a ball at a time and end by riding away.,plays while people sit and stand in the background.,straps an opposing detonator on both bumper.,try to pull the ball but begin playing loudly in the end while another man cheers.\n19377,anetv_zyPisOj2Tdo,10078,A woman peforms before a court on a basketball gym. She,A woman peforms before a court on a basketball gym.,She,gold,\"is a majorette, flipping and throwing her baton into the air.\",\"walks around, while the young girl completely gets knocked in the shoes and goes forward.\",gather in a gym to shoot a red ball with a mallet.,and players run to the shuffleboard court.\n19378,anetv_zyPisOj2Tdo,10079,\"She is a majorette, flipping and throwing her baton into the air. The crowd\",\"She is a majorette, flipping and throwing her baton into the air.\",The crowd,gold,is swinging on her hips then cheers in several different blows.,looks around with concern.,\"watches as she flips, throws, and turns.\",watches on as she walks inside of the kitchen.\n19379,anetv_HMIv7qpDmH0,14762,A woman is seen standing in front of a camera holding onto a rubix cube. She,A woman is seen standing in front of a camera holding onto a rubix cube.,She,gold,places the lens into the case and puts the contact lens into her eye before turning off the camera.,adjusts the mixture while putting.,begins attempting to solve the puzzle by moving her hands around.,girl turns her back on the side and continues speaking while others push her around.\n19380,anetv_HMIv7qpDmH0,14763,She begins attempting to solve the puzzle by moving her hands around. She,She begins attempting to solve the puzzle by moving her hands around.,She,gold,finishes the rubix cube and presents it to the camera.,finishes the cube while still attempting to solve the puzzle.,pulls the camera back and fourth to other moves as the presenting arrive.,finishes the cube to the camera and continues to solve the puzzle.\n19381,anetv_HMIv7qpDmH0,17182,She is holding a rubik's cube in her hands. She,She is holding a rubik's cube in her hands.,She,gold,drops the cube and takes the papers out of her hand.,tries to solve the puzzle as quickly as possible.,places her hands on a dryer and helps the lady to him.,picks up slits of numbers and solves a cube in front of her.\n19382,anetv_mHbsKzezfFQ,3219,A person is cutting a man's hair. They,A person is cutting a man's hair.,They,gold,pull back a rope while the boy holds the young bow by his injured hand.,switch to an electric razor on the back.,guy gets a blow manicure up the visitor's hair with a blow dryer.,laughs while juggling in a large ball making a catch.\n19383,anetv_mHbsKzezfFQ,3223,We see the screen change again and the person lines the back of the man's head. The barber,We see the screen change again and the person lines the back of the man's head.,The barber,gold,starts to iron his shirt.,touches the shaver edge.,curls against the woman's arm as he dances.,kneels down and lifts the doors of the building.\n19384,anetv_mHbsKzezfFQ,3220,They switch to an electric razor on the back. The person,They switch to an electric razor on the back.,The person,gold,holds out the needle for another man.,uses the shaver on their hand.,sees takes something outside.,shows how to hold the cats paw.\n19385,anetv_mHbsKzezfFQ,3218,We see a black screen and the credits. A person,We see a black screen and the credits.,A person,gold,holds a selfie rope and brush the beach.,hands a tool to each other.,is cutting a man's hair.,is drinking beer on an ice cream bar.\n19386,anetv_mHbsKzezfFQ,3221,The person uses the shaver on their hand. The screen,The person uses the shaver on their hand.,The screen,gold,shows nothing adding size clips this you object.,shows the white and a meaningful shape of a year.,is covered with scissors.,changes to black for a moment.\n19387,lsmdc3015_CHARLIE_ST_CLOUD-1097,13769,The fair skinned brunette woman reaches out offering the necklace. Someone,The fair skinned brunette woman reaches out offering the necklace.,Someone,gold,and the criminals form in the booth.,hands the bottle to his wife.,reaches out and accepts.,relaxes in her helmet's amber eyes.\n19388,anetv_B8imoIn6NUE,2180,An indoor skate ramp room is shown full of light blue balloons. Skaters,An indoor skate ramp room is shown full of light blue balloons.,Skaters,gold,appear from the trees and then clear outside and hold a sign still.,man is shown in a roof holding and talking to a photo of the man gives instructions for sixty lessons.,\"begin skating up and down the ramps, through the balloons.\",roll down a snowy median showing it a second time of sunlight as also into a snow raft.\n19389,anetv_B8imoIn6NUE,2179,A Devin Super Tramp logo animates on screen. An indoor skate ramp room,A Devin Super Tramp logo animates on screen.,An indoor skate ramp room,gold,shows a massive jerk of bodyguard in the background.,stands around the social media affect.,is shown full of light blue balloons.,commences through a bay window.\n19390,anetv_B8imoIn6NUE,5031,An indoor skateboarding facility is shown with the pits filled with sky blue balloons. Skateboarders,An indoor skateboarding facility is shown with the pits filled with sky blue balloons.,Skateboarders,gold,walk towards the open line and motorcycles.,appears over city traffic in gray and a huge object to check around all the stubs.,roll through the balloons and up the walls.,drive up a cliff.\n19391,anetv_2xmu01HHhKY,18706,The lady and the boy in orange struggle over an instrument. The lady,The lady and the boy in orange struggle over an instrument.,The lady,gold,runs and hugs him.,puts a chair on in front of her and talks to the crowd.,spins while holding a pole.,\"pretends to bite the boy, then laughs.\"\n19392,anetv_2xmu01HHhKY,18704,We see a person in orange enter. The lady,We see a person in orange enter.,The lady,gold,remains in and performs still dancing during the dance.,stops drumming and shows her hands.,is on a brown horse.,makes a set of fire.\n19393,anetv_2xmu01HHhKY,18707,\"The lady pretends to bite the boy, then laughs. We\",\"The lady pretends to bite the boy, then laughs.\",We,gold,see the stove island.,see a man enter the room.,see her making a knife.,continues to play while tam tams over speaks and returns to game just stopping and talking.\n19394,anetv_2xmu01HHhKY,18703,We pan right and see a man on drums. We,We pan right and see a man on drums.,We,gold,see the name focuses on a pan pan on the side and presents two plates on a view.,see the man play shuffleboard.,see the man closing in with detailed set of peace wires before he can see his surroundings.,see a person in orange enter.\n19395,anetv_2xmu01HHhKY,18702,We see a lady slowly playing a drum. We,We see a lady slowly playing a drum.,We,gold,see the shuffleboard being played.,pan right and see a man on drums.,see the ending title screen.,see a kitchen in the hallway then the woman practices a game of jousting in a style gym.\n19396,anetv_tJbScqVWPsU,595,\"The flip and turn in the air, going up and down the ramp. The winners\",\"The flip and turn in the air, going up and down the ramp.\",The winners,gold,pose for photos with cakes when they are done.,dismounts over the top of the diving board.,perform a very long jump in stunts.,stands at the end of the long bar.\n19397,anetv_tJbScqVWPsU,594,\"They are cheering as several professional skateboarders perform stunts in a ramp pit. The flip and turn in the air,\",They are cheering as several professional skateboarders perform stunts in a ramp pit.,\"The flip and turn in the air,\",gold,quickly passing the rope to give out a view.,ending in slow and blurry people.,end with running final clips.,going up and down the ramp.\n19398,anetv_tJbScqVWPsU,593,An outdoor scene by the beach shows a large crowd near a resort. They,An outdoor scene by the beach shows a large crowd near a resort.,They,gold,are dribbling against the blue ocean.,make a bag run through the ice.,follow at the shore towards the third section and sliding out her view.,are cheering as several professional skateboarders perform stunts in a ramp pit.\n19399,lsmdc3079_THINK_LIKE_A_MAN-36816,12577,\"Later, someone and someone lie on the floor beside her bed, surrounded by rose petals. He\",\"Later, someone and someone lie on the floor beside her bed, surrounded by rose petals.\",He,gold,\"kisses her, then runs his tongue along her knee.\",\"grabs someone from a kiss, then lies back as she sobs.\",stops then sees men who look blank.,cradles someone who attempts to hit the pinata of his head moving so hard.\n19400,lsmdc3079_THINK_LIKE_A_MAN-36816,12578,\"He kisses her, then runs his tongue along her knee. Reaching for a dish with raspberries and chocolate cake, he\",\"He kisses her, then runs his tongue along her knee.\",\"Reaching for a dish with raspberries and chocolate cake, he\",gold,extends the middle finger to it.,peers over her shoulder.,grabs some of the dessert and feeds it to her.,pauses at her side.\n19401,lsmdc3079_THINK_LIKE_A_MAN-36816,12574,Someone pulls out of the driveway. Someone,Someone pulls out of the driveway.,Someone,gold,storms into someone's room when she sees a little girl standing in front of him.,comes over to someone.,grins off the kid.,\"hits his car's remote, then leaves someone's side.\"\n19402,lsmdc3079_THINK_LIKE_A_MAN-36816,12575,Someone stands at a street. Someone,Someone stands at a street.,Someone,gold,shuts the safe in his arms and takes off his jacket.,helps duke ride a bike.,holds a young branch.,stops looking at one now.\n19403,lsmdc3079_THINK_LIKE_A_MAN-36816,12580,\"Now someone enters his living room, framed by one of someone's bare, bent legs. He\",\"Now someone enters his living room, framed by one of someone's bare, bent legs.\",He,gold,pauses and shakes his head.,sits on top of him.,jogs to someone in a silk gown.,\"climbs out of the house, and runs back inside.\"\n19404,anetv_X9CpU4ucYeg,7045,Woman is squeezing the lemon into a bowl and on the water. woman,Woman is squeezing the lemon into a bowl and on the water.,woman,gold,is ni front of the stove and pour sugar into water in a pan till boil.,is pouring sugar in the sun.,is presenting commercial news together and jumping to make the sandwich.,is giving a demonstration of ocean soap certain woman and a red omelets with a foam block.\n19405,anetv_X9CpU4ucYeg,7044,\"Woman is standing in a kitchen talking to the camera and showing the lemons, jar and the bowl on the counter. woman\",\"Woman is standing in a kitchen talking to the camera and showing the lemons, jar and the bowl on the counter.\",woman,gold,is squeezing the lemon into a bowl and on the water.,is in the cafe holding a baby and added butter to a bowl.,is talking to the camera in an oven.,stirs a lemon bag and puts the dough into the skillet.\n19406,anetv_JB3h1trZ1cE,7136,People are water skiing in the water. A man,People are water skiing in the water.,A man,gold,is riding a boat under the water.,falls down and is dragged by the boat through the water.,gets standing on a diving board.,is standing next to them watching.\n19407,anetv_JB3h1trZ1cE,7138,A man turns around while water skiing and holds the rope with his foot. He,A man turns around while water skiing and holds the rope with his foot.,He,gold,crashes and falls into the water.,is in the boat paddling as words come onto the waves.,walks on front and holds the pole and pointing it in place.,continues with the skateboard and using its equipment back.\n19408,anetv_JB3h1trZ1cE,7137,A man falls down and is dragged by the boat through the water. A man,A man falls down and is dragged by the boat through the water.,A man,gold,turns around while water skiing and holds the rope with his foot.,runs down a slow slope with the surfboard.,talks in the rafts moments after.,is shown washing his rafts while sitting on a cordoned roof.\n19409,anetv_48xSiJdaH2g,7265,A woman uses a sprayer on the moist sheets and sprays it on. Then a man and woman,A woman uses a sprayer on the moist sheets and sprays it on.,Then a man and woman,gold,pour water and rinse the dish off of the rod for them and tie it in the toilet.,begin peeling off the old wallpaper off of the wall.,use a rake to scrape the snow off of the car.,lay on the ground drinking.\n19410,anetv_48xSiJdaH2g,7262,She is using a a scouring tool to scratch off the wallpaper from the wall. Then she,She is using a a scouring tool to scratch off the wallpaper from the wall.,Then she,gold,uses a soap solution and dips the sheet in the solution.,throws the purple scraper to form a step plant on the floor.,puts wallpaper out of a fit to wipe the floor.,\"is lifted, then cut the dryer to clean the furniture.\"\n19411,anetv_48xSiJdaH2g,7264,There's a man hanging the wet sheets on the wall. A woman,There's a man hanging the wet sheets on the wall.,A woman,gold,\"is seen walking around two monkey bars with the bed talking in a middle, and the girl demonstrates how to play drums.\",\"is talking to the camera, he begins watching tv on the tv screen.\",uses a sprayer on the moist sheets and sprays it on.,gets a good laundry rack the dog.\n19412,anetv_48xSiJdaH2g,7263,Then she uses a soap solution and dips the sheet in the solution. There,Then she uses a soap solution and dips the sheet in the solution.,There,gold,sprays the vacuum cleaner using a spray bottle.,\"she uses a scissor to complete the process, then scrubs them with one single brush and applies dry like next to the strawberries.\",found the rod and the counter fills the product of the omelette and dries it off with a cloth.,'s a man hanging the wet sheets on the wall.\n19413,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26149,980,She takes down a guard. Someone,She takes down a guard.,Someone,gold,appears to run past the hall building along at cliff.,\"leaps on to the roulette table, fights off two casino workers and grabs the pearl.\",opens the door and throws it into a friend.,stares at him gravely.\n19414,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26149,979,Someone grabs a pool queue and swings it like a staff. She,Someone grabs a pool queue and swings it like a staff.,She,gold,takes down a guard.,deals him some money at the bugle stand.,belts it and irons his tie.,hurls some of the tape onto the wall.\n19415,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26149,977,\"Someone kicks a guard with both feet then fights off two more with his crutches. As they run into the gaming area, someone shoulder\",Someone kicks a guard with both feet then fights off two more with his crutches.,\"As they run into the gaming area, someone shoulder\",gold,crashes against a wall.,looks over his shoulder.,checks a casino worker.,punches him down on the floor.\n19416,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26149,976,A group of guards surround him. Someone,A group of guards surround him.,Someone,gold,\"stretches at her, then lowers his rifle and knocks him out.\",crawls slowly along the entrance towards the nervous someone being carried up by an intense screech.,kicks a guard with both feet then fights off two more with his crutches.,points a fire weapon at mjolnir.\n19417,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26149,978,\"As they run into the gaming area, someone shoulder checks a casino worker. Someone\",\"As they run into the gaming area, someone shoulder checks a casino worker.\",Someone,gold,grabs a pool queue and swings it like a staff.,shoots him with a start.,leads the girl to school.,runs down a slope toward bank.\n19418,anetv_ZgIKmwnCqr4,1861,\"A little baby is outside holding a stick attempting to hit the pinata with it. Behind her, a lady\",A little baby is outside holding a stick attempting to hit the pinata with it.,\"Behind her, a lady\",gold,helps the baby and continues walking.,is holding up the baby and assisting her as she hits the pinata.,is doing flips with the hammer.,throws a ball to the other girl that holds the pinata.\n19419,anetv_ZgIKmwnCqr4,1862,\"Behind her, a lady is holding up the baby and assisting her as she hits the pinata. As the pinata bounces up and down, the young baby\",\"Behind her, a lady is holding up the baby and assisting her as she hits the pinata.\",\"As the pinata bounces up and down, the young baby\",gold,walks off and puts her hand up in her own grasp.,swings to right on his surfboard.,returns to the spot where the baby pets the pinata.,barely hits it and then ends up turning towards the camera.\n19420,lsmdc0004_Charade-47515,1816,Someone holds the receiver in his metal hand. Someone's back,Someone holds the receiver in his metal hand.,Someone's back,gold,\"is about to break when he stops, watching it from again.\",is turned to someone so he can't see her face.,thuds through the air.,shows all the dust.\n19421,anetv_tnB7LNIcXC0,10442,A close up of a roof is shown following by a man spraying down a roof with paint. Several shots,A close up of a roof is shown following by a man spraying down a roof with paint.,Several shots,gold,of the video is then shown as well as spray spraying around the roof and a hat flying across the screen.,are shown of the car while the camera panning around.,are shown of the man spraying paint while the camera pans around him from various angles.,are shown of people pointing the products all over one another off a fence as well as speaking to the camera.\n19422,anetv_tnB7LNIcXC0,13852,\"The guy makes sure he is extremely careful while spray painting and only does a partial amount of it and leaves about two feet from the edge left to paint. Once complete, he\",The guy makes sure he is extremely careful while spray painting and only does a partial amount of it and leaves about two feet from the edge left to paint.,\"Once complete, he\",gold,gets a lamppost from the sideboard.,\"measures the second plank, and the gold.\",speaks to the camera.,turns to the side and finishes the top before finally getting down and looking at what he had done.\n19423,anetv_ulV37d5wFaw,6834,\"She puts the brush down, sections her hair, then begins brushing the top section. Next we see it in a clip, and then the clips\",\"She puts the brush down, sections her hair, then begins brushing the top section.\",\"Next we see it in a clip, and then the clips\",gold,are replaced with curlers.,do her hair and lather.,pulled over her hair.,finishes and then her talking.\n19424,anetv_ulV37d5wFaw,15483,A young woman talks to the camera while working on her hair and occasionally talking. The young woman,A young woman talks to the camera while working on her hair and occasionally talking.,The young woman,gold,is then shown in a couple of clips in front of a dog in a room in the sink.,takes off the clothes while still looking down at the camera and lets the kids pass.,cuts the wallpaper in one hand to show how it works.,holds some sort of object up to the camera.\n19425,anetv_ulV37d5wFaw,15484,The young woman holds some sort of object up to the camera. The scene,The young woman holds some sort of object up to the camera.,The scene,gold,cuts to the woman with part of her hair clipped up at the top of her hair.,changes to a woman in a tank top as she struggles to wrestle down the boarding frame while her partner is trapped inside.,moves to the next set.,goes back to the man talking to the camera.\n19426,lsmdc1023_Horrible_Bosses-82087,15058,Someone sinks to the floor and clutches his leg. Someone,Someone sinks to the floor and clutches his leg.,Someone,gold,tosses the gun down.,looks blearily up as someone looks up after him.,picks up locks his sidecar with his engine sticker.,touches someone's hand and points.\n19427,lsmdc3011_BLIND_DATING-713,16326,\"Someone folds up his cane in a hallway. Entering a small lecture hall, he carefully\",Someone folds up his cane in a hallway.,\"Entering a small lecture hall, he carefully\",gold,throws the money briefs.,feels his way down carpeted steps to the front of the room.,scans a neighborhood table.,opens a hidden door to a corridor.\n19428,lsmdc3011_BLIND_DATING-713,16327,\"Entering a small lecture hall, he carefully feels his way down carpeted steps to the front of the room. He\",\"Entering a small lecture hall, he carefully feels his way down carpeted steps to the front of the room.\",He,gold,crosses the staircase and picks out a framed photo of a waiter with his finger.,slips out of view and shuffles through the book to someone with his crossed fingers.,\"trips over a student's knees, knocking a laptop over as he falls.\",\"climbs a staircase, enters it and gets a couple of wine bottles.\"\n19429,anetv_o0gdMKlKLcU,6083,A person behind the man even a wall with a long plank. A crew of men,A person behind the man even a wall with a long plank.,A crew of men,gold,hits the roof that's attached to the roof.,are seen arm wrestling in an enclosed press square playing the game.,\"wears the frightened, multi - colored devices.\",prepares cement using a machine.\n19430,anetv_o0gdMKlKLcU,4992,The man sprays a large hose against the wall. Afterwards the camera,The man sprays a large hose against the wall.,Afterwards the camera,gold,works in the car.,pans down a narrow curving design.,shows from left to right.,pans around to a small group of men making plaster.\n19431,anetv_o0gdMKlKLcU,4991,A person is seen bending down before a wall. The man,A person is seen bending down before a wall.,The man,gold,lays down two legs and holds his arms up.,begins spraying down more.,sprays a large hose against the wall.,lifts up weights and dives back onto the mat.\n19432,anetv_F4ERtlGMFt4,6167,A person is riding a bull in an arena. People,A person is riding a bull in an arena.,People,gold,are standing in an arena around a bull.,starts a horse with a red bat and jumps with a bull with the hand of the bull.,are over the bull.,begin to fight on the bulls while holding the next bull.\n19433,anetv_F4ERtlGMFt4,6168,People are standing in an arena around a bull. A bull,People are standing in an arena around a bull.,A bull,gold,catches a charging bull.,breaks up and two other men watch him.,charges them and knocks them to the ground.,is chasing the bull in a rodeo ring.\n19434,anetv_-cJova7MiO8,7690,Two small sumos wrestle while people watch around the circle. A sumo wearing white pants,Two small sumos wrestle while people watch around the circle.,A sumo wearing white pants,gold,appears next to a string hoop in his arms.,flips the other sumo over his back and wins the competition.,runs over them playing shuffle bread.,chases a cow with a picnic with a cloth.\n19435,anetv_-cJova7MiO8,13671,Two men are wrestling in a ring. People,Two men are wrestling in a ring.,People,gold,are wrestling in swinging stairs.,are fighting in the ring and playing with the bull.,are standing around them watching.,are wrestling in a ring.\n19436,anetv_-cJova7MiO8,7691,\"A sumo wearing white pants flips the other sumo over his back and wins the competition. Then, a boy\",A sumo wearing white pants flips the other sumo over his back and wins the competition.,\"Then, a boy\",gold,throw ball to the other boy.,\"rise the hand of the sumo winner, then shake hands with his opponent.\",holding a team on the right wins and celebrates with his team mates.,takes and break a hula hoop.\n19437,anetv_-cJova7MiO8,13672,People are standing around them watching. One man,People are standing around them watching.,One man,gold,sinks down and looks at the soldier with ice cream.,\"is squatting, sitting in a chair and watching it.\",wins and raises his hand.,swings a ball around towards the end.\n19438,lsmdc0028_The_Crying_Game-63588,2613,Someone holds her cheek close to his. She,Someone holds her cheek close to his.,She,gold,looks off with a wounded jaw.,draws back and looks at him.,\"opens it, exposing her breasts.\",sits in his arms while standing in a recliner.\n19439,lsmdc0028_The_Crying_Game-63588,2612,Someone steps two feet back. Someone,Someone steps two feet back.,Someone,gold,shields his icy eyes from the marker.,continues to play a song for someone.,takes someone's arm.,flips off into darkness.\n19440,anetv_RPLbUeV3-o0,17254,He jumps the third ramp. He,He jumps the third ramp.,He,gold,gets off it and signs it.,hurdles the wall and lands safely on some water.,jumps the fourth ramp.,\"closes the locks, runs with someone, spots him.\"\n19441,anetv_RPLbUeV3-o0,17253,He jumps the second ramp. He,He jumps the second ramp.,He,gold,flexes the left hand and swings the tire belt up.,runs past a snowy gate and jumps onto a barrier.,climbs onto the landing.,jumps the third ramp.\n19442,anetv_RPLbUeV3-o0,17251,He then begins to ski down the slope. He,He then begins to ski down the slope.,He,gold,miss another finish and continues working.,jumps the first ramp.,jumps over his face with another rope.,begins moving part of the hill.\n19443,anetv_RPLbUeV3-o0,461,The snow boarder goes up a hill and becomes airborne. the snow boarder,The snow boarder goes up a hill and becomes airborne.,the snow boarder,gold,stops for a moment and begins to stretch to the lip of the road.,falls flat on his stomach.,does concrete really down the trail.,has another skier riding in on his skateboard.\n19444,anetv_RPLbUeV3-o0,17252,He jumps the first ramp. He,He jumps the first ramp.,He,gold,jumps the second ramp.,falls off and falls end in the sand.,finishes up in a 90 - showroom.,runs water from the boat.\n19445,anetv_RPLbUeV3-o0,17250,The skier is wiping his goggles. He then,The skier is wiping his goggles.,He then,gold,bends down and is pulled falling very fast.,falls off to the river.,shovel over his kayak.,begins to ski down the slope.\n19446,anetv_RPLbUeV3-o0,460,A snowboarder glides down a slope. the snow boarder,A snowboarder glides down a slope.,the snow boarder,gold,goes up a hill and becomes airborne.,\"ride down onto the hill below, climbing on with the paddling of the skier.\",turns around all face riding.,ski down a slope in a snow snowboard.\n19447,anetv_UGd9cVzHQOU,11483,A man is seen using a machine across a long stretch of leaves while moving up and down the lawn. He,A man is seen using a machine across a long stretch of leaves while moving up and down the lawn.,He,gold,another man gives him a spin and the person continues walking along the grass near the obstacles.,jumps off the boat while looking off into the distance.,continues pushing the leaves around the area and moving up and down the lawn.,moves around and carries very moving equipment all around.\n19448,anetv_5FwNVOIGdVs,5587,A man gets on a red machine. He then,A man gets on a red machine.,He then,gold,begins snowboarding with another woman.,backs up and begins to blow leaves with it.,demonstrates how to use it and how the tattoo works.,goes the machine on the stilts.\n19449,anetv_5FwNVOIGdVs,5589,The leaves blow all over the driveway. Finally the driveway,The leaves blow all over the driveway.,Finally the driveway,gold,\"is shown with flames on it, then walks back to the home till the lawn is surf.\",stops and she is done in the beginning.,is shown and they are shown rising up and back in the paper.,is cleared of the leaves.\n19450,anetv_5FwNVOIGdVs,5588,He then backs up and begins to blow leaves with it. The leaves,He then backs up and begins to blow leaves with it.,The leaves,gold,are all very still.,are working out on the floor behind him as he continues to talk.,blow all over the driveway.,stops walking and looks up.\n19451,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14482,Someone stands close to him. Someone,Someone stands close to him.,Someone,gold,\"releases her grip, and flexes her wrist.\",stares at him skeptically.,looks up on the opened back door.,kisses her cheek and angrily looks at someone.\n19452,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14481,Someone stares unwaveringly at someone. Someone,Someone stares unwaveringly at someone.,Someone,gold,stands close to him.,applauds to her pew.,\"looks up at someone, who is pleasantly growing angry.\",shoves more powder at someone.\n19453,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14483,\"Someone releases her grip, and flexes her wrist. Outside, a mechanical man\",\"Someone releases her grip, and flexes her wrist.\",\"Outside, a mechanical man\",gold,makes the rabbit on his head disappear under a big top hat.,leaps onto a large bar stool as she skids to a stop.,\"shakes the notes, dying uses the screen for someone.\",pushes himself off the knight's passengers.\n19454,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14487,He slides down a chute into a bag. They,He slides down a chute into a bag.,They,gold,are in diagon alley.,travels a bridge to a villa.,hit it open with his feet.,put on his freeing and climb into the grate.\n19455,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14495,\"The three friends look up, as a light comes on in an arched window in the roof at the rear of the shop. They\",\"The three friends look up, as a light comes on in an arched window in the roof at the rear of the shop.\",They,gold,lifts chemicals into the air over the base of snow.,look out at the road as someone passes hard on the roads.,\"climb onto an adjoining roof and watch, as the people are led across a courtyard below into a high room.\",lie over the platform and look at the hatch.\n19456,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14497,It reaches from the ground floor to the roof. They,It reaches from the ground floor to the roof.,They,gold,take the keys of honor from the pocket of a coat which is used to help.,\"see someone running his hands over a tall, triangular, embossed wooden cabinet.\",\"is talking in their shelter, talking or partially and looking dazed.\",give chase as he runs along the path.\n19457,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14498,Someone hauls himself up to get a better view. Someone,Someone hauls himself up to get a better view.,Someone,gold,appears at a window.,stands and glances down at the sky where he steps.,hurdles the churning waves.,\"watches tv, wincing.\"\n19458,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14496,\"They climb onto an adjoining roof and watch, as the people are led across a courtyard below into a high room. It\",\"They climb onto an adjoining roof and watch, as the people are led across a courtyard below into a high room.\",It,gold,reaches from the ground floor to the roof.,is stopped in silence.,illuminate the rows chairs strewn over their desks.,recognizes a pile of rocks on the floor.\n19459,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14489,They enter the empty and burned out shop the People attacked. Someone,They enter the empty and burned out shop the People attacked.,Someone,gold,\"leads the way, followed by someone, then someone.\",enters the men code into a square on the floor by a new one.,drops someone like a gun.,sits up and stares.\n19460,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14490,\"Someone leads the way, followed by someone, then someone. Someone\",\"Someone leads the way, followed by someone, then someone.\",Someone,gold,stops by a window and looks out.,sits on the ledge beside someone reading.,leans toward him and kisses him again.,notices someone's broomstick.\n19461,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14500,\"Someone saunters along the corridor with her magazines. Further back on the train, people\",Someone saunters along the corridor with her magazines.,\"Further back on the train, people\",gold,have a compartment to themselves.,sit nearby in a front view mirror.,rush to the front door of the school plane.,approach a food - covered palace area.\n19462,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14492,\"The trio leave someone's and peek round the corner, where there's a wanted poster for someone: The beardy Death - eater who attacked the shop. They\",\"The trio leave someone's and peek round the corner, where there's a wanted poster for someone: The beardy Death - eater who attacked the shop.\",They,gold,follow the people down the gloomy alleyway.,\"fend off events for their fleeing procession, as one blends other soldiers.\",\", he is sober.\",come out of the canopy as soldiers who gather a power shield from the driver of the retirement cabin.\n19463,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14485,A boy walks up a wall. Someone,A boy walks up a wall.,Someone,gold,spots a strange substance.,hands someone a box of cash.,stands and stares at himself.,runs next to him looking away from her.\n19464,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14494,\"Someone strides in, and someone follows. The three friends\",\"Someone strides in, and someone follows.\",The three friends,gold,wander down the underground hall.,stare at the top.,shift to his seat where someone slowly walks toward the low house.,\"look up, as a light comes on in an arched window in the roof at the rear of the shop.\"\n19465,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14491,Someone stops by a window and looks out. People,Someone stops by a window and looks out.,People,gold,run through the dusty ease.,look into a big stone face.,look around furtively before entering a narrow alley.,stream out of someone's view.\n19466,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14499,Someone appears at a window. People,Someone appears at a window.,People,gold,stand at the door of the staircase.,are waiting for the spider.,\"duck down, as a thin - faced man with a beard looks out.\",lie limp and unconscious.\n19467,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14486,\"A handsome youth, someone, smiles at someone. She\",\"A handsome youth, someone, smiles at someone.\",She,gold,is being interviewed by a news coach at the party of them.,beams as someone takes a deep slug.,lets a single chain across the room.,puts down the love potion.\n19468,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14493,They follow the people down the gloomy alleyway. The people,They follow the people down the gloomy alleyway.,The people,gold,continue to lie across the lawn.,point their wands toward their doors as they climb the wooden gates of the bank.,\"descend steps to a shop with a sign above its door, borgin and someone.\",reach the first girl kayaking.\n19469,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72155,14488,They are in Diagon Alley. They,They are in Diagon Alley.,They,gold,make contact in the station.,are in a house near a vulnerable tree.,enter the empty and burned out shop the people attacked.,sit inside a classroom.\n19470,anetv_gXdFGYPKClE,16039,The people are behind the small fence with their bikes. Then the fence is put down the bikers,The people are behind the small fence with their bikes.,Then the fence is put down the bikers,gold,started racing with each other.,rides after the girl.,are demonstrating a successful land improvement.,begin jumping and animals criss cross.\n19471,anetv_gXdFGYPKClE,16040,Then the fence is put down the bikers started racing with each other. The bikers,Then the fence is put down the bikers started racing with each other.,The bikers,gold,are cycling through the ramps as audiences are watching.,begin to flee until they finally lay down again.,are still in their bikes.,run around the area and cut off by a black mini - shirt on the ground.\n19472,anetv_gXdFGYPKClE,9611,A number of bikers line up at a race starting line. The race start and they,A number of bikers line up at a race starting line.,The race start and they,gold,are going back together.,go back and forth across the line.,drive up in a game of dirt bikes.,race along an uneven course with spectators watching.\n19473,anetv_qJYp25ni6tg,7114,A man is seen speaking to the camera followed by various ingredients laid out and him chopping up vegetables. The man,A man is seen speaking to the camera followed by various ingredients laid out and him chopping up vegetables.,The man,gold,mixes ingredients into a pot and mixes down a drink while speaking to the camera.,continues cutting and mixes the ingredients into a bowl.,sprays ingredients along with the tomato and then grabs the ingredients and puts the drill.,continues speaking around the camera while still speaking to the others.\n19474,anetv_qJYp25ni6tg,7115,The man continues cutting and mixes the ingredients into a bowl. He,The man continues cutting and mixes the ingredients into a bowl.,He,gold,begins to cut eggs some more.,pours liquid into the bowl and ends by presenting it on a plate.,arrives with a speaking counter.,puts the skillet on the bread while still looking at it.\n19475,anetv_03BMaaMEcNo,924,Two people are seen sitting before a wave pool and one leads another out onto the water on a board. The person,Two people are seen sitting before a wave pool and one leads another out onto the water on a board.,The person,gold,dive down and dive into a pool.,falls when another attempts to ride the board on the water.,slides the down into a wall and pulls the person onto it.,thrown their hands back and fourth with the people playing hitting each other in the back.\n19476,anetv_03BMaaMEcNo,925,The person falls when another attempts to ride the board on the water. The person,The person falls when another attempts to ride the board on the water.,The person,gold,surfs the water surface where the person's direction is.,falls on the board while still speaking to the camera.,continues riding along the water and ends with the camera panning around the area and the boy falls.,walks on the edge and then begins riding on down the hill.\n19477,lsmdc3008_BAD_TEACHER-4141,2687,She averts her dejected gaze. Someone,She averts her dejected gaze.,Someone,gold,\"lifts her brow, with his mouth, then meets her's gaze.\",sighs excitedly as a clock counts down to four seconds.,gapes then cocks her head.,regards her with an affectionate expression.\n19478,lsmdc3007_A_THOUSAND_WORDS-3627,2294,Someone smacks someone's ear. They,Someone smacks someone's ear.,They,gold,dive into a parked car.,\"walk to a table, where a bearded man stands and shakes someone's hand.\",move through the door.,approach someone who lies motionless.\n19479,lsmdc3007_A_THOUSAND_WORDS-3627,2289,\"Someone tilts back his head and rolls his eyes. Meanwhile, two squirrels\",Someone tilts back his head and rolls his eyes.,\"Meanwhile, two squirrels\",gold,chase each other around the bodhi tree's trunk.,leads the plane onto a lower level.,come in with someone.,ride from his humvee at a safe.\n19480,lsmdc3007_A_THOUSAND_WORDS-3627,2295,\"They walk to a table, where a bearded man stands and shakes someone's hand. Someone\",\"They walk to a table, where a bearded man stands and shakes someone's hand.\",Someone,gold,comes into the kitchen.,peers out a car.,hugs robert and fist bumps gil.,\"catches a look, then turns towards the massive man.\"\n19481,lsmdc3007_A_THOUSAND_WORDS-3627,2291,\"At the office, someone shakes his legs and dances in place. Christian smiles, then\",\"At the office, someone shakes his legs and dances in place.\",\"Christian smiles, then\",gold,\"frowns and gazes at the offscreen, oblivious out.\",\"continues on and shrugs, leans down, leaning against the brick wall.\",kicks him on the shoulders and keeps running.,begins to dance with him.\n19482,lsmdc3007_A_THOUSAND_WORDS-3627,2292,\"Samantha frowns at someone, who begins to shimmy. Later he\",\"Samantha frowns at someone, who begins to shimmy.\",Later he,gold,rides on a country road.,follows someone into a restaurant.,sits beside her stuffed toy and greet a show.,strolls down the hall.\n19483,lsmdc3024_EASY_A-11440,751,Now someone plays an acoustic guitar in her room. Her mother,Now someone plays an acoustic guitar in her room.,Her mother,gold,and the others grudgingly lingers.,\"enters, bearing a green box wrapped with a blue ribbon.\",sings in a plethora of panty outfits.,\"comes out onto the furry yard and dresses, wearing a polo t - shirt.\"\n19484,lsmdc3033_HUGO-14532,187,Someone searches through stacks of towels. Someone,Someone searches through stacks of towels.,Someone,gold,jumps with a tv set.,\"sets up the poker, and leads them to the booth.\",searches a container then shuts a drawer in the armoire.,hands someone a police lighter.\n19485,lsmdc3033_HUGO-14532,203,\"Someone turns to someone, who shakes her head. Someone\",\"Someone turns to someone, who shakes her head.\",Someone,gold,overtakes someone as he wedges through two neatly built weapon airlock.,sets down a rifle.,\"looks at someone, and looks down.\",scoops up several drawings with both hands.\n19486,lsmdc3033_HUGO-14532,195,Someone grabs the box with both hands and pulls it forward. Someone,Someone grabs the box with both hands and pulls it forward.,Someone,gold,bursts up to someone.,glances over her shoulder then drags the box forward several inches.,completes his sack with a scrap of paper and goes to the closet.,hands hang anxiously to someone's face as beams dance.\n19487,lsmdc3033_HUGO-14532,211,Someone nods slightly as he meets someone's gaze. They,Someone nods slightly as he meets someone's gaze.,They,gold,peer into each other's eyes.,someone looks through a blurred gap then passes a tube mounted to the bottom of the moon.,drops his gaze in his face.,people sulks on their women.\n19488,lsmdc3033_HUGO-14532,185,Someone turns and eyes an armoire standing against a wall. Someone,Someone turns and eyes an armoire standing against a wall.,Someone,gold,stops to cup someone's spit in both hands.,opens the armoire as someone places her ear against the door.,rises from the couch with a start.,\"in a black bra up onto the crown, someone leans across to someone.\"\n19489,lsmdc3033_HUGO-14532,204,Someone scoops up several drawings with both hands. Someone,Someone scoops up several drawings with both hands.,Someone,gold,stares with her eyes.,furiously crumples the drawings as someone tries to grab his hands.,\"grabs a fist and screams, laughing and smiling to themselves.\",writes it for a second time.\n19490,lsmdc3033_HUGO-14532,215,\"Crouching, someone quickly picks up the books then stands and faces the bearded bookseller. Someone\",\"Crouching, someone quickly picks up the books then stands and faces the bearded bookseller.\",Someone,gold,nods her head menacingly.,runs his hand across the cover of the top book.,gazes at his father.,looks at her experience.\n19491,lsmdc3033_HUGO-14532,198,The chair's legs snap and collapse. The box,The chair's legs snap and collapse.,The box,gold,calls over to someone.,is passed with several someone's.,falls to the floor and springs open.,fall on a mattress beneath the cast.\n19492,lsmdc3033_HUGO-14532,205,Someone sits on a bed. Someone,Someone sits on a bed.,Someone,gold,sits in his chair.,leans out onto the couch with him.,grasps his arm then sits next to him.,lays on the bed with his hands on his face.\n19493,lsmdc3033_HUGO-14532,201,Someone steps closer to someone. Someone,Someone steps closer to someone.,Someone,gold,smiles then gives a sultry look.,\"looks at her cousin, then turns away.\",gazes around the room then steps inside.,looks expectantly at his friend.\n19494,lsmdc3033_HUGO-14532,196,\"Someone glances over her shoulder then drags the box forward several inches. Suddenly, the box falls but someone\",Someone glances over her shoulder then drags the box forward several inches.,\"Suddenly, the box falls but someone\",gold,lets his body droop.,rolls the back of it.,\"holds on, hugging it to her chest.\",settles himself on the branch.\n19495,lsmdc3033_HUGO-14532,188,Someone searches a container then shuts a drawer in the armoire. Someone,Someone searches a container then shuts a drawer in the armoire.,Someone,gold,sits staring at the ceiling.,looks up at someone as she turns her gaze toward the hallway.,sits beside someone and kisses someone.,\"scrutinizes him, then sheepishly scrutinizes someone.\"\n19496,lsmdc3033_HUGO-14532,199,The box falls to the floor and springs open. Papers,The box falls to the floor and springs open.,Papers,gold,drives the shower shotgun into his stomach.,hang up to the window.,\"assistance up trucks are heading in, tear with people's pickup and emerge from the trees.\",fly out and swirl around the room.\n19497,lsmdc3033_HUGO-14532,184,Someone turns someone and someone around. Someone,Someone turns someone and someone around.,Someone,gold,peeks through the doorway that finds behind the damage.,pulls the door almost shut but immediately opens it.,hurls his bag out of sight.,kicks her way through the crowd.\n19498,lsmdc3033_HUGO-14532,207,Someone stares at someone as he draws a deep breath. Someone,Someone stares at someone as he draws a deep breath.,Someone,gold,shrugs his hand and shakes his hand.,takes her hand and blows it away.,wraps her arm around someone's shoulder as he gently sobs.,shakes his head and hands the grave a note.\n19499,lsmdc3033_HUGO-14532,209,\"Someone turns toward someone, nods. At the front door, someone\",\"Someone turns toward someone, nods.\",\"At the front door, someone\",gold,stands guard at the bar.,spots someone sitting in and sees someone in a go.,stands on the landing.,waves to the waiter.\n19500,lsmdc3033_HUGO-14532,210,\"At the front door, someone stands on the landing. Someone\",\"At the front door, someone stands on the landing.\",Someone,gold,nods slightly as he meets someone's gaze.,cautiously peers over his shoulder as he approaches the glamorous beauty.,turns and answers the phone.,\"wakes and turns around's around, facing someone.\"\n19501,lsmdc3033_HUGO-14532,190,Someone sets a chair in front of the armoire and begins to climb onto it. Someone,Someone sets a chair in front of the armoire and begins to climb onto it.,Someone,gold,raises his fingers and bows.,steps onto the chair then inspects the panel.,lowers the lens in his eyes.,turns to her and looks around hesitantly.\n19502,lsmdc3033_HUGO-14532,202,Someone gazes around the room then steps inside. Someone,Someone gazes around the room then steps inside.,Someone,gold,points the gun toward someone.,\"steps aside, then hesitates.\",\"turns to someone, who shakes her head.\",shoots someone a glance.\n19503,lsmdc3033_HUGO-14532,192,Someone presses the panel flush. Someone,Someone presses the panel flush.,Someone,gold,dismounts raises one hand to his mouth over a white lever.,raps lightly on the wood.,looks out of the window and shut around and takes a seat in a doorway.,stands as he spots a tall magazine.\n19504,lsmdc3033_HUGO-14532,194,\"Smiling, she hands the panel to someone then turns toward a wooden box sitting in the exposed space. Someone\",\"Smiling, she hands the panel to someone then turns toward a wooden box sitting in the exposed space.\",Someone,gold,swerves his beam upside down.,faces someone and watches tensely in the law.,chaises two girls in a black field and resumes work at arm's length.,grabs the box with both hands and pulls it forward.\n19505,lsmdc3033_HUGO-14532,191,Someone steps onto the chair then inspects the panel. Someone,Someone steps onto the chair then inspects the panel.,Someone,gold,glowers revealing someone's cape.,brings the contract to the resulting dummy.,climbs the bow and heads down the stage.,presses the panel flush.\n19506,lsmdc3033_HUGO-14532,212,\"Someone grasps her hand then turns and walks off. Facing someone, someone\",Someone grasps her hand then turns and walks off.,\"Facing someone, someone\",gold,covers her cheek as someone listens.,shields his eyes on someone and exits.,nods then turns and walks away.,kisses her hand to her cheek.\n19507,lsmdc3033_HUGO-14532,193,\"Someone glances behind herself then reaches up with both hands and removes the panel. Smiling, she\",Someone glances behind herself then reaches up with both hands and removes the panel.,\"Smiling, she\",gold,hands the panel to someone then turns toward a wooden box sitting in the exposed space.,put her case over the doorknob.,gazes into space for a brief moment before walking away.,sits again and squints wide.\n19508,lsmdc3033_HUGO-14532,214,\"Later, he crosses a cobble - stoned street near a statue of a lion. He\",\"Later, he crosses a cobble - stoned street near a statue of a lion.\",He,gold,\"pushes open a door to the train station, steps inside, then collides with the bookseller.\",swings the gate open over his ax.,\"gets ready to cut, slipping his fingers on the clown's throat.\",someone jog down a narrow passage.\n19509,lsmdc3033_HUGO-14532,181,Someone raises her hand toward her own neck then looks at someone. Someone,Someone raises her hand toward her own neck then looks at someone.,Someone,gold,removes the key from around her own neck.,\"pulls up his shirt and tucks it in his briefcase with a hose, and takes a deep breath.\",\"frowns, and she bows her head, and heads off.\",gives him a nod and goes back to her knitting.\n19510,lsmdc3033_HUGO-14532,217,\"Someone smiles as the bookseller hands him the thick volume then walks off. Holding the book in both hands, someone\",Someone smiles as the bookseller hands him the thick volume then walks off.,\"Holding the book in both hands, someone\",gold,slowly finds somebody gliding.,walks deeper into the station.,sits morosely from a wall outside a canvas album.,steps past the offscreen someone.\n19511,lsmdc3033_HUGO-14532,197,\"Suddenly, the box falls but someone holds on, hugging it to her chest. Wide - eyed, someone\",\"Suddenly, the box falls but someone holds on, hugging it to her chest.\",\"Wide - eyed, someone\",gold,stares at her hands in horror.,applies gauze to the chamois.,watches as someone turns toward him.,\"glances at her and shakes himself, nods, and takes in his procedure.\"\n19512,lsmdc3033_HUGO-14532,216,Someone stares at the floor. Someone,Someone stares at the floor.,Someone,gold,sits under the booth with a somber gaze.,hangs his head and sprints back and forth.,run directly beneath the wounded someone.,smiles as the bookseller hands him the thick volume then walks off.\n19513,lsmdc3033_HUGO-14532,200,Papers fly out and swirl around the room. The flipping pages,Papers fly out and swirl around the room.,The flipping pages,gold,flip a tape on his program.,become an animation of the dragon breathing fire.,dangle from his line of images.,are spread up.\n19514,lsmdc3033_HUGO-14532,218,\"Holding the book in both hands, someone walks deeper into the station. Someone\",\"Holding the book in both hands, someone walks deeper into the station.\",Someone,gold,\"looks down between someone and someone, who sits hunched next to open parachutes.\",smiles wistfully as someone closes the door for him as he hurries through the dining room room.,freezes then turns and walks in the opposite direction.,\"lifts himself into his chair, and beats them on the door.\"\n19515,lsmdc3033_HUGO-14532,186,Someone opens the armoire as someone places her ear against the door. Someone,Someone opens the armoire as someone places her ear against the door.,Someone,gold,searches through stacks of towels.,puts it back in someone's mouth.,pulls himself out of the kitchen.,is still puzzled on the page.\n19516,lsmdc3033_HUGO-14532,189,He points toward the panel. Someone,He points toward the panel.,Someone,gold,sets a chair in front of the armoire and begins to climb onto it.,smiles at them as they move toward the row of aboriginal steps.,sits at a door with dainty bows at one '.,hands the unisphere then lowers the lens.\n19517,anetv_jalqZE5ekho,6501,Little kid is in the sand doing a castle using a small toy shovel kid leaves. little girl foes into the castle in the sand and,Little kid is in the sand doing a castle using a small toy shovel kid leaves.,little girl foes into the castle in the sand and,gold,is in a trailer talking to the camera.,start playing while the kid bring more water from the sea.,fell on the floor of the house.,is wearing the kinds of playground maintenance and was knitting with parts and moving a small bag on the side.\n19518,anetv_DVlMzGPhWO4,10355,A man is shown speaking to the camera on a boat riding around. Several other boats,A man is shown speaking to the camera on a boat riding around.,Several other boats,gold,are shown leading into various rafts together.,are shown riding near him.,are shown wandering around while others watch on the side.,are shown riding in kayak including rocks.\n19519,anetv_DVlMzGPhWO4,10356,Several other boats are shown riding near him. More shots,Several other boats are shown riding near him.,More shots,gold,are shown of him falling and hitting him.,are shown of the man speaking while still riding around on boats.,are shown of water surfing in the water as another man records the trouble from equipment.,are shown of the facility moving along.\n19520,anetv_DVlMzGPhWO4,408,Two people surf in the ocean on boats equipped with sails. A hand,Two people surf in the ocean on boats equipped with sails.,A hand,gold,sail on the water while rowing on skis.,surfs on the water and waves sealife.,holds ropes from the sail.,stands behind a wave in the water.\n19521,anetv_ByTL6_iHoIA,15868,People are scuba diving watching the fishes are swimming between rocks. people,People are scuba diving watching the fishes are swimming between rocks.,people,gold,are in curlers swimming around them.,move in and out of water tanks and explode.,are under the sea scuba diving recording everything.,are seated under the covers to the left side of the water without taking a sip.\n19522,anetv_ByTL6_iHoIA,15867,Man is scuba diving under water and saying hi to the camera. people,Man is scuba diving under water and saying hi to the camera.,people,gold,are standing beside a wave holding the rope out in front of someone.,are scuba diving watching the fishes are swimming between rocks.,are swimming behind the pool watching can.,are in a room filled with people and people rowing their floats quickly to make the moves to a standing foot.\n19523,anetv_86lJVqKyj3A,3199,The woman talks to the camera and begins to wrap the box in gift wrapping paper using a pair of scissors to cut the gift wrapping paper and clear tape to tape the edges of the wrapping paper. The woman then wraps the gift with final ribbon and the camera,The woman talks to the camera and begins to wrap the box in gift wrapping paper using a pair of scissors to cut the gift wrapping paper and clear tape to tape the edges of the wrapping paper.,The woman then wraps the gift with final ribbon and the camera,gold,begins to shine the package with the front.,\"closes up on the finishes, wrapped, product.\",pans around it as she takes photos of the cookie.,brings and walks to the whole end of it.\n19524,anetv_86lJVqKyj3A,3197,A woman demonstrates how to properly wrap a gift from behind the counter of a gift shop. A woman,A woman demonstrates how to properly wrap a gift from behind the counter of a gift shop.,A woman,gold,stands behind a sales counter in front of several wrapped gifts and gift wrapping materials.,\"phial with paint paints, marks on.\",\"removes her shoe, then presents it to the camera and demonstrating how to properly groom the gift.\",bites haired construction with a knife to secure in the heel.\n19525,anetv_86lJVqKyj3A,3198,A woman stands behind a sales counter in front of several wrapped gifts and gift wrapping materials. Gift wrapping materials,A woman stands behind a sales counter in front of several wrapped gifts and gift wrapping materials.,Gift wrapping materials,gold,hang around it draped with a scrap of paper.,\", a woman how to wrap the present and wrap the present.\",are shown looking down on a pile at wrapping paper.,\"are shown sitting on the counter including gift wrap, scissors, and ribbon.\"\n19526,anetv_OEBSls79Ths,12842,\"A gymnast performs on the uneven bars while spectators watch the performance. The gymnast end the performance and great the audience, and then she\",A gymnast performs on the uneven bars while spectators watch the performance.,\"The gymnast end the performance and great the audience, and then she\",gold,goes back around with jump ropes.,dismounts from the pole and does handstand for the group.,begins to dive off the mat.,join her friends to wait for the score.\n19527,anetv_OEBSls79Ths,12843,\"The gymnast end the performance and great the audience, and then she join her friends to wait for the score. A woman\",\"The gymnast end the performance and great the audience, and then she join her friends to wait for the score.\",A woman,gold,enters the bar with two bows and spins.,watch the gymnast and applaud.,gives a tutorial for a video in her first plethora.,fall down the stairs and walk away.\n19528,anetv_ZncidS9kQ-g,16696,A man is dressed in a spiderman outfit. He,A man is dressed in a spiderman outfit.,He,gold,has a bag on his nails.,is wearing a suit and pants.,is leaning against a rail inside a building.,is giving instructions about how to properly use a sickle.\n19529,anetv_ZncidS9kQ-g,4255,A man dressed as spiderman leans against a metal rail as he plays a saxaphone. He,A man dressed as spiderman leans against a metal rail as he plays a saxaphone.,He,gold,painters fasten their bike wheel in order to spare.,sways and moves a little as he continues to play.,crosses the bongo case as he sticks the instrument.,swings an ax at a corner and hits the roof in the midst of a metal fang.\n19530,anetv_ZncidS9kQ-g,16697,He is leaning against a rail inside a building. He,He is leaning against a rail inside a building.,He,gold,is in front of a building's walls and blue doors.,\"swirls around a pipe, his head held tight enough for someone to reach the ground in a pedestal.\",is playing a saxophone.,\"sits in front of the train, wielding the blue mug which liquor.\"\n19531,lsmdc1057_Seven_pounds-97862,14990,She snuggles down in the bed. Someone,She snuggles down in the bed.,Someone,gold,returns her eyes to a sketch on the desk.,walks in the night.,\"leans forward, clutching her belly.\",\"looks down, then rolls off her suit.\"\n19532,anetv_AYhduTuI_zM,1579,The woman pauses to speak to the man and the man takes the flute from her and plays. The man,The woman pauses to speak to the man and the man takes the flute from her and plays.,The man,gold,\"plays cigarette and releases her lips, then gut flips.\",hands her back the flute to play and ends by still speaking to her.,bends down to move back variety of traditional drum bongos.,stops a laptop and gives it a hug.\n19533,lsmdc3080_THIS_MEANS_WAR-37198,6969,\"Turning, he finds a bald agent grinning at him. He\",\"Turning, he finds a bald agent grinning at him.\",He,gold,scowls off a woman's dark blue blouse and pushes it open.,presses his back on the someone shoulder.,marches into the work area he shares with someone and finds him sitting casually at his desk.,hangs the boy around his neck.\n19534,lsmdc3080_THIS_MEANS_WAR-37198,6966,He taps his temple and she brightens. An aerial view,He taps his temple and she brightens.,An aerial view,gold,shoot over a low ceiling.,shows the city at dawn.,shows the bus coming off hills.,\"shows a dark, dark passage.\"\n19535,lsmdc3080_THIS_MEANS_WAR-37198,6968,\"Someone strolls cheerfully through a bullpen. Turning, he\",Someone strolls cheerfully through a bullpen.,\"Turning, he\",gold,finds a bald agent grinning at him.,spots his panicked alien wearing a blue cloak and shimmies like a sickly boy.,pulls a trolley halfway down the street.,finds an abstract painting of a blond couple in a lovely bar building.\n19536,anetv_HCZpS7mhvrE,7457,Three men re waxing skis in a workshop and we see the man at the press conference. A man runs behind trailers and two men walk on the snow before we,Three men re waxing skis in a workshop and we see the man at the press conference.,A man runs behind trailers and two men walk on the snow before we,gold,see the press conference again.,see a truck race.,see a skier moving on the croquet.,see a sign of the man filming the lady.\n19537,anetv_HCZpS7mhvrE,7460,The man at the press conference and a men puts a mask on in the workshop and a machine sits in the field. Two men,The man at the press conference and a men puts a mask on in the workshop and a machine sits in the field.,Two men,gold,places on an army cleaning uniform.,pose holding rifles in the snow.,are outside in the field of snow.,hiding talk and talk and a man play paintball outside.\n19538,anetv_HCZpS7mhvrE,7458,A man runs behind trailers and two men walk on the snow before we see the press conference again. We,A man runs behind trailers and two men walk on the snow before we see the press conference again.,We,gold,see the men skiing.,see the aerial screen.,see three men sitting in front of soccer displaying video of the first man drizzles sunscreen on the man.,see people marching for a racetrack and a man running into takes a shot at the same scene.\n19539,anetv_HCZpS7mhvrE,7455,A man in a hat talks at a press conference. We,A man in a hat talks at a press conference.,We,gold,see cabins and trailers in a snowy area.,see a sense of people and a teacher holding up.,man stands in stands and talks.,see people load the car.\n19540,anetv_jBvGvVw3R-Q,11242,A man is standing in a gym preparing to lift a set of weights placed on a bar. Next the screen,A man is standing in a gym preparing to lift a set of weights placed on a bar.,Next the screen,gold,shows a taller man holding an ice flag.,flashes to a younger male jerking and then drops the bar on the ground.,says a few types that was shown.,freezes above the person.\n19541,anetv_jBvGvVw3R-Q,11243,Next the screen flashes to a younger male jerking and then drops the bar on the ground. Several more people,Next the screen flashes to a younger male jerking and then drops the bar on the ground.,Several more people,gold,are shown lifting weights and dropping them on the ground.,\"around, laughing and cheering and hurtling at each other.\",leotard and jump are joined by two women who are watching each give the word home.,are shown ending with him.\n19542,lsmdc3051_NANNY_MCPHEE_RETURNS-24901,7443,Someone turns a red knob in the sidecar. The someone,Someone turns a red knob in the sidecar.,The someone,gold,patiently taps her handle bar.,unload his brand car again.,\"move to their knees, passing someone.\",pumps the bullets behind the truck.\n19543,anetv_SlT6OBmQqpc,12681,A young man is seen standing in front of the camera and begins spinning in circles. He,A young man is seen standing in front of the camera and begins spinning in circles.,He,gold,continues to fly down the area while flipping dish butts into a microphone.,continues spinning and then does several kicks and punches while also throwing darts.,is seen running down on the floor as well as leaning against the wall.,continues doing them as they perform while laughing in the end.\n19544,lsmdc3048_LITTLE_FOCKERS-22955,5889,\"A shelf holds books on genealogy. On a bulletin board, headshots\",A shelf holds books on genealogy.,\"On a bulletin board, headshots\",gold,form a smartly right - angled family tree.,stack minimizes family photos plays the inside of a.,\"rows at mugshots reacting, knocking each other over the other or expanding homework.\",onto a carpet bed.\n19545,lsmdc3048_LITTLE_FOCKERS-22955,5890,Someone frowns at photos of Deborah Banks and dr. He,Someone frowns at photos of Deborah Banks and dr.,He,gold,takes down robert's photo.,lifts his head off and frowns.,puts the locket to his notepaper.,gets back to give the camera a shingle.\n19546,lsmdc3048_LITTLE_FOCKERS-22955,5888,\"A framed photo shows someone with a Bedouin, dressed as a Bedouin. Sepia - toned photo\",\"A framed photo shows someone with a Bedouin, dressed as a Bedouin.\",Sepia - toned photo,gold,shows the man with tattooed man.,\"shows dates, men, and officers resembling someone.\",shows him a huge tapestry of candlelight.,shows the snake - like toy swimming at the crimson image.\n19547,lsmdc3040_JULIE_AND_JULIA-17722,6317,Someone gazes at someone's delighted face. Now they,Someone gazes at someone's delighted face.,Now they,gold,\"sit in the corners, a smile.\",watch someone on tv.,arrive at someone's photo.,lie in their sty of outer woodland as someone pulls up and glances partway at them.\n19548,anetv_vr0Wi359kWM,14818,The host shows off each product and how they help clean a shoe. First we,The host shows off each product and how they help clean a shoe.,First we,gold,\"pan the man to style a water hose from the computer, exposing in the wet passageway.\",see the sneaker get cleaned.,see the dog screenshot and clean fur around the dog.,\"see it's attachment trainers a martial scour and into a full product base, tights and flooring and ends in a pile.\"\n19549,anetv_vr0Wi359kWM,14819,A basketball shoe is cleaned next. Some ads,A basketball shoe is cleaned next.,Some ads,gold,the beginning and tattoos back.,ads for some kind of fire.,play to close the video.,paints eats some chocolate.\n19550,anetv_vr0Wi359kWM,14817,An intro shows off the products of the video. The host,An intro shows off the products of the video.,The host,gold,has a stepper in a sink in a kitchen.,returns to business pictures.,takes a picture to her.,shows off each product and how they help clean a shoe.\n19551,anetv_Z1POv1Qeno0,17436,A bus sits in front of the rafting facility and men stack rafts as other men walk with their rafts. A man and a woman,A bus sits in front of the rafting facility and men stack rafts as other men walk with their rafts.,A man and a woman,gold,\"are sitting in a kayak, rowing away again and bursting into the shore.\",read a very long video.,are ride stationary bikes down the river.,are floating down the river in separate rafts.\n19552,anetv_Z1POv1Qeno0,17434,We then see people getting rafts at a building. A man,We then see people getting rafts at a building.,A man,gold,runs to the side of the waterfall.,is seated on the bed of a suit calculations his legs.,is throwing a skateboard up the street from an adult.,is in a boat people floating in a raft.\n19553,anetv_Z1POv1Qeno0,17435,A man is in a boat people floating in a raft. A bus sits in front of the rafting facility and men,A man is in a boat people floating in a raft.,A bus sits in front of the rafting facility and men,gold,washing their hands while they stand on the boat.,stack rafts as other men walk with their rafts.,are standing next to their boards outside.,are enjoying one man in the river.\n19554,anetv_Z1POv1Qeno0,17433,People are floating down a river in rafts. We then,People are floating down a river in rafts.,We then,gold,see a group of people in rapids walking down a river.,see a hockey boat.,see several canoe sailing on the ocean.,see people getting rafts at a building.\n19555,lsmdc3041_JUST_GO_WITH_IT-18413,18613,He wiggles his finger from his chin. Someone,He wiggles his finger from his chin.,Someone,gold,starts on people 'uninjured.,sticks his head into the nearest - shirt.,steps out of her car in a tight dress.,looks down at a pair of double - doors.\n19556,lsmdc1034_Super_8-8277,17021,\"He punches the guard out and takes his gun. Now dressed in the guard's uniform and clutching his rifle, someone\",He punches the guard out and takes his gun.,\"Now dressed in the guard's uniform and clutching his rifle, someone\",gold,trots along a corridor and makes his way through a couple of offices.,bounds up him.,storms out of the office.,hurries downstairs.\n19557,lsmdc1034_Super_8-8277,17027,\"Someone gets back in the Jeep. Now on a main carriage way, he unwittingly\",Someone gets back in the Jeep.,\"Now on a main carriage way, he unwittingly\",gold,\"lassos the zebra's loose torso, grabs his jacket and guides it onto the dark horse's head.\",motors past people and the boys who are driving back to town.,takes two tickets from the three pack.,boogies a magic shotgun.\n19558,lsmdc1034_Super_8-8277,17023,He looks outside and spots a fuel tanker nearby. Someone,He looks outside and spots a fuel tanker nearby.,Someone,gold,gets to his feet.,looking up as he hears a cable popping through the tunnel.,shoots the tanker which explodes in a fireball.,yanks the colt out of the fridge.\n19559,lsmdc1034_Super_8-8277,17026,He sees a convoy of vehicles traveling along an adjacent road. Someone,He sees a convoy of vehicles traveling along an adjacent road.,Someone,gold,uses the empty flat to keep the vehicles from a distance.,\"glances across a wire line, then faces them.\",picks up groceries from a rack.,gets back in the jeep.\n19560,lsmdc1034_Super_8-8277,17020,The guard escorts him along a corridor. He,The guard escorts him along a corridor.,He,gold,leads a group of soldiers across a deck.,chases someone down a flight of stairs.,punches the guard out and takes his gun.,steps in and covers with his military monks as someone shows him a photo.\n19561,lsmdc1034_Super_8-8277,17024,\"Someone shoots the tanker which explodes in a fireball. Once Air Force personnel are distracted, someone\",Someone shoots the tanker which explodes in a fireball.,\"Once Air Force personnel are distracted, someone\",gold,smiles and puts his arm around someone.,hits the light against the van.,helps himself to a jeep and drives off.,\"kicks off the deed, blood running.\"\n19562,lsmdc1034_Super_8-8277,17022,\"Now dressed in the guard's uniform and clutching his rifle, someone trots along a corridor and makes his way through a couple of offices. He\",\"Now dressed in the guard's uniform and clutching his rifle, someone trots along a corridor and makes his way through a couple of offices.\",He,gold,cautiously reaches through the dining chairs and leaps over their rumpled position.,looks outside and spots a fuel tanker nearby.,stops as we approach the gorilla's window.,\"crosses to a small wooden door, someone watches as someone takes it and walks over to him.\"\n19563,lsmdc1034_Super_8-8277,17025,He pulls up near a grain silo and gets out of the Jeep. He,He pulls up near a grain silo and gets out of the Jeep.,He,gold,sees the last trooper covering the van.,sees a convoy of vehicles traveling along an adjacent road.,crosses to a french window.,is touching the front of his car; he leans against the railing and drives out of the convertible.\n19564,lsmdc1034_Super_8-8277,17019,An armed guard opens the door. The guard,An armed guard opens the door.,The guard,gold,slides into the workshop.,keeps locked the door.,escorts him along a corridor.,peers through the glass doors into the hallway.\n19565,anetv_mio5dnRbo4w,61,\"First, the man turns his water sprayer on and he starts spraying all of the dirt off of the car. Then he\",\"First, the man turns his water sprayer on and he starts spraying all of the dirt off of the car.\",Then he,gold,bends down and cleans the window badly and then lays her face in a wheel washer.,is done and the dog all runs to wet the dog when the man is first wipes the dog down the clean white car.,continues sharpening the tube and speaks to the camera.,sprays something on the car and sprays water on the car leaving it sparkly clean.\n19566,anetv_mio5dnRbo4w,15111,We see a man walk to a car with a pressure washer. The man,We see a man walk to a car with a pressure washer.,The man,gold,grabs the handlebars of the bike.,sprays the car with water.,continues cleaning snow from the car.,looks down and fixes himself in the left seat.\n19567,anetv_mio5dnRbo4w,15113,The man sprays the car with a solution. The man then,The man sprays the car with a solution.,The man then,gold,uses the scraper to wipe the window.,starts screwing his camera pan.,sprays a cleaner on the car.,wipes ice on the car.\n19568,anetv_mio5dnRbo4w,15117,The man rinses the car with the pressure washer. He,The man rinses the car with the pressure washer.,He,gold,haul the car directly onto the yard and rinse it in the car.,is using the hand hose to wash snow off the car.,spits some powder on her face and uses the hose to strike on the floor.,adds a cartridge and sprays another solution on the car.\n19569,anetv_mio5dnRbo4w,15115,The man uses a brush on the water hose to clean the car. We,The man uses a brush on the water hose to clean the car.,We,gold,continues talking to the camera and stopping to talk to the camera.,see the man add a brush and washes this rims.,see the fence inside.,see the rest of the tractor.\n19570,anetv_mio5dnRbo4w,60,\"This man is washing the black car outdoors in the warm weather. First, the man turns his water sprayer on and he\",This man is washing the black car outdoors in the warm weather.,\"First, the man turns his water sprayer on and he\",gold,starts spraying all of the dirt off of the car.,cleans the car over it.,uses them to get the tires off.,put the remainder in the tub.\n19571,anetv_mio5dnRbo4w,15118,He adds a cartridge and sprays another solution on the car. We,He adds a cartridge and sprays another solution on the car.,We,gold,see the car sitting still.,use the hands to open the turns.,\"cut the excess off down on clamps, and then shows how to shoot the shot stick in a paper container.\",then places the oil on a pan and rubs it across the tire.\n19572,anetv_mio5dnRbo4w,15112,The man sprays the car with water. The man,The man sprays the car with water.,The man,gold,puts the objects on and wipes the ski with the blue cloth.,walks to a loud nut on the wall.,sprays it and knocks it down the hood back starts lifting the cans from the car.,sprays the car with a solution.\n19573,anetv_mio5dnRbo4w,15116,We see the man add a brush and washes this rims. The man,We see the man add a brush and washes this rims.,The man,gold,shakes his hand first and gently rubs it and continues talking.,rinses the car with the pressure washer.,holds his left hand over the ending screen phone.,picks up a brush and tastes it.\n19574,anetv_mio5dnRbo4w,15114,The man then sprays a cleaner on the car. The man,The man then sprays a cleaner on the car.,The man,gold,continues shoveling the interior of the car and looking at the camera.,continues to spray out of the car with a tool.,continues cleaning and wipes the snow off the car and over it with a rag.,uses a brush on the water hose to clean the car.\n19575,anetv_69X7tP6p7E0,12150,\"As they play, an oval begins to shadow a boy who jumps in and out of the game as he pleases. The player\",\"As they play, an oval begins to shadow a boy who jumps in and out of the game as he pleases.\",The player,gold,stands and gives trophies to a smiling tv.,comes back and does a flip to avoid getting hit by the ball.,picks that up and plays around.,asks someone before taking out a mallet and talks to a camera about what's's playing.\n19576,anetv_69X7tP6p7E0,11492,A group of people are on a basketball court. They,A group of people are on a basketball court.,They,gold,are engaged in a game of beer pong.,are engaged in a game of dodgeball.,are hitting a ball back and forth.,are playing a game of soccer across a table.\n19577,anetv_69X7tP6p7E0,11493,They are engaged in a game of dodgeball. They,They are engaged in a game of dodgeball.,They,gold,begin playing a game of croquette.,throw the ball at each other.,bounce and drop as one of the players blasts him in the face.,throw the ball back and forth in competition.\n19578,anetv_4WrU5OdkvY0,17705,A man is seen stretching on the floor followed by people fencing with one another. People,A man is seen stretching on the floor followed by people fencing with one another.,People,gold,'s feet are shown followed by more stills.,perform tricks as they cheer.,are skating on the floor while people is speaking.,move back and fourth around an arena fencing with one another and the camera capturing their movements.\n19579,anetv_4WrU5OdkvY0,17706,People move back and fourth around an arena fencing with one another and the camera capturing their movements. They,People move back and fourth around an arena fencing with one another and the camera capturing their movements.,They,gold,are shown in their soccer position as well as people walking around wearing costumes and other dressed sticks.,bend down and dance around one another while the people pans around one another.,continue fighting back and fourth and end by walking away.,continue dancing with one another.\n19580,anetv_40Sf-iICgzw,1306,A small child is shown playing drums while a group of people behind him watch and smile. The boy continues to play the drums and a baby in the arms of a man behind him,A small child is shown playing drums while a group of people behind him watch and smile.,The boy continues to play the drums and a baby in the arms of a man behind him,gold,holding himself onto a microphone.,watch as they play using different types of dogs.,plays the drums once more and stops.,climbs off his lap.\n19581,anetv_0bbL30qENMg,3529,A boy rubs soap on his hands and then onto his face. The boy,A boy rubs soap on his hands and then onto his face.,The boy,gold,rinses the soap off from his face in the sink.,rinses the dog with his toothbrush.,mounts a body of water and wipes his leg on the towel.,takes out the bottle of the man.\n19582,anetv_0bbL30qENMg,3528,The boys laugh and joke together in the bathroom. A boy,The boys laugh and joke together in the bathroom.,A boy,gold,rubs soap on his hands and then onto his face.,belly dries are laying on the street.,shows an address with his new kids made a goal.,looks in front of him preparing to eat.\n19583,anetv_0bbL30qENMg,3527,A boy rinses his face with water in a bathroom sink. The boys,A boy rinses his face with water in a bathroom sink.,The boys,gold,laugh and joke together in the bathroom.,are standing in the sink.,trying to be by the pool.,crawl to the sink to wash their hands.\n19584,lsmdc3027_GET_HIM_TO_THE_GREEK-12324,3010,\"Now someone dances on the hood of a car. Later, portraits\",Now someone dances on the hood of a car.,\"Later, portraits\",gold,show someone and someone.,are peeled off by a passing truck.,line the gates and uniformed with someone in the woods.,gazes at the paved wooden facade.\n19585,lsmdc3027_GET_HIM_TO_THE_GREEK-12324,3011,\"Later, portraits show someone and someone. Someone\",\"Later, portraits show someone and someone.\",Someone,gold,sleeps on a couch.,staggers off.,stamps directly at his keyboard.,is sitting on someone's bed in the evening red bed.\n19586,lsmdc3027_GET_HIM_TO_THE_GREEK-12324,3008,She puts it to her ear. Someone,She puts it to her ear.,Someone,gold,slips a couple of coins through the box.,slams her phone down.,pulls her into the waiting room.,hangs his head and hugs her.\n19587,lsmdc3027_GET_HIM_TO_THE_GREEK-12324,3012,Someone and someone snuggling in bed. Someone,Someone and someone snuggling in bed.,Someone,gold,enters a toilet bathroom.,walks up through the diner and sees someone approaching the tatty black cattle.,\"sits purposefully ahead a bit, gazing down at his couch.\",watches the video drinking.\n19588,lsmdc3027_GET_HIM_TO_THE_GREEK-12324,3007,Her cell shows a photo of someone. She,Her cell shows a photo of someone.,She,gold,shoots someone in the arm as she takes aim.,\"looks to someone, who lies on a ragged tube.\",eats some of the door paper.,puts it to her ear.\n19589,anetv_tvzl11XL01k,6176,She folds the paper evenly to cover the entire box. Then she,She folds the paper evenly to cover the entire box.,Then she,gold,takes one of the wrapping paper and places it on it.,takes the sheet out of the cellophane.,uses scotch tape to seal the ends securely.,continues to remove sections and undoes the tape while tucking some present.\n19590,anetv_tvzl11XL01k,6174,There's a woman dressed in a beige sweater demonstrating how to wrap Christmas gifts. she,There's a woman dressed in a beige sweater demonstrating how to wrap Christmas gifts.,she,gold,mixes up nicely with her first serve.,pours ingredients into the stove.,\"is using a small paint brush, she begins to comb the sleeves of the blue and her long hair.\",begins with cutting the gift wrapping paper neatly to fit the size of the box.\n19591,anetv_tvzl11XL01k,6177,Then she uses scotch tape to seal the ends securely. She,Then she uses scotch tape to seal the ends securely.,She,gold,then shows to remove it from the car as it opens.,puts the camera back down.,takes some decorative ribbon and other decorative items to top the box to add a special touch to the presents.,rubs the wrinkles out in her face.\n19592,anetv_tvzl11XL01k,6175,She begins with cutting the gift wrapping paper neatly to fit the size of the box. She,She begins with cutting the gift wrapping paper neatly to fit the size of the box.,She,gold,finds it underneath her arm and then gift wrapping paper with the gift wrapping.,continues to wrap the wrap around it while she holds potatoes and continues trying to cut the wrapping.,unroll the cellophane paper.,folds the paper evenly to cover the entire box.\n19593,anetv_dXLhYjRSNcs,2488,A gymnast is seen climbing onto a set of uneven bars and performing a routine while many watch on the side. He,A gymnast is seen climbing onto a set of uneven bars and performing a routine while many watch on the side.,He,gold,performs various flips and tricks and ends by jumping down and putting his arms up.,performs the same routine with several more bars.,performs more gymnastic tricks on the uneven bars in slow motion as he jumps up and down on the rope.,turns around and jumps on the bar.\n19594,lsmdc0038_Psycho-67337,17645,\"Camera follows away from the body, travels slowly across the bathroom, past the toilet, out into the bedroom. As camera approaches the bed, we\",\"Camera follows away from the body, travels slowly across the bathroom, past the toilet, out into the bedroom.\",\"As camera approaches the bed, we\",gold,have seen someone as he looks towards the camera.,are deep in the grand sink.,watch a dinner light cross the room.,see the folded newspaper as someone placed it on the bedside table.\n19595,lsmdc0038_Psycho-67337,17646,\"As camera approaches the bed, we see the folded newspaper as someone placed it on the bedside table. The camera now moves away over to the window and looks up to the house, and as it gets there we\",\"As camera approaches the bed, we see the folded newspaper as someone placed it on the bedside table.\",\"The camera now moves away over to the window and looks up to the house, and as it gets there we\",gold,see the office doorway.,see the ring of the man's voice on his cell phone.,hear the door light up from the window.,\"hear, coming from within the house, the sound of someone's fearful, shocked voice.\"\n19596,anetv_a6Wwa7qvlrA,10260,\"Snow flying in the air lands on the face of the man, then the man continue snowboarding. After, the man\",\"Snow flying in the air lands on the face of the man, then the man continue snowboarding.\",\"After, the man\",gold,arrives to the ski station.,jumps off of the trampoline as high as the falls.,shoves the kite in the air.,stops and talk back to his camera.\n19597,anetv_eYgXvnnlPQA,982,We see a landscape in the desert. We,We see a landscape in the desert.,We,gold,see a bunch who swing out at the yard.,see a man talking.,see hundreds of arrows to the feet.,see the area of the surfboard and in the woods.\n19598,anetv_eYgXvnnlPQA,8476,A men in a blue shirt is shown climbing all the way to the top of a rock. The video,A men in a blue shirt is shown climbing all the way to the top of a rock.,The video,gold,ends with a final shot of the rock climber and his dog as well as the closing credits.,begins with the three men doing down a beam in a red tightrope.,leads into several men doing various stances and tricks.,shows as he man moves on it to speak to the camera.\n19599,anetv_eYgXvnnlPQA,984,We then see one man climbing a sheer cliff. We,We then see one man climbing a sheer cliff.,We,gold,see the water on the prometheus as he waves.,get into a dip bound and ride a boat.,see the roof as the people on the track.,see the climber from a distance.\n19600,anetv_eYgXvnnlPQA,8475,An introduction comes onto the screen for a video about rock climbing and a man introduces what will happen in the video. A men in a blue shirt,An introduction comes onto the screen for a video about rock climbing and a man introduces what will happen in the video.,A men in a blue shirt,gold,is shown climbing all the way to the top of a rock.,is wearing a blue shirt inside a confused and sometimes something by pulling out his bar and holding his balls.,enters a county manor house.,\"is talking to the camera, showing how to shoot a dart, times.\"\n19601,anetv_eYgXvnnlPQA,981,We see an opening title screen. We,We see an opening title screen.,We,gold,see a person jump on the jump rope.,see two pictures on a bike.,see a landscape in the desert.,see pictures of people on tubes.\n19602,anetv_eYgXvnnlPQA,985,We see the climber from a distance. We,We see the climber from a distance.,We,gold,see the lady performing as a girl.,see people doing tricks in gymnastic acrobatics moves.,see the divers fall underwater again.,see the man from a distance and as he reaches the top.\n19603,anetv_eYgXvnnlPQA,986,We see the man from a distance and as he reaches the top. We,We see the man from a distance and as he reaches the top.,We,gold,see the title through another people 'video screen.,see the man on the white board from above.,see the man talking and hug his dog.,see the tools on top of the other.\n19604,lsmdc3061_SNOW_FLOWER-30328,4225,\"The contemporary woman regards her sadly. From across the room, the two women of different eras\",The contemporary woman regards her sadly.,\"From across the room, the two women of different eras\",gold,hold each other's gaze.,form a warily form adorned with deadly arrows.,dismount on a stage and walk back and forth.,humps her as she steps away.\n19605,lsmdc3061_SNOW_FLOWER-30328,4218,\"Someone's shoulders heave slowly beneath her ornate gown. Moving hesitantly, she\",Someone's shoulders heave slowly beneath her ornate gown.,\"Moving hesitantly, she\",gold,ventures a look at someone through her glistening eyes.,halts a crude landing then climbs into his seat.,reaches around someone and grabs hold of someone's cheeky sword and then she turns her back to him.,finds a silver - lit object dangling from a device.\n19606,lsmdc3061_SNOW_FLOWER-30328,4221,\"The bride, her mother, and a few other guests take notice as she shuffles past the table. Someone\",\"The bride, her mother, and a few other guests take notice as she shuffles past the table.\",Someone,gold,\"climbs to her side, nearly knocked by the last teenager, followed by someone swaying on stool.\",cuts a teacup with the lady panama hat.,watches the elevator intently as he walks through the hallway to the cramped room.,\"pauses, turning her face slightly in someone's direction.\"\n19607,lsmdc3061_SNOW_FLOWER-30328,4199,\"Now in a dark space, she opens the fan in a shaft of gentle light and reads. Someone\",\"Now in a dark space, she opens the fan in a shaft of gentle light and reads.\",Someone,gold,\"steps into view, her head jutting forward and her arms at her sides.\",enters the reading room.,stares at the picture.,looks up as someone notices a blond.\n19608,lsmdc3061_SNOW_FLOWER-30328,4201,\"Clutching the fan in one hand, she raises it to her waist and rests it on her other palm. She\",\"Clutching the fan in one hand, she raises it to her waist and rests it on her other palm.\",She,gold,\"her gaze, she lifts a hand to her forehead and caresses her smooth cheek as she walks behind her.\",\"kisses her forehead as she moves towards the front door, the door to the whole main apartment opens.\",\"stares off with a dazed, stricken expression.\",studies what sized animals that she uses.\n19609,lsmdc3061_SNOW_FLOWER-30328,4205,\"The fan drops from her grasp. Now in her apartment, someone\",The fan drops from her grasp.,\"Now in her apartment, someone\",gold,presses a button on the tiled floor.,continues reading the manuscript.,is around the bed then unbuttons his hair.,plays with someone as the crowd claps.\n19610,lsmdc3061_SNOW_FLOWER-30328,4220,\"Someone averts her wounded gaze and stands. The bride, her mother, and a few other guests\",Someone averts her wounded gaze and stands.,\"The bride, her mother, and a few other guests\",gold,take notice as she shuffles past the table.,\", as someone exits the room.\",\"join her first, made their melancholy explore mrs. rum and then find the beautiful graham pizza.\",cling to the side steps and sit by the party.\n19611,lsmdc3061_SNOW_FLOWER-30328,4226,\"From across the room, the two women of different eras hold each other's gaze. Now, traffic\",\"From across the room, the two women of different eras hold each other's gaze.\",\"Now, traffic\",gold,rolls to a stop above the ocean.,swerves three squad cars out of the parking lot and surrounds a park.,proceeds down a narrow city street.,passes on a couple of foot trees.\n19612,lsmdc3061_SNOW_FLOWER-30328,4194,Someone takes it and studies it with a knitted brow. Someone,Someone takes it and studies it with a knitted brow.,Someone,gold,gives a troubled frown as she peers at it over her lady's shoulder.,accompany him as the handcuff key rests on his shoulder.,\"takes the picture, frowns, then smiles.\",\"removes documents from someone's wallet, then leans against the backseat with both hands.\"\n19613,lsmdc3061_SNOW_FLOWER-30328,4217,A servant arrives with a tray of refreshments and serves the newcomers. Someone's shoulders,A servant arrives with a tray of refreshments and serves the newcomers.,Someone's shoulders,gold,\"relax on a step as he takes off her sunglasses, eyes hurt.\",heave slowly beneath her ornate gown.,sway as a nearby tram joins in behind them.,heave as the sorcerer crawls angrily from the food seat of the table.\n19614,lsmdc3061_SNOW_FLOWER-30328,4189,\"She raises her club and beats the laundry stoically. Now at the someone house, Yang Gong\",She raises her club and beats the laundry stoically.,\"Now at the someone house, Yang Gong\",gold,chats together with her head in a pillow.,\"the downpour, someone sprints around the bridge with a wheelchair.\",helps someone downstairs to a foyer where the woman from someone's village waits.,and gort appear in the crowded studio grounds.\n19615,lsmdc3061_SNOW_FLOWER-30328,4215,Someone watches her estranged laotong with shining eyes. Someone,Someone watches her estranged laotong with shining eyes.,Someone,gold,slides a harmonica into her mother's ear.,closes his own eyes.,\"keeps her gaze fixed slightly downward, avoiding everyone else's stare.\",\"gazes skyward, and places his mouth around her waist.\"\n19616,lsmdc3061_SNOW_FLOWER-30328,4206,\"Now in her apartment, someone continues reading the manuscript. She\",\"Now in her apartment, someone continues reading the manuscript.\",She,gold,\"strides on the double doors, swinging back and forth tearfully.\",sets one page aside and peruses the next with glistening eyes.,\"gazes up at her dress, then sits down on her table.\",curtsies and turns to someone.\n19617,lsmdc3061_SNOW_FLOWER-30328,4203,\"Silhouetted against a window, she swallows hard, then slowly doubles over and grasps a chair at the head of the table. She\",\"Silhouetted against a window, she swallows hard, then slowly doubles over and grasps a chair at the head of the table.\",She,gold,lowers her bloody hand to her chin as she steps onto the table.,frantically strokes its chest.,\"sinks down, turning her back to us as she rests her head against her hand.\",\"studies its outline, then checks the distance.\"\n19618,lsmdc3061_SNOW_FLOWER-30328,4219,\"Her old friend looks down, Responding to her gregarious Jintian sisters with faint smiles and nods. Someone\",\"Her old friend looks down, Responding to her gregarious Jintian sisters with faint smiles and nods.\",Someone,gold,walks up a walkway to the house two paces to a case.,\"looks at the water, then at the girls.\",averts her wounded gaze and stands.,\"craning their sleep, someone tosses someone to the bed, her hands on her breast.\"\n19619,lsmdc3061_SNOW_FLOWER-30328,4197,\"Her features set in a dazed expression, someone turns away. Someone reaches for her, but the noblewoman\",\"Her features set in a dazed expression, someone turns away.\",\"Someone reaches for her, but the noblewoman\",gold,\"turns away, then pinches the back of her head and sighs.\",approaches and drags her toward someone.,wrenches her arm out of her grasp and climbs the stairs alone.,does n't go back.\n19620,lsmdc3061_SNOW_FLOWER-30328,4196,\"Someone turns the fan in her hands, her chest heaving. She\",\"Someone turns the fan in her hands, her chest heaving.\",She,gold,peers miserably up at it.,glares at someone and gives their bewildered shakes of the bouquet.,sweeps her arms and goes around someone as she lies on his back on a couch.,looks up at someone with glistening eyes.\n19621,lsmdc3061_SNOW_FLOWER-30328,4200,\"She pauses by a window and gazed outward. Clutching the fan in one hand, she\",She pauses by a window and gazed outward.,\"Clutching the fan in one hand, she\",gold,raises it to her waist and rests it on her other palm.,draws her wand around her own.,lowers his head and adjusts the mouthpiece.,rises to her feet.\n19622,lsmdc3061_SNOW_FLOWER-30328,4188,She takes a deep breath as a breeze blows wisps of hair across her face. She,She takes a deep breath as a breeze blows wisps of hair across her face.,She,gold,chin presses against a gulp as she backs away and marches toward the band.,gazes down at the dark smoke ringing out from a pile on the pitch floor.,raises her club and beats the laundry stoically.,looked over her as she looks over at the grey vegetable.\n19623,lsmdc3061_SNOW_FLOWER-30328,4202,\"She stares off with a dazed, stricken expression. Silhouetted against a window, she\",\"She stares off with a dazed, stricken expression.\",\"Silhouetted against a window, she\",gold,covered zebra waving ears.,\"swallows hard, then slowly doubles over and grasps a chair at the head of the table.\",looks at the nickel and glances at it.,hangs up and sticking her head in.\n19624,lsmdc3061_SNOW_FLOWER-30328,4210,\"Someone sits motionless as gentle firelight glows on her listless face. In a gathering room, several women\",Someone sits motionless as gentle firelight glows on her listless face.,\"In a gathering room, several women\",gold,carry cases with slim swollen green wakes.,sit around a table with a bright red table cloth.,are sitting at tables wearing a fascinated club.,are playing breakfast and food.\n19625,lsmdc3061_SNOW_FLOWER-30328,4190,\"Now at the someone house, Yang Gong helps someone downstairs to a foyer where the woman from someone's village waits. Someone\",\"Now at the someone house, Yang Gong helps someone downstairs to a foyer where the woman from someone's village waits.\",Someone,gold,steps into the compartment.,reluctantly reaches into the folds of her clothing.,turns away from the taxi with a thoughtful look.,forces a smile and stares down at the rapt animal.\n19626,lsmdc3061_SNOW_FLOWER-30328,4224,\"Across the room, someone sits alone. She\",\"Across the room, someone sits alone.\",She,gold,raises her head slowly and looks at someone.,hands him a bottle of coke.,\"raises her hands, walks away.\",looks up at him.\n19627,lsmdc3061_SNOW_FLOWER-30328,4204,\"She sinks down, turning her back to us as she rests her head against her hand. The fan\",\"She sinks down, turning her back to us as she rests her head against her hand.\",The fan,gold,drops and then beams as it brushes its teeth.,drops from her grasp.,is under her eyes and parks as someone feels her lifeless face.,falls on nodding as she touches in to someone's lips.\n19628,lsmdc3061_SNOW_FLOWER-30328,4211,\"In a gathering room, several women sit around a table with a bright red table cloth. Words\",\"In a gathering room, several women sit around a table with a bright red table cloth.\",Words,gold,buy soul taps and creek a christmas table.,\"appear, six months later.\",weighs fastened a curtain knitting.,relax and dive their hands.\n19629,lsmdc3061_SNOW_FLOWER-30328,4193,She holds the folded fan out to the noblewoman. Someone,She holds the folded fan out to the noblewoman.,Someone,gold,holds the joint to her mouth.,sits prone on the floor.,takes it and studies it with a knitted brow.,ruffles his hair and pushes his hair out.\n19630,lsmdc3061_SNOW_FLOWER-30328,4216,\"Her estranged laotong stares at the floor, her jaw set tight. A servant\",\"Her estranged laotong stares at the floor, her jaw set tight.\",A servant,gold,grinds the fists while pouring rain from a cigarette.,lobs a basilisk and meets her with a different glare.,arrives with a tray of refreshments and serves the newcomers.,opens someone's door.\n19631,lsmdc3061_SNOW_FLOWER-30328,4207,She sets one page aside and peruses the next with glistening eyes. Someone,She sets one page aside and peruses the next with glistening eyes.,Someone,gold,offers the bag to her.,lowers her lifeless gaze.,hangs an apple eye on two and years.,sits slouched at the table.\n19632,lsmdc3061_SNOW_FLOWER-30328,4213,The gathered women sew and enjoy refreshments as they sing. The noblewoman,The gathered women sew and enjoy refreshments as they sing.,The noblewoman,gold,sing as she continues her narration.,melts more in the heart of the ocean.,politely returns the gesture and makes an effort to sing along.,stands up on stage and focuses on the waterfall on another one.\n19633,lsmdc3061_SNOW_FLOWER-30328,4212,\"Words appear, Six months later. The gathered women\",\"Words appear, Six months later.\",The gathered women,gold,take their coconut spiral.,gather for so busy greeted crowd.,sew and enjoy refreshments as they sing.,contestants have their business mutants.\n19634,lsmdc3061_SNOW_FLOWER-30328,4191,Someone reluctantly reaches into the folds of her clothing. My sister,Someone reluctantly reaches into the folds of her clothing.,My sister,gold,turns until she sees nothing and hers is ready to go.,gathers and her jaw goes slack.,shares him with someone.,asked me to return this to you.\n19635,lsmdc3061_SNOW_FLOWER-30328,4192,My sister asked me to return this to you. She,My sister asked me to return this to you.,She,gold,holds the folded fan out to the noblewoman.,stops and talks to the camera in a lady broadcast.,is in the swimming.,studies the pups sitting in front.\n19636,lsmdc3061_SNOW_FLOWER-30328,4227,\"Now, traffic proceeds down a narrow city street. At the gallery, someone's aunt\",\"Now, traffic proceeds down a narrow city street.\",\"At the gallery, someone's aunt\",gold,\"wears the hint of a statue, bicycle homes, trailer disks, displayed panels over a small carnival above their neighborhood.\",\"is having a wrinkled time, reading.\",sits on top of a bus.,walks someone through the exhibit on chinese foot binding.\n19637,lsmdc3061_SNOW_FLOWER-30328,4209,She bundles up the fans and carries them away. Someone,She bundles up the fans and carries them away.,Someone,gold,sits motionless as gentle firelight glows on her listless face.,\"runs through the corridors of someone's apartment as his friend with grim balls on the shelf, carrying a stuffed duck.\",\"files from the dressing room, bringing it up.\",dozes in her home.\n19638,lsmdc3087_WE_BOUGHT_A_ZOO-41650,18995,Someone strides past and takes a screwdriver to a water fountain. It,Someone strides past and takes a screwdriver to a water fountain.,It,gold,wheels around and gets into the hood.,delivers a description to the reporter.,squirts him in the face.,turns across the room.\n19639,lsmdc3087_WE_BOUGHT_A_ZOO-41650,18998,\"Someone gazes longingly at someone. Now at the park entrance, someone, someone, someone, and someone\",Someone gazes longingly at someone.,\"Now at the park entrance, someone, someone, someone, and someone\",gold,lie unconscious in the dust by the hearth.,lift a sign to an entryway frame.,make a cordial stand in the lobby.,look over at a craggy - faced someone.\n19640,lsmdc3087_WE_BOUGHT_A_ZOO-41650,19000,\"Bearing someone's portrait of Spar as its central logo, it reads Rosemoor Animal Park Adventure. Someone and someone\",\"Bearing someone's portrait of Spar as its central logo, it reads Rosemoor Animal Park Adventure.\",Someone and someone,gold,appear down in his basement basement.,arrive at someone's cottage.,hold it in place while someone attaches it.,run the beach with someone in a fierce embrace.\n19641,lsmdc3087_WE_BOUGHT_A_ZOO-41650,18997,Someone uses a leaf blower. Someone,Someone uses a leaf blower.,Someone,gold,heaves an ax out of a man's beak.,gazes longingly at someone.,'following.,surveys the area when she has reached a lifeboat that is still going full onto the boat's edge.\n19642,lsmdc3087_WE_BOUGHT_A_ZOO-41650,18999,\"Now at the park entrance, someone, someone, someone, and someone lift a sign to an entryway frame. Bearing someone's portrait of Spar as its central logo, it\",\"Now at the park entrance, someone, someone, someone, and someone lift a sign to an entryway frame.\",\"Bearing someone's portrait of Spar as its central logo, it\",gold,pulls up to reveal in his circus studio.,climbs from a coastal freeway.,begins to apply on a windblown curved face.,reads rosemoor animal park adventure.\n19643,lsmdc3087_WE_BOUGHT_A_ZOO-41650,18994,\"Outside the Jaguar, someone squeegees a window. Someone\",\"Outside the Jaguar, someone squeegees a window.\",Someone,gold,opens the wardrobe door.,jumps back on his knees and starts to run.,\"crosses the room, but the crowd are in turns.\",strides past and takes a screwdriver to a water fountain.\n19644,anetv_rbnlUn4UNSk,918,The exchange their other flippers. The men,The exchange their other flippers.,The men,gold,move up the room looking towards someone.,change their air equipment.,acknowledge with their arms around each other.,rush into the room yells his son.\n19645,lsmdc3018_CINDERELLA_MAN-8308,5870,The microphone lowers into the center of the ring. The announcer,The microphone lowers into the center of the ring.,The announcer,gold,is returned to his now anonymous business.,attaches a fake stone.,approaches someone holstered a red shirt.,removes his hat and lifts his face toward the mic.\n19646,lsmdc3018_CINDERELLA_MAN-8308,5869,As the fighters stay in their corners. The microphone,As the fighters stay in their corners.,The microphone,gold,is played on his guitar player.,stand tall as the masked choppers move toward the beach.,descends to a young and beautiful woman.,lowers into the center of the ring.\n19647,lsmdc3018_CINDERELLA_MAN-8308,5868,Women pray over their rosaries. As the fighters,Women pray over their rosaries.,As the fighters,gold,stay in their corners.,\"move on, someone looks grave.\",regards his new veterans.,leave someone and the students smash across the table and candlesticks.\n19648,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6827,17892,Someone goes to a gap in the tent. She,Someone goes to a gap in the tent.,She,gold,runs up to the direction of the nurses.,kisses him on the cheek.,bursts in and throws her arms around his neck.,meets his eyes firmly.\n19649,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6827,17890,\"In a wooden arena on a craggy hillside, people take bets from their fellow students. The Triwizard competitors\",\"In a wooden arena on a craggy hillside, people take bets from their fellow students.\",The Triwizard competitors,gold,pace restlessly in their tent as someone announces the contest.,pan and take a book towards a wooden tower.,are led by salt a grand canyon.,look around the apprehensive someone.\n19650,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6827,17891,The Triwizard competitors pace restlessly in their tent as someone announces the contest. Someone,The Triwizard competitors pace restlessly in their tent as someone announces the contest.,Someone,gold,\"takes the cake, feeding him and climbs out and watches for a moment.\",removes a naked woman wrapped in the chest.,goes to a gap in the tent.,tosses a third card.\n19651,anetv_6SFW4g4UVKI,2726,A man's face is moving back and forth. The man,A man's face is moving back and forth.,The man,gold,is shining a shoe.,cleans the horse and dips a paint brush into the brush and brushes the other's clothing as well.,continues to demonstrate the objects and ensuring that he clean the tree using the chainsaw.,helps the iron up then undoes the handles on iron sides.\n19652,lsmdc0009_Forrest_Gump-50101,6482,Young someone is still standing in the aisle on the bus. Someone,Young someone is still standing in the aisle on the bus.,Someone,gold,\"looks back at someone, a young girl about someone's age.\",\", strung through a carriage, is playing a pair of white fans and many.\",kisses him down the truck.,\"looks over and looks at people, who are talking to each other about the whole dance.\"\n19653,lsmdc0009_Forrest_Gump-50101,6471,The bus pulls up as someone prepares someone for his first day of school. The bus driver,The bus pulls up as someone prepares someone for his first day of school.,The bus driver,gold,\"gazes at the mission, then gets out of the car and strides toward a lift.\",drops him over a fence.,opens the door and looks down.,looks in and see someone jump out of the car.\n19654,lsmdc0009_Forrest_Gump-50101,6473,Someone walks to the steps of the bus and looks at the bus driver. She,Someone walks to the steps of the bus and looks at the bus driver.,She,gold,is smoking a cigarette.,points a hand towards someone.,is crying as he makes a call.,sits climb into a cab where her son sits outside the door.\n19655,lsmdc0009_Forrest_Gump-50101,6466,\"Someone walks away, pulling someone with her. Someone\",\"Someone walks away, pulling someone with her.\",Someone,gold,\"lies over the low - burning elder in the basket, looking up towards him.\",gets up and rests in her lap.,stops and takes one last look.,sits in the green soil and places the lights on the tree trunk.\n19656,lsmdc0009_Forrest_Gump-50101,6470,People wait for the school bus. The bus,People wait for the school bus.,The bus,gold,pulls up as someone prepares someone for his first day of school.,tracks slowly toward the cruiser and speed along a deserted road.,rides a wave of her misty searchlights.,speeds off as it raises onto the coast.\n19657,lsmdc0009_Forrest_Gump-50101,6477,Someone waves to someone as the bus drives away. Someone,Someone waves to someone as the bus drives away.,Someone,gold,turns to people as he walks outside.,gets back in after someone drives.,begins to walk down the aisle.,backs up as the bus pulls towards the gates.\n19658,lsmdc0009_Forrest_Gump-50101,6455,A cab driver closes the trunk of the car as two women walk toward the house. A milkman,A cab driver closes the trunk of the car as two women walk toward the house.,A milkman,gold,smacks the front door and turns a corner.,pulls out of his jersey.,opens the door then grabs it and looks it up.,steps down from the porch.\n19659,lsmdc0009_Forrest_Gump-50101,6465,A woman in the audience screaming and applauding. Someone,A woman in the audience screaming and applauding.,Someone,gold,passes in front of mount doom.,\"walks away, pulling someone with her.\",and spectators watch the performance as she twirled across the floor.,drops two batons in celebration.\n19660,lsmdc0009_Forrest_Gump-50101,6454,Someone lies down on his bed and looks up. A cab driver,Someone lies down on his bed and looks up.,A cab driver,gold,comes to a stop and looks at her.,goes outside and his friend runs up to him.,rolls her into the street.,closes the trunk of the car as two women walk toward the house.\n19661,lsmdc0009_Forrest_Gump-50101,6472,The bus driver opens the door and looks down. Someone,The bus driver opens the door and looks down.,Someone,gold,climbs into the driver's seat.,takes someone's bag from her car and marches off.,walks to someone's side and gets up.,walks to the steps of the bus and looks at the bus driver.\n19662,lsmdc0009_Forrest_Gump-50101,6458,She hears singing coming from another room and walks over to a closed door. Someone,She hears singing coming from another room and walks over to a closed door.,Someone,gold,gives sure nothing to breathe.,loosens her ankles and runs into the bathroom.,winds back up to his position.,\"opens the door, revealing a young man with long sideburns as he plays the guitar and sings.\"\n19663,lsmdc0009_Forrest_Gump-50101,6456,Someone looks into a sitting room and informs the boarders about dinner. Someone,Someone looks into a sitting room and informs the boarders about dinner.,Someone,gold,grabs someone and rubs it over his head.,looks in his bruised eyes as someone continues to talk.,moves his attention to the shadow.,looks into someone's room.\n19664,lsmdc0009_Forrest_Gump-50101,6462,\"Someone stands left, and looks himself in a mirror. Someone\",\"Someone stands left, and looks himself in a mirror.\",Someone,gold,\"walks his briefcase beside him, walks back to the door and peeps out.\",dances as he watches himself in the mirror.,opens the window and sees someone with a machine.,has trouble using his coat.\n19665,lsmdc0009_Forrest_Gump-50101,6476,Someone steps up onto the bus. Someone,Someone steps up onto the bus.,Someone,gold,comes hurrying into the passengers' door.,waves to someone as the bus drives away.,looked behind guest at the ship.,takes a bite of her sandwich and staggers out of the hall.\n19666,lsmdc0009_Forrest_Gump-50101,6474,She is smoking a cigarette. The bus driver,She is smoking a cigarette.,The bus driver,gold,has his phone in her crotch.,knits and blows cigarette himself out of fire.,looks up from her hotel tv.,smiles as someone steps up into the bus.\n19667,lsmdc0009_Forrest_Gump-50101,6460,The young man is someone. Someone,The young man is someone.,Someone,gold,stands bearing his letter.,\"flips the book between her lips, then puts it in her mouth.\",rolls up his face and squints.,leaves and closes the door.\n19668,lsmdc0009_Forrest_Gump-50101,6457,Someone looks into someone's room. She,Someone looks into someone's room.,She,gold,gives someone a bunch more cards.,hears singing coming from another room and walks over to a closed door.,moves from her tentatively back over the tap.,shine against her clasped arms.\n19669,lsmdc0009_Forrest_Gump-50101,6479,Someone looks to the other side where a boy sits alone on a larger seat. They,Someone looks to the other side where a boy sits alone on a larger seat.,They,gold,join him while the rakes lays in their hot pockets.,hit the main rock rink.,opens past his french windows.,boy glares up at someone.\n19670,lsmdc0009_Forrest_Gump-50101,6475,The bus driver smiles as someone steps up into the bus. Someone,The bus driver smiles as someone steps up into the bus.,Someone,gold,grabs a balcony then catches up with her.,looks up in the sky past people.,steps up onto the bus.,looks up as someone pumps his fist together.\n19671,lsmdc0009_Forrest_Gump-50101,6459,\"Someone opens the door, revealing a young man with long sideburns as he plays the guitar and sings. Someone\",\"Someone opens the door, revealing a young man with long sideburns as he plays the guitar and sings.\",Someone,gold,waves her hands in her lap.,sits on a piano having been flipped round.,pulls someone up for a hug.,holds onto a broom and dances oddly.\n19672,lsmdc0009_Forrest_Gump-50101,6480,They boy glares up at someone. Someone,They boy glares up at someone.,Someone,gold,kneel on the whoop shop mate with coffee beans.,\"shakes his head, serves himself from the ball and moves down the hall.\",continues talking as he sits on the bus bench.,\"sits on the table, peering into their binoculars.\"\n19673,lsmdc0009_Forrest_Gump-50101,6481,Someone continues talking as he sits on the bus bench. Young someone,Someone continues talking as he sits on the bus bench.,Young someone,gold,spies someone as he stares intently at a dark arched beard.,sets down beside a van in a rice escalade.,sits expressionlessly under the stalls of a hotel's window.,is still standing in the aisle on the bus.\n19674,lsmdc0009_Forrest_Gump-50101,6467,Someone stops and takes one last look. Someone,Someone stops and takes one last look.,Someone,gold,walks into the lacing's room.,continues to perform over the television.,passes the youth in the middle of the police disapproval.,\"takes out his slip, but hot in the main cockpit.\"\n19675,lsmdc0009_Forrest_Gump-50101,6483,\"Someone looks back at someone, a young girl about someone's age. Someone\",\"Someone looks back at someone, a young girl about someone's age.\",Someone,gold,sits down next to someone.,\"at the end of the hall, someone glances up at the boy's face.\",presses a needle into his neck.,stands up at the coin register with various food and bare sketches.\n19676,lsmdc0009_Forrest_Gump-50101,6478,Someone begins to walk down the aisle. Two young boys,Someone begins to walk down the aisle.,Two young boys,gold,shuffle down a few pieces.,look up from the seat.,have gathered in a circle in her cluttered yard.,mingle on the coffee table.\n19677,lsmdc0009_Forrest_Gump-50101,6468,Someone continues to perform over the television. Someone,Someone continues to perform over the television.,Someone,gold,is siting down muttering.,runs into the room where someone lies awake.,is still sitting on the bus bench.,\"faces the principal, who goes indoors and gives someone his coat.\"\n19678,lsmdc3059_SALT-29100,7394,Someone defiantly lifts her chin. Someone's lips,Someone defiantly lifts her chin.,Someone's lips,gold,tighten as they gaze down at the crowded stage.,form a slight grin.,spread into a smile.,spread into a brief smile.\n19679,lsmdc3059_SALT-29100,7393,\"On the other side, someone stares unapologetically. He\",\"On the other side, someone stares unapologetically.\",He,gold,twists his legs and falls marley somersaults were raised into the air.,leans his arms against the glass and looks into her eyes.,grabs someone's crotch.,bends to pick up someone's hair and flutters it in his sleeves.\n19680,lsmdc0043_Thelma_and_Luise-68304,4954,She glides along as the cop car passes on the other side without seeing them. Someone,She glides along as the cop car passes on the other side without seeing them.,Someone,gold,\"walks over, smoking a cigarette, then strolls beside someone who picks up a lighter and snowy in his neck.\",slams down the barrel ramp.,gets away from their table and the boys get out of the car.,glides right back onto the road as if nothing unusual has happened at all.\n19681,lsmdc0043_Thelma_and_Luise-68304,4953,Someone looks down the road and sees a highway patrol car coming down the road towards them. She,Someone looks down the road and sees a highway patrol car coming down the road towards them.,She,gold,uniformed men stand by a gate watching him in a wooden courtyard.,runs across a wooded road far over a bridge.,brakes to stop them from taking off.,glides along as the cop car passes on the other side without seeing them.\n19682,lsmdc0043_Thelma_and_Luise-68304,4960,\"Someone stratton, an fbi man in his early forties, is looking at the ident - a - kit drawings of people. People\",\"Someone stratton, an fbi man in his early forties, is looking at the ident - a - kit drawings of people.\",People,gold,\"are gesturing frantically, but by jewish athletes, spectators, the american, helping someone.\",pull into the motel parking lot.,all firing.,pictures on a book as he sits up and stretches out his arms.\n19683,lsmdc0043_Thelma_and_Luise-68304,4961,People pull into the motel parking lot. Someone,People pull into the motel parking lot.,Someone,gold,is lined flaming against the window.,rolls up alongside cars as the air is underway.,looks at someone in the back seat and takes the keys out of the ignition.,rips off her hair and snaps it in half.\n19684,lsmdc0043_Thelma_and_Luise-68304,4962,Someone looks at someone in the back seat and takes the keys out of the ignition. Someone,Someone looks at someone in the back seat and takes the keys out of the ignition.,Someone,gold,is twirler outside by someone.,gets out of the car and goes inside.,pins it on one of the windows at which he reads.,tucks the locator board into the passenger seat and studies her reflection.\n19685,lsmdc0043_Thelma_and_Luise-68304,4952,\"Someone is looking down the road, way off in the distance. Someone\",\"Someone is looking down the road, way off in the distance.\",Someone,gold,looks down the road and sees a highway patrol car coming down the road towards them.,is taking part of the rainy to the street.,\"is behind walking, dragging a shovel in the murky sound of the clothing.\",\", she looks out the window.\"\n19686,lsmdc0043_Thelma_and_Luise-68304,4955,Someone glides right back onto the road as if nothing unusual has happened at all. They,Someone glides right back onto the road as if nothing unusual has happened at all.,They,gold,hurry towards the warehouse window.,realize they have not been spotted.,watch his first family.,fill the wreckage with an explosion that rises out of the water.\n19687,lsmdc0043_Thelma_and_Luise-68304,4956,They realize they have not been spotted. People,They realize they have not been spotted.,People,gold,\"'s just listening, someone, as he is staggered.\",look at each other.,\"come billowing, walking expectantly.\",are being tortured around him drenching the face of the wizard.\n19688,lsmdc0043_Thelma_and_Luise-68304,4959,Someone is sitting on a chair looking dazed. Other law enforcement types,Someone is sitting on a chair looking dazed.,Other law enforcement types,gold,\"form about wait these hours, line.\",non - chalks as someone high punches the man.,roam around the house.,paintball on the mat.\n19689,lsmdc0043_Thelma_and_Luise-68304,4963,Someone gets out of the car and goes inside. An older woman behind the counter,Someone gets out of the car and goes inside.,An older woman behind the counter,gold,\"pulls the three - step knife from the passenger compartment, closely wriggles her back from someone's grasp.\",is looking at a computer screen.,runs a lawn through the following into the house.,shows her bags that we can see some change in store.\n19690,lsmdc0043_Thelma_and_Luise-68304,4964,An older woman behind the counter is looking at a computer screen. Someone,An older woman behind the counter is looking at a computer screen.,Someone,gold,section the hedge brings.,ventures out of the hotel as she takes out it.,is startled and turns around quickly.,woman is shown sitting down in them and begins talking about it.\n19691,anetv_IIKwRyf4Oyg,15294,A man is then seen singing into a microphone while still playing the guitar. The man,A man is then seen singing into a microphone while still playing the guitar.,The man,gold,moves his fingers up and down the guitar while still singing into the microphone.,then roller the guitar while the man continues to play the drums.,plays the harmonica one bit and continues talking.,continues to play with the camera while gesturing softly while the camera pans behind him.\n19692,anetv_IIKwRyf4Oyg,15293,A close up of a guitar is seen with a hand plucking the strings. A man,A close up of a guitar is seen with a hand plucking the strings.,A man,gold,plays the violin against the camera while the music plays.,continues following and playing the guitar.,walks in and begins playing the harmonica while speaking to the camera.,is then seen singing into a microphone while still playing the guitar.\n19693,lsmdc1006_Slumdog_Millionaire-73693,3886,He hands him a Coke. Someone,He hands him a Coke.,Someone,gold,\"puts his eight belt down, and drains a drink.\",wakes and is also given a coke.,\"sets on a tray and gazes through two balloons between glass panels, then bites outward.\",stares after him as people walk alongside.\n19694,lsmdc1006_Slumdog_Millionaire-73693,3907,He dashes to the tap. Someone,He dashes to the tap.,Someone,gold,douses his groin in cold water.,looks in the direction of the manor glasses.,notices someone at his father.,gets off his electric and secures the padlock.\n19695,lsmdc1006_Slumdog_Millionaire-73693,3885,\"On the rubbish tip, someone picks through scraps with a stick. She\",\"On the rubbish tip, someone picks through scraps with a stick.\",She,gold,makes the great - duty boss out of the way.,looks up when a minibus arrives.,backflips to him and goes out.,glares at the other dancers.\n19696,lsmdc1006_Slumdog_Millionaire-73693,3893,Someone watches as the children are fed a hot meal. Someone,Someone watches as the children are fed a hot meal.,Someone,gold,and someone themselves slice the box around blissfully.,catches someone staring at the new arrivals.,\"seems like a stirring, dead, gone for a while before racing away!\",covers his ears.\n19697,lsmdc1006_Slumdog_Millionaire-73693,3884,\"People scavenge on mountains of rotting rubbish as lauries offload more refuse sacks. On the rubbish tip, someone\",People scavenge on mountains of rotting rubbish as lauries offload more refuse sacks.,\"On the rubbish tip, someone\",gold,runs toward a circular pine trap field.,faces his younger thug.,picks through scraps with a stick.,\"clambers up from eight weeks to his braces, scanning the firewood.\"\n19698,lsmdc1006_Slumdog_Millionaire-73693,3917,Someone is rooted to the spot. Someone,Someone is rooted to the spot.,Someone,gold,glances back at the security camera.,draws closer to him.,\"looks up, crouched and stretched.\",looks down at the scrolls.\n19699,lsmdc1006_Slumdog_Millionaire-73693,3895,\"Evening, someone has lined up the new children before him. Someone\",\"Evening, someone has lined up the new children before him.\",Someone,gold,rides in and tackles her.,is still prisoner hidden on a veranda across the road.,passes someone's door to them.,closes his eyes and listens to someone.\n19700,lsmdc1006_Slumdog_Millionaire-73693,3909,Someone holds up his hand. Someone,Someone holds up his hand.,Someone,gold,hurries backward with a cluttered oar.,shakes a bottle into a cloth then quickly smothers someone's face with the cloth.,taps his sweaty face with the life shotgun.,holds down the rag as he pulls it closely onto the canvas.\n19701,lsmdc1006_Slumdog_Millionaire-73693,3913,He opens someone's eyelids and pours in the liquid. Someone,He opens someone's eyelids and pours in the liquid.,Someone,gold,can watch no more and kneels to vomit.,'s mind smears it on someone's sorrowful face.,brushes cleaner into his mouth and he wraps his arms around her.,lowers himself against a fireplace as someone's grandmother watches his children.\n19702,lsmdc1006_Slumdog_Millionaire-73693,3900,\"Next day, someone sits with someone in the bus, intently watching a group of kids on a Mumbai street. Someone\",\"Next day, someone sits with someone in the bus, intently watching a group of kids on a Mumbai street.\",Someone,gold,approaches the gang of children.,gazes after him with a open expression.,climbs into the borrowed office and checks the bar.,watches as the taxi drives down the steps.\n19703,lsmdc1006_Slumdog_Millionaire-73693,3914,The bearded man binds someone's eyes with the bandage and pats his head. Someone,The bearded man binds someone's eyes with the bandage and pats his head.,Someone,gold,looks at someone and nods.,\"pulls a muzzle - out date from her brunette kit, guzzling cash to a librarian.\",\"falls to the ground, but his expression continues to fuse.\",pauses and glances at someone.\n19704,lsmdc1006_Slumdog_Millionaire-73693,3890,The bus is full of scruffy street kids gazing out of the windows. The bus,The bus is full of scruffy street kids gazing out of the windows.,The bus,gold,arrives at madison suburban hollywood diner.,arrives at a large dilapidated residence where numerous children of all ages run around playing in the yard.,stops behind the gang cabin.,slows to a stop where the splashing gains control.\n19705,lsmdc1006_Slumdog_Millionaire-73693,3889,The minibus is driving through lush countryside. The bus,The minibus is driving through lush countryside.,The bus,gold,pulls up a wire and a man in a pink jacket looks down and hurries for the men.,\"sits being drawn across its black engine, which sits propped up by its front panel.\",is full of scruffy street kids gazing out of the windows.,is still among the large bundle which is now lowered to the back of the carriage.\n19706,lsmdc1006_Slumdog_Millionaire-73693,3910,Someone shakes a bottle into a cloth then quickly smothers someone's face with the cloth. Someone collapses and someone,Someone shakes a bottle into a cloth then quickly smothers someone's face with the cloth.,Someone collapses and someone,gold,screws down both eyes.,kneels in front of her.,settles looks down to the floor.,lifts his limp body to a table.\n19707,lsmdc1006_Slumdog_Millionaire-73693,3891,The bus arrives at a large dilapidated residence where numerous children of all ages run around playing in the yard. Some children,The bus arrives at a large dilapidated residence where numerous children of all ages run around playing in the yard.,Some children,gold,sit down along being followed by a group of people.,move around on crutches.,run off to stand on the spikes at another.,are signing autographs for teddy.\n19708,lsmdc1006_Slumdog_Millionaire-73693,3894,\"Someone catches someone staring at the new arrivals. Evening, someone\",Someone catches someone staring at the new arrivals.,\"Evening, someone\",gold,returns inside the building in someone's' office.,'s younger someone is sitting at a table as she receives a personal bag of someone in his underwear.,has lined up the new children before him.,leans past the campfire - becoming structure as they dump out a vendor's afghanistan.\n19709,lsmdc1006_Slumdog_Millionaire-73693,3898,Someone moves back in line. Someone,Someone moves back in line.,Someone,gold,walks the length of the bar.,\"looks at someone uncertainly, then takes a seat beside him.\",steps out to sing.,makes his way through a semi - circle of students.\n19710,lsmdc1006_Slumdog_Millionaire-73693,3905,Someone wearing rubber gloves picks up a fist full of chillies. She,Someone wearing rubber gloves picks up a fist full of chillies.,She,gold,hangs from a ten dollar rack.,blasts of board paper missing.,frantically swings through it's wheels and ventures into a spacious red.,crushes them in her palms.\n19711,lsmdc1006_Slumdog_Millionaire-73693,3902,The child refuses so someone snatches the baby from her. He,The child refuses so someone snatches the baby from her.,He,gold,crouches behind her while people watch the alien drop off.,kisses her on the cheek.,pretends to drop the baby in front of someone.,is followed by someone.\n19712,lsmdc1006_Slumdog_Millionaire-73693,3888,\"Someone pats him on the back, smiling all the way. The minibus\",\"Someone pats him on the back, smiling all the way.\",The minibus,gold,\"look unsteady on her head, as she stares toward someone, captain.\",passes them at someone.,plunks himself on two arms and walks away.,is driving through lush countryside.\n19713,lsmdc1006_Slumdog_Millionaire-73693,3904,The children shake containers at people begging for money or food. Someone,The children shake containers at people begging for money or food.,Someone,gold,are seen on a ground that sleeves get along the floor.,holds in his hands.,wears an eye patch and begs at a stationary car window.,come to way.\n19714,lsmdc1006_Slumdog_Millionaire-73693,3911,The bearded man burns a sizzling liquid in a spoon over the flame. He,The bearded man burns a sizzling liquid in a spoon over the flame.,He,gold,tosses the ball far through a trash in the open field.,picks the skillet up with a knife and starts walking along the roof.,moves carefully with the spoon over to the table.,sits on the floor with a knife in hand.\n19715,lsmdc1006_Slumdog_Millionaire-73693,3906,She crushes them in her palms. She,She crushes them in her palms.,She,gold,\"eyeballs him, then dashes into a windowed booth.\",puts her hand against his shoulder and raises her into the fireplace.,towels her lips and gives the sponge to someone.,sneaks into the dormitory where all the children are sleeping on the floor.\n19716,lsmdc1006_Slumdog_Millionaire-73693,3901,Someone stops playing and watches his brother. Someone,Someone stops playing and watches his brother.,Someone,gold,\"glances across at him, sitting on the steps of the spheres, watching him lurch away as his grip swirls the oar around.\",slaps the giggling child.,leads someone to a dingy surface with a white stone basin in a rocky corner.,watches from behind as another person holds the poles with hand.\n19717,lsmdc1006_Slumdog_Millionaire-73693,3918,Someone draws closer to him. Someone,Someone draws closer to him.,Someone,gold,beams softly from someone.,\"reaches out and whispers to someone, but as someone resumes his stare into space.\",\"lets someone out of the swagger, as the fbi man stares at the old man with his wand in his hand.\",crouches in front of someone.\n19718,lsmdc1006_Slumdog_Millionaire-73693,3916,The bearded man prepares another spoon of liquid. Someone,The bearded man prepares another spoon of liquid.,Someone,gold,is rooted to the spot.,knees up a chair that he came over to.,remembers his grim father.,turns toward the flame of the burning bed.\n19719,lsmdc1006_Slumdog_Millionaire-73693,3887,Someone wakes and is also given a Coke. Someone,Someone wakes and is also given a Coke.,Someone,gold,receives a personal notice from someone.,continues lifting the chair looking over from the photo and returning to the bed.,\"stares wide - eyed at someone, banging on the receiver.\",\"pats him on the back, smiling all the way.\"\n19720,anetv_9nndNUHadcg,8310,\"Then, the girl puts two measures of liquor and a little bit soda. After, the young girl\",\"Then, the girl puts two measures of liquor and a little bit soda.\",\"After, the young girl\",gold,gets a cup of coffee.,pours the drink in the glass and dances about it.,finishes and stops playing.,puts a straw in the drink.\n19721,anetv_9nndNUHadcg,8309,\"A young girl is in a bar and she puts ice in a glass. Then, the girl\",A young girl is in a bar and she puts ice in a glass.,\"Then, the girl\",gold,puts two measures of liquor and a little bit soda.,\"adds a fruit to a stove, and drinks the water.\",pour a grated glass in the container and liquid it with the same glass.,drinks from the glass into the glass on a glass.\n19722,anetv_9nndNUHadcg,5992,A woman stands at a bar. She,A woman stands at a bar.,She,gold,lifts a weight over her head.,begins pouring a drink.,talks into a microphone.,does several more moves.\n19723,anetv_9nndNUHadcg,5993,She begins pouring a drink. She,She begins pouring a drink.,She,gold,turns to face him.,adds other ingredients to it.,pours the soda all over it.,pours a drink into a glass.\n19724,anetv_9nndNUHadcg,5994,She adds other ingredients to it. She then,She adds other ingredients to it.,She then,gold,mixes the ingredients into the oven.,finishes the mixed drink.,mixes the final salad into a shaker.,demonstrates how to dish while juicing a lemon.\n19725,anetv_Yk3pQ18So90,3137,Four women get on their knees and race to remove a tire. The ladies,Four women get on their knees and race to remove a tire.,The ladies,gold,do flips back several times.,put the new tier on and screw the bolts in with their hands and the tool.,kick their hands back and forth as they danced.,move quickly from the handle and box through the last part of the backside.\n19726,anetv_Yk3pQ18So90,3136,We see older people standing around a car in a field. Four women,We see older people standing around a car in a field.,Four women,gold,get on their knees and race to remove a tire.,stand up and start yo the audience.,wash static cars in clean grass.,are seen putting sand into their upper hands.\n19727,anetv_Yk3pQ18So90,591,Three women kneel down and begin changing the tires. People,Three women kneel down and begin changing the tires.,People,gold,stand around watching them.,clean the tire with a cleaning.,are running on the dark ledge while people follow her behind them.,\"are hurting themselves from the sail, and people repeat the steps while the woman sits.\"\n19728,anetv_Yk3pQ18So90,3138,The ladies put the new tier on and screw the bolts in with their hands and the tool. The lady in black,The ladies put the new tier on and screw the bolts in with their hands and the tool.,The lady in black,gold,walks to help the girl continue to attach to the cymbals.,goes around checking all the tires.,uses a small sprayer to get the wire bush latches of hair products.,keeps talking and the girl took a hit from the clean belt.\n19729,anetv_Yk3pQ18So90,3139,The lady in black goes around checking all the tires. The ladies,The lady in black goes around checking all the tires.,The ladies,gold,release the ends then cross the girl.,wave to chip at the screen.,finish and stand and raise their hands and clap in triumph.,begin kicking the circular stone.\n19730,anetv_Yk3pQ18So90,590,People are standing around a red car. Three women,People are standing around a red car.,Three women,gold,are seated at a table.,kneel down and begin changing the tires.,are waiting on a track together.,are walking on a treadmill.\n19731,lsmdc1046_Australia-91116,2387,\"Someone grimly watches the boys, streaming towards the trucks. Someone\",\"Someone grimly watches the boys, streaming towards the trucks.\",Someone,gold,\"turns down the shells in the dead, rushing them.\",rests her head on someone's shoulder and caresses his cheek.,has made to hide but lingers at taking slightly off the door.,continues at the very end holding his arms door.\n19732,lsmdc1046_Australia-91116,2385,He is taken aback by her hug. The sergeant,He is taken aback by her hug.,The sergeant,gold,stomps up to the young priest.,turns someone follows them.,falls to her feet with the scarf groping to slip out of the seat.,turns to someone and smirks relaxes.\n19733,lsmdc1046_Australia-91116,2386,The sergeant stomps up to the young priest. Someone,The sergeant stomps up to the young priest.,Someone,gold,\"slams down against the dining table, gets off the bar, and uncovers a body.\",mimes a fire pistol.,\"grimly watches the boys, streaming towards the trucks.\",flips the chicken to fluttering someone's egg.\n19734,anetv_1qi8ZXUH_wY,10476,Another man appears and grabs paper then walks away. The man,Another man appears and grabs paper then walks away.,The man,gold,jumps over the platform and looks about the place.,interacts with the man in a red jacket and puts the kite back in the snow.,picks up a rubiks cube and begins to solve it.,wrapping finishes his box.\n19735,anetv_1qi8ZXUH_wY,10473,A group of men are wrapping boxes on a table. Several people,A group of men are wrapping boxes on a table.,Several people,gold,are shown using sharpener and gifts.,are walking around the area.,are chopping beer balls with holes.,are shown practicing throwing tricks on horseback.\n19736,anetv_1qi8ZXUH_wY,10475,A man is getting very in depth on his wrapping and wraps the box tightly. Another man,A man is getting very in depth on his wrapping and wraps the box tightly.,Another man,gold,is shown swinging around an archery.,comes in to a flame and begins working around it.,hurries in and knocks out a red harness.,appears and grabs paper then walks away.\n19737,anetv_81k4vwur1Gk,14178,The man is seen speaking to people outside as well as inside while talking into the microphone. The man,The man is seen speaking to people outside as well as inside while talking into the microphone.,The man,gold,talks to the camera followed by more shots of people playing drums pong.,holds up a violin and continues walking along and showing shots of him playing a piano.,\"continues rapping and shows clips of people working, drinking coffee, and sitting next to the man.\",stops by recording himself through a gate and rubs flat glue over the handlebars while pushing the pin onto the cars.\n19738,anetv_81k4vwur1Gk,8179,A man removes a cup from a coffee machine. He,A man removes a cup from a coffee machine.,He,gold,puts a hookah on a wall.,lifts the glass up and lifts it and the man takes the lid off the ironing bar.,mixes the recipe at the bar.,\"takes a drink, and obviously enjoys it.\"\n19739,anetv_81k4vwur1Gk,14177,A person is seen grabbing a pot of coffee while laughing to the camera and wandering around an office. The man,A person is seen grabbing a pot of coffee while laughing to the camera and wandering around an office.,The man,gold,is seen speaking to people outside as well as inside while talking into the microphone.,continues to eat as well as several ingredients and pointing to the camera.,pours a drink in his back while the person continues to play and mix her up in a red cup.,talks to the camera under the old table and begins cutting people's hair.\n19740,anetv_81k4vwur1Gk,8180,\"He takes a drink, and obviously enjoys it. He\",\"He takes a drink, and obviously enjoys it.\",He,gold,\"is a constant rough beating, grimacing.\",is then seen singing and dancing around an office at work.,takes off bits of straw from her mouth.,is putting at a live cycle machine on video of a laundromat and a mans.\n19741,anetv_fG0nn2IVdDM,17244,People are standing in grass flying kites. People,People are standing in grass flying kites.,People,gold,are sitting down on the floor.,are with sealife into the sea.,are standing on top of bushes in a yard.,are playing drums and dancing.\n19742,anetv_fG0nn2IVdDM,3047,People are flying kites on a field. A man in a suit,People are flying kites on a field.,A man in a suit,gold,is standing in front of a ball of sand.,is drinking at a board.,is talking into a microphone.,comes in behind them.\n19743,anetv_XkWO7aqcC8Y,9759,\"He moves the sheets, then muds the floors before laying them down. The man\",\"He moves the sheets, then muds the floors before laying them down.\",The man,gold,presses the large sheets onto the ground.,rubs the walkover and lands on the extensions.,reappears on the finished and removes the liquid mask.,puts his new shoes on.\n19744,anetv_gdi_m9LjRAw,17680,A man is standing outside holding a chainsaw. He,A man is standing outside holding a chainsaw.,He,gold,starts cutting down a tree next to him.,is using a sprayer to trim the bushes.,turns around and hitting it in the water.,uses a leveler to open the window.\n19745,anetv_gdi_m9LjRAw,17681,He starts cutting down a tree next to him. He,He starts cutting down a tree next to him.,He,gold,shows off his nails.,moves the camel around the plant.,goes to take it to her husband.,stands next to the tree talking.\n19746,anetv_98wL6zakU9o,11641,A person is seen pushing a sander along a ski and leads into another person tightening down a ski and spraying wax along the top. The person,A person is seen pushing a sander along a ski and leads into another person tightening down a ski and spraying wax along the top.,The person,gold,wipes up more cars with the hand placed around it and begins pulling the ski ski in front of the camera.,walks into the room and continues sweeping down the bottom and ends by moving around on the seat.,wipes it down and then uses a bar of wax on the sander along the ski.,continues welding the back and rubbing soap down his body when he finished off with an machine.\n19747,anetv_a5R0qO5NynU,13435,A woman does hula hoops outside and then in the dark alternating. A man,A woman does hula hoops outside and then in the dark alternating.,A man,gold,jumps off the bed and flips over.,jumps to the beam.,appears with 2 other women wearing separate costumes that she wears.,takes a hula hoop and describes it before cutting back to the woman.\n19748,anetv__jT57LdAHUs,12783,A man talks on front the drummer and holding two sticks. The man,A man talks on front the drummer and holding two sticks.,The man,gold,sticks some rings in the air and adds.,\"pretends to play the drums, and then continues talking.\",\"scratches a white piece of plaster, then without shoes how to play it.\",talks to the camera while holding the harmonica in his hands and describes it.\n19749,anetv_g5rkuDdjRVI,16052,It gets dark in a tunnel. Someone,It gets dark in a tunnel.,Someone,gold,throws something at a boy.,\"looks at the blue panel numerous times, then around again, upright.\",sprints blades to the gate.,\"turns him from the pocket of the guard, drops the lantern in the bucket, and grips the top of his head.\"\n19750,anetv_g5rkuDdjRVI,16056,We see a number three on a wall. We,We see a number three on a wall.,We,gold,see a person jump off their skateboard.,see the guy stand next to her.,see her leave to the camera.,see a dot of the cave floor.\n19751,anetv_g5rkuDdjRVI,16054,A man rides downhill backwards. We,A man rides downhill backwards.,We,gold,skis shots before going back around the street.,\"watch camel wrestling face in a lake with inflatable kites and then the man rubs his leg but after talking, front of the man\",see a man kick up motorcycle named choppy boy peer at it.,see a boy fall off his skateboard.\n19752,anetv_g5rkuDdjRVI,16053,Someone throws something at a boy. We,Someone throws something at a boy.,We,gold,glimpse a game on a bottle.,see the boys riding skateboards down a residential street.,\"sober, hastily picking the balls out of the way, her eyes widen.\",spot someone in the conversation.\n19753,anetv_g5rkuDdjRVI,16051,We see two boys on a train talking. It,We see two boys on a train talking.,It,gold,gets dark in a tunnel.,says ok to every team on the skate road.,shoot shooting arrows as they fly between a bunch of targets in the distance.,\"and cars are getting on the lake, we see images of boys riding and snowboarding down the mountain.\"\n19754,lsmdc3037_IRON_MAN2-16574,15587,Someone raises his wine glass. Someone,Someone raises his wine glass.,Someone,gold,\", someone tie the necklace on his temple, shares it with a guest.\",sashays into the shadows then grabs a chair behind executives.,picks up a bottle of vodka and taps it against someone's glass.,\", someone nods encouragingly, and frantically sprints to the seat of the train.\"\n19755,lsmdc1038_The_Great_Gatsby-87808,3197,\"Someone walks between two tall, stone urns and down some more steps. Someone\",\"Someone walks between two tall, stone urns and down some more steps.\",Someone,gold,pushes her way over him towards a scar on the side of the neck.,stays at the top.,\", someone kicks someone in the door.\",closes someone's head.\n19756,lsmdc1038_The_Great_Gatsby-87808,3198,\"Someone opens a low, metal gate. He\",\"Someone opens a low, metal gate.\",He,gold,moves down the stone steps and top.,looks up at someone.,stops and turns to someone.,closes the doors and lets her inside.\n19757,lsmdc1038_The_Great_Gatsby-87808,3194,People sit on the terrace. Someone,People sit on the terrace.,Someone,gold,squirts someone's hand.,\"reaches out one - handed, takes something from a pocket.\",puts her hand over her mouth.,steps out into the sunlight.\n19758,lsmdc1038_The_Great_Gatsby-87808,3192,\"Someone looks out across the bay. At the garage, someone\",Someone looks out across the bay.,\"At the garage, someone\",gold,\"stands in his bright yellow outfit and stares at a brow, his face intrigued.\",finds through single pickup window.,\"throws myrtle's pills into a drawer, holds up a revolver and stares at it.\",is watching him escape the room.\n19759,lsmdc1038_The_Great_Gatsby-87808,3201,Someone looks up at the sky. Someone,Someone looks up at the sky.,Someone,gold,turns to taken her helmet from her hand.,presses his fingers to the hem of his pants.,rushes her to his car past someone sees a collection of other men flying clothes in the dark basement and traffic comes out.,\"heads off along the gravel path beneath the terrace, leading through the ornamental garden.\"\n19760,lsmdc1038_The_Great_Gatsby-87808,3217,\"Shafts of bright sunlight are diffused in the water around him. Later, police and photographers\",Shafts of bright sunlight are diffused in the water around him.,\"Later, police and photographers\",gold,stand at the tables at a riverside leading them on the ground.,are gathered around the pool.,walk on a cavernous street.,stand on the sunlit party.\n19761,lsmdc1038_The_Great_Gatsby-87808,3212,\"Someone touches his chest and looks at his finger. Heavy - browed, his deep blue eyes staring wildly, someone\",Someone touches his chest and looks at his finger.,\"Heavy - browed, his deep blue eyes staring wildly, someone\",gold,sends the message partway through a pumpkin.,\"stares at the burly man, then faces his wife.\",returns someone's wallet with an agent.,looks again across the bay of consequence to someone's mansion.\n19762,lsmdc1038_The_Great_Gatsby-87808,3205,\"Wearing a swimming costume, someone dives into the round, azure pool. At home, someone\",\"Wearing a swimming costume, someone dives into the round, azure pool.\",\"At home, someone\",gold,struggles out of the veil and takes a few deep breaths before sucking her groin.,\"sits near a telephone, looking pale and distant.\",bows awake with her hands clasped under her head.,finds someone in their wife's study.\n19763,lsmdc1038_The_Great_Gatsby-87808,3200,Someone leaves someone resting on the gate. Someone,Someone leaves someone resting on the gate.,Someone,gold,rests an elbow on someone's chest.,slides down on its side fearfully.,looks up at the sky.,\"meet the delighted guests that share one then turns, standing as people leave their platform, greeting guests in the early set setting.\"\n19764,lsmdc1038_The_Great_Gatsby-87808,3214,\"He falls back into the pool. As someone drops lifelessly into the water, someone\",He falls back into the pool.,\"As someone drops lifelessly into the water, someone\",gold,grabs him but does n't move.,moves back to the balls and tosses it back into the pool.,puts the barrel of the gun in his own mouth and fires.,falls into the ground.\n19765,lsmdc1038_The_Great_Gatsby-87808,3219,Someone lies in a coffin. Reporters,Someone lies in a coffin.,Reporters,gold,pull up near a row detailing women and dance.,view the assembled officer cereal.,swarm around someone's coffin.,and someone wait fences in darkness.\n19766,lsmdc1038_The_Great_Gatsby-87808,3196,\"People walk down steps and across the ornamental terrace, towards the pool. Someone\",\"People walk down steps and across the ornamental terrace, towards the pool.\",Someone,gold,\"steps into an auditorium, holding his other rackets, and chugs the glass.\",sees someone to the ground and smiles.,\"walks between two tall, stone urns and down some more steps.\",\"places a pile inside the towering tree, then spots the solder.\"\n19767,lsmdc1038_The_Great_Gatsby-87808,3208,\"Shadowed against a wall, someone stalks through the grounds, holding his revolver. Someone\",\"Shadowed against a wall, someone stalks through the grounds, holding his revolver.\",Someone,gold,stands up without his hat.,finds someone's cellphone.,snatches someone out of the cloak and guides him into the courtyard below.,walks towards the telephone and lifts the receiver.\n19768,lsmdc1038_The_Great_Gatsby-87808,3213,Someone's mouth hangs open. His eyes,Someone's mouth hangs open.,His eyes,gold,put on a computer console now.,glaze as the life drains from him.,reach over his dark brown coat.,glisten into a pensive smile.\n19769,lsmdc1038_The_Great_Gatsby-87808,3202,\"Someone heads off along the gravel path beneath the terrace, leading through the ornamental garden. He\",\"Someone heads off along the gravel path beneath the terrace, leading through the ornamental garden.\",He,gold,watches two muscular man of his biking skills down a covered path.,stops and looks up at someone.,turns to peer after him.,finds more rocks behind him.\n19770,lsmdc1038_The_Great_Gatsby-87808,3204,Someone sits looking sleepy as others work around him. Someone,Someone sits looking sleepy as others work around him.,Someone,gold,looks down at the captain.,stands by the pool.,stands outside helping his daughter closely.,sits in someone's pit.\n19771,lsmdc1038_The_Great_Gatsby-87808,3195,Someone steps out into the sunlight. People,Someone steps out into the sunlight.,People,gold,enter someone's room.,are now posed in bed.,\"walk down steps and across the ornamental terrace, towards the pool.\",are lit up with the recruits.\n19772,lsmdc1038_The_Great_Gatsby-87808,3209,Someone walks towards the telephone and lifts the receiver. Someone,Someone walks towards the telephone and lifts the receiver.,Someone,gold,picks up the number.,enters a cozy suite.,turns the key in the ignition.,surfaces as his phone rings.\n19773,lsmdc1038_The_Great_Gatsby-87808,3203,They wave to each other. Someone,They wave to each other.,Someone,gold,pulls the necklace back from the case.,puts his shoes back on and gazes with them.,melts a soot - hued sculpture on a lovely face.,sits looking sleepy as others work around him.\n19774,lsmdc1038_The_Great_Gatsby-87808,3218,\"Later, police and photographers are gathered around the pool. Someone\",\"Later, police and photographers are gathered around the pool.\",Someone,gold,pays for her 20s.,lies in a coffin.,arrives at the ferry.,plays with another dancer.\n19775,lsmdc3053_PARENTAL_GUIDANCE-25851,16191,Someone lowers her gaze and shakes her head. Her eyes,Someone lowers her gaze and shakes her head.,Her eyes,gold,glisten as someone sits back down.,go wild as her husband eyes him.,fill with tears as he eyes someone's letter.,remain averted as someone gazes into her eyes.\n19776,anetv_08ItAtlb60Q,16568,There are many trophies on display that you can win for doing a good job. Men on their bikes,There are many trophies on display that you can win for doing a good job.,Men on their bikes,gold,are waiting to start a race.,slap the pretty man in the face.,cower on the court.,extend their arms before the entire event.\n19777,anetv_08ItAtlb60Q,16570,Two men hit their knuckles together before the race begins. The audience is cheering and the riders,Two men hit their knuckles together before the race begins.,The audience is cheering and the riders,gold,spin along the ground and drain the boy.,are almost able to kick it out.,rip up determined to free the cow.,are off going super fast trying to win.\n19778,anetv_08ItAtlb60Q,16569,Men on their bikes are waiting to start a race. Two men,Men on their bikes are waiting to start a race.,Two men,gold,bring helmets in and start riding bikes.,race on a track.,hit their knuckles together before the race begins.,sitting left dressed in red.\n19779,anetv_fqOp0uhdEyM,15603,Michele Obama and another woman are hula hooping outside on a sunny day. As the camera zooms out a young boy and another woman to the side,Michele Obama and another woman are hula hooping outside on a sunny day.,As the camera zooms out a young boy and another woman to the side,gold,begin competing their turns with music.,are also seen hula hooping while people behind run past.,\", a woman jumps on the back of the men talking to the camera and begins spinning into the hoop.\",interviewed sandy brother holding the camera feed.\n19780,anetv_fqOp0uhdEyM,15606,The third time she prepares herself and runs towards the jump rope successfully jumping a couple times before being unable to do anymore. Now Michele,The third time she prepares herself and runs towards the jump rope successfully jumping a couple times before being unable to do anymore.,Now Michele,gold,go over onto the table when one does a flip and lands on the mat.,\"that the routine's landing, she continues her routine.\",are shown on her body and then continues to explain what she is doing and what they will do.,\"is running through a foot course on the ground, while a young man trails behind.\"\n19781,anetv_fqOp0uhdEyM,15607,\"Now Michele is running through a foot course on the ground, while a young man trails behind. She\",\"Now Michele is running through a foot course on the ground, while a young man trails behind.\",She,gold,runs and walks to a brunette.,puts her shoes back up.,is now going back and forth through another obstacle of sticks and runs towards the woods where she stops and points.,\"watches, then slides the rope.\"\n19782,anetv_fqOp0uhdEyM,15605,\"Michele now runs and jumps into a jumprope where she fails to successfully jump in the jump rope twice, both times looking embarrassed. The third time she\",\"Michele now runs and jumps into a jumprope where she fails to successfully jump in the jump rope twice, both times looking embarrassed.\",The third time she,gold,prepares herself and runs towards the jump rope successfully jumping a couple times before being unable to do anymore.,does successful she spins around.,retreats attempting with an block displaying her jump item.,arrives and we see a young boy bouncing off the track.\n19783,anetv_fqOp0uhdEyM,15608,She is now going back and forth through another obstacle of sticks and runs towards the woods where she stops and points. She,She is now going back and forth through another obstacle of sticks and runs towards the woods where she stops and points.,She,gold,try to reach the bottom of the pinata as huge rope gives way.,unties the grass to the top of the tree and moving it backward and hitting the grass towards her feet.,\"runs all the way back down the field, giving high fives to random people on the field at her arrival.\",\", boys stares at the horror and jumps in position towards the camera.\"\n19784,anetv_fqOp0uhdEyM,15604,The camera angles down to just the two women's hips with the hula hoops as in the beginning and back up to mostly just seeing Michele's face. Michele now,The camera angles down to just the two women's hips with the hula hoops as in the beginning and back up to mostly just seeing Michele's face.,Michele now,gold,\"runs and jumps into a jumprope where she fails to successfully jump in the jump rope twice, both times looking embarrassed.\",shows the different technique on the tennis pad.,move around and makes her going forward to keep the cymbals showing the hoops that she will have to be shown.,demonstrate both flips together as when they've done giving puppets all of the height.\n19785,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15140,Someone flicks water from his hair and leans back on towels against the high end of the bath. Someone,Someone flicks water from his hair and leans back on towels against the high end of the bath.,Someone,gold,races down the stairs and comes home.,is a peaceful portrait of a bruno tabby sitting on the cot.,\"is here, opening this eye to find the difference he should scrub.\",is walking through the grounds.\n19786,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15139,A servant enters and pours a large jug of water over his head and back. Someone,A servant enters and pours a large jug of water over his head and back.,Someone,gold,hesitate quietly at the door.,turns to his travel door and looks after the staff.,flicks water from his hair and leans back on towels against the high end of the bath.,places lipstick on her lips.\n19787,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15144,\"In the garden below, he sees someone. She\",\"In the garden below, he sees someone.\",She,gold,\"is playing with a dog, trying to wrestle a stick from its mouth.\",turns to see someone weeping.,flips to his side and runs out.,writes letter deep in the water.\n19788,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15148,Someone prods the fire with his foot. Someone,Someone prods the fire with his foot.,Someone,gold,\"walks over to someone, who's engrossed in a book.\",stares at his superior.,\"shakes someone's hands, then darts away.\",smiles at the descending man.\n19789,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15149,\"Someone walks over to someone, who's engrossed in a book. She\",\"Someone walks over to someone, who's engrossed in a book.\",She,gold,takes the receiver away from someone.,sets a coin on the counter and readies her shoulders.,spies his name on his finger.,flirtatiously leans on his chair in order to read over his shoulder.\n19790,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15150,She flirtatiously leans on his chair in order to read over his shoulder. He,She flirtatiously leans on his chair in order to read over his shoulder.,He,gold,looks around the corner in shock and sighs.,covers his lips with toilet cloth.,ignores her and turns the page.,looks at each other through a window.\n19791,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15138,Now someone is washing in a copper bath. A servant,Now someone is washing in a copper bath.,A servant,gold,snatches a lunch bottle from the kitchen counter.,is up to them.,\"keeps tea, then runs off the coffee board with someone, gives her the brush and rubs it into her palm.\",enters and pours a large jug of water over his head and back.\n19792,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15143,Someone leaves himself out of the bath and into a dressing gown held open for him by a servant. He,Someone leaves himself out of the bath and into a dressing gown held open for him by a servant.,He,gold,\"drops to a chair, spikes it over the table then moves under his huge coat.\",\"sits up in bed, then regards it, groping for the second time.\",wraps the robe around himself.,steps behind the row of seats and puts the lantern down.\n19793,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15141,\"She smiles at a proud - looking gray and white Great Dane in her path. It races off, and someone\",She smiles at a proud - looking gray and white Great Dane in her path.,\"It races off, and someone\",gold,creeps close to the rising hobbit in the passenger spots.,delightedly chases after it.,looks from the soldiers standing from the fall.,sends the plane flying.\n19794,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15137,Someone closes her eyes in embarrassment. Now someone,Someone closes her eyes in embarrassment.,Now someone,gold,is guiding the bus.,is sitting back up the bed dressed in bed and listening to big bailey's own work.,makes his way through her around a small town.,is washing in a copper bath.\n19795,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15145,\"She is playing with a dog, trying to wrestle a stick from its mouth. Standing at the window, someone\",\"She is playing with a dog, trying to wrestle a stick from its mouth.\",\"Standing at the window, someone\",gold,watches her every move.,approaches as her friend bullets angelina's shoulder.,ventures nearer as the stone step back.,keeps looking at a cliff behind her.\n19796,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15151,\"With malevolent intent in her eyes, she crosses to someone. Someone\",\"With malevolent intent in her eyes, she crosses to someone.\",Someone,gold,falls down the rest of the manhole.,drives a sleek convertible over which their can thuds near the oncoming cars.,looks around her awkwardly.,plays at the garden in the sun lit kitchen.\n19797,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15146,\"Standing at the window, someone watches her every move. Now someone\",\"Standing at the window, someone watches her every move.\",Now someone,gold,watches someone down the window as he walks into the pub.,is fast asleep in a chair.,tosses his baseball bag against someone's stall.,sits on the bed with her back to him.\n19798,lsmdc1029_Pride_And_Prejudice_Disk_One-83566,15136,Someone glances over at someone. Someone,Someone glances over at someone.,Someone,gold,closes her eyes in embarrassment.,\"glances up at someone who falters, then turns.\",steps away and widens his eyes.,spots someone's outstretched legs.\n19799,anetv_b7B0NRizzYo,17255,Woman is standing next to a kid combing the dry leaves with a green rake. a woman and a kid,Woman is standing next to a kid combing the dry leaves with a green rake.,a woman and a kid,gold,play a game of lacrosse.,are holding a pair of wallpaper and climbing tools.,are standing on a green grassy yard next to sidewalk raking the leaves.,are sitting on sidewalk wearing yellow and helping the young kid make a snowslides running.\n19800,anetv_b7B0NRizzYo,316,\"Then, the toddler jumps on the pile of leaves and spreads them. After, the woman\",\"Then, the toddler jumps on the pile of leaves and spreads them.\",\"After, the woman\",gold,continue piling the leaves.,begins to blow dirt down in the grass.,lays up and talks to the camera while holding the instrument.,goes into a colored structure and gives it a plantation to put its on top.\n19801,anetv_b7B0NRizzYo,315,\"A woman and a toddler pile dry dead leaves with rakes. Then, the toddler\",A woman and a toddler pile dry dead leaves with rakes.,\"Then, the toddler\",gold,falls and keep spinning.,catch them using the shears to put them through.,jumps on the pile of leaves and spreads them.,\"duel in the lawn with a leaf castle, which falls in a pot on the grass.\"\n19802,anetv_b7B0NRizzYo,17254,Little kid is combing dry leaves on the yard. woman,Little kid is combing dry leaves on the yard.,woman,gold,walks in the snow and talks to a little boy and young lady.,is standing next to a kid combing the dry leaves with a green rake.,is doing tai chi around the litle grass of dry sky.,is wearing a green white hat.\n19803,anetv_86iCOCtA4Ww,16331,A man is jump roping next to water. A man,A man is jump roping next to water.,A man,gold,performs skiing down a hill of snow.,sits at the water holding a pipe.,passes him on a bicycle.,is skiing down a slope.\n19804,anetv_86iCOCtA4Ww,16332,A man passes him on a bicycle. He,A man passes him on a bicycle.,He,gold,\"carries a collection of food supplies, and fire him up along the arena, followed by someone.\",swings a frisbee in circles.,stops jump roping and continues to talk to the camera.,make a fire hydrant and spin off.\n19805,anetv_86iCOCtA4Ww,7614,A man is seen speaking to the camera while holding a jump rope in the middle of a park. The man then,A man is seen speaking to the camera while holding a jump rope in the middle of a park.,The man then,gold,jumps up and performs tricks while others watch on the side.,begins doing jumps and tricks on the rope while holding and playing the side.,demonstrates several different jumps while holding the rope and still speaking to the camera.,jumps up onto a side holding a rope before jumping down and hurting himself.\n19806,anetv_3bTGq7QDjUg,12441,\"Two people are tubing in a stream with lush water and huge rocks through out it. Once the two get around the curve, they\",Two people are tubing in a stream with lush water and huge rocks through out it.,\"Once the two get around the curve, they\",gold,hit two small hills and wade in the calmer part of the water.,struggle to change where they set down.,dunk the sand in the water.,try to push up a lacrosse stick.\n19807,anetv_MCsGSMze_6Q,6793,The man finishes and stands up. We,The man finishes and stands up.,We,gold,see the crowd clapping.,see a surfer ride away on surfers steps in sea.,see a boy jumping in the car.,see a man holding a photo of the man.\n19808,anetv_MCsGSMze_6Q,6789,We see an opening title screen. There,We see an opening title screen.,There,gold,are opens and a lady spins a hand sticks into the pumpkin.,is a black and white tv show with two men on a stage talking and laughing.,see clips of horses trimming the perimeter of the trees.,see an elderly person painting around a building.\n19809,anetv_MCsGSMze_6Q,6791,The right man gets up and walks to a piano. The man,The right man gets up and walks to a piano.,The man,gold,pans behind him in the foreground playing the piano.,jumps onto the monkey bars and stands up.,disappeared onto the bowls.,plays a grand piano.\n19810,anetv_MCsGSMze_6Q,6792,The man plays a grand piano. The man,The man plays a grand piano.,The man,gold,finishes and stands up.,continues playing on a piece of stone.,plays the drums before returning to playing the flute.,plays guitar and sings.\n19811,anetv_MCsGSMze_6Q,6790,There is a black and white tv show with two men on a stage talking and laughing. The right man,There is a black and white tv show with two men on a stage talking and laughing.,The right man,gold,gets up and walks to a piano.,starts singing while seated using his knees on the guitar's body.,points to the camera right in front of a camera.,is talking about the song about replays of his throw.\n19812,anetv_A7ER02-zr54,13935,\"The man spins the tire using the paddle, then braking. The man\",\"The man spins the tire using the paddle, then braking.\",The man,gold,removes the spare tire and places the brace on his bike.,goes to the car and grabs a soaked flat tire.,\"pulls the tire off, and puts it back on.\",sits on the bike dock.\n19813,anetv_A7ER02-zr54,13937,The man takes it off and on again. The man,The man takes it off and on again.,The man,gold,collapses and throws darts to the bench again.,points to high five.,continues cutting the boy fast after doing this.,points to his hand.\n19814,anetv_A7ER02-zr54,13934,\"We see an opening title screen, and see a man talking in front of a bike. We see the bike in a room and the man\",\"We see an opening title screen, and see a man talking in front of a bike.\",We see the bike in a room and the man,gold,begins to hit the tire on the side with the bike.,enters the room pointing at parts of the bike.,stops to help.,\"gets the lug nuts, lug nuts with the tire.\"\n19815,anetv_A7ER02-zr54,17383,The man spins around the wheels and begins adjusting the bike. He,The man spins around the wheels and begins adjusting the bike.,He,gold,continues moving the bike around and putting the wheel in place.,stands up and then switches on a handlebar.,pulls the equipment inside and begins climbing the bike while sitting on the bike.,continues riding the bike around the bike.\n19816,anetv_A7ER02-zr54,17382,A man is seen speaking to the camera and shows a closeup of a bike frame. The man,A man is seen speaking to the camera and shows a closeup of a bike frame.,The man,gold,rotates his bike around upright and loads up the bike.,screws up a jack and wipe the counter with square cloth.,spins around the wheels and begins adjusting the bike.,moves his bike up and down into a set while stepping back.\n19817,anetv_A7ER02-zr54,13938,The man points to his hand. The man takes the tire off and a title,The man points to his hand.,The man takes the tire off and a title,gold,appears on the screen.,is on to its eye.,line floods the plaza along with a message of auto in hand on the lake.,shows on the lane.\n19818,anetv_A7ER02-zr54,13936,\"The man pulls the tire off, and puts it back on. The man\",\"The man pulls the tire off, and puts it back on.\",The man,gold,puts the spare tire and sticks out the credits of the machine.,takes the fishing line off.,takes it off and on again.,takes off the tires and drives the car.\n19819,anetv_Y-2nhi8JdO8,14918,A person is seen close up holding a guitar and begins playing the instrument while moving his arms around. The man,A person is seen close up holding a guitar and begins playing the instrument while moving his arms around.,The man,gold,continues to play the violin with his hands and ends by walking away and continuing to play.,hits the instrument around in a slow motion properly and ends by releasing the stick's instrument.,continues to play the instrument up and down moving his hands all around.,continues unscrewing the instrument and moving his arms around in the air.\n19820,anetv_YmVdnkDo0xQ,17113,A man is seen cleaning up a bathroom when a walks into frame and leads into a news article. A picture of a sign,A man is seen cleaning up a bathroom when a walks into frame and leads into a news article.,A picture of a sign,gold,\"is shown, followed by several people playing rock paper scissors and speaking up.\",covered zero takes a text showing how to read multiple new hands.,demonstrates the sign text for talking to batman displays.,is shown followed by a person washing their hands as well as clips from tv shows.\n19821,anetv_7-jcXxwqf5E,13876,The man kneels beside the ice fishing hole while reeling. The man,The man kneels beside the ice fishing hole while reeling.,The man,gold,shoots one arrow each time.,stops to shoot the arrows and shoot a target in one location.,pulls several fish out of the hole.,logs holes into the black hole.\n19822,anetv_7-jcXxwqf5E,13881,The man drops the other fish back into the hole. The man,The man drops the other fish back into the hole.,The man,gold,moves towards the animals and takes out the fish pocket.,pulls fish against a arrow and ducks it through its hole.,jumps onto the ground and begins to run through the hole quickly.,walks towards the camera and stands in front of it.\n19823,anetv_7-jcXxwqf5E,13875,A man reels on a fishing rod while ice fishing. The man,A man reels on a fishing rod while ice fishing.,The man,gold,kneels beside the ice fishing hole while reeling.,moves in sideways while still speaking to the camera.,\"is now in a white pot and chopped, chopping something.\",looks to the right and fills with water.\n19824,anetv_7-jcXxwqf5E,1062,He is fishing through a hole in the ice. He,He is fishing through a hole in the ice.,He,gold,catches fish and throws it in the pond.,shoots lightning in different directions.,is holding a fishing stick and talking.,reels in a large fish that he caught.\n19825,anetv_7-jcXxwqf5E,13878,The man hooks one of the fish on a portable weighing scale. The man,The man hooks one of the fish on a portable weighing scale.,The man,gold,drops the fish back into the hole.,takes uses the plastic brush to flatten the item on the wall.,holds the coconut over his head then tosses it in the sink.,screws the rubble on a wall and opens the pages.\n19826,anetv_7-jcXxwqf5E,1061,A man is standing with a fishing pole. He,A man is standing with a fishing pole.,He,gold,picks a team up and throws it onto the basket.,uses a drill to start a pumpkin at the top of the watermelon.,uses a hose to lean on the rock.,is fishing through a hole in the ice.\n19827,anetv_7-jcXxwqf5E,13879,The man drops the fish back into the hole. The man,The man drops the fish back into the hole.,The man,gold,walks away across the ice.,places the fishing boat down on the skis.,weighs the other fish on the portable scale.,pokes the hose in the bucket.\n19828,anetv_7-jcXxwqf5E,13880,The man weighs the other fish on the portable scale. The man,The man weighs the other fish on the portable scale.,The man,gold,puts some more mouthwash and then gargle it a few more times.,\"talks in front of the camera to demonstrate the technique, before he starts performing the disc.\",moves some of all the water to take a final breather.,drops the other fish back into the hole.\n19829,anetv_7-jcXxwqf5E,13877,The man pulls several fish out of the hole. The man,The man pulls several fish out of the hole.,The man,gold,continues to circle the string in the end.,stands up and walks out of camera view.,lifts the fish up to a hole and pretends to start and holding the fish in the hole.,lays off the board with wires and wraps above it.\n19830,lsmdc3070_THE_CALL-32982,16185,\"She stops the track and adjusts the audio levels, then replays the recording with her eyes closed. Someone\",\"She stops the track and adjusts the audio levels, then replays the recording with her eyes closed.\",Someone,gold,looks up toward the house and then looks up.,tosses off her headset and covers her eyes.,speeds off as the vehicle continues to roam.,pulls her backward olives from her view and averts her gaze on the terrain.\n19831,lsmdc3060_SANCTUM-29350,4645,\"Maintaining his hold, the older man bites his lip. Someone's hand\",\"Maintaining his hold, the older man bites his lip.\",Someone's hand,gold,sits on his side.,\"reaches out, exposing his ass, kicking it out.\",\"grabs his shoulder again, flexes weakly, and goes limp.\",rests a right palm on the trays furry fence.\n19832,lsmdc3060_SANCTUM-29350,4647,\"Back at the large flowstone feature, someone crouches over his euthanized friend. Now we\",\"Back at the large flowstone feature, someone crouches over his euthanized friend.\",Now we,gold,\"drift apart, toward the destroyer.\",\"drift through the night, longbourn.\",soar backwards from a house of foam on a landscape.,float up toward the lazily kicking legs.\n19833,anetv_UU8Xtm8Gl3I,11600,A person is snowboarding on a hill. He,A person is snowboarding on a hill.,He,gold,is on the snow on the snow on a muddy intertube.,\"stands at the station while dressed in beige uniforms, high slopes, and track gear.\",gets done and puts his hands up.,jump up and down.\n19834,anetv_UU8Xtm8Gl3I,5433,A man is snowboarding up and down several ramps. A crowd,A man is snowboarding up and down several ramps.,A crowd,gold,watches as he flips and turns in the air.,is standing around with people watching them.,is gathered on a white circle holding up a ball.,watches as two of them fall off into the field.\n19835,anetv_UU8Xtm8Gl3I,5434,A crowd watches as he flips and turns in the air. He,A crowd watches as he flips and turns in the air.,He,gold,\"runs disappears, filling his current with water.\",spins around a few times and ends with someone jumping into the grass.,\"continues performing, doing several stunts.\",lands on his ground.\n19836,lsmdc3015_CHARLIE_ST_CLOUD-669,10346,\"Someone pulls him into a hug and tousles his hair. Now, in a car's passenger seat, a blonde\",Someone pulls him into a hug and tousles his hair.,\"Now, in a car's passenger seat, a blonde\",gold,sees a movie screen.,lies with a beauty on her ass.,little boy sits in front of a car.,uses a vanity mirror to apply lipstick.\n19837,anetv_AWAMhmc08Cw,14440,Two children are seen sitting in a tub rubbing their faces and another person's hands interacting. The boy,Two children are seen sitting in a tub rubbing their faces and another person's hands interacting.,The boy,gold,switches on the brushes and the boys continue as the child leads the man back onto the sofa running out of frame.,moves more the moving waterfall as well as shots of his engaged fighting.,continues to rub water all over his face as well as play with toys and smile at the cameraman.,then lays her nail down and speaking to the camera then pans over to the table.\n19838,lsmdc1008_Spider-Man2-75705,10338,\"He looks to see how far he is fallen, clutches his back and hobbles between the cars and out of the alley parking lot. He\",\"He looks to see how far he is fallen, clutches his back and hobbles between the cars and out of the alley parking lot.\",He,gold,\"crashes down onto the abandoned hillside only a few yards away, some loudly in the corner and stops.\",\"takes out the ticket then then wheels the bike down a narrow side street, where she turns free.\",leans on a parked car for support.,is dragged along the side below.\n19839,lsmdc1008_Spider-Man2-75705,10335,His eyes are focused on where he is going. He,His eyes are focused on where he is going.,He,gold,runs towards the open stage door of the kitchen.,slips under the bed and lays his hands in a chair by the tv.,takes out the scientist book and inspects the headline.,\"flings both arms back, then thrusts them forward as he leaps off the roof.\"\n19840,lsmdc1008_Spider-Man2-75705,10336,\"He flings both arms back, then thrusts them forward as he leaps off the roof. His arms and legs flailing, he\",\"He flings both arms back, then thrusts them forward as he leaps off the roof.\",\"His arms and legs flailing, he\",gold,sinks to his knees.,soars through the air.,lets himself up onto the ground.,slams grid down onto the ground.\n19841,lsmdc1008_Spider-Man2-75705,10333,\"He pumps his arms forward and back, as his pace increases and his stride lengthens. Pigeons\",\"He pumps his arms forward and back, as his pace increases and his stride lengthens.\",Pigeons,gold,\"file out, the submerged member regards someone gravely.\",take to the air as someone passes.,manages his uniform and fires proudly as the pilot fires a shot.,\"bounds into the room, only to follow someone's slow face.\"\n19842,lsmdc1008_Spider-Man2-75705,10329,Someone's eyes glaze over. Someone,Someone's eyes glaze over.,Someone,gold,watches as someone slowly turns to toy body.,sets down an equipment bag over someone's bag.,\"stares through his dark - rimmed spectacles, then blinks.\",walks over to the young man and gives him an eager kiss on the cheek.\n19843,lsmdc1008_Spider-Man2-75705,10331,A lone figure stands on the flat roof of a tall Manhattan building. The figure,A lone figure stands on the flat roof of a tall Manhattan building.,The figure,gold,\"leaves, people, walking towards the tiny kid, weeps.\",moves guard without his mask.,holds a giant arm in shape.,\"is someone, who strides with purpose away from the edge.\"\n19844,lsmdc1008_Spider-Man2-75705,10334,Pigeons take to the air as someone passes. His eyes,Pigeons take to the air as someone passes.,His eyes,gold,fly open and suddenly the bright lights run out of bounds.,\"flip round again, as the angle overtakes them.\",ricochet off someone's.,are focused on where he is going.\n19845,lsmdc1008_Spider-Man2-75705,10330,\"Someone stares through his dark - rimmed spectacles, then blinks. A lone figure\",\"Someone stares through his dark - rimmed spectacles, then blinks.\",A lone figure,gold,rises nearby in the hooded background.,stands in a clearing beyond a window before the building.,shows the boy running.,stands on the flat roof of a tall manhattan building.\n19846,lsmdc1008_Spider-Man2-75705,10337,A washing line breaks his fall. He,A washing line breaks his fall.,He,gold,holds up a towel and a close tray of her ingredients is given.,is seen in a bathroom.,swings on it against the wall.,releases her and falls onto her arms.\n19847,lsmdc1008_Spider-Man2-75705,10332,\"His face full of resolve, he stops. Someone\",\"His face full of resolve, he stops.\",Someone,gold,straightens his busty bean.,\"runs towards it, past the skylight jutting up, his face set in grim determination.\",views his weathered metal collection.,joins him with a little fire in his mouth.\n19848,anetv_8tlLBffNjf8,16868,A man is standing inside a house. He,A man is standing inside a house.,He,gold,cuts and paints a fence with a scraper.,is adorning a christmas tree with ornaments.,is putting glue cubes into a bowl on the bottom.,is using a large rake to crowd leaves.\n19849,anetv_7uhJ_0oKV6s,15990,We see a group of people as two use a jump rope. Several others,We see a group of people as two use a jump rope.,Several others,gold,\"jump in, jumping over the rope, flipping and doing stunts.\",pass and watch the dummy on the rope.,walk and on the ground and up to the boys.,ram his pole down a ramp.\n19850,anetv_7uhJ_0oKV6s,15989,Two people are standing in front of a street performance. We,Two people are standing in front of a street performance.,We,gold,are putting pink wires on.,see a couple of dancing outside.,see the game begin with a blue hug.,see a group of people as two use a jump rope.\n19851,anetv_h4Cf5u1j0TU,14181,She teases the baby with ice cream and eats it herself while laughing. She occasionally,She teases the baby with ice cream and eats it herself while laughing.,She occasionally,gold,shows another child who is having her hair drawn up and looks really happy.,drags over the food and roll her tongue.,feeds to baby ice cream as well as herself.,spit it out and cut it in half.\n19852,anetv_h4Cf5u1j0TU,14180,A woman is seen laughing to the camera and holding a baby in her lap. She,A woman is seen laughing to the camera and holding a baby in her lap.,She,gold,shows off the lei while laughing to the camera.,begins talking to the camera while swinging around with a small cat.,teases the baby with ice cream and eats it herself while laughing.,moves back and fourth and throws her hands in the air.\n19853,anetv_NM4nBojCSwQ,17649,The man holding speaking and points to an iron near him. He,The man holding speaking and points to an iron near him.,He,gold,jumps off the horse and the girl walks on and watches on the side.,then applies the man's hands to lash down his face.,\"picks up the iron waiting for it to get hot, then proceeds to iron his shirt while looking at the camera.\",makes a nursing face.\n19854,anetv_NM4nBojCSwQ,17648,A man is seen holding up a shirt to the camera while the cameraman speaks and pans back to the man with the shirt. The man,A man is seen holding up a shirt to the camera while the cameraman speaks and pans back to the man with the shirt.,The man,gold,continues putting up weights in a cage while he moves all around and then plays and watches them.,switches back to the shoe and continues to dance with the dog.,holding speaking and points to an iron near him.,runs his fingers around the water while only to talk to the camera.\n19855,lsmdc1048_Gran_Torino-92121,6390,They drive off and someone keeps walking. His sister someone,They drive off and someone keeps walking.,His sister someone,gold,\"steps away, punches him in the chest, then smirks.\",\"is sitting on the front steps, reading.\",leads the boys away.,kisses someone's cheek.\n19856,lsmdc1048_Gran_Torino-92121,6391,The five mean - looking Hmong guys get out. Someone,The five mean - looking Hmong guys get out.,Someone,gold,walks over to someone.,\"turns to someone who drops the tissues to someone's lap, then jogs to her dad.\",watches someone by a window as she looks out the window.,stops the truck and waves pass the driver.\n19857,lsmdc1048_Gran_Torino-92121,6392,Someone walks over to someone. Someone,Someone walks over to someone.,Someone,gold,heads away from him.,wakes up in bed.,ruffles someone's hair.,appears behind him and peeks toward the refrigerator as someone slides his door.\n19858,anetv_wZEf-Bs__sU,14334,\"A man walks down the path, then runs. He\",\"A man walks down the path, then runs.\",He,gold,takes a giant leap into a sand pit.,climbs onto the pommel horse and makes a jump in the sand.,goes to do tricks and throws the javelin.,\"falls off and hops on a mat again, then catches down the rope.\"\n19859,anetv_wZEf-Bs__sU,14333,A group of athletes are on a track outside. A man,A group of athletes are on a track outside.,A man,gold,is sitting on stands talking to a track.,picks up a flag and gives it to a young man in lifts.,is seen holding a pinata in his hand.,\"walks down the path, then runs.\"\n19860,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6993,\"With their jaws hanging open, someone and someone stare at the lumbering grizzly. Someone\",\"With their jaws hanging open, someone and someone stare at the lumbering grizzly.\",Someone,gold,watch from the window then ahead.,thinks about it and leafs through the uncooked.,bars an arm across someone's chest as though protecting him from hitting the brakes hard.,\"notice her frowning bashfully, then leans forward and pulls her into a kiss.\"\n19861,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7018,\"A wide view shows the high - reaching beam, its glow shifting with someone's hand movements. Later, someone and someone\",\"A wide view shows the high - reaching beam, its glow shifting with someone's hand movements.\",\"Later, someone and someone\",gold,walk past two dwarf formations.,stroll from the restaurant.,\"start skiing down a river in tubes, inter tubes.\",climb on the platform as he approaches.\n19862,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7003,The bear looks up at him. Someone,The bear looks up at him.,Someone,gold,squints apprehensively as buster lumbers toward him.,looks at the rapidly approaching wave.,brings out a red duffel knife and some keys.,\"throws his arms around someone's neck, and pulls him aside.\"\n19863,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7004,A swat from Buster sends the gun flying. Someone,A swat from Buster sends the gun flying.,Someone,gold,rams the leather guard by the intruder's car.,trudges back to the station and turns away.,\"lies down, then stares inside the cabin.\",leans away from buster's wide - open jaws.\n19864,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6983,\"About 50 yards away, someone stands doubled over, catching his breath. Oblivious to his observers, he\",\"About 50 yards away, someone stands doubled over, catching his breath.\",\"Oblivious to his observers, he\",gold,\"tethered, with his hand, attached to a falcon, reaches out and takes one foot at his sturdy right hand.\",\"shoots back at the singer as the fighter lingers on the crowd, shields him as he finishes talks with his curly hair.\",straightens and fires a series of furious punches and kicks at the air.,fills more vehicles and rushes at the wheel.\n19865,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7000,\"Someone searches with someone, someone, and someone, who carry tranquilizer guns. Meanwhile, Buster\",\"Someone searches with someone, someone, and someone, who carry tranquilizer guns.\",\"Meanwhile, Buster\",gold,throws another over her shoulder then carries on into the bullpen.,work down the platform fires someone's guns.,heads through an open doorway where someone leads a evil girl to the tv.,roams a sunny woodland path.\n19866,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6999,Someone pulls three tranquilizer rifles from a cabinet. Someone,Someone pulls three tranquilizer rifles from a cabinet.,Someone,gold,\"removes the axe one by one, and starts descending the chimney.\",stands at her side.,leans on a metal door.,\"searches with someone, someone, and someone, who carry tranquilizer guns.\"\n19867,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6988,\"Pressing her lips together, someone allows a warm amused smile. Noticing the others watching, someone\",\"Pressing her lips together, someone allows a warm amused smile.\",\"Noticing the others watching, someone\",gold,affects a stoic demeanor and holds his hand up in a wave.,shoots her a harsh look then drags the chair forward.,pauses to chat with his labrador.,\"stands, avoiding the vampire that meets her.\"\n19868,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6991,\"As they stop at an intersection, someone frowns. Buster casually\",\"As they stop at an intersection, someone frowns.\",Buster casually,gold,lopes across the street in front of the suv.,takes a run and runs backward.,\"takes off his hat holding a framed photo, a craggy face and a chin frame.\",pushes fearfully against the jutting wall with his ax to the ceiling.\n19869,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7010,\"At the restaurant, someone selects a song on the jukebox. Sitting at the bar, someone\",\"At the restaurant, someone selects a song on the jukebox.\",\"Sitting at the bar, someone\",gold,slows and lowers his gaze.,\"goes, and a third spider, drops it the front of the glass.\",stares off with a troubled look.,interlaces his hands in coffee.\n19870,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6982,\"Someone and someone watch him go. Behind them, someone\",Someone and someone watch him go.,\"Behind them, someone\",gold,\"eyes someone, gazing toward the bus.\",shakes her head and makes notes.,beckons the men towards the cabin.,sits in the giant's tv.\n19871,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6984,\"Oblivious to his observers, he straightens and fires a series of furious punches and kicks at the air. Someone\",\"Oblivious to his observers, he straightens and fires a series of furious punches and kicks at the air.\",Someone,gold,gives a pitying frown.,hangs from rocket fire as his men lift someone.,\"studies him, then strikes hands with the disk.\",has stunned an arriving hydra policeman.\n19872,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7002,\"Tranquilizer gun in hand, someone freezes as he spots the grizzly on a hill. The bear\",\"Tranquilizer gun in hand, someone freezes as he spots the grizzly on a hill.\",The bear,gold,\"pulls away, leaving someone alone.\",looks up at him.,rubs oil from his head.,then drops the blades.\n19873,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6998,\"As the bear trudges away, someone makes a call. Someone\",\"As the bear trudges away, someone makes a call.\",Someone,gold,looks down at her bloody hands.,takes a seat in a recording station.,sulks into the sad garden.,pulls three tranquilizer rifles from a cabinet.\n19874,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7009,\"Someone peers at the screen. At the restaurant, someone\",Someone peers at the screen.,\"At the restaurant, someone\",gold,selects a song on the jukebox.,\"turns to someone, presses a bar back and listens.\",is lined by another taxi.,sits on the couch.\n19875,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7017,\"Lifting his head, he looks over and finds her swirling her fingers over the flashlight, as she stares at the sky with a dreamy expression. A wide view\",\"Lifting his head, he looks over and finds her swirling her fingers over the flashlight, as she stares at the sky with a dreamy expression.\",A wide view,gold,shows a large expanse of sunlight standing over the cove's crest.,\"shows someone in a white patch resembling a brown, pale - colored dress.\",shows a map in paris drive by.,\"shows the high - reaching beam, its glow shifting with someone's hand movements.\"\n19876,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6980,\"In the restaurant, someone fights his way out of the restroom and stares at someone. Someone\",\"In the restaurant, someone fights his way out of the restroom and stares at someone.\",Someone,gold,removes his overcoat and leans close to someone.,\"heads out of the way, leaving the studio behind.\",prepares his homemade salad as he talks.,runs after the truck.\n19877,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7016,\"He smiles back, then returns his gaze to the sky. Lifting his head, he\",\"He smiles back, then returns his gaze to the sky.\",\"Lifting his head, he\",gold,skates purposefully through the woods past the four - by - four.,\"looks over and finds her swirling her fingers over the flashlight, as she stares at the sky with a dreamy expression.\",notices three boys resting on the cliffs.,spots a zombie approaching from a doorway.\n19878,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6990,\"Someone beams fondly at him. Now, someone's suv\",Someone beams fondly at him.,\"Now, someone's suv\",gold,arrives at the outside of the hangar.,pulls up outside the burnham house.,stops someone's phone light shining and switches on the television.,travels a winding road among verdant hills.\n19879,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6994,Someone bars an arm across someone's chest as though protecting him from hitting the brakes hard. The bear,Someone bars an arm across someone's chest as though protecting him from hitting the brakes hard.,The bear,gold,rips away the tears and slams him against the windshield.,reaches out to the latino guy then slams the door in.,\"rocks a block laying in a gym lot below, then rockets to the ground and raises up the bank.\",moves to the driver side window.\n19880,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7001,\"Meanwhile, Buster roams a sunny woodland path. Tranquilizer gun in hand, someone\",\"Meanwhile, Buster roams a sunny woodland path.\",\"Tranquilizer gun in hand, someone\",gold,freezes as he spots the grizzly on a hill.,exhales through binoculars tearfully.,rockets toward someone and finds his sword drawn.,emerges on a wooden jetty as cars swerve past him.\n19881,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7014,\"He raises his beer bottle in a toast, then shakes his head. Meanwhile, a flashlight's beam\",\"He raises his beer bottle in a toast, then shakes his head.\",\"Meanwhile, a flashlight's beam\",gold,moves back and forth in the sky as someone and someone lie side by side on the roof.,reflects the posh office in a sheath.,sweeps down a red hallway with his head hung.,shows someone arriving at the end of the lacrosse court celebrating and being congratulated by his teacher.\n19882,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7006,\"Someone gazes down at the bear. Later, Buster\",Someone gazes down at the bear.,\"Later, Buster\",gold,holds her head and kisses her.,arrives in a lamp lit room and blasts the fire onto a stage.,lies in a shelter in his enclosure.,\"crosses himself uneasily, rocking the wheel across the dirt and fully bushes.\"\n19883,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6989,\"Noticing the others watching, someone affects a stoic demeanor and holds his hand up in a wave. Someone\",\"Noticing the others watching, someone affects a stoic demeanor and holds his hand up in a wave.\",Someone,gold,beams fondly at him.,\"works his austere, then gazes sailors at the alien giant who advances.\",tumbles down the hallway toward a man and tosses the mutt to someone.,gives it a short kiss.\n19884,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6987,\"Someone remorsefully rights the barrel, then continues pacing. Pressing her lips together, someone\",\"Someone remorsefully rights the barrel, then continues pacing.\",\"Pressing her lips together, someone\",gold,kisses her window thoughtfully.,\"wags her brow, peering uneasily at the gun.\",allows a warm amused smile.,\"shoves her foot into the elevator, then allows a smile as she stares back at them.\"\n19885,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6996,\"The grizzly smells the window, then rises onto his hind legs and presses a paw to the glass. He\",\"The grizzly smells the window, then rises onto his hind legs and presses a paw to the glass.\",He,gold,drops back down to all fours and sniffs the side mirror.,\"hits one of someone's ears, and leaves the foot of the veranda, blowing at the evenstar.\",\"sets through his hand, and starts to wipe the knife with a cloth.\",steps out with a grin.\n19886,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7008,The vet swipes his credit card through a portable card reader and types in an amount. Someone,The vet swipes his credit card through a portable card reader and types in an amount.,Someone,gold,taps his right fist and pounds out a massive.,drives around the car.,peers at the screen.,\"indicates someone, who's wanting to answer.\"\n19887,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7011,\"Sitting at the bar, someone stares off with a troubled look. Someone\",\"Sitting at the bar, someone stares off with a troubled look.\",Someone,gold,shifts his perplexed eyes and nods.,\"lays her hands on her hips and points her right hand at the man's lips, which fades to briefly release smoke.\",\"lowers her gaze, then glances back at someone.\",meets someone's gaze and jerks her head.\n19888,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6979,\"Someone pauses just long enough to give a derisive sneer. In the restaurant, someone\",Someone pauses just long enough to give a derisive sneer.,\"In the restaurant, someone\",gold,\"walks someone to another stitch, then takes her table and walks across the room toward the remaining girls.\",hands someone a copy of some kind of mob's missing klimt.,waves at the chair way as well.,fights his way out of the restroom and stares at someone.\n19889,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6995,The bear moves to the driver side window. The grizzly,The bear moves to the driver side window.,The grizzly,gold,\"smells the window, then rises onto his hind legs and presses a paw to the glass.\",stand beside the car's rear.,\"bear with legs askew, gazing at the dark siblings.\",\"cloister on their hiding place raises its arms around someone, who's in front of him.\"\n19890,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7005,Air and saliva hit his face. Someone,Air and saliva hit his face.,Someone,gold,grabs his wrists and pushes around his ears as he roars up the council.,walks into his loft where someone lies in his bed next to early tap water.,\"flinches, then watches as buster lies down on the grass.\",\"is thrown into a pool, followed by seven clips of him kissing.\"\n19891,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7015,\"Meanwhile, a flashlight's beam moves back and forth in the sky as someone and someone lie side by side on the roof. Someone\",\"Meanwhile, a flashlight's beam moves back and forth in the sky as someone and someone lie side by side on the roof.\",Someone,gold,ends someone's view for someone.,turns on his bunk.,holds the light on her stomach.,looks around as it pushes past it.\n19892,lsmdc3087_WE_BOUGHT_A_ZOO-41289,6992,\"Buster casually lopes across the street in front of the suv. With their jaws hanging open, someone and someone\",Buster casually lopes across the street in front of the suv.,\"With their jaws hanging open, someone and someone\",gold,watch someone get out of the car.,stare at the lumbering grizzly.,\"proceed along the wooded, flanked with all of them.\",drag someone to the ground.\n19893,lsmdc3087_WE_BOUGHT_A_ZOO-41289,7013,Her lips twitch in a thoughtful expression. The zoo owner,Her lips twitch in a thoughtful expression.,The zoo owner,gold,shuts the drapes and someone leads him off.,\"clenches his jaw, then sucks in a breath.\",bites the boy's hand.,rides a toy bike through its strings.\n19894,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6763,9188,He crumples up the newspaper and throws it into the fireplace. Sparks,He crumples up the newspaper and throws it into the fireplace.,Sparks,gold,appears with the glowing orb.,billed as someone's hand quickly conceals someone's wrist.,fly out of the fire.,slices off the cloak.\n19895,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6763,9187,\"Turning the page, he finds someone's article. He\",\"Turning the page, he finds someone's article.\",He,gold,finds a note b in drawings.,sits in bed reading someone's notebook.,crumples up the newspaper and throws it into the fireplace.,\"sits up, studying the image, which hovers up over his head.\"\n19896,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6763,9185,Someone is waiting in the owlery as the black owl flies in through the window. He,Someone is waiting in the owlery as the black owl flies in through the window.,He,gold,hold the arm of the boy.,\"takes the note from its beak, unfolds it eagerly, and reads.\",is still straddling the bed.,comes into view and takes the cigarette from someone's hand.\n19897,anetv_Z7BPvGPizYE,18286,The man melts a wax bar across the ski surface with an iron then uses it to blend in the wax. A man,The man melts a wax bar across the ski surface with an iron then uses it to blend in the wax.,A man,gold,\"pulls a white container from a body, scrubs it with a cloth and a fine iron to fix.\",\"rolls side ski with all cloth, then takes possession of the ski up along the roof.\",places hands on the end of the metal box and puts the spare tire over a lifeboat.,sharpens a flat edge then scrapes the outer layer of wax from the skis surface.\n19898,anetv_Z7BPvGPizYE,18285,A man uses a course brush and hand towel to prepare the ski to be worked on while it sits on a rack. The man,A man uses a course brush and hand towel to prepare the ski to be worked on while it sits on a rack.,The man,gold,then steps up to adjust the gun on the rowing machine and pulls out the top and wipes his face again.,makes a break into the snow.,melts a wax bar across the ski surface with an iron then uses it to blend in the wax.,shows how to remove the roofing rims so the cleaner video is given.\n19899,anetv_Z7BPvGPizYE,18287,A man sharpens a flat edge then scrapes the outer layer of wax from the skis surface. The man,A man sharpens a flat edge then scrapes the outer layer of wax from the skis surface.,The man,gold,uses a course brush then a towel to finish preparing the skis surface.,turns and drops the helmets on the ground.,continues doing martial arts around the position of the buffer.,puts it on top of the roof and proceeds to scrape the wax from a blue scraper.\n19900,anetv_hPIHCG5n7RI,5080,A small group of people are seen playing a game of lacrosse on a field with a man walking towards them. The man,A small group of people are seen playing a game of lacrosse on a field with a man walking towards them.,The man,gold,continues performing leads with his speaking and holding a stick up in the camera.,speaks to the camera and gives the camera a thumbs up.,yells to the players as they run up and down the field and continues to watch them as they play.,continues doing several kicks and tricks with one another and running across the field.\n19901,lsmdc3024_EASY_A-11422,16906,\"As she smiles and nods, he leans his forehead against hers. Someone\",\"As she smiles and nods, he leans his forehead against hers.\",Someone,gold,\"beams kindly, and gives another nod.\",is seated on a couch.,\"seems uncertain, tinged and angry.\",walks toward the bus.\n19902,lsmdc3024_EASY_A-11422,16912,\"Behind her back, several guys crudely thrust their pelvises. As she\",\"Behind her back, several guys crudely thrust their pelvises.\",As she,gold,\"halts at the bar, the skiptracer follows after her.\",\"flaps her wand, someone smiles.\",\"turns around, they sheepishly stop.\",\"squats watches, the first girl is kicked away.\"\n19903,lsmdc3024_EASY_A-11422,16907,\"Someone beams kindly, and gives another nod. He\",\"Someone beams kindly, and gives another nod.\",He,gold,hands her the panties.,takes glances at the safe.,studies his photos and furrows his brow.,gives a thumbs in.\n19904,lsmdc3024_EASY_A-11422,16911,\"As someone makes her way through the hallway, other teens clear a path and stare at her. She nearly\",\"As someone makes her way through the hallway, other teens clear a path and stare at her.\",She nearly,gold,\"leans her back, then looks into her eyes.\",reaches down and grabs her hands to someone's hand.,bumps into someone at a doorway.,makes its way past him.\n19905,lsmdc3024_EASY_A-11422,16904,\"Pausing, someone grabs her arm. Olives\",\"Pausing, someone grabs her arm.\",Olives,gold,meets his earnest gaze.,\"his jaw, she smiles and lifts his forehead.\",grabs her blouse and starts to leave.,\"her hand, someone hugs.\"\n19906,lsmdc3024_EASY_A-11422,16908,He hands her the panties. Someone,He hands her the panties.,Someone,gold,\"salutes him, then stuffs them in his pocket.\",pulls out a tray of leeds football player.,sits them in the box.,is dumbfounded as he cries as she hangs up.\n19907,lsmdc3024_EASY_A-11422,16902,She punches him in the gut. Someone,She punches him in the gut.,Someone,gold,gets quite quickly to the field.,pats across her dead legs.,steps out of position and aims at him.,hops down off the bed as someone recovers.\n19908,lsmdc3024_EASY_A-11422,16905,\"Olives meets his earnest gaze. As she smiles and nods, he\",Olives meets his earnest gaze.,\"As she smiles and nods, he\",gold,holds his father's impassive gaze.,\"takes the saddle off his other hand, goes down a narrow path onto a dock.\",looks scissors to the back of her neck.,leans his forehead against hers.\n19909,lsmdc3024_EASY_A-11422,16910,\"The bully gives him a friendly shove into a crowd of congratulatory males. As someone makes her way through the hallway, other teens\",The bully gives him a friendly shove into a crowd of congratulatory males.,\"As someone makes her way through the hallway, other teens\",gold,follow someone toward the records chamber.,clear a path and stare at her.,drop onto a bowling ball at a ground level.,join as someone wipes down her car.\n19910,lsmdc3024_EASY_A-11422,16909,\"Someone salutes him, then stuffs them in his pocket. He\",\"Someone salutes him, then stuffs them in his pocket.\",He,gold,\"smooths up their scarred palm, and removes it.\",closes it with a black glove.,heads into the hallway.,sticks the finger in his mouth.\n19911,lsmdc3024_EASY_A-11422,16903,\"Someone hops down off the bed as someone recovers. As he stands, she\",Someone hops down off the bed as someone recovers.,\"As he stands, she\",gold,musses his hair and rumbles his shirt.,glances at her back.,backs to the doorway and looks up at the sky.,shuts her eyes with a nimrod glare.\n19912,anetv_MNduaJtXy1A,1047,They begin playing a set of drums while another man is seen playing the piano. More people,They begin playing a set of drums while another man is seen playing the piano.,More people,gold,walk in and out of frame as people continue to play on the side.,are seen walking closer to singing around the house.,continue to play piano as well as speaking to the camera.,are seen on the sides dancing to the music.\n19913,anetv_Lan3mtnCmlw,10462,We sit above the man seeing his bubbles. The man,We sit above the man seeing his bubbles.,The man,gold,swims under a rock arch.,takes his arm off.,peels out of his side edges to speak.,looks on a steel table exposing a wound.\n19914,anetv_Lan3mtnCmlw,10460,We see a Santa clause underwater in the ocean. We,We see a Santa clause underwater in the ocean.,We,gold,man shown holding a moving with the man holding his kayak and talking to the camera.,\", wearing a wetsuit, and white oars to come over one person's shoulders and give a life vest and his boat.\",'s specialized sailing boat flips through the water along empty beach.,see white and yellow fish swimming around the man.\n19915,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8016,\"Breaking from his hold, she dances an improvise solo, waving the fan in front of her chest, her waist, and even her bottom. Suddenly, she\",\"Breaking from his hold, she dances an improvise solo, waving the fan in front of her chest, her waist, and even her bottom.\",\"Suddenly, she\",gold,leaves her apartment and immediately bounds off.,bellows at someone and looks around collapses.,\"disappears only to reappear behind him, swaying wildly from side to side, all the while waving the fan in front of her.\",cries and flips back over.\n19916,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8012,\"Her high - heeled, sandaled feet fall in with his dance step. Holding both her hands in his, he\",\"Her high - heeled, sandaled feet fall in with his dance step.\",\"Holding both her hands in his, he\",gold,twirls them up and down her wrist and shakes them off.,locks it with her.,leans back on the floor.,\"twirls her towards him, twisting her arms across her waist.\"\n19917,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8017,\"She whacks him again, but then settles back in his arms. Later, they\",\"She whacks him again, but then settles back in his arms.\",\"Later, they\",gold,reach the apartment floor.,walk back to their hotel.,run into someone's apartment.,\"cross a cobble - wide street, which transforms into a silver limo.\"\n19918,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8014,\"Resuming their initial position, holding waist and shoulder, they whirl altogether. She\",\"Resuming their initial position, holding waist and shoulder, they whirl altogether.\",She,gold,wears a morning robe.,\"closes someone's eyes, and someone turns, stares up at her.\",turns and look relieved.,leans back seductively and flicks the fan.\n19919,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8011,\"She grasps his shoulder and tosses back her long, straightened hair, then steps back as he steps forward. Her high - heeled, sandaled feet\",\"She grasps his shoulder and tosses back her long, straightened hair, then steps back as he steps forward.\",\"Her high - heeled, sandaled feet\",gold,come out from the lowering gate.,tumble in the snow.,fall in with his dance step.,form a line filled with female guests.\n19920,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8015,She leans back seductively and flicks the fan. Someone,She leans back seductively and flicks the fan.,Someone,gold,telekinetically lifts her nostrils back and tiptoes from the roof.,holds up a box of french cake.,\"snatches her large rose to her chest and looks him across the face, throws her arms back into his torso and rises.\",looks both startled and pleased as she flutters her eyelashes at him from behind the fan.\n19921,lsmdc1019_Confessions_Of_A_Shopaholic-80772,8013,\"Holding both her hands in his, he twirls her towards him, twisting her arms across her waist. Keeping their heads still, they\",\"Holding both her hands in his, he twirls her towards him, twisting her arms across her waist.\",\"Keeping their heads still, they\",gold,move around in a circle.,touch their ears and dance toward the floor.,glance down directly into each other's eyes.,lie motionless waiting as they approach.\n19922,anetv_DqHWMWY-r1o,7009,\"A person throw a heavy in an stadium full of people, then people measure where the ball landed. Then, the man\",\"A person throw a heavy in an stadium full of people, then people measure where the ball landed.\",\"Then, the man\",gold,\"take a ball next to the opposing player, but is blue a strike.\",walks while reporters and cameramen follow him on the field.,runs on ball to different other sides.,takes some long throws and receive out of the pit.\n19923,anetv_DqHWMWY-r1o,7010,\"Then, the man walks while reporters and cameramen follow him on the field. After, the man\",\"Then, the man walks while reporters and cameramen follow him on the field.\",\"After, the man\",gold,adjusts his skateboard and the man stops running.,and girl play foosball in a skate park.,\"stops, grabs the man and uses his hands to tie his hair.\",puts on a long sleeve shirt while a cameraman film him.\n19924,anetv_JTQsElq5UN4,18474,People are sitting in the stands watching a game. People,People are sitting in the stands watching a game.,People,gold,are sitting on the sidelines watching the game.,are playing volleyball on the field.,are playing a game of ping pong.,are sitting in the stands watching them.\n19925,anetv_JTQsElq5UN4,1517,Many people watch the match around the sides and zooms in on the crowd while the players continue playing. The game then,Many people watch the match around the sides and zooms in on the crowd while the players continue playing.,The game then,gold,ends with one another holding a fifth bat while holding the individual's head.,ends with the team hugging one another and giving hand shakes to the other team.,ends with individuals shown fighting and smiling at a crowd.,speaks to one another while the camera captures angles of his movements.\n19926,anetv_JTQsElq5UN4,1516,Four people are seen standing before a ping pong table hitting the ball back and fourth to one another. Many people,Four people are seen standing before a ping pong table hitting the ball back and fourth to one another.,Many people,gold,are seen playing with another ball and still throwing balls into the audience.,hit the ball past several bare opponents into the wall with kicking ball balls pucks along the large frame.,watch the match around the sides and zooms in on the crowd while the players continue playing.,hit balls on the sides of the pong and continue to jump around the couch.\n19927,lsmdc0041_The_Sixth_Sense-67706,17739,He is just about to answer his own question when he sees a hand go up. Someone,He is just about to answer his own question when he sees a hand go up.,Someone,gold,snatches a bag from the shelf and lifts it with his digicam.,steps toward the bed.,looks surprised to see who it is.,\"goes, carrying the bag of food.\"\n19928,anetv_xxXspvK4tEY,5545,\"An elderly woman is sitting on the couch with a young girl, showing her how to thread yard onto a knitting hook. The girl\",\"An elderly woman is sitting on the couch with a young girl, showing her how to thread yard onto a knitting hook.\",The girl,gold,\"sits down, arms folded, from her fingers as she lays his hand on top.\",takes off her sweater and hands it to the girl who was knitting the letter in her hands.,smiles and laughs as she figures out how to handle it.,bends over the camel wooden anchors and watches from the bottom of the basket.\n19929,lsmdc3022_DINNER_FOR_SCHMUCKS-10661,18162,\"They move from shoulder to cheek then forehead, then tap each other's chins with their fists. Someone\",\"They move from shoulder to cheek then forehead, then tap each other's chins with their fists.\",Someone,gold,scribbles the grudgingly atop a thin sheet of paper.,backs out with his hands up.,\"steps toward him, too, to halves.\",joins in surprise as he sinks back to sleep.\n19930,lsmdc3022_DINNER_FOR_SCHMUCKS-10661,18164,They stop and someone hugs them both. Someone,They stop and someone hugs them both.,Someone,gold,takes a seat beside him.,pushes him.,frowns good - naturedly.,hurry out of the house and picks someone up and walks out.\n19931,lsmdc1010_TITANIC-76994,11349,Someone smiles as she picks up the silver hand mirror. Someone,Someone smiles as she picks up the silver hand mirror.,Someone,gold,\"turns the mirror in her hands, catching her own reflection in the cracked glass.\",gazes at her tearfully.,takes it and raises it.,stares at her desperate friend.\n19932,lsmdc1010_TITANIC-76994,11352,She picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings. Someone,She picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings.,Someone,gold,strides to her father's portrait.,gulps as she stares at the comb.,waves herself in the rain and runs her fingers over them together.,blissfully discovers the number on it.\n19933,lsmdc1010_TITANIC-76994,11350,\"Someone turns the mirror in her hands, catching her own reflection in the cracked glass. She\",\"Someone turns the mirror in her hands, catching her own reflection in the cracked glass.\",She,gold,\"presses his lips close to hers, then shakes his head.\",turns on the tap.,removes a white from the holder from someone's left eye and lowers it to her left hand.,sets down the mirror and examines other objects.\n19934,lsmdc1010_TITANIC-76994,11351,She sets down the mirror and examines other objects. She,She sets down the mirror and examines other objects.,She,gold,tries to peel his high shoes.,hugs her as she studies him with a warm smile.,then begins for the camera.,picks up a silver and glass hair comb adorned with an ornamental insect with outstretched wings.\n19935,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8651,She turns back and punches him full in the face. Someone and his cronies,She turns back and punches him full in the face.,Someone and his cronies,gold,sit at the table.,make a run for it.,sit in the passenger seat.,go in and out of their stalls.\n19936,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8648,\"They leave the school, walk through the cloister and into the grounds. Someone and his cronies\",\"They leave the school, walk through the cloister and into the grounds.\",Someone and his cronies,gold,rush to the main entrance of the room filled with photographs and stone beams.,turn to the door.,\"jump both their hands together, trying to balance.\",are on the slope above someone's cottage.\n19937,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8652,People run down the steep steps cut into the grassy slope towards someone's cottage. They,People run down the steep steps cut into the grassy slope towards someone's cottage.,They,gold,tumble off the boys.,run through the living room where someone carries a witches dog.,react and take in front of the herd.,\"find him gazing sadly out of the window at buckbeak, who is chained to a post in the pumpkin patch.\"\n19938,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8645,\"A worried look on his face, he runs out of the room and hurries away down the circular staircase. People\",\"A worried look on his face, he runs out of the room and hurries away down the circular staircase.\",People,gold,enter the gambling room.,peer through a ruined archway.,jogs out with the box and disappears inside.,head back to the reception door.\n19939,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8647,A man wearing a black hood is sharpening the curved blade of a huge axe. They,A man wearing a black hood is sharpening the curved blade of a huge axe.,They,gold,don't search the wheelbarrow.,\"leave the school, walk through the cloister and into the grounds.\",man is left inside his coat shows the red weight.,dull peacock shows people.\n19940,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8646,People peer through a ruined archway. A man wearing a black hood,People peer through a ruined archway.,A man wearing a black hood,gold,\"smiles, with his hair into a cap on over his head.\",is sharpening the curved blade of a huge axe.,drop a small boat and slides it in his fingertips.,dangles from a chair alone a curtain.\n19941,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8650,\"As she turns away, someone smirks. She\",\"As she turns away, someone smirks.\",She,gold,disintegrates in a drawer.,turns to go out the window.,turns his blonde back to an jubilant group.,turns back and punches him full in the face.\n19942,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9789,8649,\"Someone and his cronies are on the slope above someone's cottage. Furious, someone\",Someone and his cronies are on the slope above someone's cottage.,\"Furious, someone\",gold,\"threatens someone, her wand at his throat.\",eyes the father fiercely affectionately.,\"hurries toward the cottage, and hurries off.\",\"steps across the lawn, speeds up the aisle again, and lands in the front of someone's truck.\"\n19943,anetv_PG3f3Wkkptk,6569,A man guides a camel with kids riding on the back along a beach shoreline. Beach goers,A man guides a camel with kids riding on the back along a beach shoreline.,Beach goers,gold,stand and walk along the shoreline in bathing suits.,compete with umbrellas in venues.,are seen mowing benches in the plaza.,play paintball on the road while someone's mother talks.\n19944,anetv_EQNJfWiAS28,16195,\"A man joins her, dancing side to side in a flamenco style dance. They\",\"A man joins her, dancing side to side in a flamenco style dance.\",They,gold,continue dancing as a small crowd gathers to watch.,begin pulling the dancers forward and twirl her bowing.,begin clapping and sitting in place.,begin dancing at each other.\n19945,anetv_EQNJfWiAS28,15857,A woman dances on a street while spectators watch. An older man,A woman dances on a street while spectators watch.,An older man,gold,walks nearby to the woman.,lights a cigarette in the dark.,walks forward gesturing her hands.,swings horizontally on the floor.\n19946,anetv_EQNJfWiAS28,15858,An older man walks nearby to the woman. The older man,An older man walks nearby to the woman.,The older man,gold,is laughing and helping him to a tree.,joins the woman in dancing.,chops more vegetables and cheese.,shows off his cake.\n19947,lsmdc0033_Amadeus-66769,4933,\"This is the formidable someone and her three daughters, people. All are enraptured by the spectacle and someone\",\"This is the formidable someone and her three daughters, people.\",All are enraptured by the spectacle and someone,gold,is just the old successful guy.,heads off with a faucet.,is especially enraptured by being there at all.,'s great accordian for them near the wall.\n19948,lsmdc1008_Spider-Man2-75150,5972,\"With a smile on her face, she saunters away. Someone\",\"With a smile on her face, she saunters away.\",Someone,gold,wraps her arms around her neck.,enters his apartment building.,walks slowly to a kitchen counter.,reaches into the pocket of the coat.\n19949,lsmdc1008_Spider-Man2-75150,5980,\"He rolls off the satchel strapped to his back, sits down on the bed, his face glum. His back\",\"He rolls off the satchel strapped to his back, sits down on the bed, his face glum.\",His back,gold,smashes into the hood.,is plunged back into the main chamber.,is turned towards the frantic captain.,is to the opened window.\n19950,lsmdc1008_Spider-Man2-75150,5979,He switches on the light in his single room home. He,He switches on the light in his single room home.,He,gold,open a small detonator from a wall under it.,\"rolls off the satchel strapped to his back, sits down on the bed, his face glum.\",\"pauses, gazing out, leaning against the wall.\",stands at a table in someone's bathroom and unzips a glass - length coat from a shelf.\n19951,lsmdc1008_Spider-Man2-75150,5977,The door is shut in someone's face. Someone,The door is shut in someone's face.,Someone,gold,stops to waterski and opens a chest of drawers.,lets himself into his apartment.,sleeps sprawled - collapsed in the hospital.,unzips the square object and points on it.\n19952,lsmdc1008_Spider-Man2-75150,5978,Someone lets himself into his apartment. He,Someone lets himself into his apartment.,He,gold,studies corners out display.,switches on the light in his single room home.,see a egg spread out in the center of the room.,\"and someone sit at the kitchen building, chatting.\"\n19953,lsmdc1008_Spider-Man2-75150,5985,\"He closes the door, then opens it. Someone\",\"He closes the door, then opens it.\",Someone,gold,climbs onto a couch and puts his blanket back over the bed.,leans forward and shuts the door.,\"holds up a present, then worms outside the door.\",opens the door behind him and runs along.\n19954,lsmdc1008_Spider-Man2-75150,5974,A door opens behind someone. A man playing cards,A door opens behind someone.,A man playing cards,gold,leans against a wall.,looks out at him.,surround a young red - haired man.,line a table in a bullpen.\n19955,lsmdc1008_Spider-Man2-75150,5976,\"Someone's daughter, someone, drops a ladle and sets fire to the stove. The door\",\"Someone's daughter, someone, drops a ladle and sets fire to the stove.\",The door,gold,\"shows someone, who sleeps close to it.\",closes with a candle.,is shut in someone's face.,\"bursts open, leaving someone alone.\"\n19956,lsmdc1008_Spider-Man2-75150,5984,Someone barges past someone and into the restroom. He,Someone barges past someone and into the restroom.,He,gold,leads the way into his dark - paneled office.,\"closes the door, then opens it.\",opens his rear bedroom door.,\"hands someone a glass of soda, and reads the documents.\"\n19957,lsmdc1008_Spider-Man2-75150,5982,\"Beside them is a radio set, which he switches on. The morning sun\",\"Beside them is a radio set, which he switches on.\",The morning sun,gold,pours off of the x's rays.,sets a chandelier that lies behind the tripod.,shines over an churning storm and covered dusty's lawn.,lights up the skyline of new york.\n19958,lsmdc1008_Spider-Man2-75150,5973,Someone enters his apartment building. He,Someone enters his apartment building.,He,gold,climbs a dark stairway and reaches a landing.,lies a large duffel bag on his bed.,\"makes her way over a threshold, shutting the door behind him.\",frowns at someone.\n19959,lsmdc1008_Spider-Man2-75150,5983,The morning sun lights up the skyline of New York. Someone,The morning sun lights up the skyline of New York.,Someone,gold,\"sits at a table, looking for the van.\",barges past someone and into the restroom.,mounts a white sun shined through the ocean.,\"sits at a computer with lip lenses on her eyes, arranging the portion on someone's laptop.\"\n19960,lsmdc1008_Spider-Man2-75150,5981,His back is to the opened window. Beside them,His back is to the opened window.,Beside them,gold,is a bedroom of tall - white nightgown.,\"is a radio set, which he switches on.\",\"is the trolley cargo ship, someone with a black hood.\",\", someone climbs into the back of someone's car and jogs off.\"\n19961,anetv_jAk-vBePtTU,19431,A man walks into frame and sits before a set of drums. He,A man walks into frame and sits before a set of drums.,He,gold,begins spinning himself around playing while holding a phone racket.,turns around and throws them at a level while leaning side to side.,\"walks away, shaking his head and ends by smiling to himself.\",begins playing the drums with his hands continuously.\n19962,anetv_jAk-vBePtTU,7344,\"A boy approach a chair and sits, then he touch a radio. Then, the boy\",\"A boy approach a chair and sits, then he touch a radio.\",\"Then, the boy\",gold,starts to play two tam - tams using both hands.,adds the instruments to the bottom of the roof.,stand and play the guitar as he plays.,\"does a turn on the dust, headset and hands to turn on the light.\"\n19963,anetv_jAk-vBePtTU,19432,He begins playing the drums with his hands continuously. He,He begins playing the drums with his hands continuously.,He,gold,moves up and down with his fingers moving applauds with the stick.,puts a hand on the violin as the camera follows his movements.,continues to talk about the instrument while holding the instrument in his hands.,continues to play the drums and pauses with his hands down.\n19964,anetv_xzQRc682Isc,13041,\"Then, the man throw the ball and walks away. A man wearing a pink poncho\",\"Then, the man throw the ball and walks away.\",A man wearing a pink poncho,gold,is holding a tennis ball and making up shoes with his bat.,is flipped on the other side of the table to take a shot.,stands on front a camera.,kicks the ball to his legs.\n19965,anetv_xzQRc682Isc,13040,\"A man stands in a circle spinning a heavy ball to perform hammer throw. Then, the man\",A man stands in a circle spinning a heavy ball to perform hammer throw.,\"Then, the man\",gold,walks to the microphone again.,throws the ball and walks away.,throw the ball and walks away.,\"swings a racket, and then starts break and throw.\"\n19966,anetv_xzQRc682Isc,13039,Men stand in a track and two of them raise his arms. A man,Men stand in a track and two of them raise his arms.,A man,gold,prepares to throw a exercises times in a field while kicking balls with the racket.,in a green shirt releases a guard by a blow.,uses a tommy on a entire part of the body.,stands in a circle spinning a heavy ball to perform hammer throw.\n19967,anetv_xzQRc682Isc,11513,\"The players are standing in the field in their jackets, one by one they came forward to raise their hands up. A chubby athlete swing his javelin ball, then spin and then threw the javelin ball, then he\",\"The players are standing in the field in their jackets, one by one they came forward to raise their hands up.\",\"A chubby athlete swing his javelin ball, then spin and then threw the javelin ball, then he\",gold,climbs on the sand that pigeon across a body of sand and threw it.,jumped to a yellow box and jumped and fell.,run again towards it instructs men on and other team scores.,walked outside the net towards the people with umbrella.\n19968,lsmdc1011_The_Help-78471,8963,\"Later, someone sits down at a prettily laid table by a window in the kitchen to have her lunch. She\",\"Later, someone sits down at a prettily laid table by a window in the kitchen to have her lunch.\",She,gold,plug down plates of cracked eggs and jar - carpeted sandwich.,puts a napkin on her lap and brings a fried chicken wing to her lips.,pours some brandy and pours an ounce of vodka up to come on.,\"trots up to her basket, then opens a wooden door and opens it.\"\n19969,anetv_dukaFaotZGc,2887,Two men quickly dismantle a red chimney. One man,Two men quickly dismantle a red chimney.,One man,gold,blindfold and heave the kids awake.,gets out of the car and brush his car off the car standing next to it.,puts wood over the gaping hole.,goes to hit each other.\n19970,anetv_dukaFaotZGc,2888,One man puts wood over the gaping hole. The man then,One man puts wood over the gaping hole.,The man then,gold,pokes it with a fire extinguisher.,covers the wood with shingles.,walks inside a hole and slices a rock square in line.,cuts some fish around a hole.\n19971,anetv_5qBzjfW-sMs,954,A young man is seen putting a piece of wood onto a bark and holds up an axe. He then,A young man is seen putting a piece of wood onto a bark and holds up an axe.,He then,gold,finds several people change.,\"swings the axe the bark breaking it in half, followed by him yelling into the air.\",swings the ax over and takes his left paw.,cuts the ax before throwing it into a placing log and cutting it in half.\n19972,anetv_oezddremlnE,10031,A close up of a girl's hair is shown followed by a person braiding her hair. The person,A close up of a girl's hair is shown followed by a person braiding her hair.,The person,gold,clips the woman's hair down and holding the hair by her face.,takes her hair up and continues braiding her hair.,continues braiding the hair and the camera pans away from her face.,puts her bangs all over her eyes.\n19973,anetv_taHfD8TFfX4,11879,A baseball player is seen standing on a patch of dirt with another behind him. The man then,A baseball player is seen standing on a patch of dirt with another behind him.,The man then,gold,begins to play violin.,begins to kick a different puck across the court with the racket on the ice.,begins to hit a ball.,bounces the ball all around the field and ends by talking to the camera.\n19974,anetv_3_hJrb_aDWU,4120,A kayak rider drifts in the bay of an ocean. Two kayak riders,A kayak rider drifts in the bay of an ocean.,Two kayak riders,gold,paddle down a river on the waters near a river.,talk while sitting in their kayaks.,paddle through the river under his turbulent sky.,tread water into the raft.\n19975,anetv_JU_o9ZtH-VM,3402,A balded man is seen speaking to the camera with a head sitting behind him with a head full of hair. He then cuts the hair on the dummy in a certain fashion and the camera,A balded man is seen speaking to the camera with a head sitting behind him with a head full of hair.,He then cuts the hair on the dummy in a certain fashion and the camera,gold,zooms in on the finished result in the end.,moves up and down clips the cats ends.,stops him with the strength.,pans around his point of view to show how it works all in place.\n19976,anetv_CTIVIXvCI3c,4388,She lines up the girls in front of a large crowd and the kids begin dancing on the stage. The little ones,She lines up the girls in front of a large crowd and the kids begin dancing on the stage.,The little ones,gold,continue to dance and twirl on stage and walk off stage.,watch his fellow host take turns by trudging away from underneath the table and the other one cheerleading.,return and interviews her audience while she speaks to the audience at the end.,jumps in the cheering crowd on and the crowd cheers.\n19977,anetv_CTIVIXvCI3c,4387,A small child is seen hoping along the floor when a woman leads in more young dancers. She lines up the girls in front of a large crowd and the kids,A small child is seen hoping along the floor when a woman leads in more young dancers.,She lines up the girls in front of a large crowd and the kids,gold,look up and show the area again.,continue to return food to her.,begin dancing on the stage.,continue to measure the distance.\n19978,lsmdc0023_THE_BUTTERFLY_EFFECT-59694,19258,She gets up and puts on her coat. She,She gets up and puts on her coat.,She,gold,starts drying her hair.,climbs out of the car and races through.,tosses his wallet over her shoulder at him and leaves.,puts it down and closes her letter.\n19979,lsmdc0023_THE_BUTTERFLY_EFFECT-59694,19262,\"Someone, startled, stares at the young kid skeptically as she absently continues toward the mailbox. Someone comes running across the street to someone's aid, and someone\",\"Someone, startled, stares at the young kid skeptically as she absently continues toward the mailbox.\",\"Someone comes running across the street to someone's aid, and someone\",gold,shrugs and follows after him.,wears an upper back.,holds it tighter as he looks outside.,helps someone pay vehicles.\n19980,lsmdc0023_THE_BUTTERFLY_EFFECT-59694,19260,Someone enters his familiar looking dorm and hears the familiar sounds of someone having sex with another naked gothic co - someone. Someone and the co - ed,Someone enters his familiar looking dorm and hears the familiar sounds of someone having sex with another naked gothic co - someone.,Someone and the co - ed,gold,do a tambourine dance.,are watching tv with a massive tabby watching.,pose within the matching furniture.,quickly cover themselves in the blankets and leave.\n19981,lsmdc0023_THE_BUTTERFLY_EFFECT-59694,19261,\"Someone and the co - ed quickly cover themselves in the blankets and leave. Someone, startled,\",Someone and the co - ed quickly cover themselves in the blankets and leave.,\"Someone, startled,\",gold,looks horrified as someone takes someone into the phone.,makes a call and sprints away.,stares at the young kid skeptically as she absently continues toward the mailbox.,\"peeks around, looking with a huge afro.\"\n19982,anetv_YiBenqCKGcA,11802,In the background people are practicing gymnastics and moving the mats. women,In the background people are practicing gymnastics and moving the mats.,women,gold,are doing somersaults together in a choreography.,are dancing in a dance kitchen in a gym.,\"are swimming on the floor, doing gymnastic flips.\",are in the background watching and dancing.\n19983,anetv_YiBenqCKGcA,7178,\"She goes forward and backward, and does multiple backflips. Three girls\",\"She goes forward and backward, and does multiple backflips.\",Three girls,gold,get together and begin to perform backflips at the same time.,are flipping over some stairs and finally secured in pink plastic.,crouch down the stairs and stones on the board for support.,\"emerge from the grass, aiming their guns.\"\n19984,anetv_YiBenqCKGcA,7179,Three girls get together and begin to perform backflips at the same time. The girls,Three girls get together and begin to perform backflips at the same time.,The girls,gold,alternate performances for the camera.,swim after the teen while the other smiles and clap.,\"wrap a account with people on the ropes, and gets out on the water.\",open up and begins perform workout with each other with machines.\n19985,anetv_YiBenqCKGcA,7177,A woman is doing flips on a mat. She,A woman is doing flips on a mat.,She,gold,\"goes forward and backward, and does multiple backflips.\",is doing on a mat in a practicing exercise.,jumps up to a bar of judges.,jumps off the bar and lands onto the mat.\n19986,anetv_YiBenqCKGcA,11801,Woman is practicing somersaults on a roofed gym and women behind her are watching her. in the background people,Woman is practicing somersaults on a roofed gym and women behind her are watching her.,in the background people,gold,are interviewed as the band film her.,are practicing gymnastics and moving the mats.,are swinging in her double squatting.,are in a pool standing in front of a living room.\n19987,anetv_e1TfVkNgitY,1744,\"After, the male grabs the two bars and pulls himself up and holds his body up before going into a hand stand, he comes down, and does another one. The gymnast\",\"After, the male grabs the two bars and pulls himself up and holds his body up before going into a hand stand, he comes down, and does another one.\",The gymnast,gold,does several more tricks and then does a flip off of the bars.,goes over to the seventh man while several other individuals sit in the background.,\"does paper ramps in a large crowd, then goes back down but end up sliding down on the mat.\",\"continue drumming then spin and flip, turning and with each other celebrating, after a band pass by.\"\n19988,anetv_e1TfVkNgitY,1742,A blue logo appears across the screen with white words in it. A young male gymnast,A blue logo appears across the screen with white words in it.,A young male gymnast,gold,turns on a stage and shouts out his name in a zumba manner.,is then shown in a room in front of a balance beam.,is standing there dancing with some of his views and begins dancing moves.,is shown in slow motion.\n19989,anetv_z5xZrF421HE,834,A woman starts rock climbing up a wall. People,A woman starts rock climbing up a wall.,People,gold,walk going side to side and doing tricks.,are walking and hiking along a dirt trail.,walk onto a rope outside.,are backward down some tunnel by one side.\n19990,anetv_z5xZrF421HE,3398,A group is walking through tall grass in a field. They,A group is walking through tall grass in a field.,They,gold,go to a large cliff and put on equipment.,chase a ball back and forth indoors.,do some tricks with the dog.,are playing a game of tug of war.\n19991,anetv_z5xZrF421HE,3399,They go to a large cliff and put on equipment. They then,They go to a large cliff and put on equipment.,They then,gold,begin moving the slide back and forth.,climb up the cliff one by one.,slice the rock together.,pass by several other people trying to keep their inner tubes down.\n19992,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11731,In her bedroom someone puts on an oversized T - shirt. Someone,In her bedroom someone puts on an oversized T - shirt.,Someone,gold,sits up in his daze.,reaches for the check display.,slips it against her black friend.,approaches the door to her apartment.\n19993,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11723,\"The image quickly fades to black. Now at a nightclub, someone\",The image quickly fades to black.,\"Now at a nightclub, someone\",gold,sits alone sipping a drink as she watches a crowded dance floor.,holds one to pay no attention.,looks like a giant dejectedly.,gropes through a glass of champagne.\n19994,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11726,\"Later, holding a vial she doses someone then kisses her. The pierced hacker\",\"Later, holding a vial she doses someone then kisses her.\",The pierced hacker,gold,comes a shockwave like blows.,removes his glow softly.,pauses normal from her belly.,turns the woman's back to a wall.\n19995,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11730,Someone carries a takeout bag and two coffees up a stairwell. In her bedroom someone,Someone carries a takeout bag and two coffees up a stairwell.,In her bedroom someone,gold,gets out of the limo.,the door slides shut.,takes up a letter before dressing out with a grocery bag.,puts on an oversized t - shirt.\n19996,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11733,Someone heads for her bathroom. She,Someone heads for her bathroom.,She,gold,helps the kid out of the tub.,\"stares ahead, thinking about a dozen.\",pauses eyeing the door.,scotty perched on her lap.\n19997,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11724,\"Now at a nightclub, someone sits alone sipping a drink as she watches a crowded dance floor. The pictures\",\"Now at a nightclub, someone sits alone sipping a drink as she watches a crowded dance floor.\",The pictures,gold,relax in a vacant lounge inn.,turn two to many more scenes of him playing various different objects.,show the painting of a chinese boy in most celebrities dress outfits.,\"pulses in and out of view, offering us fleeting glimpses of the establishment's trendy young patrons.\"\n19998,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11727,\"As the exotic young beauty grins in ecstasy, the image fades to black. Someone\",\"As the exotic young beauty grins in ecstasy, the image fades to black.\",Someone,gold,can glimpse the bright sun of a candle - bright christmas jam in her hall.,wakes with a start.,turns slowly and shoves her hand through her lower mouths.,gazes down at the shattered club.\n19999,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11736,\"She opens the door a crack and peeks out, but someone yanks it wide open. Someone\",\"She opens the door a crack and peeks out, but someone yanks it wide open.\",Someone,gold,removes his helmet from the darkness.,recoils as he barges in.,turns and heads out.,pulls his phone out and points at the phone still trying to clip him.\n20000,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11735,\"She pivots away from the door. She opens the door a crack and peeks out, but someone\",She pivots away from the door.,\"She opens the door a crack and peeks out, but someone\",gold,yanks it wide open.,motions her to the tent anxiously.,sits on the kitchen table.,is still oblivious and being taped in.\n20001,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11728,Someone wakes with a start. Her lover,Someone wakes with a start.,Her lover,gold,stirs as she climbs out of bed.,floats slowly out in front of her.,returns to their knees and lights them on fire.,peers at his uncle's swollen eye.\n20002,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11729,Her lover stirs as she climbs out of bed. Someone,Her lover stirs as she climbs out of bed.,Someone,gold,looks down at her breasts and scans them.,carries a takeout bag and two coffees up a stairwell.,jogs downstairs in shallow water.,sends men gazing down the hill.\n20003,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11734,She pauses eyeing the door. She,She pauses eyeing the door.,She,gold,pivots away from the door.,steps over her elegant apartment building.,smiles as she walks away.,nods helplessly and smiles.\n20004,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33842,11739,\"Her exotic lover steps out, then turns back and gives her a kiss. Someone\",\"Her exotic lover steps out, then turns back and gives her a kiss.\",Someone,gold,kisses him again.,ambles toward the kitchen.,drives a squad car and escapes as they enter the apartment.,punches her in the crotch.\n"
  },
  {
    "path": "data/val.csv",
    "content": ",video-id,fold-ind,startphrase,sent1,sent2,gold-source,ending0,ending1,ending2,ending3,label\n0,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94857,18313,Students lower their eyes nervously. She,Students lower their eyes nervously.,She,gold,\"pats her shoulder, then saunters toward someone.\",turns with two students.,walks slowly towards someone.,wheels around as her dog thunders out.,2\n1,anetv_dm5WXFiQZUQ,18419,He rides the motorcycle down the hall and into the elevator. He,He rides the motorcycle down the hall and into the elevator.,He,gold,looks at a mirror in the mirror as he watches someone walk through a door.,\"stops, listening to a cup of coffee with the seated woman, who's standing.\",exits the building and rides the motorcycle into a casino where he performs several tricks as people watch.,pulls the bag out of his pocket and hands it to someone's grandma.,2\n2,anetv_dm5WXFiQZUQ,18418,The motorcyclist gets out of bed and prepares to leave by bathing using the bathroom and reading the newspaper. He,The motorcyclist gets out of bed and prepares to leave by bathing using the bathroom and reading the newspaper.,He,gold,shoots a look at her.,makes his way past it and peers out a window.,rides the motorcycle down the hall and into the elevator.,\"sits on the ground beside her pants, clinging by a flannel wool.\",2\n3,lsmdc3017_CHRONICLE-7117,6588,We pan over to three girls chatting by a leaf blower. It,We pan over to three girls chatting by a leaf blower.,It,gold,looks away for a second.,leaves the man to the middle of the room and nods to the camera.,levitates and blows one girl's skirt up.,closes a phone before her door.,2\n4,anetv_KNyM0KvDHMM,8893,A man is in a bike shop and stand next to a bike while talking. The man,A man is in a bike shop and stand next to a bike while talking.,The man,gold,uses a piece of wood to use it.,takes skis out of the bike and is shown one last time.,holds a pointy tool that uses to fix the handle of the bike.,begins working out on his bike.,2\n5,anetv_KNyM0KvDHMM,8894,The man holds a pointy tool that uses to fix the handle of the bike. The man,The man holds a pointy tool that uses to fix the handle of the bike.,The man,gold,\"takes out the cover of the handlebar and rise with the tool and spray liquid inside, then press the handle with his hand.\",continues to take a bite of the bakes.,laughs and does little more flips.,looks down at the young man and stands next to a man dressed as a man stands on a sidewalk.,0\n6,anetv_KNyM0KvDHMM,3305,He begins taking off a bike's handlebars and moving them around. He,He begins taking off a bike's handlebars and moving them around.,He,gold,sprays down the handlebars and continues speaking.,slides the items apart and instead drives forward.,puts on some shingles and cuts them off to the center.,begins to cross his bike as if in a game to catch it.,0\n7,anetv_KNyM0KvDHMM,3304,A man is shown speaking to the camera and holding up various tools and products. He,A man is shown speaking to the camera and holding up various tools and products.,He,gold,continues cutting the pieces all around the roof and presenting it to the camera.,continues putting the sandwich into the bike and shows how to use it.,begins taking off a bike's handlebars and moving them around.,continues scraping the hair while looking directly into the camera.,2\n8,anetv_veNIfCkd1Pw,723,\"The judge supervises the routine of the gymnast. Then, the gymnast spins\",The judge supervises the routine of the gymnast.,\"Then, the gymnast spins\",gold,flips in a competition and the man claps his hands dismounting.,holding the higher bar and jumps stand on the mat.,to do his routine on the bars.,to leave hands and lands in a high fall throw.,1\n9,anetv_veNIfCkd1Pw,722,A gymnast performs uneven bars routine while people watch. The judge,A gymnast performs uneven bars routine while people watch.,The judge,gold,supervises the routine of the gymnast.,makes the judges take her hands as well.,comes in on her and shows the performance on the court.,walks over the mat and cuts hands movements.,0\n10,anetv_OXbfnzs-qUU,17945,The camera is blurry as it focuses on the knitting. The reading lady,The camera is blurry as it focuses on the knitting.,The reading lady,gold,shakes her head and the woman looks over and the photographer's away.,is revealed under the bed sheets and has a static paper to her hand.,puts her paper down.,is reading across the newspaper.,2\n11,anetv_OXbfnzs-qUU,3103,A woman is seen knitting while speaking to the camera and another girl walking into frame. The girls,A woman is seen knitting while speaking to the camera and another girl walking into frame.,The girls,gold,continue to speak with one another while the girl knits.,swing her legs around and wrap her legs around.,begin posing on their feet while falling down.,move back and fourth on the rope.,0\n12,anetv_OXbfnzs-qUU,17944,A lady close to the camera knits. The camera,A lady close to the camera knits.,The camera,gold,holds up on inspection.,gets up and gets brushed.,is blurry as it focuses on the knitting.,is getting steady on eye contact.,2\n13,anetv_OXbfnzs-qUU,3104,The girls continue to speak with one another while the girl knits. The,The girls continue to speak with one another while the girl knits.,The,gold,continue with their conversation.,speaks extensively about drinking tea and happen to music.,put the bars around while speaking and play.,continues to play the instrument while looking to the camera.,0\n14,anetv_z5bc9KKiAGI,7708,He is throwing darts at a wall. A woman,He is throwing darts at a wall.,A woman,gold,squats alongside flies side to side with his gun.,throws a dart at a dartboard.,collapses and falls to the floor.,is standing next to him.,3\n15,anetv_y8ENWnuzCIE,14556,A woman is laying back in a chair getting her lip pierced. The piercer,A woman is laying back in a chair getting her lip pierced.,The piercer,gold,removes the tool and pulls on her lip.,uses her pink toothbrush while staring at the camera.,points at the end of her nose.,shows her eye out several different angles.,0\n16,anetv_y8ENWnuzCIE,2851,She is getting a piercing and the man is about to start. He,She is getting a piercing and the man is about to start.,He,gold,points at her foot for sure she is dancing.,\"has just removed the weights, while doing her indoor exercise and goes through to the window.\",is inside a bathroom and talks showing how you can rinse and wipe her sink well.,sticks the needle through her bottom lip.,3\n17,anetv_y8ENWnuzCIE,2850,A girl is sitting in a chair with a gloved man with his hands in her mouth. She is getting a piercing and the man,A girl is sitting in a chair with a gloved man with his hands in her mouth.,She is getting a piercing and the man,gold,open the cats right eye.,holds behind the camera then wraps the contact.,begins to laugh in the room.,is about to start.,3\n18,anetv_fynO9wmckLA,1641,\"Two young men are standing indoors, talking to the camera. They\",\"Two young men are standing indoors, talking to the camera.\",They,gold,are playing on the sidewalk in front of the players.,\"demonstrate how they run on a track, and do a long jump into sand.\",begin to rake and work very fast.,drive through several track areas.,1\n19,anetv_bEniqIC5Ric,8887,\"A woman rides a camel holding a rode with her right hand while a man pulls the camel. Then, the camel stops and the woman\",A woman rides a camel holding a rode with her right hand while a man pulls the camel.,\"Then, the camel stops and the woman\",gold,gets down from the camel.,continue to talk to others.,shakes hands with her dog.,climb onto the back.,0\n20,lsmdc1059_The_devil_wears_prada-98762,12064,Someone falters in the foyer as there are three closet doors to choose from. Someone,Someone falters in the foyer as there are three closet doors to choose from.,Someone,gold,looks up the spiral staircase and sees the twins looking over the banister rail on an upper level.,'s lassos a whip as a pirate.,sits on a couch with his arms tucked in his pockets.,\"opens the door to people, who are packing clothes in their bags, along with the kid burst into the living room.\",0\n21,anetv_1RKExOpIGas,16833,Men are riding motorbikes in a path. people in motorbikes,Men are riding motorbikes in a path.,people in motorbikes,gold,stands behind the dog.,are riding the camels.,are doing motocross in a dusty path.,are sitting on a horse.,2\n22,anetv_1RKExOpIGas,11444,A man is seen climbing on a dirt bike and shown speaking to the camera with others. Several clips,A man is seen climbing on a dirt bike and shown speaking to the camera with others.,Several clips,gold,are shown of people riding dirt and bikes around a track while following and speaking to the camera.,are shown showing ramps as well as speaking to the audience.,are shown of people riding around on dirt bikes.,are shown of people riding on dirt bikes as well as riding down the road.,2\n23,anetv_1RKExOpIGas,11445,Several clips are shown of people riding around on dirt bikes. One person falls off their bike and the people,Several clips are shown of people riding around on dirt bikes.,One person falls off their bike and the people,gold,begin working on the mat at the same time.,get back onto their bikes.,continue riding around on the track.,continue climbing with one another.,2\n24,lsmdc3004_500_DAYS_OF_SUMMER-1463,5750,It winks down at him as it flies off. Someone,It winks down at him as it flies off.,Someone,gold,notices her naked body.,watches an assault rifle and drags him through to the police car.,puts his bag back on.,\"freezes, listening to him.\",2\n25,lsmdc3004_500_DAYS_OF_SUMMER-1463,5738,Someone comes out of the bathroom and stares. Someone,Someone comes out of the bathroom and stares.,Someone,gold,stands with an army.,holds his gaze as someone hands a cup to a neighbor.,sit on the bed someone follows at someone who sits on the main floor with a shawl and a tripod.,switches off the bathroom light and approaches the bed.,3\n26,lsmdc3004_500_DAYS_OF_SUMMER-1463,5748,It hops onto his finger. He,It hops onto his finger.,He,gold,begins to stumble and knocks along the pipe.,strokes its head and lets it go.,slams someone to his ground to jump straight.,used his fingers to wipe some raw blush off someone's sleeve.,1\n27,lsmdc3004_500_DAYS_OF_SUMMER-1463,5751,Someone puts his bag back on. He,Someone puts his bag back on.,He,gold,hoists himself onto his feet and shoves her away.,dashes off to work.,looks out at the ball of fire.,watches from the corner of the pool.,1\n28,lsmdc3004_500_DAYS_OF_SUMMER-1463,5752,He dashes off to work. He,He dashes off to work.,He,gold,swims past a warehouse and up a hill.,skips happily through the front door and to the lift.,exits the car with a crowbar loaded into the bar.,walks away in the apartment.,1\n29,lsmdc3004_500_DAYS_OF_SUMMER-1463,5749,He strokes its head and lets it go. It,He strokes its head and lets it go.,It,gold,sound the general's nails.,'s a pound stone hits his own car that blocks his breath.,winks down at him as it flies off.,lets out a sigh of relief.,2\n30,lsmdc3004_500_DAYS_OF_SUMMER-1463,5742,Someone boogies his way past the display and through a park. He,Someone boogies his way past the display and through a park.,He,gold,\"reacts through the rain to someone, heading out to the sunshine gathering for her.\",\"cheerfully greets the people he meets, even kissing one woman's hand.\",paces posted and her.,\"empties a rocky flip gap, knocking the bar back to his post.\",1\n31,lsmdc3004_500_DAYS_OF_SUMMER-1463,5746,He's hoisted shoulder high by his dancing friends. The large crowd of dancers,He's hoisted shoulder high by his dancing friends.,The large crowd of dancers,gold,lets the man off her feet with the stars.,is joined by a marching band in full colorful military style uniform.,stare up at them in their early white bridal styles.,are unaware standing down in his midst.,1\n32,lsmdc3004_500_DAYS_OF_SUMMER-1463,5745,Someone grabs a baseball bat and knocks an imaginary ball out of the park. He,Someone grabs a baseball bat and knocks an imaginary ball out of the park.,He,gold,puts the envelope on the wall.,tries to scramble around to make someone's second shot.,'s hoisted shoulder high by his dancing friends.,throws it at him as he sways into a corner.,2\n33,lsmdc3004_500_DAYS_OF_SUMMER-1463,5740,\"In daylight, he walks out of the apartment building with a broad grin on his face. He\",\"In daylight, he walks out of the apartment building with a broad grin on his face.\",He,gold,sits into the jack - o - lantern.,plugs a key to a pocket's pocket and reaches out to pick up something.,pauses to check his look in a shop window.,\"shuts his eyes, his brow knitted.\",2\n34,lsmdc3004_500_DAYS_OF_SUMMER-1463,5743,He daps and slaps with a couple of guys he meets on his sunny walk to work. He,He daps and slaps with a couple of guys he meets on his sunny walk to work.,He,gold,sits on a bench illuminated by the rain.,\"gets him in the nuts and staggers away, finishing his coffee.\",tosses his bag to a woman and starts to dance.,finds his muddy mark on a scooter's dusty cupcake and sets it on the bed behind someone.,2\n35,lsmdc3004_500_DAYS_OF_SUMMER-1463,5754,His boss has a new assistant with a large afro. Someone,His boss has a new assistant with a large afro.,Someone,gold,\"touches a green graphic on the lips of a black felt machine, and on tape.\",pins up his laptop.,stares gloomily at mackenzie.,'s arm is held in a flash club.,2\n36,lsmdc3004_500_DAYS_OF_SUMMER-1463,5741,The reflection he sees is Harrison Ford as someone Solo winking back at him. Someone,The reflection he sees is Harrison Ford as someone Solo winking back at him.,Someone,gold,trips at the head of the floor and jumps off to his knees.,dives straight to the surface.,lies in the hospital bed.,boogies his way past the display and through a park.,3\n37,lsmdc3004_500_DAYS_OF_SUMMER-1463,5739,\"Someone switches off the bathroom light and approaches the bed. In daylight, he\",Someone switches off the bathroom light and approaches the bed.,\"In daylight, he\",gold,\"lights it and puts it on as he sits down, lit by the light.\",walks out of the apartment building with a broad grin on his face.,\"turns to the side of the hall, silhouetted against the dark luminous light.\",has thought someone's video in the apartment.,1\n38,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12264,\"The girls sit at easels, stretching bulbous renditions of the obese woman. In the front row, someone\",\"The girls sit at easels, stretching bulbous renditions of the obese woman.\",\"In the front row, someone\",gold,waits a minute to congratulates his father.,sits with her hands next to someone.,passes someone on a corridor balcony.,wears a look of disgust.,3\n39,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12263,\"Later, we drift from someone's socks up his chunky bare legs. He lies on his side with the sheet covering his torso, his head\",\"Later, we drift from someone's socks up his chunky bare legs.\",\"He lies on his side with the sheet covering his torso, his head\",gold,propped up on the swing of his hand.,splayed on his shoulder and his eyes meet open.,framed by the camera's grasp.,propped up on his forearm.,3\n40,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12267,She yanks off the sheet. Someone,She yanks off the sheet.,Someone,gold,walks along the side to her office.,glances out to find someone lying down on the toilet.,pulls a fire alarm.,smiles as she sleeps in the closet.,2\n41,anetv_aFpWNTroghs,9534,He gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree. He,He gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree.,He,gold,continues on with his tools and ends what he has done without looking at.,uses the wand to loosen the string next to the tree.,is lying on the ground with his back to the wall.,takes out some clippers and clips some of the roots.,3\n42,anetv_aFpWNTroghs,9535,\"He takes out some clippers and clips some of the roots. Last, the video\",He takes out some clippers and clips some of the roots.,\"Last, the video\",gold,cuts to a sharpener and how much he was trying.,ends with the closing captions.,\"shows him grabbing a bow, hanging fish and trimming the hedge.\",ends with the color of scissors and cuts.,1\n43,anetv_aFpWNTroghs,9532,An intro comes into the screen for a video about removing mulch. A man,An intro comes into the screen for a video about removing mulch.,A man,gold,uses a vacuum to flatten out with the machine.,flies into a poster while a factory is shown.,digs his heel into the base of a tree to push away the mulch.,picks up the paste and sets it in a boot.,2\n44,anetv_aFpWNTroghs,9533,A man digs his heel into the base of a tree to push away the mulch. He,A man digs his heel into the base of a tree to push away the mulch.,He,gold,gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree.,takes his t - shirt off and then corners his trunk back on the trailer.,\"hill through a forest, with circles stretched out behind the trees.\",use his wand to cut up leaves of burning grass of trees.,0\n45,lsmdc3047_LIFE_OF_PI-22928,12395,\"He lowers his eyes, tries to bite back his smile and fails. The two men\",\"He lowers his eyes, tries to bite back his smile and fails.\",The two men,gold,\"stare past scans at someone, listening.\",\"reach their screws, then side pulls to approach it.\",share a warm smile.,shake hands and dance together in numerous different areas.,2\n46,lsmdc3047_LIFE_OF_PI-22928,12400,It contains a news clipping featuring someone at the end of his journey. The writer,It contains a news clipping featuring someone at the end of his journey.,The writer,gold,scowls at the teen as someone holds him close.,looks up at the frosted window in his bare apartment.,flips to the last page.,clears across the street and walks over to someone who sits on a branch next to captain someone.,2\n47,lsmdc3047_LIFE_OF_PI-22928,12397,Someone's eyes dart toward a window. Someone,Someone's eyes dart toward a window.,Someone,gold,crosses toward the door.,smashes it against a wall behind him.,leads someone up a staircase.,stands in front of the monitor.,0\n48,lsmdc3047_LIFE_OF_PI-22928,12394,The writers eyes sparkle and the corners of his lips turn up. He,The writers eyes sparkle and the corners of his lips turn up.,He,gold,\"looks toward someone, and someone can't stand watching tears.\",\"lowers his eyes, tries to bite back his smile and fails.\",\"glances up at his mother, shifting someone his foot, and looks at her from behind the bed.\",picks up the tray and begins applause.,1\n49,lsmdc3047_LIFE_OF_PI-22928,12402,The writer looks up from the file and beams. The writer,The writer looks up from the file and beams.,The writer,gold,shakes hands with someone's beautiful wife and children.,gives him a serious look.,then pats someone's back and regards his brother with a concerned frown.,looks over his shoulder with a slight smirk.,0\n50,lsmdc3047_LIFE_OF_PI-22928,12401,The writer flips to the last page. The writer,The writer flips to the last page.,The writer,gold,\"looks over, taken aback.\",rips an arm out of someone's hand.,gives some self look.,looks up from the file and beams.,3\n51,lsmdc3047_LIFE_OF_PI-22928,12404,\"Now the teenage someone floats on the ocean gazing toward us. As he smiles, the tiger\",Now the teenage someone floats on the ocean gazing toward us.,\"As he smiles, the tiger\",gold,regards him with a wounded gaze.,starts to move toward the pylon.,appears to his left facing away from us.,gets up and sits to join the girls.,2\n52,lsmdc3047_LIFE_OF_PI-22928,12405,\"As he smiles, the tiger appears to his left facing away from us. The boy fades from view and the sparkling ocean\",\"As he smiles, the tiger appears to his left facing away from us.\",The boy fades from view and the sparkling ocean,gold,skyline looms over him.,moves up at them.,goes to tilt his point of view.,becomes the mexican jungle.,3\n53,lsmdc3047_LIFE_OF_PI-22928,12399,\"Seated on a couch, the young writer glances after him then opens the insurance file. It\",\"Seated on a couch, the young writer glances after him then opens the insurance file.\",It,gold,keeps on his laptop.,leads her into a room where a group of working thugs remain.,contains a news clipping featuring someone at the end of his journey.,takes a few steps towards the door.,2\n54,lsmdc3047_LIFE_OF_PI-22928,12406,The boy fades from view and the sparkling ocean becomes the Mexican jungle. He,The boy fades from view and the sparkling ocean becomes the Mexican jungle.,He,gold,\"shapes flower petals down in the sunshine, then races across to the landing, clad in an elegant silver dress.\",shows next a table.,waves it under the water and we land on someone.,\"vanishes within the thick, jungle growth.\",3\n55,lsmdc3047_LIFE_OF_PI-22928,12396,The two men share a warm smile. Someone's eyes,The two men share a warm smile.,Someone's eyes,gold,show a long cartoon picture.,dart toward a window.,flare into a faint glow.,follow the animal as she goes.,1\n56,lsmdc3047_LIFE_OF_PI-22928,12393,\"Someone regards the younger man with a calm, sad expression. Someone\",\"Someone regards the younger man with a calm, sad expression.\",Someone,gold,folds the contract to her waist and presses it to her mouth.,gives a faint smile.,\"stands by someone, then glances away.\",stares as tears shine on her face.,1\n57,anetv_JHFjlLtpIcU,652,\"A gymnast runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips. She\",\"A gymnast runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips.\",She,gold,flips off the bar and lands on her feet.,picks and prepares for stand of bars by blocking the score off the mat.,\"watches the performance, then finishes to do the same.\",picks his hands up to break the air and performs multiple flips.,0\n58,anetv_JHFjlLtpIcU,653,She flips off the bar and lands on her feet. Her fellow gymnasts,She flips off the bar and lands on her feet.,Her fellow gymnasts,gold,watch them dance but does n't fit in the same time.,work on her balance.,perform laps with the baton.,run up to her in excitement.,3\n59,anetv_JHFjlLtpIcU,651,A crowd watches a gymnastics show. A gymnast,A crowd watches a gymnastics show.,A gymnast,gold,kicks a baton on the lawn.,runs in front of the beam.,is seen diving after a beam before lifting her up before.,\"runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips.\",3\n60,anetv_NGF0rQiDxNk,18116,\"A female gymnast is spinning and jumping on a pair of high beams as her coach watches, prepared to catch her. He\",\"A female gymnast is spinning and jumping on a pair of high beams as her coach watches, prepared to catch her.\",He,gold,spins with her ballerina batons and begins by picking up the small clamp at a different time.,stands catch the sides of her hands as the game ends.,\"begins to lift up another triangle on them, which it spins and lands on the stage.\",\"steps onto the beam as she dismounts, arms in the air.\",3\n61,anetv_KBfCXpgGhdw,13385,Men are standing on motorbikes getting ready for a motocross competition. man,Men are standing on motorbikes getting ready for a motocross competition.,man,gold,\"places the ladders onto a fence and winds up a marching wall, high with hammer and a stone.\",is talking to the camera and standing on a podium.,stands outside in the field going at arms of people and leading a long jumping calf in front.,drops the javelin to the ground and jumps it very high.,1\n62,anetv_KBfCXpgGhdw,13383,Men are standing on a sandy area walking. man,Men are standing on a sandy area walking.,man,gold,stands throwing his team in the field.,are talking to the camera standing on the sand.,stands at the front of a line.,is wearing a harness on a man's shoulders.,1\n63,anetv_KBfCXpgGhdw,13382,A lot of people are sitting on terraces in a big field and people is walking in the entrance of a big stadium. men,A lot of people are sitting on terraces in a big field and people is walking in the entrance of a big stadium.,men,gold,are running in a gym in front of a woman on the ground.,are in street in a parking lot celebrating with horses and horses.,are playing instruments in a black room with a man playing the drums.,are standing on a sandy area walking.,3\n64,anetv_KBfCXpgGhdw,13384,Man are talking to the camera standing on the sand. men,Man are talking to the camera standing on the sand.,men,gold,are in a gym playing beer pong.,are jumping in front of a mountain and doing tricks on a capoeira course.,are walking and plays paintball in a park.,are standing on motorbikes getting ready for a motocross competition.,3\n65,anetv_hSnTYQ9osIg,206,Two people are outside in ball dancing in a plaza as a group of people surround them and watch. People come and go to watch the two people dance and then they finally,Two people are outside in ball dancing in a plaza as a group of people surround them and watch.,People come and go to watch the two people dance and then they finally,gold,fight over their right arm and then take off in the end.,get done and spin to onlookers to keep each other from fighting and trying to win the match.,\"stop dancing, bow and grabs a cloth to wash their face.\",stop by at the end dance until they row the burning two.,2\n66,anetv_N0DA6RpIf5Y,9124,He uses the rake to push the leaves into piles. He,He uses the rake to push the leaves into piles.,He,gold,\"continues to rake, clearing a path of dirt underneath.\",puts a handful of flowers on his arm.,\"stops the dirt from the pile, scattering of the snow.\",paints the fence while laying on the grass.,0\n67,anetv_N0DA6RpIf5Y,9123,A man is raking leaves in a large yard. He,A man is raking leaves in a large yard.,He,gold,is raking dry leaves with a leaf blower.,\"sits on the grass by the pool, then starts putting leaves on the lawn mower.\",spins around using a leaf blower.,uses the rake to push the leaves into piles.,3\n68,lsmdc3025_FLIGHT-11836,15086,\"Someone puts his bandaged hand to his mouth, as tears flow down his face. He\",\"Someone puts his bandaged hand to his mouth, as tears flow down his face.\",He,gold,continues to play a bag.,\"runs back to someone, who's staring over the net.\",drops the phone on his stomach.,grabs a needle and shakes his head.,2\n69,anetv_tYZJ4O5Hsz4,11517,\"A little girl plays softly the drums holding two sticks while she is singing on a microphone. The, the girl\",A little girl plays softly the drums holding two sticks while she is singing on a microphone.,\"The, the girl\",gold,take in the greeting and an asian girl followed by two people standing on stage.,holds the microphone up and begins to girl dance an entire time.,claps the girls hands anxiously.,plays more fast the drums.,3\n70,anetv_FFZOmzFc_us,9550,The man begins washing the dishes in a quick motion and throwing them into a pile. The man,The man begins washing the dishes in a quick motion and throwing them into a pile.,The man,gold,bends over and rinses his hands and more leaves.,continues washing the dishes while looking back to the camera.,laughs with a hippie who is looking up to play.,continues spraying down the face and knocking the man.,1\n71,anetv_FFZOmzFc_us,9549,A man is seen wearing an apron in front of sink stacked with many dishes. The man,A man is seen wearing an apron in front of sink stacked with many dishes.,The man,gold,puts cup and soap in the rag and twists several pots off the table.,begins to put on a shoe.,begins washing the dishes in a quick motion and throwing them into a pile.,sits back up to the camera and looks up from the screen.,2\n72,lsmdc3023_DISTRICT_9-11048,5657,Now an eight - wheeled armored transport sits parked outside. Inside mnu headquarters someone,Now an eight - wheeled armored transport sits parked outside.,Inside mnu headquarters someone,gold,uses a cleaning kit against a shadowy doorway.,paces in front of someone.,kisses someone's forehead.,watches with horrified expressions on their faces.,1\n73,lsmdc3023_DISTRICT_9-11048,5656,Someone stares fearlessly into the strange gun's blazing barrel. The bald thug,Someone stares fearlessly into the strange gun's blazing barrel.,The bald thug,gold,brings out a bag of weapons.,flexes his feet and gazes upward.,rises at the hand and sends someone off the vehicle.,is hidden away from the incident.,0\n74,anetv_Cjq9wf9XnX0,6890,Man is putting the lifts on a pole. man,Man is putting the lifts on a pole.,man,gold,is standing in middle of a room in a gym lifting weight.,cleans a wall paper on a handlebar.,is waxing in a black shirt only holding the blower.,is being a styled exercise in the sand.,0\n75,anetv_O_e0pqEMZMw,2913,He sits in front of a computer talking to the camera. He then,He sits in front of a computer talking to the camera.,He then,gold,lifts a barbell over his head.,shows how to do something on the computer.,sets the iron down and squats over.,\"shows how to prepare a washer, squeezing ingredients into different beverages.\",1\n76,anetv_O_e0pqEMZMw,2912,A man adjusts the camera on a back porch. He,A man adjusts the camera on a back porch.,He,gold,grabs his shoes and puts tools inside.,demonstrates how to move the leaves.,uses a scraper to trim the windows in the yard.,sits in front of a computer talking to the camera.,3\n77,anetv_vKShqwBJrME,4159,A person's hands are seen attempting to solve a rubix cube while the end of a table is shown. The person,A person's hands are seen attempting to solve a rubix cube while the end of a table is shown.,The person,gold,mixes continuously and leads into one speaking to the camera.,continues until they finish the cube and then shows his time on the screen.,finishes cleaning and begins to solve it with rubix extensions.,continues throwing the object into the camera while the camera pans around.,1\n78,anetv_46YBNutTwKg,14288,A shot of christmas tree is shown with people quickly moving in and out of frame. Lights,A shot of christmas tree is shown with people quickly moving in and out of frame.,Lights,gold,pans around the car in front of them moving away in different attempting attaches gambler somehow made their work.,continue riding on over a course performing various tricks.,see snow off in a city where another man lies past a car and tries to drive him from his eye.,are shown on the tree as people continue to move in and out of frame.,3\n79,anetv_46YBNutTwKg,14289,Lights are shown on the tree as people continue to move in and out of frame. The people,Lights are shown on the tree as people continue to move in and out of frame.,The people,gold,continue to ride around on the side while wandering around the still deserted area.,continue playing continuously while pausing to speak to the camera.,continue hanging ornaments and show off the tree in the end.,continue to ride around as the people continue to ride around and smile with one another.,2\n80,lsmdc3003_40_YEAR_OLD_VIRGIN-1141,9902,\"Slowly leaning back into view, he peers around the corner at the box of porn. Later, he\",\"Slowly leaning back into view, he peers around the corner at the box of porn.\",\"Later, he\",gold,drops the satchel of money and stares at the sand feeling in his sky suit.,paces left alone in his room as someone works on a box monitor.,lights nearly a dozen candles of varying sizes and colors.,carries a single string piano within the upstairs stage.,2\n81,anetv_X3hQtXddMd4,14756,A person wake boards on a lake while being towed. They,A person wake boards on a lake while being towed.,They,gold,pass a person in the water.,\"turn the water, and float down to rest 100 degrees.\",are properly riding in their raft.,are able to stop to climb the swimming body of water while taking off into swim tentacles.,0\n82,anetv_X3hQtXddMd4,14757,They pass a person in the water. They,They pass a person in the water.,They,gold,come to a stop by a dock.,jump out of the swing and crash into each other.,go down a hill.,pass the water to the center of the boat.,0\n83,anetv_X3hQtXddMd4,14755,A camera and logo appear briefly. A person,A camera and logo appear briefly.,A person,gold,wake boards on a lake while being towed.,lights a candle on a tam - tam.,walks on the horse down the track.,is seen inside and boxing.,0\n84,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1153,A boy takes a photograph. A tatty gray owl,A boy takes a photograph.,A tatty gray owl,gold,lies just above the water.,is accompanied by drawings of a woman.,enters the silky gray images swirling around the room.,flies down into the room.,3\n85,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1152,\"Furious, he throws it into a pot. The ghost of someone\",\"Furious, he throws it into a pot.\",The ghost of someone,gold,falls a few yards away.,floats into the great hall where the students are sitting at long tables.,spits it out at the train.,follows his dad up to the canister.,1\n86,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1155,Someone takes a red envelope from someone's beak. Someone,Someone takes a red envelope from someone's beak.,Someone,gold,nervously breaks the seal on the red envelope.,looks over her shoulder at a house in it.,\"strides through the jungle, reaches the pepper stoically, reads it.\",pushes up fast to the man.,0\n87,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1154,\"Swooping low over the table, it heads for someone, but collides with a bowl, scattering crisps everywhere. Someone\",\"Swooping low over the table, it heads for someone, but collides with a bowl, scattering crisps everywhere.\",Someone,gold,takes a red envelope from someone's beak.,sits watching someone and the giant spider which spreads around someone's neck to let someone fall.,struggles to block the hidden view and looks over his shoulder at someone.,is now wearing scrubbing lightly - - - and putting a hand into his skin.,0\n88,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1158,It blows a raspberry in someone's face. Someone,It blows a raspberry in someone's face.,Someone,gold,leaps from his pipe as he steps out into the dark.,\"turns, eyes a giant clown - faced monk lying on the ground.\",looks at someone sympathetically.,walks out of the window.,2\n89,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1157,\"To his embarrassment, it starts to scream at him. The envelope\",\"To his embarrassment, it starts to scream at him.\",The envelope,gold,tries to iron the flame of the suit.,is sitting - a ring on his gloved hand.,folds itself into a mouth.,drops beneath the grasping for support.,2\n90,anetv_V9nOM1VWdnc,5697,\"Next, the person puts ice in a cup, and then squeeze a lemon using the lemon squeezer, add syrup and water from jugs. Then, the person\",\"Next, the person puts ice in a cup, and then squeeze a lemon using the lemon squeezer, add syrup and water from jugs.\",\"Then, the person\",gold,put the left arm on a blender.,adds three liquors and a pitcher and pours it on the mortar and for a while.,grabs a pickle and pour it into a mixer.,put a cover on the cup and shake the mix.,3\n91,anetv_bWquUXC2Te8,4252,He begins shaving his face while looking into the mirror. He,He begins shaving his face while looking into the mirror.,He,gold,points to the razor and continues shaving his face and looking to the camera.,shaves in as he is shaving his own arm.,slowly rubs his upper lip with his thumb.,wets his lips while on the shaver.,0\n92,anetv_bWquUXC2Te8,4251,A man is seen looking to the camera wile holding a razor. He,A man is seen looking to the camera wile holding a razor.,He,gold,puts metal on his mind.,begins shaving his face while looking into the mirror.,then begins shaving a beard down on the face and pointing to.,glances around the area and ends by walking out of frame.,1\n93,anetv_GvP6gZbHn30,11149,\"A man is holding onto a cube with multiple colors like a rubix cube, puts it down, presses a timer and picks it back up. As soon as he picks it up he\",\"A man is holding onto a cube with multiple colors like a rubix cube, puts it down, presses a timer and picks it back up.\",As soon as he picks it up he,gold,begins ripping off the armor with an arrow.,puts the cube back down and starts to do it again under the hand he feeds him with another person sitting next to him.,begins to turn it around and around attempting to match all the colors on each side.,zooms away from it and scrapes the bottom of the watermelon with an electric cutter.,2\n94,anetv_GvP6gZbHn30,6339,The person then solves the puzzle as the clock in front of him ticks away. The person,The person then solves the puzzle as the clock in front of him ticks away.,The person,gold,finishes the cube and then solves the puzzle.,continues to turn the cube around and watches sticks.,finishes and puts the cube down.,sits down and solves the cube.,2\n95,anetv_GvP6gZbHn30,11150,As soon as he picks it up he begins to turn it around and around attempting to match all the colors on each side. The man,As soon as he picks it up he begins to turn it around and around attempting to match all the colors on each side.,The man,gold,matches all the colors and slams the cube on the table while hitting the timer at the same time.,finishes cleaning the end and when he goes back to see what he is done.,\"spins the second stick, cutting the grass and grabbing the ball off the wall where they are getting along.\",\"is very kind, but is an recording seated man again.\",0\n96,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13748,\"Someone goes to the door, as someone limps slowly out through the classroom below. The ghostly horsemen\",\"Someone goes to the door, as someone limps slowly out through the classroom below.\",The ghostly horsemen,gold,gallop through the great hall.,\"swing herself up one after the other, following in the direction of the song.\",are taken out on a wood passage down a curt street.,begin to retreat behind the corners of each other.,0\n97,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13746,Someone points his wand and the parchment folds itself up and becomes blank. He,Someone points his wand and the parchment folds itself up and becomes blank.,He,gold,\"smiles at someone, picks up his bag and walking stick, and leaves.\",continues smoking and watches her aim at the bar.,leans on the hammock's lid.,fly into his arms.,0\n98,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13747,\"He smiles at someone, picks up his bag and walking stick, and leaves. Someone\",\"He smiles at someone, picks up his bag and walking stick, and leaves.\",Someone,gold,grabs a ball and pulls back a third.,looks at someone just to see that someone's already going down.,\"goes to the door, as someone limps slowly out through the classroom below.\",sits down and walks farther into the studio.,2\n99,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13749,\"In the quadrangle, someone sits astride his magnificent new Firebolt. His classmates\",\"In the quadrangle, someone sits astride his magnificent new Firebolt.\",His classmates,gold,play the drums on their mother as someone smiles.,cheer as he zooms up into the air.,flee his pretty chestnut apartment.,give him quick glances as he climbs the deep stone steps of the house.,1\n100,anetv_SlogVhfmTVs,3518,A boy sprays shaving cream into his hand from a can in his bathroom. The boy,A boy sprays shaving cream into his hand from a can in his bathroom.,The boy,gold,shows products his shaving brush before shaving up his face.,applies the shaving cream to his face.,mashes the other's hair with a spray towel.,takes the scrubs shoe with it.,1\n101,anetv_SlogVhfmTVs,3520,A man has shaving cream on his face and reads a label on a pressurized can and discusses it. A man,A man has shaving cream on his face and reads a label on a pressurized can and discusses it.,A man,gold,is giving a treatment with a young who is fighting back.,rubs his smooth face.,is talking about shaving hairstyle in his hands.,removes the wig's beard and takes a nut.,1\n102,anetv_SlogVhfmTVs,3519,The boy applies the shaving cream to his face. A man,The boy applies the shaving cream to his face.,A man,gold,has shaving cream on his face and reads a label on a pressurized can and discusses it.,cuts the baby face.,is using a razor to shave twice.,removes the mans mug and places it on the girl's left hand.,0\n103,anetv_SlogVhfmTVs,3522,The man holds up a metal oil can. The man,The man holds up a metal oil can.,The man,gold,applies a medicine dropper with liquid to a razor and demonstrates how to use it.,uses a big piece of paper to remove the sandwiches decorated.,finishes a nut on the table and cuts it into four.,wash and brush the sliced potato.,0\n104,anetv_SlogVhfmTVs,3521,A man rubs his smooth face. The man,A man rubs his smooth face.,The man,gold,attaches a blue bull to a bull.,shaves long beard and put the shaver back on the leg.,holds up a metal oil can.,finishes using the photographs while getting how to start them swinging.,2\n105,lsmdc1060_Yes_man-99435,15127,Someone falls against someone and smiles contentedly. They,Someone falls against someone and smiles contentedly.,They,gold,then go out on the statue.,slips away champagne and finds her young parents now at the tree.,wrap their arms around each other.,have made a victorian sandwich in its case.,2\n106,lsmdc1060_Yes_man-99435,15130,\"At a check - in desk at the airport, people stand facing a uniformed woman with thick, fair hair. She\",\"At a check - in desk at the airport, people stand facing a uniformed woman with thick, fair hair.\",She,gold,checks a computer screen and smiles at them.,stares at her estranged husband.,walks into the bedroom.,climbs on through a snow covered window.,0\n107,lsmdc1060_Yes_man-99435,15129,\"Looking thoughtful, he rests his chin upon her hair. At a check - in desk at the airport, people\",\"Looking thoughtful, he rests his chin upon her hair.\",\"At a check - in desk at the airport, people\",gold,smiles as she turns to the air large panel of dolphin photos.,\"stand facing a uniformed woman with thick, fair hair.\",kiss as several roiling banquette billow out beneath the shimmering track.,lie later in the big bed.,1\n108,lsmdc1060_Yes_man-99435,15128,\"They wrap their arms around each other. Looking thoughtful, he\",They wrap their arms around each other.,\"Looking thoughtful, he\",gold,sits at his table and looks around.,backs away in a loving direction.,turns on the light.,rests his chin upon her hair.,3\n109,anetv_51wFW1g42VQ,18476,A man is seen speaking to the camera that leads into clips of people playing lacrosse. The people,A man is seen speaking to the camera that leads into clips of people playing lacrosse.,The people,gold,run all around one another as they take turns speaking to the camera.,continue to play on smiling while more clips are shown of people taking pictures in the pool.,continue kicking and kicking at a match as well as passing along the grass and others help.,speak to one another and demonstrate how to properly play pong with one another.,0\n110,anetv_51wFW1g42VQ,2451,The players are warming up for the game as different contestants talk about the techniques used in hurling. Some of the players,The players are warming up for the game as different contestants talk about the techniques used in hurling.,Some of the players,gold,looks sullen in the distance.,play in a skate area where the mallet came.,perform an attack on the camera.,are running with their hurling sticks trying to catch the ball.,3\n111,anetv_51wFW1g42VQ,2450,There are two teams participating in hurling. The players,There are two teams participating in hurling.,The players,gold,hit the ball up with the net on the right side of the net.,are warming up for the game as different contestants talk about the techniques used in hurling.,begin to play an game of indoor field hockey ball.,kick the ball all the way down.,1\n112,anetv_51wFW1g42VQ,18477,The people run all around one another as they take turns speaking to the camera. The people,The people run all around one another as they take turns speaking to the camera.,The people,gold,continue jumping around and cheering on the crowd.,continue to push around one another and continue jumping up followed by people eating.,continue speaking while others practice behind them.,ride around the end with the background panning around.,2\n113,anetv_51wFW1g42VQ,2449,There's are some young athletes standing in an open field talking about hurling as some players play the game. There,There's are some young athletes standing in an open field talking about hurling as some players play the game.,There,gold,are numerous players shown in rope to same preparing for a final hit of field competition.,for a person on a yellow field backstage speaks to the newscaster.,are two teams participating in hurling.,begin competing again by scoring goals and the white team scores a goal in the coaches and the goalie on the blue team scores.,2\n114,anetv_XKu57UKSqPc,714,Woman is holding a razor and is cuting the hair of the dog. woman,Woman is holding a razor and is cuting the hair of the dog.,woman,gold,keeps grooming the dog and combing his hair.,is brushing her hair in the shower.,is helping the woman combing another woman's hair.,is taking off her shoes and lifts them up.,0\n115,anetv_XKu57UKSqPc,713,Woman is standing in a backyard with a lot of Schnauzer on a table and around her. woman,Woman is standing in a backyard with a lot of Schnauzer on a table and around her.,woman,gold,is holding a razor and is cuting the hair of the dog.,is standing in a room wearing a sweater that is standing on a rope behind her.,is sitting in a house talking to the camera.,is holding a child and cleaning the nose of a pumpkin.,0\n116,anetv_XKu57UKSqPc,18253,She starts to cut the hair of a dog that is sitting on a table. She,She starts to cut the hair of a dog that is sitting on a table.,She,gold,stands the dog up and continues to cut its hair.,looks at the camera and we see the address book.,starts brushing her hair with a razor.,starts drinking a beer in front of the camera.,0\n117,anetv_XKu57UKSqPc,18254,\"She stands the dog up and continues to cut its hair. Next, she\",She stands the dog up and continues to cut its hair.,\"Next, she\",gold,proceeds to blow dry a woman's hair.,digs a shovel in nail polish and sets the items on the table.,moves on and start to cut the hair on its ears.,finishes the hair and tapes them together.,2\n118,anetv_XKu57UKSqPc,18252,An introduction comes onto the screen for a video about grooming dogs and she talks about what she will be doing. She,An introduction comes onto the screen for a video about grooming dogs and she talks about what she will be doing.,She,gold,\"is showing and how to clean a tube soaked clothes slack, next, once she helps do the back of the small sneakers and\",starts to cut the hair of a dog that is sitting on a table.,is belly dancing as someone leaves.,shows how to dry the dogs hair and brushing the dogs with the dogs.,1\n119,anetv_dTZZq23pYFY,12211,Two reporters report on a story about drinking too much coffee on a live news telecast. A dark haired woman reporter,Two reporters report on a story about drinking too much coffee on a live news telecast.,A dark haired woman reporter,gold,appears wearing red shades covered by microphone examples.,sits nearby talking to the camera while taking a drink off of a cup.,talks on camera before the camera cuts to a blonde haired reporter also talking on camera.,talks in a room while a woman is sitting and talking at the bar.,2\n120,anetv_dTZZq23pYFY,12212,The camera cuts to video of a coffee cup being filled with coffee while a written template explaining what the story is about appears beneath the cup. The camera then,The camera cuts to video of a coffee cup being filled with coffee while a written template explaining what the story is about appears beneath the cup.,The camera then,gold,cuts to a man with various other items needed materials to sit.,begins to look around for her glasses once more.,shows the white man in and talking about a drink of wine.,cuts to a four person news panel of people talking on camera.,3\n121,anetv_LkA7hS3FBkQ,5622,A man uses an electric drill to wind up the floor jack and lift the car tire off the ground. The man,A man uses an electric drill to wind up the floor jack and lift the car tire off the ground.,The man,gold,\"points the ornate receiver back, then climbs to the car.\",stops adjusting and demonstrates how to clean the front gate with a large shovel.,falls to the ground and rise to his feet.,uses the electric drill again to mind down the floor jack and lower the car.,3\n122,anetv_LkA7hS3FBkQ,5621,A rests underneath a car in place but not lifting it off the ground. A man,A rests underneath a car in place but not lifting it off the ground.,A man,gold,lifts his head in a black pan.,prepares to adjust the piece of the bicycle on top the lock with three pieces attached to his plows and the tire.,uses an electric drill to wind up the floor jack and lift the car tire off the ground.,stands inside a skiing steam faucet.,2\n123,anetv_f6NpnKJZJE0,6873,A woman is working out an elliptical machine. A man,A woman is working out an elliptical machine.,A man,gold,is working out on an elliptical machine.,heaves a machine onto a machine that is on the top of a pole.,\"has gloves, a makeup case, then is shown using the driver's license with a man.\",is wearing a utility belt in the tube room.,0\n124,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15894,\"As the pretty girl grins, someone sneaks a look at her. Someone\",\"As the pretty girl grins, someone sneaks a look at her.\",Someone,gold,wears a khaki safari - style vest over his suit.,\"smiles at her, then gives someone a close look.\",\"propped on her knee, she chats with a cat, and the troubled man in trench coat approaches her with him.\",smiles at them.,0\n125,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15913,\"At Buster's enclosure, someone makes notes. Someone\",\"At Buster's enclosure, someone makes notes.\",Someone,gold,flips the binder off.,\"meets with someone, enjoying someone, and gives him a friendly nod.\",runs a hand on someone's head.,turns off his walkie - talkie.,3\n126,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15941,Someone spits out his scotch bottle's cork and holds up a glass. He,Someone spits out his scotch bottle's cork and holds up a glass.,He,gold,takes out a vodka bottle.,\"fills someone's and someone's whisky glasses, then steps away.\",studies the dealer's phone for a moment.,\"cocks his head, then drops it.\",1\n127,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15915,\"The lion gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside. Meanwhile, someone\",\"The lion gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside.\",\"Meanwhile, someone\",gold,laboriously climbs on to his bunk with someone.,heads in towards the cheerleaders king at his associates.,leads someone and his kids through a grove.,\"stands on the rug, staring lovingly at someone.\",2\n128,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15904,\"He bounces lightly, then tries another spot. Now, he\",\"He bounces lightly, then tries another spot.\",\"Now, he\",gold,peers closely at a surface and sets a miniature level on it.,clutches a small straw with a red substance bear on it in a backseat.,plays a game of polo.,lays the merely bear dreaming on his hands.,0\n129,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15917,Someone dashes off to the far side of the enclosure. Someone,Someone dashes off to the far side of the enclosure.,Someone,gold,peers over to someone's backpack.,leaps in through the closed door.,takes off his jacket.,topples over her face and winces.,2\n130,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15930,\"Someone, his kids, and the zoo staff stand before him as he considers. A smirk\",\"Someone, his kids, and the zoo staff stand before him as he considers.\",A smirk,gold,drops onto someone's face as he marches down the wharf.,falls down someone's face.,plays on ferris' lips as he regards the staff.,illuminates his face and his face unable to wiggle away.,2\n131,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15927,\"He takes out his electric measuring tape. With a scowl at someone and someone, he\",He takes out his electric measuring tape.,\"With a scowl at someone and someone, he\",gold,extends it over the moat.,lifts the martini in one.,puts an arm around someone's arm and rests them on their knee.,smooths it up with a hostile expression.,0\n132,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15892,\"Ferris' truck pulls up nearby. Beaming, someone\",Ferris' truck pulls up nearby.,\"Beaming, someone\",gold,prods his mentor with his right hand.,pats someone's back.,digs into his wad of pockets and sits down.,flips open his phone and looks around the room.,1\n133,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15949,\"The pretty teen puts down her work, kneels at the window, and lifts the sash. Someone\",\"The pretty teen puts down her work, kneels at the window, and lifts the sash.\",Someone,gold,sits on the dock carving some of the sacks.,\"hesitates for a moment, then, remains returning to stare at his doorway.\",\"solemnly shakes her head, then yields a smile.\",strides slightly to someone's jacket and flicks his fingers around it.,2\n134,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15910,\"Someone turns the key back, and tries closing the gate, but the extended deadbolt prevents it from latching shut. Someone\",\"Someone turns the key back, and tries closing the gate, but the extended deadbolt prevents it from latching shut.\",Someone,gold,stares at someone through his eyes.,unfolds the drawer as he holds the gift card.,opens a newspaper and reads a journal.,\"turns the key persistently, but finds the deadbolt stuck.\",3\n135,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15900,\"Scrutinizing it, he turns it in the light, then gives it a sniff. He\",\"Scrutinizing it, he turns it in the light, then gives it a sniff.\",He,gold,\"eyes his host disapprovingly, flicks the straw away, and moves on.\",rips the stack of groceries out of her way and he grabs from her home.,crouches down.,lifts someone's to her feet.,0\n136,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15909,\"Opening the gate again, she turns the key extending a deadbolt. Someone turns the key back, and tries closing the gate, but the extended deadbolt\",\"Opening the gate again, she turns the key extending a deadbolt.\",\"Someone turns the key back, and tries closing the gate, but the extended deadbolt\",gold,takes a few steps away.,go there a third time.,prevents it from latching shut.,seal all the masked pieces.,2\n137,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15920,\"In the lion enclosure, someone shakily removes the gate's knob - shaped handle. Safely outside it, someone\",\"In the lion enclosure, someone shakily removes the gate's knob - shaped handle.\",\"Safely outside it, someone\",gold,turns on a canister.,jumps up and down.,watches a colleague leave.,\"clutches the hammer boy on their right arm, sliding stunned back into the back seat.\",1\n138,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15946,\"Now wearing a hooded raincoat, someone walks on the dirt road. Passing the restaurant, he\",\"Now wearing a hooded raincoat, someone walks on the dirt road.\",\"Passing the restaurant, he\",gold,brings out a large golf tray.,sees a framed mirror in the door.,grins - - embarrassed.,doubles back and reads a new illuminated sign in the window.,3\n139,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15895,\"His long hair in a ponytail, someone shakes his hand. They\",\"His long hair in a ponytail, someone shakes his hand.\",They,gold,faces him as he pouts the ranks of someone's other students.,\"wave his fingers, gliding to the surface of an oncoming body.\",\"disguise, someone paces, his wrists tied together.\",grip each other's hands.,3\n140,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15945,\"At the ground's entrance, an archway reading Rosemoor Wildlife Park stands in the heavy downpour. Now wearing a hooded raincoat, someone\",\"At the ground's entrance, an archway reading Rosemoor Wildlife Park stands in the heavy downpour.\",\"Now wearing a hooded raincoat, someone\",gold,watches his father across the bedroom.,walks away from on seated comrade.,stands at a gallery overlooking the vast documenting flooded hallway.,walks on the dirt road.,3\n141,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15929,\"Someone holds a pen between two checkboxes labeled, Denied and Approved. Someone, his kids, and the zoo staff\",\"Someone holds a pen between two checkboxes labeled, Denied and Approved.\",\"Someone, his kids, and the zoo staff\",gold,watch him from the woods into new mexico.,stand before him as he considers.,listen for his turn.,go for their cards.,1\n142,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15943,Someone turns and someone looks up. The storm quickly,Someone turns and someone looks up.,The storm quickly,gold,\"picks up, turning the dirt into mud.\",slides across the rubble.,hurls him back and hangs off the ladder.,follows her and its fissure blank.,0\n143,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15934,\"Someone looks down at the report, then holds it up to the others. Someone\",\"Someone looks down at the report, then holds it up to the others.\",Someone,gold,leans close to her.,shakes someone's hand.,\"it, minas delta, with his century bands and flying gloves, lies beside him with books, clutching their papers.\",tries to copy herself.,1\n144,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15937,\"Among them, someone embraces someone and someone. Someone\",\"Among them, someone embraces someone and someone.\",Someone,gold,is brought back to the trunk beside him.,waits for someone someone and the clerk at the dance wall.,scoops up someone and hugs someone.,\"looks at her, utterly miserable.\",2\n145,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15919,\"He takes out his tools. In the lion enclosure, someone\",He takes out his tools.,\"In the lion enclosure, someone\",gold,\"uses a pair of twin backflips, knocking it down on his knees.\",wears a small fang in his hands.,opens the front door and slowly opens the door to reveal a collection of chinese writing.,shakily removes the gate's knob - shaped handle.,3\n146,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15907,\"Later, he taps on the enclosure's glass. Now, someone\",\"Later, he taps on the enclosure's glass.\",\"Now, someone\",gold,finds the wearily furnished inside.,arrives at lion's enclosure and opens the gate.,brings him his drive.,stands up gravely as they enter enter a lift.,1\n147,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15911,\"Someone turns the key persistently, but finds the deadbolt stuck. Lying on a rock, lion\",\"Someone turns the key persistently, but finds the deadbolt stuck.\",\"Lying on a rock, lion\",gold,stands and faces her.,gazes at him sadly.,chases the dead man.,\"peers at the huge claw, listening.\",0\n148,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15948,\"Someone smiles wistfully at the words, nods, and dashes off. Now a rain - drenched window\",\"Someone smiles wistfully at the words, nods, and dashes off.\",Now a rain - drenched window,gold,shows someone working leather in her room.,pours down a medium 12 - lane highway and a car approaches.,shows a red car set by suitcases.,reads: an article with pools of flowers in it.,0\n149,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15916,\"Meanwhile, someone leads someone and his kids through a grove. Someone\",\"Meanwhile, someone leads someone and his kids through a grove.\",Someone,gold,dashes off to the far side of the enclosure.,spears around another gate with his eyes fixed onto the horses.,follows a trail of torn hair and two piles of leaves.,run into scene of his - family hanging and now his children blow with bubbles.,0\n150,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15928,\"With a scowl at someone and someone, he extends it over the moat. Now, a clipboard\",\"With a scowl at someone and someone, he extends it over the moat.\",\"Now, a clipboard\",gold,stops a gate down a bustling roadway.,\"bears a document headed, final inspection report.\",shows black boats jutting up over the stone landing.,is covered in an expensive sweatshirt.,1\n151,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15944,\"The storm quickly picks up, turning the dirt into mud. At the ground's entrance, an archway reading Rosemoor Wildlife Park\",\"The storm quickly picks up, turning the dirt into mud.\",\"At the ground's entrance, an archway reading Rosemoor Wildlife Park\",gold,appears in the air beneath the pulling band.,appear in the enormous sketching lanterns.,stands in the heavy downpour.,appear on the small hangar.,2\n152,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15899,\"Later, as someone and someone look on, someone picks up a single piece of straw. Scrutinizing it, he\",\"Later, as someone and someone look on, someone picks up a single piece of straw.\",\"Scrutinizing it, he\",gold,looks outside his cabin mirror.,\"turns it in the light, then gives it a sniff.\",downs his glasses at the rest of the group.,taps her finger over someone's mouth.,1\n153,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15921,\"Safely outside it, someone jumps up and down. Someone\",\"Safely outside it, someone jumps up and down.\",Someone,gold,runs onto a narrow cover.,peeks over his shoulder.,bashes him on another train door then swings it open.,rips off his skirt.,1\n154,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15931,A smirk plays on Ferris' lips as he regards the staff. He,A smirk plays on Ferris' lips as he regards the staff.,He,gold,\"drinks his drink to someone, unseen.\",\"kicks a man uniform through the spear, then trips and leap onto the stage.\",shakes his head and aims his pen.,looks round in front of a mirror.,2\n155,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15908,\"Glancing around, she pulls the gate shut and hurriedly takes a key from a ring on her belt. Opening the gate again, she\",\"Glancing around, she pulls the gate shut and hurriedly takes a key from a ring on her belt.\",\"Opening the gate again, she\",gold,\"holds out focus, as if loading a shell.\",shoots her shoulder several times.,turns the key extending a deadbolt.,pops the rider back into a trunk.,2\n156,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15935,\"He offers a terse professional nod to the inspector, who reciprocates. Someone\",\"He offers a terse professional nod to the inspector, who reciprocates.\",Someone,gold,answers his cell phone for the pay phone.,flashes him a warm smile.,watches with a grin.,\"heads off, then stops to look back at the jubilant group.\",3\n157,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15938,Someone scoops up someone and hugs someone. Someone,Someone scoops up someone and hugs someone.,Someone,gold,puts a pan on the urn and the lid drops.,pulls her toward the house and holds the baby's money back.,shakes his head and leaves.,\"turns on her horse, grabs her bag, heads over to someone.\",2\n158,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15939,\"Someone shakes his head and leaves. Now, at the Jaguar Restaurant, someone\",Someone shakes his head and leaves.,\"Now, at the Jaguar Restaurant, someone\",gold,\"sits in her cubicle, his face drenched in sweat.\",\"hurries down a spiral corridor where a blue man is sitting over the railing, where the bug stands by him.\",joins someone in his front seat.,joins his brother at the bar.,3\n159,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15926,\"Someone peers into the enclosure, then turns his suspicious gaze on the others. He\",\"Someone peers into the enclosure, then turns his suspicious gaze on the others.\",He,gold,\"in a clear peaceful, middle - length room, people desperately search their spots, watching a documentary in chinese photos and fencing.\",takes out his electric measuring tape.,picks up a glass of cabs and follows someone down a sidewalk.,puts his clothes down.,1\n160,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15902,\"Now, someone extends his electric measuring tape along a railing. Later, he\",\"Now, someone extends his electric measuring tape along a railing.\",\"Later, he\",gold,\"looks at the pair of coordinates: a man, who is busy with a rifle.\",crosses someone's side in a framed street.,uses the edge to trim the hedges.,stands on a building's corrugated metal roof.,3\n161,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15905,\"Later, as someone pushes a measuring wheel over the footpath, a camel walks beside him. Now, he\",\"Later, as someone pushes a measuring wheel over the footpath, a camel walks beside him.\",\"Now, he\",gold,\"rides up a city street, taking off his hood and chugs some shots with food.\",rides down a carpeted street lined with umbrellas.,emerges from an unfinished camp in an oxygen tank and musters a funnel.,stands at an ankle - deep pool as otters swim around him.,3\n162,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15914,\"At the malfunctioning gate, someone struggles with the key and the lock. The lion\",\"At the malfunctioning gate, someone struggles with the key and the lock.\",The lion,gold,gives a disgruntled stares.,\"depicting an american with a black, dusty fur hat, wearing the white fur coat and hat.\",\"gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside.\",'s mouth hangs open and he blinks a huge tear and the woman faints.,2\n163,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15936,\"Someone heads off, then stops to look back at the jubilant group. Among them, someone\",\"Someone heads off, then stops to look back at the jubilant group.\",\"Among them, someone\",gold,watches a computer screen photo of him.,finds someone waiting for them in a spiral notebook.,embraces someone and someone.,goes to the waiter's table and puts it in his coat pocket.,2\n164,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15918,\"As he takes a step toward someone, someone enters the enclosure behind him. He\",\"As he takes a step toward someone, someone enters the enclosure behind him.\",He,gold,opens the door and walks inside.,takes out his tools.,\"returns his attention to the sleeping someone, who stands nearby.\",sets out more matches on the table's side.,1\n165,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15906,\"Now, he stands at an ankle - deep pool as otters swim around him. Later, he\",\"Now, he stands at an ankle - deep pool as otters swim around him.\",\"Later, he\",gold,retrieves the change from his wrist and slides it to someone's side.,taps on the enclosure's glass.,watches the bathroom door open.,steps on the lounge bench.,1\n166,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15933,\"As someone holds out the report, someone hangs her head. Someone\",\"As someone holds out the report, someone hangs her head.\",Someone,gold,looks to her son.,\"looks down at the report, then holds it up to the others.\",scowls at someone.,\"stands next to someone, who adds a newspaper.\",1\n167,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15893,\"Beaming, someone pats someone's back. As the pretty girl grins, someone\",\"Beaming, someone pats someone's back.\",\"As the pretty girl grins, someone\",gold,points and bows his head.,grins and regards him with a solemn envelope.,gives him a sultry smile.,sneaks a look at her.,3\n168,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15896,They grip each other's hands. Someone,They grip each other's hands.,Someone,gold,rests a bloody hand on his arm and crouches at arm's side.,hands someone a goblet.,is spinning wildly in the new arrivals.,smiles at someone and nods.,3\n169,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15925,\"Someone finishes the lock, slips out, and bolts the gate. Someone\",\"Someone finishes the lock, slips out, and bolts the gate.\",Someone,gold,\"starts turning the key on the door, tossing it down, and smiling.\",\"chase the young man back, breaking down the door.\",stands with someone nearby while heading toward the building.,\"primps her hair, then wheels around to meet someone with a big smile.\",3\n170,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15940,\"Now, at the Jaguar Restaurant, someone joins his brother at the bar. Someone\",\"Now, at the Jaguar Restaurant, someone joins his brother at the bar.\",Someone,gold,hands over the item in alternate editor to display him curtains before everyone moves through scenes of men and some guests.,spits out his scotch bottle's cork and holds up a glass.,steps close to someone and she unbuckles.,'s mom gives up.,1\n171,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15922,Someone peeks over his shoulder. He,Someone peeks over his shoulder.,He,gold,dashes to the lower door gawking out.,overhead someone lets them out and sit down on the bed.,gets a modest drunk.,slams the gate on his fingers.,3\n172,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15912,\"Lying on a rock, lion stands and faces her. She\",\"Lying on a rock, lion stands and faces her.\",She,gold,waves at the crowd.,takes out her walkie.,looks at the chair.,scowls and stares at the sky.,1\n173,lsmdc3087_WE_BOUGHT_A_ZOO-41661,15903,\"Later, he stands on a building's corrugated metal roof. He\",\"Later, he stands on a building's corrugated metal roof.\",He,gold,puts red jacket on someone a hanger.,\"bounces lightly, then tries another spot.\",holds it at gunpoint.,grabs her coat and exits.,1\n174,anetv_nXVNITiaaTQ,18921,The rider accelerates out of a turn on his motorcycle. The rider,The rider accelerates out of a turn on his motorcycle.,The rider,gold,goes over a jump on his motorcycle.,swerves to pick after the ball.,tumbles from the rooftop above the city.,plows through a track in front.,0\n175,anetv_nXVNITiaaTQ,18920,A rider goes around a turn and plants his foot in the dirt to stabilize. The rider,A rider goes around a turn and plants his foot in the dirt to stabilize.,The rider,gold,turns the light from several angles into his drive.,tilts a paw and studies his ears and overlooks his body.,gets off his horse and walks away.,accelerates out of a turn on his motorcycle.,3\n176,anetv_nXVNITiaaTQ,18919,A man stands in front of a business logo and discusses. A rider,A man stands in front of a business logo and discusses.,A rider,gold,talks to the camera while standing on the street holding a little skateboard.,watches the screen with some angry on.,stands in the middle of the field.,goes around a turn and plants his foot in the dirt to stabilize.,3\n177,anetv_--1DO2V4K74,17590,A man is then shown climbing a rock wall. He,A man is then shown climbing a rock wall.,He,gold,does a series of stunts on stilts.,does a side down and begins climbing up a wooden and climbing area.,pulls himself up with his hands.,uses a ruler to adjust several boxes on the floor.,2\n178,anetv_--1DO2V4K74,17589,A cat is shown climbing a wall. A man,A cat is shown climbing a wall.,A man,gold,is then shown climbing a rock wall.,grabs the ax and begins walking upward.,is talking to the camera and lighting it.,is doing stomach tricks happily.,0\n179,anetv_--1DO2V4K74,2934,\"Several title screens appear and shows the word Crackbabies along with fiver point one pounds. When the video does eventually start, a man\",Several title screens appear and shows the word Crackbabies along with fiver point one pounds.,\"When the video does eventually start, a man\",gold,gives interviews with a warm ups between basketball shots.,is shown having a good time and rubs it out.,is outside of a large mountain climbing the wall.,stands up and takes a separate cube.,2\n180,anetv_--1DO2V4K74,2935,\"When the video does eventually start, a man is outside of a large mountain climbing the wall. As he progresses up the rock, there are several hooks along the way and he\",\"When the video does eventually start, a man is outside of a large mountain climbing the wall.\",\"As he progresses up the rock, there are several hooks along the way and he\",gold,takes the clips from around his harness and clips them to the next hook on the rocks.,continues to take two cables pole and slides safely out of the ceiling.,is running going across a large ramp being yellow.,ducks to bottom 180.,0\n181,anetv_dWBnXy2nauU,8922,A man starts throwing a shot - put several different times as names scroll at the bottom. A group,A man starts throwing a shot - put several different times as names scroll at the bottom.,A group,gold,of people run around a building.,can be seen behind watch him.,is in the same room in reception with a short man with a her arm and a hat and shorts and black top hats.,is at the top of the lift then falls on a ramp while people and weight lift go on them as he goes sailing on,1\n182,anetv_dWBnXy2nauU,8921,The tile screen shows up with some names. A man,The tile screen shows up with some names.,A man,gold,hits the ball with someone on the wall when it's done.,starts throwing a shot - put several different times as names scroll at the bottom.,continues dribbling the photo.,walks into a bathroom and begins demonstrating how to shave your legs.,1\n183,anetv_k1aFJ-F8xTs,13054,He partially shaves his face and shows off to the camera. He,He partially shaves his face and shows off to the camera.,He,gold,raises his hands in the air.,\"continues to spray with soap and mascara, and wipes away from him.\",solves the puzzle and grabs another stocking from his hold.,finishes shaving his face while making funny faces.,3\n184,anetv_k1aFJ-F8xTs,15360,In fast motion a man is shaving his full beard with an electric hair cutter and leaves a very small part in the middle under his bottom lip. The man then moves onto shaving his mustache but,In fast motion a man is shaving his full beard with an electric hair cutter and leaves a very small part in the middle under his bottom lip.,The man then moves onto shaving his mustache but,gold,is all completed shortly afterwards.,\"ends with a razor, very close and braided hair from all angles.\",it is flail on his legs.,leaves most of it and begins to curl the edges upwards.,3\n185,anetv_k1aFJ-F8xTs,13053,A man is shown looking at the camera while holding a razor. He,A man is shown looking at the camera while holding a razor.,He,gold,partially shaves his face and shows off to the camera.,puts down the razor on the head while looking away.,is shown working out as well as a product and rubbing it back up.,brushes it across his face while still looking down at the dog.,0\n186,lsmdc3001_21_JUMP_STREET-422,11781,\"As the Beetle rides up alongside a tanker truck, one of the bikers gains on them. The vehicles\",\"As the Beetle rides up alongside a tanker truck, one of the bikers gains on them.\",The vehicles,gold,pull into semi - groups of the steed in turn flying out of the trucks.,pull onto a rings as the soldiers enter the building.,reach the center of the bridge over a river.,spin and turn to another.,2\n187,lsmdc3001_21_JUMP_STREET-422,11780,He pulls the driver out. They,He pulls the driver out.,They,gold,pulls himself out to join him and starts a hill of people having really great advantage of seeing that they were in there.,drive off in her pink volkswagen beetle toward a bridge.,steadies the skiptracer by the shed.,toilet cap lies on its hood.,1\n188,lsmdc3001_21_JUMP_STREET-422,11793,The gang leader takes aim. Someone,The gang leader takes aim.,Someone,gold,dodges the aircraft and crosses to the remaining sedans.,studies the obediently tattooed warrior.,grabs someone's pistol and pulls the trigger himself.,\"watches someone fall to the ground as chase swaggers off him, gun in hand.\",2\n189,lsmdc3001_21_JUMP_STREET-422,11790,Someone finds a four - shot pistol. He,Someone finds a four - shot pistol.,He,gold,\"opens a large, long, wooden plank awning.\",rides a train as it tips over.,glances at his partner.,\"flings it onto someone's shoulder, and tosses him onto the land rovers.\",2\n190,lsmdc3001_21_JUMP_STREET-422,11786,The tanker slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle. We,The tanker slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle.,We,gold,play with the auto wriggling.,lands on someone's boat.,dramatically zoom back from the tanker ad glide above the truss bridge.,\"stands in the middle of the street, and panic in the air.\",2\n191,lsmdc3001_21_JUMP_STREET-422,11779,Someone leaps over the top of a stopped car. He,Someone leaps over the top of a stopped car.,He,gold,pulls the driver out.,reverses from a military car as it rolls along the top.,kicks it away from it.,is been busy but used to be knocked over only three cars.,0\n192,lsmdc3001_21_JUMP_STREET-422,11784,He overtakes the rig and falls off his bike. The truck,He overtakes the rig and falls off his bike.,The truck,gold,roars over as he wrenches control of another car.,\"crashes through the chain, crashes by an suv.\",runs over his legs.,backs up in a line.,2\n193,lsmdc3001_21_JUMP_STREET-422,11794,\"As the gang leader swerves, a truck hauling chickens blocks his path. He wipes out and his bike\",\"As the gang leader swerves, a truck hauling chickens blocks his path.\",He wipes out and his bike,gold,slides underneath the vehicle.,reach the pier - lined road.,blows on the street.,follows them as he shoots.,0\n194,lsmdc3001_21_JUMP_STREET-422,11787,\"We dramatically zoom back from the tanker ad glide above the truss bridge. Yielding a silver revolver, the gang leader\",We dramatically zoom back from the tanker ad glide above the truss bridge.,\"Yielding a silver revolver, the gang leader\",gold,faces a spot - men seated at the base of a police car.,pulls up alongside the beetle and shoots out the driver side window.,brings a luxurious clipboard to someone and holds him with it.,raises the armored gloves to his chin and slides over his body with his gun.,1\n195,lsmdc3001_21_JUMP_STREET-422,11788,\"Yielding a silver revolver, the gang leader pulls up alongside the Beetle and shoots out the driver side window. Someone\",\"Yielding a silver revolver, the gang leader pulls up alongside the Beetle and shoots out the driver side window.\",Someone,gold,swerves into another traffic lane.,gaze at each other with shocked eyes.,pulls a small sword from his pocket and aims it behind his back.,sits across from someone and wears a uniform around his son.,0\n196,lsmdc3001_21_JUMP_STREET-422,11782,Someone tosses out a sunshade which wraps around the biker's face. Firing wildly he,Someone tosses out a sunshade which wraps around the biker's face.,Firing wildly he,gold,\"tries and launches someone pulls the lever, heart flying.\",shoots holes through the tanker.,aims his gun at the cop.,kicks someone's head forward.,1\n197,lsmdc3001_21_JUMP_STREET-422,11791,He glances at his partner. The gang leader,He glances at his partner.,The gang leader,gold,cuts off a sedan and rides up alongside them again.,lifts a burgundy ben grenade.,sweeps a puck toward the models curl.,takes a gun from his pocket and removed his helmet.,0\n198,lsmdc3001_21_JUMP_STREET-422,11792,The gang leader cuts off a sedan and rides up alongside them again. Someone,The gang leader cuts off a sedan and rides up alongside them again.,Someone,gold,raises his arms.,checks his clock which reads four hours.,aims out the driver side window.,rides into an suv on a bluff wielding a barbecue.,2\n199,lsmdc3001_21_JUMP_STREET-422,11785,The truck runs over his legs. The tanker,The truck runs over his legs.,The tanker,gold,\"flies far below the backboard, then swerves between the bars.\",\"lies on the ground, carrying his drink.\",is hurled towards the ground.,slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle.,3\n200,lsmdc3001_21_JUMP_STREET-422,11783,Firing wildly he shoots holes through the tanker. He,Firing wildly he shoots holes through the tanker.,He,gold,overtakes the rig and falls off his bike.,squeezes relentlessly on the peanut jelly as well.,scrambles behind himself and comes in other directions.,sweeps a explodes and knocks someone off.,0\n201,lsmdc0001_American_Beauty-45991,10977,He puts his spatula down. The Mercedes,He puts his spatula down.,The Mercedes,gold,fly open and drinks.,walks off followed driveway again.,slots them into a separate green.,pulls around to the drive - thru window.,3\n202,lsmdc0001_American_Beauty-45991,10970,\"He stands and looks around, his eyes finally landing on: The digicam and a stack of cassettes on a shelf. Someone\",\"He stands and looks around, his eyes finally landing on: The digicam and a stack of cassettes on a shelf.\",Someone,gold,looks at someone's papers.,feels around it and falls in the seat once more.,sprints back from the wreck and drops onto his back.,\"sits at the kitchen table, staring off into space.\",3\n203,lsmdc0001_American_Beauty-45991,10968,\"He starts going through someone's bureau. He opens the drawer in which we know someone keeps his marijuana, but he\",He starts going through someone's bureau.,\"He opens the drawer in which we know someone keeps his marijuana, but he\",gold,stops one down and rubs a piece of the gift out.,cuts the mangled parts.,hides it under his hat to watch.,does n't discover its false bottom.,3\n204,lsmdc0001_American_Beauty-45991,10980,\"Someone leans out of the drive - thru window, grinning at her, holding bags filled with fast food. The Counter Girl\",\"Someone leans out of the drive - thru window, grinning at her, holding bags filled with fast food.\",The Counter Girl,gold,\"stands next to him, staring blankly.\",\"with auditorium, filmed, singers the club.\",attempts to block her ransacked.,is eating solid and stinky.,0\n205,lsmdc0001_American_Beauty-45991,10976,Someone looks up suddenly when he hears. He,Someone looks up suddenly when he hears.,He,gold,puts his spatula down.,bumps into a revolver and drops surreptitiously into his weapon.,talks using the phone and walks away for a few seconds.,bundles the flaxen powder beneath the car.,0\n206,lsmdc0001_American_Beauty-45991,10978,Someone drives; someone sits beside her. They,Someone drives; someone sits beside her.,They,gold,rise someone's feet up.,lift her and they are alarmed.,are too involved with each other to notice someone watching them from the drive - thru window.,sit at a table with a beer from a table.,2\n207,lsmdc0001_American_Beauty-45991,10969,\"He opens the drawer in which we know someone keeps his marijuana, but he does n't discover its false bottom. He stands and looks around, his eyes\",\"He opens the drawer in which we know someone keeps his marijuana, but he does n't discover its false bottom.\",\"He stands and looks around, his eyes\",gold,\"moving to the side, the houses rapidly stained.\",focused as the sight of someone making his way down a trail.,finally landing on: the digicam and a stack of cassettes on a shelf.,\"deep and continuing, its bleed - length sideburns pressing on him.\",2\n208,lsmdc0001_American_Beauty-45991,10973,\"Someone sinks slowly onto someone's bed, mesmerized. Then, naked except for his black socks, he\",\"Someone sinks slowly onto someone's bed, mesmerized.\",\"Then, naked except for his black socks, he\",gold,rests his knee on the narrow ledge of the corner.,\"grabs the dumbbells and starts lifting them, watching his reflection in the window as he does.\",talks to the servant and glances inside.,zips her panties down with a wounded slug.,1\n209,lsmdc0001_American_Beauty-45991,10979,They are too involved with each other to notice someone watching them from the drive - thru window. Someone,They are too involved with each other to notice someone watching them from the drive - thru window.,Someone,gold,\"leans out of the drive - thru window, grinning at her, holding bags filled with fast food.\",smashes the man's head.,spins and slaps the back.,and the someone wipe after the child's fingerprints.,0\n210,lsmdc0001_American_Beauty-45991,10960,\"We are outside someone's room, moving slowly toward the open door, through which we can see someone, standing at his bureau mirror, combing his hair. The scars on his face\",\"We are outside someone's room, moving slowly toward the open door, through which we can see someone, standing at his bureau mirror, combing his hair.\",The scars on his face,gold,are almost gone now.,is dark and weary.,lies at the ends of the bed.,is clean and shiny.,0\n211,lsmdc0001_American_Beauty-45991,10975,\"Smiley's uniform, is happily flipping burgers on a grill. Someone\",\"Smiley's uniform, is happily flipping burgers on a grill.\",Someone,gold,is tucked behind his legs.,practice fencing and someone.,stalking back for a spa.,looks up suddenly when he hears.,3\n212,lsmdc0001_American_Beauty-45991,10962,\"A reverse angle reveals someone standing outside the door looking in, watching someone with great tenderness. Then someone looks up at him, and someone\",\"A reverse angle reveals someone standing outside the door looking in, watching someone with great tenderness.\",\"Then someone looks up at him, and someone\",gold,lets him go with instinctively addressed.,is suddenly self - conscious.,has come to his feet on the balustrade.,aims his gaze at the way and stops a few yards from someone.,1\n213,lsmdc0001_American_Beauty-45991,10982,Someone almost jumps out of her skin. Someone,Someone almost jumps out of her skin.,Someone,gold,walks revealing a young woman standing in the kitchen sink.,struggles to appear nonchalant.,\"kicks the city forward, hitting someone with his fists.\",heads over to meet his entourage.,1\n214,lsmdc0001_American_Beauty-45991,10965,\"Someone leans forward from the passenger seat and glares at us. As someone starts to get in the car, someone\",Someone leans forward from the passenger seat and glares at us.,\"As someone starts to get in the car, someone\",gold,grabs leggings thug and walks in through the gates.,heaves a sigh.,gets into his car and comes back to school.,emerges from the house in his sweatpants.,3\n215,lsmdc0001_American_Beauty-45991,10966,\"As someone starts to get in the car, someone emerges from the house in his sweatpants. Someone\",\"As someone starts to get in the car, someone emerges from the house in his sweatpants.\",Someone,gold,\"gets a dark, white car.\",props himself up on his elbow and nudges his fist.,\"sits, drinking his beer as he steps in.\",\"watches, at first baffled, then impatient.\",3\n216,lsmdc0001_American_Beauty-45991,10964,\"Someone emerges from the house, followed by someone, who watches his son as he heads toward the Burnham house. Someone\",\"Someone emerges from the house, followed by someone, who watches his son as he heads toward the Burnham house.\",Someone,gold,leans forward from the passenger seat and glares at us.,turns the wheel away.,arrives at a dock at an outdoor entrance.,hauls back his car and makes his way to the bedroom.,0\n217,lsmdc0001_American_Beauty-45991,10961,The scars on his face are almost gone now. A reverse angle,The scars on his face are almost gone now.,A reverse angle,gold,\"reveals someone standing outside the door looking in, watching someone with great tenderness.\",appears with a flashing red laser at match.,\"and the mercenaries wait a little speed, on their boards.\",rises over the beautiful rose colored car.,0\n218,lsmdc0001_American_Beauty-45991,10963,\"Then someone looks up at him, and someone is suddenly self - conscious. Someone\",\"Then someone looks up at him, and someone is suddenly self - conscious.\",Someone,gold,\"leans back, releasing a second punch from both of his hands.\",\"emerges from the house, followed by someone, who watches his son as he heads toward the burnham house.\",stops at the pit of someone's arm.,\"begins to catch two, but someone keeps his hair close as he does so.\",1\n219,lsmdc0001_American_Beauty-45991,10967,The door swings open silently and someone enters. He,The door swings open silently and someone enters.,He,gold,starts going through someone's bureau.,\"goes to the bed, goes downstairs on clothes, and drives back to the kitchen.\",raises the classroom door.,\"starts forward, finding the door open.\",0\n220,lsmdc0001_American_Beauty-45991,10971,\"Someone sits at the kitchen table, staring off into space. He\",\"Someone sits at the kitchen table, staring off into space.\",He,gold,stuffs his face in the blender.,takes off the cake.,switches off the lights.,takes the cassette out of the digicam and inserts another.,3\n221,anetv_A8NAj6NQ5vM,7468,A group of men are playing volleyball in front of a crowd. They lob the ball back and forth and a cameraman,A group of men are playing volleyball in front of a crowd.,They lob the ball back and forth and a cameraman,gold,appears on the screen.,knocks over once.,looks up to see a performance with extensions.,tries to keep up.,3\n222,anetv_OhydQlKoSUw,11363,A person is seen getting out of a car and walking around to the trunk to grab a surf board. The person,A person is seen getting out of a car and walking around to the trunk to grab a surf board.,The person,gold,continuously spins around the waves while the camera captures all of them from several angles.,continuously works around a dirt bike while turning and cleaning the clothes.,holds up a hole and turns around so they are then get out of the water.,is then seen wearing a suit and running down a boardwalk followed by him surfing.,3\n223,anetv_OhydQlKoSUw,11364,The person is then seen wearing a suit and running down a boardwalk followed by him surfing. The man,The person is then seen wearing a suit and running down a boardwalk followed by him surfing.,The man,gold,begins to throw and do the same.,pulls a large board and land his large pack of water in the distance.,stops performing lifts his bar and does stunts and spins.,glides along the water in slow motion and is then seen speaking to the camera.,3\n224,anetv_2YeImloBCA8,17188,We see people working out on exercise steps in an aerobics class. The leader,We see people working out on exercise steps in an aerobics class.,The leader,gold,uses a timer to move off.,finishes his routine and stands and smiles.,mounts then walks back to the gym.,puts her hand in the air.,3\n225,anetv_2YeImloBCA8,17190,The lady in back left gets lost and stops. Rear right,The lady in back left gets lost and stops.,Rear right,gold,gets lost and throws out her arms.,lady mixes her things together and rolls the leaves.,turn a red bend to the left.,\"move cautiously and sideways, ending her dance and head with other people.\",0\n226,anetv_2YeImloBCA8,17191,Rear right gets lost and throws out her arms. The instructors arm,Rear right gets lost and throws out her arms.,The instructors arm,gold,hugs and grabs in her entire summer suit.,goes and begin doing another routine.,raises her body and demonstrates the same way as she encased in the discus.,is in the air again.,3\n227,anetv_2YeImloBCA8,17189,The leader puts her hand in the air. The lady in back left,The leader puts her hand in the air.,The lady in back left,gold,\"falls to the ground, closing with her upper hand three times.\",gets lost and stops.,flips off then runs as other people try to stop her.,looks into a lake at station.,1\n228,anetv_ooWk0EL6I7o,9976,They talk to each other and a broom enters the scene. they,They talk to each other and a broom enters the scene.,they,gold,start to move forwards.,hold hands as they continue dancing with each other.,turn to the smiling group while with a quick glimpse of the ladder.,are bigger into a fire trucks and draws back.,0\n229,anetv_LXHc1X1pKEM,8567,There's a young man sitting on the bath tub along with the woman. He,There's a young man sitting on the bath tub along with the woman.,He,gold,stirs a steaming metal bucket with water.,washes his legs with baby soap and water and begins shaving his legs.,is rolling a puppy out on a small sofa.,is there with a toothbrush.,1\n230,anetv_LXHc1X1pKEM,8566,She shows the viewers the type of razor she will be using. There,She shows the viewers the type of razor she will be using.,There,gold,'s a young man sitting on the bath tub along with the woman.,is talking to the camera.,\", she demonstrates how the process as to get the defense done donuts and then uses all the needle on her teeth to talk.\",rotating the head of a hip weightlifter.,0\n231,anetv_LXHc1X1pKEM,8568,He washes his legs with baby soap and water and begins shaving his legs. Then the woman,He washes his legs with baby soap and water and begins shaving his legs.,Then the woman,gold,stands next to the kitchen counter.,takes the razor and helps her husband shave his legs.,stops scraping a brush bubbles to the camera the little girl looks up to see more the warm animated credits.,puts a white mousse on her legs.,1\n232,anetv_LXHc1X1pKEM,8565,She stands up and shows the cycling team printed on her tank top. She,She stands up and shows the cycling team printed on her tank top.,She,gold,bend down and she does the top bodybuilder on someone.,dips her foot in the water.,shows the viewers the type of razor she will be using.,slides the cord back into the tire.,2\n233,anetv_LXHc1X1pKEM,8564,A woman with short hair and a white tank top is sitting in her bathroom talking about a cyclist who is going to shave his legs. She,A woman with short hair and a white tank top is sitting in her bathroom talking about a cyclist who is going to shave his legs.,She,gold,stands up and shows the cycling team printed on her tank top.,brings the needle fingernail a thick layer over the body and rubs it down over them.,are hand on a small table.,put her arms over the woman's neck and give her a push several times.,0\n234,anetv_a7FNzxXWvgU,19091,The man then gets a container of Genoa Salami from the fridge and piles slices onto the bread slices. He then,The man then gets a container of Genoa Salami from the fridge and piles slices onto the bread slices.,He then,gold,puts slices of tomato lettuce on a small piece of bread and smooths them together.,brings an axe up to plate.,puts the bread slices on top of each other and completes the sandwich.,takes a knife from a plate and takes a mouthful of the pasta.,2\n235,anetv_a7FNzxXWvgU,19090,He then uses a knife to scoop out the miracle whip on to the bread slices. The man then,He then uses a knife to scoop out the miracle whip on to the bread slices.,The man then,gold,opens a bag of swiss cheese and places a slice on each bread slice.,engages in a game of curling and he starts to cut the bread.,begins to cut out wood pieces with a cut smaller pieces.,takes the piece of ingredient and rubs it in half with the other lemon and shredded it all in into the gift bag.,0\n236,anetv_a7FNzxXWvgU,19089,The man then opens the refrigerator and pulls out a new bottle of Miracle Whip. He then,The man then opens the refrigerator and pulls out a new bottle of Miracle Whip.,He then,gold,grabs the drink and puts it on a cup.,uses a knife to sharpen the ankle.,uses a knife to scoop out the miracle whip on to the bread slices.,takes a cup and stirs his ale in the bowl.,2\n237,anetv_a7FNzxXWvgU,19088,The man raises an empty bottle of Miracle Whip and tosses it backhanded. The man then,The man raises an empty bottle of Miracle Whip and tosses it backhanded.,The man then,gold,lifts the axe and lifts the circle.,opens the refrigerator and pulls out a new bottle of miracle whip.,puts the cast on the counter into a wall and ads a tomato.,\"pours a liquid into the glass, cleaning it with a lime.\",1\n238,anetv_BxEnhkx2srY,19401,A boy prepares to do a high jump in a gym. He,A boy prepares to do a high jump in a gym.,He,gold,slides on the ground as he rides away several times.,jumps down and moves into a whirlwind of sand.,takes off running with the high jump stick.,walks up and twirls a hula hoop with a winner.,2\n239,anetv_BxEnhkx2srY,19402,He takes off running with the high jump stick. he,He takes off running with the high jump stick.,he,gold,\"completes the skateboard, then more goes up and hits the far bar pretty quickly.\",makes the jump and lands on the safety pads.,throws more pins while singing and laughing as he spins in the air.,goes to catch the front tire.,1\n240,anetv_OaG9uH7BgjI,17162,\"The cat begins to pull away slightly, out of fear of being hurt. The vet then clips the cat nails carefully, and the cat\",\"The cat begins to pull away slightly, out of fear of being hurt.\",\"The vet then clips the cat nails carefully, and the cat\",gold,stops on the door.,continues to take care of the cat's nails.,is crouching down in front of it.,feels much better after all is done.,3\n241,anetv_OaG9uH7BgjI,16952,A close up of a person holding a cat is shown followed by a vet speaking to the camera and holding up a cat claw. The vet them,A close up of a person holding a cat is shown followed by a vet speaking to the camera and holding up a cat claw.,The vet them,gold,continues cutting some nail clippers while looking around and ends by showing a bag of nail scissors.,demonstrates how to properly cut a cat's claws by using scissors and speaking to the camera with the other woman petting the cat.,shows several shots while rolling out a box and rubbing it on a pair of scissors.,adds a mallet to the eye and begins cutting its claws.,1\n242,anetv_OaG9uH7BgjI,17160,Two women from the veterinarian clinic are giving a demonstration on how to clip cat nails. One woman,Two women from the veterinarian clinic are giving a demonstration on how to clip cat nails.,One woman,gold,is to an open cutting floor.,hands her another cat to a talk.,\"holds the cat, while the other starts holding up a paw.\",picks up a sandwich.,2\n243,anetv_OaG9uH7BgjI,17161,\"One woman holds the cat, while the other starts holding up a paw. The cat\",\"One woman holds the cat, while the other starts holding up a paw.\",The cat,gold,\"continues cutting and knocks a cat while he goes, clear it's just an bigger potato.\",brushes the man's nails while a man behind him removes leaves.,\"begins to pull away slightly, out of fear of being hurt.\",\"is dancing on the floor, carving it on the cat.\",2\n244,lsmdc3079_THINK_LIKE_A_MAN-37000,5003,Leslie keeps her hand up as he fakes repeatedly. He goes up and she,Leslie keeps her hand up as he fakes repeatedly.,He goes up and she,gold,\"runs at him, smiling.\",shoves her head away.,stops her with a sideways kick.,slaps the ball away.,3\n245,lsmdc3079_THINK_LIKE_A_MAN-37000,5002,\"As he shoots, Ron Artest smacks the ball away. Leslie\",\"As he shoots, Ron Artest smacks the ball away.\",Leslie,gold,reaches into his pocket and pulls out a handful of red tic.,checks his watch as he obeys the broken strips across the wooden floor.,keeps her hand up as he fakes repeatedly.,\"aims at the team player, which rips off someone's opponent.\",2\n246,lsmdc3079_THINK_LIKE_A_MAN-37000,5001,\"Someone sets a pick and someone dribbles around him. As he shoots, Ron Artest\",Someone sets a pick and someone dribbles around him.,\"As he shoots, Ron Artest\",gold,smacks the ball away.,lands on the winning position.,shoots a series of cannons at his winnings.,opens his door to someone.,0\n247,lsmdc3079_THINK_LIKE_A_MAN-37000,5000,Someone gazes up at someone Leslie. Now Leslie,Someone gazes up at someone Leslie.,Now Leslie,gold,checks the ball to someone who raises an arm in a signal to his team.,falls off his broomstick as someone watches the hydra whiz away.,splash - the hockey team practice technique.,beads long suit is sent into the omelette.,0\n248,anetv_1hiyhNqakMI,9117,The man uses a lawn mower up and down the yard. He,The man uses a lawn mower up and down the yard.,He,gold,spreads flat paper onto the ground.,cuts the grass with the white tractor.,moves the lawn mower around while the man finishes the cut.,continues moving around the yard.,3\n249,anetv_1hiyhNqakMI,17957,The person uses a tool all along the yard while the camera captures their movements. They,The person uses a tool all along the yard while the camera captures their movements.,They,gold,see a large group of machinery.,show different logos in a paper school.,see them going right and rides off one another along the sidewalk.,pull out another object after a day and continue moving around the yard.,3\n250,anetv_1hiyhNqakMI,17956,A bucket is seen sitting in a yard followed by a person moving up and down the yard. The person,A bucket is seen sitting in a yard followed by a person moving up and down the yard.,The person,gold,dumps the child back in the bucket as another person comes out of frame to help the bucket down.,continues vacuuming while the person continue to scrape tools and rakes it along the tree.,uses a tool all along the yard while the camera captures their movements.,moves the mop all around the area as well as brushes it all along.,2\n251,anetv_1hiyhNqakMI,9116,A large yard is seen followed by a man moving in and out of frame. The man,A large yard is seen followed by a man moving in and out of frame.,The man,gold,continues to swing and move around while the camera captures the movements.,finishes the hookah and talks to the camera.,continues using the machine and pans around the room to put his shoes on.,uses a lawn mower up and down the yard.,3\n252,lsmdc0022_Reservoir_Dogs-59138,7564,Someone is the Somebody Else. He,Someone is the Somebody Else.,He,gold,is behind the wheel of the getaway car.,grabs it and peers down at its chimes.,goes into the house and puts down the situation.,slips into the coat lounge.,0\n253,lsmdc0022_Reservoir_Dogs-59138,7561,He lies in the backseat. He,He lies in the backseat.,He,gold,\"presses a button on a nearby desk, sucking up his teeth.\",covers someone from his hands.,is been shot in the stomach.,starts to climb up a bearded porch ladder.,2\n254,lsmdc0022_Reservoir_Dogs-59138,7562,He is been shot in the stomach. Blood,He is been shot in the stomach.,Blood,gold,comes violently across a large screen.,bounce up a balls than being caught on the empty one.,pulls a revolver out of his mouth and dashes to his feet.,covers both him and the backseat.,3\n255,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17454,They climb a grassy slope. The faint glow of dawn,They climb a grassy slope.,The faint glow of dawn,gold,is visible in the sky.,is drawn along the rocky horizon.,appears in the sky.,approaches a dark flowerbed.,2\n256,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17456,\"People, and the twins let go, and land heavily. Someone\",\"People, and the twins let go, and land heavily.\",Someone,gold,surfaces in supply bag.,looks up and sees people hiking sedately down to earth.,ii appears with scattered blood.,shakes desperately with the car.,1\n257,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17461,\"The spectators take their seats in the stands, many of them wearing colorful national costumes. He\",\"The spectators take their seats in the stands, many of them wearing colorful national costumes.\",He,gold,\"watches a young girl being flattened, then runs into an offices about some high - askew, children.\",stops someone with his walking stick.,\"and someone, the zoo, are posed in they movie as they follow.\",hugs the penguins beauties.,1\n258,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17465,He hovers in front of a waving flag proclaming the name someone. Someone,He hovers in front of a waving flag proclaming the name someone.,Someone,gold,stands just as the plane fires massive engines.,raises his fist confidently.,watches the coin play on someone's lips.,is worriedly drawing a framed photo of himself in his office.,1\n259,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17462,Spotlight beams illuminate the packed stands. Someone and the twins,Spotlight beams illuminate the packed stands.,Someone and the twins,gold,look on as someone glides past ancient steel - paneled hall.,get out after someone.,arrive and rush to the main dish.,wear green and white scarves.,3\n260,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17458,\"The sun rises, as they look down on a gigantic campsite. Jugglers\",\"The sun rises, as they look down on a gigantic campsite.\",Jugglers,gold,move through a river.,jumps at the end of it and slips on the mountainside.,mist streams across the desert.,\"entertain the crowd, as even more tents are erected.\",3\n261,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17460,\"As evening falls, they join the excited crowds in the magnificent Quidditch stadium. The spectators\",\"As evening falls, they join the excited crowds in the magnificent Quidditch stadium.\",The spectators,gold,join the school and march back a crowd with gifts.,\"stare up from the train at which point birds retreating towards the pavements, which has risen falling off people.\",\"take their seats in the stands, many of them wearing colorful national costumes.\",listen against the ballroom as members of the band are conducting.,2\n262,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17455,They all touch the boot which begins to spin like a Catherine wheel. They,They all touch the boot which begins to spin like a Catherine wheel.,They,gold,gaze along the track at a map of skills.,are hard working.,\"are pulled with it, spinning faster and faster, into a bright light.\",see the cuffs make its tank go down.,2\n263,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17459,\"People on broomsticks, fly dangerously low. Someone\",\"People on broomsticks, fly dangerously low.\",Someone,gold,\", sitting by concrete, seems to see fallen on the ground.\",\"holds someone, who jumps down, seemingly in front of his son.\",shows the biker himself.,leads them to a shabby two - man tent.,3\n264,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17457,\"They follow the others, along a cliff top, overlooking the sea. The sun\",\"They follow the others, along a cliff top, overlooking the sea.\",The sun,gold,\"is drenched in the rain, passing its warmly blowing trees and starting to move farther into the scene.\",rises ominous in the darkness.,\"stretches up, casting long lines across the spacious structure, burning parts splashed across the rock walls.\",\"rises, as they look down on a gigantic campsite.\",3\n265,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17464,Someone takes them to the highest level of the stadium. The seven Irish players,Someone takes them to the highest level of the stadium.,The seven Irish players,gold,continue to pass each other a bit in the row.,rush up behind the crouches.,zoom out in formation.,stretch through the air toward the crane terminal.,2\n266,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17463,Someone and the twins wear green and white scarves. Someone,Someone and the twins wear green and white scarves.,Someone,gold,takes them to the highest level of the stadium.,holds his watch as the two commander appear for the funeral and allows group to begin walking nearby.,handing a teacup to someone.,clicks the turn starting.,0\n267,lsmdc1015_27_Dresses-79589,16573,\"Carrying the bulky dress in a bag, adult someone, in a formal purple dress, hurries out of the shop onto a busy New York street. Pausing for breath on a street corner, another young woman\",\"Carrying the bulky dress in a bag, adult someone, in a formal purple dress, hurries out of the shop onto a busy New York street.\",\"Pausing for breath on a street corner, another young woman\",gold,goes into the corner enclosure.,removes her heeled shoes from the floor.,\"stands in her arms of the foreground, spraying her, is wearing a white raincoat.\",walks up wearing the same purple dress.,3\n268,anetv_JLipYEVwKTg,9860,A woman wearing a leopard print jacket is sitting with a man in a hookah bar. The man,A woman wearing a leopard print jacket is sitting with a man in a hookah bar.,The man,gold,kisses her as he leans forward.,is talking to the other woman inside the office.,starts drinking a long pipe and shaker.,places a tall metal bear in a pot.,0\n269,anetv_JLipYEVwKTg,9862,\"She is holding the hookah in her hand ready to take her first puff. After she inhales the hookah, she\",She is holding the hookah in her hand ready to take her first puff.,\"After she inhales the hookah, she\",gold,continues smoking by them get dressed.,is once again turned on recorder.,inhales and exhales smoke.,puffs out some smoke and coughs in discomfort.,3\n270,anetv_JLipYEVwKTg,9861,The man kisses her as he leans forward. She,The man kisses her as he leans forward.,She,gold,turns his head away and kisses her hungrily in the lips.,is holding the hookah in her hand ready to take her first puff.,turns away and the creature slowly turns away from her.,takes off her perfume and takes the car.,1\n271,anetv_1IhbkbuDPpc,9623,\"People roller skates passing around cones and a ramps to flip. Then, a boy\",People roller skates passing around cones and a ramps to flip.,\"Then, a boy\",gold,walks in circles inside a line of rollerblading social gear.,jumps on a bar with sticks.,puts on roller skaters and performs in the gym.,holds one skateboard during a course of traffic.,2\n272,anetv_1IhbkbuDPpc,10822,The people are seen riding around a large gymnasium on roller blades performing various flips and tricks. The boys,The people are seen riding around a large gymnasium on roller blades performing various flips and tricks.,The boys,gold,\"continue to play and whisper at one another while still speaking, with their hands set up.\",follow their water performing various jumps going from the platform on their feet one more time.,continue skating around and interacting with one another and performing impressive tricks.,continue to perform tricks with one another and continue gymnastics in the same manner.,2\n273,anetv_1IhbkbuDPpc,9622,\"People load a car with wood furniture, then people talk on front the camera. People roller skates\",\"People load a car with wood furniture, then people talk on front the camera.\",People roller skates,gold,go on a dirt road.,\"skates filled in empty streets, different styles and stages of grass.\",passing around cones and a ramps to flip.,sweep each street and a pile of cereal simultaneously before the ice is shown.,2\n274,anetv_1IhbkbuDPpc,10821,A small group of people are seen lifting a large object into the back of a van and close ups of them and a building. The people,A small group of people are seen lifting a large object into the back of a van and close ups of them and a building.,The people,gold,continue to work as well as following objects around and adjusting to the incident.,continue to push the carpet all around.,continue climbing down the mountain with one another as well as riding their feet and looking down one another up.,are seen riding around a large gymnasium on roller blades performing various flips and tricks.,3\n275,lsmdc1038_The_Great_Gatsby-87629,12594,\"At someone's, people sit around a dining table. Someone\",\"At someone's, people sit around a dining table.\",Someone,gold,wears a pale - pink suit.,hides at a table in front of him.,takes off the glasses from a paper cup.,holds her hands apart with a barred seal.,0\n276,lsmdc1038_The_Great_Gatsby-87629,12596,\"Attempting to light a cigarette, someone fumbles with the lighter and drops it. Someone\",\"Attempting to light a cigarette, someone fumbles with the lighter and drops it.\",Someone,gold,runs out onto a small dock.,backs into the alley.,picks it up for her.,sits on a bed.,2\n277,lsmdc1038_The_Great_Gatsby-87629,12592,Someone looks round again and sees someone lurking in the shadows. Someone,Someone looks round again and sees someone lurking in the shadows.,Someone,gold,puts her outstretched hand to her chest.,turns and walks off.,\"watches, watching closely.\",opens the door for someone and they step into the massage bed together.,1\n278,lsmdc1020_Crazy_Stupid_Love-81333,17471,\"At school, someone takes books out of her locker. She\",\"At school, someone takes books out of her locker.\",She,gold,takes a large envelope from a drawer.,takes off his jacket and marches out.,goes and the board lights up.,peeks out from behind her locker door at a girl of her own age with long blonde hair.,3\n279,lsmdc1020_Crazy_Stupid_Love-81333,17472,She peeks out from behind her locker door at a girl of her own age with long blonde hair. The girl,She peeks out from behind her locker door at a girl of her own age with long blonde hair.,The girl,gold,wearing the mismatched outfit gives her a kind look.,and her son visits someone.,unlocks the door on someone's horse.,heads off down the corridor.,3\n280,lsmdc1020_Crazy_Stupid_Love-81333,17473,Someone jogs around a corner. The girl,Someone jogs around a corner.,The girl,gold,stops in the tracks.,flips through the windscreen and leaps into the pool.,is waiting for her.,scans someone and goes down to kiss him.,2\n281,anetv_sODu6d-3zAQ,3067,A girl in jeans and a black shirt is holding a sparkly silver hula hoop. She,A girl in jeans and a black shirt is holding a sparkly silver hula hoop.,She,gold,\"went under the hopscotch with her hands and try on it, then finishes back to the bottom to the camera.\",are in a kitchen throwing water.,is then settling in the hallway on how to exercise and then start dancing and getting a haircut while moving another hula hoop.,talks for awhile and then steps through the hoop with both legs.,3\n282,anetv_sODu6d-3zAQ,3068,She talks for awhile and then steps through the hoop with both legs. She,She talks for awhile and then steps through the hoop with both legs.,She,gold,walks away from the boat.,\"places it on her waist and spins it for a little bit, then stops.\",puts her hand onto her legs as she continues.,moves the arms up and down while the girl finishes.,1\n283,anetv_sODu6d-3zAQ,6690,A person is seen holding a hula hoop in front of the camera and transitions into her holding the hula hoop around her waist. She,A person is seen holding a hula hoop in front of the camera and transitions into her holding the hula hoop around her waist.,She,gold,pauses to hold the hoop some more and then moves the object around her waist several times.,puts the lens into her eye and starts moving her hair all around.,begins moves around the back of the leg with a basketball hoop and leads into her holding up the hoop.,more games of photography are seen on the screen too.,0\n284,anetv_sODu6d-3zAQ,3069,\"She places it on her waist and spins it for a little bit, then stops. After that she\",\"She places it on her waist and spins it for a little bit, then stops.\",After that she,gold,puts the package down on her hand and leaves the area.,talks for a bit more and then spins it on her hips for a while again.,\"continues on the exercise, but her feet also walk out of the room.\",takes a sip of his drink and finishes by pouring the drink again.,1\n285,lsmdc3044_KNOCKED_UP-20991,4591,She wipes a tear and heads off. Someone and someone,She wipes a tear and heads off.,Someone and someone,gold,arrive at a building's center.,hurry down the corridor.,wait by the car.,arrive at one of the high rise roof.,2\n286,anetv_aXnllTmgeqg,3647,He beats the cymbals and drums very fast. He,He beats the cymbals and drums very fast.,He,gold,begins to play playing for the accordion.,puts his hand up behind his ears as he tries to solve a movements.,\"continues, making faces as he goes.\",is using drum sticks to play a globe and fourth drum.,2\n287,anetv_aXnllTmgeqg,3646,\"A man is shown on a stage, playing drums. He\",\"A man is shown on a stage, playing drums.\",He,gold,beats the cymbals and drums very fast.,stops the crowd as the crowd claps.,demonstrates how to play the violin on front a band.,continues playing the guitar while still singing.,0\n288,anetv_PUJqlmTdlak,2179,A man shuffles a deck of cards and deals them. Four aces,A man shuffles a deck of cards and deals them.,Four aces,gold,motorcade pass an rise of china tables.,are an ice rink of a hockey hockey game.,\"are shown an open bag inside a hatchback, an alien is down running down the lane.\",are shown face up on the table.,3\n289,anetv_PUJqlmTdlak,2180,Four aces are shown face up on the table. A man,Four aces are shown face up on the table.,A man,gold,sits at a table and plays blackjack.,walks to the camera and performs some taunting stances.,is speaking to the camera holding a razor and begins shaving his face.,shows how to weld a piece of wood while speaking.,0\n290,anetv_1oyWMusaDTI,17786,A man is kite surfing on the edge of the board. The camera zoom in and,A man is kite surfing on the edge of the board.,The camera zoom in and,gold,zooms out on the side of the head.,the people are skiing around.,show the group taking off the water.,shows the board then zooms back out.,3\n291,anetv_1oyWMusaDTI,17787,The camera zoom in and shows the board then zooms back out. We,The camera zoom in and shows the board then zooms back out.,We,gold,see the men riding down the boat.,see a man looking to the camera.,see the finished product.,see the road in the distance and see cars driving.,3\n292,anetv_6gZuc4umTPk,4326,Two young girls are seen speaking to the camera and playing with one another. One girl then,Two young girls are seen speaking to the camera and playing with one another.,One girl then,gold,begins kicking the ball around while the camera pans in to the side.,pulls out a bottle of nail polish while the other waves to the camera.,takes out her camera while another girl raises her head back to the camera.,pushes the other and begins arm wrestling again in slow motion.,1\n293,anetv_6gZuc4umTPk,4327,One girl then pulls out a bottle of nail polish while the other waves to the camera. More clips,One girl then pulls out a bottle of nail polish while the other waves to the camera.,More clips,gold,are shown of one girl attempting to paint the nails of the other and ends by waving to the camera.,are shown of people adding their shoes.,are shown of dogs being demonstrated by another man.,are shown of people working together to maintain eye contact.,0\n294,anetv_YWsqpINl8Ic,13308,The man uses two squeegees to clean two windows at the same time. The man,The man uses two squeegees to clean two windows at the same time.,The man,gold,stops the left with small other thing parts in his left hand.,finishes the hookah as he dances with the young boy.,scrapes with a pair of paper and a entire board covered with wax.,finishes and puts his tools in his tool belt.,3\n295,anetv_YWsqpINl8Ic,13307,A handyman is standing in front of a porch and talking. The man,A handyman is standing in front of a porch and talking.,The man,gold,gets out of a chair and starts playing a saxophone.,then opens a window and begins painting the furniture with a wiper.,uses two squeegees to clean two windows at the same time.,is washing the syrup's window.,2\n296,anetv_YWsqpINl8Ic,13309,The man finishes and puts his tools in his tool belt. He,The man finishes and puts his tools in his tool belt.,He,gold,\"removes the replaced harness to dry the wall, to a car.\",smiles and walks away.,puts the snowboard on his back and gives a thumbs up.,adjusts the handlebars on his bike and shows off their front tire onto the car top.,1\n297,lsmdc0019_Pulp_Fiction-56847,6651,Someone lies her head back. Someone,Someone lies her head back.,Someone,gold,continues to massage her crotch.,raises plunges her hands forward and tries to lift her brother up.,turns to someone as she stands.,whacks someone with her face and slaps someone on the shoulder.,0\n298,anetv_iM-HdlplAhw,10584,A child is seen handing onto a set of monkey bars while children running around. The girl then,A child is seen handing onto a set of monkey bars while children running around.,The girl then,gold,jumps back and fourth on a pair of monkey bars under the roof.,rides the lawn along the playground while looking off into the distance.,begins climbing across the set of monkey bars.,\"pauses to demonstrate, swinging back and fourth while speaking to the camera.\",2\n299,anetv_iM-HdlplAhw,10585,The girl then begins climbing across the set of monkey bars. She,The girl then begins climbing across the set of monkey bars.,She,gold,jumps and walks back onto the horse while laughing.,climbs all the way to the end and jumps off the side.,watches the machine gymnastic the monkey bars across the room.,continues cutting the unit and jumps all the way down the slide.,1\n300,anetv_gvr1dpCpvhw,16973,The lady cuts the cake and people eat it and give a thumbs up. We,The lady cuts the cake and people eat it and give a thumbs up.,We,gold,see ending title credits.,see a red ending screen and a man with the camera heats the ice.,see a lady taking puffs from a hookah.,hands the baby out and put pasta in his wet avert boy.,0\n301,anetv_gvr1dpCpvhw,16967,We see a title screen and a cake. We,We see a title screen and a cake.,We,gold,see ingredients on a table.,see a man throwing a tire.,see screens laying on a white screen.,see items at the bottom.,0\n302,anetv_gvr1dpCpvhw,16972,The lady sprinkles graham crackers and puts mango and grapes on top. the lady cuts the cake and people,The lady sprinkles graham crackers and puts mango and grapes on top.,the lady cuts the cake and people,gold,poke the cake at the screen.,are her and mixing the cake into a cake.,eat it and give a thumbs up.,eat and eat hard.,2\n303,anetv_gvr1dpCpvhw,16934,A view is seen of a female chef and a male one appears. They,A view is seen of a female chef and a male one appears.,They,gold,wave at the camera before showing a recipe for graham cracker cake.,jump before her performing long jumps.,man is running in oil and sharpening.,then shows two fish together and the girl then wipes a crack of the ice on front of the fish.,0\n304,anetv_gvr1dpCpvhw,16970,The lady puts graham crackers in a bowl and layers with the milk mixture. The lady,The lady puts graham crackers in a bowl and layers with the milk mixture.,The lady,gold,measures the board and adds all the ingredients together.,ads mango slices and returns to layering the mixture and crackers.,puts onions and pickles mixture into a pasta bowl.,throws the cake into two small pieces.,1\n305,anetv_gvr1dpCpvhw,16968,We see ingredients on a table. The lady,We see ingredients on a table.,The lady,gold,holds up a white cloth and leads it to the children.,pours milk and an item in a bowl and mixes and cuts mango.,grabs a ball and puts it in a cup.,adds the baby to a razor on the back of a chair.,1\n306,anetv_gvr1dpCpvhw,16971,The lady ads mango slices and returns to layering the mixture and crackers. the lady,The lady ads mango slices and returns to layering the mixture and crackers.,the lady,gold,puts the press pan down on the bread with the potatoes.,applies baking paste on her new doll and places a pair of clamps on the paper.,measures two potatoes pieces.,sprinkles graham crackers and puts mango and grapes on top.,3\n307,anetv_gvr1dpCpvhw,16935,They wave at the camera before showing a recipe for graham cracker cake. They,They wave at the camera before showing a recipe for graham cracker cake.,They,gold,are at computer prices where several images of the colleagues are shown.,engage in a break dancing.,can be seen riding in a beanie.,\"show the cake in layers of graham crackers, and are each served a piece.\",3\n308,anetv_gvr1dpCpvhw,16969,The lady pours milk and an item in a bowl and mixes and cuts mango. The lady,The lady pours milk and an item in a bowl and mixes and cuts mango.,The lady,gold,puts graham crackers in a bowl and layers with the milk mixture.,puts up a spoon and adds it to the pot.,pours her measure in the bottle.,puts seconds of milk on a plate and pours shots in a white pan with the newcomer.,0\n309,lsmdc3057_ROBIN_HOOD-27684,16344,She smirks at someone and rides off. He,She smirks at someone and rides off.,He,gold,smiles and falls heavily.,wears a bashful smile.,kneels down behind her.,gives him a playful glance.,1\n310,lsmdc3057_ROBIN_HOOD-27684,16343,\"Noticing someone, they quickly retreat. She\",\"Noticing someone, they quickly retreat.\",She,gold,swings desperately to walk through the crowd.,\"flings him down, runs into the corridor.\",smirks at someone and rides off.,tries to restrain someone but the grenade plummets to the ground and miss someone.,2\n311,lsmdc3057_ROBIN_HOOD-27684,16342,Someone trots over to them ahead of someone. The tall woman and two of the dancing beauties,Someone trots over to them ahead of someone.,The tall woman and two of the dancing beauties,gold,emerge from doorways nearby.,have into a box.,are on a front bed.,reach their square office formations.,0\n312,anetv_IqRN2sOQ7Mo,16789,Children walk along a dirt road on the side of buses. Children,Children walk along a dirt road on the side of buses.,Children,gold,still women are placed in front of the mirror as the woman talks to the camera.,are across the path and xs on their skateboards at a city in most cultural locations.,slide down a hill past a huge camera holding a ticket on their side.,talk while holding kites that they made in their hands.,3\n313,anetv_IqRN2sOQ7Mo,6533,Many people are on the screen commenting on the events of the day. Kites,Many people are on the screen commenting on the events of the day.,Kites,gold,\", people are at a bar on a beach having fun.\",are being flown high up in the air as several spectators look at all the kites.,are kayaking to the water.,take the headlamp and jump appear.,1\n314,anetv_IqRN2sOQ7Mo,16787,A beach is seen from above with many people seated on the shore. Buses,A beach is seen from above with many people seated on the shore.,Buses,gold,are also seen playing beer pong and women waiting down at the beach.,drive along the road with passengers.,\"paddle after, paddling in the turbulent waves.\",\"are seen from afar, celebrating as well as people afterwards hitting a ball.\",1\n315,anetv_IqRN2sOQ7Mo,6535,People are walking back and forth enjoying the show of the colorful flying objects. Children,People are walking back and forth enjoying the show of the colorful flying objects.,Children,gold,are shown running from the boats while men goes through the waves.,are turned around and grabbing the sign for a hug.,cheer at the end of the video as they are holding kites.,are performing in white photo cycle squares.,2\n316,anetv_IqRN2sOQ7Mo,6534,Kites are being flown high up in the air as several spectators look at all the kites. People,Kites are being flown high up in the air as several spectators look at all the kites.,People,gold,\"are assembled, young skaters are singing.\",turn a rope to different dismounting and stand in time to cheer them on.,are walking back and forth enjoying the show of the colorful flying objects.,\"fly over a glass, water, and float with smaller kites on the sky.\",2\n317,anetv_IqRN2sOQ7Mo,16788,Buses drive along the road with passengers. Children,Buses drive along the road with passengers.,Children,gold,get out of the cars with tow.,walk along a dirt road on the side of buses.,kick their feet away from each other.,buy some directions and leave them as they speed down the road.,1\n318,anetv_IqRN2sOQ7Mo,16790,Children talk while holding kites that they made in their hands. Thousands of children,Children talk while holding kites that they made in their hands.,Thousands of children,gold,are swimming inside the house.,are seated together as they play a game of croquet.,play on the beach and fly their kites in the air.,are shown in different park with one holding ornaments and a hat.,2\n319,anetv_IqRN2sOQ7Mo,6532,People are on the beach enjoying a hot and sunny day. Many people,People are on the beach enjoying a hot and sunny day.,Many people,gold,are on the screen commenting on the events of the day.,are in the woods surrounded by silver ornaments.,are watching the man for a different competition in a club holding a sand castle.,\"are interacting outside on the beach, with a woman on a yacht making the beach.\",0\n320,lsmdc0004_Charade-47398,8243,It bears the Great Seal as a letterhead and the typed message reads. Someone,It bears the Great Seal as a letterhead and the typed message reads.,Someone,gold,runs across a busy track and falls by a line of dirt bikers covered in pepper and black.,has been reading over someone's shoulder.,sees someone looking at a picture in his rocky hand.,blinks then leans back and puffs his teeth.,1\n321,lsmdc0004_Charade-47398,8250,He works at a stain on his necktie with lighter fluid and hankie. He,He works at a stain on his necktie with lighter fluid and hankie.,He,gold,\"looks up at her, laughs silently, then goes back to his tie.\",withdraws his hand holding the fork of a national puffed invitation.,enters to a darkened caretaker.,sees it with his pencil and presses his hand along the wall nearby.,0\n322,lsmdc0004_Charade-47398,8246,\"Someone enters, looks for somebody, notices that the door to the private office is slightly ajar. Someone\",\"Someone enters, looks for somebody, notices that the door to the private office is slightly ajar.\",Someone,gold,comes to the door and looks in.,\", sneaking outside the door, walks across to another prisoner with a lever and a side lurches.\",\"moves past the wooden door, door open.\",\"is frozen in place, staring off.\",0\n323,lsmdc0004_Charade-47398,8247,Someone comes to the door and looks in. He,Someone comes to the door and looks in.,He,gold,sees someone holding the hammer as someone closed behind him and stares down at the ceiling.,turns to see someone pinning down in a chair.,\"stands her head, and he turns to a lamp on the window, standing in a bookcase.\",\"is a pale grey - haired man who looks, on first examination, older than his forty - odd years.\",3\n324,lsmdc0004_Charade-47398,8244,The elevator door closes on them. Someone,The elevator door closes on them.,Someone,gold,pulls the drapes shut.,\"reacts to this and starts down the hall, finally stopping at the door.\",\", he steps up.\",helps into the kitchen.,1\n325,lsmdc0004_Charade-47398,8245,\"The office is empty, the typewriter on the secretary's desk is covered with its plastic shroud. Someone\",\"The office is empty, the typewriter on the secretary's desk is covered with its plastic shroud.\",Someone,gold,'s sick slowly rises up partway.,\"pushes it down the residential, scowling in a bed.\",\"enters, looks for somebody, notices that the door to the private office is slightly ajar.\",walks up behind her.,2\n326,lsmdc0004_Charade-47398,8248,He wears heavy tortoise - framed glasses which fall down his nose and cause him to push them back in place every so often with a quick automatic motion. He,He wears heavy tortoise - framed glasses which fall down his nose and cause him to push them back in place every so often with a quick automatic motion.,He,gold,walks with underneath haze hidden lens tunnel and a long plank - wider view of the massive window separating its roof.,\"motions for her to enter, standing aside to let her do so.\",senses alcohol together and he goes behind the bar and proffers his hand to the bottle and he winks to it.,\"shines his way down the dimly lit yard of someone's apartment, which he still ago in his son's rain.\",1\n327,lsmdc0004_Charade-47398,8249,\"He motions for her to enter, standing aside to let her do so. He\",\"He motions for her to enter, standing aside to let her do so.\",He,gold,\"looks at someone, then leans forward and kisses his forehead.\",takes the lighter to him.,\"stands, wearing her lipstick, walks beside him, hands in full trust, as he leans toward someone.\",works at a stain on his necktie with lighter fluid and hankie.,3\n328,anetv_A3160tXXLGg,4277,The man grabs a rubik's cube and play with it. when the man,The man grabs a rubik's cube and play with it.,when the man,gold,finish the timer marks 14 seconds.,wins he begins to play the cube.,\"completes the workout, turning his face back and forth to record viewers.\",holds the cube the young man stands up.,0\n329,anetv_A3160tXXLGg,11280,The clock strikes 0 and a person picks up the cube. The cube,The clock strikes 0 and a person picks up the cube.,The cube,gold,begins to solve the puzzle.,jumps from the wall.,is completed in under 15 seconds.,works against the pitcher on a wall.,2\n330,anetv_A3160tXXLGg,11279,A Rubiks cube sits on a laptop as a clock counts down. The clock strikes 0 and a person,A Rubiks cube sits on a laptop as a clock counts down.,The clock strikes 0 and a person,gold,measures and folds the entire video.,sets the timer to pass a wall of metal.,picks up the cube.,happens at round 4 in bed.,2\n331,anetv_A3160tXXLGg,4276,A man put a timer on a laptop on top of a table. the man,A man put a timer on a laptop on top of a table.,the man,gold,sets a timer on a table.,solves the cube and proceeds to solve a rubik's cube.,grabs a rubik's cube and play with it.,then reactor the cube.,2\n332,anetv_A3160tXXLGg,11281,The cube is completed in under 15 seconds. The person,The cube is completed in under 15 seconds.,The person,gold,puts it down and shows the screen.,\"repeats striped 12, finally, then holds up the rubix cube and sets it upright in it.\",flips the paper around and adds it to scroll.,struggles to solve the cube.,0\n333,lsmdc1017_Bad_Santa-7393,12881,\"He checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open. Later he\",\"He checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open.\",Later he,gold,pulls the door barred shut after cupboard.,helps richard parker up to the dot and flees off in his own direction.,\"joins someone in the vault, and finds someone peering through the hole he drilled.\",\"passes someone a kid - lettered hobbling, turns him near and opens the door.\",2\n334,lsmdc1017_Bad_Santa-7393,12877,\"Now in regular clothes, someone's little helper opens a back door and finds someone surrounded by empty beer cans. The elf\",\"Now in regular clothes, someone's little helper opens a back door and finds someone surrounded by empty beer cans.\",The elf,gold,notices the vehicle peeking out from a building and swims toward someone then lifts its head and lower its weapon.,shakes his head sadly.,artist steps out to a nearby coffee chair.,swats ice from the bottle then rolls across it.,1\n335,lsmdc1017_Bad_Santa-7393,12884,\"She turns to the elf. The woman puts her foot on the accelerator, and the van\",She turns to the elf.,\"The woman puts her foot on the accelerator, and the van\",gold,flies gently into the ocean.,lands a few feet away.,splits up with fire.,speeds off throwing someone and the elf backwards.,3\n336,lsmdc1017_Bad_Santa-7393,12876,\"The snowman pulls his head off, revealing someone's profusely sweating little helper. Now in regular clothes, someone's little helper\",\"The snowman pulls his head off, revealing someone's profusely sweating little helper.\",\"Now in regular clothes, someone's little helper\",gold,crawls across a pub at a deserted zoo.,races through an suburban neighborhood complex where he bumps over and bumps into a bathtub.,\"'s swollen, as he chews her paste.\",opens a back door and finds someone surrounded by empty beer cans.,3\n337,lsmdc1017_Bad_Santa-7393,12872,The snowman slides down between the escalators as the alarm system continues its arming countdown. He,The snowman slides down between the escalators as the alarm system continues its arming countdown.,He,gold,picks up one frown and hits a button.,\"turns out into the courtyard, toward a wood - lined desk, one of whom is accompanied by two holding drawings.\",holds out his popped - up.,crashes into a display at the bottom and trots up to run through the shop.,3\n338,lsmdc1017_Bad_Santa-7393,12878,\"Someone mooches inside past his less than impressed elf. In the store's vault, someone\",Someone mooches inside past his less than impressed elf.,\"In the store's vault, someone\",gold,finds the band manager riding to the clergyman with a closing caption.,uses a heavy drill to bore through the door of a locked safe.,enters his living room and picks the iron empty.,is standing up in front of a bed.,1\n339,lsmdc1017_Bad_Santa-7393,12871,\"As someone shuffles off, the guard keys a code into an alarm system. Up in the grotto, three snowmen\",\"As someone shuffles off, the guard keys a code into an alarm system.\",\"Up in the grotto, three snowmen\",gold,sit behind statues of someone and the baby someone in his crib.,sit prone as the plane rattles its side door.,\"went to a stretcher, wielding an iron through open protective glass doors.\",\"drop in, powdered leaves spill out of the room.\",0\n340,lsmdc1017_Bad_Santa-7393,12879,\"In the store's vault, someone uses a heavy drill to bore through the door of a locked safe. Out on the shop floor of the store, the elf walks along towing a small hand cart, someone\",\"In the store's vault, someone uses a heavy drill to bore through the door of a locked safe.\",\"Out on the shop floor of the store, the elf walks along towing a small hand cart, someone\",gold,huddled on the patio.,pulls out the drill from the safe door.,'s gaze fixed on someone.,darts in the direction of new the naked man.,1\n341,lsmdc1017_Bad_Santa-7393,12874,The snowman pulls the arm off of a mannequin as he goes. He,The snowman pulls the arm off of a mannequin as he goes.,He,gold,strides and the man somersaults onto the side of the stage.,uses the arm to reach up and switch off the alarm before it can on.,follows someone inside the bedroom.,\"looks at his computer, then sighs, then turns to someone.\",1\n342,lsmdc1017_Bad_Santa-7393,12880,\"On the shop floor, his little helper helps himself to an expensive handbag from a display cabinet, then some women's designer shoes, all of which are detailed on a list. He\",\"On the shop floor, his little helper helps himself to an expensive handbag from a display cabinet, then some women's designer shoes, all of which are detailed on a list.\",He,gold,hears the chuckles as she joins someone's mercedes.,nods to himself as he hands the bills.,\"jumps out, notices a wad of money in her hand, then uses to $100 bill.\",\"checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open.\",3\n343,lsmdc1017_Bad_Santa-7393,12882,He opens the safe and wards of notes spil out onto the floor. An oriental woman,He opens the safe and wards of notes spil out onto the floor.,An oriental woman,gold,\"sets the candle on a table, peering closely at its drop bottle against a glass glass.\",\"talks to the audience, he stands at a mantle, playing a saxophone.\",sits at the wheel of a van as someone and his little helper climb in the back with their booty.,sits on the stereo room.,2\n344,lsmdc1017_Bad_Santa-7393,12886,Someone puts down someone on a bar stool by the counter. He,Someone puts down someone on a bar stool by the counter.,He,gold,sees someone approaching from the tree.,backs through the window.,drops his frittata and makes the pranam.,calls over to the barmaid.,3\n345,anetv_7lUaR1veDJU,4509,We see people playing water polo in a pool. A man in the rear on the right,We see people playing water polo in a pool.,A man in the rear on the right,gold,gets his board off of the table.,is shown playing two cards.,throws the ball to a player closer to the goal.,throws a ball down a lane.,2\n346,anetv_7lUaR1veDJU,4510,A man in the rear on the right throws the ball to a player closer to the goal. That player then,A man in the rear on the right throws the ball to a player closer to the goal.,That player then,gold,makes a shot and another replay.,throws the ball across to a man on the left.,runs after the ball.,arrow goal with athletes shooting the other team and cheering to other players.,1\n347,anetv_7lUaR1veDJU,4511,That player then throws the ball across to a man on the left. A man,That player then throws the ball across to a man on the left.,A man,gold,throws a ball on the mat with other people watching in the background.,kicks a ball into his crotch.,grabs the ball and throws it in the goal.,in white shirt throws a ball around another boy while the man throws another ball.,2\n348,anetv_D7WhCBcddSA,2643,A man sits down while holding his racket. The men,A man sits down while holding his racket.,The men,gold,move his feet up and down around each other long boards.,chase the ball back and forth.,continue to play the game.,hit a dart back and fourth.,2\n349,anetv_D7WhCBcddSA,2248,A man in gray shirt is walking and then two men are playing racquet ball. The two men,A man in gray shirt is walking and then two men are playing racquet ball.,The two men,gold,fell against the sandy ground and hit the ball and landed beside the ball.,are playing a game game of ping pong.,are playing racquet ball while audience are outside the room watching.,are hit balls fast and quickly at the same time.,2\n350,anetv_D7WhCBcddSA,2642,Two men are playing wall ball in a room. A man,Two men are playing wall ball in a room.,A man,gold,hits a ball with a mallet.,sits outside in a room without discussing.,sits down while holding his racket.,in brown walks onto a lit room to front the ball.,2\n351,lsmdc3022_DINNER_FOR_SCHMUCKS-10492,8783,\"Forcing a smile, someone takes the ring box and gets on one knee. Someone\",\"Forcing a smile, someone takes the ring box and gets on one knee.\",Someone,gold,\"drops onto his left knee, then stops him.\",stands and takes a seat.,unhooks a crystal hook off of a door in it.,bangs his glass to attract everyone's attention.,3\n352,anetv_u0p_dBCEDs4,11793,A chef is talking while standing in front of a bow as she cooks spaghetti. The lady,A chef is talking while standing in front of a bow as she cooks spaghetti.,The lady,gold,gets the potato and cuts tomatoes.,add a cold and white pot to saute pasta.,scoops some lemons in a pot.,\"adds salt, and spaghetti to boiling water.\",3\n353,anetv_u0p_dBCEDs4,11795,The lady grabs a noodle to show how it should look when cooked. The lady,The lady grabs a noodle to show how it should look when cooked.,The lady,gold,\"drains the water, adds sauce, and adds some of the cook water.\",throws the tire on the horse and backs it off the man.,finishes chopping the cucumber and takes the plates out to the oven.,starts to cook the cake with a baking pan.,0\n354,anetv_u0p_dBCEDs4,11796,\"The lady drains the water, adds sauce, and adds some of the cook water. She\",\"The lady drains the water, adds sauce, and adds some of the cook water.\",She,gold,mixes the cake with a spatula while the flour is squeezed into juice.,\"cracks the sausage and juices it, also a few eggs, shaved quickly.\",puts it on a plate.,puts supplies on a rack and adds cheese.,2\n355,anetv_u0p_dBCEDs4,11797,She puts it on a plate. We then,She puts it on a plate.,We then,gold,see people making castles.,see a lady add some grapes to the pan.,see the lady form a wrap.,see the black credits rolling.,3\n356,anetv_u0p_dBCEDs4,11794,\"The lady adds salt, and spaghetti to boiling water. The lady\",\"The lady adds salt, and spaghetti to boiling water.\",The lady,gold,grabs a noodle to show how it should look when cooked.,puts a hubcap in the pan.,pours pasta into a blender and rinses in the sink.,\"peels eggs, flour and ice sugar.\",0\n357,anetv_e5e16U5hnzY,2741,Secondly she shows the proper stance of throwing the item and throws the discuss how into the air. She,Secondly she shows the proper stance of throwing the item and throws the discuss how into the air.,She,gold,\"ends with practicing and picking her up from and jumps in from the bench, arm up and smiling.\",continues to step as she continues around with many different shots throws sand up when she reaches the end.,lays her arms down on the bottom.,demonstrates bending down and spinning with the disk and does one throw full out.,3\n358,anetv_e5e16U5hnzY,2740,A man and women are talking to a camera and the girl demonstrates on how to properly hold a discuss. Secondly she,A man and women are talking to a camera and the girl demonstrates on how to properly hold a discuss.,Secondly she,gold,holds a cue up to the perimeter of the circle around a disc.,shows the proper stance of throwing the item and throws the discuss how into the air.,holds a box and jump in and showing how to throw the baton very fast.,\"goes in such like several hands, applying a attachment features to a pane that is moving across an area.\",1\n359,anetv_e5e16U5hnzY,2742,She demonstrates bending down and spinning with the disk and does one throw full out. The man then,She demonstrates bending down and spinning with the disk and does one throw full out.,The man then,gold,sits again and gives another disc.,takes off running and jumps off again before landing and flipping again.,finishes the drum ups and does a hand stand for a few seconds.,tries to throw how the woman did and attempts to throw more and get better.,3\n360,anetv_Oi-atN4-Oqk,2238,\"A young man dance in a room moving his hands and putting behind his back. Then, the man\",A young man dance in a room moving his hands and putting behind his back.,\"Then, the man\",gold,put his hand behind his head.,finish with the instrument in his hands to demonstrate how to make a cup.,started playing with other accordion sticks while moving his arms and feet.,adjusts the flute shows the peace sign plays.,0\n361,anetv_Oi-atN4-Oqk,2239,\"Then, the man put his hand behind his head. The reflection of the man\",\"Then, the man put his hand behind his head.\",The reflection of the man,gold,returns to the mirror.,scratches the top of the head with a cloth.,reveals a lags bit and talks to another man.,is in the mirror.,3\n362,anetv_3gPjMvTmE2g,15075,Several boats are shown sailing on the water as a man narrates before the start of a boat race. Stats,Several boats are shown sailing on the water as a man narrates before the start of a boat race.,Stats,gold,continues flying as the water ski.,are poured from the boats beside themselves.,ride through the trees while others try to jump.,are shown on the screen as the man explains some of the stats.,3\n363,anetv_3gPjMvTmE2g,15077,The crowd is show on the sideline sitting on the grass watching with binoculars. The boats,The crowd is show on the sideline sitting on the grass watching with binoculars.,The boats,gold,begin to bunch together as the horn blows for the beginning of the race.,are then seen sitting at the edge of the tank.,go on stable playing.,are wheeled away by the wheelchair and into the pool of the dark house.,0\n364,anetv_3gPjMvTmE2g,18181,More close ups of the boats are shown as well as people sitting in the grass and celebrating. Close ups of people on the boat,More close ups of the boats are shown as well as people sitting in the grass and celebrating.,Close ups of people on the boat,gold,are shown with more boats riding around and moving along the water.,are shown as well as being hit.,are shown as well as the man speaking to the camera.,are shown as well as a calf and a paddle up.,0\n365,anetv_3gPjMvTmE2g,18180,The video leads into several boats gliding along the water behind one another. More close ups of the boats,The video leads into several boats gliding along the water behind one another.,More close ups of the boats,gold,are seen followed by a swing with a person smiling in the camera.,are shown as well as people sitting in the grass and celebrating.,are shown as well as numerous people underwater in the water.,are shown as well as many people still at the end.,1\n366,anetv_3gPjMvTmE2g,15076,Stats are shown on the screen as the man explains some of the stats. The crowd,Stats are shown on the screen as the man explains some of the stats.,The crowd,gold,gets to the side of his horse and men working on it's skin to perform a good as a man.,is shown in the center hitting the ball with another person.,is show on the sideline sitting on the grass watching with binoculars.,moves on a brown field as well as the leaves celebrating his technique.,2\n367,anetv_XvM1rCVQWWY,11483,He puts a plastic sheet over the curb. He,He puts a plastic sheet over the curb.,He,gold,moves out from the water and puffs into a flame.,climbs off the cab and dresses along his blanket in the hallway.,paints the roof of a building with a roller brush.,shows bazaar courses with tricks.,2\n368,anetv_XvM1rCVQWWY,623,He lays down several plastic sheets. He then,He lays down several plastic sheets.,He then,gold,begins vacuuming the floor.,paints it and mopped it.,dumps them on the bed.,\"rolls over the sheets, sealing them.\",3\n369,anetv_XvM1rCVQWWY,11482,A man is kneeling down painting a curb. He,A man is kneeling down painting a curb.,He,gold,begins laying down on the ground in dirt between people.,uses his belt to put his case on.,starts riding down the snowy mountain.,puts a plastic sheet over the curb.,3\n370,anetv_XvM1rCVQWWY,622,A man is kneeling on the ground beside a railing. He,A man is kneeling on the ground beside a railing.,He,gold,opens it and continues skating down an embankment.,using jumps to turn the bolt and rolling it back with the first person.,lays down several plastic sheets.,does it as a without the tiles.,2\n371,lsmdc3037_IRON_MAN2-16347,7101,\"Watching her, someone drinks chlorophyll from a sports bottle. Someone\",\"Watching her, someone drinks chlorophyll from a sports bottle.\",Someone,gold,\"stares at someone, who lowers the bottle.\",turns and look at each other.,stares at the photo of a scary dragon with sculpted hair.,\"pulls out a new envelope while still reading, and puts his revolver down.\",0\n372,lsmdc3037_IRON_MAN2-16347,7091,They tap their glasses together and drink. Someone,They tap their glasses together and drink.,Someone,gold,picks up an archery structure and presses it on someone.,take their defiant signals and knock them into a ridge.,\"tucks the envelope in his jacket and pays the man, who leaves.\",\"sits with someone, uneasy.\",2\n373,lsmdc3037_IRON_MAN2-16347,7102,\"Someone stares at someone, who lowers the bottle. Someone\",\"Someone stares at someone, who lowers the bottle.\",Someone,gold,\"looks away bitterly, rubbing his eyes.\",is sucking in the slush in a window.,drives from a filters.,\"glances down, then turns to someone.\",3\n374,lsmdc3037_IRON_MAN2-16347,7096,\"Elsewhere, Pepper enters someone's home gym, where someone and someone box in a ring. Someone\",\"Elsewhere, Pepper enters someone's home gym, where someone and someone box in a ring.\",Someone,gold,smacks men with an iron and rushes to them.,morphs into someone's fiery face.,\"jabs at someone, then elbows him in the face.\",sprays another wood with a winged tool.,2\n375,lsmdc3037_IRON_MAN2-16347,7093,\"Someone glances out toward a sidewalk, then steps back into the passageway. He\",\"Someone glances out toward a sidewalk, then steps back into the passageway.\",He,gold,\"gazes at a mirror, then rubs his finger.\",takes out the envelope and opens it.,\"reaches the bottom of the stairs, pulling him up.\",has colored green hair on his back against the mirror.,1\n376,lsmdc3037_IRON_MAN2-16347,7094,He takes out the envelope and opens it. He,He takes out the envelope and opens it.,He,gold,pulls out a few of pop tarts.,pulls it out and reads over an hour in his sandwich.,pulls out a passport and a ticket.,looks at her blackberry.,2\n377,lsmdc3037_IRON_MAN2-16347,7090,\"Wide - eyed, someone sits. He\",\"Wide - eyed, someone sits.\",He,gold,\"gets up, stretches out his hand, and makes a sip with it.\",\"flinches, then lies back over the step.\",\"runs across the room, reading down a book.\",hands someone a glass of champagne.,3\n378,lsmdc3037_IRON_MAN2-16347,7098,\"The men turn and gaze at a young woman with long dark - brown hair, who walks into the gym carrying paperwork. The woman\",\"The men turn and gaze at a young woman with long dark - brown hair, who walks into the gym carrying paperwork.\",The woman,gold,hands someone a pen.,regards someone with an eyebrow.,watches with a dazed look.,speaks to the camera again.,0\n379,lsmdc3037_IRON_MAN2-16347,7092,\"Someone tucks the envelope in his jacket and pays the man, who leaves. Someone\",\"Someone tucks the envelope in his jacket and pays the man, who leaves.\",Someone,gold,turns into another page.,gives him a shy smile.,\"glances out toward a sidewalk, then steps back into the passageway.\",runs through a crowded room.,2\n380,lsmdc1043_Vantage_Point-89052,3184,Someone steps forward and raises his arms wide at his sides. Someone,Someone steps forward and raises his arms wide at his sides.,Someone,gold,leads the way through thick glass in front of someone.,staggers back and falls.,wrings his hands for support.,moves his hand toward someone's temple.,1\n381,lsmdc1043_Vantage_Point-89052,3178,He moves away from her but stops to glance back. She,He moves away from her but stops to glance back.,She,gold,drops to the floor.,chews and gives no response.,catches up with him and moves away.,blows him a kiss.,3\n382,lsmdc1043_Vantage_Point-89052,3185,Someone staggers back and falls. Someone,Someone staggers back and falls.,Someone,gold,\"jumps up onto the podium and runs across it, only to be tackled by someone.\",lies on his arms by his restraints.,makes him drive through the road.,stretches down onto the street behind someone and grabs her waist.,0\n383,lsmdc1043_Vantage_Point-89052,3186,She catches sight of him and holds his gaze. His eyes,She catches sight of him and holds his gaze.,His eyes,gold,\"moved down from her face, holding the bag he brought through security for her.\",dart away with a sunny smile.,fill with tears as she shyly shyly kisses her cheek.,hesitate and he raises a flare up.,0\n384,lsmdc1043_Vantage_Point-89052,3180,He marches through the podium as someone shakes someone's hand. Someone,He marches through the podium as someone shakes someone's hand.,Someone,gold,'s raising the arms looking over their heads.,\"leans to someone, then someone, who turns to look at someone.\",sets down to drink as he climbs up onto the bench.,goes to the lectern.,3\n385,lsmdc1043_Vantage_Point-89052,3177,Someone reluctantly lets go of her hand. He,Someone reluctantly lets go of her hand.,He,gold,moves away from her but stops to glance back.,kicks the call button.,caresses the dazzling fabric of the bridal gown.,sits on a couch in front of the high counter.,0\n386,lsmdc1043_Vantage_Point-89052,3176,\"As she hugs him, he hands her over her bag. Someone\",\"As she hugs him, he hands her over her bag.\",Someone,gold,turns and walks out of the garage.,makes her to the front cab.,reluctantly lets go of her hand.,watches the tv spinning around and looks at someone.,2\n387,lsmdc1043_Vantage_Point-89052,3187,\"His eyes moved down from her face, holding the bag he brought through security for her. She\",\"His eyes moved down from her face, holding the bag he brought through security for her.\",She,gold,tosses it under the podium.,drags him out and hands him some cash.,looks slowly past the black pews to the door.,\"strolls in the dark, swigging with vodka.\",0\n388,lsmdc1043_Vantage_Point-89052,3183,Someone looks up as someone finishes his introduction. Someone,Someone looks up as someone finishes his introduction.,Someone,gold,joins someone into the office and shuts the door.,steps forward and raises his arms wide at his sides.,checks his coat ways.,\"runs up at someone, and runs around to the pile of large family chairs.\",1\n389,lsmdc3053_PARENTAL_GUIDANCE-25817,7804,Someone walks down the stairs in her new dress. Someone,Someone walks down the stairs in her new dress.,Someone,gold,switches to the lights.,snaps photos as her granddaughter shows off her curled hair.,flinches from the blast as it skids to a stop.,shifts her gaze adoringly as he considers some coat.,1\n390,lsmdc3053_PARENTAL_GUIDANCE-25817,7805,Someone snaps photos as her granddaughter shows off her curled hair. Someone,Someone snaps photos as her granddaughter shows off her curled hair.,Someone,gold,\"reclines at dinner table, drinking up some papers.\",stares.,twirls her then pulls her close for a picture.,returns to the apartment where the drummer plays and reads on for a while.,2\n391,lsmdc1006_Slumdog_Millionaire-74203,10905,She looks downcast in shame. He,She looks downcast in shame.,He,gold,lifts her chin and then kisses her softly on the cheek.,tries to move away.,looks out towards the expanse of water next to someone.,sits down onto her back.,0\n392,lsmdc1006_Slumdog_Millionaire-74203,10912,He kisses her on the lips. People now,He kisses her on the lips.,People now,gold,stand along the platform with people at the forefront.,look confused at the weight up her body.,make their way to people's phone booth.,vivian look at his father's pretty oddly looking face.,0\n393,lsmdc1006_Slumdog_Millionaire-74203,10907,A flood of images move backwards in time. The car carrying a bleeding someone,A flood of images move backwards in time.,The car carrying a bleeding someone,gold,reverses to the station.,comes and pulls the florist's box to reveal the duplex inside.,is stake through its clothes!,gets a punch pallet of red.,0\n394,lsmdc1006_Slumdog_Millionaire-74203,10910,\"Someone is pulled out of the car. Finally, someone\",Someone is pulled out of the car.,\"Finally, someone\",gold,stands smiling up at someone.,gets out behind the wheel and takes it in his hand.,leads someone into the woods.,takes the first step of the rope.,0\n395,lsmdc1006_Slumdog_Millionaire-74203,10911,\"Finally, someone stands smiling up at someone. He\",\"Finally, someone stands smiling up at someone.\",He,gold,kisses her on the lips.,reaches for a strike out in the air.,walks between them and holds up his hand.,cups her hand and sits beside her.,0\n396,lsmdc1006_Slumdog_Millionaire-74203,10902,\"The platform is completely empty as he moves towards her. In the background, a group of men and woman\",The platform is completely empty as he moves towards her.,\"In the background, a group of men and woman\",gold,'s supporters are given her and she comes up behind her.,are sitting in the beach.,start to spill onto the platform.,sleeps in a picnic nook.,2\n397,lsmdc1006_Slumdog_Millionaire-74203,10904,\"Someone gently removes someone's head scarf, to reveal her scar. She\",\"Someone gently removes someone's head scarf, to reveal her scar.\",She,gold,jumps over someone's shoulder and vanishes.,\"lies on the side of the bed for no reason, and sits in sleep.\",looks downcast in shame.,hands over the manuscript pages.,2\n398,lsmdc1006_Slumdog_Millionaire-74203,10903,\"In the background, a group of men and woman start to spill onto the platform. Someone\",\"In the background, a group of men and woman start to spill onto the platform.\",Someone,gold,\"moves alongside one of the tables, where a rapist of a badge stands on a table, hands from a squat.\",throw them up and flip.,sits up and lets hard run down his back.,\"gently removes someone's head scarf, to reveal her scar.\",3\n399,lsmdc1006_Slumdog_Millionaire-74203,10901,He jumps down to cross the train tracks. The platform,He jumps down to cross the train tracks.,The platform,gold,shoots off his feet.,\"is now turned in prayer, playing his book in the ground.\",rises into a light spot below and looks at the men.,is completely empty as he moves towards her.,3\n400,anetv_w4QM4nztkkE,8320,They struggle trying to beat the other when finally the red head wrestler makes the other fall. He,They struggle trying to beat the other when finally the red head wrestler makes the other fall.,He,gold,kicks it off of his stomach and throws them across the crowd.,flips backwards on the threads and does n't spin.,\"gloats, jumping up and down and banging his hands against his chest.\",makes a little laugh off laugh.,2\n401,anetv_w4QM4nztkkE,8319,\"Once he comes in they grab a hold of a rope and begin to play tug of war with it, pulling each other. They\",\"Once he comes in they grab a hold of a rope and begin to play tug of war with it, pulling each other.\",They,gold,are just diving fall from a bridge attached.,struggle trying to beat the other when finally the red head wrestler makes the other fall.,\"join the group in black vehicles, let alone a the thread.\",\"mean people get him on the rope, and start to run backward.\",1\n402,lsmdc1029_Pride_And_Prejudice_Disk_One-83604,12357,Someone is walking through the countryside. Green leaves,Someone is walking through the countryside.,Green leaves,gold,are being circled in a scratched house.,are starting to turn brown.,are set up next to a burning church.,fly on the sky like a small sphere.,1\n403,lsmdc1029_Pride_And_Prejudice_Disk_One-83604,12358,Green leaves are starting to turn brown. She,Green leaves are starting to turn brown.,She,gold,makes a turn to look up from the sun.,is trying hard into the tree.,watches the progress of geese flying through the sky overhead.,speeds to one side of the sidewalk and floats down the street.,2\n404,anetv_R2EZlSlDCuE,720,She is talking but keeps messing up. She,She is talking but keeps messing up.,She,gold,comes back and talks about painting again.,launches the bar in gear.,has other children still with her.,puts her arm around her neck and ties her hair off.,0\n405,anetv_R2EZlSlDCuE,8914,\"Then, the woman put the stencil on the table and apply paint on the stencil with a brush. After, the woman\",\"Then, the woman put the stencil on the table and apply paint on the stencil with a brush.\",\"After, the woman\",gold,rinses the oil with a cloth and make a scrub product.,applies paint with a roller.,pick the tube from the silver and cut it.,remove the baking paper from the fallen pot.,1\n406,anetv_R2EZlSlDCuE,8913,\"A woman stands on front a table holding a brush and a large stencil. Then, the woman\",A woman stands on front a table holding a brush and a large stencil.,\"Then, the woman\",gold,make a toppled platter and hold up the pumpkin's hair and woman put them in the oven.,put the stencil on the table and apply paint on the stencil with a brush.,put an attachment in the coat and looses it on an electrical box.,put the gel in a blue towel to clean off the girl's hair and brush her hair.,1\n407,anetv_R2EZlSlDCuE,8915,\"After, the woman applies paint with a roller. Next, the woman finish\",\"After, the woman applies paint with a roller.\",\"Next, the woman finish\",gold,done and start taking pictures.,sanding and demonstrate volleyball and detail.,to paint the table with the stencil.,cut the combing while standing back in place.,2\n408,anetv_R2EZlSlDCuE,719,A woman is standing outside a garage. She,A woman is standing outside a garage.,She,gold,puts a bottle in her hair.,is holding her other heavy silk wires.,is talking but keeps messing up.,is playing in a bucket on a wooden bench.,2\n409,anetv_XqmMZs2-3ZI,5346,She goes to the kitchen and turns on the oven and begins mixing ingredients in a kitchenaid. Once mixed nicely she places the cookie in the oven and when they done she,She goes to the kitchen and turns on the oven and begins mixing ingredients in a kitchenaid.,Once mixed nicely she places the cookie in the oven and when they done she,gold,returns to her couch with her teddy bear and munches out.,\"keeps eating the dough linked, sharing her little problem.\",\"continues beating the potatoes over the bowl in place, only preparing the finished portion of everyone.\",mixes a large bite of the lemon and drains the fake salad.,0\n410,anetv_mzXRehGBEOg,11985,The woman rinses a toothbrush under water. The woman,The woman rinses a toothbrush under water.,The woman,gold,rinses her hands and splashes water in her face.,applies toothpaste to the toothbrush.,puts the wet cloth down.,kisses his hand and eyes.,1\n411,anetv_mzXRehGBEOg,11988,The woman rinses the toothbrush under water again. The woman,The woman rinses the toothbrush under water again.,The woman,gold,swishes her hair then pulls back her hair.,turns the knob on the toilet nozzle to rinse and cleaned on the sink.,rinses her mouth with a glass of water.,wipe excess cleaner apart.,2\n412,anetv_mzXRehGBEOg,11987,The woman demonstrates brushing her teeth. The woman,The woman demonstrates brushing her teeth.,The woman,gold,answers an electric toothbrush.,rinses the toothbrush under water again.,put some cream on her feet.,continues showing how to properly brush the dogs teeth.,1\n413,anetv_mzXRehGBEOg,11989,The woman rinses her mouth with a glass of water. The woman,The woman rinses her mouth with a glass of water.,The woman,gold,tapes the package shut.,shakes her head and the photographer shows the bottle.,paints the finger nails.,towels her mouth and shows her teeth.,3\n414,anetv_mzXRehGBEOg,11986,The woman applies toothpaste to the toothbrush. The woman,The woman applies toothpaste to the toothbrush.,The woman,gold,demonstrates ferociously full use and claws.,uses a comb to wipe the wet fur.,demonstrates brushing her teeth.,cleans toothpaste and extracts the toothbrush.,2\n415,anetv_mzXRehGBEOg,11984,A woman smiles at the camera. The woman,A woman smiles at the camera.,The woman,gold,points her paddle toward a brown gentleman on the other side and answers it.,begins speaking to brown braids.,rinses a toothbrush under water.,is sitting at a table.,2\n416,anetv_xH8l5rCWrMU,10599,Woman is chopping vegetables and saute vegetables in a pan. hen,Woman is chopping vegetables and saute vegetables in a pan.,hen,gold,are shown on the grass that is filled.,is about at the bottom of the shop.,mix the vegetables with pasta.,is next to two roofers.,2\n417,anetv_xH8l5rCWrMU,10598,Woman is standing in a kitchen talking to the camera and showing a plate of pasta and the ingedients. woman,Woman is standing in a kitchen talking to the camera and showing a plate of pasta and the ingedients.,woman,gold,wash a dish and adds soda and downs a bottle in a cup.,is drinking in a cup and is preparing to cook a cooking dish in the kitchen.,is chopping vegetables and saute vegetables in a pan.,is walking in the kitchen showing us the lemons and filling the cookie in bowl to an oven put into a living room.,2\n418,lsmdc3053_PARENTAL_GUIDANCE-25606,6211,As he gets to his feet someone smiles proudly. Someone,As he gets to his feet someone smiles proudly.,Someone,gold,puts his arms on the young woman.,reaches behind someone and taps his temple.,slams his back against the lifeboat trunk wall.,\"spreads his arms wide like wings, then walks around in a circle.\",3\n419,anetv_vMy5o7pvy4c,8389,He thin spins his whole body. The man,He thin spins his whole body.,The man,gold,leaps off the trampoline and speed on a mat.,releases the hammer and lowers his arms.,lifts the weights over their heads.,stops holding his head in his hand.,1\n420,anetv_vMy5o7pvy4c,8388,A man swings his arms around over his head. He thin,A man swings his arms around over his head.,He thin,gold,sticks a metal ball into the hole and dips it on a wall.,slides the knife onto the man's chest with it.,spins his whole body.,grabs the rope and throws it to the center of the field.,2\n421,anetv_X5UoLcloHIM,8550,A skateboarder wearing a black helmet skates downhill and performs some skateboard tricks. A skateboarder wearing an orange helmet,A skateboarder wearing a black helmet skates downhill and performs some skateboard tricks.,A skateboarder wearing an orange helmet,gold,skates down the street and performs some skateboard tricks.,gets dressed as a performer wearing white headband shirt gets up.,shows each location anyone control.,\"is riding with his body, showing how to hit hockey on the asphalt.\",0\n422,anetv_X5UoLcloHIM,8548,Clips of skateboarders in different scenes. A skateboarder wearing a red helmet,Clips of skateboarders in different scenes.,A skateboarder wearing a red helmet,gold,is jogging ahead of a man.,follows with while others advance on rapids.,is skating down hill on a public street.,gets up and falls down straight.,2\n423,anetv_X5UoLcloHIM,1146,The camera follows the border riding down the road and switches to several other people riding boards. Each person,The camera follows the border riding down the road and switches to several other people riding boards.,Each person,gold,performs several spins and tricks on the board and ends with one walking up the hill to another.,walks out of water.,snowboards along the same areas and does many high flips and racing sides as he rides the bikes.,jumps one of them off to begin riding up the hills on the end.,0\n424,anetv_X5UoLcloHIM,8549,A skateboarder wearing a red helmet is skating down hill on a public street. A skateboarder wearing a black helmet skates downhill and,A skateboarder wearing a red helmet is skating down hill on a public street.,A skateboarder wearing a black helmet skates downhill and,gold,talks to the man.,waves his arms in the air.,doing a bunch of ramps.,performs some skateboard tricks.,3\n425,anetv_X5UoLcloHIM,1145,An intro leads into a boy on a skateboard who takes off and rides past people down a long and windy road. The camera,An intro leads into a boy on a skateboard who takes off and rides past people down a long and windy road.,The camera,gold,zooms out as the other hits again and fourth pushing a lawn mower and pushing the lawn mower into the side.,zooms in in the distance from the horses as well as jumping up and down the steep supports.,follows the border riding down the road and switches to several other people riding boards.,pans around several different title interspersed with video clips of people playing a video game with others.,2\n426,anetv_PUGP8PSlJEA,16602,A man is rock climbing on a wall next to a rock. He,A man is rock climbing on a wall next to a rock.,He,gold,maneuvers his way across the bars with other others watching him practice.,stands up then looks at us.,signs a long jump rope in the end.,gets to the top and releases himself to fall to the bottom.,3\n427,lsmdc0041_The_Sixth_Sense-67748,2345,The banging goes on for a few seconds and then it just stops. People,The banging goes on for a few seconds and then it just stops.,People,gold,look at each other and then back at the crawl space door.,'s cover rises and the both circle the entryway.,continue about being to bungee jumps.,\"are interviewed on the screen and tries to get a haircut, but is not noticing.\",0\n428,lsmdc0041_The_Sixth_Sense-67748,2344,Someone slams the door closed. They,Someone slams the door closed.,They,gold,turn off the lamp.,forces walk slowly away from the hall.,roll into someone's closet.,crack smiles at each other as someone bangs on the door.,3\n429,lsmdc0041_The_Sixth_Sense-67748,2343,He stumbles into the darkness of the crawl space. Someone,He stumbles into the darkness of the crawl space.,Someone,gold,rolls out a window with a windows vent.,slams the door closed.,reappears with a man in a red jeep.,tosses the knife at her.,1\n430,anetv_qXNYHbnGvto,5093,The girl begins to brush the horse with a brush. The girl then,The girl begins to brush the horse with a brush.,The girl then,gold,uses a brush to demonstrate the proper brush.,shows how to use the brush.,brushes the horses mane and tail with the brush along with its head and nose.,begins brushing the little dog's fur as he around the other end.,2\n431,anetv_qXNYHbnGvto,15109,The woman then begins brushing down the horse's mane. She,The woman then begins brushing down the horse's mane.,She,gold,continues brushing all around the horse including it's feet and tail.,continues cutting her hair while looking off into the distance.,continues brushing her hair and looking for one eye.,uses the horse's fur to stay in place and is thrown down the horse.,0\n432,anetv_qXNYHbnGvto,15108,A woman is seen speaking to the camera while standing next to a horse. The woman then,A woman is seen speaking to the camera while standing next to a horse.,The woman then,gold,begins brushing down the horse's mane.,begins scrubbing snow into a woman's shoes and begins scrubbing the horse.,begins riding in a horse and catching a calf at the foot.,ropes a calf and ties it between her legs.,0\n433,anetv_qXNYHbnGvto,5092,A girl stands next to a tethered horse and begins to talk to the camera. The girl,A girl stands next to a tethered horse and begins to talk to the camera.,The girl,gold,removes her shoes when she stops and shows him the mirror again.,is then shown swimming multiple times and performing flips.,begins to brush the horse with a brush.,rides up on a horse and boils her horse.,2\n434,anetv_qXNYHbnGvto,5091,A girl demonstrates how to brush and groom a horse using several different brushes and techniques. A girl,A girl demonstrates how to brush and groom a horse using several different brushes and techniques.,A girl,gold,turns sand the doll around while trying to keep up and looking at the camera.,stands next to a tethered horse and begins to talk to the camera.,buffs her hair with a brush.,\"shows how to play a violin, a person cuts a brush off and continues playing the violin.\",1\n435,anetv_ZTHsS5lQyvQ,9568,\"The woman put chocolate in a bain marie, add butter and mix them with a spatula. the woman\",\"The woman put chocolate in a bain marie, add butter and mix them with a spatula.\",the woman,gold,spread butter and chocolate on bread slices grate cheese on it.,adds adds chicken to the pineapple.,\"juices in the lemons and pour it in the dressing bowl, the woman pour water into a pitcher in the glass.\",jerk the lemon to pour some cheese to drink the mixture and put it on top of top.,0\n436,anetv_ZTHsS5lQyvQ,7680,She shows a panini sandwich on the screen. We then,She shows a panini sandwich on the screen.,We then,gold,\"see her melting dark chocolate in a double boiler before applying it to the sandwich, and grilling it.\",see the cookies on the glass.,see the woman add chocolate pepper and use it to neat them.,see mixed bread pizza slices at an oven.,0\n437,anetv_ZTHsS5lQyvQ,9569,The woman spread butter and chocolate on bread slices grate cheese on it. woman,The woman spread butter and chocolate on bread slices grate cheese on it.,woman,gold,enters the end of the court and gets a knife.,take to a salad and pours the make it and puts into the eggs.,cook the pasta and pour the ingredients into a bowl.,toast the bread and slice in parts.,3\n438,anetv_OnfvTk_DECY,14815,The man then begins coming the dummy's hair and using scissors along the side. He,The man then begins coming the dummy's hair and using scissors along the side.,He,gold,pulls the pin from his vest while still talking to his camera and eventually leaves the cop.,dips a shot and shows more sides of the eye.,moves continuously around while he continues to hit the tile and the camera stops it as he continues to brush class.,continues cutting the dummy's hair and using hair gel in the end to spike it up.,3\n439,lsmdc0049_Hannah_and_her_sisters-69647,28,She stands and faces the water and the distant skyline across the bay. Someone is alone; her hands,She stands and faces the water and the distant skyline across the bay.,Someone is alone; her hands,gold,are pressed tightly against the hummer's slot.,are slip across from the host.,are in her pockets.,are staring up at the sky directly above her.,2\n440,lsmdc0049_Hannah_and_her_sisters-69647,26,\"He flips through the literature as he walks, then looks straight ahead, pondering. Someone\",\"He flips through the literature as he walks, then looks straight ahead, pondering.\",Someone,gold,\"spins around a few times, trying to catch with his board but barely catches him off of a stranger.\",\"cleaning, he turns the corner.\",puts his hand to his mouth as another title appears on a black screen.,\"nods at him and limps towards the office, gripping the leather shield as his body stands.\",2\n441,lsmdc0049_Hannah_and_her_sisters-69647,27,\"A bench faces some wharf pilings; the water gently laps against them as someone walks into view, the wind blowing her hair. She\",\"A bench faces some wharf pilings; the water gently laps against them as someone walks into view, the wind blowing her hair.\",She,gold,\"steps over, turning a lift expertly.\",continues drifting alone at the helm as the captain rocks through.,stands and faces the water and the distant skyline across the bay.,\"and her pleasant drift down on the ground and away from him, standing against the distant edge of a ship, white water.\",2\n442,anetv_VWsyA_RJIzg,18399,A close up of rings are shown floating around an ocean followed by a scuba diver off into the distance. The swimmer,A close up of rings are shown floating around an ocean followed by a scuba diver off into the distance.,The swimmer,gold,goes through a ring while popping it's side and continues moving up to the surface.,is seen cleaning the water with something floating or disappearing into the large water.,moves to a board and swims out of the water as the missiles plummet and then follow.,sits back and speaks to the camera about a group that is full swimming on the ocean.,0\n443,anetv_06xJ8-Dg_j8,17098,\"A youth plays the drums and the cymbals with two sticks while wearing ear plugs. Then, the youth\",A youth plays the drums and the cymbals with two sticks while wearing ear plugs.,\"Then, the youth\",gold,demonstrates the though the drums.,holds the harmonica to his hand.,continues playing and plays the flute.,holds a cymbal and raise the stick to end his play.,3\n444,anetv_06xJ8-Dg_j8,5270,A man is shown sitting at drums. He,A man is shown sitting at drums.,He,gold,lifts a weight over his head.,is playing the drums upside down.,is wearing a pair of earphones.,uses a ruler to push more machine.,2\n445,anetv_06xJ8-Dg_j8,5271,He is wearing a pair of earphones. He,He is wearing a pair of earphones.,He,gold,is explaining how to play the violin.,is in a machine wearing a suit.,is playing an accordian in the living room.,starts drumming the drums.,3\n446,lsmdc3078_THE_WATCH-36218,10543,\"He gives a slow, creepy wave. Someone\",\"He gives a slow, creepy wave.\",Someone,gold,makes a beeline for someone.,\"politely returns the gesture, then heads inside.\",pulls the saloon off.,steps closer into the club.,1\n447,lsmdc3078_THE_WATCH-36218,10541,\"Turning away, he pauses. Across the street, someone\",\"Turning away, he pauses.\",\"Across the street, someone\",gold,hurries towards the melee.,spies a concrete passage in its passenger compartment.,takes in apprehension at her 'weakened ladies.,\"stands on his lamp lit porch, watching him with a cocktail.\",3\n448,lsmdc3078_THE_WATCH-36218,10544,\"Someone politely returns the gesture, then heads inside. Someone\",\"Someone politely returns the gesture, then heads inside.\",Someone,gold,makes a turn to sack him if someone has should pick him.,\"swirls the ice in his glass, smirking as he watches his neighbor.\",walks off to the plate and takes a sip.,wife raises her gun and inspecting someone's partially holstered shield.,1\n449,lsmdc3078_THE_WATCH-36218,10540,\"Someone pulls out a small, slimy tentacle. Pinching one end in his fingertips, he\",\"Someone pulls out a small, slimy tentacle.\",\"Pinching one end in his fingertips, he\",gold,paddles himself on.,stares at the egg.,opens a trash bin and chucks it in.,\"james loved fish, tries out.\",2\n450,lsmdc3078_THE_WATCH-36218,10545,\"In his basement, someone snoops on his daughter's Facebook page. A video still\",\"In his basement, someone snoops on his daughter's Facebook page.\",A video still,gold,shows someone holding the top board.,shows her kissing a boy.,shows the fifth lake.,shows a photo of someone at the tv show.,1\n451,lsmdc3078_THE_WATCH-36218,10542,\"Across the street, someone stands on his lamp lit porch, watching him with a cocktail. He\",\"Across the street, someone stands on his lamp lit porch, watching him with a cocktail.\",He,gold,\", unbuckles his mask as someone passes someone, she smiles and touches his forehead.\",wears his shoelace as two school members walk inside.,folds his arms in a line as he climbs from the bar.,\"gives a slow, creepy wave.\",3\n452,lsmdc3078_THE_WATCH-36218,10546,\"It shows Chelsea and a tall, dark - haired boy making out in a closet. As they part, she\",\"It shows Chelsea and a tall, dark - haired boy making out in a closet.\",\"As they part, she\",gold,finds no one in her left.,faces her friend shyly while the boy makes a cocky face.,finds him staring aback.,grabs someone's hand.,1\n453,lsmdc3078_THE_WATCH-36218,10538,\"He cuts his headlights, gets out, and lumbers wearily to the front. Pausing, he\",\"He cuts his headlights, gets out, and lumbers wearily to the front.\",\"Pausing, he\",gold,finds someone in his track suit.,bends over to examine his broken grille.,takes off his headset and steers ski out of someone's garden.,trudges into the driver's seat and slams his head against the wheel.,1\n454,anetv__uOfIm1tFcI,510,A boy is seen tumbling back and forward on grass lawns in different locations. The boy,A boy is seen tumbling back and forward on grass lawns in different locations.,The boy,gold,is shown in an office and continues riding with a skateboard and swinging on various maneuvers.,is then seen doing similar gymnastic moves on a mattress outdoors.,stands backwards facing the pinata.,follows around on a corner afterwards standing in a clearing and gestures behind the judge.,1\n455,anetv__uOfIm1tFcI,509,\"A boy is seen tumbling backwards and forwards in different locations and on different surfaces including grass, bounce tarps and mattresses. A boy\",\"A boy is seen tumbling backwards and forwards in different locations and on different surfaces including grass, bounce tarps and mattresses.\",A boy,gold,in a black shirt has fun again at the same event and flips the video in and then the man is walking across the field,holds up the child in front of him and waves them on the sandy ground.,is shown a close up of the man talking and pausing to talk about the sport.,is seen tumbling back and forward on grass lawns in different locations.,3\n456,anetv_o0O-CwwSaGw,1261,She scrubs the dog with shampoo and runs again runs the water over the dog. She,She scrubs the dog with shampoo and runs again runs the water over the dog.,She,gold,\"ends with the leaf blowing, wiping her face by the sink.\",dries it on a powder towel.,holds the dog with a towel and then blow dries the dog in her lap while combing him.,puts her back on the tree.,2\n457,anetv_o0O-CwwSaGw,1262,She holds the dog with a towel and then blow dries the dog in her lap while combing him. The dog,She holds the dog with a towel and then blow dries the dog in her lap while combing him.,The dog,gold,is shown again all dried off and shakes himself while looking at the camera and the girl speaks more.,continues to blow the woman with her arm while the other combs by in the yard.,continues to blow while the female sits in the tub lathering the dog's fur while the dog laughs.,has reached the hole once more and its is shown as well by a cat coming out of the shop.,0\n458,anetv_o0O-CwwSaGw,1260,A girl with long hair is shown speaking to the camera and leads into her spraying water all over a dog in the tub. She,A girl with long hair is shown speaking to the camera and leads into her spraying water all over a dog in the tub.,She,gold,pulls a sponge out of the tube and begins to clean it with a rag.,sprays it off a dog and applies more toothpaste on how to hold it in overboard.,scrubs the dog with shampoo and runs again runs the water over the dog.,baked and is shown sitting down and laughing to the camera.,2\n459,anetv_m3SlyuAh1Wk,9159,A close up of leaves are shown followed by a woman raking them and speaking to the camera. The woman,A close up of leaves are shown followed by a woman raking them and speaking to the camera.,The woman,gold,continues to play with the cat while member plays the groom and ends by talking to the camera and pointing to the dog.,is then seen wiping catcher's hookah with her hand followed by pouring it into the bowl into a cup.,puts a sheet behind her and put her hand on the table.,continues raking while speaking to the camera back and fourth.,3\n460,anetv_m3SlyuAh1Wk,9160,The woman continues raking while speaking to the camera back and fourth. She,The woman continues raking while speaking to the camera back and fourth.,She,gold,washes her hands as the rest continuing to move up and down.,continues playing while continuing to speak while others watch on the side.,continues pushing the horses all around the place.,shows her piles as well as the clean lawn while still speaking to the camera.,3\n461,anetv_CzXF0CQn2Fk,10598,People are in a small room dancing doing a choreography. the man,People are in a small room dancing doing a choreography.,the man,gold,stops dancing and keep doing the choreography.,is throwing up and down in the audience.,in white shows the several moves before playing on the lawn.,spin high turning around and disappear.,0\n462,anetv_CzXF0CQn2Fk,10599,The man stops dancing and keep doing the choreography. man,The man stops dancing and keep doing the choreography.,man,gold,\"is in a backstroke, showing her performance and flexing her neck.\",starts on the lower line with her arm.,is in a white chair in a room doing this by doing so.,wearing red shorts and grey shirt leading the choreography in front of the people in the room.,3\n463,lsmdc0041_The_Sixth_Sense-67675,15420,A small piece of cake with a candle in it sits untouched. Someone,A small piece of cake with a candle in it sits untouched.,Someone,gold,places her hand on the ballerina's shoulders away from the dying lady.,quietly takes a sip from her coffee.,is left in his hand.,clink strawberries and off it.,1\n464,anetv_Z1N185E4gsk,8339,The cameraman walks to a young child on the sidewalk. The child,The cameraman walks to a young child on the sidewalk.,The child,gold,shovels the snow from the sidewalk.,rides a piece of hopscotch.,starts swinging and hit the pinata in the same way.,slides down a slide.,0\n465,anetv_Z1N185E4gsk,3715,A person is standing in the heavy falling snow. They,A person is standing in the heavy falling snow.,They,gold,are trying to clear the snow off the sidewalk.,are tubing a snow wall.,see around the head spin cars and then.,are sitting on a boat as a person walks by in front of him.,0\n466,anetv_Z1N185E4gsk,3716,They are trying to clear the snow off the sidewalk. The child just,They are trying to clear the snow off the sidewalk.,The child just,gold,looks at them lightly.,gets out of their car.,stands in the sand watching them.,\"stands with the shovel, not sure what to do.\",3\n467,anetv_Z1N185E4gsk,8338,The snow is falling outside on the street. The cameraman,The snow is falling outside on the street.,The cameraman,gold,turns at the police center on the screen.,enters the fight and shuts the door.,is moving in between the weather supplies.,walks to a young child on the sidewalk.,3\n468,anetv_g_qHPA0RkAY,2044,Then she begins gutting the seeds from the pumpkin. She,Then she begins gutting the seeds from the pumpkin.,She,gold,shows them back to us soon.,draws a face on the outside before using a knife to begin carving out the face of her pumpkin.,puts her piece out in front of the cat and returns it.,begins to hit the drum with blue piercing on drums and studies it with her indoors.,1\n469,anetv_g_qHPA0RkAY,2045,She draws a face on the outside before using a knife to begin carving out the face of her pumpkin. Finally she,She draws a face on the outside before using a knife to begin carving out the face of her pumpkin.,Finally she,gold,takes more pumpkin more at her eye and a large freshly trimmed one lies buried at the table.,vacuums the polished part of the cake and lays it down.,\"adds some more powder into the wound, grabs the ax again, and cleans it off with the knife again.\",\"places the top back in place, and puts a candle inside.\",3\n470,anetv_g_qHPA0RkAY,2043,A line of knives and cutting utensils are on a table. A woman,A line of knives and cutting utensils are on a table.,A woman,gold,uses a polish to add a claw to the nails.,massages a knife cut hand with a black knife.,uses a knife to sharpen someone's knife.,is cutting the top off of a pumpkin and raking the seeds into a bowl.,3\n471,anetv_7GSCDxBSFsw,2114,\"A person holds a javelin and prepares to launch it. Then, the man\",A person holds a javelin and prepares to launch it.,\"Then, the man\",gold,runs and launch the javelin.,skateboard on the road and gets a skateboard.,talks to his old friend after the competition.,jumps on the rope and then climb past.,0\n472,anetv_ZPLbrQ391jg,6214,The camera continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides. The people then,The camera continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides.,The people then,gold,ride through the finish line an throw their arms up into the air.,get off the bikes and continue to jump around the beam.,continue playing along the track with one another and runs out of a line into the water.,play as well as ends with another one walking away.,0\n473,anetv_ZPLbrQ391jg,6213,An intro leads into several shots of a bike track as well as people moving along the track to race. The camera,An intro leads into several shots of a bike track as well as people moving along the track to race.,The camera,gold,continues spinning various around in many areas and ends with the man waving his arms and smiling as the man continues to speak in other,continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides.,captures the movements before walking away.,ends with several people playing up and bumping into one another and speaking to one another.,1\n474,lsmdc1007_Spider-Man1-74595,3690,The exoskeleton is powered up. Someone,The exoskeleton is powered up.,Someone,gold,is upright inside the 10 - feet tall rocket as it lifts off.,keeps getting back on top of a ramp.,is in the drawing room playing the shot.,takes out his wand.,0\n475,anetv_C0MIMsY6okw,8512,The individual mixes some water into the mug. The individual,The individual mixes some water into the mug.,The individual,gold,retrieves the instrument and holds the camera.,squeezes lemons into the mug.,carves a lemon over some leaves.,mixes the drink in the glass.,1\n476,anetv_C0MIMsY6okw,8508,The individual uses a knife to cut the lemons. The individual,The individual uses a knife to cut the lemons.,The individual,gold,carves funny blue lines in the pumpkin.,puts two glasses in the device.,squeezes the lemons' juice into a mug using a tool.,mixes the product together in a cup.,2\n477,anetv_C0MIMsY6okw,8509,The individual squeezes the lemons' juice into a mug using a tool. The individual,The individual squeezes the lemons' juice into a mug using a tool.,The individual,gold,mixes the liquids on the table.,places the container on the blue container as she walks to.,puts some of the ingredients in small bowls into the mug.,opens the spoon and demonstrates how to use a glass.,2\n478,anetv_C0MIMsY6okw,9429,The salt is poured into the cup from the small bowls. Water is added to the cup and more limes,The salt is poured into the cup from the small bowls.,Water is added to the cup and more limes,gold,are blended together and fell.,are squeezed in by hand.,are shown and chopped in a boat.,are crushing to the chemical.,1\n479,anetv_C0MIMsY6okw,8510,The individual puts some of the ingredients in small bowls into the mug. The individual,The individual puts some of the ingredients in small bowls into the mug.,The individual,gold,rearranges the items on the counter top.,adds more ingredients to the purchase and loops its tongue.,uses the sniff along the bottom of the mix.,adds more ingredients to a pot in the pot.,0\n480,anetv_C0MIMsY6okw,8514,The individual mixes the contents of the mug. Eight containers of liquid,The individual mixes the contents of the mug.,Eight containers of liquid,gold,are poured out of the cup.,are squeezed out with their hands.,are shown on the counter top.,are added to the large pot that have placed the contents.,2\n481,anetv_C0MIMsY6okw,8507,One of the individuals extends a hand and manipulates the ingredients. The individual,One of the individuals extends a hand and manipulates the ingredients.,The individual,gold,uses a knife to cut the lemons.,gives up a five.,puts a spare in the oven as people continue playing.,puts the wheel forward.,0\n482,anetv_C0MIMsY6okw,8513,The individual squeezes lemons into the mug. The individual,The individual squeezes lemons into the mug.,The individual,gold,plays a medical instrument.,mixes the container into a container.,mixes the contents of the mug.,drops the lemon into a ice hoop.,2\n483,anetv_C0MIMsY6okw,8506,\"A counter top with lemons and ingredients in small bowls is shown, with several individuals standing by the counter. One of the individuals\",\"A counter top with lemons and ingredients in small bowls is shown, with several individuals standing by the counter.\",One of the individuals,gold,extends a hand and manipulates the ingredients.,puts the mix in the black dough bowl.,is shown adding ingredients to the dressing parmesan.,walks and deals out a bunch of black plastic cups.,0\n484,anetv_C0MIMsY6okw,9427,The small bowls of salt are arranged and limes are sliced in halves. The limes,The small bowls of salt are arranged and limes are sliced in halves.,The limes,gold,is stirred and made with a spoon squeezed together in a jar.,are juiced into a cup using a hand held press.,are used as cooked from cream and shredded pepper portion into the cake.,\"are added to the pickles, skillet throughout the bowl.\",1\n485,anetv_C0MIMsY6okw,8511,The individual rearranges the items on the counter top. The individual,The individual rearranges the items on the counter top.,The individual,gold,parts the content bowl.,sets aside a panel of lemonade and turns.,mixes some water into the mug.,moves across the surface.,2\n486,anetv_C0MIMsY6okw,9428,The limes are juiced into a cup using a hand held press. The salt,The limes are juiced into a cup using a hand held press.,The salt,gold,is poured into the cup from the small bowls.,is being placed on the steering wheel.,has tipped out of their glass.,juices the mixture from another cup.,0\n487,lsmdc1004_Juno-6730,2373,\"In the front garden, she stops to pick a crocus and with a solemn expression traces a circle across her tummy with its petal. Her mustachio dad, his bald head gleaning in the bright kitchen light,\",\"In the front garden, she stops to pick a crocus and with a solemn expression traces a circle across her tummy with its petal.\",\"Her mustachio dad, his bald head gleaning in the bright kitchen light,\",gold,sits in the bow position.,is busy fixing something at the kitchen table as she comes in.,puts his wand to the side of his lap.,stands against the same bundle of st.,1\n488,lsmdc1004_Juno-6730,2372,\"Someone parks the Previa in the street outside the family's wooden slatted house, where the porch light illuminates a straw heart hanging on the door knocker. She\",\"Someone parks the Previa in the street outside the family's wooden slatted house, where the porch light illuminates a straw heart hanging on the door knocker.\",She,gold,pushes the knife away.,letters an old sign reads tubs as someone wears civilian clothes and a weather badge.,gets out of the vehicle looking emotionally and physically exhausted.,\"puts her new bedroom door and looks down at the dorm floor, her chest dripping.\",2\n489,lsmdc1004_Juno-6730,2371,\"Someone, opening the front door, catches sight of someone driving off. At his feet, he\",\"Someone, opening the front door, catches sight of someone driving off.\",\"At his feet, he\",gold,passes over even more cups.,pauses from the cash register.,finds the note she left.,climbs off a horse then escorts her down to the bed.,2\n490,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61718,9692,\"He bears someone on his back, and is followed by two more. The eagles\",\"He bears someone on his back, and is followed by two more.\",The eagles,gold,magician lift someone round and quietly.,overseer some intervention soldiers including their other american friends.,bravely fly amid the raining ash and molten rocks.,shows black writing on the snitch of a cavern.,2\n491,anetv_hRIXXCe0Hi0,39,The men play rock paper scissors. A lady in the crowd,The men play rock paper scissors.,A lady in the crowd,gold,shakes their hands off.,claps with a paper trophy.,jumps up and down.,grabs him and pulls her to the banquette.,2\n492,anetv_hRIXXCe0Hi0,42,We see a lady in front a person in costume. The man in red,We see a lady in front a person in costume.,The man in red,gold,raises his hands in triumph.,runs through a parking lot to the street.,stands on the ground and hug.,turns around and takes a baby brush on the snow.,0\n493,anetv_hRIXXCe0Hi0,43,The man in red raises his hands in triumph. Ladies,The man in red raises his hands in triumph.,Ladies,gold,dismount before the screen before him.,cheer him in the red match for a date.,\"hug each other, fighting in the heated stances.\",bring a big check to the man in red.,3\n494,anetv_hRIXXCe0Hi0,37,We see a man talking to a camera. We,We see a man talking to a camera.,We,gold,see shots of men and a crowd of people.,see people standing around with leaves.,see the man walking next to them.,are scenes of people playing his harmonica in a studio.,0\n495,anetv_JSYv9uYZP2o,15583,\"In the second half, the teams continues playing and scoring. The team wearing purple uniform\",\"In the second half, the teams continues playing and scoring.\",The team wearing purple uniform,gold,enter the workroom and watch the score.,walks through the interview as the team of team play.,\"is dressed, winning the game.\",win the competition and receives a trophies.,3\n496,anetv_JSYv9uYZP2o,15582,\"Two teams play hurling in the stadium, and players from the two teams scores, and they celebrate. In the second half, the teams\",\"Two teams play hurling in the stadium, and players from the two teams scores, and they celebrate.\",\"In the second half, the teams\",gold,costumed the batter for the goalie multiple times.,walk together during the video game again.,continues playing and scoring.,spot the ball to protect their view while speaking.,2\n497,anetv_JSYv9uYZP2o,16417,Men are celebrating and an old man gives a trophy to a young boy. man wearing a red tie,Men are celebrating and an old man gives a trophy to a young boy.,man wearing a red tie,gold,is giving a trophy to a boy that is being interviewed.,is on the screen with red hair and shirt and shown walking across a green field.,stands in front of the man as children crowd in the background of the gym.,make him wear a red box.,0\n498,anetv_JSYv9uYZP2o,16416,People on stands is siting watching the game. men are celebrating and an old man,People on stands is siting watching the game.,men are celebrating and an old man,gold,is hitting the bowling ball.,is watching her with the sticks.,serves them and gestures.,gives a trophy to a young boy.,3\n499,anetv_JSYv9uYZP2o,16415,Men are running in a large green fiel playing lacrosse. people on stands,Men are running in a large green fiel playing lacrosse.,people on stands,gold,are practicing in the coach.,are chasing around a field.,is siting watching the game.,are getting ready to jump and go.,2\n500,anetv_jed5hUKCCk0,18954,The family adds ornament to the tree. We,The family adds ornament to the tree.,We,gold,pull them in ways and turn to the pumpkins.,see the ornaments on the tree up close as kids add new ornaments.,then see a vacuum peeling out of the tree.,see them from the tree and begin stirring in a circle.,1\n501,anetv_jed5hUKCCk0,18952,A man cuts a Christmas tree in a living room. A family of five people,A man cuts a Christmas tree in a living room.,A family of five people,gold,decorate a christmas tree.,decorate the christmas tree with decorations anxiously while the children exhibit the fence.,sit together on top of a christmas tree.,sitting together are standing in a pile as the other cuts a final cake on a plate.,0\n502,anetv_jed5hUKCCk0,18953,We see them adding the lights to the tree and stringing garland. The family,We see them adding the lights to the tree and stringing garland.,The family,gold,leaves a pile of flowers and spread mulch in the tent.,ends heads decorating the christmas tree.,stands on a tree laying on a tree.,adds ornament to the tree.,3\n503,anetv_jed5hUKCCk0,13442,Two teen girls put the lights and garland on the tree as the boy and an African American girl watch and help. The young girl and boy,Two teen girls put the lights and garland on the tree as the boy and an African American girl watch and help.,The young girl and boy,gold,play on curling table.,play hide and seek.,begin the match together.,try the tightens then run around to the separate lovebirds.,1\n504,anetv_jed5hUKCCk0,18956,We see the kids taking photo's in front of the stairs. the kids then,We see the kids taking photo's in front of the stairs.,the kids then,gold,slide down and read raising their captors to the camera.,put all their guns around the table where the child was arrested.,watch the boat go from one market to the next.,take photo's in front of the christmas tree.,3\n505,anetv_jed5hUKCCk0,13441,A teen girl and a young African american boy enter the room and a lady ties an orange strip on the boys head. Two teen girls,A teen girl and a young African american boy enter the room and a lady ties an orange strip on the boys head.,Two teen girls,gold,\"pass and jump on top of the adults, then one of the girls makes the swimming pool.\",sit in a barber shop time holding eye contact.,put the lights and garland on the tree as the boy and an african american girl watch and help.,lift the smoke from the lips and dance around using a red stick.,2\n506,anetv_jed5hUKCCk0,18955,We see the ornaments on the tree up close as kids add new ornaments. We,We see the ornaments on the tree up close as kids add new ornaments.,We,gold,see people ending their walk on the beach.,see the adult title on the screen.,see an opening ending screen.,see the kids taking photo's in front of the stairs.,3\n507,anetv_jed5hUKCCk0,13443,The young girl and boy play hide and seek. The teens and the kids,The young girl and boy play hide and seek.,The teens and the kids,gold,get to their feet.,add ornaments to the tree.,swing to each other.,gather all the canoes goal.,1\n508,anetv_jed5hUKCCk0,13440,A man cuts a Christmas tree free of a net in a living room as a lady watches and leaves and a teen girl enters to help. A teen girl and a young African american boy enter the room and a lady,A man cuts a Christmas tree free of a net in a living room as a lady watches and leaves and a teen girl enters to help.,A teen girl and a young African american boy enter the room and a lady,gold,walks across the hill holding a ballerina and dies after.,pass a square boarder with logs and leaves.,walks out and bends slightly to the left.,ties an orange strip on the boys head.,3\n509,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73207,13861,Someone frowns and obediently toddles off. He,Someone frowns and obediently toddles off.,He,gold,\"wakes up, grits his teeth and washes his hands in the air.\",\"strides past the gray, haired mans look.\",fills a plastic container from a water cooler.,finds his cellphone and drinks.,2\n510,anetv_ksPQdczmNKs,19095,A girl is seen crossing her arms and hula hooping over and over again. She,A girl is seen crossing her arms and hula hooping over and over again.,She,gold,continuously hula hoops while moving her legs all around and doing various jumps and tricks.,turns around the room and demonstrates how to properly weigh her teeth.,performs more backflips as a girl assist them to perform music.,slips into the pool as the person comes from behind.,0\n511,anetv__DiTdY1Mtj4,1856,The people continue playing back and fourth on the mat while other people playing around them and walk into frame. A man and woman,The people continue playing back and fourth on the mat while other people playing around them and walk into frame.,A man and woman,gold,are seen speaking to one another and is again shown pushing the pucks.,are shown speaking to the camera and leads into more shots of the man shoveling the grass.,clap loudly while one girl sits and speaks to many people who watch followed them.,\"are seen in the background holding a hose, and leads into them standing next to the band while one plays in the background.\",0\n512,anetv_TLQFjTXZ58E,16446,A man is standing outside in his front lawn with his mower. He,A man is standing outside in his front lawn with his mower.,He,gold,uses the rug to clean dry snow off of the fence.,puts a nut in the trashcan.,talks about different lengths of grass for a while and then bends down to his mower.,is using a training lawn mower and using the lawn mower to mow his lawn.,2\n513,anetv_TLQFjTXZ58E,16448,He uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more. He,He uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more.,He,gold,\"climbs out of the engine, then walks away as she comes home and takes play.\",continues to rake the lawn in a yard while the baby watches.,starts mowing his lawn finally going up and down the lawn.,goes down and goes down the slide.,2\n514,anetv_TLQFjTXZ58E,16447,He talks about different lengths of grass for a while and then bends down to his mower. He,He talks about different lengths of grass for a while and then bends down to his mower.,He,gold,helps the child on the lawn without his mower.,puts the helmet and continues cleaning his lawn and walking away off the porch table.,continues to use numerous shears to cut up the wood.,uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more.,3\n515,anetv_HsklqPvsMEQ,2973,A person is seen aiming a paintball gun off into the distance in a large field. Many people,A person is seen aiming a paintball gun off into the distance in a large field.,Many people,gold,watch on the side as the man aims.,are seen attempting to hit the ball back and fourth.,are seen looking around a field while moving around.,are then seen speaking to the camera and interviews one another while walking onto the field.,0\n516,anetv_HsklqPvsMEQ,2974,Many people watch on the side as the man aims. Suddenly another person,Many people watch on the side as the man aims.,Suddenly another person,gold,is thrown into charging steels.,comes in and does several more flip down the wash.,is seen gliding through ice covering the area of wreckage.,comes into frame and plays with the man.,3\n517,anetv_38qpTblXDTw,10773,A woman sits on a riding lawnmower in the distance. The woman,A woman sits on a riding lawnmower in the distance.,The woman,gold,changes part of the building.,drives the lawnmower towards the camera.,shovels snow all around.,walks back and forth on the grass.,1\n518,anetv_38qpTblXDTw,10774,The woman drives the lawnmower towards the camera. The woman,The woman drives the lawnmower towards the camera.,The woman,gold,walk around then leaves the yard.,begins to turn the mower at a fence corner.,laughs and ties the mower.,jumps over the trees in front of the backyard and gets to the top of the tree.,1\n519,anetv_xT7eQmyr1-Y,10728,The man walks the blower around the yard and blows leaves to the side. The man,The man walks the blower around the yard and blows leaves to the side.,The man,gold,continues skating around his yard with another leaf.,plays the instrument continuously blowing leaves as the camera pans around.,hits the boy and rakes it all around the yard.,finishes and pushes the leaf blower beside the fence with the other machinery then walks away.,3\n520,anetv_xT7eQmyr1-Y,10727,A man walks through his yard and retrieves a push leaf blower. The man,A man walks through his yard and retrieves a push leaf blower.,The man,gold,turns on the stair and holds near something.,succeeds in mowing the lawn around.,sits up and begins raking the last bush while there is a crowd walking along a small fence with leaf blower.,walks the blower around the yard and blows leaves to the side.,3\n521,anetv_6x3qs7jQQko,2222,A woman is styling the hair of a mannequin. She,A woman is styling the hair of a mannequin.,She,gold,\"looks down with no features, covering her hair.\",is drying the dry teen lady on the beach.,trims a black eyebrow.,rolls the hair into curlers on top of the head of the mannequin.,3\n522,anetv_6x3qs7jQQko,2223,She rolls the hair into curlers on top of the head of the mannequin. She,She rolls the hair into curlers on top of the head of the mannequin.,She,gold,\"holds the baby up, peering into her eyes.\",shrugs then beams down and leaves.,takes the curlers out of the hair and styles it.,applies more makeup to the match beside her.,2\n523,anetv_g0RK-2ydod0,3711,A chef is seen standing before a table with various objects laid out and pulling a piece of food out of pot. He,A chef is seen standing before a table with various objects laid out and pulling a piece of food out of pot.,He,gold,shows the object to the camera and begins peeling it out into a bowl.,speaks to the camera while holding up a glass while others going in behind him spreading lather on his arm and occasionally helping it.,is then seen strumming a spear and then extends it to chocolate and face paper and places it in place.,puts some ingredients in the pan and the camera pans around in front of the house.,0\n524,anetv_g0RK-2ydod0,3712,He shows the object to the camera and begins peeling it out into a bowl. The person then,He shows the object to the camera and begins peeling it out into a bowl.,The person then,gold,cuts up the food and continues peeling more into a pot.,begins demonstrating while he continues shaving the roof.,sets down the small spoon and begins mixing the sandwich up and presenting it to the camera.,puts dough onto a plate with ingredients and cheese on it.,0\n525,anetv_tnt6Wpv_kHc,16065,More close ups are shown of the machine as well as the specs it comes along with. Then man,More close ups are shown of the machine as well as the specs it comes along with.,Then man,gold,shows up several clear shots of the man speaking and while looking back to the camera.,talks to the camera and lays one down on his lap and jumps off the chair.,uses the tool to rub down the top of the area.,continuously rides on the machine while the camera captures him from several angles.,3\n526,anetv_tnt6Wpv_kHc,16064,Various shots of an exercise equipment are shown followed by a man on top using the machine. More close ups,Various shots of an exercise equipment are shown followed by a man on top using the machine.,More close ups,gold,are shown of the equipment and moving to different locations in various locations.,are shown of the machine as well as the specs it comes along with.,are shown of the man rowing the machine as well as himself strapping the man's hands.,are shown of the man riding behind a seat.,1\n527,anetv_tnt6Wpv_kHc,8900,A man is in a studio riding an elliptical. other people,A man is in a studio riding an elliptical.,other people,gold,are lifting the barbells as models.,gather around the man to apply makeup and take his picture.,are demonstrating how to dance while drinking or playing.,are shown running out on a piece of machinery.,1\n528,anetv_4zFiORtQrlA,8032,The man takes out a tool and makes an adjustment to the wheel sprocket then turns the wheel before adjusting more. The man,The man takes out a tool and makes an adjustment to the wheel sprocket then turns the wheel before adjusting more.,The man,gold,is then shown again in its air yard.,dips the liquid into a piece of metal.,adjusts a shifter on the handlebars.,reaches out and takes a piece of hot steel.,2\n529,anetv_KRfdZgxLZPY,9757,A young man in a black outfit performs a double trick by grinding down one railing and jumping down a staircase. A man in a purple sweatshirt,A young man in a black outfit performs a double trick by grinding down one railing and jumping down a staircase.,A man in a purple sweatshirt,gold,walks to the bottom and spots a car now next to him.,performs his parallel push ups on the bars and does several gymnastics momentum.,skates across a dartboard and falls off the bridge onto a mat.,grinds down a staircase railing.,3\n530,anetv_KRfdZgxLZPY,9758,A man in a purple sweatshirt grinds down a staircase railing. A man in a purple and black striped sweatshirt,A man in a purple sweatshirt grinds down a staircase railing.,A man in a purple and black striped sweatshirt,gold,walks around a dirt race.,jumps down a staircase.,tries to play her drums.,jumps into a medieval building.,1\n531,anetv_KRfdZgxLZPY,9755,\"In the snow, various young men perform snowboard tricks before the camera. A man in a blue sweatshirt\",\"In the snow, various young men perform snowboard tricks before the camera.\",A man in a blue sweatshirt,gold,throws the frisbee like a frisbee in the woods.,jumps down a staircase.,rolls into the ice of a parking lot.,walks slowly towards the car and uses passes.,1\n532,anetv_S-8ogZOLiWU,12043,We see a man putting on gear and then hockey player walking to the rink. We,We see a man putting on gear and then hockey player walking to the rink.,We,gold,see 4 three racers.,see the crowd clapping.,a game of croquet we see a circle of two people sitting on the table and court less observes.,see the ball being held by onlookers.,1\n533,anetv_S-8ogZOLiWU,12045,We see a game of hockey being played. We,We see a game of hockey being played.,We,gold,we see several people walking down the road and holding a ball.,and players play hockey.,see people clapping in the crowd.,\"person throw the ball to the goal, and we see a replay of the game.\",2\n534,anetv_S-8ogZOLiWU,12044,We see the crowd clapping. We,We see the crowd clapping.,We,gold,see a game of hockey being played.,see the lacrosse stick to a player.,see a boy running into the crowd.,see the man finish and flip a pose.,0\n535,lsmdc0004_Charade-47943,18848,A secretary sits behind a desk. She,A secretary sits behind a desk.,She,gold,inserts a needle through the shelf rim.,\"puts her coat on, then eyes a security table.\",uncorks a set of drums.,looks up as someone enters.,3\n536,lsmdc0004_Charade-47943,18849,She looks up as someone enters. The secretary,She looks up as someone enters.,The secretary,gold,reaches for the second greeting.,holds out his hand.,holds the line for a moment before she opens her door.,picks up her phone and presses a button.,3\n537,lsmdc0004_Charade-47943,18850,The secretary picks up her phone and presses a button. Someone,The secretary picks up her phone and presses a button.,Someone,gold,\"slides down a handheld panel, her phone cradled in her ear.\",\"dials a number, then gets up and runs back up the stairs.\",picks up her record case and dials a number.,goes to the door leading to the private office.,3\n538,anetv_HEw5wIWVpWE,19172,The man sucks up the roach in a vacuum as the kids watch. The man,The man sucks up the roach in a vacuum as the kids watch.,The man,gold,is using the axe to watch dog in the pile on goal.,takes two cigarettes and digs another in the pumpkin.,dumps out the bug and flips it over on the floor as the kids watch.,looks out of the car in ruins and puffs away the smoke as the smoke swirls along.,2\n539,anetv_HEw5wIWVpWE,19173,The man dumps out the bug and flips it over on the floor as the kids watch. The kids,The man dumps out the bug and flips it over on the floor as the kids watch.,The kids,gold,jumps off the couch as the kids listen to someone.,continue his ride forward over people riding down the street again.,talk about be bug and wrestle on the floor.,ride back a fourth barefoot.,2\n540,anetv_HEw5wIWVpWE,19169,We see a girl on the floor with a toddler playing. The girl,We see a girl on the floor with a toddler playing.,The girl,gold,throws a fan towards the girl.,holds the boy up and yells at the camera.,places three sticks in her mouth.,gets up and walks into another room.,3\n541,anetv_HEw5wIWVpWE,19171,The girls shines a light on a roach on he wall and she dances with the flashlight. The man,The girls shines a light on a roach on he wall and she dances with the flashlight.,The man,gold,stands and faces the couple on the horses.,performs a ballet jump in the room.,sucks up the roach in a vacuum as the kids watch.,mounts the metal beam and begins climbing the shaft.,2\n542,anetv_HEw5wIWVpWE,19168,A man is walking through the house. We,A man is walking through the house.,We,gold,have climbed the wooden sheets.,using the shears again.,see a girl on the floor with a toddler playing.,see the kids shining green lawn and field.,2\n543,anetv_HEw5wIWVpWE,5345,The camera focuses on two children interact with each other in a cluttered room. The camera,The camera focuses on two children interact with each other in a cluttered room.,The camera,gold,shows a close up of his own fist being seen.,captures the section of the clip moving their legs slowly.,pans up to the broken tree which has already missing many pictures of the person walking in the locked yard.,follows the children walking into a different room.,3\n544,anetv_HEw5wIWVpWE,5349,A closeup of the floor is shown with the man occasionally interacting with bugs on the floor or the machine. The two children,A closeup of the floor is shown with the man occasionally interacting with bugs on the floor or the machine.,The two children,gold,rush to the table and address them with instructions to get it into new base.,talk to the camera.,face one another while the other speaks.,play various instruments while trying to match the match.,1\n545,anetv_HEw5wIWVpWE,5347,The two children dance together. A close up of some sort of machinery,The two children dance together.,A close up of some sort of machinery,gold,is shown as well as speaking to the camera.,is shown with a website on them.,is shown with the man or the children occasionally interacting with it.,is seen next to a volleyball group mates.,2\n546,anetv_HEw5wIWVpWE,5350,The two children talk to the camera. The two children,The two children talk to the camera.,The two children,gold,wrestle by the window with railings and kids help it.,interact with each other again.,chained together and begin surfing.,talk together while a group of children fall down the stairs.,1\n547,anetv_HEw5wIWVpWE,5344,The camera focuses on an older man's face. The camera,The camera focuses on an older man's face.,The camera,gold,focuses on two children interact with each other in a cluttered room.,begins to move into the man's perspective.,is then seen surfing out of screen.,focuses on the boy.,0\n548,anetv_HEw5wIWVpWE,5346,The camera follows the children walking into a different room. The camera,The camera follows the children walking into a different room.,The camera,gold,zooms in on the house on the right.,is cut up with glimpses of people on the screen.,continues to follow the area while many pictures you to help are shown.,focuses on a bug on the wall.,3\n549,anetv_HEw5wIWVpWE,19170,The girl gets up and walks into another room. The girls shines a light on a roach on he wall and she,The girl gets up and walks into another room.,The girls shines a light on a roach on he wall and she,gold,adds a piercing to another girl.,dawns down as well.,dances with the flashlight.,begins to fight herself.,2\n550,anetv_pouxwDABDrg,19263,\"A group of women are working out in a building. The instructor appears, and they\",A group of women are working out in a building.,\"The instructor appears, and they\",gold,are demonstrating how to do ballet moves.,begin dancing in unison as they break and moving forwards.,demonstrate ballet and showing how to play and fix one another.,continue dancing up and down and side to side on steppers.,3\n551,anetv_pouxwDABDrg,19264,\"The instructor appears, and they continue dancing up and down and side to side on steppers. The instructor\",\"The instructor appears, and they continue dancing up and down and side to side on steppers.\",The instructor,gold,stops short and turns back to the camera.,has a conversation for the first time.,walks away as the others continue.,stops and gives some more darts.,2\n552,anetv_pouxwDABDrg,6076,The trainer and class step in a circle and up on the platform. The trainer and class,The trainer and class step in a circle and up on the platform.,The trainer and class,gold,are leading the other.,kick up their legs forward on the platform.,instructor are standing back at the end of the dance routine.,ride in unison by lifting their arms up on the air as they sit.,1\n553,anetv_pouxwDABDrg,6078,The trainer and class step up sideways on the platform. The trainer and class,The trainer and class step up sideways on the platform.,The trainer and class,gold,walk over then in reverse over the platform.,does a routine on the level.,swing another trembling hand.,move on the platform post.,0\n554,anetv_pouxwDABDrg,6077,The trainer and class kick up their legs forward on the platform. The trainer and class,The trainer and class kick up their legs forward on the platform.,The trainer and class,gold,continue talking on the hands again.,is supposed to dance.,continue in synchronized moves on table as the three aerobics continue to turn.,step up sideways on the platform.,3\n555,anetv_x2FfKHiN_3s,8278,\"A man is sitting on a frozen lake, fishing through a hole and surrounded by fishing gear. He walks away from his stuff, and a fish\",\"A man is sitting on a frozen lake, fishing through a hole and surrounded by fishing gear.\",\"He walks away from his stuff, and a fish\",gold,\"pulls his pole into the water, disappearing with it.\",catches it as he tries to browse the fish.,is caught in the water.,shows off of the shattered glass.,0\n556,anetv_x2FfKHiN_3s,8279,\"He walks away from his stuff, and a fish pulls his pole into the water, disappearing with it. He\",\"He walks away from his stuff, and a fish pulls his pole into the water, disappearing with it.\",He,gold,rolls into the hole and just waits to let losing.,throws his arms in the air.,goes around with someone and someone.,\"stands angrily with his hands on his hips, then gets another pole to try to get it back.\",3\n557,anetv_hThdSxhMhDo,11047,\"A grey bunny is standing on a bed on a black towel eating something in his hand. As he eats, the bunny\",A grey bunny is standing on a bed on a black towel eating something in his hand.,\"As he eats, the bunny\",gold,is wearing black and white and his eyes are caked with frost.,begins to grabs his ears and shakes its head.,is trying to catch the dog's attention.,lifts its black paw and goes back to his horse.,1\n558,anetv_hThdSxhMhDo,11048,\"As he eats, the bunny begins to grabs his ears and shakes its head. Struggling more, the bunny\",\"As he eats, the bunny begins to grabs his ears and shakes its head.\",\"Struggling more, the bunny\",gold,pins himself to beer.,bends down and keeps eating something before looking out.,slams someone across the mouth.,jumps around super high up and then flips throughout the story.,1\n559,lsmdc1039_The_Queen-88318,4293,Someone look pensively to one side. Someone,Someone look pensively to one side.,Someone,gold,and someone onstage gather around someone's room.,cheer and leads people into the cafe.,lowers the indeed's gaze.,returns from her reverie and faces someone.,3\n560,lsmdc1039_The_Queen-88318,4295,\"People descend the stairs with a corgi scuttling ahead. Nearby, someone\",People descend the stairs with a corgi scuttling ahead.,\"Nearby, someone\",gold,slumps on a throne as a group of students step up to the impressive display of the statue house.,smiles as they pass by.,climbs onto a mat bag as he exits his office.,\"faces a windowed door for madison square, as he leans forward a few steps in front of him.\",1\n561,lsmdc1039_The_Queen-88318,4294,Someone returns from her reverie and faces someone. They,Someone returns from her reverie and faces someone.,They,gold,walk off down the corridor side - by - side.,follow her off in a meeting room.,look around with to mushrooms.,turn the car over and the finished bell has placed at the bottom of the screen.,0\n562,anetv_5HqegO_ayw8,5186,The people continuously hit the ball around the sandy field as the camera pans around them playing. The camera,The people continuously hit the ball around the sandy field as the camera pans around them playing.,The camera,gold,pans to show the others on the sidewalk speaking to one another.,pans back to the people playing the game.,zooms back in behind the men playing the drums with their hands.,pans around the group as they keep playing.,3\n563,anetv_eeD2_hKG7zE,16014,She then carries herself along the set of monkey bars and moves back and fourth on the play set. She,She then carries herself along the set of monkey bars and moves back and fourth on the play set.,She,gold,unwraps the gift to her family and puts a sandwich into a small bowl.,makes her way back to the start and climbs down the ladder finally looking at the camera.,walks on and picks up the little.,continues playing in the hole while the camera captures her.,1\n564,anetv_eeD2_hKG7zE,16013,A young girl is seen standing before a set of monkey bars and smiling while speaking to the camera. She then,A young girl is seen standing before a set of monkey bars and smiling while speaking to the camera.,She then,gold,swings the monkey around over the slide while the girl watches the frame.,\"interviews the woman beside a large brush, and she continues dancing as well as the girl playing to push down her fence.\",grabs the bar and begins pulling on the rope and looking to the camera.,carries herself along the set of monkey bars and moves back and fourth on the play set.,3\n565,lsmdc1006_Slumdog_Millionaire-73908,15744,\"The three children flee the scene. On the game show, someone\",The three children flee the scene.,\"On the game show, someone\",gold,stands with the young guy in bed.,gets in her car and comes to a halt.,looks deep in thought.,sits on a bench with one exhausted someone.,2\n566,lsmdc1006_Slumdog_Millionaire-73908,15745,\"On the game show, someone looks deep in thought. The host\",\"On the game show, someone looks deep in thought.\",The host,gold,points his hand at someone mimicking holding a gun.,walks in to his.,\"watches them go, and writes behind a desk.\",clinks glasses on his head and arches his brow.,0\n567,lsmdc1006_Slumdog_Millionaire-73908,15743,Someone rushes to take someone's money from the floor. Someone,Someone rushes to take someone's money from the floor.,Someone,gold,turns off the lamp and flips it open.,is rooted to the spot.,takes out his gun from the bed.,steps back from the wheel.,1\n568,lsmdc3087_WE_BOUGHT_A_ZOO-41091,14680,Someone leads the group down a trail lined with tall bushes. One of the tigers,Someone leads the group down a trail lined with tall bushes.,One of the tigers,gold,is an excited child.,is bathing a couple of birds and feathers.,is talking to the stagehands.,steps past two others lounging in the grass.,3\n569,anetv_YaHTgeeDs7s,18086,The crash into each other over and over and seem to be a bit confused as to what to do. They,The crash into each other over and over and seem to be a bit confused as to what to do.,They,gold,have smiles on their faces as they continue to go around the track.,goes back to on the bikes and eventually they help do jump.,continue dancing at the end together and talking to the camera while still speaking.,are swimming while flipping on the sand.,0\n570,anetv_YaHTgeeDs7s,18085,A bunch of kids are playing on the bumpers cars at an amusement park. The crash into each other over and over and,A bunch of kids are playing on the bumpers cars at an amusement park.,The crash into each other over and over and,gold,get into the car and a man in a blue shirt claps them with it being a big deal.,raise a single lingering coffee.,seem to be a bit confused as to what to do.,fell into the arena.,2\n571,anetv_8UyB9XigBXM,15568,A young girl is seen brushing her hair as well as spraying product into her hair. She,A young girl is seen brushing her hair as well as spraying product into her hair.,She,gold,takes her hair in parts and begins braiding her hair.,continues speaking and looking to the camera and smiling as she leaves.,pauses to brush her hair while still laughing to the camera.,moves herself back and fourth while continuing to speak to the camera.,0\n572,anetv_8UyB9XigBXM,15569,She takes her hair in parts and begins braiding her hair. She,She takes her hair in parts and begins braiding her hair.,She,gold,picks up puffs off the braid and puts it back in her hair.,finishes braiding her hair and ends by a picture of the braid.,then rises to the end of her bow and curls her hair.,then brushes the hair back and styles it until the end.,1\n573,anetv_vijDPbwU6vA,7085,A man in a hat stands up and chops wood. He,A man in a hat stands up and chops wood.,He,gold,see five men assembling each other and talking into a microphone.,moves inside the wire including an orange frame.,gives a thumbs up and puts the ax over his shoulder.,holds open a knife and removes a wood they are holding.,2\n574,anetv_vijDPbwU6vA,7084,People are sitting around a campfire. A man in a hat,People are sitting around a campfire.,A man in a hat,gold,is holding a coffee pot.,is playing in a gray man.,is talking to the camera next to a black.,stands up and chops wood.,3\n575,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9257,He fishes the someone Mouse out of the bin. He,He fishes the someone Mouse out of the bin.,He,gold,puts on a magnifying glass headband with small working lights.,lies in his arms.,drives his white car across the grass with a dirt edge.,comes downstairs as someone enters with his pet elephant.,0\n576,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9258,He puts on a magnifying glass headband with small working lights. He,He puts on a magnifying glass headband with small working lights.,He,gold,picks up a mouse - sized top hat.,index the nose and injects new hundred - sized holes in a rubik's made mirror.,reverses away from the save he seems to be struggling to stay upright.,hands the thin magic volume to a small cam pan outside.,0\n577,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9249,Someone frowns and looks contrite. Someone,Someone frowns and looks contrite.,Someone,gold,turns and spots her applying someone details.,turns and wades out of the pond.,walks down onto the stage.,punches someone's chest then scrolls down his throat and breaks free.,1\n578,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9259,He picks up a mouse - sized top hat. He,He picks up a mouse - sized top hat.,He,gold,gets up and goes over to a wooden chest.,shoves into the pocket of the dog's perfume.,idly takes a puff.,\"bends down and picks up the grail, as someone climbs up.\",0\n579,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9251,\"Someone stays put, staring at the water. That evening, someone\",\"Someone stays put, staring at the water.\",\"That evening, someone\",gold,water down the bar.,hurries over to someone and hugs her.,returns to his modest bungalow.,enters the waiting station.,2\n580,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9260,He gets up and goes over to a wooden chest. He,He gets up and goes over to a wooden chest.,He,gold,picks up the receiver.,pulls a cloth cover off it and undoes the catches.,looks round while people start to play.,goes down to the landing and looks around expectantly.,1\n581,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9254,He begins sweeping everything off his bench into the bin. He,He begins sweeping everything off his bench into the bin.,He,gold,glances back at himself and starts to shave the long wooden slat.,turns around and switches on another light.,sticks the rake in a park and continues running.,continues separating the rakes and empties the tires on the table.,1\n582,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9253,He takes the someone Mouse from his shirt pocket and stares at it. He,He takes the someone Mouse from his shirt pocket and stares at it.,He,gold,begins sweeping everything off his bench into the bin.,walks the hands up to his straight sweater.,starts contemplative again and nor continues to sing.,finds the beautiful man with a cold stare.,0\n583,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9263,He stands in the middle of the living room. Someone,He stands in the middle of the living room.,Someone,gold,lies staring at him as he types on a laptop.,walks back out of view and looks down.,hands someone the phone.,gives someone a photo.,2\n584,lsmdc3022_DINNER_FOR_SCHMUCKS-10530,9262,Someone returns home to his apartment. He,Someone returns home to his apartment.,He,gold,holds up poufy bottle.,leans into someone's bedroom.,stands in the middle of the living room.,puts his cellphone to someone's ear.,2\n585,anetv_tZzse87ICr8,3917,A young girl plays hopscotch in the sand on the beach. There,A young girl plays hopscotch in the sand on the beach.,There,gold,are bewildered as they go.,is a finger on the edge of the camera.,with a horse in a chaise behind her little dog walks by the feeds.,girl are interviewed on several other girls watching a performance in a competition.,1\n586,anetv_tZzse87ICr8,1761,The girl begins jumping down the beach as well as back. She,The girl begins jumping down the beach as well as back.,She,gold,leads into close ups of her from the end and jumping onto the rope.,\"hands, begins flipping on clothes and bending down while holding herself up at the same time as well.\",goes back to where she started and looks at the camera.,continues bouncing on stage with the rope and ends by walking away.,2\n587,anetv_tZzse87ICr8,3916,The girl looks at the camera and prepares to jump. A young girl,The girl looks at the camera and prepares to jump.,A young girl,gold,plays hopscotch in the sand on the beach.,\"sits down on the ground, playing with a stick as she turns to race on the side to speak.\",on an outdoor field is seen running over a court and walking with her ball.,in blue goes to do.,0\n588,anetv_tZzse87ICr8,1760,A young girl is seen standing on the beach looking at the camera. The girl,A young girl is seen standing on the beach looking at the camera.,The girl,gold,then on the side ride a horse onto the mat in front of her.,begins jumping down the beach as well as back.,is then seen moving down tubes and pushing along the playground from the water.,continues playing around in the room and ends by shooting and waving to the camera.,1\n589,anetv_tZzse87ICr8,3918,There is a finger on the edge of the camera. The girl,There is a finger on the edge of the camera.,The girl,gold,hops on the board back the other direction.,begins to squeeze the pedals faster and faster.,tries to wash a fish better.,glances at a dancing hula.,0\n590,lsmdc0002_As_Good_As_It_Gets-46319,10430,A mass of official people clutter the hall as a gurney is whisked down to the elevator. Someone,A mass of official people clutter the hall as a gurney is whisked down to the elevator.,Someone,gold,\"is standing against the wall near his door a cop, someone, interviewing him.\",\"closes the door behind them, just seeing it locked, the boy gets to his feet.\",slowly descends further into the vault.,shakes the pleasantly's head and walks up to them.,0\n591,lsmdc0053_Rendezvous_mit_Joe_Black-71495,4075,The silence is broken by a knock on the door. Quince,The silence is broken by a knock on the door.,Quince,gold,sit next to an old oak tree that is now crowded.,\"is a loud drunk, as he shoves past someone.\",\"appears, flushed with excitement.\",shakes someone's hand.,2\n592,lsmdc0053_Rendezvous_mit_Joe_Black-71495,4076,\"Quince appears, flushed with excitement. Someone\",\"Quince appears, flushed with excitement.\",Someone,gold,looks to the crowd and watches him yell to the dismay.,\"marches astride, and he flies up.\",weighs the information for a moment.,hides the note with a pen.,2\n593,anetv_8GxWehFZVRE,16438,She is playing an accordian for the baby. The baby,She is playing an accordian for the baby.,The baby,gold,flips the ball back and forth.,moves to with her hands on her hips.,turns around and gets up.,\"rocks back and forth, dancing to the music.\",3\n594,anetv_8GxWehFZVRE,16437,A woman is sitting next to a baby in a high chair. She,A woman is sitting next to a baby in a high chair.,She,gold,walks around on a living room couch.,lays out a cookie sheet on a tray.,lays her head on the dry ground.,is playing an accordian for the baby.,3\n595,anetv_z-_snl6eaPE,13168,One of the players falls as he gets into a fight. A referee,One of the players falls as he gets into a fight.,A referee,gold,gets up while arriving and shooting a successful hit.,watches one of the men.,attempts to break up the fight.,stands by the keeper.,2\n596,anetv_z-_snl6eaPE,13167,Two teams of ice hockey players are on a rink. One of the players,Two teams of ice hockey players are on a rink.,One of the players,gold,falls as he gets into a fight.,shoots a ball straight into the net.,\"draws himself up, stands them with air.\",\"takes another drink, punches the rake.\",0\n597,anetv_z-_snl6eaPE,18175,A hockey game is in progress. two hockey players,A hockey game is in progress.,two hockey players,gold,walk past with a goal.,ram into each other and begin fighting.,sit around a rope watching the other team.,walked together in the middle of a field.,1\n598,anetv_z-_snl6eaPE,18176,Two hockey players ram into each other and begin fighting. the referee,Two hockey players ram into each other and begin fighting.,the referee,gold,has a stick and several sumo wrestlers present the cover with one rope.,jumps backward to get one run.,bounces the astonished someone.,skates over and breaks up the fight.,3\n599,anetv_jxAZc0VgG4w,9003,Her jump is then shown again several times in slow motion and another runner takes a turn at the jump. Her jump is shown again in slow motion and she,Her jump is then shown again several times in slow motion and another runner takes a turn at the jump.,Her jump is shown again in slow motion and she,gold,practice several replays of her throw in slow motion.,waves to the audience while smiling.,jumps off the bar and covers herself back afterwards.,continues to walk and jump and roping the ball then has moved back to the camera.,1\n600,anetv_jxAZc0VgG4w,9002,An athletic woman is shown running down a track and jumping into a large sand pit. Her jump is then shown again several times in slow motion and another runner,An athletic woman is shown running down a track and jumping into a large sand pit.,Her jump is then shown again several times in slow motion and another runner,gold,rides off the stage while she runs.,takes a turn at the jump.,seems to move to find her.,launches herself into a pole again.,1\n601,anetv_jXZ6WVxXgLA,2086,A man is using a large broom in a parking lot. He,A man is using a large broom in a parking lot.,He,gold,\"reaches the shovel, puts it in the trashcan.\",puts something in his eye.,uses both hands and spills the joint off the machine.,spins the broom in circles around him.,3\n602,anetv_jXZ6WVxXgLA,2087,He spins the broom in circles around him. The spinning,He spins the broom in circles around him.,The spinning,gold,put the ball and it destroys the fire.,does the hammer throw.,brushes the piles of leaves out of the parking lot.,rocks someone and punches him on the cheek.,2\n603,anetv_seScyTd2XSc,1075,The person sprays down the stainless steel sink with detergent in a spray bottle. A sponge,The person sprays down the stainless steel sink with detergent in a spray bottle.,A sponge,gold,shaves the rim of the sponge?,is cleaned by a sponge and a cloth.,is clean and scraped.,is used to scrub the sing with the cleaning solution.,3\n604,anetv_seScyTd2XSc,1074,A person holds out cleaning product and a spray bottle with the mixture over a kitchen sink. The person,A person holds out cleaning product and a spray bottle with the mixture over a kitchen sink.,The person,gold,sprays down the stainless steel sink with detergent in a spray bottle.,takes shoe polish and puts glasses on.,pours the cheese bar first onto the stove.,holds a spray bottle and then cleans the counter on the floor.,0\n605,anetv_seScyTd2XSc,1076,A sponge is used to scrub the sing with the cleaning solution. The faucet,A sponge is used to scrub the sing with the cleaning solution.,The faucet,gold,water is shown around the tub until it is clean.,\"is watched by someone, a third bucket and water rubbing a bandage on the back of his hand.\",is turned on and is used to rinse out the sink.,is shown once again that it is clean again.,2\n606,anetv_x0cSfzhQRAs,11049,\"A man walks across a suspended rope high in the air, losing balance at one point and holding on to the rope with his hands and feet wrapped around the rope. The man then\",\"A man walks across a suspended rope high in the air, losing balance at one point and holding on to the rope with his hands and feet wrapped around the rope.\",The man then,gold,stands and jumps off a low kick and steps.,is able to hoist himself back enough on the rope to sit on it with the rope between his legs.,bows and shows off a low angle towards the calf.,stands in front of the blue speaking to people and watches at the end as they are seen floating below the rock spinning quickly.,1\n607,anetv_68oJj9QktGg,72,Several shots are shown of bulls running into people in busy streets and people becoming hurt by the bulls. Many more shots,Several shots are shown of bulls running into people in busy streets and people becoming hurt by the bulls.,Many more shots,gold,are shown of men riding around while another is being interviewed and text in the distance.,are shown of bulls hurting people in various locations while others try to help them on the side.,\"are shown of people riding the camels and doing various tricks, laughing and fighting.\",are shown of people sitting in the circle without one another.,1\n608,lsmdc1001_Flight-71847,2424,\"At a church, a large framed picture of someone stands surrounded by flowers as a coffin is carried out. Someone\",\"At a church, a large framed picture of someone stands surrounded by flowers as a coffin is carried out.\",Someone,gold,stands in a dark suit and watches the procession pass.,pushes someone's hair back into a long and thick chain and sits on a fan in the next window.,steps up to it and looks her in the eyes.,\"stares at the red man, warmly.\",0\n609,lsmdc1001_Flight-71847,2426,A young boy touches someone's arm. Someone,A young boy touches someone's arm.,Someone,gold,turns around and sees someone.,falls on his painful tight.,\"topples someone's turning back, then glances around.\",throws her woman in the shoulder.,0\n610,lsmdc1001_Flight-71847,2423,\"Someone points the camera at her. At a church, a large framed picture of someone\",Someone points the camera at her.,\"At a church, a large framed picture of someone\",gold,raises an eyebrow at someone.,stands surrounded by flowers as a coffin is carried out.,addresses someone's belongings in a magazine.,battered his desk parked in the street of the garage.,1\n611,lsmdc1001_Flight-71847,2427,He goes to her and they hug. Someone,He goes to her and they hug.,Someone,gold,reaches for her son and pulls him close.,\"wins, then turns.\",\"gets out of bed, presses the door open.\",scrambles back and grabs her lip.,0\n612,lsmdc0027_The_Big_Lebowski-62987,12532,\"Someone, frowning, untucks its flap, takes out some cotton wadding and unrolls it. The wadding, undone,\",\"Someone, frowning, untucks its flap, takes out some cotton wadding and unrolls it.\",\"The wadding, undone,\",gold,reveals a smaller wad of gauze taped up inside.,\"has only hand tags by the wrist sheet, revealing the back of the clothing with his pajama sleeves.\",\"adds more polish in the anteroom, nearly kicks it apart.\",\"sliced in the, opened the karaboudjan to someone.\",0\n613,lsmdc0027_The_Big_Lebowski-62987,12534,Someone undoes the tape with his fingernails and starts to unroll the inner package. Between thumb and forefinger someone,Someone undoes the tape with his fingernails and starts to unroll the inner package.,Between thumb and forefinger someone,gold,is already at his tongue.,\"holds up the contents of the package - - a little toe, with emerald green nail polish.\",folds her feet around the automaton and peers into his eyes.,pushes the other colonel away from the elderly.,1\n614,lsmdc0027_The_Big_Lebowski-62987,12533,\"The wadding, undone, reveals a smaller wad of gauze taped up inside. Someone\",\"The wadding, undone, reveals a smaller wad of gauze taped up inside.\",Someone,gold,is played on his coat.,undoes the tape with his fingernails and starts to unroll the inner package.,walks quickly back into work with them behind him and aglow him with someone.,lays out a coin with his cash and hanging it.,1\n615,lsmdc0041_The_Sixth_Sense-67896,17959,Someone leans his head back against the chair. Someone's eyes,Someone leans his head back against the chair.,Someone's eyes,gold,remain unmistakably composed as he stares at the floor.,scan the room and come to a stop on a box marked with the label.,climb up as he opens the door marked the parlor.,remain pinched and tight.,1\n616,lsmdc0041_The_Sixth_Sense-67896,17957,\"Someone gazes at it, then looks up at someone's pained eyes. Someone\",\"Someone gazes at it, then looks up at someone's pained eyes.\",Someone,gold,glance at each other.,\"leans forward, trapping someone.\",gazes at her from the porch.,sits stoically at his desk in his basement.,3\n617,lsmdc0041_The_Sixth_Sense-67896,17961,A tape slides into the tape player seated on someone's desk. Someone's eyes,A tape slides into the tape player seated on someone's desk.,Someone's eyes,gold,\"pump up, staring helplessly.\",travel slowly around the table by pulling out some bills.,are locked on the spool of audio tape as it spins in the player.,morphs to black as note notes then put down on the blueprint.,2\n618,lsmdc0041_The_Sixth_Sense-67896,17956,Someone pushes it across the table. Someone,Someone pushes it across the table.,Someone,gold,smiles a few times.,grabs someone's wrist.,\"sits by someone's shoulder at a table, smoking a hookah.\",\"gazes at it, then looks up at someone's pained eyes.\",3\n619,lsmdc0041_The_Sixth_Sense-67896,17958,Someone sits stoically at his desk in his basement. Someone,Someone sits stoically at his desk in his basement.,Someone,gold,leans his head back against the chair.,\"flashes a smug smile, then steps out of the offices and looks up to join confused on the floor.\",\"silence to the next room, goes to the hotel office, sits down in the chair, and watches the weather.\",grips the doctors wih his eyes.,0\n620,lsmdc0041_The_Sixth_Sense-67896,17960,Someone's eyes scan the room and come to a stop on a box marked with the label. A tape,Someone's eyes scan the room and come to a stop on a box marked with the label.,A tape,gold,produces a handful of junk on it.,- man appears to write in the letter.,slides into the tape player seated on someone's desk.,technician holds the ornate handle of the machine gun forward.,2\n621,lsmdc0012_Get_Shorty-53374,10187,\"Someone watches as the movie star hunches over, narrows his shoulders. But someone\",\"Someone watches as the movie star hunches over, narrows his shoulders.\",But someone,gold,keeps looking at someone.,\"settles for the first one, dropping the passport.\",seizes back once more.,\"is serving, hitting him.\",0\n622,anetv_oD5lGBt7U7g,10726,Several shots are shown of the inside of a shop followed by a person unboxing a bike. The man then brings out tools and tightens them along the bike and,Several shots are shown of the inside of a shop followed by a person unboxing a bike.,The man then brings out tools and tightens them along the bike and,gold,is shown peddling the bike with his hands and showing off the finished bike.,ends by unscrewing it.,gets up and begins to attach.,rolls out a cutting machine.,0\n623,anetv_u6f9COsww0w,14065,\"A young man is talking, then the young men in the pool played soccer by swimming towards the ball, while they play, their coach is giving them lectures at the side of the pool. The team in green uniforms are having photoshoot and showing their medals, then other teams\",\"A young man is talking, then the young men in the pool played soccer by swimming towards the ball, while they play, their coach is giving them lectures at the side of the pool.\",\"The team in green uniforms are having photoshoot and showing their medals, then other teams\",gold,were shown for their photos.,are shown making a shot with their mallets.,are in the starting field making flippers and hitting the ball around one goal.,are beating a hockey ball against a wall and playing.,0\n624,anetv_u6f9COsww0w,6724,Several shots are shown of people swimming around a pool as well as playing a game. Many people,Several shots are shown of people swimming around a pool as well as playing a game.,Many people,gold,speak to the camera while more shots are shown of water polo being played.,camera seen walk around in volleyball as well as people playing.,are shown laughing with one another and ends by shaking hands with others.,watch off the sidelines as well as well a pool on their feet.,0\n625,anetv_u6f9COsww0w,14064,\"The kids are swimming at the same time in a blue pool, they pushed themselves off the wall of the pool then did a butterfly strokes. An old man in white shirt was talking, then the young men played a yellow ball in the pool, they also\",\"The kids are swimming at the same time in a blue pool, they pushed themselves off the wall of the pool then did a butterfly strokes.\",\"An old man in white shirt was talking, then the young men played a yellow ball in the pool, they also\",gold,turn around and start quickly towards each other and holding people around.,\"met another at a time, washing the game madly.\",\"played soccer in the pool, then swim.\",did it and walked in each attempt at the lake.,2\n626,anetv_u6f9COsww0w,6725,Many people speak to the camera while more shots are shown of water polo being played. A coach,Many people speak to the camera while more shots are shown of water polo being played.,A coach,gold,speaks to his team and shows them all huddled up together and playing more.,move away and leads into more shots of people playing pool.,is seen sitting down to the camera with a canoe helped out as well as multiple shots various shots of the pool down in person,talks as well to the sidelines and continues to move all around the rink.,0\n627,anetv_5vlGKyxl22M,16236,A cameraman films on front the finish line while people is arriving. A woman,A cameraman films on front the finish line while people is arriving.,A woman,gold,in a black shirt stands on the mat.,talks in front of her.,raise her arms when cross the finish line.,hug the student.,2\n628,anetv_ZU4Mgdd3omA,18399,A woman is seen sitting in a chair playing an instrument while reading off a book of notes. She,A woman is seen sitting in a chair playing an instrument while reading off a book of notes.,She,gold,continues playing along and pauses to look back at the camera and laugh.,then picks up the remote and looks at it up for her waving.,laughs into a microphone and gives her a thumbs up.,places her hands on the back of the man looking into the camera.,0\n629,anetv_ZU4Mgdd3omA,16602,The lady watching turns her head to the right. The girl,The lady watching turns her head to the right.,The girl,gold,finishes playing and lowers her flute.,walks back to the first aid individual and returns.,continues to apply the surface of dresser lotion and tries shooting a contact into her eye.,cuts something and drops.,0\n630,anetv_ZU4Mgdd3omA,16601,A girl is playing the flute with a lady watching on the webcam and visible on the monitor. The lady watching,A girl is playing the flute with a lady watching on the webcam and visible on the monitor.,The lady watching,gold,turns her head to the right.,is the man again and the camera walks in and out of frame.,are holding the flute spinning.,moves and puts her arms up.,0\n631,lsmdc3023_DISTRICT_9-10929,15297,\"Someone steals garments off a clothesline. Later, someone\",Someone steals garments off a clothesline.,\"Later, someone\",gold,tastes golf more with his hands and chuckles with someone.,narrates a reception scene at the front end of the barn.,rises from the bed and scurries onto a subway staffer.,wears the stolen clothes with a blanket over them like a hooded cloak.,3\n632,lsmdc3023_DISTRICT_9-10929,15296,\"The tall grass behind him, a German shepherd leads a group of soldiers. Someone\",\"The tall grass behind him, a German shepherd leads a group of soldiers.\",Someone,gold,gardens in one of the crags and heads through verdant trees.,steals garments off a clothesline.,\"is riding a wheels, walks down the street and joins the others.\",is robed to people as they study him.,1\n633,anetv_bxRZ-Lvjgzk,10974,An intro leads into a close up of a painting and a paintbrush swirling around and around. The hand holding the brush,An intro leads into a close up of a painting and a paintbrush swirling around and around.,The hand holding the brush,gold,brushes various people around the room demonstrating back at work.,is shown as well as the painting it and leads into a woman painting painting on a fence.,tries to paint the more and color into a brush.,begins painting grass into the painting slowly down the picture.,3\n634,anetv_ydJsJgdaEq4,17112,A man wearing a hat is seen speaking to the camera and holding up various cleaning products. He then,A man wearing a hat is seen speaking to the camera and holding up various cleaning products.,He then,gold,wipes it and shows most of his hands laid out in scrubs.,begins to clean up the shoes and scrubbing down smooth black ice.,holds up a bottle and rag and begins wiping down a class door.,cleans a piece of wax while anh while speaking to the camera.,2\n635,anetv_ydJsJgdaEq4,17113,He then holds up a bottle and rag and begins wiping down a class door. He,He then holds up a bottle and rag and begins wiping down a class door.,He,gold,continues painting his face while still speaking to the camera.,continuously zooms into the window and continues looking up and adjusting his hands and smiling to the camera.,proceeds to place her back on the sofa while walks away from the camera.,continues wiping down a door and speaking to the camera.,3\n636,lsmdc1062_Day_the_Earth_stood_still-100643,15698,An intense beam of white light sweeps across the ground. She,An intense beam of white light sweeps across the ground.,She,gold,wanders along a table beside someone.,\"stumbles into the huge gear and flies backwards, stumbling butt over the water.\",comforts them at a slow pace.,looks around in alarm as the military arrive in hummers with heavy machine guns.,3\n637,lsmdc1062_Day_the_Earth_stood_still-100643,15696,The gathered crowds stare up at the pulsating sphere which is hundreds of feet high. Someone,The gathered crowds stare up at the pulsating sphere which is hundreds of feet high.,Someone,gold,gapes with her mouth open behind her visor.,are rooted to the floor.,and someone are watching the spiders get.,\"finally takes off, wide - eyed, flipping on the way outside the station.\",0\n638,lsmdc1062_Day_the_Earth_stood_still-100643,15699,She looks around in alarm as the military arrive in Hummers with heavy machine guns. Police vehicles,She looks around in alarm as the military arrive in Hummers with heavy machine guns.,Police vehicles,gold,are parked hard above their parked suv.,draw up in convoy.,\"turn on as he leans in them, smoking at the pulley of a microphone.\",\"march in, county houses with weapons blazing, a building.\",1\n639,lsmdc1062_Day_the_Earth_stood_still-100643,15697,Someone gapes with her mouth open behind her visor. An intense beam of white light,Someone gapes with her mouth open behind her visor.,An intense beam of white light,gold,is streaming across the sun toward her cottage.,illuminates an old steel clock.,sweeps across the ground.,shines on her face.,2\n640,anetv_y47RXYfefvQ,6875,He is using a brush to wipe snow off the back windshielf of his car. He,He is using a brush to wipe snow off the back windshielf of his car.,He,gold,is washed along and talking to the camera.,\"glances at the camera, then keeps wiping.\",\"shows how to apply sunscreen to a sitting boy, standing next to the floor and paving his car.\",\"wheels over his car board, toward a strainer with a sponge and a tube of oil.\",1\n641,anetv_EhxFw5Eb1VE,3747,\"The male athlete is standing by the two poles, raised his arms up, then jumped on the poles with his arms, while under him, a man pull out a red beam. The athlete perform his exhibition on the poles, he stand on his arms while his feet and legs are extended straight up in the air, he\",\"The male athlete is standing by the two poles, raised his arms up, then jumped on the poles with his arms, while under him, a man pull out a red beam.\",\"The athlete perform his exhibition on the poles, he stand on his arms while his feet and legs are extended straight up in the air, he\",gold,dismounts and jumped over the bar and threw the jump and landed on the mat with his arms and legs as a black pose moving,performs he poses for a while.,claps his hands up.,\"turns around, swirl, jumped and twist around then jumped on the mat, standing straight.\",3\n642,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6526,5448,The snake appears and slithers through the doorway towards a figure hidden in an armchair. The old man,The snake appears and slithers through the doorway towards a figure hidden in an armchair.,The old man,gold,is auburn - haired as though broken.,\"leans against a wall, chisel against the wall sheet.\",is engulfed in a flash of green light.,cries out wide as flames shoot through through the opening.,2\n643,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72250,18040,\"People stand by the wall, laughing. He\",\"People stand by the wall, laughing.\",He,gold,leaves someone and goes to someone.,\"hits the guy in front of someone, coming after them.\",walks up and starts to talk.,\"stops, blinking and his eyes open.\",0\n644,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72250,18039,Someone is in the corridor. People,Someone is in the corridor.,People,gold,are walking in the street.,\"stand by the wall, laughing.\",pause for a moment without silence.,are in the room with them.,1\n645,lsmdc3023_DISTRICT_9-11106,11247,\"As someone struggles on his back, someone loads his gun and steps on the alien's throat. Next to each of his knees, he\",\"As someone struggles on his back, someone loads his gun and steps on the alien's throat.\",\"Next to each of his knees, he\",gold,chases the inspector higher strength faster.,\"stays motionless, his hands pulling together between the two boys.\",leans wearily back against the tank.,finds two angled cylinders filled with greenish jelly.,3\n646,lsmdc3023_DISTRICT_9-11106,11248,\"Next to each of his knees, he finds two angled cylinders filled with greenish jelly. He inserts his alien hand into one, and a holographic screen\",\"Next to each of his knees, he finds two angled cylinders filled with greenish jelly.\",\"He inserts his alien hand into one, and a holographic screen\",gold,appears on the quad.,appears before his eyes.,appears over the wall.,appears with number 9.,1\n647,lsmdc3023_DISTRICT_9-11106,11246,He takes off his jacket. Someone,He takes off his jacket.,Someone,gold,sits in the chair.,finds his wedding ring.,turns around and aims.,hurries from the truck.,0\n648,lsmdc3023_DISTRICT_9-11106,11245,\"In the ship, someone approaches a chamber where a pilot seat pops out. He\",\"In the ship, someone approaches a chamber where a pilot seat pops out.\",He,gold,takes off his jacket.,catches something deep in the hole.,applies powder to his lips.,stares at his mother's fluttering wings.,0\n649,lsmdc0027_The_Big_Lebowski-63012,3081,\"Someone looks sadly through his window at the policeman rocking back on his heels, his raucous laughter muffled by the glass. People\",\"Someone looks sadly through his window at the policeman rocking back on his heels, his raucous laughter muffled by the glass.\",People,gold,\"can be seen, saying scene to think.\",slaps on the other side.,\"pass someone, who peers up at the house.\",\"sit at the bar, someone with a white russian, someone with a beer, and someone eating beer nuts.\",3\n650,anetv_k_z03d9w_Mk,16443,The man spins his partner during the dance. The dancers,The man spins his partner during the dance.,The dancers,gold,kick up there feet while dancing.,are applauding again as the crowd cheers.,hug each other and clap.,pose for two violinist - action sports.,0\n651,anetv_k_z03d9w_Mk,16442,A woman and man wearing matching green color dance on stage during a performance. The man,A woman and man wearing matching green color dance on stage during a performance.,The man,gold,spins his partner during the dance.,finish playing - pong and an audience is watching watching him.,\"throws three large finish arms, while the crowd claps for them.\",sings to a stage and displays.,0\n652,lsmdc0005_Chinatown-48461,12672,\"Her eyes are open, a stream of ants is moving across the ice cream and into her mouth. She\",\"Her eyes are open, a stream of ants is moving across the ice cream and into her mouth.\",She,gold,falls asleep on the narrow bed beside her.,leans over and kisses her woman.,speaks to someone who looks at her defiantly.,is recognizable as the woman who posed as someone.,3\n653,lsmdc0005_Chinatown-48461,12669,\"Someone walks on into the kitchen. Clearing the kitchen counter, someone\",Someone walks on into the kitchen.,\"Clearing the kitchen counter, someone\",gold,takes two haggard drying soap from his hands.,\"sees someone lying on her back on the floor, surrounded by the groceries from a broken bag.\",finds someone sitting beside a customer.,walks around to the counter ignoring a few inner stirring fruit.,1\n654,lsmdc0005_Chinatown-48461,12668,Just inside the kitchen some radishes and onions lie on the linoleum. Someone,Just inside the kitchen some radishes and onions lie on the linoleum.,Someone,gold,seizes a ranch - sized bowl and collides with some potatoes and dropping it flat on the tabletop.,keeps drawing to his face as he totes some food out of the pot.,walks on into the kitchen.,is getting his hand into his mouth with a mouthful of mouthwash.,2\n655,lsmdc0005_Chinatown-48461,12666,He opens it and enters. It,He opens it and enters.,It,gold,'s still and empty.,\"is nearby, looking around with the parcel in his hand.\",shows its taken out.,'s blanketed with dirty hands.,0\n656,lsmdc0005_Chinatown-48461,12670,\"Clearing the kitchen counter, someone sees someone lying on her back on the floor, surrounded by the groceries from a broken bag. Ice cream\",\"Clearing the kitchen counter, someone sees someone lying on her back on the floor, surrounded by the groceries from a broken bag.\",Ice cream,gold,drips down from her hand into the towel and its dotting her feet.,squeezes her arm and waves.,spills out of her case.,has melted around her.,3\n657,lsmdc0005_Chinatown-48461,12671,\"Ice cream has melted around her. Her eyes are open, a stream of ants\",Ice cream has melted around her.,\"Her eyes are open, a stream of ants\",gold,spread across her face as she hurries out.,chunks out lemons out onto the plate.,is moving across the ice cream and into her mouth.,fighters on someone's cheeks.,2\n658,lsmdc0005_Chinatown-48461,12667,It's still and empty. Someone,It's still and empty.,Someone,gold,\"sees something down the hall, under the legs of a telephone table.\",\"speaks to the camera, his arm hanging right in front of them.\",\"crosses a threshold, taking it with the handle.\",drives aside of someone.,0\n659,anetv_CNH37tJNzFE,3425,A close up of a gear shaft is seen following by someone opening a trunk and pulling a tire out. The person,A close up of a gear shaft is seen following by someone opening a trunk and pulling a tire out.,The person,gold,puts the tire on the tire and begins using more rowing.,then loops around several pucks on the side while the camera captures her movements.,puts a jack under the car and begins unscrewing the tire and taking it off.,holds up a rag used to scrape from his inner bucket while still speaking to him.,2\n660,anetv_CNH37tJNzFE,3426,The person puts a jack under the car and begins unscrewing the tire and taking it off. The person,The person puts a jack under the car and begins unscrewing the tire and taking it off.,The person,gold,takes the paintbrush and holds the pieces up to show suits off.,continues putting the handlebars on the bike and rides off while still speaking.,puts a new tire on and screws it in place while taking off the jack and putting the hubcap back on.,then grabs the shovel and starts jumping onto the bars of the bike.,2\n661,anetv_FiJi18WpPe8,8841,A girl in a blue and plaid school uniform stands in a school bathroom brushing her teeth and primping in the mirror. The girl,A girl in a blue and plaid school uniform stands in a school bathroom brushing her teeth and primping in the mirror.,The girl,gold,is wearing a pink drier with her left hand and he uses a brush to melt the surface of her brush.,asks the teenage girl to join the natural dancer attempts to rub the back of her head.,\"begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth.\",\"frowns to herself and shows a toddler and then gives her a thumbs up, and then demonstrates how to do the razor.\",2\n662,anetv_FiJi18WpPe8,8842,\"The girl begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth. The girl then\",\"The girl begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth.\",The girl then,gold,pushes the brush along a dog and zooms off to him.,comes at a bar for the closing door and a friend who amused will be being drilled with his coach on the ice.,\"turns towards the bathroom mirror and spits into the bathroom sink, then returns to brushing teeth and facing the camera again.\",begins brushing the girl's teeth.,2\n663,anetv_GG_Bi89pNlg,8335,A person walks forward to a circle while many people stand around her and watch. The woman,A person walks forward to a circle while many people stand around her and watch.,The woman,gold,spins around and throws the disk while two people measure out her throw.,puts a object around the woman who continues talking to the camera as the camera captures her movements.,continues taking pictures of her mother taking up his picture and looking off into the distance.,gets back on her arms.,0\n664,anetv_GG_Bi89pNlg,9648,One walks to the circle in the center. She,One walks to the circle in the center.,She,gold,dives on top of one metal box.,turns over and focuses in the climbing ropes.,turns around and walks up to them.,\"spins in circles, then lets go of the ball before the others join in to measure the distance.\",3\n665,anetv_GG_Bi89pNlg,9647,Several athletes are gathered inside a fenced area. One,Several athletes are gathered inside a fenced area.,One,gold,walks to the top of a game and talks about the game.,is highly vulnerable in the competition while talking.,walks to the circle in the center.,is also playing the drums.,2\n666,anetv_xlPpP0eVL9A,7907,A woman is talking inside an office. She,A woman is talking inside an office.,She,gold,is shown giving a facial treatment to an older woman.,is laying on a woman's hair with alcohol and weights.,is cleaning a table on a table.,is drinking from a mug.,0\n667,lsmdc3048_LITTLE_FOCKERS-23219,16164,\"In the grass, Arthur faces Jinx, who stares at him. The cat\",\"In the grass, Arthur faces Jinx, who stares at him.\",The cat,gold,stares down at him pergola.,looks back at someone.,flies past his tail.,licks its lips then advances.,3\n668,lsmdc3048_LITTLE_FOCKERS-23219,16166,\"As someone races past him after the cat, someone stops. He\",\"As someone races past him after the cat, someone stops.\",He,gold,stares at the television then tosses the stick aside.,stretches his shoulders back.,holds some brown and white letters to the garden.,jumps into a large swing on his witches stand.,1\n669,lsmdc3048_LITTLE_FOCKERS-23219,16163,\"Meanwhile, someone looks in the shoebox. In the grass, Arthur\",\"Meanwhile, someone looks in the shoebox.\",\"In the grass, Arthur\",gold,is on wind twin.,has two rows of seats.,\"faces jinx, who stares at him.\",emt picks up the flare stick.,2\n670,lsmdc3048_LITTLE_FOCKERS-23219,16161,\"Doubled over, someone kicks his leg back and hits someone with it. Someone\",\"Doubled over, someone kicks his leg back and hits someone with it.\",Someone,gold,collects it from the helipad.,falls in his chair.,goes grab a chair to open it.,hurls someone to a bouncy castle.,3\n671,lsmdc3014_CAPTAIN_AMERICA-5991,12274,\"Lying in a brightly lit hospital room, someone flickers open his eyes. He\",\"Lying in a brightly lit hospital room, someone flickers open his eyes.\",He,gold,brushes his spikes away and leaves.,slides his feet to the floor and sits up.,pulls the door shut behind him.,\"fidgets, now on the toilet and struggling to control himself.\",1\n672,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,412,Looking desperate he turns and faces them. They,Looking desperate he turns and faces them.,They,gold,move and dive in face - down.,walk through a gallery with pedestrians.,find the finished teen wound on their dark head.,stare at him blankly.,3\n673,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,409,He scuttles down the spiral staircase. Someone,He scuttles down the spiral staircase.,Someone,gold,\"turns to him, then storms through the urban rooms of new york.\",throws the pebble through the first.,picks up his rucksack.,\"grabs the shard, grabs him by the collar.\",2\n674,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,425,A Snatcher leaps down in front of him. He,A Snatcher leaps down in front of him.,He,gold,knocks against a glass and handrail heavily on the floor.,recovers and runs on.,\"wiggles, yanks his head close, and now gives someone a kiss.\",knocks him out and drops the spear with a stick.,1\n675,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,421,A Snatcher aims his wand at someone. It,A Snatcher aims his wand at someone.,It,gold,blows out the rain of minas.,grabs him from the back of the boat and hurls him onto a rooftop.,crashes toward the water.,\"extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together.\",3\n676,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,420,\"Someone glances behind, trips and falls. He\",\"Someone glances behind, trips and falls.\",He,gold,knocks over the tea.,towels off the tuxedo.,scrambles to his feet.,\"walks down the street, then loses his balance.\",2\n677,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,424,Someone ducks under a fallen tree. A Snatcher,Someone ducks under a fallen tree.,A Snatcher,gold,has a white string in his hand.,reapplies someone's head which floats into the air.,leaps down in front of him.,climbs out of the other way.,2\n678,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,426,He recovers and runs on. She,He recovers and runs on.,She,gold,\"fires an explosive from her wand, sending a snatcher to the forest floor.\",runs across a squeezing board where people are waiting for him.,kiss off the bench.,lies with a quill.,0\n679,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,417,People throw themselves to the floor. Flashes,People throw themselves to the floor.,Flashes,gold,ricochet off the building as someone runs outside.,merge in the bullpen.,follow the man around to household reload.,wade downward and an elevator pulls him.,0\n680,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,423,A young Snatcher is in close pursuit of someone. Someone,A young Snatcher is in close pursuit of someone.,Someone,gold,\"unharmed, a mist glows brighter.\",\"goes to the window, across the road with extreme relief and pain into someone's face.\",ducks under a fallen tree.,is a president.,2\n681,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,422,\"It extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together. A young Snatcher\",\"It extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together.\",A young Snatcher,gold,leans to him and sticks his braces on the other side frame.,is in close pursuit of someone.,carries in the city streets.,\"comes from his flesh, forcing his daughter to choke him.\",1\n682,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,416,Death eaters hurtle through the sky towards the house. People,Death eaters hurtle through the sky towards the house.,People,gold,gather around the camp.,run through the solid corridor.,look into their cabin.,throw themselves to the floor.,3\n683,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,411,\"They find someone by a window, muttering to himself. He\",\"They find someone by a window, muttering to himself.\",He,gold,rushes to the front door.,puts it into someone's face.,joins snacks on his bed and presses a button.,creeps towards a door and sees a light whiz past.,0\n684,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,415,He fixes his eyes on someone. Death eaters,He fixes his eyes on someone.,Death eaters,gold,sits on a chair.,hurtle through the sky towards the house.,watches two men chatting.,stands in his car.,1\n685,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,419,\"Leaving their bags behind, people follow her. Half a dozen Snatchers\",\"Leaving their bags behind, people follow her.\",Half a dozen Snatchers,gold,\"cycles up on someone, who sits on a sheet of pink trolley.\",have shoulder - length hair.,come out of the cab and locks it with a wry stare.,set off in pursuit.,3\n686,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,418,Flashes ricochet off the building as someone runs outside. Someone,Flashes ricochet off the building as someone runs outside.,Someone,gold,finds someone in his issue office.,opens a path podium with a body and put his boys down.,witnesses storm bullets on colored asphalt in the opposite area.,is hit and falls to the ground.,3\n687,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,428,Another appears in front of her. She,Another appears in front of her.,She,gold,walks back to his playing several rows of drums and speaking while striding away.,turns and aims her wand at someone.,is getting out in the bathroom.,raises her hand and hauls out a line.,1\n688,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,427,\"She fires an explosive from her wand, sending a Snatcher to the forest floor. Another\",\"She fires an explosive from her wand, sending a Snatcher to the forest floor.\",Another,gold,pours a shopping bag which is filled with sand.,appears in front of her.,\"fight again and move through the canvas, legs in front of someone.\",\"taking a flame, someone walks up to the grimhold.\",1\n689,anetv_vgXU0u-rN9c,19353,A man is standing behind a bar with several bottles. He,A man is standing behind a bar with several bottles.,He,gold,adds one ingredient at a time to a glass.,sprays with liquor and other ingredients on the table.,begins to use his tools to spray a metal container cover.,pours alcohol out of a glass of water.,0\n690,anetv_vgXU0u-rN9c,18318,An alcohol commercial exhibits a waiter preparing mixed drinks at a portable bar at a beach party. A bartender,An alcohol commercial exhibits a waiter preparing mixed drinks at a portable bar at a beach party.,A bartender,gold,prepares a mixed drink at a bar using a tumbler and lemon wedge.,appears while he gathers liquor and rinses at a table without being a sour and pleased customer.,talks to the camera while holding up a machine.,holds a cotton ball with a compact of baking water and hits the other glass.,0\n691,anetv_vgXU0u-rN9c,18320,\"The camera pans out and one can now see that the man is wearing the bar platform around his neck, and that the bar is portable. People\",\"The camera pans out and one can now see that the man is wearing the bar platform around his neck, and that the bar is portable.\",People,gold,barbell sits up even until it seems candy whose manner is wrong.,is talking to the camera and takes a other hand and stands on the boy's knee and the man lifts it forward successfully.,'s is working for a little bit.,surround him dancing and smiling at a beach party.,3\n692,anetv_vgXU0u-rN9c,18319,A bartender prepares a mixed drink at a bar using a tumbler and lemon wedge. The camera pans out and one,A bartender prepares a mixed drink at a bar using a tumbler and lemon wedge.,The camera pans out and one,gold,takes a drink from a pot of ice and begins to drink it.,\"can now see that the man is wearing the bar platform around his neck, and that the bar is portable.\",pushes a liquor flask and presents the rails of his arm and tastes the drink.,of the ingredients mixes and takes a sip.,1\n693,anetv_4r0qYLCucEI,13961,He takes the rubber tire and sprays it with a liquid. Then he,He takes the rubber tire and sprays it with a liquid.,Then he,gold,fits the inner rim of the wheel into the tire.,adds the spray on the board to show how it can be.,replaces the tire over the roof.,\"smokes his lighter, while he is rubbing it too.\",0\n694,anetv_4r0qYLCucEI,13959,A man dressed inn a black shirt and camouflage print shorts is demonstrating how to fix the rubber tires on a car wheel rim. He,A man dressed inn a black shirt and camouflage print shorts is demonstrating how to fix the rubber tires on a car wheel rim.,He,gold,places a bike out onto the bicycle and pulls into a driveway.,shows all the tools that are required to do the process.,types and uses the tires to dance with the customers.,welds both sides of the bike paper with a wooden stick.,1\n695,anetv_4r0qYLCucEI,13962,Then he fits the inner rim of the wheel into the tire. He,Then he fits the inner rim of the wheel into the tire.,He,gold,put a new tire on and releases the jump and turns it to finish the rest.,uses a mallet to secure it in tightly.,flips off the bike and grills the bike.,is placed over putting it.,1\n696,anetv_4r0qYLCucEI,13963,Then he uses a torque wrench to tighten the screws further. He,Then he uses a torque wrench to tighten the screws further.,He,gold,steps out to show a somersault.,fills in air and checks the tire pressure.,is shown walking up in a circle on the stilts.,uses a lever up to force his left lapel of iron tire to pieces.,1\n697,anetv_4r0qYLCucEI,13960,He shows all the tools that are required to do the process. He,He shows all the tools that are required to do the process.,He,gold,can not go after gas he is using the proper way to apply this evenly.,sits with his friend sitting on a bench at the end and stares at his sneakers.,takes the rubber tire and sprays it with a liquid.,is in pretty careful equipment going across the table.,2\n698,lsmdc3090_YOUNG_ADULT-44052,3174,Someone sprinkles salt onto the side of someone's hand. They each,Someone sprinkles salt onto the side of someone's hand.,They each,gold,kneel at their raft.,make a huge sandwich.,lick the salt off their own hands then drink the tequila shots.,\"go for one last look, then uncurls a second sack.\",2\n699,lsmdc3090_YOUNG_ADULT-44052,3175,They each lick the salt off their own hands then drink the tequila shots. Someone,They each lick the salt off their own hands then drink the tequila shots.,Someone,gold,lays stiffly joking with her hand.,laughs and walking away.,\"turns and round, slowly moves back to a part of the bookshelf and leans close to the killer.\",works at a nearby table.,3\n700,anetv_539ByIcbUPs,3833,\"She places the ice into a glass and adds the lemonade. Lastly, she\",She places the ice into a glass and adds the lemonade.,\"Lastly, she\",gold,adds the juice into the container and pours sugar into it and breaks the glass mixture onto the table.,pours the spoon out to the cup and fills a hole in water.,adds sugar to the dough while finally insert out the lights.,takes a sip of the lemonade she just made.,3\n701,anetv_539ByIcbUPs,3822,A woman speaks to the camera. Many lemons,A woman speaks to the camera.,Many lemons,gold,are seen standing on a table mixing more ingredients.,are shown on stage.,fall onto a counter.,are shown in a boat.,2\n702,anetv_539ByIcbUPs,3830,She pours boiling water into the bowl with brown sugar in it. She,She pours boiling water into the bowl with brown sugar in it.,She,gold,finish cutting the ingredients and mix it together in a hot baking pan.,pours the pasta into the shaker.,s pours the watered brown sugar into the pitcher and stirs.,swirls in sugar into a bowl while jerking the omelette.,2\n703,anetv_539ByIcbUPs,3824,The woman grabs a wooden bowl and pours brown sugar into it. She,The woman grabs a wooden bowl and pours brown sugar into it.,She,gold,grabs a lemon and rubs brown sugar all over the lemon.,pours it into the sink as it sets onto the plate.,lays two more cheese on the shredded bread.,pours it onto the table and pours it into the bowl.,0\n704,anetv_539ByIcbUPs,3831,She s pours the watered brown sugar into the pitcher and stirs. She,She s pours the watered brown sugar into the pitcher and stirs.,She,gold,is with a title filled with a same batch of vanilla and mixing and sugar.,\"pours the spoon into a shaker, grabs the shaker and adds it to the counter.\",she hits the ice in the stick and sweeping it around the water.,breaks ice cubes by hitting them with a spoon.,3\n705,anetv_539ByIcbUPs,3826,\"She proceeds to rub two lemons onto the counter. With a knife, she\",She proceeds to rub two lemons onto the counter.,\"With a knife, she\",gold,cuts a lemon in half.,applies shredded polish in the corner of her eye.,tosses it aside.,puts the napkin on top of the sandwich.,0\n706,anetv_539ByIcbUPs,3828,She squeezes lemon juice into a bowl. She,She squeezes lemon juice into a bowl.,She,gold,stirs the powder in a shaker.,adds coats and sugar into a juicer.,picks up a juice box.,pours the squeezed lemon juice into a pitcher.,3\n707,anetv_539ByIcbUPs,3832,She breaks ice cubes by hitting them with a spoon. She,She breaks ice cubes by hitting them with a spoon.,She,gold,drives one finger up liquors into the cup and spits it out.,is a small half - eaten cake.,places the ice into a glass and adds the lemonade.,candies down on the floor.,2\n708,anetv_539ByIcbUPs,3827,\"With a knife, she cuts a lemon in half. She\",\"With a knife, she cuts a lemon in half.\",She,gold,\"shifts, then lifts her brow and blinks.\",squeezes lemon juice into a bowl.,slices through a bowl of lettuce.,places the knife in the oven and advances.,1\n709,anetv_539ByIcbUPs,3823,Many lemons fall onto a counter. The woman,Many lemons fall onto a counter.,The woman,gold,holds a sponge to turn the molder of ingredients together.,pours syrup into a fruit filled with water.,grabs a wooden bowl and pours brown sugar into it.,scoops a raw vanilla egg into the plate and tilts it forward.,2\n710,anetv_539ByIcbUPs,3829,She pours the squeezed lemon juice into a pitcher. She,She pours the squeezed lemon juice into a pitcher.,She,gold,pours more deeply into a glass.,takes out the layers quizzically and pours the contents into a cup.,finishes the drink and hands it to the vet.,pours boiling water into the bowl with brown sugar in it.,3\n711,lsmdc1020_Crazy_Stupid_Love-81483,17169,\"He surveys it, studying the bar and various men and women chatting and flirting with one another. Wet from the rain, he\",\"He surveys it, studying the bar and various men and women chatting and flirting with one another.\",\"Wet from the rain, he\",gold,turns to the mirror again.,leaves the bar to take in her drink.,steps further into the bar.,holds his briefcase under her arm.,2\n712,lsmdc1020_Crazy_Stupid_Love-81483,17170,\"Wet from the rain, he steps further into the bar. In his bedroom, someone\",\"Wet from the rain, he steps further into the bar.\",\"In his bedroom, someone\",gold,sits at the head of the couch then opens the door and looks away from someone.,\"leans over someone, who lies back on the bed.\",steps through the rain as water passes above the spacious room.,shuts his legs and sneaks out to reach a hallway where someone enters.,1\n713,lsmdc1020_Crazy_Stupid_Love-81483,17167,\"Clearly hypnotized by his move and his good looks, she forces herself to take a step back. Someone\",\"Clearly hypnotized by his move and his good looks, she forces herself to take a step back.\",Someone,gold,has stopped the prison agents working.,hurries into the bar.,\"bites her lower lip, staring down coyly.\",goes to the far door.,1\n714,lsmdc1020_Crazy_Stupid_Love-81483,17163,\"Then she lifts them up. Slowly, he\",Then she lifts them up.,\"Slowly, he\",gold,flips it under his arm.,takes the paper and spits it.,purses his lips then listens gravely.,\"spins around, then stops.\",3\n715,lsmdc1020_Crazy_Stupid_Love-81483,17168,Someone hurries into the bar. He,Someone hurries into the bar.,He,gold,takes out his earpiece.,takes off his glasses and puts it to someone's mouth.,\"surveys it, studying the bar and various men and women chatting and flirting with one another.\",\"glances at someone, who smiles soberly.\",2\n716,lsmdc1020_Crazy_Stupid_Love-81483,17164,He lets her fall into his arms so she is pressed up against his body. He,He lets her fall into his arms so she is pressed up against his body.,He,gold,\", someone comes around a desk.\",\", a little someone pulling toward him and she rubs her chest.\",lets her slide gently down until her feet touch the floor.,flicks his arms.,2\n717,lsmdc1020_Crazy_Stupid_Love-81483,17165,He lets her slide gently down until her feet touch the floor. He,He lets her slide gently down until her feet touch the floor.,He,gold,\"lets her wet hair over the top of her head, mouths, and does a double take.\",presses his forehead against hers.,unrolls from a safe.,straightens the book's invitation.,1\n718,lsmdc1020_Crazy_Stupid_Love-81483,17166,\"He presses his forehead against hers. Clearly hypnotized by his move and his good looks, she\",He presses his forehead against hers.,\"Clearly hypnotized by his move and his good looks, she\",gold,\"continues to stare straight into space to see herself, golden, new etcetera and among which people flash for her.\",forces herself to take a step back.,turns to face the center of the room and looks from the door.,\"circles the instrument, raising her head too close.\",1\n719,anetv_P1Ve5WrfTb8,14382,A boy in blue does an extraordinary flip in the air after catching the ball and lands. He,A boy in blue does an extraordinary flip in the air after catching the ball and lands.,He,gold,throws the ball back at the other kid after landing.,kicks his legs out of the frame.,continues to try to hit the ball on the wall.,gathers the decorations using a toy bat.,0\n720,anetv_P1Ve5WrfTb8,14383,He throws the ball back at the other kid after landing. They,He throws the ball back at the other kid after landing.,They,gold,get out of the waiting limo.,are being watched by a group of kids standing behind them.,fly out of the arena opposite them.,fly from the wall again.,1\n721,anetv_Z0eBz6QsI-c,5752,A small group of men are seen wandering around a close room hitting a ball around. The men,A small group of men are seen wandering around a close room hitting a ball around.,The men,gold,walk around the room holding tennis rackets and hitting a ball.,play playing balls and hitting a ball on another.,walk up and down the field while others watch on the side while the kids continue to play.,continue playing until the people grab arms up as well as speaking to one another.,0\n722,anetv_Z0eBz6QsI-c,16720,Four men are in a racquetball court walking around. the four men,Four men are in a racquetball court walking around.,the four men,gold,hammer the ball to the referee to the left and they hit each other.,shake hands and end on a mat wearing boxing shoes.,have prepared to perform a game in the court before running out.,stop walking as one man serves the ball.,3\n723,anetv_Z0eBz6QsI-c,5753,The men walk around the room holding tennis rackets and hitting a ball. The men,The men walk around the room holding tennis rackets and hitting a ball.,The men,gold,talk to each other again about the game.,continue throwing after one another after another hitting the ball.,continue walking around the room and hitting the ball.,push the ball back and fourth against one another.,2\n724,anetv_WdX_4wwtkGg,19301,A man wearing a hat is seen holding up a harmonica and begins playing with his hands. He,A man wearing a hat is seen holding up a harmonica and begins playing with his hands.,He,gold,slowly dances himself together and continues to talk to the camera.,continues playing the instrument to the camera and ends with him putting the instrument down then holding it up again.,moves the object all around the room and holds himself up.,continues to sit around the stage and ends by bending across the stage and looks back again and smiles to the camera.,1\n725,lsmdc1062_Day_the_Earth_stood_still-100943,3185,\"As the agent watches, the window glass is attacked. A massive jet of flame\",\"As the agent watches, the window glass is attacked.\",A massive jet of flame,gold,roars up a chamber.,appears on the tinted silver of steel.,bounces close to rocks and sinks.,approaches a lit club.,0\n726,lsmdc1062_Day_the_Earth_stood_still-100943,3189,But it rose inexorably down the hill side towards them. Men,But it rose inexorably down the hill side towards them.,Men,gold,\"in through the obstacle in the water, people crazily in the tunnel as someone runs down a steep track.\",are seated on a dining table and campfire.,in the sprinkled back orange singing listens as they march down the street together.,start to run as the cloud reaches them.,3\n727,lsmdc1062_Day_the_Earth_stood_still-100943,3188,Vast pressure is straining the massive steel doors of the facility. They burst open and one,Vast pressure is straining the massive steel doors of the facility.,They burst open and one,gold,climbs into the low boat.,is hurled high in the air.,fall into a barbershop.,avail peeks through his flowing eyelashes.,1\n728,lsmdc1062_Day_the_Earth_stood_still-100943,3187,Huge array of men in vehicles has assembled nearby. Vast pressure,Huge array of men in vehicles has assembled nearby.,Vast pressure,gold,is being prepared on various shelves.,moves a cigarette in front of someone.,is straining the massive steel doors of the facility.,is laid out on a small spf painted in veins.,2\n729,lsmdc1062_Day_the_Earth_stood_still-100943,3186,The agent stares in fear as gort raises his massive hands to show he is free. Gort,The agent stares in fear as gort raises his massive hands to show he is free.,Gort,gold,takes a single drag and plods to a manner of oak trees near new york.,takes the gold sword from his pocket.,dissolves becoming a cloud of bugs which fills the flash chamber.,remains on the cot with his gloved hands.,2\n730,lsmdc1062_Day_the_Earth_stood_still-100943,3184,\"The man's suit, air canister, and body are being eaten away. The massive steel bands holding gort\",\"The man's suit, air canister, and body are being eaten away.\",The massive steel bands holding gort,gold,are streaming away as a ringed owl signs into a delivered.,are also being eaten away.,\"continues the violent attack, revealing someone as a hooded figure steps down slowly on the sidelines.\",unloaded into desks and cover - barrels and filing them into the cabin.,1\n731,lsmdc3029_GREEN_ZONE-13423,13559,A white suv charges up the street then breaks by the man in the taupe suit. The bystander,A white suv charges up the street then breaks by the man in the taupe suit.,The bystander,gold,tries to get the supervising match to fight and shakes it again.,watches as raindrops fall from the rocks in the armored car and pant legs rise out from the ground.,gets in his dusty car.,\"holds the boy up to him, aiming his gun gun.\",2\n732,lsmdc3029_GREEN_ZONE-13423,13560,An older bald gentleman respectfully kisses someone cheeks. Another older man,An older bald gentleman respectfully kisses someone cheeks.,Another older man,gold,rubs the mustache and widens someone.,surround the other man hair and sits up at a desk.,offers him the same greeting.,\"steps forward, accompanied by his fellow students as well.\",2\n733,lsmdc3029_GREEN_ZONE-13423,13558,\"Someone coldly shuffles his paperwork. Now in a quiet residential neighborhood, an Iraqi man in a taupe suit\",Someone coldly shuffles his paperwork.,\"Now in a quiet residential neighborhood, an Iraqi man in a taupe suit\",gold,patrols the sidewalk with an assault rifle.,walks back against a truck.,approaches a pair of exposed glass frame.,approaches a wooden timer in the corner.,0\n734,anetv_dsYLNeumBig,3219,She is using a small vacuum cleaner. She,She is using a small vacuum cleaner.,She,gold,starts to vacuum the vacuum with a brush.,soaks the vacuum using the mop.,demonstrates how to use the vacuum as she talks.,sizes up her clothes and then walks up a wooden tier.,2\n735,anetv_nTsXn3oHf_8,17810,A small boy plays on a stair stepper in a store. We,A small boy plays on a stair stepper in a store.,We,gold,of little foreign player throws balls to a sand space in front of them and then come back.,\"goes on, are shown riding on some of the rafts.\",back up and see the boys legs.,the young man is sitting in the front canoe.,2\n736,anetv_nTsXn3oHf_8,17811,We back up and see the boys legs. The camera,We back up and see the boys legs.,The camera,gold,returns to the next person knitting.,changes back to the angle of the moves as the second skiier goes from between the bars.,shows the two dogs tied up to her lap.,zooms in on the boy again.,3\n737,anetv_fVBXRUWEyoA,19255,A woman sits on a couch and clips the front and back paws of an orange and a black and white cat as they sit in her lap. An orange cat,A woman sits on a couch and clips the front and back paws of an orange and a black and white cat as they sit in her lap.,An orange cat,gold,is sitting on the ground next to her knitting.,stands on a couch and sniffs the cushions.,is seen sitting at its far end and mounted the front paws.,begins recording the woman about how it's easy to paint.,1\n738,lsmdc0050_Indiana_Jones_and_the_last_crusade-70551,15057,\"People's party - - consisting of a supply truck, tank and various other vehicles - - all moving along through the ramble of this box canyon. People\",\"People's party - - consisting of a supply truck, tank and various other vehicles - - all moving along through the ramble of this box canyon.\",People,gold,travel in the open car.,\"doors leap the ends of the roof, which leads to the ss lieutenant.\",checks another rule control which someone reads into it without to be any audio.,load their boards up.,0\n739,lsmdc1020_Crazy_Stupid_Love-81504,12378,\"In the garage, someone sits in the massage chair, wrapped in a sheet. They\",\"In the garage, someone sits in the massage chair, wrapped in a sheet.\",They,gold,are standing facing the girls.,lie on the bed laughing.,pull on the step.,gives someone the bottle an down again.,1\n740,lsmdc0011_Gandhi-53096,13357,\"We see surly knots of belligerent rowdies, mostly young, but not all, hanging on the fringes as we move over the heads of the mass of listening people to a platform where someone speaks. People and others\",\"We see surly knots of belligerent rowdies, mostly young, but not all, hanging on the fringes as we move over the heads of the mass of listening people to a platform where someone speaks.\",People and others,gold,\"run in and out all the snow, each noticing a twisted rail car.\",sit on the floor behind him.,\"try to stand, surprise for the americans tend to their table.\",\"come apart, where two of them are arriving with cleaning supplies.\",1\n741,anetv_GldxuTsExZM,9000,He scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side. He,He scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side.,He,gold,cuts around the marker lines and puts a candle inside to make a jack o lantern.,puts the screwdriver onto the jack and adds ice from tissue to a hard attached.,zooms the hedge on a stump and begins cutting the grass with a stick.,continues pushing the painting and ends by smiling to the camera.,0\n742,anetv_GldxuTsExZM,8998,A person holding a moose moves the puppet and leads into someone opening a box. The person,A person holding a moose moves the puppet and leads into someone opening a box.,The person,gold,continues smooth paint and paints up.,pulls pumpkins out of the box and cuts a circle around the top.,\"walks over the tire, and puts a piece of wooden around the floor.\",takes out several equipment and hops off the roof.,1\n743,anetv_GldxuTsExZM,8999,The person pulls pumpkins out of the box and cuts a circle around the top. He,The person pulls pumpkins out of the box and cuts a circle around the top.,He,gold,scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side.,captures the tools and shows a more near out of the area.,goes in the dresser.,get the halves and sticks them into a hole.,0\n744,anetv_dVcnkTR5EBE,11450,A man wearing a blue sweater walks from a warehouse to the camera. The man,A man wearing a blue sweater walks from a warehouse to the camera.,The man,gold,dives and knocks the man over and along the roof.,uses a very long razor to shave his leg.,explains how to use an remove ice from a car windshield.,uses a paintball gun on a table to hit him.,2\n745,anetv_dVcnkTR5EBE,11451,The man explains how to use an remove ice from a car windshield. The man,The man explains how to use an remove ice from a car windshield.,The man,gold,paints the exterior of the shop device.,sticks the jack ready.,watches the woman strip close to a young piece of debris.,brushes snow from the windshield.,3\n746,anetv_dVcnkTR5EBE,2503,\"He shows a water bottle he has along with a brush, and uses the brush to remove snow from the dash window of a car and the water to remove any excess snow left on the windshield. Once finished, he\",\"He shows a water bottle he has along with a brush, and uses the brush to remove snow from the dash window of a car and the water to remove any excess snow left on the windshield.\",\"Once finished, he\",gold,\"turns, and proceeds to make the show two times for a better view of the maintenance.\",stops and talks to the camera again.,picks the board down and positions the contents for the camera.,speaks to the camera.,3\n747,anetv_dVcnkTR5EBE,11452,The man brushes snow from the windshield. The man,The man brushes snow from the windshield.,The man,gold,exits the vehicle using a hose to rub to the ski.,pours water directly onto the windshield that has ice on it.,moves back and then switches to another light close.,walks out of the tile.,1\n748,anetv_CUJJViubZ9c,4248,Wrestlers are fighting in a ring. A man,Wrestlers are fighting in a ring.,A man,gold,is standing in a ring.,is getting ready to start bullfighting.,is picked up and thrown down by other men.,throws the ball in a field and the men start wrestling with each other.,2\n749,anetv_CUJJViubZ9c,4249,A man is picked up and thrown down by other men. A man,A man is picked up and thrown down by other men.,A man,gold,is seen falling off onto the side of a track and drops a rope behind him.,pulls a shirt out of a garage.,falls on a table and breaks it.,is walking around the table talking to the camera.,2\n750,anetv_x2uByejBIiY,9972,She fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts. She,She fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts.,She,gold,begins giving some noodles and then continues talking about how to make a cocoa dish.,mixes the cooking ingredients together and cutting into the cheese.,makes the rest of the pasta out of the oven as well as speaking and gobs out the cookies.,mixes them all together and shows off several plates in the end.,3\n751,anetv_x2uByejBIiY,9971,A woman is seen holding ingredients in their hands while speaking to the camera and boiling water. She,A woman is seen holding ingredients in their hands while speaking to the camera and boiling water.,She,gold,dips the limes into a bowl before beginning to put the potatoes into a cup and snatches by a large piece of food.,fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts.,is seen looking to the camera and working out in a room.,continues walking into a room followed by washing skis and others watch them.,1\n752,anetv_3vVhq-v5-wM,14521,A person is seen grabbing a bowling ball and winding his arm while other people bowl around him. The man,A person is seen grabbing a bowling ball and winding his arm while other people bowl around him.,The man,gold,picks the ball up with his hands and continues drinking up and kicking it around.,continues punching the object with the tennis mallet.,throws the ball and hits several pins while running back and cheering to the camera.,continues throwing the other down and then gets hit by the ball.,2\n753,lsmdc3046_LARRY_CROWNE-21453,2739,\"The instructor gazes out at their expectant faces, then gives an indifferent shrug. She\",\"The instructor gazes out at their expectant faces, then gives an indifferent shrug.\",She,gold,looks into her sister's anguished eyes.,writes on a chalkboard in front of them.,sets her hat tightly on a spear.,holds it up to greet her as she watches.,1\n754,lsmdc3046_LARRY_CROWNE-21453,2737,She strides to the front of the class. He,She strides to the front of the class.,He,gold,steps back to foot behind his desk and joins his officer.,watches from a front desk off to one side.,grins politely as his wife returns with a bouquet.,passes over and pulls someone aside.,1\n755,lsmdc3046_LARRY_CROWNE-21453,2735,Someone bursts in through another door. The students,Someone bursts in through another door.,The students,gold,haul someone towards a customer.,follow his gaze to their professor.,stop and listen to a policeman squatting.,face the water tower.,1\n756,lsmdc3046_LARRY_CROWNE-21453,2738,He watches from a front desk off to one side. The instructor,He watches from a front desk off to one side.,The instructor,gold,is now seated on the davenport.,\"gazes out at their expectant faces, then gives an indifferent shrug.\",sets the drummers violin.,watches him walk into a pose.,1\n757,lsmdc3046_LARRY_CROWNE-21453,2734,The students stare at her. Someone,The students stare at her.,Someone,gold,lowers her phone and listens at the women.,bursts in through another door.,\"smiles at someone, who turns on her side, facing up.\",snuggles up beside the bed.,1\n758,lsmdc3046_LARRY_CROWNE-21453,2733,She enters and looks around. She,She enters and looks around.,She,gold,picks up her wand and ignites a chicken.,sets a pedestal bag over towel and hurries out.,counts the meager number of students.,leaps from her table and picks up a alcohol bottle.,2\n759,lsmdc3046_LARRY_CROWNE-21453,2736,The students follow his gaze to their professor. She,The students follow his gaze to their professor.,She,gold,leans forward and hands a can of flowers to her own.,leans forward to remove his mustache.,ducks as behind him reading.,strides to the front of the class.,3\n760,lsmdc3046_LARRY_CROWNE-21453,2732,Someone eyes his belted khakis. She,Someone eyes his belted khakis.,She,gold,crouches and puts on his pants.,sits up and digs in someone's pocket.,enters and looks around.,\"averts his eyes, then spots someone in his backpack.\",2\n761,lsmdc3055_PROMETHEUS-26944,3892,\"As she gets down from the table, she falls briefly, clutching her abdomen. Someone\",\"As she gets down from the table, she falls briefly, clutching her abdomen.\",Someone,gold,rolls over his legs.,offers someone a knife.,listens down with a look.,races from the room but almost immediately collapses against the wall in pain.,3\n762,lsmdc3055_PROMETHEUS-26944,3910,\"Someone scoots down, flattening her head to one side it passes under the flailing alien. Reaching the end of the table she quickly\",\"Someone scoots down, flattening her head to one side it passes under the flailing alien.\",Reaching the end of the table she quickly,gold,releases the dragon and forces it upward.,\"grabs the diary, overtakes it, then grabs out a lamp.\",produces dozens of victims's children.,rushes around to the outer control panel.,3\n763,lsmdc3055_PROMETHEUS-26944,3894,\"Someone quickly removes her white hospital gown, revealing her bandage - like underwear, and grabs two auto - injectors. She\",\"Someone quickly removes her white hospital gown, revealing her bandage - like underwear, and grabs two auto - injectors.\",She,gold,\"takes off her shoe, picks it up and looks at the floor.\",notices the big check on the monitor.,holds one in her mouth as she stabs her thigh with the other.,is floating on a weakly glass chair.,2\n764,lsmdc3055_PROMETHEUS-26944,3905,\"Her head relaxes back, then tenses again as the forceps dip into her open abdomen. The forceps\",\"Her head relaxes back, then tenses again as the forceps dip into her open abdomen.\",The forceps,gold,slowly pull the creature out.,\"attacks someone's former, incredulous someone.\",continues to explode in circles with the foliage.,lifts her leg up as she trims her hair.,0\n765,lsmdc3055_PROMETHEUS-26944,3887,Taking a few deep breaths she drifts off to sleep. She,Taking a few deep breaths she drifts off to sleep.,She,gold,lies asleep on her side.,gets in and watches him fall.,looks at someone's foot clock.,moves through the living room and down a hallway.,0\n766,lsmdc3055_PROMETHEUS-26944,3888,She lies asleep on her side. A hand in an oversized yellow glove,She lies asleep on her side.,A hand in an oversized yellow glove,gold,pushes an infant against her red hand.,is leaning against the door her way.,gives her cheek a few brisk taps.,talks on the cigarette screen.,2\n767,lsmdc3055_PROMETHEUS-26944,3897,\"As the two bottom sections of the lid come together like a set of doors, the upper section lowers down over the patient. As the med pod lowers back down, someone\",\"As the two bottom sections of the lid come together like a set of doors, the upper section lowers down over the patient.\",\"As the med pod lowers back down, someone\",gold,\"'s in the flow of carriage, having picked up the carpet but does n't manage it, then plays it out of it with\",lifts three treads overhead.,scoots herself into position.,\"swims up the shaft of the cropped - haired zebra, hair out through it while binoculars.\",2\n768,lsmdc3055_PROMETHEUS-26944,3889,\"As a crewman in a containment suit approaches, someone whacks him with a metal object, then heads forward. As the crewman forces her down, someone\",\"As a crewman in a containment suit approaches, someone whacks him with a metal object, then heads forward.\",\"As the crewman forces her down, someone\",gold,presses up on the plastic covering his face.,hooks her feet behind her back.,crashes her against the railing.,bows for the girls.,0\n769,lsmdc3055_PROMETHEUS-26944,3891,\"She kicks him off of her. As she gets down from the table, she\",She kicks him off of her.,\"As she gets down from the table, she\",gold,dips to take off her helmet.,\"falls briefly, clutching her abdomen.\",slips him away and flings them into a cup.,walks into a wooden hut and tosses through the field.,1\n770,lsmdc3055_PROMETHEUS-26944,3900,A robotic arm equipped for surgical tools sprays anesthetics across her stomach below her belly button. One of the arms,A robotic arm equipped for surgical tools sprays anesthetics across her stomach below her belly button.,One of the arms,gold,holds a hand gestures to the man.,performs a precision cut with a laser.,lifts to their knees in slow sections and the thanks do the moves.,drop unsteadily from the floor.,1\n771,lsmdc3055_PROMETHEUS-26944,3890,\"As the crewman forces her down, someone presses up on the plastic covering his face. She\",\"As the crewman forces her down, someone presses up on the plastic covering his face.\",She,gold,walks out of the mastermind's study and walks out.,stands on her toes and grips the wheel.,punches someone in the face and tucks his lips behind his back.,kicks him off of her.,3\n772,lsmdc3055_PROMETHEUS-26944,3903,\"Someone's mouth opens wide in a pained someone. As they lower toward her, someone\",Someone's mouth opens wide in a pained someone.,\"As they lower toward her, someone\",gold,looks to someone first then looks on with a welcoming look.,\"returns for the door, looks at her and sighs.\",and someone step inside and they touch the ground.,gives herself another injection.,3\n773,lsmdc3055_PROMETHEUS-26944,3882,Her mouth opens wide and she doubles over. Someone,Her mouth opens wide and she doubles over.,Someone,gold,runs to the bar where a penguin approaches her and knocks.,injects her in the back of the shoulder.,picks up a card of money displaying fallen newspaper and shoves the clerk into the drawer.,\"presses his mouth to his right hand, wagging his back, as they enter.\",1\n774,lsmdc3055_PROMETHEUS-26944,3893,Someone arrives in the room housing Vickers' med pod. She,Someone arrives in the room housing Vickers' med pod.,She,gold,stops and briefly muted her stare.,crashes through a hole in the floor.,uses its touchscreen panel.,lets out a peace sign.,2\n775,lsmdc3055_PROMETHEUS-26944,3911,\"The doors close back up, trapping the baby alien inside, and a white mist fills the chamber. Someone\",\"The doors close back up, trapping the baby alien inside, and a white mist fills the chamber.\",Someone,gold,sinks to her knees and catches her breath.,stretches close and display her crotch.,frees a goblet out of her eye.,turns off the lamp on a thick rug.,0\n776,lsmdc3055_PROMETHEUS-26944,3909,Flailing its tentacles it tries to free itself from the forceps' grip. The med pot starts to tilt upright and someone,Flailing its tentacles it tries to free itself from the forceps' grip.,The med pot starts to tilt upright and someone,gold,lifts it up with a cloth.,ducks into the dark.,slams a button beside her.,careens forward in any flash.,2\n777,lsmdc3055_PROMETHEUS-26944,3884,\"He lifts her limp body back on to the table. As someone shifts to lie on her back, someone\",He lifts her limp body back on to the table.,\"As someone shifts to lie on her back, someone\",gold,dozes on a choke brace.,politely opens the card.,runs up to her.,gazes down at her.,3\n778,lsmdc3055_PROMETHEUS-26944,3904,\"As they lower toward her, someone gives herself another injection. Her head\",\"As they lower toward her, someone gives herself another injection.\",Her head,gold,\"relaxes back, then tenses again as the forceps dip into her open abdomen.\",peers back and forth between the water.,breaks from a choke hold.,offers a camcorder as she glances across at the road.,0\n779,lsmdc3055_PROMETHEUS-26944,3899,\"She makes a few selections from a touch screen, projected over her head. As her stomach bulges up normally an image of the alien fetus\",\"She makes a few selections from a touch screen, projected over her head.\",As her stomach bulges up normally an image of the alien fetus,gold,appears on the screen before her.,commands the overhead aircraft.,frozen with foam about the wall history.,\"bears her chest, tutorial.\",0\n780,lsmdc3055_PROMETHEUS-26944,3881,She scoots off the table. She,She scoots off the table.,She,gold,is now cutting a pair of metal cupcakes.,sleeps with a pillow beneath his chin.,taps buttons on the exam table's panel.,sits at the end of the pen.,2\n781,lsmdc3055_PROMETHEUS-26944,3895,She holds one in her mouth as she stabs her thigh with the other. She,She holds one in her mouth as she stabs her thigh with the other.,She,gold,withdraws a gun into the top of someone's head and playfully snuggles someone in.,limps over to the med pod and positions herself on the upright table under a curved scanner.,pours it into the mug glass then puts the contact into her eye.,rips it off and wipes it with a towel.,1\n782,lsmdc3055_PROMETHEUS-26944,3885,\"As someone shifts to lie on her back, someone gazes down at her. A tear falls from someone's eye and she\",\"As someone shifts to lie on her back, someone gazes down at her.\",A tear falls from someone's eye and she,gold,shakes her head at someone.,shakes her head in confusion.,leans back against it.,falls back into her seat and puts out the bag.,1\n783,lsmdc3055_PROMETHEUS-26944,3883,Someone injects her in the back of the shoulder. He,Someone injects her in the back of the shoulder.,He,gold,gently strokes behind her.,stabs her into his chest and smiles to herself.,brings hers down and caresses her arm.,lifts her limp body back on to the table.,3\n784,lsmdc3055_PROMETHEUS-26944,3898,\"As the med pod lowers back down, someone scoots herself into position. She\",\"As the med pod lowers back down, someone scoots herself into position.\",She,gold,finds himself staring ahead with a furrowed brow as she leaves his side.,\"makes a few selections from a touch screen, projected over her head.\",slaps the back of someone's neck.,\"lifts her left hand, over her chin, and dips her silver through her hair.\",1\n785,lsmdc3055_PROMETHEUS-26944,3908,Above her the alien baby wriggles more vigorously. Flailing its tentacles it,Above her the alien baby wriggles more vigorously.,Flailing its tentacles it,gold,smashes the windshield with a fire extinguisher.,grinds the stick and mossy onto someone's tongue.,hefts itself together while someone crawls beneath.,tries to free itself from the forceps' grip.,3\n786,lsmdc3055_PROMETHEUS-26944,3907,Relaxing a bit someone lifts her head of the table and stares slack - jawed. The sac brakes,Relaxing a bit someone lifts her head of the table and stares slack - jawed.,The sac brakes,gold,are tracking with the scissor.,\"is vain, and dank and staircases go backstage, going down her dealers.\",open splattering her with bloody fluid and revealing the squid - like alien.,show more empty have placed in the foreground.,2\n787,lsmdc3055_PROMETHEUS-26944,3906,The forceps slowly pull the creature out. Relaxing a bit someone lifts her head of the table and,The forceps slowly pull the creature out.,Relaxing a bit someone lifts her head of the table and,gold,runs to the curtained windows.,stares slack - jawed.,\"takes a third stance, then suddenly stunned.\",gently tilts it toward her.,1\n788,lsmdc3055_PROMETHEUS-26944,3896,\"She limps over to the med pod and positions herself on the upright table under a curved scanner. As the two bottom sections of the lid come together like a set of doors, the upper section\",She limps over to the med pod and positions herself on the upright table under a curved scanner.,\"As the two bottom sections of the lid come together like a set of doors, the upper section\",gold,hangs above a thick black coconut.,opens with the rows of ankle bones bare on it.,fills the circuit landing shaft.,lowers down over the patient.,3\n789,lsmdc3055_PROMETHEUS-26944,3901,One of the arms performs a precision cut with a laser. Someone,One of the arms performs a precision cut with a laser.,Someone,gold,proudly's doing a short routine of his routine.,points the pistol at the guard's office.,arches her head way back.,appear to play with a woman in the hair.,2\n790,anetv_E4yf1mz4ij0,10841,An athlete is seen walking into a circle and preparing himself to throw a shot put. The man,An athlete is seen walking into a circle and preparing himself to throw a shot put.,The man,gold,continues running around and throwing another javelin.,throws the object several times after spinning around and several people watching on the sidelines.,then ties a ball away and throws an object off into the distance.,spins his body around in slow motion while continuing to kick the ball.,1\n791,anetv_VRRLOIP6EmA,16618,A group of surfers are riding the waves in the ocean. A large wave,A group of surfers are riding the waves in the ocean.,A large wave,gold,bounces over the water wave.,is running on the waves.,falls under the water.,knocks some of them over.,3\n792,anetv_VRRLOIP6EmA,9657,\"A surfer goes through the waves of an ocean, riding a wave. The wave\",\"A surfer goes through the waves of an ocean, riding a wave.\",The wave,gold,crashes rising water under the trees as he plays.,is shown again jumping over the surface of the water.,drives into the top of a waterfall.,\"crashes over the surfers, knocking them off their boards.\",3\n793,anetv_VRRLOIP6EmA,16619,A large wave knocks some of them over. They,A large wave knocks some of them over.,They,gold,shake and members of the crowd cheer the cheers.,then falls on crashing around a tree.,\"continue surfing, trying to stay on their boards.\",are shown running through the water before a wave flies into the air by a wave of water.,2\n794,anetv_VRRLOIP6EmA,9658,\"The wave crashes over the surfers, knocking them off their boards. One surfer\",\"The wave crashes over the surfers, knocking them off their boards.\",One surfer,gold,slides down between buildings.,scores a high wave as the titanic trails close behind him.,spins the divers in to waves.,manages to stay upright.,3\n795,lsmdc1024_Identity_Thief-82472,9790,\"Later, he drives the beat - up van along a narrow dirt road. In an office, someone\",\"Later, he drives the beat - up van along a narrow dirt road.\",\"In an office, someone\",gold,swigs from a hand pistol.,shuffles down a corridor and gazes into the clean room windows.,peers over a row of lockers.,sits across from people.,3\n796,lsmdc1024_Identity_Thief-82472,9788,Someone stands motionless with his gaze fixed on the wreckage. Someone,Someone stands motionless with his gaze fixed on the wreckage.,Someone,gold,looks at her and softly nods.,\"looks at his desk, unsure for what he sees.\",\"'s face is bruised and bruised, his grip taped all over it.\",dons someone's jacket.,0\n797,lsmdc1018_Body_Of_Lies-80362,18854,A troop carrier drives up. Soldiers,A troop carrier drives up.,Soldiers,gold,lift bodies in body bags from the chopper and load them onto the troop carrier.,\"that he came from impressed, he puts his purse into a bag and rushes at the door.\",groceries on them is turned from the bed.,ride over their trainers.,0\n798,lsmdc1018_Body_Of_Lies-80362,18853,Someone stretches his arms above his head. Pale light,Someone stretches his arms above his head.,Pale light,gold,glows in the windows of the hangar and casts a sheen across the tarmac.,beads on his back chamber.,touches someone's face as someone reaches for another swell.,\"glows across the ocean, then turns to someone, who's sitting in the snitch.\",0\n799,lsmdc1018_Body_Of_Lies-80362,18856,\"Someone walks along past an airport terminal building, talking on his phone. Someone\",\"Someone walks along past an airport terminal building, talking on his phone.\",Someone,gold,dials a button on the front door.,watches from behind the wheel.,turns on the phone.,'s by an suv.,3\n800,lsmdc1018_Body_Of_Lies-80362,18855,Soldiers lift bodies in body bags from the chopper and load them onto the troop carrier. Someone,Soldiers lift bodies in body bags from the chopper and load them onto the troop carrier.,Someone,gold,\"stands wearily in a metal office, then glances at the vehicle wearing a frown as he looks on.\",settles himself on one of the workers as the tarpaulin flies from its roofs and lands on the scaffold.,opens a gift for someone.,\"walks along past an airport terminal building, talking on his phone.\",3\n801,anetv_F-jZv4hqYds,4321,A large group of people are sitting on horses near gated areas. The people,A large group of people are sitting on horses near gated areas.,The people,gold,begin to run around a sandy area.,is happy for a style of a child's head.,pass the dog on the tail and ride off continuously.,are looking around in amazement as one horse riding catches a calf almost instantly.,3\n802,anetv_F-jZv4hqYds,4322,The people are looking around in amazement as one horse riding catches a calf almost instantly. The man ropes of the calf and the crowd,The people are looking around in amazement as one horse riding catches a calf almost instantly.,The man ropes of the calf and the crowd,gold,cheers him on as the announcer gives him his time.,begins to walk preparing to bungee jump.,watches as the men go around the calf as the dog gets back and more shots of the horse pulling man.,stop to watch someone after it.,0\n803,lsmdc0017_Pianist-56244,7054,\"He puts aside the cushion and blanket, then starts to push at the shelves. Slowly, the shelves\",\"He puts aside the cushion and blanket, then starts to push at the shelves.\",\"Slowly, the shelves\",gold,move to reveal a secret compartment.,do not seem to flop over.,\"occupy his size, camped on a dresser he piles them in wet champagne.\",are filled with books and hurtles.,0\n804,lsmdc0017_Pianist-56244,7056,\"He helps someone into the compartment. He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he\",He helps someone into the compartment.,\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he\",gold,gives the bloody hand to the boy and takes him footprints into the bathtub as been leaning on a sleeping boy.,pushes the shelves back into place so that someone is now hidden.,\"puts it down, finding that he is completely drunk, and hops away.\",backs down until the floor and briefs.,1\n805,lsmdc0017_Pianist-56244,7044,\"Someone's ghetto clothes, torn into strips, are being stuffed into it and burned. Someone\",\"Someone's ghetto clothes, torn into strips, are being stuffed into it and burned.\",Someone,gold,smokes in a mood.,\"rushes into the rows of families, close in and out of the chimney.\",shoves the strips of clothes into the stove.,swirls through the crowd.,2\n806,lsmdc0017_Pianist-56244,7060,Someone tries to appear as inconspicuous as possible. The tram,Someone tries to appear as inconspicuous as possible.,The tram,gold,crosses the girls arms.,suddenly drops up to the floor.,rumbles on its way.,recoils as he scrawled notes on the tower.,2\n807,lsmdc0017_Pianist-56244,7047,Someone adds the last strip of clothing. A rickshaw carrying people,Someone adds the last strip of clothing.,A rickshaw carrying people,gold,sit on the grass.,seizes him and helps him from the counter.,covers a man's groin.,travels along the dark streets.,3\n808,lsmdc0017_Pianist-56244,7050,\"The moment it stops the shutters of the store are raised and someone escorts someone to the door, then quickly returns to the rickshaw, which moves off fast. Gebcznyski\",\"The moment it stops the shutters of the store are raised and someone escorts someone to the door, then quickly returns to the rickshaw, which moves off fast.\",Gebcznyski,gold,beckons his daughter around and swishes her around.,flies van for someone to duck through the front door.,\"shakes hands with someone, ushers him in and then pulls down the shutter.\",see a green's map up on a clear portable screen of its red light spreading at them.,2\n809,lsmdc0017_Pianist-56244,7063,Someone leads the way in. Someone,Someone leads the way in.,Someone,gold,\"glances around, goes to the window, looks out.\",leaps down some stairs to a balcony.,spots the brunette haired young someone.,holds a glass stool in front of him.,0\n810,lsmdc0017_Pianist-56244,7061,The tram rumbles on its way. People,The tram rumbles on its way.,People,gold,comes forward and we see someone holding the barrel of his shotgun.,come up the stairs to the landing and to a door.,hold the door open and look at them with amused amazement.,river rises up the raft.,1\n811,lsmdc0017_Pianist-56244,7065,He can see a section of ghetto wall below. Someone,He can see a section of ghetto wall below.,Someone,gold,takes off his helmet and taps a board on a shelf.,comes up behind him.,remains with his back to the wall and looks down.,hustles up behind him.,1\n812,lsmdc0017_Pianist-56244,7045,\"Someone shoves the strips of clothes into the stove. Someone, now wearing someone's suit and clean - shaven,\",Someone shoves the strips of clothes into the stove.,\"Someone, now wearing someone's suit and clean - shaven,\",gold,leads up through the parlor toward the tall white entrance.,enters a front yard.,leads someone through the lobby then seems irritated.,watches the clothes burn while he spoons hot soup into his mouth.,3\n813,lsmdc0017_Pianist-56244,7043,\"Someone lifts himself out of the bath and dries himself. Someone's ghetto clothes, torn into strips,\",Someone lifts himself out of the bath and dries himself.,\"Someone's ghetto clothes, torn into strips,\",gold,tumbles out of the ring.,are being stuffed into it and burned.,are tiny rosy tiled shimmering blue.,\"tied to a cot, opens up.\",1\n814,lsmdc0017_Pianist-56244,7042,Someone holds up a towel. Someone,Someone holds up a towel.,Someone,gold,takes a few bills from her purse and hands them the cash.,keeps off his fur.,works a joystick.,lifts himself out of the bath and dries himself.,3\n815,lsmdc0017_Pianist-56244,7055,\"Slowly, the shelves move to reveal a secret compartment. He\",\"Slowly, the shelves move to reveal a secret compartment.\",He,gold,shoots an arrow at the edge of the passage.,crumples it over onto his stomach.,helps someone into the compartment.,minimizes a backpack that he is wearing.,2\n816,lsmdc0017_Pianist-56244,7068,\"Alone, someone stands, lost for a moment. Then, he\",\"Alone, someone stands, lost for a moment.\",\"Then, he\",gold,puts one hand up on his waist and looks into the lake.,\"repeats the same, before grateful for his drink.\",\"licks his lips, almost to himself.\",takes off his shoe and stuffs the scrap of paper into it.,3\n817,lsmdc0017_Pianist-56244,7057,\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he pushes the shelves back into place so that someone is now hidden. In the cramped space, someone\",\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he pushes the shelves back into place so that someone is now hidden.\",\"In the cramped space, someone\",gold,lies in the back behind him and starts to sob.,is not quite able to stretch full out.,\"slides to his knees along the bottom and looks on, pretending to parry.\",\"forms an emerging of the cobbled courtyard, looking for the fish and mountain scenery.\",1\n818,lsmdc0017_Pianist-56244,7051,\"Someone's store is for sanitary furnishings and supplies: lavatories, basins, baths, taps etc. He leads the way and as he goes he\",\"Someone's store is for sanitary furnishings and supplies: lavatories, basins, baths, taps etc.\",He leads the way and as he goes he,gold,takes his folded hands and hurries behind.,reaches for his mouth to break which he can open.,stands in front of the door for an orchestra.,picks up a cushion from a chair and a blanket.,3\n819,lsmdc0017_Pianist-56244,7048,A rickshaw carrying people travels along the dark streets. The rickshaw,A rickshaw carrying people travels along the dark streets.,The rickshaw,gold,comes to a halt outside a store.,shows a photo on their bridge is in california size.,spins to attack of the city.,cuts a partially made tune from a clothesline before day.,0\n820,lsmdc0017_Pianist-56244,7046,\"Someone, now wearing someone's suit and clean - shaven, watches the clothes burn while he spoons hot soup into his mouth. Someone\",\"Someone, now wearing someone's suit and clean - shaven, watches the clothes burn while he spoons hot soup into his mouth.\",Someone,gold,is gripping a pair of gun gun from a coil.,adds the last strip of clothing.,carries home to a kitchen where someone sits on the porch.,\"sits in a dirty bowl of pickles, someone trying to open the eye.\",1\n821,lsmdc0017_Pianist-56244,7053,Someone leads the may to a particular set of shelves. He,Someone leads the may to a particular set of shelves.,He,gold,\"takes some great effort, pulls his shirt off and puts his arm around her shoulders, sending his side upward.\",manages to get the door.,\"puts aside the cushion and blanket, then starts to push at the shelves.\",puts another piece of paper on the patio.,2\n822,lsmdc0017_Pianist-56244,7066,\"Someone makes for the front door, stops. He\",\"Someone makes for the front door, stops.\",He,gold,looks up at the redhead.,\"can't see anyone, finds his jacket, then shuffles frantically into the bedroom.\",\"hands over a scrap of paper, shakes someone's hand and goes quickly.\",goes down the steps.,2\n823,lsmdc0017_Pianist-56244,7062,Someone unlocks the door and they go in. Someone,Someone unlocks the door and they go in.,Someone,gold,leads the way in.,opens the door and walks out.,walks out of the driveway.,walks next to someone and sits on a pew.,0\n824,lsmdc0017_Pianist-56244,7069,\"Then, he takes off his shoe and stuffs the scrap of paper into it. While he does so, his eyes\",\"Then, he takes off his shoe and stuffs the scrap of paper into it.\",\"While he does so, his eyes\",gold,are dries and shaved.,roll back into a wet metal puddle at the table beneath him.,remain to see her horrified eyes.,light on the divan bed.,3\n825,lsmdc0017_Pianist-56244,7040,\"Someone lies in a steaming bath, eyes closed, as though he is in a trance. He\",\"Someone lies in a steaming bath, eyes closed, as though he is in a trance.\",He,gold,is now in his blue shorts and dragging his weight over her.,\"gazes at someone, whose eyes remain closed.\",\"lies down on the tee, staring dazed.\",grabs the timekeeper from the man holding him and blows him.,1\n826,lsmdc0017_Pianist-56244,7064,\"Someone glances around, goes to the window, looks out. He\",\"Someone glances around, goes to the window, looks out.\",He,gold,turns and looks at the top of the crowds.,has reached the hook of the door of a car door.,puts on a blank piece of paper then walks out.,can see a section of ghetto wall below.,3\n827,lsmdc0017_Pianist-56244,7052,Someone leads someone down the stairs. Someone,Someone leads someone down the stairs.,Someone,gold,\"arrive as the dark - haired someone, someone with his friends.\",leads the may to a particular set of shelves.,\"sets it carefully, at the end of a corridor, a small screen with framed letters shown.\",looks out from a page to see someone running up of him.,1\n828,lsmdc0017_Pianist-56244,7041,\"He gazes at someone, whose eyes remain closed. Someone\",\"He gazes at someone, whose eyes remain closed.\",Someone,gold,\"meets the cage, quickly approaches.\",sets his head back.,\"takes his hand in as he gives it a final salute, his hat flying.\",holds up a towel.,3\n829,lsmdc0017_Pianist-56244,7067,\"He hands over a scrap of paper, shakes someone's hand and goes quickly. Alone, someone\",\"He hands over a scrap of paper, shakes someone's hand and goes quickly.\",\"Alone, someone\",gold,sits on the sofa facing someone.,\"stands, lost for a moment.\",\"lies on the lounge log, holding his jack - o - lantern in his hands.\",\"turns a corner, then spots someone.\",1\n830,lsmdc0017_Pianist-56244,7059,\"With difficulty, he puts the cushion behind his head, starts to cover himself with the blanket but stops, seeing something. People\",\"With difficulty, he puts the cushion behind his head, starts to cover himself with the blanket but stops, seeing something.\",People,gold,is a fireman on the background.,\"have hitch, and he puts on goggles.\",wait with others at the stop as the tram trundles towards them and comes to a halt.,\"see as the faucet, the dressing, lies on one side, lying against the wall.\",2\n831,lsmdc0017_Pianist-56244,7070,He is not certain where he is for a moment. He,He is not certain where he is for a moment.,He,gold,knows what he'll need to happen.,\"hears the voices again, coming from the adjoining flat.\",listen to him staggering.,is next to him.,1\n832,lsmdc0017_Pianist-56244,7049,The rickshaw comes to a halt outside a store. The moment it stops the shutters of the store are raised and someone,The rickshaw comes to a halt outside a store.,The moment it stops the shutters of the store are raised and someone,gold,becomes closer to blaze.,sees someone mirthfully look at someone.,tries to step forward.,\"escorts someone to the door, then quickly returns to the rickshaw, which moves off fast.\",3\n833,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7158,4346,Someone sees a black hat lying on the ground. He,Someone sees a black hat lying on the ground.,He,gold,clutches the scar in his forehead.,glances at him and smiles.,turns to the crowd and coughs.,advances off the inner beam as someone take the room.,0\n834,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7158,4347,He clutches the scar in his forehead. A man,He clutches the scar in his forehead.,A man,gold,lies on his back among the fallen leaves heaped - in and lifeless.,\"gets up and grabs a piece of hair by his hand, another burst of fire.\",hits outside surrounding a lorry.,\"enter his yard, peers over the castle courtyard and paces thoughtfully.\",0\n835,lsmdc3004_500_DAYS_OF_SUMMER-1808,17668,The sun shines on the line drawing city. Blossoms bloom on the tree and birds,The sun shines on the line drawing city.,Blossoms bloom on the tree and birds,gold,fly in the sky.,gather around the circle and settle a pot with corn.,fly through bare branches.,swoop down off the ground to move food to their head.,0\n836,lsmdc3004_500_DAYS_OF_SUMMER-1808,17667,Day 500 becomes day 1. The sun,Day 500 becomes day 1.,The sun,gold,shines on the line drawing city.,reaches a aisle almost transparent for the exhausted sand.,breaks over people just in a state incline.,starts the instructor of the second pot.,0\n837,anetv_ejzgfj6QKB8,12529,A man is in a yard with a cricket bat. He,A man is in a yard with a cricket bat.,He,gold,throws the dart back and forth on the grass.,flips the bat over and over again.,is blindfolded to hit them.,has a large pile of money on the ground.,1\n838,anetv_ejzgfj6QKB8,12530,He flips the bat over and over again. He,He flips the bat over and over again.,He,gold,tosses the disk off.,throws - face the kid who drops the mop!,\"trips, then kicks the ball into the air, hitting it.\",rolls down the hill to see his way out.,2\n839,anetv_LkwkGj27pP8,10600,A man is seen leaning onto a fence and continuously bending down to dip paint into a bucket. The woman,A man is seen leaning onto a fence and continuously bending down to dip paint into a bucket.,The woman,gold,continues wiping while the camera pans around.,brushes the fence continuously in front of her while the camera captures her from behind.,then blew the snow off of rock face by the man speaking to the camera.,continues down the fence and talks at the top and the woman scrubs the snow.,1\n840,lsmdc1042_Up_In_The_Air-88434,12711,She stoops slightly as she drags a large unwieldy suitcase. She,She stoops slightly as she drags a large unwieldy suitcase.,She,gold,is seven years old.,has a large black bag slung over her shoulder and a coat over.,gets down on stationary bikes and starts to get off.,passes a row of medicine items.,1\n841,lsmdc1042_Up_In_The_Air-88434,12709,\"Someone slides his swipe card through the slot on the self - service check - in machine, then collects his boarding pass. Someone\",\"Someone slides his swipe card through the slot on the self - service check - in machine, then collects his boarding pass.\",Someone,gold,taps his 3d glasses.,approaches several armed men slumped reversed while laughing.,steps away with case in tow.,forces into several pieces and shoots their load for each others.,2\n842,lsmdc1042_Up_In_The_Air-88434,12712,She has a large black bag slung over her shoulder and a coat over. Someone,She has a large black bag slung over her shoulder and a coat over.,Someone,gold,crosses the street to where he was kneeling.,is in a closet and is putting down a box he takes at the lease place he is doing.,shoots aside her coat onto a hanger.,looks at her and sighs.,3\n843,lsmdc1042_Up_In_The_Air-88434,12704,\"At home, he takes pristine white T - shirts off a shelf and lays them in his suitcase with the rest of his clothes. He\",\"At home, he takes pristine white T - shirts off a shelf and lays them in his suitcase with the rest of his clothes.\",He,gold,eats the guitar.,\"packs his tie pouch, straightens up and sees the cardboard cut - out.\",holds a razor at her neck with his preppy tallest butt and points with his victim.,takes his wallet off the floor and peers down at the ice - covered gold.,1\n844,lsmdc1042_Up_In_The_Air-88434,12703,\"Someone screws up the piece of paper and throws it in the bin. At home, he\",Someone screws up the piece of paper and throws it in the bin.,\"At home, he\",gold,takes pristine white t - shirts off a shelf and lays them in his suitcase with the rest of his clothes.,throws down scooping out chocolate and casts it into a wall.,loads three cans of dirt from a box.,lies asleep clutching his marijuana while someone listens to the speaker.,0\n845,lsmdc1042_Up_In_The_Air-88434,12710,Someone steps away with case in tow. He,Someone steps away with case in tow.,He,gold,sees the boy inside.,draws out a pack of poison.,wearily raises his eyebrows as he watches someone come in.,leans over to a waitress with a poker wheel on the table as someone looks toward the thick double doors.,2\n846,lsmdc1042_Up_In_The_Air-88434,12706,\"He picks up the photo and holds it over his case length - wise and cross - wise. Wearing a sharp charcoal gray suit, someone\",He picks up the photo and holds it over his case length - wise and cross - wise.,\"Wearing a sharp charcoal gray suit, someone\",gold,approaches him carrying a clipboard spoke with the diary.,\"walks trough the airport, dragging the case.\",stands up spins cautiously past him with arms trimmed by spears.,works his way up towards the upright tower.,1\n847,anetv_k2vkwy2vdP4,13361,Beside him appears a man on a surfboard. The man on the surfboard,Beside him appears a man on a surfboard.,The man on the surfboard,gold,flips to the end and lands on his raft.,leans on the boat and waves as he pulls up in front of him.,\"speeds past, leaving him in his wake.\",crashes back onto the swim helmet.,2\n848,anetv_k2vkwy2vdP4,13360,A man is riding a water motorboat in the ocean. Beside him,A man is riding a water motorboat in the ocean.,Beside him,gold,appears a man on a surfboard.,are several climbing waves of motorcycles.,is a surf board rowing in an ocean.,is a man in the ocean.,0\n849,anetv_8sTJGmY-SGQ,15407,The man then hopes up on the bars and begins spinning himself around. He,The man then hopes up on the bars and begins spinning himself around.,He,gold,continues moving himself around a bit while still moving his legs and arms.,holds their hands then spins himself around on a yellow mat and ends by grabbing himself on the arms.,continues spinning on the bars and ends by jumping down on the sides.,continues flipping and playing another and some hanging images and tools.,2\n850,anetv_8sTJGmY-SGQ,15406,A man is seen standing with his arms up and walks in between a set of uneven bars. The man then,A man is seen standing with his arms up and walks in between a set of uneven bars.,The man then,gold,\"bends forward while moving his hand and gesturing to the camera while pushing himself around, and finishes the object.\",bends down and picks up the weight as he sings around it.,moves the disc and walks closer to the mat.,hopes up on the bars and begins spinning himself around.,3\n851,anetv_sy-xNiKnfBU,19805,A line of people are standing and waving on the beach. A man,A line of people are standing and waving on the beach.,A man,gold,is surfing in the water with a sail.,does a dance on a field field in front of a camera.,walks past the hockey players.,interviews with a man.,0\n852,anetv_sy-xNiKnfBU,19806,A man is surfing in the water with a sail. He,A man is surfing in the water with a sail.,He,gold,is water talking to the camera while attached to a boat.,drives his hand along the beach along with a iron.,\"falls off the board a few times, trying to stay upright.\",welds as he flies at the front of a pit.,2\n853,anetv_sy-xNiKnfBU,690,A group is standing on the sand and waves at the camera. They,A group is standing on the sand and waves at the camera.,They,gold,are shown parasailing in the ocean water.,are walking across the beach under a boat.,are in a bowling field talking about a game sport.,are shown jumping around preparing to prevent soccer.,0\n854,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1814,2338,\"As someone's mother and father help the boys to their feet, a pipe smoking man steps out. He\",\"As someone's mother and father help the boys to their feet, a pipe smoking man steps out.\",He,gold,\"wakes, his arm draped over the man's shoulders.\",\"'s gold, dark - eyed woman is wearing candy costume.\",eyes a shabby sack containing blood.,wears a top hat and sunglasses.,3\n855,anetv_rrKGM5hck1A,15540,Two people are seen dancing as well as close up of a musical instrument. Two people then,Two people are seen dancing as well as close up of a musical instrument.,Two people then,gold,play a song with one another while the woman continues to play in her hands.,begin playing the game while speaking to one another.,begin to dance and look up at long tables.,begins performing a tango routine in front of a large audience.,3\n856,anetv_rrKGM5hck1A,493,A man and woman are dancing inside a gym. Then we,A man and woman are dancing inside a gym.,Then we,gold,see a girl do a gymnastic routine on the wooden platform.,see the three men dancing in unison.,\"see them on a professional stage, dancing while dressed up.\",see a man perform a belly dance routine.,2\n857,anetv_rrKGM5hck1A,494,\"Then we see them on a professional stage, dancing while dressed up. They\",\"Then we see them on a professional stage, dancing while dressed up.\",They,gold,spin and twirl together across the stage.,are standing erect and they the last for it to finish.,begin to look at each other.,come up to talk about how to drink beer and make five drinks.,0\n858,anetv_rrKGM5hck1A,15541,Two people then begins performing a tango routine in front of a large audience. The two,Two people then begins performing a tango routine in front of a large audience.,The two,gold,continue to speak with one another while spinning one after the other.,continue dance around on the stage with one another.,continue moving their arms and legs around and cheering in the end.,continue dancing all around one another and end by embracing her.,1\n859,anetv_GfiqDJA-qqU,6442,\"The man performs a routine with a baton. The man sticks the a baton in the back of his shirt the bows, he\",The man performs a routine with a baton.,\"The man sticks the a baton in the back of his shirt the bows, he\",gold,enjoys as the man finishes the dancing.,watches the man perform the routine.,walks back and fourth.,pulls it out then begins to dance.,3\n860,anetv_GfiqDJA-qqU,6441,A man walks on the gym floor. the man,A man walks on the gym floor.,the man,gold,performs a routine with a baton.,does a routine on a bar outside.,joins a weight on the floor.,lands on the floor.,0\n861,anetv_GfiqDJA-qqU,11358,A person is seen walking out onto a large stage. The man,A person is seen walking out onto a large stage.,The man,gold,rides up and walks towards frame.,looks off into the distance and begins dancing around with a sword.,continues playing a dance routine while spinning and performing a routine.,pushes the man up and leads into a man continuously wrestling on a board.,1\n862,anetv_GfiqDJA-qqU,11359,The man looks off into the distance and begins dancing around with a sword. He,The man looks off into the distance and begins dancing around with a sword.,He,gold,\"begins the man to the drums and back up, smiling to the camera.\",continues moving around and ends by walking off stage.,woman continues to speak continuing to play.,continues to speak to the camera and end by walking away from there still climbing.,1\n863,anetv_GfiqDJA-qqU,6443,The man flips two times and tries to catch the baton but it falls. The man,The man flips two times and tries to catch the baton but it falls.,The man,gold,\"moves the baton on his neck, and does a spin then moves the baton on his neck.\",\"catches from another angle to disappear, along with a line.\",drops down and waves into the cup.,bends down and raises his arms into the water of his pool.,0\n864,anetv_GfiqDJA-qqU,6444,\"The man moves the baton on his neck, and does a spin then moves the baton on his neck. The man\",\"The man moves the baton on his neck, and does a spin then moves the baton on his neck.\",The man,gold,finishes the flute poses and resumes dancing.,finishes punching and smiles.,finishes and takes a bow before walking away.,spins while looking back stroke his wand.,2\n865,anetv_HGy8UgabFMw,6377,\"He climbed the blue - green ladder to trim the top of the hedge, he moved the ladder to do the middle top of the hedge. The man\",\"He climbed the blue - green ladder to trim the top of the hedge, he moved the ladder to do the middle top of the hedge.\",The man,gold,starts moving forward and rolls.,'s bedroom features relax.,\"trimmed the round low bush, used the ladder to trim the top of the round hedge.\",then is enveloped in a trance and forced himself on the tree.,2\n866,anetv_HGy8UgabFMw,6376,\"A man in blue shirt and jeans is wearing black gloves and trimming the hedge with an orange trimming machine, doing the side first then the front and then the other side. He climbed the blue - green ladder to trim the top of the hedge, he\",\"A man in blue shirt and jeans is wearing black gloves and trimming the hedge with an orange trimming machine, doing the side first then the front and then the other side.\",\"He climbed the blue - green ladder to trim the top of the hedge, he\",gold,threw the wallpaper and went else in the grass as he tries to cut the hedges and began trimming the hedges.,lived out the ax and using the shears as the hedge outside different sewerage.,moved the ladder to do the middle top of the hedge.,was cutting the toothpick in little sections and then what the white rug is put to the front continue the precious.,2\n867,lsmdc3053_PARENTAL_GUIDANCE-25736,14324,We ride a half pipe sharing the perspective of a skateboard's wheels. Someone,We ride a half pipe sharing the perspective of a skateboard's wheels.,Someone,gold,carries him off under his arm.,pulls away from us another man in the garage.,\"allows footage to throw guns, new someone.\",enters the store cityscape where stock jars are with a colt.,0\n868,lsmdc3053_PARENTAL_GUIDANCE-25736,14320,He marches toward the huddle of bullies. He,He marches toward the huddle of bullies.,He,gold,\"aims one finger at him, but both lift his hands.\",gives a taunting lunge.,stops by a window.,\"touches his own mashed, and tosses the sheet aside.\",1\n869,lsmdc3053_PARENTAL_GUIDANCE-25736,14323,Someone wears baggy track pants. We,Someone wears baggy track pants.,We,gold,rolls over on the road.,man is holding a cloth in his hand.,head for in the liquor store.,ride a half pipe sharing the perspective of a skateboard's wheels.,3\n870,lsmdc3053_PARENTAL_GUIDANCE-25736,14319,\"Now in front of the school, someone wears a determined glare. He\",\"Now in front of the school, someone wears a determined glare.\",He,gold,\"backs the boys into an alley, holding an umbrella for them.\",\"looks up to see someone, surprised, and offers him his things.\",strides through a modern window overlooking the very beautiful landscape.,marches toward the huddle of bullies.,3\n871,lsmdc3053_PARENTAL_GUIDANCE-25736,14322,\"Now a banner bears a logo, The x Games. A skater\",\"Now a banner bears a logo, The x Games.\",A skater,gold,rides his board across a half pipe.,conceals a news report.,spots as fans prepare.,enters a nightclub wearing a steely gray.,0\n872,lsmdc3053_PARENTAL_GUIDANCE-25736,14321,He gives a taunting lunge. Now a banner,He gives a taunting lunge.,Now a banner,gold,\"bears a logo, the x games.\",reads a parade and spirit.,is revealed in an officer in a suit.,pops up into the body.,0\n873,anetv_omLZQlz1PAo,192,\"An elderly couple are dancing alone on a gymnasium floor while a line of people at a table watch. They spin and dance happily, and the crowd\",An elderly couple are dancing alone on a gymnasium floor while a line of people at a table watch.,\"They spin and dance happily, and the crowd\",gold,applauds for her.,claps as cheerleaders go up the stairs.,claps as they finish and walk away.,cheers as he claps and claps.,2\n874,lsmdc1034_Super_8-8317,16600,\"As it does so, one of its tires blows out. The driver\",\"As it does so, one of its tires blows out.\",The driver,gold,is not able to get it through and then begins to cover his eye with force.,brings the bus to a grinding halt on a remote road.,gets out and hops out of the car and closing in on his body.,is crushed into a balloon.,1\n875,lsmdc1034_Super_8-8317,16598,The boys watch anxiously from a holding cell at the rear of the bus. Something,The boys watch anxiously from a holding cell at the rear of the bus.,Something,gold,\"hit the side of the bus, jolting it over onto two wheels.\",\"at the curb, she exits it.\",steps over to greet someone.,looks at someone and he avoids his gaze.,0\n876,lsmdc1034_Super_8-8317,16599,\"Something hit the side of the bus, jolting it over onto two wheels. It\",\"Something hit the side of the bus, jolting it over onto two wheels.\",It,gold,struggles to get out as the cab comes to a stop.,continues along the road a short way like this before righting itself.,\"his thumb across the steering wheel, someone is crashing darts out of his car, sending someone right under the water.\",drives through the city and down towards the stop.,1\n877,lsmdc1034_Super_8-8317,16597,\"On the bus the boys are in, someone hands someone some paperwork. The boys\",\"On the bus the boys are in, someone hands someone some paperwork.\",The boys,gold,\"drag their heads away, leaving someone on his legs straight up.\",rush to the counter with a magazine cover as the clerk reads it.,file the anonymous student into the auditorium.,watch anxiously from a holding cell at the rear of the bus.,3\n878,anetv_YbEX3klOS3Q,4253,A male athlete prepares himself to run. He,A male athlete prepares himself to run.,He,gold,runs with a javelin over his shoulder.,chalks a ballerina in his hands and then is shown again in the middle of the crowd before it is played.,runs the bases over a long line.,comes down the stairs in two of the parallel bars.,0\n879,anetv_YbEX3klOS3Q,4254,He runs with a javelin over his shoulder. He,He runs with a javelin over his shoulder.,He,gold,throws it as hard as he can.,\", handcuffed, one hoof reaches up and chases him down a flight of flight.\",then jumps extremely high stairs and lands three times on the ground.,do it together across a mat.,0\n880,anetv_YbEX3klOS3Q,4255,He throws it as hard as he can. Then others,He throws it as hard as he can.,Then others,gold,do the same shortly after.,\"hit again, almost shooting seeing people.\",poses with picture to right.,listen to camera for a moment.,0\n881,anetv_6URUyopL8qM,2460,\"After, a man appears tubing in a trail of water underneath the bridge. As he continues down the river, he\",\"After, a man appears tubing in a trail of water underneath the bridge.\",\"As he continues down the river, he\",gold,readies himself on the back of the cabin and climbs on the water and dumps the bucket into the water.,hits a few rocks along the way and begins to bobble up and down before returning back in front of the red van.,begins to smooths the snow with his hands as he skis.,\"goes down off the snow again, grabbing the tight rope, sitting down and swinging the rope behind him.\",1\n882,lsmdc0030_The_Hustler-65033,17936,Someone reaches across to light someone's cigarette with the lighter someone gave him. Someone's own lighter,Someone reaches across to light someone's cigarette with the lighter someone gave him.,Someone's own lighter,gold,\"is on the table, before him.\",is pressed by it.,is rewind on the screen.,shines through the windows.,0\n883,lsmdc0030_The_Hustler-65033,17937,\"Someone's own lighter is on the table, before him. Someone\",\"Someone's own lighter is on the table, before him.\",Someone,gold,leaps to the operating room.,\"sees it, picks it up, and sparks it into flame.\",bends down and shine checkout someone's wrists.,\"removes the pen, drags a painting boot over it, and creeping up.\",1\n884,anetv_0UR4hXxt68E,2400,The remaining group stands back up and does a second dance routine together. The group of cheerleader,The remaining group stands back up and does a second dance routine together.,The group of cheerleader,gold,\"leaps across a city,.\",\"perform their flip in a circle then at the end, the man who turns to do the same spins all jumping behind.\",end their routine and jump up and down before bowing to the crowd.,lesson shown almost successfully pictures each other.,2\n885,anetv_0UR4hXxt68E,2397,A group of cheerleaders stand in a line in a large auditorium in preparation. The group of cheerleaders,A group of cheerleaders stand in a line in a large auditorium in preparation.,The group of cheerleaders,gold,does a dance routine in all dancing in unison.,perform in the middle of the stadium before a cheerleader routine is performing on a long platform.,perform a gymnastic routine that involves a split bar ranging in competition.,\"take a break dance, preparing to return to the team with the mat.\",0\n886,anetv_0UR4hXxt68E,2399,Half of the group kneels on the floor and the other standing group exits to the sides. The remaining group,Half of the group kneels on the floor and the other standing group exits to the sides.,The remaining group,gold,stands back up and does a second dance routine together.,prepares to do twirls while holding a stick and trying to keep their left hand behind another referee while the other player in blue pants,takes out their positions and helmets dance on.,walks down the road along with them and while with the camera pans.,0\n887,anetv_0UR4hXxt68E,2398,The group of cheerleaders does a dance routine in all dancing in unison. Half of the group kneels on the floor and the other,The group of cheerleaders does a dance routine in all dancing in unison.,Half of the group kneels on the floor and the other,gold,touches a platform on the dance platform.,standing group exits to the sides.,lifts the flagpole up and begins standing.,go out.,1\n888,anetv_ODx-nocNBos,5893,The person gives a demonstration on how to use the toys. Next the person,The person gives a demonstration on how to use the toys.,Next the person,gold,\"uses a liquid to rub his face, then he wipes it down with a hand.\",does several demonstrations of the sumo wrestling toy set using toys that they have made as well as toys from the set.,\"continues with the mower, his wife and woman a pushing the mower.\",takes off excess shirts and cleans the bottom of the place to fold it in a shirt for a bit.,1\n889,anetv_ODx-nocNBos,5892,A person on the screen is showing a box containing sumo wrestling toys. The person,A person on the screen is showing a box containing sumo wrestling toys.,The person,gold,puts up tape over the handles of the body and lets.,gives a demonstration on how to use the toys.,goes on the journalist.,nudges the ball from with bedside fish.,1\n890,anetv_pleP5-tuJ_Q,1037,A little girl is sitting on the floor knitting as well. She,A little girl is sitting on the floor knitting as well.,She,gold,sands a stone corkscrew.,talks to the camera as she learns to knit.,shows the cats nails down each nail and also continues blinking an image of the cat.,end in a dirty suit and hardwood floors with a wooden hoop over her head.,1\n891,anetv_pleP5-tuJ_Q,1036,An old woman is knitting on a bed. A little girl,An old woman is knitting on a bed.,A little girl,gold,on a fence liner begins climbing nails.,is sitting on the floor knitting as well.,smokes on two tables and sits on a sofa.,is sitting back in her chair while trying to walk in the saddle.,1\n892,anetv_kTBEGydNpgg,4652,We see a man on the crew. The camera,We see a man on the crew.,The camera,gold,unlocks the building and starts working.,zooms in on a lady in a ponytail.,switches position to speak to the man outside.,lifts his arms and pushes off equipment.,1\n893,anetv_kTBEGydNpgg,4651,We see a group of people and two hosts on stage at a game show in Asia. We,We see a group of people and two hosts on stage at a game show in Asia.,We,gold,see players play a game of sunscreen on the beach.,see the crowd charge and start the competition.,see the animated black screen.,see a man on the crew.,3\n894,anetv_kTBEGydNpgg,4653,We see the hosts convince the lady to join them. We,We see the hosts convince the lady to join them.,We,gold,see the cameraman again.,see several pictures of 101 and girl riding.,see two women doing drinks and show hanger girl's nails.,\"see jet boarding, high five individual groups.\",0\n895,anetv_kTBEGydNpgg,14903,\"The presenter calls a lady to pass on front, while the cameraman laugh. After the camera point to a young girl\",\"The presenter calls a lady to pass on front, while the cameraman laugh.\",After the camera point to a young girl,gold,\"paint the long fence, talks to the camera and measure it.\",sitting in the tattoo chair.,poses and speaks in front of a mirror.,\"looks surprised and laugh, as well the presenter and people.\",3\n896,anetv_kTBEGydNpgg,14904,\"After the camera point to a young girl looks surprised and laugh, as well the presenter and people. A cameraman points\",\"After the camera point to a young girl looks surprised and laugh, as well the presenter and people.\",A cameraman points,gold,left to the floor.,using the lawn object as she talks with the girl on the sidewalk.,overlay shown of a record that appears.,to give directions while the young girl walk to join the presenter who is talking.,3\n897,anetv_kTBEGydNpgg,4654,We see the cameraman again. The lady,We see the cameraman again.,The lady,gold,puts the tam - tam on.,throws darts at a dartboard on a hosts chest.,dressed next to white talks.,\"goes down the hill again, enjoying the time.\",1\n898,anetv_kTBEGydNpgg,14902,\"A presenter stands next to a boy and a girl on front an audience, then the girl applaud, raise one hand and walk to sit with the audience. The presenter\",\"A presenter stands next to a boy and a girl on front an audience, then the girl applaud, raise one hand and walk to sit with the audience.\",The presenter,gold,dances away by explaining.,\"calls a lady to pass on front, while the cameraman laugh.\",takes the violin from her hand and chops the violin.,wins the mascot give the other a hug.,1\n899,anetv_AHd87Cn-NkU,6974,A close up of a sink is seen with cleaner on top while the camera zooms in on the sink. A woman,A close up of a sink is seen with cleaner on top while the camera zooms in on the sink.,A woman,gold,is seen sitting in front of a sink and putting a rag over her face.,is then seen rubbing down the sink with a rag and shows off the sink in the end.,is seen putting soap into a container followed by cleaning the clothes and cleaning out the window.,is seen putting tiles down one side and stopping to be away and speak to the camera.,1\n900,lsmdc3001_21_JUMP_STREET-568,10803,He thrusts it at someone. Someone,He thrusts it at someone.,Someone,gold,\"looks over, sees the crack of someone's face again, puts his hand up.\",puts down her blindfold.,leans out from behind the couch and shoots expertly.,smirks and winks to him.,2\n901,lsmdc3001_21_JUMP_STREET-568,10799,Someone scrambles into the kitchen. The bikers riddle the dea agents with bullet holes and they,Someone scrambles into the kitchen.,The bikers riddle the dea agents with bullet holes and they,gold,have moved back down the high bridge excavator.,go into the girder and swoop outside.,collapse side by side.,go back into the village.,2\n902,lsmdc3001_21_JUMP_STREET-568,10798,\"As the bikers and dea agents launch into a gunfight, someone takes more bullets. Someone\",\"As the bikers and dea agents launch into a gunfight, someone takes more bullets.\",Someone,gold,dives behind a couch.,\"slips off, dragging his leg and coming off his horse.\",tries to regain his composure.,descends toward the top of a large staircase.,0\n903,lsmdc3001_21_JUMP_STREET-568,10802,He grabs the biker's bag. He,He grabs the biker's bag.,He,gold,marches down to the track and down the back of the truck.,puts it back in someone's coat pocket.,reaches to answer it.,thrusts it at someone.,3\n904,lsmdc3001_21_JUMP_STREET-568,10801,Someone peeks out from the kitchen. He,Someone peeks out from the kitchen.,He,gold,runs across his yard and looks to someone beside him.,starts to remove ice from the turret sack.,grabs the biker's bag.,pulls the robe off his shoulders.,2\n905,lsmdc3001_21_JUMP_STREET-568,10800,\"As the bikers reload, someone opens fire. Someone\",\"As the bikers reload, someone opens fire.\",Someone,gold,strides past someone.,peeks out from the kitchen.,swerves and grabs the hammer.,looks across at him.,1\n906,lsmdc1026_Legion-5335,2621,Someone holds his thumb and forefinger close together. He,Someone holds his thumb and forefinger close together.,He,gold,smiles briefly as he re - jumps in a chair.,strides toward the officer who stands on.,jerks up from the flames as he paddles toward the front of his boat.,sees static on the television screen.,3\n907,lsmdc1026_Legion-5335,2623,\"Outside, someone's attention is drawn to something down the road. He\",\"Outside, someone's attention is drawn to something down the road.\",He,gold,moves into the clearing and leaps across the pit towards him.,runs and runs along a ridge before it progresses.,steps forward and glances at the horizon.,stops and looks back at the fireplace.,2\n908,lsmdc1026_Legion-5335,2626,Someone looks in the opposite direction. Encroaching black cloud,Someone looks in the opposite direction.,Encroaching black cloud,gold,gradually still stands in two of the windows.,illuminate the vast expanse of pelennor fields.,creates a huge cloud high up within.,dominates the horizon there.,3\n909,lsmdc1026_Legion-5335,2619,Someone pats him affectionately on the cheek. Someone,Someone pats him affectionately on the cheek.,Someone,gold,watches his father go.,takes in his sunglasses.,picks up his glasses and applies makeup.,watches as they approach someone.,0\n910,lsmdc1026_Legion-5335,2622,\"He sees static on the television screen. Outside, someone's attention\",He sees static on the television screen.,\"Outside, someone's attention\",gold,is drawn around the sleeping kids.,is drawn to something down the road.,sits on one of women's drawers.,is back on tv.,1\n911,lsmdc1026_Legion-5335,2625,\"Inside, someone steps up on a chair to examine the tv set. Someone\",\"Inside, someone steps up on a chair to examine the tv set.\",Someone,gold,looks in the opposite direction.,sits in the control seat.,sits busy with colleagues.,comes out of bed.,0\n912,lsmdc1026_Legion-5335,2620,\"As someone enters the diner, someone turns to him. Someone\",\"As someone enters the diner, someone turns to him.\",Someone,gold,\"stares up at someone, who is lying on clothed.\",\"he mugs and he gives an smug nod, then proceeds away.\",thrusts it down to the deck where someone holds his personal flute.,holds his thumb and forefinger close together.,3\n913,anetv_f3Mse2A5edA,5014,A man is sitting behind a table completing a Rubik's cube. A person in a blue shirt,A man is sitting behind a table completing a Rubik's cube.,A person in a blue shirt,gold,applauding for him.,is standing next to the table holding a stop watch.,is mixing using a rubix cube.,is shaving the other mans eyes.,1\n914,anetv_f3Mse2A5edA,5016,The man completes the Rubik's cube and sets it down. He,The man completes the Rubik's cube and sets it down.,He,gold,picks up a rubiks cube and begins to solve.,dials a number on the phone to the table.,unwraps the cube and pulls it up with two designs.,hugs a person that walks up next to him.,3\n915,anetv_f3Mse2A5edA,5015,A person in a blue shirt is standing next to the table holding a stop watch. The man,A person in a blue shirt is standing next to the table holding a stop watch.,The man,gold,completes the rubik's cube and sets it down.,picks down the flower.,is talking while wearing a blue belt and wearing a helmet and helmet.,jumps from the trampoline and falls to the floor.,0\n916,lsmdc0023_THE_BUTTERFLY_EFFECT-59610,2352,Four inches of Plexiglas separate the two and they talk on monitored phones. Someone,Four inches of Plexiglas separate the two and they talk on monitored phones.,Someone,gold,\"nods, holding up two comp books.\",puts his fingers on his temple and now takes several more strides.,is also eating at an old building.,is walking throughout the street and pausing from his lamp.,0\n917,anetv_fE3j74_s4KY,9510,We see a blue opening screen and a photo of a man. We see men playing soccer in an indoor gymnasium and the goalie,We see a blue opening screen and a photo of a man.,We see men playing soccer in an indoor gymnasium and the goalie,gold,blocks shot after shot.,move their arms around while passing to the camera.,\"hits the net, serving from us to the player, then the spiked team serves the ball while he celebrates.\",runs to help well.,0\n918,anetv_fE3j74_s4KY,11681,A man is seen kicking a soccer ball into a goal followed by another man doing the same. Several more people,A man is seen kicking a soccer ball into a goal followed by another man doing the same.,Several more people,gold,step up to kick a goal with the goalie standing in front.,are seen riding around a pool while the camera captures their movements.,are seen grabbing the balls themselves together and speaking to a camera.,are shown watching soberly and looking off into the distance.,0\n919,anetv_fE3j74_s4KY,9511,We see men playing soccer in an indoor gymnasium and the goalie blocks shot after shot. The goalie,We see men playing soccer in an indoor gymnasium and the goalie blocks shot after shot.,The goalie,gold,spins on the ground.,starts to fight in a gathering force.,away from the ball shows the player celebrating by the goalie.,force kicks his feet into a opposing net after the puck hits the ball and lands far offers in the shot.,0\n920,anetv_fE3j74_s4KY,9514,We see still of men in soccer gear. We then,We see still of men in soccer gear.,We then,gold,see again on an professional volleyball game.,see smoke in several bowling clips.,see boys of around 10 in soccer gear.,see 6 men playing polo.,2\n921,anetv_fE3j74_s4KY,9515,We then see boys of around 10 in soccer gear. We then,We then see boys of around 10 in soccer gear.,We then,gold,see the man getting fitted for the finish line.,see several rocks in the dirt.,see the ending credits.,see the end screen.,2\n922,anetv_fE3j74_s4KY,9512,The goalie spins on the ground. We,The goalie spins on the ground.,We,gold,hit the ball back and forth.,or one man make the ball land across the field and walks or the length of the court.,see the goalie spin again.,see the score into the goal post jump.,2\n923,anetv_fE3j74_s4KY,11682,Several more people step up to kick a goal with the goalie standing in front. The men,Several more people step up to kick a goal with the goalie standing in front.,The men,gold,\"engage in a game of volley ball, playing and cheering with one another as well.\",finally hit the board back and fourth back and fourth.,continue to kick balls while walking in and out frame.,begin wrestling by one another as well as shooting the discus and celebrates.,2\n924,lsmdc0038_Psycho-67356,11574,\"Someone becomes apprehensive, starts to someone, forcing himself to remain calm and cheerful. Someone\",\"Someone becomes apprehensive, starts to someone, forcing himself to remain calm and cheerful.\",Someone,gold,\"drops dead air on the table, sweat dripping from his face.\",with his wife at one side.,looks up from the dazzling light and moves slowly towards his friend - toward - harness.,\"turns, gazes seriously at him.\",3\n925,anetv_mgmwdQixDXY,11721,Woman is showing her nails with a cute manicure and some polishes behind her hand. woman,Woman is showing her nails with a cute manicure and some polishes behind her hand.,woman,gold,holds by the wipes and is standing to adjust the handlebars with a razor.,is holding a pink polish and start painting her nail.,is standing in the kitchen showing the proper way to peel the grass from the kitchen.,begins to talk to the camera while showing the parking window of an instructor.,1\n926,anetv_EWlt9TTOw30,6963,The man points to the tree. the man then,The man points to the tree.,the man then,gold,takes the cut fabric and tucks in in the tree.,shows how to tie the sides of the block.,begins instruments front of the town.,uses his finger to light on a red tree.,0\n927,anetv_EWlt9TTOw30,18183,We see a title screen on a decorative background. We then,We see a title screen on a decorative background.,We then,gold,see the ending screen.,see the man playing in his room at a table.,see a man mowing the lawn from behind the bushes.,see a man decorating a christmas tree.,3\n928,anetv_EWlt9TTOw30,6961,A christmas tree is shown. a man then,A christmas tree is shown.,a man then,gold,begins to mulch with mulch on a buckets.,pushes the pumpkin from inside.,takes fabric and wraps it around the tree.,pulls the child to pass the pinata.,2\n929,anetv_EWlt9TTOw30,18184,We then see a man decorating a Christmas tree. The man,We then see a man decorating a Christmas tree.,The man,gold,cuts tulle and sticks it in the tree.,lays a christmas tree on the tree.,starts removing the wood leaves of the tree.,\"put the jack, next to the tree in his place.\",0\n930,anetv_EWlt9TTOw30,18185,The man cuts tulle and sticks it in the tree. We then,The man cuts tulle and sticks it in the tree.,We then,gold,see the ending logo screen.,see the white ending credits.,see the ending credits.,see glasses wih the color of the tree.,2\n931,anetv_BD7txKlwoj8,4008,There is a net around a circle. A man,There is a net around a circle.,A man,gold,is standing inside the net.,then jumps on the ground to grab a fish.,is standing next to them.,rolls rock sheet onto the ground.,0\n932,anetv_BD7txKlwoj8,2753,A man in a blue shirt holds a ball on a chain. He,A man in a blue shirt holds a ball on a chain.,He,gold,runs with the harness and pole together.,is jumping on the floor and going back quickly.,is playing drums on a small covered field.,swings it around his body several times.,3\n933,anetv_BD7txKlwoj8,4010,He spins and swings a ball on a rope. He,He spins and swings a ball on a rope.,He,gold,flips several times as he does it.,falls on the ground.,tosses the ball and throws his hands in the air.,bounces out without it.,2\n934,anetv_BD7txKlwoj8,2754,He swings it around his body several times. He then,He swings it around his body several times.,He then,gold,pierces the batsman control with a pole.,lands his footing on a large hedge.,launches it onto the field.,keeps inching around and bumps on the wood.,2\n935,anetv_fdd5ixvEXOE,12668,They are protestors carrying various signs. The people,They are protestors carrying various signs.,The people,gold,\"dance down the sidewalk, wearing strange costumes.\",continue fencing and tubes backwards.,are also working with the floor in glasses and enjoy a product sport.,are looking at their hands and the slowly.,0\n936,anetv_fdd5ixvEXOE,17599,A large group of people are seen walking down a sidewalk holding various signs and objects and skipping down the street. More people,A large group of people are seen walking down a sidewalk holding various signs and objects and skipping down the street.,More people,gold,are seen jumping around and throwing the ball around.,appear hoping down the street and ends with one final man looking at the camera.,are seen speaking to the camera and leads into several people walking near the ocean.,watch as the band plays instruments in the background as everything finishes from a band.,1\n937,lsmdc3092_ZOOKEEPER-45086,15716,Someone strides over to someone. He,Someone strides over to someone.,He,gold,sits on his lap and plants a kiss on the top of her head.,catches someone eyeing someone.,is focused on the ice.,turns to his temple.,1\n938,anetv_BWKKwqX62Y4,16298,A boy wearing jeans and a red and black jacket is swinging on a swing as he moves his legs back and forth. The boy begins to go a little higher and the camera person,A boy wearing jeans and a red and black jacket is swinging on a swing as he moves his legs back and forth.,The boy begins to go a little higher and the camera person,gold,walks a little closer to get a better view.,gets closer to the grave.,walks him to off the side.,moves back to face the pinata.,0\n939,anetv_BWKKwqX62Y4,1795,Finally he jumps off the swing and lands at the edge of the play area. He,Finally he jumps off the swing and lands at the edge of the play area.,He,gold,\"looks down in the bikini, revealing underwater and shows the small town in the floor below.\",turns and walks towards the camera.,inches down the frame and comes back to see him ring.,finishes the routine and walks away while wearing concentration.,1\n940,anetv_BWKKwqX62Y4,1793,A boy in a red jacket swings on a swing set with trees in the background. He,A boy in a red jacket swings on a swing set with trees in the background.,He,gold,continues swinging his arms and legs.,then sets off a couple shadows onto his front lawn.,swings the ax.,swings higher and higher.,3\n941,anetv_BWKKwqX62Y4,1794,He swings higher and higher. Finally he,He swings higher and higher.,Finally he,gold,jumps off the swing and lands at the edge of the play area.,jumps across the bars.,swings a few closest toward the man.,rolls off the mountain and pushes the tellers ahead.,0\n942,lsmdc3091_ZOMBIELAND-44543,16395,\"She strolls out, leaving the manager grinning. Now on a suburban street, Little someone\",\"She strolls out, leaving the manager grinning.\",\"Now on a suburban street, Little someone\",gold,strides up to the convertible and gets in.,opens a screen door.,crosses a gym tavern on a water mall.,sits behind a distantly nosed open stereo.,0\n943,lsmdc3091_ZOMBIELAND-44543,16399,Someone steals his gun back and aims at Little someone. Someone,Someone steals his gun back and aims at Little someone.,Someone,gold,stops then aims at him.,takes the phone out with his weapon.,lays his handing pipe down.,\"breaks into a run, then drops her and guns to a road.\",0\n944,lsmdc3091_ZOMBIELAND-44543,16392,Now he hands her cash. Little someone,Now he hands her cash.,Little someone,gold,joins the girl carrying the drawings.,stares at the ring then hands it over.,crosses to the podium and press out her name.,takes the bag out of her bag.,1\n945,lsmdc3091_ZOMBIELAND-44543,16396,\"Now on a suburban street, Little someone strides up to the convertible and gets in. She\",\"Now on a suburban street, Little someone strides up to the convertible and gets in.\",She,gold,opens the glove box.,puts down his hand.,\"presses a ridge across the sky and crosses to the bed, yawning.\",\"leaves, then climbs in.\",0\n946,lsmdc3091_ZOMBIELAND-44543,16390,\"Behind the wheel, someone gives a disarming smile. As the convertible pulls toward the street, the manager\",\"Behind the wheel, someone gives a disarming smile.\",\"As the convertible pulls toward the street, the manager\",gold,gets up and runs to the floor corner.,plays alone and pass the president and briefcase.,ushers the couple into the elevator.,scans the ground by the pump.,3\n947,lsmdc3091_ZOMBIELAND-44543,16394,She eats a candy bar. She,She eats a candy bar.,She,gold,\"strolls out, leaving the manager grinning.\",mix a chicken covered cookie in a pan.,lets the head down.,walks and completes the omelette.,0\n948,lsmdc3091_ZOMBIELAND-44543,16397,She opens the glove box. The young con artist,She opens the glove box.,The young con artist,gold,regards her with a furrowed brow.,picks up her purse.,looks wistfully at the photo.,pours a handful of rings out of an envelope.,3\n949,lsmdc3091_ZOMBIELAND-44543,16391,\"Later, he uses a phone. Little someone\",\"Later, he uses a phone.\",Little someone,gold,\"sits on a bench, squinting at the parade.\",loads in the cellphone.,places cards on an envelope.,finds the ring outside.,3\n950,anetv_RfchfRzuV8I,3296,A close up of a person's hands are seen followed by a man walking into frame. The man,A close up of a person's hands are seen followed by a man walking into frame.,The man,gold,is seen holding an instrument and begins to play.,moves back and fourth on the water while continuing to speak.,rubs the man up and looking to the camera.,begins playing his instrument while moving his hands up against his face and showing more shots of him stopping.,0\n951,anetv_RfchfRzuV8I,3693,A man is seen walking into frame holding onto a set of bag pipes. The man then,A man is seen walking into frame holding onto a set of bag pipes.,The man then,gold,begins pushing himself back and fourth on the fourth set.,jumps up and down and stand around in front.,\"moves the living some on the floor in front of them, holding up a few flowers.\",begins playing the bag pipes in front of the camera.,3\n952,anetv_RfchfRzuV8I,3297,The man is seen holding an instrument and begins to play. The man,The man is seen holding an instrument and begins to play.,The man,gold,continues playing the bagpipes and ends by turning off the camera.,continues speaking while others play in the background.,finishes by playing a game as well as belongs and returns using his hands.,takes it and continues talking before the other returns to the casino.,0\n953,anetv_RfchfRzuV8I,3694,The man then begins playing the bag pipes in front of the camera. He,The man then begins playing the bag pipes in front of the camera.,He,gold,continues playing the piano and continuously moving while gesturing to other people.,continues to talk to the camera and moves it around.,begins to play an accordion while pausing to speak to the camera.,continues to play and then walks out of frame.,3\n954,anetv_iaqFvTpoceI,14608,They hold up signs in the air. They,They hold up signs in the air.,They,gold,finish their routine and wave at the audience.,manage a few feet away.,lift its legs in front of each other and begin dancing.,hit hurling hard in the balls.,0\n955,anetv_iaqFvTpoceI,14606,Cheerleaders are standing on a blue mat. They,Cheerleaders are standing on a blue mat.,They,gold,jump on the beam and perform a routine with one another.,start doing a routine on the mat.,are engaged in a game of dodgeball.,\"are jumping across the platform, high above the stage.\",1\n956,anetv_Ye6_xb7h7jc,11835,The kids are pointing out the balls and the ornamens. the kids,The kids are pointing out the balls and the ornamens.,the kids,gold,are holding up the candy and fixing it on a fake end.,stand on the other side and grab the poles.,continue playing to take different shots of the midget around rackets and hit dogs behind.,stands next to the three and say goodbye to the camera.,3\n957,anetv_y20J3BbydOk,16597,Kids are gathered around a wooden table in a kitchen. woman,Kids are gathered around a wooden table in a kitchen.,woman,gold,is doing the dishes on the sidewalk with a bowl of food.,is standing in front of a sink and wash a stack of water.,is wearing a wooden apron and laying boots on the ground of a big yard.,is cutting oranges and showing it to kids and squeezing it in a glass in the table.,3\n958,anetv_pGKTRM1vcfw,10686,Lacrosse team is in a large green grassy field playing. coach wearing black clothes,Lacrosse team is in a large green grassy field playing.,coach wearing black clothes,gold,is running in the same number.,walks preparing to soccer.,demonstrates how to place the grass and end by doing a goal.,is watching the game walking on sides.,3\n959,anetv_pGKTRM1vcfw,1524,The coaches are standing on the side of the field and walked. The players,The coaches are standing on the side of the field and walked.,The players,gold,hit the ball across the base and form the swarm from it beside the target.,walked towards their benches.,interview another coach in a gym.,kicked the puck and then one score is shown.,1\n960,anetv_pGKTRM1vcfw,10687,Coach wearing black clothes is watching the game walking on sides. women,Coach wearing black clothes is watching the game walking on sides.,women,gold,are wearing white shorts playing hurling in a roofed court.,are twirling and walking on the field where people are bouncing up and down.,runs to the benches and gathered around the coach.,are playing paintball in the green field playing the game.,2\n961,anetv_MVzypK0eMKc,19472,A young boy is seen speaking to the camera and pouring ingredients into a blender. He,A young boy is seen speaking to the camera and pouring ingredients into a blender.,He,gold,grates a liquid into the steel pitcher and mixes ingredients into a bowl.,begins mixing the ingredients in a pan while pushing on the camera.,squeezes juice and mixes up the blender.,pours the other rum into a glasses and pours a drink into a lime.,2\n962,anetv_MVzypK0eMKc,13971,He blends them up together and takes a drink afterwards. He,He blends them up together and takes a drink afterwards.,He,gold,holds up a lens device and puts it in a cup.,dances with a lesson.,shows off the drink and speaks to the camera.,chugs his harmonica and starts to laugh to the camera.,2\n963,anetv_MVzypK0eMKc,19473,He squeezes juice and mixes up the blender. He,He squeezes juice and mixes up the blender.,He,gold,puts on a steel juicer for lemonade.,moves a coffee spoon from a small cup.,pours it out and takes a sip while speaking to the camera.,\"holds up the glass lemon and added, on the lemon and the juice.\",2\n964,anetv_MVzypK0eMKc,13970,A young man is seen speaking to the camera and begins putting ingredients into a blender. He,A young man is seen speaking to the camera and begins putting ingredients into a blender.,He,gold,washes the sandwich into a cheap salad as well as puts it up and slices it on open.,pours it into the end and puts more on and drains it into the pan.,blends them up together and takes a drink afterwards.,puts a various mop into the pot and holds up a bowl and pours it into another pan.,2\n965,anetv_6g80a1NnftU,16761,The woman then waves her arms carelessly under the water and rubs her hands on her shirt to dry. She,The woman then waves her arms carelessly under the water and rubs her hands on her shirt to dry.,She,gold,continues with several people on the sideline on the beach laughing and watching.,begins to walk out in front of a girl who has to get off the board.,finally opens the door with holding a rag and then throws a rag away in the trash.,shakes the bottle while letting off while the camera pans her movements.,2\n966,anetv_6g80a1NnftU,7894,A person is washing their hands as the words Tutorial: How to Wash Your Hands appears on screen. A continuous scroll of instructions,A person is washing their hands as the words Tutorial: How to Wash Your Hands appears on screen.,A continuous scroll of instructions,gold,plays to the large arcs of water and the front are brushed and fly.,is dropped with a product.,appears until it to the bottom.,crawls across the bottom of the screen.,3\n967,lsmdc3057_ROBIN_HOOD-27631,55,Someone obliviously sips his watered down wine. Someone,Someone obliviously sips his watered down wine.,Someone,gold,picks up a tiny nose syringe.,sits with a plate of popcorn.,\"watches, then glances at someone and leans back in his chair.\",goes to along and mixes debris into the bucket as the customer is drunk.,2\n968,anetv_F1MKU9-yXg0,1635,A young man in a green jacket is standing in front of a mound of dirt and is talking about his maintenance tasks. The man then,A young man in a green jacket is standing in front of a mound of dirt and is talking about his maintenance tasks.,The man then,gold,grabs an orange tool to clean the top of the soaping paper using the knife.,comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard.,goes down the alley around wearing something in its underwear.,begins getting up and cleaning some cement.,1\n969,anetv_F1MKU9-yXg0,1637,\"He then takes his rake and moves the dirt back and forth around the house evening it out. When complete, he disappears and a path of mulch\",He then takes his rake and moves the dirt back and forth around the house evening it out.,\"When complete, he disappears and a path of mulch\",gold,is listed to cut the snow.,is seen laid out on the grassy counter.,comes towards the camera.,is seen along the garage.,3\n970,anetv_F1MKU9-yXg0,1636,The man then comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard. He then,The man then comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard.,He then,gold,takes his rake and moves the dirt back and forth around the house evening it out.,walks around and walks off further and continues running at the end.,leaves the sunroom to assist his snowboarding.,\"picks up the shovel and continues skateboarding on the lawn, back and forth until finally coming back to the camera's camera.\",0\n971,anetv_DFAodsf1dWk,14049,\"He sits by a table, then sets up a game of beer pong. The men\",\"He sits by a table, then sets up a game of beer pong.\",The men,gold,holds a bucket up pool as well as balls hitting it into a triangle.,\"play the game casually, taking turns.\",play and take shots of each other and flash as they engage in a game of ping pong balls.,are then seen refills a cup with beers as well as the beer shots.,1\n972,anetv_DFAodsf1dWk,18100,A man is sleeping in a bedroom. He,A man is sleeping in a bedroom.,He,gold,reaches out and turns off an alarm clock.,starts to iron the shirt.,lies in the chair clutching his stomach.,is standing next to a tub on the counter.,0\n973,anetv_RZqM8Z0ocjE,18497,Two groups of girls run out to the middle of a court to grab volleyballs. They,Two groups of girls run out to the middle of a court to grab volleyballs.,They,gold,throw the balls at each other.,unroll the ball and throw it into the field.,stand up and down an area while their team close by.,take turns jumping up and down above their knees.,0\n974,anetv_RZqM8Z0ocjE,18498,They throw the balls at each other. The coach,They throw the balls at each other.,The coach,gold,speaks to them with swords.,is seen giving instructions.,kicks a woman in one shoulder after other.,dodges as they crane a strike and crash into each other.,1\n975,anetv_RZqM8Z0ocjE,18499,The coach is seen giving instructions. The girls,The coach is seen giving instructions.,The girls,gold,pause when one passes the stage.,struggle through the bar together.,continue to throw the balls at each other.,finish to show off while posing for camera on the field.,2\n976,anetv_RZqM8Z0ocjE,18496,A volleyball coach stands by a net holding a ball and speaks. Two groups of girls,A volleyball coach stands by a net holding a ball and speaks.,Two groups of girls,gold,take turns diving compete in a competition.,stand together on the beach playing hockey.,run out to the middle of a court to grab volleyballs.,play soccer and enjoy leaves on a sandy beach.,2\n977,lsmdc0003_CASABLANCA-47142,13972,He walks over to the window and someone follows. Someone,He walks over to the window and someone follows.,Someone,gold,grabs the cat as the door closes and someone resumes rinsing.,\"walks over to a table and opens a cigarette box, but finds it empty.\",notices someone watching her.,\"spies someone striding down the sidewalk, past the open sign, sunglasses.\",1\n978,anetv_jFZRNe7xFY8,9370,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,does a yellow routine on the balance beam.,jumps from the beam onto his mat.,does a hand stand on the balance beam.,does the splits of a mat and lands on the mat.,2\n979,anetv_jFZRNe7xFY8,18390,A shirtless man stands in an auditorium. He then,A shirtless man stands in an auditorium.,He then,gold,spin around in unison.,walks down the mat to show people stepping before him.,takes a barbell up and hits the handlebars with a metal cones.,lifts himself on the beam.,3\n980,anetv_jFZRNe7xFY8,18391,He then lifts himself on the beam. He then,He then lifts himself on the beam.,He then,gold,spins and turns away.,\"runs toward another board, performs the couple, and gets back to mount the bars.\",stands on his hands.,\"does in front of the bars, having shown posing for it.\",2\n981,anetv_jFZRNe7xFY8,9371,He does a hand stand on the balance beam. He,He does a hand stand on the balance beam.,He,gold,balances on the balance.,lands on the mat and dives for a high in the air.,does many flips off the balance beam.,jumps off and lands on the mat.,3\n982,anetv_IGXq7a7Jl7s,15072,Several athletes compete for the javelin world championships. The Russia Dimitri,Several athletes compete for the javelin world championships.,The Russia Dimitri,gold,separate and prepared to serve.,is third bronze medal in the competition.,shoot all around the room.,continue in the brotherly letters.,1\n983,anetv_IGXq7a7Jl7s,15073,The Japanese Jenki is silver medal. Till from Germany,The Japanese Jenki is silver medal.,Till from Germany,gold,\"put, put the two in duck bags before him.\",won the gold medal.,passes a chinese lady on other orange stuffing the key.,end the star glows as he floats and leans against the fence.,1\n984,lsmdc0027_The_Big_Lebowski-63185,12053,Someone runs into the lanes. Someone,Someone runs into the lanes.,Someone,gold,lays a reassuring hand on someone's shoulder.,\"puts on the lifebelt, falls onto the deserted road.\",steps onto the helipad and falls with his arms up.,\"avoids players deals aside, then sets it aside.\",0\n985,lsmdc0027_The_Big_Lebowski-63185,12054,A tall thin man in a conservative black suit enters. He,A tall thin man in a conservative black suit enters.,He,gold,\"eyes someone's bowling attire and sunglasses and someone's army surplus, but does n't make an issue of it.\",\"pours himself in the stained glass window, and steps away towards the opened doorway.\",turns to avoid the archway.,sits back on the bench.,0\n986,lsmdc3056_PUBLIC_ENEMIES-3757,9773,\"As someone lies dying, his lips move. Someone\",\"As someone lies dying, his lips move.\",Someone,gold,and someone push the cover off the wall.,\"removes his hat, crouches, and leans his ear close to someone.\",\"seems to be asleep in bed, his face buried in someone's.\",looks behind them and they become seated.,1\n987,lsmdc3056_PUBLIC_ENEMIES-3757,9775,\"The agent narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare. Someone\",\"The agent narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare.\",Someone,gold,\"turns, as the uruk - hai swarm through the fields around them.\",squirts someone's face with his towel.,'s men conducting a little dance with someone and someone.,\"gets to his feet, his sober gaze locked on the dead man.\",3\n988,lsmdc3056_PUBLIC_ENEMIES-3757,9778,Someone eyes him long and steady. Someone,Someone eyes him long and steady.,Someone,gold,\"glances away, then looks someone in the eye.\",notices the settings from her window.,\"winces, then hangs up in the middle of the small chest and tastes a sound.\",\"exhibits a shoe lighter, a one - size pillow at a corner.\",0\n989,lsmdc3056_PUBLIC_ENEMIES-3757,9777,The older man faces him. Someone,The older man faces him.,Someone,gold,eyes him long and steady.,continues down the hall.,is plugged in.,magically slices him with a high armchair.,0\n990,lsmdc3056_PUBLIC_ENEMIES-3757,9776,\"He holsters his gun and someone joins his side. As the younger g - man eyes the body, someone\",He holsters his gun and someone joins his side.,\"As the younger g - man eyes the body, someone\",gold,aims his gun through the hole in the chamber.,brings his raven glass toward hands.,aims his right nine at his target.,\"dons his hat, his stare stoic and grim.\",3\n991,lsmdc3056_PUBLIC_ENEMIES-3757,9772,\"Someone falls face down, eyes staring off as blood streams from his ruptured cheek. Someone\",\"Someone falls face down, eyes staring off as blood streams from his ruptured cheek.\",Someone,gold,stares at its reflection then faces someone broodingly.,\"stares, then ventures forward.\",sits beside the stove.,takes a piece of tape out of his hand.,1\n992,lsmdc3056_PUBLIC_ENEMIES-3757,9774,\"Someone removes his hat, crouches, and leans his ear close to someone. The agent\",\"Someone removes his hat, crouches, and leans his ear close to someone.\",The agent,gold,steps out of the theater and continues walking his paint on a bridge of grass.,\"manages to reach his sixth room, is alone on the edge of the control line.\",\"narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare.\",flips through a narrow gap and briefly gets him to go in.,2\n993,lsmdc3056_PUBLIC_ENEMIES-3757,9779,\"Someone glances away, then looks someone in the eye. Someone\",\"Someone glances away, then looks someone in the eye.\",Someone,gold,sits down in a chair and eats a few minutes.,shakes his thumb and his eyes widen.,\"leans in for a good look at someone's body, then heads off.\",doubles apologetically and raises a fist.,2\n994,anetv_mr2wnh2GwL8,9280,\"A white bridge appears along with the front of the Hyatt hotel before a bunch of people appear walking on the beach. As the camera travels across the beach, a group of boys\",A white bridge appears along with the front of the Hyatt hotel before a bunch of people appear walking on the beach.,\"As the camera travels across the beach, a group of boys\",gold,\"are in a busy court playing soccer in a stadium, especially with other teammates, while they are trying to play waves.\",begin walking on a motor boat.,playing activities are replayed doing some progress in the sand.,begin putting buckets on top of the trash can upside down and filling them with dirt and water.,3\n995,anetv_mr2wnh2GwL8,9281,\"The men the surround the dirt with shovels and lift the trash cans up to unveil the sand. After, the men\",The men the surround the dirt with shovels and lift the trash cans up to unveil the sand.,\"After, the men\",gold,begin carving into the sand and creating designs in the sand castle.,demonstrate clipped sticks for a girl to explain how to install a log.,fish their run and pass.,resort their boards on ripping the firewood and preparing to stuff them through the hole.,0\n996,anetv_mr2wnh2GwL8,6359,A camera is seen moving quickly all around a beach passing by several objects and people and lead into several people laying down buckets and shoveling sand. The men,A camera is seen moving quickly all around a beach passing by several objects and people and lead into several people laying down buckets and shoveling sand.,The men,gold,continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle.,continue cleaning on the side in the kitchen while others watch and lead into a group of kids sitting down next to a fence.,continue riding all around the sand with one another and continuing to show various images in the end.,continue to crash around each another and stand along the water and end by showing getting worked up.,0\n997,anetv_mr2wnh2GwL8,6360,The men continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle. In the end they,The men continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle.,In the end they,gold,are seen speaking to the camera and their words being washed away.,continue shoveling inside the desert as well as walking fancy.,return to the dock to further crowded.,make the presents and start dancing in a different room.,0\n998,anetv_OqLrsVv44MY,18998,A woman smiling at the camera is shown scraping off her car with a scraper. She,A woman smiling at the camera is shown scraping off her car with a scraper.,She,gold,talks to the camera man while smiling at the camera and continuing to scrape.,uses a rag cleaner in a street while still speaking to the camera.,pours around the wheel and continues to talk to the camera.,pulls the tail off the bike then uses a tool to make it properly.,0\n999,anetv_bqA-WmqF19E,11457,People are playing pool in a room. A man,People are playing pool in a room.,A man,gold,is fighting on a large stage.,shoots at the ball and makes it into the pocket.,is standing outside front of an audience watching him.,spins a ball in a circle of water.,1\n1000,anetv_bqA-WmqF19E,11458,A man shoots at the ball and makes it into the pocket. People,A man shoots at the ball and makes it into the pocket.,People,gold,are standing behind him playing pool on another table.,throw the shot put.,stick and pull themselves.,are 3 across the jar.,0\n1001,lsmdc1006_Slumdog_Millionaire-74024,10997,\"He goes back to the cricket, swearing under his breath. Someone\",\"He goes back to the cricket, swearing under his breath.\",Someone,gold,turns face to face with someone.,pushes someone toward the door.,shines a tool on someone's right foot.,blows over the engine.,1\n1002,lsmdc1006_Slumdog_Millionaire-74024,10999,She pushes him out of the door. He,She pushes him out of the door.,He,gold,remains in the courtyard looking back at her.,\"turns to someone, who stares at the horn.\",\"uses the key in an accordian on the side of it, then leaves and stands next to another person.\",\"lowers her resistance and gazes at someone, then leans closer.\",0\n1003,lsmdc1006_Slumdog_Millionaire-74024,10994,\"Someone looks pleadingly at someone. Someone, still transfixed by the cricket game,\",Someone looks pleadingly at someone.,\"Someone, still transfixed by the cricket game,\",gold,slowly shakes his hand with triumph.,jumps up to get a slap repeatedly over his mouth.,steps back in a window and stands up behind an archway with the policemen 'graffiti.,takes a bite of his sandwich.,3\n1004,lsmdc1006_Slumdog_Millionaire-74024,10996,He looks disgusted and spits it out onto the plate. He,He looks disgusted and spits it out onto the plate.,He,gold,slides both hands around the crack.,passes someone to the bald guy.,picks up a piece of bread.,walks into the kitchen.,3\n1005,lsmdc1006_Slumdog_Millionaire-74024,10995,\"Someone, still transfixed by the cricket game, takes a bite of his sandwich. He\",\"Someone, still transfixed by the cricket game, takes a bite of his sandwich.\",He,gold,looks disgusted and spits it out onto the plate.,\"roars sculpting on the gaping crowd, raising a handful of shrimp over an array of fire and along the street, ready.\",\"moves away from him, eyeing the different food.\",puts his arm around the cello player.,0\n1006,lsmdc1006_Slumdog_Millionaire-74024,10998,She slowly shakes her head. She,She slowly shakes her head.,She,gold,is completely staring up at the ceiling.,pushes him out of the door.,reluctantly closes her laptop again and leans her head back against a button.,looks away in the mirror.,1\n1007,anetv_F79Tzy2i7bI,579,A person puts something in the baby's eyes. A person,A person puts something in the baby's eyes.,A person,gold,messes with the baby's hair.,puts a paper under the ear.,holds the pink towel attached to it.,puts the cat on top of the table.,0\n1008,anetv_F79Tzy2i7bI,578,A baby eats bread in a high chair. A person,A baby eats bread in a high chair.,A person,gold,puts something in the baby's eyes.,stirs an egg in a pot.,begins to eat the cake.,sets up a pair of hand towels.,0\n1009,lsmdc0012_Get_Shorty-53241,4326,\"He is motioning to her for another, when we see a plane taxi past the window in the b. g.. We\",\"He is motioning to her for another, when we see a plane taxi past the window in the b. g..\",We,gold,move to the front of the car.,where someone falls and feels in time to face someone.,see a big fireball in the b. g. ,looks at a seat as someone rises from it.,2\n1010,lsmdc3045_LAND_OF_THE_LOST-21171,15354,The spiders crawl out of the fruit and up someone. He,The spiders crawl out of the fruit and up someone.,He,gold,stands out side - by - side by the invisible creature.,aims them at the inspector.,yanks someone out shrugs her hands.,\"eats it, then smiles.\",3\n1011,lsmdc3045_LAND_OF_THE_LOST-21171,15353,Someone breaks open a melon - like fruit. The spiders,Someone breaks open a melon - like fruit.,The spiders,gold,are now surrounded by the plastic!,trail the mixture around the ankles of someone's unconscious body.,crawl out of the fruit and up someone.,are tugging circles at their feet.,2\n1012,lsmdc1059_The_devil_wears_prada-98749,10744,\"She is wearing a crisp black suit and her shock of grey - white hair is expertly coiffured. In the anteroom, someone\",She is wearing a crisp black suit and her shock of grey - white hair is expertly coiffured.,\"In the anteroom, someone\",gold,\"opens her eyes and peers into the amber haze, shrugging her wand cane in her hand.\",looks into the private room.,\"is holding a picture of an old lady, her hair long to her hair.\",\"points at someone, who hurries into the office in a smart black mini dress with white colors and cuffs.\",3\n1013,anetv_5g7bqiT7Y3c,3262,He is standing on a circle. He,He is standing on a circle.,He,gold,is very worried about it.,stands up holding a stick.,is just talking about guns.,is behind a net.,3\n1014,anetv_5g7bqiT7Y3c,17324,A man is standing on a field behind a fence. He,A man is standing on a field behind a fence.,He,gold,swings back and forth over the net.,holds a ball in his hand and spins around several times.,starts fighting roller blades towards the center.,bull athlete is mowing a grass overgrown forest.,1\n1015,anetv_5g7bqiT7Y3c,17325,He holds a ball in his hand and spins around several times. He,He holds a ball in his hand and spins around several times.,He,gold,then stands up again and raises people hand to his mouth.,tries to pull the puck away from the score board.,\"grabs hit ball and submerges it, trying to solve the ball.\",releases the ball and throws it onto a field in front of him.,3\n1016,anetv_5g7bqiT7Y3c,3261,He spins around on the ground. He,He spins around on the ground.,He,gold,throws the ball back across the table.,spins his body around with the ball.,is standing on a circle.,walks up a ramp in slow motion.,2\n1017,anetv_5g7bqiT7Y3c,3260,A man stands in a field. He,A man stands in a field.,He,gold,blows some leaves from a hookah and smokes it.,\"throws a disc up the beach, hurtling it into the air.\",spins around on the ground.,spins the hammer with the hammer.,2\n1018,anetv_MZQmJZ_31O0,17764,We see a ladies eye and noes up close. We,We see a ladies eye and noes up close.,We,gold,see men taking contact lenses and contact lenses.,see people on stage camera shaving the center of a floor.,see the lady in the desert spinning hula hoops and performing tricks.,see the image with people.,2\n1019,anetv_MZQmJZ_31O0,17767,She is in the gold hoops as they fall to the ground she then spins many pink hoops from her hands to her feet and as a skirt. We,She is in the gold hoops as they fall to the ground she then spins many pink hoops from her hands to her feet and as a skirt.,We,gold,ballet begins to start her routine.,see the ending credits.,\"off, she sets her baton into the air, then does several tricks in the air as they surf into the water.\",\"hops in line and the girl turns, and twirls every few times as she tries to take the legs by the hula hoop.\",1\n1020,anetv_MZQmJZ_31O0,17766,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we see her in the gold hoops again. The lady spins her body in and out of the hoops and we,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we see her in the gold hoops again.,The lady spins her body in and out of the hoops and we,gold,see her in a handstand with the hula hoop on her feet.,see her smiling around the area.,see her score again.,watch her using a stick in the split of the hoop and the camera drops again.,0\n1021,anetv_MZQmJZ_31O0,17765,The lady hula hoops with 10 or so golden hula hoops. The lady spins the hoop on her hand then transfers it to her leg stretched upward and we,The lady hula hoops with 10 or so golden hula hoops.,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we,gold,continue to twirl the hair together.,see the anchor's still image.,see her in the gold hoops again.,see the cameraman of the platform.,2\n1022,anetv_PAF5AIQNXhs,1530,\"A baby is seated in a swing, rocking gently. A little girl\",\"A baby is seated in a swing, rocking gently.\",A little girl,gold,waves and does a trick towards the family camera.,is swinging herself and blindfolded at a pinata.,\"is playing with her hair, while people watch in horror.\",is seen swinging herself back and forth.,3\n1023,anetv_PAF5AIQNXhs,1531,A little girl is seen swinging herself back and forth. Then a toddler and baby,A little girl is seen swinging herself back and forth.,Then a toddler and baby,gold,skateboard down the pictures.,look at each other as they continue to lightly swing.,start to dance together.,\"watch on the side, she continues playing the piano as she washes again.\",1\n1024,lsmdc0033_Amadeus-66901,10841,A hand comes into frame offering a plate of sugared biscuits. On its finger we,A hand comes into frame offering a plate of sugared biscuits.,On its finger we,gold,\"see white, green staff.\",hear faintly bulge in through the jam.,see someone dip it in a frost - sized plastic container.,see the gold signet ring belonging to someone.,3\n1025,anetv_09MaNbzc2TA,14286,Several clips are shown of a soccer match going on as well as fans celebrating to the camera. In the end the team all,Several clips are shown of a soccer match going on as well as fans celebrating to the camera.,In the end the team all,gold,hold brooms and clap with one another and speak to the camera.,come into a run and jump together.,run toward a lacrosse match.,celebrates together while confetti falls from the sky.,3\n1026,anetv_P17kaxPrbdc,2123,A boy is seen holding a stick while other people watch and clap on the sidelines. The boy holding the stick,A boy is seen holding a stick while other people watch and clap on the sidelines.,The boy holding the stick,gold,performs a martial arts routine in front of the people and ends with a pose while everyone around him claps.,runs up to a box and hits it several times and still dancing around him.,is seen attempting to swim all around him while the man flip the running water and celebrates with one another.,is seen holding the disc breaks around and begins running around hitting a ball to a bat.,0\n1027,lsmdc3037_IRON_MAN2-16739,11056,\"Someone turns and glances down at the crate. In the hanger, the someone ii suit\",Someone turns and glances down at the crate.,\"In the hanger, the someone ii suit\",gold,approaches the high - skinned building.,is still reading at an open hole empty.,lies on a table.,sits down and someone's strap falls to his chest.,2\n1028,lsmdc3037_IRON_MAN2-16739,11057,\"In the hanger, the someone ii suit lies on a table. Standing beside someone, Major someone and another man\",\"In the hanger, the someone ii suit lies on a table.\",\"Standing beside someone, Major someone and another man\",gold,start a fight of a nazi a hunting match.,call out a filing wall.,pushes a creeping case on the support beam.,watch as someone removes the chest plate from the suit.,3\n1029,anetv_4o7Abew2ExY,6240,He stands up and pulls a fish out of the hole. He,He stands up and pulls a fish out of the hole.,He,gold,cuts the hook out of the fish and throws the fish on the ice.,walks over and points to the camera again.,shows a photo of one woman sitting with her.,puts something out of the hole in the sheet.,0\n1030,anetv_4o7Abew2ExY,6239,A man is sitting on a bucket ice fishing. He,A man is sitting on a bucket ice fishing.,He,gold,moves over the end of the rope to perform a bungee jump.,picks up the acolytes and walks ahead.,start doing her stunts on a very grassy mound.,stands up and pulls a fish out of the hole.,3\n1031,anetv_4o7Abew2ExY,6241,He cuts the hook out of the fish and throws the fish on the ice. He,He cuts the hook out of the fish and throws the fish on the ice.,He,gold,sits back down on the bucket.,shoots some fish suspiciously.,spits the tank right into the hole next to the ice.,picks up the fish and lets himself off the water.,0\n1032,lsmdc3090_YOUNG_ADULT-43906,1858,Someone sets her purse at the end of the bar and sits beside a short brown - haired man. He,Someone sets her purse at the end of the bar and sits beside a short brown - haired man.,He,gold,applies makeup to his mouth and kisses it on the forehead.,jogs outside one of the jammed seats to where someone's duct was listening.,sets it in front of someone as she checks her phone.,gets up from his chair and spots someone as she exits the studio.,2\n1033,lsmdc3090_YOUNG_ADULT-43906,1856,\"Someone smiles as she ends the call. Inside, Christmas lights and neon signs\",Someone smiles as she ends the call.,\"Inside, Christmas lights and neon signs\",gold,emerge from her window as she turns a sketch of a young woman in an apartment.,illuminate a short bar and pool table.,form a house nearby with bare patches.,\"fill the operating room, building her van, someone stops her.\",1\n1034,lsmdc3090_YOUNG_ADULT-43906,1859,The short man stares at her. She,The short man stares at her.,She,gold,\"places her hand on his shoulder, then looks up at the sky.\",pulls up and banks her hair to another side.,glances sideways at him then sips her drink.,\"smiles wordlessly at his grand park godfather, now.\",2\n1035,lsmdc3090_YOUNG_ADULT-43906,1857,\"Inside, Christmas lights and neon signs illuminate a short bar and pool table. Someone\",\"Inside, Christmas lights and neon signs illuminate a short bar and pool table.\",Someone,gold,sets the table past.,sets her purse at the end of the bar and sits beside a short brown - haired man.,fans out of view inside a suit.,someone holds him someone in a cheap dress coat.,1\n1036,lsmdc3090_YOUNG_ADULT-43906,1860,She glances sideways at him then sips her drink. She,She glances sideways at him then sips her drink.,She,gold,\"stops short, looks away, and nods.\",sets down her glass and studies her phone and turns to the short man.,holds up her hands.,tilts his head and licks it.,1\n1037,anetv_nDJgThY8zi8,13610,A woman went down from the stairs walked towards the cycling machine then started to pedal. The woman,A woman went down from the stairs walked towards the cycling machine then started to pedal.,The woman,gold,adjusted the chair by twisting the screw and then she pedals again.,is now dancing and at exercise.,started taking a fourth sideways shot while the person still stands aside.,s inside the desk and talked to the camera.,0\n1038,anetv_nDJgThY8zi8,3931,She gets on a cycle bike exercise machine and starts working out. She,She gets on a cycle bike exercise machine and starts working out.,She,gold,turns on the right.,picks up another bottle and drinks it.,adjusts the seat on the cycle bike.,slides the snow out of her feet using the exercise machine.,2\n1039,anetv_nDJgThY8zi8,3930,A woman is walking down stairs. She,A woman is walking down stairs.,She,gold,gets on a cycle bike exercise machine and starts working out.,are dancing in a parking.,\"and an exercise are added and then, the man with her jacket is getting a bit working at the same time, but by\",stops dancing and smiles at them.,0\n1040,anetv_euF5okzyaaA,11810,A group of people are seen riding horses down a beach as well as riding in a cart. They,A group of people are seen riding horses down a beach as well as riding in a cart.,They,gold,go turn as people play volleyball.,'re shown riding all around the beach in many shots as well as kissing the horses and speaking to one another.,push the horses down into the water.,\"see jumps again constantly, having seen the riders playing and holds up grass.\",1\n1041,anetv_euF5okzyaaA,11811,They're shown riding all around the beach in many shots as well as kissing the horses and speaking to one another. The,They're shown riding all around the beach in many shots as well as kissing the horses and speaking to one another.,The,gold,more people dive into their side while the camera pans around their movements as they surf.,people are shown kicking a curling ball with one another and occasionally laughing.,continue riding around and laughing with one another.,speak to another several bit afterwards and shows a proper way to deal.,2\n1042,anetv_euF5okzyaaA,455,The horses are shown against a tree. Several riders,The horses are shown against a tree.,Several riders,gold,are also standing around the field watching them.,ride along the beach again.,are being shown by the funeral.,are gathered to mount a sand area.,1\n1043,anetv_euF5okzyaaA,453,Four horse riders ride along the beach. Several horse riders,Four horse riders ride along the beach.,Several horse riders,gold,are seen walking down an aisle.,follow them down an ice dune.,push three feet one.,ride through a village.,3\n1044,lsmdc3037_IRON_MAN2-16887,14617,The arc reactor glows brighter and brighter. A crowd,The arc reactor glows brighter and brighter.,A crowd,gold,fills the great steel area before the tritium.,gathers inside the expo's glass - ribbed arena.,gathers around the factory has a drill facade around another room.,passes glowing blueprint and unwraps its chamber.,1\n1045,lsmdc3037_IRON_MAN2-16887,14616,Someone studies a web page on a computer monitor. Someone,Someone studies a web page on a computer monitor.,Someone,gold,grabs the reactor containing the new element and pops it into his chest.,has a bag over her head.,touches someone's chin.,drives double into a street.,0\n1046,lsmdc3037_IRON_MAN2-16887,14620,Someone and someone ascend a flight of steps into the arena. Spotlights,Someone and someone ascend a flight of steps into the arena.,Spotlights,gold,\"their way up imposing, someone paddles a large aerobic ring of fire at them.\",shine on someone as he dances onto the stage.,\"fly into the water, slipping through a huge glass of water.\",watch as they walk to a side mirror.,1\n1047,lsmdc3037_IRON_MAN2-16887,14618,\"A crowd gathers inside the Expo's glass - ribbed arena. Outside, someone, someone, and someone\",A crowd gathers inside the Expo's glass - ribbed arena.,\"Outside, someone, someone, and someone\",gold,plummet into the courtyard.,walk along the sidewalk towards the taj.,step out of a silver car.,stand on top of someone.,2\n1048,anetv_t0YXK4W_L7o,19903,A close up of a horse is seen followed by several people riding on a horses on a beach. One person is seen standing on the horse and the camera,A close up of a horse is seen followed by several people riding on a horses on a beach.,One person is seen standing on the horse and the camera,gold,zooms in on the man playing on horse.,watches her closely followed by several more shots of people riding in the back.,continues to follow the people riding along on the horses.,pans back over the area while the other rides along in horse care.,2\n1049,anetv_Yh6xzcNlAjo,15971,A person closes an oven door in a kitchen. There,A person closes an oven door in a kitchen.,There,gold,are sitting on the couch at a wooden table in front of them.,neon sugar jumps from a jar.,is a pan covered in cookies inside the oven.,is a dignified - looking woman in a gym.,2\n1050,anetv_Yh6xzcNlAjo,12052,A oven is open and two cookie trays are shown as the contents begin to bake. The people then,A oven is open and two cookie trays are shown as the contents begin to bake.,The people then,gold,continue playing all along the kitchen with the person pushing them while taking a huge bite of bread.,sit down and talk to each other behind the set.,discuss ingredients around a table with one putting cooking on the table and pans around to the camera.,take the cookies out of the oven and starts to talk to their customers.,3\n1051,anetv_BKRKHkkZq6g,4983,A man wearing a black shirt holds an exercise ball over another man wearing a light blue shirt performs sit - ups on an inclined bench. The man wearing the black shirt,A man wearing a black shirt holds an exercise ball over another man wearing a light blue shirt performs sit - ups on an inclined bench.,The man wearing the black shirt,gold,gives a tug and tightens his leg walks the length of the braid as the man removes him to give the okay sign.,drops the ball on the floor and crouches down and high fives the man performing the sit - ups.,starts doing arm moves in a gym with the weight around his arm and the point is muscle and movements.,demonstrates how to do anything too high.,1\n1052,anetv_pZzTMUJG9Rk,3507,Another trick is performed and later shown in slow motion. Two more tricks,Another trick is performed and later shown in slow motion.,Two more tricks,gold,are shown again covered ends and barely running websites.,are demonstrated by the duo and finally showed at a slowed down pace.,\"are shown while one man jumps in the back and continues doing some tricks along the road, then continue to watch a bit.\",pop down on fire and begin to stop.,1\n1053,anetv_pZzTMUJG9Rk,3504,A man is playing soccer with another across a field. He,A man is playing soccer with another across a field.,He,gold,'s words show his world how the participants are playing.,is playing the game with his hands.,performs a quick turn around move with the other following close behind.,hits the ball on his right and throws the ball again.,2\n1054,anetv_pZzTMUJG9Rk,3505,He performs a quick turn around move with the other following close behind. The same clip,He performs a quick turn around move with the other following close behind.,The same clip,gold,ends with the ref clapping.,is replayed over and over at slower speeds to better understand the trick.,is shown from several jumping pairs on the balcony.,is shown and his video of players quickly becoming.,1\n1055,anetv_pZzTMUJG9Rk,3506,The same clip is replayed over and over at slower speeds to better understand the trick. Another trick,The same clip is replayed over and over at slower speeds to better understand the trick.,Another trick,gold,is shown with 5 gallon clicks and different clips at the end.,with all chestnut begins and a young girl steps up to perform shanghai firmly with others.,is performed and later shown in slow motion.,is shown in the sand and then several pictures of shirtless girls playing are shown.,2\n1056,anetv_nUoN18FTeug,12636,There is a brown guitar bag behind her. She,There is a brown guitar bag behind her.,She,gold,stops playing and sets the guitar in her lap.,are on a tennis court.,is hitting the drums with the ball.,removes her guitar in the right way to get it in her ear.,0\n1057,anetv_nUoN18FTeug,12635,A little girl is playing an acoustic guitar. There,A little girl is playing an acoustic guitar.,There,gold,is a brown guitar bag behind her.,'s all text on the screen.,lady is holding the violin and while the woman is playing the drums.,shows the girl she is playing and the song plays.,0\n1058,anetv_nUoN18FTeug,11882,Little kid is in a white room with a pony tail is playing the guitar and singing. behind the girl,Little kid is in a white room with a pony tail is playing the guitar and singing.,behind the girl,gold,are sleeping poles with her hands in their lap as music plays in a dimly moving room.,is a guitar case hanging behind the door.,leans the bottle and two glasses of concentration.,is a brown elf building with red and red chalk.,1\n1059,anetv_nUoN18FTeug,11881,Little kid is standing in front of a camera playing guitar. little kid is in a white room with a pony tail,Little kid is standing in front of a camera playing guitar.,little kid is in a white room with a pony tail,gold,suggestively to her dog.,blowing away.,is playing the guitar and singing.,to a shirt and shirt.,2\n1060,anetv_aGlfi9PqRdY,17197,A large vegetable is being peeled and chopped. The chopped vegetable,A large vegetable is being peeled and chopped.,The chopped vegetable,gold,'s listed for the a man continues talking.,are cut into cake as a fairly soldier.,is being put into a different pot.,is talking as the woman continues playing with them.,2\n1061,anetv_aGlfi9PqRdY,17198,The chopped vegetable is being put into a different pot. Sugar,The chopped vegetable is being put into a different pot.,Sugar,gold,is added to the pot and put her around the pan.,is being put on top of the vegetables in the pots.,lie on the fence top over the drinks.,is chopped like vinegar on the top of a yellow pot.,1\n1062,anetv_aGlfi9PqRdY,17196,The sliced potato is put into a pot. A large vegetable,The sliced potato is put into a pot.,A large vegetable,gold,is being peeled and chopped.,shows how to remove ribs.,sit on a chopping top.,is shown and is making it a crack.,0\n1063,anetv_aGlfi9PqRdY,5130,They put the potato into a pot and the skin in a bowl. He finally,They put the potato into a pot and the skin in a bowl.,He finally,gold,pours it into a pot and gets into the pot.,puts salt in the pot.,puts all the noodles in the oven bowl containing a sandwich.,puts the dough into a bowl and puts black insides into it.,1\n1064,anetv_aGlfi9PqRdY,17194,A potato is being washed and peeled. The potato then,A potato is being washed and peeled.,The potato then,gold,puts the man ice on with a hanging product.,gets sliced on a board.,cuts onto a small bowl that peels the potato.,pour in the pan and add green pasta.,1\n1065,anetv_aGlfi9PqRdY,17195,The potato then gets sliced on a board. The sliced potato,The potato then gets sliced on a board.,The sliced potato,gold,is sliced into the bowl.,is burnt off with a spoon.,is poured onto the strawberries.,is put into a pot.,3\n1066,anetv_aGlfi9PqRdY,5129,A close up of ingredients are shown laid out on a table and leads into a person cutting up potatoes. They,A close up of ingredients are shown laid out on a table and leads into a person cutting up potatoes.,They,gold,places the eggs into the pan into a pot and mixes ingredients into the bowl.,conclude by a piece of a table as well as presenting pieces and making the bonds tracing out.,ends by speaking to the camera and mixing it around a plant.,put the potato into a pot and the skin in a bowl.,3\n1067,anetv_yslzj3NGuLU,9394,\"A woman removes the snow on the top of a car using a brush, also removes snow on the side windows and back window. After, the woman\",\"A woman removes the snow on the top of a car using a brush, also removes snow on the side windows and back window.\",\"After, the woman\",gold,shows doing a thick braid as the last man stands and goes back to talking to the camera.,takes a hose of snow and speeds in the air with a shovel.,lays the snow and uses the shovel to wipe the snow from the car.,continues taking snow from the hood of the car and the front window that has a lot of snow.,3\n1068,anetv_8EyYHnijfnI,13148,She then pierces it with a needle. She,She then pierces it with a needle.,She,gold,puts a piece of jewelry on it next.,puts the welding pencil in.,plugs it and changes to two inserts.,picks up her other outfit and holds a sign that is behind it.,0\n1069,anetv_8EyYHnijfnI,13146,A woman sits in a chair. Another woman,A woman sits in a chair.,Another woman,gold,stands in front wearing the camera while filing through the hair.,is in a set discussing.,nudges her ankle in the cat's lap.,puts something up her nose.,3\n1070,anetv_8EyYHnijfnI,13147,Another woman puts something up her nose. She then,Another woman puts something up her nose.,She then,gold,faces the water and starts piercing her hair.,begins to brush her teeth.,opens it windows to show a logo.,pierces it with a needle.,3\n1071,anetv_Ne8UzAInivM,17754,They get in their boat and drive. They,They get in their boat and drive.,They,gold,jump under the water again.,drive way to the raft set.,\"snow has covered the square with his hand,.\",dry down the hill.,0\n1072,anetv_Ne8UzAInivM,17752,A scuba diver is swimming through the water on a video game. They,A scuba diver is swimming through the water on a video game.,They,gold,are explaining on cities different techniques for their competitive techniques.,are looking through rubble of an old ship.,\"are in a swimming pool, down between them, dancing together.\",are shown tubing fast in bed.,1\n1073,anetv_Ne8UzAInivM,17753,They are looking through rubble of an old ship. They,They are looking through rubble of an old ship.,They,gold,get in their boat and drive.,\"glances thoughtful, then turns to the men to sits down, staring back with her lover, who turns and speaks.\",signs in the big family picture.,\"struggle desperately to stay free, which are drawn on the surface.\",0\n1074,lsmdc1048_Gran_Torino-92502,12989,\"At a tailor's, someone is fitted for a suit. In church, someone\",\"At a tailor's, someone is fitted for a suit.\",\"In church, someone\",gold,drops the stack of boxes on the floor.,watches bitterly as he passes from the museum.,walks up the aisle reading a bible.,watches a video monitor.,2\n1075,lsmdc1048_Gran_Torino-92502,12990,\"In church, someone walks up the aisle reading a Bible. He\",\"In church, someone walks up the aisle reading a Bible.\",He,gold,glances at the scene in the open book.,looks into into the present and reaches into his shirt pocket.,looks up and sees someone.,rides in a portable chair and opens up a bunch of weeds.,2\n1076,anetv_rosZj4ZcPBA,2523,He is wearing a hat and jeans and just out there by himself. He,He is wearing a hat and jeans and just out there by himself.,He,gold,gives her food to him.,opens the restaurant door and stares at someone blankly.,is seen in the uniform still strapped to his vest and back sunglasses and he is trimming his sides and quickly burned his muscles.,continues to keep blowing the pile of leaves when a dog runs by out of nowhere.,3\n1077,anetv_rosZj4ZcPBA,2522,He seems to be at a park or something in the parking lot. He,He seems to be at a park or something in the parking lot.,He,gold,is wearing a hat and jeans and just out there by himself.,turns the edge up and slumps her body off to the slide.,\"looks out front, runs his fingers down the pane to the deserted office.\",\"moves the lawn mower, then gets off top of the lawn mower.\",0\n1078,anetv_rosZj4ZcPBA,2521,Outside a man is using a leaf blower using it to blow a pile of leaves. He,Outside a man is using a leaf blower using it to blow a pile of leaves.,He,gold,pushes off his feet to get a better look.,seems to be at a park or something in the parking lot.,awakes and curled up in a car while the camera walks outside.,waves back to let men play.,1\n1079,lsmdc3016_CHASING_MAVERICKS-6300,6162,\"Someone shifts his conflicted gaze. Looking down, he\",Someone shifts his conflicted gaze.,\"Looking down, he\",gold,finds his wife's delicate features set in a solemn expression.,\"picks up her bearings wagon, sees it through another drawer, and lets her into his room.\",finds his mistress's eye shadow framed in a dark window pout.,rolls his eyes as a spotlight descends off on.,0\n1080,lsmdc3016_CHASING_MAVERICKS-6300,6176,\"Someone takes a folded page from the teen and opens it. As he looks it over, he\",Someone takes a folded page from the teen and opens it.,\"As he looks it over, he\",gold,forces a smile and cycles up to his restaurant by someone now holding his laptop.,finds a bald teenage and smiling at the photo of her old friend.,\"reads a text message, which reads 10 years earlier.\",lifts his brow and nods.,3\n1081,lsmdc3016_CHASING_MAVERICKS-6300,6169,\"She remains curled up on her belly. At a sink piled high with dirty dishes, someone\",She remains curled up on her belly.,\"At a sink piled high with dirty dishes, someone\",gold,sits on the top.,peeks into the apartment where she washes with the penguins.,\"shakes out a cup, then fills it with coffee and shifts his anxious gaze.\",sits on a hypodermic with it in his palm.,2\n1082,lsmdc3016_CHASING_MAVERICKS-6300,6166,\"Now, a wall clock reads 6: 25. Heading out the door, someone\",\"Now, a wall clock reads 6: 25.\",\"Heading out the door, someone\",gold,finds himself beside him as he reads.,checks the order machine pot and puts the bottle in someone's bag.,comes downstairs in the davenport.,finds a set of keys on a table.,3\n1083,lsmdc3016_CHASING_MAVERICKS-6300,6165,\"She steps out of the kitchen. Now, a wall clock\",She steps out of the kitchen.,\"Now, a wall clock\",gold,reads 1 - 4.,reads 1: 1.,shows pulsing rings on.,reads 6: 25.,3\n1084,lsmdc3016_CHASING_MAVERICKS-6300,6172,Someone flips through the old photos documenting his childhood. One,Someone flips through the old photos documenting his childhood.,One,gold,\"guards tug on the man's curved hallway bars, the children boys dance broadly.\",desperately covers a time with someone's wand.,pins up his mitt.,shows him on skis in the snow.,3\n1085,lsmdc3016_CHASING_MAVERICKS-6300,6178,\"Inside, someone eats a chocolate cupcake. Someone\",\"Inside, someone eats a chocolate cupcake.\",Someone,gold,waits at the theater.,steals a look at a test.,\"grabs the cupcake from him, eyes it, then tosses it in the back.\",spots him and catches herself so she greets her dog who joins her.,2\n1086,lsmdc3016_CHASING_MAVERICKS-6300,6163,\"Looking down, he finds his wife's delicate features set in a solemn expression. Someone\",\"Looking down, he finds his wife's delicate features set in a solemn expression.\",Someone,gold,steps over and opens the pants.,finds someone staring at her in amazement.,hangs his head and nods.,rubs food on his chin.,2\n1087,lsmdc3016_CHASING_MAVERICKS-6300,6170,\"At a sink piled high with dirty dishes, someone shakes out a cup, then fills it with coffee and shifts his anxious gaze. Now, someone's van\",\"At a sink piled high with dirty dishes, someone shakes out a cup, then fills it with coffee and shifts his anxious gaze.\",\"Now, someone's van\",gold,sits on a handicapped spot.,is parked at the base of the train.,sits in the pouring rain outside his house.,sits down behind the truck.,2\n1088,lsmdc3016_CHASING_MAVERICKS-6300,6179,\"Someone grabs the cupcake from him, eyes it, then tosses it in the back. He\",\"Someone grabs the cupcake from him, eyes it, then tosses it in the back.\",He,gold,remembers that being filmed on tv.,\"flips it open and watching this crazy old man, his face short with grey, angry eyes.\",stops writing and frowns.,tosses down a sandwich.,3\n1089,lsmdc3016_CHASING_MAVERICKS-6300,6175,Someone arrives and climbs in. Someone,Someone arrives and climbs in.,Someone,gold,comes up the back steps.,cooks a meal on the stove.,takes a folded page from the teen and opens it.,gets a bit dirty and can now just clean up.,2\n1090,lsmdc3016_CHASING_MAVERICKS-6300,6164,Someone hangs his head and nods. She,Someone hangs his head and nods.,She,gold,smiles and offers his hand.,crosses to someone's apartment in bed.,sits down from him.,steps out of the kitchen.,3\n1091,lsmdc3016_CHASING_MAVERICKS-6300,6177,\"As he looks it over, he lifts his brow and nods. Inside, someone\",\"As he looks it over, he lifts his brow and nods.\",\"Inside, someone\",gold,joins him at the edge of the auditorium as he watches a rubbing someone with his foot.,smooths out a long glass of hair and takes the rest of the ladies hair.,draws a pen and gazes at the plaque.,eats a chocolate cupcake.,3\n1092,lsmdc3016_CHASING_MAVERICKS-6300,6167,\"Heading out the door, someone finds a set of keys on a table. Someone\",\"Heading out the door, someone finds a set of keys on a table.\",Someone,gold,pulls on an extension and hands it to her.,waits with the bags stash her purse inside.,opens her door then turns on a shower.,turns someone in the direction of an ambulance's wooden doors.,2\n1093,lsmdc3016_CHASING_MAVERICKS-6300,6168,Someone opens her door then turns on a shower. She,Someone opens her door then turns on a shower.,She,gold,goes to door off the car and falls back over.,remains curled up on her belly.,gets out and opens the doors.,unlocks a metal vent and places her feet back on.,1\n1094,anetv_DbZ0ns9s2X0,16576,A person's hand then begins putting marks on the painting and dipping her brush continuously in the paint. The camera pans down the finished picture and a text,A person's hand then begins putting marks on the painting and dipping her brush continuously in the paint.,The camera pans down the finished picture and a text,gold,fly up over the screen.,is the product appears on its screen.,is shown across the screen.,is seen with the people pointing at the camera as well as people.,2\n1095,anetv_DbZ0ns9s2X0,16575,A painting is shown followed by several pictures of painting tools and supplies. A person's hand then,A painting is shown followed by several pictures of painting tools and supplies.,A person's hand then,gold,begins putting marks on the painting and dipping her brush continuously in the paint.,pierces the tree with gray paint.,begins cutting the wood.,begins cutting the nails of the cat's nails.,0\n1096,anetv_485DjSbjOV8,6326,Two people are seen standing up behind a set of drums looking at the camera. The two then,Two people are seen standing up behind a set of drums looking at the camera.,The two then,gold,begin playing the drums while a small girl walks in and out of frame.,continue playing drums with one another while speaking to the camera.,begin playing with one another while people watch on the sides.,begin playing the flute and lead into them playing around one another as well as speaking.,0\n1097,anetv_485DjSbjOV8,6327,The two then begin playing the drums while a small girl walks in and out of frame. The two,The two then begin playing the drums while a small girl walks in and out of frame.,The two,gold,pause for a moment then continue playing with one stopping and letting the other finish.,continue to play while the band records on the end.,continuously continue playing the instrument while the audience watches.,end up together dancing with one another and holding out various objects while the camera captures them.,0\n1098,lsmdc0012_Get_Shorty-53494,13359,And he leans over and kisses her. People,And he leans over and kisses her.,People,gold,lie in bed together.,turns to face someone but finds most of his face already.,are in the dock in the bath.,guard primps his shirt.,0\n1099,lsmdc0012_Get_Shorty-53494,13358,\"He looks at her, puts his drink down. And he\",\"He looks at her, puts his drink down.\",And he,gold,leans over and kisses her.,\"starts to leave, his expression is serene with intense intense intensity.\",allows a brief smile.,stands there for a moment then nods.,0\n1100,lsmdc3080_THIS_MEANS_WAR-37125,3895,He takes off his sunglasses and she does the same. They,He takes off his sunglasses and she does the same.,They,gold,sit across from each other.,are having sex in another lead.,jumps down and takes buckets of disconnected heat.,sixth screen shows different people randomly throughout the city.,0\n1101,lsmdc0027_The_Big_Lebowski-63160,5106,\"Someone ignores someone, addresses the Germans. The Germans\",\"Someone ignores someone, addresses the Germans.\",The Germans,gold,aims her wand at someone's head and starts to get up.,\"confer again, in german.\",nudges a milkman then watches as robot's head pops up.,are green and full of fat.,1\n1102,lsmdc0027_The_Big_Lebowski-63160,5109,\"Louder, to the Germans, as he looks in his wallet. With a ring of steel, someone\",\"Louder, to the Germans, as he looks in his wallet.\",\"With a ring of steel, someone\",gold,gets the sheriff tape.,slips out a puzzled puff of his cigarette as his uncle takes out its keys.,speaks about masked guards.,produces a glinting saber.,3\n1103,lsmdc0027_The_Big_Lebowski-63160,5107,\"Someone's eyes, burning with hatred, are locked on someone's. Someone\",\"Someone's eyes, burning with hatred, are locked on someone's.\",Someone,gold,screams into the boat's chaos.,leads down a ladder.,is digging into his pocket.,\"pulls towards the diadem, three times knocked in.\",2\n1104,anetv_p-l6as8o1f4,2105,A man and a woman walks pulling a horse. When the people cross the last river they,A man and a woman walks pulling a horse.,When the people cross the last river they,gold,see a beautiful building.,return to the riverbank.,kiss around under the water.,proceed for a race.,0\n1105,anetv_p-l6as8o1f4,2104,People rides horses on an unpaved road and cross tree river in the forest. A man and a woman,People rides horses on an unpaved road and cross tree river in the forest.,A man and a woman,gold,walks pulling a horse.,are standing to remove their bike.,walk to a playground.,are then playing horses and is dragged to the shore and goats and talking.,0\n1106,anetv_p-l6as8o1f4,5541,\"All of a sudden, a small barn is shown and several people begin horse back riding throughout the wilderness. As they travel, the horse\",\"All of a sudden, a small barn is shown and several people begin horse back riding throughout the wilderness.\",\"As they travel, the horse\",gold,has completely stopped when people take their seats.,enters a body of water walking through the river and back into the forest of trees.,begins and several members are seen talking to each other while talking to one another on its side.,gets stuck in a path path making sure it has to turn left towards the horse.,1\n1107,anetv_p-l6as8o1f4,5540,\"A brown horse's hooves are seen walking over a trail of rocks and walking to a small body of water. All of a sudden, a small barn is shown and several people\",A brown horse's hooves are seen walking over a trail of rocks and walking to a small body of water.,\"All of a sudden, a small barn is shown and several people\",gold,are riding on horses on horses going over the waterfall.,are laying back in the corner.,begin horse back riding throughout the wilderness.,are shown running for it.,2\n1108,anetv_CZGDWYYkO-U,18381,A girl wearing glasses is seen speaking to the camera that leads into her taking them off and holding them to her camera. She then,A girl wearing glasses is seen speaking to the camera that leads into her taking them off and holding them to her camera.,She then,gold,lines up various ingredients and putting them on to show a bottle making powder and then mixing it into the shaker.,begins to get the makeup on the nails and takes the brush off of the head and into the bathroom.,holds up various items and holds her eye open to put in contact lens for both eyes.,begins immediately demonstrating how to use the machine on the side and sides to cut without keeping an eye on her.,2\n1109,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61006,10499,\"A sudden wind rushes through the tent, lifting hangings, scattering maps, knocking over goblets. As someone looks at someone, an image\",\"A sudden wind rushes through the tent, lifting hangings, scattering maps, knocking over goblets.\",\"As someone looks at someone, an image\",gold,flashes in his mind's eye.,falls out of the crate.,of a cube facility is displayed.,\"slows on them: our perspective, with only a thousand words.\",0\n1110,anetv_4fgIHu_Se3Q,14570,\"He mounts quickly, spinning and turning around it and jumping between the two bars several times. He finally\",\"He mounts quickly, spinning and turning around it and jumping between the two bars several times.\",He finally,gold,gets to his feet and rides up the hill and then then running about jumping several times afterwards.,comes back chained on the ground and sprints for another piece of the athlete while leading him out of the way.,\"dismounts, throwing his arms into the air before walking away.\",\"stops and sits in a raft down the stairs somewhat thoroughly at the same time, more but is completely empty.\",2\n1111,anetv_4fgIHu_Se3Q,14569,An athlete walks up to a beam. He,An athlete walks up to a beam.,He,gold,\"lifts the pole to one place, and then jumps off the pummel machine.\",does a gymnastics routine on the mat.,leaps into the pit and throws another disc.,\"mounts quickly, spinning and turning around it and jumping between the two bars several times.\",3\n1112,anetv_6h-WE-0eBlA,16869,A woman in a pink bikini spins her cue as she waits her turn. Then she,A woman in a pink bikini spins her cue as she waits her turn.,Then she,gold,\"flips the hula hoops to someone, who sits before the video line.\",passes the ball with a colored ball and throws it in the air backwards.,points to her to the camera.,\"takes a shot at the ball, knocking them into the holes.\",3\n1113,anetv_6h-WE-0eBlA,16868,\"A man is leaning over a pool table, hitting the ball with his cue. A woman in a pink bikini\",\"A man is leaning over a pool table, hitting the ball with his cue.\",A woman in a pink bikini,gold,is holding them toy.,is standing next to him watching the game.,walks on the floor.,spins her cue as she waits her turn.,3\n1114,anetv_MRzsZN5p9QY,10027,A man bends down and picks up a weight. They,A man bends down and picks up a weight.,They,gold,lifts it over his head.,makes it upside down before fully sponsored from a variety.,throw the other again.,lift the weight up and down several times.,3\n1115,anetv_MRzsZN5p9QY,10028,They lift the weight up and down several times. They,They lift the weight up and down several times.,They,gold,begin kicking the ball around while drinking.,do push ups back and forth.,drop the weight onto the ground.,move their hands back and forth.,2\n1116,anetv_6ZabZdqdLyA,6364,\"The other child also wants to join the first child on the same swing, and holds the swing steady while the child climbs on. The child is able to climb on, and the two children\",\"The other child also wants to join the first child on the same swing, and holds the swing steady while the child climbs on.\",\"The child is able to climb on, and the two children\",gold,sit on the ground paying them to the baby.,try to help him down.,enjoy swinging together as the adult pushes the swing forward.,continue to swing and get their paddles.,2\n1117,anetv_6ZabZdqdLyA,6361,Two small children are playing on a swingset on a snow covered yard. One child,Two small children are playing on a swingset on a snow covered yard.,One child,gold,\"runs over to a swingset, but decides to change over to a green swing.\",throws down a pinata as people run down and full of people.,marches up next to a raking tree.,talks to kids as they float together in the back yard.,0\n1118,anetv_6ZabZdqdLyA,6362,\"One child runs over to a swingset, but decides to change over to a green swing. An adult\",\"One child runs over to a swingset, but decides to change over to a green swing.\",An adult,gold,\"sits inside the bar for a moment, then pauses to speak to the camera.\",helps the child onto the swing.,\"comes to hula hoops, then goes to iron trampoline, and then forms a pyramid.\",walks behind him and start swinging at the pinata.,1\n1119,anetv_6ZabZdqdLyA,6363,An adult helps the child onto the swing. The other child,An adult helps the child onto the swing.,The other child,gold,moves a little more time to swing while another swing in the air.,smiles at the camera while the child shakes her neck.,gets on a swing and the boy tries to help the two boys.,\"also wants to join the first child on the same swing, and holds the swing steady while the child climbs on.\",3\n1120,anetv_W2Wjbhsuacw,18670,It is catching nicely and the woods is burning quick. The fire,It is catching nicely and the woods is burning quick.,The fire,gold,holds up in the dimly lit street.,rolls in flames which fills the house.,dies down a little but is still burning.,goes out when the gates start to lit.,2\n1121,anetv_W2Wjbhsuacw,18669,Outside in a bucket there is some wood and someone come out and starts to blow something on it. He,Outside in a bucket there is some wood and someone come out and starts to blow something on it.,He,gold,gets perfectly slapped and comes there.,\"can be seen using the smaller gun, which contains metal with fine, brown leaves.\",\"is still in the yard doing tricks, then he has try to open the patch of hair once again.\",is blowing fire on to it with some kind of fire contraption that looks like a gardening tool.,3\n1122,lsmdc3092_ZOOKEEPER-45302,17118,\"As they move apart, we see someone watching. Someone\",\"As they move apart, we see someone watching.\",Someone,gold,\"slips past, avoiding someone.\",watches as people stagger away.,slides his bony hand over the cord dangling and draws it.,turns to the woman at her table.,3\n1123,anetv_5DhbyYavYp4,17236,Another man is giving instructions on lawn and garden care. The man,Another man is giving instructions on lawn and garden care.,The man,gold,stands in front of a piece of trees near the leaves of a war log just placed on the ground.,climbs up a tall ladder to trim the trees and bushes several times.,grabs two paws to see how to play with a cat and then stop a man blowing leaves.,is mowing a log on the yard.,1\n1124,anetv_5DhbyYavYp4,17237,The man climbs up a tall ladder to trim the trees and bushes several times. He,The man climbs up a tall ladder to trim the trees and bushes several times.,He,gold,is lifted down from her body and meet her on the ground.,goes around the entire side to trim the hedges.,\"is using fence paper to insert the canvas office on family sparks, lighting back in the original tool.\",beats him again and does.,1\n1125,anetv_5DhbyYavYp4,17239,\"The instructor continues talking about the gardening process, The man trims the hedges that form a barrier near a house. The instructor\",\"The instructor continues talking about the gardening process, The man trims the hedges that form a barrier near a house.\",The instructor,gold,watches other children on the side of the finish line.,climbs up a wooden bar of the hedge and begins to weave.,explains the process again to the viewers.,starts up a third set.,2\n1126,anetv_5DhbyYavYp4,17234,There is a garden with many trees and shrubs. There,There is a garden with many trees and shrubs.,There,gold,are many houses next to them.,is a man using a hedging and trimming equipment trimming the bushes.,are shown kids watching on the side.,seems to be having fun.,1\n1127,anetv_5DhbyYavYp4,17235,There is a man using a hedging and trimming equipment trimming the bushes. Another man,There is a man using a hedging and trimming equipment trimming the bushes.,Another man,gold,\"walks in behind a hedge, cutting the hedge.\",is shown using a stick to hit bowling pins.,is giving instructions on lawn and garden care.,is seen behind the camp demonstrating how to reach a hedge and row them around.,2\n1128,anetv_5DhbyYavYp4,17240,The instructor explains the process again to the viewers. The scene,The instructor explains the process again to the viewers.,The scene,gold,changes to a strange looking statue in a busy city and ends with a thank you for watching message.,ends with a man opening his face and looking down at a plate of leg treatment.,fades back to someone who has finished work on her own piece.,fades to black and the girl blinks off off the skin tattoos underneath the bar.,0\n1129,anetv_5DhbyYavYp4,17238,\"He goes around the entire side to trim the hedges. The instructor continues talking about the gardening process, The man\",He goes around the entire side to trim the hedges.,\"The instructor continues talking about the gardening process, The man\",gold,appears with clippers and melts the hedge using a pair of shears.,messing up face blocks behind him.,trims the hedges that form a barrier near a house.,puts different things offscreen and then walks away.,2\n1130,anetv_HrWr7FmBYn4,1038,A woman is seen speaking to a camera and leads into herself with wet hair and brushing it through. Her hair is snow dry and she,A woman is seen speaking to a camera and leads into herself with wet hair and brushing it through.,Her hair is snow dry and she,gold,is combing the hair tan.,pulls out more pictures of the dog.,also shows the scene transitions to pictures of iron woman working on a hair.,puts clips into her hair and begins curling.,3\n1131,anetv_ZOczr9WCVig,18517,He hammers the tiles a little to make them lie flat. Then floor is now finished and he,He hammers the tiles a little to make them lie flat.,Then floor is now finished and he,gold,moves the red carpet back to the wall paper that is attached to the wall and lays down onto his flat floor.,paints the floorboards beneath.,wipes the tiles off making them shiny.,is given the carpet and continues cleaning the floor at the windows.,2\n1132,anetv_ZOczr9WCVig,18512,\"There are many different tiles being shown and there is wooden floors being shown. First the man removes the baseboard, then he\",There are many different tiles being shown and there is wooden floors being shown.,\"First the man removes the baseboard, then he\",gold,begins to clean more pointy.,takes an measure cup and shorter cloth when the people start site done.,gets a drill and puts screws in the floor.,takes out the bottles such as support girders.,2\n1133,anetv_ZOczr9WCVig,18516,Then he smears cement onto the floor and lies the tiles on top of it. He,Then he smears cement onto the floor and lies the tiles on top of it.,He,gold,\"shows the mechanism to stand backwards using the metal work, measuring the carpet.\",finds that he was in freshly the parapet as he comes down basement where there are the keys and meters left below.,welds the detail onto the carpet and slides it onto the tiles.,hammers the tiles a little to make them lie flat.,3\n1134,anetv_ZOczr9WCVig,18513,\"First the man removes the baseboard, then he gets a drill and puts screws in the floor. Then he\",\"First the man removes the baseboard, then he gets a drill and puts screws in the floor.\",Then he,gold,puts the bread on and does a strip down the tiles.,draws lines to put tiles on the floor.,lifts the weight lifter however and holds it up.,transfers the piece the pieces and then shows how to make a charming drink and the kitchen glass.,1\n1135,anetv_ZOczr9WCVig,18514,Then he draws lines to put tiles on the floor. I then,Then he draws lines to put tiles on the floor.,I then,gold,see him with a machine that cuts tiles in half and he puts half of a tile on the floor.,see the skin to hit the metal.,see another little opening displaying the names.,\"see it, and across.\",0\n1136,anetv_ZOczr9WCVig,18515,I then see him with a machine that cuts tiles in half and he puts half of a tile on the floor. Then he,I then see him with a machine that cuts tiles in half and he puts half of a tile on the floor.,Then he,gold,\"takes a slip of folding paper, and is used using a stone to clean the soap professionally.\",stands up and the camera pulls back.,puts a plaster on a wall.,smears cement onto the floor and lies the tiles on top of it.,3\n1137,anetv_DQVkDzj4cPE,10067,They begin to kick their legs in the pool. They,They begin to kick their legs in the pool.,They,gold,swim with little boards in front of them.,sit by the table several times.,begin to buzz on something.,pull it back into motion.,0\n1138,anetv_DQVkDzj4cPE,7797,Two people are laying stomach side down in a shallow pool. They,Two people are laying stomach side down in a shallow pool.,They,gold,leave a hole in the water.,make their way to the beach.,start kicking the water with their legs.,get off the water.,2\n1139,anetv_DQVkDzj4cPE,7798,They start kicking the water with their legs. They,They start kicking the water with their legs.,They,gold,get the opposing goal.,see the gap and bungee roping.,go down the court to the right only to put on ball on the floor.,grab flotation devices and practice swimming with them.,3\n1140,anetv_DQVkDzj4cPE,10066,Two people are laying in a swimming pool. They,Two people are laying in a swimming pool.,They,gold,swim strongly on the lacrosse pool.,begin to kick their legs in the pool.,see someone swimming in the ocean.,splash each other as they go.,1\n1141,anetv_GvvmZ1Bi1xk,17965,A woman pushes a lawn mower through the grass. The lady,A woman pushes a lawn mower through the grass.,The lady,gold,starts raking the lawn.,lifts the mower and backs up.,spins the toy mower around the yard.,pulls the leaves of a leaf blower.,1\n1142,anetv_zBm3FR-CCI0,11726,The plate landed on the field and the people in the field go after the field. The athlete,The plate landed on the field and the people in the field go after the field.,The athlete,gold,race in a circle back and forth.,gets up and runs across the field to another person and runs across a field.,is in a netted fence where they throw their metal plate to the field.,\"runs up the track, win with all the winners in number 4.\",2\n1143,anetv_zBm3FR-CCI0,7226,\"He throws the disc across the field, and it is repeated a few times. Many athletes\",\"He throws the disc across the field, and it is repeated a few times.\",Many athletes,gold,\"throw the ball around the room trying, but that.\",do slow flips numerous times.,join the rope and.,\"are shown doing the same, the winner raising his arms in celebration.\",3\n1144,anetv_W0dCIs9Y8yg,17466,The camera follows a small child on skis as he or she maneuvers past a crowd of people. The child,The camera follows a small child on skis as he or she maneuvers past a crowd of people.,The child,gold,skis down a slope with other people at various points along the trail.,lands ready on his left.,gets back and grips his arms.,continues moving up and down the hill on the lawn and looking to the camera.,0\n1145,anetv_kS_wMOFfMDk,12297,\"A woman rubs her hand very well. Then, the woman\",A woman rubs her hand very well.,\"Then, the woman\",gold,stand and clutch tissue.,turns right into the bucket and wash the dishes.,rinse her hands with water.,inserts the heart of the file with a grey machine.,2\n1146,lsmdc1048_Gran_Torino-92209,12810,The black guys notice someone. Someone,The black guys notice someone.,Someone,gold,stops in the waiting position.,steps out of his pickup.,arrives over a locked gate outside the boy's coffin.,\"sits a few feet red, frowning.\",1\n1147,lsmdc1048_Gran_Torino-92209,12809,\"Looking uneasy, someone drives across the junction. Someone\",\"Looking uneasy, someone drives across the junction.\",Someone,gold,receives shots of the cameras.,ducks behind a fallen man.,pulls up beside them.,carries a covered bag.,2\n1148,lsmdc1048_Gran_Torino-92209,12812,The guys hold someone back. Someone,The guys hold someone back.,Someone,gold,bundles passengers off the counter.,carries the sedan to the car where someone dash out of the car and out of his car.,pulls a colt.,motion the penguins at someone.,2\n1149,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7155,18340,\"Someone stares back into someone's scarred face, then walks away looking confused. Someone\",\"Someone stares back into someone's scarred face, then walks away looking confused.\",Someone,gold,picks up a robe and places it next to the blanket on the floor.,gets to his feet and puts on his gear.,\"closes the chamber, runs along dead night and jumps over the wall, slamming themselves together.\",swigs from his hip flask.,3\n1150,anetv_IV47aK7qJdY,6653,\"The dry brown and yellow leaves are on the ground, on top of green grass. A man with a leaf blower on his hand\",\"The dry brown and yellow leaves are on the ground, on top of green grass.\",A man with a leaf blower on his hand,gold,started to blew the leaves towards the center of the field.,\"tries to swing his lawn mower to work to beat his porch, then he turns it around and walks away.\",briefly clicks the whistle of the leaf blower.,leads a leaf blower down a sidewalk.,0\n1151,anetv_k_7hLIwul48,5035,The host walks up to the dart board to see the darts. Mike Tyson,The host walks up to the dart board to see the darts.,Mike Tyson,gold,takes the blindfold off.,jumps through a porthole they scores.,puts a dispenser machine in a base.,continues to shoot - slam his stomach on a dart board.,0\n1152,anetv_k_7hLIwul48,17160,A man is seen blind folded on a stage and a woman hands him darts while speaking to him. The man then throws the darts and the woman,A man is seen blind folded on a stage and a woman hands him darts while speaking to him.,The man then throws the darts and the woman,gold,continues to run in circles on the plates.,stands and runs looking out of the window.,laughs at his results while he takes the blindfold off.,looks hard at the cups.,2\n1153,anetv_k_7hLIwul48,5032,Mike Tyson is on a show blindfolded as he throws darts. The host of the show,Mike Tyson is on a show blindfolded as he throws darts.,The host of the show,gold,speaks into several different various videos of decorating a blue.,gives him darts as she stands beside him.,employees interviews him in several different games.,is shown in the background as man throws street balls with his stick.,1\n1154,anetv_k_7hLIwul48,5033,The host of the show gives him darts as she stands beside him. He throws three darts and the last two,The host of the show gives him darts as she stands beside him.,He throws three darts and the last two,gold,guys scowl down at a bowling ball.,get a bulls eye as the host and audience gasp in excitement at what happened.,take a third prisoner by the nose.,throws the clown to the track.,1\n1155,anetv_k_7hLIwul48,5034,He throws three darts and the last two get a bulls eye as the host and audience gasp in excitement at what happened. The host,He throws three darts and the last two get a bulls eye as the host and audience gasp in excitement at what happened.,The host,gold,lowers himself and begins talking before the man drinks face first from one drink.,walks up to the dart board to see the darts.,shows off her diapers up.,demonstrates different games of break dancing matches.,1\n1156,anetv_2yjRePOzYq4,9189,\"A man skips on a truck signed with white lines, when he arrives to the third line jumps high and lands in the sandbox. The playback of a man performing long jump\",\"A man skips on a truck signed with white lines, when he arrives to the third line jumps high and lands in the sandbox.\",The playback of a man performing long jump,gold,takes a pole and then bungee ties hold it.,splits and standing on a dock while the man worktable immediately jumps around as the fencers reach behind him.,is show several times.,has a long jump.,2\n1157,lsmdc0043_Thelma_and_Luise-68203,8320,\"He holds both of her arms with one hand. With his free hand, he\",He holds both of her arms with one hand.,\"With his free hand, he\",gold,swings her over a shoulder.,strikes the shaft with his fist.,backs away from his frame and swings down at his sides.,reaches down and starts to pull her dress up.,3\n1158,lsmdc0043_Thelma_and_Luise-68203,8309,She goes over to the table and sees someone's stuff there. She,She goes over to the table and sees someone's stuff there.,She,gold,picks up the check and looks at it.,turns towards the waiter and offers a fork for someone.,\"suddenly crosses a street, clutching a bottle that looks shocked.\",someone is sitting lightly on the floor in front of him.,0\n1159,lsmdc0043_Thelma_and_Luise-68203,8325,\"Someone starts to back away, but the gun is still close to his face. His pants\",\"Someone starts to back away, but the gun is still close to his face.\",His pants,gold,are trapped on the door attached to them.,are undone in the front.,moved up to light someone's menacing face.,falls under the blade.,1\n1160,lsmdc0043_Thelma_and_Luise-68203,8318,He looks mean and dangerous. He,He looks mean and dangerous.,He,gold,is in a horse.,lets go of her face and pins her arms behind her.,\"runs forward, keeping his hot dog.\",hurries through a sports market and models cars.,1\n1161,lsmdc0043_Thelma_and_Luise-68203,8331,\"Someone takes two long strides back towards him, raises the gun and fires a bullet into his face. The car behind him\",\"Someone takes two long strides back towards him, raises the gun and fires a bullet into his face.\",The car behind him,gold,is closed.,is splattered with blood.,explodes into someone 'grasp.,\"lies face down and killing him, flying away in an agonized expression.\",1\n1162,lsmdc0043_Thelma_and_Luise-68203,8321,\"With his free hand, he reaches down and starts to pull her dress up. Someone is still struggling and there\",\"With his free hand, he reaches down and starts to pull her dress up.\",Someone is still struggling and there,gold,are tears running down her face.,is a huge grin on her face.,is also a large branch that is flung aside.,is then a stack of his hands as he is about to fight.,0\n1163,lsmdc0043_Thelma_and_Luise-68203,8327,She is still backing away with the gun raised. Someone,She is still backing away with the gun raised.,Someone,gold,gets watching with a grin.,\"stoops down carefully, gripping on his pistol and stabs it at her.\",reaches forward and watches someone go.,is inching away as well.,3\n1164,lsmdc0043_Thelma_and_Luise-68203,8333,Someone comes careening up in reverse. Someone hops in and someone,Someone comes careening up in reverse.,Someone hops in and someone,gold,rushes down the staircase.,\"peels out, spraying gravel.\",drops him into his lap.,leaps out of the house.,1\n1165,lsmdc0043_Thelma_and_Luise-68203,8335,\"As they speed out of the parking lot back to the road, we hear music blaring from the nightclub. They\",\"As they speed out of the parking lot back to the road, we hear music blaring from the nightclub.\",They,gold,hit the main road with tires squealing.,is lying in front of only enough to reach a gauge.,\"switch and say goodbye and get out, there a word for someone.\",slips out through the stalls that surreptitiously problems through the newspaper.,0\n1166,lsmdc0043_Thelma_and_Luise-68203,8334,\"Someone hops in and someone peels out, spraying gravel. As they speed out of the parking lot back to the road, we\",\"Someone hops in and someone peels out, spraying gravel.\",\"As they speed out of the parking lot back to the road, we\",gold,zoom past someone as his date steps on a pavement near the street.,spy crews by the road.,peer down on the departing tourist.,hear music blaring from the nightclub.,3\n1167,lsmdc0043_Thelma_and_Luise-68203,8323,\"Someone's thumb pulls back the hammer. Someone slowly raises his hands in the air, and someone\",Someone's thumb pulls back the hammer.,\"Someone slowly raises his hands in the air, and someone\",gold,twists someone from behind the upper head.,picks up the receiver.,\"darts out, pulling her dress down.\",draws his feet across his apartment wall.,2\n1168,lsmdc0043_Thelma_and_Luise-68203,8307,Someone comes out of the bathroom as the next woman goes in. She,Someone comes out of the bathroom as the next woman goes in.,She,gold,looks back at the party.,scans the room looking for someone.,wakes up and looks at someone.,walks over to the counter and pours something in her glass.,1\n1169,lsmdc0043_Thelma_and_Luise-68203,8315,Someone has now pinned someone against the back of a car and is kissing her neck. He,Someone has now pinned someone against the back of a car and is kissing her neck.,He,gold,has her ass in his hands.,steps back from his bike.,puts on his back to the camera.,\"grins and looks at someone, who crumples to his arms.\",0\n1170,lsmdc0043_Thelma_and_Luise-68203,8326,His pants are undone in the front. She,His pants are undone in the front.,She,gold,moves onstage and dances in a living room with a wicker pictures.,\"pauses for a moment, then turns and snaps his headlights.\",is still backing away with the gun raised.,\"touches position and slip, then awkwardly scans her body before entering.\",2\n1171,lsmdc0043_Thelma_and_Luise-68203,8308,She scans the room looking for someone. She,She scans the room looking for someone.,She,gold,goes over to the table and sees someone's stuff there.,\"is being rushed through a room located from earlier, along the walls of bloodstained floor.\",shakes her head from the look she claps for.,shrugs his arm.,0\n1172,lsmdc0043_Thelma_and_Luise-68203,8329,Someone lowers the gun and stares at him for a second. Then she,Someone lowers the gun and stares at him for a second.,Then she,gold,steps up to the front of her chevy.,climbs sideways and gazes sadly at someone.,turns and walks away.,turns away and limps toward an office.,2\n1173,lsmdc0043_Thelma_and_Luise-68203,8332,Someone runs to get the car. Someone,Someone runs to get the car.,Someone,gold,\"grabs the suitcase, makes a call.\",unzips the back of the pants.,opens the door and enters the hall.,comes careening up in reverse.,3\n1174,lsmdc0043_Thelma_and_Luise-68203,8316,He has her ass in his hands. He,He has her ass in his hands.,He,gold,is beginning to hump her.,is gymnastics on the side.,do in a front grassy area making repairs.,bends down to take it from someone.,0\n1175,lsmdc0043_Thelma_and_Luise-68203,8306,\"Someone is leaning close to someone's head, and she pulls her head away. He\",\"Someone is leaning close to someone's head, and she pulls her head away.\",He,gold,lowers her head back.,pulls her to him and tries to put his arms around her.,looks around and smiles at him.,\"looks slightly younger, maybe a little sad.\",1\n1176,lsmdc0043_Thelma_and_Luise-68203,8311,Someone has led someone off to the far end of the parking lot. He,Someone has led someone off to the far end of the parking lot.,He,gold,is trying to kiss her now.,takes someone from her lap.,\"steps out, hands his his wallet and finds it empty.\",finds someone seated at the front of the house.,0\n1177,lsmdc0043_Thelma_and_Luise-68203,8328,Someone is inching away as well. Someone,Someone is inching away as well.,Someone,gold,\"approaches, leaving people.\",watches him race into the house.,shoots a smiling look.,lowers the gun and stares at him for a second.,3\n1178,lsmdc0043_Thelma_and_Luise-68203,8324,\"Someone slowly raises his hands in the air, and someone darts out, pulling her dress down. Someone starts to back away, but the gun\",\"Someone slowly raises his hands in the air, and someone darts out, pulling her dress down.\",\"Someone starts to back away, but the gun\",gold,does n't look at him.,is so loud that someone can't hear him on pas.,is still close to his face.,falls on the back of her head.,2\n1179,lsmdc0043_Thelma_and_Luise-68203,8319,He lets go of her face and pins her arms behind her. He,He lets go of her face and pins her arms behind her.,He,gold,climbs on her bed as he carries her down the hallway.,holds both of her arms with one hand.,\", an adult tremendous, and sits slumped in the middle of each other on the glider.\",lays her head on her hands and marches away barefoot.,1\n1180,lsmdc0043_Thelma_and_Luise-68203,8314,\"Someone is pushing himself on her now, and she is beginning to push him away harder. Someone\",\"Someone is pushing himself on her now, and she is beginning to push him away harder.\",Someone,gold,seems really at peace as she touches the affection for his squeeze - mavericks celebrate in celebration and brings his hand.,climbs into the back of the carriage and pulls the plank in the window.,remains on her feet and another appears in the door.,has now pinned someone against the back of a car and is kissing her neck.,3\n1181,lsmdc0043_Thelma_and_Luise-68203,8313,\"He is pushing her arms down and turning her head away. Someone is pushing himself on her now, and she\",He is pushing her arms down and turning her head away.,\"Someone is pushing himself on her now, and she\",gold,does n't slam his leg down.,is beginning to push him away harder.,starts to wipe the floor in her clothes.,is about to be sick.,1\n1182,lsmdc0043_Thelma_and_Luise-68203,8312,He is trying to kiss her now. He,He is trying to kiss her now.,He,gold,\"lays someone gently on someone's hands, whose mouth is open.\",is pushing her arms down and turning her head away.,looks at the devastation.,is quickly for her car.,1\n1183,lsmdc0043_Thelma_and_Luise-68203,8317,\"She is pushing him away as hard as she can, but he is relentless. He\",\"She is pushing him away as hard as she can, but he is relentless.\",He,gold,is at a toy store.,\"grabs onto someone's window, clutching her the pod.\",looks mean and dangerous.,\"joins her, trying to stab her claws.\",2\n1184,lsmdc0043_Thelma_and_Luise-68203,8322,Tight shot of the barrel of someone's gun being pressed into the nape of someone's neck. Someone's thumb,Tight shot of the barrel of someone's gun being pressed into the nape of someone's neck.,Someone's thumb,gold,means police.,pulls back the hammer.,swims through the scar and illuminates someone's face.,lifts his arm toward the floor.,1\n1185,anetv_2aw1pVJsnKs,14845,Several clips are shown afterwards of people riding around on bikes crashing onto the side. More people,Several clips are shown afterwards of people riding around on bikes crashing onto the side.,More people,gold,ride the camels onto the horse while others watch on the side.,crash their bikes as others watch on the side.,continue riding along one of the mountain waves and eventually going back and other.,are shown wandering around on dirt skateboards as well as jumping boards followed by other people in costumes.,1\n1186,anetv_2aw1pVJsnKs,2821,A group of people are seen riding around a track and leads into several clips of people falling off their bikes. The video,A group of people are seen riding around a track and leads into several clips of people falling off their bikes.,The video,gold,continues as several people run out of the car as well as attempting to roll down the track.,ends with the black balls more more and more people continue riding horses on the field.,continues on with many clips of people crashing dirt bikes on a track racing others.,continues with more people down the hill as well as the person is being pulled onto the bumper.,2\n1187,anetv_2aw1pVJsnKs,14844,A person is seen riding along on a dirt bike and crashes onto the side. Several clips,A person is seen riding along on a dirt bike and crashes onto the side.,Several clips,gold,are shown of people riding down a river in front of one another while others watch on.,are shown of people riding on dirt bikes.,are then shown of women riding around on a skateboard.,are shown afterwards of people riding around on bikes crashing onto the side.,3\n1188,anetv_IjwOh2YmT9U,1355,A man is engaged in skateboarding outdoors. He,A man is engaged in skateboarding outdoors.,He,gold,takes several ramps and skate parks.,walks into a sand pit in front of a crowd.,stops on a green outdoor dirt.,talks to the camera inside a roofed radio stand.,0\n1189,anetv_IjwOh2YmT9U,1356,He takes several ramps and skate parks. He,He takes several ramps and skate parks.,He,gold,waters on the tap as he rides past his men.,throws himself into the pool and pineapple punctures into a tree.,ramps up five rocks as fast as he can.,flips and turns through the city streets.,3\n1190,lsmdc3057_ROBIN_HOOD-27734,5917,\"We watch someone and his men terrorize. On the floor, he\",We watch someone and his men terrorize.,\"On the floor, he\",gold,packs his things into the quietly.,backs into the meeting room.,pins a tower balcony high on the brick walls.,rolls onto his back.,3\n1191,anetv_cxxiokwoVgg,13448,Two young men sled on the road pulled by a car. Splashes of snow,Two young men sled on the road pulled by a car.,Splashes of snow,gold,falls the white pool as they fight.,shoots pull up ahead of them.,is filled with snow.,falls on the young men who are covered with snow.,3\n1192,anetv_cxxiokwoVgg,13449,Splashes of snow falls on the young men who are covered with snow. A young man stands from the sled and enters the car and other person,Splashes of snow falls on the young men who are covered with snow.,A young man stands from the sled and enters the car and other person,gold,walks on and shuts the front door to the path.,crashes and goes up the hill.,stands up and close the shore.,takes his place on the sled.,3\n1193,anetv_cxxiokwoVgg,13447,People in a home get ready to go sled on the street covered with snow. Two young men,People in a home get ready to go sled on the street covered with snow.,Two young men,gold,skateboard down the steep slopes with snowy buildings in the small house.,end up kissing on a bridge.,sled on the road pulled by a car.,run down a slope with a hostage approach and start riding down the chain of doom above every tracks.,2\n1194,lsmdc0031_The_Lost_Weekend-65376,6795,\"He points to the empty glass for someone to fill it. Without a change of expression, someone\",He points to the empty glass for someone to fill it.,\"Without a change of expression, someone\",gold,gets the mug passed past the bookcase.,pours the second drink.,smirks as she pours through the glass.,\"picks someone up and moves to the next door, locking the door behind him.\",1\n1195,anetv_ORL5yMppl8E,8970,He adds salt and pasta to the pot. He,He adds salt and pasta to the pot.,He,gold,is mixing the spaghetti.,goes to untie the pieces of beef.,puts the lid back on the pot.,then puts the ingredients on him again.,2\n1196,anetv_ORL5yMppl8E,8969,He puts the pot on a stove and puts a lid on it. He,He puts the pot on a stove and puts a lid on it.,He,gold,holds onto a large pot and begins putting the pasta into the pot.,adds salt and pasta to the pot.,brings the omelette in the pan.,lifts the piece of netting off of the plate.,1\n1197,anetv_ORL5yMppl8E,8973,He pours the pasta back into the pan. He,He pours the pasta back into the pan.,He,gold,adds sauce and stirs it together.,boils the pasta back into the bowl.,\"fills the mixture, making the save.\",has defends and takes a bite.,0\n1198,anetv_ORL5yMppl8E,8968,A kid fills a pot with water. He,A kid fills a pot with water.,He,gold,pours sugar into the pitcher of vodka.,puts the pot on a stove and puts a lid on it.,puts the pan in a pot.,pours a bowl in the trash cans with boiling water and puts it in the pot.,1\n1199,anetv_ORL5yMppl8E,8971,He puts the lid back on the pot. He,He puts the lid back on the pot.,He,gold,stirs the pot and pours the pasta into a strainer.,places the lamp down.,opens it with some cool cupcakes.,pours oil and pulls the pan into the pan and pours it into the twinkie glasses.,0\n1200,anetv_ORL5yMppl8E,8972,He stirs the pot and pours the pasta into a strainer. He,He stirs the pot and pours the pasta into a strainer.,He,gold,pours the pasta back into the pan.,then pours the remainder of the bowl into a silicone strainer.,presents it and the cooker pours the heated mixture into the jug.,adds salt to the bowl and adjusts it in the pan.,0\n1201,lsmdc3091_ZOMBIELAND-44480,11982,\"Rule Number 31 appears over a large canvas bag, Check the Back Seat. Opening the sack, the guys\",\"Rule Number 31 appears over a large canvas bag, Check the Back Seat.\",\"Opening the sack, the guys\",gold,disappear into the common room.,peer over a vehicle's flatbed.,get back in the mud.,find it loaded with guns.,3\n1202,lsmdc3091_ZOMBIELAND-44480,11975,\"Rule Number 18 appears on the bumper, Limber up. The words\",\"Rule Number 18 appears on the bumper, Limber up.\",The words,gold,needs to be the tire.,surf on a block by the stolen team.,\"topple over, landing on the pavement.\",signet - american stand and keep fencing.,2\n1203,lsmdc3091_ZOMBIELAND-44480,11985,\"Now someone stands behind the Hummer, firing an automatic into the air. As someone\",\"Now someone stands behind the Hummer, firing an automatic into the air.\",As someone,gold,lets out a deep breath and takes a quick look at the back of the sedan.,\"peers down from the water's surface, water streams against someone's brick.\",waits patiently in the passenger seat.,slams on the brakes.,2\n1204,lsmdc3091_ZOMBIELAND-44480,11979,The older man slows wearily as he nears the vehicle which has crashed near a house. The driver's side window,The older man slows wearily as he nears the vehicle which has crashed near a house.,The driver's side window,gold,shows hands gripping the steering wheel.,lifts with a six turn of sawdust.,shows a younger someone scraping it off.,is buffeted by a small breeze.,0\n1205,lsmdc3091_ZOMBIELAND-44480,11974,\"He attacks it with a crowbar. From the minivan's roof, someone\",He attacks it with a crowbar.,\"From the minivan's roof, someone\",gold,tosses the crowbar aside.,watches from the porch.,and someone strut toward a stairwell.,\"pushes his seat back onto the street, gathers his broken body around someone.\",0\n1206,lsmdc3091_ZOMBIELAND-44480,11983,\"Opening the sack, the guys find it loaded with guns. He\",\"Opening the sack, the guys find it loaded with guns.\",He,gold,shoots them every time.,\"sneers, then flings it upwards.\",picks up a rifle.,pours them into the black containers.,2\n1207,lsmdc3091_ZOMBIELAND-44480,11986,\"As someone waits patiently in the passenger seat. Later, the older man\",As someone waits patiently in the passenger seat.,\"Later, the older man\",gold,hoists his fallen case to a cabinet and passes someone.,watches the balding young man make his way across the tiny sand rink.,is cleaning the sedan in the back of one of her striped cardigan and taped down - inch hub near the door.,paints a black 3 on the driver's side door.,3\n1208,lsmdc3091_ZOMBIELAND-44480,11987,\"Later, the older man paints a black 3 on the driver's side door. As the wide bodied vehicle backs away from the house, it\",\"Later, the older man paints a black 3 on the driver's side door.\",\"As the wide bodied vehicle backs away from the house, it\",gold,takes out a beam supporting an overhang.,floats from a tightrope in a tree.,shows the paces above someone and yanks him from the frame.,flips off onto the wall of balcony.,0\n1209,lsmdc3091_ZOMBIELAND-44480,11973,He throws rock through its windows. He,He throws rock through its windows.,He,gold,takes out his earphones.,attacks it with a crowbar.,\"soars down after it, and knocks perfectly with a hollow - below hand.\",strikes the man with a heavy job.,1\n1210,lsmdc3091_ZOMBIELAND-44480,11984,He picks up a rifle. Now someone,He picks up a rifle.,Now someone,gold,\"peers through a gap in the dark, propelling ceiling.\",\"stands behind the hummer, firing an automatic into the air.\",\"slides open a gate, aiming a gun into his bag.\",swivels the dusty machine.,1\n1211,lsmdc3091_ZOMBIELAND-44480,11977,He jogs to a yellow Hummer. Someone,He jogs to a yellow Hummer.,Someone,gold,\"follows, toting their bags.\",lays her legs across the necks of someone's sandals.,\"sweeps his hood over the hood of his hood, making sure that someone would cause him to address.\",\"sits up at the roof, looking dazed.\",0\n1212,lsmdc3091_ZOMBIELAND-44480,11988,\"As the wide bodied vehicle backs away from the house, it takes out a beam supporting an overhang. The roof\",\"As the wide bodied vehicle backs away from the house, it takes out a beam supporting an overhang.\",The roof,gold,is just completely pristine.,is filled with closeups of different vacuum equipment.,collapses as the hummer speeds off.,flies up and soars beneath the awning.,2\n1213,lsmdc3091_ZOMBIELAND-44480,11978,\"Someone follows, toting their bags. The older man\",\"Someone follows, toting their bags.\",The older man,gold,slows wearily as he nears the vehicle which has crashed near a house.,glances up with his gaze fixed on the now highlighted urban scene.,spots someone like a coach as an instructor watch them stop.,reaches inside someone's jacket.,0\n1214,lsmdc3091_ZOMBIELAND-44480,11981,Someone checks the back as someone hot wires the engine. Rule Number 31,Someone checks the back as someone hot wires the engine.,Rule Number 31,gold,\", he tumbles back along behind main roof.\",\"appears over a large canvas bag, check the back seat.\",and makes his way along the roman rink.,can no longer find.,1\n1215,lsmdc3091_ZOMBIELAND-44480,11976,\"The words topple over, landing on the pavement. He\",\"The words topple over, landing on the pavement.\",He,gold,glimpse her crescent shaped figure approaching through verdant hills.,gazes into the dazed look.,wakes up and stands at tornado loss.,jogs to a yellow hummer.,3\n1216,lsmdc3091_ZOMBIELAND-44480,11980,\"Facing someone, he extends the middle finger. Someone\",\"Facing someone, he extends the middle finger.\",Someone,gold,\"leans over, takes his father's hand and hands it over.\",smiles at the redhead.,puts a bill in the dry slot.,checks the back as someone hot wires the engine.,3\n1217,anetv_PLek2e8NlKc,11691,Two women sits in front of a small class of people on a mat on the floor. One woman,Two women sits in front of a small class of people on a mat on the floor.,One woman,gold,jumps in a rock and falls of the water where ski jumps.,puts behind the chair and she turns around and walks away.,\"kicks a puck into the gym, while another woman around the platform hugs her.\",uses the other woman to demonstrate how to get up from the floor using one knee.,3\n1218,anetv_PLek2e8NlKc,11692,One woman uses the other woman to demonstrate how to get up from the floor using one knee. The woman in the blue sweater,One woman uses the other woman to demonstrate how to get up from the floor using one knee.,The woman in the blue sweater,gold,kicks the ball again and stands indoors then swing in a little restaurant going home.,repeats the same process in several flights of yoga while the entire body cheers.,is then seen talking to the class.,wins while shrugging a friend with her muscles.,2\n1219,anetv_PLek2e8NlKc,18666,The lady gets up from the floor slowly with instructions on the screen. The lady,The lady gets up from the floor slowly with instructions on the screen.,The lady,gold,\"is sitting on a table and shoes how to sit, and stand slowly holding your abdomen.\",reaches back to the camera again.,walks away and shows her parents and bends her arm by a switch place.,turns on the right and continues dancing to the left.,0\n1220,anetv_PLek2e8NlKc,11690,\"A woman leads a class held in a medical equipment classroom, in demonstrating different ways for a person to move or get up from the floor. Two women\",\"A woman leads a class held in a medical equipment classroom, in demonstrating different ways for a person to move or get up from the floor.\",Two women,gold,bend to sit down to pick themselves up up and down before.,sits in front of a small class of people on a mat on the floor.,put down the platform ready to sit down and play with their rope and bow.,walk to a chair on the floor.,1\n1221,anetv_PLek2e8NlKc,18662,We see the blue opening screen. A lady,We see the blue opening screen.,A lady,gold,is guiding a young lady through an exercise.,pours water over the kite.,gets up and eyes a dart from a ready.,lays down a coffee table.,0\n1222,anetv_PLek2e8NlKc,18664,\"The girl sits down, then gets on one knee and sits back down. We\",\"The girl sits down, then gets on one knee and sits back down.\",We,gold,\", they turn off the other woman and the woman gives an interview.\",helps pull her rope from another rod.,see a title screen on beige.,both shrink all with her and end with the woman in the crowd laughing.,2\n1223,anetv_PLek2e8NlKc,18665,We see a title screen on beige. The lady,We see a title screen on beige.,The lady,gold,puts the left darts into a rocketing column.,is jumping off in a room.,gets up from the floor slowly with instructions on the screen.,picks up a bar and lifts it over a lady.,2\n1224,anetv_PLek2e8NlKc,18663,A lady is guiding a young lady through an exercise. The girl,A lady is guiding a young lady through an exercise.,The girl,gold,is pushing herself along a tunnel in the center.,uses a payphone and begins to clip her fingers fur and blowing a hair cut.,gets on her toes and brushes the blades back and forth under a truck.,\"sits down, then gets on one knee and sits back down.\",3\n1225,anetv_WXMb7XF6k8o,19467,A stylist is standing beside a girl seated in his chair. He,A stylist is standing beside a girl seated in his chair.,He,gold,is posing and showing the name in the hair.,gives instructions on how to style her hair.,is standing on some sort of cement dryer.,begins to ease the client's hair.,1\n1226,anetv_WXMb7XF6k8o,19466,A series of women are shown in close up of their faces. A stylist,A series of women are shown in close up of their faces.,A stylist,gold,sprays the soap in the water.,of hair is shown and an introduction is shown on the screen.,is standing beside a girl seated in his chair.,takes photos on their shoulders.,2\n1227,anetv_WXMb7XF6k8o,19468,He gives instructions on how to style her hair. He,He gives instructions on how to style her hair.,He,gold,\"uses a dryer to blow her hair, then clips it.\",is working with the hair products.,shows the process from blond to create some news headquarters.,moves the braid back and forth to the camera.,0\n1228,lsmdc3014_CAPTAIN_AMERICA-5400,2599,\"He pulls the pin and rolls the grenade onto the field full of recruits. As the other men scatter, someone\",He pulls the pin and rolls the grenade onto the field full of recruits.,\"As the other men scatter, someone\",gold,leaps onto the grenade as someone approaches him.,finds his team outside and collects his flippers.,steps toward the office and her glance blinks at him as he comes in.,throws his arms flapping the gap.,0\n1229,lsmdc3014_CAPTAIN_AMERICA-5400,2604,Someone walks in carrying a liquor bottle. The doctor,Someone walks in carrying a liquor bottle.,The doctor,gold,turns the bottle in his hand.,goes to the kitchen wile someone enters the kitchen.,stops wearing two dark glasses.,is revolving as he drinks.,0\n1230,lsmdc3014_CAPTAIN_AMERICA-5400,2601,\"He hugs the grenade to his torso as he lies in a fetal position. Slowly, someone\",He hugs the grenade to his torso as he lies in a fetal position.,\"Slowly, someone\",gold,struggles to cut into someone's leg.,opens his eyes and sits up.,wears a cloth and cuts the wings.,bends over and thrusts his face down with his raised hand.,1\n1231,lsmdc3014_CAPTAIN_AMERICA-5400,2600,\"As the other men scatter, someone leaps onto the grenade as someone approaches him. He\",\"As the other men scatter, someone leaps onto the grenade as someone approaches him.\",He,gold,sits in the swivel chair for someone.,\"pulls away, jerks his leather head back and looks down at her.\",hugs the grenade to his torso as he lies in a fetal position.,shows the phone removed.,2\n1232,lsmdc3014_CAPTAIN_AMERICA-5400,2598,Someone walks to the back of an ammo truck and picks up a grenade. He,Someone walks to the back of an ammo truck and picks up a grenade.,He,gold,joins the fallen soldier riding past the grizzly.,pulls the pin and rolls the grenade onto the field full of recruits.,\"sniffs it through his fingers, then gives it to her.\",\"reaches down and hesitantly takes it off behind the woman, and cocks it.\",1\n1233,lsmdc3014_CAPTAIN_AMERICA-5400,2603,\"Later, someone sits in an empty bunkhouse and reads. Someone\",\"Later, someone sits in an empty bunkhouse and reads.\",Someone,gold,waves a folded piece of paper at them.,walks in carrying a liquor bottle.,stands on the couch and looks at.,hurries toward the bus.,1\n1234,anetv_Uot4XZns2b4,11464,The man add tar to the pipe base and nails shingles down around it. The man then,The man add tar to the pipe base and nails shingles down around it.,The man then,gold,uses the climb up paint wall.,pass and drain the clean wood.,puts tar under the top shingle.,cooks a piece again tiles using a metal piece of wood to cover the tiles with the roof.,2\n1235,anetv_Uot4XZns2b4,11463,The man then pushes the pipe down and nails it. The man,The man then pushes the pipe down and nails it.,The man,gold,add tar to the pipe base and nails shingles down around it.,\"draws the ball towards the object wrapped around it, spins it around and puts it on.\",cuts the man's hair and ears up to hit him on the top of its head.,injects the cats paw thoroughly then returns it to the cat.,0\n1236,anetv_Uot4XZns2b4,11465,The man then puts tar under the top shingle. We,The man then puts tar under the top shingle.,We,gold,\", people surf.\",\", he turns to remove the tools from the sides of the snow and then proceeds several more mountains.\",then solves the sculpture.,see the house and a truck parked in the driveway.,3\n1237,anetv_Uot4XZns2b4,11462,We see a man prying shingles up around a pipe. The man then,We see a man prying shingles up around a pipe.,The man then,gold,places his left foot on the carpet.,finishes the vacuum and picks up the tiles.,pushes the pipe down and nails it.,pretends to start roofing off the sidewalk.,2\n1238,anetv_Hj_YKQiU-8Y,16303,A young girl is seen speaking to the camera while playing with her hair. She,A young girl is seen speaking to the camera while playing with her hair.,She,gold,points to her shirt and leads into her brushing her hair while speaking to the camera.,jumps into the water and brushing her hair off of her face.,finishes her hair and accordion her to her camera.,speaks and then shows the girl how to put her hair down.,0\n1239,lsmdc3083_TITANIC2-39181,932,The waiter refills someone's glass. Someone,The waiter refills someone's glass.,Someone,gold,looks away from someone who nods uneasily.,points proudly into a full - length mirror.,tosses a box of matches to someone.,is pummeled by a pixie - shaped black lady.,2\n1240,lsmdc3083_TITANIC2-39181,933,Someone raises his glass to someone. Someone,Someone raises his glass to someone.,Someone,gold,\"lifts his glass, frowns, and then sips.\",holds up his drink.,\"glance at his teacher, who lies back down, his mouth hanging open as he watches.\",comes out into the hall towards the cups.,0\n1241,lsmdc3083_TITANIC2-39181,934,\"Someone lifts his glass, frowns, and then sips. Later, a waiter\",\"Someone lifts his glass, frowns, and then sips.\",\"Later, a waiter\",gold,pushes a cart laden with desserts.,brings a tray of frock food.,\"sets off a tray with sugar in a black bucket, and soda on one table beside him.\",pours the beverage into a large white.,0\n1242,anetv_cHSGL-OcMak,1107,Two people are seen walking around on stilts in the middle of a street and sidewalk. The walk,Two people are seen walking around on stilts in the middle of a street and sidewalk.,The walk,gold,closes and hands down the sidewalk.,is then seen with the people fighting outside and standing between them when one moves his foot up in frame.,through a street by a building while blowing shingles in various areas.,continue walking up and down the streets on stilts passing by people and speaking.,3\n1243,anetv_l3EBfLkfAX8,6183,A few people take turns at varying heights and all are successful. Others,A few people take turns at varying heights and all are successful.,Others,gold,are running for other events in the background.,takes back someone loan to their.,leave the camera pans back to the video including various sunscreen products.,teammates hungrily pray the jury's in before walking.,0\n1244,anetv_l3EBfLkfAX8,10882,A man jumps over a low bar onto a mat. We then,A man jumps over a low bar onto a mat.,We then,gold,see the boy doing jumps while two other girls are juggling.,see the gymnast over a close up performing the routine.,see other track athletes doing the same moves and their measurements.,see a man performs gymnastics on parallel bars on a mat.,2\n1245,anetv_l3EBfLkfAX8,10881,A track team is shown on a field. A man,A track team is shown on a field.,A man,gold,jumps over a low bar onto a mat.,walks in circles holding a disc disc.,throws a dodge ball into the water.,talks to the camera on a field while gestures and hockey.,0\n1246,anetv_Vnj0j648Emw,17038,He is holding up a sharpener and a knife. He,He is holding up a sharpener and a knife.,He,gold,\"cuts a log in half, using asparagus spikes.\",begins cutting the tomato and tomato with the knife.,cuts a knife using the knife and cuts it in two.,demonstrates how to sharpen a knife against the blade.,3\n1247,anetv_Vnj0j648Emw,346,He is holding a knife sharpener in his hand. He,He is holding a knife sharpener in his hand.,He,gold,starts sharpening his knife on the sharpener.,rips up the stone with a new knife.,steps forward and throws his arms straight at the camera.,stands the horse up and starts sharpening the knife.,0\n1248,anetv_Vnj0j648Emw,345,A man in a chef uniform is standing up talking. He,A man in a chef uniform is standing up talking.,He,gold,uses a cord to put on his legs.,sprints down a ramp jumping the stilts.,is holding a knife sharpener in his hand.,\"artist, he turns a shave and explains how she shaves the leg with a razor.\",2\n1249,anetv_Vnj0j648Emw,17037,A man is dressed as a chef in a classroom. He,A man is dressed as a chef in a classroom.,He,gold,wipes her face with champagne.,is holding up a sharpener and a knife.,sits in a wheelchair with a box of equipment.,is bending over a table in various ages.,1\n1250,lsmdc3068_THE_BIG_YEAR-3324,7884,\"The older man vomits over the deck railing. Later, someone\",The older man vomits over the deck railing.,\"Later, someone\",gold,plow the russian someone into the trunk tank.,rests on an indoor bench piled with luggage.,runs down a dark road filled with narrow ornamental pipes.,hikes past a campsite in the ocean.,1\n1251,lsmdc3068_THE_BIG_YEAR-3324,7885,\"Later, someone rests on an indoor bench piled with luggage. He feebly\",\"Later, someone rests on an indoor bench piled with luggage.\",He feebly,gold,swings out of the chair several times with small tubes.,gives someone the so - so gesture.,plucks his breast up toward the flap.,taps one of the other dangling feet with padded measuring tape.,1\n1252,lsmdc3068_THE_BIG_YEAR-3324,7883,\"Someone queasily eyes the cutting board, then faces someone. The older man\",\"Someone queasily eyes the cutting board, then faces someone.\",The older man,gold,vomits over the deck railing.,shakes silverware and envelopes.,faces her model'll.,\"stands beside someone, who approaches his troubled shopkeeper.\",0\n1253,anetv_S6t9Lq1xKJk,11407,It is covered in ingredients and pans on burners. The man,It is covered in ingredients and pans on burners.,The man,gold,\"creates a giant omelette, finally flipping it onto a plate and handing it to a patron.\",puts his head to the bowl.,sprays the ice over.,presses a base onto the egg while gesturing.,0\n1254,lsmdc3035_INSIDE_MAN-1665,9928,Someone aims a second unlit work light at another camera -. A customer,Someone aims a second unlit work light at another camera -.,A customer,gold,breathes out at slapped maize.,opens the door for the arriving painters.,comes up to him in the sob.,walks over an electrical control panel and shuts the door.,1\n1255,lsmdc3035_INSIDE_MAN-1665,9922,A banker in a turban sportingly bumps fist with a hefty co - worker. The painters,A banker in a turban sportingly bumps fist with a hefty co - worker.,The painters,gold,are knocked off the train.,pray into a bag below someone.,watch and gaze at the soldiers.,close up the van.,3\n1256,lsmdc3035_INSIDE_MAN-1665,9925,A potbellied security guard watches him pass. The painter,A potbellied security guard watches him pass.,The painter,gold,leans over to the emergency sign and leans back in his seat.,\"moves his paws back and forth, toward someone.\",wears a dark cap and sunglasses.,shows the apartment and moving slightly congratulating the spot.,2\n1257,lsmdc3035_INSIDE_MAN-1665,9918,\"On marble bank lobby, customers wait in line. In the alley, the people in coveralls\",\"On marble bank lobby, customers wait in line.\",\"In the alley, the people in coveralls\",gold,\"pull out, slap down carts.\",unload a dolly from the van.,make their way through a car.,struggle her hands.,1\n1258,lsmdc3035_INSIDE_MAN-1665,9929,A customer opens the door for the arriving painters. As they,A customer opens the door for the arriving painters.,As they,gold,\"wheel in the hand truck, at street level.\",\"move on it, the iraqi man stays on the garbage and sticks it in his briefcase.\",dash out to the front doors.,\"continue sailing, someone starts steering the boat.\",0\n1259,lsmdc3035_INSIDE_MAN-1665,9930,\"As they wheel in the hand truck, at street level. Two painters\",\"As they wheel in the hand truck, at street level.\",Two painters,gold,are disturbed down by.,\"are moving toward the fair, waiting for them.\",take out running between them as a look between the passersby and someone.,fasten the doors shut.,3\n1260,lsmdc3035_INSIDE_MAN-1665,9931,Two painters fasten the doors shut. Someone,Two painters fasten the doors shut.,Someone,gold,was knocking virtual the container.,appears on top wooden veranda.,holds a gun to a guard's side.,opens as they apparate into the gravel driveway.,2\n1261,lsmdc3035_INSIDE_MAN-1665,9920,A narrow eyed man waits patiently behind her. As the painters,A narrow eyed man waits patiently behind her.,As the painters,gold,\"are wrapped, someone helps.\",\"stare, their mother stamp.\",continue his clone attack.,load a flat of one gallon paint cans onto a hand truck.,3\n1262,lsmdc3035_INSIDE_MAN-1665,9923,\"As he looks away, she glares. Now, the painters\",\"As he looks away, she glares.\",\"Now, the painters\",gold,haul their grocer to the island.,wheel their supplies to the curb.,are piled with riffles.,scrutinizes a few tense legs in the tunnel.,1\n1263,lsmdc3035_INSIDE_MAN-1665,9924,\"Now, the painters wheel their supplies to the curb. One\",\"Now, the painters wheel their supplies to the curb.\",One,gold,grab the bikini and add call.,enters the bank carrying two work lights and a white canvas duffel.,offers a hand to the security hub.,fix the walls of a california fort in an otherwise narrow atrium.,1\n1264,lsmdc3035_INSIDE_MAN-1665,9919,\"Back inside, a woman listens to music. A narrow eyed man\",\"Back inside, a woman listens to music.\",A narrow eyed man,gold,shows the top button.,shows her wide eyes.,waits patiently behind her.,meets her stay built.,2\n1265,lsmdc3035_INSIDE_MAN-1665,9927,\"In a monitoring room, one screen goes dark. Someone\",\"In a monitoring room, one screen goes dark.\",Someone,gold,aims a second unlit work light at another camera -.,vomits as she hears a series of voice messages.,frantically searches the photos of the company.,pulls up a snowy album and shows to the photos.,0\n1266,anetv_2Iakg-Z-iXM,16504,The video starts with a lady walking to the center of a court. The lady,The video starts with a lady walking to the center of a court.,The lady,gold,gets up and walks away as she hurries behind her.,starts doing a rendition and spinning a stick around while doing fancy tricks with it.,swings up a jumping platform off the ground.,demonstrates techniques on her left.,1\n1267,anetv_2Iakg-Z-iXM,16506,The lady continues her rendition and spins the stick using her neck. The lady,The lady continues her rendition and spins the stick using her neck.,The lady,gold,run all the way up and down the track and ends by walking down.,continues to play the drum while looking around at the carnival.,puts her arms straight up and sinks slightly in front of her.,throws the stick into the air and catches it.,3\n1268,anetv_2Iakg-Z-iXM,16505,The lady starts doing a rendition and spinning a stick around while doing fancy tricks with it. The lady,The lady starts doing a rendition and spinning a stick around while doing fancy tricks with it.,The lady,gold,runs hairspray and pins down to the pavement.,moves her hand to a mans leg and and twists her shoulders.,continues her rendition and spins the stick using her neck.,smiles as someone runs taking her foot down the chalk.,2\n1269,anetv_2Iakg-Z-iXM,16507,The lady throws the stick into the air and catches it. The lady,The lady throws the stick into the air and catches it.,The lady,gold,tosses the violin to the woman.,releases the ball of someone while standing on the side.,hits two balls with her hands.,ends the rendition on the floor.,3\n1270,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13118,Someone slams the door shut. Someone,Someone slams the door shut.,Someone,gold,walks into his office.,\"goes through vivian and living room, decorated with flowers.\",rolls the bathroom and shuts the door.,races down the steep streets.,3\n1271,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13121,Someone desperately pushes against the tide of soldiers retreating from the fighting. Someone,Someone desperately pushes against the tide of soldiers retreating from the fighting.,Someone,gold,turns to his second lieutenant.,demonstrations on the side as if reeling and scrambling to death.,holds a woman's neck which aimed at him.,stands - - someone feebly kicks him over the head.,0\n1272,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13117,\"Someone, rushes forward, desperately pulling the. Someone\",\"Someone, rushes forward, desperately pulling the.\",Someone,gold,\"jumps at the door, then holds it upright and takes a few steps up to the steward, one of his limbs.\",follow her to the plane and throw her head away.,grabs someone by the collar!,pans him around a saucer's pot as she lobs the plates with it.,2\n1273,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13124,\"Minas tirith lies less than a mile away, down a gentle slope. Over 50, 000 orcs\",\"Minas tirith lies less than a mile away, down a gentle slope.\",\"Over 50, 000 orcs\",gold,\"orcs are lined up on their way in the roadway, beckoning people - - themselves.\",march down the grand driveway from the structures ghetto.,are swarming around the base of the city.,are climb up and down the cliffs.,2\n1274,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13119,Someone races down the steep streets. Great balls of fire,Someone races down the steep streets.,Great balls of fire,gold,soar through shattered panels smashed into boulders.,engulf him as someone drives.,spreads out over the stair.,are hurtling through the air.,3\n1275,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13127,Someone rides to the front of his army. He,Someone rides to the front of his army.,He,gold,supports someone to someone's chest as he angles a flight of lifting.,\"rises in his stirrups, tall and proud, yelling in a clear, loud.\",turns to look at the dead man.,drives out on the road.,1\n1276,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13115,\"Someone kisses someone's sweating, fevered brow. Bundles of dried firewood\",\"Someone kisses someone's sweating, fevered brow.\",Bundles of dried firewood,gold,are sucked from the first sticks in his hand.,are strewn with both of them.,are being stacked around.,twist on the grass beside his mouth.,2\n1277,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13125,Someone puts a comforting hand on his shoulder. On the battle field someone,Someone puts a comforting hand on his shoulder.,On the battle field someone,gold,walks among his troops.,sidesteps his brother number 1.,walks towards a machine lodge office.,puts something dot his face.,0\n1278,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13113,The orcs grunt as they lift someone. Someone,The orcs grunt as they lift someone.,Someone,gold,is carried up the steep stairs.,blinks on tears with his free hands.,steps into the room in its missing flash.,\"lifts his heels, then runs upward as someone mounts a beam.\",0\n1279,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13120,The city is in chaos. Someone,The city is in chaos.,Someone,gold,fires like a storm cloud.,desperately pushes against the tide of soldiers retreating from the fighting.,\"videotapes in grief on the police, most of the time.\",watches the news on the tv.,1\n1280,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13122,\"Someone turns at the sound of the distant horns. 6000 horsemen, lead by people,\",Someone turns at the sound of the distant horns.,\"6000 horsemen, lead by people,\",gold,hover behind the double lorries.,come on in someone's room.,step up to the skyline.,lead into a den.,2\n1281,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13114,\"From the shadows someone watches, aghast, as someone is lain on a funeral pyre. Someone\",\"From the shadows someone watches, aghast, as someone is lain on a funeral pyre.\",Someone,gold,drops the weapon in the giant's grasp as well.,\"kisses someone's sweating, fevered brow.\",takes a bottle and drinks from a crate.,takes a sparkler out for himself.,1\n1282,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13116,\"Bundles of dried firewood are being stacked around. Someone,\",Bundles of dried firewood are being stacked around.,\"Someone,\",gold,\"rushes forward, desperately pulling the.\",\"pleasantly shaking, ingredients, hesitates.\",\"eyeing someone's lifeless body, gently lifts his glass window.\",\"aiming a wand, watches, in terror.\",0\n1283,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13123,\"6000 horsemen, lead by people, step up to the skyline. Minas tirith\",\"6000 horsemen, lead by people, step up to the skyline.\",Minas tirith,gold,lies low in the hydraulic chamber.,\"prominent with the palace compound, flames, and cannons.\",\"is deserted with a sumo in white, welding the sun above a tall low rise.\",\"lies less than a mile away, down a gentle slope.\",3\n1284,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13126,\"Someone gallops in front of his army, issuing urgent orders to his captains. Someone\",\"Someone gallops in front of his army, issuing urgent orders to his captains.\",Someone,gold,rides to the front of his army.,serves a few more beers out.,\"points at the trucks, but someone has to follow.\",stalks behind him as someone retreats into view by the apartment house.,0\n1285,anetv_2VvCuSFicyA,17979,A person is seen riding on a bicycle down a street with a dog tied next to him. The camera,A person is seen riding on a bicycle down a street with a dog tied next to him.,The camera,gold,transitions into a person riding down tubes down a steep hill.,is shown in various angles the man riding the bike with the dog.,transitions to a closeup of a man and spraying on a snowboard.,is then shown driving down and shows people driving around stacks of microphones.,1\n1286,anetv_2VvCuSFicyA,17980,The camera is shown in various angles the man riding the bike with the dog. The man,The camera is shown in various angles the man riding the bike with the dog.,The man,gold,is seen in slow motion while smiling underwater.,is shown riding the bike over the course on his leash as well as his bike.,is seen speaking to the camera and smiling while she still talks to the camera.,continues riding around with the dog.,3\n1287,lsmdc0011_Gandhi-52692,5963,\"Two young girls in ragged saris walk with her, and a boy of eight leads a smaller camel behind them. They\",\"Two young girls in ragged saris walk with her, and a boy of eight leads a smaller camel behind them.\",They,gold,are walking in the middle of a room with dancing to the other.,move across the pole with the ball as they skateboard on the stilts.,are staring off at the car.,\"'s the lady's yacht la mars the other, parking in motor and on a marketing din.\",2\n1288,lsmdc0011_Gandhi-52692,5962,\"We see from someone's point of view an Indian woman walking along the road, leading a tall camel that carries sacks of produce. Two young girls in ragged saris walk with her, and a boy of eight\",\"We see from someone's point of view an Indian woman walking along the road, leading a tall camel that carries sacks of produce.\",\"Two young girls in ragged saris walk with her, and a boy of eight\",gold,caresses his nose and talks.,steps in with the horse.,leads a smaller camel behind them.,is dressed as an officer bound in another.,2\n1289,lsmdc0011_Gandhi-52692,5957,\"The court rises and he walks stiffly to his chambers. He stands, staring at someone, and now it\",The court rises and he walks stiffly to his chambers.,\"He stands, staring at someone, and now it\",gold,is thrown off far.,is stocked with cologne.,\"floats across the square, right between him with the horses icon in the center of the green sky which he is holding.\",is his face that shows the respect.,3\n1290,lsmdc0011_Gandhi-52692,5959,From far above the hills we see a car traveling along the road. Its style,From far above the hills we see a car traveling along the road.,Its style,gold,tells us some years have passed.,has replayed cut and descent.,\"is straining against the boot, beaming.\",grows the quarter shiny.,0\n1291,lsmdc0011_Gandhi-52692,5961,\"He is in an open car, turning back to look at something, his face intrigued by what he sees. We\",\"He is in an open car, turning back to look at something, his face intrigued by what he sees.\",We,gold,\"switch from the diner, igniting a campfire.\",notices from the straps onto an automatic truck.,\"see from someone's point of view an indian woman walking along the road, leading a tall camel that carries sacks of produce.\",then take turns running around a house in snow.,2\n1292,lsmdc0011_Gandhi-52692,5958,\"He stands, staring at someone, and now it is his face that shows the respect. From far above the hills we\",\"He stands, staring at someone, and now it is his face that shows the respect.\",From far above the hills we,gold,see a car traveling along the road.,see exactly this of him.,\"see a row of bound feet in several frames, palm trees.\",see a skull being blown at night.,0\n1293,lsmdc0011_Gandhi-52692,5956,\"He folds, and refolds his glasses and then without looking at anyone he rises. The court rises and he\",\"He folds, and refolds his glasses and then without looking at anyone he rises.\",The court rises and he,gold,walks stiffly to his chambers.,lets out a breath.,shoots at the man with a horrified look.,holds someone to his feet.,0\n1294,lsmdc0011_Gandhi-52692,5960,Its style tells us some years have passed. He,Its style tells us some years have passed.,He,gold,\"watches it, celebratory shots outside him.\",is already going to clutch the rope until someone is pulled back.,\"is in an open car, turning back to look at something, his face intrigued by what he sees.\",\"walks around, followed by someone.\",2\n1295,anetv_fk_hkHmnmJo,17272,A person's hands are seen opening a cap of sunscreen followed by rubbing it along their arm and rubbing it in. The person then,A person's hands are seen opening a cap of sunscreen followed by rubbing it along their arm and rubbing it in.,The person then,gold,shows a brush on the skateboard and holds it up to a camera.,pours liquid into a tool and leads into a person drinking water and drinking water.,zooms the contact into his eye and then brushes them along while speaking to the camera.,puts more sunscreen on the other arm and continues to rub both of his arms in.,3\n1296,anetv_fk_hkHmnmJo,18636,Then he applies the cream on his right hand and spreads it evenly all over his arm. He,Then he applies the cream on his right hand and spreads it evenly all over his arm.,He,gold,points up at the symbols and the spider.,continues cutting the distance to ensure that the man is able to throw his subdues off.,is swinging table tennis with some fan on it in one hand.,spreads the cream on both hands to evenly apply it on his skin for protection from the sun.,3\n1297,anetv_fk_hkHmnmJo,18635,Then he smears it to spread it evenly on his entire hand. Then he,Then he smears it to spread it evenly on his entire hand.,Then he,gold,shows his up to sharpen it.,goes to work on it quickly then picks it up and pulls off blue material.,\"applies it to the wall, and sets down the empty tiles.\",applies the cream on his right hand and spreads it evenly all over his arm.,3\n1298,anetv_fk_hkHmnmJo,18634,The swimmer opens the stick of sunscreen and rolls it on his left hand first. Then he,The swimmer opens the stick of sunscreen and rolls it on his left hand first.,Then he,gold,uses the other tool to brush it a few more inches.,strokes the smooth metal of a soccer shot end.,fills the jar with a sponge and uses it to serve it in the mason.,smears it to spread it evenly on his entire hand.,3\n1299,anetv_fk_hkHmnmJo,18633,There's a swimmer standing in the pool showing how to apply sunscreen on the body using a stick. The swimmer,There's a swimmer standing in the pool showing how to apply sunscreen on the body using a stick.,The swimmer,gold,\"runs from the water through the water, then chases after it.\",reach for her again.,opens the stick of sunscreen and rolls it on his left hand first.,holds two and aides as well as hands him the blah.,2\n1300,anetv_iAwNYgA6mkc,10447,A man walks up to him with his back turned as they talk. The man,A man walks up to him with his back turned as they talk.,The man,gold,moving back to the first man.,\"stands, and engages in fencing with an opponent, both attached to cables behind them.\",is sitting on the stage talking and talking to himself.,chases after the dog and nimbly keeps him up.,1\n1301,anetv_iAwNYgA6mkc,10446,A man kneels in his fencing gear. A man,A man kneels in his fencing gear.,A man,gold,climbs down the monkey bars in front of another.,is wandering up a heighten hurdle.,walks up to him with his back turned as they talk.,lifts a barbell up to his head.,2\n1302,lsmdc0011_Gandhi-52167,16943,\"Some small children stand near them. Their ritual of washing goes on, but they\",Some small children stand near them.,\"Their ritual of washing goes on, but they\",gold,do not quite meet her.,have not seen head any other way.,\"can more mossy, divided by branch.\",are all watching the passengers of the train.,3\n1303,anetv_DcoHV4WiHQk,3581,The woman looks away from the camera and looks down at the sand. The girl and woman then,The woman looks away from the camera and looks down at the sand.,The girl and woman then,gold,faces each other and they begin their game.,give each other a last hug.,begin digging in the sand.,walks placed in front of it.,2\n1304,anetv_DcoHV4WiHQk,3580,A woman is seen sitting on sand next to a girl. The woman,A woman is seen sitting on sand next to a girl.,The woman,gold,turns around a bit in the water while continuing to talk to the camera.,looks away from the camera and looks down at the sand.,continues playing the orange with the ball and enters the frame while walking to the other.,is then seen shaving her legs and sitting down with her arms out the sides.,1\n1305,lsmdc0013_Halloween-53861,12484,Someone races across the room and picks it up. Someone,Someone races across the room and picks it up.,Someone,gold,sets down the receiver and walks out of the kitchen.,crawls around the bed and peers into the kidnapper's eyes.,\"tumbles down some stairs, then flings someone launch on wall wall.\",\"ducks the car holograph, then hurls a reptile around the city.\",0\n1306,lsmdc0013_Halloween-53861,12483,From the house someone hears the phone ring. Someone,From the house someone hears the phone ring.,Someone,gold,plays the guitar in his hands.,drives someone's convertible.,races across the room and picks it up.,marches down pavement with the dursleys.,2\n1307,lsmdc0013_Halloween-53861,12485,Someone sets down the receiver and walks out of the kitchen. Someone,Someone sets down the receiver and walks out of the kitchen.,Someone,gold,gives someone a dirty look and picks it up.,stands up on his elbows and smiles at someone.,watches the radio coverage surveillance.,sprays the dog full of shampoo and her dog joins her.,0\n1308,lsmdc0005_Chinatown-48268,11441,He lights up and begins to hum 'The Way. Here he,He lights up and begins to hum 'The Way.,Here he,gold,\"spots several photos of a much younger someone, along with someone.\",\"begins to raise it up, onions in them.\",gets off the stage like he is trying to play and can't watch them.,holds up one tattoo tool and starts painting again.,0\n1309,lsmdc0005_Chinatown-48268,11442,\"Here he spots several photos of a much younger someone, along with someone. Someone, still humming,\",\"Here he spots several photos of a much younger someone, along with someone.\",\"Someone, still humming,\",gold,\"turns blankly in the doorway, watching someone with his binoculars.\",\"leans forward trying, bouncing.\",is tracking with someone.,turns to the secretary.,3\n1310,anetv_I2Ctmi7C56k,12921,Two little boys rake leaves in a backyard while a little girl watches and walks with them as they rake. The two little boys rake leaves with red handled rakes and a little girl,Two little boys rake leaves in a backyard while a little girl watches and walks with them as they rake.,The two little boys rake leaves with red handled rakes and a little girl,gold,in a swimsuit walks across the lawn waves.,catches something up flying it out of the way.,leaves a house sitting off the side of the house and girl starts to paint the leaves.,watches them and hangs around while they rake.,3\n1311,anetv_d44RiNHK6KA,3125,Two people are working out on exercise bikes. The one wearing a blue wig,Two people are working out on exercise bikes.,The one wearing a blue wig,gold,puts their hands in the air.,is sitting on.,is down in the crane.,and the bazaar the arm keep it.,0\n1312,lsmdc3022_DINNER_FOR_SCHMUCKS-10519,9412,He gives someone a pointed look. Someone,He gives someone a pointed look.,Someone,gold,\"storms the reactor with a packet in the van, then walks out of the church.\",looks at some goats in front of them then turns back to someone.,\"strikes a pillar against the rock, which then rises off the ground.\",slides the pages onto a spoon.,1\n1313,anetv_Z7zc7zs5Zj8,14768,A woman is seen walking down a set of stairs and begins performing a routine in front of a large audience. The woman,A woman is seen walking down a set of stairs and begins performing a routine in front of a large audience.,The woman,gold,begins by walking around and speaking to the camera and leads into several clips of her walking around stage.,continues dancing around the stage while a group of people play instruments behind her.,cheers and leads into several clips of the gymnast performing down a baton on the stage as well as spinning around it and bowing.,continues down the procession while moving her hips while moving her hands up and down.,1\n1314,anetv_BLTOTjVYiuE,12465,Man with a usa identification on his chest is running in a racetrack and make a long jump. mena,Man with a usa identification on his chest is running in a racetrack and make a long jump.,mena,gold,is shown playing the running field.,re sitting on chairs on sides of he race track.,is standing in a green boxing ring and shows people showcases exercise in a gym.,are doing motocross in a arena.,1\n1315,anetv_BLTOTjVYiuE,16937,A man runs quickly across a track. the man,A man runs quickly across a track.,the man,gold,throws a ball across the field filled with spectators.,jumps several hurdles on the track.,runs up the track runs down the track.,throws a javelin throw as well as running to the field.,1\n1316,anetv_BLTOTjVYiuE,16938,The man jumps several hurdles on the track. the man then,The man jumps several hurdles on the track.,the man then,gold,joins and wraps a throw in a saddle.,lands fire by falling.,leaps into a sandbox.,gets down and dismounts.,2\n1317,anetv_BLTOTjVYiuE,12466,Mena re sitting on chairs on sides of he race track. people,Mena re sitting on chairs on sides of he race track.,people,gold,are fighting down a snowy slope.,are on stands around the field.,run onto the field and distract the bull.,are gathered on football field.,1\n1318,lsmdc3045_LAND_OF_THE_LOST-21252,12900,\"Someone looks to someone, who grins and gives an encouraging nod. He points up and they\",\"Someone looks to someone, who grins and gives an encouraging nod.\",He points up and they,gold,climb to the top.,run off past a relay audience.,run to the side of the room.,enter the photo compartment.,0\n1319,lsmdc3045_LAND_OF_THE_LOST-21252,12899,\"As they climb, someone lags far behind. Someone\",\"As they climb, someone lags far behind.\",Someone,gold,\"heads off across the yard, knocking someone into his arms.\",\"floats up towards him, knocking him down the long metal beams.\",straightens with his gun.,\"looks to someone, who grins and gives an encouraging nod.\",3\n1320,anetv_V9xuy-rVj9w,1118,\"They lob snowballs and ride the cars, then they ski down the hill. They\",\"They lob snowballs and ride the cars, then they ski down the hill.\",They,gold,throw the intertubes down hills going down various hills.,\"are shown skiing and performing many tricks, spinning and flipping as they go.\",go and drive up the hill in tubes.,\"come to the ice and pose for a man, then waves the flag.\",1\n1321,anetv_V9xuy-rVj9w,1117,\"A group of men and boys are on a snow capped hill. They lob snowballs and ride the cars, then they\",A group of men and boys are on a snow capped hill.,\"They lob snowballs and ride the cars, then they\",gold,ski down the hill.,drive through the rapids.,pull them out onto the snowy mountain.,begin rollerblading in a parking lot.,0\n1322,lsmdc0020_Raising_Arizona-57092,13703,As his picture is taken. It,As his picture is taken.,It,gold,is a flood of store.,backs toward the cottage and gets to her feet.,\"'s fallen, came toward him.\",is mounted on a tripod.,3\n1323,lsmdc0020_Raising_Arizona-57092,13705,\"Someone obliges, but still looks at someone out of the corner of his eye. As someone\",\"Someone obliges, but still looks at someone out of the corner of his eye.\",As someone,gold,is escorted away from the camera toward his cell.,\"gazes back at someone, who is watching someone.\",\"turns back, a voice shouts returned to his words.\",\"sits down at the wheel, her gaze flies open as she heads out of the kitchen.\",0\n1324,lsmdc0020_Raising_Arizona-57092,13704,It is mounted on a tripod. Someone,It is mounted on a tripod.,Someone,gold,calmly turns as the helicopter arrives.,gropes around and climbs it out.,\"obliges, but still looks at someone out of the corner of his eye.\",gently taps his temple.,2\n1325,lsmdc3038_ITS_COMPLICATED-17633,4677,Someone gives a broad shrug then drops his hands into his lap. She,Someone gives a broad shrug then drops his hands into his lap.,She,gold,someone grabs his orange pants.,\"his lips, she steps across the room for a little klimt stand.\",blinks and inquisitively tricks.,reaches across the space between them and rubs his shoulder.,3\n1326,lsmdc3038_ITS_COMPLICATED-17633,4678,She reaches across the space between them and rubs his shoulder. She,She reaches across the space between them and rubs his shoulder.,She,gold,keeps her feet apart as she smiles at her sister and swivels away.,nods and shakes her head.,looks away from him then leans one elbow on the armrest and gazes off thoughtfully.,rubs his hand against the back of her pants and pulls the handle and he slumps against the massage table.,2\n1327,lsmdc3038_ITS_COMPLICATED-17633,4681,\"Someone steps outside and opens an umbrella. Someone halts,\",Someone steps outside and opens an umbrella.,\"Someone halts,\",gold,gets up and goes to the door.,stares after her then frowns thoughtfully.,spotting a tall man in a suit.,gives a long nod.,3\n1328,lsmdc3038_ITS_COMPLICATED-17633,4675,She smiles and shakes her head. She,She smiles and shakes her head.,She,gold,bites her bottom lip and blinks at him sheepishly as the wind tousles her honey blonde hair.,embraces her purse and gets up.,strokes her cheek.,lifts her arm to her chest and on his head.,0\n1329,lsmdc3038_ITS_COMPLICATED-17633,4680,A view from the front door shows a flatbed truck carry timber past an excavator. Someone,A view from the front door shows a flatbed truck carry timber past an excavator.,Someone,gold,pulls off his hood.,looks as they bloom stoically.,steps outside and opens an umbrella.,\"stands up, holding his hand on the grass.\",2\n1330,lsmdc3038_ITS_COMPLICATED-17633,4683,Someone's eyes widened and her jaw drops open. Someone smiles and she,Someone's eyes widened and her jaw drops open.,Someone smiles and she,gold,looks to the other men.,holds her doll in both hands.,wags her finger in her air.,turns his head to face behind.,0\n1331,lsmdc3038_ITS_COMPLICATED-17633,4679,As our view slowly orbits the ex - lovers someone's distanced stare drifts. A view from the front door,As our view slowly orbits the ex - lovers someone's distanced stare drifts.,A view from the front door,gold,shows an enormous spilling of liquor.,shows a flatbed truck carry timber past an excavator.,shows the family lifting the pond that was perched on a picnic table.,shows a collection of people held out by water.,1\n1332,lsmdc3038_ITS_COMPLICATED-17633,4682,\"Someone halts, gives a long nod. She\",\"Someone halts, gives a long nod.\",She,gold,trudges toward a construction crew huddled around a table collapsible canopy.,\"chases her uncle down the staircase, then sits down, finds her firmly at the station.\",closes his eyes and shakes her head.,sets the packages up.,0\n1333,lsmdc3073_THE_GUILT_TRIP-34873,11640,Someone's expression freezes and she looks to the floor. She turns aside and someone,Someone's expression freezes and she looks to the floor.,She turns aside and someone,gold,takes out her phone.,turns her back to someone.,looks at her glistening blue eyes.,places a hand on her shoulder.,3\n1334,lsmdc0026_The_Big_Fish-62631,8058,\"Finished with his work, he takes his hat off the chair and hangs it on the rack. With that last job done, there\",\"Finished with his work, he takes his hat off the chair and hangs it on the rack.\",\"With that last job done, there\",gold,is a hole at the door of the next room.,'s no reason for him to be staying any longer.,has been caught in his eyes with a gloved hand.,has a terrible head in his rights.,1\n1335,lsmdc0026_The_Big_Fish-62631,8054,\"Someone pushes against the side of the house until it fits. Holding nails between his lips, someone\",Someone pushes against the side of the house until it fits.,\"Holding nails between his lips, someone\",gold,heaves another of the bloody webs for himself to start to pull back down.,heaves forward as he keeps her coat out.,puts in new windows himself.,sways with his knees.,2\n1336,lsmdc0026_The_Big_Fish-62631,8060,She is very close - - just a half - inch from kissing him when - - - - someone gently holds her back. She,She is very close - - just a half - inch from kissing him when - - - - someone gently holds her back.,She,gold,\"swallows, moves and consists, leaving someone in a disassembled garden.\",\"freezes, stunned and humiliated.\",\"stops, then lowers her gaze and stares ahead, taking a cord from her handle.\",tiptoes into the bathroom.,1\n1337,lsmdc0026_The_Big_Fish-62631,8057,\"Someone leans against the doorframe listening to his story. Finished with his work, he\",Someone leans against the doorframe listening to his story.,\"Finished with his work, he\",gold,takes his hat off the chair and hangs it on the rack.,\"spots his car, revealing on the naked men.\",listens on his cellphone and taps his mobile on the set.,drops the knife on the table and leans in him.,0\n1338,lsmdc0026_The_Big_Fish-62631,8059,\"She takes his hand, lifting his hat up to the peg. She\",\"She takes his hand, lifting his hat up to the peg.\",She,gold,bends down to touch her face.,picks up her; someone steps away from him.,strikes someone's finger.,is very close - - just a half - inch from kissing him when - - - - someone gently holds her back.,3\n1339,lsmdc0026_The_Big_Fish-62631,8056,Someone is screwing a hat rack into the wall in the foyer. Someone,Someone is screwing a hat rack into the wall in the foyer.,Someone,gold,is blasting off the roof of the car and begins to ram the garage.,leans against the doorframe listening to his story.,roll his head out the floor and backside in the strange u - room.,\"the bunk, someone drops on the sofa and takes a seat.\",1\n1340,lsmdc0026_The_Big_Fish-62631,8055,In every detail it is impossibly charming. Someone,In every detail it is impossibly charming.,Someone,gold,takes a photo of his guest and a wounded pout.,is screwing a hat rack into the wall in the foyer.,leans through glasses to his left.,are on the wrong side.,1\n1341,anetv_mdJHGKABLhU,14962,The man continues shaving his beard. He,The man continues shaving his beard.,He,gold,wipes his face with a towel and smiles.,continues to shave his bare legs.,shifts his uneasy around for a moment.,bends down and rubs lotion onto his legs while he walks to the camera.,0\n1342,anetv_mdJHGKABLhU,14961,Words are written on the screen. The man,Words are written on the screen.,The man,gold,is holding the horn congas in front of them and stomping to the camera.,continues shaving his beard.,blows the fire evenly and then takes out the match.,explains and demonstrates how to use the inside of a sink to during paint.,1\n1343,anetv_mdJHGKABLhU,14960,A man with shaving cream on his beard starts shaving. Words,A man with shaving cream on his beard starts shaving.,Words,gold,is shaving the back of a man's head in shaving gel and then sits across from him.,drinks and rubs thoroughly.,over the shaving cream dot his nose.,are written on the screen.,3\n1344,anetv_V3ZDyR7mVpc,6558,We see waterski and the side of a boat. We,We see waterski and the side of a boat.,We,gold,see the name of a brown polo.,see the man skiing and roller high jumps.,\"see a boy standing on a dock, people gas their boat then board.\",see a man watching the ski.,2\n1345,anetv_V3ZDyR7mVpc,6563,\"A person jumps into the water and we see the water skier again. A boy on a trampoline in a shop, people on a raft and a boy\",A person jumps into the water and we see the water skier again.,\"A boy on a trampoline in a shop, people on a raft and a boy\",gold,goes down a hill.,is being pushed from the twisted water.,jumps in the water.,throws a ball on the side of the yard as he fell on the ground.,2\n1346,anetv_V3ZDyR7mVpc,6562,We see a shop then a person paddling on a kayak. A person jumps into the water and we,We see a shop then a person paddling on a kayak.,A person jumps into the water and we,gold,see various waves in the water.,see a boat with the sea wet.,see the people riding then a raft.,see the water skier again.,3\n1347,anetv_V3ZDyR7mVpc,6559,\"We see a boy standing on a dock, people gas their boat then board. We\",\"We see a boy standing on a dock, people gas their boat then board.\",We,gold,see people skiing down a hill.,see two boys playing.,then see the water on a path.,see a lion swimming in the lake.,1\n1348,anetv_V3ZDyR7mVpc,6560,We see two boys playing. We,We see two boys playing.,We,gold,see a person water skiing on a lake.,see cars on a dartboard.,\"dance, then four men talk.\",\"notes, leaves, and the other words players.\",0\n1349,anetv_V3ZDyR7mVpc,6561,We see the cars in the parking lot near the lake and a dog sniffs the camera. We,We see the cars in the parking lot near the lake and a dog sniffs the camera.,We,gold,see tension and cars bouncing down our shots.,\"see the lady hanging towels and children dryer, high and orange and white, on the lady.\",see a lady and a man kneeling to stop the vehicle.,see a shop then a person paddling on a kayak.,3\n1350,lsmdc3057_ROBIN_HOOD-27565,2641,\"Someone glances up a hill. Holding someone's sword, someone\",Someone glances up a hill.,\"Holding someone's sword, someone\",gold,crouches against the prow.,pulls out the smaller fish.,\"shifts his eyes thoughtfully, then gives a nod.\",hides the probe boot over a giant diamond.,2\n1351,lsmdc0005_Chinatown-48410,17548,\"He brings the car a few yards further down the street, parking it near someone's. Someone\",\"He brings the car a few yards further down the street, parking it near someone's.\",Someone,gold,\"pauses and turns deeply, looking at the main building's perimeter window.\",gets out of the car and goes up the walkway.,sits across the outer preps not more.,tilts his head to look at someone with pleasure.,1\n1352,lsmdc0005_Chinatown-48410,17549,Someone gets out of the car and goes up the walkway. The curtains,Someone gets out of the car and goes up the walkway.,The curtains,gold,get dark and look shabby.,are captured as he leaves the car.,are drawn except for one of the small windows on the side of the house.,\"sprays the window on the side, reading it.\",2\n1353,lsmdc0005_Chinatown-48410,17550,The curtains are drawn except for one of the small windows on the side of the house. He,The curtains are drawn except for one of the small windows on the side of the house.,He,gold,stops blows a burst of smoke and flames shoot out of the window.,\"goes to it and looks, balancing on the edge of the porch.\",fills the chamber from the a canister and pulls out when it's coming out the case.,looks awkward as she can get out her car.,1\n1354,lsmdc0043_Thelma_and_Luise-68160,14455,It's already pretty crowded. The long bar,It's already pretty crowded.,The long bar,gold,shows the class entranceway.,shows up; we was showing about her survival - related scarf.,is filled with customers.,is towering by submerged glass.,2\n1355,lsmdc0043_Thelma_and_Luise-68160,14452,They pull off at a place down on the right all lit up with neon. It,They pull off at a place down on the right all lit up with neon.,It,gold,'s called the silver bullet.,shows different angles of them going into the water.,\"sweeps off towards the city, followed by images of an restaurants.\",is at their goal in an area sidewalk covered by a strip of red dirt and one standing in the middle of the trail.,0\n1356,lsmdc0043_Thelma_and_Luise-68160,14453,\"It's called the silver bullet. Even though it's early, you\",It's called the silver bullet.,\"Even though it's early, you\",gold,keep watching for falling.,can tell this place is a real night spot.,can see a little smudge of street bones jowly from a windshield.,can see it sweat primitive badly along two sides.,1\n1357,lsmdc0043_Thelma_and_Luise-68160,14456,The long bar is filled with customers. The room,The long bar is filled with customers.,The room,gold,is quickly between them.,is packed with mist.,is slack and stiff.,is dense with smoke.,3\n1358,lsmdc0043_Thelma_and_Luise-68160,14459,Many heads turn and follow people to an empty table. A waitress,Many heads turn and follow people to an empty table.,A waitress,gold,comes over and drops two menus on the table.,\"is tied around the dining table, crying.\",\"hides a troubled watch, and a small quaffle conducts the young woman.\",steps up to the black two to put out the window.,0\n1359,lsmdc0043_Thelma_and_Luise-68160,14458,\"There is a dance floor, but no one is dancing yet because the band is still setting up. Many heads\",\"There is a dance floor, but no one is dancing yet because the band is still setting up.\",Many heads,gold,walk through the forest.,turn and follow people to an empty table.,back to the stage they sit to talk to the camera.,jump as if doing some sort of karate.,1\n1360,lsmdc0043_Thelma_and_Luise-68160,14457,The room is dense with smoke. There,The room is dense with smoke.,There,gold,opens the passenger door.,is lit inside slowly.,is an oxygen flicker.,\"is a dance floor, but no one is dancing yet because the band is still setting up.\",3\n1361,lsmdc0043_Thelma_and_Luise-68160,14454,\"Even though it's early, you can tell this place is a real night spot. It\",\"Even though it's early, you can tell this place is a real night spot.\",It,gold,'s already pretty crowded.,\"heads through the bathroom, out to the bed of the door.\",\"as a big set of bills, the whale shrink to the underside of the disk.\",\"see someone on the pavement, ten feet away.\",0\n1362,lsmdc0043_Thelma_and_Luise-68160,14451,Someone realizes that someone is going to revert to a teenager and continue whining unless she gives in. They,Someone realizes that someone is going to revert to a teenager and continue whining unless she gives in.,They,gold,pull off at a place down on the right all lit up with neon.,are hitting containers at the kids.,follows someone into the kitchen and gets up.,maintain a nonchalant - until someone is desperate to leave.,0\n1363,lsmdc0027_The_Big_Lebowski-63063,924,Someone is looking around at the '60's modern decor. He,Someone is looking around at the '60's modern decor.,He,gold,\"reaches a entranceway, maneuvering over the area as though to suck it from a dream.\",cuts a syringe and throws it straight down on the ground.,listens to somebody whispering and nods to later in the backyard of the shop.,hands him the drink.,3\n1364,lsmdc3068_THE_BIG_YEAR-3593,740,\"On board, someone reaches across the aisle and taps someone's shoulder. As he turns, she\",\"On board, someone reaches across the aisle and taps someone's shoulder.\",\"As he turns, she\",gold,hands him a slip of paper.,gives him a hug.,stares out upright behind the bus.,kisses him tenderly on the cheek.,0\n1365,lsmdc3068_THE_BIG_YEAR-3593,738,\"Staying behind, someone jogs away joyfully. Beneath the cloudy sky, the plane\",\"Staying behind, someone jogs away joyfully.\",\"Beneath the cloudy sky, the plane\",gold,blows in to scratches.,misses a drop on its support and falls.,lifts off from the runway.,sails back and forth over a traffic.,2\n1366,lsmdc3068_THE_BIG_YEAR-3593,741,\"As he turns, she hands him a slip of paper. He\",\"As he turns, she hands him a slip of paper.\",He,gold,\"reads it, lifts his brow and glances back at her with a hopeful smile.\",walks off and he rushes off.,watches as he shuffles off in the opposite direction.,dons a coat and holds it at his heart.,0\n1367,lsmdc3068_THE_BIG_YEAR-3593,745,\"On the other end of the line, someone strolls through a desert. In a swamp, someone\",\"On the other end of the line, someone strolls through a desert.\",\"In a swamp, someone\",gold,joins someone amid an empty slot on the sidewalk.,stands at the patio door and unwraps an apple.,fights his way past a low branch as he rows a small boat.,signals someone to mordor with a book with blue hair.,2\n1368,lsmdc3068_THE_BIG_YEAR-3593,747,\"Now, words appear beneath the speeding train. Someone\",\"Now, words appear beneath the speeding train.\",Someone,gold,turns to the durmstrang officer building and makes a private gesture.,perches on a railing overlooking.,runs over to his vests and snatches the cellphone from his chest.,arrives at boston south station.,3\n1369,lsmdc3068_THE_BIG_YEAR-3593,748,Someone arrives at Boston South Station. He,Someone arrives at Boston South Station.,He,gold,misses a sign on the corner.,treads down a sidewalk.,spies someone on the platform.,raises the crowned flag.,2\n1370,lsmdc3068_THE_BIG_YEAR-3593,739,\"Beneath the cloudy sky, the plane lifts off from the runway. On board, someone\",\"Beneath the cloudy sky, the plane lifts off from the runway.\",\"On board, someone\",gold,taps the young lad's head on his knees.,reaches across the aisle and taps someone's shoulder.,runs into an elevator.,moves across the ice with the crewman in a building.,1\n1371,lsmdc3068_THE_BIG_YEAR-3593,746,\"He spies a flamingo ahead. At sunset, he\",He spies a flamingo ahead.,\"At sunset, he\",gold,switches off the tap and turns as he glides across the valley.,watches circling gulls from a sand bar.,finds a female focused.,holds the shotgun at someone who uses a determined gaze to try to pick it free.,1\n1372,lsmdc3068_THE_BIG_YEAR-3593,742,A series of scenes highlights his travels. Someone,A series of scenes highlights his travels.,Someone,gold,lifts someone's hat off and someone regards a young presenter.,loops ball in his alley.,hikes up to a waterfall where a bird soars among the mist.,\"is reading, throwing poses at a mannequin.\",2\n1373,anetv_w6Avae5on_0,11312,\"A man stands on the other side, lobbing the ball back to him. They\",\"A man stands on the other side, lobbing the ball back to him.\",They,gold,throw the ball around a few times in another setting.,walk on the gaps between their apartments.,straps on and pump their cheers.,continue hitting the ball back and forth.,3\n1374,anetv_w6Avae5on_0,11311,A child is hitting a ball over a net in a gym. A man,A child is hitting a ball over a net in a gym.,A man,gold,\"stands on the other side, lobbing the ball back to him.\",falls down a field.,is amongst the ice on the ice.,\"grabs the ball and hits it against the goal, right reaching forward to hit the ball.\",0\n1375,anetv_r5oPTDuHhoE,1861,A group of girls are shown standing around a field huddled up together. The next shots,A group of girls are shown standing around a field huddled up together.,The next shots,gold,are of the girls running around the field passing the ball back and fourth.,of a game are shown shows the girls rolling and zooming around them.,are shown of people cheering with one another and skipping around.,are shown of people playing colored times.,0\n1376,anetv_r5oPTDuHhoE,1862,A girl shoots the ball into the goal and achieves a point. Another later,A girl shoots the ball into the goal and achieves a point.,Another later,gold,\"walks on the court, her foot on side on the field.\",comes before the man serves another horse.,- shaped goal is created by a blue screen.,tries to shoot a goal but is blocked by the goalie.,3\n1377,anetv_9nh_6Hzg_aw,11944,A person is shown looking around a city and begins washing windows with his tools. He,A person is shown looking around a city and begins washing windows with his tools.,He,gold,still speaks to the camera while continuing scanning the items.,goes up and down the windows at a rapid pace and continues filming himself through the glass.,takes two more cans along the roof and smooths them out.,continues painting a piece of paper and rubbing them down the side.,1\n1378,anetv_9nh_6Hzg_aw,11945,He goes up and down the windows at a rapid pace and continues filming himself through the glass. He,He goes up and down the windows at a rapid pace and continues filming himself through the glass.,He,gold,finishes the glass in record time and turns off the camera.,looks left and right at the beach.,falls when they where it stops and students seemed to drill.,props his turn on the remote and peers through to another seat.,0\n1379,lsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18275,\"She kisses her sister on the cheek, then leaves the room. When she is gone, someone's broad smile\",\"She kisses her sister on the cheek, then leaves the room.\",\"When she is gone, someone's broad smile\",gold,is briefly plastered on her face.,turns to an expression of contented relief.,spreads over his face as she heads toward him and her eyes drift off.,spreads on her face as the snake tenses someone's face.,1\n1380,lsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18277,\"A little later, someone and the rest of the family are seeing someone out. Someone\",\"A little later, someone and the rest of the family are seeing someone out.\",Someone,gold,is sober.,\"pushes his way up from it, non - casual and startles as the car approaches - - - gives a tiny smile.\",\"smiles briefly at someone, then climbs up onto his white horse.\",trots up the rest of the steps into a doorway then stops with his eyes still closed.,2\n1381,lsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18279,Someone waves her handkerchief at him as someone sets off. Someone,Someone waves her handkerchief at him as someone sets off.,Someone,gold,takes off his mask.,stands next to someone.,gives someone a look with a book in his hands.,steps over to him.,1\n1382,lsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18278,\"Someone smiles briefly at someone, then climbs up onto his white horse. Someone\",\"Someone smiles briefly at someone, then climbs up onto his white horse.\",Someone,gold,walks away from the chopper and leaps in place.,puts his box on a plate as he takes a seat.,crosses his way wearing a catching skirt white and white feather.,waves her handkerchief at him as someone sets off.,3\n1383,lsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5839,Someone puts her face down to the pillow and moans. Someone,Someone puts her face down to the pillow and moans.,Someone,gold,\"holds down a sheet of paper as rushes for the last of someone to get the renovation out of her bag, then quickly dries\",sits at another desk.,picks up someone's rolled up half starts to appear back and more closed.,snaps on a harsh bare bulb at center of room.,3\n1384,lsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5842,\"Someone, in the darkness, does not move. She\",\"Someone, in the darkness, does not move.\",She,gold,folds her hands in prayer and lifts her eyes.,does not go over so he can touch.,\"walks up the low staircase, disappearing into the bushes.\",walks back from the apartment.,0\n1385,lsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5838,His voice is quiet and cold. Someone,His voice is quiet and cold.,Someone,gold,\"peels out over the canvas, leaving an adjoining path of grappling hooks adorned the ceiling.\",\"comes upon, bleeding.\",passes stetson few bushes evacuating the town.,puts her face down to the pillow and moans.,3\n1386,lsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5840,Someone walks to meet her image in the mirror; her eyes on. Her head,Someone walks to meet her image in the mirror; her eyes on.,Her head,gold,\"drops, facing the mirror.\",\"lolls, his face softening.\",hangs to the side.,lolls back and cocks her head.,0\n1387,anetv_fljxcvQe_Mo,10049,The top shingle of a roof dangles unsecured. A man on a roof,The top shingle of a roof dangles unsecured.,A man on a roof,gold,breaks into a gym.,\"hammers a nail into the shingle, securing the shingle.\",\", jump into a small hole.\",falls out onto the ground.,1\n1388,lsmdc3029_GREEN_ZONE-13832,901,The general and his aide cross a dim alcove and disappear through a bead curtain doorway. Someone,The general and his aide cross a dim alcove and disappear through a bead curtain doorway.,Someone,gold,descends the stairs and sits up on the tracks to the bottom.,\"regards him, then thrusts back directly into the stranger's hand and scowls.\",shows a doctor talking to him as he demonstrates how to sharpen his knife.,\"follows, only steps behind.\",3\n1389,anetv_ZdgWC6Jk2Nk,10477,A camera pans out of a dirt hole and shows a man placing it down next to a tree. The camera,A camera pans out of a dirt hole and shows a man placing it down next to a tree.,The camera,gold,follows the man riding through some plates of the areas.,pans around the tree and shows the man checking up on the dirt.,shows on another tool on the street.,shows a person applying neck tattoos on the person's final hair.,1\n1390,anetv_SsW-IeF0bzE,2985,The kids all go down the stairs and back to the fair area. There,The kids all go down the stairs and back to the fair area.,There,gold,are lots of people of all ages around doing different things at the fair.,melodrama sneezes overturns back in the present.,\"get up, and someone charges in and she - charges.\",into the open area where another studio two people are eating together.,0\n1391,anetv_SsW-IeF0bzE,2982,Several kids are driving bumper cars in a group at a fair. A younger girl gets stuck and a man,Several kids are driving bumper cars in a group at a fair.,A younger girl gets stuck and a man,gold,falls to the ground.,falls into a chair.,is seen sitting in a tire frame.,walks over to help her.,3\n1392,anetv_SsW-IeF0bzE,2983,A younger girl gets stuck and a man walks over to help her. The groups time runs out and all of the kids,A younger girl gets stuck and a man walks over to help her.,The groups time runs out and all of the kids,gold,starts twirling around and laughing and laughing to each other.,stand up and exit the bumper car area.,play again and continue cheering and waving a screw and her left to the side.,slide back then hug both kids.,1\n1393,anetv_SsW-IeF0bzE,2984,The groups time runs out and all of the kids stand up and exit the bumper car area. The kids all,The groups time runs out and all of the kids stand up and exit the bumper car area.,The kids all,gold,get in the building and begin playing a game of arm wrestling.,go over with the car followed by light from the car wash.,begin to joke and do quick punches and text on the side of the screen.,go down the stairs and back to the fair area.,3\n1394,lsmdc0043_Thelma_and_Luise-68195,6092,\"She holds a beer bottle in one hand. She is laughing a lot about nothing, and someone\",She holds a beer bottle in one hand.,\"She is laughing a lot about nothing, and someone\",gold,starts to toss her her cake.,won't take her eyes off someone.,pushes the ball back and forth.,is studying her closely.,3\n1395,lsmdc0043_Thelma_and_Luise-68195,6091,\"Someone is breathless, drunk and giggly. She\",\"Someone is breathless, drunk and giggly.\",She,gold,holds a beer bottle in one hand.,\"stares reluctantly, then intercepts her middle finger.\",is being restrained.,watches as her mother sleeps on the porch.,0\n1396,lsmdc0043_Thelma_and_Luise-68195,6093,Someone heads off to the bathroom. She,Someone heads off to the bathroom.,She,gold,meets her wounded gaze.,stumbles a step and drops her beer bottle.,shows some books from a closet.,\"runs to her bed, laughing, and hauls herself up.\",1\n1397,lsmdc1018_Body_Of_Lies-80188,13788,Two suvs drive through gates and stop in front of the Jordanian General Intelligence Directorate. People,Two suvs drive through gates and stop in front of the Jordanian General Intelligence Directorate.,People,gold,get out of the vehicles.,stop and look around the bridge.,stand at an open courtyard painting a parked car.,crane around the room in trailers and they caress the corner.,0\n1398,lsmdc3090_YOUNG_ADULT-44142,5051,\"Later, someone pulls a small red car into someone's driveway. Working with his distilling equipment, someone\",\"Later, someone pulls a small red car into someone's driveway.\",\"Working with his distilling equipment, someone\",gold,slips his arm into his crutch then limps toward the driveway.,approaches a pair of kids.,paces past them and finds his climbing masked son.,thrusts way through the traffic.,0\n1399,anetv_len7R78v5NY,18445,One gets on the equipment and begins moving his arms back and fourth. The other man,One gets on the equipment and begins moving his arms back and fourth.,The other man,gold,pushes the person down on the ground while looking off into the distance.,drops dancing all around while the man follows him and moving the rope around him.,uses the machine while the other speaks to the camera.,walks around continuously while the camera captures all of him in time.,2\n1400,anetv_len7R78v5NY,13519,Two men are seen speaking to the camera in front of an exercise equipment. One man,Two men are seen speaking to the camera in front of an exercise equipment.,One man,gold,appears and leads into the people exercising on the board.,starts speaking to the camera in the bathroom.,gets on and begins demonstrating how to use it.,uses another enclosed tool on the pan as well as more buttons.,2\n1401,anetv_len7R78v5NY,18444,Two men are seen standing in front of a piece of exercise equipment speaking to the camera. One,Two men are seen standing in front of a piece of exercise equipment speaking to the camera.,One,gold,puts close up behind and picks up a piece of equipment.,lays down high on his knees with one arm put which the woman does.,gets on the equipment and begins moving his arms back and fourth.,leads the class on sides as well as a man speaking to the camera.,2\n1402,anetv_len7R78v5NY,13520,One man gets on and begins demonstrating how to use it. The other man,One man gets on and begins demonstrating how to use it.,The other man,gold,continues to speak to the camera and ends by lifting up another weight in various moves.,uses the machine while the first speaks to the camera.,takes the shot but shows it off in slow motion.,cuts the hedge in circles to detail until it finishes.,1\n1403,anetv_cKHdMUfKsQ8,13333,A woman is seen speaking to the camera while holding up a paintbrush and bucket. She,A woman is seen speaking to the camera while holding up a paintbrush and bucket.,She,gold,paints a piece of furniture next to her while also holding up a brush.,uses her hair to wipe it out of the water and onto her face.,picks up a piece of hair and puts it down.,puts the objects around the paint and paints it.,0\n1404,anetv_cKHdMUfKsQ8,13334,She paints a piece of furniture next to her while also holding up a brush. She,She paints a piece of furniture next to her while also holding up a brush.,She,gold,shows several photos on the wall as well as out in front of a mermaid.,holds up more objects while dipping the brushes into them as well as uses it on the furniture.,then shows how to use ski materials and submerged.,then stops sanding crumble blue onto her foot boot.,1\n1405,anetv_BJWL_X79HRc,1799,Several men dreassed in lacrosse gear run onto a field. The opposing teams,Several men dreassed in lacrosse gear run onto a field.,The opposing teams,gold,are shown watching the game.,\"are shown in several clips, fighting and hitting the ball into each other's goals.\",meet in the field on the paintball field.,engage laughing and trying to win the scene.,1\n1406,anetv_MSfIKwQhLFk,5016,They wave at the camera and smile. The other swimmers,They wave at the camera and smile.,The other swimmers,gold,run along the street.,get to the finish line.,sweep the sunset knife back and forth from 20 seconds.,ride out from behind the boat.,1\n1407,anetv_MSfIKwQhLFk,5015,A person reaches the end and takes their goggles off. They,A person reaches the end and takes their goggles off.,They,gold,lob it back and forth.,drag themselves into the water.,ride it to a choppy river.,wave at the camera and smile.,3\n1408,anetv_MSfIKwQhLFk,5014,People dive into the pool and start swimming. A person,People dive into the pool and start swimming.,A person,gold,is hitting a diving board with an object.,reaches the end and takes their goggles off.,falls face down in the pool.,is swinging into a dive pool.,1\n1409,anetv_dQyZheN0Fw0,8707,A woman bends down and puts something on a scale. She then,A woman bends down and puts something on a scale.,She then,gold,uses a large device as well.,slides across the ice.,places glitter over the hoop.,lifts weights up to her head and then puts her hands on the two girls.,1\n1410,anetv_V5MvrOzQWZo,5067,A gymnast is standing near a bar with her hands in the air. The girl,A gymnast is standing near a bar with her hands in the air.,The girl,gold,jumped and jumped and danced on the floor.,gets on the bar and performs.,waves her hands as she does push backflips while sitting.,does a handstand and lands on a far back.,1\n1411,anetv_V5MvrOzQWZo,5072,\"The girls flips, then runs, flips and dismounts. The cloud\",\"The girls flips, then runs, flips and dismounts.\",The cloud,gold,\"drops and clears, following them down.\",raises on the ground.,claps as she walks away.,is measured together one by one.,2\n1412,anetv_V5MvrOzQWZo,5069,The girl flips on the bar. The girl,The girl flips on the bar.,The girl,gold,picks up a selfie can and shows her jump.,performs 2 flips and almost falls off the bar.,climbs on and alternates between bars.,does receive her hands up in preparation.,1\n1413,anetv_V5MvrOzQWZo,5071,The girl does 2 perfect flips. The girls,The girl does 2 perfect flips.,The girls,gold,flip their curlers in the air and skip.,\"flips, then runs, flips and dismounts.\",watch the girls coaches and other girls while in a locker room with white painted beams.,\"drop bikes on the ground, then continue to ride the skateboard and help each other.\",1\n1414,anetv_XU8FzYcRat4,10434,A small group of men are seen standing on a sandy field hitting a ball back and fourth. The men,A small group of men are seen standing on a sandy field hitting a ball back and fourth.,The men,gold,begin a game of volleyball and hit the ball all around the area.,continue walking around and continuously hitting one another while picking up shots.,continue pulling a ball in the net and standing with their hands down the middle.,continue kicking around the game while others walk around and ends with one man bending up and grabbing them.,0\n1415,anetv_XU8FzYcRat4,10435,The men begin a game of volleyball and hit the ball all around the area. The men,The men begin a game of volleyball and hit the ball all around the area.,The men,gold,continue playing while the camera captures them moving around.,continue shooting the ball while others watch on the side.,continue hitting the ball all around the room while a woman watching them play.,continue kicking a ball around sticks and leads into people hitting the ball and looking off into the distance.,0\n1416,anetv_grroBKRxAMY,17351,A man is talking while standing outside in front of a hill. The man,A man is talking while standing outside in front of a hill.,The man,gold,uses tools as a ski mask.,is skiing down a slope as his head in the river.,uses a tool to paint the fence.,is holding a shovel standing in front of a small tree.,3\n1417,anetv_grroBKRxAMY,17352,The man is holding a shovel standing in front of a small tree. The man,The man is holding a shovel standing in front of a small tree.,The man,gold,continues talking and then shovels out some weeds and dirt around the tree.,talks to the camera as he then moves the lawn mower with his left foot.,\"watches two other shots at the night, then leaves them standing near a tree on the ground.\",cuts the mulch and shows off his website.,0\n1418,anetv_grroBKRxAMY,17350,Words are shown on the screen. A man,Words are shown on the screen.,A man,gold,demonstrates how to use the shisha on the ski.,is talking while standing outside in front of a hill.,is shooting at a side pass fields in the background.,stands nearby and yells to a camera.,1\n1419,anetv_grroBKRxAMY,17353,The man continues talking and then shovels out some weeds and dirt around the tree. He,The man continues talking and then shovels out some weeds and dirt around the tree.,He,gold,picks up rocks from around the tree.,begins to go around and begins recreational a path.,reaches over a pile of snow and picks up a small piece of chalk.,places the person onto the ground to signal the results.,0\n1420,anetv_grroBKRxAMY,17354,He picks up rocks from around the tree. There,He picks up rocks from around the tree.,There,gold,them their tarp upside down.,are polite in the parking lot.,is a white bucket in front of him of bark that he puts around the tree.,are gathered together by a narrow cemetery.,2\n1421,anetv_TDROfnEk0NQ,4461,This video teaches viewers how to shave a beard from your face. The man shaves using the cream on his face and he,This video teaches viewers how to shave a beard from your face.,The man shaves using the cream on his face and he,gold,demonstrates how to use the workouts on the long hair.,\"sets it down, continuously to put it underneath until he marks the various features.\",shows us inquisitively then he shaves his eyelids.,removes most of his facial hair.,3\n1422,anetv_TDROfnEk0NQ,4462,The man shaves using the cream on his face and he removes most of his facial hair. Then he,The man shaves using the cream on his face and he removes most of his facial hair.,Then he,gold,adds more shaving cream to his face and takes it off again to shave with an electric razor.,puts mascara on his foot and cleans his face again.,takes the comb to wash on level gestures and then straight before combing the piece of hair and pushing it tight to shaver.,demonstrates how to measure all the moves and wipes the wall countertop with his hands.,0\n1423,anetv_TDROfnEk0NQ,9961,A man is seen looking off into the distance and begins rubbing razor on his face. The man,A man is seen looking off into the distance and begins rubbing razor on his face.,The man,gold,plays the video in reverse to look as if he's putting shaving cream on with the razor.,continues to tighten up the wall while looking at the camera again.,continues speaking and leads into him shaving his head.,continues the blow in his hair while still looking away from the camera.,0\n1424,anetv_TDROfnEk0NQ,9962,The man plays the video in reverse to look as if he's putting shaving cream on with the razor. The men then,The man plays the video in reverse to look as if he's putting shaving cream on with the razor.,The men then,gold,give him a thumbs up and continue shaving them.,uses a different razor to put more hair on his face and smile to the camera.,begin skateboarding in and out of the barber shop.,take their eyes as they head down and continue tattooing them before continuing to dance in the end.,1\n1425,anetv__ucD-3rUWWE,1915,\"The second person begins to kayak and goes ferociously down the next steep hill of rocks and waits. Shortly after, the man in the blue jacket\",The second person begins to kayak and goes ferociously down the next steep hill of rocks and waits.,\"Shortly after, the man in the blue jacket\",gold,\"drops, then take off more skis and then go snow skiing.\",jumps up and waves his arms up.,follows suit and comes behind them.,helps people while lowering his boat arms.,2\n1426,anetv__ucD-3rUWWE,1916,\"Shortly after, the man in the blue jacket follows suit and comes behind them. Lastly, they\",\"Shortly after, the man in the blue jacket follows suit and comes behind them.\",\"Lastly, they\",gold,stand outside as he plays.,\"notice the winding bumpy road in the upper river at once fast gaining speed, mystified by a series of traffic cones.\",pass a lake large concrete doors which made graceful explore cones while another take their seats in the stands.,take two pictures with the forest as back drop near a brown sign with white words reading great falls overlook.,3\n1427,anetv__ucD-3rUWWE,1914,They begin to move to their left and fall over the first hill of large rocks and meet in the corner and begin talking. The second person,They begin to move to their left and fall over the first hill of large rocks and meet in the corner and begin talking.,The second person,gold,\"on poster pans her along one side, her bellowing to the rest of the video.\",gets in to the other bike and gets on the car again and follow their shoes on the sand.,\"dives down a hill before going in deep water on lathered side - recovers and performing them, the other way to play team.\",begins to kayak and goes ferociously down the next steep hill of rocks and waits.,3\n1428,anetv_yVK-GMdc9UA,7906,He is ironing clothes on an ironing board. He,He is ironing clothes on an ironing board.,He,gold,tries to rub the dirt.,pours the bottle onto the glass.,demonstrates how to iron a pair of boots.,flips the clothes over and irons the other side.,3\n1429,anetv_yVK-GMdc9UA,7905,A man is smiling at the camera. He,A man is smiling at the camera.,He,gold,is ironing clothes on an ironing board.,sits with the red with various images of him holding and taking balls.,is narrating the action.,is welding a piece of metal.,0\n1430,lsmdc3068_THE_BIG_YEAR-3386,3586,\"Gazing over someone's shoulder, someone notices someone. They\",\"Gazing over someone's shoulder, someone notices someone.\",They,gold,\"hurry after someone, who disappears into some trees.\",substance a ball down over someone's head.,try to get up.,gaze coyly then his young colleague.,0\n1431,lsmdc3068_THE_BIG_YEAR-3386,3587,\"They hurry after someone, who disappears into some trees. As other birders look through binoculars and snap photos, someone\",\"They hurry after someone, who disappears into some trees.\",\"As other birders look through binoculars and snap photos, someone\",gold,throws a shield against the wall.,shoots the flame inside the dome.,rushes past them and briefly eyes a bird on a tree.,collects his time atop the rock.,2\n1432,lsmdc3068_THE_BIG_YEAR-3386,3591,She sees him and he waves. Someone,She sees him and he waves.,Someone,gold,\"looks over, scowls, then wheels back away.\",looks to someone who holds a pose.,glances across the banquet and looks at the family wistfully.,steps into his line of sight.,3\n1433,lsmdc3068_THE_BIG_YEAR-3386,3583,\"Racing to the front of the crowd, someone crosses in front of a cameraman filming a reporter. He\",\"Racing to the front of the crowd, someone crosses in front of a cameraman filming a reporter.\",He,gold,takes his bow at the points and points at it in the beginning.,moves quickly to the window and sees his driver aims.,shoves past two men.,zooms down on his bloody body.,2\n1434,lsmdc3068_THE_BIG_YEAR-3386,3590,\"As they continue after someone, all of three of their tallies appear, counting up past 300. Through his binoculars, someone\",\"As they continue after someone, all of three of their tallies appear, counting up past 300.\",\"Through his binoculars, someone\",gold,sees someone at a hotel table separating someone from him.,\"follows a bird, then spots the pretty brunette from the boat.\",scans the feet of a building and shuts his bag.,\"notices his line, stands on the davenport, gazing toward a grassy garden, furnished in a every desolate path.\",1\n1435,lsmdc3068_THE_BIG_YEAR-3386,3588,\"Someone and someone stop as well to see the little yellow bird. Slowing his pace, someone briefly\",Someone and someone stop as well to see the little yellow bird.,\"Slowing his pace, someone briefly\",gold,finishes keeping the ingredients all over the man and proceeds to demonstrate one to use.,peers through his binoculars.,steers the board away from the dirt floor.,puts the abandoned root into the trash and forces it against the sun tub.,1\n1436,lsmdc3068_THE_BIG_YEAR-3386,3589,\"Someone and someone arrive a moment later. As they continue after someone, all of three of their tallies appear,\",Someone and someone arrive a moment later.,\"As they continue after someone, all of three of their tallies appear,\",gold,like to be frosts made from more damage.,only eight feet away drops.,counting up past 300.,held in their hands and a dog's tails.,2\n1437,lsmdc3068_THE_BIG_YEAR-3386,3579,\"Later, the three birders talk on their cells. A red line on a map\",\"Later, the three birders talk on their cells.\",A red line on a map,gold,lies in the desert before it passes again.,float to their tiny monkeysee center.,tracks someone's progress to high island.,reflects reads j. snowy's cabin.,2\n1438,lsmdc3068_THE_BIG_YEAR-3386,3581,\"Someone gets out of his car. Climbing out of his vehicle, someone\",Someone gets out of his car.,\"Climbing out of his vehicle, someone\",gold,knocks on the door.,looks over the windscreen but finds nothing to be seen.,puts on his helmet.,breaks into a smile.,3\n1439,lsmdc3068_THE_BIG_YEAR-3386,3584,He shoves past two men. He,He shoves past two men.,He,gold,\"looks up from his typewriter, reaches over a bag and grasps someone's hand, then heads inside.\",\"lies motionless in the car, hands on either side of him.\",\"flips them off as he gazes through his binoculars, then heads away.\",\"blinks slowly, then rests his head against someone's shoulder.\",2\n1440,lsmdc3068_THE_BIG_YEAR-3386,3582,\"Birds fill the sky above the trees, speckling it with clusters of black dots. Racing to the front of the crowd, someone\",\"Birds fill the sky above the trees, speckling it with clusters of black dots.\",\"Racing to the front of the crowd, someone\",gold,crosses in front of a cameraman filming a reporter.,watches jive with someone.,\"watches as she walks past a column of sharks and splits from the trees, and buildings around the central basket.\",types in on - leading with the group and climbs spiral ski in every time.,0\n1441,lsmdc3068_THE_BIG_YEAR-3386,3580,A red line on a map tracks someone's progress to High Island. Someone,A red line on a map tracks someone's progress to High Island.,Someone,gold,darts out out the rear window.,named someone's phone hangs.,touches down into the table and the children stare at each other.,gets out of his car.,3\n1442,anetv_DHfiz3MNbcc,10540,A young lady with burnette hair is standing behind a black counter in a bar with several alcohol on it. She then,A young lady with burnette hair is standing behind a black counter in a bar with several alcohol on it.,She then,gold,pours the alcoholic water into the glass and begins to pour some liquid into the glass with two knees.,pours mayonnaise into a pitcher of whiskey and pierces the remaining glass with a black pitcher.,takes a drink and then drinks it with a glass.,grabs a clear glass and puts ice in it.,3\n1443,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95835,12442,\"One of the slobbering heads is so enormous, it completely fills the doorway. They\",\"One of the slobbering heads is so enormous, it completely fills the doorway.\",They,gold,\"propel the hummer, and sweep their way on the city.\",\"mill past someone, who sits slumped, picking up.\",stand at each other.,slam the door shut.,3\n1444,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95835,12441,The children rush for the door. One of the slobbering heads,The children rush for the door.,One of the slobbering heads,gold,\"is so enormous, it completely fills the doorway.\",for the officer to jump out.,down to reveal someone who is lying on the floor crying.,to a restaurant dining room.,0\n1445,anetv_Zhfm2dWtnpc,6140,Some people are crawling around in the background on the floor. The man,Some people are crawling around in the background on the floor.,The man,gold,cleans something from the wall and drags the woman around him.,demonstrates how to do the steps off the hammers.,picks up his skateboard with his rear hand while a man outside the background watches him furiously.,finishes the routine and then runs over to hug a woman.,3\n1446,lsmdc0010_Frau_Ohne_Gewissen-51566,18036,\"Someone picks up the telephone on his desk and speaks into it. Meanwhile, someone crosses over to someone and, during the ensuing dialogue between him and someone, we\",Someone picks up the telephone on his desk and speaks into it.,\"Meanwhile, someone crosses over to someone and, during the ensuing dialogue between him and someone, we\",gold,hurtle back through the grand gate.,hear someone 'low voice on the phone in background.,see her eyeliner one feet away.,don't hear a rumble.,1\n1447,lsmdc3040_JULIE_AND_JULIA-17836,8145,She browses pastries then tastes a pair. Someone,She browses pastries then tastes a pair.,Someone,gold,brings a mortar and pestle.,looks someone from water filling.,goes off into the house.,stuffs a chipped freezer top.,0\n1448,lsmdc3092_ZOOKEEPER-45235,708,Someone heads to a van in a maintenance lot. Someone,Someone heads to a van in a maintenance lot.,Someone,gold,watches tv as someone talks about a couple.,stops to expose someone's ass.,\"follows, now wearing a yellow polo.\",has entered the living room and gets stairs to home.,2\n1449,lsmdc0021_Rear_Window-59080,18957,\"He grips the flash holder a little more tightly, lifts it just the fraction of an inch as if he is prepared to use it. Someone\",\"He grips the flash holder a little more tightly, lifts it just the fraction of an inch as if he is prepared to use it.\",Someone,gold,peers at his mugshot earlier.,\"has advanced to the middle of the room, his eyes on someone and his hands clenching with the effort to control his anger.\",is stunned on this scene.,swerves off his light and then faces someone with angry eyes.,1\n1450,lsmdc0021_Rear_Window-59080,18956,Someone still does n't speak. He,Someone still does n't speak.,He,gold,moves forward a couple of steps.,drops big towel on the table.,hurries someone to the green truck outside.,looks surprised when someone looks down.,0\n1451,anetv_x_FAc0KqMVw,2107,\"Hello, We are guitar unit okabayashi. The men\",\"Hello, We are guitar unit okabayashi.\",The men,gold,are in the net.,talk about the guitar.,are playing a song on the teams.,bend down to put a match on their telephone neck and finish them both off.,1\n1452,anetv_x_FAc0KqMVw,2108,The man on the left describes his guitar. The men,The man on the left describes his guitar.,The men,gold,continue dancing together with a logo as film volume jots instruments for the accordion in park.,begin to play the guitars.,engage in martial arts gear.,begin playing the cricket drum cymbals.,1\n1453,anetv_x_FAc0KqMVw,2109,The men begin to play the guitars. They,The men begin to play the guitars.,They,gold,set it up to look through the other.,finish the song and look at the camera.,are talking to the song area.,hold the same dancing motions as they tap.,1\n1454,anetv_x_FAc0KqMVw,7826,Two people are sitting in chairs holding acoustic guitars. They,Two people are sitting in chairs holding acoustic guitars.,They,gold,\"continue singing, very to be singing, and singing.\",stop playing and partying with one another.,continue playing together while the rafters perform their karate moves.,begin to play the guitars.,3\n1455,anetv_x_FAc0KqMVw,7827,They begin to play the guitars. They,They begin to play the guitars.,They,gold,continue to create various angles.,continue playing the board.,stop playing and set the guitars on their laps.,quickly come to the bottom.,2\n1456,anetv_t_2jTjX3a_o,6591,A countdown is shown followed by a woman catching balls thrown at her. The number,A countdown is shown followed by a woman catching balls thrown at her.,The number,gold,are then shown several other venues hooping on to the ground.,keeps running with other people as they walk along the ramp.,comes to the end and begins playing with her while looking into the camera.,counts down more and shows more clips of women playing dodgeball.,3\n1457,anetv_t_2jTjX3a_o,6592,The number counts down more and shows more clips of women playing dodgeball. Several more numbers and clips,The number counts down more and shows more clips of women playing dodgeball.,Several more numbers and clips,gold,are shown with people shredded shots putting raspberries in one person.,are shown of people practicing walk.,are shown ending with people performing impressive throws.,are shown of people sitting on several bikes in the store as well as up.,2\n1458,anetv_8GeLWWLIar4,16337,We see the man perform a leg sweep move. We,We see the man perform a leg sweep move.,We,gold,see the practice title.,see a ballerina in the crowd.,see an animated close scene and a subscribe page.,see the man wake up.,2\n1459,anetv_8GeLWWLIar4,16333,We see the man sitting on the floor talking to a camera. We,We see the man sitting on the floor talking to a camera.,We,gold,see a man break stage.,see the man and the pumpkins inside.,dock is being driven on a car.,see the man illustrating break dance moves.,3\n1460,anetv_8GeLWWLIar4,16336,We see the man dance fast. We,We see the man dance fast.,We,gold,see the weight lifter lifting legs.,see the interrogator and work the movements of his wrists.,see the girl interviewed and see him again.,see the man perform a leg sweep move.,3\n1461,anetv_8GeLWWLIar4,16332,We see a dancing man on the cover of a book then on a street. We,We see a dancing man on the cover of a book then on a street.,We,gold,\"see the lady in a blue shirt, talking to a camera.\",see the man sitting on the floor talking to a camera.,see a tattoo on his left hand again.,see a lady get the balls to kick and make them stop.,1\n1462,anetv_8GeLWWLIar4,16335,The man is talking and sitting still. We,The man is talking and sitting still.,We,gold,\"is following the director of the car, moving a fishing stick in the net.\",see the professional body giving the high five to the other.,see the man dance fast.,cleans the machine and he takes a hose and films a pot on the pool but he blows it over.,2\n1463,lsmdc1062_Day_the_Earth_stood_still-100940,12775,\"He is about to leave, when he notices the old drill bit. It\",\"He is about to leave, when he notices the old drill bit.\",It,gold,takes the gun out of the pocket of the cap so he does n't see anyone.,'s being eaten away.,'s up as a policeman knocking out a sunglasses cup.,\"'s pretty good - only, almost really staggering.\",1\n1464,lsmdc1062_Day_the_Earth_stood_still-100940,12776,It's being eaten away. He,It's being eaten away.,He,gold,digs a spoon through a hole in a large silver spoon.,\"watches someone climb into the cab, saw through a bloody hole in the ground.\",\"walks up to someone, his brow furrowed.\",drops it and hurriedly makes to leave the chamber.,3\n1465,anetv_m4ef0fCA2WU,10835,A young woman holding a baby walks to a swing and puts the baby in the swing. She then,A young woman holding a baby walks to a swing and puts the baby in the swing.,She then,gold,rolls cracked and falls down to the ground.,grabs an ax and swings herself out and down.,walks in front of the baby and sits in the adult seat attached to the baby swing.,dismounts and goes onto the water for the baby.,2\n1466,anetv_m4ef0fCA2WU,10833,Children of different ages are playing on a playground. A couple of women,Children of different ages are playing on a playground.,A couple of women,gold,are in the playground area talking.,are in front of the house watching.,are dancing on front a set of monkey bars.,are climbing monkey bars on the playground.,0\n1467,anetv_m4ef0fCA2WU,10837,Another woman walks past with a few kids. The woman on the swing,Another woman walks past with a few kids.,The woman on the swing,gold,arrives after the woman is interviewed.,throws her hair up and nuzzles to her ear.,swings the baby while talking to him and making faces at him.,speaks to the audience.,2\n1468,anetv_m4ef0fCA2WU,10834,A couple of women are in the playground area talking. A young woman holding a baby,A couple of women are in the playground area talking.,A young woman holding a baby,gold,is guiding the woman.,scans the woman with her dogs.,walks to a swing and puts the baby in the swing.,sits beside her on the swing set.,2\n1469,anetv_m4ef0fCA2WU,10836,She then walks in front of the baby and sits in the adult seat attached to the baby swing. Another woman,She then walks in front of the baby and sits in the adult seat attached to the baby swing.,Another woman,gold,walks past with a few kids.,\"walks down a slide, speaking to a baby in a white shirt while holding the baby.\",comes down the slide.,sits on the floor oblivious.,0\n1470,anetv_ERcMdKNF_pc,17717,A gymnast prepares to mount a beam. He,A gymnast prepares to mount a beam.,He,gold,mounts the beam and dismounts.,dismounts and lands on the mat.,stands up on the beam and mounts the beam.,\"mounts, then spins and flips several times.\",3\n1471,anetv_ERcMdKNF_pc,17718,\"He mounts, then spins and flips several times. He\",\"He mounts, then spins and flips several times.\",He,gold,\"gets to the end then stretches his rope, jumping high on his knees.\",releases the jump at the olympics challengingly.,\"dismounts, raising his arms into the air.\",\", quickly celebrates, catching the bow then puts it on a game stand to take his place.\",2\n1472,anetv_LmioUbGNv04,1072,A man is seen kicking another man holding a mat. People behind him,A man is seen kicking another man holding a mat.,People behind him,gold,watch spinning the boy off stage.,approach the ball along.,practice as he continues to kick.,swim around and watch him get his shirt up.,2\n1473,anetv_LmioUbGNv04,1073,People behind him practice as he continues to kick. The man,People behind him practice as he continues to kick.,The man,gold,demonstrates all and how to balance an angle as the continue to swing.,demonstrates the length of a very block with the croquet pucks.,left the teams right in the eye as the boy practices karate kicks.,kicks the other over and over.,3\n1474,anetv_LmioUbGNv04,9463,The man holds up a mat in his arms and another man kicks the mat. The other,The man holds up a mat in his arms and another man kicks the mat.,The other,gold,coach gives him a high five.,continues kicking and ends by fading to black.,wrestler grabs the opponent and walks away.,man smells his leg and screws while another man comes around.,1\n1475,anetv_xabaKyhx7cg,20021,A man begins scrubbing the shoes with a brush. the man,A man begins scrubbing the shoes with a brush.,the man,gold,then rubs water over the man's face to scrub it clean.,removes the shoe from the bowl with.,places the shoes in a bag and puts the bag in a washing machine.,brushes his teeth with a wet rag and begins wiping off camera.,2\n1476,anetv_xabaKyhx7cg,20020,Dirty sneakers are shown next to some show products. a man,Dirty sneakers are shown next to some show products.,a man,gold,begins scrubbing the shoes with a brush.,is using hair extensions that is addressed with a dog.,trains some of the works to brush a wall.,eats from a clear trimmed brush.,0\n1477,anetv_xabaKyhx7cg,730,\"They fill up a tin of water, pour polish inside, and then scrub the outside of the shoes. He\",\"They fill up a tin of water, pour polish inside, and then scrub the outside of the shoes.\",He,gold,studs the hair and the beard fetch.,pulls out of a bag to put the shoes in and throws the bag into a washing machine.,ends with the final product afterwards adding it onto the dish.,sprays the paper bucket and put it by the bucket.,1\n1478,anetv_xabaKyhx7cg,731,He pulls out of a bag to put the shoes in and throws the bag into a washing machine. He finally,He pulls out of a bag to put the shoes in and throws the bag into a washing machine.,He finally,gold,\"demonstrates passing over the parts for a second, and empties up his bags.\",pulls the new shoes out of the bag and pans around the shoes to show how clean they look.,paints a different wall and starts to remove his shoe.,shows the bike out to the man and helmet scrapes and discusses and shows off to paint.,1\n1479,anetv_xabaKyhx7cg,729,A close up of sneakers and polish is shown followed by a person's hands putting objects into shoes. They,A close up of sneakers and polish is shown followed by a person's hands putting objects into shoes.,They,gold,\"fill up a tin of water, pour polish inside, and then scrub the outside of the shoes.\",are seen falling along the floor as well as laying down and laying a shoe.,begin demonstrating how to move paper and cleans the floor.,all began applying clothes makeup to the back and pointing to the camera.,0\n1480,lsmdc3022_DINNER_FOR_SCHMUCKS-10558,4433,Someone hangs up and looks thoughtful. The Porsche,Someone hangs up and looks thoughtful.,The Porsche,gold,\"strokes the man's face, grabs him, and grabs someone's shoulder.\",pulls up in front of someone's palatial home.,woman gently licks the rug.,is airborne with a tense look.,1\n1481,anetv_6E4_XOsT89k,7441,A person is standing on top of a high diving board. They,A person is standing on top of a high diving board.,They,gold,jump off and do flips into the water.,make several dive in the water.,swim from side to side.,swim along the hole with the fish.,0\n1482,anetv_6E4_XOsT89k,7442,They jump off and do flips into the water. The crowd,They jump off and do flips into the water.,The crowd,gold,continue and shake hands.,is laughing for the video.,watches the person dive.,goes down the beam.,2\n1483,lsmdc0010_Frau_Ohne_Gewissen-51027,13676,\"First we see her feet, with pom - pom slippers and the gold anklet on her left ankle. Camera\",\"First we see her feet, with pom - pom slippers and the gold anklet on her left ankle.\",Camera,gold,comes back and plays with her right hand.,lady is walking in the middle of the lot.,gets herself in in a nice position.,\"pulls back slowly as she descends, until we see all of her.\",3\n1484,lsmdc0010_Frau_Ohne_Gewissen-51027,13677,\"Camera pulls back slowly as she descends, until we see all of her. She\",\"Camera pulls back slowly as she descends, until we see all of her.\",She,gold,closes the door and check it in her pocket.,is wearing a pale blue summer dress.,turns and can hear her voice come out of the door.,notices a sweet low - cheeked girl in a sketchbook.,1\n1485,lsmdc0010_Frau_Ohne_Gewissen-51027,13672,Maid goes off the other way. Someone,Maid goes off the other way.,Someone,gold,fills the bar bag with money.,turns through the mist and peers down the hallway.,comes into the room and throws his briefcase on the plush davenport and tosses his hat on top of it.,picks the tray's coffee off and leaves.,2\n1486,lsmdc0010_Frau_Ohne_Gewissen-51027,13675,His back is to the archway as he hears high heels clicking on the staircase. He,His back is to the archway as he hears high heels clicking on the staircase.,He,gold,approaches the plastic door and his feet sticking through it.,\"slips it from her mouth, slips it open, and inserts a button on her pants.\",\"leans toward the cottage door and falls down, with a sigh.\",turns and looks through the arch.,3\n1487,lsmdc0010_Frau_Ohne_Gewissen-51027,13670,He speaks to the maid while still looking up. He,He speaks to the maid while still looking up.,He,gold,uses the thermometer to his ear.,goes through the archway.,lets go of them when they turn the water and walk away.,has entered the day.,1\n1488,lsmdc0010_Frau_Ohne_Gewissen-51027,13678,He crosses to the davenport to get the policies from his briefcase. She,He crosses to the davenport to get the policies from his briefcase.,She,gold,holds his for a few moments before he leaves the house.,\"turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible.\",works out at the computer.,removes his glasses and glances down as someone stomps out from the front seat.,1\n1489,lsmdc0010_Frau_Ohne_Gewissen-51027,13674,His eyes fall on a wrinkled corner. His back,His eyes fall on a wrinkled corner.,His back,gold,is to the archway as he hears high heels clicking on the staircase.,\"troubled, he rises toward the camera.\",begins to twitch as he watches someone.,is obscured in one open.,0\n1490,lsmdc0010_Frau_Ohne_Gewissen-51027,13679,\"She turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible. Someone\",\"She turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible.\",Someone,gold,\"very slender, someone is in the light of her life.\",smiles faintly and covers the anklet with her dress.,is heavily bandaged asleep.,is awakened.,1\n1491,lsmdc0010_Frau_Ohne_Gewissen-51027,13673,Someone walks away from the piano and takes a few steps back and forth across the rug. His eyes,Someone walks away from the piano and takes a few steps back and forth across the rug.,His eyes,gold,focus on someone as the flames change facing someone's face.,\"level, he uses his hand to groom the cat's arm.\",\"are close on the music, his feet set in the rhythm of his feet.\",fall on a wrinkled corner.,3\n1492,anetv_V1NtrnPz3sA,14246,She spins around throwing the ball yet again with a third throw followed shortly after. She,She spins around throwing the ball yet again with a third throw followed shortly after.,She,gold,performs one last throw and spins herself around once again.,hits the pinata with her hand and pulls around.,joins in by throwing throwing darts.,continues moving the mop back and fourth.,0\n1493,anetv_V1NtrnPz3sA,14245,She throws the ball and again prepares for another throw. She,She throws the ball and again prepares for another throw.,She,gold,is audible and a few times to drop her dress.,spins around throwing the ball yet again with a third throw followed shortly after.,looks at the camera again.,\"scores and scores more cheers, but the girl in the long game helps become little how to turn a ball around the net and\",1\n1494,anetv_V1NtrnPz3sA,14244,An athletic woman is stretching with a ball and swinging her legs back and fourth. She,An athletic woman is stretching with a ball and swinging her legs back and fourth.,She,gold,gets up and walks away from the camera.,throws the ball and again prepares for another throw.,continues swinging the rope several times and pulling the rope.,continues running around jumping and ends with him jumping off the mat.,1\n1495,anetv_QQNW2ha8WIs,9367,The boy jumps and catches the doll and slams it between his legs on the trampoline. The boy,The boy jumps and catches the doll and slams it between his legs on the trampoline.,The boy,gold,misses trying to catch the doll and falls on the trampoline.,slides the scissors through the man's nails.,leans up and hits the ball.,swings several times and then begins to practice with its body again.,0\n1496,anetv_QQNW2ha8WIs,9366,The boy falls back and lands on his back on the trampoline. The boy,The boy falls back and lands on his back on the trampoline.,The boy,gold,stops playing for the boy.,slides out of the frame as the wall continues to take.,returns the rolled up into the weights and lifts it over his head.,jumps and catches the doll and slams it between his legs on the trampoline.,3\n1497,anetv_QQNW2ha8WIs,9365,A boy jumps on a trampoline while catching a stuffed doll on his shoulders in the air. The boy,A boy jumps on a trampoline while catching a stuffed doll on his shoulders in the air.,The boy,gold,calls the boy away.,sets its head down and smashes the liquor bottle on to cement.,picks up a white sweater and rubs it to the middle of the table.,falls back and lands on his back on the trampoline.,3\n1498,anetv_Ayix_aDOrzs,6331,The kids sits patiently with a towel on her head and speaking to the camera. A goldfish,The kids sits patiently with a towel on her head and speaking to the camera.,A goldfish,gold,walks towards the boy and starts to weep.,holds a dirty bread while washing him in a sink.,is shown followed by a man cutting and styling her hair.,throws her ponytail back.,2\n1499,anetv_Ayix_aDOrzs,6332,The man cuts the girl's hair and styles it into an adorable look. The girl,The man cuts the girl's hair and styles it into an adorable look.,The girl,gold,repeats the same with the dogs hair.,smiles and leaves the hair salon looking happy.,stands the french braid the girl styles his hair.,is laying down on the snow covered cake.,1\n1500,anetv_Ayix_aDOrzs,6330,A girl is shown looking at several pictures of hairstyle and leads into another cutting one's hair. The kids,A girl is shown looking at several pictures of hairstyle and leads into another cutting one's hair.,The kids,gold,paints her hair with arms while he shows tapes her hair.,sits patiently with a towel on her head and speaking to the camera.,continues speaking in various pictures and ends with her looking upset.,perform several flips in the water while looking off into the distance and points to the camera.,1\n1501,lsmdc3035_INSIDE_MAN-1866,1982,\"In the bank, the hostages sit in an office. A lanky guy\",\"In the bank, the hostages sit in an office.\",A lanky guy,gold,works on the machine.,removes his hood and mask.,works up arm students.,urinates in her ring.,1\n1502,anetv_YnG1Uhh2h5E,12276,Two young man and a man play pool hitting white balls with a cue stick. The young man,Two young man and a man play pool hitting white balls with a cue stick.,The young man,gold,hits balls that land in the pocket of the pool table.,\"threw a rod and landed shot while he kicked it again, but paused again.\",kicks the ball across the karate court.,\"knocks for the ball and hits the ball several times, and knock over a few of the pins.\",0\n1503,anetv_YnG1Uhh2h5E,12278,\"After, the young man strikes the white ball but immidiately stop it with the cue sticks. Next, the young man\",\"After, the young man strikes the white ball but immidiately stop it with the cue sticks.\",\"Next, the young man\",gold,takes a shot of the goal and hits a ball from the wall.,strikes the balls and sends a white ball to a pocket.,applies another the ring.,\"takes a hit, mops the bar, hammers in.\",1\n1504,anetv_YnG1Uhh2h5E,12280,\"The man strikes a white ball and send balls in the pocket. At the end, the young man\",The man strikes a white ball and send balls in the pocket.,\"At the end, the young man\",gold,throws a ball onto a table and looks at it.,celebrates his walk board with his father.,picks it up and throw it at another.,puts the ball inside a metal triangle.,3\n1505,anetv_YnG1Uhh2h5E,12279,\"Next, the young man strikes the balls and sends a white ball to a pocket. The man\",\"Next, the young man strikes the balls and sends a white ball to a pocket.\",The man,gold,bends down quickly and grabs a shot put.,throw balls straight up into the air and falls off the field.,tries to hit the ball back and forth against the wall by the board cabinet.,strikes a white ball and send balls in the pocket.,3\n1506,anetv_YnG1Uhh2h5E,12277,\"The young man hits balls that land in the pocket of the pool table. Then, the man\",The young man hits balls that land in the pocket of the pool table.,\"Then, the man\",gold,runs off with his supporters and both go black and disheveled.,puts the balls in a metal triangle and arrange others balls.,beats the hand holding a bowling ball on the trophies.,highlights the men standing on the end of the game.,1\n1507,lsmdc0013_Halloween-53782,9080,He slowly walks toward it. Camera slowly,He slowly walks toward it.,Camera slowly,gold,sweeps out of frame.,\"moving toward the game below, past the trees.\",tracks in toward the window.,slides off the laser beam and stands silhouetted amidst the teeming rain.,2\n1508,lsmdc0013_Halloween-53782,9079,Someone just looks at him a moment. Someone,Someone just looks at him a moment.,Someone,gold,\"seems focused, trying to look at the sound of someone's voice from the movie.\",\"goes off, leaving the left door ajar.\",turns and walks out of the bedroom.,\"shakes his hand, and heads for the door.\",2\n1509,lsmdc0013_Halloween-53782,9081,Camera slowly tracks in toward the window. Someone,Camera slowly tracks in toward the window.,Someone,gold,opens her right eye.,walks along some pipes and begins to increase until it just speeds across the murky flow of the sinks.,stops by the window.,\"pokes a cigar box at another, which strains to open.\",2\n1510,lsmdc0013_Halloween-53782,9077,Someone walks over to the spot where the sister was sitting. Someone,Someone walks over to the spot where the sister was sitting.,Someone,gold,skims another to the front.,stares at someone in shock.,turns and glances at the window.,bends over and kisses him.,2\n1511,lsmdc0013_Halloween-53782,9076,They glance at each other. Someone,They glance at each other.,Someone,gold,\"scales the hedges together, then sweeps scrub patches of grass together.\",beats on the circuit door unlocking.,walks over to the spot where the sister was sitting.,team and guests file out.,2\n1512,lsmdc0013_Halloween-53782,9078,Someone turns and glances at the window. Someone just,Someone turns and glances at the window.,Someone just,gold,looks at his reflection in the mirror.,\"stares after him, grinning, but does not look at her.\",looks at him a moment.,looks up at the old man.,2\n1513,anetv_O2JUUFFdWpk,15066,He picks up a green can and takes a drink. He then,He picks up a green can and takes a drink.,He then,gold,puts soda into the glass and drinks some of the beer in front of him and fixes the drink.,fumbles over his drum contents to finish.,plays rock paper scissors with another man across from him.,rinses his eyes and blends this throughout.,2\n1514,anetv_O2JUUFFdWpk,15065,A man in a blue costume throws something into the audience. He,A man in a blue costume throws something into the audience.,He,gold,\"shoots the ball into the pool, balls down, and drops out of the pool.\",picks up a green can and takes a drink.,drinks a small beer while someone serves his drink in a fast manner.,struggles off the monitor.,1\n1515,lsmdc3032_HOW_DO_YOU_KNOW-2172,5814,\"Hanging her head, someone squeezes her eyes shut. They\",\"Hanging her head, someone squeezes her eyes shut.\",They,gold,tear up as she opens them.,pigtails form a teenager's ponytail.,settles to her knees and her upper part fades.,fire for a decision.,0\n1516,anetv_9hPFweZeIWs,9403,They release a calf from a box. A man on a horse,They release a calf from a box.,A man on a horse,gold,does a handstand while the other man gets on and back.,runs after the calf.,ties a calf on a horse.,performs horse with a black rope attached to a string.,1\n1517,anetv_9hPFweZeIWs,9404,A man on a horse runs after the calf. He,A man on a horse runs after the calf.,He,gold,then stuffs it with soap.,applies dried leaves to his tail.,does the dog.,ties the legs of the calf and gets up and walks away.,3\n1518,anetv_9hPFweZeIWs,9402,People are standing around an arena wearing cowboy hats. They,People are standing around an arena wearing cowboy hats.,They,gold,go with heavy ropes.,release a calf from a box.,are then talking to the camera in front of them.,are riding on stilts outside.,1\n1519,lsmdc0008_Fargo-49939,209,\"His features are broad, friendly, Asian - American. A waitress\",\"His features are broad, friendly, Asian - American.\",A waitress,gold,passes him and their ball starts.,meets them at the table.,wears a black jacket with a mustache and a mustache.,appears on the line to take a swig of the flask.,1\n1520,lsmdc0008_Fargo-49939,208,\"It is a bald, paunching man of about someone's age, rising from a booth halfway back. His features\",\"It is a bald, paunching man of about someone's age, rising from a booth halfway back.\",His features,gold,\"etched and dull, he is stopped, and brandish his sword as but not blow his coat.\",\"are broad, friendly, asian - american.\",are turned to the monitors as he tosses in toward the door.,are close and controlled.,1\n1521,lsmdc1048_Gran_Torino-92242,16428,\"Someone puts away a photo of his wife. Sitting on his porch, he\",Someone puts away a photo of his wife.,\"Sitting on his porch, he\",gold,turns to the bathroom.,looks over at the road.,gazes at his work and peeks out at a negative swell across the sidewalk.,looks down at dark water from the upstairs window.,1\n1522,lsmdc1048_Gran_Torino-92242,16429,\"Sitting on his porch, he looks over at the road. She\",\"Sitting on his porch, he looks over at the road.\",She,gold,\"his eyes shut, he slips her coat from behind his back and looks him in the eye.\",is drawing of himself thrown from a window.,is outside on his porch with the lens in his hand.,walks over towards him as he sips from a beer can.,3\n1523,anetv_x6E92fGgdH4,13884,\"A blue screen appears with the word Ansell on it followed by the words Hand Scrubbing. After, a young lady dressed in scrubs,\",A blue screen appears with the word Ansell on it followed by the words Hand Scrubbing.,\"After, a young lady dressed in scrubs,\",gold,\"stops and talks about ingredients on how to make a sandwich, then cook a cake on the dish counter.\",walks into a room and peels off paper from a scrub brush.,takes a product and dries it off with the bench.,wash dishes while explaining what she is doing.,1\n1524,anetv_x6E92fGgdH4,13887,\"Next she applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off. For her last step, she\",Next she applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off.,\"For her last step, she\",gold,moves it a bit at the end from various angles holding the camera behind her.,turns her finger down and moves in fully until she is completely clean.,uses her arms to turn the water off and walks out of the room making sure to not touch anything.,walks to the sink holding some smoothing and continuing mopping the floor.,2\n1525,anetv_x6E92fGgdH4,13885,\"After, a young lady dressed in scrubs, walks into a room and peels off paper from a scrub brush. Once she turns the water on, she\",\"After, a young lady dressed in scrubs, walks into a room and peels off paper from a scrub brush.\",\"Once she turns the water on, she\",gold,begins scrubbing her arms and under her nails for 15 minutes.,grabs an orange bag and grabs the yellow jacket.,rubs her hands with hose bottle and smiles and waves to the camera.,adds her oil and solution.,0\n1526,anetv_x6E92fGgdH4,11641,The doctor uses a brush to scrub nails and hands. A doctor,The doctor uses a brush to scrub nails and hands.,A doctor,gold,wipes the rag all over the knife and pours it in another man.,applies plaster to the boot and applies them to a paint wall.,picks up a stone chart to start the process as she speaks.,washes their hands in a large stainless steel sink with hand soap multiple times.,3\n1527,anetv_x6E92fGgdH4,13886,\"Once she turns the water on, she begins scrubbing her arms and under her nails for 15 minutes. Next she\",\"Once she turns the water on, she begins scrubbing her arms and under her nails for 15 minutes.\",Next she,gold,shaves her skate board when she has hold of her leg while still speaking to the camera.,applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off.,\"spreads the ballerina vegetables, puts it to the sink and flips the lotion over.\",does someone's hand on her back and they fall to the floor and ends up scratching her forehead.,1\n1528,anetv_x6E92fGgdH4,11642,A doctor washes their hands in a large stainless steel sink with hand soap multiple times. The doctor,A doctor washes their hands in a large stainless steel sink with hand soap multiple times.,The doctor,gold,shows how to wash the sink with a sponge and continue to wipe it in a sink with the paste rag.,then introduces the friend to wennerstrom before the game is shown.,completely rinses their hands then clasps together and walks out of the room without touching anything.,sits together and talks to the trainer on a body and also type camera materials with overlaid paraphernalia explaining the process.,2\n1529,anetv_XztphLXwZjU,12391,\"A man is indoors, quickly placing wood tiles onto a floor as the camera plays extremely fast. He\",\"A man is indoors, quickly placing wood tiles onto a floor as the camera plays extremely fast.\",He,gold,\"practice kicks, then the man in the black suit appears again and the crowd is shown in a a white light lit shot.\",returns to the room where he shows how to play the bagpipes.,uses a leveler and cutter and completes the room with grout before walking out.,begins vacuuming the floor with a curling iron and putting it into place.,2\n1530,anetv_y4Y8gD1mpTw,19949,Then she dips her nail into that paint. She,Then she dips her nail into that paint.,She,gold,goes brush on the wood and add polish to the nails.,paints each section of the christmas with the glitter brush.,cleans off any excess nail polish that has smeared on the side of the nails with a paint brush and q - tip.,teases and dips the needle on browned.,2\n1531,anetv_y4Y8gD1mpTw,19948,Then she puts drops of different colored nail polish on the water surface. Then she,Then she puts drops of different colored nail polish on the water surface.,Then she,gold,\"puts the object on the floor, then iron the other side.\",dips her nail into that paint.,shaves her hair back and continues talking.,cleans the screen end the spray to make sure it is applied.,1\n1532,anetv_y4Y8gD1mpTw,19946,She uses a nail polish brush and dips it in water. She,She uses a nail polish brush and dips it in water.,She,gold,lights up a solution on a small cabinet.,stands on a mower in the grass in the yard.,finishes her braid before one of the laughing girls smiles and opens another brush onto her fingers.,gives the instructions on how to start with a base coat of nail polish.,3\n1533,anetv_y4Y8gD1mpTw,19947,She gives the instructions on how to start with a base coat of nail polish. Then she,She gives the instructions on how to start with a base coat of nail polish.,Then she,gold,uses how to put the adhesive strip on one shoe then brush it further.,puts drops of different colored nail polish on the water surface.,uses a piece of ribbon to apply a press present after she use prayer next on cup then braid it.,holds an iron up over her nose to use the first straw of the wallpapers.,1\n1534,anetv_y4Y8gD1mpTw,19945,A woman is doing a tutorial on how to do water marble nails using water. She,A woman is doing a tutorial on how to do water marble nails using water.,She,gold,keeps making moves with the paddle.,shows several different steps showing how to braid the skirt.,takes down the wallpaper and begins about the process until the process is finished.,uses a nail polish brush and dips it in water.,3\n1535,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7514,\"Now in a tavern, they stand at a bar. A mirror\",\"Now in a tavern, they stand at a bar.\",A mirror,gold,shows someone a shadow with no one before it.,reflects his reflection in the mirror.,shows the cycling - class man carefully entering her car.,blocking someone's attention.,0\n1536,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7508,\"He finishes with a mighty upward swing. Now balanced on logs, someone\",He finishes with a mighty upward swing.,\"Now balanced on logs, someone\",gold,climbs off in the knee.,places his finger on a handle.,spars with an unarmed someone.,\"walks down the stairs but returns to the front door, with the straps at his back.\",2\n1537,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7512,\"Someone writes in his journal. At a forge, someone\",Someone writes in his journal.,\"At a forge, someone\",gold,uses a name on mjolnir.,pours silver on the ax.,sits near the built plaster.,lets someone run into the present.,1\n1538,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7502,\"Twisting his whole body, someone slices through the massive trunk. Woodchips fly from the cut and the tree\",\"Twisting his whole body, someone slices through the massive trunk.\",Woodchips fly from the cut and the tree,gold,flaps out at side.,goes to the tree.,'s hands tumbling up a mountain on a bright breastplate.,topples to the ground.,3\n1539,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7509,\"Now balanced on logs, someone spars with an unarmed someone. The protege\",\"Now balanced on logs, someone spars with an unarmed someone.\",The protege,gold,falls then springs to his feet.,sign at a stairwell and smoke bordering the air and steaming on a lawn.,pushes someone up and grabs the zebra.,and her baby run on stage a help.,0\n1540,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7510,\"The protege falls then springs to his feet. Later, someone throws the ax, someone\",The protege falls then springs to his feet.,\"Later, someone throws the ax, someone\",gold,sails off the back step and steals it on the nearby shelf.,catches it and splits a tree trunk.,takes one after it.,uses it on the table.,1\n1541,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7504,Someone enters with his ax. Someone,Someone enters with his ax.,Someone,gold,kicks the door shut rendering the room pitch black.,catches something as he whacks it aside.,\"opens the cage, and amiably catches it.\",slips top of his window frame.,0\n1542,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7505,Someone kicks the door shut rendering the room pitch black. Someone,Someone kicks the door shut rendering the room pitch black.,Someone,gold,connects with the door.,laughs and falls out of view.,holds the ax while someone crawls toward the door his face beaten and bloody.,takes off her fedora.,2\n1543,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7513,\"At a forge, someone pours silver on the ax. Now in a tavern, they\",\"At a forge, someone pours silver on the ax.\",\"Now in a tavern, they\",gold,enter a reception room and find three upper offices.,haul someone over a rocky ledge.,stand at a bar.,arrive at his house.,2\n1544,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7507,\"Practicing later, someone swings the ax in swirling patterns around his tall, lean frame, gaining speed with proficiency. He\",\"Practicing later, someone swings the ax in swirling patterns around his tall, lean frame, gaining speed with proficiency.\",He,gold,\"types, magically fades.\",adjusts his tie and embraces his bearded daughter.,looks up and turns still in the harsh young man.,finishes with a mighty upward swing.,3\n1545,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7511,\"Later, someone throws the ax, someone catches it and splits a tree trunk. Someone\",\"Later, someone throws the ax, someone catches it and splits a tree trunk.\",Someone,gold,\"follows someone across the kitchen, knocking him into food.\",writes in his journal.,joins the jewish gardeners in his own path by cracking them.,\"slides to the ground again, the boy in prop, one wheel swing.\",1\n1546,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7506,Someone holds the ax while someone crawls toward the door his face beaten and bloody. He,Someone holds the ax while someone crawls toward the door his face beaten and bloody.,He,gold,throws himself back at the flowers and runs across the parlor.,pauses at the threshold.,goes hesitantly as he takes it from someone.,closes his eyes curiously.,1\n1547,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7515,\"Someone slams him down on the bar. Later, he\",Someone slams him down on the bar.,\"Later, he\",gold,lets wrench someone in his office.,hugs a pizza and walks up to the windows.,shows a gallery of images.,presses the bell to the surface.,2\n1548,lsmdc1009_Spider-Man3-76066,17288,A spinning war vortex of blue light becomes a silver blue spider's web which scatters the words the opening credits. More splinted images,A spinning war vortex of blue light becomes a silver blue spider's web which scatters the words the opening credits.,More splinted images,gold,\"are shown of someone, white life climbing in drive an faster float.\",\"look with agents desk victims, dressed together.\",\"appear in their purple skull, orange words come from jars on a rocky, hollow blade hitting the ceiling pins unlaced.\",reveal earlier moments in the story.,3\n1549,anetv_iOnlcEk50CM,13095,\"After, he picks up the skateboard and moves a few feet back and starts skateboarding. Once done, he\",\"After, he picks up the skateboard and moves a few feet back and starts skateboarding.\",\"Once done, he\",gold,stands around and goes back and forth on a mat.,throws the man in tshirt and gets on the skateboard bike.,gets one archery and starts doing walk in the yard.,picks up the skateboard and holds it back down to his side.,3\n1550,anetv_iOnlcEk50CM,13094,\"The male then gets on the skateboard and start balancing himself on it. After, he\",The male then gets on the skateboard and start balancing himself on it.,\"After, he\",gold,mounts the bars onto the street that on the skateboard in front of him.,picks up the skateboard and moves a few feet back and starts skateboarding.,gets off the board and trains the bike in place.,lands on the trampoline and flips on the skis.,1\n1551,anetv_iOnlcEk50CM,13093,A male is standing on side on a road in front of a forest with his foot on a skateboard. The male,A male is standing on side on a road in front of a forest with his foot on a skateboard.,The male,gold,drives on an accordion entering a public spot.,\"skating behind the second track is doing tricks, going down the track.\",skis down the line then smiles and the continue driving down the hill.,then gets on the skateboard and start balancing himself on it.,3\n1552,anetv_lVMMPkvnid8,145,Garafulic starts to explain clinics and the medals they have won breaking perfect games. The bowlers,Garafulic starts to explain clinics and the medals they have won breaking perfect games.,The bowlers,gold,pull up another towel.,\"play a game, serving and doing the viewer to get them around at area.\",knocks on the youtube computer.,are shown practicing once again.,3\n1553,anetv_lVMMPkvnid8,144,Team of Bolivian bowlers get ready to start bowling by practicing a technique taught by Jason Belmont by putting two fingers in the holes and using two hands to spin the ball. The young amateur players,Team of Bolivian bowlers get ready to start bowling by practicing a technique taught by Jason Belmont by putting two fingers in the holes and using two hands to spin the ball.,The young amateur players,gold,fell over the soccer player who has finally shown the wrestlers throw at each other.,are boxing in the same position with one media hog and a yellow rope ride itself over.,begin to bowl using the two handed technique.,grab the beer and hit with and catch each other in the green team playing hockey.,2\n1554,anetv_sVeC5VlDsjk,375,Several pictures are shown of a beach and landscapes as well as people walking on the beach. Several clips,Several pictures are shown of a beach and landscapes as well as people walking on the beach.,Several clips,gold,are then shown of people riding along the water and surfing the waves.,are shown of people riding around on tubes as well as boats glides along the water.,are shown of people jump roping by riding down a river.,are shown of people riding.,0\n1555,anetv_sVeC5VlDsjk,376,Several clips are then shown of people riding along the water and surfing the waves. More shots,Several clips are then shown of people riding along the water and surfing the waves.,More shots,gold,are shown of men playing an instrument while the women watch on the sides.,are shown of people surfing on the water as well as surfing around the water.,are shown of people surfing and fall into the water.,are shown of people surfing in the water.,3\n1556,lsmdc3089_XMEN_FIRST_CLASS-42828,7612,\"Completely submerged, he bares his gritted teeth, and keeps a stubborn hold on the submarine. On the ship, someone\",\"Completely submerged, he bares his gritted teeth, and keeps a stubborn hold on the submarine.\",\"On the ship, someone\",gold,\"trains a fire projector, the factory sun falling off.\",\"runs along the deck, then dives from the edge.\",loads his key into a chain - like road.,\"is wrapped, scope on his makeshift binoculars, as they are talking.\",1\n1557,lsmdc3089_XMEN_FIRST_CLASS-42828,7605,\"It rises high as someone, someone, and the man in black stare. Someone\",\"It rises high as someone, someone, and the man in black stare.\",Someone,gold,\"joins gathered around, demonstrating the correct way to leave the taxicab, someone nods and runs his arms.\",is passed out.,whips the anchor chain around the yacht's corridors.,turns the russian someone and waves back.,2\n1558,lsmdc3089_XMEN_FIRST_CLASS-42828,7610,\"On the ship, sailors gather on the decks. The submarine\",\"On the ship, sailors gather on the decks.\",The submarine,gold,runs along a cliff of main deck.,dangle from the hold.,follows someone into the aircraft.,drags someone beneath the water.,3\n1559,lsmdc3089_XMEN_FIRST_CLASS-42828,7611,\"The submarine drags someone beneath the water. Completely submerged, he\",The submarine drags someone beneath the water.,\"Completely submerged, he\",gold,stands up around his wrist in the front of the river.,stretches up on them and raises its tip to his fingers.,lands at a full gallop.,\"bares his gritted teeth, and keeps a stubborn hold on the submarine.\",3\n1560,lsmdc3089_XMEN_FIRST_CLASS-42828,7613,\"On the ship, someone runs along the deck, then dives from the edge. He\",\"On the ship, someone runs along the deck, then dives from the edge.\",He,gold,skis into the water trying to hide.,holds at someone's outstretched hand.,plunges into the water behind someone and wraps his arms around him.,peers into the water and waves him in a wave.,2\n1561,lsmdc3089_XMEN_FIRST_CLASS-42828,7603,One of the yacht's anchors rises high above its deck. Someone,One of the yacht's anchors rises high above its deck.,Someone,gold,quickly slides over a cable as passengers plummet down adjacent windows.,gazes at a nearby pointing glass.,thrusts a hand forward.,steps down toward a sea of floating rock and shakes the sea.,2\n1562,lsmdc3089_XMEN_FIRST_CLASS-42828,7601,\"The yacht's anchor chains rise all around him. Recovering, someone\",The yacht's anchor chains rise all around him.,\"Recovering, someone\",gold,tearfully glares at the motorcyclist.,runs through the back of the road and collides with all cars.,parks the van in the truck and turns away.,marches back out on the deck and points.,3\n1563,lsmdc3089_XMEN_FIRST_CLASS-42828,7606,\"Someone whips the anchor chain around the yacht's corridors. Inside, someone and someone\",Someone whips the anchor chain around the yacht's corridors.,\"Inside, someone and someone\",gold,flee down a hallway as the chain slices through the walls.,follow someone down a stairwell.,stride through the courtyard.,hurry through the offices.,0\n1564,lsmdc3089_XMEN_FIRST_CLASS-42828,7609,\"Water surges around someone's head. On the ship, sailors\",Water surges around someone's head.,\"On the ship, sailors\",gold,gather on the decks.,sail a boat in smooth water.,hold several vampires as someone runs in their midst of a crowd.,drift down in scattered robes and kayaks on the bay.,0\n1565,lsmdc3089_XMEN_FIRST_CLASS-42828,7599,\"On the ship's deck, someone gawks. The whirlwind\",\"On the ship's deck, someone gawks.\",The whirlwind,gold,bolts out of the huge storm forest.,grabs someone and hugs him.,knocks the boats high in the air.,crashes into the toilet.,2\n1566,lsmdc3089_XMEN_FIRST_CLASS-42828,7617,\"As we drift over a sprawling complex, words appear: Covert cia Research Base.. On a lawn, a sphere\",\"As we drift over a sprawling complex, words appear: Covert cia Research Base..\",\"On a lawn, a sphere\",gold,lands in the blackness.,\"stands on a pedestal, resembling a giant golf ball on a tee.\",pulls into two masked sculptures blaring.,has lots of mulch in the middle of the road.,1\n1567,lsmdc3089_XMEN_FIRST_CLASS-42828,7607,\"Treading water, someone turns. As the underwater vessel pulls away, he\",\"Treading water, someone turns.\",\"As the underwater vessel pulls away, he\",gold,extends his hand and slips under the fountain.,swims to the edge of a diving board.,eyes his open body again.,grits his teeth and stretches his hands after it.,3\n1568,lsmdc3089_XMEN_FIRST_CLASS-42828,7614,\"Two veins throb in someone's forehead as someone drags him toward the surface. In the escaping submarine, someone\",Two veins throb in someone's forehead as someone drags him toward the surface.,\"In the escaping submarine, someone\",gold,sits on the edge of the boat.,squeezes into the bottom of the clock's clock handle.,gets up in flight.,shifts his smug gaze.,3\n1569,lsmdc3089_XMEN_FIRST_CLASS-42828,7602,\"Recovering, someone marches back out on the deck and points. One of the yacht's anchors\",\"Recovering, someone marches back out on the deck and points.\",One of the yacht's anchors,gold,opens down off the dome towards the hotel.,remain from his record.,rises high above its deck.,hangs on safety railing behind the camels.,2\n1570,lsmdc3089_XMEN_FIRST_CLASS-42828,7616,Someone smiles warmly at him. The haunted man,Someone smiles warmly at him.,The haunted man,gold,\"pounds on his head, his face grim and eyed with tears.\",regards him with a furrowed brow.,takes the small butcher knife from his boot.,gives him trashcan nod and heads to the bus window where they resume cleaning.,1\n1571,lsmdc3089_XMEN_FIRST_CLASS-42828,7615,\"In the escaping submarine, someone shifts his smug gaze. Someone\",\"In the escaping submarine, someone shifts his smug gaze.\",Someone,gold,\"picks up more alcohol, then peers through the vault.\",faces his son.,smiles warmly at him.,turns from a window up to see the timer leading to two on the opposite side of the room.,2\n1572,lsmdc3089_XMEN_FIRST_CLASS-42828,7608,\"As the underwater vessel pulls away, he grits his teeth and stretches his hands after it. Water\",\"As the underwater vessel pulls away, he grits his teeth and stretches his hands after it.\",Water,gold,fly him around several times.,surges around someone's head.,looks up at the party.,show his face with suntan lotion.,1\n1573,anetv_OoyoTLkSOuY,14840,A woman is wearing a towel and standing next to a bath tub. She,A woman is wearing a towel and standing next to a bath tub.,She,gold,then cuts clothes and spray water onto the back of the tub.,rinses off the towel and places the bottom down.,puts shaving cream on her leg and shaves her leg.,\"is carrying a large mop of bucket, the woman puts her clothes on.\",2\n1574,anetv_Ib3XqmBqy10,5570,Various shots of people are shown followed by several shots of kids jumping rope. A man then speakers to various kids on a court and,Various shots of people are shown followed by several shots of kids jumping rope.,A man then speakers to various kids on a court and,gold,then does the tricks on the beam and ends by lifting weights on the ground.,ends by jumping off celebrating.,shows a man get into.,shows more shots of the kids jumping rope together.,3\n1575,anetv_Ib3XqmBqy10,5571,A man then speakers to various kids on a court and shows more shots of the kids jumping rope together. The man,A man then speakers to various kids on a court and shows more shots of the kids jumping rope together.,The man,gold,is even more and gets ready to continue doing a game.,continues talking while applaud the well as pausing and talk to them.,runs in and finishes the video on how he is on stage.,then jumps rope while more kids perform tricks with their jump ropes and ends with the man speaking to one more jumper.,3\n1576,anetv_Rvsc5eymWIg,17389,Man is holding a impact drill pulling out a car wheel. man is holding the wheel in a table and taking out the rubber from the rim and he,Man is holding a impact drill pulling out a car wheel.,man is holding the wheel in a table and taking out the rubber from the rim and he,gold,is using to the water mark the board.,changes it for another.,holds the pot to his mouth.,is walking inside the hole.,1\n1577,anetv_Rvsc5eymWIg,17390,Man is holding the wheel in a table and taking out the rubber from the rim and he changes it for another. car,Man is holding the wheel in a table and taking out the rubber from the rim and he changes it for another.,car,gold,is in street next to a mountain.,is knocking out the rope noose the animal is in the tire.,trashed - cars are using the wheel's board.,is on the bottom of a ski.,0\n1578,anetv_yBjsQN4fzVY,8948,The woman in the bathroom is brushing her teeth and is attacked by a man with a knife. There,The woman in the bathroom is brushing her teeth and is attacked by a man with a knife.,There,gold,is stunning the black cloth with purple spices.,\", woman is talking to the camera next to a stand by a fence.\",is blood splattered all over the bathroom.,opens a small canvas towel and lays it on her crotch.,2\n1579,anetv_yBjsQN4fzVY,8945,The man has a script in his hand that he's reading. A man in folded pants,The man has a script in his hand that he's reading.,A man in folded pants,gold,is walking on the beach.,is sitting on a table.,is laying on a cat.,walks down a sidewalk and peels up a beaded straw.,0\n1580,anetv_yBjsQN4fzVY,8950,The injured woman gets up and looks in the mirror only find out that she has the face of the man from the beach. The same man,The injured woman gets up and looks in the mirror only find out that she has the face of the man from the beach.,The same man,gold,crawls across the screen.,\"is now back on the beach, walking along the shore.\",is been talking to the camera about a pair of scissors cut out of a set of scissors.,holds out the safe.,1\n1581,anetv_yBjsQN4fzVY,8944,They are talking about brushing teeth in underwear and how it is banned by Metacafe. The man,They are talking about brushing teeth in underwear and how it is banned by Metacafe.,The man,gold,has a script in his hand that he's reading.,continues shaving the dog's hair and brush.,is dressed in black to a dressed room and turns to the girl.,uses the toothbrush to brush teeth and clean to speak.,0\n1582,anetv_yBjsQN4fzVY,8946,A man in folded pants is walking on the beach. He,A man in folded pants is walking on the beach.,He,gold,picks up a toothbrush from the sand and begins brushing his teeth.,is snowboarding toward a pile of food.,is riding back and forth in front of them.,are standing next the camera.,0\n1583,anetv_yBjsQN4fzVY,8947,He picks up a toothbrush from the sand and begins brushing his teeth. The woman in the bathroom,He picks up a toothbrush from the sand and begins brushing his teeth.,The woman in the bathroom,gold,is then paddling with more hair and a curlers.,has small red shoes and skirt cut with a wide camera.,go to play her toothbrush with toothpaste.,is brushing her teeth and is attacked by a man with a knife.,3\n1584,lsmdc3032_HOW_DO_YOU_KNOW-2473,14900,She self - consciously stands up. She,She self - consciously stands up.,She,gold,lifts down the kettle.,tugs the hem of her shirt and rubs her nose.,goes to kiss her.,notices as if he is about to say something.,1\n1585,lsmdc3032_HOW_DO_YOU_KNOW-2473,14901,She tugs the hem of her shirt and rubs her nose. Someone,She tugs the hem of her shirt and rubs her nose.,Someone,gold,brings blood from her wounds.,writes into the gold ring.,chucks the stole toward the floor and gazes upward.,watches her pace across the room and take a seat on a cushioned chair.,3\n1586,anetv_ZW46Rcuhqac,3749,A man takes a pitcher of beer and begins talking to the camera. The man,A man takes a pitcher of beer and begins talking to the camera.,The man,gold,adjusts the bottles and begins talking to the camera.,is then shown playing tennis on the ice.,proceeds to drink the entire pitcher of beer.,talks to the camera person while eating ice cream.,2\n1587,anetv_ZW46Rcuhqac,3748,Beer and other alcohol is shown on a counter in a kitchen. A man,Beer and other alcohol is shown on a counter in a kitchen.,A man,gold,demonstrates how to hit the ball against the wall.,adds juice and lemon juice.,eats ice cream while other people bowl and laugh and frankly shaken.,takes a pitcher of beer and begins talking to the camera.,3\n1588,anetv_q0buJ1CKj-Y,3392,A person is seen sitting in front of a desk holding a guitar in his hands. The man then,A person is seen sitting in front of a desk holding a guitar in his hands.,The man then,gold,begins playing a violin and back to himself as he finishes.,grabs the camera up to continue playing and leads into him hitting the buttons.,begins playing drum sticks back in his hands while pausing.,begins playing the instrument moving his hands up and down.,3\n1589,anetv_q0buJ1CKj-Y,3393,The man then begins playing the instrument moving his hands up and down. The person,The man then begins playing the instrument moving his hands up and down.,The person,gold,\"continues moving his body around, continuing to play the song.\",continues playing on the guitar and looking off into the distance.,continues moving around kicking the ball up and down while a speak to his camera again.,continues throwing the frisbee all around while looking to the camera while still sitting by the camera.,1\n1590,anetv_zGT6EplIOHY,16971,A player kicks a ball over a guy's head. Players,A player kicks a ball over a guy's head.,Players,gold,extend it on his left shoulder.,tie a fist onto a pole.,run up to run.,kick a ball that knocks down a yellow cone which they pick up.,3\n1591,anetv_zGT6EplIOHY,16970,People kick a ball indoor between yellow cones on fake grass. A player,People kick a ball indoor between yellow cones on fake grass.,A player,gold,swings his tennis racket back and forth.,kicks a ball over a guy's head.,send a puck down the lane and its net.,throws the big stick into the crowd.,1\n1592,anetv_tgPjcWP7Vig,9107,A woman speaks to the camera while more shots are shown of people riding. A woman,A woman speaks to the camera while more shots are shown of people riding.,A woman,gold,speaks to the camera and pictures of the jump in the car.,speaks to the camera as well as various settings and performing several tricks and tricks.,leads the class as well as speaks to the camera and others riding around.,rides by on a set of exercise bikes and driving all along the road.,2\n1593,anetv_tgPjcWP7Vig,9106,A large group of people are seen sitting on bicycles exercising with one another. A woman,A large group of people are seen sitting on bicycles exercising with one another.,A woman,gold,cuts an exercise against a mat and moves it in a machine.,is seen hosting a news segment that leads into several people driving around.,speaks to the camera while more shots are shown of people riding.,adjusts the camera as she continues down.,2\n1594,anetv_k67UWfSt-iE,9437,A small group of people are seen playing a game of volleyball while people watch along the sidelines. The players,A small group of people are seen playing a game of volleyball while people watch along the sidelines.,The players,gold,continue to play with one another before hitting off one another.,continue hitting the ball around and around in a throw with one another.,continue to play with the other and stand up while still speaking to the camera.,hit the ball several times over the net as well as chasing after the ball.,3\n1595,anetv_k67UWfSt-iE,9438,The players hit the ball several times over the net as well as chasing after the ball. The,The players hit the ball several times over the net as well as chasing after the ball.,The,gold,opposing players are standing on the sidelines and the right goal is scored.,grabs and talks to other team mates.,girls are shown scoring a goal but also continue to push the puck to play the goal.,continue to play the game while others cheer and high five one another after.,3\n1596,lsmdc1015_27_Dresses-79826,15695,\"Someone pouts and flounces back to her fitting room, tripping over her hem as she goes. As lights begin to decorate the evening cityscape, a taxi\",\"Someone pouts and flounces back to her fitting room, tripping over her hem as she goes.\",\"As lights begin to decorate the evening cityscape, a taxi\",gold,crosses a narrow foyer with a sleek bird - shaped bird perched on the center of it's brightly embroidered building.,drops someone off at the restaurant where guests are gathering for the engagement party.,crosses a sidewalk on freight cars.,sets the principal's order.,1\n1597,lsmdc1015_27_Dresses-79826,15696,She is accosted by a smartly dressed older lady. The woman,She is accosted by a smartly dressed older lady.,The woman,gold,spots the young man lying first and takes his human hands.,is standing in someone's bathroom.,\"is puzzled, not sure what she just heard.\",\"swans over, into someone 'dressing room.\",2\n1598,anetv_6QbIJ2pnXXo,3364,\"A round piece of styrofoam is on a cake platter, strips of the dough are placed on the foam. The person\",\"A round piece of styrofoam is on a cake platter, strips of the dough are placed on the foam.\",The person,gold,displays her scoop up the third nails and uses the chopsticks.,works with purple dough and cuts it into strips.,plays the flute as they continue to play.,put the sheet that filled clear dough and put it on the baking sheet.,1\n1599,anetv_6QbIJ2pnXXo,325,She uses a stick to measure the iceing. She then,She uses a stick to measure the iceing.,She then,gold,does back flips in a hoop.,uses it for frosting a cake.,does it again for how to jump.,uses the snare when she finishes on.,1\n1600,anetv_6QbIJ2pnXXo,3366,The purple strips are overlaid onto the styrofoam. Francesca Sugar Art,The purple strips are overlaid onto the styrofoam.,Francesca Sugar Art,gold,are situated between the table and a canopy of a packet's covered paper to notice their daily professional reactor.,drug an automatic to the disk.,is shown on screen with video links.,is on the cellophane.,2\n1601,anetv_6QbIJ2pnXXo,3365,The person works with purple dough and cuts it into strips. The purple strips,The person works with purple dough and cuts it into strips.,The purple strips,gold,removes the floral sheet.,are overlaid onto the styrofoam.,are given to strip with a fan.,peels the sandwich with two fingers.,1\n1602,anetv_6QbIJ2pnXXo,3363,\"A persons hands are working with pink dough. A round piece of styrofoam is on a cake platter, strips of the dough\",A persons hands are working with pink dough.,\"A round piece of styrofoam is on a cake platter, strips of the dough\",gold,is placed inside a square.,are placed on the foam.,are removed from the oven.,\"is removed, showing off the man package.\",1\n1603,lsmdc0004_Charade-47603,3436,\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw rips through both, a wound extending from the center of someone's back to his shoulder. Both men\",\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw rips through both, a wound extending from the center of someone's back to his shoulder.\",Both men,gold,\"look around for the gun, spot it simultaneously and leap for it, both landing short of the mark.\",race the open door to vessel to someone who staggers inside the plane and slams the door and snags the water with it.,wrestle when he is finished.,break into the room.,0\n1604,lsmdc0004_Charade-47603,3441,\"As it slides across the slate, making a hideous scratching sound and causing sparks to fly. As he\",\"As it slides across the slate, making a hideous scratching sound and causing sparks to fly.\",As he,gold,\"does so, someone is laughing awake.\",gets in again and pulls away.,slides over the edge and disappears.,\"leaves the parking lot, the men fly out.\",2\n1605,lsmdc0004_Charade-47603,3435,\"Then, to his amazement, someone is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof. Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw\",\"Then, to his amazement, someone is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof.\",\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw\",gold,pushes him out so that he much preparation of his strength.,ripple and a metal grate opens for him.,\"appear at someone's sharp, tipped blade.\",\"rips through both, a wound extending from the center of someone's back to his shoulder.\",3\n1606,lsmdc0004_Charade-47603,3438,\"The battle is going to someone whose weight and strength are beginning to tire someone, who is now on his back, trying to stop someone from crawling over him. He\",\"The battle is going to someone whose weight and strength are beginning to tire someone, who is now on his back, trying to stop someone from crawling over him.\",He,gold,\"is like a wooden tank multiple times, and the hot man is getting someone's head out of the back.\",has the large man by both lapels of the raincoat in a last - ditch effort to hold him.,\"reaches into one line, draws this gun upward, picks up his rifle, and flings the weapon inside a black bag.\",\", someone runs back inside the transport car, flips through the gray air onto the pyre, and stops beside the trio.\",1\n1607,lsmdc0004_Charade-47603,3437,\"Both men look around for the gun, spot it simultaneously and leap for it, both landing short of the mark. Now they\",\"Both men look around for the gun, spot it simultaneously and leap for it, both landing short of the mark.\",Now they,gold,\"reach straight for her solid, locked each, which plots out of the same door just before it crashes to us.\",\"grapple with one another, each trying to break free and reach for the gun.\",\"see someone as the pull someone first down from the bloodied cab, then faces him.\",maneuver someone into the water.,1\n1608,lsmdc0004_Charade-47603,3439,\"He has the large man by both lapels of the raincoat in a last - ditch effort to hold him. But someone, his face horribly distorted from the strain,\",He has the large man by both lapels of the raincoat in a last - ditch effort to hold him.,\"But someone, his face horribly distorted from the strain,\",gold,continues to inch forward toward the gun.,turns his lamp back before peering back into his truck.,puts his head on a battered tire driving away as someone falls.,is not seeing the turn and scratched up the front of the car.,0\n1609,lsmdc0004_Charade-47603,3434,\"Following through, someone punches the large man full in the jaw, but instead of falling, someone wraps his arm around someone, holding on tightly until his head clears. Then, to his amazement, someone\",\"Following through, someone punches the large man full in the jaw, but instead of falling, someone wraps his arm around someone, holding on tightly until his head clears.\",\"Then, to his amazement, someone\",gold,\"walks down the street carrying only his boots, lies half with half on his back.\",\"is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof.\",backhands herself back onto the boat.,catches himself on the creature as he lands on the floor.,1\n1610,lsmdc0004_Charade-47603,3440,\"Someone beats wildly at the the slate with his claw, trying to gouge a grip. As it\",\"Someone beats wildly at the the slate with his claw, trying to gouge a grip.\",As it,gold,leaps into the ankle - deep water.,\"slides across the slate, making a hideous scratching sound and causing sparks to fly.\",crashes to the roof!,\"moves past him, a chainsaw seems to be laid out once more.\",1\n1611,lsmdc0005_Chinatown-48516,10199,\"Someone stares back at him. The blow has forced tears from her eyes, but she\",Someone stares back at him.,\"The blow has forced tears from her eyes, but she\",gold,\"makes no move, not even to defend herself.\",enraged stares as though there.,is not able to catch her breath.,is for sale.,0\n1612,lsmdc0005_Chinatown-48516,10198,He hits her full in the face. Someone,He hits her full in the face.,Someone,gold,stares back at him.,stares down at the toilet.,stumbles with their fists.,\"produces a long, bony finger.\",0\n1613,lsmdc0005_Chinatown-48516,10200,\"He belts her finally, knocking her into a cheap Chinese vase which shatters and she collapses on the sofa, sobbing. Someone\",\"He belts her finally, knocking her into a cheap Chinese vase which shatters and she collapses on the sofa, sobbing.\",Someone,gold,swallows then searches notes on someone's handbag.,comes running down the stairs.,remains at the unicorn check.,moves around and falls to the floor someone walks toward him.,1\n1614,lsmdc0005_Chinatown-48516,10201,Someone comes running down the stairs. Someone,Someone comes running down the stairs.,Someone,gold,turns after staring at someone for a moment then goes back upstairs.,puts a dish in his someone fridge.,\"lifts his head, his eyes fixed.\",wrestles buttoning her pants.,0\n1615,anetv_mzVJHw9Jrb4,3529,A shirtless man roller blades through a busy path. A man in a black tank top,A shirtless man roller blades through a busy path.,A man in a black tank top,gold,does several roller blade tricks.,is standing on a balance beam with a long pole in the background.,is leading a section of stairs.,\"jumps on the slackline, jumps onto a wakeboard as his truck speeds across ground.\",0\n1616,anetv_mzVJHw9Jrb4,3530,A man in a blue shirt switches of doing tricks. They,A man in a blue shirt switches of doing tricks.,They,gold,\"approach a bartender, then start dance.\",flip off the water onto the surfboard in the foreground.,continue to trade off showing their skills.,\", his talks is shown forming a row of kayakers as he passes a person on the right.\",2\n1617,anetv_mzVJHw9Jrb4,7483,People are interacting outside later in the day. A guy,People are interacting outside later in the day.,A guy,gold,skates around colorful cups place on the pavement as cones.,is laying snow on front of a car with skinny latex gloves.,shown saved icons into some of the sides.,is singing outside hollywood.,0\n1618,anetv_mzVJHw9Jrb4,7484,\"A guy in a black, sleeveless undershirt squats and skates. The guy in a black, sleeveless undershirt\",\"A guy in a black, sleeveless undershirt squats and skates.\",\"The guy in a black, sleeveless undershirt\",gold,\"climbs the staircase landing, landing on high mat.\",stand on his tip toe with skates on.,sashays up next to him from behind.,has a plastic stick attached.,1\n1619,lsmdc3056_PUBLIC_ENEMIES-3286,11262,\"Someone removes the receiver from her ear and clutches it against the base of her neck. Outside her apartment, two men\",Someone removes the receiver from her ear and clutches it against the base of her neck.,\"Outside her apartment, two men\",gold,stand asleep on a wall.,emerge into a cabin and securely hurtles through the tunnel.,watch from inside a car concealed underneath a bridge.,walk to a brick bridge.,2\n1620,lsmdc3056_PUBLIC_ENEMIES-3286,11268,Someone emerges from the house behind someone. Someone,Someone emerges from the house behind someone.,Someone,gold,hides by the window with the camera to reveal its face.,watches as the bath starts to collapse.,sits across from someone.,narrows his eyes and tilts his head.,3\n1621,lsmdc3056_PUBLIC_ENEMIES-3286,11264,\"A tan car pulls to a stop, and someone and someone climb out. As someone\",\"A tan car pulls to a stop, and someone and someone climb out.\",As someone,gold,tries to stop her.,\"strides out, she wrings her hands and hauls herself up.\",heads around the corner down an icy walkway.,\"leads the girls away, the alien follows someone anxiously.\",2\n1622,lsmdc3056_PUBLIC_ENEMIES-3286,11258,\"At the telephone exchange, someone listens. Someone\",\"At the telephone exchange, someone listens.\",Someone,gold,\"leads him down the aisle, lifting up his arm.\",turns to the giggling someone.,clutches the phone despondently.,is in the office room.,2\n1623,lsmdc3056_PUBLIC_ENEMIES-3286,11263,\"Outside her apartment, two men watch from inside a car concealed underneath a bridge. Later, someone\",\"Outside her apartment, two men watch from inside a car concealed underneath a bridge.\",\"Later, someone\",gold,sits in a car outside the apartment.,lies on her side.,awakes against small high sleeping boards with his back to his son.,holds out a door for her.,0\n1624,lsmdc3056_PUBLIC_ENEMIES-3286,11259,Someone clutches the phone despondently. She,Someone clutches the phone despondently.,She,gold,fidgets and gives a conviction loud.,\"moves forward, muttering as someone's life out of the window.\",\"looks at his workbench, then takes a seat at the kid.\",\"lowers her sad, resigned eyes.\",3\n1625,lsmdc3056_PUBLIC_ENEMIES-3286,11260,\"She lowers her sad, resigned eyes. Someone\",\"She lowers her sad, resigned eyes.\",Someone,gold,stares at the wound under her shoulder.,nods to her laotong.,\"stands inside a phone booth with a faint, tender smile.\",sits on the edge and unfolds the pamphlet.,2\n1626,lsmdc3056_PUBLIC_ENEMIES-3286,11269,Someone narrows his eyes and tilts his head. He,Someone narrows his eyes and tilts his head.,He,gold,clenches his gun in fists.,pulls out his machine gun.,notices a brown - haired man sitting in front of a laptop screen.,spits the gulps of air.,1\n1627,lsmdc3056_PUBLIC_ENEMIES-3286,11267,Someone perches on the side of the car. Someone,Someone perches on the side of the car.,Someone,gold,emerges from the house behind someone.,comes in in the walkway.,\"lashes out toward the railing, following the frame, zooming through a small tunnel similar to another perspective.\",shoots him in the window.,0\n1628,lsmdc3056_PUBLIC_ENEMIES-3286,11265,As someone heads around the corner down an icy walkway. Someone,As someone heads around the corner down an icy walkway.,Someone,gold,is on a patio and tables.,steps out of the safe house.,hurries down a craggy shaft.,runs to the center of the platform and starts outside.,1\n1629,lsmdc3056_PUBLIC_ENEMIES-3286,11261,\"Someone stands inside a phone booth with a faint, tender smile. Someone\",\"Someone stands inside a phone booth with a faint, tender smile.\",Someone,gold,\"claps, allowing someone to fold it back in his pocket.\",looks at her parents and looks away.,removes the receiver from her ear and clutches it against the base of her neck.,\"walk down the corridor, only the small sound of the man coming out from the door.\",2\n1630,anetv_iF9jetQ7OTE,1778,A boy in a hat is talking. He,A boy in a hat is talking.,He,gold,opens a bottle of mouthwash to the camera.,smokes something and blows the smoke into the air.,looks at a camera in people.,is shown shaking the stick.,1\n1631,anetv_iF9jetQ7OTE,1780,He continues talking to the camera. He,He continues talking to the camera.,He,gold,picks up a line on the car and continues mowing.,smokes from the pipe again and blows the smoke out a few more times.,points at the cellphone in it.,use the stilts on recumbent bikes.,1\n1632,anetv_iF9jetQ7OTE,1779,He smokes something and blows the smoke into the air. He,He smokes something and blows the smoke into the air.,He,gold,boxes and shoots some tea in a yellow bucket.,gets off the lights and walks away while they talk.,continues talking to the camera.,adds to a little on another cigarette.,2\n1633,lsmdc3088_WHATS_YOUR_NUMBER-42521,8520,Someone stares back at her fondly. She,Someone stares back at her fondly.,She,gold,glances over his shoulder.,covers his mouth with her hand and shakes her head.,glances over his shoulder and meets her gaze.,looks down at her love and adjusts someone's shoulders.,1\n1634,lsmdc3088_WHATS_YOUR_NUMBER-42521,8524,Our view pulls back from the couple to reveal more of their romantic surroundings. The four - pillared fountain,Our view pulls back from the couple to reveal more of their romantic surroundings.,The four - pillared fountain,gold,sits side - by - side.,\"cascades into a circular pool, under a plethora of globe lights dangling from the surrounding tree branches.\",sits at the edge of the garden and peer out of the open window of the white house.,stands beside the urinal and read an envelope.,1\n1635,lsmdc3088_WHATS_YOUR_NUMBER-42521,8523,\"Behind them, several boys run out to watch, while the wedding guests raise their glasses to the bride and groom. Our view\",\"Behind them, several boys run out to watch, while the wedding guests raise their glasses to the bride and groom.\",Our view,gold,pulls back from the couple to reveal more of their romantic surroundings.,\"drifts toward the school, as someone and son jump ropes with him.\",follows over the lower part of the store's door into the arabian city and a corral root.,\"uncorks at the concentration studio, gazing approvingly as he gazes up at the older campaign.\",0\n1636,lsmdc3088_WHATS_YOUR_NUMBER-42521,8522,\"Someone leans in and gives her a kiss. Behind them, several boys\",Someone leans in and gives her a kiss.,\"Behind them, several boys\",gold,walk into the bank.,hurry from an property gravely.,\"run out to watch, while the wedding guests raise their glasses to the bride and groom.\",walk out of the bank of a building and are driven outside.,2\n1637,lsmdc3088_WHATS_YOUR_NUMBER-42521,8521,She covers his mouth with her hand and shakes her head. Someone,She covers his mouth with her hand and shakes her head.,Someone,gold,leans in and gives her a kiss.,\"hangs her head ecstatically, then pours liquor into a cup of tea.\",gives him a peck on the cheek.,\"flies away, leaving the track hanging out on his phone.\",0\n1638,lsmdc3088_WHATS_YOUR_NUMBER-42521,8519,\"As she gazes into his eyes, her glossy lips curl into a tight smile. Someone\",\"As she gazes into his eyes, her glossy lips curl into a tight smile.\",Someone,gold,stares back at her fondly.,waves on his hand like a sail.,notices someone still staring ahead.,glares at him then follows.,0\n1639,anetv_980U7SiE0Nk,1932,Two girls are seen standing on a gymnasium floor in front of a large crowd. The girls then,Two girls are seen standing on a gymnasium floor in front of a large crowd.,The girls then,gold,begin dancing around the area while twirling batons in their hands.,perform a routine and leads into them performing an elaborate routine.,begin dancing with one another while another man walks into frame.,throw the balls down and throw the ball around one another.,0\n1640,anetv_980U7SiE0Nk,1933,The girls then begin dancing around the area while twirling batons in their hands. They,The girls then begin dancing around the area while twirling batons in their hands.,They,gold,end their routine and pose by looking off in the distance.,watch and move their bow as the style finishes.,continue to spin around one another and end by holding a pose.,are seen performing her baton routine on the stage while dancing to the audience and dancing around her as she walks.,2\n1641,anetv_5qh_gx81Bd8,10594,A man stands in a dance studio and shows how he sets up for different dance postures. The man in white tshirt,A man stands in a dance studio and shows how he sets up for different dance postures.,The man in white tshirt,gold,steps out of a vacuum and works his way up to the rod and spins.,does a spins while break dancing.,throws the ball back and forth and it does really cool.,cuts the man in a yellow striped suit.,1\n1642,lsmdc3032_HOW_DO_YOU_KNOW-2752,5821,\"The bus arrives, eclipsing them from view. The bus\",\"The bus arrives, eclipsing them from view.\",The bus,gold,rushes in and sets off near the river.,\"pulls away, leaving the bench inside the quaint shelter empty.\",is overturned with long rows of seats.,crosses to a stop in the middle of a river.,1\n1643,lsmdc3032_HOW_DO_YOU_KNOW-2752,5817,\"Reaching over, she places her hand on top of his hand. Someone\",\"Reaching over, she places her hand on top of his hand.\",Someone,gold,\"appears, then places her hands around her naked body.\",hooks her leg shakily around someone's neck.,closes his fingers around hers.,slides the paper draped over it and cranes her neck to the seated woman.,2\n1644,lsmdc3032_HOW_DO_YOU_KNOW-2752,5802,Someone watches from the balcony. His lips,Someone watches from the balcony.,His lips,gold,spreading into a grin.,stopped nervously as someone watches the cat.,parting with an amused stare.,spread open onto the boater.,0\n1645,lsmdc3032_HOW_DO_YOU_KNOW-2752,5793,\"On a balcony above, someone talks on a phone. He\",\"On a balcony above, someone talks on a phone.\",He,gold,walks through a busy window with his reading stare.,shows a piano cigarette between the weightlifting legs.,hangs up then pockets his cell.,takes turns and sip as the boxers approach them.,2\n1646,lsmdc3032_HOW_DO_YOU_KNOW-2752,5806,\"As she starts for the bus stop, someone grabs her by the shoulders and presses his lips to hers. Her brow\",\"As she starts for the bus stop, someone grabs her by the shoulders and presses his lips to hers.\",Her brow,gold,\"furrows, then faces a sinking lieutenant.\",furrows as he stares at the camera smiling.,lifts as he kisses her.,knits tensely and her eyes widen as she crosses her legs body as she stares tearfully at their crotch.,2\n1647,lsmdc3032_HOW_DO_YOU_KNOW-2752,5811,She gives him an amused look. She,She gives him an amused look.,She,gold,\"holds his gaze for a moment, then walks to the bus stop.\",closes her eyes and avoids a hug.,\"tries to walk over to the bar, a bell in his hand.\",speeds into an open shower with a baby angel shattering on the frame.,0\n1648,lsmdc3032_HOW_DO_YOU_KNOW-2752,5792,\"Someone continues to trudge back and forth by the bus stop. On a balcony above, someone\",Someone continues to trudge back and forth by the bus stop.,\"On a balcony above, someone\",gold,\"enters, takes a newspaper from a set of beer magazines and takes a few quarters off a pitchfork.\",watches from the activity on a skyscraper.,talks on a phone.,smiling at him with passion.,2\n1649,lsmdc3032_HOW_DO_YOU_KNOW-2752,5801,\"Shaking his head, someone shrugs his hands and smiles. Someone\",\"Shaking his head, someone shrugs his hands and smiles.\",Someone,gold,eats bitterly and picks up a large carton of candy.,quirks a smile and replies in kind.,returns his gaze to the judges.,sees a group of stars flashing across a statue.,1\n1650,lsmdc3032_HOW_DO_YOU_KNOW-2752,5818,\"Someone closes his fingers around hers. With a tender expression, someone\",Someone closes his fingers around hers.,\"With a tender expression, someone\",gold,watches as she shakes her head.,shuffles away over his desk.,leans away from her and presses her lips to his.,leans forward and kisses him.,0\n1651,lsmdc3032_HOW_DO_YOU_KNOW-2752,5796,\"The lofty view shows someone fold his arms, bow his head, and stamp his feet. With a concerned look, he\",\"The lofty view shows someone fold his arms, bow his head, and stamp his feet.\",\"With a concerned look, he\",gold,thrusts his hand on the balcony railing.,opens the room thoughtfully then looks at the young man transitioning to the tattoo company.,\"meets the couple again, then moves closer.\",drapes the necklace around someone's waist.,0\n1652,lsmdc3032_HOW_DO_YOU_KNOW-2752,5815,As she returns her gaze to his. She,As she returns her gaze to his.,She,gold,\"eyes him for a moment, then turns away.\",has a beaming blue smile and they look awkward.,puts her thumb - gloss on his lips and grins.,looks up at security.,0\n1653,lsmdc3032_HOW_DO_YOU_KNOW-2752,5805,\"By the bus stop someone gazes at someone. As she starts for the bus stop, someone\",By the bus stop someone gazes at someone.,\"As she starts for the bus stop, someone\",gold,crashes into a wave - filled water.,shakes his head appreciatively.,runs behind her back and sits her down.,grabs her by the shoulders and presses his lips to hers.,3\n1654,lsmdc3032_HOW_DO_YOU_KNOW-2752,5808,\"Then her shoulders relax and she wraps her arms around him, pulling him close. With her eyes closed, someone\",\"Then her shoulders relax and she wraps her arms around him, pulling him close.\",\"With her eyes closed, someone\",gold,rests her face against his shoulder.,stares into her eyes.,lowers his eyes to hers.,lowers her wounded gaze.,0\n1655,lsmdc3032_HOW_DO_YOU_KNOW-2752,5797,\"Down below, someone exits the building. She\",\"Down below, someone exits the building.\",She,gold,stops just outside the door as she sees someone.,pulls out from under the cotton sheet.,\"jumps towards the balustrade, gazing blindly.\",\"glances at his watch and smiles, then turns as he taps across the shoulder.\",0\n1656,lsmdc3032_HOW_DO_YOU_KNOW-2752,5799,He gives her a relieved grin. Someone,He gives her a relieved grin.,Someone,gold,gives him a club and heads to the bride's shoulder.,takes a few steps toward him then pauses.,nods back and leaves.,lifts her brow to someone who smiles and rests her cheek against his shoulder.,1\n1657,lsmdc3032_HOW_DO_YOU_KNOW-2752,5790,\"He nods, his eyes saddened. Someone\",\"He nods, his eyes saddened.\",Someone,gold,puts the glass in the slot.,finds a bite of a pie.,rushes over and hugs him.,gently slams someone against the wall.,2\n1658,lsmdc3032_HOW_DO_YOU_KNOW-2752,5789,She turns to the door. He,She turns to the door.,He,gold,takes her into the backyard.,takes it from her.,\"nods, his eyes saddened.\",stops in front of her desk.,2\n1659,lsmdc3032_HOW_DO_YOU_KNOW-2752,5810,\"She rolls them, then slides out of someone's embrace. She\",\"She rolls them, then slides out of someone's embrace.\",She,gold,knocks him to the side.,wraps her arm around his waist.,gives him an amused look.,reaches over and grabs someone's arm.,2\n1660,lsmdc3032_HOW_DO_YOU_KNOW-2752,5804,His mouth suddenly drops into a knowing. He,His mouth suddenly drops into a knowing.,He,gold,shakes it and put his face up to touch it.,heads back into his apartment.,seizes it and makes applause.,nods and closes the fan.,1\n1661,lsmdc3032_HOW_DO_YOU_KNOW-2752,5816,\"She eyes him for a moment, then turns away. Reaching over, she\",\"She eyes him for a moment, then turns away.\",\"Reaching over, she\",gold,places her hand on top of his hand.,finds him in her swivel chair.,\"holds her head under her chin, shielding her mouth with her thumb.\",pushes him along.,0\n1662,lsmdc3032_HOW_DO_YOU_KNOW-2752,5798,She stops just outside the door as she sees someone. He,She stops just outside the door as she sees someone.,He,gold,gives her a relieved grin.,paces behind her as someone enters.,taps her on the door.,pauses for a moment.,0\n1663,lsmdc3032_HOW_DO_YOU_KNOW-2752,5812,\"She holds his gaze for a moment, Then walks to the bus stop. Someone\",\"She holds his gaze for a moment, Then walks to the bus stop.\",Someone,gold,\"looks at her, broken by his attitude.\",is leaning against him.,\"smiles, then follows.\",leans in and someone kisses it.,2\n1664,lsmdc3032_HOW_DO_YOU_KNOW-2752,5820,As they sit side by side holding hands. He,As they sit side by side holding hands.,He,gold,watches they eat some cataleya vials from descent.,\"runs off, his arms fuzzy carrying the body of a man.\",turns to someone and gives her a nod.,starts to get out of the way.,2\n1665,lsmdc3032_HOW_DO_YOU_KNOW-2752,5819,\"With a tender expression, someone watches as she shakes her head. She\",\"With a tender expression, someone watches as she shakes her head.\",She,gold,sets the ball down and sits down with her back against the fireplace.,shows the soldiers's indian body an express rifle.,leans her head into one of the windows.,meets his gaze with a smile.,3\n1666,lsmdc3032_HOW_DO_YOU_KNOW-2752,5809,\"With her eyes closed, someone rests her face against his shoulder. Someone\",\"With her eyes closed, someone rests her face against his shoulder.\",Someone,gold,leans his head against hers.,closes her eyes and heaves a sigh.,lifts her to his feet and glides across the room's edge.,smiles tenderly as she stares into his eyes.,0\n1667,lsmdc3032_HOW_DO_YOU_KNOW-2752,5807,Her brow lifts as he kisses her. Then her shoulders relax and she,Her brow lifts as he kisses her.,Then her shoulders relax and she,gold,watches someone steadily as she struggles to the door.,peers patiently at the folder.,\"wraps her arms around him, pulling him close.\",hands him a handgun.,2\n1668,lsmdc3032_HOW_DO_YOU_KNOW-2752,5795,Looking down he sees his son on the sidewalk. The lofty view,Looking down he sees his son on the sidewalk.,The lofty view,gold,drags down the stone jetty.,rises once again as he gets to his feet.,\"shows someone fold his arms, bow his head, and stamp his feet.\",shows trees low inside pieces of wood surrounded by small dark buildings on the street.,2\n1669,lsmdc3032_HOW_DO_YOU_KNOW-2752,5814,\"Someone blinks, then looks away, her brow furrowing. As she\",\"Someone blinks, then looks away, her brow furrowing.\",As she,gold,returns her gaze to his.,leaves someone he steps along.,\"steps away, a frown of light rises into her face as someone takes the parcel from someone.\",\"watches, trade long look at his lips.\",0\n1670,lsmdc3032_HOW_DO_YOU_KNOW-2752,5794,He hangs up then pockets his cell. Looking down he,He hangs up then pockets his cell.,Looking down he,gold,looks across the hall.,\"watches, revealing an shifty look.\",sees his son on the sidewalk.,finds a bite on screen.,2\n1671,lsmdc3032_HOW_DO_YOU_KNOW-2752,5800,\"Someone takes a few steps toward him then pauses. Shaking his head, someone\",Someone takes a few steps toward him then pauses.,\"Shaking his head, someone\",gold,extends his scalp to someone.,places the ottoman to one side as he stares at the empty one.,averts his gaze and wipes his face.,shrugs his hands and smiles.,3\n1672,lsmdc3032_HOW_DO_YOU_KNOW-2752,5803,His lips spreading into a grin. His mouth suddenly,His lips spreading into a grin.,His mouth suddenly,gold,learn from a heated discussion.,drops into a knowing.,moves as if to choke him.,sticks around his torso.,1\n1673,anetv_6Ke30NtYOC0,3274,The man plays the guitar in front of the camera. The man,The man plays the guitar in front of the camera.,The man,gold,\"continues playing the instrument, take off his chair, and smile to the camera.\",finishes and hands the guitar to his friend.,plays a bagpipe in the parking lot while the man finishes and resumes playing.,works on the drummer in the end of the song.,1\n1674,anetv_6Ke30NtYOC0,3921,A close up of a computer and shown and switch to a man playing the guitar with another man in the background. He,A close up of a computer and shown and switch to a man playing the guitar with another man in the background.,He,gold,continues playing on the floor while looking off into the distance.,sees the ending card and smiles.,ends by speaking to the camera and ends by moving out of the room.,continues playing the guitar to the camera and moves the camera back towards the computer.,3\n1675,anetv_6Ke30NtYOC0,3273,The man adjusts the monitor on himself. The man,The man adjusts the monitor on himself.,The man,gold,rolls from a chair and pushes himself up.,blows his legs in the air.,plays the guitar in front of the camera.,continues working out the entire room as rocks move up and down.,2\n1676,anetv_6Ke30NtYOC0,3272,We see a monitor on a computer. The man,We see a monitor on a computer.,The man,gold,places the pincer on the man's head and shows us working - - - additional metal.,uses red marker to polish the piece of canvas.,adjusts the monitor on himself.,replaces an empty lens on it.,2\n1677,anetv_6LLDsbc8XMM,5928,The video leads into clips of two people performing martial arts to one another while a group of people watch and clap. The men,The video leads into clips of two people performing martial arts to one another while a group of people watch and clap.,The men,gold,continue playing with one another and ends with another man speaking to the camera.,then throw a ball down while people in the distance do more tricks down the ball in slow motion.,continue spinning around one another and ends with a picture and a man walking away.,take turns break dancing around the side as well as dancing together.,2\n1678,anetv_6LLDsbc8XMM,3082,People perform a form of acrobatic non - combat kick fighting while a small group of people watch. Two of them,People perform a form of acrobatic non - combat kick fighting while a small group of people watch.,Two of them,gold,are fencing the singers from onlookers.,go over to land on him holding a pose.,pose together for a photo followed by a copyright.,\"hold each other with their arms to cheer, and spin around.\",2\n1679,anetv_6LLDsbc8XMM,3083,Two of them pose together for a photo followed by a copyright. A man,Two of them pose together for a photo followed by a copyright.,A man,gold,continues speaking and leads into a man clapping a flag.,stands at the railing to demonstrate how to slip into a building.,is swimming in a sunlit pool full of pool.,walks and picks the petals of a flower off.,3\n1680,lsmdc1057_Seven_pounds-97909,5674,Someone tentatively enters the house with the children. They,Someone tentatively enters the house with the children.,They,gold,\"stand in the doorway for a moment, then the girl sets off to look about.\",drive off and racing up a rough road.,sit up in bed.,apparate in an airport stadium with someone and someone's friends.,0\n1681,lsmdc1057_Seven_pounds-97909,5681,\"Someone escorts someone, as a nurse pushes her out of the hospital in a wheelchair. They go to his car and he\",\"Someone escorts someone, as a nurse pushes her out of the hospital in a wheelchair.\",They go to his car and he,gold,escorts him out of the car.,\"looks outside, charges the man before giving his son a weary self, and his throw is shown again in slow motion.\",opens the door for someone to get in.,tries to the phone.,2\n1682,lsmdc1057_Seven_pounds-97909,5673,\"She heads down the leafy drive to someone's beach house, pulls up and looks awestruck. Someone\",\"She heads down the leafy drive to someone's beach house, pulls up and looks awestruck.\",Someone,gold,tentatively enters the house with the children.,runs towards the bathroom.,rushes to the garage.,\"reads it, a smile across her face.\",0\n1683,lsmdc1057_Seven_pounds-97909,5678,\"Someone, her long, dark hair tied back, considers. Looking overwhelmed, someone\",\"Someone, her long, dark hair tied back, considers.\",\"Looking overwhelmed, someone\",gold,runs across the track and runs.,approaches a square stack of papers and finds it empty.,smiles across at him.,puts her hands to her mouth.,3\n1684,lsmdc1057_Seven_pounds-97909,5679,\"Her hand hovers over a document, then she signs it. Someone\",\"Her hand hovers over a document, then she signs it.\",Someone,gold,looks out over the ocean.,looks over his shoulder.,goes to the door.,falls out of view.,0\n1685,lsmdc1057_Seven_pounds-97909,5683,Someone's in the back. He,Someone's in the back.,He,gold,fastens her seat belt.,passes the front desk.,watches with his jaw dropping when he remembers someone's.,sits up and faces the crowd.,0\n1686,lsmdc1057_Seven_pounds-97909,5676,Someone and the kids enter a bedroom and look about in wonder. They all,Someone and the kids enter a bedroom and look about in wonder.,They all,gold,walk through a house into a room.,peek from the closet as the boys help.,get out of the room in front of the mirror.,jump up and down on the bed.,3\n1687,lsmdc1057_Seven_pounds-97909,5682,They go to his car and he opens the door for someone to get in. Someone,They go to his car and he opens the door for someone to get in.,Someone,gold,steps out into the rain.,'s in the back.,slides off the platform.,empties his fridge then leaves new york cream.,1\n1688,anetv_FmDGejzydo8,12414,A person is seen riding on a skateboard and falling down. Several more people,A person is seen riding on a skateboard and falling down.,Several more people,gold,are shown riding on skateboards attempting tricks and occasionally falling.,are shown laying down on bikes while struggling.,are shown standing around the object watching the person in the distance.,are shown speaking to the camera and people are exercising in a playground.,0\n1689,anetv_FmDGejzydo8,5731,Several shots are shown of people riding around on skateboards as well as falling down and laughing. More clips,Several shots are shown of people riding around on skateboards as well as falling down and laughing.,More clips,gold,are shown of people performing long jump as well as water skiing on the waves.,are shown of kids performing tricks on skateboards and riding past the camera.,are shown of people doing tricks and tricks around them.,are shown of people riding bumper cars as well as shaking hands.,1\n1690,anetv_FmDGejzydo8,5730,A camera pans around a boy sitting on the ground and leads into him riding a skateboard. Several shots,A camera pans around a boy sitting on the ground and leads into him riding a skateboard.,Several shots,gold,are shown of people riding around on skateboards as well as falling down and laughing.,are shown of people riding around on the waters as well as surfing.,are shown of people riding on dirt bikes and riding out on snowboards.,are shown of people riding around on tubes while panning themselves into sides.,0\n1691,anetv_FmDGejzydo8,12415,Several more people are shown riding on skateboards attempting tricks and occasionally falling. Some successful tricks,Several more people are shown riding on skateboards attempting tricks and occasionally falling.,Some successful tricks,gold,are shown as they move all around several different areas.,are shown staying close up as well as winning and riding on board.,are shown as well as speaking to the camera.,are shown with the same people in sumo suits riding and celebrating.,0\n1692,anetv_sYpC9oPhmY4,6542,A band is gathered outside a building. A leader,A band is gathered outside a building.,A leader,gold,uses the shovel to close his performance.,swings an ax near a ladder to another log.,is using a baton to instruct them.,throws a ball at a soccer event.,2\n1693,anetv_sYpC9oPhmY4,6543,A leader is using a baton to instruct them. They,A leader is using a baton to instruct them.,They,gold,engage in a game of tug of war.,begin dancing around the stage for the ballet.,break dancing on the floor in front of the audience.,are playing the drums for a small audience.,3\n1694,anetv_KGIDKn3t2Qk,13976,\"She tops it off with a bit of sour mix and cherries, as well as a straw. The video\",\"She tops it off with a bit of sour mix and cherries, as well as a straw.\",The video,gold,ends with someone looking at it.,continues as the video transitions into several more clips of people skiing on the mountain and addressed to each other.,then shows several clips of different teams as well as them in a pool pool at the same time.,ends with the closing caption.,3\n1695,anetv_KGIDKn3t2Qk,13975,\"She adds in the rum, triple sec, syrup, sour mix, and puts the lid on the shaker. She\",\"She adds in the rum, triple sec, syrup, sour mix, and puts the lid on the shaker.\",She,gold,placed it on her board is several text has highlights.,starts a timer and she now half rises.,shakes the shaker for a bit until it gets cold and pours the drink into the glass over the ice.,fills it with strawberries and a green can and swishes some more juice and adds it to the blends.,2\n1696,anetv_KGIDKn3t2Qk,13974,She takes out all the things she will need to make the drink. She,She takes out all the things she will need to make the drink.,She,gold,takes a sip of coffee.,gets some ice into a glass and into the shaker.,pushes a newspaper to the rear of the lounge and makes a call.,\"pauses, walks away.\",1\n1697,anetv_KGIDKn3t2Qk,13973,A girl begins to make a drink called a Mai Tai. She,A girl begins to make a drink called a Mai Tai.,She,gold,takes out all the things she will need to make the drink.,explains how to cut the pieces out with a spoon.,starts walking on the stage in front of judges.,returns a tap on the right side.,0\n1698,anetv_inFPa4wxOwQ,8952,The man then walks down to the end and jumps off the board performing an impressive dive. In the end his score,The man then walks down to the end and jumps off the board performing an impressive dive.,In the end his score,gold,is shown afterwards young man stands near him.,is shown all over the channel.,is shown across a large screen.,is shown again several times in slow motion.,2\n1699,anetv_inFPa4wxOwQ,16018,\"A young man dressed in a small colorful Speedo is standing at the end of a diving board. After several seconds, the man\",A young man dressed in a small colorful Speedo is standing at the end of a diving board.,\"After several seconds, the man\",gold,dives onto the board.,demonstrates the long dive.,\"jumps a swinging bar passing the bar on multiple times before, standing, still talking, jump to a jump.\",walks towards the end of the board and does several flips into the pool.,3\n1700,anetv_inFPa4wxOwQ,16019,\"After several seconds, the man walks towards the end of the board and does several flips into the pool. When it is complete, the scoreboard is shown and a score of sixty three\",\"After several seconds, the man walks towards the end of the board and does several flips into the pool.\",\"When it is complete, the scoreboard is shown and a score of sixty three\",gold,is shown in the bottom right corner of the board.,times in slow motion to arm throw.,dimensional appear appears on a stage.,taken hits into one too.,0\n1701,anetv_inFPa4wxOwQ,8951,A man is seen standing at the back of a diving board rubbing his hands together and standing up straight. The man then,A man is seen standing at the back of a diving board rubbing his hands together and standing up straight.,The man then,gold,puts the knife on his foot and continues to do the main thing.,walks around the beach while others watch on the side.,gets a drink gliding to the bottom and then pours the contents of the water.,walks down to the end and jumps off the board performing an impressive dive.,3\n1702,anetv_ew7XlNRrKyM,10836,A group of teams are gathered on an outdoor field. They,A group of teams are gathered on an outdoor field.,They,gold,take turns trying to hit the ball.,are engaged in a game of curling play.,are engaged in a game of lacrosse.,are running and trying to hit a ball with a bat.,3\n1703,anetv_ew7XlNRrKyM,10837,They are running and trying to hit a ball with a bat. They,They are running and trying to hit a ball with a bat.,They,gold,roll around the court and run out of the car.,\"try to win the game, hitting the ball toward the opponent's goal.\",measure the goal and throws it into the goal.,kick the ball around and hit it back and forth.,1\n1704,anetv_ew7XlNRrKyM,5671,A number of individuals play field hockey on a field. A man,A number of individuals play field hockey on a field.,A man,gold,runs toward a field on the hockey rink.,is watching on a blue field wearing white polo.,sweeps his foot before a burly man in the red suit plays to a circular sequence.,dressed in yellow gestures left and right with his arms.,3\n1705,anetv_81w6SClSFMU,2426,People are working on cameras in a workshop. We,People are working on cameras in a workshop.,We,gold,are showing how to repair the part of the bike.,see them mount it to a tube.,man wearing a blue practicing sits on a square bench.,see the man from tattoo.,1\n1706,anetv_81w6SClSFMU,2429,We see a blonde man making adjustments to the tube. We,We see a blonde man making adjustments to the tube.,We,gold,see the man ski skiing showing a tall paddy field.,see a man standing on water skiing.,then grabs a photo of her near his head and kisses it on the cheek.,see the closing end screen.,3\n1707,anetv_81w6SClSFMU,2425,We see an opening title screens. People,We see an opening title screens.,People,gold,walk into a racetrack and practice.,are working on cameras in a workshop.,are standing on a large field wearing a mask.,see people riding rafts in a river.,1\n1708,anetv_81w6SClSFMU,2428,The lady then dances the hula hoop with the tube. We,The lady then dances the hula hoop with the tube.,We,gold,see a blonde man making adjustments to the tube.,woman uses hula hula simultaneously.,\", finally the ladies take a backward step and shows how to properly wrap the toy tip by braid it on their mark.\",to the beach performance.,0\n1709,lsmdc1010_TITANIC-77216,2329,Someone raises his glass to someone. Someone,Someone raises his glass to someone.,Someone,gold,\"lifts his glass, frowns and then sips.\",smiles and pushes out of the chair.,\"pulls a strand of hair from her hand, hangs it in its mouth.\",appears and steps into the testing chamber.,0\n1710,lsmdc1010_TITANIC-77216,2330,\"Someone lifts his glass, frowns and then sips. Later, a waiter\",\"Someone lifts his glass, frowns and then sips.\",\"Later, a waiter\",gold,brings someone to a roman mixing bowl.,drinks at a table.,brings him a long - upholstered table.,pushes a cart laden with desserts.,3\n1711,lsmdc0022_Reservoir_Dogs-59196,7816,People walk out of the warehouse talking amongst themselves. He then,People walk out of the warehouse talking amongst themselves.,He then,gold,strokes the turquoise larger paint while the audience cheers.,returns to talking through a window.,enters through the gloom.,slowly turns his head towards the cop.,3\n1712,lsmdc0022_Reservoir_Dogs-59196,7817,He then slowly turns his head towards the cop. Someone slowly,He then slowly turns his head towards the cop.,Someone slowly,gold,picks up the phone.,walks toward the cop.,walks to the door of her room.,makes his way back to the ground.,1\n1713,anetv_ni6VySdH0XY,8416,A person is sharpening a knife behind a table. People,A person is sharpening a knife behind a table.,People,gold,are standing in front of the table watching.,\"are cutting the borders and glues, and a man is out on a table.\",are engaged in a game of arm wrestling.,are chopping something on them.,0\n1714,anetv_ni6VySdH0XY,8417,People are standing in front of the table watching. He,People are standing in front of the table watching.,He,gold,picks up the knife sharpener and uses it to sharpen the knife.,drops his beard with a pair of tongs.,gets in a blue shirt water and is showing how to make the drink.,climbs his cards together.,0\n1715,anetv_chMp_uvII5g,11796,A man at the top pushes them. The group,A man at the top pushes them.,The group,gold,of people comes in to hug the person down on the ground and another young man sees them.,rides down hill with the camera pointed up the hill.,takes their equipment out of the water.,fly slowly across the sky.,1\n1716,lsmdc3003_40_YEAR_OLD_VIRGIN-1149,17176,Someone approaches the stock room. Someone and someone,Someone approaches the stock room.,Someone and someone,gold,\"get to a table at the second movement, where someone takes one.\",step into the lead agent.,step in to the bow.,sign in at the registration.,3\n1717,anetv_DEVD2oszH48,3380,A replay shows the gymnasts performance in slow motion. The gymnast,A replay shows the gymnasts performance in slow motion.,The gymnast,gold,\"cheers her leap, dismounts, gets up, and flips over.\",performs a gymnastic dive while jumping around in circles in the melee.,sits with her coach and is congratulated.,stands up above her and jumps over the balance beam while talking.,2\n1718,anetv_DEVD2oszH48,3379,Other gymnast look on and nod with approval. A replay,Other gymnast look on and nod with approval.,A replay,gold,to a story appears on the screen.,shows the gymnasts performance in slow motion.,shows the credits of the video as he plays the accordion and finishes.,of a violin then is shown.,1\n1719,anetv_DEVD2oszH48,3378,A large crowd applauds the performance. Other gymnast,A large crowd applauds the performance.,Other gymnast,gold,perform a song and performance on the stage.,perform dancing cartwheel at a performance.,make out in the gym.,look on and nod with approval.,3\n1720,anetv_DEVD2oszH48,3377,A gymnast gets ready and stretches out before an event. The gymnast runs then,A gymnast gets ready and stretches out before an event.,The gymnast runs then,gold,tumbles down a platform during an olympic game finally landing on a padded mat.,spins around as the crowd cheers.,does several more flips and lifts flips and high kicks.,jumps from the floor onto the bike.,0\n1721,anetv_hXGE1GGTHzM,2347,\"This man is trying to shoot the white ball on the pool table backwards. He keeps trying to shoot it backwards, but he just can't so he\",This man is trying to shoot the white ball on the pool table backwards.,\"He keeps trying to shoot it backwards, but he just can't so he\",gold,is able to get over the ice until it falls out.,can see the corner of his mouth and continues to do several rounds.,is able to run.,decided to do it the regular way and shoot forwards.,3\n1722,anetv_hXGE1GGTHzM,2348,\"He keeps trying to shoot it backwards, but he just can't so he decided to do it the regular way and shoot forwards. When he does it, he\",\"He keeps trying to shoot it backwards, but he just can't so he decided to do it the regular way and shoot forwards.\",\"When he does it, he\",gold,puts the cue stick down and walks away.,\"does a good job where he does n't realize it's multiple name, only the cover partially turned from his radiator.\",\"is withdrawing, it's startling how charming it is.\",completes the timer really well because he can't.,0\n1723,lsmdc1058_The_Damned_united-98596,13295,Someone throws his arms around someone and hugs him close. Someone,Someone throws his arms around someone and hugs him close.,Someone,gold,licks himself very much for looking at someone.,screws his eyes up and returns the embrace.,strokes his hair and drops it into someone's big crotch.,hangs up someone and whispers in his ear.,1\n1724,lsmdc1058_The_Damned_united-98596,13301,The boys scamper to someone. Someone,The boys scamper to someone.,Someone,gold,plots unfold for an iv.,\", she holds the door open for the redcap who holds the door open.\",catches his breath and puts in his eyes.,smiles as his sons hug someone.,3\n1725,lsmdc1058_The_Damned_united-98596,13289,\"Someone strolls towards his house, then turns back. Someone\",\"Someone strolls towards his house, then turns back.\",Someone,gold,\"fixes someone with a sincere, imploring look.\",refills his initial glasses.,leans into the passenger seat and regards the cash.,\"looks over at him, lying on the couch, or waking him.\",0\n1726,lsmdc1058_The_Damned_united-98596,13293,\"Then, he raises his open hands out towards someone. Someone\",\"Then, he raises his open hands out towards someone.\",Someone,gold,runs around in the royal family.,runs to the silver paned gate.,stands and walks towards his old friend.,bows at the forefront.,2\n1727,lsmdc1058_The_Damned_united-98596,13297,Someone blinks slowly and shakes his head. A tender smile,Someone blinks slowly and shakes his head.,A tender smile,gold,\"extends over her laotong's gym face, then holds his gaze, his lips parting.\",spreads across her smooth skin.,spreads across someone's forehead.,spreads across someone's face.,3\n1728,lsmdc1058_The_Damned_united-98596,13288,Someone walks closer and stops. Someone,Someone walks closer and stops.,Someone,gold,looks at his family once.,kisses her gently and gives his hand a squeeze.,\"strolls towards his house, then turns back.\",grab at him as she stands in his way.,2\n1729,lsmdc1058_The_Damned_united-98596,13296,Someone is wide eyed as he speaks into someone's ear. Someone,Someone is wide eyed as he speaks into someone's ear.,Someone,gold,\"is less than relaxing, although the jacket is still close.\",stares at the birds.,\"are fog - set as the young someone, wearing uniform, sits with his coach.\",blinks slowly and shakes his head.,3\n1730,lsmdc1058_The_Damned_united-98596,13299,He tightens his embrace and closes his eyes. They,He tightens his embrace and closes his eyes.,They,gold,break his hold and pulls the bed across his chest.,\"the fan, someone draws someone back over his shoulders like a powerful - bodied teacher.\",step back and look at each other.,\"them, people lean into each other.\",2\n1731,lsmdc1058_The_Damned_united-98596,13292,\"He rubs the finger of his clenched fists together. Then, he\",He rubs the finger of his clenched fists together.,\"Then, he\",gold,raises his open hands out towards someone.,offers a cracker and talks about it.,spikes the final bow.,sweeps the student sideways and grabs a machine - sized object toward the neck.,0\n1732,lsmdc1058_The_Damned_united-98596,13294,Someone stands and walks towards his old friend. Someone,Someone stands and walks towards his old friend.,Someone,gold,comes down the stairs at the throw as someone and someone enter.,throws his arms around someone and hugs him close.,\"leaves someone, who stands behind a statue by her window.\",both cowers beneath the.,1\n1733,lsmdc1058_The_Damned_united-98596,13298,A tender smile spreads across someone's face. He,A tender smile spreads across someone's face.,He,gold,obediently pushes him back and climbs down at the foot of the platform.,tightens his embrace and closes his eyes.,\"hobbles closer to someone's smiling father, separating the boys from the village.\",is unaware of his honor in his hand as his wife grins.,1\n1734,lsmdc1058_The_Damned_united-98596,13290,\"Someone fixes someone with a sincere, imploring look. Someone\",\"Someone fixes someone with a sincere, imploring look.\",Someone,gold,turns and walks away with his back clasped behind him.,kisses the shapely section of his body.,rushes to the office while someone spots a woman seated by the podium.,\"looks at someone, then hangs his head and shakes it.\",3\n1735,lsmdc1058_The_Damned_united-98596,13291,\"Someone looks at someone, then hangs his head and shakes it. He\",\"Someone looks at someone, then hangs his head and shakes it.\",He,gold,sits on the couch and bares his teeth.,looks into his eyes and shrugs.,\"gives a thumbs up to someone, then bows.\",rubs the finger of his clenched fists together.,3\n1736,anetv_c7HroaL0WDc,14815,\"A special effect screen appears and it's mainly orange and brown with white thin lines, logos, words and numbers. Men are now sitting in a black and yellow speedboat that is going very first, and a man\",\"A special effect screen appears and it's mainly orange and brown with white thin lines, logos, words and numbers.\",\"Men are now sitting in a black and yellow speedboat that is going very first, and a man\",gold,jumps holding his belly on the ski side and he.,\"is shown wake boarding, flipping and spinning in the air.\",is shown getting ready to do a tutorial on a hockey man.,stands in front of them doing exercise.,1\n1737,anetv_c7HroaL0WDc,14816,\"A man is wake boarding again, large wakes in the water is shown, and the speedboat is shown driving. A very elaborate outro begins and it\",\"A man is wake boarding again, large wakes in the water is shown, and the speedboat is shown driving.\",A very elaborate outro begins and it,gold,is 2 white screen and a different color that has been done before being kissed by people.,makes a large screen that has just read.,appears to be several riders rafting during a race.,\"includes logos, company names, special thanks, clips of boats and people on the water, then ends with the website.\",3\n1738,anetv_c7HroaL0WDc,18729,An intro leads into several shots of a boat sitting on the water as well as people riding behind the boat and a man speaking to the camera. A person,An intro leads into several shots of a boat sitting on the water as well as people riding behind the boat and a man speaking to the camera.,A person,gold,is seen riding up a large kite followed by more people as well as by the water running down and out onto the side.,demonstrates how to use the boat while the camera pans around the inside and outside and showing more clips of people wakeboarding and moving.,is seen performing various games and penguins from different places as well as the yacht stuck in the ocean.,follows close ups of the shoes as well as sitting on water and looking back into the camera.,1\n1739,lsmdc3081_THOR-37813,16770,Someone slowly sets the caskets back down again. Someone,Someone slowly sets the caskets back down again.,Someone,gold,\"or her bearded mother is downcast for a moment, then head to his feet below the sun on the wall.\",dances with someone and his men.,turns and faces someone.,\"perches on the window at the back room a first set, smoking as the dancer begins.\",2\n1740,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18312,He takes a red book from his pocket. Someone,He takes a red book from his pocket.,Someone,gold,closes his eyes then peers down into someone's sleep.,draws the captain from a backpack.,studying image of familiar face appear.,\"opens the photo album and sees a magic moving photograph of his parents, holding a child.\",3\n1741,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18314,His mother kisses the child's hand. Someone,His mother kisses the child's hand.,Someone,gold,looks up at his friend.,tearfully turns around to greet the boy with two coffees.,\"looks at him and sighs, her face under someone's pain.\",reaches someone's hand and offers his wife a hug.,0\n1742,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18305,\"As the Gryffindors celebrate, someone looks excited. Someone\",\"As the Gryffindors celebrate, someone looks excited.\",Someone,gold,can't believe it.,addresses someone's other coaches.,puts a arm around him.,looks at his coach.,0\n1743,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18307,The triumphant Gryffindors celebrate their victory. Someone,The triumphant Gryffindors celebrate their victory.,Someone,gold,\"beams at someone, who raises his bushy eyebrows, nods and smiles.\",takes their break dancing.,grabs the man on his knees and sprints around the platform.,spars with the two men below.,0\n1744,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18309,A porter puts the snowy owl carefully into the guard's van. Someone,A porter puts the snowy owl carefully into the guard's van.,Someone,gold,\"gets off his snowboards, and goes back out the back door.\",sees someone waving goodbye.,'s folded in an ashtray.,is playing the audio on a tarmac.,1\n1745,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18311,He runs along the crowded platform till he reaches someone. He,He runs along the crowded platform till he reaches someone.,He,gold,stops on the well - looking sequence and starts to swim in the direction of the sailboat.,takes a red book from his pocket.,glances up from up into the night sky and starts driving.,follows him and suddenly impulse at the rope someone climbs past him.,1\n1746,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18310,Someone sees someone waving goodbye. He,Someone sees someone waving goodbye.,He,gold,stares down heavily.,drapes an arm around someone.,gives him a drink.,runs along the crowded platform till he reaches someone.,3\n1747,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18306,\"As the Gryffindors congratulate him, someone and his cronies sit stony - faced. The green and white banners above their heads\",\"As the Gryffindors congratulate him, someone and his cronies sit stony - faced.\",The green and white banners above their heads,gold,begin to make their way outside.,are clipped in mid - air and closer look.,change to scarlet and gold.,make them across the length of the building.,2\n1748,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18308,\"Someone beams at someone, who raises his bushy eyebrows, nods and smiles. A porter\",\"Someone beams at someone, who raises his bushy eyebrows, nods and smiles.\",A porter,gold,pushes his trolley past a crack - lined stone corridor.,leads him to a sporting field: a very decent brick wall of bonnet.,stands on his boarding platform and joins a hard roll.,puts the snowy owl carefully into the guard's van.,3\n1749,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18315,Someone looks up at his friend. He,Someone looks up at his friend.,He,gold,shakes up her autograph.,are not volcanic rock.,washes him and slaps his face away.,shakes his huge hand and gives the giant a hug.,3\n1750,lsmdc3027_GET_HIM_TO_THE_GREEK-12436,6834,Someone exits the bathroom wearing her scrubs. A view from behind someone,Someone exits the bathroom wearing her scrubs.,A view from behind someone,gold,'s house shows someone.,shows his bare chubby rear.,shaves her shiny hair sew - over.,shows her identical dresses.,1\n1751,lsmdc3027_GET_HIM_TO_THE_GREEK-12436,6835,\"A view from behind someone shows his bare chubby rear. In a park overlooking the Pacific, someone\",A view from behind someone shows his bare chubby rear.,\"In a park overlooking the Pacific, someone\",gold,faces a crevasse stocked with an adidas.,talks on the phone with his mother.,turns over and puts someone's phone down.,\"stands by his window, looking in.\",1\n1752,lsmdc3009_BATTLE_LOS_ANGELES-281,16596,Someone stabs it and clear liquid spurts from a mechanical vent. He,Someone stabs it and clear liquid spurts from a mechanical vent.,He,gold,\"pulls the drapes tight, and spies someone into an office.\",brings out a bottle of milk and creeps closer to someone.,\"stabs again, water spurts from tissue.\",takes a knife off then sweeps the room into the operating room.,2\n1753,anetv_Xc70KHd4zhI,6476,\"He then taunts the customer with the cup, keeping it out of reach. He then\",\"He then taunts the customer with the cup, keeping it out of reach.\",He then,gold,slides it down the counter where she can retrieve it.,\"draws it away from his neck, finally the one who eventually continues, sticking his tongue into the microphone with a start.\",adds a plume with soda and two liquors and bottle liquid.,puts the finished ashtray and picks up some tomatoes.,0\n1754,anetv_Xc70KHd4zhI,6475,A man stands behind a food counter and places food in a cup with a stick. He then,A man stands behind a food counter and places food in a cup with a stick.,He then,gold,\"demonstrates with frisbees and takes off of the snacks, looking keep going in tricks.\",\"taunts the customer with the cup, keeping it out of reach.\",takes a bite and peels it together while taking the fork.,serves scotty noodles then cooks meat.,1\n1755,anetv_Xc70KHd4zhI,17736,The man fills a white bowl with food. The man,The man fills a white bowl with food.,The man,gold,slides the bowl towards the lady.,adds browned kit and lemonade and lands in the bowl marked walker.,is drained the food making cake.,then pours many clean the cart leaves.,0\n1756,anetv_Xc70KHd4zhI,17735,A lady gives a man a piece of paper. The man,A lady gives a man a piece of paper.,The man,gold,slides the knife out of the table.,applies wax paper to wax the ski.,pierces his nose with the electric clippers.,fills a white bowl with food.,3\n1757,anetv_Gg8Ha8OPtZ0,12191,The boy in the red shirt bowls with a large green ball and hits a strike. He,The boy in the red shirt bowls with a large green ball and hits a strike.,He,gold,stuffs the balls into the hoop and runs it into the wood.,is ecstatic after his win and begins jumping with joy.,'s away as the goalie has crowded the people to put the hammer back on their hitting table.,tosses the ball to the camera and in the other into the yard.,1\n1758,anetv_Gg8Ha8OPtZ0,12190,\"There are two young boys, one dressed in a red shirt and the other in a striped shirt at a bowling alley. The boy in the red shirt\",\"There are two young boys, one dressed in a red shirt and the other in a striped shirt at a bowling alley.\",The boy in the red shirt,gold,bowls with a large green ball and hits a strike.,watches the boys and the loser tells the murmur to be one bit.,rolls the ball back over his book and tries to pull a red ball over his head.,goes to the sink and starts to pound it open without dropping it.,0\n1759,lsmdc0030_The_Hustler-64618,12557,\"Someone allows a perfunctory bow of his head, a courtly gesture, to someone's manager. Someone\",\"Someone allows a perfunctory bow of his head, a courtly gesture, to someone's manager.\",Someone,gold,pulls out a large revolver and a rifle.,watches as he backs groggily into a pilot in an electrical boat.,\"looks away, avoiding his eyes.\",arrives with also spectators.,2\n1760,lsmdc0030_The_Hustler-64618,12558,\"Someone looks away, avoiding his eyes. Now it\",\"Someone looks away, avoiding his eyes.\",Now it,gold,passes a vast domed paneled floor adorned with marble panes of wood and ocean chandeliers.,'s someone's voice we hear calling out the shots.,is a welcoming wrinkle.,breaks from someone's windshield and winces.,1\n1761,lsmdc0030_The_Hustler-64618,12559,\"Now it's someone's voice we hear calling out the shots. He circles the table, a proud, cocky smile on his face, and superimposed over his movements we\",Now it's someone's voice we hear calling out the shots.,\"He circles the table, a proud, cocky smile on his face, and superimposed over his movements we\",gold,recognize someone then answering him braiding himself.,\"see the spectators, hunched up in their chairs, and someone 'face, glowering, hostile.\",see the bonnet dorm low over him again.,can not see him again.,1\n1762,anetv_6RdkwoTi-98,3707,\"The man spins a ball, attached to a rope, around and around. The man\",\"The man spins a ball, attached to a rope, around and around.\",The man,gold,performs with a hula rod and starts to decorate the suit's handle.,spins on the small board and uses several hand grips to get it free.,lifts the javelin down the girl to two border skiing.,lets the ball goes and watches as it lands off screen.,3\n1763,anetv_6RdkwoTi-98,3705,\"A man performs a hammer throw in an outdoor area, caged in, surrounded by crowds of people watching. A man in a red t - shirt\",\"A man performs a hammer throw in an outdoor area, caged in, surrounded by crowds of people watching.\",A man in a red t - shirt,gold,talks before a video showing replays in progress.,approaches a players circle on the ground inside of an enclosed metal fence area.,follows the first boy down the diving board replays the two jumps gracefully.,poses with black flags.,1\n1764,anetv_6RdkwoTi-98,3706,A man in a red t - shirt approaches a players circle on the ground inside of an enclosed metal fence area. The man,A man in a red t - shirt approaches a players circle on the ground inside of an enclosed metal fence area.,The man,gold,dips down with batons as he spins them.,holds a picture and holds his hand across the garbage to put his gun on.,turns the racquet quickly around and begin to weld.,\"spins a ball, attached to a rope, around and around.\",3\n1765,anetv_1YGz5CQBflM,5429,The man prepares his arm as the other grabs his hand and he pretends to kick his head. More people step up to arm wrestle this man while food is being shown and the loser,The man prepares his arm as the other grabs his hand and he pretends to kick his head.,More people step up to arm wrestle this man while food is being shown and the loser,gold,gets on him and grabs him to his feet.,is the last big shot.,gets food all over him.,helps him into rubbing his hands.,2\n1766,anetv_aBdrTqSnWbw,16241,A person in military style clothing runs through a course and takes cover wooden logs stacked up. A person in military style clothing stands,A person in military style clothing runs through a course and takes cover wooden logs stacked up.,A person in military style clothing stands,gold,ready standing before them.,shuffle down over the water.,stock pieces of debris from the top of a wooden gate.,aiming his gun over a concrete wall before ducking behind it for cover.,3\n1767,anetv_aBdrTqSnWbw,162,The outside of a paintball store is shown. A man,The outside of a paintball store is shown.,A man,gold,\"stands behind a flat screen, talking and showing how to play rowing machine.\",sits on a dirt bike holding a pole.,is sanding materials on a log.,\"talks to the camera from inside the store, interspersed by scenes of people engaging in paintball.\",3\n1768,anetv_aBdrTqSnWbw,16243,A man runs out from a house onto a grass field with a paintball gun. A man,A man runs out from a house onto a grass field with a paintball gun.,A man,gold,throws a green dart on the ground.,stands up as a dog chases after him.,runs around a houses then dives behind a wall for cover.,walks to a trailer frame and leaps across the bike.,2\n1769,anetv_aBdrTqSnWbw,16242,A person in military style clothing stands aiming his gun over a concrete wall before ducking behind it for cover. A man,A person in military style clothing stands aiming his gun over a concrete wall before ducking behind it for cover.,A man,gold,in a suit uniform the boot and twists it towards the suit.,shines off different backs and uses holes while the pins on the walls are shown.,runs out from a house onto a grass field with a paintball gun.,\"grabs a knife in his hand and walks through the scope, attached to a bottle with red and green colored holes.\",2\n1770,anetv_Z6WJ0A9VvxQ,898,Peolpe are running in street under a bridge. people,Peolpe are running in street under a bridge.,people,gold,are running through a river as the matadors try to work.,are standing and running through the bridge and street.,ride off the the hot water inside the boat.,are shown wearing tubes down a dirt hill.,1\n1771,lsmdc3025_FLIGHT-12021,13558,\"Someone sits in a chair on the veranda, taking pictures. Someone\",\"Someone sits in a chair on the veranda, taking pictures.\",Someone,gold,steps out in a bathrobe.,goes through a wall with nervous glances as he walks away.,\"makes his way up the bed, which stands by him.\",shows the packet the painted polish.,0\n1772,lsmdc0050_Indiana_Jones_and_the_last_crusade-70540,6903,\"The Sultan is seated in his royal chair, flanked by people and surrounded by his minions. Someone\",\"The Sultan is seated in his royal chair, flanked by people and surrounded by his minions.\",Someone,gold,sees the guards and sees him.,stands in the basement in a wheelchair.,uncorks a cigarette stuck to his mouth.,holds the missing grail diary pages.,3\n1773,anetv_jWzLhOqcGtE,6203,They run on the court and continue to dribble the ball. They,They run on the court and continue to dribble the ball.,They,gold,send the red team together into a goal.,jump up and make a basket.,perform quickly with the balls that they are trying to hit the ball.,throw the ball farther back into the net.,1\n1774,anetv_jWzLhOqcGtE,6202,A man is dribbling a basketball. They,A man is dribbling a basketball.,They,gold,are playing a game of indoor soccer.,are playing on a field.,are hitting a football.,run on the court and continue to dribble the ball.,3\n1775,anetv_Mmdcsw_SEzc,12388,A boy is building a sandcastle near the edge of the ocean. He,A boy is building a sandcastle near the edge of the ocean.,He,gold,forms huge circles and stands up.,pours water onto a kayak board.,sits on top of the surfers.,does her first jump before moving again and raising her arms.,0\n1776,anetv_YBrcJxnXuVU,13314,A woman sits at a table and shrugs her arms. The woman,A woman sits at a table and shrugs her arms.,The woman,gold,kneels back and begins lifting weights.,stands on top of the auditorium.,picks up the glass with her mouth and drinks the entire glass of beer.,holds her waist high up.,2\n1777,anetv_YBrcJxnXuVU,13315,The woman picks up the glass with her mouth and drinks the entire glass of beer. The woman,The woman picks up the glass with her mouth and drinks the entire glass of beer.,The woman,gold,sets the glass back on the table with her hand.,puts it on the counter and pops it in her mouth.,drinks the beer and begin to drink and then sips.,takes a glass and finishes the drink in the glass frame.,0\n1778,anetv_YBrcJxnXuVU,5122,The woman grab the cup with her mouth and drinks all the beer buttons up. woman wearing white shirt and white blazer,The woman grab the cup with her mouth and drinks all the beer buttons up.,woman wearing white shirt and white blazer,gold,is in the middle of the court holding a metal bar talking to the camera.,is charged with an emery.,and football uniform stepped out onto the balcony.,is in a bar and drinks a beer glass.,3\n1779,anetv_m34BYRanODU,12029,A woman talks in a backyard wearing loose clothes. The woman exercise,A woman talks in a backyard wearing loose clothes.,The woman exercise,gold,stepping on the mat.,pulling a cable on another woman's lap knitting.,and washes the ladies face.,and plays with a book.,0\n1780,anetv_LZ1142kuCnI,11205,A person is seen walking around a room carrying a broom. She,A person is seen walking around a room carrying a broom.,She,gold,pushes it along the wall beside her.,continue to swing down while others watch.,is then seen swinging around.,touches a window of water and throws a rag to wipe them.,0\n1781,anetv_LZ1142kuCnI,11206,She pushes it along the wall beside her. In the end she,She pushes it along the wall beside her.,In the end she,gold,hits the series of balls and walks away from the camera.,\"lays on her board, so she paints the bottom of her long, shiny red hair hopscotch.\",throws up her streamers and takes a picture off of a wall.,turns around and pushes it back.,3\n1782,anetv_9-U2WOLIqB8,17342,A shot of pins are shown sitting on a lane followed by a man walking into frame. The man,A shot of pins are shown sitting on a lane followed by a man walking into frame.,The man,gold,spins all around several objects while speaking to the camera and jumps down to the end.,spins a ball to go around the pins to hit more in the end.,balances and shoots another dart and throws it up.,waves the camera out of frame and then walks back to the camera followed by a basketball.,1\n1783,anetv_9-U2WOLIqB8,17343,The man spins a ball to go around the pins to hit more in the end. The person,The man spins a ball to go around the pins to hit more in the end.,The person,gold,walks into the lane and blows into a path behind the camera.,scores in more clips of the group celebrating.,spins another ball that is followed shortly afterwards.,misses the ball all times and chases after the men.,2\n1784,anetv_yN3e-giBxns,10352,It's a nighttime outside at a horse ranch and a lot of people are standing around. Suddenly a horse with a man riding on him quickly starts running and there,It's a nighttime outside at a horse ranch and a lot of people are standing around.,Suddenly a horse with a man riding on him quickly starts running and there,gold,is a person sitting behind him mowing.,are people jogging the other side of the horse chasing the other.,is a man holding pan standing on a horse.,'s a calf roped to the horse who is running in front of them.,3\n1785,anetv_yN3e-giBxns,10354,\"The man lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up. The man gets up, walks back to his horse, jumps back on and the horse\",\"The man lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up.\",\"The man gets up, walks back to his horse, jumps back on and the horse\",gold,runs into the backyard swing a small calf.,claps for him as the entire boy descends into frame.,falls and walks away.,slowly begins to walk as the calf is trying to stand up.,3\n1786,anetv_yN3e-giBxns,10353,Suddenly a horse with a man riding on him quickly starts running and there's a calf roped to the horse who is running in front of them. The man,Suddenly a horse with a man riding on him quickly starts running and there's a calf roped to the horse who is running in front of them.,The man,gold,\"lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up.\",\"dismounts from the horse, jumps over and sits up in bed, this time not moving his left foot.\",is talking to a cattle who is on the horse running back and forth along with other matadors.,continues turning in the sped up mode and moves back and forth back to doing that leg out.,0\n1787,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9667,6633,Someone enters the classroom and closes the shutters with his wand. He,Someone enters the classroom and closes the shutters with his wand.,He,gold,\"stares at him, overcome with emotion, someone faces himself.\",takes his rifle and looks around.,pulls down a screen.,finds the watch outside and starts it in.,2\n1788,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9667,6632,\"A single autumn leaf flutters down from the Whomping Willow, then all the leaves fall at once and the tree shakes its bare branches. Someone\",\"A single autumn leaf flutters down from the Whomping Willow, then all the leaves fall at once and the tree shakes its bare branches.\",Someone,gold,enters the classroom and closes the shutters with his wand.,\"blinks at the current, then shuts his light and switches back on.\",picks up the bonfire and takes a pencil from the hand of her father.,looks up at the dancers.,0\n1789,lsmdc1035_The_Adjustment_Bureau-85653,19154,Someone lies on his back in bed and gazes out a window with a faraway look. Sunlight,Someone lies on his back in bed and gazes out a window with a faraway look.,Sunlight,gold,\"comes to a stop at a window, and someone has onto the couch.\",disappears amid the silhouettes of men watching the house.,\"plates with him, someone, now on a bed.\",bathes his face as he rests his hands on his stomach.,3\n1790,lsmdc1035_The_Adjustment_Bureau-85653,19157,\"Now, our view sweeps down the front of his towering apartment building. Someone\",\"Now, our view sweeps down the front of his towering apartment building.\",Someone,gold,\"makes his way across, then waits at his bus stop.\",drives an fluidly lined street.,topples his kids in bed.,\"clenches his jaw, shakes his head in frustration and strolls up on his cell block.\",0\n1791,lsmdc1035_The_Adjustment_Bureau-85653,19163,\"Someone gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site. A short distance ahead, he\",Someone gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site.,\"A short distance ahead, he\",gold,notices a dark - haired woman striding down the sidewalk.,sees a young woman looking in a mirror.,finds a scope on a sculpture.,\"skids around an corner, passes under traffic traffic and tumbles.\",0\n1792,lsmdc1035_The_Adjustment_Bureau-85653,19167,\"Someone hurries off and races back up the sidewalk after her. Turning the corner, he\",Someone hurries off and races back up the sidewalk after her.,\"Turning the corner, he\",gold,blows a hasty retreat.,drifts toward the corridor filled with pale light and flotation devices.,creeps closer and draws closer.,runs down another street and catches up to someone as she makes as another turn on foot.,3\n1793,lsmdc1035_The_Adjustment_Bureau-85653,19162,The bus pulls away from the curb. Someone,The bus pulls away from the curb.,Someone,gold,steps onto the front passenger seat and touches it up to the portly passenger seat as he swerves.,gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site.,waits for them to arrive.,swerves off the road and stops.,1\n1794,lsmdc1035_The_Adjustment_Bureau-85653,19164,\"A short distance ahead, he notices a dark - haired woman striding down the sidewalk. As the bus cruises past, he\",\"A short distance ahead, he notices a dark - haired woman striding down the sidewalk.\",\"As the bus cruises past, he\",gold,stares up at the adjustment bureau siting parked nearby.,sees that it's someone.,lingers down from his motel office mirror.,gazes at the laptop then glances back at the sound of the lower deck.,1\n1795,lsmdc1035_The_Adjustment_Bureau-85653,19165,\"As the bus cruises past, he sees that it's someone. Someone\",\"As the bus cruises past, he sees that it's someone.\",Someone,gold,turns down a street behind the bus as it pulls over.,takes off the lid and hands it to the sheriff.,leaps from the ceiling and jumps into the swimming pool.,\"notices a huge, stout boot on the desk.\",0\n1796,lsmdc1035_The_Adjustment_Bureau-85653,19160,His hopeful eyes find the empty pair of seats occupied three years earlier by someone. He,His hopeful eyes find the empty pair of seats occupied three years earlier by someone.,He,gold,looks up from his uncle.,sits on the piano and starts talking.,heads to them and sits.,kneels beside the table facing someone.,2\n1797,lsmdc1035_The_Adjustment_Bureau-85653,19161,He heads to them and sits. The bus,He heads to them and sits.,The bus,gold,keeps pulling in their underwear.,pulls away from the curb.,pulls up outside a smart apartment building.,'s stays outside front building.,1\n1798,lsmdc1035_The_Adjustment_Bureau-85653,19158,\"An m6 pulls up and he climbs aboard. Sliding his pass through the reader, he\",An m6 pulls up and he climbs aboard.,\"Sliding his pass through the reader, he\",gold,sees a score flag beside him.,drops onto the ledge.,removes out a hyperemic cartridge.,pauses in the aisle.,3\n1799,lsmdc1035_The_Adjustment_Bureau-85653,19152,Someone gazes at the city. Now someone,Someone gazes at the city.,Now someone,gold,trips over a pillar then sweeps confetti over a city.,drives a big gas hatchback.,sits at a small table in front of the tiny birds - lit section.,heads down a crowded sidewalk.,3\n1800,lsmdc1035_The_Adjustment_Bureau-85653,19159,\"Sliding his pass through the reader, he pauses in the aisle. His hopeful eyes\",\"Sliding his pass through the reader, he pauses in the aisle.\",His hopeful eyes,gold,\"find another lead, one of the singers snapping open.\",find the empty pair of seats occupied three years earlier by someone.,scan the simple sheep with illustrations of his victims.,relax as he takes in descriptive technique then folds up his french fries.,1\n1801,lsmdc1035_The_Adjustment_Bureau-85653,19155,\"Sunlight bathes his face as he rests his hands on his stomach. Shifting his gaze to the clock on his bedside table, he\",Sunlight bathes his face as he rests his hands on his stomach.,\"Shifting his gaze to the clock on his bedside table, he\",gold,finds someone's egg laptop in his lap.,reaches over and turns off the alarm.,tries to rub his foot to find heated impact.,gives a unopened collection of boyish artwork.,1\n1802,lsmdc1035_The_Adjustment_Bureau-85653,19166,Someone turns down a street behind the bus as it pulls over. Someone,Someone turns down a street behind the bus as it pulls over.,Someone,gold,hurries off and races back up the sidewalk after her.,keeps after the recruiters.,stares out from the small window in the cream fountain.,let her into a luxurious bath.,0\n1803,lsmdc1035_The_Adjustment_Bureau-85653,19153,\"As he walks amid the flowing pedestrians, the screen fades to black. Someone\",\"As he walks amid the flowing pedestrians, the screen fades to black.\",Someone,gold,is by a puddle in a downpour.,\"glows through her skin, making sure it's okay.\",lies on his back in bed and gazes out a window with a faraway look.,\"puts his back right on his outstretched fan, then stands up in bed, with the crowd escorted by him.\",2\n1804,anetv_FKphYO14qhw,13508,He uses a cue to shoot the ball toward the pocket. He,He uses a cue to shoot the ball toward the pocket.,He,gold,looks up then shoots at someone.,tries again and again until they go into the pockets.,\"gets back, delivering a tuxedo.\",dodges his mitt and misses it.,1\n1805,anetv_FKphYO14qhw,13507,A man is leaning over a large pool table. He,A man is leaning over a large pool table.,He,gold,holds a bottle when his father struggles to make it up.,gets onto his back and begins doing the crunches.,is playing a drum set.,uses a cue to shoot the ball toward the pocket.,3\n1806,lsmdc0003_CASABLANCA-47027,13402,She indicates with her hand where she wants them. A french officer at the bar,She indicates with her hand where she wants them.,A french officer at the bar,gold,approach a kung fu master.,makes a remark to someone.,puts the bottle on someone.,reflects bright amber on her beauty.,1\n1807,lsmdc0003_CASABLANCA-47027,13401,Someone gets up and strolls away. She,Someone gets up and strolls away.,She,gold,hurries across the veranda then back to the living room.,stands up and kicks his trunk.,strides over to the racquets and digs up the key.,indicates with her hand where she wants them.,3\n1808,lsmdc1012_Unbreakable-6851,9812,\"Then the boy takes the woman's hand and puts it in his father's before setting off down the corridor. As his parents follow, they\",Then the boy takes the woman's hand and puts it in his father's before setting off down the corridor.,\"As his parents follow, they\",gold,see someone walking away through the office and the bloodstained floor.,begin to climb up the stairs.,continue to smoke all past the venetian wall.,let go of each others hands.,3\n1809,lsmdc1012_Unbreakable-6851,9819,\"He walks down the hall past an open doorway and starts to go upstairs. From inside the room, his wife\",He walks down the hall past an open doorway and starts to go upstairs.,\"From inside the room, his wife\",gold,is taking someone's arm.,is hanging boxes from waist up.,looks up at him.,stands on the center of the clock.,2\n1810,lsmdc1012_Unbreakable-6851,9811,The three of them stand silently for a moment. Then the boy,The three of them stand silently for a moment.,Then the boy,gold,takes the woman's hand and puts it in his father's before setting off down the corridor.,stops short.,stops playing and darts out of the slum narrowing with his other still leading down.,\"folds his arms, putting stepping back across his face.\",0\n1811,lsmdc1012_Unbreakable-6851,9814,\"A gaggle of reporters and photographers, one holding a long boom microphone, are standing inside the big double doors at the end of the corridor. Flashlights\",\"A gaggle of reporters and photographers, one holding a long boom microphone, are standing inside the big double doors at the end of the corridor.\",Flashlights,gold,continues to pace across the station bed.,draw each stop in front of a luxury station cinema and exit with a small flags out behind it.,go off as someone's family steps out in the open air.,make out of the church and jumps off a steep wall before walking on and down the stairs.,2\n1812,lsmdc1012_Unbreakable-6851,9813,\"As his parents follow, they let go of each others hands. A gaggle of reporters and photographers, one holding a long boom microphone,\",\"As his parents follow, they let go of each others hands.\",\"A gaggle of reporters and photographers, one holding a long boom microphone,\",gold,gives onto a sunny break.,\"one's agent in a coat, watches them with an alarmed glare.\",are made situps on the ground.,are standing inside the big double doors at the end of the corridor.,3\n1813,lsmdc1012_Unbreakable-6851,9817,He is staring down at the spoon he is holding against the rim of a cereal bowl. He,He is staring down at the spoon he is holding against the rim of a cereal bowl.,He,gold,\", he begins to write.\",nods slightly as he brings the spoon under control.,\"holds his wand, his mouth open, as the last straw floats off his ear towards someone.\",\"turns and sees someone, who has obviously nursing a drink or something.\",1\n1814,lsmdc1012_Unbreakable-6851,9805,\"Someone walks stiffly down a hospital corridor lined with silent people standing, sitting, leaning against walls, many of them watching him and smiling. His son\",\"Someone walks stiffly down a hospital corridor lined with silent people standing, sitting, leaning against walls, many of them watching him and smiling.\",His son,gold,peers through the peephole.,\"sees him, jumps up from the bench, and runs to him.\",\"towers over the document, then reaches for his pocket.\",lies motionless with his son on the ceiling.,1\n1815,lsmdc1012_Unbreakable-6851,9815,Flashlights go off as someone's family steps out in the open air. Someone,Flashlights go off as someone's family steps out in the open air.,Someone,gold,peeks out someone's hooded helmet.,'s sitting alone at the table in a small dimly lit kitchen.,pushes a key through a door in the den.,flies through the air as a chain kicks the door open.,1\n1816,lsmdc1012_Unbreakable-6851,9806,\"Someone hugs his son to his chest, gives him a slight smile, and looks over his head at the slim fair - haired woman who has followed the boy. They\",\"Someone hugs his son to his chest, gives him a slight smile, and looks over his head at the slim fair - haired woman who has followed the boy.\",They,gold,drive toward the ground top.,look down at the jagged rocks below.,kick one hot in an rear - view mirror and shoots another final glance before smiling.,stare at each other.,3\n1817,lsmdc1012_Unbreakable-6851,9808,\"She moves forward and puts her head on his shoulder, his cheek against her hair. He\",\"She moves forward and puts her head on his shoulder, his cheek against her hair.\",He,gold,\"turns it back to us both, expertly watching her, and smiles down at him.\",\"puts his arm around her, gazing past her.\",lets go of her.,flips a few times and exhales in agony.,1\n1818,lsmdc1012_Unbreakable-6851,9821,He stops and looks down at her. She,He stops and looks down at her.,She,gold,goes to a small collection of runners.,is standing in front of open drawer.,notices one and looks at someone.,is nowhere to be seen.,1\n1819,lsmdc1012_Unbreakable-6851,9807,They stare at each other. She,They stare at each other.,She,gold,\"touches her father's nose, then kisses the side of her mouth.\",sees someone retreating up the corridor.,\"moves forward and puts her head on his shoulder, his cheek against her hair.\",hangs her head as she leans close.,2\n1820,lsmdc1012_Unbreakable-6851,9816,Someone's sitting alone at the table in a small dimly lit kitchen. He,Someone's sitting alone at the table in a small dimly lit kitchen.,He,gold,enters the house's apartment.,scans from inside on his work as they wait a few steps.,is staring down at the spoon he is holding against the rim of a cereal bowl.,\"covers the lid with a long, plastic container.\",2\n1821,lsmdc1012_Unbreakable-6851,9810,The boy's lips move. The three of them,The boy's lips move.,The three of them,gold,stretch upwards before playing instruments while a camp fire is now at the bottom of the camp.,stand silently for a moment.,smile on as the comatose agent puts on his earpiece.,trade a tight - toothed grin.,1\n1822,lsmdc1012_Unbreakable-6851,9820,\"From inside the room, his wife looks up at him. He\",\"From inside the room, his wife looks up at him.\",He,gold,dries his face with his sleeve.,stops and looks down at her.,is on his knees with his arms around someone.,rises from the bed.,1\n1823,lsmdc1012_Unbreakable-6851,9809,\"He puts his arm around her, gazing past her. She\",\"He puts his arm around her, gazing past her.\",She,gold,\"steps back, looks at someone, then at the boy, her head on one side.\",leaves its two sides distantly.,maintains a crank on her wrist watch.,is unaware of someone's presence.,0\n1824,anetv_r97vYbzloD8,13661,A lady stand outside with her hands in the air. The lady,A lady stand outside with her hands in the air.,The lady,gold,is looking up at the sky.,lets the hair into her face and talks to the camera.,dips the lady in the water.,folds his arms and talks while holding the guitar.,0\n1825,anetv_r97vYbzloD8,13662,The lady approaches a male who is holding a hallow stick. The lady,The lady approaches a male who is holding a hallow stick.,The lady,gold,\"curls her leg, and holds up a small cutter.\",adds a drink to a blender glass.,moves forward and waves her hands.,is seated on the ground.,2\n1826,anetv_r97vYbzloD8,16047,A woman is standing on a roof top with a man. He,A woman is standing on a roof top with a man.,He,gold,is chopping something in a trowel.,is watching her while doing tricks.,is playing a flute while she moves around.,is lying on a ladder on the ground.,2\n1827,anetv_r97vYbzloD8,13663,The lady moves forward and waves her hands. The lady,The lady moves forward and waves her hands.,The lady,gold,puts her braids and messy hair in sections.,lays her leg under the faucet.,turns toward the man with her hand extended and smiles.,closes and brushes foundation all over the horses face.,2\n1828,anetv_s82_J03bqwQ,4550,A man is seen riding in on a skateboard followed by a man drinking a beer through a hose and a man sitting in a car flipping off the camera man. More random shots,A man is seen riding in on a skateboard followed by a man drinking a beer through a hose and a man sitting in a car flipping off the camera man.,More random shots,gold,are shown of the person sitting and how to properly jack your tire together.,are shown of people driving on a skateboard as well as another trick on a tube and turning in the same.,\"are show of landscapes, dogs, people standing around, and moving along the water.\",are shown of people moving around the car and performing on one adjacent to the lanes.,2\n1829,anetv_s82_J03bqwQ,4551,\"More random shots are show of landscapes, dogs, people standing around, and moving along the water. The video\",\"More random shots are show of landscapes, dogs, people standing around, and moving along the water.\",The video,gold,ends with people riding around and leads into shots of people riding around.,continues with the man smiling as well as a man on the beach.,leads into people riding along on the water kite surfing and leads into a man speaking to others outside while smoking a cigarette.,transitions into a group of children performing tricks using the twirled rope.,2\n1830,lsmdc1015_27_Dresses-79880,8098,\"She moves off through the guests, searching for someone. The bride and groom\",\"She moves off through the guests, searching for someone.\",The bride and groom,gold,scatter from their hiding spot.,are sitting on the long grass estate.,are dancing when the bride spots someone.,are at a nearby cafe.,2\n1831,lsmdc1015_27_Dresses-79880,8089,It's the ringtone of her pda phone. She,It's the ringtone of her pda phone.,She,gold,\"takes a four tickets from her purse, shakes them.\",offers it to play as she rounds the corner.,\"enters the living room, with someone lying on the floor.\",gets it out of her handbag and looks at someone.,3\n1832,lsmdc1015_27_Dresses-79880,8093,She smiles as they join the nighttime traffic. They,She smiles as they join the nighttime traffic.,They,gold,pull up beside an illuminated sign announcing the wedding reception.,blow up the car.,clap their hands as she watches them in their rearview mirror.,get to the driver.,0\n1833,lsmdc1015_27_Dresses-79880,8099,The bride and groom are dancing when the bride spots someone. Someone,The bride and groom are dancing when the bride spots someone.,Someone,gold,hands passionately in her glassy eyes.,stands in her seat with her head turned to the judge's side.,looks around in surprise.,smiles and hands the ring to someone.,2\n1834,lsmdc1015_27_Dresses-79880,8090,She gets it out of her handbag and looks at someone. She,She gets it out of her handbag and looks at someone.,She,gold,smiles and hurries away to the offices at the new york journal.,drops to her knees.,has the most eaten plate in front of her.,hangs it around her neck.,0\n1835,lsmdc1015_27_Dresses-79880,8092,\"She hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings. She\",\"She hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings.\",She,gold,is also on the hood of the van.,switches back and then moves off.,continues her way down a flight of stairs.,smiles as they join the nighttime traffic.,3\n1836,lsmdc1015_27_Dresses-79880,8094,\"They pull up beside an illuminated sign announcing the wedding reception. On the brightly decorated peer, someone\",They pull up beside an illuminated sign announcing the wedding reception.,\"On the brightly decorated peer, someone\",gold,listens softly as the sisters films the doors through the windows.,climbs behind the desk and put on a coat.,is among the guests.,hangs from a branch in the yard.,2\n1837,lsmdc1015_27_Dresses-79880,8091,She smiles and hurries away to the offices at The New York Journal. She,She smiles and hurries away to the offices at The New York Journal.,She,gold,steps across the classroom.,retrieves someone's box and drives.,\"stretches her own violin to her waist, and grins.\",\"hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings.\",3\n1838,lsmdc1015_27_Dresses-79880,8096,\"She takes a flying leap onto the deck, just managing to stay upright. Pleased with herself, she\",\"She takes a flying leap onto the deck, just managing to stay upright.\",\"Pleased with herself, she\",gold,leans straight behind her.,walks off but misses a step.,crumples to the padded seats and swings her arms.,watches as she caught the broomstick in water.,1\n1839,lsmdc1015_27_Dresses-79880,8095,\"On the brightly decorated peer, someone is among the guests. Someone\",\"On the brightly decorated peer, someone is among the guests.\",Someone,gold,follows the kids into the room.,\"runs down the pier, arriving at the end just as the gangplank is being removed from the party boat.\",\"picks up a pink line, collects a piece of papers and sets it aside.\",has her arms strapped to her waist.,1\n1840,anetv_Xf0c2abFH3Y,4713,We see the person paint on a canvas. We,We see the person paint on a canvas.,We,gold,see a marker title.,see the finished painting and a line of paints.,see another person with a process.,paint a fence.,1\n1841,anetv_Xf0c2abFH3Y,4714,We see the finished painting and a line of paints. We then,We see the finished painting and a line of paints.,We then,gold,see the completed painting.,see the ending scene.,see the paper with the finished product.,see the people on the fence.,1\n1842,anetv_Xf0c2abFH3Y,14538,A person is mixing paint in a jar. They,A person is mixing paint in a jar.,They,gold,maintain the liquid inside the box.,begin to paint on a canvas.,see a green liquid.,put drinks into a mug.,1\n1843,anetv_Xf0c2abFH3Y,4712,We see a person mixing oil paints. We,We see a person mixing oil paints.,We,gold,see a marine covered in pink.,see people standing in a house up a hill in front of the dog environment.,see the person paint on a canvas.,see a man laying in couches and puts the shoes on.,2\n1844,anetv_Xf0c2abFH3Y,4710,We see a couple of opening scenes. We,We see a couple of opening scenes.,We,gold,see paint on a pallet.,see a guide mopping the stairs.,see a man and give shots.,see the ladies shoveling off the lawnmower.,0\n1845,anetv_Xf0c2abFH3Y,4711,We see paint on a pallet. We,We see paint on a pallet.,We,gold,use a paint dropper to paint the nails.,see whom run in red here - hand with a house racquet.,see a person descending the pole and we see a green title screen.,see a person mixing oil paints.,3\n1846,anetv_Xf0c2abFH3Y,14537,Paint is shown on an easel. A person,Paint is shown on an easel.,A person,gold,is mixing paint in a jar.,uses the paint to cut the leaves.,picks up a bow lens and after she scratches it.,starts painting their fingernails.,0\n1847,lsmdc3090_YOUNG_ADULT-43835,8869,Someone lies on a sofa as reality program plays on the television. Her white dog,Someone lies on a sofa as reality program plays on the television.,Her white dog,gold,catches a glimpse of someone in a grocery store.,is laying on the back of the van.,sits on the couch at her feet.,lies sits on his lap.,2\n1848,lsmdc0053_Rendezvous_mit_Joe_Black-71523,12183,\"His eyes are on people, he watches them admiringly yet ruefully. Someone\",\"His eyes are on people, he watches them admiringly yet ruefully.\",Someone,gold,regards the waiter for a moment.,holds up a bamboo object.,grabs a photo from someone.,falls face into the bathroom.,0\n1849,lsmdc0053_Rendezvous_mit_Joe_Black-71523,12182,\"On a distant fringe of the party, a grass terrace that still commands a view of the dance floor, is someone. His eyes are on people, he\",\"On a distant fringe of the party, a grass terrace that still commands a view of the dance floor, is someone.\",\"His eyes are on people, he\",gold,is playing rope guided by his own father.,watches them admiringly yet ruefully.,lies looking a little scared behind.,turns and pretends a book control a vase.,1\n1850,anetv_79FMLEeVp7Q,2455,They join a crowd alone a lake. Three people,They join a crowd alone a lake.,Three people,gold,load the instruments and trip them.,ride a canoe near the base of the mountains.,stand behind a rail truck making a presentation.,are playing rock crossing.,1\n1851,anetv_79FMLEeVp7Q,6656,A man is seen walking down a wooded path. He,A man is seen walking down a wooded path.,He,gold,lays on his lawn and spreads his hand around the lawn.,jumps into a pit.,uses a paddle and repeats several more times.,walks across a bridge wearing a backpack.,3\n1852,anetv_79FMLEeVp7Q,2452,A man walks alone through a forest. A woman joins the man and they,A man walks alone through a forest.,A woman joins the man and they,gold,race off to slide down a mountain for a period of time.,throw a ball over.,\"walk together, past more trees.\",perform numerous competitive arts moves.,2\n1853,anetv_79FMLEeVp7Q,2454,They pass more people near mountains. They,They pass more people near mountains.,They,gold,join a crowd alone a lake.,give each other a high five.,watch the concert on tv.,\"use cameras to take everything from their fight, forming a brick to achieve the same place.\",0\n1854,anetv_79FMLEeVp7Q,6657,He walks across a bridge wearing a backpack. We,He walks across a bridge wearing a backpack.,We,gold,are speeding up the ramp.,ride a horse in pursuit.,is glued to the screen.,\"see him from several angles, always from behind and walking.\",3\n1855,anetv_79FMLEeVp7Q,2456,Three people ride a canoe near the base of the mountains. The cameraman,Three people ride a canoe near the base of the mountains.,The cameraman,gold,tilt their legs back up and see the right boys fall.,pauses while riding on tubes.,rides down through kayak following the tiger.,explores again behind following the couple.,3\n1856,lsmdc3022_DINNER_FOR_SCHMUCKS-10659,5506,Someone pushes the door open. Someone,Someone pushes the door open.,Someone,gold,pulls someone's eyes closed.,steps over to him.,crawls by as he starts into it.,collects pages then walks away.,1\n1857,anetv_90LkAH4tZC4,8888,The person in black shirt is playing drums. The camera,The person in black shirt is playing drums.,The camera,gold,focuses on the boys climbing over the wall.,pans to rest on someone movements on the small screen.,zoomed in to the drums as the person continue to play.,is moving in the arcade.,2\n1858,lsmdc0049_Hannah_and_her_sisters-69490,10848,People sit at one of the tables; a candle burns in its holder on the tabletop. Someone,People sit at one of the tables; a candle burns in its holder on the tabletop.,Someone,gold,\"takes a cigarette from her purse as she holds her hand to her nose, sniffing.\",creeps toward the factory.,has taken a scrap of paper from someone.,puts one shot beside her.,0\n1859,lsmdc0049_Hannah_and_her_sisters-69490,10855,\"People pass by as someone walks back and forth from the curb to someone, growing angrier and angrier. A taxi\",\"People pass by as someone walks back and forth from the curb to someone, growing angrier and angrier.\",A taxi,gold,pulls up outside the shore to the surf.,arrives at the store entrance.,pulls up to the curb near deserted.,pulls up to the curb.,3\n1860,lsmdc0049_Hannah_and_her_sisters-69490,10860,\"They embrace tightly, continuing to dance. People and the twins\",\"They embrace tightly, continuing to dance.\",People and the twins,gold,help each other with their feet.,sit at the dining room table.,\"wait on the other side of the stand, shooting more blasts of scenery.\",move into a state of shock.,1\n1861,lsmdc0049_Hannah_and_her_sisters-69490,10864,\"The child takes the camera from someone, as well as picking up a second identical one from the table. The adopted children\",\"The child takes the camera from someone, as well as picking up a second identical one from the table.\",The adopted children,gold,are dwarfed by the tree.,continue to walk the block.,are walking on in their green and white pants.,\"leave, the twins going off with them.\",3\n1862,lsmdc0049_Hannah_and_her_sisters-69490,10863,He stares blankly at the table. The child,He stares blankly at the table.,The child,gold,bites on the towel and puts it back as someone pours from his glasses.,\"inches away, just as dumbly to crack her crack.\",\"takes the camera from someone, as well as picking up a second identical one from the table.\",\"comes to him, and people head into the yard.\",2\n1863,lsmdc0049_Hannah_and_her_sisters-69490,10865,\"The adopted children leave, the twins going off with them. When they are gone, someone\",\"The adopted children leave, the twins going off with them.\",\"When they are gone, someone\",gold,\"has a skeletal hand stretched out at his side, one of the children from his fingertips.\",takes a sip of her coffee and looks at someone.,lifts a boy from the opposite end of the ring.,stops the knife paper and eyes it to the slightest brown haired man.,1\n1864,lsmdc0049_Hannah_and_her_sisters-69490,10854,A taxi pulls away from the curb as people walk out of the hotel through its revolving doors. Someone stays under the awning; someone,A taxi pulls away from the curb as people walk out of the hotel through its revolving doors.,Someone stays under the awning; someone,gold,takes off his headphones.,walks to the curb and looks angrily back at her.,opens the gate and stares down at the floor of the hall.,\"is on his back, turning his back around an ornate rotors.\",1\n1865,lsmdc0049_Hannah_and_her_sisters-69490,10846,\"The audience at their tables watch him, some with smiles of pleasure. A man\",\"The audience at their tables watch him, some with smiles of pleasure.\",A man,gold,walks towards him with a finger.,'s festive red hair is shown in a red and axle it is in powdered amount.,in a red hat gives the gymnast a small shake of his head and walks off.,has his arm around a woman.,3\n1866,lsmdc0049_Hannah_and_her_sisters-69490,10856,A taxi pulls up to the curb. People,A taxi pulls up to the curb.,People,gold,are looking behind them.,\"look at him from behind someone the truck, as someone flattens himself against the traffic light.\",peers through hard thumps into a protective glass of cracked cliffs.,walk up to its rear door.,3\n1867,lsmdc0049_Hannah_and_her_sisters-69490,10850,\"Someone lights her cigarette, dropping her matchbook on the floor. She\",\"Someone lights her cigarette, dropping her matchbook on the floor.\",She,gold,runs some fingers along her thighs before dancing.,turns over and thinks.,is covered in the card part of her sloop.,\"bends down to pick it up, then starts to fidget in her chair.\",3\n1868,lsmdc0049_Hannah_and_her_sisters-69490,10866,\"When they are gone, someone takes a sip of her coffee and looks at someone. She\",\"When they are gone, someone takes a sip of her coffee and looks at someone.\",She,gold,leans back in the chair and someone bounces her brow.,enters to his room and begins to touch his face.,\"continues to cross down, listening at the crash.\",\"puts down her cup, still watching him.\",3\n1869,lsmdc0049_Hannah_and_her_sisters-69490,10861,People and the twins sit at the dining room table. Someone's two adopted children stand by her chair; she,People and the twins sit at the dining room table.,Someone's two adopted children stand by her chair; she,gold,don't be much attention.,is entering a magnificent dark room in ames compartment.,glowers and points at the phone.,is showing them how a small camera works.,3\n1870,lsmdc0049_Hannah_and_her_sisters-69490,10857,People walk up to its rear door. He,People walk up to its rear door.,He,gold,holds the door open for someone.,crosses his arms and lets his hands turn slightly as he stares into space.,pulls back hard and kicks someone against the trunk.,\"leans forward, holds the anew scrawled in the gray garment, and picks up a can of candy.\",0\n1871,lsmdc0049_Hannah_and_her_sisters-69490,10853,The film cuts back briefly to someone playing the piano. A taxi,The film cuts back briefly to someone playing the piano.,A taxi,gold,\"reacts to someone as he glances up at someone, consulting outside his grounds.\",slides rapidly down the side of the store.,crosses a downtown area alone in a private room.,pulls away from the curb as people walk out of the hotel through its revolving doors.,3\n1872,lsmdc0049_Hannah_and_her_sisters-69490,10847,A man has his arm around a woman. People sit at one of the tables; a candle,A man has his arm around a woman.,People sit at one of the tables; a candle,gold,is lit with candles on his finger.,blazes in the attendant's jacket.,has poured on the table.,burns in its holder on the tabletop.,3\n1873,lsmdc0049_Hannah_and_her_sisters-69490,10851,She gulps her wine; she sniffs. Someone tries to watch the offscreen someone; he,She gulps her wine; she sniffs.,Someone tries to watch the offscreen someone; he,gold,sings as she watches her.,\"bearded rose - looking man stands, taps her behind, frowns, then looks round at someone.\",watches as she goes.,crosses his arms across his chest.,3\n1874,lsmdc0049_Hannah_and_her_sisters-69490,10862,Someone's two adopted children stand by her chair; she is showing them how a small camera works. The children,Someone's two adopted children stand by her chair; she is showing them how a small camera works.,The children,gold,are enjoying this chuckle process.,drizzles colorful rocks around the table encampment.,\"watch her, fascinated, muttering among themselves.\",mill around the change shops.,2\n1875,lsmdc0049_Hannah_and_her_sisters-69490,10849,\"Someone takes a cigarette from her purse as she holds her hand to her nose, sniffing. Someone keeps shooting glances at someone; she\",\"Someone takes a cigarette from her purse as she holds her hand to her nose, sniffing.\",Someone keeps shooting glances at someone; she,gold,is awake for a moment.,waits as she pulls down a pen.,does n't know what to say.,can't sit still.,3\n1876,lsmdc0049_Hannah_and_her_sisters-69490,10859,\"Someone sips, then puts it back down on the dresser. They\",\"Someone sips, then puts it back down on the dresser.\",They,gold,unlatches his seat belt and creeps towards the bar.,\"embrace tightly, continuing to dance.\",straightens he glances up at someone.,\", someone looks at someone.\",1\n1877,lsmdc0049_Hannah_and_her_sisters-69490,10852,Someone tries to watch the offscreen someone; he crosses his arms across his chest. The film,Someone tries to watch the offscreen someone; he crosses his arms across his chest.,The film,gold,moves to the dressing room and back.,cuts to the professionally chef's home.,cuts back briefly to someone playing the piano.,\"cuts to someone, a partial, pounds of someone seated at the end of a street.\",2\n1878,anetv_JNBWPj42n-g,2379,\"He begins to wrap the box, demonstrating how to properly wrap a present. He\",\"He begins to wrap the box, demonstrating how to properly wrap a present.\",He,gold,empties the ribbon out in a case.,\"ties her wrapping, then clips it and wraps them around.\",tapes the wrapping paper around the box.,\"frowns, then holds up a brush.\",2\n1879,anetv_JNBWPj42n-g,2380,He tapes the wrapping paper around the box. The man,He tapes the wrapping paper around the box.,The man,gold,ties a bow around the box as the camera slows down the motion.,cuts the wrapping paper of the wrapping paper.,puts the box and begins to cut the paper to light the jewelry.,finishes then puts the man on the wall.,0\n1880,anetv_JNBWPj42n-g,2377,A man's hands are shown at a table. He,A man's hands are shown at a table.,He,gold,put the ball down in front of the fence.,goes back and forth between the boy and an others.,places a cardboard box over wrapping paper.,begins brushing his teeth.,2\n1881,anetv_JNBWPj42n-g,2378,He places a cardboard box over wrapping paper. He,He places a cardboard box over wrapping paper.,He,gold,unfastens the pouch and puts its back in the bag.,hangs his folded hand on the railing.,\"begins to wrap the box, demonstrating how to properly wrap a present.\",picks up the intercom and dusts it off.,2\n1882,anetv_JNBWPj42n-g,2381,\"The man ties a bow around the box as the camera slows down the motion. He cuts the excess bow away, and we\",The man ties a bow around the box as the camera slows down the motion.,\"He cuts the excess bow away, and we\",gold,see the ending pad.,see him once again and again again.,see a sticker with a woman's face.,return to his bellies.,2\n1883,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19097,\"Someone watches from her window opposite. In his bedroom, someone\",Someone watches from her window opposite.,\"In his bedroom, someone\",gold,finds his gps.,thumps the wardrobe in anger and frustration.,digs into an armchair and offers a wad.,comes mid - swing.,1\n1884,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19101,\"Someone relives his terror as a flash of green light engulfs someone, who falls lifeless. Someone blank eyes\",\"Someone relives his terror as a flash of green light engulfs someone, who falls lifeless.\",Someone blank eyes,gold,move on someone as someone takes someone's hand.,stare out from his bony snake - like skull.,watch with wide eyes as the film cuts away until its still silhouette is becoming a demonic moving appreciative sheet.,turn up to face.,1\n1885,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19118,\"Oblivious, the people next door continue watching television. The patterned tiles underfoot\",\"Oblivious, the people next door continue watching television.\",The patterned tiles underfoot,gold,are being consumed with flames inside.,put the wax onto the music's foundation.,carried on the floor.,are cracked and dirty.,3\n1886,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19113,They swoop by hms Belfast and head upriver towards Westminster. Someone,They swoop by hms Belfast and head upriver towards Westminster.,Someone,gold,\"hands over someone, who walks away.\",snaps a hammer round.,sees a redhead from the accomplice.,flies close besides someone.,3\n1887,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19110,Someone recognizes one of them. Someone,Someone recognizes one of them.,Someone,gold,leads them all outside.,wears a tight wire with a torch on.,takes the knife from his hand stuffed in a large package.,stands but someone pulls in front of him.,0\n1888,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19108,\"With a dazzling flash, the door flies open. Lit by a wand, five people\",\"With a dazzling flash, the door flies open.\",\"Lit by a wand, five people\",gold,stand in the doorway.,appear and twirl on someone's motionless fingers.,appear in the same room almost at cup.,are dragging across the valley.,0\n1889,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19112,Following the line of the River Thames as it winds through the city. They,Following the line of the River Thames as it winds through the city.,They,gold,push the jagged snow out of the back of a car.,\"fly low, cloaks flying, like a flight of huge bats skimming the surface of the shimmering water.\",run up a steep barrier and land on a carpet before spinning away.,clamber the rocks of the chunky vacuuming to ever the bucket and carrying the motorcycle.,1\n1890,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19116,A refuse lorry passes a garden in the middle of the London square. Someone,A refuse lorry passes a garden in the middle of the London square.,Someone,gold,\"avoids a satisfied glance, as someone moves towards the sight of still village horseman lying beside him.\",opens a gate and his escort emerges from the woods.,leads them from the garden into the street.,is down a grassy hill on a many stone and other mourners.,2\n1891,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19102,Someone blank eyes stare out from his bony snake - like skull. He,Someone blank eyes stare out from his bony snake - like skull.,He,gold,stares at someone for a moment then stops beside the couple.,lies as if in a trance.,\"shakes his head, then shakes his head sadly as someone sprinkles it into dry boy's mouth.\",rests his right arm on someone's shoulder and pulls someone onto his shoulders.,1\n1892,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19098,\"In his bedroom, someone thumps the wardrobe in anger and frustration. A photograph standing beside his owl's cage\",\"In his bedroom, someone thumps the wardrobe in anger and frustration.\",A photograph standing beside his owl's cage,gold,\"reads, posters pull duct cuts.\",\"reads, absently above his manuscript.\",sits on the steps.,falls onto the carpet.,3\n1893,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19121,\"Through the open door, someone spots people. She\",\"Through the open door, someone spots people.\",She,gold,turns and runs to him.,limps around the garden and spots someone entering the dining area.,speeds up as she crashes through their apartment.,comes out closing the door.,3\n1894,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19111,Someone watches as they soar away high above Privet Drive. The twinkling lights of central London,Someone watches as they soar away high above Privet Drive.,The twinkling lights of central London,gold,stretch to drive on.,fly through the trees as the slim dark - haired man gazes out at the conductor as she goes past him.,are spread out below.,walk across the them.,2\n1895,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19109,\"Lit by a wand, five people stand in the doorway. Someone\",\"Lit by a wand, five people stand in the doorway.\",Someone,gold,studies his sword as he sits alone on the wooden veranda.,recognizes one of them.,\"walk behind him, a hallway behind them.\",someone lies in one of him doors.,1\n1896,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19100,Someone places it carefully on his bedside table beside a half - eaten plate of food. Someone's face,Someone places it carefully on his bedside table beside a half - eaten plate of food.,Someone's face,gold,is bleeding and bandages.,appears with a hard surface.,transforms into the bottle as a penguin appears in front of him.,looms out of the darkness sweating with fear.,3\n1897,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19105,He looks towards the door. The key,He looks towards the door.,The key,gold,\"goes from close to someone, trying to pay the attention in the way for what he sees them.\",is just being open.,seems like 101 - operated.,is slowly turning in the lock.,3\n1898,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19107,The key continues to turn. The key,The key continues to turn.,The key,gold,falls to the floor.,falls from the latch and opens it again.,is pressed up against his neck.,\"is the key, started to lock.\",0\n1899,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19106,The key is slowly turning in the lock. Someone,The key is slowly turning in the lock.,Someone,gold,points to his wrist and soberly.,\"sits on the bed, eyeing her.\",grabs his wand and sits up.,seems focused by the sight of someone sticking up again and striding out.,2\n1900,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19120,Someone turns and winks at someone. She,Someone turns and winks at someone.,She,gold,\"looks on, as someone awakes.\",looks at someone questioningly.,accepts the next cards.,trips over an umbrella stand.,3\n1901,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19119,The others follow him towards an open door at the end of the gloomy passage. Someone,The others follow him towards an open door at the end of the gloomy passage.,Someone,gold,turns and winks at someone.,\"reels, his father and son stare down below.\",levitates down onto a tv ship.,\"leans down against the door, looks on and on.\",0\n1902,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19104,\"Still fully dressed, someone reaches for his glasses and puts them on. He\",\"Still fully dressed, someone reaches for his glasses and puts them on.\",He,gold,looks towards the door.,\"caps to the vine and flops onto the bed, her feet on the floor of her closet.\",looks to his father.,slaps him off then gives a dispirited glance.,0\n1903,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19103,\"He turns his head as he hears a scraping sound. Still fully dressed, someone\",He turns his head as he hears a scraping sound.,\"Still fully dressed, someone\",gold,\"bends down, he pushes someone's hand.\",turns on the rear tv and turns off the tv.,reaches for his glasses and puts them on.,smiles back at someone.,2\n1904,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19099,He sits on his bed and looks at his parents dancing together in the moving photograph. Someone,He sits on his bed and looks at his parents dancing together in the moving photograph.,Someone,gold,lies on his bed.,places it carefully on his bedside table beside a half - eaten plate of food.,lays again on his bed.,points up a set of hash.,1\n1905,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19096,\"Under cover of darkness, the Dursleys smuggle someone into the car with a blanket over his head. Someone\",\"Under cover of darkness, the Dursleys smuggle someone into the car with a blanket over his head.\",Someone,gold,\"opens the window to find someone, who rejoins her son from the bus in the classroom.\",watches from her window opposite.,obeys and drops into a sand pit.,headlamps from its head smoothly.,1\n1906,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19114,Someone flies close besides someone. Someone,Someone flies close besides someone.,Someone,gold,rolls over the bed and grazes his nose.,strides up to someone.,hangs up the phone and is back in his wheelchair.,steers to the right of it.,3\n1907,lsmdc3049_MORNING_GLORY-23396,5944,They change the name on someone's dressing room. They,They change the name on someone's dressing room.,They,gold,go through it to find it ajar.,\"are busy playing a song, as they struggle.\",come out into a living room.,walk through the office.,3\n1908,lsmdc3049_MORNING_GLORY-23396,5952,\"Someone marches from one end of the corridor to the other, then finds the central point. Someone and someone\",\"Someone marches from one end of the corridor to the other, then finds the central point.\",Someone and someone,gold,take off their headsets.,share a cool - eyed look.,meet in the middle.,rush into the bathroom.,2\n1909,lsmdc3049_MORNING_GLORY-23396,5948,Someone takes the orchid to someone's dressing room and knocks. Someone,Someone takes the orchid to someone's dressing room and knocks.,Someone,gold,is removing our head from someone brush.,accelerates through the traffic.,glances nervously to the safe.,sets down the flower.,3\n1910,lsmdc3049_MORNING_GLORY-23396,5953,Someone and someone meet in the middle. Someone,Someone and someone meet in the middle.,Someone,gold,stares at her blankly.,\"turns up, and the family members share a wink and hug to fight as one of them hangs up.\",\"slouches, then approaches.\",looks at the back of the high school.,0\n1911,lsmdc3049_MORNING_GLORY-23396,5950,Someone tosses a card aside. Someone,Someone tosses a card aside.,Someone,gold,takes off her shoes.,tour new apartment harbor where someone high wearing a victorian suit.,goes from one dressing room to the other.,looks closely along someone's wrist.,2\n1912,lsmdc3049_MORNING_GLORY-23396,5946,He hands her an orchid. He,He hands her an orchid.,He,gold,offers someone a pen.,eyes the empty man's hand.,picks up a newspaper and sits down.,meets the weakened boy's hair.,2\n1913,lsmdc3049_MORNING_GLORY-23396,5951,Someone goes from one dressing room to the other. Someone,Someone goes from one dressing room to the other.,Someone,gold,grab the ball from the table and continue to go around.,\"leans back from the bed, touching her.\",\"marches from one end of the corridor to the other, then finds the central point.\",speaks as a young girl with pink hair and large glasses watches as they look into each other piling the dance.,2\n1914,lsmdc3049_MORNING_GLORY-23396,5947,He picks up a newspaper and sits down. Someone,He picks up a newspaper and sits down.,Someone,gold,\"looks to a little jinx and stares at the piano, then stops, turns around and begins smoking.\",takes the orchid to someone's dressing room and knocks.,keeps pacing on the couch.,finishes someone 'gray wings.,1\n1915,anetv_ayDqRzRN8_M,632,The curls are taken out of the woman's hair after the makeover. The news anchors,The curls are taken out of the woman's hair after the makeover.,The news anchors,gold,appear excited for the marketing.,begins speaking as a woman points to the seashell then at the pin looking out over her hands.,close out the story.,have several hair pin pictures with a picture in a complete newsroom.,2\n1916,anetv_ayDqRzRN8_M,628,News hosts present a story seated at a desk in a news room. A news reporter,News hosts present a story seated at a desk in a news room.,A news reporter,gold,is talking to makeup young reporter at a news conference.,\"reading the news, records shown on screen with scenes of casino dealing.\",interviews a man on an ice skating rink.,explains the instrument and demonstrates how to properly perform a set on a large doing scuba gear.,2\n1917,anetv_ayDqRzRN8_M,629,A news reporter interviews a man on an ice skating rink. An athlete,A news reporter interviews a man on an ice skating rink.,An athlete,gold,does the same to each other.,glides a stone across the ice.,talks in the stadium at night.,stands with the receive flag.,1\n1918,anetv_ayDqRzRN8_M,630,An athlete glides a stone across the ice. The reporter and the man,An athlete glides a stone across the ice.,The reporter and the man,gold,practice brushing the ice with brooms.,meet engaging in a lacrosse court.,sit on the jumping table.,raise their grips from the position.,0\n1919,anetv_ayDqRzRN8_M,631,The reporter and the man practice brushing the ice with brooms. A woman,The reporter and the man practice brushing the ice with brooms.,A woman,gold,is talking off handing a sunscreen.,\"wash the top of a snow horse, talking.\",sits in a salon and has her hair curled.,is talking to the camera on people high someone.,2\n1920,anetv_CgWVpLVd16o,19949,He sits up there for a few before finally letting himself go down the slide. He is sitting on a skate board and he is holding it so he does n't move but once he lets go he,He sits up there for a few before finally letting himself go down the slide.,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he,gold,\"walks on, he is standing against the wall.\",builds up a lot of speed.,spins around on the dirt and runs away.,slides down it that he is going to be ready for a drink.,1\n1921,anetv_CgWVpLVd16o,19948,A older boy is at the park on the top of a slide just sitting and waiting. He,A older boy is at the park on the top of a slide just sitting and waiting.,He,gold,is leaning and eating a little toy.,continues to play the set of monkey bars while he is just going to go on the monkey bars.,is cut how to victor your jump.,sits up there for a few before finally letting himself go down the slide.,3\n1922,anetv_CgWVpLVd16o,19950,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he builds up a lot of speed. Once he does he,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he builds up a lot of speed.,Once he does he,gold,goes down fast and hurts his butt a little when he lands.,flips on the water and runs away from the end of the parking lot where a few springs speed up.,is successful but enough to glide down a piece of rope as he goes back and comes back.,puts his feet in the air and suddenly reappears at the end with his gesture.,0\n1923,anetv_CgWVpLVd16o,12684,The man then rolls down the slide on his skateboard and when he reaches the end he flies off of the skateboard and fells very hard onto the ground. A little boy,The man then rolls down the slide on his skateboard and when he reaches the end he flies off of the skateboard and fells very hard onto the ground.,A little boy,gold,is running down and doing flips on the ski while swinging the rope.,watches the hatchback happily.,\"is then modest stops in front of him that a girl jumps, but instead he runs.\",runs in and grabs the skateboard and walks away with it while the young man is still writhing in pain.,3\n1924,anetv_CgWVpLVd16o,12683,A young man is sitting on a skateboard on the left side of a blue double sided children's slide. The man then rolls down the slide on his skateboard and when he reaches the end he,A young man is sitting on a skateboard on the left side of a blue double sided children's slide.,The man then rolls down the slide on his skateboard and when he reaches the end he,gold,is sighing and zooms off.,jumps on a slope while still swinging.,flies off of the skateboard and fells very hard onto the ground.,'s take his stunt down.,2\n1925,anetv_f-uRpjoKGLQ,16071,Two people are seen riding along on skis while speaking to one another and leads into them riding down a snowy hill. The people continuously,Two people are seen riding along on skis while speaking to one another and leads into them riding down a snowy hill.,The people continuously,gold,go down the mountain while laughing to one another while riding around.,push themselves quickly down a hill moving past several people and ending by stopping at the end.,ride around while others watch on the side as people pass by in the background.,ride near the tubes in the river while they ride around and trip up to the camera.,1\n1926,lsmdc3018_CINDERELLA_MAN-7865,1370,\"As the boxer walks out, the chuckling reporter puffs a cigarette. Now, someone and someone\",\"As the boxer walks out, the chuckling reporter puffs a cigarette.\",\"Now, someone and someone\",gold,rush outside in slow snow.,wear music as someone chats with her friends.,walk side by side down a hallway leading to the arena.,pull out the sheet to their feet.,2\n1927,anetv_ZKo3_ifK2tQ,10368,A toy bear wearing red and white overalls pours a cup of coffee into a yellow coffee cup. The camera man,A toy bear wearing red and white overalls pours a cup of coffee into a yellow coffee cup.,The camera man,gold,\"demonstrates how to paint an office window at an abstract point, and peers in a fenced area.\",zooms in on the toy bear from a side view to a front view.,\"pours a liquid in the top of a cup, and then a straw.\",holds a ball in a sling then he puts it into the trash.,1\n1928,anetv_ZKo3_ifK2tQ,10369,The camera man zooms in on the toy bear from a side view to a front view. The camera man,The camera man zooms in on the toy bear from a side view to a front view.,The camera man,gold,lowers the high car window towards the side.,focuses on an old woman painting her fingernails.,paints price tags while balancing by a skateboarder.,pans out and moves to a side view of the toy bear and zooms out.,3\n1929,anetv_mglEC2-MH14,2620,It is now the next day and she has on a face full of make up and starts to take the rollers out of her head. All of the girls are fluffed out by her hand and she,It is now the next day and she has on a face full of make up and starts to take the rollers out of her head.,All of the girls are fluffed out by her hand and she,gold,puts it back on the hair dryer to blow it while putting it into her hair.,takes a can of spray and runs it through her head once more.,is doing off parts then good enough to keep her feet going as they go water.,is surprised by the process.,1\n1930,anetv_mglEC2-MH14,2618,\"A set of rollers are shown and a bottle of mousse, the lady then applies some to her hand and starts to roll her hair. The process is finished, and she\",\"A set of rollers are shown and a bottle of mousse, the lady then applies some to her hand and starts to roll her hair.\",\"The process is finished, and she\",gold,begins talking about what she just did.,speaks to the camera and is seen taking a painting attached to the edges.,shows the video to the girls and tips the hedge thoroughly.,finishes again and puts it back on the display table to talk about it.,0\n1931,anetv_mglEC2-MH14,19070,She puts her hair up in pink rollers. She then,She puts her hair up in pink rollers.,She then,gold,adds the napkin to her hair and then put her face out for the camera.,takes them down and styles her hair.,brushes her bangs at the end of her braid.,takes a thumbs up and hands back the braid.,1\n1932,anetv_mglEC2-MH14,2617,\"A young lady is sitting in a chair running her fingers through her long black curly hair. A set of rollers are shown and a bottle of mousse, the lady\",A young lady is sitting in a chair running her fingers through her long black curly hair.,\"A set of rollers are shown and a bottle of mousse, the lady\",gold,then applies some to her hand and starts to roll her hair.,\"spray and talked, and then for the girl smiling.\",stepping at one ends of the hair and then is on her legs.,'s operate back on her head.,0\n1933,anetv_mglEC2-MH14,19069,\"A woman is seated in front of the camera, talking. She\",\"A woman is seated in front of the camera, talking.\",She,gold,\"is talking about a dimly - room wash outdoors, as well as a woman shaving the floor.\",holds two long rings and puts the glass down.,walks over to a pile of kindling that has red flowers on top.,puts her hair up in pink rollers.,3\n1934,anetv_R0dqEWnDC7k,16576,The batsmen is batting while the bowler is doing an overhand throw. The next scene,The batsmen is batting while the bowler is doing an overhand throw.,The next scene,gold,is the coach 2 hours.,shows a team of cricketers wearing white uniforms getting ready to play as they gather in a circle with their captain.,plays with the increase state of the jumps.,is loaded with gore.,1\n1935,anetv_R0dqEWnDC7k,16575,The video shows two countries represented by blue and green uniforms playing the game of cricket professionally. The batsmen,The video shows two countries represented by blue and green uniforms playing the game of cricket professionally.,The batsmen,gold,is batting while the bowler is doing an overhand throw.,\"continues a tug of sundae, talking over the camera.\",has a knock over the player's head.,continue hitting the ball with the ball attempting to show it off again.,0\n1936,lsmdc1041_This_is_40-9216,3230,A fat woman approaches with someone. Someone,A fat woman approaches with someone.,Someone,gold,stands a dozen feet away.,\"turns onto the terrace and jumps from the wall a few feet down, then falls backwards onto the covers, clutching his neck.\",guides a row of passengers from the second rope.,watches as she sits bicycles with her cat.,0\n1937,anetv_6DXH6kwMe-Q,12107,A woman uses a canvas to paint the images in various colors. She,A woman uses a canvas to paint the images in various colors.,She,gold,stands at a desk and looks at the camera with her book.,lifts up hair supplies and flips.,\"perfectly creates a painting of the evening sky, complete with trees.\",shows off the woman's nails on the finished cloths with a woman.,2\n1938,anetv_6DXH6kwMe-Q,18074,There are two still pictures that appear with bold white letters on the screen. A woman then prepares the oil paints then she,There are two still pictures that appear with bold white letters on the screen.,A woman then prepares the oil paints then she,gold,paints a picture on canvas with a paint brush.,shows the prep for the paper painting.,cleans a different product then demonstrates how to use it inside.,talks into the screen.,0\n1939,anetv_6DXH6kwMe-Q,12106,A view of islands and the evening sky are shown. A woman,A view of islands and the evening sky are shown.,A woman,gold,gives a instruction of the children getting a tattoo.,is showing sand flying in the sky while spinning five kites.,uses a canvas to paint the images in various colors.,is hit and flips and misses.,2\n1940,anetv_6DXH6kwMe-Q,18075,A woman then prepares the oil paints then she paints a picture on canvas with a paint brush. The camera then,A woman then prepares the oil paints then she paints a picture on canvas with a paint brush.,The camera then,gold,pans to him painting from outside.,zooms out of the sunset painting of hills and a small island during sunset.,shows a smiling painting and then looking at the camera.,paints on the wall while laying on the painting.,1\n1941,anetv_6DXH6kwMe-Q,18073,Two screens appear with black background and white text showing the title of the video and what the video is about and a website address. There,Two screens appear with black background and white text showing the title of the video and what the video is about and a website address.,There,gold,\"then gives the website and the names, and the cut sign is badge, which is homemade.\",are two still pictures that appear with bold white letters on the screen.,and the man in the white shirt is talking to the camera.,is shown in a pumpkin.,1\n1942,anetv_6DXH6kwMe-Q,18076,The camera then zooms out of the sunset painting of hills and a small island during sunset. A black screen,The camera then zooms out of the sunset painting of hills and a small island during sunset.,A black screen,gold,\"appears on the black background, then a map of the ocean is shown as men are on a roof and playing together.\",\"appears with the people talking while leading to the front, and a car is on the street.\",appears with the woman's website in white letters and then fades to black.,appears with black writing on it before it is shown.,2\n1943,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26139,16586,\"He reaches a crowded video game arcade and pauses, gazing about. He\",\"He reaches a crowded video game arcade and pauses, gazing about.\",He,gold,\"hobbles to another car, and walks onto the porch.\",\"stops at a pinball machine played by a thin young man with long, corn silk hair.\",\"pauses after sewing, and someone hurries outside with her bag's slippers.\",\"follows, as he get out of the cab and drive back toward his house.\",1\n1944,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26139,16585,As he moves through the casino a waitress intercepts him. He,As he moves through the casino a waitress intercepts him.,He,gold,\"reaches a crowded video game arcade and pauses, gazing about.\",returns his attention to the scrapbook of moves.,\"flashes it to his head, but someone continues to react to disappointed someone.\",\"glances over someone's shoulder, unbuttons his shirt then walks over.\",0\n1945,lsmdc3074_THE_ROOMMATE-4313,15667,Someone glances back and sees the person walking away. Now someone,Someone glances back and sees the person walking away.,Now someone,gold,heads downstairs down an escalator.,enters the frat house and shuts the door.,walks through the woods followed by the mailbag.,\"clutches his bruised, unshaven leg.\",1\n1946,lsmdc3074_THE_ROOMMATE-4313,15665,\"She averts her gaze as they pass each other. As someone continues on, the hooded figure\",She averts her gaze as they pass each other.,\"As someone continues on, the hooded figure\",gold,lies out steps behind him.,stops and watches her go.,stops in front of someone.,assembles his surroundings.,1\n1947,lsmdc3074_THE_ROOMMATE-4313,15661,\"Halfway down, she halts and scans the entire area before continuing on. Someone\",\"Halfway down, she halts and scans the entire area before continuing on.\",Someone,gold,moves her gaze downward.,walks out of her room as someone enters.,steps out of the coffee shop.,spots someone being led by the alien.,2\n1948,lsmdc3074_THE_ROOMMATE-4313,15659,Now we drift high over the intersecting pathways on the quad. Someone,Now we drift high over the intersecting pathways on the quad.,Someone,gold,raises her arms and leads her away by the older black civilian.,wearily draws a squirming chested dead bodies and faces him.,heaves himself into a jog.,nervously glances about as she walks alone down a set of steps.,3\n1949,lsmdc3074_THE_ROOMMATE-4313,15662,Someone steps out of the coffee shop. She,Someone steps out of the coffee shop.,She,gold,\"scoots a candy on its table, then rifles through a billboard of snapshots.\",walks home alone on the dark deserted street.,looks all the way to the diner.,stares at a piece of gift paper on a counter.,1\n1950,lsmdc3074_THE_ROOMMATE-4313,15660,\"Someone nervously glances about as she walks alone down a set of steps. Halfway down, she\",Someone nervously glances about as she walks alone down a set of steps.,\"Halfway down, she\",gold,\"takes a few relaxing step, then turns and walks away.\",halts and scans the entire area before continuing on.,peers through the hanging trees of her general's but silently merge into us.,leans back against a wall and leans against a pillar behind a doorway.,1\n1951,lsmdc3074_THE_ROOMMATE-4313,15663,She walks home alone on the dark deserted street. She,She walks home alone on the dark deserted street.,She,gold,notices someone walking in her direction.,looks down from the litter on someone.,walks out of the room as a thin flowing feather approaches.,picks it up and finds someone smiling at her.,0\n1952,lsmdc3074_THE_ROOMMATE-4313,15668,Now someone enters the frat house and shuts the door. She,Now someone enters the frat house and shuts the door.,She,gold,\"stands against the grate, glancing in at him.\",finds a group of frat guys playing video games and allows a smile.,drops out a long coffee filter.,picks on a pillow and picks up the manuscript in the apartment.,1\n1953,lsmdc3074_THE_ROOMMATE-4313,15666,\"As someone continues on, the hooded figure stops and watches her go. Someone\",\"As someone continues on, the hooded figure stops and watches her go.\",Someone,gold,turns as someone brushes her hands from her wide black skirt.,lingers in pain and reappears beside her.,remains in his room.,glances back and sees the person walking away.,3\n1954,lsmdc3074_THE_ROOMMATE-4313,15669,\"Outside the dorm building, a guy holds a cellphone to his ear. Two students step outside, and someone\",\"Outside the dorm building, a guy holds a cellphone to his ear.\",\"Two students step outside, and someone\",gold,\"slaps him a few times, then starts down the steps.\",hurries over to catch the open door before it shuts.,shifts his gaze as someone walks away.,gives someone a look.,1\n1955,lsmdc3074_THE_ROOMMATE-4313,15657,\"She finds an unfinished drawing of herself. Flipping through the subsequent pages, she\",She finds an unfinished drawing of herself.,\"Flipping through the subsequent pages, she\",gold,glances thoughtfully at the turkish agent who lies on her next to him.,finds a birthday.,notices the butterfly spread evenly on her lips.,\"finds more and more portraits, each more detailed than the last.\",3\n1956,lsmdc3074_THE_ROOMMATE-4313,15656,She finds someone's brown spiral notebook inside. She,She finds someone's brown spiral notebook inside.,She,gold,\"starts to have a good time, but gets up.\",shows up her blonde hair.,picks up a tequila bottle.,finds an unfinished drawing of herself.,3\n1957,lsmdc3074_THE_ROOMMATE-4313,15664,She notices someone walking in her direction. She,She notices someone walking in her direction.,She,gold,averts her gaze as they pass each other.,sinks to her knees and grimaces.,holds out his hand and stroking it.,bib up a cigarette and covers some of the photos of her magazines.,0\n1958,lsmdc3074_THE_ROOMMATE-4313,15658,\"Flipping through the subsequent pages, she finds more and more portraits, each more detailed than the last. Now we\",\"Flipping through the subsequent pages, she finds more and more portraits, each more detailed than the last.\",Now we,gold,drift high over the intersecting pathways on the quad.,\"drive through a park in the sun's house, opening clouds across the sky.\",get to the top of a teeming day.,allow photos and see that she has reached the surface.,0\n1959,lsmdc3074_THE_ROOMMATE-4313,15670,\"Two students step outside, and someone hurries over to catch the open door before it shuts. In someone's room, someone\",\"Two students step outside, and someone hurries over to catch the open door before it shuts.\",\"In someone's room, someone\",gold,runs out some stairs.,looks up from her books.,follows someone to the door.,slides the doors open.,1\n1960,anetv_IoiDAHNryTk,18042,A girl is seen climbing across a set of monkey bars followed by her waving to the camera. She,A girl is seen climbing across a set of monkey bars followed by her waving to the camera.,She,gold,is seen handing out parts as she climbs at the end of a slide.,leaps all times and jumps in a large pool and eventually lands on the horse.,pans down out at the end and showing one man talking into the camera.,climbs her way back on the bars and jumps down mid way through.,3\n1961,anetv_PlAVnu-ueM4,11621,\"Ms Smith is giving an interview talking about weight lifting, she speaks about how she started around 12. The coach briefly\",\"Ms Smith is giving an interview talking about weight lifting, she speaks about how she started around 12.\",The coach briefly,gold,assist her with different facial sports and begins lifting and incorporates by again.,talks about what she needs to do with the strap of her hand.,is highly skilled and measure to first correct stance.,speaks about how gives them rest before every competition.,3\n1962,anetv_PlAVnu-ueM4,11623,\"She lifts the weight way above her head and drops it wearing her uniform. Everyone claps for her, and then you\",She lifts the weight way above her head and drops it wearing her uniform.,\"Everyone claps for her, and then you\",gold,hear from her and the coach again before the interview is over.,let it drop and exaggerated walks backwards in line across the stage.,don't seem to notice her.,reach the clap of the teams.,0\n1963,anetv_H2l7GraYFhI,18898,A band plays on a stage. A man in a suit,A band plays on a stage.,A man in a suit,gold,plays the saxophone up front wearing sunglasses.,plays on the screen.,plays a tam - tam on stage.,pretends to watch through the black screen.,0\n1964,anetv_u3uYs6SZFKo,13794,The little boy talks and a girl starts pushing the boy on the swing. We,The little boy talks and a girl starts pushing the boy on the swing.,We,gold,see the girl swinging and a girl pushing the boy on the swing.,repeat the jump once again.,stops to wave goodbye when the woman rises and follows his husband.,see the dogs performing tricks and the small child watches it.,0\n1965,anetv_u3uYs6SZFKo,13793,Two kids walk to and sit in swings. The little boy talks and a girl,Two kids walk to and sit in swings.,The little boy talks and a girl,gold,makes multiple flips over the yard on the girl's shoulders.,starts to swing on a inflatable.,starts pushing the boy on the swing.,holds a rake on his shoulder.,2\n1966,anetv_u3uYs6SZFKo,10846,Two kids are talking at the playground. The two kids,Two kids are talking at the playground.,The two kids,gold,begin climbing down a slide.,trot around the monkey.,begin to blow up.,walked to the swing and sat.,3\n1967,anetv_sz0GhFkkXYI,7550,A man leans forward as a baby in a swing tries to grab and chew on his hair. The baby,A man leans forward as a baby in a swing tries to grab and chew on his hair.,The baby,gold,strains to swing in and then bounce back resolutely forward and lands on the pinata in front of him.,throws it to the man while a guest is facing speaking to the camera.,performs first again with the baby's head.,\"laughs, swinging back and forth, then tries to grab the camera.\",3\n1968,anetv_gaILpaBa7M8,6592,\"A electric machine is attached to the end of a ping pong table and is moving with the motion senses of a person's hand. After, several balls\",A electric machine is attached to the end of a ping pong table and is moving with the motion senses of a person's hand.,\"After, several balls\",gold,are shown being played play against each other.,are scored while they sit with the man still wearing his shirt and shorts.,are then thrown towards the paddle and returned by the machine.,\"are featured, after the man puts his hand on gort and is shown to the camera.\",2\n1969,anetv_Q5qIsUsM_-A,14938,A young man solves a rubix cube quickly in a digitally timed session. A man in a yellow shirt with a graphic of a man's face on it,A young man solves a rubix cube quickly in a digitally timed session.,A man in a yellow shirt with a graphic of a man's face on it,gold,talks to the camera and holds up an unsolved rubix cube.,has fades to black.,gets up and takes two minutes.,is shown with the same two men pinning the old boy to the fence.,0\n1970,anetv_Q5qIsUsM_-A,14939,A man in a yellow shirt with a graphic of a man's face on it talks to the camera and holds up an unsolved rubix cube. A black digital timer,A man in a yellow shirt with a graphic of a man's face on it talks to the camera and holds up an unsolved rubix cube.,A black digital timer,gold,shows a scuff mark along with a red and artistic orange cube hopscotch down on the parallel bar.,is on the nightstand with a long seconds in it.,goes on a square screen while the man tries to solve the puzzle.,appears on the screen in the lower right hand corner and begins to run time.,3\n1971,anetv_2tf414bkudE,9037,The person is shaving using a knife. The person,The person is shaving using a knife.,The person,gold,easily cuts a piece of newspaper paper.,rubs shaving cream on the dog's head.,uses a tool with the shaver.,peels a small towel from the boot.,0\n1972,anetv_2tf414bkudE,9034,The person sharpens the knife. The person,The person sharpens the knife.,The person,gold,demonstrates the bottom hand.,continues cutting the grass.,runs the knife through a piece of white paper.,sharpens the knife slices.,2\n1973,anetv_2tf414bkudE,12297,A man touches a knife on a table. He,A man touches a knife on a table.,He,gold,cleans one of his arms with a sharpening iron.,picks up a sharpener and sharpens the blade of the knife on the sharpener.,blows out the candles in the garden.,takes a drill from him.,1\n1974,anetv_8jyqeivzs2M,18332,The pasta is pour in the pot with the sauce and cheese. when ready the pasta,The pasta is pour in the pot with the sauce and cheese.,when ready the pasta,gold,is serve in a white plate.,is cooked with several onion possession and the syrup is added into it.,is cooked in the salad.,\"is placed and spaghetti is placed in the pan, bag is put in a pot.\",0\n1975,anetv_8jyqeivzs2M,3456,A close up of a pot is seen followed by a person mixing various ingredients into the pot. The person,A close up of a pot is seen followed by a person mixing various ingredients into the pot.,The person,gold,tapes the pan and continues adding eggs to the pan and pours it back into the pan.,blends the ingredients into the bowl and places the pasta together along a plate and stirs it in.,continues mixing around ingredients while the water boils as well as pouring in noodles.,adds liquids into a can and puts a plastic plate to the top.,2\n1976,anetv_8jyqeivzs2M,18331,Green paste is in a pot and is mixed with milk. the pasta,Green paste is in a pot and is mixed with milk.,the pasta,gold,is pour in the pot with the sauce and cheese.,is mixed in the mixture and poured into a martini glass.,is added to the tray as well.,is placed on the rack next to a drying rack.,0\n1977,anetv_8jyqeivzs2M,3457,The person continues mixing around ingredients while the water boils as well as pouring in noodles. The man,The person continues mixing around ingredients while the water boils as well as pouring in noodles.,The man,gold,stirs around the noodles and shows a close up of the plate served.,goes back while the camera watches on the stove as well as pointing all around the fruit.,continues mixing ingredients together and looking to the camera while the camera pans down the end.,proceeds to mixing the ingredients together using the cutter and leaves and showing out of the drink.,0\n1978,anetv_ti3EHJLR2mU,10020,She then strains the pasta out in a bowl by throwing out the excess water. Then she,She then strains the pasta out in a bowl by throwing out the excess water.,Then she,gold,puts the ingredients into a mixer and puts them on a plate.,puts the baking product in his oven.,takes a stick of butter and cuts it and adds to a saucepan.,adds the mixture and pours more oil into the oil.,2\n1979,anetv_ti3EHJLR2mU,10025,She serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it. She,She serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it.,She,gold,\"is again mixing the sauce, showing with her bag.\",walks the class in her and says what she wants.,takes his plate into a pitcher of chocolate.,is happy with the way it turned out.,3\n1980,anetv_ti3EHJLR2mU,10024,She continues stirring the pasta in the saucepan. She,She continues stirring the pasta in the saucepan.,She,gold,\"walks away, sets the stereo down on the stove and continues talking to some proper knitting.\",\"sits with someone now patiently, making pasta sauce.\",repeats the specifics of the peel.,serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it.,3\n1981,anetv_ti3EHJLR2mU,10022,Then she adds some milk and cheese to it and stirs it in with the cooked pasta. She,Then she adds some milk and cheese to it and stirs it in with the cooked pasta.,She,gold,adds some more milk and cheese to the pasta to make the sauce.,starts to peel the potatoes and sprinkles it on.,ends with a little group of images.,demonstrates how to cook ice cream and puts the pan together.,0\n1982,anetv_ti3EHJLR2mU,10023,She adds some more milk and cheese to the pasta to make the sauce. She,She adds some more milk and cheese to the pasta to make the sauce.,She,gold,is then washed and rinsed and arranges next to the oven.,\"pours the ounce of mortar into her small cup, then shakes the liquid from the pan.\",reads the cut on the end and puts the pan in a sugar sitting spot.,continues stirring the pasta in the saucepan.,3\n1983,anetv_ti3EHJLR2mU,10018,The video is a tutorial on how to make Alfredo sauce pasta. A lady with blond hair wearing a maroon tank top,The video is a tutorial on how to make Alfredo sauce pasta.,A lady with blond hair wearing a maroon tank top,gold,is demonstrating how to boil water to make bow - tie pasta.,is holding a shield on her elbow.,is cutting the room with a trimmer.,is getting ready to catch it with a dryer.,0\n1984,anetv_ti3EHJLR2mU,10019,A lady with blond hair wearing a maroon tank top is demonstrating how to boil water to make bow - tie pasta. She then,A lady with blond hair wearing a maroon tank top is demonstrating how to boil water to make bow - tie pasta.,She then,gold,strains the pasta out in a bowl by throwing out the excess water.,takes the large pot of pasta she hardens with the mix.,leads the pair attempts to heroin over cake.,\"puts instructions on the bread, squeezing your lemon cookies onto a nook of apples.\",0\n1985,anetv_ti3EHJLR2mU,10021,Then she takes a stick of butter and cuts it and adds to a saucepan. then she,Then she takes a stick of butter and cuts it and adds to a saucepan.,then she,gold,\"throws the cookies in a plastic pot, then garnishes it and pours some bundt orange liquids into slices.\",rinses the baked pasta and puts the cake on a white tray along with flour in the sink.,adds some milk and cheese to it and stirs it in with the cooked pasta.,\"takes a bite and adds chopsticks, collecting her share.\",2\n1986,anetv_dXONZBWOKHk,8085,A little girl is wearing hair curlers. She,A little girl is wearing hair curlers.,She,gold,starts jumping on a bed.,proceeds to braids up her hair.,goes to play the bagpipes.,puts a braid around her hair.,0\n1987,anetv_dXONZBWOKHk,8086,She starts jumping on a bed. She,She starts jumping on a bed.,She,gold,gets up and begins rings replay from the stairs.,stands in a room with her legs off.,falls over onto a pillow on the bed.,runs backwards out of the snow that are hanging from a wall.,2\n1988,anetv_dXONZBWOKHk,6057,A small child is seen jumping on the bed smiling at the camera. She,A small child is seen jumping on the bed smiling at the camera.,She,gold,walks closer to the sink and shows off the jug while speaking to the camera.,picks up and wipes her face with the paper.,begins to move before climbing into the pool.,jumps down and then back up again.,3\n1989,anetv_dXONZBWOKHk,6058,She jumps down and then back up again. She,She jumps down and then back up again.,She,gold,continues to jump over and over again on the bed.,stops and stares down at her father.,follows her while spinning and spinning around several times.,does red flips and flips across the mat twice.,0\n1990,anetv_L6Uf3epn3zA,5098,Several canoes are sen laid out that leads into shots of people riding in the canoes. A man,Several canoes are sen laid out that leads into shots of people riding in the canoes.,A man,gold,is seen sitting on the back of the camels as well as various riding in kayaks across the water.,is shown sitting on his kayak together while paddling in the water.,is seen speaking to the camera as well as riding in a canoe with another woman.,begins riding down a slide with several rafts down the boat.,2\n1991,anetv_L6Uf3epn3zA,5099,A man is seen speaking to the camera as well as riding in a canoe with another woman. More people,A man is seen speaking to the camera as well as riding in a canoe with another woman.,More people,gold,are then seen riding down a river rafting as well as tricks and stunts on the area.,are seen riding around in the area outside a pit and a one still riding down the hill.,are seen riding waves in the river as well as a jet crashing in the water.,are seen riding down the river in canoes while the man continues to speak.,3\n1992,anetv_yyUmEgvq3B0,4041,A man is seen walking with a chair and puts it in the middle of a bowling lane. He high fives the audience and,A man is seen walking with a chair and puts it in the middle of a bowling lane.,He high fives the audience and,gold,leads into them speaking to the other.,throws the ball over the chair and hits all the pins.,starts jumping through the air and speaking to the field.,pushes several cars in the end.,1\n1993,anetv_yyUmEgvq3B0,4042,He high fives the audience and throws the ball over the chair and hits all the pins. He same shot is shown several times and he,He high fives the audience and throws the ball over the chair and hits all the pins.,He same shot is shown several times and he,gold,sits down in his chair laughing.,ends the chasing throw.,does more wall again.,is then shown in numerous locations.,0\n1994,anetv_43hQNmW-6_k,10477,He talks to the camera about the procedure. He,He talks to the camera about the procedure.,He,gold,\"leans forward, stretching his legs.\",leans on the counter.,moves back and forth to fix the hanging bar.,begins going down the hill and talking to the camera.,0\n1995,anetv_43hQNmW-6_k,10476,A man is doing the splits inside a gym. He,A man is doing the splits inside a gym.,He,gold,talks to the camera about the procedure.,is almost hurling and likes dancing.,wipes his ironed clothes.,is holding a bunch of supplies in his hand.,0\n1996,lsmdc1042_Up_In_The_Air-88754,13833,Someone walks along the hall and lets himself into his apartment. Someone,Someone walks along the hall and lets himself into his apartment.,Someone,gold,turns to see someone leaping up the stairs.,stops for a moment and looks at the sparse white room.,sits down with the stereo awake.,carries the briefcase over to the cash register.,1\n1997,lsmdc1042_Up_In_The_Air-88754,13835,\"He opens the door to a closet and hangs up some shirts. In the bathroom, he\",He opens the door to a closet and hangs up some shirts.,\"In the bathroom, he\",gold,steps out and opens the door for someone.,puts his toothbrush in a glass.,\"adds a piece of clothing in a freezer, and lays down a coat.\",puts a bucket into a trash can and slumps down on the bed.,1\n1998,lsmdc1042_Up_In_The_Air-88754,13822,\"At the reception, people dance together. Guests\",\"At the reception, people dance together.\",Guests,gold,\"is looking at the throng of wringing the poles, then turns to someone's brown - haired woman.\",bring in the hallway filled with guests together.,wave tiny little wedding bells.,walk up to someone.,2\n1999,lsmdc1042_Up_In_The_Air-88754,13843,\"Lost in his thoughts, he hangs his head then shakes it slightly. Someone\",\"Lost in his thoughts, he hangs his head then shakes it slightly.\",Someone,gold,inserts the viewer into someone's eye.,licks his mouth and chews in his breath.,looks up and smiles to himself.,\"takes someone's cigarette in her hand, and rides back toward the boot.\",2\n2000,lsmdc1042_Up_In_The_Air-88754,13845,He taps his thumb on the lectern. He,He taps his thumb on the lectern.,He,gold,walks off past a backstage guy.,picks it up off his hand.,is seen at home invitation on his desk and lying on his bed.,rips free her sunglasses and slaps him.,0\n2001,lsmdc1042_Up_In_The_Air-88754,13841,Computer - generated backpacks revolve on the screens behind him. Someone,Computer - generated backpacks revolve on the screens behind him.,Someone,gold,lets see someone of a man on a ski board as the water increases.,looks out across the room full of seated delegates.,\"good eyes turn towards the car and fires, switching the gun trembling.\",presents the pursed sumo to a box passport and turns.,1\n2002,lsmdc1042_Up_In_The_Air-88754,13839,\"Someone waits in the wings of a packed conference hall. Smartly suited, someone\",Someone waits in the wings of a packed conference hall.,\"Smartly suited, someone\",gold,makes the remaining vending on the floor.,introduces someone through a magazine ad on a cluttered table.,puts his backpack on a table and steps up to a lectern.,opens a suitcase and takes a seat.,2\n2003,lsmdc1042_Up_In_The_Air-88754,13815,\"She ushers someone into the room, where someone sits being consoled by the other bridesmaids. Someone\",\"She ushers someone into the room, where someone sits being consoled by the other bridesmaids.\",Someone,gold,struggles on his desk and signs drawings of someone.,watches in horror as she reflects and photographs several people on the ground.,finds the plate of a comic book.,\"walks over to someone, kneels down and takes her hands in his.\",3\n2004,lsmdc1042_Up_In_The_Air-88754,13834,Someone stops for a moment and looks at the sparse white room. He,Someone stops for a moment and looks at the sparse white room.,He,gold,reaches out his hand for his money.,opens the door to a closet and hangs up some shirts.,runs over to someone.,\"tips it, but carries it through the window, and goes in the kitchen.\",1\n2005,lsmdc1042_Up_In_The_Air-88754,13825,He pulls a goofy face and falls back into her arms. They,He pulls a goofy face and falls back into her arms.,They,gold,play pat - a - cake.,sit up the sidewalk.,jerks out a corner and heads farther out.,struggle to make control.,0\n2006,lsmdc1042_Up_In_The_Air-88754,13831,\"Holding their wheelie cases, they face each other smiling. Someone's smile\",\"Holding their wheelie cases, they face each other smiling.\",Someone's smile,gold,vanishes by the spotlight.,\"fades, for an amber smile.\",drops for a moment.,fades to her features.,2\n2007,lsmdc1042_Up_In_The_Air-88754,13828,Someone shimmies from side to side. Someone,Someone shimmies from side to side.,Someone,gold,\"approaches with his mother, smiling warmly.\",leans forward and puts an arm around her white shoulders.,adorn a full height of someone.,tosses her bouquet over her shoulder.,3\n2008,lsmdc1042_Up_In_The_Air-88754,13837,\"At home, he takes a couple of whiskey miniatures from his fridge. He\",\"At home, he takes a couple of whiskey miniatures from his fridge.\",He,gold,uses cars to looking light at the computers.,\"sees them, puts it in the dark living room.\",stands looking out of a window with a drink in his hand.,'s busy with the tv show.,2\n2009,lsmdc1042_Up_In_The_Air-88754,13847,\"He reaches a Departure gate, gets the pass checked and goes through. On a jet, someone\",\"He reaches a Departure gate, gets the pass checked and goes through.\",\"On a jet, someone\",gold,strolls down a dark street and shelves of tobacco drawn by staff.,stops stoic as someone stares.,gazes out of the window.,appears and runs to the soup house.,2\n2010,lsmdc1042_Up_In_The_Air-88754,13849,Someone gets in and drives away. Someone,Someone gets in and drives away.,Someone,gold,\"drives along slush - covered roads, glancing at a piece of paper in his hand and scanning the streets.\",stops as he can as someone gets outside the rain.,is smiling to himself as he is no longer under the water.,automaton reaches down and pulls out the handle.,0\n2011,lsmdc1042_Up_In_The_Air-88754,13852,Someone arrives at the airport. He,Someone arrives at the airport.,He,gold,gives someone a pat on the back.,steps out from the golf store and pulls up a golf bag.,\"enters a small office, locks lights up.\",drags his case through the busy terminal building.,3\n2012,lsmdc1042_Up_In_The_Air-88754,13816,\"They take their seats in the church. In the vestry, someone\",They take their seats in the church.,\"In the vestry, someone\",gold,joins a.,helps someone get into his suit.,puts down his bouquet and strolls about.,puts a piece of paper in the ground and holds it wearily to the old lady.,1\n2013,lsmdc1042_Up_In_The_Air-88754,13840,\"Smartly suited, someone puts his backpack on a table and steps up to a lectern. Computer - generated backpacks\",\"Smartly suited, someone puts his backpack on a table and steps up to a lectern.\",Computer - generated backpacks,gold,soar across the lawn.,topple onto a fence for a businessman and stand on the corner.,revolve on the screens behind him.,take on their headsets.,2\n2014,lsmdc1042_Up_In_The_Air-88754,13846,\"He runs through the airport, dragging his case with one hand, with a boarding pass flapping in the other. He\",\"He runs through the airport, dragging his case with one hand, with a boarding pass flapping in the other.\",He,gold,\"reaches a departure gate, gets the pass checked and goes through.\",fires at the boy and steps down into the balustrade.,peeks over someone.,\"approaches, then grabs someone's phone and yank it back to their music.\",0\n2015,lsmdc1042_Up_In_The_Air-88754,13832,Someone watches her head to her Departure gate. Someone,Someone watches her head to her Departure gate.,Someone,gold,opens a suitcase and cleans the bucket behind her ear.,walks along the hall and lets himself into his apartment.,\"wheels her coat around the tree, then shoves it back.\",nods hard against his tree.,1\n2016,lsmdc1042_Up_In_The_Air-88754,13820,\"Everyone looks around as someone walks down the aisle, arm - in - arm with someone's uncle. People\",\"Everyone looks around as someone walks down the aisle, arm - in - arm with someone's uncle.\",People,gold,\"walk up to the priest, who conducts the ceremony.\",smile follows someone.,\"puts in the drink case, putting them on their shoulders, smoke rises as it goes at the end.\",look up from someone's anguished face.,0\n2017,lsmdc1042_Up_In_The_Air-88754,13848,\"In a flurry of snow, someone picks up a Hertz rental car. Someone\",\"In a flurry of snow, someone picks up a Hertz rental car.\",Someone,gold,leaves with the rest of it to the fat guy.,flies back onto their perch.,gets in and drives away.,\"looks again from the mirror, rising to his feet and raising his huge cane and rising above their heads.\",2\n2018,lsmdc1042_Up_In_The_Air-88754,13842,\"Someone looks out across the room full of seated delegates. Lost in his thoughts, he\",Someone looks out across the room full of seated delegates.,\"Lost in his thoughts, he\",gold,hangs his head then shakes it slightly.,turns to find himself at the helm.,tries to spoon himself in front of himself.,presses his hand against the door handle.,0\n2019,lsmdc1042_Up_In_The_Air-88754,13821,\"People walk up to the priest, who conducts the ceremony. Everyone\",\"People walk up to the priest, who conducts the ceremony.\",Everyone,gold,stands watching as someone slips the wedding ring onto someone's finger.,\"smiles, prepared a little anxious to follow someone in her doorway.\",is oblivious in the silence.,\"calls into the preacher, as someone sits beside people.\",0\n2020,lsmdc1042_Up_In_The_Air-88754,13817,\"In the vestry, someone helps someone get into his suit. People\",\"In the vestry, someone helps someone get into his suit.\",People,gold,follow someone across the station.,rise from the podium.,sit watching as flower girls walk down the aisle.,drag the judge away.,2\n2021,lsmdc1042_Up_In_The_Air-88754,13823,Guests wave tiny little wedding bells. People,Guests wave tiny little wedding bells.,People,gold,smile and laugh together.,flash decorations while a magnificent giant bell stick from the railings.,run down her marley and kneels her.,comes towards the safety.,0\n2022,lsmdc1042_Up_In_The_Air-88754,13853,He drags his case through the busy terminal building. He,He drags his case through the busy terminal building.,He,gold,steps into the cockpit and sits between the dizzying man on the quay side by the bulldog chief.,leaves the valet gate and in stock cafe.,swipes his card at the self - service check - in and takes the shuttle train to his gate.,moves around the corner and descends the flight from the platform.,2\n2023,lsmdc1042_Up_In_The_Air-88754,13830,\"In the hotel lift, people kiss. Holding their wheelie cases, they\",\"In the hotel lift, people kiss.\",\"Holding their wheelie cases, they\",gold,move through the building towards a blazing sign.,exit into the cafe's lid.,face each other smiling.,\"go through the crowd of passengers, then clear the sky.\",2\n2024,lsmdc1042_Up_In_The_Air-88754,13819,Someone stands waiting with the bridesmaids. Everyone,Someone stands waiting with the bridesmaids.,Everyone,gold,holds someone's eyebrow.,seems to be ecstatic.,\"looks around as someone walks down the aisle, arm - in - arm with someone's uncle.\",looks at her anxiously as someone walks and sits in his seat.,2\n2025,lsmdc1042_Up_In_The_Air-88754,13818,People sit watching as flower girls walk down the aisle. Someone,People sit watching as flower girls walk down the aisle.,Someone,gold,looks surprised at these defending journalists.,grabs a harvey - truffle to cook.,nods and watches her reading.,stands waiting with the bridesmaids.,3\n2026,lsmdc1042_Up_In_The_Air-88754,13850,\"In a hotel room, he sits staring out of the window into the night. He\",\"In a hotel room, he sits staring out of the window into the night.\",He,gold,hurries out of the room.,sips a large whiskey.,tosses some medicine balls at the boy.,sits and stares at his typewriter.,1\n2027,lsmdc1042_Up_In_The_Air-88754,13824,People smile and laugh together. People,People smile and laugh together.,People,gold,rush over and take the seat between each rib cage and head on the floor together.,dance cheek - to - cheek.,laugh while laughing and laughing to one another.,\"sit on the lounge, people in the study of dark eight - year - old.\",1\n2028,lsmdc1042_Up_In_The_Air-88754,13829,\"As the guests start to leave, people sit together. He\",\"As the guests start to leave, people sit together.\",He,gold,\"touches his son's butterfly knife, as he holds it round to someone's face.\",tensely faces her.,grabs a bouquet of flowers and hands it to her.,\"swings a spoon at someone, then zips back out.\",2\n2029,lsmdc1042_Up_In_The_Air-88754,13855,\"He perches on the edge of a seat, looking morose. Someone\",\"He perches on the edge of a seat, looking morose.\",Someone,gold,calls him from her car.,lays it on a small panel.,'s agents lean against the pillar.,plants his thumb at someone.,0\n2030,lsmdc1042_Up_In_The_Air-88754,13854,He swipes his card at the self - service check - in and takes the shuttle train to his gate. He,He swipes his card at the self - service check - in and takes the shuttle train to his gate.,He,gold,takes off his cuff and gets out of the car.,opens the door and puts the notice in the candlelit bags.,\"perches on the edge of a seat, looking morose.\",runs up again and gets off spinning behind the wheel.,2\n2031,lsmdc1042_Up_In_The_Air-88754,13826,They play pat - a - cake. Someone,They play pat - a - cake.,Someone,gold,looks serious and waggles his arms.,has the refrigerator open for him.,beams as they loom near a tram.,\"joins the young man, making some paper when someone grabs it, then drops the shrimp on his lap.\",0\n2032,lsmdc1042_Up_In_The_Air-88754,13838,A large video screen outside a Las Vegas hotel displays a caption. Someone,A large video screen outside a Las Vegas hotel displays a caption.,Someone,gold,\", the lobby is deserted.\",paints a horn from the ceiling.,'s brief smile spreads across someone's face as he stares toward the passenger side.,waits in the wings of a packed conference hall.,3\n2033,lsmdc1042_Up_In_The_Air-88754,13827,Someone looks serious and waggles his arms. Someone,Someone looks serious and waggles his arms.,Someone,gold,stares at his unlaced boots as someone takes off his glasses.,shimmies from side to side.,nods to his associate and holds with his hand to his mouth.,stretches outside someone's and his mouth open.,1\n2034,lsmdc3091_ZOMBIELAND-44272,648,\"The zombie topples off the car. Staggering over, the narrator\",The zombie topples off the car.,\"Staggering over, the narrator\",gold,grabs someone's knee and hugs him down.,transforms into his life duke and steers it toward him.,finds a parking meter at a first powdering.,plugs him once more.,3\n2035,lsmdc3091_ZOMBIELAND-44272,647,The narrator turns on his wipers to keep him at bay. The zombie,The narrator turns on his wipers to keep him at bay.,The zombie,gold,topples off the car.,blocks his way through the beach when someone crashes into his volvo with the big man.,\"sinks, speeding up and out into an intersection.\",move halfway up under the bridge and peers at it through a ribbon on her scooter.,0\n2036,lsmdc3091_ZOMBIELAND-44272,641,The rear view mirror shows another one in the back seat. The car,The rear view mirror shows another one in the back seat.,The car,gold,walks between the two trees where they have hidden to the next car.,reaches into someone's apartment.,weaves as the narrator fends him off.,pulls into the hatchback at the end of the alley.,2\n2037,lsmdc3091_ZOMBIELAND-44272,644,\"Words lock together, Rule Number 4, Seat belts. The zombie\",\"Words lock together, Rule Number 4, Seat belts.\",The zombie,gold,reappears spitting out a mouthful of flowers.,urges the steering wheel up.,\"fires the ball to the thug, then looks down at the rustic alley floor.\",approaches the mark with its badge.,0\n2038,lsmdc3091_ZOMBIELAND-44272,643,He crashes into a planter sending the zombie flying out the windshield and into a building. Words,He crashes into a planter sending the zombie flying out the windshield and into a building.,Words,gold,\"removes a car's hood, lather up his baby, and leaves.\",\"lock together, rule number 4, seat belts.\",pass up him and hippie him back in polished soda.,\"cross the finish line, tenderly.\",1\n2039,lsmdc3091_ZOMBIELAND-44272,634,\"With toilet paper trailing from his shoe, the infected man chases him toward his car. A female zombie\",\"With toilet paper trailing from his shoe, the infected man chases him toward his car.\",A female zombie,gold,extending a dough slice to an kung tortoise lying on the back of a well groomed teen.,shows his way outside.,emerges from behind the pumps.,corpses comes into the pool.,2\n2040,lsmdc3091_ZOMBIELAND-44272,637,\"He ditches them and leads the zombies in another lap around the parking lot. Rule Number 1, Cardio,\",He ditches them and leads the zombies in another lap around the parking lot.,\"Rule Number 1, Cardio,\",gold,is 1: 20.,\"purposeful and verdant, with normal motion.\",\"is someone, five children in tourists campaign stolen.\",blinks on the asphalt.,3\n2041,lsmdc3091_ZOMBIELAND-44272,645,The zombie reappears spitting out a mouthful of flowers. As the narrators,The zombie reappears spitting out a mouthful of flowers.,As the narrators,gold,opens his shotgun's chamber.,finishes itself out a winner.,\"clutches someone, his quaffle obscures it.\",\"pick a dessert fork, someone flourishes it.\",0\n2042,lsmdc3091_ZOMBIELAND-44272,649,\"Staggering over, the narrator plugs him once more. He\",\"Staggering over, the narrator plugs him once more.\",He,gold,\"loose his sweaty coat, brown pants hands and beats him away every single piece.\",\"follows someone inside, smiling broadly.\",slides down onto his butt with a small grimace.,\"wears a compact wig and runs over to him, holding the leather tablecloth.\",2\n2043,lsmdc3091_ZOMBIELAND-44272,650,The picture fades to black. Now a suitcase,The picture fades to black.,Now a suitcase,gold,gets wheeled down a highway.,shows someone overlooking the room.,wipes d'artagnan out of it.,settles about pulling edges.,0\n2044,lsmdc3091_ZOMBIELAND-44272,638,\"Rule Number 1, Cardio, blinks on the asphalt. Reaching his car again, the narrator\",\"Rule Number 1, Cardio, blinks on the asphalt.\",\"Reaching his car again, the narrator\",gold,stays down to face the steering wheel.,trods over and pushes him open.,continues on with the landscape.,grabs his keys and notices that the door is already unlocked.,3\n2045,lsmdc3091_ZOMBIELAND-44272,646,As the narrators opens his shotgun's chamber. The narrator,As the narrators opens his shotgun's chamber.,The narrator,gold,edges it out of the hole.,edges his way up from behind the cliff.,turns on his wipers to keep him at bay.,crouches into his arms.,2\n2046,lsmdc3091_ZOMBIELAND-44272,639,\"Reaching his car again, the narrator grabs his keys and notices that the door is already unlocked. He\",\"Reaching his car again, the narrator grabs his keys and notices that the door is already unlocked.\",He,gold,goes to the desk and waits for some attention.,does the same as someone's car door opens.,climbs in and locks it just as the zombies arrive.,crosses over to a leather bench with the stuffed open checked posted apologetically.,2\n2047,lsmdc3091_ZOMBIELAND-44272,640,\"Fastening his seat belt, he speeds off. The rear view mirror\",\"Fastening his seat belt, he speeds off.\",The rear view mirror,gold,shows as the truck screeches forward.,shows the entire tenement onward.,shows another one in the back seat.,shows an angled platform.,2\n2048,anetv_a6lCnOqNaMY,5197,A man is running down the track. He,A man is running down the track.,He,gold,throws a javelin onto the field.,\"jumps onto a bull, chasing him down.\",is run around a corner.,lifts his feet up in front of other people.,0\n2049,anetv_a6lCnOqNaMY,5198,He throws a javelin onto the field. The audience,He throws a javelin onto the field.,The audience,gold,is behind him in the stands watching.,jumps as he jumps over a large hay project.,cheering and springs with several other passengers them.,applauds and claps him on the porch.,0\n2050,anetv_EWSMeiZqUHQ,1350,\"Suddenly, a group of boys begin to run around the classroom smiling, marching in place, and doing some dancing and exercises while the rest of the sitting class look on. The boys spread apart and end their routine then they\",\"Suddenly, a group of boys begin to run around the classroom smiling, marching in place, and doing some dancing and exercises while the rest of the sitting class look on.\",The boys spread apart and end their routine then they,gold,continue playing for the remainder of the video and going back and forth.,walk towards one another while smiling.,show the proper way to do the moving platform move.,stop to smile at each other.,1\n2051,lsmdc0013_Halloween-53893,2504,He is scared out of his mind. Someone,He is scared out of his mind.,Someone,gold,spins around and stares in horror at the talking hedge.,moves toward his desk sergeant.,barely hears what he is saying.,raises her ear to the bed and eats.,0\n2052,lsmdc0013_Halloween-53893,2495,\"Almost instantly, someone stops crying and follows him. Someone\",\"Almost instantly, someone stops crying and follows him.\",Someone,gold,stands on three lines on the door.,sits up next to someone and hugs him.,walks out and claps his hands.,scowls and takes a phone call from his hand.,1\n2053,lsmdc0013_Halloween-53893,2510,\"Suddenly, two hands enter frame and grab someone 'shoulders. Someone\",\"Suddenly, two hands enter frame and grab someone 'shoulders.\",Someone,gold,\"laughs at someone's breasts, and can't stop someone.\",is repeated for a moment.,jumps and spins around.,\"hangs onto the pocket's barrier and, throughout the lot one shocked and motionless begins to sag.\",2\n2054,lsmdc0013_Halloween-53893,2506,\"Moving like the wind, someone barrels off the porch and races back to his friends. The boys\",\"Moving like the wind, someone barrels off the porch and races back to his friends.\",The boys,gold,hurtle off down the street in utter terror.,watch someone walking out of the front yard.,rush forward to stop.,begin to look up: from above.,0\n2055,lsmdc0013_Halloween-53893,2488,\"Someone turns around and looks for someone. For a moment, he\",Someone turns around and looks for someone.,\"For a moment, he\",gold,does n't think would be wrong.,glances out the window.,dabs his cheek some more.,goes back to his seat.,1\n2056,lsmdc0013_Halloween-53893,2486,\"Someone hides, preparing to jump out and scare someone. Someone\",\"Someone hides, preparing to jump out and scare someone.\",Someone,gold,gets up from the couch to search for someone.,\"sets her hands up to the bar, presses her knuckles to the armoire.\",reaches for his gun and walks at it.,takes the keys and presses the button.,0\n2057,lsmdc0013_Halloween-53893,2487,Someone gets up from the couch to search for someone. Someone,Someone gets up from the couch to search for someone.,Someone,gold,is looking to someone at the phone.,drapes his arm over the back of his chair and holds him close.,shoots more darts and throws it.,turns around and looks for someone.,3\n2058,lsmdc0013_Halloween-53893,2499,Someone parts the hedge in front of him and stares. For a moment someone,Someone parts the hedge in front of him and stares.,For a moment someone,gold,stands up as he stares up at some peaks.,opens the window to remove the deed from the bedroom.,\"hesitates, then slowly moves through the front gate up toward the porch.\",follows him out a window.,2\n2059,lsmdc0013_Halloween-53893,2505,\"Someone spins around and stares in horror at the talking hedge. Moving like the wind, someone\",Someone spins around and stares in horror at the talking hedge.,\"Moving like the wind, someone\",gold,looks up at someone's reflection.,has been illuminated in her narrows eyes.,barrels off the porch and races back to his friends.,leans back and forth swinging the gun in the distance between them as someone detaches.,2\n2060,lsmdc0013_Halloween-53893,2509,\"He watches them race away, smiling to himself. Suddenly, two hands\",\"He watches them race away, smiling to himself.\",\"Suddenly, two hands\",gold,enter frame and grab someone 'shoulders.,approach someone wearing a firm fifth manner.,clutch their heads to the door.,bend over the other.,0\n2061,lsmdc0013_Halloween-53893,2490,\"Someone screams and jumps out from the curtain, scaring the hell out of someone, who also screams and begins crying. Someone\",\"Someone screams and jumps out from the curtain, scaring the hell out of someone, who also screams and begins crying.\",Someone,gold,comes up around hands holding the toad.,runs over and starts along the roof.,\"stops smiling, hopelessly in pain, trying to get away.\",rushes in from the kitchen finding the children in tears.,3\n2062,lsmdc0013_Halloween-53893,2493,Someone bends down to comfort her. Someone,Someone bends down to comfort her.,Someone,gold,\"yanks her hand from around someone's neck, and he holds her over.\",places his hand on the limb and closes his eyes again.,closes her eyes and kisses her.,turns away from people and walks over to the couch in front of the tv set.,3\n2063,lsmdc0013_Halloween-53893,2489,\"For a moment, he glances out the window. The figure of a man\",\"For a moment, he glances out the window.\",The figure of a man,gold,holding tyler - whips with his long sword.,carries what seems to be a body across someone's back yard.,\"lowers his massive, floating outward.\",\"lies on his bed, leaning back against it.\",1\n2064,lsmdc0013_Halloween-53893,2502,He glances back to his friends in the street. The boy,He glances back to his friends in the street.,The boy,gold,swallows and leaves the apartment with a numb expression.,turns to open the door.,attacks a rat broom and shuts it.,lies in the snow underneath the car of honor.,1\n2065,lsmdc0013_Halloween-53893,2503,The boy turns to open the door. He,The boy turns to open the door.,He,gold,is scared out of his mind.,\"turns to someone, who smiles for someone, who return the kitchen food.\",\"walks slowly down the hallway, up the stairs.\",slides down the stairs and enters the hall as a go.,0\n2066,lsmdc0013_Halloween-53893,2492,Someone points out the window. Someone,Someone points out the window.,Someone,gold,collapses back inside the dressing room.,adjusts the bike hood and throws it onto the bed.,bends down to comfort her.,winks at his victim.,2\n2067,lsmdc0013_Halloween-53893,2500,\"He watches the young boy walk toward the house, unsure whether he should interfere or just watch. Someone\",\"He watches the young boy walk toward the house, unsure whether he should interfere or just watch.\",Someone,gold,sits in the crush of the car and he speaks without saying some.,\"now, stock still, still staring, is the red truck, holding him in front of the barricade and running out.\",\"pushes off its board, revealing a charred fish on its tail.\",makes it to the front porch and tentatively steps up to the door.,3\n2068,lsmdc0013_Halloween-53893,2507,The boys hurtle off down the street in utter terror. Someone quietly,The boys hurtle off down the street in utter terror.,Someone quietly,gold,wets his broomstick and swings himself towards the car.,stands nearby with the sword of sword sword.,pulls his way to the upper deck.,stands up behind the hedge.,3\n2069,lsmdc0013_Halloween-53893,2501,Someone makes it to the front porch and tentatively steps up to the door. He,Someone makes it to the front porch and tentatively steps up to the door.,He,gold,\"walks up from the window, sits down, and smooths his coat.\",returns to his door and switches on the back.,\"tries to put his boot on the headlights, and step back.\",glances back to his friends in the street.,3\n2070,lsmdc0013_Halloween-53893,2494,\"Someone turns away from people and walks over to the couch in front of the tv set. Almost instantly, someone\",Someone turns away from people and walks over to the couch in front of the tv set.,\"Almost instantly, someone\",gold,turns to a surveillance book and turns to face the others.,stops crying and follows him.,rushes in and clutches her hands.,stops dancing and sits quietly.,1\n2071,lsmdc0013_Halloween-53893,2508,Someone quietly stands up behind the hedge. He,Someone quietly stands up behind the hedge.,He,gold,\"is cut inside of the loose hedge, tall, red, deep where the scarf is loose.\",watches the old citadel slip along a sidewalk in the courtyard.,plants a barbecue on cover of wood.,\"watches them race away, smiling to himself.\",3\n2072,anetv_AXyRIyXqnzI,13021,Still photos are featured between multiple men practicing their shot put throw. A series of shot put throws,Still photos are featured between multiple men practicing their shot put throw.,A series of shot put throws,gold,down text is shown again in a video.,are featured in consecutive tosses.,are shown by spinning more men.,of a game in slow motion.,1\n2073,anetv_AXyRIyXqnzI,13019,A man in a grey warm up suit practices shot put behind a net. Another man in a green sweatshirt,A man in a grey warm up suit practices shot put behind a net.,Another man in a green sweatshirt,gold,throws a shot put.,is shown lifting the bar and then leave the room and try to hit a ball.,practices a shot put throw in a field behind a net gate.,falls on the side with a red eye holding his score.,2\n2074,anetv_AXyRIyXqnzI,13020,Another man in a green sweatshirt practices a shot put throw in a field behind a net gate. still photos,Another man in a green sweatshirt practices a shot put throw in a field behind a net gate.,still photos,gold,are featured between multiple men practicing their shot put throw.,and numbers continue to teach him as he runs.,play several times competing are shown playing the game with soccer players.,show the players blocked by defenders parked in front of the audience.,0\n2075,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18596,\"In the kitchen someone fills a bowl with cereal, then glances around. He\",\"In the kitchen someone fills a bowl with cereal, then glances around.\",He,gold,is being woken by the crash.,falls off a piece of paper from his shore.,\"turns to look at someone, also eating a vodka bowl.\",pours in the last few drops of milk from a carton.,3\n2076,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18588,\"Later in his room, he lies on his bed with an art book. He\",\"Later in his room, he lies on his bed with an art book.\",He,gold,and someone watch from the doorway.,flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building.,crooked text from a book print sketches was neatly laid down and a sign school snack.,arrives at a couple of framed photos in front of him.,1\n2077,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18594,\"Now he awakes in bed. On a busy city street, traffic lights\",Now he awakes in bed.,\"On a busy city street, traffic lights\",gold,turn from green to red.,up on the town club.,a form illuminates a nightclub.,a curve off the curb.,0\n2078,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18590,Turning to the next page he studies an oil painting of a woman in a ruffled dress facing a mirror. He,Turning to the next page he studies an oil painting of a woman in a ruffled dress facing a mirror.,He,gold,turns the page again and studies a portrait of a sickly somber faced boy.,brings pizza onto a car.,wears a fitting blue dress.,wipes her nose and gazes at him innocently.,0\n2079,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18595,\"On a busy city street, traffic lights turn from green to red. In the kitchen someone\",\"On a busy city street, traffic lights turn from green to red.\",In the kitchen someone,gold,tries to get out the end of the bar.,sits alone at a table for sustengo.,lies asleep in bed.,\"fills a bowl with cereal, then glances around.\",3\n2080,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18591,He turns the page again and studies a portrait of a sickly somber faced boy. The transfixed teen,He turns the page again and studies a portrait of a sickly somber faced boy.,The transfixed teen,gold,someone raises his arm and storms his bed.,\"focuses on the boy's dark eyes, which seem to stair back at him.\",stands near the window.,\"shifts around, smoothing out his graying hair.\",1\n2081,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18600,Now he knocks on a door. Someone,Now he knocks on a door.,Someone,gold,answers it wearing a shiny lame dress.,joins into a cocktail party.,\"enters the glass, then grabs the empty metal bottles in the can.\",enters a room.,0\n2082,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18597,\"He pours in the last few drops of milk from a carton. Stepping into a doorway, he\",He pours in the last few drops of milk from a carton.,\"Stepping into a doorway, he\",gold,sees someone hunched over paperwork in an office across the hall.,finds a ladle full of dead food.,looks up at a small brass bell.,glances gunman's wristwatch and sees the doctor on a phone.,0\n2083,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18601,She leads him downstairs to a chic living room where they join someone and a girlfriend. A blond guy,She leads him downstairs to a chic living room where they join someone and a girlfriend.,A blond guy,gold,sits across from them.,marches her from an upper arched ceiling and drags her to his table.,carries a boy in a white fur coat.,arranges a beer from a desk labeled for a girls fish event.,0\n2084,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18589,He flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building. Turning to the next page he,He flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building.,Turning to the next page he,gold,watches the arc of a mumbai drawing with a flip - assignment and he takes a single slip of paper and shows it to someone,\"spots a bird resting on a pair of mirrored doors, then heads for the open compartment.\",studies an oil painting of a woman in a ruffled dress facing a mirror.,finds someone standing by the vehicle to find someone looking for an information called address book.,2\n2085,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18587,\"She and someone each look out their windows. Later in his room, he\",She and someone each look out their windows.,\"Later in his room, he\",gold,picks up a typewriter and slowly brushes it back.,\"carefully inserts a garment around the box revealing, then removes a leather pouch in his hands.\",sets the bag next to someone on the sofa.,lies on his bed with an art book.,3\n2086,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18585,That night he and someone ride back in a cab. Someone,That night he and someone ride back in a cab.,Someone,gold,steps out through the open window and gets out.,rolls her eyes curiously then folds her legs.,gets off and kicks his partner over.,enters from his office in a small classroom.,1\n2087,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18586,Someone rolls her eyes curiously then folds her legs. She and someone each,Someone rolls her eyes curiously then folds her legs.,She and someone each,gold,take off their regular clothes.,look out their windows.,carry a meal past the stage.,take a seat and stares with crossed mouths.,1\n2088,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18598,\"Stepping into a doorway, he sees someone hunched over paperwork in an office across the hall. Someone\",\"Stepping into a doorway, he sees someone hunched over paperwork in an office across the hall.\",Someone,gold,steps over an examining door newspaper.,crouches with a gun.,sleeps beside him in her cot.,watches his frustrated stepfather set one page aside and grab another.,3\n2089,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18593,Someone stares past someone and frowns. He,Someone stares past someone and frowns.,He,gold,stands with his nod.,puts her hand over her mouth.,grins and turns to someone.,turns around and sees only blank canvases adorning the walls.,3\n2090,lsmdc3067_THE_ART_OF_GETTING_BY-32220,18592,A photographer snaps a picture. Someone,A photographer snaps a picture.,Someone,gold,walks back to the lectern.,stares past someone and frowns.,spits out the fighters.,watches screens take off in softening cameras.,1\n2091,anetv_HI_lWd3JhII,15924,He lays the items out and runs a board across a ski. He,He lays the items out and runs a board across a ski.,He,gold,looks around and the man continues to speak to the camera.,grabs the brush and rubs it into a bag.,puts his foot on the shoe as he rides the bike.,finally rubs the ski again and places the cap on the bar.,3\n2092,anetv_HI_lWd3JhII,15923,A close up of a person holding a bag is shown and follows with the person taking out the items. He,A close up of a person holding a bag is shown and follows with the person taking out the items.,He,gold,wander the dirt on terrain to water and a house.,lays the items out and runs a board across a ski.,continues stirring butter in the pan and pours it into a blender and pushes it back to the left of the bottom.,wets the bike and drives around.,1\n2093,lsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3439,\"Someone embraces someone or waltzes her around; someone looks on, pleased. He\",\"Someone embraces someone or waltzes her around; someone looks on, pleased.\",He,gold,\"remembers another woman beating her father, pulling someone to her feet.\",has a incredible strength to hold someone's wand in her hand.,gets up from the pew and finishes facing her.,hurries away from us towards home.,3\n2094,lsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3441,\"Seeing the lighted window, he hesitates. Silent pause, listening; then he\",\"Seeing the lighted window, he hesitates.\",\"Silent pause, listening; then he\",gold,\"lowers his head, looking at it, as if to say something else.\",turns to face someone's apartment.,sees the lights come out.,walks cautiously towards us.,3\n2095,lsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3438,\"As he runs past spoon's, looking in, he is curious. Someone embraces someone or waltzes her around; someone\",\"As he runs past spoon's, looking in, he is curious.\",Someone embraces someone or waltzes her around; someone,gold,is then coastline aware of the treasure.,\"looks on, pleased.\",maintains his arm with her gloved hand.,takes her drink from a cup of coffee.,1\n2096,lsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3444,\"Relieved, but puzzled, he tiptoes along towards the rear of the hallway in close - up as we pull away. We\",\"Relieved, but puzzled, he tiptoes along towards the rear of the hallway in close - up as we pull away.\",We,gold,bring in the bottom of the stairs.,struggle on his feet and peer down the line with veins in their forehead.,\"tilt to someone's shoulders and looks very now, bewildered.\",\"sits at a bar, casually laughing.\",0\n2097,lsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3440,\"In the otherwise dark house, one window is lighted. Someone\",\"In the otherwise dark house, one window is lighted.\",Someone,gold,\"runs through the party, chasing someone.\",stoops descends to a crawl on the floor and then whisks a pick.,\"enters the shot, his back to us.\",drags out the fast - fashionable dish of furniture.,2\n2098,lsmdc1048_Gran_Torino-92492,14714,\"Later, someone is busy mowing his front lawn. Now, he\",\"Later, someone is busy mowing his front lawn.\",\"Now, he\",gold,relaxes in the bath.,notices the glamorous young hotel.,stumbles by the roadside.,shifts in the light between the trees.,0\n2099,lsmdc1048_Gran_Torino-92492,14715,\"Now, he relaxes in the bath. He\",\"Now, he relaxes in the bath.\",He,gold,turns away from his captor and grabs his with long long hair.,\"rings a dot in alarm, but does n't answer it.\",comes out just as a boy wash off his face.,lights a cigarette and looks over at someone.,3\n2100,anetv_PLWeVDUH_Cw,15063,Two businessmen play on a team against the table tennis pro. The match ends and the business men,Two businessmen play on a team against the table tennis pro.,The match ends and the business men,gold,shake hands with the athlete.,engage in a game together with it.,try to win the match.,are embarrassed and shake hands as they continue digging.,0\n2101,anetv_KuAVv3uS4zc,13072,One crashes hard while the others pass and continue the race. All men,One crashes hard while the others pass and continue the race.,All men,gold,fight with people on the sides and many people have helped him away the end.,continue to ride through the track until one eventually wins while one chases him.,are shown in front of the jump and pointing the bikes off into the distance.,walk from the yard to the ground as the second woman pulled away out of a hanger and shown using a toy.,1\n2102,anetv_KuAVv3uS4zc,13071,Several intros lead into a bike race between 3 men on bikes. One,Several intros lead into a bike race between 3 men on bikes.,One,gold,shows the end of the bike and rides off.,it is n't a race and a man walks back!,walks up to through a set of uneven bars.,crashes hard while the others pass and continue the race.,3\n2103,lsmdc3091_ZOMBIELAND-44415,7279,Someone takes out a pick ax. He,Someone takes out a pick ax.,He,gold,cuts the dummy's pages loose.,continues to blow five three.,falls onto the kitchen floor of a building.,returns it to a weapon stash.,3\n2104,lsmdc3091_ZOMBIELAND-44415,7280,He returns it to a weapon stash. He,He returns it to a weapon stash.,He,gold,picks up the receiver and hits it over the fire with difficulty.,continues to carry photos in the diner.,lights on the floor.,considers a ground tiller.,3\n2105,anetv_IIAaKRUze8A,1835,He holds out a piece of metal. He,He holds out a piece of metal.,He,gold,places metal along side the roof.,uses a small tool to create a similar pattern.,sticks a bullet into the grill.,twists the mace between his hands.,0\n2106,anetv_IIAaKRUze8A,1834,A man stands next to a small roof. He,A man stands next to a small roof.,He,gold,picks up a fire and rolls it.,then jumps up and hits his leg.,holds out a piece of metal.,is using the welding equipment.,2\n2107,anetv_IIAaKRUze8A,1836,He places metal along side the roof. He,He places metal along side the roof.,He,gold,attaches the pieces securely.,sprays blood on the windshield.,grabs it from behind.,continues prepping the pumpkin while using the snow to dry.,0\n2108,anetv_VvD2fdPNWEg,11434,\"Just like the first man, another man is now shown running, skipping and jumping, and he's wearing a red outfit. Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he\",\"Just like the first man, another man is now shown running, skipping and jumping, and he's wearing a red outfit.\",\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he\",gold,gets to his feet and begins doing the same thing with it who continues to do the same moves.,is also a surprised in doing this again in slow motion.,'s wearing a blue outfit that has long sleeves and shorts.,is unnerved and standing there while it's already started dancing with a circle of people.,2\n2109,anetv_VvD2fdPNWEg,4804,An indoor track meet is shown with the triple jump. Several men,An indoor track meet is shown with the triple jump.,Several men,gold,on side cheer as he make the goal.,complete a triple jump and get their scores.,begin running toward them as they part.,are shown and a man blows a ball over his head.,1\n2110,anetv_VvD2fdPNWEg,11432,\"A blurry still shot of what looks like an indoor track is shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him. The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he\",\"A blurry still shot of what looks like an indoor track is shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him.\",\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he\",gold,\"'s running very fast, skips, and then does his jump.\",is not successful before he drops the weights and continues playing again.,falls back in a different stance to advance on the mirror.,snaps this lineup.,0\n2111,anetv_VvD2fdPNWEg,11433,\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he's running very fast, skips, and then does his jump. Just like the first man, another man is now shown running, skipping and jumping, and he\",\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he's running very fast, skips, and then does his jump.\",\"Just like the first man, another man is now shown running, skipping and jumping, and he\",gold,continues to get out.,grabs his javelin while holding him to his sides.,'s wearing a red outfit.,raised his arms up and begins his jump again.,2\n2112,anetv_VvD2fdPNWEg,11435,\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he's wearing a blue outfit that has long sleeves and shorts. All men\",\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he's wearing a blue outfit that has long sleeves and shorts.\",All men,gold,\"are shown running, skipping and jumping in a slow motion effect.\",\"are still shown very easy, jogging and having fun before going back into the sitting of the rock on team.\",are dressed in black shorts with a blue wig or possibly getting ready in a small pool that the improve end competitor.,\"are playing hopscotch, kicking and kicking cars.\",0\n2113,anetv_VvD2fdPNWEg,11431,Black screens appear and different screens have numbers and letters that read 2014 World Indoor Championships Triple Jump Review Part 1 and by Keinan Briggs. A blurry still shot of what looks like an indoor track is,Black screens appear and different screens have numbers and letters that read 2014 World Indoor Championships Triple Jump Review Part 1 and by Keinan Briggs.,A blurry still shot of what looks like an indoor track is,gold,seen with people in green snow around the yellow recording of the people around the area.,\"shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him.\",shown followed by a guy playing a rubik with long pole.,seen and followed by a man standing up to him.,1\n2114,anetv_LtQTtCplKz0,9972,Another man is now kneeling and applying tape next to the sandy area of the jump while he talks. The man is now standing at a bar bell with very heavy weights and he,Another man is now kneeling and applying tape next to the sandy area of the jump while he talks.,The man is now standing at a bar bell with very heavy weights and he,gold,begins trimming the leg of his jump leg.,begins to practice the game.,\"slowly starts to lift it, then drops it.\",begins demonstrating how to do the survival project.,2\n2115,anetv_LtQTtCplKz0,9968,A man by the name of alex al - ameen is smiling and talking and the words below his name say that he has been selected for commonwealth games 2014 110 metre hurdles. A man,A man by the name of alex al - ameen is smiling and talking and the words below his name say that he has been selected for commonwealth games 2014 110 metre hurdles.,A man,gold,\"paces near the crowd, saying.\",is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot.,appears while describing where to do it.,is shown giving tips on how to do a workout type of haircut.,1\n2116,anetv_LtQTtCplKz0,9969,A man is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot. Three men,A man is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot.,Three men,gold,\"are now walking to a track where various people are running and taking turns doing hop, skip and jumps.\",are walking in front of him talking and materials are shown and a woman standing on front the horse.,are seen riding along a dirt road to one another as they walk on the stilts.,are dancing then playing on the ground with a calf on their feet.,0\n2117,anetv_LtQTtCplKz0,9970,\"Three men are now walking to a track where various people are running and taking turns doing hop, skip and jumps. A man\",\"Three men are now walking to a track where various people are running and taking turns doing hop, skip and jumps.\",A man,gold,turns around and most schools of slow bull.,briefly stops and talks to the camera while he appears a little out of breath.,walks in front of the chubby coaches all along the way.,is shown moving his arm while the other watches and his host stops and licks his sides.,1\n2118,anetv_LtQTtCplKz0,9974,\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he's pulling on an exercise equipment. The white outro screen\",\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he's pulling on an exercise equipment.\",The white outro screen,gold,appears with their logo and the words saying to subscribe to their youtube channel.,appears onscreen that include an electrical d platform on the main panel.,is shown at several angles of the video skateboarders with a large scrapbook of an indoor formation.,appears with white words on the screen for the main of the video.,0\n2119,anetv_LtQTtCplKz0,9973,\"The man is now standing at a bar bell with very heavy weights and he slowly starts to lift it, then drops it. A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he\",\"The man is now standing at a bar bell with very heavy weights and he slowly starts to lift it, then drops it.\",\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he\",gold,gets as though he does.,throws up while speaking to the camera.,'s pulling on an exercise equipment.,picks up those things that he dressed like in security.,2\n2120,lsmdc0033_Amadeus-66886,5705,\"Framed in the doorway from outside stands someone, the maid we noticed in someone's house. From his bedroom someone\",\"Framed in the doorway from outside stands someone, the maid we noticed in someone's house.\",From his bedroom someone,gold,peeps out to watch.,spots two guards as he stuffs someone in his pockets.,moves his dash into the room.,\"awakes on the couch with his outstretched hand, seeing a broken mirror and a wall, slate red.\",0\n2121,lsmdc0033_Amadeus-66886,5706,From his bedroom someone peeps out to watch. Someone,From his bedroom someone peeps out to watch.,Someone,gold,\"opens his door to reveal someone, old, precious, etc.\",faces his agents.,\"enters his room, leaving the two boy bags.\",goes to the girl.,3\n2122,lsmdc0033_Amadeus-66886,5704,From time to time he drifts over to a piece of manuscript paper and jots down notes. He is very much in his own world of composition and the billiard balls,From time to time he drifts over to a piece of manuscript paper and jots down notes.,He is very much in his own world of composition and the billiard balls,gold,screenshot long enough for someone to know it - performed.,probably too much for someone.,are an aid to creation.,catch him as he makes his way to the front of the parade.,2\n2123,lsmdc0033_Amadeus-66886,5702,\"The beautiful closing ensemble from Act iv of someone: ah, Tutti contenti! Standing at the billiard table, someone\",\"The beautiful closing ensemble from Act iv of someone: ah, Tutti contenti!\",\"Standing at the billiard table, someone\",gold,is dreamily hearing the music and playing shots on the table.,\"lies slumped on the futuristic table, staring at the knife.\",\"paces with the penguins body of drinks, completely engrossed.\",lifts the glass in expressionless.,0\n2124,lsmdc0033_Amadeus-66886,5703,\"Standing at the billiard table, someone is dreamily hearing the music and playing shots on the table. From time to time he\",\"Standing at the billiard table, someone is dreamily hearing the music and playing shots on the table.\",From time to time he,gold,\"remembers his royal hand, wearing a white felt hat, a blue shirt, and a dressing shirt, trendy - pink letters.\",drifts over to a piece of manuscript paper and jots down notes.,\"turns with singing, pulled out a flask and wagon lone as sitting in a chair on the small corner below.\",\"displays up showing dates and website at a document shop, under several cellphones places.\",1\n2125,anetv_c2VcfB3YTBo,9234,\"She enters a room with kids in it, takes off her coat and starts dancing. A man enters and the lady and man\",\"She enters a room with kids in it, takes off her coat and starts dancing.\",A man enters and the lady and man,gold,perform a fancy dance as the kids watch.,walk back up as she mops windows.,arrive at the head of the class.,ride in the shower.,0\n2126,anetv_c2VcfB3YTBo,9236,The man throws his coat across the room. The lady,The man throws his coat across the room.,The lady,gold,changes the frisbee repeatedly like a heart puppet.,hugs the man from behind.,runs up and picks himself up.,pats the boy's blistered hand.,1\n2127,anetv_c2VcfB3YTBo,9239,They finish and the man shakes the hands of the kids. The lady,They finish and the man shakes the hands of the kids.,The lady,gold,turns to the band and then the man in front of her successfully tilt his face and the woman drives away.,shakes the ladies head.,started to dance from the pile and continue to dance in time to the music.,puts on her coat as a girl talks to her and leaves the room.,3\n2128,anetv_c2VcfB3YTBo,9237,The lady hugs the man from behind. The lady tries to leave and the man,The lady hugs the man from behind.,The lady tries to leave and the man,gold,begins to wash the dog in the sink.,grabs her and pulls her back.,talks to the camera again.,pins him against the boat.,1\n2129,anetv_c2VcfB3YTBo,9233,We see a lady walking down stairs. She,We see a lady walking down stairs.,She,gold,lifts her legs so she can stand while she is on the floor.,rises a second to the back of the ring and gently rubs her hand.,\"enters a room with kids in it, takes off her coat and starts dancing.\",picks up their instruments and begins to play again.,2\n2130,anetv_c2VcfB3YTBo,9235,A man enters and the lady and man perform a fancy dance as the kids watch. The man,A man enters and the lady and man perform a fancy dance as the kids watch.,The man,gold,accepts the bill and claps the car.,falls and we see the other ladies play with their hands.,throws his coat across the room.,smiles and claps hands and gestures.,2\n2131,anetv_c2VcfB3YTBo,9238,The lady tries to leave and the man grabs her and pulls her back. They finish and the man,The lady tries to leave and the man grabs her and pulls her back.,They finish and the man,gold,puts the board on the floor and the woman hands the lady her to him.,shakes the hands of the kids.,adjusts everything as the lunging yells on her.,rides her into the bike.,1\n2132,anetv_9yktj7NCdFI,65,The girl is then seen play hop scotch jumping down the chalk while the boy watches from behind. A woman then,The girl is then seen play hop scotch jumping down the chalk while the boy watches from behind.,A woman then,gold,lifts the camel back and sits down on the playground.,is seen playing a set of bongo drums while looking off into the distance.,kisses a girl's arm while the man follows her to the camera.,helps the boy jump followed by the young girl helping.,3\n2133,anetv_9yktj7NCdFI,64,Two small children are seen drawing with chalk on a side walk while they occasionally looking back to the camera. The girl,Two small children are seen drawing with chalk on a side walk while they occasionally looking back to the camera.,The girl,gold,is then seen play hop scotch jumping down the chalk while the boy watches from behind.,continues with needles genders speaking while the camera shows the others ponytail.,continues painting the fence while the camera captures the movements.,stops and looks back on her copying.,0\n2134,anetv_ucR3VztMyeE,15920,She has difficulties in the middle of the bars. A woman,She has difficulties in the middle of the bars.,A woman,gold,appears looking to help.,stands on the monkey bars and spins her many times.,in blue shirt is talking about her.,is wearing and swimming trunks in a scuba.,0\n2135,anetv_ucR3VztMyeE,15919,A girl starts to climb the monkey bars. She,A girl starts to climb the monkey bars.,She,gold,balances herself on the border of the beam.,is hit the pinata on the ground several times.,plays tug on the volley ball.,starts climbing forward to the end.,3\n2136,anetv_L1XpfS1RCzE,5734,The man is paddling through the strong current of water. The man,The man is paddling through the strong current of water.,The man,gold,reaches water and water on the propellers.,pushes it back gently and limes the canvas surrounding the boat.,fell in the small falls.,drops underwater the head of the ocean.,2\n2137,anetv_L1XpfS1RCzE,5733,The person is riding a blue single raft. The man,The person is riding a blue single raft.,The man,gold,throws hard on the surfboard with a paddle and the man juggles the shovel.,raises the camera briefly.,continues to walk and clap his hand while the camera captures the same man to pull the surf away.,is paddling through the strong current of water.,3\n2138,lsmdc0013_Halloween-53653,5555,Camera slowly tracks over to a phone booth. Someone,Camera slowly tracks over to a phone booth.,Someone,gold,is starting to spot someone's family.,is standing in the middle of a posh street.,is inside on the telephone.,looks at the skyline.,2\n2139,lsmdc0009_Forrest_Gump-50379,13761,\"Someone climbs up onto the stage and picks someone up, guitar and all, and carries her. Someone\",\"Someone climbs up onto the stage and picks someone up, guitar and all, and carries her.\",Someone,gold,opens the large cabinet and lets out a large whoop.,pins the band with his hand.,struggles and frees herself from someone.,strolls into the room.,2\n2140,lsmdc0009_Forrest_Gump-50379,13759,\"Someone walks up to Man and grabs him and tosses him down on the ground. Man tries to grab someone, but someone\",Someone walks up to Man and grabs him and tosses him down on the ground.,\"Man tries to grab someone, but someone\",gold,follows him and punches him in the chest.,grabs it from beneath someone's grip.,shoves him down too.,almost throws him off.,2\n2141,lsmdc0009_Forrest_Gump-50379,13762,Someone struggles and frees herself from someone. Someone,Someone struggles and frees herself from someone.,Someone,gold,reaches over his metal plate.,falls from the floor and slowly walks up a flight.,steps back in surprise.,opens the crack of doom.,2\n2142,lsmdc0009_Forrest_Gump-50379,13758,\"He yells angrily as he sits back down, then tosses his drink on her. Someone\",\"He yells angrily as he sits back down, then tosses his drink on her.\",Someone,gold,gives him a shake of the head as someone holds her pose.,\"licks the cream from his cheek, glances around.\",slams off through the partition doors.,walks up to man and grabs him and tosses him down on the ground.,3\n2143,lsmdc0009_Forrest_Gump-50379,13764,Someone shoves the guitar at someone. Someone,Someone shoves the guitar at someone.,Someone,gold,allows an amused smile.,takes the ball into someone's hand and pushes him out to the pool.,walks off as someone holds the guitar.,shakes his head and it covers his cheeks as it scrolls through the page.,2\n2144,lsmdc0009_Forrest_Gump-50379,13760,\"Man tries to grab someone, but someone shoves him down too. Someone\",\"Man tries to grab someone, but someone shoves him down too.\",Someone,gold,takes off in someone the chevy.,\"climbs up onto the stage and picks someone up, guitar and all, and carries her.\",straightens his coat nearly!,\"pulls up to the apartment door, still in someone's direction as someone tries to look at his intersection.\",1\n2145,lsmdc0009_Forrest_Gump-50379,13765,Someone follows someone over a bridge outside the night club. Someone,Someone follows someone over a bridge outside the night club.,Someone,gold,sits at a restaurant.,raging atmosphere seems quite full.,turns and looks over the bridge.,\"leads a funeral of packed people, children and umbrellas across the compound.\",2\n2146,lsmdc0009_Forrest_Gump-50379,13763,Someone steps back in surprise. Someone,Someone steps back in surprise.,Someone,gold,shoves the guitar at someone.,looks self - consciously.,hurries after him and gets back into his chair.,'s brow knit and drops her gaze.,0\n2147,anetv_gN27GB5txG8,13493,A black screen with three rows of Arabic writing is shown. A young girl then,A black screen with three rows of Arabic writing is shown.,A young girl then,gold,\"appears, written in a white dressing room with trainers, playing with stick, and twirling.\",\"photographs the man in tattoos, a mask and mask.\",gets down the mouth of the stage and walks to the camera and picked up her hair.,comes into the bathroom and begins to wash her hands.,3\n2148,lsmdc3012_BRUNO-4161,16961,He talks on his cell. He,He talks on his cell.,He,gold,repeats this time with a product.,puts a pair of shoes in his shirt.,\"steps away, gesturing for us to stay back.\",hangs his father anxiously as he gallops past the boys.,2\n2149,lsmdc3012_BRUNO-4161,16960,The guards easily shove him back. He,The guards easily shove him back.,He,gold,\"bursts in, wielding the flamethrower.\",pulls a flotation device out of them.,talks on his cell.,blocks his opponent's exit.,2\n2150,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,603,Someone stretches out his hand. And someone,Someone stretches out his hand.,And someone,gold,looks at her friend expectantly.,is reluctantly drawn towards him.,falls to his knees.,waves to the group.,1\n2151,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,604,Someone looks into the Mirror of Erised. Someone,Someone looks into the Mirror of Erised.,Someone,gold,\"uses the bottle to support himself, then finds a gold cover on the door.\",stares at his reflection.,scratches the back of his head.,is wrapped in someone's arms as she continues to iron stone understand with someone.,1\n2152,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,606,\"His reflection stares back at someone, then puts its hand in its pocket and takes out a red stone. His reflection\",\"His reflection stares back at someone, then puts its hand in its pocket and takes out a red stone.\",His reflection,gold,\"winks at someone, shows him the stone, and put it back in its pocket.\",shows someone's face.,is by tiny moonlight spreading across the tiny face.,shows someone's shadow cast across the clothes.,0\n2153,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,607,\"His reflection winks at someone, shows him the stone, and put it back in its pocket. Secretly, someone\",\"His reflection winks at someone, shows him the stone, and put it back in its pocket.\",\"Secretly, someone\",gold,rides his horse in garden.,feels in his own pocket.,\"lies on his bed, then points to a dresser.\",smiles as he watches the dance with the last.,1\n2154,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,605,Someone stares at his reflection. His reflection,Someone stares at his reflection.,His reflection,gold,appears into an icy over then snaps his lips gaze.,\"stares back at someone, then puts its hand in its pocket and takes out a red stone.\",darkens the sediment 'rhythm.,\"is large and handsome, slight green and gay with his color.\",1\n2155,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,608,Someone unwinds the turban from his head. A horrible face,Someone unwinds the turban from his head.,A horrible face,gold,sees from the darkness and throws herself at him.,\"appears, growing out of the back of someone's head.\",starts to look and it writhes.,is shown as he uses its hand to line through the vines.,1\n2156,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,609,\"A horrible face appears, growing out of the back of someone's head. The eyes sunk in dark sockets, and the skin\",\"A horrible face appears, growing out of the back of someone's head.\",\"The eyes sunk in dark sockets, and the skin\",gold,fall out to green.,moving bitter shot sends orange sparks flying about the sky.,becomes a wrinkled face.,stretched over the bony skull.,3\n2157,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100337,18824,Someone gets to his feet. Someone,Someone gets to his feet.,Someone,gold,glances back the way they came.,leaps almost from the platform as someone contemplates the ground with the strong wind.,goes over his shoulder towards a factory where the body builder dunks him.,goes back to normal.,0\n2158,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100337,18825,Someone glances back the way they came. Someone,Someone glances back the way they came.,Someone,gold,\"leaves his seat, and someone can get into the car.\",is a little way beyond someone with his back to him.,has his face turned to face someone.,sits closer to someone as he takes a seat across from him.,1\n2159,lsmdc1007_Spider-Man1-74225,12195,Muscular arm and a clenched hand have entwined in the web. The hand,Muscular arm and a clenched hand have entwined in the web.,The hand,gold,\"points to their missing reflection in a jamie lined, embossed valley.\",any rope is displayed on the lines of other items.,stretches up and catches hold of more silk threads.,holds on the spiked blue.,2\n2160,lsmdc1007_Spider-Man1-74225,12194,\"Then it's as if ones punching through a red, smoky tunnel like the inside of an archery, but always the spider's web is there. Muscular arm and a clenched hand\",\"Then it's as if ones punching through a red, smoky tunnel like the inside of an archery, but always the spider's web is there.\",Muscular arm and a clenched hand,gold,play beat like the cameraman.,have entwined in the web.,\"is an cia doctor with a gun around his neck, someone sits in the cafe with the guards.\",stand on the stairs beside the altar.,1\n2161,lsmdc1011_The_Help-78391,2407,\"Sometime later someone puts her notes in her briefcase. At the Holbrooks', someone with her hair in curling clips\",Sometime later someone puts her notes in her briefcase.,\"At the Holbrooks', someone with her hair in curling clips\",gold,goes through the reading house.,is scowling at the newspaper.,\", she stares through the door.\",sprinting after a grand sidewalk.,1\n2162,lsmdc1011_The_Help-78391,2409,Her eyes shoot up at someone who is clearing away some dishes. Someone,Her eyes shoot up at someone who is clearing away some dishes.,Someone,gold,\"tries himself, stumbling.\",gets up and puts his hands in the mud.,\"goes towards the kitchen, then stops and puts the plates back down.\",appears and faces her apologetically.,2\n2163,lsmdc1011_The_Help-78391,2408,\"At the Holbrooks', someone with her hair in curling clips is scowling at the newspaper. Her eyes\",\"At the Holbrooks', someone with her hair in curling clips is scowling at the newspaper.\",Her eyes,gold,take to the two jars of red light.,shoot up at someone who is clearing away some dishes.,meet each holding a tight stare at her.,are filled with tears as someone gets in a coffee cup.,1\n2164,lsmdc1011_The_Help-78391,2410,People both lower their newspapers. He,People both lower their newspapers.,He,gold,gives more expectant faces and laugh.,glances inside and releases his coffee.,pecks his wife on the cheek and goes.,walks out the car window.,2\n2165,anetv_AyYpsQ4xOo8,13104,The woman peeks out from behind a wall. The woman,The woman peeks out from behind a wall.,The woman,gold,turns open the window.,removes the pink laces.,looks at a laptop screen with a man.,sets something in front of the lowest portion of the trampoline.,2\n2166,anetv_AyYpsQ4xOo8,13106,\"The man applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time. The woman\",\"The man applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time.\",The woman,gold,then continues to shave her hair and arm.,stops in the tattoo parlor and continues talking.,resumes knitting while she talks.,shows the completed tattoo while talking to the camera.,3\n2167,anetv_AyYpsQ4xOo8,13105,The woman looks at a laptop screen with a man. The man,The woman looks at a laptop screen with a man.,The man,gold,throws a second dart as he bike.,puts the tools up and continues sanding the services.,lays on the end down talking to a young man standing.,\"applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time.\",3\n2168,anetv_uqzy1FAUpPM,6082,He is running down the lane and the he jumps 3 times into the sand. He,He is running down the lane and the he jumps 3 times into the sand.,He,gold,keeps walking along the cliff into the camera.,runs out of the pit happily.,gets four blocks apart by fast traffic.,is alone until an inch further into shot.,1\n2169,anetv_uqzy1FAUpPM,6080,A man gets ready to to preform an event. He,A man gets ready to to preform an event.,He,gold,is turning the pole and spinning in circles.,puts the ring on his finger.,mounts the beam and swings it backward.,begins to start running fast.,3\n2170,anetv_uqzy1FAUpPM,6085,He blows a kiss to the crowd. He,He blows a kiss to the crowd.,He,gold,\"jump back, stand.\",goes and starts hugging fans.,leads the way back into the apartment against the modest clapboard house.,sits inside the kitchen carrying a tray of food.,1\n2171,anetv_uqzy1FAUpPM,6081,He begins to start running fast. He is running down the lane and the he,He begins to start running fast.,He is running down the lane and the he,gold,\"adds thanks, nails and trees have melted.\",is holding onto people.,jumps 3 times into the sand.,can not stop hitting it instead.,2\n2172,anetv_uqzy1FAUpPM,6083,He runs out of the pit happily. He,He runs out of the pit happily.,He,gold,\"touches someone's neck but as he looks at the street, someone stops and grabs the newspaper from his locket.\",continues to walk around cheering as it cuts to the crowd and announcers.,\"throws the long run to a pool set, playing a game.\",is seen climbing on a plane and stomping down onto a machine and snowy jumps on top of him.,1\n2173,anetv_uqzy1FAUpPM,6084,He continues to walk around cheering as it cuts to the crowd and announcers. He,He continues to walk around cheering as it cuts to the crowd and announcers.,He,gold,slaps the wall in front of other men and cuts them off with everyone on their hands.,bends forward and starts moving back and forth in the woods.,then close up to the dean with some smile.,blows a kiss to the crowd.,3\n2174,anetv_gXffXyAkcHM,7229,A young girl in a white sports uniform is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool. The girl,A young girl in a white sports uniform is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool.,The girl,gold,appears to finish the task over toothpaste while looking up at the camera.,stands on the balance beam and stands by the goalie again.,swings herself beneath around the bar.,turns a sharp and punctures her right hand mounts the pommel hips.,2\n2175,anetv_gXffXyAkcHM,7228,A girl performs gymnastics on uneven bars at a professional sports event. A young girl in a white sports uniform,A girl performs gymnastics on uneven bars at a professional sports event.,A young girl in a white sports uniform,gold,shimmies her slim foot.,is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool.,starts doing flip flips in a club.,stands next to them.,1\n2176,anetv_gXffXyAkcHM,7230,The girl swings herself beneath around the bar. The girl,The girl swings herself beneath around the bar.,The girl,gold,\"grabs someone, throws her down, and flings him against the wall.\",turns around and does the same move in the opposite direction on the bars.,dismounts and lands on a mat on a large mat on the ground.,spins and sinks to the ground.,1\n2177,anetv_gXffXyAkcHM,11265,A gymnast flips around a bar numerous times. She,A gymnast flips around a bar numerous times.,She,gold,continues flipping over and over.,\"puts on the bar, flips and dismounts.\",is seen break dancing and dancing.,spins and does several flips on the balance beam.,0\n2178,anetv_CZveW9zX0s8,2128,A man is shown speaking to the camera and leads into a woman trimming the fur on a dog. The,A man is shown speaking to the camera and leads into a woman trimming the fur on a dog.,The,gold,speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs.,piglets out on the high wall.,shows how to shave the dog's shovel as well as a dog.,hold up the snow while talking to a camera and raking it in.,0\n2179,anetv_CZveW9zX0s8,2129,The speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs. More shots of dogs held,The speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs.,More shots of dogs held,gold,are shown throughout the floor and equipment seen catching them.,are shown as well as frisbees and groups on for a bit while she starts to laugh.,are shown with shots shots of people and bumps press dogs.,are shown while the man speaks and the camera pans around the building.,3\n2180,lsmdc1060_Yes_man-99130,2300,She gets off and undoes the strap on her blue helmet that has eyes painted on it. She,She gets off and undoes the strap on her blue helmet that has eyes painted on it.,She,gold,pauses on the street on a front row against a row of hundreds of silver cases.,continues exercising holds the buttons up for a brief angle.,grabs a few touches on lense and responds to work.,looks at someone with a suspicious frown.,3\n2181,lsmdc1060_Yes_man-99130,2297,He saunters over to a pump and swipes a card in it. He,He saunters over to a pump and swipes a card in it.,He,gold,\"stares thoughtfully with a solemn gaze, then blinks a moment.\",takes it out and rubs it on his arm agitatedly.,turns off his headlights.,shoots it from his jacket pocket.,1\n2182,lsmdc1060_Yes_man-99130,2296,\"He glances over at the garage shop, which is closed. He\",\"He glances over at the garage shop, which is closed.\",He,gold,\"creeps out, looks out, the window, and then rises and walks on the platform landing.\",\"walks over to him, shutting the door and walks across the room.\",saunters over to a pump and swipes a card in it.,looks into the bird's space.,2\n2183,lsmdc1060_Yes_man-99130,2299,Someone turns to look at the pretty dark - haired woman on the scooter. She,Someone turns to look at the pretty dark - haired woman on the scooter.,She,gold,pulls out her book.,gets off and undoes the strap on her blue helmet that has eyes painted on it.,looks around the half - filled car by several large buildings that looks similar.,watches someone from the kitchen window.,1\n2184,lsmdc1060_Yes_man-99130,2298,It asks if he wants credit. Someone,It asks if he wants credit.,Someone,gold,holds two tries last jump.,hides maintenance hard to be smart and draws out a dresser.,turns to look at the pretty dark - haired woman on the scooter.,knees him in her big hug.,2\n2185,lsmdc1060_Yes_man-99130,2295,\"Carrying a jerrycan, he reaches a garage. He\",\"Carrying a jerrycan, he reaches a garage.\",He,gold,rolls his trousers down onto the bed of a same stain.,departed and crashes down with a cloth.,\"glances over at the garage shop, which is closed.\",lifts up the bottle and a bottle of pepsi.,2\n2186,anetv_2VTEseqA5SA,1158,A man is standing inside a workshop. He,A man is standing inside a workshop.,He,gold,is using a welder using a metal welding device.,uses a broom to start the arm down.,\"leans over, welding a piece of metal.\",is smoking a hookah up talking.,2\n2187,anetv_2VTEseqA5SA,1159,\"He leans over, welding a piece of metal. Sparks\",\"He leans over, welding a piece of metal.\",Sparks,gold,\"he battle it, the stranger leans over and inspects the wall.\",fly as he welds.,\"his rifle, he stares.\",\"- someone comes to someone in a short box swivel, laughs, and raises a glass.\",1\n2188,anetv_2VTEseqA5SA,790,A man in a welding facility prepares to weld two pieces of metal together. He,A man in a welding facility prepares to weld two pieces of metal together.,He,gold,continues water skiing on a machine located on skis top.,\"is using an ax, while the fire begins to burn.\",demonstrates how to wax the surface with the hoses.,begins to the two pieces of metal together with a welding tool.,3\n2189,anetv_2VTEseqA5SA,791,He begins to the two pieces of metal together with a welding tool. Another man,He begins to the two pieces of metal together with a welding tool.,Another man,gold,talks about off ever.,walks into the video as they are recording and walked out of the screen just as the man is finishing the welding job.,picks up a metal box with the wheel.,runs up a frame and leaves with out walking into the room and start working out.,1\n2190,anetv_JAZu9CWEVbQ,11363,The surfer who is in front is happy to riding the wave for so long that he raises his two arms up in the air and then lowers it back down. The surfer in the back,The surfer who is in front is happy to riding the wave for so long that he raises his two arms up in the air and then lowers it back down.,The surfer in the back,gold,\"then ends the video around a boy who is then pushed down on the waves back across him, up in the air.\",begins to lose balance and falls off of his board while the man in the front is still standing up.,holds a large red rope with his hand.,looks out back under the water and begins of volleyball on the sand until the coast is shown to end on a shore.,1\n2191,lsmdc3015_CHARLIE_ST_CLOUD-968,10403,\"He turns, then crosses to the door and opens it. Finding no one there, he\",\"He turns, then crosses to the door and opens it.\",\"Finding no one there, he\",gold,gets up and answers his cell.,hurries back to the table.,continues to peel away.,continues by holding the remote.,1\n2192,lsmdc3015_CHARLIE_ST_CLOUD-968,10408,Someone waits for him in a clearing between grave plots. She,Someone waits for him in a clearing between grave plots.,She,gold,\"holds him to her feet, and gently raises her enormous arms.\",is hugging her the prowler.,\"exchanges a glance, then turns to the window and peers uncomfortably.\",lays her hands on his chest.,3\n2193,lsmdc3015_CHARLIE_ST_CLOUD-968,10405,\"He grabs a jar containing a burning candle, then ventures out into the darkness. He\",\"He grabs a jar containing a burning candle, then ventures out into the darkness.\",He,gold,\"stares down on him, unsure for a meal while looking slightly lost in thought.\",opens a torch and shines his flashlight into the boat.,shuts the door behind him and looks around.,puts her lips against his neck and they share into a kiss.,2\n2194,lsmdc3015_CHARLIE_ST_CLOUD-968,10407,She blows out the candle and runs off. Someone,She blows out the candle and runs off.,Someone,gold,turns the baby to a sideboard.,fires the grenade into the back of the dolls.,waits for him in a clearing between grave plots.,\"pauses, cradling the baby, over her mouth.\",2\n2195,lsmdc3015_CHARLIE_ST_CLOUD-968,10404,\"Finding no one there, he hurries back to the table. He\",\"Finding no one there, he hurries back to the table.\",He,gold,\"enters the clock, mounted on the back room.\",\"grabs a jar containing a burning candle, then ventures out into the darkness.\",\"is wearing a silver jacket and white pajamas, with black hair, white hair, worn, and tie while advertised.\",gets off the podium and stands up.,1\n2196,lsmdc3015_CHARLIE_ST_CLOUD-968,10406,He shuts the door behind him and looks around. He,He shuts the door behind him and looks around.,He,gold,whacks his reflection on a window.,proceeds against pale mist.,shoots his sword through the maize.,\"is asleep beside him, sitting on top of her and pulls someone into the washroom.\",1\n2197,anetv_FoPNGc6Lg8k,11868,She jumps up and down gracefully and then falls for a bit of a point deduction. She,She jumps up and down gracefully and then falls for a bit of a point deduction.,She,gold,parallels him high fives as they run off of the dance floor.,takes a turn slow before he returns and continues walking on the distance.,finishes her routine and gets a hug from her coach.,has it backward and is in step when she comes and looks behind it.,2\n2198,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59891,15561,\"Someone is sitting in front of the fire, with his pipe. staring into the flickering flames. Someone rushes into Bag End. he\",\"Someone is sitting in front of the fire, with his pipe. staring into the flickering flames.\",Someone rushes into Bag End. he,gold,stops and picks up the ring at his feet.,grabs to brace himself and gets to his feet.,opens and holds up books.,\"takes down the torch, but stops.\",0\n2199,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59891,15560,Someone slowly reaches for the ring. Someone,Someone slowly reaches for the ring.,Someone,gold,aims her wand in the holes.,\"is sitting in front of the fire, with his pipe.\",stares at the bears.,\"brings both hands over the painted rim, cupping the finger with his thumb.\",1\n2200,anetv_VoQ2VhCqir0,11261,Men is holding a bucket and is standing in the oof of a house and its working on it. man,Men is holding a bucket and is standing in the oof of a house and its working on it.,man,gold,is in a room stretching and talking to the camera.,is chopping a piece of wood from a grassy table to stand with a little stir.,is on the side of the bridge drinking and doing how to perform the the inside.,is doing the mix in a bucket in a floor and in the roof again.,3\n2201,anetv_BetFWvm92nM,13766,\"After, the young lady spits the liquid and then she pock the cheek of the girl who spits. Next, the girl\",\"After, the young lady spits the liquid and then she pock the cheek of the girl who spits.\",\"Next, the girl\",gold,grabs the girl and they continue fighting.,shakes her paw again.,throws the toothbrush up.,\"turns on the faucet of the bathtub and bend, after the girl turns off the faucet and clean her hands while speaking.\",3\n2202,anetv_CSsilC4QbB4,3396,He dives in his scuba gear. He,He dives in his scuba gear.,He,gold,stands on the edge of the pool.,bounces the ball into the water.,\"explores the depths of the bay, looking at coral and fish.\",does a high dive in the water.,2\n2203,anetv_CSsilC4QbB4,9803,We see a person pushed in the water come up under the boat. We,We see a person pushed in the water come up under the boat.,We,gold,see the ending title screen.,watch as the man swims.,see the people diving into the water.,see a person sitting on the wave.,0\n2204,anetv_CSsilC4QbB4,3395,A man climbs out of a boat to the water. He,A man climbs out of a boat to the water.,He,gold,goes in with someone and high fives a man riding along the water.,dives in his scuba gear.,lifts his water rafts and sail down the slope in his raft.,flies and throws the kite off into the water.,1\n2205,anetv_CSsilC4QbB4,9800,\"A man in scuba gear steps off a boat into the ocean, rewinds and repeats. We\",\"A man in scuba gear steps off a boat into the ocean, rewinds and repeats.\",We,gold,are trying to maintain the body of water.,see other people diving into the water and rewind and repeat.,something on the dock below.,shows two women with goats while several people are around.,1\n2206,anetv_cGNkR-JvaJs,15636,The woman is sitting in a chair next to the pool table talking into the microphone. A Maxim logo,The woman is sitting in a chair next to the pool table talking into the microphone.,A Maxim logo,gold,flashes on the screen.,appears onto a black screen.,is shown in associated clips of the reporter talking to the camera.,is being shown on the screen.,0\n2207,anetv_cGNkR-JvaJs,15630,The man is now teaching the woman how to shoot the pool ball while standing behind her. The woman makes the shot and they,The man is now teaching the woman how to shoot the pool ball while standing behind her.,The woman makes the shot and they,gold,celebrate with a high five.,swim while the camera goes to celebrate.,hit the ball back and forth over the net.,cut it and see that split second shot.,0\n2208,anetv_cGNkR-JvaJs,15631,The woman makes the shot and they celebrate with a high five. The man,The woman makes the shot and they celebrate with a high five.,The man,gold,demonstrates in the lady's key and the man playing.,is telling the woman how to make another shot.,dives for the board and talks to the camera.,executes a roll as he passes the cup.,1\n2209,anetv_cGNkR-JvaJs,15623,A man is playing pool behind a blue pool table. The woman,A man is playing pool behind a blue pool table.,The woman,gold,continues talking in front of the pool table.,walks alongside the pool holding legs.,takes two large cups of water.,is attempting to hit the ball out of the net.,0\n2210,anetv_cGNkR-JvaJs,15628,It flashes back to the pool table. The man and woman continue talking and the woman,It flashes back to the pool table.,The man and woman continue talking and the woman,gold,holds a white towel to see the boy and his left.,is a first person starting a cake.,laughs at what the man is saying.,starts separating her feet from the table.,2\n2211,anetv_cGNkR-JvaJs,15627,The man and woman continue talking to each other. It,The man and woman continue talking to each other.,It,gold,'s the ball making a crazy scene.,see a credit card on screen.,\"continues eating a knife on the table, then the woman walk towards her rooms and start to talk about the new act.\",flashes back to the pool table.,3\n2212,anetv_cGNkR-JvaJs,15622,A woman talking into a microphone wearing a white shirt. A man,A woman talking into a microphone wearing a white shirt.,A man,gold,is playing pool behind a blue pool table.,is then shown gesturing with a pair of sharpening steel.,\"is shown, playing cards and checking her on a table.\",taps the other side on a table and lifts it over their head.,0\n2213,anetv_cGNkR-JvaJs,15633,She attempts the shot and makes it and they high five again. They,She attempts the shot and makes it and they high five again.,They,gold,dive backward along the ledge without walking rush around and jumping when they reach the middle of the hoop.,\"some time doing various springs and flips, one of the students bowling moves back and forth.\",continue talking and laughing.,climb off the wall and lay her down.,2\n2214,anetv_cGNkR-JvaJs,15629,The man and woman continue talking and the woman laughs at what the man is saying. The man,The man and woman continue talking and the woman laughs at what the man is saying.,The man,gold,bends and does the same thing the whole time.,is now teaching the woman how to shoot the pool ball while standing behind her.,continues to talk to the camera as he talks.,points the woman she is doing and then talks to the camera.,1\n2215,anetv_cGNkR-JvaJs,15632,The man is telling the woman how to make another shot. She,The man is telling the woman how to make another shot.,She,gold,pass on a man who tries to get drinks from the car one last time.,attempts the shot and makes it and they high five again.,\"stand, shoveling the entire subject out with a mascot, which she has not assembling.\",is shown with a series of ingredients and location different types.,1\n2216,anetv_cGNkR-JvaJs,15626,The man plays pool again. The man and woman,The man plays pool again.,The man and woman,gold,were speaking to the camera showing the movements each time the three are being a black screen.,continue talking to each other.,fall in a semi circle.,hit the ball back and forth restlessly.,1\n2217,anetv_cGNkR-JvaJs,15625,The woman and the man talk to each other. A trophy,The woman and the man talk to each other.,A trophy,gold,goes on the woman cuts a tree and catches the toy in the house.,touches a female on stage again.,comes to the man while a woman is playing a game of hop scotch.,flashes on the screen.,3\n2218,anetv_cGNkR-JvaJs,15621,A sports logo flashes on the screen. A woman,A sports logo flashes on the screen.,A woman,gold,talking into a microphone wearing a white shirt.,is shown putting the mask onto it.,stands outside holding a horn in her hand.,walks in an indoor field doing a jump over a pool field.,0\n2219,anetv_cGNkR-JvaJs,15624,The woman continues talking in front of the pool table. The woman and the man,The woman continues talking in front of the pool table.,The woman and the man,gold,talk to each other.,play rock paper scissors.,\"she begins playing with a small arm in the air, swinging and doing various acrobatic moves.\",play with the woman.,0\n2220,anetv_cGNkR-JvaJs,15635,The woman lays down on the pool table and he shoots a ball out of her mouth. The woman,The woman lays down on the pool table and he shoots a ball out of her mouth.,The woman,gold,comes up again and brushes the dough around the board.,is sitting in a chair next to the pool table talking into the microphone.,poses with herself while laughing and drinking.,is shown again playing the scissors.,1\n2221,anetv_YwUW6Qh_5TA,5640,A gymnast is seen standing with his arms out and hops on a board. He then,A gymnast is seen standing with his arms out and hops on a board.,He then,gold,begins performing bungee spinning around a area while others watch on the side.,begins spinning himself around while judges watch on the sides.,looks off into the distance before jumping into a pit of people.,begins to climb up and down from the mat.,1\n2222,anetv_YwUW6Qh_5TA,5641,He then begins spinning himself around while judges watch on the sides. He,He then begins spinning himself around while judges watch on the sides.,He,gold,continues playing and ends by lighting onto the sand.,continues doing low acts.,continues his routine and jumps down with his arms up.,goes back and begins spinning around around in the end and performing several tricks on.,2\n2223,lsmdc3045_LAND_OF_THE_LOST-21274,17161,\"Someone shoots someone a look of concern. Later in the pool, someone\",Someone shoots someone a look of concern.,\"Later in the pool, someone\",gold,looks at someone with bloodshot eyes.,lays his hand on someone's leg.,lights a cigarette and puts a cigarette on his mouth.,takes off his sunglasses.,0\n2224,lsmdc3045_LAND_OF_THE_LOST-21274,17168,\"Someone, someone, and someone all turn their heads in unison. It\",\"Someone, someone, and someone all turn their heads in unison.\",It,gold,\"'s a giant crab, snapping two huge claws.\",sits.,\", they arrive at the bridge where someone is sitting there, using her plainly.\",\"at the picture, someone enters through the front, disappears from the rooms, lingers on the few steps of passing within.\",0\n2225,lsmdc3045_LAND_OF_THE_LOST-21274,17167,\"On the distant horizon, a huge creature crawls toward them. Someone, someone, and someone all\",\"On the distant horizon, a huge creature crawls toward them.\",\"Someone, someone, and someone all\",gold,clamber down from the deck below.,turn their heads in unison.,are taking a big place breaths.,emerge from the hot muck.,1\n2226,lsmdc3045_LAND_OF_THE_LOST-21274,17163,\"Before her, a triangle rises from the ground. From a distance, the crystalline pylon\",\"Before her, a triangle rises from the ground.\",\"From a distance, the crystalline pylon\",gold,almost disappears against the cloudy sky.,appear on the sea as the ship disappears.,seems to rise fifteen in the distance.,throws a faint credit of who cue.,0\n2227,lsmdc3045_LAND_OF_THE_LOST-21274,17165,\"Now, clumps of vines hang from the rough - hewn walls of the cavern. Entering, someone\",\"Now, clumps of vines hang from the rough - hewn walls of the cavern.\",\"Entering, someone\",gold,finds someone locked in a pickup with his arms around him.,\"spots the android climbing her long, dark tunnel.\",looks over at the finely - carved vase under the green girder and covers light.,\"finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow.\",3\n2228,lsmdc3045_LAND_OF_THE_LOST-21274,17164,\"Someone approaches it, her hand still on the Tachyon Amplifier. Now, clumps of vines\",\"Someone approaches it, her hand still on the Tachyon Amplifier.\",\"Now, clumps of vines\",gold,hang from the rough - hewn walls of the cavern.,hang low in the hearth and sheets.,flap on the other side of the towering sun.,spot a clear bath.,0\n2229,lsmdc3045_LAND_OF_THE_LOST-21274,17166,\"Entering, someone finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow. Meanwhile, someone, someone, and someone\",\"Entering, someone finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow.\",\"Meanwhile, someone, someone, and someone\",gold,restrain someone from his truck.,enter into the alley passage.,lie on their backs on a dune.,step down a corridor.,2\n2230,lsmdc3045_LAND_OF_THE_LOST-21274,17162,\"Gazing across the desert, she grins. Stepping over the pristine white sand, someone\",\"Gazing across the desert, she grins.\",\"Stepping over the pristine white sand, someone\",gold,bumps someone's car.,\"snaps up the circuit light, and swings at.\",tosses a rusty chain link to its trailer.,carries the device about 100 yards from the pool.,3\n2231,anetv_7_5VT6QCqNI,2896,The man hands the woman the brush and blow dryer. The woman,The man hands the woman the brush and blow dryer.,The woman,gold,dries the hand and sprays the hair.,brushes the hair of the woman with the comb.,proceeds to dry her own hair.,places her hand away while the brush blow dries the woman's hair.,2\n2232,anetv_7_5VT6QCqNI,2898,The man resumes blow drying the woman's hair. The man,The man resumes blow drying the woman's hair.,The man,gold,waves in the mirror.,sprays the woman's hair with hairspray.,'s fingers begin to all the stairs and rotate before the man and puts the cats on the table.,hazel her back with products.,1\n2233,anetv_7_5VT6QCqNI,2892,A man is talking to the camera while styling a woman's hair. The man,A man is talking to the camera while styling a woman's hair.,The man,gold,is showing various hair care products.,then sits up and picks up the lotion on his hair.,uses scissors to hold her hair down and shows various angles of the finished hair.,ties the hair up while he ends.,0\n2234,anetv_7_5VT6QCqNI,2894,The man is drying the woman's hair with a blow dryer. The man,The man is drying the woman's hair with a blow dryer.,The man,gold,shows a hair brush.,grabs the shoe and sprays it with the hair dryer.,irons the arm with a hair dryer.,washes the hair with a hair dryer.,0\n2235,anetv_7_5VT6QCqNI,2897,The woman proceeds to dry her own hair. The man,The woman proceeds to dry her own hair.,The man,gold,resumes blow drying the woman's hair.,tends to the man ties the sheet while still having her.,continues speaking to the camera and continues washing her hair in the end.,rinses gel and begins polishing the corner of the shoe.,0\n2236,anetv_7_5VT6QCqNI,2893,The man is showing various hair care products. The man,The man is showing various hair care products.,The man,gold,is brushing his dogs hair.,is drying the woman's hair with a blow dryer.,continues painting the fence.,\"walks out of the room, mopping the floor.\",1\n2237,anetv_7_5VT6QCqNI,2895,The man shows a hair brush. The man,The man shows a hair brush.,The man,gold,smooths the shoe with a large brush.,cuts the hair and styles it with shampoo.,begins brushing his hair and shows the back to the horse.,hands the woman the brush and blow dryer.,3\n2238,lsmdc3022_DINNER_FOR_SCHMUCKS-10304,18080,Someone gives him the finger and goes. Someone,Someone gives him the finger and goes.,Someone,gold,ball rubs someone on.,\"on the stool, someone is with someone.\",kid stands with her shift and puts on her glove.,arrives home and finds someone already there.,3\n2239,anetv_h67ctuwV-Nw,14522,A man is on a canoe in the river holding a paddle. man,A man is on a canoe in the river holding a paddle.,man,gold,is walking next to a man sitting on the boat board.,sits in a kayak near the river holding sea objects.,is standing on the canoe and start paddling in the river going down rapids.,is pushed in front of the screen to get the canoe out of the water.,2\n2240,anetv_h67ctuwV-Nw,12550,A man in red jacket rode his canoe and started paddling through the water. The man,A man in red jacket rode his canoe and started paddling through the water.,The man,gold,hold at the end and turn to the side of the river.,in the backyard begins looking down into the water.,narrates the water and cross - in towards the sea of water and dive.,slide down the rocks and waves in the water.,3\n2241,anetv_f07eWOCKLI8,9030,Another person walks into frame showing off a coffee cup and leads into the girls decorating a tree. The girls,Another person walks into frame showing off a coffee cup and leads into the girls decorating a tree.,The girls,gold,speak to one another and begin raking the ingredients into each other.,hands are seen mixing food into a bowl.,continuously put ornaments on the tree and end holding their arms up.,give instructions to the girl at the end and walks back and speaks to the camera.,2\n2242,anetv_f07eWOCKLI8,9029,Two people are seen dancing in front of the camera in front of a christmas tree. Another person,Two people are seen dancing in front of the camera in front of a christmas tree.,Another person,gold,helps the other on a horse.,walks into frame showing off a coffee cup and leads into the girls decorating a tree.,picks up her paddle towards the camera and walks away.,is seen walking behind the tree and begins laying in front of the tree.,1\n2243,anetv_f07eWOCKLI8,2577,Women are decorating a Christmas tree. A woman,Women are decorating a Christmas tree.,A woman,gold,stands in the front of a christmas tree and begins kite taking her batons in the air in front of the leafs.,is holding a coffee mug in her hand.,on black jeans and a colorful robe is grooming the horse.,is wearing a red bob.,1\n2244,anetv_4E8rMLHIpag,15415,A man in a black hat is talking to the camera. He,A man in a black hat is talking to the camera.,He,gold,starts playing a violin on his shoulder.,is a man in a room wearing shoes.,begins looking around while he talks.,begins practicing on snow in a park.,0\n2245,anetv_4E8rMLHIpag,15416,He starts playing a violin on his shoulder. He,He starts playing a violin on his shoulder.,He,gold,shows the camera to camera.,uses two fingers to cut the bagpipes.,stops playing and puts the violin down to his side.,twirls the violin in his right hand and presses the buttons of his accordion.,2\n2246,anetv_RRFC2NrZSf4,16624,The man stops hitting the bongos and rests his left hand on the lighter colored bongo. Then the man,The man stops hitting the bongos and rests his left hand on the lighter colored bongo.,Then the man,gold,moves his right leg as if he is going to stand up and the bongo moves without his leg support.,plays the shuffleboard while the first woman covers the back of the chair.,play drums continuously and stops to look at the camera.,flips to a drum stand and begins to twirl by the song.,0\n2247,anetv_RRFC2NrZSf4,16623,\"A man wearing a black shirt that has white words that say Plays well with self is sitting in a home and playing on two different bongos that are different in size, design and color. The man\",\"A man wearing a black shirt that has white words that say Plays well with self is sitting in a home and playing on two different bongos that are different in size, design and color.\",The man,gold,stops hitting the bongos and rests his left hand on the lighter colored bongo.,picks up the guitar and gets the guitar on his feet while he goes and begins to dance.,\"and reporter then begin fencing, swirls up and down on one buff step, performs serious tennis in the background.\",begins playing the sax and pauses by talking to the camera where he's all speak to the camera.,0\n2248,anetv_Ay6oxBYCSnU,17669,One team scores a goal. Everyone,One team scores a goal.,Everyone,gold,runs off when another player joins them.,is no more ecstatic.,cheers about the goal.,dives for their scoring.,2\n2249,anetv_Ay6oxBYCSnU,17668,Several players are on an ice rink. They,Several players are on an ice rink.,They,gold,kick the ball into the field.,take autographs of the game.,take up to hit a ball with a stick.,are playing hockey against each other.,3\n2250,anetv_yOFIXQCbSqc,3052,The group begin throwing the ball around while swimming around each other. The group,The group begin throwing the ball around while swimming around each other.,The group,gold,continues playing basketball while all of them continue to celebrate.,celebrates with others celebrating.,continues swimming and playing ball with each other.,continues to cheer while people cheer against the sidelines.,2\n2251,anetv_yOFIXQCbSqc,3051,A large group of people are seen swimming around a pool with a man talking on the side. The group,A large group of people are seen swimming around a pool with a man talking on the side.,The group,gold,continues to throw the ball back and fourth to one another as well as giving it a go.,begin throwing the ball around while swimming around each other.,continue to play more volleyball while performing high jumps.,continues to play and continue to jump as well as watch people sitting on the side.,1\n2252,anetv_RX8YG2zlyUo,10807,\"There are horses, and they are getting off a trailer. They\",\"There are horses, and they are getting off a trailer.\",They,gold,arrange many flowers in the yard.,hit the mower back and forth in the water.,ride the camels and ride them on the camels.,\"go to ride through the desert, through different portions of the desert.\",3\n2253,anetv_8XxsgEw49p0,4618,Bob Ross is seen speaking to the camera while reading off a piece of paper in his hands. Another man,Bob Ross is seen speaking to the camera while reading off a piece of paper in his hands.,Another man,gold,is seen standing next to him and begins painting while a computer also paints on the side.,comes down the counter showing off the ice to the camera.,is shown flipping on the board while sitting on the bench and looking off into the distance.,plays paintball in front of him.,0\n2254,anetv_8XxsgEw49p0,15241,The video is now skipped around as the person talks about the video. White text,The video is now skipped around as the person talks about the video.,White text,gold,is displayed across the screen.,is seen coming up the screen.,is shown in the bottom of the screen.,is seen on the screen.,3\n2255,anetv_8XxsgEw49p0,15240,A video of a painter and his son as the painter is asked questions on painting techniques and his son demonstrates how to do them on a canvas while in the corner of the screen a digital paint program is being shown from a computer screen. The screen changes and a voice comes over about an art piece he was doing and the video,A video of a painter and his son as the painter is asked questions on painting techniques and his son demonstrates how to do them on a canvas while in the corner of the screen a digital paint program is being shown from a computer screen.,The screen changes and a voice comes over about an art piece he was doing and the video,gold,is paused showing a home screen of a computer.,comes with the other room graphics for the video.,gains the holes cast on an color highlighting pumpkin.,ends with it fall into a finish line.,0\n2256,anetv_8XxsgEw49p0,4619,Another man is seen standing next to him and begins painting while a computer also paints on the side. The man,Another man is seen standing next to him and begins painting while a computer also paints on the side.,The man,gold,vacuums the floor while moving back and fourth.,continues rubbing down all the plaster and back down the same while the camera pans in around their movements.,continuously moves his hand into the bucket and wipes.,continues painting as bob watches and leads into him painting and showing off a picture as well as the computer.,3\n2257,anetv_8XxsgEw49p0,15242,A still picture of the artwork is shown as credits in yellow test roll. A computer made paining,A still picture of the artwork is shown as credits in yellow test roll.,A computer made paining,gold,is lathers up and cleaned off several courses.,snaps picture of a great boy playing hockey.,is shown as people are heard laughing and talking about the work.,appears around a tree where pallet found up all the colors.,2\n2258,anetv_tl2hDYGBfqU,13287,Men play professional soccer on a beach near the water. Players on the field,Men play professional soccer on a beach near the water.,Players on the field,gold,surrounded in deadly locations using the jump and touching obstacles.,cheer in the other play.,celebrate a victory and pose for a photo.,are red and black all some sky helmets.,2\n2259,anetv_tl2hDYGBfqU,13286,A Finale Coppa Italia beach soccer title screen appears featuring Sambenedettese and Catania. Men,A Finale Coppa Italia beach soccer title screen appears featuring Sambenedettese and Catania.,Men,gold,is dealing cards to a woman while standing in front of the images of old women.,appear over the screen.,play professional soccer on a beach near the water.,sits around a bar.,2\n2260,lsmdc3011_BLIND_DATING-657,8176,\"She holds her blouse closed over her chest. Now outside, They\",She holds her blouse closed over her chest.,\"Now outside, They\",gold,fight over one of the towers surrounding the titanic.,\"leans against the vehicle, peering out the shelf and finds a handgun.\",get into a swimming pool beneath a bridge.,\"watch him as he goes, finishing an apple.\",3\n2261,lsmdc3011_BLIND_DATING-657,8178,Someone's mother gravely leads them into the living room. Someone,Someone's mother gravely leads them into the living room.,Someone,gold,takes the folded envelope out of someone's hands.,\"stop outside a house with someone, while someone sits at the table with the bearded owner on a tray.\",\"stands in front of it, facing his parents.\",\"stops by the door, to the moment.\",2\n2262,lsmdc1057_Seven_pounds-97554,4396,\"Someone slams the phone down. Looking disturbed by his own actions, someone\",Someone slams the phone down.,\"Looking disturbed by his own actions, someone\",gold,\"steps up frame, gazing up sadly at his rescuer.\",drives the limo through toward balmoral.,claps his hands to his mouth and stares down.,steps away from the house irritably on his hind legs.,2\n2263,lsmdc1057_Seven_pounds-97554,4399,\"Pacing, someone stabs the air with a finger each time he calls out a name. Someone\",\"Pacing, someone stabs the air with a finger each time he calls out a name.\",Someone,gold,comes out of it.,smashes a chair against a coffee table.,grabs his bag and goes to investigate.,'s tone is ringing.,1\n2264,lsmdc1057_Seven_pounds-97554,4397,\"Looking disturbed by his own actions, someone claps his hands to his mouth and stares down. He\",\"Looking disturbed by his own actions, someone claps his hands to his mouth and stares down.\",He,gold,\"blinks, composes himself and lowers his hands.\",pushes a cock of food to his penis.,hurries out of the vessel.,\"leans in his face, his nose pressed up against the deep shade of the music.\",0\n2265,anetv_vAzTt06gpgE,7398,A group of people are running down a road with various people cheering and clapping on the sides. A woman,A group of people are running down a road with various people cheering and clapping on the sides.,A woman,gold,is playing with the parking card in sprinkles company that is on the beach.,is high fiving the people as well other runners.,is shown speaking around while using a pole and spinning a string around with a conductor.,is seen removing off with her stick around others and waving to the group.,1\n2266,anetv_vAzTt06gpgE,7399,A woman is high fiving the people as well other runners. More shots of people on the sides,A woman is high fiving the people as well other runners.,More shots of people on the sides,gold,are shown with tourists riding around on a line.,are interviewed as well as cheering and text is seen.,walk into action are shown end by people crashing into the camera and continuing all around the field.,are shown while the runners continue running.,3\n2267,anetv_G6FhQuR3_88,10181,The man in front grabs the microphone. The band,The man in front grabs the microphone.,The band,gold,plays the saxophone in front of them.,turns off and comes next to an advertisement.,speaks to people in the audience while dancing.,finishes playing their instruments.,3\n2268,anetv_G6FhQuR3_88,10180,We see men playing instruments in a plaza. The front man,We see men playing instruments in a plaza.,The front man,gold,sits on the bench between drums.,playing sets the circle close to the music.,is talking while the band plays and the band moves the rope to military base.,turns around to the men behind him.,3\n2269,lsmdc0032_The_Princess_Bride-66231,1565,\"Someone is clearly panicked and maybe someone is too, but he moves jauntily along, sword in hand. The giant trees, thick and black - green, look ominous as hell and they\",\"Someone is clearly panicked and maybe someone is too, but he moves jauntily along, sword in hand.\",\"The giant trees, thick and black - green, look ominous as hell and they\",gold,\"are there, dancing together, waiting.\",\"are tall, long and dark: and changed.\",\"shoot down, zooming in an wall and shooting targets.\",shield all but intermittent stripes of sun.,3\n2270,lsmdc0032_The_Princess_Bride-66231,1564,\"Great trees block the sun. Someone is clearly panicked and maybe someone is too, but he\",Great trees block the sun.,\"Someone is clearly panicked and maybe someone is too, but he\",gold,\"looks down to someone, a fancy barren, and track, grimy, dark valley overgrown with dead vegetation.\",\"moves jauntily along, sword in hand.\",has n't mind her on.,is bear if annoyed.,1\n2271,anetv_MysxDDxgHNo,2786,A boy releases a curling stone. Three boys,A boy releases a curling stone.,Three boys,gold,fight off the roof.,walk together across on the ice.,walk in front of a bull in a competition.,fall on several blocks.,1\n2272,anetv_MysxDDxgHNo,2785,Two boys that are sliding on their knees towards each other collide and fall back. A boy,Two boys that are sliding on their knees towards each other collide and fall back.,A boy,gold,lifts himself up from his temple.,releases a curling stone.,moves their head towards their movements.,spits off her hand with the slam!,1\n2273,anetv_6SHSstpZN1I,6517,The kids take off and start down the dirk track. The kids,The kids take off and start down the dirk track.,The kids,gold,do jump and cheers the candy mats.,run onto the riding man hood.,have a hard time turning to come up the dirt track.,are lifted down with rags.,2\n2274,anetv_6SHSstpZN1I,6518,The kids have a hard time turning to come up the dirt track. One of the boys,The kids have a hard time turning to come up the dirt track.,One of the boys,gold,has fallen and dropped his bike.,jumps down three on a stack of dirt.,slows and swaggers up with other adults.,is playing the drums with the same time as they do to catch him off.,0\n2275,anetv_g5BPyMdlurg,7362,Then someone else does a cartwheel and that same person does a round off. next someone does a front walkover and another girl,Then someone else does a cartwheel and that same person does a round off.,next someone does a front walkover and another girl,gold,makes the final routine upright.,spins again and the tiny dog does jump.,\"walks up to her, and spins a wheel several times.\",does a standing back handspring along with other people who are doing gymnastic moves.,3\n2276,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73195,11697,Someone reads as models pick outfits from a rack. Someone,Someone reads as models pick outfits from a rack.,Someone,gold,\"runs through a parking store followed by some tourist, who stands with photographs behind a cash register.\",turns around and faces a bespectacled waitress.,plunks himself down beside her and sighs.,stops and opens the large cage inches across the foyer.,2\n2277,anetv_3qkNnr1_78I,13465,A view of an old world European city is seen. The man,A view of an old world European city is seen.,The man,gold,sits on a the tight rope high up in the air.,enjoys a patio light while reading and watching playing at the fountain.,climbs off the bike and demonstrates how to talk talk while the staff listen to him.,is seen surfing into an airplane along surfing massive waves.,0\n2278,anetv_3qkNnr1_78I,773,A person is slacklining reach the mountain summit near a town. People,A person is slacklining reach the mountain summit near a town.,People,gold,slack to pass from a mountain to another mountain.,flip onto the ground in the sunset place.,searches his own chamber.,are riding on a screen going down a hill.,0\n2279,anetv_3qkNnr1_78I,774,People slack to pass from a mountain to another mountain. A man slacks,People slack to pass from a mountain to another mountain.,A man slacks,gold,huddles against a wall with his facial hair.,begins skateboarding on the road.,to pass from a summit to another summit.,is seen standing in a pool hitting the javelin.,2\n2280,anetv_q92zSoMudWU,2157,A group of men are seen looking off into the distance that leads into a soccer match. One man,A group of men are seen looking off into the distance that leads into a soccer match.,One man,gold,hit the ball back and fourth while another watch in the distance.,throws rope and runs to the camera while the camera captures his movements.,scores a goal and celebrates on the side.,is seen playing soccer around a large pool table while another man stands behind him and continues the ball.,2\n2281,anetv_q92zSoMudWU,15161,People are standing on sand wearing red shirts. They,People are standing on sand wearing red shirts.,They,gold,are lots of nailing hawaiian shirts.,are serving sand castles through the sand.,laugh with the yellow men talking to the camera.,are playing a game of soccer in the sand.,3\n2282,anetv_q92zSoMudWU,15162,They are playing a game of soccer in the sand. People,They are playing a game of soccer in the sand.,People,gold,are left watching the game.,are watching on the sides as they celebrate.,are watching them in the stands.,are playing volleyball in the sand.,2\n2283,lsmdc3057_ROBIN_HOOD-27395,7226,But the Frenchman rides out. Someone,But the Frenchman rides out.,Someone,gold,\"sets off in fast pursuit, leading his peers along a winding trail.\",is encased in the dirt.,backs out of the building.,someone stabbed him with his left hand.,0\n2284,lsmdc0005_Chinatown-48122,725,Someone smiles a little sheepishly. Again he,Someone smiles a little sheepishly.,Again he,gold,holds the two bracelet.,\"swallows, then leaves someone's apartment.\",laughs a little nervously.,pulls his head out of his coat.,2\n2285,anetv_dXTfrVz9A9o,16035,A man cleans the snow with a self lifted shovel that has a rod to impulse up the shovel. The man puts the shovel in the snow and it,A man cleans the snow with a self lifted shovel that has a rod to impulse up the shovel.,The man puts the shovel in the snow and it,gold,splits from the cabinet.,runs off in a pile.,lifts and throws snow.,walks across a hedge.,2\n2286,anetv_dXTfrVz9A9o,16037,The man shovel heavy hardened snow from the ground effortlessly. The person,The man shovel heavy hardened snow from the ground effortlessly.,The person,gold,moves around to head and arms and adds various markers.,shows trash to two.,shows the shovel that has behind a weight lifter.,puts his hand on the paw and starts to peel it on.,2\n2287,anetv_dXTfrVz9A9o,16036,The man puts the shovel in the snow and it lifts and throws snow. The man,The man puts the shovel in the snow and it lifts and throws snow.,The man,gold,pulls the hose up to the fence.,washes the back of his car in the courtyard.,changes back to the camera.,shovel heavy hardened snow from the ground effortlessly.,3\n2288,anetv_kuyuhXuMPX4,19430,After putting down sand he drinks a warm beverage. We,After putting down sand he drinks a warm beverage.,We,gold,zoom away from the time of a sailboat littered with broken glass.,reps renovation as before gets on the edge and serves the water.,see the ending credits screen.,of then speeds up.,2\n2289,anetv_kuyuhXuMPX4,19429,The man lays down and had a hard time breathing. After putting down sand he,The man lays down and had a hard time breathing.,After putting down sand he,gold,turns around and continues it.,begins to ride with his new body until the men stop.,drinks a warm beverage.,lands with a miniature orange in the left arm.,2\n2290,anetv_kuyuhXuMPX4,19426,A man stands in a garage with two shovels. We then,A man stands in a garage with two shovels.,We then,gold,see two trees from the riverbed from the camera.,see his shoveling supplies.,see a man snowboarding down the slope.,see young men in a black box with two sticks pointing at a contact plant like he can.,1\n2291,anetv_kuyuhXuMPX4,19425,We see the intro and intro scenes. A man,We see the intro and intro scenes.,A man,gold,is then seen roller skates outside a bar.,stands in a garage with two shovels.,cleans a guy with a christmas toy.,rides on a stationary rider.,1\n2292,anetv_kuyuhXuMPX4,19427,We then see his shoveling supplies. The man,We then see his shoveling supplies.,The man,gold,shows us his product and brushes a mower.,shows us campfire arrows.,picks up a bag and takes a seat next to the man in the house.,stretches and puts on his winter clothes.,3\n2293,anetv_kuyuhXuMPX4,19428,He sprays his shovel with nonstick spray and shovels his driveway. The man,He sprays his shovel with nonstick spray and shovels his driveway.,The man,gold,removes all of the snow from his car as the car continues.,lays down and had a hard time breathing.,peels the slack sander on the farm piece.,uses a shovel peeler to remove snow from a bushes and then hammers the roof in perfect pieces.,1\n2294,lsmdc3008_BAD_TEACHER-4129,11074,\"With a smile she brushes past him. Now in the gym, someone\",With a smile she brushes past him.,\"Now in the gym, someone\",gold,collects scattered dodge balls and sets them in a bag.,throws a light on someone.,opens the front door to a dark poufy outfit that shows someone's black t - and - white skirt.,notices someone forward on a wave.,0\n2295,lsmdc3008_BAD_TEACHER-4129,11075,\"A ball smacks him in the back. Turning, he\",A ball smacks him in the back.,\"Turning, he\",gold,throws out an instrument.,watches a glow play in the smart bathroom.,spits on a table.,finds someone striding over to him.,3\n2296,anetv_GJDl-whUpq4,2376,A woman is seen sitting in a chair knitting the hat. A cat,A woman is seen sitting in a chair knitting the hat.,A cat,gold,is seen standing next to the woman stepping on her while another cat sits behind.,is holding a brush and then clip the polish all around her nails.,is seen holding up a cat.,sits in a chair next to the camera while smiling.,0\n2297,anetv_GJDl-whUpq4,13913,The black cat is sitting right next to her and playing with the yarn while the brown cat is watching them. The black cat,The black cat is sitting right next to her and playing with the yarn while the brown cat is watching them.,The black cat,gold,is moving a small cat while a cat stands in front on them and licks the string and gave herself.,grabs the yarn ball and start playing with it.,walks along the sideline playing a keyboard drum while then straight and faster to sit on it.,begins to wake up and starts a little dance as she goes back to the naturedly with her hands.,1\n2298,anetv_GJDl-whUpq4,2377,A cat is seen standing next to the woman stepping on her while another cat sits behind. The other cat,A cat is seen standing next to the woman stepping on her while another cat sits behind.,The other cat,gold,continues cutting the cat's claws and cutting the claws of the cat.,steps in to the side and pets the cat carefully.,jumps up to the other and runs away.,faces down while the artist watch nails from the back.,2\n2299,anetv_GJDl-whUpq4,13912,\"There's a woman sitting on a cozy chair with her two cats next to her, knitting a black yarn hat. The black cat\",\"There's a woman sitting on a cozy chair with her two cats next to her, knitting a black yarn hat.\",The black cat,gold,emerges from the hole with the polish and pets the cat.,is then going on the cat nails.,is sitting right next to her and playing with the yarn while the brown cat is watching them.,is moving his legs together to show how to properly brush your teeth.,2\n2300,anetv_GJDl-whUpq4,13914,The black cat grabs the yarn ball and start playing with it. Then the brown cat,The black cat grabs the yarn ball and start playing with it.,Then the brown cat,gold,rubs the left paw off of the cat's lap and uses it on the cat's back.,is on his lap and holds a white ball that stands at the end and turns around it and eats it from the cat.,is to play and help her make a bunch.,goes under the chair and jumps up to grab the yarn and pulls it away.,3\n2301,anetv_OD7lx6blG9M,2479,\"A woman is in a kitching, flipping a pancake in a small skillet. She\",\"A woman is in a kitching, flipping a pancake in a small skillet.\",She,gold,\"places the ingredients into spoon and lemons, then put it into a mixing bowl.\",uses a flat brush to brush her chin.,is also chopped vegetables and sliced in a foil bowl.,\"flips the pancake several times, almost dropping it.\",3\n2302,anetv_OD7lx6blG9M,2480,\"She flips the pancake several times, almost dropping it. We\",\"She flips the pancake several times, almost dropping it.\",We,gold,lower the glass and.,cool the scrapyard have placed on the cake.,\"see a broken egg, and a dirty counter.\",is thrown around her.,2\n2303,anetv_OD7lx6blG9M,8296,A woman takes a pan off of a stove. She,A woman takes a pan off of a stove.,She,gold,holds up a stack of paper and cheese.,pushes the man back and forth on the stove.,\"soaks the food in a pan, then adds the cooked pasta to a pot.\",flips the food in the pan in the air a few times.,3\n2304,anetv_OD7lx6blG9M,8297,She flips the food in the pan in the air a few times. She,She flips the food in the pan in the air a few times.,She,gold,begins to tell her what to do.,\"runs at the end, making sure not to go to it.\",sets the pan back on the stove.,talks to the girl as she swings the rope.,2\n2305,anetv_OD7lx6blG9M,8298,She sets the pan back on the stove. An egg,She sets the pan back on the stove.,An egg,gold,sits in a cage on a table.,is in a stove.,is shown on the counter.,hangs above her shoulders as she watches them.,2\n2306,anetv_ui_CNb4FUtQ,5709,A security guard accosts him and escorts him away. The man,A security guard accosts him and escorts him away.,The man,gold,followed someone passes right the window.,stands up and walks away while playing.,lowers his child to more tv.,writes his cell on the top bed.,1\n2307,anetv_ui_CNb4FUtQ,5708,A man plays the saxophone in various public settings while the audiences watch. The man,A man plays the saxophone in various public settings while the audiences watch.,The man,gold,plays a harmonica on his forehead.,begins by brushing the ends of the mans matches.,continues showing the streets and showing the brasil's performance.,plays while laying on the ground.,3\n2308,anetv_yw9W5dZ6T18,8708,\"He grab a tong and a silver, metal bowl with vegetables in it. The ingredients on the counter\",\"He grab a tong and a silver, metal bowl with vegetables in it.\",The ingredients on the counter,gold,talks to the camera.,begins to fry a crab.,are in white containers.,cuts pasta into slices.,2\n2309,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8229,\"Then, someone stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden. Someone\",\"Then, someone stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden.\",Someone,gold,'s uncle looks around and see someone paddling to the shore of the harbor.,escapes through the garden.,stares across at someone with a perturbed expression.,moves down the hall to meet someone.,1\n2310,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8237,\"During the brief time that the door is open, we hear a cocktail party going on in the next room: voices and soft. Someone\",\"During the brief time that the door is open, we hear a cocktail party going on in the next room: voices and soft.\",Someone,gold,is in his eyes for the beat of the classroom.,blows the glow of the sun flashing through the dark sky.,someone strains in the chair to make his music cry so she can't turn it to be hit up.,strides across the room toward someone.,3\n2311,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8232,\"As he arrives at the curb, a long black packard sedan pulls up before him. Three men\",\"As he arrives at the curb, a long black packard sedan pulls up before him.\",Three men,gold,rush through a cluster of buildings.,walk along a sidewalk floor.,step out of the sedan.,sit in bed together.,2\n2312,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8235,\"Numerous museum - quality artifacts are displayed around the room. After a moment, someone\",Numerous museum - quality artifacts are displayed around the room.,\"After a moment, someone\",gold,finds a map show yet moldy journal and squints in anticipation at the spires.,enters from across the room.,makes his way to the door.,strides down a narrow ward and opens the doors.,1\n2313,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8241,\"He throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols. He\",\"He throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols.\",He,gold,\"rose on his chair, into someone's living room.\",puts on his glasses to make a closer examination.,\"plates, with his eyes closed and his eyes empty.\",\"strings falling, then hits his head again.\",1\n2314,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8231,\"Someone walks briskly toward the street; smiling, enjoying his freedom. As he arrives at the curb, a long black packard sedan\",\"Someone walks briskly toward the street; smiling, enjoying his freedom.\",\"As he arrives at the curb, a long black packard sedan\",gold,approaches one of the trucks.,glides back and stands between them.,pulls up before him.,pulls over to the bus stop.,2\n2315,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8238,\"Dressed in a tuxedo, he exudes both confidence and power. He\",\"Dressed in a tuxedo, he exudes both confidence and power.\",He,gold,shakes hands with someone.,\"struggles to keep someone from sparks, kicking his legs across the floor.\",grabs both hands then thrusts out his hair and kisses it.,is disturbed by a newspaper as he works.,0\n2316,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8239,He shakes hands with someone. Someone,He shakes hands with someone.,Someone,gold,\"stands beside the teller, smiles.\",turns his gaze to the injured and doubles team who all sprawling.,goes to a table where an object is wrapped in cloth.,turns and faces someone.,2\n2317,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8228,\"Where he goes to his desk and finds a thick envelope with a foreign postmark on it. Then, someone\",Where he goes to his desk and finds a thick envelope with a foreign postmark on it.,\"Then, someone\",gold,shoots her a nod.,gives her mother a hug.,thrusts through the loft and manuscript.,\"stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden.\",3\n2318,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8234,Someone is ushered into a large Art Deco apartment and left alone. Numerous museum - quality artifacts,Someone is ushered into a large Art Deco apartment and left alone.,Numerous museum - quality artifacts,gold,are shown beginning outside the chamber repeatedly heading into the middle of the sparse mob.,shows two crowded shelves in 50s's.,\"are perched above towers, octagonal.\",are displayed around the room.,3\n2319,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8236,\"After a moment, someone enters from across the room. During the brief time that the door is open, we\",\"After a moment, someone enters from across the room.\",\"During the brief time that the door is open, we\",gold,hear a cocktail party going on in the next room: voices and soft.,tilt over the mess in to the ledge down trough nearby.,can see someone approach the dining room where people enter.,\"see someone, watched closely by the door and into space.\",0\n2320,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8240,Someone goes to a table where an object is wrapped in cloth. He,Someone goes to a table where an object is wrapped in cloth.,He,gold,drags a cloth over the table and finds a laundry card taped to the wardrobe.,\"throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols.\",\"holds it back down, holding it to his ear.\",\"gazes into the picture, then unwraps the laser, and adds more light from the wall.\",1\n2321,lsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8230,Someone escapes through the garden. Someone,Someone escapes through the garden.,Someone,gold,stops from the base of the hill and tries to run through the crowd towards the luxurious harbor.,\"walks briskly toward the street; smiling, enjoying his freedom.\",proudly for the entrance.,notices a cigarette smoking in his autumnal uniform.,1\n2322,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59914,14714,\"Snorting horse nostrils. as the shadow of a black rider looms over a Hobbit House. Terrified, farmer maggot\",Snorting horse nostrils. as the shadow of a black rider looms over a Hobbit House.,\"Terrified, farmer maggot\",gold,drags the charging mannequin over his head.,walks to a quieter room.,cowers in his doorway.,passes in front of a group of colleagues.,2\n2323,anetv_J9Sl_H-1BOA,19181,A young girl is seen sitting front of a piano and playing the instrument with her finger tips. She,A young girl is seen sitting front of a piano and playing the instrument with her finger tips.,She,gold,continues playing while the camera captures her from afar.,begins playing with her mother and continues dancing in the end.,then continues playing the harmonica while smiling to the camera.,begins playing the instrument while speaking to the camera.,0\n2324,lsmdc3039_JACK_AND_JILL-2748,104,\"She leaps into someone's arms and he falls back. Someone, someone, and the kids\",She leaps into someone's arms and he falls back.,\"Someone, someone, and the kids\",gold,run to the bedroom.,rush over as someone's kids pile on to the new lovebirds.,flee through a plain of dead concrete.,lay in the summit of manhattan with a huge alarm.,1\n2325,anetv_rDxEl9bPodU,11845,Six horses with people on them walk along a sandy shore in front of the ocean on an overcast day. The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him,Six horses with people on them walk along a sandy shore in front of the ocean on an overcast day.,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him,gold,riding horses on the beach.,pouring water on the river.,are brushing off the rocky water.,standing on the border of the boat waiting.,0\n2326,anetv_rDxEl9bPodU,8486,A woman wearing green top and a bag on her shoulder rides a horse. People,A woman wearing green top and a bag on her shoulder rides a horse.,People,gold,shove in the open gate.,on the long jump ropes a wire at the top of a horse.,walk up fans on the screen with a quick smile.,ride horses going in a line.,3\n2327,anetv_rDxEl9bPodU,11846,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him riding horses on the beach. The camera man,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him riding horses on the beach.,The camera man,gold,\"steps up to pick up the brown tractor and swings from the pit, returning to the area.\",removes the hat on and continues doing in the way and the girls in the bleachers are still talking.,focuses the camera on the people riding horses behind him as they all continue to ride horses on the beach.,\"is seen climbing and walking onto the water, then begins pushing down a very large sand pit and pushing out the rocks.\",2\n2328,anetv_hLnVjkmioH8,7295,A boy sits at a kitchen counter and adjusts the camera. His friend,A boy sits at a kitchen counter and adjusts the camera.,His friend,gold,smokes coffee while looking back and forth at the kitchen.,poses on a stack of equipment.,pushes another pancake into his lap.,moves the camera back so they are more visible.,3\n2329,anetv_hLnVjkmioH8,7296,The two boys then arm wrestle and the left boy wins both times. The right boy walks away and the left boy,The two boys then arm wrestle and the left boy wins both times.,The right boy walks away and the left boy,gold,smiles and kisses someone on the cheek.,begins to look around helplessly.,reaches for the camera.,kicks his laughing up while the man continue arm wrestling.,2\n2330,lsmdc3059_SALT-29114,14441,Someone breaks part of the wall away to reveal an electronic device inside. She,Someone breaks part of the wall away to reveal an electronic device inside.,She,gold,kicks someone off the deck and pushes in.,\"checks it with a telescope, then makes seat, picks the metal discreetly.\",hammers the steel square desk.,removes some wires from it.,3\n2331,lsmdc3059_SALT-29114,14443,\"In the operation center, someone waits against the wall beside the door with his pistol in hand. She\",\"In the operation center, someone waits against the wall beside the door with his pistol in hand.\",She,gold,slaps him in the head.,throws her hand back and forth.,turns to him and catches his own reflection as he closes.,sinks to the floor.,3\n2332,anetv_dAiqJJKezPE,10967,A man rolls a tire towards a raised car. The man,A man rolls a tire towards a raised car.,The man,gold,runs around it using the machine.,uses a jack to raise the tire to the car's height.,\"adjusts a tire wheel, then gets off of the vehicle.\",\"removes makeup gloves, pushes it open.\",1\n2333,anetv_dAiqJJKezPE,13541,The automotive worker uses the hand jack to positions the tire onto the wheel hub of a car. The man,The automotive worker uses the hand jack to positions the tire onto the wheel hub of a car.,The man,gold,adds the tools to life pieces to weld and turns off the tire with the tire.,picks up lug nuts and tightens them onto the wheel hub with his hand.,rolls the body tire and puts it down on the spare tire on the bike top.,uses the pedal to bend the pedal back to the right position each time.,1\n2334,anetv_dAiqJJKezPE,13540,The man rolls the tire onto a hand jack. The automotive worker,The man rolls the tire onto a hand jack.,The automotive worker,gold,drives back and fourth on the bike.,\"uses a rag to cut the tire, and uses a pen over his tire.\",uses the hand jack to positions the tire onto the wheel hub of a car.,uses the locomotive mower to catch the fire.,2\n2335,anetv_dAiqJJKezPE,13539,A man in black tshirt rolls a tire through an automotive shop. The man,A man in black tshirt rolls a tire through an automotive shop.,The man,gold,removes the pin and grabs it with the free hand.,rolls the tire onto a hand jack.,picks up a trash bag and pours buckets.,shows us an older man's face.,1\n2336,anetv_dAiqJJKezPE,10968,The man uses a jack to raise the tire to the car's height. The man,The man uses a jack to raise the tire to the car's height.,The man,gold,puts the lug nuts off of the tire and assembles the tire.,attaches the tire to the car with bolts.,slides the wheel into the tire and loses out the wrestles.,washes the ski in black and double tire on and grinds a sticker.,1\n2337,lsmdc0005_Chinatown-48498,12468,\"He reaches into his pocket pulls out his cigarette case, takes a pick out of the side and starts to fool with the lock. The Maid\",\"He reaches into his pocket pulls out his cigarette case, takes a pick out of the side and starts to fool with the lock.\",The Maid,gold,explodes what's happening as the security car hits a man later and falls back towards the rocky ditch.,\"opens the door abruptly, stares in some surprise at someone.\",\"stomps on one of the wooden windows, and which whips the silver, mainly green hand weed across a fingertip onto the cement.\",tries to suppress what seems to be the last one.,1\n2338,lsmdc1011_The_Help-78754,14731,Someone hurries out of the room with the baby. Someone,Someone hurries out of the room with the baby.,Someone,gold,stares into his eyes as he watches his drama.,eyes someone with ice - cold menace.,watches his father away.,spins away from her and hurries out of the window.,1\n2339,lsmdc1044_Pride_And_Prejudice_Disk_Two-89879,7384,\"Someone proffers his hand, and the deal is done. Someone\",\"Someone proffers his hand, and the deal is done.\",Someone,gold,shoves his sweater off someone's shirt.,finds someone reading the letter.,stares up at it.,grabs the rope and pumps it.,1\n2340,lsmdc1044_Pride_And_Prejudice_Disk_Two-89879,7385,Someone finds someone reading the letter. She,Someone finds someone reading the letter.,She,gold,\"looks away, embarrassed.\",\"drops the letter, dropping it to him, then walks away.\",picks up a pen and reads it.,takes off someone's gem.,0\n2341,anetv_jQ2UoAENwlw,3970,A man is seen sitting on a chair look nervously at the camera while another man sits behind him. The man then begins tattooins the man's chest and the man,A man is seen sitting on a chair look nervously at the camera while another man sits behind him.,The man then begins tattooins the man's chest and the man,gold,pointing to keep a good hand to table.,looks up into the camera every now and then.,finishes up the result.,continues to teach the discus.,1\n2342,anetv_6dNh6AxVLx8,14708,Several more shots of people riding on a track are shown with many standing on the sidelines to watch. More falls are shown with a slow motion affect and more people,Several more shots of people riding on a track are shown with many standing on the sidelines to watch.,More falls are shown with a slow motion affect and more people,gold,continue to ride around.,being shown flipping numerous times.,are shown as well as continuing crochet out and out of frame.,narrates as several more pictures of viewers there is several scenes of people attempting and teaching the proper procedure.,0\n2343,anetv_6dNh6AxVLx8,14707,The video starts with several shots of bmx riders riding along a track with one taking a hard fall. Several more shots of people riding on a track,The video starts with several shots of bmx riders riding along a track with one taking a hard fall.,Several more shots of people riding on a track,gold,are shown as well as rolling.,are shown as well as more speaking and leads into the man riding the bike.,is shown while a man watches on the side.,are shown with many standing on the sidelines to watch.,3\n2344,anetv_DK271OQnNRA,6740,Three people go tubing down a rapid. They,Three people go tubing down a rapid.,They,gold,are floating down a river with a great choppy of the river.,turn left and see the white ending screen.,\"get stuck on the rocks, then push off and continue floating.\",are dressed as they are shown in small kayaks.,2\n2345,lsmdc3022_DINNER_FOR_SCHMUCKS-10403,15368,She sticks her tongue out and waggles it around. Someone puts his hand up and she,She sticks her tongue out and waggles it around.,Someone puts his hand up and she,gold,puts it in her good eye.,slides her tongue between his fingers.,pats him on the footboard then leans back into his chair.,\"pulls over and grabs hold of his neck, tying him tight on her wrists.\",1\n2346,lsmdc1007_Spider-Man1-74909,7790,He looks up in alarm. He,He looks up in alarm.,He,gold,opens the window and someone on some sheet clothes.,is at a pay phone in the hospital.,hangs up on a podium.,flaps its wings and moves to the deck.,1\n2347,lsmdc3016_CHASING_MAVERICKS-6717,8639,\"He curls in his finger, surfaces and checks his watch. Its timer\",\"He curls in his finger, surfaces and checks his watch.\",Its timer,gold,shows clicking on someone's electronic keyboard.,bounces up and ticks up to zero.,bears the teen's score.,reads four minutes and five seconds.,3\n2348,lsmdc3016_CHASING_MAVERICKS-6717,8636,\"Now beneath a stormy sky, slate hued waves roil and churn along the coast, crashing violently into its rocks. At a nine foot depth marker, a bubble\",\"Now beneath a stormy sky, slate hued waves roil and churn along the coast, crashing violently into its rocks.\",\"At a nine foot depth marker, a bubble\",gold,\"settles on the wire, gazing into the distance.\",erupts at the surface.,float slowly lifts on the towering impact.,pops up to float up like an ocean board.,1\n2349,lsmdc3016_CHASING_MAVERICKS-6717,8637,\"At a nine foot depth marker, a bubble erupts at the surface. Kneeling underwater, someone\",\"At a nine foot depth marker, a bubble erupts at the surface.\",\"Kneeling underwater, someone\",gold,zips up the bottle of beer.,swings his muscled face in the air and gets back into his arms.,lets out a big bellow of smoke.,holds up a single finger.,3\n2350,lsmdc3016_CHASING_MAVERICKS-6717,8635,He gets up from his seat. He,He gets up from his seat.,He,gold,\"kneels close to hers, and gives her an emotional hug.\",\"the vehicle, someone moves up the back of his car.\",\", someone, is it, unable to find someone.\",starts into the forest.,0\n2351,lsmdc3016_CHASING_MAVERICKS-6717,8634,Someone regards his smiling mother appreciatively. He,Someone regards his smiling mother appreciatively.,He,gold,goes back to the table.,\"opens the door, finds herself and enters with her parents.\",gets up from his seat.,leans in and plants his lips on hers.,2\n2352,lsmdc3016_CHASING_MAVERICKS-6717,8641,\"Following them, someone steps into a room with a gorgeously painted long board at its center. The teen\",\"Following them, someone steps into a room with a gorgeously painted long board at its center.\",The teen,gold,breaks out a sheet of paper as she walks through the busy terminal's center.,conducts the music as someone takes off his socks.,\"surfaces with his palms, and puts her sunglasses.\",stares at it with an overwhelmed gaze then ventures closer.,3\n2353,lsmdc3016_CHASING_MAVERICKS-6717,8640,A square faced man greets them. He,A square faced man greets them.,He,gold,leads them down a corridor.,strides off at cell.,joins him wearing a bright purple nightie and smile.,\"moves around the stage and stands, watching them.\",0\n2354,lsmdc3016_CHASING_MAVERICKS-6717,8638,\"Kneeling underwater, someone holds up a single finger. He\",\"Kneeling underwater, someone holds up a single finger.\",He,gold,\"curls in his finger, surfaces and checks his watch.\",\"removes someone's gaze, and comes to catch it.\",soars through the wooded woods towards an outhouse.,\"steps up the shaft, his headlights covered in chalk and root.\",0\n2355,anetv_xoSA8_kTiBY,10937,He is also shown performing several core - strengthening exercises on the floor. The video,He is also shown performing several core - strengthening exercises on the floor.,The video,gold,ends with a closeup of a cylinder and video.,ends with the closing credit shown on the screen.,ends with forcefully blasting up the sides in a air and a smile is shown.,ends with several crew of people engaging in a game of soccer.,1\n2356,anetv_xoSA8_kTiBY,5962,A woman is talking inside a fitness center. She,A woman is talking inside a fitness center.,She,gold,pauses and stands there wearing makeup.,\"gets on a bike with other people, and begins riding while she talks.\",stands in a roofed kitchen and talks to the camera once more.,chalks sand on her left hand.,1\n2357,anetv_xoSA8_kTiBY,5964,She lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time. She finally,She lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time.,She finally,gold,looks up from her phone and gives a thumbs up.,walks on the living stage to get a better look at the floor.,walks onto the exercise equipment and makes a layup.,slows to a stop.,3\n2358,anetv_xoSA8_kTiBY,5963,\"She gets on a bike with other people, and begins riding while she talks. She\",\"She gets on a bike with other people, and begins riding while she talks.\",She,gold,is shown riding an elephant with her and another in the background.,stops and smiles to someone as she walks away.,\"makes a call and walks off, flipping over and over again.\",lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time.,3\n2359,anetv_xoSA8_kTiBY,10936,A woman introduces a video about a workout routine that she will perform. Is Sean,A woman introduces a video about a workout routine that she will perform.,Is Sean,gold,teaching a spin class several participants they spin along with her.,\"dance, performing a zumba routine as the student walks around and practices on her jumps.\",exaggerated a procedure that not in the water doing exercises.,standing inside the same machine posing for more students.,0\n2360,anetv_S6VgTNGiIkg,5216,A close up of a pool table is shown followed by a person performing tricks. Many people,A close up of a pool table is shown followed by a person performing tricks.,Many people,gold,are seen jumping in front of the camera as well as a person's shoes.,perform different tricks on the pool table while using various objects.,are seen in many clips flipping several times and performing tricks on a large piano.,are seen riding on the ice as well as envelops with one another.,1\n2361,anetv_S6VgTNGiIkg,14107,Several people use different methods to perform trick shots. They continue performing impressive shots,Several people use different methods to perform trick shots.,They continue performing impressive shots,gold,are pool cues as well as a dog.,doing various flips and tricks at the same time as they walk silently to talk.,and ends with a text are shown.,of the legs huddled together.,0\n2362,anetv_S6VgTNGiIkg,14106,A close up of a pool table is shown that leads into a person hitting a ball. Several people,A close up of a pool table is shown that leads into a person hitting a ball.,Several people,gold,are shown playing beer pong in a foosball table.,keep running around balls and hitting them around them hitting around.,use different methods to perform trick shots.,are shown hitting the ball around and board the ball while speaking to the camera and follows it.,2\n2363,anetv_S6VgTNGiIkg,5217,Many people perform different tricks on the pool table while using various objects. He,Many people perform different tricks on the pool table while using various objects.,He,gold,dives through the swimming pool.,continues performing tricks over and over and ends with the dog on the table.,continues dancing around while sometimes jumping into several more waves.,begins to remove the pumpkin with the wax.,1\n2364,lsmdc1024_Identity_Thief-82634,15630,An officer leads someone out while the others follow with someone. The restaurant patrons,An officer leads someone out while the others follow with someone.,The restaurant patrons,gold,hold their heads in disgust.,gawk from their tables.,look puzzled as he accompanies them.,stare out at the floor.,1\n2365,lsmdc1024_Identity_Thief-82634,15641,\"He shoots her in the foot. Now, the two thugs\",He shoots her in the foot.,\"Now, the two thugs\",gold,row down the street.,lie in a car's trunk.,arrive at a side square.,wipe her beer glass.,1\n2366,lsmdc1024_Identity_Thief-82634,15639,The skiptracer shoots someone in the leg. Someone,The skiptracer shoots someone in the leg.,Someone,gold,holds her hands up.,sits down beside the man.,punches him on the face.,pulls onto someone's leash.,0\n2367,lsmdc1024_Identity_Thief-82634,15657,\"The skiptracer sits back, dazed. They\",\"The skiptracer sits back, dazed.\",They,gold,arrest him as people scurry away unseen.,move into the living room.,crafts a mottled head over the roadside.,study him with ammunition.,0\n2368,lsmdc1024_Identity_Thief-82634,15629,\"As the officers cuff them, someone shares a frightened look with someone. An officer\",\"As the officers cuff them, someone shares a frightened look with someone.\",An officer,gold,walks through the front door.,runs up to them and shoots someone.,leads someone out while the others follow with someone.,pushes him up with his rifle raised.,2\n2369,lsmdc1024_Identity_Thief-82634,15653,Someone helps someone up and pushes him aside as the car accelerates. Someone,Someone helps someone up and pushes him aside as the car accelerates.,Someone,gold,scrambles down the stairs and slides down to the ground.,shoots the gun at someone.,struggles back onto his bike and lets the bus thrust forward.,rolls up the windshield and falls to the pavement.,3\n2370,lsmdc1024_Identity_Thief-82634,15643,\"Outside, an officer escorts someone around a squad car. Someone\",\"Outside, an officer escorts someone around a squad car.\",Someone,gold,gripping someone's elbow.,glances over as they both get into the back seat.,tosses a penguins out toward a.,prepares his shotgun and spider man in full gear.,1\n2371,lsmdc1024_Identity_Thief-82634,15632,\"The group proceeds past the hostess and into the hall, where an elevator arrives. Wearing a nice suit and a sleek, black dress, people\",\"The group proceeds past the hostess and into the hall, where an elevator arrives.\",\"Wearing a nice suit and a sleek, black dress, people\",gold,run across the beach toward the boarding school.,stand on a cobble - carpeted platform carrying their flags.,enter as the doors close.,enter a cafe.,2\n2372,lsmdc1024_Identity_Thief-82634,15648,\"With a determined glare, the skiptracer follows close behind. Someone\",\"With a determined glare, the skiptracer follows close behind.\",Someone,gold,carries her out to the vault.,\"close by, someone sits with.\",\"looks down over someone, who smiles at someone.\",\"glances over at someone, then leans toward the grated divider separating them from the officers.\",3\n2373,lsmdc1024_Identity_Thief-82634,15644,Someone glances over as they both get into the back seat. Someone,Someone glances over as they both get into the back seat.,Someone,gold,faces someone and heaves a sigh.,\"stares ahead, avoiding his gaze.\",\"calls the driver, beating wildly.\",\"pulls out onto the road, past a pump.\",1\n2374,lsmdc1024_Identity_Thief-82634,15633,\"Wearing a nice suit and a sleek, black dress, people enter as the doors close. They\",\"Wearing a nice suit and a sleek, black dress, people enter as the doors close.\",They,gold,\"stand in the front, with their backs to everyone.\",\"gazing walk past them on the street, a tall, balding man wearing a red, brown suit joins her at the front entrance\",emerge from the hospital near a police station bench.,see events on the on.,0\n2375,lsmdc1024_Identity_Thief-82634,15650,\"He barrels through traffic dividers, into the opposite lane. They\",\"He barrels through traffic dividers, into the opposite lane.\",They,gold,see a highway beneath them.,share a look - - someone grins.,rush up and down some hall.,are hiding near the gate in an alley.,0\n2376,lsmdc1024_Identity_Thief-82634,15655,Squad cars surround the skiptracer. An officer,Squad cars surround the skiptracer.,An officer,gold,pours on a big bucket.,hops out with his pistol drawn.,pulls a gun from behind the king's back and drops it in a wooden bag.,\"falls into a crowded room, where people are waiting for one.\",1\n2377,lsmdc1024_Identity_Thief-82634,15652,\"The skiptracer crashes through the dividers, heading straight for him. Someone\",\"The skiptracer crashes through the dividers, heading straight for him.\",Someone,gold,helps someone up and pushes him aside as the car accelerates.,reaches the main building.,gets past the tennis truck and destroys it.,catches someone's hand and tries to feed them.,0\n2378,lsmdc1024_Identity_Thief-82634,15649,\"Suddenly, she bangs her cuffed wrist against the back windshield. She\",\"Suddenly, she bangs her cuffed wrist against the back windshield.\",She,gold,goes over to the kitchen ledge.,winces in the hallway.,kicks out the glass.,sees the throng of men.,2\n2379,lsmdc1024_Identity_Thief-82634,15628,\"She takes another sip as someone, the hotel manager, and several policemen enter behind someone. As the officers cuff them, someone\",\"She takes another sip as someone, the hotel manager, and several policemen enter behind someone.\",\"As the officers cuff them, someone\",gold,pulls her arm out from under his.,shares a frightened look with someone.,radios in and answers his cellphone.,leads someone up a set of stairs.,1\n2380,lsmdc1024_Identity_Thief-82634,15631,The restaurant patrons gawk from their tables. The group,The restaurant patrons gawk from their tables.,The group,gold,dashes in and out of door.,\"proceeds past the hostess and into the hall, where an elevator arrives.\",hold their expressions as they tumble off the stage.,passes something between two boys in a reception room.,1\n2381,lsmdc1024_Identity_Thief-82634,15654,\"Someone rolls up the windshield and falls to the pavement. Pushing the airbag away, the skiptracer\",Someone rolls up the windshield and falls to the pavement.,\"Pushing the airbag away, the skiptracer\",gold,lets his trunk drop.,covers his mouth with her right hand.,watches someone for a moment.,sees a squad car speeding straight at him.,3\n2382,lsmdc1024_Identity_Thief-82634,15635,She glances between someone and the thugs. Someone,She glances between someone and the thugs.,Someone,gold,collapses on the bulkhead.,looks up as someone turns away.,turns someone down and stares at her with sad eyes.,grins and then faces herself.,1\n2383,lsmdc1024_Identity_Thief-82634,15646,\"As the squad car leaves, he quickly follows. Now, they\",\"As the squad car leaves, he quickly follows.\",\"Now, they\",gold,move an empty restaurant indoors.,go to the car.,cruise down a construction - filled street with opposite lanes divided by orange traffic cones.,approach the white knight.,2\n2384,lsmdc1024_Identity_Thief-82634,15656,An officer hops out with his pistol drawn. The skiptracer,An officer hops out with his pistol drawn.,The skiptracer,gold,draws a gun towards them.,\"grabs his friend's arm, pulls him under a cab, and fixes him with their feet.\",pats him as they race away.,\"sits back, dazed.\",3\n2385,lsmdc1024_Identity_Thief-82634,15645,\"Someone stares ahead, avoiding his gaze. Nearby, the skiptracer\",\"Someone stares ahead, avoiding his gaze.\",\"Nearby, the skiptracer\",gold,lifts a flaming yellow sedan in the air.,watches from the thugs' silver sedan.,pulls a sign off the excavator's crossbar.,pours a fruit coffee.,1\n2386,lsmdc1024_Identity_Thief-82634,15658,They arrest him as people scurry away unseen. They,They arrest him as people scurry away unseen.,They,gold,exit the overpass through a construction gate and down a staircase.,shields his office as he approaches from his desk.,see someone fight over the sofa isildur.,wrap their box and start finishing putting their arm on the trunk - wrapped.,0\n2387,lsmdc1024_Identity_Thief-82634,15647,\"Now, they cruise down a construction - filled street with opposite lanes divided by orange traffic cones. Someone\",\"Now, they cruise down a construction - filled street with opposite lanes divided by orange traffic cones.\",Someone,gold,steps into the main faces and opens the parlor door.,\"holds one finger over one arm, holding the phone and listens.\",stares straight ahead in the back seat.,beats the procession and then strolls down a street with full speed and weather exterior.,2\n2388,lsmdc1024_Identity_Thief-82634,15636,\"Someone looks up as someone turns away. Stepping forward, he\",Someone looks up as someone turns away.,\"Stepping forward, he\",gold,packs a tattered satchel.,withdraws slices of flowers from view.,grabs a handkerchief and grabs the launcher from someone's throat.,eyes someone up and down.,3\n2389,lsmdc1024_Identity_Thief-82634,15642,\"Now, the two thugs lie in a car's trunk. Outside, an officer\",\"Now, the two thugs lie in a car's trunk.\",\"Outside, an officer\",gold,drops his gun and heads outside.,strides out of the house.,escorts someone around a squad car.,opens the garage door and dials a number in its keys.,2\n2390,lsmdc1024_Identity_Thief-82634,15634,\"Noticing them, someone's eyes widen. She\",\"Noticing them, someone's eyes widen.\",She,gold,stares wide - eyed at him.,glances between someone and the thugs.,turns toward the mirror again.,sees someone start to leave.,1\n2391,lsmdc1024_Identity_Thief-82634,15637,\"Stepping forward, he eyes someone up and down. They\",\"Stepping forward, he eyes someone up and down.\",They,gold,are happy for their wedding.,cross a shot of the wall.,\"notices him and rushes down the stairs to where the soldiers stand straight, staring to a impact field opposite.\",exit into the lobby.,3\n2392,lsmdc1015_27_Dresses-79836,3998,\"Then someone, in a fight, grimacing at a baby and being afraid of someone's dog. Behind the now not - so - happy couple, someone\",\"Then someone, in a fight, grimacing at a baby and being afraid of someone's dog.\",\"Behind the now not - so - happy couple, someone\",gold,gets to her feet.,is on shaded grass and is seated in the fallen grass.,walks away from someone's body.,is seated at a table.,0\n2393,lsmdc1015_27_Dresses-79836,3996,Someone tucks into a helping of ribs. Someone,Someone tucks into a helping of ribs.,Someone,gold,leaps over a bridge and slashes someone's shoulder.,is a wheelchair swaying up and down.,throws the door to someone as he goes to meet someone's story home.,looks unhappy as slides show him with his proud parents.,3\n2394,lsmdc1015_27_Dresses-79836,3997,\"Someone looks unhappy as slides show him with his proud parents. Then someone, in a fight,\",Someone looks unhappy as slides show him with his proud parents.,\"Then someone, in a fight,\",gold,\"sits in his wagon, looking at his mother.\",comes into his reverie and watches the sink.,grimacing at a baby and being afraid of someone's dog.,watches someone for a long time.,2\n2395,lsmdc1015_27_Dresses-79836,3993,He is at the United Nations. She,He is at the United Nations.,She,gold,begins talking to someone camera.,is in europe with two guys.,hands find a gnarled desk.,is standing in the opposite corner with his hands posted around the table.,1\n2396,lsmdc1015_27_Dresses-79836,3992,Young someone pets a goat. Someone,Young someone pets a goat.,Someone,gold,wears the phial as he joins her in a exercise neighborhood.,dips the bucket of coffee can on his face holding the dish mop.,has try to eat the meal.,dangles a cat by its hind legs.,3\n2397,lsmdc1015_27_Dresses-79836,3995,Someone helps with an animal charity. Someone,Someone helps with an animal charity.,Someone,gold,chases arrow to new targets.,tucks into a helping of ribs.,rises and start having a pulley.,slides in to someone 'bronze trophy.,1\n2398,anetv_XiG7rgPoKKI,3376,The racers pass a banner and we see the green team again. The race is finished and we,The racers pass a banner and we see the green team again.,The race is finished and we,gold,see the referee doing the free kick thing.,see the crowd clapping.,see the screen start again.,see the lady in red.,1\n2399,anetv_XiG7rgPoKKI,3371,We see team of boaters in a competition in the sea. We,We see team of boaters in a competition in the sea.,We,gold,see different people track running.,see the race start and the boaters take off.,see our title screen.,\"man approaches the beach, almost more and then goes again and we see the scenery behind them.\",1\n2400,anetv_XiG7rgPoKKI,3375,We see a score board on the screen. The racers pass a banner and we,We see a score board on the screen.,The racers pass a banner and we,gold,see the green team again.,see the clear trophy on a nightstand.,see another man make a turn.,see 5 after the players fight.,0\n2401,anetv_XiG7rgPoKKI,3372,We see the race start and the boaters take off. They,We see the race start and the boaters take off.,They,gold,can jump back forth.,are doing more washing cars.,walk along the snowy hills from teh drivers.,pass a small boat in the water.,3\n2402,anetv_XiG7rgPoKKI,3374,We see one team up close. We,We see one team up close.,We,gold,see a man repeat a routine into the sky.,see an ending title screen.,see a score board on the screen.,see an opening title screen.,2\n2403,anetv_XiG7rgPoKKI,3373,They pass a small boat in the water. We,They pass a small boat in the water.,We,gold,\"see people on boats, jumping ropes and skiing.\",then a group follow the girl down in the river.,roll off the bridge and up into the river.,see one team up close.,3\n2404,lsmdc1012_Unbreakable-7046,4892,The nurse points across the room. Someone,The nurse points across the room.,Someone,gold,emerges at the end of a pale corner.,\"hands the nurse a yellow file, takes another one from her, and walks across the open plan office.\",gets over in his chair.,jerks the head and walks down.,1\n2405,lsmdc1012_Unbreakable-7046,4895,She looks up at someone who's watching her from his wheelchair. Metal frame,She looks up at someone who's watching her from his wheelchair.,Metal frame,gold,is suction under his arm.,hangs on the edge of the ceiling.,keeps his right leg straight.,is tied across the large line is it less than 50 yards away.,2\n2406,lsmdc1012_Unbreakable-7046,4894,She leans through a doorway and smiles. She,She leans through a doorway and smiles.,She,gold,looks up at someone who's watching her from his wheelchair.,\"looks at her, then walks away.\",\"hunches over someone, then returns.\",shyly back toward the grated gate.,0\n2407,lsmdc1012_Unbreakable-7046,4893,\"Someone hands the nurse a yellow file, takes another one from her, and walks across the open plan office. She\",\"Someone hands the nurse a yellow file, takes another one from her, and walks across the open plan office.\",She,gold,leans through a doorway and smiles.,enters someone's apartment wearing an orange cotton dress.,turns around to look at the clerk in the bleachers.,stares at her as she makes eye contact.,0\n2408,lsmdc1048_Gran_Torino-92482,14480,Someone drags pensively on his cigarette. Someone,Someone drags pensively on his cigarette.,Someone,gold,returns with four cans.,eyes the bearded general confidently then lowers his rock before releasing it.,comes over and takes another slug.,wears a strap over his eyes.,0\n2409,lsmdc1048_Gran_Torino-92482,14481,Someone returns with four cans. He,Someone returns with four cans.,He,gold,grabs a glass of milk.,leaves with friends behind.,passes a couple to someone and keeps a couple for himself.,drinks at 45 pounds.,2\n2410,lsmdc1048_Gran_Torino-92482,14479,Someone gets up and goes over to the cool box. Someone,Someone gets up and goes over to the cool box.,Someone,gold,\"smiles and pouts her eyes, but to make all her attention.\",drags pensively on his cigarette.,goes to the window.,lowers the binoculars then faces someone's stern friend.,1\n2411,anetv_Q159fj3M9NM,13571,\"A gymnast runs, then flips several times down an indoor track. Other girls\",\"A gymnast runs, then flips several times down an indoor track.\",Other girls,gold,begin to pole vault while other lady in the body watches in the corner.,perform impressive flip bar flips while watching the competition.,\"follow suit, flipping quickly as they go.\",begin to move around and jump and spin at one another of the stadium.,2\n2412,anetv_Q159fj3M9NM,13572,\"Other girls follow suit, flipping quickly as they go. They\",\"Other girls follow suit, flipping quickly as they go.\",They,gold,stop and run into the stairwell.,\"dismount at the end, arms in the air.\",run down the stairs from the staircase.,ride down a trail with the revolving gates of the gate drawn.,1\n2413,anetv_YS3Q47uz3HI,5102,She adds the frosting to the cake batter and mixes it well. Then she,She adds the frosting to the cake batter and mixes it well.,Then she,gold,pours the mixture in a baking bowl.,takes a piece of cake and pours it into the cake.,takes a cucumber and drops it on the table.,shows off the cake product from what she transfers.,0\n2414,anetv_YS3Q47uz3HI,5103,Then she pours the mixture in a baking bowl. She,Then she pours the mixture in a baking bowl.,She,gold,places the bowl in a cookie sheet and places it on the oven rack.,mixes from the bottle and stirs it with soda.,picks up the bottle before pouring a cup of ice.,places the product into the pumpkin.,0\n2415,anetv_YS3Q47uz3HI,5100,Then she uses a hand mixer to blend the ingredients together. She then,Then she uses a hand mixer to blend the ingredients together.,She then,gold,pretends to lick a lemon lemon and add foam to it while another to her.,whips up some cream and sugar to make frosting.,puts them on a cooking pot on the cooker.,mixes the ingredients in the mixture and mixes them together in a pot.,1\n2416,anetv_YS3Q47uz3HI,5104,She places the bowl in a cookie sheet and places it on the oven rack. She,She places the bowl in a cookie sheet and places it on the oven rack.,She,gold,drinks her coffee at a bowling ad.,begins to talk about the finished and tomato food.,bakes the cake and pulls it out when it's done.,hops onto the bike and picks up a pound dish.,2\n2417,anetv_YS3Q47uz3HI,5098,There's a lady doing a tutorial on how to make a cotton soft Ogura cake. She,There's a lady doing a tutorial on how to make a cotton soft Ogura cake.,She,gold,begins by mixing the ingredients in a large bowl placed on her kitchen counter.,religious on how to wash cookies are made in the meat with poker and put it in the oven.,begins to put an apron of a toy sticker on the table.,\"irons the web on a wooden post and shows materials to showcase it, she buttons a robe with additional cover.\",0\n2418,anetv_YS3Q47uz3HI,5099,She adds some eggs to the flour along with vanilla essence. Then she,She adds some eggs to the flour along with vanilla essence.,Then she,gold,\"adds billiard balls, scoops and waves them with cooked oats.\",tips it in half sprinkles times and enjoys it.,uses a hand mixer to blend the ingredients together.,rubs them on the screen and cuts both sides of the cake.,2\n2419,anetv_YS3Q47uz3HI,5101,She then whips up some cream and sugar to make frosting. She,She then whips up some cream and sugar to make frosting.,She,gold,shows some meat and prepared to eat it for the eggs and finally finished food.,adds the frosting to the cake batter and mixes it well.,carries how to evenly butter then covers and cleans whipped cream.,talks to the camera while putting milk on top and starts cleaning the vegetables off.,1\n2420,anetv_sra0ywgWITo,1414,A man walks over to another man upset and suggests an arm wrestling match. The men,A man walks over to another man upset and suggests an arm wrestling match.,The men,gold,continue hit the ball while looking at the camera and walking to the camera.,then then begin wrestling rock wrestling.,throw several mowers and stab balls into each other's opponent to talk to.,begin to hold hands and quickly move away while two women walk into scene.,3\n2421,anetv_sra0ywgWITo,1416,The match continues as the men discuss their issues and the women watching yell at the men. The women then help the men arm wrestle and one,The match continues as the men discuss their issues and the women watching yell at the men.,The women then help the men arm wrestle and one,gold,holding food down and talking on the sides.,punches the other to help one man win.,gets on the back and swings back on the cameras.,man joins one of them.,1\n2422,anetv_sra0ywgWITo,1415,The men continue the match while look calm and the other looks struggled. The match,The men continue the match while look calm and the other looks struggled.,The match,gold,continues and begins by tattooing the man and the goals from different angles.,ends in their final pattern.,continues as the smoke stops to smoke and smoke roars all around the field.,continues as the men discuss their issues and the women watching yell at the men.,3\n2423,anetv_Wgr9YpWni30,4043,A person is seen tying their shoes and leads into several shots of people jumping and moving around on rope. Several shots of landscapes,A person is seen tying their shoes and leads into several shots of people jumping and moving around on rope.,Several shots of landscapes,gold,are shown as well as more people attempting jumps and tricks on a long rope tied to trees.,are shown as well as looking off into the distance as well as showing several stills of the streets.,are shown as well as people holding a bow and ends with others speaking to the camera.,are shown followed by many clips of people performing and speaking to one another.,0\n2424,lsmdc0008_Fargo-49763,14544,The scrape - scrape - scrape sound carries in the frigid air. Someone,The scrape - scrape - scrape sound carries in the frigid air.,Someone,gold,\"goes into a frenzy, banging the scraper against the windshield and the hood of his car.\",comes halfway up with a can of whiskey.,can't not see it out.,bobs her head and gyrates her hips.,0\n2425,lsmdc0008_Fargo-49763,14545,He goes back to work on the wind - shield. The door swings open and someone,He goes back to work on the wind - shield.,The door swings open and someone,gold,tumbles back to the other side.,strides under the car then eats popcorn.,walks in just as the first 2000 chases someone.,\"edges in, looking about, holding a sack of groceries.\",3\n2426,anetv_kYZSCs-ILNQ,11005,He starts hitting tennis balls with his tennis racket. He,He starts hitting tennis balls with his tennis racket.,He,gold,stops and talks to the camera.,hits the ball again and hit a ball with the racket.,bounces off the ball and the second goes.,walks down the lane and hits the ball with his racket.,0\n2427,anetv_kYZSCs-ILNQ,11004,A man wearing a white shirt is holding a tennis racket. He,A man wearing a white shirt is holding a tennis racket.,He,gold,starts hitting tennis balls with his tennis racket.,is hitting the ball in his bowling.,throws a ball around a corner.,turns around as he walks around.,0\n2428,anetv_XklHV0q3w40,3240,A man is sitting down playing a saxophone. He,A man is sitting down playing a saxophone.,He,gold,picks up his flute and plays the drums.,stops playing the saxophone and talks.,is playing a harmonica.,is holding onto his violin.,1\n2429,anetv_XklHV0q3w40,3241,He stops playing the saxophone and talks. He,He stops playing the saxophone and talks.,He,gold,puts the glass down and pours the drink into the glass.,stands up and continues playing the saxophone.,\"picks one of the cans fully up in the end, cowers his body against the other.\",looks disappointed and does several hand springs.,1\n2430,lsmdc1047_Defiance-91512,19648,\"He leads them into a military camp past a soldier on horseback. A middle - aged man with bags under his eyes, a black fur hat and a black leather coat over his coffee uniform,\",He leads them into a military camp past a soldier on horseback.,\"A middle - aged man with bags under his eyes, a black fur hat and a black leather coat over his coffee uniform,\",gold,emerges from a tent.,stands staring at it.,approaches the young man.,\"strides over to the lounge beside a young man, who's seated a deck chair in a nearby room.\",0\n2431,lsmdc1047_Defiance-91512,19646,\"Someone nods, and the two of them set off, both wearing caps and scarves wrapped around their necks. A Russian in a gray army coat and fur hat\",\"Someone nods, and the two of them set off, both wearing caps and scarves wrapped around their necks.\",A Russian in a gray army coat and fur hat,gold,is waiting for orcs with guns at longbourn.,leans close for their grasping fingers.,steps out from behind a tree.,enters the house and goes to his bank.,2\n2432,lsmdc1047_Defiance-91512,19642,\"Many of the women with shawls on their heads tramp through the forest, dwarfed by the tall, thin, bare trees. They\",\"Many of the women with shawls on their heads tramp through the forest, dwarfed by the tall, thin, bare trees.\",They,gold,\"continue to trudge down the grassy aisle, all are disguised by cars and woods, and others practice with someone.\",\"are some of their faces tossing as trees with big shelves of advanced stone wizards, dozens of trolls and snare signs.\",turns to the archway.,come out onto a meadow of tall grasses wafting in the breeze.,3\n2433,lsmdc1047_Defiance-91512,19644,\"People, Behind them someone with someone by his side, Lead the way out of the wood. A man\",\"People, Behind them someone with someone by his side, Lead the way out of the wood.\",A man,gold,fires carpet one back.,\"holds someone close to him, holding someone's handcuffs arm out on someone's neck.\",bites into an apple.,leans into his crystal thick face.,2\n2434,lsmdc1047_Defiance-91512,19645,\"People huddled on the ground look up at someone, but only someone stands up, draping his machine gun over his shoulder. Someone nods, and the two of them\",\"People huddled on the ground look up at someone, but only someone stands up, draping his machine gun over his shoulder.\",\"Someone nods, and the two of them\",gold,\"set off, both wearing caps and scarves wrapped around their necks.\",move happily to their admiration.,get on their own leg.,sweep the canoe over.,0\n2435,anetv_mnMmGnnbvSk,7296,\"A shoe shine demonstration takes place with a man kneeling in front of a group of students and using a sample shoe as an example. Several people in aprons, then\",A shoe shine demonstration takes place with a man kneeling in front of a group of students and using a sample shoe as an example.,\"Several people in aprons, then\",gold,begin each eating with the sympathetically laugh and admire the medal.,trimmed with a black pumpkin and a table capoeira is shown.,a band practice the competition.,kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish.,3\n2436,anetv_mnMmGnnbvSk,7295,A group of adult students sit in a classroom style room and look to the front of the class as if attending a class and listening intensely. A shoe shine demonstration,A group of adult students sit in a classroom style room and look to the front of the class as if attending a class and listening intensely.,A shoe shine demonstration,gold,shows how to ward with a ball.,is on the screen featured one of the white doors that is striking the desk.,takes place with a man kneeling in front of a group of students and using a sample shoe as an example.,on the fitness electric dangers.,2\n2437,anetv_mnMmGnnbvSk,7297,\"Several people in aprons, then kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish. The shoes shiners then\",\"Several people in aprons, then kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish.\",The shoes shiners then,gold,cleaning the bed and padding with the dirt floor.,both men and the ball are shown with alternating feet using the rags and a man turns softly and gesture to his wife.,\"stand in unison, with their aprons, and bow and shake hands.\",the man begins polishing shoes and shoes and shoes.,2\n2438,lsmdc3015_CHARLIE_ST_CLOUD-684,19911,In town a few pedestrians laze along a sidewalk. Someone,In town a few pedestrians laze along a sidewalk.,Someone,gold,pulls on his radio and all the children arrive at the mall.,waits on the porch of a modest house with a baseball mitt.,\"finds the table and a lock, which rolls as he enters in his doorway.\",\"finds herself on a staircase, then shifts a few times and the curtain dissipates.\",1\n2439,anetv_mdv8UW_871g,7154,We see the skier without the boat. We,We see the skier without the boat.,We,gold,see the ticker again.,see the boat from above again.,see the starting sequence down the hill.,see water and the water skiing.,1\n2440,anetv_mdv8UW_871g,7153,We see the boat driving as a person jet skis behind it. We,We see the boat driving as a person jet skis behind it.,We,gold,see a man riding a plane and using going stick to sled.,see people on the arena with boys riding behind them.,see the helicopter rolling paris.,see the skier without the boat.,3\n2441,anetv_mdv8UW_871g,7156,The skier falls into the water. We,The skier falls into the water.,We,gold,see the person come forward and stand at the bottom.,see the skier ski and perform 4 flips.,see the title screen.,also an jet skiing down the river over.,1\n2442,anetv_mdv8UW_871g,7157,We see the skier ski and perform 4 flips. We,We see the skier ski and perform 4 flips.,We,gold,see the boy sprinting down the road.,see a man seated on a couch holding the receiver together.,see the skier ski.,see two men riding on the river in rafts.,2\n2443,anetv_mdv8UW_871g,7155,We see the boat from above again. The skier,We see the boat from above again.,The skier,gold,falls off the boat.,is putting a green blue ball in the water and picks the ax.,runs around with the pole.,falls into the water.,3\n2444,anetv_mdv8UW_871g,7152,We see a boat pulling out of the dock. We,We see a boat pulling out of the dock.,We,gold,see people wearing rafts on a raft and a man in yellow walks through the waters.,see the boat driving as a person jet skis behind it.,see the lady sail paper in the opening.,see the people kayaking on the water.,1\n2445,anetv_mdv8UW_871g,7159,We see the skier swim towards the boat. A person in the boat,We see the skier swim towards the boat.,A person in the boat,gold,raises their hands in the air.,\"gets right to the shore, right next to him.\",brings a sharp board to a stop on a diving board in the pool.,sail safely towards the camera.,0\n2446,anetv_drVqGhjI558,16004,A man is seen sitting at several tables and peeling potatoes while the camera looks around in fast motion. Another person is seen peeling potatoes and the man,A man is seen sitting at several tables and peeling potatoes while the camera looks around in fast motion.,Another person is seen peeling potatoes and the man,gold,walks back over to the table to continue peeling.,rubs up their leg.,sharpens his knife with the blades as well as speaking to the camera and shows commentary about the next.,puts ice cubes into the plates.,0\n2447,lsmdc1046_Australia-90777,2940,\"They down the powerful brew, gasping at the strength. They\",\"They down the powerful brew, gasping at the strength.\",They,gold,\"must be tall and heavy, as the bushy man dives into a smaller cabinet.\",\"surround the germans, staying under someone's watchful gaze.\",\"laugh, staring into each other's eyes.\",hide in the prison offices.,2\n2448,lsmdc1046_Australia-90777,2939,\"She smiles with pride as two glasses are placed on the bar, and filled with Poor Fella Rum. They down the powerful brew,\",\"She smiles with pride as two glasses are placed on the bar, and filled with Poor Fella Rum.\",\"They down the powerful brew,\",gold,\"sit across the chair, swing, and applauding.\",revealing them in formation.,\"too, adding more buildings.\",gasping at the strength.,3\n2449,lsmdc1046_Australia-90777,2944,\"Someone stands, shoulders slumped, by the phone. Someone, with tears of joy in her eyes,\",\"Someone stands, shoulders slumped, by the phone.\",\"Someone, with tears of joy in her eyes,\",gold,gets up to walk away.,starts to open her arms.,returns to her room.,throws her arms around someone.,3\n2450,anetv_UVxXr_mh5BM,16550,A picture of a young lady's bun is shown and then the lady then appears. She,A picture of a young lady's bun is shown and then the lady then appears.,She,gold,begins by braiding one side of her hair and then twists it down and does the same thing on the other side.,begins eating the peanut butter along with her right hand.,begin to make various places in paper.,\"tickles the boy, combing her hair with a wrap.\",0\n2451,anetv_UVxXr_mh5BM,16552,\"With one twist, she pulls it up and bobby pins it together with the other side following. The hair style is then complete and she more pictures\",\"With one twist, she pulls it up and bobby pins it together with the other side following.\",The hair style is then complete and she more pictures,gold,are shown of the clip in different clips.,take her out at the end.,are shown again of the finish product.,are also shown in slow motion.,2\n2452,anetv_UVxXr_mh5BM,16551,\"She begins by braiding one side of her hair and then twists it down and does the same thing on the other side. With one twist, she pulls it up and\",She begins by braiding one side of her hair and then twists it down and does the same thing on the other side.,\"With one twist, she pulls it up and\",gold,picks up the stunning smile and takes it down.,looks off in the end.,adds it down to her final combs.,bobby pins it together with the other side following.,3\n2453,anetv_iuVi8QAWfCI,18057,\"A woman introduces her home decor video, standing next to a chair. She first\",\"A woman introduces her home decor video, standing next to a chair.\",She first,gold,takes several shots from the horse.,scrubs the dirt from the chair with a sponge.,places a white shoe on the side of her fingernails.,applies more fencers explaining and showing how to alternate clothes.,1\n2454,anetv_iuVi8QAWfCI,18058,\"She first scrubs the dirt from the chair with a sponge. Next, she\",She first scrubs the dirt from the chair with a sponge.,\"Next, she\",gold,vacuums it and returns to the stands and testing with the paper.,applies a silver paint to the chair.,\"puts a cup of a man wearing yellow cloth on it, cleaning eyeliner on the clean blots with a counter.\",takes off a pair of shoes and puts them down.,1\n2455,lsmdc3040_JULIE_AND_JULIA-17810,3547,\"A chef with a snowy mustache looks up, and his male students turn. Later, we\",\"A chef with a snowy mustache looks up, and his male students turn.\",\"Later, we\",gold,see some movements being caught.,\"move down a long table, watching masculine hands rapidly chop onions.\",\"pass the farm woman, younger into the dining room area.\",peer up at a window through the foyer in the hallway.,1\n2456,lsmdc3040_JULIE_AND_JULIA-17810,3548,\"Later, we move down a long table, watching masculine hands rapidly chop onions. Someone's hands\",\"Later, we move down a long table, watching masculine hands rapidly chop onions.\",Someone's hands,gold,\"drops, leaving her daughters outside.\",tentatively saw with her knife into an onion.,secures the box to make a hopeless skip.,\"drifts in the water, but stops level and peeks around the glowers until he can.\",1\n2457,lsmdc3040_JULIE_AND_JULIA-17810,3553,Someone adds beaten eggs and shakes her pan back and forth over a gas flame. Her fellow students,Someone adds beaten eggs and shakes her pan back and forth over a gas flame.,Her fellow students,gold,add their eggs too.,steps cross behind her and lounge in a seat.,take cover behind the cave.,cheer nervously with some score.,0\n2458,lsmdc3040_JULIE_AND_JULIA-17810,3552,\"Now in class, she finishes chopping first. Someone\",\"Now in class, she finishes chopping first.\",Someone,gold,stroll toward home class.,turns and pauses before backing off.,adds beaten eggs and shakes her pan back and forth over a gas flame.,\"joins her father, woman.\",2\n2459,lsmdc3040_JULIE_AND_JULIA-17810,3555,\"Straightening, the aspiring chef lifts her pan. She\",\"Straightening, the aspiring chef lifts her pan.\",She,gold,\"cocks her head low, her face hardens, her mouth filling out a corpse.\",\"gives it a small upward jerk, and flips the omelet.\",\"guides some visitors to their table, reaches for her clothing.\",feeds the balls and grocer.,1\n2460,lsmdc3040_JULIE_AND_JULIA-17810,3556,\"She gives it a small upward jerk, and flips the omelet. Madame someone\",\"She gives it a small upward jerk, and flips the omelet.\",Madame someone,gold,completes a bite of her mayonnaise.,turns the mic down and removes his shoes.,returns the blank stare and bites.,leaves with an indignant huff.,3\n2461,lsmdc3040_JULIE_AND_JULIA-17810,3550,Someone notices the others watching. Someone,Someone notices the others watching.,Someone,gold,looks alongside his barn.,pulls up to the table.,\"shrugs her hands, then walks toward the stands.\",\"appears in the doorway, recoils and rubs his eyes.\",3\n2462,lsmdc3040_JULIE_AND_JULIA-17810,3551,\"Someone appears in the doorway, recoils and rubs his eyes. With an amused smile, someone\",\"Someone appears in the doorway, recoils and rubs his eyes.\",\"With an amused smile, someone\",gold,shakes his head and leaves.,looks over as the picture turns in its head and pointed gently.,approaches someone and smiles.,rises in the seat in the glass.,0\n2463,lsmdc3040_JULIE_AND_JULIA-17810,3554,Her fellow students add their eggs too. Madame someone,Her fellow students add their eggs too.,Madame someone,gold,\"enters, folds her arms and watches someone with a sour glare.\",moves to the others who office scratch on process.,looks at someone who snatches his hat.,uses the phone to reveal a pink pot next to an electric recorder drummer.,0\n2464,lsmdc3040_JULIE_AND_JULIA-17810,3549,\"Her classmates stare, and the chef approaches. Someone\",\"Her classmates stare, and the chef approaches.\",Someone,gold,sits at the front seat of a chair.,lights the cigarette as someone blasts away.,wiggles her arm to capture the clerk's glasses.,notices the others watching.,3\n2465,lsmdc3048_LITTLE_FOCKERS-23026,6163,\"Now, a handful of children play in the courtyard of a glass - paneled building. Inside an auditorium, a blonde woman\",\"Now, a handful of children play in the courtyard of a glass - paneled building.\",\"Inside an auditorium, a blonde woman\",gold,brings dinner plates on a table.,holds a sign for a statue in the clock tower.,pushed a large group of kids in the background.,grins at the audience as she strolls on stage.,3\n2466,anetv_01_BrVxYsE0,8633,He then puts ingredients into a glass. He,He then puts ingredients into a glass.,He,gold,clinks the jack around the glass and pours them into a glass.,continues talking before holding it down while stepping it with a plate.,pours alcohol into the mix.,mixes more ingredients mixed together in her bowl.,2\n2467,anetv_01_BrVxYsE0,13231,A man is seen speaking to the camera and leads into him putting out a glass. The man,A man is seen speaking to the camera and leads into him putting out a glass.,The man,gold,puts it all into water continuously and continues speaking.,holds up the paint and begins cutting the half of the wood.,mixes several ingredients together into the glass and presents a drink in the end.,pours water into the glass and begins pouring the contents into a glass.,2\n2468,anetv_01_BrVxYsE0,8631,A man is shown at a bar. He,A man is shown at a bar.,He,gold,\"is being interviewed, and shows the time of skiing.\",is showing how to shaker off food.,is then talking to a camera.,is preparing to throw in several times in a field.,2\n2469,anetv_VRiUhsafjRM,1051,A boy washes the dishes. The cookies,A boy washes the dishes.,The cookies,gold,cover his bowls of cookies.,are put in an oven.,are open and bottles are laid out in the fridge.,is displaying a title card.,1\n2470,anetv_VRiUhsafjRM,1050,Someone stirs the cookie dough in a bowl. The dough,Someone stirs the cookie dough in a bowl.,The dough,gold,is put in the oven.,is placed in a set dough over a bowl of cake.,is put on a baking sheet.,is put on a sheet.,3\n2471,anetv_VRiUhsafjRM,1054,A poked cookie breaks apart. A boy,A poked cookie breaks apart.,A boy,gold,shakes his head yes and plays with a big black dog.,talks and we see delightedly animated screen.,is hurled high into the air as it sails towards the fire.,enters frame on the op throne.,0\n2472,anetv_VRiUhsafjRM,1052,The cookies are put in an oven. A boy,The cookies are put in an oven.,A boy,gold,brings cake while salt in the tray.,adds supplies to a bowl bowl.,sits in the doll while chewing and petting his cattle.,plays a guitar the other boy sings.,3\n2473,anetv_VRiUhsafjRM,1046,A white screen then two boys in the kitchen. We,A white screen then two boys in the kitchen.,We,gold,see two men playing the harmonica.,see the girls knitting volleyball.,see people playing while the camera speaks.,see a counter with ingredient.,3\n2474,anetv_VRiUhsafjRM,1047,We see a counter with ingredient. The boys then,We see a counter with ingredient.,The boys then,gold,add glue to the mix.,mixes cubes into them.,mix ingredients in a bowl.,mixes detergent and soda together.,2\n2475,anetv_VRiUhsafjRM,1049,We see a person shift flour in a bowl. Someone,We see a person shift flour in a bowl.,Someone,gold,adds chicken to the pot and cuts the face of the pumpkin.,paste on the pumpkin.,\", the boy gives the swimmer and a man diving.\",stirs the cookie dough in a bowl.,3\n2476,anetv_VRiUhsafjRM,1053,A boy plays a guitar the other boy sings. Each boy eats a cookie and we,A boy plays a guitar the other boy sings.,Each boy eats a cookie and we,gold,see them come out of the oven.,see the camera in the.,see a band on the ground.,see a mountain of spiders.,0\n2477,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17867,\"Someone battles the uruk - hai, amongst the pillars and blocks of Amon Hen. Someone\",\"Someone battles the uruk - hai, amongst the pillars and blocks of Amon Hen.\",Someone,gold,sprints down the an - gloomy staircase.,\"scrambles down the hillside, away from the fight.\",selects someone 'cage.,\"glides down the corridor corridors, accompanied by someone.\",1\n2478,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17865,Someone backs away into the trees. as 200 uruk - hai swarm onto Amon Hen behind someone! Someone,Someone backs away into the trees. as 200 uruk - hai swarm onto Amon Hen behind someone!,Someone,gold,\"looks around about at a wide tower of the covered warriors, containing two giant, enormous warriors - like twin engines.\",looks around for someone.,\"bursts through the murky the desert ramp, running and clearing it across its land.\",glances up at the chasing guards.,1\n2479,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17873,Someone stumbles and falls. quickly he crawls behind a tree. above Someone,Someone stumbles and falls. quickly he crawls behind a tree. above,Someone,gold,\"turns to see people hidden in a hollow, a few feet away.\",falls to a tree.,lies a man in a white tank top and irons a white sweater.,\", roofers dangle by a tree carving huge orcs.\",0\n2480,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17875,Someone's eyes meet someone's. Someone,Someone's eyes meet someone's.,Someone,gold,picks up the bodhi receiver.,sees the photos on a computer.,stands and makes a move toward someone.,blinks and looks back over his shoulder.,2\n2481,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17870,Elven arrows smash into the uruk - hai. Someone,Elven arrows smash into the uruk - hai.,Someone,gold,turns to a baseball who draws up and holds another duck.,knocks someone's 200 into the goal.,\"come right alongside the car, smiling.\",\"races out of the woods, firing his bow.\",3\n2482,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17868,\"Someone scrambles down the hillside, away from the fight. Someone\",\"Someone scrambles down the hillside, away from the fight.\",Someone,gold,is darting down the steep hillside as heave feet thunder down behind him.,brings someone and someone in.,kisses the boy with his mouth quivering.,hovers on the head of the mohawked vintage.,0\n2483,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17874,\"Someone turns to see people hidden in a hollow, a few feet away. Someone\",\"Someone turns to see people hidden in a hollow, a few feet away.\",Someone,gold,looks at his friends.,glances back at someone as he moves toward the door.,glances over his shoulder at the wounded pig.,\"ambles into the study, where someone enters.\",0\n2484,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17872,\"Someone leaps into the battle, wielding his might axe. Someone stumbles and falls. quickly he\",\"Someone leaps into the battle, wielding his might axe.\",Someone stumbles and falls. quickly he,gold,grabs someone in the throat.,sweeps his hand upward.,crawls behind a tree.,tries to get free.,2\n2485,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17871,\"Someone races out of the woods, firing his bow. Someone\",\"Someone races out of the woods, firing his bow.\",Someone,gold,grabs someone's arm as they blow.,\"leaps into the battle, wielding his might axe.\",turns from the hole and fires.,comes away and snatches his wand.,1\n2486,anetv_MfFM_a26bR8,17688,A person is seen riding around on the horse in a closed in area. The camera,A person is seen riding around on the horse in a closed in area.,The camera,gold,pans around the machine and shows around as well as people standing on the horse.,pans up to the woman smiling as she paddles back.,continues to follow him riding around the area galloping around.,pans all around the man while people walk around him in various area while being interviewed on the camel.,2\n2487,lsmdc3081_THOR-37579,18404,Snow blows around a city of towering crystalline structures. A warrior,Snow blows around a city of towering crystalline structures.,A warrior,gold,lies on the floor.,picks up the glowing box.,\"lies on top of a rocky rim covered hill, clutching old metal casing.\",rode with a construction guide.,1\n2488,lsmdc3081_THOR-37579,18401,\"Smoke clears to reveal a vast army of armored warriors wearing capes and holding spears. Separated by a few dozen yards, the leader of the warriors, a grey bearded man wearing a helmet with twisting horns,\",Smoke clears to reveal a vast army of armored warriors wearing capes and holding spears.,\"Separated by a few dozen yards, the leader of the warriors, a grey bearded man wearing a helmet with twisting horns,\",gold,\"looks into a green courtyard, passing through the trees over a low stone head.\",runs into the library and stares at the iraqi man.,\"leads the three men in the car onto a road, moving slowly towards the flood sign.\",\"faces the red eyed, blue skinned leader of the frost giants.\",3\n2489,lsmdc3081_THOR-37579,18399,Swirling winds sweep across the village splintering homes and extinguishing fires. A woman,Swirling winds sweep across the village splintering homes and extinguishing fires.,A woman,gold,accepts an emergency foam slices with her life belt.,\"stands on a glamorous hanger, pulling a shawl.\",clutches a child to herself as they freeze solid.,\"surrounds a street with dark, an armored suit, and i glimpse camouflage and hypodermic francisco.\",2\n2490,lsmdc3081_THOR-37579,18403,\"The giant's leader opens his box freezing two warriors solid, and then smashes them to pieces. Snow\",\"The giant's leader opens his box freezing two warriors solid, and then smashes them to pieces.\",Snow,gold,peers into the ship.,is searching on the mound.,see someone's nose.,blows around a city of towering crystalline structures.,3\n2491,lsmdc3081_THOR-37579,18396,Villagers stare up at the night sky. Flashes of white light,Villagers stare up at the night sky.,Flashes of white light,gold,filters out from the sky and hits the streets of manhattan.,shoot down beside a distant mountain.,rise into the sky.,flashes across the sky as the ship balustrade sails into a clearing.,1\n2492,lsmdc3081_THOR-37579,18398,\"At the head of an army of bare chested humanoids, one frost giant opens a box which emits an icy blue light. Swirling winds\",\"At the head of an army of bare chested humanoids, one frost giant opens a box which emits an icy blue light.\",Swirling winds,gold,steaming in the benignly modern light.,draw the straw to his lips.,sweep across the village splintering homes and extinguishing fires.,spell as he crashes over the dead bodies.,2\n2493,lsmdc3081_THOR-37579,18397,\"Flashes of white light shoot down beside a distant mountain. At the head of an army of bare chested humanoids, one frost giant\",Flashes of white light shoot down beside a distant mountain.,\"At the head of an army of bare chested humanoids, one frost giant\",gold,opens a box which emits an icy blue light.,sends metal pieces over someone's head and nearly someone who disappears.,hangs from a branch over the tattered landscape.,comes down from the reptilian tentacles as it floats closer.,0\n2494,lsmdc3081_THOR-37579,18400,A woman clutches a child to herself as they freeze solid. Smoke,A woman clutches a child to herself as they freeze solid.,Smoke,gold,clears to reveal a vast army of armored warriors wearing capes and holding spears.,\"trapped by a chain, the breeze blows her hair.\",\", we see.\",swing the saucepan after she turns away.,0\n2495,lsmdc3081_THOR-37579,18402,The warrior leader skewers a giant nearly twice his own height and flings him away. The giant's leader,The warrior leader skewers a giant nearly twice his own height and flings him away.,The giant's leader,gold,forces the women into near empty alcove.,\"opens his box freezing two warriors solid, and then smashes them to pieces.\",whirls in the air like a high hammer throw.,\"hurries out of the lake, sitting on a boulder and rolls him back on the ground and pretends to participate.\",1\n2496,anetv_x0HMqVvqHJE,11853,Two referees runs about and down the field with the players. Other players,Two referees runs about and down the field with the players.,Other players,gold,are close shot to spread that you can go.,watch from the sideline near a fence.,are shown wearing blue uniforms in need of scoring.,walk through the woods.,1\n2497,anetv_x0HMqVvqHJE,11854,Other players watch from the sideline near a fence. A group of people keeping score,Other players watch from the sideline near a fence.,A group of people keeping score,gold,grabs each other and snowboards while one scores a final run through goal circles.,sit at a table on the sideline.,at his curling area as the group hitting player score over to opponents.,vaults onto the great runway.,1\n2498,anetv_x0HMqVvqHJE,11851,\"Many females, some in blue shirts and some in white shirts, run around on a field playing a game. A few people\",\"Many females, some in blue shirts and some in white shirts, run around on a field playing a game.\",A few people,gold,\"get out and end up to the throw, continue traveling.\",run toward anything in the field very well.,watch from the bleachers in the background.,are shooting from the turn before it starts.,2\n2499,anetv_x0HMqVvqHJE,11852,A few people watch from the bleachers in the background. Two referees,A few people watch from the bleachers in the background.,Two referees,gold,walk back to the group to dance.,are trying to hit a large straight ball.,runs about and down the field with the players.,are in a room and practicing two sumo boxing.,2\n2500,anetv_x0HMqVvqHJE,11855,Some of the people watching from the bleachers are standing now. A man in a blue sweatshirt,Some of the people watching from the bleachers are standing now.,A man in a blue sweatshirt,gold,walks on the sideline.,sits down and starts to break up the bars and then he drops his sticks and they suddenly bonds.,begins surfing along several waves.,picks up a coat and begins grooming the dogs for the dog.,0\n2501,anetv_PEpfA3L4m20,17686,\"The spark belongs to a man with a torch in his hand and firing away at an object. Although the room is extremely dark, when the fire ignites you\",The spark belongs to a man with a torch in his hand and firing away at an object.,\"Although the room is extremely dark, when the fire ignites you\",gold,can create a sense of shape and push it on until it stops.,can see that the building is a silver warehouse and a small fan hanging from the ceiling.,\"the whole way, the young smoke suddenly comes out of them.\",\", someone makes a break.\",1\n2502,anetv_PEpfA3L4m20,17685,A dark video is visible before all of a sudden a big spark appears in a room. The spark,A dark video is visible before all of a sudden a big spark appears in a room.,The spark,gold,is used by leaving the object behind.,belongs to a man with a torch in his hand and firing away at an object.,is all brighter now.,changes and another person appears behind him and the crowd begin to gather around his body.,1\n2503,anetv_PEpfA3L4m20,10655,Man is wearing a helmet welding in a suface. welder,Man is wearing a helmet welding in a suface.,welder,gold,is showing a picture of a student.,is talking to the camera in a metal gym room.,is a welding tool on a field.,is holding a welding machine.,3\n2504,anetv_uDqnGmLJyao,15427,A woman is talking to the camera. She,A woman is talking to the camera.,She,gold,has a coat on and is smoking something on her cigarette.,shows how to hang a border along a wall in a living room.,takes a cigarette out of a bottle and holds it to her ear.,starts playing a game on stage.,1\n2505,anetv_uDqnGmLJyao,15428,She shows how to hang a border along a wall in a living room. She then,She shows how to hang a border along a wall in a living room.,She then,gold,goes back to talking to the camera.,demonstrates how to play an accordian.,removes a piece of wallpaper.,irons the wallpaper in the room.,0\n2506,lsmdc3061_SNOW_FLOWER-30292,13204,\"Someone sighs gravely, her face still bruised. Someone\",\"Someone sighs gravely, her face still bruised.\",Someone,gold,sits on a chair.,kisses his wife shoulder twice.,picks up the parcel.,faces her and takes her hand.,3\n2507,lsmdc3061_SNOW_FLOWER-30292,13208,\"Someone gives a solemn, understanding nod, then looks down at their clasped hands. Someone\",\"Someone gives a solemn, understanding nod, then looks down at their clasped hands.\",Someone,gold,shuffles around to face her.,begins to show photos as he talked to her.,\"locks away, smiling.\",\"smiles fondly, his eyes brown with sweat.\",0\n2508,lsmdc3061_SNOW_FLOWER-30292,13206,\"Someone's eyes blink heavily. Someone listens with a gentle gaze, her head\",Someone's eyes blink heavily.,\"Someone listens with a gentle gaze, her head\",gold,resting against the wall.,tilted to one side.,cast against her shoulder.,\"slack, her eyes wide.\",1\n2509,lsmdc3061_SNOW_FLOWER-30292,13207,\"Someone listens with a gentle gaze, her head tilted to one side. Someone\",\"Someone listens with a gentle gaze, her head tilted to one side.\",Someone,gold,\"gives a solemn, understanding nod, then looks down at their clasped hands.\",\"rests a hand on someone's shoulder as someone's gaze sweeps along the tile, barely angled half.\",'s inviting hand gives a satisfied smile.,finds a pair of shiny lame fabric.,0\n2510,lsmdc3061_SNOW_FLOWER-30292,13209,\"Hand in hand, they leave the doorway. Someone\",\"Hand in hand, they leave the doorway.\",Someone,gold,displays a wounded scowl.,gets up from the desk and checks his notebook.,\"lands in a cling elevator, then collapses.\",'s assistant reaches for the egg and pushes it across the floor.,0\n2511,lsmdc3061_SNOW_FLOWER-30292,13200,\"Someone stares at her with disbelief, then shakes her head. Someone\",\"Someone stares at her with disbelief, then shakes her head.\",Someone,gold,\"withdraws gently, her gaze softening.\",flips through her file and quickly takes off her shirt.,tapes her left hand off her arm and looks away from the camera.,watches awkwardly as she notices his robe.,0\n2512,lsmdc3061_SNOW_FLOWER-30292,13203,\"Back at the butcher's house in the 19th century, someone opens a heavy pair of wooden doors, then accompanies someone as she shuffles out with a somber expression. Someone\",\"Back at the butcher's house in the 19th century, someone opens a heavy pair of wooden doors, then accompanies someone as she shuffles out with a somber expression.\",Someone,gold,licks his lips then turns to someone.,sets the sketch down and looks at a photo screen.,puts his left hand on his wand and proceeds to pick someone up.,\"sighs gravely, her face still bruised.\",3\n2513,lsmdc3061_SNOW_FLOWER-30292,13201,\"Someone withdraws gently, her gaze softening. Someone\",\"Someone withdraws gently, her gaze softening.\",Someone,gold,\"marches down the hallway, her head bowed.\",\"leans backward, his head resting on the table.\",\"returns her gaze to someone, who sits back and closes her fists.\",approaches a place apart and take a brush from a woman.,0\n2514,lsmdc3061_SNOW_FLOWER-30292,13210,\"Someone halts, her brow knitted. Someone\",\"Someone halts, her brow knitted.\",Someone,gold,\"stares at her, then timidly works her full lips.\",\"shifts someone and smiles at the passing train, who reaches back to someone.\",\"begins to blow open her hair, revealing her face.\",switches to the light and starts backing away.,0\n2515,lsmdc3089_XMEN_FIRST_CLASS-42793,226,Someone and someone swap looks. She,Someone and someone swap looks.,She,gold,presents a picture of someone and someone.,smiles at the staring slack - jawed agent with his face.,\"nods, then smiles.\",spots him full in the mouth.,1\n2516,anetv_j8lH0saRXl4,14585,\"A hand holding an object touch the ear of the boy. The boy stand and leave, then a naked man\",A hand holding an object touch the ear of the boy.,\"The boy stand and leave, then a naked man\",gold,appears holding a rod.,stands in front of him.,begins talking to the camera.,appears at a sink.,0\n2517,anetv_j8lH0saRXl4,14584,A child solves a cube puzzle while holding a basketball. A hand,A child solves a cube puzzle while holding a basketball.,A hand,gold,holding an object touch the ear of the boy.,stands before attempting to solve the cube with a pencil.,flies out and speaks into the solo cup.,walks with the girl and looks around.,0\n2518,anetv_j8lH0saRXl4,3285,A boy is shown holding a rubix cube and smiling to the camera. The boy then,A boy is shown holding a rubix cube and smiling to the camera.,The boy then,gold,begins solving the rubix cube.,shows the piece of paper and presenting it to the camera.,puts the cube onto the large man who also drops the cube on a desk while the other swipes the shoes on the table.,begins to solve the cube and end by speaking to the camera.,0\n2519,anetv_j8lH0saRXl4,3286,The boy then begins solving the rubix cube. He,The boy then begins solving the rubix cube.,He,gold,continues attempting to solve when a person hits him in the face.,goes to gray before he finishes.,puts them on a board and puts it into two friends.,pours an energy dip into a container of blue and then places it to the drain to add more water to make it spill.,0\n2520,anetv_XKA2W2735WM,14825,A man cross the street holding a small flag and extend his hand. A group of soldiers,A man cross the street holding a small flag and extend his hand.,A group of soldiers,gold,hold a rope at a pole and bend in front of the man.,holds rifles and flags on front a black car.,sit in the snow on a man walking past the black and white roof.,explode adn people standing at the gate with medals march down on grass.,1\n2521,anetv_XKA2W2735WM,14824,People watch a parade where people walk on front a marching band holding a banner and waving the viewers. A man,People watch a parade where people walk on front a marching band holding a banner and waving the viewers.,A man,gold,speaks in front of a piano and turns around on the side and is diving about him in tai chi.,cross the street holding a small flag and extend his hand.,takes a selfie while on video footage of the sun playing in the building.,\"is shown, dressed in a panama hat and outfit.\",1\n2522,anetv_XKA2W2735WM,14826,A group of soldiers holds rifles and flags on front a black car. A veteran,A group of soldiers holds rifles and flags on front a black car.,A veteran,gold,raps on the brick wall.,and one man pump skulls from a hot rifle and shaped holes.,officer holds two duty tickets.,make the military salute.,3\n2523,anetv_0GpNcvAVWVg,6052,The boy gets off the swing and we follow him to the slide. The boy,The boy gets off the swing and we follow him to the slide.,The boy,gold,swing at a pinata with his hands and head as he rakes the other boy away.,sneaks on and tries to keep his face upright.,\"continues eating and talking, smiling happily.\",finishes sliding and goes to a different part of the park and plays around.,3\n2524,anetv_0GpNcvAVWVg,6053,The boy finishes sliding and goes to a different part of the park and plays around. The boy,The boy finishes sliding and goes to a different part of the park and plays around.,The boy,gold,\"finishes diving, and a series of dark divers appear running around him.\",does a few flips and falls off the grass.,slides and falls on the bridge before sliding down.,looks very happy as some group of young rafters ride around as spectators drive to the fence.,2\n2525,anetv_0GpNcvAVWVg,6055,He plays with the large swing with another kid. We,He plays with the large swing with another kid.,We,gold,see the end screen.,\"a kid hits the swing in the playground, flipping using the bars to find one end of the swing.\",leave the sand on windows on a building.,\"play barbecue again for awhile, then he is playing again making fast progress.\",0\n2526,anetv_0GpNcvAVWVg,6054,The boy slides and falls on the bridge before sliding down. He,The boy slides and falls on the bridge before sliding down.,He,gold,plays with the large swing with another kid.,get and fall across a bridge.,\"stands just beneath his suit, and gently lifts his back.\",gets in the ring and talks to someone in the crowd.,0\n2527,anetv_0GpNcvAVWVg,6051,We see kids playing at the playground. The boy gets off the swing and we,We see kids playing at the playground.,The boy gets off the swing and we,gold,talk to the boy sitting on the floor.,hear a little kid at work.,see the boy watching the boy from.,follow him to the slide.,3\n2528,lsmdc1006_Slumdog_Millionaire-73551,2264,\"The host turns to someone, standing in the wings of the studio. Someone and the host\",\"The host turns to someone, standing in the wings of the studio.\",Someone and the host,gold,walk to their chairs positioned at the center of the studio stage.,step out of the dining room.,return with a smile.,\"move away and place their glasses beneath him, then clasps their hands together.\",0\n2529,lsmdc1006_Slumdog_Millionaire-73551,2259,\"In an interrogation room, a corpulent policeman blows cigarette smoke across the table, into the face of a terrified, sweating, young, male prisoner. The prisoner, someone,\",\"In an interrogation room, a corpulent policeman blows cigarette smoke across the table, into the face of a terrified, sweating, young, male prisoner.\",\"The prisoner, someone,\",gold,is asked to see the action.,blinks rapidly as the smoke stings his eyes.,is to dance with someone.,looks skywards through the binoculars at the sound of the lightning.,1\n2530,lsmdc1006_Slumdog_Millionaire-73551,2263,Hands scatter Rupee notes onto the floor. The host,Hands scatter Rupee notes onto the floor.,The host,gold,stops playing the ensemble.,faces the faces of someone and the germans.,records a graphic of the appropriate space and withdraws a copy of the newspaper.,\"turns to someone, standing in the wings of the studio.\",3\n2531,lsmdc1006_Slumdog_Millionaire-73551,2260,\"The prisoner, someone, blinks rapidly as the smoke stings his eyes. The policeman suddenly\",\"The prisoner, someone, blinks rapidly as the smoke stings his eyes.\",The policeman suddenly,gold,looks through someone.,turns and hugs her.,lunges across the table.,\"turns, suspended in the air with someone fallen over and unconscious.\",2\n2532,lsmdc1006_Slumdog_Millionaire-73551,2261,The policeman suddenly lunges across the table. A question,The policeman suddenly lunges across the table.,A question,gold,come from the woman's hand.,emerges from a guard.,appears on the screen.,struck him in the arm.,2\n2533,lsmdc1006_Slumdog_Millionaire-73551,2262,A question appears on the screen. Hands,A question appears on the screen.,Hands,gold,sit on the other side of the room.,look back at him.,read the half - photos.,scatter rupee notes onto the floor.,3\n2534,anetv_d6uMS_ZgMg4,10589,A person is seen adjusting the settings of the bike as well as riding around and drinking water. More shots,A person is seen adjusting the settings of the bike as well as riding around and drinking water.,More shots,gold,are shown of people riding around and end by taking the tire and getting him into the pool.,are shown of people riding on camels and is shown taking them out afterwards.,are shown of the woman adjusting the machine as well as rolling it away and continuing to ride.,are shown of the people riding on top of the camera and riding out soaked again.,2\n2535,anetv_d6uMS_ZgMg4,10588,A camera pans all around a piece of exercise equipment followed by a woman riding on it. A person,A camera pans all around a piece of exercise equipment followed by a woman riding on it.,A person,gold,is seen adjusting the settings of the bike as well as riding around and drinking water.,pierces items into a clip of water from a shed.,is seen climbing on a snowy ladder while climbing up a wall.,is seen pushing down a bike while moving it around and walking back to the bicycle.,0\n2536,anetv_y8RpTBtGG1g,4416,A kid in blue shorts is vacuuming the floor. A kid in a red shirt,A kid in blue shorts is vacuuming the floor.,A kid in a red shirt,gold,shows off his ice cream.,is playing on a banana chair.,is talking in front of the camera.,takes the apron and cleans the dishwasher.,1\n2537,anetv_y8RpTBtGG1g,4417,A kid in a red shirt is playing on a banana chair. There,A kid in a red shirt is playing on a banana chair.,There,gold,\", in a room, stands in front of the house talking.\",\"are in a long street in a dark competition, and small balls are in a yard.\",is a white dog next to the boy.,\"water is in the pool, and a man in a white shirt turns to hit the ball around the court.\",2\n2538,anetv_y8RpTBtGG1g,8181,The boy wearing a red shirt slides and the one vacuuming dances a little while and put the vacuum on the back of the other. He eventually,The boy wearing a red shirt slides and the one vacuuming dances a little while and put the vacuum on the back of the other.,He eventually,gold,cuts the wallpaper back and begins making it to the wall.,gets out of the room and goes back to.,continues his chore on another part of the floor.,pushes the carpet back down and the man.,2\n2539,anetv_y8RpTBtGG1g,8180,A little boy is vacuuming the floor while the other one wearing a red shirt is watching him. The boy wearing a red shirt slides and the one,A little boy is vacuuming the floor while the other one wearing a red shirt is watching him.,The boy wearing a red shirt slides and the one,gold,walks out holding a white blouse.,vacuuming dances a little while and put the vacuum on the back of the other.,hits the ball with his opponent while the white man follows the man.,wears the helmet on pearls and begins to cut it with a little neck.,1\n2540,anetv_6pY2zz2_CCU,3579,\"Woman is sitting on a couch with a cat on her legs, he grab a scisoors from the table next to her and starts cutting the front cat nails. she\",\"Woman is sitting on a couch with a cat on her legs, he grab a scisoors from the table next to her and starts cutting the front cat nails.\",she,gold,\"stands up again, continues to cut it, and leans choked with it.\",sees the yellow scissor and hand it onto the shims to expose it.,looks his back paws and gave her cat some cat food.,puts the needle through to make sure it cuts backwards.,2\n2541,anetv_Z7gECmnHeKk,19338,A man is seen sitting on a piece of exercise equipment and rowing himself back and fourth on a machine. The man,A man is seen sitting on a piece of exercise equipment and rowing himself back and fourth on a machine.,The man,gold,continues moving himself back and fourth as the camera captures him from several angles.,switches up the machine and continues along the conversation to others back and fourth while moving away and not moving.,continues moving around while looking to the camera and pointing to a closet and begins adjusting the machine.,continues to spin all around the machine while the camera pans around the movements.,0\n2542,anetv_-zHX3Gdx6I4,5229,The boy lifts his body above the height of a pole. The boy,The boy lifts his body above the height of a pole.,The boy,gold,does a ball flips the entire auditorium time.,spins in circles with one leg and looks over.,lands on his back on to a red mat.,holds the weights in his hand.,2\n2543,anetv_-zHX3Gdx6I4,5228,A boy is running down a track. The boy,A boy is running down a track.,The boy,gold,\"jumps for a flip, then slides down a mountain.\",turns and runs to throw the javelin.,lifts his body above the height of a pole.,jumps off his skateboard.,2\n2544,anetv_-zHX3Gdx6I4,5231,The boy gets up from the mat. The boy,The boy gets up from the mat.,The boy,gold,celebrates by clapping and flexing both arms.,lowers his legs and the boy follows him.,rides down down the slide.,goes upstairs and vacuums the similar floor.,0\n2545,anetv_-zHX3Gdx6I4,5230,The boy lands on his back on to a red mat. The boy,The boy lands on his back on to a red mat.,The boy,gold,gets up from the mat.,lands on his leg trying to put his feet in the gym.,shakes himself as his teammates arrive.,begins to spin in circles.,0\n2546,anetv_xwSeXFkTNlE,19443,He take a breath and the audience claps for him before he jumps back on it and starts spinning again. When he is done he,He take a breath and the audience claps for him before he jumps back on it and starts spinning again.,When he is done he,gold,removes the shoes and proceeds to cover his face.,stands up and does this over the city.,\"walks down and shakes hands with all the team mates, before he gets on one last time.\",continues flipping apprehensively in the air trying to get the head from the dog.,2\n2547,anetv_xwSeXFkTNlE,19442,He jumps on to the board and starts spinning really fast before he jumps off and walks around. He take a breath and the audience,He jumps on to the board and starts spinning really fast before he jumps off and walks around.,He take a breath and the audience,gold,captures movements as the crowd cheers and cheers.,and does the same rounds.,\"around him and when they are done, he jumps up.\",claps for him before he jumps back on it and starts spinning again.,3\n2548,anetv_xwSeXFkTNlE,19441,A gymnast is patiently waiting to start his performance. He,A gymnast is patiently waiting to start his performance.,He,gold,struggles to look back to the notes.,does jump on his back.,takes the disc and falls into the sand pit.,jumps on to the board and starts spinning really fast before he jumps off and walks around.,3\n2549,anetv_Qmo9D73hWXY,8647,We see a person in hockey gear skate onto the ice. Another person enters and we,We see a person in hockey gear skate onto the ice.,Another person enters and we,gold,watch two people play hockey.,see people standing in their tracks.,see a house with a red jacket.,see people walking on the track behind them.,0\n2550,anetv_Qmo9D73hWXY,8649,We see the puck drop in front of the camera. The person,We see the puck drop in front of the camera.,The person,gold,knocks the goalie to the ground.,uses a cloth to spray the area again.,takes a big drink from a mug.,moves the points on the right.,0\n2551,anetv_Qmo9D73hWXY,8650,The person knocks the goalie to the ground. The goalie,The person knocks the goalie to the ground.,The goalie,gold,turns on a advantage and runs his arms down.,skates up to the camera.,blocks it as the goalie tries to point towards a goal in the end.,tries to shake hands.,1\n2552,anetv_Qmo9D73hWXY,8648,Another person enters and we watch two people play hockey. We,Another person enters and we watch two people play hockey.,We,gold,see the black screen again.,see a policeman playing on the sideline.,see a young groomer with a long hair face.,see the puck drop in front of the camera.,3\n2553,anetv_Vcxv3nyZpSs,7081,\"When she reaches that end, she makes a turn but it's too tight and she reverses a little. The girl then makes her turn in the opposite direction once again and when she reaches half way down the yard she\",\"When she reaches that end, she makes a turn but it's too tight and she reverses a little.\",The girl then makes her turn in the opposite direction once again and when she reaches half way down the yard she,gold,turns once again and heads up the direction she just came from.,comes and bends and bends down behind it.,stares up at the ocean very precisely up her hand.,\"stands backward in a traffic very fast, continuing to ride the horse very fast in the snow.\",0\n2554,anetv_Vcxv3nyZpSs,7080,A girl is riding on a yellow riding lawn mower on a very large yard filled with green grass. When the girl reaches the end of the yard she,A girl is riding on a yellow riding lawn mower on a very large yard filled with green grass.,When the girl reaches the end of the yard she,gold,lets go of a blue tree and waits as someone goes with it.,grabs some papers in the air.,makes a turn and drives up in the same direction she just came from.,is attempting to warm the mower and eventually misses the camera.,2\n2555,lsmdc1034_Super_8-8056,4993,\"Someone, who has heavy sideburns, steps inside the house, then immediately comes back out. Someone\",\"Someone, who has heavy sideburns, steps inside the house, then immediately comes back out.\",Someone,gold,\"follows someone back into the house, leaving an awkward looking someone standing on the veranda.\",\"turns and shuts the door, drying someone's hands.\",is round for the exit.,gives someone a wink.,0\n2556,lsmdc1034_Super_8-8056,4995,She comes back out to someone. Someone,She comes back out to someone.,Someone,gold,sits glumly next to someone on the bed.,\"steps to the door, then ventures in, then looks up, and sees one of the girls doing long hair.\",looks surprised and steps towards her.,both lifts his head and she averts her tearful eyes.,2\n2557,lsmdc1034_Super_8-8056,4994,\"Someone follows someone back into the house, leaving an awkward looking someone standing on the veranda. She\",\"Someone follows someone back into the house, leaving an awkward looking someone standing on the veranda.\",She,gold,turns into a counter where someone holds the window.,leads the way across an empty modern towards an upper floor.,finds herself leaning against an oncoming car.,comes back out to someone.,3\n2558,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59953,4504,Someone leads people under the cover of Woods. Someone,Someone leads people under the cover of Woods.,Someone,gold,takes someone to one side.,lifts her off his feet and storms off.,steps into a tent and kicks backwards the pup.,runs as the crowd stampede toward him.,0\n2559,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59953,4505,Someone takes someone to one side. Someone,Someone takes someone to one side.,Someone,gold,\"lifts the broken, white leash in his palm.\",\"descends into a shaft of tall, wooden benches beneath the captain's desk.\",\"feels his own breast, shifting his focus gaze to the overlook.\",nods.,3\n2560,anetv_bJkemB0CcKo,19499,He pours egg into the pan and pushes it around with several vegetables. He,He pours egg into the pan and pushes it around with several vegetables.,He,gold,puts the ingredients into a plate and cuts more into the egg.,sticking some of the ingredients into the container and then showing them again and ends by showing off her hands.,has taken his money to the bowls.,finishes by putting the omelet onto a plate and eating one big bite.,3\n2561,anetv_bJkemB0CcKo,19498,A man talks to the camera smiling and transitions to him holding a pan and spreading butter into it. He,A man talks to the camera smiling and transitions to him holding a pan and spreading butter into it.,He,gold,adds the omelette on it and then places it on a plate.,then talks to the camera and puts plastic lame sticks in a glass.,pours egg into the pan and pushes it around with several vegetables.,grabs a taste with fried pasta.,2\n2562,lsmdc0012_Get_Shorty-53314,15115,Someone steps into his doorway. Someone,Someone steps into his doorway.,Someone,gold,\"shakes his head, starts back for the elevator.\",puts them on his jacket.,sweeps his hand around the table.,crouches down to someone.,0\n2563,lsmdc0012_Get_Shorty-53314,15114,\"As he starts back, he sees someone's scared look just before he slams the door shut. Someone\",\"As he starts back, he sees someone's scared look just before he slams the door shut.\",Someone,gold,is visible in front of him.,kicks the bedroom door shut.,steps into his doorway.,turns from the elevator and gives a hollow nod.,2\n2564,lsmdc0012_Get_Shorty-53314,15112,\"He gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone. He rounds a corner, and we\",He gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone.,\"He rounds a corner, and we\",gold,\"find him standing, thinking about what he is doing, who is now on a sidewalk, a small way home.\",can only see through the window in the confusion of the sprawling building.,see an explosion of light up ahead as we come upon.,rate through papers slot along either side of the road.,2\n2565,lsmdc0012_Get_Shorty-53314,15116,\"Someone shakes his head, starts back for the elevator. Someone\",\"Someone shakes his head, starts back for the elevator.\",Someone,gold,\"stops, turns around.\",snuggles down from food on his desk.,breezes through the room wears a dressing gown.,gets into his car and waits into the woods.,0\n2566,lsmdc0012_Get_Shorty-53314,15111,Someone pulls in behind a row of trailers. He,Someone pulls in behind a row of trailers.,He,gold,gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone.,\"has a long collar, trimmed with streaks in gray curl.\",studies it as someone strolls down the aisle with the task.,makes a call on his mobile home.,0\n2567,lsmdc0012_Get_Shorty-53314,15110,Someone drives a dark road up into the park. Someone,Someone drives a dark road up into the park.,Someone,gold,digs to his car.,pulls in behind a row of trailers.,runs down the track past the rough town.,stands at the edge of the ramp and disappears.,1\n2568,lsmdc0012_Get_Shorty-53314,15107,He picks up the briefrase as he rises from the sofa and someone gets out of his chair. Someone,He picks up the briefrase as he rises from the sofa and someone gets out of his chair.,Someone,gold,tries to look anxious but falls limply into his stomach.,\"unwraps some oatmeal from a tray and throws it onto a table and sits, looking up and down.\",\"reaches for the door, opens it and looks back at someone.\",sits beside his sadly unconscious someone.,2\n2569,lsmdc0012_Get_Shorty-53314,15108,\"Someone reaches for the door, opens it and looks back at someone. As someone\",\"Someone reaches for the door, opens it and looks back at someone.\",As someone,gold,\"sees someone coming out onto a flight of stairs, knocks the window.\",starts for the elevator.,lies back on the bed.,sets out the door.,1\n2570,lsmdc3033_HUGO-14874,13228,Carnival barker stands outside a cinematograph. Someone and someone,Carnival barker stands outside a cinematograph.,Someone and someone,gold,slide down a steep hill.,merge down toward the exit park.,step into a tent.,shoot out of a tree's trunk and take a flying leap.,2\n2571,lsmdc3033_HUGO-14874,13229,Someone and someone step into a tent. Someone's mouth,Someone and someone step into a tent.,Someone's mouth,gold,drops open as he watches the screen.,falls open as the barber unwraps his magazine.,opens with surprise as he takes a wine bottle from his couch.,hangs open as she watches from another room.,0\n2572,anetv_K5X_ytiMuqc,7925,She records several items shown around the store and then herself in a bikini. She,She records several items shown around the store and then herself in a bikini.,She,gold,scrubs the water with soap.,continues to show how to use the trailer to sit on the chair one more time.,pops into large gurgles of paint with several pictures and outro for.,puts the lotion on herself standing in front of a lake and smiling into the camera.,3\n2573,anetv_EJxWhTE_ZeE,12448,The video leads into several people washing windows as quickly as they can while many watch them on the side. Many men,The video leads into several people washing windows as quickly as they can while many watch them on the side.,Many men,gold,speak to the camera as well as people announcing the scores and more window washing taking place.,skate past several people before shooting and shooting another key.,continue speaking to the camera as their entertainment and text shown across the screen.,speak to the camera and speak into various objects of the vacuum and get into the car.,0\n2574,anetv_8HdfGmQaabM,10416,She shows how she made the pesto sauce in a blender before mixing mini tomatoes in with the pasta. She,She shows how she made the pesto sauce in a blender before mixing mini tomatoes in with the pasta.,She,gold,slams her on the counter.,\"returns to the camera, continuing to talk before we see a final scene of the pasta.\",pours in the water.,puts flour into the pot and then continues a salad in the bowl.,1\n2575,anetv_8HdfGmQaabM,10415,A blonde woman in a green sweater is talking. She,A blonde woman in a green sweater is talking.,She,gold,has a glass stick underneath the other.,\"starts shaving her legs, shaving her legs.\",smokes a cigarette in her mouth.,shows off a plate filled with pasta salad and vegetables.,3\n2576,anetv_wvmuUuLOoEQ,6236,They then go to the snowy mountains to ski. They,They then go to the snowy mountains to ski.,They,gold,are seen skiing down the slopes together.,see a beautiful field.,finish their tubes and ski both down the hill.,pull back and flip out of the water.,0\n2577,anetv_wvmuUuLOoEQ,6235,\"A car is seen driving down the road, and the people arrive at a restaurant for breakfast. They then\",\"A car is seen driving down the road, and the people arrive at a restaurant for breakfast.\",They then,gold,\"see the same group cars, one attempts to escape and look around.\",go to the snowy mountains to ski.,take a drink of beer and keep walking.,begin peddling the driveway.,1\n2578,anetv_wvmuUuLOoEQ,8452,People are inside a van talking and atchnig a car passing next to them. men,People are inside a van talking and atchnig a car passing next to them.,men,gold,are standing in a roofed gym talking to the camera.,come out and get up.,are in a restaurant serving breakfast and orange juice from a machine.,are riding bumper cars in a small parking lot.,2\n2579,anetv_7hRls13HJow,5323,A small girl is washing the floor with a mop and talking to the camera man. The camera man,A small girl is washing the floor with a mop and talking to the camera man.,The camera man,gold,\"hits the ball up, the rag shows another man laying on the rug.\",talks to the girl about cleaning and why she likes it.,\"is dancing with some electric toothbrushes on her body, stroking her feet.\",is in the ocean swimming with a person that is kayaking on the ocean.,1\n2580,anetv_7hRls13HJow,5324,The camera man talks to the girl about cleaning and why she likes it. The girl,The camera man talks to the girl about cleaning and why she likes it.,The girl,gold,brushes her hair as she continues talking to the camera.,gets shots inside the truck and talks to the people about her.,finishes washing the floor.,ends the demonstration and shows someone how to wash her hair.,2\n2581,anetv_7hRls13HJow,5322,A person is filming a house and a dog walking into frame. A small girl,A person is filming a house and a dog walking into frame.,A small girl,gold,is seen petting the cat while walking down the driveway.,is washing the floor with a mop and talking to the camera man.,is looking down in a bathroom.,\"emerges from the camera, holding up a snowball and raking her.\",1\n2582,anetv_QX3pwZOJbRs,13005,Two women attempt to wash two dogs. They,Two women attempt to wash two dogs.,They,gold,are poured with some shampoo.,\"get in the tub with the dogs and do shampoo, soap, and then rinse the dogs.\",sit on an old rectangle cycle by.,\"continue to play, till the music plays to the ice, squinting to go through the rest.\",1\n2583,lsmdc0031_The_Lost_Weekend-65704,9007,The man looks at someone but does n't answer. The man,The man looks at someone but does n't answer.,The man,gold,kicks the door shut then complies.,\"starts crying again, and someone falls.\",turns and heads out of the coupe.,\"stands staring at him, terrified.\",3\n2584,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9804,3520,He feeds a small creature. He,He feeds a small creature.,He,gold,trims up a canvas and sprayer from underneath it.,takes a bite of food as he speaks.,opens a small blue tin and takes out someone's rat.,punches someone's face and strokes richard parker's face.,2\n2585,anetv_XCejO7RyWdA,4654,A woman in a pink shirt is standing outside. A brown dog,A woman in a pink shirt is standing outside.,A brown dog,gold,is standing next to him.,is standing next to a dock near a dressing counter.,stands up next to them.,is playing with a frisbee.,3\n2586,lsmdc3064_SPARKLE_2012-3898,7139,She puts one hand around his neck. He,She puts one hand around his neck.,He,gold,shimmies up and down.,strokes her chin and close her hold.,\"sits beside her down one leg, resting on her thigh.\",guests arrive as someone sits nestled against each other.,0\n2587,lsmdc3064_SPARKLE_2012-3898,7136,A couple kisses in the shadows. She,A couple kisses in the shadows.,She,gold,tweed his head downward.,grabs someone's hand and kisses her on the lips.,is topped by large army of trees.,looks around and sees a silhouetted couple kissing.,3\n2588,lsmdc3064_SPARKLE_2012-3898,7141,\"Later, someone rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind. She\",\"Later, someone rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind.\",She,gold,\"rests her cheek on his shoulder, looking to the side.\",removes an emblem from his venetian blind.,pushes his chair up as a cameraman pulls up behind him.,smiles like an animal.,0\n2589,lsmdc3064_SPARKLE_2012-3898,7135,\"One dancer wears a hat tilted over his eyes, a lit cigarette in his mouth. A couple\",\"One dancer wears a hat tilted over his eyes, a lit cigarette in his mouth.\",A couple,gold,kisses in the shadows.,sits in a bucket.,smiles in front of the mirror.,enters in the parade.,0\n2590,lsmdc3064_SPARKLE_2012-3898,7137,She looks around and sees a silhouetted couple kissing. She,She looks around and sees a silhouetted couple kissing.,She,gold,walks away from the house of the house painting his backroom.,\"part, their awning covers the drawn iv.\",pops up and locks him in.,moves her body closer to his as they dance.,3\n2591,lsmdc3064_SPARKLE_2012-3898,7138,She moves her body closer to his as they dance. She,She moves her body closer to his as they dance.,She,gold,slips through a doorway.,stands close to him.,puts one hand around his neck.,throws her hands around his shoulders.,2\n2592,lsmdc3064_SPARKLE_2012-3898,7142,\"She rests her cheek on his shoulder, looking to the side. As their legs\",\"She rests her cheek on his shoulder, looking to the side.\",As their legs,gold,\"move, they step closer, raising their fingers in each other's eyes.\",stretched out in front of them.,\"ripple together, he tilts his head toward himself.\",\"resting against his skin, she presses a kiss to his cheek.\",1\n2593,lsmdc3064_SPARKLE_2012-3898,7140,\"He shimmies up and down. Later, someone\",He shimmies up and down.,\"Later, someone\",gold,wears a bridal blanket as she beams through the countryside.,plays piano sitting in a booth with his cell at the center of an ancient dining table.,and his boyish aide sit on the edge of his seat.,rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind.,3\n2594,lsmdc3064_SPARKLE_2012-3898,7143,As their legs stretched out in front of them. She,As their legs stretched out in front of them.,She,gold,presses her foot into someone's fist.,lets someone in with some people.,ducks her chin in surprise.,jumps up from her car and clings to one of them.,2\n2595,anetv_GI8tylrKKlA,11026,A woman is talking while seated on a couch. She,A woman is talking while seated on a couch.,She,gold,\"is then seen wearing headphones, talking to the camera.\",is talking on a table with women knitting.,is holding a cat in her lap.,picks up liquid and puts it.,2\n2596,anetv_GI8tylrKKlA,11027,She is holding a cat in her lap. She,She is holding a cat in her lap.,She,gold,then straddles the cat.,closes the video and talks to it.,uses a small pair of scissors to cut the cat's toenails.,starts clipping the kitten's head with a marker.,2\n2597,anetv_GI8tylrKKlA,11496,We see the lady clip the cats claws. The cat,We see the lady clip the cats claws.,The cat,gold,tries to get away so the lady rubs the cat and moves him to her other side.,pours with black paint into the bush.,is shaking the cats tongue.,stops and turns back to see the cat cut off.,0\n2598,anetv_GI8tylrKKlA,11497,The cat tries to get away so the lady rubs the cat and moves him to her other side. The cat,The cat tries to get away so the lady rubs the cat and moves him to her other side.,The cat,gold,trims her swirling paws and gives the blue paw toy to his cat.,tries to get free.,\"pokes her with the cat, and pets the cat on the ground.\",\"is moving seductively into the girl's lap, and all its rooms are being in across party.\",1\n2599,anetv_GI8tylrKKlA,11498,The cat tries to get free. The lady,The cat tries to get free.,The lady,gold,puts the pieces in the lip screws to see two.,sticks her tongue up.,walks through the opening and pulls out a dog.,finishes and talks to the camera.,3\n2600,anetv_GI8tylrKKlA,11495,We see a lady laying on the couch talking to the camera next to her cat. We,We see a lady laying on the couch talking to the camera next to her cat.,We,gold,is seated at a table with a dog and carries a dog pointing at the dog.,see the ear twice in the bed and the tattoo child lets the paper part into the wall.,see the lady clip the cats claws.,she is shown in front of a series of images of the dog jumping and then a plastic hook.,2\n2601,anetv_Mv2L6HxB2dk,8963,There are several people skating on the main road in the downtown area of a city at night. The street,There are several people skating on the main road in the downtown area of a city at night.,The street,gold,\"is a jungle with tiny clouds only about - blue stars, new york city.\",is filled with trees and flowing hills.,is filled with occasional scenes of people standing around a parking lot and watching him out on the sides.,is lit up with street lights and stores along the sidewalk.,3\n2602,anetv_Mv2L6HxB2dk,8964,The street is lit up with street lights and stores along the sidewalk. The people,The street is lit up with street lights and stores along the sidewalk.,The people,gold,keep looking up the watch.,skate through the road where there are no cars driving.,use their wands as they will.,continue working on the house; not being finished encounters.,1\n2603,anetv_BlfFKVGQbi8,967,A man plays many games of shuffleboard in a room occupied by other people and many other shuffle boards. A man in a collared shirt and glasses,A man plays many games of shuffleboard in a room occupied by other people and many other shuffle boards.,A man in a collared shirt and glasses,gold,is polishing another in a blue marble on it with an orange background.,is listening to views of the talk.,plays shuffleboard with metal pucks and a long wooden shuffleboard in front of a lit scoreboard in a room.,\"sits on the side of a stand, while people play a soccer game.\",2\n2604,anetv_GyLX64aJY80,13710,\"The sandwich now has butter on both sides and the sandwich is placed in a skillet and is fried. Once complete, it\",The sandwich now has butter on both sides and the sandwich is placed in a skillet and is fried.,\"Once complete, it\",gold,is placed on a red plate and cut in half with a thick knife.,has a plate of bread and a raw pancake then put in his peeling one end.,stands banana bread and cheese before measuring the egg with eggs relaxing.,cuts to a shows that was then placed in front of the twig with chocolate.,0\n2605,anetv_GyLX64aJY80,13709,\"The person then takes one slice, spreads the butter over it and puts two slices of cheese on it and adds the other slice on top of it. The sandwich now has butter on both sides and the sandwich\",\"The person then takes one slice, spreads the butter over it and puts two slices of cheese on it and adds the other slice on top of it.\",The sandwich now has butter on both sides and the sandwich,gold,is introduced by the icing cutting the tomato.,is placed in a skillet and is fried.,is shown using an o.,and it is held together.,1\n2606,anetv_O9crPOB_9tE,17216,\"The man, in a wetsuit, is standing and riding on a yellow surfboard and a red surfboard first on a calm wave and then on a series of large and high waves. The man\",\"The man, in a wetsuit, is standing and riding on a yellow surfboard and a red surfboard first on a calm wave and then on a series of large and high waves.\",The man,gold,jumps and puts in the same couch.,is sitting with his surfboard and a little boy holding a pumpkin.,rides the rough waves on the surfboard with the waves at time covering his entire body and surfboard.,\"goes to drop his feet like well, then stops without looking backward.\",2\n2607,anetv_ZwDfAhQVKLQ,9805,A man is seen in the corner moving back and fourth on exercise equipment. A woman then,A man is seen in the corner moving back and fourth on exercise equipment.,A woman then,gold,comes out of the room with a ladder and continues cleaning.,begins playing the instrument while looking off into the distance.,speaks to the man as he continues rowing and showing a close up of the machine.,demonstrates how to properly jump roping and performs gymnastics and tennis.,2\n2608,anetv_ZwDfAhQVKLQ,9804,A person is seen walking into frame in a dark room and walks down a long set of stairs. A man,A person is seen walking into frame in a dark room and walks down a long set of stairs.,A man,gold,watches the man walk up to the fence to show several part of the shop while stopping and speaking to another man.,is shown a close up of a man followed by walking across the thick carpet.,makes several more dancing moves while the camera captures him from several angles.,is seen in the corner moving back and fourth on exercise equipment.,3\n2609,anetv_LMxfRVcBrD8,4648,She checks the pasta for it's softness. She,She checks the pasta for it's softness.,She,gold,gets out of a mini car and drives it in a new black jeep.,removes the cooked pasta off of the gas and pours it into a plate.,lets go of a can.,takes something out of another salad bottle and sniffs it.,1\n2610,anetv_LMxfRVcBrD8,4649,She removes the cooked pasta off of the gas and pours it into a plate. Then she,She removes the cooked pasta off of the gas and pours it into a plate.,Then she,gold,\"begins going forward with several ingredients, cooking all of the ingredients in the pot.\",puts the slices on the salad before adding the pan to a plate.,digs out her knapsack and shrugs tearfully.,adds the cooked sauce right over the pasta.,3\n2611,anetv_LMxfRVcBrD8,4647,She sautes chopped onions and some Italian dressing along with garlic on a saucepan. She then,She sautes chopped onions and some Italian dressing along with garlic on a saucepan.,She then,gold,cut the stirring of water and boil into the pot.,\"covers the cucumbers with cornstarch, frying tomatoes.\",mixes the ingredients together in one before making a sauce.,adds a cup of grape tomatoes.,3\n2612,anetv_LMxfRVcBrD8,4646,She begins with adding spaghetti in a large pot of boiling water. She,She begins with adding spaghetti in a large pot of boiling water.,She,gold,mixes plates together on the pan.,pours the egg into the tube again.,sautes chopped onions and some italian dressing along with garlic on a saucepan.,measures the dish with water.,2\n2613,anetv_LMxfRVcBrD8,4645,A woman chef is demonstrating how to make restaurant style pasta. She,A woman chef is demonstrating how to make restaurant style pasta.,She,gold,begins with adding spaghetti in a large pot of boiling water.,toasts revealing a seated someone.,uses a mix to mix something on a plate.,is doing other vegetables on a sandwich.,0\n2614,anetv_LMxfRVcBrD8,4650,She chops fresh basil with a pair of scissors and garnishes it over the pasta along with some cheese Then she shows an Alfredo sauce recipe. She,She chops fresh basil with a pair of scissors and garnishes it over the pasta along with some cheese Then she shows an Alfredo sauce recipe.,She,gold,shows the various ingredients to make boiling leafy tops.,is beginning to serve something from anger also.,claps it up and adds a stop to the bottom.,sprinkles grated parmesan cheese over the alfredo pasta to finish off.,3\n2615,anetv_KpoH4pBp9fg,13623,She shows a cake cooling on a metal rack. She,She shows a cake cooling on a metal rack.,She,gold,\"demonstrates how to mix the ingredients in a mixer, then bake the cake.\",goes inside of a pepper that she pretends to sell.,continues eating and talking on how to make a sandwich.,folds it up and puts them in her arm.,0\n2616,anetv_KpoH4pBp9fg,13622,\"A woman is standing inside a dark kitchen, talking. She\",\"A woman is standing inside a dark kitchen, talking.\",She,gold,is wearing a large white cape.,shows a cake cooling on a metal rack.,is demonstrating how to cut the pumpkin.,is showing him that piece of metal as she discusses the quote.,1\n2617,anetv_KpoH4pBp9fg,13624,\"She demonstrates how to mix the ingredients in a mixer, then bake the cake. When it is done, she\",\"She demonstrates how to mix the ingredients in a mixer, then bake the cake.\",\"When it is done, she\",gold,puts it on the pot then adds sausage and juice to the mixture.,turns it onto the rack to cool.,scoops some tomatoes next to the lettuce with a stock round peeler and pours it into the oven and wraps the ornaments over it.,fastens the mix and put it on a plate.,1\n2618,anetv_arfBwR8qgPw,14486,A camera shows a group of people sitting around a gymnasium floor with a few standing and one crossing his arms. Suddenly a student,A camera shows a group of people sitting around a gymnasium floor with a few standing and one crossing his arms.,Suddenly a student,gold,comes into frame and jumps over a pole into a mat.,runs out and back to score.,looks up to see him doing a slow punch routine.,takes a man to the man's arm and leads him back to the edge of the pool.,0\n2619,anetv_bqBJ1tcHCHk,9306,An intro leads into various pictures of horse tools and a woman speaking to the camera holding a brush. She then,An intro leads into various pictures of horse tools and a woman speaking to the camera holding a brush.,She then,gold,begins grooming several frisbees and showing the girls mane around dogs.,brushes the horse's mane thoroughly while still looking to the camera and speaking.,brushes her hair while riding along or braiding hair in the end.,sprays a liquid in the hair and continues brushing it off while looking back into the camera.,1\n2620,lsmdc0007_DIE_NACHT_DES_JAEGERS-49452,11990,\"Hand in hand, they hurry out of barn and, as we pan, along its side, towards River, o. s.. Someone\",\"Hand in hand, they hurry out of barn and, as we pan, along its side, towards River, o. s..\",Someone,gold,\"steers through turbulent, moonlit water.\",gets back in their carriage with a pale tank beyond the church's stern.,carries someone close into someone's childhood room.,\"gets the ladder, looks over desperately to keep the beige - face gate from someone.\",0\n2621,lsmdc0007_DIE_NACHT_DES_JAEGERS-49452,11989,\"He vanishes; scuttling of children in hay, o. s.; dogs quiet; his song dies. Hand in hand, they\",\"He vanishes; scuttling of children in hay, o. s.; dogs quiet; his song dies.\",\"Hand in hand, they\",gold,embrace hungrily as they dance hungrily.,\"hurry out of barn and, as we pan, along its side, towards river, o. s. \",clap back towards the church as people flee.,have a considered photo amongst the flowers.,1\n2622,anetv_VbhCWRXsEHQ,6636,Sugar is added to the mixing bowl to be beaten in. Flour,Sugar is added to the mixing bowl to be beaten in.,Flour,gold,\"is measured, and combined with cornstarch which is measured then mixed into the bowl.\",\"applies entry, and dries the dish with the tongs.\",is added to the bowl and two of your taste silverware.,pan up to a cake pan.,0\n2623,anetv_VbhCWRXsEHQ,6635,The mixer then begins to cream the butter. Sugar,The mixer then begins to cream the butter.,Sugar,gold,uses pour some butter and lemon into the lead and then lays it on top of the cake.,are putting vegetable fruits.,is added to the mixing bowl to be beaten in.,\"is using a red sponge to add eggs, parsley, cucumber, eggs over the saucepan.\",2\n2624,anetv_VbhCWRXsEHQ,6638,\"Dough is measured out by spoonful, rolled up and placed on baking sheet. The dough\",\"Dough is measured out by spoonful, rolled up and placed on baking sheet.\",The dough,gold,is flattened and baked into cookies.,is put in the oven.,gets mixed dry and mixed into black foil.,is being scraped and poured into baking pan.,0\n2625,anetv_VbhCWRXsEHQ,6637,\"Flour is measured, and combined with cornstarch which is measured then mixed into the bowl. Dough\",\"Flour is measured, and combined with cornstarch which is measured then mixed into the bowl.\",Dough,gold,is poured into slices of lemons and peppers.,are poured in a pile of ingredients and alcohol is added and the mix is blended.,puts chocolate and a different mix and bacon is mixed in a fruit bowl.,\"is measured out by spoonful, rolled up and placed on baking sheet.\",3\n2626,anetv_VbhCWRXsEHQ,6639,The dough is flattened and baked into cookies. The cookies,The dough is flattened and baked into cookies.,The cookies,gold,are spread out and put cookies on the scooter.,are placed on the plate and melted on the baked cookies.,are grated in the oven.,\"are then placed on a baking sheet, then rack to cool with a spatula.\",3\n2627,anetv_VbhCWRXsEHQ,6633,Parchment paper is placed on the baking sheet. Softened butter,Parchment paper is placed on the baking sheet.,Softened butter,gold,is used and sliced in the skillet.,is shown on top of the sheet.,is whisked up on top of the salad.,is placed in a mixing bowl.,3\n2628,anetv_VbhCWRXsEHQ,6634,Softened butter is placed in a mixing bowl. The mixer then,Softened butter is placed in a mixing bowl.,The mixer then,gold,melted a little and stirs it together.,makes an omelette on the table parallel to the half of the postcard rack.,begins to cream the butter.,placed in a skillet and stirred.,2\n2629,anetv_UIZkQUo8VtA,13480,A truck is seen parked in front of a house with several shots of the house shown. A man,A truck is seen parked in front of a house with several shots of the house shown.,A man,gold,climbs down a ladder into a bucket and sprays something onto it.,rides in a green tube while sitting on the rowing equipment and flipping up a rock.,is seen riding down a set of monkey bars while others are seen walking around.,is then seen standing on the roof hosing down the top and again standing in front of the house watering.,3\n2630,anetv_UIZkQUo8VtA,13481,A man is then seen standing on the roof hosing down the top and again standing in front of the house watering. The camera,A man is then seen standing on the roof hosing down the top and again standing in front of the house watering.,The camera,gold,is now cleaning the window of the car as well as talking when he continues wiping down the floor.,falls around the car as it pans around the snow.,shows the older man on a glass of the hookah while more people look at their tennis movements.,shows the truck parked out front again and the final product of the roof.,3\n2631,anetv_-ApIBtH_pVc,12678,She takes the plastic dial and screws it in securely to fit the spare tire in the trunk. She,She takes the plastic dial and screws it in securely to fit the spare tire in the trunk.,She,gold,puts a dial on the driver's lock while the camera captures her from an angle.,uses the vacuum to secure the carpet and vacuums it down.,\"takes a jack of fabric and starts iron, removing enough gold from the tire tire.\",places the cover over the tire inside the trunk.,3\n2632,anetv_-ApIBtH_pVc,12676,There's a woman with a hand tattoo and red painted nails attaching and screwing a parts in the trunk of a car to attach the spare tire. Then she,There's a woman with a hand tattoo and red painted nails attaching and screwing a parts in the trunk of a car to attach the spare tire.,Then she,gold,places the sundress and other tips.,uses the fake nails to tighten the prevents of the new tire.,puts the grappling tool inside the top to scoop it up.,places the spare tire into the metal case.,3\n2633,anetv_-ApIBtH_pVc,12677,Then she places the spare tire into the metal case. She,Then she places the spare tire into the metal case.,She,gold,takes a seat on the tire.,takes the plastic dial and screws it in securely to fit the spare tire in the trunk.,watches from the kitchen.,makes the tire fold down.,1\n2634,anetv_2_tzemKY72E,4671,A female gymnast is shown in a photograph. She,A female gymnast is shown in a photograph.,She,gold,is then shown preparing and then mounting a high beam.,demonstrates how to complete the product by lifting the weight to three sections.,pauses on the head of the group as they begin to dance.,prepares to perform wearing a round and traditional dress.,0\n2635,anetv_2_tzemKY72E,4672,She is then shown preparing and then mounting a high beam. She,She is then shown preparing and then mounting a high beam.,She,gold,\"quickens her routine and continues this time, a few wobbling.\",drops onto the blue mat and lands in black.,\"flips and turns on the beam, changing between two beams.\",dances over and back several more times.,2\n2636,anetv_2_tzemKY72E,4673,\"She flips and turns on the beam, changing between two beams. She\",\"She flips and turns on the beam, changing between two beams.\",She,gold,dives into green water.,flings the ball in the air as angles fly through the sky.,\"dismounts, throwing her arms into the air triumphantly.\",is then seen talking with the camera and dancing flips in the recreation room.,2\n2637,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60928,8528,High angle: someone leads the 200 mounted knights through the gates of minas tirith and across the pelennor fields towards the ruins of osgiliath. Someone and his men,High angle: someone leads the 200 mounted knights through the gates of minas tirith and across the pelennor fields towards the ruins of osgiliath.,Someone and his men,gold,\"follow a bruised - faced, hiding alien with small children.\",are confronted by one step amid flaming woods.,\"emerge, verdant flattening reach up with his hands and ankles.\",watch as the knights approach.,3\n2638,anetv_RblRzlmSFak,3519,The man then bends down and puts the wooden board on the grass. The man then starts pushing the board on the grass and he,The man then bends down and puts the wooden board on the grass.,The man then starts pushing the board on the grass and he,gold,climbs down the slide with the help of the other.,begins to move leaves very quickly from one end of the yard to the next and does this three times.,looked around the area and then turns the corner.,continues to blow the leaves along the water while back to the camera.,1\n2639,anetv_RblRzlmSFak,12134,A man is carrying a board across the lawn. He,A man is carrying a board across the lawn.,He,gold,lifts a ball from his bag.,starts using the board to push leaves into a pile.,takes a bag out of his suitcase and starts dipping the bag into a velvet box.,is dressed up in the boat.,1\n2640,anetv_RblRzlmSFak,3518,A man wearing jeans and a black shirt is walking on a large yard filled with leaves and is carrying a large thin wooden board. The man then,A man wearing jeans and a black shirt is walking on a large yard filled with leaves and is carrying a large thin wooden board.,The man then,gold,hit the box over again and dumped it into the bin.,begins to pick tools at frisbees and the maintenance man who is being shaken up and brushing his hair.,bends down and puts the wooden board on the grass.,goes and stands stoically at the pinata with colorful decorations.,2\n2641,anetv_yfPa5IKWTvU,2579,The kids in the front hold up the banner. They,The kids in the front hold up the banner.,They,gold,go off down the driveway.,taunt the russians into cars.,run off of the stage.,are doing some bowling balloons in the city.,2\n2642,anetv_yfPa5IKWTvU,2576,Kids run out onto the stage and get in formation. A banner,Kids run out onto the stage and get in formation.,A banner,gold,shows four screens with the white words on number 4 using the title film.,is placed at the front of the stage.,reads on the screen introducing the video.,tumbles onto the screen.,1\n2643,anetv_yfPa5IKWTvU,2577,A banner is placed at the front of the stage. The kids,A banner is placed at the front of the stage.,The kids,gold,start cheerleading on the stage.,play a game on their aerobic machines.,\"have arrived to receive one of the blue, hot yellow suitcases.\",start to push the puck on the pole.,0\n2644,anetv_yfPa5IKWTvU,2578,The kids start cheerleading on the stage. The kids in the front,The kids start cheerleading on the stage.,The kids in the front,gold,illuminate the stage in a funny direction.,begins to flip to their feet.,is pushing and dancing.,hold up the banner.,3\n2645,anetv_yfPa5IKWTvU,2575,A billboard is shown on a wall. Kids,A billboard is shown on a wall.,Kids,gold,are outside a living room pipe playing the lot.,are gathered in a room in a pit.,run out onto the stage and get in formation.,are standing around a track and playing a game of hopscotch.,2\n2646,anetv_ZJGXWbt6cbU,10946,\"Then, a group of little girls dance together while a trainer explains the moves. The little girls\",\"Then, a group of little girls dance together while a trainer explains the moves.\",The little girls,gold,teach a boy how to pull the techniques they need while the girl does the foot jacks.,does different workout as they go on and enjoy a dance.,performs routine with her and dance at each end.,stand on front a mirror to make some moves.,3\n2647,anetv_ZJGXWbt6cbU,8965,Woman is standing in a room and is talking to the camera and leading a group of children leading them. kids,Woman is standing in a room and is talking to the camera and leading a group of children leading them.,kids,gold,play in the playground and do several flips on the tables by the men.,are doing dance and dance in the playground and doing tricks with them.,are dancing near the playground.,are trying to do a choreography following the steps of the teacher.,3\n2648,anetv_ZJGXWbt6cbU,10945,\"People dance in a studio while a trainer shows a sign. Then, a group of little girls\",People dance in a studio while a trainer shows a sign.,\"Then, a group of little girls\",gold,play foosball in makeup.,dance together while a trainer explains the moves.,plays a song at a ping pong flute performing competition.,practice a rope to show their muscles.,1\n2649,anetv_ZJGXWbt6cbU,8966,Kids are trying to do a choreography following the steps of the teacher. woman,Kids are trying to do a choreography following the steps of the teacher.,woman,gold,is helping the kids part.,is sitting in chair talking to the camera.,is sitting behind a tree and is holding a child.,is running down the stairs wearing a pink dress.,1\n2650,lsmdc3081_THOR-37820,14050,\"He places his hand over his father's hand. Back on earth in a diner, someone\",He places his hand over his father's hand.,\"Back on earth in a diner, someone\",gold,watches someone probe a grizzled creature.,exhales through a porthole.,shovels food into his mouth.,stares up at the priest but not even a go in.,2\n2651,lsmdc3081_THOR-37820,14052,Someone slams the mug to the floor. Someone,Someone slams the mug to the floor.,Someone,gold,looks sadly through the ceiling.,picks up the broken mug.,looks down at his body and pillow and mill around the apartment ceiling.,opens a gift bag.,1\n2652,lsmdc3081_THOR-37820,14051,\"Back on earth in a diner, someone shovels food into his mouth. Someone\",\"Back on earth in a diner, someone shovels food into his mouth.\",Someone,gold,stops for a few minutes to find someone staring out at the barren compound.,removes his beer from the bag and looks outside.,slams the mug to the floor.,lays his hand on someone's chin.,2\n2653,anetv_3OGD7if0zs8,11812,\"A woman stands in a kitchen, staring at the camera. The person\",\"A woman stands in a kitchen, staring at the camera.\",The person,gold,opens an oven and pulls out a tray of chocolate chip cookies.,browses cooking in it.,puts mascara on her eyelashes.,gets in the tubes.,0\n2654,anetv_3OGD7if0zs8,11813,\"The woman stares at the cookies, and a second batch is checked. The woman\",\"The woman stares at the cookies, and a second batch is checked.\",The woman,gold,\"pours a piece of salad into a black glass, then shows the mixing ingredients.\",\"scoops the cookies off the tray, loosening them.\",shows the boulder salad and cooking utensils.,pours in dirty onions into the dish in a sink and makes a coffee dish.,1\n2655,anetv_Ho0eNR4jvEg,8724,Bubbles rise out of a tube. A man,Bubbles rise out of a tube.,A man,gold,is bending down outside raising a weight.,sits on a bar wearing a kayak.,hands another person the mouthpiece.,rushes away from the water onto the broomstick with his hand.,2\n2656,anetv_Ho0eNR4jvEg,8723,The camera is spinning wildly. Bubbles,The camera is spinning wildly.,Bubbles,gold,\"flies a ball across a field, a darker one shot to the wooden library.\",sparks of someone's black cat are shown on the floor as the bird dodges it.,zoom in on crowds of chicago on a picturesque residential street.,rise out of a tube.,3\n2657,anetv_Ho0eNR4jvEg,8720,We see the underwater sea floor. Two people,We see the underwater sea floor.,Two people,gold,are underwater near the lake.,are adjusting water from each other.,swim in front of the camera.,are swimming in a pool.,2\n2658,anetv_Ho0eNR4jvEg,8721,Two people swim in front of the camera. We,Two people swim in front of the camera.,We,gold,see a man holding a camera.,see the sitting divers perform their tango.,see the women playing in a room at the end of the yard.,appears in the ocean under the water as people sit around it.,0\n2659,anetv_dI1RqUHyWYo,13737,\"Several divers jump off of the diving board into the water below performing many techniques including flips. More, less successful dives\",Several divers jump off of the diving board into the water below performing many techniques including flips.,\"More, less successful dives\",gold,in the water as the people dive in the water.,are shown near the end of the clip before the scene fades to black.,and sometime one is moving.,into the water with all pairs of feet.,1\n2660,anetv_dI1RqUHyWYo,13736,Several people at an indoor pool jump off of a diving board into the pool water below exhibiting a mix of advanced diving techniques and diving technique mishaps. Several divers,Several people at an indoor pool jump off of a diving board into the pool water below exhibiting a mix of advanced diving techniques and diving technique mishaps.,Several divers,gold,\"are shown that include legs displaying various different arrows, kicking up their leap, while several other designer get out one by one.\",\"stand from a very young lake, while swimming in the water, pedestrian and white seem to go on the water of someone.\",\"begin to dive onto the chasm, the other end of the sand is jet at the other end of the board.\",jump off of the diving board into the water below performing many techniques including flips.,3\n2661,anetv_tS2d90ZGmeA,992,A montage of people excercising is shown with titles. A woman and man,A montage of people excercising is shown with titles.,A woman and man,gold,appear to talk back and forth about the items of time cake.,walk up street behind the marching band and are seen dancing together.,play blading around a wall.,take turns talking to the camera while they are in the gym.,3\n2662,anetv_tS2d90ZGmeA,993,A woman and man take turns talking to the camera while they are in the gym. Helpful hints,A woman and man take turns talking to the camera while they are in the gym.,Helpful hints,gold,appear to spin the events on the screen.,appear on the screen screen for the video.,are shown on the side of the screen.,are shown into several shots that are all over the screen.,2\n2663,anetv_tS2d90ZGmeA,18364,A man and a woman run and exercise in a gym. The woman and the man,A man and a woman run and exercise in a gym.,The woman and the man,gold,stand and lift the woman in the air into the middle.,talk in the gym and give advice if a person is cramped up.,break the male in the lift.,begin to do exercise and exercise in the gym.,1\n2664,anetv_tS2d90ZGmeA,994,Helpful hints are shown on the side of the screen. The man and woman,Helpful hints are shown on the side of the screen.,The man and woman,gold,continue speaking to the camera.,are shown doing the same thing.,perform playing drum ups with the camera.,are shown together using a textured to ones another.,0\n2665,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5082,He grasps it in his hand. He,He grasps it in his hand.,He,gold,dives for a neck then falls.,takes a pair of latex gloves.,awakens while folding the others.,puts it in his jacket pocket.,3\n2666,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5078,The wedding reception is in full swing. A soft light,The wedding reception is in full swing.,A soft light,gold,illuminates someone's bed.,spills out of the marquis.,shines across the mat.,pours through the glass.,1\n2667,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5080,Someone stands in the covered walkway. The Snitch,Someone stands in the covered walkway.,The Snitch,gold,is hovering beside him.,\"fall down, dripping in untouched growls.\",sinks up quickly into billowing sand.,crawls casually and grabbed.,0\n2668,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5081,The Snitch is hovering beside him. He,The Snitch is hovering beside him.,He,gold,grasps it in his hand.,delivers the gesture if he wants.,makes a swift kick to the wall.,\"slowly straightens up on the shoulders of the adidas label, then shrugs, looks up at him, then looks around.\",0\n2669,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5083,Glasses magically fill with Champagne. Someone,Glasses magically fill with Champagne.,Someone,gold,\"stands at the window of the lincoln, waiting.\",hugs herself and opens the carton.,looks up at her admiringly.,concentrates hard and looks across at the prisoner.,2\n2670,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5079,A group of men keep guard outside. Someone,A group of men keep guard outside.,Someone,gold,stands in the covered walkway.,shoves him toward someone who recognizes him.,faces his lifeless companion.,trots toward the building through crowds on the platforms.,0\n2671,lsmdc3012_BRUNO-4342,16590,\"Now, unchained, the guys leave the Madison County Office of Alternative Sentencing and Release. Both men\",\"Now, unchained, the guys leave the Madison County Office of Alternative Sentencing and Release.\",Both men,gold,emerge from an elevator doorway and glimpse someone and someone.,wins and stare after her.,gather in plant areas.,are wrapped in gray blankets.,3\n2672,lsmdc3012_BRUNO-4342,16588,Someone grabs a man's sign. The protester,Someone grabs a man's sign.,The protester,gold,struggles to get away.,turns to another aide still shooting the barrel.,\"grabs a lantern, wearing the gloom.\",grabs his cellphone and leads the charge to minas bust.,0\n2673,anetv_9GYLUAFgCXE,5717,A group of musicians perform on a street while pedestrians and motor vehicles pass by. The camera pans,A group of musicians perform on a street while pedestrians and motor vehicles pass by.,The camera pans,gold,to show spectators standing and watching the performance.,\"around, and the two continue performing a thumbs down with her faces as they dance their hands.\",indoors to show the band playing with a band.,to show end and is shown running across the street as people argue for the marching band.,0\n2674,anetv_9GYLUAFgCXE,6893,Street musicians perform on a busy street corner with a table with a red table cloth displaying their music cd's. People,Street musicians perform on a busy street corner with a table with a red table cloth displaying their music cd's.,People,gold,walking and shopping in every direction.,play a sign with a musical table.,are walking across the street on a sidewalk in a rundown apartment.,do a dog go on the sidewalk.,0\n2675,anetv_9GYLUAFgCXE,6895,A couple dressed in Mickey and Minnie Mouse stand in the square looking at the surroundings. People,A couple dressed in Mickey and Minnie Mouse stand in the square looking at the surroundings.,People,gold,are taking pictures and videos of the buildings and people everywhere.,and a green helicopter fly overhead.,head up and registering pictures on the mountains.,remove clothes in a clothing room.,0\n2676,anetv_9GYLUAFgCXE,5719,The camera pans to show pedestrians and the city skyline. The camera,The camera pans to show pedestrians and the city skyline.,The camera,gold,pans back to show people as people go.,moves down the street following pedestrian traffic.,goes up the road past a new man picking out van parked and going out.,pans out to show people and a cameraman.,1\n2677,anetv_9GYLUAFgCXE,6894,People walking and shopping in every direction. A couple dressed in Mickey and Minnie Mouse,People walking and shopping in every direction.,A couple dressed in Mickey and Minnie Mouse,gold,sitting next to the camels.,tops standing onto a man sitting on drums couch and gambling.,stand in the square looking at the surroundings.,kills and counting the sword down.,2\n2678,anetv_icOO9whIgX8,17155,A yellow frame with girls playing Lacross opens up the video. A game of girls Lacross,A yellow frame with girls playing Lacross opens up the video.,A game of girls Lacross,gold,gives a long jump on a lake.,hurling in unison towards horses and teams.,is going on as different slides are shown.,make out a silver number group of people in other outfits with two balls and watch.,2\n2679,anetv_icOO9whIgX8,17156,A game of girls Lacross is going on as different slides are shown. The game,A game of girls Lacross is going on as different slides are shown.,The game,gold,keeps going in the gutter.,changes showing a young man performing.,ends with a penalty shot.,begins and a group of adults come up.,2\n2680,anetv_D-XCWhvStd4,8522,We see the title screens for the video. We,We see the title screens for the video.,We,gold,see two tennis screens.,see a person skiing.,see the kids working.,see the people fighting outside.,1\n2681,anetv_D-XCWhvStd4,8527,The man pours wax and we get instructions before he irons the wax on the ski. The man,The man pours wax and we get instructions before he irons the wax on the ski.,The man,gold,puts down the contents of the pumpkin.,dives back the ski.,pull the ski off the ski ski.,scrapes the wax and brushes the ski.,3\n2682,anetv_D-XCWhvStd4,8526,We see colorful wax and a man turning a dial. The man pours wax and we,We see colorful wax and a man turning a dial.,The man pours wax and we,gold,see the man on the scrap of wax.,see a man upon the hill holding up the camera.,see this many more the wonder.,get instructions before he irons the wax on the ski.,3\n2683,anetv_D-XCWhvStd4,8525,A man brushes and rubs the ski. We,A man brushes and rubs the ski.,We,gold,see the cooked pasta on the table.,see colorful wax and a man turning a dial.,see the man laying plaster down on his back.,see a man on a building with a white shoes.,1\n2684,anetv_D-XCWhvStd4,8524,We see a man adds a band on a ski and the ski sits on a contraption. A man,We see a man adds a band on a ski and the ski sits on a contraption.,A man,gold,brushes and rubs the ski.,cleans an open area using a white plastic tool.,stands in a driveway next to the boat.,stands at a ladder and lets go of the wind.,0\n2685,anetv_D-XCWhvStd4,8523,We see a person skiing. We,We see a person skiing.,We,gold,see the water run as fast as lands.,switch to a workshop and a list of tools.,see people in a strip in tubes and boarding snow in a dark blizzard.,see an animal swimming pool with stuff.,1\n2686,lsmdc0022_Reservoir_Dogs-59174,18101,Someone heads for the door. The other two men just,Someone heads for the door.,The other two men just,gold,sit before the cafe.,follow him with their eyes.,find someone sprawled at the table.,step into the building.,1\n2687,anetv_vZmDiMGYCo0,18552,Two small kids sit in a box at the top of slide in an indoor play area. A little girl,Two small kids sit in a box at the top of slide in an indoor play area.,A little girl,gold,is behind the recording or play a violin.,joins and plays on the slide.,holds a yellow rake for a child to set it.,does the same on front a large group of kids knitting in each other.,1\n2688,anetv_vZmDiMGYCo0,18553,A little girl joins and plays on the slide. The girls leaves and the boys,A little girl joins and plays on the slide.,The girls leaves and the boys,gold,continue playing the guitar in the background.,demonstrate how to play the piano.,finish skiing in the slope.,take turns going down the slide.,3\n2689,anetv_vZmDiMGYCo0,18554,The girls leaves and the boys take turns going down the slide. The boys,The girls leaves and the boys take turns going down the slide.,The boys,gold,stand returns to shoot as they go.,connect a slide to the first one and try out the new slide.,continue competing in a gym with their sister in their arms.,go through the living room towards both of them and the kids finally come up to see.,1\n2690,anetv_vZmDiMGYCo0,18556,Two kids run over and away. The last boy runs off and we,Two kids run over and away.,The last boy runs off and we,gold,see the slide ladder.,see way though upset.,see her spraying back the camera.,see the man's other fall.,0\n2691,anetv_Xjw9vUwILOE,1221,A man performs a long jump on a track and into a sandpit in front of judges and onlookers on the sidelines. After the man lands the jump he,A man performs a long jump on a track and into a sandpit in front of judges and onlookers on the sidelines.,After the man lands the jump he,gold,runs down a track and takes a green pole.,\"explodes in celebration by clenching his fists, after which a slow replay of the jump plays and a scoreboard displays his score.\",jumps on a jump board that quickly swings a rope and walks to a line until gradually walking backwards off the field.,\"drops their arms, knocking the guy up to the ground.\",1\n2692,anetv_Xjw9vUwILOE,15528,Man is smiling and fells in the track of happiness. men,Man is smiling and fells in the track of happiness.,men,gold,are watching them taking a picture to the use of the throw.,are sitting on white chairs next to a racetrack.,are in the court watching them win.,are seated on a table together decorating a christmas tree while sitting in chairs.,1\n2693,anetv_Xjw9vUwILOE,15527,Man is standing in a race track running and making a long jump and the video shows a repetition. man,Man is standing in a race track running and making a long jump and the video shows a repetition.,man,gold,bend flying in the sky and score a flag.,is mounted on the side and direction of the track.,is smiling and fells in the track of happiness.,is talking and showing images of products in his hands.,2\n2694,anetv_E2KlBkQJyzU,2725,Two people are seen sitting on a ski bench putting on gear and leads into people pushing a puck around a hockey rink. Several shots,Two people are seen sitting on a ski bench putting on gear and leads into people pushing a puck around a hockey rink.,Several shots,gold,are shown of people fencing around one another and speaking around the camera and looking to one another.,are shown of people pole volting as well as a large person leading the people.,are shown of the players skating around the ice and playing the sport of hockey.,are shown of people as well as jumping over the balls along the track and taking net.,2\n2695,anetv_56m7PcBuUFc,5254,A girl is pushing two little boys on a backyard swing. She,A girl is pushing two little boys on a backyard swing.,She,gold,smiles at the camera as she pushes the boys back and forth.,\"seems to be going from very high, but it does n't look like they are going for a moment.\",jumps up next to the swing at monkey bars.,swings the monkey around the shoulders and catches them.,0\n2696,lsmdc3092_ZOOKEEPER-45228,19044,Gorilla stops playing with his swinging ball and turns to find. He,Gorilla stops playing with his swinging ball and turns to find.,He,gold,takes off his glasses and leans back into his chair.,joins people who quickly turns away and stares at the discus then faces the group.,enters holding a two - tiered orange cake with lit candles.,\"shows wine and droppings to someone, a bartender in a burlesque setting.\",2\n2697,anetv_vzrZJX-Slzg,9684,The medal is cooled down and the finished weld can be seen. The man,The medal is cooled down and the finished weld can be seen.,The man,gold,lays on the ground and kneels in front of a pile of grass.,puts out a grilled potato as best she can from the flying kitchen.,proceeds to rise again and continues to do their final task.,picks up a tool from the ground.,3\n2698,anetv_vzrZJX-Slzg,3861,The camera pans to show an individual welding something on a large metal drill head. The man stops welding and the camera,The camera pans to show an individual welding something on a large metal drill head.,The man stops welding and the camera,gold,shows names of the tools a robot's tool is presented.,zooms in on the watermelon.,zooms in on the part of the drill head affected.,zooms in on to show a crooked picture of his leg above the mirror.,2\n2699,anetv_vzrZJX-Slzg,9683,A portable power sources has electric tools plugged into it. A man,A portable power sources has electric tools plugged into it.,A man,gold,pins his ear to the startled boy.,walks on a pull cord and then catches another tire.,is near colored hopscotch.,welds a large steel construction drill.,3\n2700,anetv_vzrZJX-Slzg,3860,The camera focuses on some sort of machinery with many wires and hoses connected. The camera pans,The camera focuses on some sort of machinery with many wires and hoses connected.,The camera pans,gold,out to interviews the techniques held together.,back and fourth while moving the rest further up and down.,straight and shows several pictures of the lens of another timekeeper as is climbing the car.,to show an individual welding something on a large metal drill head.,3\n2701,lsmdc3013_BURLESQUE-4929,1538,\"Standing apart, someone snaps a photo. Someone\",\"Standing apart, someone snaps a photo.\",Someone,gold,gazes tenderly at him.,examines a man's money.,fastens her nightie and looks down.,stamps a binder off a stack of crates.,0\n2702,lsmdc3013_BURLESQUE-4929,1537,\"Peeking out from behind a fan, she comically blows feathers and hair out of her face. Now someone\",\"Peeking out from behind a fan, she comically blows feathers and hair out of her face.\",Now someone,gold,lies in bed.,spies someone in their low auburn - like arms.,holds a leash to a loose tree - lined street in a grassy park.,blows out birthday candles.,3\n2703,lsmdc3013_BURLESQUE-4929,1533,\"Turning away, she lowers the fan and shimmies. Quickly covering herself, she\",\"Turning away, she lowers the fan and shimmies.\",\"Quickly covering herself, she\",gold,struggles out of view.,fits it stiffly closed.,gazes into the high water.,faces the crowd again.,3\n2704,lsmdc3013_BURLESQUE-4929,1532,\"A dancer hands her a fan. Turning away, she\",A dancer hands her a fan.,\"Turning away, she\",gold,lowers the fan and shimmies.,crosses to a small cabinet displaying a knit pin that has been bouquets on the other bow of her hand.,finds a graceful figure then places the ring behind her belly.,looks up as someone enters the room and draws beside his witch in the center room.,0\n2705,lsmdc3013_BURLESQUE-4929,1540,\"As she flings them away, her backup dancers raise two more in their place. They\",\"As she flings them away, her backup dancers raise two more in their place.\",They,gold,scope on the penguins.,\"part the fans, revealing her naked form.\",\"her, someone scampers off up the stairs through a half - filled corridor, shy of the wall.\",\", they sit.\",1\n2706,lsmdc3013_BURLESQUE-4929,1542,\"He stares, slack - jawed. Someone\",\"He stares, slack - jawed.\",Someone,gold,\"wipes his thumb over the shoe and nods, leaving the person in the center of the room.\",strokes the boy's lifted gaze.,carries a crate of glasses away.,draws position to defend someone.,2\n2707,lsmdc3013_BURLESQUE-4929,1534,Her pearl briefs fly off. She,Her pearl briefs fly off.,She,gold,sips the wine and steps down onto a bus.,meets up towards the dock on her way followed by a flame.,\"enters with an orchid, a document product on a card.\",snatches another fan from a dancer.,3\n2708,lsmdc3013_BURLESQUE-4929,1536,She shows an engagement ring. The girls,She shows an engagement ring.,The girls,gold,performs hands together as the teacher attempts to slip.,play cricket on a video display.,rush to hug her.,turn away from other side.,2\n2709,lsmdc3013_BURLESQUE-4929,1535,She snatches another fan from a dancer. She,She snatches another fan from a dancer.,She,gold,shows an engagement ring.,walks to the bathroom brushing her teeth.,examines her than it's time.,keeps her hand on his.,0\n2710,lsmdc3013_BURLESQUE-4929,1543,Someone carries a crate of glasses away. Someone,Someone carries a crate of glasses away.,Someone,gold,goes to a table of st.,picks up his gun and smacks it with whiskey.,is dragged back through the town building and races across a sprawling brown city street.,arrives at someone's side.,3\n2711,lsmdc3013_BURLESQUE-4929,1539,\"Onstage, she shimmies her fans. As she flings them away, her backup dancers\",\"Onstage, she shimmies her fans.\",\"As she flings them away, her backup dancers\",gold,shine down her cheeks.,raise two more in their place.,lift their men above their heads.,relax at the dressing room.,1\n2712,lsmdc3013_BURLESQUE-4929,1541,Later she meets someone at the bar. He,Later she meets someone at the bar.,He,gold,\"glances toward the pack, then strides up to her friend.\",\"stares, slack - jawed.\",\"paces, then swigs from a bottle.\",shoves someone toward a cubicle in the chair.,1\n2713,lsmdc3019_COLOMBIANA-8369,1385,Her eyes squeeze shut in agony. Someone,Her eyes squeeze shut in agony.,Someone,gold,\"watches with a creased brow, a hint of tears glistening in her wide eyes.\",looks at her arm and eyes.,\"closes her eyes and steps inside, peering at a stone castle as someone steps forward.\",looks down at the burning citadel in which determinedly reaches inside and replaces the grimhold.,0\n2714,lsmdc3019_COLOMBIANA-8369,1389,\"Through the open door, she sees the beefy thug ascend the staircase. He\",\"Through the open door, she sees the beefy thug ascend the staircase.\",He,gold,\"turns in her seat, her fine - toned body photo of someone's red bungalow tablet open on discarded jewelry on the table.\",hurries over to the micah driver who follows the agent.,runs under and pulls out a seat.,steps into the kitchen with his gun raised.,3\n2715,lsmdc3019_COLOMBIANA-8369,1387,\"Tears continue to well up in her eyes as she watches her father in the doorway. From the kitchen table, someone\",Tears continue to well up in her eyes as she watches her father in the doorway.,\"From the kitchen table, someone\",gold,\"sips a straw seductively, ending her call.\",\"crosses the corridor to where someone is waiting, listening to the music.\",\"stares at her dead parents, her body trembling slightly.\",strides up onto the counter.,2\n2716,lsmdc3019_COLOMBIANA-8369,1380,\"As he guides his daughter to sit back down at the table, his wife returns with two more guns. She\",\"As he guides his daughter to sit back down at the table, his wife returns with two more guns.\",She,gold,keeps talking and puts his hand on her cheek.,shows his camera to someone into a hallway.,follows the little lad ground.,kneels in front of her daughter.,3\n2717,lsmdc3019_COLOMBIANA-8369,1377,\"He kisses her hands then pats her cheek. Inside, someone\",He kisses her hands then pats her cheek.,\"Inside, someone\",gold,\"kisses her blood gently, covering her cheek.\",lies on top of someone.,wears someone's pajamas in his bedroom.,removes a hand gun from a magnetic strip on the underside of the kitchen table.,3\n2718,lsmdc3019_COLOMBIANA-8369,1388,\"From the kitchen table, someone stares at her dead parents, her body trembling slightly. Through the open door, she\",\"From the kitchen table, someone stares at her dead parents, her body trembling slightly.\",\"Through the open door, she\",gold,finds her eyes on her frustrated roommate.,finds someone sitting in a chair.,stands by the door.,sees the beefy thug ascend the staircase.,3\n2719,lsmdc3019_COLOMBIANA-8369,1390,He steps into the kitchen with his gun raised. Another thug,He steps into the kitchen with his gun raised.,Another thug,gold,enters with someone behind him.,buzzes stuck in the back.,unwraps a small piece.,backs up in a frightened.,0\n2720,lsmdc3019_COLOMBIANA-8369,1392,\"As the gunmen search the place tearing up couch cushions, the bearded gangster removes his sunglasses and crouches over his dead enemy. He\",\"As the gunmen search the place tearing up couch cushions, the bearded gangster removes his sunglasses and crouches over his dead enemy.\",He,gold,hands someone a piece of ice foil.,puts a cigar to the back of his trousers.,shifts his gaze to someone who continues to stare straight ahead with a stoic expression.,rubs someone's arms and ears.,2\n2721,lsmdc3019_COLOMBIANA-8369,1386,\"Someone watches with a creased brow, a hint of tears glistening in her wide eyes. Tears\",\"Someone watches with a creased brow, a hint of tears glistening in her wide eyes.\",Tears,gold,cry someone reaching out of her mobile.,blink and eye with hand.,continue to well up in her eyes as she watches her father in the doorway.,\"at him, he shakes her head.\",2\n2722,lsmdc3019_COLOMBIANA-8369,1394,\"As someone inspects the framed family photo, the beefy thug points his gun at the girl's head. Someone\",\"As someone inspects the framed family photo, the beefy thug points his gun at the girl's head.\",Someone,gold,\"sits across from someone and folds his arms on the table, then eyes the beefy gunman.\",heads for his car.,\"takes his light sunglasses off, collects it and sketches it out of the windows.\",pulls away and reads on.,0\n2723,lsmdc3019_COLOMBIANA-8369,1383,\"Someone leads Alicia to the staircase, firing a shotgun. Someone\",\"Someone leads Alicia to the staircase, firing a shotgun.\",Someone,gold,sees her mother racing back up the stairs.,pulls the cocktail ring out of his pocket.,calmly shakes his head.,\"jumps up, but someone grabs her leg.\",0\n2724,lsmdc3019_COLOMBIANA-8369,1384,Someone sees her mother racing back up the stairs. Her eyes,Someone sees her mother racing back up the stairs.,Her eyes,gold,remain closed as she carries now.,drift down to his now naked body shoulder and waist.,squeeze shut in agony.,widen as an alien steps out from the tree's hedges.,2\n2725,lsmdc3019_COLOMBIANA-8369,1391,\"Another thug enters with someone behind him. As the gunmen search the place tearing up couch cushions, the bearded gangster\",Another thug enters with someone behind him.,\"As the gunmen search the place tearing up couch cushions, the bearded gangster\",gold,flops himself on to the ground.,sprays down a window with a knife.,steals an apple from a window and aims at someone.,removes his sunglasses and crouches over his dead enemy.,3\n2726,lsmdc3019_COLOMBIANA-8369,1378,\"Inside, someone removes a hand gun from a magnetic strip on the underside of the kitchen table. A knife\",\"Inside, someone removes a hand gun from a magnetic strip on the underside of the kitchen table.\",A knife,gold,is silverware in a workshop now disguised as the same logo on a drawer.,holding head - illuminating his face.,loads the gunpowder from china and uncovers the barrel.,rests on another strip beside it.,3\n2727,lsmdc3019_COLOMBIANA-8369,1393,\"He shifts his gaze to someone who continues to stare straight ahead with a stoic expression. As someone inspects the framed family photo, the beefy thug\",He shifts his gaze to someone who continues to stare straight ahead with a stoic expression.,\"As someone inspects the framed family photo, the beefy thug\",gold,points his gun at the girl's head.,chops him with the confetti.,collapses to his knees and swings his legs along the tug as someone rides toward the hummer.,joins him with a conscious smirk.,0\n2728,anetv_KylUHdDXuCg,5665,An intro leads into several clips of people attempting to fight bulls from many generations. Several clips,An intro leads into several clips of people attempting to fight bulls from many generations.,Several clips,gold,are shown of people playing bumper cars with one another in the bumper.,are shown of people interacting with the bulls as well as running around and people watching.,are then shown of people riding along a beach and speaking to the camera while a man speaks to the camera.,are shown of people riding in various clips as more people run towards the bulls.,1\n2729,anetv_bW5HfDWUP3U,14149,The woman puts one shoe on. Something is thrown at the woman and she,The woman puts one shoe on.,Something is thrown at the woman and she,gold,starts to work on the front leg.,attempts to catch it.,starts to skateboard on the skateboard.,bends down showing viewers the woman shoe spray.,1\n2730,anetv_bW5HfDWUP3U,14152,The camera returns to the woman still putting the shoe on. The camera,The camera returns to the woman still putting the shoe on.,The camera,gold,follows and the woman with a photo appears off the screen.,\"shifts right to several individuals in the room, waiting for the woman to put her shoes on.\",\"pans back to the woman, who is smiling and smiling.\",shows the lady scooping out a spray bottle she put on.,1\n2731,anetv_bW5HfDWUP3U,14150,Something is thrown at the woman and she attempts to catch it. The camera briefly,Something is thrown at the woman and she attempts to catch it.,The camera briefly,gold,spins but keeps as she rolls upside down.,shows another woman who had in her behind another as people looks around as closeups of the models are shown.,shifts right to show another individual.,shows a pocket are her own haircut.,2\n2732,anetv_bW5HfDWUP3U,14154,\"The camera shifts back to the woman, still putting her shoe on. The woman\",\"The camera shifts back to the woman, still putting her shoe on.\",The woman,gold,is now throwing a dart into the sink.,demonstrates using brush to dry a woman's hair with a grey brush.,sits on the brown stool and begins to close the table.,begins putting the other shoe on.,3\n2733,anetv_bW5HfDWUP3U,14148,A woman is sitting on the floor with her shoes off. The woman,A woman is sitting on the floor with her shoes off.,The woman,gold,bends down and starts brushing her legs.,looks up and smiles while watching.,puts one shoe on.,is brushing her hair with an electric shaver.,2\n2734,anetv_bW5HfDWUP3U,14153,\"The camera shifts right to several individuals in the room, waiting for the woman to put her shoes on. The camera\",\"The camera shifts right to several individuals in the room, waiting for the woman to put her shoes on.\",The camera,gold,changes to a large thick snowy of woods with several other clothes on.,pans all around the men and shows as well groomed and different groomed as well.,\"shifts back to the woman, still putting her shoe on.\",\"captures both on the demonstrating the technique, then she continues in indoors.\",2\n2735,anetv_bW5HfDWUP3U,14151,The camera briefly shifts right to show another individual. The camera,The camera briefly shifts right to show another individual.,The camera,gold,returns to the woman still putting the shoe on.,taking turns gets the boy now using his hands again.,pans in and out of frame as well.,focuses with the rafts down but of survivors.,0\n2736,anetv_zgnBeiEB5pE,17332,\"She then asks him: what is a horse's neck? and he tells her where it originated from and why it's called the horse's neck. Then they start to actually make the drink themselves and when they're done, they\",She then asks him: what is a horse's neck? and he tells her where it originated from and why it's called the horse's neck.,\"Then they start to actually make the drink themselves and when they're done, they\",gold,toast and begin drinking.,are catch his candy in the pool.,'re all done with forgotten.,get back into a fire.,0\n2737,anetv_zgnBeiEB5pE,17917,\"Various small scene cuts with glasses, ice, liquor, lemons, limes, people socializing, liquor bottles, funnels lead to titles of the video. A man and woman\",\"Various small scene cuts with glasses, ice, liquor, lemons, limes, people socializing, liquor bottles, funnels lead to titles of the video.\",A man and woman,gold,are then shown drinks from a jar.,are engaged in a game of beach soccer.,are presenting a video and are explaining how to make an alcoholic drink.,load a coconut inside an oven.,2\n2738,anetv_RJpWgi0EaUE,11536,The female stands and also hugs the man. A man,The female stands and also hugs the man.,A man,gold,spins another handcuff key.,picks up a javelin and turns off the camera while people watch.,stand and then sits.,whips his hair and pulls the beard.,2\n2739,anetv_RJpWgi0EaUE,11531,The man and female touch hands while sitting. The man,The man and female touch hands while sitting.,The man,gold,gives few thumbs up.,finishes dancing and spin around with the two boys before facing each other.,turns the chair.,claps his hands together.,3\n2740,anetv_RJpWgi0EaUE,11534,A man walks from backstage. The man,A man walks from backstage.,The man,gold,fixes his awards and removes the rod.,moves to a gas tank and talks while wearing a helmet's gloves.,shake hands and hugs one of the man on stage.,stops and stops sanding.,2\n2741,anetv_RJpWgi0EaUE,11528,The man cover his face with his hand. The man and woman,The man cover his face with his hand.,The man and woman,gold,gesture the dancers hand movements.,fall off the hood again.,are marching in the other center.,remove their supplies in position.,0\n2742,anetv_RJpWgi0EaUE,11535,The man shake hands and hugs one of the man on stage. The female,The man shake hands and hugs one of the man on stage.,The female,gold,stands and also hugs the man.,man dance with a microphone while speaking in microphone or perhaps inches of black.,runs in and pose with his hand.,girl takes his ring and they run into the parking embrace.,0\n2743,anetv_RJpWgi0EaUE,11530,This man gets off his seat and knees. The man,This man gets off his seat and knees.,The man,gold,lurches on his welding helmet.,reaches out his face and starts blow the leaves.,wipes his face with his foot and winces.,gets of his knees and sits back down.,3\n2744,anetv_RJpWgi0EaUE,11538,The man in a black suit dances and then sits. The man in a brown suit,The man in a black suit dances and then sits.,The man in a brown suit,gold,returns to the backstage area.,walks in front and plays a violin.,put a name on the bar.,smokes the cigarette while the crowd cheers.,0\n2745,anetv_RJpWgi0EaUE,11532,The man claps his hands together. The man,The man claps his hands together.,The man,gold,spins and throws his arms in the air.,waves at a man backstage to join them.,continues to play the instrument at the piano.,looks to the camera and shifts his eyes.,1\n2746,anetv_RJpWgi0EaUE,11529,The man and woman gesture the dancers hand movements. This man,The man and woman gesture the dancers hand movements.,This man,gold,shakes hands for a smile and then laughs.,shows her experiences in the bar.,gets off his seat and knees.,is then shown playing with the young man perform in the background.,2\n2747,anetv_RJpWgi0EaUE,11533,A standing man who is backstage claps. The two boy dancers,A standing man who is backstage claps.,The two boy dancers,gold,perform on an outdoor court.,are shown extending one hand.,are in a man pose for the last stage.,disappear from the stands.,1\n2748,anetv_RJpWgi0EaUE,11539,The man in a brown suit returns to the backstage area. The man,The man in a brown suit returns to the backstage area.,The man,gold,takes off his bow and faces his horse.,exits the parade with two other women.,is shown while backstage.,is talking in the bar talking to a teen.,2\n2749,lsmdc3001_21_JUMP_STREET-538,10949,\"He opens the door to reveal the One - Percenter's leader the bearded biker and the swarthy Hispanic biker. As a few others follow, someone and someone\",He opens the door to reveal the One - Percenter's leader the bearded biker and the swarthy Hispanic biker.,\"As a few others follow, someone and someone\",gold,leave the hall and stop.,indicate their coveralls to drive.,keep a low profile.,follow a hobbit across them.,2\n2750,lsmdc3001_21_JUMP_STREET-538,10950,\"As a few others follow, someone and someone keep a low profile. He\",\"As a few others follow, someone and someone keep a low profile.\",He,gold,\"slips the pin in his cuffed hands, shakes her shapely neck again.\",hands a bag to the bearded thug.,\"smiles, takes them out, and takes a heavy book from someone's jacket.\",sets his back on his desk.,1\n2751,lsmdc3001_21_JUMP_STREET-538,10947,The hookers help the nerds conduct surveillance. Someone fake,The hookers help the nerds conduct surveillance.,Someone fake,gold,punches someone's abs.,cronies hug past the children.,\"her nipples and throws back her elbow again, together.\",silhouettes of whistles surround the grand hall.,0\n2752,lsmdc3001_21_JUMP_STREET-538,10948,Someone fake punches someone's abs. He,Someone fake punches someone's abs.,He,gold,haired someone studies him.,rubs his palms together tearfully.,can't shake goes on.,lunges tauntingly at someone.,3\n2753,lsmdc3001_21_JUMP_STREET-538,10951,He hands a bag to the bearded thug. A long - haired biker,He hands a bag to the bearded thug.,A long - haired biker,gold,eats peanut butter from a jar.,\"picks up a flamethrower, opens it, and shows the pager across the bedside table.\",runs over to a burning chair on a wooden bench.,looms at the crest of a long engine.,0\n2754,anetv_H-yBxySDyTw,17471,A man in a office chair is sitting with some type of pen up. He,A man in a office chair is sitting with some type of pen up.,He,gold,\"talks about it for a little while and then put it in his mouth, turns out its an e - pen.\",clips several large cups on his face and focuses them back to the pins.,rolls the paper into a big bowl and takes it from the pumpkin with his hand and tape.,\"is peeling a copy of paper, while a doctor is on a tattoo on a side.\",0\n2755,anetv_H-yBxySDyTw,17473,It's a new technology that you can smoke like a cigarette. He,It's a new technology that you can smoke like a cigarette.,He,gold,is a very small intro with a blue word wetsuit on it.,looks again at the table and proceeds.,holds it in his hands like a cigarette and puts it in his mouth and exhales smoke.,pays insistently end cocks his head.,2\n2756,anetv_H-yBxySDyTw,17472,\"He talks about it for a little while and then put it in his mouth, turns out its an e - pen. It\",\"He talks about it for a little while and then put it in his mouth, turns out its an e - pen.\",It,gold,blows up his nose and someone keeps his lips on hers.,is talking to the camera as to finish to question the correct technique for how to play lee.,'s a new technology that you can smoke like a cigarette.,stops in the middle at the end of the rope.,2\n2757,anetv_UPwDuuYlLfQ,15749,A person is shaving the dogs hair. The dog,A person is shaving the dogs hair.,The dog,gold,ties around a bun.,is trying to bite the person cutting its hair.,is blowing blow dried.,jumps off the snow and jumps up and down.,1\n2758,anetv_UPwDuuYlLfQ,924,A close up of a dog is shown with a person's hands cutting the dog's fur. The dog,A close up of a dog is shown with a person's hands cutting the dog's fur.,The dog,gold,is seen brushing the dog to a larger dog while the dog moves around.,brushes the dog's fur while another person begins paddling the dog in the end of the leash.,comes up over the dog and shows her teeth and leads into her licking her cat.,continuously bites at the cutter and sticks it's mouth open exposing it's teeth.,3\n2759,anetv_UPwDuuYlLfQ,15748,A dog is sitting on a table. A person,A dog is sitting on a table.,A person,gold,is styling a boy's hair with a shaver.,is cleaning a table using a mop.,is helping a woman up on the floor.,is shaving the dogs hair.,3\n2760,lsmdc1027_Les_Miserables-6356,2986,He fires into a wall. Someone,He fires into a wall.,Someone,gold,takes the gun and drops it onto the lowest of the floor.,turns to find someone who lies prone with his pillow on the ground.,lays the handcuffs down and sniffs another.,stops and looks back then heads off into the dark.,3\n2761,lsmdc1027_Les_Miserables-6356,2988,Someone goes back to join the others. They,Someone goes back to join the others.,They,gold,begin to fight and return their guns to yelling.,\"look towards the servants, who are sitting on lei upside down near him.\",run out to chase.,sit around regarding him with serious expressions.,3\n2762,anetv_qeyFjCAA_dg,1965,Man is sitting in a bed in a living room talking to the camera and showing how to do abs. the man,Man is sitting in a bed in a living room talking to the camera and showing how to do abs.,the man,gold,\"commands the video to show how he works, shiny and enraged.\",is applying a black substance while still speaking to the camera.,put a harmonica and shoot out of his face while explaining.,lay on the bed and start doing crunches.,3\n2763,anetv_qeyFjCAA_dg,2575,He then shows how to do stomach crunches by holding the back of head with his hands and moving his body back and forth and sideways while folding his knees to his chest. He,He then shows how to do stomach crunches by holding the back of head with his hands and moving his body back and forth and sideways while folding his knees to his chest.,He,gold,continues doing crunches and then stops.,is then shown walking around on the bench and talking to the camera.,kneels on the floor and lies back.,\"freezes, and then stays upright and shaking his head.\",0\n2764,anetv_qeyFjCAA_dg,2574,There's a young man wearing a blue shirt and black hat demonstrating on a bed and talking about fitness. He,There's a young man wearing a blue shirt and black hat demonstrating on a bed and talking about fitness.,He,gold,is explaining how to do the snowboard work.,is talking about fitness as he lays on his back to demonstrate crunches by doing actions with his arms.,juggles the balls for her practice.,walks and talks when he walks to the end and begins doing the paper.,1\n2765,anetv_qeyFjCAA_dg,1966,The man lay on the bed and start doing crunches. man,The man lay on the bed and start doing crunches.,man,gold,is sitting on the back of a chair watching the tv.,is standing with his saxophone on a stage next to him.,is showing to the camera how to make crunches on a bed.,is standing in the water next to a barbell.,2\n2766,anetv_0V8mzi_89Fw,17339,\"Mold is growing on the siding of a homes, which we then we see after being pressure - washed. Bare wooden surfaces of shelving is shown, and then we\",\"Mold is growing on the siding of a homes, which we then we see after being pressure - washed.\",\"Bare wooden surfaces of shelving is shown, and then we\",gold,are cleaning some cabinets outside and an inside patrol car.,see the improvement as is is covered with a coat of white paint.,see the material melting against gray and mulch.,see more pumpkins in the middle of the screen.,1\n2767,anetv_0V8mzi_89Fw,4075,Several pictures of a roof are shown of a before and after. Afterwards the siding of a house,Several pictures of a roof are shown of a before and after.,Afterwards the siding of a house,gold,is shown again followed by it to move into a person putting bigger paint.,is shown in pictures with a before and after.,is shown while people are navigating the beach intermittently.,is shown with people talking in numerous different outfits.,1\n2768,anetv_0V8mzi_89Fw,17337,\"An asphalt - tiled roof is shown with leaves and green all over it, and then we see it clean. Once again we\",\"An asphalt - tiled roof is shown with leaves and green all over it, and then we see it clean.\",Once again we,gold,see a person peeling a roller ball off of the road.,see the shape of a man climbing into a wall.,\"see a moldy, leaf covered roof, and see it clean.\",see a person blowing dried shingles around a corner of the house.,2\n2769,anetv_0V8mzi_89Fw,4076,Afterwards the siding of a house is shown in pictures with a before and after. More pictures,Afterwards the siding of a house is shown in pictures with a before and after.,More pictures,gold,are shown of them washing their face and feet up.,are shown of people knitting and falling down.,are shown of the woman putting a nail.,are shown of homes on the inside.,3\n2770,anetv_9nE6C-efQdc,17132,\"It shows a quick clip of Sheldon from big bang theory actually doing it. Then, she\",It shows a quick clip of Sheldon from big bang theory actually doing it.,\"Then, she\",gold,places her finger nails onto the wall and rubs down.,reappears at the end of the corridor.,starts to work with her intertube.,tries to demonstrate it a few times for the viewers.,3\n2771,anetv_9nE6C-efQdc,17133,\"Then, she tries to demonstrate it a few times for the viewers. At the end she\",\"Then, she tries to demonstrate it a few times for the viewers.\",At the end she,gold,\"tries to kick it around, barreling around and attempting to get through the barrel for matters as she helped the board.\",talks for a bit and then begins to play two points.,smiles and ends it with another big bang theory picture.,speaks to the camera again and stops writing to be sick about it with her knife then her lips sucking from her fingers.,2\n2772,anetv_5E42nKwv1xY,14309,Girls run onto the field and shake hands with the other team. We,Girls run onto the field and shake hands with the other team.,We,gold,see girls playing volleyball indoors.,see a girl score a score in the pool.,see a nerdist throw straight out hits at the ball.,see various faces title and get on the sports team excitedly.,0\n2773,anetv_5E42nKwv1xY,14308,We see a scoreboard in a game. Girls,We see a scoreboard in a game.,Girls,gold,are talk in two locations.,see a man throw a ball away the leader a man serves the ball.,run onto the field and shake hands with the other team.,return the tokens and leave score and.,2\n2774,anetv_5E42nKwv1xY,14310,The girls on the left make a shot and the team hugs. We,The girls on the left make a shot and the team hugs.,We,gold,see the goalie wins a goal.,see the scoreboard and people on the sidelines talking.,see the sidelines of their waits opponents.,see the winner again and then people both fall up to the ground.,1\n2775,anetv_kCb2Km85Yn4,7610,A child walks into and out of frame. The little girl,A child walks into and out of frame.,The little girl,gold,walks up a small pole sitting before a wooden stick.,dismounts from the tree.,walks away and pushes herself forward.,slides down and is caught by the adult.,3\n2776,anetv_kCb2Km85Yn4,7609,An adult walks into frame. A child,An adult walks into frame.,A child,gold,walks into and out of frame.,sprays the sink and shakes it off.,dives on the floor in front of a climbing wall.,appears and continues to mop for them.,0\n2777,anetv_kCb2Km85Yn4,3358,A child climbs up a slide. She,A child climbs up a slide.,She,gold,sets the hopscotch on top of the swing.,gets to the top of the slide.,cardio shoes in a bathtub in a balance beam.,sits a bundle of bounce scotch hopscotch and stomps out to beat it.,1\n2778,anetv_kCb2Km85Yn4,3359,She gets to the top of the slide. She,She gets to the top of the slide.,She,gold,gets up and steps away.,\"take a note ads the tape, the lady in it and the lights remain on it.\",turns around on the slide.,\"dives into the water, jamming out on the boat.\",2\n2779,anetv_e_y8_3siD0c,17461,A young child is seen standing ready before a game of hop scotch. The girl then,A young child is seen standing ready before a game of hop scotch.,The girl then,gold,begins hopping on the chalk.,performs more flips while moving around and jumping out.,begins swinging up and down on the bars.,is shown with two older woman playing concrete.,0\n2780,anetv_e_y8_3siD0c,17462,The girl then begins hopping on the chalk. The girl,The girl then begins hopping on the chalk.,The girl,gold,puts her arm around her legs.,hops all the way to the end and walks back to the screen.,jumps down the pool in the end.,continuously jumps back to go and continues jumping on the squares.,1\n2781,anetv_ZlwU7HKcoYs,9180,A person is seen riding on the back of a boat skiing while he's attached to a string on the boat. The person,A person is seen riding on the back of a boat skiing while he's attached to a string on the boat.,The person,gold,seems to sail in the boat and others hold the kite and sail along the water.,continues riding along the water while looking off into the camera as well as taking the tire off and kayaks along the water.,pass the camera to the boat while using the tool to capture the people standing in the water.,moves back and fourth along the water while the captures all of his movements.,3\n2782,anetv_ZlwU7HKcoYs,4508,They are dragging a person on water skis behind them. The man,They are dragging a person on water skis behind them.,The man,gold,is weaving back and forth in the water.,go water skiing in the raft.,waits at the bottom of the slope.,jumps over the back of his motorcycle and wets a ski mask.,0\n2783,lsmdc3009_BATTLE_LOS_ANGELES-112,11767,The Marines enter a hangar. The staff sergeant,The Marines enter a hangar.,The staff sergeant,gold,stops the drill's platoon.,\"takes out his pen, then saunters over to another screen.\",turns to the table and looks at the animal.,takes off his helmet.,3\n2784,lsmdc3009_BATTLE_LOS_ANGELES-112,11768,The staff sergeant takes off his helmet. The Marine,The staff sergeant takes off his helmet.,The Marine,gold,crosses a busy command station.,observes the dead man from the flight below.,someone pokes a finger towards it.,banker carries someone down the steps.,0\n2785,anetv_wqThk38AdEA,19117,Women are standing in sage behind the woman with the flute standing holding microphones. men,Women are standing in sage behind the woman with the flute standing holding microphones.,men,gold,are standing behind the women playing different instruments.,are standing in the racetrack playing and talking.,\"are playing, croquet, and drums.\",are dressed in the background playing the violin and dance.,0\n2786,anetv_NjzUWVoc8rw,17579,He has a ball on a tennis racket. He,He has a ball on a tennis racket.,He,gold,throws the ball in the air and hits it with the racket.,balls at the wall.,removes it from his own.,\"throws his up clean, hitting the man who takes a bat and hits him with a big bat.\",0\n2787,anetv_NjzUWVoc8rw,9566,A man is standing on a tennis court. the man,A man is standing on a tennis court.,the man,gold,runs and takes the ball out of his hand.,is trying to turn a tennis ball back against the wall.,is holding a ping pong ball as he goes.,takes a racket and bounces a tennis ball.,3\n2788,anetv_T7fzZX0qKKQ,9380,We see people give money to a man on a a unicycle on a city street. The man in a costume,We see people give money to a man on a a unicycle on a city street.,The man in a costume,gold,stops walking and walks to the camera.,holds up his hand and joins one of them playing indoors.,is explaining various and techniques used for a casino.,rides the unicycle and plays a bagpipe.,3\n2789,anetv_T7fzZX0qKKQ,9381,The man in a costume rides the unicycle and plays a bagpipe. A person,The man in a costume rides the unicycle and plays a bagpipe.,A person,gold,comes up at the end and instructs him straight.,gets out of a yellow cab.,applies plaster to the ceiling.,is walking onstage with a long wooden flute and with a joined green lips.,1\n2790,anetv_T7fzZX0qKKQ,17193,One man wearing a costume begins riding around on a unicycle playing the bagpipes. He,One man wearing a costume begins riding around on a unicycle playing the bagpipes.,He,gold,keeps walking and then jumps and talking to the camera.,see several sports players simultaneously.,see goals at a soccer event and shows the closing press.,continues riding around playing while others watch on the side.,3\n2791,anetv_T7fzZX0qKKQ,17192,Several people are seen standing on the side walk speaking to one another. One man wearing a costume,Several people are seen standing on the side walk speaking to one another.,One man wearing a costume,gold,is shown with various clips of people which is shown.,begins riding around on a unicycle playing the bagpipes.,flips over to people running until one runs.,is shown next to the other speaking.,1\n2792,lsmdc3082_TITANIC1-38797,4203,Someone pries her hand out of someone's grip. She,Someone pries her hand out of someone's grip.,She,gold,kisses his hand then releases him.,\"places her hands on a cabinet and stares freckles, then shifts her slender wand.\",glances aside and jolts wig.,kicks someone out of the plane and lands outside it.,0\n2793,lsmdc3082_TITANIC1-38797,4206,\"Her breath steaming out in cloud, someone swims to the frozen crewman and pulls the whistle from his lips. Someone\",\"Her breath steaming out in cloud, someone swims to the frozen crewman and pulls the whistle from his lips.\",Someone,gold,continues to blow into the whistle as the rescuers shine their lights on her.,lowers himself onto his back.,takes out a faint orange jacket and places it flat on her back.,meets the dead man.,0\n2794,lsmdc3082_TITANIC1-38797,4204,She kisses his hand then releases him. Someone,She kisses his hand then releases him.,Someone,gold,slides on her stomach to the edge of the platform then rolls into the water.,goes after the house with an imploring look.,rests him on the rail.,purses and kisses his wife.,0\n2795,lsmdc3082_TITANIC1-38797,4205,\"Someone slides on her stomach to the edge of the platform then rolls into the water. Her breath steaming out in cloud, someone\",Someone slides on her stomach to the edge of the platform then rolls into the water.,\"Her breath steaming out in cloud, someone\",gold,swims to the frozen crewman and pulls the whistle from his lips.,lies at her feet.,looks up at the ceiling.,\"swallows something, then bows in front of his great wife who sits quietly in the kitchen, sipping a glass of brandy.\",0\n2796,anetv_l9XzNcLiMKc,7118,A man and a woman are standing at the counter of a kitchen. They,A man and a woman are standing at the counter of a kitchen.,They,gold,drink from a building opposite.,are mixing ingredients together in a large plastic pot.,pour ingredients into a large bowl and mix it together.,put a cake in their pot.,2\n2797,anetv_l9XzNcLiMKc,7121,They then take the cakes and stack them together with frosting in between. They,They then take the cakes and stack them together with frosting in between.,They,gold,eat the cake at the end.,cake pans and ends with a final slice and what is juggling.,sit between the two bars.,are cutting off the top of the tree.,0\n2798,anetv_l9XzNcLiMKc,7119,They pour ingredients into a large bowl and mix it together. They,They pour ingredients into a large bowl and mix it together.,They,gold,begin in each bowl to get the ingredients out.,mix the pasta into cupcake toppings thoroughly.,pour the mixture into two round pans.,make out and type more ingredients and prepare a fire.,2\n2799,anetv_l9XzNcLiMKc,7120,They pour the mixture into two round pans. They then,They pour the mixture into two round pans.,They then,gold,pour a cup to omelette in the blender and serve when slicing it.,add it down to lemons and pour it into the bowl.,clean the lemon and pour it onto the bundt bowl.,take the cakes and stack them together with frosting in between.,3\n2800,anetv_NKZzGiS5hv0,19232,Men are siting in a dark room talking to the camera. sumo wrestlers are standing in stage ready to fight and people,Men are siting in a dark room talking to the camera.,sumo wrestlers are standing in stage ready to fight and people,gold,are gathered around them and sitting in he terraces.,are siting in the ring watching them.,go do a competition in costume.,start fighting for the competition.,0\n2801,anetv_NKZzGiS5hv0,19233,Sumo wrestlers are standing in stage ready to fight and people are gathered around them and sitting in he terraces. men,Sumo wrestlers are standing in stage ready to fight and people are gathered around them and sitting in he terraces.,men,gold,are talking in the dark room and explaining their point of view.,throwing a disc and skating in a field with many banners around them.,are talking and standing on the arena with people in horses in the background.,are on jump ropes and do a hand stand.,0\n2802,anetv_JLA4Ck8_BRI,2270,\"The lady shakes the drink in the glass. Finally, she\",The lady shakes the drink in the glass.,\"Finally, she\",gold,\"puts milk to the glass, mixes little water into two glasses.\",adds marshmallows to her mouth.,pours the drink into a martini glass and lifts the glass in the air.,\"puts down the drink and drinks down the glass, and finishes pouring the drink.\",2\n2803,anetv_JLA4Ck8_BRI,2268,A lady pours ice in a glass. The lady,A lady pours ice in a glass.,The lady,gold,pours ice into the glass.,adds 3 liquors and lemon juice.,pours lemon mixture into a glass and pours liquids into asian juice.,measures the contents of the glass.,1\n2804,anetv_JLA4Ck8_BRI,13962,The woman pour the drinks on the ice cup and shake them. thn,The woman pour the drinks on the ice cup and shake them.,thn,gold,talk to each other.,serve the drink in a martini glass.,are scooping out of the cups.,kneel in front of the camera to talk.,1\n2805,anetv_JLA4Ck8_BRI,2269,The lady adds 3 liquors and lemon juice. The lady,The lady adds 3 liquors and lemon juice.,The lady,gold,mixes a black sugar.,shakes the drink in the glass.,puts another jar on water.,places the oil on the stove tray and gets a handful of broth.,1\n2806,anetv_JLA4Ck8_BRI,13961,Woman is standing in front of a bar preparing a cocktail. the woman,Woman is standing in front of a bar preparing a cocktail.,the woman,gold,breaks into two pieces and holds up the red bar.,slices the knife and shows the knife and showing her what appears to be the second plate.,pour the drinks on the ice cup and shake them.,put on the other arm and make a sandwich.,2\n2807,anetv_RPkLocpR8VQ,4875,A judge put a sheet on front a player. A person,A judge put a sheet on front a player.,A person,gold,holds a hand to a swing.,walks behind the players.,is the ball on the court.,drives a green puck on the ice.,1\n2808,anetv_RPkLocpR8VQ,4874,Men compete solving cube puzzles while judges supervising the players. A judge,Men compete solving cube puzzles while judges supervising the players.,A judge,gold,wears a hat and glasses to heart.,put a sheet on front a player.,bounces down the rope and loses control.,\"talks to the camera while people watch, kneel on a slackline board land.\",1\n2809,anetv_RPkLocpR8VQ,11431,A group of boys are seated at tables. They,A group of boys are seated at tables.,They,gold,are playing a game of table tennis against the wall.,\"are including large bottles, liquor, and field beer.\",are trying to solve rubik's cubes puzzles.,are engaged in a game of ping pong.,2\n2810,anetv_RPkLocpR8VQ,11432,They are trying to solve rubik's cubes puzzles. They,They are trying to solve rubik's cubes puzzles.,They,gold,high five each other.,try to eyeball the inside of the wheel with pliers.,are being timed as they complete the puzzles.,zoom in and pictures of a large white board character from inside the tank is shown.,2\n2811,anetv_qTvZtsi-3KU,4948,They have babies in their arms as they swim. They,They have babies in their arms as they swim.,They,gold,just crossing the pier.,flash past hundreds of people inside.,\"saturday morning, someone smiles.\",are teaching the babies to go under water and hold their breaths.,3\n2812,anetv_qTvZtsi-3KU,4947,Some women are swimming in a pool. They,Some women are swimming in a pool.,They,gold,turn toward targets that coaches four people on their coach.,have babies in their arms as they swim.,are riding an escalator in the dive.,are kicking a ball with other boys in the water.,1\n2813,anetv_PjSOjB7qhcA,11650,Girls are playing dodge ball outside with only one ball. A girl,Girls are playing dodge ball outside with only one ball.,A girl,gold,picks up them and starts to run toward them with people on the other side.,gets hit with the ball.,is hitting the pins into a net.,has black dodge around the racket swinging up and swinging and shaking herself.,1\n2814,anetv_p800u2wCKbE,12500,There is a lemonade stand set up where people are purchasing lemonade to donate money for a cause. One of the parents,There is a lemonade stand set up where people are purchasing lemonade to donate money for a cause.,One of the parents,gold,is talking to the news reporter about the fund raiser.,is shown using chopped vegetables and drinking a water on a hot cup.,\"trying to sip champagne then chugs and then does several spin, five poses sunlit various landscapes.\",is shown scoring plates and galloping across the beach.,0\n2815,anetv_p800u2wCKbE,12499,A news reporter is talking about a local fund raiser held by a nursery school. There,A news reporter is talking about a local fund raiser held by a nursery school.,There,gold,are caught on the camels area as people people load camels.,'s a man is shown as she recognizes the baby from several different angles.,are replays on what the race is about.,are several people gathered to support the cause.,3\n2816,anetv_p800u2wCKbE,12502,\"Three more parents are standing are chatting as they sip lemonade. A picture the girl, Hannah\",Three more parents are standing are chatting as they sip lemonade.,\"A picture the girl, Hannah\",gold,is turned on to a group of people to get up and walk toward the rough water.,\"break and 60s might be in the same city, whom all models in expensive suits down.\",steps into frame and pushes someone when she has done.,is shown for whom the fund raiser was held.,3\n2817,anetv_p800u2wCKbE,12501,One of the parents is talking to the news reporter about the fund raiser. Three more parents are standing,One of the parents is talking to the news reporter about the fund raiser.,Three more parents are standing,gold,in the house holding the binoculars.,up rollerblading: washing their cars in a room.,under the bridge putting their hands into their cage.,are chatting as they sip lemonade.,3\n2818,anetv_p4Bm_NB_QoI,6520,The girls then perform a routine using batons while spinning and twirling. They,The girls then perform a routine using batons while spinning and twirling.,They,gold,do the batons while doing tricks and more cheerleading with one another.,perform several kicks and ends by her arms.,make an ending pose while the audience claps and run off to the side.,continue flipping and end by performing various tricks with their racket.,2\n2819,anetv_p4Bm_NB_QoI,6519,A small group of girls are first seen walking out on a gymnasium floor with several people watching on the sidelines. The girls then,A small group of girls are first seen walking out on a gymnasium floor with several people watching on the sidelines.,The girls then,gold,perform a routine using batons while spinning and twirling.,continue to spin around on batons as well as performing several shots and tricks and running back and forth.,continue dancing around with the girls swinging down and jumping around and ends with the partner performing his routine on the platform as well.,continue jumping and kick one another as well as batons and several different people standing on the sideline.,0\n2820,anetv_OkEqcSlWMJg,12642,A small group of people are seen swimming in a pool and leads into various clips of children learning how to swim. A man,A small group of people are seen swimming in a pool and leads into various clips of children learning how to swim.,A man,gold,jumps into a pit and jumps high several times and eventually taking a quick turn.,helps them practice in the water as well as jumping off a diving board.,speaks to the camera as well as people walking around and speaking to the camera.,is seen speaking to the camera as well as people riding in the water while others observe on the side.,1\n2821,anetv_OkEqcSlWMJg,12643,A man helps them practice in the water as well as jumping off a diving board. More shots,A man helps them practice in the water as well as jumping off a diving board.,More shots,gold,are shown of kids swimming and leads into a girl grabbing objects under water and swimming with another.,are shown of various people doing tricks and several girls jumping onto the beach and wading.,are shown of people crossing sailors as well as swimming in a pool.,are shown of people riding down the water with boats high in the camera.,0\n2822,anetv_0QyHaXliXKs,6173,A large group of people are seen holding up flags and walking in a circle while many others watch on the sides. Two people,A large group of people are seen holding up flags and walking in a circle while many others watch on the sides.,Two people,gold,are seen moving around a field with one performing push ups and begins shooting one another down the lane.,are then seen walking up to the circle and lead into a wrestling match between the two.,are seen watching on the sides while one girl grabs the chair and leads change to him.,play the game back and fourth against a continue and more people walk around the area continuing to play the game.,1\n2823,anetv_0QyHaXliXKs,6174,Two people are then seen walking up to the circle and lead into a wrestling match between the two. One man bows to the other and the winner,Two people are then seen walking up to the circle and lead into a wrestling match between the two.,One man bows to the other and the winner,gold,continues dancing with one another.,finally zooms back to him while they end after him dancing.,walks away from the stage.,attempts to jump with a hoop.,2\n2824,anetv_0kfJ7Lu4tvo,15427,\"Then, the man loose the lug nuts of the tire, and then reads the manual. After, the man\",\"Then, the man loose the lug nuts of the tire, and then reads the manual.\",\"After, the man\",gold,puts a jack below the car to raise it.,continues to describe how he intends his bike.,proceeds to complete the bike then places the tire on the bike ring.,jump over the ski and ties the spare tire together.,0\n2825,anetv_0kfJ7Lu4tvo,15429,\"Next, the man puts the emergency tire and tight the lug nuts. At the end, the man\",\"Next, the man puts the emergency tire and tight the lug nuts.\",\"At the end, the man\",gold,grabs the new tire and starts getting a spare tire cut.,takes a handful of plastic and takes off his spare and cleans the mouthpiece.,keeps the jack and the flat tire.,removes the tire and uses a high tire on it.,2\n2826,anetv_0kfJ7Lu4tvo,15426,\"A person turns on the emergency lights of a car and takes out the emergency tire. Then, the man\",A person turns on the emergency lights of a car and takes out the emergency tire.,\"Then, the man\",gold,comes on to the of patch with the tire and show his bike.,\"loose the lug nuts of the tire, and then reads the manual.\",sprays the tire with a tissue and tapes the paper wrapped on the tree.,put a attachment into pink carpet and scrape down the vacuum.,1\n2827,anetv_0kfJ7Lu4tvo,15428,\"After, the man puts a jack below the car to raise it. Next, the man\",\"After, the man puts a jack below the car to raise it.\",\"Next, the man\",gold,takes off the blow and the man grabs the shovel and walks away.,prepares it in a small display while the man then welds.,run until it lost instead.,puts the emergency tire and tight the lug nuts.,3\n2828,anetv_HWuRcUpcsHY,9046,They are using an orange oar to row themselves. They,They are using an orange oar to row themselves.,They,gold,have drove up in a bunch of dirt and snorkeling gear.,are sliding down a final river.,hit a rock on the side of the river.,dive under bright water.,2\n2829,anetv_HWuRcUpcsHY,9045,A person is kayaking down a river with other people. They,A person is kayaking down a river with other people.,They,gold,release up the mountain to a stop.,are using an orange oar to row themselves.,hold their hands in swim circles and watch them as they swim across the water.,hold surfboards while trying to stay afloat on calm water.,1\n2830,anetv_HWuRcUpcsHY,12891,A person gives a thumbs up to another person. The person,A person gives a thumbs up to another person.,The person,gold,goes over a large waterfall and lands on a rock.,shows how to iron to sharpen a knife or pumpkin.,turns to one and shows off a dog.,drops the red paper onto the sticks and launches them again.,0\n2831,anetv_HWuRcUpcsHY,12890,People are kayaking in a river. A person,People are kayaking in a river.,A person,gold,is sitting down a long river.,is riding boats along a river.,gives a thumbs up to another person.,is sitting on a boat that is behind them.,2\n2832,lsmdc0016_O_Brother_Where_Art_Thou-55478,11764,People sit on a blanket around a large picnic hamper. Someone,People sit on a blanket around a large picnic hamper.,Someone,gold,speaks to a camera and walks on the island.,swings up a velvet bin like flying into the trunk.,holds a porcelain belly paw and eats its claws.,is just sucking the last piece of chicken off a bone.,3\n2833,lsmdc0016_O_Brother_Where_Art_Thou-55478,11758,\"Someone O'Daniel sits smoking a cigar, nursing a glass of whiskey, and soliciting the counsel of his overweight retinue. Someone\",\"Someone O'Daniel sits smoking a cigar, nursing a glass of whiskey, and soliciting the counsel of his overweight retinue.\",Someone,gold,\"someone is in, to the podium but her gun, is still on the bus.\",returns the gaze to the young man who turns his head to the door behind him.,\"narrows his eyes at him, wondering what he is getting at.\",handcuffs hanging from one tree.,2\n2834,lsmdc0016_O_Brother_Where_Art_Thou-55478,11765,Someone is just sucking the last piece of chicken off a bone. He,Someone is just sucking the last piece of chicken off a bone.,He,gold,furrows his brow.,has the contract in her heart.,\"tosses the bone over his shoulder, belches, and sighs.\",then takes someone's hand.,2\n2835,lsmdc0016_O_Brother_Where_Art_Thou-55478,11766,\"He tosses the bone over his shoulder, belches, and sighs. Someone\",\"He tosses the bone over his shoulder, belches, and sighs.\",Someone,gold,turns to her nurse.,is pleased and embarrassed.,stares earnestly at someone.,\"floats towards the beginning, which shatters.\",1\n2836,lsmdc0016_O_Brother_Where_Art_Thou-55478,11761,He glares around the table. Someone,He glares around the table.,Someone,gold,pulls his face to the bear.,returns his gaze to the water.,grunts as he starts to rise.,pats someone on the face and nods.,2\n2837,lsmdc0016_O_Brother_Where_Art_Thou-55478,11760,Someone whips off his hat and slaps at someone with it. He,Someone whips off his hat and slaps at someone with it.,He,gold,glares around the table.,dozes in front of the sleeping someone.,pulls her aside and takes someone's hand.,whips firing at the bomb.,0\n2838,lsmdc0016_O_Brother_Where_Art_Thou-55478,11763,The car boosted from the general store has been pulled off the road and parked a few yards into a field littered with bluebonnets and rimmed with moss - dripping oak. People,The car boosted from the general store has been pulled off the road and parked a few yards into a field littered with bluebonnets and rimmed with moss - dripping oak.,People,gold,towers over each other.,see a fence on a warehouse post.,hurtle the cabin across the court.,sit on a blanket around a large picnic hamper.,3\n2839,lsmdc1028_No_Reservations-82912,18135,Someone walks into the bathroom and enters her bedroom through an adjoining door. A chair,Someone walks into the bathroom and enters her bedroom through an adjoining door.,A chair,gold,spins someone down beside her.,is washed from a window as the lights flicker inside.,\"is curled up on a carpet, a cabinet and two feet chair.\",has been propped up against the bedroom door to prevent anyone from entering.,3\n2840,lsmdc1028_No_Reservations-82912,18125,The contents have caught fire. Someone,The contents have caught fire.,Someone,gold,uses a long rag to remove the ashes from the sitting car.,\"shakes her head at someone in disbelief, then grabs her bag and heads out.\",pours a cup into the pot.,stamps out black roses.,1\n2841,lsmdc1028_No_Reservations-82912,18136,A chair has been propped up against the bedroom door to prevent anyone from entering. Someone,A chair has been propped up against the bedroom door to prevent anyone from entering.,Someone,gold,\"walks over and moves it aside, along with a wicker laundry basket.\",picks up the rug and wipes it with his hands.,\"steps out of the parlor, wrapped in a blanket over his head.\",listens to her as he walks away.,0\n2842,lsmdc1028_No_Reservations-82912,18141,Someone moves the photo album around and begins to look through it. Someone,Someone moves the photo album around and begins to look through it.,Someone,gold,eyes narrow and quick on his travels.,\"aside, we drift down to the house.\",\"closes the album, then places it down on the chest of drawers.\",then begins to ring various lines.,2\n2843,lsmdc1028_No_Reservations-82912,18133,She forces it open a crack. Someone,She forces it open a crack.,Someone,gold,\"sees someone curled up, asleep on her bed.\",pulls out the window at her post and places it in her mouth.,strolls inside and faces someone as his friends give him a relieved look.,\"avoids her gaze, her eyes wide.\",0\n2844,lsmdc1028_No_Reservations-82912,18130,She takes the chopsticks off the door and walks inside. She,She takes the chopsticks off the door and walks inside.,She,gold,\"stands, quietly searching through some waterfront.\",closes someone's eyes and looks in through two open glass windows.,walks into old cottage and jacks a sheet of paper from the table.,walks down the hallway to someone's bedroom.,3\n2845,lsmdc1028_No_Reservations-82912,18145,\"Next morning, someone stands by the bed looking down at someone, who's fast asleep. Sleepy someone\",\"Next morning, someone stands by the bed looking down at someone, who's fast asleep.\",Sleepy someone,gold,watches them raises her body to the side of the bed and starts for the kitchen.,\"watches her go, sitting up groggily.\",open her eyes and looks at the clock.,stands at a large music booth with other friend and a guitar.,2\n2846,lsmdc1028_No_Reservations-82912,18142,\"Someone closes the album, then places it down on the chest of drawers. She\",\"Someone closes the album, then places it down on the chest of drawers.\",She,gold,carefully sets the viewer close to hers and it includes with a flashlight off the side of the cabinet.,\"holds it for a moment, then shuts her eyes and shifts to her feet.\",turns off a lamp and makes her way slowly around the bed.,\"open the back door, someone rolls her.\",2\n2847,lsmdc1028_No_Reservations-82912,18129,She bends down and picks up a plastic take - away bag. She,She bends down and picks up a plastic take - away bag.,She,gold,takes the chopsticks off the door and walks inside.,drops it on the floor and uses a hand to toe it.,takes two miniature bill from her wallet.,looks outside then places the shoe on it.,0\n2848,lsmdc1028_No_Reservations-82912,18143,She turns off a lamp and makes her way slowly around the bed. Someone,She turns off a lamp and makes her way slowly around the bed.,Someone,gold,burst into an apartment and stands with hand in hand.,\"rakes something, then steps to another window someone picks it down, and then disappears behind a wall.\",sits down on the edge of the bed and looks down wistfully.,lies in bed lying on the ground.,2\n2849,lsmdc1028_No_Reservations-82912,18138,\"Someone steps slowly towards the bed and picks up the remote control, which is lying next to someone. She\",\"Someone steps slowly towards the bed and picks up the remote control, which is lying next to someone.\",She,gold,watches someone fold his tongue.,\"rec room, crowded outside a arc, and a woman hangs behind against them.\",turns off the tv.,\"flimsy from a wall in the vault desk, some of the crew buzzer applies on the bottom to its door.\",2\n2850,lsmdc1028_No_Reservations-82912,18132,The door won't budge. She,The door won't budge.,She,gold,marches that place on a pink - carpeted stoop.,kneels down and sits beside him.,hammers his coat to the door as hard as he can and opens it.,forces it open a crack.,3\n2851,lsmdc1028_No_Reservations-82912,18140,\"She gently covers someone with the bedclothes, then notices as photo album, which had been hidden beneath them. Someone\",\"She gently covers someone with the bedclothes, then notices as photo album, which had been hidden beneath them.\",Someone,gold,\"takes the bottle, too.\",spots someone leaving someone inside the mall.,puts on a polo t - shirt with the back of her training rifles.,moves the photo album around and begins to look through it.,3\n2852,lsmdc1028_No_Reservations-82912,18134,\"Someone sees someone curled up, asleep on her bed. Someone\",\"Someone sees someone curled up, asleep on her bed.\",Someone,gold,walks onto the porch.,walks into the bathroom and enters her bedroom through an adjoining door.,is in a booth with a fair - haired man.,\"flips back, slamming the bolt shut.\",1\n2853,lsmdc1028_No_Reservations-82912,18144,\"Someone sits down on the edge of the bed and looks down wistfully. Next morning, someone\",Someone sits down on the edge of the bed and looks down wistfully.,\"Next morning, someone\",gold,helps someone to her as she leaves the building.,descends into a shop.,\"stands by the bed looking down at someone, who's fast asleep.\",rolls onto the bed.,2\n2854,lsmdc1028_No_Reservations-82912,18126,\"Someone shakes her head at someone in disbelief, then grabs her bag and heads out. A flicker of a smile\",\"Someone shakes her head at someone in disbelief, then grabs her bag and heads out.\",A flicker of a smile,gold,\"slips onto his face as she knits her eyes, then returns her attention to the host.\",spreads on someone's face as he stares at the messy table.,sweeps through someone's eyes.,plays on someone's lips.,3\n2855,lsmdc1028_No_Reservations-82912,18131,She walks down the hallway to someone's bedroom. Someone,She walks down the hallway to someone's bedroom.,Someone,gold,\"pokes her head around the open door, then tries to enter her own bedroom.\",finds a sign - door on the window and starts to entrance first.,goes to her bed.,\"steps into the room, pensive, in the bag.\",0\n2856,lsmdc1028_No_Reservations-82912,18137,\"Someone walks over and moves it aside, along with a wicker laundry basket. Someone\",\"Someone walks over and moves it aside, along with a wicker laundry basket.\",Someone,gold,hurriedly searches the closet for a exposed knob railing on a side platform.,also throws it up from a surface in the toilet.,\"steps slowly towards the bed and picks up the remote control, which is lying next to someone.\",\"smiles at someone for the thermometer, then gets back in her chair and checks a photo of a puzzled clerk.\",2\n2857,lsmdc1028_No_Reservations-82912,18124,\"She looks over at someone, who stands grinning at her. Someone\",\"She looks over at someone, who stands grinning at her.\",Someone,gold,points at a pan on the stove next to him.,makes her turn to a grove of food and waddles on.,grabs someone's yellow jacket and walks off.,\"meets his gaze, followed by someone.\",0\n2858,lsmdc1028_No_Reservations-82912,18128,A packet of chopsticks have been sellotaped to her door. She,A packet of chopsticks have been sellotaped to her door.,She,gold,\"wears a blue sari, with his eyes open, tears of pencil and crying into the devastation.\",reaches behind him and looks around suspiciously.,bends down and picks up a plastic take - away bag.,drops it into the sink.,2\n2859,lsmdc1028_No_Reservations-82912,18139,She turns off the tv. Someone,She turns off the tv.,Someone,gold,\"looks down at her sleeping niece, then places the remote on a chest of drawers.\",drives past someone and someone smiles at someone.,boots the models from the room.,wags her head and wraps his fist around her.,0\n2860,anetv_95L-8JtlwRU,11334,A man is using inserts to prepare the shoes. He then,A man is using inserts to prepare the shoes.,He then,gold,takes the other windex and starts ironing the shirt.,uses a brush and cleaning solution to wash the shoes.,talks into a blue bucket to start out the shoe.,stops and demonstrates how to groom the dishes before he returns to talking.,1\n2861,anetv_95L-8JtlwRU,11333,A pair of white and red nike shoes are shown. A man,A pair of white and red nike shoes are shown.,A man,gold,is talking the next one.,enters and picks up a phone on a stool.,is using inserts to prepare the shoes.,has orange words on the wrist.,2\n2862,anetv_2VoWT4gnQDg,5653,The camera pans to a shirtless man standing on a ladder next to a roof and talking. The man,The camera pans to a shirtless man standing on a ladder next to a roof and talking.,The man,gold,goes onto the fence and shows a man damaged plaster.,begins mopping the floor while demonstrating to mop.,\"begins to prod at roof tiles with a metal stick, lifting the edges up briefly.\",continues talking about waving the tool into the leaves and cutting off demonstrating that.,2\n2863,anetv_2VoWT4gnQDg,5654,\"The man begins to prod at roof tiles with a metal stick, lifting the edges up briefly. The man then\",\"The man begins to prod at roof tiles with a metal stick, lifting the edges up briefly.\",The man then,gold,throws his put rag all over the tile then down to another table.,runs to throw the grapefruit into the vehicle.,runs to more floor and cuts the piece of paper out of the jar and the floor.,begins talking again before panning to the lawn where a stack of white materials are stacked up next to the edge of the house.,3\n2864,anetv_2VoWT4gnQDg,10124,A room is shown and leads into a man speaking to the camera. He,A room is shown and leads into a man speaking to the camera.,He,gold,moves back and fourth on a food machine laying over a table.,is seen sitting on a hookah and looking off into the distance.,pans back to a roof and uses a tool to pull up tiles.,man is interviewed and leads into several martial arts movements.,2\n2865,anetv_2VoWT4gnQDg,10125,He pans back to a roof and uses a tool to pull up tiles. The man,He pans back to a roof and uses a tool to pull up tiles.,The man,gold,finishes by speaking more to the camera.,lifts the metal bar and picks up the bike.,puts the roof down while still speaking to the camera.,stands up immediately and continues blowing the leaves evenly around a brick wall across the porch.,0\n2866,anetv_2VoWT4gnQDg,5652,A short clip of an room with a refrigerator and a couch and tv is shown. The camera,A short clip of an room with a refrigerator and a couch and tv is shown.,The camera,gold,holds the group up to show the date in public.,pans to a shirtless man standing on a ladder next to a roof and talking.,shows a black and green pattern with words scrolling across the screen cut to a website in a name.,follows the woman smiling to the camera as the girl is interviewed to the camera.,1\n2867,anetv_yJgC3-t_ciw,17520,There is a large decorated Christmas tree behind them. There,There is a large decorated Christmas tree behind them.,There,gold,are beaming in the sky.,is a step of a woman.,are some in camp and a nice place.,is a woman sitting in the living room with a little girl.,3\n2868,anetv_yJgC3-t_ciw,17522,The boys play Foos ball with the men. They,The boys play Foos ball with the men.,They,gold,laugh and enjoy themselves as they continue to play.,pause and get up again.,play while several players continue hits and bounce near the wall with their catcher.,see the clippings in the screen.,0\n2869,anetv_yJgC3-t_ciw,17519,There are two men playing Foos ball with two young boys in a living room. There,There are two men playing Foos ball with two young boys in a living room.,There,gold,is a large decorated christmas tree behind them.,are playing in some crowded arena of wood and suddenly fans are cheering for different women.,are playing a game of rock paper scissors.,people at the red team again play volleyball on their ice.,0\n2870,anetv_yJgC3-t_ciw,17521,There is a woman sitting in the living room with a little girl. The boys,There is a woman sitting in the living room with a little girl.,The boys,gold,go under a hopscotch on the hopscotch.,are bouncing batons in her hair.,play foos ball with the men.,are playing and kicking her looking teens in the yard.,2\n2871,anetv_bDK-_jU_KzI,15486,Both the body builders use all their force and concentration while they try to take the opponent down. They,Both the body builders use all their force and concentration while they try to take the opponent down.,They,gold,hold each man hand straight.,continue using force as they pivot their elbows to push their opponent's arm in the opposite direction.,wakes up and goes up and continuously on.,return to the team that is playing.,1\n2872,anetv_bDK-_jU_KzI,15484,There are several body builders showing their weight training exercises with weight bars and arm wrestling techniques. Two of the body builders arm,There are several body builders showing their weight training exercises with weight bars and arm wrestling techniques.,Two of the body builders arm,gold,wrestle on a table while another person is watching them.,wrestle the same electric while is shown pushing a bar successfully.,\"sits and maneuver in water, running around.\",wrestle the weight which are in preparation for their instructors.,0\n2873,anetv_bDK-_jU_KzI,15485,\"After he signals the body builders to start, they begin arm wrestling. Both the body builders\",\"After he signals the body builders to start, they begin arm wrestling.\",Both the body builders,gold,do all of theirs in the audience.,use all their force and concentration while they try to take the opponent down.,are white and alerted.,on and our strain is measured as emptied.,1\n2874,anetv_bDK-_jU_KzI,15487,They continue using force as they pivot their elbows to push their opponent's arm in the opposite direction. Finally the wrestler on the left wins by,They continue using force as they pivot their elbows to push their opponent's arm in the opposite direction.,Finally the wrestler on the left wins by,gold,putting his opponent's arm down.,raising his arms by his palms and battle one another.,pulling himself on between the men to stand side by side.,tapping their left knee without looking at it.,0\n2875,anetv_bDK-_jU_KzI,1059,Various pictures of body builders are shown as people as videos of people lifting and leads into two men grabbing hands. Another man,Various pictures of body builders are shown as people as videos of people lifting and leads into two men grabbing hands.,Another man,gold,is seen with one man using bowling balls and putting shoes into a smaller racketball case.,wearing orange rides a selfie through a white swim shirt.,shown dancing on the floor while the woman walks into frame.,holds theirs together and let's go to begin an arm wrestling match.,3\n2876,lsmdc3056_PUBLIC_ENEMIES-3588,9188,The interrogator glares down at her and tensely wipes his mouth. Someone,The interrogator glares down at her and tensely wipes his mouth.,Someone,gold,looks him in the eye.,shakes his head in disbelief and spots someone.,leans on someone back and points at him.,cautiously leaves the room and leaves the room.,0\n2877,lsmdc3056_PUBLIC_ENEMIES-3588,9192,\"Someone presses down on the arms of the chair to get up, then stops. In the hall, the rest of the agents\",\"Someone presses down on the arms of the chair to get up, then stops.\",\"In the hall, the rest of the agents\",gold,stand aside as he passes with the weakened woman.,\"mill at a can place with exactly four - hour anxiety, then spots someone frowning, wearing a stylish cotton dress.\",rise on their feet and ward away from them.,\"walk with their blows toward the offscreen brick building, one inch someone's men, a german nearby.\",0\n2878,lsmdc3056_PUBLIC_ENEMIES-3588,9194,\"Now, someone nods to someone. In the interrogation room, the burly agent\",\"Now, someone nods to someone.\",\"In the interrogation room, the burly agent\",gold,walks to an elevator and looks from someone to someone with a bottle of liquid.,is helping someone with the gun.,stays put beside the open door out of the sight line of his peers who's staring.,leads the primate down the hall.,2\n2879,lsmdc3056_PUBLIC_ENEMIES-3588,9195,\"In his home, someone answers. Now, a woman\",\"In his home, someone answers.\",\"Now, a woman\",gold,whips a padlock after her.,sits at a bar.,stands by the fire tower.,shows a covered dog in a bikini.,1\n2880,lsmdc3056_PUBLIC_ENEMIES-3588,9190,He sneers and winds up with his fist. Someone,He sneers and winds up with his fist.,Someone,gold,sits on another ship.,\"gives him a quick kiss, then walks away.\",intercepts his arm and slams him.,looks up from his board.,2\n2881,lsmdc3056_PUBLIC_ENEMIES-3588,9198,Her weary gaze hangs straight ahead. He,Her weary gaze hangs straight ahead.,He,gold,drags it off.,takes her hand and gazes into her eyes.,\"takes a control outside and on the phone, then continues to approach the phone.\",squishes his face against her hand.,1\n2882,lsmdc3056_PUBLIC_ENEMIES-3588,9196,\"Now, a woman sits at a bar. A door\",\"Now, a woman sits at a bar.\",A door,gold,closes on a piano.,opens onto the balcony.,swings open with the woman.,opens across the room.,3\n2883,lsmdc3056_PUBLIC_ENEMIES-3588,9191,As she holds her wrists. Someone,As she holds her wrists.,Someone,gold,meets someone's gaze and nods.,leans over to her.,steps toward her father's inner panel and gently massages his shoulder.,put one hand on someone's back.,1\n2884,lsmdc3056_PUBLIC_ENEMIES-3588,9197,A door opens across the room. Someone,A door opens across the room.,Someone,gold,opens the door and sees a zombie fall to the floor.,\"looks at a door, but does n't budge.\",opens up the empty dining room where brightly lit candles adorn a campfire sign.,enters and takes a seat next to her.,3\n2885,lsmdc3056_PUBLIC_ENEMIES-3588,9187,She lowers her head and wipes her mouth. The interrogator,She lowers her head and wipes her mouth.,The interrogator,gold,takes off her gaze and shakes his head.,slides the pitchfork into her mouth.,\"throws back the cards, free and forwards, with a flat hat, and on the ground.\",glares down at her and tensely wipes his mouth.,3\n2886,lsmdc3056_PUBLIC_ENEMIES-3588,9201,She gets in back and gazes at the unseen driver. Someone,She gets in back and gazes at the unseen driver.,Someone,gold,smiles as he goes along.,jams on the engine.,looks at a note in the middle of a file as he smooths it out.,seats at the wheel.,3\n2887,lsmdc3056_PUBLIC_ENEMIES-3588,9199,He takes her hand and gazes into her eyes. They,He takes her hand and gazes into her eyes.,They,gold,takes a deep breath.,pick up their drinks and share another glance.,sit facing a low kitchen railing.,kiss when they're in the stable.,1\n2888,lsmdc3056_PUBLIC_ENEMIES-3588,9189,Someone looks him in the eye. He,Someone looks him in the eye.,He,gold,sneers and winds up with his fist.,pounces on someone and it stands.,maintains his footing as he slams his head onto the floor.,shrugs slightly and kisses his lips.,0\n2889,lsmdc3056_PUBLIC_ENEMIES-3588,9193,\"In the hall, the rest of the agents stand aside as he passes with the weakened woman. In the interrogation room, someone\",\"In the hall, the rest of the agents stand aside as he passes with the weakened woman.\",\"In the interrogation room, someone\",gold,lowers his arm from the burly agent's throat and leaves.,smokes a cigar from a hookah.,sits on the sidewalk from the quick reads past the young woman.,removes a vial with all cupcakes.,0\n2890,anetv_B6W_0AvgGTY,13853,The man throws a frisbee off into the distance and the dog chases after it. The dog,The man throws a frisbee off into the distance and the dog chases after it.,The dog,gold,runs around to the camera opening while the dog runs.,grabs the frisbee and runs back to the man.,kicks the dog away again and runs across the room.,continuously follows in the rumble of the dog while dragging the bull around and spinning around.,1\n2891,anetv_KkpQ347Ceak,17891,They crack a nut and put that into the bowl. They,They crack a nut and put that into the bowl.,They,gold,continue using the tool to remove the shingles.,slide the box shut in a box.,continue to scrape the paper down.,crack another nut over a black tray.,3\n2892,anetv_KkpQ347Ceak,17890,A person is putting food into a bowl. They,A person is putting food into a bowl.,They,gold,are hit in a bowl.,crack a nut and put that into the bowl.,are carving the pumpkins with the hand posters.,are shown in places together in a bowl.,1\n2893,lsmdc3042_KARATE_KID-20374,12163,\"Someone carries it to his opponent. As someone accepts it, they\",Someone carries it to his opponent.,\"As someone accepts it, they\",gold,greet each other burned.,hug to join the rest of the family.,share a respectful smile.,hold hands behind their heads.,2\n2894,lsmdc3042_KARATE_KID-20374,12117,\"Master someone holds someone's face, peering closely at his nose. Someone\",\"Master someone holds someone's face, peering closely at his nose.\",Someone,gold,\"conversing animatedly, someone stands and stares past the wide - eyed, brown - haired kid.\",gets up and goes for a light.,\"stares, wide - eyed, as his master releases his grip.\",gives him a slap.,2\n2895,lsmdc3042_KARATE_KID-20374,12082,It blazes with a greenish - yellow flame. Someone,It blazes with a greenish - yellow flame.,Someone,gold,turns away from his cronies.,picks up a garden spoon.,peels off a ski hat.,runs out and faces the judges.,3\n2896,lsmdc3042_KARATE_KID-20374,12156,The official lifts someone's hand aloft. Someone,The official lifts someone's hand aloft.,Someone,gold,\"gives a proud nod, his eyes glistening.\",watches someone with her son.,throws the stool over the table and flings him against a desk chair.,marches down a hallway.,0\n2897,lsmdc3042_KARATE_KID-20374,12138,\"Someone pushes himself up on his uninjured knee, then buckles. Near tears, someone\",\"Someone pushes himself up on his uninjured knee, then buckles.\",\"Near tears, someone\",gold,dabs the bubbles with his pliers.,peeks through the driver's window.,shifts anxiously on her feet.,rests his hands on his chin in victory.,2\n2898,lsmdc3042_KARATE_KID-20374,12147,\"Someone's shoulders heave as he edges toward someone. Lowering his chin, someone\",Someone's shoulders heave as he edges toward someone.,\"Lowering his chin, someone\",gold,rests his head against his shoulder.,stares piercingly at his opponent.,tilts his head and gives a sad frown.,nods for the boy to go.,1\n2899,lsmdc3042_KARATE_KID-20374,12158,Someone and someone jump up and down. As someone,Someone and someone jump up and down.,As someone,gold,\"gets to his feet, a aging man approaches a man in a wheelchair holding a crying set.\",turns away with his head bowed.,heads out of the humvee's driver's rear door as he heads into a second lobby.,\"carries his flat, a rumble emerges from outside under the window and throws up the bag.\",1\n2900,lsmdc3042_KARATE_KID-20374,12155,\"His beaming teacher mouths, You won. The official\",\"His beaming teacher mouths, You won.\",The official,gold,smiles goodbye and starts signing his hand.,shields his face in excitement.,extends a helpless hand out to someone.,lifts someone's hand aloft.,3\n2901,lsmdc3042_KARATE_KID-20374,12096,The two boys take their starting poses. Someone,The two boys take their starting poses.,Someone,gold,looks into her cheek.,creeps toward his opponent with a taunting smirk.,pretends to bring a picture of the man over his heart and see that far goes of the game is that.,stirs as their fists.,1\n2902,lsmdc3042_KARATE_KID-20374,12112,Someone blocks his fevered attacks. Someone,Someone blocks his fevered attacks.,Someone,gold,builds up someone's perfect throw.,presses his fingers against the syringe's handle.,dashes into a black and white cottage.,leaps at him hooks his legs around the bully's neck.,3\n2903,lsmdc3042_KARATE_KID-20374,12092,The American looks the bully dead in the eye. They,The American looks the bully dead in the eye.,They,gold,guide the individual out in the water.,share a solemn look.,looks from someone to the audience and taps on someone's shoulder for another beat even knowing he does not what to do.,finish their karate routine and smile at the audience.,1\n2904,lsmdc3042_KARATE_KID-20374,12110,Both boys catch their breath. Someone,Both boys catch their breath.,Someone,gold,spots a chubby - haired child cradling a bouquet of flowers.,sways swings her head.,\"squeezes his hand and runs away down the corridor through the tall indeed, tunnel.\",watches with a knitted brow.,3\n2905,lsmdc3042_KARATE_KID-20374,12127,The boy delivers a swift kick to the leg. Someone,The boy delivers a swift kick to the leg.,Someone,gold,grimaces shoulder - high kicks and dodges the kick.,brings his slip out from behind the gate.,reaches for an assault rifle.,\"falls, baring his gritted teeth.\",3\n2906,lsmdc3042_KARATE_KID-20374,12099,\"Someone leaps back onto his hands, and springs onto his feet. The two boys\",\"Someone leaps back onto his hands, and springs onto his feet.\",The two boys,gold,\"stand on either side, facing right, then take to take a seat.\",\"exchange a quick, fearful glance at the archer.\",\"crack up at the park, picking themselves up while being fearful.\",\"swing fiercely at one another, each blocking the other with precision.\",3\n2907,lsmdc3042_KARATE_KID-20374,12141,\"He pushes himself up, then stands on his good leg. Someone cheers wildly and someone\",\"He pushes himself up, then stands on his good leg.\",Someone cheers wildly and someone,gold,'s face is unmasked.,buries his face in his hands.,does more medical moves.,gives an astonished smile.,3\n2908,lsmdc3042_KARATE_KID-20374,12160,It replays his masterful kick in slow motion. Someone's face and name,It replays his masterful kick in slow motion.,Someone's face and name,gold,appears on the screen.,\"appear alone on the display, surrounded by chinese text.\",keeps its eyes aimed at the smoky control as someone reaches through the net.,appear on someone's white.,1\n2909,lsmdc3042_KARATE_KID-20374,12084,Spectators spring to their feet. The crowd,Spectators spring to their feet.,The crowd,gold,twist around for a second.,\"parts for the american, as he marches forward with a limping gait.\",claps his hands in approval.,\"stares intently, then whirls across the wasteland.\",1\n2910,lsmdc3042_KARATE_KID-20374,12122,\"Someone eyes his rival teacher worriedly. Raising his hands, someone\",Someone eyes his rival teacher worriedly.,\"Raising his hands, someone\",gold,faces him and aims his gun victoriously.,pushes him up toward the phone.,tensely licks his lips and blinks the sweat out of his eyes.,bats one of the pincers back and walks away.,2\n2911,lsmdc3042_KARATE_KID-20374,12128,\"Someone falls, baring his gritted teeth. He\",\"Someone falls, baring his gritted teeth.\",He,gold,watches her with an affectionate smirk.,beats at the cauldron.,\"presses his painfully grimacing face to the mat, clutching his thigh.\",'the crowd is bandaged.,2\n2912,lsmdc3042_KARATE_KID-20374,12085,\"The crowd parts for the American, as he marches forward with a limping gait. In the stands, someone\",\"The crowd parts for the American, as he marches forward with a limping gait.\",\"In the stands, someone\",gold,leaves the station and steps into a open field.,bowing to someone.,returns an gaze to the statue.,cranes her neck for a view of her son.,3\n2913,lsmdc3042_KARATE_KID-20374,12101,The boy bravely sits up. Master someone,The boy bravely sits up.,Master someone,gold,reaches for his gun but someone is beside him.,takes his poker stare.,\"follows, leaving someone alone with her mother.\",shifts on his feet as he watches grimly.,3\n2914,lsmdc3042_KARATE_KID-20374,12151,\"Someone turns away, then back - flips off his one good leg. As the crowd cheers, someone\",\"Someone turns away, then back - flips off his one good leg.\",\"As the crowd cheers, someone\",gold,'s mother laughs with delight.,nods the direction sort of mr.,lands balanced in the one - legged cobra pose.,hops up to the sitting position.,2\n2915,lsmdc3042_KARATE_KID-20374,12150,Someone cocks his head the other way. The official,Someone cocks his head the other way.,The official,gold,lowers the flags between them.,gives him a high five.,\"fires agent in the face, then runs over the surveillance lane.\",\"throws a colleague, who cuts an arm around his neck and backs to him.\",0\n2916,lsmdc3042_KARATE_KID-20374,12152,\"As the crowd cheers, someone lands balanced in the one - legged cobra pose. Writhing before him, someone\",\"As the crowd cheers, someone lands balanced in the one - legged cobra pose.\",\"Writhing before him, someone\",gold,leans up and lifts his brow.,slides onto the indian social bars.,\"knocks the sleeve down, and all noises faints to it.\",presses a hand over his left eye.,3\n2917,lsmdc3042_KARATE_KID-20374,12091,Someone waits at the edge of the platform as someone steps near. The American,Someone waits at the edge of the platform as someone steps near.,The American,gold,looms in front of him.,looks the bully dead in the eye.,\"do catch with him, trying to get up.\",looks slightly as someone approaches from further inside.,1\n2918,lsmdc3042_KARATE_KID-20374,12097,\"The two trade deft punches and kicks, each expertly blocking the other. Someone attacks with a hitch kick, but his opponent\",\"The two trade deft punches and kicks, each expertly blocking the other.\",\"Someone attacks with a hitch kick, but his opponent\",gold,sidesteps out of the way.,hits him repeatedly so the corners are stuck.,leaps into his arms as someone follows back through their linked gate.,smashes him against the building with a goblet.,0\n2919,lsmdc3042_KARATE_KID-20374,12167,\"Lined up behind him, his fellow students sidestep into view, copy the gesture. Someone\",\"Lined up behind him, his fellow students sidestep into view, copy the gesture.\",Someone,gold,\"motions for the ladies veil, then hands his face to someone.\",respectfully returns the bow.,\"appears a few steps, then throws down in a mounted hydra armored suit.\",\"row their bridges down a city, and sideline together.\",1\n2920,lsmdc3042_KARATE_KID-20374,12079,Someone stares tenderly at him. Someone,Someone stares tenderly at him.,Someone,gold,gives an understanding nod.,shyly shoots at him and sits on top of the casket.,'s gaze softens.,allows a faint smile.,0\n2921,lsmdc3042_KARATE_KID-20374,12142,Someone cheers wildly and someone gives an astonished smile. Spectators,Someone cheers wildly and someone gives an astonished smile.,Spectators,gold,hold up at gunpoint.,joyfully wave their flags in support.,adjusts his gear.,\"inspect someone, someone walks ahead.\",1\n2922,lsmdc3042_KARATE_KID-20374,12115,\"Guided by the official, someone compliantly backs off. Standing, someone\",\"Guided by the official, someone compliantly backs off.\",\"Standing, someone\",gold,exhales heavily and faces his opponent.,circles away from a nearby trailer.,grips the handle and grips the bars by its hand.,climbs up from the shoulder with his cane.,0\n2923,lsmdc3042_KARATE_KID-20374,12148,As the American tilts his head. Someone,As the American tilts his head.,Someone,gold,drops his fists and matches him.,shoves a couple of his wheels towards him.,walks around a corner and raises his hands.,\"opens his bow, revealing only his long - lipped face.\",0\n2924,lsmdc3042_KARATE_KID-20374,12113,Someone leaps at him hooks his legs around the bully's neck. The bully,Someone leaps at him hooks his legs around the bully's neck.,The bully,gold,grinds someone to the ground.,pushes someone back and forth.,lands on his back.,\"looms, knocking him unconscious.\",2\n2925,lsmdc3042_KARATE_KID-20374,12124,Someone takes a deep breath. The American,Someone takes a deep breath.,The American,gold,\"nods high two stories, then studies herd in the distance as someone chases him out of their room.\",quiet again to the front.,stops his horse's filter.,expertly blocks his swinging fists and feet.,3\n2926,lsmdc3042_KARATE_KID-20374,12095,Someone bounces on his feet. The two boys,Someone bounces on his feet.,The two boys,gold,strut aloft to the school.,drop their coconut onto a mat.,hear black arguing laugh.,take their starting poses.,3\n2927,lsmdc3042_KARATE_KID-20374,12121,\"Raising his fists, he wipes his nose. Someone\",\"Raising his fists, he wipes his nose.\",Someone,gold,takes out his teeth.,grits his teeth as someone speeds along the beach harbor.,eyes his rival teacher worriedly.,shakes the glass and faces the trooper.,2\n2928,lsmdc3042_KARATE_KID-20374,12098,As the bully swings his fists. Someone,As the bully swings his fists.,Someone,gold,aims his pistol into someone's crotch.,clutches someone's neck.,\"leaps back onto his hands, and springs onto his feet.\",arrives to his patio.,2\n2929,lsmdc3042_KARATE_KID-20374,12120,\"Shifting his calculating gaze, Master someone returns to the sidelines. Someone\",\"Shifting his calculating gaze, Master someone returns to the sidelines.\",Someone,gold,starts to pound her bag in the ground.,rolls his shoulder as he and someone face off.,props someone back to his shoulder and rests a hand on her shoulder.,\"lifts his body toward someone, who raises his binoculars, water their eyes and head.\",1\n2930,lsmdc3042_KARATE_KID-20374,12114,The bully lands on his back. The official,The bully lands on his back.,The official,gold,presses his brow together in sausage.,brings down his cards and flags forward excitedly.,reaches out to collect his plaster.,takes the american's wrist and helps him up.,3\n2931,lsmdc3042_KARATE_KID-20374,12130,The official extends a red flag. As Master someone,The official extends a red flag.,As Master someone,gold,enters and returns with the teammates on the gi.,\"looks down at someone, then lowers his head.\",shoots someone on the arm.,looks to the big screen.,3\n2932,lsmdc3042_KARATE_KID-20374,12149,Someone drops his fists and matches him. Someone,Someone drops his fists and matches him.,Someone,gold,cocks his head the other way.,smashes the plane over the sandbags board.,woman takes someone's gun across the road and climbs back to the door.,gets to his feet.,0\n2933,lsmdc3042_KARATE_KID-20374,12102,Master someone shifts on his feet as he watches grimly. The big screen,Master someone shifts on his feet as he watches grimly.,The big screen,gold,shows a point awarded to someone.,shows someone hunched over the head civilian.,shows four more minutes - their size.,moves as he pauses for the second look.,0\n2934,lsmdc3042_KARATE_KID-20374,12086,\"In the stands, someone cranes her neck for a view of her son. He\",\"In the stands, someone cranes her neck for a view of her son.\",He,gold,spreads a piece of asparagus as it descends towards the rippling surface.,pulls away and shakes her head.,spots her with a card through her shoulder.,hobbles toward the rival teacher with a mocking limp.,3\n2935,lsmdc3042_KARATE_KID-20374,12118,\"Someone stares, wide - eyed, as his master releases his grip. He\",\"Someone stares, wide - eyed, as his master releases his grip.\",He,gold,leaps back onto the platform.,\"stares at easter, his eyes are closed.\",speeds down the street.,drops for a few seconds.,0\n2936,lsmdc3042_KARATE_KID-20374,12107,Someone cheers wildly and someone grins. The big screen,Someone cheers wildly and someone grins.,The big screen,gold,shows no sign of him.,\"shows a point awarded to someone, tying the score at 1 to 1.\",rushes up as the flame flares.,covers the entire logo as the dean arranges the sheet on the floor.,1\n2937,lsmdc3042_KARATE_KID-20374,12076,\"His pupil gazes into his eyes, then gravely looks away. Gazing up, someone\",\"His pupil gazes into his eyes, then gravely looks away.\",\"Gazing up, someone\",gold,takes a deep breath.,\"shifts his gaze to the pilot, who sits up and starts over the four - mounted lake.\",leans into a wall where someone's face is covered from curls.,shifts his amused gaze.,0\n2938,lsmdc3042_KARATE_KID-20374,12108,\"The big screen shows a point awarded to someone, tying the score at 1 to 1. Someone\",\"The big screen shows a point awarded to someone, tying the score at 1 to 1.\",Someone,gold,\"stands, his face shining with sweat.\",moves for each of the dogs and seats.,climbs onto his back.,pulls a short crane now.,0\n2939,lsmdc3042_KARATE_KID-20374,12168,Someone respectfully returns the bow. Someone,Someone respectfully returns the bow.,Someone,gold,undoes the pirate belt.,shifts his gaze to the stunning brunette.,'s snowflakes swirl up.,heads off with his teacher.,3\n2940,lsmdc3042_KARATE_KID-20374,12087,He hobbles toward the rival teacher with a mocking limp. Someone,He hobbles toward the rival teacher with a mocking limp.,Someone,gold,observes him with a stony expression.,knocks two swinging wooden limbs as someone plates away.,lays the coin down at his father's head.,remains alone with her.,0\n2941,lsmdc3042_KARATE_KID-20374,12106,Someone drops to his knees and spins. He,Someone drops to his knees and spins.,He,gold,slides across the mat to his opponent.,sees someone dangling upside down.,\"flings it down before the falcon, then over and around someone.\",lands a few feet ahead.,0\n2942,lsmdc3042_KARATE_KID-20374,12132,The score display shows a point being awarded to someone. Master someone,The score display shows a point being awarded to someone.,Master someone,gold,looks to someone with a satisfied smirk.,\"leaps to someone's lap, but someone holds him tight.\",watches someone lift a machine overhead.,peers over a railing into the ship.,0\n2943,lsmdc3042_KARATE_KID-20374,12083,\"Returning to the center of the mat, he raises the microphone. Spectators\",\"Returning to the center of the mat, he raises the microphone.\",Spectators,gold,spring to their feet.,are waiting to enter the stadium.,sits up and stands at the end of the line.,\"watches someone smiling, watching him go.\",0\n2944,lsmdc3042_KARATE_KID-20374,12100,\"The two boys swing fiercely at one another, each blocking the other with precision. Someone\",\"The two boys swing fiercely at one another, each blocking the other with precision.\",Someone,gold,catches someone's arm and forces him back with a powerful blow.,turns the pinata and goes around the bars.,\"leaps around the young men, throws his fists into the air and tosses him back to the mat.\",grabs her by the wrist.,0\n2945,lsmdc3042_KARATE_KID-20374,12090,\"As he steps away, someone shifts his troubled gaze. Someone\",\"As he steps away, someone shifts his troubled gaze.\",Someone,gold,stares out from an atop gate.,waits at the edge of the platform as someone steps near.,minutes someone looks up at a ceiling filled with leggy couple.,nuzzles the boy's forehead.,1\n2946,lsmdc3042_KARATE_KID-20374,12154,\"The official lifts a blue flag high. Snapping out of his meditative focus, the boy\",The official lifts a blue flag high.,\"Snapping out of his meditative focus, the boy\",gold,shifts his confused gaze.,kicks someone's knees in the groin.,flies over his rotors.,\"pretends to take a pulse web of twist on his nose, his blocks drops from his grasp.\",0\n2947,lsmdc3042_KARATE_KID-20374,12131,As Master someone looks to the big screen. The score display,As Master someone looks to the big screen.,The score display,gold,shows a near - 9.,reads as someone sheepishly approaches someone who holds a pen.,shows a point being awarded to someone.,appears in the locker.,2\n2948,lsmdc3042_KARATE_KID-20374,12143,\"Spectators joyfully wave their flags in support. His brow furrowed, someone\",Spectators joyfully wave their flags in support.,\"His brow furrowed, someone\",gold,walks along his way into a dark room.,furrows his brow in anticipation.,faces someone with glistening eyes.,\"sits on a waiting bench, gazing back at someone who stares ahead through a window.\",2\n2949,lsmdc3042_KARATE_KID-20374,12165,\"Someone and someone arrive at the platform. Grinning, the boy\",Someone and someone arrive at the platform.,\"Grinning, the boy\",gold,uses a piece guide along the parker's mouth and attempts to push it aside.,is on a stage in a gray silver doll with a blue belt straight over a wound.,sets the trophy before his mother.,pats the other guy suit another.,2\n2950,lsmdc3042_KARATE_KID-20374,12144,\"His brow furrowed, someone faces someone with glistening eyes. As someone\",\"His brow furrowed, someone faces someone with glistening eyes.\",As someone,gold,\"reading more photos, someone stares at him floating regretfully.\",watches with a knitted brow.,\"steps away, a smile sweeps down his faces.\",reaches into his pocket.,1\n2951,lsmdc3042_KARATE_KID-20374,12089,\"Someone grins in his face and claps. As he steps away, someone\",Someone grins in his face and claps.,\"As he steps away, someone\",gold,casually sniffs the air.,shifts his troubled gaze.,springs to his feet.,smiles on the bed.,1\n2952,lsmdc3042_KARATE_KID-20374,12137,\"On the sidelines, his corrupt teacher maintains a cool smirk. Someone\",\"On the sidelines, his corrupt teacher maintains a cool smirk.\",Someone,gold,enters the camp village league.,watches his friend with a hostile smirk.,eyes the chamber then fires a bullet at the nose.,\"pushes himself up on his uninjured knee, then buckles.\",3\n2953,lsmdc3042_KARATE_KID-20374,12123,\"Raising his hands, someone tensely licks his lips and blinks the sweat out of his eyes. Someone\",\"Raising his hands, someone tensely licks his lips and blinks the sweat out of his eyes.\",Someone,gold,'s red lips disintegrate into a smile.,\"rises slowly towards his portrait, then spreads a powder into his own.\",holds up a newspaper.,takes a deep breath.,3\n2954,lsmdc3042_KARATE_KID-20374,12094,The rival teachers move to vantage points nearby. Someone,The rival teachers move to vantage points nearby.,Someone,gold,fires a huge lightning turn over the docks.,bounces on his feet.,pops the neck of her mouth and points her fingers into the air.,stands and lies motionless on the floor.,1\n2955,lsmdc3042_KARATE_KID-20374,12093,Someone gives someone a supportive nod. And the boy,Someone gives someone a supportive nod.,And the boy,gold,turns his attention to the son.,brings change to reveal a yoga audience.,breaks away from a sloping quadrangle.,climbs the platform steps.,3\n2956,lsmdc3042_KARATE_KID-20374,12136,\"Someone looks up at someone. On the sidelines, his corrupt teacher\",Someone looks up at someone.,\"On the sidelines, his corrupt teacher\",gold,snaps the american flag.,is rapt as she is dragged by the instructor.,pulls someone out of the van with his oriental partner.,maintains a cool smirk.,3\n2957,lsmdc3042_KARATE_KID-20374,12134,\"A hand to her brow, someone briefly averts her anguished gaze. The injured boy\",\"A hand to her brow, someone briefly averts her anguished gaze.\",The injured boy,gold,shifts his emotional gaze as someone fits the paste on a worktop.,joins her and follows her through a hallway.,picks it up and punches someone's chest.,pushes himself up on his elbows.,3\n2958,lsmdc3042_KARATE_KID-20374,12161,\"Someone's face and name appear alone on the display, surrounded by Chinese text. As the announcer\",\"Someone's face and name appear alone on the display, surrounded by Chinese text.\",As the announcer,gold,\"continues, prevent others record actors.\",link one of the bikers is clearly hypnotized by an inner sun.,approaches with the trophy.,\"peers disapprovingly at a paper buckle on one hand, someone looks blank.\",2\n2959,lsmdc3042_KARATE_KID-20374,12126,\"Someone looks to his teacher, who gestures with a cold tilt of his head. The boy\",\"Someone looks to his teacher, who gestures with a cold tilt of his head.\",The boy,gold,directs the boy over the crowd.,delivers a swift kick to the leg.,plays a song on the piano.,\"laughs, kicks and misses his head from the ground.\",1\n2960,lsmdc3042_KARATE_KID-20374,12103,\"The bully faces his opponent with a remorseless scowl. Holding his gaze, someone\",The bully faces his opponent with a remorseless scowl.,\"Holding his gaze, someone\",gold,watches with a cbs smile.,exhales through pursed lips.,bows her head and points on his lower lip.,lets the harder stay on.,1\n2961,lsmdc3042_KARATE_KID-20374,12129,\"He presses his painfully grimacing face to the mat, clutching his thigh. The official\",\"He presses his painfully grimacing face to the mat, clutching his thigh.\",The official,gold,ticks it through a million minutes to see someone.,plays a scratch - o - matic and stops in a doorway.,wets the forklift then turns and watches the battle.,extends a red flag.,3\n2962,lsmdc3042_KARATE_KID-20374,12169,Someone heads off with his teacher. They,Someone heads off with his teacher.,They,gold,'re in a stall in the shadows.,\"bump their fists, flaring their fingers as they part.\",float over a city.,walks out of her apartment and grabs her phone.,1\n2963,lsmdc3042_KARATE_KID-20374,12077,\"Gazing up, someone takes a deep breath. He\",\"Gazing up, someone takes a deep breath.\",He,gold,takes out someone's wallet.,\"stretches out his hand, sticky on his head.\",puts it on his head.,licks his lips and faces his teacher.,3\n2964,lsmdc3042_KARATE_KID-20374,12135,Master someone watches with a heartsick gape. Someone,Master someone watches with a heartsick gape.,Someone,gold,is sitting at the bar.,'s gaze gallops on the street entrance walking center.,looks up at someone.,places her axe on someone's head.,2\n2965,lsmdc3042_KARATE_KID-20374,12125,The American expertly blocks his swinging fists and feet. Someone,The American expertly blocks his swinging fists and feet.,Someone,gold,\"looks to his teacher, who gestures with a cold tilt of his head.\",\"heads for the car, catching a baby on someone's dining table.\",runs down a long stairway with his hand on the cart.,heads for his sword in front of the hogwarts army.,0\n2966,lsmdc3042_KARATE_KID-20374,12133,\"The official speaks to someone. A hand to her brow, someone briefly\",The official speaks to someone.,\"A hand to her brow, someone briefly\",gold,\"looks again into someone's face as he turns to see someone in a restroom, and someone steps into his car.\",shoots her twice onto the shoulder.,takes her cell off her ring.,averts her anguished gaze.,3\n2967,lsmdc3042_KARATE_KID-20374,12109,\"Someone stands, his face shining with sweat. Someone\",\"Someone stands, his face shining with sweat.\",Someone,gold,walks a little passed down through the tall gardener and a dog.,stands and aims his large sword.,takes up his pirate blaster.,bounces fearlessly on his feet.,3\n2968,lsmdc3042_KARATE_KID-20374,12145,\"As someone watches with a knitted brow. Raising his injured knee to his chest, he\",As someone watches with a knitted brow.,\"Raising his injured knee to his chest, he\",gold,takes the bloody nose and hurries into the hall and pushes a lever down along a railing.,\"lifts both hands before him, palms upturned.\",sneers apologetically to the couple then extends his hand and plucks a patch of tape from his ear.,reaches for a surfboard's slides.,1\n2969,lsmdc3042_KARATE_KID-20374,12080,\"Someone gives an understanding nod. Now, he\",Someone gives an understanding nod.,\"Now, he\",gold,\"leads an elegant young exotic woman in shorts, hanging a robe through a dusty air, and marches downstairs.\",\"listens for a moment, then directs it to a doorway, the impression of some people exiting the floor.\",lifts a match to a cotton ball held in a long pair of tweezers.,gazes down the window as he spots back at someone's as he enters.,2\n2970,lsmdc3042_KARATE_KID-20374,12162,\"With a nod, the man hands it over to the defeated boy. Someone\",\"With a nod, the man hands it over to the defeated boy.\",Someone,gold,gives him a hug.,shakes his head slightly.,carries it to his opponent.,finds them with his hands resting on the arm of his chair.,2\n2971,anetv_DW7Zm9DzEDk,10697,The man then leaps into the air and jumps into a sand pit. People,The man then leaps into the air and jumps into a sand pit.,People,gold,pushes the other into the air continuously.,watch his jump on the side.,get stuck in the air and celebrate with one another.,is seen spraying the bull with a hose.,1\n2972,anetv_DW7Zm9DzEDk,10696,A man is seen running down a long track in slow motion. The man then,A man is seen running down a long track in slow motion.,The man then,gold,begins moving all around the field and ends by jumping over the pole.,leaps into the air and jumps into a sand pit.,spins around several times and ends by jumping in steps.,begins performing several tricks with his foot quickly and ends with him doing tricks.,1\n2973,anetv_DW7Zm9DzEDk,15685,There's an athlete in blue athletic wear performing long jump in a stadium with the judges seated next to the sand pit. The athlete,There's an athlete in blue athletic wear performing long jump in a stadium with the judges seated next to the sand pit.,The athlete,gold,swings and springs up on the pole as he sits down on it and dances in a split field.,comes running and then leaps straight into the sand pit.,poses and claps and perform while the man moves him backwards throwing a high victory again.,spins in celebration of the upcoming football drills followed by a gasp from the pole before a green park bench.,1\n2974,anetv_DW7Zm9DzEDk,15686,He jumps up high in the air and take a long leap covering almost three fourths of the sand pit distance and lands on his feet. He then,He jumps up high in the air and take a long leap covering almost three fourths of the sand pit distance and lands on his feet.,He then,gold,begins to do a long tricks on the back with the rope with his hand.,\"gets up, turns around and walks away as some other players watch him.\",dismounts from the rope and lands on the grass.,lassos as he prepare to throw their legs.,1\n2975,lsmdc1015_27_Dresses-79680,1396,\"Next day, the sisters arrive at Hell's hardware store. Someone\",\"Next day, the sisters arrive at Hell's hardware store.\",Someone,gold,jumps from his seat.,\"holds someone's baby as he smiles happily for his bride, who backed away from the house.\",lets the door close on someone.,finds herself toting a rifle.,2\n2976,anetv_sxQ9H3c5bRM,7985,The drawing logo goes purple and zooms in and out. Women,The drawing logo goes purple and zooms in and out.,Women,gold,see the flower title screen.,are standing on a pier watching her front the sidelines.,are shown doing aerobic dancing workout.,are pointing to spiders on here.,2\n2977,anetv_sxQ9H3c5bRM,4882,We see a lady leading an aerobics class. The class,We see a lady leading an aerobics class.,The class,gold,gets on the step and other step dismount.,stands over the step and dances.,stops and talks to the camera of class.,\"flip over the brush bar, then spins how she stands.\",1\n2978,anetv_sxQ9H3c5bRM,7984,The intro has drawings of bodybuilders and the words Gimnasio Coloso. The drawing logo,The intro has drawings of bodybuilders and the words Gimnasio Coloso.,The drawing logo,gold,shows up on skiing and showing competitions.,is showing the male servant.,goes purple and zooms in and out.,shows people waving to a gymnast in an electronic gymnastics class.,2\n2979,anetv_sxQ9H3c5bRM,4885,We see the teacher posing on a punching bag. We then,We see the teacher posing on a punching bag.,We then,gold,see an ending title screen.,see the videos of the teacher with the two guards.,see a man operating water - weight.,see people on a skateboard in a gymnasium.,0\n2980,anetv_sxQ9H3c5bRM,4883,The class stands over the step and dances. The class,The class stands over the step and dances.,The class,gold,moves up and down one of the groups.,returns to do their routine and watches in unison.,finishes with their bodies through wide arched licks.,finishes and grows their arms in the air.,3\n2981,anetv_sxQ9H3c5bRM,4881,We see an opening title screen. We,We see an opening title screen.,We,gold,see a lady perform a pas of pummel in stairs.,\"see up letters into a attache case, a man is sitting inside an old wooden desk.\",see a lady leading an aerobics class.,see a man and a man on a ski fall performing jump asian tricks.,2\n2982,anetv_sxQ9H3c5bRM,4884,The class finishes and grows their arms in the air. We,The class finishes and grows their arms in the air.,We,gold,see the teacher posing on a punching bag.,and the third woman do clapping.,start to dance on stage.,see the woman backstage stage.,0\n2983,lsmdc1058_The_Damned_united-98497,12107,\"Someone smiles bitterly as someone points past him, towards the empty stadium at the end of the tunnel. Alone, someone\",\"Someone smiles bitterly as someone points past him, towards the empty stadium at the end of the tunnel.\",\"Alone, someone\",gold,waits through the hall surrounded by staff.,\"takes the hot iron from his mouth and storms off, leaving someone alone with his iv pole in his hand.\",stifles a faint smile.,\"turns slowly and makes his way up towards the pitch, gazing at the empty stands.\",3\n2984,anetv__-4ngMPCA9A,10540,A woman stands in a kitchen talking. She,A woman stands in a kitchen talking.,She,gold,\"walks over to a sink, puts on gloves and washes dishes.\",are standing on the counter watching them.,shows their cooking ingredients.,begins washing the dishes in the kitchen.,0\n2985,anetv_pHiulmPx7ek,16567,Several clips are shown of people running around chasing a ball. The girls,Several clips are shown of people running around chasing a ball.,The girls,gold,laugh and eventually make a celebrate and celebrate with each other.,hit the ball back and fourth while still walking back and fourth.,continue kicking after dishes and throwing them into the water.,continue to play with one another while the camera pauses frequently to capture their movements.,3\n2986,anetv_pHiulmPx7ek,8650,The girl in the white headband is highlighted during several games hitting and defending goals with a spot light and slowed replay. The girl in the white headband,The girl in the white headband is highlighted during several games hitting and defending goals with a spot light and slowed replay.,The girl in the white headband,gold,spins for the second.,performs a pit very quickly.,\"pierced the first three times, then the girl started to until the team wins.\",is captured walking off field in slowed motion wearing a red jersey with the number 9 on the back of it.,3\n2987,anetv_pHiulmPx7ek,8649,The girl in the white headband hits a goal with an instant replay. The girl in the white headband,The girl in the white headband hits a goal with an instant replay.,The girl in the white headband,gold,is highlighted during several games hitting and defending goals with a spot light and slowed replay.,takes off her blindfold.,walks out of the gym.,becomes a replay and is congratulated by the same cheerleaders in tree sweater and setting.,0\n2988,anetv_pHiulmPx7ek,8648,\"Two teams of girls play field hockey in several different games, in several different locations, with a spotlight on one particular player in a white headband. The girl in the white headband\",\"Two teams of girls play field hockey in several different games, in several different locations, with a spotlight on one particular player in a white headband.\",The girl in the white headband,gold,is playing with repeated roll as the second player slashes the ball back and forth with the number.,returns to the room with a stick.,hits a goal with an instant replay.,shows players shots after she hits balls into the goal.,2\n2989,anetv_pHiulmPx7ek,16566,A large group of girls are seen playing a game of field hockey down a field. Several clips,A large group of girls are seen playing a game of field hockey down a field.,Several clips,gold,are shown of people running around chasing a ball.,are shown of people throwing a ball around while holing a ball.,of air hockey are shown and one player slipping off a puck.,\"are shown of people playing, one scoring the ball and other volleyball players.\",0\n2990,anetv_5Eb_NVjFah0,16405,We then watch an older boy and a boy bowl in a bowling alley. A small boy in an orange shirt,We then watch an older boy and a boy bowl in a bowling alley.,A small boy in an orange shirt,gold,is laughing in front of a pinata.,rolls the ball down the aisle.,is running along the yard with his other people.,makes bowling balls high on a net.,1\n2991,anetv_5Eb_NVjFah0,16407,We watch an older boy in a green shirt roll the ball 5 times and get 4 strikes. We,We watch an older boy in a green shirt roll the ball 5 times and get 4 strikes.,We,gold,the girl swim.,watch his clock as he sleeps on the bed.,see a title screen and a slow motion of one of the shots of the older boy.,see ladies watching the boy in yellow make a sand and look at the camera.,2\n2992,anetv_5Eb_NVjFah0,16406,A small boy in an orange shirt rolls the ball down the aisle. We,A small boy in an orange shirt rolls the ball down the aisle.,We,gold,see the opening screen with white text.,large boy appears here being 3 and there - throws stones into his face.,see a young woman in a blue shirt and black shirt holding the camera in front of him.,watch an older boy in a green shirt roll the ball 5 times and get 4 strikes.,3\n2993,anetv_I-vi5EpjrFI,11470,Text is shown across the screen leading into two women speaking to one another. One,Text is shown across the screen leading into two women speaking to one another.,One,gold,takes a sip of mouth wash and spits it into the sink.,person puts shaving cream on his face.,are shown up the camera and important have a picture shown in the video.,they are shown using gloves out of the bottle and ironing as well as describing how they do their hair.,0\n2994,anetv_I-vi5EpjrFI,11471,One takes a sip of mouth wash and spits it into the sink. She,One takes a sip of mouth wash and spits it into the sink.,She,gold,gets out with the beer and walks over to someone who just misses her drink.,\"goes quickly, dropping the bottle down to the drain.\",continues washing dishes in the sink and staying in the sink.,hands the container back to the woman who turns to speak to the camera.,3\n2995,anetv_wKThOOUV6lY,9328,A large gathering of people are outside in a mud pit. The two groups,A large gathering of people are outside in a mud pit.,The two groups,gold,are playing a game of tug of war.,sit around each other.,perform the same hurling while an older man attempts to hit the pinata.,run off and run back.,0\n2996,anetv_wKThOOUV6lY,14970,A group of people are standing in the mud. They,A group of people are standing in the mud.,They,gold,are engaging in a game of tug of war.,are in front of the crowd.,are laying with them on their backs.,are all climbing up the mountain.,0\n2997,anetv_wKThOOUV6lY,9329,The two groups are playing a game of tug of war. They,The two groups are playing a game of tug of war.,They,gold,pulls onto a large gymnasium and several referees stand attached.,are playing a cricket game.,pull and tug the rope in opposing directions.,come to a halt and continue starts doing their things.,2\n2998,anetv_wKThOOUV6lY,14971,They are engaging in a game of tug of war. They,They are engaging in a game of tug of war.,They,gold,\"pull on the rope, trying to make their enemies fall.\",are getting introductions and the people are already able to take then flip into slow motion.,make a hand shoot the ball onto the ground.,ride the bystanders on their way down.,0\n2999,anetv_pOyP_kDaskY,16435,A man in a suit reads off of a paper. A woman then,A man in a suit reads off of a paper.,A woman then,gold,begins to report a news story.,shows off a putty paper ball.,flips her hair around and shows out the boring focus.,shows the tattoo with tools and instructions.,0\n3000,anetv_pOyP_kDaskY,16437,A young boy plays the harmonica on the street. He,A young boy plays the harmonica on the street.,He,gold,stands on a dock telling his story.,talks to the camera.,walks over to the microphone and plays the bongos.,does sit ups with another guitar.,0\n3001,anetv_pOyP_kDaskY,16436,A woman then begins to report a news story. A young boy,A woman then begins to report a news story.,A young boy,gold,plays the harmonica on the street.,is shooting with the young man.,practices rock climbing with a pole.,uses a small brush from a blow dryer and lawn.,0\n3002,anetv_wsmMniNThlI,10877,As they are riding they pass a set of glass igloos planted on the estate. They,As they are riding they pass a set of glass igloos planted on the estate.,They,gold,pointed down seen with a small dog side by rapidly covering the contents.,\"mud gardens along the slopes in the forest, consultation the fence and pulling to the railroad entrance.\",reach a clearing where there is open land and several trees.,\"adds drink, as they ride close from other cars.\",2\n3003,anetv_vzxT-k8dsVs,18154,Man is unning wearing stilts in a skaet park. another man,Man is unning wearing stilts in a skaet park.,another man,gold,is jumping along with the first man in the skate park.,is interviewed in the picture to the man.,enters a car wearing red stilts and is hanging on a taxi by a set of snow where several people are shown.,stands in top of a building jumping with the young man throw off the boot.,0\n3004,anetv_vzxT-k8dsVs,18155,Another man is jumping along with the first man in the skate park. man in skate park,Another man is jumping along with the first man in the skate park.,man in skate park,gold,is running while a car is passing in the street.,is jumping on blades and stands doing abs.,is exercising in circles walking in the grass.,is taking pictures of the video.,0\n3005,anetv_eChLCFAGyx0,14820,The video shows close ups of several of the symphony members as they play their instruments. The camera then,The video shows close ups of several of the symphony members as they play their instruments.,The camera then,gold,pans around the microphone getting into a band playing together.,zooms in on the kids.,pans to a man playing a keyboard as he plays.,pans out to show the audience.,3\n3006,anetv_eChLCFAGyx0,14821,The camera then pans out to show the audience. The symphony,The camera then pans out to show the audience.,The symphony,gold,continues to play as the conductor leads.,are interviewed by more water.,moves up to show more hands.,vivian enjoys a cream.,0\n3007,anetv_eChLCFAGyx0,14822,The symphony continues to play as the conductor leads. The video,The symphony continues to play as the conductor leads.,The video,gold,ends with the address in the far history.,ends showing the entire symphony.,ends with the terminal flipping in.,ends with several peoples hits to several people and the winner.,1\n3008,anetv_eChLCFAGyx0,14819,The video takes place in a theater showing a symphony play a song. The video,The video takes place in a theater showing a symphony play a song.,The video,gold,plays with the children attempt to change a clip from a newspaper with a small group of women standing nearby.,cuts to pick up boxing.,shows close ups of several of the symphony members as they play their instruments.,fades with a triumphant silence.,2\n3009,anetv_qRFZMO_mTGU,15832,A girl is shown playing field hockey and presents various clips of herself doing moves. She later,A girl is shown playing field hockey and presents various clips of herself doing moves.,She later,gold,shows various clips using horses to different girls as the people cheer to them in the end.,\"runs down the field, waving her arms around the field as she move.\",is talking to the camera about her experiences with the sport and who exactly she is and why other people love her.,dives forward several times on the beach.,2\n3010,anetv_qRFZMO_mTGU,15831,A woman walks forward talking to the camera and putting her hands on her hips. A girl,A woman walks forward talking to the camera and putting her hands on her hips.,A girl,gold,plays the flute knitting while holding up flips.,is shown playing field hockey and presents various clips of herself doing moves.,uses a pillow on a video of her wipe down in front of a laptop.,is upside down in her sleek apartment.,1\n3011,lsmdc1028_No_Reservations-83385,19301,She tastes it with her little finger. Someone,She tastes it with her little finger.,Someone,gold,'s light up the door.,looks when she sees a fat guy.,puts a hand to the back of someone's neck and kisses her passionately.,writes a letter after her.,2\n3012,lsmdc1028_No_Reservations-83385,19306,\"A joyful someone leaves the trio to their breakfasts and passes back around the corner of the restaurant, acknowledging an elderly man who considers a leaflet. Each side of the triangle\",\"A joyful someone leaves the trio to their breakfasts and passes back around the corner of the restaurant, acknowledging an elderly man who considers a leaflet.\",Each side of the triangle,gold,scans the area as if they were on a white stool smoking.,lies in one drawn large vehicle which leads over a bucket and snowy ground.,contains a name written in white.,is set over a circular television which is filled with a dropper.,2\n3013,lsmdc1028_No_Reservations-83385,19305,She carries the plate to one of several busy al fresco tables. She,She carries the plate to one of several busy al fresco tables.,She,gold,\"delivers the pancakes to someone, who is with his twin boys.\",puts off single lamp.,takes a squirming bite at the cupcake.,takes someone's cloth and rummages through a cramped black registration box.,0\n3014,lsmdc1028_No_Reservations-83385,19307,\"Each side of the triangle contains a name written in white. Now, back inside the restaurant, someone\",Each side of the triangle contains a name written in white.,\"Now, back inside the restaurant, someone\",gold,\"runs playfully across the track with a sheepish shrug, then approaches his side, carrying a bag of stuffed mice.\",\"sits in the bath, textured bloody vapor.\",stands up at the window and turns the triangle so that someone's name runs across the top.,glowers and writes the name philadelphia's number before the ominous suit hanging on its door by several advertising.,2\n3015,lsmdc1028_No_Reservations-83385,19302,Someone puts a hand to the back of someone's neck and kisses her passionately. She,Someone puts a hand to the back of someone's neck and kisses her passionately.,She,gold,stalks out to motorbikes.,covers her spot with her thumb.,throws her arms around him and pulls him to her.,flash through the haze and he caress her belt.,2\n3016,lsmdc1028_No_Reservations-83385,19303,\"Beyond the couple is a small, homely and packed restaurant. Someone\",\"Beyond the couple is a small, homely and packed restaurant.\",Someone,gold,watches a young woman walk with a newspaper unsure someone's approach.,\"kneels apart, admiring his mother.\",continues to follow him.,runs up to the kitchen counter.,3\n3017,anetv_TlDh_RZ3HDk,1257,The woman in green curl the other woman's hair and then braide the side. The woman,The woman in green curl the other woman's hair and then braide the side.,The woman,gold,removes the white throw towel and the man smiles.,walks over to the wall and talks to the camera for the video.,cut the hair and put all the hair of a client's bushy hair.,styled the girl's hair into an updo.,3\n3018,anetv_TlDh_RZ3HDk,10817,A girl with long hair is seen looking off into the distance from a mirror and a woman using a curling iron on the hair. The woman then,A girl with long hair is seen looking off into the distance from a mirror and a woman using a curling iron on the hair.,The woman then,gold,continues playing the instrument and ending by looking to the camera.,braids the hair and pins half of the hair up into a bun.,walks onto a board wrapped around her and begins drying her hair while speaking to the camera behind her.,moves her black hair over her face and speaks in the camera and then examines them on the mirror.,1\n3019,anetv_TlDh_RZ3HDk,10818,The woman then braids the hair and pins half of the hair up into a bun. She,The woman then braids the hair and pins half of the hair up into a bun.,She,gold,then pulls out with another her products to a better hand.,then stops counting on sandals.,\"sprays some hairspray and pins the rest of the hair up, showing a finished result in a 360 manner.\",\"throws her arms under the briefly, and then applies footage to the background.\",2\n3020,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60043,6043,Someone leaps to his feet and pushes his way towards the bar. Someone,Someone leaps to his feet and pushes his way towards the bar.,Someone,gold,looks around as the elevator opens.,\"grabs someone's sleeve, spilling his beer.\",\"comes up the stairs, jumping and looks up at the ceiling above.\",magically burst into flames.,1\n3021,anetv_FXb8rBMvol4,19021,People are snowboarding down a hill. A man,People are snowboarding down a hill.,A man,gold,is lying down on a slope next to the hill.,talks to the camera.,is riding down a snowy hill.,gets on the top of a hill going alongside the snow.,1\n3022,anetv_FXb8rBMvol4,19018,A man straps his snowboard on. Several people,A man straps his snowboard on.,Several people,gold,are skiing down a slope.,ski down a ski slope.,are tubing down a hill.,are snowboarding down a hill.,3\n3023,anetv_FXb8rBMvol4,19017,People are coming off of a van holding snowboards. A man,People are coming off of a van holding snowboards.,A man,gold,straps his snowboard on.,jumps into a swimming pool.,is driving two cars down a hill.,plays a pet in a lake.,0\n3024,anetv_FXb8rBMvol4,19023,Several people do tricks on their snowboards. A man,Several people do tricks on their snowboards.,A man,gold,\"is seen walking, talking to the camera behind her.\",rides a bike across a field.,talks to the camera again.,steps in the water with a scraper.,2\n3025,anetv_FXb8rBMvol4,19022,A man talks to the camera. Several people,A man talks to the camera.,Several people,gold,do tricks on their snowboards.,are shown riding sandy boats in the forest.,show the side screen.,wrap dancing in a room.,0\n3026,anetv_FXb8rBMvol4,19025,Several more people are snowboarding and talking. A man with a beard,Several more people are snowboarding and talking.,A man with a beard,gold,shows whistling.,is getting his leg shaved.,talks to the camera.,is skateboarding in a trail of dust.,2\n3027,anetv_FXb8rBMvol4,19020,A woman holds a child up to kiss a man. People,A woman holds a child up to kiss a man.,People,gold,are snowboarding down a hill.,\"coughs to his chest, then spins to her horse while the boy helps the teen slide the clothes.\",come to pull them up.,got up while cars are gathered on the street.,0\n3028,anetv_FXb8rBMvol4,19026,A man with a beard talks to the camera. A man,A man with a beard talks to the camera.,A man,gold,shaves a red car in the forest.,shaves the man's leg.,walks over and wipes off the surface.,takes off his snowboard.,3\n3029,lsmdc0028_The_Crying_Game-63719,5099,He takes her hand away. She,He takes her hand away.,She,gold,pulls out her sleeping form.,looks at him hard.,dismounts with her arms.,closes her eyes as she tightens his wrists.,1\n3030,lsmdc0028_The_Crying_Game-63719,5098,\"She lies down on the bed beside him, takes off a black leather glove, and puts her hand on his crotch. He\",\"She lies down on the bed beside him, takes off a black leather glove, and puts her hand on his crotch.\",He,gold,takes her hand away.,watches the sleeping baby in his late twenties.,goes back to scrubbing the sofa.,gets out of bed.,0\n3031,anetv_Is0_Qv6NLm0,6154,The men talk with a homeless youth sitting outside a store. The group all,The men talk with a homeless youth sitting outside a store.,The group all,gold,walks together down a street.,talk and demonstrate funny ingredients to make tips across the floor.,appear now and one of the men talks to the camera with a logo of lips.,throw up their hands to the camera.,0\n3032,anetv_Is0_Qv6NLm0,6152,Two young guys stand together and hold up money. The young guys,Two young guys stand together and hold up money.,The young guys,gold,kick the ball to each other.,stand up to watch.,talk to a homeless man and shake his hand.,throw the ball off into the flask and trade baskets.,2\n3033,anetv_Is0_Qv6NLm0,6153,The young guys talk to a homeless man and shake his hand. The men,The young guys talk to a homeless man and shake his hand.,The men,gold,talk with a homeless youth sitting outside a store.,change their positions and continue cooking.,shake hands and sat with another man.,then both use the tile and plenty of people to play.,0\n3034,anetv_Is0_Qv6NLm0,6156,The men hold an arm wrestling contest standing on an outside patio. The man wins and both contestants,The men hold an arm wrestling contest standing on an outside patio.,The man wins and both contestants,gold,begin fighting and fencing.,watch the fighting men and the girls.,are given prize money.,join in an arm wrestling match.,2\n3035,anetv_Is0_Qv6NLm0,6155,The group all walks together down a street. The men,The group all walks together down a street.,The men,gold,skate around as they each slide down the middle.,continue dancing as they watch at each other.,hold an arm wrestling contest standing on an outside patio.,continue to close up and start driving their cars.,2\n3036,lsmdc1038_The_Great_Gatsby-87521,16007,Extravagantly dressed guests go wild at one of someone's parties. They,Extravagantly dressed guests go wild at one of someone's parties.,They,gold,\"rush out to someone, who conjures a smile.\",\"drink, dance and splash about in the ornamental pool.\",walk towards a large open garage door.,rush out to join them.,1\n3037,anetv_W4aPcuQSxFI,12048,A close up of a sink is shown followed by a person turning on a faucet and grabbing the camera. She,A close up of a sink is shown followed by a person turning on a faucet and grabbing the camera.,She,gold,faces a table and sprays down a rag followed by pushing the rag along the floor.,continues washing the faucet while looking to the camera and getting into his shoes.,laughs as the camera zooms in on them and continues to wash their clothes.,lays up the toothbrush and starts wiping it off.,0\n3038,anetv_W4aPcuQSxFI,12049,She faces a table and sprays down a rag followed by pushing the rag along the floor. The woman,She faces a table and sprays down a rag followed by pushing the rag along the floor.,The woman,gold,continues cleaning the floor and walks back to the camera.,continues adding black paint onto the towels until another liquid gets washed.,is laid back on the table with a woman in front of her on the sides.,continues speaking as the other woman speaks to the camera.,0\n3039,anetv_tTIsHfF0UgA,4145,Man is holding a pole with an ice cream and giving it to a little child. people,Man is holding a pole with an ice cream and giving it to a little child.,people,gold,are walking in a small field next to a bike.,are walking into the back of a room.,\"are sitting at the table, laughing.\",are standing and walking behind the boy in a amusement park.,3\n3040,anetv_1VBg21aaiKM,6802,\"A man talks, after cuts the beard with scissors. Then, the man\",\"A man talks, after cuts the beard with scissors.\",\"Then, the man\",gold,talks and then cuts the beard with a machine.,begin measuring the damaged own then brush wood.,fixes paint on the woman by the hair.,cut the knife and the cut and knife.,0\n3041,anetv_1VBg21aaiKM,6803,\"Then, the man talks and then cuts the beard with a machine. Again, the man\",\"Then, the man talks and then cuts the beard with a machine.\",\"Again, the man\",gold,uses the hammer to measure the room.,talks and then cut the beard of the man with scissors.,speaks with the machine while holding the back of his head.,\"does a front flip, then starts to shave the man's leg.\",1\n3042,anetv_1VBg21aaiKM,12180,\"The man continues explaining and showing hot to cut the beard. At the end, the man\",The man continues explaining and showing hot to cut the beard.,\"At the end, the man\",gold,\"shows off his greasy model, then returns to cutting the plates.\",cuts the mustache with a machine.,is demonstrating how to label the paint gadget using a hand thrower.,cuts the wall with the clipper and then signs again.,1\n3043,anetv_1VBg21aaiKM,12179,\"A man talks, and then cuts the beard of a person with scissors. The man\",\"A man talks, and then cuts the beard of a person with scissors.\",The man,gold,removes the metal and holds the knife all.,continues explaining and showing hot to cut the beard.,demonstrates how to straighten the hair and put on the ski.,shows the paper and another person wearing pair of brushes.,1\n3044,lsmdc1020_Crazy_Stupid_Love-81722,4231,The audience all turn to him. Someone,The audience all turn to him.,Someone,gold,\"makes his way down the seating structure, squeezing past someone.\",\"picks up stairs from the wrestling hut, who, waiting, uses his microphone to go behind a stand dividing the fence.\",smiles and raises their hands in disgust.,and someone wave their hands in surrender together.,0\n3045,anetv_JhqQGe0TkBU,14521,Suddenly a girl runs on a lower dining board and jumps in the swimming pool. People,Suddenly a girl runs on a lower dining board and jumps in the swimming pool.,People,gold,slides out another ice green spread.,sit around the pool.,play and darts and darts.,then jump into a swimming pool in front of the pool.,1\n3046,anetv_JhqQGe0TkBU,14520,\"People stands on top of a diving board, the a man jumps in the swimming pool. Suddenly a girl\",\"People stands on top of a diving board, the a man jumps in the swimming pool.\",Suddenly a girl,gold,runs on a lower dining board and jumps in the swimming pool.,competitor colors with equestrian fish plays below her face.,grabs the drumsticks and begins to dive in an air with so much effort as pretending.,\"is in smoking pool, holding a contact bottle of water.\",0\n3047,anetv_Qm6HmQv5uOo,404,A man sings a song with someone plays an accordion in a restaurant. The man playing accordion,A man sings a song with someone plays an accordion in a restaurant.,The man playing accordion,gold,jumps from a beam moving his body.,breaks his instrument in half.,and a woman play title accordion in the field.,speaks and interviews then vault and sings.,1\n3048,anetv_Qm6HmQv5uOo,405,The man playing accordion breaks his instrument in half. The people,The man playing accordion breaks his instrument in half.,The people,gold,continue singing while drumming out until switch sides.,play solo with the man and start playing the instrument in front of the camera.,are startled but continue on singing the song.,watch the man adjust the mouthpiece.,2\n3049,anetv_ILwwD00q1ZY,1648,A person in a furniture store is talking about popular furniture made from reclaimed wood. He,A person in a furniture store is talking about popular furniture made from reclaimed wood.,He,gold,is about efforts and is talking in front of a man who is running in the ground.,\"picks up a chain, checks its squares, and returns to one of the girls reacting in acetone somebody knocking the man out of\",\"shows rustic, contemporary and traditional type of furniture that is in his store.\",\"goes across and mounts more of the bars, then rubs his hands.\",2\n3050,anetv_qdE6dbQOnt0,3681,A boy is standing in a bathroom squirting cleanser on his hand and washing his face. Once his face is lathered completely he,A boy is standing in a bathroom squirting cleanser on his hand and washing his face.,Once his face is lathered completely he,gold,is sitting on an ice cream covered dresser and where two paint are on the court observing his beard while explaining.,puts water and spreads onto the shiny surface of the water surface.,seems to notice his movements.,grabs hands full of water and rinses his face off until all of the soap is off.,3\n3051,anetv_qdE6dbQOnt0,9645,First the boy pumps something onto his hand from a bottle and he rubs it on his face. Then he washes it off using the water from the bathroom faucet and he,First the boy pumps something onto his hand from a bottle and he rubs it on his face.,Then he washes it off using the water from the bathroom faucet and he,gold,looks in the mirror to know how much of it is gone.,measures the tub to clean it.,oil and messes with it.,begins talking the commentary about what he was doing and exercises on how to never play the new wallpaper.,0\n3052,anetv_lk2niPrG3y8,12658,There's a woman in a yellow tank top and black tights doing jump rope in a gym. She,There's a woman in a yellow tank top and black tights doing jump rope in a gym.,She,gold,is in a workout gym using a young baton and putting down her foot.,jumps in a rhythmic manner without stopping on the hardwood floor surface.,\"picks up a rubik's cube and flips backwards into her balance, then in her gym jumping.\",gets the belt on her leg and different sections of the back of her braid.,1\n3053,anetv_lk2niPrG3y8,12659,\"She jumps in a rhythmic manner without stopping on the hardwood floor surface. After she's done, a person standing in front of her\",She jumps in a rhythmic manner without stopping on the hardwood floor surface.,\"After she's done, a person standing in front of her\",gold,begins playing on the violin as she continues on.,gives her a thumbs up and cheers for her.,\"dances on the street and gives her the music she is showing, she does some way to be playful.\",moving her legs using the bars and ends by jumping off the carpet with the mat.,1\n3054,anetv_wt0XC2EEh7Y,17832,\"A woman talks next a horse holding a brush. Then, the woman\",A woman talks next a horse holding a brush.,\"Then, the woman\",gold,add pasta to the brush and then segments the left combs.,walks with several brushes and tries along the floor.,uses a brush to jump off the horse.,brush the neck and the front legs of the horse.,3\n3055,anetv_wt0XC2EEh7Y,17833,\"Then, the woman brush the neck and the front legs of the horse. After, the woman\",\"Then, the woman brush the neck and the front legs of the horse.\",\"After, the woman\",gold,continue brushing the horse.,inspects on the bow and put his foot in the saddle.,sails off the horse and lays back on the horse.,brush the body and the back legs of the horse.,3\n3056,anetv_wt0XC2EEh7Y,17834,\"After, the woman brush the body and the back legs of the horse. When, she finish to brush the horse, she\",\"After, the woman brush the body and the back legs of the horse.\",\"When, she finish to brush the horse, she\",gold,finishes the horse and starts brushing the horse.,put it back on the horses.,\"turns on the horse individually, then the horse.\",stands and talks pointing the horse.,3\n3057,lsmdc0020_Raising_Arizona-57292,8595,\"The two men are trotting out to a Mercury that sits untended at a gas island, a gas hose on automatic stuck in its tank. As someone starts up the car someone\",\"The two men are trotting out to a Mercury that sits untended at a gas island, a gas hose on automatic stuck in its tank.\",As someone starts up the car someone,gold,yanks the hose out and drops it to the ground.,gets to his feet and rummages through some unusual paper to the gentle - brown ground.,backs from the giant statue.,draws out under the driver's tubman and lurches the the driver.,0\n3058,lsmdc0020_Raising_Arizona-57292,8600,As someone turns back to the bedroom. As someone,As someone turns back to the bedroom.,As someone,gold,\"is wiping right hand on her face, she looks happy with the gun on his father.\",enters and shuts the door.,peers through his binoculars.,\"goes to the stairs, his clock resumes ticking.\",1\n3059,lsmdc0020_Raising_Arizona-57292,8598,\"Someone sits asleep on the sofa at the far end of the room, in a pool of lamp light. By the time we tighten on his face the knocking\",\"Someone sits asleep on the sofa at the far end of the room, in a pool of lamp light.\",By the time we tighten on his face the knocking,gold,are too softly as they sleep.,hit an open grill.,has become quite loud.,is harshly tucked under a magnifying glass.,2\n3060,lsmdc0020_Raising_Arizona-57292,8602,\"Someone smiles politely, then squints at someone. Someone\",\"Someone smiles politely, then squints at someone.\",Someone,gold,presses someone against a wall.,clamps his mouth and gazes solemnly.,has been talking to someone.,is admiring the baby.,3\n3061,lsmdc0020_Raising_Arizona-57292,8603,Someone is admiring the baby. People,Someone is admiring the baby.,People,gold,look at each other uncomfortably.,stand on the back of the beach.,\", someone with his gown gathered, opens the casket to the balcony terrace.\",\"shakes her head as he reads her a newfound stare, but she knows not to answer.\",0\n3062,lsmdc0020_Raising_Arizona-57292,8599,By the time we tighten on his face the knocking has become quite loud. He,By the time we tighten on his face the knocking has become quite loud.,He,gold,hits the door and floats out.,\"grins on his cheeks and folds the book, then picks up the phone and walks to a conference room.\",lowers his arm and gazes at the music.,\"looks up, alarmed.\",3\n3063,lsmdc0020_Raising_Arizona-57292,8601,As someone enters and shuts the door. She,As someone enters and shuts the door.,She,gold,glances at the bedroom then descends to an end.,\"listens on a phone, smiles at him and goes out of the cab.\",\"lifts his brow curiously and stares at the floor, then graciously at the steaming vent dangling over the ceiling.\",\"listens hard at the door: someone's footsteps cross the living room, the click of the door opening, silence.\",3\n3064,lsmdc0020_Raising_Arizona-57292,8596,As someone starts up the car someone yanks the hose out and drops it to the ground. Someone,As someone starts up the car someone yanks the hose out and drops it to the ground.,Someone,gold,'s eyes dart around the room.,\"takes a bleeding out on the ground, grabs his gun, and finds it empty.\",gets in the car by someone's car and picks up the gas charge.,is already starting to peel out as someone gets in.,3\n3065,lsmdc3035_INSIDE_MAN-2294,7513,Someone breaks into a wide grin. Someone,Someone breaks into a wide grin.,Someone,gold,reclines on the bed.,spanks himself as he flattens someone over the bar.,waves the gun at him.,falls off the boat.,0\n3066,lsmdc3035_INSIDE_MAN-2294,7511,\"Someone stares with a confused look, then faces his reflection in a vanity mirror. He\",\"Someone stares with a confused look, then faces his reflection in a vanity mirror.\",He,gold,glances up at the painting and spots him.,recalls bumping into someone at the bank.,looks around at the glass of the junkyard.,steps away from the dining area.,1\n3067,lsmdc3035_INSIDE_MAN-2294,7492,Someone shows off the diamond ring placed prominently on his middle finger. Someone,Someone shows off the diamond ring placed prominently on his middle finger.,Someone,gold,throws it up in his gut.,nods and unlatches the wheel.,gives the bank chairman a cold look.,\"listens to a number, still shooting at his eyes.\",2\n3068,lsmdc3035_INSIDE_MAN-2294,7504,\"Wearing sexy lingerie, someone's girlfriend sits up and kisses him passionately. Their hands\",\"Wearing sexy lingerie, someone's girlfriend sits up and kisses him passionately.\",Their hands,gold,folded over her head.,slide back and forth between their seats.,rove up and down each other's backs.,\"drop onto the rock, whose lips listen tight, one hand chasm 50 yards away.\",2\n3069,lsmdc3035_INSIDE_MAN-2294,7503,\"As he shuts the door, a pair of smooth feminine legs stretches out on the bed. Wearing sexy lingerie, someone's girlfriend\",\"As he shuts the door, a pair of smooth feminine legs stretches out on the bed.\",\"Wearing sexy lingerie, someone's girlfriend\",gold,watch the cops at the barricade.,sits down at the table.,notes calmly on a soft wooden window and furrows his brow.,sits up and kisses him passionately.,3\n3070,lsmdc3035_INSIDE_MAN-2294,7499,\"Now, a bare chested young man sleeps on a couch gripping a liquor bottle. A door\",\"Now, a bare chested young man sleeps on a couch gripping a liquor bottle.\",A door,gold,\"opens, spilling light into the room.\",remains open on his spot.,\"opens, revealing a waiter reading a book between them.\",\"opens, followed by a young woman.\",0\n3071,lsmdc3035_INSIDE_MAN-2294,7502,\"The detective enters his bedroom. As he shuts the door, a pair of smooth feminine legs\",The detective enters his bedroom.,\"As he shuts the door, a pair of smooth feminine legs\",gold,stretches out on the bed.,\"lies on his back,.\",lies down on top of him.,draw him out from behind a corner.,0\n3072,lsmdc3035_INSIDE_MAN-2294,7500,\"A door opens, spilling light into the room. A shadow\",\"A door opens, spilling light into the room.\",A shadow,gold,shows a figure in a brimmed hat.,sweeps from its window.,is seen lying against a wall nearby.,appears and zooms under the bed.,0\n3073,lsmdc3035_INSIDE_MAN-2294,7509,\"He sets his badge and pda on top. Reaching into his jacket pocket, he\",He sets his badge and pda on top.,\"Reaching into his jacket pocket, he\",gold,retrieves a cap from a bottle.,pours the contents out a bin.,\"feels around, then pauses.\",hands a line to three men in a blue tube.,2\n3074,lsmdc3035_INSIDE_MAN-2294,7495,Someone heads up a staircase wearing his Panama hat. He,Someone heads up a staircase wearing his Panama hat.,He,gold,\"finds the mayor, someone, and another man at a table.\",sees a man for tossing skyward hors d'oeuvres.,races down the front.,\"glances at her, who takes someone's briefcase and kisses someone's cheek.\",0\n3075,lsmdc3035_INSIDE_MAN-2294,7507,\"It reads Awarded to Keith someone, Detective First Grade. He\",\"It reads Awarded to Keith someone, Detective First Grade.\",He,gold,takes off his pistol.,displays a man's heart.,slips the british penny into his breast pocket.,\"goes forward to take sip, you are clean.\",0\n3076,lsmdc3035_INSIDE_MAN-2294,7512,He recalls bumping into someone at the bank. Someone,He recalls bumping into someone at the bank.,Someone,gold,starts beating furiously along the wall walkways.,looks out over the waves.,leans against someone's door with a lot of indifference.,breaks into a wide grin.,3\n3077,lsmdc3035_INSIDE_MAN-2294,7508,He takes off his pistol. He,He takes off his pistol.,He,gold,enters his radio office and gazes down the hallway hallway.,\"crosses the sidewalk to his car, shuts it, and turns back to someone.\",sets his badge and pda on top.,puts it on top of a sacks.,2\n3078,lsmdc3035_INSIDE_MAN-2294,7510,\"Pinching it in between his thumb and index finger, he turns it in the light. Someone\",\"Pinching it in between his thumb and index finger, he turns it in the light.\",Someone,gold,arrives on the fallen crane.,unwraps the page and gapes as he eyes his others.,\"stares with a confused look, then faces his reflection in a vanity mirror.\",regards the thick arc from the trembling quivering tool.,2\n3079,lsmdc3035_INSIDE_MAN-2294,7505,Their hands rove up and down each other's backs. She,Their hands rove up and down each other's backs.,She,gold,\"points her fingers like guns, puts on his hat, and strike a pose.\",smiles and smiles as she stands between the towering towers and rows.,gazes steadily at the holographic green diamond on someone's shoulder.,touching dries her head.,0\n3080,lsmdc3035_INSIDE_MAN-2294,7498,\"The mayor furrows his brow. Now, a bare chested young man\",The mayor furrows his brow.,\"Now, a bare chested young man\",gold,walks through wearing a hip hop haze.,sleeps on a couch gripping a liquor bottle.,with dark blonde hair strides his cap and waist.,sits on a bench with his legs stretched between his legs.,1\n3081,lsmdc3035_INSIDE_MAN-2294,7493,\"Someone gives the bank chairman a cold look. Later, the two detectives\",Someone gives the bank chairman a cold look.,\"Later, the two detectives\",gold,compete in a darkened station.,watch someone woozily stirs someone's round then sits up and he grabs a grapefruit.,strut down a sidewalk.,gaze off from their headsets.,2\n3082,lsmdc3035_INSIDE_MAN-2294,7497,He writes it on a business card. He,He writes it on a business card.,He,gold,gives a credit of a bottle she was rubbing.,holds out the pen recorder.,unwraps it and replaces it in his own ring.,\", then takes a photo of an old colleague.\",1\n3083,lsmdc3035_INSIDE_MAN-2294,7506,\"She points her fingers like guns, puts on his hat, and strike a pose. He\",\"She points her fingers like guns, puts on his hat, and strike a pose.\",He,gold,pretends to pin a bucket of mud.,holds up a human flag that prepares to strike.,passes someone as she heads up the stairs to her middle of the room.,puts a framed certificate on his dresser.,3\n3084,lsmdc3008_BAD_TEACHER-3936,10312,Someone peers at the breasts. She,Someone peers at the breasts.,She,gold,fondles them with an appraising frown.,resembles a silver crescent shaped ring.,pads across her painted wrist!,points at one of the tossing items then smacks it.,0\n3085,anetv_LLFhSU-XuTI,1126,The camera pans to capture both of them together. The camera,The camera pans to capture both of them together.,The camera,gold,pans around a group of people running around the yard with one watch.,then zooms in on a hardwood drum block.,starts to be brushed.,pans back to focus on the second man.,3\n3086,anetv_LLFhSU-XuTI,1128,The second man stops mixing and tastes what he was mixing. The second man,The second man stops mixing and tastes what he was mixing.,The second man,gold,swirls his drink in order to get drinks.,is shown flipping and throwing the object.,returns where the man came the is used again.,offers the first man a taste of the mixture.,3\n3087,anetv_LLFhSU-XuTI,1127,The camera pans back to focus on the second man. The second man,The camera pans back to focus on the second man.,The second man,gold,appears on the top of the ladder.,\"takes another stance, then lowers his head and looks at the image without breaking his stride.\",stops mixing and tastes what he was mixing.,lowers the lens in his hand.,2\n3088,lsmdc1029_Pride_And_Prejudice_Disk_One-83766,10344,Someone leaps up from her chair and scurries to the piano. People,Someone leaps up from her chair and scurries to the piano.,People,gold,sing o. s.: someone arrives.,glimpse the key movement.,look mortified at someone's clumsy playing.,are pulling on a huge pavement with a pair of feet off the back.,2\n3089,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16429,Someone shoves someone out of a window. Sir someone,Someone shoves someone out of a window.,Sir someone,gold,\"runs down the street, its gun drawn.\",leaps from the ship.,catches him down the throat.,throws the bludger down at the fire.,1\n3090,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16430,Someone and someone fall onto crates. Sir someone,Someone and someone fall onto crates.,Sir someone,gold,takes another gun back then glowers at someone.,goes through a crowd with other men.,surfaces then swims to a piece of floating mast.,dives into a pit and slides into a vehicle.,2\n3091,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16431,\"Sir someone surfaces then swims to a piece of floating mast. Deep in water, Red someone\",Sir someone surfaces then swims to a piece of floating mast.,\"Deep in water, Red someone\",gold,dives out of the space pool.,\"runs out through the trees, and disappears into someone's coat.\",stands on the burning sinking ship.,flicks his body off and flies backwards.,2\n3092,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16433,\"He holds open his hat, which fills up with the falling treasure. The boat's unicorn statue\",\"He holds open his hat, which fills up with the falling treasure.\",The boat's unicorn statue,gold,is the last thing to slip beneath the waves.,is tied towards the assembled.,stands up.,\"remains on, now half the ship.\",0\n3093,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16432,\"Kneeling on the mast, someone gazes up as gold and jewels shower down around him. He\",\"Kneeling on the mast, someone gazes up as gold and jewels shower down around him.\",He,gold,\"holds open his hat, which fills up with the falling treasure.\",and treasure walk through his neighborhood as skiers stands on the horizon.,\"paces forward, his hands resting on a small metal billboard wrapped in a gran s pin.\",\"nods, his face reflected in the darkness.\",0\n3094,anetv_auxBRPzLiIo,12859,Three girls are riding stationary bikes. A man,Three girls are riding stationary bikes.,A man,gold,is dribbling a pair of inline skates.,is standing behind a bar.,is standing in front of them holding a camera.,is riding a ladder.,2\n3095,anetv_auxBRPzLiIo,12860,A man is standing in front of them holding a camera. Another man,A man is standing in front of them holding a camera.,Another man,gold,puts a drink into a water in front of them.,is riding around his bike in the foreground.,walks in front of them.,takes off a shot to dive.,2\n3096,anetv_8fZbv6OUEm8,3695,\"The young boy kicked the ball, the goalkeeper pushed the ball away. The ball is kicked and the goalkeeper\",\"The young boy kicked the ball, the goalkeeper pushed the ball away.\",The ball is kicked and the goalkeeper,gold,speaks to the camera.,used his feet to blocked the ball.,has the ball down.,was trying to chase him back to the end.,1\n3097,anetv_8fZbv6OUEm8,12115,A man dives for the ball and falls into the sand. The ball,A man dives for the ball and falls into the sand.,The ball,gold,hits the ball towards the net.,is thrown back to the field.,gets stuck and the credits of the video are shown.,is shown on the sand.,3\n3098,anetv_8fZbv6OUEm8,12114,People are playing with a ball in the sand on the beach. A man,People are playing with a ball in the sand on the beach.,A man,gold,is standing in front of the stadium watching the game.,dives for the ball and falls into the sand.,throws a ball and runs his finger over it as he goes.,\"plays beach on a playground, making a crowd of his boys do in his competition behind him.\",1\n3099,anetv_8fZbv6OUEm8,3694,\"A foot kicked the ball, and the goalkeeper blocked the ball. The young boy kicked the ball, the goalkeeper\",\"A foot kicked the ball, and the goalkeeper blocked the ball.\",\"The young boy kicked the ball, the goalkeeper\",gold,went making a goal.,pushed the ball away.,walked away from the girl.,is able to get it all into the goal.,1\n3100,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4370,\"Later, the ambulance speeds back followed by cars. Someone runs to the tree - lined road and an suv\",\"Later, the ambulance speeds back followed by cars.\",Someone runs to the tree - lined road and an suv,gold,slows to a stop.,pulls up behind her.,follows through a wide gap.,pulls up into its tracks.,0\n3101,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4375,He sets his glass and a dish in the sink. He,He sets his glass and a dish in the sink.,He,gold,steps out of the room and eats a bite.,puts a hand on someone's breast.,sets it up and takes it.,pours someone a glass of scotch.,3\n3102,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4372,\"Later, in the cottage someone reads Bible verses on his laptop. He\",\"Later, in the cottage someone reads Bible verses on his laptop.\",He,gold,removes his spectacles and takes a seat beside someone nearby.,\"swivels a pan, studying someone leaning against a mirror.\",sets down a drink.,has taken a large envelope with digicam and wrapping it around the back.,2\n3103,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4373,He sets down a drink. Someone,He sets down a drink.,Someone,gold,nods as he shows off the contract.,closes the page of bible verses on his laptop.,crosses the room a little.,cocks a glass of red wine.,1\n3104,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4371,Someone runs to the tree - lined road and an suv slows to a stop. He,Someone runs to the tree - lined road and an suv slows to a stop.,He,gold,speaks to someone through the passenger window.,follows on a road outside.,is brain is trailing along the quad along the trail.,\"trots up behind someone, as someone shoos someone out.\",0\n3105,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4369,\"Someone exits the phone booth and heads for the bridge. Later, the ambulance\",Someone exits the phone booth and heads for the bridge.,\"Later, the ambulance\",gold,looks up at them.,speeds back followed by cars.,stops at a stack of clip - blocking spattering.,pulls up between the realize parking lot.,1\n3106,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4374,Someone closes the page of Bible verses on his laptop. He,Someone closes the page of Bible verses on his laptop.,He,gold,raises the box and tenses.,takes his electric reclining hand and pushes it down.,sets his glass and a dish in the sink.,\"statements her against his shoulder, who stops to look scruffy.\",2\n3107,lsmdc0029_The_Graduate-64065,1939,Someone rushes into the sunroom and sits down. Someone,Someone rushes into the sunroom and sits down.,Someone,gold,steps into the hallway and finds someone passing the lobby.,hands someone the stack of notes in the locker room.,\"jumps up, gets the glass he had been drinking from and sits down again.\",goes to the room.,2\n3108,lsmdc0029_The_Graduate-64065,1938,\"Someone leaps at the door, pushes someone aside, struggles with the door, gets the door open, runs into the hall and down the stairs. Someone\",\"Someone leaps at the door, pushes someone aside, struggles with the door, gets the door open, runs into the hall and down the stairs.\",Someone,gold,\"turns to someone, who's playing helplessly.\",\"reads someone's numbers, goes to the studio and applauds.\",rushes into the sunroom and sits down.,leans through the curtain with two eyes still closed.,2\n3109,lsmdc0029_The_Graduate-64065,1940,Someone reaches for someone's glass. Someone,Someone reaches for someone's glass.,Someone,gold,\"stands back into his window, knocking furniture off the couch.\",takes the glass from him.,opens her eyes and pulls.,\"leans toward someone, his daughter separating, and ventures forward.\",1\n3110,lsmdc0029_The_Graduate-64065,1941,Someone takes the glass from him. Someone,Someone takes the glass from him.,Someone,gold,turns his back to someone to mix the drinks.,\"smiles, acutely tearful.\",aims it at someone.,grabs an ice cream mug.,0\n3111,anetv_0h45uztur-o,1237,They wrap curling ribbon around the box and tie it into a bow. The,They wrap curling ribbon around the box and tie it into a bow.,The,gold,use the scissors to curl the ends of the bow.,are watching a game of water.,presents the baton to the host.,picks it up and they circle each of them.,0\n3112,anetv_0h45uztur-o,1233,They are cutting the paper. They,They are cutting the paper.,They,gold,put a tape on the tape.,see a man painting.,continue wrapping the present.,are moving around the cutting.,2\n3113,anetv_0h45uztur-o,1238,The use the scissors to curl the ends of the bow. They,The use the scissors to curl the ends of the bow.,They,gold,stick a silver flower into the present.,prepare to hug.,put a show and a video perspective to talk about the task again.,see the closing screen.,0\n3114,anetv_0h45uztur-o,1230,A person is rolling out wrapping paper and using a ruler to hold it down. A box,A person is rolling out wrapping paper and using a ruler to hold it down.,A box,gold,is concealed for a woman's coffee.,flies through the paper and begins to wrap around it.,is then blended areas printed on the paper.,is set on top of the wrapping paper.,3\n3115,anetv_0h45uztur-o,1231,A box is set on top of the wrapping paper. The person,A box is set on top of the wrapping paper.,The person,gold,takes the wrapped paper on the top and begins wrapping it.,begins wrapping the present.,resumes carving out french painting.,demonstrates how to paint the nails of a knife.,1\n3116,anetv_0h45uztur-o,1236,They fold tissue paper to wrap around the middle of the box. They,They fold tissue paper to wrap around the middle of the box.,They,gold,'ve done the model process.,sucked them into one hand.,wrap curling ribbon around the box and tie it into a bow.,fold the paper on the wall.,2\n3117,anetv_0h45uztur-o,1234,They continue wrapping the present. They,They continue wrapping the present.,They,gold,puts a spatula to the side of a tree.,use tape to hold the paper on.,walk onto the table and begin pushing the balls across the field.,dance together on an evenly demeanor and begin finished wrapping.,1\n3118,anetv_0h45uztur-o,1232,The person begins wrapping the present. They,The person begins wrapping the present.,They,gold,are cutting the paper.,pushes them into the oven.,jam the salad on a brown tray.,put the paper coat on the floor just inside.,0\n3119,anetv_0h45uztur-o,1235,They use tape to hold the paper on. They,They use tape to hold the paper on.,They,gold,vomit and hit a ball.,are playing some paintball cars.,paint the fence with a stick.,fold tissue paper to wrap around the middle of the box.,3\n3120,anetv_6Lh3yNFvskc,16648,\"A player holding a basketball dribbles the ball, run and jump to throw the ball in the basket several times. A man\",\"A player holding a basketball dribbles the ball, run and jump to throw the ball in the basket several times.\",A man,gold,throw a basketball in the court and then leave.,jumps over the net when the ball goes in and out of the goal.,falls down on a field in pool in another room.,leaps over a mattress and lands on a yellow mat.,0\n3121,lsmdc3015_CHARLIE_ST_CLOUD-908,1871,\"Now, in the glade, someone, on a baseball, he tosses the ball to someone. Someone\",\"Now, in the glade, someone, on a baseball, he tosses the ball to someone.\",Someone,gold,nudges his wife in the leg with her hands to her baby.,throws back to someone.,sets the bag down and plays the game of tv.,stands staring at photographs.,1\n3122,lsmdc3015_CHARLIE_ST_CLOUD-908,1872,Someone throws back to someone. Someone,Someone throws back to someone.,Someone,gold,intentionally backpacks on the street.,fakes a hard throw.,smiles across at someone nervously.,recalls a performer with someone.,1\n3123,anetv_EGrXaq213Oc,16810,The young snowboarders show off their talent as they go down the slopes. One of the students,The young snowboarders show off their talent as they go down the slopes.,One of the students,gold,loses his composure and switches off the cameraman ahead of him.,sees his father aim at someone with a mounting rifle.,blocks the way and jumps on tight stilts.,shows the medal that he has won in a snowboarding competition.,3\n3124,anetv_EGrXaq213Oc,16805,The young snowboarder continues to go down the mountain slope steadily. An instructor from the snowboarding school,The young snowboarder continues to go down the mountain slope steadily.,An instructor from the snowboarding school,gold,dives off of intertubes long ash on the hill.,appears on the screen.,is helping some young children get up after falling down.,helps an athlete from high angles to the rollerblading and captions.,2\n3125,anetv_EGrXaq213Oc,16808,One of the students does impressive stunts and moves while snowboarding. The instructors,One of the students does impressive stunts and moves while snowboarding.,The instructors,gold,stands up on the bars.,perform tricks on the kite power rope.,jump with the girl slowly.,continue to teach their students.,3\n3126,anetv_EGrXaq213Oc,16802,A woman dressed in a green winter coat and white woolen hat is talking about the snowboarding school. There,A woman dressed in a green winter coat and white woolen hat is talking about the snowboarding school.,There,gold,motorbikes are standing ready to move and are holding various videos that are cut to them that include a montage of spectators.,\"is standing in the middle of the room, holding a paintball in his hand and people watching on.\",\"is talking and beginning to haircut up, which the white recruit is doing.\",'s a small boy snowboarding down the slope.,3\n3127,anetv_EGrXaq213Oc,16804,There are some adults helping small children get ready with their snowboarding equipment and gear. The young snowboarder,There are some adults helping small children get ready with their snowboarding equipment and gear.,The young snowboarder,gold,is waxing the tubes on the tubes.,continues to go down the mountain slope steadily.,is now on the barn occurring shows several people gathered in the park looking up on the hills.,are attempting to build a structure but going really fast.,1\n3128,anetv_EGrXaq213Oc,2383,Another small child is shown snowboarding. then several children,Another small child is shown snowboarding.,then several children,gold,ride the beach put with their belongings.,compete facing the swimming split.,are rhythmically pedaling over their heads.,are shown being taught how to snow board.,3\n3129,anetv_EGrXaq213Oc,16807,The instructors are helping and teaching the young students to begin snowboarding and teaching them various steps. One of the students,The instructors are helping and teaching the young students to begin snowboarding and teaching them various steps.,One of the students,gold,continues in the beam.,\"gets them out, moves onto a mat and sits between two girls.\",does impressive stunts and moves while snowboarding.,speaks again and rubs part of the mat when they finished.,2\n3130,anetv_EGrXaq213Oc,16801,The small children are going on snowboarding lifts to begin their lessons. A woman dressed in a green winter coat and white woolen hat,The small children are going on snowboarding lifts to begin their lessons.,A woman dressed in a green winter coat and white woolen hat,gold,comes up and hands the speckled a slash.,leans onto the skateboards.,is talking about the snowboarding school.,walks through the gardens to greet the two fugitives.,2\n3131,anetv_EGrXaq213Oc,16803,There's a small boy snowboarding down the slope. There,There's a small boy snowboarding down the slope.,There,gold,fishes race from his board.,teams snowboard out as he crawls through the sun.,are shown in the ocean.,are some adults helping small children get ready with their snowboarding equipment and gear.,3\n3132,anetv_EGrXaq213Oc,16800,There are many young children in a snowboarding school. The small children,There are many young children in a snowboarding school.,The small children,gold,\"are on clothes for him, working out on the dirt.\",are going on snowboarding lifts to begin their lessons.,are going on ramps in competitions.,are in the swing on the street from the big house.,1\n3133,anetv_EGrXaq213Oc,2382,A small child is snowboarding down a slope. a woman,A small child is snowboarding down a slope.,a woman,gold,is standing on a swingset.,talks to the camera.,is kneeling down in the snow.,hops over a slope on the snow.,1\n3134,anetv_EGrXaq213Oc,16809,The instructors continue to teach their students. The young snowboarders,The instructors continue to teach their students.,The young snowboarders,gold,\"comes and starts midget her height, a jump from her bun and crossing side to side.\",grabs the hat off one hand and the three men grab the bottom of the biker by using his crutches.,walk by with the blue outfit still holding their arms.,show off their talent as they go down the slopes.,3\n3135,anetv_EGrXaq213Oc,16806,An instructor from the snowboarding school is helping some young children get up after falling down. The instructors,An instructor from the snowboarding school is helping some young children get up after falling down.,The instructors,gold,are helping and teaching the young students to begin snowboarding and teaching them various steps.,continues rollerblading and delicately landing in each workout at the same time.,continue working on their horses.,seem to perform on a ski camera.,0\n3136,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1576,\"Headlights flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him. Someone\",\"Headlights flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him.\",Someone,gold,\"glances over at someone, making himself look around the room.\",raises his horn and grabs objects above the high door.,throws someone's robe over the bush and gets into the car.,slowly gropes through the sheet.,2\n3137,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1575,Someone thrashes around in the bushes. Headlights,Someone thrashes around in the bushes.,Headlights,gold,\"flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him.\",hurtle from the cafe wall.,go into an here at the end.,swoops down on its red - green legs.,0\n3138,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1579,The Chairman of the Board is someone. Before each of the directors there,The Chairman of the Board is someone.,Before each of the directors there,gold,are individual reports for them to study.,is a real estate with a frightened face on it.,is an system of pearls someone has.,is a dark - haired young man behind him.,0\n3139,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1580,Before each of the directors there are individual reports for them to study. They,Before each of the directors there are individual reports for them to study.,They,gold,\"have folders and papers before them, on which they have been reporting.\",are on a pumpkin as well as a cat walking and rolling its eyes.,stand just watching seated.,talk directly about the storage being.,0\n3140,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1578,\"They are the substantial citizens of Bedford Falls: someone, a lawyer, an insurance agent, a real estate salesman, etc. People\",\"They are the substantial citizens of Bedford Falls: someone, a lawyer, an insurance agent, a real estate salesman, etc.\",People,gold,are sitting next to someone very bored.,are seated among the directors.,come up to the furry cat.,\"sit there, being faced.\",1\n3141,lsmdc0014_Ist_das_Leben_nicht_schoen-54509,1577,\"Someone throws someone's robe over the bush and gets into the car. As the car drives off, someone, now wearing the robe,\",Someone throws someone's robe over the bush and gets into the car.,\"As the car drives off, someone, now wearing the robe,\",gold,comes over to get the envelope taken by the old siblings.,walks underneath the remaining mansion.,walks through the hood of the car.,rises up from the bush and follows the car with her eyes.,3\n3142,lsmdc3026_FRIENDS_WITH_BENEFITS-1596,15017,\"An Asian male model spreads his arms as the other man holds him horizontally. That night, someone\",An Asian male model spreads his arms as the other man holds him horizontally.,\"That night, someone\",gold,\"walks into his kitchen, throws down his bag and turns on the lights.\",lays a stone on a banker's red grill.,lies on the street with her arms around his waist.,passes a cigarette and slaps him on.,0\n3143,lsmdc3026_FRIENDS_WITH_BENEFITS-1596,15018,\"That night, someone walks into his kitchen, throws down his bag and turns on the lights. He\",\"That night, someone walks into his kitchen, throws down his bag and turns on the lights.\",He,gold,pauses deeply before walking into a restaurant.,\"takes a few paces closer to someone, who leans up to his ear.\",gets a beer from his windowed refrigerator.,helps someone to pull himself out of the game.,2\n3144,lsmdc3026_FRIENDS_WITH_BENEFITS-1596,15019,\"He gets a beer from his windowed refrigerator. As he goes to open it, he\",He gets a beer from his windowed refrigerator.,\"As he goes to open it, he\",gold,watches as the authorities descend a path near the wheel of the limo.,is carrying two bottles of ham and a bottle of vodka.,takes a swig of his biscuits has been being caught by a waitress then dumps out a plate.,notices the note he received with the gift basket of sheets.,3\n3145,lsmdc3026_FRIENDS_WITH_BENEFITS-1596,15016,Someone directs a Caucasian male model. An Asian male model,Someone directs a Caucasian male model.,An Asian male model,gold,watches from a second bar.,falls off his perch.,arrives and glares at him from a horizontal rack.,spreads his arms as the other man holds him horizontally.,3\n3146,anetv_FrvK75jGdjE,4361,The girl pauses briefly then begins playing again. The girl,The girl pauses briefly then begins playing again.,The girl,gold,lowers her violin and wand at the end of the performance.,moves away and goes back down the slide.,joins the other girls and laughs to the camera.,walks away from the barre.,0\n3147,anetv_FrvK75jGdjE,4359,A child plays a violin on stage during a solo performance. A man,A child plays a violin on stage during a solo performance.,A man,gold,presses the cymbals down into music.,walks away from her dancing.,watches with interest from the side of the stage.,jumps up on the podium.,2\n3148,anetv_FrvK75jGdjE,4360,A man watches with interest from the side of the stage. The girl,A man watches with interest from the side of the stage.,The girl,gold,begins to dance while she first sings.,starts dancing and dancing on stage.,pauses briefly then begins playing again.,demonstrates how to properly play - butts while the man plays the violin.,2\n3149,anetv_wONwHYy59Tc,17010,\"She explains the process of how to manage such beautiful hair on her own, using the blow dryer to show. She\",\"She explains the process of how to manage such beautiful hair on her own, using the blow dryer to show.\",She,gold,then begins removing the string and bow.,continues to talk ever so gracefully on and on about the hair products.,\"bangs his polish screen, lifts them as she walks into the water to wave dries her hair, bends each hairspray, pulls the\",look at out of different colors of different technique and then tells her her process before she slowly springs over to talk to her repeatedly,1\n3150,anetv_wONwHYy59Tc,7021,\"A woman with long curly hair speaks to the camera, she has a large red hairdryer with an attachment. She\",\"A woman with long curly hair speaks to the camera, she has a large red hairdryer with an attachment.\",She,gold,examines the parts of the dryer and shows off hair product.,is shown up to the camera.,puts a tissue in her nose.,puts supplies to her phone.,0\n3151,anetv_wONwHYy59Tc,7022,She examines the parts of the dryer and shows off hair product. She,She examines the parts of the dryer and shows off hair product.,She,gold,braids her hair and braids it over her flaxen hair.,lowers the comb and shows how to style the hair of the dog.,dries her hand again and applies it to a hair.,uses it to dry her hair followed by a comb and shake.,3\n3152,anetv_wONwHYy59Tc,17008,A beautiful girl with stunning black curls is sitting down talking by herself. She pulls up a hair dryer and she,A beautiful girl with stunning black curls is sitting down talking by herself.,She pulls up a hair dryer and she,gold,proceeds to speak to another woman standing with her arm wrapped around the waist; she is up with her foamy blue robe.,\"begins to talk about it, then picking up a bottle of shampoo and lotion.\",looks pretty pretty happy and begins to calm it disapprovingly and starts to talk to herself.,begins trimming the label on her hair and now by the side of the braid.,1\n3153,anetv_wONwHYy59Tc,17009,\"She pulls up a hair dryer and she begins to talk about it, then picking up a bottle of shampoo and lotion. She\",\"She pulls up a hair dryer and she begins to talk about it, then picking up a bottle of shampoo and lotion.\",She,gold,\"explains the process of how to manage such beautiful hair on her own, using the blow dryer to show.\",\"turns to in her hair into a larger razor and demonstrates from any planks or very across the water and sectioned just backwards, and\",leaves the salon and continues drying her hair and presenting it to the camera.,gets up and walks away from the front bar.,0\n3154,anetv_QElXIVBV-gk,7839,A lady chef wearing a stripe blouse talks in a kitchen. The lady chef,A lady chef wearing a stripe blouse talks in a kitchen.,The lady chef,gold,rubs two marks on the center of the room.,describes the ingredients needed and the preparation for the creamy seafood pasta.,is helping a bowl of pasta baking.,is making the salad with little brushes.,1\n3155,anetv_QElXIVBV-gk,7840,The lady chef describes the ingredients needed and the preparation for the creamy seafood pasta. The lady chef,The lady chef describes the ingredients needed and the preparation for the creamy seafood pasta.,The lady chef,gold,tests the already flight ingredients before stirring a bar and putting the cream on it.,shows a step by step process for preparing the creamy seafood pasta dish and shows the final product.,\"to add ingredients, butter, and start to pour the chocolate on the plates.\",is chopped and a type of food from one silver mug.,1\n3156,lsmdc1015_27_Dresses-79655,10351,\"At night, in one of thousands of taxis, someone reads someone's filofax. People\",\"At night, in one of thousands of taxis, someone reads someone's filofax.\",People,gold,ride into the car carriage.,\"are at someone's party in a busy, low lit club.\",continue to admire the guests.,and someone turns towards the crowd.,1\n3157,anetv_O8jThut7tAQ,15983,A person talks and throws a bowling ball on the bowling lane. The man,A person talks and throws a bowling ball on the bowling lane.,The man,gold,\"holds a ball and shows his left leg forward, then throws the bowling ball on the lane while talking.\",\"bounces the ball with the disc, then hits it to black and throws it into the air.\",put the ball into the ice and hit the ball back against the water.,throws a bowling ball down a lane in bowling lane.,0\n3158,lsmdc1018_Body_Of_Lies-80170,8620,\"The photos someone showed someone. On a vast expanse of brown earth, a suited man\",The photos someone showed someone.,\"On a vast expanse of brown earth, a suited man\",gold,and a younger man look on delegates.,\"sits on a piece of canvas in asgard, his body bent over a signed rock.\",\"stands beside a kneeling figure, whose head is covered with a black hood.\",carries a simmons paint gun on a platforms.,2\n3159,lsmdc1018_Body_Of_Lies-80170,8623,A cloud of dust hangs in the air. People and the rest of the men,A cloud of dust hangs in the air.,People and the rest of the men,gold,rush to the dock.,drinks and fill the flow.,\"ride in the lift, using and throwing breaking the space.\",get out of their cars.,3\n3160,lsmdc1018_Body_Of_Lies-80170,8624,People and the rest of the men get out of their cars. Someone gestures and someone,People and the rest of the men get out of their cars.,Someone gestures and someone,gold,walks through the crowd as they walk along the street.,opens the door for someone to get out.,hears him being flashing.,tightens his lips around her toned chest and signals her to dance.,1\n3161,lsmdc1018_Body_Of_Lies-80170,8622,The cars drive around the pair and stop. A cloud of dust,The cars drive around the pair and stop.,A cloud of dust,gold,rises growing out of it.,hangs in the air.,appears knocking them down.,is suspended over the diner.,1\n3162,lsmdc1018_Body_Of_Lies-80170,8621,\"On a vast expanse of brown earth, a suited man stands beside a kneeling figure, whose head is covered with a black hood. The cars\",\"On a vast expanse of brown earth, a suited man stands beside a kneeling figure, whose head is covered with a black hood.\",The cars,gold,huddle at the edge of the stone roof.,drive around the pair and stop.,clutch their breath rapidly at each of them.,are all beaten down to the road.,1\n3163,lsmdc1018_Body_Of_Lies-80170,8626,Someone watches someone walk up to the kneeling figure. Someone,Someone watches someone walk up to the kneeling figure.,Someone,gold,takes off the hood.,goes to door and opens the door.,lights a cigarette and wipes out.,tiptoes down the door to the turkish agent who is pulled with his oar.,0\n3164,lsmdc1018_Body_Of_Lies-80170,8627,Someone takes off the hood. He,Someone takes off the hood.,He,gold,pours a water vial into the water.,\"winces, then backhands him into a wall.\",puts his hand on his pant ribs.,dials a cell phone.,3\n3165,anetv_qZTAv1s_eBQ,3356,Man is running wearing stilts in a green grassy field. cars,Man is running wearing stilts in a green grassy field.,cars,gold,are parked on side of a street in the background.,are getting ready to throw and get ready to race.,throw all other flowers and on the streets.,start running on a track and down a forested path.,0\n3166,anetv_T69Cadlc62E,13218,\"A manager explains the players how to play Jai - Alai while a group of boys observe the training. Then, the players take turns to hit balls, and the manager\",A manager explains the players how to play Jai - Alai while a group of boys observe the training.,\"Then, the players take turns to hit balls, and the manager\",gold,comes after him and limps away.,talks to the camera in a corner.,shows to hit the ball.,speaks to remember how bad it is.,2\n3167,anetv_T69Cadlc62E,13219,\"Also, a Jai - Alai macot hit a ball using the Jai - Alai cesta. After, a players\",\"Also, a Jai - Alai macot hit a ball using the Jai - Alai cesta.\",\"After, a players\",gold,hit a ball and put pink balls in the net next to the board.,throw balls on front a goal.,changes the shape with an electric kite fire.,run after the kids as they run along a large town.,1\n3168,anetv_T69Cadlc62E,5894,People stand on the sidelines watching them. A person dressed up in a bunny costume,People stand on the sidelines watching them.,A person dressed up in a bunny costume,gold,talks in front of the camera.,poses for the camera.,stands next to them.,walks into frame then sees an orange man celebrating.,2\n3169,anetv_T69Cadlc62E,5893,People are hitting balls into a net with a stick. People,People are hitting balls into a net with a stick.,People,gold,stand on the sidelines watching them.,are playing lacrosse on a court.,are standing in middle of the audience watching them.,crash into each other and clap.,0\n3170,anetv_8K4cX9GfaII,12800,A person is seen painting a wall while the camera captures him moving quickly and others walking in and out of frame. The person,A person is seen painting a wall while the camera captures him moving quickly and others walking in and out of frame.,The person,gold,continues riding higher on the object as the camera pans around and begins moving back and fourth.,is then seen laying down a concrete while still looking into the distance.,still lights a match on a warehouse and continue to play with one.,continues painting along the wall with other people standing around and helping.,3\n3171,lsmdc3092_ZOOKEEPER-45149,4858,\"Exiting through a gate, he finds someone the Lion waiting for him. Feet and\",\"Exiting through a gate, he finds someone the Lion waiting for him.\",Feet and,gold,\"two citizens, people hurry off.\",bass men lie on the bed.,falls on his back.,feet pass behind hardened terrain.,2\n3172,anetv_KHxBqZmSaJU,18069,Man is in the beach doing tricks with a little kid and people in the studio is talking about the video. page of a cheerleaders is,Man is in the beach doing tricks with a little kid and people in the studio is talking about the video.,page of a cheerleaders is,gold,shown of the field throwing a ball in the air to the other.,doing tricks on the rope too doing tricks.,shown set until the roof break goes in.,shown in the screen and the video of the girl in the beach doing tricks.,3\n3173,anetv_KHxBqZmSaJU,18068,People is sitting on a studio talking to each other. man,People is sitting on a studio talking to each other.,man,gold,is practicing in circular bed.,is in the beach doing tricks with a little kid and people in the studio is talking about the video.,is playing a saxophone in front of a person talking.,is seated and talking and is playing drum set.,1\n3174,anetv_j3h8Di7V3nk,4165,A man is seen bending over while taking a shoe off to wipe his feet then puts the shoe back on. He,A man is seen bending over while taking a shoe off to wipe his feet then puts the shoe back on.,He,gold,then throws a shirt on leaving a basket next to her.,continues wiping all around the table while still looking at the camera.,does this to his other foot and then walks along the rocks while a man records him and others walk around.,continues playing with it and continues wiping his face and laying it over the snow and unable to speak to the camera.,2\n3175,lsmdc0041_The_Sixth_Sense-67727,11694,Someone's face softens a bit. He,Someone's face softens a bit.,He,gold,stares cheek - to - cheek.,\"shines off the back of his own shirt, and now has a very similar tattoo on them.\",takes someone's hand and grabs someone's arm.,turns from the windows and looks to someone.,3\n3176,lsmdc0009_Forrest_Gump-50677,12257,They blow horns and toss confetti into the air. Someone,They blow horns and toss confetti into the air.,Someone,gold,intercepts a police officer by a goblin.,installs a fallen tree in a clearing.,looks around as people lean over and kiss him.,sticks that until the stage returns.,2\n3177,anetv_okC18bPTils,1774,He's underwater along with a few other people where there's shells and rocks in the sand. There,He's underwater along with a few other people where there's shells and rocks in the sand.,There,gold,is also wooden logs and small lobsters crawling around.,are some in the water trying to stay and watch people and the view is stuck up in the kayaks.,are tips into a working bowl with two attached to it.,are walking around in a shop while other people are watching them play.,0\n3178,anetv_okC18bPTils,1773,The man is standing above water before he goes scuba diving. He,The man is standing above water before he goes scuba diving.,He,gold,is talking as he holds the edge of a rock board.,hits the ball on the board.,is swimming in a pool that is standing in the water.,'s underwater along with a few other people where there's shells and rocks in the sand.,3\n3179,anetv_aKLKf4Qd_4U,7292,A close up of a house is seen when a person walks into frame. The person,A close up of a house is seen when a person walks into frame.,The person,gold,then moves around in front of the concrete while moving around.,continues cutting and pans around to a laptop then blows a kiss on a ring.,is seen grabbing lawn mower and pulling it to the side.,stands up holding up a vacuum while the camera pans around while one of them walk along the grass.,2\n3180,anetv_aKLKf4Qd_4U,7293,The person is seen grabbing lawn mower and pulling it to the side. The person then,The person is seen grabbing lawn mower and pulling it to the side.,The person then,gold,pushes the lawn mower all around the house.,continues hopping while the camera captures on the left.,throws the shoes into the bag while the girls continue to walk around the area as well.,throws the mower on a table in a explains position as well as noodles and vegetables around the restaurant.,0\n3181,anetv_wvewX55VADs,2252,She moves her feet in arms in a particular motion while the man does the same from a different angle. The man and woman,She moves her feet in arms in a particular motion while the man does the same from a different angle.,The man and woman,gold,\"stand in her tracks to a game of of, some in turn in a small arena and stick the tug on the net and\",finally piece together their instructions and perform the tango moves together.,\"are on a busy waiting gym at all, then lays out and positions him.\",begin talking to the camera while the girls begin their routine.,1\n3182,anetv_wvewX55VADs,2251,A man and a woman are standing in front of the camera and a woman shows how to properly perform the tango. She,A man and a woman are standing in front of the camera and a woman shows how to properly perform the tango.,She,gold,moves her feet in arms in a particular motion while the man does the same from a different angle.,are fighting and see people kicking their legs in the air.,sits up on the chair.,\"is singing, playing a keyboard.\",0\n3183,anetv_IWHN3TD8mMQ,9544,\"A woman introduces herself to the camera and begins to talk about the topic of the video, pasta. The camera\",\"A woman introduces herself to the camera and begins to talk about the topic of the video, pasta.\",The camera,gold,shows the ingredients that go into cooking pasta.,shows a youtube video to end the video.,yawns sleepily and then the camera recording her for a few seconds.,shows a benefits of a poster about the talent event.,0\n3184,anetv_IWHN3TD8mMQ,9546,\"She stirs the pasta, and then empties the pot in a colander once the pasta is al dente. She\",\"She stirs the pasta, and then empties the pot in a colander once the pasta is al dente.\",She,gold,\"retreats, then picks up another table in her other hand and places it in her hand.\",cucumber into a pan in a skillet.,fills a rectangular glass.,returns the pasta to the pot and adds olive oil.,3\n3185,anetv_IWHN3TD8mMQ,9545,\"The woman drops salt in a pot of water and turns the burners on. Once, boiling, she\",The woman drops salt in a pot of water and turns the burners on.,\"Once, boiling, she\",gold,adds the pasta in the pot.,dabs on the side of the drawing table.,\"adds a snowball - filled oil, and a woman appears before cutting the paper out of the water and eating.\",stirs the mix of shampoo.,0\n3186,anetv_cHdZ_dBVgDE,623,They dance and dance working very well together. They,They dance and dance working very well together.,They,gold,\"clap, screaming and extend their legs and lift their hips.\",talk and shake their wrists as he exhales.,twist and turn and even do all kinds of nice moves together.,laugh and singing together before intensifies.,2\n3187,anetv_cHdZ_dBVgDE,622,A man and a woman dressed in black and red stand in the middle of a room surrounded by a very large amount of people sitting and watching them. They,A man and a woman dressed in black and red stand in the middle of a room surrounded by a very large amount of people sitting and watching them.,They,gold,dance and dance working very well together.,are shown outside the gym.,put their hands on their head and hold them apart while talking.,\"finish and dance, then people around the washing together.\",0\n3188,anetv_cHdZ_dBVgDE,624,They twist and turn and even do all kinds of nice moves together. The man,They twist and turn and even do all kinds of nice moves together.,The man,gold,raises up the skateboard.,squints to a mirror with his mask and shows a replay of his performance.,places various ingredients in a bowl to eat them ketchup as they continue to examine the fruit.,bends down and swings the female across his back where she flips over and ends the dance.,3\n3189,lsmdc3080_THIS_MEANS_WAR-37080,20047,\"An older gentleman kisses her. As he leads her off, someone\",An older gentleman kisses her.,\"As he leads her off, someone\",gold,gives up to someone.,gazes at his grandparents.,slides her hands open at his eyelids and gazes at him tenderly.,steps close to him.,1\n3190,lsmdc0002_As_Good_As_It_Gets-46327,9197,Verdell starts whimpering as a pissed someone approaches his mugger. Someone,Verdell starts whimpering as a pissed someone approaches his mugger.,Someone,gold,clicks to a pulsing orange dot.,pushes open the door to someone's apartment and places verdell inside.,catches himself in front of a digital tv show.,\"stands a few feet away, then stares at him, self - conscious.\",1\n3191,lsmdc0002_As_Good_As_It_Gets-46327,9198,Someone pushes open the door to someone's apartment and places Verdell inside. We,Someone pushes open the door to someone's apartment and places Verdell inside.,We,gold,\"- dr, someone stands in his cage, scratching his shoulder.\",stay with the dog during the o. s. ,\"himself alone, he looks down at a plain of people.\",pause behind the bar again.,1\n3192,lsmdc0002_As_Good_As_It_Gets-46327,9196,A short laugh makes us realize that someone has witnessed and enjoyed someone's hostile mutterings. Verdell,A short laugh makes us realize that someone has witnessed and enjoyed someone's hostile mutterings.,Verdell,gold,has empty his things he sits too.,starts whimpering as a pissed someone approaches his mugger.,\"is just that he is, of where it is.\",\"reads the chart, celebrating as someone else knows the straw.\",1\n3193,anetv_obt6wudzHxY,8450,Instruction on how to braid your hair. A girl in a grey t - shirt,Instruction on how to braid your hair.,A girl in a grey t - shirt,gold,demonstrates how to braid your hair and shows a step by step process.,is holding a hand alfredo hair to her face.,get instructions show how to brush the comb the bird hair off her sides.,extends a clipper to each hoop to play the buttons.,0\n3194,anetv_obt6wudzHxY,8451,A girl in a grey t - shirt demonstrates how to braid your hair and shows a step by step process. Some tips,A girl in a grey t - shirt demonstrates how to braid your hair and shows a step by step process.,Some tips,gold,get the to hair and blow the client's hair.,are displayed in print.,are practicing as they alternate sides.,have risen and dry a guy's hair and features for a bit.,1\n3195,anetv_obt6wudzHxY,8452,Some tips are displayed in print. The hair stylist,Some tips are displayed in print.,The hair stylist,gold,looks at the screen for the smoothen book in the background.,shows the finished product while dresses in a black top and sunglasses.,is showing two bottles in braids.,talks about what's on.,1\n3196,lsmdc1062_Day_the_Earth_stood_still-100881,3871,A grandfather clock shows 5 past 11. Someone,A grandfather clock shows 5 past 11.,Someone,gold,looks as he spies on a nearby wall.,leads the way into the house.,wheels his draw upon himself.,gives an mayhem cluster of escapes.,1\n3197,lsmdc1062_Day_the_Earth_stood_still-100881,3870,Someone's car is parked in the rain. A grandfather clock,Someone's car is parked in the rain.,A grandfather clock,gold,holds under 10 minutes.,shows twelve pounds.,shows 5 past 11.,has a body crucified above it.,2\n3198,lsmdc1062_Day_the_Earth_stood_still-100881,3869,The light in its head slit comes on. Someone's car,The light in its head slit comes on.,Someone's car,gold,fall away from the chopped block and lay on its un - covered roof.,\"is elsewhere, but the chamber drags pinned to the window.\",is parked in the rain.,sits near someone's face.,2\n3199,lsmdc1062_Day_the_Earth_stood_still-100881,3872,Someone leads the way into the house. She,Someone leads the way into the house.,She,gold,leads the way into a study.,leaves with a hand to his mouth.,crouches back down on the bear in the gas ring.,is felled by the rubble.,0\n3200,lsmdc3038_ITS_COMPLICATED-17231,7439,\"Someone lifts his glass, his family sips their champagne. Now, at the hotel's front desk the clerk\",\"Someone lifts his glass, his family sips their champagne.\",\"Now, at the hotel's front desk the clerk\",gold,holds a gun fighting shotgun.,holds in a bouquet of cash.,gives someone and someone their bills.,fills a card lens from a folder.,2\n3201,lsmdc3038_ITS_COMPLICATED-17231,7440,\"Now, at the hotel's front desk the clerk gives someone and someone their bills. Someone\",\"Now, at the hotel's front desk the clerk gives someone and someone their bills.\",Someone,gold,\"eyeballs him, then faces their children.\",shows his attention to where someone is digging.,spray repeatedly on the back of the man's crotch.,\"answers her cell, though busy with real memories.\",0\n3202,anetv_XEriJg8cW4g,16932,A man is holding a bag pipe and talking. He,A man is holding a bag pipe and talking.,He,gold,is showing how to do it and see it taking picture in the middle of a black screen.,starts playing the bag pipes.,starts smoking a pipe.,speaks to the hairdresser.,1\n3203,anetv_XEriJg8cW4g,4828,The man demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw. The bagpiper,The man demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw.,The bagpiper,gold,then hugs him and ends by peering into the enemies with her face behind her hand.,puts down the beer and begins facing it off.,demonstrates the blowing technique and blows into the blow pipe on the bagpipe.,then begins to play nervously and sticks his stick to the center.,2\n3204,anetv_XEriJg8cW4g,16933,He starts playing the bag pipes. He,He starts playing the bag pipes.,He,gold,breaks from the pinata while others keeping watch.,\"walks back his fourth time, and spins through many different pipes on the grill.\",stops drumming and takes a seat.,puts it down and stops.,3\n3205,anetv_XEriJg8cW4g,4827,A man wearing a black t - shirt describes the parts of a bagpipe and blow pipe. The man,A man wearing a black t - shirt describes the parts of a bagpipe and blow pipe.,The man,gold,finishes the man and continues talking to the camera and he plays the same a few times.,then begins to play for the video while the people is on the phone and then he goes to the camera.,demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw.,stops playing for a moment while pausing for a moment to pick up the instruments.,2\n3206,anetv_43OU5XCzLzo,8518,\"The boats pass with difficulty between the rocks. Then, people\",The boats pass with difficulty between the rocks.,\"Then, people\",gold,ski in the water and stand in the waters before the boat.,close the water kayaks themselves.,enters in more troubled waters.,sail from the slope with weapons on tubes.,2\n3207,anetv_43OU5XCzLzo,8517,People sails in a rocky river on inflatable individual boats. The boats,People sails in a rocky river on inflatable individual boats.,The boats,gold,arrive on the boats ship.,pass with difficulty between the rocks.,stand on either side of a river bank.,are drawn down a rocky stream.,1\n3208,anetv_f2W1Mt04CIM,14120,People rides bumper cars in a carnival. An old man,People rides bumper cars in a carnival.,An old man,gold,picks up a black car in the driveway.,in snowy stands in an outdoor park.,rides a small bumper car.,is playing the harmonica in his mouth.,2\n3209,anetv_f2W1Mt04CIM,14122,Several people get stuck with other bumper cars. There,Several people get stuck with other bumper cars.,There,gold,\"someone crosses over the fence, hitting both pins.\",with dogs ride on their leash.,are standing spinning on a track and standing on a track.,are a lot of people in the carnival.,3\n3210,anetv_f2W1Mt04CIM,14121,An old man rides a small bumper car. Several people,An old man rides a small bumper car.,Several people,gold,wait in the car.,get in the parking lot.,get stuck with other bumper cars.,are running down the road.,2\n3211,lsmdc3049_MORNING_GLORY-23653,15819,Someone's in the front. She,Someone's in the front.,She,gold,gets in the back.,takes a brief steps forward and takes a seat on top of the cargo ship.,allows a small smile.,gives him a demure smile.,0\n3212,lsmdc3049_MORNING_GLORY-23653,15818,An ibs van pulls up and she runs to it. Someone,An ibs van pulls up and she runs to it.,Someone,gold,slides across the shelves to someone.,gives him a push hug on the shoulder.,goes from someone to pier.,'s in the front.,3\n3213,anetv_-e9e4ke_wJk,7129,Ladies are washing clothes outside in a basin. A boy,Ladies are washing clothes outside in a basin.,A boy,gold,soaks a square and mop into a bucket.,gives a lady something.,slides joins a baby.,tucks into his empty buckets.,1\n3214,anetv_-e9e4ke_wJk,7131,\"The boy walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side. The lady\",\"The boy walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side.\",The lady,gold,begin painting the bicycle leg while the man moves to the camera.,cheered and faded pair of sustained announcer are participating in a loop with each other.,rises and puts what the boy gave her in her pocket.,sands the sides of the striped spins and open the cabinet on the table.,2\n3215,anetv_-e9e4ke_wJk,16970,She then walks behind the tree. The person on the right side,She then walks behind the tree.,The person on the right side,gold,is in view of the camera.,is pulling it side by side.,gets up and resumes brushing the hair.,scrapes her windshield with a yellow nozzle.,0\n3216,anetv_-e9e4ke_wJk,7130,A boy gives a lady something. The boy,A boy gives a lady something.,The boy,gold,goes out towards the computer showing polishes lobby glass.,\"walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side.\",falls as the frisbees grab the other.,competes with the hammer clippers.,1\n3217,anetv_x6Z0xTgWoVI,1823,\"The father pick up the child to put in the right tract, and the child continues skiing. An adult and a child\",\"The father pick up the child to put in the right tract, and the child continues skiing.\",An adult and a child,gold,is throwing blonde baby.,walk from the boy.,ski on the hill.,slide down on a slide.,2\n3218,anetv_x6Z0xTgWoVI,5724,Several people are shown skiing down a small mountain under the zipline. One person in particular,Several people are shown skiing down a small mountain under the zipline.,One person in particular,gold,is interviewed as they go up the hill.,is seen putting the snow under the trees.,is walking back and fourth onto the platform while shown.,comes down the slope holding a child in front of them before finally letting them go.,3\n3219,anetv_x6Z0xTgWoVI,5727,\"As they continue, they encounter another pair of people doing the same thing. After some time, the adult\",\"As they continue, they encounter another pair of people doing the same thing.\",\"After some time, the adult\",gold,walks over to sing at the end of applaud up to assist him.,picks up the product and knocks by a clear liquid.,grabs the child to slow them down and claps for them before they eventually stop all together.,gives them more leverage on the trolley.,2\n3220,anetv_x6Z0xTgWoVI,5726,\"The young child is freely skiing but the adult is trailing close behind them. As they continue, they\",The young child is freely skiing but the adult is trailing close behind them.,\"As they continue, they\",gold,continue to fall on them.,continue riding in the subway.,aim their way back to the reading boxes.,encounter another pair of people doing the same thing.,3\n3221,anetv_x6Z0xTgWoVI,5725,One person in particular comes down the slope holding a child in front of them before finally letting them go. The young child is freely skiing but the adult,One person in particular comes down the slope holding a child in front of them before finally letting them go.,The young child is freely skiing but the adult,gold,is also in the water doing everything inevitable things.,continues kids now getting in the public and talking to the camera.,goes to the child's point of view.,is trailing close behind them.,3\n3222,anetv_x6Z0xTgWoVI,1822,\"Ski lifts pass above the ski track. A man holds a child, then he\",Ski lifts pass above the ski track.,\"A man holds a child, then he\",gold,ski before skiing again.,rides bmx and dives in front of the cameraman.,snowboard down the slope.,releases the child who ski alone in the hill followed by his father.,3\n3223,anetv_x6Z0xTgWoVI,1821,Several people ski down the hill. Ski lifts,Several people ski down the hill.,Ski lifts,gold,pass above the ski track.,is shown with dogs fur.,and the people snowboarding down a hill together.,is shown of snow on skies and sleds.,0\n3224,anetv_93bg_XU3OTg,12081,The guy puts a white cloth on the edge. The guy,The guy puts a white cloth on the edge.,The guy,gold,takes a jack and slaps the stripes on the fence.,runs the metal object repeatedly across the white cloth.,goes up a abruptly ladder to get a metal cord.,uses his hand to wipe dirt into brief holes with the three client's hair.,1\n3225,anetv_93bg_XU3OTg,12080,The guy pours product in a container and uses a brush to put the liquid on the surface of a metal object. The guy,The guy pours product in a container and uses a brush to put the liquid on the surface of a metal object.,The guy,gold,wipes the paper in the dropper with a hand and wipes it with a towel.,\"seals it with concrete, then puts it back in.\",puts a white cloth on the edge.,puts the residue off the tube.,2\n3226,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6915,Her hand meets his as he grasps her right thigh. She,Her hand meets his as he grasps her right thigh.,She,gold,straps their fingers on its straps.,smiles at his own reflection in a mirror.,arched her lower body as if in her trance.,turns to kiss him.,3\n3227,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6916,She turns to kiss him. Her long sleek red hair,She turns to kiss him.,Her long sleek red hair,gold,drives her belly down.,ripple over her difficult sinks.,lies in half on its side.,draped over one shoulder.,3\n3228,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6910,Stepped closer and someone firmly clasps her torso. Someone,Stepped closer and someone firmly clasps her torso.,Someone,gold,stares blankly into the night sky as the wind approaches.,wears a wretched expression.,arches her back slightly as their lips meet in a slow kiss.,quickly holds the dagger to his throat.,2\n3229,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6925,They remained seated at the picnic branch as people flee from an advancing storm. They,They remained seated at the picnic branch as people flee from an advancing storm.,They,gold,\"demon in a uncertainty, someone glares at the humanoid corpse which is torn away.\",\"people rush to get him armored, but they are.\",gets in the top of the lungs.,lie on the floor close to bed.,3\n3230,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6920,\"They lounged together beneath palm trees on golden sands. Standing beside her on the ocean, someone\",They lounged together beneath palm trees on golden sands.,\"Standing beside her on the ocean, someone\",gold,lowers her limp hand toward the precise anguished animals.,pulls up the thin - out hat.,stares down at the city.,watches someone as she raises her head from the still waters.,3\n3231,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6941,They watch as people grieve openly. Someone,They watch as people grieve openly.,Someone,gold,lies at the front in an open casket.,jogs to the edge of the green dappled road between tall hedges.,tousles her hair back.,grabs him from behind and shoots someone in the neck.,0\n3232,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6934,Someone enters ahead of someone to find it deserted. They,Someone enters ahead of someone to find it deserted.,They,gold,put down their bags.,walk down the alley.,steps out from behind a row of trailers.,climb up to one side.,0\n3233,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6930,Someone rolls onto her side and smiles as she gazes at him. He,Someone rolls onto her side and smiles as she gazes at him.,He,gold,\"hesitates a moment, then someone looks down at their hands.\",\"stares at the other students, then begins to kiss her, bending over the bushes, looking at her.\",props himself up and looks at her.,\"pulls her head away, and closes her in some.\",2\n3234,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6939,A mostly black congregation has gathered for the funeral in a quaint white church. Someone's daughter,A mostly black congregation has gathered for the funeral in a quaint white church.,Someone's daughter,gold,flips a page as a hand pushes past her followed by her.,is seated at a table watching with red ribbon around her brow.,wears a black veil.,sits at a desk and waits for her.,2\n3235,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6912,Someone unfastens her belt then unzips the back of her dress. She carefully,Someone unfastens her belt then unzips the back of her dress.,She carefully,gold,\"strokes her brush, then wraps her arms around a tasteful scarf hanging in the neck.\",\"rolls down her stocking, revealing a scar beneath her right knee.\",reaches in someone's hands.,\"steps up to a small pedestal fully clothed, her iron shawl.\",1\n3236,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6944,Someone lowers her eyes as someone stares ahead serenely. People,Someone lowers her eyes as someone stares ahead serenely.,People,gold,are thrown over an parapet.,\"have a deep snack, while someone looks away, occasionally saying not to stop anything.\",rise from the pews.,gaze at the phone.,2\n3237,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6937,Someone watches as someone walks to the foot of the stairs. An elderly woman,Someone watches as someone walks to the foot of the stairs.,An elderly woman,gold,appears on the landing.,is lying on the floor next to him.,comes up behind him.,steps into an elevator.,0\n3238,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6940,Someone's daughter wears a black veil. People,Someone's daughter wears a black veil.,People,gold,\"channels over the tv, laughing with the kids, as the adult pulls the sunglasses from her mouth.\",seem surprised by their affection.,sit at the end of the pew closest to the wall.,hold a camera for a poster that show someone.,2\n3239,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6928,The wind rattles the windows. The doors,The wind rattles the windows.,The doors,gold,reveal a foulard knotted with bow tie.,slide shut behind someone.,grate off its hinges.,rattle in the gale.,3\n3240,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6945,People rise from the pews. The framed family photograph,People rise from the pews.,The framed family photograph,gold,'s on the wall.,drops down on a chair.,looks out from the ring.,shows someone's overcoat beneath it.,0\n3241,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6927,He lies face down with his eyes closed. Someone,He lies face down with his eyes closed.,Someone,gold,gazes off with a weary look.,\"snatches his bag book in his lap, giving her friend a passionate kiss.\",begins to point his wand skyward.,rests her chin against his shoulder.,3\n3242,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6938,An elderly woman appears on the landing. A mostly black congregation,An elderly woman appears on the landing.,A mostly black congregation,gold,has gathered for the funeral in a quaint white church.,\"stands and looks at her, extensively.\",stands waiting for her to.,\"stands, mostly of texts of courage in front of everyone.\",0\n3243,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6936,Someone peers into the kitchen then down the narrow flight of steps to someone's basement bedroom. Someone,Someone peers into the kitchen then down the narrow flight of steps to someone's basement bedroom.,Someone,gold,stops and turns the glass door to the window.,watches as someone walks to the foot of the stairs.,\"passes out, leaving someone behind.\",\"comes down the stairs to his father's house, eating a carrot.\",1\n3244,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6922,\"Night, they make love on the deck. They\",\"Night, they make love on the deck.\",They,gold,dive off the prowl of the boat as moonlight plays on the glittering surface of the sea.,find someone's shoe shoes.,runs down a long flight of stairs.,rise back in the undergrowth.,0\n3245,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6943,The man shakes someone's hand and moves along. Someone,The man shakes someone's hand and moves along.,Someone,gold,leads the penguins back with someone.,lowers her eyes as someone stares ahead serenely.,looks in the mirror just as this woman comes to give the little lunch they gave up.,takes hold of his body hand and hugs him on.,1\n3246,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6917,Her long sleek red hair draped over one shoulder. Someone,Her long sleek red hair draped over one shoulder.,Someone,gold,\"pulls his sweater off and climbs onto the bed as someone reclines, wearing a sultry black slip.\",moves stiffly between the bride and groom.,\"holds out her hand, gathering his sons.\",wakes with a start.,0\n3247,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6923,They dive off the prowl of the boat as moonlight plays on the glittering surface of the sea. They,They dive off the prowl of the boat as moonlight plays on the glittering surface of the sea.,They,gold,continue to move the leaves between the lifeboat and then come through sidewalks and slide up.,\"pass people, including above, and wave at the back of the canal.\",\"see someone trailing behind, dancing together.\",swim gracefully beneath a brilliant full moon.,3\n3248,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6914,He slides off her dress and kisses the back of her neck. Her hand,He slides off her dress and kisses the back of her neck.,Her hand,gold,reaches out and jams his arm on her face.,\"closes the door, revealing someone with a chestnut entry.\",meets his as he grasps her right thigh.,is already inscribed from the envelope.,2\n3249,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6935,They put down their bags. Someone,They put down their bags.,Someone,gold,approaches a pair of neatly - sized big hide homes from a roof behind a cabinet between stone houses.,takes out the photos of the vault with the rest of the kids.,climbs out of the car and goes up a ladder.,peers into the kitchen then down the narrow flight of steps to someone's basement bedroom.,3\n3250,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6908,She closes the door and turns around. Their eyes,She closes the door and turns around.,Their eyes,gold,lock on the door.,meet across the dimly - lit room.,lock together and be gazes at the ring dance.,lock on the paper - wedged shelf.,1\n3251,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6933,\"Looking tanned and healthy, people carry luggage up the front steps of the retirement home. Someone\",\"Looking tanned and healthy, people carry luggage up the front steps of the retirement home.\",Someone,gold,\"arrives at home, a dozen portly faced elderly woman seated amid a grave.\",enters ahead of someone to find it deserted.,drinks from a table.,climbs onto the back of an suv and spots the handcuff.,1\n3252,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6926,They lie on the floor close to bed. He,They lie on the floor close to bed.,He,gold,looks at a graveyard.,takes a look at the couple's bodies before measuring into two shelves.,\"is over, standing.\",lies face down with his eyes closed.,3\n3253,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6921,\"Standing beside her on the ocean, someone watches someone as she raises her head from the still waters. Night, they\",\"Standing beside her on the ocean, someone watches someone as she raises her head from the still waters.\",\"Night, they\",gold,have pulled through a lot.,arrive at hogwarts o. s. someone sits in a locker room.,cart the other sailors into the turbulent waters.,make love on the deck.,3\n3254,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6907,Someone puts her coat and hand back down on the double bed which has tall elaborately - carved bedposts. She,Someone puts her coat and hand back down on the double bed which has tall elaborately - carved bedposts.,She,gold,appears couples approaching neighbors bedroom kitchen.,is put and repair the scarlet and sticky color.,closes the door and turns around.,submerges the small pavilion and swabs her back.,2\n3255,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6913,\"She carefully rolls down her stocking, revealing a scar beneath her right knee. He\",\"She carefully rolls down her stocking, revealing a scar beneath her right knee.\",He,gold,\"begins looking at his bloated stomach, then slides in a roll.\",\"eyes doctor, turns over to find someone sleeping in the bed, and holds out her handcuffs.\",slides off her dress and kisses the back of her neck.,\"eyes the gun of her baby's eyes, someone looks up as someone watches her and walks back out of the boat.\",2\n3256,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6906,Someone carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home. They,Someone carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home.,They,gold,tearing off the furniture.,\"turn the page, revealing a balding, middle - aged woman in a turban - talking.\",takes his phone off the stairs and crosses a street as well as coming out from the bay.,enter a bedroom decorated with framed landscape paintings.,3\n3257,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6919,Someone looks up to see a space rocket rise over billowing mountainous clouds on the horizon. Someone,Someone looks up to see a space rocket rise over billowing mountainous clouds on the horizon.,Someone,gold,walks in with a hand draped over his ears.,wrings out her wet hair.,runs out the front porch of the hangar van.,\"accelerates and appears, wearing his helmet, secured in a yellow sun perched on a window, and scratched scar.\",1\n3258,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6905,Someone leans across the dining table. Someone,Someone leans across the dining table.,Someone,gold,carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home.,is sitting on the floor eating a spoon.,\"remains by putting the sandwich in his mouth, then launches them into the air.\",someone spits out someone.,0\n3259,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6911,Someone arches her back slightly as their lips meet in a slow kiss. Someone,Someone arches her back slightly as their lips meet in a slow kiss.,Someone,gold,eyes her spar in her old curls.,unfastens her belt then unzips the back of her dress.,pulls someone onto a sunny rooftop.,eyes the makeup before her.,1\n3260,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6942,Someone lies at the front in an open casket. The man,Someone lies at the front in an open casket.,The man,gold,shakes someone's hand and moves along.,reaches for his billfold.,blows confetti into the air.,looks up at an stands of other students outside the gate.,0\n3261,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6931,\"A ceiling fan turns beneath the slipping raft over their bed. In the hospital, someone\",A ceiling fan turns beneath the slipping raft over their bed.,\"In the hospital, someone\",gold,starts downhill and passes his friends through the front door on the sidewalk.,stares down at the diary.,walks to the front door and checks through its vent.,\"emerges, standing in the geese.\",1\n3262,anetv_c21Y_pi3-Gg,7011,Several close ups of sandwiches are seen as well as a person cutting up meat and vegetables. The person,Several close ups of sandwiches are seen as well as a person cutting up meat and vegetables.,The person,gold,removes up more ingredients and sprinkles some onto chopped meat.,moves the skillet to the side as well as people watching on the sides.,puts down the tray of the lettuce and puts a strip of the bread.,cuts up bread following by laying various ingredients on the bread.,3\n3263,anetv_c21Y_pi3-Gg,7012,The person cuts up bread following by laying various ingredients on the bread. The person,The person cuts up bread following by laying various ingredients on the bread.,The person,gold,pours food ingredients into a bowl and pour it into plates and syrup into a bowl.,closes the bread to make sandwiches followed by putting them in a french press and presenting them to the camera.,adds two lemon to put the dough in a bowl to cut the egg.,rides the knife cutting the foil paper and the knife places.,1\n3264,anetv_SA2GomtZkvE,2980,He is sitting next to his bike. A man,He is sitting next to his bike.,A man,gold,is holding pictures of the bike.,walks in the background.,puts his backpack on.,is skiing on a bike.,1\n3265,anetv_SA2GomtZkvE,2978,A man plays an accordion in the street. He,A man plays an accordion in the street.,He,gold,stops to see the history of the saxophone.,starts to start the door one last time.,walk and try to take playing.,is wearing a hoodie.,3\n3266,anetv_SA2GomtZkvE,2979,He is wearing a hoodie. He,He is wearing a hoodie.,He,gold,takes a seat and thrusts it through the open window.,is pulling iron out of his pants.,is sitting next to his bike.,bounces a ball with a stick.,2\n3267,anetv_Jv7AjsdOk2I,16780,He kicks to build up some speed and does some cool tricks. He,He kicks to build up some speed and does some cool tricks.,He,gold,explain what he has done.,is showing a choreography with people standing next to them.,comes running across the street holding on poles but eventually gets into an empty swimming pool.,gets off and then jumps back on the board and does more tricks all around.,3\n3268,anetv_Jv7AjsdOk2I,16779,\"A man is skateboarding, he jumps up on higher levels. He\",\"A man is skateboarding, he jumps up on higher levels.\",He,gold,kicks to build up some speed and does some cool tricks.,points in a fast jumps and vanishes as then picks up speed.,begins to roller tricks with an airplane landing until he falls.,dashes on roller skate.,0\n3269,anetv_Jv7AjsdOk2I,16781,He gets off and then jumps back on the board and does more tricks all around. He,He gets off and then jumps back on the board and does more tricks all around.,He,gold,moves around and continues while he continues moving around and laughing up seeing him playing under the water.,blocks the cord and swings it round while the kids watch him.,jumps up on a rail and then gets back down and sits on the board and waves.,continues playing over the rope and ends by showing off the floor so that it is reversed.,2\n3270,anetv_8Qg395HjqFg,5910,He opens the tin foil and cuts the sandwich in half. He,He opens the tin foil and cuts the sandwich in half.,He,gold,picks up a piece of clothing and shows it to another person.,moves it into place and wraps it in a strainer.,removes his coat and starts cleaning all the papers.,takes a bit of the sandwich.,3\n3271,anetv_8Qg395HjqFg,5907,He places tin foil down onto a table. He,He places tin foil down onto a table.,He,gold,pours out containers of noodles and cooks it.,puts bread on the tin foil with butter and cheese.,tapes them up and hands it to the boy.,\"removes it, places it in a trash bin, and hands a slip of paper to jars.\",1\n3272,anetv_8Qg395HjqFg,5909,He puts the iron on the sandwich. He,He puts the iron on the sandwich.,He,gold,opens the tin foil and cuts the sandwich in half.,then irons the shirt.,puts it on the table.,someone takes the check.,0\n3273,anetv_8Qg395HjqFg,5908,He puts bread on the tin foil with butter and cheese. He,He puts bread on the tin foil with butter and cheese.,He,gold,cuts it in half and puts it in a blender.,puts the iron on the sandwich.,takes a mixed slice in a salad.,puts a rubber into it and begins to tighten it.,1\n3274,anetv_8Qg395HjqFg,5906,A man in a white jacket picks up an iron. He,A man in a white jacket picks up an iron.,He,gold,puts the camera into a strainer on the bathroom counter.,places tin foil down onto a table.,\"pauses it for a moment, then pauses.\",demonstrates how to drink water.,1\n3275,anetv_yEBiJguscMY,14556,There is an audience watching them play. The man,There is an audience watching them play.,The man,gold,lets a gymnast stands on the air before jumping up.,does many karate moves jumping back and forth.,pretends his racket is a guitar.,cheers black owners as they continue competing.,2\n3276,anetv_yEBiJguscMY,14555,Two men are playing wall ball in a room. There,Two men are playing wall ball in a room.,There,gold,is a pole in a court.,are children in jumpers back.,is an audience watching them play.,are watching from a room and he mixes balls together into a bag.,2\n3277,lsmdc3061_SNOW_FLOWER-29987,7073,\"She maintains an emotionless expression as the villagers continue to pay their respects. In present day, the identically featured someone\",She maintains an emotionless expression as the villagers continue to pay their respects.,\"In present day, the identically featured someone\",gold,leans at the window's bouquets.,follows someone and sketching in the back.,snatches the tin flag.,drives her car through the city.,3\n3278,lsmdc3061_SNOW_FLOWER-29987,7079,\"Someone opens the door, fixing her hair. Noticing someone, she\",\"Someone opens the door, fixing her hair.\",\"Noticing someone, she\",gold,walks into the dim kitchen and finds someone sitting behind her at the waist.,cocks a handsome eyebrow at someone.,reaches into her pocket and pulls a handle to her pocket.,straightens her bath robe.,3\n3279,lsmdc3061_SNOW_FLOWER-29987,7069,\"Someone covers her mouth in distress. Now, a view through a barred upper floor window\",Someone covers her mouth in distress.,\"Now, a view through a barred upper floor window\",gold,shows someone painting a military airplane in the doorway.,shows a man lying dead in the street below.,shows someone fighting someone in a hospital room.,shows someone as someone scoots out of the room.,1\n3280,lsmdc3061_SNOW_FLOWER-29987,7078,She turns for the exit. Someone,She turns for the exit.,Someone,gold,\"opens the door, fixing her hair.\",turns to the american.,walks to a window and hides inside.,listens out into her audio tube.,0\n3281,lsmdc3061_SNOW_FLOWER-29987,7077,\"A lone three - story house stands in the middle of a construction site. Now inside, someone\",A lone three - story house stands in the middle of a construction site.,\"Now inside, someone\",gold,leans behind the door and picks it open.,cautiously approaches a door with her purse in hand.,\"looks along the corridor, where the plane gets flashing.\",places tape on a chair and stands on the window sill.,1\n3282,lsmdc3061_SNOW_FLOWER-29987,7075,\"She peers out the passenger window. Passing some scaffolding and a few partly torn down buildings, she\",She peers out the passenger window.,\"Passing some scaffolding and a few partly torn down buildings, she\",gold,\"slides it down and tugs a knife, then leaps down a side street.\",\"yanks one, shoves it back, and looks it up and kills the massive barley truck.\",finds another page on his chair indicating that someone walks by.,spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood.,3\n3283,lsmdc3061_SNOW_FLOWER-29987,7074,\"In present day, the identically featured someone drives her car through the city. She\",\"In present day, the identically featured someone drives her car through the city.\",She,gold,thrusts out through a grassy leverage beneath the base of a cobblestone landscape.,peers out the passenger window.,\"drives off, revealing the discarded page of her skull.\",shoots at the ticket.,1\n3284,lsmdc3061_SNOW_FLOWER-29987,7071,\"Now, a woman with a cloth over her nose and mouth uses a stick to pick up an article of clothing from a pile and drop it into a small fire burning in the middle of a patio. Someone\",\"Now, a woman with a cloth over her nose and mouth uses a stick to pick up an article of clothing from a pile and drop it into a small fire burning in the middle of a patio.\",Someone,gold,hands a vacuum to batman and shows to the top and guy one of that left.,opens the drawer and spots someone carrying a pink box bundled in his shirt.,\"finds someone's sauce with the $3, directing the table but stool in, stiff and uneasy.\",steps into view with her face covered as well.,3\n3285,lsmdc3061_SNOW_FLOWER-29987,7072,\"Later, a couple bows ceremoniously to her and her husband, who now wears a mustache and smokes a pipe. The center portion of her lips painted red, someone\",\"Later, a couple bows ceremoniously to her and her husband, who now wears a mustache and smokes a pipe.\",\"The center portion of her lips painted red, someone\",gold,wears an elegant black silk robe with a royal blue yoke and elaborate silver jewelry.,stands on a distant lowering vent.,does not make any happier than this.,rises into the fusion chamber.,0\n3286,lsmdc3061_SNOW_FLOWER-29987,7076,\"Passing some scaffolding and a few partly torn down buildings, she spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood. A lone three - story house\",\"Passing some scaffolding and a few partly torn down buildings, she spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood.\",A lone three - story house,gold,\"picks off the building's new paint basket, which clutches one of the open doors, surprising crumble up.\",stands silhouetted under a foggy sky.,stands in front of lights while a shadowy figure edges its way down the high tower spiral.,stands in the middle of a construction site.,3\n3287,lsmdc3061_SNOW_FLOWER-29987,7070,\"Now, a view through a barred upper floor window shows a man lying dead in the street below. Someone\",\"Now, a view through a barred upper floor window shows a man lying dead in the street below.\",Someone,gold,aims his glasses at his face appraisingly then drops it.,see the car and someone out of the room.,peers outside with the soft daylight shining on her face.,notices a sketch of a young man sitting on a couch.,2\n3288,anetv_yWCEDAQvhzA,13429,The same move is repeated several times in slow motion. Then another master,The same move is repeated several times in slow motion.,Then another master,gold,comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat.,sits on the brown horse in order to teach.,comes and throws the ball to his goal.,stands back and flips her horizontally and jump at the mat with her hands catch.,0\n3289,anetv_yWCEDAQvhzA,13425,The three masters show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg. They,The three masters show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg.,They,gold,put the title on to capture the team's left eye and again the man continue to play and show their face first.,then both struggle to turn and turn to the camera in a minor fashion while all the girls away loses them.,fall around the gym a few times.,bend their elbows and close their fists as they show some karate chops while jumping up high in the air.,3\n3290,anetv_yWCEDAQvhzA,13430,Then another master comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat. The master first,Then another master comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat.,The master first,gold,\"kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces.\",\"tries to balance the ball, but then hits the pinata super fast and catches it hitting the stick five more.\",moves his hands and off with the first time.,bounces down on the log until her wrist is finished.,0\n3291,anetv_yWCEDAQvhzA,13426,They bend their elbows and close their fists as they show some karate chops while jumping up high in the air. The they,They bend their elbows and close their fists as they show some karate chops while jumping up high in the air.,The they,gold,swing back and forth until it takes their turn to start.,shake and applaud their hips as they hit the ball.,continue trying as mak a shot any kid is stuck for the first time.,step back as the crowd applauds for them.,3\n3292,anetv_yWCEDAQvhzA,14335,Three men in white robes are doing karate moves. People,Three men in white robes are doing karate moves.,People,gold,are sitting where the boys are talking.,are watching them in the audience behind them.,are fighting in the court playing a game of foosball.,take the shots and shake hands.,1\n3293,anetv_yWCEDAQvhzA,13428,Then one of the masters holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two. The same move,Then one of the masters holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two.,The same move,gold,is performed before the mechanics are shown on the screen.,is repeated several times in slow motion.,leads to several miniature pieces of white surf and creating a product.,\"on the bar, and binds on both sides of the mat to dictation, and other videos of the springs.\",1\n3294,anetv_yWCEDAQvhzA,13424,There are three black belt karate masters demonstrating and doing karate in a large gym with several spectators. The three masters,There are three black belt karate masters demonstrating and doing karate in a large gym with several spectators.,The three masters,gold,begin to take pictures and ride quickly along in their home.,drive off on tight rope in double motion.,\"appear at the camera holding a hoola, fencing and dancing parody.\",show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg.,3\n3295,anetv_yWCEDAQvhzA,13431,\"The master first kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces. The entire crowd\",\"The master first kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces.\",The entire crowd,gold,cheers for him as the masters leave the stage.,\"watches together, then throws away all the bricks and hits.\",\"clears, then the circle wins and a man in prayer stops them.\",has a fine aim with the food from freeing the players and hits him the bottle.,0\n3296,anetv_yWCEDAQvhzA,13427,The they step back as the crowd applauds for them. Then one of the masters,The they step back as the crowd applauds for them.,Then one of the masters,gold,holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two.,\"moves a round object around that the crewman throws something from behind him, leaving the director to the camera.\",moves apart as the crowd cheers.,is thrown in the air.,0\n3297,lsmdc3008_BAD_TEACHER-4064,2702,\"His eyes shut, someone rests his head next to someone's. She\",\"His eyes shut, someone rests his head next to someone's.\",She,gold,\"blinks and looks out from the window, the lamps shining on his long, brown eyes.\",takes a sip then slowly picks up someone's cell phone.,\"laughs, but his expression gives a slate shake then tilts his head to the side.\",grabs his bag and he takes.,1\n3298,lsmdc3008_BAD_TEACHER-4064,2699,Someone pats someone on the back and leaves. Someone,Someone pats someone on the back and leaves.,Someone,gold,stares at him suspiciously.,goes to see someone's wounds.,returns someone's smile.,reaches up and opens them.,2\n3299,lsmdc3008_BAD_TEACHER-4064,2700,Inside on the bed two pairs of bare feet rub together. Someone,Inside on the bed two pairs of bare feet rub together.,Someone,gold,sees a young blonde woman sitting at a table at a desk.,stares on the sunken ship.,looks back at the camera as someone catches up with someone.,writhes atop of someone's clothes prone body.,3\n3300,lsmdc3008_BAD_TEACHER-4064,2701,\"Someone writhes atop of someone's clothes prone body. His eyes shut, someone\",Someone writhes atop of someone's clothes prone body.,\"His eyes shut, someone\",gold,rests his head next to someone's.,is forced on the shadowy deluminator's fires end.,hangs his head.,slowly frowns as he follows his student.,0\n3301,lsmdc3008_BAD_TEACHER-4064,2704,In the hotel someone tosses someone's cell down. A picture of someone,In the hotel someone tosses someone's cell down.,A picture of someone,gold,shows on the phone and indicates a connected call.,'s white presses ghostly graphic by sand letters silently above a small church cafe.,sitting at his car in the photo booth reads someone u. s. terminal.,appear from the porch doorway.,0\n3302,lsmdc3008_BAD_TEACHER-4064,2698,Someone and someone swap a look. Someone,Someone and someone swap a look.,Someone,gold,stares wide - eyed at the boys.,\"starts over, smiling again.\",pats someone on the back and leaves.,takes someone's arm and leads him off.,2\n3303,lsmdc3008_BAD_TEACHER-4064,2705,\"A picture of someone shows on the phone and indicates a connected call. With someone on all fours, someone\",A picture of someone shows on the phone and indicates a connected call.,\"With someone on all fours, someone\",gold,opens the screen door for her friend.,swings his sack halfway to the rear of the cabin.,grips her mobile in her hand.,thrusts at her from behind.,3\n3304,lsmdc1001_Flight-71870,11263,Someone turns to the nurse. Someone's left leg,Someone turns to the nurse.,Someone's left leg,gold,nudges the black figure.,writhes with a needle.,lies on a brace.,lies vertically on the floor.,2\n3305,lsmdc1001_Flight-71870,11262,\"At the hospital, someone walks over to a private room and peeps in. He\",\"At the hospital, someone walks over to a private room and peeps in.\",He,gold,pours a book on someone and finds it empty.,pauses to catch a glimpse of someone in the next room.,taps his cane on the door frame.,closes the door and steps toward the podium.,2\n3306,lsmdc1020_Crazy_Stupid_Love-81300,17083,\"Someone eyes his wedding ring, then slips it off. They\",\"Someone eyes his wedding ring, then slips it off.\",They,gold,sit watching family in the examining room.,walk through the bar.,pass a patrons as he marches toward the salon.,begin belly dancing in central park.,1\n3307,lsmdc1039_The_Queen-88240,16405,And someone moves slowly along and smiles at them. She,And someone moves slowly along and smiles at them.,She,gold,\"stops in front of a little girl, who holds a bouquet of flowers.\",studies someone's face as the clock reads.,\"looks him over, slowly raises his gun slightly for someone.\",\"looks around, as the car albums drop in her face.\",0\n3308,lsmdc1039_The_Queen-88240,16401,The crowd of onlookers watch as someone looks at the flowers. Someone,The crowd of onlookers watch as someone looks at the flowers.,Someone,gold,\"slowly turns to someone, who sniffs the cabinet, glares.\",shifts his sad gaze.,looks increasingly upset as she tries to maintain her composure.,\"scoops a spot of muscled back, then gazes somberly off view.\",2\n3309,lsmdc1039_The_Queen-88240,16407,The girl hands the bouquet to someone who smiles. Someone,The girl hands the bouquet to someone who smiles.,Someone,gold,continues to move along.,looks at the podium on his hand.,stops motioning students over.,glances in his friend's direction.,0\n3310,lsmdc1039_The_Queen-88240,16399,Someone looks down after reading the third message. She,Someone looks down after reading the third message.,She,gold,\"glances at two boys, who also watch a inspector a heavy necktie.\",grabs her remaining phone and leaves it over.,continues to pace as the thugs slowly in to.,\"flinches, but quickly composes herself and moves on.\",3\n3311,lsmdc1039_The_Queen-88240,16397,Someone looks at notes on the palace gates. Another,Someone looks at notes on the palace gates.,Another,gold,comes onto a hot person.,is a crying face.,\"emerge onto the stream, then arrive at the pier.\",move into the rapidly guarded corridor surrounding the school.,1\n3312,lsmdc1039_The_Queen-88240,16410,And approaches someone who sits on a sofa next to someone. Someone,And approaches someone who sits on a sofa next to someone.,Someone,gold,takes a pen from her purse and writes on a sheet of paper.,rolls her stool to find him and approaches the booth with a hopeful gaze.,checks his notebook and stirs a shot.,bumps into the jeep.,0\n3313,lsmdc1039_The_Queen-88240,16400,\"She flinches, but quickly composes herself and moves on. The crowd of onlookers\",\"She flinches, but quickly composes herself and moves on.\",The crowd of onlookers,gold,from them seems like they are watching her.,watch as someone looks at the flowers.,\"on the bullring and the top of the building is thoughtful, but someone turns and walks off.\",\"swap a look as she stands, pauses, and looks at someone.\",1\n3314,lsmdc1039_The_Queen-88240,16403,She walks up to the barriers to meet the people. Various young women,She walks up to the barriers to meet the people.,Various young women,gold,have been waiting inside a working wagoneer.,stand at the front.,are shown dressed in tennis uniform.,are running to sign for the street scenes.,1\n3315,lsmdc1039_The_Queen-88240,16402,\"She stops, turns back to the crowd and smiles. She\",\"She stops, turns back to the crowd and smiles.\",She,gold,is on the street next to some other people watching him.,\"goes further across the room, and quickly falls forward.\",walks up to the barriers to meet the people.,dances tightly to the music as people sing to her.,2\n3316,lsmdc1039_The_Queen-88240,16406,\"She stops in front of a little girl, who holds a bouquet of flowers. The girl\",\"She stops in front of a little girl, who holds a bouquet of flowers.\",The girl,gold,hands the bouquet to someone who smiles.,takes her phone and begins to mix it in a bowl.,soaps up her feet.,smirks on front a punching bag.,0\n3317,lsmdc1039_The_Queen-88240,16404,Various young women stand at the front. And someone,Various young women stand at the front.,And someone,gold,speaks without swells anymore.,tries to help but man grabs a mans.,moves slowly along and smiles at them.,\"gets up, shuffling over the stack of stone shelves.\",2\n3318,lsmdc1039_The_Queen-88240,16409,\"In an ornate hall, someone walks past some tv lighting and camera equipment. And\",\"In an ornate hall, someone walks past some tv lighting and camera equipment.\",And,gold,see several filing cabinet drawers.,enters a photo frame.,sees as the pile is delivered.,approaches someone who sits on a sofa next to someone.,3\n3319,lsmdc1039_The_Queen-88240,16398,Another is a crying face. Someone,Another is a crying face.,Someone,gold,smears her dark eyes with dripping blood.,presses the tip of a finger.,looks down after reading the third message.,\"continues playing the camera, his conversation continuing with sister engages and pretend to vacuum.\",2\n3320,anetv_8ltNqT5N-xs,3953,She moves her hips all around while a band plays instruments behind her. The woman,She moves her hips all around while a band plays instruments behind her.,The woman,gold,continues playing around the circle while another plays more.,continues performing tricks with her violin and ends with them looking down.,continues dancing and ends by holding a pose and flipping back her hair.,continues juggling the drums while scores.,2\n3321,anetv_8ltNqT5N-xs,3952,A woman is seen belly dancing on a large stage while people watch her on the side. She,A woman is seen belly dancing on a large stage while people watch her on the side.,She,gold,continues dancing around the stage and leads into her performing various dance moves while dancing around.,candid more clips of the girls dancing baton and dance around with a man in pictures.,moves her hips all around while a band plays instruments behind her.,\"continues dancing around as well as arms by, amid other partner motions and eating her around while dancing.\",2\n3322,anetv_hYgheCsbtco,207,Instructions are being given for playing the instrument. The person's fingers,Instructions are being given for playing the instrument.,The person's fingers,gold,map the theme bit.,measured it with her hand as the music ends.,move up and down on the chords as they are shown.,are shown on a white screen.,2\n3323,anetv_hYgheCsbtco,206,A close up is seen of chords and numbers scrolling next to the top of a guitar. Instructions,A close up is seen of chords and numbers scrolling next to the top of a guitar.,Instructions,gold,are being given for playing the instrument.,are sliding on the water and the man in blue shirt kissing a birders.,comes over the cup and pins it down.,uses a pencil to pull the harmonica from the top.,0\n3324,lsmdc0011_Gandhi-52180,13171,Someone takes an iced drunk from a servant. Someone,Someone takes an iced drunk from a servant.,Someone,gold,throws down his bottle.,shakes his head wistfully.,laughs and looks at his wallet.,takes out his bottle.,1\n3325,lsmdc0011_Gandhi-52180,13169,As they come clear they can see that a military train of an engine and two cars has been derailed ahead of them. A small troop of cavalry,As they come clear they can see that a military train of an engine and two cars has been derailed ahead of them.,A small troop of cavalry,gold,are coming slowly along the line of someone's train toward them.,grab the snowy bag and use it to apply it to the brown comp box.,pushes through open island of surfboards and places a thick cloth to the board and - shines on him.,are riding medical equipment and white range.,0\n3326,anetv_j4YrzUjxAp8,13353,A person scrubs and dries a tiled floor with a vacuum. A person,A person scrubs and dries a tiled floor with a vacuum.,A person,gold,grabs a pumpkin towel around the back of the couch.,empties the contents of the vacuum in a white sink.,talks to the man while dressed in a red shirt with green tan colored shoes.,\"uses a steam cleaner, and the water cleaner.\",1\n3327,anetv_j4YrzUjxAp8,13350,A person vacuums the carpet. A person,A person vacuums the carpet.,A person,gold,wets and vacuums the carpet.,gives it to the woman as he speaks and gets wet.,is putting in by shaving the tires with the brush.,shines under the roof with a wet cloth.,0\n3328,anetv_j4YrzUjxAp8,13354,A person empties the contents of the vacuum in a white sink. Ways a vacuum can be used,A person empties the contents of the vacuum in a white sink.,Ways a vacuum can be used,gold,with tiled wall laundry.,are showed in split screens.,to draw steam up.,to prepare a rubber headed.,1\n3329,anetv_j4YrzUjxAp8,13351,A person wets and vacuums the carpet. A person,A person wets and vacuums the carpet.,A person,gold,vacuums or soaks up coffee from the carpet.,is slowly attached to a paintbrush while climbing on a rock next to her.,washes the vacuum then works on the carpet with a sponge.,places a square shoe on the bottom half of the carpet.,0\n3330,anetv_j4YrzUjxAp8,13352,A person vacuums or soaks up coffee from the carpet. A person,A person vacuums or soaks up coffee from the carpet.,A person,gold,uses a vacuum on the driveway and adds contact leaves to shatter windows and light sidewalks.,creates a hole into a surface with a big organic field.,presses the dogs to the wall then removes a large rug from the stands.,scrubs and dries a tiled floor with a vacuum.,3\n3331,anetv_iHO42zwYsu0,18425,A shot of a lawn mower is shown followed by a man walking into frame. The man,A shot of a lawn mower is shown followed by a man walking into frame.,The man,gold,pushes around a lawn mower along the yard cutting the grass.,begins by raking the lawn and shoveling the driveway as well as cutting the grass.,pushes the mower across a tree and shows it back to the children.,continues moving around the parking lots and ends with the man shoveling the grass.,0\n3332,anetv_iHO42zwYsu0,18426,The man pushes around a lawn mower along the yard cutting the grass. The man,The man pushes around a lawn mower along the yard cutting the grass.,The man,gold,\"continues to mow the grass, then jumps down on front of the bushes.\",continues dragging on the hedges and people behind him try to pick the man on it.,continues to push the machine around the yard while the camera captures his movements.,raps the clippers on the grass.,2\n3333,anetv_iHO42zwYsu0,5252,He goes around a pile of leaves in the grass. He,He goes around a pile of leaves in the grass.,He,gold,throws the ball and continues humping the lawn.,leaves and pushes the lawn mower somewhere else.,puts his arms up at his sides and prays.,picks up some tin tools and turns them.,1\n3334,anetv_XDFJFhaG_p0,6334,The man sets the instrument under his chin and tightens the bow. The man,The man sets the instrument under his chin and tightens the bow.,The man,gold,rings behind a bow before bowing.,hands over the mixing bag from the instrument while the camera captures his movements.,undoes the bow strings and raps them around the violin.,continues to move in the mans hands while the man musician finishes playing pose.,2\n3335,anetv_XDFJFhaG_p0,6333,A man stands holding a violin and bow discussing its features. The man,A man stands holding a violin and bow discussing its features.,The man,gold,sets the instrument under his chin and tightens the bow.,receives a harmonica and shows a plaque.,strum the drums in front of him.,seems finished to laugh and gestures.,0\n3336,anetv_Ww2_b9f6Kh0,12527,The man does a handstand and fall from the handstand into the water. The next man,The man does a handstand and fall from the handstand into the water.,The next man,gold,simply runs and dives while flipping into the water.,returns to another room.,rinses his board on a yellow water surface.,gets across the bridge.,0\n3337,anetv_Ww2_b9f6Kh0,12528,The next man simply runs and dives while flipping into the water. The final man,The next man simply runs and dives while flipping into the water.,The final man,gold,flips off a last shot and goes.,does a more traditional dive.,is completely fishing in the sand.,is highlighted by others.,1\n3338,anetv_Ww2_b9f6Kh0,12526,We see a man on a diving board high in the air. The man,We see a man on a diving board high in the air.,The man,gold,balances on the guy's leg and dives into the water.,pulls out a man floating on a handle.,shoots underwater into the water.,does a handstand and fall from the handstand into the water.,3\n3339,anetv_nQjxgOz1WYo,3756,The men stick their tongues out at the camera and the camera moves in on another table with people playing. In the end he,The men stick their tongues out at the camera and the camera moves in on another table with people playing.,In the end he,gold,shows off the capoeira tool and make another beat.,faces the camera towards himself.,reaches into his bag and falls dead.,takes the stick to the other hand to stop and kick the ball.,1\n3340,anetv_nQjxgOz1WYo,3755,A man is seen acting crazy towards a camera while sitting at a poker table with another man. The men stick their tongues out at the camera and the camera,A man is seen acting crazy towards a camera while sitting at a poker table with another man.,The men stick their tongues out at the camera and the camera,gold,pans around them as well as two others.,moves in on another table with people playing.,zooms in as well as the people out into objects.,zooms back on all of them.,1\n3341,anetv_HzAlvJ1fNWU,13534,There are people at the top of a snowy hill on tube rings. Suddenly the people,There are people at the top of a snowy hill on tube rings.,Suddenly the people,gold,begin skiing down a hill in india.,push down another hill.,are racing and possible completely loses and fall to the ground.,start riding down the hill.,3\n3342,anetv_HzAlvJ1fNWU,329,Two people are seen riding in tubes down a mountain. Several more people,Two people are seen riding in tubes down a mountain.,Several more people,gold,are shown riding down a river while the camera pans around.,are seen riding down a trail of the tubes.,are seen riding horses on different angles as well as riding down a mountain and then out onto a large fully covered area.,are shown shortly afterwards riding down.,3\n3343,anetv_HzAlvJ1fNWU,13535,Suddenly the people start riding down the hill. Now multiple people are shown riding down the hill on the tube rings and they,Suddenly the people start riding down the hill.,Now multiple people are shown riding down the hill on the tube rings and they,gold,seem to pull off a large tube and stop to go in the water.,are all smiling and having a good time as they either ride down alone or connected to other tubers.,take their tubes down the slope track.,are constantly riding through snowy hills.,1\n3344,anetv_HzAlvJ1fNWU,330,Several more people are shown shortly afterwards riding down. More people,Several more people are shown shortly afterwards riding down.,More people,gold,are seen riding the unicycle.,ride camels after him.,take many pushes after another.,ride on tubes with one looking back at the camera.,3\n3345,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4558,\"An umbrella is whirled aloft by a gale force wind. Around the Quidditch pitch, sodden spectators\",An umbrella is whirled aloft by a gale force wind.,\"Around the Quidditch pitch, sodden spectators\",gold,\"stand in the driving rain, cheering their teams.\",follow their footprints along the water.,gather as they sing.,\"mill the dealers hands among corpses, heading across the winding streets towards the fountain.\",0\n3346,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4568,Someone finds himself surrounded by hooded Dementors. He,Someone finds himself surrounded by hooded Dementors.,He,gold,\"turns towards someone's hand, then turns to horror.\",picks up a green pouch and closes it onto a tube.,twists and turns to avoid them.,spins and flips off into the air.,2\n3347,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4565,\"Someone swerves back to follow it. As he reaches out, thick ice\",Someone swerves back to follow it.,\"As he reaches out, thick ice\",gold,resembling dangles in his mouth.,seeps beside someone's swollen eyes.,pops out of his mouth.,begins to form on the handle of his broomstick.,3\n3348,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4563,\"Looming above him, they form the menacing shape of a huge, black dog. He\",\"Looming above him, they form the menacing shape of a huge, black dog.\",He,gold,await a movement.,'s used to resemble a halloween doll.,hovers for a moment until the golden snitch appears in front of him.,lies underwater in the doorway.,2\n3349,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4564,He makes a grab for it but it zooms sharply away. Someone,He makes a grab for it but it zooms sharply away.,Someone,gold,swerves back to follow it.,leaps onto the bridge and the others climb from the submarine.,\"goes to grab it, causing it to empty.\",walks into the holding two bottles.,0\n3350,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4566,\"As he reaches out, thick ice begins to form on the handle of his broomstick. He\",\"As he reaches out, thick ice begins to form on the handle of his broomstick.\",He,gold,practices his bags against the wall by the side of the platform.,pulls a pole away with his finger.,smashes the seat of the car's roof.,shakes his head as his goggles freeze over.,3\n3351,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4571,Spectators watch in horror as he hurtles towards the ground. Someone,Spectators watch in horror as he hurtles towards the ground.,Someone,gold,stands in the open waters of a ship that reads banks and resort of a crosswalk.,tumbles out from side - by - side and flies at his friend's feet.,uses a spell to break his fall.,\"straightens, unharmed, and kicks someone with a strike.\",2\n3352,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4570,\"Someone loses his grip on the broomstick and falls, helplessly, down through the clouds. Spectators\",\"Someone loses his grip on the broomstick and falls, helplessly, down through the clouds.\",Spectators,gold,watch in horror as he hurtles towards the ground.,\", below, someone blocking his attacker's chest in the chest, crumples him and falls again.\",\"spins her the wheel and she fires up as bullets rip through the car and into the back entrance, then someone into the abbey\",\"fall, surrounding himself as rain and the rest of the indian gang come up to battle them.\",0\n3353,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4567,He shakes his head as his goggles freeze over. Someone,He shakes his head as his goggles freeze over.,Someone,gold,shoots his puck down the head.,tumbles out of the pool.,finds himself surrounded by hooded dementors.,looks back at the height.,2\n3354,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4569,A Dementor looms over someone and opens its great mouth as if to suck his energy. Someone,A Dementor looms over someone and opens its great mouth as if to suck his energy.,Someone,gold,loops to his slytherin shoulders but falls face down.,\"watches the troll, igniting a circular portable fire gas.\",gets out of a helicopter as the mustang rounds closer on trails close.,\"loses his grip on the broomstick and falls, helplessly, down through the clouds.\",3\n3355,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4562,\"Someone peers into the hazy clouds. Looming above him, they\",Someone peers into the hazy clouds.,\"Looming above him, they\",gold,\"shadows on someone's parted lips, then turns to someone.\",\"are several inches apart, staring at the sea wreck.\",cut into the golden.,\"form the menacing shape of a huge, black dog.\",3\n3356,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4560,\"Lightning sets the broomstick of a Gryffindor player on fire. Wearing goggles as protection from the rain, someone\",Lightning sets the broomstick of a Gryffindor player on fire.,\"Wearing goggles as protection from the rain, someone\",gold,\"follows, spinning the black attack with his laser and setting it in a smaller blanket.\",slides his wrist in a silver blazer pocket and presses it to it across the water.,comes up and march them through the treasure.,swoops past the stand where the professors follow the action.,3\n3357,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4559,\"Around the Quidditch pitch, sodden spectators stand in the driving rain, cheering their teams. Lightning\",\"Around the Quidditch pitch, sodden spectators stand in the driving rain, cheering their teams.\",Lightning,gold,sets the broomstick of a gryffindor player on fire.,\"speeds out at the outside of the sign as someone heads off, wielding the launcher.\",walks to his left and lands on a rock.,\"points out the front rows, and prepping his staff for some people.\",0\n3358,anetv_Flh6nxGkf74,5510,The sculptor is building a large reptile like figure and carving it with tools. He,The sculptor is building a large reptile like figure and carving it with tools.,He,gold,\"finds a drawing of blue ink entitled, gold - writing.\",\"takes it, then caresses the tool with his electric brush.\",is being interviewed where he is talking about his skill.,is being beaten into a barn by a divider nestled inside the foreground.,2\n3359,anetv_Flh6nxGkf74,5509,There's a sand sculptor named Brian who is on a beach building animal figures out of sand. The sculptor,There's a sand sculptor named Brian who is on a beach building animal figures out of sand.,The sculptor,gold,is building a large reptile like figure and carving it with tools.,kicks the rock and misses the ball on a sporting sea.,has plastic sheets on him's front feet on the frame as other people gather around him.,changes and turns and walking across the table toward the window.,0\n3360,anetv_4aiE_-yQWZE,7808,\"After the mats are rolled out, other individuals begin walking across the floor dressed in fencing uniforms. The athletes then\",\"After the mats are rolled out, other individuals begin walking across the floor dressed in fencing uniforms.\",The athletes then,gold,begin to do designs throughout the competition.,begin walking around and talking to each other as a small mascot walks across the mat.,begin wrestling the wrestler along in two more trampoline for the first time of fighting.,take turns jumping over a bar without squatting for stunts and kicking.,1\n3361,anetv_4aiE_-yQWZE,7810,\"Finally, a match begins and once it is over about five of the individuals pose for a picture. The camera then\",\"Finally, a match begins and once it is over about five of the individuals pose for a picture.\",The camera then,gold,hits a man with the people leaning over and watching him dance.,moves to put her hands around her waist and smile.,starts dancing with a lady standing by in the middle of competition.,speeds up and shows several teams and people entering and leaving the gym.,3\n3362,anetv_4aiE_-yQWZE,7809,\"The athletes then begin walking around and talking to each other as a small mascot walks across the mat. Finally, a match begins and once it\",The athletes then begin walking around and talking to each other as a small mascot walks across the mat.,\"Finally, a match begins and once it\",gold,is finished with the crowd not they play.,is over about five of the individuals pose for a picture.,is a short roll between the two of the people who are interviewed.,'s up and one individual gets on the rope paper swings out in the same direction that are the other direction.,1\n3363,anetv_4aiE_-yQWZE,7811,\"The camera then speeds up and shows several teams and people entering and leaving the gym. Next, fencing matches are shown between about 12 pairs of people and they\",The camera then speeds up and shows several teams and people entering and leaving the gym.,\"Next, fencing matches are shown between about 12 pairs of people and they\",gold,\"plays a game are still on guests, showing how to hit the ball with an energy jump.\",show more runners taking a difficult up from path.,begin to use a small mallet to throw out a goal.,line up and give each other a high five before huddling up and having a talk with their coach.,3\n3364,anetv_4aiE_-yQWZE,7807,\"Several people are dressed in sweatsuits rolling out mats in a large gym. After the mats are rolled out, other individuals\",Several people are dressed in sweatsuits rolling out mats in a large gym.,\"After the mats are rolled out, other individuals\",gold,appear racing pass the man and start going away.,walk around and begin to dodge nice.,lift up and look up in their room until the finish.,begin walking across the floor dressed in fencing uniforms.,3\n3365,anetv_ZmoSxXei954,15393,A man is seen standing in a gym holding a racket while the camera pans out to show two men. The men,A man is seen standing in a gym holding a racket while the camera pans out to show two men.,The men,gold,continue dancing around the floor several times and end by speaking to the camera.,move around one another in the gym hitting a ball off the wall.,are then seen throwing the ball around a room while others watch on the side.,continue exercising with one another and end by jumping off and walking around.,1\n3366,anetv_ZmoSxXei954,15394,The men move around one another in the gym hitting a ball off the wall. The two,The men move around one another in the gym hitting a ball off the wall.,The two,gold,continue playing cymbals and singing while laughing to one another.,continue to hit it on the last block.,continue hitting the ball around and walking around to hit it.,continue to drum at the same pins and hit with the ball.,2\n3367,anetv_8nj8tlvLyUo,12073,\"A dog jumps in some sand dirt and is so happy about it. There are so many awesome and different things being made out of sand, it\",A dog jumps in some sand dirt and is so happy about it.,\"There are so many awesome and different things being made out of sand, it\",gold,measures and focuses it very fast.,thunders as they rain the bounds.,looks like it takes a lot of time and energy.,comes in a slow motion and the shots of a lacrosse board plays with other people jumping down on the grass behind pictures.,2\n3368,anetv_8nj8tlvLyUo,12072,Someone is running on the beach towards so sand castle competitions. A dog,Someone is running on the beach towards so sand castle competitions.,A dog,gold,enters the hut and talk about it.,jumps in some sand dirt and is so happy about it.,is standing in the back of the schoolhouse and speaks to the boy in white as the yellow umbrella cover in on him.,is holding babies in her arms.,1\n3369,anetv_8nj8tlvLyUo,12074,\"There are so many awesome and different things being made out of sand, it looks like it takes a lot of time and energy. There\",\"There are so many awesome and different things being made out of sand, it looks like it takes a lot of time and energy.\",There,gold,is an underwater sport shown where all the stars are seen.,is the words on the screen.,are men who are setting back.,are people walking around and looking at all of them.,3\n3370,anetv_o0d1PXKkJqM,6908,There's a man in a pink shirt and a lady in a white tank top holding bagpipes in her hand. They,There's a man in a pink shirt and a lady in a white tank top holding bagpipes in her hand.,They,gold,walk engaging in a soccer practice in front of all the players.,are playing a game of volleyball and doing tricks on the curling bars.,continues talking until they begin playing the drums while they continue to play drums together.,are standing in a parking lot near a silver car.,3\n3371,anetv_o0d1PXKkJqM,6910,\"The lady begins playing her bagpipes as the man watches her play. She continues playing and after she's done, the man\",The lady begins playing her bagpipes as the man watches her play.,\"She continues playing and after she's done, the man\",gold,claps for her and gives her a hug.,stops playing and continues playing her violin.,lowers the microphone and continues to talk.,takes off her saxophone and walks away.,0\n3372,anetv_o0d1PXKkJqM,6909,They are standing in a parking lot near a silver car. The lady,They are standing in a parking lot near a silver car.,The lady,gold,begins playing her bagpipes as the man watches her play.,is cleaning a car with paint.,waits at the end of the street and a couple riding camels waiting.,puts three lug tires and mom interacting in the woods.,0\n3373,anetv_8381XS5ZDNs,15813,A piece of exercise equipment spins around on a panel when a woman suddenly appears. She,A piece of exercise equipment spins around on a panel when a woman suddenly appears.,She,gold,climbs up a wall and keeps flipping.,climbs on the machine and begins exercising while the camera pans around her movements.,begins running the uneven bars in front of her head jumping and spinning while others moves.,begins demonstrating the tips to move forward and at the end.,1\n3374,anetv_8381XS5ZDNs,15814,She climbs on the machine and begins exercising while the camera pans around her movements. She,She climbs on the machine and begins exercising while the camera pans around her movements.,She,gold,continues moving and then switch to her awaiting failing and other others seen.,continues peeling off the sides of the machine.,continues to use the equipment and eventually shows a picture of the equipment.,does the back side of the bars and the video ends.,2\n3375,lsmdc1018_Body_Of_Lies-80221,13644,\"Hordes of people swarm on the street, where traders sell produce from barrows. Someone\",\"Hordes of people swarm on the street, where traders sell produce from barrows.\",Someone,gold,trains in a dirt hut.,\"walks along the street with someone, who wears a headscarf.\",women are on policemen.,sets over to the cashier's window.,1\n3376,lsmdc1018_Body_Of_Lies-80221,13645,\"At a clinic, someone sits in a waiting room with a group of women and children. Some of the women\",\"At a clinic, someone sits in a waiting room with a group of women and children.\",Some of the women,gold,sit around a corner reading the dressing room.,\"talk to each other, while someone leads them to the studio to free her.\",are eating a ice cream.,look at him curiously and smile.,3\n3377,lsmdc3092_ZOOKEEPER-45220,3478,Someone gives him a baffled frown. Someone,Someone gives him a baffled frown.,Someone,gold,talks to someone's date.,aims a card around covered and steals them from her.,folds the paper just as he chugs.,mounts his bike then rides away throwing someone a final glance.,3\n3378,lsmdc3092_ZOOKEEPER-45220,3477,He pretends to shoot an arrow. Someone,He pretends to shoot an arrow.,Someone,gold,gives him a baffled frown.,continues as the police signal for the match.,gives him a fishing hook.,turns and throws his aim at the house.,0\n3379,anetv_YCHmXwLhs3A,11801,He is putting training wheels on the back wheel of the bike. He,He is putting training wheels on the back wheel of the bike.,He,gold,puts the front tire on the bike.,shows the inside of a box and shows off the top off the bike.,puts the two pedals on and begins sliding every time.,\"meticulously shows how to get the first bike, and then jumps like the man.\",0\n3380,anetv_YCHmXwLhs3A,11804,He puts the pedals onto the bike. He,He puts the pedals onto the bike.,He,gold,puts the parts back on the bike.,flips out a chain web.,puts the seat onto the bike.,puts tiles on the shingles.,2\n3381,anetv_YCHmXwLhs3A,11802,He puts the front tire on the bike. He,He puts the front tire on the bike.,He,gold,holds a hose and then markers the snow ahead of his car.,jumps off the bike then sets down the hill next to it.,puts the handlebars on the bike.,puts his arms in his arms and tries to adjust the handlebars.,2\n3382,anetv_YCHmXwLhs3A,11800,A man is assembling a bike on a table. He,A man is assembling a bike on a table.,He,gold,throws it into the lane.,goes using a power pole to make it for him.,is putting training wheels on the back wheel of the bike.,puts glue on a fire.,2\n3383,anetv_YCHmXwLhs3A,11803,He puts the handlebars on the bike. He,He puts the handlebars on the bike.,He,gold,removes the tire off of the wheel with a gentle wrench.,gets off the bike and gets out of the lift.,puts powder onto the bicycle to ride over.,puts the pedals onto the bike.,3\n3384,anetv_DinaQYSgbtg,8427,A toddler washes dishes in a sink while stand on a chair. The boy,A toddler washes dishes in a sink while stand on a chair.,The boy,gold,laughs into a bucket.,walks outside with a toddler.,\"washes a cup, a sip cup and a dish.\",soaks his right side in a sink.,2\n3385,anetv_DinaQYSgbtg,10600,He wipes around the sink and continues washing dishes. He,He wipes around the sink and continues washing dishes.,He,gold,rinses shaving her head with a soda then rinses a sponge with solution.,shovels the sandwich in a sink to dry them from the storage bin.,puts the clean dishes next to him.,pauses and wipes his forehead off and notices a man standing in the tub.,2\n3386,anetv_DinaQYSgbtg,10599,A small child is seen standing before a sink washing dishes. He,A small child is seen standing before a sink washing dishes.,He,gold,takes soap into his hands and lays them into the sink.,is shown of the mountain with the image and the dish that is being washed.,puts the bucket down and puts a rag on the back rack.,wipes around the sink and continues washing dishes.,3\n3387,anetv_DinaQYSgbtg,8428,\"The boy washes a cup, a sip cup and a dish. After, the boy\",\"The boy washes a cup, a sip cup and a dish.\",\"After, the boy\",gold,rinse the dishes with several green spices and drain it.,jumps on the chair and then takes the dish again.,put on the oven and adds chopped lime juice into four bread slices.,applies water to calf.,1\n3388,anetv_R6INcHHxlNs,4029,A person is seen shirtless standing in a kitchen and holding a mop. The man,A person is seen shirtless standing in a kitchen and holding a mop.,The man,gold,continues speaking to the camera and shows how to use the vacuum.,begins moving the tiles up and down.,looks back and laughs to the camera while holding the mop.,grabs the mop and throws it across the room.,2\n3389,anetv_R6INcHHxlNs,4030,The man looks back and laughs to the camera while holding the mop. He,The man looks back and laughs to the camera while holding the mop.,He,gold,cheers while speaking to the camera.,continues to laugh and dance around while pushing the mop around.,continues to swing away from him while others watch and cheer to strum.,runs over to the water in front of him grabbing a wall and another trying to get on.,1\n3390,anetv_yxSBQXuOwuc,18437,A man is then shown wearing scubba gear and giving various hand signals to the camera. The water sounds still play and the man,A man is then shown wearing scubba gear and giving various hand signals to the camera.,The water sounds still play and the man,gold,begins to shoot from his nose.,continues to apply a bow on it as the man continues showing.,\"shows us the drums occasionally at the camera and after he begins mowing, but has n't moved along.\",shows you various moves and what they mean under water.,3\n3391,anetv_Fde_qSwXRzY,9556,Two boy scouts are seen standing and speaking to a large group of people and attempting to light a match. One,Two boy scouts are seen standing and speaking to a large group of people and attempting to light a match.,One,gold,cups his hands and creates a flame using oxygen and puts the flame into a pit.,are then seen walking out in frame and leading prepare to leave.,begins to hit the ball around as woman captures the movements.,captures result of still shots of the person playing in a field.,0\n3392,anetv_mc-1msYF8Xo,1584,Various shots of plated food are shown followed by a sandwich sitting on a table and a woman holding up pans. The woman then,Various shots of plated food are shown followed by a sandwich sitting on a table and a woman holding up pans.,The woman then,gold,puts ingredients onto sandwich bread and mixes the two together and takes multiple bites.,pours several ingredients into the bucket by pouring shots into a bowl filled with ingredients.,mixes some ingredients into a bowl and then cuts up lemons and limes while measuring some ingredients.,covers the paper with the finished product and sets it in the oven.,0\n3393,anetv_P8M00PRbI3c,8504,A female news reporter is talking in a news room. We,A female news reporter is talking in a news room.,We,gold,are playing a game of beach soccer.,are play fencing together in a studio.,are gathered on the video screen.,see several people riding on horses as a crowd watches.,3\n3394,anetv_P8M00PRbI3c,8506,\"The people are hitting bags with sticks as they ride. The people are then interviewed about the game, and a man\",The people are hitting bags with sticks as they ride.,\"The people are then interviewed about the game, and a man\",gold,holds an umbrella to help them in one end.,is shown shooting arrows.,is seen standingin the vehicle in his time.,rides her horse right out.,1\n3395,anetv_hhN1647pP88,13062,He is working with tools and sand. He,He is working with tools and sand.,He,gold,\"is momentarily on by the object, after he sits with the machine and keeps going.\",is walking in a rest public business of.,uses the sand to spread evenly against the walls.,shows off a shoe.,2\n3396,anetv_hhN1647pP88,13061,A man is wearing a safety vest. He,A man is wearing a safety vest.,He,gold,\"talks about it, kind of soldering.\",catches a fish on a mountain.,is demonstrating a suit as he talks.,is working with tools and sand.,3\n3397,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60290,5633,Someone catches sight of something; he turns to someone with shock in his eyes. Someone,Someone catches sight of something; he turns to someone with shock in his eyes.,Someone,gold,'s tight down the stairs.,snatches up two rusty dwarf axes and leaps onto the tomb.,\"is rolling, hushed determination, not afraid to go.\",\"headbutts someone that protrude in the hole, then manages to shovel the grass.\",1\n3398,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60290,5632,People slam and wedge the doors. Someone catches sight of something; he,People slam and wedge the doors.,Someone catches sight of something; he,gold,turns to someone with shock in his eyes.,leaps up after him.,\"disappears and faces her, then looks away.\",opens the double locks.,0\n3399,anetv__n0cR3Oshxg,1825,\"Then, the woman make dough balls and putsion a baking pan, also a teen makes dough balls and puts in baking pan. After, the man\",\"Then, the woman make dough balls and putsion a baking pan, also a teen makes dough balls and puts in baking pan.\",\"After, the man\",gold,adds tomatoes and feeds them up on top.,put the cookies in the oven.,serves the cookies and bread and puts in an oven to make a serve on chicken.,cuts mustard and puts the cookie in a bin several blocks.,1\n3400,anetv_G4tUTpJV-so,14718,An asian woman is seen kneeling on the floor. She,An asian woman is seen kneeling on the floor.,She,gold,\"rises very slowly, arms first.\",pulls a large weight down from her waist.,jumps down and poses by the beam while laughing into the audience.,shows various ingredients and supplies.,0\n3401,anetv_G4tUTpJV-so,14719,\"She rises very slowly, arms first. She\",\"She rises very slowly, arms first.\",She,gold,\"retreats, then hesitates, and raises her bottle, then shakes it.\",does several martial arts moves for the camera.,looks at her and holds on her entire trust.,beams as she follows herself out.,1\n3402,anetv_APlxSpTZVPI,12852,Several clips are shown of people performing impressive flips and tricks along a beach while other break dancers watch on the side. The men,Several clips are shown of people performing impressive flips and tricks along a beach while other break dancers watch on the side.,The men,gold,continue to take turns with one another performing tricks and later include poles and hoops to jump through.,continue to play around with the camera helping one another.,continues past by one after the other away then laughing.,walk to the finished jump successfully moving his arms up and down while still speaking to the camera.,0\n3403,anetv_APlxSpTZVPI,9994,A man wearing white pants plays an instrument. A man,A man wearing white pants plays an instrument.,A man,gold,holds a string ball to his chest.,points to his young dog.,wearing blue pants plays and instrument.,picks his piano up by himself.,2\n3404,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2048,\"75, 000 orcs are spread out across the pelennor fields like a sea of black ants. Trolls\",\"75, 000 orcs are spread out across the pelennor fields like a sea of black ants.\",Trolls,gold,load the catapults with rocks.,chases a girl through a cart.,grabs a rifle and crashes toward them.,likely going around in a series of fast momentum to acknowledge the composer.,0\n3405,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2045,Horror sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers. Someone,Horror sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers.,Someone,gold,yells at the fight expo in the back - rise high high.,\"treads forward, leaving the vehicles vanish.\",looks down at someone's unconscious body.,sees them with guns drawn by an ax.,2\n3406,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2046,Someone looks down at someone's unconscious body. Someone,Someone looks down at someone's unconscious body.,Someone,gold,dashes out of the hospital barn.,takes a step towards the others.,clutch his hand to his throat and starts to drag him away.,has run to someone and bends towards him.,3\n3407,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2054,A boulder smashes into a balcony full of civilians. Someone's staff,A boulder smashes into a balcony full of civilians.,Someone's staff,gold,are tracking around him toward the jeep.,smashes into the back of someone's head!,arrive inside a pressure gauge.,stand on the tracks along the track between someone and someone.,1\n3408,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2043,Someone turns to his lieutenants. The orc catapults,Someone turns to his lieutenants.,The orc catapults,gold,to sling covered tunnels.,are carried from their loom directly above them.,do not fire rocks.,quickly vanish from dust.,2\n3409,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2050,Battering rams and siege towers are hauled on chains. Thousands of flickering torches,Battering rams and siege towers are hauled on chains.,Thousands of flickering torches,gold,burn on the distant track where the burning route blows down.,reflected in the sky flick fires and blocking the spectators.,give the army the look of a moving city in the murky mordor twilight.,\"surround a mountain flying across clear sky, dimly lit by the ash cloud filling the air.\",2\n3410,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2053,Boulders hurtle from catapults across the fields towards minas tirith. A boulder,Boulders hurtle from catapults across the fields towards minas tirith.,A boulder,gold,hides him as the train rings nearby.,rakes around waterfall with protesters watches.,smashes into a balcony full of civilians.,taps the top of a motorcade's white head.,2\n3411,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2049,Trolls load the catapults with rocks. Battering rams and siege towers,Trolls load the catapults with rocks.,Battering rams and siege towers,gold,rise on someone 'deck.,are hauled on chains.,appear with packaged freebies in the mothership.,are sprinkled over the wheelman.,1\n3412,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2051,Thousands of flickering torches give the army the look of a moving city in the murky mordor twilight. A huge boulder,Thousands of flickering torches give the army the look of a moving city in the murky mordor twilight.,A huge boulder,gold,begin to emerge from the forest.,crashes into the canyon as it waves to one another.,smashes into the wall of minas.,crashes across the ground.,2\n3413,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2041,Both the horse and someone are impaled with orc arrows. Iorlas and other soldiers,Both the horse and someone are impaled with orc arrows.,Iorlas and other soldiers,gold,do hiding along a roof of ruined yang.,arrive at the citadel with someone's unconscious body on a stretcher.,is getting wild beneath a fire attacks with flaming torches.,\"unable too free themselves, revealing an army of people sitting on the ground.\",1\n3414,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2055,Someone gallops down the winding labyrinthine streets on shadowfax against the flow of fleeing soldiers. Shadowfax,Someone gallops down the winding labyrinthine streets on shadowfax against the flow of fleeing soldiers.,Shadowfax,gold,\"attacks his son, who swipes at a bit.\",wave as someone aims the animal satisfied.,\"jumps, horns out through the gates of the school and takes to a priest.\",bounds up stairs onto the level one battlements.,3\n3415,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2047,\"Someone has reached the edge of the courtyard. 75, 000 orcs\",Someone has reached the edge of the courtyard.,\"75, 000 orcs\",gold,are in a bowling graveled plank's glass tower!,are smashing the pucks and racing along the costumed racks.,are spread out across the pelennor fields like a sea of black ants.,soldiers out through the stands street among piles of commendatore.,2\n3416,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2044,The orc catapults do not fire rocks. Horror,The orc catapults do not fire rocks.,Horror,gold,fly flying out of the opening.,\"come to the crypt, and see someone flying from the sky again.\",sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers.,vanish and escape ways ahead of their classmates.,2\n3417,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2040,A guard yells down from the parapet above the huge. Both the horse and someone,A guard yells down from the parapet above the huge.,Both the horse and someone,gold,\"run off, then plummet together.\",hurry through the front door of the bath.,run out of their positions.,are impaled with orc arrows.,3\n3418,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2052,A huge boulder smashes into the wall of minas. Boulders,A huge boulder smashes into the wall of minas.,Boulders,gold,hurtle from catapults across the fields towards minas tirith.,strikes the dead guard holding a broomstick.,race around the street one more time for the meeting.,is hit onto the body.,0\n3419,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2057,Mighty wooden catapults positioned within the walls of minas tirith are fired. catapults,Mighty wooden catapults positioned within the walls of minas tirith are fired.,catapults,gold,\"send their great rocks high into the air, over the battlements!\",show buildings and buildings which run into the forest.,\"are sucked around the factory, knocking someone off his feet.\",are heard running towards the gigantic men.,0\n3420,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2058,The orc front ranks are in disarray. Someone,The orc front ranks are in disarray.,Someone,gold,crashes one more time to his other flag.,gathers their belongings up a display filled of accordion rifles.,walks the battlements as the huge boulders rain onto the orc army below.,grabs a hidden phone.,2\n3421,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2042,Someone emerges from the tower hall towards his son. Someone,Someone emerges from the tower hall towards his son.,Someone,gold,\"spies someone at someone's feet and arms, like the two guards.\",passes the televisions toward someone as he leads hector up the dance floor.,bends to the stretcher bearing his son.,nudges the wood against his.,2\n3422,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2056,Shadowfax bounds up stairs onto the level one battlements. Someone,Shadowfax bounds up stairs onto the level one battlements.,Someone,gold,spots a stone cross which recovers.,\"looks at the approaching orc army, now less than 50 yards from the walls of the city.\",walks to a vast red ledge.,has himself up ready amongst the thickly painted gray with columns.,1\n3423,lsmdc0029_The_Graduate-64423,10188,She goes to the door. She,She goes to the door.,She,gold,takes a step back and moves for the door.,steps out of the window and looks down.,walks through the office and where she is sorting clothes on the floor.,opens the door and steps into the hall.,3\n3424,lsmdc0029_The_Graduate-64423,10189,She opens the door and steps into the hall. He,She opens the door and steps into the hall.,He,gold,stares at the bag anxiously as she searches through the console.,\"cut dry clothes casually, almost imperceptibly to the camera.\",crosses to the bag and grabs his hand.,goes to the door.,3\n3425,lsmdc1029_Pride_And_Prejudice_Disk_One-83807,12966,Someone heads towards the house. She,Someone heads towards the house.,She,gold,enters a retirement table with a flag draped over her shoulder.,pauses at the driver's door.,\"pauses, lets her go.\",\"pauses for a moment, lost in thought.\",3\n3426,anetv_fTGtoTlJyh0,16606,A person is spray painting bars that are taped together different colors. They,A person is spray painting bars that are taped together different colors.,They,gold,are seen with shiny clothes down a box.,are painting it with various toys.,are hammering down tiles on a roof.,put a sticker of words onto the bars.,3\n3427,anetv_iFA1XhZ6VM8,1255,\"The ingredients for a chocolate cake is displayed, then a person puts flour oil, eggs, milk in a bowl. Then, the person\",\"The ingredients for a chocolate cake is displayed, then a person puts flour oil, eggs, milk in a bowl.\",\"Then, the person\",gold,adds the mixture to the white to make lemonade and display the chocolate.,\"adds the eggs, after layers with vanilla, milk and flowers and parsley on the top.\",mix all the ingredients and adds chocolate and mix it again.,applies the dough and put it on the table while talk about mixing it.,2\n3428,anetv_iFA1XhZ6VM8,12853,\"Then, the person mix the ingredients, and then adds chocolate and mix. After, the person\",\"Then, the person mix the ingredients, and then adds chocolate and mix.\",\"After, the person\",gold,\"put the cake mix in a baking pan, then bake in an oven.\",gives the juice and that the mix is sitting in a bowl and drum!,\"add a different mix, after happy and mix everything together.\",\"adds something to a spoon, mix then pastries and oranges, tomatoes, and water, and puts them in the oven.\",0\n3429,anetv_iFA1XhZ6VM8,1257,\"After, the person adds the mix in a baking pan which puts in a rice cooker for 30 min. Next, the person\",\"After, the person adds the mix in a baking pan which puts in a rice cooker for 30 min.\",\"Next, the person\",gold,empties the dough into the pot and adds liquids and colors to the pan laying on the eggs.,adds a blue pot and puts the oven on the oven.,take out the cake and put on a plate.,\"decorates the lemon to mix them in a split, then watch them in front of the oven like four.\",2\n3430,anetv_iFA1XhZ6VM8,12852,\"A person puts flower, sugar, water and two eggs in a bowl. Then, the person\",\"A person puts flower, sugar, water and two eggs in a bowl.\",\"Then, the person\",gold,\"adds baking steeping water, flour and sugar on the water.\",puts chicken in the tea bowl in a pail.,pours ingredients into a cup and mixes the juice.,\"mix the ingredients, and then adds chocolate and mix.\",3\n3431,anetv_iFA1XhZ6VM8,1256,\"Then, the person mix all the ingredients and adds chocolate and mix it again. After, the person\",\"Then, the person mix all the ingredients and adds chocolate and mix it again.\",\"After, the person\",gold,adds the mix in a baking pan which puts in a rice cooker for 30 min.,serves the mixture and wash it.,\"adds cheese and sugar, and vanilla.\",\"blend a batch of colors on the board, adding the served tap in boiled, water and the baked one.\",0\n3432,anetv_jsqD1NB63hk,14814,A young man is seen wearing goggles and speaking to the camera followed by him jumping into the pool. The boy,A young man is seen wearing goggles and speaking to the camera followed by him jumping into the pool.,The boy,gold,continues jumping around on the board while standing back on about his board swimming by the camera.,rocks back and fourth while the camera pans around the end and people bowling in slow motion.,continues to swim as well as a toddler surfing with his arm around him.,gets out and is seen once again jumping into the pool and swimming to the side to present an object.,3\n3433,lsmdc1010_TITANIC-77454,20021,\"People step out of the sitting room and stop a dark - haired steward in the hallway. On the upper deck, a dark - haired man\",People step out of the sitting room and stop a dark - haired steward in the hallway.,\"On the upper deck, a dark - haired man\",gold,tosses a blond man a chunk of ice.,sits under a coffin.,grabbed a pistol from under a man's helmet.,pulls up in front of a villa.,0\n3434,lsmdc1010_TITANIC-77454,20016,Someone turns to the bridge door as someone enters. Someone,Someone turns to the bridge door as someone enters.,Someone,gold,enters and takes a remote.,closes another mantle floor.,follows someone onto the bridge deck.,puts her books back to her seat.,2\n3435,lsmdc1010_TITANIC-77454,19984,\"He snaps his fingers and points to the car, then yanks open the car door, revealing empty seats. Smiling, people\",\"He snaps his fingers and points to the car, then yanks open the car door, revealing empty seats.\",\"Smiling, people\",gold,walk into the room and use the hats and straw to cover their face with their hands.,run through the cars.,run onto the forward well deck.,walk behind him as she heads towards the park camera.,2\n3436,lsmdc1010_TITANIC-77454,19987,\"Watching from the crow's nest, another man, Fleet, looks down and taps his comrade, someone, on the arm. They\",\"Watching from the crow's nest, another man, Fleet, looks down and taps his comrade, someone, on the arm.\",They,gold,stare down at people.,dance down the street leading to a bushes.,\"duo checks their class, then makes a single shot.\",are wearing oxygen under protective caps.,0\n3437,lsmdc1010_TITANIC-77454,20000,\"People stop kissing as the ship trembles. On the bridge deck, someone\",People stop kissing as the ship trembles.,\"On the bridge deck, someone\",gold,\"glances down at his hands, resting on the shaking rail.\",glances around wildly as someone searches through the mug filled with grass.,hurries toward the jet.,retreats above the ship as the sniper climbs from the lifeboat.,0\n3438,lsmdc1010_TITANIC-77454,20009,The ship continues moving alongside the iceberg. Someone,The ship continues moving alongside the iceberg.,Someone,gold,finds someone holding a minister.,crawls past someone around the corner.,\"runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room.\",gazes up from a mushroom clouds surrounding the ship.,2\n3439,lsmdc1010_TITANIC-77454,20011,He follows the others thrugh one of the door ways. The door,He follows the others thrugh one of the door ways.,The door,gold,\"opens, stop the door and pull it shut.\",is left open through the back door.,\"is opened and biscuits and slowly, quicker, the package, all clipped to wounded it.\",\"closes, leaving several stokers behind.\",3\n3440,lsmdc1010_TITANIC-77454,19998,\"In the crow's nest, the men stare at the iceberg as the ship heads straight toward it. Someone\",\"In the crow's nest, the men stare at the iceberg as the ship heads straight toward it.\",Someone,gold,stares at the iceberg.,climbs into the lifeboat beside him.,swirls a dolly around someone's shoulders and pulls him over the edge.,\"strides after the fellowship, then dashes toward the tower.\",0\n3441,lsmdc1010_TITANIC-77454,20012,\"The door closes, leaving several stokers behind. As the others escape past closing doors, the remaining stoker\",\"The door closes, leaving several stokers behind.\",\"As the others escape past closing doors, the remaining stoker\",gold,finds themselves on the back of an suv four - supported by someone.,\"gather at a pump, with rows of soldiers and debris.\",dives under the last closing door and falls out as its steel hatch slams shut.,reaches the edge of the second floor.,2\n3442,lsmdc1010_TITANIC-77454,20002,\"Above, Fleet holds onto the rim of the crow's nest, while someone sits on the floor. In the bridge, someone\",\"Above, Fleet holds onto the rim of the crow's nest, while someone sits on the floor.\",\"In the bridge, someone\",gold,keeps the wheel turned hard left.,leaps into the harbor.,lifts off the grappling pirate feet towards the inspectors' door.,'s friends stare broadly.,0\n3443,lsmdc1010_TITANIC-77454,19997,\"The propellers spin in the opposite direction. In the crow's nest, the men\",The propellers spin in the opposite direction.,\"In the crow's nest, the men\",gold,stare at the iceberg as the ship heads straight toward it.,ride buckets down the boat.,hug their comrade and rip together.,are swept over foot.,0\n3444,lsmdc1010_TITANIC-77454,20003,\"In the bridge, someone keeps the wheel turned hard left. Below deck, someone\",\"In the bridge, someone keeps the wheel turned hard left.\",\"Below deck, someone\",gold,surfaces his rifle's four florescent lights.,wanders to one of two railway huts located in a grassy field.,\"sits on the passenger seat, watching as he guides his gaze onto a glamorous hmong younger guy.\",sits up in his bunk.,3\n3445,lsmdc1010_TITANIC-77454,19985,\"Smiling, people run onto the forward well deck. Someone\",\"Smiling, people run onto the forward well deck.\",Someone,gold,joyfully hovers her fists on a half - marked vessel.,returns in forth cutting.,drinks a sip of tea.,places her hand on someone's lips and gazes at him.,3\n3446,lsmdc1010_TITANIC-77454,19976,\"Someone, with his collar up, peers over the railing outside the wheelhouse. In the backseat of the car, someone\",\"Someone, with his collar up, peers over the railing outside the wheelhouse.\",\"In the backseat of the car, someone\",gold,\"slaps her hand against the back window, then slowly slides it downward.\",watches a tiny jet flying through the sky.,gets the lighter aside and follows the advice back along some rectangular beds wall beside a secret grave.,clutches her wrist as she grasps the chain on its attached.,0\n3447,lsmdc1010_TITANIC-77454,19999,\"At the bow railing, a man runs toward it. People\",\"At the bow railing, a man runs toward it.\",People,gold,marched off and in his transport an iv body.,stop kissing as the ship trembles.,\"watches someone in the boat, his unconscious face splattered with sweat.\",peer toward the rear view mirror.,1\n3448,lsmdc1010_TITANIC-77454,19992,Someone steps onto the bridge and answers the phone. Someone,Someone steps onto the bridge and answers the phone.,Someone,gold,falls in a spiral of smoke.,hangs up and turns to someone as he runs to the bridge door.,drops from the back door and starts up the stairs.,indicates her name and total.,1\n3449,lsmdc1010_TITANIC-77454,20018,\"In his cabin, someone jumps down from his bunk into inch - deep water and turns on the overhead light. His roommates\",\"In his cabin, someone jumps down from his bunk into inch - deep water and turns on the overhead light.\",His roommates,gold,follow the outline of the square.,disappear from a doorway.,follow as he opens the door.,sweep over the sketch as someone leans closer.,2\n3450,lsmdc1010_TITANIC-77454,20014,\"In the crow's nest, Fleet turns to someone. People and the two men\",\"In the crow's nest, Fleet turns to someone.\",People and the two men,gold,stand erect with a man who's lost in a grave.,\"lean down upon someone, who is writhing in shallow rocks.\",\"peer over the railing at the iceberg, now behind the ship.\",hurry down a passageway.,2\n3451,lsmdc1010_TITANIC-77454,20022,\"On the upper deck, a dark - haired man tosses a blond man a chunk of ice. He\",\"On the upper deck, a dark - haired man tosses a blond man a chunk of ice.\",He,gold,lifts him up in front of someone and flings them onto a ledge.,lifts handfuls of other weapons and shoving it into his mitt.,passes in the opposite direction of the sea.,tosses the ice back.,3\n3452,lsmdc1010_TITANIC-77454,20020,People and others follow running rats down a hallway. People,People and others follow running rats down a hallway.,People,gold,step out of the sitting room and stop a dark - haired steward in the hallway.,hold up some bombs.,are gathered on one of the balconies leading to the train leading them.,start dancing around to catch the gum.,0\n3453,lsmdc1010_TITANIC-77454,19991,\"Fleet rings the lookout bell three times and grabs a telephone, which rings on the bridge. Someone\",\"Fleet rings the lookout bell three times and grabs a telephone, which rings on the bridge.\",Someone,gold,falls into a kneeling position with his rear and drops his head.,steps onto the bridge and answers the phone.,gets up and leaves the stage.,leaves the un - packing room.,1\n3454,lsmdc1010_TITANIC-77454,19993,Someone hangs up and turns to someone as he runs to the bridge door. Quartermaster someone,Someone hangs up and turns to someone as he runs to the bridge door.,Quartermaster someone,gold,leans his head against his shoulder.,turns the wheel to the left.,\"waits as he walks to the curb, where someone is in a conference room shirt.\",is pulling preventing of someone's ring.,1\n3455,lsmdc1010_TITANIC-77454,19979,\"Someone strokes someone's hair, then kisses his forehead. He\",\"Someone strokes someone's hair, then kisses his forehead.\",He,gold,raises his head and walks off.,lays his head on her chest.,\"glances at the grains, then kneels.\",rests his chin on his shoulder.,1\n3456,lsmdc1010_TITANIC-77454,20004,\"Below deck, someone sits up in his bunk. In the cabin, someone\",\"Below deck, someone sits up in his bunk.\",\"In the cabin, someone\",gold,wakes his stupid black plastic blanket propped up by his chin.,sits at his desk.,throws it up at someone.,lies on the floor beside someone and licks his lips.,1\n3457,lsmdc1010_TITANIC-77454,19980,\"Someone's forehead tenses as he closes, then opens his eyes. He\",\"Someone's forehead tenses as he closes, then opens his eyes.\",He,gold,finds his love heart.,finds himself gasping for a period of time.,looks past them to others.,glances at the note again.,3\n3458,lsmdc1010_TITANIC-77454,19982,\"In the hold, the two stewards creep toward the car. One steward\",\"In the hold, the two stewards creep toward the car.\",One steward,gold,follows the truck through the front gate.,shines his flashlight in the car's steamed - up windows.,arrives with a jacket.,stops and two people are herded into the mercedes.,1\n3459,lsmdc1010_TITANIC-77454,19989,The men turn and gaze past the ship. Their eyes,The men turn and gaze past the ship.,Their eyes,gold,\"travel over the exposed soldiers, under a picturesque black and white jacket on the side - belts.\",\"widen as a large iceberg looms, straight ahead.\",peer from a collection of museum - shaped photos.,fall to a train below as someone frantically alight with someone and the animal.,1\n3460,lsmdc1010_TITANIC-77454,19977,\"In the backseat of the car, someone slaps her hand against the back window, then slowly slides it downward. Naked and his face dripping with sweat, someone\",\"In the backseat of the car, someone slaps her hand against the back window, then slowly slides it downward.\",\"Naked and his face dripping with sweat, someone\",gold,lowers his shotgun then glances at the car's stone wall.,reaches the edge of the dressing corridor and crouches down.,shakes several purposefully.,lies on top of someone.,3\n3461,lsmdc1010_TITANIC-77454,19996,\"Underwater, the ship's main propeller slows. An engineer\",\"Underwater, the ship's main propeller slows.\",An engineer,gold,pulls down a thick lever.,rays glow in the dust sky above and inside.,cautiously approaches the cabin panel.,stands leaning against an energy bar.,0\n3462,lsmdc1010_TITANIC-77454,20008,\"In the front well deck, someone pushes rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men. The ship\",\"In the front well deck, someone pushes rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men.\",The ship,gold,continues moving alongside the iceberg.,fires as a crewman waving hands from an oar.,'s ropes fly high in the air.,\"slows onto a rocky blade, one lodged under the top of a large chandelier.\",0\n3463,lsmdc1010_TITANIC-77454,20013,\"On the bridge, a row of lights blinks on the watertight door indicator panel. Someone\",\"On the bridge, a row of lights blinks on the watertight door indicator panel.\",Someone,gold,\"stares at the panel, then turns away.\",\"opens the gates, gazing out into goblin nightclub.\",\"continues to walk away, as the headmistress stands against the side.\",\"launches the electric engines, but the storm stays on a crest.\",0\n3464,lsmdc1010_TITANIC-77454,19983,One steward shines his flashlight in the car's steamed - up windows. He,One steward shines his flashlight in the car's steamed - up windows.,He,gold,\"snaps his fingers and points to the car, then yanks open the car door, revealing empty seats.\",takes the cigarette out of his pocket and goes off in the same direction.,\"notices a los angeles sign that reads, occasionally x - rays.\",takes out the gps and reads it.,0\n3465,lsmdc1010_TITANIC-77454,19994,Someone rushes over to the engine room telegraph and shifts the handle to full speed astern. Someone,Someone rushes over to the engine room telegraph and shifts the handle to full speed astern.,Someone,gold,enters someone munching a chicken.,shows someone's shot in his kill.,turns the wheel quickly.,\"taps one of his headlamps, then runs someone.\",2\n3466,lsmdc1010_TITANIC-77454,19988,They stare down at people. The men,They stare down at people.,The men,gold,turn and gaze past the ship.,crash into each other's eyes.,climb to the annual.,look on as the helmsman nears the front door.,0\n3467,lsmdc1010_TITANIC-77454,19990,\"Their eyes widen as a large iceberg looms, straight ahead. Fleet\",\"Their eyes widen as a large iceberg looms, straight ahead.\",Fleet,gold,flares into view and grows in a weird motion without being dragged on.,\"underwater, someone sinks deeper then swoop out over the elaborate oval ring.\",unrolls a section of its line and now quickly rolls back upwards.,\"rings the lookout bell three times and grabs a telephone, which rings on the bridge.\",3\n3468,lsmdc1010_TITANIC-77454,20015,\"On the bridge, someone addresses someone. Someone\",\"On the bridge, someone addresses someone.\",Someone,gold,manages to grab the fur or presses it upwards.,fires out one of the chopper's jet doors and disappears.,plays to the drums.,turns to the bridge door as someone enters.,3\n3469,lsmdc1010_TITANIC-77454,20007,\"On the bridge, someone turns the wheel to the right. In the front well deck, someone pushes\",\"On the bridge, someone turns the wheel to the right.\",\"In the front well deck, someone pushes\",gold,\"rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men.\",the leader toward the suv with his rifle on it.,a steer towards the building.,open the doors of the pirate boat with a rope handles steady clasps its former preserver.,0\n3470,lsmdc1010_TITANIC-77454,19978,\"Naked and his face dripping with sweat, someone lies on top of someone. He\",\"Naked and his face dripping with sweat, someone lies on top of someone.\",He,gold,\"inside, he lays both of her head and kisses her in the face.\",breathes heavily as they gaze at each other.,\"on someone's still body, he looks down her body, then slips into the capsule.\",\"walks towards him, placing his head away from her hand.\",1\n3471,lsmdc1010_TITANIC-77454,20010,\"Someone runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room. Workers\",\"Someone runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room.\",Workers,gold,run through the rising water and crawl under the lowering doors.,enter a panel on the festooned wall.,and the men strut away from the top of the platform.,gaze at the departing guests.,0\n3472,lsmdc1010_TITANIC-77454,20006,\"He glances up at the trembling crystal chandelier above. On the bridge, someone\",He glances up at the trembling crystal chandelier above.,\"On the bridge, someone\",gold,turns the wheel to the right.,drops her gaze to her desk.,hurries slowly down the path of a tunnel with a stone.,hangs out a drawer and looks about frantically.,0\n3473,lsmdc1010_TITANIC-77454,20017,Someone follows someone onto the bridge deck. Someone,Someone follows someone onto the bridge deck.,Someone,gold,shifts to the ceiling as he nears the courtroom.,continues their flashlights on land.,steps down the gate.,\"peers down from the bridge deck shelter, then stands at the bridge railing, overlooking the front well deck.\",3\n3474,lsmdc1010_TITANIC-77454,19981,\"He glances at the note again. In the hold, the two stewards\",He glances at the note again.,\"In the hold, the two stewards\",gold,pull someone up to his mail package.,creep toward the car.,zip around the parlor.,sit in the same cockpit.,1\n3475,lsmdc1009_Spider-Man3-76244,8487,Someone in his someone suit gives her a little smile before putting on his head mask and leaping out of the window. Someone,Someone in his someone suit gives her a little smile before putting on his head mask and leaping out of the window.,Someone,gold,\"watches the flames, doing hand gestures with his hand.\",close crest of liquid spreads over his wife's face.,\"stands up, gathers her bag, scarf, and newspaper, and goes for the door.\",straightens as they reach the end of the office entryway.,2\n3476,lsmdc1009_Spider-Man3-76244,8488,\"Someone stands up, gathers her bag, scarf, and newspaper, and goes for the door. She leaves the apartment and the slimy, black mass\",\"Someone stands up, gathers her bag, scarf, and newspaper, and goes for the door.\",\"She leaves the apartment and the slimy, black mass\",gold,runs through the recessed entrance.,is animates on the frame by the old cafeteria floor.,drops to the floor.,is reflected in the darkness.,2\n3477,lsmdc1009_Spider-Man3-76244,8489,\"She leaves the apartment and the slimy, black mass drops to the floor. On a city street, two cops\",\"She leaves the apartment and the slimy, black mass drops to the floor.\",\"On a city street, two cops\",gold,walk along a sidewalk overlooking the turquoise green city street.,pick up two cameraman customers.,pick up costumes.,look up to the sky.,3\n3478,anetv_PFYk8lhE7-0,8792,A man is outside with a large metal box. Another man,A man is outside with a large metal box.,Another man,gold,is sanding a wall and ceiling inside a building.,is standing in front of the fence upside down.,are interviewed as well.,takes an orange hose from a room window.,0\n3479,anetv_73zt29iKyL4,9090,The person cuts a hole in the ice as well as bait and finally catches a fish. The man,The person cuts a hole in the ice as well as bait and finally catches a fish.,The man,gold,puts the egg into a hole and then closes it as well as the knife being eaten.,adds a second to the top of the brush and pushes a fish around to it to end the cork.,\"cuts the fish, cooks it, and is then seen eating it and walking away.\",continues with the ball and uses the hand in to show on the ice cream while looking over.,2\n3480,anetv_73zt29iKyL4,9089,A person is seen walking along the snow and pulling a sled behind him. The person,A person is seen walking along the snow and pulling a sled behind him.,The person,gold,cuts a hole in the ice as well as bait and finally catches a fish.,continues to walk back and fourth as if trying to climb into a boat.,shows off a hookah and places it in his mouth.,continues vacuuming and moving his legs nervously when another speaks at the camera.,0\n3481,anetv_j_e8c6tOQG8,4718,\"Rafters appear, paddling through the rushing currents. The rafter\",\"Rafters appear, paddling through the rushing currents.\",The rafter,gold,\"skip from the raft and down the high railing, passing to a rough river.\",continues as he navigates the river.,\"pulls down the river with one curving, paved, spanning river.\",wake on prometheus and begin to tread water and perform a split bow.,1\n3482,anetv_j_e8c6tOQG8,4717,Water is rushing between rocks in a river. Rafters,Water is rushing between rocks in a river.,Rafters,gold,touches a tomb to a string attached to the boat.,\", they are on top of a long hill.\",\"appear, paddling through the rushing currents.\",are shown racing across the river.,2\n3483,lsmdc3013_BURLESQUE-4990,12761,Now a makeup mirror reflects a newspaper photo of someone performing in the burlesque lounge. Someone,Now a makeup mirror reflects a newspaper photo of someone performing in the burlesque lounge.,Someone,gold,stands leaning over the bar.,doffs her glasses before passing over a stack of books.,smiles in her office as she reads the article on the front page of the la times calendar section.,turns back from the booth door.,2\n3484,lsmdc3013_BURLESQUE-4990,12753,Someone works her hands up her body to her hair. Her backup dancers,Someone works her hands up her body to her hair.,Her backup dancers,gold,push her hips with all her might including to herself for dancing.,\"hangs up, and does some steppers to everybody.\",enter a dim lit room and close to the side.,move upside - down on their chairs in acrobatic positions.,3\n3485,lsmdc3013_BURLESQUE-4990,12764,\"Meanwhile, two contortionists lie with their chins to the stage. Posed in deep backbends, they\",\"Meanwhile, two contortionists lie with their chins to the stage.\",\"Posed in deep backbends, they\",gold,are slowly pondering mottled methods from an arm work base like pieces of music.,bend over the rock bridge.,\"begin to scream, then tries to break down and hold on close.\",flick their toes over their heads.,3\n3486,lsmdc3013_BURLESQUE-4990,12765,The doorman falls face - first into a contortionist's crotch. A patron,The doorman falls face - first into a contortionist's crotch.,A patron,gold,stops him in a hug.,spits out his drink with laughter.,falls and someone lifts her feet.,stumbles backwards and kicks the corpse away.,1\n3487,lsmdc3013_BURLESQUE-4990,12759,\"Spreading their legs, the dancers bend over and whip their hair. At home, someone\",\"Spreading their legs, the dancers bend over and whip their hair.\",\"At home, someone\",gold,\"faces the ladies office, unshaven.\",stands with him in the reception room with a hand equipped on to her hand.,finds a note taped to a mirror written on sheet music paper: going out.,enters the teacher's office.,2\n3488,lsmdc3013_BURLESQUE-4990,12763,\"Someone sets down the paper and picks up a bank letter headed, Notice of Defaulted Payment. A red stamp\",\"Someone sets down the paper and picks up a bank letter headed, Notice of Defaulted Payment.\",A red stamp,gold,sits on someone's finger.,\"reads, final notice.\",is withdrawn on a shelf.,lies on his desk.,1\n3489,lsmdc3013_BURLESQUE-4990,12757,\"Now he drives someone in his vintage convertible. At his home, they\",Now he drives someone in his vintage convertible.,\"At his home, they\",gold,find someone sleeping on the floor.,ride a mustached a drop.,start around a toilet.,share an intimate laugh as they sit on the couch by candlelight.,3\n3490,lsmdc3013_BURLESQUE-4990,12756,\"Mesmerized by the performance, someone interlaces his fingers. Now he\",\"Mesmerized by the performance, someone interlaces his fingers.\",Now he,gold,grinds his hip through the door.,drives someone in his vintage convertible.,thrusts a pillow on his head.,bows to his sister and dances about playing.,1\n3491,lsmdc3013_BURLESQUE-4990,12754,\"Looking on, someone smiles proudly. Someone\",\"Looking on, someone smiles proudly.\",Someone,gold,lifts her knee in a sexy pose with one of her backup dancers.,\"looking troubled, someone bit off of straightens.\",straightens his boyish carefully.,rolls into his dark - clerical 30s until his face becomes solemn.,0\n3492,lsmdc3013_BURLESQUE-4990,12760,Someone and the others dance with precision and raw sensuality as the stage lights strobe. Now a makeup mirror,Someone and the others dance with precision and raw sensuality as the stage lights strobe.,Now a makeup mirror,gold,shows on a computer chip.,reflects a newspaper photo of someone performing in the burlesque lounge.,shows the four people alone with tattoos above one another.,shows her navel up as she grasps with a ballet coat and scissors nearby.,1\n3493,lsmdc3013_BURLESQUE-4990,12769,Someone arrives at her side. One contortionist spreads her legs overhead and the doorman,Someone arrives at her side.,One contortionist spreads her legs overhead and the doorman,gold,throws to a tall bustier.,wiggles the top of her head.,pulls it from his pocket.,strikes a triangle between her thighs.,3\n3494,lsmdc3013_BURLESQUE-4990,12758,\"Someone turns in profile and bumps her shoulders forward into an animalistic slouch. Spreading their legs, the dancers\",Someone turns in profile and bumps her shoulders forward into an animalistic slouch.,\"Spreading their legs, the dancers\",gold,wraps their legs across their scarves.,move from their bodies and timidly.,bend over and whip their hair.,give their startled looks.,2\n3495,lsmdc3013_BURLESQUE-4990,12767,\"From the bar, someone and someone watch someone with the two men. One of the contortionists\",\"From the bar, someone and someone watch someone with the two men.\",One of the contortionists,gold,sniffs someone's severed knuckles.,passes the doorman a banana between her legs.,windsurfer approaches through crooked awning.,\"returns when he catches someone's fall, then turns to someone.\",1\n3496,lsmdc3013_BURLESQUE-4990,12762,Someone smiles in her office as she reads the article on the front page of the la Times Calendar section. The photo,Someone smiles in her office as she reads the article on the front page of the la Times Calendar section.,The photo,gold,shows securely printed draft the video.,shows someone with someone and another dancer.,\"shows her laotong's shapely legs, who sits on a tiered rope.\",shows a card post and a blue x closing screen.,1\n3497,lsmdc3013_BURLESQUE-4990,12766,\"A patron spits out his drink with laughter. From the bar, someone and someone\",A patron spits out his drink with laughter.,\"From the bar, someone and someone\",gold,climb into their mercedes limo.,watch someone with the two men.,enter an engagement ring with black wine; floating through an archway.,watch him from across the kitchen.,1\n3498,lsmdc3013_BURLESQUE-4990,12755,Someone lifts her knee in a sexy pose with one of her backup dancers. Someone,Someone lifts her knee in a sexy pose with one of her backup dancers.,Someone,gold,\"eyes someone, who glances away faintly, then taps her menu.\",lays on her back.,seethes as she watches.,wears a cheap suit.,2\n3499,anetv_t-8wEopB3AQ,13152,\"A beach is shown, then a scuba diver under the water with tons of fish swimming. The scuba divers\",\"A beach is shown, then a scuba diver under the water with tons of fish swimming.\",The scuba divers,gold,go all into the beach playing foam.,make a swimming kite.,is swimming under the water.,are shown in a close up as they come out of the water.,3\n3500,anetv_t-8wEopB3AQ,11369,\"Then, a white boat appears with the man in them before going down under water to experience the coral reef and the other life forms. While the guy is scuba diving, men are shown on the boat talking and they all eventually\",\"Then, a white boat appears with the man in them before going down under water to experience the coral reef and the other life forms.\",\"While the guy is scuba diving, men are shown on the boat talking and they all eventually\",gold,take turns a waterfall towards them and then also the man running celebrating.,join the man at the bottom.,stop to watch and begin rafting mercenaries.,reach the bottom to dive in the water fountains.,1\n3501,anetv_t-8wEopB3AQ,11368,\"A man is stading outside by the a pretty blue body of water in Thailand preparing to go scuba diving. Then, a white boat\",A man is stading outside by the a pretty blue body of water in Thailand preparing to go scuba diving.,\"Then, a white boat\",gold,goes out of view and appears video image of the divers using their flips.,\"approaches sand and the stars, high toward the coast, propelling and dives into the clear water.\",appears with the man in them before going down under water to experience the coral reef and the other life forms.,is seen eating his face.,2\n3502,anetv_t-8wEopB3AQ,11370,\"While the guy is scuba diving, men are shown on the boat talking and they all eventually join the man at the bottom. A shrimp appears walking across the sand and the men\",\"While the guy is scuba diving, men are shown on the boat talking and they all eventually join the man at the bottom.\",A shrimp appears walking across the sand and the men,gold,continue being shown in and out of the water.,are walking across the pool at the swimming pool.,begin throwing it in their helmets and perch.,are kayaking going over very quickly as they're asked to get water.,0\n3503,anetv_t-8wEopB3AQ,13151,\"A man is shown by the ocean, zipping out to show underwater and above water views of boats. A beach\",\"A man is shown by the ocean, zipping out to show underwater and above water views of boats.\",A beach,gold,is then shown riding a surf board along with five boats.,is seen followed by several more people running on skis and kicking off the ropes.,is shown with shots of kites are shown as well as people ready to walk down the water.,\"is shown, then a scuba diver under the water with tons of fish swimming.\",3\n3504,lsmdc0041_The_Sixth_Sense-67722,6292,Someone just sits and thinks. Someone,Someone just sits and thinks.,Someone,gold,spins the baby onto the pedals.,turns his head and stares at the windows.,kicks the suv driver from the table.,halts as he walks front.,1\n3505,lsmdc3085_TRUE_GRIT-40449,14923,The man from the porch sits by the window smoking his pipe. He,The man from the porch sits by the window smoking his pipe.,He,gold,moves his eyes from bottom to the window.,\"smokes a joint, guitar only then words.\",wipes the car with a towel clutching his contents to see that he looks really frustrated.,has messy brown hair and a mustache.,3\n3506,lsmdc3085_TRUE_GRIT-40449,14919,Someone lies in her long white nightgown shivering. Someone,Someone lies in her long white nightgown shivering.,Someone,gold,\"bend down, her hands resting on her knees.\",lies in bed alone with a blanket over her side.,peers out toward the pine tent and heads over.,stares at the protruding workman.,1\n3507,lsmdc3085_TRUE_GRIT-40449,14920,Someone lies in bed alone with a blanket over her side. She,Someone lies in bed alone with a blanket over her side.,She,gold,frowns restlessly and wakes.,\"wakes with her back to him, resting her chin on his shoulder.\",looks at the paint stamps.,lies curled up in his bed.,0\n3508,lsmdc3085_TRUE_GRIT-40449,14925,Someone stares at him as he takes a puff. He,Someone stares at him as he takes a puff.,He,gold,sets down a photograph.,puts his pipe on a side table.,\"smiles, then tightens his lips.\",frees himself and kicks another sack.,1\n3509,lsmdc3085_TRUE_GRIT-40449,14927,He stands and walks over. He,He stands and walks over.,He,gold,\"glances at the submerged canvas, then proceeds to high way.\",hands her a photograph of a man in a dark suit.,catches it as he plays with the water.,sees someone and joins someone in a aircraft.,1\n3510,lsmdc3085_TRUE_GRIT-40449,14922,Sweat glows on her brow. The man from the porch,Sweat glows on her brow.,The man from the porch,gold,sits by the window smoking his pipe.,is blocking the window.,watches her car with a thought.,smiles to her with her eyes opened.,0\n3511,lsmdc3085_TRUE_GRIT-40449,14924,He has messy brown hair and a mustache. Someone,He has messy brown hair and a mustache.,Someone,gold,\"blows on his face, looking up at the moon.\",shakes her hand and shakes it.,stares at him as he takes a puff.,is shown talking about how to cut cookie dough.,2\n3512,lsmdc3085_TRUE_GRIT-40449,14921,She sits up and her eyes widen. Sweat,She sits up and her eyes widen.,Sweat,gold,\"rolls her nose, and he kisses her nose, her happy nose juts out as she lashes out with a boring - curl smirk\",glows on her brow.,\"looks up, she looks grated, and takes her seat opposite him, several, having some sushi and newspapers.\",\"leans against the wall, one by one, sparks out black sparks, causing the dashboard to flicker as he approaches the young.\",1\n3513,lsmdc3085_TRUE_GRIT-40449,14926,He puts his pipe on a side table. He,He puts his pipe on a side table.,He,gold,leads someone to the reception room.,points to the audience with his stick.,stands and walks over.,watch the match from inside.,2\n3514,anetv_NcjQI0avKHE,14948,\"The intro states Progression: Lisa's First Season Snowboarding. The little girl is learning to snowboard and each day progresses a little better, she\",The intro states Progression: Lisa's First Season Snowboarding.,\"The little girl is learning to snowboard and each day progresses a little better, she\",gold,does a final trick.,\"is using paint, washing the snow off.\",is falling down a lot.,is also on a world's lotion.,2\n3515,anetv_NcjQI0avKHE,3649,An intro leads into several shots of a girl riding down a snowy hill on a snowboard and continuously falling over. Several more shots of her balancing,An intro leads into several shots of a girl riding down a snowy hill on a snowboard and continuously falling over.,Several more shots of her balancing,gold,are shown followed by several clips doing different tricks and skiing tricks with field equipment.,are shown while more people are seen performing tricks on the ski but sitting in front and the camera's smiling.,are shown with woman performing tricks and points to the camera.,are shown as well as her throwing her gloves down and crashing into others.,3\n3516,anetv_NcjQI0avKHE,3650,The days continue to progress watching her go and shots of her riding the lift and tightening her boots are shown. She,The days continue to progress watching her go and shots of her riding the lift and tightening her boots are shown.,She,gold,are running as she surfaces and blends up a liquid that injects into his right finger.,has an enormous hand pretending to demonstrate and she begins riding on more.,now rides down the hill without falling and is able to move effectively back and fourth.,continues to explain the mechanics of the process along with close ups of setting them back.,2\n3517,anetv_NcjQI0avKHE,14949,\"The little girl is learning to snowboard and each day progresses a little better, she is falling down a lot. Then she\",\"The little girl is learning to snowboard and each day progresses a little better, she is falling down a lot.\",Then she,gold,goes to the next aid where she starts climbing.,is getting better and gets off the lift and does some more.,\"looks away from him, waves, and makes to walk her.\",is time to climb up the skis someone didn't get hurt.,1\n3518,anetv_NOGtIoZbEVg,18890,A young man sits on a bed. The man,A young man sits on a bed.,The man,gold,starts playing an acoustic guitar.,starts shaving a mans hair with an orange razor.,switches on a bed and sits down.,focuses on their clothes in bed.,0\n3519,anetv_NOGtIoZbEVg,18891,The man starts playing an acoustic guitar. The man,The man starts playing an acoustic guitar.,The man,gold,begins to play the drums.,stops playing the drum.,plays his saxophone in unison.,starts singing while playing.,3\n3520,anetv_NOGtIoZbEVg,18892,The man pauses and rolls is eyes. The man,The man pauses and rolls is eyes.,The man,gold,hugs the individuals two men.,drops his goggles as the man takes a seat.,holds a scissor in his hand and rubs it through its nose.,\"finishes and looks up, then at the ground.\",3\n3521,anetv_7Lkcan0X5VA,17992,A girl is shown playing piano. The duo,A girl is shown playing piano.,The duo,gold,dances around on stage in the end.,\"are shown posing, gleaming, and frisbee.\",pauses to pick up a cream.,continue playing until the song ends.,3\n3522,anetv_7Lkcan0X5VA,17991,The camera zooms in on the trumpet player. A girl,The camera zooms in on the trumpet player.,A girl,gold,is shown flying the board through a wall.,\"walks up to her computer, making sure most of the foot of another body is done to peel away.\",dances on the stage playing the drums.,is shown playing piano.,3\n3523,anetv_7Lkcan0X5VA,17990,The video fades to the people playing on stage. The camera,The video fades to the people playing on stage.,The camera,gold,pans all around an area showing a person hitting a ball.,focuses on a tv.,zooms in on the trumpet player.,pans back to the man still smiling.,2\n3524,anetv_7Lkcan0X5VA,17988,A person's hands are shown playing piano. A close up of a trumpet,A person's hands are shown playing piano.,A close up of a trumpet,gold,is seen playing leaves.,is shown by the woman playing with a record.,shows a man playing.,is then shown as well as person walking speaking.,2\n3525,anetv_7Lkcan0X5VA,17989,A close up of a trumpet shows a man playing. The video,A close up of a trumpet shows a man playing.,The video,gold,ends with a showing a cat playing.,then shows several javelins moving in a circle as well as close ups of a person purchasing the ball.,is shown with the boy playing instruments together.,fades to the people playing on stage.,3\n3526,anetv_gdr6iVHHYcU,9898,A woman begins to put makeup on the other woman. She,A woman begins to put makeup on the other woman.,She,gold,draws the slide and starts lifting it down.,blows out a toothbrush in front of the camera.,goes back up under the table.,dabs the woman's face with a sponge.,3\n3527,anetv_gdr6iVHHYcU,9897,Two women are in a room talking. A woman,Two women are in a room talking.,A woman,gold,demonstrates how to lift a board mop.,begins to put makeup on the other woman.,is holding a flute and playing an acoustic flute.,wearing a green shirt is in a room.,1\n3528,lsmdc0008_Fargo-49797,10374,\"Someone reaches across someone, grabs the trooper by the hair and slams his head down onto the car door. With his free hand, someone\",\"Someone reaches across someone, grabs the trooper by the hair and slams his head down onto the car door.\",\"With his free hand, someone\",gold,gets thrown on it's car as someone leaps toward someone.,pops the glove compartment.,grabs his mother's chair and leaves.,drops the bar onto the ledge.,1\n3529,lsmdc0008_Fargo-49797,10375,\"With his free hand, someone pops the glove compartment. He\",\"With his free hand, someone pops the glove compartment.\",He,gold,letters come onto the screen for blackjack.,rings the storm right.,reaches the railing as and approaches the japanese steer until someone resumes it.,brings a gun out and reaches across someone and shoots at the back of the trooper's head.,3\n3530,lsmdc0008_Fargo-49797,10373,\"The policeman leans forward into the car, listening. Someone\",\"The policeman leans forward into the car, listening.\",Someone,gold,\"reaches across someone, grabs the trooper by the hair and slams his head down onto the car door.\",hunches backwards with people push him through the glass door.,\"walks away, grabbing someone's his drink.\",looks down on the spot where blood on the bridge of his nose.,0\n3531,lsmdc0008_Fargo-49797,10376,The policeman's head slides out the window and his body flops back onto the street. Someone,The policeman's head slides out the window and his body flops back onto the street.,Someone,gold,opens a crate onto a burner.,\"holds him, crushing him against the gasoline car.\",looks out at the cop in the road.,pins someone to his chevy truck.,2\n3532,anetv_5o9iv0wC59g,2098,He continues drumming on the bongos alternating between the two drums. He,He continues drumming on the bongos alternating between the two drums.,He,gold,stops hitting the drums and watches the two boys pretend fingers.,continues stretching while someone joins the boys in the floor.,plays for some time and then stops drumming on the bongos.,puts his hat on to the side with the lasso.,2\n3533,anetv_5o9iv0wC59g,2096,A man wearing a dark blue shirt and sporting a braid begins playing the bongos. He,A man wearing a dark blue shirt and sporting a braid begins playing the bongos.,He,gold,then would return to keep the violin about.,\"walk onto an upturned square wooden room, then start up purposefully.\",begins drumming on the bongos to a beat as he shakes his head rhythmically.,is describing the words of the demonstration.,2\n3534,anetv_5o9iv0wC59g,2097,He begins drumming on the bongos to a beat as he shakes his head rhythmically. He,He begins drumming on the bongos to a beat as he shakes his head rhythmically.,He,gold,falls and starts to play the drums until they continue ringing and slowing.,continues playing rhythmically as he finishes.,continues drumming on the bongos alternating between the two drums.,\"seems onto his mind and starts dreaming himself through blowing his thoughts he took a beat, giving them more pointers.\",2\n3535,lsmdc3088_WHATS_YOUR_NUMBER-42531,15662,Someone gets up and jumps on the bed. We,Someone gets up and jumps on the bed.,We,gold,leaves the room.,volume are shown on the table.,find someone on the couch swinging with someone.,draw back through a window to the building's beige - brick facade.,3\n3536,anetv_wZ-teiWX4mg,15742,Man is standing in an ice rink practicing hockey. man,Man is standing in an ice rink practicing hockey.,man,gold,is playing a racquetball and pass for the camera.,is standing in a field showing him a game of volleyball.,is putting hockey uniform.,walks onto a field and field of rope.,2\n3537,anetv_q0P0EvJOfRQ,3746,A woman is seen dancing in the street placing an instrument while others watch on the side. The woman,A woman is seen dancing in the street placing an instrument while others watch on the side.,The woman,gold,continues moving around and moving in and out onto the woman with the band.,continues to play the instrument while moving her leg up and down and the people clap for her on the side.,continuously interacts with one another and ends with text across the screen.,continues hitting the drums back and fourth around the instrument while pausing to speak to the camera.,1\n3538,anetv_w8rTULZCkzk,3783,He begins by brushing mud off the spikes into a sink. He,He begins by brushing mud off the spikes into a sink.,He,gold,then starts to mop with the broom.,is also seen followed by various clips of his running logo and dirty anything.,\"continues to brush his teeth more, says it, and walks to the sink.\",puts a small amount of water into the sink and continues scrubbing.,3\n3539,anetv_w8rTULZCkzk,3781,An introduction is shown for a video about how to clean running spikes. A guy,An introduction is shown for a video about how to clean running spikes.,A guy,gold,takes a hose indoors and sprays something with a pink hanging towel.,shampoo the dog's cheeks while further to clean the soap out as a dog walks over to an island counter.,explains that he will clean the spikes while showing the dirt on the spikes.,is seen wiping the snow down and speaking to the older friend while sitting.,2\n3540,anetv_w8rTULZCkzk,3782,A guy explains that he will clean the spikes while showing the dirt on the spikes. He,A guy explains that he will clean the spikes while showing the dirt on the spikes.,He,gold,hit and kick the ball out of the right pipes.,\"is pictured easily, blocking the correct poses in the other event that goes down the field.\",sticks until the bottom of the hill and takes his clean roots until trimming the wall.,begins by brushing mud off the spikes into a sink.,3\n3541,lsmdc3037_IRON_MAN2-16798,12105,\"Someone and someone, as someone, step in. Someone\",\"Someone and someone, as someone, step in.\",Someone,gold,\"turns to someone, who mouths the word, no.\",fires handfuls of a large carton from a wood.,\"turns toward someone, urging this.\",snaps a final photo at someone.,0\n3542,anetv_SLisp6hn700,17306,A girl wraps gifts in wrapping paper seated at a table. The girl,A girl wraps gifts in wrapping paper seated at a table.,The girl,gold,returns the start towel over a tissue from the box and hands it back to her doctor.,pulls out tools from the phone and searches it.,is braids appear pinned up.,uses tape to secure the wrapping paper inside the present.,3\n3543,anetv_SLisp6hn700,14448,\"The woman is sitting at the table talking to the camera. The woman is holding a wrapped gift, then she\",The woman is sitting at the table talking to the camera.,\"The woman is holding a wrapped gift, then she\",gold,goes to wrap the gift.,takes the lemon and places it in her hand.,\"holds a vase in tissue, and puts some cream on her leg and starts playing.\",is showing the materials she used.,3\n3544,anetv_SLisp6hn700,17305,A girl sits at a table with many finished wrapped presents. A girl,A girl sits at a table with many finished wrapped presents.,A girl,gold,is dancing with someone.,turns and touches her.,wearing brown leather pants and a pink shirt.,wraps gifts in wrapping paper seated at a table.,3\n3545,anetv_SLisp6hn700,17308,The girl peels away a self sealing strip on the wrapping paper. The girl,The girl peels away a self sealing strip on the wrapping paper.,The girl,gold,slams down the stake material.,slides a rotating strip in the paper and then lines it.,folds the edges of the wrapping paper and cuts them with scissors.,wipes her lip with scissors.,2\n3546,anetv_SLisp6hn700,17309,The girl folds the edges of the wrapping paper and cuts them with scissors. The girl,The girl folds the edges of the wrapping paper and cuts them with scissors.,The girl,gold,pulls out little pieces of nail and folds a piece of paper in it.,tapes the exterior of the present.,peels a finished piece of wood and places it around her wrist with the credit and continues cutting the warming mechanism.,puts the spare end holding a rubber glove on each end.,1\n3547,anetv_SLisp6hn700,14449,\"The woman is holding a wrapped gift, then she is showing the materials she used. The woman\",\"The woman is holding a wrapped gift, then she is showing the materials she used.\",The woman,gold,wraps the gift back paper and continues wrapping.,takes out the folded baking dough and tapes it onto her lap.,uses a bowl and sharks to dry hair as well as colorful kayaks while still showing into the animal's mouth.,\"put the cloth on wrapper, put adhesive tape on the edge and began wrapping the present.\",3\n3548,anetv_SLisp6hn700,17307,The girl uses tape to secure the wrapping paper inside the present. The girl,The girl uses tape to secure the wrapping paper inside the present.,The girl,gold,wraps the paper with an iron and tapes up the ring paper.,continues to paint the red wall while looking at the camera then continues painting.,puts flute around her mouth while continuing to finish the performance.,peels away a self sealing strip on the wrapping paper.,3\n3549,anetv_J27dBmSpRW4,15071,A shot of a building is shown followed by a man speaking to the camera. Another man,A shot of a building is shown followed by a man speaking to the camera.,Another man,gold,sits next to them while one holds a hookah and take puffs from the hose.,is seen speaking to the camera and leads into people playing beer.,focuses on a tv set with the man moving in and out of frame.,is seen cutting a man's head and leads into him cutting his own hair.,0\n3550,anetv_J27dBmSpRW4,19737,Two men are shown speaking to one another while smoking from a hookah. The men,Two men are shown speaking to one another while smoking from a hookah.,The men,gold,spin all around the pieces while the camera zooms in to the end.,speak to the camera while it pans around the bar and back to them smoking.,continue to smoke with one another while others walk behind.,continue to fish and grimace while looking down at the camera.,1\n3551,anetv_J27dBmSpRW4,19736,The outside of a building is shown and leads into people talking to one another. Two men,The outside of a building is shown and leads into people talking to one another.,Two men,gold,play near the other and then continue to skate around while the kids walk out and end by passing the camera.,are seen speaking to the camera and leads into a man speaking and showing off equipment fire.,are shown speaking to one another while smoking from a hookah.,are seen working around one another with one speaking to one another.,2\n3552,anetv_J27dBmSpRW4,15072,Another man sits next to them while one holds a hookah and take puffs from the hose. The man,Another man sits next to them while one holds a hookah and take puffs from the hose.,The man,gold,talks to demonstrate how to work the roof and films it after another couple.,laughs and puffs out of his cigarettes.,take turns smoking from the hookah and the camera pans around the area.,continues to smoke a cigarette as he exhales smoke into the smoke.,2\n3553,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61348,8293,\"Someone is swept up in the emotion. The 6000 rohirrim move off, a great wall of horses and spear points, building up to a gallop like a rising tide, as they charge towards the 50, 000 orcs! angle on: someone, wind\",Someone is swept up in the emotion.,\"The 6000 rohirrim move off, a great wall of horses and spear points, building up to a gallop like a rising tide, as they charge towards the 50, 000 orcs! angle on: someone, wind\",gold,\"rattles his nose, mouth with panic.\",\"wheeling into the room, goes to the back casket sits a cover in its beak.\",\"blowing his hair, someone's arm around his chest.\",\"surfing on the sky, is raising fluid from his waist.\",2\n3554,anetv_fVg3StD8LL0,14423,The man is then seen helping another lay down plaster. The host,The man is then seen helping another lay down plaster.,The host,gold,pushes the man forward and shows a tattoo.,continues helping the men tear up floor as well as lay it down and speak to the camera.,watches the man with the blowing.,performs roller blading on the floor.,1\n3555,anetv_fVg3StD8LL0,14422,A man is seen hosting a news segment and speaking to the camera. The man,A man is seen hosting a news segment and speaking to the camera.,The man,gold,begins spinning around while looking off into the distance.,holds up a piece of wrapping paper and pouring it into a grey bag.,is then seen helping another lay down plaster.,begins riding around a car playing ping pong as he stands warming up on a table.,2\n3556,anetv_ZYrQ-TSPQfU,13550,\"People whom are wearing helmets, are paddling a inflated boat down a rocky body of water. Water\",\"People whom are wearing helmets, are paddling a inflated boat down a rocky body of water.\",Water,gold,slows down the able jump.,pulls a large cloth over the camel's back to start a jump.,surfs a setting of people on a raft.,splashes into the inflated boat.,3\n3557,anetv__RCe4Q0p1aA,19507,The man lifts the weight to his chest. The man,The man lifts the weight to his chest.,The man,gold,lifts the barbell up to his chest.,lifts the weight above his head.,\"raises his arms into the air, letting his arms push the pedaling cord around his neck.\",holds up the weight and lifts his body.,1\n3558,anetv__RCe4Q0p1aA,3794,\"After a long time, the man picks up the weight in a squat, bends his knees several times and finally jerks it over his head. A replay is then shown from another angle and the individuals behind him\",\"After a long time, the man picks up the weight in a squat, bends his knees several times and finally jerks it over his head.\",A replay is then shown from another angle and the individuals behind him,gold,are bent forward throwing up his shoes.,hit each other on the mat.,begin throwing their fist up in excitement before congratulating the man with a hug.,are almost able to catapult the badminton stadium over.,2\n3559,anetv__RCe4Q0p1aA,3792,Two men are standing in the corner around a stand putting powder on their hand. One man then,Two men are standing in the corner around a stand putting powder on their hand.,One man then,gold,swings around a block and hits one another while one men hit the ball very hard.,walks onto the stage and positions himself to lift up a weight.,begins hitting the shirt with his racket and hitting the ball with his stick.,grabs a loose dog and drops it on the cars.,1\n3560,anetv__RCe4Q0p1aA,3793,\"One man then walks onto the stage and positions himself to lift up a weight. After a long time, the man\",One man then walks onto the stage and positions himself to lift up a weight.,\"After a long time, the man\",gold,\"picks up the weight in a squat, bends his knees several times and finally jerks it over his head.\",is then shown downstream in stunt position.,wins the game and has his victor.,demonstrates the break and the crowd up moves a few times.,0\n3561,anetv__RCe4Q0p1aA,19505,A man walks out in front of a weighted barbell. The man,A man walks out in front of a weighted barbell.,The man,gold,prepares to lift the weight.,turns around and lifts a weight over his head.,spins the body on the welding machine.,spins on fake nails and tosses the hammer hammer.,0\n3562,anetv_icGrJ2XBxa0,1729,They are rowing their oars. People,They are rowing their oars.,People,gold,fall into their rafts.,are standing on the beach with medals around their necks.,play at the kayaking boat.,carry boats around in the finish yard.,1\n3563,anetv_icGrJ2XBxa0,1728,People are sitting in kayaks on a river. They,People are sitting in kayaks on a river.,They,gold,are being pulled by a train.,are holding onto the kite.,are rowing their oars.,are being pulled by a boat.,2\n3564,anetv_55sP2yXNFxY,13059,Shots are shown of a young man playing pool with his father watching on the side. The man,Shots are shown of a young man playing pool with his father watching on the side.,The man,gold,continues to play while his father watches and speaks to the news host.,sits down and talks to another person and shows that's poles around his arm.,throws a ball down into the distance and moves all around the table.,throws the ball back and fourth to others on the pool.,0\n3565,anetv_55sP2yXNFxY,13058,A man is seen hosting a news segment that leads into him speaking with two other people. Shots,A man is seen hosting a news segment that leads into him speaking with two other people.,Shots,gold,are shown of ice with different people speaking and playing paintball.,continue dancing in a room without an audience watching.,are shown ready for combat.,are shown of a young man playing pool with his father watching on the side.,3\n3566,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84708,16105,The dog jumps up and runs off. He,The dog jumps up and runs off.,He,gold,has a false beard.,gets off the bikes.,continues to ride on it.,wakes and sits up in bed.,0\n3567,anetv_Pi79Fa4YwDk,18930,The pitcher throws and men all start running. We,The pitcher throws and men all start running.,We,gold,see the event and the bowling.,prop a shot of the board with a scoop and the ball falls on the team from the pole's roped above the audience.,\"see a man laying on the ground, with medics around.\",is repeated in slow motion.,2\n3568,anetv_Pi79Fa4YwDk,18932,We see men walking on the field and a medic puts a ice pack on the man's head. We,We see men walking on the field and a medic puts a ice pack on the man's head.,We,gold,see the ship as people take a wheelie and throw fish in a trash can.,see a cloth float close to the counter surface.,see the men sit and put horses around.,see in slow motion the collision which hurt the man.,3\n3569,anetv_Pi79Fa4YwDk,18931,\"We see a man laying on the ground, with medics around. We see men walking on the field and a medic\",\"We see a man laying on the ground, with medics around.\",We see men walking on the field and a medic,gold,puts a ice pack on the man's head.,is being interviewed by a lady.,stands next to him talking.,laying on the back.,0\n3570,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2399,She hands someone's bag. Long - legged someone,She hands someone's bag.,Long - legged someone,gold,steps out of wavy water.,sits across from a clothing counter between two others.,watches a woman stand at the chair facing a portrait with a horizontal column.,is left holding the bag.,3\n3571,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2403,\"Someone smiles at her reflection in the mirror, then looks at the label of the dress. Someone\",\"Someone smiles at her reflection in the mirror, then looks at the label of the dress.\",Someone,gold,puts down her sweater.,\"beautiful wedding, someone is now standing at a desk in another photograph sitting beside a framed photograph.\",watches her with a smug smile.,gives an embarrassed look.,2\n3572,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2405,\"In the bridal shop, someone, in a pink maid of honor dress, is blind - folded. The petticoat\",\"In the bridal shop, someone, in a pink maid of honor dress, is blind - folded.\",The petticoat,gold,is upside down in front of her face.,is young and mysterious.,is shown in venom case.,is blue and green.,3\n3573,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2401,\"She slams it down, and slumps next to it. Her eyes narrowing, she\",\"She slams it down, and slumps next to it.\",\"Her eyes narrowing, she\",gold,pours ice into her glass.,\"watches someone rush upstairs, watching someone.\",opens the bag and picks up the mobile.,descends the stairs beneath the awning.,2\n3574,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2400,Long - legged someone is left holding the bag. She,Long - legged someone is left holding the bag.,She,gold,\"puts down the key, spins it out.\",sees someone staring staring into the diary.,\"looks cautiously away, backs into the trailer, walking down a stairs.\",\"slams it down, and slumps next to it.\",3\n3575,lsmdc1019_Confessions_Of_A_Shopaholic-80873,2402,\"Her eyes narrowing, she opens the bag and picks up the mobile. Someone, looking nervous,\",\"Her eyes narrowing, she opens the bag and picks up the mobile.\",\"Someone, looking nervous,\",gold,\"smiles as she steps toward the other door, then opens it.\",emerges from the changing cabin in the purple dress.,\"gets off from messages, hurt herself again when she enters.\",rises slowly up the corridor to the salesman's office and turns the bottle in his hand.,1\n3576,anetv_bNRE808ALfM,11067,People are standing in the field holding a swords. We,People are standing in the field holding a swords.,We,gold,start chopping the balls at the base of the orange net.,\"see a man walking in a gym, trying to perform.\",are holding a ball up to each other's head.,see the instructor of the class.,3\n3577,anetv_bNRE808ALfM,11072,The people are in the field again. The people,The people are in the field again.,The people,gold,cheer for the crowd and see people riding between the people.,stand holding the frisbee watching them.,are kicking the team in the field.,return in doors and take a bow and clap.,3\n3578,anetv_bNRE808ALfM,12030,The bright sun is blinding through the trees. A group of people,The bright sun is blinding through the trees.,A group of people,gold,join pumpkins at a large farm below.,run up a wooden structure.,are doing martial arts moves in the woods.,are seen sitting up on a tree on the street.,2\n3579,anetv_bNRE808ALfM,11073,The people return in doors and take a bow and clap. We then,The people return in doors and take a bow and clap.,We then,gold,see that the lake is filled with ladies and water polo.,see another woman fight in their competitions.,see the men laughing to their buckets.,see the ending title screen.,3\n3580,anetv_bNRE808ALfM,12031,A group of people are doing martial arts moves in the woods. They,A group of people are doing martial arts moves in the woods.,They,gold,are holding sticks as they move in unison.,move closer to people.,are all wearing sumo costumes.,take turns doing the back flip off on the grass.,0\n3581,anetv_bNRE808ALfM,11070,We see people working in pairs indoors on wrist movement. The people,We see people working in pairs indoors on wrist movement.,The people,gold,get in formation and go back in uneven cliff.,use paddles to move through the searchlights.,jump and walk the high jump rope in the gym.,are practicing with swords again.,3\n3582,anetv_bNRE808ALfM,11071,The people are practicing with swords again. The people,The people are practicing with swords again.,The people,gold,are stretching proper position to force themselves.,are in the field again.,walk to a stop while a man stands behind them.,throw darts at a target for a person.,1\n3583,anetv_bNRE808ALfM,11066,We see a bright sunny field. People,We see a bright sunny field.,People,gold,are standing in the field holding a swords.,tumble down a waterfall in a sand castle.,are in a field playing voleyball.,see a person hitting a ball with a tennis racket and hitting it with a stick.,0\n3584,anetv_bNRE808ALfM,11068,We see the instructor of the class. The students,We see the instructor of the class.,The students,gold,get ready to practice during.,stand looking amazed to the crowd.,sit a the teacher demonstrates.,shuffle their flags hard.,2\n3585,anetv_bNRE808ALfM,11069,The students sit a the teacher demonstrates. We,The students sit a the teacher demonstrates.,We,gold,watched the girl as she finishes her article and the painting - lines in front of her.,help a boy in a room with a ticker on her shoulders.,\"at the starting desk, someone faces the younger sister with toasts.\",see people working in pairs indoors on wrist movement.,3\n3586,lsmdc3033_HUGO-14918,6511,\"Outside, someone pushes past pedestrians as he races toward the train station. Inside, he\",\"Outside, someone pushes past pedestrians as he races toward the train station.\",\"Inside, he\",gold,sees someone - a tank.,finds someone asleep in bed.,finds someone being hidden inside.,grins as he strides through a sea of people.,3\n3587,lsmdc3033_HUGO-14918,6517,\"Smiling, he steps forward and kisses her hands. Someone\",\"Smiling, he steps forward and kisses her hands.\",Someone,gold,\"looks at someone, shaking his head.\",glances at them as he passes.,\"grins and makes a laugh, delighted.\",gently lays her head on the pillow and gently strokes her face.,1\n3588,lsmdc3033_HUGO-14918,6512,\"Inside, he grins as he strides through a sea of people. Nearby, the news vendor\",\"Inside, he grins as he strides through a sea of people.\",\"Nearby, the news vendor\",gold,looks shrewdly from his front table and drinks.,\"addresses his marching friend, who waits patiently now.\",carries a wicker basket toward the cafe.,smiles as the men pull from his luggage.,2\n3589,lsmdc3033_HUGO-14918,6516,\"He glances at the cafe owner. Smiling, he\",He glances at the cafe owner.,\"Smiling, he\",gold,stares at the video.,glances over his shoulder at someone.,brushes the men past.,steps forward and kisses her hands.,3\n3590,lsmdc3033_HUGO-14918,6510,Someone grins at someone then stands. He,Someone grins at someone then stands.,He,gold,rises into his eyes.,runs out of the room.,watches the american leave.,points to his brow.,1\n3591,lsmdc3033_HUGO-14918,6515,The two dogs wag their tails as they sniff one another. He,The two dogs wag their tails as they sniff one another.,He,gold,moves more or less.,glances at the cafe owner.,pack a cigarette about four yards away.,imitates someone's cab and glares at someone as she watches.,1\n3592,anetv_FujUrbL1qc0,13804,He lays back and starts doing crunches. He,He lays back and starts doing crunches.,He,gold,sits back up on the machine and continues talking.,climbs back into bed.,continues to grip her arm.,\"lifts the nozzle to half, then lifts the weight up above his head.\",0\n3593,anetv_FujUrbL1qc0,13803,A man is sitting on a workout bench. He,A man is sitting on a workout bench.,He,gold,pulls a nut off the back of the machine.,wets his hands and performs up some speed.,lays back and starts doing crunches.,begins wrapping his paper around the sink.,2\n3594,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60232,7083,\"Someone looks at someone, turns to the others gesturing towards a high mountain pass. The Fellowship\",\"Someone looks at someone, turns to the others gesturing towards a high mountain pass.\",The Fellowship,gold,clamber through rock and snow.,detach throughout the tunnel.,follows a tearful bear ahead of someone.,looks up at the churning waves.,0\n3595,lsmdc1006_Slumdog_Millionaire-74184,530,\"Someone stares out into the crowd, in shock. Someone\",\"Someone stares out into the crowd, in shock.\",Someone,gold,and oils are gathered around mjolnir.,\"runs through the streets, towards the train station.\",suddenly gets up and starts back to his room.,stops to speak to someone.,1\n3596,lsmdc1006_Slumdog_Millionaire-74184,536,She wears a yellow headscarf. He,She wears a yellow headscarf.,He,gold,brushes out along by a shiny blue car.,wears a dark dress and pants.,runs across the station tracks.,rides on the escalator which she perfunctory across the hotel.,2\n3597,lsmdc1006_Slumdog_Millionaire-74184,535,\"He glances to his right, where he registers the figure of someone through the gaps in the trains. She\",\"He glances to his right, where he registers the figure of someone through the gaps in the trains.\",She,gold,\"scrambles to medium height, then starts to remove the large foliage.\",is back - spinning and ready to see the slytherin athletes again.,wears a yellow headscarf.,leads the rope closer to his ear and nods gently.,2\n3598,lsmdc1006_Slumdog_Millionaire-74184,532,His arms are folded around his knees. He,His arms are folded around his knees.,He,gold,catches a glimpse of him as he puts the wand to his throat.,swings his feet playing the conga.,\"stares down at the ground, lost in thought.\",shows up how graceful he is.,2\n3599,lsmdc1006_Slumdog_Millionaire-74184,533,\"He stares down at the ground, lost in thought. He\",\"He stares down at the ground, lost in thought.\",He,gold,stands on the porch and notices a bird standing on an overcast floor.,is long and alone.,lifts back his flippers.,takes a deep breath and sighs heavily.,3\n3600,lsmdc1006_Slumdog_Millionaire-74184,534,He takes a deep breath and sighs heavily. He,He takes a deep breath and sighs heavily.,He,gold,\"glances to his right, where he registers the figure of someone through the gaps in the trains.\",is sitting down beside himself.,idly chews his cell.,takes a deep breath.,0\n3601,lsmdc1006_Slumdog_Millionaire-74184,528,Two women present an enormous check for 20 million rupees to someone. The host,Two women present an enormous check for 20 million rupees to someone.,The host,gold,crosses the smooth environments across the map.,slaps someone on the back and wraps his arm around his shoulders.,\"gives a friendly smile, then exits.\",peers out at the children.,1\n3602,lsmdc1006_Slumdog_Millionaire-74184,537,He runs across the station tracks. We,He runs across the station tracks.,We,gold,dug motocross in a dark frenzy.,\", someone jumps through an opening french window on a bathroom and peers down at his old blue - spattered phone.\",returns an flaming revolver.,see a montage of images from someone's past.,3\n3603,anetv_cAhu8H9qsAI,3,A young woman sits down with supplies in her lap. She,A young woman sits down with supplies in her lap.,She,gold,bends down and puts on her shoes one at a time.,talks and leads into a medical woman talking utensils and brushing her hair followed by dog care.,hot water from the person's mouth after the patient walks.,woman is dancing in a large yard.,0\n3604,anetv_cAhu8H9qsAI,2,A bench is shown in a foyer. A young woman,A bench is shown in a foyer.,A young woman,gold,is filming in the driveway.,is sitting on top of a rug.,moves the batons form it continues.,sits down with supplies in her lap.,3\n3605,anetv_cAhu8H9qsAI,11012,A woman puts her shoes on after sitting down. She then,A woman puts her shoes on after sitting down.,She then,gold,picks up the shoes and tie them up.,takes off her shoes and puts a shoe in it.,begins onward while holding up a trash can.,picks up a bag and walks away.,3\n3606,anetv_cAhu8H9qsAI,11011,A bench is shown in a foyer. A woman,A bench is shown in a foyer.,A woman,gold,is talking about a pair of ironing clothes.,is mopping a baby's floor.,puts her shoes on after sitting down.,hands a empty frisbee and a dog.,2\n3607,anetv_svWiQtzgtOc,15871,The people are watching as they stand around him on a city street. He,The people are watching as they stand around him on a city street.,He,gold,spins and turns for their entertainment.,holds the cameraman from behind.,glances at the doors.,is shown taking the shoes and running around a sidewalk.,0\n3608,anetv_svWiQtzgtOc,18193,A man is seen performing various flips and tricks in the middle of a public square with dozens of people watching on the side. The man,A man is seen performing various flips and tricks in the middle of a public square with dozens of people watching on the side.,The man,gold,continues to spin around the playground while another woman stands on the side and watches.,continues to do tricks in various areas while the people around him watch and applaud.,continues to perform tai chi by himself followed by skating in the field with others into the air in front of facing camera.,continues walking around the area and grabbing a bit of balance and ends with him rolling on a ball.,1\n3609,anetv_svWiQtzgtOc,15870,A large man is break dancing in front of a crowd. The people,A large man is break dancing in front of a crowd.,The people,gold,are watching as they stand around him on a city street.,are watching television in the background.,show off playing on the ground.,finish dancing around the stage.,0\n3610,lsmdc0014_Ist_das_Leben_nicht_schoen-54694,136,\"Suddenly, as the people once more start moving toward the door, she holds up a roll of bills and calls out. Someone\",\"Suddenly, as the people once more start moving toward the door, she holds up a roll of bills and calls out.\",Someone,gold,\"opens the front door, hesitates a moment, and gets up.\",jumps back in the van.,jumps over the counter and takes the money from someone.,\"follows slowly into the kitchen, moving multiple papers and pans leaving them.\",2\n3611,lsmdc0014_Ist_das_Leben_nicht_schoen-54694,139,\"Someone hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line. Someone\",\"Someone hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line.\",Someone,gold,\"stalks back, near only someone two tall straight windows.\",watches himself in the window.,looks surprised and sees them in the colonel's leopard jacket.,takes out his wallet and takes out all the cash he is got.,3\n3612,lsmdc0014_Ist_das_Leben_nicht_schoen-54694,135,\"During this scene someone has come up behind the counter. Suddenly, as the people once more start moving toward the door, she\",During this scene someone has come up behind the counter.,\"Suddenly, as the people once more start moving toward the door, she\",gold,is dragged to the edge of the roof.,turns again and takes the room in her portfolio and makes her way towards the farmhouse.,holds up a roll of bills and calls out.,\"stops and turns back towards the door, one by one.\",2\n3613,lsmdc0014_Ist_das_Leben_nicht_schoen-54694,138,\"Someone turns and slips out through the crowd, followed by someone. Someone\",\"Someone turns and slips out through the crowd, followed by someone.\",Someone,gold,\"places her hands behind his back, brings his arms around her, and carries her across the graveyard.\",\"hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line.\",walks through the dark tunnels and crosses to the back of the car.,pulls up on the spot in his seat.,1\n3614,lsmdc0014_Ist_das_Leben_nicht_schoen-54694,137,Someone jumps over the counter and takes the money from someone. Someone,Someone jumps over the counter and takes the money from someone.,Someone,gold,straightens his imaginary halting and checks his wrist as he videotapes.,shifts his bashful gaze on his wife as the pilot returns.,brushes the cue aside and puts them down.,\"turns and slips out through the crowd, followed by someone.\",3\n3615,lsmdc1040_The_Ugly_Truth-8823,1161,Someone looks uncomfortable and buttons up his shirt. Someone,Someone looks uncomfortable and buttons up his shirt.,Someone,gold,takes the bottle someone puts.,puts down her glass and steps towards him.,stares thoughtfully as they exchange eagerly.,watches a glimpse of the magnificent manor house.,1\n3616,lsmdc1040_The_Ugly_Truth-8823,1160,\"With tears in her eyes, someone steps away, drinks, and sits. Someone\",\"With tears in her eyes, someone steps away, drinks, and sits.\",Someone,gold,grabs his own throat.,looks out his window at a sofa at the far end of the room and watches a sleeping gangster near his ear watching her.,\"turns to look at them, haughtily.\",looks uncomfortable and buttons up his shirt.,3\n3617,lsmdc3017_CHRONICLE-7103,17617,Our view circles around the room. We,Our view circles around the room.,We,gold,find a proud grin on someone's face.,see the same intro screens.,\", someone peers through a window at someone's head in the lift.\",is the writing ship behind him.,0\n3618,lsmdc3017_CHRONICLE-7103,17619,\"As he nods off, the camera falls. On another day, his mother\",\"As he nods off, the camera falls.\",\"On another day, his mother\",gold,sits in a garden.,watches in horror as he glances towards the wreck.,holds it as they sit at a waterfront cafe.,notes his travels as the two children play.,2\n3619,lsmdc3017_CHRONICLE-7103,17621,\"He gives a bashful smile, then lifts his heavy - lidded eyes and stares directly at us. Now at a park, someone\",\"He gives a bashful smile, then lifts his heavy - lidded eyes and stares directly at us.\",\"Now at a park, someone\",gold,telekinetically lifts a rock off the grass and skips it across the lake.,sees someone cross the lobby.,follows someone through a doorway past someone's cake in the empty bathroom.,rolls her eyes on the other girls.,0\n3620,lsmdc3017_CHRONICLE-7103,17622,\"Now at a park, someone telekinetically lifts a rock off the grass and skips it across the lake. Someone\",\"Now at a park, someone telekinetically lifts a rock off the grass and skips it across the lake.\",Someone,gold,draws herself up and pats the seat in front of it.,sniffs another plastic jar.,\"looks over, then gives a shrug.\",takes her coat and drapes it out to a sunken open grave.,2\n3621,anetv_HDhG0WkwGaU,4691,The videos transitions into a countdown of various people getting hurt on the streets from bull attacks. many different people,The videos transitions into a countdown of various people getting hurt on the streets from bull attacks.,many different people,gold,are seen running down streets while a bull flips them over and hurt them.,are at different angles of people doing death and sometimes throwing them into the wilderness.,\"are skateboarders, as the swings parked at different speeds.\",are balancing in the grass while spectators and the men all move with a rope.,0\n3622,anetv_YOLDcsX7EiA,12433,A person is skiing down a hill of snow. They,A person is skiing down a hill of snow.,They,gold,are going down a slope down the hill.,are snowboarding down a hill.,go off of a jump and fly in the air.,uses a snowboard to hit a white head.,2\n3623,anetv_YOLDcsX7EiA,12434,They go off of a jump and fly in the air. They,They go off of a jump and fly in the air.,They,gold,stumbles onto a rake.,serve the ball around as they continue to play and they get down on water.,jump is riding a motorcycle.,land back on the snow and continue skiing down the hill.,3\n3624,lsmdc1035_The_Adjustment_Bureau-85861,9767,\"He tries another one, then attempts to lift a loading bay door. Now someone\",\"He tries another one, then attempts to lift a loading bay door.\",Now someone,gold,sits with his back against a support beam.,leads someone someone through a city window and pulls off his scooter.,places the horse up a cozy hook and lightly stretches its snout.,in the van starting smoothen him into the water.,0\n3625,lsmdc1035_The_Adjustment_Bureau-85861,9762,\"Her shoulders sag as the man leaves, and she collects her belongings. Now as someone leaves the studio, the man in the ball cap\",\"Her shoulders sag as the man leaves, and she collects her belongings.\",\"Now as someone leaves the studio, the man in the ball cap\",gold,gazes down at the desk punk who reaches out and looks out.,opens the door for him.,pulls someone off and settles on his back and frame.,is poured into the bag of liquids.,1\n3626,lsmdc1035_The_Adjustment_Bureau-85861,9765,\"Lifting his gaze from his phone, he finds himself in the Adjustment Bureau warehouse. He\",\"Lifting his gaze from his phone, he finds himself in the Adjustment Bureau warehouse.\",He,gold,\"whips around to the closed door, but finds it locked.\",nods at his wife.,\"stops as someone sprints across the street, two at a time.\",pounds a space he handle.,0\n3627,lsmdc1035_The_Adjustment_Bureau-85861,9763,\"Now as someone leaves the studio, the man in the ball cap opens the door for him. Someone\",\"Now as someone leaves the studio, the man in the ball cap opens the door for him.\",Someone,gold,texts as he walks through the doorway.,sits alone next to him.,walks around the corner with a card.,walks inside with a confident smile as he cooks.,0\n3628,lsmdc1035_The_Adjustment_Bureau-85861,9758,\"Blinking, someone looks away. He\",\"Blinking, someone looks away.\",He,gold,\"his mouth with a wrist then sneer, someone shifts to friends, downs a shot at his son, and faces his little sister\",gulps closer to a small child sitting beside him.,\"juts out his jaw, then locks eyes with her.\",picks up the drawing.,2\n3629,lsmdc1035_The_Adjustment_Bureau-85861,9761,\"In the studio, someone shakes someone's hand, then waves to the audience. Meanwhile, a guy in a ball cap\",\"In the studio, someone shakes someone's hand, then waves to the audience.\",\"Meanwhile, a guy in a ball cap\",gold,sits on his face.,flies up to her.,knocks someone onto the drums.,enters the green room.,3\n3630,lsmdc1035_The_Adjustment_Bureau-85861,9766,\"He whips around to the closed door, but finds it locked. He\",\"He whips around to the closed door, but finds it locked.\",He,gold,opens the door closing for someone.,\"tries another one, then attempts to lift a loading bay door.\",spots someone on the other side of the corridor and slowly reaches into the shower.,lays him to the floor.,1\n3631,lsmdc1035_The_Adjustment_Bureau-85861,9760,\"Now someone sits in a green room. In the studio, someone\",Now someone sits in a green room.,\"In the studio, someone\",gold,\"smokes a cigarette with one another, then looks around.\",\"shakes someone's hand, then waves to the audience.\",arrives in a admires hoodie and inspects a complex packed chest - to - american boyish suit.,finds a couple on a coffee table.,1\n3632,lsmdc1035_The_Adjustment_Bureau-85861,9759,\"He juts out his jaw, then locks eyes with her. Now someone\",\"He juts out his jaw, then locks eyes with her.\",Now someone,gold,leads a lookout man.,enters the darkened bedroom in his classroom wearing his new briefs.,is dark with a skirt and a cocktail dress.,sits in a green room.,3\n3633,lsmdc0033_Amadeus-66640,116,Camera pulls back to show someone family at dinner. Someone,Camera pulls back to show someone family at dinner.,Someone,gold,\"sits at the head of the table, a napkin tucked into his chin.\",has someone meanwhile slung over his shoulder.,sits at a reception table gazing up at the silver - lit fence.,enters the greenhouse as someone soaps them up.,0\n3634,lsmdc0033_Amadeus-66640,117,\"Someone sits at the head of the table, a napkin tucked into his chin. Someone\",\"Someone sits at the head of the table, a napkin tucked into his chin.\",Someone,gold,struggles to get the offscreen someone.,is serving the fish into portions and handing them round.,follows someone into their pew with the crowded.,\"nods and steps toward him,'s chest flushed.\",1\n3635,lsmdc0033_Amadeus-66640,118,Someone receives his plate of fish and starts to eat greedily. Suddenly there is a gasp - he,Someone receives his plate of fish and starts to eat greedily.,Suddenly there is a gasp - he,gold,\"emerges from the high farmer with the car, snapping it in half.\",with a cheerful campfire.,tumbles to a halt.,starts to choke violently on a fish bone.,3\n3636,anetv_oFku30m99do,5647,A woman is seen standing in a bathroom wrapped up in a towel. The girl,A woman is seen standing in a bathroom wrapped up in a towel.,The girl,gold,holds her hair up with one hand and rubs makeup on with the other.,\"scrubs the woman's leg into a tub and wipes off a towel, which covers the window.\",\"washes her hands and shaves her hair while rubs her hands, then sprays his hair again.\",sets her leg near the sink and continues putting the clothes back on.,0\n3637,anetv_FCYdwCXRNVI,16526,We see a person welding in the dark. The person,We see a person welding in the dark.,The person,gold,is assembling the newspaper to the ground.,pauses and adjusts his helmet.,\"shows us a piece of metal, and then peels it to a machine.\",shows a shave equipment with a razor.,1\n3638,anetv_FCYdwCXRNVI,16527,The person pauses and adjusts his helmet. The man,The person pauses and adjusts his helmet.,The man,gold,lifts his helmet briefly.,stops and starts a motorcycle that sits against the water.,puts the ski onto top.,puts on the tool as he wins.,0\n3639,anetv_FCYdwCXRNVI,16529,The man lifts and lowers his helmet. the man,The man lifts and lowers his helmet.,the man,gold,sails the boat sideways towards a third location.,bends over his shoulder.,looks out from under his helmet.,stands and lifts the weight.,2\n3640,anetv_FCYdwCXRNVI,16530,The man looks out from under his helmet. The man,The man looks out from under his helmet.,The man,gold,pulls a gun to his face and speaks on the screen.,reaches the end of the diving board and is pushed by a giant wave.,finishes and lifts his helmet.,uses the mask down.,2\n3641,anetv_Yr6Oyltj6Eo,13507,\"An athletic woman is shown jumping in slow motion over a pole, followed by several more women attempting the same jump. Several more women\",\"An athletic woman is shown jumping in slow motion over a pole, followed by several more women attempting the same jump.\",Several more women,gold,are seen being shown jumping and leading into various jumps and moves as well as a woman jumping on the side.,follow behind performing the jump while the camera captures them in slow motion.,approach and bow and jump also after jumping on fights and ends with the man on the side before the video begins.,are shown throwing up stunts back and doing tricks while the cameraman captures her movements.,1\n3642,anetv_vvdmMyyAtN0,5026,A woman is lying on a bed with her hair spread. There,A woman is lying on a bed with her hair spread.,There,gold,are ironing a black shirt.,are several images of her from behind with very long hair.,young man is listed surfaces in the sun.,woman is standing in the pool hall and walks over to a camel with two brown dogs behind it.,1\n3643,anetv_vvdmMyyAtN0,5027,There are several images of her from behind with very long hair. We then,There are several images of her from behind with very long hair.,We then,gold,see the older girl holding an eye and waving to the camera.,see them in the distance on the lake in various locations perform cartwheels at one time.,see them in the blue suit and scarf where she shows a different part of the hair and trimming her neck.,see numerous images of her with her hair cut off to shoulder length.,3\n3644,lsmdc0012_Get_Shorty-53530,17409,Someone sits up in bed. Someone,Someone sits up in bed.,Someone,gold,pokes someone's side with her sleeve.,offers a framed photo.,drips a strand of blood off the rim.,\"sits up on his elbows, listens.\",3\n3645,lsmdc0012_Get_Shorty-53530,17408,Someone's already looking at him. Someone,Someone's already looking at him.,Someone,gold,swerves round the police station left.,sits down to the table and looks toward the microphones.,lies asleep beside her.,stares at the asian purple.,2\n3646,lsmdc0012_Get_Shorty-53530,17407,Someone looks to someone for help here. Someone,Someone looks to someone for help here.,Someone,gold,strides into the next room.,sets down his comrade.,leaves the somber room.,'s already looking at him.,3\n3647,anetv_xUUmAdQJgjg,18938,A boy runs the length of a track. He,A boy runs the length of a track.,He,gold,advertises the score with a start kick.,appears and a crew briefly pass a ball he picked up as he pass.,grabs a yellow arrow then steps out of the pool range.,takes a big jump into a sand pit.,3\n3648,anetv_xUUmAdQJgjg,8331,They jump into a box of sand. A man,They jump into a box of sand.,A man,gold,joins other people and falls upside down on their surfboards.,walks onto the sand to measure the distance.,falls at the top of a basketball net on the far landing and another man darts at the cliff.,puts no suit onto the fire.,1\n3649,anetv_xUUmAdQJgjg,8330,A person sprints down a track. They,A person sprints down a track.,They,gold,hop onto the motorcycle and run to the pole.,begin to race right under the track.,jump into a box of sand.,run around a track and lift over obstacles.,2\n3650,anetv_xUUmAdQJgjg,18939,He takes a big jump into a sand pit. He,He takes a big jump into a sand pit.,He,gold,turns around and hits the ball several times.,jumps up and moves out of the way.,goes off the diving board into the water.,gets to the air and waves to the camera.,1\n3651,lsmdc0016_O_Brother_Where_Art_Thou-55337,16418,Behind him a line of robed singers lengthens steadily as people stream out of the woods. People,Behind him a line of robed singers lengthens steadily as people stream out of the woods.,People,gold,emerge from the woods and gaze down at the river.,\"bends, skipping over a pair of tall, long pointed trees as if in medieval.\",steps into the podium.,and quince are left clapping with joy.,0\n3652,lsmdc0016_O_Brother_Where_Art_Thou-55337,16419,People emerge from the woods and gaze down at the river. White - robed people,People emerge from the woods and gaze down at the river.,White - robed people,gold,wave along the river over the naming.,continue to drift past them.,stride toward a archway and under a colored archway over the beach.,stand behind the green cover.,1\n3653,lsmdc0016_O_Brother_Where_Art_Thou-55337,16417,We are booming down to reveal a minister in the foreground. He,We are booming down to reveal a minister in the foreground.,He,gold,\"stands belly - deep in the river, easing a white - robed man back - down into the water.\",\"resembles a long deliberate style, futuristic structure.\",moves managed to median it.,is waterboarding direction to incoming it.,0\n3654,anetv_f0Z-qud2N74,16595,Two boys are wrestling in a bedroom. One boy,Two boys are wrestling in a bedroom.,One boy,gold,is washing his hands and washing his hands.,massages the other's hands with the other.,is picked up and thrown on the bed.,swings them down and starts punching a object in front of him.,2\n3655,anetv_f0Z-qud2N74,16596,One boy is picked up and thrown on the bed. The boy,One boy is picked up and thrown on the bed.,The boy,gold,is ducking a little.,jumped down the slide several times.,turns off the camera.,is holding a baseball timing holes in his hands and playing angrily in the security booth.,2\n3656,lsmdc3079_THINK_LIKE_A_MAN-36750,1381,\"Frowning, his mom leaves. Someone\",\"Frowning, his mom leaves.\",Someone,gold,peeks into a room decorated with trophies and posters.,\"sits in the open champion's chair, sipping his drink.\",leads him round the zoo.,tears up his coat and hugs him.,0\n3657,anetv_wy_oDiDK6lk,7281,The cat is faling sleep while the woman is cutting his nails. cat,The cat is faling sleep while the woman is cutting his nails.,cat,gold,walks up and sketches in the chair with a nail brush.,is lying on woman's leg and its falling sleep while the woman is cutting her nails.,starts pulling the snake's tail out of it.,was holding the back paws to a camera about how to apply the nails near and then feeling the nails of the cat.,1\n3658,anetv_wy_oDiDK6lk,17867,A lady sits on a couch and clips her cat's claws. The cat,A lady sits on a couch and clips her cat's claws.,The cat,gold,puts it paw in the air and spreads it out.,brushes all of the cat claws at the fissure.,then takes one of her bloody photographs and ties her nails.,picks the bike off and lays its down.,0\n3659,anetv_iyGve9RCjV4,832,Two people are seen performing various martial arts with one another while a large group of people watch on the sides. More people,Two people are seen performing various martial arts with one another while a large group of people watch on the sides.,More people,gold,are seen riding around on the frame while people watch on the sides.,are seen standing around at the center and leads into a fighting man lifting the others and blocking them down.,begin to arm wrestle around each other.,stand in the middle and perform with one another and ends with people moving around and grabbing one another.,3\n3660,anetv_p8_hwwgyoZE,18749,A man and woman are on a stage together. They quickly,A man and woman are on a stage together.,They quickly,gold,begin her dance around and dance.,perform a dance routine away from the throng.,play drums before a crowd.,dance up solo hoops while dancing.,2\n3661,anetv_p8_hwwgyoZE,18750,They quickly play drums before a crowd. An older man,They quickly play drums before a crowd.,An older man,gold,\"sits at a piano, chasing the accordion.\",climb onto a rooftop with an umbrella in one hand as someone continues to speak and cheers.,\"sitting behind a drum, and playing a violin, while clinging to the keyboard while looking right at the instrument.\",is then seen also playing drums.,3\n3662,lsmdc3032_HOW_DO_YOU_KNOW-2529,7946,She crosses the outer hall. She,She crosses the outer hall.,She,gold,\"goes indoors, very noticeably.\",\"jumps up and walks across the hall, dragging someone standing against a wall.\",presses the elevator button.,uses a hectic key on the door.,2\n3663,lsmdc3032_HOW_DO_YOU_KNOW-2529,7947,She puts them on the elevator. Someone,She puts them on the elevator.,Someone,gold,climbs onto the tram.,guided her to a coil.,steps on the wall in front of the nude.,notes her flushed complexion.,3\n3664,lsmdc3032_HOW_DO_YOU_KNOW-2529,7945,Barefoot she marches to the door. She,Barefoot she marches to the door.,She,gold,smiles and peels away a spoonful of paper.,crosses the outer hall.,turns aside to the man carrying a dresser sipping lipstick.,buttons his blue sweater.,1\n3665,anetv_YFTQImGp_nY,9867,The older members of the group hold up poles for the children dancing to swing from. The hula hoop dancers,The older members of the group hold up poles for the children dancing to swing from.,The hula hoop dancers,gold,get even more hoops for the finale.,show more of their team mates as well as the camera young followed by walking them.,\"move their hands, futile as they swing.\",perform on a large ceremony and the two women do the same.,0\n3666,anetv_YFTQImGp_nY,9864,A television announcer claps on her legs while singing introducing a show. A group of dancers in colorful costumes,A television announcer claps on her legs while singing introducing a show.,A group of dancers in colorful costumes,gold,do an dance act with hula hoops.,are dancing playing with bows.,perform between dancers on a sort of wrestling competition.,sit in front of their chairs.,0\n3667,anetv_YFTQImGp_nY,9865,A group of dancers in colorful costumes do an dance act with hula hoops. The audience,A group of dancers in colorful costumes do an dance act with hula hoops.,The audience,gold,flip over and cheering as people enter the bar.,claps loudly with the interview and performs sit - ups.,is shown removing their hand and jumping into line.,is seen and members clap for the group.,3\n3668,anetv_YFTQImGp_nY,9869,Confetti rains from the air onto the performers. The announcer,Confetti rains from the air onto the performers.,The announcer,gold,gives his thumbs up as he lips the band.,offers a man over tvs.,stands up and claps for the group.,leads a student for the score.,2\n3669,anetv_YFTQImGp_nY,9868,The hula hoop dancers get even more hoops for the finale. Confetti,The hula hoop dancers get even more hoops for the finale.,Confetti,gold,rains from the air onto the performers.,is seen showing up.,blow brightly into people jumping.,\"around her neck, she fixes the hanging hoop and bounces it in the pin before standing up.\",0\n3670,anetv_dojDT4CtenU,10574,The batter hits the ball into the stands and the moment is recaptured in 3 - d.. A reporter,The batter hits the ball into the stands and the moment is recaptured in 3 - d..,A reporter,gold,comments how amazing the hit was and replays it from various angles.,speaks in the background training snatches routine and during quick battles followed by a man and interviews a subscribe screen.,watches a log in a painted park holding the camera.,\"beat a video and player appears, and a referee takes a shot.\",0\n3671,anetv_dojDT4CtenU,10575,A reporter comments how amazing the hit was and replays it from various angles. The player,A reporter comments how amazing the hit was and replays it from various angles.,The player,gold,with his blue mallet begins plowing the ice.,puts more on the bar.,is interviewed by a reporter and once again has his moment shown on tv.,scores several times as the opposing players are below in the ball that way to be getting behind it again.,2\n3672,lsmdc1027_Les_Miserables-6499,582,Someone rests his hand on someone's head and gazes fondly at him. Someone,Someone rests his hand on someone's head and gazes fondly at him.,Someone,gold,\"leans down and kisses someone's other hand, which holds hers.\",eyes him and he pitches out.,opens his big eyes.,removes his reading glasses.,0\n3673,anetv_t19uSLVQGWA,17704,A man is seen sitting behind a drum set beginning to play while others watch him on the side. The man,A man is seen sitting behind a drum set beginning to play while others watch him on the side.,The man,gold,then begins playing the violin.,continues to play the drum set faster and faster and ends by stopping to speak to the camera.,then begins playing guitar while the camera captures his movements.,continues singing back and fourth while the camera captures his movements.,1\n3674,lsmdc3003_40_YEAR_OLD_VIRGIN-1124,4685,Someone stares at the hot employee. She,Someone stares at the hot employee.,She,gold,closes the front door.,peeks at someone's shoulder.,leans on a shelf.,\"looks down thoughtfully, then drops his coat.\",2\n3675,lsmdc3003_40_YEAR_OLD_VIRGIN-1124,4681,They see the hot salesgirl working nearby. She,They see the hot salesgirl working nearby.,She,gold,licks it off with a little.,yawns as she places books on shelves.,pumpkins at the bottom of the slope as the man and long stems hang from it.,\"stands and steps out into the cockpit, where someone lies on a bunk.\",1\n3676,lsmdc3003_40_YEAR_OLD_VIRGIN-1124,4684,He eyes someone who pretends to browse around. Someone,He eyes someone who pretends to browse around.,Someone,gold,sets him on the passenger seat.,pushes him from a couch and strides away.,stares at the hot employee.,pins him with his drumsticks.,2\n3677,lsmdc3003_40_YEAR_OLD_VIRGIN-1124,4683,He closes his mouth and stuffs his hands in his pockets. He,He closes his mouth and stuffs his hands in his pockets.,He,gold,\"advances on the knife wrapped in hot cloth, using a bag.\",steps up beside someone and faces him.,eyes someone who pretends to browse around.,takes the tray away from the baby and sits down.,2\n3678,lsmdc3003_40_YEAR_OLD_VIRGIN-1124,4682,She yawns as she places books on shelves. He,She yawns as she places books on shelves.,He,gold,sets the aside asleep someone's arm and takes a few steps closer and watches as contemplative guests rush back into the room.,\"opens the lid to find a woman, and places the box on a rack.\",emerges with her dress as someone steps in through the metal gate of a tall kitchen.,closes his mouth and stuffs his hands in his pockets.,3\n3679,anetv_IhWxuvzIHkc,2430,The man begins vacuuming up some white powder on a hardwood floor. The man,The man begins vacuuming up some white powder on a hardwood floor.,The man,gold,stops vacuuming and gets a close up view of the clean floor.,uses a toothbrush to smell the rest of the sink with several different attachments and a long glass of air.,fold up and moves his torch.,sprays the rug on the floor.,0\n3680,anetv_IhWxuvzIHkc,2429,A man turns on his vacuum with his bare feet. The man,A man turns on his vacuum with his bare feet.,The man,gold,picks up the protective leg and wipes back material on the man's hands.,stretches forward taking off the shoes.,begins vacuuming up some white powder on a hardwood floor.,shows how to hold a mop in the abandoned cabin.,2\n3681,anetv_exxji9vqjSw,18871,Various shots are shown of snowy mountains that transition in between shots of people skiing and snowboarding down the mountain. The people,Various shots are shown of snowy mountains that transition in between shots of people skiing and snowboarding down the mountain.,The people,gold,continue to push a skateboard behind the trees and end by taking the board and waving.,continue riding along the locomotive going around the 30 and another knee.,speak to other areas along the water and jump off their horses and ride to one another.,are seen performing various flips and tricks down the mountain while the camera captures them from many angles as well as the mountain.,3\n3682,anetv_ZjHIN-M-dQY,11743,One man moves a stationary bike. A woman,One man moves a stationary bike.,A woman,gold,holds a food weight to his shoulder.,adjusts the top hat she is wearing.,eats inside a fitness machine.,picks up a phone and talks with the camera in a series of clips of riding on.,1\n3683,anetv_ZjHIN-M-dQY,11742,A group of people re riding stationary bikes in a big gym. One man,A group of people re riding stationary bikes in a big gym.,One man,gold,moves a stationary bike.,takes up jumps starts knocking on a wall next to the other man.,switches around and watches the second bike go by.,wins and everyone gets more excited.,0\n3684,anetv_mO1T8zhIliY,14993,Two people are seen fencing back and fourth. The people,Two people are seen fencing back and fourth.,The people,gold,kick the ball against the side.,walk around adjusts adjusts touches and leads into shots of two other people drinking.,push one another around on a mat while others watch on the side.,dance back and fourth while others watch on the sides.,2\n3685,anetv_e60HGAzBOvo,13417,The man then removes the tape and turns the ski onto it's side to scrape at it. When he's finished he,The man then removes the tape and turns the ski onto it's side to scrape at it.,When he's finished he,gold,smells the finish product to get out.,cuts back to show his experiences with two different power parts.,wipes the boots off with a bloody clean towel.,grabs the ski and puts it into a compartment that is located above the green machine.,3\n3686,anetv_Yc9pZ8Vy-3s,4726,The people kayak under a bridge where people are jumping into the water to swim. At the end a person,The people kayak under a bridge where people are jumping into the water to swim.,At the end a person,gold,is digging underwater in the rough line and around the water.,flips the kayak going under water briefly before turning themselves right side up in the water again.,is shown scuba diving.,in green jumps into the water some lifeboats.,1\n3687,anetv_Yc9pZ8Vy-3s,4725,\"Two people kayak on a rough, narrow, body of water surrounded by rocks using paddles to navigate the water, later on the y kayak off of rocks and slide into the water. The people\",\"Two people kayak on a rough, narrow, body of water surrounded by rocks using paddles to navigate the water, later on the y kayak off of rocks and slide into the water.\",The people,gold,\"seem unaware of the presence, hitting the water directly out of their way after boards out over it.\",ride on the boat.,continue rafting rafts until they in the water as they walk along the docks.,kayak under a bridge where people are jumping into the water to swim.,3\n3688,lsmdc3013_BURLESQUE-4808,1008,Someone tips her biker cap. Someone,Someone tips her biker cap.,Someone,gold,shoots as the guards aim their weapons.,glares down at them.,brings the refrigerator over to someone who hugs her.,sees the helmeted team.,1\n3689,lsmdc3013_BURLESQUE-4808,1000,\"As the red spotlight fixes on someone for her turn to lip - sync, someone pulls a plug. Someone\",\"As the red spotlight fixes on someone for her turn to lip - sync, someone pulls a plug.\",Someone,gold,stows the note pad up on the floor behind the elevators.,\"maneuvers along the lawn, high over the curve in bank.\",stops dancing and gazes across the lounge toward the sound booth.,munches like someone slapped.,2\n3690,lsmdc3013_BURLESQUE-4808,1014,Someone's backup dancers push her forward. She,Someone's backup dancers push her forward.,She,gold,kneel on their faces and grins at them.,leads someone across the shoulders to someone's room.,\"curtsies, then bows with the others.\",cups her wrists with her hands.,2\n3691,lsmdc3013_BURLESQUE-4808,998,\"Meanwhile, someone enters the sound booth. Someone\",\"Meanwhile, someone enters the sound booth.\",Someone,gold,\"watches someone leave, then moves to his soundboard.\",subdues her the guard to it.,stops and inserts his phone.,go through some metal doors and pirates unload on coffin balcony on a deposits.,0\n3692,lsmdc3013_BURLESQUE-4808,1004,\"As the curtain continues to drop, she opens her mouth. The curtain\",\"As the curtain continues to drop, she opens her mouth.\",The curtain,gold,freezes above someone's head.,munches a closed fan.,wraps up and the lights are thrown.,yanks off the curlers.,0\n3693,lsmdc3013_BURLESQUE-4808,1006,\"As the band joins her, she struts toward the audience. Dancing, she\",\"As the band joins her, she struts toward the audience.\",\"Dancing, she\",gold,\"withdraws her flooded dance floor and closes her eyes, still alternating her feet by the platform.\",swings her hips from side to side.,sweeps her attention across the room.,holds her gaze to an glamorous above her.,1\n3694,lsmdc3013_BURLESQUE-4808,1001,Someone stops dancing and gazes across the lounge toward the sound booth. Someone,Someone stops dancing and gazes across the lounge toward the sound booth.,Someone,gold,has entered the room to start up until he reaches the level of the hall.,sits down the aisle and speaks to his judges.,repeats the room briskly as she looks.,gives a satisfied smile.,3\n3695,lsmdc3013_BURLESQUE-4808,997,\"Someone tosses someone a costume. Meanwhile, someone\",Someone tosses someone a costume.,\"Meanwhile, someone\",gold,\"struggles two old ladies, pushing him back against the bed.\",thrusts her plate in to her.,enters the sound booth.,gets out of the limo.,2\n3696,lsmdc3013_BURLESQUE-4808,1013,\"Someone storms out of the sound booth with a sour expression. A spotlight fades up onstage and the bartenders, including someone,\",Someone storms out of the sound booth with a sour expression.,\"A spotlight fades up onstage and the bartenders, including someone,\",gold,stand over the ping - pong table.,clap for the performers.,look up at their clocks.,stand by a table and exchange camp.,1\n3697,lsmdc3013_BURLESQUE-4808,1003,\"Onstage, someone sees the curtain descending. Someone tentatively\",\"Onstage, someone sees the curtain descending.\",Someone tentatively,gold,takes the ring on his finger.,takes a pen from his pack and sits up.,raises his hand to join them.,steps to the front of the stage.,3\n3698,lsmdc3013_BURLESQUE-4808,1002,\"Meanwhile, someone finds someone backstage. Onstage, someone\",\"Meanwhile, someone finds someone backstage.\",\"Onstage, someone\",gold,backs up some stairs.,sings eastern spanish from the dance studio.,sees the curtain descending.,sits into the pool facing its central chat.,2\n3699,lsmdc3013_BURLESQUE-4808,999,\"Onstage, a spotlight shines on someone. The light\",\"Onstage, a spotlight shines on someone.\",The light,gold,hits someone across the face.,came up with them.,glows a powder almost blue.,shines on another dancer.,3\n3700,lsmdc3013_BURLESQUE-4808,1007,\"Dancing, she swings her hips from side to side. Someone\",\"Dancing, she swings her hips from side to side.\",Someone,gold,looks up as someone resumes his calculations.,\"hangs on the fence behind her in a mirror, facing her cars.\",leads her over to a distance dancing.,smiles and shakes her head.,3\n3701,lsmdc3013_BURLESQUE-4808,1012,\"As someone hugs someone, the crowd rises in a standing ovation. Someone\",\"As someone hugs someone, the crowd rises in a standing ovation.\",Someone,gold,\"sits up from her class, the television set, as someone backs away from the house.\",takes on his cloak.,takes two plates of drinks.,storms out of the sound booth with a sour expression.,3\n3702,lsmdc3013_BURLESQUE-4808,1011,\"Someone strikes a pose with her arms in the air and the stage lights blink off. As someone hugs someone, the crowd\",Someone strikes a pose with her arms in the air and the stage lights blink off.,\"As someone hugs someone, the crowd\",gold,rolls over and sobs.,wraps their arms around each other's waist.,rises in a standing ovation.,breaks and their propellers creep in.,2\n3703,lsmdc3013_BURLESQUE-4808,1005,\"The stagehand pulls a rope and the curtain rises back to the ceiling. As the band joins her, she\",The stagehand pulls a rope and the curtain rises back to the ceiling.,\"As the band joins her, she\",gold,strides into her suite with mr.,hangs up next to someone.,steps off of the dance floor.,struts toward the audience.,3\n3704,lsmdc3063_SOUL_SURFER-31336,6926,Someone answers with a thoughtful nod. Her father,Someone answers with a thoughtful nod.,Her father,gold,\"takes out dolce curiously, then faces someone squarely.\",kisses and hugs her.,flexes her right hand.,hands them to her.,1\n3705,anetv_485Wn1DXt5U,4041,Another girl then tries to do the same thing but she is n't successful. The first girl,Another girl then tries to do the same thing but she is n't successful.,The first girl,gold,gets up and points her hula hoop with her hands.,does the same thing again in the great time.,comes back and does it effortlessly as the second girl still struggles.,dances from the corner and walks in the other direction.,2\n3706,anetv_485Wn1DXt5U,4042,\"The first girl comes back and does it effortlessly as the second girl still struggles. For the last round, the girl\",The first girl comes back and does it effortlessly as the second girl still struggles.,\"For the last round, the girl\",gold,holds the impassive pin of the groom and motions for a black shoe to hop on.,makes her way up and down the slide with the girl on it.,begins to hula hoop and drinks soda and runs across the grass.,flips up and exits the frame to keep.,2\n3707,anetv_zJX_Oh4yVnc,17509,A person is seen riding around on a dirt bike that leads into him speaking to the camera. He,A person is seen riding around on a dirt bike that leads into him speaking to the camera.,He,gold,spray shows and get up to waxing weights and going back and fourth.,pulls off the shoes and starts to fly down on a skateboard track.,shows off his bike as well as camera and leads into several clips of him riding around.,follows running all down the hills while looking off into the distance.,2\n3708,anetv_zJX_Oh4yVnc,17510,He shows off his bike as well as camera and leads into several clips of him riding around. He,He shows off his bike as well as camera and leads into several clips of him riding around.,He,gold,begins playing the piano together and continues to change his handles.,continues to ride around on the track while also showing close ups of himself as well as the camera.,turns around and talks about the waves as he plays and throws back and fourth.,is then seen running down a track while fast on his board.,1\n3709,anetv_dRRht9vdYDE,938,There are a few older gentlemen playing a game on ice. They have a coach to help them and he,There are a few older gentlemen playing a game on ice.,They have a coach to help them and he,gold,gets cooked to get them to instruct them.,demonstrates a tai technique that they should win.,talks about how to curl.,bows to like graphs.,2\n3710,anetv_dRRht9vdYDE,940,\"He talks about the steps and how to get in the hack, even demonstrating. He\",\"He talks about the steps and how to get in the hack, even demonstrating.\",He,gold,seems pretty professional walking on the ice with his shoes on while demonstrating.,moves to talk inside the and can a little measure process as he is about to be showing how to cut the wood.,\"moves around in this time, letting it clear it are far down.\",shows a bike given how to fall on a black bike.,0\n3711,anetv_dRRht9vdYDE,939,They have a coach to help them and he talks about how to curl. He,They have a coach to help them and he talks about how to curl.,He,gold,\"talks about the steps and how to get in the hack, even demonstrating.\",bounces several times on a horse to look at the target.,is talking on the fridge.,\"both are dancing, chasing each other, and people continue to play again.\",0\n3712,anetv_CIcVR4m7nOc,2828,They get in a river on tubes. They,They get in a river on tubes.,They,gold,land on the tubes in the road.,begin to go down the beach.,float near a large bridge.,ride a rowing car down a river.,2\n3713,anetv_CIcVR4m7nOc,2829,They float near a large bridge. The water,They float near a large bridge.,The water,gold,is passing through rhythm.,gets a little choppy.,spins from every angle.,is filled with people by rafters.,1\n3714,anetv_CIcVR4m7nOc,2827,Several people stand outside of cars. They,Several people stand outside of cars.,They,gold,wash their hands and jump in the water to wash them.,get off their snowboards.,get in a river on tubes.,go down the river.,2\n3715,anetv_hYj38k-VOFM,13128,A person is seen raking a yard and pauses to put his hand in his pocket. Another man,A person is seen raking a yard and pauses to put his hand in his pocket.,Another man,gold,gets larger and focuses on the log while pushing off the mower to get off the mower.,scrubs the sitting down and walks on.,comes walking in with a leaf blower pushing the leaves around.,rides a dirt mower on the lawn followed by a closeup of an lawn mower.,2\n3716,anetv_0PbmXOVIwGc,15074,\"A woman grooms the right body of a horse, she brush the neck, body and legs. Then, the woman goes to the left side of horse and kneel to groom the legs, and then she\",\"A woman grooms the right body of a horse, she brush the neck, body and legs.\",\"Then, the woman goes to the left side of horse and kneel to groom the legs, and then she\",gold,puts her hands on foot.,moves off using the woman who does the same.,brush the other parts of the body.,lifts the horse ankle.,2\n3717,lsmdc3048_LITTLE_FOCKERS-23182,7116,\"Clinging by his legs, he opens his arms. Someone\",\"Clinging by his legs, he opens his arms.\",Someone,gold,sends a fiery drone into the air - - frightened.,falls on top of him.,turns and sees someone approaching.,stamps the upper right into a wall which rears up.,2\n3718,lsmdc0004_Charade-47306,18026,She stops as she is aware of a weird figure hovering over her. Camera,She stops as she is aware of a weird figure hovering over her.,Camera,gold,\"pans down to include someone, his hand held firmly by the man in the mask.\",follows her with a record of little someone walking along.,\"returns home and runs toward the kids in the garden, then spies grumpy at a corner, sharing his point of view.\",stares as someone sits in one of the hallway doors.,0\n3719,anetv_GLHsjvmOXRs,4932,\"A news woman sits at a desk, talking. We\",\"A news woman sits at a desk, talking.\",We,gold,are gathered in a locker room.,\"see numerous people running into water with kayaks, racing down a river of rapids.\",then take a drink and start cooking in the salon.,are sharpening something on the ground.,1\n3720,anetv_GLHsjvmOXRs,4933,\"We see numerous people running into water with kayaks, racing down a river of rapids. When they are done, several of the competitors are interviewed on camera, and others\",\"We see numerous people running into water with kayaks, racing down a river of rapids.\",\"When they are done, several of the competitors are interviewed on camera, and others\",gold,comes disappearing after in a line and stands at one end.,walk in the water on fake kayaks.,announce a meeting and get in.,team tries to life at the way they have held the ball for their money.,1\n3721,anetv_P6t2HLPZ3Dk,1646,A boy dressed in a burgundy polo is at a bowling alley and throws the ball high up in the air and it ends up coming back in the other lane. More bowlers are shown and they,A boy dressed in a burgundy polo is at a bowling alley and throws the ball high up in the air and it ends up coming back in the other lane.,More bowlers are shown and they,gold,'re engaged in a game of tug of war in the hot pile while spectators look disgruntled from around the area.,begin falling onto the lanes as the attempt to throw the ball.,\"continue running, hitting the ball and aiming for one.\",look like race bikes being close.,1\n3722,anetv_P6t2HLPZ3Dk,1647,More bowlers are shown and they begin falling onto the lanes as the attempt to throw the ball. A man then,More bowlers are shown and they begin falling onto the lanes as the attempt to throw the ball.,A man then,gold,dives down a lane and hits the ball using a stick.,picks the puck up and throws it over the net.,comes along and spins around on his head and ends up hitting the pins with the balls.,runs up a lane toward the sand and walks around the shuffleboard.,2\n3723,anetv_LxntXVcMxtc,336,Two girls in karate class bow forward and then to each other before practice. The girl,Two girls in karate class bow forward and then to each other before practice.,The girl,gold,leads the other dancers on stage.,moves her body around an iron line on the ground high at the end of the jump ropes.,dodges an attack by taking a knee while blocking a hit.,finishes dancing routine and then exits with a boy and fix fancy tennis on the really white floor.,2\n3724,anetv_LxntXVcMxtc,338,The karate students punch and block with their wrists. The girl,The karate students punch and block with their wrists.,The girl,gold,hands a prizes to her coach.,does a standing spinning kicks.,\"rises, looks around, landing.\",raises students stand on the platform.,1\n3725,anetv_LxntXVcMxtc,337,The girl dodges an attack by taking a knee while blocking a hit. The karate students,The girl dodges an attack by taking a knee while blocking a hit.,The karate students,gold,wait in the white entrance.,punch and block with their wrists.,assist one doorman as they go.,continue swinging one fourth of the girl around.,1\n3726,lsmdc1014_2012-78917,4348,Someone's pilot someone marches over. A case,Someone's pilot someone marches over.,A case,gold,dangles over the mannequin.,goes out after her.,is removed from the hanger and painted it bald.,hits someone's foot.,3\n3727,lsmdc1014_2012-78917,4346,Someone pulls up on the driveway outside someone's palatial mansion in Bel Air. Curly - hair twin boys people,Someone pulls up on the driveway outside someone's palatial mansion in Bel Air.,Curly - hair twin boys people,gold,\"keep stationary leashes down, as the timekeeper punches someone 'keys.\",wait on the steps.,have stained - blonde hair across the walkway.,are strewn all around.,1\n3728,lsmdc1014_2012-78917,4344,Someone watches by the limo as someone comes outside. Someone,Someone watches by the limo as someone comes outside.,Someone,gold,smiles and waves to someone as she goes inside.,catches her breath.,pulls up off the shack.,\"sits on the edge of the cockpit, holding two guns in his hand.\",0\n3729,lsmdc1014_2012-78917,4341,Someone drives the kids in the limo. The kids,Someone drives the kids in the limo.,The kids,gold,stare fearfully at their damaged children.,fell asleep in the back seat.,hurry inside the house and read a newspaper film.,hurry around watch them drive after a dilapidated ramp.,1\n3730,lsmdc1014_2012-78917,4343,Someone pulls up outside someone's house in the early morning dew. He,Someone pulls up outside someone's house in the early morning dew.,He,gold,returns to his tent and finds a weather radio.,hammers away from her oven into the kitchen.,climbs out of the limo.,sees someone in the school gym theater outside with his hands in his pockets.,2\n3731,lsmdc1014_2012-78917,4345,Someone gets back into the limo. Someone,Someone gets back into the limo.,Someone,gold,\"watch someone, then approaches ahead and removes his belt.\",changes into a chauffeur's uniform.,hands him the bear.,smiles at someone ahead and sits up.,1\n3732,lsmdc1014_2012-78917,4347,They both check their watches. Someone,They both check their watches.,Someone,gold,clicks into the hole.,\"walks up, holding the backpack.\",listens to themselves as he comes in.,takes their luggage over to the boot.,3\n3733,lsmdc1014_2012-78917,4342,The kids fell asleep in the back seat. Someone,The kids fell asleep in the back seat.,Someone,gold,places someone in the console.,pulls up outside someone's house in the early morning dew.,takes a seat at the edge of her bed.,gets out of a chair then gulps her down.,1\n3734,lsmdc3047_LIFE_OF_PI-22032,13103,\"The young beauty takes his hand. Now on a freighter ship, someone\",The young beauty takes his hand.,\"Now on a freighter ship, someone\",gold,leans on the rail of the main deck.,pours to a glass of whisky in a bowl.,joins someone in his basement.,speaks to a panel with another girl to see the rocks.,0\n3735,lsmdc3047_LIFE_OF_PI-22032,13106,\"Someone eyes her son then walks away. Blinking rapidly, someone\",Someone eyes her son then walks away.,\"Blinking rapidly, someone\",gold,rests his chin against the ceiling.,stops and tenses as someone starts glumly the door.,stares into his eyes then lovingly gives her a long kiss.,keeps his gaze fixed on the horizon.,3\n3736,lsmdc3047_LIFE_OF_PI-22032,13104,He gazes back at the brilliant sun setting beyond his homeland on the horizon. He,He gazes back at the brilliant sun setting beyond his homeland on the horizon.,He,gold,\"stares into the water between the clouds, which ripples through the waters.\",breathes lightly towards the lion's enclosure.,faces forward then looks back at the sun as his mother approaches.,falls back into the lifeboat over the ocean.,2\n3737,lsmdc3047_LIFE_OF_PI-22032,13105,He faces forward then looks back at the sun as his mother approaches. Someone,He faces forward then looks back at the sun as his mother approaches.,Someone,gold,\"smiles, then goes to his desk and places someone's hand on someone's shoulder.\",turns and looks at the american.,\"sits on a small couch, pulling ropes.\",\"stops beside her boy, following his gaze to the setting sun.\",3\n3738,lsmdc3047_LIFE_OF_PI-22032,13107,\"Now in the eating quarters, someone faces a husky, larged - nosed cook. The cook\",\"Now in the eating quarters, someone faces a husky, larged - nosed cook.\",The cook,gold,reaches behind the counter and puts a morsel of parsley on the plate.,gives him a sniff.,\"holds out a selection of trays, which is loaded into their dinner pot.\",turns off the sink.,0\n3739,lsmdc3047_LIFE_OF_PI-22032,13102,Someone stares longingly at his mother. Someone,Someone stares longingly at his mother.,Someone,gold,\"appears, grabbing onto the collar of its tunic.\",joins him on earth.,sits with someone as she ties pink string around his wrist.,gives her a little instead.,2\n3740,anetv_1jl5qtS4mNQ,1565,The man pulls the carpet back from the wall and sticks the strip on the board under the carpet. We then,The man pulls the carpet back from the wall and sticks the strip on the board under the carpet.,We then,gold,see the carpet up close.,see the ending title.,see the ending screen screen.,put cement on the wall of material.,0\n3741,anetv_1jl5qtS4mNQ,1564,\"A man wipes a wall with his hand, and pulls a cord up from the baseboard. The man\",\"A man wipes a wall with his hand, and pulls a cord up from the baseboard.\",The man,gold,shows off the end of the tire and unties the tools and trimming the finger.,pulls the carpet back from the wall and sticks the strip on the board under the carpet.,puts the children on top of it and applies a thumb up to each other.,climbs over the man french grips on the tire with a horizontal line.,1\n3742,anetv_1jl5qtS4mNQ,1566,We then see the carpet up close. The ending credits,We then see the carpet up close.,The ending credits,gold,are shown from a lady.,and the video scene is shown.,run over a man playing piano.,roll behind the screen.,2\n3743,anetv_1jl5qtS4mNQ,12224,They pull up the carpet with a tool. Someone,They pull up the carpet with a tool.,Someone,gold,pulls the tv off of the pipe.,uses it to wipe the techs clean.,is playing a piano at the end.,hooks his back with a pen.,2\n3744,lsmdc0013_Halloween-53715,12532,Someone shakes his head and looks across the graveyard. Someone,Someone shakes his head and looks across the graveyard.,Someone,gold,slowly reaches for the controls of his machine gun.,looks up sharply at him.,sits in a circle and begins to run out.,\"checks his notebook, then counts the rows and plots.\",3\n3745,lsmdc0013_Halloween-53715,12531,\"The headstone is missing, uprooted from the ground. Someone\",\"The headstone is missing, uprooted from the ground.\",Someone,gold,gets out of his car.,is getting his bearings.,drops to his knees.,shakes his head and looks across the graveyard.,3\n3746,lsmdc0013_Halloween-53715,12527,Camera booms down as a car pull up on the small road in f. g.. Someone,Camera booms down as a car pull up on the small road in f. g..,Someone,gold,lifts a hatch onto the wheel and takes off his jacket.,\"gets out, along with someone, the graveyard owner.\",eyes someone then follows her mother from the shop.,grabs onto the bars.,1\n3747,lsmdc0013_Halloween-53715,12530,He points to a plot right in front of them. Someone,He points to a plot right in front of them.,Someone,gold,walks away from his sprint.,watches someone as she dunks her head and avoids her gaze.,\"turns to someone, shakes his head and takes his candy.\",gives someone a quizzical look.,3\n3748,lsmdc0013_Halloween-53715,12529,He glances at a small notepad. The two men,He glances at a small notepad.,The two men,gold,\"lean close, then lift a hatch.\",are lifting it over.,\"begin walking along the graveyard, winding around headstones and flowers.\",\"lean down, sticks his rock to their side.\",2\n3749,lsmdc0013_Halloween-53715,12528,\"Someone gets out, along with someone, the graveyard owner. He\",\"Someone gets out, along with someone, the graveyard owner.\",He,gold,lets himself pilots high into the water.,glances at a small notepad.,is hopping on he is going to enter the shop.,\"uses the knife to advance at someone 'desk, then peer through it.\",1\n3750,anetv_lGWAepvduTI,18539,The man puts the weight behind his head and starts to do sit ups on the seat and he is straining to do the sit ups with the weight. He,The man puts the weight behind his head and starts to do sit ups on the seat and he is straining to do the sit ups with the weight.,He,gold,puts the weight down in front of him and gets up and walks away.,turns and looks back to the camera.,\"ends the routine in slow motion with one hand, lifts turns and ties the other ends of the barbell.\",\"sits, balancing the weight over his head and raising his legs in a correct manner.\",0\n3751,anetv_lGWAepvduTI,18538,\"A man comes in to a home gym, sits down and picks up a weight to work out. The man puts the weight behind his head and starts to do sit ups on the seat and he\",\"A man comes in to a home gym, sits down and picks up a weight to work out.\",The man puts the weight behind his head and starts to do sit ups on the seat and he,gold,continues to move it with the camel.,drops drops to the ground.,is straining to do the sit ups with the weight.,\"starts to do his move, then left.\",2\n3752,anetv__4oBeoCuU7M,8951,\"Two cars are seen parked outside of a garage as a man focuses his camera. Once the camera is sin position, a man\",Two cars are seen parked outside of a garage as a man focuses his camera.,\"Once the camera is sin position, a man\",gold,is shown with a steel mask on as he beats a piece on a concrete.,enters the camera with the skateboard on it.,makes pieces of and grabs the grass.,appears wearing a mask cleaning his own while he begins whipping.,0\n3753,anetv__4oBeoCuU7M,8952,\"Once the camera is sin position, a man is shown with a steel mask on as he beats a piece on a concrete. The piece is on the concrete and he\",\"Once the camera is sin position, a man is shown with a steel mask on as he beats a piece on a concrete.\",The piece is on the concrete and he,gold,begins to talk about what turn to do exercises.,takes for a long stick to smoke from it.,puts the bottom of the mask on and begins burning the metal.,begins a second to show the exercise.,2\n3754,lsmdc3026_FRIENDS_WITH_BENEFITS-1566,7752,Now someone and her mom play the table tennis. Her mother,Now someone and her mom play the table tennis.,Her mother,gold,gives the children to her.,sees someone's face on someone's cell display.,picks up a small packet from the three baby fur.,hides a pipe on a sofa in her own bed.,1\n3755,lsmdc3026_FRIENDS_WITH_BENEFITS-1566,7751,Someone gets a cell call from someone. Now someone and her mom,Someone gets a cell call from someone.,Now someone and her mom,gold,drapes a leg in the sleeping room in a hospital dining room.,play the table tennis.,get over an escalator at a duct post.,sit on the boat behind one of the submersible.,1\n3756,lsmdc3026_FRIENDS_WITH_BENEFITS-1566,7754,Someone picks up a game controller. She,Someone picks up a game controller.,She,gold,talks into it like a microphone.,hands him an envelope and documents.,holds it in the same aisle.,goes to the shambles.,0\n3757,lsmdc3026_FRIENDS_WITH_BENEFITS-1566,7750,An i m comes in from her mom. Someone,An i m comes in from her mom.,Someone,gold,goes through the door with the door still open.,does not go nuts.,has a swollen eye and a red lipstick hanging across her eye.,gets a cell call from someone.,3\n3758,anetv_wO9DGYTAX70,13773,The woman then wears a glove and brushes the horse all over while the capture captures her movements and the horse. She,The woman then wears a glove and brushes the horse all over while the capture captures her movements and the horse.,She,gold,stretches the calf around and continues running around while getting the frisbee up.,brushes the back of it's tail and finishes around it's belly.,continues up the horse and ends by looking down and doing the barre.,falls off the horse and in front of the camera playing the games while still speak to the camera.,1\n3759,anetv_wO9DGYTAX70,13772,Slow motion shows of people riding horses over jumps are shown that lead into a woman speaking to the camera with a horse behind her. The woman,Slow motion shows of people riding horses over jumps are shown that lead into a woman speaking to the camera with a horse behind her.,The woman,gold,continues riding down the snowy hill while performing tai jumping with the children on the side in front of the camera.,demonstrates jumping to another field bearing several other coach members on the horse as well as jump roping.,then wears a glove and brushes the horse all over while the capture captures her movements and the horse.,moves the horse along the length as the horse continues speaking to the camera.,2\n3760,anetv_DLFerdBxdxQ,12352,The mix is blended and put on the table to be served on the tortillas. The women,The mix is blended and put on the table to be served on the tortillas.,The women,gold,line their hips from the ground in line.,is still drinking a large cup of water and mixing a drink in water.,pat their hands with a brand of milk.,sit at the table and talk as they eat.,3\n3761,anetv_DLFerdBxdxQ,12351,\"A woman is standing at a table, putting food into a large pita on a plate. An older woman\",\"A woman is standing at a table, putting food into a large pita on a plate.\",An older woman,gold,is talking to the camera while standing next to the woman on the sides.,is shown sitting at a table with the fruit in her hand.,\"demonstrates how to cut onions, peppers, lettuce, carrots, tomatoes, etc into chunks.\",begins putting pumpkins on her bosom as she mixes ingredients and stirs it around.,2\n3762,anetv_M5UrBI13R3s,3537,\"A white intro screen appears and red letters in a foreign language appear flashing on the screen. A white bowl filled with water and 3 potatoes appear in one bowl, and ice cubes\",A white intro screen appears and red letters in a foreign language appear flashing on the screen.,\"A white bowl filled with water and 3 potatoes appear in one bowl, and ice cubes\",gold,are in another white bowl.,are shown followed by a small bowl of strawberries and a yellow bowl.,spray stops a few times out of coffee.,are just pouring from its bottom and other flakes to create the sole logo.,0\n3763,anetv_M5UrBI13R3s,3538,\"A hand then grabs the top potato, the bowl of ice cubes and pours the cubes into a bigger white bowl that already has water in it. The two hands now drop the potato into the larger bowl with the ice cubes and water and the fingers begin to peel off all of the skin under the water and when all the peels are gone the potato\",\"A hand then grabs the top potato, the bowl of ice cubes and pours the cubes into a bigger white bowl that already has water in it.\",The two hands now drop the potato into the larger bowl with the ice cubes and water and the fingers begin to peel off all of the skin under the water and when all the peels are gone the potato,gold,is twirling an platter.,is added to the person again.,is short and harder.,is placed onto a clean white plate.,3\n3764,anetv_NVnjzpoY1O8,3800,\"An elderly priest is sitting down in his chair indoors in a large building and 3 different men break dance on the ground in front of him as the people around him start clapping and lights go off from all the flashes. When the men are done dancing they stand up together in front of the people and the priest, and they\",An elderly priest is sitting down in his chair indoors in a large building and 3 different men break dance on the ground in front of him as the people around him start clapping and lights go off from all the flashes.,\"When the men are done dancing they stand up together in front of the people and the priest, and they\",gold,are dancing together dancing in the middle of the ballroom.,are seen in very calm manner and all until their people are playing.,\"join in the crowd to celebrate, while the referee zoom between their left hands to celebrate.\",take their bow to the priest and to the people.,3\n3765,anetv_PziLzNjG2bI,531,There are several spectators and judges watching them as they jump over the bar in a large indoor stadium. Both the contestants,There are several spectators and judges watching them as they jump over the bar in a large indoor stadium.,Both the contestants,gold,are attached to the rope and throw it down at the shuffleboard competition.,are shown on the screen playing tug of war again.,\"are competing for a few sets, trying to cheer by jumping and jumping up and down.\",successfully jump over the bar.,3\n3766,anetv_PziLzNjG2bI,530,There are two contestants participating in the athletic jump competition. There,There are two contestants participating in the athletic jump competition.,There,gold,is an old event putting some examples from the zimmer.,are a group of people who run on sidewalks in breakdance clothes then turn the air and run in a game of other kayakers.,are also shown speaking to the students in fencing gear.,are several spectators and judges watching them as they jump over the bar in a large indoor stadium.,3\n3767,anetv_PziLzNjG2bI,532,Both the contestants successfully jump over the bar. There,Both the contestants successfully jump over the bar.,There,gold,shots are shown this time.,make the third trophy point and leave the bar.,is a slow motion video of the contestant jumping over the bar.,team does the same again.,2\n3768,anetv_icm5lX5pZE0,4686,A man is seen sitting behind a desk working on a computer. Several shots,A man is seen sitting behind a desk working on a computer.,Several shots,gold,are shown of men playing rock paper scissors.,are shown of people printing off paper as well as paper close up.,are shown of the outside and the man adjusting the exercise machine.,are shown of them putting objects on computers on the side.,1\n3769,anetv_icm5lX5pZE0,4687,Several shots are shown of people printing off paper as well as paper close up. More clips,Several shots are shown of people printing off paper as well as paper close up.,More clips,gold,are shown of people playing paintball while one of the men holds back their legs and pass on the row while others watch.,are shown of people using packs and punching up objects as well as various text on the screen.,are shown playing the game as well as rubbing and playing with one another.,are shown of people hanging up the wallpaper as well as shots of the city.,3\n3770,anetv_t97xM9sY2yg,16921,The ingredients are added to a frying pan. the contents of the pan,The ingredients are added to a frying pan.,the contents of the pan,gold,are mixed together and cook.,are filled with food.,is sprinkled on the skillet.,are added to the fry pan.,0\n3771,anetv_t97xM9sY2yg,12325,A plate of pasta with shrimp is shown. We then,A plate of pasta with shrimp is shown.,We then,gold,see the supplies in a bowl.,see the lady making the sandwich.,see the ingredients on a counter.,see the ingredients in slow motion.,2\n3772,anetv_t97xM9sY2yg,12326,We then see the ingredients on a counter. Garlic and onions,We then see the ingredients on a counter.,Garlic and onions,gold,\"are finely chopped, then fried in olive oil.\",are on top of the screen.,are sliced being sliced.,are added to a glass.,0\n3773,anetv_t97xM9sY2yg,16920,Ingredients are chopped an diced on a cutting board. the ingredients,Ingredients are chopped an diced on a cutting board.,the ingredients,gold,are added to a frying pan.,are mixed together and added into the mix.,are all together in the bowl and various ingredients are added to the bowl.,are placed on top of the lettuce and put ingredients into a pan.,0\n3774,anetv_t97xM9sY2yg,12327,\"Meat is added, and a pesto is made. The ingredients\",\"Meat is added, and a pesto is made.\",The ingredients,gold,are mixed and mixed together.,are then mixed into the pasta and plated.,and salt is placed into the pot.,\"boils, boiling, including mushrooms, and liquid are being poured into a sweet boiling drink.\",1\n3775,lsmdc1059_The_devil_wears_prada-98924,13159,\"Walking along a modern bridge over the sand, she calls someone's suite. Someone\",\"Walking along a modern bridge over the sand, she calls someone's suite.\",Someone,gold,gets back to the hotel and pauses before knocking on someone's door.,plays with a crowd of people and drums around on the back sidewalk.,disappears into a doorway.,attacks them onto the deserted street.,0\n3776,anetv_Tovbyt_ZiIc,18998,The woman has her hair down and starts styling her hair. She,The woman has her hair down and starts styling her hair.,She,gold,sprinkles it along her face and pulls the braid up into her face.,finishes the hair she holds receives her gifts.,is embarrassed and over the bar.,completes styling her hair and continues to talk.,3\n3777,anetv_Tovbyt_ZiIc,18997,A woman waves her hand and acknowledges her hair and face as she continues to talk. The woman,A woman waves her hand and acknowledges her hair and face as she continues to talk.,The woman,gold,\"continues talking, trying to make the circle really far.\",steps over to another man who is beginning to recognize a woman's hair smiles.,has her hair down and starts styling her hair.,gets into a cup and toddler throws the ball high in the air and sets it back on the ground.,2\n3778,anetv_Mil3AyFfjX4,16685,The boy then pushes the puck across the game. The camera,The boy then pushes the puck across the game.,The camera,gold,follows the pucks movements and leads back to the boy.,returns to the older boy hitting on the ball.,ends with the woman remains giving the thumbs up again.,pans to show another campsite and changes to show people walking.,0\n3779,anetv_Mil3AyFfjX4,16684,A young child is seen standing before a shuffleboard table holding a stick. The boy then,A young child is seen standing before a shuffleboard table holding a stick.,The boy then,gold,begins hitting a ball over a net.,picks up his stick and begins grabbing the ball again.,pushes the puck across the game.,sits down and plays tennis again.,2\n3780,anetv_rSTXxDLYxTQ,2395,The man then rubs polish into the other shoe on the table as well as back to the one he started on. He,The man then rubs polish into the other shoe on the table as well as back to the one he started on.,He,gold,zooms the key to the rack.,touches the edge of the person's head and continues talking about the effects of the group.,\"takes a brush and uses it on the shoe, ending with him grabbing the camera.\",puts his shoes down and goes into the water and dries his off in a towel.,2\n3781,anetv_rSTXxDLYxTQ,2394,A close up of shoes are shown followed by a person holding the shoes and rubbing polish around the shoes. The man then,A close up of shoes are shown followed by a person holding the shoes and rubbing polish around the shoes.,The man then,gold,rubs the shoes while clips the shoes around as well as rubbing more shoe on.,rubs polish into the other shoe on the table as well as back to the one he started on.,begins putting one shoe on and putting it down and playing as well as it shoes.,mixes the shoes and presents the coin while the person continues peeling.,1\n3782,anetv_WE9Md637nbc,5296,\"A man fills a bowl with water, then adds a cleaning solution. He\",\"A man fills a bowl with water, then adds a cleaning solution.\",He,gold,uses a brush to scrub the shoes clean.,pours the milk to a can.,places the pan into the oven.,dry the floor together in cups from around a jar.,0\n3783,anetv_WE9Md637nbc,5295,A pair of dirty nike sneakers are seen on a counter. A man,A pair of dirty nike sneakers are seen on a counter.,A man,gold,puts a blue towel under his shirt and start wiping it with a toothbrush.,spreads olive oil on his board.,is washing his hands in a sink.,\"fills a bowl with water, then adds a cleaning solution.\",3\n3784,anetv_RDCZQ0nWIPc,17643,\"A white screen appears and special affects reveal the words Howcast original. A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he\",A white screen appears and special affects reveal the words Howcast original.,\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he\",gold,speeds to disk down an obstacle and then not really going around any ramps.,has another extremely strong closing going by.,\"picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays.\",is now climbing a mountain.,2\n3785,anetv_RDCZQ0nWIPc,17644,\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays. The outro appears and it\",\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays.\",The outro appears and it,gold,'s the white screen in the intro that include the words howcast original.,\"watches about ten time to increase on the terrain, and it changes back to the man talking.\",talks the same screen again as the phone trip with the media who seems in the beginning of the video.,\"'s subscribe and the video begins talking with some speed, while about riding on the street parallel to a large painting.\",0\n3786,anetv_N4Z9eYSu2uM,15258,People fall into a pile of muddy water. People,People fall into a pile of muddy water.,People,gold,watch on the road as they run up an off - ramp.,are around the front of the boat.,are riding a horse in the sea.,are standing next to them watching.,3\n3787,anetv_N4Z9eYSu2uM,15257,People are playing tug of war on a field. People,People are playing tug of war on a field.,People,gold,are in a gymnastic competition on the field.,are sitting in a booth watching the game.,are in a game of protective.,fall into a pile of muddy water.,3\n3788,anetv_0VHUSC4YFT4,18627,A person is seen hanging on the side of a beam going down while another man holds him. He then,A person is seen hanging on the side of a beam going down while another man holds him.,He then,gold,begins riding the bike around with a bicycle followed by scenery.,pulls the other man up and watches him jump off on the side on a bungee cord.,springs to his feet and the person pulls him onto his back.,starts playing the instrument while a man continues to speak to the camera.,1\n3789,anetv_P9I3zxNUu74,3328,The kids stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects. The kids then,The kids stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects.,The kids then,gold,begin dancing playing soccer.,turn around the field and swim into frame while the camera pans around on pictures of people standing at an end.,sweep up the floor while dancing and having fun and end by all waving to the camera.,swing around all the ornaments.,2\n3790,anetv_P9I3zxNUu74,3327,A man with two children are seen speaking to the camera with one throwing his hands up and leading into them moving quickly. The kids,A man with two children are seen speaking to the camera with one throwing his hands up and leading into them moving quickly.,The kids,gold,continue different tricks along the mountain and hitting the lot with fish and cheering them together.,continue rope around the room while also clapping and cheering and others kissing on the sides.,stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects.,walk across the bit and end by close up and speaking with one another in a game of pool.,2\n3791,anetv_GuzLtwhxsxA,7059,His paddling is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown. The ending,His paddling is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown.,The ending,gold,scene in the video then of the closing words are shown on the screen.,comes to a replay of the man taking with a pole in the water hand and jumping up and out of path.,shows a beautiful picture of a sun set.,plays at shore locations more and more.,2\n3792,anetv_GuzLtwhxsxA,7058,A close up of a canoe is shown followed by a man pushing the canoe along in various areas. His paddling,A close up of a canoe is shown followed by a man pushing the canoe along in various areas.,His paddling,gold,is shown as well as people riding in the water and riding through several more plants.,is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown.,continues paddling through the water as well as stopping near the kayak.,is plowing the rough yard itself.,1\n3793,lsmdc1006_Slumdog_Millionaire-73562,2173,Someone attaches the jump leads to each of someone's big toes. Someone,Someone attaches the jump leads to each of someone's big toes.,Someone,gold,hits someone from the head lifting a half - submerged stone.,glares directly into the eyes of the inspector.,runs under the dancing crowd.,falls back into the egg.,1\n3794,lsmdc1006_Slumdog_Millionaire-73562,2171,The inspector enters a room where someone is suspended off the floor by his wrists. Someone,The inspector enters a room where someone is suspended off the floor by his wrists.,Someone,gold,reluctantly sets up a car battery when jump leads beneath someone's dangling feet.,\"fixes his tie, picks his door like a stone bar, hands it to someone.\",oncoming cars slowly turn a corner on a corner walkway.,wheels himself to a wall then moves between the racks of metal assignments.,0\n3795,lsmdc1006_Slumdog_Millionaire-73562,2172,Someone reluctantly sets up a car battery when jump leads beneath someone's dangling feet. Someone,Someone reluctantly sets up a car battery when jump leads beneath someone's dangling feet.,Someone,gold,\"exits the building, holding the ticket outside the window.\",finds one of the birds then waves off the spotlight as they advance.,turned on a key and dark green light shines around his page.,attaches the jump leads to each of someone's big toes.,3\n3796,lsmdc1006_Slumdog_Millionaire-73562,2169,A beautiful young woman stands on a train platform. She,A beautiful young woman stands on a train platform.,She,gold,approaches and sees the bald man in black.,moves her arms and right toward the edge.,looks up and smiles.,pulls out a handgun and throws it into the mirror.,2\n3797,lsmdc3070_THE_CALL-32935,5296,She keeps her hand over her mouth. Someone,She keeps her hand over her mouth.,Someone,gold,looks up at someone.,\"smiles, staring at her.\",\"storms off, holding her hand in her hands.\",reaches for his walkie.,3\n3798,anetv_XbkGlZTlixw,2286,The boys then begin to ride their skateboards on the road and now there's a 4th boy who has also joined them as they continue riding down the road and filming themselves while taking turns holding the stick with the camera attached to it. A 5th boy,The boys then begin to ride their skateboards on the road and now there's a 4th boy who has also joined them as they continue riding down the road and filming themselves while taking turns holding the stick with the camera attached to it.,A 5th boy,gold,is holding a matic in his hand and holding a painter in his hand.,squats down to skateboard or begins to swing them off.,suddenly appears and takes the stick to take his turn in filming.,is then seen paddling a pinata.,2\n3799,anetv_XbkGlZTlixw,2285,\"Two young boys wearing helmets, holding skateboards and carrying backpacks are walking through an area that is heavily filled with leaves and trees. A third boy appears as they pass him and he\",\"Two young boys wearing helmets, holding skateboards and carrying backpacks are walking through an area that is heavily filled with leaves and trees.\",A third boy appears as they pass him and he,gold,is also wearing a helmet.,crosses to speed to ten skateboarding.,\"continues mowing the lawn with front residential style lawn, and trims along the sides of the hedge together.\",stops to talk all his children performing again but eventually gets up to a song he had chaser.,0\n3800,anetv_XbkGlZTlixw,2288,The video ends with a special effect of them going backwards instead of forwards and one of the boys holds his hand up to show a shaka sign made with his left hand. A black screen with white letters scrolling from the bottom to the top,The video ends with a special effect of them going backwards instead of forwards and one of the boys holds his hand up to show a shaka sign made with his left hand.,A black screen with white letters scrolling from the bottom to the top,gold,blowing white screen as words are shown from a fire.,appears with a white flag talking there crowd.,is it of the screen.,includes the names of all the boys in the video.,3\n3801,anetv_XbkGlZTlixw,2287,A 5th boy suddenly appears and takes the stick to take his turn in filming. It briefly,A 5th boy suddenly appears and takes the stick to take his turn in filming.,It briefly,gold,hits it three times in the cameraman.,shows a boy skateboarding down a different street all alone.,shows the view of the reappear team on the screen.,shows us that they were sitting next to them.,1\n3802,anetv_NXFnVeZen1U,4990,The ball goes out of bounds. A man serves the ball and they,The ball goes out of bounds.,A man serves the ball and they,gold,lay him down until the ball is gone.,start throwing the ball at the same time.,pass by the players who chase the ball.,engage in a brief back and forth of the ball before the ball falls to the ground.,3\n3803,anetv_NXFnVeZen1U,4987,The teams engage in rapid back and forth hitting of the ball. The game,The teams engage in rapid back and forth hitting of the ball.,The game,gold,continue and the the game begins.,ends as the players gesture around.,stops for a second and resumes with one of the teams serving the ball.,continues and the women engage in a game of arm wrestling.,2\n3804,anetv_NXFnVeZen1U,4989,\"They battle each other on the court, sending the ball back and forth over the net. The ball\",\"They battle each other on the court, sending the ball back and forth over the net.\",The ball,gold,\"circle a seventh team member who are being blindfolded, indicating a ball.\",drops as far as they can.,launches itself halfway across the field to distract the attack.,goes out of bounds.,3\n3805,anetv_NXFnVeZen1U,4986,The opponent serves the ball. The teams,The opponent serves the ball.,The teams,gold,engage in rapid back and forth hitting of the ball.,pull the balls with the's partner as they demonstrate.,proceed to save each other as his partner hits the birdie with the mallet.,continue playing the pong.,0\n3806,anetv_NXFnVeZen1U,4988,The game stops for a second and resumes with one of the teams serving the ball. They,The game stops for a second and resumes with one of the teams serving the ball.,They,gold,\"battle each other on the court, sending the ball back and forth over the net.\",continue to go back and forth toward the rocks.,launch through a rock and receiving another know.,watch their games as they try to prevent the ball from hitting the ground.,0\n3807,anetv_XFySa1Gc-yM,14004,A woman is seen curling her hair while speaking to the camera and leads into her speaking in front of judges. The judges critique her and she,A woman is seen curling her hair while speaking to the camera and leads into her speaking in front of judges.,The judges critique her and she,gold,runs away happy and skipping out of the building.,is done placing her hands in the hair and ends by braiding it as well as clips of the host speaking.,demonstrates how to show proper fencing moves.,finishes up and speak to the camera.,0\n3808,anetv_kuMevlNUDCs,9312,A girl is standing inside a kitchen. She,A girl is standing inside a kitchen.,She,gold,is pouring coffee into a bowl of flour.,dances around while washing the dishes.,does several martial arts techniques.,has a glass of hot liquid in her hand and wipes it down.,1\n3809,anetv_kuMevlNUDCs,9313,She dances around while washing the dishes. Another girl,She dances around while washing the dishes.,Another girl,gold,touches her face as she walks through the water.,\"joins her, and makes a phone call while they talk.\",walks onto a horse and starts running across the track.,gets up in a back and takes off from the camera.,1\n3810,anetv_kuMevlNUDCs,12372,Two girls are in the kitchen washing dishes. They,Two girls are in the kitchen washing dishes.,They,gold,put the washed dishes into the dishwasher.,put baking soda on the pan.,put some stuff into an oven.,are near white sink.,0\n3811,lsmdc3040_JULIE_AND_JULIA-18201,9489,\"At home, someone carries a stack of newspapers upstairs. Someone\",\"At home, someone carries a stack of newspapers upstairs.\",Someone,gold,looks from the baby to the side of the building with a green pillow and barrels.,lies on the couch.,settles into a chair as someone strides through the pub.,\"strides through where someone finds someone sitting next to someone, who reads an article on his bed file.\",1\n3812,lsmdc3040_JULIE_AND_JULIA-18201,9492,Someone bounces excitedly and beams at her husband. She,Someone bounces excitedly and beams at her husband.,She,gold,\"looks back, then saunters out to fix her, stretches his arm out, and takes her in his arms.\",looks at her watch.,\"dives on top of him, and kisses him repeatedly.\",runs along the trees and digs her way through the crowds as someone gets out.,2\n3813,lsmdc3040_JULIE_AND_JULIA-18201,9493,\"In bed, someone rolls on his back. Someone\",\"In bed, someone rolls on his back.\",Someone,gold,\"takes a cone from her mouth, then licks her fingers.\",carries in two full martini glasses and sits with him on the bed.,has been walking with him.,track swarm accompanies someone through the boardroom window.,1\n3814,lsmdc3040_JULIE_AND_JULIA-18201,9497,He shifts her feet a smidge on the coffee table and sits facing her. He,He shifts her feet a smidge on the coffee table and sits facing her.,He,gold,hurries to the front door and takes out his cell phone.,sits in the hotel room with a group of children.,adjusts his glasses and reads.,looks at the floor.,2\n3815,lsmdc3040_JULIE_AND_JULIA-18201,9496,\"Listening, someone's expression goes blank. Someone\",\"Listening, someone's expression goes blank.\",Someone,gold,blinks and glances at someone as they step across.,gives a tearful gaze and walks slowly away.,hangs up and looks at someone sitting up attentively.,\"looks uncertain, but does n't continue.\",2\n3816,lsmdc3040_JULIE_AND_JULIA-18201,9490,Someone lies on the couch. She,Someone lies on the couch.,She,gold,exercises the little kitten.,puts the stack of papers down.,rubs him over the boot.,sits and looks up as the starry night sky over his head.,1\n3817,lsmdc3040_JULIE_AND_JULIA-18201,9485,\"Now a man reads a newspaper article entitled, a Race to Master the Art of French Cooking, with someone's picture. Someone\",\"Now a man reads a newspaper article entitled, a Race to Master the Art of French Cooking, with someone's picture.\",Someone,gold,takes a baseball puff.,sits next to the reader on the subway.,transformed teacher shows two hooks around his flaps.,strides up a flight of stairs and climbs a beaded vase outside his son's enclosure.,1\n3818,lsmdc3040_JULIE_AND_JULIA-18201,9488,\"At work, someone sets down a cup of coffee and puts on her headset. At home, someone\",\"At work, someone sets down a cup of coffee and puts on her headset.\",\"At home, someone\",gold,carries a stack of newspapers upstairs.,\"moves through the offices, checking her cell phone.\",sleeps alone in bed as she sleeps beside her parents.,tearfully wipes her nose.,0\n3819,lsmdc3040_JULIE_AND_JULIA-18201,9487,\"She turns to Ernestine and they high five. At work, someone\",She turns to Ernestine and they high five.,\"At work, someone\",gold,crosses the galley exterior and slides a laptop over the bottom of a workbench.,sits on her bed with sheets in her very dress.,sets down a cup of coffee and puts on her headset.,reveals his words and says anything.,2\n3820,lsmdc3040_JULIE_AND_JULIA-18201,9494,Someone carries in two full martini glasses and sits with him on the bed. Someone,Someone carries in two full martini glasses and sits with him on the bed.,Someone,gold,takes the photos and starts vibrating with his woeful father.,adjusts his head on a nearby branch.,rushes to the phone.,barks loud voices.,2\n3821,lsmdc3040_JULIE_AND_JULIA-18201,9495,Someone rushes to the phone. Someone,Someone rushes to the phone.,Someone,gold,looks on from the bed.,tumbles out of the front door.,giggles as someone makes his way.,tosses her cell phone to call.,0\n3822,lsmdc3040_JULIE_AND_JULIA-18201,9484,The chewing reporter's eyes widen. Now a man,The chewing reporter's eyes widen.,Now a man,gold,intercepts the downed fighter.,takes in the security beverage's and chips.,wins shots from a long train.,\"reads a newspaper article entitled, a race to master the art of french cooking, with someone's picture.\",3\n3823,lsmdc3040_JULIE_AND_JULIA-18201,9486,\"Someone sits next to the reader on the subway. At a food shop, someone\",Someone sits next to the reader on the subway.,\"At a food shop, someone\",gold,\"peeks over a man's shoulder, who glances at the same article.\",places a jacket on the stage and paddles out through a window.,sits at a table in an apartment typing.,\"draws a pouch of tobacco, and hurriedly torn off the sheet.\",0\n3824,anetv_LnDz1rvDaPY,5990,A woman wearing a hajib stands outside in snowy weather next to a car. She,A woman wearing a hajib stands outside in snowy weather next to a car.,She,gold,jumps into the bucket and gives a thumbs up.,scrapes the car window off with a small blue scraper.,stops and talks to the camera about 6 riding jet skis.,is then explaining how to do and attend a funeral cortege.,1\n3825,anetv_LnDz1rvDaPY,16543,We see a talking lady near her car on a snowy day. We,We see a talking lady near her car on a snowy day.,We,gold,see a boy stumble in a bowling alley.,see the camera and shop and we see the dancer in the phone viewing the camera.,girl is wearing a long pink sweater and jeans and a blue t - shirt.,see the lady scrape snow from her windshield with a scraper.,3\n3826,anetv_LnDz1rvDaPY,16544,We see the lady scrape snow from her windshield with a scraper. We,We see the lady scrape snow from her windshield with a scraper.,We,gold,see the lady talk.,see the ending screen.,see a man on the other side of the car.,see a lady cleaning something from a can with the ceiling.,2\n3827,anetv_LnDz1rvDaPY,5991,She scrapes the car window off with a small blue scraper. A man,She scrapes the car window off with a small blue scraper.,A man,gold,\"stands to the sea, then inserts showing the blade very connected to the steering wheel.\",with a raincoat is shown in his feet.,talks in front of everything.,\"walks up, salutes the camera and finishes the other side of the window as the woman says goodbye to the viewers.\",3\n3828,anetv_LnDz1rvDaPY,16545,We see a man on the other side of the car. The man,We see a man on the other side of the car.,The man,gold,uses a broom to pull snow from the car.,squats down and wraps his arms around.,crouches down and starts to trim a back roof.,takes the scraper and finishes the windshield.,3\n3829,anetv_LnDz1rvDaPY,16546,The man takes the scraper and finishes the windshield. The lady,The man takes the scraper and finishes the windshield.,The lady,gold,waves by to the camera.,scrapes the car off completely with a product.,pushes over the smooth snow.,looks out across the screen as he leaves the room.,0\n3830,anetv_O2Vd29Slt7g,6731,\"A young man on the roof of a tall building, with the backdrop of a city skyline, performs a series of dance moves, gymnastics moves, tumbling moves and high kicks. The man\",\"A young man on the roof of a tall building, with the backdrop of a city skyline, performs a series of dance moves, gymnastics moves, tumbling moves and high kicks.\",The man,gold,begins with his back to the camera and stands facing the city skyline from the roof top.,rides the man high curves and performs multiple stunts.,is then seen skiing down a ramp and walking along an ice covered ramp and tails.,\"swings the hammer pole, spins a series of flips on the floor and hops back on the beam.\",0\n3831,anetv_YXl4cEB7E3Y,18624,A boy is standing in the middle of a parking lot. He,A boy is standing in the middle of a parking lot.,He,gold,has carved pieces of metal on it.,starts skiing while another boy walks behind them.,is wearing a hat with a feather in it and sunglasses.,stands on a rock in front of him.,2\n3832,anetv_YXl4cEB7E3Y,18625,He is wearing a hat with a feather in it and sunglasses. He,He is wearing a hat with a feather in it and sunglasses.,He,gold,spins around and strings it.,is playing a bagpipe.,takes a pair of glasses and puts them at the edges.,\"is wearing a long blue wig and gloves, aimed back and forth as he dances along.\",1\n3833,anetv_kYkwA_lvqYc,14109,A man is seen speaking to the camera and begins rubbing polish all over a shoe. He then,A man is seen speaking to the camera and begins rubbing polish all over a shoe.,He then,gold,rubs the polish off and presents the shoe to the camera.,puts objects on his face while still looking to the camera.,shows how to wipe it clean with a pair of shoes.,rinses all the shoes off and places shaving down on the back.,0\n3834,anetv_kYkwA_lvqYc,8467,He shows off various objects on a table and puts lotion on a shoe. He then,He shows off various objects on a table and puts lotion on a shoe.,He then,gold,grabs the fruit and turns around various ingredients while showing how it works.,wipes off a shoe with a rag and presents it to the camera.,scrubs in the sink with soda and soap.,takes off the shoes and holds it up while looking to the camera.,1\n3835,lsmdc1046_Australia-90538,8020,Someone puts her hand over someone's mouth. The tracker,Someone puts her hand over someone's mouth.,The tracker,gold,gets the icy derby back.,draws a light lit from someone.,starts to carve an autumnal cake across the cake.,walks slowly away as the windmill turns faster.,3\n3836,lsmdc1046_Australia-90538,8010,\"Someone pulls back the curtain and looks out at the cops. As the men look the other way, someone\",Someone pulls back the curtain and looks out at the cops.,\"As the men look the other way, someone\",gold,gives a thumbs up which someone slaps him.,\"carries the two ringwraiths, sitting to the floor, with a remote.\",notices a looking scar on his chest.,hurriedly climbs in after someone.,3\n3837,lsmdc1046_Australia-90538,8028,\"The cop's truck continues down the long, straight, dusty truck, into the vast scrub lands of Faraway Downs. The windmill\",\"The cop's truck continues down the long, straight, dusty truck, into the vast scrub lands of Faraway Downs.\",The windmill,gold,\", watery hole is visible through the hole.\",reaches down and fixes more water on them.,turns slowly at sunset.,plows into the sea and the sun presses open.,2\n3838,lsmdc1046_Australia-90538,8030,Someone looks tearfully out towards someone's blazing funeral pyre. Smoke,Someone looks tearfully out towards someone's blazing funeral pyre.,Smoke,gold,\", someone leaps into the back of an enormous lifeboat as someone leaps over the makeshift lifeboats.\",flies across the road and into a fiery blaze under soar descending a massive bridge.,drifts from the top a rocky summit nearby.,\"catches it, then locks it and throws it into someone.\",2\n3839,lsmdc1046_Australia-90538,8008,Someone climbs with her son. They,Someone climbs with her son.,They,gold,pull from someone's sleeve then look out as the golden door opens.,bumps through each other.,\"are around the back of the tank, hidden from the truck.\",make the buckets and cascade with shoes for gymnastics.,2\n3840,lsmdc1046_Australia-90538,8021,The tracker walks slowly away as the windmill turns faster. Someone,The tracker walks slowly away as the windmill turns faster.,Someone,gold,returns running and starts past an electrical factory.,settles enthusiastically as a different train records someone.,sits beside someone and picks up the injured zookeeper.,notices and drops in after her.,3\n3841,lsmdc1046_Australia-90538,8032,Someone signals to the hilltop. He,Someone signals to the hilltop.,He,gold,holds her father aside.,waves to someone who starts to chant.,wags his leash toward the dog.,holds his ax above.,1\n3842,lsmdc1046_Australia-90538,8014,People cling frantically to the ladder. The ladder collapses and they,People cling frantically to the ladder.,The ladder collapses and they,gold,collapse to the ceiling.,reach the upper floor.,fall into the water.,fall side by side.,2\n3843,lsmdc1046_Australia-90538,8018,The Aboriginal tracker looks up and sees water poring out of holes at the top of the tower. But more,The Aboriginal tracker looks up and sees water poring out of holes at the top of the tower.,But more,gold,continues to pour from the tower.,bugs hang from the air in them.,embeds up on the surface.,lights surround the tree.,0\n3844,lsmdc1046_Australia-90538,8024,\"Someone brings someone to the surface. As the truck drives away down the dusty road, someone\",Someone brings someone to the surface.,\"As the truck drives away down the dusty road, someone\",gold,\"sees someone van pulling through the gap in the road, covering the car with a gloved foot.\",\"slides down a watchtower, and trips people.\",sprays the ss driver.,hauls someone's body from the tank.,3\n3845,lsmdc1046_Australia-90538,8006,\"She trots off in a huff as they start to ride around the cattle, moving them in to a single herd. She\",\"She trots off in a huff as they start to ride around the cattle, moving them in to a single herd.\",She,gold,gallops after the lone steer.,\"squares up and scores another huge, ground.\",\"continues running, grabbing life, and walking along the whirling rope.\",pulls the wheel at a fast pace.,0\n3846,lsmdc1046_Australia-90538,8016,Someone lifts someone to grab on to a pipe. She,Someone lifts someone to grab on to a pipe.,She,gold,gets a grip too.,\"touches an opponent, then knocks him steady.\",turns slowly from the chair to leave.,sips her drink casually.,0\n3847,lsmdc1046_Australia-90538,8029,The windmill turns slowly at sunset. Someone,The windmill turns slowly at sunset.,Someone,gold,looks tearfully out towards someone's blazing funeral pyre.,turns to handle to get away.,is the wife of three boys taking mother during dinner.,pulls a solitary boat down.,0\n3848,lsmdc1046_Australia-90538,8015,The ladder collapses and they fall into the water. Someone,The ladder collapses and they fall into the water.,Someone,gold,lifts someone to grab on to a pipe.,\", as the troll slides out of the water and more corpses fall from the doom.\",\"puts her face down, washing hoses in a plate.\",stares out the window and sees three calm objects.,0\n3849,lsmdc1046_Australia-90538,8019,But more continues to pour from the tower. Someone,But more continues to pour from the tower.,Someone,gold,takes a reload then returns to his back and judged.,points to the enemy on his side.,puts her hand over someone's mouth.,blasts a grate into the wall.,2\n3850,lsmdc1046_Australia-90538,8034,The body is carried towards the fire. The old man,The body is carried towards the fire.,The old man,gold,looks at someone sleeps.,is turned on fire!,takes the jacket stacks underneath the car.,looks down on the homestead from his hilltop.,3\n3851,lsmdc1046_Australia-90538,8026,Someone hangs his head as someone clings to the body. Someone,Someone hangs his head as someone clings to the body.,Someone,gold,runs out of the house.,\"lurches forward underwater, leaving a picture in the open sky.\",undoes her dart board and pulls up the blind.,is hanging on one of the giant's limbs.,0\n3852,lsmdc1046_Australia-90538,8025,Someone desperately hugs his mother. Someone,Someone desperately hugs his mother.,Someone,gold,emerges through his cage beyond the two winged giants.,hangs his head as someone clings to the body.,\"steps on to wood, clutching him tight behind his head.\",sweeps the women's arms down and kisses people passionately.,1\n3853,lsmdc1046_Australia-90538,8007,The sun beats down on the homestead and the windmill turns slowly. People,The sun beats down on the homestead and the windmill turns slowly.,People,gold,drifts by the finger waving to the crowd.,fly slowly through front small windows.,paddle down the path to the back of the tower.,are carrying items of luggage for someone.,3\n3854,lsmdc1046_Australia-90538,8012,She takes the tea tray to her. One man,She takes the tea tray to her.,One man,gold,removes her coat to reveal her pants.,walks slowly towards the tank.,sinks to the swimming pool and sinks.,carries someone onto the plate.,1\n3855,lsmdc1046_Australia-90538,8033,He waves to someone who starts to chant. The body,He waves to someone who starts to chant.,The body,gold,drifts around a crowded floor like a german.,halts its egg as he wields his boot.,is carried towards the fire.,flies over the gleaming wedding ring in a sharp billow.,2\n3856,lsmdc1046_Australia-90538,8013,One man walks slowly towards the tank. Someone,One man walks slowly towards the tank.,Someone,gold,plunges someone's hand into the air.,slides another foot carefully beneath him and makes it into the crystalline grasp.,holds her hand up for someone to grab.,follows him and his goateed friend later at the tv.,2\n3857,lsmdc1046_Australia-90538,8031,Smoke drifts from the top a rocky summit nearby. Someone,Smoke drifts from the top a rocky summit nearby.,Someone,gold,lays his head on someone's shoulder.,swims towards the helicopter.,signals to the hilltop.,dives onto the plane deck.,2\n3858,lsmdc3089_XMEN_FIRST_CLASS-42900,18963,\"He brings out a folder, glances over his shoulder, and studies its cover. It\",\"He brings out a folder, glances over his shoulder, and studies its cover.\",It,gold,bears the cia emblem.,ombre the boy putting flannel.,is about the same age as someone wearing a large outfit.,reveals a mushroom cloud of smoke.,0\n3859,lsmdc3089_XMEN_FIRST_CLASS-42900,18975,He clutches railings at his sides. His chest,He clutches railings at his sides.,His chest,gold,heaves as he envisions shooting into the air past hundreds of humans.,heaves as he reads the notes on the floor.,\"heaves as he swings out at the sight of someone, whose face light distorted and severe.\",rises and he surfs.,0\n3860,lsmdc3089_XMEN_FIRST_CLASS-42900,18961,\"The young man licks his lips and shifts his uneasy gaze. Now in a dimly lit office, someone\",The young man licks his lips and shifts his uneasy gaze.,\"Now in a dimly lit office, someone\",gold,searches a file cabinet.,peers at the window at the ceiling.,lies in a hospital bed.,notices a proper overcoat head and mustache.,0\n3861,lsmdc3089_XMEN_FIRST_CLASS-42900,18996,She opens a small metal box on a desk and pushes a button inside. Someone,She opens a small metal box on a desk and pushes a button inside.,Someone,gold,pops a book - sized star on her left fairy's side.,finds someone staring down at a waist - high nuclear reactor.,takes a seat in a cluttered room.,walks to the front of the desk and smooths metal with a pair of metal scissors.,1\n3862,lsmdc3089_XMEN_FIRST_CLASS-42900,18990,Later the recruiters enter a pub where someone sits at the bar. They,Later the recruiters enter a pub where someone sits at the bar.,They,gold,run into a store.,approach the troubled man as he lifts a cigar to his lips.,chew past stacks of dessert gowns.,enter a telegraph office.,1\n3863,lsmdc3089_XMEN_FIRST_CLASS-42900,18964,It bears the cia emblem. Someone,It bears the cia emblem.,Someone,gold,knocks someone out of the way.,roves up an issue with police officers.,walks up to a utility pole.,puts it in a briefcase.,3\n3864,lsmdc3089_XMEN_FIRST_CLASS-42900,18960,\"Someone stares after someone as he saunters off, then faces someone. The young man\",\"Someone stares after someone as he saunters off, then faces someone.\",The young man,gold,looks over in a mirror and a girl eyes him blankly as he speaks slowly out of her.,play three more glasses on a dim table.,shrugs at someone who takes it away.,licks his lips and shifts his uneasy gaze.,3\n3865,lsmdc3089_XMEN_FIRST_CLASS-42900,18980,\"As they flutter rapidly, the young woman rises into the air. Someone and someone\",\"As they flutter rapidly, the young woman rises into the air.\",Someone and someone,gold,hold their face back together.,lean close and kiss someone.,catch up to the bedroom.,exchange an amazed look.,3\n3866,lsmdc3089_XMEN_FIRST_CLASS-42900,18957,She brings her full parted lips in toward his. She,She brings her full parted lips in toward his.,She,gold,\"breathes again, her ear moving with her own paddle.\",\"pokes her, then gazes after them.\",dives into the window of a delivery car.,straightens abruptly as someone strolls over.,3\n3867,lsmdc3089_XMEN_FIRST_CLASS-42900,18983,Someone guides the meter's arm down. Later the recruiters,Someone guides the meter's arm down.,Later the recruiters,gold,walk a prison corridor.,strums the card to someone's recorder.,slices out the cake.,falls in the bath.,0\n3868,lsmdc3089_XMEN_FIRST_CLASS-42900,18977,The clouds clear away to show her standing on a bar in a night club. Someone and someone now,The clouds clear away to show her standing on a bar in a night club.,Someone and someone now,gold,arrive outside the cafe.,sit in front of her.,take their chairs to their seats.,looks at someone as he leans in to guide her.,1\n3869,lsmdc3089_XMEN_FIRST_CLASS-42900,18986,\"The pretty teen gives him a haughty look. The water inside ripples,\",The pretty teen gives him a haughty look.,\"The water inside ripples,\",gold,\"fills the glass ladle's edge, and causes a tiny chocolate foam.\",cupping his face in frustration.,driving the fish off.,gradually churns and churning behind it.,2\n3870,lsmdc3089_XMEN_FIRST_CLASS-42900,18989,\"As the boy turns back to the tank, someone and someone step up behind him. Later the recruiters\",\"As the boy turns back to the tank, someone and someone step up behind him.\",Later the recruiters,gold,\"reflects the sponsors in the sky, followed by a small red neon sign.\",removes a japanese red robe from a coat rack.,enter a pub where someone sits at the bar.,descend the paths - two ladder and scuttles down in pursuit of three boys.,2\n3871,lsmdc3089_XMEN_FIRST_CLASS-42900,18956,She lays her forearm across his lap. Someone,She lays her forearm across his lap.,Someone,gold,makes a nevada face.,gives him a gentle pat.,rolls up her sleeve and swabs at a patch of her skin with a cotton ball.,has her entire body increasingly awkward while they ever kiss.,2\n3872,lsmdc3089_XMEN_FIRST_CLASS-42900,18973,As someone closes his eyes. Someone,As someone closes his eyes.,Someone,gold,watches with an anxious look.,\"turns, raises his eyes like a little speck, descends, crushing himself up the steps.\",sags on the floor.,\"bobs low, then continues to talk.\",0\n3873,lsmdc3089_XMEN_FIRST_CLASS-42900,18971,\"Now someone, someone, and someone find someone inside the transmitter's spherical room. Someone\",\"Now someone, someone, and someone find someone inside the transmitter's spherical room.\",Someone,gold,pulls on a helmet attached to a network of wires.,heads toward the sphere.,glances up to see four fun friends staring through a set of glass doors.,feeds him a confiscated cables.,0\n3874,lsmdc3089_XMEN_FIRST_CLASS-42900,18995,\"Striding out of the bridge, she enters the adjacent living room and office area. She\",\"Striding out of the bridge, she enters the adjacent living room and office area.\",She,gold,finally heading for the door.,\"on, she frantically picks up the lid and reacts.\",opens a small metal box on a desk and pushes a button inside.,\"looks over the bar and stares at her, then pulls back.\",2\n3875,lsmdc3089_XMEN_FIRST_CLASS-42900,18967,\"Someone stands motionless, his wary gaze fixed on someone. Someone\",\"Someone stands motionless, his wary gaze fixed on someone.\",Someone,gold,\"backs away a few feet, then turns and heads toward the building.\",exits the barricade in one of the sacks.,holds out the key and crack someone smile.,slowly lags the cockpit.,0\n3876,lsmdc3089_XMEN_FIRST_CLASS-42900,18974,White light glows down on someone. He,White light glows down on someone.,He,gold,clutches railings at his sides.,holds up the cheap pearl.,takes a couple of stairs and eases someone inside.,seizes it and stares out at their surroundings.,0\n3877,lsmdc3089_XMEN_FIRST_CLASS-42900,18984,\"Sitting on a bench inside, a brawny young man with blonde hair lifts his gaze. Now in an aquarium, a teenaged boy and girl\",\"Sitting on a bench inside, a brawny young man with blonde hair lifts his gaze.\",\"Now in an aquarium, a teenaged boy and girl\",gold,gets out of the kitchen at him.,watch from the kitchen table.,face a fish tank.,arrange a party into a storm of sand while the ball swoops over his shoulder.,2\n3878,lsmdc3089_XMEN_FIRST_CLASS-42900,18985,\"Now in an aquarium, a teenaged boy and girl face a fish tank. The pretty teen\",\"Now in an aquarium, a teenaged boy and girl face a fish tank.\",The pretty teen,gold,brings the surfboard up toward the teen.,gives him a haughty look.,wets a towel in her mouth while backs off.,swim around with a blonde girl on them.,1\n3879,lsmdc3089_XMEN_FIRST_CLASS-42900,18966,He faces the compassionate young man. Someone,He faces the compassionate young man.,Someone,gold,shifts his weight high on his stomach and swallows.,shifts his gaze to someone's grand ceiling.,\"stands motionless, his wary gaze fixed on someone.\",shifts his sober gaze.,2\n3880,lsmdc3089_XMEN_FIRST_CLASS-42900,18992,Someone puffs on his cigar and the two recruiters exchange a resigned look. As they,Someone puffs on his cigar and the two recruiters exchange a resigned look.,As they,gold,head out the door.,\"leave, one of their guys plays with a copper knife and heads back to the others.\",return to listening in agony.,\"continue to play, our view moves over the fire lines.\",0\n3881,lsmdc3089_XMEN_FIRST_CLASS-42900,18981,Someone and someone exchange an amazed look. Now someone and someone,Someone and someone exchange an amazed look.,Now someone and someone,gold,climb into a cab.,eat breakfast at a restaurant.,watch the flask go in.,lie on the bed apart from someone.,0\n3882,lsmdc3089_XMEN_FIRST_CLASS-42900,18968,\"Someone backs away a few feet, then turns and heads toward the building. Someone\",\"Someone backs away a few feet, then turns and heads toward the building.\",Someone,gold,\"is at a locked door, which has twelve - style windows.\",glances up through the stairway chart.,\"looks away, uncertain.\",crushes the corpse of an elderly woman.,2\n3883,lsmdc3089_XMEN_FIRST_CLASS-42900,18988,\"With a perplexed look, she hurries off. As the boy turns back to the tank, someone and someone\",\"With a perplexed look, she hurries off.\",\"As the boy turns back to the tank, someone and someone\",gold,step up behind him.,ascend a flight of stairs.,wave their hands in front of the toyshop as they advance.,head out of the gas.,0\n3884,lsmdc3089_XMEN_FIRST_CLASS-42900,18962,\"Now in a dimly lit office, someone searches a file cabinet. He\",\"Now in a dimly lit office, someone searches a file cabinet.\",He,gold,takes a cigarette from his pocket and gives it to the boy.,'s smoking a cigarette.,looks and tosses a key on the sill.,\"brings out a folder, glances over his shoulder, and studies its cover.\",3\n3885,lsmdc3089_XMEN_FIRST_CLASS-42900,18972,Someone pulls on a helmet attached to a network of wires. Someone,Someone pulls on a helmet attached to a network of wires.,Someone,gold,allows it to remove a tether.,holds up the small forklift.,revs a white car.,flips switches on a control board.,3\n3886,lsmdc3089_XMEN_FIRST_CLASS-42900,18987,\"The water inside ripples, driving the fish off. The girl\",\"The water inside ripples, driving the fish off.\",The girl,gold,sinks first into the hole of a dunes.,\"swims out of the pool, oil her way, and careens.\",drops the ball to her side which slides open.,turns back to the tank and finds all of the fish gone.,3\n3887,lsmdc3089_XMEN_FIRST_CLASS-42900,18994,\"Inside someone's sub, someone removes her eyes from the viewfinder and turns to someone. Striding out of the bridge, she\",\"Inside someone's sub, someone removes her eyes from the viewfinder and turns to someone.\",\"Striding out of the bridge, she\",gold,follows someone like geese out on a city street.,\"folds her heavy, blue eyes over someone and crouches to her, who does a bit spirit sense.\",stands above the runway and looks at her array of watch.,enters the adjacent living room and office area.,3\n3888,lsmdc3089_XMEN_FIRST_CLASS-42900,18982,Now someone and someone climb into a cab. Someone,Now someone and someone climb into a cab.,Someone,gold,gets in and out of the limo.,guides the meter's arm down.,watches till at once.,sees someone sitting by the bed.,1\n3889,lsmdc3089_XMEN_FIRST_CLASS-42900,18965,Someone puts it in a briefcase. Someone,Someone puts it in a briefcase.,Someone,gold,approaches the sits of pool then turns and looks at someone.,\"keeps his back to someone, his gaze vulnerable.\",lifts his pinky defensively.,goes to someone and looks up to the sky.,1\n3890,lsmdc3089_XMEN_FIRST_CLASS-42900,18991,They approach the troubled man as he lifts a cigar to his lips. Someone puffs on his cigar and the two recruiters,They approach the troubled man as he lifts a cigar to his lips.,Someone puffs on his cigar and the two recruiters,gold,swig out of his mouth.,take a vacant concrete breath.,exchange a resigned look.,pushing one upward behind him.,2\n3891,lsmdc3089_XMEN_FIRST_CLASS-42900,18976,\"His chest heaves as he envisions shooting into the air past hundreds of humans. Emerging on a blanket of clouds, his gaze\",His chest heaves as he envisions shooting into the air past hundreds of humans.,\"Emerging on a blanket of clouds, his gaze\",gold,cranes to view as they start to new traveling up ways.,\"sweeps from three girls, to a man reading a book, to a dark - skinned girl with white hair.\",drifts up to the upturned guy below.,lands on a large ledge illuminating a secret stories high on the top of the stone structure.,1\n3892,lsmdc3089_XMEN_FIRST_CLASS-42900,18993,\"As they head out the door. Inside someone's sub, someone\",As they head out the door.,\"Inside someone's sub, someone\",gold,inserts a glass of ice through a hole then slides one to someone.,removes her eyes from the viewfinder and turns to someone.,\"sits at the kitchen table, regards a handful of oatmeal in his hand.\",tosses someone a grenade.,1\n3893,lsmdc0014_Ist_das_Leben_nicht_schoen-54749,4143,\"People are talking to someone in front of the latter's car. His wife, someone,\",People are talking to someone in front of the latter's car.,\"His wife, someone,\",gold,\"is standing beside a bed leaning over a mirror, looking about for the camera.\",\"is lying in bed, looking at her parents.\",is now out of the car.,lies on his side.,2\n3894,lsmdc0001_American_Beauty-45862,8717,\"Someone sits at the kitchen table, staring off into space as if hypnotized. Behind her, someone\",\"Someone sits at the kitchen table, staring off into space as if hypnotized.\",\"Behind her, someone\",gold,\"is standing beside her, in a little body - up.\",and someone step back from the table.,\"enters, followed by someone.\",\"grabs her leg, flutters it down.\",2\n3895,anetv_ItpDcSURusI,10174,She goes forward on the diving board and does a backward dive into the pool from several feet. She,She goes forward on the diving board and does a backward dive into the pool from several feet.,She,gold,twists her body as she dives down into the pool.,\"pauses on the floor and shakes her hand, shaking both arms.\",zooms off and turns to a dive as she dives to the water counter.,swings around and continues swimming in the water until getting ready to throw the ball.,0\n3896,anetv_ItpDcSURusI,10173,A professional diver named Pandelela Rinong is getting ready to dive in a competition. She,A professional diver named Pandelela Rinong is getting ready to dive in a competition.,She,gold,makes another diver kick and misses while the two congratulate each other on the final attempt.,goes forward on the diving board and does a backward dive into the pool from several feet.,runs down the sidelines and is as he lifts the camera and exits.,lifts up from a stack.,1\n3897,anetv_ItpDcSURusI,10175,\"She twists her body as she dives down into the pool. After she's done, she\",She twists her body as she dives down into the pool.,\"After she's done, she\",gold,dives off the ice trying to reach a goal and dives into the pool.,waves over a bar and jumps into the pool.,smiles and walks out of the pool.,gets ready to score the bar and walks away with the women.,2\n3898,anetv_P5lLZ_jsA2o,15913,A gymnast is seen swinging around on a bar doing various flips and tricks across two sets of beams. She,A gymnast is seen swinging around on a bar doing various flips and tricks across two sets of beams.,She,gold,then holds his arms up and begins attempting to hold up the disc.,spins himself around doing flips while moving his arms and arms in the air.,continues spinning around and ends with her hands up and her coach clapping.,swings onto a beam and lands in a small room in her pit.,2\n3899,anetv_P5lLZ_jsA2o,15914,She continues spinning around and ends with her hands up and her coach clapping. People watch on the sides and her scores,She continues spinning around and ends with her hands up and her coach clapping.,People watch on the sides and her scores,gold,\"are shown again including hurling out of their hands, and shortly seen throwing the ball.\",is shown on the team.,are shown in the end.,are shown again as well as the ingredients and drills.,2\n3900,lsmdc3001_21_JUMP_STREET-378,8287,They rush to the student Driver's car. They,They rush to the student Driver's car.,They,gold,are perspiring warm eyed.,stop on a train turn.,see the fluttering body in the basket.,ignore the instructor and get in behind the twin steering wheels.,3\n3901,lsmdc3001_21_JUMP_STREET-378,8288,\"Now, someone's maroon sedan arrives at a highway underpass where the biker gang, the One - Percenter's awaits the young dealer and his friend. Someone and someone\",\"Now, someone's maroon sedan arrives at a highway underpass where the biker gang, the One - Percenter's awaits the young dealer and his friend.\",Someone and someone,gold,ride their horses along a wreath at the airport.,watch the deal go down.,enter a public locker room.,sit at the kitchen table.,1\n3902,anetv_89rUyq2rCJ8,7999,A man is riding on a surfboard in the ocean. He,A man is riding on a surfboard in the ocean.,He,gold,\"does a big flip, landing back in the wave.\",starts over with his oar.,mounts the pommel horse.,paddles back and forth against the boat with a knife.,0\n3903,anetv_89rUyq2rCJ8,8000,\"He does a big flip, landing back in the wave. The flip\",\"He does a big flip, landing back in the wave.\",The flip,gold,reverses the building into the air.,is replaced from the approaching end.,is repeated in slow motion.,\"flips, bounce in half, flipping through.\",2\n3904,lsmdc3057_ROBIN_HOOD-27436,17782,\"Behind him, someone watches with an admiring smile as she rides away. He\",\"Behind him, someone watches with an admiring smile as she rides away.\",He,gold,reaches for the key.,shifts his troubled gaze.,inspects his clothing and smiles.,eyes a bug flying near his face.,3\n3905,lsmdc3057_ROBIN_HOOD-27436,17781,\"As she mounts a dark horse, the father gazes wearily at her. Behind him, someone\",\"As she mounts a dark horse, the father gazes wearily at her.\",\"Behind him, someone\",gold,see someone walk with a round older boy in one arm as the truck does someone.,peers over with a group of double - barreled pistols in her hand as he searches a pile of wet boxes.,lies asleep in the affluent lamb locker on the small chair beside him.,watches with an admiring smile as she rides away.,3\n3906,lsmdc3057_ROBIN_HOOD-27436,17780,\"Father someone and someone follow her out. As she mounts a dark horse, the father\",Father someone and someone follow her out.,\"As she mounts a dark horse, the father\",gold,places a woman now the noblewoman's arms.,hands over his credit card.,snaps her head and hugs her.,gazes wearily at her.,3\n3907,lsmdc0005_Chinatown-48112,12397,Someone is wearing jeans that are lathered white on the inside of the thighs and laced with brown horsehair. She,Someone is wearing jeans that are lathered white on the inside of the thighs and laced with brown horsehair.,She,gold,brings it down to the side of the head.,loads the video smiling.,turns to tell someone and snips the sheet.,\"is wearing riding boots, is perspiring a little, but looks younger than she did in the office.\",3\n3908,lsmdc0005_Chinatown-48112,12398,\"She is wearing riding boots, is perspiring a little, but looks younger than she did in the office. Someone\",\"She is wearing riding boots, is perspiring a little, but looks younger than she did in the office.\",Someone,gold,is a little taken aback at seeing someone.,\"arrives in some room, with a bandage on his arm.\",\"the official, he turns the phone, looks at someone blocking the way through the crowd of coke.\",tenses his coffee no emotion.,0\n3909,lsmdc0005_Chinatown-48112,12399,Someone is a little taken aback at seeing someone. The Chinese someone,Someone is a little taken aback at seeing someone.,The Chinese someone,gold,slowly goes down one of the lifeboats spilling his cape magically.,has a number of aged portrait men on her.,appears on the veranda.,\"has then seen in a crib, kickboxing.\",2\n3910,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5207,A balding man tows a cart to the cottage. Someone,A balding man tows a cart to the cottage.,Someone,gold,unzips a matchbox - wrapped bundle.,runs on.,sleeps in bed beside the cat.,'s eyes ripple as if he suddenly runs briskly.,2\n3911,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5204,At a hospital someone sits on a hallway floor with her knees to her chest. A doctor enters and she,At a hospital someone sits on a hallway floor with her knees to her chest.,A doctor enters and she,gold,attempts the doctor run.,rises to her feet.,moves to the floor.,sets her clock before her.,1\n3912,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5209,\"The cat sits up, someone stirs, wrapped in a few blankets. He\",\"The cat sits up, someone stirs, wrapped in a few blankets.\",He,gold,sprays the windows of the hall.,sits up and looks at his watch on a nightstand.,looks up as the timer starts in slow motion.,approaches a dark living hut and crouches to catch himself.,1\n3913,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5179,\"Now, at a coffee shop someone sits alone at a counter with a book decorated with a bow. She\",\"Now, at a coffee shop someone sits alone at a counter with a book decorated with a bow.\",She,gold,\"approach someone's lab, takes some glasses from the box and sets them on the desk.\",holds a bouquet of flowers and tackle her to reappear.,\"peels off a price tag, then checks her cell phone.\",dances the rows in the navel enclosure.,2\n3914,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5197,\"He drops the phone to his side. Now, at a grocery store, someone\",He drops the phone to his side.,\"Now, at a grocery store, someone\",gold,takes his cut shoes off.,sneaks out after him.,faces a broken mirror.,adds two cans of cat food to his purchase.,3\n3915,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5177,He walks out the door. She,He walks out the door.,She,gold,watches him go with a disappointed gaze.,trots back into the room behind him.,comes and peers at the door opening.,looks at her to give her disbelieving glance.,0\n3916,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5188,\"He steps away from the train. At the guest cottage, someone\",He steps away from the train.,\"At the guest cottage, someone\",gold,gives a little shrug and.,pays the driver then slips on an icy stoop.,is at someone house!,walks to a cobra and unfolds a letter.,1\n3917,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5178,\"She watches him go with a disappointed gaze. Now, at a coffee shop someone\",She watches him go with a disappointed gaze.,\"Now, at a coffee shop someone\",gold,joins the loads and rounds when she heads into the office.,watches past the french windows on an evening mattress.,stands at the front desk.,sits alone at a counter with a book decorated with a bow.,3\n3918,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5201,Someone sits by a fireplace huddled in a blanket. He,Someone sits by a fireplace huddled in a blanket.,He,gold,go through the most endless crowd of seated people.,tears pages from a book and throws them in a meager fire.,\"see nearby glowing colors up and quick, launching over furniture.\",rows of joyfully between the children halfway down at the front of the class.,1\n3919,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5203,The frustrated man looks at the book's cover then tosses it on a few others. At a hospital someone,The frustrated man looks at the book's cover then tosses it on a few others.,At a hospital someone,gold,takes picture in his goggles.,sits on a hallway floor with her knees to her chest.,\"walks over and approaches the back of someone's shabby den, snatches a photo from his right hand.\",finds someone wrapping a woman's arm in a paper bag.,1\n3920,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5205,\"A doctor enters and she rises to her feet. Now, she\",A doctor enters and she rises to her feet.,\"Now, she\",gold,reaches into her pocket and pulls out a container of wet seconds.,applies makeup to her face and then.,watches someone through a window.,sees tiny creatures in an underwater apartment.,2\n3921,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5174,She finds someone at his desk packing supplies. He,She finds someone at his desk packing supplies.,He,gold,whirls past several trays packed staff bearing a large booklet.,brings it back to his office and crumples his books.,meets her disapproving gaze.,turns and scans the ritual.,2\n3922,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5194,He steps past the cat. He,He steps past the cat.,He,gold,\"his open eye, someone sketches the golden powder from his hand.\",turns the metal rim on the rock and removes the dirt from flushing.,watches as more birds hang to his neck.,shuts the fridge and shares a look with the hungry cat.,3\n3923,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5180,\"She peels off a price tag, then checks her cell phone. She\",\"She peels off a price tag, then checks her cell phone.\",She,gold,sets it down and glances around.,ski mascara behind her knit cap.,arrives at someone's grave.,slumps on two chairs.,0\n3924,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5187,Someone exits a train with his bags and reacts to the cold. He,Someone exits a train with his bags and reacts to the cold.,He,gold,closes the closet door.,shakes someone's struggling hand.,steps away from the train.,performs with several different dressed yoga choreography.,2\n3925,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5212,Someone opens the front door. Someone,Someone opens the front door.,Someone,gold,puts the bill in his pocket and places it into his jacket pocket.,grabs one of many file boxes from his cart then steps inside.,stifles a breezy smile and her heart drops.,begins to stride through a door beyond a stone bridge behind him.,1\n3926,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5196,Someone walks away from the cottage holding his cell phone at arm's length. He,Someone walks away from the cottage holding his cell phone at arm's length.,He,gold,drops the phone to his side.,pulls up his sleeve as his father frantically turns to look in his window.,glances up at him then glances aside.,wears a beaded scarf over her head.,0\n3927,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5199,\"Later, he steps out front with a grocery bag and a cigarette hanging from his mouth. He\",\"Later, he steps out front with a grocery bag and a cigarette hanging from his mouth.\",He,gold,stands up and kisses her.,is holding a bottle over his brow.,attempts to make another call on his cell phone.,offers him an ice cream.,2\n3928,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5213,\"Later, as someone works on the fireplace, someone brings him coffee. He\",\"Later, as someone works on the fireplace, someone brings him coffee.\",He,gold,puts on glasses and crouches over the files.,drops the bottle on his arm as well.,drops a bottle and grabs the bottles.,\"sits her, spreads a lemon in front of her.\",0\n3929,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5175,He steps near to kiss her but she looks away. He,He steps near to kiss her but she looks away.,He,gold,\"begins to speak, then comes back and sits along to cool off.\",kisses her cheek instead.,turns to face someone.,stares back and forth as a waist - deep haircut.,1\n3930,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5172,Someone sets her handheld device on top of an electrical box. She,Someone sets her handheld device on top of an electrical box.,She,gold,\"admires the reactor mechanism which floats out like a machine, welding a grapples with a circuit network.\",touches the needle on his gloved finger.,touches a giant metal sheet.,takes the flashlight out of her mouth and flips a switch.,3\n3931,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5182,\"Inside, she approaches an apartment door. She\",\"Inside, she approaches an apartment door.\",She,gold,turns to see someone from a low wall where someone sees start arriving.,shuts the side door.,climbs the handcuff girders and enters.,leans towards the door and listens.,3\n3932,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5198,\"Now, at a grocery store, someone adds two cans of cat food to his purchase. Later, he\",\"Now, at a grocery store, someone adds two cans of cat food to his purchase.\",\"Later, he\",gold,\"walks down to her bedroom, then sits with someone and glances at someone.\",steps out front with a grocery bag and a cigarette hanging from his mouth.,puts water on a dish and sets his case on a coffee table.,puts the fridge to the camera and leans over for a pan of food.,1\n3933,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5200,He attempts to make another call on his cell phone. Someone,He attempts to make another call on his cell phone.,Someone,gold,phone hits myrtle '.,drags himself outside and jogs along the sidewalk traffic.,unbuckles his father's belt and returns.,sits by a fireplace huddled in a blanket.,3\n3934,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5191,\"Attempting another call, he crosses to a bedroom where pillows and folded towels lie stacked at the foot of the bed. Someone\",\"Attempting another call, he crosses to a bedroom where pillows and folded towels lie stacked at the foot of the bed.\",Someone,gold,checks the mirror and smooths a doll's face.,looks over his shoulder then crosses to a window where a tabby waits on the sill in the cold.,takes a stack of sheets and slides it on the couch.,slashes someone's throat.,1\n3935,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5210,He sits up and looks at his watch on a nightstand. Wrapping himself in one of the blankets he,He sits up and looks at his watch on a nightstand.,Wrapping himself in one of the blankets he,gold,\"reaches out, frowning at his dad.\",covers him with a paper towel.,spots lights on the wall.,pulls it out from under the cat.,3\n3936,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5186,\"Now, at the Hedestad station, a thermometer nears negative 20 degrees Celsius. Someone\",\"Now, at the Hedestad station, a thermometer nears negative 20 degrees Celsius.\",Someone,gold,checks under stalls as they duck into a range with tunnels.,puts on his sales machine and yanks off his jacket.,hands someone an encouraging watch.,exits a train with his bags and reacts to the cold.,3\n3937,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5206,\"Now, she watches someone through a window. Riding a train, someone\",\"Now, she watches someone through a window.\",\"Riding a train, someone\",gold,drops her foot and winces.,smashes through the horn like an axe.,peers out a window.,gives a high five.,2\n3938,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5193,He lets the cat inside and it jumps down to the floor. He,He lets the cat inside and it jumps down to the floor.,He,gold,lights the cigarette and smoke it out.,\"walks back, touching the cord he is holding.\",steps past the cat.,quickly knocks the lid off the wall.,2\n3939,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5192,Someone looks over his shoulder then crosses to a window where a Tabby waits on the sill in the cold. He lets the cat inside and it,Someone looks over his shoulder then crosses to a window where a Tabby waits on the sill in the cold.,He lets the cat inside and it,gold,rolls across his stomach.,bears into a modest sigh.,rises up to the ground.,jumps down to the floor.,3\n3940,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5208,\"Someone sleeps in bed beside the cat. The cat sits up, someone stirs,\",Someone sleeps in bed beside the cat.,\"The cat sits up, someone stirs,\",gold,leaning her head in her hand.,\"glancing at someone, then walks towards a young girl passing through the trash.\",pleased to see the cat's feet.,wrapped in a few blankets.,3\n3941,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5189,\"At the guest cottage, someone pays the driver then slips on an icy stoop. The driver\",\"At the guest cottage, someone pays the driver then slips on an icy stoop.\",The driver,gold,gets back in his taxi.,gets off the car and drives again.,pauses with his gun raised.,opens the topped car.,0\n3942,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5184,She opens the door and steps inside. She,She opens the door and steps inside.,She,gold,walks deeper into the apartment and looks around.,gives someone her paper slip.,\"waves with a nod, and heads inside.\",\"glances at her, then tilts her head.\",0\n3943,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5176,He kisses her cheek instead. He,He kisses her cheek instead.,He,gold,walks out the door.,drains her face as people leave.,kisses someone off again.,gives him a gentle smile.,0\n3944,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5183,She leans towards the door and listens. She,She leans towards the door and listens.,She,gold,\"walks up to the front door, turns and wakes.\",opens the door and steps inside.,looks down the drain and gets in.,diminishes into his thoughts without leaving the crib.,1\n3945,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5211,Wrapping himself in one of the blankets he pulls it out from under the cat. Someone,Wrapping himself in one of the blankets he pulls it out from under the cat.,Someone,gold,walks off through the woods.,opens the front door.,\"sidles forward, facing someone.\",takes his phone from his ear and looks around.,1\n3946,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5171,\"Now, pedestrians cross paths outside someone's apartment building. Someone\",\"Now, pedestrians cross paths outside someone's apartment building.\",Someone,gold,is directly outside the crack in the front door.,sets her handheld device on top of an electrical box.,\"steps over the driver's railing and, lifting weakly, opens the door to the large private office.\",rides away as she rips off her shirt.,1\n3947,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5181,\"Now, she marches across a street to a five - story brick facade with bay windows shaped like prisms. Inside, she\",\"Now, she marches across a street to a five - story brick facade with bay windows shaped like prisms.\",\"Inside, she\",gold,approaches an apartment door.,\"sits alone at a table in the empty beach, sipping her wine and subtly flowing long blond hair.\",\"opens the front door of the convention hall, reaches a doorway and examines it as she exits.\",\"reads the comic clip, her hair in swirling patterns.\",0\n3948,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5202,He tears pages from a book and throws them in a meager fire. The frustrated man,He tears pages from a book and throws them in a meager fire.,The frustrated man,gold,\"removes the metal from the wall away, squeezing its contents.\",runs behind the giant who slams him to the ground and causing him to fall over.,looks at the book's cover then tosses it on a few others.,crosses the room and slaps his back.,2\n3949,anetv_dth916VxJUw,13385,The man does shoulder dips on the set of parallel bars. The man,The man does shoulder dips on the set of parallel bars.,The man,gold,does push ups with his feet up on the parallel bars.,exercise on the ground serving with one last time.,\"walks forward and stands on a hatchet, doing high jumps.\",lifts the weight above a little thigh.,0\n3950,anetv_dth916VxJUw,13386,The man does push ups with his feet up on the parallel bars. The man,The man does push ups with his feet up on the parallel bars.,The man,gold,returns to the exact spot he is doing.,gets at it with the pole and does the splits.,jumps up and down on the mat and then throws the legs on the ground.,does pull ups on one of the bars.,3\n3951,anetv_dth916VxJUw,13387,The man does pull ups on one of the bars. The man,The man does pull ups on one of the bars.,The man,gold,walks back up in front of the equipment after the routine.,grabs a handle and begins to bounce into the air.,spins around while a small man dances.,kicks it on a rope and spins it around.,0\n3952,anetv_dth916VxJUw,13384,A man stands in front of a set of pull up and double bars at a park. The man,A man stands in front of a set of pull up and double bars at a park.,The man,gold,does shoulder dips on the set of parallel bars.,bows as the skiers climb side down a ladder.,holds the gate on his back and demonstrates how to do the splits.,ride a bicycle up and down on the table.,0\n3953,lsmdc1042_Up_In_The_Air-88469,1345,\"Someone walks through an open - plan office with someone, who's clutching a pile of strategy packets. Office workers\",\"Someone walks through an open - plan office with someone, who's clutching a pile of strategy packets.\",Office workers,gold,stand on a kitchen floor.,hang out sheet paper as he winds around the fire.,spread weapons at tables with someone and someone.,stare at them as they head to a private office.,3\n3954,lsmdc3040_JULIE_AND_JULIA-18253,910,\"In her office, someone posts note cards. Someone\",\"In her office, someone posts note cards.\",Someone,gold,picks up a camper overlooking a large western castle in iowa park.,frowns as she looks up at the departing figure.,rearranges some of the cards on the bulletin board and reads the result.,erupts into the scene.,2\n3955,lsmdc1043_Vantage_Point-89283,2005,\"Someone crosses the busy hotel lobby. In a garage, someone\",Someone crosses the busy hotel lobby.,\"In a garage, someone\",gold,lies on a bench near a rock and tries to pick up a metal ball.,taps the screen of his cell phone with a stylus.,stands still working at a console through a bedroom window.,\"sits alone on a carpet across a gym room, surrounded by plastic desks and paintings.\",1\n3956,lsmdc1043_Vantage_Point-89283,2032,\"They put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face. Someone\",\"They put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face.\",Someone,gold,points a gun at someone's head.,snuggles up and hurries toward someone.,sticks his arm at someone.,\"doctor steward the trolley in the courtyard delivers a six - handled square to the side, and mounted on a back.\",0\n3957,lsmdc1043_Vantage_Point-89283,2031,Someone arrives in the elevator and chloroforms someone. They,Someone arrives in the elevator and chloroforms someone.,They,gold,\"put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face.\",run across the center of an upper floor.,escort the recruits uncertainly down the corridor.,get onto a subway elevator.,0\n3958,lsmdc1043_Vantage_Point-89283,1991,Someone shoots uniformed security guards in the hotel's cctv control room. He,Someone shoots uniformed security guards in the hotel's cctv control room.,He,gold,\"slips inside the arm of one of the leeds women, having a set of desks playing class.\",unplugs a laptop and makes a call on his cell phone.,places two suitcases in his back.,and his aide follow.,1\n3959,lsmdc1043_Vantage_Point-89283,2030,\"Someone slides around the corner. In the hotel, someone\",Someone slides around the corner.,\"In the hotel, someone\",gold,searches a stack of books.,watches a gaunt bully with a mustache.,catches up with someone as she sets the suitcase down on the loft floor.,forces someone towards the elevator on the seventh floor at gunpoint.,3\n3960,lsmdc1043_Vantage_Point-89283,1980,\"He loads the pistol and puts an earpiece in. In the plaza, someone\",He loads the pistol and puts an earpiece in.,\"In the plaza, someone\",gold,raises lunges toward someone.,struggles for the plane.,sees someone take the bag from someone.,unplugs an carbon map of a network of equipment.,2\n3961,lsmdc1043_Vantage_Point-89283,1998,Someone stares at himself in a mirror. He,Someone stares at himself in a mirror.,He,gold,has dynamite strapped around his waist.,waitresses out his warning window.,shifts his gaze to leg.,stops and stares at his lifeless friend.,0\n3962,lsmdc1043_Vantage_Point-89283,2009,Someone eases a door open on level seven. Someone,Someone eases a door open on level seven.,Someone,gold,\"dons a ski mask, then lurches through the doorway and stabs the agent in the back.\",spot the twenty of the boys own footprints as they follow close.,marches someone through a shadowy corridor in the apartment.,return that angle again.,0\n3963,lsmdc1043_Vantage_Point-89283,1969,Someone the bellboy hangs up the phone. The motorcade,Someone the bellboy hangs up the phone.,The motorcade,gold,\"hops through the hangar door to a german car, primarily with tuk - machines being ipad and buckets.\",\"drives towards the stately building, which pulls him to open the locks and goes upstairs.\",lowers the third eaters.,enters the underground parking lot.,3\n3964,lsmdc1043_Vantage_Point-89283,1978,\"He reaches the fourth floor and strolls down a corridor, where he slots a swipe card into a machine on a hotel room door, unlocking it. Inside, he\",\"He reaches the fourth floor and strolls down a corridor, where he slots a swipe card into a machine on a hotel room door, unlocking it.\",\"Inside, he\",gold,finds a set of keys in a rock and pulls onto a set of keys.,removes a hold - all from a fridge and takes a pistol from it.,spies someone inside the door at the medic's office.,opens his door at the mourners apartment.,1\n3965,lsmdc1043_Vantage_Point-89283,2001,\"Someone's brother, the man from someone's phone, sits against a white pillow with gaffer tape over his mouth. Someone\",\"Someone's brother, the man from someone's phone, sits against a white pillow with gaffer tape over his mouth.\",Someone,gold,tugs down on the doctor's restraints as the boy steps away from the boy.,regards him with a towering hug.,aims the pistol at him.,steps through a narrow crevice.,2\n3966,lsmdc1043_Vantage_Point-89283,2002,Someone aims the pistol at him. Someone,Someone aims the pistol at him.,Someone,gold,is peeling the sacks of the ground toward the fire.,reaches out and picks up the heavy lens shot shut off him.,\"shoots him, startling someone.\",knocks someone away and aims out a second.,2\n3967,lsmdc1043_Vantage_Point-89283,1985,He shoots a hotel maid. A gun,He shoots a hotel maid.,A gun,gold,lands on a man's shoulder.,\"runs into the other side of the roof, aiming the gun.\",falls in one hand.,falls from her hand.,3\n3968,lsmdc1043_Vantage_Point-89283,2015,Someone points his gun at someone. The ambulance,Someone points his gun at someone.,The ambulance,gold,moves away from the van.,is wheeled down the driveway.,gets wheeled back onto a lower deck across the road.,arrives at the bombed hotel.,3\n3969,lsmdc1043_Vantage_Point-89283,1995,Someone stands at his open locker. He,Someone stands at his open locker.,He,gold,\"caresses a family photograph from the inside of the locker door, then shuts it.\",obeys and strikes the detective.,uses his wrist to move in the direction.,\"takes off his hat and walks around, noticing it.\",0\n3970,lsmdc1043_Vantage_Point-89283,1976,\"Spotting someone with his camera, someone narrows his eyes. He\",\"Spotting someone with his camera, someone narrows his eyes.\",He,gold,\"furrows his brow pensively, then makes his way over to someone.\",takes a photo of the girl from someone's bed.,pounds on the asphalt.,reflects on the barbells as it touches forward.,0\n3971,lsmdc1043_Vantage_Point-89283,2016,The ambulance arrives at the bombed hotel. People,The ambulance arrives at the bombed hotel.,People,gold,jump rope from their bed and stride up to the building onto a high line.,are in his doorway with someone and someone.,\"gaze down at someone, who watches vacantly as he sits.\",climb out of the ambulance.,3\n3972,lsmdc1043_Vantage_Point-89283,2024,\"Someone glares at the monitor, then leaps into action, rushing out of the gnn truck. Someone\",\"Someone glares at the monitor, then leaps into action, rushing out of the gnn truck.\",Someone,gold,\"then places his car in its telegraph, and the kidnapper gets up.\",takes him off the floor and sets her beside someone.,and his thugs drag him in as the others continue their choppers.,\"puts his cell phone into the front seat of the ambulance driven by people, and gets into a spanish police car.\",3\n3973,lsmdc1043_Vantage_Point-89283,2004,\"Someone runs up a stairwell in the hotel, then checks his watch. Someone\",\"Someone runs up a stairwell in the hotel, then checks his watch.\",Someone,gold,follows the officer through a black - carpeted office and knocks on a chair.,holds out a magazine overhead.,climbs down the stairs and climbs on some equipment then sees a door attached to a inner box.,crosses the busy hotel lobby.,3\n3974,lsmdc1043_Vantage_Point-89283,1977,\"He furrows his brow pensively, then makes his way over to someone. Someone\",\"He furrows his brow pensively, then makes his way over to someone.\",Someone,gold,\"flinches, then taps him.\",stands in the elevator.,looks at his teacher.,\"leans forward, and kisses someone on the lips.\",1\n3975,lsmdc1043_Vantage_Point-89283,1972,\"Someone enters the lobby, which is filled with Secret Service agents. Someone\",\"Someone enters the lobby, which is filled with Secret Service agents.\",Someone,gold,swings down on to a chair - - that is a 7 - year - old someone appears.,talks into his cell phone as he passes the suited agents.,frowns blankly as a security guard checks his watch.,notices three dozen officers.,1\n3976,lsmdc1043_Vantage_Point-89283,1970,\"Someone takes the phone from his ear, then gasps as he approaches the hotel. Someone\",\"Someone takes the phone from his ear, then gasps as he approaches the hotel.\",Someone,gold,punches buttons on his phone and talks into the mic of his hands - free kit.,stands from the doorway of the salon.,\"opens the bathroom door, peers in and sees someone sitting on a couch spitting up.\",reclines on someone's bed as she approaches the sink.,0\n3977,lsmdc1043_Vantage_Point-89283,1981,\"Someone disappears into the crowd. Wearing a backpack, someone\",Someone disappears into the crowd.,\"Wearing a backpack, someone\",gold,uncorks the bottle and spits it in the water.,screws a silencer onto his pistol as he climbs a flight of steps in the hotel.,bursts his dropped bags and follows behind them.,\"scrambles up, flips the grenade over his shoulder, and leaves the room.\",1\n3978,lsmdc1043_Vantage_Point-89283,2011,\"Someone kills the agent, then draws his gun. Someone\",\"Someone kills the agent, then draws his gun.\",Someone,gold,glances over the shoulder toward ibs.,\"uses a mirror to spot two agents outside someone's room, then opens fire.\",grabs his gun and taps it with his gun.,uses his flashlight to sweep the car from someone's view.,1\n3979,lsmdc1043_Vantage_Point-89283,1984,Someone stalks through the hotel corridors with his pistol drawn. He,Someone stalks through the hotel corridors with his pistol drawn.,He,gold,climbs in and aims the gun.,lowers a soldier as his wife exits a truck.,crosses the front pavement of the house.,shoots a hotel maid.,3\n3980,lsmdc1043_Vantage_Point-89283,2021,\"Someone guns down both agents, then sheds his jacket and dismantles the remote - controlled rifle. Someone\",\"Someone guns down both agents, then sheds his jacket and dismantles the remote - controlled rifle.\",Someone,gold,\"holds out a box of vicious shells, trying to get it into sky.\",strikes at something in her direction which framing her candlesticks under her beating mouth.,joins a guard on a rundown street and rides along a sidewalk with someone behind them.,changes into a spanish policeman's outfit and heads down an outside staircase with the packed up rifle.,3\n3981,lsmdc1043_Vantage_Point-89283,1997,Someone approaches a parked ambulance. Someone,Someone approaches a parked ambulance.,Someone,gold,stares at himself in a mirror.,walks up the narrow road toward a trees abutting hogwarts castle.,drags the white - haired boy away.,\"approaches, gives the bearded driver a head, and leaves.\",0\n3982,lsmdc1043_Vantage_Point-89283,2010,Another agent rounds the corner. Someone,Another agent rounds the corner.,Someone,gold,\"shoots pensive, but he put his nose in the sink.\",is escorted through the cheering air.,\"kills the agent, then draws his gun.\",runs signal to the detective.,2\n3983,lsmdc1043_Vantage_Point-89283,2012,\"Someone uses a mirror to spot two agents outside someone's room, then opens fire. He\",\"Someone uses a mirror to spot two agents outside someone's room, then opens fire.\",He,gold,takes a huge piece of paper bearing someone's name.,shoots a third agent.,is moving around in flames.,peers intently toward the binocular.,1\n3984,lsmdc1043_Vantage_Point-89283,2018,Someone enters the gnn ob truck and flashes his i d.. Someone,Someone enters the gnn ob truck and flashes his i d..,Someone,gold,gets some cash off his jeans pocket.,words sound cracker dully fast.,enters the elevator with a gurney and presses the button for level seven.,sees someone at the equipment window as he answers.,2\n3985,lsmdc1043_Vantage_Point-89283,1983,Someone turns his back and walks away. Someone,Someone turns his back and walks away.,Someone,gold,shows a picture of someone's.,spikes a heavy bell over his head.,stalks through the hotel corridors with his pistol drawn.,\"pauses, licks her lips, then tilts his head stiffly and munches down his burger.\",2\n3986,lsmdc1043_Vantage_Point-89283,2023,\"As someone leaves, someone spots him on the monitor. Someone\",\"As someone leaves, someone spots him on the monitor.\",Someone,gold,gives a puzzled frown.,\"glares at the monitor, then leaps into action, rushing out of the gnn truck.\",\"smiles and looks at someone, then whispers out of someone's side.\",\"wraps his arm around someone, who gazes at him with bloodshot eyes.\",1\n3987,lsmdc1043_Vantage_Point-89283,1999,He has dynamite strapped around his waist. He,He has dynamite strapped around his waist.,He,gold,closes his bellboy's jacket over it and anxiously makes his way into a hotel corridor.,\"gazes down at the coins, then turns and walks off, leaving someone standing empty.\",puts a hood to his face and knits his arm around it.,is just given him - - the man applies a sexual pose as a loose band player out to him.,0\n3988,lsmdc1043_Vantage_Point-89283,2017,People climb out of the ambulance. Someone,People climb out of the ambulance.,Someone,gold,taps his cell phone screen.,lies bound to his bed.,points to someone flanking the brick radio.,is heading toward a steward.,0\n3989,lsmdc1043_Vantage_Point-89283,1973,Someone talks into his cell phone as he passes the suited agents. Someone,Someone talks into his cell phone as he passes the suited agents.,Someone,gold,sits off by the wheel.,strides more into someone's room.,mixes nuts into his pot and throws some bills into his briefcase.,lowers his phone and calls an elevator.,3\n3990,lsmdc1043_Vantage_Point-89283,1993,Someone slips a cartridge into the pistol and removes his beige jacket. Someone,Someone slips a cartridge into the pistol and removes his beige jacket.,Someone,gold,comes up the stairs and gestures with someone.,aims his underlings finger at someone.,is someone crouching inside someone's van.,speaks into his radio.,3\n3991,lsmdc1043_Vantage_Point-89283,2027,\"Someone sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road. Someone\",\"Someone sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road.\",Someone,gold,pulls back a bar onto a swing set.,rushes into oncoming traffic.,jerks against the trailer with shut inner door as cars fall down from a platform.,reaches for the door.,1\n3992,lsmdc1043_Vantage_Point-89283,2014,Someone sets charges which blow the door to someone's room. Someone,Someone sets charges which blow the door to someone's room.,Someone,gold,runs to a troop.,points his gun at someone.,\"steps upright, into the kitchen.\",\"bumps side by side, moving his jaw.\",1\n3993,lsmdc1043_Vantage_Point-89283,2013,He shoots a third agent. Someone,He shoots a third agent.,Someone,gold,sets charges which blow the door to someone's room.,\"holds his hand to someone, holding her hair - in hand.\",\"glances away, then shuts channels on his laptop.\",hauls off his aim.,0\n3994,lsmdc1043_Vantage_Point-89283,2028,Someone rushes into oncoming traffic. Someone,Someone rushes into oncoming traffic.,Someone,gold,stands on the kitchen.,bashes at the door.,\"speeds off in a blue hatchback, then gets on his cell phone.\",runs around the herd.,2\n3995,lsmdc1043_Vantage_Point-89283,1982,\"Wearing a backpack, someone screws a silencer onto his pistol as he climbs a flight of steps in the hotel. He\",\"Wearing a backpack, someone screws a silencer onto his pistol as he climbs a flight of steps in the hotel.\",He,gold,jogs and notices the last icon as he runs away.,tosses it across the main floor.,uses a touchscreen pda to activate the fan in the window overlooking the plaza.,puts water in his jacket and squats down and picks up the bottle containing greenish paint.,2\n3996,lsmdc1043_Vantage_Point-89283,2003,\"Someone shoots him, startling someone. Someone\",\"Someone shoots him, startling someone.\",Someone,gold,\"leaps up and down his shirts, knocking them along a well.\",\"runs up a stairwell in the hotel, then checks his watch.\",eyes the final card.,approaches naked bound into someone and someone.,1\n3997,lsmdc1043_Vantage_Point-89283,1975,\"Someone steps out of the cafe onto the sunny street, the wire from his hands - free kit trailing down his white T - shirt to the phone in his hand. The huge enclosed square of the plaza\",\"Someone steps out of the cafe onto the sunny street, the wire from his hands - free kit trailing down his white T - shirt to the phone in his hand.\",The huge enclosed square of the plaza,gold,\"is manicured with trophies, but the building is landing in the blazing mess suite.\",is full with tires in a coffin behind him.,is surrounded by terra cotta colored buildings.,sits beside a dingy land parking lot.,2\n3998,lsmdc1043_Vantage_Point-89283,2022,\"Someone changes into a Spanish policeman's outfit and heads down an outside staircase with the packed up rifle. As someone leaves, someone\",Someone changes into a Spanish policeman's outfit and heads down an outside staircase with the packed up rifle.,\"As someone leaves, someone\",gold,spots him on the monitor.,watches footage from someone and window.,turns around with her face turned away.,\"pushes up the stairs, staring at him.\",0\n3999,lsmdc1043_Vantage_Point-89283,1968,A bellboy answers a phone in the hotel reception. Someone the bellboy,A bellboy answers a phone in the hotel reception.,Someone the bellboy,gold,hangs up the phone.,moves through the door and go around to a close view of the private promenade.,strolls down a hallway into a kitchen.,rushes into the door to find the ascending doing guard.,0\n4000,lsmdc1043_Vantage_Point-89283,1979,\"Inside, he removes a hold - all from a fridge and takes a pistol from it. He\",\"Inside, he removes a hold - all from a fridge and takes a pistol from it.\",He,gold,takes a scrap of paper from the rack and replaces it outside.,loads the pistol and puts an earpiece in.,aims a cart of gunpowder at a crewman and hits someone on the bed.,reaches out from unbuttoning the suit.,1\n4001,lsmdc1043_Vantage_Point-89283,1990,He taps the screen as the double steps up to the podium with his arm outstretched. Someone,He taps the screen as the double steps up to the podium with his arm outstretched.,Someone,gold,comes out of the way.,squats over someone's double.,pushes him away toward the bed.,lifts his hands and marches after her.,1\n4002,lsmdc1043_Vantage_Point-89283,1996,\"He caresses a family photograph from the inside of the locker door, then shuts it. Someone\",\"He caresses a family photograph from the inside of the locker door, then shuts it.\",Someone,gold,sees a private apartment closing in the window window.,looks down on the window directly to her.,approaches a parked ambulance.,closes the book and opens it.,2\n4003,lsmdc1043_Vantage_Point-89283,1974,Someone lowers his phone and calls an elevator. He,Someone lowers his phone and calls an elevator.,He,gold,delivers a billboard to someone and someone.,pats someone's shoulder.,turns the credit card sized envelope in his hands.,glares and runs out to the cashier.,2\n4004,lsmdc1043_Vantage_Point-89283,2026,\"As someone rounds a corner, he heads down a quiet street. Someone\",\"As someone rounds a corner, he heads down a quiet street.\",Someone,gold,\"sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road.\",sits on the clawing black leather couch.,and thousands of troops watch from the street.,returns his wallet to his shoulder.,0\n4005,lsmdc1043_Vantage_Point-89283,2025,\"Someone puts his cell phone into the front seat of the ambulance driven by people, and gets into a Spanish police car. As someone rounds a corner, he\",\"Someone puts his cell phone into the front seat of the ambulance driven by people, and gets into a Spanish police car.\",\"As someone rounds a corner, he\",gold,peers into an underwater room through obstacles.,notices a smartly dressed people.,heads down a quiet street.,\"sees someone in the room, pushing through the car and banister.\",2\n4006,lsmdc3011_BLIND_DATING-1159,9779,\"Meeting someone's sincere gaze, someone takes a shaky breath. Someone\",\"Meeting someone's sincere gaze, someone takes a shaky breath.\",Someone,gold,watches sadly as a baby older woman sits asleep tapping her hands in her lap.,\"leaps forward, going into someone's skiff.\",gently puts a hand on her shoulder and guides her to the waiting area.,walks forward.,2\n4007,lsmdc3011_BLIND_DATING-1159,9781,\"Someone's mother takes someone's hand in hers, then pulls her into. Someone\",\"Someone's mother takes someone's hand in hers, then pulls her into.\",Someone,gold,kisses the outside.,\"lie on the floor, then fight.\",rests one hand on his wife's shoulder and the other on someone's wrist.,kisses someone's hand.,2\n4008,lsmdc3011_BLIND_DATING-1159,9784,A bandage covers one side of his head. They all,A bandage covers one side of his head.,They all,gold,look up at them.,look up and hug each other.,move up to the hospital bed.,rush to his bedside.,3\n4009,lsmdc3011_BLIND_DATING-1159,9782,\"Someone rests one hand on his wife's shoulder and the other on someone's wrist. Now, someone\",Someone rests one hand on his wife's shoulder and the other on someone's wrist.,\"Now, someone\",gold,sits on her bed by an employee lounge as someone strides to her office.,\"sits on a makeshift dirt road, working in her apartment.\",works at the cabinet drying with his thumb.,sleeps in a hospital bed hooked up to monitors.,3\n4010,lsmdc3011_BLIND_DATING-1159,9777,\"As he smiles at her, she stares back tearful. Someone\",\"As he smiles at her, she stares back tearful.\",Someone,gold,kisses down at someone's side.,takes a step closer.,lowers his shy gaze.,sits in a chair alone at a nearby booth.,1\n4011,lsmdc3011_BLIND_DATING-1159,9783,\"Now, someone sleeps in a hospital bed hooked up to monitors. A bandage\",\"Now, someone sleeps in a hospital bed hooked up to monitors.\",A bandage,gold,props his knees up.,is scattered over her head.,covers one side of his head.,form anxiously on someone's broken face.,2\n4012,lsmdc3011_BLIND_DATING-1159,9778,\"Someone takes a step closer. Meeting someone's sincere gaze, someone\",Someone takes a step closer.,\"Meeting someone's sincere gaze, someone\",gold,stabs his identical brother down.,shares his face with her hair.,takes a shaky breath.,cups her hand to samantha's head.,2\n4013,anetv_aGKySEwCMnI,18157,A black Labrador retriever walks up to the camera from the shoreline. The cameraman,A black Labrador retriever walks up to the camera from the shoreline.,The cameraman,gold,stops him from giving a cameraman goodbye.,moves the trashcan as he hops a bit way.,pans back to the two woman building the sand castle and the toddler watching on.,shows a young child skateboarding in the snow and again interviews several skateboarders.,2\n4014,anetv_aGKySEwCMnI,18156,The camera man pans the camera to the shoreline while a young boy runs and plays in the shallow water. A black Labrador retriever,The camera man pans the camera to the shoreline while a young boy runs and plays in the shallow water.,A black Labrador retriever,gold,reveals a large meerkat.,moves down the slide where many people wander various tubes and ways through the water park.,shows the young child in the pool with little puppy boy in it.,walks up to the camera from the shoreline.,3\n4015,anetv_aGKySEwCMnI,18155,The toddler picks up a blue bucket and places it upside down on the sand. The camera man,The toddler picks up a blue bucket and places it upside down on the sand.,The camera man,gold,puts a hose down and dries the snow from the car.,\"flips his hair back on the the pages, then films himself continuously.\",\"slides his bag down the bucket, finds another towel, and tosses it on the surface.\",pans the camera to the shoreline while a young boy runs and plays in the shallow water.,3\n4016,anetv_aGKySEwCMnI,9208,People are sitting on the beach making a sand castle. A black dog,People are sitting on the beach making a sand castle.,A black dog,gold,is getting hit by the leaves.,is standing at the sink.,is shown walking on the beach.,is walking towards the beach.,2\n4017,anetv_aGKySEwCMnI,18154,Two ladies in bathing suits build a sand castle on the beach while a toddler stands by watching. The toddler,Two ladies in bathing suits build a sand castle on the beach while a toddler stands by watching.,The toddler,gold,picks up a blue bucket and places it upside down on the sand.,steps on and spins her downward wildly.,fall from a cup of the saucer.,helps her carry the paddle as they head across the river lawn.,0\n4018,anetv_aGKySEwCMnI,9209,A black dog is shown walking on the beach. A person,A black dog is shown walking on the beach.,A person,gold,jumps into the water with a rope rope.,begins combing the dogs hair with a pink comb.,is running into the waves of the water.,is asleep next to him along the couch.,2\n4019,anetv_ymmBQHiNK24,7343,A man in a black shirt is playing the bag pipes. He,A man in a black shirt is playing the bag pipes.,He,gold,coffee is playing the piano.,man is sitting in the kitchen and a man is doing flips with a discus.,stops playing and sets the bag pipes down.,is sitting behind him.,2\n4020,anetv_ymmBQHiNK24,7342,Words are shown on the screen. A man in a black shirt,Words are shown on the screen.,A man in a black shirt,gold,appears and pours the weight.,is standing next to five men on a roof table.,is playing the bag pipes.,plays flute behind a shop.,2\n4021,anetv_PDaGlIxn6Pk,5823,A crowd watches the game intently. The players,A crowd watches the game intently.,The players,gold,\"run back and forth across the field, hitting the ball into goals.\",line up on the stilts going between hilly.,kick their guns together.,rake and confer from two cups.,0\n4022,anetv_PDaGlIxn6Pk,5822,A couple of teams are playing lacrosse on an open field. A crowd,A couple of teams are playing lacrosse on an open field.,A crowd,gold,of people are standing around the yard watching a game.,watches the game intently.,is hit at the goal.,of players are gathered and talking.,1\n4023,anetv_UJfwaeMrZ7A,17149,A woman is on a concrete court outside. She,A woman is on a concrete court outside.,She,gold,\"high kicks the red ball, walks to the tree and throws some lawn chairs.\",starts to spin and kick dances with batons.,is jumping across a chalk drawn hopscotch game.,plays a drum set.,2\n4024,anetv_UJfwaeMrZ7A,17150,She is jumping across a chalk drawn hopscotch game. She,She is jumping across a chalk drawn hopscotch game.,She,gold,is playing her accordian for.,goes back and forth over the puzzle twice.,crosses a step on the monkey.,pauses and stares as she goes and has her right to do it herself.,1\n4025,lsmdc1027_Les_Miserables-6478,2267,On the journey he leans back in the carriage. Someone and his wife,On the journey he leans back in the carriage.,Someone and his wife,gold,climb onto the side carriage and wave their arms up.,hitch a ride on the back of a carriage which arrives at the mansion.,follow in a large amphitheater.,\"leave someone, at the half - emaciated center.\",1\n4026,lsmdc1027_Les_Miserables-6478,2268,\"They sneak round to the far side of the carriage, climb inside, and exit through the opposite door as if they'd arrived in the carriage. Dressed finely, they\",\"They sneak round to the far side of the carriage, climb inside, and exit through the opposite door as if they'd arrived in the carriage.\",\"Dressed finely, they\",gold,\"mingle with the guests, stealing as they go.\",\"cross another door and sit on some soup at the same time, some working on the house.\",\"stroll across a bustling woods spiral, out onto a dark street which opens next to the red - haired gangster.\",step into the high part of the dance platform and dance watches they continue to dance.,0\n4027,lsmdc1027_Les_Miserables-6478,2266,\"Someone bows, and someone, his arm no longer in a sling but still walking with a limp, takes his leave. Someone\",\"Someone bows, and someone, his arm no longer in a sling but still walking with a limp, takes his leave.\",Someone,gold,\"raises his fingers, looks down at his full height and looks inches from his stick.\",carries a large trunk out to a waiting carriage.,walks over in front of someone and whispers something to someone who was holding his backpack as someone hangs up and eyes his phone.,and someone march the corridor.,1\n4028,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6728,\"He takes someone's arm. On their way upstairs, he\",He takes someone's arm.,\"On their way upstairs, he\",gold,glances back at someone who sneers and points.,puts the coffee cup down for a flower.,heads inside and checks the peephole.,takes out his handful of happier cash.,0\n4029,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6730,\"Now, in a dorm, the lovely Asian girl wears only a towel. Someone\",\"Now, in a dorm, the lovely Asian girl wears only a towel.\",Someone,gold,brushes her bangs out of a glare.,turns around and faces her guest.,tugs on a piece of fabric.,stomps someone's foot.,3\n4030,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6729,\"On their way upstairs, he glances back at someone who sneers and points. Now, in a dorm, the lovely Asian girl\",\"On their way upstairs, he glances back at someone who sneers and points.\",\"Now, in a dorm, the lovely Asian girl\",gold,stops looking at someone's hand.,sleeps alone with her groups.,sits in a chair on a cobble muddy field.,wears only a towel.,3\n4031,anetv_YZQ_qh9wC4w,9042,A girl is stretching in front of a swimming pool. She,A girl is stretching in front of a swimming pool.,She,gold,continues to shoot up and swims.,steps on a board and dives into the pool.,is swimming in an orange swimming pool holding something in her hand.,is holding her paddle by a pinata hanging above her head.,1\n4032,anetv_YZQ_qh9wC4w,9043,She steps on a board and dives into the pool. She,She steps on a board and dives into the pool.,She,gold,starts swimming laps in the pool.,bursts onto the landing and runs on to the side.,continues in the water and hits the ground.,cheers on his blade and swims several times.,0\n4033,anetv_YZQ_qh9wC4w,11631,The girl stretches with a mans help and then dives into a pool. The girl,The girl stretches with a mans help and then dives into a pool.,The girl,gold,swims back and fourth in the pool and ends with her coach instructing her.,then takes the boy underwater and shows off a bowling ball.,\"hops out of the water, misses and crashes down in the sand pit.\",stands on the edge of the pool and starts swimming.,0\n4034,anetv_5T7vTuJmYeQ,15381,A child swings on monkey bars. The child,A child swings on monkey bars.,The child,gold,kicks a birdie down.,watches behind them as the kids sit on the swing and hang up at the end.,jumps on the monkey bars and jumps again.,dismounts from the monkey bars.,3\n4035,anetv_5T7vTuJmYeQ,15382,The child dismounts from the monkey bars. The child,The child dismounts from the monkey bars.,The child,gold,gets out of the swing.,slides down the chair as well.,walks towards the camera.,dismounts from the bars.,2\n4036,anetv_YZacstLO0XA,11975,He pours the raw egg batter into the pan. He,He pours the raw egg batter into the pan.,He,gold,swirls the stir under the adhesive.,lifts the pan and moves it around to shuffle the eggs.,stirs the dough into a kite.,drops the tiny pan onto a plate.,1\n4037,anetv_YZacstLO0XA,11972,A man is demonstrating how to make a three egg omelette in his kitchen. He,A man is demonstrating how to make a three egg omelette in his kitchen.,He,gold,\"selects comfortable objects, front, and cooking cake.\",\"dignified - only, grazing bags, plus stokes.\",starts by cracking the eggs in a clear glass bowl.,\"of a white shoveling screen appears, a man is laid out from backwards.\",2\n4038,anetv_YZacstLO0XA,11976,He lifts the pan and moves it around to shuffle the eggs. He then,He lifts the pan and moves it around to shuffle the eggs.,He then,gold,tops is off with some grated cheese.,bakes chocolate that he waxes and ake out once he is done.,continues mixing the ingredients into a bowl and breaks down the sandwich.,picks up an ice tin and cooks it.,0\n4039,anetv_YZacstLO0XA,11977,He then tops is off with some grated cheese. He,He then tops is off with some grated cheese.,He,gold,\"is unscrewing the shingles, tying them and puts them upside down with some cement.\",\"refuses anyone demonstrates what he wants it to do when they have done, other things pooling at the bottom.\",takes a fork and slides the omelette into a white plate.,puts a pack into a paper bowl.,2\n4040,anetv_YZacstLO0XA,11978,He takes a fork and slides the omelette into a white plate. He then,He takes a fork and slides the omelette into a white plate.,He then,gold,scoops ice to the end of the sandwich.,jumps the mixture off a plate while the camera focuses on a plastic plate.,dumps the omelette onto the plate and cuts it slices.,garnishes it with some greens on top for a healthy touch.,3\n4041,anetv_YZacstLO0XA,11974,He then beats the eggs well and adds some butter into the saucepan. He,He then beats the eggs well and adds some butter into the saucepan.,He,gold,turns around and starts kneeling.,continues it crackle while talking to the camera and stirring noodles into a bowl.,\"wipes it off with a stick of a substance, then dries the top off.\",pours the raw egg batter into the pan.,3\n4042,anetv_YZacstLO0XA,11973,He starts by cracking the eggs in a clear glass bowl. He then,He starts by cracking the eggs in a clear glass bowl.,He then,gold,beats the eggs well and adds some butter into the saucepan.,moves the knife and hands into another bowl.,puts a slice of ham on the bowl and puts it into a pitcher.,sprinkled over the chopped egg and explains some more.,0\n4043,lsmdc1055_Marley_and_me-96435,14137,\"Someone rummages for his phone. Back home, someone\",Someone rummages for his phone.,\"Back home, someone\",gold,gets into the driver's seat.,runs through his distraught bed.,lets marley off the leash.,ties his car keys.,2\n4044,lsmdc1055_Marley_and_me-96435,14138,\"Back home, someone lets Marley off the leash. He\",\"Back home, someone lets Marley off the leash.\",He,gold,continues hanging.,shoots a golf cart behind a foreign wildlife park.,sits on the bed.,hurries to the front door and notices him on the floor.,2\n4045,anetv_fYQTAuBS7zw,13243,A guy shows you how to hold a small sharp ending stick in your hand and between your fingers to use as a weapon. The man,A guy shows you how to hold a small sharp ending stick in your hand and between your fingers to use as a weapon.,The man,gold,raises a bow behind his head.,leans at the head.,spins across the circle and holds a shot put and begins demonstrating how to properly take.,shows you how to throw the sharp ended stick into the wall and make it stick from different distances.,3\n4046,lsmdc3037_IRON_MAN2-16872,7350,\"Later, someone and two men arrive at the lab. Someone\",\"Later, someone and two men arrive at the lab.\",Someone,gold,wipes tears off her face.,taps someone's head.,\"presses buttons on a panel, unlocking a door.\",steps in beside the african soldier.,2\n4047,lsmdc3037_IRON_MAN2-16872,7349,\"Someone activates the reactor, which electrifies a long coil. Later, someone and two men\",\"Someone activates the reactor, which electrifies a long coil.\",\"Later, someone and two men\",gold,take flight and enter a tall bar.,explains the process of moving their hands.,stand in a cluttered building.,arrive at the lab.,3\n4048,lsmdc3037_IRON_MAN2-16872,7352,He and the men enter a room where someone lounges on a cot. Someone,He and the men enter a room where someone lounges on a cot.,Someone,gold,removes some top off a hanger and raises the handle.,strokes the cockatoo which is perched on his knee.,\"smiles down his telescope, and exhales the toad - up to his crotch.\",\"holds up an arm, then wears a clean smile.\",1\n4049,lsmdc3037_IRON_MAN2-16872,7351,\"Someone presses buttons on a panel, unlocking a door. He and the men\",\"Someone presses buttons on a panel, unlocking a door.\",He and the men,gold,walk off as someone leaves his door.,climb into a cavernous white hotel room.,enter a room where someone lounges on a cot.,stare at the performance; their smiles fades.,2\n4050,lsmdc3037_IRON_MAN2-16872,7353,One man grabs the bird. The other man,One man grabs the bird.,The other man,gold,pauses and a fire appears.,shows many ingredients in it.,picks a yellow conga.,grabs someone's pillows.,3\n4051,lsmdc0005_Chinatown-48300,15790,The Clerk turns sharply around. Someone,The Clerk turns sharply around.,Someone,gold,looks a little surprised.,looks up in wonder.,turns to someone who starts to run around him.,follows someone in to the exit.,0\n4052,lsmdc0005_Chinatown-48300,15786,\"Someone regards his back a moment, then goes to the stacks. Someone\",\"Someone regards his back a moment, then goes to the stacks.\",Someone,gold,appears and closes the door.,\"sees the clerk turn to another, say something.\",opens a bar for someone.,\"sits slumped in a chair, his gaze fixed ahead.\",1\n4053,lsmdc0005_Chinatown-48300,15788,\"He hauls down the northwest valley volume, opens it. It's huge and there\",\"He hauls down the northwest valley volume, opens it.\",It's huge and there,gold,is a middle - aged man below on a school background.,are many other things drawn.,'s a lot to go through.,is a young woman blowing snow from a bush.,2\n4054,lsmdc0005_Chinatown-48300,15789,The print itself makes him squint. These descriptions,The print itself makes him squint.,These descriptions,gold,hang on his web.,\"are infinitely stout, blackened, viewed from their undershirt.\",\"mutters, and every hand fills him for the kill.\",are old and faded.,3\n4055,lsmdc0005_Chinatown-48300,15785,Cross looks hatefully at someone. Someone,Cross looks hatefully at someone.,Someone,gold,puts the hand - doh down and takes his whiskey.,\", a child, walks towards someone.\",approaches one of the clerks at a desk.,\"turns, she faces someone, who stares calmly at someone.\",2\n4056,lsmdc0005_Chinatown-48300,15787,\"Someone sees the Clerk turn to another, say something. The second clerk\",\"Someone sees the Clerk turn to another, say something.\",The second clerk,gold,signals with his rate book.,gets on the phone.,removes his jacket and tries to check out.,is back staring at him.,1\n4057,anetv_K98WGaMR4eM,2658,A man in a striped shirt is refereeing for their fight. A woman,A man in a striped shirt is refereeing for their fight.,A woman,gold,picks up another woman and drops her on the mat several times.,leaps around him and gets ready to play.,sits next to him and puts the yarn on.,next to him is swinging at the pinata.,0\n4058,anetv_K98WGaMR4eM,13713,A man and a woman are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt. man and woman are doing wrestling movements in a ring in a dark room and a referee,A man and a woman are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt.,man and woman are doing wrestling movements in a ring in a dark room and a referee,gold,wearing a blue shirt grabs hold of the cheering bull.,is waching and screaming at them.,performs other exercises on a tight rope.,is wearing the padded shirt and waving his arms in an air.,1\n4059,anetv_K98WGaMR4eM,13715,A man anda woman are ina a ring in a wrestling competition fighting while people is in stands screaming. two women,A man anda woman are ina a ring in a wrestling competition fighting while people is in stands screaming.,two women,gold,stand on the court holding rifles and scratches on their sides.,are in a blue ring wrestling in a small white room.,are seated in a kitchen.,come flying out of the ring and give the balls over.,1\n4060,anetv_K98WGaMR4eM,13712,A man and a woman are practicing wrest movements. a man and a woman,A man and a woman are practicing wrest movements.,a man and a woman,gold,are doing the same.,are bouncing on a heated strip of rusty paper in front of them.,are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt.,are working on a snow - covered sidewalk.,2\n4061,anetv_K98WGaMR4eM,13714,A man and a woman wearing suits with capes are doing wrestling movemetns on a ring. a man anda woman,A man and a woman wearing suits with capes are doing wrestling movemetns on a ring.,a man anda woman,gold,is talking the back of the field.,takes a drinks as they throw arrows into the net.,\"helps forward, and gets the bag under her knees.\",are ina a ring in a wrestling competition fighting while people is in stands screaming.,3\n4062,anetv_K98WGaMR4eM,13716,Two women are in a blue ring wrestling in a small white room. a man and a woman,Two women are in a blue ring wrestling in a small white room.,a man and a woman,gold,are in a ring in the ring ring by a ring on the floor.,is standing in a room as the people batons in the air and interviews people in the audience talking.,are sitting on a tennis court playing squash.,are wrestling in a ring in a competition.,3\n4063,anetv_GxOjqC_IDX4,11030,\"He is moving his legs, stretches back and takes off. He\",\"He is moving his legs, stretches back and takes off.\",He,gold,reaches for his walkie - talkie.,continues to ride down along the edge of a slope as well as around.,runs fast fast down the strip and quickly leaps into the sand.,stretches his legs out and jumps onto a mat.,2\n4064,anetv_GxOjqC_IDX4,16099,Athletes are shown on a track. They,Athletes are shown on a track.,They,gold,spin around a net.,do move up on line.,are jumps on the wall.,stretch and get ready.,3\n4065,anetv_GxOjqC_IDX4,16100,They stretch and get ready. One,They stretch and get ready.,One,gold,has a large balloon.,runs and takes a leap into the sand.,flip several times as everyone takes.,celebrates each time for a few seconds.,1\n4066,anetv_GxOjqC_IDX4,11031,He runs fast fast down the strip and quickly leaps into the sand. Then he,He runs fast fast down the strip and quickly leaps into the sand.,Then he,gold,\"runs all over the room and runs, almost rolling one foot after another.\",runs off the road and getting excited.,follows current movements before leaving only the other corporate breathless.,goes back to start over and does it a few more times.,3\n4067,anetv_GxOjqC_IDX4,11029,\"Two men are standing by on a running strip, one of them is preparing to start running. He\",\"Two men are standing by on a running strip, one of them is preparing to start running.\",He,gold,is playing in the gym as he is done and wipes his legs back and forth while he is pointing it.,\"jumps across the track, goes down with a running,.\",\"is moving his legs, stretches back and takes off.\",walks about and shoots the ball.,2\n4068,anetv_GxOjqC_IDX4,16101,One runs and takes a leap into the sand. The distance,One runs and takes a leap into the sand.,The distance,gold,is forcefully jumping over the ramp.,returns when the person finally jump.,is shown by another smiling man watching the competition.,is measured to it.,3\n4069,anetv_JowsnupmNd0,1340,She swings her leg up. She,She swings her leg up.,She,gold,drops down to the ground.,twirls around on the ground.,kicks the vampire at the like pinata.,lifts herself up on her elbows.,0\n4070,anetv_JowsnupmNd0,1339,A little girl is crossing the monkey bars. She,A little girl is crossing the monkey bars.,She,gold,cuts to the monkey bars and backflips.,does push ups and returns to the hoop.,lifts the leg high over her head.,swings her leg up.,3\n4071,anetv_TJFl99tLNWk,6915,A clear coating is coating is applied onto the nails. The tape is removed and the edges,A clear coating is coating is applied onto the nails.,The tape is removed and the edges,gold,come back onto the nails.,are cleaned up with nail polish remover solution.,are secured towards her.,are rolled in half.,1\n4072,anetv_TJFl99tLNWk,6914,Different shades of nail polish are applied to a foam pad then dabbed on the finger nails. A clear coating,Different shades of nail polish are applied to a foam pad then dabbed on the finger nails.,A clear coating,gold,is set against a smaller opened fan holding a computer cutter.,hits a nail polish on the fingernail and ends by removing them out.,is coating is applied onto the nails.,is poured with instructions 8 lady showing the polished brown hair.,2\n4073,anetv_TJFl99tLNWk,6913,Different shades of nail polish bottles are seen. Pieces of taper,Different shades of nail polish bottles are seen.,Pieces of taper,gold,cake are rough with a lot of stuff.,are wrapped around the tips of fingers around the nails.,are stacked neatly afterwards.,are shown as well as light in the mirror.,1\n4074,anetv_q2JRY6-riYA,3691,People are sitting in blue bumper cars. They,People are sitting in blue bumper cars.,They,gold,drive around and bump into each other.,go around and fall off the bikes again.,are standing behind a marching man playing the game while a paintball is outside behind them.,are playing a game of hop scotch.,0\n4075,anetv_q2JRY6-riYA,3692,They drive around and bump into each other. A little boy in a hat,They drive around and bump into each other.,A little boy in a hat,gold,waves at the camera.,heads out of the bedroom.,walks up on the house.,talks with an imaginary man.,0\n4076,lsmdc0006_Clerks-48790,999,\"And then a little girl comes into view, smiling and holding money. She\",\"And then a little girl comes into view, smiling and holding money.\",She,gold,can't be any more than five.,\"sits on the floor, then does her back.\",plays with the delighted child.,arrives at the house to get out from a window.,0\n4077,anetv_2-1MNxfX5Bc,5849,The person fall out and ride down the river while others run on the side. More people,The person fall out and ride down the river while others run on the side.,More people,gold,give their thumbs with the outlines from a group and others sit with one another.,come to the end end end and go back to the front.,continue to ride down the river.,are seen speaking to the camera and leads into several people climbing the waterfall.,2\n4078,anetv_2-1MNxfX5Bc,2010,\"One person gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope. Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people\",One person gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope.,\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people\",gold,come through the water as calmly as possible to water down the water as well as a person walking to their boat.,run out to see about 100 feet behind it.,are eventually pushed by the water and skate around them he landed on the sides and the man in wakeboarding robes are shown coming.,are also going down the rough waters and also struggling to keep their heads afloat.,3\n4079,anetv_2-1MNxfX5Bc,2009,The people eventually emerge and they all begin to struggle to get out of the water. One person,The people eventually emerge and they all begin to struggle to get out of the water.,One person,gold,passes between the adult and the other on the boat while the oars climb out and choppy it.,has then thrown the third a chases while the camera view pans around the diver moves in making the same skis well.,enters and the people begin to water surfing.,gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope.,3\n4080,anetv_2-1MNxfX5Bc,2008,\"The raft gets into a bit of trouble, flips over and everyone flips into the very rough waters. The people eventually emerge and they all\",\"The raft gets into a bit of trouble, flips over and everyone flips into the very rough waters.\",The people eventually emerge and they all,gold,begin to struggle to get out of the water.,get in the water with their sticks to add sand.,make their way to a river and land on the water.,sit in the raft with the oars attached by their thread.,0\n4081,anetv_2-1MNxfX5Bc,2007,\"A group of 8 people are wearing helmets and life vests as they are riding a raft in very rough white waters. The raft gets into a bit of trouble, flips over and everyone\",A group of 8 people are wearing helmets and life vests as they are riding a raft in very rough white waters.,\"The raft gets into a bit of trouble, flips over and everyone\",gold,surf and the boat howls to water as a row of penguins and kids mounted on the back.,starts to walk away.,flips into the very rough waters.,jumps off the cliffs and jogs behind it.,2\n4082,anetv_2-1MNxfX5Bc,2011,\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people are also going down the rough waters and also struggling to keep their heads afloat. More people are struggling in the water, one is sitting on the upside down raft, and three others\",\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people are also going down the rough waters and also struggling to keep their heads afloat.\",\"More people are struggling in the water, one is sitting on the upside down raft, and three others\",gold,broken the raft from the board.,are suddenly pushed down the slope.,sit on the water.,are in the rough waters and are also struggling to keep their heads afloat and not bang into rocks.,3\n4083,anetv_WhBnR7yIvJc,8882,Little blonde kid is in a swinging laughing and watching the camera. little kid,Little blonde kid is in a swinging laughing and watching the camera.,little kid,gold,is swinging in a playground having fun.,is doing arm ups next to the wall.,is swinging as an old man went around the arena with the pinata and a kid with the stick do swinging.,is sitting in the dressing room talking.,0\n4084,anetv_WhBnR7yIvJc,10320,A little girl is swinging in a swing. She,A little girl is swinging in a swing.,She,gold,dismounts with all the weights on.,holds the swing and climbs kids back inside.,slides into the field with a flip.,tilts backwards and looks behind her.,3\n4085,anetv_WhBnR7yIvJc,10321,She tilts backwards and looks behind her. She,She tilts backwards and looks behind her.,She,gold,looks again at last time.,smiles and waves at the camera.,touches the wind gently.,is efficient harmlessly in profile.,1\n4086,anetv_WhBnR7yIvJc,8883,Little kid is swinging in a playground having fun. little blonde kid,Little kid is swinging in a playground having fun.,little blonde kid,gold,is laying on the playground outside the gym.,\"is watching them on the tree, and sitting on the boat swing.\",is having fun swinging herself in a playground.,is doing abs in the floor.,2\n4087,anetv_ofrX4WyAM-0,15888,She adds pasta to the water. We,She adds pasta to the water.,We,gold,see the pasta box up close.,fish and fake strawberries.,\", the girl washes some baking bowls with a salad utensil.\",spoon is added to a pot on the stove.,0\n4088,anetv_ofrX4WyAM-0,15885,We see spaghetti in a box. We,We see spaghetti in a box.,We,gold,see ingredients on a tables.,see salt in a cup.,see the lady cooking and cooking.,see a person raking dry snow in the room.,1\n4089,anetv_ofrX4WyAM-0,15887,She adds salt to the pot. She,She adds salt to the pot.,She,gold,spoons garlic into noodles with more paste.,adds it and olive oil onto a plate.,adds pasta to the water.,sprinkles the pasta in a saucepan.,2\n4090,anetv_ofrX4WyAM-0,15891,She takes the pasta out of the pot. She,She takes the pasta out of the pot.,She,gold,talks and waves bye to the camera.,continues the cooking with chopped sauce and cuts them away.,mixes all the ingredients into the pot.,moves a plastic bowl and mixes it with red stencil.,0\n4091,anetv_ofrX4WyAM-0,15884,We then see a pot. We,We then see a pot.,We,gold,see the cook in several pan and we see the veterinarian boat on the next set.,see tooth foam on a blue screen.,see spaghetti in a box.,see a pan and make out on the stove.,2\n4092,anetv_ofrX4WyAM-0,15890,We see the lady set the timer. She,We see the lady set the timer.,She,gold,fixes darts on bottle of her.,turns the saxophone and jumps in the water and continues talking.,takes the pasta out of the pot.,\"do a rubik's cube, then the black mans hands for a spoon.\",2\n4093,anetv_ofrX4WyAM-0,15889,We see the pasta box up close. We,We see the pasta box up close.,We,gold,see the man driving the car in a chic green yard.,see the lady set the timer.,are in the street for the joke.,see another worker chopping wood and leads from people chopping wood.,1\n4094,anetv_ofrX4WyAM-0,15886,The water is boiling in the bot. She,The water is boiling in the bot.,She,gold,fills up her glasses and spray them along the hole.,adds salt to the pot.,sets it down and spits out it.,makes another drink and puts it in the glass.,1\n4095,lsmdc3080_THIS_MEANS_WAR-37137,17018,She heads off with another movie. Someone,She heads off with another movie.,Someone,gold,watches her go then shakes his head and leaves as well.,leads her into a corn room full of orange soda.,does her ballet decor.,peeks through files with a chopper.,0\n4096,anetv_ER0UPx6-VcM,6074,\"They are using racquets, balls, special shoes and protective glasses. They\",\"They are using racquets, balls, special shoes and protective glasses.\",They,gold,continue to use the ornaments and launch the fire.,get out of their car and look around.,show how to stand and hit the ball.,are talking to the camera.,2\n4097,anetv_ER0UPx6-VcM,6073,A man and woman are playing inside a racquetball court. They,A man and woman are playing inside a racquetball court.,They,gold,start playing a game of volleyball.,\"are using racquets, balls, special shoes and protective glasses.\",\"are whipping to the referee on the court, trying to win.\",are engaged in a game of table tennis.,1\n4098,anetv_N3UOyPU2t0E,7805,The glasses are laid out on a table and several shots are shown of people playing beer pong. More shots,The glasses are laid out on a table and several shots are shown of people playing beer pong.,More shots,gold,are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another.,are shown of the people holding hands with the children following his side and trying to play their conversation.,are shown of people playing hookah pong while a game leans around and players watching on the side.,are shown of men walking around as well as others are interviewed.,0\n4099,anetv_N3UOyPU2t0E,7806,More shots are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another. In the end medals are handed out and people,More shots are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another.,In the end medals are handed out and people,gold,begin to play the game of beer pong.,wear them while celebrating in different spots.,are shown speaking to the camera and smiling to the camera while speaking and scoring.,are shown getting ready in and out of the ground.,1\n4100,anetv_N3UOyPU2t0E,7804,Several pairs of shoes are shown as well as a large group of people socializing and pouring alcohol into glasses. The glasses are laid out on a table and several shots,Several pairs of shoes are shown as well as a large group of people socializing and pouring alcohol into glasses.,The glasses are laid out on a table and several shots,gold,are seen of people mixing the drinks onto the table.,of the men play beer and drink.,are shown of people playing beer pong.,of mixing are shown playing beer pong.,2\n4101,anetv_YUFPWt0VQ1Y,2425,They are dressed in maroon and yellow colored uniforms and white hats. There,They are dressed in maroon and yellow colored uniforms and white hats.,There,gold,the street where people run the marathon.,are several large set of costumes.,is photos for besides women who are mowing the grass.,are some students playing the drums and some students playing the trumpet.,3\n4102,anetv_YUFPWt0VQ1Y,2426,There are some students playing the drums and some students playing the trumpet. They,There are some students playing the drums and some students playing the trumpet.,They,gold,get the hell out of the line.,seem to have this conversation for a time.,continue playing and there s teams watching during the game.,continue playing the band as they march along the streets.,3\n4103,anetv_YUFPWt0VQ1Y,2424,There is a group of marching band students playing the trumpets. They,There is a group of marching band students playing the trumpets.,They,gold,are playing their flute.,are playing instruments together.,are playing musical instruments using other instruments while playing.,are dressed in maroon and yellow colored uniforms and white hats.,3\n4104,anetv_Cm8hWFFA16I,8116,\"A man walks in the street and approaches a man that polish shoes. First, the person\",A man walks in the street and approaches a man that polish shoes.,\"First, the person\",gold,paints a wooden surface with a cloth.,hops and begins throwing a bowling ball at a third.,brushes the tennis shoe and cleans it with a cloth.,focuses on the machine as she holds a pump in front of her.,2\n4105,anetv_Cm8hWFFA16I,4160,A man in a white shirt is getting his shoe cleaned. A person in a striped shirt,A man in a white shirt is getting his shoe cleaned.,A person in a striped shirt,gold,is standing watching the tv.,is on talking to the camera.,is standing next to a new boxing drill.,walks up next to them.,3\n4106,anetv_Cm8hWFFA16I,8118,\"Then, the person applies white polish and spray liquid. After, the person shows boxes to the man while talking, the man\",\"Then, the person applies white polish and spray liquid.\",\"After, the person shows boxes to the man while talking, the man\",gold,is removing things from the mask.,return the boxes to the person.,displays a pink razor to polish and scrub the washing red shoes.,puts hairs to the floor at the end.,1\n4107,anetv_Cm8hWFFA16I,4161,A person in a striped shirt walks up next to them. The man,A person in a striped shirt walks up next to them.,The man,gold,is blocked by a ball of water.,wipes out lotions on a horse as he brushes his hair in a line.,stands up and gets handed two boxes.,is doing a high angle leading to the blindfold to his left.,2\n4108,anetv_Cm8hWFFA16I,8117,\"First, the person brushes the tennis shoe and cleans it with a cloth. Then, the person\",\"First, the person brushes the tennis shoe and cleans it with a cloth.\",\"Then, the person\",gold,applies white polish and spray liquid.,\"put the paint, then wipe the brush with a towel and put it in the other drawers.\",imitates the shoe with a cleaner.,block the shoe with pink paint and shows a shoe.,0\n4109,anetv_hRMSh7vUmGY,1458,\"He does this multiple time for repetition, this is a workout routine. He then\",\"He does this multiple time for repetition, this is a workout routine.\",He then,gold,begins to twist the guitar instead.,begins to begin exercising on the beam while on shadowfax in his arms as he does.,walks away taking a break for a little bit and walks by people sitting and chatting.,\"demonstrates about him, doing him every blowtorch.\",2\n4110,anetv_hRMSh7vUmGY,1459,He then walks away taking a break for a little bit and walks by people sitting and chatting. Once he is done with his break he,He then walks away taking a break for a little bit and walks by people sitting and chatting.,Once he is done with his break he,gold,goes up a coffee flourish and takes it in the right stool.,lifts himself and goes to see what the priest is doing.,rakes up the weights and covers them up.,continues back to his routine.,3\n4111,anetv_hRMSh7vUmGY,1457,\"A man is lifting very heavy weight above his head and dropping it. He does this multiple time for repetition, this\",A man is lifting very heavy weight above his head and dropping it.,\"He does this multiple time for repetition, this\",gold,time hundreds of time.,is a workout routine.,catches his facial performance again.,happens by falling several times before passing it out.,1\n4112,anetv_jzBR9ihZBbI,4746,\"They hit the ball back and forth against the wall. When they are done, he\",They hit the ball back and forth against the wall.,\"When they are done, he\",gold,takes turns running around and digging and bumps his legs.,puts the ball down in their basement pit and gets to the end.,\"takes the puck again, smiling pleased.\",walks out and discusses it some more.,3\n4113,anetv_jzBR9ihZBbI,4745,\"He then goes into a room, and plays a game of racquetball with a man. They\",\"He then goes into a room, and plays a game of racquetball with a man.\",They,gold,try again to pull different balls together.,hit the ball back and forth against the wall.,see what she made and continues doing with him.,laces their hands together and then to the other side.,1\n4114,anetv_jzBR9ihZBbI,4744,She demonstrates the technique with his racquet. He then,She demonstrates the technique with his racquet.,He then,gold,proceeds all over the table.,begins ironing the lapels with a black tool.,\"goes into a room, and plays a game of racquetball with a man.\",brushes too heavy and sticks his head into the goal.,2\n4115,anetv_jzBR9ihZBbI,4743,A man is talking in front of a couple of graphs. She,A man is talking in front of a couple of graphs.,She,gold,helps the child up on the rod.,is pulling down a rope attached to the dispenser.,is using boxing gloves.,demonstrates the technique with his racquet.,3\n4116,lsmdc0009_Forrest_Gump-50920,9282,Someone runs along a highway. A lake,Someone runs along a highway.,A lake,gold,looms out from cracks on the boards.,bounces out to the side of a cliff.,shows different access to the bank below.,reflects the mountains and the sky.,3\n4117,lsmdc0009_Forrest_Gump-50920,9287,Someone stands under the old oak tree where someone has been buried. Someone,Someone stands under the old oak tree where someone has been buried.,Someone,gold,folds itself against the tree.,tries to hold back his tears.,lies near a desk facing someone.,\", followed by someone, is on her grass at the serene sun.\",1\n4118,lsmdc0009_Forrest_Gump-50920,9288,\"Someone's grave marker reads: someone July 16, 1945 - - March 22, 1982 Beloved Mother, Wife and Friend. Someone\",\"Someone's grave marker reads: someone July 16, 1945 - - March 22, 1982 Beloved Mother, Wife and Friend.\",Someone,gold,reads a book to someone sitting next to him.,congregation terraces in a camp where the pummel field's beach lights are placed.,wedges a white box of chocolate towards his portable medicine.,wears a sheet of scissors as someone matches the china plate.,0\n4119,lsmdc0009_Forrest_Gump-50920,9291,Someone tries to teach someone how to play ping - pong. Someone,Someone tries to teach someone how to play ping - pong.,Someone,gold,puts his hands in his mouth.,offers another finger and leads her over to the pool.,\"serves the ball, causing someone dive and miss it.\",sets a ball down in a closet and sinks to a table.,2\n4120,lsmdc0009_Forrest_Gump-50920,9286,Someone reaches over and takes someone's hand. Someone,Someone reaches over and takes someone's hand.,Someone,gold,\"'s eyes start shivering, then he turns to face some others.\",smiles boyishly around someone's eyes as he watches her dance.,stands under the old oak tree where someone has been buried.,drops and soap on the open nightstand.,2\n4121,lsmdc0009_Forrest_Gump-50920,9284,Someone runs along a desert highway. The morning light,Someone runs along a desert highway.,The morning light,gold,\"crosses the road and lights up, its lights reflected around their vehicle.\",\"disappears through the dense ash and someone takes out his aunt, wearing a flashback of a dress - rope skeleton.\",lies on in the street as someone calmly climbs from the car seat in the passenger seat.,casts an orange glow over the desert.,3\n4122,lsmdc0009_Forrest_Gump-50920,9293,People sit on a log by the river and fish. Someone,People sit on a log by the river and fish.,Someone,gold,\"watches stock motionless, struggling to push his hands at the life belt.\",looks down at the grave marker.,struggle to cut the back of each pregnant person.,stands with his arms tucked in his lap.,1\n4123,lsmdc0009_Forrest_Gump-50920,9281,Someone stands on his boat and looks at a deep orange and red sunset. Someone,Someone stands on his boat and looks at a deep orange and red sunset.,Someone,gold,runs along a highway.,walks near a tree on an overcast day.,swims through the swirling waters of a square in the water.,sees the rearview mirror.,0\n4124,lsmdc0009_Forrest_Gump-50920,9285,The morning light casts an orange glow over the desert. Someone,The morning light casts an orange glow over the desert.,Someone,gold,switches on a light affirming a ski mountain.,frowns and steers his breath through the darkness air.,gently carves a figurine.,looks out the window.,3\n4125,lsmdc0009_Forrest_Gump-50920,9280,The stars emerge from behind the clouds. Someone,The stars emerge from behind the clouds.,Someone,gold,stands on his boat and looks at a deep orange and red sunset.,walks back across the room with nothing of his own.,\"shoots the man's shoulder sideways, but neither do anything for a few seconds.\",\"backs away from the windows of the clip, as lightning billows over the sky.\",0\n4126,lsmdc0009_Forrest_Gump-50920,9289,Someone reads a book to someone sitting next to him. Someone,Someone reads a book to someone sitting next to him.,Someone,gold,puts things in a printout.,is playing a violin in the mirror.,looks down as he sobs.,hands a self - approving shrug.,2\n4127,lsmdc0009_Forrest_Gump-50920,9283,A lake reflects the mountains and the sky. Someone,A lake reflects the mountains and the sky.,Someone,gold,\"sleeps on someone's high side, his head buried in water.\",remains by the door.,runs along a desert highway.,looks in confusion at the crash site in the blue sky.,2\n4128,anetv_aSPPD0fDI3g,2391,She puts lipstick on her lips. She,She puts lipstick on her lips.,She,gold,locks them in her mouth then walks off.,sips a final drink.,moves the lid a little.,puts a backpack on and walks out the door.,3\n4129,anetv_aSPPD0fDI3g,2387,Make up is shown on a table. A woman,Make up is shown on a table.,A woman,gold,has a magazine attached to their hand which many objects is sitting on a dead body.,comes down next to the table with other ingredients and razors them precisely.,sits on her bed and applies makeup to her face.,demonstrates how to tie a piece of paper and put it on the top of a wooden box.,2\n4130,anetv_aSPPD0fDI3g,2388,A woman sits on her bed and applies makeup to her face. She,A woman sits on her bed and applies makeup to her face.,She,gold,uses a large brush to apply powder to her face.,\"lifts her mouth to his leg, then gazes to the bedroom doorway.\",man takes out paint to the woman's face as he proceeds to apply water onto her face.,\"grabs a razor, then brushes her face from her legs.\",0\n4131,anetv_aSPPD0fDI3g,2389,She uses a large brush to apply powder to her face. She,She uses a large brush to apply powder to her face.,She,gold,puts mascara on her eyelashes.,finds the shirt and continues to wipe it with a rag in her hand.,uses a delicate razor to apply makeup to her lips.,looks over her shoulder and then shows her roller moving over her head.,0\n4132,anetv_aSPPD0fDI3g,2390,She puts mascara on her eyelashes. She,She puts mascara on her eyelashes.,She,gold,takes a ball and bends down to shine the makeup on her.,tries to brush the teeth and brushes her teeth teeth.,puts lipstick on her lips.,talks to the others to play with accordions.,2\n4133,lsmdc0038_Psycho-67150,17671,\"Someone slams down on the brake, tries to pull herself together. The Patrolman\",\"Someone slams down on the brake, tries to pull herself together.\",The Patrolman,gold,\"falls down, rain, and from.\",\"raps again, less gently.\",pump a plastic hose and points it at someone's head.,does someone back punches run.,1\n4134,lsmdc0038_Psycho-67150,17673,\"Reluctantly, someone rolls down the window. The Patrolman\",\"Reluctantly, someone rolls down the window.\",The Patrolman,gold,puts away the shadow.,studies her for a moment.,gets out of the tank and creeps into the gap.,climbs up and joins her.,1\n4135,lsmdc0038_Psycho-67150,17672,\"The Patrolman raps again, less gently. Reluctantly, someone\",\"The Patrolman raps again, less gently.\",\"Reluctantly, someone\",gold,closes the door on him as the suv drives down the road.,turns to follow him.,rolls down the window.,unrolls a drawing reads and glances at someone.,2\n4136,lsmdc0019_Pulp_Fiction-57012,17307,We see a crap game being played on a fancy crap table by gamblers in tuxedos and lucky ladies in fancy evening gowns. We also,We see a crap game being played on a fancy crap table by gamblers in tuxedos and lucky ladies in fancy evening gowns.,We also,gold,\"hold the mustached headlock, then one of the dragged lifeboats seemed the ass and won.\",see the people with camels with people on several camels.,see someone has a small notepad that he jots details in.,come up and twirl a moon with the light as the sun shines behind the camera.,2\n4137,lsmdc0019_Pulp_Fiction-57012,17308,\"We see, standing in the doorway, the tuxedo - clad man. He\",\"We see, standing in the doorway, the tuxedo - clad man.\",He,gold,\"embraces him, covering his mouth with one hand, caress his palms.\",becomes aware of someone's throw and looks at him.,\"looks down to his notebook, then up at someone.\",\"stops the usher, walks to the driver's door and looks in.\",2\n4138,lsmdc3024_EASY_A-11566,14271,Someone's large green eyes glisten. Light from the confessional's grated screen,Someone's large green eyes glisten.,Light from the confessional's grated screen,gold,illuminates the remnants of an electric design.,opens at a clipped bruises while short.,cast an ornate shadow pattern against her cheek.,slides over the back page.,2\n4139,lsmdc3024_EASY_A-11566,14273,\"Looking in, she finds the priest's booth empty. She\",\"Looking in, she finds the priest's booth empty.\",She,gold,\"leaves the confessional and rushes past a pew, knocking a bible from the seat.\",\"pauses, shifting his uneasy gaze.\",points at a shoe figurine draped underneath a pillow.,accidentally pats her mother's hand and leaves the table.,0\n4140,lsmdc3024_EASY_A-11566,14274,\"She leaves the confessional and rushes past a pew, knocking a Bible from the seat. She\",\"She leaves the confessional and rushes past a pew, knocking a Bible from the seat.\",She,gold,takes notes as she shows her paperwork.,takes a puff with smoke.,puts it back and hurries out.,comes to from the garage where teddy is packing.,2\n4141,lsmdc3024_EASY_A-11566,14272,\"Light from the confessional's grated screen cast an ornate shadow pattern against her cheek. Looking in, she\",Light from the confessional's grated screen cast an ornate shadow pattern against her cheek.,\"Looking in, she\",gold,sees a mustached man in a wide - brimmed hat and stands behind a large door in the corner.,finds the priest's booth empty.,returns to her seat facing someone.,dips her fingertips together.,1\n4142,lsmdc3004_500_DAYS_OF_SUMMER-1408,13000,Someone turns and walks back to her copying. She,Someone turns and walks back to her copying.,She,gold,looks behind her boyfriend who sits in his office.,picks up her file.,leans on florence's chair.,hits the backboard along the deck.,1\n4143,lsmdc3004_500_DAYS_OF_SUMMER-1408,12996,\"He remains, staring after her. Someone\",\"He remains, staring after her.\",Someone,gold,turns slowly and walks away.,picks up a chair to face his older friend.,stands groggily and sits opposite a cheerful shaken baby.,asks her the name for him at the visit.,0\n4144,lsmdc3004_500_DAYS_OF_SUMMER-1408,13001,She picks up her file. She briefly,She picks up her file.,She briefly,gold,hands it to someone.,\"looks at him over his shoulder, picks her up and crosses him.\",seizes a medicine bag of the safe from her cup and pops it into her mouth.,looks someone in the eye.,3\n4145,lsmdc3004_500_DAYS_OF_SUMMER-1408,12998,She gets on with some copying of her own. They,She gets on with some copying of her own.,They,gold,work side by side.,someone notices the stuffed bear and sighs.,step back from his date.,car drives up on a dark street where one lounges atop a row of emergency riders.,0\n4146,lsmdc3004_500_DAYS_OF_SUMMER-1408,12995,She gives a casual salute and heads off. He,She gives a casual salute and heads off.,He,gold,dashes into the hall at a display of gleaming conductor skills.,enters a training court wearing a tuxedo.,leaves someone glancing around the room.,\"remains, staring after her.\",3\n4147,anetv_3sAcnQxBchE,9247,A camera pans around a woman sitting in a chair smoking a cigarette. She,A camera pans around a woman sitting in a chair smoking a cigarette.,She,gold,continues playing the instrument with her hands and walking away.,trots down two steps of the floor and continues smoking.,begin running around as well as smoking a cigarette.,speaks to the camera while continuing to smoke and ends by spreading her legs.,3\n4148,anetv_NyL7m4JV8vQ,15190,It is done over and over in slow motion. He then,It is done over and over in slow motion.,He then,gold,starts playing shuffleboard while juggling and smiling.,clears his saving and arm in a womans motion.,uses tools to cut the carpet down while he talks to the camera.,does it again for one last time.,3\n4149,anetv_NyL7m4JV8vQ,15189,A man in red runs jumps and flips over an obstacle. It,A man in red runs jumps and flips over an obstacle.,It,gold,'s teen turns to the rider and comes to a stop outside a board.,is done over and over in slow motion.,is beginning to attack the camera.,does a flip and falls on the ground.,1\n4150,anetv_NyL7m4JV8vQ,15191,\"He then does it again for one last time. Then finally, they\",He then does it again for one last time.,\"Then finally, they\",gold,shake their hands and hold up.,begin a race on a field a man wearing black crosses the finish line first.,prod the mixture and spits in the air.,run back and forth ahead of himself.,1\n4151,lsmdc1062_Day_the_Earth_stood_still-100572,16166,The tutor drives a small silver hatchback. A computer game character,The tutor drives a small silver hatchback.,A computer game character,gold,has a sword across his back.,\"is cia for graphics that reads, your day name.\",screws up the cam of a bike race.,is on two men enter to talk about it.,0\n4152,lsmdc1062_Day_the_Earth_stood_still-100572,16167,A computer game character has a sword across his back. Someone,A computer game character has a sword across his back.,Someone,gold,holds it down conducted pushing a patient over the head of a fire pit and its elevated edge.,\"sits versus the pilot, then straight into his rival.\",notes resentful bearing the display of a fish expand.,has got long dark curly hair.,3\n4153,lsmdc1062_Day_the_Earth_stood_still-100572,16165,Cars stream across an arched iron bridge over a river. The tutor,Cars stream across an arched iron bridge over a river.,The tutor,gold,drives a small silver hatchback.,travel to the canyon further down a trail.,\"lose, over a long grappling wire.\",drive across the small casino floor.,0\n4154,lsmdc1062_Day_the_Earth_stood_still-100572,16169,She spots a razor and a shaving brush. He,She spots a razor and a shaving brush.,He,gold,measures his face face in widened with a rag.,looks at her defiantly.,applies her pink to her hair.,applies makeup to her forehead.,1\n4155,lsmdc1062_Day_the_Earth_stood_still-100572,16170,He looks at her defiantly. She,He looks at her defiantly.,She,gold,gives him a kiss.,\"sighs and, carrying a washing basket, runs downstairs.\",\"looks at him, scared so they'll kill her.\",gives a faint smile and reveals its original features.,1\n4156,anetv_3gpgeAMy6a8,108,Man wearing white shirt is flying the kite in a lage field. litle kid wearing an orange shirt,Man wearing white shirt is flying the kite in a lage field.,litle kid wearing an orange shirt,gold,is standing in front of the audience.,gives a high throw training start.,is skateboarding in the street.,is watching the man.,3\n4157,anetv_pHq6Eb280uM,14470,A close up of a fooseball table is seen followed by people holding onto the sides. The people,A close up of a fooseball table is seen followed by people holding onto the sides.,The people,gold,continue going back and fourth around the table and shows a dealer bowing to the hat.,move up and down the room while spinning around and leads into them holding up a dog.,then begin playing a game of badminton while people watch on the sides.,play the game back and fourth while the camera captures their movements.,3\n4158,anetv_jN-FG9yxNvE,18567,He then goes back and forth to continue his workout. The video then,He then goes back and forth to continue his workout.,The video then,gold,fades to a black screen and asks you to subscribe to their youtube channel.,builds up several beats on uneven bars.,shows the man again adjusting the cheers as he stretches.,takes more clips of the seam.,0\n4159,anetv_jN-FG9yxNvE,18566,A panning up of the inside of a gym is shown as there is a man climbing monkey bars going backwards. He then,A panning up of the inside of a gym is shown as there is a man climbing monkey bars going backwards.,He then,gold,tries and takes off the left shirt and is able to grab the bars before trying to stuff his skateboard.,swings on the monkey bars on the playground bars.,continues to perform tricks using elongated hands to slip off the bars.,goes back and forth to continue his workout.,3\n4160,anetv_6gzU9P-5tqE,844,A man throws a bowling ball and it hits the ceiling. A man,A man throws a bowling ball and it hits the ceiling.,A man,gold,slips and falls as he's trying to bowl.,walks over a long wall holding the ball.,falls off the ball.,dances on a bowling ball in front of her.,0\n4161,anetv_6gzU9P-5tqE,843,A man falls down while trying bowl down a lane. A woman,A man falls down while trying bowl down a lane.,A woman,gold,falls down trying to bowl.,covers her head with food while doing so.,makes a stick with a glues plaster.,observes her full - length distance.,0\n4162,lsmdc1031_Quantum_of_Solace-84464,15856,Someone observes the chaos dispassionately and sips his beer. Beam,Someone observes the chaos dispassionately and sips his beer.,Beam,gold,looks concerned as someone gets in the car.,is a wide arc around his eye.,brings someone to his feet.,\"of water, someone approaches him.\",0\n4163,lsmdc1031_Quantum_of_Solace-84464,15855,\"Another opens up, sprints off and jumps from one building to another. Someone\",\"Another opens up, sprints off and jumps from one building to another.\",Someone,gold,exits the pile and mini smoke as the explosion blocks the ground.,quickens his pace and closes his eyes as they walk into the sunken living room.,dashes over one of someone's back to watch the approaching men hide behind a crystal tree.,observes the chaos dispassionately and sips his beer.,3\n4164,lsmdc1031_Quantum_of_Solace-84464,15857,Beam looks concerned as someone gets in the car. Someone,Beam looks concerned as someone gets in the car.,Someone,gold,is a middle - aged man.,presents him with his body.,emerges from the shadows of a balcony onto the rundown street.,hefts the boat behind it.,2\n4165,lsmdc1031_Quantum_of_Solace-84464,15854,He sprints upstairs and takes out a waiting soldier with an elbow to the face. Another,He sprints upstairs and takes out a waiting soldier with an elbow to the face.,Another,gold,uses a knife to strike a metal.,aging man washes his hands as she catches him up.,\"leads the way to the end jumps from the train, scrambling up a cliff.\",\"opens up, sprints off and jumps from one building to another.\",3\n4166,anetv_GqWH2IYPw6U,18729,Various shots of a city are shown followed by a girl playing violin and many other watching. Another girl steps in and joins her by singing and several others,Various shots of a city are shown followed by a girl playing violin and many other watching.,Another girl steps in and joins her by singing and several others,gold,join in to sing as well.,are also walking behind.,wake up her in the end.,have her back and watch impassively.,0\n4167,anetv_GqWH2IYPw6U,18730,Another girl steps in and joins her by singing and several others join in to sing as well. A mime,Another girl steps in and joins her by singing and several others join in to sing as well.,A mime,gold,\"appears on the other end of the counter, licking their hands and makes their way over to the stage.\",\"appears on the side belly at the bar playing the flute, watching the performers continue to play.\",walks in with fireworks while the group still sings and many around are seen laughing and smiling.,smiles at each other while a camera text is shown as well as more people sing outside and finally back to the camera.,2\n4168,lsmdc3016_CHASING_MAVERICKS-6348,559,She emerges right in front of him. His mom,She emerges right in front of him.,His mom,gold,enters the living room.,lifts a kettle bell.,slides out into the dirt.,folds up his uneasy leg.,0\n4169,lsmdc3016_CHASING_MAVERICKS-6348,561,\"Now, someone treads water in a pool, holding a chair above his head. Someone\",\"Now, someone treads water in a pool, holding a chair above his head.\",Someone,gold,casually bites an apple and reads the paper as someone struggles in the pool.,dances to the side and shows the debris falling off the floor.,unties the collar of someone's hair and starts to eat.,leaves the uncovers someone and dabs his cupped head with his hands.,0\n4170,lsmdc3016_CHASING_MAVERICKS-6348,553,Blond drops his pants and front flips off the roof. He,Blond drops his pants and front flips off the roof.,He,gold,puts one arm around her shoulders and holds her on his shoulders.,looks up at them with extended arms.,remembers his dart as he hits with the stick.,falls up as he repeats the jump into the board.,1\n4171,lsmdc3016_CHASING_MAVERICKS-6348,549,He notices someone walking nearby. The bike,He notices someone walking nearby.,The bike,gold,slides out from under him.,passes up and comes up the stairs to outside her.,climbs off the porch and someone smiles.,\"stops, checks on again.\",0\n4172,lsmdc3016_CHASING_MAVERICKS-6348,554,She quickly removes her top. Someone,She quickly removes her top.,Someone,gold,fastens a black belt beneath her and ties her casual tie.,leaps feet first into the pool.,sets the phone to the end of her bed and heads out in the hall.,\"watches someone leave, but has not moved.\",1\n4173,lsmdc3016_CHASING_MAVERICKS-6348,551,\"Now, someone climbs onto a roof. She hops onto a flat section next to someone and they\",\"Now, someone climbs onto a roof.\",She hops onto a flat section next to someone and they,gold,lean down to their seats with booty.,walk to the edge overlooking a pool.,rush her to a red jeep.,hold the passenger handle.,1\n4174,lsmdc3016_CHASING_MAVERICKS-6348,552,She hops onto a flat section next to someone and they walk to the edge overlooking a pool. He,She hops onto a flat section next to someone and they walk to the edge overlooking a pool.,He,gold,looks up at the rippling waves of the ocean as long as surfers pass them on.,takes off a shoe.,ripple as each students gaze accusingly.,\"glances at someone, then sits on the table.\",1\n4175,lsmdc3016_CHASING_MAVERICKS-6348,563,\"Later, someone starts a timer on his watch and skateboards beside a bus. Stopping, someone\",\"Later, someone starts a timer on his watch and skateboards beside a bus.\",\"Stopping, someone\",gold,looks across at the beach as someone enters the seat.,finds someone's van in.,puts his jacket around his shoulders as she reads the book.,exhales and checks his watch.,3\n4176,lsmdc3016_CHASING_MAVERICKS-6348,569,\"The eight - year - old someone watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down. Holding a half - eaten chicken leg, someone\",The eight - year - old someone watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down.,\"Holding a half - eaten chicken leg, someone\",gold,faces her and smiles.,drops his guy carefully and stands.,holds up his hands to squeeze her bloody teeth.,lifts his arm to watch the prisoner with maximilian.,0\n4177,lsmdc3016_CHASING_MAVERICKS-6348,557,\"Swimming underwater, he grabs her ankle and pulls her back. Someone\",\"Swimming underwater, he grabs her ankle and pulls her back.\",Someone,gold,grabs someone and runs for the station.,watches her reflection in his mirror.,turns her back as someone pitches away from the string.,passes the lively blonde and beats her to the edge.,3\n4178,lsmdc3016_CHASING_MAVERICKS-6348,558,Someone passes the lively blonde and beats her to the edge. She,Someone passes the lively blonde and beats her to the edge.,She,gold,\"becomes someone who wears a bouncy dress, and runs onstage.\",crosses to an audience.,lies on the floor.,emerges right in front of him.,3\n4179,lsmdc3016_CHASING_MAVERICKS-6348,547,\"He stops and admires his mentor. Later, someone\",He stops and admires his mentor.,\"Later, someone\",gold,passes a platoon of multi - hued hills on business vehicles.,\"sits in the dusty chair, brushing his teeth as someone approaches him and rubs his skin.\",arrives at her desk in the hotel corridors.,\"rides his bike through an alley, popping a wheelie on the way.\",3\n4180,lsmdc3016_CHASING_MAVERICKS-6348,556,\"As someone takes off across the pool, someone rips off his wet shirt and tosses it aside. Swimming underwater, he\",\"As someone takes off across the pool, someone rips off his wet shirt and tosses it aside.\",\"Swimming underwater, he\",gold,faces his reflection in a mirror.,sprays the young man in the eye as a shark comes toward him.,knocks on the door frame.,grabs her ankle and pulls her back.,3\n4181,lsmdc3016_CHASING_MAVERICKS-6348,574,She hugs someone and leaves the kitchen. Someone,She hugs someone and leaves the kitchen.,Someone,gold,shows a plastic fridge.,frowns at someone with a large smile on her eyes.,gazes nervously at someone's glare and swallows hard.,reached for the kitchen.,2\n4182,lsmdc3016_CHASING_MAVERICKS-6348,565,\"Looking up from the essay, someone watches her closely. A sweet smile\",\"Looking up from the essay, someone watches her closely.\",A sweet smile,gold,fills his younger brother's eyes.,accompanies wink through her styled hair.,is indistinctly inside his mouth.,spreads his boyish face as she giggles with her friends.,3\n4183,lsmdc3016_CHASING_MAVERICKS-6348,564,\"Outside the school, the young surfer handwrites an essay titled, The Power of Observation. Someone\",\"Outside the school, the young surfer handwrites an essay titled, The Power of Observation.\",Someone,gold,\"sits it down at a table, next to him.\",pushes himself away from the window and jumps through the water's windows.,peeks in the crate and looks into the branches.,sits nearby with a group of students.,3\n4184,lsmdc3016_CHASING_MAVERICKS-6348,560,\"At home, he crosses week two off his Maverick's chart. Now, someone\",\"At home, he crosses week two off his Maverick's chart.\",\"Now, someone\",gold,emerges from sad cabin and peers through blinds.,\"treads water in a pool, holding a chair above his head.\",stares at the rugged body behind a green car.,gives the boy a sweatshirt as they float from their ice apartment.,1\n4185,lsmdc3016_CHASING_MAVERICKS-6348,555,\"Someone leaps feet first into the pool. As someone takes off across the pool, someone\",Someone leaps feet first into the pool.,\"As someone takes off across the pool, someone\",gold,crashes to the floor and dives back against another wall.,peers through a ceiling vent.,rips off his wet shirt and tosses it aside.,\"flips back and shatters, resting her face just against the edge of her benches.\",2\n4186,lsmdc3016_CHASING_MAVERICKS-6348,548,\"Later, someone rides his bike through an alley, popping a wheelie on the way. He\",\"Later, someone rides his bike through an alley, popping a wheelie on the way.\",He,gold,\"raises her visor, contemplates the turning ball and accelerates.\",shuts it and leans back against the wall.,notices someone walking nearby.,flings a disk from a base rail and slips in.,2\n4187,lsmdc3016_CHASING_MAVERICKS-6348,562,\"Someone casually bites an apple and reads the paper as someone struggles in the pool. Later, someone\",Someone casually bites an apple and reads the paper as someone struggles in the pool.,\"Later, someone\",gold,\"unwraps a plate of pastries up to april, who faces his children who's sitting too.\",starts a timer on his watch and skateboards beside a bus.,speeds off inside a lapping.,digs through two empty wine glasses.,1\n4188,lsmdc3016_CHASING_MAVERICKS-6348,568,\"Now, the teen shovels food into his mouth. The eight - year - old someone\",\"Now, the teen shovels food into his mouth.\",The eight - year - old someone,gold,sips his wine and places his hands on the table before her.,\"sits at the next row of headphones, occasionally drinking.\",watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down.,joins someone outside the hotel.,2\n4189,lsmdc3016_CHASING_MAVERICKS-6348,571,Someone notices him reading and focuses on the food as someone's wife returns with another scoop of potatoes. Someone,Someone notices him reading and focuses on the food as someone's wife returns with another scoop of potatoes.,Someone,gold,turns the page and looks up.,\"takes out a knife, open it, puts down the piece of appliance, turns her back to him.\",sets down a shower.,\"swigs the sauce, puts a straw in the cup, then walks over to the sink.\",0\n4190,lsmdc3016_CHASING_MAVERICKS-6348,573,Someone nods and swiftly stands. She,Someone nods and swiftly stands.,She,gold,puts on a forlorn expression and rests one arm across her shoulder.,\"removes a coat, then spits out another.\",reads a text outside the school.,hugs someone and leaves the kitchen.,3\n4191,lsmdc3016_CHASING_MAVERICKS-6348,567,Now he approaches someone's house. Someone,Now he approaches someone's house.,Someone,gold,nods to a soldier.,pulls the essay from his sweatshirt and hands it to someone.,\"stares straight ahead with his eyes cast downward, then goes out.\",makes his way across the pub.,1\n4192,lsmdc3016_CHASING_MAVERICKS-6348,550,\"The bike slides out from under him. Now, someone\",The bike slides out from under him.,\"Now, someone\",gold,is pushed to the wheel.,snatches a book from the model fighter.,climbs onto a roof.,emerges at the sliding hands.,2\n4193,lsmdc3059_SALT-28908,2258,\"In the crypt, someone shines his flashlight at a dead guard. A cloud of dust\",\"In the crypt, someone shines his flashlight at a dead guard.\",A cloud of dust,gold,dangles from the parchment.,hangs on the trees.,fills the hallway ahead.,rises off the roof.,2\n4194,lsmdc3059_SALT-28908,2259,A cloud of dust fills the hallway ahead. Someone,A cloud of dust fills the hallway ahead.,Someone,gold,drags someone away and moves her face against the back of the chair.,\"skips over, turning and leaping onto the doors, opening it.\",lets the rest of the street go.,aims her gun through the cloud of dust and faintly glimpses matveyev's form.,3\n4195,lsmdc3059_SALT-28908,2260,\"Someone reacts to the sound and moves toward it. In the organ chamber, his flashlight\",Someone reacts to the sound and moves toward it.,\"In the organ chamber, his flashlight\",gold,rises over between the stone steps.,sweeps him beautifully completed.,readies the portable chamber.,glows through the dust.,3\n4196,lsmdc3059_SALT-28908,2261,\"In the organ chamber, his flashlight glows through the dust. She\",\"In the organ chamber, his flashlight glows through the dust.\",She,gold,goes to find someone alone at the foot of a dune.,looks at him as he flies in the creature.,\"raises her hands, aiming the gun harmlessly at the ceiling then lets it drop.\",\"goes to it, then turns the channel towards the camera that lies nearby.\",2\n4197,anetv_ul9kg5QdvJo,18491,A group of people are shown at a festival serving food and interacting with their crowd. The male,A group of people are shown at a festival serving food and interacting with their crowd.,The male,gold,poured several more ingredients can to do the swishes while failing roads.,\"continues, to play with the crowd and makes them work for their ice cream cone.\",\"takes the platter of food, putting it on.\",touches the white pole with his stick.,1\n4198,lsmdc3023_DISTRICT_9-10863,2694,\"In the exam area, they seize a struggling someone. The guards\",\"In the exam area, they seize a struggling someone.\",The guards,gold,zip someone into a body bag.,fall out of sight.,pause before the fire moving their body.,shoot out from objects.,0\n4199,anetv_0fNBm46reNg,4184,A small group of people are seen pulling mulch into a bin when another is seen raking around the tree. They,A small group of people are seen pulling mulch into a bin when another is seen raking around the tree.,They,gold,continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree.,continue wrapping around the tree using various instruments in the end.,kneel all on the grave and pretend to hide from.,show a pile of surrounding people outside.,0\n4200,anetv_0fNBm46reNg,4185,They continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree. They,They continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree.,They,gold,lay out more dirt evenly while some are grabbing bags behind them.,continues combing and blowing all around the bushes while the group continue to walk away.,put the city on the shoes with their hands and show them a strips of keep them in place.,keep riding on the mower in different locations.,0\n4201,anetv_Jt-DIHv8YK8,2782,He falls off and onto the street. He,He falls off and onto the street.,He,gold,keeps going down the street on his long board.,grabs the curlers and walks across the floor flanked by a girl and wrestlers.,looks up at someone from the edge of the cover.,lowers his squat and gazes up.,0\n4202,anetv_Jt-DIHv8YK8,2781,A kid in a blue shirt is long boarding. He,A kid in a blue shirt is long boarding.,He,gold,finds a ground cross in a desert.,is shot giving chase.,hands the child over.,falls off and onto the street.,3\n4203,anetv_UrPn5-8yNgA,10458,A person is shaving their legs. A polished hand,A person is shaving their legs.,A polished hand,gold,drops the boxer between the two.,gestures at the person shaving.,sits down on the floor while others watch the game.,is shown behind her wake.,1\n4204,anetv_xYt__nSK8NA,14572,A young woman is seen looking to the camera smoking a cigarette and laughing to the camera. She,A young woman is seen looking to the camera smoking a cigarette and laughing to the camera.,She,gold,continues taking puffs off the cigarette while looking into the camera and blowing smoke.,woman continues speaking to the camera and raises her hand up at them by pouring the potatoes together in a bowl.,begins blowing her tongue out and showing viewers more to the camera.,continues riding on the lawn and blowing down the cigarette.,0\n4205,anetv_WGHXYbCWvyU,6960,The man then begins moving his arms and legs around his body. He,The man then begins moving his arms and legs around his body.,He,gold,continues to spin around and ends by jumping into a pit and walks into a shower.,continues peddling onto the legs and ends with the woman sitting in a circle.,flips back down by his legs and continues performing tricks.,continues moving his body around with his eyes closed.,3\n4206,lsmdc3039_JACK_AND_JILL-2666,4419,\"Someone addresses a mustached servant, who struggles to understand him. The servant\",\"Someone addresses a mustached servant, who struggles to understand him.\",The servant,gold,musters a delighted smile as the dragon slithers toward them.,presents a liquor bottle.,runs after the building.,glances over her shoulder.,1\n4207,anetv_qyssgQ2xq2M,10222,\"The man is painting his friends finger nails, he seems to have done someone else's nails also and made little red heart. The man is talking and pretty excited her able to do this, he\",\"The man is painting his friends finger nails, he seems to have done someone else's nails also and made little red heart.\",\"The man is talking and pretty excited her able to do this, he\",gold,does a final flip.,keeps putting the top of the polish back to get more paint on it.,is surprised by howcast.,is more perfect while doing his beat to the other.,1\n4208,anetv_qyssgQ2xq2M,10221,\"Inside of the house on the couch two men are sitting, one of them is talking casually awhile the other is holding his arm out on a pillow. The man is painting his friends finger nails, he\",\"Inside of the house on the couch two men are sitting, one of them is talking casually awhile the other is holding his arm out on a pillow.\",\"The man is painting his friends finger nails, he\",gold,seems to have done someone else's nails also and made little red heart.,rubs and on his right beard and starts again.,puts his phone back to his ear and kisses a hair soap on the table.,is then adds shirt o a tray and starts painting the other furniture.,0\n4209,anetv_qyssgQ2xq2M,10223,\"The man is talking and pretty excited her able to do this, he keeps putting the top of the polish back to get more paint on it. He\",\"The man is talking and pretty excited her able to do this, he keeps putting the top of the polish back to get more paint on it.\",He,gold,enters the house and finishes karate with an ever motion drawing.,\"jokingly rubs the other mans face, and continues to take his time painting his nails.\",gets on the side and he grabs and starts to put the glitter again.,has to talk about the.,1\n4210,anetv_y2jDV7tFUXg,8156,Some people are gathered at tables by a pier. They,Some people are gathered at tables by a pier.,They,gold,are staring at shelves off the bank.,are watching boaters pulling people on water skis.,are walking down the river cafe from a park.,\"are talking together, approach a gate.\",1\n4211,anetv_y2jDV7tFUXg,12448,A boat is in the water. They,A boat is in the water.,They,gold,is in a yellow vest standing on a kayak.,see a man riding a raft through a yard.,are in the boat going fast downhill.,are pulling two water skiers behind them.,3\n4212,anetv_y2jDV7tFUXg,8157,They are watching boaters pulling people on water skis. The skiers,They are watching boaters pulling people on water skis.,The skiers,gold,\"are staying upright, going around in circles until they jump off and run to shore.\",\"hold the woman again, and climb as fast as he can.\",go down and their same dip is measured.,continue wake boarding and snowboarding during last time.,0\n4213,anetv_y2jDV7tFUXg,12449,They are pulling two water skiers behind them. People,They are pulling two water skiers behind them.,People,gold,get into paddling and pull themselves out of the tube.,reach the bridge and fall over.,are sitting in the stands watching them.,are wearing the boat down.,2\n4214,anetv_6iSqTbL5WXY,18335,We see a white opening screen. We,We see a white opening screen.,We,gold,see the man stage.,man is playing a saxophone.,see a man dunk a basketball wearing jump stilts.,see a man playing from a wood court.,2\n4215,anetv_6iSqTbL5WXY,18336,We see another man bounce the ball and the jump stilt man dunks again. We then,We see another man bounce the ball and the jump stilt man dunks again.,We then,gold,see people fighting men and children.,see the opening screen for the closing.,see the scoreboard and misses his ball.,see someone in the underwear and take the ball.,1\n4216,anetv_TqO5Ddh5Lp4,17383,He uses his paddle to guide him as he shifts and turns. He,He uses his paddle to guide him as he shifts and turns.,He,gold,\"gets back to his new position, and pulls back the resistance.\",reaches the top of the somersault.,\"keeps going, entering faster rapids.\",moves himself once again and squats.,2\n4217,anetv_TqO5Ddh5Lp4,14476,A man paddles a canoe with the camera in first person view. A wave,A man paddles a canoe with the camera in first person view.,A wave,gold,crashes into the canoe.,shows the water below the boat.,falls across the board.,brings out its attention and he walks.,0\n4218,anetv_TqO5Ddh5Lp4,14477,A wave crashes into the canoe. The man,A wave crashes into the canoe.,The man,gold,grabs the remover cutter and waxes it with a sliding window tip.,returns to the water.,swims through another small waterfall.,recovers from the wave.,3\n4219,anetv_TqO5Ddh5Lp4,17382,A man is kayaking on a muddy river. He,A man is kayaking on a muddy river.,He,gold,uses his paddle to guide him as he shifts and turns.,drives a man into the water of the river.,does the instructed flip in the air.,continues to ride around on a raft with other people rowing to watch.,0\n4220,anetv_UeMcMSTO-Yg,10169,A woman is seen speaking to the camera and showing off various tools to the camera. She,A woman is seen speaking to the camera and showing off various tools to the camera.,She,gold,is putting oil with butter and two rack ingredients followed by one pouring it off her.,begins showing clips of decorations around her hair and putting it on her hair.,continues speaking in the end and ends with her putting a different clothing on her shirt.,explains how each tool works for cleaning a horse and ends by smiling to the camera.,3\n4221,anetv_6O8QXbjvYKs,10542,He sets it on a rail and pushes it down a lane. A woman with a baby strapped to her chest,He sets it on a rail and pushes it down a lane.,A woman with a baby strapped to her chest,gold,holds up some weight.,watches her jump off onto the skateboard.,walks up her path to a garage.,bowls a ball down a lane.,3\n4222,anetv_6O8QXbjvYKs,10541,A little boy picks up a bowling ball. He,A little boy picks up a bowling ball.,He,gold,throws it at the pinata as it pretends to hit the ball.,throws the ball to the camera and falls onto the ground.,repeats it over and hit by the balls.,sets it on a rail and pushes it down a lane.,3\n4223,anetv_bXCOtMuaJf4,12891,A woman is seen washing dishes in a sink while a man speaks to the camera and zooms in on the dishes. The man,A woman is seen washing dishes in a sink while a man speaks to the camera and zooms in on the dishes.,The man,gold,wheels the body along slowly in front of the camera and begin to do dishes as well as thoroughly scrubbing the sink.,continues to speak to the camera and demonstrate how to properly wash dishes.,continues mixing herbs dishes into a pan and leads into him cooking his oil with food in the cup.,picks up a rag and sprays shoe clothes along the water before washing them and speaking to the camera.,1\n4224,anetv_CB0yYGVNcOk,2302,More shots are shown of him playing the instrument while pausing to play more. He,More shots are shown of him playing the instrument while pausing to play more.,He,gold,begins playing the instrument with his instrument.,continues playing the song to speak to the camera as more and ends with them speaking.,continues throwing more cards while continuing to look at the camera.,continues playing along and ends by smiling to the camera.,3\n4225,anetv_CB0yYGVNcOk,2301,A man is seen playing a saxophone into the camera and leads into him speaking. More shots,A man is seen playing a saxophone into the camera and leads into him speaking.,More shots,gold,are shown of the man pausing to cheer and do several tricks.,are shown of people bowling and end by throwing the object off into the distance.,are shown of him playing the instrument while pausing to play more.,are shown of people playing and having the instrument that's running around and another of technique.,2\n4226,anetv_dj_GBrR5N4E,13663,A man standing nearby pulls the spring board out of the way. Several judges,A man standing nearby pulls the spring board out of the way.,Several judges,gold,sit at a table in front of the bleachers watching.,are also shown with him sitting on stage into a pool.,\"stand outside and watch, then receive them.\",are shown him cheering at the same time.,0\n4227,anetv_dj_GBrR5N4E,13662,The young man uses a spring board to mount the bars. A man standing nearby,The young man uses a spring board to mount the bars.,A man standing nearby,gold,is to practice a karate dismount.,\"throws the pole and the girl dismounts, then back.\",pulls the spring board out of the way.,follows the european with a high dripping silver medal.,2\n4228,anetv_dj_GBrR5N4E,13661,\"Many people are in bleachers in the background walking around, sitting and watching. The young man\",\"Many people are in bleachers in the background walking around, sitting and watching.\",The young man,gold,comes back to perform near a man who is shaving the legs of the camel.,seated in front of the crowd strung his legs while the audience claps.,uses a spring board to mount the bars.,does a handstand over his behavior.,2\n4229,anetv_dj_GBrR5N4E,13665,The young man completes his parallel bar routine. The young man then,The young man completes his parallel bar routine.,The young man then,gold,stretches and spins the disc.,stands on the swing bars.,\"dismounts, lands and bows.\",does flips and springs in the pommel.,2\n4230,anetv_dj_GBrR5N4E,13664,Several judges sit at a table in front of the bleachers watching. The young man,Several judges sit at a table in front of the bleachers watching.,The young man,gold,\"dances, flipping and flipping.\",pretends to toss his ball into the dressing room.,watches the child do the dance gyrates.,completes his parallel bar routine.,3\n4231,anetv_dj_GBrR5N4E,13666,\"The young man then dismounts, lands and bows. He\",\"The young man then dismounts, lands and bows.\",He,gold,walks away as another man in the same uniform approaches.,falls off the bricks in the crowd.,dismounts and glances up off the someone.,\"dismounts, gymnast in briefly flips and body flip in the air.\",0\n4232,anetv_dj_GBrR5N4E,13660,A young man prepares to complete a routine on the parallel bars. Many people,A young man prepares to complete a routine on the parallel bars.,Many people,gold,\"climb, watching the man clap, flip and flip in slow motion.\",\"are in bleachers in the background walking around, sitting and watching.\",watch on the ledge as he lands on his landing mat at a finish end.,stand back and fourth as they crowd and struggle to keep his balance.,1\n4233,lsmdc0001_American_Beauty-46137,326,\"She is trying to be seductive as she says this, but she is pretty bad at it. His face\",\"She is trying to be seductive as she says this, but she is pretty bad at it.\",His face,gold,lights up as dense earth.,is all somber and sharp like usual maybe he is in the monster's flesh ages.,has no bolts but grows somewhat taut.,is very close to hers.,3\n4234,lsmdc0001_American_Beauty-46137,327,His face is very close to hers. Someone,His face is very close to hers.,Someone,gold,is struggling to miss his victory.,moves out of her way but the wheelman pushes her forward.,is actually standing with that he has hold of her face if she is not brightens.,\"takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck.\",3\n4235,lsmdc0001_American_Beauty-46137,328,\"Someone takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck. And someone\",\"Someone takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck.\",And someone,gold,steps to the porch and embraces her.,does n't believe her eyes.,kisses her on the lips.,gazes out at her.,2\n4236,lsmdc0001_American_Beauty-46137,339,\"Humiliated, someone starts to cry. He\",\"Humiliated, someone starts to cry.\",He,gold,\"hugs her, letting her put her head on his shoulder, stroking her hair and rocking her gently.\",\"crouches down and looks away with his middle fingers, looking thoughtful.\",\"slips an envelope inside, shutting the door.\",rises to his skis.,0\n4237,lsmdc0001_American_Beauty-46137,331,Someone lays back on the couch as someone moves in over her. He,Someone lays back on the couch as someone moves in over her.,He,gold,\"pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face.\",looks up and sees that he has entered the room.,gives her a middle shake of his head.,dips the paper canvas into the sink.,0\n4238,lsmdc0001_American_Beauty-46137,342,She is eating a turkey sandwich. He,She is eating a turkey sandwich.,He,gold,turns to her and cocks an eyebrow.,puts it in her pocket.,doubles over triumphantly.,\"takes the check, scrambles to the kitchen table, and shuts the door.\",0\n4239,lsmdc0001_American_Beauty-46137,338,\"He grabs a blanket from the back of the couch and drapes it around her shoulders, covering her nakedness. He\",\"He grabs a blanket from the back of the couch and drapes it around her shoulders, covering her nakedness.\",He,gold,throws his pillows onto the floor.,signs to the roof.,smiles and shakes his head.,slumps down beside someone's face.,2\n4240,lsmdc0001_American_Beauty-46137,333,\"People, fully clothed, lie curled up on someone's bed. She\",\"People, fully clothed, lie curled up on someone's bed.\",She,gold,can't see the brunette.,smiles admiringly and puts in someone's lap.,\"switches on his bedside lamp, and presses a remote.\",seems disconnected from what's happening.,3\n4241,lsmdc0001_American_Beauty-46137,341,\"Someone, once again fully clothed, sits at the kitchen counter. She\",\"Someone, once again fully clothed, sits at the kitchen counter.\",She,gold,\"is there, too.\",unrolls the strawberries before him.,is eating a turkey sandwich.,\"waves to the camera, as she struck.\",2\n4242,lsmdc0001_American_Beauty-46137,335,Someone starts unbuttoning someone's blouse. Someone,Someone starts unbuttoning someone's blouse.,Someone,gold,applies plaster to someone's face.,finds a bike strapped onto the bed.,\"pulls her blouse open, exposing her breasts.\",is seated at a flower table.,2\n4243,lsmdc0001_American_Beauty-46137,324,Someone holds the bottle up to her mouth and she drinks clumsily. He,Someone holds the bottle up to her mouth and she drinks clumsily.,He,gold,makes the show a while with a stick as he plays the tune while someone plays.,coughs for some vodka.,gently wipes her chin with the back of his hand.,slaps his cheek and makes his way into a cafe at the edge of the bar.,2\n4244,lsmdc0001_American_Beauty-46137,332,\"He pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face. People, fully clothed,\",\"He pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face.\",\"People, fully clothed,\",gold,stand and deal blissfully.,lie curled up on someone's bed.,\"lie at the side of her bed, still wearing her father's heels.\",still alive at the top of her lungs.,1\n4245,lsmdc0001_American_Beauty-46137,325,\"She is unnerved - - this is happening too fast. She is trying to be seductive as she says this, but she\",She is unnerved - - this is happening too fast.,\"She is trying to be seductive as she says this, but she\",gold,does n't think it's controlling.,bops his head in sudden doubt.,can't say nothing.,is pretty bad at it.,3\n4246,lsmdc0001_American_Beauty-46137,334,She seems disconnected from what's happening. Someone,She seems disconnected from what's happening.,Someone,gold,runs through town with a still shot of her rifle.,starts unbuttoning someone's blouse.,leads no more from someone.,\"lie back on the drumming, seated.\",1\n4247,lsmdc0001_American_Beauty-46137,340,\"She turns her head to look out the window: The red door of the Burnham house stands out, even in the pouring rain. Someone, once again fully clothed,\",\"She turns her head to look out the window: The red door of the Burnham house stands out, even in the pouring rain.\",\"Someone, once again fully clothed,\",gold,comes back to reveal the own ball.,sits at the kitchen counter.,\"stops to look at her sister, who has completely ripped his jacket, as far as possible.\",is bent over his head and on his wet shirt.,1\n4248,lsmdc0001_American_Beauty-46137,337,\"Someone lies beneath us, embarrassed and vulnerable. This is not the mythically carnal creature of someone's fantasies; this\",\"Someone lies beneath us, embarrassed and vulnerable.\",This is not the mythically carnal creature of someone's fantasies; this,gold,is a nervous child.,is basically the eyes of someone.,\"is then outlined over someone, the force by someone to react.\",letter feels like the cooked goods.,0\n4249,lsmdc1012_Unbreakable-7352,3726,Someone sees someone sitting in an airport lounge. Other passengers,Someone sees someone sitting in an airport lounge.,Other passengers,gold,sit on deck chairs as the car drives past them.,run to the big window.,join behind him on the window deck.,dive out of the water.,1\n4250,lsmdc1012_Unbreakable-7352,3728,\"Someone in his blue suit does n't even turn his head. After some moments, he\",Someone in his blue suit does n't even turn his head.,\"After some moments, he\",gold,stands and swings out the tires.,reaches back to grab various stamps.,rises and limps away.,strikes the haul in his beige raincoat.,2\n4251,lsmdc1012_Unbreakable-7352,3727,Other passengers run to the big window. Someone in his blue suit,Other passengers run to the big window.,Someone in his blue suit,gold,does n't even turn his head.,\"takes an empty seat, then pulls a spot and fetches a puff on it.\",is applying eye examination in stopped.,kicks him under the paneled module and starts running to the front of the chaise's shirt.,0\n4252,lsmdc1012_Unbreakable-7352,3729,\"After some moments, he rises and limps away. Someone's\",\"After some moments, he rises and limps away.\",Someone's,gold,report begins to burn.,sitting on a bar stool.,gaze soaks lying on the ground under his enormous hat.,outlaws enter the guard house.,1\n4253,lsmdc1012_Unbreakable-7352,3732,Someone walks down the platform. Someone,Someone walks down the platform.,Someone,gold,lands in a red formation in the middle of the classroom.,\"stumbles two or three paces back from someone, staring at the other man, eyes wide.\",\"puts his hands on his chest, and puts his arm around someone.\",\"pauses about halfway to the entire platform, then stops snowed the door and stands up.\",1\n4254,lsmdc1012_Unbreakable-7352,3731,\"On a railway platform, the train driver's approaching his cab, when someone steps down from it. Someone\",\"On a railway platform, the train driver's approaching his cab, when someone steps down from it.\",Someone,gold,skids and drives up alongside someone.,walks down the platform.,gets on the van and shuts the entrance door.,reaches into his pocket.,1\n4255,lsmdc1012_Unbreakable-7352,3734,\"Someone coolly swivels his chair towards his workbench, and puts down the paper. Someone\",\"Someone coolly swivels his chair towards his workbench, and puts down the paper.\",Someone,gold,looks over to the bench and sees a screen showing a video of philadelphia stadium.,looks at him uneasily and his pickup pulls up in front of the diner.,leaves the living room and puts the device on top of a round chunk of his table.,files into a small red stamp.,0\n4256,lsmdc1012_Unbreakable-7352,3730,\"The man leans into him. On a railway platform, the train driver's\",The man leans into him.,\"On a railway platform, the train driver's\",gold,drooling wriggles under the car.,notice gaze around in the backs of an inn.,\"approaching his cab, when someone steps down from it.\",\"eyes view from the ditch in front of him, aiming his shotgun.\",2\n4257,lsmdc1012_Unbreakable-7352,3733,\"Someone stumbles two or three paces back from someone, staring at the other man, eyes wide. Someone\",\"Someone stumbles two or three paces back from someone, staring at the other man, eyes wide.\",Someone,gold,\"fall down from a street, forcing him around in a rapid fire between his motorbikes.\",grabs through his doorway as someone crashes through the wall.,strides to the overturned car and steps over an landing into the water.,\"coolly swivels his chair towards his workbench, and puts down the paper.\",3\n4258,anetv_Tfqln6lL7q0,1792,A camera pans around person's faces on a snowy hill as well as them riding down a mountain. The people,A camera pans around person's faces on a snowy hill as well as them riding down a mountain.,The people,gold,continue to ride down the hill with others riding around in tubes.,continue skiing down the snowy path moving back and fourth and ending by stopping at the bottom.,are then shown riding down on tubes pulling one other.,continue walking around on dirt bikes.,1\n4259,anetv_ReOsTqcQBmY,15831,A group of four girls jump rope. The first group of people,A group of four girls jump rope.,The first group of people,gold,jump around on the track.,\"start swinging with their hands, dancing with one another.\",dance while the audience them takes pictures and the audience applauds.,jumps rope with a fourth person.,3\n4260,anetv_ReOsTqcQBmY,15828,Three people are jumping rope and doing tricks. Other people,Three people are jumping rope and doing tricks.,Other people,gold,are holding dodge balls as they walk.,run in front and grab each other.,are shown tubing in the sand.,sit and stand at tables in the background and watch or film the jump ropers.,3\n4261,anetv_ReOsTqcQBmY,15832,A different group of four in red and black jump rope. A different team of jump ropers,A different group of four in red and black jump rope.,A different team of jump ropers,gold,watches in the background.,is shown along the walk away by locker screen.,are shown competing in contestants with people in a carnival.,appears and walks past with a lacrosse stick hanging out in the dust.,0\n4262,anetv_ReOsTqcQBmY,15829,Other people sit and stand at tables in the background and watch or film the jump ropers. Four different people,Other people sit and stand at tables in the background and watch or film the jump ropers.,Four different people,gold,are standing on the beach watching.,are seen playing as well as many standing in each and ladies standing on the side.,are slender and cluttered with the energy team in the audience.,are now jumping rope and doing tricks.,3\n4263,anetv_ReOsTqcQBmY,15830,Four different people are now jumping rope and doing tricks. Another group of three people,Four different people are now jumping rope and doing tricks.,Another group of three people,gold,shows off their jump rope skills.,are ballroom holding the drinks and they applaud or sing off.,sit around each other on a sand kite landing.,perform tricks on the rope.,0\n4264,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8659,Someone leads his horse through the tents towards the dimholt road. A short figure,Someone leads his horse through the tents towards the dimholt road.,A short figure,gold,trails down the desert.,is now close up in the driver's passenger window.,crawls through its bodies.,steps out of the shadows.,3\n4265,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8657,As someone readies brego for leaving someone approaches. Someone,As someone readies brego for leaving someone approaches.,Someone,gold,\"collects the package and sees someone's body, which stiffens as he knits his brows.\",pulls back a blanket and walks away.,\"leans on a wounded woman, who turns away.\",looks over his shoulder at her.,3\n4266,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8661,\"Someone looks at someone as he appears, leading his horse - - already saddled. Someone\",\"Someone looks at someone as he appears, leading his horse - - already saddled.\",Someone,gold,\"striding swiftly down the mountain at dawn, pointing up at the crowd.\",\"leans down again, grabbing two of his dead hands.\",spots the red suspect from right to right in the picture.,steps closer to someone.,3\n4267,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8660,A short figure steps out of the shadows. Someone,A short figure steps out of the shadows.,Someone,gold,stands in a backyard.,looks at someone - - grateful for his courage but determined to go alone.,\"stops, looks away thoughtfully, and looks away.\",goes between the house and the room.,1\n4268,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8658,\"Someone looks at her sadly, not wanting to hurt her. Someone\",\"Someone looks at her sadly, not wanting to hurt her.\",Someone,gold,continues toward the house.,steps back at though struck.,is leaning back and is outside bed.,leaps in fine linen onto her oriental chair to the nurse.,1\n4269,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8662,\"Someone shakes his head, smiling his acceptance. Someone and gamling\",\"Someone shakes his head, smiling his acceptance.\",Someone and gamling,gold,look over and watching the movie.,are wheeling a coated line over a moat.,watch the retreating figures of people.,do anything as well.,2\n4270,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8664,\"Rohan soldiers emerge from their tents, crestfallen to see someone leave. People\",\"Rohan soldiers emerge from their tents, crestfallen to see someone leave.\",People,gold,sprints through the terminal building.,disappear into the shadows of the mountains.,\"see someone, someone over to someone.\",are on their way out onto the porch.,1\n4271,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8663,Someone and gamling watch the retreating figures of people. Rohan soldiers,Someone and gamling watch the retreating figures of people.,Rohan soldiers,gold,keep weapons on his feet.,surround the limousine as they proceed through a small door behind someone.,\"emerge from their tents, crestfallen to see someone leave.\",with the crows of people free and fleeing.,2\n4272,anetv_PSh-caJvSHU,5024,He and another child are shown creating jackolanterns from pumpkins. They,He and another child are shown creating jackolanterns from pumpkins.,They,gold,mixes ingredients into a jar and sets them down again.,pin him down onto the grass.,pans back and forth in front of the excess lines using child methods to move fast motion.,use plastic pumpkins to base their designs on.,3\n4273,lsmdc0049_Hannah_and_her_sisters-69132,455,\"The group is now seen walking down the canopied entrance stairs of an apartment house on the other side of the street, where they'd been gazing at both the lovely and ugly facades across the way. Someone is in the lead; the women\",\"The group is now seen walking down the canopied entrance stairs of an apartment house on the other side of the street, where they'd been gazing at both the lovely and ugly facades across the way.\",Someone is in the lead; the women,gold,keep her to the door.,swoop down to the drifting wave below fan.,take away the bullets since they'd first met.,\"follow, someone slightly behind april.\",3\n4274,lsmdc0049_Hannah_and_her_sisters-69132,453,\"The film moves from the two elegant facade to show an ugly, ultra - modern structure covered with tiny, diamond - shaped motifs. The film\",\"The film moves from the two elegant facade to show an ugly, ultra - modern structure covered with tiny, diamond - shaped motifs.\",The film,gold,shows a band of girls gathering in two arcade.,leads into several brighter shots of pie laid out and someone's hands on her face as she gathers her things.,is beginning to form as someone jumps from a separate window onto a glowing dangling steps to the right.,moves from the ugly facade to the building's equally ugly entrance.,3\n4275,lsmdc0049_Hannah_and_her_sisters-69132,454,The film moves from the ugly facade to the building's equally ugly entrance. A large car,The film moves from the ugly facade to the building's equally ugly entrance.,A large car,gold,is parked right in front of the building.,pulls up from the curb and runs up the street.,arrives behind the barricade where it slides over their shoulders.,skiis to a stop as someone sits up.,0\n4276,anetv_RJ5U2y6ccvA,18774,A young baby is outside in murky water holding on to a white bar. Two men push him and he,A young baby is outside in murky water holding on to a white bar.,Two men push him and he,gold,is shown riding a water vehicle being pulled by some type of thing.,spins and also serves the ball many times.,dives very hard too.,carries them along shore and the other rubs his neck.,0\n4277,anetv_RJ5U2y6ccvA,18775,\"Two men push him and he is shown riding a water vehicle being pulled by some type of thing. As he moves, a woman\",Two men push him and he is shown riding a water vehicle being pulled by some type of thing.,\"As he moves, a woman\",gold,runs into the storm.,is on the side of him following him and stopping him along the way making sure he is okay.,rides the car slowly along the highway.,is standing opposite the hood.,1\n4278,anetv__4CLYKFzmoY,14450,He begins playing the violin. He,He begins playing the violin.,He,gold,goes around another set of bongo drums while he continues to play the drums.,begins to play the drum.,\"closes his eyes, listening to himself as he plays.\",sets down his flute and resumes playing.,2\n4279,anetv__4CLYKFzmoY,14449,A young man is wearing headphones and standing in front of a microphone. He,A young man is wearing headphones and standing in front of a microphone.,He,gold,is holding his cigarette for a boy's mouth to hold him in place.,strum the drums and continues to play the drums.,starts singing a flute while looks back to the camera.,begins playing the violin.,3\n4280,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60227,117,\"Someone throws down his sword, kicks and lunges at someone, tackling him to the ground. Someone 'eyes\",\"Someone throws down his sword, kicks and lunges at someone, tackling him to the ground.\",Someone 'eyes,gold,are hit by asphalt.,\"are fixed on a distant dark patch which darts about the sky, like flying smoke in the wind.\",tremble then rolls away.,are fixed on someone's face as she moves away.,1\n4281,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60227,116,Someone has managed to corner someone. Someone,Someone has managed to corner someone.,Someone,gold,hugs downstairs and finds himself outside.,looks down at the night sky as she thinks about it.,stops the other girls he can.,\"throws down his sword, kicks and lunges at someone, tackling him to the ground.\",3\n4282,anetv_xijxN7XB4d8,12245,A man is standing in a bedroom practicing his violin. Another day passes by and it,A man is standing in a bedroom practicing his violin.,Another day passes by and it,gold,strikes a switch and they are playing a game.,includes a drum guitar.,is now sunlight outside as the boy practices playing his instrument once more.,is a rental room busy where a small boy wearing a red shirt.,2\n4283,anetv_xijxN7XB4d8,12247,\"The practicing continues on for several more days in the same room and finishes on until day 7. Finally, the man\",The practicing continues on for several more days in the same room and finishes on until day 7.,\"Finally, the man\",gold,\"changes the other socks & crews to take the position off the body, and walk off down shot.\",is over again wearing anything red shirt and yellow shirt.,takes a set in the room and begins talking and demonstrating effective ways to hold the violin and play it efficiently.,is being interviewed on a tv and a man takes off the marketing markings is said - the video starts a series of times.,2\n4284,anetv_xijxN7XB4d8,12246,Another day passes by and it is now sunlight outside as the boy practices playing his instrument once more. The practicing,Another day passes by and it is now sunlight outside as the boy practices playing his instrument once more.,The practicing,gold,moves behind the boy and he is holding the dishes in front of him.,continues on for several more days in the same room and finishes on until day 7.,kneels down and puts his hands in his pockets.,arts moves from a rider next to the father who had horseback.,1\n4285,lsmdc3011_BLIND_DATING-914,14194,\"Someone gulps wine and sets down the glass. Now, someone\",Someone gulps wine and sets down the glass.,\"Now, someone\",gold,sits at the empty coffee cafe in a newspaper.,leaves with a hand on someone's shoulder.,talks in his cell.,sits outside.,1\n4286,lsmdc3011_BLIND_DATING-914,14196,\"At the limo, someone feels for his brother and punches him. Someone\",\"At the limo, someone feels for his brother and punches him.\",Someone,gold,turns his head away from his brother.,attacks with another snowball.,leads someone off the top of a step tower.,\"breathes into a welcome break, and gets up.\",0\n4287,lsmdc3011_BLIND_DATING-914,14195,\"Now, someone leaves with a hand on someone's shoulder. At the limo, someone\",\"Now, someone leaves with a hand on someone's shoulder.\",\"At the limo, someone\",gold,feels for his brother and punches him.,sobs between her short sisters.,waits and chase the bus.,gets off a bike and steps out of the truck.,0\n4288,lsmdc3011_BLIND_DATING-914,14193,She gives someone a once over. Someone,She gives someone a once over.,Someone,gold,takes one.,holds out a futile body and tosses it over the garden.,keeps his hand absently.,gulps wine and sets down the glass.,3\n4289,lsmdc3011_BLIND_DATING-914,14192,She lifts her cell phone. She,She lifts her cell phone.,She,gold,goes to her side and smiles at someone.,responds with a slack - soft smile.,checks her cell footage.,gives someone a once over.,3\n4290,lsmdc0022_Reservoir_Dogs-59144,9458,\"Though he is driving for his life, he keeps talking to his wounded passenger in the backseat. They\",\"Though he is driving for his life, he keeps talking to his wounded passenger in the backseat.\",They,gold,are the only two in the car.,climbs up at the top of the cliff.,begins to tear a spare tire off a garage.,\"gets off and weaves his way, looking dazed and disbelieving with the men behind him.\",0\n4291,lsmdc1006_Slumdog_Millionaire-74078,1223,He pats someone patronizingly on the back of his head. Then he,He pats someone patronizingly on the back of his head.,Then he,gold,jacks the car's doors open as well.,glares at the director off - stage.,sits down and stares at someone.,looks at the envelopes as he goes.,1\n4292,lsmdc1006_Slumdog_Millionaire-74078,1222,\"With eyebrows raised, he regards someone. The audience\",\"With eyebrows raised, he regards someone.\",The audience,gold,nods and waves his hands.,are on their feet.,applauds their awards in victory while people watch them play.,spread into a handshake.,1\n4293,lsmdc1006_Slumdog_Millionaire-74078,1225,The director gives him a happy thumbs up. The host,The director gives him a happy thumbs up.,The host,gold,then puts his luggage down and extends his hand.,maintains a grim serious expression.,eases a smaller wall.,pats the edge of the bed and her face falls.,1\n4294,lsmdc1006_Slumdog_Millionaire-74078,1224,Then he glares at the director off - stage. The director,Then he glares at the director off - stage.,The director,gold,gives him a happy thumbs up.,grabs the block and walks away.,\"looks at someone, who stares morosely at him.\",points and tries to serve someone.,0\n4295,anetv_FqlXey9KFZA,17728,A man is whipping with a dark rug. The guy,A man is whipping with a dark rug.,The guy,gold,is shaving the horse with shaving cream.,turns the tool on a mans hair.,'s jumping and knitting with skateboard.,is gesturing at the machine's work.,3\n4296,anetv_FqlXey9KFZA,17727,A guy is operating a electric presser. A man,A guy is operating a electric presser.,A man,gold,is whipping with a dark rug.,enters and lifts the triangle to a girl.,kicks over a phone.,stands at a table with a man.,0\n4297,lsmdc0002_As_Good_As_It_Gets-46513,735,People stunned by the manners. Camera,People stunned by the manners.,Camera,gold,erupt around the room.,follows as someone goes to a rack of cds - - all carefully labelled.,roars directly across the street toward someone.,'s wheel ticks up automatically.,1\n4298,anetv_TVbPV7X49tw,12928,A bike is kicking up smoke. A man,A bike is kicking up smoke.,A man,gold,is climbing his climbing equipment.,is sitting in the wood roof.,is waiting for him.,puts his arm in the air.,3\n4299,anetv_TVbPV7X49tw,12923,We see four bikes jump a ramp one after another. We,We see four bikes jump a ramp one after another.,We,gold,see a machine getting up on gear.,see a man in red talking.,see a man get out a tire on landing to a van in an attic.,see the man performing with the will for jumps and flips.,1\n4300,anetv_TVbPV7X49tw,12920,We see flashing images of motorcycle riding. We,We see flashing images of motorcycle riding.,We,gold,switch to a race in a large chaises room.,see the cars and the talking of the dog.,see the manual and the man stands on the track.,see a man talk standing high above a city.,3\n4301,anetv_TVbPV7X49tw,12921,We then see motorcycle stunts. A bike,We then see motorcycle stunts.,A bike,gold,appears and we see several skateboarders riding on it.,is making changes in a race of street.,jumps a group of people in a plaza.,is being followed by a man standing in front of a couch.,2\n4302,anetv_TVbPV7X49tw,12927,We see boy is talking. A bike,We see boy is talking.,A bike,gold,drops in a red tire.,is standing at the base of a bike.,is kicking up smoke.,is then placed in a bike bike stand.,2\n4303,anetv_TVbPV7X49tw,12926,A man kisses a woman on his bike. We,A man kisses a woman on his bike.,We,gold,join people on the jump rope as it films the boy.,try to push the makeup on.,see boy is talking.,watches with the help of a car as he continues to release her arms.,2\n4304,anetv_TVbPV7X49tw,12924,We see a man in red talking. A man,We see a man in red talking.,A man,gold,takes a drink from a coffee cup.,is standing before a roof on a house.,jumps off his bike.,puts an arm around the lady.,2\n4305,anetv_TVbPV7X49tw,12922,A bike jumps a group of people in a plaza. We,A bike jumps a group of people in a plaza.,We,gold,serves a platform of a ball and a man hits a wall for half a time.,see four bikes jump a ramp one after another.,\"dancing on one bar with a huge designed face, a man crosses at the other side of the room wearing a black shirt.\",are the rest of the competition.,1\n4306,anetv_j0FMv4RDpEk,14251,\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy is adding the pieces to the pasted area on the roof. A person\",\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy is adding the pieces to the pasted area on the roof.\",A person,gold,is drug by a cord attached to the cat's back.,is holding a sponge and washing various dishes with a plate.,is spraying the paste on the roof pieces.,\"adds a hose to the car, then vacuums and the gangsters get onto the roof tarp.\",2\n4307,anetv_j0FMv4RDpEk,14249,The credits of the clip are shown. Men,The credits of the clip are shown.,Men,gold,are around the beach playing their game.,are playing basketball in an arena.,are working on a roof.,are in a field playing paintball.,2\n4308,anetv_j0FMv4RDpEk,14250,\"Men are working on a roof. A man is spraying the paste on the roof, a male is handing off the pieces, and a guy\",Men are working on a roof.,\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy\",gold,is adding the pieces to the pasted area on the roof.,walks to the woman who is sitting in the yard to the inside of the car.,uses an electric scraper to remove the wax from the car.,cleans the tires in order to get the snow solution in the bucket.,0\n4309,lsmdc0053_Rendezvous_mit_Joe_Black-71371,14818,\"Someone climbs out of the pool, gets halfway up the ladder, points to a stack of towels. Someone turns to the towels, but one hand is occupied with the spoonful of peanut butter, he shifts it to the other hand, can't manage the huge Turkish towel one - handed, now implants the spoon in his mouth, lifts the towel with both hands and\",\"Someone climbs out of the pool, gets halfway up the ladder, points to a stack of towels.\",\"Someone turns to the towels, but one hand is occupied with the spoonful of peanut butter, he shifts it to the other hand, can't manage the huge Turkish towel one - handed, now implants the spoon in his mouth, lifts the towel with both hands and\",gold,settles over the bed.,spreads other dry in it.,begins to barely give it a kiss.,presents it to someone.,3\n4310,anetv_Xj1R81SK_zs,13224,A person is seen throwing objects off the side of a pier. The person,A person is seen throwing objects off the side of a pier.,The person,gold,uses another paddle to slide the board back and fourth to one another.,rides all around on skis.,continuously glides across a board while standing in front of them.,jumps down and begins riding on a board behind a shark.,3\n4311,anetv_Xj1R81SK_zs,10421,The man the surfs being pulled by a shark. The man,The man the surfs being pulled by a shark.,The man,gold,swims near the pool.,waves his cupped hands over his mouth.,waiving at each guy with his back to see.,surfs into shore and high fives his friend and jumps around.,3\n4312,anetv_Xj1R81SK_zs,13225,The person jumps down and begins riding on a board behind a shark. The person,The person jumps down and begins riding on a board behind a shark.,The person,gold,continues grabbing more liquids and shows more of the dog while others having shower around.,rides a wave and cheers with other people.,spins himself around and ends with his abdomen and arms.,slides across the water on skis to the top.,1\n4313,anetv_Xj1R81SK_zs,10419,A man throws a surfboard and meat on a fishing pole into the ocean. The man,A man throws a surfboard and meat on a fishing pole into the ocean.,The man,gold,uses water and pool as cars keep on recovering.,floats and rides his kayak in a lake.,flies up and holds onto a paddle boat.,jumps in and fishes for a shark.,3\n4314,lsmdc0010_Frau_Ohne_Gewissen-51638,4390,Someone gets up from the davenport. He,Someone gets up from the davenport.,He,gold,listens to the music for a moment.,strides over the hallway to the promoter.,jogs out out the smash - up poster window.,starts to climb the hall.,0\n4315,lsmdc0010_Frau_Ohne_Gewissen-51638,4392,He goes quietly over to the window and shuts it and draws the curtain. Someone,He goes quietly over to the window and shuts it and draws the curtain.,Someone,gold,\"goes to the other door of the bathroom, opens it to find the man as he turns his attention to the salesman.\",cringes in the toilet and rice dust pouring over some of the windows.,\"tries the door, but finds it gone.\",takes a few more steps towards her and stops again.,3\n4316,lsmdc0010_Frau_Ohne_Gewissen-51638,4391,Someone just stares at him. He,Someone just stares at him.,He,gold,is brought back into the house.,goes quietly over to the window and shuts it and draws the curtain.,points its way without the helmet.,stops trying to trace the decision being overheard.,1\n4317,lsmdc3060_SANCTUM-29630,18877,\"Now, someone arrives at a narrow crevasse. He\",\"Now, someone arrives at a narrow crevasse.\",He,gold,hands the phone to the police general.,reaches out and smooths pushing the visor behind.,\"takes another hit from the tank, then continues on.\",is hitting a guy with a cape and overcoat and a bright late sweatshirt.,2\n4318,lsmdc3060_SANCTUM-29630,18876,\"Someone crawls over jagged rocks beneath someone's lifeless, dangling arms. Now, someone\",\"Someone crawls over jagged rocks beneath someone's lifeless, dangling arms.\",\"Now, someone\",gold,stands in the pool.,smiles up at the statue for a long time.,paddles closer to shore.,arrives at a narrow crevasse.,3\n4319,lsmdc3060_SANCTUM-29630,18885,\"As his near - motionless body rotates underwater, the young man shuts his eyes. He\",\"As his near - motionless body rotates underwater, the young man shuts his eyes.\",He,gold,begins to sink downward.,glances at her open window.,sweeps the bride down toward someone's body.,lifts his hat over his head.,0\n4320,lsmdc3060_SANCTUM-29630,18881,\"As someone squeezes through a small opening, he raises the canister valve. With his cheeks puffed out, he\",\"As someone squeezes through a small opening, he raises the canister valve.\",\"With his cheeks puffed out, he\",gold,ventures on toward an open cabinet with his foot.,smooths the lid.,sets the encased in glass.,edges his way up along a jutting wall of rock.,3\n4321,lsmdc3060_SANCTUM-29630,18884,\"From above, someone's face breaks the water's surface. A distant bluish light\",\"From above, someone's face breaks the water's surface.\",A distant bluish light,gold,appears in the mixture with shiny shapes and sizes.,expands and shines across the big shape of someone's body.,is visible for the man's view from a window.,sends a faint wave down above the huge lake.,1\n4322,lsmdc3060_SANCTUM-29630,18874,\"Someone inhales once again from the tank. Coming out from around a bulging rock, he\",Someone inhales once again from the tank.,\"Coming out from around a bulging rock, he\",gold,hops back to the cement wall and pours with more.,stops and looks out of the waves at the own park.,sees someone's body wedged against the ceiling up ahead.,\"allows an effort to hold his seat nearby, but can not see if he is working.\",2\n4323,lsmdc3060_SANCTUM-29630,18875,\"Coming out from around a bulging rock, he sees someone's body wedged against the ceiling up ahead. Someone\",\"Coming out from around a bulging rock, he sees someone's body wedged against the ceiling up ahead.\",Someone,gold,returns close to the glass.,\"crawls over jagged rocks beneath someone's lifeless, dangling arms.\",watches with a knitted brow.,stares up a high staircase.,1\n4324,lsmdc3060_SANCTUM-29630,18879,\"Now, someone clutches the boar tooth torch which emits a soft, warm glow. Kicking his flippers, he\",\"Now, someone clutches the boar tooth torch which emits a soft, warm glow.\",\"Kicking his flippers, he\",gold,produces a chair and flashes.,looks in through billowing air.,\"glances across the garden floor, and releases the bird.\",continues on along a rocky passage.,3\n4325,lsmdc3060_SANCTUM-29630,18872,\"He rises, drawing his arms back and allows his father's body to float away. Now underwater, someone\",\"He rises, drawing his arms back and allows his father's body to float away.\",\"Now underwater, someone\",gold,\"emerges from a cavern, clutching a glow stick and the air cylinder.\",stares at the battling fish in the boat.,holds a lantern and swoops down.,\"stands shakily at the edge of the cavernous river, through the village.\",0\n4326,lsmdc3060_SANCTUM-29630,18862,\"Meanwhile in the underwater cave, someone, illuminated by the green light of the glow stick feels his way along the rocks above with clenched teeth. Emerging in open water, he\",\"Meanwhile in the underwater cave, someone, illuminated by the green light of the glow stick feels his way along the rocks above with clenched teeth.\",\"Emerging in open water, he\",gold,\"holds his paintball gun, pointing his wand.\",does a breaststroke toward the murky.,pushes something on the desk.,ties someone tightly with his fist.,1\n4327,lsmdc3060_SANCTUM-29630,18880,\"Kicking his flippers, he continues on along a rocky passage. As someone squeezes through a small opening, he\",\"Kicking his flippers, he continues on along a rocky passage.\",\"As someone squeezes through a small opening, he\",gold,raises the ax and peers through the hole.,raises the canister valve.,spots a guy sneak through the window of the illuminated tunnel light.,speaks on the cell.,1\n4328,lsmdc3060_SANCTUM-29630,18867,\"Now in slow motion, submerged under gently lapping ripples, someone's grip loosens on his son. Someone\",\"Now in slow motion, submerged under gently lapping ripples, someone's grip loosens on his son.\",Someone,gold,takes someone's arm.,\"looks down at him, lips parted.\",stalks off as the board covers mother's limp torso.,\"gets to her feet, someone lies on the hand next to him.\",1\n4329,lsmdc3060_SANCTUM-29630,18864,He sets the stick aside as his father shivers in the water. Someone's pursed lips,He sets the stick aside as his father shivers in the water.,Someone's pursed lips,gold,\"form a brief, loving smile.\",tremble as a portly older man kicks a black beam away from himself.,have become their lips together.,\"meet in a line of cigarette smoke, then closes the book with his hand.\",0\n4330,lsmdc3060_SANCTUM-29630,18870,\"Under the green illumination of the glow stick, the young man blinks, gazing sadly. With one hand pressed to his father's chest, someone\",\"Under the green illumination of the glow stick, the young man blinks, gazing sadly.\",\"With one hand pressed to his father's chest, someone\",gold,bends down and plants a tender kiss on his forehead.,shoves the one from the table onto the other.,\"relaxes back to his writhing body, then turns to look in at the radio, stroking his enormous belly.\",watches someone's movements for a moment and then spins someone from his chair.,0\n4331,lsmdc3060_SANCTUM-29630,18871,\"With one hand pressed to his father's chest, someone bends down and plants a tender kiss on his forehead. He\",\"With one hand pressed to his father's chest, someone bends down and plants a tender kiss on his forehead.\",He,gold,rests the nape of his neck and gazes tenderly at her.,aims his wand at the chessboard.,cannonballs into the doorway.,\"rises, drawing his arms back and allows his father's body to float away.\",3\n4332,lsmdc3060_SANCTUM-29630,18868,\"He withdraws his hand from his father's, letting it fall back into the murk. Sliding his hand from his father's forehead, someone\",\"He withdraws his hand from his father's, letting it fall back into the murk.\",\"Sliding his hand from his father's forehead, someone\",gold,lifts his body to the surface.,looks up at the prefect cocaine stain on someone's hands.,rests his chin next to someone's eyes.,\"touches the card, which secure the deep side of the dagger with their left hand.\",0\n4333,lsmdc3060_SANCTUM-29630,18873,Rise from the valve as he raises it to his lips and takes a hit. Someone,Rise from the valve as he raises it to his lips and takes a hit.,Someone,gold,inhales once again from the tank.,\"reaches down, knocks an empty bottle into the bow, then snatches it up.\",swings the cue and misses to another avail.,has his sweep at the back of his head as a horse starts to run.,0\n4334,lsmdc3060_SANCTUM-29630,18869,\"Sliding his hand from his father's forehead, someone lifts his body to the surface. Under the green illumination of the glow stick, the young man\",\"Sliding his hand from his father's forehead, someone lifts his body to the surface.\",\"Under the green illumination of the glow stick, the young man\",gold,\"blinks, gazing sadly.\",shines down his flashlight.,gets to her feet.,notices someone up ahead.,0\n4335,lsmdc3060_SANCTUM-29630,18882,These bubbles emerge from small craters. Someone,These bubbles emerge from small craters.,Someone,gold,hurries up the drain and they stroll across the warehouse.,\"sets down a gold flower, stops away from it.\",crawls over and presses his lips to one.,lies on the medical deck.,2\n4336,lsmdc3060_SANCTUM-29630,18863,\"Emerging in open water, he does a breaststroke toward the murky. He\",\"Emerging in open water, he does a breaststroke toward the murky.\",He,gold,wears a green baled suit and a uniform.,sets the stick aside as his father shivers in the water.,reaches out to the side and aims around him.,stumbles through the elevated forest without breaking into the applause.,1\n4337,lsmdc3060_SANCTUM-29630,18865,\"Underwater, a flurry of bubbles rises. Someone\",\"Underwater, a flurry of bubbles rises.\",Someone,gold,stands up rope gear around an unfinished place.,emerges from the bar with her soda in between her legs and nods forlornly.,struggles to hold back sobs.,resumes his face with a sneer.,2\n4338,anetv_sOMA_oI7dgk,4379,\"A woman talks in a gym sitting on a rowing machine. Then, the woman\",A woman talks in a gym sitting on a rowing machine.,\"Then, the woman\",gold,lifts the weight over her head with a few others.,gets a small one and put them on the rowing machine.,puts her shoes in the rowing machine and starts to pull a handle with a string.,jumps demonstrating how to use the machine.,2\n4339,anetv_sOMA_oI7dgk,13411,\"A person talks in a gym siting on a machine. Then, the person\",A person talks in a gym siting on a machine.,\"Then, the person\",gold,fasten her feet to the machine and pulls the handle of the machine and sliding back.,spins the guy sideways and attempts to put it on his shirt then grabs the man up.,hold the paint stick while talking in the ring.,sharpens a hoops between elongated sticks.,0\n4340,anetv_sOMA_oI7dgk,4381,\"The woman shows with her right hand the movement of her bottom. Then, the woman\",The woman shows with her right hand the movement of her bottom.,\"Then, the woman\",gold,\"continues exercising, after she stops and talks again.\",gets on a knee with the machine.,holds a claw to hanky her lip and puts a contact in her right ear.,put pliers on a lip.,0\n4341,anetv_sOMA_oI7dgk,4380,\"Then, the woman puts her shoes in the rowing machine and starts to pull a handle with a string. The woman\",\"Then, the woman puts her shoes in the rowing machine and starts to pull a handle with a string.\",The woman,gold,begins to faucet and then mops the floor with others.,shows with her right hand the movement of her bottom.,turns the vacuum to the water and continues stretching on the floor on a sprawling roof.,adds the proper straight haircut and the pan dangle from the lever and chest.,1\n4342,anetv_sOMA_oI7dgk,13412,\"Then, the person fasten her feet to the machine and pulls the handle of the machine and sliding back. Then, the person\",\"Then, the person fasten her feet to the machine and pulls the handle of the machine and sliding back.\",\"Then, the person\",gold,uses a rowing bomb first and ends by using the machine and actually collapses and raise one end with the lever.,rest with the legs on the machine while talking.,wets with a machine's hand and then starts to breakdance.,\"flips the rope across the back paper, class.\",1\n4343,lsmdc3033_HUGO-14500,3845,The automaton completes the drawing. Someone,The automaton completes the drawing.,Someone,gold,sits in a room reading a book on the cd observation room.,looks at someone and smiles.,seems to tower across the sand.,dursleys someone rides in through a gate.,1\n4344,lsmdc3033_HUGO-14500,3844,The automaton draws a five - pointed star then a series of curved lines. Its metal hands,The automaton draws a five - pointed star then a series of curved lines.,Its metal hands,gold,\"are inches apart, apart from each other wrist.\",\"form a circle, then fold to form a dragon.\",move quicker and quicker across the page.,stops a few feet away.,2\n4345,lsmdc3033_HUGO-14500,3846,Someone looks at someone and smiles. The automaton,Someone looks at someone and smiles.,The automaton,gold,\"tips to someone, devastated.\",'s flesh is gold on its skin.,leans his mouth toward hers.,reaches out its hand and signs a name in cursive at the bottom of the page.,3\n4346,lsmdc3033_HUGO-14500,3842,\"They rush back to the table as the automaton begins writing again. Moving its hand, it\",They rush back to the table as the automaton begins writing again.,\"Moving its hand, it\",gold,approaches an endless array of tools.,shows to the analysis.,begins connecting the various shapes and scribbles together with lines.,stops cutting the sphere and takes out its right arm from the brolly.,2\n4347,lsmdc3033_HUGO-14500,3843,He and someone step on either side of the automaton to get a better view. The automaton,He and someone step on either side of the automaton to get a better view.,The automaton,gold,pushes the door seductively.,uses on to get a view.,draws a five - pointed star then a series of curved lines.,\"moves closer and breathes on it as the mass comes and a beautiful river distant, barely visible, and moves it upward.\",2\n4348,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5084,Soldiers fly into the air. The explosion,Soldiers fly into the air.,The explosion,gold,fights men the back of a car as the drone douses them.,knocks someone off the tank and onto the tread.,tumbles into the center of the cavern and explodes.,takes in the rumble.,1\n4349,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5092,\"Someone raises the shovel above his head and brings it crashing down on someone, still hanging from the protruding gun. Someone\",\"Someone raises the shovel above his head and brings it crashing down on someone, still hanging from the protruding gun.\",Someone,gold,makes a look at the horses boot.,angle towards his mirror.,\"smiles at this, gleams almost the last shot of the third pontoon.\",loses his grip and now hangs from the gun suspended only by the strap of his leather pouch.,3\n4350,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5093,Someone loses his grip and now hangs from the gun suspended only by the strap of his leather pouch. He,Someone loses his grip and now hangs from the gun suspended only by the strap of his leather pouch.,He,gold,\"turns toward the gap, opens the door, and aims at it.\",\"buttons onto his own earpiece, then slides down a flight of steps onto one of someone's busy contraptions.\",\"takes his phone out, hauls up to his car, flings it down his shoulder and kicks his leg over the bottle.\",\"screams as the gun scrapes against the cliff wall, sending stones tumbling down over him.\",3\n4351,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5086,He grabs onto the shredded gun protruding from the side of the tank. Someone,He grabs onto the shredded gun protruding from the side of the tank.,Someone,gold,looks down at someone and smiles smugly.,\", someone points at his stomach and he overtakes the two scientists.\",ducks out under sight of an alien.,clears its throat and looks down at it.,0\n4352,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5090,\"Someone climbs up out of the tank, followed by someone. Someone\",\"Someone climbs up out of the tank, followed by someone.\",Someone,gold,appears and pulls someone down.,skyscrapers to an opening lakeside appear.,pushes someone off and end up in the shadows.,watches her as closely as someone goes.,0\n4353,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5087,Someone looks down at someone and smiles smugly. The tank,Someone looks down at someone and smiles smugly.,The tank,gold,heaves its way to the deck of the cubicles.,is approaching a cliff wall.,rises from its top.,raises his arms in the air.,1\n4354,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5083,Someone fires the tank gun at the troop truck. Soldiers,Someone fires the tank gun at the troop truck.,Soldiers,gold,fly into the air.,are thrown away from cigarette smoke.,load a grenade into someone's harness shelf.,get out of the car.,0\n4355,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5089,\"Someone now swings a shovel at someone, smashing at his hands. Someone\",\"Someone now swings a shovel at someone, smashing at his hands.\",Someone,gold,grabs a ringing mace.,\"climbs up out of the tank, followed by someone.\",\"climbs the stairs, his jacket slung over his shoulder.\",is chased by the bottom of the alley horns.,1\n4356,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5085,The explosion knocks someone off the tank and onto the tread. He,The explosion knocks someone off the tank and onto the tread.,He,gold,grabs onto the shredded gun protruding from the side of the tank.,\"ducks, then in his hand to snap his shirt.\",\"carries it out onto the roof, knocking up a gallon pressure vent.\",\"watches from a scaffold, and moves over to a compartment, lying unconscious on the floor.\",0\n4357,lsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5094,\"He screams as the gun scrapes against the cliff wall, sending stones tumbling down over him. Someone\",\"He screams as the gun scrapes against the cliff wall, sending stones tumbling down over him.\",Someone,gold,\"knocks someone into a pile of boxes, then punches him in the face.\",is dragged astride the iceberg.,stops her by the gates.,seek bales connect on top of his barley and surround the pearl.,0\n4358,lsmdc1027_Les_Miserables-6255,10937,Someone and the urchins are in the elephant. Soldiers,Someone and the urchins are in the elephant.,Soldiers,gold,are climbing through the stone roof in their home.,march down the street followed by cavalry.,hurtle through a row of rocks into the stream.,smashes a satellite bird.,1\n4359,lsmdc1027_Les_Miserables-6255,10938,Soldiers march down the street followed by cavalry. Behind them,Soldiers march down the street followed by cavalry.,Behind them,gold,is the large black hearse for someone.,is escorted by someone.,is large black men firing shots.,is a full fire engine.,0\n4360,anetv_9K97gmkVbyQ,15511,She puts and object into a bag while pointing to a box next to her. She,She puts and object into a bag while pointing to a box next to her.,She,gold,continues speaking to the camera and then continues to wrap her arms around her.,stuffs paper into the bag and ends by tying a bow on top.,lets her walk in a yard as the feather pans into the clip.,continues to perform the process and ends with it as well as pushing the object back and forth.,1\n4361,anetv_9K97gmkVbyQ,15510,A woman is seen speaking to the camera while grabbing various bags and laying them out. She,A woman is seen speaking to the camera while grabbing various bags and laying them out.,She,gold,mixes the ingredients together and shows images for mixing them in a bowl.,puts and object into a bag while pointing to a box next to her.,continues mixing around herself and ends by speaking to the camera and presenting the container to her.,sees that one of the pictures is still shot.,1\n4362,lsmdc3046_LARRY_CROWNE-21398,18657,\"Standing in a closet of mostly empty hangers, someone hangs up his red U - Mart polo shirt. He\",\"Standing in a closet of mostly empty hangers, someone hangs up his red U - Mart polo shirt.\",He,gold,\"glances up, still pretending to sell.\",them parks in a sushi cafe.,\"stares at it for a moment, then slides the closet door shut.\",\"smiles in contempt, welcomes the source of his irritation.\",2\n4363,lsmdc3046_LARRY_CROWNE-21398,18659,Someone flips his cellphone shut and rests this chin in his hand. Now at a bathroom sink he,Someone flips his cellphone shut and rests this chin in his hand.,Now at a bathroom sink he,gold,spots a joint on a table.,turns on the cold - water tap.,pops a pill in the mouth.,walks out of the bedroom and glances at the mirror.,1\n4364,lsmdc3046_LARRY_CROWNE-21398,18656,\"An open doorway shows a glimpse of someone shoveling through the house. Standing in a closet of mostly empty hangers, someone\",An open doorway shows a glimpse of someone shoveling through the house.,\"Standing in a closet of mostly empty hangers, someone\",gold,finds someone standing in an indoor garage.,spots a woman outside.,crosses to a door and steps up.,hangs up his red u - mart polo shirt.,3\n4365,lsmdc3046_LARRY_CROWNE-21398,18660,\"Now at a bathroom sink he turns on the cold - water tap. Later, he\",Now at a bathroom sink he turns on the cold - water tap.,\"Later, he\",gold,\"gazes worriedly into the mirror, as he blots his skin with a towel.\",\"returns to his son's apartment, finds the bug beside the open window, and trim the room.\",enters the patio with two cupped hands.,paints a list of what he might do.,0\n4366,lsmdc3046_LARRY_CROWNE-21398,18658,\"He stares at it for a moment, then slides the closet door shut. Someone\",\"He stares at it for a moment, then slides the closet door shut.\",Someone,gold,softly fills a corridor with various screams of coke.,looks unlit in the open trash can.,flips his cellphone shut and rests this chin in his hand.,\"enters its frame, for a moment just past people, coming to the door.\",2\n4367,lsmdc3046_LARRY_CROWNE-21398,18655,\"Now on his back, he presses his hands to his face. An open doorway\",\"Now on his back, he presses his hands to his face.\",An open doorway,gold,shows the vast living room of a room.,shows a wrestler grabbing someone on his knees.,shows an upward view of the lake.,shows a glimpse of someone shoveling through the house.,3\n4368,lsmdc3046_LARRY_CROWNE-21398,18661,\"Later, he gazes worriedly into the mirror, as he blots his skin with a towel. Now he\",\"Later, he gazes worriedly into the mirror, as he blots his skin with a towel.\",Now he,gold,holds a pair of slacks on an ironing board.,\"lies in bed with wide eyes, pulled back, and his eyes on hers.\",walks up to his father's window to find a brunette woman in a white sweater.,lies with a family passing over a small hill.,0\n4369,lsmdc3046_LARRY_CROWNE-21398,18654,\"Later he lies awake on his stomach, with one - half of his face against a pillow. Now on his back, he\",\"Later he lies awake on his stomach, with one - half of his face against a pillow.\",\"Now on his back, he\",gold,presses his hands to his face.,slumps back onto the couch.,rides past them onto the lift.,dabs his head with a towel.,0\n4370,lsmdc1055_Marley_and_me-96550,1218,Marley's chewing a toy on the sofa. He,Marley's chewing a toy on the sofa.,He,gold,snags his cue stick for the opposing club.,closes his eyes and strokes the boy's hair out.,hands a bag of dog food to someone.,fills the store into a card.,2\n4371,anetv_kZB7yxzHOrA,19617,\"The woman stands on the edge of the diving board with her back from the audience, jumped backwards, flipping over as she fall in the water. The woman in swimsuits\",\"The woman stands on the edge of the diving board with her back from the audience, jumped backwards, flipping over as she fall in the water.\",The woman in swimsuits,gold,\"run past the taller woman, who wears a silky red dress and short athletic hair and gray stands.\",\"watch as the gymnast performs a outfit, then lands and dismounts by her performance.\",walked towards the end of the diving board bounced and dive into the pool.,is talking what to do.,2\n4372,anetv_kZB7yxzHOrA,19618,\"The woman in swimsuits walked towards the end of the diving board bounced and dive into the pool. Kids are lining up, they are holding flags, a female kid dive into water from the edge of the diving board, a woman\",The woman in swimsuits walked towards the end of the diving board bounced and dive into the pool.,\"Kids are lining up, they are holding flags, a female kid dive into water from the edge of the diving board, a woman\",gold,and girl started to jump on the water.,is hugging the man as they jumped to the pool.,is standing on the edge of the diving edge.,falls after her.,1\n4373,lsmdc0017_Pianist-56172,19452,\"In bright sun, people march in a column, four abreast, under the command of two Jewish foremen, guarded by two German policemen. They\",\"In bright sun, people march in a column, four abreast, under the command of two Jewish foremen, guarded by two German policemen.\",They,gold,skim across the screen.,emerge with bank sacks and read the helmeted person.,\"hit them with a boom one web, which takes a break of sir someone.\",are being marched out of the ghetto gates.,3\n4374,anetv_qm1dudWLlUg,15169,A man is drinking a beer during a game while others look on and smile. Several people are watching the match and the man drinking a beer,A man is drinking a beer during a game while others look on and smile.,Several people are watching the match and the man drinking a beer,gold,\", then three two shot badminton comes up for a while.\",looks at the camera and smiles.,is in front of him eating sand.,while others watch him.,1\n4375,lsmdc3077_THE_VOW-35666,9814,Someone gives a puzzled shrug. Someone,Someone gives a puzzled shrug.,Someone,gold,walks stiffly past the ambulance.,\"turns out a stool, turns, and takes a drink.\",\"waves at a blonde, who averts her gaze.\",does some kung fu moves and hold the brushes are approached by his forehead.,2\n4376,lsmdc3077_THE_VOW-35666,9813,Someone and someone stare at him with blank expressions. Someone,Someone and someone stare at him with blank expressions.,Someone,gold,lies on his throne.,gives a puzzled shrug.,looks at him tensely.,shakes her head demurely.,1\n4377,lsmdc3077_THE_VOW-35666,9815,Someone slaps someone on the back. Someone,Someone slaps someone on the back.,Someone,gold,waits as someone sees someone's wedding ring.,steps up on someone.,watches someone stagger out.,\"observes the group, tentatively.\",3\n4378,anetv_kXP1tgr476c,13670,The man is sitting on the ground and he is using a brown towel to polish the man's shoes. He also puts liquid onto a small brush and he,The man is sitting on the ground and he is using a brown towel to polish the man's shoes.,He also puts liquid onto a small brush and he,gold,shake it and tie it back and shakes it.,puts it on the man's shoes.,sprays it all over the dog.,begins wiping it with a cloth.,1\n4379,anetv_kXP1tgr476c,13669,This man is sitting outdoors polishing another man's shoes and neither one of their faces are shown. The man is sitting on the ground and he,This man is sitting outdoors polishing another man's shoes and neither one of their faces are shown.,The man is sitting on the ground and he,gold,is using a brown towel to polish the man's shoes.,is looking towards the camera along the bow of the man's helmet.,\"stretches her legs, throwing the young woman on a white top shirt and dropping the baton and starts flip on a floor.\",is done but is n't a pair of sneakers getting there.,0\n4380,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17936,Someone leads the way inside. People,Someone leads the way inside.,People,gold,\"are at the top of an old block, looking in the tall, dark room.\",walk down the long hall toward a large casket.,\"enter and walk down the hall, then continue to dance.\",\"enter, their heels clicking across the marble floor.\",3\n4381,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17933,Someone leads people into the large piazza. People,Someone leads people into the large piazza.,People,gold,stand facing the nearby fence.,walk about and sit at tables in front of a large building.,sneak past him and destroy the armored suit.,drive as lightning blocks the bodhi leaves in the street and catches up to someone.,1\n4382,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17930,\"As they cross over a bridge to the opposite side of the canal, someone steals a flower from a street vendor. He\",\"As they cross over a bridge to the opposite side of the canal, someone steals a flower from a street vendor.\",He,gold,drives the vehicle past a row of obstacles and pins after the lake.,turns away and looks out the door in front of someone.,holds it out to someone.,\"hands it to someone, drains his ice glass and smirks.\",2\n4383,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17938,\"We notice, along with people, that the library contains many stained - glass windows. She\",\"We notice, along with people, that the library contains many stained - glass windows.\",She,gold,bounces glasses down on a cable.,makes it across the living room to the other and at guests having lunch.,\"moves faster, pressing against the grass.\",indicates four huge marble columns that go from floor to ceiling.,3\n4384,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17937,\"People enter, their heels clicking across the marble floor. We\",\"People enter, their heels clicking across the marble floor.\",We,gold,fall off the mountain.,stop on the staircase.,have given the move who saves them.,\"notice, along with people, that the library contains many stained - glass windows.\",3\n4385,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17927,\"The Woman, someone, extends her hand to someone. Someone\",\"The Woman, someone, extends her hand to someone.\",Someone,gold,is cutting the's hair.,leaps out someone and uses a bomb to shadow her.,leads the penguins over to the turret.,registers a look of surprise.,3\n4386,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17932,She hands a slip of paper to someone. Someone,She hands a slip of paper to someone.,Someone,gold,eyes the girl taking the book back.,peeks at his wife then flashes a hungry smile and smiles.,extends the scrap of paper to someone.,sits en side to side.,2\n4387,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17934,People walk about and sit at tables in front of a large building. They,People walk about and sit at tables in front of a large building.,They,gold,hit the catwalk as fast as he can.,sit upside down to their seats.,have arrived at the front steps of the library.,begin to play tennis on a high court on a court.,2\n4388,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17935,They have arrived at the front steps of the library. Someone,They have arrived at the front steps of the library.,Someone,gold,\"sticks his head against his office, then turns to them.\",steps up behind someone and turns.,is at his brother - in - law.,leads the way inside.,3\n4389,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17940,Someone lingers for a moment in front of the window. Someone,Someone lingers for a moment in front of the window.,Someone,gold,whips out the grail diary and opens it to the sketch he noticed in the airplane.,\"grabs someone's hand like someone in the tug, and watches him crowd.\",\"moves towards him, then lowers him a few steps then, then walks over to the door.\",allows someone to find a fifties.,0\n4390,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17925,\"Someone grins, enjoying the repartee. The Woman\",\"Someone grins, enjoying the repartee.\",The Woman,gold,\"of the festival, the joyful adventure of women's, is surrounded by three men.\",\"leaps from a yellow dining table beside the instructor, who shifts her uncertain gaze.\",\"turns to someone, who tips his hat.\",\"on the hat stands hunched, waving her arms.\",2\n4391,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17926,\"The Woman turns to someone, who tips his hat. The Woman, someone,\",\"The Woman turns to someone, who tips his hat.\",\"The Woman, someone,\",gold,rides up on the horse in her running uniform.,finds a bundle of floating books.,makes a small - tulle roll over her teammate's shoulder and ledge.,extends her hand to someone.,3\n4392,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17939,She indicates four huge marble columns that go from floor to ceiling. Someone,She indicates four huge marble columns that go from floor to ceiling.,Someone,gold,looks at the table in her hand.,lingers for a moment in front of the window.,drops into the snow ascending down.,leaps onto someone's knee.,1\n4393,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17928,Someone registers a look of surprise. People,Someone registers a look of surprise.,People,gold,form him in one bed.,move across the muddy tunnel with the approaching below.,snap through the hallway and starts off.,\"walk along the narrow canal, lined with buildings on either side.\",3\n4394,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17922,A limo is parked beside a private airliner that bears someone corporate logo. Someone,A limo is parked beside a private airliner that bears someone corporate logo.,Someone,gold,stares lovingly at him affectionately.,plops down on a bike.,removes a cable from the wheeling paper cart.,peers inside to people.,3\n4395,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17929,\"People walk along the narrow canal, lined with buildings on either side. As they cross over a bridge to the opposite side of the canal, someone\",\"People walk along the narrow canal, lined with buildings on either side.\",\"As they cross over a bridge to the opposite side of the canal, someone\",gold,steals a flower from a street vendor.,eyes a poker charts fiving.,bends to the top of the steps.,pulls up a key.,0\n4396,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17924,People disembark from the Water Bus onto the Boat Landing as other Gondoliers steer their boats in the water. Suddenly a woman,People disembark from the Water Bus onto the Boat Landing as other Gondoliers steer their boats in the water.,Suddenly a woman,gold,comes up to him.,is dragged along the pier.,floats through the ocean to find someone watching the night.,bus comes into the clearing.,0\n4397,lsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17931,He holds it out to someone. She,He holds it out to someone.,She,gold,hands open the champagne before shutting himself in.,\"gets to his feet and picks up the knife, giving it numerous acknowledgment.\",hands a slip of paper to someone.,\"looks down into the grimhold, then smiles.\",2\n4398,lsmdc1046_Australia-91099,18270,The boy stands up on the prow of the boat and grins. He,The boy stands up on the prow of the boat and grins.,He,gold,misses the boat while climbing out of it.,gradually jumps up and down onto the sail on the sail.,jumps up and down excitedly and runs off the boat onto the jetty.,does flips with the board but surfers jump into the water.,2\n4399,lsmdc1046_Australia-91099,18268,She runs down the peer as the boat draws alongside. People,She runs down the peer as the boat draws alongside.,People,gold,stand and examine its being damaged legs.,peer through the smoke.,drives away her family.,watch her and snapping back.,1\n4400,lsmdc1046_Australia-91099,18271,He jumps up and down excitedly and runs off the boat onto the jetty. He,He jumps up and down excitedly and runs off the boat onto the jetty.,He,gold,runs up the wooden steps to the upper level of the wharf.,\"soars over the pitch past tidying gray man, who is black - suited.\",struggles to get in the water and is driven down the river or riding on boat.,stands on the stands with the fish is still attached and moving around with the oars.,0\n4401,lsmdc1046_Australia-91099,18269,People peer through the smoke. The boy,People peer through the smoke.,The boy,gold,\"looks up, through the crowd, followed by the band.\",\"jumps on a balcony, picks up a backpack and scurries away past the rear view mirror.\",stands up on the prow of the boat and grins.,sits on the rim of the bike and hands the crippled driver to him.,2\n4402,lsmdc1046_Australia-91099,18267,Someone stands at the stern of the boat. She,Someone stands at the stern of the boat.,She,gold,\"switches on a light above someone, then begins wearing her long sleeved t - shirt.\",pauses and stares at the snitch as it tilts.,runs down the peer as the boat draws alongside.,cower with the oar.,2\n4403,lsmdc3030_GROWN_UPS-14095,18639,He flutters his hands against someone's face. He,He flutters his hands against someone's face.,He,gold,drops the top of the worktop.,raises his head at the wolf.,walks his fingers over someone's forehead.,walks past the car with his pistol in the air.,2\n4404,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3463,\"Someone looks at his unresponsive mother. Now in a snow dusted cemetery, the boy and his father\",Someone looks at his unresponsive mother.,\"Now in a snow dusted cemetery, the boy and his father\",gold,skateboard through the driveway.,stand at her grave.,sit down the burning bed.,emerge from the house.,1\n4405,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3461,Someone climbs down from the loft. He,Someone climbs down from the loft.,He,gold,\"removes her glasses open, and puts lipstick across her lips.\",arrives with the palatial castle and begins to jump over.,drapes itself on top of a dark - haired woman.,\"lies down beside his mother, his leather bound journal in hand.\",3\n4406,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3462,The boy's gaze remains fixed on the open journal. Someone,The boy's gaze remains fixed on the open journal.,Someone,gold,completes a rubiks cube.,looks at his unresponsive mother.,holds someone's handkerchief out.,shakes someone's hand round.,1\n4407,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3460,The priest heads off and someone follows leaving his wife alone in bed. Someone,The priest heads off and someone follows leaving his wife alone in bed.,Someone,gold,\"gently yanks his ladies head from him, shutting the door behind him.\",holds his wife up at her side.,climbs down from the loft.,smiles broadly as someone reads on.,2\n4408,lsmdc1043_Vantage_Point-89222,52,He puts a document in a folder and slams it shut. Someone,He puts a document in a folder and slams it shut.,Someone,gold,\"launches, sullenly, shaded foreground and rolls down the street.\",is hit.,stares gravely out of the window.,\"remains at the table, which reads.\",2\n4409,lsmdc1043_Vantage_Point-89222,55,Government agents stand watch outside the glass wall of the Hotel Vesta. Someone,Government agents stand watch outside the glass wall of the Hotel Vesta.,Someone,gold,\"leans into a darkened metal door, and an umbrella open on fire.\",run with one man bravely sweeping their hands.,gets out of his limo in a bright empty parking lot dotted with armed agents.,snorts from an opposing player and sends them sprawling nearby.,2\n4410,lsmdc1043_Vantage_Point-89222,54,A seething crowd fills the Plaza someone. The double's motorcade,A seething crowd fills the Plaza someone.,The double's motorcade,gold,drifts even more desert posh as he passes over the curved stone walls.,pulls into the air awning.,advances together onto a balcony from the enamel impact.,passes beneath the watchful snipers.,3\n4411,lsmdc1034_Super_8-8066,5186,He sets the camera up to film the crash site in the distance. News crew helicopters,He sets the camera up to film the crash site in the distance.,News crew helicopters,gold,\"descend, high rise up higher.\",hover in the air above the scene.,places the clothes at the base of a train.,shows the people riding throughout the sunset.,1\n4412,lsmdc1034_Super_8-8066,5187,News crew helicopters hover in the air above the scene. The film makers,News crew helicopters hover in the air above the scene.,The film makers,gold,pop their story in silhouette.,look down at the destruction.,glides out on a soft smooth surface.,cuts up two creeping cars.,1\n4413,lsmdc3007_A_THOUSAND_WORDS-3815,7087,\"With the sun shining brightly overhead, someone walks outside. His shadow\",\"With the sun shining brightly overhead, someone walks outside.\",His shadow,gold,bounces off the huge rock.,falls across leaves lying on the grass.,moves through the wall at the end of the street.,shines across a stairway over it.,1\n4414,lsmdc3007_A_THOUSAND_WORDS-3815,7090,\"Someone gazes up at the bare branches, then begins to cry. Eyes shut he\",\"Someone gazes up at the bare branches, then begins to cry.\",Eyes shut he,gold,reaches out and grabs on to the tree's trunk.,\"swings her feet around his right, hurls them back against the wall, and flings her eyes wide, then lets himself lose.\",reaches out and takes hold of dragon's chest.,hangs his head as he walks away from someone's shadowy children.,0\n4415,lsmdc3007_A_THOUSAND_WORDS-3815,7091,Eyes shut he reaches out and grabs on to the tree's trunk. Someone,Eyes shut he reaches out and grabs on to the tree's trunk.,Someone,gold,leans back and gazes up at the branches.,hops with something and gets up from the driver seat.,\"looks at someone, unsure what he is just saying.\",\"shoots someone, then hesitates.\",0\n4416,lsmdc3007_A_THOUSAND_WORDS-3815,7086,\"The next morning, someone awakes. With the piece of tape still covering his mouth, he\",\"The next morning, someone awakes.\",\"With the piece of tape still covering his mouth, he\",gold,holds it up fiercely.,talks about an hour later.,shuffles along a set of cubicles.,sits up then stands and stares at the tree in his backyard.,3\n4417,lsmdc3007_A_THOUSAND_WORDS-3815,7082,Someone stands and tackles someone to the floor. Someone,Someone stands and tackles someone to the floor.,Someone,gold,\"jumps over to the nearby cockpit, slamming the cabinet door shut.\",\"lies motionless, as someone rolls him onto his back.\",holds himself up next to him as he sits upright.,\"stands, sweating and looks, falling off and falling.\",1\n4418,lsmdc3007_A_THOUSAND_WORDS-3815,7088,His shadow falls across leaves lying on the grass. Someone,His shadow falls across leaves lying on the grass.,Someone,gold,\"looks up, his hands growing smaller.\",steps to the base of the tree and drops to his knees.,lifts it out to an industrial cardboard box tucked beneath and reads.,picks up a purse and pulls him.,1\n4419,lsmdc3007_A_THOUSAND_WORDS-3815,7079,\"Someone tries to clap his hands over someone's mouth, but someone pushes him away. Someone\",\"Someone tries to clap his hands over someone's mouth, but someone pushes him away.\",Someone,gold,gets up and takes it.,chases his friend into the corner.,shoves someone into some shelves.,stands unsteadily in their lifeboat.,2\n4420,lsmdc3007_A_THOUSAND_WORDS-3815,7083,\"Someone lies motionless, as someone rolls him onto his back. Someone\",\"Someone lies motionless, as someone rolls him onto his back.\",Someone,gold,\"punches someone, knocking him out cold.\",pokes a bullet through his mouth with a radio that flickers with his wand.,'s eyes fly helplessly as the athlete approaches his friends.,gets to his feet and spots the blanket of people walking around someone.,0\n4421,lsmdc3007_A_THOUSAND_WORDS-3815,7081,\"Someone throws someone into a wall, then limps away. Someone\",\"Someone throws someone into a wall, then limps away.\",Someone,gold,roves out of the pedestrians as he approaches.,takes the letter from someone.,stands and tackles someone to the floor.,major gets a rolling traffic on his left arm.,2\n4422,lsmdc3007_A_THOUSAND_WORDS-3815,7085,Someone finds a roll of duct tape and wraps up the phone. He,Someone finds a roll of duct tape and wraps up the phone.,He,gold,tears of a piece of tape and covers someone's mouth with it.,\"comes through the door, as a train paces forward on as someone tries to make out.\",slices off the plastic journal and finds it filled with photos.,\"licks hunches, then snips someone's crotch with a whip.\",0\n4423,lsmdc3007_A_THOUSAND_WORDS-3815,7089,Someone steps to the base of the tree and drops to his knees. Someone,Someone steps to the base of the tree and drops to his knees.,Someone,gold,wakes with a start and scratches the edge of his foot.,picks up his watch and yanks rope around his neck.,\"gazes up at the bare branches, then begins to cry.\",places his knife on fire flaming fish.,2\n4424,anetv_bMJlN9iPpCI,4229,The two speak with one another that leads into more clips of sunscreen and people putting it on. The woman and man,The two speak with one another that leads into more clips of sunscreen and people putting it on.,The woman and man,gold,continue playing with one another and end by pulling on two presents.,finish by speaking more.,continue using the equipment to keep up together over and over again and speaking to the camera.,show how to pose as well as everyone standing outside.,1\n4425,anetv_bMJlN9iPpCI,11319,Various clips are shown of people putting on sunscreen followed by news hosts speaking to the camera. The hosts,Various clips are shown of people putting on sunscreen followed by news hosts speaking to the camera.,The hosts,gold,speak a bit of the story in a news deputy.,begin polishing the table with a pumpkin and peeling off the cake.,meats to spread items in a bowl.,continue speaking to one another and ends with the anchor speaking to the camera.,3\n4426,anetv_bMJlN9iPpCI,4228,A man is seen putting sunscreen on herself and a child and leads into news anchors hosting a show. The two,A man is seen putting sunscreen on herself and a child and leads into news anchors hosting a show.,The two,gold,speak with one another that leads into more clips of sunscreen and people putting it on.,watch and lead to one another while using the other riding around and 2007 with one another.,continue skiing while text up the screen followed by a man speaking.,continue moving around and over again and end by pushing others.,0\n4427,anetv_sqcJOpPrexQ,9838,Introductory text scenes are shown explaining the video context. A hand,Introductory text scenes are shown explaining the video context.,A hand,gold,stands on the water fixing another vent.,holds a score choppy on a board.,holds and demonstrates some sort of cutting tool.,sits with the people on a wall.,2\n4428,anetv_sqcJOpPrexQ,9839,A hand holds and demonstrates some sort of cutting tool. The tool,A hand holds and demonstrates some sort of cutting tool.,The tool,gold,is used to cut apart a piece of roofing.,is used by the blade kick.,flips over a box of parts and uses tape on the product.,uses a ground tool to help techniques.,0\n4429,anetv_sqcJOpPrexQ,9840,The tool is used to cut apart a piece of roofing. The hand,The tool is used to cut apart a piece of roofing.,The hand,gold,uses cards in ink movements.,has a sharpener and an iron down.,is a tinder handle.,flips over the roofing briefly before placing it back down.,3\n4430,anetv_sqcJOpPrexQ,16232,\"A hand is now holding the tool, showing it at different angles and then begins using it to cut an object to demonstrate how it cuts. The person then\",\"A hand is now holding the tool, showing it at different angles and then begins using it to cut an object to demonstrate how it cuts.\",The person then,gold,adjusts all of the roof and begins to use metal foot tools to do it over out properly.,measures on a hill in the end and walks to the table on a pair of pointy shears.,cuts the knife's center and shows the bar close up and looking over his shoulder.,picks up the piece it just cut and puts it back down.,3\n4431,anetv_7toItxBIVtk,17713,A large group of people are seen dancing around a room with a woman leading in front. The women,A large group of people are seen dancing around a room with a woman leading in front.,The women,gold,play to dance while the camera captures their movements.,dance all around the room following the woman in front.,continue dancing with one another while others watch on the side.,continue to dance around one another while others watch her on the side.,1\n4432,anetv_7toItxBIVtk,17714,The women dance all around the room following the woman in front. The group,The women dance all around the room following the woman in front.,The group,gold,dances and waits and the violinist smiles again.,continues to the dance who pushes the chair back and forth.,are dancing and dancing together dancing.,continues dancing with one another and ends by holding a pose.,3\n4433,anetv_7toItxBIVtk,7939,Seven women are in an empty dance studio practicing belly dancing with each other. All of them have on black except for the instructor who is dressed in a pink bra and they,Seven women are in an empty dance studio practicing belly dancing with each other.,All of them have on black except for the instructor who is dressed in a pink bra and they,gold,begin moving their hips and pulling their hands up.,continue standing on the stage together.,cheering the performer who was vacuuming the floor in a pew alone with one shoe in the middle and then helped by herself as she,are demonstrating routine that playing percussion instruments and dancing in special protective.,0\n4434,anetv_7toItxBIVtk,7940,\"All of them have on black except for the instructor who is dressed in a pink bra and they begin moving their hips and pulling their hands up. After some time, they\",All of them have on black except for the instructor who is dressed in a pink bra and they begin moving their hips and pulling their hands up.,\"After some time, they\",gold,begin moving their hands through ballet chi at a time.,begin to add in the feet and doing 180 degree turns with their body and moving forward and backwards.,wear and begin back to lay down and kind of fun for the fitness.,\"spin gracefully and does a series of girls jumping, spreading their legs as they dance back and forth.\",1\n4435,anetv_MF3VcmCCgzY,5250,A man in a white belt demonstrates martial arts moves using knee bends. A third man in a black belt,A man in a white belt demonstrates martial arts moves using knee bends.,A third man in a black belt,gold,does rope back and slides two knees from the wood knee and rhythmically as he lands and does a second kick.,seizes a third stick by some other prison.,stands and puts the ring in the middle.,\"demonstrates martial arts moves exhibiting floor work, leg swipes and high kicks.\",3\n4436,anetv_MF3VcmCCgzY,5248,\"One woman and two men, wearing white pants, white shirt and black and white belts demonstrate martial arts moves, barefoot, on a large patch of grass in front of a body of water and a city scape of buildings. A woman with blonde hair in a ponytail and a black belt,\",\"One woman and two men, wearing white pants, white shirt and black and white belts demonstrate martial arts moves, barefoot, on a large patch of grass in front of a body of water and a city scape of buildings.\",\"A woman with blonde hair in a ponytail and a black belt,\",gold,demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork.,\"is standing beside her, knitting again and then starts start braiding them in her hair.\",\"has a mobile phone, a chair and a makeup guy and an orange woman sitting on a bench.\",\"manages to pass her and cigarette growing while looking back in place, from the needle but or something written very gently.\",0\n4437,anetv_MF3VcmCCgzY,5249,\"A woman with blonde hair in a ponytail and a black belt, demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork. A man in a white belt\",\"A woman with blonde hair in a ponytail and a black belt, demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork.\",A man in a white belt,gold,demonstrates martial arts moves using knee bends.,starts dancing with one another and spin her to show the arms of the other woman.,sits down next to someone and sits up straight.,is trying to chop a wall in an office using wall bars to split up.,0\n4438,lsmdc3062_SORCERERS_APPRENTICE-30795,1402,Someone takes a deep breath and chases the mugger. The mugger,Someone takes a deep breath and chases the mugger.,The mugger,gold,submerges his face over his own body.,is in the revolving gate.,reflects off the laser beam.,gathers as the rich animal descends the tunnel.,1\n4439,lsmdc1046_Australia-91106,4382,Someone points and she turns slowly. Their eyes meet and they,Someone points and she turns slowly.,Their eyes meet and they,gold,walk slowly towards one another.,pat each other on the head.,turn to watch them race.,enjoy shaped ice cream.,0\n4440,lsmdc1046_Australia-91106,4385,\"They break apart and look joyfully at one another, then kiss. Someone\",\"They break apart and look joyfully at one another, then kiss.\",Someone,gold,laughs as someone watches the cut off.,runs up and hugs them both.,\"'s mitt, the round face, holds it up.\",\"knots her hair, and gives a spotted shrug.\",1\n4441,lsmdc1046_Australia-91106,4384,They cling to each other tears running down their cheeks. They,They cling to each other tears running down their cheeks.,They,gold,dip their hands behind their heads.,fly off the top of the mountain.,\"break apart and look joyfully at one another, then kiss.\",\"make their way along a quaint, smooth slope.\",2\n4442,lsmdc1046_Australia-91106,4383,\"Someone frowns in disbelief, then smiles and they embrace. They\",\"Someone frowns in disbelief, then smiles and they embrace.\",They,gold,take another bunch and move themselves so they are able to stop short.,\"turns to his left, the flames of his clock block beneath the bed, over the devastation.\",\"turn to look at someone, who gulps.\",cling to each other tears running down their cheeks.,3\n4443,lsmdc1046_Australia-91106,4386,The army sergeant sounds the horn of his truck and smiles. Someone,The army sergeant sounds the horn of his truck and smiles.,Someone,gold,reaches the main camera of the alley and wrestles with his cord.,\"holds the flag for someone, just holding someone and his helmet.\",steps across it revealing his disguised suit.,stops and stares at people and the boys.,3\n4444,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84854,16367,Someone's tea was poisoned. He,Someone's tea was poisoned.,He,gold,\"is by himself in bed, with a towel on top shoulders.\",is tilting up towards green as the goblin walks away.,shows someone her bloodstained handkerchief.,indicates a partially folded figure.,2\n4445,anetv_I5Q0DcmTs9c,12944,Man is siting in a bed playing an harmonica and an acordion. man,Man is siting in a bed playing an harmonica and an acordion.,man,gold,is playing a keyboard.,is sitting playing instruments in a room.,grabs the guitar and start to talk.,is sitting in a room playing a guitar.,1\n4446,anetv_I5Q0DcmTs9c,10602,A boy with a harmonica around his neck sits holding an accordion in a bedroom. We,A boy with a harmonica around his neck sits holding an accordion in a bedroom.,We,gold,see a boy playing the harmonica and accordion at the same time.,his mouth he sits down and plays a youtube show of tv playing green music.,man twists the fabric from the elder to just the left side of the bedroom.,york is shown in the room.,0\n4447,anetv_I5Q0DcmTs9c,10603,We see a boy playing the harmonica and accordion at the same time. The boy,We see a boy playing the harmonica and accordion at the same time.,The boy,gold,plays the guitar without looking to the camera.,stops and puts down the guitar.,finishes and looks the smile from his face.,finishes and stops and looks up.,3\n4448,anetv_Or7mIy83LsQ,18374,A person pass behind the teen. An athlete,A person pass behind the teen.,An athlete,gold,falls for his large green field.,runs alongside another person and people hug.,performs long jump in the sand box.,walks towards the edge and swings on a soccer mat.,2\n4449,anetv_Or7mIy83LsQ,18375,An athlete performs long jump in the sand box. Another athlete,An athlete performs long jump in the sand box.,Another athlete,gold,is doing forward springs.,appears while standing on the sand and flipping around.,comes over his body.,runs and jumps long over the sand box.,3\n4450,anetv_Or7mIy83LsQ,18373,\"A teen stand on a track, then he runs and jumps long on a sand box, after the teen stands and walk. A person\",\"A teen stand on a track, then he runs and jumps long on a sand box, after the teen stands and walk.\",A person,gold,falls and then lands and lands on the white sand.,runs after the person.,in white walks to the crowd.,pass behind the teen.,3\n4451,lsmdc3052_NO_STRINGS_ATTACHED-25288,8971,\"In a park near the water, someone and someone have a barbecue with some of their friends. Someone\",\"In a park near the water, someone and someone have a barbecue with some of their friends.\",Someone,gold,lands quickly among the branches of the statues and soars one to someone.,throws a frisbee to someone and runs at her.,\"drives up on a rooftops of lawn and peeks into the bedroom, raining hard in a pre - storm hill.\",\"the job makes about to be hidden to the surprise at, all of the boys's friends make it a little so quickly yourself\",1\n4452,lsmdc3052_NO_STRINGS_ATTACHED-25288,8972,Someone throws a Frisbee to someone and runs at her. He,Someone throws a Frisbee to someone and runs at her.,He,gold,moves toward someone and steps up to her.,wrestles her to the ground.,walks the frightened dog back.,is on a floor trying to weave his way into the white forest.,1\n4453,anetv_ps0a-GGomX4,4904,\"An Asian male is standing outside on a field with a long stick in his hand. All of a sudden, the boy takes off running and throws the stick clear across the field and people\",An Asian male is standing outside on a field with a long stick in his hand.,\"All of a sudden, the boy takes off running and throws the stick clear across the field and people\",gold,run far along the grass and play in the field onto the field.,shuffle off with it and dance the ball around him.,run and go measure the distance.,appear in the background behind him.,2\n4454,anetv_ps0a-GGomX4,16611,The man picks up a javelin and runs down a track. He,The man picks up a javelin and runs down a track.,He,gold,throws the javelin into the field in front of him.,continues to throw the javelin and throws it again.,takes a javelin from him and spins it around for a while onto the field.,jumps off and lands in the sand several times.,0\n4455,anetv_ps0a-GGomX4,16610,People are standing behind a fence watching a man. The man,People are standing behind a fence watching a man.,The man,gold,adds a piece of paper around a triangle with the finger.,is filming the man.,picks up a javelin and runs down a track.,shows how to hold the helmet with a broom.,2\n4456,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10528,Someone keeps staring into the basin. He,Someone keeps staring into the basin.,He,gold,\"peers out from the hiding spot, then climbs back into his cockpit.\",takes a few deep breaths.,takes a bite from her.,tends his small hand rest on the round table and sets it gently on a table.,1\n4457,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10525,Someone removes a metal box from the burning wardrobe. He,Someone removes a metal box from the burning wardrobe.,He,gold,opens the box and takes out small toys.,\"steps through the window, where two vampires pass a bearded woman in her late 20s.\",hurries to bed and is still wearing the vest.,case just that apart to further love.,0\n4458,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10527,Swirling black smoke consumes the image of the boy and someone takes his face out of the pensive. Someone,Swirling black smoke consumes the image of the boy and someone takes his face out of the pensive.,Someone,gold,keeps staring into the basin.,\"lies on a couch, wrapped in a shawl.\",swims out of the swimming pool of the gym.,points at the tv.,0\n4459,anetv_dgbGv3G4k5M,8996,They put lights on the tree. They,They put lights on the tree.,They,gold,chop the wood and blow the leaves.,put bulbs onto the tree.,flatten shiny decorations along the fence.,puffed the fabric over a christmas tree as they swing before a christmas tree.,1\n4460,anetv_dgbGv3G4k5M,8997,They put bulbs onto the tree. A little girl,They put bulbs onto the tree.,A little girl,gold,\"leaves, looking up.\",bumps a tree over and bows.,starts to break out the wall.,does a spin in front of the tree.,3\n4461,anetv_dgbGv3G4k5M,8995,They set up a Christmas tree in the corner of the room. They,They set up a Christmas tree in the corner of the room.,They,gold,put the sandwiches into the oven.,put lights on the tree.,lay their seats against the tree.,continue cleaning the table.,1\n4462,anetv_dgbGv3G4k5M,8994,A family is rearranging furniture in a living room. They,A family is rearranging furniture in a living room.,They,gold,test bulbs over and over.,shine two white particles into the ping iron bar.,split another set of green markings.,set up a christmas tree in the corner of the room.,3\n4463,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86348,3734,\"Table linen has been thrown over some tables and chairs to form a tent. Someone crawls into the makeshift den, and someone\",Table linen has been thrown over some tables and chairs to form a tent.,\"Someone crawls into the makeshift den, and someone\",gold,takes high shallow breaths.,\"steps off the frame of a small balcony, where someone is reading a magazine.\",\"screams, allowing someone to drink it.\",follows on his hands and knees.,3\n4464,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86348,3733,Someone hobbles down a flight of stairs in the dark. Table linen,Someone hobbles down a flight of stairs in the dark.,Table linen,gold,silk flowers he has given someone is lying around him.,has been thrown over some tables and chairs to form a tent.,stands on a bulletin board.,soldiers look out at them as one man enters the corner.,1\n4465,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73324,10313,They drive on down a dark stretch of road. She,They drive on down a dark stretch of road.,She,gold,jumps on her way and hobbles.,\"by the night - clip, he gets out, noticing a few other cars.\",switches off the lamp.,\"presses her lips together, stifling tears.\",3\n4466,anetv_jUmfhYsA5r0,16084,\"A man stands against a wall playing guitar and singing. Then, the man\",A man stands against a wall playing guitar and singing.,\"Then, the man\",gold,stops playing and then talks.,stops playing the drums.,eats a hookah pipe while talking to the camera.,starts playing the guitar.,0\n4467,anetv_jUmfhYsA5r0,3453,The man begins playing the guitar while singing. He,The man begins playing the guitar while singing.,He,gold,blows the harmonica off on the board and takes the time.,continues playing while sitting on the floor playing drums with another teen in the distance while another baby plays nearby.,continues to play the guitar and sing and ends by speaking to the camera.,picks up his mobile and lays down against the back of the table in another bumper car.,2\n4468,anetv_jUmfhYsA5r0,3452,A man is seen leaning against a wall holding a guitar. The man,A man is seen leaning against a wall holding a guitar.,The man,gold,kneels down then begins singing and playing an instrument.,continues playing the instrument and speaking.,throws his arms around and looks around.,begins playing the guitar while singing.,3\n4469,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14587,\"In the common room, someone uncorks the vial of Liquid Luck. Watched by people, he\",\"In the common room, someone uncorks the vial of Liquid Luck.\",\"Watched by people, he\",gold,quietly closes the gauze from the wound.,steps into the general's room with the bearded woman.,looks over as someone steps past him.,empties its contents into his mouth.,3\n4470,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14585,She backs away and he closes his eyes. Someone,She backs away and he closes his eyes.,Someone,gold,peels past the old box in a bedroom.,\"stands rooted to the spot, his breathing shallow.\",clips his score into a screen.,turns away from the car and drives off.,1\n4471,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14581,\"Through the gap, someone sees the door. A bird\",\"Through the gap, someone sees the door.\",A bird,gold,\"flies towards him, revealing the size of a floating bird.\",\"flies with a lever, a huge fires.\",is laid in bed.,flies out and settles on a stone shelf.,3\n4472,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14575,He rounds the corner and sees someone sprawled on his back. Bloodstains,He rounds the corner and sees someone sprawled on his back.,Bloodstains,gold,are strikes up in battle with someone's raised swords.,gives him an injection.,spread over someone's white shirt.,stands in his doorway as someone stands.,2\n4473,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14579,\"As someone leads him forward, they are reflected in the mirror behind. They\",\"As someone leads him forward, they are reflected in the mirror behind.\",They,gold,rides up beside someone as he drives a lawn mower by the central park.,30 - something is lying on the floor.,see the shock rip up from someone's skin.,wander through the room of requirement.,3\n4474,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14568,\"Loosening his tie, someone rushes into the boy lavatories, leans over a basin then pulls off his sweater. Turning on a tap, he\",\"Loosening his tie, someone rushes into the boy lavatories, leans over a basin then pulls off his sweater.\",\"Turning on a tap, he\",gold,studies his distraught face in a mirror.,lurches away slings his backpack over his shoulder.,looks up at the colorful sky.,checks his cell phone playing the guitar.,0\n4475,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14574,\"His book in one hand, his wand in the other, someone slowly walks the length of the cubicles. He\",\"His book in one hand, his wand in the other, someone slowly walks the length of the cubicles.\",He,gold,reaches down someone's clenched covering and picks up the bar of it.,lies down on top of his bed.,\"struggles to hold up two inverted chess pieces, and heads to the bottom of the stairs.\",rounds the corner and sees someone sprawled on his back.,3\n4476,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14589,They look at him as he stares into the distance. They,They look at him as he stares into the distance.,They,gold,get to their feet.,weave through the rain?,are in an aircraft by an overlook.,fall into the sphere.,0\n4477,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14592,Someone walks past and spots him. He,Someone walks past and spots him.,He,gold,approaches and gives someone a fright.,removes the bowl from the station table and searches the anxiously.,\"leads the instructor down a staircase, scattering their books.\",turns around and sees a nazi man in his own hat covering his ribs.,0\n4478,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14567,Someone strides along the upstairs corridor where the bird cage is now empty. Someone,Someone strides along the upstairs corridor where the bird cage is now empty.,Someone,gold,notices the gps tracker and starts off.,aims his partner's weapon at the volunteer's head.,\"watches as someone watches someone walk on, walking along the hall.\",is n't far behind.,3\n4479,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14565,Someone makes his way upstairs. Someone,Someone makes his way upstairs.,Someone,gold,demonstrates someone's tattoos.,pushes his way through a group of students.,\"stops her with one hands, draws and leads her over of the bed.\",\"punches someone, who is struggling to hold back.\",1\n4480,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14582,She walks towards him and stands close. They,She walks towards him and stands close.,They,gold,\"take a sip of age, and she gets to his feet and turns to look at him with a broad grin.\",step out of the way.,exchanged a long look.,are talking in calm weather.,2\n4481,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14576,Bloodstains spread over someone's white shirt. Someone,Bloodstains spread over someone's white shirt.,Someone,gold,strides in and brushes past someone.,takes a bite of burger and goes with someone.,fearfully runs circles among the crowd.,wears an olive shirt and tie.,0\n4482,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14572,Someone appears round and ducks back. Someone,Someone appears round and ducks back.,Someone,gold,\"peeks out, his image reflected in a mirror.\",\"mounts the beam, climbs the beam back.\",bear a huge rib insect as someone clings to him.,catches the cat and yanks out a piece of paper.,0\n4483,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14561,She looks over his shoulder and stares. Someone,She looks over his shoulder and stares.,Someone,gold,drags the butcher away away.,turns and sees someone watching them.,walks down the spiral.,\"holds her close to her, smiles.\",1\n4484,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14560,He picks up his book then marches up the hall to someone. She,He picks up his book then marches up the hall to someone.,She,gold,pats a nearby door.,looks over his shoulder and stares.,picks up the grail and kisses her hand.,plants a kiss on her forehead.,1\n4485,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14583,They exchanged a long look. She,They exchanged a long look.,She,gold,folds her hands in front of her and bows belt.,glances at the book and takes it out of his hand.,tries to pull the wharf off of her hair.,strides out of the pub beside them.,1\n4486,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14562,\"Someone backs away, turns, and someone's out. Someone\",\"Someone backs away, turns, and someone's out.\",Someone,gold,brings out a gun then brings someone to a halt.,enters a hospital corridor.,walks away with her friend.,grabs someone's arm.,2\n4487,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14590,\"Holding a small tin and a pair of scissors, he attempts to cut a piece of plant. It\",\"Holding a small tin and a pair of scissors, he attempts to cut a piece of plant.\",It,gold,comes up from the bucket and places the lid in the box.,\", he straightens up and grips the handle again then holds the poles up and hands them aside.\",\"evening he goes to a tin door behind it, opens it.\",waves its vine - like tentacles.,3\n4488,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14578,\"Standing in front of the unicorn tapestry, someone takes someone's outstretched hand and grips it firmly. As someone leads him forward, they\",\"Standing in front of the unicorn tapestry, someone takes someone's outstretched hand and grips it firmly.\",\"As someone leads him forward, they\",gold,\"ride down, with a huge heart standing by the pedestal.\",watch from the back chamber.,are reflected in the mirror behind.,copy loudly and the three of them look coldly at each other.,2\n4489,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14577,\"In the Gryffindor common room, the potions book lies on the table in front of someone. Someone\",\"In the Gryffindor common room, the potions book lies on the table in front of someone.\",Someone,gold,crosses to someone and sits beside him.,\"bounces out of his wheelchair and sits, sipping the whiskey slowly.\",writes as he halts a fine parade with them.,is venturing in a mirror.,0\n4490,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14564,Someone marches down the great hall. Someone,Someone marches down the great hall.,Someone,gold,\"turns and glances up at someone, who remains behind.\",notes her grandfather's descent.,holds up a lighted tray.,makes his way upstairs.,3\n4491,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14558,Someone reads a note scrawled in his advanced potion book. Someone,Someone reads a note scrawled in his advanced potion book.,Someone,gold,jumps to his feet.,watches the fairy and shakes the log.,opens a front door.,takes a framed photo with someone.,0\n4492,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14563,Someone walks away with her friend. Someone,Someone walks away with her friend.,Someone,gold,\"eyes her, then changes to a vanity mirror.\",eats an ice cream cone.,bears the group - thumbs tether and joke around the boy.,marches down the great hall.,3\n4493,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14588,\"Watched by people, he empties its contents into his mouth. They\",\"Watched by people, he empties its contents into his mouth.\",They,gold,laugh when he steps in doorway.,draw on it.,look at him as he stares into the distance.,read the screen.,2\n4494,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14591,It waves its vine - like tentacles. Someone,It waves its vine - like tentacles.,Someone,gold,\"watches him, fascinated.\",holds the door action.,cracks an alien - shaped disc in someone's beak.,walks past and spots him.,3\n4495,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14586,He swallows hard but his eyes remain shut. Someone,He swallows hard but his eyes remain shut.,Someone,gold,breaks the hand railings and the thug pushes it open.,takes the band from her notes.,lets his arm rest on the grass.,\"returns, steps close to someone, and kisses him gently on the lips.\",3\n4496,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14569,He splashes water on his ashen face. Someone,He splashes water on his ashen face.,Someone,gold,cries and has her head turned in her direction.,watches the sobbing someone from the doorway.,\"is dancing - - skinned, inspecting any sort of something.\",peers out his window as a few others appear to shoot into a reflective balcony.,1\n4497,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14584,She glances at the book and takes it out of his hand. He,She glances at the book and takes it out of his hand.,He,gold,\"stares at her admiringly, then hangs her head.\",\"gazes at her, then looks up in awe.\",\"puts his foot on the surface, opens it and examines him.\",keeps looking at her.,3\n4498,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14566,Someone pushes his way through a group of students. Someone,Someone pushes his way through a group of students.,Someone,gold,pushes a stack of three cage boys to their left.,comes out and starts to flight away.,strides along the upstairs corridor where the bird cage is now empty.,is filling a large tower.,2\n4499,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14570,Someone watches the sobbing someone from the doorway. Someone,Someone watches the sobbing someone from the doorway.,Someone,gold,relaxes a small sigh.,throws dirt onto someone's arms.,\"is clutching her forehead and sobs, as the rain sinks down on her head, looks up at the ceiling.\",draws his wand and cast a spell.,3\n4500,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14573,\"Someone peeks out, his image reflected in a mirror. The two of them\",\"Someone peeks out, his image reflected in a mirror.\",The two of them,gold,\"crawl on the floor, peering underneath the cubicles.\",sit around in small chairs on a neighboring balcony.,stare rapidly in the rocks.,pull closely by two shirts.,0\n4501,anetv_FaDD5MyZj88,2870,A man is shown doing a jump in slow motion on a track several times back to back. The camera,A man is shown doing a jump in slow motion on a track several times back to back.,The camera,gold,pans back to the man who is swimming several times to catch a fish.,pans around and shows him running down with the ball.,shows several different angles of the athlete jumping in a line as well as into the pit on sand.,zooms in on the flag as another person performs next to him.,2\n4502,anetv__vbwjI1QA7g,11490,Man is standing in a room with dart game haging on the wall. he,Man is standing in a room with dart game haging on the wall.,he,gold,advances on his piece of equipment.,\"took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart.\",\"kicks a wood against ball, throwing it back and forth.\",lunges outside kicking the ball with his finger.,1\n4503,anetv__vbwjI1QA7g,11491,\"He took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart. he\",\"He took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart.\",he,gold,is about the strawberries.,continues talking while tossing an apple in front of his eyes.,sees the man imploring the other about the game in the circle.,throw the dart to the board and lean on the wall.,3\n4504,lsmdc3078_THE_WATCH-36362,7094,Someone glares at someone as someone approaches Chelsea. Someone,Someone glares at someone as someone approaches Chelsea.,Someone,gold,wraps his arms around her and grinds her from behind.,\"points one finger skyward, then heads out with an audience.\",share a sweet - up curtsey.,\"holds his hand, round the man's waist, it does someone repeatedly.\",0\n4505,lsmdc3078_THE_WATCH-36362,7096,\"Someone follows them into the basement stairwell, locking the door behind him. Someone\",\"Someone follows them into the basement stairwell, locking the door behind him.\",Someone,gold,\"nervously glances back, then takes a step down.\",\"goes inside, finally ready to strike.\",\"blanches at someone's question, like they were seeing at night and the others for someone at school.\",\"is with the other officer, someone, beside someone.\",0\n4506,lsmdc3078_THE_WATCH-36362,7095,Someone wraps his arms around her and grinds her from behind. Someone,Someone wraps his arms around her and grinds her from behind.,Someone,gold,\"follows them into the basement stairwell, locking the door behind him.\",\"draws, someone glances up with someone after them.\",knocks someone's arm and forces him towards the small truck which the waterside coast is clear.,hangs the penguin back in his grip as it bears someone's name.,0\n4507,anetv_95pMelnv2dQ,17954,Men play badminton in the sand. A man on the left,Men play badminton in the sand.,A man on the left,gold,watch the man play soccer behind him.,places his hands on the drum.,hit the ball while the rope rocks it.,serves the birdie both men on the right miss it.,3\n4508,anetv_95pMelnv2dQ,17955,The man on the right serves and the man on the left hits it back but it hits the net. A man,The man on the right serves and the man on the left hits it back but it hits the net.,A man,gold,stands on the left watching.,hits a ball with two sticks.,blocks a miniature volt.,tucks the mallet into his goal.,0\n4509,anetv_wsrSku74OpM,11157,A person moves the cups alongside the table while the person continues throwing and the men switch place. The two,A person moves the cups alongside the table while the person continues throwing and the men switch place.,The two,gold,continue walking with one another while others watch on the side.,continue to play while more shots are shown of people playing play.,continue to chat as they continue to play cards.,continue taking turns while the camera captures their movements.,3\n4510,anetv_wsrSku74OpM,11156,A close up of solo cups are shown followed by a man throwing balls. A person,A close up of solo cups are shown followed by a man throwing balls.,A person,gold,is seen sitting around a stage with nets and hitting it.,moves the cups alongside the table while the person continues throwing and the men switch place.,is seen moving the hoop around the body and smiling into the distance.,takes a ball and knocks when his home ends up in the screen.,1\n4511,anetv_ffyPN2-EDg4,1541,The man shovels the snow on a roof while the cameraman talks. The man,The man shovels the snow on a roof while the cameraman talks.,The man,gold,stops scooping the snow.,is washing the car using a shovel and a car wash.,adjusts the handlebar on that light with the scraper circle the man.,shows all over the store.,0\n4512,anetv_ffyPN2-EDg4,1540,A man walks up to a snow scoop. The man,A man walks up to a snow scoop.,The man,gold,waves to the camera.,unhooks a blue calf and uses the puff one using his horse.,\"jumps and flips and jumps into the air, and cheers to the frisbee.\",shovels the snow on a roof while the cameraman talks.,3\n4513,anetv_IGcalXmWUwA,5504,Several shots of people playing basketball are shown and leads into two men demonstrating a move. The same move,Several shots of people playing basketball are shown and leads into two men demonstrating a move.,The same move,gold,is shown again from various angles and instructor the user how to do it.,shows various the players shaking their heads as they play.,is then shown several more tricks.,continue chasing a ball while others watch on the side of the gym.,0\n4514,anetv_IGcalXmWUwA,5505,The same move is shown again from various angles and instructor the user how to do it. More tricks,The same move is shown again from various angles and instructor the user how to do it.,More tricks,gold,or scratching along by several more information appear.,and shown of people jump forward.,join the men around the dart and get one team all down and perform more time in the background.,are shown as well as step by step instruction on how to properly do it.,3\n4515,lsmdc3074_THE_ROOMMATE-4197,10966,\"Upstairs, someone sits up in bed. Later, she\",\"Upstairs, someone sits up in bed.\",\"Later, she\",gold,walks from someone to the mess basement.,arrives downstairs in a camisole and knee - length lounge pants.,glances across the table at the boy who was sitting in his bed.,steps into a luxurious bedroom.,1\n4516,lsmdc3074_THE_ROOMMATE-4197,10984,Someone arrives at her roommate's side. Someone,Someone arrives at her roommate's side.,Someone,gold,\"stares after them, then walks away.\",walks down beside him and stands up.,offers a gentle smile.,\"walks into the parking theater, then climbs into a seat.\",2\n4517,lsmdc3074_THE_ROOMMATE-4197,10980,\"Looking outside, someone notices the brunette hunched uneasily at a table. The brunette's friends\",\"Looking outside, someone notices the brunette hunched uneasily at a table.\",The brunette's friends,gold,\"salutes, then steps away.\",cluster their illustrations in their terraces.,watch her daughter slip up and slip out.,rejoin her with drinks.,3\n4518,lsmdc3074_THE_ROOMMATE-4197,11006,\"Outside, someone leans to her car's tank. Sidling up to her, he\",\"Outside, someone leans to her car's tank.\",\"Sidling up to her, he\",gold,turns to the driver.,storms toward the car.,steers her around the bar.,leans against the car.,3\n4519,lsmdc3074_THE_ROOMMATE-4197,10968,\"Crossing the foyer, she peers through the partially open kitchen door. Someone\",\"Crossing the foyer, she peers through the partially open kitchen door.\",Someone,gold,glances through a window then peeks over a steps.,'s heels sits comfortably on a wooden floor.,sees her slump into the sink.,\"sits by his daughter, staring ahead.\",3\n4520,lsmdc3074_THE_ROOMMATE-4197,10971,Someone slips out of view. Someone,Someone slips out of view.,Someone,gold,\"arrives and steps away from her, tearing off the invisibility cloak.\",\"remains at the counter, wearing a morose pout.\",hurls senator buddy away.,joins him and holds a flier.,1\n4521,lsmdc3074_THE_ROOMMATE-4197,10986,\"The three girls huddle uncomfortably, shifting their uneasy gazes. Someone\",\"The three girls huddle uncomfortably, shifting their uneasy gazes.\",Someone,gold,\", his beefy hand, beats the shield as the steel door works.\",lift three teens on a skimpy lifeboat and sit back down.,watches from her truck's tray and takes a seat facing each other.,\"looks up at someone, who glares resentfully at her.\",3\n4522,lsmdc3074_THE_ROOMMATE-4197,10976,\"Three girls halt at the entrance, their smiles fading. Two of them\",\"Three girls halt at the entrance, their smiles fading.\",Two of them,gold,fall backwards out onto the ground.,peer behind them between reverie.,stand outside with him.,face their brunette friend.,3\n4523,lsmdc3074_THE_ROOMMATE-4197,11007,\"Sidling up to her, he leans against the car. She\",\"Sidling up to her, he leans against the car.\",She,gold,has been cracked and broken.,\"forces a smile, then watches him place his hand on her hand.\",picks up the prop.,throws two columns at him.,1\n4524,lsmdc3074_THE_ROOMMATE-4197,10988,\"She stares at someone, who gravely stands her ground. Her eyes glistening, the troubled blonde\",\"She stares at someone, who gravely stands her ground.\",\"Her eyes glistening, the troubled blonde\",gold,\"musters a smug smile, then follows someone off.\",runs her hand through the great wooden binder.,looks at her unresponsive friend.,presses the glass aside to someone and manages a giggle.,0\n4525,lsmdc3074_THE_ROOMMATE-4197,11003,\"She finds no sign of her roommate. Returning inside, someone\",She finds no sign of her roommate.,\"Returning inside, someone\",gold,notices someone's broomstick restraints.,accompanies her through the kitchen door.,enters past the servant in his bathroom.,\"yanks open the drawers of someone's desk, one after another, anxiously searching their contents.\",3\n4526,lsmdc3074_THE_ROOMMATE-4197,10993,Someone watches her roommate flip open her cellphone. The woman,Someone watches her roommate flip open her cellphone.,The woman,gold,\"stops and finds someone's bed room against the wall of a child in row, wearing a pink skirt and black shorts.\",looks at her computer.,takes a turn and watches someone's friend alone.,\"scowls resentfully at the phone, then eyes her roommate.\",3\n4527,lsmdc3074_THE_ROOMMATE-4197,10990,\"She speeds down a tree lined street, scattering fallen autumn leaves in its wake. At the wheel, someone\",\"She speeds down a tree lined street, scattering fallen autumn leaves in its wake.\",\"At the wheel, someone\",gold,stares ahead with a dull expression.,\"stands alone, deep in mid - water.\",\"climbs on her car, pulling the barrel of the revolver in his hand.\",is agitated as he rounds the mower.,0\n4528,lsmdc3074_THE_ROOMMATE-4197,11000,She cheerfully takes it from the bed. She,She cheerfully takes it from the bed.,She,gold,tosses it onto the back of her hand.,steps behind her and smooths dotting her sleeping legs.,\"finishes the call, has something that is being next to her.\",\"leaves again, shutting the door behind her.\",3\n4529,lsmdc3074_THE_ROOMMATE-4197,10967,\"Later, she arrives downstairs in a camisole and knee - length lounge pants. Crossing the foyer, she\",\"Later, she arrives downstairs in a camisole and knee - length lounge pants.\",\"Crossing the foyer, she\",gold,steps onto her jazz broom.,peers through the partially open kitchen door.,drapes her arms around her parents and kisses him passionately.,closes the file on her desk and slips it against her side.,1\n4530,lsmdc3074_THE_ROOMMATE-4197,10977,Two of them face their brunette friend. Someone,Two of them face their brunette friend.,Someone,gold,\"bandages his team, someone with a red chain on someone.\",stands at the counter as her father glances down with a goofy grin.,grabs a bag and grabs her wrist.,follows someone's gaze to them.,3\n4531,lsmdc3074_THE_ROOMMATE-4197,10983,The brunette looks up wearily as someone approaches. Someone,The brunette looks up wearily as someone approaches.,Someone,gold,arrives at her roommate's side.,looks back at the house.,glances skyward with a final frown.,leaves someone with a few small bags streaming behind her.,0\n4532,lsmdc3074_THE_ROOMMATE-4197,10962,\"Now in the darkened house, someone comes downstairs in a t - shirt and sweatpants. He\",\"Now in the darkened house, someone comes downstairs in a t - shirt and sweatpants.\",He,gold,sits up in bed and holds out a bag.,comes up from the poster.,smiles when he hears.,\"lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room.\",3\n4533,lsmdc3074_THE_ROOMMATE-4197,10994,\"The woman scowls resentfully at the phone, then eyes her roommate. Now back at the dorm, someone\",\"The woman scowls resentfully at the phone, then eyes her roommate.\",\"Now back at the dorm, someone\",gold,sits at a handheld laptop shaving office.,does a big towel of someone.,returns a coke with his son.,takes out her ear buds as she walks down the hall in exercise clothes and running shoes.,3\n4534,lsmdc3074_THE_ROOMMATE-4197,11002,\"Opening it, she peers down the hallway. She\",\"Opening it, she peers down the hallway.\",She,gold,walks up the steps.,checks for boxes near her desk.,finds no sign of her roommate.,\"picks up the wooden panel, then turns to it.\",2\n4535,lsmdc3074_THE_ROOMMATE-4197,10995,\"Now back at the dorm, someone takes out her ear buds as she walks down the hall in exercise clothes and running shoes. She\",\"Now back at the dorm, someone takes out her ear buds as she walks down the hall in exercise clothes and running shoes.\",She,gold,\"arrives at her room, sweat glistening on her face and throat.\",\"gone, she turns, rubbing her arms over her heart, letting the massive birds spin around.\",\"comes onto stereo and watches launched from a bedroom where a guy works on the homework to some files, displaying a rubiks cube.\",steels herself and pullman before she answers.,0\n4536,lsmdc3074_THE_ROOMMATE-4197,10999,\"Someone notices her sketchpad lying on her bed. Taking an uneasy breath, she\",Someone notices her sketchpad lying on her bed.,\"Taking an uneasy breath, she\",gold,hurries down to the front door.,gives an illustrated goodbye to the reunited family.,approaches the spiral - bound notebook.,reels at them confused.,2\n4537,lsmdc3074_THE_ROOMMATE-4197,10989,\"Her eyes glistening, the troubled blonde musters a smug smile, then follows someone off. She\",\"Her eyes glistening, the troubled blonde musters a smug smile, then follows someone off.\",She,gold,\"strides through the doors, steps into the room.\",\"speeds down a tree lined street, scattering fallen autumn leaves in its wake.\",sits up at the bar and leans her hands on her chest.,smiles wistfully and lowers his gaze.,1\n4538,lsmdc3074_THE_ROOMMATE-4197,10964,He turns with a start. She,He turns with a start.,She,gold,speedily signs off someone's arm.,fires at someone in the humvee.,sits glumly at an island counter.,\"stares in long, dazed eyes.\",2\n4539,lsmdc3074_THE_ROOMMATE-4197,10987,\"Someone stands, takes a step closer, and looks her in the eye. She\",\"Someone stands, takes a step closer, and looks her in the eye.\",She,gold,sees a low cabinet full of tools sharpening nail boots.,hands her knees full of photos.,\"stares at someone, who gravely stands her ground.\",opens her eyes then glances at a stack of mugshots.,2\n4540,lsmdc3074_THE_ROOMMATE-4197,10978,\"Someone follows someone's gaze to them. As the brunette waits outside, her two friends\",Someone follows someone's gaze to them.,\"As the brunette waits outside, her two friends\",gold,give her a high five.,\"come in, glaring at someone as they pass by.\",turn and glare at him.,glimpse a building across an overpass.,1\n4541,lsmdc3074_THE_ROOMMATE-4197,10970,\"He faces someone, who stares at the counter. Someone\",\"He faces someone, who stares at the counter.\",Someone,gold,nods and walks toward the vestibule.,\"lingers at the door, listening intently.\",\"raises the gun from her side, and cuts past in two glasses.\",\"stares out at the faint, vapor surface.\",1\n4542,lsmdc3074_THE_ROOMMATE-4197,10985,Someone offers a gentle smile. The three girls,Someone offers a gentle smile.,The three girls,gold,\"move off and one of the children gestures, then the three of them go to someone's concerned asian apartment.\",stare at someone in wonder.,meet the senator's gaze.,\"huddle uncomfortably, shifting their uneasy gazes.\",3\n4543,lsmdc3074_THE_ROOMMATE-4197,11001,\"She leaves again, shutting the door behind her. Opening it, she\",\"She leaves again, shutting the door behind her.\",\"Opening it, she\",gold,pulls out his strip of paint.,finds her eyes locked on the door.,peers down the hallway.,launches it down toward the floor.,2\n4544,lsmdc3074_THE_ROOMMATE-4197,10975,\"Her arms folded across her chest, someone eyes someone. A smile\",\"Her arms folded across her chest, someone eyes someone.\",A smile,gold,spreads across someone's pale face.,\"spreads on her smooth, feminine features.\",remains on someone's delicate black dress.,falls on someone's face as she stares up at the sky.,0\n4545,lsmdc3074_THE_ROOMMATE-4197,11004,\"Returning inside, someone yanks open the drawers of someone's desk, one after another, anxiously searching their contents. She\",\"Returning inside, someone yanks open the drawers of someone's desk, one after another, anxiously searching their contents.\",She,gold,looks in surprise at someone's somber wife.,follows someone through a shopping bag into kid - and - striped bikini display.,sees a sleeps patient on a cot.,flips through a couple of sketch pads and finds a yellow prescription pill bottle.,3\n4546,lsmdc3074_THE_ROOMMATE-4197,10996,\"She arrives at her room, sweat glistening on her face and throat. Someone\",\"She arrives at her room, sweat glistening on her face and throat.\",Someone,gold,finds her kissing the peck on the cheek.,flicks her fingers over the fan as someone continues to kiss her.,breaks position by a hooded partition.,faces her displayed drawings.,3\n4547,lsmdc3074_THE_ROOMMATE-4197,11005,\"Inside, a worker watching a football game spots her through the window and gets up. Outside, someone\",\"Inside, a worker watching a football game spots her through the window and gets up.\",\"Outside, someone\",gold,fixes him with playful samurai gaze.,drags on a run across his studio phone.,leans to her car's tank.,watches someone eat his parents.,2\n4548,lsmdc3074_THE_ROOMMATE-4197,10979,\"The troubled blonde glances at the girls as they place their order, then answers her roommate with a cryptic gaze. Looking outside, someone\",\"The troubled blonde glances at the girls as they place their order, then answers her roommate with a cryptic gaze.\",\"Looking outside, someone\",gold,saunters over to his desk and moves down one of the other tables.,notices the brunette hunched uneasily at a table.,tugs at the wire then crosses to him.,\"wanders in to address marley, who hands it to him.\",1\n4549,lsmdc3074_THE_ROOMMATE-4197,10974,\"Someone gazes after her, then follows someone out. Later, the two girls\",\"Someone gazes after her, then follows someone out.\",\"Later, the two girls\",gold,follow a sidewalk past a brick wall.,stand and twirl together.,sit up in bed.,stand by the bar as someone talks about their work.,0\n4550,lsmdc3074_THE_ROOMMATE-4197,10992,\"Riding shotgun, someone maintains a cheery clear - eyed gaze. Someone\",\"Riding shotgun, someone maintains a cheery clear - eyed gaze.\",Someone,gold,\"pulls away, disgustedly.\",shakes his head and walks away.,and his father hurry through the window.,watches her roommate flip open her cellphone.,3\n4551,lsmdc3074_THE_ROOMMATE-4197,10982,\"Putting her coffee on the table, she stands and goes outside. The brunette\",\"Putting her coffee on the table, she stands and goes outside.\",The brunette,gold,\"woman, little makeup artist, is a firm look.\",glances down and crouches to the professor in his 40s.,leaves on her porch then reach outside.,looks up wearily as someone approaches.,3\n4552,lsmdc3074_THE_ROOMMATE-4197,11008,\"She forces a smile, then watches him place his hand on her hand. He caresses her cheek, and she\",\"She forces a smile, then watches him place his hand on her hand.\",\"He caresses her cheek, and she\",gold,squirts his crotch with gasoline.,pulls her lips from his cheek.,grips her right hand.,flutters it over her tongue.,0\n4553,lsmdc3074_THE_ROOMMATE-4197,10973,Someone leaves as her daughter arrives downstairs. Someone,Someone leaves as her daughter arrives downstairs.,Someone,gold,\"gathers up a bowl, pasta, and chefs in the block.\",\"opens the oven door for a little, then rushes inside.\",\"gazes after her, then follows someone out.\",looks at the grave.,2\n4554,lsmdc3074_THE_ROOMMATE-4197,10972,\"Upstairs, someone steps into view. Someone\",\"Upstairs, someone steps into view.\",Someone,gold,fires a fire extinguisher on a contemplative guard.,leaves as her daughter arrives downstairs.,waves from a basin sharply.,hands someone and kit a container of oil cleaner.,1\n4555,lsmdc3074_THE_ROOMMATE-4197,10991,\"At the wheel, someone stares ahead with a dull expression. Riding shotgun, someone\",\"At the wheel, someone stares ahead with a dull expression.\",\"Riding shotgun, someone\",gold,lets some clothes drop in.,shuts a crate of shattered glass shop doors.,strolls up to the man with someone.,maintains a cheery clear - eyed gaze.,3\n4556,lsmdc3074_THE_ROOMMATE-4197,10965,\"She sits glumly at an island counter. Upstairs, someone\",She sits glumly at an island counter.,\"Upstairs, someone\",gold,follows with her dress soaked.,is back at the liquor store on the coffee.,sits up in bed.,finds someone sanding a wall with scissors.,2\n4557,lsmdc3074_THE_ROOMMATE-4197,10963,\"He lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room. He\",\"He lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room.\",He,gold,walks down the hall into the ward light.,turns with a start.,\"quickly follows someone, lying in the bed, brushing her teeth.\",disappears into the starry sky.,1\n4558,lsmdc3092_ZOOKEEPER-45122,16411,The giraffe licks it and he spits it out. She,The giraffe licks it and he spits it out.,She,gold,stands and peers closely at the mirror.,walks away from him and looks at the monkey.,rips off the cake.,\"gallops toward him, then strolls over and notices.\",1\n4559,lsmdc3092_ZOOKEEPER-45122,16412,She walks away from him and looks at the monkey. Someone,She walks away from him and looks at the monkey.,Someone,gold,gives a thumbs up.,wakes with a start.,leans her head down and shakes her head.,shoots him a glance.,0\n4560,lsmdc3092_ZOOKEEPER-45122,16413,Someone gives a thumbs up. A wire basket,Someone gives a thumbs up.,A wire basket,gold,illuminates a expose district.,drops from his hand.,floats up from his hand.,juts above his head.,1\n4561,anetv_lx83HHNNrlc,109,The lady gestures with her hands. The man,The lady gestures with her hands.,The man,gold,hands the mop to the lady and empties the red bucket in the sink.,\"opens her coat, combing the dog as the woman lies up again.\",in pink helps the girl up on the head.,lifts the man again and talks to the camera.,0\n4562,anetv_lx83HHNNrlc,106,A lady discusses with the man. The man,A lady discusses with the man.,The man,gold,takes the mop out of the red bucket and moves the bucket aside.,is sitting his bike.,is looking for a mustache.,begins wrapping spins in other girl's arm.,0\n4563,anetv_lx83HHNNrlc,110,The man hands the mop to the lady and empties the red bucket in the sink. The male,The man hands the mop to the lady and empties the red bucket in the sink.,The male,gold,dances the mop to the floor again.,\"grabs alcohol, while the lady mops.\",demonstrates how to set the coats.,mops on his knees while mopping.,1\n4564,anetv_lx83HHNNrlc,111,\"The male grabs alcohol, while the lady mops. The man\",\"The male grabs alcohol, while the lady mops.\",The man,gold,talks before the person in the black shirt returns to insert the screw.,talks again and shows another client working talking.,hands the bucket and mop to the male.,starts vacuuming using the big knife.,2\n4565,anetv_lx83HHNNrlc,104,A man holds the handle of a cleaning tool. The man,A man holds the handle of a cleaning tool.,The man,gold,cleans the kitchen floor.,returns to the vehicle.,turns off the tire.,uses the swept seam to clean it.,0\n4566,anetv_lx83HHNNrlc,108,The lady stands next to a male. The lady,The lady stands next to a male.,The lady,gold,resumes shaving her leg.,dismounts and lifts items on the table.,gestures with her hands.,climbs and covers her face.,2\n4567,anetv_lx83HHNNrlc,105,The man cleans the kitchen floor. A lady,The man cleans the kitchen floor.,A lady,gold,stands in front of him and puts his socks on the wardrobe.,discusses with the man.,puts a blindfold on her mouth.,pets her white dog on the mirror.,1\n4568,lsmdc1048_Gran_Torino-92489,9154,\"Someone eyes someone, who stares unwaveringly back at him. Morning, someone\",\"Someone eyes someone, who stares unwaveringly back at him.\",\"Morning, someone\",gold,walks through another window and peers through the gap.,flops awkwardly to his side.,flags up out of the great blue sun as it cuts to paris.,walks into someone's kitchen and finds him sipping a mug of coffee.,3\n4569,lsmdc1010_TITANIC-77160,14211,Someone nods at someone then strides off. Nearby mustached someone,Someone nods at someone then strides off.,Nearby mustached someone,gold,faces someone and offers someone's grin.,hands his bat a bat.,places one leg on the table.,sits with the captain.,3\n4570,lsmdc1010_TITANIC-77160,14210,\"In a dining room, someone sips tea with two other women. Someone\",\"In a dining room, someone sips tea with two other women.\",Someone,gold,walks a few feet away from her.,nods at someone then strides off.,faces a dark - haired man.,holds out a vodka bottle.,1\n4571,lsmdc3014_CAPTAIN_AMERICA-5807,12833,\"At a Hydra airfield, someone approaches a stool bearing a bottle of white wine and a glass. Standing beneath the wing of a huge airplane, he\",\"At a Hydra airfield, someone approaches a stool bearing a bottle of white wine and a glass.\",\"Standing beneath the wing of a huge airplane, he\",gold,finds a food - - - from a table.,bursts into the room.,taps it open as someone gets to her feet.,addresses a small group of masked pilots.,3\n4572,lsmdc3014_CAPTAIN_AMERICA-5807,12835,Someone lifts a glass of wine. Someone,Someone lifts a glass of wine.,Someone,gold,grabs her briefcase from one of his pockets and picks up the safe.,\"drinks, then raises his glass toward the pilots as they pump both of their fists in the air.\",takes someone's arm then runs back into someone's room.,steps up from the seat to the places and hands on a table.,1\n4573,lsmdc3014_CAPTAIN_AMERICA-5807,12838,Someone steps through a doorway and finds someone drinking whiskey at a table near the bar. He,Someone steps through a doorway and finds someone drinking whiskey at a table near the bar.,He,gold,takes two drinks from his glasses.,stops in a pretty unlit.,\"glances at her, then pours another shot.\",catches a smoke in the dimly lit room.,2\n4574,lsmdc3014_CAPTAIN_AMERICA-5807,12836,\"Someone drinks, then raises his glass toward the pilots as they pump both of their fists in the air. Elsewhere at night, someone steps over rubble and someone as she\",\"Someone drinks, then raises his glass toward the pilots as they pump both of their fists in the air.\",\"Elsewhere at night, someone steps over rubble and someone as she\",gold,peers down at a tranquil tiger perched on a limb above him.,passes the humans rabbit statue.,walks through a bombed out pub.,climbs the wind escape from his shack.,2\n4575,lsmdc3014_CAPTAIN_AMERICA-5807,12837,\"Elsewhere at night, someone steps over rubble and someone as she walks through a bombed out pub. Someone\",\"Elsewhere at night, someone steps over rubble and someone as she walks through a bombed out pub.\",Someone,gold,\", a woman in a dark, suit and jacket trim decorating a silk hedge with a scar on his shoulder.\",\"sits on the bench, watching him with shining eyes.\",takes off his sunglasses as he strolls down a corridor.,steps through a doorway and finds someone drinking whiskey at a table near the bar.,3\n4576,lsmdc3014_CAPTAIN_AMERICA-5807,12834,\"Standing beneath the wing of a huge airplane, he addresses a small group of masked pilots. Someone\",\"Standing beneath the wing of a huge airplane, he addresses a small group of masked pilots.\",Someone,gold,accompanies the rows characters.,walks beside someone's grave.,moves back to the zebra holding his towel.,lifts a glass of wine.,3\n4577,anetv_tj0sI8M3tro,8037,A woman is sitting down talking. She,A woman is sitting down talking.,She,gold,picks up paint brushes and begins painting on a canvas.,puts oil on boxes.,lifts up two metal foil and drops them on the floor.,is singing a small black flute.,0\n4578,anetv_tj0sI8M3tro,18933,A woman appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background. A closeup of a round tip brush,A woman appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background.,A closeup of a round tip brush,gold,appears with suntan lotion and looks from the first match.,shows a younger woman is shown using flute and still on her feet frame and dumping it into the backyard before she goes.,appears before transitioning to an image of a hand using a brush to paint flowers on a white surface.,is shown and a screen of a polished eye is shown.,2\n4579,anetv_tj0sI8M3tro,18932,A woman demonstrates how to paint with a round brush. A woman,A woman demonstrates how to paint with a round brush.,A woman,gold,talks to the camera while the camera pans around in slow motion.,paints polish truck onto their nails.,brush the paper and finger something on the top of the hedge.,appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background.,3\n4580,anetv_tj0sI8M3tro,8038,She picks up paint brushes and begins painting on a canvas. She,She picks up paint brushes and begins painting on a canvas.,She,gold,continues painting the nails on another room with paint and leaning around with words running around.,starts painting a pink flower onto the canvas.,continues to create several lines and flips before raking.,continues painting the a painting and looking at the camera with more text in her head.,1\n4581,lsmdc0005_Chinatown-48283,3127,She looks up when he enters. Someone,She looks up when he enters.,Someone,gold,hangs his head in shock.,\"slouches, resting her hands on his chest and jerks his head at his own chest, turning his neck painfully.\",\"moves to his desk, barely breaking stride at the sight of her.\",turns and looks at someone who sits staring out.,2\n4582,lsmdc0005_Chinatown-48283,3126,Someone tries to tell him something but someone goes on into his office. She,Someone tries to tell him something but someone goes on into his office.,She,gold,whips her hair from its jar.,walks over to the stove.,looks up when he enters.,\"rushes down the corridor, gun raised.\",2\n4583,lsmdc0005_Chinatown-48283,3125,\"Someone enters, drops his hat on someone's desk. Someone\",\"Someone enters, drops his hat on someone's desk.\",Someone,gold,keeps his son on a stool yards away.,steps back as someone walks around the chalkboard near the entrance to his yellowed terrace.,\"catches someone's hand, then wanders lower slightly.\",tries to tell him something but someone goes on into his office.,3\n4584,lsmdc3058_RUBY_SPARKS-28006,1663,The gray - bearded therapist gets up. He,The gray - bearded therapist gets up.,He,gold,leaves someone at the wheel.,hands someone a teddy bear.,talks to the recruits.,runs up the stairs.,1\n4585,anetv_3xEonDbWxTM,13437,The wall is cleaned with a wet towel using the solution in the pot. The lady,The wall is cleaned with a wet towel using the solution in the pot.,The lady,gold,uses a rag on the sink to wash it open.,takes man's bows and begins talking about the soap of the towel.,use the shovel and clean her hands up to see her wet.,points to an area of the wall that is discolored.,3\n4586,anetv_3xEonDbWxTM,13436,A lady stands with a pot and shows an area of a wall. The wall,A lady stands with a pot and shows an area of a wall.,The wall,gold,blows liquid to a lady playing the toy.,is cleaned with a wet towel using the solution in the pot.,shows and the boy holds up the plaster for the night.,sits on a wooden floor and begins to assemble furniture.,1\n4587,anetv_Zjfw0n32DBA,10493,Toothpaste is applied to the toothbrush and handed to the boy. A boy,Toothpaste is applied to the toothbrush and handed to the boy.,A boy,gold,is applying the towel to the man creating hysterical teeth in the bathroom.,brushes his teeth with an electric toothbrush.,sits in a bathroom and he starts brushing the toothbrush.,tries to wash clothes and rinses the water off.,1\n4588,anetv_Zjfw0n32DBA,13510,Then he begins brushing his teeth by himself. Then the adult,Then he begins brushing his teeth by himself.,Then the adult,gold,helps him brush his teeth properly to help the child by showing him how to use the brush on all his teeth.,gets up in his hands and continues to talk to the camera.,does shaving his forehead and feet.,disappear the kisses once done.,0\n4589,anetv_Zjfw0n32DBA,13509,He takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it. Then he,He takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it.,Then he,gold,takes a razor and spits out the toothpaste and spits it out.,begins brushing his teeth by himself.,appears cleaning his teeth with the lace and tie it.,uses the scissors to brush him through and wipes off enough to remove from a towel.,1\n4590,anetv_Zjfw0n32DBA,10494,A boy brushes his teeth with an electric toothbrush. The boy,A boy brushes his teeth with an electric toothbrush.,The boy,gold,pretends to try to wash the person's hands.,lands in front of his own camera.,inserts a toothbrush through the roots brush.,has his teeth brushed by someone.,3\n4591,anetv_Zjfw0n32DBA,10492,The boy dances his feet on a wood floor. Toothpaste,The boy dances his feet on a wood floor.,Toothpaste,gold,is applied to the toothbrush and handed to the boy.,\"his balance and marching behind the boy, the female picks the gymnast into a fireplace, eventually climbs on top of him.\",and returns to cutting the grass.,\"brings the scarf down the loose rug, someone returns home, the moon's shining through the narrow hole.\",0\n4592,anetv_Zjfw0n32DBA,13508,There's a little toddler boy wearing a brown shirt and jeans standing in his bathroom brushing his teeth with a toothbrush. He,There's a little toddler boy wearing a brown shirt and jeans standing in his bathroom brushing his teeth with a toothbrush.,He,gold,\"brushes past gives a little yellow shirt, a certain jump and clips a blow dryer.\",takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it.,\"is standing at the top of the tub and he turns and smiles as he makes ironing his shirt, then spreads his legs.\",turns the ladder together with his left rub on his paper.,1\n4593,anetv_Zjfw0n32DBA,10491,The boy hands the tooth brush to someone. The boy,The boy hands the tooth brush to someone.,The boy,gold,enters with binoculars and zooms on.,\"loses his hat, gets it and swings.\",carves his cream up.,dances his feet on a wood floor.,3\n4594,anetv_FDTkn9SFPfs,15781,A person holding a cat straightens the cat's paw. The person,A person holding a cat straightens the cat's paw.,The person,gold,cuts the cat's claws with a scissor shape clipper.,cuts the cat claws.,starts playing the cat.,stands and pets the cat.,0\n4595,anetv_FDTkn9SFPfs,15782,The person cuts the cat's claws with a scissor shape clipper. The cat,The person cuts the cat's claws with a scissor shape clipper.,The cat,gold,starts to open again with another one.,attacks the the cutter.,stops inches from the big cat.,picks up it's cat to maintain the animal.,1\n4596,lsmdc3090_YOUNG_ADULT-43839,1308,\"Later, someone awakes in bed beside the brown - haired man. She\",\"Later, someone awakes in bed beside the brown - haired man.\",She,gold,glances sideways at the man and slowly slides her right arm free.,\"is opposite, eating a sack of hands.\",lowers her gaze and blinks thoughtfully.,averts her eyes with her reflection.,0\n4597,lsmdc3090_YOUNG_ADULT-43839,1310,Someone raises her head and stares at the birth notice sticking out of her purse on the floor. She,Someone raises her head and stares at the birth notice sticking out of her purse on the floor.,She,gold,stares at someone cleaning his garage for photos.,\"pours into a box like styrofoam, piled at a window.\",bangs and clicks us a sixth.,lies backward and stares at the ceiling.,3\n4598,lsmdc3090_YOUNG_ADULT-43839,1316,She unzips a pet carrier and releases her small white dog. Someone,She unzips a pet carrier and releases her small white dog.,Someone,gold,notices her is still coming down the stairs.,\"grabs a pipe, goes off and shuts the door behind her.\",totes her luggage out of her apartment.,covers her with an orange glow.,2\n4599,lsmdc3090_YOUNG_ADULT-43839,1313,She pulls a suitcase out of her closet. Someone,She pulls a suitcase out of her closet.,Someone,gold,rummages through dresser drawers and plastic bins.,starts to look straight from her head.,talks to a nurse and someone enters it.,\"covers paint bottles with a small, sealed bottle.\",0\n4600,lsmdc3090_YOUNG_ADULT-43839,1312,Someone slides out of bed and stands. She,Someone slides out of bed and stands.,She,gold,straddles the booth in a dark hallway.,marches out of the room.,\"looks at him, aghast.\",pulls a suitcase out of her closet.,3\n4601,lsmdc3090_YOUNG_ADULT-43839,1305,She opens the email of the baby announcement and stares at the infant's photo. Someone,She opens the email of the baby announcement and stares at the infant's photo.,Someone,gold,gains on the pole.,browses through outfits in her closet.,\"pokes at someone, gazing at the spasm.\",goes on the phone into his mother's colleague.,1\n4602,lsmdc3090_YOUNG_ADULT-43839,1311,She lies backward and stares at the ceiling. Someone,She lies backward and stares at the ceiling.,Someone,gold,turns on the tv with her feet and dives to the ground.,looks down mannequin's shapely face.,\"continues swinging proudly, chasing someone.\",slides out of bed and stands.,3\n4603,lsmdc3090_YOUNG_ADULT-43839,1314,Someone rummages through dresser drawers and plastic bins. She,Someone rummages through dresser drawers and plastic bins.,She,gold,\"is loaded with thousands of downstairs folders, knives and papers.\",\"takes out a cassette tape titled mad love, buddy.\",takes off his shirt and pulls a dark card from the laundry table.,pulls the floor out by his briefcase and tosses out a sheet of paper.,1\n4604,lsmdc3090_YOUNG_ADULT-43839,1317,\"Someone totes her luggage out of her apartment. Driving a red Mini Cooper, she\",Someone totes her luggage out of her apartment.,\"Driving a red Mini Cooper, she\",gold,gives out the wry cash.,rolls on her silver partition.,takes the keys and answers.,pulls to a stop.,3\n4605,anetv_nKnsvy7-wAI,9099,The man then plays a game with a small girl and bows after each game. The two,The man then plays a game with a small girl and bows after each game.,The two,gold,women continues waving and laughing to each other.,continue to play with the man laughing at the camera and him giving her a kiss in the end.,begin playing with the front nails and the cord cuts out pictures are being shown.,women take turns playing pose.,1\n4606,anetv_iBz_YrU-T80,7016,More shots are shown of people drinking coffee in various setting including at the dinner table and at the office. In the end the wife,More shots are shown of people drinking coffee in various setting including at the dinner table and at the office.,In the end the wife,gold,stand out.,is propped up with food and etc while seated in a chair.,pours her husband a cup of coffee while he speaks to the camera.,talks to the camera.,2\n4607,anetv_iBz_YrU-T80,10895,Four adults are sitting at a table in a kitchen. A man,Four adults are sitting at a table in a kitchen.,A man,gold,put a variety of balls on a side table.,drinks a cup of coffee.,makes a salad on the table.,is washing his face as well.,1\n4608,anetv_iBz_YrU-T80,7015,The video leads into various old clips of a television show with lots of women drinking coffee and speaking to the camera. More shots,The video leads into various old clips of a television show with lots of women drinking coffee and speaking to the camera.,More shots,gold,are shown of people drinking coffee in various setting including at the dinner table and at the office.,are shown of people hosting a news segment that leads into a man knitting and setting down a phone.,of people are shown facing and a person speaking to the camera and hanging up a set of beer pong.,are shown of boys playing beer pong as well as people throwing a pro and others still laughing.,0\n4609,anetv_iBz_YrU-T80,10896,A man drinks a cup of coffee. They,A man drinks a cup of coffee.,They,gold,\"roll a table, and it also fall in between cups.\",play under water while a woman drinks her cup and use their drinks to cheer.,talk to each other about something.,drink another cup and play a cup.,2\n4610,anetv_iBz_YrU-T80,10897,They talk to each other about something. Several women,They talk to each other about something.,Several women,gold,start shoveling the sand.,stand in a pool and dance laps.,are drinking tea outdoors.,move up on arms.,2\n4611,anetv_VnBZR-yBLXA,12235,A woman is seen standing behind a counter speaking to the camera and then beginning to peel a potato. She,A woman is seen standing behind a counter speaking to the camera and then beginning to peel a potato.,She,gold,grinds the items back to the counter and places it on a board and putting them on a plate.,she sharpening and bending on the floor that she put up to the bucket and begins to open out the sink.,continues to peel potatoes while pausing to speak to the camera and smile.,puts a pair of rollers in the bright dress and puts it in a bowl.,2\n4612,anetv_hToIzZ3o6Ic,3480,A hand paints a wardrobe white with a paintbrush. The hand,A hand paints a wardrobe white with a paintbrush.,The hand,gold,picks up a white rug.,is shown where he did strip the plaster on the wall of a mop with a rag now.,covered nails and shapes products paint his nails these colors.,splashes the wax on it.,0\n4613,anetv_hToIzZ3o6Ic,3479,The credits of the clip alongside a bucket of paint are shown. A hand,The credits of the clip alongside a bucket of paint are shown.,A hand,gold,is holding a cat.,cleans the outdoor area of a city.,move over the back of the mop to the arm of the chair.,paints a wardrobe white with a paintbrush.,3\n4614,anetv_Uofnmkfohkc,16022,Several shots of him riding around are shown as well as him failing and riding more. He fist bumps the camera man and more shots,Several shots of him riding around are shown as well as him failing and riding more.,He fist bumps the camera man and more shots,gold,are shown of him demonstrating how to skate.,are shown of him getting ready to ski.,are shown of him riding around.,are shown of him wandering through the trees.,2\n4615,anetv_Uofnmkfohkc,16021,A young child is seen riding a skateboard down a road following a group of older boys. Several shots of him riding around,A young child is seen riding a skateboard down a road following a group of older boys.,Several shots of him riding around,gold,begins skateboarding while people watch on the sides.,catches it and beginning a special ride.,are shown near a car exit and showing everyone riding in the car.,are shown as well as him failing and riding more.,3\n4616,anetv_GHBeLaysVaA,8106,A girl in the middle spins around. They,A girl in the middle spins around.,They,gold,kneel down on the stage together.,smile and rearrange into the camera.,see that putting eight petals.,spin lightly into a piece of stopping.,0\n4617,anetv_GHBeLaysVaA,7423,A large group of people are seen moving out onto a large stage and performing a dance routine with one another. The people,A large group of people are seen moving out onto a large stage and performing a dance routine with one another.,The people,gold,continue back as buckets on their legs and end by holding a pose in their arms.,continue moving around on the stage while speaking to the camera and playing with while waving to the camera.,continue dancing around one another and end by making a pose.,push the people around while moving their arms and ends by dancing on someone sides.,2\n4618,lsmdc1024_Identity_Thief-82236,1121,Someone exits the back holding the pink slip. A huge sweat stain,Someone exits the back holding the pink slip.,A huge sweat stain,gold,sits on a table.,appears in the air above him.,runs down the front of his shirt.,appear on the sweaty thin screen.,2\n4619,lsmdc1024_Identity_Thief-82236,1128,\"As she bolts, someone hurls a small appliance. He\",\"As she bolts, someone hurls a small appliance.\",He,gold,\"sniffs, and licks the liquor in his hand.\",whacks her with a guitar.,removes it from the hamper.,\"parts the toilet, then swerves onto a tall wooden table.\",1\n4620,lsmdc1024_Identity_Thief-82236,1127,\"Standing, she backs him into the counter and throws him over a chair. As she bolts, someone\",\"Standing, she backs him into the counter and throws him over a chair.\",\"As she bolts, someone\",gold,runs into the living room and shouts on his phone.,turns to someone and allows her free hand with her.,erupt through the kitchen stall.,hurls a small appliance.,3\n4621,lsmdc1024_Identity_Thief-82236,1114,\"He discovers the key missing. In the rear view, he\",He discovers the key missing.,\"In the rear view, he\",gold,sees an empty road.,hurries to a bedside display.,sees richard parker across the canvas.,stares at someone who sprints into the sky.,0\n4622,lsmdc1024_Identity_Thief-82236,1126,\"She grabs and slaps his face. Standing, she\",She grabs and slaps his face.,\"Standing, she\",gold,backs him into the counter and throws him over a chair.,returns a preoccupied glance with a bouncer.,downs another shot into his.,gets him in and kisses his father's hand.,0\n4623,lsmdc1024_Identity_Thief-82236,1125,\"He grabs her leg, knocking her down. She\",\"He grabs her leg, knocking her down.\",She,gold,grabs and slaps his face.,\"slumps towards a pillar, the other arms dangling and motionless.\",flips his way but catches her breath.,\"grabs the partition light, then storms out.\",0\n4624,lsmdc1024_Identity_Thief-82236,1120,\"Outside, a blue and yellow taxi arrives. Someone\",\"Outside, a blue and yellow taxi arrives.\",Someone,gold,exits the back holding the pink slip.,drops it in the hotel seat and slips.,looks from the sky to someone.,watches her move toward the house.,0\n4625,lsmdc1024_Identity_Thief-82236,1112,She reverses while flipping him off. He,She reverses while flipping him off.,He,gold,holds walks out to the wall.,holds his arm to the gorgeous guy.,shambles back to her fiat and gets in.,bumps into a dragon.,2\n4626,lsmdc1024_Identity_Thief-82236,1111,Someone sags as she runs to his car. She,Someone sags as she runs to his car.,She,gold,gets into his sedan.,swerves down the ramp in the dusty path.,walks over and leads her to a right.,\"takes out two cans, contents tickets and money.\",0\n4627,lsmdc1024_Identity_Thief-82236,1113,He shambles back to her Fiat and gets in. He,He shambles back to her Fiat and gets in.,He,gold,rides along the subway.,pulls out his toothbrush.,falls with her legs individually clamped.,discovers the key missing.,3\n4628,lsmdc1024_Identity_Thief-82236,1109,\"The short woman looks up at someone, then punches his throat. She\",\"The short woman looks up at someone, then punches his throat.\",She,gold,holds him with his arms apart.,shakes someone's hand and moves him to him.,\"goes inside his bedroom, revealing a mustache.\",pushes him and goes for her car.,3\n4629,lsmdc1024_Identity_Thief-82236,1118,Someone tries in vain to open the crushed door as she speeds down the highway. He,Someone tries in vain to open the crushed door as she speeds down the highway.,He,gold,darts through the break store.,reaches through the sunroof.,passes the three men waving their bag.,stops midway in and looks hard out of place.,1\n4630,lsmdc1024_Identity_Thief-82236,1117,She pins it to the guardrail. Someone,She pins it to the guardrail.,Someone,gold,pulls down the police driver and hugs someone.,tilts away from great speed.,tries in vain to open the crushed door as she speeds down the highway.,draws the thin wire protruding from her neck.,2\n4631,lsmdc1024_Identity_Thief-82236,1122,A huge sweat stain runs down the front of his shirt. He,A huge sweat stain runs down the front of his shirt.,He,gold,finds the woman mask and gently cocks the commendatore's head.,drops next to long white paper towel.,continues working out the printed several names on the names of fairies.,\"pays the driver and eyes the house, then proceeds in a stealthy jog along the side.\",3\n4632,lsmdc1024_Identity_Thief-82236,1124,\"Looking around, he cautiously enters the back gate. Through a window, someone\",\"Looking around, he cautiously enters the back gate.\",\"Through a window, someone\",gold,stuffs his protective helmet into a flame - shaped wagon.,spots the redhead rummaging through his toiletries.,punches the elderly woman's dirty face.,notices his bayonet to the guard line.,1\n4633,lsmdc1024_Identity_Thief-82236,1116,She comes it through from the sides. She,She comes it through from the sides.,She,gold,\"gets a better look and rides off, climbing out.\",cracks up with the bars.,pins it to the guardrail.,is hiding behind a shelf.,2\n4634,lsmdc1024_Identity_Thief-82236,1110,She delivers a swift kick to his crotch. Someone,She delivers a swift kick to his crotch.,Someone,gold,sags as she runs to his car.,tosses down the necklace around her waist.,turns her mother to the sisters.,smacks the door with a creepy smile and disappears.,0\n4635,anetv_9AqHhUuE9bE,17925,\"Some other people are seated nearby, and many individuals walk past him. A motorcycle\",\"Some other people are seated nearby, and many individuals walk past him.\",A motorcycle,gold,looks at a man in his forties.,unlocks a speech and or committed soldiers follow behind.,drives by on the road.,arrives at a building and in a brick room.,2\n4636,lsmdc3085_TRUE_GRIT-40773,8756,Someone sits down on a box by the flickering campfire. He,Someone sits down on a box by the flickering campfire.,He,gold,hangs his head and stares at the ground.,glances up his leg and looks down as it runs across someone's face.,picks up the urine and puts it in.,stares off thoughtfully as he crawls onward.,0\n4637,lsmdc3085_TRUE_GRIT-40773,8755,The men ride off on horseback leaving someone alone with someone. Someone,The men ride off on horseback leaving someone alone with someone.,Someone,gold,\"continues searching and stares at him, surprised.\",twitches a sympathetic smile.,\", someone and someone stand at the podium.\",sits down on a box by the flickering campfire.,3\n4638,anetv_tuhEnqKmUKg,2929,He skateboards wearing a white shirt while jumping over a small cement wall. Then he,He skateboards wearing a white shirt while jumping over a small cement wall.,Then he,gold,gets in the boy.,uses the scraper to brush some of the pants.,jumps over another wall while skateboarding.,goes down a slide with a watch on a man on the left.,2\n4639,anetv_tuhEnqKmUKg,2930,\"Then he jumps over another wall while skateboarding. Then in a green shirt, he\",Then he jumps over another wall while skateboarding.,\"Then in a green shirt, he\",gold,\"skateboards past a school, straight into a basketball court and then jumps over a metal railing.\",throws a white ball to the bowling pins.,wipes his mouth on his feet.,\"takes his seat and raises a ball and hits it against the wall, recording the event.\",0\n4640,anetv_tuhEnqKmUKg,2928,There's a teenage boy wearing a black beanie hat skateboarding through the city streets. He,There's a teenage boy wearing a black beanie hat skateboarding through the city streets.,He,gold,speeds to exit skaters and a city trip in slow.,skateboards wearing a white shirt while jumping over a small cement wall.,grinds down with shit so he does n't turn the mans hands off the street.,is in a studio talking.,1\n4641,anetv_tuhEnqKmUKg,2931,\"Then in a green shirt, he skateboards past a school, straight into a basketball court and then jumps over a metal railing. Then back in a white shirt, he\",\"Then in a green shirt, he skateboards past a school, straight into a basketball court and then jumps over a metal railing.\",\"Then back in a white shirt, he\",gold,speeds down a basketball hoop around a waist park and then swings and throws tennis with other men.,tries stunts by jumping up to a metal hand rail on his skateboard.,sharpens an awareness of clothing that moves over him.,hits it competition and the little girl shoots the target and the hammer shoots it to each other one wrong.,1\n4642,lsmdc3038_ITS_COMPLICATED-17494,16224,Lights reveals the well - stocked artfully arranged on a central island. He,Lights reveals the well - stocked artfully arranged on a central island.,He,gold,squints at the chalkboard menus.,carries a bag of gray wine.,whisks a small tray with pastries and watches them.,strolls in place where the tall staff has been walking.,0\n4643,lsmdc3038_ITS_COMPLICATED-17494,16223,\"He solemnly locks eyes with her and she beams, cocking her head. Lights\",\"He solemnly locks eyes with her and she beams, cocking her head.\",Lights,gold,\"up the side of the room, someone stands up and stirs his glass in the red refrigerator.\",reveals the well - stocked artfully arranged on a central island.,and someone look apprehensive.,\", he kisses her cheek.\",1\n4644,anetv_E4n0KcS_zgI,1485,A baby is on a bed in a house. She,A baby is on a bed in a house.,She,gold,dumps a cleaner in the bin.,puts on a blue lamp.,pops up and sits on the beach.,is playing a pair of bongo drums with her hands.,3\n4645,anetv_E4n0KcS_zgI,10097,She is banging on two large drums in front of her. She,She is banging on two large drums in front of her.,She,gold,\"keeps playing her guitar, and rides past the girls.\",sets her belligerent tablet.,continues slapping the surface of the drums with her hands.,\"is put on the ground, and iron.\",2\n4646,anetv_E4n0KcS_zgI,10096,A small baby is shown inside a bedroom. She,A small baby is shown inside a bedroom.,She,gold,returns one at a time.,has to make a online drink.,is banging on two large drums in front of her.,holds a baby under his arm.,2\n4647,anetv_j3QSVh_AhDc,3488,A person is showing stuck in between rocks. the person's raft,A person is showing stuck in between rocks.,the person's raft,gold,is put on a tree again.,sharpens hard to put down a single wooden device.,reaches the bottom of the board.,continuously flips upside down in the water.,3\n4648,anetv_j3QSVh_AhDc,18745,A large group of people are seen riding along a water raft in kayaks and flipping around the area. Several shots,A large group of people are seen riding along a water raft in kayaks and flipping around the area.,Several shots,gold,are shown of people doing flips in the kayak and ends with people standing on the sidelines watching.,are shown of the people walking in the water and riding in a kayak at the end of a road.,are shown of people surfing around while drinking themselves up and leads to the other in the kayaks.,are shown of the people rowing their oars to wakeboard and performing while the camera captures their movements.,0\n4649,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6719,Someone shuts her eyes and breathes out with a sigh. She,Someone shuts her eyes and breathes out with a sigh.,She,gold,pulls her flying catch and frowns at him and works back through his islands.,\"wanders through the adjoining room, lost in thought.\",device glows on the picture hands about the hollywood pilot.,drive smartly into a escalator followed by a man wearing a white skirt and a determined band at a christmas machine traveling through mountains.,1\n4650,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6718,As they all disappear through the front door. Someone,As they all disappear through the front door.,Someone,gold,gets up and helps someone to his feet.,lowers his head and hangs his head.,shuts her eyes and breathes out with a sigh.,continues as she paces her sister.,2\n4651,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6725,He strides right past her. Someone,He strides right past her.,Someone,gold,walks over to a table in the corner of the room and takes a seat.,\"flails over her chest, he twirls and flips her switch.\",gives a tight smile as she watches him go then joins him.,\"scowls at the panel, then glances to someone.\",0\n4652,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6726,She waits patiently for him to continue. Someone,She waits patiently for him to continue.,Someone,gold,sits down and kisses her.,gives a menacing look.,\"takes a couple of steps forward, looking like he is about to say something.\",is already snuggled between the blankets and in near the uncertain spot.,2\n4653,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6720,\"She wanders through the adjoining room, lost in thought. The parsonage at Hunsford\",\"She wanders through the adjoining room, lost in thought.\",The parsonage at Hunsford,gold,creeps steadily on her face.,appears over the sub.,length toward the patio entrance.,stands resplendent in the sunshine.,3\n4654,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6728,\"Again, someone waits expectantly. But someone\",\"Again, someone waits expectantly.\",But someone,gold,receives the radio and strength as what she will go.,\"gets up, strides awkwardly across the room.\",uses his hand to caress someone's hair and pumps his fist.,innocently hits his face.,1\n4655,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6722,\"Inside, someone is lying back on the sofa, reading a letter. Hearing the front doorbell, she\",\"Inside, someone is lying back on the sofa, reading a letter.\",\"Hearing the front doorbell, she\",gold,slams the curtain onto the counter.,quickly makes her way down the aisle.,folds the letter back up.,picks up a pillow and heads through the stack.,2\n4656,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6724,Someone is showed in again. He,Someone is showed in again.,He,gold,stops himself as someone asks him to take a beauty drink from behind.,has half shaved hats and earphones.,strides right past her.,stamps on the table.,2\n4657,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6723,\"Hearing the front doorbell, she folds the letter back up. Someone\",\"Hearing the front doorbell, she folds the letter back up.\",Someone,gold,copies the marching students.,\"trots off, turns back from his reverie.\",is showed in again.,steps on a hanging lamp.,2\n4658,lsmdc1029_Pride_And_Prejudice_Disk_One-83954,6721,\"The parsonage at Hunsford stands resplendent in the sunshine. Inside, someone\",The parsonage at Hunsford stands resplendent in the sunshine.,\"Inside, someone\",gold,sits at the top of a skyscraper with several flowers.,\"is lying back on the sofa, reading a letter.\",takes note keys to someone's dressing room.,plucks a meal by himself.,1\n4659,anetv_JvP1O8ZIL3A,19268,A woman is seen standing behind another woman sitting in a chair and begins styling her hair. The woman,A woman is seen standing behind another woman sitting in a chair and begins styling her hair.,The woman,gold,cuts up a piercing and shows off the product while showing the face around her and pushing her.,begins to cut the hair and the camera hands the woman what to do.,continues seated with the back on the back of the woman from the top of the chair putting hairspray on his face.,brushes and parts her hair ad begins braiding the hair and pinning it in several locations.,3\n4660,anetv_JvP1O8ZIL3A,19269,The woman brushes and parts her hair ad begins braiding the hair and pinning it in several locations. The woman,The woman brushes and parts her hair ad begins braiding the hair and pinning it in several locations.,The woman,gold,shows off her finished hair do while looking and smiling to the camera.,\"continues stylish while walking on the beach, again, by posing and smiling into the camera.\",gets up and uses several frisbees to dance.,\"continues adding more hair near the container, showing off the excess hair.\",0\n4661,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60171,2609,People watch people from someone's balcony. Someone,People watch people from someone's balcony.,Someone,gold,walks past seating together.,\"chuckles to herself, fast.\",turns and walks away.,runs past the toppled guide crew.,2\n4662,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60171,2610,Someone turns and walks away. Someone,Someone turns and walks away.,Someone,gold,'s fist grimaces.,sleeps on the corner of the bed as he watches someone ascend the stairs.,turns and looks out the window.,\", someone into his jacket, give her a smile.\",2\n4663,lsmdc3032_HOW_DO_YOU_KNOW-2130,14974,\"He stops and presses a hand to his forehead. Glancing out a window, someone\",He stops and presses a hand to his forehead.,\"Glancing out a window, someone\",gold,finds himself surrounded by shelves of brown wood.,spots someone sulking across the street.,shifts in top of someone.,works her lips into an thin boy.,1\n4664,lsmdc3032_HOW_DO_YOU_KNOW-2130,14976,\"Outside, someone fishes his phone from his pocket and answers. Someone\",\"Outside, someone fishes his phone from his pocket and answers.\",Someone,gold,stares up at the fourth floor office window.,\"drives over to the truck railing, and stands before her.\",sits face down on a kitchen table.,\"moves to the living room, and stands in someone's cot.\",0\n4665,lsmdc3032_HOW_DO_YOU_KNOW-2130,14975,\"Glancing out a window, someone spots someone sulking across the street. Rising from the table, he\",\"Glancing out a window, someone spots someone sulking across the street.\",\"Rising from the table, he\",gold,takes his phone from his bag and typewriter.,faces the window and takes out his cell.,paces and musicians.,watches from slow motion as he moves through the lobby.,1\n4666,lsmdc3032_HOW_DO_YOU_KNOW-2130,14973,\"Outside, someone crosses the street. He\",\"Outside, someone crosses the street.\",He,gold,has pulled the stacks for cross - -.,\"follows, swinging his gun as she races out.\",pulls back at the garment obliviously.,stops and presses a hand to his forehead.,3\n4667,anetv_DCYz8p4zH6o,19041,Text moves across his face as he swings his arms. The man,Text moves across his face as he swings his arms.,The man,gold,stops to laugh and ends with a hug.,continues to swing his arms and ends with credits rolling.,then kicks himself and throw him several times.,\"raises him, punches the air and cheers back on.\",1\n4668,anetv_DCYz8p4zH6o,19040,A man is seen kneeling on the floor swinging his arms back and fourth. Text,A man is seen kneeling on the floor swinging his arms back and fourth.,Text,gold,continues to stand with the man on camera.,moves across his face as he swings his arms.,leads into a man speaking to two women.,speaks up in front of the camera and ends the routine while the man watches.,1\n4669,anetv_B53aHHzgTzc,9432,\"We then see several clips of men doing the same thing at competitions, including in the ussr. A man\",\"We then see several clips of men doing the same thing at competitions, including in the ussr.\",A man,gold,runs on a beach posing with various backgrounds.,is conversing hallway in a line.,is finally shown doing a long landing jump.,moves a command on the interior of the life rope.,2\n4670,anetv_B53aHHzgTzc,10321,His score is shown and it says Art Walker 54 '11' - American Record. Several different men,His score is shown and it says Art Walker 54 '11' - American Record.,Several different men,gold,are shown doing layups on the stage while instruments in the auditorium.,are shown doing the long jump and their names and medals.,\"are highlighted as someone's talking about the young students issue of throats, from the way to play the trophy.\",talk to the camera demonstrating how to pose for the camera in their pajama cap and the intro details.,1\n4671,anetv_AEQ9zIG9LqA,15884,A man does several back flips on a red mat. A woman in a black shirt,A man does several back flips on a red mat.,A woman in a black shirt,gold,walks up to a hoop above.,ties a two wrestlers.,watches him go by and claps.,walks into a white painting.,2\n4672,anetv_bRXOj9Jm1_E,1454,More people surf in the water. Two ladies in bikinis,More people surf in the water.,Two ladies in bikinis,gold,have going over a ramps and various flips dancing around the other.,are on stilts sitting and both.,are on the beach.,sit in the river to lift their heads in the water.,2\n4673,anetv_bRXOj9Jm1_E,1453,A man is sitting in the sand. More people,A man is sitting in the sand.,More people,gold,are on the ice watching them play.,are riding around the waves.,surf in the water.,are surfing in the water.,2\n4674,anetv_bRXOj9Jm1_E,1451,A man carrying a surf board walks on the beach. People,A man carrying a surf board walks on the beach.,People,gold,are surfing in the water.,are decorating a boat on the beach.,see people floating on a surfboard.,are riding in circles across the blue ocean board.,0\n4675,anetv_bRXOj9Jm1_E,1452,People are surfing in the water. A man,People are surfing in the water.,A man,gold,is playing water polo.,is underwater in a wave.,is sitting in the sand.,stands on the edge of the ocean.,2\n4676,anetv_bRXOj9Jm1_E,1450,A man runs and dives into the water on a beach. A man carrying a surf board,A man runs and dives into the water on a beach.,A man carrying a surf board,gold,runs up and down the boat.,also makes a sand castle.,walks on the beach.,falls off the boat.,2\n4677,anetv_bRXOj9Jm1_E,1455,Two ladies in bikinis are on the beach. People,Two ladies in bikinis are on the beach.,People,gold,are riding waves in the water surfing.,\"are pushing their oars as they jump and rapids, singing as they go.\",are in the court shooting and practicing tricks.,ride a boat down a hill.,0\n4678,anetv_YQiTt8b6N60,1237,\"She is sitting on a rock, then biking, then adorning scuba gear. She\",\"She is sitting on a rock, then biking, then adorning scuba gear.\",She,gold,\"dives, swimming alongside tropical fish and a nursing shark.\",shows the bullet underwater with her feet.,\"sands the material with a plastic layer of ornaments, revealing a tack weapon.\",\"is kayaking showing up, keeping his helmet trained on.\",0\n4679,anetv_YQiTt8b6N60,1238,\"She dives, swimming alongside tropical fish and a nursing shark. She\",\"She dives, swimming alongside tropical fish and a nursing shark.\",She,gold,\"comes in, picks up a large rifle and runs over to body, followed by the charge.\",releases her tiny flock.,\"plays a few of the prisoners, forming other clusters with soft squeeze.\",\"is finally shown wearing sunglasses, smiling and laughing.\",3\n4680,anetv_bKec2fA5RZ8,12960,A woman is shown talking to the camera holding a vacuum and followed by her vacuuming up her floor at a fast pace. She,A woman is shown talking to the camera holding a vacuum and followed by her vacuuming up her floor at a fast pace.,She,gold,vacuums all around the area while still talking to the camera and eventually transitioning to a close up of the vacuum.,begins to finished putting clothes on the floor and laying them clean.,\"comes for a period of time, still performing a good job.\",walks along the walkway and a close up of her vacuum cleaner and soap on her shoulder.,0\n4681,anetv_n7AaZhEOJSY,1480,The man interviews the camera and leads into another dancer performing steps. Several more people,The man interviews the camera and leads into another dancer performing steps.,Several more people,gold,watch him perform while others watch on the side.,are seen jumping into a large pit together.,are shown in studio surrounded by women celebrating while holding flags and walking through her way.,are seen performing dance moves and speaking to the camera.,3\n4682,anetv_iB20nDf5yJs,6546,Then he is seen walking onto the board from the start of it and he jumps when he gets to the end of it and dives into the pool. There is music playing throughout the video and the man,Then he is seen walking onto the board from the start of it and he jumps when he gets to the end of it and dives into the pool.,There is music playing throughout the video and the man,gold,gently surfs back his forth performing the trail he is kayaking then is about going.,is talking to the camera for as he sits in the large of the kayak with the camera when camera pans to the right.,dives into the water from different sized boards indoors and outdoors.,clenches and is seen talking.,2\n4683,anetv_iB20nDf5yJs,11078,The screen shows the diver and introduces him. The diver,The screen shows the diver and introduces him.,The diver,gold,is doing various dives while a crowd watches.,is holding the water up.,shows a second exercise when a guy run to him.,dives for a pool dive into it.,0\n4684,anetv_iB20nDf5yJs,6545,First the man jumps on the diving board while he stands backwards towards the water and then he circles in the air landing into the water. Then he is seen walking onto the board from the start of it and he,First the man jumps on the diving board while he stands backwards towards the water and then he circles in the air landing into the water.,Then he is seen walking onto the board from the start of it and he,gold,jumps when he gets to the end of it and dives into the pool.,climbs on the boat.,interacts with him doing hand gestures.,swims over the waves.,0\n4685,anetv_iB20nDf5yJs,11079,The diver is doing various dives while a crowd watches. The scene,The diver is doing various dives while a crowd watches.,The scene,gold,begins to clip targets leading swimming through open sea.,switches to an outdoor pool diving board.,goes white in black and white.,shows the tunnel of two of the divers performing again and the backward sequence is seen.,1\n4686,anetv_yrCBN0tYjPE,11983,A man stands in a large room. He then,A man stands in a large room.,He then,gold,shows a room tile.,jumps up on beams.,begins to play a game of drums and a cool cup down the floor.,stops playing the piano.,1\n4687,anetv_yrCBN0tYjPE,11984,He then jumps up on beams. He then,He then jumps up on beams.,He then,gold,does several jump roping tricks.,balances himself on the beam.,lays down on the floor next to him.,swings the ax into the air.,1\n4688,anetv_yrCBN0tYjPE,11985,He then balances himself on the beam. He,He then balances himself on the beam.,He,gold,completes the beam multiple times and then does the splits again.,continues doing martial arts with his hands and occasionally dropping something on the ground.,does several flips and tricks.,performs various tricks with his hands in the air.,2\n4689,lsmdc1011_The_Help-78761,6722,\"Someone looks peevish and uncomfortable. At the front door, someone\",Someone looks peevish and uncomfortable.,\"At the front door, someone\",gold,stands at the bar.,coolly sets her coffee on the floor.,joins the first man seated at a table.,\"casts one last look at someone, who seems to have lost all her puff.\",3\n4690,anetv_YS8swiRbbIE,10089,Girls are dancing on a mat with batons. A girl,Girls are dancing on a mat with batons.,A girl,gold,\"stands in her room, talking.\",plays in a studio behind them.,is dancing on the other side with her routine.,does a front flip on the mat.,3\n4691,anetv_YS8swiRbbIE,838,Dancers in colorful outfits do solo performances with a baton. Different groups of dancers,Dancers in colorful outfits do solo performances with a baton.,Different groups of dancers,gold,perform dance routines with batons.,are playing while interspersed with 75 hula hoops.,spin them around two times.,perform pom poms on the dance floor.,0\n4692,anetv_YS8swiRbbIE,837,A newspaper with articles spins around. Dancers in colorful outfits,A newspaper with articles spins around.,Dancers in colorful outfits,gold,snap photos of men descending.,stand at the end of a hallway during public.,do solo performances with a baton.,are using sketches and tails.,2\n4693,anetv_DfpUMDpSbS4,16052,A man is seen speaking to the camera while standing behind a set of weights and pointing to his body. The man then,A man is seen speaking to the camera while standing behind a set of weights and pointing to his body.,The man then,gold,begins moving around on the equipment while the camera pans around.,begins playing the instrument back and fourth and moving all around.,moves to reel himself into the frame while moving his arms up and down.,bends down and grabs the bar while still speaking to the camera.,3\n4694,anetv_DfpUMDpSbS4,16053,The man then bends down and grabs the bar while still speaking to the camera. The man,The man then bends down and grabs the bar while still speaking to the camera.,The man,gold,finishes in front of him and begins to roll out of the room with his hands.,lifts the bar up then back down again while still speaking to the camera.,walks back and fourth while the camera captures his movements and ends by speaking and speaking to the camera.,does several flips and begins throwing one object and another walking into frame.,1\n4695,anetv_79gvzh0wn0Q,3373,The woman bows and walks off the mat. A woman in black uniform,The woman bows and walks off the mat.,A woman in black uniform,gold,is standing outside with her legs pointed at each other.,is standing outside a park area.,is dancing on the dance floor.,shakes hands with judges.,3\n4696,anetv_79gvzh0wn0Q,3374,A woman in black uniform shakes hands with judges. A woman in white uniform,A woman in black uniform shakes hands with judges.,A woman in white uniform,gold,wins a match on time.,walks up and greets judges shaking their hands.,\"performs several ballet moves, including up and down.\",pushes a tray away on the table.,1\n4697,anetv_79gvzh0wn0Q,3372,A woman in white karate uniform does a demonstration of a routine on the mat for judges during event. The woman,A woman in white karate uniform does a demonstration of a routine on the mat for judges during event.,The woman,gold,twists and turns ballerina moves and twirling around.,performs a yoga routine while turning and jerks up arms.,bows and walks off the mat.,jumps on the bars and performs the routine.,2\n4698,anetv_v1Iv-ySc2LM,5053,A child uses a mop to wash the floor of a home. The child,A child uses a mop to wash the floor of a home.,The child,gold,uses the stair attachment to dry the clothes.,twist the mop to turn it over.,scrubs the spoons with the soap.,\"steps to a floor, continues to mop the floor.\",1\n4699,anetv_kyafh7Ownao,12947,The credits of the clip are shown. Cars,The credits of the clip are shown.,Cars,gold,moves on the road.,sweep the sides of the wall.,are running on the shore.,are running on a track in a carnival.,0\n4700,anetv_kyafh7Ownao,5893,Short scenes of various parts of the car wash are shown. People,Short scenes of various parts of the car wash are shown.,People,gold,are shown washing several different cars.,walk a bit with paint products on a table.,are walking on side to side.,uses people pumping themselves up and down.,0\n4701,anetv_kyafh7Ownao,12948,Cars moves on the road. Guys,Cars moves on the road.,Guys,gold,ride a bumper car in a dusty street.,runs on one skateboard playing a game in the road.,\"race cars and drive onto a parking lot, on the bench.\",wash and towel dry cars outdoors.,3\n4702,anetv_F9HKxxoNNSQ,1339,\"A person throw a disc with a stick, the disc arrives to a triangle on the floor where two people stand. Then, another disk slides on the floor\",\"A person throw a disc with a stick, the disc arrives to a triangle on the floor where two people stand.\",\"Then, another disk slides on the floor\",gold,hitting a small video.,doing the jumprope and the snare knit to the replay.,to stop inside the triangle.,to catch them and pieces with the final tree throw.,2\n4703,anetv_F9HKxxoNNSQ,1340,\"Then, another disk slides on the floor to stop inside the triangle. After, the person\",\"Then, another disk slides on the floor to stop inside the triangle.\",\"After, the person\",gold,finishes and takes a turn adjust the drums.,throw another disc that stops inside the triangle.,come forward and wipe the handle.,\"in blue stands up, without flipping, then throws a ball across high.\",1\n4704,anetv_F9HKxxoNNSQ,1341,\"After, the person throw another disc that stops inside the triangle. The rules oh the shuffleboard game\",\"After, the person throw another disc that stops inside the triangle.\",The rules oh the shuffleboard game,gold,is filled with the cards.,is raised and turn up.,is displayed in a board.,run up and it all gradually slowed.,2\n4705,anetv_APCbvR0SBl0,3339,There are people watching them behind a fence. A green umbrella,There are people watching them behind a fence.,A green umbrella,gold,is seen walking towards a large wooden fence.,sits next to the track.,is gaining on ranging of them.,is shown with the lawn mower tucked close together.,1\n4706,anetv_APCbvR0SBl0,3338,A person runs and throws a javelin. There,A person runs and throws a javelin.,There,gold,\"the falls, a camera goes in and out on four figures.\",kicks it away and throws.,are adult player and one jump on the head.,are people watching them behind a fence.,3\n4707,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72239,5305,Someone in gown and mortarboard acknowledges the applause. Someone,Someone in gown and mortarboard acknowledges the applause.,Someone,gold,stuffs him in the back and someone with icing on his.,stares glumly ahead while slytherins celebrate around him.,sells desert and complains.,\", someone sits in front of someone, who scowls and takes her back.\",1\n4708,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72239,5303,Someone hits him with a book. Someone,Someone hits him with a book.,Someone,gold,\"looks out at someone, who sits slumped in a chair.\",strolls over to a drafting table for a moment.,\"blinks, wakes up and tears at his knees then turns to face him.\",is walking towards them.,3\n4709,lsmdc3015_CHARLIE_ST_CLOUD-883,18387,\"As she emerges, someone takes his drawing pad out of his bag. Someone\",\"As she emerges, someone takes his drawing pad out of his bag.\",Someone,gold,reaches out to touch someone's head.,\"writes on the eagle of a statue, then rises.\",looks down on him from her deck.,tightens his seat belt and faces a new floor as he sits down and looks around.,2\n4710,lsmdc3015_CHARLIE_ST_CLOUD-883,18381,\"He averts his gaze and stares off. Shifting her eyes, someone\",He averts his gaze and stares off.,\"Shifting her eyes, someone\",gold,\"holds his arms, then steps up to kiss someone.\",nods and someone lets her in.,\"sucks in a breath, then glances at her shoes.\",spits out someone's poison.,2\n4711,lsmdc3015_CHARLIE_ST_CLOUD-883,18386,\"Someone peers out from the cabin. As she emerges, someone\",Someone peers out from the cabin.,\"As she emerges, someone\",gold,slowly takes out a message as she enters.,is crowded the street.,takes his drawing pad out of his bag.,shuts his eyes and swallows hard.,2\n4712,lsmdc3015_CHARLIE_ST_CLOUD-883,18384,\"She shoots him a look, then swings into the boat. Someone\",\"She shoots him a look, then swings into the boat.\",Someone,gold,balances it on his back.,\"glances away, then buries his face in his hands.\",tips on a boat.,opens the screen door and faces the scraped landscape.,1\n4713,anetv_3HBAcaU552I,4572,She gets them some water to gargle in their mouths. The boy and girl,She gets them some water to gargle in their mouths.,The boy and girl,gold,begin playing in the sink.,start trying to stay together and swing their hips from side to side.,sink in the bottom of the sink together.,enter the classroom with some kids in their pajamas.,0\n4714,anetv_3HBAcaU552I,4573,The boy and girl begin playing in the sink. The woman,The boy and girl begin playing in the sink.,The woman,gold,shakes the cake as the girl bites her lip.,laughs at the children dribbling water.,gets a restless sleep.,stops playing and continues to play with the red toothbrush as the person continues to brush his teeth.,1\n4715,anetv_3HBAcaU552I,4569,A young boy and girl are standing over a sink with their mother talking. The mother,A young boy and girl are standing over a sink with their mother talking.,The mother,gold,talks to the boy and walks away with a person and jumps in the water.,is sitting at the bar with her hair still holding the anklet.,turns his camera around to demonstrate a chocolate skin and asian woman standing in a room with a woman outside talking.,instructs them on how to brush their teeth while laughing.,3\n4716,anetv_3HBAcaU552I,4570,The mother instructs them on how to brush their teeth while laughing. The boy,The mother instructs them on how to brush their teeth while laughing.,The boy,gold,helps his younger sister brush his teeth.,continues brushing the dog and then uses a hand to speak at the end.,to the girl spits and he holds it out for a camera.,plays with more piercings.,0\n4717,anetv_3HBAcaU552I,4571,The boy helps his younger sister brush his teeth. She,The boy helps his younger sister brush his teeth.,She,gold,presses a large finger briefly to a tentacle and watches as it slowly reaches his lips.,'s under the ice cream cone.,leans through the glass.,gets them some water to gargle in their mouths.,3\n4718,anetv_3KmMvfdidvQ,10088,Big mena re standing on a ring getting ready to wrest. referee wearing a chinese suit,Big mena re standing on a ring getting ready to wrest.,referee wearing a chinese suit,gold,is in the middle of the men.,sprints and play on a court holding axes for two people.,is interviewed in front of the newscaster smile.,walks in front of the woman in two different uniforms.,0\n4719,anetv_3KmMvfdidvQ,17316,They crouch down in preparation for battle. They,They crouch down in preparation for battle.,They,gold,scatter in the flames.,\", the orangutan bat the sailors to the mast, bounces over the border of the mast, hurries to the camera.\",\"wrestle each other, slamming each other on the ring.\",are shown in the middle of the court with the people others watch on the sides.,2\n4720,anetv_3KmMvfdidvQ,17315,A sumo wrestler meets another one inside a ring. They,A sumo wrestler meets another one inside a ring.,They,gold,crouch down in preparation for battle.,\"put his hands in the air, one of the wrestlers twists the left ankle.\",\"play, then the man wearing a red shirt walks and pumps his head.\",ties the other man on the back of one of his companions and jumps high in the ring.,0\n4721,anetv_ehGHCYKzyZ8,14124,The video starts with a title logo sequence. A man and woman,The video starts with a title logo sequence.,A man and woman,gold,are break dancing on a field with a band sweeping the kites.,\"wearing sunglasses are talking to someone, who bears several crown on the desk.\",are in a living room demonstrating exercises.,are posing in an outdoor arena.,2\n4722,anetv_ehGHCYKzyZ8,14127,The man starts pointing to different areas of the woman's body as she does an exercise. The woman,The man starts pointing to different areas of the woman's body as she does an exercise.,The woman,gold,begins to do small sit ups.,empties out documents in a locker table to show multiple her zumba elliptical.,swings kicks around a precious set of weights.,plays her foot over the ironing board and climbs and holds the end to it.,0\n4723,anetv_ehGHCYKzyZ8,14126,The woman lays on the ground. The man,The woman lays on the ground.,The man,gold,does a back flip on the bed before finishing his play.,removes the man and begins to lay her on the floor.,\"rips away the camera and clears the floor, then her removing tiles between sheets.\",starts pointing to different areas of the woman's body as she does an exercise.,3\n4724,anetv_ehGHCYKzyZ8,14125,A man and woman are in a living room demonstrating exercises. The woman,A man and woman are in a living room demonstrating exercises.,The woman,gold,is kicking the woman's butt.,drops the exercise equipment into a seat.,lays on the ground.,demonstrates how to play the congas.,2\n4725,anetv_ehGHCYKzyZ8,14128,The woman begins to do small sit ups. The woman,The woman begins to do small sit ups.,The woman,gold,points to practicing the girls as she poses while performers still holding on to her foot.,flips her hair through her bedroom girl and resumes curling then talking to the camera.,vacuums the corners of the room.,ends with a final title logo sequence.,3\n4726,lsmdc3059_SALT-28970,16723,Someone mashes his teeth around his gag as he stares pleadingly at his wife. She,Someone mashes his teeth around his gag as he stares pleadingly at his wife.,She,gold,moves to the table.,\"lowers his question from the table to reveal a single stag with a dozen excavator, pretty else.\",faces someone and her bee - stung lips curl into a cold smile.,\"approaches someone standing in his chair, looking with one of his eyes and filming the miles long.\",2\n4727,lsmdc3059_SALT-28970,16726,\"Watching her husband's head thrash, someone struggles to fight back tears welling in her eyes. She\",\"Watching her husband's head thrash, someone struggles to fight back tears welling in her eyes.\",She,gold,looks mournfully at her facial scar.,grabs the drink from someone drink glass and sets it in front of her.,\"looks up at a guard in a suit, aiming a handgun at her.\",flips the door closed.,2\n4728,lsmdc3059_SALT-28970,16727,\"She looks up at a guard in a suit, aiming a handgun at her. Blinking, she\",\"She looks up at a guard in a suit, aiming a handgun at her.\",\"Blinking, she\",gold,clears her eyes and faces someone without a hint of grief.,\"turns away, her eyebrows raised.\",turns to someone and nods.,tilts her head slowly then hurries off people.,0\n4729,lsmdc3059_SALT-28970,16725,\"And then turns, a guard wrenches a valve. Watching her husband's head thrash, someone\",\"And then turns, a guard wrenches a valve.\",\"Watching her husband's head thrash, someone\",gold,stares up the night lights and warmly lights the backpack.,stands side by side with her.,struggles to fight back tears welling in her eyes.,smells the pump - action shotgun.,2\n4730,anetv_y_HCdBEJbNE,16702,A man puts plaster on a base. The man,A man puts plaster on a base.,The man,gold,uses a paintbrush to clean the wood with a measuring tool.,lifts a person on top of a ladder.,crouches at a plaster on the wall and drills holes in the ice.,walks over and rubs it on the ceiling.,3\n4731,anetv_y_HCdBEJbNE,16704,We see the stilts the man is walking on. The camera,We see the stilts the man is walking on.,The camera,gold,continues to clip through the man.,becomes wobbly and blurry.,stops towards the entire opening of the banner.,falls down revealing various groups of stills at pictures.,1\n4732,anetv_y_HCdBEJbNE,16703,The man walks over and rubs it on the ceiling. We,The man walks over and rubs it on the ceiling.,We,gold,see the stilts the man is walking on.,see the boy lift all his legs and open it to the side.,zoom in on the lined shoe and leg shaves.,see the man on the screen introducing the instructions.,0\n4733,anetv_FaKQvJBhMPg,4285,\"A man and a woman are sitting in two separate floating donuts, the man in the blue, the woman in the green, and both are smiling then the man raises his left arm to wave. A group of people\",\"A man and a woman are sitting in two separate floating donuts, the man in the blue, the woman in the green, and both are smiling then the man raises his left arm to wave.\",A group of people,gold,in the background looks and he's on a mat.,laying eyes are shown while different people stand around him swerving and walk away.,in front wash them playfully with each other and the members get at their feet and performing in slow motion poses.,\"are also on different colored floating donuts, playing, falling in the water and having a good time.\",3\n4734,anetv_FaKQvJBhMPg,4287,\"The woman is now sitting in a green floating donut, still holding the mic, and still talking. A white screen appears appears with a maroon and white logo, then it\",\"The woman is now sitting in a green floating donut, still holding the mic, and still talking.\",\"A white screen appears appears with a maroon and white logo, then it\",gold,'s out on the screen.,changes to another white screen that has a blue website in the middle of it.,includes a number of fishes for gray singer being interviewed by winner who is standing and waving.,reads the name imperata across the screen.,1\n4735,anetv_FaKQvJBhMPg,4286,\"A brown haired woman standing in a pile of floating donuts is holding a mic and talking, and other clips begin to play that include scenery of the lake, interviewing various people of ages and both sexes, people walking with their floating donuts, signs at the lake, people having fun and etcetera. The woman\",\"A brown haired woman standing in a pile of floating donuts is holding a mic and talking, and other clips begin to play that include scenery of the lake, interviewing various people of ages and both sexes, people walking with their floating donuts, signs at the lake, people having fun and etcetera.\",The woman,gold,flips the rope up in the air while talking and the group begins laughing.,talks in the background sip from a cup.,plays with the ball to demonstrate how to throw it.,\"is now sitting in a green floating donut, still holding the mic, and still talking.\",3\n4736,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16573,She links her arm in his and continues on down the street with him. They,She links her arm in his and continues on down the street with him.,They,gold,land sprawled on the backs of the truck's machine - demolished building.,stop walking and face one another.,\"gets out, staring at the map now on a scooter.\",run magic truck around the arms.,1\n4737,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16579,\"Someone is looking out the window, watching someone walk back and forth. But after a few steps he\",\"Someone is looking out the window, watching someone walk back and forth.\",But after a few steps he,gold,turns around and starts back.,\"raises his weapon and lunges out the door behind his son, then opens it for cover.\",\"rolls onto the grand staircase, standing down to balcony just cracked.\",does not see the notice.,0\n4738,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16567,\"Someone is standing in the middle of the street, hands in his pockets. He\",\"Someone is standing in the middle of the street, hands in his pockets.\",He,gold,is obviously undecided as to what he wants to do.,looks out of the window.,\"walks over to someone, who turns round to her.\",starts digging into his pockets.,0\n4739,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16568,\"He is obviously undecided as to what he wants to do. As a girl passes, he\",He is obviously undecided as to what he wants to do.,\"As a girl passes, he\",gold,sees on the information journal and drove home.,starts to play the violin drums.,turns and watches her for a moment.,inserts the contact lens to her left eye.,2\n4740,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16585,Someone looks in a mirror at the bottom of the stairs and fixes her hair. She,Someone looks in a mirror at the bottom of the stairs and fixes her hair.,She,gold,is plainly excited at someone's visit.,\"extends her hand to introduce herself, but someone still looks at her.\",\"eats her way, then returns to the bedroom.\",tears up her hair and tucks them out of her purse.,0\n4741,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16575,\"By this time a small crowd has collected to watch the above scene. Someone is furious and talking in a loud voice, and someone\",By this time a small crowd has collected to watch the above scene.,\"Someone is furious and talking in a loud voice, and someone\",gold,is holding something on board as a dog pulls out of the forest and the camera steps closer.,is dragged to the back of the plane and rising to his feet.,gets on to his horse.,is trying to quiet her.,3\n4742,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16587,She runs into the parlor and puts a sketch on an easel. It,She runs into the parlor and puts a sketch on an easel.,It,gold,is a caricature of someone throwing a lasso around the moon.,studies for a moment then fades to her.,comes up with the thick curlers separating it.,looks at the corpse and stuffs it in his pocket.,0\n4743,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16571,\"A couple of men are crowding around her, each one bent on taking her out. She\",\"A couple of men are crowding around her, each one bent on taking her out.\",She,gold,is saying to him as they laugh.,forces her arms in pain.,swings the bat at a pinata as she attempts to get it.,looks up and sees someone standing there.,3\n4744,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16578,\"He walks past the house a few yards, turns, and starts back again. Someone\",\"He walks past the house a few yards, turns, and starts back again.\",Someone,gold,has stopped wildly to pitch his scary costume.,\"is looking out the window, watching someone walk back and forth.\",\"picks him up, leaving him behind and slamming someone in the back.\",is parked outside the house.,1\n4745,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16572,She senses the fact that someone is far from immune to her attractions. She,She senses the fact that someone is far from immune to her attractions.,She,gold,turns it on everyone seems disappointed.,links her arm in his and continues on down the street with him.,is above her head.,are now on introductions of about 10 years old.,1\n4746,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16588,It is a caricature of someone throwing a lasso around the moon. Then she,It is a caricature of someone throwing a lasso around the moon.,Then she,gold,is stamped just trying to get her successful at the sauce.,opens the front door and stands there waiting for someone.,makes a stop to rollerblade through the hedge of the dense tree.,\"envisions keeping the book over a pair of rocks, with its mouths open with a like restraint, and a huge web.\",1\n4747,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16570,Someone is locking up for the night. A couple of men,Someone is locking up for the night.,A couple of men,gold,are on a ladder to watch equipment.,are in the living room watching so happy.,\"are crowding around her, each one bent on taking her out.\",come out of the crowd dressed in beige evening costumes.,2\n4748,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16584,Someone is running down the stairs. Someone,Someone is running down the stairs.,Someone,gold,walks his dog away from the goblin and someone at the same time.,\"approaches and looks out of the window, deep in thought.\",\"sits at the edge of her bed, watching, staring at himself.\",looks in a mirror at the bottom of the stairs and fixes her hair.,3\n4749,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16589,Then she opens the front door and stands there waiting for someone. Someone,Then she opens the front door and stands there waiting for someone.,Someone,gold,is struggling with the gate he finally kicks it open and starts slowly up the path toward someone.,laughs at the pinball bubbles.,turns to her husband.,comes up and ushers them off.,0\n4750,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16581,\"Someone stops, startled, and looks up. Someone\",\"Someone stops, startled, and looks up.\",Someone,gold,still does n't answer.,walks down the corridor and by the door.,looks surprised at this.,\"is suddenly riding the top of a lawnmower, head first toward the bottom.\",2\n4751,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16586,She is plainly excited at someone's visit. She,She is plainly excited at someone's visit.,She,gold,is obviously playing autographs.,runs into the parlor and puts a sketch on an easel.,takes the envelope and reads it back.,\"holds a tray, food being eaten off her bottle.\",1\n4752,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16580,But after a few steps he turns around and starts back. Someone,But after a few steps he turns around and starts back.,Someone,gold,furrows his brow and nods.,\"stops, startled, and looks up.\",\"steps away, stamps on his cane, then jams him on the chair.\",passes between cars.,1\n4753,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16577,Someone is walking slowly past someone home. He,Someone is walking slowly past someone home.,He,gold,\"clumsily awake and sits by the piano music, pausing as she hears she spin.\",\"walks past the house a few yards, turns, and starts back again.\",\"pats his chest, 35.\",can not see what the people are done.,1\n4754,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16574,\"He is silent for a moment, then blurts out. By this time a small crowd\",\"He is silent for a moment, then blurts out.\",By this time a small crowd,gold,is gathered in front of the woman counting the money.,is barking to start.,is doing response to the message.,has collected to watch the above scene.,3\n4755,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16583,But someone has disappeared from the window. Someone,But someone has disappeared from the window.,Someone,gold,holds up his hand as he stands.,is running down the stairs.,helps someone to his feet.,\"shakes her head, but is drifting to the bottom of the door.\",1\n4756,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16569,\"As a girl passes, he turns and watches her for a moment. Someone\",\"As a girl passes, he turns and watches her for a moment.\",Someone,gold,is locking up for the night.,is taken aback for the camera.,\"returns, acting to the dead woman.\",\"mixes her hors d'oeuvres, then returns outside.\",0\n4757,lsmdc0014_Ist_das_Leben_nicht_schoen-54574,16590,Someone is struggling with the gate he finally kicks it open and starts slowly up the path toward someone. People,Someone is struggling with the gate he finally kicks it open and starts slowly up the path toward someone.,People,gold,come into the garage.,hurry back the plank.,arrives as a sedan speeds ahead into the drive.,are in the entrance hall.,3\n4758,anetv_lhnhGI-rrzM,12341,There's a young man wearing a blue shirt and a black helmet skateboarding on a two way road. He,There's a young man wearing a blue shirt and a black helmet skateboarding on a two way road.,He,gold,shows smaller roads in the murky to escape cars with all other people.,\"uses a brake tool on blond the yard, then the person continues jumping and turning around.\",is going at a steady and fast speed as he passes through a few cars and lots of trees.,\"has two moves around to other men and are watching her with her big, gray hair.\",2\n4759,anetv_lhnhGI-rrzM,12342,He is going at a steady and fast speed as he passes through a few cars and lots of trees. He also,He is going at a steady and fast speed as he passes through a few cars and lots of trees.,He also,gold,passes through some residential areas as he skateboards.,is still alive and going into a lives and jumping with others.,puts other traffic on the outdoor shoes.,does several soft tricks with landscapes and parks.,0\n4760,anetv_lhnhGI-rrzM,12344,He finally slows down as cameraman approaches a gray car. The cameraman,He finally slows down as cameraman approaches a gray car.,The cameraman,gold,captures his scowl as the dog pays.,shows the survivors working.,follows a guy over an intersection.,gets into the car and takes the skateboard away.,3\n4761,anetv_lhnhGI-rrzM,12343,He also passes through some residential areas as he skateboards. He finally,He also passes through some residential areas as he skateboards.,He finally,gold,slows down as cameraman approaches a gray car.,leaves the car to join his basket made.,stops the ski close to a rich man.,stops taking turns waxing and giving a man as a skateboard.,0\n4762,anetv_lhnhGI-rrzM,12345,The cameraman gets into the car and takes the skateboard away. The skateboarder,The cameraman gets into the car and takes the skateboard away.,The skateboarder,gold,drives two cars across the road.,\"continues running, turning up and going down the street in ramps cranks of wheels and bike tracks.\",walks past more clips as the two females run to.,is kneeling on the side of the main road.,3\n4763,anetv_lhnhGI-rrzM,12346,The skateboarder is kneeling on the side of the main road. He then,The skateboarder is kneeling on the side of the main road.,He then,gold,gets up and walks off before going back to the bar.,\"runs to the end of the track, roping high in the air.\",jumps off the diving board into the water.,gets up and walks away.,3\n4764,anetv_RfsugL4sLso,18438,A woman is seen brushing her teeth and leads into toothpaste being spread on a toothbrush. Another girl,A woman is seen brushing her teeth and leads into toothpaste being spread on a toothbrush.,Another girl,gold,brushes her teeth to put it on toothpaste and then wiping it away with the toothbrush.,pops up and speaks to the camera while still talking to the camera.,is seen hitting a ball in the sink as the girls continue to smoke.,brushes her teeth and shows several stills on how to properly brush teeth.,3\n4765,anetv_RfsugL4sLso,18439,Another girl brushes her teeth and shows several stills on how to properly brush teeth. More clips,Another girl brushes her teeth and shows several stills on how to properly brush teeth.,More clips,gold,are shown of performing tango speaking to the audience and ends in more images.,are shown of the woman shaving back with her hair and across off the top.,are shown of people brushing their teeth.,are shown of her brushing and brushing the teeth while talking into the camera and begins brushing her teeth.,2\n4766,anetv_gMaakjqhNmM,16748,Another man also hits the dart on the other dart board. The man in green,Another man also hits the dart on the other dart board.,The man in green,gold,returns his a bowling search.,is court and prepares to jump put and darts at a target.,cook spreads out his bread.,shoots another dart and then goes to remove it from the dart board.,3\n4767,anetv_gMaakjqhNmM,16746,There are some men playing darts in a basement where two dart boards are hung on the wall. One of the men wearing a green shirt,There are some men playing darts in a basement where two dart boards are hung on the wall.,One of the men wearing a green shirt,gold,aims the dart board with a dart to hit the bull's eye on one board.,walks through the trampoline followed by the men in yellow capes and walking in the room in fencing gear.,\"is going up a lane, but not now kind of acting as a boy who is arm - in.\",is wearing headphones and speaking to him when another woman in the red shirt speaks.,0\n4768,anetv_gMaakjqhNmM,16747,One of the men wearing a green shirt aims the dart board with a dart to hit the bull's eye on one board. Another man also,One of the men wearing a green shirt aims the dart board with a dart to hit the bull's eye on one board.,Another man also,gold,hits the dart on the other dart board.,shows the boy dressed in a funeral lunchroom showing after the ball strikes.,kneels on the floor.,shoots backwards and the catches sight of his own and a ring on indicating bad case.,0\n4769,lsmdc3023_DISTRICT_9-10835,11321,Two men unwrap an alien body part. The gang leader,Two men unwrap an alien body part.,The gang leader,gold,opens a laptop and squats down in front of his working mirror.,aims snow toward his son.,watches the witch raise an alien arm in a ritual.,leads everyone into a quiet corridor beside the room.,2\n4770,anetv_oKdzcTnENks,8678,He jumps on all of the numbers. He kind of,He jumps on all of the numbers.,He kind of,gold,feels his chest and enraged himself.,back his body and score.,plays the drums in the smoke.,runs through the game.,3\n4771,anetv_oKdzcTnENks,8675,A little boy is playing hop scotch on the pavement. There,A little boy is playing hop scotch on the pavement.,There,gold,are playing a street with a lawn mower on a lawn where the boy is mowing the grass.,is an elderly flock of people with hard - colorful luggage.,man sitting on a bench grabbing a bottle of beer fall and a cup from his hand.,is a truck behind him.,3\n4772,anetv_oKdzcTnENks,8677,He does n't really play it right. He,He does n't really play it right.,He,gold,is running and goes without emotion.,jumps on all of the numbers.,jumps over his back and tail.,jumps to the ball and is hit by the ball again by the goal and jumping.,1\n4773,lsmdc3037_IRON_MAN2-16801,18226,\"Someone forms an o with his right hand, and peers through the makeshift scope. He\",\"Someone forms an o with his right hand, and peers through the makeshift scope.\",He,gold,climbs up out of the toilet and peeks over his right shoulder.,sits on one knee as he examines the alien chamber.,pulls a stray log out of the can of the creature's head.,\"smiles slightly, then furrows his brow.\",3\n4774,lsmdc3037_IRON_MAN2-16801,18233,\"As he moves his hands apart, the Unisphere expands. He\",\"As he moves his hands apart, the Unisphere expands.\",He,gold,studies the sphere and the surrounding architecture on the holographic model.,\"stands waiting for the middle vendor, beckons her to leave.\",tumbles out through glass framework like slices of wall.,\"shifts with his foot, as someone lingers watching someone.\",0\n4775,lsmdc3037_IRON_MAN2-16801,18243,\"In the lab, he opens a wooden crate containing massive tubes. He\",\"In the lab, he opens a wooden crate containing massive tubes.\",He,gold,takes out a letter and shows the gifts.,lies above someone who lies in a puddle of blood.,takes out the tubes and assembles them.,grips the entryway jack.,2\n4776,lsmdc3037_IRON_MAN2-16801,18242,\"He drops the cables through the ceiling, down to the lab floor. In the lab, he\",\"He drops the cables through the ceiling, down to the lab floor.\",\"In the lab, he\",gold,\"swoops down to land, panting.\",opens a wooden crate containing massive tubes.,shuffles under the sheet tent to find himself seated at his keyboard.,\"steps forward down the corridor, his shoulders supporting with his hands.\",1\n4777,lsmdc3037_IRON_MAN2-16801,18224,He approaches the object and reads a plaque on its side. Someone,He approaches the object and reads a plaque on its side.,Someone,gold,pulls out a small microphone and plays.,\"taps his fedora, then stands back to walk in the corridor.\",raises it to his mouth.,pulls off the sheet.,3\n4778,lsmdc3037_IRON_MAN2-16801,18221,\"He stands and grabs the basket of strawberries. Walking across the room, he\",He stands and grabs the basket of strawberries.,\"Walking across the room, he\",gold,pops one strawberry into his mouth and dumps the rest into a wastebasket.,pauses near the doorway.,finds her facing a mirror and peers at a wine glass.,reaches out and takes out a torn broken package hanging from his jeans.,0\n4779,lsmdc3037_IRON_MAN2-16801,18228,\"Later, the disassembled model, stacked in four panels, rises out of the passenger seat of someone's convertible, as he drives down a highway. In his basement laboratory, someone\",\"Later, the disassembled model, stacked in four panels, rises out of the passenger seat of someone's convertible, as he drives down a highway.\",\"In his basement laboratory, someone\",gold,\"puts the overcoat on his briefcase, then waves them at record time.\",blows dust off the assembled model.,slides a note from his computer.,picks up a gutter leaf and eats it.,1\n4780,lsmdc3037_IRON_MAN2-16801,18235,\"Moving his hands, someone expands the Unisphere again. Dozens of holographic dots\",\"Moving his hands, someone expands the Unisphere again.\",Dozens of holographic dots,gold,shine into the polished skin.,\"fly from his lips, locking up a web.\",fill his journalists cluttered room.,appear and enter the unisphere.,3\n4781,lsmdc3037_IRON_MAN2-16801,18218,Someone closes the door as she leaves. Someone,Someone closes the door as she leaves.,Someone,gold,turns and finds himself hidden in the doorway.,leans back in his chair.,follows across a walkway as someone turns around.,hands him an envelope.,1\n4782,lsmdc3037_IRON_MAN2-16801,18222,\"Walking across the room, he pops one strawberry into his mouth and dumps the rest into a wastebasket. Someone\",\"Walking across the room, he pops one strawberry into his mouth and dumps the rest into a wastebasket.\",Someone,gold,turns away and fixes his gaze.,pulls his owl hood to his head.,stands and hugs his younger mother.,spits out the strawberry.,3\n4783,lsmdc3037_IRON_MAN2-16801,18229,\"In his basement laboratory, someone blows dust off the assembled model. A holographic image of the scale model\",\"In his basement laboratory, someone blows dust off the assembled model.\",A holographic image of the scale model,gold,is on the zebra.,\"appears, overlapping the actual model.\",computer dot on the left holds the screen in a flickering image.,plays along with a few women.,1\n4784,lsmdc3037_IRON_MAN2-16801,18232,The Unisphere glows bright white. Someone,The Unisphere glows bright white.,Someone,gold,draws a circle in the air with his finger.,shines out the shape of a cake.,takes a cigarette from a box and drops it into the dragon sack.,\"flames hurtle from the sky, where flaming fireball to protect the tabletop.\",0\n4785,lsmdc3037_IRON_MAN2-16801,18247,\"Someone lifts a red, white, and blue shield from a crate. As someone lifts a section of the tubing, someone\",\"Someone lifts a red, white, and blue shield from a crate.\",\"As someone lifts a section of the tubing, someone\",gold,slides the shield underneath.,flips around then stands.,pauses down and topples a log.,wrestles someone near the block.,0\n4786,lsmdc3037_IRON_MAN2-16801,18231,Someone lifts the holograph with both hands and turns. Someone,Someone lifts the holograph with both hands and turns.,Someone,gold,lowers the holograph and pushes it out in front of himself.,raises another man gawks.,hesitates a moment then drops the coin and hangs up.,slides into the hand's interior chair.,0\n4787,lsmdc3037_IRON_MAN2-16801,18245,The accelerator extends across the entire house. Someone,The accelerator extends across the entire house.,Someone,gold,returns to the same chilled horror.,\"mows through his rear - view mirror in his mirror, the footage of someone surrounding him.\",\"walks downstairs into the basement, punches in the security code, and enters someone's lab.\",uses a cable ans wrench smoothly throughout the gate.,2\n4788,lsmdc3037_IRON_MAN2-16801,18248,\"As someone lifts a section of the tubing, someone slides the shield underneath. Someone\",\"As someone lifts a section of the tubing, someone slides the shield underneath.\",Someone,gold,places a level atop the section of tubing propped up by the shield.,\"runs his way through the farmers, as the army of others walk off.\",fastens the chain around the components of the bike and then drops it onto the deck.,attaches more layer of spray to the curving path.,0\n4789,lsmdc3037_IRON_MAN2-16801,18241,He connects cables to the box. He,He connects cables to the box.,He,gold,\"drops the cables through the ceiling, down to the lab floor.\",puts both hands into the liquor bottle.,rips open his coat to reveal the other man's socks.,\"ventures across a hall toward a dodge mob as the prisoners haul through the lobby, leaving the station.\",0\n4790,lsmdc3037_IRON_MAN2-16801,18227,\"He smiles slightly, then furrows his brow. Later, the disassembled model, stacked in four panels,\",\"He smiles slightly, then furrows his brow.\",\"Later, the disassembled model, stacked in four panels,\",gold,finds a plant with a ridge of rocks.,\"rises out of the passenger seat of someone's convertible, as he drives down a highway.\",shows a spike to the top of a golf program.,sits on a mound of flight cards.,1\n4791,lsmdc3037_IRON_MAN2-16801,18244,\"Later, he completes the construction of a particle accelerator which incorporates the long tubes. The accelerator\",\"Later, he completes the construction of a particle accelerator which incorporates the long tubes.\",The accelerator,gold,extends across the entire house.,stands at a muddy end.,shines in the manhattan skyline at their skyline.,pulls him off the top of the car.,0\n4792,lsmdc3037_IRON_MAN2-16801,18240,\"He jackhammers a hole in the floor, exposing an electrical junction box. He\",\"He jackhammers a hole in the floor, exposing an electrical junction box.\",He,gold,connects cables to the box.,crosses the bridge behind someone.,stares off the bed.,drops his keys and shows it upstairs.,0\n4793,lsmdc3037_IRON_MAN2-16801,18237,\"Someone pats his thighs, then throws his arms overhead. The sphere\",\"Someone pats his thighs, then throws his arms overhead.\",The sphere,gold,set several orange cones over their crest.,expands so that someone is sitting inside it.,pulls as the people fall off the cloak and torn against the attacking hunter.,grows rowdy as the chopper almost clings.,1\n4794,lsmdc3037_IRON_MAN2-16801,18220,\"As he lets go of the toy, the arm rotates again. He\",\"As he lets go of the toy, the arm rotates again.\",He,gold,slams a bald boy onto the ground.,strokes its egg often to the surface.,stumbles forward and lands in a puddle of blood.,stands and grabs the basket of strawberries.,3\n4795,lsmdc3037_IRON_MAN2-16801,18239,\"Someone smiles, then stands and walks across the room. Someone\",\"Someone smiles, then stands and walks across the room.\",Someone,gold,wrenches the wheel and hits the button.,swings a sledgehammer and knocks holes in a concrete wall.,watches as he walks across the piano.,dashes from him and crosses gazes to the mirror.,1\n4796,lsmdc3037_IRON_MAN2-16801,18225,Someone pulls off the sheet. Someone,Someone pulls off the sheet.,Someone,gold,sits through the plunger.,grabs the helm and sinks a few ground firm in the air.,\"forms an o with his right hand, and peers through the makeshift scope.\",bends off to receive the knife.,2\n4797,lsmdc3037_IRON_MAN2-16801,18230,\"A holographic image of the scale model appears, overlapping the actual model. Someone\",\"A holographic image of the scale model appears, overlapping the actual model.\",Someone,gold,successfully raises the cup to a large hand basin lying roughly dripping black.,aims her body over her shoulder.,lifts the holograph with both hands and turns.,rubs her thigh and gives a nod.,2\n4798,anetv_qq1wRySmDTc,10118,A man is crouching in the woods next to a pile of stones. He,A man is crouching in the woods next to a pile of stones.,He,gold,is demonstrating how to properly play with the golden house.,is surrounded by the flower.,walks over to the person sitting behind him.,is explaining the building of a fire.,3\n4799,anetv_qq1wRySmDTc,10119,He is explaining the building of a fire. He,He is explaining the building of a fire.,He,gold,is talking about afterward they will be in test to end the game now.,\"carves in it like massive campfire, which he is using to sing that it becomes a predator.\",places the carved box on the wall and uses the tool's model.,\"lights the wood, creating a fire.\",3\n4800,anetv_9fQ2wWFJJGo,19198,Two females then appear in the sand with a orange bucket and plastic shovel making sand castles. More pairs of women,Two females then appear in the sand with a orange bucket and plastic shovel making sand castles.,More pairs of women,gold,falls over onto the sand.,appear in different clips talking about the sport on lives.,are shown adding sand in their buckets and making their castles in the dirt together.,fall into a sand pit with yellow and blue stripes all over them.,2\n4801,anetv_9fQ2wWFJJGo,19197,A man and a woman are standing outside at a beach in the sand talking while the lady holds a brown paper bag in her hand and a man begins filming them. Two females then,A man and a woman are standing outside at a beach in the sand talking while the lady holds a brown paper bag in her hand and a man begins filming them.,Two females then,gold,appear in the sand with a orange bucket and plastic shovel making sand castles.,perform a black food successfully in a competition.,walk down a tight line of a beach looking down at the man from underwater.,begin to go into the pool with their sticks in their hands.,0\n4802,anetv_9fQ2wWFJJGo,15141,A man and woman are standing on a beach holding a paper bag. A woman,A man and woman are standing on a beach holding a paper bag.,A woman,gold,is then holding a ball on a stick and holding up a barbie.,is putting out a bowl and stirring the mushrooms in a pot.,\"is kneeling on the beach, forming domes with buckets in the sand.\",grabs a female lady and carries them both up.,2\n4803,anetv_9fQ2wWFJJGo,15142,\"A woman is kneeling on the beach, forming domes with buckets in the sand. Someone hands out stuffed animals to the man and woman, and he\",\"A woman is kneeling on the beach, forming domes with buckets in the sand.\",\"Someone hands out stuffed animals to the man and woman, and he\",gold,begins to snowboard into the path of deep washed water.,gives them to the girls who were building in the sand.,leads her to a sunken rocky spot.,starts to play with the other one.,1\n4804,lsmdc3073_THE_GUILT_TRIP-34688,8634,Someone flicks her eyes from side to side. Someone,Someone flicks her eyes from side to side.,Someone,gold,quickly loaded with groceries.,\"nods repeatedly, his lips pursed.\",dragon leaps at her.,spins on the floor.,1\n4805,lsmdc1029_Pride_And_Prejudice_Disk_One-83951,921,\"They set off arm and arm. Inside, someone\",They set off arm and arm.,\"Inside, someone\",gold,leads someone into a white leather wheelchair lobby.,pulls a laser club over his sweaty gaze.,sits up on the podium.,'s helping someone with his coat.,3\n4806,anetv_WaWkDf6b_j4,14582,A man walks along a bare field while a woman walks around beside him. He,A man walks along a bare field while a woman walks around beside him.,He,gold,kneels down to the board and begins to spin it around.,stands up and gestures for a camera.,stops dead and walks back to the hand and throws a frisbee in him.,walks back and fourth preparing to jump and eventually jumps over a pole.,3\n4807,anetv_WaWkDf6b_j4,14583,He walks back and fourth preparing to jump and eventually jumps over a pole. A girl claps for him and the same move,He walks back and fourth preparing to jump and eventually jumps over a pole.,A girl claps for him and the same move,gold,is shown taking place.,is shown again in slow motion.,is shown again several more times.,begins with several different people watching them before celebrating.,1\n4808,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31555,6731,They hide under a stairwell as thugs search for them. They,They hide under a stairwell as thugs search for them.,They,gold,fly down the grand staircase behind people.,see that lead into someone.,dash upstairs as the thugs move on.,arrive close to someone.,2\n4809,anetv_Ie7DREiXp08,1908,She then pulls contacts into the case and then places one in each eye. She,She then pulls contacts into the case and then places one in each eye.,She,gold,parts away by the camera.,begins moving her hands off the sides to adjust her hair and empties it and applying a clean view.,cuts mom a cleans while looking at a large stuff cut in the wall.,holds up the case in the end followed by her putting the contacts back into the case.,3\n4810,anetv_Ie7DREiXp08,1907,A woman is seen speaking to the camera and pouring out liquids into a case. She then,A woman is seen speaking to the camera and pouring out liquids into a case.,She then,gold,pours it into her glasses then bounces it up in a cup.,pulls contacts into the case and then places one in each eye.,mixes the ingredients and pours them into a glass and mixes it up with her.,pours liquids into a glass and sets it into a glass.,1\n4811,lsmdc3088_WHATS_YOUR_NUMBER-42461,17823,\"She hikes up the skirt. In slow motion, she\",She hikes up the skirt.,\"In slow motion, she\",gold,runs across the lawn in her high heels.,brings up a topic to a game.,goes through the ornamental opaque with brown plastic.,takes out her cell phone.,0\n4812,lsmdc3088_WHATS_YOUR_NUMBER-42461,17848,\"She pops up beside the stage. Someone joins the band, playing a tambourine, but someone\",She pops up beside the stage.,\"Someone joins the band, playing a tambourine, but someone\",gold,fails to notice her.,can't believe what to look behind it.,has a long - handled round phone stick.,is still standing on her mobile.,0\n4813,lsmdc3088_WHATS_YOUR_NUMBER-42461,17843,\"She waves to the bride as she dances her way to the front of the parade. Now, strands of lights\",She waves to the bride as she dances her way to the front of the parade.,\"Now, strands of lights\",gold,hang out under the sun.,fly away from the trees fucking.,adorn a fancy outdoor reception.,move past the sparkle fins.,2\n4814,lsmdc3088_WHATS_YOUR_NUMBER-42461,17833,\"Now she runs up the front steps of a church, holding her poufy dress above her ankles. She\",\"Now she runs up the front steps of a church, holding her poufy dress above her ankles.\",She,gold,is on a stage in the encampment.,\"bumps to the floor, flings her pink scarf along with her.\",\"hurries inside, to a tall set of wooden doors, and frantically scans the pews.\",performs lovingly across the floor.,2\n4815,lsmdc3088_WHATS_YOUR_NUMBER-42461,17830,Someone jumps out of her car. She,Someone jumps out of her car.,She,gold,\"gets up, walks away, then enters in the adjoining bedroom.\",pulls out a t - shirt.,pushes up through the doorway and knocks to the window.,hurries through the crowd.,3\n4816,lsmdc3088_WHATS_YOUR_NUMBER-42461,17841,The hatchback arrives and gets stuck behind traffic. Someone,The hatchback arrives and gets stuck behind traffic.,Someone,gold,gets out and runs through the stopped vehicles.,gets off the car and falls onto the coupe.,grabs the water tries to shield her from the drivers car.,grabs someone and speeds up.,0\n4817,lsmdc3088_WHATS_YOUR_NUMBER-42461,17824,\"In slow motion, she runs across the lawn in her high heels. She\",\"In slow motion, she runs across the lawn in her high heels.\",She,gold,\"sprints past a pond, then heads out through the open gate of a white - picket fence.\",\"jumps, jumping high.\",glides over the bar clapping her hands and waves.,watches with her mouth hanging open as she scrambles on the ledge.,0\n4818,lsmdc3088_WHATS_YOUR_NUMBER-42461,17820,\"Someone takes the list, then dashes around a few tables, and starts across the lawn. She\",\"Someone takes the list, then dashes around a few tables, and starts across the lawn.\",She,gold,\"falls flat on her face, catching everyone's attention.\",passes her for a book.,gets farther away just as someone approaches.,stands with her back to the bar with someone at the back of the bar.,0\n4819,lsmdc3088_WHATS_YOUR_NUMBER-42461,17844,Cameras flash as the paparazzi clamors for shots of a couple arriving on a red carpet. Someone,Cameras flash as the paparazzi clamors for shots of a couple arriving on a red carpet.,Someone,gold,shouts after the number.,rides up and leaves the pizza - delivery bike with a valet.,pulls out a helmet terminal.,sits down and row nervously on a desk as he takes the cue.,1\n4820,lsmdc3088_WHATS_YOUR_NUMBER-42461,17834,\"She hurries inside, to a tall set of wooden doors, and frantically scans the pews. The doors\",\"She hurries inside, to a tall set of wooden doors, and frantically scans the pews.\",The doors,gold,\"shoot out, escorted from the train station and onto the floor.\",are open and a second doberman passes out of the door frame.,split slowly shut behind her.,swing shut behind her.,3\n4821,lsmdc3088_WHATS_YOUR_NUMBER-42461,17825,\"She sprints past a pond, then heads out through the open gate of a white - picket fence. At a valet station, she\",\"She sprints past a pond, then heads out through the open gate of a white - picket fence.\",\"At a valet station, she\",gold,opens the garage door for a cab.,finds the keys of several parked cars.,struggles with a large barrier in her hands.,crosses between two two - topped visitors.,1\n4822,lsmdc3088_WHATS_YOUR_NUMBER-42461,17849,\"Someone joins the band, playing a tambourine, but someone fails to notice her. She\",\"Someone joins the band, playing a tambourine, but someone fails to notice her.\",She,gold,sinks to his knees.,pushes a bass player out of the way and sings into a microphone.,\"looks amused as the silver tag ignores her, and her jaw drops.\",\"walks, holding bows and starts to chase them off.\",1\n4823,lsmdc3088_WHATS_YOUR_NUMBER-42461,17846,\"Someone runs forward, but finds her path blocked by the crowded dance floor. She\",\"Someone runs forward, but finds her path blocked by the crowded dance floor.\",She,gold,\"waves her arms, trying to catch someone's attention.\",slumps down on a bench and runs over beside someone.,\"goes over to the fireplace, trying to keep up.\",\"looks up at someone, who unwraps his legs from someone.\",0\n4824,lsmdc3088_WHATS_YOUR_NUMBER-42461,17840,\"At night, a crowd holds a bride and groom up over their shoulders, obstructing a city street. The hatchback\",\"At night, a crowd holds a bride and groom up over their shoulders, obstructing a city street.\",The hatchback,gold,follows them down the road on 10 yards from the coast.,pulls away from one of his military platforms.,pulls up at a black - and - white house.,arrives and gets stuck behind traffic.,3\n4825,lsmdc3088_WHATS_YOUR_NUMBER-42461,17826,Two lounging valets wave goodbye. Someone,Two lounging valets wave goodbye.,Someone,gold,hurtle along the darkness between lines charred head and trees.,pulls out in a little blue hatchback.,gets up and faces the students.,sets my stuffed into her pockets.,1\n4826,lsmdc3088_WHATS_YOUR_NUMBER-42461,17839,\"Driving again, she violently crosses another wedding off her list. She\",\"Driving again, she violently crosses another wedding off her list.\",She,gold,cruises across a truss bridge.,\"stares tenderly at it, then pulls off an old radar screen.\",crosses to her laptop and knocks on her butt.,jogs up to a table and lays down a cigarette bag.,0\n4827,lsmdc3088_WHATS_YOUR_NUMBER-42461,17831,She hurries through the crowd. A photo,She hurries through the crowd.,A photo,gold,shows someone remaining in the theatre.,moves from the entrance to a black taxi.,shows him with a torch.,shows the smiling wedding party.,3\n4828,lsmdc3088_WHATS_YOUR_NUMBER-42461,17837,He lays eyes on someone. The confused guests,He lays eyes on someone.,The confused guests,gold,hungrily back at him.,\"trip goodbye, then sit on the deck at the piano.\",watch her run back out through the doors.,laugh for each other.,2\n4829,lsmdc3088_WHATS_YOUR_NUMBER-42461,17845,\"Halfway over the fence, her dress gets caught. The dress\",\"Halfway over the fence, her dress gets caught.\",The dress,gold,turns to the two best friends at the bar.,is stamped with british emblem.,tears as she falls into some shrubbery.,is almost capsizing as she catches him.,2\n4830,lsmdc3088_WHATS_YOUR_NUMBER-42461,17828,\"As she drives off, our view rises to glimpse the reception tent across the pond. A photographer\",\"As she drives off, our view rises to glimpse the reception tent across the pond.\",A photographer,gold,knocks over the railing of the upper deck on the upper deck.,removes a cigarette from the table.,takes pictures of a bride and groom.,sees it as the photographers are landing around them and a view of the unharmed shrubs just below them.,2\n4831,lsmdc3088_WHATS_YOUR_NUMBER-42461,17827,\"Someone pulls out in a little blue hatchback. As she drives off, our view\",Someone pulls out in a little blue hatchback.,\"As she drives off, our view\",gold,rises to glimpse the reception tent across the pond.,follows the advancing addresses.,slides to partly shot.,shows a woman carrying a tray of fresh roses.,0\n4832,lsmdc3088_WHATS_YOUR_NUMBER-42461,17836,The bride and groom are someone and someone. He,The bride and groom are someone and someone.,He,gold,lays eyes on someone.,is packing his dinner.,slowly turns to leave.,trudges to someone's cot.,0\n4833,lsmdc3088_WHATS_YOUR_NUMBER-42461,17819,The wedding planner confronts a server. Someone,The wedding planner confronts a server.,Someone,gold,considers the last tickets.,\"takes the list, then dashes around a few tables, and starts across the lawn.\",presents a bouquet of manuscripts to someone as she brings a single letter back.,gives a boyish smile then gazes downward.,1\n4834,lsmdc3088_WHATS_YOUR_NUMBER-42461,17835,The doors swing shut behind her. The bride and groom,The doors swing shut behind her.,The bride and groom,gold,follow her to the concert.,are lined up patient.,leads them off with a tree.,are someone and someone.,3\n4835,lsmdc3088_WHATS_YOUR_NUMBER-42461,17838,\"The confused guests watch her run back out through the doors. Driving again, she violently\",The confused guests watch her run back out through the doors.,\"Driving again, she violently\",gold,crosses another wedding off her list.,tumbles the door to her office.,flings policemen to grasp of wine.,slides down the slide again.,0\n4836,lsmdc3088_WHATS_YOUR_NUMBER-42461,17832,A photo shows the smiling wedding party. Now she,A photo shows the smiling wedding party.,Now she,gold,drives off with an anxious frown.,\"runs up the front steps of a church, holding her poufy dress above her ankles.\",\"goes into her room, so there's a slightly elderly woman with black uniform lining her brow.\",waits by the house at longbourn.,1\n4837,lsmdc3088_WHATS_YOUR_NUMBER-42461,17822,\"Getting back up, she tears some gauzy fabric from her pink dress. She\",\"Getting back up, she tears some gauzy fabric from her pink dress.\",She,gold,unfolds the layers of swiss cheese.,mouths to herself doing the beauty of someone.,hikes up the skirt.,sits next to someone with the necklace in her hand.,2\n4838,anetv_Ccy8WD2k4L8,9632,A woman is dancing on a stage. She,A woman is dancing on a stage.,She,gold,is playing an instrument.,begins dancing and dancing on the stage.,picks up a microphone and starts singing.,does a pose with a baton on her lap.,2\n4839,anetv_Ccy8WD2k4L8,9633,She picks up a microphone and starts singing. She,She picks up a microphone and starts singing.,She,gold,begins to play his harmonica again.,is playing the violin next to them.,picks up a flute and tries to play it.,begins to play a drum set in front of her.,3\n4840,anetv_eUxFTEeNIGg,8556,The man stops jumping and his coach pulls the tape off his hands. We then,The man stops jumping and his coach pulls the tape off his hands.,We then,gold,see two boys playing paintball with each other as a gray boy is seen.,see the man with the black disk in it.,see the mid title screen.,see the ending screen.,3\n4841,anetv_eUxFTEeNIGg,8554,A man jumps rope in a boxing ring in a mall as people watch. The man,A man jumps rope in a boxing ring in a mall as people watch.,The man,gold,speaking to the camera followed by a half percussion people.,\"slows and gets off his stands, moves forward and finishes and spins about the shovel.\",\"reverses, runs to the center of the ring and run to measure.\",loses his rhythm and has to start over two times.,3\n4842,anetv_eUxFTEeNIGg,12264,Man is standing in the middle of a ring jumping the rope. referee,Man is standing in the middle of a ring jumping the rope.,referee,gold,is watching behind him and cheering them back to him.,is standing behind watching the players throwing the ball.,is standing in the track holding a long stick.,is standing on a corner of a ring.,3\n4843,anetv_eUxFTEeNIGg,8555,The man loses his rhythm and has to start over two times. The man stops jumping and his coach,The man loses his rhythm and has to start over two times.,The man stops jumping and his coach,gold,raise his arms up as he begins to dance.,pulls the tape off his hands.,did the same thing.,are followed by the man running around in circles.,1\n4844,anetv_iSJ87SnNLPc,4709,He picks up a bottle and takes a drink. He then,He picks up a bottle and takes a drink.,He then,gold,brings the drink again.,sets it up on the table and sets it in full glass.,begins processing the drink.,begins to dance in a room.,3\n4845,anetv_iSJ87SnNLPc,12436,The guy now fully clothed dances. The guy,The guy now fully clothed dances.,The guy,gold,takes his shoe off and picks them up.,poses with the beverage.,spots his shirt behind his shirt.,lifts his helmet left and holds his hand up the side of the head.,1\n4846,anetv_iSJ87SnNLPc,4708,A kid is brushing his teeth. He,A kid is brushing his teeth.,He,gold,plays a electric toothbrush with his tongue.,is carrying a toothbrush in his hand.,uses an electric toothbrush to shave his legs.,picks up a bottle and takes a drink.,3\n4847,anetv_kO_4QDNExkY,7793,A the hose of a leaf blower is shown. The hose,A the hose of a leaf blower is shown.,The hose,gold,is used to scrape off the dog.,begins forcefully blowing leaves away from the camera.,is tied to the counter.,is used in blow blower.,1\n4848,anetv_kO_4QDNExkY,7794,The hose begins forcefully blowing leaves away from the camera. The person holding the leaf blower repeatedly swings the hose,The hose begins forcefully blowing leaves away from the camera.,The person holding the leaf blower repeatedly swings the hose,gold,around and flinging the dogs onto the lane.,quickly after the swerve.,left to ring blowing leaves into a pile.,\"into the air, letting it split across the windshield, soaring the branches.\",2\n4849,anetv_H2KVO7LWU5w,11040,A teen is raking the lawn. A teen,A teen is raking the lawn.,A teen,gold,tries to swing at the pinata.,tosses a rake full of leaves at the toddler.,stands on a playground playground next to a child.,stands in black wire.,1\n4850,anetv_H2KVO7LWU5w,11039,A toddler is holding a leaf blower. A teen,A toddler is holding a leaf blower.,A teen,gold,girl makes a high turn to the pinata.,walks out to a person to get a swing at a large pinata.,is playing the bagpipes on the tree and the dog mows the lawn.,is raking the lawn.,3\n4851,anetv_aRdqcOaBvjk,7112,A person is seen close up riding on the back of a bike shooting a paint ball off into the distance. Several shots,A person is seen close up riding on the back of a bike shooting a paint ball off into the distance.,Several shots,gold,of several people is shown as well as the man signing a ball on a field.,are shown of people riding around in cars shooting paint balls at one another.,are shown of people gliding along the snow as well as riding down tube down the hill.,of alcohol is shown as well as the girl speaking to the camera and two more shots of a car.,1\n4852,anetv_DUb48prwNZk,1571,A close up of tin foil is shown leading a woman taking a large hit out of a hookah hose. She continues smoking out of the hookah as the camera captures her movements and she,A close up of tin foil is shown leading a woman taking a large hit out of a hookah hose.,She continues smoking out of the hookah as the camera captures her movements and she,gold,continues blowing smoke around it and blows a bit of smoke.,continues to sniff around.,sits down in the end to smoke more.,is blowing smoke out of a tank.,2\n4853,anetv_DUb48prwNZk,2475,A close up of a hookah is shown as well as a camera panning around a girl. The girl,A close up of a hookah is shown as well as a camera panning around a girl.,The girl,gold,rubs her hands up and down with another person laying down a slide.,exhales calmly and ends by speaking to the camera and holding the mic close to it.,is seen holding a hose and smoking from the hookah.,continues putting on the cigarette while looking back to the camera.,2\n4854,anetv_DUb48prwNZk,2476,The girl is seen holding a hose and smoking from the hookah. The camera,The girl is seen holding a hose and smoking from the hookah.,The camera,gold,zooms in on her and blows smoke out.,zooms up to show the swirling pulses of her nose.,pans around the girl as she sits down and continues smoking.,zooms in on the lady playing the cigarette.,2\n4855,anetv_NSegylr0MBg,13965,We see a man adjust the camera and shake his hair. We,We see a man adjust the camera and shake his hair.,We,gold,see the product being written on the glass.,see commentary on the screen.,see the mechanics of the press.,see the ending screen.,1\n4856,anetv_NSegylr0MBg,13971,The man brushes his hair with a brush. We see the scene go dark and the writing,The man brushes his hair with a brush.,We see the scene go dark and the writing,gold,abruptly fades away on black.,come apart on the screen.,appears in the background.,appears on the screen.,3\n4857,anetv_NSegylr0MBg,13970,The man adds pomades to his hair. The man,The man adds pomades to his hair.,The man,gold,cuts the hair with an iron.,grabs the baking towel and rakes back in a veet line and puts it around the lady in the mirror.,plays a saxophone while the others on the sides.,brushes his hair with a brush.,3\n4858,anetv_NSegylr0MBg,13967,The man uses a brush and instructions appear. We,The man uses a brush and instructions appear.,We,gold,\", the man begins talking to the camera and looking at the camera.\",see more instructions on the screen.,cuts the man's hair before final braided to the viewer.,\", a woman demonstrates how to comb and style every section of the hair.\",1\n4859,anetv_NSegylr0MBg,13969,Instruction tell views to mold hair. More instructions,Instruction tell views to mold hair.,More instructions,gold,are shown before going to the reporter practicing shop.,appear on the screen.,are shown with the medical tools needed for washing clothes.,are shown throughout the individual's feet.,1\n4860,anetv_NSegylr0MBg,13968,We see more instructions on the screen. Instruction,We see more instructions on the screen.,Instruction,gold,play music in front of form clips.,are shown on a field then we see kids screwing pucks in a cart.,fingers left the boy sitting behind a desk.,tell views to mold hair.,3\n4861,anetv_I62kL8H81XA,5155,\"Then, a person adds sugar, and lemon to pot with water to warm. Then, the person\",\"Then, a person adds sugar, and lemon to pot with water to warm.\",\"Then, the person\",gold,adds the lemonade to a jar and serves in a cup.,rinses the pan and mix the mixture in a new pot.,uses a baking plate to pull the lemonade out of the sauce.,\"mixes the ingredients round, then olive oil in a brown plate.\",0\n4862,anetv_I62kL8H81XA,5154,\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar are on at table. Then, a person\",\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar are on at table.\",\"Then, a person\",gold,uses a knife and paddles to mix in a type flute.,adds chocolate cake to each chords.,puts a glass in their left and a large child is shown standing on a floor next to a spoon in a cup.,\"adds sugar, and lemon to pot with water to warm.\",3\n4863,anetv_I62kL8H81XA,5153,\"A cup with lemonade is next a jar with a lemonade. A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar\",A cup with lemonade is next a jar with a lemonade.,\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar\",gold,is obviously the dough.,is poured on the shaker.,\", and lemon juice.\",are on at table.,3\n4864,anetv_p1JSdZmztGk,386,\"The people enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat. Several shots\",\"The people enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat.\",Several shots,gold,are then shown of people riding in the mountain and doing motocross tricks.,\"are shown of the attire standing and becoming, and joining the children smiling sunscreen.\",are shown of the man shoveling from the beach and the camera pans close to people.,are shown of a kitchen as well as people riding on the boat and still continue to speak to the camera.,3\n4865,anetv_p1JSdZmztGk,385,Two people are seen speaking to one another while standing on the docks as well as speak to the camera. The people,Two people are seen speaking to one another while standing on the docks as well as speak to the camera.,The people,gold,continue riding around with one another as well as the man jumping and others moving around.,are seen performing tricks on a horse while stepping back and fourth next to the horse.,continue speaking while playing with the electrical and explaining all the equipment on the bar.,\"enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat.\",3\n4866,anetv_YdfWewUrcTw,12076,\"The man falls off his skateboard repeatedly. He flips the skateboard, and we\",The man falls off his skateboard repeatedly.,\"He flips the skateboard, and we\",gold,\"see a small, series of swings.\",see it in slow motion.,see a cable moving on screen.,zoom in on a man leaning out of the bushes.,1\n4867,anetv_YdfWewUrcTw,12077,\"He flips the skateboard, and we see it in slow motion. The man gets a hat, and we\",\"He flips the skateboard, and we see it in slow motion.\",\"The man gets a hat, and we\",gold,see the man in a room practicing as he races.,see a man kneeling outdoors.,see onlookers in the cage.,see the end screen.,3\n4868,anetv_YdfWewUrcTw,12078,\"The man gets a hat, and we see the end screen. A man jumps on a pile of boxes and we\",\"The man gets a hat, and we see the end screen.\",A man jumps on a pile of boxes and we,gold,see the closing screen.,see the end screen again.,see a man dancing with a large piece of wood.,see him start a new match.,1\n4869,anetv_YdfWewUrcTw,12075,Inside the warehouse we see a box the men ride their skateboards over. The man,Inside the warehouse we see a box the men ride their skateboards over.,The man,gold,hold their helmet and show the site of plenty of people and bicycles.,climbs off the bike.,reaches around to adjust the jack son his bike.,falls off his skateboard repeatedly.,3\n4870,anetv_YdfWewUrcTw,12074,We see a man talking to two other men outside a warehouse. Inside the warehouse we,We see a man talking to two other men outside a warehouse.,Inside the warehouse we,gold,see people walking on the police town bus.,see two men wearing a bikini.,see the dealer wearing sunglasses on his front.,see a box the men ride their skateboards over.,3\n4871,anetv_0ysVELHeEyc,18761,They continue down the fence and remove some dead plants. They,They continue down the fence and remove some dead plants.,They,gold,continue to paint the fence.,scuttle down to pick up the ground.,show a product used to clean the fence.,are cleaning the roof as hard as possible.,2\n4872,anetv_0ysVELHeEyc,18758,It stops at a broken section. It,It stops at a broken section.,It,gold,runs halfway down a corridor and stops just short.,film hyena widely atop a cluster hung with kayaks.,bounces off the pavement.,continues to pan down the fence.,3\n4873,anetv_0ysVELHeEyc,18759,It continues to pan down the fence. Nails,It continues to pan down the fence.,Nails,gold,are hammered into the fence.,are loose onto the floor.,are quickly shown as well as people walking away.,appear horizontally across the screen with the tool.,0\n4874,anetv_0ysVELHeEyc,18757,The camera pans down the side of a fence. It,The camera pans down the side of a fence.,It,gold,stops at a broken section.,pours across the water.,is shown with numbers on it.,shows the grey roll.,0\n4875,anetv_0ysVELHeEyc,18762,They show a product used to clean the fence. A man,They show a product used to clean the fence.,A man,gold,cuts a piece of fabric with shears.,opens the door to be done and talks to the camera.,sprays the fence with the product.,\"sits in the woods, talking to the camera.\",2\n4876,anetv_0ysVELHeEyc,18756,Text appears on the screen briefly. The camera,Text appears on the screen briefly.,The camera,gold,shows images of divers boxing with an arm dryer.,\"is swishing, its always dressed in red and pink.\",pans down to the camera.,pans down the side of a fence.,3\n4877,anetv_0ysVELHeEyc,18760,Nails are hammered into the fence. They,Nails are hammered into the fence.,They,gold,continue down the fence and remove some dead plants.,use axes to clean the fence.,use five settings to cut raw ends into feeding.,stab at each other and count on fists.,0\n4878,anetv_0ysVELHeEyc,18763,A man sprays the fence with the product. He,A man sprays the fence with the product.,He,gold,are shown a hand to patched them.,\", he uses the stick to shoot a wall with the tool.\",drops it and gets some paint.,then leaves the tree with blue paint.,2\n4879,anetv_cGqmHplppAU,17505,Various clips are shown of people playing on the beach as well putting sunscreen on and carrying objects. A large explosion,Various clips are shown of people playing on the beach as well putting sunscreen on and carrying objects.,A large explosion,gold,knocks another chair off into the distance.,is shown followed by kids fishing with a man and more clips of people playing on the beach.,returns to the beach and it is about 8 completing the day.,is shown when the video ends up.,1\n4880,anetv_a7YSE6dZ1yk,5521,\"A woman takes a cook book and gathers ingredients and materials on the counter. Then, she\",A woman takes a cook book and gathers ingredients and materials on the counter.,\"Then, she\",gold,measures the ingredients to put in a bowl.,\"puts into her lesson, unfolds some cilantro.\",shown creamy wine and shakes it in glass.,shows off how she made gifts.,0\n4881,anetv_a7YSE6dZ1yk,14326,She brings out several ingredients and begins combining them into a bowl. She,She brings out several ingredients and begins combining them into a bowl.,She,gold,moves her arms out and changes into a plate of cookies laid out with her eating them.,proceeds together up the sauce for a few seconds while speaking to the camera.,pours milk into a baking glass and places the gryffindors into the glass.,continues laying various ingredients into a bowl in a bowl.,0\n4882,anetv_a7YSE6dZ1yk,5522,\"Then, she puts oil, eggs and the rest of the ingredients in the bowl, then the woman mix the ingredients and put flower an other ingredients. Then, the woman mix the dough with her hands, then she\",\"Then, she puts oil, eggs and the rest of the ingredients in the bowl, then the woman mix the ingredients and put flower an other ingredients.\",\"Then, the woman mix the dough with her hands, then she\",gold,wash and dyes her hands.,adds some egg white pasta with a blue pepper to spread it onto a plate.,puts the contents into the salad with a mixed pitcher while in the bowl and mix other as objects.,add one little sugar then give it sweet zest and the slices of the ball cake.,0\n4883,anetv_3VkqckKyshc,760,A man dressed in a camouflaged suit is standing in a large grassy field with other people and he's pulling on a string we can barely see. There,A man dressed in a camouflaged suit is standing in a large grassy field with other people and he's pulling on a string we can barely see.,There,gold,\"is shown of a guard holding a jump rope, as well as the stadium with people walking.\",are a lot of other people moving around on the field doing their own thing.,\", the man demonstrates tai chi outside of circle.\",\"is a red made triangle on the front of the title, and there are an orange watching in the background.\",1\n4884,anetv_3VkqckKyshc,761,There are a lot of other people moving around on the field doing their own thing. The camera angles are changing and when we get a close up of the man we,There are a lot of other people moving around on the field doing their own thing.,The camera angles are changing and when we get a close up of the man we,gold,see that we saw them out by a hand.,are smiling.,can be seen at one point.,can finally see the string he is pulling on.,3\n4885,anetv_BD_ON66t6rM,1316,A man is kayaking on water and moving his arms back and fourth quickly. The camera,A man is kayaking on water and moving his arms back and fourth quickly.,The camera,gold,jumps across a sand plant with a man in a large green kayak.,pans around the man as well as older and speaking to the camera.,follows him moving through the water and eventually works his way towards a bridge.,zooms back on the man while speaking to the camera.,2\n4886,lsmdc3007_A_THOUSAND_WORDS-3552,1982,Outside sun shines on the Bodhi tree. A leaf,Outside sun shines on the Bodhi tree.,A leaf,gold,drifts up to someone.,comes along where people walk along it's small lake bordered by elegant white headstones.,blows the wake off his broomstick.,falls from the tree.,3\n4887,lsmdc3007_A_THOUSAND_WORDS-3552,1976,Someone takes out his cellphone. Jacks,Someone takes out his cellphone.,Jacks,gold,emerge from the dressing room.,sit in a chair and stand still listening.,grasps then glares at his phone.,runs onto a security guard and takes an elevator with separate guns.,2\n4888,lsmdc3007_A_THOUSAND_WORDS-3552,1978,\"As someone laughs, leaves shoot out of his mouth. More leaves\",\"As someone laughs, leaves shoot out of his mouth.\",More leaves,gold,fall toward someone.,\"tumble on the ground, as it sweeps above the undergrowth.\",fly from someone's mouth.,shoot at someone.,2\n4889,lsmdc3007_A_THOUSAND_WORDS-3552,1981,\"Someone gets up, steps to a window, and pulls aside a curtain. Outside sun\",\"Someone gets up, steps to a window, and pulls aside a curtain.\",Outside sun,gold,is set off in a dark yard.,shines in a crystal chandelier on the foliage above their heads.,shines on the bodhi tree.,shines brightly through a window in the sparse paneled walls.,2\n4890,lsmdc3007_A_THOUSAND_WORDS-3552,1986,\"Someone turns, strides across the room, picks up his briefcase, then turns back to face the tree. Smiling, someone\",\"Someone turns, strides across the room, picks up his briefcase, then turns back to face the tree.\",\"Smiling, someone\",gold,enters the house and hands him a folded box of chocolates.,holds his head for her with a soft smile between them.,removes the card from the ping pong table.,turns toward the tree and raises his middle finger.,3\n4891,lsmdc3007_A_THOUSAND_WORDS-3552,1979,More leaves fly from someone's mouth. Someone,More leaves fly from someone's mouth.,Someone,gold,covers and uncovers his mouth.,uses the gate display with his back to someone.,grabs a letter out of submerges.,sees his peace of vision.,0\n4892,lsmdc3007_A_THOUSAND_WORDS-3552,1988,Someone holds up three fingers. Someone,Someone holds up three fingers.,Someone,gold,kisses her lips and gives him a friendly hug.,sports a dark cap as she sinks inside.,\"sits at a desk and taps someone, then stands outside then looks with headscarf.\",spreads his hands apart.,3\n4893,lsmdc3007_A_THOUSAND_WORDS-3552,1980,\"He raises his head and looks at the other half of the bed, which is empty. Someone\",\"He raises his head and looks at the other half of the bed, which is empty.\",Someone,gold,looks at someone as he passes.,stands on a bench and faces someone.,crawls over the fish.,\"gets up, steps to a window, and pulls aside a curtain.\",3\n4894,lsmdc3007_A_THOUSAND_WORDS-3552,1989,Someone spreads his hands apart. Someone,Someone spreads his hands apart.,Someone,gold,follows him down a stiff path.,holds up three fingers again.,pulls his quill out.,looks down at the photos.,1\n4895,lsmdc3007_A_THOUSAND_WORDS-3552,1984,The shadows of falling leaves sweep across someone. He,The shadows of falling leaves sweep across someone.,He,gold,kneels down and grabs someone's wrists.,\"stops short, looks down a street, and stops behind and starts to mask.\",\"shoots a ominous glance at her even as they walk away, leaving the group toward the couple.\",stops writing and looks outside at the tree.,3\n4896,lsmdc3007_A_THOUSAND_WORDS-3552,1985,\"Someone glares at the tree, then writes, Die Tree. Someone\",\"Someone glares at the tree, then writes, Die Tree.\",Someone,gold,reclines on the elephant.,and his mother pop news in the auditorium.,chalks her fan out of an open box.,\"turns, strides across the room, picks up his briefcase, then turns back to face the tree.\",3\n4897,lsmdc3007_A_THOUSAND_WORDS-3552,1987,At the coffee shop someone stands at the counter and grins. Someone,At the coffee shop someone stands at the counter and grins.,Someone,gold,holds up three fingers.,runs in with her in his arms.,stands at the bar by her in a colorful dress.,stares back at the window.,0\n4898,anetv_D9eo9NfFhkg,3352,The bald headed man places a menu on the side of the bus. The lady from the ice cream parlour bus,The bald headed man places a menu on the side of the bus.,The lady from the ice cream parlour bus,gold,hands an ice cream cone to a client.,\"sits several yards nearby, around it.\",sees someone at the bar.,is seen on the screen.,0\n4899,anetv_D9eo9NfFhkg,3353,Multiple images and clips of many different people eating and showing their ice cream. The bald man and the lady inside of the ice cream parlour bus,Multiple images and clips of many different people eating and showing their ice cream.,The bald man and the lady inside of the ice cream parlour bus,gold,are shown on the beach.,chases the man loads.,has a boy's arm.,are shown working and picking up supplies as more images of patrons eat and show their ice cream treats.,3\n4900,anetv_qiw2I1oQIVQ,7720,\"A group of drum players gather, playing in a room. Their playing\",\"A group of drum players gather, playing in a room.\",Their playing,gold,\"is interspersed with images of sheet music, then returns to their performance.\",instruments are played with metal screens interspersed the video.,is more set of polo.,is set by a bunch.,0\n4901,anetv_qiw2I1oQIVQ,7719,Several black and white photos are being shown of people who played drums. A group of drum players,Several black and white photos are being shown of people who played drums.,A group of drum players,gold,prepare to play the game.,watch them from the sidelines and clap.,\"gather, playing in a room.\",are shown inside the instruments.,2\n4902,anetv_PT4x_Y5lu_g,4037,A girl dives off the board into the water. They,A girl dives off the board into the water.,They,gold,take turns as they flip through the air into the pool.,see the girls snowboard on the side of the boat.,\"stand in canoes, attached to the water skis.\",begin to jump and start to ramp out a lot of jumps as they go.,0\n4903,anetv_PT4x_Y5lu_g,4036,A group of swimmers gather in front of judges. A girl,A group of swimmers gather in front of judges.,A girl,gold,throws a discus in front of a boat.,dives off the board into the water.,\"plays on the drum, critique.\",plays the dart.,1\n4904,anetv_PT4x_Y5lu_g,1622,A person is seen standing ready at the end of a diving board followed by walking towards the end and jumping in the pool. Several more clips,A person is seen standing ready at the end of a diving board followed by walking towards the end and jumping in the pool.,Several more clips,gold,are shown of people throwing parts off the board as well as wave to the camera as well.,are shown of people crashing all around a pool.,are shown of the person performing impressive dives into the pool while her same clip is shown again afterwards in slow motion.,are shown of people running from the water all around the track doing several trick shots as well as swimming.,2\n4905,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7171,\"Standing over him, someone collapses his modified weapon and readies himself for a final strike. Someone\",\"Standing over him, someone collapses his modified weapon and readies himself for a final strike.\",Someone,gold,clasps his father's shoulder and runs off with him.,brings down his ax.,falls back on the dash.,levels his darts at her and she watch.,1\n4906,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7154,\"Up ahead, someone bounds off the back of two horses and mounts a third. Someone\",\"Up ahead, someone bounds off the back of two horses and mounts a third.\",Someone,gold,walks up the steps and opens his front door for someone.,\"sits up, talking beneath.\",nears his target holding his ax at the ready.,pulls off his jacket.,2\n4907,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7155,Someone nears his target holding his ax at the ready. Someone,Someone nears his target holding his ax at the ready.,Someone,gold,aims from the present down to the yard of hogwarts.,pulls up a knife and point the gun at him.,glances back over his shoulder.,runs smack into the man and swaggers off with the ax.,2\n4908,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7157,He ducks the swing of the ax. Someone,He ducks the swing of the ax.,Someone,gold,reels around a pillar as the troll spins around.,swings past his coach and takes a steep leap onto the paddy field.,strikes the balance and dismounts from the ceiling.,leans back as someone throws a roundhouse kick.,3\n4909,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7148,Someone blocks him with the shaft of his ax. They both,Someone blocks him with the shaft of his ax.,They both,gold,run over the net of the city carrying even sacks.,look up at the blazing inferno.,see a horse charging straight for them.,look around and see him shot down the alley after her.,2\n4910,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7135,Someone opens a carriage door and the man hands him his card. Someone,Someone opens a carriage door and the man hands him his card.,Someone,gold,\"opens the door, takes out her own wand and aims.\",shakes someone's hair and gets up.,points to a small tent in frustration.,climbs into his carriage then shakes someone's hand.,3\n4911,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7183,\"He drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe. He\",\"He drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe.\",He,gold,\"slashes a second attacker's kicking leg, then drives his blade through the vampire's palm and flips him onto his back.\",follows little hesitation as he runs towards rundown path.,\"lunges at someone, screaming at him with an terror.\",stops so little someone steps towards him.,0\n4912,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7195,\"Baring his newfound fangs, someone grabs his dagger and charges the vampire. He goes to strike, but his arm\",\"Baring his newfound fangs, someone grabs his dagger and charges the vampire.\",\"He goes to strike, but his arm\",gold,falls on the back of someone's head.,stops mid - stab.,becomes little awkwardly in the air.,drops into someone 'grasp.,1\n4913,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7138,\"He stops at a corner. Returning from a corral, someone\",He stops at a corner.,\"Returning from a corral, someone\",gold,throws down a pitchfork.,continues to crowd behind a band.,approaches in a backpack buck.,stands behind the pole guardsmen.,0\n4914,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7181,The vampire appears and someone dodges a swipe. He,The vampire appears and someone dodges a swipe.,He,gold,\"ducks another, then slashes his attacker's masked mouth creating a spectacular spray of gore.\",flinches with a flash disk.,\"falls, dead, and scrambles others.\",\"draws sitting, losing his balance.\",0\n4915,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7146,He rolls to a stop and stands up to find himself facing the oncoming stampede. He,He rolls to a stop and stands up to find himself facing the oncoming stampede.,He,gold,spots someone leaping over the herd.,gets the paper back on a shelf and drinks it in.,swings back and forth and plans for footing.,leans on the mat for a second then caresses her face.,0\n4916,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7159,\"The vampire grabs the ax and flips someone on to the back of another horse. As someone mounts the horse, he\",The vampire grabs the ax and flips someone on to the back of another horse.,\"As someone mounts the horse, he\",gold,sees someone run off across the backs of the herd.,walks under the tree and takes the ax in one hand.,and someone lead the destroyer into a warehouse.,\"leaps from his horse, the sweep of the bow.\",0\n4917,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7169,\"Someone grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye. Someone\",\"Someone grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye.\",Someone,gold,lands on his back.,gets off his bike.,\"backs away, then peers over his shoulder and hands over his grenade.\",puts the chalice up in his face.,0\n4918,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7192,\"He watches the attack in a stupor, his jaw hanging slack. Someone\",\"He watches the attack in a stupor, his jaw hanging slack.\",Someone,gold,\"breaks into an embrace with her fingertips, then thrusts her hips.\",runs off and describes the list at the display on the same kitchen.,slows his spin to a stop then let's his victim sink to the ground.,lifts his head and sits down on his side.,2\n4919,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7174,\"He slams her against a brick wall clutching her throat. Behind the man, someone\",He slams her against a brick wall clutching her throat.,\"Behind the man, someone\",gold,collapses and spies him with the gun too.,raises her broomstick that dive into swings.,looks after the hungrily.,steps out from a shadowy recess across the alley.,3\n4920,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7175,\"Behind the man, someone steps out from a shadowy recess across the alley. With a calm, deliberate gaze, he\",\"Behind the man, someone steps out from a shadowy recess across the alley.\",\"With a calm, deliberate gaze, he\",gold,nears the rapist's exposed neck and takes a bite.,finds the whispering vulture's husky face.,remembers mixing his sketchbook.,lumbers down onto the train tracks then approaches someone.,0\n4921,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7202,\"He steps onto a curb and crosses a sidewalk heading for the general store. As he unlocks the front door, someone\",He steps onto a curb and crosses a sidewalk heading for the general store.,\"As he unlocks the front door, someone\",gold,gives it to someone.,approaches him from behind.,opens it and he walks up.,nods and heads for the door.,1\n4922,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7166,\"Rolling to a stop, he loses his ax. Someone\",\"Rolling to a stop, he loses his ax.\",Someone,gold,pounces on him and bares his hideous fangs.,\"kicks at his hit tank, hitting the slytherin coach.\",prods a rock with the machine gun.,looks off and takes another shot of his trunk.,0\n4923,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7144,\"He slams the horses into the ground and they tumble across the dirt obstructing someone's path. As someone jumps one of the horses, he\",He slams the horses into the ground and they tumble across the dirt obstructing someone's path.,\"As someone jumps one of the horses, he\",gold,leaps down with her foot in the time debris.,falls off his own.,falls down from the far pier from the ride.,\"drops his feet up and lowers his body, then suspends twice.\",1\n4924,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7140,\"He stops and sniffs the air. Grimacing, he\",He stops and sniffs the air.,\"Grimacing, he\",gold,swallows for two empty breaths.,hacks at it despite the spot.,takes of his sunglasses.,rises and inhales the stand.,2\n4925,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7149,They both see a horse charging straight for them. The stallion,They both see a horse charging straight for them.,The stallion,gold,\"serum lies on the frame in a holder beside someone, whose head and siblings appear shaking their breath.\",reads food with black suitcases placed on someone's shoulders.,knocks someone off someone sending him tumbling across the dirt.,are in all flash swords.,2\n4926,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7176,\"With a calm, deliberate gaze, he nears the rapist's exposed neck and takes a bite. As the vampire brings his flailing victim down, the young woman\",\"With a calm, deliberate gaze, he nears the rapist's exposed neck and takes a bite.\",\"As the vampire brings his flailing victim down, the young woman\",gold,steps on the dead tiger enclosure and seizes him on.,\"drops the ax, which lies on the ground.\",escapes down the alley.,flips and whips him.,2\n4927,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7165,\"Someone clings to someone's boot as the herd runs alongside a bluff, he lets go. Someone\",\"Someone clings to someone's boot as the herd runs alongside a bluff, he lets go.\",Someone,gold,\"stares up at the giant, who hunches the creature.\",snatches it from someone.,\"takes out the dog, its wailing on the tail.\",falls off the horse and tumbles down the face of the bluff.,3\n4928,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7143,\"As the vampire runs up ahead, someone mounts one of the horses. Someone\",\"As the vampire runs up ahead, someone mounts one of the horses.\",Someone,gold,\"leaps forward between two horses, grabs onto their necks and hangs between them.\",releases her as she runs along a column.,\"cautiously turns his back, sending him stare as a female's hand snatches his.\",picks his rifle up and whacks it over the head with his ax.,0\n4929,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7188,\"He grabs a tuft of someone's hair and lowers him to his knee. As someone crosses to the dark haired woman, a dazed someone\",He grabs a tuft of someone's hair and lowers him to his knee.,\"As someone crosses to the dark haired woman, a dazed someone\",gold,leans over and strokes the back of her leg.,watches her uneasily anxiously.,furrows her brow as he rests his forehead against her hands.,rises to his feet but struggles to maintain his balance.,3\n4930,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7150,\"The stallion knocks someone off someone sending him tumbling across the dirt. The vampire rises to his feet, he\",The stallion knocks someone off someone sending him tumbling across the dirt.,\"The vampire rises to his feet, he\",gold,pulls rain from its foliage.,realizes that elf - like web is flung into the paddy wagon and is hurled through the air.,\"boldly grabs the front leg of an oncoming horse, flipping the steed on its back.\",\"stands, follows the girl towards someone.\",2\n4931,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7151,\"The vampire rises to his feet, he boldly grabs the front leg of an oncoming horse, flipping the steed on its back. Using the horse like a track and field hammer, he\",\"The vampire rises to his feet, he boldly grabs the front leg of an oncoming horse, flipping the steed on its back.\",\"Using the horse like a track and field hammer, he\",gold,hurls it at his enemy knocking him to the ground.,swings himself upside and over the ramps.,circles himself up an armored neck.,proceeds to examine the trunk and evenly of bare feet.,0\n4932,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7185,The vampire takes off his sunglasses revealing his puffy eyes. Someone,The vampire takes off his sunglasses revealing his puffy eyes.,Someone,gold,moves his head to the front leg of the hill's edge.,kicks out someone's shin and the vampire almost falls on his dagger.,hits and bounces hard on his crutches overboard.,\"faces his fallen tree, and sets them on a tree.\",1\n4933,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7141,He flees among his frightened horses. An aerial view,He flees among his frightened horses.,An aerial view,gold,leads to someone in a hawaiian jersey.,shows the herd crossing a riverside field.,\"is seen, leaving the vast arena with several mingle of men chatting.\",shows a landscape of chinese city as a group.,1\n4934,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7201,\"Now through a downpour, the tall, young man crosses a street. He\",\"Now through a downpour, the tall, young man crosses a street.\",He,gold,reaches up on her.,swarm the neon sign.,drives his stationary bike toward a series of high school cabs.,steps onto a curb and crosses a sidewalk heading for the general store.,3\n4935,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7173,\"Now at night, a man forces a young woman through a narrow alley. He\",\"Now at night, a man forces a young woman through a narrow alley.\",He,gold,slams her against a brick wall clutching her throat.,and the girl reach to sample cover.,enjoys the brushes on the others.,ducks under a blue platform and passes a projector.,0\n4936,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7172,\"Someone brings down his ax. Now at night, a man\",Someone brings down his ax.,\"Now at night, a man\",gold,serves him from a fire.,hands the bully to his puppet.,forces a young woman through a narrow alley.,takes out his drink and drinks the settings beneath it.,2\n4937,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7177,\"Someone throws his ax, but someone catches it. Someone kicks him down and swing, but someone\",\"Someone throws his ax, but someone catches it.\",\"Someone kicks him down and swing, but someone\",gold,gets onto to distract him.,hands him back a little so he can reach the door this time.,catches him with his gun.,grabs the ax once more.,3\n4938,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7162,\"He rises to his feet then runs after the vampire landing on a new horse's back with every daring step. Through a veil of wafting dust, we\",He rises to his feet then runs after the vampire landing on a new horse's back with every daring step.,\"Through a veil of wafting dust, we\",gold,4x4 see someone yanking from the rope and rushing towards the crowd of wheelhouse.,\"see a child, zoo, motionless.\",glimpse someone as he looks back and grins.,see his hair curlers hidden by the leg of a train.,2\n4939,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7152,\"Using the horse like a track and field hammer, he hurls it at his enemy knocking him to the ground. Amid the chaos of the stampede, the horse\",\"Using the horse like a track and field hammer, he hurls it at his enemy knocking him to the ground.\",\"Amid the chaos of the stampede, the horse\",gold,\"shoots out of boxes, attacking using trainers hooks that safety shore.\",rises with someone on its back.,throws a sharp to what the homestead has behind.,drops off the bow.,1\n4940,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7153,\"Amid the chaos of the stampede, the horse rises with someone on its back. Up ahead, someone\",\"Amid the chaos of the stampede, the horse rises with someone on its back.\",\"Up ahead, someone\",gold,\"reaches out and grasps the knob, refreshments clumsily at his hand.\",bounds off the back of two horses and mounts a third.,\"keeps the gun trained all the way to the temple, his lantern flying.\",peers over the ridge.,1\n4941,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7180,\"As he kisses a woman leaning out of the window, he notices a team of riders approaching. The dark haired woman sits back and someone\",\"As he kisses a woman leaning out of the window, he notices a team of riders approaching.\",The dark haired woman sits back and someone,gold,leads her farther away.,hands her a gun.,\"flings his hands off her back, then faces the passengers.\",\"sits beside her, as the troops gather.\",1\n4942,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7190,\"He watches someone wrap his arms around her. Sinking his teeth into her neck, he\",He watches someone wrap his arms around her.,\"Sinking his teeth into her neck, he\",gold,\"blinks her longingly as he guides her toward the counselor, who gently twirls her board through the air.\",spins her around lifting her off her feet.,lowers his drenched fingers and breaks the kiss again.,lunges forward and lays his head on her shoulder.,1\n4943,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7199,Someone glances back at the riders then goes to his love's side. He,Someone glances back at the riders then goes to his love's side.,He,gold,attempts to stabilize the note on a flat.,gently turns her face to his own and kisses her on the lips.,\"gets in the back of the train's, spinning around.\",is dimly wearing his army uniform.,1\n4944,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7187,\"Someone grabs someone from behind, exposes his neck and sinks his teeth in. Someone\",\"Someone grabs someone from behind, exposes his neck and sinks his teeth in.\",Someone,gold,runs out of the submarine and picks up the key.,\"looks up from his trembling victim, his mouth dripping with blood.\",flies away over a bay window.,\"stares for a moment now, then smears ash on his face as he approaches.\",1\n4945,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7145,\"As someone jumps one of the horses, he falls off his own. He\",\"As someone jumps one of the horses, he falls off his own.\",He,gold,skim over a rocky ridge.,\"touches down jaw, then spreads their legs in tender, hasty breaths.\",\"rises from the crowd and runs back, leaving a bag of red flowers in his yard.\",rolls to a stop and stands up to find himself facing the oncoming stampede.,3\n4946,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7189,\"As someone crosses to the dark haired woman, a dazed someone rises to his feet but struggles to maintain his balance. He\",\"As someone crosses to the dark haired woman, a dazed someone rises to his feet but struggles to maintain his balance.\",He,gold,grabs the troll's paws and squishes it over the boy's head.,shakes someone's head.,presses it to someone's face as he looks up at someone.,watches someone wrap his arms around her.,3\n4947,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7132,\"Daytime, on a street corner, someone addresses a crowd from a soapbox. Someone\",\"Daytime, on a street corner, someone addresses a crowd from a soapbox.\",Someone,gold,rides up in a carriage.,approach a sign piano in the bustling center.,lies in a chair.,sees names posted to the statue.,0\n4948,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7186,Someone kicks out someone's shin and the vampire almost falls on his dagger. Someone,Someone kicks out someone's shin and the vampire almost falls on his dagger.,Someone,gold,\"grabs someone from behind, exposes his neck and sinks his teeth in.\",grabs a white dolly.,winks at the tiger.,sticks the horn with futilely.,0\n4949,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7196,\"He goes to strike, but his arm stops mid - stab. With both hands, he swipes at someone and attempts to stab him in the heart, but an unseen force\",\"He goes to strike, but his arm stops mid - stab.\",\"With both hands, he swipes at someone and attempts to stab him in the heart, but an unseen force\",gold,blocks blood with his wand.,\"yawns up off his stiff, flinging breasts.\",charges him on the face and his arms come out.,holds the blade back.,3\n4950,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7197,Someone lowers his demoralized gaze. Someone,Someone lowers his demoralized gaze.,Someone,gold,raps between someone's glasses and opens the door and waits more into a tunnel.,gives a noncommittal shrug.,turns away from his window.,leaves him standing alone.,3\n4951,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7194,\"Trembling, face down, someone watches his dead love. With his boot, someone\",\"Trembling, face down, someone watches his dead love.\",\"With his boot, someone\",gold,stares at the hobbit's body.,steps out of a waiting room and lights a cigarette.,rolls her on her back.,lets the stranger down.,2\n4952,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7133,Someone steps down from his soapbox and the crowd gathers around him. He,Someone steps down from his soapbox and the crowd gathers around him.,He,gold,leaves and the hefty someone reeling as he leaves.,kicks him in the ribs.,picks himself up and places her over the railing.,walks with an older man wearing sunglasses.,3\n4953,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7193,\"Someone slows his spin to a stop then let's his victim sink to the ground. Trembling, face down, someone\",Someone slows his spin to a stop then let's his victim sink to the ground.,\"Trembling, face down, someone\",gold,ducks his face under the blanket.,shrugs his gloved hands.,watches his dead love.,steps warily past a scratch - o - matic.,2\n4954,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7139,\"Returning from a corral, someone throws down a pitchfork. He\",\"Returning from a corral, someone throws down a pitchfork.\",He,gold,applauds for his dog.,blast against the wood.,stops and sniffs the air.,\"extends his hands and moves to the cabin, finding a prop window.\",2\n4955,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7179,\"In a flashback, on a tree - lined road, someone hops out of his carriage and takes a look at its wheel. As he kisses a woman leaning out of the window, he\",\"In a flashback, on a tree - lined road, someone hops out of his carriage and takes a look at its wheel.\",\"As he kisses a woman leaning out of the window, he\",gold,drops the chain to the ground.,notices a team of riders approaching.,holds a circle of illumination ahead as he fidgets.,leans him into an embrace and closes his mouth.,1\n4956,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7200,\"He gently turns her face to his own and kisses her on the lips. Beside someone, someone\",He gently turns her face to his own and kisses her on the lips.,\"Beside someone, someone\",gold,covers her eye with her hands.,rises to his feet.,rocks his bag over his shoulder.,places a homer signature on his hands and faces with his gloved hands.,1\n4957,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7178,\"Someone kicks him down and swing, but someone grabs the ax once more. In a flashback, on a tree - lined road, someone\",\"Someone kicks him down and swing, but someone grabs the ax once more.\",\"In a flashback, on a tree - lined road, someone\",gold,follows his son at a high driveway.,stands on a rope with the tree.,hops out of his carriage and takes a look at its wheel.,opens the shutters into a trailer in a dimly lit workshop.,2\n4958,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7137,The tall young man hurries away. He,The tall young man hurries away.,He,gold,stops at a corner.,sees the butcher run away.,loads a small revolver.,goes out as darkness engulfs him.,0\n4959,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7147,He spots someone leaping over the herd. Someone,He spots someone leaping over the herd.,Someone,gold,follows someone backwards through a doorway.,bursts through a narrow gap and disappears onto the hall.,blocks him with the shaft of his ax.,feeds the van through to one side of the man and marley's.,2\n4960,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7136,Someone climbs into his carriage then shakes someone's hand. The carriage,Someone climbs into his carriage then shakes someone's hand.,The carriage,gold,lifts up in the middle of frock range and whips him above its head.,pulls away as the ambulance arrives.,rides off revealing someone.,pushes shut behind him.,2\n4961,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7170,\"Someone lands on his back. Standing over him, someone\",Someone lands on his back.,\"Standing over him, someone\",gold,and someone step back to the bar.,yanks himself off from the train window then rolls back down.,smiles back at the older man.,collapses his modified weapon and readies himself for a final strike.,3\n4962,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7191,Someone's eyes roll back. He,Someone's eyes roll back.,He,gold,looks quizzically at him and hugs himself in the end.,kicks someone's leg again.,\"watches the attack in a stupor, his jaw hanging slack.\",holds her gaze and points back to her on foot.,2\n4963,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7134,He walks with an older man wearing sunglasses. Someone opens a carriage door and the man,He walks with an older man wearing sunglasses.,Someone opens a carriage door and the man,gold,pulls out a drone's wand.,walk into frame past him.,hands him his card.,appears in the other standing shadows.,2\n4964,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7156,Someone glances back over his shoulder. He,Someone glances back over his shoulder.,He,gold,ducks the swing of the ax.,gets one of his things.,glances over his shoulder then clears the cabin.,enters the apartment next to his bedroom.,0\n4965,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7168,The vampire grabs the ax and nearly splits someone's face. Someone,The vampire grabs the ax and nearly splits someone's face.,Someone,gold,\"grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye.\",pounds him to the plate.,pose releasing his wands.,\"drags him in a grenade, approaching the wreck.\",0\n4966,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7184,He kicks the human in the face. The vampire,He kicks the human in the face.,The vampire,gold,collapses onto the wheeled seat.,\"lies neatly deep in his chin, blood streaming from his nose.\",takes off his sunglasses revealing his puffy eyes.,\"lies, snapping its lifeless body.\",2\n4967,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7182,\"Someone tries to stab his attacker, but the vampire clutches his wrist. He\",\"Someone tries to stab his attacker, but the vampire clutches his wrist.\",He,gold,\"drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe.\",shoots the bloody dead inside.,flashes a swipe at someone contentedly.,\"flicks open the vampire's claw - like jaws, but advances, knocking his cat away with him.\",0\n4968,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7198,Someone leaves him standing alone. Someone,Someone leaves him standing alone.,Someone,gold,is still looking at someone.,stares at another unhatched egg.,glances back at the riders then goes to his love's side.,\"falls, carrying glasses of his whisky.\",2\n4969,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7142,\"An aerial view shows the herd crossing a riverside field. As the vampire runs up ahead, someone\",An aerial view shows the herd crossing a riverside field.,\"As the vampire runs up ahead, someone\",gold,joins him on his horse's tail.,grabs the rear of the cart's helmet.,mounts one of the horses.,\"eyes his abandoned rifle around the perimeter and the manhole, along the backyard of the rodeo club.\",2\n4970,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7164,\"Someone lunges at him swiping at his legs, but the vampire jumps, flips and lands on a horse behind someone. He tries to bite someone's exposed neck, but the vampire hunter\",\"Someone lunges at him swiping at his legs, but the vampire jumps, flips and lands on a horse behind someone.\",\"He tries to bite someone's exposed neck, but the vampire hunter\",gold,carries it back.,blocks the bite with his ax and pushes them off the horse.,sends someone backward and slams under the straps of the crowbar to avoid him.,reaches the crack on the counter.,1\n4971,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7163,\"Through a veil of wafting dust, we glimpse someone as he looks back and grins. Someone lunges at him swiping at his legs, but the vampire\",\"Through a veil of wafting dust, we glimpse someone as he looks back and grins.\",\"Someone lunges at him swiping at his legs, but the vampire\",gold,is holding him by the shoulders.,\"'s head is pulled free with his free hand, and he shoots its shaft at the vampire's body skin.\",\"jumps, flips and lands on a horse behind someone.\",lands him with his stick.,2\n4972,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7160,\"As someone mounts the horse, he sees someone run off across the backs of the herd. Someone\",\"As someone mounts the horse, he sees someone run off across the backs of the herd.\",Someone,gold,attempts to stand on his horse's back.,runs toward the end of the track.,jumps down the edge of the staircase and stands up just in front of someone.,swings backwards and lands on the ground.,0\n4973,anetv_Iiwz1JtC7rk,15991,The top of a woman's head is seen. She,The top of a woman's head is seen.,She,gold,shows a polished heart with a polished metal.,is shown getting her hair braided by another woman.,shows off a video.,rolls up her sleeve.,1\n4974,anetv_Iiwz1JtC7rk,18410,A person is then seen putting the girl's hair up in several dos while showing it to the camera. The girl,A person is then seen putting the girl's hair up in several dos while showing it to the camera.,The girl,gold,holds up a brush and brushes to her hair and brushes it while holing the brush in the brush.,continues to show off hairstyles while smiling to the camera.,then instructs on shampoo while speaking to the camera.,pours some on indoors into another lens before speaking to the camera.,1\n4975,anetv_Iiwz1JtC7rk,15992,She is shown getting her hair braided by another woman. The woman,She is shown getting her hair braided by another woman.,The woman,gold,continues blow drying her hair in the end.,continues speaking to the camera and landing on her back.,\"tucks the braid in, showing how she keeps it clipped with bobby pins.\",claps while demonstrating how to braid the hair.,2\n4976,anetv_p3-tF0riSpQ,6100,He is then seen putting a cleaner on his teeth and taking a bit of food. He,He is then seen putting a cleaner on his teeth and taking a bit of food.,He,gold,places a blade on the rag after filling in the liquid with a brush and spray liquid.,continues to wipe sticky ink along his arm and then putting it in the pen and shows it to the camera.,continues speaking to the camera while occasionally eating food.,continues talking about the petrol cans and parts to wash a different piece of plant in the car.,2\n4977,anetv_ovTKJgSWMKQ,15042,A man towels off in a room. He,A man towels off in a room.,He,gold,makes an instructional clipping with a leg.,\"enters the competition, shaking hands after his dive.\",jumps over the vacuums floor and cuts off the tiles and onto the floors.,pushes a heavy broom off of the steam.,1\n4978,anetv_OjV4UScwkU0,17410,Man is in a workshop and puts a glove in his hand and grab a weld machine. man,Man is in a workshop and puts a glove in his hand and grab a weld machine.,man,gold,start welding something in a metal table.,is standing in a room while taking pictures and talking to the camera.,pushes the bolts of the room.,leaves the ground on a machine and start a new one.,0\n4979,anetv_OjV4UScwkU0,17364,The man then grabs a tool and begins torching an area. He,The man then grabs a tool and begins torching an area.,He,gold,grabs the stick and tosses it against the tile.,sticks his stick in the hose.,pauses for a moment and continues torching followed by grabbing the camera and showing off his work.,throws around and extends his arm while points to the camera.,2\n4980,anetv_OjV4UScwkU0,17411,Man start welding something in a metal table. the man,Man start welding something in a metal table.,the man,gold,continues walking around the table every woman wearing brown sandals.,rubs paint onto the machine.,shakes the man's hand then works his hand.,holds another tool and then keeps welding the metal.,3\n4981,anetv_OjV4UScwkU0,17363,A man is seen walking into frame wearing a helmet and putting gloves on. The man then,A man is seen walking into frame wearing a helmet and putting gloves on.,The man then,gold,begins the marching match in front of the camera.,grabs a tool and begins torching an area.,ties and ties his legs.,stands around and begins skateboarding across the field.,1\n4982,anetv_TOBHIXCu4Ic,4852,Soccer team is running in the field through a large advertising. woman,Soccer team is running in the field through a large advertising.,woman,gold,is talking in front of a group and performing lacrosse on a field.,\"is making jumps in a gym, runs and stumbles to a pole.\",\"playing on the field in the field, then walks across the field on the grass behind two teams.\",win a white game doing the best line and hit the ball very fast.,1\n4983,anetv_TOBHIXCu4Ic,11064,\"This video shows viewers how dumb people are and what pure failure looks like. First, the team throws a girl into the air, but when she comes back down she\",This video shows viewers how dumb people are and what pure failure looks like.,\"First, the team throws a girl into the air, but when she comes back down she\",gold,continues to run to him.,paints the solution into the silver solution straight into the sponge and continues explaining in the end of the gaps.,is on the ground.,picks her up and celebrates.,2\n4984,anetv_TOBHIXCu4Ic,11065,\"First, the team throws a girl into the air, but when she comes back down she is on the ground. Next, another man grabs the woman and tries to hold her in the air using his hands, and he\",\"First, the team throws a girl into the air, but when she comes back down she is on the ground.\",\"Next, another man grabs the woman and tries to hold her in the air using his hands, and he\",gold,is able to make the jump.,\"joins her, then breaks into sobs and starts and tips back straight.\",drops her causing both of them to fall to the ground.,starts to wrestle him.,2\n4985,anetv_TOBHIXCu4Ic,4851,Women are in floor laying on a green field and girl in front is doing somersaults and slip in the field. soccer team,Women are in floor laying on a green field and girl in front is doing somersaults and slip in the field.,soccer team,gold,are on the field playing and doing the act pose.,is watching the women and other players on the back of the court.,is helping a young woman in the sand on the dirt field.,is running in the field through a large advertising.,3\n4986,anetv_TOBHIXCu4Ic,4849,Soccer team are running in a lare field and trip into a cheerleader team that are making a pyramid. man,Soccer team are running in a lare field and trip into a cheerleader team that are making a pyramid.,man,gold,enters the field and walks around the base.,is holding a girl with one arm and fells o the floor.,is in a vault holding a prize.,hit the ball back and forth and rotate in a competition.,1\n4987,anetv_TOBHIXCu4Ic,4853,\"Woman is making jumps in a gym, runs and stumbles to a pole. different cheerleaders teams\",\"Woman is making jumps in a gym, runs and stumbles to a pole.\",different cheerleaders teams,gold,perform different perform and jump while others stand watch and jump.,are in gym making pyramids and falling.,are shown inside the gym floor surrounded by bicycles and make a hilly exercise.,are talking in a room at jerseys on mountains on front of a stadium and are watching people is walking out of their lanes.,1\n4988,anetv_TOBHIXCu4Ic,4850,Cheerleader team is in a wooden gym making a pyamid and fells to the floor. women are in floor laying on a green field and girl in front,Cheerleader team is in a wooden gym making a pyamid and fells to the floor.,women are in floor laying on a green field and girl in front,gold,is firmly right around the court.,is doing somersaults and slip in the field.,is climbing the jump ropes.,are in boxing in her black sweater and start dancing.,1\n4989,anetv_Si4_ER4lUME,3219,A young woman is seen sitting in a kayak looking to the camera. The girl then,A young woman is seen sitting in a kayak looking to the camera.,The girl then,gold,begins going back and fourth and riding him back.,begins climbing on the monkey bars on the back side.,begins moving the paddle back and fourth.,begins playing an accordion while people watch on.,2\n4990,anetv_Si4_ER4lUME,3220,The girl then begins moving the paddle back and fourth. She,The girl then begins moving the paddle back and fourth.,She,gold,continues hit the camera back and fourth.,takes her cup and stands next to him on the street.,continue hitting the game back and fourth while still looking at the camera and leads into her performing a song.,pauses her paddling to laugh off into the distance.,3\n4991,anetv_fErOJ98E15w,13279,A man is playing wall ball in a room. He,A man is playing wall ball in a room.,He,gold,starts throwing plaster from various wall.,jumps onto a fitness competition again.,is carved from onto a table putting a tile floor.,hits the ball against the wall several times.,3\n4992,anetv_fErOJ98E15w,4786,A man is seen standing in an enclosed room holding a tennis racket and performing various moves for the camera. The man,A man is seen standing in an enclosed room holding a tennis racket and performing various moves for the camera.,The man,gold,continues demonstrating how to properly use the tennis racket to hit the ball.,\"throws the ball while spinning around, and putting the ball around and swimming in the park where the man is holding him.\",plays a basketball in front of the camera and the man and woman begin playing with the woman while looking down.,stops playing the instrument and stops.,0\n4993,lsmdc3009_BATTLE_LOS_ANGELES-363,4640,Someone and someone look up from their rifle sights. Someone,Someone and someone look up from their rifle sights.,Someone,gold,works on a ramshackle patio.,lowers his weapon and starts to run.,shoots into the side of the court and gives them a perfect shove.,watches in terror.,1\n4994,lsmdc3009_BATTLE_LOS_ANGELES-363,4638,\"At the car, someone smiles and lets out a sigh. Rocket\",\"At the car, someone smiles and lets out a sigh.\",Rocket,gold,blast several cars near the tank.,\"squishes, someone shakes someone's flare gun.\",\"follows her to one trailer, going through to the garage.\",wheel as he jogs around.,0\n4995,lsmdc3009_BATTLE_LOS_ANGELES-363,4639,Rocket blast several cars near the tank. Someone and someone,Rocket blast several cars near the tank.,Someone and someone,gold,run up the chimney.,stand in the pool.,wave with someone in the boat.,look up from their rifle sights.,3\n4996,anetv_9SY9ufDznFQ,15098,Young women are barely dressed on a hockey field. they women,Young women are barely dressed on a hockey field.,they women,gold,are taking in a sleeveless shirt and putting their socks.,are talking about tips that they should be tossing at.,begin chasing a puck.,pull out of cards and throw the cards back to the newscaster man.,2\n4997,anetv_9SY9ufDznFQ,6226,We then see the girl as a goalie playing lacrosse. We then,We then see the girl as a goalie playing lacrosse.,We then,gold,see people pointing and video horses.,see a replay of the throw.,see the lady hockey being in the same game.,see the girl on the ice.,3\n4998,anetv_9SY9ufDznFQ,6229,We see the team and the girl on an green court. The girl,We see the team and the girl on an green court.,The girl,gold,walks to the platform again and spins in a circle.,flips and lifts her legs from position on a mat.,slides to block and knocks a girl over.,takes a break at the goal.,2\n4999,anetv_9SY9ufDznFQ,6230,The girl slides to block and knocks a girl over. We,The girl slides to block and knocks a girl over.,We,gold,\"the hold her hands on grab she is lifted off the floor, and the baby reaches for someone.\",girl speaks to the camera while continuing to speak and the girl is done filing her hands while her stick is added in her followed,see a live outdoors game.,viewers a small female dance that's jumping up from the floor.,2\n5000,anetv_9SY9ufDznFQ,15099,They women begin chasing a puck. the a goaly,They women begin chasing a puck.,the a goaly,gold,throws the ball as a boy.,picks up some balls.,is shown full padded while being trained.,throws the ball into the oven.,2\n5001,anetv_MMnTMB6AmuU,10701,A woman stands up and starts jump roping. The rest of the women,A woman stands up and starts jump roping.,The rest of the women,gold,is standing outside preparing to arm wrestle.,hugs them and watches.,stand up and join her jump roping.,stand down by the rope.,2\n5002,anetv_MMnTMB6AmuU,10702,The rest of the women stand up and join her jump roping. They,The rest of the women stand up and join her jump roping.,They,gold,cheer on the back and then resume the match and more ladies just fighting.,demonstrates how to rubik the parts of a machine.,are singing to play the guitar.,do a hand stand on the ground in front of them.,3\n5003,anetv_-C1nnsyw7R0,16537,Man is standing in a racetrack and is running to make a jump and people is standing around him. man,Man is standing in a racetrack and is running to make a jump and people is standing around him.,man,gold,is doing tricks on high stilts in a skate park.,explains how to bathroom and jump in a line to get a man who stands behind a fence talking.,is skating in an indoor park by a title obstacle.,is sitting in a room talking to the camera.,3\n5004,anetv_-C1nnsyw7R0,16540,Players are running playing american football and spectators are in the terraces. old man is talking in the room and the man in the race track,Players are running playing american football and spectators are in the terraces.,old man is talking in the room and the man in the race track,gold,approaches to another field with a fellow team is attempting to fall.,is playing white takes his helmet off and is watching fishes in the field.,and he is standing with a players who is marching te side holding a baton.,is running and practicing the jump.,3\n5005,anetv_-C1nnsyw7R0,16539,Man is running in a racetrack and jumping in the dust and man is sitting in a room talking. players are running playing american football and spectators,Man is running in a racetrack and jumping in the dust and man is sitting in a room talking.,players are running playing american football and spectators,gold,watch on the side of his score.,watching the event while spectators watch.,watching him a graphic was his donut club and runs off one of the pictures after them.,are in the terraces.,3\n5006,anetv_c-X500da7JU,1788,\"The woman arrange a gift basket and shows a pile of nice gifts. Then, the woman\",The woman arrange a gift basket and shows a pile of nice gifts.,\"Then, the woman\",gold,demonstrates how to make a gift for a gift.,wraps gifts with different shapes and ornaments.,puts an ornament down the christmas tree.,put an array of flowers on the tree.,1\n5007,anetv_h49mHiWjXBA,14483,Man is standing in an icetrack talking to the camera. people,Man is standing in an icetrack talking to the camera.,people,gold,are standing on the beach watching them.,are standing in a gym taking positions to exercise.,are standing behind a fence talking through the camera.,are playing curling in an ice court.,3\n5008,lsmdc3078_THE_WATCH-36462,13184,\"It grabs his ankle, then flings him into a display of vitamin beverages. The others\",\"It grabs his ankle, then flings him into a display of vitamin beverages.\",The others,gold,\"are inside the door, looking over his shoulder at the promoter.\",curl with a twinkle in his dark eyes.,watch aiming the lantern.,shoot the creature down again with a shot to the groin.,3\n5009,anetv_Cqbs_wM3oc4,15007,A man is sitting in a chair in front of a building. He,A man is sitting in a chair in front of a building.,He,gold,is playing a saxophone.,is playing cards on the desk.,is working on a roof by a cavern in the distance.,\"is vacuuming, mowing the lawn back and forth.\",0\n5010,anetv_Cqbs_wM3oc4,16642,A man is sitting down in a chair. He,A man is sitting down in a chair.,He,gold,are standing behind them watching.,is styling a woman's hair.,is lifting a large weight over his head.,is playing a saxophone.,3\n5011,anetv_Cqbs_wM3oc4,16643,He is playing a saxophone. People,He is playing a saxophone.,People,gold,have medals around them.,beat an electric guitar.,are walking in front of him into a building.,\"the flute, he kneels to a man and speaks, then the man adjust the shirt and plays the flute back and forth.\",2\n5012,lsmdc3084_TOOTH_FAIRY-39709,7490,\"With a playful look, someone shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin. She half\",\"With a playful look, someone shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin.\",She half,gold,\"someone someone's bedraggled, wipes his eyes and flips the binoculars over.\",takes her drink from the tap and watches someone step out of the room.,stifles her smile as she accepts the bouquet.,ambles to the porch and turns to someone.,2\n5013,lsmdc3084_TOOTH_FAIRY-39709,7494,Someone glares at the stick then at someone. Someone,Someone glares at the stick then at someone.,Someone,gold,spits gliding over a switch.,turns his friendly should.,leans the stick against the bed.,gazes up at someone earnestly.,2\n5014,lsmdc3084_TOOTH_FAIRY-39709,7488,\"Now, someone answers her door to find someone holding a bouquet of roses. She\",\"Now, someone answers her door to find someone holding a bouquet of roses.\",She,gold,walks slightly and sets off bottles in a grassy bin.,\"follows him to an deserted flat, find someone's knapsack lovely and barred.\",holds a few of someone's dolls.,spoons her hair in the mirror.,2\n5015,lsmdc3084_TOOTH_FAIRY-39709,7495,Someone leans the stick against the bed. He,Someone leans the stick against the bed.,He,gold,moves on to divan.,holds the pistol in his hand as the step watches.,is just raising one finger.,grins widely at someone.,3\n5016,lsmdc3084_TOOTH_FAIRY-39709,7491,She half stifles her smile as she accepts the bouquet. Someone's grin,She half stifles her smile as she accepts the bouquet.,Someone's grin,gold,stays plastered on his face as he gives a few wobbling nods.,\"glisten as she stares at his father, and looks away.\",pulls back to reveal someone's wife.,pulls on someone's face.,0\n5017,lsmdc3084_TOOTH_FAIRY-39709,7489,\"Someone raises her brow thoughtfully and nods. With a playful look, someone\",Someone raises her brow thoughtfully and nods.,\"With a playful look, someone\",gold,\"stretches out her arms, shakes his head, and stalks away.\",shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin.,shuts the door with open eyes.,strides in to hers.,1\n5018,lsmdc3084_TOOTH_FAIRY-39709,7487,\"Finding nothing, he relaxes. Now, someone\",\"Finding nothing, he relaxes.\",\"Now, someone\",gold,answers her door to find someone holding a bouquet of roses.,\"stares his father hard at someone 'booth, staring ahead.\",holds someone's penis as he thrusts out onto the holes.,strides past the bar with a file cabinet as he reads the lab techs.,0\n5019,anetv_Ba3uRADSg50,14209,One begins climbing along the bars with several other people coming from behind. One woman,One begins climbing along the bars with several other people coming from behind.,One woman,gold,bends over as the other men continue to take baskets.,is seen crouching down and flipping her way over and pans around both other around on the beam.,falls in the water and many more climb across the monkey bars.,climbs up and puts her arms up and leads into her jumping out.,2\n5020,anetv_Ba3uRADSg50,14208,A few older men are shown standing in front of monkey bars talking to one another. One,A few older men are shown standing in front of monkey bars talking to one another.,One,gold,men speak to one another and he takes them off by the camera.,girl is sitting down behind the stick and laughs at the pinata.,begins climbing along the bars with several other people coming from behind.,holds a curler and rings around as people finish up.,2\n5021,anetv_J8Ziy8QR8WQ,15577,Guys throw balls on a field. A guy,Guys throw balls on a field.,A guy,gold,jumps in the dirt and launches grass at a clown.,dances with someone throwing balls balls.,throws an object onto the sides of a row.,holds a few balls and talks.,3\n5022,anetv_J8Ziy8QR8WQ,15579,A man holding a flat bat walks across the field followed by a male holding one ball in each hand. Two men,A man holding a flat bat walks across the field followed by a male holding one ball in each hand.,Two men,gold,run all around the field trying to push the ball ball off into the distance.,fly a rope to a man on the back.,cut balls and jumps away from the table.,sit with one man holding a flat bat.,3\n5023,anetv_J8Ziy8QR8WQ,15578,A guy holds a few balls and talks. A man holding a flat bat,A guy holds a few balls and talks.,A man holding a flat bat,gold,walks across the field followed by a male holding one ball in each hand.,starts to toss cheerily using the batons for him to keep the weight up.,pushes his doing switch.,is playing ping pong when a man in glasses hits the ball.,0\n5024,anetv_J8Ziy8QR8WQ,15580,Two men sit with one man holding a flat bat. Guys,Two men sit with one man holding a flat bat.,Guys,gold,swing the person on the ground cheers.,are walking a ball past the top of the statue.,reach behind two boys while jumping on the back.,hit balls with the flat bat.,3\n5025,anetv_J8Ziy8QR8WQ,15576,The credits of the clip are shown. Guys,The credits of the clip are shown.,Guys,gold,are throwing darts at a paintball field.,throw balls on a field.,are playing ice hockey with a lacrosse wire.,are shown riding the cars around with paper and blue cups.,1\n5026,lsmdc1034_Super_8-8289,523,They run to a storage trailer. Someone,They run to a storage trailer.,Someone,gold,scrambles to a stoop and picks the chase as a pickup truck slides down the street.,dumps cars onto a concrete slab.,uses a resistance axe to hold two cows on their backs.,begins prying a padlock on the trailer with the tire iron.,3\n5027,lsmdc1034_Super_8-8289,519,\"Someone takes a sharp right onto a rough track through the trees. As it's getting dark, they\",Someone takes a sharp right onto a rough track through the trees.,\"As it's getting dark, they\",gold,arrive back into town.,get into the police back first - - a lower level blocks the road.,pass the larger and white rows of beds.,get it to the ground.,0\n5028,lsmdc1034_Super_8-8289,526,Scientists and military men look at the wreckage of something big. Someone,Scientists and military men look at the wreckage of something big.,Someone,gold,distantly seated in the hangar at a closed drill computer screen.,puts a tape in a player.,ducks himself on a stretcher that leads him led across into a small dark tunnel.,arrives back on earth in a stadium of silver lights.,1\n5029,lsmdc1034_Super_8-8289,524,They break into a classroom. They,They break into a classroom.,They,gold,\"join the women, wearing formal outfits and gives jumps on a platform at a park.\",slam themselves on the ground.,look at the footage.,are dancing arm - in - arm.,2\n5030,lsmdc1034_Super_8-8289,521,They drive until someone Middle School. The boys,They drive until someone Middle School.,The boys,gold,opens a refrigerator to their knees in the dinette.,run out a main road.,leave someone in the car park and scramble over a chain link fence.,pack up to $20 and watch him in the van.,2\n5031,lsmdc1034_Super_8-8289,525,They look at the footage. Scientists and military men,They look at the footage.,Scientists and military men,gold,run in through the fiery door of the scuba chamber.,look at the wreckage of something big.,are spraying fluid all over their doors.,exchange quick and very headsets.,1\n5032,lsmdc1034_Super_8-8289,522,The boys leave someone in the car park and scramble over a chain link fence. They,The boys leave someone in the car park and scramble over a chain link fence.,They,gold,crouch down on one side of the paddy road.,run to a storage trailer.,crash into a black car as someone walks down the street.,stop off his pogo motorcycles and runs down the path.,1\n5033,anetv_sQZaEt-ssCs,15396,Two referees on side of tables and watch each other. women,Two referees on side of tables and watch each other.,women,gold,engage in a game of foosball as a coach explains the coaches.,are arm wrestling in the table again and at the end high each other.,are talking to the camera closely as they are shown playing slow wrestling.,\"are on the sidelines playing the matches, playing with a candy bar.\",1\n5034,anetv_l_cjSGt5j40,17193,An older man is seen sitting on a log in a public space in front of a piano. The man then,An older man is seen sitting on a log in a public space in front of a piano.,The man then,gold,begins playing in the sand while others watch on the side.,plays the piano while the camera captures him playing.,pushes up and down on the leg while moving his arms up and down.,lays down and helps him with place while pushing out balls under him.,1\n5035,anetv_l_cjSGt5j40,17194,The man then plays the piano while the camera captures him playing. The man,The man then plays the piano while the camera captures him playing.,The man,gold,continues speaking as audience members stand around and watch the game.,continues playing crochet while the camera pans off all around the room.,moves around to show himself and then continues to play camera.,sings to the camera while continuing to play and the camera moving around his movements.,3\n5036,anetv_VUvEWwghANE,7194,A man is seen standing on a roof using a tool to pull up tile. Several clips,A man is seen standing on a roof using a tool to pull up tile.,Several clips,gold,are then shown of the man talking and moving through the land.,are shown of the man ripping up tiles on the roof.,are shown of various men to around feet and perform martial arts circles.,are shown of people in the water snowy trip as well.,1\n5037,anetv_VUvEWwghANE,14028,The tool is being shown on a table. A man in a green shirt,The tool is being shown on a table.,A man in a green shirt,gold,explains how to iron the handles.,is standing on a roof.,is standing in a blue bath.,is talking in a barber shop.,1\n5038,anetv_VUvEWwghANE,14027,A person is ripping up a roof with a tool. The tool,A person is ripping up a roof with a tool.,The tool,gold,is snowing to a wall next to a tree.,is being shown on a table.,is then put to the carpet.,is scooped with the stacked up and items for others.,1\n5039,anetv_VUvEWwghANE,7195,Several clips are shown of the man ripping up tiles on the roof. The man,Several clips are shown of the man ripping up tiles on the roof.,The man,gold,continues to work with others.,shares the table with the camera.,continues stretching while another is seen holding his arm's length and showing various angles.,continues to lay in carpet and ends by presenting the plaster off of the wall.,0\n5040,anetv_vWde8sMxe1w,13708,Crowds watch and cheer the man on. the man,Crowds watch and cheer the man on.,the man,gold,takes off running across the track.,is doing running video on the sidewalk.,\"enters as as the staff retracts the wood for a screwdriver, several bullets are aimed.\",moves itself toward the end of the routine.,0\n5041,anetv_vWde8sMxe1w,11014,A track athlete is shown on a field. He,A track athlete is shown on a field.,He,gold,is running a pole on the track.,shoots with a quick motion then proceeds over the field.,runs down the track and performs several slow flipping exercises.,\"prepares, then runs fast before long jumping over the bar.\",3\n5042,anetv_vWde8sMxe1w,13707,A man stands in the middle of a stadium. crowds,A man stands in the middle of a stadium.,crowds,gold,two men are gathered on a podium before a crowd.,watch and cheer the man on.,gather in the gym convention rooms.,run and take track gear while performing on a race with their skateboarders around him.,1\n5043,anetv_vWde8sMxe1w,11015,\"He prepares, then runs fast before long jumping over the bar. He\",\"He prepares, then runs fast before long jumping over the bar.\",He,gold,walks to the front of the dance club where a woman is jogging behind him.,\"wins, screaming and jumping while hugging his teammates.\",follows the clowns off the ground and into a residential area.,does a dunk on her right while people follow her.,1\n5044,anetv_MCnvxOLnbsg,16975,A silver car is parked in the street. A man power,A silver car is parked in the street.,A man power,gold,washes the car in the street.,drives the car down the side.,comes out of the garage.,sprays the hose on the truck.,0\n5045,anetv_MCnvxOLnbsg,16976,He then dries it off. The car,He then dries it off.,The car,gold,is then shown spraying snow from the car.,is putting gently cement all around the house.,is now completely clean.,stops together after a bit.,2\n5046,anetv_yyCsQ7QzAJ8,5552,\"The person whip white eggs and adds the sugar. Then, the person\",The person whip white eggs and adds the sugar.,\"Then, the person\",gold,puts the cookies on a golden juicer and chases after them.,\"add different lemons, sets them up on the counter, then stirs and sugar together in the mixer.\",cleans mixture and garlic together and add an arc sauce on toe cakes.,\"adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again.\",3\n5047,anetv_yyCsQ7QzAJ8,5551,Person puts chocolate and whipping cream in a pot to melt. The person,Person puts chocolate and whipping cream in a pot to melt.,The person,gold,cuts the lemons that is a slice of cake.,cuts a few pieces with an electric spoon.,blends the charleston on the winding pot.,whip white eggs and adds the sugar.,3\n5048,anetv_yyCsQ7QzAJ8,5554,\"After, the person mix the chocolate mix and the whip cream, the adds flower and mix all the ingredients. Next, the woman\",\"After, the person mix the chocolate mix and the whip cream, the adds flower and mix all the ingredients.\",\"Next, the woman\",gold,\"puts the mixture in a pot, mix the flavor for the flower.\",\"applies cooking oil to a baking pan, and put the cake mix in it and bakes.\",pours butter in front another baking put in the oven to pour the ingredients with sugar.,drop the glass and pour the syrup into the bowl with also oil and soda.,1\n5049,anetv_yyCsQ7QzAJ8,5550,The ingredients for a chocolate cake is on a table. Person,The ingredients for a chocolate cake is on a table.,Person,gold,is licking food from a table and sitting with them next to it.,is putting noodles in a bowl.,puts chocolate and whipping cream in a pot to melt.,is cutting the edges of the top potato and showing it in circular motion.,2\n5050,anetv_yyCsQ7QzAJ8,343,\"The person continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over. Finally she\",\"The person continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over.\",Finally she,gold,pours powdered sugar all over the cake.,takes out the sandwich in the end and proceeds to get some cream.,mixes the ingredients with a spatula and watch in the doorway then blended.,puts lemons on a cigarette.,0\n5051,anetv_yyCsQ7QzAJ8,342,A camera pans over several ingredients laid out and leads into a person mixing them into a bowl. The person,A camera pans over several ingredients laid out and leads into a person mixing them into a bowl.,The person,gold,mixes various ingredients back into bowl and shows to the camera.,\"continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over.\",mixes ingredients together and uses a mixer to peel the leaves off.,pours food from the broken glass and attempts to bite off the eggs and dry.,1\n5052,anetv_yyCsQ7QzAJ8,5553,\"Then, the person adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again. After, the person mix the chocolate mix and the whip cream, the adds flower and\",\"Then, the person adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again.\",\"After, the person mix the chocolate mix and the whip cream, the adds flower and\",gold,put the bottom to the cake.,ingredients to a bigger pan.,mix all the ingredients.,butter to the pan.,2\n5053,anetv_0rDb-zfhH0E,17184,They talk about how they earned their karate uniforms and what they like about karate. The girl,They talk about how they earned their karate uniforms and what they like about karate.,The girl,gold,talks about her brother and more about karate.,begins to explain the process of powdered facial clothes in the market.,leaves with an ax and how to hold it sticks.,jumps in the front of the audience and plays with the crowd.,0\n5054,anetv_0rDb-zfhH0E,17187,The girl does various karate moves for the camera. Then the brother,The girl does various karate moves for the camera.,Then the brother,gold,grab a quaffle and writes.,appears with the charmingly bash.,grabs turns infinitely after throwing a basketball.,does several different karate moves for the camera.,3\n5055,anetv_0rDb-zfhH0E,17186,The girl plays effects on her brother. The girl,The girl plays effects on her brother.,The girl,gold,delivers the balls for the child to push the balls down to a picnic table.,swims to a blue base with the small boy.,does various karate moves for the camera.,walks past high fiving his opponent.,2\n5056,anetv_Zzj03Cew2vk,14572,The woman rubs the lotion into her skin and leads into her rubbing lotion on the beach. More close ups of bottles,The woman rubs the lotion into her skin and leads into her rubbing lotion on the beach.,More close ups of bottles,gold,are seen as well as text on the screen.,are shown as well as the lotion being sprayed onto a container.,are shown followed by a person putting a cream bar on them.,are shown as well as the group spreading their legs into legs.,0\n5057,anetv_Zzj03Cew2vk,5566,A bottle of moisturizer is shown. A woman on a beach,A bottle of moisturizer is shown.,A woman on a beach,gold,applies it to her skin.,is shown with a machine.,walks towards a bucket showing water in a bowl.,is leaning against the wall.,0\n5058,anetv_Zzj03Cew2vk,5568,She rubs it into her skin. Text,She rubs it into her skin.,Text,gold,appears on screen describing the product.,notices the woman with a blank expression.,hurries herself inside.,\"been there in the hallway, someone sits alone at her school kitchen table and picks up a knife.\",0\n5059,anetv_Zzj03Cew2vk,5567,A woman on a beach applies it to her skin. She,A woman on a beach applies it to her skin.,She,gold,begins putting shoe silver on the shoe.,completes a rendition and blows them onto the hair.,has a brush on her hands and dips it in a parking tub.,rubs it into her skin.,3\n5060,anetv_Zzj03Cew2vk,14571,A close up of a beauty product is shown that leads into a person grabbing the bottle. The woman,A close up of a beauty product is shown that leads into a person grabbing the bottle.,The woman,gold,rubs the lotion into her skin and leads into her rubbing lotion on the beach.,finishes painting the floor and continues washing the other woman's hair.,wipes the water on the window herself and removes his pants.,cleans dishes in various objects of paint as well as people cheering.,0\n5061,lsmdc0020_Raising_Arizona-57266,5904,As the lights are thrown on. The room,As the lights are thrown on.,The room,gold,is hung with streamers.,is lit in heavy clusters.,seems to fill with a large bundle of cds.,\"is set, covered in ash.\",0\n5062,anetv_-sd2XAFkeC0,807,An intro of white screen with a picture of people in a raft and the company name and location are displayed. A man,An intro of white screen with a picture of people in a raft and the company name and location are displayed.,A man,gold,appears with a tool and talks in a dimly lit room of a conference room wearing glasses and then.,is now standing next to moving water as he's talking and looking at the camera.,speaks to a group and while holding a picnic stick and leaning on the tent in boiling water.,holding a paddle in a kayak riding the kayak from a water bottle.,1\n5063,anetv_-sd2XAFkeC0,808,\"The focus now changes to people in a bunch of different rafts as they are going through very rough waters as waves throw their raft in the air or splash onto or above them. The outro appears and it's the same screen as the intro, and a white worded website and copyright\",The focus now changes to people in a bunch of different rafts as they are going through very rough waters as waves throw their raft in the air or splash onto or above them.,\"The outro appears and it's the same screen as the intro, and a white worded website and copyright\",gold,appear overlaid.,appear on the screen.,demonstrates the same sequence.,appear on black screen.,3\n5064,anetv_-sd2XAFkeC0,2880,A man is seen speaking to the camera and leads into a group of people riding in a raft. The camera,A man is seen speaking to the camera and leads into a group of people riding in a raft.,The camera,gold,clips shown from different angles as well as pictures of a man speaking.,pans all around an laughing while sitting and speaking to one another.,captures several people running down a large hill while various tricks are shown.,shows various angles of people riding and getting splashed by water.,3\n5065,anetv_-sd2XAFkeC0,2881,The camera shows various angles of people riding and getting splashed by water. They,The camera shows various angles of people riding and getting splashed by water.,They,gold,see at an waterfall jump and to hiking.,continue riding around and smiling with one another as well as speaking to the camera.,scrapes numerous angles all along the distance of the moving board.,push into the water by pulls the water back on to the stand.,1\n5066,lsmdc1062_Day_the_Earth_stood_still-100978,16813,People are sitting in the open back of the pickup. He,People are sitting in the open back of the pickup.,He,gold,\"looks earnestly at someone, who considers him without emotion.\",\"hears a car clipping, stopped fast and collapses.\",is incredulous that one of them has to deal with the specifics of the story.,\"are getting out of the car, walking against the rail, talking to them.\",0\n5067,lsmdc1062_Day_the_Earth_stood_still-100978,16816,An iron gate is topped with ornate spikes. Someone,An iron gate is topped with ornate spikes.,Someone,gold,is lined pale with clothes seated at the small table.,faces the horse's groom.,climbs over a low wall also topped with iron railings.,uses a lasso to chop it in half.,2\n5068,lsmdc1062_Day_the_Earth_stood_still-100978,16815,He looks thoughtfully at someone. An iron gate,He looks thoughtfully at someone.,An iron gate,gold,is topped with ornate spikes.,rises into the air.,is opened with wings.,closes as his troops teacher steps out.,0\n5069,lsmdc1062_Day_the_Earth_stood_still-100978,16817,Someone looks down at the inscriptions. Someone,Someone looks down at the inscriptions.,Someone,gold,kicks leaves away from one of the graves and dust off the headstone with his glove.,musses his cigarette and looks out.,\"looks at her as if relieved, then turns her over to someone.\",is in her late twenties.,0\n5070,lsmdc1062_Day_the_Earth_stood_still-100978,16814,\"He looks earnestly at someone, who considers him without emotion. He\",\"He looks earnestly at someone, who considers him without emotion.\",He,gold,becomes stoic as the hand of his different wrist.,looks thoughtfully at someone.,hold his younger brother's gaze.,stares off with a knowing smile.,1\n5071,anetv_lHnSteuHdZ4,7259,The guy then pulls hard on the fishing line and drags it in. finally he,The guy then pulls hard on the fishing line and drags it in.,finally he,gold,adds the body strength to shoot the ball in both hands when the man helps.,tries to hold the scoop of the ball as he goes next to the raft.,uses a long metal hook to hook the fish he caught and brings it out the hole.,\"starts to past the ramps, then he is shown to climb off the rope and go under the water.\",2\n5072,anetv_lHnSteuHdZ4,7257,\"A person is walking slow on ice, trying to to crack it. the person\",\"A person is walking slow on ice, trying to to crack it.\",the person,gold,takes off and runs through the trees while he walks through them.,washes the car before a falling snow.,continues explain on the contacts.,made many mid size hole in the ice and have fishing line hanging deep in the water underneath.,3\n5073,anetv_lHnSteuHdZ4,7258,The person walking to one of the hole and checks the fishing line to see if he caught nay fish. the guy,The person walking to one of the hole and checks the fishing line to see if he caught nay fish.,the guy,gold,then pulls hard on the fishing line and drags it in.,is standing on the beach and dogs begin to rinse the grass water.,holds it out and then his distance.,grabs the board and lifts it to his face.,0\n5074,anetv_lHnSteuHdZ4,7260,Finally he uses a long metal hook to hook the fish he caught and brings it out the hole. he then,Finally he uses a long metal hook to hook the fish he caught and brings it out the hole.,he then,gold,swings the rod back and forth over the hole.,shows his teeth to decide what he strategies to do with the closing games.,\"turns around while the man on the right, then taps the large fish out in that end.\",unhooks the long hook and use his tools to unhook the small fishing hook the the fish mouth leaving the fish bloody.,3\n5075,anetv_qdMjXJTsX94,8170,A spinning logo with a purple background then text are seen on the screen. A woman in blue dress,A spinning logo with a purple background then text are seen on the screen.,A woman in blue dress,gold,plays a drum set in a studio.,walks in a marching band holding a frisbee.,is talking on an elliptical game in the gym.,\"is turning a can of sand on a white object to catch onto the athlete, floating in the water and as far as life\",0\n5076,lsmdc0023_THE_BUTTERFLY_EFFECT-59524,11898,Someone puts the camera on a tripod in the basement. People,Someone puts the camera on a tripod in the basement.,People,gold,sit on folding chairs in front of the camera.,completing a change.,\"take a break, then spies himself on the lit roof of a police car in an empty parking lot.\",someone walks alone in a vacant room.,0\n5077,anetv_wHxB-5jKjbQ,10124,The two men cross a person alone in a canoe. The men,The two men cross a person alone in a canoe.,The men,gold,do rope jumping and fall off without treacherous directions.,continue sailing down the river passing between arches.,\"set it in the fire, instructs them on what to do.\",go water skiing over a hill of trees with tubes.,1\n5078,anetv_wHxB-5jKjbQ,10121,People sail in canoes rowing with a paddle in a choppy river. Two men in a canoe,People sail in canoes rowing with a paddle in a choppy river.,Two men in a canoe,gold,lays down near a river.,\"sail near the bank of the river, but then sail in the river.\",splashes water on rocks and ski across a waterfall.,walk on the back of the boat.,1\n5079,anetv_wHxB-5jKjbQ,10125,The men continue sailing down the river passing between arches. Men in a canoes,The men continue sailing down the river passing between arches.,Men in a canoes,gold,walk along the side of a city.,raise their handles and roll down a skier.,are on the border of the river.,wait in the middle of the road.,2\n5080,anetv_wHxB-5jKjbQ,10126,\"Men in a canoes are on the border of the river. After,\",Men in a canoes are on the border of the river.,\"After,\",gold,a group explores a canoe at a river.,continuously water ski through heft the canoes.,continue sailing straight in the river.,a man sprints down the hills in a team river.,2\n5081,anetv_wHxB-5jKjbQ,10123,The men spins the canoe an pass near an arch of the canoe course. The two men,The men spins the canoe an pass near an arch of the canoe course.,The two men,gold,are shown demonstrating the waterfall to kayak and are riding down the river again.,spot each other from left to right before cars begin.,cross a person alone in a canoe.,then ride the bike first.,2\n5082,lsmdc3047_LIFE_OF_PI-21908,4024,\"Young someone screws his mouth up thoughtfully. Later in the dark, someone\",Young someone screws his mouth up thoughtfully.,\"Later in the dark, someone\",gold,opens a door to find another sketch.,sits in his ripple of respect as they grin towards each other's face.,sits hunched beneath the sheet and uses a flashlight.,sits with his head watching the boy.,2\n5083,lsmdc3047_LIFE_OF_PI-21908,4025,\"Later in the dark, someone sits hunched beneath the sheet and uses a flashlight. Someone\",\"Later in the dark, someone sits hunched beneath the sheet and uses a flashlight.\",Someone,gold,turns the pages of a comic book depicting the someone story.,holds a handle at the door.,tries on a wristwatch and stacks the cylinders for it.,walks past then bursts through a dark room with some tools.,0\n5084,lsmdc3047_LIFE_OF_PI-21908,4023,The lovely woman snuggles on a bed with her two boys. Young someone,The lovely woman snuggles on a bed with her two boys.,Young someone,gold,screws his mouth up thoughtfully.,resolutely takes his shirt off.,sits with her gaze on the old man's chest.,peers out the driver's window at the attendant.,0\n5085,lsmdc3047_LIFE_OF_PI-21908,4026,Someone turns the pages of a comic book depicting the someone story. A large panel,Someone turns the pages of a comic book depicting the someone story.,A large panel,gold,shows his outline to his web.,focuses away writing down a chalkboard.,illustrates a smiling someone holding his mouth open.,highlights a thick series of rising humanity.,2\n5086,lsmdc3047_LIFE_OF_PI-21908,4022,She tells her sons the story. The lovely woman,She tells her sons the story.,The lovely woman,gold,follows her into his office.,regards her friend with a tender look.,speaks to another guy in his office.,snuggles on a bed with her two boys.,3\n5087,lsmdc0053_Rendezvous_mit_Joe_Black-71542,1243,\"Someone smiles faintly, takes a deep breath, he strides out again, someone right with him. In tandem they\",\"Someone smiles faintly, takes a deep breath, he strides out again, someone right with him.\",In tandem they,gold,continue on and disappear over the crest of the hill.,are moving like someone around the church.,throw a condom in a plastic view.,haul a purple ball towards his crotch.,0\n5088,lsmdc0053_Rendezvous_mit_Joe_Black-71542,1244,\"In tandem they continue on and disappear over the crest of the hill. Down below, someone, in a pained reflex, again\",In tandem they continue on and disappear over the crest of the hill.,\"Down below, someone, in a pained reflex, again\",gold,attaches a pair of dry signals to a cross.,sits on the dusty desk sleeping in an office.,turns and looks up towards the hill.,has to face the group to the nice part of the first day.,2\n5089,anetv_EY4YIa-kNgs,1633,He puts down the scrub and grabs the glass to place it in the right side of the sink where he wets the glass and puts it away in the dish rack. He,He puts down the scrub and grabs the glass to place it in the right side of the sink where he wets the glass and puts it away in the dish rack.,He,gold,moves to grab the towel and clean a dish.,hangs up the carried only size than he can see.,is now residue from the piercing which he begins to clean it.,shows up and starts to wash a brown trolley then cleans around her face.,0\n5090,anetv_EY4YIa-kNgs,1632,He drops the scrub into the sink and lays a glass down. He,He drops the scrub into the sink and lays a glass down.,He,gold,lays the items on top of the bottle.,grabs a towel and cleans the glass and moves on to scrub the glass as well.,wipes it to the side of the sink and test it.,continues to look down the table.,1\n5091,anetv_EY4YIa-kNgs,1631,He turns to the sink behind him where there are dishes sitting in water. He,He turns to the sink behind him where there are dishes sitting in water.,He,gold,then uses a cup to clean the cracks by the sink.,puts his harmonica in the air.,\"drops the items into the box, opens the refrigerator and dumps it into a pile of clothes.\",drops the scrub into the sink and lays a glass down.,3\n5092,anetv_EY4YIa-kNgs,1636,\"He returns to use the towel and clean a knife. He soaks the knife in the water and moves it to the dish rack, the boy\",He returns to use the towel and clean a knife.,\"He soaks the knife in the water and moves it to the dish rack, the boy\",gold,interacts and talks to the camera.,stands with his hands up and claps.,is the pan dirty teeth.,goes back to clean a fork with the towel.,3\n5093,anetv_EY4YIa-kNgs,1635,He soaks the dish in water and moves it to the dish rack. He,He soaks the dish in water and moves it to the dish rack.,He,gold,\"shows the blow dryer to it, then begins mixing some mousse to a palm of the hand materials before taking it back in.\",is cooking in the empty kitchen and using the garage.,finishes shaving his wet chin.,returns to use the towel and clean a knife.,3\n5094,anetv_EY4YIa-kNgs,1637,\"He soaks the knife in the water and moves it to the dish rack, the boy goes back to clean a fork with the towel. He\",\"He soaks the knife in the water and moves it to the dish rack, the boy goes back to clean a fork with the towel.\",He,gold,\"squirms, then wets his hands and continues shaving them.\",\"wets his foot and boils down the dish and then touches the ski, and holds his knees to his chest.\",\"edges back and forth, then moves it back and forth before finally touching the tile before speaking to the camera.\",moves the fork to the water to rinse soap off it.,3\n5095,anetv_EY4YIa-kNgs,1634,He moves to grab the towel and clean a dish. He,He moves to grab the towel and clean a dish.,He,gold,gets a plastic rag and puts it under the sink.,continues eating the sandwich in the hotel bed.,brings the towel over to the sink and sprays it with the sponge.,soaks the dish in water and moves it to the dish rack.,3\n5096,anetv_EY4YIa-kNgs,1638,He moves the fork to the water to rinse soap off it. The young boy,He moves the fork to the water to rinse soap off it.,The young boy,gold,takes in his left shoe and sprays water on the shaver.,picks up a bottle and hangs it up in the end.,wipes a sponge at the surface with the sponge.,\"stands in front of camera, speaking.\",3\n5097,anetv_EY4YIa-kNgs,1630,A young boy holds a dish scrub as he speaks. He,A young boy holds a dish scrub as he speaks.,He,gold,gives the guy a manicure attract his cheek and hand.,turns to the sink behind him where there are dishes sitting in water.,\"adjusts a piece of clothes, and discusses.\",pours the strawberry into the tin cup in hot water.,1\n5098,anetv_JY-H1u1hJZw,8224,The little boy sits in the blue kayak holding paddles. Then someone else is shown paddling in the water and there,The little boy sits in the blue kayak holding paddles.,Then someone else is shown paddling in the water and there,gold,is a closeup in the lake.,are people standing on shore.,'s a top splash of the water trailing closely behind him.,'s an story turning up with even closing credits.,1\n5099,lsmdc1004_Juno-6692,14115,\"She puts on some lip balm and starts the engine. Someone, surfing on his pc,\",She puts on some lip balm and starts the engine.,\"Someone, surfing on his pc,\",gold,watches from the passenger into the stern.,\"sucks air in front of someone, putting face to face and looking at the records.\",\"has a top tooth dryer on her forehead, as if it's two years old.\",sees the blue van pull up outside.,3\n5100,lsmdc1004_Juno-6692,14113,Someone's head drops miserably. She,Someone's head drops miserably.,She,gold,\"strides away with her canvas bag over her shoulder, leaving someone standing by his locker, watching her glumly.\",blows a whistle over the fires.,holds her hand to someone's bare chest.,reads the book and football yellowstone on the mountain.,0\n5101,lsmdc3038_ITS_COMPLICATED-17482,16706,She puffs out a cloud of smoke. Someone,She puffs out a cloud of smoke.,Someone,gold,removes a cigarette from the display.,stares at her reflection in a mirror.,nods to get the cigarette as she ambles into someone's room.,regards someone with a half - smile.,1\n5102,anetv_Jj7Xcisw62E,545,\"The black male is beginning to win but John Cena uses all of his might to not give in and gains enough strength to push the hand back the other way. After a certain amount of time, John Cena\",The black male is beginning to win but John Cena uses all of his might to not give in and gains enough strength to push the hand back the other way.,\"After a certain amount of time, John Cena\",gold,looks like he makes a newscaster.,wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him.,\"plays again, playing against them while they all organize and scratch.\",\"step a quick steps, do a back flip with his hands on the man's arm that handling his hand with his hands.\",1\n5103,anetv_Jj7Xcisw62E,544,A large black male and John Cena are in a wrestling ring arm wrestling. The black male is beginning to win but John Cena,A large black male and John Cena are in a wrestling ring arm wrestling.,The black male is beginning to win but John Cena,gold,uses all of his might to not give in and gains enough strength to push the hand back the other way.,can be sure he twigs the perfect place.,doing a sport and turning his neck off sumo jumps.,is practicing attack as he's making shots of himself.,0\n5104,anetv_Jj7Xcisw62E,546,\"After a certain amount of time, John Cena wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him. As John Cena continues to celebrate the other guy begins talking trash and John Cena\",\"After a certain amount of time, John Cena wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him.\",As John Cena continues to celebrate the other guy begins talking trash and John Cena,gold,laugh just as he makes notes.,is on the stage closing captions behind him.,looks at him then talks back to the crowd.,continues playing footage of the players.,2\n5105,anetv_ilE77hVgjjo,4038,A girl moves around an indoor playground. The girl,A girl moves around an indoor playground.,The girl,gold,gets off from an elliptical trainer.,weighs another baby pose.,slides down and climbs up a slide with boy.,sets down the hand stopper by bending back on her feet and turning off the camera.,2\n5106,anetv_ilE77hVgjjo,4039,The girl slides down and climbs up a slide with boy. A finger,The girl slides down and climbs up a slide with boy.,A finger,gold,dips the dog in a circle.,run across the boy's arm.,kneels on the grass.,touches the girls hair and head.,3\n5107,anetv_KlIAmoVrptA,1107,\"The woman holds up a disposable razor, then holds up a reusable razor and shows that the razor can be popped up. The woman\",\"The woman holds up a disposable razor, then holds up a reusable razor and shows that the razor can be popped up.\",The woman,gold,is now seen talking on next images while cream to her eye.,\"demonstrates her wetsuit, and then turns the heavy purse on her face and ties it perfectly and throws it backwards.\",on the side looks new for her dog.,is standing again and is now applying lotion to her leg.,3\n5108,anetv_KlIAmoVrptA,1108,The woman is standing again and is now applying lotion to her leg. The woman,The woman is standing again and is now applying lotion to her leg.,The woman,gold,is now standing with just her upper body showing and is smiling and talking.,grabs her other arm several times and gets back down.,continues to blow put out obstacle wheels.,demonstrates how to put clothes on a pointe and clean it looking and falling.,0\n5109,anetv_KlIAmoVrptA,1106,\"A brunette woman is smiling and talking while standing in a bathroom with just her chest up visible and a quick banner on the bottom of the screen say's her name is Aubrey Morgan. The woman is now standing up and with just her legs visible and wearing shorts, she's holding a razor up and showing it in different angles, and close ups, the text on the screen\",A brunette woman is smiling and talking while standing in a bathroom with just her chest up visible and a quick banner on the bottom of the screen say's her name is Aubrey Morgan.,\"The woman is now standing up and with just her legs visible and wearing shorts, she's holding a razor up and showing it in different angles, and close ups, the text on the screen\",gold,\"appear front continues to her holding a brush, then first person washing someone, while having disappeared.\",went by carefully alternating it all up and down how it works.,indicating that black lenses and a top at most.,reads good quality razor.,3\n5110,anetv_M-n0vW3p2sE,8259,A young man prepares to mount a pair of balancing beams in an indoor arena. He,A young man prepares to mount a pair of balancing beams in an indoor arena.,He,gold,mounts the bars and begins performing.,does a slow move and jumps off the beam stretched high onto a mat.,ends a routine in the squad room.,plays with the adverts as he continues to wait.,0\n5111,anetv_M-n0vW3p2sE,14558,A crowd in the background watches gymnasts performing. A gymnast,A crowd in the background watches gymnasts performing.,A gymnast,gold,does a back flip off balance himself.,\"runs across a floor, performing cartwheels and flips.\",does flips across a mat in her gym.,performs a routine on the beam before flipping himself in and out of frame.,1\n5112,anetv_M-n0vW3p2sE,14560,\"Another gymnast in an orange suit, jumps onto two bars and performs many flips. A coach who was standing nearby\",\"Another gymnast in an orange suit, jumps onto two bars and performs many flips.\",A coach who was standing nearby,gold,goes the splits different flips and lands on the mat.,removes a mini trampoline from under the bars.,does several gymnastics springs.,attacks several female cheerleaders on land.,1\n5113,anetv_M-n0vW3p2sE,8260,He mounts the bars and begins performing. He,He mounts the bars and begins performing.,He,gold,attempts to dismount but falls instead.,continues making balance motions wrathfully after the jump in slow motion.,kicks his hands in the air and does a series of kicks.,is seated on the diving board while swinging a ballerina above uneven bars.,0\n5114,anetv_M-n0vW3p2sE,14562,The gymnast jumps off the bars and lands on his butt. He,The gymnast jumps off the bars and lands on his butt.,He,gold,stands up and raises his arms above his head.,\"performs several flips, flips, and flips on a rope.\",flips the bars and jumps on the mat in front of him.,falls off the slackline onto the mat.,0\n5115,anetv_Ap7GCrt9C4w,9251,Women are in the background of a gym lifting weights. man,Women are in the background of a gym lifting weights.,man,gold,is preparing himself to lift weigh and stands in front of weight.,is in a gym.,lifts all the weight above her head.,is holding a rubik's cube and explaining how to do it.,0\n5116,anetv_JJzBlV3p1Wc,16601,A woman in an outdoor environment teaches a young boy and girl how to wash clothes using a washboard and a metal bucket. A young boy,A woman in an outdoor environment teaches a young boy and girl how to wash clothes using a washboard and a metal bucket.,A young boy,gold,\"is seen standing across to the camera with a bucket and holding a sprayer, puts the towel together and holds up an egg.\",pulls on a metal lever protruding from a metal bucket with a washboard in it.,is seen speaking with a camera and talking while standing in front of a swinging mini phone.,sits in the center of a small room in a tall kitchen where the woman boils dishes and make a cocktail into a cup.,1\n5117,anetv_JJzBlV3p1Wc,16602,\"Two young girls watch as a woman in a white apron demonstrates to the boy and girl how to turn the lever and also hangs clothes on a clothes line. The young girl begins to pull the lever while the boy helps the woman hang clothes, and then all of the children\",Two young girls watch as a woman in a white apron demonstrates to the boy and girl how to turn the lever and also hangs clothes on a clothes line.,\"The young girl begins to pull the lever while the boy helps the woman hang clothes, and then all of the children\",gold,take turns operating different parts of the washboard mechanism.,and ski dive in the water.,clean the tire inside for a while.,sits on the mat.,0\n5118,anetv_M-bUoaIqtDk,13520,The person passes us and turns around. The person,The person passes us and turns around.,The person,gold,shows off a roll.,stops before taking off again.,rubbed the bird again.,view the blonde hair we see the group of people.,1\n5119,anetv_M-bUoaIqtDk,13519,We see a person kitesufing in the sea. The person,We see a person kitesufing in the sea.,The person,gold,turns and swims away off the sand.,\"turns in circles, then floats across the stage.\",passes us and turns around.,stops talking and then jumps to the water.,2\n5120,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18438,\"Once again, someone lights the canon too soon. Someone\",\"Once again, someone lights the canon too soon.\",Someone,gold,\"grabs him around to the waist, grabs her ankle, and nuzzles it.\",pats someone encouragingly on the shoulder as he tentatively enters the maze.,is rohirrim.,keeps the ash remains cuffed through his mouth.,1\n5121,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18446,The intricate maze extends far around him stretching away into distance of mist covered valley. Someone,The intricate maze extends far around him stretching away into distance of mist covered valley.,Someone,gold,\"emerges from the surface, running along a dark circular stone beam.\",approaches the dark wavy haired woman with a trim neck.,steps further into the secret opening.,moves slowly and cautiously between the hedges.,3\n5122,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18455,\"She reaches a dead end and panicking, runs back the way she came. Her face clammy with fear, she\",\"She reaches a dead end and panicking, runs back the way she came.\",\"Her face clammy with fear, she\",gold,rotates the end to the lady.,stares uncertainly down the misty pathway.,watches her presence with emotion.,raises a bamboo sword in the air.,1\n5123,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18442,Someone swallows hard and follows the direction someone has indicated. Each long path,Someone swallows hard and follows the direction someone has indicated.,Each long path,gold,pulls up towards the big hotel.,looks exactly the same.,lies also waiting over the storm.,\"shows only noise, as vehicles drive by.\",1\n5124,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18458,He peers through the swirling mist and spots someone. Someone,He peers through the swirling mist and spots someone.,Someone,gold,stabs a large white canvas with an oar.,looks down at the broken locket.,\"opens the door into the front door, flinging it shut and slams the door shut.\",draws back into the hedge as someone shines the lighted end of his wand straight into someone's face.,3\n5125,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18464,He dives head first through a closing gap and lands on the ground. Someone,He dives head first through a closing gap and lands on the ground.,Someone,gold,pensively stirs his face in his hands.,sees a bright object in a distance.,\"mirrored wall, someone picks himself up and staggers back against the track, striding through a flood door.\",jumps on the road halfway down onto the edge of the road.,1\n5126,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18454,Someone runs frantically between the hedges. She,Someone runs frantically between the hedges.,She,gold,ends the call.,\"reaches a dead end and panicking, runs back the way she came.\",pursues the burmese flag.,\"the back of an suv, someone takes out the shovel and drops the atop acknowledgment to command up the dead incline.\",1\n5127,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18451,\"He forces his way through the dense branches as they close in around him, lashing him across the face. Meanwhile, someone\",\"He forces his way through the dense branches as they close in around him, lashing him across the face.\",\"Meanwhile, someone\",gold,jog with a train of zombies.,plunks unresponsive with his bedspread.,peeks back on the tree.,\"plods along in his steady boots, carrying his wand.\",3\n5128,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18468,The roots reach out and trips someone. Someone,The roots reach out and trips someone.,Someone,gold,looks in the mirror and stands in the doorway.,\"surges past, then stops, and looks back.\",hops off the truck and flings it.,rests on one of the stagehands.,1\n5129,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18457,Someone runs in the direction of the scream. He,Someone runs in the direction of the scream.,He,gold,pushes down the side of the structure.,catches it at the opposite end of the rope.,peers through the swirling mist and spots someone.,makes it along as the day falls.,2\n5130,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18462,A howling wind lashes the branches sending dust and leaves into the air. Someone,A howling wind lashes the branches sending dust and leaves into the air.,Someone,gold,pulls his blanket up behind him but there still no sound.,\"stuffs his final glance, then runs.\",starts to run as the hedges starts to close together behind him.,pulls his left hand towards the ground.,2\n5131,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18448,He turns and looks behind him fearfully. Someone,He turns and looks behind him fearfully.,Someone,gold,bacon from his hand wound goes along wood.,\"whips his face with his wand, but remains still.\",\"confronts him, then returns his attention.\",has come in through another entrance.,3\n5132,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18470,\"Someone is dragged backwards, tangled in the roots and branches of the hedge. He\",\"Someone is dragged backwards, tangled in the roots and branches of the hedge.\",He,gold,\"digs on his cloak, the dangerously close to someone.\",\"scuttles out of the car and into someone, watching intently from the face as he slides halfway down the ladder.\",struggles in vain to escape.,\"winces, before finally gently sailing onto the ground.\",2\n5133,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18460,\"Someone points his wand upwards. High above, red sparks\",Someone points his wand upwards.,\"High above, red sparks\",gold,fly as roaring fire illuminates the sky.,are flying over the crescent moon.,fly over gatling gun tool.,explode in the evening sky.,3\n5134,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18439,Someone looks back towards the entrance and sees someone pointing surreptitiously to the left. He,Someone looks back towards the entrance and sees someone pointing surreptitiously to the left.,He,gold,\"stares uncertainly down the narrow, misty path.\",shakes out again and shifts his eyes to someone.,stands on its side.,passes it through his arms and examines out from the machinery.,0\n5135,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18443,\"Each long path looks exactly the same. The thick, hewn hedges\",Each long path looks exactly the same.,\"The thick, hewn hedges\",gold,rise 25 feet on either side.,loom vanishing from the bush.,fill the forest all around someone.,take less from the mile path.,0\n5136,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18472,The roots and branches loosen their hold. Someone,The roots and branches loosen their hold.,Someone,gold,\"studies the laser ramp standing under the mountain toward someone, who is in wreck.\",runs to someone and helps him to free himself.,skulks up to the passenger window at the side.,hustles helplessly around the vehicle.,1\n5137,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18466,Someone aims his wand at someone and knocks him unconscious. He,Someone aims his wand at someone and knocks him unconscious.,He,gold,kicks someone's wand from his hand and raises his own wand.,follows it to the davenport.,gulps down the contents.,stops writing in the ranks.,0\n5138,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18452,\"Meanwhile, someone plods along in his steady boots, carrying his wand. Someone\",\"Meanwhile, someone plods along in his steady boots, carrying his wand.\",Someone,gold,spins around as he hears a sound behind him.,brings the suitcase to his partner's garage and paces next them.,forces him softly to the side of the floor and walks out into the swirling corridor.,steps up to the doors on the double doors and gets up to leave.,0\n5139,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18456,Sinuous roots creep towards someone from under the hedge. Someone,Sinuous roots creep towards someone from under the hedge.,Someone,gold,speed through traffic of traffic.,glimpses her and browses a lower backside.,runs in the direction of the scream.,struggles to stand before him.,2\n5140,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18441,\"Suddenly, the hedges close together behind him, blocking the way out. Someone\",\"Suddenly, the hedges close together behind him, blocking the way out.\",Someone,gold,comes running through the chain - link wall and collides with a soldier.,swallows hard and follows the direction someone has indicated.,mount to life and yellow charges the limo door fine.,boys sniff around curling straws.,1\n5141,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18440,\"He stares uncertainly down the narrow, misty path. Suddenly, the hedges\",\"He stares uncertainly down the narrow, misty path.\",\"Suddenly, the hedges\",gold,is covered in a huge layer of block.,\"slide away, high, lush, and trees.\",\"close together behind him, blocking the way out.\",appears and shuts down the stairs.,2\n5142,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18467,\"They sprint forward, someone slightly ahead. The roots\",\"They sprint forward, someone slightly ahead.\",The roots,gold,are sliding from someone while below.,\"shoots desperately under a boulder, then shoves it through the undergrowth.\",reach out and trips someone.,pays up as he faces over onto the field.,2\n5143,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18450,\"As confused as someone, he runs along the narrow paths between the neatly clipped hedges. He\",\"As confused as someone, he runs along the narrow paths between the neatly clipped hedges.\",He,gold,stops the truck's path and strolls along the strip street.,stops uncertain of which way to go.,\"considers the area as he stands in the doorway for a moment, then turns and puts his hand in his suitcase.\",holds someone's doleful gaze.,1\n5144,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18447,Someone moves slowly and cautiously between the hedges. He,Someone moves slowly and cautiously between the hedges.,He,gold,hangs a m on the door.,twists his body around and undoes his tie.,turns and looks behind him fearfully.,\"pauses, staring fondly someone as he film up the stone.\",2\n5145,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18453,Someone's eyes are glazed over. Someone,Someone's eyes are glazed over.,Someone,gold,clamps his hand over someone's face.,runs frantically between the hedges.,reaches out to pan the paper.,stands the car near.,1\n5146,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18459,\"As he reaches her, she vanishes from sight, drawn under the hedge by a tangle of sinuous roots. Someone\",\"As he reaches her, she vanishes from sight, drawn under the hedge by a tangle of sinuous roots.\",Someone,gold,points his wand upwards.,dances forward.,looks down from the string dress.,runs to a watery cabinet.,0\n5147,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18444,\"The thick, hewn hedges rise 25 feet on either side. Above his head, he\",\"The thick, hewn hedges rise 25 feet on either side.\",\"Above his head, he\",gold,moves in to dozens of gleaming liquor bottles.,can only see a narrow strip of sky.,calls out to see something brown on the bottom of the raft.,\"peers into a waiting train, where someone is depiction music near the site.\",1\n5148,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18469,\"Someone surges past, then stops, and looks back. Someone\",\"Someone surges past, then stops, and looks back.\",Someone,gold,pours the contents into a transparent tube.,\"leans through a window door, observing the entire opulent outside.\",\"is dragged backwards, tangled in the roots and branches of the hedge.\",hands her a box containing a beer.,2\n5149,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18465,\"Someone sees a bright object in a distance. Heading towards it, he\",Someone sees a bright object in a distance.,\"Heading towards it, he\",gold,halts the dead vampire.,emerges onto a path between people.,runs over to third and manages to jam an suv's door.,sees two young guys bust a leather entry into his original position.,1\n5150,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18463,Someone starts to run as the hedges starts to close together behind him. He,Someone starts to run as the hedges starts to close together behind him.,He,gold,pets its fur tail at itself.,dives head first through a closing gap and lands on the ground.,nuzzles his head wiggles his brow.,\"veers through the tent towards the bedroom, towards the kitchen.\",1\n5151,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18473,\"Someone runs to someone and helps him to free himself. Exhausted and trembling, he\",Someone runs to someone and helps him to free himself.,\"Exhausted and trembling, he\",gold,tries to oar a building stick.,scrambles to his feet.,returns to the police ring where his wrists musket an older member's chest.,dismounts from the couch as she and someone shimmy toward him.,1\n5152,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18445,\"Above his head, he can only see a narrow strip of sky. The intricate maze\",\"Above his head, he can only see a narrow strip of sky.\",The intricate maze,gold,of metal is shanty branching.,\"of curling stone is seen in the sand, indicating that someone is not real.\",drifts as netting hay.,extends far around him stretching away into distance of mist covered valley.,3\n5153,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18461,\"High above, red sparks explode in the evening sky. A howling wind\",\"High above, red sparks explode in the evening sky.\",A howling wind,gold,runs above the shivering tires as a different pot of orange light gradually drifts over to crest.,lashes the branches sending dust and leaves into the air.,looks up in the violent storm.,\"blows the leaves, sending soaring soaring out into the desert.\",1\n5154,anetv_8BsIeOSzK_U,19162,He does a gymnastics routine on the bars. He,He does a gymnastics routine on the bars.,He,gold,dismounts and spins around the bars.,jumps off the bars and lands on a mat.,does his routine down.,jumps on the beam.,1\n5155,anetv_8BsIeOSzK_U,6210,A man jumps onto parallel bars. He,A man jumps onto parallel bars.,He,gold,\"has joined, passes the boy, reaches down and grabs a small weight tucked between his legs, adjusting his strength shield.\",balances on the beam and dismounts.,swings his legs up and down while sitting on a stool.,does a gymnastics routine on the bars.,3\n5156,anetv_8BsIeOSzK_U,6212,A man in a black shirt watches his performance. He,A man in a black shirt watches his performance.,He,gold,gives a man a high five when he lands on the mat.,swings against a pinata in front of him.,begins to do a gymnastics gymnastic routine on the parallel bars.,falls to the ground.,0\n5157,anetv_8BsIeOSzK_U,6211,He does a gymnastics routine on the bars. He then,He does a gymnastics routine on the bars.,He then,gold,jumps off and lands on a mat.,flips several times before dismounting.,stands on the bars with his arms at the head.,does the splits and lands on the mat.,0\n5158,anetv_8BsIeOSzK_U,19161,A man jumps onto parallel bars. He,A man jumps onto parallel bars.,He,gold,does a gymnastics routine on the bars.,does a gymnastics routine on a chalk beam.,swings the gymnast on the landing and lands on a mat.,does a gymnastics routine on the balance beam.,0\n5159,anetv_5zT1GWfmVLU,7487,The left boy kick the right then jumps on his back while he bends forward. The right boy then,The left boy kick the right then jumps on his back while he bends forward.,The right boy then,gold,flips the left boy on the mattress on the ground.,takes pictures to the boy and walk away.,jumps back and gets back on the bars.,spills the wooden until it brings it down with his feet.,0\n5160,anetv_5zT1GWfmVLU,7488,The right boy then flips the left boy on the mattress on the ground. We then,The right boy then flips the left boy on the mattress on the ground.,We then,gold,see the man multiple men again at the center of an floral slide.,see the ending screen talking.,see the closing title screen.,see the ending title screen.,2\n5161,anetv_5zT1GWfmVLU,7486,We then see two boys in a room pretend to wrestle. The left boy kick the right then,We then see two boys in a room pretend to wrestle.,The left boy kick the right then,gold,misses one of the other drumsticks.,shows off an old board with pins.,jumps on his back while he bends forward.,makes his legs in position.,2\n5162,anetv_5zT1GWfmVLU,7485,We see a title screen briefly. We then,We see a title screen briefly.,We then,gold,see about inside diving and holding a ball.,see a hockey player playing soccer hurling on a field.,see a woman pulling a tube.,see two boys in a room pretend to wrestle.,3\n5163,anetv_5zT1GWfmVLU,12554,A young man pretends to kick another man in the crotch. He,A young man pretends to kick another man in the crotch.,He,gold,starts and the ladies laugh and laugh and clap his hands.,shoots painfully into his father's crotch.,gets off his th and shoots yet again.,appears to bend over in pain and the other jumps on his back.,3\n5164,anetv_5zT1GWfmVLU,12556,He then slaps him and they flip over onto a mat. The action,He then slaps him and they flip over onto a mat.,The action,gold,ends with four german soldiers fighting in the middle.,\"makes them turn, pushing the wall off the wall.\",is repeated in slow motion.,is repeated until the positioned are still at the top.,2\n5165,anetv_5zT1GWfmVLU,12555,He appears to bend over in pain and the other jumps on his back. He then slaps him and they,He appears to bend over in pain and the other jumps on his back.,He then slaps him and they,gold,flip him from his chair.,celebrate with these safety treatment at the end.,swing to another stop.,flip over onto a mat.,3\n5166,anetv_5zT1GWfmVLU,12553,Sunsetflip Powerbomb appears on screen in a whimsical font. A young man,Sunsetflip Powerbomb appears on screen in a whimsical font.,A young man,gold,falls down a long javelin then players watch.,cuts another person's hair.,plays the accordion continuously adjust the percussion papers.,pretends to kick another man in the crotch.,3\n5167,anetv_U7k6GFEOt7g,13101,\"Once the drill is complete, the boys of the team form a huddle and begin talking. After, the boys\",\"Once the drill is complete, the boys of the team form a huddle and begin talking.\",\"After, the boys\",gold,push the people into each other's hands and back up the second one at his time.,begin a game of lacrosse in a large outdoor field.,take turns to dance.,\"run indoors to practice around, and gather a place to talk to them.\",1\n5168,anetv_U7k6GFEOt7g,13100,\"A group of boys are in a lines forming an X, running across to each other, throwing the ball to the person diagonally across from them and hitting it. Once the drill is complete, the boys of the team\",\"A group of boys are in a lines forming an X, running across to each other, throwing the ball to the person diagonally across from them and hitting it.\",\"Once the drill is complete, the boys of the team\",gold,are fish and the final hiting is to be scored in a man's hand.,form a huddle and begin talking.,grab his arm from a big bowl.,are shown again choosing a final cake to return it to the two teams.,1\n5169,anetv_U7k6GFEOt7g,13102,\"After, the boys begin a game of lacrosse in a large outdoor field. As the game continue, the ball\",\"After, the boys begin a game of lacrosse in a large outdoor field.\",\"As the game continue, the ball\",gold,continues to be thrown from team to team as they knock each other over and make try to score on each other.,is placed into the pole before floating away from the soccer game.,misses the opposing team who they hit the ball successfully.,goes in as the player in blue walks over to retrieve the ball and throws it on the ground.,0\n5170,lsmdc3014_CAPTAIN_AMERICA-5965,12724,Someone takes out his compass with the photo of someone in the lid. He,Someone takes out his compass with the photo of someone in the lid.,He,gold,pulls out a coloring dollar packet in his hands.,stares at the photo then pushes down on the steering yoke causing the plane to dive steeply.,\"looks around at the metal bell in a robe, the ring flood toward the prison, bringing it to a rail.\",slips a hand into someone's cap.,1\n5171,lsmdc3014_CAPTAIN_AMERICA-5965,12725,He stares at the photo then pushes down on the steering yoke causing the plane to dive steeply. Someone,He stares at the photo then pushes down on the steering yoke causing the plane to dive steeply.,Someone,gold,watches him test out on his computer.,comes out to him.,continues to stare at the photo as the plane descends.,rolls over his spear as he crawls against the wall.,2\n5172,lsmdc3014_CAPTAIN_AMERICA-5965,12727,\"In the control tower, tears stream down someone's cheeks. Someone\",\"In the control tower, tears stream down someone's cheeks.\",Someone,gold,closes her eyes and smiles.,heads back to his bedroom.,fixes the rest of the hair on someone's chest.,stands upright on a platform overlooking the running equipment.,0\n5173,lsmdc3014_CAPTAIN_AMERICA-5965,12726,\"Someone continues to stare at the photo as the plane descends. In the control tower, tears\",Someone continues to stare at the photo as the plane descends.,\"In the control tower, tears\",gold,stream down someone's cheeks as the fab flees.,stream down his wetsuit as he glides across a large body of water.,stream down someone's cheeks.,flow down hundreds of cheeks.,2\n5174,lsmdc3014_CAPTAIN_AMERICA-5965,12723,\"Someone blinks, then furrows her brow, and presses her lips together. Someone\",\"Someone blinks, then furrows her brow, and presses her lips together.\",Someone,gold,has her arms folded in front of the door.,takes out his compass with the photo of someone in the lid.,\"shifts, then plants a kiss on his lips.\",disappears out of the shadows.,1\n5175,anetv_sfT9Siql3P8,5479,\"They ride the cars around the floor, bumping each other. The\",\"They ride the cars around the floor, bumping each other.\",The,gold,continue bumping into each other as they play.,falls on helplessly with his arms crossed.,bike hit together in the trunk.,\"stick depart inside, followed by a little blue person.\",0\n5176,anetv_sfT9Siql3P8,5478,Several kids are playing in bumper cars. They,Several kids are playing in bumper cars.,They,gold,stick up and get hit by the coach.,\"ride the cars around the floor, bumping each other.\",line up and idle in a parking circle.,boys are playing a game of hopscotch in a large park.,1\n5177,anetv_sfT9Siql3P8,11084,The bumper cars drive randomly throughout the arena. The camera,The bumper cars drive randomly throughout the arena.,The camera,gold,shakes as a red bumper car drives by.,is interviewed and leads into the land rover and others up a hill.,pans around to see the vehicle taking a position behind the park.,comes to a halt outside the alley.,0\n5178,anetv_sfT9Siql3P8,11083,People are driving bumper cars in a nighttime scene. The bumper cars,People are driving bumper cars in a nighttime scene.,The bumper cars,gold,get stuck in concrete.,are washed in a puddle.,are full of police cars.,drive randomly throughout the arena.,3\n5179,lsmdc3069_THE_BOUNTY_HUNTER-4539,60,He shows a badge on his belt. An officer,He shows a badge on his belt.,An officer,gold,holds out the glass.,takes the stick from his mouth and hands it to someone.,releases someone from the cell.,cuts off the young man.,2\n5180,lsmdc3069_THE_BOUNTY_HUNTER-4539,61,\"An officer releases someone from the cell. Now, someone and his police friend\",An officer releases someone from the cell.,\"Now, someone and his police friend\",gold,is helicopter on a country road.,stroll by a sidewalk.,eat at a diner.,are in deserted street on the street.,2\n5181,lsmdc3069_THE_BOUNTY_HUNTER-4539,59,\"Nighttime at a police station, a man in a sport coat approaches a jail cell. He\",\"Nighttime at a police station, a man in a sport coat approaches a jail cell.\",He,gold,skates in a large parking lot.,holds his cell phone.,shows a badge on his belt.,turns away from someone.,2\n5182,anetv_IsHM24qWmpI,14247,The metal rim is replaced. The bike wheel,The metal rim is replaced.,The bike wheel,gold,is adjusted to the machine.,lands on the bike before he does a repair.,is put back into place.,is also being removed from the wheel.,2\n5183,anetv_IsHM24qWmpI,17878,A brand logo appears for a bike parts company. The video,A brand logo appears for a bike parts company.,The video,gold,\"will show how to assemble the parts for the bike wheel, and begins with the wheel being removed.\",begins with a small black cat.,shows the pictures and skiing technique of the company.,begins with the word locomotive the a bike.,0\n5184,anetv_IsHM24qWmpI,17879,\"The wheel frame parts are then installed, follow by the reassembly of the wheel. The tightness and evenness of the placement\",\"The wheel frame parts are then installed, follow by the reassembly of the wheel.\",The tightness and evenness of the placement,gold,are shown as well as a topic.,is double - checked.,are then served on a bike.,is held inside a square bowl using the inline 19.,1\n5185,anetv_eC90hOqQ0yk,18748,A large group of people are seen watching on the side while the men fight. The men,A large group of people are seen watching on the side while the men fight.,The men,gold,continue to move by bumping into one another and transitions into one another speaking back and fourth.,hold up objects and lead into them fighting each other.,continue riding around one another and leads into them hitting each other on the ice.,continue fighting with one pushing the other out into the ring.,3\n5186,anetv_eC90hOqQ0yk,18747,Two men are seen kneeling before one another and begin wrestling one another. A large group of people,Two men are seen kneeling before one another and begin wrestling one another.,A large group of people,gold,are seen speaking to one another and leads into them arm wrestling.,are seen watching on the side while the men fight.,are seen swinging objects around and laughing with one another.,continue running around and fighting with one another.,1\n5187,anetv_4ZoBfU4b5Ko,18067,The young lady part her hair and blow dry her hair. The lady,The young lady part her hair and blow dry her hair.,The lady,gold,continues painting the clients hair.,brushes her hair and smiles at the camera.,blows with a blow dryer and the lady leaves through the window.,blow dry other parts of her hair.,3\n5188,anetv_4ZoBfU4b5Ko,14703,She puts it in the end of the blow dryer. She,She puts it in the end of the blow dryer.,She,gold,picks and starts blow dry her hair.,starts drying the baby's hair with scissors to dry her hair.,puts a product in her hair.,can be removing all of the hair from her side then pushing it against the stick.,2\n5189,anetv_4ZoBfU4b5Ko,18068,The lady blow dry other parts of her hair. The lady,The lady blow dry other parts of her hair.,The lady,gold,put a white cream on her hair.,dips the flower dryers in the hands.,begins to concealed the lens with her case.,interacts with her from the back.,0\n5190,lsmdc3061_SNOW_FLOWER-30009,13142,\"In the living room, someone paces. Someone\",\"In the living room, someone paces.\",Someone,gold,stands in the light gray foyer.,peers into the room.,walks into the living room and tries one last locked.,bites her lower lip.,1\n5191,anetv_SZqwvjwqwK4,7854,The mans' feet return in the corner. We,The mans' feet return in the corner.,We,gold,\"hobbles on the street, pills and seconds attach the license basket waving.\",grabs someone.,and his men step outside as they walk and the marching band continues.,see a game being played before returning to the drummer.,3\n5192,anetv_SZqwvjwqwK4,7855,We see a game being played before returning to the drummer. We,We see a game being played before returning to the drummer.,We,gold,see a replay of the clip.,see another scene from the game.,\"scene of a band party on a screen, a man sitting in a red video speaks.\",see the horses off before they run all together again.,1\n5193,anetv_SZqwvjwqwK4,7851,We see an opening title screen. A man,We see an opening title screen.,A man,gold,carves the pumpkins with a towel.,is playing the drums while wearing earphones.,is seated in a house.,takes a few screens and shows encouraging the hula tams.,1\n5194,anetv_SZqwvjwqwK4,7857,The man throws and catches one of his drumsticks. We,The man throws and catches one of his drumsticks.,We,gold,go on in the narrow field and dive to the edge of the pool.,man runs with his arms while standing on the pavement.,see a closing screen with a website on it.,turn along the bar to see the ball: the player jumped and fell.,2\n5195,anetv_SZqwvjwqwK4,7852,A man is playing the drums while wearing earphones. We,A man is playing the drums while wearing earphones.,We,gold,continues playing the drums.,guy plays the drums.,see the man's feet in the upper corner.,see the man holding onto a selfie racket.,2\n5196,anetv_NzxZdC-63LE,9987,A man waves at the audience holding a plaque. A man,A man waves at the audience holding a plaque.,A man,gold,is holding a long shuffleboard string.,stands on a stand inside a building with a line behind her.,runs down a blue mat and does flips.,plays another performer while a audience watches and clap.,2\n5197,anetv_NzxZdC-63LE,14769,The man is flipping and doing tumbling in the gym. The athletes,The man is flipping and doing tumbling in the gym.,The athletes,gold,continue to flip up in the air while audiences are watching.,are inside the bar.,are displayed before he score.,move through the competition on the other side of the room.,0\n5198,anetv_NzxZdC-63LE,14770,The athletes continue to flip up in the air while audiences are watching. The people,The athletes continue to flip up in the air while audiences are watching.,The people,gold,are doing back flips in the different places.,continues to dismount and the audience flips and cheers.,keep running down the track with his gun still on.,continue wrestling while others watch and talks and a man is shown together with a horse and laughing to one another.,0\n5199,anetv_NzxZdC-63LE,9985,A man is doing flips on a mat. a man in an orange shirt,A man is doing flips on a mat.,a man in an orange shirt,gold,plays hopscotch on the floor.,is doing flips outside.,jumps onto his stomach.,stands behind a bar.,1\n5200,anetv_avBlEff5U5U,4923,A man is in his front yard going back and forth mowing his lawn. The video then,A man is in his front yard going back and forth mowing his lawn.,The video then,gold,\"is mowing in more circles of lawn, as he mows the lawn and in the spot.\",\"goes out to the interior of the table, moving, and faster in the show, he looks like he changes clothes.\",turns and a close up of the man using his ax to demonstrate how to use it.,shows him mowing the lawn in a different location than the first location.,3\n5201,anetv_Jp7KeCimrMI,2733,A man stretches out shirts on an ironing board in a workshop area and uses a flat iron to steam press it. The man,A man stretches out shirts on an ironing board in a workshop area and uses a flat iron to steam press it.,The man,gold,shows the lotion with how they put wax on the cloth onto a wall.,puts the ironing board over the top.,removes the gloves from his right hand and puts it down on the top of another board.,removes the ironed shirt and places it on a hanger.,3\n5202,anetv_Jp7KeCimrMI,2734,The man removes the ironed shirt and places it on a hanger. The man,The man removes the ironed shirt and places it on a hanger.,The man,gold,\"holds up the body, then lifts it completely.\",gives the shirt one more quick ironing on a single spot then hangs the shirt on a rack.,\"talks to the camera then in tuns, then back to ironing the shirt.\",uses white tape on the shingles to fit the pieces around.,1\n5203,anetv_X5gh32tHdsc,4141,Men are playing indoor tennis inside a building while soccer is on the tv in the background. They,Men are playing indoor tennis inside a building while soccer is on the tv in the background.,They,gold,are holding cone while other men are around the court playing tennis.,throw the ball with their racquets and start to go in in the field.,hit the ball back and forth for a while.,go on having several repeat on the trampoline.,2\n5204,lsmdc3059_SALT-28823,3983,\"Facing a mirror, she unwraps it. She\",\"Facing a mirror, she unwraps it.\",She,gold,finds her hand and it supports its windows then rolls her eye.,catches the bow as her leg swoops down over it.,locks it around the primate's mouth and points it at the entertain print underneath of his arm.,applies the pad to the injury then tucks it into her waistband.,3\n5205,anetv_e2fXKrG2BkY,16189,\"When they are done, they turn to one another, bow, and do some karate matches that involve gently throwing one another to ground and when done with the matches they each take a bow facing the crowd. The boys then start another karate routine and they\",\"When they are done, they turn to one another, bow, and do some karate matches that involve gently throwing one another to ground and when done with the matches they each take a bow facing the crowd.\",The boys then start another karate routine and they,gold,remain able to hold one another on their faces.,move back and fourth as they applaud.,performs a flip and jumps on the lit stage while cheering for the other.,are doing various moves with their arms and legs while doing them in unison as much as possible.,3\n5206,anetv_e2fXKrG2BkY,16190,The boys then start another karate routine and they are doing various moves with their arms and legs while doing them in unison as much as possible. When done they both take a bow facing the crowd and they both,The boys then start another karate routine and they are doing various moves with their arms and legs while doing them in unison as much as possible.,When done they both take a bow facing the crowd and they both,gold,fold to the center and start a little way down.,have moved the beam straight over onto the mat.,run off the school stage.,fall on their knees and play their own steps.,2\n5207,anetv_agIcVWDyeH0,7859,He shows that his arm is in a cast and putting on his socks and shoes. He finally,He shows that his arm is in a cast and putting on his socks and shoes.,He finally,gold,picks up a tile that has been removed by something and starts moving it into the living room.,takes the shoes off and looks at the camera.,ties his shoes and looks back at the camera.,removes the shoes and put them on.,2\n5208,anetv_agIcVWDyeH0,7858,A young boy is seen sitting on a chair talking to the camera. He,A young boy is seen sitting on a chair talking to the camera.,He,gold,begins holding on the child while also putting the hand on someone's leg.,laughs and smokes the harmonica while still holding violin while the song ends.,shows that his arm is in a cast and putting on his socks and shoes.,sinks down lightly and leads into him speaking to the camera.,2\n5209,lsmdc1014_2012-78847,8227,Someone enters with a newspaper. She,Someone enters with a newspaper.,She,gold,steps into the hallway.,writes a letter and marches over.,\"trails after her, then heads into someone's principal's office.\",turns on the tv.,3\n5210,lsmdc1014_2012-78847,8226,Someone looks across the Oval Office at someone. Someone,Someone looks across the Oval Office at someone.,Someone,gold,enters with a newspaper.,'s holding the baby looking down at the painting.,tries out to sit with her at the entrance.,smiles and walks over to the paper bag.,0\n5211,anetv_yduDG8EcM0A,6109,The boy seems excited to help his grandmother juice the lemon. He,The boy seems excited to help his grandmother juice the lemon.,He,gold,puts his hand over her hand while she is juicing the lemon.,\"holds up the necklace - - slowly, deep gold.\",brings it back to the artificial stove and licks the ice from the trolley.,walks out of the bathroom.,0\n5212,anetv_yduDG8EcM0A,6108,They are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink. the boy,They are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink.,the boy,gold,opens the gas and puts something into each baking pan.,seems excited to help his grandmother juice the lemon.,is using a sweeping pan to clean a bench.,shows how to baking the pan and liquids into it.,1\n5213,anetv_yduDG8EcM0A,6107,There's a little boy wearing a red Elmo shirt standing on a step stool in the kitchen with his grandmother. They,There's a little boy wearing a red Elmo shirt standing on a step stool in the kitchen with his grandmother.,They,gold,and someone continue talking while flipping apart.,\"are sitting on top of it, fuming a little.\",are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink.,\"appears with the bathroom white sandals on the sides of the bath water, then holds the bottle over his head.\",2\n5214,anetv_fZc3tkvUJe0,893,A chef is seen speaking to a woman and leads into him holding knives and sharpening the sides. He then,A chef is seen speaking to a woman and leads into him holding knives and sharpening the sides.,He then,gold,sharpens the knife around the length of the sharpener while still speaking to the camera.,begins cutting a tomato and cutting it tossing down more knives.,wipes the knife with a rag and continues sharpening the knives.,flips the ingredients around several times while stopping to speak to the camera.,2\n5215,anetv_jGoW5WVAtX4,1327,We see the outside of a restaurant with a snow like graphic on the bottom. We,We see the outside of a restaurant with a snow like graphic on the bottom.,We,gold,see a girl grooming a stake with white polish and a white box on the counter.,pan a row of sharpening screens and talk to the camera.,see a guy balancing a tire kick.,see men inside the bar and one man speaking into a microphone.,3\n5216,anetv_jGoW5WVAtX4,1328,We see men inside the bar and one man speaking into a microphone. We then,We see men inside the bar and one man speaking into a microphone.,We then,gold,see the ending title screen on a clear screen.,see the closing screen and the judges and people walking by.,see another man coaching a man throwing the ball.,see ladies playing beer pong against a team of men.,3\n5217,anetv_jGoW5WVAtX4,1331,We switch and see other teams in the room playing and see two ladies talking. We then,We switch and see other teams in the room playing and see two ladies talking.,We then,gold,see the men on the ground as they are done playing.,see a man talking and then talking about the video.,see a lady toss a ball across a table.,see the closing titles.,2\n5218,anetv_jGoW5WVAtX4,1332,We then see a lady toss a ball across a table. We,We then see a lady toss a ball across a table.,We,gold,we see her playing billiards by the ball.,see the ending screen.,return to the players.,switch to the individuals and put the balls down.,1\n5219,anetv_jGoW5WVAtX4,1329,We then see ladies playing beer pong against a team of men. Two teams of men,We then see ladies playing beer pong against a team of men.,Two teams of men,gold,play beer pong together as a man stands behind them holding a camera in the air.,walk on the court wearing shiny blue uniforms.,play hockey and begin playing a game of soccer.,play ping pong while taking the ball from each other.,0\n5220,anetv_jGoW5WVAtX4,1330,Two teams of men play beer pong together as a man stands behind them holding a camera in the air. We,Two teams of men play beer pong together as a man stands behind them holding a camera in the air.,We,gold,\", they can throw a ball that is held by a hand as they throw the ball into the wall to catch two balls.\",switch and see other teams in the room playing and see two ladies talking.,see the man shooting the photo into the container.,try out and apply one on the table to try to adjust the cause.,1\n5221,anetv_Sfdj_kMDUh8,13932,He is on his knees cutting the carpet. He,He is on his knees cutting the carpet.,He,gold,bolts away from a wall and cuts a tight rope.,\"grimaces, looks at someone in anguish, then turns back to the mask.\",is shown again demonstrating how to fix the dress.,is putting glue onto the floor.,3\n5222,anetv_Sfdj_kMDUh8,13933,He is putting glue onto the floor. He then,He is putting glue onto the floor.,He then,gold,explains how to use it to remove the metal.,lays the carpet down on top of it and smooths it out.,attaches nails to polish and paints the nails.,rubs the tiles on the bottom.,1\n5223,anetv_Sfdj_kMDUh8,13934,He then lays the carpet down on top of it and smooths it out. He then,He then lays the carpet down on top of it and smooths it out.,He then,gold,begins throwing the pieces against the wall as well.,vacuums the carpet when he is finished.,lays down on the couch and lays down in the chair.,continues talking while flipping and other man goes into frame and recording himself on it.,1\n5224,anetv_Sfdj_kMDUh8,13931,A man is unrolling carpet onto the floor. He,A man is unrolling carpet onto the floor.,He,gold,spreads out the rope to remove all the wax from the floor.,is on his knees cutting the carpet.,screws up the wallpaper and drops it.,rubs back and forth on the room.,1\n5225,anetv_mAWuiYWXmb8,3364,A woman works out sitting on a cardio machine. A man,A woman works out sitting on a cardio machine.,A man,gold,walks using a machine on a steam machine.,holds up one door and inhales the steam.,holding his bicycle sits on the edge of the roof.,sits next a woman performing cardio workouts.,3\n5226,anetv_mAWuiYWXmb8,3363,A woman and a man exercise sitting on a cardio machine. A woman,A woman and a man exercise sitting on a cardio machine.,A woman,gold,demonstrates how to motion or using storage.,works out sitting on a cardio machine.,man is kneeling on the other side of a building and some more attached to eight in a wheelchair.,on a bike begins by by the wheel.,1\n5227,anetv_7XGimCWcafc,19016,\"While the tire is being replaced, the driver climbs back into the truck, and a specator takes a picture of the vehicle. Other spectators\",\"While the tire is being replaced, the driver climbs back into the truck, and a specator takes a picture of the vehicle.\",Other spectators,gold,come to the driver side to talk with the driver.,are in the stands watching them.,are watching him closely as the man in the black shirt primps in the mirror.,hold the door as it comes out of the vehicle.,0\n5228,anetv_7XGimCWcafc,19015,\"A worker and some assistants approaches the vehicle with a spare tire, and some men begin to jack up the rear of the truck to try to replace the rear passenger side tire. While the tire is being replaced, the driver climbs back into the truck, and a specator\",\"A worker and some assistants approaches the vehicle with a spare tire, and some men begin to jack up the rear of the truck to try to replace the rear passenger side tire.\",\"While the tire is being replaced, the driver climbs back into the truck, and a specator\",gold,climbs the last sides of the car.,stands very balanced in the street in the water on front the area and began talking.,takes a picture of the vehicle.,pushes its wheel onto a bike to finish off the machine.,2\n5229,anetv_7XGimCWcafc,19013,A large off - roading truck drives by along a dirt track next to a body of water and comes to a stop. Many spectators,A large off - roading truck drives by along a dirt track next to a body of water and comes to a stop.,Many spectators,gold,cheer them on as the high slopes are displayed.,watch on the civilian officers.,is laughing and cheering and laughing as they float across the street.,\"approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck.\",3\n5230,anetv_7XGimCWcafc,19014,\"Many spectators approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck. A worker and some assistants approaches the vehicle with a spare tire, and some men\",\"Many spectators approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck.\",\"A worker and some assistants approaches the vehicle with a spare tire, and some men\",gold,begin to jack up the rear of the truck to try to replace the rear passenger side tire.,and the men continue to walk people over the area barricade and then trail their horses before chasing after the other.,turn the zipper on the car and pull it off.,grab his luggage as they go.,0\n5231,anetv_k5wY4N61bzU,4489,A still image is pictured with the words Dog Walk Across America shown over it. A middle aged couple,A still image is pictured with the words Dog Walk Across America shown over it.,A middle aged couple,gold,enters from the center of another group wearing a blue lacrosse shirt.,is then shown siting on logs talking with their dogs roaming behind them and another man sitting on a big boulder rock.,is seen laughing to the man and quickly joins in child care with a young man in his head.,is on a darkened staircase top as a man is fall on the floor.,1\n5232,anetv_k5wY4N61bzU,4490,Then several images of dogs are shown and then the woman reappears alone. Then another set of images,Then several images of dogs are shown and then the woman reappears alone.,Then another set of images,gold,are shown where the dogs are being helped by vets.,appears with words that are being shown in a movie china house.,are shown as well as her calling camera.,are shown that lead into her styling a cloth with an advertisement.,0\n5233,anetv_k5wY4N61bzU,4492,\"The man then reappears with the lady and they begin to talk again. Lastly, the man walks off and a black screen\",The man then reappears with the lady and they begin to talk again.,\"Lastly, the man walks off and a black screen\",gold,\"appears with white, text camera appear on screen.\",appears showing multiple websites.,appears on a black screen with white letters text shown on the screen.,appears at the point and squats.,1\n5234,anetv_k5wY4N61bzU,4491,Then another set of images are shown where the dogs are being helped by vets. The man then reappears with the lady and they,Then another set of images are shown where the dogs are being helped by vets.,The man then reappears with the lady and they,gold,continue dancing around the dog.,do different chairs dance.,begin to talk again.,continue making baskets and baskets.,2\n5235,anetv_fxlTN3mCWDA,15380,Two of the passengers are seated on folding chairs and they're playing drums on bongos. They,Two of the passengers are seated on folding chairs and they're playing drums on bongos.,They,gold,continue to play the bongos while the other passengers are busy doing their own thing.,continue playing the bass drums while still spinning to a ground.,are playing cards and interact.,are making a beat to the beat of drums.,0\n5236,anetv_fxlTN3mCWDA,15379,There are several passengers traveling in a subway train. Two of the passengers are seated on folding chairs and they,There are several passengers traveling in a subway train.,Two of the passengers are seated on folding chairs and they,gold,both begin to stare underwater before they are varying.,'re playing drums on bongos.,are putting on water another day.,watch the glider go out.,1\n5237,anetv_fxlTN3mCWDA,15382,One young boy who is seated near the players is watching them play. The players,One young boy who is seated near the players is watching them play.,The players,gold,continue playing the bongos and drumming on them.,return to the ball and set the balls.,engage in various sport on a dirt field.,\"are shown the right way to scoring this game on the other right, and the coach continues.\",0\n5238,anetv_fxlTN3mCWDA,15381,They continue to play the bongos while the other passengers are busy doing their own thing. One young boy who is seated near the players,They continue to play the bongos while the other passengers are busy doing their own thing.,One young boy who is seated near the players,gold,is looking forward to end the game.,is watching the interviewer.,begin to play a game of badminton while laughing.,is watching them play.,3\n5239,anetv_-02DygXbn6w,13929,The person with the camera falls and can not stop themselves as they roll down the slope. When they finally stop they,The person with the camera falls and can not stop themselves as they roll down the slope.,When they finally stop they,gold,see some other skiers who are at the bottom of the slope.,start shoveling the snow into the falling space.,are ready to jump and try to get tubes going down the wall.,replace the fishing poles.,0\n5240,anetv_-02DygXbn6w,12474,\"They fall over for a minute and get back up, the one farther behind catches up and gets in front of the other boarder. The boarder\",\"They fall over for a minute and get back up, the one farther behind catches up and gets in front of the other boarder.\",The boarder,gold,slows to the man's trowel as the people cheer him on.,keeps his leash around the boat and washes it around.,tried to grab on to a sign and is falling in and tumbling around in snow.,drops into a sea attached by their vehicle.,2\n5241,anetv_-02DygXbn6w,13928,Some people at the top of a snow slope begin to snowboard down the slope. The person with the camera,Some people at the top of a snow slope begin to snowboard down the slope.,The person with the camera,gold,lifts the slope of the skaters with the help of some skiers.,\"goes up, and then shows them riding down the slope and on to another group who still holding their stilts.\",\"comes in, telling him what you are going to do with the little boy.\",falls and can not stop themselves as they roll down the slope.,3\n5242,anetv_2vixXUJiNhk,8575,The focus goes back to the snorkelers as they continue to explore the area with their flashlights. The outro video appears and it's the same blue picture as the intro and includes some contact information on the video and the credits,The focus goes back to the snorkelers as they continue to explore the area with their flashlights.,The outro video appears and it's the same blue picture as the intro and includes some contact information on the video and the credits,gold,called it.,are shown after the closing word appears.,begin to roll with the text scrolling from bottom to top.,announces the video address.,2\n5243,anetv_2vixXUJiNhk,8574,A person underwater in snorkeling gear is now swimming around the bottom of the water and meets up with another snorkeler and they both go into a ship that is underwater as they both hold their flashlights and cameras to explore the ship and everything else at the bottom of the water. A school of fishes appear and they,A person underwater in snorkeling gear is now swimming around the bottom of the water and meets up with another snorkeler and they both go into a ship that is underwater as they both hold their flashlights and cameras to explore the ship and everything else at the bottom of the water.,A school of fishes appear and they,gold,'re swimming and hanging around the boat.,'re seen the side shows a very small tube.,sit on the other side of the ocean while they huddle together.,\"begin to scuba dive into the water, before paddling and walk in the water.\",0\n5244,anetv_2vixXUJiNhk,8573,An intro video with a blue screen that has a picture of a drawn ship is in the background while yellow words scroll from the bottom to the top. A view from the water begins and a few houses and a lot of trees,An intro video with a blue screen that has a picture of a drawn ship is in the background while yellow words scroll from the bottom to the top.,A view from the water begins and a few houses and a lot of trees,gold,are in the sky.,are displayed above the lake.,are shown along with the logo in red painted.,are shown on land.,3\n5245,anetv_5Foo5NSjEXQ,1552,He stirs the ingredients in the pot. He,He stirs the ingredients in the pot.,He,gold,takes the pasta out of the pot and puts it in a strainer.,cooks the pasta into the pan.,stirs the pasta in the pot.,melts the mixture into the pan.,0\n5246,anetv_5Foo5NSjEXQ,1551,He puts pasta into a large pot. He,He puts pasta into a large pot.,He,gold,stirs the ingredients in the pot.,pours the mix into someone's pot.,pours the pasta to the pot.,puts the pasta into a pan and sets the steppers in the pot.,0\n5247,anetv_5Foo5NSjEXQ,635,A chef is seen speaking to the camera and pouring oil into a pot. He then,A chef is seen speaking to the camera and pouring oil into a pot.,He then,gold,removes the ingredients and drains it around finally setting it on a stove.,begins cooking the bowl and begins creating an omelet.,puts ingredients into the pot and sits it around.,pours the mixture with sugar and sugar in a pan.,2\n5248,anetv_5Foo5NSjEXQ,636,He then puts ingredients into the pot and sits it around. He,He then puts ingredients into the pot and sits it around.,He,gold,takes out the ingredient in the end into a strainer.,takes another log part of the sandwich and stirs it.,uses a compact cleaner to eat the cookies.,begins then blow the salad with a machine.,0\n5249,anetv_5Foo5NSjEXQ,1550,A chef is standing in a kitchen. He,A chef is standing in a kitchen.,He,gold,puts pasta into a large pot.,is mixing the ingredients into a plate.,uses a brush to apply mayonnaise on the metal.,is holding a knife in a pan.,0\n5250,lsmdc3014_CAPTAIN_AMERICA-5431,2860,An mp eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices. People in white lab coats,An mp eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices.,People in white lab coats,gold,turn and stare at someone.,sit down in front of a male rocketing.,sit around the towering building as someone works underneath the metallic equipment.,gag themselves around the bottom of a drip box.,0\n5251,lsmdc3014_CAPTAIN_AMERICA-5431,2857,\"Standing a short distance down the street, two men in suites watch someone and someone enter a shop. Inside, a white - haired woman\",\"Standing a short distance down the street, two men in suites watch someone and someone enter a shop.\",\"Inside, a white - haired woman\",gold,peels off a pair of shoes.,steps forward to greet them.,arranges a takeout bag on her bed.,takes two step as they enter from vault's door.,1\n5252,lsmdc3014_CAPTAIN_AMERICA-5431,2858,The white - haired woman steps behind a counter and presses a button located beside a submachine gun. Someone and someone,The white - haired woman steps behind a counter and presses a button located beside a submachine gun.,Someone and someone,gold,watch in glee as he pinches the nuts into a small bundle.,step up over a rack of long tables and chairs.,sit in a semi - hidden lobby in a roaring blaze of evening light.,walk into a backroom and face a bookcase which swings open.,3\n5253,lsmdc3014_CAPTAIN_AMERICA-5431,2855,Someone smiles as she looks out her window. Their car,Someone smiles as she looks out her window.,Their car,gold,looks up in surprise.,pulls up to a curb.,passes across the road towards someone's sticker camouflage.,accelerates straight through the parked cars.,1\n5254,lsmdc3014_CAPTAIN_AMERICA-5431,2859,Someone and someone walk into a backroom and face a bookcase which swings open. An mp,Someone and someone walk into a backroom and face a bookcase which swings open.,An mp,gold,releases one as he takes off of the rings.,pulls up the tiles and makes a fire.,eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices.,lifts a phone from someone's hand.,2\n5255,lsmdc3014_CAPTAIN_AMERICA-5431,2856,\"Someone and someone step out. Standing a short distance down the street, two men in suites\",Someone and someone step out.,\"Standing a short distance down the street, two men in suites\",gold,come out to join the group and stare at someone.,creep to a stop below.,come out of the shadows and leave the ballroom.,watch someone and someone enter a shop.,3\n5256,lsmdc3014_CAPTAIN_AMERICA-5431,2861,People in white lab coats turn and stare at someone. He,People in white lab coats turn and stare at someone.,He,gold,puts a second belt on someone's head.,glances at someone who turns and leads him to someone who stands beside a padded table in the center of the room.,limps away in the dining room.,\"holds his head up as if to cross his mind, which ends in the sizable explosion.\",1\n5257,anetv_1BfYAuxv6Wk,11887,She then takes a shaker and pours and vodka and the jagermeister. Then,She then takes a shaker and pours and vodka and the jagermeister.,Then,gold,\", she slowly extends a metal liquid to the lens and sorts through it.\",she begins to mix ingredients for batman.,adds some ice in it and shakes it.,after she reinserts the cook liquid on the table.,2\n5258,anetv_1BfYAuxv6Wk,11886,Maria is demonstrating how to make a Nyquil cocktail drink. She,Maria is demonstrating how to make a Nyquil cocktail drink.,She,gold,starts mixing a cup in hot water in a greased cup pitcher.,boils a rum mixture in a blender.,shows the ingredients required for the drink.,drinks the pot of liquor and juice a rod to a handle by teaching it to make for a cookie.,2\n5259,anetv_1BfYAuxv6Wk,11888,Then adds some ice in it and shakes it. She,Then adds some ice in it and shakes it.,She,gold,is finished for the empty time.,holds the flute and finishes as she takes the flute from her hands.,uses a strainer to strain the drink into a cocktail glass and places the glass on the table.,\"takes the glass, drinks the juice from the oven.\",2\n5260,anetv_2PAVJbmj2lQ,11827,Several more people are seen running down the lane and shooting a basket above them. More girls,Several more people are seen running down the lane and shooting a basket above them.,More girls,gold,run around in the circle until they fall off the end.,are interviewed and the players around each throws the ball on the beach.,run down to shoot a basket and end by walking back together.,continue hitting the ball back and fourth while others watch on the side.,2\n5261,anetv_2PAVJbmj2lQ,11826,A small group of people are seen standing around a gymnasium with one running down and shooting a basket. Several more people,A small group of people are seen standing around a gymnasium with one running down and shooting a basket.,Several more people,gold,are shown moving around while one taking a bow while others watch is one on the side.,are then shown tugging in the end and throwing a ball while many watch on the side.,are seen running in a field chasing another ball while the hit is competing.,are seen running down the lane and shooting a basket above them.,3\n5262,lsmdc1040_The_Ugly_Truth-8551,17631,\"As she gets ready for bed, a tv plays in her bedroom. D'Artagnan\",\"As she gets ready for bed, a tv plays in her bedroom.\",D'Artagnan,gold,treads on the remote and changes channels.,exposes a small cabinet in a young tunnel ad on a wall facing the bathroom door.,drawing on the wall in her right eye.,pushes up to her forehead.,0\n5263,lsmdc1040_The_Ugly_Truth-8551,17629,\"She lets herself in her front door, and her cat, D'Artagnan, trots over. Someone\",\"She lets herself in her front door, and her cat, D'Artagnan, trots over.\",Someone,gold,'s dark - haired friend knits her.,sits in the bathroom with a larger note on it on the bed.,looks thoughtful and a little sad.,unlocks at the front of the shed where an officer opens the door's knob.,2\n5264,lsmdc1040_The_Ugly_Truth-8551,17630,\"Someone looks thoughtful and a little sad. As she gets ready for bed, a tv\",Someone looks thoughtful and a little sad.,\"As she gets ready for bed, a tv\",gold,\"is sitting on a couch next to herself, gun in hand.\",is into the living room.,plays in her bedroom.,is then drizzled in over the living room.,2\n5265,lsmdc1040_The_Ugly_Truth-8551,17628,\"Later that night, someone walks past an illuminated fountain. She\",\"Later that night, someone walks past an illuminated fountain.\",She,gold,moves towards running locks but she knocks and it breaks.,sees someone clutching a fan in both hands.,places one hand on someone's heart and press their lips together.,heads along a path through the pretty ornamental gardens outside her apartment building.,3\n5266,lsmdc3059_SALT-28672,15063,She adjusts it outside the interrogation room. She,She adjusts it outside the interrogation room.,She,gold,holds out her hand in this time and waits for a third.,\"wears short dark hair, a burly vest, and a goatee.\",heads through the door.,steps toward the sink.,2\n5267,lsmdc3059_SALT-28672,15062,Someone picks up a pack of cigarettes and an ashtray then inserts a small radio receiver into her ear. She,Someone picks up a pack of cigarettes and an ashtray then inserts a small radio receiver into her ear.,She,gold,\"slaps his cat, leads it to someone's sitting room, his tattoo is laid outside.\",slowly opens the door and peers out her room door.,adjusts it outside the interrogation room.,approaches the pocket and sets out a copy of the book.,2\n5268,anetv_3Hbm8FdirRc,7482,A man is sitting on a green riding lawn mower. He,A man is sitting on a green riding lawn mower.,He,gold,continues to mow the lawn.,\"is in bushes mowing the grass, as he picks it up and something appears the fence with the mower.\",starts painting a wood tree in the garden.,is mowing in front of lawn as he mows.,0\n5269,anetv_3Hbm8FdirRc,7483,He continues to mow the lawn. He,He continues to mow the lawn.,He,gold,mows down smooth landing on the residential square.,mows around a bush on the lawn.,stops at the hedges and starts to perform for him.,stops to mow the lawn and walking.,1\n5270,anetv_3Hbm8FdirRc,17289,He has orange ear protection on. He,He has orange ear protection on.,He,gold,\"is standing up, pointing his finger pointed paws at him and continuing of his narration.\",cleans smoke and some smeared pliers in a bushy patch.,\"rubs soap on his hands, and put the laces in place.\",goes back and forth mowing the lawn.,3\n5271,anetv_3Hbm8FdirRc,17288,A man is sitting on a riding lawn mower. He,A man is sitting on a riding lawn mower.,He,gold,stands to catch a tube back from the camera.,puts brush on a woman's.,is in shining white shoes and very white shoes.,has orange ear protection on.,3\n5272,anetv_WjX-xi2Ocbo,13273,\"He ropes a calf, dismounted to tie it up. Another man\",\"He ropes a calf, dismounted to tie it up.\",Another man,gold,takes in a ring.,grabs his right leg as he jogs.,comes back and transfers the horse competition.,rides on screen momentarily.,3\n5273,lsmdc0001_American_Beauty-45896,11401,\"Someone scrambles to dodge his father, but someone is too fast; he punches someone in the face, knocking him to the floor. From her window, someone\",\"Someone scrambles to dodge his father, but someone is too fast; he punches someone in the face, knocking him to the floor.\",\"From her window, someone\",gold,is on the far side of his first lane.,has to wipe broken face full of someone's face.,\"watches, pulling the drapes in front of her.\",is motionless upside down next to her.,2\n5274,lsmdc0001_American_Beauty-45896,11399,\"Startled, someone turns around. As soon as his eyes meet his father's, he\",\"Startled, someone turns around.\",\"As soon as his eyes meet his father's, he\",gold,rises to the palm of his foot.,stands with her back to her.,puts his hand on someone.,knows what's up.,3\n5275,lsmdc0001_American_Beauty-45896,11404,\"In the window across from us, someone proceeds to give someone a serious beating, punching his face. Someone\",\"In the window across from us, someone proceeds to give someone a serious beating, punching his face.\",Someone,gold,disintegrates after the frost sphere.,grabs him by the collar.,\"takes a hit, someone accelerates.\",reply on the sidewalk.,1\n5276,lsmdc0001_American_Beauty-45896,11397,\"She stands there in her bra, then reaches behind her back to unhook the bra. We\",\"She stands there in her bra, then reaches behind her back to unhook the bra.\",We,gold,maid is behind the bar.,zoom toward her as she takes off her bra clumsily.,'s bra falls.,\"'s hair, dryers, hair swept off her.\",1\n5277,lsmdc0001_American_Beauty-45896,11400,\"As soon as his eyes meet his father's, he knows what's up. Someone scrambles to dodge his father, but someone is too fast; he\",\"As soon as his eyes meet his father's, he knows what's up.\",\"Someone scrambles to dodge his father, but someone is too fast; he\",gold,\"starts laughing and without an uncertain look, along leaning close to her.\",turns and slaps a red block.,\"punches someone in the face, knocking him to the floor.\",can't penetrate either heavy enough to grab one and climb into it.,2\n5278,lsmdc0001_American_Beauty-45896,11391,\"Embarrassed, she quickly leaves. Someone\",\"Embarrassed, she quickly leaves.\",Someone,gold,turns through the kitchen and enters a room lined with books.,\"looks in a mirror and rubs her cheek, then crosses to the window and looks out.\",highlights a meeting outside.,\"drives, scanning her intently.\",1\n5279,lsmdc0001_American_Beauty-45896,11402,\"From her window, someone watches, pulling the drapes in front of her. Someone's lip is bleeding, but he\",\"From her window, someone watches, pulling the drapes in front of her.\",\"Someone's lip is bleeding, but he\",gold,\"got a skin, which makes her crack in half.\",\"thinks better of it, as if this means that.\",pushes it down to her.,maintains a steady gaze at his father during this violence.,3\n5280,lsmdc0001_American_Beauty-45896,11398,\"We zoom toward her as she takes off her bra clumsily. On the wide - screen tv behind him, we\",We zoom toward her as she takes off her bra clumsily.,\"On the wide - screen tv behind him, we\",gold,see someone sitting at a table working outside at the country bank.,see someone standing in her window as she looks across at him.,revolve in on the crescent form of the mysterious hood.,\"glimpse an attractive, auburn - haired woman hurrying to the kitchen.\",1\n5281,lsmdc0001_American_Beauty-45896,11392,\"Someone looks in a mirror and rubs her cheek, then crosses to the window and looks out. We\",\"Someone looks in a mirror and rubs her cheek, then crosses to the window and looks out.\",We,gold,erupt across the bay.,\"stops for a moment, then gets out of the car with someone else.\",\"are whilst in the city handrail, with the empty fountain at the far end of the room.\",\"are across from someone's room, looking in.\",3\n5282,lsmdc0001_American_Beauty-45896,11395,\"A beat, then she starts to take off her shirt. She\",\"A beat, then she starts to take off her shirt.\",She,gold,holds her gaze for a moment.,is pulling the suitcase out of her way.,has now removed her shirt.,turns brushing the bell rings.,2\n5283,lsmdc0001_American_Beauty-45896,11396,She has now removed her shirt. She,She has now removed her shirt.,She,gold,\"stands there in her bra, then reaches behind her back to unhook the bra.\",begins to ride off.,up and walks off.,rolls down someone's face and smiles.,0\n5284,lsmdc0001_American_Beauty-45896,11403,\"Someone's lip is bleeding, but he maintains a steady gaze at his father during this violence. In the window across from us, someone\",\"Someone's lip is bleeding, but he maintains a steady gaze at his father during this violence.\",\"In the window across from us, someone\",gold,turns himself toward the periscope.,catches him with the headwaiter photo.,\"proceeds to give someone a serious beating, punching his face.\",watches admiringly past the faded room of the first class site.,2\n5285,lsmdc0001_American_Beauty-45896,11394,\"He stands at the window with his digicam, videotaping us. We\",\"He stands at the window with his digicam, videotaping us.\",We,gold,- mounted on the bed burning.,finds it close.,are behind someone as he videotapes someone in her window.,\"out of his way, someone waves the wand.\",2\n5286,anetv_WMVJqLMtaws,13274,The girl takes her turn followed by the boy shortly after. The girl,The girl takes her turn followed by the boy shortly after.,The girl,gold,\"follows us as the girls last to move around, and then come back to join her and the camera once more.\",demonstrates to pick around the boy.,peels brown fabric into the hoop and retrieves it and pulls it back out.,takes another turn while the dogs wander around and one grabs the glove while the girl chases him.,3\n5287,anetv_WMVJqLMtaws,13275,The girl takes another turn while the dogs wander around and one grabs the glove while the girl chases him. She,The girl takes another turn while the dogs wander around and one grabs the glove while the girl chases him.,She,gold,push the dog while jumping.,grabs the glove and continues jumping again.,bumps onto a table and screams.,lifts the cap after his one.,1\n5288,anetv_WMVJqLMtaws,3789,The girl plays with the dogs and chase them around to grab a rock. The boy,The girl plays with the dogs and chase them around to grab a rock.,The boy,gold,mows for the yard while the camera trails her foot.,rolls across the camel to the left.,plays with the girl as the dogs walk on the side.,sticks several more as the help more and away.,2\n5289,anetv_WMVJqLMtaws,3788,Two children are seen standing outside with one playing hopscotch and dogs walking in and out of frame. The girl,Two children are seen standing outside with one playing hopscotch and dogs walking in and out of frame.,The girl,gold,plays with the dogs and chase them around to grab a rock.,is playing the scissors while the people are watching her.,continues braiding and talking to the camera while another man walks next to them.,demonstrates several brushes before moving it around on the top and smiles to the camera and marks friends it.,0\n5290,anetv_WMVJqLMtaws,13273,Two children are seen playing hopscotch on a paved road while one dog walks by and another lays and watches. The girl,Two children are seen playing hopscotch on a paved road while one dog walks by and another lays and watches.,The girl,gold,takes her turn followed by the boy shortly after.,looks back from the bag and begins spinning up throwing the one again.,continues belly dances while they play volleyball.,continue dancing along the track while the camera captures her movements.,0\n5291,anetv_6FPoGGaox4g,2,A woman is helping a little boy slide down a slide. A woman,A woman is helping a little boy slide down a slide.,A woman,gold,is sitting on a tube in a playground next to the playground.,pulls the girl down from a slide.,is walking on the monkey monkey bars.,is at the top of a slide helping a little boy slide down into the arms of another person in a red vest.,3\n5292,anetv_IC-Rd7ouQmE,699,A group of people are seen sitting on bikes and waiting before a track. A bar let's go and the men,A group of people are seen sitting on bikes and waiting before a track.,A bar let's go and the men,gold,rides up a routine with the coach.,ride around a long track on the bikes behind one another.,lift one man and stick back into the corner of a home played while wearing the blue t shirt.,continue running across the track doing other kicks.,1\n5293,anetv_Aqq8S79ZAhk,11847,A camera pans around a room and leads into two women speaking and pulling out rock tiles. The women then,A camera pans around a room and leads into two women speaking and pulling out rock tiles.,The women then,gold,put plaster down followed by the rock tiles and showing off the finished shower in the end and people reacting.,begins taking different shoes off while the man continues to lay down the table.,begin wrapping the weights and leads into one another putting items on their end and presenting them to the camera.,switch places behind the woman and begin breaking dancing while open.,0\n5294,anetv_wZJeEV6sZXE,13652,\"She sits on a toilet appearing, with parts of her blurred out and appears to be in distress. The woman\",\"She sits on a toilet appearing, with parts of her blurred out and appears to be in distress.\",The woman,gold,stands up and washes her hands.,puts down her cat and throws looking at her blue eyes.,is speaking teeth while a couple clips her hair.,then shows the other items by applying a contact lens.,0\n5295,anetv_wZJeEV6sZXE,13651,A computer generated woman in a computer generated house walks into a wallless bathroom. She,A computer generated woman in a computer generated house walks into a wallless bathroom.,She,gold,lifts her hood to look out at her reflection in the mirror.,\"sits on a toilet appearing, with parts of her blurred out and appears to be in distress.\",opens a door and behind her.,rolls the drapes down on the exercise table right in front of him.,1\n5296,anetv_wZJeEV6sZXE,1460,\"Then, the character sits on a toilets and drinks from a cup. Then the woman characters stands, washes her hands and\",\"Then, the character sits on a toilets and drinks from a cup.\",\"Then the woman characters stands, washes her hands and\",gold,bake them on a kitchen floor.,dry then on he s pants.,smells with one hand.,puts water to the flower and groom it.,1\n5297,lsmdc3053_PARENTAL_GUIDANCE-25514,5612,\"Inside the house, a short blonde in her 60s exhaustively works out on a stripper pole. An instructor\",\"Inside the house, a short blonde in her 60s exhaustively works out on a stripper pole.\",An instructor,gold,leads her and three other middle - aged women on their own poles.,\"steps forward with a work kick, looking with the grace of a high baton and opens his eyes.\",\"wears a wide sided display of white, white styles in a pink braid in a stained bottom crest.\",calls in the terminal.,0\n5298,lsmdc3053_PARENTAL_GUIDANCE-25514,5610,As someone leaves the lights go out one by one. Later outside a ranch style home a vintage red convertible Mustang,As someone leaves the lights go out one by one.,Later outside a ranch style home a vintage red convertible Mustang,gold,drives the two police cart toward the crates.,appears as autumn heads over.,sweeps through the park.,sits in the driveway.,3\n5299,lsmdc3053_PARENTAL_GUIDANCE-25514,5609,He somberly walks away past a giant poster featuring his head with a Fresno Grizzly's hat. As someone leaves the lights,He somberly walks away past a giant poster featuring his head with a Fresno Grizzly's hat.,As someone leaves the lights,gold,go out one by one.,show the next question.,\"and blows on the glass, whacks the mixture upside down.\",go on as the quartet sprints as they race through the yellow flames.,0\n5300,lsmdc3053_PARENTAL_GUIDANCE-25514,5614,He despondently passes the women. Someone,He despondently passes the women.,Someone,gold,turns down a set of number - shaped actors.,watches as the boys rinse out the dishwasher.,watches her husband slump into the kitchen.,\"is drying someone's hair, as well kids appear in the kitchen.\",2\n5301,lsmdc3053_PARENTAL_GUIDANCE-25514,5611,Its license plate reads davoice. Someone,Its license plate reads davoice.,Someone,gold,sits in the driver's seat watching a stuffed grizzly bear swing from the rear view mirror.,slowly takes her hand and walks into the kitchen.,sets him down on his lunch counter.,\", answers coming out outside.\",0\n5302,lsmdc3053_PARENTAL_GUIDANCE-25514,5613,An instructor leads her and three other middle - aged women on their own poles. Someone,An instructor leads her and three other middle - aged women on their own poles.,Someone,gold,steps down the street by himself.,slips some money into his pocket.,holds up a shoelace as they sit with the ring.,exits his car and approaches the front door.,3\n5303,anetv_yqzV0O139Yk,4005,Two people are seen standing on a field in front of ball when one bends over to balance on the ball. The woman then,Two people are seen standing on a field in front of ball when one bends over to balance on the ball.,The woman then,gold,spins the ball around while another girl to and way to hit the ball.,turns and continues doing high and tumbling and the camera jumps off another side.,throws the woman off at a distance and returns to the competition area.,performs exercises on the ball with the man's assistance.,3\n5304,lsmdc3043_KATY_PERRY_PART_OF_ME-20830,19142,\"Smiling at her audience, someone raises one fist in the air, choking back tears. She\",\"Smiling at her audience, someone raises one fist in the air, choking back tears.\",She,gold,\"holds it up and smiles, but someone walks back from her and looks at the other confused and maybe he has been parents.\",blows a kiss to the crowd.,is unbuttoning as someone talks to someone.,hit her again and frowns as she speaks into the pager.,1\n5305,anetv_a2k-AgrAppg,13919,\"A little girl sits on front a cup of ice cream, then she takes a piece of food from the cup and eats it. Then, the girl\",\"A little girl sits on front a cup of ice cream, then she takes a piece of food from the cup and eats it.\",\"Then, the girl\",gold,grab the spoon and eats the ice cream.,takes cream from her right eye.,takes a turn from the oven.,dumps some sugar into a baking pan.,0\n5306,anetv_Z-gDuGMpClo,8523,The men walk in the parking lot in a line with only underwear on. A man,The men walk in the parking lot in a line with only underwear on.,A man,gold,shakes his wet hair.,is next to them.,prepares a cigarette in a kitchen.,sits on a trampoline and talks.,0\n5307,anetv_Z-gDuGMpClo,8522,We see shirtless men in small tight underwear washing cars. The men,We see shirtless men in small tight underwear washing cars.,The men,gold,take a brush from the van and surfs in a bright area.,\"approach to suits, wear men in duffel gear, and next to the man.\",walk in the parking lot in a line with only underwear on.,\"enter a new conference room, watched by rocks and legs from a floor with bushy creased angles and seats on the high floor.\",2\n5308,anetv_Z-gDuGMpClo,8527,Men do dances in a line and scenes of washing the car. We,Men do dances in a line and scenes of washing the car.,We,gold,see a woman standing in the dirt car.,\"fill the screen, then people race the street around the machine.\",see the ending title screen.,see paintball guns on the ground.,2\n5309,anetv_37gHYr2uDZo,5656,Grab another cup and uses it to mix drink. He,Grab another cup and uses it to mix drink.,He,gold,drink woman out while moving through bowling pins as other tables shaped glass are sitting on a ground.,grabs a third cup and pours the drink into that cup or serving.,drop the cup directly to the table and remove paints.,carries two bottles of liquor into the large glass bottle and puts them on.,1\n5310,anetv_37gHYr2uDZo,7915,The man pours the contents of the tall glass into a shaker. The man then,The man pours the contents of the tall glass into a shaker.,The man then,gold,pours another lime in the martini glass and brings it up with a drink.,squeezes the lemons into a glass glass.,takes the contents of the glass and brings it back to the glass.,pours the contents of the shaker back into the tall glass.,3\n5311,anetv_37gHYr2uDZo,7914,The man grabs takes several liquids and begins to pour them in a tall glass. The man,The man grabs takes several liquids and begins to pour them in a tall glass.,The man,gold,pours the drinks from a blender.,begins mixing the ingredients together in a pan.,pours the contents of the tall glass into a shaker.,picks up a different solves of the puzzle someone is standing on.,2\n5312,anetv_37gHYr2uDZo,7913,A man is standing behind a bar talking. The man,A man is standing behind a bar talking.,The man,gold,demonstrates how to brush their teeth.,bends forward and sets the baby down on his side.,grabs takes several liquids and begins to pour them in a tall glass.,poke his legs while juggling his racket.,2\n5313,anetv_37gHYr2uDZo,5655,A man comes onto the screen introduces that he will be making a coconut flavored drink. He,A man comes onto the screen introduces that he will be making a coconut flavored drink.,He,gold,is on the beach doing the pedals for a second time.,takes a drink and attempts to make a drink before finally pouring it into his glass.,fills a cup with ice and adds all the ingredients into the cup.,\"pours down a different drink then uses it for other length of drink, then takes a few deep breaths right after the first.\",2\n5314,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95090,3376,He is looking at a photograph stuck up on the mirror. Someone's parents,He is looking at a photograph stuck up on the mirror.,Someone's parents,gold,are following someone's examination.,are part of the group.,are still standing about.,lurking on the sidewalk as they spin wildly.,1\n5315,lsmdc0005_Chinatown-48052,2632,A stunning young woman appears behind someone in his doorway. She,A stunning young woman appears behind someone in his doorway.,She,gold,cuts the killer's hair as he regards an asian woman.,\"bites through her lip, holding her wand in view.\",\"is shortly joined by a small, gray - haired man.\",\"is very surprised to find another vast skyscraper with tall trees, on new dashboard.\",2\n5316,lsmdc0005_Chinatown-48052,2633,\"She is shortly joined by a small, gray - haired man. They\",\"She is shortly joined by a small, gray - haired man.\",They,gold,\"listen, unseen by someone.\",picks up a phone and dials.,regards her sister curiously as she plays the piano.,\"are gone, panic run into the back.\",0\n5317,lsmdc1011_The_Help-78599,3620,\"She rises to her feet, squaring up to her skinny shoulders. Someone\",\"She rises to her feet, squaring up to her skinny shoulders.\",Someone,gold,fixes her with a look of barely - disguised amusement.,\"gives in slow, synchronized breaths.\",reaches for his wallet.,\"holds her hand in front of her face, and they head off.\",0\n5318,lsmdc1011_The_Help-78599,3618,Someone shoves the plate at someone. She,Someone shoves the plate at someone.,She,gold,turns to look after her.,waves her away and takes another forkful.,turns to meet him.,tries to put up the refrigerator.,1\n5319,lsmdc1011_The_Help-78599,3619,She waves her away and takes another forkful. Someone,She waves her away and takes another forkful.,Someone,gold,watches as someone leads her pancakes.,flies into a water cave.,slams down the plate.,\"pulls up his vehicle, moves around the edge, lingering a few feet closer.\",2\n5320,lsmdc3058_RUBY_SPARKS-28081,2716,\"Under her vulnerable gaze, someone's expression softens. She\",\"Under her vulnerable gaze, someone's expression softens.\",She,gold,smiles tenderly at him.,turns then gazes out with her handkerchief.,\"takes a deep breath, gradually backs her up against a crook loving hand.\",rips up his hood.,0\n5321,lsmdc3058_RUBY_SPARKS-28081,2721,\"Someone jumps in after her, fully clothed. The two\",\"Someone jumps in after her, fully clothed.\",The two,gold,\"allow someone to replace their visor, then get into an elevator.\",drive for and gather breakfast.,\"girls hurry to the dining table, which are occupied at the back of the hobbits.\",swim around one another in a softly illuminated water.,3\n5322,lsmdc3058_RUBY_SPARKS-28081,2715,\"Watching someone, someone coyly nibbles her soda straw. At his typewriter, someone\",\"Watching someone, someone coyly nibbles her soda straw.\",\"At his typewriter, someone\",gold,spreads her arms where someone wears a blurred expression as he listens thoughtfully.,furrows his brow and pauses briefly.,sits astride a four - round cat.,crosses the room dressed and pulls out a blanket.,1\n5323,lsmdc3058_RUBY_SPARKS-28081,2724,He finds his cellphone in a pile of clothes and answers it. He,He finds his cellphone in a pile of clothes and answers it.,He,gold,puts on the thick tartan blanket.,pauses and peers through his keys.,watches seated outside in front of an apartment and washing his hands over the sun.,presses a few buttons.,3\n5324,lsmdc3058_RUBY_SPARKS-28081,2720,\"In her sundress and bare feet, she leaps into the narrow swimming pool. Someone\",\"In her sundress and bare feet, she leaps into the narrow swimming pool.\",Someone,gold,senses her speed and soap.,\"around, she kicks someone through the glass as she crawls along a wooden walkway out of the grubby woman.\",\"jumps in after her, fully clothed.\",\"speeds upright this alley, then they explode.\",2\n5325,lsmdc3058_RUBY_SPARKS-28081,2719,\"Someone springs up and dashes pass him. In her sundress and bare feet, she\",Someone springs up and dashes pass him.,\"In her sundress and bare feet, she\",gold,leaps into the narrow swimming pool.,eat astonished at a manhattan framed skyscraper.,revolves on the stair set.,crawls to her alarm.,0\n5326,lsmdc3058_RUBY_SPARKS-28081,2723,He runs through the house. He,He runs through the house.,He,gold,walks up to the door and steps inside.,halts and trudges to his couch.,finds his cellphone in a pile of clothes and answers it.,searches through mud after people stare after him.,2\n5327,lsmdc3058_RUBY_SPARKS-28081,2717,She smiles tenderly at him. Someone,She smiles tenderly at him.,Someone,gold,hugs him and puts her arms around his throat.,rests her hand on someone's shoulder and reads.,leans in close to her.,take them to the tree and dance together.,2\n5328,lsmdc3058_RUBY_SPARKS-28081,2711,\"Someone sees the couple off then heads inside. Moving through the foyer, he\",Someone sees the couple off then heads inside.,\"Moving through the foyer, he\",gold,sees someone rummaging around the doorknob with his finger.,approaches a statue where the gate is secured in a university sunny tooth.,\"finds someone sitting behind her, demurely leading him by a balcony.\",switches off the table lamp.,3\n5329,lsmdc3058_RUBY_SPARKS-28081,2713,\"He opens the drawer, stashing the mysterious woman's items. Someone\",\"He opens the drawer, stashing the mysterious woman's items.\",Someone,gold,fixes them with his bag.,grabs a lid and paints the face of a local editor.,curls into his t - shirt.,taps away at his typewriter.,3\n5330,lsmdc3058_RUBY_SPARKS-28081,2709,\"Later, someone uses a baby carrier to haul someone to a car. Someone\",\"Later, someone uses a baby carrier to haul someone to a car.\",Someone,gold,lowers his shy gaze.,treads to someone in a frightened expression.,is sticking the hood of the aston.,sets down a emergency food cup and tears down a thug's jacket as she stalks toward the building.,0\n5331,lsmdc3058_RUBY_SPARKS-28081,2714,\"With a dreamy wistful gaze he writes. In the imagined scene, someone and someone\",With a dreamy wistful gaze he writes.,\"In the imagined scene, someone and someone\",gold,chat with the young boy.,sit on his pool deck.,watch someone through a revolving door.,are among the great row of figures.,1\n5332,lsmdc3058_RUBY_SPARKS-28081,2712,\"Moving through the foyer, he switches off the table lamp. He\",\"Moving through the foyer, he switches off the table lamp.\",He,gold,steps around his staircase and picks up the manuscript.,rushes to the blonde and paces into the corridor.,\"climbs off the porch, holding a bat on his shoulder.\",sees the light take on the pair of glasses.,0\n5333,anetv_rFx-j3NhSgI,18156,An empty gymnasium is shown when a girl hits a button the computer and begins starting a routine. She,An empty gymnasium is shown when a girl hits a button the computer and begins starting a routine.,She,gold,\"checks her watch, one cartwheel from the bar then gets back on the mat.\",lifts up even higher and holds her arms up to do so.,finishes her dancing and makes a meeting with the items.,twirls around the gym floor with a baton and moves her arms around.,3\n5334,lsmdc3012_BRUNO-4367,4214,Someone rolls onto his back. Someone,Someone rolls onto his back.,Someone,gold,\"takes free, jumps up closes the doors.\",walks up the aisle to someone's mimics.,wears a strap - on dildo.,runs up and leaps off the side with a steady gait.,2\n5335,lsmdc3012_BRUNO-4367,4212,Effects punch and spins away. He,Effects punch and spins away.,He,gold,flies at it.,leaps back up in front of himself.,wraps his leg around someone's knee.,crosses to the open door.,2\n5336,lsmdc3012_BRUNO-4367,4213,He wraps his leg around someone's knee. Someone,He wraps his leg around someone's knee.,Someone,gold,'s shoulders heave as he storms off the lift.,\"twists his arm, and forces him to the floor.\",rests his mouth on the patient's lap; her eyes widen.,looks then pleasantly and gesticulates.,1\n5337,lsmdc1028_No_Reservations-83190,12639,Someone checks someone's cupboards. Someone,Someone checks someone's cupboards.,Someone,gold,\"'s homer is held straight over his head, leaving someone's broad wing.\",places one of his cash on someone's dressing table.,arrives home where he sits his bench on a sofa.,takes a box from his bag.,3\n5338,lsmdc1028_No_Reservations-83190,12641,Someone ushers someone out of the kitchen. Someone,Someone ushers someone out of the kitchen.,Someone,gold,\"stirs as someone laughs, then up at nothing.\",takes a bottle to his glasses before handing it over.,shows someone how to make a pizza base.,marches up to the passenger door.,2\n5339,anetv_NHDjJ8auZQ0,17905,Several tables of ping pong players serve a ping pong ball back and forth across a ping pong table at a refereed ping pong game. At times the serve is missed and the various players,Several tables of ping pong players serve a ping pong ball back and forth across a ping pong table at a refereed ping pong game.,At times the serve is missed and the various players,gold,retrieve the ball and resume playing while the judge in the center of the table keeps score with a paper flip scoreboard.,look towards the camera.,show the correct way before they hit a man into the middle of the court.,look down at their table.,0\n5340,anetv_NHDjJ8auZQ0,18697,The games play back and fourth while others watch on the side. The people,The games play back and fourth while others watch on the side.,The people,gold,continue then move back continuously with one another and ends with them playing in the end.,watch and continue to play the game all around one another and ends by walking away.,continue to play as well as people playing cards and speak to one another.,continue to play back and fourth with one another.,3\n5341,lsmdc3064_SPARKLE_2012-3843,6595,\"As she turns away, the big smile grows on her face. Someone\",\"As she turns away, the big smile grows on her face.\",Someone,gold,gazes solemnly toward his long staring nose.,\"gives someone a deep curtsey, then crouches down.\",\"looks away, running proudly.\",\"flashes a warm smile to her mother, who returns a stern glare.\",3\n5342,lsmdc3064_SPARKLE_2012-3843,6597,\"Now at the Anderson house, the Bible study group watches a comedian on the color tv. Someone\",\"Now at the Anderson house, the Bible study group watches a comedian on the color tv.\",Someone,gold,jogs up the bedroom and up the following corridor.,looks over at the lake.,passes and puts a mug put in the trash.,shoots someone a dirty look.,3\n5343,lsmdc3064_SPARKLE_2012-3843,6598,Someone shoots someone a dirty look. Someone,Someone shoots someone a dirty look.,Someone,gold,tosses it out.,jogs over to a counter and dashes off into the garage.,\"whispers to someone, who shrugs.\",sees no sign of his gran vito.,2\n5344,lsmdc3064_SPARKLE_2012-3843,6596,\"Someone flashes a warm smile to her mother, who returns a stern glare. Now at the Anderson house, the Bible study group\",\"Someone flashes a warm smile to her mother, who returns a stern glare.\",\"Now at the Anderson house, the Bible study group\",gold,offices a young woman.,of students food around an empty classroom.,watches a comedian on the color tv.,are a hot beauty way between french windows.,2\n5345,lsmdc3064_SPARKLE_2012-3843,6594,\"Someone, escorting a chin length bob, parks the car close by. Someone\",\"Someone, escorting a chin length bob, parks the car close by.\",Someone,gold,sits back on the stove and leaves.,comes in wearing helmets and a green balaclava.,takes the exam.,looks at someone and someone.,3\n5346,lsmdc3080_THIS_MEANS_WAR-37568,15292,\"They jump up and down, a hatch lowers. Someone\",\"They jump up and down, a hatch lowers.\",Someone,gold,checks someone's chute.,dangle a hopeful hold on a troop carrier.,holds the ribbon to someone's neck.,tosses the grenade to someone.,0\n5347,anetv_QryL-hVKAOA,2818,The kid grabs a sponge and its cleaning a pot. kid,The kid grabs a sponge and its cleaning a pot.,kid,gold,is in the bubble of the sink having a bath.,pours the ball into the sink.,wash a white plate in front of the sink.,sprays it with soap and dries it with a towel.,2\n5348,anetv_QryL-hVKAOA,16437,\"The girl picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer. The girl\",\"The girl picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer.\",The girl,gold,picked up the plate and rub the sponge on plate.,puts a jack on the toilet and washes the hands with soapy rag.,put her fingers on someone whose nose in the sink and began rubbing the pedals.,finished playing the cup with her hand and breath picking and swimming in the water.,0\n5349,anetv_QryL-hVKAOA,2817,Little kid is standing in front of a sink washing the dishes. the kid,Little kid is standing in front of a sink washing the dishes.,the kid,gold,is holding the sink and bucket and cleaning with it.,grabs a sponge and its cleaning a pot.,takes the mouthwash and washes it off of the sink.,is in the kitchen.,1\n5350,anetv_QryL-hVKAOA,16436,The little girl is brushing the big wooden spoon and put it under the running water and put the wooden spoon on the other side of the sink. The girl,The little girl is brushing the big wooden spoon and put it under the running water and put the wooden spoon on the other side of the sink.,The girl,gold,\"picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer.\",\"looked in from the faucet, then fill it with water.\",wiped the bottle and put it on the pumpkin and spray the dish.,started to sink as she washed the sink.,0\n5351,anetv_D2ggFcgEbFo,771,They use tubes to slide down a steep hill. They,They use tubes to slide down a steep hill.,They,gold,\"takes in water tubes and skiing down the mountain, very leisurely, and there are also other people in intertubes.\",race each other tubing down the hill together.,get in tubes toward the bottom of the hill.,go off and water themselves down a steep slope.,1\n5352,anetv_D2ggFcgEbFo,19166,A large group of people are seen riding up a snowy hill while waving to the camera and riding down the mountain. People continuously,A large group of people are seen riding up a snowy hill while waving to the camera and riding down the mountain.,People continuously,gold,ride up the hill as well as down while the camera watches them from all angles.,ride bikes on the rough areas while sitting close ups and show how the people high up.,ride around around the track and leads into several shots of bikes jumping off a skyscraper and adjusting bikes in front.,ride a kite around the area while fourth moving them and helping her out.,0\n5353,anetv_D2ggFcgEbFo,770,A group of people are riding a conveyor belt in the snow. They,A group of people are riding a conveyor belt in the snow.,They,gold,are people on the road.,use tubes to slide down a steep hill.,prepare to begin a race where a person is working with the heat of a race.,walk to the pavement in the rafts and move up to it.,1\n5354,lsmdc3052_NO_STRINGS_ATTACHED-25404,10244,Someone looks back and smiles. Someone,Someone looks back and smiles.,Someone,gold,frowns disapprovingly and blinks.,smiles as he shoves the man out.,switches back to sleep.,\"stares after him, then takes a seat.\",0\n5355,lsmdc3052_NO_STRINGS_ATTACHED-25404,10241,\"Someone drives along a highway by the ocean with her mom someone beside her. Someone's new boyfriend, Bones,\",Someone drives along a highway by the ocean with her mom someone beside her.,\"Someone's new boyfriend, Bones,\",gold,is shoved but this is a table.,is passed across the walkway and pulls up to the forge.,is sleeping on the backseat.,rests helplessly on an empty table.,2\n5356,lsmdc3052_NO_STRINGS_ATTACHED-25404,10242,\"Someone's new boyfriend, Bones, is sleeping on the backseat. He\",\"Someone's new boyfriend, Bones, is sleeping on the backseat.\",He,gold,pounds the palms of his own head with a gloved hand.,'s a thick - set old guy with a mustache and a ponytail.,enters the tunnel and hurries off.,\"is wearing a sweater, holding a towel on the front of her face.\",1\n5357,lsmdc3052_NO_STRINGS_ATTACHED-25404,10239,\"At the hospital, someone stands leaning against the worktop in a kitchen area. Someone\",\"At the hospital, someone stands leaning against the worktop in a kitchen area.\",Someone,gold,exhales on a hook and clears it.,does n't acknowledge her.,rests his head in his lap.,\"creeps down from the refrigerator, placing a pencil in a cabinet.\",1\n5358,lsmdc3052_NO_STRINGS_ATTACHED-25404,10243,He's a thick - set old guy with a mustache and a ponytail. Someone,He's a thick - set old guy with a mustache and a ponytail.,Someone,gold,offers a vintage gun.,picks up his bangs and dials.,follows someone's gaze.,looks back and smiles.,3\n5359,lsmdc3052_NO_STRINGS_ATTACHED-25404,10240,Someone looks around at someone as he walks by. Someone,Someone looks around at someone as he walks by.,Someone,gold,\"clenches his jaw, as a bright flash crosses the costumed scene.\",drives along a highway by the ocean with her mom someone beside her.,stands up and stares intently at the patch on the toned ground.,sets bulbs on the table and reads them.,1\n5360,lsmdc0004_Charade-47300,19520,\"People are passing through, their conversation continuing. People\",\"People are passing through, their conversation continuing.\",People,gold,comes back with them.,look through the window at their beautiful mother.,\"walk along onto their horses, pushing each line between their feet.\",\"appear, their conversation continuing.\",3\n5361,lsmdc0004_Charade-47300,19519,Someone regards the devastated table before following. People,Someone regards the devastated table before following.,People,gold,\"studies his aim, then scoops himself up onto the porch and passes someone during the passage.\",\"up with a boom, someone takes two keys and sets them on a table in front of them.\",\"are more snaps in fact as someone stares at the missing daughter, who pulls a swollen hand and shakes a hand at her.\",\"are passing through, their conversation continuing.\",3\n5362,lsmdc0004_Charade-47300,19518,Someone picks up a chicken leg and starts off. Someone,Someone picks up a chicken leg and starts off.,Someone,gold,falls and rubs his wrists.,regards the devastated table before following.,moves forward and rakes over the grass.,turns the ax on the stump.,1\n5363,anetv_Mm-bwu8Q2IU,9328,A man and brown dog are in a fenced off area of an arena with people watching them. The man,A man and brown dog are in a fenced off area of an arena with people watching them.,The man,gold,\"makes certain sport with other people, passes again, also showing other riders behind him while one man helps them.\",ropes the calf and then ties the calf.,lassos and ties the laces.,throws frisbees for the dog to catch.,3\n5364,anetv_Mm-bwu8Q2IU,9330,The man performs special tricks with the dog using the frisbee. The man,The man performs special tricks with the dog using the frisbee.,The man,gold,lifts the dog triumphantly over his head and carries him on his shoulder.,is smoking another cigarette as the smoke rings.,loses and speaks while the man ties the nails with the boot.,performs with the grass while the dog watches him pass sideways.,0\n5365,anetv_Mm-bwu8Q2IU,16074,A man and is dog are seen standing in the middle of a fenced in area performing tricks with frisbees. Many people,A man and is dog are seen standing in the middle of a fenced in area performing tricks with frisbees.,Many people,gold,watch on the sides while the man continues feeding his dog and the dog.,\"pass by other men, one of them catches the frisbee.\",in the background walk after a man holding the leash.,watch on the side as the man performs tricks with the dog using several frisbees.,3\n5366,anetv_Mm-bwu8Q2IU,9329,The man throws frisbees for the dog to catch. The man,The man throws frisbees for the dog to catch.,The man,gold,performs special tricks with the dog using the frisbee.,attacks and throws the frisbee over the playing of the frisbee.,climbs on his back while taking off his hat.,does a cartwheel to show the frisbees.,0\n5367,lsmdc3092_ZOOKEEPER-45392,10272,He heads to the door as Nimer greets the high roller. Someone,He heads to the door as Nimer greets the high roller.,Someone,gold,stands by the door.,stands at a city end.,retreats from the garden and glares at him.,looks up and smiles.,0\n5368,lsmdc3092_ZOOKEEPER-45392,10265,\"Someone faces a floor - to - ceiling window and gazes out at the city. With a dispirited look, he\",Someone faces a floor - to - ceiling window and gazes out at the city.,\"With a dispirited look, he\",gold,releases the camera and heads off.,turns off the tv and sits back down.,looks back the way he came.,trudges out of the living room.,3\n5369,lsmdc3092_ZOOKEEPER-45392,10271,He takes a bite then hurls it against the far wall. Apple chunks,He takes a bite then hurls it against the far wall.,Apple chunks,gold,explode over someone's head.,fly out as the chopped popsicle reapplies its edge.,hurtle out of someone and small branches of a grass.,\"float between him and someone with a canopy, ashen - faced someone.\",0\n5370,lsmdc3092_ZOOKEEPER-45392,10269,\"Stepping closer, Shane rests his stick on his shoulder. He\",\"Stepping closer, Shane rests his stick on his shoulder.\",He,gold,fires a few dirt spiders into his hands.,bounces on the side of the board and starts to climb inside.,exhales and drag out some smoke.,reaches into a pants pocket and withdraws an apple.,3\n5371,lsmdc3092_ZOOKEEPER-45392,10270,He reaches into a pants pocket and withdraws an apple. He,He reaches into a pants pocket and withdraws an apple.,He,gold,looks around and sees his wet clothes.,\"gets out of a car, shakes his head, then collapses into a seat beside the car.\",takes a bite then hurls it against the far wall.,\"lets out a big sigh, climbs off the balcony and walks along the porch.\",2\n5372,lsmdc3092_ZOOKEEPER-45392,10268,\"Someone turns his back to the goateed zookeeper. Stepping closer, Shane\",Someone turns his back to the goateed zookeeper.,\"Stepping closer, Shane\",gold,looks away with a grin.,rests his stick on his shoulder.,gets to his feet.,notices an alien standing behind him.,1\n5373,lsmdc3092_ZOOKEEPER-45392,10266,\"With a dispirited look, he trudges out of the living room. With hopeful eyes, he\",\"With a dispirited look, he trudges out of the living room.\",\"With hopeful eyes, he\",gold,packs away a sketch of flowers.,\"watches, others stop at guards.\",shuts his eyes then shut his eyes.,watches as it slides open.,3\n5374,lsmdc3092_ZOOKEEPER-45392,10267,\"With hopeful eyes, he watches as it slides open. Someone\",\"With hopeful eyes, he watches as it slides open.\",Someone,gold,rubs his fingers with his thumb.,grips the pipe behind a wheel.,turns his back to the goateed zookeeper.,kisses the back of her head.,2\n5375,anetv_0PLaN0hmMDY,8657,\"A person holds a ring in a small box. Then, the man\",A person holds a ring in a small box.,\"Then, the man\",gold,wraps the box with gift paper.,turn and lift their hands up once watching him as they use the picture to go around he house.,hammers around the cylinder in between violently.,opens a crack and pushes contacts with the other.,0\n5376,anetv_0PLaN0hmMDY,8658,\"Then, the man wraps the box with gift paper. After, the man tries to find the end of a scotch tape roll, but he\",\"Then, the man wraps the box with gift paper.\",\"After, the man tries to find the end of a scotch tape roll, but he\",gold,bring it back as well.,folds the top and an wooden patch tree he's fingering.,does n't forget the game.,can not find it.,3\n5377,anetv_0PLaN0hmMDY,8659,\"After, the man tries to find the end of a scotch tape roll, but he can not find it. The man\",\"After, the man tries to find the end of a scotch tape roll, but he can not find it.\",The man,gold,\"laughs a bit, then turns on unison, still signing a game of crunches and incident.\",cuts the excess of paper and put take on the gift.,\"serves the ball to the good time walking into the pool, his na into the mud and trying to lay it down.\",stops walking but knocks the devil out on a sofa.,1\n5378,lsmdc0030_The_Hustler-65001,17210,\"He catches up with someone, taking her by the arm, and stepping out into the street to hail a cab. She\",\"He catches up with someone, taking her by the arm, and stepping out into the street to hail a cab.\",She,gold,gazes out a window.,angrily breaks away from him and walks out into the rain.,turns back at us as people attempt to figure someone.,takes the little guard outside and drags her into the station.,1\n5379,lsmdc0030_The_Hustler-65001,17212,Someone grabs someone and starts to pull her back under the awning. The door opens and the two of them,Someone grabs someone and starts to pull her back under the awning.,The door opens and the two of them,gold,\"enter, thoroughly drenched.\",jump up for her.,work into the swivel chair.,clamber out of the house.,0\n5380,lsmdc0030_The_Hustler-65001,17213,\"The door opens and the two of them enter, thoroughly drenched. She\",\"The door opens and the two of them enter, thoroughly drenched.\",She,gold,gives a short look and walks on.,\"walks to a chair, limping noticeably.\",rises slowly from the chair.,shows her long unshaven legs in her way.,1\n5381,lsmdc0030_The_Hustler-65001,17211,She angrily breaks away from him and walks out into the rain. Someone,She angrily breaks away from him and walks out into the rain.,Someone,gold,comes through the checkered floor outside and stares at the bottom of the stair opening.,comes to work and squishes the windscreen into hauling sacks.,grabs someone and starts to pull her back under the awning.,\"has shoved into his car, and is driven home on the crowded sidewalk.\",2\n5382,lsmdc0030_The_Hustler-65001,17209,\"Someone, having hurriedly paid the bill, follows after her. He\",\"Someone, having hurriedly paid the bill, follows after her.\",He,gold,\"catches up with someone, taking her by the arm, and stepping out into the street to hail a cab.\",has a winter coat and some hat on the wheelbarrow.,runs onto a highway then backs away from a window.,is laying his bag near the ground.,0\n5383,lsmdc0030_The_Hustler-65001,17214,\"She walks to a chair, limping noticeably. He\",\"She walks to a chair, limping noticeably.\",He,gold,\"reaches across and pulls her to him, burying his face in her head.\",takes her hand by hand and starts at someone.,looks from a mirror to little places.,\"places it in front of her eyes, then she turns, and a bright lamp returns, painting her dead fingers.\",0\n5384,lsmdc1039_The_Queen-88089,9863,\"Some chairs, tables, and a barbecue have been set up in a clearing nearby. Someone\",\"Some chairs, tables, and a barbecue have been set up in a clearing nearby.\",Someone,gold,gives the corgis food.,\"takes off the bracelet, such as possible rope, cool down.\",knocks them out and now the general is immediately disturbed by the sound of another of which someone.,\"peers back from the room, catching someone's footprints.\",0\n5385,lsmdc1039_The_Queen-88089,9862,\"Someone strolls through some woods, carrying a lunch box and accompanied by some corgis. Some chairs, tables, and a barbecue\",\"Someone strolls through some woods, carrying a lunch box and accompanied by some corgis.\",\"Some chairs, tables, and a barbecue\",gold,are filled with a small fruit.,is been cut around.,are piled with baskets watching the mercenaries.,have been set up in a clearing nearby.,3\n5386,lsmdc1039_The_Queen-88089,9864,Someone gives the corgis food. The corgis,Someone gives the corgis food.,The corgis,gold,marches up to the cafe.,gestures for him to stop.,look up at her.,are three in wild canoes.,2\n5387,lsmdc3078_THE_WATCH-36556,14307,A girl jumps on their bed. Someone,A girl jumps on their bed.,Someone,gold,rider hangs in the air.,puts her leg on her and catches it.,knocks on a front door.,arrives at a shed in the water.,2\n5388,lsmdc3078_THE_WATCH-36556,14306,Firefighters watch the group head into the wreckage. Someone,Firefighters watch the group head into the wreckage.,Someone,gold,blasts someone's hand.,blows on seagulls from a blow.,turn to face someone.,photographs chelsea and her prom date.,3\n5389,anetv_3Y46yorcd5Q,12054,A large wave crashes in the ocean and a man rides down the face on body board. surfers,A large wave crashes in the ocean and a man rides down the face on body board.,surfers,gold,ride their boats in the water with paddles.,ride waves in the ocean.,go down the river on a river.,pass crashing into each other.,1\n5390,lsmdc0011_Gandhi-52522,12218,\"At last he rises, and the noise and applause increase to something like chaos. In close shot we see other British soldiers watching on the perimeter of the crowd and they\",\"At last he rises, and the noise and applause increase to something like chaos.\",In close shot we see other British soldiers watching on the perimeter of the crowd and they,gold,are in perfect sync of fighting with each other in the sheer measure of a scoring shot.,head to the barricade and begin to fuss about the telegram.,are now made even more wary by the enthusiasm of this greeting.,\"are all in strength, their heads shaking wildly.\",2\n5391,lsmdc0011_Gandhi-52522,12221,Now someone raises a third finger. And the crowd,Now someone raises a third finger.,And the crowd,gold,\"fights, leaving his mind dubiously.\",breaks into stamping and applause.,deadbolt her own scooter.,receive his friends' team too.,1\n5392,lsmdc0011_Gandhi-52522,12217,\"There is applause and noise, but someone does not acknowledge it; she simply sits cross - legged behind someone, who is talking with people. At last he rises, and the noise and applause\",\"There is applause and noise, but someone does not acknowledge it; she simply sits cross - legged behind someone, who is talking with people.\",\"At last he rises, and the noise and applause\",gold,looks out of the corridor.,increase to something like chaos.,comes to the background.,rises from him without taking his eyes off.,1\n5393,lsmdc0011_Gandhi-52522,12229,In the chaos of the Third Class we see someone coming out of a section of the coach. He,In the chaos of the Third Class we see someone coming out of a section of the coach.,He,gold,is carrying a baby wrapped in rags.,takes her by the locket.,leans against a wall and gazes at a ceiling.,has to edge his way off of the lectern.,0\n5394,lsmdc0011_Gandhi-52522,12227,\"Despite the Indian tunic he now wears he can not help but look and act like the incisive, patrician lawyer he is under the skin. As he\",\"Despite the Indian tunic he now wears he can not help but look and act like the incisive, patrician lawyer he is under the skin.\",As he,gold,lays helpless in the floor.,\"spies someone with a sharp graciously of the coin, tears rolls onto his pant knee and falls face down.\",\"passes a box of cards, squares nestling in front of him.\",moves through the crowded platform.,3\n5395,lsmdc0011_Gandhi-52522,12225,\"There is an excited stir; he silences it. As suitcoats, shirts, vests, trousers,\",There is an excited stir; he silences it.,\"As suitcoats, shirts, vests, trousers,\",gold,start running muddy someone.,\"bags, trash, lather men start matronly.\",are flung into a pile.,\"blue isabel, cars, etc.\",2\n5396,lsmdc0011_Gandhi-52522,12228,He reaches for the bags again. In the chaos of the Third Class we,He reaches for the bags again.,In the chaos of the Third Class we,gold,see a pair of welding logos before them.,see the score for chairman.,see the civilian write in their survival book.,see someone coming out of a section of the coach.,3\n5397,lsmdc0011_Gandhi-52522,12219,\"We intercut with the crowd, listening raptly. Someone\",\"We intercut with the crowd, listening raptly.\",Someone,gold,\"tosses someone into a building, then turns upside down.\",\"is in a podium, first.\",holds up one finger.,is still to his instrument.,2\n5398,lsmdc0011_Gandhi-52522,12223,\"Someone lets it run for a time, then stills it with the one small gesture as before. This\",\"Someone lets it run for a time, then stills it with the one small gesture as before.\",This,gold,has sobered the audience somewhat.,\"bends as he releases some puzzle, in the heart, it sits back to someone.\",struggles close to the rack of someone's stuff.,jump over and lie on the pavement as the cup end.,0\n5399,lsmdc0011_Gandhi-52522,12224,This has sobered the audience somewhat. Now he,This has sobered the audience somewhat.,Now he,gold,\"tosses her out of the bath, trying to stay awake.\",moans on the floor from the tent.,sits alone wearing a tabby mouse and talking.,looks out across them as though seeking something.,3\n5400,lsmdc0011_Gandhi-52522,12216,\"It is the end of her speech and she makes the pranam and turns away. There is applause and noise, but someone does not acknowledge it; she simply\",It is the end of her speech and she makes the pranam and turns away.,\"There is applause and noise, but someone does not acknowledge it; she simply\",gold,does n't hear what she is saying.,shakes her head disapprovingly and smiles about her as she holds one finger to her mouth.,\"shakes it, softly chats across the street, at the events of a world.\",\"sits cross - legged behind someone, who is talking with people.\",3\n5401,lsmdc0011_Gandhi-52522,12230,He is carrying a baby wrapped in rags. The child's mother with two little ones hanging on her,He is carrying a baby wrapped in rags.,The child's mother with two little ones hanging on her,gold,stick stand waiting around the car.,trolley with tree limbs sitting.,has followed him out.,prevents a cold gesture.,2\n5402,lsmdc0011_Gandhi-52522,12220,\"Neither of these goals is easy, and the audience reaction shows it. Now someone\",\"Neither of these goals is easy, and the audience reaction shows it.\",Now someone,gold,uses the phone from the motel office.,sees someone's response to the angle of the sun.,bends so two men dance round the girl's waist.,raises a third finger.,3\n5403,anetv_-vPshfXc1fc,17345,A man is welding a circular metal piece. A green light,A man is welding a circular metal piece.,A green light,gold,appears out of no where.,shines from the light.,is in front of the van.,\"glows inside the glass, smashing through it.\",0\n5404,anetv_5fW_2c_kKfc,13120,A group of girls stand around a large gym with a volleyball net in the middle and begin playing. One,A group of girls stand around a large gym with a volleyball net in the middle and begin playing.,One,gold,of them play the hockey against her.,hit the ball back and forth to the ball.,swings the ball back to the other side and push the ball back and fourth.,person stands on top of the court in a large classroom holding sticks and doing various tennis goals.,2\n5405,anetv_5fW_2c_kKfc,13121,One swings the ball back to the other side and push the ball back and fourth. The girls,One swings the ball back to the other side and push the ball back and fourth.,The girls,gold,\"go, trying to hit the shuffleboard back followed by a person and a blow other player.\",take the ball tape into a dune and continue playing the game.,continue playing volleyball and cheer in the end when one side wins.,continue playing with one another and end with one another.,2\n5406,anetv_5fW_2c_kKfc,6113,One girl bounces a ball and leads into a game of volleyball. The girls,One girl bounces a ball and leads into a game of volleyball.,The girls,gold,continue to play and ends with the team coaches up behind the first girl.,continue dancing with one another while spinning and laughing to one another.,continue to play with one another as the camera pans around and watches their movements.,continue spinning and jumping into the pool while the camera zooms in.,2\n5407,anetv_5fW_2c_kKfc,6112,A large group of girls are seen standing around and speaking to one another. One girl,A large group of girls are seen standing around and speaking to one another.,One girl,gold,speaks to the camera and continues playing.,pans her around the table and leads into her standing at the end.,attempts to grab a ball while speaking to one another.,bounces a ball and leads into a game of volleyball.,3\n5408,anetv_yX_DJiboktI,4163,We see two women performing a baton twirling routine in a gym. One lady,We see two women performing a baton twirling routine in a gym.,One lady,gold,does a handstand and swings his legs the dance floor.,does a handstand the other holds her legs.,shakes her hands and spins her as well as catching the twirl.,glides their feet to a beam and squats down.,1\n5409,anetv_yX_DJiboktI,4167,One lady has both baton. They,One lady has both baton.,They,gold,throw the batons in the sky and twirl.,shows the other leg she was holding.,fly dancing are in all area and she is hitting the target and occasionally practicing a action but.,\"in the body of flips and she plays, she seems quite an alcoholic sour.\",0\n5410,anetv_yX_DJiboktI,4164,One lady does a handstand the other holds her legs. They,One lady does a handstand the other holds her legs.,They,gold,closing her mouth plays softball.,twirl the batons high in the sky.,continue playing until one throws her baton on the ground.,lady then leaps over to give a 360 before going into the edge of a horse to prepare the batons.,1\n5411,anetv_yX_DJiboktI,4162,We see a dark opening screen. We,We see a dark opening screen.,We,gold,see two women performing a baton twirling routine in a gym.,see a person playing tennis in a field with a lot of people watching.,see the title words a white screen.,see a man hanging up a tree in a yard.,0\n5412,anetv_yX_DJiboktI,4165,They twirl the batons high in the sky. A person,They twirl the batons high in the sky.,A person,gold,dances the girls off her knees.,captures the back of two attendant.,throws a ball on the prince's right.,walks in front of the camera.,3\n5413,anetv_yX_DJiboktI,16244,Two women are seen holding a pose in the middle of a gym. They,Two women are seen holding a pose in the middle of a gym.,They,gold,begin performing a routine using batons and others watching on the side.,continues to play straight the camera while the camera captures their movements.,stand and watch from the angles.,move around the stage and perform a dance routine while spinning around and stretching.,0\n5414,anetv_yX_DJiboktI,16245,They begin performing a routine using batons and others watching on the side. The girls,They begin performing a routine using batons and others watching on the side.,The girls,gold,begin performing the routine with one another performing several tricks with the stick and ends with them walking in the middle.,continue dancing together with the batons and end by holding a pose.,continue to dance while dancing and jumps and performs several flips jumping rope routine in the air.,complete their routine as their routine resumes dancing moves with the queue.,1\n5415,anetv_sY31L_r7dsk,16805,A man dumps something black onto his food out of a bowl. He,A man dumps something black onto his food out of a bowl.,He,gold,holds out his hands and walks up.,comes up and shares with a basket of food and food.,then raises a second bag and sets it on the screen of the table.,begins to stir the food with a fork and a spoon.,3\n5416,anetv_sY31L_r7dsk,1786,A person pours dressing into a bowl. They,A person pours dressing into a bowl.,They,gold,stir the food in the bowl on the table.,change ingredients in a bucket.,put the dough into a small bowl.,hold the dough in cream and dip them in a cup.,0\n5417,anetv_sY31L_r7dsk,1785,A person sets a plate onto a table. A person,A person sets a plate onto a table.,A person,gold,pours dressing into a bowl.,puts something on the pumpkin.,puts water on a pot.,pours one into a pan with oil.,0\n5418,anetv_IlCsGkFnRkc,11865,The people begin to add ornments to the Christmas tree. A boy,The people begin to add ornments to the Christmas tree.,A boy,gold,approaches to talk about how to make a castle.,shows credits to eat.,pops bubble wrap on the floor.,takes the note from someone.,2\n5419,anetv_IlCsGkFnRkc,11867,A boy rides around on a toy. A kid,A boy rides around on a toy.,A kid,gold,lays under the tree putting things on it.,watches with monkey bars on his hands as others watch on the side.,walks with a hanging rope frame.,holds onto the sand planks up and looks at the groups.,0\n5420,anetv_IlCsGkFnRkc,13451,Kids and adults are running around a room. They,Kids and adults are running around a room.,They,gold,are putting decorations on a christmas tree.,get to their feet.,start putting something on with a long towel.,are on chairs raise his hands and feet around.,0\n5421,anetv_IlCsGkFnRkc,13452,They are putting decorations on a christmas tree. They,They are putting decorations on a christmas tree.,They,gold,use a christmas tree in a park.,put up ornaments on the tree.,hang lights and then the ornaments.,pick up a small star and face flowers on the tree.,2\n5422,anetv_IlCsGkFnRkc,11869,The lady and a boy arrange the angel on top of the tree. The lady,The lady and a boy arrange the angel on top of the tree.,The lady,gold,uses some decorations in the tree.,sets up a display table near the tree.,shakes branches back on the paper.,paints a yellow tree with sparkles.,1\n5423,anetv_IlCsGkFnRkc,11866,A boy pops bubble wrap on the floor. A boy,A boy pops bubble wrap on the floor.,A boy,gold,smooths the paper over and pins it against a tile.,rides around on a toy.,takes a swing and swings an ax.,takes the shower and faces a dog standing on a hose.,1\n5424,anetv_IlCsGkFnRkc,11868,A kid lays under the tree putting things on it. The lady and a boy,A kid lays under the tree putting things on it.,The lady and a boy,gold,arrange the angel on top of the tree.,use the cloth to put the tree down.,hold pumpkins with cigarette sticks.,walk to the sidewalk and lay paper down on the grass.,0\n5425,anetv_RgeVltfPDXQ,14365,The boy breaks the pinata open and candy spills on the ground. A woman,The boy breaks the pinata open and candy spills on the ground.,A woman,gold,\"is showing him how to walk, stopping on a rope.\",throws a frisbee for the camera during a complete time.,punch two pins on the blindfolded man shoots the girl on the stick and the pinata falls on the wood floor.,runs up and adjusts the pinata.,3\n5426,anetv_RgeVltfPDXQ,14364,Children swings a broom handle at a pinata in a backyard. The boy,Children swings a broom handle at a pinata in a backyard.,The boy,gold,sits on his lap.,breaks up the pinata and attempts to hold him up.,breaks the pinata open and candy spills on the ground.,ducks out of sight.,2\n5427,anetv_RgeVltfPDXQ,14367,A woman runs up to get the broom stick but dodges to not get hit by the blindfolded child. The woman,A woman runs up to get the broom stick but dodges to not get hit by the blindfolded child.,The woman,gold,knocked the back up and is spun around.,hit the floor by jumping off against a log on the left left.,washes some try to catch them and then gets back back on.,guides the boy up who is blindfolded toward the tree.,3\n5428,anetv_RgeVltfPDXQ,14366,A woman runs up and adjusts the pinata. A woman,A woman runs up and adjusts the pinata.,A woman,gold,hits a wood ball on the ground.,runs a skateboard around the tail.,hits the ball in a grass bat.,runs up to get the broom stick but dodges to not get hit by the blindfolded child.,3\n5429,anetv_IcDadC2tw5c,3356,A person in dark clothing blows leaves on a piece of property in front of two open garage doors. Another person,A person in dark clothing blows leaves on a piece of property in front of two open garage doors.,Another person,gold,uses a large brush to clean the bottom of the table and then shine the furniture exterior.,moves with the camera as they watch from a window in an elevated room against a white window sill.,is seen walking in to wooden places and leads into a man wearing a yellow shirt and a hat.,is seen hammering down the wall with two girls in frame.,1\n5430,anetv_IcDadC2tw5c,3355,A person watches another person using a leaf blower in a yard from an elevated window. A person in dark clothing,A person watches another person using a leaf blower in a yard from an elevated window.,A person in dark clothing,gold,continues to walk across the lawn while still pointing and riding and laying in the tree.,blows on a water hookah.,blows leaves on a piece of property in front of two open garage doors.,pulls the snow's claws over the bare shingles.,2\n5431,anetv_IcDadC2tw5c,3357,Another person moves with the camera as they watch from a window in an elevated room against a white window sill. The person blowing the leaves,Another person moves with the camera as they watch from a window in an elevated room against a white window sill.,The person blowing the leaves,gold,cranes his head paws around and neck.,quickly into the pelted.,to reveal the shape dipping in.,moves around the yard and continues to do lawn maintenance.,3\n5432,lsmdc3080_THIS_MEANS_WAR-37019,3155,The rugged brother slams someone against the chopper. But someone,The rugged brother slams someone against the chopper.,But someone,gold,keeps toting his ax holster.,turns his face with the broken spear.,clings to a web.,blocks his strikes and punches him in the face.,3\n5433,lsmdc3080_THIS_MEANS_WAR-37019,3157,\"Someone catches himself on the roof's edge as he tumbles off. Someone, his older brother\",Someone catches himself on the roof's edge as he tumbles off.,\"Someone, his older brother\",gold,breezes out of her kitchen and up to someone.,sets a gas cap on a bench.,\", peers through the windows to the off level.\",hands him a gun then leaps off the building.,3\n5434,lsmdc3080_THIS_MEANS_WAR-37019,3166,\"The vehicle careens into another car. As someone climbs back onto the helipad, someone\",The vehicle careens into another car.,\"As someone climbs back onto the helipad, someone\",gold,stares down at the destruction.,\"has disappeared from the roof, towards the lake.\",sees a van with the rear driver.,heads over to a parked waiting car.,0\n5435,lsmdc3080_THIS_MEANS_WAR-37019,3153,\"Leaping in from the opposite side, someone swings from the door and kicks someone back. The briefcase of money\",\"Leaping in from the opposite side, someone swings from the door and kicks someone back.\",The briefcase of money,gold,opens as it hits the ground.,stops in the back seat.,is being caught by someone.,is broken in the breast pocket.,0\n5436,lsmdc3080_THIS_MEANS_WAR-37019,3147,\"Using the captured guard as a shield, someone advances. As enemy fire, takes his captive out, someone\",\"Using the captured guard as a shield, someone advances.\",\"As enemy fire, takes his captive out, someone\",gold,blows another goblin's wand.,darts wildly through someone's lair.,dives behind the fallen body and shoots.,blasts the surface of his spear with armed mallet and feet.,2\n5437,lsmdc3080_THIS_MEANS_WAR-37019,3159,\"Leaping onto the helipad, someone shoots a bald guard. Someone\",\"Leaping onto the helipad, someone shoots a bald guard.\",Someone,gold,aims the gun at someone.,peers at a building surrounds an ominous clock.,hugs the stubby man.,peers in from the train.,0\n5438,lsmdc3080_THIS_MEANS_WAR-37019,3168,\"The rugged someone finds the patch of fabric torn from someone's suit, still in his brother's clinched hand. He\",\"The rugged someone finds the patch of fabric torn from someone's suit, still in his brother's clinched hand.\",He,gold,\"stares down to the sleeping kids, then shifts his woeful gaze.\",positions at his window and faces his father who slowly raises his hand.,takes it then lifts his gaze to the helipad.,smiles towards the crowd.,2\n5439,lsmdc3080_THIS_MEANS_WAR-37019,3164,\"Someone grabs someone's sleeve for balance but it rips and he plummets off the roof. Drifting to the ground, the older brother\",Someone grabs someone's sleeve for balance but it rips and he plummets off the roof.,\"Drifting to the ground, the older brother\",gold,offers a bloody grins.,watches someone crash into a car on the street below.,\"picks up a ax, then attaches it to his post.\",reaches his own office.,1\n5440,lsmdc3080_THIS_MEANS_WAR-37019,3167,\"As someone climbs back onto the helipad, someone stares down at the destruction. He\",\"As someone climbs back onto the helipad, someone stares down at the destruction.\",He,gold,puts his hands on someone's stomach.,glances up at the skyscraper then moves to someone's body which lies sprawled on the car's crushed roof.,\"lifts someone in his arms, then seizes him roughly.\",\"misses another car and gets, followed by someone, who also fires sixty - three.\",1\n5441,lsmdc3080_THIS_MEANS_WAR-37019,3161,\"A dark - haired guard attacks someone who blocks him then knees him. Winding up, he\",A dark - haired guard attacks someone who blocks him then knees him.,\"Winding up, he\",gold,punches the guy out.,swings and flips tire up.,scrambles over his head.,jumps into a gray plastic room.,0\n5442,lsmdc3080_THIS_MEANS_WAR-37019,3150,\"He slides on his knees into a guard, knocking him over. Someone\",\"He slides on his knees into a guard, knocking him over.\",Someone,gold,enters from the rising.,shoots three guards as he runs to the helipad.,\"aims a rifle hard at himself, thuds into his chest.\",emerges behind a high wall and stares at a man standing in the mirror.,1\n5443,lsmdc3080_THIS_MEANS_WAR-37019,3162,\"Winding up, he punches the guy out. He\",\"Winding up, he punches the guy out.\",He,gold,\"nuzzles a hair, over the backseat.\",grabs someone who drops the case with the device over the roof.,lands in a flurry of flaming mess.,fights off the hobbit and talks to himself.,1\n5444,lsmdc3080_THIS_MEANS_WAR-37019,3152,\"At the chopper, someone passes his brother a backpack. Leaping in from the opposite side, someone\",\"At the chopper, someone passes his brother a backpack.\",\"Leaping in from the opposite side, someone\",gold,draws a sharp breath and lets go of someone's drag.,grabs the folded stick.,swings from the door and kicks someone back.,flings the narrow little boy into a parka.,2\n5445,lsmdc3080_THIS_MEANS_WAR-37019,3151,\"Someone shoots three guards as he runs to the helipad. At the chopper, someone\",Someone shoots three guards as he runs to the helipad.,\"At the chopper, someone\",gold,passes his brother a backpack.,watches from a below deck and leslie.,reaches up the wood as he ascends a spiral staircase.,drops the video screen.,0\n5446,lsmdc3080_THIS_MEANS_WAR-37019,3165,\"Drifting to the ground, the older brother watches someone crash into a car on the street below. The vehicle\",\"Drifting to the ground, the older brother watches someone crash into a car on the street below.\",The vehicle,gold,moves in the tunnel.,starts off in the diner.,careens into another car.,crashes up over the side.,2\n5447,lsmdc3080_THIS_MEANS_WAR-37019,3158,\"Someone, his older brother hands him a gun then leaps off the building. Leaping onto the helipad, someone\",\"Someone, his older brother hands him a gun then leaps off the building.\",\"Leaping onto the helipad, someone\",gold,shoots a bald guard.,pulls someone into a sprint.,dodges a web and tries to pull himself off.,glances away as the destroyer lands and falls.,0\n5448,lsmdc3080_THIS_MEANS_WAR-37019,3163,Someone snatches someone's backpack. Someone grabs someone's sleeve for balance but it rips and he,Someone snatches someone's backpack.,Someone grabs someone's sleeve for balance but it rips and he,gold,\"stands there, looking closer to the man.\",lands on his feet.,plummets off the roof.,spins up to his feet.,2\n5449,lsmdc3080_THIS_MEANS_WAR-37019,3170,An aerial view shows him moving away from the crash as bystander's crowd closer. Someone and someone,An aerial view shows him moving away from the crash as bystander's crowd closer.,Someone and someone,gold,suddenly dive away from the titanic.,watch from the helipad.,run to the end of the water digging ahead.,run beside the wrecked in the volvo outside.,1\n5450,lsmdc3080_THIS_MEANS_WAR-37019,3156,\"As someone throws someone down, the older brother kicks him. Someone\",\"As someone throws someone down, the older brother kicks him.\",Someone,gold,\"other people turn, slams him back into the trunk, and removes his chair hard to a tree.\",\"threatens him, flings him down the garbage to make a path.\",catches himself on the roof's edge as he tumbles off.,lays the boys back in position in the yard and slams someone to the ground.,2\n5451,lsmdc3080_THIS_MEANS_WAR-37019,3146,\"Heading toward glass doors onto the helipad, the rugged brother spots someone's reflection. He\",\"Heading toward glass doors onto the helipad, the rugged brother spots someone's reflection.\",He,gold,turns and shoots into the air.,passes a pink - bob man outside.,reacts to the mention of the sinking bowing.,\"twinkie cover his embarrassment, and shakes his iron hand in french.\",0\n5452,anetv_osaJxzwVt6Q,8394,Kid is standing in front of stage playing congas. behind him,Kid is standing in front of stage playing congas.,behind him,gold,is a girl playing the tambourine and a boy playing the triangle.,is a jazz video of the boy man in a bowling and holds a ball.,is someone in another room while cars walk.,are people in the back and snowboards.,0\n5453,anetv_YJxqF6aSs7s,12592,A man is holding a camera as he stands talking beside a lake. He,A man is holding a camera as he stands talking beside a lake.,He,gold,\"touches the dart board repeatedly and steps toward the screen, doing the steps backwards.\",lets go of a rope and begins to climb up on it.,\"goes through tunnels, walks along bridges, and stands over cliffs.\",has skis in a small canoe.,2\n5454,anetv_YJxqF6aSs7s,12593,\"He goes through tunnels, walks along bridges, and stands over cliffs. He\",\"He goes through tunnels, walks along bridges, and stands over cliffs.\",He,gold,sea lies quietly near his feet.,drives down a road and records rafting on a white water river.,\"blows one man up, and the pilots continue to pass the clients.\",\"circles the top of a plane that he has used in his cruises, playing along with a crash.\",1\n5455,anetv_YJxqF6aSs7s,12594,He drives down a road and records rafting on a white water river. People,He drives down a road and records rafting on a white water river.,People,gold,are riding from the pond through another.,sit on intertubes as a mountain also.,stay there while rollerblading.,are shown diving into deep waters off of cliffs before rafting again.,3\n5456,anetv_yRup8RDsCzk,3656,Two men are doing martial arts with others around them watching. Many other men,Two men are doing martial arts with others around them watching.,Many other men,gold,play volleyball back and fourth across the room.,are playing on the side with their legs and legs in front of them.,fall off the pipe and walk into a cameraman watching them.,are shown doing several flips and tricks around each other.,3\n5457,anetv_yRup8RDsCzk,3657,Many other men are shown doing several flips and tricks around each other. Two men,Many other men are shown doing several flips and tricks around each other.,Two men,gold,flip near each other while others around them watch.,are then shown doing different tricks and demonstrating with scuba owners.,perform zumba video on the beam and the gymnasts cheer behind them.,are doing various tricks with one another followed by more people riding along the side.,0\n5458,lsmdc1047_Defiance-91624,13138,\"Someone takes a glug of the confiscated vodka, and goes to meet her. Someone\",\"Someone takes a glug of the confiscated vodka, and goes to meet her.\",Someone,gold,smiles and lowers her eyes.,stands and glares out at her.,goes to answer the telephone.,\"looks uneasy, trying to answer it.\",0\n5459,lsmdc0027_The_Big_Lebowski-62784,9062,Someone gropes back in the toilet with one hand. Someone's hand,Someone gropes back in the toilet with one hand.,Someone's hand,gold,moves to the water surface for cover.,falls out of someone's grasp.,comes out of the toilet bowl with his sunglasses.,slides down the side of the sketch.,2\n5460,lsmdc0027_The_Big_Lebowski-62784,9064,The blond man drops the ball which pulverizes more tile. The two men,The blond man drops the ball which pulverizes more tile.,The two men,gold,look at each other.,grab each other and compete into a winning soccer match.,hit the ball and then they climb on the ground and jump with it.,grab each other and toss it backwards.,0\n5461,lsmdc0027_The_Big_Lebowski-62784,9065,The two men look at each other. Someone,The two men look at each other.,Someone,gold,struggles to act casual.,walks up to her.,\"lazily glares at the other agent, who regards him squarely.\",pulls his sunglasses down his nose with one finger and peeks over them.,3\n5462,lsmdc0027_The_Big_Lebowski-63067,5147,\"He tips forward, spilling his drink off the table. He\",\"He tips forward, spilling his drink off the table.\",He,gold,\"lands in a round puddle of blood at the hall to the floor, can we get to someone's height.\",\"squints at someone, who swims in and out of focus.\",looks into someone's face.,takes off his hat and walks off.,1\n5463,lsmdc0027_The_Big_Lebowski-63067,5146,\"He is joined on either side by someone and the blond man, all three men looking grimly down at someone. He\",\"He is joined on either side by someone and the blond man, all three men looking grimly down at someone.\",He,gold,\"tips forward, spilling his drink off the table.\",\"does not look up at them when he is truly angry, and bumps someone's sudden strength.\",\"grins as she turns around among piles of comic books, leaves and passes it all outfitted, it appears at people's.\",is being interviewed by a waiter.,0\n5464,lsmdc0027_The_Big_Lebowski-63067,5145,\"He is getting to his feet, but sways woozily. He\",\"He is getting to his feet, but sways woozily.\",He,gold,wears an aerial demeanor.,\"is joined on either side by someone and the blond man, all three men looking grimly down at someone.\",sags with his hand near the tail.,stands at his other and watches as he walks in and out of frame.,1\n5465,anetv_xeFS0RuvVGA,15126,\"A group of boys play catch in an outdoor pool with a yellow ball, throwing the ball to each other and and then throwing the ball out of the pool to an unseen party. The ball is thrown back into the pool and the boys\",\"A group of boys play catch in an outdoor pool with a yellow ball, throwing the ball to each other and and then throwing the ball out of the pool to an unseen party.\",The ball is thrown back into the pool and the boys,gold,proceed to throw it back out again.,swim facing another in another game of hop scotch.,stand by the side and throw the ball as a runner comes into the field.,run along and catch the puck once more.,0\n5466,anetv_xcSWHI3K0KA,13882,He throws it as hard as he can. We,He throws it as hard as he can.,We,gold,\", turns the mike on as he walks out of the parlor.\",see him throw again in slow motion.,has stopped in place where the car has parked and takes out the long rope.,\"violently, a tube of light comes down in a curly - haired mannequin.\",1\n5467,anetv_xcSWHI3K0KA,13881,A man is running on a track with a javelin. He,A man is running on a track with a javelin.,He,gold,then runs past him and pulls himself up in the air.,practices for fells on the field.,high jump gymnastics demonstrations are shown as the surfers jump up and down.,throws it as hard as he can.,3\n5468,anetv_7vECSCWxbDk,5234,A man plugs a cable into his guitar. He,A man plugs a cable into his guitar.,He,gold,stops and claps his hand.,pulls himself up and puts on its owners.,stops showing off his boxers.,begins playing the guitar.,3\n5469,anetv_7vECSCWxbDk,5235,He begins playing the guitar. He,He begins playing the guitar.,He,gold,is playing a guitar on his back.,stops playing his violin.,looks up and speaks.,moves it back and forth as he continues to play the accordian.,2\n5470,anetv_7vECSCWxbDk,5237,He goes back to playing his guitar. He,He goes back to playing his guitar.,He,gold,stops turning a harmonica in his hands and speaks to the camera.,looks up again and speaks as he makes hand gestures.,commands from different game.,then stands and talks to the camera.,1\n5471,anetv_7vECSCWxbDk,5236,He looks up and speaks. He,He looks up and speaks.,He,gold,rotates his spinning webs.,goes back to playing his guitar.,reports a long book.,\"looks down, pats someone on the shoulder, turns back off the tv and climbs on from the lifeboat.\",1\n5472,anetv_7vECSCWxbDk,5239,He begins playing his guitar again. He,He begins playing his guitar again.,He,gold,glides his finger along his guitar.,continues to play the game.,continues playing the saxophone.,bends down and starts playing the bagpipes.,0\n5473,anetv_7vECSCWxbDk,5238,He looks up again and speaks as he makes hand gestures. He,He looks up again and speaks as he makes hand gestures.,He,gold,begins playing his guitar again.,\"takes the time with someone, then looks at the camera.\",passes over his shoulder to prevent him from tying the other.,\"continues talking again, at the same time.\",0\n5474,lsmdc1059_The_devil_wears_prada-98938,17435,\"Someone looks over at someone incredulously. Up on the podium, someone\",Someone looks over at someone incredulously.,\"Up on the podium, someone\",gold,kisses someone's father shoulder.,smiles and applauds someone as someone eyes her coolly.,lays on the ice and watches.,returns to his associate.,1\n5475,lsmdc1059_The_devil_wears_prada-98938,17438,The car drives off down the chic Parisian street. Someone,The car drives off down the chic Parisian street.,Someone,gold,\"enters the street, joking about, leaving the uniformed police appropriate in a position across the front of the car.\",enters a gaudy chamber and a crowd is heard in the side.,heads past a rental room.,stares out of the window.,3\n5476,lsmdc1059_The_devil_wears_prada-98938,17437,\"Someone fidgets in his seat. Later, someone\",Someone fidgets in his seat.,\"Later, someone\",gold,\"lies curled up in a bed, applying makeup to her belly.\",jogs up behind an approaching work bus.,jogs for an exit.,\"gets into the back of a smart, black executive car, which is parked outside the venue.\",3\n5477,anetv_Tc8L-74Ilck,14439,A man is seen standing at the bottom of a hole while a man records him. Two men,A man is seen standing at the bottom of a hole while a man records him.,Two men,gold,are seen shooting a target and speaking to one another as well as motion action figures.,are seen playing squash on an indoor soccer court.,shown sitting on the ice and brushing the ice off of the objects.,are seen climbing along the hill and looking up to the camera.,3\n5478,anetv_ZeBrPKBGb_k,13986,Several clips are shown of people riding around on mountain bikes on a track. The camera,Several clips are shown of people riding around on mountain bikes on a track.,The camera,gold,captures several lines of scenery of the people.,follows the group riding around the track while others stand on the side.,pans around the area and leads into kids riding down a ramp.,continues to show more shots of people walking down the road.,1\n5479,anetv_ZeBrPKBGb_k,13905,A black background with text appears multiple times while cutting out periodically to show bike riders taking small jumps. The camera,A black background with text appears multiple times while cutting out periodically to show bike riders taking small jumps.,The camera,gold,cuts to multiple scenes of various riders taking small jumps.,shows a rest of a routine and demonstrates the proper way to move in acrobatic aspects.,zooms in with an advertisement.,is in front of the racing sections and stops.,0\n5480,anetv_ZeBrPKBGb_k,13906,The camera cuts to multiple scenes of various riders taking small jumps. On one jump in particular the camera,The camera cuts to multiple scenes of various riders taking small jumps.,On one jump in particular the camera,gold,\"flashes to a large screen, title and words on awarded steams soprano.\",does the same and the video ends with the closing credits shown on the screen.,\"keeps going, several more involved in the game.\",slows down a jump where a rider almost hits another but the collision is avoided.,3\n5481,lsmdc3064_SPARKLE_2012-3813,7955,He smiles and turns back around. someone,He smiles and turns back around.,someone,gold,follows someone's mom through someone.,\"stands for a moment, then steps forward.\",\"stands and spreads her coat's lapel, creating a screen behind which someone can change.\",\"climbs up, pushing her way down into the suv.\",2\n5482,lsmdc3064_SPARKLE_2012-3813,7954,Someone removes her jacket and sees a man leering at her. He,Someone removes her jacket and sees a man leering at her.,He,gold,bends to grab her.,rests her hand on someone's shoulder.,smiles and turns back around.,faces the thugs with astonishment.,2\n5483,lsmdc3064_SPARKLE_2012-3813,7956,\"Gazing out the window, she smiles at the Filmore marquee which reads. The image\",\"Gazing out the window, she smiles at the Filmore marquee which reads.\",The image,gold,rolls over in the side.,fades to colorful blurry lights.,shows one of hills and bushes before dismounting.,flips from tambourine over the slices.,1\n5484,lsmdc3064_SPARKLE_2012-3813,7959,\"Now they tiptoe up a square spiral staircase in the dark. At the top, the woman in pink hesitates, then\",Now they tiptoe up a square spiral staircase in the dark.,\"At the top, the woman in pink hesitates, then\",gold,walks through the open door into a dim room.,leads them down the hallway and into a bedroom.,notices a framed picture of the brunette.,motions for her to move through frame.,1\n5485,lsmdc3064_SPARKLE_2012-3813,7960,The hallway light suddenly comes on. The woman,The hallway light suddenly comes on.,The woman,gold,stands in back door with the envelope.,enters and flicks the light switch on.,becomes aware of the tool.,pushes her trainers down the stairs.,1\n5486,lsmdc3064_SPARKLE_2012-3813,7964,She smacks someone's forehead. The packed congregation,She smacks someone's forehead.,The packed congregation,gold,sits before the reverend in the pulpit.,carries a letter bundle.,watches their wives in grainy glee.,make their way toward the enormous rocks.,0\n5487,lsmdc3064_SPARKLE_2012-3813,7967,The old woman sits back. Someone,The old woman sits back.,Someone,gold,regards him with a stricken gaze.,nods to two officers in the corridor.,rolls his neck and sits up straight.,gives a news news stare.,2\n5488,lsmdc3064_SPARKLE_2012-3813,7965,The packed congregation sits before the reverend in the pulpit. The three sisters,The packed congregation sits before the reverend in the pulpit.,The three sisters,gold,talk while seated at their table.,sit among the choir.,continue from the porch.,are on the sofa facing each other.,1\n5489,lsmdc3064_SPARKLE_2012-3813,7966,\"The three sisters sit among the choir. In a pew, the manager\",The three sisters sit among the choir.,\"In a pew, the manager\",gold,admires someone's trendy father mirror.,alongside the beer taps open and the camera stays behind.,sits with a stubble - faced man.,sees someone watching the tv.,2\n5490,lsmdc3064_SPARKLE_2012-3813,7958,Someone carefully closes the door and hurries after them. Now they,Someone carefully closes the door and hurries after them.,Now they,gold,\"enter the amusement twilight, sharing a warm glow then go around one corner of the living room.\",enter the elevator on the opposite side of the house.,tiptoe up a square spiral staircase in the dark.,reach a door to a street where they get to their feet.,2\n5491,lsmdc3064_SPARKLE_2012-3813,7957,The image fades to colorful blurry lights. Now the sisters,The image fades to colorful blurry lights.,Now the sisters,gold,reach a sign and someone joins them across the hall to find someone stately softly in a cage.,\"hurry up a quiet suburban driveway past a white sedan, and approach a side entrance.\",chandeliers a shaft of sunlight from a rocky hillside.,fill with little drawings.,1\n5492,anetv_dygVFom6V5c,15932,\"A man is shown posing with several people, going to a field to play paintball. The people\",\"A man is shown posing with several people, going to a field to play paintball.\",The people,gold,\"gear up and hide behind obstacles, shooting at one another.\",continue to ride around as well as looking at the camera and showing the tango movements.,hit the ball back and forth passing the ball trying to hit the ball at the end.,in green also begin to compete along the man in black skates.,0\n5493,anetv_dygVFom6V5c,15931,\"Two women are riding on the back of a four wheeler, and waving. A man\",\"Two women are riding on the back of a four wheeler, and waving.\",A man,gold,\"is shown posing with several people, going to a field to play paintball.\",removes pendant glasses and takes other's eye.,is then seen chasing a ball and screaming through the air and climbing into the pit and end by spinning and spinning.,is shown weaving in a blue kayak.,0\n5494,lsmdc1055_Marley_and_me-96412,6689,\"Dog stops, turns and looks at her, then bounds happily back. Marley\",\"Dog stops, turns and looks at her, then bounds happily back.\",Marley,gold,\"night, someone rides past a penguin in the doorway.\",depicts a chef with a graceful comb with the egg.,\"knocks the trainer over and starts humping her leg, as people rush to help.\",is there that he is wondering what she means.,2\n5495,lsmdc1055_Marley_and_me-96412,6688,He sprints away and the trainer reaches for a whistle. Dog,He sprints away and the trainer reaches for a whistle.,Dog,gold,is holding a pen.,lifts his hands.,\"runs backward, then finds himself away from her and a thug hits the course with a crowbar.\",\"stops, turns and looks at her, then bounds happily back.\",3\n5496,lsmdc1055_Marley_and_me-96412,6687,She walks off with arrogant confidence. He sprints away and the trainer,She walks off with arrogant confidence.,He sprints away and the trainer,gold,steps forward in her pants.,reaches for a whistle.,follows her from view.,climbs as he runs.,1\n5497,anetv_RQwgREUcreI,6186,A woman holding a doll undoes curlers from the dolls hair. The woman,A woman holding a doll undoes curlers from the dolls hair.,The woman,gold,continues drying the hair using a razor.,is bandaging the turban very gently.,shoes off the dolls hair.,is cutting the hair with a bouquet of red hair.,2\n5498,anetv_RQwgREUcreI,6188,The woman turns the doll around to show off the back of the dolls head. The woman,The woman turns the doll around to show off the back of the dolls head.,The woman,gold,presents a large pie to the dog.,continues to show off the dolls hair.,continues wrapping and shows her men.,\"shakes her head skyward, smiling up.\",1\n5499,anetv_RQwgREUcreI,6187,The woman shoes off the dolls hair. The woman,The woman shoes off the dolls hair.,The woman,gold,gives tutorial on where to look back from work on cleaning product.,falls after a heavy on the table.,takes notes and adjusts the wheel she ties the shoe on.,turns the doll around to show off the back of the dolls head.,3\n5500,anetv_QYU2srH753Q,13089,A person cracks their hands. Birds,A person cracks their hands.,Birds,gold,take cover as it sails above the sea.,return to the dance with each other on the phone.,flock the sky above the dirt track.,blazes off in the sky above one more of the person who jumped freestyle.,2\n5501,anetv_QYU2srH753Q,13094,A helicopter hovers over the race track. A lady,A helicopter hovers over the race track.,A lady,gold,slows a javelin numerous times.,stands before the road runs behind a cow.,pulls on a rider's helmet.,retrieves a bead from a rock and lands on the ground with her face on it.,2\n5502,anetv_QYU2srH753Q,13091,A person's shadow moves over the surface of a white trailer. A person,A person's shadow moves over the surface of a white trailer.,A person,gold,in a blue shirt has three hands.,is waxing the window.,rides a dirt bike.,walks and cuts its nails with white paint paint.,2\n5503,anetv_QYU2srH753Q,13092,A person stands with sign at the end of the dirt race track. A person,A person stands with sign at the end of the dirt race track.,A person,gold,is shown on the beam.,is passing a lawnmower on a field and javelin.,lifts a dirt bike and places on a stool.,rides a large white skateboard track across the lawn.,2\n5504,anetv_QYU2srH753Q,13090,Birds flock the sky above the dirt track. A person's shadow,Birds flock the sky above the dirt track.,A person's shadow,gold,brings him to the surface.,hits the zebra's back as it dangles under the snow.,moves over the surface of a white trailer.,shows them the whole city.,2\n5505,anetv_QYU2srH753Q,13093,A male child runs and smiles. A helicopter,A male child runs and smiles.,A helicopter,gold,dances with each of the players.,hovers over the race track.,is blown by a city side.,is strapped in on a caged rope.,1\n5506,lsmdc3025_FLIGHT-11705,4996,\"A woman steps out of a room at Hotel Atlanta, carrying a folded up massage table. She\",\"A woman steps out of a room at Hotel Atlanta, carrying a folded up massage table.\",She,gold,\"wears a dress, and has a small tattoo on her shoulder.\",\"meets her eyes, then types in a hopeless gaze.\",considers this a moment.,holds up a bowl to the desk and grab an iron to clean a delicate box before using it.,0\n5507,lsmdc3025_FLIGHT-11705,4994,Someone fidgets on his side of the cockpit. Ken,Someone fidgets on his side of the cockpit.,Ken,gold,\"his fellow clouds, someone shoots offstage.\",\"his logo, someone turns someone pale.\",watches as someone brushes his hair.,\"a costume, she tries to walk out of the subway as someone brings a seat to follow him through the terminal.\",2\n5508,lsmdc3025_FLIGHT-11705,5000,She smokes as she makes a call from the driver's seat. She,She smokes as she makes a call from the driver's seat.,She,gold,folds the fists and walks toward a busy street.,mother struggles with her teeth and sighing.,accidentally jumps off her own bed as she races away.,\"leans on the steering wheel, and lowers the phone to the passenger seat.\",3\n5509,lsmdc3025_FLIGHT-11705,4999,She walks to a car and places the massage table in the trunk. She,She walks to a car and places the massage table in the trunk.,She,gold,smokes as she makes a call from the driver's seat.,sets it on the floor and flops down on the bed.,sips her coffee while drinking her beer.,knocks at the door.,0\n5510,lsmdc3025_FLIGHT-11705,4995,Ken watches as someone brushes his hair. A woman,Ken watches as someone brushes his hair.,A woman,gold,approaches the agent who lifts the white dress.,in a black cap stares at someone and we both look round at the boys counter.,\"steps out of a room at hotel atlanta, carrying a folded up massage table.\",squeezes down her black hair.,2\n5511,lsmdc3060_SANCTUM-29337,16060,She folds her arms across her chest and stubbornly plants her feet. Someone gravely,She folds her arms across her chest and stubbornly plants her feet.,Someone gravely,gold,grimly closes his eyes.,\"sits back on her seat, her flirtatious gaze fixed on someone.\",looks from her to someone.,lifts the folded arms overhead.,2\n5512,anetv_q0L4clHNIbc,15843,A woman is outside shoveling with a robohandle. It,A woman is outside shoveling with a robohandle.,It,gold,adds to the hair that is wiping to the sink and a person begins to walk in her hair.,is making the process much quicker because it is a decent size and picks up a lot of the snow at once.,holds a hook through a window and a modern woman is talking to the camera.,is out of ammo.,1\n5513,lsmdc0002_As_Good_As_It_Gets-46538,9091,\"Someone has no idea he has insulted her. Sandbagged in extreme, she\",Someone has no idea he has insulted her.,\"Sandbagged in extreme, she\",gold,passes a nice woman on someone's lap and looks around.,gets up - - actually ready to leave.,is doing surgery with someone's germs.,messes up with her coat.,1\n5514,anetv_A32TgJfp2z8,12664,Old black and white videos are shown of people engaged in games of table tennis. Crowds,Old black and white videos are shown of people engaged in games of table tennis.,Crowds,gold,moves in slow motion on the screen in front of a tv ad.,are shown celebrating with one another and trying to hold the ball.,are sitting down in a bathroom speaking to the camera.,watch and cheer them on.,3\n5515,anetv_A32TgJfp2z8,12665,Crowds watch and cheer them on. They,Crowds watch and cheer them on.,They,gold,are stepping in guests.,jump off the stage and plummet on the top.,use the jerseys to wash their sticks as they water.,clap as the ball is hit back and forth over the net.,3\n5516,anetv_A32TgJfp2z8,2096,A mgm movie commercial comes on then several people lined up to play ping pong appear competing and the crowd begins to cheer for them. More matches begin but they are one on one and the crowd,A mgm movie commercial comes on then several people lined up to play ping pong appear competing and the crowd begins to cheer for them.,More matches begin but they are one on one and the crowd,gold,continues to clap for them until the game ends and the boys shake each other's hand.,enjoys his citizens as the man sadly continues receiving the final lives preventing the match.,continue to see the individual behind the counter in their casino stats.,comes to begin performing professional tricks in a music room.,0\n5517,lsmdc3019_COLOMBIANA-8398,12926,The woman hurries off past the security guard. Now someone,The woman hurries off past the security guard.,Now someone,gold,drives someone into town.,stands at a ticket kiosk in a bus station.,taps her locked door.,runs into someone's apartment sending the officers in her house.,1\n5518,lsmdc3019_COLOMBIANA-8398,12887,\"Behind her, a gunman smashes through a different part of the roof. As someone's men burst in after her, she\",\"Behind her, a gunman smashes through a different part of the roof.\",\"As someone's men burst in after her, she\",gold,stares fire at someone.,trips and pulls over.,hides him in a filthy kiss.,races down a balcony.,3\n5519,lsmdc3019_COLOMBIANA-8398,12888,\"As someone's men burst in after her, she races down a balcony. She\",\"As someone's men burst in after her, she races down a balcony.\",She,gold,glares down at someone.,climbs through an open window into a man's apartment.,jumps the top of the bed and wraps her arms around him.,cleans an utility chain with someone's hand and camera channel as he lines it beneath someone's body.,1\n5520,lsmdc3019_COLOMBIANA-8398,12904,\"Sliding it aside, someone lifts her face to the bright sunlight and squints. She\",\"Sliding it aside, someone lifts her face to the bright sunlight and squints.\",She,gold,glances around and gapes.,reaches for her heel and presses it up.,rubs her eyes then glances around and climbs out of the hole.,rubs the classmates's brow and then sips her drink.,2\n5521,lsmdc3019_COLOMBIANA-8398,12892,The biker crashes into it. The colorful chili peppers,The biker crashes into it.,The colorful chili peppers,gold,animates back on the roof wire.,are brought and insult him.,fly into the air.,then cuts up to catch and by.,2\n5522,lsmdc3019_COLOMBIANA-8398,12936,It opens and he steps inside. Someone,It opens and he steps inside.,Someone,gold,tosses him the diary.,sits waiting at a low window sill.,\"enters, leaving her room.\",steps out onto the balcony and gets out.,1\n5523,lsmdc3019_COLOMBIANA-8398,12881,The gunman follows her as she races across the street and enters a building. The motorcyclist,The gunman follows her as she races across the street and enters a building.,The motorcyclist,gold,takes off down the hill.,people waits out to join her.,stops as more buttons pass down and down.,out of the market marches out to her.,0\n5524,lsmdc3019_COLOMBIANA-8398,12919,\"With a frown, she grabs the passport and money. Now a security guard\",\"With a frown, she grabs the passport and money.\",Now a security guard,gold,leads a launch into an elegant lobby.,sits in a suit drinking some tea.,leads her and her escort down a corridor.,rolls a code into the public filming tank.,2\n5525,lsmdc3019_COLOMBIANA-8398,12898,\"Noticing it, she breaks into a run. He\",\"Noticing it, she breaks into a run.\",He,gold,hits her with her knuckles.,aims a gun out his window.,gets out to reload.,charges in toward a reflective gallery.,1\n5526,lsmdc3019_COLOMBIANA-8398,12921,\"As they pass a restroom, someone tugs on the woman's wrist. Entering the bathroom, someone\",\"As they pass a restroom, someone tugs on the woman's wrist.\",\"Entering the bathroom, someone\",gold,strides to the last stall.,closes the door behind them and approaches her with the flashlight.,trips her down on her bed and floats across the floor.,slides over a bar with open bag drawings.,0\n5527,lsmdc3019_COLOMBIANA-8398,12918,\"The bureaucrat sets a short stack of cash in front of the girl. With a frown, she\",The bureaucrat sets a short stack of cash in front of the girl.,\"With a frown, she\",gold,grasps the phone sympathetically.,watches as someone gingerly steps forward.,turns on the closing doors.,grabs the passport and money.,3\n5528,lsmdc3019_COLOMBIANA-8398,12967,She looks up at her uncle with a resolute gaze. Someone,She looks up at her uncle with a resolute gaze.,Someone,gold,looks at the activity.,winces as she looks toward the house.,frowns and turns away.,leans back in his chair and takes a deep breath through parted lips.,3\n5529,lsmdc3019_COLOMBIANA-8398,12933,\"Later, someone walks a dimly lit alleyway. She\",\"Later, someone walks a dimly lit alleyway.\",She,gold,hands the man her scrap of paper with the address.,rubs the tips of his legs.,throws out a blueprint and closes a handgun.,turns around and the room turning away from the television.,0\n5530,lsmdc3019_COLOMBIANA-8398,12901,The others follow suit with their automatics. The motorcyclist and the three guys on foot,The others follow suit with their automatics.,The motorcyclist and the three guys on foot,gold,bend the passenger's arm.,join the group and peer at the storm drain.,rise their arms against the street.,show in their backpacks.,1\n5531,lsmdc3019_COLOMBIANA-8398,12875,\"Someone grabs the hidden knife and stabs his hand to the table. Racing into a bathroom, she\",Someone grabs the hidden knife and stabs his hand to the table.,\"Racing into a bathroom, she\",gold,\"slips off a leather ballerina thong, approaches her, her mother and bow.\",puts on her shield.,pulls out a red garland and knocks on the training table.,\"slides open a window, pulls herself out and drops onto a ledge.\",3\n5532,lsmdc3019_COLOMBIANA-8398,12978,\"It swerves off the road and hits a fire hydrant, knocking it from it base. As fearful bystanders\",\"It swerves off the road and hits a fire hydrant, knocking it from it base.\",As fearful bystanders,gold,gather as the sub glides into its wings.,scurry out of the tent.,stride out of the garage.,\"scatter, someone angrily faces his niece.\",3\n5533,lsmdc3019_COLOMBIANA-8398,12886,\"She races past an elderly man in a garden. Behind her, a gunman\",She races past an elderly man in a garden.,\"Behind her, a gunman\",gold,uses a scanner and a silver ruler operator.,knocks someone's gun off a rack with bullets.,walks out and approaches someone with his big wad of cash.,smashes through a different part of the roof.,3\n5534,lsmdc3019_COLOMBIANA-8398,12964,Someone pauses and faces the table gravely. Someone,Someone pauses and faces the table gravely.,Someone,gold,holds himself hostage and turns the aim on his colleague.,shifts his gaze and turns over his paper.,stands on the stage and faces the stage.,extends a hand triumphantly.,1\n5535,lsmdc3019_COLOMBIANA-8398,12897,\"Rounding a corner, she navigates a labyrinth of alleyways. Noticing it, she\",\"Rounding a corner, she navigates a labyrinth of alleyways.\",\"Noticing it, she\",gold,reaches for her wallet and her brow furrowed.,finds someone standing by a dish piled with snow.,steps inside and finds his body behind.,breaks into a run.,3\n5536,lsmdc3019_COLOMBIANA-8398,12889,\"Following her, a gunman rushes past the angry resident. Someone\",\"Following her, a gunman rushes past the angry resident.\",Someone,gold,\"moves out of the smoke from a water crash, throws some powder into someone's eyes, and lands free.\",hurries down a flight of stairs into an alley.,stares back the slashing sword then shrinks.,sits in the antique warehouse.,1\n5537,lsmdc3019_COLOMBIANA-8398,12944,\"As two women leave one of them, she watches them go with a solemn curious gaze. A tall shadowy figure\",\"As two women leave one of them, she watches them go with a solemn curious gaze.\",A tall shadowy figure,gold,stands on the netting from a platform atop the burning structure.,sits in a chair watching the long huge estate in a darkened sky.,ascends a steep path between seasoned stone statues and leafless trees.,arrives on the other side of her.,3\n5538,lsmdc3019_COLOMBIANA-8398,12879,\"As someone swings down to a corner ledge, a brawny gunman climbs out a window after her. She\",\"As someone swings down to a corner ledge, a brawny gunman climbs out a window after her.\",She,gold,gives him high five.,seizes someone's necklace and raises her arms in the air.,grabs pads off the back of the jet's hood.,drops onto the roof of a parked car.,3\n5539,lsmdc3019_COLOMBIANA-8398,12986,\"Now as we peer across a sprawling suburb, words appear. In a parking lot, a cop\",\"Now as we peer across a sprawling suburb, words appear.\",\"In a parking lot, a cop\",gold,brings lunch to his partner.,peels off a car.,\"drives into view, approaches 100 then looks around.\",parks behind the plaster crank.,0\n5540,lsmdc3019_COLOMBIANA-8398,12924,\"Finding the door to the last stall closed, she walks over. She\",\"Finding the door to the last stall closed, she walks over.\",She,gold,leads the adjoining wall and arches in alarm.,opens it and finds it empty.,\"walks down a hallway to the banister, then locks it shut.\",\"glances down at the regular vibrating briefs, which frantically runs along the top.\",1\n5541,lsmdc3019_COLOMBIANA-8398,12971,\"Now someone leads someone up the steps to a school's entrance. Later in a principal's office, an elegant woman with blonde curls\",Now someone leads someone up the steps to a school's entrance.,\"Later in a principal's office, an elegant woman with blonde curls\",gold,winds a opposite corner.,wears a pair at a collar.,opens a stuffed yellow envelope.,and french model covers her eyes.,2\n5542,lsmdc3019_COLOMBIANA-8398,12917,Someone and her escort sit in front of his desk. The bureaucrat,Someone and her escort sit in front of his desk.,The bureaucrat,gold,sets a short stack of cash in front of the girl.,takes a book down with vomit.,appear in the doorway.,rises over the slip of paper.,0\n5543,lsmdc3019_COLOMBIANA-8398,12955,\"As she sits up, we notice guns hanging on the wall behind her. She\",\"As she sits up, we notice guns hanging on the wall behind her.\",She,gold,\"gets out of bed, crosses to a window, and peers outside.\",is confused and frustrated.,opens her rear groggily.,\", someone turns on the light.\",0\n5544,lsmdc3019_COLOMBIANA-8398,12946,\"Turning, she finds someone staring at her through a set of windows. As he strides around a corner, she\",\"Turning, she finds someone staring at her through a set of windows.\",\"As he strides around a corner, she\",gold,watches him through the windows.,turns helplessly over to him.,reaches his breast pocket and pulls out a handful of condoms.,\"leaves an open door in a quiet nook, which passes huge with someone.\",0\n5545,lsmdc3019_COLOMBIANA-8398,12895,\"Someone runs down a long staircase between the crowded tiers of rundown homes. As some of his gunmen give chase, someone\",Someone runs down a long staircase between the crowded tiers of rundown homes.,\"As some of his gunmen give chase, someone\",gold,drops another tray to an old white van.,takes his hit by the clothes.,gives someone a shy shove.,talks into his radio.,3\n5546,lsmdc3019_COLOMBIANA-8398,12943,\"Now someone's associate leads someone into a small waiting area within a network of offices. As two women leave one of them, she\",Now someone's associate leads someone into a small waiting area within a network of offices.,\"As two women leave one of them, she\",gold,is pumping faster and pace.,steps forward and peers out the window as they wander along the narrow street.,watches them go with a solemn curious gaze.,lowers her hand.,2\n5547,lsmdc3019_COLOMBIANA-8398,12963,\"As he flips pages in his newspaper, someone serves someone food. Someone\",\"As he flips pages in his newspaper, someone serves someone food.\",Someone,gold,shifts his eyes and walks over to the shifts table.,sits around the table and picks up a piece of cheese.,pauses and faces the table gravely.,lurches through the pages.,2\n5548,lsmdc3019_COLOMBIANA-8398,12962,\"Someone leads her to the kitchen table then returns to the stove. Holding a newspaper, someone\",Someone leads her to the kitchen table then returns to the stove.,\"Holding a newspaper, someone\",gold,gives the girl a sidelong look.,reads the book thrust to her brother.,opens a album and smiles at it.,returns it to the peanut butter.,0\n5549,lsmdc3019_COLOMBIANA-8398,12914,His older colleague hits a button on his desk which activates a camera. He,His older colleague hits a button on his desk which activates a camera.,He,gold,glances at his computer.,scans an open - mouthed image.,clips a saxophone on the sandwich.,\"slips into the blackness on the bottom, but lifeless.\",0\n5550,lsmdc3019_COLOMBIANA-8398,12939,Someone pats his victim's bald head. Another punch,Someone pats his victim's bald head.,Another punch,gold,sends someone flying into his head.,sends thick streams of his blood flying.,brings a gun to her face.,throws someone to the ground by a web.,1\n5551,lsmdc3019_COLOMBIANA-8398,12891,\"The biker gives chase with two gunmen running behind him. Turning a corner into a covered marketplace, someone\",The biker gives chase with two gunmen running behind him.,\"Turning a corner into a covered marketplace, someone\",gold,stops a long corridor and peers through an open door at someone's desk.,swims towards the back into the other passage.,sprints past an arcade and various vendors.,spots the criminals heading off the wall outside.,2\n5552,lsmdc3019_COLOMBIANA-8398,12974,\"As someone leads her out, the principal sinks back down in her chair and lets out a nervous sigh. Turning, he\",\"As someone leads her out, the principal sinks back down in her chair and lets out a nervous sigh.\",\"Turning, he\",gold,punches his father and shoves his arms deep into his pockets.,finds someone staring off.,finds someone standing motionless.,glances up at his friend.,2\n5553,lsmdc3019_COLOMBIANA-8398,12903,\"Meanwhile, a manhole cover rises from the middle of a street. Sliding it aside, someone\",\"Meanwhile, a manhole cover rises from the middle of a street.\",\"Sliding it aside, someone\",gold,finds someone pinning him up.,runs up to the top of the stairs and falls.,lifts her face to the bright sunlight and squints.,grabs the photo of their son.,2\n5554,lsmdc3019_COLOMBIANA-8398,12934,She hands the man her scrap of paper with the address. He,She hands the man her scrap of paper with the address.,He,gold,looks up at the house with his wife.,picks up the cellphone in her hand.,reads it then meets her gaze.,\"leaves, followed closely by the recruits.\",2\n5555,lsmdc3019_COLOMBIANA-8398,12954,\"Waking, she takes in her surroundings. As she sits up, we\",\"Waking, she takes in her surroundings.\",\"As she sits up, we\",gold,see a heavy - up woman getting out from under the pillow.,see stockings or glass fall from the cupboard.,notice guns hanging on the wall behind her.,see the plane going above.,2\n5556,lsmdc3019_COLOMBIANA-8398,12950,\"He eases her back to look her in the eye. Cupping her face in his hands, he\",He eases her back to look her in the eye.,\"Cupping her face in his hands, he\",gold,steals her over the shoulder.,wipes away her tears with his thumb.,huddles against her headrest and leans toward her.,jerks his lips to her cheek and caresses her neck.,1\n5557,lsmdc3019_COLOMBIANA-8398,12972,Someone and someone sit facing her. She,Someone and someone sit facing her.,She,gold,forces himself to wipe his feet.,presents a folded paper to the girl.,watches someone reverts back to its romantic and lunchroom father.,touches someone's temple.,1\n5558,lsmdc3019_COLOMBIANA-8398,12960,She crosses to the girl and kneels before her. She,She crosses to the girl and kneels before her.,She,gold,caresses someone's face.,proceeds to brush the lens into the basin.,leans forward and his eyes filled with sorrowful.,sweeps her gaze away from the contract.,0\n5559,lsmdc3019_COLOMBIANA-8398,12928,She hands him the address written out by her father. She,She hands him the address written out by her father.,She,gold,\"takes out the set of scotch, lights it and leaves.\",keeps her gaze fixed on the laptop.,holds up her wad of cash.,\"shakes her head, smiles behind him and gives a gentle smile.\",2\n5560,lsmdc3019_COLOMBIANA-8398,12982,A police cruiser pulls up by the wrecked car. He,A police cruiser pulls up by the wrecked car.,He,gold,rides the road in full police killer.,\"drives on, sits in the ambulance and looks up at someone's startled face, chest heaving.\",\"straightens, takes out his fedora and beats it back into shape.\",stops with a gun facing his mother.,2\n5561,lsmdc3019_COLOMBIANA-8398,12941,His fist stops mid punch and his brow furrows. He,His fist stops mid punch and his brow furrows.,He,gold,rides on uneven mountains beside a tall stone paneled wall.,pulls up her cloth to reveal the tattoo on a sweat - worn bow.,shoots his lackey a stunned look.,\"points at someone, who keeps his eyes fixed on someone.\",2\n5562,lsmdc3019_COLOMBIANA-8398,12929,Now hazy sunlight glimmers off the mirrored panels of Chicago's skyscrapers as we move over the downtown area. A Trailways bus crosses a bridge and a bird's eye view,Now hazy sunlight glimmers off the mirrored panels of Chicago's skyscrapers as we move over the downtown area.,A Trailways bus crosses a bridge and a bird's eye view,gold,shows a glass mouth young woman who sits with a model.,\"shows the slim, grinning public gym.\",follows it up a street.,causes her to bend over.,2\n5563,lsmdc3019_COLOMBIANA-8398,12949,\"Holding her close, someone cradles her head in his hand as she sobs into his shoulder. He\",\"Holding her close, someone cradles her head in his hand as she sobs into his shoulder.\",He,gold,breaks down and takes a step back.,\"drags back and forth, bringing his hands up.\",\"looks down with astonishment - - but someone moves closer and kisses his wife, who, after night.\",eases her back to look her in the eye.,3\n5564,lsmdc3019_COLOMBIANA-8398,12902,\"The motorcyclist and the three guys on foot join the group and peer at the storm drain. Meanwhile, a manhole cover\",The motorcyclist and the three guys on foot join the group and peer at the storm drain.,\"Meanwhile, a manhole cover\",gold,rises from the middle of a street.,gazes across the farmhouse.,slides down a flight of stairs.,looms the chaotic bank.,0\n5565,lsmdc3019_COLOMBIANA-8398,12952,He kisses her forehead three times then hugs her again. Now a sunbeam,He kisses her forehead three times then hugs her again.,Now a sunbeam,gold,shines on someone's face as she sleeps.,stops playing the game.,partition makes someone dance.,\"is draped across a bed upside down, and stands on a low post.\",0\n5566,lsmdc3019_COLOMBIANA-8398,12896,\"As some of his gunmen give chase, someone talks into his radio. Someone\",\"As some of his gunmen give chase, someone talks into his radio.\",Someone,gold,dashes down the stairs with the three gunmen close behind.,\"roars to a hollow on leashes, followed by a nazgul bull.\",\"pats his pockets and takes up his wristwatch, which stands posted at the end.\",\"walks ahead, past the milling crowds of people, watching him defiant.\",0\n5567,lsmdc3019_COLOMBIANA-8398,12953,\"Now a sunbeam shines on someone's face as she sleeps. Waking, she\",Now a sunbeam shines on someone's face as she sleeps.,\"Waking, she\",gold,talks on a cell phone.,takes in her surroundings.,falls asleep in bed.,crouches and squirts herself in the groin.,1\n5568,lsmdc3019_COLOMBIANA-8398,12951,\"Cupping her face in his hands, he wipes away her tears with his thumb. He\",\"Cupping her face in his hands, he wipes away her tears with his thumb.\",He,gold,glances over his shoulder and pulls the boy away.,lowers her hand and gently brushes her neck.,steps in and buries his face in his hand.,kisses her forehead three times then hugs her again.,3\n5569,lsmdc3019_COLOMBIANA-8398,12906,\"Later, she reaches a building surrounded by a tall wrought iron fence. Armed soldiers\",\"Later, she reaches a building surrounded by a tall wrought iron fence.\",Armed soldiers,gold,surround a bus and steps toward the brothel.,stand posted at its gate.,step out with a gun in it.,rush to the courtyard entrance with their dog pointed down the hall.,1\n5570,lsmdc3019_COLOMBIANA-8398,12880,She drops onto the roof of a parked car. The gunman,She drops onto the roof of a parked car.,The gunman,gold,is kissing her in the car.,follows her as she races across the street and enters a building.,wrestles her onto the roof as a small light of frost washes overhead.,rips out the hood of her car.,1\n5571,lsmdc3019_COLOMBIANA-8398,12893,The colorful chili peppers fly into the air. Now our view,The colorful chili peppers fly into the air.,Now our view,gold,rises from a small cargo ship.,soars over the city.,travels down the ramp in the alley by a fountain.,rises over the somber someone from beneath someone and his son.,1\n5572,lsmdc3019_COLOMBIANA-8398,12877,\"Someone yanks the knife out of his hand. Lowering herself to another ledge, she\",Someone yanks the knife out of his hand.,\"Lowering herself to another ledge, she\",gold,uses the top one for cover as a bald gunman shoots down at her.,plucks her wrists from someone's waist.,settles down under a lapping barrier.,shoots more in the arms excitedly.,0\n5573,lsmdc3019_COLOMBIANA-8398,12968,Someone leans back in his chair and takes a deep breath through parted lips. He,Someone leans back in his chair and takes a deep breath through parted lips.,He,gold,glances the left corner then reaches around to the space doors.,moonlight here his bare face.,stares at her then affects a casual gaze.,gazes down at her bed and rubs her neck.,2\n5574,lsmdc3019_COLOMBIANA-8398,12958,\"She touches one of her mother's as she passes. Later, she\",She touches one of her mother's as she passes.,\"Later, she\",gold,looks at the pixie - shaped facade of towering manhattan in the early morning darkness.,\"arrives at a kitchen and pauses, her fingers lightly drumming her thigh.\",\"finds a red sketchbook with expose and flowers, someone, and someone stand in the room with someone.\",\"is reading the diary, wrapping it around her back to reveal a message written in the message.\",1\n5575,lsmdc3019_COLOMBIANA-8398,12920,\"Now a security guard leads her and her escort down a corridor. As they pass a restroom, someone\",Now a security guard leads her and her escort down a corridor.,\"As they pass a restroom, someone\",gold,tugs on the woman's wrist.,pierces his father's eyes.,ties a cloak around.,leads the others into their car.,0\n5576,lsmdc3019_COLOMBIANA-8398,12966,\"Eating her breakfast, the little girl shakes her head. She\",\"Eating her breakfast, the little girl shakes her head.\",She,gold,crosses to a dining table where people sit on a concave table.,closes her eyes a little then rubs her hand.,recoils as she kneels on her.,looks up at her uncle with a resolute gaze.,3\n5577,lsmdc3019_COLOMBIANA-8398,12938,The man steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair. Someone,The man steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair.,Someone,gold,cast an intrigued look over someone's blank face.,bows his head and peers in the window as the dancer hands.,pats his victim's bald head.,glances away and she goes.,2\n5578,lsmdc3019_COLOMBIANA-8398,12882,\"The motorcyclist takes off down the hill. As she acrobatically makes her way down to a terrace, the brawny gunman\",The motorcyclist takes off down the hill.,\"As she acrobatically makes her way down to a terrace, the brawny gunman\",gold,spots her from the rooftop.,convulses on his side.,slips into a seat.,looks up at his feet.,0\n5579,lsmdc3019_COLOMBIANA-8398,12948,\"Large tears stream down the little girl's cheeks. Holding her close, someone\",Large tears stream down the little girl's cheeks.,\"Holding her close, someone\",gold,jerks her thumb up at the flicker of his ink finger.,cradles her head in his hand as she sobs into his shoulder.,takes hold of a large pipe as she holds up the cigarette.,\"takes a deep breath, and stretches to someone's hand.\",1\n5580,lsmdc3019_COLOMBIANA-8398,12973,\"She smiles down at the girl who coldly gets to her feet. As someone leads her out, the principal\",She smiles down at the girl who coldly gets to her feet.,\"As someone leads her out, the principal\",gold,sinks back down in her chair and lets out a nervous sigh.,\"shakes his hand, then looks up and picks up the heavy bag, which has some of letters on it.\",looks at the black box.,holds her gaze and checks her hearing system.,0\n5581,lsmdc3019_COLOMBIANA-8398,12927,Now someone stands at a ticket kiosk in a bus station. She,Now someone stands at a ticket kiosk in a bus station.,She,gold,moves down the street and opens the driver's door.,glances down at the gravestones with her hands.,hands him the address written out by her father.,runs up a window where various elegant people are lined up.,2\n5582,lsmdc3019_COLOMBIANA-8398,12915,\"On a government jet, a woman sits with someone. On the ground, the jet\",\"On a government jet, a woman sits with someone.\",\"On the ground, the jet\",gold,slows as it taxis on a tarmac.,falls on the ground.,runs along the canopy.,passes between cars calling its interior then stops.,0\n5583,lsmdc3019_COLOMBIANA-8398,12981,He holds out the gun and the backpack. Someone,He holds out the gun and the backpack.,Someone,gold,\"at the door, someone steps to the front overturned and picks up the phone as he goes about the damage.\",\"walks up to someone, who climbs into the bed.\",snatches the backpack from his grasp and slings it over her shoulder.,stands up and leaves.,2\n5584,lsmdc3019_COLOMBIANA-8398,12957,Now someone shuffles to a stairway where family photos decorate the wall. She,Now someone shuffles to a stairway where family photos decorate the wall.,She,gold,\"opens the classroom door and sees someone, who paces in the dressing room, singing.\",passed with marley earrings working with their hmong friend.,touches one of her mother's as she passes.,places her belongings on the dresser side and stares quietly at the pamphlet in its ornate hands.,2\n5585,lsmdc3019_COLOMBIANA-8398,12985,\"Someone turns his niece away by the shoulder. Keeping his arm around her, he\",Someone turns his niece away by the shoulder.,\"Keeping his arm around her, he\",gold,squares his glove gently and rubs it on his hand.,kisses her hungrily before pulling her close.,lurches to his feet.,saunters off casually down the sidewalk.,3\n5586,lsmdc3019_COLOMBIANA-8398,12900,Someone shoots his handgun into the storm drain opening. The others,Someone shoots his handgun into the storm drain opening.,The others,gold,run past the broad entrance outside the club.,clamber down with simple jackets around his bodies.,follow suit with their automatics.,try with the gun.,2\n5587,lsmdc3019_COLOMBIANA-8398,12945,\"A tall shadowy figure arrives on the other side of her. Turning, she\",A tall shadowy figure arrives on the other side of her.,\"Turning, she\",gold,finds someone staring at her through a set of windows.,spots a figure lying on the ground behind her dead shears.,spots a motionless wedding jacket on the floor.,spots a bolt of blood on someone 'outstretched arm.,0\n5588,lsmdc3019_COLOMBIANA-8398,12907,He gazes at someone who sits in front of his desk. She,He gazes at someone who sits in front of his desk.,She,gold,lifts her eyes to his then glances at an older man at a desk nearby.,is seated at the back of the camp.,stalks wearily into the empty kitchen stand.,watches the crash bug on the floor.,0\n5589,lsmdc3019_COLOMBIANA-8398,12922,\"Entering the bathroom, someone strides to the last stall. She\",\"Entering the bathroom, someone strides to the last stall.\",She,gold,\"sits at a bureau, displaying two small children on them, a smile on her face.\",picks up the towel on the floor and picks up a penguin.,steps inside and pulls the door shut.,tall blond woman and a few pretty women perform at her.,2\n5590,lsmdc3019_COLOMBIANA-8398,12979,\"As fearful bystanders scatter, someone angrily faces his niece. He\",\"As fearful bystanders scatter, someone angrily faces his niece.\",He,gold,collapses on the newlyweds glaring at the evenstar.,swipes off his fedora and glances coolly at his handiwork.,kicks the grate over his shoulder.,\"extends a hand toward someone, then shifts her gaze.\",1\n5591,lsmdc3019_COLOMBIANA-8398,12977,\"He thrusts someone's backpack at her, draws a huge handgun and opens fire on a passing car. It\",\"He thrusts someone's backpack at her, draws a huge handgun and opens fire on a passing car.\",It,gold,\"swerves off the road and hits a fire hydrant, knocking it from it base.\",he swings it on.,screech out and reaches the top of a tiny ladder drilling into tear - filled view.,hit the plastic shut in the alarm system.,0\n5592,lsmdc3019_COLOMBIANA-8398,12925,She opens it and finds it empty. The woman,She opens it and finds it empty.,The woman,gold,releases the curtain and gestures as someone drops.,falls on the floor.,hurries off past the security guard.,pauses and kneels down beside someone.,2\n5593,lsmdc3019_COLOMBIANA-8398,12930,She timidly strides between two columns of benches shooting furtive glances at the other commuter. Someone,She timidly strides between two columns of benches shooting furtive glances at the other commuter.,Someone,gold,whacks her with the door.,is defense by someone.,reads a comic book as she waits on a platform for an approaching l train.,sits on the table with her hands on her hips.,2\n5594,lsmdc3019_COLOMBIANA-8398,12983,\"He straightens, takes out his fedora and beats it back into shape. As he\",\"He straightens, takes out his fedora and beats it back into shape.\",As he,gold,puts it back on.,takes a faint puff of his mouth into a socket.,moves up the body of shattered instruments.,looks after it she catches it.,0\n5595,lsmdc3019_COLOMBIANA-8398,12942,He shoots his lackey a stunned look. Now someone's associate,He shoots his lackey a stunned look.,Now someone's associate,gold,someone prowls into tall trees.,creeps toward someone house.,leads someone into a small waiting area within a network of offices.,pulls up to the bank someone.,2\n5596,lsmdc3019_COLOMBIANA-8398,12905,\"Cars and pedestrians take little notice as they bustle past the dirty faced girl in her sullied school uniform. Later, she\",Cars and pedestrians take little notice as they bustle past the dirty faced girl in her sullied school uniform.,\"Later, she\",gold,presents a bouquet of turkey mnemonic.,reaches a building surrounded by a tall wrought iron fence.,opens the door with a black cloth revealing the parched folds outdoors.,plops down on her chair and crosses it outside the hotel at the top of the stairs.,1\n5597,lsmdc3019_COLOMBIANA-8398,12937,Someone sits waiting at a low window sill. The man,Someone sits waiting at a low window sill.,The man,gold,steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair.,creeps toward the stone.,\"leans over, raises his arms out for the whole, his other elbow tilting forward.\",\"holds two beers to his mouth, dancing closer.\",0\n5598,lsmdc3019_COLOMBIANA-8398,12890,\"As someone emerges on a sidewalk, she spots the motorcyclist approaching and takes off down a stone staircase. The biker\",\"As someone emerges on a sidewalk, she spots the motorcyclist approaching and takes off down a stone staircase.\",The biker,gold,slides on a mounted ducks ledge over a tree as long seesaw flows through the half - opened window.,gives chase with two gunmen running behind him.,enters a threshold and now someone's father.,\"king grabs someone, and pulls her captive out.\",1\n5599,lsmdc3019_COLOMBIANA-8398,12975,\"Turning, he finds someone standing motionless. He\",\"Turning, he finds someone standing motionless.\",He,gold,reaches for someone's hand.,nods and glances around.,stares slack - jawed.,\"follow someone down the corridor, past someone, who's already in the open doorway.\",1\n5600,lsmdc3019_COLOMBIANA-8398,12910,\"Wiping her mouth, she settles back into her seat and uses one finger to poke around the vomit. She\",\"Wiping her mouth, she settles back into her seat and uses one finger to poke around the vomit.\",She,gold,\"is under the levers, which bracket, giving her then recovered from a regular speed of new height.\",finds the computer chip and holds it out.,video of a teenage girl and several boys in life jacket demonstrating film stunts.,makes it down the old sidewalk.,1\n5601,lsmdc3019_COLOMBIANA-8398,12931,Someone reads a comic book as she waits on a platform for an approaching l train. Someone,Someone reads a comic book as she waits on a platform for an approaching l train.,Someone,gold,holds the note up before he reads its case.,climbs on and takes a seat.,scrambles to the tracks and knocks the suv over.,stares wide - eyed at it at various types of papers for buy sale.,1\n5602,lsmdc3019_COLOMBIANA-8398,12940,Another punch sends thick streams of his blood flying. Someone,Another punch sends thick streams of his blood flying.,Someone,gold,pushes it back in again.,winds up for another blow.,\"rushes out of the camera, approaches someone.\",\"goes back as he scrolls through, while ripper spreads on the side.\",1\n5603,lsmdc3019_COLOMBIANA-8398,12912,\"He types a command and information scrolls up the screen. His mouth hanging agape, he\",He types a command and information scrolls up the screen.,\"His mouth hanging agape, he\",gold,opens the grail diary.,nervously crosses his hands where he sets the scroll anglia in the air.,flexes his jaw.,shifts his astonished gaze to someone.,3\n5604,lsmdc3019_COLOMBIANA-8398,12883,\"As she acrobatically makes her way down to a terrace, the brawny gunman spots her from the rooftop. He\",\"As she acrobatically makes her way down to a terrace, the brawny gunman spots her from the rooftop.\",He,gold,picks up a bucket and crosses to another area.,leaps down after her.,loads her black glasses and sees the strange girl in the hallway.,goes upstairs then jumps to her knees and covers her face with one hand.,1\n5605,lsmdc3019_COLOMBIANA-8398,12913,\"His mouth hanging agape, he shifts his astonished gaze to someone. His older colleague\",\"His mouth hanging agape, he shifts his astonished gaze to someone.\",His older colleague,gold,looks up from the bushes with a grin.,hits a button on his desk which activates a camera.,stares at the larger animal.,trade a shaky nod as the driver follows him.,1\n5606,lsmdc3019_COLOMBIANA-8398,12884,\"Meanwhile, someone and some men take off in an suv. Scrambling over a low wall, someone\",\"Meanwhile, someone and some men take off in an suv.\",\"Scrambling over a low wall, someone\",gold,smashes through a wood plank roof and lands on a table.,\"climbs wood with one hand and chain around her waist, her guns drawn.\",collapses in someone's arms as someone holding still in suspended watchful stare sets as he gazes round in stunned silence.,gets into an ambulance.,0\n5607,lsmdc3019_COLOMBIANA-8398,12876,\"Racing into a bathroom, she slides open a window, pulls herself out and drops onto a ledge. Someone\",\"Racing into a bathroom, she slides open a window, pulls herself out and drops onto a ledge.\",Someone,gold,is captured in slow motion.,hides the book in the top of the pillar.,comes out of the doorway and enters the pantry.,yanks the knife out of his hand.,3\n5608,lsmdc3019_COLOMBIANA-8398,12894,Now our view soars over the city. Someone,Now our view soars over the city.,Someone,gold,runs down a long staircase between the crowded tiers of rundown homes.,shadows victim to a low dimly lit window as pov tracks through the winding rooftops.,pull up on a long club wearing suction freestanding and ghetto windows.,awakes in a performer room on tv in a billiard room.,0\n5609,lsmdc3019_COLOMBIANA-8398,12909,\"He recoils as she barfs on his desk. Wiping her mouth, she\",He recoils as she barfs on his desk.,\"Wiping her mouth, she\",gold,\"looks up at someone, who looks down from her book, which's now black on her upper body.\",\"halts around the corner of her room, studying the citizens of her drawing.\",settles back into her seat and uses one finger to poke around the vomit.,holds all her drink together and slowly eats it.,2\n5610,lsmdc3019_COLOMBIANA-8398,12899,The thugs peer after her. Someone,The thugs peer after her.,Someone,gold,shoots his handgun into the storm drain opening.,\"rushes out to them, hurries over, and hurries through a closed door.\",pulls up his fashionable vest and quarter ring and closes it.,throws white mush to the table.,0\n5611,lsmdc3019_COLOMBIANA-8398,12911,\"Grimacing, he uses it to take the chip. He\",\"Grimacing, he uses it to take the chip.\",He,gold,puts his hands into his mouth.,has stubble at his sides too.,takes off the tray and puts it on the luggage rack.,types a command and information scrolls up the screen.,3\n5612,lsmdc3019_COLOMBIANA-8398,12965,Someone shifts his gaze and turns over his paper. He,Someone shifts his gaze and turns over his paper.,He,gold,turns over someone's slip of paper.,closes it and displays a sharp smile.,scowls and shuts out the phone.,brings the edge of her lips into a pout.,0\n5613,lsmdc3019_COLOMBIANA-8398,12932,\"She peers out her window then lowers her gaze to her Xena Warrior Princess comic. Later, someone\",She peers out her window then lowers her gaze to her Xena Warrior Princess comic.,\"Later, someone\",gold,walks a dimly lit alleyway.,lies on the bed as rub follows.,flips through beams and arches her bony chin.,searches smoking a cigarette as she peers around a rack at his distant weapon.,0\n5614,lsmdc3019_COLOMBIANA-8398,12916,\"On the ground, the jet slows as it taxis on a tarmac. Someone and her escort\",\"On the ground, the jet slows as it taxis on a tarmac.\",Someone and her escort,gold,leads the team through a series of high - hazmat buildings.,steps below with a long limp tray.,sit in front of his desk.,step out with their car.,2\n5615,lsmdc3019_COLOMBIANA-8398,12969,\"He stares at her then affects a casual gaze. His brow furrowed, he\",He stares at her then affects a casual gaze.,\"His brow furrowed, he\",gold,studies himself as a lantern.,plants his hands on the table.,glances over her shoulder through the treetops and peers to the station.,returns to the dorm.,1\n5616,lsmdc1047_Defiance-91744,10349,\"In his cabin someone is fighting the fever. At mealtime, as people huddle in groups, someone\",In his cabin someone is fighting the fever.,\"At mealtime, as people huddle in groups, someone\",gold,sits at a table crypt - goers.,kicks aside passing pipe students.,is standing at the food table.,is holding a plate of red wine from arm's.,2\n5617,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11509,\"Confidently, he looks up at the white king. The white king's huge sword\",\"Confidently, he looks up at the white king.\",The white king's huge sword,gold,has broken a plate.,is almost pursuing the watchful medal.,falls from his hands.,is placed over his head.,2\n5618,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11504,\"She moves steadily across the board, heading straight towards someone's black horse. He\",\"She moves steadily across the board, heading straight towards someone's black horse.\",He,gold,turns the body bag around.,\"stands at the far end of the bar, then gives his four a long - robed stare.\",tentatively close on the border of the boat.,\"clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor.\",3\n5619,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11503,The white queen slowly turns. She,The white queen slowly turns.,She,gold,\"is in the dark, motioning round.\",closes the square door revealing someone striding across a stone.,looks up at the ruins of an open w's face.,\"moves steadily across the board, heading straight towards someone's black horse.\",3\n5620,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11511,It lies on the marble floor at someone's feet. He and someone,It lies on the marble floor at someone's feet.,He and someone,gold,\"run to someone, and kneel beside him.\",\"sit down, then disappear into the darkness.\",follow past students as they run.,\"fly in bed, passing someone to someone.\",0\n5621,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11506,Someone steps hurriedly back onto her square. She,Someone steps hurriedly back onto her square.,She,gold,swings the bullet in the window and creating a fireball.,makes their way past dojo reaction students with a number of umbrellas on them.,\"looks anxiously towards someone, who is lying unconscious.\",pulls someone's revolver from her back.,2\n5622,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11501,\"He closes his eyes as the black horse starts to move across the board, between the remains of the shattered stone chess pieces. Someone\",\"He closes his eyes as the black horse starts to move across the board, between the remains of the shattered stone chess pieces.\",Someone,gold,watches or smiles when he reaches for his gun which is obviously another from which he is being gored and strike.,\"looks nervously at the white king, who wears a silver helmet.\",crashes over for himself.,\"rushes two more agents at someone wearing a high, hooded robe and strides spears through the air, then his knees slides back in\",1\n5623,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11505,\"He clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor. She\",\"He clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor.\",She,gold,peeks from escaping to a cart with agonized and wild smoke as it slithers along the slanted staircase.,stabs the black horse.,grins - - but the arizona has just rolled away from the shame.,eyes - - mask creeping out on the vast courtyard and rocks before him.,1\n5624,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11510,The white king's huge sword falls from his hands. It,The white king's huge sword falls from his hands.,It,gold,\"drops a robe which falls on top half of the golden foil, which vanishes in the night.\",crawls onto its back as it writhes against the stone.,'s brown frees in reverse.,lies on the marble floor at someone's feet.,3\n5625,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11502,\"Someone looks nervously at the white king, who wears a silver helmet. Clasping a powerful sword, his hands\",\"Someone looks nervously at the white king, who wears a silver helmet.\",\"Clasping a powerful sword, his hands\",gold,go to through the young wavy hair.,are encased in metal armor.,avoided its huge length.,drops to his.,1\n5626,anetv_8ErMpNsK3_c,15080,A little girl swings across the monkey bars on a playground. Her mother,A little girl swings across the monkey bars on a playground.,Her mother,gold,talks as she watches her slide to the ground and start again.,stands and goes back to her dog.,slides down a slide.,stands on a swing and smiles at the boys watching.,0\n5627,lsmdc0046_Chasing_Amy-68829,8605,He leans back into the couch and lets out a huge sigh. Someone,He leans back into the couch and lets out a huge sigh.,Someone,gold,\"stares forward, wide - eyed.\",throws the ball over his shoulder and grabs his wrist.,gives someone a kiss.,gives him a kiss.,0\n5628,lsmdc0046_Chasing_Amy-68829,8608,Someone moves to her side of the couch. Someone,Someone moves to her side of the couch.,Someone,gold,points the purse again around someone as the van drives past.,sits on the couch watching tv.,continues talking as someone opens the bathroom door.,\"looks at him, sadly.\",3\n5629,lsmdc0046_Chasing_Amy-68829,8607,Then he looks at someone. Someone,Then he looks at someone.,Someone,gold,enters the locker room and takes a seat on the back.,\"stands next to him, about to row the chairs off of his desk.\",\"plays outside, out of the car.\",moves to her side of the couch.,3\n5630,lsmdc0046_Chasing_Amy-68829,8609,\"Someone looks at him, sadly. Shocked someone\",\"Someone looks at him, sadly.\",Shocked someone,gold,lets out a sigh of relief.,windmills a shabby bra.,looks toward the gun bag.,pushes the opponent away loudly.,0\n5631,anetv_5SpWmZxECqc,8877,The girl runs product through her hair and leads into her brushing her hair and spraying in more product. She,The girl runs product through her hair and leads into her brushing her hair and spraying in more product.,She,gold,looks back to the camera and begins to fluff the fur on the dogs head.,continues to show and thinks a few more times.,continues to comb and ends by pointing to the camera and showing off her hair.,zooms back over the hair and begins washing her hair with the finished product.,2\n5632,anetv_5SpWmZxECqc,6841,She sprays it with a spray bottle and continues brushing her hair. She,She sprays it with a spray bottle and continues brushing her hair.,She,gold,is wearing a fake shirt and gloves and brushing off blush in the mirror.,continues smoking and smiling to the camera.,finishes drying the hair off of her face and finishes it.,finishes and gives a thumbs up.,3\n5633,anetv_5SpWmZxECqc,6840,A woman is brushing her hair. She,A woman is brushing her hair.,She,gold,\"clips her hair, then pushing her hair down.\",brushes and uses a comb to cut her hair.,sprays it with a spray bottle and continues brushing her hair.,uses the blow dryer to blow her hair up.,2\n5634,anetv_5SpWmZxECqc,8876,A woman is seen looking at the camera and making various movements while several camera effects are added. The girl,A woman is seen looking at the camera and making various movements while several camera effects are added.,The girl,gold,runs product through her hair and leads into her brushing her hair and spraying in more product.,began moving around and playing with one another as well as playing badminton.,puts down her briefcase and lays out various corn chips on the end.,continues brushing while her hair continues talking to the camera.,0\n5635,anetv_NHznDFD3V3k,10085,Man is in the subway holding a vacuum cleaning the floor. people,Man is in the subway holding a vacuum cleaning the floor.,people,gold,are doing karate moves in a living room.,are sitting on benches on the subway.,vacuums down the offices of carpet.,are sitting in a chair getting a tattoo.,1\n5636,anetv_NHznDFD3V3k,12122,\"The man then takes out fries and dumps them on the floor and begins eating the fries off the ground. While he is doing it, several people walking by stop\",The man then takes out fries and dumps them on the floor and begins eating the fries off the ground.,\"While he is doing it, several people walking by stop\",gold,watch and start chopping a sandwich.,eating it up and ends with him walking.,holding the tray and shutting it out.,to take pictures in amusement that he is eating off the ground.,3\n5637,anetv_NHznDFD3V3k,12121,\"Once there are less people, the man walks in and plugs up a vacuum and begins to clean. The man then\",\"Once there are less people, the man walks in and plugs up a vacuum and begins to clean.\",The man then,gold,lays down on the carpet and fixes him with a metal towel.,uses the vacuum cleaner for space to lift up all the clothes.,takes out fries and dumps them on the floor and begins eating the fries off the ground.,grabs a volume and starts to wax the carpet.,2\n5638,anetv_NHznDFD3V3k,10087,The man throw french fries in the floor and is eating from the floor and grab a bread slice to grab ketchup from the floor. people,The man throw french fries in the floor and is eating from the floor and grab a bread slice to grab ketchup from the floor.,people,gold,are standing in one of the cookie ads and put it in the pineapple pool.,put a wooden fork on the side of the table and then blended.,\"dip cookies in the sunny and put off icing, wet, and make brown sauce.\",are watching the man with contempt.,3\n5639,anetv_SFfB6qvT5FI,12675,He bungee jumps in the air. He,He bungee jumps in the air.,He,gold,goes off the jump four times.,runs over to another high jump competition.,takes a leap into the air and falls down again.,falls off a tower backwards into the air.,3\n5640,anetv_SFfB6qvT5FI,17430,Man is recording a video while is jumping on a bungee. man,Man is recording a video while is jumping on a bungee.,man,gold,is showing the man intensely for the rock.,is going on a lake and getting a sail in the ocean.,is standing on th hills alone.,is in free fall holds to harness.,3\n5641,anetv_SFfB6qvT5FI,17431,Man is in free fall holds to harness. man,Man is in free fall holds to harness.,man,gold,lifts them his legs as he brings them to a harness.,is jumping to a ski rail in a forest.,is jumping from a bridge in a city.,is standing at the top of the hill.,2\n5642,anetv_SFfB6qvT5FI,12674,A man jumps off a tower. He bungee,A man jumps off a tower.,He bungee,gold,runs down the ramp.,jumps in the air.,jumps down a ramp.,jumps on the platform.,1\n5643,anetv_9UpVdljXQ4E,10941,Man is sanding in the middle of street skating. another man,Man is sanding in the middle of street skating.,another man,gold,is doing the same kind exercises.,is in street with him and are skating together.,picks up a stick from a tennis court and walks away.,is wearing a saxophone sitting on the snowy sidewalk recording the video.,1\n5644,anetv_9UpVdljXQ4E,8604,A close up of the skates are shown. A skater,A close up of the skates are shown.,A skater,gold,holds up a skateboard on the pavement.,is talking to in a parade.,bends over as they skate.,changes events in a booth.,2\n5645,anetv_9UpVdljXQ4E,10942,Another man is in street with him and are skating together. a couple,Another man is in street with him and are skating together.,a couple,gold,is swinging with the girl attached to the man.,\"of the men begin to get, but the camera continues to turn away.\",is walking inn the middle of street behind the skater.,of people are laying on stilts in a cross street in the ring.,2\n5646,anetv__Wag6CT_0j8,5040,People are playing soccer on a field of grass. A woman in a black shirt,People are playing soccer on a field of grass.,A woman in a black shirt,gold,sits on a pile of uneven hopscotch.,is standing in the middle of another street.,is standing in the background.,is talking to people holding a microphone.,3\n5647,anetv__Wag6CT_0j8,13561,\"The team wearing white t - shirt scores, and they jumps to celebrate. A tv reporter\",\"The team wearing white t - shirt scores, and they jumps to celebrate.\",A tv reporter,gold,is gathered in the back of the video.,interviews players talking and asking questions to them.,walks in slow move.,is interviewed from a point of people dressed with red and red uniforms.,1\n5648,anetv__Wag6CT_0j8,5041,A woman in a black shirt is talking to people holding a microphone. People,A woman in a black shirt is talking to people holding a microphone.,People,gold,are standing behind them.,\"are standing behind him, playing a guitar.\",are warming up to a camera.,are playing on the drums leading to the beach.,0\n5649,anetv_gvHcfC9snJA,17577,She holds a curling iron in her hair. She,She holds a curling iron in her hair.,She,gold,demonstrates how to clean raketball.,takes the curling iron out of her hair.,braids her hair into a braid.,braids her hair while she finishes the braid.,1\n5650,anetv_xoXTlNWkC7w,13300,\"A black screen is shown and various white words are shown. After, a Caucasian man\",A black screen is shown and various white words are shown.,\"After, a Caucasian man\",gold,is shown playing the hand drums and stomping his foot.,is wearing a pretty black and black leotard.,is shown sucking a fork under a wax bar.,\"is shown on a sandy beach, navigating the large river.\",0\n5651,lsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18868,\"Someone leans forward in her seat, looking thoughtful. As she stares out of the window, memories of someone\",\"Someone leans forward in her seat, looking thoughtful.\",\"As she stares out of the window, memories of someone\",gold,is tending to the destruction.,pass through her mind.,sieve and melt into her skin.,fall face - on someone.,1\n5652,lsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18867,Someone has a notebook open. Someone,Someone has a notebook open.,Someone,gold,hands him a bunch of carrots.,stares at the food.,\"stares tipsily at someone, who nods.\",\"leans forward in her seat, looking thoughtful.\",3\n5653,lsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18866,He looks over at his wife and gives her a little wave. She and someone,He looks over at his wife and gives her a little wave.,She and someone,gold,sit in their doorway.,exchange cheers as they sway to the music.,exchange a knowing smile.,have reached the door.,2\n5654,lsmdc3051_NANNY_MCPHEE_RETURNS-24580,16864,The jar falls over the edge. The Greens,The jar falls over the edge.,The Greens,gold,swings a knife all along the glass.,watch with wide eyes.,are brought up by two fountains.,rises to his feet.,1\n5655,lsmdc3051_NANNY_MCPHEE_RETURNS-24580,16865,Someone faces him and someone bolts. Swirl,Someone faces him and someone bolts.,Swirl,gold,leaves around someone as she heads home.,points to the fingertips of his gun.,load on the cell and plummet.,take a toy growth.,0\n5656,lsmdc3051_NANNY_MCPHEE_RETURNS-24580,16867,A mechanical wood carved man pump up and down. Someone,A mechanical wood carved man pump up and down.,Someone,gold,takes his gun out of the pocket of the pistol holding it from someone's bald holster.,stands by a railing holding his sword as she hands it over.,picks a leaf from her hair and then hurries into the house.,\"casts himself a few inches, folds himself back thoughtfully, then steps onto the ceiling.\",2\n5657,lsmdc3051_NANNY_MCPHEE_RETURNS-24580,16866,Swirl leaves around someone as she heads home. A mechanical wood,Swirl leaves around someone as she heads home.,A mechanical wood,gold,sits in a store.,carved man pump up and down.,has picked up and bear mail.,crash uses a coil to cover.,1\n5658,anetv_l9jSJaV0DA0,7927,\"A boy stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it. The boy then\",\"A boy stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it.\",The boy then,gold,goes back a little and throws a lot of sticks into place.,goes back up to the orange and bends his head off by dipping the surfboard into the water doing it once more.,stands on the board rocking back and forth on it.,puts down the white shirt and spins around on the end when again he does it.,2\n5659,anetv_l9jSJaV0DA0,7926,A boy demonstrates how to ride a skateboard in the street through example. A boy,A boy demonstrates how to ride a skateboard in the street through example.,A boy,gold,\"stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it.\",is seen standing up in snowboard down the hill while talking.,puts the skateboard on a dirt head.,picks up a skateboard while come on and moves it in the background.,0\n5660,anetv_l9jSJaV0DA0,7929,The boy then exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard. The boy then,The boy then exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard.,The boy then,gold,stops in the trunk on the bicycle.,\"spins the skateboard around in the skateboard, and begins to ride the tubes on the side.\",\"comes back with several different angles of the bars, as a bike slides downhill.\",returns to the curbside and puts one foot on the board and the other on the ground as he stands still.,3\n5661,anetv_l9jSJaV0DA0,7928,The boy then stands on the board rocking back and forth on it. The boy then,The boy then stands on the board rocking back and forth on it.,The boy then,gold,jumps down the slope on his back as the man does jumps with water ropes and skis.,begins to smile as he struggles to make the sand work on the office floor as he hops up the stairs.,reaches the top of the diving board.,exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard.,3\n5662,anetv_Z-syOvXCc20,8833,A young child is seen sitting on a swing set when an older man steps behind him and pushes. The boy,A young child is seen sitting on a swing set when an older man steps behind him and pushes.,The boy,gold,moves around and jerks the boy several times while the camera captures him from the upper frame and on.,moves back and fourth on the swing and leads to the boy jumping off and the man looking surprised.,chases and hits the man twice on the walk.,continues swinging the pinata around him as he pans around the tree and show more shots of the equipment.,1\n5663,anetv_Z-2Gwqt_GCQ,7117,\"Then, the person puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor. The person\",\"Then, the person puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor.\",The person,gold,shows how the vacuum is made and puts the mop again in the pile of morgue supplies.,cleans the dog with clean.,removes stains on the floor using a cloth with a special solution.,sets all the bucket again and begins to dust them on the chair.,2\n5664,anetv_Z-2Gwqt_GCQ,7116,\"The person cleans the hard floor using a dust mop. Then, the person\",The person cleans the hard floor using a dust mop.,\"Then, the person\",gold,has the clean hand put leaf tied paint.,\"puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor.\",brushes an exercise off.,throws the men into the bucket.,1\n5665,anetv_Z-2Gwqt_GCQ,7115,A person gather mops and cleaning materials on a hard floor. The person,A person gather mops and cleaning materials on a hard floor.,The person,gold,then stops mopping the floor.,cleans the hard floor using a dust mop.,rub a sponge and sand a rug off a rug.,dresses the flooring on the tiles.,1\n5666,lsmdc3047_LIFE_OF_PI-22063,19645,\"He falls back into the water, hanging by his knees from the life preserver. Waking, he\",\"He falls back into the water, hanging by his knees from the life preserver.\",\"Waking, he\",gold,searches through the viewer and turns on the light on its way.,throws the glass so glowering it becomes impossible.,jolts up and gasps.,\"drops his shiny, dark dress pockets, and goes into the cargo ship.\",2\n5667,lsmdc3047_LIFE_OF_PI-22063,19585,\"Getting his bearings, he looks back at the lifeboat, then gazes out over the roiling water. A giant wave\",\"Getting his bearings, he looks back at the lifeboat, then gazes out over the roiling water.\",A giant wave,gold,knocks the surfer back to the first railcar.,\"forms the ship's sea, which captures the road.\",appears on them as a plane comes flying in the ocean behind them on.,looms stories high above him.,3\n5668,lsmdc3047_LIFE_OF_PI-22063,19674,\"Later still, he ties the life jacket to the end of an oar spoke, balancing the raft's buoyancy. A shark swims\",\"Later still, he ties the life jacket to the end of an oar spoke, balancing the raft's buoyancy.\",A shark swims,gold,\"passed as he works, spotting it.\",about for his head.,leap from the window of a boat ship.,beneath it and stops to sculpting the sand onto his raft.,0\n5669,lsmdc3047_LIFE_OF_PI-22063,19546,He braces himself and climbs to his feet. The ship,He braces himself and climbs to his feet.,The ship,gold,'s huge figure glides over the stair railing above it.,plunges into a wave sending water crashing over him.,fires at hundreds of feet beneath the roiling green canopy of artificial tirith.,\"pulls away, revealing his vest and revealing underneath his hard vest.\",1\n5670,lsmdc3047_LIFE_OF_PI-22063,19587,Someone takes a deep breath and submerges. The wave briefly,Someone takes a deep breath and submerges.,The wave briefly,gold,rolls him as it passes by.,disappears from the night sky.,\"dismounts from the boat, extending his arm as it sails overhead to reveal people yellowstone boarding distance.\",follows someone's gaze.,0\n5671,lsmdc3047_LIFE_OF_PI-22063,19650,\"Opening it, he finds a red booklet titled, Survival at Sea lying atop an array of supplies. Someone\",\"Opening it, he finds a red booklet titled, Survival at Sea lying atop an array of supplies.\",Someone,gold,cautiously enters and stops by the open door talking to the sounds.,peeks into the living room.,\"sits nearby, coloring in a bowl of wax.\",takes it out and flips through pages illustrated with diagrams.,3\n5672,lsmdc3047_LIFE_OF_PI-22063,19584,\"Scrambling to the prow, someone dives into the water. Getting his bearings, he\",\"Scrambling to the prow, someone dives into the water.\",\"Getting his bearings, he\",gold,notices a young man wearing a dark suit.,\"looks back at the lifeboat, then gazes out over the roiling water.\",stands as a general digs through a hole in the gap - between the rocks towards the surface.,reaches into his pocket and pulls out his paper.,1\n5673,lsmdc3047_LIFE_OF_PI-22063,19722,\"At the prow, someone lifts the end of the canvas cover and peers beneath. Nestled inside, Richard Parker\",\"At the prow, someone lifts the end of the canvas cover and peers beneath.\",\"Nestled inside, Richard Parker\",gold,gets to his feet.,pauses to find himself in someone's dingy living room.,snarls up at him but makes no move to rise.,\"calls over a gigantic, half classmates wave.\",2\n5674,lsmdc3047_LIFE_OF_PI-22063,19694,The teen grabs the rodent. Richard Parker,The teen grabs the rodent.,Richard Parker,gold,continues covering the faces.,applies the diving chops behind someone.,tosses the opportunity to peer down at the huge towering creature which races toward him.,\"pauses, staring hungrily.\",3\n5675,lsmdc3047_LIFE_OF_PI-22063,19675,\"A shark swims passed as he works, spotting it. The boy\",\"A shark swims passed as he works, spotting it.\",The boy,gold,is trapped behind the boat.,climbs on top of the raft.,slows to the left and paddles on.,manages to swim after it.,1\n5676,lsmdc3047_LIFE_OF_PI-22063,19617,\"Someone drops the oar and retreats to the prow beam. Clinging by his arms, he\",Someone drops the oar and retreats to the prow beam.,\"Clinging by his arms, he\",gold,\"zips out, closing in on a sea of gulls.\",pulls the man over his head.,swings himself around so his legs dangle over the water.,sticks view of the glowing passage past himself.,2\n5677,lsmdc3047_LIFE_OF_PI-22063,19582,A wave carries the beast to the lifeboat's rim. Richard Parker,A wave carries the beast to the lifeboat's rim.,Richard Parker,gold,reaches the bench and touches the pole.,squeezes it for several seconds.,stands in the reeds.,grabs on and climbs partially aboard.,3\n5678,lsmdc3047_LIFE_OF_PI-22063,19618,\"Clinging by his arms, he swings himself around so his legs dangle over the water. Curling his abdominal muscles, he\",\"Clinging by his arms, he swings himself around so his legs dangle over the water.\",\"Curling his abdominal muscles, he\",gold,mixes the bowl and smears it down his chin.,leans on the bar.,pulls someone on to the foot and rides away on the dirt.,lifts his legs and fits them through the life preserver.,3\n5679,lsmdc3047_LIFE_OF_PI-22063,19711,\"Later, he puts the folded torn out in an empty water can and caps it. As we\",\"Later, he puts the folded torn out in an empty water can and caps it.\",As we,gold,drift back down to someone.,\"drift back down the slide, his messy hair is pumped outside.\",watch from a distance.,\"start down, we see the shape moving toward.\",2\n5680,lsmdc3047_LIFE_OF_PI-22063,19686,Richard Parker lunges at him. He,Richard Parker lunges at him.,He,gold,\"points at his board, then tumbles backwards from wet lifeboat.\",walks towards the village.,\"staggers back, snapping irritably at the fabric.\",pulls his body up to the ground.,2\n5681,lsmdc3047_LIFE_OF_PI-22063,19537,\"He staggers and steadies himself on a railing as he moves along. Turning, he\",He staggers and steadies himself on a railing as he moves along.,\"Turning, he\",gold,faces a door with a port hole.,sees someone's pursed lips hanging slack.,sees two mechanical limbs fly up onto a spacious floor.,sets it down as he bobs.,0\n5682,lsmdc3047_LIFE_OF_PI-22063,19724,Someone gives a small nod and gazes into the animal's fierce amber eyes. The teen,Someone gives a small nod and gazes into the animal's fierce amber eyes.,The teen,gold,\"lowers the flap, then pushes the boat off.\",wears a wet towel as he descends the grand staircase.,regards the image directly to someone's profile.,\"looks around in pain, his gun behind her head.\",0\n5683,lsmdc3047_LIFE_OF_PI-22063,19625,\"The teen gives her a weary smile then leans over the side of the boat. In the water, the banana bundles\",The teen gives her a weary smile then leans over the side of the boat.,\"In the water, the banana bundles\",gold,\"folded, puts its arms around her waist.\",turns and goes to the swimming pool.,push the goateed man to the boat.,float free of the netting.,3\n5684,lsmdc3047_LIFE_OF_PI-22063,19691,\"Richard Parker charges forward, his head jetting up from the canvas' open flap at the bow. His enormous mass knocks someone onto his back on the canvas and the rat\",\"Richard Parker charges forward, his head jetting up from the canvas' open flap at the bow.\",His enormous mass knocks someone onto his back on the canvas and the rat,gold,chases him from across the field.,shoots like a bird.,lifts someone out of the grungy room and into her arms.,scurries along the cover.,3\n5685,lsmdc3047_LIFE_OF_PI-22063,19604,\"Shaking his head, he catches his breath and peers down into the water. He\",\"Shaking his head, he catches his breath and peers down into the water.\",He,gold,flips off his board and puts it on the toilet seat.,\"looks into the portrait, and down the hallway.\",repeatedly lifts his brows and storms off.,watches helplessly as the ship sinks further beneath the churning waves.,3\n5686,lsmdc3047_LIFE_OF_PI-22063,19613,A hyena emerges from the canvas shelter. The hyena,A hyena emerges from the canvas shelter.,The hyena,gold,inserts a pointed look at someone.,darts back under the canvas.,is set up on the dock.,continues on its journey.,1\n5687,lsmdc3047_LIFE_OF_PI-22063,19712,As we watch from a distance. Someone,As we watch from a distance.,Someone,gold,stands from the center of his raft and throws the can with all his might.,\"beats herself upon the wheels, who pushes her harder into the tank.\",\"his gun at the security of two guys, someone shoots a last look at someone, who stands, guns in hand.\",\"looks down, then we zoom on.\",0\n5688,lsmdc3047_LIFE_OF_PI-22063,19728,\"Reading it on his bobbing raft, someone looks over his shoulder. Now someone\",\"Reading it on his bobbing raft, someone looks over his shoulder.\",Now someone,gold,puts two glasses of white wine on a table.,reads through the book and follows its advice.,\"walks into a wild neighborhood, squinting in the bright sun.\",joins the monkey in a large blue coupe.,1\n5689,lsmdc3047_LIFE_OF_PI-22063,19561,A sailor gives him a life jacket. The someone,A sailor gives him a life jacket.,The someone,gold,looks back over the warehouse.,struggles to free a lifeboat carrying the cook.,holds her overalls and boots and strides off.,joins in slow motion and pulled into the backpacks that falls off the jetty.,1\n5690,lsmdc3047_LIFE_OF_PI-22063,19579,He slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver. Two paws and a large furry head,He slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver.,Two paws and a large furry head,gold,\"on a cloud who were propped up on the plant, gazing out on its hands.\",\"appears outside of the door with the cat on its head, crawling dipped on the water, beside it.\",emerge from the center of the ring.,\"creature, and someone marches down the middle of his forest towards someone.\",2\n5691,lsmdc3047_LIFE_OF_PI-22063,19656,The life preserver crowns it and three long handled oars criss - cross out from it. As someone,The life preserver crowns it and three long handled oars criss - cross out from it.,As someone,gold,struggles to maneuver it into the water.,\"turns, 400 sailors turn toward the radio.\",rips the van door open.,\"rolls to a stop, people watch.\",0\n5692,lsmdc3047_LIFE_OF_PI-22063,19567,Someone loses his grip on the lines and the lifeboat plummets to the sea. Someone,Someone loses his grip on the lines and the lifeboat plummets to the sea.,Someone,gold,\"stares at the sky, then turns his head, as richard parker struggles toward a board.\",rolls to someone who trips unsteadily in the sand.,lies surfing on a jet.,lands on his belly and struggles to hold on as the boat bucks on the churning waters.,3\n5693,lsmdc3047_LIFE_OF_PI-22063,19680,\"Now, perched at the prow of the lifeboat, someone drinks down the contents of a can. He\",\"Now, perched at the prow of the lifeboat, someone drinks down the contents of a can.\",He,gold,helps herself to her feet.,\"fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft.\",\"stirs the wave, and runs across the pier into the water.\",\"turns to someone, who hands him the tin, and sits.\",1\n5694,lsmdc3047_LIFE_OF_PI-22063,19550,\"Sobered, he races back inside. He\",\"Sobered, he races back inside.\",He,gold,staggers through a corridor.,stumbles back out from another box.,straightens on his oversized leather jacket.,stands up and starts to run.,0\n5695,lsmdc3047_LIFE_OF_PI-22063,19540,\"As he steps along a walkway, his feet slide on the wet flooring. He\",\"As he steps along a walkway, his feet slide on the wet flooring.\",He,gold,stumbles as the ship violently rocks and he catches himself on a banister.,presses a button and thrusts the crank off the leaves frame.,\"kisses his head, then takes his turn and positions it into the rack lamp.\",takes on the light as he holds the house beneath his neck.,0\n5696,lsmdc3047_LIFE_OF_PI-22063,19653,He takes one out and tosses it to Orange Juice. The orangutan,He takes one out and tosses it to Orange Juice.,The orangutan,gold,\"man flings her around, as the agent gets in her saddle.\",melts in and out of dough then rings with a pop so happy it is free.,takes photographs of the whole point of view.,\"picks it up, turning it in her hands and feet as she examines it.\",3\n5697,lsmdc3047_LIFE_OF_PI-22063,19548,It leaves the upper deck flooded as he recovers. Someone,It leaves the upper deck flooded as he recovers.,Someone,gold,leans towards the slats of tiled walkway.,watches two sailors moving frantically below with flashlights.,focuses on his mouth legs and swims down the shaft.,pulls out a lever and it's med women are seen up close on it.,1\n5698,lsmdc3047_LIFE_OF_PI-22063,19592,The deck lights glow as the ocean's depths claim the vessel. Someone,The deck lights glow as the ocean's depths claim the vessel.,Someone,gold,filters all along the eiffel tower.,follow both outside at the same path.,lowers it from her grasp and ventures forward a few steps.,looks on helplessly as the ship descends into the deep.,3\n5699,lsmdc3047_LIFE_OF_PI-22063,19669,Richard Parker swats it from his grasp. As the tiger,Richard Parker swats it from his grasp.,As the tiger,gold,climbs onto the canvas.,\"chucks it in place, the pilot's crotch dangles on the tile.\",brings his hand back.,draws back on his tip clock.,0\n5700,lsmdc3047_LIFE_OF_PI-22063,19583,\"Richard Parker grabs on and climbs partially aboard. Scrambling to the prow, someone\",Richard Parker grabs on and climbs partially aboard.,\"Scrambling to the prow, someone\",gold,is at the bottom with little splash.,smacks him on the head.,dives into the water.,races up the front of the ship.,2\n5701,lsmdc3047_LIFE_OF_PI-22063,19647,\"In the boat, the zebra lies dead. Orange Juice\",\"In the boat, the zebra lies dead.\",Orange Juice,gold,bounces through the air and explodes.,climbs into the back of the truck's body.,split many stories and faces across the water.,\"slumps against the edge of the canvas cover taking slow, deep breaths.\",3\n5702,lsmdc3047_LIFE_OF_PI-22063,19636,\"Rediscovering someone, it leaps at him. The teen\",\"Rediscovering someone, it leaps at him.\",The teen,gold,lands on the old man's face.,scrambles back and fends off harry with the oar.,\"turns back on the line, raising his fist.\",jerks his head upward.,1\n5703,lsmdc3047_LIFE_OF_PI-22063,19709,He write with a pencil. He,He write with a pencil.,He,gold,absently trots a song through his pages.,\"finds something, and then stands.\",takes the bag from someone's bag.,presses the tip to the paper making a period.,3\n5704,lsmdc3047_LIFE_OF_PI-22063,19700,Someone pushes off from the boat on his raft. Richard Parker,Someone pushes off from the boat on his raft.,Richard Parker,gold,stretches out his hand to get the veteran from someone.,\"swims away from the ship, just before someone is gone.\",\"steps forward from the water's edge, then rides downhill.\",returns to the center of the boat as the frightened teen paddles away.,3\n5705,lsmdc3047_LIFE_OF_PI-22063,19608,\"A shark passes beneath him. Glancing down at it, someone\",A shark passes beneath him.,\"Glancing down at it, someone\",gold,struggles his way to the canvas covered bow.,\"limps across the field, trapped in sand.\",passes in a different direction.,sees two young boys crawling topples.,0\n5706,lsmdc3047_LIFE_OF_PI-22063,19572,The lifeboat carries someone through the wreckage. A boom,The lifeboat carries someone through the wreckage.,A boom,gold,holds the shore of a wide lake near the river.,sweeps low over his head.,falls from the raft's stern.,struggles against the shore surface.,1\n5707,lsmdc3047_LIFE_OF_PI-22063,19570,It carries him past the shouting men at the edge of the ship's deck. A giant wave,It carries him past the shouting men at the edge of the ship's deck.,A giant wave,gold,washes them from view.,stops at the costco paddy field.,knocks the keen off the submarine.,of soldiers decks themselves.,0\n5708,lsmdc3047_LIFE_OF_PI-22063,19564,Someone tumbles across the canvas cover and hangs off the edge. Someone,Someone tumbles across the canvas cover and hangs off the edge.,Someone,gold,rams a car with a long pump.,climbs back up and scrambles around as the others shout at him.,makes it for her mother.,does a wheelie and lifts his mobile to the air.,1\n5709,lsmdc3047_LIFE_OF_PI-22063,19682,\"Someone takes a handful of cans from the supply hatch and drops those in as well. Taking out small boxes, he\",Someone takes a handful of cans from the supply hatch and drops those in as well.,\"Taking out small boxes, he\",gold,holds them on the top of a suitcase.,pulls a box from someone's handcuffs.,swings an ax onto a stone.,chucks one in and opens the other.,3\n5710,lsmdc3047_LIFE_OF_PI-22063,19665,\"Landing on the zebra, Richard Parker kills the hyena with a wrench of his jaws. Behind him, someone\",\"Landing on the zebra, Richard Parker kills the hyena with a wrench of his jaws.\",\"Behind him, someone\",gold,pulls photos off a pumpkin.,joins his hmong neighbor in the foyer.,scrambles for his makeshift raft.,\"tries to open, and pulls out a small corn's.\",2\n5711,lsmdc3047_LIFE_OF_PI-22063,19626,\"In the water, the banana bundles float free of the netting. Someone\",\"In the water, the banana bundles float free of the netting.\",Someone,gold,gathers up the net.,takes off the decree equipment.,shifts her head to someone.,walks aside as someone opens the front door.,0\n5712,lsmdc3047_LIFE_OF_PI-22063,19701,\"Richard Parker returns to the center of the boat as the frightened teen paddles away. Stopping a few yards from the boat, someone\",Richard Parker returns to the center of the boat as the frightened teen paddles away.,\"Stopping a few yards from the boat, someone\",gold,flips them over and laughs.,wheels the boat back to the boat.,turns and blinks at someone.,vomits into the water.,3\n5713,lsmdc3047_LIFE_OF_PI-22063,19622,\"Someone follows its gaze, peering across the surf. Harry\",\"Someone follows its gaze, peering across the surf.\",Harry,gold,takes a cigarette from her purse and stubs it out in the wastebasket.,shadow pedestrians through a photo.,\"of a and someone, paddles in the water.\",ducks into the canvas.,3\n5714,lsmdc3047_LIFE_OF_PI-22063,19549,Someone watches two sailors moving frantically below with flashlights. Someone,Someone watches two sailors moving frantically below with flashlights.,Someone,gold,looks out the window.,reaches for them futilely as they wash overboard.,sits alone through the large doorway and sees a student from tunnels moving along trees.,addresses from the recruits and someone climbs onto the multitude of seats.,1\n5715,lsmdc3047_LIFE_OF_PI-22063,19563,\"The someone, captain and the sailor shove him onto the boat. Someone\",\"The someone, captain and the sailor shove him onto the boat.\",Someone,gold,runs in with the soldier chasing him down.,tumbles across the canvas cover and hangs off the edge.,\"moves closer to someone, who musters a spell.\",faces someone who stands.,1\n5716,lsmdc3047_LIFE_OF_PI-22063,19588,\"The wave briefly rolls him as it passes by. Staying under, someone\",The wave briefly rolls him as it passes by.,\"Staying under, someone\",gold,swims past a shark as he makes his way beyond the lifeboat.,\"steps up to the top of the boat, stands up and paddles higher.\",holds sparking arms under a rope.,hops back over his hood and claps an elbow to the bar shakes his head.,0\n5717,lsmdc3047_LIFE_OF_PI-22063,19652,\"Lifting another hatch, the teen finds it packed with life jackets. He\",\"Lifting another hatch, the teen finds it packed with life jackets.\",He,gold,chases someone through a wide parking walkway.,takes one out and tosses it to orange juice.,\"pulls it up, revealing her body to balance a train from the station ramp.\",\"glances down at the creature's body for a moment, then hurries from the bathroom.\",1\n5718,lsmdc3047_LIFE_OF_PI-22063,19707,As we peer down on them from above. Someone,As we peer down on them from above.,Someone,gold,maintains his cross - legged pose as he watches the boat.,is getting shown fully clothed.,\"stares expectantly at someone's head then runs over to him, removing his arm.\",slides the wedding suite drapes shut and draws one after two.,0\n5719,lsmdc3047_LIFE_OF_PI-22063,19586,A giant wave looms stories high above him. Someone,A giant wave looms stories high above him.,Someone,gold,reaches for the girl's hand to open her legs.,takes a deep breath and submerges.,lifts his hand and pulls out from the smoke.,steps onto a raft above the ocean.,1\n5720,lsmdc3047_LIFE_OF_PI-22063,19593,\"Turning away, he swims. Two other sharks\",\"Turning away, he swims.\",Two other sharks,gold,greet him as he catches.,lift them off and finds her resting on the table.,suspended from small decks.,fight over a fresh kill beneath him.,3\n5721,lsmdc3047_LIFE_OF_PI-22063,19535,Someone climbs a flight of stairs and enters a corridor. The door,Someone climbs a flight of stairs and enters a corridor.,The door,gold,swings shut behind him.,\"carrying a woman, wearing a brown jeans, sits beside someone, who walks into the chaise lounge.\",opens and someone steps to the bathroom door and walks inside.,swings open into someone's living room.,0\n5722,lsmdc3047_LIFE_OF_PI-22063,19602,\"He leans far out, clinging to the mast. A wave\",\"He leans far out, clinging to the mast.\",A wave,gold,sends a blast of spray into his face.,reflects a hundred palm something.,crawls out a rescue boat full of manmade prisoners.,knocks him across the ground towards him.,0\n5723,lsmdc3047_LIFE_OF_PI-22063,19692,His enormous mass knocks someone onto his back on the canvas and the rat scurries along the cover. Richard Parker,His enormous mass knocks someone onto his back on the canvas and the rat scurries along the cover.,Richard Parker,gold,\"sneaks up beside him, on the edge of the unmasked past cliff.\",emerges from the opening at the boat's center and climbs partway up on the canvas.,strokes the troll's bloody nose.,\"sits asleep on a bench from a log and stands beside the eagles, resting his hand on his stomach.\",1\n5724,lsmdc3047_LIFE_OF_PI-22063,19568,Someone lands on his belly and struggles to hold on as the boat bucks on the churning waters. Someone,Someone lands on his belly and struggles to hold on as the boat bucks on the churning waters.,Someone,gold,\"slides backward, landing at a wave that buoys him back on the boat again.\",leaps up and pretends to clouds the jet.,\"leans down, watching him with a hopeful smile but salutes feet.\",rushes across the water toward a steady gait.,0\n5725,lsmdc3047_LIFE_OF_PI-22063,19717,\"Tethered a few yards off, the lifeboat appears empty and peaceful. Richard Parker\",\"Tethered a few yards off, the lifeboat appears empty and peaceful.\",Richard Parker,gold,\"emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim.\",slowly open the wings to reveal a deep gap near a nearby branch.,produces the plastic cover.,peers glances toward his commander's face to ram ready to be something.,0\n5726,lsmdc3047_LIFE_OF_PI-22063,19620,\"From his makeshift seat, he watches Harry mid - boat as the hyena tries to climb up onto the canvas. The beast\",\"From his makeshift seat, he watches Harry mid - boat as the hyena tries to climb up onto the canvas.\",The beast,gold,is hauled off top by a man who bounces.,has its feet still.,\"has a huge but overhand ball on its hand, lies it on either side of the wooden board, narrowly missing people.\",\"makes it only half way up, its hind legs staggering with the rocking of the boat.\",3\n5727,lsmdc3047_LIFE_OF_PI-22063,19634,\"He drops to all fours and picks up the bucket. Lying on his belly, he\",He drops to all fours and picks up the bucket.,\"Lying on his belly, he\",gold,slams it against the boat's hull.,opens a dimly lit living room.,\"shows someone some tiny spiders, rolling on muddy ravine between shaving i porcelain stick.\",takes a covered bundle of ice from his lap and tucks it around her mouth.,0\n5728,lsmdc3047_LIFE_OF_PI-22063,19681,\"He fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft. Someone\",\"He fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft.\",Someone,gold,is forced to an isolated shore.,frowns sadly and peers around the curtains for clouds.,takes a handful of cans from the supply hatch and drops those in as well.,is being carried into several rough mountain and ranging from different ages.,2\n5729,lsmdc3047_LIFE_OF_PI-22063,19639,\"Harry stops at the center, his body convulsing. He\",\"Harry stops at the center, his body convulsing.\",He,gold,touches the clock and opens his eyes.,vomits on the floor.,turns and fumbles as someone slips away.,finishes and jumps up.,1\n5730,lsmdc3047_LIFE_OF_PI-22063,19727,\"Now a map from the survival book illustrates the world's ocean currents with inter - swirling circles. Reading it on his bobbing raft, someone\",Now a map from the survival book illustrates the world's ocean currents with inter - swirling circles.,\"Reading it on his bobbing raft, someone\",gold,walks down beside someone.,\"waves to the bus, then signals over to the captain.\",looks over his shoulder.,sits up at a table.,2\n5731,lsmdc3047_LIFE_OF_PI-22063,19595,The tempestuous waters swirl over someone as he makes his way back to the surface. The teen,The tempestuous waters swirl over someone as he makes his way back to the surface.,The teen,gold,\"averts his gaze, leaving someone alone, then shakes his head.\",gets up to the edge the edge of the bunk and watches him.,\"peers into his hair with a furrowed brow, then blinks.\",thrusts his head above water and gasps.,3\n5732,lsmdc3047_LIFE_OF_PI-22063,19703,\"At night, a full moon shines through a gap in the clouds. On the boat, Richard Parker\",\"At night, a full moon shines through a gap in the clouds.\",\"On the boat, Richard Parker\",gold,shoots his point of view at someone.,\"run out of the jungle as the exposed cabin of his boat, then explodes against a large jug across the river.\",drags the zebra carcass out of view.,hauls someone toward an iceberg.,2\n5733,lsmdc3047_LIFE_OF_PI-22063,19576,\"He frantically waves his arm at the ship. Peering into the seemingly endless expanse of rolling waves, someone\",He frantically waves his arm at the ship.,\"Peering into the seemingly endless expanse of rolling waves, someone\",gold,spots a figure in the water.,jumps off a thread and flips him down.,\"lowers him into a deep, exhausted daze.\",raises a hand over its nose.,0\n5734,lsmdc3047_LIFE_OF_PI-22063,19629,\"Facing someone, she grimly works her lips and folds her long arms. As someone\",\"Facing someone, she grimly works her lips and folds her long arms.\",As someone,gold,\"picks up the book, someone crouches.\",rubs off her face.,shimmies at his knee from someone.,faces her with a concerned expression.,3\n5735,lsmdc3047_LIFE_OF_PI-22063,19716,\"The boy turns, looking over his shoulder. Tethered a few yards off, the lifeboat\",\"The boy turns, looking over his shoulder.\",\"Tethered a few yards off, the lifeboat\",gold,reaches the shore and stands in the crop.,is flung open as someone heads into the shop.,spins away into the area as his raft trembles.,appears empty and peaceful.,3\n5736,lsmdc3047_LIFE_OF_PI-22063,19624,Someone extends an oar to her and she climbs aboard. The teen,Someone extends an oar to her and she climbs aboard.,The teen,gold,gives her a weary smile then leans over the side of the boat.,rolls her hips and sits close near the tiger.,chase his friend onto the ground and guides their hips in the air.,\"stands in front a bandage and removes her jacket, then gazes around the notepad and covers the daughter's eyes.\",0\n5737,lsmdc3047_LIFE_OF_PI-22063,19676,The boy climbs on top of the raft. Now Richard Parker,The boy climbs on top of the raft.,Now Richard Parker,gold,lies still beneath the canvas shelter.,zooms away from the rocky cave climbing.,\"throws himself to his feet, tries to start the fire.\",rides away from the wreck as someone readies the cold bulk of the boat.,0\n5738,lsmdc3047_LIFE_OF_PI-22063,19581,Someone jabs futilely at the tiger with the oar. A wave,Someone jabs futilely at the tiger with the oar.,A wave,gold,spreads beneath someone's face.,carries the beast to the lifeboat's rim.,\"flies past, leaving their pursuers in the hole.\",smashes through the window on which we'd see.,1\n5739,lsmdc3047_LIFE_OF_PI-22063,19601,\"Someone climbs back on the canvas cover, then scrambles to the prow. He\",\"Someone climbs back on the canvas cover, then scrambles to the prow.\",He,gold,\"leans far out, clinging to the mast.\",turns forward and tugs on the metal rail which rolls himself up onto generator prepped.,turns back to the possessed figure and stares in at the spider.,\"closes someone's book, then gives a determined frown.\",0\n5740,lsmdc3047_LIFE_OF_PI-22063,19640,\"He vomits on the floor. Licking his chops, he\",He vomits on the floor.,\"Licking his chops, he\",gold,swerves to center edge of the table and grabs it.,wipes dead sugar using the substance.,makes another try for someone but slumps weakly against the canvas.,slips past the broad partition then peers out from his envelope.,2\n5741,lsmdc3047_LIFE_OF_PI-22063,19569,\"Someone slides backward, landing at a wave that buoys him back on the boat again. It\",\"Someone slides backward, landing at a wave that buoys him back on the boat again.\",It,gold,is nearly squishes by the fan in the water.,carries him past the shouting men at the edge of the ship's deck.,checks the suspended hurdle he aims it into the sea.,soars down the road now choppy water.,1\n5742,lsmdc3047_LIFE_OF_PI-22063,19633,\"Standing on the canvas cover, someone turns. He\",\"Standing on the canvas cover, someone turns.\",He,gold,seizes him up and throws him to the ground.,drops to all fours and picks up the bucket.,grips his wand with both hands.,\"unfastens, exposing someone's waist.\",1\n5743,lsmdc3047_LIFE_OF_PI-22063,19543,\"He struggles to perform a worshipful dance. Getting to his feet, he\",He struggles to perform a worshipful dance.,\"Getting to his feet, he\",gold,moves quickly and undoes a strap over the boy's arm.,adjusts his light momentarily.,notices a red light flashing from a high post.,lifts his head and lifts it up to his shoulders.,2\n5744,lsmdc3047_LIFE_OF_PI-22063,19723,\"Nestled inside, Richard Parker snarls up at him but makes no move to rise. Someone\",\"Nestled inside, Richard Parker snarls up at him but makes no move to rise.\",Someone,gold,sticks his rifle's ear towards it!,\"moves out of the room, and walks away, clinging to his flippers.\",gives a small nod and gazes into the animal's fierce amber eyes.,lets him go with his ax as the wind howls around him.,2\n5745,lsmdc3047_LIFE_OF_PI-22063,19538,\"Turning, he faces a door with a port hole. Someone\",\"Turning, he faces a door with a port hole.\",Someone,gold,peers through at the lightning flashing in the darkness.,takes a cluster of straws as he enters the bites.,removes his pick from someone's box and holds it together.,\"remains on, as someone climbs into his chair.\",0\n5746,lsmdc3047_LIFE_OF_PI-22063,19713,Someone stands from the center of his raft and throws the can with all his might. It,Someone stands from the center of his raft and throws the can with all his might.,It,gold,\"losing the grip, she goes closer to him, and raises his suspenders over the short drop of the capsizing rafters.\",tries to stop but it's locked.,lands close to us and bobs peacefully in the water.,someone blot out the fleeing robbers.,2\n5747,lsmdc3047_LIFE_OF_PI-22063,19657,As someone struggles to maneuver it into the water. Harry,As someone struggles to maneuver it into the water.,Harry,gold,emerges from the canvas shelter.,\", someone heads for the water.\",\"over the net, someone uses the mic.\",soar through the murky darkness of night.,0\n5748,lsmdc3047_LIFE_OF_PI-22063,19672,\"Someone leaps from the boat, following a rope, tethering the raft to the lifeboat. He tries to climb on top of the raft but it\",\"Someone leaps from the boat, following a rope, tethering the raft to the lifeboat.\",He tries to climb on top of the raft but it,gold,'s firmly for him.,falls on the surface.,rolls under his weight.,\"enjoys silently, then pulls into the again steering.\",2\n5749,lsmdc3047_LIFE_OF_PI-22063,19702,\"Stopping a few yards from the boat, someone vomits into the water. At night, a full moon\",\"Stopping a few yards from the boat, someone vomits into the water.\",\"At night, a full moon\",gold,shines through a gap in the clouds.,is peeking through in the backyard.,shines on the oar ship.,glows on the pale sky of autumn's horizon.,0\n5750,lsmdc3047_LIFE_OF_PI-22063,19718,\"Richard Parker emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim. He\",\"Richard Parker emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim.\",He,gold,\"slips in the girdle, moves on to his kayak, and climbs down from its lifeless back.\",gazes out over the vast expanse of motion - less sunlit sea.,\"slowly raises his hands up high in the air, then faces over.\",\"is gaunt, carried off to his cage.\",1\n5751,lsmdc3047_LIFE_OF_PI-22063,19603,\"A wave sends a blast of spray into his face. Shaking his head, he\",A wave sends a blast of spray into his face.,\"Shaking his head, he\",gold,catches his breath and peers down into the water.,catches the safety view leaving his tracks.,drinks the blood soaking the boy's eyes.,gazes out his window as the sun flares.,0\n5752,lsmdc3047_LIFE_OF_PI-22063,19580,Two paws and a large furry head emerge from the center of the ring. Someone,Two paws and a large furry head emerge from the center of the ring.,Someone,gold,\"looks at someone, hearing the sound of the witch.\",\"stands upright in front of the man, her mouth brushing and crying.\",jabs futilely at the tiger with the oar.,walking out on a beach help with life.,2\n5753,lsmdc3047_LIFE_OF_PI-22063,19685,\"Looking down, he finds a sizable rat scurrying over the cans. Someone\",\"Looking down, he finds a sizable rat scurrying over the cans.\",Someone,gold,grabs the soap from his hands.,glances down at the horses shoulder.,stares at the helpless enemy.,watches it as he eats.,3\n5754,lsmdc3047_LIFE_OF_PI-22063,19689,\"He walks along the benches lining the boat's perimeter, pausing to paw at the zebra carcass. With the animal distracted, someone\",\"He walks along the benches lining the boat's perimeter, pausing to paw at the zebra carcass.\",\"With the animal distracted, someone\",gold,looks at the typewriter then leaps to his car.,clears a decision and dashes across toward the french gate.,starts to climb from the prow.,grabs the motorcycle from his growling mechanical arms.,2\n5755,lsmdc3047_LIFE_OF_PI-22063,19621,\"The beast makes it only half way up, its hind legs staggering with the rocking of the boat. The spotted hyena\",\"The beast makes it only half way up, its hind legs staggering with the rocking of the boat.\",The spotted hyena,gold,knocks several traditional items on the jukebox.,\"around the boat's prow, but someone points back to the stern.\",shakes the tiger back up.,\"keeps its four paws on the canvas, staring at someone.\",3\n5756,lsmdc3047_LIFE_OF_PI-22063,19594,Two other sharks fight over a fresh kill beneath him. The tempestuous waters,Two other sharks fight over a fresh kill beneath him.,The tempestuous waters,gold,are shown on in the nature of dismay.,pan the flares again to capture a effect.,probe the surface of the compartments tossed out over the sphere.,swirl over someone as he makes his way back to the surface.,3\n5757,lsmdc3047_LIFE_OF_PI-22063,19532,His parents sleep in a bed across the room. He,His parents sleep in a bed across the room.,He,gold,positions himself on a desk in front of him with his mouth open.,leans down to the bottom bunk and shakes his sleeping brother.,stands beside him and someone without breaths.,returns from his bottle to the fat guy.,1\n5758,lsmdc3047_LIFE_OF_PI-22063,19545,\"Falling again, someone slides into a barrier at the edge of the upper deck. He\",\"Falling again, someone slides into a barrier at the edge of the upper deck.\",He,gold,cowers onto someone's side in front of the trembling soldier.,speeds off and soars onto the mountainside.,braces himself and climbs to his feet.,\"stands on the edge of the ropes, and he hurdles a bend.\",2\n5759,lsmdc3047_LIFE_OF_PI-22063,19651,\"Someone takes it out and flips through pages illustrated with diagrams. Lifting another hatch, the teen\",Someone takes it out and flips through pages illustrated with diagrams.,\"Lifting another hatch, the teen\",gold,offers a unique web to someone.,sets up a newspaper and writes someone's solution.,rubs his fingers on his clock.,finds it packed with life jackets.,3\n5760,lsmdc3047_LIFE_OF_PI-22063,19557,\"Someone hangs onto the door frame and tries futilely to pull himself into his family's quarters. Releasing it, he\",Someone hangs onto the door frame and tries futilely to pull himself into his family's quarters.,\"Releasing it, he\",gold,regains his hold as the gang leader grabs his friend's torch and cuts his cane through paper.,slides across the sofa into frame.,pulls the throttle shut.,drifts back down the corridor and returns to the deck.,3\n5761,lsmdc3047_LIFE_OF_PI-22063,19668,\"Standing, someone picks up the oar. Richard Parker\",\"Standing, someone picks up the oar.\",Richard Parker,gold,swats it from his grasp.,lifts his brow and watches his son.,jumps out of a fish window and sits up.,passes it to the waiter.,0\n5762,lsmdc3047_LIFE_OF_PI-22063,19693,Richard Parker emerges from the opening at the boat's center and climbs partway up on the canvas. The rat,Richard Parker emerges from the opening at the boat's center and climbs partway up on the canvas.,The rat,gold,catches the marauder's feeding - shaped fish.,sticks it behind him and gazes up at the muddy bush.,climbs up someone's arm and over his head.,follows someone as he detaches in the arms of the naked body.,2\n5763,lsmdc3047_LIFE_OF_PI-22063,19679,\"Someone eagerly climbs in to retrieve them. Now, perched at the prow of the lifeboat, someone\",Someone eagerly climbs in to retrieve them.,\"Now, perched at the prow of the lifeboat, someone\",gold,drives by at the end of a beautiful day.,watches as dozens of surfers's boats soar through the air.,crouches down on the low seat of her raft.,drinks down the contents of a can.,3\n5764,lsmdc3047_LIFE_OF_PI-22063,19599,Someone climbs on to the deck with the zebra who lies curled up on its side on one end. Knee - deep water,Someone climbs on to the deck with the zebra who lies curled up on its side on one end.,Knee - deep water,gold,looks around the cross in bright sunlight.,\", someone opens the coconut.\",\", someone packs his coat and pillow.\",sloshes around the deck.,3\n5765,lsmdc3047_LIFE_OF_PI-22063,19643,\"Someone and Orange Juice watch helplessly as Harry kills the zebra. On a gently rolling current, someone\",Someone and Orange Juice watch helplessly as Harry kills the zebra.,\"On a gently rolling current, someone\",gold,passes for each more fondly.,sits in the makeshift seat at the boats prow.,kicks against with photos of us.,in a soft sony armchair.,1\n5766,lsmdc3047_LIFE_OF_PI-22063,19649,\"He lifts away a hatch beneath the canvas cover and finds a duffle inside. Opening it, he\",He lifts away a hatch beneath the canvas cover and finds a duffle inside.,\"Opening it, he\",gold,\"finds a red booklet titled, survival at sea lying atop an array of supplies.\",steps past the small fuel pipe which looks up at the cloudy sky.,pulls out a pistol and gives it to a worker.,\"finds the man's toad, which is pushed down by someone.\",0\n5767,lsmdc3047_LIFE_OF_PI-22063,19631,Someone settles wearily onto the canvas. He,Someone settles wearily onto the canvas.,He,gold,digs around the manuscript.,gives a resigned sigh.,replaces it in a tawny dog rack.,rises from his feet and ventures down.,1\n5768,lsmdc3047_LIFE_OF_PI-22063,19666,\"Behind him, someone scrambles for his makeshift raft. As he pushes it overboard, the tiger\",\"Behind him, someone scrambles for his makeshift raft.\",\"As he pushes it overboard, the tiger\",gold,creeps toward the creature.,bares its teeth as he pulls someone's gun gun.,mounts a wave as the pursues towers over him.,faces him with a snarl.,3\n5769,lsmdc3047_LIFE_OF_PI-22063,19721,\"Tugging hand over hand, he reels the boat closer. At the prow, someone\",\"Tugging hand over hand, he reels the boat closer.\",\"At the prow, someone\",gold,lifts the end of the canvas cover and peers beneath.,lies dead on his.,lowers his binoculars and watches himself disappearing.,distorts his emotional gaze to the shotgun box.,0\n5770,lsmdc3047_LIFE_OF_PI-22063,19558,An animal leaps passed him. A bird,An animal leaps passed him.,A bird,gold,seeks refuge in the nearby tower.,swoops up and hurls it high into the board.,bursts through and went from the beam.,scampers from its nose.,0\n5771,lsmdc3047_LIFE_OF_PI-22063,19541,He stumbles as the ship violently rocks and he catches himself on a banister. He,He stumbles as the ship violently rocks and he catches himself on a banister.,He,gold,drops someone on the octagonal structure.,\"catches himself on a railing and clings to it as he beams down at the churning, roiling ocean.\",runs through the crowd and flings it down onto his shoulder.,flashes proudly and takes his glass from the flask.,1\n5772,lsmdc3047_LIFE_OF_PI-22063,19696,\"Someone throws the rat at the tiger who catches it in his mouth. As Richard Parker slurps it down, someone\",Someone throws the rat at the tiger who catches it in his mouth.,\"As Richard Parker slurps it down, someone\",gold,'s dad gets down from the water.,jumps off the boat.,\"shoots the man near the corridor, grabs the fish, and flings him around a floor.\",fires over the deck and grabs the full tank.,1\n5773,lsmdc3047_LIFE_OF_PI-22063,19591,His limbs splayed as he stares at the enormous craft. The deck lights,His limbs splayed as he stares at the enormous craft.,The deck lights,gold,flare up registering the wisps of peach.,glow as the ocean's depths claim the vessel.,debris rolling across the tiled floor.,slide down in a flurry of feathers.,1\n5774,lsmdc3047_LIFE_OF_PI-22063,19729,\"Someone notices a rash along his side. Later, he\",Someone notices a rash along his side.,\"Later, he\",gold,\"speeds up its washed walkway, as sunlight shines in the windows.\",checks his keys home then pauses again.,\"lies back, his hands over his face.\",pushes the announcers stand.,2\n5775,lsmdc3047_LIFE_OF_PI-22063,19596,\"The teen thrusts his head above water and gasps. With long strokes, he\",The teen thrusts his head above water and gasps.,\"With long strokes, he\",gold,gazes into the tiger's compartment.,swims back to the lifeboat.,reaches to the bottom and slows.,puts his hands in the air.,1\n5776,lsmdc3047_LIFE_OF_PI-22063,19673,\"He tries to climb on top of the raft but it rolls under his weight. Later, the boy\",He tries to climb on top of the raft but it rolls under his weight.,\"Later, the boy\",gold,persists as the bundle of life jackets loosens and rolls beneath his grasp.,whips his own hair and smooths it down.,holds the bike to put a tire on one man on the other side.,makes his way round a grave that sits beside a ledge.,0\n5777,lsmdc3047_LIFE_OF_PI-22063,19575,Someone peers across the giant waves and locates the sinking ship. He,Someone peers across the giant waves and locates the sinking ship.,He,gold,enters a state in a black driving suit.,slurps out a powder.,notices a whistle on his life jacket and blows it.,rears up and dives onto the deck.,2\n5778,lsmdc3047_LIFE_OF_PI-22063,19632,He gives a resigned sigh. Now flies,He gives a resigned sigh.,Now flies,gold,\"a humble boathouse, a lovely opening door opens.\",pull out of the pickup with someone.,swarm around the injured zebra.,\"front of a modest apartment building, where someone is sleeping and working out several groomers.\",2\n5779,lsmdc3047_LIFE_OF_PI-22063,19555,\"Reaching a door at the end of the corridor, he struggles to open it. It\",\"Reaching a door at the end of the corridor, he struggles to open it.\",It,gold,falls on the floor.,springs open releasing a powerful current of water and air bubbles.,removes his mask.,\"grabs another man, looks around his neck and lays them on.\",1\n5780,lsmdc3047_LIFE_OF_PI-22063,19547,The ship plunges into a wave sending water crashing over him. It,The ship plunges into a wave sending water crashing over him.,It,gold,emerge from its hind tentacles.,materializes to aim them at the ground.,leaves the upper deck flooded as he recovers.,stretches out his arms.,2\n5781,lsmdc3047_LIFE_OF_PI-22063,19705,\"Richard Parker peers out at him from the edge of the boat, his parted lips showing his long, sharp fangs. The tiger\",\"Richard Parker peers out at him from the edge of the boat, his parted lips showing his long, sharp fangs.\",The tiger,gold,calmly flops his tail as he observes the boy.,\"continues glowering, shifting proudly.\",drags his horse then waves back towards the tiger.,lowers his head thoughtfully.,0\n5782,lsmdc3047_LIFE_OF_PI-22063,19597,\"With long strokes, he swims back to the lifeboat. Another\",\"With long strokes, he swims back to the lifeboat.\",Another,gold,\"walks towards him, sending him tumbling down.\",watches as another boat consults the riding.,carries him to the boat's rim.,\"slices the seven, then glides across the wreck.\",2\n5783,lsmdc3047_LIFE_OF_PI-22063,19542,\"He catches himself on a railing and clings to it as he beams down at the churning, roiling ocean. Stepping back, he\",\"He catches himself on a railing and clings to it as he beams down at the churning, roiling ocean.\",\"Stepping back, he\",gold,looks skyward and waves his arms giddily.,swims in someone's direction.,finds richard parker strolling off.,glances at his bearded cousin.,0\n5784,lsmdc3047_LIFE_OF_PI-22063,19605,He watches helplessly as the ship sinks further beneath the churning waves. The ocean's rippling surface,He watches helplessly as the ship sinks further beneath the churning waves.,The ocean's rippling surface,gold,\"glides up, blowing beneath the water and supports.\",surface the rich sphere of a small stone and shoots into a low red surface.,is pulsing with sunlight.,distorts someone view of the lost vessel.,3\n5785,lsmdc3047_LIFE_OF_PI-22063,19684,\"Unwrapping a nutritional biscuit, he takes a big bite. Looking down, he\",\"Unwrapping a nutritional biscuit, he takes a big bite.\",\"Looking down, he\",gold,holds up a copy of the forbidden.,spits the bottle at her then open the condom.,finds a sizable rat scurrying over the cans.,finds a huge stifle reading the manuscript.,2\n5786,lsmdc3047_LIFE_OF_PI-22063,19554,\"The teen passes through a dark section lit only by the pulsing red emergency lights. Reaching a door at the end of the corridor, he\",The teen passes through a dark section lit only by the pulsing red emergency lights.,\"Reaching a door at the end of the corridor, he\",gold,moves to the opposite spot.,starts to go up.,finds something still and misses.,struggles to open it.,3\n5787,lsmdc3047_LIFE_OF_PI-22063,19611,\"With weary, dogged motions, he scoops out one bucketful after another. Someone\",\"With weary, dogged motions, he scoops out one bucketful after another.\",Someone,gold,drops the bucket and collapses on the bench near the canvas cover's edge.,\"leaves the party as the cabby fixes her eyes on someone, who pulls her aside.\",obeys him through the rear exit.,grabs another dribble of food and jogs across the tables.,0\n5788,lsmdc3047_LIFE_OF_PI-22063,19607,\"A section at a time, the deck lights flicker then blink out. Lightning flashes then\",\"A section at a time, the deck lights flicker then blink out.\",Lightning flashes then,gold,rockets over a bridge.,diminishes leaving the boy alone in the darkness.,lurches high over the waves.,slowly pulses in the brilliant air.,1\n5789,lsmdc3047_LIFE_OF_PI-22063,19687,\"He staggers back, snapping irritably at the fabric. Richard Parker\",\"He staggers back, snapping irritably at the fabric.\",Richard Parker,gold,takes a drink as someone makes a mocking tone.,begins grabbing the fish puppet.,approaches in a bucket and tosses the book.,turns his gaze out over the slate - grey water surrounding them.,3\n5790,lsmdc3047_LIFE_OF_PI-22063,19667,\"As he pushes it overboard, the tiger faces him with a snarl. Standing, someone\",\"As he pushes it overboard, the tiger faces him with a snarl.\",\"Standing, someone\",gold,walks up to the doctor's portrait.,turns to his friends.,starts towards the camera again.,picks up the oar.,3\n5791,lsmdc3047_LIFE_OF_PI-22063,19562,\"The someone leaps to someone. The someone, captain and the sailor\",The someone leaps to someone.,\"The someone, captain and the sailor\",gold,\"move objects the coils and move a fork at each buoys, side by side.\",cower down a high river.,shove him onto the boat.,move over their sleds.,2\n5792,lsmdc3047_LIFE_OF_PI-22063,19571,A giant wave washes them from view. The lifeboat,A giant wave washes them from view.,The lifeboat,gold,begins to spin as they gaze skyward.,is in a fierce storm of light.,carries someone through the wreckage.,is engulfed by a wave of energy.,2\n5793,lsmdc3047_LIFE_OF_PI-22063,19635,\"Lying on his belly, he slams it against the boat's hull. The hyena\",\"Lying on his belly, he slams it against the boat's hull.\",The hyena,gold,looks down as someone looks up.,swims out of a distant sea.,emerges from beneath the canvas.,plays a few bagpipe.,2\n5794,lsmdc3047_LIFE_OF_PI-22063,19708,He uses blank pages in the survival book. He,He uses blank pages in the survival book.,He,gold,wipes out the gas vest.,write with a pencil.,\"slams through a protective desk, which anchors the book.\",\"sucks modeling a handkerchief, picks it up.\",1\n5795,lsmdc3047_LIFE_OF_PI-22063,19648,\"Orange Juice slumps against the edge of the canvas cover taking slow, deep breaths. He\",\"Orange Juice slumps against the edge of the canvas cover taking slow, deep breaths.\",He,gold,takes the pillow and carries it along a dark day through the circular peach window into a crowded dark chamber.,lifts away a hatch beneath the canvas cover and finds a duffle inside.,\"manages to move in over the harmonica and continue to pass it by, up to the water.\",'s head approaches with water.,1\n5796,lsmdc3047_LIFE_OF_PI-22063,19539,\"Venturing out, someone leans over a railing and scans his tempestuous surroundings. As he steps along a walkway, his feet\",\"Venturing out, someone leans over a railing and scans his tempestuous surroundings.\",\"As he steps along a walkway, his feet\",gold,slide on the wet flooring.,are guided by a rope above a brown cover of dangerous rock.,are drawn over two wheels on a loan car above them.,are covered in blood.,0\n5797,lsmdc3047_LIFE_OF_PI-22063,19725,\"The teen lowers the flap, then pushes the boat off. Standing along in the vast, isolated expanse, he\",\"The teen lowers the flap, then pushes the boat off.\",\"Standing along in the vast, isolated expanse, he\",gold,\"picks up the food, empties the frustrated bodies into someone's adoring cups.\",turns his gaze toward the sunlit clouds above.,pauses and looks down at its jagged fish hooves.,cries with her wide eyes.,1\n5798,lsmdc3047_LIFE_OF_PI-22063,19670,As the tiger climbs onto the canvas. Someone,As the tiger climbs onto the canvas.,Someone,gold,descends on a flying level.,curls up in a fetal position with his back to him and squeezes his eyes shut.,\"follows with it, then slides down gently on his legs.\",gazes at the light and an idea that spreads evenly across his back.,1\n5799,lsmdc3047_LIFE_OF_PI-22063,19589,\"Staying under, someone swims past a shark as he makes his way beyond the lifeboat. Turning, he\",\"Staying under, someone swims past a shark as he makes his way beyond the lifeboat.\",\"Turning, he\",gold,finds the grieving baby sitting on his gray chair.,finds himself facing the completely submerged ship.,glances toward the stage.,poses with his mouth close to hers.,1\n5800,lsmdc3047_LIFE_OF_PI-22063,19732,\"Juxtaposed with the scenes, someone reads the book. On an overcast day, he\",\"Juxtaposed with the scenes, someone reads the book.\",\"On an overcast day, he\",gold,climbs the stairs in a network of bushes.,jogs out to rest at a pipe.,\"wears someone, wears the day of the day.\",studies the book on his raft.,3\n5801,lsmdc3047_LIFE_OF_PI-22063,19577,\"Finding a life preserver, he climbs up on the canvas secured tautly over the front half of the boat. He\",\"Finding a life preserver, he climbs up on the canvas secured tautly over the front half of the boat.\",He,gold,sets down the tattered skulls of clothes and hurls it onto a quill.,\"hunches down, pulls the wooden tapestry out of the way, sets it up down, and walks toward the grand room.\",reaches his hand for a tin as the guard lays one leg against a metal.,casts the flotation device out into the water with all his might.,3\n5802,lsmdc3047_LIFE_OF_PI-22063,19683,\"Taking out small boxes, he chucks one in and opens the other. Unwrapping a nutritional biscuit, he\",\"Taking out small boxes, he chucks one in and opens the other.\",\"Unwrapping a nutritional biscuit, he\",gold,ascends the spiral staircase.,rings the hand - pressed turn.,stares at the page.,takes a big bite.,3\n5803,lsmdc3047_LIFE_OF_PI-22063,19720,\"Watching him calmly, someone crouches down and takes up the rope tether. Tugging hand over hand, he\",\"Watching him calmly, someone crouches down and takes up the rope tether.\",\"Tugging hand over hand, he\",gold,eats a cobbled oyster.,reels the boat closer.,illuminates someone's ears.,holds up a side incline.,1\n5804,lsmdc3047_LIFE_OF_PI-22063,19646,\"Waking, he jolts up and gasps. The sputtering teen\",\"Waking, he jolts up and gasps.\",The sputtering teen,gold,takes up several huge deformed shapes and washes her.,gives a wry smile and flashes a smile.,holds a roll of eyes forward.,manages to sit up and catch his breath.,3\n5805,lsmdc3047_LIFE_OF_PI-22063,19699,\"Scraping his rear claws against the painted metal hull, the tiger climbs back aboard. Someone\",\"Scraping his rear claws against the painted metal hull, the tiger climbs back aboard.\",Someone,gold,\"walks into the clearing, slowing his pace.\",helps the ships back to life.,pushes off from the boat on his raft.,flies off into the forbidden forest.,2\n5806,lsmdc3047_LIFE_OF_PI-22063,19533,He leans down to the bottom bunk and shakes his sleeping brother. Someone,He leans down to the bottom bunk and shakes his sleeping brother.,Someone,gold,sits quietly at a stone desk.,quickly pulls himself into his bunk as his mother rolls over.,\"is underwater, close to the water.\",\"holds the breadstick to his lips, dropping it squarely.\",1\n5807,lsmdc3047_LIFE_OF_PI-22063,19590,\"Turning, he finds himself facing the completely submerged ship. His limbs\",\"Turning, he finds himself facing the completely submerged ship.\",His limbs,gold,flailing hard with rotting tentacles.,broken in circular directions.,ripped through red bricks.,splayed as he stares at the enormous craft.,3\n5808,lsmdc3047_LIFE_OF_PI-22063,19553,Gasping then submerges himself and swims onward. The teen,Gasping then submerges himself and swims onward.,The teen,gold,takes out a chunk of cupcake and sets it on some toast.,\"stands briefly and makes for his ankle - length body, which has long, ornamental wooden.\",\"strokes his husband's rapids, then cups a hand over his mouth.\",passes through a dark section lit only by the pulsing red emergency lights.,3\n5809,lsmdc3047_LIFE_OF_PI-22063,19573,\"Escaping the wreckage, the lifeboat briefly capsizes. As it rights itself, we\",\"Escaping the wreckage, the lifeboat briefly capsizes.\",\"As it rights itself, we\",gold,glimpse the oncoming someone from in the hotel's hospital room.,find someone holding on tightly and the zebra lying inside.,hear someone rise into the air.,find a sea of gore speeding through the sky.,1\n5810,lsmdc3047_LIFE_OF_PI-22063,19698,\"As he tries to release the line, Richard Parker lunges over the prow swiping his massive claws at his head. Someone ducks and the tiger\",\"As he tries to release the line, Richard Parker lunges over the prow swiping his massive claws at his head.\",Someone ducks and the tiger,gold,\"tips over, then drops.\",gives him a fearful look.,nearly falls off the boat.,raises his hands into the air.,2\n5811,lsmdc3047_LIFE_OF_PI-22063,19677,\"Now Richard Parker lies still beneath the canvas shelter. At the boat's prow, someone\",Now Richard Parker lies still beneath the canvas shelter.,\"At the boat's prow, someone\",gold,peaks in at the tiger.,lays his surfboard against his chest.,notices a circular fireplace.,halts with a shoebox in his hand.,0\n5812,lsmdc3047_LIFE_OF_PI-22063,19559,A bird seeks refuge in the nearby tower. Other animals,A bird seeks refuge in the nearby tower.,Other animals,gold,watch as the roars and roars towards the performers train.,watch around sleeping on horses.,hang on to a mountain level.,struggle for footing on the rocking ship.,3\n5813,lsmdc3047_LIFE_OF_PI-22063,19600,Knee - deep water sloshes around the deck. Someone,Knee - deep water sloshes around the deck.,Someone,gold,\"climbs back on the canvas cover, then scrambles to the prow.\",looks up and realizes the decks are hovering.,\"gazes at the tiger, then watches him go.\",\"brushes his hands over restlessly and glances on the edge of the divan, exposing his broken hand.\",0\n5814,lsmdc3047_LIFE_OF_PI-22063,19536,The door swings shut behind him. He,The door swings shut behind him.,He,gold,\"looks around and stops, to indicate the issue.\",staggers and steadies himself on a railing as he moves along.,closes the open hand and presses a key nostril to his temple.,\"takes the box key from his back pocket, and exits the room.\",1\n5815,lsmdc3047_LIFE_OF_PI-22063,19630,\"As someone faces her with a concerned expression. Turning her head over her shoulder, she\",As someone faces her with a concerned expression.,\"Turning her head over her shoulder, she\",gold,takes a seat toward him.,\"brushes her hair on her shoulder, sketches.\",glances over her shoulder.,gazes off over the water.,3\n5816,lsmdc3047_LIFE_OF_PI-22063,19663,Our view sweeps down to Orange Juice's body as it grows still. Blood,Our view sweeps down to Orange Juice's body as it grows still.,Blood,gold,\"puts the pillow down on top of someone, opens his mouth and drops it to his webbed shivering face.\",turns and smiles back.,stains the wood near her throat.,\"chandelier surges into the living room, then draws away from the top of a staircase.\",2\n5817,lsmdc3047_LIFE_OF_PI-22063,19671,Someone curls up in a fetal position with his back to him and squeezes his eyes shut. Richard Parker,Someone curls up in a fetal position with his back to him and squeezes his eyes shut.,Richard Parker,gold,hangs his head and works his jaw as he pulls a handle.,removes a chunk from the pumpkin and shows the man how to use it.,\"backs off, returning his attention to his kill.\",edges away and spots glows appear.,2\n5818,lsmdc3047_LIFE_OF_PI-22063,19556,It springs open releasing a powerful current of water and air bubbles. Someone,It springs open releasing a powerful current of water and air bubbles.,Someone,gold,\"sits, his bathrobe unbuttoned to his successful ponytail.\",hangs onto the door frame and tries futilely to pull himself into his family's quarters.,stretches out or control.,\"swings herself around and flips over, then flattens herself against the french windows.\",1\n5819,lsmdc3047_LIFE_OF_PI-22063,19706,As it illuminates the sky. As we,As it illuminates the sky.,As we,gold,row the golden light of the sunset.,peer down on them from above.,\", the big crewman washes a blast.\",see someone approach and approach the cage.,1\n5820,lsmdc3047_LIFE_OF_PI-22063,19560,Other animals struggle for footing on the rocking ship. A sailor,Other animals struggle for footing on the rocking ship.,A sailor,gold,pins up the toy's mouse.,glides on as snowy dodges the lift.,gives him a life jacket.,\"accepts a line of cities, then climbs back.\",2\n5821,lsmdc3047_LIFE_OF_PI-22063,19578,He casts the flotation device out into the water with all his might. He,He casts the flotation device out into the water with all his might.,He,gold,slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver.,rolls around the top of the desert.,kills the metal cannon and pitches.,puts dwelling pieces of concrete into the bottom of it.,0\n5822,lsmdc3047_LIFE_OF_PI-22063,19637,The teen scrambles back and fends off Harry with the oar. The hyena briefly,The teen scrambles back and fends off Harry with the oar.,The hyena briefly,gold,leans over the edge the resumes its wild laps.,catches the reef continuously as the motorboat sails over land on large skis.,won toss in someone's goal.,takes two boats at shore.,0\n5823,lsmdc3047_LIFE_OF_PI-22063,19644,The teen nods off again. He,The teen nods off again.,He,gold,faces the marauder medal.,gently extends someone's hand and kisses someone gently on the forehead again.,throws something into the mobile.,\"falls back into the water, hanging by his knees from the life preserver.\",3\n5824,lsmdc3047_LIFE_OF_PI-22063,19566,The boat tips and the cook falls off. Someone loses his grip on the lines and the lifeboat,The boat tips and the cook falls off.,Someone loses his grip on the lines and the lifeboat,gold,carries a half mast.,plummets to the sea.,falls out of the dock.,swims to the river.,1\n5825,lsmdc3047_LIFE_OF_PI-22063,19697,\"As Richard Parker slurps it down, someone jumps off the boat. As he tries to release the line, Richard Parker\",\"As Richard Parker slurps it down, someone jumps off the boat.\",\"As he tries to release the line, Richard Parker\",gold,\"takes the seat, catches her brother and glares at someone.\",grimaces in size and pulleys.,scoots his feet out onto the bench near the toilet.,lunges over the prow swiping his massive claws at his head.,3\n5826,lsmdc3047_LIFE_OF_PI-22063,19606,The ocean's rippling surface distorts someone view of the lost vessel. We,The ocean's rippling surface distorts someone view of the lost vessel.,We,gold,tend to beautiful chinese music.,\"still, concentrates on.\",drift up and away from the boy as the lifeboat carries him over the ship's watery grave.,reigns against a tree trunk.,2\n5827,lsmdc3047_LIFE_OF_PI-22063,19628,\"The orangutan lets it bounce off her shoulder and land on the flooded floor of the boat. Facing someone, she\",The orangutan lets it bounce off her shoulder and land on the flooded floor of the boat.,\"Facing someone, she\",gold,gazes out his window at the pacific pepper bar.,grimly works her lips and folds her long arms.,pushes the curls over his face and pulls out the pillow beside his woman.,tiptoes out and tucks it gently into someone's mouth.,1\n5828,lsmdc3047_LIFE_OF_PI-22063,19664,\"Facing someone, he swings the knife. Landing on the zebra, Richard Parker\",\"Facing someone, he swings the knife.\",\"Landing on the zebra, Richard Parker\",gold,kills the hyena with a wrench of his jaws.,manages as he walks.,travels anxiously calmly beside the tree.,slides down the track.,0\n5829,lsmdc3047_LIFE_OF_PI-22063,19726,\"Standing along in the vast, isolated expanse, he turns his gaze toward the sunlit clouds above. Now a map from the survival book\",\"Standing along in the vast, isolated expanse, he turns his gaze toward the sunlit clouds above.\",Now a map from the survival book,gold,lies on the side of the hector's map.,\"shows an orange string, hold out cables.\",illustrates the world's ocean currents with inter - swirling circles.,shows a pulsing - shaped logo.,2\n5830,lsmdc3047_LIFE_OF_PI-22063,19612,\"Someone drops the bucket and collapses on the bench near the canvas cover's edge. He leans back, his arms\",Someone drops the bucket and collapses on the bench near the canvas cover's edge.,\"He leans back, his arms\",gold,folded in a show gentle dress.,\"folded, and dangerously underneath.\",draped on the boat's rim and cover.,crooked for the blond.,2\n5831,lsmdc3047_LIFE_OF_PI-22063,19531,\"As we push through thick, churning storm clouds, deck lights illuminate a freighter in the night. Below deck, someone\",\"As we push through thick, churning storm clouds, deck lights illuminate a freighter in the night.\",\"Below deck, someone\",gold,rises onto the bridge.,stares at the water standing in the moonlit graveyard.,slowly awakes in his cabin bunk.,wakes under a sun - filled ceiling.,2\n5832,lsmdc3047_LIFE_OF_PI-22063,19715,A birds - eye view shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea. The boy,A birds - eye view shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea.,The boy,gold,\"turns, looking over his shoulder.\",rubs blue water in the water pool.,\"studies a surfboard before handing snow to the boat, then waves to the other.\",power surfer rides up the wave to the ocean's edge.,0\n5833,lsmdc3047_LIFE_OF_PI-22063,19610,\"One of its hind legs lies unnaturally straight as it drags its haunch along the bench. Later, someone\",One of its hind legs lies unnaturally straight as it drags its haunch along the bench.,\"Later, someone\",gold,uses a bucket to bail water from the boat.,sits on top of a white bus and lights it.,nears his friends as he turns toward the singers.,leads the children onto the veranda.,0\n5834,lsmdc3047_LIFE_OF_PI-22063,19695,\"Richard Parker pauses, staring hungrily. Someone\",\"Richard Parker pauses, staring hungrily.\",Someone,gold,takes the vial into his face and the bandaging cap removes the wire from it and pulls out the serrated knife.,throws the rat at the tiger who catches it in his mouth.,draws over a mansion.,\"stares at him and scowls, writing on the blanket.\",1\n5835,lsmdc3047_LIFE_OF_PI-22063,19678,\"At the boat's prow, someone peaks in at the tiger. Someone\",\"At the boat's prow, someone peaks in at the tiger.\",Someone,gold,positions himself on two ropes.,eagerly climbs in to retrieve them.,spots the birds fly.,shoots a quick look as they disappear into the water.,1\n5836,lsmdc3047_LIFE_OF_PI-22063,19714,It lands close to us and bobs peacefully in the water. A birds - eye view,It lands close to us and bobs peacefully in the water.,A birds - eye view,gold,shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea.,fly explodes through the trees in the sky.,obscures the kg of its body.,captures two golden letters in the sky.,0\n5837,lsmdc3047_LIFE_OF_PI-22063,19690,\"With the animal distracted, someone starts to climb from the prow. Richard Parker\",\"With the animal distracted, someone starts to climb from the prow.\",Richard Parker,gold,undoes the bolt from a stop carriage and manages her balance.,\"charges forward, his head jetting up from the canvas' open flap at the bow.\",watches it fly back through a mountain with anger etched in his eyes as bombs explode amongst various uruk - hai.,\"glances on and remembers someone, who lounges in the pool drinking chlorophyll from a glass of water before completing the dance.\",1\n5838,lsmdc3047_LIFE_OF_PI-22063,19659,\"Perching atop the zebra's carcass, he starts to take a bite. Orange Juice angrily\",\"Perching atop the zebra's carcass, he starts to take a bite.\",Orange Juice angrily,gold,mashed it into someone's back causing him to drop the potato.,thumps the rim of the boat.,appears into his banks and bubbles break in the goblet.,extends across the counter and extracts the bouquet.,1\n5839,lsmdc3047_LIFE_OF_PI-22063,19609,\"Lifting the edge of the canvas, he peers inside. Water\",\"Lifting the edge of the canvas, he peers inside.\",Water,gold,\", someone and someone disappear into an aerial corridor.\",sloshes over the floor of the boat.,\"shakes her honey blonde hair, then gets to her feet.\",\", he faces someone.\",1\n5840,lsmdc3047_LIFE_OF_PI-22063,19615,As someone takes up a long handles oar and jumps to the canvas cover. It,As someone takes up a long handles oar and jumps to the canvas cover.,It,gold,switches through the hundreds of toiletries messages.,\"hangs the assembled, which spins around beneath her feet.\",leaps at someone clumsily and snaps at the oar.,steps away from the wall.,2\n5841,lsmdc3047_LIFE_OF_PI-22063,19641,Someone sits at the bow sharing a vigilant gaze with the hyena who remains back at the edge of the canvas. Harry,Someone sits at the bow sharing a vigilant gaze with the hyena who remains back at the edge of the canvas.,Harry,gold,bounds to the zebra and snaps at its injured hind leg.,stretches for his lighter as they float toward the water.,\"approaches her, who opens her eyes way.\",points and hunches over a series of skaters and is stopped by the giant wave.,0\n5842,lsmdc3047_LIFE_OF_PI-22063,19655,\"Orange Juice gives hers a shake, the throws it down. Later, using ropes and netting, he\",\"Orange Juice gives hers a shake, the throws it down.\",\"Later, using ropes and netting, he\",gold,puts her fingers over the neck.,writes elegantly as she takes off in the crowd line.,\"bundles the life jackets together into a small, makeshift raft.\",tosses the sheriffs to another and fires cards on the high ground.,2\n5843,lsmdc3047_LIFE_OF_PI-22063,19551,\"He staggers through a corridor. Finding his level flooded, he\",He staggers through a corridor.,\"Finding his level flooded, he\",gold,awakens and sees a familiar glow.,sinks to one knee.,finds himself reading the vanity.,dives into the water and swims.,3\n5844,lsmdc3047_LIFE_OF_PI-22063,19642,Harry bounds to the zebra and snaps at its injured hind leg. Someone and Orange Juice,Harry bounds to the zebra and snaps at its injured hind leg.,Someone and Orange Juice,gold,watch helplessly as harry kills the zebra.,walk down a long dock to the commander - de - de - mnemonic.,watch the disassembled ship.,runs after it and writes underneath the box.,0\n5845,lsmdc3047_LIFE_OF_PI-22063,19616,It leaps at someone clumsily and snaps at the oar. Someone,It leaps at someone clumsily and snaps at the oar.,Someone,gold,drops the oar and retreats to the prow beam.,keeps his gaze fixed into the bug's face.,\"shoots the capsule, calculating.\",overcome the bitter u - pull.,0\n5846,lsmdc3047_LIFE_OF_PI-22063,19534,Someone quickly pulls himself into his bunk as his mother rolls over. Someone,Someone quickly pulls himself into his bunk as his mother rolls over.,Someone,gold,reaches down a container which pushes him to the floor.,climbs a flight of stairs and enters a corridor.,adjusts his pockets nervously as she barges through some piles to reveal the hidden room.,runs a torch on the dashboard.,1\n5847,lsmdc3047_LIFE_OF_PI-22063,19719,\"He gazes out over the vast expanse of motion - less sunlit sea. Watching him calmly, someone\",He gazes out over the vast expanse of motion - less sunlit sea.,\"Watching him calmly, someone\",gold,crouches down and takes up the rope tether.,looks over the plane's jagged collie - shaped spear.,drops the stick and reaches for a curtain.,rests the sword on his palm then puts it in his pocket.,0\n5848,anetv_SF3pw17yBB4,18092,Someone is shown cutting the skin from a potato. He,Someone is shown cutting the skin from a potato.,He,gold,falls in the water beneath him.,puts down the potato when he finishes cutting it and goes for another.,attaches butter to a smaller triangular chair.,throws a knife and sharpens the knife on the spinning bladed knife.,1\n5849,anetv_SF3pw17yBB4,18091,A person is holding a large knife in a kitchen. Someone,A person is holding a large knife in a kitchen.,Someone,gold,is shown cutting the skin from a potato.,is holding a pot onto a plate.,dances on a rug.,begins to sharpen the claws with a knife.,0\n5850,anetv_AEH6JEd_03c,9582,A person is mixing ingredients in a bowl. They,A person is mixing ingredients in a bowl.,They,gold,spoon the dough onto a cookie sheet.,shake hands with carrots.,begin playing with cookie dough.,make ingredients in a bowl and add stirring.,0\n5851,anetv_AEH6JEd_03c,9581,A butterfly is flying on the screen with words on slides. A person,A butterfly is flying on the screen with words on slides.,A person,gold,is mixing ingredients in a bowl.,cuts several leaves off of a pumpkin quickly scooping out a pumpkin.,unwraps a bottle with a knife on glowing alcoholic stand.,shows off the fire of a darker animal.,0\n5852,anetv_AEH6JEd_03c,9583,They spoon the dough onto a cookie sheet. Bakes cookies,They spoon the dough onto a cookie sheet.,Bakes cookies,gold,are being used to put the potato.,are shown stacked up on a plate.,are placed on the molder.,are then put around the sides and used to put it on.,1\n5853,lsmdc3059_SALT-29015,4313,She pries the doors open and peers down into the shaft of the descending car. Her gaze sweeps to the metal framework along the walls and she,She pries the doors open and peers down into the shaft of the descending car.,Her gaze sweeps to the metal framework along the walls and she,gold,inches back in.,leaps onto a crossbar.,looks over both back at all the animal helper which lie closed.,\"opens it, then turns the cable all around a white pillow, inspecting the empty storage area.\",1\n5854,lsmdc3059_SALT-29015,4304,\"In a smoke - filled hallway, someone rolls over and pushes herself onto her knees. She\",\"In a smoke - filled hallway, someone rolls over and pushes herself onto her knees.\",She,gold,stomps on her foot.,throws her arms around him and rides him down to the stage.,\"exits the elevator with her father, then bends down and pulls herself in.\",grabs a set of keys and a gun off a fallen agent then hurries upstairs.,3\n5855,lsmdc3059_SALT-29015,4305,\"She grabs a set of keys and a gun off a fallen agent then hurries upstairs. Adding herself in a room, she\",She grabs a set of keys and a gun off a fallen agent then hurries upstairs.,\"Adding herself in a room, she\",gold,lies on her stomach against the driver's seat.,lies above her head out of the window.,tears off her jacket.,pours the most prominent card into the glass.,2\n5856,lsmdc3059_SALT-29015,4301,\"Later, someone throw someone to the floor. The closing elevator doors, someone\",\"Later, someone throw someone to the floor.\",\"The closing elevator doors, someone\",gold,beats himself out of the shaft.,opens his helmet.,\"falls, then punches him in the back.\",spies someone in her disguise.,3\n5857,lsmdc3059_SALT-29015,4317,\"Someone reaches the bottom of the shaft. As the president and his entourage walk through the doorway, the guard\",Someone reaches the bottom of the shaft.,\"As the president and his entourage walk through the doorway, the guard\",gold,enters a code on a keypad.,sweeps his back off and shoots his eyes.,kisses the pre - haired woman.,holding the camera follows him.,0\n5858,lsmdc3059_SALT-29015,4319,\"The president and his men head to the emergency operation center. With them, a military aide\",The president and his men head to the emergency operation center.,\"With them, a military aide\",gold,grabs a cellphone and uses it as a gun.,leads his team toward uphill.,\"carries a briefcase, its handle tethered to his wrist.\",uses the russian officer.,2\n5859,lsmdc3059_SALT-29015,4310,\"The agent uses his radio. Meanwhile hiding against the wall by the stairs, someone\",The agent uses his radio.,\"Meanwhile hiding against the wall by the stairs, someone\",gold,hurdles the crane and runs to the chopper door.,lays the safe in his hands.,picks up someone's hat.,peers around the corner and sees a tactical team shuffling pass.,3\n5860,lsmdc3059_SALT-29015,4302,\"The closing elevator doors, someone spies someone in her disguise. Someone\",\"The closing elevator doors, someone spies someone in her disguise.\",Someone,gold,\"alongside a car rifle, someone directs a woman up to someone and another men.\",rejoins slams the unisphere again.,helps with the wheel.,presses a remote then explodes.,3\n5861,lsmdc3059_SALT-29015,4306,\"Adding herself in a room, she tears off her jacket. Someone\",\"Adding herself in a room, she tears off her jacket.\",Someone,gold,rubs her open shirt and strolls over the tv.,shifts his eyes thoughtfully.,holds out a hand to groom.,walks to the stereo and sits in her purple booth.,1\n5862,lsmdc3059_SALT-29015,4300,\"As the adviser heads to the elevator, someone eyes someone. Later, someone\",\"As the adviser heads to the elevator, someone eyes someone.\",\"Later, someone\",gold,throw someone to the floor.,shoves a row of balls into the studio.,sits at her laptop and packs her magazine.,rides behind a boat near the patrons.,0\n5863,lsmdc3059_SALT-29015,4315,\"In the shaft, someone sees two parallel rails running down a wall. Squeezing between them, she\",\"In the shaft, someone sees two parallel rails running down a wall.\",\"Squeezing between them, she\",gold,slides the glass shut.,\"eyes her grandma, then tear her eyes away.\",slides down like an elevator on its tracks.,jerks her hand forward and avoids two expertly throws punches at them.,2\n5864,lsmdc3059_SALT-29015,4312,Agents hurry the president down a hall. Someone,Agents hurry the president down a hall.,Someone,gold,breaks down a winding passage at the citadel of the track.,sprints along at another.,skulks along stairs and exits.,digs out another plant.,1\n5865,lsmdc3059_SALT-29015,4303,\"Someone presses a remote then explodes. In a smoke - filled hallway, someone\",Someone presses a remote then explodes.,\"In a smoke - filled hallway, someone\",gold,rolls over and pushes herself onto her knees.,looks back at herself.,rises as someone heads halfway down another staircase.,runs to someone's outer door.,0\n5866,lsmdc3059_SALT-29015,4314,\"An agent checks the entryway. In the shaft, someone\",An agent checks the entryway.,\"In the shaft, someone\",gold,\"follows, up a staircase.\",looks up from his bed.,sees two parallel rails running down a wall.,stands with a mailbag.,2\n5867,lsmdc3059_SALT-29015,4311,\"Meanwhile hiding against the wall by the stairs, someone peers around the corner and sees a tactical team shuffling pass. Agents\",\"Meanwhile hiding against the wall by the stairs, someone peers around the corner and sees a tactical team shuffling pass.\",Agents,gold,stares through a cracked window and finds a passionately working on the wall.,do both and punch with their own guns.,drill his gun on someone as they run back up the shaft.,hurry the president down a hall.,3\n5868,lsmdc3059_SALT-29015,4316,\"Squeezing between them, she slides down like an elevator on its tracks. Someone\",\"Squeezing between them, she slides down like an elevator on its tracks.\",Someone,gold,swings up and approaches his instructor's outstretched leg as someone rides him.,reaches the bottom of the shaft.,fires hard across her worried eyes.,removes his other arm.,1\n5869,lsmdc3059_SALT-29015,4318,\"Using the stolen i d card, she unlocks the gate. The president and his men\",\"Using the stolen i d card, she unlocks the gate.\",The president and his men,gold,head to the emergency operation center.,share a glance and she hits someone who avoids her gaze.,sit at captain's house.,lean in the seat.,0\n5870,lsmdc3069_THE_BOUNTY_HUNTER-4543,5667,\"As someone chomps into a taco doused with hot sauce, his friend swigs a coke. Someone\",\"As someone chomps into a taco doused with hot sauce, his friend swigs a coke.\",Someone,gold,puts his hand on the washing machines.,downs some ice in someone's mouth.,drops his taco on his plate.,continues down a rundown path with his arms folded.,2\n5871,lsmdc0004_Charade-47700,12465,\"Close shot - - someone on the phone, looking like the rug has been pulled out from under her. Someone\",\"Close shot - - someone on the phone, looking like the rug has been pulled out from under her.\",Someone,gold,\"moves around, soaking in out of sight.\",\"emerges unto her bed, waiting for her to begin to dance with her, mothers and having fun.\",sees a slender chinese bird hovering beside the screen.,\"slowly lowers the phone to its cradle, a worried expression on her face.\",3\n5872,lsmdc0004_Charade-47700,12458,She goes to the open door for a closer look. As he,She goes to the open door for a closer look.,As he,gold,\"pulls back, the door clambers open.\",takes out his handkerchief and rinses it.,\"opens the door, gathers himself and screws up his things.\",\"gets to his feet, he passes the hogwarts - ladies room which hide his sitting.\",1\n5873,lsmdc0004_Charade-47700,12461,\"He flicks a little water in her face, then takes the nail - brush and scrubs his watch and watch - band. He\",\"He flicks a little water in her face, then takes the nail - brush and scrubs his watch and watch - band.\",He,gold,stops with his gaze on between his notes.,sit on the couch in a bay nerdist wedding with a sling in his legs.,writes and closes the door squeeze way.,holds up his wrist so she can see the watch.,3\n5874,lsmdc0004_Charade-47700,12456,\"Testing the water with his hand, he now steps in fully dressed. Someone\",\"Testing the water with his hand, he now steps in fully dressed.\",Someone,gold,stares at camera as he passes.,is still sleeping in a corner.,lies lying on his bottom.,can't believe her eyes.,3\n5875,lsmdc0004_Charade-47700,12450,He goes into his room and she goes into hers. She,He goes into his room and she goes into hers.,She,gold,\"enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's.\",holds out the own small box of sculptures that happens in the sunshine and video of the birds.,\"holds the mirror with his eyebrows, then steps out of the window and looks at the house.\",\"picks up the jacket, puts him on someone's bed, and kisses it in her keys.\",0\n5876,lsmdc0004_Charade-47700,12451,\"She enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's. She\",\"She enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's.\",She,gold,\"unlocks it, tries to open it, but finds it locked.\",\"heads to the window, opens the door to another apartment.\",takes a bite from the staff.,takes out the small thermometer.,0\n5877,lsmdc0004_Charade-47700,12462,He holds up his wrist so she can see the watch. He,He holds up his wrist so she can see the watch.,He,gold,\"sticks out, only for a few seconds.\",pulls it to some level.,sets it aside and ticks up the phone in her kitchen.,begins unbuttoning his suit.,3\n5878,lsmdc0004_Charade-47700,12457,Someone can't believe her eyes. She,Someone can't believe her eyes.,She,gold,gets up and opens the door.,sees that someone already passed out.,does not know what to say.,goes to the open door for a closer look.,3\n5879,lsmdc0004_Charade-47700,12463,He begins unbuttoning his suit. She,He begins unbuttoning his suit.,She,gold,smiles at her.,rushes towards his car.,\"turns and leaves, slamming the door after her.\",\"becomes one sincere, but always and starts.\",2\n5880,lsmdc0004_Charade-47700,12455,\"Someone looks at her, then sits down and starts to remove his shoes. Testing the water with his hand, he now\",\"Someone looks at her, then sits down and starts to remove his shoes.\",\"Testing the water with his hand, he now\",gold,turns and walks out of his room.,\"sits beside someone in his saddle, being struck by a substance.\",steps in fully dressed.,does his makeup as someone hears the candle shatter.,2\n5881,lsmdc0004_Charade-47700,12452,He calls to her through the closed door as he empties his pockets. He,He calls to her through the closed door as he empties his pockets.,He,gold,\"goes to the door, pounds his case on the door as he slams the door open.\",indicates his way down and goes through the gate.,\"emerges from the mist, from her purse and pulls on a wheel.\",\"sits down to take off his shoes, but is interrupted by the sound of someone screaming.\",3\n5882,lsmdc0004_Charade-47700,12453,\"He sits down to take off his shoes, but is interrupted by the sound of someone screaming. He\",\"He sits down to take off his shoes, but is interrupted by the sound of someone screaming.\",He,gold,brings a shot bottle in an elegant wooden cup.,\"races for the connecting door, pulls back the bolt and rushes in.\",takes someone's hand into a glass bucket then takes an alcohol bottle.,\"turns to a mustached boy, and he grabs someone's hands.\",1\n5883,lsmdc0004_Charade-47700,12466,\"Someone slowly lowers the phone to its cradle, a worried expression on her face. Then the bathroom door opens and someone\",\"Someone slowly lowers the phone to its cradle, a worried expression on her face.\",Then the bathroom door opens and someone,gold,slides down its shaft.,looks at the younger man with beautiful eyes.,appears dressed in a large bath towel.,steps in behind her and holds out a knife.,2\n5884,lsmdc0004_Charade-47700,12464,\"She turns and leaves, slamming the door after her. Close shot - - someone on the phone,\",\"She turns and leaves, slamming the door after her.\",\"Close shot - - someone on the phone,\",gold,looking like the rug has been pulled out from under her.,stares back into the car as someone wanders through a restaurant.,\"already the time into time, but french are on the side.\",\"someone giving him a long look, then shakes his head.\",0\n5885,lsmdc0004_Charade-47700,12459,As he takes out his handkerchief and rinses it. He,As he takes out his handkerchief and rinses it.,He,gold,gets up and hands someone an apple.,pulls the baby away from himself.,opens his coat and reads a label inside.,is clutching a string on his towel - soaked sweater.,2\n5886,lsmdc0004_Charade-47700,12454,\"He wheels as the door is slammed and someone, who had been standing behind it, locks it and pockets the key. He\",\"He wheels as the door is slammed and someone, who had been standing behind it, locks it and pockets the key.\",He,gold,\"lifts a hydra cutters out of the hold, then drops the stone and bank then shields it in the other half.\",goes to the door leading to the hall and finds that locked as well.,\"puts again, eavesdrops wanting to make it back.\",\", someone slowly shoves open a door but can n't see her way inside the bar on front someone left touches the button.\",1\n5887,lsmdc3068_THE_BIG_YEAR-3803,1876,\"Someone questions his female colleague who shrugs. Through a window, we\",Someone questions his female colleague who shrugs.,\"Through a window, we\",gold,watch someone family pass a man in a yellow parka.,glimpse a monitor of the interior of a plane.,\"watch a biker approaching as he passes, breathing heavily.\",watch someone raise his teacup to his companions.,3\n5888,lsmdc3068_THE_BIG_YEAR-3803,1875,\"Chewing, someone shifts his gaze. Someone\",\"Chewing, someone shifts his gaze.\",Someone,gold,glares as he moves past her with his arms around her neck.,\"flies through it's shadows, then makes someone answer.\",rests his eyes on someone's gun.,questions his female colleague who shrugs.,3\n5889,lsmdc3068_THE_BIG_YEAR-3803,1872,\"Now, as someone drives in a snowstorm, words appear. He\",\"Now, as someone drives in a snowstorm, words appear.\",He,gold,\"steps back, someone mounts the horse.\",\"mumbles silently to himself, then peers out his windshield and shifts his pensive gaze.\",plays against a pine tree.,waves at him.,1\n5890,lsmdc3068_THE_BIG_YEAR-3803,1873,\"He mumbles silently to himself, then peers out his windshield and shifts his pensive gaze. Now, in a Chinese restaurant, he\",\"He mumbles silently to himself, then peers out his windshield and shifts his pensive gaze.\",\"Now, in a Chinese restaurant, he\",gold,struggles with his chopsticks.,uses his computer to remove his makeup.,readies a plastic tray on his chest.,works his laptop across a magazine.,0\n5891,lsmdc3068_THE_BIG_YEAR-3803,1877,\"Through a window, we watch someone raise his teacup to his companions. At home, someone\",\"Through a window, we watch someone raise his teacup to his companions.\",\"At home, someone\",gold,strides briefly from his office.,\"runs his thumb through his cape, missing web to keep them back from the anger.\",sleeps alone in a mansion house for evening.,dumps his mail newspapers in a basket.,0\n5892,lsmdc3068_THE_BIG_YEAR-3803,1878,\"At home, someone strides briefly from his office. Someone\",\"At home, someone strides briefly from his office.\",Someone,gold,returns to his office and answers the phone.,draws a leafy invitation.,\"smiles, and looks around at people.\",darts through his papers.,0\n5893,lsmdc3068_THE_BIG_YEAR-3803,1874,A waiter brings a fork. The waiter,A waiter brings a fork.,The waiter,gold,adds spaghetti to the table.,starts to step away.,brings a bunch of pie to the food.,drinks from the mug in the bowl.,1\n5894,anetv_ywJQotAB3dw,18458,Several people walk around a court with a couple of balls. They,Several people walk around a court with a couple of balls.,They,gold,kick the balls back and forth in a game of dodgeball.,continue throwing the balls at tables.,throw a ball into a field.,kick the puck back and forth over the net.,0\n5895,anetv_ywJQotAB3dw,18457,A close up of a flag is shown in a room. Several people,A close up of a flag is shown in a room.,Several people,gold,are moving around the field.,walk around a court with a couple of balls.,are then shown playing a building and put together in a competition.,are walking around a large field.,1\n5896,anetv_ywJQotAB3dw,10265,A small group of people are seen playing a soccer match with one another and kicking a ball around in outside area. The men,A small group of people are seen playing a soccer match with one another and kicking a ball around in outside area.,The men,gold,continue to play while some shots are shown in slow motion and end with the men running around one another.,cheer on different balls while others watch on the sides and pose by smiling.,continue hitting the ball along the wall and end by text replay.,continue playing to one another and ends by holding a ball and walking around to an audience sitting on the end.,0\n5897,anetv_O_StqLLpAVI,11706,A bike with a deflated tire goes through the dirt. A man,A bike with a deflated tire goes through the dirt.,A man,gold,lays up and switches on the tire machine.,gets off the bike to look at it.,talks to the camera man is then shown driving a tractor and walking around.,picks up things and starts scraping water across the ground.,1\n5898,anetv_O_StqLLpAVI,11707,A man gets off the bike to look at it. He,A man gets off the bike to look at it.,He,gold,removes a bike tire and smooths it out with it.,uses his hands to expect if you bring side to side.,shows the maintaining tool he is using.,removes the tire from the bike.,3\n5899,anetv_O_StqLLpAVI,11708,He removes the tire from the bike. He,He removes the tire from the bike.,He,gold,puts the tire on the bike and throws it several times.,loads the tire with the bike.,places the side of the bike instantly.,replaces the tube of the tire and fixes the bike.,3\n5900,anetv_F99Suh6SvD8,9697,The two girls talk to the coach and then begin to fence with each other as the coach motions to where they should stand and navigate the space during the spar. Both girls,The two girls talk to the coach and then begin to fence with each other as the coach motions to where they should stand and navigate the space during the spar.,Both girls,gold,are sitting in the instructor's lap as they continue back to bowing and laughing.,end the spar and remove their head gear as they talk to the coach.,\"lose their footing and fall to the floor, become their instructor with their routine of do their kicks.\",start to explain them and slide back down.,1\n5901,lsmdc1007_Spider-Man1-74281,17082,Someone rushes into the study where his father is lying face down on the floor. He,Someone rushes into the study where his father is lying face down on the floor.,He,gold,\"picks up the file, unlocks it, and checks it out.\",holds a ring to someone's chest.,helps his father to a seat.,moves to the doors of his black rover.,2\n5902,lsmdc1007_Spider-Man1-74281,17076,She reaches the school bus stop and grinds the sole of her left boot on the ground. Someone,She reaches the school bus stop and grinds the sole of her left boot on the ground.,Someone,gold,releases her belt and shakes it off.,stares into someone's tub.,steps out and drives.,'s a bit behind.,3\n5903,lsmdc1007_Spider-Man1-74281,17080,It comes away in his hand and rips its full length. He,It comes away in his hand and rips its full length.,He,gold,crushes the blood on the truck's dashboard as sparks fly out.,comes up behind the crash opaque touching shop.,starts to write.,looks at his hand and ponders.,3\n5904,lsmdc1007_Spider-Man1-74281,17074,\"He sets off down the street after the pretty young red head who is wearing Calfland's boots, short skirt and a zipped cardigan. Someone\",\"He sets off down the street after the pretty young red head who is wearing Calfland's boots, short skirt and a zipped cardigan.\",Someone,gold,turns in his seat.,\"is beside someone, who is waiting by the front of old terraced house.\",stands brushing the top of her dress and eyes it with her little hand.,\"marches down the sidewalk, arms folded.\",3\n5905,lsmdc1007_Spider-Man1-74281,17060,\"Pushing another switch, someone watches as a large file containing a green liquid empties. Vapor\",\"Pushing another switch, someone watches as a large file containing a green liquid empties.\",Vapor,gold,fills the chamber full of debris.,stacked in the gears in front of the unloaded cars.,rises in the chamber.,bites him on both hip.,2\n5906,lsmdc1007_Spider-Man1-74281,17072,He smiles as she primps her hair. He,He smiles as she primps her hair.,He,gold,smiles thoughtfully then closes someone's eyes and speaks again.,\"considers, then steps back resolutely, and turns her across.\",walks back to his mirror and grins.,smacks her hand at someone and the door.,2\n5907,lsmdc1007_Spider-Man1-74281,17073,He walks back to his mirror and grins. Coming downstairs he,He walks back to his mirror and grins.,Coming downstairs he,gold,moves on to the driver side windows.,\"places one hand on the molding, walks on the wall around the corner, and then leaps to the ground.\",sees two other arranging clad children flirting.,spots at the german voices coming from behind.,1\n5908,lsmdc1007_Spider-Man1-74281,17069,He tries again and once more removes them. He,He tries again and once more removes them.,He,gold,stands on a staircase with his gun ready.,takes the key and waves it to the paper and picks it up.,holds them up in front of his face.,\"is as tall as someone speaking, by no one on.\",2\n5909,lsmdc1007_Spider-Man1-74281,17062,Someone's body is convulsing. Someone,Someone's body is convulsing.,Someone,gold,\"flails awkwardly so he overtakes the fireman's crotch once again, quickly fades away.\",runs to the panel.,\"falls down forward with the sword control, which is now pinned to his chest.\",pauses and turns toward a different line that is level with the baby.,1\n5910,lsmdc1007_Spider-Man1-74281,17075,\"Someone marches down the sidewalk, arms folded. She\",\"Someone marches down the sidewalk, arms folded.\",She,gold,reaches the school bus stop and grinds the sole of her left boot on the ground.,goes down and notices the ghost on the bar.,glances off as she leaves the apartment.,looks up from her clock.,0\n5911,lsmdc1007_Spider-Man1-74281,17064,Someone's eyes flash over. He,Someone's eyes flash over.,He,gold,avoids her gaze with wide eyes.,barges into space and holds a phone to his ear.,grabs someone by the throat.,looks like a lawyer.,2\n5912,lsmdc1007_Spider-Man1-74281,17063,He starts venting the gas chamber. The convulsing stops but someone,He starts venting the gas chamber.,The convulsing stops but someone,gold,is held upright by the restraints.,pulls out instruction screens.,continues to tap him to usually people.,\"follows him papers from the man, hat covering his head.\",0\n5913,lsmdc1007_Spider-Man1-74281,17071,\"Glancing through the window he catches sight of someone, someone in her room in the house next door. He\",\"Glancing through the window he catches sight of someone, someone in her room in the house next door.\",He,gold,smiles as she primps her hair.,\"removes the fall from his brow, stops and edges toward someone.\",goes to the door and goes inside.,closes the door and looks wearily out the room.,0\n5914,lsmdc1007_Spider-Man1-74281,17059,\"Someone nods to his colleague. Pushing another switch, someone\",Someone nods to his colleague.,\"Pushing another switch, someone\",gold,looks down at someone.,watches as a large file containing a green liquid empties.,writes a long file across the table.,leads the kids to a pew.,1\n5915,lsmdc1007_Spider-Man1-74281,17070,He turns away from admiring his new body in the mirror and reaches for his shirt. Glancing through the window he,He turns away from admiring his new body in the mirror and reaches for his shirt.,Glancing through the window he,gold,sees someone's reflection in a chauffeur's mirror.,finds a building putting crests canopy behind him.,\"catches sight of someone, someone in her room in the house next door.\",finds several empty office items.,2\n5916,lsmdc1007_Spider-Man1-74281,17067,Someone reaches for his spectacles. He,Someone reaches for his spectacles.,He,gold,clutches his stomach to her mouth and winces.,takes it from his pocket.,\"puts them on, then quickly takes them off.\",marches up to someone.,2\n5917,lsmdc1007_Spider-Man1-74281,17054,Someone strips to the waist and takes bottle from someone. He,Someone strips to the waist and takes bottle from someone.,He,gold,waves a tray of pizza for someone.,uses a crest to cover each fish.,gulps down its contents.,\"dips someone and someone from a room, then want jokes with him.\",2\n5918,lsmdc1007_Spider-Man1-74281,17079,He makes a grab for the bus and catches hold of a poster stuck to his side. It,He makes a grab for the bus and catches hold of a poster stuck to his side.,It,gold,enters the gap and pops into the air with her sunglasses.,sets his raft down in a dark setting.,scuttle up steps in a towel.,comes away in his hand and rips its full length.,3\n5919,lsmdc1007_Spider-Man1-74281,17061,Vapor rises in the chamber. Someone,Vapor rises in the chamber.,Someone,gold,falls as it turns into a ghostly facade that swells toward people.,\"pulls a disc of the elder wand, which bobs back and forth.\",passes a suit after someone briskly it down the main road.,watches a computer generated image of the level of the green gas in the chamber as it rises to fill it.,3\n5920,lsmdc1007_Spider-Man1-74281,17057,Someone is firmly attached to the trolley. The grim - faced someone,Someone is firmly attached to the trolley.,The grim - faced someone,gold,reaches out to seat someone and slaps his back.,strokes the wooden child's inner pinnacle.,hurries over to a control panel.,\"turns, signing a struck sack.\",2\n5921,lsmdc1007_Spider-Man1-74281,17077,Someone's a bit behind. Someone,Someone's a bit behind.,Someone,gold,climbs into her friend's ford mustang convertible.,punches a man's chest and drags him through the ceiling.,\"gets a roll from the bottom side, onto the red - colored mat.\",stops outside the rosy - thru window.,0\n5922,lsmdc1007_Spider-Man1-74281,17068,\"He puts them on, then quickly takes them off. He\",\"He puts them on, then quickly takes them off.\",He,gold,steps off the phone.,continues to show off his problems and begins round to apply them on each wall.,tries again and once more removes them.,\"hangs up his cell with her bright blue towel, on the bow, on his hand, under a chair along the mattress.\",2\n5923,lsmdc1007_Spider-Man1-74281,17066,Someone wakes from his fitful sleep and picks himself up off the floor. Someone,Someone wakes from his fitful sleep and picks himself up off the floor.,Someone,gold,reaches for his spectacles.,leans back against the headboard.,reads remorsefully.,is asleep in his bunk.,0\n5924,lsmdc1007_Spider-Man1-74281,17055,\"Having flung the bottle to the floor, someone lifts opens the metal with strengths on the sliding trolley and lies down on it. Someone\",\"Having flung the bottle to the floor, someone lifts opens the metal with strengths on the sliding trolley and lies down on it.\",Someone,gold,\"hops up lightly, then feels his mouth for a moment then walks off with his face wash and makes a slow - clean face\",\"rises to the tiled floor, hesitating for a moment, then his eyes move back inside the crack of st.\",\"fishes in a closet, splayed out and sees a naked door open to reveal the water.\",\"fastens the manacles over someone's chest, legs, and upper arms.\",3\n5925,lsmdc1007_Spider-Man1-74281,17056,\"Someone fastens the manacles over someone's chest, legs, and upper arms. Someone\",\"Someone fastens the manacles over someone's chest, legs, and upper arms.\",Someone,gold,\"the boat, someone faces a group of dolphins together standing behind two other boats.\",sits in someone's cot as he roars up.,is firmly attached to the trolley.,runs along the roof toward their camels.,2\n5926,anetv_Boa880LnJ3w,10829,A man attaches a baby stroller to the back of a bicycle. He,A man attaches a baby stroller to the back of a bicycle.,He,gold,puts the wheel on the stroller.,starts loading the bike with a machine and begins driving down the hill.,jerks it down the board.,\"starts raking the lawn, going up the squares.\",0\n5927,anetv_Boa880LnJ3w,7523,A man walks up and kneels behind a bike. He,A man walks up and kneels behind a bike.,He,gold,holds up a paper in front of a set of indoor equipment.,climbs onto the bike and lifts his head.,proceeds to use his tools on the bike.,puts things in a bag.,2\n5928,anetv_Boa880LnJ3w,7524,He proceeds to use his tools on the bike. He,He proceeds to use his tools on the bike.,He,gold,removes pieces of the bike and replaces them.,then pans the bike all over the side.,continues to wipe the window back slightly.,looks out of the house.,0\n5929,anetv_Boa880LnJ3w,10830,He puts the wheel on the stroller. He,He puts the wheel on the stroller.,He,gold,lays it at her shoulder.,walks forward and looks into the camera with his arms around each other.,stands up next to the stroller.,uses a flat equipment to get brakes.,2\n5930,anetv_0IxId05Eo6k,16122,\"They take a bow, pick up the rope, and each team begins to tug on the rope until a winner is called. A woman referee is now standing with her two arms up and she lets them down to indicate that the two teams can start tugging on the rope, and they\",\"They take a bow, pick up the rope, and each team begins to tug on the rope until a winner is called.\",\"A woman referee is now standing with her two arms up and she lets them down to indicate that the two teams can start tugging on the rope, and they\",gold,perform her tries to relax them by.,do until she blows a whistle to indicate the winner.,make little reasons to stand on sync.,are as scuba as they can be.,1\n5931,anetv_0IxId05Eo6k,16120,\"There are a lot of people indoors in a large building walking, or hanging out, and the banner below say's what in the world? China's National Tug - of - War Championships and he logo on the right say's east sports west. There are two sets of people along a rope and they\",\"There are a lot of people indoors in a large building walking, or hanging out, and the banner below say's what in the world? China's National Tug - of - War Championships and he logo on the right say's east sports west.\",There are two sets of people along a rope and they,gold,\"put out their hands, the helmets.\",are doing a lot motocross in unison at different jumps.,do a lot of tricks and if they were flip into the water one by one.,are separated in the middle by referees.,3\n5932,anetv_0IxId05Eo6k,16121,\"There are two sets of people along a rope and they are separated in the middle by referees. They take a bow, pick up the rope, and each team\",There are two sets of people along a rope and they are separated in the middle by referees.,\"They take a bow, pick up the rope, and each team\",gold,comes out together and start the stunts for the mysterious race.,begins to tug on the rope until a winner is called.,goes sailing into river and water while the camera passengers in.,wins and best appear to the end.,1\n5933,anetv_dAdCETrsDQw,11251,An athlete is then seen speaking with a new host and several shots of him playing and riding a horse are shown. More clips,An athlete is then seen speaking with a new host and several shots of him playing and riding a horse are shown.,More clips,gold,are shown of people playing soccer in the sand while one man still parks the ball.,are shown of people are seen hitting goals on the beach with one man performing his movements.,are shown of teams running around the track while cheering.,are shown of him playing a sport and speaking to the host and shaking his hand.,3\n5934,anetv_8EfkFxoXI_4,18240,The man checks the bike seat for looseness. The man,The man checks the bike seat for looseness.,The man,gold,gets up and works out very quickly on the bike's wheel.,starts to remove chunks of tires.,opens the breast button 4 and adjusts the bike.,begins spinning the seat of the bike and removes it.,3\n5935,anetv_8EfkFxoXI_4,18241,The man begins spinning the seat of the bike and removes it. The man,The man begins spinning the seat of the bike and removes it.,The man,gold,releases a bowling ball and bumps different positions.,walks away and gives the man a complete hug.,puts the seat back on the bike.,pulls a foil out and lays down.,2\n5936,anetv_8EfkFxoXI_4,18239,The man shifts the seat of a bike. The man,The man shifts the seat of a bike.,The man,gold,bends forward and pushes the car.,boils the man in a piece of metal in the car.,uses the object from the table to tighten the seat of the bike.,puts on the wrench and shows off many tools in it.,2\n5937,anetv_8EfkFxoXI_4,10144,\"The tool is then inserted into the seat and it begins to get tightened. Once the seat is tight, the man then\",The tool is then inserted into the seat and it begins to get tightened.,\"Once the seat is tight, the man then\",gold,\"takes a tool and screws it in his arm, putting it behind the head.\",removes it out of the seat and then reinserts it to make sure it is properly positioned.,takes a rag and begins to measure the floor.,attaches to pierce the handle of the chain.,1\n5938,anetv_8EfkFxoXI_4,10143,A bike then appears and the person starts to move the seat back and forth illustrating its looseness. The tool is then inserted into the seat and it,A bike then appears and the person starts to move the seat back and forth illustrating its looseness.,The tool is then inserted into the seat and it,gold,illuminates the room is displaying again.,begins to get tightened.,easy using a color to replace it correctly.,gets out to be the vacuum top.,1\n5939,anetv_8EfkFxoXI_4,18242,The man puts the seat back on the bike. The man,The man puts the seat back on the bike.,The man,gold,bends down and softly pats the boy on the head.,puts on the bike.,moves on the back of the bike.,uses the tool to adjust the seat on the side.,3\n5940,anetv_8EfkFxoXI_4,18237,A man talks while we view an object on the table. The man,A man talks while we view an object on the table.,The man,gold,dips the yellow slide.,adjusts the settings on a bench to remove his coat.,picks up and holds the object.,throws the darts and collapses and retrieves it.,2\n5941,lsmdc3092_ZOOKEEPER-45277,6026,Someone holds out her open palm. Someone,Someone holds out her open palm.,Someone,gold,puts his hand in hers.,gives someone a puzzled animal and a five - foot signal breaks up.,turns to look anxiously as she tries to retreat.,wears a protective noose around their necks.,0\n5942,anetv_rmGvgGOkqyk,17761,\"A guy run with a thin, elongated stick and throws the stick. The guy\",\"A guy run with a thin, elongated stick and throws the stick.\",The guy,gold,uses an arm sweep and puts one pole in the glass.,sticks out his tongue.,puts his sticks up and punches the center of the neck.,stretches in heel and stretches the rope on the field.,1\n5943,anetv_rmGvgGOkqyk,17760,The audience look on at the games. A guy,The audience look on at the games.,A guy,gold,looks in a at crowd then kneels.,\"run with a thin, elongated stick and throws the stick.\",is standing on a chair a a few people watching from the sidelines.,bowls a ball and wags baskets.,1\n5944,anetv_nwBb-WkaCYU,4389,A person is sitting behind a table doing a rubiks cube blind folded. A timer,A person is sitting behind a table doing a rubiks cube blind folded.,A timer,gold,zooms on a table and then people previous indoors to create a rubik's cube.,is using his hands to solve his cube.,is on the desk in front of them.,touches it and shows some notes.,2\n5945,anetv_nwBb-WkaCYU,4390,A timer is on the desk in front of them. The person,A timer is on the desk in front of them.,The person,gold,crashes over the rocks and is seen breathing hard.,picks up a contact lens and unscrews it.,continues to push leaves.,completes the rubiks cube and sets it down on the table.,3\n5946,anetv_SipyRTPgdfY,3255,\"Then, the young man lifts the weigh above his head while he kneels. Suddenly, the young man drops the weight which hit his head, and he\",\"Then, the young man lifts the weigh above his head while he kneels.\",\"Suddenly, the young man drops the weight which hit his head, and he\",gold,tries to lift it against the wall.,lands to the floor and grabs his knees again with the weight.,prepares to fight by himself.,falls to the ground.,3\n5947,anetv_SipyRTPgdfY,3254,\"A young man kneels to lift a heavy weight. Then, the young man\",A young man kneels to lift a heavy weight.,\"Then, the young man\",gold,lifts the weigh above his head while he kneels.,pulls off his shirt and release the toy.,lifts the weight from his shoulders before dropping it.,helps the weight over him then pull him down.,0\n5948,anetv_SipyRTPgdfY,13306,Man is weightlifting is a roofed gym. blonde man wearing shorts,Man is weightlifting is a roofed gym.,blonde man wearing shorts,gold,is walking behind a bar holding a heavy weight on his head and walks showing how the bar is enclosed.,\"and shirt is in the bushes and shorts, practicing his karate workout.\",is in the roofed gym and is lifting weight.,is playing basketball.,2\n5949,anetv_qwxmpiaT-kk,6729,One man starts shoving the other mans hands toward the table. the two,One man starts shoving the other mans hands toward the table.,the two,gold,have an arm wrestling match.,continue to walk ahead and wave to other other.,continue running past the dirt and across the lawn.,continue to play for the croquet game.,0\n5950,anetv_qwxmpiaT-kk,6728,Two men are sitting a ta table holding hands. one man,Two men are sitting a ta table holding hands.,one man,gold,takes the paper and begins to spread a chair together.,holds a bow and shows it to a man outside and that the sailors stop him.,is holding an stretched shirt and is watching talk.,starts shoving the other mans hands toward the table.,3\n5951,anetv_qwxmpiaT-kk,2357,Two men are sitting at the table with their arms positioned to arm wrestle. The young men,Two men are sitting at the table with their arms positioned to arm wrestle.,The young men,gold,is fencing as another man wins and the referee is standing behind them watching.,are holding each other's hands as they arm wrestle each other.,hit the ball and jab at one another.,throw each other for the object back and forth throughout.,1\n5952,anetv_8d7FyPzxzjg,14656,A man flies in the air with on a motorcycle. A man,A man flies in the air with on a motorcycle.,A man,gold,spins rope in a recreation area.,makes a motocross circuit using a heavy machine.,surfs a far shot.,holds the child in his hand and circles in the trunk.,1\n5953,anetv_8d7FyPzxzjg,14658,People runs motocross on an bumpy road. people,People runs motocross on an bumpy road.,people,gold,stand on the ground and fight contentedly.,\"ride a motorcycle on ramps, and then flies and spin in the air.\",are racing down a street full of foam fitness bikes.,walk across the road through the smaller areas.,1\n5954,anetv_8d7FyPzxzjg,14657,A man makes a motocross circuit using a heavy machine. People,A man makes a motocross circuit using a heavy machine.,People,gold,runs motocross on an bumpy road.,are attached behind the wheel of the cars.,are shown getting a paw over jumping up.,walk up and down his supply truck.,0\n5955,anetv_Zomv5zlkkEc,9439,A woman is seen standing in the middle of a floor and begins performing a dance routine while others watch her on the sides. The woman,A woman is seen standing in the middle of a floor and begins performing a dance routine while others watch her on the sides.,The woman,gold,continues dancing around with her arms up as well as swinging herself and dancing several times.,performs various moves followed by many impressive moves and ends with that performing the routine.,continues to dance around and ends with the other and ends with moving her arms around and back.,continues dancing all around while the people watch and ends with her holding a pose.,3\n5956,anetv_Zomv5zlkkEc,11441,A woman is belly dancing on carpet. People,A woman is belly dancing on carpet.,People,gold,are missing in the background.,are behind her watching her.,is seen falling on a dresser.,are doing a choreography on the stage.,1\n5957,anetv_Zomv5zlkkEc,11442,People are behind her watching her. She,People are behind her watching her.,She,gold,does a spin and bows.,gulp after the same woman as his cue.,\"hands him to her squirrel, and they are singing having moment to oddly scrolling music and various store pops up before the camera,\",turns to face her.,0\n5958,anetv_N3WVKg7Q2io,2147,\"Then, there is a team on the filed playing flag football. They\",\"Then, there is a team on the filed playing flag football.\",They,gold,perform the high jump and others continue to swap sexual poses.,get ready for a race.,jump up and down into the audience.,are running around trying to score for their team.,3\n5959,anetv_N3WVKg7Q2io,2145,Some boys are in the pools playing with volleyballs. There,Some boys are in the pools playing with volleyballs.,There,gold,\"is a large swimming team swimming and throwing the ball around to their team mates, scoring.\",get up one to chase the ball.,are other men who throw stones to the ground.,are shots of the zoo.,0\n5960,anetv_N3WVKg7Q2io,2146,\"There is a large swimming team swimming and throwing the ball around to their team mates, scoring. Then, there\",\"There is a large swimming team swimming and throwing the ball around to their team mates, scoring.\",\"Then, there\",gold,is a competition with a player and other brothers gathered in a ice field by people.,are two teams playing pong at one another as a young kid in blue shirt is serving a trophy.,are several players playing soccer with different players on the ice water.,is a team on the filed playing flag football.,3\n5961,anetv_2Xfigl8xrXc,16845,A woman wearing a black shirt begins talking and then someone getting their legs waxed appears. As she,A woman wearing a black shirt begins talking and then someone getting their legs waxed appears.,As she,gold,steps to play a song on the phone and shows off her class.,\"completes the transfer of time, she gets up and begins to do sand into the pit.\",\"talks, a layer of wax if placed on the leg and then a white piece of paper.\",\"is seated, she begins to smoke is placed in the middle of the room.\",2\n5962,anetv_0h4UT-2XTAw,5710,She brushes her hair out and styles it. She,She brushes her hair out and styles it.,She,gold,plays with her hair to show the curls.,pulls into the logo and website on the screen.,looks at herself as she brushes her hair off.,then paints her face with the cotton.,0\n5963,anetv_0h4UT-2XTAw,5709,She takes them out of her hair to show her curls. She,She takes them out of her hair to show her curls.,She,gold,\"describes a ruler sewn with the nape of her hair, and where.\",\"bangs her head with her other hand, throwing the hair upright.\",talks to the camera about the rim in a line.,brushes her hair out and styles it.,3\n5964,anetv_0h4UT-2XTAw,16214,A woman is playing with her hair in front of the camera. She,A woman is playing with her hair in front of the camera.,She,gold,picks it up and brushes it from her fingers.,takes out and shows off foam rollers.,walks down the sidewalk and plays with a hair dryer.,walks towards her camera and stands motionless.,1\n5965,anetv_0h4UT-2XTAw,5708,She is showing the rollers she used. She,She is showing the rollers she used.,She,gold,moves in bed in front of the faucet.,is using a steamer to fix it off with her hands.,takes them out of her hair to show her curls.,is trying to blow her french braid into sections.,2\n5966,anetv_0h4UT-2XTAw,16215,She takes out and shows off foam rollers. She,She takes out and shows off foam rollers.,She,gold,eats the tools and presents her teeth to the camera.,shows how to apply and remove the curlers.,douses the clothes together.,wallets he carries them onto a hanger and sprays his chest with water to clean the clean drain tool.,1\n5967,anetv_0h4UT-2XTAw,5707,A woman is showing her curly hair. She,A woman is showing her curly hair.,She,gold,is drying her hair with a dryer.,is talking to a camera in a room.,is wearing gloves and talking.,is showing the rollers she used.,3\n5968,anetv_szW1c2SGdew,18595,A man swings his leg in the air creating letters and we see an opening screen. two men,A man swings his leg in the air creating letters and we see an opening screen.,two men,gold,are practicing with a bowling club.,are in two different rooms performing capoeira moves.,\"prepare for a hand throw in a field, across coach and ring appears and scissors.\",\"talk about the sport for kids, staring.\",1\n5969,anetv_szW1c2SGdew,18598,The man does a handstand and pauses. We,The man does a handstand and pauses.,We,gold,see the website on a black screen.,is seen speaking to the camera holding a phone and showing off various types of products but speak to the camera.,see pucks in the water again.,man picks up at a flying rock on the other side of the lake.,0\n5970,anetv_szW1c2SGdew,18599,We see the website on a black screen. We,We see the website on a black screen.,We,gold,see a lady in green with a dog being thrown.,see a replay of his board being shown.,see four screens with images of men doing capoeira.,see the lady in a blue shirt play a thumbs up.,2\n5971,anetv_szW1c2SGdew,18596,Two men are in two different rooms performing Capoeira moves. A man,Two men are in two different rooms performing Capoeira moves.,A man,gold,does a handstand move.,tips his approach behind the man again.,steps onto the stage and looks up to the ground.,is wearing sunglasses and watching them.,0\n5972,anetv_szW1c2SGdew,18597,A man does a handstand move. The man,A man does a handstand move.,The man,gold,does one handstand on the pommel mat.,swings his arm around his men.,does a handstand and pauses.,mounts the parallel bar.,2\n5973,anetv_DvTZ5mmF8NM,819,A pots of bowling water is seen with pasta and a hand stirring the pot. The person,A pots of bowling water is seen with pasta and a hand stirring the pot.,The person,gold,cheers the pan into a pan and leaves off of the dishes and goes into the kitchen.,hits the spoon on the side while continuing to stir the pasta.,takes the fork into a pan and plates another pot.,boils the lemonade in a pan.,1\n5974,anetv_DvTZ5mmF8NM,6118,A pot of dried pasta is left to boil on the stove. A person,A pot of dried pasta is left to boil on the stove.,A person,gold,cuts a shaggy lawn owl.,is making oats into some dirt holding a spoon.,stirs a bowling pot of past on a stove.,opens the fridge and puts it on.,2\n5975,anetv_DvTZ5mmF8NM,6119,A person stirs a bowling pot of past on a stove. The person,A person stirs a bowling pot of past on a stove.,The person,gold,puts food on a baking pillow and he brushes the eggs off the table.,adds a liquid into the camera.,uses a chopping water to make a fire.,taps the spoon on the side of the pot to remove any stuck on pieces.,3\n5976,anetv_ZbFyGkfGFcE,12210,Children are playing on the beach. They,Children are playing on the beach.,They,gold,are sitting on the beach playing a game of volleyball.,decorate the christmas tree.,are building a sand castle.,\"begin dancing, pushing their way along the ice.\",2\n5977,anetv_ZbFyGkfGFcE,12211,They are building a sand castle. A girl,They are building a sand castle.,A girl,gold,dumps a bucket full of sand in front of her.,is shown waving to a crowd.,wearing dress pants and stilts runs around.,drags an ax on the floor.,0\n5978,anetv_RTIzzeNaH2Q,3943,\"A bike is being shown in the narrow walkway. An old man wearing gray shirt is putting on and screwing the black handle bars in the front of the bike, then put the front wheel of the bike, tighten the screw, and lastly he\",A bike is being shown in the narrow walkway.,\"An old man wearing gray shirt is putting on and screwing the black handle bars in the front of the bike, then put the front wheel of the bike, tighten the screw, and lastly he\",gold,begins to push the bike apart.,shows a new rubber tire.,put the seat on.,continues to flip the tire and use between different rubber gate to make the big cool ramp.,2\n5979,anetv_xmvwhxB1q30,8129,The water gets choppier as they go on. The river,The water gets choppier as they go on.,The river,gold,continues steadily and the others clink glasses.,is lined with many trees.,is wake by itself.,drifts past the hard waters of the river.,1\n5980,anetv_uTQyPHg8r0M,8208,A young lady holds a blue glass and talks to the camera and shows a bottle of Listerine and a mirror. We,A young lady holds a blue glass and talks to the camera and shows a bottle of Listerine and a mirror.,We,gold,see the bottle on your face.,see the lady drink the listerine and swishes it in her mouth twice and spits in in the kitchen sink.,see the shells standing at the end.,see images of the man.,1\n5981,anetv_uTQyPHg8r0M,8284,\"An Asian woman is talking and she picks up a blue cup and drinks something from it, swishes it in her mouth, lifts up a small listerine bottle and shows it to the camera, lifts up a small heart mirror and continues swishing. The woman then\",\"An Asian woman is talking and she picks up a blue cup and drinks something from it, swishes it in her mouth, lifts up a small listerine bottle and shows it to the camera, lifts up a small heart mirror and continues swishing.\",The woman then,gold,begins drinking her drink and showing all the liquids.,walks off appears to spit in the sink and then gets another cup to drink out of and swishes more liquid in her mouth.,pours the glass down a mexican glass then adds the cup and a sip of the red tea and gives the camera for her.,takes the drink and continues on smile.,1\n5982,anetv_uTQyPHg8r0M,8285,\"The woman puts a finger under her nose briefly and continues to swish and then goes back to the sink to spit it out, show her teeth, and then rinse out the sink with a bowl. The girl\",\"The woman puts a finger under her nose briefly and continues to swish and then goes back to the sink to spit it out, show her teeth, and then rinse out the sink with a bowl.\",The girl,gold,\"walks away from the sink, grabs her mirror and looks at her teeth and continues talking to the camera.\",\"places the towel cover over the his face, wipes his mouth with a napkin and kisses his hand.\",takes her goggles off and brushes her eyes all clear and shows us the eyeliner she ends and brushes her hair.,\"takes out a liquid, applies solution into the white jean and put it on the top of the coach's legs.\",0\n5983,anetv_uTQyPHg8r0M,8211,The lady looks in the mirror at her teeth and points at them and walks in the room. The camera,The lady looks in the mirror at her teeth and points at them and walks in the room.,The camera,gold,pans away to the dining room.,shows her face behind the woman.,follows her as she paces all behind the fence.,pans down to the foreground dog.,0\n5984,anetv_uTQyPHg8r0M,8209,We see the lady drink the Listerine and swishes it in her mouth twice and spits in in the kitchen sink. The lady,We see the lady drink the Listerine and swishes it in her mouth twice and spits in in the kitchen sink.,The lady,gold,rinses the plate into the sink.,rinses the sink with a blue bowl.,takes a few steps closer and sets the shoes on.,gently stands the zoo and cries.,1\n5985,anetv_tvR1ovqyJZ8,17091,They are dragging a person on water skis. The person,They are dragging a person on water skis.,The person,gold,attempts to skateboard through a large snow covered hill.,shows off a triangular portion of a washboard.,sledding the slide down the board and follows them.,stays upright as they are pulled quickly through the water.,3\n5986,anetv_tvR1ovqyJZ8,17090,A person is riding inside a boat on the water. They,A person is riding inside a boat on the water.,They,gold,begin to snowboard down a river.,fall off the rope onto the waters.,clamber over snow with the boat going overhead.,are dragging a person on water skis.,3\n5987,lsmdc1059_The_devil_wears_prada-98930,3421,Someone gets up and salutes his fans. People,Someone gets up and salutes his fans.,People,gold,'s guards placed around a gang before him taking photographs of deposit.,approach a dirty skateboard brunette to the driver's side of the car.,smile over at him.,\"in single drink, someone rushes back to the bank, his friends are hanging in for the mouth of the taxi.\",2\n5988,lsmdc1059_The_devil_wears_prada-98930,3420,Someone kisses someone before taking her place. Someone,Someone kisses someone before taking her place.,Someone,gold,falls to the floor and approaches her two sisters.,looks at the bowler coldly.,loads an assault rifle.,gets up and salutes his fans.,3\n5989,lsmdc1059_The_devil_wears_prada-98930,3417,Someone steps down from the podium. Someone,Someone steps down from the podium.,Someone,gold,holds up his helmet.,makes her way over from the table she is been sitting at.,jogs around a corner and through the open door.,carries the fixed equipment to the train.,1\n5990,lsmdc1059_The_devil_wears_prada-98930,3418,They had gathered in a plush banqueting suite with chandeliers hanging from the ceiling. Someone,They had gathered in a plush banqueting suite with chandeliers hanging from the ceiling.,Someone,gold,places the men against the concrete terrace.,\"looks down, at the floor, its timbers still heated.\",spies someone sitting with someone.,sits on the couch at someone's bedside.,2\n5991,anetv_8C1EFngZC3Q,11838,He then skips along with alternating feet across the block. People,He then skips along with alternating feet across the block.,People,gold,versus more people stand around and end with several pictures of knitting photos.,jumps along the balance beam and does his handstand to the board.,are coming down the stairs behind him.,recoils and plays his saxaphone.,2\n5992,anetv_8C1EFngZC3Q,2370,\"He has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves. With his hands by his waster moving back and forth, he\",He has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves.,\"With his hands by his waster moving back and forth, he\",gold,smaller pushes himself up and down the bend to the feet spreading the entire body to go back into handsprings.,reaches in front of the camera and begins talking to the camera that is standing next to him.,leans a bit backward and makes peers out.,continues on in the same manner with the exercise.,3\n5993,anetv_8C1EFngZC3Q,11836,A man is in a studio doing step aerobics along to music on a step block. He,A man is in a studio doing step aerobics along to music on a step block.,He,gold,does a routine stepping on the block corners.,cuts another man out aisle and way.,is talking at the camera while still on exercise machine.,stands behind people with only his arms raised and say 'in a squat preparing to be a dancing couple with that.,0\n5994,anetv_8C1EFngZC3Q,11837,He does a routine stepping on the block corners. He then,He does a routine stepping on the block corners.,He then,gold,\"bends through a pattern into a week muscle, then does flip repeatedly.\",skips along with alternating feet across the block.,stands and maneuvers the spiral.,twists his left arm then releases a few times in the end as he goes to open it.,1\n5995,anetv_8C1EFngZC3Q,2369,A man is downstairs in what appears to be a basement turned into a gym is working out. He,A man is downstairs in what appears to be a basement turned into a gym is working out.,He,gold,has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves.,\"continues on, jumping up and down the sidewalk to the stage and setting a dance bar.\",is working out so he does it.,walks up to the band on the camera and looks down.,0\n5996,anetv_iY7bZQnHXlk,16228,A little girl is standing on a chair in front of a sink. She,A little girl is standing on a chair in front of a sink.,She,gold,is holding a bottle of lipstick.,gets then using the rag and towel.,wipes the shoe off with a bucket.,is doing the dishes in the sink.,3\n5997,anetv_iY7bZQnHXlk,14025,She dumps the rest of the watet out of the cup and grabs the handsoap. She,She dumps the rest of the watet out of the cup and grabs the handsoap.,She,gold,grabs the key from the key in the deadbolt and smiles to herself.,struggles to get the soap out of the container but eventually gets some out.,drops her plate to the ground and shuts the door.,knocks over the radio.,1\n5998,anetv_iY7bZQnHXlk,14024,She turns off the water. She,She turns off the water.,She,gold,bursts into the room where she has sunk.,turns around in some frustration.,walks back to the building's main doorway where the last old man is been sitting.,dumps the water in the sink.,3\n5999,anetv_iY7bZQnHXlk,14023,She turns on the water and fills up the cup. She,She turns on the water and fills up the cup.,She,gold,turns off the water.,pours it back under the sink.,begins making and mixing make more drink.,adds some more paint to the pressure washer.,0\n6000,anetv_iY7bZQnHXlk,14022,A little girl brings a cup to the sink. She,A little girl brings a cup to the sink.,She,gold,stands holding a dish watch.,turns on the water and fills up the cup.,takes the beer cup to her mouth.,gets into a bucket of water.,1\n6001,anetv_iY7bZQnHXlk,14026,She struggles to get the soap out of the container but eventually gets some out. She,She struggles to get the soap out of the container but eventually gets some out.,She,gold,starts her then drops her clothes into the bin.,flowers on her hands.,sticks her hand in the sink which has soapy water and plays in the water.,examines its contents as the girl.,2\n6002,anetv_iY7bZQnHXlk,14027,She sticks her hand in the sink which has soapy water and plays in the water. The camerman,She sticks her hand in the sink which has soapy water and plays in the water.,The camerman,gold,\"arrive, seems to stay.\",grabs a spoon form the sink and hands it to the girl.,turns around to face the water excitedly at the bottom of the stairs.,\"finishes the drink and rinses it, continuing to speak.\",1\n6003,anetv_iY7bZQnHXlk,16229,She is doing the dishes in the sink. She,She is doing the dishes in the sink.,She,gold,puts soap into the water in the sink.,\"puts the kettle on a sink and slams it in the sink, as the water suddenly disintegrates.\",starts back up off the stool and puts them in a plate.,climbs up on her knees and gets to the sink.,0\n6004,anetv_UeuZeIASSPw,6606,Woman is standing in a racetrack and start running to make a long jump. man stands and,Woman is standing in a racetrack and start running to make a long jump.,man stands and,gold,talks in the stands crowd as the man gets the fishbowl at the bar.,marks the space where the woman jumped.,spins forward to ski with her.,talks decorating the side of the grass.,1\n6005,anetv_UeuZeIASSPw,6607,The long jump is repeated and a new woman is running in the race track to make the long jump too and a man sits rise a whie flag. woman is in race trakc while other men are in the background and the woman makes the long jump in the competition and then a repetition,The long jump is repeated and a new woman is running in the race track to make the long jump too and a man sits rise a whie flag.,woman is in race trakc while other men are in the background and the woman makes the long jump in the competition and then a repetition,gold,is not in action.,from the arena in the field.,is shown along the results.,is shown and different people ocean.,2\n6006,lsmdc0026_The_Big_Fish-62562,8355,She hands him five dollars out of her pocket. He,She hands him five dollars out of her pocket.,He,gold,is out the door in a flash.,hangs the piece on her upper hand and drops it.,leaves the bottle in his jacket.,snaps it back into a vase.,0\n6007,lsmdc0026_The_Big_Fish-62562,8356,\"He is out the door in a flash. While someone sips his iced tea, someone\",He is out the door in a flash.,\"While someone sips his iced tea, someone\",gold,\"stands, pumps his arms, heaves another sigh, and looks at the camera behind a mirror.\",\"strides out of the cafe, climbs down the porch, revealing a blue hoodie and a blue cardigan.\",holds a thermometer to her hand as she notes it and stares at her in the mirror.,flips through a form she never expected to see again.,3\n6008,anetv_5sUctxaAFrw,16307,Several pictures are shown in the beginning of old roofs as well as new roofs and people working on top of these roofs. More shots,Several pictures are shown in the beginning of old roofs as well as new roofs and people working on top of these roofs.,More shots,gold,are shown of people riding around and leads into them falling in.,are shown of people walking around and having intensely fighting one another.,are shown of people spraying down the roofs and looking away from the camera.,are shown of people performing with one another and showing more clips of them falling down.,2\n6009,lsmdc3055_PROMETHEUS-27046,10526,Someone hands someone a cane. Someone and the aid,Someone hands someone a cane.,Someone and the aid,gold,feed a huge spiders exhibit.,get out.,help the decrepit old man to his feet.,pick up the ducks.,2\n6010,lsmdc0017_Pianist-55852,16448,\"Someone, also a little shabbier, wends his way through the setters and buyers, the beggars, the passers - by, and reaches someone. Someone\",\"Someone, also a little shabbier, wends his way through the setters and buyers, the beggars, the passers - by, and reaches someone.\",Someone,gold,\"drops the two volumes into the basket, takes a handle one side of the basket, someone the other.\",steps from the green door.,slides his pirate card.,\"has gone, as we see the footsteps, one of the participants went past his horse, and try to climb.\",0\n6011,anetv_brrf2inGs7E,11479,A person is seen turning on a faucet and rubbing their hands under the water. The person,A person is seen turning on a faucet and rubbing their hands under the water.,The person,gold,is then seen spraying around on the screen with a hose and soap afterwards.,rinses the glass with the rag and gathers it up.,\"pushes soap into their hands, watching the soap drip down, and then scrubs their hands.\",begins cleaning the window with the rag and wiping out water again.,2\n6012,anetv_x9BN93AXNTQ,9756,A close up of a computer is shown followed by a man stepping into frame and singing into the microphone. The man,A close up of a computer is shown followed by a man stepping into frame and singing into the microphone.,The man,gold,continues singing while the camera captures him and fades to black in the end.,continues playing and continuously drums while looking down.,begins brushing a person's hair with several hands as well as talks to the end.,smiles down various steps and begins to demonstrate the karate move together and ends by still speaking to the camera.,0\n6013,anetv_gOniW-yEZ0k,17876,A man is sitting in a park with his legs extended. two people,A man is sitting in a park with his legs extended.,two people,gold,are knelled in front of the man.,are standing in a forest towards a mountain covered with snow.,are standing on a platform overlooking the swimming pool.,are kneeling as he lays on the beach.,0\n6014,anetv_gOniW-yEZ0k,18829,A woman is seen kneeling down next to a man. Another person,A woman is seen kneeling down next to a man.,Another person,gold,is seen kneeling nearby.,is shown in them jumping as well as begin performing tricks as a laughing.,pours liquid into a martini glass.,walks past the camera.,0\n6015,anetv_gOniW-yEZ0k,17877,Two people are knelled in front of the man. one woman,Two people are knelled in front of the man.,one woman,gold,runs towards the camera.,takes a strip and waxes one of the man's legs.,stops walking and climbs in the building.,looks to see new arms properly.,1\n6016,lsmdc0004_Charade-47621,3083,\"Having seen the claw, he rises and walks to the very edge of the level part of the roof. Someone\",\"Having seen the claw, he rises and walks to the very edge of the level part of the roof.\",Someone,gold,turns and leaves going down the stairs.,ripples desperately as he gradually slides down beneath the open platform.,\"turns away and makes out of the view of the burning wreckage beside a flaming car, cutting her windshield again.\",dashes through the revolving gate.,0\n6017,anetv_jXARa4T2G8o,17603,An intro leads into a camera panning around various snow locations with people moving and plows moving. The camera,An intro leads into a camera panning around various snow locations with people moving and plows moving.,The camera,gold,continues driving down the road while stopping to talk for more.,pans out and leads into clips of people falling in pictures and piecing together.,shows several different people stretching and warming up followed by two people falling over and standing up.,pans around a large dirt track and down the mountain.,2\n6018,anetv_jXARa4T2G8o,17604,The camera shows several different people stretching and warming up followed by two people falling over and standing up. Several clips,The camera shows several different people stretching and warming up followed by two people falling over and standing up.,Several clips,gold,are shown of people sailing and riding around while the camera pans all around a people tied around the sides.,are shown of men falling celebrating and waving to the camera.,\"are then shown of people following and jumping around on bikes, then the celebrating chases in their direction.\",are shown of snow boarders doing tricks on a mountain as well as jumps and grinds.,3\n6019,lsmdc3088_WHATS_YOUR_NUMBER-42160,15732,\"Nearing a giant statue in the center of the room, she spots a handsome African - American man reading. Someone\",\"Nearing a giant statue in the center of the room, she spots a handsome African - American man reading.\",Someone,gold,\"of time, someone leads the others through the last alley and into the garden.\",grins as she pauses in a hotel bar to a computer.,\"ducks into an alcove, then peers back out at him.\",runs an arm across his stomach his clothes wrapped around his ankles.,2\n6020,lsmdc3088_WHATS_YOUR_NUMBER-42160,15739,Someone sets down her book and sits. She,Someone sets down her book and sits.,She,gold,glances at the camera as he sits with someone.,\"grimaces, then faces the others at the large table.\",pats a back on the seat at the dining table.,lowers her head as she picks up the fork and tastes it.,1\n6021,lsmdc3088_WHATS_YOUR_NUMBER-42160,15734,\"Pressing her lips together, someone ducks back into the alcove. Moments later, she\",\"Pressing her lips together, someone ducks back into the alcove.\",\"Moments later, she\",gold,walks into the kitchen.,\"signals to the civilian, and hurries toward the roof - the 'aircraft, where fuel cruisers arrive.\",\"casually steps out, pretending to read a book.\",glides down a corridor.,2\n6022,lsmdc3088_WHATS_YOUR_NUMBER-42160,15737,\"Someone gazes across the room at her ex, who sits engrossed in his work. As a woman\",\"Someone gazes across the room at her ex, who sits engrossed in his work.\",As a woman,gold,\"arrives, faces the team's digital press.\",\"turns and walks behind the counter, a message knocks someone over and over.\",leaves a seat across from the first.,stands beside someone she checks on someone.,2\n6023,lsmdc3088_WHATS_YOUR_NUMBER-42160,15731,\"She gives a man standing guard a little nod, then heads further in. Nearing a giant statue in the center of the room, she\",\"She gives a man standing guard a little nod, then heads further in.\",\"Nearing a giant statue in the center of the room, she\",gold,begins surrounded by a horizontal lift.,falls to a nearby tier.,\"heads inside, followed by a shabby white facing executive.\",spots a handsome african - american man reading.,3\n6024,lsmdc3088_WHATS_YOUR_NUMBER-42160,15740,\"She grimaces, then faces the others at the large table. Later, they all\",\"She grimaces, then faces the others at the large table.\",\"Later, they all\",gold,eat breakfast in an indoor cafe.,sit around a table.,hold the table under the lip and scoot it across the floor.,stand in a huge elven - argentina sky.,2\n6025,lsmdc3088_WHATS_YOUR_NUMBER-42160,15742,\"Someone looks past the statue at someone. As they set it down, a lamp\",Someone looks past the statue at someone.,\"As they set it down, a lamp\",gold,falls off the edge.,shines out from the sky.,launches back to a table at the table floor.,\"dives toward it, smashing the ceiling to the floor.\",0\n6026,lsmdc3088_WHATS_YOUR_NUMBER-42160,15735,\"Moments later, she casually steps out, pretending to read a book. As she\",\"Moments later, she casually steps out, pretending to read a book.\",As she,gold,races for a seat with a good vantage of someone.,\"does so, the aerial shows someone high on her lower cheeks.\",leafs through the contract to her friends.,holds a hand over her mouth and slaps down his face.,0\n6027,lsmdc3088_WHATS_YOUR_NUMBER-42160,15728,\"In a bubble bath, someone listens and giggles. Someone\",\"In a bubble bath, someone listens and giggles.\",Someone,gold,listens to an ipod in one ear.,claps for them as they join someone.,chats to a woman at a desk.,\"looks at him sheepishly, then faces his older friend.\",0\n6028,lsmdc3088_WHATS_YOUR_NUMBER-42160,15729,\"Someone takes a picture of himself in the bath, holding up the iPod, with a goofy grin, and sends it to someone. She\",\"Someone takes a picture of himself in the bath, holding up the iPod, with a goofy grin, and sends it to someone.\",She,gold,grins at the picture on her phone.,walks into the bedroom looking in through the window.,jumps up from his own bed and sits up.,\"appears at the bottom, stops at his sink.\",0\n6029,lsmdc3088_WHATS_YOUR_NUMBER-42160,15730,\"Someone enters in her slim gray pantsuit, her hair pulled back into a bun. She\",\"Someone enters in her slim gray pantsuit, her hair pulled back into a bun.\",She,gold,frowns at her and shrugs at some showroom braids.,tries to sit with him.,\"gives a man standing guard a little nod, then heads further in.\",\"is running for him, doing this as she is grieving.\",2\n6030,lsmdc3088_WHATS_YOUR_NUMBER-42160,15743,\"As they set it down, a lamp falls off the edge. Someone's jaw goes slack and she\",\"As they set it down, a lamp falls off the edge.\",Someone's jaw goes slack and she,gold,somersaults out of the car.,stares at the raised wing.,looks over at someone who grins at her.,glances back at the house.,2\n6031,lsmdc3088_WHATS_YOUR_NUMBER-42160,15727,He leans forward to watch her go. Someone,He leans forward to watch her go.,Someone,gold,glances toward her family.,limps on a crowded walkway.,sits at him indignantly.,leans back on her hands and bows his head.,1\n6032,anetv_eH8PT9fzbqU,13596,\"There are two people on a fenced in field and one of them has rope that they're moving, another person is looking down at something in their hands. A boy is standing on the outside of the field with other people just standing there and he\",\"There are two people on a fenced in field and one of them has rope that they're moving, another person is looking down at something in their hands.\",A boy is standing on the outside of the field with other people just standing there and he,gold,turns and the people ready.,watches a video some decaying.,reaches for a pen and holds it down to his finger in the same position that you never get to see it.,walks onto the field while the woman who was looking at something in her hands walks off.,3\n6033,anetv_eH8PT9fzbqU,12642,A boy in a white shirt walks on to a field. The boy,A boy in a white shirt walks on to a field.,The boy,gold,falls out of the rope but jumps off of his horse watching scoreboard.,picks up a ball and dips it across the big pile of sand.,swings his arms in preparation of throwing a shotput.,hits the ball with a ball and swings it on both sides of the court.,2\n6034,anetv_DAd-joUpMIk,83,There is another woman in the cable car getting ready to jump down. There,There is another woman in the cable car getting ready to jump down.,There,gold,\"is a huge crowd standing on the bridge, looking up at the cable car.\",see a van speed indoors in the competition.,does the same who then goes to help.,are onto the ground.,0\n6035,anetv_DAd-joUpMIk,79,She is surrounded by two men in yellow shirts. One of the men,She is surrounded by two men in yellow shirts.,One of the men,gold,starts playing a small drum.,\"is playing leaves, hitting the ball back and forth.\",sits on workout machines.,is holding a phone camera in his hand to video tape her as she jumps.,3\n6036,anetv_DAd-joUpMIk,78,A woman is getting ready too bungee jump from a cable car. She,A woman is getting ready too bungee jump from a cable car.,She,gold,walks over to a pier in a tunnel and rips her board.,\"dashes for the water, then climbs up the steep hill.\",is surrounded by two men in yellow shirts.,takes a back flip in the air and lands in a sand pit for the other woman.,2\n6037,anetv_DAd-joUpMIk,81,\"The men begin singing to cheer and encourage her to jump. After much hesitation, the woman finally\",The men begin singing to cheer and encourage her to jump.,\"After much hesitation, the woman finally\",gold,continues her performance behind the home.,jumps and hangs from the rope.,makes the sunny pose and continue dancing in the background.,stirs and folds the blue napkin on the table.,1\n6038,anetv_DAd-joUpMIk,80,One of the men is holding a phone camera in his hand to video tape her as she jumps. The men,One of the men is holding a phone camera in his hand to video tape her as she jumps.,The men,gold,continue to dance together while rinsing their hands.,find a chair and end by doing fire.,are driving the car in mugs of sticks.,begin singing to cheer and encourage her to jump.,3\n6039,lsmdc1045_An_education-90339,883,Someone wipes away her tears. She,Someone wipes away her tears.,She,gold,sobs into her hands.,dissolves into the dusky space.,takes her to a french stereo.,sees someone and dances closer.,0\n6040,lsmdc1045_An_education-90339,885,Someone puts the tea and biscuits on the floor by the door. Someone,Someone puts the tea and biscuits on the floor by the door.,Someone,gold,is racked by sobs.,jumps up from a pot.,moves outside from it.,gets up and starts down.,0\n6041,lsmdc1045_An_education-90339,886,\"Someone is racked by sobs. Later, she\",Someone is racked by sobs.,\"Later, she\",gold,smiles at him and smiles politely.,is visibly frustrated and pain.,holds up her phone as someone plays.,is in the head mistress' office.,3\n6042,lsmdc1045_An_education-90339,884,She sobs into her hands. Someone,She sobs into her hands.,Someone,gold,is dragged to a shelf.,glances around then face her scoreboard.,puts the tea and biscuits on the floor by the door.,picks up her lessons.,2\n6043,anetv_MhWIIdVyWVs,19738,A martial arts artists performs slow moves with her arms and legs simultaneously. A man,A martial arts artists performs slow moves with her arms and legs simultaneously.,A man,gold,show off his hand.,performs one gymnast lines near the parallel bars.,spins the hammer around the woman's shoulders.,speaks to the camera after the woman finishes her martial arts routine.,3\n6044,anetv_V3LvKGRzkeg,861,Other people watch on the sides as the group plays and speaks to one another. The band,Other people watch on the sides as the group plays and speaks to one another.,The band,gold,continues moving around the instrument while then bows to the camera.,practice behind them as well as all seated together.,plays in a pose and points to the cheering audience.,continues to play as others around them enjoy themselves.,3\n6045,anetv_V3LvKGRzkeg,16866,People are playing music up on a stage. People,People are playing music up on a stage.,People,gold,are dancing with an audience of people.,are at a foosball table talking to the camera.,are playing drums in front of them.,are watching them in front of the stage.,3\n6046,anetv_V3LvKGRzkeg,16867,People are watching them in front of the stage. People,People are watching them in front of the stage.,People,gold,are dancing in front of the stage.,are in the room getting ready for a race.,are sitting in bleachers watching the event.,are on a stool opposite one another.,0\n6047,anetv_V3LvKGRzkeg,860,A small group of people are seen standing on stage playing various instruments. Other people,A small group of people are seen standing on stage playing various instruments.,Other people,gold,are seen dancing with one another in the air.,are seen dancing on stage while another people lead into them playing instruments around.,watch on the sides as the group plays and speaks to one another.,are then seen bending down while standing around while one leads by taking pictures.,2\n6048,anetv_IAqNteMxXNk,3911,He puts the products into a sink and begins scrubbing around the sides. He,He puts the products into a sink and begins scrubbing around the sides.,He,gold,shots are shown of the bathroom getting over a sink and shows them standing and below a sink.,wipes down the counter and shows off the finished sink.,washes the dishes all over a sink.,continues riding around with the mop while speaking to the camera.,1\n6049,anetv_IAqNteMxXNk,3910,A man is seen standing behind a counter speaking to the camera and holding up cleaning products. He,A man is seen standing behind a counter speaking to the camera and holding up cleaning products.,He,gold,rubs his hands all around the sink and speaks to the camera.,puts the products into a sink and begins scrubbing around the sides.,continues hammering down the car while washing dishes in the sink.,pours all the ingredients into the sink and begins using the sink in the sink.,1\n6050,lsmdc3076_THE_SOCIAL_NETWORK-35234,6223,\"Someone drains a glass of brandy. Now in a taxicab, someone\",Someone drains a glass of brandy.,\"Now in a taxicab, someone\",gold,dozes on her boyfriend's shoulder.,gathers a box to find a bike seat.,waits on the beach.,leaps on a blowtorch.,0\n6051,lsmdc3076_THE_SOCIAL_NETWORK-35234,6222,\"As he goes, someone stares after him with an enthralled gaze. Someone\",\"As he goes, someone stares after him with an enthralled gaze.\",Someone,gold,forks against someone's forehead.,dances on the screen admiringly.,appears to discover the other someone lying on top of her.,drains a glass of brandy.,3\n6052,anetv_SIf4H2dqbpg,8929,They are each applying ornaments to the tree. They,They are each applying ornaments to the tree.,They,gold,take ornaments on the other picture.,get more from the buckets and add them to the tree.,put the dough in top of the christmas tree.,continue to playing with the golden ball.,1\n6053,anetv_SIf4H2dqbpg,15579,One man puts on a jacket on while the camera pans around to more people decorating. Close ups of decorations,One man puts on a jacket on while the camera pans around to more people decorating.,Close ups of decorations,gold,are shown as well as close ups of people.,is shown followed by a person setting up a christmas tree.,are shown as well as other kids speaking and people decorating a tree.,are shown as well as a man wearing dried lights.,0\n6054,anetv_SIf4H2dqbpg,15578,Two people are shown decorating a christmas tree followed by several others standing around. One man,Two people are shown decorating a christmas tree followed by several others standing around.,One man,gold,moves down and down the blue ornaments to the camera and the people continue to play.,puts on a jacket on while the camera pans around to more people decorating.,continues raking and leads into them performing different tricks and ends by putting the rake down.,dressed in a suit and talks and instructs the finished cake.,1\n6055,anetv_SIf4H2dqbpg,8928,A group of people are gathered around a tall christmas tree. They,A group of people are gathered around a tall christmas tree.,They,gold,are on the ground outside by the steel grey trailer.,are each applying ornaments to the tree.,are standing in front of some fallen tree watching and the clothes are holding up sides.,are playing rock paper scissors.,1\n6056,anetv_8Kv7piYg9yc,6231,\"A group of kids in a gymnasium play Rock, Paper, Scissors. A girl wearing a blue jacket\",\"A group of kids in a gymnasium play Rock, Paper, Scissors.\",A girl wearing a blue jacket,gold,runs across the gymnasium to the other side.,walks into the other girls.,is standing up by the fire wearing a blue shirt and a hat.,films the boy as her hand stands holding the wooden case in her hand.,0\n6057,anetv_8Kv7piYg9yc,6233,A group of boys run across to the other side of the gymnasium. The camera man,A group of boys run across to the other side of the gymnasium.,The camera man,gold,pans across the gymnasium where many children are running and playing the game.,has his next racket.,turns a puck to turn on the tennis player.,takes slips and swings the score board and attempts to catch the jump rope.,0\n6058,anetv_8Kv7piYg9yc,6232,A girl wearing a blue jacket runs across the gymnasium to the other side. A group of boys,A girl wearing a blue jacket runs across the gymnasium to the other side.,A group of boys,gold,leave the basketball court against the top of a rope on a basketball court.,run across to the other side of the gymnasium.,play people in the bleachers.,in red shirts perform volleyball and are followed by a girl with a club.,1\n6059,anetv_8Kv7piYg9yc,9517,\"They run back and forth, and the loser has to run. They\",\"They run back and forth, and the loser has to run.\",They,gold,jump from their feet.,continue playing throughout the video.,pick up some puppets.,come with the fire and point him across the clearing.,1\n6060,anetv_b4KrsFjcj-o,17304,People stand around in a room. People,People stand around in a room.,People,gold,do karate while some play the drums.,load a seat on a bike.,are in glasses on a basketball court.,are in bar other riding on donuts.,0\n6061,anetv_b4KrsFjcj-o,17305,People do karate while some play the drums. The karate opponents,People do karate while some play the drums.,The karate opponents,gold,are put inside the strip club.,try to get one through.,stop their drums in the end.,shake hands and hug.,3\n6062,lsmdc3064_SPARKLE_2012-4118,9848,\"She glances up at them with a reassuring look, and continues to the bottom. Waiting near the front door with a huge smile, someone\",\"She glances up at them with a reassuring look, and continues to the bottom.\",\"Waiting near the front door with a huge smile, someone\",gold,opens a door where a door opens.,stares with the book's keys.,holds her white fur coat.,puts the back of her seat on the canvas and stares at the road.,2\n6063,lsmdc3064_SPARKLE_2012-4118,9844,Now someone watches someone pack her jewelry into a box. Someone,Now someone watches someone pack her jewelry into a box.,Someone,gold,closes the buckles on her hard case black and white print suitcase.,perches on her bed as she rubs her noses together.,\"studies this well, a longer embarrassed.\",goes off and bounces off the rolling board.,0\n6064,lsmdc3064_SPARKLE_2012-4118,9847,They watch someone wind halfway down the wooden staircase with a confident strut. She,They watch someone wind halfway down the wooden staircase with a confident strut.,She,gold,\"glances up at them with a reassuring look, and continues to the bottom.\",\"sets down his books, sets the bag on a deserted floor - and takes off a lamp, reading a paper.\",aims his weapon at someone.,\"warmly against the wall as he relaxes, his shadow cast against a shadowy wall.\",0\n6065,lsmdc3064_SPARKLE_2012-4118,9851,\"She stares out for a moment toward her oldest daughter, then gently closes the front door. Turning around, she\",\"She stares out for a moment toward her oldest daughter, then gently closes the front door.\",\"Turning around, she\",gold,passes a blonde young girl separating her way through the french windows.,\"gazes up at her two remaining daughters, who glare down.\",gets back the passenger seat and smiles.,studies the mutt in them.,1\n6066,lsmdc3064_SPARKLE_2012-4118,9855,\"As he reads a book in a burgundy robe, she serves him coffee and caresses his shoulders. She\",\"As he reads a book in a burgundy robe, she serves him coffee and caresses his shoulders.\",She,gold,\"arrives at another building, where a case twitch over a chest.\",sits on his lap.,shoves the back of her head in the bar and shifts her attention to the music.,steps up to the bedroom door.,1\n6067,lsmdc3064_SPARKLE_2012-4118,9853,\"Now at a flat roof mansion, identical glass paneled doors line a lengthy balcony. Someone\",\"Now at a flat roof mansion, identical glass paneled doors line a lengthy balcony.\",Someone,gold,emerges from inside and approaches someone in a white baby doll nightie.,smashes a plastic box with a machine gun.,opens the room to the windows of the pizzeria.,\"coughs, having eaten food over.\",0\n6068,lsmdc3064_SPARKLE_2012-4118,9856,\"As their embrace intensifies, they passionately kiss each other's necks. He\",\"As their embrace intensifies, they passionately kiss each other's necks.\",He,gold,swiftly turns the turn - sharply around.,\"flings an arm around someone, ripping her loose shirt.\",rubs his hand up her body.,passes from the forest to someone.,2\n6069,lsmdc3064_SPARKLE_2012-4118,9849,\"Waiting near the front door with a huge smile, someone holds her white fur coat. She hands him a suitcase and they\",\"Waiting near the front door with a huge smile, someone holds her white fur coat.\",She hands him a suitcase and they,gold,continue out the front door.,hurry over in confusion.,look down at him.,share the light bulb.,0\n6070,lsmdc3064_SPARKLE_2012-4118,9858,\"Now inside someone's mansion, someone rubs her nose while smoking a cigarette. A thick head band\",\"Now inside someone's mansion, someone rubs her nose while smoking a cigarette.\",A thick head band,gold,sits nearby watching the movie home.,supports her disheveled hair.,burst from the phone.,carries 10 past bright camels.,1\n6071,lsmdc3064_SPARKLE_2012-4118,9854,\"Someone emerges from inside and approaches someone in a white baby doll nightie. As he reads a book in a burgundy robe, she\",Someone emerges from inside and approaches someone in a white baby doll nightie.,\"As he reads a book in a burgundy robe, she\",gold,\"clips her shoes, revealing the tin.\",shifts a net onto an enormous returning chair.,waves the flower to her father.,serves him coffee and caresses his shoulders.,3\n6072,lsmdc3064_SPARKLE_2012-4118,9843,Someone shares a gaze with someone. She,Someone shares a gaze with someone.,She,gold,gives a respectful nod.,pours a cup of coffee as she jogs into someone's apartment.,\"glances at the others, then walks out.\",turns her head around to look at a cab.,2\n6073,lsmdc3064_SPARKLE_2012-4118,9845,\"Holding back tears, someone separates from someone. With a soft smile, she\",\"Holding back tears, someone separates from someone.\",\"With a soft smile, she\",gold,pulls away from him after the teapot.,allows him to cover up a smile.,touches someone's cheek and grabs her suitcases.,unzips a jacket and steps down.,2\n6074,lsmdc3064_SPARKLE_2012-4118,9852,\"Turning around, she gazes up at her two remaining daughters, who glare down. Now at night, someone\",\"Turning around, she gazes up at her two remaining daughters, who glare down.\",\"Now at night, someone\",gold,chases a junk dish on a rocky wall.,\"struts across the campus, flanked by their team members, and reaches their pickup through the narrow alley.\",\"mounts someone's motorcycle, holding him tight.\",puts water in a wardrobe.,2\n6075,lsmdc3064_SPARKLE_2012-4118,9842,Someone meets her daughter's gaze. Someone,Someone meets her daughter's gaze.,Someone,gold,is just taken in.,wipes tears from her cheeks.,averts her gaze then lowers his shrug.,considers the question and now.,1\n6076,lsmdc3045_LAND_OF_THE_LOST-21340,16030,He heads out of the plaza. Someone,He heads out of the plaza.,Someone,gold,\"stares at the ringwraith, wide - eyed.\",leans wearily against a rock and faces someone.,faces his neighbor who lowers the window inside a house.,stows his ax in a cabinet.,1\n6077,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12713,He disappears in a spiral of black smoke. Someone still,He disappears in a spiral of black smoke.,Someone still,gold,lowers the barrel of the gun with a clown.,lowers the gun nervously.,\"kneels beside someone, who is lying unconscious.\",\"wears his mask, flute.\",2\n6078,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12712,\"Appearing from fireplaces, someone and his minions see someone. He\",\"Appearing from fireplaces, someone and his minions see someone.\",He,gold,finds a form of three clicks.,has mixed out of a black limousine.,takes the menacing stick and stares at someone.,disappears in a spiral of black smoke.,3\n6079,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12711,A faint black vapor leaves his body. He,A faint black vapor leaves his body.,He,gold,grabs the last scroll from the shelf and skims it.,\"opens it, sees somebody.\",exhales it tighter around his neck and fires.,looks up and see someone hovering above him.,3\n6080,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12710,Someone makes a last desperate effort. Someone,Someone makes a last desperate effort.,Someone,gold,watches the cat leave.,is thrown onto his back.,bows and faces him.,falls asleep on the bed.,1\n6081,anetv_lRB6XvAm_FU,17420,The words Decorating With Attitude appear on screen. Children,The words Decorating With Attitude appear on screen.,Children,gold,are speeding down a street.,appear in the background laying out more snow ombre.,cups the palm while a team member takes a picture of an animal.,open ornaments and place them on the tree.,3\n6082,anetv_lRB6XvAm_FU,17422,She then purposely breaks another ornament. Credits,She then purposely breaks another ornament.,Credits,gold,roll at the end.,\"in handcuffs, she ends with a photo of a cool soft father exam table.\",she has made a removed letter on a gurney and puts it on her leather jewelry box.,\", the ingredients are once again applied onto the cake.\",0\n6083,anetv_lRB6XvAm_FU,6495,They are putting ornaments onto the Christmas tree. Words,They are putting ornaments onto the Christmas tree.,Words,gold,take up a sharp stack of paper on logs.,is putting photos onto the christmas tree.,are being carried by a christmas tree while people are jumping on blankets in the grass.,come onto the screen.,3\n6084,anetv_lRB6XvAm_FU,6494,Kids are sitting under a Christmas tree. They,Kids are sitting under a Christmas tree.,They,gold,are pushing a small mower across the lawn.,crash into each other.,do to balance the christmas tree.,are putting ornaments onto the christmas tree.,3\n6085,anetv_lRB6XvAm_FU,17421,Children open ornaments and place them on the tree. The little girl,Children open ornaments and place them on the tree.,The little girl,gold,poses between the tree two pillars in the yard.,tightens box between sticks and begins to climb up on the beached board.,destroys a glass ornament.,take them out of the tree and places a can on another tree.,2\n6086,anetv_3FUVKpQA6IY,4466,\"Then, she takes a seat and the other guy takes his turn. Then it's the girl on the other teams turn, they\",\"Then, she takes a seat and the other guy takes his turn.\",\"Then it's the girl on the other teams turn, they\",gold,continue dancing back and forth then continue playing the game again.,\"keep taking their turns and drinking away, having a good time.\",twins going back upstairs in the floor.,go back and pick her up.,1\n6087,anetv_3FUVKpQA6IY,4465,\"Some people are playing beer bong having a good time, the man throws fist and he makes it into the girls cup. She\",\"Some people are playing beer bong having a good time, the man throws fist and he makes it into the girls cup.\",She,gold,drinks her drink and then wets her ball in water before throwing her ball.,\"moves the colored puck into camera, take it out and return it into the shot.\",wrings the plates and cups on them.,is then shown as a little girl in black and a little girl talk to him.,0\n6088,anetv_A4PdcfWqrN8,19410,\"A dog spins around in a circle with her. the woman stops spinning, the dog then\",A dog spins around in a circle with her.,\"the woman stops spinning, the dog then\",gold,closes it onto the screen.,hits a phone to another woman.,stands on the woman's back.,grabs something from her and holds back up a little.,2\n6089,anetv_A4PdcfWqrN8,19409,A woman holding two frisbees spins around in a circle. a dog,A woman holding two frisbees spins around in a circle.,a dog,gold,does a belly dance.,runs around on top of her.,\"walks into a black, green field holding a racket.\",spins around in a circle with her.,3\n6090,anetv_A4PdcfWqrN8,19411,The woman throws the frisbee and the dog catches it. the woman and the dog,The woman throws the frisbee and the dog catches it.,the woman and the dog,gold,continue to do various tricks.,run out of the room and follow the woman.,run back to catch the frisbee as she feeds the dog.,stand in a kitchen as she plays frisbee.,0\n6091,anetv_fULvroAfMAo,6312,\"A guy raises a metal ball above his head, spins with a metal ball, and releases the metal ball. A guy cheers after\",\"A guy raises a metal ball above his head, spins with a metal ball, and releases the metal ball.\",A guy cheers after,gold,cheering a men five the four as the score and the coaches start to walk around.,practice darts and the man on the push board.,releasing the metal ball.,template puts his hands on the ground and the crowd claps.,2\n6092,anetv_fULvroAfMAo,6311,The credits of the clip are shown. A guy,The credits of the clip are shown.,A guy,gold,holds a plastic glass ball of chips in his left hand with a bat in hand.,\"raises a metal ball above his head, spins with a metal ball, and releases the metal ball.\",is throwing darts into the net.,is playing a polo game on a basketball court.,1\n6093,anetv_f-r9g_-5huM,7400,A man and woman are talking. A man,A man and woman are talking.,A man,gold,reaches for the kids to start talking.,is talking into a microphone.,starts playing a harmonica.,is doing a exercise in front of a table in front of him.,2\n6094,anetv_ZIFxB0gZ5tY,4979,We see a man swinging in a park. The man,We see a man swinging in a park.,The man,gold,stands while holding onto the swing.,holds up percussion instruments.,takes several other objects around to see more surfers break through the water.,hops around and swings himself around.,0\n6095,anetv_ZIFxB0gZ5tY,4980,The man stands while holding onto the swing. The man stands again and we,The man stands while holding onto the swing.,The man stands again and we,gold,see a little girl.,see the men walking away.,see the closing screen.,see the ending title credits.,0\n6096,anetv_ZIFxB0gZ5tY,4981,\"The man stands again and we see a little girl. A lady tries to put the girl in the swing, but she\",The man stands again and we see a little girl.,\"A lady tries to put the girl in the swing, but she\",gold,\"moves up quickly, while a white shot of her walks over and joins her.\",catches hold of the rake and jumps between the lovebirds.,goes stick without practicing.,ends up swinging alone.,3\n6097,lsmdc3089_XMEN_FIRST_CLASS-43799,9198,Black - and - white footage of someone f. Kennedy appear. Someone,Black - and - white footage of someone f. Kennedy appear.,Someone,gold,\"glares at the glass from her open door, bloody pain spreads on the front of someone's neck.\",\"pushes his wheelchair, then stops and faces him.\",\"and people watch, transfixed.\",adjusts someone's office with his associates.,1\n6098,anetv_LvkqCFRC5Vk,13580,A man in a brown suit is talking. People,A man in a brown suit is talking.,People,gold,walk around on empty grass.,are inside a ring and talking about their bikes.,are sitting on a slack line.,are running around on a field playing lacrosse.,3\n6099,anetv_9qOfesI3bGE,10511,A man is seated with an accordian on his lap. He,A man is seated with an accordian on his lap.,He,gold,starts playing the guitar.,talks to a camera while talking to the camera.,uses the spoon next to the instrument waiting for him to play.,pulls it in and out as he plays the keyboard with his other hand.,3\n6100,anetv_Gd6YooP1_CU,194,The camera pans around to more people with drinks in their hands. A ma,The camera pans around to more people with drinks in their hands.,A ma,gold,looks down at his lap with the drink still in front of him.,is shown on the screen and ends by ends with more clips of men playing and playing them.,is then shown hitting a plate with and grabbing a large ball.,is shown posing with a woman.,0\n6101,anetv_Gd6YooP1_CU,193,A close up of a coffee drink is shown followed by a man drinking out of the cup. The camera,A close up of a coffee drink is shown followed by a man drinking out of the cup.,The camera,gold,is then seen close up with glasses.,pans around to more people with drinks in their hands.,interspersed with a man drinking glasses with the man drinking a drink.,speaks to the camera while downcast.,1\n6102,lsmdc0023_THE_BUTTERFLY_EFFECT-59707,17520,Someone screams as blood pours from his nose. Someone,Someone screams as blood pours from his nose.,Someone,gold,seizes someone's hand.,fills the cup with blood and blows the smoke.,is out of bed at once to help him.,gazes at a ceiling fan.,2\n6103,lsmdc0023_THE_BUTTERFLY_EFFECT-59707,17518,\"We see countless and brief image flashes of someone growing up from the age of thirteen with no arms, and requiring a.. People\",\"We see countless and brief image flashes of someone growing up from the age of thirteen with no arms, and requiring a..\",People,gold,\"pant, someone is haunted.\",strokes the man's hair.,\"mill up a hill of sharpening trees, which is covered by other trees.\",load popcorn and drinks onto someone's lap as someone pushes the wheelchair.,3\n6104,anetv_z9uVyf0D8eM,15295,A man is seen playing a set of bag pipes to the camera while moving his hands up and down. The man,A man is seen playing a set of bag pipes to the camera while moving his hands up and down.,The man,gold,continues playing the instrument in the room and ends by moving his hands down.,continues speaking and well as the man showing up the violin and kicking him hands in the air.,continues playing with the racket and finishes by stopping to speak to the camera.,continues speaking to the camera while still putting down the guitar.,0\n6105,lsmdc3003_40_YEAR_OLD_VIRGIN-1265,2929,Someone flicks his friend in the crotch. Someone in the groins,Someone flicks his friend in the crotch.,Someone in the groins,gold,slaps him and punches his shoulder.,stops the pixie - faced a who considers the com.,hits him again and spits in his face before leaving.,\", the doctor and his cronies look for crates for them.\",0\n6106,lsmdc3003_40_YEAR_OLD_VIRGIN-1265,2928,Someone sets his drink down. Someone,Someone sets his drink down.,Someone,gold,flicks his friend in the crotch.,tosses the bar to someone who blocks him.,points his stick sheepishly.,blinks from his apartment.,0\n6107,lsmdc3043_KATY_PERRY_PART_OF_ME-20851,5050,Dancers pose around someone as she stands center stage with one arm raised straight up. Fountains of sparking fireworks,Dancers pose around someone as she stands center stage with one arm raised straight up.,Fountains of sparking fireworks,gold,\"rip in circles above them, sending crests clouded images of the ocean.\",\"illuminate a vast street gauge, with tall wrought iron doors.\",shoot up behind them.,extend up on the the priest.,2\n6108,lsmdc3043_KATY_PERRY_PART_OF_ME-20851,5051,\"Fountains of sparking fireworks shoot up behind them. With her eyes closed, someone\",Fountains of sparking fireworks shoot up behind them.,\"With her eyes closed, someone\",gold,\"mouths the words, thank you, god.\",\"speeds off, leaving a wide row of vehicles driving down the lane.\",shakes her head and settles back in his seat.,disintegrates into a puddle.,0\n6109,lsmdc3050_MR_POPPERS_PENGUINS-23804,14803,\"Someone pats him on the shoulder. As he and his assistant head out, someone\",Someone pats him on the shoulder.,\"As he and his assistant head out, someone\",gold,\"crouches right by the wine bottle, peering across his water's goggles.\",crouches and leads him toward the stairwell.,points from the passenger seat.,swivels his chair to face them.,3\n6110,lsmdc3050_MR_POPPERS_PENGUINS-23804,14795,He nods to someone who turns on a fan. He,He nods to someone who turns on a fan.,He,gold,youngsters pass on the letter!,\"takes a deep breath on his own mouth, then turns on a cellphone.\",sprinkles someone with water from a pitcher.,girl hikes out of the river as the four lifeboats from the wrecked boat explode the chasm.,2\n6111,lsmdc3050_MR_POPPERS_PENGUINS-23804,14796,He sprinkles someone with water from a pitcher. Someone,He sprinkles someone with water from a pitcher.,Someone,gold,smears his skin and dabs.,tosses scraps of newspaper.,stares at the bear.,\"squeezes it out with his finger, then rushes out.\",1\n6112,lsmdc3050_MR_POPPERS_PENGUINS-23804,14794,Someone rocks someone's chair. He,Someone rocks someone's chair.,He,gold,\"extends helplessly to someone, who sits back down.\",nods to someone who turns on a fan.,\"manages a little, then stares at the ground.\",follows someone and him toward the table.,1\n6113,lsmdc3050_MR_POPPERS_PENGUINS-23804,14802,\"Someone shuts his eyes, and shakes his head. Someone\",\"Someone shuts his eyes, and shakes his head.\",Someone,gold,tensely shifts his anguished eyes.,presses his lips together with a gentle smirk.,hands the two boys.,pats him on the shoulder.,3\n6114,lsmdc3050_MR_POPPERS_PENGUINS-23804,14804,\"As he and his assistant head out, someone swivels his chair to face them. Someone\",\"As he and his assistant head out, someone swivels his chair to face them.\",Someone,gold,spots him pushing a bedraggled woman over his shoulder.,leans into someone's mic.,turns back with a smile.,gets up from the table.,2\n6115,lsmdc3050_MR_POPPERS_PENGUINS-23804,14800,He looks at someone who hands him a newspaper hat. He,He looks at someone who hands him a newspaper hat.,He,gold,notices her up a few inches off the floor next to the room.,looks to the spot where someone has been lying and wipes his right forearm.,places the hat on his client's bald head.,enters with an interview and sees the reporters having breakfast.,2\n6116,lsmdc3050_MR_POPPERS_PENGUINS-23804,14801,He places the hat on his client's bald head. Someone,He places the hat on his client's bald head.,Someone,gold,\"picks up someone, his mugshot taped to the wall in the next room.\",\"shuts his eyes, and shakes his head.\",ducks down to drag his hands out.,hops out of the cab.,1\n6117,lsmdc3050_MR_POPPERS_PENGUINS-23804,14798,Someone spins his client's chair. Someone,Someone spins his client's chair.,Someone,gold,uses tape to take cover.,\"and his family sit on the couch, next to the wheelchair.\",\"raises it and sets it in his glasses, then dials the number.\",cocks an eyebrow at his assistant.,3\n6118,anetv_kF-J9mKwA8A,8797,Other people walk in and out of frame from the boy while he continuously plays the game on the drum. Another boy holding a drink,Other people walk in and out of frame from the boy while he continuously plays the game on the drum.,Another boy holding a drink,gold,raises the other arm to give them a big shot.,sits on the altar.,walks into frame and watches the boy play the game.,pulls the ball off the screen and finishes with the man.,2\n6119,anetv_kF-J9mKwA8A,8796,A young boy playing a large drum game concentrates while the camera watches him play. Other people,A young boy playing a large drum game concentrates while the camera watches him play.,Other people,gold,are shown playing on a stone and moving to the floor.,walks quietly on the stage by three and off to one another.,stand up and chase him.,walk in and out of frame from the boy while he continuously plays the game on the drum.,3\n6120,anetv_oD45QIOK4z0,13803,The players from Brasil scores while people in the bleaches celebrate. A Brazilian player,The players from Brasil scores while people in the bleaches celebrate.,A Brazilian player,gold,\"pass the ball to his playmate who scores and runs to celebrate, other brazilian players scores many times.\",has flags and and looks after them with orange extensions.,reads on a bomber record.,passes between two teams as they charge in and throw their goal.,0\n6121,anetv_oD45QIOK4z0,13804,\"After, Brasil plays with other teems and scores many times. Then Brasil\",\"After, Brasil plays with other teems and scores many times.\",Then Brasil,gold,form the track and put vines at the edge of the beach.,plays with players from other countries and scores.,hops off a rock that flicks on his side.,works and the screen shows a black screen.,1\n6122,anetv_mWNTl9Bh7kI,13844,A small group of men are seen standing on a field. The men,A small group of men are seen standing on a field.,The men,gold,continue fighting with one another while various people are shown.,playing a game with one another using sticks to hit a ball.,jump around one another while other watch on the side.,continuously circle one another while moving around and adding pucks.,1\n6123,anetv_mWNTl9Bh7kI,2724,Kids are running around on the field playing criquet. They all,Kids are running around on the field playing criquet.,They all,gold,begin talking around the kids.,chase after the ball.,get around and run out of the park area.,get on the walk and shake hands.,1\n6124,anetv_mWNTl9Bh7kI,2723,A man in a white shirt is standing on a field. Kids,A man in a white shirt is standing on a field.,Kids,gold,are running around on the field playing criquet.,start playing a game of beer pong.,are talking to the camera watching him.,are pulling on a rope from side to side.,0\n6125,anetv_doNSg6PuKDM,18850,The girl drops her shovel and shovel in the snow. The child,The girl drops her shovel and shovel in the snow.,The child,gold,is taking wet snow from her windshield.,flips once the girls stride out on the concrete walkway.,walks off to a cabin while taking blankets out in front of her.,walks over to her family in the yard.,3\n6126,anetv_doNSg6PuKDM,18849,A child shovels the snow in a yard and throws it into the driveway. The girl,A child shovels the snow in a yard and throws it into the driveway.,The girl,gold,\"moves over to face the mower, making along to a sign that is held with the rope still in it.\",stares down at the snow tree having passed.,drops her shovel and shovel in the snow.,gets in the car and walks to the front of the girl home.,2\n6127,anetv_yG4C_s7ItA4,2563,She pours lotion onto her hand and puts it on her legs with a towel. She,She pours lotion onto her hand and puts it on her legs with a towel.,She,gold,begins to shave her legs.,rolls on to her side and goes to a window.,rubs the lotion onto her hands.,repeats the process again and continues shaving her neck.,0\n6128,anetv_yG4C_s7ItA4,2561,A woman sits on a bench shaving her legs. She,A woman sits on a bench shaving her legs.,She,gold,pumps lotion out of a bottle and spreads it on her leg.,lets her hair hang with her faces.,flops on her back.,does a gymnastic routine to the balance beam.,0\n6129,anetv_yG4C_s7ItA4,10532,A woman is sitting wiping her legs. another woman,A woman is sitting wiping her legs.,another woman,gold,\"is sitting on the ground, dancing around.\",places a tattoo on her shoulder.,is sitting in front of the camera talking.,is holding a shoe over her father's face.,2\n6130,anetv_yG4C_s7ItA4,2562,She pumps lotion out of a bottle and spreads it on her leg. She,She pumps lotion out of a bottle and spreads it on her leg.,She,gold,sits up while smacking its lips with an open razor.,pours lotion onto her hand and puts it on her legs with a towel.,\"lifts the weight over the ground, grabs it and holds it with her hands.\",shows her hairstyle to a lot of ladies in the stands and standing by the bed.,1\n6131,anetv_yG4C_s7ItA4,2564,She begins to shave her legs. She,She begins to shave her legs.,She,gold,continues brushing her hair.,has a kick up.,puts shaving cream on her leg and continues to shave.,peels her hair up.,2\n6132,lsmdc3022_DINNER_FOR_SCHMUCKS-10428,3664,Someone runs a hand through his hair. Someone,Someone runs a hand through his hair.,Someone,gold,shoves someone's hair in his grasp.,starts for the door then stops.,takes out a grenade with someone.,barges him and knocks him forward.,1\n6133,lsmdc3036_IN_TIME-16137,5492,Someone and someone flinch as shots hit the windshield. Someone briefly,Someone and someone flinch as shots hit the windshield.,Someone briefly,gold,\"meanders down the road, which explodes sending someone falling.\",takes someone's hand.,fills a cup with water.,follows someone to the corridor.,1\n6134,lsmdc3036_IN_TIME-16137,5496,\"Meanwhile, outside the Mission, someone waits with the young proprietor. She\",\"Meanwhile, outside the Mission, someone waits with the young proprietor.\",She,gold,takes a bundle of glue from the ceiling.,blinks her anxious eyes.,steps away from a barefoot crash.,\"replaces a hatch on a back wall, then peers at a wall.\",1\n6135,lsmdc3036_IN_TIME-16137,5486,\"Spinning the wheel, he skids around a grassy island dividing the two directions of traffic. At one end of a bridge, timekeeper vehicles\",\"Spinning the wheel, he skids around a grassy island dividing the two directions of traffic.\",\"At one end of a bridge, timekeeper vehicles\",gold,line up along the zone's border.,make their way through a pair of green armored cars.,pass to a stop in front of him.,exit into the parking lot.,0\n6136,lsmdc3036_IN_TIME-16137,5512,A wide view shows someone and someone running on cracked pavement. Someone,A wide view shows someone and someone running on cracked pavement.,Someone,gold,\"jerks at the side, his wings trampled by the pergola.\",\"rounds a corner, knocking over them.\",smiles after her as he flops down in a makeshift hammock.,glances over his shoulder.,3\n6137,lsmdc3036_IN_TIME-16137,5506,\"He glances over his shoulder. Behind him, someone\",He glances over his shoulder.,\"Behind him, someone\",gold,nervously uses his flashlight to find the safe.,\"shrugs his arms, then slides his boots soft the water and leads him down a dark corridor.\",bundle his cot.,shoves his way past the flood of dayton residents.,3\n6138,lsmdc3036_IN_TIME-16137,5508,\"With his gun in one hand, he pumps his arms as he sprints furiously. He\",\"With his gun in one hand, he pumps his arms as he sprints furiously.\",He,gold,\"skates through a field, another leaps with a pole down a trail.\",takes off his helmet.,steals an elevator from the driver's office seat.,finds a timekeeper parked on a corner with his driver's side door open.,3\n6139,lsmdc3036_IN_TIME-16137,5505,Someone pulls her against the flow of the crowd. He,Someone pulls her against the flow of the crowd.,He,gold,reaches up and tickles his hold.,tucks the ring away in his pocket.,trips and falls as someone's gaze drops after the action.,glances over his shoulder.,3\n6140,lsmdc3036_IN_TIME-16137,5500,\"Both vehicles skid to a stop, billowing smoke. Someone\",\"Both vehicles skid to a stop, billowing smoke.\",Someone,gold,spots the mechanical man descending onto a couch.,pushes a plane into the back.,runs over as someone climbs out of the limo.,rushes in and pokes a balloon at someone.,2\n6141,lsmdc3036_IN_TIME-16137,5502,He's got an hour. Someone,He's got an hour.,Someone,gold,gets out of his car.,is washed through a busy envelope.,sits up on the chair outside.,is mashed on a rock behind someone.,0\n6142,lsmdc3036_IN_TIME-16137,5514,\"Someone parks behind a barricade of concrete blocks across the road which someone the time zone border. Clutching his gun, he\",Someone parks behind a barricade of concrete blocks across the road which someone the time zone border.,\"Clutching his gun, he\",gold,uses a paint gun to keep the flame from the flame up which are pointed at its door.,leads the handful of werewolf in the high circle towards the water bank.,sprints between the blocks and follows the road down the hill.,scrambles to his feet and stains the vest with his gun.,2\n6143,lsmdc3036_IN_TIME-16137,5497,She blinks her anxious eyes. As they,She blinks her anxious eyes.,As they,gold,\"'ve reached a side of the spaghetti, someone watches her go.\",speed through an intersection one block from the mission.,\"zoom in, everyone turns to stare at him.\",\"stand, someone faces her and they hug.\",1\n6144,lsmdc3036_IN_TIME-16137,5491,\"A barrage of bullets hits the limo, sending sparks off the vehicle's armored body. Someone and someone\",\"A barrage of bullets hits the limo, sending sparks off the vehicle's armored body.\",Someone and someone,gold,flinch as shots hit the windshield.,arrive into the sky.,\"ride through the motors, dirt trail as three kale soldiers chase the departing brolly.\",pull up positions after hill.,0\n6145,lsmdc3036_IN_TIME-16137,5488,\"Taking shelter behind them, timekeepers aim their weapons over the hoods. Someone\",\"Taking shelter behind them, timekeepers aim their weapons over the hoods.\",Someone,gold,grabs the shield into a slumped horse.,stares with determined eyes as he speeds toward the barricade.,locates the quaffle with the blue fin high above him.,backs off with his head.,1\n6146,lsmdc3036_IN_TIME-16137,5511,\"Meanwhile, the cruiser speeds down a nearby road. A wide view\",\"Meanwhile, the cruiser speeds down a nearby road.\",A wide view,gold,shows the hearing car approaching.,shows people sprawling on their path and residential pedestrians.,shows someone and someone running on cracked pavement.,shows the vehicles flying off.,2\n6147,lsmdc3036_IN_TIME-16137,5498,As they speed through an intersection one block from the Mission. Someone's cruiser,As they speed through an intersection one block from the Mission.,Someone's cruiser,gold,emerges from the cross street and smashes into them.,touches the snow towards them as he builds.,\"travels down from a classroom, narrowly missing someone's bag.\",lies as metallic convoy.,0\n6148,lsmdc3036_IN_TIME-16137,5489,Someone stares with determined eyes as he speeds toward the barricade. Someone,Someone stares with determined eyes as he speeds toward the barricade.,Someone,gold,\"glances over her shoulder at someone's cruiser, which closes in.\",is watering down the street.,is stunned as they go upstairs.,hits the gunman.,0\n6149,lsmdc3036_IN_TIME-16137,5515,\"Someone cuts them off, his gun raised. They\",\"Someone cuts them off, his gun raised.\",They,gold,halt in front of him.,dart through the plastic cover surrounding each other.,explode in the arena.,lean through the row of targets for vault.,0\n6150,lsmdc3036_IN_TIME-16137,5501,Someone runs over as someone climbs out of the limo. He,Someone runs over as someone climbs out of the limo.,He,gold,\"leans into a dirt walkway, his hands sticking down onto the side of someone's shoulders.\",\"jumps out from the ocean's upturned side, crossing the royal vessel in a flashback.\",\", the convulsing, flops on.\",glances at the cruiser but sees no movement.,3\n6151,lsmdc3036_IN_TIME-16137,5499,Someone's cruiser emerges from the cross street and smashes into them. Both vehicles,Someone's cruiser emerges from the cross street and smashes into them.,Both vehicles,gold,disappear as a pickup lurches and explodes around the ringwraiths.,take off in the stream.,\"skid to a stop, billowing smoke.\",arrive and someone's rookie eyes up at him.,2\n6152,lsmdc3036_IN_TIME-16137,5509,\"He finds a timekeeper parked on a corner with his driver's side door open. Grabbing him, he\",He finds a timekeeper parked on a corner with his driver's side door open.,\"Grabbing him, he\",gold,races through the fashions as hard as the others can.,catches up with her.,hurls him to the ground.,collapses to the floor.,2\n6153,lsmdc3036_IN_TIME-16137,5490,\"Someone glances over her shoulder at someone's cruiser, which closes in. A barrage of bullets\",\"Someone glances over her shoulder at someone's cruiser, which closes in.\",A barrage of bullets,gold,\"hits the limo, sending sparks off the vehicle's armored body.\",hit someone who reloads.,knocks him off the road.,smash into the car in the alley parking lot.,0\n6154,lsmdc3036_IN_TIME-16137,5487,\"At one end of a bridge, timekeeper vehicles line up along the zone's border. Taking shelter behind them, timekeepers\",\"At one end of a bridge, timekeeper vehicles line up along the zone's border.\",\"Taking shelter behind them, timekeepers\",gold,notices the off clouds skilled.,fly off the running lifeboat.,play waiter's former deck.,aim their weapons over the hoods.,3\n6155,lsmdc3036_IN_TIME-16137,5495,\"Following close behind, someone's cruiser turns a corner. Meanwhile, outside the Mission, someone\",\"Following close behind, someone's cruiser turns a corner.\",\"Meanwhile, outside the Mission, someone\",gold,waits with the young proprietor.,notices someone staring at her cousin.,rests his dog against someone's chest.,attacks a stairwell and grabs his bags.,0\n6156,lsmdc3036_IN_TIME-16137,5507,\"Behind him, someone shoves his way past the flood of Dayton residents. With his gun in one hand, he\",\"Behind him, someone shoves his way past the flood of Dayton residents.\",\"With his gun in one hand, he\",gold,pulls out a small handful of money guns.,pumps his arms as he sprints furiously.,\"makes his way past a stone halfway up, to another clearing.\",pulls out a stack of bills.,1\n6157,lsmdc3036_IN_TIME-16137,5494,He weaves the limo between the cruisers. The limo,He weaves the limo between the cruisers.,The limo,gold,hits the empty overpass into the woods.,\"slams into the center of it, hauling them out.\",reaches out of reach.,speeds down a street in the ghetto.,3\n6158,lsmdc3036_IN_TIME-16137,5485,\"Someone finds 44 minutes on his clock. Spinning the wheel, he\",Someone finds 44 minutes on his clock.,\"Spinning the wheel, he\",gold,starts himself in the general's video.,drops inside the lock.,skids around a grassy island dividing the two directions of traffic.,straightens a man's shorts.,2\n6159,lsmdc3036_IN_TIME-16137,5504,\"On the Mission's sign, the words Out Of turn off. Someone\",\"On the Mission's sign, the words Out Of turn off.\",Someone,gold,jumps over someone who's rolls with her.,pulls her against the flow of the crowd.,grabs it from as he races down a tunnel.,peers around at the anxious stone.,1\n6160,lsmdc3036_IN_TIME-16137,5510,\"Grabbing him, he hurls him to the ground. Meanwhile, someone and someone\",\"Grabbing him, he hurls him to the ground.\",\"Meanwhile, someone and someone\",gold,run to the bridge gate.,arrive in the roof of someone's house.,pass a framed vendor on the way down to an icy curb.,\"flee down a street, still holding hands.\",3\n6161,lsmdc3036_IN_TIME-16137,5516,They halt in front of him. He,They halt in front of him.,He,gold,allows an impressed smile.,brushes his hand away.,walks onward to the grandfather's coffin.,grabs the hook off the floor.,0\n6162,lsmdc1058_The_Damned_united-98534,2260,\"Someone makes to follow someone into the dressing room, but has the door slammed in his face. The players now showered and in their fashionable clothes\",\"Someone makes to follow someone into the dressing room, but has the door slammed in his face.\",The players now showered and in their fashionable clothes,gold,take in the recessed cubicles.,\"join the directors in the long, narrow lounge.\",\"moves down the aisle toward the sculpted shop, about to writhe in.\",hang from a couple.,1\n6163,lsmdc1058_The_Damned_united-98534,2258,The Leeds players trudge into their dressing room. Someone,The Leeds players trudge into their dressing room.,Someone,gold,leaves someone with his hands on his hips.,see someone expression intently.,stiffens in the back seat.,returns his throw to them.,0\n6164,lsmdc1058_The_Damned_united-98534,2259,\"Someone leaves someone with his hands on his hips. Someone makes to follow someone into the dressing room, but\",Someone leaves someone with his hands on his hips.,\"Someone makes to follow someone into the dressing room, but\",gold,stops at one of the other tables out there.,has the door slammed in his face.,finds no sign of someone.,she jumps out.,1\n6165,lsmdc3033_HUGO-14437,15005,The station inspector frowns at someone. His dog,The station inspector frowns at someone.,His dog,gold,wears a racing cord under a skirt as the driver is tossed on a car and aiming out a window.,sniffs someone's leg.,steps out of the room.,glances at the open door of a house.,1\n6166,lsmdc3033_HUGO-14437,15004,Someone takes off someone's beret and places it over his own head. The station inspector,Someone takes off someone's beret and places it over his own head.,The station inspector,gold,looks out nearby then nods and smiles.,stops and glances over.,passes them then pauses and turns.,takes off his jacket.,2\n6167,lsmdc3033_HUGO-14437,15001,The train station's clock tower rises on the other side of the river. They,The train station's clock tower rises on the other side of the river.,They,gold,advance through crowds in the house.,walk into the station.,disappear into the gap in the door.,finds the unconscious someone back on shadowfax.,1\n6168,lsmdc3033_HUGO-14437,15000,He takes a step forward then turns and points into the distance. The train station's clock tower,He takes a step forward then turns and points into the distance.,The train station's clock tower,gold,has a complex about four.,\"flies down, propelling the man in water.\",rises on the other side of the river.,and someone lowers his wand to a falling metal.,2\n6169,lsmdc3033_HUGO-14437,14999,\"Standing on a bridge, someone stares at her. He\",\"Standing on a bridge, someone stares at her.\",He,gold,fires and climbs off toward the back of the unicorn.,tries to tip his chin.,crouches into the woman's dark - haired friend.,takes a step forward then turns and points into the distance.,3\n6170,lsmdc3033_HUGO-14437,15003,Brow furrowed the station inspector strides toward them. Someone,Brow furrowed the station inspector strides toward them.,Someone,gold,runs through the windshield.,takes off someone's beret and places it over his own head.,grins and casts a wild gaze at people as the ship descends briskly from the sea.,runs through the distance in the other direction.,1\n6171,anetv_Lx_FcKpTZIw,5475,She rinses her hands off in the sink. She,She rinses her hands off in the sink.,She,gold,and a little of them is white and pink.,opens the window and packs into it with a shield of service.,grabs a paper towel and dries her hands.,he steps off the faucet.,2\n6172,anetv_Lx_FcKpTZIw,5474,A woman is washing her hands over a sink. She,A woman is washing her hands over a sink.,She,gold,returns to a bag on the floor.,starts packing the dishes in the sink.,\"wipes the sink, then dips it in.\",rinses her hands off in the sink.,3\n6173,anetv_zCI36lTmBqY,12220,He takes the hose out of his mouth and start to exhale forming o's in the air. He,He takes the hose out of his mouth and start to exhale forming o's in the air.,He,gold,reappear in on lower underwater camera that this does not show how to push the object in the color.,starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it.,finishes his burning lacquer and wipes off the gloves which is dangerously close to it.,is sitting on the counter at the end of the small boutique.,1\n6174,anetv_zCI36lTmBqY,12221,He starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it. It,He starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it.,It,gold,\"'s pretty cool how he is forming the o's, just relaxing and enjoy simple fun.\",talks to the camera and starts to brush the wall of the objects with paint on it.,drops his head again.,pushes the man down a few more times and introduces his brain.,0\n6175,anetv_zCI36lTmBqY,12219,A man is sitting inside on a chair inhaling from a pipe that looked like it was an oboe. He,A man is sitting inside on a chair inhaling from a pipe that looked like it was an oboe.,He,gold,is smiling like a person while singing are playing a guitar and singing.,takes the hose out of his mouth and start to exhale forming o's in the air.,is standing bald at the window.,is playing a game of field hockey with camera on his neck.,1\n6176,anetv__8KsVaJLOYI,3721,\"A man is shown running that leads into an intro, followed by a photograph of him. Next\",\"A man is shown running that leads into an intro, followed by a photograph of him.\",Next,gold,throw a green ball fom the side and watch walking away.,\", men are seen speaking to each other and speaking to one another.\",are talking to a man that exercise inside.,are clips of the man shown scoring various goals in a sport and celebrating with his team mates.,3\n6177,anetv__8KsVaJLOYI,3722,Next are clips of the man shown scoring various goals in a sport and celebrating with his team mates. The people in the audience cheer and the shot,Next are clips of the man shown scoring various goals in a sport and celebrating with his team mates.,The people in the audience cheer and the shot,gold,is shown of men playing basketball and celebrating and celebrating with each winner.,is seen again in slow motion.,ends with the closing credits.,is shown again followed by more clips of the beach soccer.,1\n6178,lsmdc1041_This_is_40-9307,1529,\"Someone smiles at his wife, then leans toward his electric guitar shaped cake. She\",\"Someone smiles at his wife, then leans toward his electric guitar shaped cake.\",She,gold,bites his sleeve in swap pat.,then sips it.,tilts her head with a slight grin.,\"stands on the road, watching him, someone enjoying the passive coffee.\",2\n6179,lsmdc1041_This_is_40-9307,1530,\"Someone's triplets attack the cake and lick the frosting tuning pegs. Now, someone\",Someone's triplets attack the cake and lick the frosting tuning pegs.,\"Now, someone\",gold,\"hides behind some bushes with a cigarette in her mouth, desperately flicking and shaking a lighter.\",\"drives with someone, who does push - ups on the equipment.\",\"arrives in the stadium with the camels, the tawny trees, in the front of the house.\",\"joins her, kisses her boyfriend.\",0\n6180,lsmdc1041_This_is_40-9307,1528,\"Now, someone leads the guests in song. Someone\",\"Now, someone leads the guests in song.\",Someone,gold,sets down the pen case.,grins then kicks open the double doors.,summons a deep breath as he awakens to the floor.,\"smiles at his wife, then leans toward his electric guitar shaped cake.\",3\n6181,lsmdc1041_This_is_40-9307,1531,She catches her mom and startles her. Someone,She catches her mom and startles her.,Someone,gold,slows to a stop by the window.,makes someone run towards the house and gets in.,shakes his head and wraps his arms around his neck.,drops her cigarette and heads to the house.,3\n6182,anetv_WmabLngcvas,15358,The man then leads the other around on the camel. The man,The man then leads the other around on the camel.,The man,gold,continues jumping and pulling the tire off the ground and ends by moving the dog down and pointing at the camera.,stops the camel and gets the other person off while climbing back on.,rides around and the dog jumps on the.,\"holds his dog up above, and pulls out a large white paper scissors.\",1\n6183,anetv_WmabLngcvas,15357,A man is seen sitting on a camel followed by getting off and another man climbing on. The man then,A man is seen sitting on a camel followed by getting off and another man climbing on.,The man then,gold,begins riding around and a car while another woman records.,leads the other around on the camel.,moves up and down on the dirt and a cow and eventually taking them out.,begins walking around a waterside area while a dog watches from the side.,1\n6184,anetv_86S2O0fpX4g,5358,A woman is lying on equipment in a gym. She,A woman is lying on equipment in a gym.,She,gold,has her feet tied with chain to a machine.,walks through the equipment into a gym.,is sitting down on a set of uneven bars.,is holding a stick and showing how to adjust a saddle.,0\n6185,anetv_86S2O0fpX4g,5359,She has her feet tied with chain to a machine. She,She has her feet tied with chain to a machine.,She,gold,slips around the corner and rolls onto her back.,puts someone's hand on her shoulder.,puts her hand on and adjusts the camera.,holds her head as she pulls her feet back and forth.,3\n6186,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14354,\"He takes the top off a tea pot, and picks up a tea bag. Through the kitchen window, he\",\"He takes the top off a tea pot, and picks up a tea bag.\",\"Through the kitchen window, he\",gold,notices a light in the big house.,can see someone coming from a pantry.,stands with his back to someone.,\"can see it, the colorful flowers of the intended, the orchard, etc.\",0\n6187,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14359,\"Inside the house, the strong beam of the old man's torch flickers over dusty wooden paneling and a grandfather clock festooned with cobwebs. Grasping the wooden banister, he\",\"Inside the house, the strong beam of the old man's torch flickers over dusty wooden paneling and a grandfather clock festooned with cobwebs.\",\"Grasping the wooden banister, he\",gold,\"leaves, then leans inside.\",dashes towards a staircase.,\"starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls.\",forces the blood into a light from a man's neck.,2\n6188,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14349,The reptile's lithe body shimmers as it glides swiftly along the uneven path. Metallic silver letters,The reptile's lithe body shimmers as it glides swiftly along the uneven path.,Metallic silver letters,gold,float aggressively on the sidewalk in front of him.,shine to two tackling knives.,\"ventures through the wall, growing larger.\",\"appear in the dark, glowering sky.\",3\n6189,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14348,\"Flickering its tongue, it slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery. The reptile's lithe body\",\"Flickering its tongue, it slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery.\",The reptile's lithe body,gold,\"forms a body over sideways, their eyes watching it.\",shimmers as it glides swiftly along the uneven path.,lies thin around the inside of a house with a sling cross on its tail.,\"reaches its left place, its hilt handles in desperation.\",1\n6190,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14352,A light is switched on in a cottage nearby. A disheveled old man,A light is switched on in a cottage nearby.,A disheveled old man,gold,sits behind a desk in his anger.,lies on the back in the room.,lights the gas and puts on a kettle.,steps out from the mansion behind someone.,2\n6191,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14355,\"Through the kitchen window, he notices a light in the big house. He\",\"Through the kitchen window, he notices a light in the big house.\",He,gold,walks over to a house.,throws down the tea bag angrily.,strolls down a tall moving corridor leading up to a room.,blows out candles as his car trundles down a plasters.,1\n6192,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14357,\"He takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch. He\",\"He takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch.\",He,gold,\"gets up, shutting the door behind them.\",\"notices in a grey vest and goggles, riding a bmx bike alongside the winding passage.\",\"stumbles across the uneven ground, towards the big house.\",watches the spiders scroll across the screen.,2\n6193,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14350,\"Metallic silver letters appear in the dark, glowering sky. A huge dilapidated house\",\"Metallic silver letters appear in the dark, glowering sky.\",A huge dilapidated house,gold,erupts in a campfire!,stands silhouetted against the night sky.,appears sewn barn columned with no trees.,is reflected in a wooden archway.,1\n6194,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14351,A huge dilapidated house stands silhouetted against the night sky. A light,A huge dilapidated house stands silhouetted against the night sky.,A light,gold,filtering through the windshield.,is switched on in a cottage nearby.,drifts up in the sky as the kids run to a tent.,shines from a vial of liquid luck.,1\n6195,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14353,A disheveled old man lights the gas and puts on a kettle. He,A disheveled old man lights the gas and puts on a kettle.,He,gold,throws then a machine and knocks that other cop off the street.,\"takes the top off a tea pot, and picks up a tea bag.\",continues to wind down something that has an leaves for the dog.,starts using the first guy's arm like scissors to pin him down.,1\n6196,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14347,\"A heap of skulls and bones is piled high behind iron railings. Flickering its tongue, it\",A heap of skulls and bones is piled high behind iron railings.,\"Flickering its tongue, it\",gold,obscures someone from the back of the shelf and drops it into the toilet.,types through several great banquet pages.,slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery.,rips its way across the corn silk fuse.,2\n6197,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14356,He throws down the tea bag angrily. He,He throws down the tea bag angrily.,He,gold,\"leaves the table to the end of the alley and collides with the blast, who vanishes sharply and takes off.\",glances over at someone who returns someone a wounded gaze.,\"takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch.\",comes back to stop.,2\n6198,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14360,\"Grasping the wooden banister, he starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls. He\",\"Grasping the wooden banister, he starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls.\",He,gold,\"takes it out, and turns it off.\",steps up and stands at the foot of the steps to the other side of the pool.,mounts the light and ambles upward.,\"turns off his torch, as he hears voices from an open doorway.\",3\n6199,anetv_NouHsmaE-xA,2064,\"People are in a rodeo arena while a man on a horse prepares a rope with a loop. Then, the man\",People are in a rodeo arena while a man on a horse prepares a rope with a loop.,\"Then, the man\",gold,mounts the horse and ties the calf.,recovers his rope and turns.,\"spins the loop and throw to catch a calf, then run and tie the calf.\",throws the calf over to an open mat on the ground.,2\n6200,anetv_NouHsmaE-xA,2065,\"Then, the man spins the loop and throw to catch a calf, then run and tie the calf. A young man\",\"Then, the man spins the loop and throw to catch a calf, then run and tie the calf.\",A young man,gold,jumps high and catches with him action times.,skates a tight rope over the crowd.,\"grabs both of his rope and attaches it to the rope, trying to balance, with others in the side.\",enters the arena and untie the calf.,3\n6201,anetv_W0EN9JeU66A,4135,A young child is moving back and fourth on a swing while laughing and smiling to the camera. The child,A young child is moving back and fourth on a swing while laughing and smiling to the camera.,The child,gold,continues pumping their legs and then is stiff while looking off into the distance.,continues speaking to the camera while showing off the finished result.,\"continue to swing, hit and pretend to smile and smile at the camera.\",finishes and looks through the window at the camera.,0\n6202,lsmdc3080_THIS_MEANS_WAR-37086,17629,Two boys face each other. A burly father,Two boys face each other.,A burly father,gold,sends him back on.,watches his son square off with someone's smaller one.,\"sits in his father's seat, watching a child and a man smile at someone.\",presses his back to watch as the two boys have holes in a basin.,1\n6203,lsmdc3080_THIS_MEANS_WAR-37086,17627,\"Later a woman in a bikini swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling. Entering his bachelor pad, someone\",\"Later a woman in a bikini swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling.\",\"Entering his bachelor pad, someone\",gold,brings a book to his companions.,dips the arm of his wife.,lifts his gaze to the swimmer.,lifts his gaze into the basin.,2\n6204,lsmdc3080_THIS_MEANS_WAR-37086,17628,\"Entering his bachelor pad, someone lifts his gaze to the swimmer. He\",\"Entering his bachelor pad, someone lifts his gaze to the swimmer.\",He,gold,shuts it and smiles again.,removes his sunglasses and stares.,\"hops on top of the bench, then sees a person's body sticking out of the ice.\",wakes the source of his concern and frustration.,1\n6205,lsmdc3080_THIS_MEANS_WAR-37086,17626,Someone gawks at his friend. Later a woman in a bikini,Someone gawks at his friend.,Later a woman in a bikini,gold,\"swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling.\",crosses the bar of a ship.,reads her cd's performance.,rides a trolley driving through a city.,0\n6206,anetv_2GSSuYAWFc8,2040,This is followed by a man disinfecting a woman's belly button. He then,This is followed by a man disinfecting a woman's belly button.,He then,gold,hangs his brace and talks to the camera.,inserts a piercing using a clamp and a rod.,proceeds to play a tambourine.,begins to show the correct way about the tattoo on his arm.,1\n6207,anetv_2GSSuYAWFc8,2041,He then inserts a piercing using a clamp and a rod. The woman,He then inserts a piercing using a clamp and a rod.,The woman,gold,uses a pestle to pierce the skin at his throat.,peels the wooden rod so he holds the legs of the board.,watches as the final studs are in place.,talks to the camera and gives him some more cold text.,2\n6208,anetv_V_rril47Z5Q,205,The girls drop the nunchucks then dance around. A third person,The girls drop the nunchucks then dance around.,A third person,gold,drops one of her hand sticks and is blindfolded in slow motion.,is doing a gymnastics routine on the balance beam while she bounces and jumps.,pushes a blue puck.,joins and then leaves.,3\n6209,anetv_V_rril47Z5Q,204,Two people choreograph a routine with nunchucks. The girls,Two people choreograph a routine with nunchucks.,The girls,gold,continue to lift the sean of the class opinion and flips.,show the group doing climb throwing batons.,lift one up to kneel down.,drop the nunchucks then dance around.,3\n6210,lsmdc0012_Get_Shorty-53267,19771,He opens it to the middle. Someone,He opens it to the middle.,Someone,gold,looks out the window as we see a long black stretch limo pull up to the curb down on the street.,lowers his lips to his finger and grins.,is reading a magazine.,\"waves red flag, realizing that he is through some important points and dons a hot d..\",0\n6211,lsmdc0012_Get_Shorty-53267,19773,\"Someone tosses the script on the desk, moves between a pair of fat red leather chairs. As someone\",\"Someone tosses the script on the desk, moves between a pair of fat red leather chairs.\",As someone,gold,\"strolls over, startled talks into his ear.\",moves away from the window.,\"gazes from the window, his shadow remains on the ceiling.\",\"turns, she imagines him checking someone's wand.\",1\n6212,lsmdc0012_Get_Shorty-53267,19770,\"Someone examines the cover, the first time he is ever held a movie script. He\",\"Someone examines the cover, the first time he is ever held a movie script.\",He,gold,\"snaps up to the third, then is in a remnants of black and blue gold.\",turns and sits down on the shade treads outside.,opens it to the middle.,peers across the room and lashes out over the floor.,2\n6213,lsmdc0012_Get_Shorty-53267,19768,Someone stands looking over some of the old photographs as someone goes through the mess on the desk. Someone,Someone stands looking over some of the old photographs as someone goes through the mess on the desk.,Someone,gold,hits him.,hands a script to someone.,looks up at him.,\"looks at local books on the bed, obviously pinning someone to the couch.\",1\n6214,lsmdc0012_Get_Shorty-53267,19774,As someone moves away from the window. Someone,As someone moves away from the window.,Someone,gold,sings sits on the sofa and watches her walk along.,looks down and lifts his brow.,scurries off and flips back toward the bathroom.,is tugging the string to lower the blinds behind the desk.,3\n6215,lsmdc0012_Get_Shorty-53267,19769,Someone hands a script to someone. Someone,Someone hands a script to someone.,Someone,gold,leaves it to a temperature gauge.,hangs him on the table.,\"examines the cover, the first time he is ever held a movie script.\",takes the money out of the pocket of his shirt.,2\n6216,anetv_EsYsshh2CyA,4952,Finally she mixes grenadine with some sweet and sour mix with soda water. Finally she,Finally she mixes grenadine with some sweet and sour mix with soda water.,Finally she,gold,takes the toothpaste out of the drawer and stirs the spoon of the vanilla.,tastes the pasta and she pours it into a plate for another time.,\"immediately cuts the skillet on an underwater pan, then she is baked with a spatula.\",mixes all the components together and creates a nice alcoholic beverage.,3\n6217,anetv_EsYsshh2CyA,4951,A bartender begins speaking to the camera and pours ice into a glass. She,A bartender begins speaking to the camera and pours ice into a glass.,She,gold,fills the container with ice and throws it to the water.,pours ice into a glass and pours ice into the glass.,adds ingredients to the straw then adds several more juices and pours more vodka into a glass.,think instructs to mix rum and lemon juice into the glass and an ounce of different rum.,3\n6218,anetv_-G-sh-NhYtk,17079,A person in a black coat is shoveling show from a driveway. A man,A person in a black coat is shoveling show from a driveway.,A man,gold,is being shown standing in a garage.,steps out of the car with a shovel.,walks down a sidewalk while a sidewalk is blowing leaves.,wipes out snow on the top of a roof.,0\n6219,anetv_73ZdOEJcsUw,990,An old lady knits with a red needle and red wool. An old lady,An old lady knits with a red needle and red wool.,An old lady,gold,is seen sitting at the bottom of a rollerblading jump.,sets the front hand back.,stops knitting and talks continuously.,takes the contact lenses.,2\n6220,anetv_73ZdOEJcsUw,991,An old lady stops knitting and talks continuously. The old lady,An old lady stops knitting and talks continuously.,The old lady,gold,wears a sparkling sponge.,shows the same strap on the horse.,shows a similarly operated ski.,knits again and examines her creation.,3\n6221,anetv_WSpfyZuoi3A,16328,\"A little girl sled in an inflatable boat hold to a string on front a man, suddenly she falls in a hollow. People carry sled boats and the little girl\",\"A little girl sled in an inflatable boat hold to a string on front a man, suddenly she falls in a hollow.\",People carry sled boats and the little girl,gold,walks in front of the man and opens the inner door of the swimming catch.,is in a sled boat.,swims down the hill.,jumps high in the sky.,1\n6222,anetv_uLXSOqRSa4A,17572,\"A person climbs onto it, looking down. They\",\"A person climbs onto it, looking down.\",They,gold,\"bungee jump, hanging and swinging above the ground.\",cleans the area while they are already down.,carry their padding in the water and standing in place.,go down and wash out their lap.,0\n6223,anetv_uLXSOqRSa4A,17571,A group of people are on a lift way above the mountains. A person,A group of people are on a lift way above the mountains.,A person,gold,is passing a set of rocks.,jumps up on running rope on the rope.,\"climbs onto it, looking down.\",sits walking on the border of the rodeo bars.,2\n6224,lsmdc0026_The_Big_Fish-62718,14963,\"Then, up ahead, the cars start moving, shoved aside by massive hands. It\",\"Then, up ahead, the cars start moving, shoved aside by massive hands.\",It,gold,shines out on the road.,\"'s someone the giant, clearing a path by brute force.\",scrub it all along the ground.,turns away right of teens.,1\n6225,anetv_CEEJ1gzdmAk,16199,A pile of players lay on a fallen athlete. A player,A pile of players lay on a fallen athlete.,A player,gold,is sitting on a rocks.,gets knocked to the ice and his helmet too.,slides backwards and falls sideways.,washes cards from the shore.,1\n6226,anetv_CEEJ1gzdmAk,16198,Some players are laid out. A pile of players,Some players are laid out.,A pile of players,gold,are seen playing against an opponent.,are seen in black.,rest on their table before engaging in crestfallen position.,lay on a fallen athlete.,3\n6227,lsmdc3008_BAD_TEACHER-4004,12515,\"With a baffled look, someone tilts his head. On his way out the baffled look\",\"With a baffled look, someone tilts his head.\",On his way out the baffled look,gold,electronic images been disturbed.,\", someone shakes her head.\",lingers on his face.,\", he pulls quickly out of the clothing to wrap the couch just in place.\",2\n6228,anetv_PHIZza_xVog,6504,A woman puts some lotion on her hand. She,A woman puts some lotion on her hand.,She,gold,rubs the lotion onto her face.,puts the hair down and touches it.,uses a towel to clean her hair.,rubs some water on the side of her head.,0\n6229,anetv_s0YJOzALDNg,299,A group of people are under a covering. They,A group of people are under a covering.,They,gold,is holding a waxes rope wearing gray sunglasses.,are riding around in a series of bumper cars.,are also wearing inflated tires.,is talking to the camera and men stands talking and hold up letters.,1\n6230,anetv_s0YJOzALDNg,300,They are riding around in a series of bumper cars. The cars,They are riding around in a series of bumper cars.,The cars,gold,bounce intentionally around the tires.,bump into each other as they drive around.,\"goes under their movements, yanking their shoes and knocking them back the way they came.\",crash into each other as a spin.,1\n6231,anetv_UpmzSgLLj-s,3162,We return to the man putting the bike together. He finishes and we,We return to the man putting the bike together.,He finishes and we,gold,see the machine close up closer.,see the bike for the ride briefly.,see the doctor cooking utensils.,see the customer service phone number.,3\n6232,anetv_UpmzSgLLj-s,3161,We see the factory briefly. We,We see the factory briefly.,We,gold,\"see the man on the board again, then bow.\",see a young man march the girls out of a studio.,return to the man putting the bike together.,see a woman and a lady playing a game of soccer.,2\n6233,anetv_UpmzSgLLj-s,3157,We then see a man working on various things in a bike factory. The man,We then see a man working on various things in a bike factory.,The man,gold,continues talking and puts a ring in his mouth.,stops trimming air tree hedges while talking to the camera.,puts the hubcap back in the handlebars.,\"puts a bike together quick, puts it in a box, then on a conveyor belt.\",3\n6234,anetv_UpmzSgLLj-s,3159,We then see a person putting tools on the bike box. The man,We then see a person putting tools on the bike box.,The man,gold,begins to take the pieces part and put the bike together.,uses how to adjust the handlebars and screws back down.,removes an orange product into a plastic bag.,\"throws the shingles in his car, then uses a spare on floor paper.\",0\n6235,anetv_UpmzSgLLj-s,3156,We see a quick title screen. We then,We see a quick title screen.,We then,gold,see ladies doing ingredients on a stage.,see an older product product.,see a man working on various things in a bike factory.,see ladies in boxing scuba diving.,2\n6236,anetv_UpmzSgLLj-s,3158,\"The man puts a bike together quick, puts it in a box, then on a conveyor belt. We then\",\"The man puts a bike together quick, puts it in a box, then on a conveyor belt.\",We then,gold,cuts the bike again and hi extensively with the 10 procedure slide.,see the ending title screen and folds before it.,\"see that you can properly assemble the carpet, just a tire attached to the rim of the pedals.\",see a person putting tools on the bike box.,3\n6237,anetv_UpmzSgLLj-s,3163,He finishes and we see the customer service phone number. We then,He finishes and we see the customer service phone number.,We then,gold,see a lady in selfie bar to a news johnson talking.,see the players and the newscaster running back to the right.,see the end title screen.,\"see a man performing tai chi, wood, pom - iron and rock climbing done.\",2\n6238,anetv_UpmzSgLLj-s,3160,The man begins to take the pieces part and put the bike together. We,The man begins to take the pieces part and put the bike together.,We,gold,see the factory briefly.,then shows warming up and washing the wheels off the bike.,then see his iphone again.,are very bored off the side and large cars are then parked inside.,0\n6239,anetv_wUvC0TXK1PM,2394,He is using a platform to hold a loose window. He,He is using a platform to hold a loose window.,He,gold,dives and makes sure to stay upright.,uses a brush to clean the window as he shows how it is done.,appears then knocks him backward into the water.,runs down the street very intently.,1\n6240,anetv_wUvC0TXK1PM,2393,A man is inside a living room of a house. He,A man is inside a living room of a house.,He,gold,throws an object down the lane while he goes.,is standing on a table in front of a corner.,is using a platform to hold a loose window.,is standing in front of a rock wall.,2\n6241,anetv_wUvC0TXK1PM,19421,He moves a tool all around the area and continues cleaning. He,He moves a tool all around the area and continues cleaning.,He,gold,\"holds up a snow hose, wiping them.\",continues playing and using a mac.,continues jumping through the window and walking in the street while speaking to the camera.,finishes the window and ends by turning off the camera.,3\n6242,anetv_wUvC0TXK1PM,19420,A man walks into frame and begins cleaning off a window on a platform. He,A man walks into frame and begins cleaning off a window on a platform.,He,gold,moves a tool all around the area and continues cleaning.,continues panning to the crowd holding frame and showing off the pictures.,holds up more and begins wiping it down with a rag.,takes off throwing the shoes into a room as well as spray to work with other things.,0\n6243,lsmdc3087_WE_BOUGHT_A_ZOO-41104,17396,\"Someone studies the old tiger. Later, someone and someone\",Someone studies the old tiger.,\"Later, someone and someone\",gold,float from a raft.,walk ahead of the kids.,emerge from the pumpkin hole.,get out of someone's raft.,1\n6244,anetv_0ZXc2fEDgg8,6199,We see a title screen. A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man,We see a title screen.,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man,gold,\", waits on the sidewalk.\",walks away talking about his product.,sits by siting on it.,slams the man on another man laying on the ground.,3\n6245,anetv_0ZXc2fEDgg8,6200,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man slams the man on another man laying on the ground. We,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man slams the man on another man laying on the ground.,We,gold,\"walks round back from the building, adjusts the pain and bolts of his bench.\",see a repeat of the second slam in slow motion.,cuts the man's beard off.,the camera continues to blow free after the man digs into the pumpkin and holding the tool out to his face.,1\n6246,anetv_0ZXc2fEDgg8,6201,We see a repeat of the second slam in slow motion. We,We see a repeat of the second slam in slow motion.,We,gold,see the ending title and credits.,see the machine functions.,\"zoom and see the name of a man in a faded black shirt, and some men stretching in circles.\",see a man being drug by a female wash car.,0\n6247,anetv_0ZXc2fEDgg8,8284,We see a man body slam a man on the street. We,We see a man body slam a man on the street.,We,gold,see a man solidly kick in the sun.,see the other man be body slammed.,see a man jumping and jump.,see two lady in a swimming costume.,1\n6248,anetv_0ZXc2fEDgg8,8286,We see a man power slam a man on another man. We then,We see a man power slam a man on another man.,We then,gold,see people playing shuffleboard with men.,see the ending credits.,see a man and a man.,see a man doing spin bars.,1\n6249,anetv_0ZXc2fEDgg8,6195,A man picks up a slumped over man on a sidewalk at night then slams the slumped man onto the ground. We,A man picks up a slumped over man on a sidewalk at night then slams the slumped man onto the ground.,We,gold,the man is crouched on the ground and the man as four bald men are shown riding in a bicycle park.,are wires in place.,then jumps in the seat before walking back and leading into a bluff out of place.,see a repeat of the slam in slow motion.,3\n6250,anetv_0ZXc2fEDgg8,8285,We see the other man be body slammed. We,We see the other man be body slammed.,We,gold,see the scene card as scenes of a bowling game just after it's done.,see the back of the men in pink.,see the black bull on.,see a man power slam a man on another man.,3\n6251,anetv_0ZXc2fEDgg8,6197,We then see another screen with title on it. We,We then see another screen with title on it.,We,gold,see the closing credits.,see the other man lift the first man and slam him on the sidewalk.,see the title screen.,see people playing soccer sitting on a beach.,1\n6252,anetv_0ZXc2fEDgg8,6198,We see the other man lift the first man and slam him on the sidewalk. We,We see the other man lift the first man and slam him on the sidewalk.,We,gold,see a title screen.,see a lady in shirt talking to someone the father is sitting in a swing at another desk.,\"see someone in the room with someone else, again, together.\",see the lady jump high in the air.,0\n6253,anetv_0ZXc2fEDgg8,6196,We see a repeat of the slam in slow motion. We then,We see a repeat of the slam in slow motion.,We then,gold,see four boys running down the pitch with grand balls.,see the girl one at a time.,see a person break the water and perform a trick.,see another screen with title on it.,3\n6254,lsmdc3011_BLIND_DATING-1117,8753,\"His hands folded on his chest. Hiking up his pants, his father\",His hands folded on his chest.,\"Hiking up his pants, his father\",gold,waves his hand over the snake.,climbs up someone's rung as she straddles someone.,sits on the bed's edge.,folds himself up as he extends his hand.,2\n6255,lsmdc3011_BLIND_DATING-1117,8751,\"At home, someone's father enters his son's dark bedroom and turns on the light. Someone\",\"At home, someone's father enters his son's dark bedroom and turns on the light.\",Someone,gold,is being supported by him.,is bending to leave the sleeping baby.,lies on top of his bedspread.,turns and hearing a hotel rat.,2\n6256,lsmdc3011_BLIND_DATING-1117,8750,\"Crimson Elephant, someone notices the tv report. At home, someone's father\",\"Crimson Elephant, someone notices the tv report.\",\"At home, someone's father\",gold,draws back apart to show a close - up photograph of someone.,\"opens his curled eyes, bracing phrases on his coffee sheet.\",enters his son's dark bedroom and turns on the light.,spreads his arms in the air.,2\n6257,lsmdc3011_BLIND_DATING-1117,8752,Someone lies on top of his bedspread. His hands,Someone lies on top of his bedspread.,His hands,gold,are in the water.,folded on his chest.,reach for the doorknob.,reach for someone's neck.,1\n6258,lsmdc3011_BLIND_DATING-1117,8754,\"Hiking up his pants, his father sits on the bed's edge. A little smile briefly\",\"Hiking up his pants, his father sits on the bed's edge.\",A little smile briefly,gold,plays in his face.,crosses someone's lips.,plays on his goatee high style features.,illuminates his face as they look out silk gifts.,1\n6259,anetv_2Tuht3F2uc8,4266,A person is shoveling their driveway. They,A person is shoveling their driveway.,They,gold,are pushing the snow to the side.,start to lick the balls one at a time.,are removing snow from the tree and petting it.,are sitting in a snowy hill going down the sidewalk.,0\n6260,anetv_2Tuht3F2uc8,4519,A woman is shoveling snow outside her house. She,A woman is shoveling snow outside her house.,She,gold,continues to blow several paste up the sidewalk as she moves.,clamps down on two paper and has to decorate them with a railings.,are using a snow brush in the water and bushes in the beach.,rakes up big scoops of the snow.,3\n6261,anetv_2Tuht3F2uc8,4520,She rakes up big scoops of the snow. She then,She rakes up big scoops of the snow.,She then,gold,looks around at the water and pile from its top.,rides one horse across turning grass as well as bumping into it.,tosses them off to one side.,begins to shovel the sand.,2\n6262,anetv_2Tuht3F2uc8,4267,They are pushing the snow to the side. Another person,They are pushing the snow to the side.,Another person,gold,comes and helps them shovel the snow.,is shoveling snow from the car.,is standing on the black yard to get out of the tubes.,is sitting on the ground walking behind them.,0\n6263,anetv_kbe4iowYMqM,15312,A woman stands in a kitchen talking. The woman,A woman stands in a kitchen talking.,The woman,gold,cuts open a bag of noodles and shows how to prepare it.,\"mixes ingredients into a glass bowl, mixes it together, and stirs.\",uses a knife to cut a tomato.,pours salt on a jar of cup and pours ice into a mixer.,0\n6264,anetv_kbe4iowYMqM,17131,The woman points to several items on her counter. the woman the,The woman points to several items on her counter.,the woman the,gold,woman lunges for the camera.,woman grabs the food from the mixer and cut dismissively with the paper.,begins preparing a meal.,woman throw a dart in the air.,2\n6265,anetv_kbe4iowYMqM,15313,The woman cuts open a bag of noodles and shows how to prepare it. The same woman,The woman cuts open a bag of noodles and shows how to prepare it.,The same woman,gold,is once again talking to the camera and shows a sharp cuts of her finger.,holds up a bag of noodles describing it.,is knitting to fabric in several tongs.,is shown using both hands and feet.,1\n6266,anetv_kbe4iowYMqM,17130,A woman stands in a kitchen a begins talking. the woman,A woman stands in a kitchen a begins talking.,the woman,gold,walks around near a desk and starts to talk.,starts cutting the cat's nails while continuing cutting her nails.,resumes making nails together.,points to several items on her counter.,3\n6267,anetv__DlDtsPxdyY,8788,A woman is seen close up to the camera as well as several others. A pool table,A woman is seen close up to the camera as well as several others.,A pool table,gold,is shown with a woman speaking to the camera and holding up the drinks.,is shown with people making shots and others watching.,is shown followed by a man mixing drinks into the cup.,\"is shown, followed by the woman surfing surf around.\",1\n6268,anetv__DlDtsPxdyY,8789,A pool table is shown with people making shots and others watching. The people,A pool table is shown with people making shots and others watching.,The people,gold,begin speaking to one another while people continue swimming in the water.,continue doing tai chi with their hands and ends with them laughing and playing.,continue to play with one another and end by shaking hands and two holding up a trophy.,continue to puck around hitting one another and end by scoring a goal.,2\n6269,lsmdc3004_500_DAYS_OF_SUMMER-1457,7644,\"As they wander through Ikea, someone takes someone's hand. At night, they\",\"As they wander through Ikea, someone takes someone's hand.\",\"At night, they\",gold,\"tumble, kissing on to the bed.\",sit on chairs at a nearby table.,get up from their winter trip.,shake him and get into his car.,0\n6270,lsmdc3069_THE_BOUNTY_HUNTER-4631,9964,Jockeys ride their horses toward the starting gate. The race begins and the animals,Jockeys ride their horses toward the starting gate.,The race begins and the animals,gold,\"are chasing each other, and you are running back and forth.\",continues to follow the horses through the field.,burst onto the track.,are trying to measure.,2\n6271,lsmdc3069_THE_BOUNTY_HUNTER-4631,9965,\"Sitting alone on a long bench, someone thoughtfully pieces through her collective notes, which include the coaster. She\",\"Sitting alone on a long bench, someone thoughtfully pieces through her collective notes, which include the coaster.\",She,gold,digs her cell from her purse and answers.,secures the cd case with her fingertips.,bounces up from one side and sets it aside.,\"strokes her eyebrows, the chef leads the way to a gated wire fountain.\",0\n6272,lsmdc3069_THE_BOUNTY_HUNTER-4631,9963,An older woman rubs sunblock on her bare arms. Jockeys,An older woman rubs sunblock on her bare arms.,Jockeys,gold,are shown in a background.,are laying in bed.,ride their horses toward the starting gate.,paddle backward and surf in.,2\n6273,lsmdc3069_THE_BOUNTY_HUNTER-4631,9962,\"At a racetrack, people crowd the stands. An older woman\",\"At a racetrack, people crowd the stands.\",An older woman,gold,rubs sunblock on her bare arms.,puts two winning ladies on the floor.,is in a crowd while holding a camera in his hands.,shows a length of red - shower wig.,0\n6274,lsmdc3069_THE_BOUNTY_HUNTER-4631,9968,He affects a nonchalant shake of the head. Someone,He affects a nonchalant shake of the head.,Someone,gold,\", we continue to sweep from side to side as he edges back so this can not be just seeing his behavior.\",leads a floor of a title.,\", in someone's smile, he arrives at the bar and someone prepares his jump as he looks closer to the crowd.\",\"looks away, shifting her wary gaze then frowns at him again.\",3\n6275,lsmdc3069_THE_BOUNTY_HUNTER-4631,9966,\"Standing near a corral, someone grins. Someone\",\"Standing near a corral, someone grins.\",Someone,gold,finds someone sharing her bench.,\"takes a bite of the sandwich, and glares at it.\",leads her off as they approach.,smooth out the cards.,0\n6276,lsmdc3069_THE_BOUNTY_HUNTER-4631,9969,\"Standing, he steps before her. Someone\",\"Standing, he steps before her.\",Someone,gold,walks up to the hall.,takes his jacket off the peg and grabs his hand.,drops her things and approaches the entrance.,smiles and shakes her head.,3\n6277,lsmdc3069_THE_BOUNTY_HUNTER-4631,9967,Someone finds someone sharing her bench. He,Someone finds someone sharing her bench.,He,gold,turns and joins his daughter anxiously.,helps with a cart of food.,reads a compact section of the box.,affects a nonchalant shake of the head.,3\n6278,lsmdc3089_XMEN_FIRST_CLASS-42805,15765,\"Taking cover, he draws the Nazi's Blood and Honor knife from a boot sheath. Someone\",\"Taking cover, he draws the Nazi's Blood and Honor knife from a boot sheath.\",Someone,gold,pops up further and covers his mouth with both hands.,prods him a bit harder.,stalks out onto the main deck.,\"descends, revealing and its feet up from its lapel.\",2\n6279,lsmdc3089_XMEN_FIRST_CLASS-42805,15767,Someone grins at the intruder. Someone,Someone grins at the intruder.,Someone,gold,players deal there.,snaps a photo of someone.,puts her head down.,clutches his head and drops to his knees.,3\n6280,lsmdc3089_XMEN_FIRST_CLASS-42805,15766,Someone stalks out onto the main deck. Someone,Someone stalks out onto the main deck.,Someone,gold,grimly strides to the front door.,takes the collapsible and takes it from the train.,emerges from the vast mirrored structure.,grins at the intruder.,3\n6281,lsmdc3089_XMEN_FIRST_CLASS-42805,15764,\"Later in a wetsuit, he creeps onboard. Taking cover, he\",\"Later in a wetsuit, he creeps onboard.\",\"Taking cover, he\",gold,\"chokes on the water pensively, steadying himself in the mirror.\",draws the nazi's blood and honor knife from a boot sheath.,scans the parking space.,retreats through a shrubbery.,1\n6282,lsmdc3089_XMEN_FIRST_CLASS-42805,15768,Someone clutches his head and drops to his knees. Someone,Someone clutches his head and drops to his knees.,Someone,gold,bites her lip in an crestfallen frown.,remembers his mother screaming.,\"falls on the ground, unharmed.\",flattens himself against the wall headboard.,1\n6283,lsmdc3089_XMEN_FIRST_CLASS-42805,15763,\"From the rippling water below, someone's head emerge. He\",\"From the rippling water below, someone's head emerge.\",He,gold,is dragged under a lost channel's attention.,shoots him a harsh look.,gazes intently at the extravagantly large luxury craft.,carries the case away.,2\n6284,lsmdc0016_O_Brother_Where_Art_Thou-55413,16808,The customers stare mutely back. The customers,The customers stare mutely back.,The customers,gold,spit in the cold sink.,shuffle their feet and glance uncomfortably about.,make their way over the subway.,scatter as he prints out the stalls.,1\n6285,lsmdc0016_O_Brother_Where_Art_Thou-55413,16809,The customers shuffle their feet and glance uncomfortably about. Someone,The customers shuffle their feet and glance uncomfortably about.,Someone,gold,takes the cup from the can and picks it up.,\"glances up, then.\",lays a hand on someone's shoulder and tries to steer him toward the door.,steps down with a haggard smirk.,2\n6286,anetv_A_Rh4tMM2xY,18162,\"The lady in pink top came in front of the other boy with white shirt, and talked to him, started to push him on the swing, give him a kiss and continue to swing him from the side of the swing. The littler girl near the bench\",\"The lady in pink top came in front of the other boy with white shirt, and talked to him, started to push him on the swing, give him a kiss and continue to swing him from the side of the swing.\",The littler girl near the bench,gold,\"stand into a flip, but struggles and fell away.\",dumps the bodhi tree to the high wall.,sat to pick up something from the blue ground.,walked as the boy jumped after the monkey.,2\n6287,anetv_A_Rh4tMM2xY,18161,There are two kids on the swing set while two old ladies standing beside them swinging them. The old lady in pink top,There are two kids on the swing set while two old ladies standing beside them swinging them.,The old lady in pink top,gold,is putting down hula hoops with another girl in a short dress and another.,gives the little girl a chair across the yard.,\"went away, while the other old woman in purple continues to swing the boy.\",sits down to the ground.,2\n6288,anetv_62BPME-ikJU,3669,\"Then, the woman mows the grass of the backyard. After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she\",\"Then, the woman mows the grass of the backyard.\",\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she\",gold,puts back the container in the mower.,places the toys stick in the garden.,plays the dogs with a scatter bag.,stops to mix the leaves on the tree.,0\n6289,anetv_62BPME-ikJU,3670,\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she puts back the container in the mower. A boy\",\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she puts back the container in the mower.\",A boy,gold,lifts the scoop up on the yard while talking to the camera.,uses a brush to fix.,stands watching the woman.,rides down behind her on the ground.,2\n6290,anetv_62BPME-ikJU,13353,This video is a tutorial showing how to cut the grass. First she,This video is a tutorial showing how to cut the grass.,First she,gold,uses some cucumbers to take a dip and put some cream all through the skin to finish the process.,explains how you should cut the grass according to its color and how high or low you want it.,takes marks in the hair of the biker and get it done curl in her mouth.,uses the block to moves a box of bbq on pins and showing it to the camera.,1\n6291,anetv_62BPME-ikJU,3668,\"A woman takes a swing chair to the side of the backyard. Then, the woman\",A woman takes a swing chair to the side of the backyard.,\"Then, the woman\",gold,mows the grass of the backyard.,remove american wallpaper from someone.,demonstrates how to do the cookies.,throws the ball in her room.,0\n6292,anetv_2NAbdlHXcTI,689,A man does a disk throw. He,A man does a disk throw.,He,gold,holds the dart and goes.,throws another and the clippings on his chest touch a hand stand.,spins around and throws the disk.,sees the frozen and bagpipes playing.,2\n6293,anetv_BuaWU70q7cE,1827,They put the presents in the middle of the paper and try to start wrapping. They,They put the presents in the middle of the paper and try to start wrapping.,They,gold,continue doing their breaking and hitting it with each other.,positions a red ribbon around the table and set the matches shiny to the center.,put their frosting in a cake.,seems to have different techniques as the son finishes much faster and mom's comes out looking a little bit better.,3\n6294,anetv_BuaWU70q7cE,1826,\"He gets side tracked on his phone and then gets back to business, they start cutting the wrapping paper. They\",\"He gets side tracked on his phone and then gets back to business, they start cutting the wrapping paper.\",They,gold,are covered for plates.,has been dressing in the garden.,fight with him to bolt on his pants.,put the presents in the middle of the paper and try to start wrapping.,3\n6295,anetv_BuaWU70q7cE,1825,\"A teenaged boy and his mother are sitting in bed dressed very relaxed and talking about how to wrap gifts. He gets side tracked on his phone and then gets back to business, they\",A teenaged boy and his mother are sitting in bed dressed very relaxed and talking about how to wrap gifts.,\"He gets side tracked on his phone and then gets back to business, they\",gold,simply move on on the guy to present and replace the belt.,start cutting the wrapping paper.,\"are enjoying themselves, ending to talk about the kid as well.\",are putting paper in a cap on each right.,1\n6296,anetv_gXUm7nobsfU,13033,A woman in a sparkling green dress talks on a stage. A couple,A woman in a sparkling green dress talks on a stage.,A couple,gold,is playing a violin in front of the woman.,\"is shown dancing, kicking and swirling creatively.\",plays polo in a bedroom with two microphones in a pool.,moves in bed and shows behind her.,1\n6297,anetv_gXUm7nobsfU,13034,\"A couple is shown dancing, kicking and swirling creatively. When they are done, they\",\"A couple is shown dancing, kicking and swirling creatively.\",\"When they are done, they\",gold,continue moving along on the way for fun lastly.,break dancing and dance around.,hold hands as the crowd cheers.,\"do flips and spin, and lift the weight.\",2\n6298,anetv_gXUm7nobsfU,13035,\"When they are done, they hold hands as the crowd cheers. They\",\"When they are done, they hold hands as the crowd cheers.\",They,gold,continue drumming with each other while people cheer for the match.,\"walk over to the woman in a green dress, hugging her before leaving the stage.\",look into the dance screen and continue to play.,do a routine on the platform.,1\n6299,lsmdc3084_TOOTH_FAIRY-40001,7347,\"Someone arches his brows doubtfully. Later outside, someone\",Someone arches his brows doubtfully.,\"Later outside, someone\",gold,\"jogs up a bar making four legs grazing the waist - high brick restroom, through a shady wooden hedge letting out a breath.\",\"watches, chewing into a glass of water.\",\"kicks his feet, throws himself on the wall, and lands hard on his leg.\",\"runs up to a tall concrete fence, hooks his hockey stick over the top, and vaults over it.\",3\n6300,lsmdc3084_TOOTH_FAIRY-40001,7351,He turns his hand palm up demandingly. The father,He turns his hand palm up demandingly.,The father,gold,\"smiles with both smiles, back to the end of the bed.\",moves his hand toward someone's.,rocks for the last time.,gazes wildly at his father's head.,1\n6301,lsmdc3084_TOOTH_FAIRY-40001,7353,He halts just outside and the father steps closer. Someone,He halts just outside and the father steps closer.,Someone,gold,props his hands on his hips.,lowers her gaze with a furrowed brow.,returns to the diner and grabs another photo.,knits his brow as he unpacks his bike on the park ground.,0\n6302,lsmdc3084_TOOTH_FAIRY-40001,7346,Someone wears his helmet and hockey pads over his tooth fairy uniform. Someone,Someone wears his helmet and hockey pads over his tooth fairy uniform.,Someone,gold,arches his brows doubtfully.,shows another phone reward.,acknowledging a bath in denim jackets.,uncovers a market square.,0\n6303,lsmdc3084_TOOTH_FAIRY-40001,7350,Someone covers his face with his gloved hand. He,Someone covers his face with his gloved hand.,He,gold,\"watches, as someone races out of the cottage.\",\"leans blankly on the stage, thinks straight, then paddles out, as someone closes his mouth.\",lowers his glove from the man's gaping mouth.,extends his hand and brings it to his lips.,2\n6304,lsmdc3084_TOOTH_FAIRY-40001,7348,As he extracts a tooth. Someone,As he extracts a tooth.,Someone,gold,\"presses her knob, letting it drop to the floor.\",\"wanders the glass, taps him against a wall, and reaches for the payphone.\",treads up behind him.,rubs it anxiously with his thumb and teeth.,2\n6305,lsmdc3084_TOOTH_FAIRY-40001,7345,Someone dashes her with more dust and the clerk gawks. Someone,Someone dashes her with more dust and the clerk gawks.,Someone,gold,runs into the hall tearing through the blood covering the body of the hunter.,sits in the bed.,\"kisses someone, then gives him a hug.\",\"stands in the van, rubbing it into a red - blue mad dash.\",2\n6306,lsmdc3084_TOOTH_FAIRY-40001,7352,The dumbfounded father blinks his wide eyes. Someone,The dumbfounded father blinks his wide eyes.,Someone,gold,grins and strides onto a balcony.,takes a deep breath and strides through the glass.,gazes out his office window.,is photographed at the check.,0\n6307,lsmdc3084_TOOTH_FAIRY-40001,7349,The father turns and his jaw drops. Someone,The father turns and his jaw drops.,Someone,gold,struggles to look as someone attempts to pull her into the police cars.,covers his face with his gloved hand.,\"gives someone an encouraging nod, then screws up her face.\",falls along the icy ramp bridge.,1\n6308,anetv__LKFGLH8XxI,3215,She continues playing with the toy hair dryer and talking. She,She continues playing with the toy hair dryer and talking.,She,gold,picks up a toy curler and sets it down on the desk in front of her.,continues to play the piano while pausing to speak to the camera.,continues to use toothpaste to brush her teeth before walking back through a open haze.,walks back from the wall and picks up her sleeve.,0\n6309,anetv__LKFGLH8XxI,3213,A little girl is playing with a toy hair dryer. She,A little girl is playing with a toy hair dryer.,She,gold,welds yarn and needles as they play.,turns around and smiles.,is using a blow dryer to blow dry her hair.,\"sits beside the hair style hairstylist, cutting out her hair.\",1\n6310,anetv_AMU1mHpR6Os,8982,A close up of a razor is shown an leads into several clips of dogs getting their cut trimmed. Several tools are shown,A close up of a razor is shown an leads into several clips of dogs getting their cut trimmed.,Several tools are shown,gold,on one man washing their hands and the others working on the sides of a sled.,agitatedly describing feature on the screen.,are then shown on cats and them laying down being pet.,held down as well as description the person's teeth.,2\n6311,anetv_6I1aP4O04R8,0,A large pile of leaves are seen blowing around a yard as a person uses a tool to push them along. The camera,A large pile of leaves are seen blowing around a yard as a person uses a tool to push them along.,The camera,gold,shows it back to the camera and continues talking to the camera.,continues to capture the man blowing the leaves and uses several camera effects on the frames.,continues moving all around the lawn while doing them again while looking back to the camera.,pans around to grab the tree around and pans up to show various instruments on the ground.,1\n6312,anetv_W5cGKWhOTOU,842,\"The girl then grabs the left boot, removes the stuff in it, tries it on and stands up to model them. The girl stands next to the guy and they smile, she gives a thumbs up and he\",\"The girl then grabs the left boot, removes the stuff in it, tries it on and stands up to model them.\",\"The girl stands next to the guy and they smile, she gives a thumbs up and he\",gold,hugs her from behind.,licks her off the right wrist.,holds her in front of the head.,goes back by the other then the white man does.,0\n6313,anetv_W5cGKWhOTOU,839,There are 3 people at a store in a shoe section and there are two people on the ground trying on boots. The man on the ground,There are 3 people at a store in a shoe section and there are two people on the ground trying on boots.,The man on the ground,gold,\"walks around the plant, then turn to the beach and resumes her run.\",holds the wall pancake to the other person then splatters it on the tile.,\"removes his pink boot, throws it on the side and stands up smiling.\",continues to move up and down while the sun is falling back.,2\n6314,anetv_W5cGKWhOTOU,840,\"The man on the ground removes his pink boot, throws it on the side and stands up smiling. The girl\",\"The man on the ground removes his pink boot, throws it on the side and stands up smiling.\",The girl,gold,\"grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her.\",is standing by her hand for a picture.,gets out and crouches before the baby.,places the racket against the side of the car and sits back up.,0\n6315,anetv_W5cGKWhOTOU,841,\"The girl grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her. The girl\",\"The girl grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her.\",The girl,gold,lets go of her arm and throws the baton at her father and the gets in and out of the audience.,\"then grabs the left boot, removes the stuff in it, tries it on and stands up to model them.\",then moves up and throws the ball to the level while holding the ball and trying to focus.,is standing the girl pushing other chairs around him and starts up to grab his arm and the man keeps on standing.,1\n6316,anetv_FFCmoQp_xVA,11793,The man pours it into a martini glass. The man,The man pours it into a martini glass.,The man,gold,pours shots into another drink.,smiles and holds the drink in the air.,walks into frame with a mug in his hand.,puts a special bow on the screen.,1\n6317,anetv_FFCmoQp_xVA,11791,The man adds ice to a glass and two shots of a red liquor then another. The man,The man adds ice to a glass and two shots of a red liquor then another.,The man,gold,adds color to the man in white on the table.,then pours liquid into his ear and pours some powder into the glass.,puts a strainer on the glass and stirs the glass with a long metal stick.,begins to describe the contents of his alcohol while a man talks with the camera.,2\n6318,anetv_FFCmoQp_xVA,11789,A man stands behind a bar talking to the camera. The man,A man stands behind a bar talking to the camera.,The man,gold,stands with his pole across the air and walks away.,is standing on the beam and begins to weld.,holds a drink up and puts it down.,sits up and talks to the camera.,2\n6319,anetv_FFCmoQp_xVA,11790,The man holds a drink up and puts it down. The man,The man holds a drink up and puts it down.,The man,gold,adds ice to a glass and two shots of a red liquor then another.,points the bottles with the air and places it around and ends up putting it on a man's legs.,pours a drink into the cups in a bowl and uses it.,continues to speak to the camera and starts people sip his drink.,0\n6320,anetv_FFCmoQp_xVA,11792,The man puts a strainer on the glass and stirs the glass with a long metal stick. The man,The man puts a strainer on the glass and stirs the glass with a long metal stick.,The man,gold,grabs a lemon from another wood dusted of white citrus.,adds rum to the glass of water.,pours it into a martini glass.,pours the lemon juice on the table.,2\n6321,lsmdc0049_Hannah_and_her_sisters-69621,3167,\"As the camera slowly circles the table, someone is seen listening to someone, her hand on her mouth. Someone\",\"As the camera slowly circles the table, someone is seen listening to someone, her hand on her mouth.\",Someone,gold,\"draws tightly, watching him fondly.\",\"looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone.\",\"looks ahead, then at her nervously.\",is slowly carefree.,1\n6322,lsmdc0049_Hannah_and_her_sisters-69621,3168,\"Someone looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone. The camera\",\"Someone looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone.\",The camera,gold,focuses on his artwork.,\"pulls toward her upper, her chest heaving.\",is back on someone.,focuses back to the man that is seeing him standing in the chair.,2\n6323,lsmdc0049_Hannah_and_her_sisters-69621,3169,The camera is back on someone. She,The camera is back on someone.,She,gold,looks to.,\"reacting, catching her aback.\",to the group of people.,\"looks around tensely, barely listening to the conversation.\",3\n6324,anetv_hrpRVbLRoJ4,13114,A person is seen riding around on a horse over jumps in slow motion while others watch. The video,A person is seen riding around on a horse over jumps in slow motion while others watch.,The video,gold,ends with clips of girls sitting on the sidelines and speaking with one another in their raft.,ends with the man guiding the path and soldiers to the side.,moves quicker as more people are seen jumping over obstacles and one speaking to the camera.,continues to motion around a replay with another person looking off into the distance.,2\n6325,anetv_hrpRVbLRoJ4,13115,The video moves quicker as more people are seen jumping over obstacles and one speaking to the camera. Several more clips,The video moves quicker as more people are seen jumping over obstacles and one speaking to the camera.,Several more clips,gold,are shown of people riding on a raft along a large river followed by several people sitting on the ice.,are shown of the battling striking themselves with others and speaking to one another.,are shown of people riding around on horses as well as pictures inbetween and more close ups of horses.,are shown of kids sledding down a hill on snow.,2\n6326,anetv_vuntaZJBcfI,14191,Thousands of people stand behind a starting line. the massive amount of people,Thousands of people stand behind a starting line.,the massive amount of people,gold,start running through the streets.,smash onto the windscreen at someone's body.,stand before the tent.,fall into the water.,0\n6327,anetv_vuntaZJBcfI,4513,We then see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen. Asian script appears and a man,We then see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen.,Asian script appears and a man,gold,appears doing air broadcast in front of a woman and includes logos and way in the background.,runs from the corner then moves as fast as we can.,stops running to look at the camera.,appears to join it alone in the motion.,2\n6328,anetv_vuntaZJBcfI,4512,We see a title screen in black. We then,We see a title screen in black.,We then,gold,see a boy talking to a man and a put of curling gear.,see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen.,demonstrates image of a woman that is mowing the yard with a scraper.,see how to clean the floor with a bat down a wall.,1\n6329,anetv_vuntaZJBcfI,4515,\"The man runs off the marathon course and we then see shots of various location such as lakes, weddings, cities the ocean. The man\",\"The man runs off the marathon course and we then see shots of various location such as lakes, weddings, cities the ocean.\",The man,gold,opens his mouth wide to speak.,speaks to one of the men and gestures for his thumbs up.,\"looks for various photos, and trophies.\",stops and talks to the camera again.,3\n6330,anetv_vuntaZJBcfI,4514,Asian script appears and a man stops running to look at the camera. The man runs off the marathon course and we then,Asian script appears and a man stops running to look at the camera.,The man runs off the marathon course and we then,gold,continue to extend the board.,see some text and food in the beginning of the game.,\"see shots of various location such as lakes, weddings, cities the ocean.\",see a man fight over a javelin.,2\n6331,anetv_Nj_fvFbf56I,11853,A little boy runs across a hopscotch on the ground. He,A little boy runs across a hopscotch on the ground.,He,gold,jumps up and jumps the monkey bars.,\"returns to the beginning, and tries to jump.\",hits another ball a lady stands in front of her.,falls from the pinata again and finishes swinging.,1\n6332,anetv_Nj_fvFbf56I,11854,\"He returns to the beginning, and tries to jump. He\",\"He returns to the beginning, and tries to jump.\",He,gold,\"grabs a reasonable bow of his head, still trying to fend off the pain.\",disappears from the back door and hurries back to the car.,hops all the way to the end.,\"goes to him, laughing as they kiss.\",2\n6333,anetv_zqcJ0N_a6y8,1940,\"Glasses appear in the frame. A man goes over to photograph the event, another\",Glasses appear in the frame.,\"A man goes over to photograph the event, another\",gold,appears to be beat to it.,man swims behind the bar.,is anticipating than the newscaster.,walks up behind him.,3\n6334,anetv_zqcJ0N_a6y8,11188,They pull and crawl away from each other. A group,They pull and crawl away from each other.,A group,gold,\"of men are down on ends, they begin to attack each other.\",of men doing other surfaces.,drive them through a narrow silence on a metal porch.,watches them struggle to free themselves.,3\n6335,anetv_zqcJ0N_a6y8,11187,Two military men are tied together from behind. They,Two military men are tied together from behind.,They,gold,enter to share someone.,are playing a game of lacrosse.,pull and crawl away from each other.,are holding lacrosse sticks.,2\n6336,anetv_zqcJ0N_a6y8,1939,We see two men strapped together trying to pull away from each other. Glasses,We see two men strapped together trying to pull away from each other.,Glasses,gold,falling along the side of the ski.,throw throwing sticks and balls at each other.,appear in the frame.,holds out a record.,2\n6337,anetv_zqcJ0N_a6y8,1941,\"A man goes over to photograph the event, another walks up behind him. The camera pans up and we\",\"A man goes over to photograph the event, another walks up behind him.\",The camera pans up and we,gold,see a blue screen with white and white letters yellow.,see the other people and cars.,see the men in slow motion.,see the man doing a high jump to the bars.,1\n6338,anetv_zqcJ0N_a6y8,1942,The camera pans up and we see the other people and cars. People,The camera pans up and we see the other people and cars.,People,gold,ride around on board and watch a live procession of people on their bikes.,\"stand on the side, dead on them.\",walk up and stop the men.,are snowboarding a snowy hill next to another kids and brick wall.,2\n6339,anetv_F7V-FqgG3T8,1078,\"Behind the man, there is a row of kids sitting against the wall where a row of kids are watching them play. The game continues, the child holds his own until the adult ends up hitting it and the kid\",\"Behind the man, there is a row of kids sitting against the wall where a row of kids are watching them play.\",\"The game continues, the child holds his own until the adult ends up hitting it and the kid\",gold,having introduces himself to continue eating it.,'s too well to do it.,is not able to return the ball.,begins to watch him.,2\n6340,anetv_F7V-FqgG3T8,1077,\"Two men are standing in a room playing a game of tennis. Behind the man, there\",Two men are standing in a room playing a game of tennis.,\"Behind the man, there\",gold,is a light on his face.,is another man playing bass drums with his hands.,is a row of kids sitting against the wall where a row of kids are watching them play.,is a man playing chess in a room and one of the walls is shown.,2\n6341,lsmdc3012_BRUNO-4421,16035,\"Perching beside them on the arm of the couch, someone leans forward, and tickles the man's knee. Now, the balding man\",\"Perching beside them on the arm of the couch, someone leans forward, and tickles the man's knee.\",\"Now, the balding man\",gold,humps a woman from behind.,sticks his empty needle into the handle.,gives someone a cramped look and they brace the calf over a knee.,opens his legs as grandfather talks to his friend.,0\n6342,lsmdc3012_BRUNO-4421,16038,Someone bends into the man's line of sight. The man,Someone bends into the man's line of sight.,The man,gold,stares at the woman.,\"bounces away from someone, who crashes back into the split.\",runs at the hood of his jacket and smirks.,digs into a radio room.,0\n6343,lsmdc3012_BRUNO-4421,16033,\"Someone pats the man's arm. Later, the man\",Someone pats the man's arm.,\"Later, the man\",gold,puts freckles on the windshield.,steals control of himself.,shoves the woman forward knee - high on the deck.,hugs the woman from behind.,3\n6344,lsmdc3012_BRUNO-4421,16037,Someone pats him on the back. Someone,Someone pats him on the back.,Someone,gold,joins her under the nose of a window.,holds back his fist.,\"smiles at someone, and falls on his face.\",bends into the man's line of sight.,3\n6345,lsmdc3012_BRUNO-4421,16034,\"Later, the man hugs the woman from behind. Perching beside them on the arm of the couch, someone\",\"Later, the man hugs the woman from behind.\",\"Perching beside them on the arm of the couch, someone\",gold,\"leans forward, and tickles the man's knee.\",plants a lingering kiss on his lips.,unties the baby in her arms.,sits in the passenger seat.,0\n6346,lsmdc3012_BRUNO-4421,16036,\"Now, the balding man humps a woman from behind. Someone\",\"Now, the balding man humps a woman from behind.\",Someone,gold,watches someone for a long time.,pulls the sheets from the headboard thread pads upward.,leans against the command unit.,pats him on the back.,3\n6347,anetv_4kNx9rVwmAg,16722,\"They use steppers to jump up and down, and side to side. Then they\",\"They use steppers to jump up and down, and side to side.\",Then they,gold,lie back before taking off with the rope tied in the water.,clutch and scratch them and clap their hands.,do back flips in the same crevasse.,\"run in place, hopping on and off the steppers.\",3\n6348,anetv_4kNx9rVwmAg,16723,\"Then they run in place, hopping on and off the steppers. They\",\"Then they run in place, hopping on and off the steppers.\",They,gold,\"slow down, cooling off before clapping.\",scored sideways again after each other.,join the group to practice as they do.,angle towards the end of another line.,0\n6349,anetv_dGxJGvw_sUg,16814,Water sprinklers shoot up out of the ground. We,Water sprinklers shoot up out of the ground.,We,gold,see men watching as a group of women dance.,someone and the cops lower the rifle.,shoot from the bottom.,see only a chainsaw attached to its back fall.,0\n6350,anetv_dGxJGvw_sUg,14975,Several women are dancing in sprinklers on a lawn. They,Several women are dancing in sprinklers on a lawn.,They,gold,continue to break dance as they come to help them.,run to make their point of ensues.,run into a net.,are then seen wearing cheerleader clothes as they do several dance moves.,3\n6351,anetv_dGxJGvw_sUg,16816,\"They are then shown on stage, dancing and fighting. They\",\"They are then shown on stage, dancing and fighting.\",They,gold,are in several stages of events and they throw into an orchestra.,are advertised as being in a movie called cheer camp as they dance and fight throughout the video.,are then shown playing another instrument while they went from brown to and are playing the song.,continue dancing around the floor dancing and applauds.,1\n6352,anetv_dGxJGvw_sUg,16815,We see men watching as a group of women dance. They,We see men watching as a group of women dance.,They,gold,stop to kiss on the side.,execute a tango nod and then dance away.,\"are then shown on stage, dancing and fighting.\",stop laughing and react abruptly and change.,2\n6353,anetv_Vtnn6yJqHqM,8957,A pair of hands are shown playing piano. The piano player,A pair of hands are shown playing piano.,The piano player,gold,is shown playing piano while playing on the piano.,is shown playing with another person seated beside him.,plays alone with them as the man's voice speaks.,begins to walk away from the area.,1\n6354,anetv_Vtnn6yJqHqM,8958,The piano player is shown playing with another person seated beside him. The playing,The piano player is shown playing with another person seated beside him.,The playing,gold,is seen from a hand close up view again.,\"begins to play and the winner up with one of the wishers players runs, but the host comforts him.\",keeps playing and the camera focuses on the screen.,keeps looking for the source of the word.,0\n6355,anetv_AS0hqTk_mIs,15668,\"As a timer runs, he solves the puzzle using only one hand. He\",\"As a timer runs, he solves the puzzle using only one hand.\",He,gold,sets one finger on the end and turns the key on.,attempts to solve the puzzle.,jumps up in victory after only 17 seconds.,pauses and turns away.,2\n6356,anetv_AS0hqTk_mIs,15666,\"In 2009, a man is shown sitting at a table. He\",\"In 2009, a man is shown sitting at a table.\",He,gold,gets off the fast ground paper and spreads it again.,is showing how to install it as he opens it to comfort the machine.,has two rubik's cubes in front of him.,walks into a room using different objects while the lights are shown on a shelf.,2\n6357,anetv_AS0hqTk_mIs,15667,\"He has two rubik's cubes in front of him. As a timer runs, he\",He has two rubik's cubes in front of him.,\"As a timer runs, he\",gold,hands the rubik back over to his opponent.,\"completes a land replay, which is puzzles with the goalie.\",turns and continues his routine.,solves the puzzle using only one hand.,3\n6358,anetv_N9xp9VbpklQ,4129,The boy picks up the croquet stick and makes his shot. The boy,The boy picks up the croquet stick and makes his shot.,The boy,gold,runs towards the ball.,smiles and heads towards the ball.,stops and puts the ball in his palm.,holds up the stick.,1\n6359,anetv_N9xp9VbpklQ,2496,Woman is standing in front of the kid holding a pole. a crocket field,Woman is standing in front of the kid holding a pole.,a crocket field,gold,very engaged in the game.,\"is holding an ax, with a green stick.\",is shown on the street in the middle.,is in the middle of street in a city.,3\n6360,anetv_N9xp9VbpklQ,4128,A boy walks backwards on the lawn. The boy,A boy walks backwards on the lawn.,The boy,gold,is turning around and flip several times.,runs toward two teens on the grass.,\"does a handstand on the skateboard, turns and flips back, crashes as far as someone can.\",picks up the croquet stick and makes his shot.,3\n6361,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11010,\"She walks up the steep bank. Later, she\",She walks up the steep bank.,\"Later, she\",gold,follows someone through traffic in his office.,wheels someone into an empty road.,sits reading by a smoking campfire with her back leaning against a tree.,climbs onto the roof of a lifeboat and looks over.,2\n6362,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11014,Someone has a blanket over her legs. She,Someone has a blanket over her legs.,She,gold,carries him into the bathroom.,looks up at him.,looks up in surprise as it takes over.,comes over and suddenly bends down to pick it up.,1\n6363,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10964,\"She ruffles his hair, and smiles at him. Someone\",\"She ruffles his hair, and smiles at him.\",Someone,gold,looks as she holds the baby in his arms.,\"nods and grins after her, as she walks away.\",\"marches bed, carrying another bucket.\",\"has put a lantern in his hand, but he has dark framed eyes on his face.\",1\n6364,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11009,Someone fetches water from the river. She,Someone fetches water from the river.,She,gold,grimaces as her mother writes a letter.,falls into the air.,walks up the steep bank.,smile for the man in the bra.,2\n6365,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10967,Two villagers come out of an inn behind them. A little gate,Two villagers come out of an inn behind them.,A little gate,gold,\"enters, grabs someone, then runs across the floor.\",\"burst from behind a cab, then smashes into the flat - topped brick wall.\",is drawn by the charge.,leads into the churchyard.,3\n6366,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10975,\"He gazes at the grave. Comforting him, someone\",He gazes at the grave.,\"Comforting him, someone\",gold,\"sees a seal of nuts down to the peg, boy releases his hand's hair with a sneer.\",stares up at the indifferent lion.,pulls up the bridge to himself.,rests her head on his shoulder.,3\n6367,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10995,The old woman is waiting for him. He,The old woman is waiting for him.,He,gold,sees her looking at the locket around his neck.,he is in the living room and a small suburban is surrounded by the fountain of the cooking.,and the local quiet a bit of laughter; the joke on the voice has heard and's stunned.,\"headquarters, someone leans off an old car in a large and basement hiding taking the surrounding space.\",0\n6368,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10982,Someone's joy is set. They,Someone's joy is set.,They,gold,\"go through different doors, through sides.\",are in a game playing with the trophy.,\"turned to find the old woman, close beside them.\",\"dance in the middle of the court, crashing into each other.\",2\n6369,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10966,\"They apparate in a quaint, snow covered village. Wearing winter clothes, they\",\"They apparate in a quaint, snow covered village.\",\"Wearing winter clothes, they\",gold,pass under the branch and observe.,enter an abandoned car.,ride among the clips of the family outside the church.,wander down a deserted street.,3\n6370,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11006,\"The snake is hit and falls down the stairs. Someone's wand, dropped in the struggle,\",The snake is hit and falls down the stairs.,\"Someone's wand, dropped in the struggle,\",gold,\"begins for the door, running down the hall.\",strikes them down off the bed.,comes to the air.,is lying at the top of the stairs.,3\n6371,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10980,\"Someone slows and stops, beside a burned out, roof - less house. He\",\"Someone slows and stops, beside a burned out, roof - less house.\",He,gold,leaves the thief striding down the long driveway.,\"grabs his car free, kisses someone in the flatbed, then turns for his bus.\",\"pretends to himself from a dead humping gown, gets up and goes.\",\"looks over the gate, at the overgrown garden.\",3\n6372,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11011,\"Later, she sits reading by a smoking campfire with her back leaning against a tree. Someone\",\"Later, she sits reading by a smoking campfire with her back leaning against a tree.\",Someone,gold,walks in accompanied by april.,\"comes out of the tent, which is pitched behind her.\",pulls out a phone in her backyard holding a small stuffed car.,watches her as she walks towards her apartment and chooses a cupcakes.,1\n6373,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10974,\"Someone wipes his nose, with his sleeve. He\",\"Someone wipes his nose, with his sleeve.\",He,gold,gazes at the grave.,looks at someone and his jaw set down.,bumps into his apartment.,swigs from the glasses.,0\n6374,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10985,As someone turns her attention to someone. Someone,As someone turns her attention to someone.,Someone,gold,shoots some nearby grain with his bag.,holds up the match beside a framed photograph.,takes the snitch and kisses someone's mouth.,hugs someone and his eyes step into the doorway.,1\n6375,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10999,\"She disturbs a swarm of buzzing flies. Upstairs, someone\",She disturbs a swarm of buzzing flies.,\"Upstairs, someone\",gold,\"lies in someone's elevator, looking drawn.\",leans a page close around her face putting her hands on her hips.,stands from a rooftop along a row of floating wood.,examines a photograph album on a dressing table.,3\n6376,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10979,\"She turns, and totters slowly away. They\",\"She turns, and totters slowly away.\",They,gold,follow her up the street.,move around them and dance as he carves behind someone in the morning.,charge into the hall.,break into the upstairs.,0\n6377,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10993,\"It is a moving picture of a smirking someone. Upstairs, someone\",It is a moving picture of a smirking someone.,\"Upstairs, someone\",gold,is carrying the cake bottle.,talks with his rival friend.,trips in a huff.,reaches a dingy bedroom.,3\n6378,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10970,\"She wipes away more snow, and finds a name engraved underneath. He\",\"She wipes away more snow, and finds a name engraved underneath.\",He,gold,is standing at the far side of the graveyard.,wipes off the grin on the corner of her face.,hurries down where some bridesmaids enjoy.,pulls the gps from his deaf ear.,0\n6379,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10990,She picks up a book with a note attached to the cover. Someone,She picks up a book with a note attached to the cover.,Someone,gold,hurls someone into the windscreen as someone climbs into the building and flings it through a window.,\"drops an envelope inside the pizza box, and finds the card.\",\"lifts the note, to read the title.\",picks up the diary and slides it toward someone.,2\n6380,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11012,\"Someone comes out of the tent, which is pitched behind her. They\",\"Someone comes out of the tent, which is pitched behind her.\",They,gold,covers her head with one hand.,leap through a man's window.,are both wearing warm winter sweaters.,grabs the ax and hits him again.,2\n6381,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10989,\"The tip of his wand, lights up. She\",\"The tip of his wand, lights up.\",She,gold,picks up a silver canister and takes out his lighter and shoots it.,massages sword down with his arm.,\"stands at her elbow, smiling quite enraptured.\",picks up a book with a note attached to the cover.,3\n6382,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11013,They are both wearing warm winter sweaters. Someone,They are both wearing warm winter sweaters.,Someone,gold,matches the bowlers in a showcase.,\", cadillac, and indian style, has already dealt someone and is listening to someone last closeup of someone.\",has a blanket over her legs.,\"is in the stairs, holding someone out in his arms.\",2\n6383,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10978,\"She is wearing a knitted cape, with a hood. She\",\"She is wearing a knitted cape, with a hood.\",She,gold,\"turns, and totters slowly away.\",is going down in front of the camera.,is being drug on a large swing.,removes the sleeve of the dryer and holds it against her temple.,0\n6384,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11004,He picks up a brick from the rubble. He,He picks up a brick from the rubble.,He,gold,smashes the snake's head with it.,holds it open and sits down.,rolls it up to pick it up.,gets out and runs out of the back yard.,0\n6385,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10977,Someone sees an old woman. She,Someone sees an old woman.,She,gold,takes out her star - sized form.,makes a lining on the redhead's hat and excitedly over her shoulder.,\"is wearing a knitted cape, with a hood.\",\"looks down for an empty moment, then notices his forms on the table and begins in slow motion over her work.\",2\n6386,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10976,She spots a dark figure watching them from a short distance away. Someone,She spots a dark figure watching them from a short distance away.,Someone,gold,rises into the air.,\"strides next to the muddy and aides, as he trails the volunteers out to exhibit a masked suede necklace.\",sees an old woman.,takes a dead look.,2\n6387,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10969,She brushes snow from it with her gloved hand. She,She brushes snow from it with her gloved hand.,She,gold,does her hand brush it.,\"wipes away more snow, and finds a name engraved underneath.\",grabs a hose from her pocket.,\"come out over the harbor, around the room.\",1\n6388,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10972,\"Taking out her wand, she draws a circle in the air. She\",\"Taking out her wand, she draws a circle in the air.\",She,gold,produces a wreath of white roses.,points her wand to her right hand.,\"takes it out of the hole, tosses it over her shoulders.\",looks at the four mice.,0\n6389,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10988,\"Someone gazes at him, then picks up the candle. She\",\"Someone gazes at him, then picks up the candle.\",She,gold,works on the panel in the hallway.,hides a cigarette in his hand.,awkwardly attached to her train.,eases her way past him.,3\n6390,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11002,The snake hurls itself at someone. The snake,The snake hurls itself at someone.,The snake,gold,wraps itself around someone.,spins round the robot then stops.,appears slain and releases someone!,closes its mouth and scrambles back.,0\n6391,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11008,A tree - lined river flows through a countryside white with frost. Someone,A tree - lined river flows through a countryside white with frost.,Someone,gold,stands at the end of a cliff.,fetches water from the river.,peaks out of the sky.,stops to look at the watch.,1\n6392,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10996,He sees her looking at the locket around his neck. She,He sees her looking at the locket around his neck.,She,gold,is holding side to side and runs on the other side.,\"has put on the scarf, but she goes back to the kids.\",\"pulls out sign boxes shops other signs hanging from, hung from rules.\",\"indicates something, across the room.\",3\n6393,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11007,\"Someone's wand, dropped in the struggle, is lying at the top of the stairs. Someone\",\"Someone's wand, dropped in the struggle, is lying at the top of the stairs.\",Someone,gold,looks up at a small screen.,sags with clothes everywhere lies chained on a couch.,reaches out and grabs it.,comes slowly along the stoop.,2\n6394,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10971,He is standing at the far side of the graveyard. He,He is standing at the far side of the graveyard.,He,gold,\"are floating on the same competitors of the race shown sporting some rocks, by yellow supports.\",\"looks down at a plain, upright gravestone.\",is across the street.,looks around at him.,1\n6395,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10991,\"Someone lifts the note, to read the title. She\",\"Someone lifts the note, to read the title.\",She,gold,\"pauses, brushing the ball away.\",yanks his hand out from under someone.,turns the book over.,takes the photo of the people.,2\n6396,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10968,Someone stops at a grave marked with a horizontal slab. She,Someone stops at a grave marked with a horizontal slab.,She,gold,peers it through a gate on the stairway.,looks at the open laptop of military photos.,\"is flying across the stage, remain still.\",brushes snow from it with her gloved hand.,3\n6397,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10986,Someone holds up the match beside a framed photograph. It,Someone holds up the match beside a framed photograph.,It,gold,pans towards the slot where the door's been piled.,wrenches his cue and lets it drop from someone's hand.,leads the central someone's crowds and street to an office.,\"'s of the young thief, who stole someone's elder wand.\",3\n6398,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10984,He captures sight of something over her shoulder. As someone,He captures sight of something over her shoulder.,As someone,gold,stares up at her.,turns her attention to someone.,glances up to the toyshop to students.,folds the box open.,1\n6399,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10997,\"She indicates something, across the room. Downstairs, someone\",\"She indicates something, across the room.\",\"Downstairs, someone\",gold,regards someone who shifts in same sleep.,turns haughtily at a tv.,sits by the back.,walks into another dark room.,3\n6400,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11003,The snake wraps itself around someone. He,The snake wraps itself around someone.,He,gold,picks up a brick from the rubble.,pretends to punch him.,\"runs off, as four guards reach him.\",leans close to the side and releases the falcon.,0\n6401,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10994,\"Upstairs, someone reaches a dingy bedroom. The old woman\",\"Upstairs, someone reaches a dingy bedroom.\",The old woman,gold,leans off in the corridor.,is waiting for him.,lays an envelope across her chest.,stomps over one of the sound bubbles on the pillow.,1\n6402,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10983,The wizened old woman studies someone's face. He,The wizened old woman studies someone's face.,He,gold,captures sight of something over her shoulder.,\"shrugs, then hides away from someone.\",and someone give a thumbs for.,trails off his share.,0\n6403,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11001,\"Downstairs, someone trips and falls. The snake\",\"Downstairs, someone trips and falls.\",The snake,gold,slams against the grave.,raises as his hand springs from attached to a chain.,hurls itself at someone.,spreads its wings as he arrives over the slanted mess.,2\n6404,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10981,\"He looks over the gate, at the overgrown garden. He\",\"He looks over the gate, at the overgrown garden.\",He,gold,stoops on his way next to a metallic - looking woman.,leaves someone keeping pace with returning pedestrians.,watches helplessly as someone drives on.,recalls someone's attack.,3\n6405,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10973,She produces a wreath of white roses. Someone,She produces a wreath of white roses.,Someone,gold,\"wipes his nose, with his sleeve.\",has been blowing around her for that matter.,rubs the cloth together.,obliges and eyes him.,0\n6406,lsmdc1011_The_Help-78246,4339,Someone picks up the cord that someone is trailing behind her. Someone,Someone picks up the cord that someone is trailing behind her.,Someone,gold,breaks into a run.,\"walks joyfully to someone's face, smiles at someone, and grabs his friend's arm.\",tries to get in the town door but comes out.,watches tv as she has her lunch.,3\n6407,lsmdc1011_The_Help-78246,4338,\"Someone picks up a tray and a tv set, which she carries off towards the lounge. Someone\",\"Someone picks up a tray and a tv set, which she carries off towards the lounge.\",Someone,gold,holds his hand out to someone and turns to someone.,picks up the cord that someone is trailing behind her.,\"stirs, bending hungrily towards the door.\",\"grabs her arm, followed by her husband.\",1\n6408,anetv_HHG1kCydLYU,2220,A small group of people are seen standing around a kitchen eating food. They,A small group of people are seen standing around a kitchen eating food.,They,gold,speak to one another as a man cooks for them in front and mixes ingredients together.,mix ingredients in a bowl and then put on top.,put cookies in a pan and lead into a man holding a sandwich.,continue to cook and looks into one another with a spoon.,0\n6409,anetv_HHG1kCydLYU,2221,They speak to one another as a man cooks for them in front and mixes ingredients together. he,They speak to one another as a man cooks for them in front and mixes ingredients together.,he,gold,mixes more ingredients and lays them on the water as well as showing how to make a mug.,continues cooking and speaking to the women and showing off his work in the end.,mixes ingredients together into a pan and leafs them together.,speaks to the camera while riding a dish at the food while still speaking to the camera.,1\n6410,anetv_bPw2rvCjXUE,2478,\"After, they continue competing, then the boy wearing purple t - shirt fold the hand of his rival. After, the\",\"After, they continue competing, then the boy wearing purple t - shirt fold the hand of his rival.\",\"After, the\",gold,same man shoots the ball while neither takes hold of it.,men demonstrate a dry process to clean it.,boy serves the ball on the ground and misses it.,continue performing arm wrestling and then free again the hands.,3\n6411,anetv_bPw2rvCjXUE,2477,\"Two boys perform arm wrestling while people are watching, suddenly the boys free their hands. After, they continue competing, then the boy wearing purple t - shirt\",\"Two boys perform arm wrestling while people are watching, suddenly the boys free their hands.\",\"After, they continue competing, then the boy wearing purple t - shirt\",gold,hold the yellow shorts and make a series again to hug.,fold the hand of his rival.,is helping apply to the other man.,arrives and continue to do the flips and throws it.,1\n6412,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5907,Someone is now behind his desk. He,Someone is now behind his desk.,He,gold,makes 0 message in his drawer.,\"spreads the newspaper out in front of him, muttering as he does so.\",adjusts his hat off his shoulder but sits up.,holds someone cover and certificate.,1\n6413,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5908,\"He spreads the newspaper out in front of him, muttering as he does so. He\",\"He spreads the newspaper out in front of him, muttering as he does so.\",He,gold,\"calls out, as people stroll through the back room to look around, reads, reaction cocktails.\",\"sees the envelope, looks inside at the money.\",\"can hover above the surf, and his head hangs over the open gate.\",walks off the front steps and walks out of the living room area.,1\n6414,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5909,\"He sees the envelope, looks inside at the money. Someone\",\"He sees the envelope, looks inside at the money.\",Someone,gold,is about to shave it.,\"shakes someone's hand, sits down on the back area of a bank.\",\"opens the door just a little, and peers through into the bank.\",shuts the door and sees a note written in.,2\n6415,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5911,\"He starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor. Someone\",\"He starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor.\",Someone,gold,steals sight from her.,looks around for the money envelope.,opens a second door.,grabs someone's hand and smiles.,1\n6416,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5904,\"The teller opens it, starts to punch it with rubber stamps. Someone\",\"The teller opens it, starts to punch it with rubber stamps.\",Someone,gold,erupts into bomb that is inside the wall.,\"starts packing the sacks over the bag, then searches for a bottle of the food.\",touches his cheek forearm on his wrist but lifts the weapon.,searches through every pocket he has.,3\n6417,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5910,\"Someone opens the door just a little, and peers through into the bank. He\",\"Someone opens the door just a little, and peers through into the bank.\",He,gold,lifts the cover and spots his reflection in the mirror.,then grabs someone's coat and slides it on someone.,closes his eyes as the two pull way past him.,\"starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor.\",3\n6418,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5903,Someone hands the bank book over. The teller,Someone hands the bank book over.,The teller,gold,brings a sculpting finger into the drink.,peers toward his wounded colleague.,woman searches a bag.,\"opens it, starts to punch it with rubber stamps.\",3\n6419,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5914,\"He is deep in thought, with a crafty expression on his face. He\",\"He is deep in thought, with a crafty expression on his face.\",He,gold,sinks to his father's bedside.,sees someone standing there.,is so angry that he is not.,stares out of the window as the rain spills down on his shoulders.,1\n6420,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5905,\"Someone searches through every pocket he has. The teller, knowing the old man's vagaries,\",Someone searches through every pocket he has.,\"The teller, knowing the old man's vagaries,\",gold,\"awakes into place, and loses the light and puts it on.\",drops the robe onto his bed.,\"has a revolver in hand, then an older man has a finger on her arm.\",points to one of the numerous string tied around his fingers.,3\n6421,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5913,\"He looks puzzled, thinks hard, then a look of concern creeps into his eyes. He finally\",\"He looks puzzled, thinks hard, then a look of concern creeps into his eyes.\",He finally,gold,\"stuns someone, which he made sure to open.\",takes his stick out and moves around them.,slips off the blindfold and fall a moment.,rushes through the door and out into the street.,3\n6422,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5916,\"Someone picks up the phone and speaks distractedly, without knowing what he is saying. He\",\"Someone picks up the phone and speaks distractedly, without knowing what he is saying.\",He,gold,glances at someone through someone's strange hands.,\"hangs up agitatedly, muttering to himself as he goes into his own office.\",grabs a bottle of whiskey and pours it down on the floor.,\"wanders on, keeping his friends at the door.\",1\n6423,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5917,\"He hangs up agitatedly, muttering to himself as he goes into his own office. People\",\"He hangs up agitatedly, muttering to himself as he goes into his own office.\",People,gold,lead the way to the camera.,\"poke out of the can, weeping from the bedroom, almost on the floor.\",\"look after him, dumbfounded.\",is asleep in bed.,2\n6424,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5918,\"People look after him, dumbfounded. Someone\",\"People look after him, dumbfounded.\",Someone,gold,\"has just finished writing something, and is slipping the paper into an envelope.\",lowers himself in front of someone.,attempts a small look.,lets someone push his hands.,0\n6425,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5902,Someone smiles triumphantly and goes toward deposit window with his deposit slip. Someone,Someone smiles triumphantly and goes toward deposit window with his deposit slip.,Someone,gold,hands the bank book over.,\"holds the poker undamaged, wide - eyed.\",takes a seat among the others.,\"sits in the middle of the living room, occasionally listening to music.\",0\n6426,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5906,\"The teller, knowing the old man's vagaries, points to one of the numerous string tied around his fingers. Someone\",\"The teller, knowing the old man's vagaries, points to one of the numerous string tied around his fingers.\",Someone,gold,is now behind his desk.,stands at the top of a staircase and tries to walk.,slithers down into the sliding drop.,offers some bubbles so he rushes to the end of the table.,0\n6427,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5915,He sees someone standing there. He,He sees someone standing there.,He,gold,places a note in the crash.,speaks in the clips.,\"hears a noise, and sees someone entering the office.\",reward posters for someone.,2\n6428,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5912,\"Someone looks around for the money envelope. He looks puzzled, thinks hard, then a look of concern\",Someone looks around for the money envelope.,\"He looks puzzled, thinks hard, then a look of concern\",gold,is directed over someone.,\", then bounces off his chair.\",appears to be extinguishes.,creeps into his eyes.,3\n6429,lsmdc0014_Ist_das_Leben_nicht_schoen-54824,5900,\"Someone folds someone's paper over the envelope containing his money, and flings his final taunt at the old man. In a cold rage, someone\",\"Someone folds someone's paper over the envelope containing his money, and flings his final taunt at the old man.\",\"In a cold rage, someone\",gold,sits up as a cleaning product is being driven into it.,\"is patiently in a leather armchair, so overhead it is completely dark.\",strides away from the case revealing tracker hand which he drops.,grabs his paper and wheels off toward his office.,3\n6430,anetv_BgAiDS4fF_I,6504,He lays down on his back and does crunches. He,He lays down on his back and does crunches.,He,gold,jumps off his bar and does crunches.,ends the footage of the crowd and squats.,\"jumps off the bars and lands back on his chest, then lands and lands the mat.\",stands back up and continues talking.,3\n6431,anetv_BgAiDS4fF_I,14141,\"First he shows viewers how to properly do a crunch and his feet are apart, arms on his chest, and each time he goes up the elbows touch his legs. When he's done, he\",\"First he shows viewers how to properly do a crunch and his feet are apart, arms on his chest, and each time he goes up the elbows touch his legs.\",\"When he's done, he\",gold,\"puts his legs, scrubbing his hands, then picks his up and grabs a cord to be trying to put it on.\",begins punching the punching bag.,stands up and tells viewers more helpful information about how to have a good workout.,spins himself round and puts the stage he sort of what is happening in a gym where he is all alone again.,2\n6432,anetv_BgAiDS4fF_I,6503,A man is standing in a room talking. He,A man is standing in a room talking.,He,gold,lays down on his back and does crunches.,picks up a rubik's cube and gives it a picture.,looks in a fire pit with some sticks.,is cleaning shoes off a shot.,0\n6433,lsmdc1041_This_is_40-9041,15627,\"Now, they wear robes. They\",\"Now, they wear robes.\",They,gold,hold outfits on the dance floor.,scarf down the cookies.,play smoke on a line.,keep playing shuffle beside the ball.,1\n6434,anetv_sS-KyhAzeUY,10828,Then many people start to wash their hands using soap or cleaning them using hand sanitizer. There's music playing through the video and people,Then many people start to wash their hands using soap or cleaning them using hand sanitizer.,There's music playing through the video and people,gold,are standing in a room in the extreme watching.,are picked up and prepared to eat the boys cream on their faces.,are in the beach watching them play.,are shown drying their hands and washing them.,3\n6435,anetv_sS-KyhAzeUY,10827,This video shows people how important it is to wash your hands because it keeps down many infections and germs. Then many people,This video shows people how important it is to wash your hands because it keeps down many infections and germs.,Then many people,gold,start to wash their hands using soap or cleaning them using hand sanitizer.,are battling by calm waters.,are basically doing tricks off of a beach.,circle the sides then give paper to the crowd to make certain they are made for the furniture.,0\n6436,anetv_H6hb3SIqdL4,1907,A man in a striped shirt prepares to throw dart at a dart board. The man,A man in a striped shirt prepares to throw dart at a dart board.,The man,gold,runs his dart across the area that winds up a hole in the wall.,hit the pins and the man in the red jacket stands in mid - air foosball.,throws three darts at the dartboard.,throws after him again.,2\n6437,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9078,Someone's face grows pale. He,Someone's face grows pale.,He,gold,tucks the letters to his brother.,collapses in slow motion.,swigs from his gun.,walks around the room.,1\n6438,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9074,\"The frames come clattering down in a shower of glass, paper, and splintered wood. People\",\"The frames come clattering down in a shower of glass, paper, and splintered wood.\",People,gold,hide between the desk drawers and surreptitiously pulling out the grocery bag from under the table.,hide behind the pile of old age - clad children.,\"fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go.\",emerges from the bathroom into a green cloth.,2\n6439,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9060,Someone invades someone's memories. He,Someone invades someone's memories.,He,gold,sees someone humiliated by his father.,leans into a rescue car.,works her way down to the tearful forest.,rests a hand on someone's shoulder.,0\n6440,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9068,\"They zoom backwards and forwards, flinging exam papers and whiz bangs into the air. Someone\",\"They zoom backwards and forwards, flinging exam papers and whiz bangs into the air.\",Someone,gold,\"contemplates them on all fours, nails dunes and swirling.\",gets a firework in his face.,has a high rear - end pistol.,kicks out a writhing twin beneath the floor and strikes a button.,1\n6441,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9073,The dragon bursts out after her and explodes destroying the hundreds of decrees that someone has nailed to the wall. The frames,The dragon bursts out after her and explodes destroying the hundreds of decrees that someone has nailed to the wall.,The frames,gold,fall to the ground as tattooed forms are sucked down lines of flames.,\"begin to move, fold, amazingly, that they are quite visible.\",are ripped away from one of the pinning shards.,\"come clattering down in a shower of glass, paper, and splintered wood.\",3\n6442,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9062,\"His face twisted with anger, someone grabs someone viciously and peers into his face. He\",\"His face twisted with anger, someone grabs someone viciously and peers into his face.\",He,gold,hears crying in the corridor and finds the twins comforting a small boy.,jumps off the plane and he flies into the funnel.,\"opens a window, spies someone with his shield, and opens the curtains.\",finds someone in his own eye.,0\n6443,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9076,\"Delighted students rush out into the courtyard, applauding the magnificent display. Someone\",\"Delighted students rush out into the courtyard, applauding the magnificent display.\",Someone,gold,turns round and peers towards the classroom.,\"winks at someone, then cheerfully to someone.\",is among them looking rather confused.,poses beside the suited people as they move on.,2\n6444,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9065,Someone strides purposefully down the middle of the hall towards the great wooden doors. Everyone,Someone strides purposefully down the middle of the hall towards the great wooden doors.,Everyone,gold,\"runs the hall through it, followed by someone.\",strolls through the counter as someone stands by her window.,looks in someone's direction.,stops writing and turns to look.,3\n6445,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9070,\"His brother flings a large firework into the air. With a flash, the head of a flaming, fiery dragon\",His brother flings a large firework into the air.,\"With a flash, the head of a flaming, fiery dragon\",gold,appears and heads for someone.,falls across the carriage of the flashing people.,crashes through around the station.,fills an overpass lit arena cloud.,0\n6446,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9075,\"People fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go. Delighted students\",\"People fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go.\",Delighted students,gold,\"rush out into the courtyard, applauding the magnificent display.\",take the narrow steps to someone.,wrap their robes and pour on over someone's lifeless body.,have antique costumes onto their hands.,0\n6447,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9064,Several students turn to look at the door behind them. Someone,Several students turn to look at the door behind them.,Someone,gold,strides purposefully down the middle of the hall towards the great wooden doors.,is striding across the steps of the pool.,\"moves away clutching someone, who does n't catch it.\",\"comes past him and shuts the paper again, holding his coffee.\",0\n6448,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9067,\"Suddenly, people hurtle over her head on broomsticks. They\",\"Suddenly, people hurtle over her head on broomsticks.\",They,gold,surf through the waters at its bottom.,\"zoom backwards and forwards, flinging exam papers and whiz bangs into the air.\",stand looking at the piano.,avoid an coastline in the sky.,1\n6449,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9071,\"With a flash, the head of a flaming, fiery dragon appears and heads for someone. It\",\"With a flash, the head of a flaming, fiery dragon appears and heads for someone.\",It,gold,'s mouth full of white hot teeth.,soars through the titanic.,throws a strike and runs back.,looms beneath an island.,0\n6450,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9066,\"Someone looks anxiously around the empty hallway. Suddenly, people\",Someone looks anxiously around the empty hallway.,\"Suddenly, people\",gold,hurtle over her head on broomsticks.,enters a suburban town with wennerstrom.,stare at someone!,fall crouched down and swerve visibly before someone.,0\n6451,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9063,She stands on the stage in front of a huge swinging pendulum. Several students,She stands on the stage in front of a huge swinging pendulum.,Several students,gold,are boiled in flame.,turn to look at the door behind them.,\"leap from the stage, between her legs onto the gate.\",bring up their white uniforms.,1\n6452,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9069,One of the twins gives a signal. His brother,One of the twins gives a signal.,His brother,gold,flings a large firework into the air.,closes the cordless phone.,ignores him and gestures.,swoops up in the air.,0\n6453,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9061,\"He sees someone humiliated by his father. His face twisted with anger, someone\",He sees someone humiliated by his father.,\"His face twisted with anger, someone\",gold,leans over the couch.,turns away and looks up fondly at him.,fights to suppress the laughter.,grabs someone viciously and peers into his face.,3\n6454,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9077,Someone is among them looking rather confused. A huge fiery letter w,Someone is among them looking rather confused.,A huge fiery letter w,gold,appears at the end of a sleeping field.,appears on the screen as a logo of a sickly color.,is across the pen.,appears in the sky.,3\n6455,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9072,It's mouth full of white hot teeth. She,It's mouth full of white hot teeth.,She,gold,is scrubbing an ironing board on the ground.,opens the faucet and hands it over.,looks at his pursed lips.,races for the door.,3\n6456,lsmdc3003_40_YEAR_OLD_VIRGIN-1201,15869,Now at Smart Tech he stands on the sales floor. Someone,Now at Smart Tech he stands on the sales floor.,Someone,gold,sits at the dressing table.,leans beside a cupboard man.,approaches with her arms folded.,g - man squats down to picture o. j.'s head straddling a shiny old thick leg.,2\n6457,anetv_RO5WKh6dViA,6093,The child gets to the other side bows and runs back to the monkey bars jumping and laughing. The child,The child gets to the other side bows and runs back to the monkey bars jumping and laughing.,The child,gold,jumps around happily and falls down but get right back up.,takes various attempts and continues jumping over and over while hopping over the bar.,\"is seen swinging around the swing, back and back hitting the pinata.\",walks away and climbs over the monkey bars.,0\n6458,anetv_RO5WKh6dViA,6092,A child swings across the monkey bars. The child,A child swings across the monkey bars.,The child,gold,does a belly dance routine.,gets to the other side bows and runs back to the monkey bars jumping and laughing.,swings at the pinata.,swings forward near the child and turns and peers over the monkey bars.,1\n6459,anetv_RO5WKh6dViA,6091,A group of children play on playground equipment watched by parents. A child,A group of children play on playground equipment watched by parents.,A child,gold,\"stands in front of a tree, talking to the camera.\",\"sits beside a boy, hiding behind his boat.\",swings across the monkey bars.,walks into frame and demonstrates how to swing.,2\n6460,anetv_BwR1DPCVsP8,9992,A group is gathered in a basketball gym. They,A group is gathered in a basketball gym.,They,gold,begin playing fetch to the coach.,take turns doing layups with the ball.,start doing somersaults in a gymnasium.,are engaged in a game of squash.,1\n6461,anetv_BwR1DPCVsP8,5446,They are playing a game of basketball. We,They are playing a game of basketball.,We,gold,are giving each other several hugs.,see them make a multitude of shots in slow motion.,are jumping up and down.,are playing a game of cricket.,1\n6462,anetv_BwR1DPCVsP8,5445,A group of boys are on an indoor court. They,A group of boys are on an indoor court.,They,gold,are engaged in a game of volleyball.,are playing a game of basketball.,are in a competition to hit a ball.,are engaged in a game of water polo.,1\n6463,anetv_BwR1DPCVsP8,5447,We see them make a multitude of shots in slow motion. They,We see them make a multitude of shots in slow motion.,They,gold,give instructions on how to play the game as they go.,shoot underwater as the people walk around the field and spin until we see a title screen.,\"teams playing in a soccer game, while the players run toward each other.\",corners indoors action stationary admiringly.,0\n6464,anetv_BwR1DPCVsP8,9993,They take turns doing layups with the ball. They,They take turns doing layups with the ball.,They,gold,take cover behind the woman watching.,\"run in slow motion, jumping and putting the ball in the basket.\",hit the balls as they hit the ball around.,flip in the air and tumble into a cab.,1\n6465,anetv_QeL3ScQVelo,15696,The man holds a fish and put it on the pan. the womans erve salad on white plates and the man,The man holds a fish and put it on the pan.,the womans erve salad on white plates and the man,gold,put the fish on top and pour a dressing on top.,is smacking the ice behind it.,put the lock on plate.,don the blue coat and smoothen the dog with his hand.,0\n6466,anetv_QeL3ScQVelo,16731,A cookbook is shown followed by a man cooking food in a pan. He then,A cookbook is shown followed by a man cooking food in a pan.,He then,gold,puts the food on a plate with other ingredients and presents it to the camera while still speaking to the host.,places a tent on top of the fridge and pans around bowls and bread.,pours a lid into a bowl and proceeds to throw it at the plate and continue to walk around.,mixes ingredients into a bowl on a bar and stir it with vanilla.,0\n6467,anetv_QeL3ScQVelo,15695,Woman is talking to the camera in news standing next to a chef. the man,Woman is talking to the camera in news standing next to a chef.,the man,gold,gets up and walks out in the office lobby.,holds a fish and put it on the pan.,dries them with a towel.,raises her hand to congratulate him and talks to them.,1\n6468,anetv_QeL3ScQVelo,16730,A woman is seen hosting a news segment with a chef standing next to her. A cookbook,A woman is seen hosting a news segment with a chef standing next to her.,A cookbook,gold,is seen laid out by an intro and leads into her giving instructions on how to move a bow.,is shown on a field that leads into several clips of people riding around a beach near a river on a trail.,is shown followed by a man cooking food in a pan.,leads into the girl of knife holding a plate and waving to the camera.,2\n6469,anetv_QeL3ScQVelo,15697,The womans erve salad on white plates and the man put the fish on top and pour a dressing on top. the man,The womans erve salad on white plates and the man put the fish on top and pour a dressing on top.,the man,gold,folds the egg in the bread and puts graham dough onto a tray.,pours some red hot coffee and puts sink in the scarf.,shows how to braids and sharpen a box with equipment.,shows the fish on the pan and keeps talking to the woman.,3\n6470,anetv_Sx5MlpX6NIY,3860,A man in a hat is holding a camera in front of the band. They,A man in a hat is holding a camera in front of the band.,They,gold,is kneeling on his knees dancing when there's a boy in a blue shirt and wearing green outfit perform on stage.,\"and playing a game of tug of war, the crowd cheers and the dog claps as it finishes.\",turn to the side and begin marching off.,put the ornaments on the christmas tree.,2\n6471,anetv_Sx5MlpX6NIY,7558,A band is standing together in an outside arena. A woman,A band is standing together in an outside arena.,A woman,gold,is holding a baton demurely as she talks to her wrestlers.,is crossing volleyball on a stage back and forth.,drinks from a cup while they prepare to play.,is standing in an indoor court holding bagpipes.,2\n6472,anetv_Sx5MlpX6NIY,3859,A marching band is standing on a track playing. A man in a hat,A marching band is standing on a track playing.,A man in a hat,gold,is sitting on cushions on his bed.,talks to the camera while playing the guitar.,is holding a camera in front of the band.,is talking to a camera.,2\n6473,anetv_Sx5MlpX6NIY,7559,A woman drinks from a cup while they prepare to play. The group,A woman drinks from a cup while they prepare to play.,The group,gold,changes to paddle alone and for awhile.,starts marching and playing instruments and drums.,strolls into the store.,enters together on the stage carrying a kneeling drink.,1\n6474,lsmdc3063_SOUL_SURFER-31110,17330,They drag someone across the sand. He,They drag someone across the sand.,He,gold,watches a young man climb a ladder and escape onto the eagle.,picks at her rear truck and goes back to the track.,\"strides over to the mother, who lies on a boulder at a corridor.\",puts a leash around someone's wound.,3\n6475,lsmdc3063_SOUL_SURFER-31110,17329,He watches the doctors step out. They,He watches the doctors step out.,They,gold,drag someone across the sand.,\"withdraws her hand, and gets one's handed.\",creep their own gun past someone's mother.,clutter his dash and try to light up the panel into the parts.,0\n6476,lsmdc3014_CAPTAIN_AMERICA-5470,13131,\"Shielding his eyes with one hand, someone gazes at the pod as it dims, then goes dark. People\",\"Shielding his eyes with one hand, someone gazes at the pod as it dims, then goes dark.\",People,gold,crowd against the windows of the observation booth.,sweep the pendant necklace.,\"peers down from it, lowers a microphone and climbs back into the pilot seat.\",helps someone up the steps to the cooper.,0\n6477,lsmdc3014_CAPTAIN_AMERICA-5470,13132,People crowd against the windows of the observation booth. Someone,People crowd against the windows of the observation booth.,Someone,gold,stands clad in parody - like suit.,lowers his protective glasses.,\"rushes to someone, leading the president.\",wields a spear with someone.,1\n6478,lsmdc3014_CAPTAIN_AMERICA-5470,13133,Someone lowers his protective glasses. Someone,Someone lowers his protective glasses.,Someone,gold,watches with the illuminated sign of his new associates.,steps up and helps his groggy subject out of the apparatus.,looks at the brunette then pours them a drink.,peeks at the ceiling.,1\n6479,anetv_1jX8p54Dfjs,15125,A woman is seated on a couch in a living room. She,A woman is seated on a couch in a living room.,She,gold,is playing a violin against a wall.,talks with the camera and gets back on the couch.,is holding a cat in her lap.,is playing the accordion on the floor.,2\n6480,anetv_1jX8p54Dfjs,11758,A woman sits with her cat and cuts its nails. She shows the proper way to do this and the cat,A woman sits with her cat and cuts its nails.,She shows the proper way to do this and the cat,gold,is pretty calm throughout.,getting painted with the paw in yellow frosting.,cuts to her eye cream.,cuts to fit man wearing white while cat.,0\n6481,anetv_1jX8p54Dfjs,15126,She is holding a cat in her lap. She,She is holding a cat in her lap.,She,gold,\"walks away a bit, and then studies the cat.\",shakes the cat's paw and rolls.,trims the nails on each toe nail.,continues clipping her nails with yarn.,2\n6482,lsmdc1026_Legion-5769,12184,\"Smiling incredulously, someone wraps the bloody child in a towel and offers it to someone. A tear\",\"Smiling incredulously, someone wraps the bloody child in a towel and offers it to someone.\",A tear,gold,drops down someone's cheek and hurries out quickly.,lands on someone's cheek then shuts him off.,spills down her cheek.,rolls down someone's cheek.,3\n6483,lsmdc1026_Legion-5769,12186,Someone faces away from the child. Someone,Someone faces away from the child.,Someone,gold,\"carries the baby over to someone, who stares at it, frowning.\",leaves her apartment and accidentally kisses his mother.,\"studies herself from the dances set, making the pranam.\",hurries up some stairs and finds only a magnificent crystal chandelier.,0\n6484,lsmdc1026_Legion-5769,12183,\"Someone gently lifts the baby. Smiling incredulously, someone\",Someone gently lifts the baby.,\"Smiling incredulously, someone\",gold,wraps the bloody child in a towel and offers it to someone.,smile at them as they head to the gate of two young children.,sidles up and down in the shadows.,cautiously strides across the flowers on the broken stone floor.,0\n6485,lsmdc1026_Legion-5769,12185,A tear rolls down someone's cheek. Someone,A tear rolls down someone's cheek.,Someone,gold,folds his hands behind his back.,wraps the locket around his neck and pushes him back down.,faces away from the child.,faces someone who stares at her.,2\n6486,lsmdc3046_LARRY_CROWNE-21802,10676,Someone gives him three lottery tickets. Two kids,Someone gives him three lottery tickets.,Two kids,gold,ride past on their bicycles as someone climbs into his suv.,catch up in a blue swimsuit dress.,unload the picture of a car.,wait outside with her mom in a dirt.,0\n6487,anetv_3ddoLUFrGsE,18464,\"The woman is putting make up to the boy's face, and then the boy shows his face. Then, the woman\",\"The woman is putting make up to the boy's face, and then the boy shows his face.\",\"Then, the woman\",gold,shows the floors and how it should clean concrete.,takes a pair of clippers and applies it to his leg.,is shown playing and singing with a bunch.,put make on a girl face.,3\n6488,anetv_3ddoLUFrGsE,18465,\"Then, the woman put make on a girl face. The boy and the girl\",\"Then, the woman put make on a girl face.\",The boy and the girl,gold,attach the child dance.,put off indignant into a group's eyelids and colors it out.,grab her tubes and stop to help in each other.,look their faces on a mirror making funny faces and waving.,3\n6489,anetv_RpyRgnHdUXc,2308,\"The man begins to exercise on the machine slowly, all while talking to the camera, eventually building up to a more fast paced work out on the same machine. The man\",\"The man begins to exercise on the machine slowly, all while talking to the camera, eventually building up to a more fast paced work out on the same machine.\",The man,gold,continues to play the area with his foot smiling each other.,\"then put the three feet and the child forward, then he did another while the camera captures him from a different angle.\",melts into the metal frame and ends by pausing and panning faster and faster.,begins to demonstrate how to use the digital panel on the exercise machine by pointing at it and talking to the camera.,3\n6490,anetv_r2oMItb5EVM,12320,\"A young man puts in a pan oil, onions, tomatoes, green leaves and salt, then mix to cook the vegetables. After, the man\",\"A young man puts in a pan oil, onions, tomatoes, green leaves and salt, then mix to cook the vegetables.\",\"After, the man\",gold,\"puts aside the vegetables, and cooks an omelette in the pan.\",adds aluminum to the pan.,works on the new element.,puts slices on the bread.,0\n6491,anetv_GWRqx0obKzA,4447,The group go rafting on the water. They,The group go rafting on the water.,They,gold,are shown doing paddles while sitting in the water.,ride on a raft in the river of water.,get on the river sleds to land on the river and car.,wave again to the camera.,3\n6492,anetv_GWRqx0obKzA,4446,A group wave to the camera while more people in the background walk through the water. The group,A group wave to the camera while more people in the background walk through the water.,The group,gold,then swim in the middle of water around the pool swimming.,go rafting on the water.,then sits in the kayak raft paddling while paddling and pushing the rafts.,continues riding waves to the camera.,1\n6493,anetv_GWRqx0obKzA,4448,They wave again to the camera. The group,They wave again to the camera.,The group,gold,are shown in their raft as they sail along the river.,are even higher than up.,\"limps off into the room, streaming over someone soaking coffee as he tries to break.\",goes to talk and laugh.,0\n6494,anetv_GWRqx0obKzA,4449,The group are shown in their raft as they sail along the river. They,The group are shown in their raft as they sail along the river.,They,gold,are shown taking a break in the river.,are kayaking through the rapids of rapids.,continue rafting in harbor while attempting to stay afloat.,\"are paddling down the river, walking close to each other.\",0\n6495,anetv_GWRqx0obKzA,4450,Pov footage from one of the rafters. The group,Pov footage from one of the rafters.,The group,gold,rises on people pass between cars.,is out of the river and hiking.,\"passes, holding her straight then gazes at the rocks.\",is turned on.,1\n6496,anetv_NBXH7A2EO7Q,18517,A person is seen walking into frame and begins putting handle bars onto a bike frame. The person,A person is seen walking into frame and begins putting handle bars onto a bike frame.,The person,gold,drives up and shows their fencing for the camera.,continues performing gymnastic moves and performs the routine while continuing to speak to the camera.,continues swinging back and fourth on the bike while looking to the camera.,tightens the handlebars then begins putting a tire on.,3\n6497,anetv_NBXH7A2EO7Q,18518,The person tightens the handlebars then begins putting a tire on. The man,The person tightens the handlebars then begins putting a tire on.,The man,gold,lifts the new tire up on the border of the bike.,moves quickly on the wax on the torching.,talk while riding around the table and smiling to the camera.,finishes putting the tire on and puts on a seat on the frame.,3\n6498,anetv_NBXH7A2EO7Q,8500,A man is seen talking inside a shop. He,A man is seen talking inside a shop.,He,gold,is working on the handle bars of a bicycle.,holds various books and carving tools from the ground.,begins smoking a hookah.,keeps messing up to a tile strapped to a dance kitchen.,0\n6499,anetv_NBXH7A2EO7Q,8501,He is working on the handle bars of a bicycle. He,He is working on the handle bars of a bicycle.,He,gold,dismounts with puts on his steering bike.,screws the bars back onto the bike.,goes back to walk on an exercise bike.,lays down on it.,1\n6500,anetv_JNuVGc8mn54,13536,One of them is playing guitar and two of them are playing the violin. People walk by them and a kid pushing a stroller and some other children,One of them is playing guitar and two of them are playing the violin.,People walk by them and a kid pushing a stroller and some other children,gold,are nibbling on the side and pointing to the magnificent television.,are standing in front watching him get there.,come and stop to watch them for a little by.,are on a outside and a kid in one shirt talks outside.,2\n6501,anetv_JNuVGc8mn54,13537,People walk by them and a kid pushing a stroller and some other children come and stop to watch them for a little by. There,People walk by them and a kid pushing a stroller and some other children come and stop to watch them for a little by.,There,gold,\"is a crowd that has actually stopped to watch them play, clapping and one of them leaving money in their case.\",are driving in a little bumper truck.,are and the children continue moving back and forth on the playground!,child come through the gate with the man working out on a string.,0\n6502,anetv_JNuVGc8mn54,13535,There men have chairs and are sitting int he subway way making some music. One of them is playing guitar and two of them,There men have chairs and are sitting int he subway way making some music.,One of them is playing guitar and two of them,gold,stand on the other side and explain on his batman movements.,are singing at the same time as they play pool.,are playing the violin.,going to have to go kayaking in private cross.,2\n6503,anetv_Gi55CA6ktE8,5997,\"A screen of fighters are shown and then two random images are selected. Once selected, the pictures move to the top corners of the screen and two people dressed in sumo uniforms\",A screen of fighters are shown and then two random images are selected.,\"Once selected, the pictures move to the top corners of the screen and two people dressed in sumo uniforms\",gold,walk by black and white.,get cleaned with a gun behind their back.,are shown performing jump bikes.,stand in the middle of a round - about and begin fighting as cars travel around them.,3\n6504,anetv_yrGietojx78,13893,He starts chopping weeds down in a field. He,He starts chopping weeds down in a field.,He,gold,stops and puts the tool against a fence.,starts mowing the lawn in the path.,is getting on a horse and way down into a path.,ties the horses back and rides around the camels continuously.,0\n6505,anetv_yrGietojx78,13892,A man in a white shirt is holding a tool in his hand. He,A man in a white shirt is holding a tool in his hand.,He,gold,starts chopping weeds down in a field.,plugs a new layer from the floor.,throws a large piece of paper to the ground.,shakes the man's hand while talking.,0\n6506,lsmdc0002_As_Good_As_It_Gets-46426,18161,Someone look at her mother - - they share a laugh. Someone,Someone look at her mother - - they share a laugh.,Someone,gold,glances across at him.,opens someone by the arm.,has a hard time stopping.,gets in his car.,2\n6507,anetv_h7iCyiNUxeE,4140,The camera turn and we see a blond lady in glasses posing for the camera. The camera,The camera turn and we see a blond lady in glasses posing for the camera.,The camera,gold,looks over at the cameraman to talk the lady about baked product.,zooms in on the lady as she drinks from the trainers.,pans to a lady who is shoveling snow.,pans back to the man who is holding a towel.,3\n6508,anetv_h7iCyiNUxeE,4138,A man is facing a window. the man,A man is facing a window.,the man,gold,goes underwater while gazing at a camera.,turns towards the camera.,is removing shingles from the shoe.,puts lipstick on his lips.,1\n6509,anetv_h7iCyiNUxeE,4139,The man turns towards the camera. The camera turn and we,The man turns towards the camera.,The camera turn and we,gold,see him riding back in the field.,see a blond lady in glasses posing for the camera.,see a man talking to the camera.,see the boy talking and rubs his hands together.,1\n6510,anetv_h7iCyiNUxeE,8967,\"A young man is standing in the kitchen in front of a sink washing dishes. Behind him, a young girl with blonde hair\",A young man is standing in the kitchen in front of a sink washing dishes.,\"Behind him, a young girl with blonde hair\",gold,is smiling and holding the came before recording the young man again.,\"dances with the woman in the canoe, washing a red bucket.\",is standing on a picture and a trashcan.,rubs her back is rinsing her mouth thoroughly.,0\n6511,anetv_O0-CRPl0TR0,16707,Two men are inside a gym together. they,Two men are inside a gym together.,they,gold,are engaged in a game of table tennis.,use a small piece of equipment and use the equipment to fix their grips.,take turns doing karate at the same time.,start playing a game of polo.,0\n6512,anetv_O0-CRPl0TR0,8290,The two players end their game and the referee holds his right arm up to indicate the winner as the two players meet on the right side of the table and give one another a handshake. They both then turn to the referee on the right and give him a handshake and then they,The two players end their game and the referee holds his right arm up to indicate the winner as the two players meet on the right side of the table and give one another a handshake.,They both then turn to the referee on the right and give him a handshake and then they,gold,finish and hug people.,continue playing volley ball with the ladies who all sit next to each other.,run to the ball to their playing.,walk to the referee on the left to give him a handshake as well.,3\n6513,anetv_O0-CRPl0TR0,8289,\"Two players and a referee are standing in a boxed off area that is primarily red and blue, and they are standing around a ping pong table. The referee takes a seat on his blue chair and the two players\",\"Two players and a referee are standing in a boxed off area that is primarily red and blue, and they are standing around a ping pong table.\",The referee takes a seat on his blue chair and the two players,gold,play with each other on the ground.,start shaking their head for wrestling.,begin hitting the ping pong across the table as two referees are sitting on the sidelines on each side of the table observing.,\"continue playing beer, the little boy practices a hat.\",2\n6514,anetv_O0-CRPl0TR0,8291,They both then turn to the referee on the right and give him a handshake and then they walk to the referee on the left to give him a handshake as well. They both then,They both then turn to the referee on the right and give him a handshake and then they walk to the referee on the left to give him a handshake as well.,They both then,gold,go together and shake beers instead as they talked.,begin to dance together with each other on the field.,proceed to the edge of the boxed in area and leave.,begin talking to each other for a brief period of time.,2\n6515,anetv_O0-CRPl0TR0,16708,They are engaged in a game of table tennis. They,They are engaged in a game of table tennis.,They,gold,punch balls to each other.,walk around a tile on the floor.,hit the ball back and forth over the net.,are playing a game of paper scissors.,2\n6516,lsmdc1056_Rambo-96765,11877,\"In the arena, the wrangler teases a cobra. Someone\",\"In the arena, the wrangler teases a cobra.\",Someone,gold,leaves in a forest spot.,studies his face with laser eyes.,stands near wire and wood snake cages as someone and his party approach.,flies through the air.,2\n6517,lsmdc1056_Rambo-96765,11875,He empties the bag containing the cobra into a wooden crate. A group of Westerners,He empties the bag containing the cobra into a wooden crate.,A group of Westerners,gold,are getting in the club.,make their way to an stairway and boards off in a stony castle.,\"carries a map which is original with the outline cities the peasants, grimy.\",\"arrive, led by someone, who has thinning hair, and a blonde girl, someone.\",3\n6518,anetv_MEU83dUao4g,3304,A woman is seen with markings on her tongue and a person placing paper towels on her tongue. The man then pierces the girls tongue and she,A woman is seen with markings on her tongue and a person placing paper towels on her tongue.,The man then pierces the girls tongue and she,gold,sticks her hand into it.,sticks her legs out to insert contact lenses.,catches it in the end.,looks at the camera smiling.,3\n6519,lsmdc1047_Defiance-91240,2593,They have a little fire near to a stream. Someone,They have a little fire near to a stream.,Someone,gold,\"grabs the water, then turns and walks around the table.\",strides back to someone 'trailer.,crouches down next to someone who is the tallest of the three adults.,grab the gunpowder from one of the cups.,2\n6520,lsmdc1047_Defiance-91240,2595,Someone pushes a stick into the mud with a curious expression and watches several ants climb onto it. He,Someone pushes a stick into the mud with a curious expression and watches several ants climb onto it.,He,gold,huge shadows into the air.,\"looks at them, quietly.\",brings the stick closer to him and studies their movements.,sees an oncoming car below.,2\n6521,lsmdc1047_Defiance-91240,2601,His brothers are sitting around the fire. People,His brothers are sitting around the fire.,People,gold,spinning someone of the stage.,are sick the japanese servant.,look at each other.,\"go in bowling rooms and farm side with a determined reflective - mixer, people, and some young, bottles and strawberries.\",2\n6522,lsmdc1047_Defiance-91240,2599,\"Clutching his stick, someone steps towards a mud ditch in the middle of a clearing. The long winding ditch\",\"Clutching his stick, someone steps towards a mud ditch in the middle of a clearing.\",The long winding ditch,gold,lift a ladder at the docks.,\"clinging pieces approaching him, sending someone down in the pit.\",is replaced with the heavy oar loaded through some populated area.,is full of dead bodies piled on top of each other.,3\n6523,lsmdc1047_Defiance-91240,2598,\"Someone looks in another direction and sees a young man accompanying an old woman. Clutching his stick, someone\",Someone looks in another direction and sees a young man accompanying an old woman.,\"Clutching his stick, someone\",gold,reaches out and lifts his leather jacket onto the sofa.,faces the delivery guy.,steps outside as he hurries toward the set wearing open carriage.,steps towards a mud ditch in the middle of a clearing.,3\n6524,lsmdc1047_Defiance-91240,2591,The four of them huddle together in the pouring rain. Someone,The four of them huddle together in the pouring rain.,Someone,gold,sits with a coat on his head listening quietly.,and someone applaud for another montage.,paints a tablet to their pod.,peeks in the room at the rear of the chimes.,0\n6525,lsmdc1047_Defiance-91240,2597,\"He stops between two silver birch trees and watches the teen girl run towards a gray bearded man in a Homburg hat, shirt and waistcoat and suit trousers sitting on a log with a little girl in his arms. Someone\",\"He stops between two silver birch trees and watches the teen girl run towards a gray bearded man in a Homburg hat, shirt and waistcoat and suit trousers sitting on a log with a little girl in his arms.\",Someone,gold,\"gets caught, sag for a big turn on the horse, and then gets off the horse.\",runs to a building where several spectators gather below.,looks in another direction and sees a young man accompanying an old woman.,is fitted for the rear door.,2\n6526,lsmdc1047_Defiance-91240,2590,Someone hands someone some vodka. The four of them,Someone hands someone some vodka.,The four of them,gold,huddle together in the pouring rain.,seem slack - jawed.,are staring away in the dark.,look disappointed and kind.,0\n6527,lsmdc1047_Defiance-91240,2592,Someone sits with a coat on his head listening quietly. They,Someone sits with a coat on his head listening quietly.,They,gold,\"eat their breakfast, then drink in the bowls.\",\"over the trio, someone looks sorrowfully as someone stares at her, one hand resting on the banquette.\",have a little fire near to a stream.,notice snakes against a tree.,2\n6528,lsmdc1047_Defiance-91240,2600,Someone's eyes fill with horror. His brothers,Someone's eyes fill with horror.,His brothers,gold,are sitting around the fire.,light up with their well - wishers.,tumble cover the floor.,quickly remove the argue.,0\n6529,lsmdc1047_Defiance-91240,2596,He reels around and spotss a female figure running through the trees some distance away. He,He reels around and spotss a female figure running through the trees some distance away.,He,gold,is held down with a siren.,jumps again several times in slow motion.,\"obliges, but slowly misses and breaks.\",gets to his feet.,3\n6530,anetv_AyWXuUCDSjw,11431,We see 5 men walking down the street sides by side. A man,We see 5 men walking down the street sides by side.,A man,gold,goes over waterfalls and dives into the ocean.,and guy does the same.,begins to eat leftovers off a table.,looks at the men.,3\n6531,anetv_AyWXuUCDSjw,11437,The men leave the bar drunk. We,The men leave the bar drunk.,We,gold,a soldier at the back of the lorry where armed leaders are doing the same.,see a gray closing screen.,men play ping pong.,put photographs of men.,1\n6532,anetv_AyWXuUCDSjw,11433,A lady looks at the men. Two men,A lady looks at the men.,Two men,gold,turn and look at each other.,stand on a stage and switch together.,are sitting at a table in front of the table.,engage in a game of styrofoam foosball.,0\n6533,anetv_AyWXuUCDSjw,11430,We see an opening title screen. We,We see an opening title screen.,We,gold,\"see a man playing an acoustic guitar, playing.\",see 5 men walking down the street sides by side.,see a person in a track with a razor.,see men dancing on a stage.,1\n6534,anetv_AyWXuUCDSjw,11434,Two men turn and look at each other. One man,Two men turn and look at each other.,One man,gold,removes his jacket wearing a helmet.,buys drinks as everyone stares at them.,flips up the ax.,bends onto the floor.,1\n6535,anetv_AyWXuUCDSjw,11436,The five men drink their beers in one gulp. The men,The five men drink their beers in one gulp.,The men,gold,sip their beers as they leave and drink cigars.,step towards the bus stop.,stride away from the salon.,leave the bar drunk.,3\n6536,anetv_AyWXuUCDSjw,11432,A man looks at the men. A lady,A man looks at the men.,A lady,gold,cuts away her hair.,talks below his arms.,looks at the men.,sits shaking a red hoop in a spin while smiling and talking.,2\n6537,anetv_AyWXuUCDSjw,11435,One man buys drinks as everyone stares at them. The five men,One man buys drinks as everyone stares at them.,The five men,gold,drink around a bit as the mustached robber gather.,drink their beers in one gulp.,are sleeping under the lights outside a winter resort.,are tossed into the mic and hand out the cigarettes as far as they can.,1\n6538,anetv_xMEwcb1P6dQ,5078,\"A young girl is sitting in the room positioning her camera. After everything is put into place, she\",A young girl is sitting in the room positioning her camera.,\"After everything is put into place, she\",gold,begins to play her guitar in her room.,gathers her children to take off her beer.,begins to take her jacket down very quickly.,washes as they build up.,0\n6539,anetv_xMEwcb1P6dQ,7227,A girl is sitting inside a bedroom. She,A girl is sitting inside a bedroom.,She,gold,is playing a toy of harmonica while a cat is sitting on the ground.,puts on a pair of clippers.,puts a guitar onto her lap.,starts a hairstyle.,2\n6540,anetv_xMEwcb1P6dQ,7228,She puts a guitar onto her lap. She,She puts a guitar onto her lap.,She,gold,repeats her cycle over and over in frustration.,wraps her hands around her and leads her back on to a music rink.,starts playing the harmonica.,begins to play the guitar for the camera.,3\n6541,anetv_xMEwcb1P6dQ,5079,\"After everything is put into place, she begins to play her guitar in her room. When she is finish, she\",\"After everything is put into place, she begins to play her guitar in her room.\",\"When she is finish, she\",gold,looks into the camera smiles and stops playing.,goes to get another black star.,lights up a play on her belly.,is past someone and goes back to her performance.,0\n6542,anetv_FRag7CCTP4k,16881,An athlete is shown warming up in front of a pole while several others in the background run around a track. The man eventually,An athlete is shown warming up in front of a pole while several others in the background run around a track.,The man eventually,gold,is running to the pole as an athlete runs down it with a javelin.,performs a small stadium while tossing himself over the bar.,prepares for his jump and jumps over the pole.,jumps over a bar on a pole sticking up a roll.,2\n6543,anetv_qhnWJ4G5JMA,8762,A woman is seen speaking to the camera while standing around a group of exercise equipment. The woman,A woman is seen speaking to the camera while standing around a group of exercise equipment.,The woman,gold,shows how to adjust the exercise equipment then climbs on top and begins using it.,continues hitting a machine as with as well as still speaking to the camera.,begins putting the handle on while speaking to the camera while still speaking to the camera.,slowly shows the object of the equipment while the camera pans past taking shots out the area.,0\n6544,anetv_qhnWJ4G5JMA,18846,A woman is seen speaking to the camera behind an exercise bike. She,A woman is seen speaking to the camera behind an exercise bike.,She,gold,continues dancing around on her coat while still speaking to the camera.,walks over and rides on her bike through a fence.,adjusts the settings on the bike while climbing on top.,begins dancing while speaking to the camera and smiling to the camera.,2\n6545,anetv_qhnWJ4G5JMA,18847,She adjusts the settings on the bike while climbing on top. She then,She adjusts the settings on the bike while climbing on top.,She then,gold,takes the eggs out of a covered bowl and puts it back in the pot.,gets off of the bike and puts her feet up on the pedals.,shows in more shots of the bike and attempts to kiss back the saddle.,begins using the bike and climbs off to adjust the bike more.,3\n6546,anetv_qhnWJ4G5JMA,8763,The woman shows how to adjust the exercise equipment then climbs on top and begins using it. The woman,The woman shows how to adjust the exercise equipment then climbs on top and begins using it.,The woman,gold,bounces the bike together in the air.,allows her hands and flips to tools to show a spinning box.,shows how she tugs apart the machine.,continues riding on the bike while speaking to the camera and climbing off in the end.,3\n6547,lsmdc3085_TRUE_GRIT-40586,6552,\"Holding his rifle, someone makes his way to the front of the cabin. All\",\"Holding his rifle, someone makes his way to the front of the cabin.\",All,gold,carry the drill out of the chopper.,watches the monitor.,has fallen asleep on his back.,is dark apart from a slit of yellow light at a window.,3\n6548,lsmdc3085_TRUE_GRIT-40586,6554,Someone squats down by some tree branches and aims at the dark cabin with his rifle. Smoke,Someone squats down by some tree branches and aims at the dark cabin with his rifle.,Smoke,gold,seeps under the front door.,\"from the water, people unload catapults in the back to go over an object.\",drops the lighter into the air.,\"walks away from the door, blocking it from sight.\",0\n6549,lsmdc3085_TRUE_GRIT-40586,6553,Someone raises his hand to someone. Someone,Someone raises his hand to someone.,Someone,gold,steps into the nudges door's frame.,squats down by some tree branches and aims at the dark cabin with his rifle.,walks past a weight table from someone's blindfolded partner.,holds someone's finger phone at someone.,1\n6550,lsmdc3085_TRUE_GRIT-40586,6551,\"Holding someone's coat, someone carefully walks onto the roof. Holding his rifle, someone\",\"Holding someone's coat, someone carefully walks onto the roof.\",\"Holding his rifle, someone\",gold,fits his boot under his own boots.,sees the boy up ahead.,makes his way to the front of the cabin.,easily pulls someone into a crevasse.,2\n6551,lsmdc3085_TRUE_GRIT-40586,6550,\"That night, someone and someone look down at a cabin lodged into a muddy hillside. Holding someone's coat, someone carefully\",\"That night, someone and someone look down at a cabin lodged into a muddy hillside.\",\"Holding someone's coat, someone carefully\",gold,sips her tea.,\"strides over and crouches beside someone, clutching his egg.\",puts his socks into the bin.,walks onto the roof.,3\n6552,lsmdc1010_TITANIC-77746,6543,\"Atop the stairs, someone grips the gate and glares at the armed steward. Someone\",\"Atop the stairs, someone grips the gate and glares at the armed steward.\",Someone,gold,jumps down in a crevice and presses his body button down.,\"glowers and points at the steward, then runs downstairs.\",\"pushes himself along the street which shows someone, the young hydra soldier.\",reaches into someone's tent and grabs his pants.,1\n6553,lsmdc1010_TITANIC-77746,6536,Someone and other passengers pop open the third - class gangway door and peer out along the ship. Two seamen,Someone and other passengers pop open the third - class gangway door and peer out along the ship.,Two seamen,gold,climb into the cab.,rise high above his head.,pull the passengers back in and close the door.,aide walk alongside the cemetery and enjoy a tranquil passing sea with their boards on zoom along the side streets like donut - infested water,2\n6554,lsmdc1010_TITANIC-77746,6588,\"Someone removes his own coat and places it around someone's shoulders. He starts to caress someone's hair, but she\",Someone removes his own coat and places it around someone's shoulders.,\"He starts to caress someone's hair, but she\",gold,turns back and gazes at the chord rigidly.,turns to meet him.,drops to her knees.,backs away from him.,3\n6555,lsmdc1010_TITANIC-77746,6559,He turns toward a young sailor. Someone,He turns toward a young sailor.,Someone,gold,presses the front wheel to the rock.,\"loads his revolver, while someone boards the lifeboat.\",stands and gazes at the priest palms.,spins at a point.,1\n6556,lsmdc1010_TITANIC-77746,6580,\"Someone turns to people, while someone helps load the collapsible. Someone\",\"Someone turns to people, while someone helps load the collapsible.\",Someone,gold,\"'s hand lobs through the side of his tree, its full tone in the drive.\",\"stares at the collapsible, then blinks.\",neighbors in west shares more rooms having a large lake and causing the magistrate to walk ahead.,heaves a cigar as he struggles to regain control of himself.,1\n6557,lsmdc1010_TITANIC-77746,6575,Someone slips money into someone's pocket. Someone,Someone slips money into someone's pocket.,Someone,gold,\"drives up his face, his pockets encouraging as usual.\",\"glances down at the cash, then exchanges looks with someone and walks off.\",swings a drum kit to his chest.,pushes his fist.,1\n6558,lsmdc1010_TITANIC-77746,6558,He waves the gun at the group of men. He,He waves the gun at the group of men.,He,gold,turns toward a young sailor.,moves out of the citadel.,yanks her robe from his face.,looks into someone's eyes and turns away.,0\n6559,lsmdc1010_TITANIC-77746,6538,Two stewards unlock the gate. A woman and several men,Two stewards unlock the gate.,A woman and several men,gold,rush through the open gate.,walk while and borrowed the crate with the letter post.,\"help the child past the cart, revealing her hurrying men leading them on in the rocky slope.\",run down two then meet in a sprawling luxury factory.,0\n6560,lsmdc1010_TITANIC-77746,6576,\"Someone glances down at the cash, then exchanges looks with someone and walks off. On the port side, someone\",\"Someone glances down at the cash, then exchanges looks with someone and walks off.\",\"On the port side, someone\",gold,resumes with a meaningful look.,\"lifts a red collar of his knitted cape, then climbs into the middle of the bed of his own.\",loads passengers into a boat.,and someone stare at the forest floor.,2\n6561,lsmdc1010_TITANIC-77746,6569,They run to the side of the ship. Someone,They run to the side of the ship.,Someone,gold,picks at a corner and looks up at the sky.,\"meets the truck, putting a sight on it in someone's room.\",follows someone out of the study and flings him to the floor.,stands up on the railing and gazes toward the bow.,3\n6562,lsmdc1010_TITANIC-77746,6587,Someone pulls off the blanket someone is wrapped in and shoves it at someone. Someone,Someone pulls off the blanket someone is wrapped in and shoves it at someone.,Someone,gold,\"straightens up from his own grasp, revealing the long shoot he kicked through the grass, then pins someone into the limo.\",removes his own coat and places it around someone's shoulders.,\"sits down happily - - a very good photo in his hand, gives him a hard look.\",\"jogs near to the windscreen, looks out and sees only the mustached stranger.\",1\n6563,lsmdc1010_TITANIC-77746,6573,\"Elsewhere, someone and several seamen load a small boat. Someone\",\"Elsewhere, someone and several seamen load a small boat.\",Someone,gold,paddles the guide as someone rides through the waves of his yacht.,\"watches someone advance, and shoot him a hostile glare.\",\"glances around, then turns to a sailor.\",licks her lips and shoves something from the table.,2\n6564,lsmdc1010_TITANIC-77746,6566,People turn as someone fires his gun in the air. Someone,People turn as someone fires his gun in the air.,Someone,gold,hits the ball wildly.,releases a wire on a cable.,follows someone toward the bow.,shoves someone against a wall.,2\n6565,lsmdc1010_TITANIC-77746,6582,\"Someone follows someone, who walks through the bridge. People\",\"Someone follows someone, who walks through the bridge.\",People,gold,brush past an officer.,rush out from him.,sit calmly on her porch.,\"stare down one that is ancient, suspended from the ceiling.\",0\n6566,lsmdc1010_TITANIC-77746,6555,Someone pushes away a group of men. A man,Someone pushes away a group of men.,A man,gold,joins a ladder from the rooftop.,climbs back into the break room of a building.,knocks a woman off the deck.,shoves down the road at a crowded parking lot.,2\n6567,lsmdc1010_TITANIC-77746,6546,\"Elsewhere, someone and the others run along a crowded corridor. Someone\",\"Elsewhere, someone and the others run along a crowded corridor.\",Someone,gold,leads them down another corridor.,\"walks into a cafe chair, greets him, and sips a cocktail drink.\",\"approaches someone delightedly, then gives her instructions.\",drops his fluttering hand above the man.,0\n6568,lsmdc1010_TITANIC-77746,6534,Someone gazes out at several partially filled lifeboats moving away from the Titanic and motions to waiting passengers. Several full lifeboats,Someone gazes out at several partially filled lifeboats moving away from the Titanic and motions to waiting passengers.,Several full lifeboats,gold,\"elven boats have sails along the water, waves to the left town.\",sit on the island.,ride forward as people start over - hills.,are lowered to the water.,3\n6569,lsmdc1010_TITANIC-77746,6584,\"Meanwhile, someone stands by the collapsible. While someone turns away, someone\",\"Meanwhile, someone stands by the collapsible.\",\"While someone turns away, someone\",gold,heads through a hospital corridor where rows of rusty devices slides latex - like fingers.,aims a menu at the house.,finds the second family.,slips into a seat on the collapsible.,3\n6570,lsmdc1010_TITANIC-77746,6562,\"People peer down the side of the ship. Below, one lifeboat\",People peer down the side of the ship.,\"Below, one lifeboat\",gold,someone the soldier stands at the far end of the dock.,is lowered onto another lifeboat sitting in the water but unable to detach.,glides back along a wooden bridge.,goes away toward minas tirith.,1\n6571,lsmdc1010_TITANIC-77746,6586,\"As the collapsible drops below the deck, someone glances up. Someone\",\"As the collapsible drops below the deck, someone glances up.\",Someone,gold,grabs a young girl and places her in a lifeboat.,\"glances back then follows, then ahead.\",\"rushes to the corpse, then slides on its feet.\",moves out the sight of writing and disappears off.,0\n6572,lsmdc1010_TITANIC-77746,6568,\"Meanwhile, people arrive on the upper deck. They\",\"Meanwhile, people arrive on the upper deck.\",They,gold,clamber through muddy coal under water.,lunge at each other.,do work at the sink.,run to the side of the ship.,3\n6573,lsmdc1010_TITANIC-77746,6563,\"Below, one lifeboat is lowered onto another lifeboat sitting in the water but unable to detach. On the other side of the ship, someone\",\"Below, one lifeboat is lowered onto another lifeboat sitting in the water but unable to detach.\",\"On the other side of the ship, someone\",gold,is conducting and trying to hide his face as best he can.,regains control and takes into another ring.,\"falls ahead of the ship's prow, which lies amid its arch.\",stands in a lifeboat as it is lowered.,3\n6574,lsmdc1010_TITANIC-77746,6565,He waves his revolver at men on the decks as they try to jump into the boat. People,He waves his revolver at men on the decks as they try to jump into the boat.,People,gold,fingers seize the goblin who soar from the deep in lifeboats.,pushed up behind the boat with their hands clasped together.,hold the boat as someone tries to grab onto the boat.,turn as someone fires his gun in the air.,3\n6575,lsmdc1010_TITANIC-77746,6564,\"On the other side of the ship, someone stands in a lifeboat as it is lowered. He\",\"On the other side of the ship, someone stands in a lifeboat as it is lowered.\",He,gold,\"tries to help the jet pass below, but lifts himself up into the air.\",waves his revolver at men on the decks as they try to jump into the boat.,\"swims to another pool and looks for it, cringing again.\",\"quickly hauls himself to his feet but raises his hands in the air, then backs off.\",1\n6576,lsmdc1010_TITANIC-77746,6567,\"Someone follows someone toward the bow. Meanwhile, people\",Someone follows someone toward the bow.,\"Meanwhile, people\",gold,run off of the cottage.,write on a map.,are in holding water.,arrive on the upper deck.,3\n6577,lsmdc1010_TITANIC-77746,6535,Several full lifeboats are lowered to the water. Someone and other passengers,Several full lifeboats are lowered to the water.,Someone and other passengers,gold,\"hang off the train's canopy, which hover about his left.\",extend the horses belly.,get to their feet.,pop open the third - class gangway door and peer out along the ship.,3\n6578,lsmdc1010_TITANIC-77746,6554,\"On the boat deck, passengers swarm around the remaining lifeboats. Someone\",\"On the boat deck, passengers swarm around the remaining lifeboats.\",Someone,gold,\"lowers his gaze, then turns off his radio.\",pushes away a group of men.,thrusts the plane toward the sky.,spots them pinning someone back.,1\n6579,lsmdc1010_TITANIC-77746,6551,Someone rushes over and pulls on a wooden bench nailed to the floor. People,Someone rushes over and pulls on a wooden bench nailed to the floor.,People,gold,cower on the hood.,turn and rest uncomfortably on the floor.,help someone pull up the bench.,are doing exercise in a room.,2\n6580,lsmdc1010_TITANIC-77746,6553,They charge forward and ram the gate. They,They charge forward and ram the gate.,They,gold,stab their long sticks with their wands.,ram the gate again.,climb through to the speedboat.,hook them in the face.,1\n6581,lsmdc1010_TITANIC-77746,6541,One steward pulls out a small handgun and points it at the crowd now contained behind the closed gate. People,One steward pulls out a small handgun and points it at the crowd now contained behind the closed gate.,People,gold,sets him to his feet.,reach the bottom of the third - class stairs.,get out of the truck back it drawn and shoots three more bullets at them.,\"over traffic, inches of the braces, actions pierce two short as the chain comes in on a expensive new window.\",1\n6582,lsmdc1010_TITANIC-77746,6561,\"On the other side of the ship, people peer down as someone supervises the lowering of a lifeboat. People\",\"On the other side of the ship, people peer down as someone supervises the lowering of a lifeboat.\",People,gold,peer down the side of the ship.,stands on the deck as someone's jet flies off from the side.,emerge from a pool away into space.,climb back to the back.,0\n6583,lsmdc1010_TITANIC-77746,6549,Someone leads someone and his friends down another corridor and up a stairway to another locked gate. Someone,Someone leads someone and his friends down another corridor and up a stairway to another locked gate.,Someone,gold,grabs the gate and shakes it.,\"takes a deep breath, then view the canvas.\",points a gun at someone.,\"runs nearby, then jumps down.\",0\n6584,lsmdc1010_TITANIC-77746,6539,A woman and several men rush through the open gate. The stewards,A woman and several men rush through the open gate.,The stewards,gold,jump roping and leave someone.,file out of the vault.,file out of the building.,\"push back the men, punch them, and hit them with axe handles.\",3\n6585,lsmdc1010_TITANIC-77746,6579,\"Someone moves off through the crowd. Meanwhile, someone\",Someone moves off through the crowd.,\"Meanwhile, someone\",gold,shoots someone in the chest.,greets his soldiers and rotund men.,\"approaches someone, who stands beside the small boat, called a collapsible.\",peeps out of the closet.,2\n6586,lsmdc1010_TITANIC-77746,6578,\"In the crowd, someone turns to someone. Someone\",\"In the crowd, someone turns to someone.\",Someone,gold,\"swallows, and lowers his head to his lap.\",return to one of the actors.,moves off through the crowd.,is taken aback and waving to the audience.,2\n6587,lsmdc1010_TITANIC-77746,6581,\"Someone stares at the collapsible, then blinks. Someone\",\"Someone stares at the collapsible, then blinks.\",Someone,gold,turns and walks off.,strolls office and shuts the door.,\"looks at her, embarrassed and stifling her tears.\",faces his son with a wide brow.,0\n6588,lsmdc1010_TITANIC-77746,6540,\"The stewards push back the men, punch them, and hit them with axe handles. One steward\",\"The stewards push back the men, punch them, and hit them with axe handles.\",One steward,gold,aims the scope at another who whirls around and readies his guard.,enters the courtyard floor and an inn shirt drives it into the outlaws.,holds the device to the size of a wing and the armed men crane round.,pulls out a small handgun and points it at the crowd now contained behind the closed gate.,3\n6589,lsmdc1010_TITANIC-77746,6589,\"He starts to caress someone's hair, but she backs away from him. Someone\",\"He starts to caress someone's hair, but she backs away from him.\",Someone,gold,takes off his jacket.,looks slightly dazed as he picks up the receiver as someone flees from the car.,steps up to her.,looks up at her.,2\n6590,lsmdc1010_TITANIC-77746,6571,\"As he steps down, someone stops the mustached someone. People and the others\",\"As he steps down, someone stops the mustached someone.\",People and the others,gold,\"turn toward an older woman in spar, who stares expressionless.\",look up at someone.,run toward the bow.,are awkwardly enjoying the practice.,2\n6591,lsmdc1010_TITANIC-77746,6547,Someone leads them down another corridor. They,Someone leads them down another corridor.,They,gold,hold people in the huge ship.,run through the forest.,pass a mustached man flipping through a book and studying a sign on the wall.,pick up speed toward the roadside.,2\n6592,lsmdc1010_TITANIC-77746,6542,\"People reach the bottom of the third - class stairs. Atop the stairs, someone\",People reach the bottom of the third - class stairs.,\"Atop the stairs, someone\",gold,kneels beside someone and new someone.,bows to his comrade and propel their feet through the air.,grabs the headboard and races it away.,grips the gate and glares at the armed steward.,3\n6593,lsmdc1010_TITANIC-77746,6556,A man knocks a woman off the deck. He,A man knocks a woman off the deck.,He,gold,\"uses the hula hoop, then pushes back down.\",helps her onto a leather sofa.,grabs onto the side of the lifeboat and dangles high above.,throws the pole off and falls off.,2\n6594,lsmdc1010_TITANIC-77746,6560,\"Someone loads his revolver, while someone boards the lifeboat. On the other side of the ship, people\",\"Someone loads his revolver, while someone boards the lifeboat.\",\"On the other side of the ship, people\",gold,peer down as someone supervises the lowering of a lifeboat.,remain in the little waters as someone steps between them.,paddle people rough river.,shield themselves as spill fly toward the diner.,0\n6595,lsmdc1010_TITANIC-77746,6585,\"While someone turns away, someone slips into a seat on the collapsible. Someone\",\"While someone turns away, someone slips into a seat on the collapsible.\",Someone,gold,slumps onto the steps of the carriage and climbs through a gate.,fights the way in the police letters.,\"pulls back a lever, as he weaves his way through the winding air.\",\"faces the collapsible and finds himself staring at his mate, who gazes ahead.\",3\n6596,lsmdc1010_TITANIC-77746,6545,\"Someone closes the safe, locks it, and walks out. Elsewhere, someone and the others\",\"Someone closes the safe, locks it, and walks out.\",\"Elsewhere, someone and the others\",gold,run along a crowded corridor.,descend the grand staircase into a small stairway.,watch as someone finishes his descent.,step off the bridge of the sun school.,0\n6597,lsmdc1010_TITANIC-77746,6557,He grabs onto the side of the lifeboat and dangles high above. A sailor,He grabs onto the side of the lifeboat and dangles high above.,A sailor,gold,\"stops, turns over, and stumbles into the sky.\",pulls the woman on deck.,pulls a lever then shape near the side of the propeller.,hammers out of the rope.,1\n6598,lsmdc1010_TITANIC-77746,6574,\"Someone glances around, then turns to a sailor. Someone\",\"Someone glances around, then turns to a sailor.\",Someone,gold,fondly mouths someone's credit card.,\"crouches over to open the window in his hand, and brings back a roll of fluorescent tiles.\",someone works alone.,slips money into someone's pocket.,3\n6599,lsmdc1010_TITANIC-77746,6537,Two seamen pull the passengers back in and close the door. Someone and others,Two seamen pull the passengers back in and close the door.,Someone and others,gold,sit in the swimming sea.,stand at the locked gate atop the third - class stairwell.,look at it as they dissolve away.,watch through a window as someone bobs his head.,1\n6600,lsmdc1010_TITANIC-77746,6548,They pass a mustached man flipping through a book and studying a sign on the wall. Someone,They pass a mustached man flipping through a book and studying a sign on the wall.,Someone,gold,\"adjusts the handcuff, pulling the case back, and now everyone jumps into the air.\",\"catches a glimpse of an approaching base painting, cottage with a collection of framed drawings.\",leads someone and his friends down another corridor and up a stairway to another locked gate.,\"removes the pamphlet, opens someone's back, and puts it down.\",2\n6601,lsmdc1010_TITANIC-77746,6572,\"As the band resumes playing, people run past. Elsewhere, someone and several seamen\",\"As the band resumes playing, people run past.\",\"Elsewhere, someone and several seamen\",gold,keep up the party guests.,sit in their waiting room.,load a small boat.,sing their gaze as someone strides through the crowd.,2\n6602,lsmdc1010_TITANIC-77746,6544,\"Someone opens his jacket, revealing a handgun in a shoulder holster. Someone\",\"Someone opens his jacket, revealing a handgun in a shoulder holster.\",Someone,gold,\"closes the safe, locks it, and walks out.\",spots a run toward the stairwell and opens someone's coat.,opens a silver plastic container on a small vacuum.,takes off a pair of jackets.,0\n6603,lsmdc1010_TITANIC-77746,6570,\"Someone stands up on the railing and gazes toward the bow. As he steps down, someone\",Someone stands up on the railing and gazes toward the bow.,\"As he steps down, someone\",gold,turns to a jumper of bearded figures.,stops the mustached someone.,watches him pass a third level.,spins around and shoots downward.,1\n6604,lsmdc0030_The_Hustler-64971,15865,\"He uses the simpler, open hand bridge to support his cue. Someone\",\"He uses the simpler, open hand bridge to support his cue.\",Someone,gold,turns and watches someone weave in and out of someone.,kills the rockets with his smoke and smiles.,\"tries, but somewhat glimpses at the old man's reaction.\",\"enters, and watches him play.\",3\n6605,lsmdc0030_The_Hustler-64971,15863,Someone is about to knock on the door to someone's apartment. He,Someone is about to knock on the door to someone's apartment.,He,gold,\"hangs up, and someone drives in.\",is now front of it as he takes the cap off the carton.,stops for a moment to look at his hands.,throws it over his shoulder.,2\n6606,lsmdc0030_The_Hustler-64971,15864,\"He knocks on the door with his wrist, as he would if he still had them on. When she opens the door he\",\"He knocks on the door with his wrist, as he would if he still had them on.\",When she opens the door he,gold,sees the wounded man wearing jungle clothes nyc.,is too desperate to spot her.,holds them up boyishly before her face.,\"finds with the first, and shuffles out, leaving the telephone which is empty.\",2\n6607,anetv_4ACqWG_p1bI,13976,\"The first boy then comes back and continues playing the drums and the video continues to toggle back in forth between the two. Finally, the mic is removed and the boy\",The first boy then comes back and continues playing the drums and the video continues to toggle back in forth between the two.,\"Finally, the mic is removed and the boy\",gold,drops a mark to the ground.,walks directly to the camera and is sitting on his hat playing the guitar and starting to play off congas.,begins moving his head wildly as if he is a rock star and they both continue performing.,is shown leaving the camera wearing it.,2\n6608,anetv_4ACqWG_p1bI,8896,Another boy adjusts a microphone while the other begins playing the drums. The second boy,Another boy adjusts a microphone while the other begins playing the drums.,The second boy,gold,quickly rounds the knees for their opponent to let him bounce the ball off the ground.,\"pushes a bucket off stage, then strikes a match in an opposing shot.\",dances around and screams into the mic while the first continues to play drums.,stops playing the guitar and continues playing.,2\n6609,anetv_4ACqWG_p1bI,13975,A young Asian boy is sitting behind a trap - set smiling frantically in participation of his performance. Another toddler,A young Asian boy is sitting behind a trap - set smiling frantically in participation of his performance.,Another toddler,gold,is then shown having trouble taking off the microphone but is n't successful.,exits the playground and works on the kids again.,is shown interviewing and pulling the abdomen of the foreground.,helps with more and pans next their friend.,0\n6610,anetv_4ACqWG_p1bI,8895,A young boy is seen smiling to the camera while sitting behind a drum set. Another boy,A young boy is seen smiling to the camera while sitting behind a drum set.,Another boy,gold,adjusts a microphone while the other begins playing the drums.,is shown wandering around the ring while the boy is sliding seated.,plays the piano while spinning over and over.,speaks to the camera and attempts to stand rhythmically while a young man records him.,0\n6611,anetv_OBDq689jDDY,15259,A woman is exercising in a room. She,A woman is exercising in a room.,She,gold,puts shaving cream on her legs.,is shown playing the vacuum cleaner.,steps up and down off a mat.,is playing a harmonica.,2\n6612,anetv_OBDq689jDDY,19423,She kicks her legs back and fourth while still looking at the camera. She,She kicks her legs back and fourth while still looking at the camera.,She,gold,continues to kick her legs around.,lifts the weight up to her chin.,continues cutting off the board and standing around.,continues to speak on the phone.,0\n6613,anetv_OBDq689jDDY,19422,A woman is shown speaking to the camera and moves up and down on a beam. She,A woman is shown speaking to the camera and moves up and down on a beam.,She,gold,continues dancing on the mat and ends with her belly dancing.,kicks her legs back and fourth while still looking at the camera.,then continues riding around in chalk and pausing to speak to the camera.,kicks into the air and ends by showing a circus and moving in.,1\n6614,anetv_OBDq689jDDY,15260,She steps up and down off a mat. She,She steps up and down off a mat.,She,gold,stands on the line and stands upright.,\"throws herself onto someone's shoulders, then dives backward again and they go a few feet back.\",starts to walk past a band and runs up the stairs as the drum goes through the background in the wind.,starts lifting one leg up as she steps onto the mat.,3\n6615,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4830,\"They break through the platform and into a red plastic shoot. As they slide down, the helicopter\",They break through the platform and into a red plastic shoot.,\"As they slide down, the helicopter\",gold,gets into position and fires at it.,\"rattling the same handle, arm drops like a plastic shield.\",stops on the street.,lands in the shallow pool.,0\n6616,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4840,\"They run across an empty street, as a police cruiser whizzes by. On the chopper, someone\",\"They run across an empty street, as a police cruiser whizzes by.\",\"On the chopper, someone\",gold,takes out his phone and makes a call.,paces past a statue where a shapely blonde woman talks.,smears his palm from the man's.,jogs into a theater with audience members.,0\n6617,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4833,\"The pair emerge from the tube, and break through several more wooden platforms before landing in a large metal dumpster of cardboard and plastic wrapping. The chopper\",\"The pair emerge from the tube, and break through several more wooden platforms before landing in a large metal dumpster of cardboard and plastic wrapping.\",The chopper,gold,races down one of the large buildings in the center of the destroyed landscape.,holds position and hovers overhead.,closes the door and is inside to talk about the process.,gets out of control and turns the card from someone.,1\n6618,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4823,Someone spies scaffolding through a window across the way. They,Someone spies scaffolding through a window across the way.,They,gold,scramble to their feet and run through the room.,expression gaining on his shoulders and arms.,are staring at someone's feet a high reach.,landed on a city street under an outdoor sign.,0\n6619,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4812,\"As someone fires a few more bullets, father and son survey the scene. The bald man\",\"As someone fires a few more bullets, father and son survey the scene.\",The bald man,gold,wears a troubled frown.,points at the scrolls.,hits a yellowed wall.,runs up to him.,3\n6620,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4815,\"Inside the hotel, someone and someone jump over the bar and cross the hazy room. Someone\",\"Inside the hotel, someone and someone jump over the bar and cross the hazy room.\",Someone,gold,hands her phone to someone.,\"twirls herself around wide, then back back a somersault.\",twirls around on the floor behind him near a mat.,\"inspects the area, then jogs over to the window.\",3\n6621,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4819,\"Someone watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel. As it swiftly approaches them, someone\",Someone watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel.,\"As it swiftly approaches them, someone\",gold,signals to his pacing son.,notices captain clearing moss in the upper side of the ship.,drops his football in his hands as he approaches the student by the pool.,desperately punches someone's forehead.,0\n6622,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4804,\"The agent fires back, then drops the blonde man's body and runs to his father. Someone\",\"The agent fires back, then drops the blonde man's body and runs to his father.\",Someone,gold,\"stands nearby, barrels around in the debris.\",scoops up a machine gun as he follows.,is on the side of a cliff to worry knives.,catches his pool tub.,1\n6623,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4799,\"As someone turns to his thugs with a grin, someone continues sawing at his bond. Someone\",\"As someone turns to his thugs with a grin, someone continues sawing at his bond.\",Someone,gold,catches the tip of his wand and shakes it overhead.,takes a bite on bread and undoes it against his van.,pulls off his invisibility cloak and carries it to him.,\"cuts his hands free, as someone lunges at someone.\",3\n6624,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4811,\"Someone retreats from the ballroom, as someone and someone continue their barrage. They\",\"Someone retreats from the ballroom, as someone and someone continue their barrage.\",They,gold,\"pop up from behind the bar and shoot at the two remaining men, who go down in a storm of bullets.\",\"swallows, then swallows hard.\",squeals to their feet.,dangle from their weapons.,0\n6625,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4774,\"As someone pulls out the small bundle, someone drives into view. Someone\",\"As someone pulls out the small bundle, someone drives into view.\",Someone,gold,leans back into the rain.,eyes the ugly furnishings.,enters with a start.,pushes someone behind him.,3\n6626,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4808,They look up at stained glass skylights. The Americans,They look up at stained glass skylights.,The Americans,gold,\"reappear, as they take out the lighter and visible together with tin foil.\",get on their backs and fire up at them.,take under the water until they get to the bottom.,hold onto the railing while performing the same tricks.,1\n6627,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4821,They duck as the chopper bombards the ballroom with its heavy artillery. The men,They duck as the chopper bombards the ballroom with its heavy artillery.,The men,gold,stand at one of the drones and someone curtsies to them and glances over his head.,huddle behind the wall.,dive under a lamp stand.,trade shards of contented plates.,1\n6628,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4766,\"Keeping his weapon ready, someone presses his lips together and plants his feet. Someone\",\"Keeping his weapon ready, someone presses his lips together and plants his feet.\",Someone,gold,retrieves the remote and grabs the map.,kisses his forehead and kisses his cheek.,touches his lips beside it.,\"faces him distractedly, then nods.\",3\n6629,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4824,They scramble to their feet and run through the room. Machine gun fire,They scramble to their feet and run through the room.,Machine gun fire,gold,raises their hands and points to the floor.,\"whizzes by, narrowly missing them.\",\"dodges them, and punching.\",seems that cover a circular pool.,1\n6630,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4780,Someone signals to two men. The thugs,Someone signals to two men.,The thugs,gold,give him a big wave.,sit in the back.,grab someone with his trunk.,force the americans to their knees.,3\n6631,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4825,\"Machine gun fire whizzes by, narrowly missing them. The copter\",\"Machine gun fire whizzes by, narrowly missing them.\",The copter,gold,comes face to face.,pulls left to follow the fleeing men.,\"shifts, then glances back.\",fall past the car.,1\n6632,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4820,\"As it swiftly approaches them, someone signals to his pacing son. The heavily armed vessel\",\"As it swiftly approaches them, someone signals to his pacing son.\",The heavily armed vessel,gold,\"shake out a hand, and one marine lifts the casket.\",looms before the building.,rises with air force.,open up for a dumbfounded audience.,1\n6633,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4809,The Americans get on their backs and fire up at them. The shattered panes,The Americans get on their backs and fire up at them.,The shattered panes,gold,are closed with only effort.,are engulfed by fiery ash erupting fire.,\"are seen with wooden horns, chunks of feet are dotted with ornate spikes.\",\"send giant glass fragments raining down on the russians, who cower amid the dust and debris.\",3\n6634,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4839,The Americans walk past a limping woman. They,The Americans walk past a limping woman.,They,gold,see hundreds of baseball lying sprawled over the pond.,stands with the soil.,\"run across an empty street, as a police cruiser whizzes by.\",carry a stretcher onto an island.,2\n6635,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4816,\"Someone inspects the area, then jogs over to the window. He\",\"Someone inspects the area, then jogs over to the window.\",He,gold,watches the chopper lift off from the rooftop helipad below.,reaches out and places her box in the inspector's seat.,\"pans up back to someone, who leans against the wall, slightly bemused.\",climbs over the rail to find someone leaning against the car entrance.,0\n6636,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4789,Someone rests his hands on his knees and leans close to the Americans. He,Someone rests his hands on his knees and leans close to the Americans.,He,gold,beats them with his rifle.,watches as someone submerges of hair and shakes his head.,stoops up with a willow frown as he runs his board across the park.,swings upward then raises his arms.,0\n6637,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4836,\"Below, someone and someone get to their feet. Someone\",\"Below, someone and someone get to their feet.\",Someone,gold,holds his son's shoulder as they step into the street.,taps someone on the back with a web.,\"reaches to the bike's steering wheel causing someone to veer back, then plummet from the railing.\",slaps someone's shoulder with a meek smile as the massive fur of someone's hand peers down its nose.,0\n6638,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4837,Someone holds his son's shoulder as they step into the street. Dust and debris,Someone holds his son's shoulder as they step into the street.,Dust and debris,gold,falls from the ground.,fills the glass below.,drift down over police cars and frightened bystanders.,emerge from the trees.,2\n6639,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4841,\"On the chopper, someone takes out his phone and makes a call. Someone\",\"On the chopper, someone takes out his phone and makes a call.\",Someone,gold,spits out one phone.,sets the box aside and follows him.,walks at the head of a large crowd.,is nearest the door.,2\n6640,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4818,Someone topples a chair as he storms from the window. Someone,Someone topples a chair as he storms from the window.,Someone,gold,walks forward and sets a couple on the street.,gaze over his manuscript with a thoughtful stare.,drives someone behind someone.,watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel.,3\n6641,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4827,\"Someone and someone run side - by - side, and someone drops his gun as they take a flying leap out of the window. They\",\"Someone and someone run side - by - side, and someone drops his gun as they take a flying leap out of the window.\",They,gold,rip through green netting and crash - land on a wooden platform.,see someone as they go to go.,stand beside him on the back of his mountain.,rush out of the motel parking lot.,0\n6642,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4801,Someone shoots down two thugs with the knife. Someone,Someone shoots down two thugs with the knife.,Someone,gold,enters from behind her head.,looks at his ex.,pushes someone into a crystal chandelier.,drives on down the deserted path.,2\n6643,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4807,The Americans leap behind the bar. The remaining thugs,The Americans leap behind the bar.,The remaining thugs,gold,pelt it with bullets.,stands on their hands.,peer behind the vehicle and run over a wave.,burn at the circling professors.,0\n6644,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4777,\"Facing someone and the Americans, someone munches a carrot. Someone\",\"Facing someone and the Americans, someone munches a carrot.\",Someone,gold,looks round with his hat.,hands someone a sword.,gives a cool nod.,kisses him on the cheek.,2\n6645,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4790,\"He beats them with his rifle. The father and son crumple, but the thugs\",He beats them with his rifle.,\"The father and son crumple, but the thugs\",gold,peer out onto the coupe.,climb under the hood of the bus.,haul them back on to their knees.,have a great height and carry out their cards.,2\n6646,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4779,\"With a clenched jaw, someone faces someone who glares out at him from behind her father's shoulder. Someone\",\"With a clenched jaw, someone faces someone who glares out at him from behind her father's shoulder.\",Someone,gold,turns off the invisibility cloak.,signals to two men.,wears an impressed smile.,glances toward the window.,1\n6647,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4792,\"Meanwhile on a rooftop, a bald man escorts someone and someone to the military grade chopper. In the ballroom, someone\",\"Meanwhile on a rooftop, a bald man escorts someone and someone to the military grade chopper.\",\"In the ballroom, someone\",gold,stands facing the hourglass.,falls from someone's punches.,spots an arrow from the top and drops it on the ground.,attaches a glimpse of a boxed envelope in an empty wall.,1\n6648,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4793,\"In the ballroom, someone falls from someone's punches. Someone\",\"In the ballroom, someone falls from someone's punches.\",Someone,gold,kicks him hard in his side.,slams his glasses with petrol.,\"someone stands, someone and someone pose with columns and each take their seats.\",flees from the web which towers across the displays.,0\n6649,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4838,Dust and debris drift down over police cars and frightened bystanders. The Americans,Dust and debris drift down over police cars and frightened bystanders.,The Americans,gold,leaves ping - generated from unmarked windy smoke.,arrive and fall their way to the picnic table.,fixedly out from another car.,walk past a limping woman.,3\n6650,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4828,They rip through green netting and crash - land on a wooden platform. Someone,They rip through green netting and crash - land on a wooden platform.,Someone,gold,pulls out from the ceiling and lands perfectly on the edge of the roof.,\"are in a connected drill on the walls of an elevated bridge, including a school river and other lorries.\",gets on his feet and looks around.,is being dragged by a wall by a huge fiery body of a large eight - year - old someone.,2\n6651,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4806,Someone rises slightly from the floor and takes aim. The Americans,Someone rises slightly from the floor and takes aim.,The Americans,gold,leap behind the bar.,\"battle their own, which throw in their mugs as rain drag off their faces.\",catch the glimpse of still.,goes faster in the barricade of indifference.,0\n6652,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4800,\"Someone cuts his hands free, as someone lunges at someone. Someone\",\"Someone cuts his hands free, as someone lunges at someone.\",Someone,gold,shoots down two thugs with the knife.,\"tosses a dart at someone, who steals it with his right hand.\",\"shoots, then smiles to break back.\",hurls a ball onto the field to throw it.,0\n6653,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4805,Someone scoops up a machine gun as he follows. Someone,Someone scoops up a machine gun as he follows.,Someone,gold,lunges after her attacker.,\"runs through the garage, shining the keys.\",rises slightly from the floor and takes aim.,spins down a ramp and leans to the top of the boat.,2\n6654,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4791,\"Someone stares boldly and someone spits. Meanwhile on a rooftop, a bald man\",Someone stares boldly and someone spits.,\"Meanwhile on a rooftop, a bald man\",gold,hold someone's limp body to the shoulders behind her.,circles a small fumbling.,escorts someone and someone to the military grade chopper.,works someone's mohawk.,2\n6655,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4814,\"They get into the military helicopter. Inside the hotel, someone and someone\",They get into the military helicopter.,\"Inside the hotel, someone and someone\",gold,carry on their snow harnesses.,\"enter a narrow, hot armed stage.\",run down the hallway then jump off the ladder to the bed.,jump over the bar and cross the hazy room.,3\n6656,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4797,Someone sees someone's knife behind his back. Someone,Someone sees someone's knife behind his back.,Someone,gold,works to cut his bonds.,lurches out of the clearing.,gives someone a shocked smile.,pushes the guy forward.,0\n6657,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4786,\"Dancing over to the Americans, someone kicks someone's gun away. He\",\"Dancing over to the Americans, someone kicks someone's gun away.\",He,gold,\"fires at a red car, at the cobblestone park.\",\"climbs the grinds to the floor and kicks the passing gunman, keeping the sternly in his arms.\",shuffles over to someone's gun and sweeps it away as well.,finishes on the punch that is still attached to a gun.,2\n6658,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4831,\"As they slide down, the helicopter gets into position and fires at it. Someone and someone\",\"As they slide down, the helicopter gets into position and fires at it.\",Someone and someone,gold,watch as the attendant rolls beneath them.,dash across the paddy field and peer through the gap as someone rides close above.,deluminator a set of pairs of ladies on a lit stand with ribbons above their feet.,plummet through the shoot.,3\n6659,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4775,\"Someone pushes someone behind him. Wielding a rifle, someone\",Someone pushes someone behind him.,\"Wielding a rifle, someone\",gold,lowers the chopper onward to the transport truck.,turns on his heel and runs to the other car.,climbs into frame and twirls furtively around the rise.,beckons a team of armed thugs out to join him.,3\n6660,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4803,\"Someone stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield. The agent\",\"Someone stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield.\",The agent,gold,fills a silver wardrobe on the left.,\"fires back, then drops the blonde man's body and runs to his father.\",climbs out of the truck.,dashes off with the others.,1\n6661,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4795,His thugs pick up the men from the floor and set them back on their knees. Someone,His thugs pick up the men from the floor and set them back on their knees.,Someone,gold,spots a diadem crumbling on a roof's rim.,\"on his chest, someone puts his seat on top of the roof and pushes his weight onto his shoulders.\",primps his dark curly hair and chews gum.,puts down his soda.,2\n6662,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4768,\"Someone gives a skeptical nod. At a window, someone\",Someone gives a skeptical nod.,\"At a window, someone\",gold,is lit dancing with fine coat and a red jacket.,looks up at someone.,lifts the grated lid from a wooden radiator encasement.,pumps a command from his wand.,2\n6663,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4767,\"Someone faces him distractedly, then nods. Someone\",\"Someone faces him distractedly, then nods.\",Someone,gold,heads for the snitch.,walks past in binoculars.,checks his phone paper.,gives a skeptical nod.,3\n6664,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4802,Someone pushes someone into a crystal chandelier. Someone,Someone pushes someone into a crystal chandelier.,Someone,gold,steps from the edge of the window and kneels at the piano.,flies back into the sky.,\"stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield.\",glides to the center of the room and hugs someone whose.,2\n6665,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4787,The Russian gives a shrug. Someone,The Russian gives a shrug.,Someone,gold,faces the book with one hand extended.,lowers his smiling gaze.,lowers female's gaze on her.,continues as it soars.,1\n6666,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4783,\"As someone leaves with someone, someone faces someone and someone. He\",\"As someone leaves with someone, someone faces someone and someone.\",He,gold,relaxes his seat and heads over.,swallows a bite of carrot.,'s someone and picks him up.,puts the penguin in his back pocket.,1\n6667,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4794,\"Someone surreptitiously reaches for the knife in his boot, as someone delivers a knee to someone's face. His thugs\",\"Someone surreptitiously reaches for the knife in his boot, as someone delivers a knee to someone's face.\",His thugs,gold,\"emerge from the top, combs and wizards in its snout.\",tend into the german and security guards.,pick up the men from the floor and set them back on their knees.,gaze into the air as they struggle to clutch bags.,2\n6668,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4798,\"Gazing at his Dad, someone laughs too. As someone turns to his thugs with a grin, someone\",\"Gazing at his Dad, someone laughs too.\",\"As someone turns to his thugs with a grin, someone\",gold,takes off his costume.,holds his nose away.,exits him and hugs someone.,continues sawing at his bond.,3\n6669,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4813,The bald man runs up to him. They,The bald man runs up to him.,They,gold,get into the military helicopter.,run along the deck.,return to the elevator doors.,dealer then glares at someone and lowers his woeful gaze.,0\n6670,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4773,\"Gazing out, someone notices a military grade helicopter parked below. Someone\",\"Gazing out, someone notices a military grade helicopter parked below.\",Someone,gold,blinks at the older american.,nervously taps someone's cane.,approaches someone who smiles at someone and saunters away.,finds someone's car drop.,0\n6671,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4776,\"Someone and someone sidle back to someone. Nearby, someone\",Someone and someone sidle back to someone.,\"Nearby, someone\",gold,stares at someone's men helplessly.,plucks a whirlwind of rice from a goblin.,leads someone away in balmoral field.,spreads his legs as he goes.,0\n6672,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4810,\"The shattered panes send giant glass fragments raining down on the Russians, who cower amid the dust and debris. Someone\",\"The shattered panes send giant glass fragments raining down on the Russians, who cower amid the dust and debris.\",Someone,gold,remains nothing and looks for the kill.,faces a giant giant laying on the dusty stone walls.,falls flat on its side.,\"retreats from the ballroom, as someone and someone continue their barrage.\",3\n6673,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4822,The men huddle behind the wall. Someone,The men huddle behind the wall.,Someone,gold,spies scaffolding through a window across the way.,kicks someone in the groin.,smooths up the tiles and cuts them into pieces.,lifts the weight to his head and share a fighting smile.,0\n6674,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4834,The chopper holds position and hovers overhead. The chopper,The chopper holds position and hovers overhead.,The chopper,gold,\"zooms away from the ridge, revealing the embracing hustle.\",drives the plow then ducks into a corner.,makes a hard left turn.,nears the crane and he releases the falcon and then swims over the railing.,2\n6675,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4765,\"The young woman watches her father breathless. Keeping his weapon ready, someone\",The young woman watches her father breathless.,\"Keeping his weapon ready, someone\",gold,presses his lips together and plants his feet.,reads a projector in small staircase.,leaves the bathroom and makes someone call from the market.,\"glances at someone, then leaves the glass.\",0\n6676,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4826,\"The copter pulls left to follow the fleeing men. Someone and someone run side - by - side, and someone\",The copter pulls left to follow the fleeing men.,\"Someone and someone run side - by - side, and someone\",gold,\"pushed his back to the office, his chest bleeding.\",hurries down leading him to the hall.,drops his gun as they take a flying leap out of the window.,sticks his head in place.,2\n6677,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4771,\"Leaning over the encasement, someone reaches in up to his shoulder. His fingertips\",\"Leaning over the encasement, someone reaches in up to his shoulder.\",His fingertips,gold,\"hang down, under his gaze and resume playing on the suburban.\",graze her bedroom past.,brush a small parcel within.,\"caress each other, lays them down.\",2\n6678,anetv_uPqp30C6MDE,5004,A small child is seen sitting in a swing. The child,A small child is seen sitting in a swing.,The child,gold,spins around on a pinata on the other side at the end and the foot turns to to each side.,walks down a set of monkey bars on the ground.,begins moving back and fourth while looking to the camera.,leads him down a long slide as another boy approaches to help him slide down the slide.,2\n6679,anetv_uPqp30C6MDE,5005,The child begins moving back and fourth while looking to the camera. The child,The child begins moving back and fourth while looking to the camera.,The child,gold,slides across the monkey bars from the playground.,continues moving back and fourth.,pauses in the end.,speaks to the camera while continuing to talk.,1\n6680,anetv_uPqp30C6MDE,14455,A young baby is outside in a swing dressed in a long sleeve furry one piece. The baby,A young baby is outside in a swing dressed in a long sleeve furry one piece.,The baby,gold,brings back the handle until the edge of the first slide read the top the day and then missed.,\"finally pulls the large dog forward in front, one of the clips pulling its horn back and forth.\",begins to slow down and smiles at the person standing in front of them as they begin to film the scenery behind them.,is playing with curlers while the adult lady begins to solve it.,2\n6681,lsmdc3048_LITTLE_FOCKERS-23105,158,Someone tauntingly shrugs his hands apart. Then they,Someone tauntingly shrugs his hands apart.,Then they,gold,go their separate ways.,escort her into an elevator.,return to the original room.,\"gaze at each other, mystified.\",0\n6682,lsmdc3048_LITTLE_FOCKERS-23105,157,Someone gives a mock scowl. Someone,Someone gives a mock scowl.,Someone,gold,eats a set of spaghetti in an constructed club.,stares at the team's score below.,tauntingly shrugs his hands apart.,laugh at a senator.,2\n6683,anetv_Jsx38_s3Mnc,19092,Man is walking into a room and stands in font of a table. the man,Man is walking into a room and stands in font of a table.,the man,gold,take out the laces of the shoes and start polishing them with a little sponge and shoe varnish.,holds the barbel up with his hands and begins polishing the white flooring.,is talking about the cleaning company while you are still painting hardwood ground.,clips the beer on the ice while the man continues drinking beer next to the sink.,0\n6684,anetv_Jsx38_s3Mnc,10558,The man then begins mixing the items and polishing a pair of shoes. The man,The man then begins mixing the items and polishing a pair of shoes.,The man,gold,shows off the proper picture of him and the boy who is done fixing the cue.,rubs the shoes all down and ends by tying them and presenting them to the camera.,continues to cut the piece with the different peel he all lined up.,rubs the gel conga with his hand to demonstrate how he does it.,1\n6685,anetv_Jsx38_s3Mnc,10557,A man is seen walking into frame in front of various objects laid out on a table. The man then,A man is seen walking into frame in front of various objects laid out on a table.,The man then,gold,begins cutting the grass and showing a bow string.,cuts candy adhesive along and throws it down.,puts a candy cream on the ground and tosses it across the table.,begins mixing the items and polishing a pair of shoes.,3\n6686,anetv_Jsx38_s3Mnc,19093,The man take out the laces of the shoes and start polishing them with a little sponge and shoe varnish. the man,The man take out the laces of the shoes and start polishing them with a little sponge and shoe varnish.,the man,gold,sits in the mirror his shoes washing for showcase strip movements.,put the laces again in the shoes and keep standing in the room.,cut all the top of the bag a few times and then throw the shoes.,returns there for the other man alone.,1\n6687,anetv_I4mFeQwqjnE,16591,People in black play dodge ball on a court. A guy,People in black play dodge ball on a court.,A guy,gold,takes a ball using the cue ball to hit a goal.,touches the belly at the bottom of the floor.,dives to the ground to prevent ball from hitting him.,is doing his ball in a field.,2\n6688,anetv_PKEw32TJRWs,3992,The man falls of the boat and its doing wakeboard again. man,The man falls of the boat and its doing wakeboard again.,man,gold,is jumping off the slack line.,is water surfing on a water surfer.,swings the clothes and jump in.,is with one foot holding the rope.,3\n6689,anetv_PKEw32TJRWs,19218,An old black and white video is shown before cutting to several clips of boats being controlled and driven through the water. A man,An old black and white video is shown before cutting to several clips of boats being controlled and driven through the water.,A man,gold,gets up from a bike and slides across the bank of the boat.,is water skiing very fast.,is seen talking to the camera leading on skis and pulling his hood across to the side.,\"gets out of the water and, removing off a pair of skis, is pulled off of the boat.\",1\n6690,anetv_PKEw32TJRWs,19219,A man is water skiing very fast. He,A man is water skiing very fast.,He,gold,is seen water skiing for a long period of time.,\"are shown on ways, while in a row going over the river.\",are playing again standing.,swims very tight.,0\n6691,anetv_RULNhPrXnfA,1834,A man is shown standing in front of a blue background as many harmonicas are shown and he starts playing them. He,A man is shown standing in front of a blue background as many harmonicas are shown and he starts playing them.,He,gold,\"continues as he talks, showing off his mind and throws them on to the man playing the sand very lightly.\",continues doing quick jumps on the machine.,is then shown speaking into the camera and going into detail with regards to the products features.,rides a horse into a shed and jumps into it.,2\n6692,anetv_RULNhPrXnfA,1836,He shows off how many he has in his coat and continues talking. He,He shows off how many he has in his coat and continues talking.,He,gold,picks up a jack and plugs the needle into the wheel.,is then shown playing another harmonica as he gives instruction on it.,pauses to speak to his hairdresser and speak for a while.,\"sprays it, then shows how it is used to give him the haircut.\",1\n6693,anetv_RULNhPrXnfA,1837,He is then shown playing another harmonica as he gives instruction on it. He,He is then shown playing another harmonica as he gives instruction on it.,He,gold,picks up his way up and begins to talk on the tool again.,\"continues playing and longer looking back to her camera, then starts playing a set of drums.\",speaks some more and shows his harmonica again as the video goes to an end title screen that reads howcast original.,\"then places the drums together, and then talks to the camera again.\",2\n6694,anetv_RULNhPrXnfA,1835,He is then shown speaking into the camera and going into detail with regards to the products features. He,He is then shown speaking into the camera and going into detail with regards to the products features.,He,gold,\"is in some looking of the camera that says no inviting in, not know what that is he is doing.\",ends showing some change of various ingredients.,shakes the arm of the man.,shows off how many he has in his coat and continues talking.,3\n6695,anetv_iPk4GeFFcTQ,12544,An athletic man is seen running down a long track and throwing a javelin off into the distance with others measuring his throw. The man walks away and high fives a man in the crowd while his score is shown and another,An athletic man is seen running down a long track and throwing a javelin off into the distance with others measuring his throw.,The man walks away and high fives a man in the crowd while his score is shown and another,gold,sprinter takes a shot in slow motion to run.,throw him into the air.,fails before attempting to solve the giant by the hammer.,steps up to the side.,3\n6696,lsmdc3040_JULIE_AND_JULIA-18080,11747,He puts it on as he strides toward the stairs. He,He puts it on as he strides toward the stairs.,He,gold,\"grabs his coat from a hook, picks up his bag, and hurries downstairs.\",is holding a sign for support.,\"turns towards someone, his face solemn and uncomfortable.\",\"proceeds to a water tie on a well - familiar landing, toppling stairs.\",0\n6697,lsmdc3040_JULIE_AND_JULIA-18080,11749,\"Back in Paris, someone carefully wraps a pot lid in newspaper and packs it into a box. Facing him, someone\",\"Back in Paris, someone carefully wraps a pot lid in newspaper and packs it into a box.\",\"Facing him, someone\",gold,stares over at him with the brown specs in his hand.,gulps down the bottle.,reads a card with a note.,fidgets with her cardigan as she gazes forlornly around the half - packed kitchen.,3\n6698,lsmdc3040_JULIE_AND_JULIA-18080,11748,\"He grabs his coat from a hook, picks up his bag, and hurries downstairs. Back in Paris, someone\",\"He grabs his coat from a hook, picks up his bag, and hurries downstairs.\",\"Back in Paris, someone\",gold,puts the bug down on the table beside someone.,strides up from a worn bar and looks at the letter beneath shades of green.,sets his bottle on a cubby pad on a picnic deck nearby.,carefully wraps a pot lid in newspaper and packs it into a box.,3\n6699,anetv_JZz2O0y0ufY,7320,A man bends down and picks up a piece of wood and balance it onto a standing log. The man then,A man bends down and picks up a piece of wood and balance it onto a standing log.,The man then,gold,dismounts and begins to break the wood on another ladder.,backs up and raises his axe above his head.,\"puts it around his shoulders, then continues to mow more grass.\",chops the wood as he is down.,1\n6700,anetv_JZz2O0y0ufY,2956,He then holds up an ax. Finally he,He then holds up an ax.,Finally he,gold,swings it back down.,yanks his chain off.,takes and leap into the pit.,takes out the hammer and brightens.,0\n6701,anetv_JZz2O0y0ufY,2955,A man is seen laying out a piece of wood. He then,A man is seen laying out a piece of wood.,He then,gold,begins to cut wax pieces out of the pumpkin.,holds up an ax.,finishes moving paper and lays down on the floor.,hits a piece of wood with a sander.,1\n6702,anetv_JZz2O0y0ufY,7321,The man then backs up and raises his axe above his head. The video is slowed down and the man brings the axe down with force and he,The man then backs up and raises his axe above his head.,The video is slowed down and the man brings the axe down with force and he,gold,is dragged along the path towards the backyard.,cuts the piece of wood in half.,flips his jacket again.,pitchfork off the ground clearing the hedge away from a gate.,1\n6703,lsmdc3030_GROWN_UPS-14056,10952,\"Smiling bemusedly, he follows the out another door and down a hallway. He\",\"Smiling bemusedly, he follows the out another door and down a hallway.\",He,gold,sits in a wheelchair.,peeks around a corner.,picks it up and knocks the comedian up slightly.,stops and lifts his own gun.,1\n6704,anetv_fT7dpRY0DTo,9556,The man applies grout to the gaps between the tiles. The man,The man applies grout to the gaps between the tiles.,The man,gold,finishes welding the side of the class.,smooths cement on the tile and continues on his story.,completes the last bagpipe.,measures and cuts a tile for installation in the shower.,3\n6705,anetv_fT7dpRY0DTo,9554,A man plasters and installs tiles on the wall. The man,A man plasters and installs tiles on the wall.,The man,gold,uses the tiling to replace his inner gate.,removes sweat from the wall.,talks to the camera.,puts a tire on the bike.,2\n6706,anetv_fT7dpRY0DTo,9553,The camera pans over the walls of a shower stall. A man,The camera pans over the walls of a shower stall.,A man,gold,plasters and installs tiles on the wall.,\"appears and then goes around the chair, smeared it with a towel, and place it.\",swings all over the floor and starts trimming the hedge.,enters filling the chamber outside.,0\n6707,anetv_fT7dpRY0DTo,9557,The man measures and cuts a tile for installation in the shower. The man,The man measures and cuts a tile for installation in the shower.,The man,gold,draws more and places tiles.,installs the soap dish.,dipped the leaves in the pan.,continues washing and brushing the short purple hair.,1\n6708,anetv_fT7dpRY0DTo,9558,The man installs the soap dish. Scrolling text,The man installs the soap dish.,Scrolling text,gold,comes out a screen.,is shown on a blue screen.,appears on screen on a black screen that should appear outside a location.,appears on screen as a man sitting on a wheelchair throws his other bare feet over the skateboard.,1\n6709,anetv_fT7dpRY0DTo,9555,The man talks to the camera. The man,The man talks to the camera.,The man,gold,applies grout to the gaps between the tiles.,holds up a second broom to demonstrate wedges techniques.,walks out and then clip the shaver with a man.,peels some from the leaves.,0\n6710,anetv_aNE5ZWD5E34,2868,\"A man sprays sunscreen on his back, and then he sprays sunscreen to the back of a woman. After, a man sprays sunscreen on his arm and back, other people\",\"A man sprays sunscreen on his back, and then he sprays sunscreen to the back of a woman.\",\"After, a man sprays sunscreen on his arm and back, other people\",gold,sit as the two models wear contact lenses.,spray sunscreen on their legs.,join the group on wipes.,get out and rinse the dog.,1\n6711,anetv_aNE5ZWD5E34,2866,\"Two reporters talk in a tv set. Girls talk in a beach, then girls\",Two reporters talk in a tv set.,\"Girls talk in a beach, then girls\",gold,\"spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products.\",smokes a fishing line and joke around each other.,stand in the center of an class's front room while the girl explains the fitness exercises.,are shown preparing to walk around the water on skis.,0\n6712,anetv_aNE5ZWD5E34,7655,Several shots are shown of people putting sunscreen on as well a close ups of sunscreen. Another woman,Several shots are shown of people putting sunscreen on as well a close ups of sunscreen.,Another woman,gold,leads to a woman sitting at a table using a eating tube.,speaks to the camera while others continue to put sun screen on each other.,is shown speaking as well as water skiing on the beach and starts to dance.,is seen riding a boat and leads into her riding a boat on a wakeboard.,1\n6713,anetv_aNE5ZWD5E34,2867,\"Girls talk in a beach, then girls spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products. A man sprays sunscreen on his back, and then he\",\"Girls talk in a beach, then girls spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products.\",\"A man sprays sunscreen on his back, and then he\",gold,rinses his face from a toothbrush.,rinses a towel and combs the hair.,starts washing dishes in a sink.,sprays sunscreen to the back of a woman.,3\n6714,anetv_aNE5ZWD5E34,7654,Two people are seen hosting a news segment that leads into people speaking to the camera. Several shots,Two people are seen hosting a news segment that leads into people speaking to the camera.,Several shots,gold,are shown of people putting sunscreen on as well a close ups of sunscreen.,are shown of people practicing shears while several others watch on the side.,are shown of people riding around on the fence.,are then shown of people playing a game of progress.,0\n6715,lsmdc0023_THE_BUTTERFLY_EFFECT-59440,9952,Someone opens the window and checks out his Psych project: a small maze has several flatworms at one end and a bowl of cornflakes at the other. Cricket,Someone opens the window and checks out his Psych project: a small maze has several flatworms at one end and a bowl of cornflakes at the other.,Cricket,gold,\"sit on hammers a wood desk, and a framed picture of the portly man with a test shirt brings them to him.\",puts on her someone as someone watches the worms.,\"is open, falling pages and painters.\",are wrapped through the seven string.,1\n6716,anetv_1f_EQl4C700,5743,The women enjoy a bite of the dish together. The host,The women enjoy a bite of the dish together.,The host,gold,gets up from a bench and watches him carry brown leaves in the road.,pours a cup of tea to enjoy.,adds pasta on a cooking chicken.,instructs the staff to sit and enjoy a meal.,1\n6717,anetv_1f_EQl4C700,5739,Flour is added to the bowl and everything is blended together. Eggs,Flour is added to the bowl and everything is blended together.,Eggs,gold,\"roll to the side, cutting and ready.\",are added to the mixture and blended in with a blender.,\"are in the bowl, the mixture is added to the bowl.\",are cooked in large bowl in top pots.,1\n6718,anetv_1f_EQl4C700,5740,Eggs are added to the mixture and blended in with a blender. The woman,Eggs are added to the mixture and blended in with a blender.,The woman,gold,fills the cake with four slices of lemon.,garnishes the mix with a measuring spoon.,pours the mixture in a cup and mixes it with the mixer.,adds a liquid extracts as well as additional powdered flour to the dish.,3\n6719,anetv_1f_EQl4C700,5742,The host pours the ingredients into a pan then cooks them in an oven. The women,The host pours the ingredients into a pan then cooks them in an oven.,The women,gold,bake plates with a meal throughout.,enjoy a bite of the dish together.,puts the cookies on the cake they are over ready to eat.,adds some more cooked food for the spoonful.,1\n6720,anetv_1f_EQl4C700,5738,Different people enjoy having a cup of tea together. A woman,Different people enjoy having a cup of tea together.,A woman,gold,\"puts a arm around her father sitting up, pacing behind her.\",is seen singing a baton.,comes in and whispers a liquid to him.,blends the holds up a greased pan then adds a yellow butter to a bowl.,3\n6721,anetv_1f_EQl4C700,5741,The woman adds cubed fruit to the mixture and stirs it with a spatula. The host,The woman adds cubed fruit to the mixture and stirs it with a spatula.,The host,gold,starts rubbing the surface of the pasta on the dish.,\"bakes the pasta, and cuts half the pot and places it to the pan.\",shows all the ingredients needed to make a drink of water.,pours the ingredients into a pan then cooks them in an oven.,3\n6722,anetv_xSiT1pgUEm8,13024,They use the oars to sail themselves down the rapids. They,They use the oars to sail themselves down the rapids.,They,gold,extend their right hand to the camera.,have started the oars move on.,are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids.,are playing on the beach again.,2\n6723,anetv_xSiT1pgUEm8,13026,As they sail through they come across another group of rafters in the same rapids. They,As they sail through they come across another group of rafters in the same rapids.,They,gold,are clawing in the inflatable together.,continue their journey through the rough water of the rapids.,watch from the rough waters as they continue riding down the river.,are paddling through the water with the people of the water.,1\n6724,anetv_xSiT1pgUEm8,13025,They are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids. As they sail through they,They are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids.,As they sail through they,gold,fall into wave with water of snowflakes of many formations towards them.,help him jump off the bridge of the water.,\"wave, everyone pit with joy.\",come across another group of rafters in the same rapids.,3\n6725,anetv_xSiT1pgUEm8,13023,They are all dressed in red gears and yellow helmets. They,They are all dressed in red gears and yellow helmets.,They,gold,are putting bikes into a line on the bicycle.,put off their goggles.,use the oars to sail themselves down the rapids.,takes the paddle out of their hands and cheers on.,2\n6726,anetv_Q3FkUH9kImU,16995,A man is standing in a room talking. He,A man is standing in a room talking.,He,gold,is showing a shuffleboard.,is using an iron on a pair of skis.,is using a boxing tool in a room.,is holding a ball in his hair.,0\n6727,anetv_Q3FkUH9kImU,16997,He walks to the end of the shuffleboard and another man is on the other side. He,He walks to the end of the shuffleboard and another man is on the other side.,He,gold,repeatedly throws the stick along the track after the man.,gets off the instrument and sits down before the horse.,jumps and talks to the camera with various videos.,begins playing by throwing one down the board.,3\n6728,anetv_Q3FkUH9kImU,16996,He is showing a shuffleboard. He walks to the end of the shuffleboard and another man,He is showing a shuffleboard.,He walks to the end of the shuffleboard and another man,gold,sits on the exercise while talking to the camera.,is on the other side.,comes on to talk.,yells as he grasps with loud papers.,1\n6729,anetv_6NQl2Vcf0P0,14775,The man then hog ties the cow. The man gets back on his horse and we,The man then hog ties the cow.,The man gets back on his horse and we,gold,see his delight carving the side of the road with a pole.,see that name of the mountain range.,see the real product on the horse.,pan up and see the scoreboard.,3\n6730,anetv_6NQl2Vcf0P0,14774,The man lassos a cow and throws it to the ground. the man then,The man lassos a cow and throws it to the ground.,the man then,gold,jumps onto the horse and runs the calf.,lays the dog down on the ground.,dismounts and then dismounts.,hog ties the cow.,3\n6731,anetv_6NQl2Vcf0P0,14772,A man in a rodeo owing is performing a stunt. A man,A man in a rodeo owing is performing a stunt.,A man,gold,is showing off his skateboard and talking to the camera.,washes his arm with an ax.,joins the discus athlete.,is riding a horse in a rodeo ring.,3\n6732,anetv_6NQl2Vcf0P0,14773,A man is riding a horse in a rodeo ring. the man,A man is riding a horse in a rodeo ring.,the man,gold,is standing walking back and forth bouncing up and down.,in a green suit mounts a horse then gets up.,lassos a cow and throws it to the ground.,is getting out of the horse in slow motion.,2\n6733,lsmdc1010_TITANIC-77081,18369,\"Brunette girl stands on a railing as her father grips her from behind. Sitting a few feet away, someone\",Brunette girl stands on a railing as her father grips her from behind.,\"Sitting a few feet away, someone\",gold,whips her hair above his eye and hugs her friend.,sketches them with a stick of charcoal.,kisses her body and butt.,moves foot to touch knees.,1\n6734,lsmdc1010_TITANIC-77081,18370,\"Sitting a few feet away, someone sketches them with a stick of charcoal. Crewmen\",\"Sitting a few feet away, someone sketches them with a stick of charcoal.\",Crewmen,gold,\"gazes admiringly at someone, who points downward and stares at him, then resumes his stunned gaze.\",\", some nude figures walk from the library to an fire fountain.\",\"in his dark space, he follows a middle - aged man with long dark hair.\",walk dogs on leashes.,3\n6735,lsmdc1010_TITANIC-77081,18378,She peeks towards him from the corner of her eyes. Someone,She peeks towards him from the corner of her eyes.,Someone,gold,turns away and walks back towards the store.,stares as someone finds an unfinished stone.,looks up as she works at someone's feet.,waves his hand in front of someone's face.,3\n6736,lsmdc1010_TITANIC-77081,18377,She glances in his direction then looks away. She,She glances in his direction then looks away.,She,gold,\"sits down on the couch, reading.\",peeks towards him from the corner of her eyes.,\"steps closer, closing her eyes and gives a brief nod.\",\"continues through the restaurant, then turning.\",1\n6737,lsmdc1010_TITANIC-77081,18374,Someone stepped to a railing on an upper deck behind someone. Someone,Someone stepped to a railing on an upper deck behind someone.,Someone,gold,turns and glances at her then grins at someone.,slams someone onto the table and stumbles.,peers up a corridor and a piece of wood.,\"gets up and flees, then turns to someone.\",0\n6738,lsmdc1010_TITANIC-77081,18376,Someone stares up at someone. She,Someone stares up at someone.,She,gold,releases his smiling buddy.,\"studies another envelope someone's phone, which is now covered with text.\",\"looks at the colonel, then starts dancing.\",glances in his direction then looks away.,3\n6739,lsmdc1010_TITANIC-77081,18373,Someone gazes across the ship. Someone,Someone gazes across the ship.,Someone,gold,turns to his visitors as the secretary closes office door.,\"reaches out, releasing propellers of the body.\",\"leaps out of the water tower, into the building.\",stepped to a railing on an upper deck behind someone.,3\n6740,lsmdc1010_TITANIC-77081,18380,\"They exchange words, and someone strides off. Someone\",\"They exchange words, and someone strides off.\",Someone,gold,\"checks the computer file, making sure the books are not in their comical sacks.\",\"steps down the steep of the hilltop, towards the red autumn tree.\",rolls his eyes and trails after her.,pokes a hole at her throat.,2\n6741,lsmdc1010_TITANIC-77081,18375,Someone turns and glances at her then grins at someone. Someone,Someone turns and glances at her then grins at someone.,Someone,gold,stares up at someone.,walks off after someone.,watches someone's colleague take a deep breath.,catches up to someone.,0\n6742,lsmdc1010_TITANIC-77081,18371,Crewmen walk dogs on leashes. The brown - haired Irishman,Crewmen walk dogs on leashes.,The brown - haired Irishman,gold,settles coins into the urn.,extends his hand to someone.,walks to her phone patch as buckbeak welds the worker's trunk.,watches the company and their families.,1\n6743,lsmdc1010_TITANIC-77081,18368,Someone stands and leaves the table. Brunette girl,Someone stands and leaves the table.,Brunette girl,gold,gulps up the cake glass.,holds a leash as the mutant bumps a thug.,stands on a railing as her father grips her from behind.,\"faces someone, who's brushing a tasseled disks on her father's hand.\",2\n6744,lsmdc3050_MR_POPPERS_PENGUINS-24219,42,\"At a nearby table, he pulls a chair out for someone. Someone\",\"At a nearby table, he pulls a chair out for someone.\",Someone,gold,presents someone's handcuffs.,eyes the corner table.,just suppresses a chuckle and waves.,gazes at her with a cautious stare.,1\n6745,lsmdc3050_MR_POPPERS_PENGUINS-24219,41,\"Lovey exchanges a look with Captain. At a nearby table, he\",Lovey exchanges a look with Captain.,\"At a nearby table, he\",gold,prepares bottles to his potatoes.,\"winks at someone, who sits behind his desk.\",picks up two leaves.,pulls a chair out for someone.,3\n6746,lsmdc3050_MR_POPPERS_PENGUINS-24219,43,Someone eyes the corner table. He,Someone eyes the corner table.,He,gold,\"forces a smile, then shoots the corner table another glance.\",tears off the front of him and he falls backward.,\"his grandma's open, he studies it.\",\"'s someone and his friends smile as someone holds up the glass, and directs it on to someone.\",0\n6747,lsmdc3050_MR_POPPERS_PENGUINS-24219,44,\"He forces a smile, then shoots the corner table another glance. Someone looks at the table again, and someone\",\"He forces a smile, then shoots the corner table another glance.\",\"Someone looks at the table again, and someone\",gold,grabs the gun as a cop.,stares deep into his eyes.,beats the muscular girlish dancer up by his hind legs.,follows his tense gaze.,3\n6748,anetv_p-vfyM7ew04,3371,A man has various bottles of a brand of ski waxes. He,A man has various bottles of a brand of ski waxes.,He,gold,takes each bottle and spreads it along the ski.,is shown preparing to ski at a skate square.,starts using a different tool as he completes for skiing.,walks indoors and do a long jump into a sand pit.,0\n6749,anetv_p-vfyM7ew04,6781,A person is seen rubbing a piece of soap along a board and moving his hands across to feel the texture. He,A person is seen rubbing a piece of soap along a board and moving his hands across to feel the texture.,He,gold,uses more tools on the ski to sharpen the blades using his hands.,backflips all along the floor as well as putting the makeup on a man.,ends jumping the floor and spinning far around.,dips with to a mat to the person's eyes while still looking to the camera.,0\n6750,anetv_HCraAphAW1A,6246,A person in a black t - shirt clips the nails on the front paws of a brown and tan speckled cat. A brown and tan speckled cat,A person in a black t - shirt clips the nails on the front paws of a brown and tan speckled cat.,A brown and tan speckled cat,gold,comes on the cat for a little bit before drawn to the cat.,is lying on a white cushion when a person walks in holding a pair of red handled nail clippers.,is seen sitting on a small table in front of a table with a wooden container sharpener.,looks like relieved the green cat on nails.,1\n6751,anetv_HCraAphAW1A,6247,The person cuts the forepaws of the cat as the cat watches on. The person,The person cuts the forepaws of the cat as the cat watches on.,The person,gold,finishes cutting the cat's nails and pets the cats head and shows the clippers close to the camera before walking away.,continues rubbing their lower nails as the cat strokes the cat's nails.,picks up the cat and continues to pull it on her hind legs.,\"pulls the cat's claws in circles, gently spins the cat, resumes marching.\",0\n6752,anetv_yuxoNmlNcc8,17864,A flag is shown waving where it is stuck in the ground. A group of people,A flag is shown waving where it is stuck in the ground.,A group of people,gold,\"are standing outside the building, some eating.\",is riding around on the hiding court.,emerge from a snow dune area.,are sitting down between one of them.,0\n6753,anetv_gU81ZXdYh7o,1313,A boy in an orange shirt is standing in a room. He,A boy in an orange shirt is standing in a room.,He,gold,begins aiming the dart on the floor.,looks with the bottle and starts to laugh.,starts punching a punching bag.,does a flip and bounce.,2\n6754,anetv_gU81ZXdYh7o,1314,He starts punching a punching bag. The punching bag,He starts punching a punching bag.,The punching bag,gold,is sitting on the floor.,is over the bed.,moves in the air.,tries to turn around to see what is in the machine.,2\n6755,lsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7523,\"As the innkeeper leads him, a serving boy comes out with tankards full of ale. Someone\",\"As the innkeeper leads him, a serving boy comes out with tankards full of ale.\",Someone,gold,\"leans forward, guides the levers to a right position.\",takes one and drinks from it.,lies and draws a handful of fat from one ear.,'s in a kitchen.,1\n6756,lsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7528,\"The curricle continues on its way, someone perched on the back. Now, he\",\"The curricle continues on its way, someone perched on the back.\",\"Now, he\",gold,stares sadly at the miserable owl.,is standing in the parlor as people enter.,jogs into a pizza line.,slides the cage gap and stops.,1\n6757,lsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7527,\"She quickly scampers off across the lawn. The curricle continues on its way, someone\",She quickly scampers off across the lawn.,\"The curricle continues on its way, someone\",gold,moving over her left shoulder to backward.,perched on the back.,climbing up the ladder in barge fighting.,\"steps backward, frowning and seeing his teammates like everyone.\",1\n6758,lsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7526,She spies a two - wheeled curricle approaching through the trees. She quickly,She spies a two - wheeled curricle approaching through the trees.,She quickly,gold,scampers off across the lawn.,twists someone's hair and does so.,pauses and opens a door with a slight now.,waggles a grassy glance up at us.,0\n6759,anetv_MiTIi_QYt2k,11494,A person is then seen holding a rag and wiping down the bench. More ingredients,A person is then seen holding a rag and wiping down the bench.,More ingredients,gold,are seen sitting in the sink and transitions into a bowl of soapy water.,are shown then being shown when speaking to the camera.,are shown as well as speaking to the camera with shots of people working around table.,are mixed afterwards that leads into more wiping down with the rag.,3\n6760,anetv_MiTIi_QYt2k,11493,A close up of a wooden bench is seen followed by a person mixing ingredients together. A person,A close up of a wooden bench is seen followed by a person mixing ingredients together.,A person,gold,pushes a breeze block and hammers it to the side while talking to the camera.,is then seen holding a rag and wiping down the bench.,pours several ingredients into the bowl.,mixes ingredients into a pan and pours leaves into the water.,1\n6761,anetv_LgoMRWkBDkQ,12499,A man takes out the ice over the windows of a car. A person,A man takes out the ice over the windows of a car.,A person,gold,stand watching a man takes out ice on a car.,grabs a fishing pole.,is seen walking onto a sandy sidewalk alongside a woman talking while the camera captures him from several angles.,takes a beer down from a pipe.,0\n6762,anetv_a9ItMklOTyE,13741,Then on a field there is men playing a game throwing the ball. Some coaches,Then on a field there is men playing a game throwing the ball.,Some coaches,gold,are walking around with hats to keep the sun out of their eyes.,are playing hurling the field and their coaches and other coaches are watching on the side because he has a problem by his coach.,\"put, with another coach on is trying to score more time with the goal.\",chasing him with who is watching him while also in a multicolored outfit.,0\n6763,anetv_a9ItMklOTyE,13740,It looks like this is an arabic language that is being written or something. Then on a field there,It looks like this is an arabic language that is being written or something.,Then on a field there,gold,'s a website in it and a saxophone.,is no place there.,is a black patrol in front of the camera.,is men playing a game throwing the ball.,3\n6764,anetv_a9ItMklOTyE,13742,\"Some coaches are walking around with hats to keep the sun out of their eyes. The game looks pretty intense, one man\",Some coaches are walking around with hats to keep the sun out of their eyes.,\"The game looks pretty intense, one man\",gold,skiing back and fourth.,wearing orange shorts is popping the ball out of the field and walks back to piling ties.,who had a date.,puts all of his might into one of the throws he make.,3\n6765,anetv_hJKX5ZulTgI,3946,We see a black hair drying spinning on the screen. The woman,We see a black hair drying spinning on the screen.,The woman,gold,\"is getting her hair styled in the background by another woman, while text covers the screen with instructions.\",vacuum her hooves with a leaf blower.,in black shorts is sitting on a sidewalk in front of a girl's face.,removes the cloth then points to a towel.,0\n6766,anetv_hJKX5ZulTgI,3947,\"The woman is getting her hair styled in the background by another woman, while text covers the screen with instructions. The woman brushes and finalizes the style, and the client\",\"The woman is getting her hair styled in the background by another woman, while text covers the screen with instructions.\",\"The woman brushes and finalizes the style, and the client\",gold,continues to speak to the camera and put powder in his hair.,has a huge happy smile.,moves sexy - style scissors.,has some scoop of chemical.,1\n6767,anetv_hJKX5ZulTgI,3945,\"A woman spins around, showing off her hair style. We\",\"A woman spins around, showing off her hair style.\",We,gold,\", the woman stands to face a blurred style of bleached hair and performs with the mustache.\",see a black hair drying spinning on the screen.,smile to the camera.,hooks oil over them.,1\n6768,anetv_xsdrqauYhJs,8094,\"After, the two continue to stir the contents in the bowl and eating the mix and placing them on a pan. Once the cookies are in the oven, the two girls\",\"After, the two continue to stir the contents in the bowl and eating the mix and placing them on a pan.\",\"Once the cookies are in the oven, the two girls\",gold,pour the ingredients into the dough and put them in the oven.,sit in front of the oven and watch the cookies bake.,pour all ingredients on the baking bowl to pour them out.,put a pan into the oven and start put them in the oven.,1\n6769,anetv_xsdrqauYhJs,20053,The two girls remove the baking sheet from the oven. The two girls,The two girls remove the baking sheet from the oven.,The two girls,gold,eat ice cream.,step into an aerobics.,smile at each other.,sit with a plate of baked cookies between them.,3\n6770,anetv_xsdrqauYhJs,20050,The two shapes the mix from the bowl into lumps and places them on a baking sheet. The two,The two shapes the mix from the bowl into lumps and places them on a baking sheet.,The two,gold,ballerinas rise together on a model together.,continue raking water in a bowl then leaves with each girl then adds more ice cream.,place the baking sheet in an oven.,screens move to make the drink.,2\n6771,anetv_xsdrqauYhJs,20048,The two collaborate to mix the bag and some other ingredients in a large bowl. The first girl,The two collaborate to mix the bag and some other ingredients in a large bowl.,The first girl,gold,is shows the pasta in the kitchen.,is seen eating the potatoes as well.,is stirred and poured on stove with a lemon on it.,gets something from the refrigerator.,3\n6772,anetv_xsdrqauYhJs,20052,The two girls sit in front of the oven licking their mixing spoons. The two girls,The two girls sit in front of the oven licking their mixing spoons.,The two girls,gold,remove the baking sheet from the oven.,begin eating the ice cream cone.,are at the table don the cookies together.,tap the other side to cook.,0\n6773,anetv_xsdrqauYhJs,20049,The first girl gets something from the refrigerator. The two,The first girl gets something from the refrigerator.,The two,gold,woman are in their places together.,are shown mixing the bowl in turn.,continue to play as they talk.,rips two of her glasses.,1\n6774,anetv_xsdrqauYhJs,20051,The two girls hug each other. The two girls,The two girls hug each other.,The two girls,gold,rush past the desk.,sit in front of the oven licking their mixing spoons.,throw throwing the ball to the other's legs.,flips and dance in unison as they dance.,1\n6775,anetv_xsdrqauYhJs,8093,\"They then open a box of brownies, dumps the contents of in a bowl and get an egg out of the fridge. After, the two\",\"They then open a box of brownies, dumps the contents of in a bowl and get an egg out of the fridge.\",\"After, the two\",gold,continue to stir the contents in the bowl and eating the mix and placing them on a pan.,do the dishes and add a list of ingredients on a piece on the floor.,shake another hand in the pot and mix the ingredients into a bowl.,\"eat a cookie and eat it, then another little boy serves drinks from a pot and the sink.\",0\n6776,anetv_gqK_jApRT5E,3172,A large group of people are seen standing around and dipping brushes into paint. People,A large group of people are seen standing around and dipping brushes into paint.,People,gold,begin painting the fence with scissors while the camera captures their movements.,are shown of rock paper and then women hitting a large large bucket.,use the brush to follow the same process on the first shots of a cleaner.,are then seen painting a fence all around a yard.,3\n6777,anetv_gqK_jApRT5E,3173,People are then seen painting a fence all around a yard. The people,People are then seen painting a fence all around a yard.,The people,gold,continue painting and helping one another and speaking with each other.,continue playing together while one talks to the camera with another.,break dancing while the camera pans around.,move back and fourth on the bar while the camera captures their movements.,0\n6778,anetv_gqK_jApRT5E,19097,\"A group of people of various ages come together to paint a wooden picket fence white, interspersed with still images of the fence painting event. A group of people\",\"A group of people of various ages come together to paint a wooden picket fence white, interspersed with still images of the fence painting event.\",A group of people,gold,are engaged in a game of pong as they hit the ball to each other.,paint a wooden fence white outside of a house.,are still standing in the middle of the courtyard from the point of light that are just building inside the sand house.,practice a martial arts routine that is surrounded by words on screen followed by a group of men wearing fencing outfits.,1\n6779,anetv_-Jp86pFKlsw,1784,There are three dogs in the yard. The dogs,There are three dogs in the yard.,The dogs,gold,are standing on a rug and blowing the leaves.,are getting groomed to push their feet off their porch.,are playing with a frisbee.,are shown getting excited and frustrated as they go.,2\n6780,anetv_-Jp86pFKlsw,1783,A woman in a purple shirt is standing in a yard. There,A woman in a purple shirt is standing in a yard.,There,gold,is on the camera while a young girl leans on the playground on a diving board.,are three dogs in the yard.,are a game of soccer in an yellow court.,is inside a elevator using batons.,1\n6781,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4175,Someone pushes to the front. Someone,Someone pushes to the front.,Someone,gold,stretches out his hand.,sits on his hands ledge on the balcony.,studies the house and takes a seat and pulls herself out of the book.,drags his wheelchair up onto the shoulders of a man.,0\n6782,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4184,\"Someone relaxes, enjoying the sensation. A huge smile crosses his face and he\",\"Someone relaxes, enjoying the sensation.\",A huge smile crosses his face and he,gold,walks off.,\"takes a couple of whiskey from a flask, then puts them a smoldering coin.\",spreads his arms wide.,steps away from us.,2\n6783,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4177,Someone smacks the beast's hindquarters. It,Someone smacks the beast's hindquarters.,It,gold,raises its huge wings and takes off.,crashes into a courtyard.,\"'s head doubles, it drops off victim and lands to the field.\",\"someone's nostrils, the little boy sighs and takes a seat stubbornly them.\",0\n6784,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4180,\"The four - legged creature, half - horse, half - eagle, rises above the trees. In the distance, someone\",\"The four - legged creature, half - horse, half - eagle, rises above the trees.\",\"In the distance, someone\",gold,sees a hurrying jump up and down.,sets on her legs and turns in her seat to see this point of view.,\"can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher.\",stands back from someone.,2\n6785,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4183,\"The silvery sun filters down through the storm clouds turning the waters of a vast lake below them to a steely gray. Clinging to the creature's neck, someone\",The silvery sun filters down through the storm clouds turning the waters of a vast lake below them to a steely gray.,\"Clinging to the creature's neck, someone\",gold,reaches into his pocket and pulls out a second wad of mail.,drags richard parker down for his attack and under the canvas track.,calmly reaches a ladder.,\"sees his reflection in the water as buckbeak skims low over the lake, one huge claw just touching the surface.\",3\n6786,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4182,They sail between the towers and turrets of Hogwarts School and soar above the craggy hillside. The silvery sun,They sail between the towers and turrets of Hogwarts School and soar above the craggy hillside.,The silvery sun,gold,shines down the valley between a 21 farm building and the german district.,\"shines on the stone walls of a building in the midst of rugged, dark.\",filters down through the storm clouds turning the waters of a vast lake below them to a steely gray.,is now tilted around the unicorn.,2\n6787,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4174,Someone gives someone a push. Someone,Someone gives someone a push.,Someone,gold,reaches back and snatches him in the air.,enters the hangar and halts staring at his list.,grabs his arm and reaches his upper platform.,\"moves forward, nervously.\",3\n6788,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4185,\"At last, someone calls them back. The hippogriff\",\"At last, someone calls them back.\",The hippogriff,gold,\"soars down through the treetops, flaps its wings as a brake and lands in a clearing.\",runs off of the school.,listens to their receptionist.,\"passes along an inverted round bulk - arranged, a raised area for the other third.\",0\n6789,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4179,\"Someone hangs on desperately to Buckbeak's feathery neck. The four - legged creature, half - horse, half - eagle,\",Someone hangs on desperately to Buckbeak's feathery neck.,\"The four - legged creature, half - horse, half - eagle,\",gold,\"leaps off someone's body, camouflage bounds behind it.\",rises above the trees.,stands and moves toward it.,\"dismounts, sliding halfway down the hall.\",1\n6790,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4176,Someone stretches out his hand. Someone,Someone stretches out his hand.,Someone,gold,looks over the bar at someone.,\"looks down at someone, transfixed.\",clutches someone's hand.,'s right arm!,2\n6791,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4178,It raises its huge wings and takes off. Someone,It raises its huge wings and takes off.,Someone,gold,steps away from the runway and runs through it.,hangs on desperately to buckbeak's feathery neck.,gets chase and runs to the house.,spreads his wings toward the hazy sky.,1\n6792,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4181,\"In the distance, someone can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher. They\",\"In the distance, someone can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher.\",They,gold,sail between the towers and turrets of hogwarts school and soar above the craggy hillside.,\"hang their ropes with the tree above, moving all around the shade lastly back to the others.\",sight of manhattan slid into its hillside mountains.,rushes and speeds along one of the train limbs by a chain link fence as it splits across the roof.,0\n6793,anetv_wDlbcTFI90o,857,The video is a tutorial about installing deck tiles. There,The video is a tutorial about installing deck tiles.,There,gold,legs and feet and talking to the camera followed by a different man in a hammock shirt and a tux walled his angles.,are instructions on how to dry the tan goggles they get.,'s a contractor working on a deck.,\", the man takes out showers and describes it to find, resuming, then she uses a wooden collection work that have assembled a\",2\n6794,anetv_wDlbcTFI90o,858,He begins installing the interlocking wooden tiles on a concrete deck surface. He,He begins installing the interlocking wooden tiles on a concrete deck surface.,He,gold,is using the sweeping motions and proceeds a foam rug.,covers the entire deck with the wooden tiles to evenly cover the surface area.,is made the wall until the metal.,puts the green tire on to lay it on.,1\n6795,lsmdc3001_21_JUMP_STREET-585,8401,\"Getting up, he aims his gun at a departing biker with a topknot braid. Puckering his lips squeamishly, He\",\"Getting up, he aims his gun at a departing biker with a topknot braid.\",\"Puckering his lips squeamishly, He\",gold,throws the gun instead.,marches in to the thug.,gives someone a friendly smile.,yanks someone into a small hug.,0\n6796,lsmdc3001_21_JUMP_STREET-585,8405,Now a slideshow of snapshots holds the attention of sentimental prom guests. Someone and someone,Now a slideshow of snapshots holds the attention of sentimental prom guests.,Someone and someone,gold,start through the crowd.,take off their cloaks.,arrive at the exhibition table.,duck at a dining table.,0\n6797,lsmdc3001_21_JUMP_STREET-585,8420,The cops leave their car passing a charred corpse. They,The cops leave their car passing a charred corpse.,They,gold,aim their guns at the corrupt coach.,head for a door and hustles forward.,look up at the swirling animal.,bang into a doodle by the armored vehicle.,0\n6798,lsmdc3001_21_JUMP_STREET-585,8422,\"As he drags her off, someone pleads. The coach fires at someone but someone\",\"As he drags her off, someone pleads.\",The coach fires at someone but someone,gold,fastens the strap hoisted from his abdomen.,hauls her to her feet.,dives between them taking the hits.,looks at the police pickup.,2\n6799,lsmdc3001_21_JUMP_STREET-585,8414,The bikers black limo follows and the cops white limo brings up the rear. Someone,The bikers black limo follows and the cops white limo brings up the rear.,Someone,gold,shoots at his pursuers from the silver limo.,leaps on the chopper's vehicle and glides toward the end of the lane.,\"dodges the wheel and rides into a van, keeping him at the edge of the road.\",\"lowers his wide, damp tranquil whiskey.\",0\n6800,lsmdc3001_21_JUMP_STREET-585,8403,\"As he takes aim at someone, someone rises from the floor. He\",\"As he takes aim at someone, someone rises from the floor.\",He,gold,shoots the biker multiple times in the chest.,taps his case with his wand.,moves to the desk and flips the drawings up onto his shoulders.,grabs a swarm of mechanical limbs.,0\n6801,lsmdc3001_21_JUMP_STREET-585,8400,\"Behind someone, someone climbs over the couch. He\",\"Behind someone, someone climbs over the couch.\",He,gold,pulls the door closed.,scoops up the glass.,falls clumsily out of view.,grabs a massage chair.,2\n6802,lsmdc3001_21_JUMP_STREET-585,8398,\"Now, someone peeks out and someone fires. Now, someone\",\"Now, someone peeks out and someone fires.\",\"Now, someone\",gold,enters at a side door on the scaffold.,notices the money bag gone and someone leaving.,uses the phone on his father.,helps with his pajamas.,1\n6803,lsmdc3001_21_JUMP_STREET-585,8423,\"The coach fires at someone but someone dives between them taking the hits. Shoulder bleeding, someone\",The coach fires at someone but someone dives between them taking the hits.,\"Shoulder bleeding, someone\",gold,reveals the other shot mashed into his bullet proof vest.,punched into the table.,shoves out by the foreground son covering him.,pins his opponent to the ground.,0\n6804,lsmdc3001_21_JUMP_STREET-585,8416,Someone stands in the sunroof and shoots. Someone,Someone stands in the sunroof and shoots.,Someone,gold,beats an inmate who pushes his way out.,fires at him and the silver limo.,pats his back and straightens her.,catches up to a man.,1\n6805,lsmdc3001_21_JUMP_STREET-585,8407,\"A photo of someone and someone, aka someone and someone, Pops up as the two cops reach the dancefloor. Someone\",\"A photo of someone and someone, aka someone and someone, Pops up as the two cops reach the dancefloor.\",Someone,gold,come out at the back of the car and get the pants started.,bends down to spin and interacts with her performs several tricks.,snaps pages and faces the house's window.,\"notices, then dashes with his partner into the hotel kitchen.\",3\n6806,lsmdc3001_21_JUMP_STREET-585,8421,\"As someone draws, someone pulls his trigger. He\",\"As someone draws, someone pulls his trigger.\",He,gold,\"strokes his forehead, then wraps the scarf around his neck.\",peers between his legs.,holds up a small stuffed duck.,uses someone as a human shield.,3\n6807,lsmdc3001_21_JUMP_STREET-585,8410,Outside they see someone speed off in a silver stretch limo. She,Outside they see someone speed off in a silver stretch limo.,She,gold,wriggles through the open market without there in the forest.,follows his flashing board and flips overlooking the groups.,'s in back with someone.,flies back toward cathedral.,2\n6808,lsmdc3001_21_JUMP_STREET-585,8425,Someone fires hitting someone in the groin. Someone,Someone fires hitting someone in the groin.,Someone,gold,find the alien hidden in shadow.,joins him in making the arrest.,rests his hands on her shoulder.,splashes to his back.,1\n6809,lsmdc3001_21_JUMP_STREET-585,8415,\"In the white limo, someone shoots the champagne bottle in her grip. Someone\",\"In the white limo, someone shoots the champagne bottle in her grip.\",Someone,gold,guides someone's pony - groom away and gives his daughter a bouquet of flowers.,stands in the sunroof and shoots.,comes down the aisle.,arrives to the right and hurries to her open door.,1\n6810,lsmdc3001_21_JUMP_STREET-585,8408,\"Someone notices, then dashes with his partner into the hotel kitchen. They\",\"Someone notices, then dashes with his partner into the hotel kitchen.\",They,gold,arrive at the dining area where someone stands with someone in a room.,sprint across the deserted room.,bend down to hold vast bags of carrots.,come to pose and enjoy his performance.,1\n6811,lsmdc3001_21_JUMP_STREET-585,8424,Someone eyes someone and steadies his aim. Someone,Someone eyes someone and steadies his aim.,Someone,gold,\"stands in the middle of the chamber, obstacles desperation at his bullets.\",stab them and hits someone's shoulder as he deflects her hold.,watches but raises his wand.,remembers being gun - shy in the park.,3\n6812,lsmdc3001_21_JUMP_STREET-585,8399,\"Now, someone notices the money bag gone and someone leaving. In slow motion, someone\",\"Now, someone notices the money bag gone and someone leaving.\",\"In slow motion, someone\",gold,watches with a frown.,steps out of his carriage.,see an old and quick flashback on the same panel for business.,rises and leaps over the couch.,3\n6813,lsmdc3001_21_JUMP_STREET-585,8406,\"Someone, someone and the swarthy biker follow. A photo of someone and someone, aka someone and someone,\",\"Someone, someone and the swarthy biker follow.\",\"A photo of someone and someone, aka someone and someone,\",gold,\"leads someone through the small waterfall, falling faster towards the water's feet.\",pops up as the two cops reach the dancefloor.,runs all the way to someone.,get out of their car.,1\n6814,lsmdc3001_21_JUMP_STREET-585,8409,They sprint across the deserted room. Outside they,They sprint across the deserted room.,Outside they,gold,\"run along a busy street, passing a row of people in a boxing surge.\",go to the stairwell where the alien works.,search some wennerstrom axes.,see someone speed off in a silver stretch limo.,3\n6815,lsmdc3001_21_JUMP_STREET-585,8402,\"It hits the base of the biker's neck and he turns. As he takes aim at someone, someone\",It hits the base of the biker's neck and he turns.,\"As he takes aim at someone, someone\",gold,aims a pistol at the dead soldier.,jumps out of ammunition.,pulls off his cigarette and checks his jaw.,rises from the floor.,3\n6816,lsmdc3001_21_JUMP_STREET-585,8418,\"He stands in the sunroof and makes a perfect quarterback pass. Spiraling, the bottle\",He stands in the sunroof and makes a perfect quarterback pass.,\"Spiraling, the bottle\",gold,drops through someone's sunroof.,scans the tiled floor to the front of the street.,is carried away by coaches.,tracks repeatedly on the right brick wall.,0\n6817,lsmdc3001_21_JUMP_STREET-585,8413,\"As someone makes a hard right in his limo, someone lops over. The bikers black limo follows and the cops white limo\",\"As someone makes a hard right in his limo, someone lops over.\",The bikers black limo follows and the cops white limo,gold,is carried down the road.,stops by the alley.,brings up the rear.,leaps out onto the bridge.,2\n6818,lsmdc3001_21_JUMP_STREET-585,8419,\"As the white limo halts, someone gets out of the stalled silver one and grabs someone by the arm. The cops\",\"As the white limo halts, someone gets out of the stalled silver one and grabs someone by the arm.\",The cops,gold,lift out their metal gate and see kids on their tubes.,rush to a bus stop and escape as it rattles a staircase after the crowd.,gather uneasily by the fleeing ships stop.,leave their car passing a charred corpse.,3\n6819,anetv_4At1Vd-0lWE,5957,A man and woman are inside an indoor court. They,A man and woman are inside an indoor court.,They,gold,continue moving his feet back and forth.,are engaged in a game of beach soccer.,are shown practicing ballet moves.,are engaged in a game of racquetball.,3\n6820,anetv_4At1Vd-0lWE,5958,They are engaged in a game of racquetball. They,They are engaged in a game of racquetball.,They,gold,drink from a walking stick and swings it into a net.,use a cement to cut the tile.,games of fight one by one of the players and the team looks at the ball around which are people commenting on the fans.,hit the ball back and forth against the wall.,3\n6821,anetv_4At1Vd-0lWE,2657,A man in a woman are in a room with three white walls and a glass wall behind them playing racket wall ball. The two,A man in a woman are in a room with three white walls and a glass wall behind them playing racket wall ball.,The two,gold,individuals then pause a board using a tennis pin and knock against the ice.,men throw a man down the street and throw all the pins around.,continue to play and take turns getting to the ball making it hit the wall.,smashes an ruler on a stepper.,2\n6822,lsmdc0049_Hannah_and_her_sisters-69377,15517,Several cars pass as someone joyfully runs. Suddenly he,Several cars pass as someone joyfully runs.,Suddenly he,gold,swings out destroying the car in front of the house.,jumps off his horse and falls onto the snow.,\"stops, his hand to his mouth, reflecting.\",stops to someone.,2\n6823,lsmdc0049_Hannah_and_her_sisters-69377,15516,\"He runs swirling down the street, clapping his hands, happy with relief. Several cars\",\"He runs swirling down the street, clapping his hands, happy with relief.\",Several cars,gold,walk by behind him.,walk under the open door.,pass as someone joyfully runs.,show as he throws another in the air.,2\n6824,lsmdc0049_Hannah_and_her_sisters-69377,15519,\"Someone sits in a chair in front of a bookshelf. Someone, standing behind his desk, his back to the camera, his coat still on,\",Someone sits in a chair in front of a bookshelf.,\"Someone, standing behind his desk, his back to the camera, his coat still on,\",gold,\"puts the envelope out and sets it down, and mocks the call.\",is tossed on his glass.,\"observes the offscreen change again, indicating by what he looks quickly.\",looks out at the manhattan skyline.,3\n6825,lsmdc0049_Hannah_and_her_sisters-69377,15515,\"Once again, someone is seen leaving the building, but this time he bounds down the steps, jumping for joy. He\",\"Once again, someone is seen leaving the building, but this time he bounds down the steps, jumping for joy.\",He,gold,\"comes out of the performance, jumps over to climb off the back beam, and start around.\",\"makes several calls to it down the track back into the tank and halts to reload, going into someone's room.\",\"runs swirling down the street, clapping his hands, happy with relief.\",glances around as the rest of the group gathers around him and in together some more.,2\n6826,lsmdc0049_Hannah_and_her_sisters-69377,15518,\"Suddenly he stops, his hand to his mouth, reflecting. Someone\",\"Suddenly he stops, his hand to his mouth, reflecting.\",Someone,gold,sits in a chair in front of a bookshelf.,takes its arm out of the mob and walks towards them.,\"picks up his briefcase, hearing an answer.\",drops the ax on the ground and creeps towards him.,0\n6827,anetv_IqRwR1a9ia0,14196,A man wearing a construction hard hat applies plaster to a wall using a hand held flat edge. The man,A man wearing a construction hard hat applies plaster to a wall using a hand held flat edge.,The man,gold,continues welding a piece of metal using a torch blowing back and forth.,performs several martial arts moves in the middle of a circle and held for sport in the circle.,is polishing the white wall between the wall.,pauses to explain his procedure.,3\n6828,anetv_IqRwR1a9ia0,14197,The man pauses to explain his procedure. A Company name and slogan,The man pauses to explain his procedure.,A Company name and slogan,gold,is cut with a string.,overlaid with a back capoeira is overlaid.,are seen in white text.,are displayed in the beach.,2\n6829,anetv_c1Gby2EHBzs,11370,A man is seen holding a stick in his hands and speaking to the camera. The man,A man is seen holding a stick in his hands and speaking to the camera.,The man,gold,picks up a small ball and begins running around the field before ending cheering to people in the end.,rubs it all over his face while not moving his hands up.,bends down and lays the dirt back on the ground.,attempts several times to hit the ball followed by him picking it up and hitting it off into the distance.,3\n6830,anetv_h1bdAd1cXSw,14325,A young child is seen walking to the end of a diving board and looking off into the camera. The boy then dives into the water and the camera,A young child is seen walking to the end of a diving board and looking off into the camera.,The boy then dives into the water and the camera,gold,zooms into two shots of two men on their board.,captures her as she dives from a diving board.,captures him moving from underwater.,zooms back to his arrival at a swimmer.,2\n6831,lsmdc0006_Clerks-48812,9544,The hockey players fill the convenience store. Sanford,The hockey players fill the convenience store.,Sanford,gold,skates up and skids to a halt.,follows other kids into a million messing.,\"begs in a way, the boy continues to watch her with a smile.\",raft is moored at a fountain.,0\n6832,lsmdc0006_Clerks-48812,9542,Tape is rolled around the top of a stick. An orange ball,Tape is rolled around the top of a stick.,An orange ball,gold,is shown on a table pressing into the snow.,is rolled up against the wall and sparks.,catapults out of the gym.,is slapped back and forth by a blade.,3\n6833,lsmdc0006_Clerks-48812,9541,Someone shakes his head in frustration and picks up the phone again. Someone,Someone shakes his head in frustration and picks up the phone again.,Someone,gold,makes her way past us to find chickens hanging out from things.,rolls his eyes to the ceiling.,gazes down at him.,faces the portly man.,1\n6834,lsmdc0016_O_Brother_Where_Art_Thou-55362,15097,Someone waves a fistful of money at him. A big shambling man of about thirty,Someone waves a fistful of money at him.,A big shambling man of about thirty,gold,unveils someone the singer handsome with a neat mustache.,has followed him out of the car.,\"comes in next to someone, his face broken.\",is knocked through a floor.,1\n6835,lsmdc0016_O_Brother_Where_Art_Thou-55362,15096,A sixty - year - old man in enormous seersucker pants held up by suspenders and the outward pressure of a blooming belly is getting out of the first car. Someone,A sixty - year - old man in enormous seersucker pants held up by suspenders and the outward pressure of a blooming belly is getting out of the first car.,Someone,gold,looks at him and finds the newspaper sleeping on his back.,\"sways to the sidelines, searching for the hell.\",waves a fistful of money at him.,sits down around his limbs.,2\n6836,anetv_CteuM2BUmHo,2359,The man removes concrete from his trowel. The man,The man removes concrete from his trowel.,The man,gold,wipes the table away with a cloth.,uses his hand to remove concrete.,holds a blue shovel and uses a interior bag.,uses his metal pedal and finishes the tile.,1\n6837,anetv_CteuM2BUmHo,2358,We then see a man on discs smoothing a concrete floor. The man,We then see a man on discs smoothing a concrete floor.,The man,gold,starts peeing a floor with a vacuum.,glides forward and cuts a part through a wall of an office.,removes concrete from his trowel.,talks on the plaster and scrapes plaster to the ceiling.,2\n6838,anetv_CteuM2BUmHo,2360,The man uses his hand to remove concrete. We then,The man uses his hand to remove concrete.,We then,gold,see soldiers plank vent and polish.,see the man lifts tire and take off his skis and brings it over.,see the ending credits.,\"see shots of a man in his car, handing the camera to his dog, and wraps himself up on the shoes.\",2\n6839,anetv_ZEChBNpLCyU,2051,A man is seen speaking to the camera and begins laying out tarp next to a tree. The man,A man is seen speaking to the camera and begins laying out tarp next to a tree.,The man,gold,shows off the finished product and shows it off.,cuts the tarp and begins putting mulch all around the tree.,puts decorations on the tree and pulls them away towards the camera.,demonstrates equipment to weld through the wood while the camera captures his movements.,1\n6840,anetv_g_bb4RSu6TQ,11910,He uses his arms to hold up his entire body. He,He uses his arms to hold up his entire body.,He,gold,\"tosses the ball over the wall, who throws it in pitch.\",did a few somersaults before it goes to catch after him but his hands fly up on the bar.,stays in that position for two seconds.,\"continues skateboarding, whips the web in, and catches him by the elbow.\",2\n6841,anetv_g_bb4RSu6TQ,40,A gymnast balances on a parallel bar. The man,A gymnast balances on a parallel bar.,The man,gold,flips the baton around and then does handstands.,flips and spins with his hands in the air.,spreads his legs while balancing on the parallel bar.,lowers his weights and flips several times.,2\n6842,anetv_g_bb4RSu6TQ,11909,A gymnast holds his position on top of a beam. He,A gymnast holds his position on top of a beam.,He,gold,\"dismounts, and a gymnast perform karate moves.\",uses his arms to hold up his entire body.,gets back as he jumps into a sand pit.,\"flips a few times, then circles the adjacent bars and does the splits.\",1\n6843,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94651,4793,\"Aunt Petunia is watching television. About to be sick, someone\",Aunt Petunia is watching television.,\"About to be sick, someone\",gold,pours another piece of the latest.,rushes into the kitchen where the strings are driven.,points weakly at someone.,watches a film determinedly across the street.,2\n6844,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94651,4794,\"About to be sick, someone points weakly at someone. An owl\",\"About to be sick, someone points weakly at someone.\",An owl,gold,hits the ceiling and falls in a flurry of feathers.,\"lies on the side of the tank, wearing a swirl of white fire shells.\",\"stands behind the altar, watching its riders.\",stands on the side of the house.,0\n6845,anetv_CBW_uJJpmZY,2264,They start with two jump ropes. They,They start with two jump ropes.,They,gold,begins streaming over the surface with varying motions.,stop at a diamond field.,switch jumpers a few times.,do a handstand for a performance on a landing.,2\n6846,anetv_CBW_uJJpmZY,2263,A group of people take part in a jump roping competition. They,A group of people take part in a jump roping competition.,They,gold,start with two jump ropes.,skates and performs a long jump in the air.,move all around on bikes.,do a high jump.,0\n6847,anetv_CBW_uJJpmZY,12196,\"The girl in the middle is holding the rope up and as soon as she drops the rope, they begin their very detailed and skilled routine that includes a lot of jumping, flips, and rotation of the players holding the ropes as they all take turns holding the rope and jumping. They\",\"The girl in the middle is holding the rope up and as soon as she drops the rope, they begin their very detailed and skilled routine that includes a lot of jumping, flips, and rotation of the players holding the ropes as they all take turns holding the rope and jumping.\",They,gold,continue climbing and stepping when a guy climbs up back to the camera.,drop the rope and end their routine with their hands thrown up in the air and hugging one another.,lay the carpet all around the concrete.,begin back to the balance.,1\n6848,anetv_KTIzccovgeg,4451,A lake is seen with the view of a city skyline across the way. A group of walkers,A lake is seen with the view of a city skyline across the way.,A group of walkers,gold,are in a river in a pavilion.,are huddled together in a desert.,falls to the ground.,walk along the sidewalk near the lake.,3\n6849,anetv_KTIzccovgeg,4452,A group of walkers walk along the sidewalk near the lake. A man,A group of walkers walk along the sidewalk near the lake.,A man,gold,plays in the shallow waters of the lake.,from the street is being carried by the dog.,is holding a cat in front of the house.,uses a snow blower on a sidewalk area.,3\n6850,anetv_KTIzccovgeg,4453,A man uses a snow blower on a sidewalk area. People,A man uses a snow blower on a sidewalk area.,People,gold,are pouring the snow down a car.,are running on the sidewalk.,are in the back with the car.,use snow shovels to clear the sidewalk.,3\n6851,anetv_KTIzccovgeg,4454,People use snow shovels to clear the sidewalk. A spade gardening tool,People use snow shovels to clear the sidewalk.,A spade gardening tool,gold,is used to break up ice.,is shown on a bright screen.,is being used by to grill.,is in front of a mirror.,0\n6852,anetv_KTIzccovgeg,4455,A spade gardening tool is used to break up ice. A man,A spade gardening tool is used to break up ice.,A man,gold,applies salt to the cleared sidewalk area.,talks to some of the boys as soon as the journalists are done.,is eating a twig.,is mixing something on a bicycle.,0\n6853,lsmdc0023_THE_BUTTERFLY_EFFECT-59760,1261,\"Someone, standing near the fireplace, defiantly strikes the match with this thumb and lowers the flame to the short fuse. Someone\",\"Someone, standing near the fireplace, defiantly strikes the match with this thumb and lowers the flame to the short fuse.\",Someone,gold,rush up to the podium.,swings it toward her fellow friends.,charges someone just as the fuse is lit!,lies about a few feet away.,2\n6854,lsmdc0023_THE_BUTTERFLY_EFFECT-59760,1260,\"Someone, hiding at the top of the stairs, slowly creeps down to get a better view. Someone, standing near the fireplace,\",\"Someone, hiding at the top of the stairs, slowly creeps down to get a better view.\",\"Someone, standing near the fireplace,\",gold,defiantly strikes the match with this thumb and lowers the flame to the short fuse.,keeps his hairless tattered bath - candy - layered.,rips himself into the windscreen as we watch his bird fly overhead.,looking at them whimpering as he waits for someone to begin the chase.,0\n6855,lsmdc0023_THE_BUTTERFLY_EFFECT-59760,1262,Someone charges someone just as the fuse is lit!. Someone knocks the blockbuster from someone's hand and it,Someone charges someone just as the fuse is lit!.,Someone knocks the blockbuster from someone's hand and it,gold,lifts his body as the silver - robed operator knocks on the open front door.,trips them over someone's shoulders.,\"is hurled against the broomstick, pinning it up to his.\",\"rolls towards the other side of the room, resting peacefully against the video camera.\",3\n6856,lsmdc0023_THE_BUTTERFLY_EFFECT-59760,1263,\"Someone knocks the blockbuster from someone's hand and it rolls towards the other side of the room, resting peacefully against the video camera. Someone's eyes are dazzled by the sparkling fuse and she\",\"Someone knocks the blockbuster from someone's hand and it rolls towards the other side of the room, resting peacefully against the video camera.\",Someone's eyes are dazzled by the sparkling fuse and she,gold,\"closes the book, surprised to focus.\",bends down to pick it up.,has gone back toward the headboard.,puts her head around him.,1\n6857,lsmdc3022_DINNER_FOR_SCHMUCKS-10258,18899,One demonstrates his golf swing. Someone,One demonstrates his golf swing.,Someone,gold,leads the other workers into the boardroom.,picks up a punch line from the big stack.,balance his energy blasts.,sits to perform flips.,0\n6858,lsmdc3022_DINNER_FOR_SCHMUCKS-10258,18897,\"Carrying a large plastic box, someone steps out of an elevator followed by someone and several other workers. They\",\"Carrying a large plastic box, someone steps out of an elevator followed by someone and several other workers.\",They,gold,are dancing and enjoying their hair as they watch him.,\"cuts up and out of a alley, passing between double blades.\",enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered.,put the phone in their mouths.,2\n6859,lsmdc3022_DINNER_FOR_SCHMUCKS-10258,18898,They enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered. One,They enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered.,One,gold,drops books and throws them onto the floor.,\"cradles them from his arms then opens the front door on someone's house, someone turns around a handle of a staircase.\",enters the domed hotel room which opens down.,demonstrates his golf swing.,3\n6860,anetv_jd609r5yKkI,12788,The men play the drums continuously while looking to one another as well as off into the distance. The men,The men play the drums continuously while looking to one another as well as off into the distance.,The men,gold,continue playing with one another while two more practice play in the end.,continue to play the game and cheer with one another as well as walking around.,continue playing the same instrument all around while speaking to a group and watching them from various angles.,continue to play with one another and end with one holding his arms up.,3\n6861,anetv_jd609r5yKkI,12787,A small group of men are seen sitting on the ground playing instruments while one holds a child in his lap. The men,A small group of men are seen sitting on the ground playing instruments while one holds a child in his lap.,The men,gold,play the drums continuously while looking to one another as well as off into the distance.,continue to play with one another and end with each other in a circle having their drink still swinging.,continue playing out and one others headphones on while playing and singing as well as playing up.,continue playing and begin playing tennis with one another as well as the two congratulate him outside.,0\n6862,anetv_jd609r5yKkI,1395,As they continue with their drum routine drummer of the pace of the drumming. When the video in the closing captions and credits,As they continue with their drum routine drummer of the pace of the drumming.,When the video in the closing captions and credits,gold,are shown on the screen.,show on the screen showing the screen.,are led to where the game is replayed.,appear its screen shows credits spewing.,0\n6863,anetv_31KEa5VhvPs,13919,A man and his teammates are pushing a puck. They,A man and his teammates are pushing a puck.,They,gold,are walking left behind trying to run down the track.,kick the ball back and forth.,get away and run over on people.,are engaged in a game of curling on the ice.,3\n6864,anetv_31KEa5VhvPs,13918,A group of spectators are gathered in a gym. A man and his teammates,A group of spectators are gathered in a gym.,A man and his teammates,gold,jump a few steps above him.,cheer from the van.,are in a supermarket.,are pushing a puck.,3\n6865,lsmdc1018_Body_Of_Lies-80542,6634,Someone sees someone amongst the men observing. He,Someone sees someone amongst the men observing.,He,gold,remembers someone embracing someone in the desert.,shoves someone back over the water toward one of the twins.,taps a hook above his own ears.,\"beats the soldier with his gun, guns from overhead.\",0\n6866,lsmdc1012_Unbreakable-6974,5891,The man with thinning hair and a black beard looks around. People,The man with thinning hair and a black beard looks around.,People,gold,is performing ballet moves.,'s white skin and the lens.,walk into a hole in the pool.,watch the slow moving queue.,3\n6867,anetv_Pyf_5Bffu5A,18044,Man is doing a corner and scores a goal and ruun to his teammates to celebrate. the game start te game and men,Man is doing a corner and scores a goal and ruun to his teammates to celebrate.,the game start te game and men,gold,are standing on the walkway to clean the shirts.,win a victory competition in a competition while many spectators cheer him on.,are cheering for the video.,keeps running and scores another goal and celebrates while there s a repetition.,3\n6868,anetv_Pyf_5Bffu5A,18043,Kids are playing beach soccer in a dusty field. people,Kids are playing beach soccer in a dusty field.,people,gold,are in a small court playing volleyball.,are riding horses in a gymnasium on a wild horse.,are watching them cover the line of townspeople.,are standing around the field in stands.,3\n6869,lsmdc3059_SALT-28998,16720,She recalls the young boy with the scar on his cheek lying in the bed next to hers. The man,She recalls the young boy with the scar on his cheek lying in the bed next to hers.,The man,gold,attempts to shoot victory in which boy does hand springs.,shows his scarred cheek.,clutches his mother's mouth as he is driven through the darkness.,\"stands by the dresser, smoking a cigarette and pulling out a gum - breath.\",1\n6870,lsmdc3059_SALT-28998,16719,She stares at him blankly. She,She stares at him blankly.,She,gold,\"springs out of his bed, looks off, and gives a shaky shrug.\",\"shifts, and looks up at someone.\",recalls the young boy with the scar on his cheek lying in the bed next to hers.,catches sight of him.,2\n6871,lsmdc3059_SALT-28998,16718,Man in dress uniform steps up to someone. She,Man in dress uniform steps up to someone.,She,gold,stares at him blankly.,grabs the shrimp out of her bag.,\"walks into the corridor, where there is no sign of the various people.\",gets up and runs off.,0\n6872,anetv_NqYEX8tUjYg,17475,Several more clips are shown of people riding snowboards and performing tricks on a board. More people,Several more clips are shown of people riding snowboards and performing tricks on a board.,More people,gold,are seen riding on a board and speaking to the camera.,are seen riding around on bikes while others watch on the side.,are seen riding down the river while the camera captures their movements.,are shown speaking to the camera while more shots are shown of people walking and holding a yellow towel.,0\n6873,anetv_NqYEX8tUjYg,17474,A person is seen performing a trick on a snowboard followed by more a woman speaking to the camera. Several more clips,A person is seen performing a trick on a snowboard followed by more a woman speaking to the camera.,Several more clips,gold,are then seen of people riding horses while other people watch on the side.,are shown of people riding snowboards and performing tricks on a board.,are shown of dogs riding recumbent bikes and others walking around them.,are shown of people riding bumper as well as pictures of products are shown.,1\n6874,anetv_kM7jFLYDUy0,2219,He moves back and forward in his car. He,He moves back and forward in his car.,He,gold,looks lonely as he finally comes to a stop.,frame his face where he's working again.,feeds spots bystanders backstage.,dashes into the room and comes back.,0\n6875,anetv_kM7jFLYDUy0,2218,\"A boy is in a bumper car, spinning around by himself. He\",\"A boy is in a bumper car, spinning around by himself.\",He,gold,continues performing stunts while doing the boarding.,\"is holding poles, looking at them in the night.\",moves back and forward in his car.,\"is confused, with stunts on his head.\",2\n6876,anetv_vth3IYGHu5k,11774,\"A teen skip on a court and then jumps high over a bar. Then, the teen\",A teen skip on a court and then jumps high over a bar.,\"Then, the teen\",gold,rides backward twice while the class beers with him.,jumps high again but touch the bar.,push the ball down and do other rapid flips.,drops a ball and does a hand stand and falls.,1\n6877,anetv_vth3IYGHu5k,11777,\"Then, the ten runs relay run with other youth. After, the teen\",\"Then, the ten runs relay run with other youth.\",\"After, the teen\",gold,takes sporting long jump and celebrates.,runs and moves the stick to reverse.,puts down a dog and skateboards.,performs long jump on a sand box.,3\n6878,anetv_vth3IYGHu5k,11776,\"This time the teen jumps without touching the bar. Then, the ten runs relay\",This time the teen jumps without touching the bar.,\"Then, the ten runs relay\",gold,run with other youth.,track when jumping rope very fast.,chases with the bat.,ski while his other competitor congratulates him.,0\n6879,anetv_vth3IYGHu5k,11775,\"Then, the teen jumps high again but touch the bar. This time the teen\",\"Then, the teen jumps high again but touch the bar.\",This time the teen,gold,jumps without touching the bar.,gets on the swing his leg almost kicking.,jumps up and jumps across the circle in front of him and lowers his paddles.,turns to the camera.,0\n6880,anetv_vth3IYGHu5k,9970,Blonde woman is running in a race track and make a jump in an elastic bed. in the background people,Blonde woman is running in a race track and make a jump in an elastic bed.,in the background people,gold,is sitting next to him playing the drum set of drums.,are running around the court.,are siting on dirt bikes.,are doing a routine with the soldiers behind them.,1\n6881,anetv_vth3IYGHu5k,11778,\"After, the teen performs long jump on a sand box. A person\",\"After, the teen performs long jump on a sand box.\",A person,gold,plays hurling in the city.,kneels down and holds her head on a rope.,takes picture to the teen.,waves and runs underwater.,2\n6882,anetv_NIJTz15ikgA,11958,The woman dabs powder around her face. She then,The woman dabs powder around her face.,She then,gold,blows the blow dryer all over the area.,walks around and the dogs are moving back and forth.,spreads it evenly across her cheeks and chin.,picks up a baking bottle and puts lipstick on.,2\n6883,anetv_NIJTz15ikgA,13946,The woman powders around the girls face as well as her neck. She,The woman powders around the girls face as well as her neck.,She,gold,\"move the weights and fall back and flip while speaking while the camera zooms in on her, and continues all.\",rolls the dogs away and ends by smiling into the camera.,struggles to make gestures with his hands and finally them throw them to each other.,continues putting makeup on the girl and showing pictures in the end.,3\n6884,anetv_NIJTz15ikgA,13945,A woman is seen dressed in a beautiful gown and a woman begins putting makeup on her face. The woman,A woman is seen dressed in a beautiful gown and a woman begins putting makeup on her face.,The woman,gold,powders around the girls face as well as her neck.,pierces her eye and pushes forward to take her eye.,continues speaking to the young and rubs lotion onto the side of the woman's face.,is seen playing with her hair while another child speaks to the camera.,0\n6885,anetv_NIJTz15ikgA,11957,A girl is seated on a couch while another girl prepares her makeup. The woman,A girl is seated on a couch while another girl prepares her makeup.,The woman,gold,pulls off the old sweater.,rubs gel into her arm.,begins brushing her other hair and catching the offscreen cats.,dabs powder around her face.,3\n6886,lsmdc3012_BRUNO-4177,3814,\"Someone swaggers up before someone, script in hand. He\",\"Someone swaggers up before someone, script in hand.\",He,gold,hangs and goes to see someone.,\"bows, then reads.\",\"grips the handle, then peers out through the kitchen microscope.\",is looking to some door in a box with many hats and pushing briefcase.,1\n6887,lsmdc3012_BRUNO-4177,3815,\"He sobers instantly, and dramatically wags his finger at someone. The agent\",\"He sobers instantly, and dramatically wags his finger at someone.\",The agent,gold,falls and starts walking toward the german.,drops to one side on the train.,responds with a bemused frown.,collapses and touches his arm.,2\n6888,lsmdc3012_BRUNO-4177,3816,\"The agent responds with a bemused frown. Turning his back on someone, he\",The agent responds with a bemused frown.,\"Turning his back on someone, he\",gold,\"crouches, revealing a red thong.\",slices at his goatee.,strolls points in the blonde direction.,glares up at the ground below.,0\n6889,lsmdc3012_BRUNO-4177,3817,\"Turning his back on someone, he crouches, revealing a red thong. He\",\"Turning his back on someone, he crouches, revealing a red thong.\",He,gold,thrusts it at him as someone flails and falls right into the swimming pool.,jumps around to face the agent.,fingers repeatedly drain this one more.,\"creeps off, yanking the curtain, then shuts himself into the shower.\",1\n6890,lsmdc1062_Day_the_Earth_stood_still-100699,15173,\"The officials stand at a window overlooking the room. Watched closely by someone, someone\",The officials stand at a window overlooking the room.,\"Watched closely by someone, someone\",gold,removes the oxygen mask and offers the being a cup of water.,approaches a rental truck.,holds out a photo of a women's dancing kit.,snaps her glaring eyes at him.,0\n6891,lsmdc1062_Day_the_Earth_stood_still-100699,15172,The being is lying on a gurney wearing gray hospital pajamas and an oxygen mask. The officials,The being is lying on a gurney wearing gray hospital pajamas and an oxygen mask.,The officials,gold,stand watching them through binoculars.,are listening.,stand at a window overlooking the room.,are still dancing with part of the goddess.,2\n6892,lsmdc1062_Day_the_Earth_stood_still-100699,15174,\"Watched closely by someone, someone removes the oxygen mask and offers the being a cup of water. He\",\"Watched closely by someone, someone removes the oxygen mask and offers the being a cup of water.\",He,gold,produces a flask to protect someone with the start to protect his mouth and different line.,\"tosses her gun towards him, struggling to lifebelt her brunette body.\",takes it and draws it shakily towards him.,holds his fist steady and blinks.,2\n6893,lsmdc1062_Day_the_Earth_stood_still-100699,15175,They all watch him intently. The Secretary,They all watch him intently.,The Secretary,gold,sings quickly on a concert hall.,\"shrugs his head, coldly strolls forward.\",takes a step towards him.,talks on the radio.,2\n6894,anetv_swId_MFHywI,12066,\"The instructor is sitting on the floor introducing the move. A shot of the move is shown, then the instructor\",The instructor is sitting on the floor introducing the move.,\"A shot of the move is shown, then the instructor\",gold,shows how to do it.,shows another player on the table.,lifts his knees up and down.,tries beside the coach instructor.,0\n6895,anetv_swId_MFHywI,12065,The camera zooms into a dancer. VincaniTV,The camera zooms into a dancer.,VincaniTV,gold,comes up on the screen.,two men are in the back of the court.,of the television is black and black.,holds a bat and hands an airplane.,0\n6896,anetv_swId_MFHywI,12067,\"A shot of the move is shown, then the instructor shows how to do it. He\",\"A shot of the move is shown, then the instructor shows how to do it.\",He,gold,clears the side with the weights and places the weights down several times before continuing on.,stands over a bar with his arms held out around the sides.,pushes himself up on his hand and does another move.,looks up and introduces himself in throwing a object into the art.,2\n6897,anetv_swId_MFHywI,12068,He pushes himself up on his hand and does another move. He,He pushes himself up on his hand and does another move.,He,gold,lifts some weights and puts them on down.,maneuver the pole and ax in the railing as he walks over to the object.,jumps over the fence towards a large space and red light.,is on one knee to show another move.,3\n6898,anetv_swId_MFHywI,12069,He is on one knee to show another move. The screen,He is on one knee to show another move.,The screen,gold,is white with white text with no title on it.,shows the point and shows other other team mates more and one man speaks.,changes sideways to animals standing at the points.,goes to another shot of the same move but faster this time.,3\n6899,anetv_swId_MFHywI,12064,A black book called Windmills is on the screen. The camera,A black book called Windmills is on the screen.,The camera,gold,captures various stages of spin.,finishes dramatically from another man.,zooms into a dancer.,focuses on an orange screen.,2\n6900,anetv_swId_MFHywI,12070,The screen goes to another shot of the same move but faster this time. The instructor,The screen goes to another shot of the same move but faster this time.,The instructor,gold,comes up to the rubiks cube and completes it fighting.,is standing and talking.,bends down and lays the other person's socks in his shoulder.,spins him with both hands in his enclosure before smiling his drink in the air.,1\n6901,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,492,She stands up to greet her new friend. Someone,She stands up to greet her new friend.,Someone,gold,holds the bird in her hand.,brings someone over to the table.,looks as his head grabs the rod as it swipes.,\"hangs up, looks down and notices someone holding boys.\",1\n6902,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,490,He goes into his office and turns on the lights. A framed photo,He goes into his office and turns on the lights.,A framed photo,gold,shows his rosy - skinned lover lying on the bed.,shows someone with someone.,walks up to someone in a flashback.,shows his wife on tv.,1\n6903,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,491,\"A framed photo shows someone with someone. Wearing a nightgown, someone\",A framed photo shows someone with someone.,\"Wearing a nightgown, someone\",gold,strolls up to a tub of water from a platform.,braces his wings against the hot wooden door.,finds nine girls seating at a round table topped with candles.,sits up and wipes her mouth slightly.,2\n6904,anetv_aVL9ArQS_Ag,9327,\"A man holds a pair of boots while talking and showing dirty parts. Then, the man\",A man holds a pair of boots while talking and showing dirty parts.,\"Then, the man\",gold,put a clothe inside the boot and brush the shaft of the boot thoroughly.,shows them how to use the windshield to remove the bolts.,put the legs into the black tire.,bends down and begins removing the mane.,0\n6905,lsmdc1014_2012-79394,5409,Someone thumped the security guard as he looked behind. The crowd,Someone thumped the security guard as he looked behind.,The crowd,gold,questions a mustached young man.,\"quickly marches over, spots someone in his coat.\",\"stands the flare from inside the tower, someone.\",pushes past and enters the bay.,3\n6906,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4845,Her body relaxes in death. Someone,Her body relaxes in death.,Someone,gold,\"lowers her corpse and looks toward the house, his expression hardening.\",\"sits slumped on the branch, staring back at someone.\",stares down at these sorcerer wonder.,caresses his chest and forehead.,0\n6907,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4854,Someone heaves a hanging cauldron into the witches face knocking her down. He then,Someone heaves a hanging cauldron into the witches face knocking her down.,He then,gold,fades down vacuuming his knees as another runaway propeller whizzes by.,keeps flying off the boat.,hurls someone over the coupled creature.,wraps a chain around her neck and hoists her up using the oven door as a pulley.,3\n6908,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4860,Someone looks for the syringe but can not find it. Someone,Someone looks for the syringe but can not find it.,Someone,gold,starts to wake up.,looks wide at the larger tire.,is just being someone.,is still in the phone.,0\n6909,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4852,Someone throws them onto someone and punches the both of them in the face. The crone then,Someone throws them onto someone and punches the both of them in the face.,The crone then,gold,wipes the knife on a napkin followed by the angry elf.,notices the half - embossed someone on the other side.,begins to scatter across the sand.,tries to break his neck.,3\n6910,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4847,He somersaults into the house where the witch attacks him with a shovel. Someone,He somersaults into the house where the witch attacks him with a shovel.,Someone,gold,charges into the house but is swiftly felled by the hag.,lunges through bloody timbers from his injury.,feeds him a cone.,grabs the top of the stand.,0\n6911,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4849,Someone grabs a knife from a table and moves in to stab someone. They,Someone grabs a knife from a table and moves in to stab someone.,They,gold,\"struggle, each trying to gain the upper hand.\",fight it with a blade to protect someone.,are frozen at someone's feet.,\"lift a jersey outside the shop, when he gets in his saloon.\",0\n6912,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4858,She slowly starts to pas out when someone's wrist - timer goes off. He,She slowly starts to pas out when someone's wrist - timer goes off.,He,gold,is unable to keep his hold on her and collapses to his knees.,\"tries to take this off, but when it's groggy, it hangs on the tip of his arm as he trots past.\",flick toward the bedroom windows of the gently crash day: day house.,hangs up as the agent stands over the captain.,0\n6913,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4855,He then wraps a chain around her neck and hoists her up using the oven door as a pulley. He,He then wraps a chain around her neck and hoists her up using the oven door as a pulley.,He,gold,gets away from a limo and stubs his glove at the photo and tosses the photo onto the box.,skids to his feet and his eyes dart sideways.,starts to punch her relentlessly.,pulls up in front of her pda door.,2\n6914,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4861,Someone starts to wake up. She,Someone starts to wake up.,She,gold,grabs his surfboard and backs away.,glares up and goes.,grabs her by the shoulders and pushes him backwards the kiss.,spots his syringe on the ground.,3\n6915,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4848,Someone charges into the house but is swiftly felled by the hag. Someone,Someone charges into the house but is swiftly felled by the hag.,Someone,gold,\"emerges at the far end, clutching her chest.\",grabs a knife from a table and moves in to stab someone.,takes an raw bite of the bomb which explodes from all clicks like claws.,fingers the knife within.,1\n6916,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4859,He is unable to keep his hold on her and collapses to his knees. Someone,He is unable to keep his hold on her and collapses to his knees.,Someone,gold,\"is lying on his back, clinging to someone's head.\",has given him a young boy too.,\"laughs joyfully, wakes again, and starts touching her.\",looks for the syringe but can not find it.,3\n6917,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4850,\"They struggle, each trying to gain the upper hand. Someone\",\"They struggle, each trying to gain the upper hand.\",Someone,gold,\"leaps into the fight, wrestling with the witch.\",'s grip over someone's injury.,\"starts for a long swing, but even quicker.\",steps over to someone and punches the air.,0\n6918,anetv_r_n1PfHvKI4,15773,A man is preparing to fly the kite. The kite,A man is preparing to fly the kite.,The kite,gold,gets airborne and soars.,perform different styles and celebration of the video.,comes flying out onto the green sky.,is knocked on the kite.,0\n6919,anetv_r_n1PfHvKI4,15772,There is a field with a kite laying in it. A man,There is a field with a kite laying in it.,A man,gold,is preparing to fly the kite.,is standing in front of a building of palm trees with arrows from his hands.,is hands trying to get a ball and throw it into the lane.,runs his hands through the hole and runs the disc.,0\n6920,lsmdc0032_The_Princess_Bride-66373,15305,Someone feels a hand on his back. He,Someone feels a hand on his back.,He,gold,returns his attention to the pages of the fallen general.,closes the gun in both hands.,compares it to his own smaller hand.,glances over to someone who holds his hand out of someone's grip.,2\n6921,lsmdc0032_The_Princess_Bride-66373,15306,\"And as the Assistant Brute is just about to club someone's brains out, someone lets fly with a stupendous punch. The Assistant Brute\",\"And as the Assistant Brute is just about to club someone's brains out, someone lets fly with a stupendous punch.\",The Assistant Brute,gold,switches off the underground equipment.,round cautiously as they run down the stairs along the bricked walkway.,speaks one as the group tries to regain his composure.,takes the full force of the blow right in the chops.,3\n6922,anetv_gMV5Mso7758,18980,A close up of a man is shown followed by him asking a woman a question on the beach. He then,A close up of a man is shown followed by him asking a woman a question on the beach.,He then,gold,is shown speaking to several different people holding a frisbee and playing a game.,\"greats all of the people, leading into pushing the pucks across the lawn.\",creates a set the matches into different venues.,presents another rifle and leaves with the camera.,0\n6923,anetv_gMV5Mso7758,18981,He then is shown speaking to several different people holding a frisbee and playing a game. Many women laugh with the men and the man,He then is shown speaking to several different people holding a frisbee and playing a game.,Many women laugh with the men and the man,gold,hobbles as well as doing another and throwing one person onto the ground.,gives several of them a kiss.,moves their hands up and down.,dealing the accordions to others as well as text from the camera.,1\n6924,lsmdc1012_Unbreakable-7365,1233,\"Head slightly to one side, he looks someone full in the face. Someone\",\"Head slightly to one side, he looks someone full in the face.\",Someone,gold,reaches out back and accepts the arm.,glances disbelievingly around someone's den.,faces others with the horn of a band.,looks the length of the window.,1\n6925,lsmdc1012_Unbreakable-7365,1234,Someone glances disbelievingly around someone's den. Someone,Someone glances disbelievingly around someone's den.,Someone,gold,fumbles in a cushion lying beside her.,\"slides his glass against someone, then turns onto a ledge, his free hand under his jacket.\",turns and walks away.,manages to brush his teeth.,2\n6926,lsmdc1012_Unbreakable-7365,1232,\"Someone swings his chair back to face someone. Head slightly to one side, he\",Someone swings his chair back to face someone.,\"Head slightly to one side, he\",gold,looks someone full in the face.,stands with his hands drawn on his legs seductively.,rests his hands on his throat.,lifts his head and stares into the ceiling.,0\n6927,anetv_s84BStnbfK8,6965,They begin to play a game of wall ball. They,They begin to play a game of wall ball.,They,gold,are swinging their rackets hitting the ball.,knock the leaves down but the mat.,walk from stage and look toward the audience.,are holding the motion cutting towards them.,0\n6928,anetv_s84BStnbfK8,6964,Two people are standing in a room. They,Two people are standing in a room.,They,gold,are holding tennis rackets on the floor.,begin to play a game of wall ball.,begin playing a game of volleyball.,play a game of crochet and walk around the yard.,1\n6929,anetv_3f6G-qzwzfg,18927,A score being shown leads into a game of people playing cricket and reacting positively and negatively. More clips of the game,A score being shown leads into a game of people playing cricket and reacting positively and negatively.,More clips of the game,gold,are shown and leads into the game of polo.,moves and ends with the closing footage.,are shown back to back as well as players cheering and celebrating.,are shown afterwards goals.,2\n6930,anetv_3f6G-qzwzfg,4591,A team of green and yellow outfitted cricket players pay ball on the field with one player staring another down with a menacing look. The teams,A team of green and yellow outfitted cricket players pay ball on the field with one player staring another down with a menacing look.,The teams,gold,continue down taking their positions and aim for each other and a closeup of a player leading into the field.,\"tug the game back and forth to the team, and other running to one side.\",continue to celebrate and one of them cuts a shot and fades out of the scores.,continue to play with the yellow and green team in the end celebrating.,3\n6931,anetv_3f6G-qzwzfg,4590,Two teams of cricket players play in a odi game in front of a large audience in the bleachers with high lights shown when goals achieve with the green and yellow team celebrating the most throughout the video. A team of green and yellow outfitted cricket players,Two teams of cricket players play in a odi game in front of a large audience in the bleachers with high lights shown when goals achieve with the green and yellow team celebrating the most throughout the video.,A team of green and yellow outfitted cricket players,gold,are playing polo with their hockey ring and men reach the goal on the start line in the tournament.,are in the middle of a white area and a bowler on the other is talking to the camera about a game.,drawn themselves on the deck playing the game of matches.,pay ball on the field with one player staring another down with a menacing look.,3\n6932,anetv_5wOmHw6Boj8,15362,A clear bottle of detergent is shown and a person begins cleaning a mug with a cloth. The person,A clear bottle of detergent is shown and a person begins cleaning a mug with a cloth.,The person,gold,begins scrubs the rag all over untouched plate while well as cleaning the window and clothing presented with a brush.,shows herself putting on the glove and goes back to washing the mug before finally showing her book on the product.,wipes the melting wax paste on the clean lens.,places the sheet down and wipes the sink onto the sink.,1\n6933,lsmdc3068_THE_BIG_YEAR-3639,12847,\"Pulling his car out of a line of vehicles waiting for the ferry, someone peels off down the road. Someone and someone\",\"Pulling his car out of a line of vehicles waiting for the ferry, someone peels off down the road.\",Someone and someone,gold,descends off the bridge.,\"sharpen a plain - doh steed, across glassy grass, who rows on a bench - mounted case.\",jump into a gray sedan at the front of the line.,stride through a busy recreation alley where she passes some where someone and strides carry her off.,2\n6934,lsmdc3068_THE_BIG_YEAR-3639,12848,Someone and someone jump into a gray sedan at the front of the line. The white haired birder,Someone and someone jump into a gray sedan at the front of the line.,The white haired birder,gold,sprays his car with a rag.,examines someone's fist across his throat.,extends his hand and pulls someone away.,turns his vehicle around and heads after someone.,3\n6935,lsmdc3068_THE_BIG_YEAR-3639,12846,\"Seeing someone sprint to his car, they head to the ticket booth. Pulling his car out of a line of vehicles waiting for the ferry, someone\",\"Seeing someone sprint to his car, they head to the ticket booth.\",\"Pulling his car out of a line of vehicles waiting for the ferry, someone\",gold,brings another martini and steps over and helps him with his glass in the driver's seat.,looks from her to the bus and both lot of i tilt out of the car.,sees someone's knocking into the desk.,peels off down the road.,3\n6936,anetv_o_Davs3OrOw,1912,He dives down to the bottom and picks something up off the bottom of the pool. He,He dives down to the bottom and picks something up off the bottom of the pool.,He,gold,tries to help him.,wipes down the shirt in the sink while a woman is looking down.,swims back to the top and above water.,\"catches it and quickly moves the board, turning him back to go in slow motion.\",2\n6937,anetv_o_Davs3OrOw,1911,A little boy wearing goggles jumps into a pool. He,A little boy wearing goggles jumps into a pool.,He,gold,dives down to the bottom and picks something up off the bottom of the pool.,does an adult jump into a of pool.,tries to row someone falls.,is swimming soccer in the water.,0\n6938,anetv_daDd48y4x0g,2418,We see lots of plate of fancy food. We then,We see lots of plate of fancy food.,We then,gold,see the closing screen.,see the boy smiling on a cake.,see two women standing down a bar for the lion.,zoom in on the plates.,3\n6939,anetv_daDd48y4x0g,2419,We then zoom in on the plates. We,We then zoom in on the plates.,We,gold,see an animated shape beside and slowly affecting a graceful incline.,see a shadow on the plates.,are cut to astonished the images before the picture is shown.,\"girl holds teenaged boy's hand as we ride backwards and we roll the legs up, extending her arms.\",1\n6940,anetv_daDd48y4x0g,2420,We see a shadow on the plates. A man on the right,We see a shadow on the plates.,A man on the right,gold,picks up a few plates.,puts pieces on the carving sandwich.,takes several shots on break.,is talking while standing behind a counter with the bridge.,0\n6941,anetv_83a5nOzZU1g,4554,A drink is being poured into a glass followed by a woman grabbing a glass and pouring mixtures into it. She,A drink is being poured into a glass followed by a woman grabbing a glass and pouring mixtures into it.,She,gold,takes a drink from a plastic cup and drops it.,creates an alcoholic drink by pouring several different mixes together and the camera zooming in on the drink.,continues to hit the pot around the counter while smiling to the camera and presenting the drink.,mixes items together along with a small spoon near a spoon and blends it down all along with sugar.,1\n6942,lsmdc3013_BURLESQUE-4529,18479,Then she returns her eyes to the stage where the dancers shake their hips. The bartender,Then she returns her eyes to the stage where the dancers shake their hips.,The bartender,gold,\"grabs a cash from a plastic container, then drinks from a cup.\",instructs someone to finish up her date.,interrupts a pink - haired waitress who's busy flirting.,puts a glasses of beer to her lips.,2\n6943,lsmdc3013_BURLESQUE-4529,18477,\"Tears in her eyes, the blonde woman claps, transfixed. As the band plays, a spotlight\",\"Tears in her eyes, the blonde woman claps, transfixed.\",\"As the band plays, a spotlight\",gold,strikes someone with a blue spotlight which spins the dancer threatening back in center stage.,gently plays on stage.,shines on one of the agents astride them.,shines on dancers in silver - sequined outfits.,3\n6944,lsmdc3013_BURLESQUE-4529,18478,\"As the band plays, a spotlight shines on dancers in silver - sequined outfits. A handsome toned bartender in eyeliner and a bowler hat\",\"As the band plays, a spotlight shines on dancers in silver - sequined outfits.\",A handsome toned bartender in eyeliner and a bowler hat,gold,walk back down the street.,approaches and takes a seat behind her.,leans toward the blonde.,joins him with a box leaflet.,2\n6945,lsmdc3013_BURLESQUE-4529,18476,One lifts a leg higher than the singer's head. The posed dancers,One lifts a leg higher than the singer's head.,The posed dancers,gold,frame the smiling diva.,hits the set as they pose.,politely raise their bows.,dips along the drum.,0\n6946,lsmdc3013_BURLESQUE-4529,18480,The bartender interrupts a pink - haired waitress who's busy flirting. The blonde,The bartender interrupts a pink - haired waitress who's busy flirting.,The blonde,gold,does a great job and flicks his head.,man lights a joint.,turns back to the bartender.,puts the cap back on.,2\n6947,lsmdc3013_BURLESQUE-4529,18481,The blonde turns back to the bartender. She,The blonde turns back to the bartender.,She,gold,goes to her line of art.,puts down her cup.,points to the stage.,\", meanwhile, someone arrives to a little girl walking toward her, skips across her.\",2\n6948,lsmdc3013_BURLESQUE-4529,18483,\"As she leaves, the bartender smiles. Now the blonde\",\"As she leaves, the bartender smiles.\",Now the blonde,gold,enters a bustling backstage area.,child answers his own cell.,woman applies sand on her friends.,obese woman faces her clumsily companion.,0\n6949,anetv_6GGQUpJR5qs,2387,The dog shakes his fur. The person,The dog shakes his fur.,The person,gold,finishes the dirt snowy.,throws water from his mower.,shows how to lay paw.,continues wetting the dog.,3\n6950,lsmdc1046_Australia-90784,18918,\"Someone steps out on the balcony above, and watches him nuzzle the horse affectionately. She\",\"Someone steps out on the balcony above, and watches him nuzzle the horse affectionately.\",She,gold,stares at his cellphone.,gives an uncertain shake of his head but nods politely.,\"rides around it, delighted.\",makes her way downstairs.,3\n6951,lsmdc1046_Australia-90784,18917,Someone exercises Capricornia in a small yard. Someone,Someone exercises Capricornia in a small yard.,Someone,gold,\"steps out on the balcony above, and watches him nuzzle the horse affectionately.\",leaves someone on the back of someone's tail.,tackles someone to the loop nearby.,glares at the car as they ride down.,0\n6952,anetv__ekWWP0dQZM,10903,A ballerina is shown in class warming up her feet and walking away crying. Various actors,A ballerina is shown in class warming up her feet and walking away crying.,Various actors,gold,are shown riding a red dot in the ring.,are shown that leads into her exercises and leads into some girls grabbing arms and performing hop movements.,talk to the camera about filming a movie about ballet and the moves they learned.,are shown of various girls dancing.,2\n6953,anetv__ekWWP0dQZM,10905,The ballerinas are moving around the set while the camera is rolling. The actors,The ballerinas are moving around the set while the camera is rolling.,The actors,gold,then walk to the stage and a group of kids follow very starts by throwing a baton up into the air.,continue to play and as the batons are.,\"stand around doing the exercise, making flippers and moving using hands.\",continue talking about tricks and what they learned.,3\n6954,anetv__ekWWP0dQZM,10904,Various actors talk to the camera about filming a movie about ballet and the moves they learned. The ballerinas,Various actors talk to the camera about filming a movie about ballet and the moves they learned.,The ballerinas,gold,are then shown using icing and other with lemonade to other players.,are moving around the set while the camera is rolling.,perform zumba while others stand in the middle.,are performing martial routines in the field area.,1\n6955,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94137,5843,\"Someone stays glued to the radio. Now, they\",Someone stays glued to the radio.,\"Now, they\",gold,leave the school and speed off.,play amongst guests in a living room.,take the time between a looming wall of chalk.,are camped on the shore of a lake.,3\n6956,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94137,5841,They are camped under a bridge. Someone,They are camped under a bridge.,Someone,gold,navigates the funeral line.,leans her head back against the scanner.,is deep in thought.,stands alone a little distance from them.,3\n6957,lsmdc0011_Gandhi-53036,5672,\"It is a comment too grave for glibness, and someone is obviously struck by the pain of it. He\",\"It is a comment too grave for glibness, and someone is obviously struck by the pain of it.\",He,gold,\"stands over with a long beat, then steps up and pushes him hard against the corner of the lifeboat.\",snarls up at the faint sound of his radio.,has not heard.,\"pauses for a moment, staring down at the youth.\",3\n6958,lsmdc0011_Gandhi-53036,5668,\"It seems a little island of calm in a sea of wild chaos. On the roof of the house, a figure\",It seems a little island of calm in a sea of wild chaos.,\"On the roof of the house, a figure\",gold,looms over a small glass road.,moves into the light.,appears at a window.,appears with an eagle.,1\n6959,lsmdc0011_Gandhi-53036,5669,\"He peers down at the dark, rioting streets. A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers,\",\"He peers down at the dark, rioting streets.\",\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers,\",gold,start firing down a passageway.,swing by a city and approach the bowling lobby.,\"try to work, stuff something in the card sack.\",are shouting up at the roof.,3\n6960,lsmdc0011_Gandhi-53036,5670,\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers, are shouting up at the roof. We\",\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers, are shouting up at the roof.\",We,gold,\"zip down a back street, broken up by several headlights.\",\"now in trance, they carry him out of the night of his office, out with drawn paper box of etcetera.\",is someone just flowing his ammunition.,see three or four black flags and stains of blood on many of them.,3\n6961,lsmdc0011_Gandhi-53036,5671,\"We see three or four black flags and stains of blood on many of them. It is a comment too grave for glibness, and someone\",We see three or four black flags and stains of blood on many of them.,\"It is a comment too grave for glibness, and someone\",gold,is obviously struck by the pain of it.,has got up for school.,is suppress for paying yet.,is over the chanting barricade.,0\n6962,lsmdc3014_CAPTAIN_AMERICA-5381,3287,A light - haired soldier saunters forward. Someone,A light - haired soldier saunters forward.,Someone,gold,\"punches someone's face, toppling him.\",leans against his chin.,forces her in a bear hug.,sit on an empty bench by a makeup artist and faces a blonde woman and a pale.,0\n6963,anetv_Lbdp-HCjWw8,12131,An indication shows on the screen letting you know the different lines. Tips for the game also,An indication shows on the screen letting you know the different lines.,Tips for the game also,gold,show no cricket strategies.,\", the final man gets out of his disapproving, gaining his skin.\",show up on the screen.,show hard action on screen shown.,2\n6964,anetv_Lbdp-HCjWw8,12128,An introduction comes onto the screen for a video about how to play squash. Two men,An introduction comes onto the screen for a video about how to play squash.,Two men,gold,\"are shaving like their legs, explaining that they are going.\",\"pose in a pink polo, where a young cube is.\",pass around on the table with a man that is holding a sunscreen and demonstrates how to throw a ball.,are shown on a squash court playing a game of squash.,3\n6965,anetv_Lbdp-HCjWw8,12132,Tips for the game also show up on the screen. At the end of the video a text box,Tips for the game also show up on the screen.,At the end of the video a text box,gold,\"appears on the screen for candy clips, too.\",appears: pro and cameras as you can hear what it is.,shows up with a fun fact about squash.,comes next to show the video and screen to play scissors split the screen.,2\n6966,anetv_Lbdp-HCjWw8,12130,Text shows up on the screen showing the things you will need for the game. An indication,Text shows up on the screen showing the things you will need for the game.,An indication,gold,is attached to a rope that is pulled by loops on the bottom multiple times to the end.,shows on the screen letting you know the different lines.,smokes in the woods.,introduce a scene with a big screen and words of the view of alcohol that is shown.,1\n6967,anetv_Lbdp-HCjWw8,12129,Two men are shown on a squash court playing a game of squash. Text,Two men are shown on a squash court playing a game of squash.,Text,gold,play the bongos and a man in a striped shirt cleans his hat in the end and firing the balls from each other.,aggressively reach way to tips the balls to the ball with no goal.,shows up on the screen showing the things you will need for the game.,smoke is drained into a green.,2\n6968,lsmdc1019_Confessions_Of_A_Shopaholic-80730,10878,\"Like a woman possessed, someone clambers onto the slippery boardroom table on all fours, propelling herself at the phone. Later in his office, with someone in attendance, someone\",\"Like a woman possessed, someone clambers onto the slippery boardroom table on all fours, propelling herself at the phone.\",\"Later in his office, with someone in attendance, someone\",gold,looks earnestly into someone's face.,leads a red haired girl onto the field.,regards his expectant looking.,drops his phone in a chair.,0\n6969,lsmdc1019_Confessions_Of_A_Shopaholic-80730,10880,\"At her desk, she opens a letter. He\",\"At her desk, she opens a letter.\",He,gold,\"takes the note, takes it, and inserts it playfully.\",plunks himself down on an easy chair that tips back.,\"activates a product of her bound notes, then returns his attention to the pamphlet.\",pulls out a supplies and hands it to someone.,1\n6970,lsmdc1019_Confessions_Of_A_Shopaholic-80730,10879,\"Later in his office, with someone in attendance, someone looks earnestly into someone's face. Someone\",\"Later in his office, with someone in attendance, someone looks earnestly into someone's face.\",Someone,gold,\"cringes then pulls out a citrus juicer, containing a waist - colored liquid.\",follows his friend out to their car as as someone's armored suv fires up into the road.,glances dubiously at someone.,\"stays behind archery across two accomplice, stopping at the end of his saddle and holding their picnic noses.\",2\n6971,lsmdc3041_JUST_GO_WITH_IT-18381,5621,\"Someone turns and her jaw drops at the site of the other woman. Moving in slow motion, someone\",Someone turns and her jaw drops at the site of the other woman.,\"Moving in slow motion, someone\",gold,\"soars backward and positions herself, grabbing the barbed - stick fang.\",blows a kiss to a stranger.,stalks off as the petrified someone approaches.,calls out of her window.,1\n6972,lsmdc3041_JUST_GO_WITH_IT-18381,5620,\"From a stairway, someone ascends into view in a white sheet dress that shows off her long tan legs and graceful curves. Her hair tousled in sexy waves, she\",\"From a stairway, someone ascends into view in a white sheet dress that shows off her long tan legs and graceful curves.\",\"Her hair tousled in sexy waves, she\",gold,pants back and forth with a very stiff leg laying on the floor.,smirks through glamorous sunglasses.,\"wears her long, silky lashes.\",chuckles to herself as the pretty children are at their mother's door.,1\n6973,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-349,16025,\"Someone watches her apply lip gloss. From a window, someone\",Someone watches her apply lip gloss.,\"From a window, someone\",gold,grabs her sunglasses and glimpses them.,scans the quad with his binoculars.,looks down the massive window.,finds her eyes hidden.,1\n6974,anetv_QGzrtgTrwiQ,11228,The man jumps into the sand pit continuously while moving in slow motion. He,The man jumps into the sand pit continuously while moving in slow motion.,He,gold,see title gopro and a fencers.,goes back up and in slow motion stepping forward and taking the second rung off of the screen.,moves down several more times while jumping further each time.,seems to fit the man's costume around the tree.,2\n6975,anetv_QGzrtgTrwiQ,11227,A man is shown performing a long jump in a small frame as leads into him jumping in a large frame. The man,A man is shown performing a long jump in a small frame as leads into him jumping in a large frame.,The man,gold,dance together while the camera captures his movements.,continues throwing the legs of the body and down several tricks and leads by other people underwater.,jumps into the sand pit continuously while moving in slow motion.,does tricks with demonstrate balances up point in the same bars.,2\n6976,anetv_QGzrtgTrwiQ,540,A man is seen long jumping into a pit followed by another man jumping in. More clips,A man is seen long jumping into a pit followed by another man jumping in.,More clips,gold,are shown of people riding down the mountain while performing tricks all around.,are shown of people wrestling and on jump roping as well as interacting with people and running on the sides.,are shown of men running down a track into a pit.,are shown of the man doing flips and tricks on the beam while also walking away.,2\n6977,anetv_QGzrtgTrwiQ,541,More clips are shown of men running down a track into a pit. The video,More clips are shown of men running down a track into a pit.,The video,gold,continues riding around the other moving around a area and ends by walking away.,continues on with more clips of men running.,leads into them jumping abruptly and talking to each other.,continues towards the man hitting the stripes while people watch around them.,1\n6978,lsmdc3052_NO_STRINGS_ATTACHED-25384,6672,A security guard breaks them up. Someone walks away and someone,A security guard breaks them up.,Someone walks away and someone,gold,stares at the steward.,jumps on his back.,opens the door and looks to someone.,drops someone and heads around a corner.,1\n6979,lsmdc3052_NO_STRINGS_ATTACHED-25384,6673,Someone walks away and someone jumps on his back. The guard runs over to them he,Someone walks away and someone jumps on his back.,The guard runs over to them he,gold,holds her up while they all get back into the car.,breaks them up a second time.,hands back a dozen men.,swings to push them upward.,1\n6980,lsmdc3052_NO_STRINGS_ATTACHED-25384,6675,Someone drives someone up outside the hospital. They both,Someone drives someone up outside the hospital.,They both,gold,look up to the window.,agog at the diner.,\"draw a nurse over someone, who sees the outline of her.\",sit staring ahead stony faced.,3\n6981,lsmdc3052_NO_STRINGS_ATTACHED-25384,6674,The guard runs over to them he breaks them up a second time. Someone,The guard runs over to them he breaks them up a second time.,Someone,gold,stumbles back to his feet.,drives someone up outside the hospital.,\"flings back the motorcycle and lands on someone's knees, as he slams the car.\",sips his pistol as someone passes.,1\n6982,lsmdc3052_NO_STRINGS_ATTACHED-25384,6678,\"She turns towards someone, but does n't look at him. She\",\"She turns towards someone, but does n't look at him.\",She,gold,bows and steps forward.,looks pleased as she looks up at him.,gets out of the car and walks towards the hospital.,tenses as she mimes.,2\n6983,lsmdc3052_NO_STRINGS_ATTACHED-25384,6681,Clutching her coat she wanders down the corridor oblivious to dr. Someone,Clutching her coat she wanders down the corridor oblivious to dr.,Someone,gold,sits in front of.,\"flips her apron off, revealing her long - cut hair.\",is joe - aged about eight years old.,is having a candle lit dinner with someone.,3\n6984,lsmdc3052_NO_STRINGS_ATTACHED-25384,6679,She gets out of the car and walks towards the hospital. She,She gets out of the car and walks towards the hospital.,She,gold,stops beneath the red and white emergency sign and looks back.,picks up the horn in the windshield.,jumps out of her way to rope up quickly.,slumps over into the waiting car and flings its hood away.,0\n6985,lsmdc3052_NO_STRINGS_ATTACHED-25384,6677,Someone undoes her seat belt. She,Someone undoes her seat belt.,She,gold,pulls a knife from her chair and dangles over the creature's thigh.,points her body in between.,hangs the dress forward from the ashtray and rushes as someone stands to the doorway.,\"turns towards someone, but does n't look at him.\",3\n6986,lsmdc3052_NO_STRINGS_ATTACHED-25384,6680,\"Still in her pretty silver dress someone walks into the hospital. In a daze, she slowly\",Still in her pretty silver dress someone walks into the hospital.,\"In a daze, she slowly\",gold,sticks to her feet and returns with her back to him.,walks past the front desk.,glances back to her side.,wakes up with a drink.,1\n6987,lsmdc3052_NO_STRINGS_ATTACHED-25384,6676,Tears glistened in someone's eyes. Someone,Tears glistened in someone's eyes.,Someone,gold,undoes her seat belt.,looks down as the hidden turn approaches.,is dragged out of the room.,takes the prison key from someone.,0\n6988,lsmdc0009_Forrest_Gump-50557,1976,\"Someone looks at someone, lets go of someone and rolls. Someone\",\"Someone looks at someone, lets go of someone and rolls.\",Someone,gold,rushes over and surrounds the fire in a burst of flames which rise into the air.,\"backs face down from his seat, gazing at the table in the empty quarters, the door to someone's room.\",grabs someone awkwardly and shakes him down slowly.,sits up as someone looks at him.,3\n6989,lsmdc0009_Forrest_Gump-50557,1981,Someone steps up to someone's bed. Someone,Someone steps up to someone's bed.,Someone,gold,sits on someone's shoulder.,glow a moat glows behind a illuminated sign and plays.,stops in mid - sentence as he looks down at the bed.,\"hangs up, and places the ring on someone's finger.\",2\n6990,lsmdc0009_Forrest_Gump-50557,1979,An officer walks up to him. The officer,An officer walks up to him.,The officer,gold,rides up and addresses someone.,\"takes a sip of his coffee, then immediately turns to someone, who's discovered a industrial, slicked pointed stone.\",holds up an envelope.,places the ring in his pants.,2\n6991,lsmdc0009_Forrest_Gump-50557,1978,Someone plays ping - pong by himself. An officer,Someone plays ping - pong by himself.,An officer,gold,walks up to him.,leads him towards the correspondent bringing up pieces of their english uniforms.,retrieves a plastic phone and tucks it into her breast pocket.,puts the cue stick to the top.,0\n6992,lsmdc0009_Forrest_Gump-50557,1982,Someone stops in mid - sentence as he looks down at the bed. Someone,Someone stops in mid - sentence as he looks down at the bed.,Someone,gold,picks up his hat with two brass letters.,\"somersaults across the room, looking down at the branches of the heavy orthanc.\",turns and look at the nurse.,caresses his sweaty hair as he returns to the bathroom.,2\n6993,lsmdc0009_Forrest_Gump-50557,1980,The officer holds up an envelope. Someone,The officer holds up an envelope.,Someone,gold,sees the elder sword in the top of his blue hat.,gives him a little hug.,steps up to someone's bed.,\"draws the wings, and picks up a cord.\",2\n6994,anetv_MLU2wreEGIg,1754,The boy then pushes himself along across the monkey bars. He,The boy then pushes himself along across the monkey bars.,He,gold,jumps down in the end and begins walking across a bridge.,lets the boy go back and fourth also.,continuously stalks back and fourth and talks to the camera.,bends down as well as the man going to side dropping away down.,0\n6995,anetv_MLU2wreEGIg,1753,A small child is seen standing before a set of monkey bars. The boy then,A small child is seen standing before a set of monkey bars.,The boy then,gold,begins jumping up and down on the beam.,begins hitting the uneven bars on the playground.,puts an earring through the hole to catch a fish.,pushes himself along across the monkey bars.,3\n6996,lsmdc3019_COLOMBIANA-9048,5944,She pauses by the door and raises a detonator. A fire ball,She pauses by the door and raises a detonator.,A fire ball,gold,is thrown into reverse.,swims along the shoreline.,blossoms out from the unit and rolls down the hall.,pops up from the tent and disappears behind a low swimming pool.,2\n6997,lsmdc3019_COLOMBIANA-9048,5975,\"Reaching the kitchen, she bursts into tears. She\",\"Reaching the kitchen, she bursts into tears.\",She,gold,wipes her mouth on a napkin.,arrives with several others.,kneels down to the old woman's crumpled body beside the overturned table and chair.,extends her hand to someone who walks next to her.,2\n6998,lsmdc3019_COLOMBIANA-9048,5967,\"Meanwhile, someone arrives in a changing room and checks a set of lockers. She\",\"Meanwhile, someone arrives in a changing room and checks a set of lockers.\",She,gold,finds one unlocked and opens it.,nods accidentally on stage then pads toward someone.,heads bustling with someone in a salon.,runs past two pins.,0\n6999,lsmdc3019_COLOMBIANA-9048,5928,\"As the elevator approaches the 11th floor, Agent someone draws his gun. Someone\",\"As the elevator approaches the 11th floor, Agent someone draws his gun.\",Someone,gold,takes the top and wallet from his case pocket.,eyes someone as he crawls toward him.,reaches a stairwell and descends just as the elevator arrives.,hugs some boys to their seats.,2\n7000,lsmdc3019_COLOMBIANA-9048,5980,\"The gun drops from her hand. She moves closer, She sinks down before her murdered uncle, and\",The gun drops from her hand.,\"She moves closer, She sinks down before her murdered uncle, and\",gold,backhands him into a wall.,sobs against his shoulder.,props a hand on the frame's pillow.,looks angrily at traffic.,1\n7001,lsmdc3019_COLOMBIANA-9048,5988,\"He wearily takes his frozen dinner to the kitchen and puts it tray in the microwave. Turning, he\",He wearily takes his frozen dinner to the kitchen and puts it tray in the microwave.,\"Turning, he\",gold,sees an attractive wavy haired man and a woman.,finds someone standing nearby in the shadows with her handgun pointed at him.,gets up and walks out to one of the adjoining family's doors.,finds someone sitting alone.,1\n7002,lsmdc3019_COLOMBIANA-9048,5942,\"She sets a charge on the tiled wall and pushes a button. Taking up her enormous rifle, she\",She sets a charge on the tiled wall and pushes a button.,\"Taking up her enormous rifle, she\",gold,inserts the container into the trunk cabinet and opens the gate.,opens it with her chopsticks.,adjusts them backward and tucks it into.,marches down her neighbor's hallway.,3\n7003,lsmdc3019_COLOMBIANA-9048,5953,\"In an elevator, Agent someone speaks into his radio. Someone\",\"In an elevator, Agent someone speaks into his radio.\",Someone,gold,\"watches someone's monitor, then follows him.\",zooms in and continues with headphones.,walks an alarm machine.,eyes monitors in the lobby.,3\n7004,lsmdc3019_COLOMBIANA-9048,5939,\"In the bathroom, someone takes a huge assault rifle down from the crawl space. On the 11th floor, a swat officer\",\"In the bathroom, someone takes a huge assault rifle down from the crawl space.\",\"On the 11th floor, a swat officer\",gold,approaches an i flag as he touches the pistol.,\"draws his pistol and opens the door, exposing the exposed brass machine wagon.\",slips a snake camera under a door while agent someone watches its video monitor.,\"hurls out a catapult, then reaches over the shelf and pulls out a black wand.\",2\n7005,lsmdc3019_COLOMBIANA-9048,5972,\"Later, she arrives at someone's house. She\",\"Later, she arrives at someone's house.\",She,gold,shuts the door and walks home.,halts at the sight of an unfinished cigar on a side table.,\"sit smoking in his sights with a pile of newspaper, food and warming up.\",looks up as he passes a herd of zombies.,1\n7006,lsmdc3019_COLOMBIANA-9048,5950,\"She lands gracefully at ground level. In her apartment, Agent someone\",She lands gracefully at ground level.,\"In her apartment, Agent someone\",gold,peers at her surveillance monitor.,slips the card in his pocket.,cuts up a doctor's uniform.,\"bends down, putting behind her broken mask.\",0\n7007,lsmdc3019_COLOMBIANA-9048,5969,\"Now as a subway train moves through the tunnel, a uniform clad someone slips out onto a catwalk above it. A worker\",\"Now as a subway train moves through the tunnel, a uniform clad someone slips out onto a catwalk above it.\",A worker,gold,pushes several limbs aside and his supplies deposit them with a flamethrower.,checks in instant photos.,mends a track below as she creeps along.,sets a knife over a table with a metal sideboard.,2\n7008,lsmdc3019_COLOMBIANA-9048,5943,\"Taking up her enormous rifle, she marches down her neighbor's hallway. She\",\"Taking up her enormous rifle, she marches down her neighbor's hallway.\",She,gold,follows with a little of the lug nuts and sautes it.,emerges from a black sedan and secures it off the bed.,\"opens the door, and finds a comics elephant.\",pauses by the door and raises a detonator.,3\n7009,lsmdc3019_COLOMBIANA-9048,5958,Swat officers sweep the space with rifle lights. Someone,Swat officers sweep the space with rifle lights.,Someone,gold,sees a motionless figure working.,climbs backward through the narrow vent hole.,sees a dark - skinned agent.,moves through the gate towards her school.,1\n7010,lsmdc3019_COLOMBIANA-9048,5955,\"Meanwhile, someone shoots out a camera. Arriving at another vent cover, she\",\"Meanwhile, someone shoots out a camera.\",\"Arriving at another vent cover, she\",gold,takes a strawberry gun out of a rack.,lets him fall in which she takes her hands off.,finds a shirtless woman lying around.,sets her rifle aside and unscrews the grating with her finger.,3\n7011,lsmdc3019_COLOMBIANA-9048,5987,He sets his gun and badge in a drawer. He,He sets his gun and badge in a drawer.,He,gold,wearily takes his frozen dinner to the kitchen and puts it tray in the microwave.,is walking out onto the street.,\"gives the waitress a quick look, then sets him down.\",put the box to his boot and removes the grimhold.,0\n7012,lsmdc3019_COLOMBIANA-9048,5984,\"Later, he passes a neighbor walking his dog. The agent\",\"Later, he passes a neighbor walking his dog.\",The agent,gold,escorts him into a large home kit.,drives the snow vehicle across a driveway with a fallen tree.,stands in the golf cart.,heads through an iron security gate and approaches the entrance of a brownstone building.,3\n7013,lsmdc3019_COLOMBIANA-9048,5935,\"She races to a door, unlocks it, and slips into a living room where a long haired man watches tv. He\",\"She races to a door, unlocks it, and slips into a living room where a long haired man watches tv.\",He,gold,bolts up as she enters.,follows someone out of the spot.,grabs a bottle of whiskey and saunters around the basin.,responds as someone holds her foot.,0\n7014,lsmdc3019_COLOMBIANA-9048,5934,\"From the stairwell, someone evades the ascending swat team by ducking into a hallway. She\",\"From the stairwell, someone evades the ascending swat team by ducking into a hallway.\",She,gold,leads someone through the dark tunnel lined with his desks and shot racks.,\"races to a door, unlocks it, and slips into a living room where a long haired man watches tv.\",finishes and faces someone.,looks up from a wall with massive columns.,1\n7015,lsmdc3019_COLOMBIANA-9048,5929,Someone reaches a stairwell and descends just as the elevator arrives. Two swat officers cautiously,Someone reaches a stairwell and descends just as the elevator arrives.,Two swat officers cautiously,gold,emerges from the road and disappears.,move in their cases.,scope out the area.,see the utility drill sergeant.,2\n7016,lsmdc3019_COLOMBIANA-9048,5957,She turns as the authorities march into the garage. Swat officers,She turns as the authorities march into the garage.,Swat officers,gold,sweep the space with rifle lights.,\"continue to get dressed, unsure spanish.\",chunky decorate the grass.,\"help the barista, who apparently twirl their deadly names.\",0\n7017,lsmdc3019_COLOMBIANA-9048,5940,\"On the 11th floor, a swat officer slips a snake camera under a door while Agent someone watches its video monitor. He\",\"On the 11th floor, a swat officer slips a snake camera under a door while Agent someone watches its video monitor.\",He,gold,approaches the doctor and gives him a polite smile before following his gaze.,inspects the carved symbols on the panel.,\"form an image of an old man in a gray tunic, sitting on either side.\",finds someone's living room empty.,3\n7018,lsmdc3019_COLOMBIANA-9048,5970,A worker mends a track below as she creeps along. She,A worker mends a track below as she creeps along.,She,gold,strides up a walkway toward daylight.,\"engages in deep, brass games.\",packs a briefcase and removes a black sedan from the adult.,uses a tool saw for baby two tubing.,0\n7019,lsmdc3019_COLOMBIANA-9048,5986,Now he arrives in a modest apartment. He,Now he arrives in a modest apartment.,He,gold,steps into a bedside carrying a gray silk blouse.,gets on the phone and shuts the door.,sets his gun and badge in a drawer.,places a glass on a top shelf.,2\n7020,lsmdc3019_COLOMBIANA-9048,5946,A fiery blast rips a hole in the bathroom wall. Agent someone,A fiery blast rips a hole in the bathroom wall.,Agent someone,gold,hands his wand.,\"stands as someone carefully peers near the bone tunnel, his dirty tail sticking open.\",stands calmly in an elevator that jostles with the force of the explosion.,picks up a cd and hears a whimpering groan.,2\n7021,lsmdc3019_COLOMBIANA-9048,5922,\"One of her monitors reads, Third party on line.. A surveillance feed\",\"One of her monitors reads, Third party on line..\",A surveillance feed,gold,flies up to her as she is going to the next room.,shows the swat truck arriving outside.,shows her arriving and carrying a sleek black sticker.,crosses a news report.,1\n7022,lsmdc3019_COLOMBIANA-9048,5933,\"Agent someone arrives in another corridor with more gunmen. From the stairwell, someone\",Agent someone arrives in another corridor with more gunmen.,\"From the stairwell, someone\",gold,sits at a netted area where the three of them stand.,watches sympathetically as someone pushes down a gate - locked hangar.,attaches his wrist.,evades the ascending swat team by ducking into a hallway.,3\n7023,lsmdc3019_COLOMBIANA-9048,5949,\"Someone slides down a cluster of pipes in the shaft, passing several stories. She\",\"Someone slides down a cluster of pipes in the shaft, passing several stories.\",She,gold,lands gracefully at ground level.,pushes him away.,\"shows the theater room, where the children watch from music to a hallway while a judge swigs from a bottle.\",heads down the staircase to a run - net window and someone shines it on the elevator.,0\n7024,lsmdc3019_COLOMBIANA-9048,5963,\"Someone tiptoes through a vent system. As they search, someone\",Someone tiptoes through a vent system.,\"As they search, someone\",gold,finds the knife locked.,pads through a shadowy tunnel.,tosses the smoke to someone who takes it and faces it.,leaps toward someone.,1\n7025,lsmdc3019_COLOMBIANA-9048,5956,\"Arriving at another vent cover, she sets her rifle aside and unscrews the grating with her finger. She\",\"Arriving at another vent cover, she sets her rifle aside and unscrews the grating with her finger.\",She,gold,shoots the guard in the direction.,turns as the authorities march into the garage.,watches someone swinging someone in the lid.,puts her head around another woman.,1\n7026,lsmdc3019_COLOMBIANA-9048,5978,\"Reaching a doorway, she stops and slumps against the frame. She\",\"Reaching a doorway, she stops and slumps against the frame.\",She,gold,shuffles through a living room to a sitting room.,\"looks about, his eyes behind her.\",puts her hand on her shoulder.,wrenches her seat book off and falls back onto the bed.,0\n7027,lsmdc3019_COLOMBIANA-9048,5954,\"Someone eyes monitors in the lobby. Meanwhile, someone\",Someone eyes monitors in the lobby.,\"Meanwhile, someone\",gold,shoots out a camera.,glares to the steel tray.,reclined on the deck at the camp table where a valet sits around a television.,places his outlined robotic against a block of light.,0\n7028,lsmdc3019_COLOMBIANA-9048,5927,Swat officers climb a stairwell. Someone,Swat officers climb a stairwell.,Someone,gold,crouches in front of someone as he helps an armed wrestler climb the beam.,keeps his dusty gaze trained on a locked gate.,\"runs barefoot down the hall, gun in hand.\",slides a business card against someone's blazer pocket and covers the utility rod.,2\n7029,lsmdc3019_COLOMBIANA-9048,5952,\"Someone crawls out from the shaft. In an elevator, Agent someone\",Someone crawls out from the shaft.,\"In an elevator, Agent someone\",gold,swings to the far end of the corridor towards a wall.,hands the attendant a vial of gas.,speaks into his radio.,and someone step inside.,2\n7030,lsmdc3019_COLOMBIANA-9048,5961,Her foot retracts from view just as the swat team rounds the corner. Agents someone and someone,Her foot retracts from view just as the swat team rounds the corner.,Agents someone and someone,gold,pass while a spar competes quivering pipe with sting.,arrive and march through the damp garage.,catch up to their shoes.,eat shelter in an arena by the ark.,1\n7031,lsmdc3019_COLOMBIANA-9048,5936,He bolts up as she enters. She,He bolts up as she enters.,She,gold,turns the engine on.,leans to him that look like the tourists.,\"slams his head against a coffee table, knocking him out.\",\"shoves the paper carrier into the garden, laying her on the bed.\",2\n7032,lsmdc3019_COLOMBIANA-9048,5983,\"At a store, he buys a frozen dinner. Later, he\",\"At a store, he buys a frozen dinner.\",\"Later, he\",gold,packs a garment and cigarette.,returns to his professional motel.,passes a neighbor walking his dog.,leaves several other presents.,2\n7033,lsmdc3019_COLOMBIANA-9048,5976,She kneels down to the old woman's crumpled body beside the overturned table and chair. Someone,She kneels down to the old woman's crumpled body beside the overturned table and chair.,Someone,gold,leaps in to the foreground and pulls off a chain - string near his ear.,is coming toward the ballerina on the floor when she is talking loudly.,takes it off and sits down beside someone.,scrambles to her feet.,3\n7034,lsmdc3019_COLOMBIANA-9048,5962,Agents someone and someone arrive and march through the damp garage. Someone,Agents someone and someone arrive and march through the damp garage.,Someone,gold,tiptoes through a vent system.,goes to a table overlooking the well - built a.,\"shoots, then spots a round of cross at the gate.\",is in the trunk of four only cars.,0\n7035,lsmdc3019_COLOMBIANA-9048,5923,The team storms the building. She,The team storms the building.,She,gold,climbs a flight of stairs then leaps from the ceiling.,drops her cell and rummages through a drawer.,cuts a long piece of wood.,peeks out of the overhead window at the rear of the window.,1\n7036,lsmdc3019_COLOMBIANA-9048,5979,\"In front of her, a bloody someone sits tied to a chair, his head drooped forward. The gun\",\"In front of her, a bloody someone sits tied to a chair, his head drooped forward.\",The gun,gold,falls from his shoulder.,is spattered on a wagon.,'s pressed to his chest.,drops from her hand.,3\n7037,lsmdc3019_COLOMBIANA-9048,5932,\"Meanwhile, the swat team accompanying someone reaches her apartment door. Agent someone\",\"Meanwhile, the swat team accompanying someone reaches her apartment door.\",Agent someone,gold,withdraws a view of the sailors onto the ship's lifeboat.,arrives in another corridor with more gunmen.,steps on an upper floor with her corn locked.,follows his gaze to the handcuff pulling out someone's phone.,1\n7038,lsmdc3019_COLOMBIANA-9048,5926,Someone finds a key then takes a handgun from a table's underside. She,Someone finds a key then takes a handgun from a table's underside.,She,gold,extends it to the shelf of it.,takes the phone out and places it on the bed.,returns with the cigarette as he goes to the kitchen.,peeks out her apartment door into the hall.,3\n7039,lsmdc3019_COLOMBIANA-9048,5981,\"She moves closer, She sinks down before her murdered uncle, and sobs against his shoulder. She\",\"She moves closer, She sinks down before her murdered uncle, and sobs against his shoulder.\",She,gold,guides the iv bottle into his hood.,kisses someone's hand.,\"pulls out a rod and pulling him close, forcing her arm upward.\",buries her face in his lap.,3\n7040,lsmdc3019_COLOMBIANA-9048,5947,\"The swat team enters her apartment while she approaches the fresh hole in the wall. In the bathroom, someone\",The swat team enters her apartment while she approaches the fresh hole in the wall.,\"In the bathroom, someone\",gold,takes out her bottle then spaghetti.,lies on the motorcycle with his gun aimed next to his father's chest.,uses a cable to lower her rifle down a now exposed shaft.,stares at the label - framed window.,2\n7041,lsmdc3019_COLOMBIANA-9048,5941,\"In the bathroom, someone collects a hidden arsenal of weapons. She\",\"In the bathroom, someone collects a hidden arsenal of weapons.\",She,gold,sets a charge on the tiled wall and pushes a button.,pulls someone out of the hold and heads for him.,turns and finds blocks with buckles.,moves out of the door and brushes the buttons and critique.,0\n7042,lsmdc3019_COLOMBIANA-9048,5971,\"She strides up a walkway toward daylight. Later, she\",She strides up a walkway toward daylight.,\"Later, she\",gold,smirks as a fleet of planes sails overhead.,arrives in the sunny market resort.,arrives at someone's house.,turns into the promontory streaming from someone's main crib.,2\n7043,lsmdc3019_COLOMBIANA-9048,5965,\"A swat Humvee arrives in the garage with its lights flashing, trailed by two police cruisers. Agent someone\",\"A swat Humvee arrives in the garage with its lights flashing, trailed by two police cruisers.\",Agent someone,gold,turns to another uniformed security guards.,brings his massive eye.,lies asleep in bed.,turns to face them.,3\n7044,lsmdc3019_COLOMBIANA-9048,5925,\"Outside, someone puts on a bulletproof vest. Someone\",\"Outside, someone puts on a bulletproof vest.\",Someone,gold,releases a lifeboat into a bin.,\"pats someone shoulder, sighs, and slams his shoulder against a wall.\",gazes out and smashes the knuckles at the white locker.,finds a key then takes a handgun from a table's underside.,3\n7045,lsmdc3019_COLOMBIANA-9048,5964,\"As they search, someone pads through a shadowy tunnel. A swat Humvee\",\"As they search, someone pads through a shadowy tunnel.\",A swat Humvee,gold,\"arrives in the garage with its lights flashing, trailed by two police cruisers.\",disappear from sight and landing on his brace.,sits down on top of the slimy mushroom.,appears with someone about her ornate helmet.,0\n7046,lsmdc3019_COLOMBIANA-9048,5977,\"Someone scrambles to her feet. Reaching a doorway, she\",Someone scrambles to her feet.,\"Reaching a doorway, she\",gold,finds someone near the railing.,stops and slumps against the frame.,sees someone's cat.,\"grabs the couch, then closes the door behind her.\",1\n7047,lsmdc3019_COLOMBIANA-9048,5931,\"In the stairwell, someone pauses briefly, looking down. Meanwhile, the swat team accompanying someone\",\"In the stairwell, someone pauses briefly, looking down.\",\"Meanwhile, the swat team accompanying someone\",gold,reaches her apartment door.,watches with electronic eyes.,drones a couple of feet into smaller acolytes.,looks onto and the ten turns her back to him.,0\n7048,lsmdc3019_COLOMBIANA-9048,5968,\"She finds one unlocked and opens it. Now as a subway train moves through the tunnel, a uniform clad someone\",She finds one unlocked and opens it.,\"Now as a subway train moves through the tunnel, a uniform clad someone\",gold,emerges from her apartment and undoes the seat belt.,walks in hallway through a window as he zooms inside.,lies on the wet ground beside her.,slips out onto a catwalk above it.,3\n7049,lsmdc3019_COLOMBIANA-9048,5951,\"In her apartment, Agent someone peers at her surveillance monitor. Someone\",\"In her apartment, Agent someone peers at her surveillance monitor.\",Someone,gold,crawls out from the shaft.,spots an aide with glasses on her own.,helps someone down a cellphone's window.,advances at the chute.,0\n7050,lsmdc3019_COLOMBIANA-9048,5930,\"Two swat officers cautiously scope out the area. In the stairwell, someone\",Two swat officers cautiously scope out the area.,\"In the stairwell, someone\",gold,heads through the night.,\"pauses briefly, looking down.\",wakes into the cigarette.,paces with someone in his parked car.,1\n7051,lsmdc3019_COLOMBIANA-9048,5960,\"She contorts, struggling to fit her long limbs inside. Her foot\",\"She contorts, struggling to fit her long limbs inside.\",Her foot,gold,retracts from view just as the swat team rounds the corner.,\"follows the torch beam, down a deep rapid pace.\",drops down to his pants.,ripples with a deadly look.,0\n7052,lsmdc3019_COLOMBIANA-9048,5989,\"Turning, he finds someone standing nearby in the shadows with her handgun pointed at him. He\",\"Turning, he finds someone standing nearby in the shadows with her handgun pointed at him.\",He,gold,touches the barrel of someone's face.,stops and pulls off the pin.,sits as she shows the disconnected cameras.,kicks a window and tosses it out of view.,2\n7053,lsmdc3019_COLOMBIANA-9048,5937,\"She slams his head against a coffee table, knocking him out. Her gun ready, she\",\"She slams his head against a coffee table, knocking him out.\",\"Her gun ready, she\",gold,kicks him off and punches with the camera.,\"opens the bottle, then throws it on the table.\",proceeds to a bathroom.,lobs it and aims her gun at him from the ceiling.,2\n7054,lsmdc3019_COLOMBIANA-9048,5966,\"Agent someone turns to face them. Meanwhile, someone\",Agent someone turns to face them.,\"Meanwhile, someone\",gold,steps toward a car and uses the phone to insert the chest button.,arrives in a changing room and checks a set of lockers.,walks along the sidewalk past someone's desk.,looks from someone's private courtyard and turns off the light towards a locked door.,1\n7055,lsmdc3019_COLOMBIANA-9048,5924,\"She drops her cell and rummages through a drawer. Outside, someone\",She drops her cell and rummages through a drawer.,\"Outside, someone\",gold,rounds an abandoned wall in an alley.,puts on a bulletproof vest.,dumps out his bags from the tent.,reads a magazine in two children.,1\n7056,lsmdc3019_COLOMBIANA-9048,5959,Someone climbs backward through the narrow vent hole. She,Someone climbs backward through the narrow vent hole.,She,gold,flings into the elevator and bumps on an awning as someone strikes a pose.,is almost beyond him.,\"approaches someone, who reels on the ledge above it.\",\"contorts, struggling to fit her long limbs inside.\",3\n7057,lsmdc3019_COLOMBIANA-9048,5938,\"Her gun ready, she proceeds to a bathroom. In the bathroom, someone\",\"Her gun ready, she proceeds to a bathroom.\",\"In the bathroom, someone\",gold,is headphones.,takes a huge assault rifle down from the crawl space.,stares at dry grass as she rubs his shoulder.,perches on her cot barrier as she watches with a determined expression.,1\n7058,lsmdc3019_COLOMBIANA-9048,5974,\"Nearing the top, she finds someone's shattered sunglasses lying on the second floor, inches from his limp hand. She\",\"Nearing the top, she finds someone's shattered sunglasses lying on the second floor, inches from his limp hand.\",She,gold,rocks down on his knees and hoist a head.,aims her gun upward then ventures on.,\"jogs down a corridor, barely a maid's dark red shadow.\",watches him on the back and lowers his gaze to the atrium's edge.,1\n7059,lsmdc3019_COLOMBIANA-9048,5945,\"Meanwhile, someone punches her detonator. A fiery blast\",\"Meanwhile, someone punches her detonator.\",A fiery blast,gold,lands on the battlements as the lights go out.,sends a sprawling sweep of the large vase towards a floor.,erupts around the boy and knocks him against a wall.,rips a hole in the bathroom wall.,3\n7060,lsmdc3019_COLOMBIANA-9048,5973,\"She halts at the sight of an unfinished cigar on a side table. Drawing a handgun, she\",She halts at the sight of an unfinished cigar on a side table.,\"Drawing a handgun, she\",gold,takes the jigger from the case.,sits on a folding chair.,\"heads away, leaving an attractive young woman sitting alone.\",proceeds through the foyer.,3\n7061,lsmdc3015_CHARLIE_ST_CLOUD-829,7066,He stares mesmerized out at the water. Someone,He stares mesmerized out at the water.,Someone,gold,\"bows his head, then shifts his gaze to the tiger.\",looks over and pinches her thumb.,\"looks away sucking in a breath, then returns his gaze to the sailboat.\",covers her face with a blanket.,2\n7062,lsmdc3015_CHARLIE_ST_CLOUD-829,7065,\"Heading toward the harbor, someone lifts his gaze and stops. He\",\"Heading toward the harbor, someone lifts his gaze and stops.\",He,gold,observes the mustached man approaching.,raises his gun as a transport crashes through the door of the train.,lumbers wearily to the bed.,stares mesmerized out at the water.,3\n7063,lsmdc3015_CHARLIE_ST_CLOUD-829,7067,\"Someone looks away sucking in a breath, then returns his gaze to the sailboat. As he sets his bag in the back of his gater, he\",\"Someone looks away sucking in a breath, then returns his gaze to the sailboat.\",\"As he sets his bag in the back of his gater, he\",gold,clicks his thumb and glowers.,glances at his watch.,puts thread on his back.,joins the young man at a booth.,1\n7064,lsmdc3015_CHARLIE_ST_CLOUD-829,7063,\"Now, he strides out of the restaurant, his eyes cast downward. As he steps into the street, a fisherman in waterproof bib pants\",\"Now, he strides out of the restaurant, his eyes cast downward.\",\"As he steps into the street, a fisherman in waterproof bib pants\",gold,maneuvers past as sebastian joins him.,runs out of the train.,passes him carrying a coil of rope slung over his shoulder.,out on a different street as he runs and listens as he speaks.,2\n7065,lsmdc3015_CHARLIE_ST_CLOUD-829,7064,\"As he steps into the street, a fisherman in waterproof bib pants passes him carrying a coil of rope slung over his shoulder. Heading toward the harbor, someone\",\"As he steps into the street, a fisherman in waterproof bib pants passes him carrying a coil of rope slung over his shoulder.\",\"Heading toward the harbor, someone\",gold,lifts his gaze and stops.,hikes snowy through a telescope.,flies up in his hold.,carries someone through the large carton of water.,0\n7066,lsmdc3015_CHARLIE_ST_CLOUD-829,7068,\"As he sets his bag in the back of his gater, he glances at his watch. Someone\",\"As he sets his bag in the back of his gater, he glances at his watch.\",Someone,gold,faces someone and leads someone through a flat staircase with his arms raised.,passes the news crew and strides down the pier with his eyes fixed on the boat.,gets on the bars and does the same thing.,bends his head down moving his hands to free itself.,1\n7067,anetv_kAmDOTsp5cs,12858,\"Also, the man jump rope criss cross and jumps rope double. Then the man\",\"Also, the man jump rope criss cross and jumps rope double.\",Then the man,gold,spins and flip himself and do tricks.,falls to the ground and the guy helps to swing it over the rope.,stops and gets on the rope and does some higher lifts.,jumps rope doing squatting jumps and jump lunges.,3\n7068,anetv_kAmDOTsp5cs,12857,\"After, the man holds the rope on his left hand and skip while turning the rope. Next, the man alternate skipping rope and\",\"After, the man holds the rope on his left hand and skip while turning the rope.\",\"Next, the man alternate skipping rope and\",gold,show off which a horizontal stance of falls.,flip the rope side to side on front.,jumps on the rope and pulls up rope on his rope.,starts to spin around and walks in another circle.,1\n7069,anetv_kAmDOTsp5cs,12856,\"A man skip rope in a drive way, then the man jumps and skip rope. After, the man\",\"A man skip rope in a drive way, then the man jumps and skip rope.\",\"After, the man\",gold,puts his arms in the air and runs past with the jump.,finishes and the man finishes the horse and spins around the field.,holds the rope on his left hand and skip while turning the rope.,puts his helmet on the ski in a training room.,2\n7070,lsmdc3088_WHATS_YOUR_NUMBER-42003,10790,\"He reaches down the front of his pants, then brings his fingers up to his nose. Later, someone\",\"He reaches down the front of his pants, then brings his fingers up to his nose.\",\"Later, someone\",gold,briskly puts down a box.,rushes out of the lab as someone exits a nearby elevator.,paces anxiously in her living room.,washes his face with a white bandage.,2\n7071,lsmdc3088_WHATS_YOUR_NUMBER-42003,10791,\"Later, someone paces anxiously in her living room. Someone\",\"Later, someone paces anxiously in her living room.\",Someone,gold,joins her as he uses a massage board.,opens the door to her neighbor.,\"reads a science book, clutching her notebook, as she looks out of the crib.\",\"blinks awake, her eyes fixed on the clock keyboard as he dance on the dance floor.\",1\n7072,anetv_8RntjHIwMNo,15365,People are standing behind large drums. A man,People are standing behind large drums.,A man,gold,is behind them playing the drums.,walks into frame holding an instrument in his hands and begins playing the bagpipes.,begins playing the drums.,is playing the guitar while waving his hands and playing the instrument.,2\n7073,anetv_8RntjHIwMNo,12217,A small group of people are seen standing together and speaking. The group then,A small group of people are seen standing together and speaking.,The group then,gold,begin hitting waves together while smiling to one another.,begins washing a dog's fur with several shoes.,begin moving around the horses and walking off along the road.,begins playing on a set of drums.,3\n7074,anetv_jExOw6W1I3E,12637,Several people are in line at a restaurant waiting to receive something. The camera then moves to a woman behind the bar and she,Several people are in line at a restaurant waiting to receive something.,The camera then moves to a woman behind the bar and she,gold,starts to drink the beer.,begins to kneel down and looks down off the camera.,gives one a look and papers proceed out.,hammers a few flips and walks away.,0\n7075,anetv_jExOw6W1I3E,3140,The camera then stops at a man with a tall beer glass. the man,The camera then stops at a man with a tall beer glass.,the man,gold,\"pours them in a glass, showing off the cup.\",spits into a cup and then holds the ball directly over the counter board.,lacing the yellow shirt and succeeds.,drinks the entire contents of the glass with one swallow.,3\n7076,anetv_jExOw6W1I3E,12638,The camera then moves to a woman behind the bar and she starts to drink the beer. She then,The camera then moves to a woman behind the bar and she starts to drink the beer.,She then,gold,\"shakes the book several more times, aiming it.\",sits down and put the arm on her back.,pours the lemon into the pot and pours her glass into the glass.,holds up the glass and chugs the beer in one cup.,3\n7077,anetv_jExOw6W1I3E,3139,Different people are introduced to the camera. the camera then,Different people are introduced to the camera.,the camera then,gold,passes with replay jumping and phonograph.,stops at a man with a tall beer glass.,pans and ends an snowboarding.,pans to show a snowboarder stepping vertical and again afterwards.,1\n7078,anetv_Lg-mJS-BZZo,4854,The man pushes the machinery around the lawn while looking into the camera. The man,The man pushes the machinery around the lawn while looking into the camera.,The man,gold,slows to a halt and look past the car by end slowly panning the area.,continues using the machine while looking off into the camera.,picks up an airplane and gives another thumbs up.,looks more up and fourth using the brush and shows more clips of the person as well as talking.,1\n7079,anetv_Lg-mJS-BZZo,4853,A person is seen wearing a funny costume while holding onto a piece of machinery. The man,A person is seen wearing a funny costume while holding onto a piece of machinery.,The man,gold,pulls several pipes down onto his mouth and twists his arms around his waist.,begins playing his flute while the camera captures his movements.,pushes the machinery around the lawn while looking into the camera.,begins trimming one person's leg again while everyone watches.,2\n7080,anetv_sq0cKsoX7mg,8401,A group of people are playing tennis inside a gym. A woman,A group of people are playing tennis inside a gym.,A woman,gold,\"joins them in a red circle, then a woman stands upright.\",is still talking in front of the camera.,turns flips and swings her racquet.,uses a rope on a violin.,2\n7081,anetv_sq0cKsoX7mg,8402,A woman turns flips and swings her racquet. She then,A woman turns flips and swings her racquet.,She then,gold,walks back and forth between the two.,continues practicing and baton.,starts to walk away.,works in various positions.,2\n7082,anetv_fFoYCI-Si6s,16406,One is in boxing gloves and the other is wearing arm guards. They,One is in boxing gloves and the other is wearing arm guards.,They,gold,show off the different moves in punching and kicking.,are rolling down both pins.,stop and point at each other.,are shooting chase and shooting with swords.,0\n7083,anetv_fFoYCI-Si6s,16405,Two men are inside a gym. One is in boxing gloves and the other,Two men are inside a gym.,One is in boxing gloves and the other,gold,begins sharpening the lapel of a shirt.,is helping him out of the wall.,are watching the timer.,is wearing arm guards.,3\n7084,lsmdc1057_Seven_pounds-97628,11066,\"Someone enters someone's room. Frail and white - haired, someone\",Someone enters someone's room.,\"Frail and white - haired, someone\",gold,is lying in bed.,stands with her mouth hanging open.,holds up a bottle of liquor.,sits on a bench near a doorway.,0\n7085,lsmdc1057_Seven_pounds-97628,11076,Someone nods and writes some more. Someone,Someone nods and writes some more.,Someone,gold,looks at someone wearily.,glances at someone 'gem.,picks up a marker.,races up to the can and approaches someone.,0\n7086,lsmdc1057_Seven_pounds-97628,11074,\"Someone, who has straggly hair, remains blank. Someone\",\"Someone, who has straggly hair, remains blank.\",Someone,gold,turns her head slowly to look at someone.,looks at the unseen wound.,looks into the darkness at his side.,gets back under the tree and puts a cap over the healthy hood.,0\n7087,lsmdc1057_Seven_pounds-97628,11072,He moves gingerly to a chair and turns it towards her bed. Someone,He moves gingerly to a chair and turns it towards her bed.,Someone,gold,sits down at someone's bedside.,makes to pose for a gypsy.,lowers her hand and caresses his cheek with his thumb.,leans over to see her hand scar.,0\n7088,lsmdc1057_Seven_pounds-97628,11070,\"She stares ahead, stony - faced. Someone\",\"She stares ahead, stony - faced.\",Someone,gold,turns her head in shame.,puts his briefcase on the floor.,sucks another drag.,slaps her hand on someone's stomach.,1\n7089,lsmdc1057_Seven_pounds-97628,11068,She ignores him and merely sighs. Someone,She ignores him and merely sighs.,Someone,gold,gives a kindly smile.,glances back as someone tosses up her champagne bottle.,looks quizzically at her wide - eyed husband.,leaves the maitre d 'and shrugs.,0\n7090,lsmdc1057_Seven_pounds-97628,11067,\"Frail and white - haired, someone is lying in bed. She\",\"Frail and white - haired, someone is lying in bed.\",She,gold,ignores him and merely sighs.,\"hands the phone to someone, then steps back in bed.\",gets to her feet from the couch.,leads him toward a rundown rooftop.,0\n7091,lsmdc1057_Seven_pounds-97628,11071,Someone puts his briefcase on the floor. He,Someone puts his briefcase on the floor.,He,gold,pulls them down and looks down at them.,moves gingerly to a chair and turns it towards her bed.,shows them up to the group's men.,puts it in his pocket.,1\n7092,lsmdc1057_Seven_pounds-97628,11075,\"She stares at someone pensively, then turns stiffly and reaches out a bony hand to pick up her writing pad and pen from a surface nearby. Someone\",\"She stares at someone pensively, then turns stiffly and reaches out a bony hand to pick up her writing pad and pen from a surface nearby.\",Someone,gold,takes her bag and covers it to her ear.,talked from someone to people.,\"studies someone once more, then begins to write something down.\",sneaks up on someone 'side.,2\n7093,lsmdc1057_Seven_pounds-97628,11062,Someone looks awkward and leans forward. Someone,Someone looks awkward and leans forward.,Someone,gold,sleeps at the station.,tosses a partially - covered headset into the driver's hand.,stares at him impassively.,covers her eyes with wide eyes.,2\n7094,lsmdc1057_Seven_pounds-97628,11069,Someone gives a kindly smile. She,Someone gives a kindly smile.,She,gold,\"stares ahead, stony - faced.\",\"gives a plus notice, then moves to hug central cake.\",looks away from him.,glares at him.,0\n7095,lsmdc1057_Seven_pounds-97628,11065,\"He straightens up again, smiles faintly and picks up his briefcase. Someone\",\"He straightens up again, smiles faintly and picks up his briefcase.\",Someone,gold,enters someone's room.,walks up to him.,\"puts it in a chain pocket, reaches for his wand, then someone.\",holds a pair of keys.,0\n7096,lsmdc1057_Seven_pounds-97628,11064,Someone nods and cocks his head to one side as he continues staring at someone. He,Someone nods and cocks his head to one side as he continues staring at someone.,He,gold,tries to pull them off.,reaches for his gun and slaps the back of his neck.,\"straightens up again, smiles faintly and picks up his briefcase.\",tries to bite himself but instead stops smiling.,2\n7097,lsmdc1057_Seven_pounds-97628,11063,Someone stares at him impassively. Someone,Someone stares at him impassively.,Someone,gold,\"steps onto the balcony and opens the door, but someone steps inside.\",\"covers his mouth, then looks down at the drink halfway on his drink.\",nods and cocks his head to one side as he continues staring at someone.,\"meets her one gaze, then returns his gaze to the table.\",2\n7098,lsmdc1057_Seven_pounds-97628,11073,Someone sits down at someone's bedside. She,Someone sits down at someone's bedside.,She,gold,continues staring vacantly ahead.,sits at the wheel and opens the cabinet.,\"wipes her nose, rubs her nose.\",\"drops her head, then runs to her hair.\",0\n7099,anetv_pRGlbeqRfM0,11579,The man and the girl are drinking from a white cup. the girl,The man and the girl are drinking from a white cup.,the girl,gold,slams the kid in the floor.,holds the drink in her mouth and spit it on the grass and the man do the same.,is going into the patio.,is spraying the small dog and her toothbrush.,1\n7100,anetv_pRGlbeqRfM0,11578,Girl wearing glasses is talking to the camera. the man and the girl,Girl wearing glasses is talking to the camera.,the man and the girl,gold,are drinking from a white cup.,are diving into the water.,does a flip in the grass.,are standing in the pool in a clearing.,0\n7101,anetv_pRGlbeqRfM0,11577,Man weaing a green shirt is standing next to a little girl. girl wearing glasses,Man weaing a green shirt is standing next to a little girl.,girl wearing glasses,gold,is wearing a hat jumping and talking to the camera.,is holding a harmonica and talking to the camera.,is standing in front of a tv set.,is talking to the camera.,3\n7102,anetv_yhWw7oJrUFo,11567,A girl wearing a black blouse describes how to bake in a kitchen. The baker,A girl wearing a black blouse describes how to bake in a kitchen.,The baker,gold,takes the pan and puts icing on the egg.,\"step up and puts the mango on, slicing a half in the wheel oven.\",pours flour into a clear bowl using a measuring cup.,peel their lemon over the cookies and place the cookies in the oven.,2\n7103,anetv_moqRG7uwZ4Q,12097,The leaf blower blows brown dried up leaves using the leaf blower. The leaves,The leaf blower blows brown dried up leaves using the leaf blower.,The leaves,gold,are blown away from some lawn furniture and blown towards the middle of the yard.,blow leaves behind it.,fly through the grass next to the tree that falls to the ground.,is blowing dead leaves in a person's yard with a leaf blower.,0\n7104,anetv_moqRG7uwZ4Q,12096,A view of a leaf blower lays on the ground in a yard. The leaf blower,A view of a leaf blower lays on the ground in a yard.,The leaf blower,gold,rises into the air and is shown again in slow motion.,blows brown dried up leaves using the leaf blower.,becomes a leaf blower.,continues moving across the snow.,1\n7105,anetv_EInkc1uEX3c,9201,\"The floor is swept, cleaned, and prepared for the process. The men\",\"The floor is swept, cleaned, and prepared for the process.\",The men,gold,are running down where the meat is breaking and struggling to keep the snow clean.,begin to lay the vinyl flooring across the floor one piece at a time.,all measure the finish doing the viewers that the customers are paying a lot of attention.,\"jump out of the corners of the newlyweds and begin to burn, close by as the men turn to face him.\",1\n7106,anetv_EInkc1uEX3c,9200,An introduction comes onto the screen for a video about laying a floor. The floor,An introduction comes onto the screen for a video about laying a floor.,The floor,gold,\"is cut thick, and showing how to use it tool.\",is folding under this arm.,\"is swept, cleaned, and prepared for the process.\",is showing other woman supplies to do a tattoo on the wall.,2\n7107,anetv_EInkc1uEX3c,17192,Two men are making measurements on the floor. A man,Two men are making measurements on the floor.,A man,gold,walks around the wall and mats a wall.,is wiping a car in front of a customer.,is mixing adhesive in a bucket.,is standing on the side of a trampoline.,2\n7108,anetv_EInkc1uEX3c,17197,A man polishes the wooden floorboards with a cloth. A man,A man polishes the wooden floorboards with a cloth.,A man,gold,stands by a wallpaper.,starts paint onto a wall.,uses a roller on the floorboards.,sprays down on the surface using white paint.,2\n7109,anetv_EInkc1uEX3c,17189,Flooring tools are displayed on a table. A man with a broom and dustpan,Flooring tools are displayed on a table.,A man with a broom and dustpan,gold,men begin standing in a circle.,a machine is shown.,is polishing the floor.,is cleaning the floor.,3\n7110,anetv_EInkc1uEX3c,17195,The man proceeds to spread the adhesive. A man,The man proceeds to spread the adhesive.,A man,gold,cleans a dictaphone carpet with chocolate flooring.,is installing wooden floorboards.,takes the cutting out of the declared and leaves.,stands next to an elliptical machine while the man talks while the woman demonstrates how to uses the machine.,1\n7111,anetv_EInkc1uEX3c,17196,A man is installing wooden floorboards. A man,A man is installing wooden floorboards.,A man,gold,polishes the wooden floorboards with a cloth.,scrapes on the roof when he skiis up.,is cleaning the bedroom tiles.,measures wallpaper to put on a wooden board.,0\n7112,anetv_EInkc1uEX3c,17194,The man pours the adhesive onto the floor. The man,The man pours the adhesive onto the floor.,The man,gold,adds a silver piece of tile to the carpet.,proceeds to spread the adhesive.,removes cement from the wall and tiles the wall.,uses the ax to cut some excess wallpaper from the wall.,1\n7113,anetv_EInkc1uEX3c,17190,A man with a broom and dustpan is cleaning the floor. The man,A man with a broom and dustpan is cleaning the floor.,The man,gold,moves the bucket down and gets it.,is vacuuming the floor with a tiled cleaning.,holds up a bottle of bleach.,is then mopping the floor.,3\n7114,anetv_EInkc1uEX3c,9202,The men begin to lay the vinyl flooring across the floor one piece at a time. The final result,The men begin to lay the vinyl flooring across the floor one piece at a time.,The final result,gold,is shown once another is finished.,is shown on the table.,is a program being used before cut in the end.,is shown on the screen.,3\n7115,anetv_EInkc1uEX3c,17191,The man is then mopping the floor. Two men,The man is then mopping the floor.,Two men,gold,are shown lifting weights and changing overhead.,wash the mop and start to mop.,are making measurements on the floor.,demonstrate different methods to wash their shoes.,2\n7116,anetv_EInkc1uEX3c,17193,A man is mixing adhesive in a bucket. The man,A man is mixing adhesive in a bucket.,The man,gold,lowers his hands then removes the iron.,puts a wood bowl on a metal.,continues vacuuming the carpet.,pours the adhesive onto the floor.,3\n7117,anetv_qU_605hliNw,2395,A camera pans all around a wooded area and leads into two people riding around on skis. Several shots,A camera pans all around a wooded area and leads into two people riding around on skis.,Several shots,gold,are shown of people riding along as well as close ups of horses and people riding motorcycles along the dirt.,are shown of people riding around in bikes as well as falling into obstacles.,are shown of people on boards as well as kids watching the lake people.,are shown of various people riding behind a boat on skis and performing tricks.,3\n7118,anetv_Zxi0V2pBPlA,11649,A woman is using wax to clean his legs. Then they,A woman is using wax to clean his legs.,Then they,gold,rip the wax off his legs one strip at a time.,move back and forth using moves as a woman steps onto the machine.,start shining the shoes on the burning boot.,rub wax sign over the tile then the woman rubs a head of lotion.,0\n7119,anetv_Zxi0V2pBPlA,14040,Two women are spreading wax onto his legs. They then,Two women are spreading wax onto his legs.,They then,gold,lay down on shelter apart.,\"rip the wax off, removing the hair.\",rub the rubber on their bodies.,stencil a new razor.,1\n7120,lsmdc3025_FLIGHT-12220,15412,\"Someone looks down, his eyes heavy. Someone\",\"Someone looks down, his eyes heavy.\",Someone,gold,is sawing out a spear.,\"closes her file, and slowly walks to her seat.\",is punched in the eye.,approaches a huge house in the garden by a stone arch.,1\n7121,lsmdc3025_FLIGHT-12220,15411,\"Someone looks firmly at someone, his face shiny with perspiration. Someone\",\"Someone looks firmly at someone, his face shiny with perspiration.\",Someone,gold,lies still on his chest.,\"looks down, his eyes heavy.\",runs up and sees someone lying unconscious on the concrete steps.,steps forward in position and then sidles back with the circular dagger.,1\n7122,lsmdc3012_BRUNO-4168,6304,\"Later, at a departure gate, he stands by a luggage. He\",\"Later, at a departure gate, he stands by a luggage.\",He,gold,notices a car with a brown - topped device behind him.,smiles as he runs someone.,enters a sign of snug emergency crews outside.,\"blows his nose, and tearfully dabs at it.\",3\n7123,lsmdc3012_BRUNO-4168,6303,\"Someone swallows, and shifts his wounded gaze. Later, at a departure gate, he\",\"Someone swallows, and shifts his wounded gaze.\",\"Later, at a departure gate, he\",gold,stands by a luggage.,stops in a darkened marketplace.,finds it quiet his festive are alone.,hobbles down a school corridor.,0\n7124,lsmdc3012_BRUNO-4168,6302,A blonde man joins someone. Someone,A blonde man joins someone.,Someone,gold,backs up to his gloved hands.,\"swallows, and shifts his wounded gaze.\",hands her a cell phone.,sits across from a table with his dad.,1\n7125,lsmdc1041_This_is_40-9074,8198,He raises his legs higher. Someone,He raises his legs higher.,Someone,gold,becomes aware of someone's presence.,rolls her eyes and crosses her arms.,hops down with the carnation.,touches his sunlit view with the sun.,1\n7126,lsmdc1041_This_is_40-9074,8196,\"In the bathroom, someone lies back with his legs in the air. Someone\",\"In the bathroom, someone lies back with his legs in the air.\",Someone,gold,\"roars forward, and slumps against his back.\",enters with an astonished expression.,'s leg splayed traps him in his chair.,resumes a arrival from the horrified pout.,1\n7127,lsmdc1041_This_is_40-9074,8201,\"At the boutique, someone watches someone while she folds clothing with someone. She\",\"At the boutique, someone watches someone while she folds clothing with someone.\",She,gold,springs around the hardwood floor as she head toward the marble formations.,\"lowers the handbag, kneels down, and leaves.\",\"points his finger, then glances back at the doll.\",looks back at someone.,3\n7128,lsmdc1041_This_is_40-9074,8200,Someone stares at her with his legs spread. She,Someone stares at her with his legs spread.,She,gold,vanishes in tiny circles with the ax tattooed in her chest.,\"plants their along, then eyes her squarely.\",turns its head to hers.,\"takes a brief look, then walks away.\",3\n7129,anetv_S0Kl5D5mrvQ,5632,A woman in a red shirt is playing a guitar and singing. She,A woman in a red shirt is playing a guitar and singing.,She,gold,\"looks up, then hopscotch few of the street.\",stands on the drums and the woman continues to laugh.,continues to wipe the sink with a towel.,pretends to be playing their maracas.,2\n7130,anetv_S0Kl5D5mrvQ,5631,A person is wiping a sink with a towel. A woman in a red shirt,A person is wiping a sink with a towel.,A woman in a red shirt,gold,is sitting on a bench and shows the woman how to clean her tongue.,is standing next to him.,is standing and stroking down her hair.,is playing a guitar and singing.,3\n7131,lsmdc0033_Amadeus-67107,18276,She looks at it and recognizes it. She,She looks at it and recognizes it.,She,gold,continues to continue with her walking.,\"shakes it harder, and pauses.\",finishes and throws her arms around someone.,takes it from his weak hand.,3\n7132,lsmdc0032_The_Princess_Bride-66204,6814,We are at the edge of an almost sheer ravine. The drop,We are at the edge of an almost sheer ravine.,The drop,gold,is enough to tour the length of the castle.,completely hauls off of her.,come to the surface for its crash.,is sharp and severe.,3\n7133,lsmdc3088_WHATS_YOUR_NUMBER-42446,16834,\"On the dance floor, someone dances gracefully with mr. Someone\",\"On the dance floor, someone dances gracefully with mr.\",Someone,gold,\"wedges between the bride and groom, making someone spill his champagne.\",\"retrieve the cops lunch of the dining table, the players sing friends.\",smacks the face of the indian who folds his way.,laughs as he sits.,0\n7134,lsmdc3088_WHATS_YOUR_NUMBER-42446,16833,The newlyweds share a joyful kiss. Someone,The newlyweds share a joyful kiss.,Someone,gold,steps forward to meet someone as she approaches.,twists her legs in shock.,\"winks at someone, then shakes his head and shakes his head.\",looks into someone's shoulder.,0\n7135,anetv_HWymkBdgm1M,11035,First the elderly woman goes to hug the young man and then a man in a blue shirt plays the piano beautifully of different melodies. Then two little boys,First the elderly woman goes to hug the young man and then a man in a blue shirt plays the piano beautifully of different melodies.,Then two little boys,gold,hop in the lake slide.,poses with them in the background jumps around the evening to music in a park lit outside of the home.,are shown making a haircut together using various arms for music.,run outside the door while the man who's standing by the door looks tired and pitiful.,3\n7136,anetv_4U13LEMIdi4,2597,It is licking its paw. It then,It is licking its paw.,It then,gold,wipes its paw on its ear.,moves back to brush the cat's back.,pours down like a mug on their nails.,sticks at a spray painting of nails.,0\n7137,anetv_4U13LEMIdi4,2596,A cat is sitting in a cat bed. It,A cat is sitting in a cat bed.,It,gold,is a bowl across a table.,is licking its paw.,moves over the cat's hair.,runs at the back of the room.,1\n7138,anetv_Q9UovyMsTLc,11621,Three girls are seen standing behind a counter speaking to the camera with one spreading butter around a pan. Another mixes ingredients into a bowl with another girl's help and the girls,Three girls are seen standing behind a counter speaking to the camera with one spreading butter around a pan.,Another mixes ingredients into a bowl with another girl's help and the girls,gold,helps for the cookies.,get ready standing on the ice and speaking.,begin dancing around one another.,lick the spoon used afterwards.,3\n7139,anetv_Q9UovyMsTLc,11622,Another mixes ingredients into a bowl with another girl's help and the girls lick the spoon used afterwards. They,Another mixes ingredients into a bowl with another girl's help and the girls lick the spoon used afterwards.,They,gold,now demonstrate how to properly play the accordion in a bed.,takes a seat in the bathroom.,\"pour the mixture into a pan, put it in the oven, then shortly take it out some time after.\",then grabs the ingredients with the vegetables and puts it up back at the oven.,2\n7140,lsmdc3083_TITANIC2-39113,6904,\"Someone closes the sketchbook as another passenger walks past. Smiling, someone\",Someone closes the sketchbook as another passenger walks past.,\"Smiling, someone\",gold,strolls her under her courtyard vanger.,takes the golden snitch from his case and places it in his pocket.,\"takes the ticket and works on a black maid, typing on a desk.\",turns to a sketch of a nude dark - haired woman lying with one arm stretched over her head.,3\n7141,lsmdc3083_TITANIC2-39113,6903,Another sketch depicts a nude woman standing against a ballet bar. Someone,Another sketch depicts a nude woman standing against a ballet bar.,Someone,gold,glances over her shoulder as she touches his date's nose brown teeth.,\"is a typewriter, yellow numbers.\",closes the sketchbook as another passenger walks past.,sits in front of several tapping and watching her name tag on the bottom of her blouse.,2\n7142,lsmdc3083_TITANIC2-39113,6902,She turns to a drawing of a nude woman lying on her side with a cigarette in her mouth. Another sketch,She turns to a drawing of a nude woman lying on her side with a cigarette in her mouth.,Another sketch,gold,shows a feathered flag being wrapped in a sheer drop.,depicts a nude woman standing against a ballet bar.,shows someone in new uniforms and a woman in a black shirt.,shows a photo of a blond girl lying down.,1\n7143,anetv_MOvLBw1EzmI,5523,A snow covered vehicle is shown outside. A person,A snow covered vehicle is shown outside.,A person,gold,is spraying water on the car.,scrubs paint a car.,walks in front of a snow covered hill.,is using a red scraper to remove snow and ice from the windshields.,3\n7144,anetv_MOvLBw1EzmI,95,A close up of a car is seen followed by a hand holding a scraper. The person,A close up of a car is seen followed by a hand holding a scraper.,The person,gold,blows smoke to a pair of handlebars and begins vacuuming around the cars.,continues scraping the wall while the man continues sanding the fence.,pushes ice all along the car with the scraper.,uses a scraper to scrape the car area of the car.,2\n7145,anetv_MOvLBw1EzmI,96,The person pushes ice all along the car with the scraper. They,The person pushes ice all along the car with the scraper.,They,gold,continue to push the ice off of the car using the scraper.,see the product with a washer and a scraper.,continue to drink more.,see the scenery at the end.,0\n7146,anetv_MOvLBw1EzmI,5524,A person is using a red scraper to remove snow and ice from the windshields. They,A person is using a red scraper to remove snow and ice from the windshields.,They,gold,stick on ski in place.,continue scraping until a strip is cleaned.,turn to remove ski glasses.,are adding ornaments to the wall.,1\n7147,anetv_jLwUrFMRGzY,5173,The camera pans out to more people and shows them performing an exercise that swings their legs back and fourth. The people,The camera pans out to more people and shows them performing an exercise that swings their legs back and fourth.,The people,gold,continue to move at the monkey along and end with people doing the same thing.,continue dancing around the ends of one shot and ends by walking into frame.,are released and dancing around a circle in the end as well as their tubes moving in slow motion.,continue following the instructor through various movements while he leads them in the exercise.,3\n7148,anetv_jLwUrFMRGzY,5172,An intro is shown followed by two people and a man talking to the camera. The camera,An intro is shown followed by two people and a man talking to the camera.,The camera,gold,pans out to more people and shows them performing an exercise that swings their legs back and fourth.,pans around an area of the lawn that leads into the person bungee skipping into the path.,pans up to show various shots of children playing polo in a soccer game with paintball players.,cuts to a man inside a classroom teary his videos as he speaks to the camera.,0\n7149,anetv_crSMHcUkPcA,9693,\"After, the man cuts the wall paper and gains assistance while putting the paper on the roof. The two\",\"After, the man cuts the wall paper and gains assistance while putting the paper on the roof.\",The two,gold,continue playing and talking but ends by getting autographs from the act.,are playing a game and a white tape roll.,are shown standing on their knees and talks to one another continuously.,finish and give each a high five.,3\n7150,anetv_crSMHcUkPcA,9694,\"The two finish and give each a high five. Finally, several rooms\",The two finish and give each a high five.,\"Finally, several rooms\",gold,are shown on the screen.,of tires are shown.,are shown of squash.,are shown displaying the work they've done.,3\n7151,anetv_crSMHcUkPcA,9690,A green splash appears against a white back drown. Then a series of words,A green splash appears against a white back drown.,Then a series of words,gold,crash down on the screen.,\"appear on the screen as a video of the man on top, in related drums with the same tricks of the snowboard.\",on their blows appear the first screen.,appear across the screen and showing various pictures describing the terms.,3\n7152,anetv_crSMHcUkPcA,9692,\"A man is then shown standing on a ladder laying wall paper. After, the man\",A man is then shown standing on a ladder laying wall paper.,\"After, the man\",gold,begins chopping a wood onto a stump.,break tiles and pieces by step tiles free and more men leaves floor wall.,cuts the wall paper and gains assistance while putting the paper on the roof.,\"starts performing boxing tile, and has a tattoo on his arm.\",2\n7153,anetv_crSMHcUkPcA,9691,Then a series of words appear across the screen and showing various pictures describing the terms. A man,Then a series of words appear across the screen and showing various pictures describing the terms.,A man,gold,is then shown standing on a ladder laying wall paper.,runs away and staggers out of a field in an indoor field and begins performing several tricks.,is seen holding a microphone in front of him gives different gymnasts and then holds up a small trophy.,is also shown once again doing other springs and at the end.,0\n7154,anetv_ejkGxGrEdO4,14423,The woman and dog are shown in several more clips playing with the frisbee and performing tricks. The dog,The woman and dog are shown in several more clips playing with the frisbee and performing tricks.,The dog,gold,jumps up and down as well as chases after the frisbee while the woman watches on the side.,is shown performing tricks as the dog does tricks with the dog.,continues taking after the competition and the frisbee.,runs all around the dog as well as running around.,0\n7155,anetv_ejkGxGrEdO4,14422,A woman and dog are seen standing in a large field performing tricks with a frisbee. The woman and dog,A woman and dog are seen standing in a large field performing tricks with a frisbee.,The woman and dog,gold,are moving out on the floor while one dog flies in and out of frame.,get off the horse's fur while more people keep hold of a leash while the bull flies off.,are shown in several more clips playing with the frisbee and performing tricks.,holding seen holding a frisbee and the dog races toward the dog again.,2\n7156,lsmdc0021_Rear_Window-58940,15598,\"She is aware of him, and immediately retreats into the doorway. She\",\"She is aware of him, and immediately retreats into the doorway.\",She,gold,\"grips his arm tightly, steering tightly as he steps out.\",\"has a broom bucket covered in nervous dust, and hurries to a window.\",hears an angry sound under his footsteps.,\"disappears down the lower corridor, as someone searches his fire escape.\",3\n7157,lsmdc0021_Rear_Window-58940,15597,He comes out onto the fire escape directly above someone. She,He comes out onto the fire escape directly above someone.,She,gold,\"flinches and surfaces, crawling in his direction.\",in the clearing.,races over to someone.,\"is aware of him, and immediately retreats into the doorway.\",3\n7158,lsmdc0021_Rear_Window-58940,15596,\"In the corridor above, someone returns, frustrated. He\",\"In the corridor above, someone returns, frustrated.\",He,gold,\"stands with one hand forward, grimaces, bobs his head.\",comes out onto the fire escape directly above someone.,is fully furnished with a set of exercise equipment.,steps up beside the kindling set which he takes hold of the fire.,1\n7159,anetv_tSk1GWyofaU,9025,A girl walks to the end of a diving board and lifts her hands. The girl,A girl walks to the end of a diving board and lifts her hands.,The girl,gold,jumps onto a board and lands in a pool.,then falls on her face and walks into the finish.,takes a spin and adjusts her stance.,jumps on the diving board to prepare herself.,3\n7160,anetv_tSk1GWyofaU,9026,The girl jumps on the diving board to prepare herself. The girl then,The girl jumps on the diving board to prepare herself.,The girl then,gold,begins to try on skis again.,does a backwards flipping dive into the pool.,moves to the middle of the pool.,stands at the side of the pool and looks straight towards the camera.,1\n7161,anetv_T3bTwmccIEQ,2206,They pick up a canoe and drive it to the water. They,They pick up a canoe and drive it to the water.,They,gold,appear to be being seen at the bottom of a boat.,\"canoe down the river, paddling as they go.\",take turns to record the fishes on their ice.,take it out of the boat.,1\n7162,anetv_T3bTwmccIEQ,3656,Three men walk next to each other. the men,Three men walk next to each other.,the men,gold,hit the ball back and forth in the water.,walk up and down together in a park.,begin putting a boat on the back of a truck.,are playing a set of drums.,2\n7163,anetv_T3bTwmccIEQ,3657,The men begin putting a boat on the back of a truck. the men,The men begin putting a boat on the back of a truck.,the men,gold,gather at a 180 then arrive at the floor and every wash.,tie the boat down.,begin going through the rapids.,are talking about the brand and the logo.,1\n7164,lsmdc0031_The_Lost_Weekend-65854,6074,\"He steps to the chest of drawers in the bedroom. Someone, looking around desperately,\",He steps to the chest of drawers in the bedroom.,\"Someone, looking around desperately,\",gold,stretches through the open wallet.,sees something reflected in the shaving mirror: the gun in the wash bowl.,watches himself through the air in the elevator.,runs pocket for cookware.,1\n7165,lsmdc0031_The_Lost_Weekend-65854,6075,\"Someone, looking around desperately, sees something reflected in the shaving mirror: the gun in the wash bowl. Before she can step toward it, someone\",\"Someone, looking around desperately, sees something reflected in the shaving mirror: the gun in the wash bowl.\",\"Before she can step toward it, someone\",gold,sits right back again.,is back with the scarf.,looks at the needle on someone's nipple.,begins with an instant item.,1\n7166,lsmdc0031_The_Lost_Weekend-65854,6080,He bends down for a kiss. Someone,He bends down for a kiss.,Someone,gold,stands looking at him.,kisses her and gives her a tender kiss.,is pinched up for her.,looks over the rooftops expectantly toward the finish line.,0\n7167,lsmdc0031_The_Lost_Weekend-65854,6078,She puts down the raincoat and the scarf and goes to the kitchen for a glass. He,She puts down the raincoat and the scarf and goes to the kitchen for a glass.,He,gold,leans it back and looks up when he sees her packing her belongings.,sees his reflection in the glass and closes it behind him.,hangs door and smiles.,picks up the raincoat and the scarf.,3\n7168,lsmdc0031_The_Lost_Weekend-65854,6082,Someone holds out the glass. She,Someone holds out the glass.,She,gold,rips it from her vest.,turns and runs into the bathroom and picks up the gun.,\"opens her squarely at the table, then hits him with an elbow.\",takes the sharply european mercedes and puts it on.,1\n7169,lsmdc0031_The_Lost_Weekend-65854,6081,Someone stands looking at him. Someone,Someone stands looking at him.,Someone,gold,is scanning the aircraft.,\"is lost on his cold, sad features.\",holds out the glass.,walks out of the corner.,2\n7170,lsmdc1046_Australia-90499,18001,Someone walks slowly to him. She,Someone walks slowly to him.,She,gold,smiles at someone questioningly.,leans down to the right.,smiles and nods nervously.,puts both her hands in his pockets.,2\n7171,anetv_tHFF0OaIHoE,8329,\"A young girl is sitting in an empty bath tub shaving a man's leg that is thrown over the tub. As she continues, the dog comes and she\",A young girl is sitting in an empty bath tub shaving a man's leg that is thrown over the tub.,\"As she continues, the dog comes and she\",gold,shows the hair on the razor to the camera.,walks back in the fourth her dress and sees her smiling from the camera.,speaks up to help.,jumps to the pavement and falls.,0\n7172,anetv_BJM1rUjXvkQ,18876,\"The woman added brown sugar on the butter, then added eggs one by one and mixed and then cream, then flour, baking soda, cinnamon powder and mixed them well. The dried fruit mixture is added in the batter, and then shredded nuts and they\",\"The woman added brown sugar on the butter, then added eggs one by one and mixed and then cream, then flour, baking soda, cinnamon powder and mixed them well.\",\"The dried fruit mixture is added in the batter, and then shredded nuts and they\",gold,mix it on the baking pan and pour it to mix them.,are squeezed in then stirred and put and all the dough are made.,mixed together in the delivering scoop mix.,were mixed well together.,3\n7173,lsmdc0004_Charade-47471,8776,\"He sees the metal hand. Then, using all his weight, he\",He sees the metal hand.,\"Then, using all his weight, he\",gold,\"places he shoes behind the pillar, rises, walks up and looks around the room.\",\"slams the door open as far as it will go, making sure to hold it that way as he steps in.\",continues mowing the area.,jams a running hand to the mouth of an elderly - foot hedge.,1\n7174,lsmdc0004_Charade-47471,8779,\"Hurrying, someone puts his foot against the door and pushes it away, ripping his metal hand free. He then\",\"Hurrying, someone puts his foot against the door and pushes it away, ripping his metal hand free.\",He then,gold,\"pulls back at the door, but does n't go down.\",drains the vampire's blood causing the bottle to drink.,rushes to the open window and climbs out.,\"drops his coat, throws her to the floor.\",2\n7175,lsmdc0004_Charade-47471,8777,\"Then, using all his weight, he slams the door open as far as it will go, making sure to hold it that way as he steps in. Inside, someone\",\"Then, using all his weight, he slams the door open as far as it will go, making sure to hold it that way as he steps in.\",\"Inside, someone\",gold,pulls back the door and slugs the startled someone full on the jaw.,sits slowly opposite him with his knees sticking out into the shape of a white bearded figure.,\"watches the large surveillance monitor monitors, then stops the opposing mugger.\",is removing someone's handcuffs and dropping an enamel down the bedroom wall.,0\n7176,lsmdc0004_Charade-47471,8771,\"Someone sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike. The hand\",\"Someone sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike.\",The hand,gold,becomes a bottle of fluid.,\"is left holding someone's arm, moving a cordial arm between his ankles.\",is starting to come down.,smacks away hurt.,2\n7177,lsmdc0004_Charade-47471,8773,\"Someone, moving quickly, turns and flies out. Petrified with fear, someone\",\"Someone, moving quickly, turns and flies out.\",\"Petrified with fear, someone\",gold,strikes a patient down on a bench.,clutches his collar banister as someone returns.,\"hits someone angrily, a fierce wind.\",can only stare dumbly at the protruding claw.,3\n7178,lsmdc0004_Charade-47471,8774,\"Petrified with fear, someone can only stare dumbly at the protruding claw. As someone\",\"Petrified with fear, someone can only stare dumbly at the protruding claw.\",As someone,gold,\"reaches for his hand, an connected gun rests on his head, someone rises to his feet.\",\"looks up, beams of sunlight light across the ceiling.\",uses his pencil to search his face.,comes running up to her.,3\n7179,lsmdc0004_Charade-47471,8778,\"Inside, someone pulls back the door and slugs the startled someone full on the jaw. Hurrying, someone\",\"Inside, someone pulls back the door and slugs the startled someone full on the jaw.\",\"Hurrying, someone\",gold,rushes over and takes the launcher.,\"puts his foot against the door and pushes it away, ripping his metal hand free.\",\"turns his head, then runs to someone, dragging down his body.\",roves up the front door of a modest restaurant inside.,1\n7180,lsmdc0004_Charade-47471,8770,She stops as she sees something. Someone,She stops as she sees something.,Someone,gold,looks over at the boys on their spot in the morning.,\"sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike.\",\"looks around, her aunt siting behind someone.\",turns to the window.,1\n7181,anetv_1jWMd8QaN5s,15124,People are standing in a line playing a game of Foosball. A man,People are standing in a line playing a game of Foosball.,A man,gold,is standing on the ice.,is standing in front of the foosball table on the phone.,unhooks a smoke pipe.,throws a towel over the arena.,1\n7182,anetv_1jWMd8QaN5s,16143,A group of men and boys are playing a foosball game at a table in a building. They,A group of men and boys are playing a foosball game at a table in a building.,They,gold,try to hit each other's opponent to win the game.,start playing a game of tug of war.,are standing on a field playing cards.,sync for the other one and really the terrible good 3 cups.,0\n7183,anetv_1jWMd8QaN5s,15125,A man is standing in front of the Foosball table on the phone. A man in a black hat,A man is standing in front of the Foosball table on the phone.,A man in a black hat,gold,is holding a microphone.,is holding the croquet mallet.,is playing close to his top for a beat.,is standing against the wall behind them.,3\n7184,anetv_0J55EGFLglQ,7852,The women on the court are running around trying to get the ball. One of the women,The women on the court are running around trying to get the ball.,One of the women,gold,holds the ball back and forth.,holds the ball and on the court.,runs all the way into the goal.,grabs the ball to keep it away yet the first time.,2\n7185,anetv_0J55EGFLglQ,7851,The station shows for what channel it is that is being watched. The women on the court,The station shows for what channel it is that is being watched.,The women on the court,gold,hop up and move their arms during the high fronted dance.,are running around trying to get the ball.,are skating on the floor wall discussing.,see water and intro for wakeboarding and a credit graphics showing the video and when it is over.,1\n7186,anetv_0J55EGFLglQ,7850,It seems like they are watching on tv a game of soccer. The station,It seems like they are watching on tv a game of soccer.,The station,gold,wagon shoots the spider in green and she incinerates it.,shows for what channel it is that is being watched.,take of tips is gopro.,illustrates a short dance that has repeated the swing and seems quite good at what he is doing.,1\n7187,lsmdc0053_Rendezvous_mit_Joe_Black-71283,9913,\"Quince comes running up now. Someone ushers everybody on, first someone, then someone and Quince, someone the last to climb on, shuts the door behind him As someone\",Quince comes running up now.,\"Someone ushers everybody on, first someone, then someone and Quince, someone the last to climb on, shuts the door behind him As someone\",gold,hurries away from the whirling rotors.,bends into a cup.,\"stands from a small balcony post, describing the process in his hand.\",comes to his head with the applause.,0\n7188,anetv_qK2iRSxxRQU,5481,She is joined by two more dancers who are in red and each does their own moves before coming together. They again,She is joined by two more dancers who are in red and each does their own moves before coming together.,They again,gold,are smiling as they continue dancing and dancing.,\"dance their batons to the stage, looking after a ballet couple dancing in a innocent dance and dancing lively.\",holding the pair of the weights or just varying the balance from two columns of dance moves.,\"break for solo performances, each dancer getting a moment to show off.\",3\n7189,anetv_qK2iRSxxRQU,5480,\"A bellydancer in green begins her routine, smiling for the audience. She\",\"A bellydancer in green begins her routine, smiling for the audience.\",She,gold,dismounts to the jumping and dances behind the benches anxiously.,clears the stage with her older competitors behind drummer.,then spins and throws the ball back.,is joined by two more dancers who are in red and each does their own moves before coming together.,3\n7190,anetv_CNdCnkKhitI,847,A man is seen swinging a ball with a bat and leads into several clips of people playing cricket. The men,A man is seen swinging a ball with a bat and leads into several clips of people playing cricket.,The men,gold,then play as well as the same people swimming back and fourth at the scene.,sit down and speak to one another as well as show more clips of them playing the sport.,\"continue hitting the balls, and leads into several clips of him playing with at a game and having congratulated the ball.\",continue to hit the ball back and forth until different leverage as well as fly.,1\n7191,anetv_CNdCnkKhitI,5454,A group of people are playing a game on the field. They,A group of people are playing a game on the field.,They,gold,hit other video ball.,\"play, also players are.\",are with their rackets attempting to fight each other and throwing the rope to each other.,are engaged in a game of cricket.,3\n7192,lsmdc0046_Chasing_Amy-68737,651,\"Someone sits on a curb, staring into the distance, someone saunters up and sits beside him. He\",\"Someone sits on a curb, staring into the distance, someone saunters up and sits beside him.\",He,gold,follows someone's gaze.,stares and chomps at the girl.,smiles as people exchange salutes.,puts the newspaper back on the counter.,0\n7193,lsmdc3008_BAD_TEACHER-4112,5089,Secretary opens the door and someone enters. As he takes a seat beside someone she,Secretary opens the door and someone enters.,As he takes a seat beside someone she,gold,looks sadly through her lobe nervously.,forces someone to roll it.,gives a demure smile.,kisses the guy beside him.,2\n7194,lsmdc3008_BAD_TEACHER-4112,5088,The secretary points to someone's bumper sticker on the side. Someone,The secretary points to someone's bumper sticker on the side.,Someone,gold,picks up the second card of the intercom.,hooks gloved hand over his eyes as they stare ahead.,holds up his stick and sits happily in a wheelchair.,holds up a hand and nods.,3\n7195,lsmdc3008_BAD_TEACHER-4112,5086,\"Now at school, someone sits in her empty classroom. Standing, she\",\"Now at school, someone sits in her empty classroom.\",\"Standing, she\",gold,peers up and peers through her spectacles.,fry an egg.,moves past the edge of the operating room.,sticks her gum to the underside of her desk.,3\n7196,lsmdc1028_No_Reservations-83370,16477,\"Brandishing an uncooked steak held high on a carving fork, someone marches out of the kitchen through the dining room and up to table seven. Someone\",\"Brandishing an uncooked steak held high on a carving fork, someone marches out of the kitchen through the dining room and up to table seven.\",Someone,gold,takes a picture in the gambling room.,pins them down at top of one couch.,\"tears off her apron, thrusts it at a waiter, and strides out.\",crouches at the edge of the veranda as someone watches interest anxiously.,2\n7197,lsmdc1028_No_Reservations-83370,16478,\"Someone tears off her apron, thrusts it at a waiter, and strides out. Someone\",\"Someone tears off her apron, thrusts it at a waiter, and strides out.\",Someone,gold,closes the bathroom door and follows her back.,stares blankly as someone hails a cab and gets in.,is a ticket.,sits on the side of the palace cross near the forest wall.,1\n7198,anetv_Zsaa3XXIAhk,48,A man plays a song on an acoustic guitar in a studio. The man,A man plays a song on an acoustic guitar in a studio.,The man,gold,plays the drum drum.,plays the many pipes on his hands.,resets his hands and finishes the song.,plays the violin slowly and looks away.,2\n7199,anetv_6Ni6csyQbzw,18475,\"He releases from the gate, dirt biking in a race with others. He\",\"He releases from the gate, dirt biking in a race with others.\",He,gold,takes a fast leap onto a narrow dirt ground.,goes over numerous hills and passes the watching crowd before coming to a stop on the grass.,plunges into a shanty.,runs barefoot through the paved terrain with soldiers beside him watching the game.,1\n7200,anetv_6Ni6csyQbzw,2531,Men are in a line in a bycicle in a competition. men,Men are in a line in a bycicle in a competition.,men,gold,throw different men running on the court watching the event.,are in a tennis court playing dodgeball in the gym.,start the competition and are driving in a dusty path.,are pulling a line and toss some fish.,2\n7201,anetv_6Ni6csyQbzw,2533,A parking lot with a lot of cars parked are on side of the path on a road. when men gets to the end people,A parking lot with a lot of cars parked are on side of the path on a road.,when men gets to the end people,gold,skate around between cars.,are waiting for them holding signs.,get stuck as dancers shoot to the side and go back to the van.,get into the car and start pulling it.,1\n7202,anetv_qXD7myRvw0M,1297,They are engaged in a game of tennis. They,They are engaged in a game of tennis.,They,gold,\"push it around, making it into a game of tennis.\",continue doing the archery and start fighting one another.,are kicking a ball back and forth.,serve the ball back and forth over the net.,3\n7203,anetv_qXD7myRvw0M,182,\"On one net, there are four player playing, on the other net there are two player playing. The players\",\"On one net, there are four player playing, on the other net there are two player playing.\",The players,gold,take a few questions and continue to play soccer on the green field.,chase the shuttlecock and hit it with their racket.,lob the ball back and forth while laughing with each other and kicking the ball around.,\"continue continuing curling into several paintball goals, trying to hit it over the net.\",1\n7204,anetv_qXD7myRvw0M,181,\"The badminton players are playing at the badminton court. On one net, there are four player playing, on the other net there\",The badminton players are playing at the badminton court.,\"On one net, there are four player playing, on the other net there\",gold,are several men standing against them watching watching.,is a young boy in a basketball costume looking around.,is a crowd gathered in an upright crowd.,are two player playing.,3\n7205,anetv_qXD7myRvw0M,1296,A group is gathered on an indoor court. They,A group is gathered on an indoor court.,They,gold,switch and use the balls to hit the ball around the net.,are engaged in a game of tennis.,are engaged in a game of water polo.,starts throwing a ball with racquets to make baskets.,1\n7206,anetv_5xgBlI9Xx0I,18573,A gymnast is shown swinging back and fourth on uneven bars. He,A gymnast is shown swinging back and fourth on uneven bars.,He,gold,performs back flips and flips in circles while she goes on the monkey bars.,jumps multiple times to demonstrate that he does it.,continues to move in and out of frame as well as various exercises.,performs a routine swinging around and around while hundreds of people watch.,3\n7207,anetv_5xgBlI9Xx0I,18574,He performs a routine swinging around and around while hundreds of people watch. He,He performs a routine swinging around and around while hundreds of people watch.,He,gold,moves the object up and begins spinning into an object.,continues hitting the wall all around the room.,finishes by sticking his arms up in the air and bowing to the audience.,holds up and continues to talk and leads into him performing gymnastics tricks.,2\n7208,lsmdc3062_SORCERERS_APPRENTICE-30622,10141,\"As a gray - haired man passes, the urn quivers. The man\",\"As a gray - haired man passes, the urn quivers.\",The man,gold,shoots the man at the bottom.,looks down at the injured someone.,returns and stares at it.,sinks under the lifeboat.,2\n7209,anetv_SV-8M3HNk1s,9785,A clip is shown of a person on a wake board riding on some waves and crashing into the water. Several more clips,A clip is shown of a person on a wake board riding on some waves and crashing into the water.,Several more clips,gold,are shown of people swimming through the decks with an inflatable cup and more clips getting it under water.,are shown of people riding on the wake boards on the ocean waves gliding along.,are shown of people surfing gear over and over performing tricks as well as falling down and landing into a lake.,are shown of people captions shown on screen.,1\n7210,anetv_YkqO2oi9SIk,16672,\"A group of swimmers cliff dive into a body of water surrounded by onlookers, large rocks, buildings and boats, in a judged competition. The swimmers\",\"A group of swimmers cliff dive into a body of water surrounded by onlookers, large rocks, buildings and boats, in a judged competition.\",The swimmers,gold,keep on the diving board in the pool.,swim away from a smaller team along the coast.,\"ride the poles through a field of christmas trees, flanked by white horses in the background.\",jump off a man made metal cliff wrapped in sponsored advertisement art and graphics.,3\n7211,anetv_F67zl57FSXE,52,\"One by one, they squat down, grab the weight, stand, and lift it over their heads before dropping it. The seventh man\",\"One by one, they squat down, grab the weight, stand, and lift it over their heads before dropping it.\",The seventh man,gold,lifts her shirt hand to help the woman laugh.,collapses over his knees again with the help of a boys tank before the crowd speaks.,\"fails on his first try, and drops the weight before raising it overhead.\",is then shown taking a drink into a pond when finally to the face of the bartender.,2\n7212,anetv_F67zl57FSXE,9371,A weight lifter is standing in a gym. He and others consecutively,A weight lifter is standing in a gym.,He and others consecutively,gold,lift the barbells over their heads.,jump down into his legs.,his pole out on a mat.,in a line for a turn.,0\n7213,anetv_F67zl57FSXE,51,\"Several men are doing dead lifting in a weight lifting competition. One by one, they\",Several men are doing dead lifting in a weight lifting competition.,\"One by one, they\",gold,sit up and start and spin upwards.,\"are still siting by the railing, looking at the camera.\",\"kick the poles away, back into other room.\",\"squat down, grab the weight, stand, and lift it over their heads before dropping it.\",3\n7214,anetv_F67zl57FSXE,53,\"The seventh man fails on his first try, and drops the weight before raising it overhead. The thirteenth man also\",\"The seventh man fails on his first try, and drops the weight before raising it overhead.\",The thirteenth man also,gold,\"fails, dropping his weight before lifting it high.\",shows himself on the bars in various sweeps.,uses two feet to pull out step and lands on the table.,holds sharp kick almost in the getting room.,0\n7215,anetv_F67zl57FSXE,9372,He and others consecutively lift the barbells over their heads. The final man is shown dropping,He and others consecutively lift the barbells over their heads.,The final man is shown dropping,gold,another punch.,hands on his head.,is weights back to the ground.,complicated by water blades on the ground.,2\n7216,anetv_B2HIj_QWaG0,9462,A woman is playing a violin on the street while various people walk around here and behind her. She,A woman is playing a violin on the street while various people walk around here and behind her.,She,gold,are demonstrating hula hoops to reaching the stage.,smiles into the camera while playing and continues playing the song while several people bend down to tip her and walk around her.,catches the final line and runs towards the group.,brush the woman's hair.,1\n7217,anetv_C7so_y5I_9s,5059,We see a shoe briefly. We,We see a shoe briefly.,We,gold,see that image of people swimming indoors in racquetball.,see a brush holding a shoe.,see the ending title screen.,see a dealer and a wagon's left.,2\n7218,anetv_C7so_y5I_9s,5056,We see a man riding jet skis and performing flips. We,We see a man riding jet skis and performing flips.,We,gold,see the url on the screen.,see a man sitting on the dock.,see the ending screen.,see the ending scene.,1\n7219,anetv_C7so_y5I_9s,5057,We see a man sitting on the dock. We,We see a man sitting on the dock.,We,gold,see a man creating a rock from the ocean.,see the jet skier ride over a ramp.,see the men smiling around a shore.,see a man standing up on a bus.,1\n7220,anetv_pOVICBn8QMw,17345,There is man in a red uniform prepping to get on and start performing. He,There is man in a red uniform prepping to get on and start performing.,He,gold,gets on the balance beam and starts to spin around and around.,joins a biker on the treadmill for space.,is wearing black boots and a padded black shirt.,set the timer on the trainer.,0\n7221,anetv_pOVICBn8QMw,17346,He gets on the balance beam and starts to spin around and around. He even at one point,He gets on the balance beam and starts to spin around and around.,He even at one point,gold,finishes the video and creates to spin around different positions to demonstrate technique.,adjusts a string and clips both bike boards.,that he switches to his helmet and several springs.,does it one handed and puts some other cool tricks into it.,3\n7222,anetv_pOVICBn8QMw,15277,A man jumps onto a balance beam. He,A man jumps onto a balance beam.,He,gold,does a gymnastics routine on the mat.,does several tricks forward tricks and spinning several times.,does a gymnastics routine on the balance beam.,does a routine on the beam in front of his motion.,2\n7223,anetv_pOVICBn8QMw,15278,He does a gymnastics routine on the balance beam. He,He does a gymnastics routine on the balance beam.,He,gold,walks on a gym and flips in.,jumps in the air.,jumps off the balance beam and lifts his arms in the air.,starts to do crunches in a handstand.,2\n7224,anetv_pOVICBn8QMw,17347,He even at one point does it one handed and puts some other cool tricks into it. When he is done he,He even at one point does it one handed and puts some other cool tricks into it.,When he is done he,gold,gets off of the beam and begins to walk off the stage.,plugs his ears and eventually he calms down.,grabs a pink beanie and dances in the sand.,\"'s not involved in the game, this man is demonstrating how to make a goal.\",0\n7225,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1312,Someone looks out through the curtain covering the broken glass of the front door. Someone,Someone looks out through the curtain covering the broken glass of the front door.,Someone,gold,now he is lost ground.,\"gets his jacket from under his living room, and grabs his shades.\",shifts to all fours and strides through the gentle snowfall in a forest.,\"opens the door, revealing himself as a homemade butler.\",3\n7226,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1311,Someone and the man are putting up travel posters to cover up the broken windows. Someone,Someone and the man are putting up travel posters to cover up the broken windows.,Someone,gold,rides to the mustang and drives down a narrow road.,\"is artificial, landscape.\",picks up his real gun.,looks out through the curtain covering the broken glass of the front door.,3\n7227,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1308,A faint glow of light shines out from bottom windows. He,A faint glow of light shines out from bottom windows.,He,gold,\"moves back up toward his carpet, impaled with chain still in hand.\",shadows smile at hers.,stops to make sure it is the right number before going up the steps.,spins around flexible lightning.,2\n7228,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1306,It once had class but has not been lived in for years. This,It once had class but has not been lived in for years.,This,gold,is n't the morning not to be friendly.,video gave us wide at the story.,is the house that people will live in from now on.,impression is apparently not the place.,2\n7229,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1307,The rain is pouring down. A faint glow of light,The rain is pouring down.,A faint glow of light,gold,appears across it.,shines out from bottom windows.,is driven away in a sunny armory.,is caught on cottage window.,1\n7230,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1310,Someone is leaning from the window. Someone and the man,Someone is leaning from the window.,Someone and the man,gold,are putting up travel posters to cover up the broken windows.,\"stare at each other, so the other man.\",step out gazing out.,\"run toward the door of a grocery store with cashier, and sorts through some shopping bags on their table across the racks.\",0\n7231,lsmdc0014_Ist_das_Leben_nicht_schoen-54706,1309,A sharp whistle is heard. Someone,A sharp whistle is heard.,Someone,gold,bounces easily under his crutches.,takes out of his shoelace and goes down.,is leaning from the window.,is on stage with the panicking defeated.,2\n7232,anetv_5rO2DwFhdwo,4410,They hit the ball back and forth against the wall. They,They hit the ball back and forth against the wall.,They,gold,go back and forth in the water.,hit the ball back and forth over a net.,pick the ball up and continue competing.,keep their drums off against each other.,2\n7233,anetv_5rO2DwFhdwo,4409,Two men are on an indoor racquetball court. They,Two men are on an indoor racquetball court.,They,gold,play a game for tennis with.,are throwing the ball down a sidewalk.,hit the ball back and forth against the wall.,started twirling and dancing around and danced.,2\n7234,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2471,He desperately conceals his reaction; he thinks someone has betrayed him. He now,He desperately conceals his reaction; he thinks someone has betrayed him.,He now,gold,conceals his new reaction.,does a least jump at the ball and then returns.,wears her black uniform.,is caught by his wife.,0\n7235,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2476,\"He looks up and sees: someone, in close - up, hands busy o. s.; someone, with doll; and between them, in background, someone. She\",\"He looks up and sees: someone, in close - up, hands busy o. s.; someone, with doll; and between them, in background, someone.\",She,gold,\"is now running fast towards someone, who walks towards her with arms outstretched.\",tell dogs to take care.,\"looks at his hand, but the suv stopped for an oncoming car, driving away.\",sits with florence's slumped while staring slack - jawed at his touch.,0\n7236,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2477,\"She is now running fast towards someone, who walks towards her with arms outstretched. Someone\",\"She is now running fast towards someone, who walks towards her with arms outstretched.\",Someone,gold,\"walks closer to that, where he is in the back passenger seat.\",spots someone trevor in the grass.,is got all in a tripod.,\"sits beside his open door, strumming a guitar and singing.\",3\n7237,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2478,Someone's skiff is inverted on trestles in foreground. At start of scene we see only someone's feet; he,Someone's skiff is inverted on trestles in foreground.,At start of scene we see only someone's feet; he,gold,has a metal hand held tight under his heart.,looks at the ruins at the school.,sees someone who is working behind her and the alien wildly ruffling her hair.,\"is under the skiff, examining it.\",3\n7238,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2475,\"Someone moves to stand in front of him; someone, to stand beside someone, with the doll. The hand named love and the hand named hate\",\"Someone moves to stand in front of him; someone, to stand beside someone, with the doll.\",The hand named love and the hand named hate,gold,come in to straighten the necktie.,glances across the backyard.,\"under his arm, moves closer.\",\"- - without saying it, he is terrified.\",0\n7239,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2470,\"Someone is standing, beckoning someone. They\",\"Someone is standing, beckoning someone.\",They,gold,prepare to fight with their fellow soldiers.,start towards their mother.,looks around and sees.,are deep in conversation as the pretty wistful man approaches toward her.,1\n7240,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2479,\"After three lines of song he comes out from under, and lounges against the skiff, tracing a tarry seam with his forefinger. Through rest of scene, someone\",\"After three lines of song he comes out from under, and lounges against the skiff, tracing a tarry seam with his forefinger.\",\"Through rest of scene, someone\",gold,is leaning close to her microphones.,picks lazily at his guitar.,can be seen amongst a rose and a large fountain.,\"is angry, sitting about three few chairs across where he intends to be.\",1\n7241,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2474,She walks away towards someone and the women. Someone,She walks away towards someone and the women.,Someone,gold,sees him guard off the platform.,glares while someone swims toward someone and nods.,look on her dozen cohorts.,\"moves to stand in front of him; someone, to stand beside someone, with the doll.\",3\n7242,lsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2472,He now conceals his new reaction. Someone,He now conceals his new reaction.,Someone,gold,\"touches someone's hand, warmly.\",runs to the kitchen.,opens the cab to someone's time specifically.,see the whole bite every time.,0\n7243,anetv_xmGucghu2FI,929,An intro of text leads into several clips of athletes throwing javelins off into the distance. The video,An intro of text leads into several clips of athletes throwing javelins off into the distance.,The video,gold,continues with several more athletes being shown performing impressive throws with the javelin.,transitions into a man roller blading down the track.,ends with a line of people throwing and waving in the air.,continues to show more clips of an athlete sprinting down the track.,0\n7244,anetv_0bzSBV3jHIY,17388,A man walks into frame and speaks to people all around a bar. People,A man walks into frame and speaks to people all around a bar.,People,gold,\"scenery in various landscapes and angles are shown walking along a river, and playing a game sit middle - down.\",are watching and speaking to one another as several pictures are shown of things and others carried in.,are seen eating and playing pool while others interact on the side.,moves in and out of frame as well as many more kids standing fire in the background.,2\n7245,anetv_0bzSBV3jHIY,17389,People are seen eating and playing pool while others interact on the side. People,People are seen eating and playing pool while others interact on the side.,People,gold,are shown on a surfing segment while speaking to one another.,watch them move past one another.,are swimming around a pool.,continue socializing with one another while people still play pool and eat.,3\n7246,anetv_0bzSBV3jHIY,15369,A man in a white striped shirt is smiling. A woman,A man in a white striped shirt is smiling.,A woman,gold,is swimming in a public pool.,holds her's eye.,started hitting the first boy.,is setting up the pool balls.,3\n7247,lsmdc3035_INSIDE_MAN-2094,11818,\"Inside, the solemn faced detective glides stiffly past running policemen. Reaching the entrance, someone\",\"Inside, the solemn faced detective glides stiffly past running policemen.\",\"Reaching the entrance, someone\",gold,steps out of a train leaving someone and two others.,pounds on the glass door.,finds herself asleep on a couch.,turns and embraces her after speaking.,1\n7248,lsmdc3035_INSIDE_MAN-2094,11817,\"On top of the truck, our view travels up a pole to a camera. Someone and five unidentifiable witnesses\",\"On top of the truck, our view travels up a pole to a camera.\",Someone and five unidentifiable witnesses,gold,surround a seventh person masked by a white sack.,backs down two stairs into the courtyard of the hall light.,intertubes in a dimly lit path.,their way through the river.,0\n7249,lsmdc3035_INSIDE_MAN-2094,11816,\"Someone and someone lean close. On top of the truck, our view\",Someone and someone lean close.,\"On top of the truck, our view\",gold,slowly approaches the reverse of the group.,lifts him toward the ceiling.,travels up a pole to a camera.,starts the back of hogwarts.,2\n7250,lsmdc3053_PARENTAL_GUIDANCE-25853,582,They join the rest of the family by a hole dug in a flowerbed. Someone,They join the rest of the family by a hole dug in a flowerbed.,Someone,gold,enters the base of the steps and into the parlor office.,gets out and looks back.,takes the box and hands it to someone.,creeps in to someone.,2\n7251,lsmdc3053_PARENTAL_GUIDANCE-25853,581,Someone and someone carry a shoebox. They,Someone and someone carry a shoebox.,They,gold,join the rest of the family by a hole dug in a flowerbed.,slide onto a balcony in the lounge.,gaze at the photo of the cyclone - maker.,dig deep into each other's eyes.,0\n7252,anetv_ZdaS-WZHUZY,4413,Various scenes of lacrosse being played are shown. A player,Various scenes of lacrosse being played are shown.,A player,gold,loads a barrel with a white stick in and hits a ball when the three men fight each other in a competition.,lifts a large trophy over head his.,walks to a row of the coaches over his snowboard and talks.,passes the ball to a band.,1\n7253,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9899,He holds it horizontally in both hands. Someone,He holds it horizontally in both hands.,Someone,gold,seethes and raises his arms overhead.,takes a deep breath.,snaps the wand in two.,looks up at the imposing vessel.,2\n7254,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9903,He walks away from them. People,He walks away from them.,People,gold,share a webpage as he shoves his briefcase into the silver car.,turn to watch him.,\"stand quietly outside the door, watched from the window and watched by several small rectangular tables.\",\"the tea, he walks over the marketplace, picks up the scraps.\",1\n7255,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9898,Someone studies the wand closely. He,Someone studies the wand closely.,He,gold,holds it horizontally in both hands.,removes the blade from bringing it to his eye.,finds someone alone beneath the branching's map.,scrapes the red stone from his face.,0\n7256,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9901,\"He flings both parts off the bridge, into the chasm below. Once again he\",\"He flings both parts off the bridge, into the chasm below.\",Once again he,gold,starts to jog under the water.,\"nods to himself, then turns to the others, before jumping down onto the bridge.\",fills the wreckage with the structure.,waits with the water and lands heavily on the sand in front of him.,1\n7257,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9909,\"She looks down and takes someone's hand. The ruined school behind them, they\",She looks down and takes someone's hand.,\"The ruined school behind them, they\",gold,stroll into the darkness.,zoom out of view.,stand on the rubble - strewn bridge and gaze ahead.,\"applies rivers with close maize, left on.\",2\n7258,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9908,Someone follows her and stands on her other side. She,Someone follows her and stands on her other side.,She,gold,\"saunters across the dining table toward someone, and his wife grins.\",looks down and takes someone's hand.,stares at the big bird.,twists the shimmies in one of someone's gloved hands.,1\n7259,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9904,People turn to watch him. He,People turn to watch him.,He,gold,\"picks up a ball, then tosses it aside.\",\"backs away, then faces with her neighbor.\",throws two pens at him.,glances back at them.,3\n7260,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9905,He glances back at them. Someone,He glances back at them.,Someone,gold,enters the meeting room and steps out of the corridor.,lifts his silver - colored shotgun.,throws the faint into his light.,strides up to someone and takes his hand.,3\n7261,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9906,Someone strides up to someone and takes his hand. She,Someone strides up to someone and takes his hand.,She,gold,looks at him admiringly.,picks up several glasses of wine.,jerks a foot away.,looks on the mirror anxiously.,0\n7262,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9902,\"Once again he nods to himself, then turns to the others, before jumping down onto the bridge. He\",\"Once again he nods to himself, then turns to the others, before jumping down onto the bridge.\",He,gold,gets up and walks out.,walks away from them.,turns them to go in.,wanders off to meet his distant gaze.,1\n7263,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9900,Someone snaps the wand in two. He,Someone snaps the wand in two.,He,gold,\"flings both parts off the bridge, into the chasm below.\",turns on the light.,\"thrusts his sword upward, trying to hit someone against his bullwhip.\",posts a tracing sheet.,0\n7264,anetv_EuIBTFqVOt8,9931,Two men are shown performing an arm wrestling match with many watching on the sidelines and a ref calling who the winner is. Several more men,Two men are shown performing an arm wrestling match with many watching on the sidelines and a ref calling who the winner is.,Several more men,gold,battle back and fourth with one another and more people stepping in and out of frame to watch.,are shown grabbing your gun while the referee is also cheering and fighting around one another.,and horses are shown clapping the guys arm in their hands.,are shown fighting around themselves and fighting with each other to the end and attempts to roll past one another.,0\n7265,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13565,Someone eats edamame beans and sushi at the desk in his office. He,Someone eats edamame beans and sushi at the desk in his office.,He,gold,notices someone massive map taped around them.,\"tries to ignore someone, who's tapping a notebook with a pen.\",\"approaches to a bed hidden, pauses before the photo, and lies in a heap.\",enters the living room.,1\n7266,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13563,He prods someone's arm. Someone,He prods someone's arm.,Someone,gold,rises from his seat at the head of the table and walks out.,\"scoots over her laptop, holds him close, then zips up his dress.\",steadies his winnings near someone's huge window.,leg hits her nose and elbows her.,0\n7267,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13564,Someone rises from his seat at the head of the table and walks out. Someone,Someone rises from his seat at the head of the table and walks out.,Someone,gold,shuffles back in a bathrobe.,runs to him and touches her arm.,is standing by an oncoming car.,raises a palm to someone.,3\n7268,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60169,10096,\"Someone busily tries to stuff more and more things into his already full pack. pots and pans, blankets, cooking utensils, provisions, clothes. Someone\",\"Someone busily tries to stuff more and more things into his already full pack. pots and pans, blankets, cooking utensils, provisions, clothes.\",Someone,gold,skulks up past the thickly packed walls of a house.,\"lifts the door over his head, kicking it into pieces.\",\"looks up, startled.\",paces as he stabs him with his wand.,2\n7269,anetv_2mVwrM0qOGw,8092,Man is standing in a room holding a bow and talking to another man. manis,Man is standing in a room holding a bow and talking to another man.,manis,gold,keeps making huge jump in place.,hold a brown bow and put it while the camera gains across the horse.,practicing shots with a bow to a board in a large field.,throws the knife on the ground.,2\n7270,anetv_jW1isCO6MYk,17287,A young child is seen holding onto a set of monkey bars with an adult in front of her. The man then,A young child is seen holding onto a set of monkey bars with an adult in front of her.,The man then,gold,plays a set of bars on the bars.,helps her climb on the bars by holding onto her waist.,swings all around a bags and begins holding a log and moving the steps back and fourth.,throws her down against the bars without looking away.,1\n7271,anetv_jW1isCO6MYk,6323,The young male hold the little girl's chest as she go through the monkey bar. The young boy,The young male hold the little girl's chest as she go through the monkey bar.,The young boy,gold,watches and throws her arms over her face.,assisted the little girl as she go down the ladder.,turns off with the boy.,is joined by two skateboarders practicing by moving his arms and legs to the rake.,1\n7272,anetv_mzxz0EQy1pY,8595,Several people seen riding kayaks around the pool as well as people swimming around and watching on the sidelines. The men,Several people seen riding kayaks around the pool as well as people swimming around and watching on the sidelines.,The men,gold,are shown showing more shots of the man performing different steps with the person filming him.,continuously wrestle on the swing as well as do various stunts and other drone rides along the side as well as more performing.,continue moving around in various angles as well as being shown swimming underwater and playing with one another.,go all around the yard as well as the various young people still riding their board.,2\n7273,anetv_mzxz0EQy1pY,8594,A camera pans all around a heated pool and leads into a person climbing in a kayak and moving around the pool. Several people,A camera pans all around a heated pool and leads into a person climbing in a kayak and moving around the pool.,Several people,gold,seen riding kayaks around the pool as well as people swimming around and watching on the sidelines.,are seen playing a spoon and then in a pool dive by in the water while looking at the camera.,are seen sitting on the rowing boards as well as speaking in the water while the camera zooms to the side.,watch on the side as they swim and walk up in the air.,0\n7274,lsmdc1012_Unbreakable-6839,5450,\"Dressed only in his shirt and trousers, someone looks around uncertainly. A white coated man carrying a clipboard, who has been standing by the other figure,\",\"Dressed only in his shirt and trousers, someone looks around uncertainly.\",\"A white coated man carrying a clipboard, who has been standing by the other figure,\",gold,leaves them to dinner.,sits in her bed rumpled and sits up.,walks towards someone and is replaced by other medical staff.,\"begins to walk past the elevator door, snout up.\",2\n7275,lsmdc1012_Unbreakable-6839,5449,\"Someone slowly swings his legs over the side of a hospital trolley and sits up. In front of him, a white bandaged figure\",Someone slowly swings his legs over the side of a hospital trolley and sits up.,\"In front of him, a white bandaged figure\",gold,sits by a machine chair.,\"sits at his knee, his arms wrapped around his torso.\",is lying on another trolley.,carries a rifle up the grass.,2\n7276,lsmdc1012_Unbreakable-6839,5453,He examines someone's eyes. Someone,He examines someone's eyes.,Someone,gold,stares at the other trolley.,leans to someone's son.,takes the lanes bravely and chews on the sticks.,approaches a cabinet mounted with small hoses.,0\n7277,lsmdc1012_Unbreakable-6839,5451,\"A white coated man carrying a clipboard, who has been standing by the other figure, walks towards someone and is replaced by other medical staff. He\",\"A white coated man carrying a clipboard, who has been standing by the other figure, walks towards someone and is replaced by other medical staff.\",He,gold,holds up a torch.,cuts away four other rooms.,\"is being pushed to his desk by the pew, a neatly - wrapped book in a book.\",has her ear to one of the two german policemen.,0\n7278,lsmdc1012_Unbreakable-6839,5452,He holds up a torch. He,He holds up a torch.,He,gold,stirs the next light.,adds a second paper torch the syringe of the gun.,examines someone's eyes.,takes his ax out of the ax.,2\n7279,lsmdc3053_PARENTAL_GUIDANCE-25811,14962,\"The couple's eyes widen. At home, someone\",The couple's eyes widen.,\"At home, someone\",gold,sits with his mom in his white surfboards with a soldier in his arms.,searches a digital jukebox.,\"glares at his dresser, then faces the circle on the banker downstairs.\",mouths his cell phone.,1\n7280,anetv_b3mJ5rPzDv8,10454,An intro leads into an older man with a handlebar mustache speaking to the camera while his name and business is captioned on the side. He,An intro leads into an older man with a handlebar mustache speaking to the camera while his name and business is captioned on the side.,He,gold,introduces the two and enters with a conductor.,continues speaking to the camera with conviction and ends with his business and phone number posted across his face.,continues knocking off the window as more shots continue to play and the men continue showing the cards.,is seen cutting up more and cutting down guys.,1\n7281,anetv_b3mJ5rPzDv8,6009,\"A guy that is sitting, speaks. The clip flips, and the guy\",\"A guy that is sitting, speaks.\",\"The clip flips, and the guy\",gold,heads up some steps.,leaves it and speaks.,is closer to the camera.,does his own trick in the kitchen.,2\n7282,anetv_b3mJ5rPzDv8,6010,The phone number and credits associated with the clip are shown. The guy,The phone number and credits associated with the clip are shown.,The guy,gold,drops on the course and ends by ending.,applies the liquid to a smaller one with orange and white balls.,stops talking and looks straight at the camera.,welds the welding pattern.,2\n7283,lsmdc3023_DISTRICT_9-11262,9154,\"The levitating rocks and someone plummet downward. In the module, someone's son\",The levitating rocks and someone plummet downward.,\"In the module, someone's son\",gold,watches lights blink on throughout the interior.,drops the young girl in the dirt restroom.,drops his weapon and heads up the dragon's high carving.,are having a huge argument.,0\n7284,lsmdc3023_DISTRICT_9-11262,9149,\"Hundreds of feet above, the command module continues its steady ascent. Inside, someone's son\",\"Hundreds of feet above, the command module continues its steady ascent.\",\"Inside, someone's son\",gold,\"clings to him, gazing upward.\",\"lies in his bed, scattering manuscripts.\",is dragged by a sidewalk in front of the flood formation.,sits in a white cot.,0\n7285,lsmdc3023_DISTRICT_9-11262,9150,\"The machine sinks down, and black fluid pours. Someone\",\"The machine sinks down, and black fluid pours.\",Someone,gold,stares dully as the main components around him part.,see the distant black screen and a liquid on a person like rolling surface.,stops in front of his hut and peers out the window on the tunnel area.,walks beside her and stares down.,0\n7286,lsmdc3023_DISTRICT_9-11262,9151,Someone stares dully as the main components around him part. The robot,Someone stares dully as the main components around him part.,The robot,gold,opens the window as the water billows out.,turns toward her then removes them.,topples backward and lies motionless.,scales a circular grate on the floor.,2\n7287,lsmdc3023_DISTRICT_9-11262,9152,The robot topples backward and lies motionless. Someone,The robot topples backward and lies motionless.,Someone,gold,\"elbows someone and bounces him with his chest, then removes beneath the surface.\",finds the creature's body and moves in.,holds up a binder.,unsteadily pushes himself up on his elbows.,3\n7288,lsmdc3023_DISTRICT_9-11262,9153,\"Someone unsteadily pushes himself up on his elbows. On his belly, someone\",Someone unsteadily pushes himself up on his elbows.,\"On his belly, someone\",gold,continues doggedly through a patch of yellow weeds.,resumes his violence.,runs from the alter.,is seated at the desk.,0\n7289,anetv_KNpeiKm3xyM,4380,One of the players hits the ball to his opponent by punching it with his fist. Another player,One of the players hits the ball to his opponent by punching it with his fist.,Another player,gold,returns the ball by kicking it across the net.,holds a net in front of him and the hits him in the head.,throws it into a car.,hits the white ball that is made out of the goal.,0\n7290,anetv_KNpeiKm3xyM,4378,A group photograph of a many people of different age groups is shown. There,A group photograph of a many people of different age groups is shown.,There,gold,are a fish aquarium and a container of snow.,\", they go playing a game of martial pong at one game.\",are some people playing beach volley ball in the sand on a sunny day with several people watching them.,dogs are seen playing a game of soccer with one another.,2\n7291,anetv_KNpeiKm3xyM,4379,There are some people playing beach volley ball in the sand on a sunny day with several people watching them. One of the players,There are some people playing beach volley ball in the sand on a sunny day with several people watching them.,One of the players,gold,deals a person out.,runs and herded into the field with a person in a high jacket t - shirt behind the opponent.,fall down to the floor as soccer players take their shots.,hits the ball to his opponent by punching it with his fist.,3\n7292,anetv_KNpeiKm3xyM,4381,Another player returns the ball by kicking it across the net. The players,Another player returns the ball by kicking it across the net.,The players,gold,cheer and throw swords again.,put on their hands while one of the team hits the ball to make a goal.,retract the blocks and score a point.,continue playing the game by punching the ball across the net.,3\n7293,anetv_1nXLVjfupto,1404,Two men are seen standing behind a table speaking to the camera and then hold up various objects to the camera. They,Two men are seen standing behind a table speaking to the camera and then hold up various objects to the camera.,They,gold,push two boys on the bar showing how to make a drink.,continues to brush the hair as well as showing off various accordions.,take off one bike while holding the objects and laughing and speaking to the camera.,use tools on a tin can and then are seen sitting outside holding up more tools.,3\n7294,anetv_D707ZMWH7jQ,5703,\"A man in a red shirt begins talking in front of a wall of tool consisting of wrench, screws, ax and drills. He then\",\"A man in a red shirt begins talking in front of a wall of tool consisting of wrench, screws, ax and drills.\",He then,gold,opens the wood of the top of his ladder and the camera is inside.,solves the cube in various rupee and shows off the bike model material.,holds up a small silver piece and begins sticking it into the chain of the bike.,holds a push and put croquet across the ground.,2\n7295,anetv_D707ZMWH7jQ,5704,\"He then holds up a small silver piece and begins sticking it into the chain of the bike. Next, he\",He then holds up a small silver piece and begins sticking it into the chain of the bike.,\"Next, he\",gold,\"picks it up out of the container, picks up a small piece of leather.\",sits back in the machine and attempts to move his body next to the iron.,sets back on the land tire and removes the sides of the wall to remove it properly.,\"takes a black utensil, moves the pedals around and takes the chain completely off.\",3\n7296,anetv_D707ZMWH7jQ,5705,\"Next, he takes a black utensil, moves the pedals around and takes the chain completely off. He then\",\"Next, he takes a black utensil, moves the pedals around and takes the chain completely off.\",He then,gold,prepares for the appliance as he types the subway.,takes a box with a new chain in it and puts it back on the bike and begins tightening the chain.,continues cutting on and begins clipping cut specs with a large hole.,uses a measuring tool to rub the tire over the surface with the tool board in slow motion.,1\n7297,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10904,Someone gazes into her dark eyes. Their lips,Someone gazes into her dark eyes.,Their lips,gold,smile at each other.,meet in a tight embrace.,meet in a gentle kiss.,meet in a quick kiss.,2\n7298,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10903,Someone looks up as something green and white appears above their heads. Someone,Someone looks up as something green and white appears above their heads.,Someone,gold,joins the red - cloaked figure.,gazes into her dark eyes.,takes his arm and heads off.,stands on the wet yard and runs out of a landing.,1\n7299,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10901,People leave the Room of Requirement. Someone,People leave the Room of Requirement.,Someone,gold,is about to keep them from his brother son in other girls.,looks at the scrapbook on the desk.,place a hand in each.,joins someone in front of the mirror.,3\n7300,anetv__Yt94ffXcCE,11909,\"A boy welds a piece of metal in an indoor shop while wearing a protective coat, helmet, goggles and gloves. A boy in a shop\",\"A boy welds a piece of metal in an indoor shop while wearing a protective coat, helmet, goggles and gloves.\",A boy in a shop,gold,talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld.,stands and sits on the ice with something in hand.,shows some of how to clean the ground's body with a paper towel.,demonstrates how to make heat by using a rowing machine.,0\n7301,anetv__Yt94ffXcCE,11910,A boy in a shop talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld. The boy,A boy in a shop talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld.,The boy,gold,sits inside a body and welds a long metal hammer until the corner of an arc wins cover over a tanker.,begins to weld creating extreme sparks of fire like reactions in front of him over the material being welded.,pulls two polish in a workshop and uses the tool to place a piece of wood onto an open block.,\"removes a helmet and adjusts the wax on straight line, moves it in between lifts and touches it.\",1\n7302,lsmdc0021_Rear_Window-58349,14326,Someone realizes she is getting nowhere. We,Someone realizes she is getting nowhere.,We,gold,is several quirks in someone's attitude.,struggles to grab someone.,see her doing a bit of him in the park.,see someone's hand coming to the foreground with a restraining gesture.,3\n7303,lsmdc0021_Rear_Window-58349,14327,\"Someone, still looking out into the room, and without turning, says. She\",\"Someone, still looking out into the room, and without turning, says.\",She,gold,walks out of the passageway.,\"turns at last, and looks across at him.\",sits up the wall clock -.,makes her way to a railing inside the short apartment.,1\n7304,lsmdc0021_Rear_Window-58349,14323,\"After a moment of silence, someone says earnestly. Someone\",\"After a moment of silence, someone says earnestly.\",Someone,gold,sweeps an image off someone's neck.,stops as a giant punch sends him sprawling.,smiles at someone stomps off with it.,\"says, as if remembering some old experience.\",3\n7305,lsmdc0021_Rear_Window-58349,14325,\"Someone turns on her side, and stares into the room, angrily. Someone\",\"Someone turns on her side, and stares into the room, angrily.\",Someone,gold,\"smiles, fights back tears.\",emerges from under her pillow.,presses her back to the window hanging in the shed.,realizes she is getting nowhere.,3\n7306,lsmdc0021_Rear_Window-58349,14324,\"Someone says, as if remembering some old experience. Someone\",\"Someone says, as if remembering some old experience.\",Someone,gold,watches that someone is watching.,sits atop the bed next to her.,\"turns on her side, and stares into the room, angrily.\",does the same thing.,2\n7307,anetv_QE80ROTC_fI,15558,A man and dog are seen standing outside in a field with a man playing fetch with a dog. The man,A man and dog are seen standing outside in a field with a man playing fetch with a dog.,The man,gold,continues doing tricks with the frisbees the dog jumps off of their equipment.,throws the frisbee around with the dog while the animal brings it back.,pulls in the rope and swings the back around the dog as attached to another boat.,jumps onto the another while the dog.,1\n7308,anetv_QE80ROTC_fI,15559,The man throws the frisbee around with the dog while the animal brings it back. The man,The man throws the frisbee around with the dog while the animal brings it back.,The man,gold,loses the dog and throws it onto a stage to a stage.,continues playing while the dog attempts to turn and fetch the frisbee.,performs several more tricks with the dog using several frisbees.,continues out swinging back and fourth after all and beating the dog back and fourth.,2\n7309,lsmdc3062_SORCERERS_APPRENTICE-30834,15624,He gives the floor a scuffing kick. He,He gives the floor a scuffing kick.,He,gold,grabs someone by the collar.,charges and gathers up more than the rest.,\"tries to run, but the ball smacks him in the groin.\",\", someone runs along the track and lands in a sand cage at an airport, forcing his brother onto the ground.\",0\n7310,lsmdc3062_SORCERERS_APPRENTICE-30834,15623,\"Later in a men's room, someone approaches him. He\",\"Later in a men's room, someone approaches him.\",He,gold,follows the receptionist to the desk.,peeks at the distracted someone.,gives the floor a scuffing kick.,looks from someone to the carnies.,2\n7311,anetv_62Dwj4l7_qs,11511,More and more people continuously lift weights above their shoulders and heads while a man coaches them on the side. Several people,More and more people continuously lift weights above their shoulders and heads while a man coaches them on the side.,Several people,gold,are shown sailing along the fond public stadium.,are cheering in the other.,are seen in the end performing stretches and looking around with one man helping another in the end.,perform another routine that lead into a group of dancers in a slow motion environment followed by more names of different angles.,2\n7312,anetv_62Dwj4l7_qs,11510,A large group of people are seen sitting around a gym with many seen on the side lifting weights over their heads. More and more people,A large group of people are seen sitting around a gym with many seen on the side lifting weights over their heads.,More and more people,gold,are shown throwing an object off into the distance.,are seen walking backwards with one another while people watch on the side.,continuously lift weights above their shoulders and heads while a man coaches them on the side.,are seen stepping around on the other side followed by the person interviewing other women.,2\n7313,anetv_62Dwj4l7_qs,18709,The woman lifted the barbel as the coach is watching. The man in white shirt,The woman lifted the barbel as the coach is watching.,The man in white shirt,gold,walked away from the baby and kick his leg while talking.,threw the single pole on the floor.,\"lifted the barbel, paused on his chest and let go.\",falls to the floor.,2\n7314,anetv_62Dwj4l7_qs,18708,The woman in blue shirt lifted the barbel and put it down. The woman,The woman in blue shirt lifted the barbel and put it down.,The woman,gold,walked on the the track and walked to the ground.,walked across the stool and started doing the job.,lifted the barbel as the coach is watching.,\"climbs the bench and began spinning on the kicks, wooden bench.\",2\n7315,anetv_62Dwj4l7_qs,18710,\"The man in white shirt lifted the barbel, paused on his chest and let go. The man in green shirt\",\"The man in white shirt lifted the barbel, paused on his chest and let go.\",The man in green shirt,gold,lifted the barbel and put it down and then try again.,puts kneeling few sections to one side hold hands that he was controlling.,drop the sand ball into a net.,\"chaotic held there for the man to see - ahead man constantly, smooth it out.\",0\n7316,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7124,Someone joins her in the singing as they proceed down the street. They,Someone joins her in the singing as they proceed down the street.,They,gold,\"look, and reach the end of a brotherly kiss.\",\"are all milling around on bicycles, bouncing and kicking.\",'re in the corner of an apartment building.,have stopped walking and now face one another.,3\n7317,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7104,Some are so engrossed in dancing they continue at top speed. Teachers and elders,Some are so engrossed in dancing they continue at top speed.,Teachers and elders,gold,are individually out singing and dancing that running side the end.,start to scurry off.,play using big strokes to get them going around and forcing if a can to enter.,are being cast in patterned blankets.,1\n7318,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7111,As they near the camera we hear them singing. Camera,As they near the camera we hear them singing.,Camera,gold,\"closes the door, and there's separate red little balls that hang on this front of the mob.\",turns off the tv.,takes a topcoat from the tower.,moves with them as they proceed down the street.,3\n7319,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7122,\"She finally stoops down and picks up a rock, weighting it in her hand. Someone throws her rock, and once more we\",\"She finally stoops down and picks up a rock, weighting it in her hand.\",\"Someone throws her rock, and once more we\",gold,are knocked back in the bay.,see three of the rafters in the sand.,hear the sound of breaking glass.,see the couple falling away.,2\n7320,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7115,\"In his confusion someone steps on the end of the belt of someone's bath robe, which is trailing along behind her. She\",\"In his confusion someone steps on the end of the belt of someone's bath robe, which is trailing along behind her.\",She,gold,tries to work on a lip - gloss and its dark out.,gathers the robe around her.,gazes out across the wintry landscape.,watches with an admiring stare.,1\n7321,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7106,\"People are so busy dancing they don't notice the floor opening. As the floor opens, it\",People are so busy dancing they don't notice the floor opening.,\"As the floor opens, it\",gold,finds a layer of painted furniture floor and cabinets.,\"reveals an attractive, lighted swimming pool.\",applies its right foot and twists it.,is hard on a cuff.,1\n7322,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7116,She gathers the robe around her. He,She gathers the robe around her.,He,gold,\"looks from the mirror, flared and smiling as she hurries out, waving her arms over her head.\",sets it down on the base of the stair and she lights her performance.,picks up the belt and throws it over her arm.,\"loosens her neck and throws her to the ground, then turns away.\",2\n7323,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7108,\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order, finally clasps his hands like a diver and leaps in himself. The night\",\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order, finally clasps his hands like a diver and leaps in himself.\",The night,gold,is a circular melody.,falls but finally the men kneel down.,rides very fast along the path.,is warm with a bright moon.,3\n7324,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7103,Dancers begin to scream as they try to get off. Some,Dancers begin to scream as they try to get off.,Some,gold,is heard for being extremely guarded by the master.,are so engrossed in dancing they continue at top speed.,shows his father's grotesque ugly footprints between his sorrowful blue eyes.,are put on the crate on their heads.,1\n7325,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7120,We see a grumpy old man in shirt sleeves in a rocking chair on the porch. He,We see a grumpy old man in shirt sleeves in a rocking chair on the porch.,He,gold,dismounts from the bars and get on his bike.,blows down the heavy slide then drops it on a bench on the sofa.,\", shaking his head, puts down his nest comment like a thoughts.\",looks up as he hears the breaking glass.,3\n7326,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7109,Someone is dressed in jersey sweater and oversize football pants that keep wanting to come down. Someone,Someone is dressed in jersey sweater and oversize football pants that keep wanting to come down.,Someone,gold,\"ducks down, looking hiding.\",has to have no control.,is in an old white bath robe.,pushes his time the sheer button.,2\n7327,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7117,He picks up the belt and throws it over her arm. Someone looks after her; then,He picks up the belt and throws it over her arm.,Someone looks after her; then,gold,slides at her glass.,flings himself into a sling as the unconscious platoon slowly breaks away.,picks up a rock from the street.,hits herself with the butt of his pistol.,2\n7328,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7119,Someone hurls the rock at the house. We,Someone hurls the rock at the house.,We,gold,see a grumpy old man in shirt sleeves in a rocking chair on the porch.,finds a wooden stick.,\"up the chimney, he comes down a hill.\",eyes someone and someone recedes from the veranda past the fallen oak.,0\n7329,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7114,\"Someone, to cover his embarrassment, talks quickly on. In his confusion someone\",\"Someone, to cover his embarrassment, talks quickly on.\",In his confusion someone,gold,starts to walk up the stairs among the people in front of him.,tensely frowns and takes it with a steward towards the entrance.,\"steps on the end of the belt of someone's bath robe, which is trailing along behind her.\",is dressed gingerly and does not standards correctly own him.,2\n7330,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7121,\"He looks up as he hears the breaking glass. As he talks, someone\",He looks up as he hears the breaking glass.,\"As he talks, someone\",gold,is sweating with frustration.,'s prowls in bed.,wrinkles her face.,has been listening intently.,3\n7331,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7113,He takes the bundle of clothes from someone. They,He takes the bundle of clothes from someone.,They,gold,\"stand at the end of the steps and stop beside someone, hanging the back of her skirt.\",stop and look at each other.,backs out with a faint smile as they reach the porch.,\"looks up to someone, whom lies in his hands, as he looks at the camera.\",1\n7332,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7118,Someone looks after her; then picks up a rock from the street. Someone,Someone looks after her; then picks up a rock from the street.,Someone,gold,rolls up the window with a half - smile.,\"is sitting in front of the couch, knitting her shawl.\",hurls the rock at the house.,\"turns someone's head on, and allows someone to faint.\",2\n7333,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7107,\"They move backwards until finally they reach the edge of the floor and fall into the pool below. People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order,\",They move backwards until finally they reach the edge of the floor and fall into the pool below.,\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order,\",gold,\"exposing the glass in their hands, forcing a fiery pitcher to a pile of nature.\",begin to crowd again and catch it.,finally clasps his hands like a diver and leaps in himself.,\"grab the rope, grab it and grab down the creature fall and jump.\",2\n7334,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7105,They mistake the screams for cheers. People,They mistake the screams for cheers.,People,gold,are so busy dancing they don't notice the floor opening.,begin to play and resigned at everyone.,\"are both lying on the ground, waiting for them.\",look at the the forest below.,0\n7335,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7112,Camera moves with them as they proceed down the street. He,Camera moves with them as they proceed down the street.,He,gold,takes the bundle of clothes from someone.,have his arm around her for a big pushing effect.,moves over to the bed of someone's motorcycle.,stares at the mitt - - buffalo.,0\n7336,lsmdc0014_Ist_das_Leben_nicht_schoen-54458,7110,Someone is in an old white bath robe. Each,Someone is in an old white bath robe.,Each,gold,laces is quickly removed.,brings out her shoes.,\"comes seated beneath the edge of the chair, arm outstretched and knees.\",is carrying their wet clothes tied into a bundle that leaves a trail of dripping water.,3\n7337,anetv_Dx4LpX-X9JY,7311,Several people are gathering and talking to the camera. They,Several people are gathering and talking to the camera.,They,gold,are playing a game of curling on a court.,crouch down on a platform in front of a large crowd.,are at an outdoor event.,are talking to the people and firing to the camera.,2\n7338,anetv_Dx4LpX-X9JY,4594,They are preparing to run a race. They,They are preparing to run a race.,They,gold,go out and jump over a mountain and sand holes in the sand and other people come into the c's too.,\"take off, running the marathon as a group.\",race off numerous times on the track.,\"race to different times, then they run.\",1\n7339,anetv_Dx4LpX-X9JY,4593,A group of runners are gathered in the woods. They,A group of runners are gathered in the woods.,They,gold,are involved in a game of lacrosse.,are preparing to run a race.,engage in a game of arm wrestling.,are playing a game of tug of war.,1\n7340,anetv_Dx4LpX-X9JY,7312,They are at an outdoor event. The people,They are at an outdoor event.,The people,gold,engage in a foot race.,perform stunts and doing tricks.,are going down the river for a long time.,in the stadium are shoving into the crowd at the list trying to get scores.,0\n7341,lsmdc3077_THE_VOW-35576,9308,\"Her gaze anguished, someone shuts her eyes. Someone\",\"Her gaze anguished, someone shuts her eyes.\",Someone,gold,wraps his arm around her son.,gets up and leaves the room.,sadly wipes his eyes.,watches as the leeds players rolls off of the line.,1\n7342,lsmdc3077_THE_VOW-35576,9321,Someone sits at a place setting. Someone,Someone sits at a place setting.,Someone,gold,\"watches the teen, wide - eyed and walks into the front passenger area.\",nods and sets down a newspaper.,responds with a scissor expression.,\"sits on a bench, facing a makeup mirror.\",1\n7343,lsmdc3077_THE_VOW-35576,9320,\"Someone notices fresh fruit, coffee, and French toast on the island. Someone\",\"Someone notices fresh fruit, coffee, and French toast on the island.\",Someone,gold,listens with a considerable journalist.,sits at a place setting.,sets his other down.,\"finds his glasses, and starts to inspect him with an extended hand.\",1\n7344,lsmdc3077_THE_VOW-35576,9324,Someone stares at the bacon. She,Someone stares at the bacon.,She,gold,sets it down and picks bacon bits off her tongue.,\"nods in approval, and takes the syringe.\",wipes out her nose and glances at him with surprise in her eyes.,takes a dogs stem out of the drawer and places it into the slices.,0\n7345,lsmdc3077_THE_VOW-35576,9312,\"She props her chin on her fist. An artfully made, queen sized bed\",She props her chin on her fist.,\"An artfully made, queen sized bed\",gold,sits with four tall columns.,lies unoccupied behind her.,sits up by the ceiling's artwork.,\"is installed, followed by people laying in bed.\",1\n7346,lsmdc3077_THE_VOW-35576,9311,Someone remains at the dressing table. She,Someone remains at the dressing table.,She,gold,types in a sketchbook.,is a kung fu trainer seated at his desk.,props her chin on her fist.,glances uneasily at the tree.,2\n7347,lsmdc3077_THE_VOW-35576,9322,Someone nods and sets down a newspaper. Someone,Someone nods and sets down a newspaper.,Someone,gold,bites his lip and stifles a boyish smile.,returns the spilled coffee and leans back in the vehicle.,removes a bag and sets down an earpiece.,\"looks to his father, sitting curled up at the lunch table by a twenty.\",0\n7348,lsmdc3077_THE_VOW-35576,9318,\"Someone steps away from the mirror. On the living room couch, someone\",Someone steps away from the mirror.,\"On the living room couch, someone\",gold,stirs groggily and wakes.,\"clasped his late night cut, and she's on the phone.\",wears his suit sunglasses and watches intently as the timekeeper.,\"sits on the bed, ignoring he.\",0\n7349,lsmdc3077_THE_VOW-35576,9323,As someone gets the coffee pot his wife bites into a strip of bacon. Someone,As someone gets the coffee pot his wife bites into a strip of bacon.,Someone,gold,is on him with mussed hair.,puts the phone to the seat on the floor.,reaches for the phone.,stares at the bacon.,3\n7350,lsmdc3077_THE_VOW-35576,9313,\"An artfully made, queen sized bed lies unoccupied behind her. On the couch, someone\",\"An artfully made, queen sized bed lies unoccupied behind her.\",\"On the couch, someone\",gold,climbs the staircase to someone's snuggles.,lies low on her chair.,hands a band to someone.,stares off with a melancholy gaze.,3\n7351,lsmdc3077_THE_VOW-35576,9316,Someone approaches in a towel and spies a photo of her tattooed back. She anxiously,Someone approaches in a towel and spies a photo of her tattooed back.,She anxiously,gold,in his ear.,glances at the seeping then cocks her head and peers inside.,locates the swirling crescent shaped fish tattoo on her actual back.,cocks her head then narrows her eyes.,2\n7352,lsmdc3077_THE_VOW-35576,9317,She anxiously locates the swirling crescent shaped fish tattoo on her actual back. Someone,She anxiously locates the swirling crescent shaped fish tattoo on her actual back.,Someone,gold,stares into delightedly eyes.,\"sits a little vertical, her jaw clenched.\",steps away from the mirror.,attacks another fully exposed.,2\n7353,lsmdc3077_THE_VOW-35576,9315,\"The frame of a much larger wall mirror is home to several more candids, lovingly tucked in place. Someone\",\"The frame of a much larger wall mirror is home to several more candids, lovingly tucked in place.\",Someone,gold,is seated on the porch with a thick chain collar around him.,\"approaches the brush, looking between his notes.\",approaches in a towel and spies a photo of her tattooed back.,put another paint into deep snow.,2\n7354,lsmdc3077_THE_VOW-35576,9309,\"Someone gets up and leaves the room. In the living room, a shirtless someone\",Someone gets up and leaves the room.,\"In the living room, a shirtless someone\",gold,covers his bare feet with a nappy blanket and curls up beneath it on a couch.,picks up a large rope and tries to swing it from him.,tosses a pile of dirt across it.,puts the chair on his bedside table.,0\n7355,lsmdc3077_THE_VOW-35576,9319,\"On the living room couch, someone stirs groggily and wakes. He\",\"On the living room couch, someone stirs groggily and wakes.\",He,gold,pauses and joins in earbuds music with his dreamy eyes.,drops down on a couch.,sits up and throws off the blanket.,minces around it is a dimly lit hall.,2\n7356,lsmdc3019_COLOMBIANA-8922,16836,Someone reads a note written in a sketchbook. She,Someone reads a note written in a sketchbook.,She,gold,slides off her jacket and falls back on his bed.,reappears mashing a doubt providing a letter.,enters her apartment video frowning with students.,watches as someone stares at her beams up at a priest's portrait.,0\n7357,lsmdc3019_COLOMBIANA-8922,16834,\"Later, she enters someone's apartment. A drop cloth\",\"Later, she enters someone's apartment.\",A drop cloth,gold,lies on her mother's heart.,covers half of the canvas.,is delivered.,covers the next room.,1\n7358,lsmdc3019_COLOMBIANA-8922,16839,\"Two clips show someone at the police station, her face obscured. Agent someone\",\"Two clips show someone at the police station, her face obscured.\",Agent someone,gold,watches her mother fondly.,fights to regain her composure.,hikes along a darkening wintry road outside.,hits a command on his computer then sips from a travel mug.,3\n7359,lsmdc3019_COLOMBIANA-8922,16835,A drop cloth covers half of the canvas. Someone,A drop cloth covers half of the canvas.,Someone,gold,rips a sheet of scrap paper paper with heart and a heart.,slips down and closes the lid on the box.,reads a note written in a sketchbook.,stares at the handkerchief.,2\n7360,lsmdc3019_COLOMBIANA-8922,16837,She slides off her jacket and falls back on his bed. She,She slides off her jacket and falls back on his bed.,She,gold,\"escapes, shutting the door behind her.\",lands on her back and roars past someone.,\"hands someone her shoes, then falls straight into the ground.\",\"turns on to her side, adjusting the pillow under her head.\",3\n7361,lsmdc3019_COLOMBIANA-8922,16832,\"Now someone descends a staircase from a train platform. As a man passes, she\",Now someone descends a staircase from a train platform.,\"As a man passes, she\",gold,\"bows her head, letting her hair shield her face.\",spots an outdoor hillside.,stops beside her father and raises her hands.,plucks a large shopping bag off the mohawked man's shoulder.,0\n7362,lsmdc3019_COLOMBIANA-8922,16838,\"Lifting it to her face, she smells it. Two clips\",\"Lifting it to her face, she smells it.\",Two clips,gold,of month ribbons fly in her direction.,her glasses from her pocket.,from outside in burning barn.,\"show someone at the police station, her face obscured.\",3\n7363,lsmdc3019_COLOMBIANA-8922,16833,\"As a man passes, she bows her head, letting her hair shield her face. Later, she\",\"As a man passes, she bows her head, letting her hair shield her face.\",\"Later, she\",gold,enters someone's apartment.,speaks to the boy as she walks past a modest baby and an exquisite puritan girl.,unhappily slides the paddy laps in the bin.,enters with a twelve inch flat needle.,0\n7364,lsmdc3019_COLOMBIANA-8922,16831,He climbs into the front passenger seat. Now someone,He climbs into the front passenger seat.,Now someone,gold,descends a staircase from a train platform.,walks up a bank of snowy steps and gives him a big hug.,playfully taps his ankle on the shoulder over the deck.,watches as his baseball teen races away from survivors.,0\n7365,anetv_c8GFfLcwFrE,15341,The water and the sky is red. Several people,The water and the sky is red.,Several people,gold,jump and do tricks on the terrain.,are surfing on the water.,are walking and skiing.,are seen standing around a sandy pit with one person sitting on the far sand.,1\n7366,lsmdc3084_TOOTH_FAIRY-39601,14464,\"Someone blinks helplessly as lights glimmer on his frightened face. Now, in his pretty dress, someone\",Someone blinks helplessly as lights glimmer on his frightened face.,\"Now, in his pretty dress, someone\",gold,leans over a toilet and punches over.,stands in a grand hall.,faces the vanger mulling.,sits on a couch.,1\n7367,lsmdc3084_TOOTH_FAIRY-39601,14460,\"Someone sits up on the edge of his bed, flips on a lamp, and reads the summons. As he chuckles, a pair of fluffy - edged wings\",\"Someone sits up on the edge of his bed, flips on a lamp, and reads the summons.\",\"As he chuckles, a pair of fluffy - edged wings\",gold,fall into a chandelier above him.,emerge from the side of her left hand above her sailing puppet.,fill a waitress beside him.,spread open on his back.,3\n7368,lsmdc3084_TOOTH_FAIRY-39601,14467,Someone watches a flying female collect files from office worker fairies. She,Someone watches a flying female collect files from office worker fairies.,She,gold,flies up to a map of the world and touches her wand to a location over eastern europe.,\"puts the grateful potato into her pack, before polishing off the plates for plastic.\",spots a news vendor in the relay terminal passing through a thick metal barrier.,\"replies, dashing roughly at home.\",0\n7369,lsmdc3084_TOOTH_FAIRY-39601,14465,\"Now, in his pretty dress, someone stands in a grand hall. Male and female fairies\",\"Now, in his pretty dress, someone stands in a grand hall.\",Male and female fairies,gold,\"pass by, some with wings, some without.\",approaches a building set with a historic appointed cafeteria set.,walk several paces behind them.,walk to the back of the cart to get up.,0\n7370,lsmdc3084_TOOTH_FAIRY-39601,14455,\"The woman kisses her cheek, then glares at someone. She\",\"The woman kisses her cheek, then glares at someone.\",She,gold,kisses someone's cheek.,\"lowers the barrel of the gun, then puts his hand in his waistband.\",hands him his jacket.,smiles and kisses him.,2\n7371,lsmdc3084_TOOTH_FAIRY-39601,14458,He rolls onto his back. He,He rolls onto his back.,He,gold,grabs his shoulder as he tries to open the door.,places his elbows on his knees.,seizes him in a hug.,stirs under the covers and rolls onto his stomach.,3\n7372,lsmdc3084_TOOTH_FAIRY-39601,14453,Her mom holds up a dollar. Someone,Her mom holds up a dollar.,Someone,gold,lifts it to her nostrils.,slaps her very hard.,pulls out a hoodie and opens the box door.,smiles and hugs her mother.,3\n7373,lsmdc3084_TOOTH_FAIRY-39601,14463,\"Someone looks up, peering through a seemingly endless funnel of energy. Someone\",\"Someone looks up, peering through a seemingly endless funnel of energy.\",Someone,gold,runs through plumes of smoke dancing beneath a chain - link fence.,grabs someone's wand.,\"exits the stage, picks up his foot, and leaps onto a wall.\",blinks helplessly as lights glimmer on his frightened face.,3\n7374,lsmdc3084_TOOTH_FAIRY-39601,14466,A female fairy flies overhead. Someone,A female fairy flies overhead.,Someone,gold,heads towards the other side of the expo.,gapes at their wedding competitors on the upper deck.,stops to arm herself.,watches a flying female collect files from office worker fairies.,3\n7375,lsmdc3084_TOOTH_FAIRY-39601,14459,Its heading reads Department of Dissemination of Disbelief. Someone,Its heading reads Department of Dissemination of Disbelief.,Someone,gold,\"sits up on the edge of his bed, flips on a lamp, and reads the summons.\",breaks it open a paper stalk.,changes his mind and strikes him.,is trying to hold the powder suddenly up in the morning.,0\n7376,lsmdc3084_TOOTH_FAIRY-39601,14456,\"Now, his Corvette sits outside an apartment complex, where a second story light goes out. In a darkened bedroom, someone\",\"Now, his Corvette sits outside an apartment complex, where a second story light goes out.\",\"In a darkened bedroom, someone\",gold,sits at a laptop with an beiber - handheld device on her belly.,checks the tv radio then dials.,lies on his side and rubs his shoulder.,is being drug by his father.,2\n7377,lsmdc3084_TOOTH_FAIRY-39601,14462,Loose papers fly and a wind blows blankets off the bed. Someone,Loose papers fly and a wind blows blankets off the bed.,Someone,gold,\"nods, then turns, revealing dresses in a shelf.\",struggles to climb the boat back.,\"looks up, peering through a seemingly endless funnel of energy.\",knocking the table from someone.,2\n7378,lsmdc3084_TOOTH_FAIRY-39601,14461,\"As someone grimaces, the magical smoke swirls overhead. Loose papers fly and a wind\",\"As someone grimaces, the magical smoke swirls overhead.\",Loose papers fly and a wind,gold,catches up to someone.,sends a man alone socializing.,blows blankets off the bed.,roll through the wings.,2\n7379,lsmdc3084_TOOTH_FAIRY-39601,14452,She mouths the word stop. Her mom,She mouths the word stop.,Her mom,gold,holds up a dollar.,walks up to her.,twists his husband's wrist.,\"hangs up and sits in the used car, staring at someone.\",0\n7380,lsmdc3084_TOOTH_FAIRY-39601,14457,\"In a darkened bedroom, someone lies on his side and rubs his shoulder. He\",\"In a darkened bedroom, someone lies on his side and rubs his shoulder.\",He,gold,turns and turns away.,prepares to carry her off.,pulls his legs up in his lap.,rolls onto his back.,3\n7381,lsmdc3084_TOOTH_FAIRY-39601,14454,Someone smiles and hugs her mother. The woman,Someone smiles and hugs her mother.,The woman,gold,pulls someone up again.,spreads her arms ruefully.,grins and lays his head on someone's lap.,\"kisses her cheek, then glares at someone.\",3\n7382,anetv_J3DxJ8gI95U,5435,\"A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually begins to catch on fire. Once the fire simmers down, the man throws red sauce on top of the food and he\",A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually begins to catch on fire.,\"Once the fire simmers down, the man throws red sauce on top of the food and he\",gold,then wipes it along and smiles.,shuffles it around the skillet.,finished to his eating life and then pans back to the nightstand.,stirs several more food off.,1\n7383,anetv_J3DxJ8gI95U,5436,\"Once the fire simmers down, the man throws red sauce on top of the food and he shuffles it around the skillet. The camera then\",\"Once the fire simmers down, the man throws red sauce on top of the food and he shuffles it around the skillet.\",The camera then,gold,zooms in on the dish as the chef continues to shuffle the food and cook the meal.,shifts his cinnamon turn to the small plane and all of the cricketers are doing an egg sandwich on and front dough.,switches to the sheepish looking someone and continues talking.,adds a small amount of alcohol into the bowl and takes the pasta for a press.,0\n7384,anetv_J3DxJ8gI95U,935,He is cooking in several pots and skillets as he talks. He,He is cooking in several pots and skillets as he talks.,He,gold,\"dumps the bottles into the mixer, adds some lime to the finished salad then pours the powder into the pan.\",talks about what he is about to do before making out.,\"is displaying a salad on the bread, showing off and off the eggs while he talks in the last plate.\",gives instructions on how to cook a dish.,3\n7385,anetv_J3DxJ8gI95U,5434,A stove is shown with a skillet on an eye with a flame. A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually,A stove is shown with a skillet on an eye with a flame.,A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually,gold,puts a piece of a hot sandwich in the pan and he continues to mix the ingredients on the bowl.,wins while smiling into the camera.,begins to catch on fire.,added to a combat while pausing after they all charged the mixture on three dogs.,2\n7386,anetv_NbTlXQLScRo,951,A man is seen speaking to the camera followed by him laying several ingredients out and boiling them in some water. He then,A man is seen speaking to the camera followed by him laying several ingredients out and boiling them in some water.,He then,gold,pours more food items under water and into a pot filled with water.,adds various ingredients together while kitchen a man talking and mixing ingredients into a pan and stirring it into a pan.,cuts some butter off a ball and mixes them together while others stand afterwards.,picks up a cup and places it in a pan again mixing it back and presenting it to the dish.,0\n7387,anetv_7gRbYNWSUjk,12051,\"Then, the man leans on her hands to spin his body and make turns. After, the man\",\"Then, the man leans on her hands to spin his body and make turns.\",\"After, the man\",gold,stands on his hands and tilt his body to the sides and front.,speaks in front of him and spin in circles.,begins doing right flips then continues taking slow movements.,begins to dance and flip in the air with air cameron.,0\n7388,anetv_7gRbYNWSUjk,12050,\"A man practice martial arts in a gym turning and spinning around. Then, the man\",A man practice martial arts in a gym turning and spinning around.,\"Then, the man\",gold,kicks from parallel parallel bars.,leans on her hands to spin his body and make turns.,grips hands with a baton and stopping to scatter it.,continues on with the pommel horse and continues in between 3.,1\n7389,anetv_bMWWSk_YFY8,11038,The ox charge at the trainers lined up against the wall. Spectators,The ox charge at the trainers lined up against the wall.,Spectators,gold,attacks with special waiters.,look on their side.,\"curl the passengers around the room, someone balances easily on the side of the crate.\",watch and walk in the stands during the event.,3\n7390,anetv_bMWWSk_YFY8,11037,Two ox duel with horns in a corral while trainers guide them. The ox charge at the trainers,Two ox duel with horns in a corral while trainers guide them.,The ox charge at the trainers,gold,makes dart in the full center.,shows the dogs making a sympathetic gesture.,lined up against the wall.,have a red tube by a high eye.,2\n7391,anetv_opGZh9nUlWA,12560,The lady performs a ballet dance. The lady,The lady performs a ballet dance.,The lady,gold,walks slowly around the stage wearing stage.,lifts her leg up behind her and moves it to the front and rests it on her leg.,switches her hips to the music.,sits down on the first arbor and the teacher raises her left hand in a continuous frown.,1\n7392,anetv_opGZh9nUlWA,12559,A lady stands in a dance studio. the lady,A lady stands in a dance studio.,the lady,gold,does pink dance moves doing zumba and dancing on her belly.,waves her arms in front of him.,finishes and walks around the stage.,performs a ballet dance.,3\n7393,anetv_opGZh9nUlWA,12561,The lady lifts her leg up behind her and moves it to the front and rests it on her leg. The lady,The lady lifts her leg up behind her and moves it to the front and rests it on her leg.,The lady,gold,stands in front of the camera facing the mirror.,puts the corner of her leg and peels it with some exercise equipment.,\"peels her body off the tank, walks the tube backwards shortly after to remove a towel and balances her legs.\",rubs additional black cuts on the right side.,0\n7394,anetv_opGZh9nUlWA,12562,The lady stands in front of the camera facing the mirror. We,The lady stands in front of the camera facing the mirror.,We,gold,see the lady working up view.,see the lady screen.,see a person sitting on the left side of the room.,\"then lifts up the camera, leaving the directory and poised in her dim shot for a pruning.\",2\n7395,anetv_U0Q10ZdqnJo,2691,There's a woman in a white shirt in an indoor tennis court hitting balls across the court. She,There's a woman in a white shirt in an indoor tennis court hitting balls across the court.,She,gold,continues rolling the ball around while other people cheers as balls - like arrow begins at the end.,uses his hose to hit the ball to the ground and still punching.,\"is ni a ball court on the side, and then solemnly makes a triangle and hit a ball back and forth.\",bounces the ball on the ground and then serves the ball across the net.,3\n7396,anetv_bJ695Pp7Vng,7798,There are various still pictures of girls playing water polo. There,There are various still pictures of girls playing water polo.,There,gold,is peeled back in the auditorium using blonde glitter.,are two black screens with white text that show up after the video.,\"are shown getting very still as a man in a suit talks with the instructor, and occasionally a person does sit ups.\",are many people who watch kites experience.,1\n7397,anetv_bJ695Pp7Vng,2066,\"Several images of girls are shown as they compete against teams playing Water polo. As the pictures continue, several girls\",Several images of girls are shown as they compete against teams playing Water polo.,\"As the pictures continue, several girls\",gold,are shown running after a team running out and raising them to start a game.,\"are shown making faces, holding their arms up and getting hit by their opponents.\",plays cricket in an indoor critique in the big red bar.,are on the road demonstrating various game.,1\n7398,anetv_bJ695Pp7Vng,7797,A black screen appears then white text appears coming in from the left and right side of the screen. There,A black screen appears then white text appears coming in from the left and right side of the screen.,There,gold,is writing on a desk in front of one.,close up of the man and a group of players are seen sitting across a field and field performing tricks.,lady starts opening a silver cone bowl with red varnish and begins a bowl with white liquid over the surface.,are various still pictures of girls playing water polo.,3\n7399,anetv_v4KygkYPdp0,6534,The person claps their hands. The person,The person claps their hands.,The person,gold,takes the flute away and leaves the room.,claps a hand over their mouths.,puts his fingers together.,spins and flips around in the air.,2\n7400,anetv_v4KygkYPdp0,6532,The credits of the clip are shown. A person,The credits of the clip are shown.,A person,gold,puts a tube on a machine and uses a stick.,rests his hands on the top of drums.,rides his board down through the sand.,is driving behind a restaurant counter.,1\n7401,anetv_9WOvWFdA7lY,7859,3 The guy puts a second ring in the girl's lip. 4 The guy,3 The guy puts a second ring in the girl's lip.,4 The guy,gold,\"blows the girls nails, and a guy stirs on his arms with the information of the video.\",hits the girl with a big smile.,cleans up the girls lip.,puts an arrow repeatedly.,2\n7402,anetv_9WOvWFdA7lY,13729,A tattooed man with tools appears and pierces her lower lip. He,A tattooed man with tools appears and pierces her lower lip.,He,gold,finishes and gives her a drink.,is drumming intently as a red cable cars blur on the other side.,continues to talk and talks.,returns weights with oil and paints.,0\n7403,anetv_9WOvWFdA7lY,13728,A woman is seated in a beauty chair. A tattooed man with tools,A woman is seated in a beauty chair.,A tattooed man with tools,gold,is shown under the grooming table.,runs out cutting the woman's hair.,appears and pierces her lower lip.,is behind his back and brushing his hair down.,2\n7404,anetv_9WOvWFdA7lY,7860,4 The guy cleans up the girls lip. 5 The guy,4 The guy cleans up the girls lip.,5 The guy,gold,drinks from its mouth before turning off the pair.,puts the contact lens in the dark mark.,stops the box and holds the cigarette when the guy puts her nail in.,gives the girl something to gargle.,3\n7405,anetv_9WOvWFdA7lY,7858,2 a guy comes and puts a ring through the lip. 3 The guy,2 a guy comes and puts a ring through the lip.,3 The guy,gold,applies it to his belt and hugs the handle.,puts a second ring in the girl's lip.,holds another pole and shows it on her belt.,raises a blindfold to hug the little girl who lets go of the set.,1\n7406,lsmdc0020_Raising_Arizona-57319,17618,Pulling the Biker from a distance as he levels the two shotguns. The tracking camera,Pulling the Biker from a distance as he levels the two shotguns.,The tracking camera,gold,shows the completed pumping.,moves silently as someone runs along the welcome cliff edge.,pulls back further to reveal a running jack - rabbit keeping pace with us in the foreground.,stops with the two boys clearly throwing the seeing behind the chief.,2\n7407,lsmdc0020_Raising_Arizona-57319,17616,\"As the Biker roars into frame, his rear tire laying down a wake of fire. As he\",\"As the Biker roars into frame, his rear tire laying down a wake of fire.\",As he,gold,\"gets out of a train hut, grimaces cover someone intercepts the chief on top.\",\"makes his escape, people flee towards someone in pursuit of a gun flies.\",\"reaches out to take the last preserver parker out of the light, spiders everywhere.\",roars along a ribbon of desert highway.,3\n7408,lsmdc0020_Raising_Arizona-57319,17609,There is an awkward silence as she leaves and slams the bedroom door. Someone is carefully studying his thumbnail; someone,There is an awkward silence as she leaves and slams the bedroom door.,Someone is carefully studying his thumbnail; someone,gold,stares fixedly at the ceiling.,\"looks at the bedroom window, and turns out insistently.\",moves back and forth on the photographs.,adjusts his reflection when he approaches someone.,0\n7409,lsmdc0020_Raising_Arizona-57319,17614,Its driver is a huge leather - clad hellion. The Biker,Its driver is a huge leather - clad hellion.,The Biker,gold,wears a sweet elderly black cap.,roars out of frame.,pulls someone's mask away from the steward and enters.,steps up to the driver seat.,1\n7410,lsmdc0020_Raising_Arizona-57319,17608,\"Someone leans in close to someone, a look of sincere concern on his face, and says under his breath. There\",\"Someone leans in close to someone, a look of sincere concern on his face, and says under his breath.\",There,gold,\", someone stands up, picks up her cell and begins doing it, somewhat with her lost friend, obviously romantic.\",\"works his way through the various, soft martial - comforted music.\",is an awkward silence as she leaves and slams the bedroom door.,places his mouth closer.,2\n7411,lsmdc0020_Raising_Arizona-57319,17607,He is looking at the baby. People,He is looking at the baby.,People,gold,\"look up at someone, dumbstruck.\",are talking to someone how they bring back plates and peanuts.,\"are getting up, and they are carrying nunchucks.\",foremen his friends and onramp.,0\n7412,lsmdc0020_Raising_Arizona-57319,17612,\"Someone is momentarily startled, then goes on playing with the baby. Someone finally\",\"Someone is momentarily startled, then goes on playing with the baby.\",Someone finally,gold,turns to face him.,\"shakes himself up, starts grinning something on the bars, throws himself down in the track by his two friends.\",calms down and starts the kiss again.,has to keep him on his feet.,0\n7413,lsmdc0020_Raising_Arizona-57319,17619,The Biker slues the other gun around. The Biker,The Biker slues the other gun around.,The Biker,gold,hands him a green drill that is balanced on their feet.,is approaching in the distant background.,pulls on a third handle.,reverses above the pool.,1\n7414,lsmdc0020_Raising_Arizona-57319,17632,\"The singing that the building scream covered, however, is now audible again. Perspiration\",\"The singing that the building scream covered, however, is now audible again.\",Perspiration,gold,moves the stuffed sample to his mouth.,beads someone's forehead.,race while someone is secured this time.,bursts through a hole in the dead.,1\n7415,lsmdc0020_Raising_Arizona-57319,17625,The roar of his engine and clank of his chains recede as the Biker gradually dissolves into thin air. We,The roar of his engine and clank of his chains recede as the Biker gradually dissolves into thin air.,We,gold,are people jogging down the hill and down a thick path into the companies building trudging by dirt.,pull up on bulky computers as he speeds past the plaza and through a tumbling series of revolving doors.,are left looking at the empty street and the faraway arizona house.,pushes the deck back as he drives past.,2\n7416,lsmdc0020_Raising_Arizona-57319,17611,\"Someone sits gingerly on the edge of the bed and, smiling, sticks a finger through the bars of the crib to play with the baby. Someone\",\"Someone sits gingerly on the edge of the bed and, smiling, sticks a finger through the bars of the crib to play with the baby.\",Someone,gold,\"joins someone, flipping herself back and forth to dance on the piano wrapped in her arms.\",approaches the cinema door.,stirs and looks at the bar.,\"is momentarily startled, then goes on playing with the baby.\",3\n7417,lsmdc0020_Raising_Arizona-57319,17627,\"The camera starts floating forward very close to the ground, moving slowly toward the Arizona house. The high - pitched drone\",\"The camera starts floating forward very close to the ground, moving slowly toward the Arizona house.\",The high - pitched drone,gold,can be seen walking along an empty passageway.,\"is now lying, horrified by terror.\",is becoming less faint under the singing.,pops up on the arizona bed screen.,2\n7418,lsmdc0020_Raising_Arizona-57319,17623,As he crashes back down to earth in the foreground and roars away. Only now we are no longer in the desert: We,As he crashes back down to earth in the foreground and roars away.,Only now we are no longer in the desert: We,gold,as someone reaches towards him.,they stare at each other.,no further than it is.,are looking down a twilight street at the end of which is the arizona house.,3\n7419,lsmdc0020_Raising_Arizona-57319,17617,He is reaching for the two sawed - off shotguns which are strapped crisscross across his back. Pulling the Biker from a distance as he,He is reaching for the two sawed - off shotguns which are strapped crisscross across his back.,Pulling the Biker from a distance as he,gold,runs towards the little master hut.,enters a crunch desk.,scrambles up the steps to mount the train.,levels the two shotguns.,3\n7420,lsmdc0020_Raising_Arizona-57319,17631,\"We reach the top and hurtle - thwap! - through the white curtains of the open second - story window into the nursery to reveal Florence Arizona, her back to us, screaming over the crib. We\",\"We reach the top and hurtle - thwap! - through the white curtains of the open second - story window into the nursery to reveal Florence Arizona, her back to us, screaming over the crib.\",We,gold,come in to change the ornaments.,are rocketing toward her.,\"are running in ikea, people running on a small field.\",slip above her from her husband's room.,1\n7421,lsmdc0020_Raising_Arizona-57319,17622,\"With the crane down we momentarily lose him from view over the rise; then suddenly - roar - he tops the rise and, wheels spinning, is airborne. As he\",\"With the crane down we momentarily lose him from view over the rise; then suddenly - roar - he tops the rise and, wheels spinning, is airborne.\",As he,gold,hauls himself up the mountain to see a huge map of rocks and flowers starting from the window.,\"faces the suv, some passengers push toward him.\",crashes back down to earth in the foreground and roars away.,\"sees the pendant, we see an intersection, the expanding of audio, over the message on the monitor.\",2\n7422,lsmdc0020_Raising_Arizona-57319,17624,Only now we are no longer in the desert: We are looking down a twilight street at the end of which is the Arizona house. The roar of his engine and clank of his chains,Only now we are no longer in the desert: We are looking down a twilight street at the end of which is the Arizona house.,The roar of his engine and clank of his chains,gold,are suddenly struggling as it begins to stoop open.,is joined under the north outer 8.,recede as the biker gradually dissolves into thin air.,are smashed through the lock!,2\n7423,lsmdc0020_Raising_Arizona-57319,17610,Someone is carefully studying his thumbnail; someone stares fixedly at the ceiling. Someone lies in bed facing the wall; we,Someone is carefully studying his thumbnail; someone stares fixedly at the ceiling.,Someone lies in bed facing the wall; we,gold,follow them past the chair.,\"see someone at the wall, struggling up the above.\",\"cut down the thin staircase, across the room.\",see only the back of her head.,3\n7424,lsmdc0020_Raising_Arizona-57319,17615,\"The Biker roars out of frame. As the Biker roars into frame, his rear tire\",The Biker roars out of frame.,\"As the Biker roars into frame, his rear tire\",gold,bears a sharp man.,swerves and slugs on a truck.,replayed again in slow motion.,laying down a wake of fire.,3\n7425,lsmdc0020_Raising_Arizona-57319,17621,\"As the Biker roars away, the foreground flower bends with his draft and then bursts into flame. We\",\"As the Biker roars away, the foreground flower bends with his draft and then bursts into flame.\",We,gold,shine into all his faces.,are approaching the crest of a rise.,\"goes right to his left, but sits in the other.\",moves from the dagger to the man's body and somehow dims out the fire repeatedly.,1\n7426,lsmdc0020_Raising_Arizona-57319,17630,We are moving quite fast now. We,We are moving quite fast now.,We,gold,\"are rushing toward the house, toward the base of the ladder, the sustained scream drawing us on.\",are from the top of a huge large donut.,slow past over and our view ahead.,see the fat tank who is watching.,0\n7427,lsmdc1008_Spider-Man2-75576,8786,She turns to her costar. People,She turns to her costar.,People,gold,walk down the street side - by - side.,dance through the crowd of dancing.,huddle together in the darkness.,\"shoves the bully's weapon away and unscrews on it, but it won't budge.\",0\n7428,anetv_hDpYoAAFwOA,2708,\"A man performs stunts on the back of a motorcycle, falls off, and injures himself at which point he falls to the ground and looks hurt. A man\",\"A man performs stunts on the back of a motorcycle, falls off, and injures himself at which point he falls to the ground and looks hurt.\",A man,gold,\"attempts to use a skateboard, but several judges talk to them and they hit on each other.\",is then shown skiing in front of a kickboxing fence.,is hanging off of a moving bicycle on a down ramp.,lay on the outside of a skateboard and skateboarder in the water with his skateboard and skateboard.,2\n7429,anetv_hDpYoAAFwOA,2709,A man is hanging off of a moving bicycle on a down ramp. The man,A man is hanging off of a moving bicycle on a down ramp.,The man,gold,flutters the flags then falls after other is given in.,continues to skate multiple times.,jumps down the diving board and grabs a pole.,falls off of the bike and onto the ground with torn clothes.,3\n7430,anetv_DV1ITGBfo5w,13437,He continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh. Then the other person in black shorts,He continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh.,Then the other person in black shorts,gold,kneels down on his left knee and holds up a long metal pole with his hands to raise it.,\"does the same thing very as well as another woman sat in the chair, farther over course he was introduced.\",slides again to change positions and begins to recover them.,takes the ball with instructions at the top with his hat.,0\n7431,anetv_DV1ITGBfo5w,13434,There are two men standing in an indoor gym wearing gray athletic shirts and black and red shorts. They,There are two men standing in an indoor gym wearing gray athletic shirts and black and red shorts.,They,gold,begin to approach the parallel bars.,are demonstrating and talking about workout routines.,continue skateboarding and playing hockey.,are trying to push each other with a jump rope.,1\n7432,anetv_DV1ITGBfo5w,13438,Then the other person in black shorts kneels down on his left knee and holds up a long metal pole with his hands to raise it. The person in the red short,Then the other person in black shorts kneels down on his left knee and holds up a long metal pole with his hands to raise it.,The person in the red short,gold,walks with the five on his left to holds their pointed body foot in their direction.,explains what core muscles he is exercising while doing the workout.,chair the nails and then kicks a microphone.,pushes their bangs forward.,1\n7433,anetv_DV1ITGBfo5w,13436,The man in the red shorts is raising his right hand up to show a stretching exercise move while the other person is watching him. He,The man in the red shorts is raising his right hand up to show a stretching exercise move while the other person is watching him.,He,gold,looks up and stands up to show little more support.,as he does the walk he continues to slip behind the man and continue with the man playing the legs on the line.,is standing in someone and there's a boy in a room with doing a disk on his hand.,continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh.,3\n7434,anetv_DV1ITGBfo5w,112,Two men are at a gym to demonstrate proper form for the exercise. The man in the black shorts,Two men are at a gym to demonstrate proper form for the exercise.,The man in the black shorts,gold,gets on one knee as the instructor gives instructions on what to do.,stretches its right hand over his right arm and imitates the boy.,continues on the exercise machine and starts to demonstrate how to do crunches.,hits a weight before the crowd.,0\n7435,anetv_DV1ITGBfo5w,13435,They are demonstrating and talking about workout routines. The man in the red shorts,They are demonstrating and talking about workout routines.,The man in the red shorts,gold,is wearing a slow white hoodie and they both bow and move.,is raising his right hand up to show a stretching exercise move while the other person is watching him.,is not getting the eyes removed from the wall.,runs a marathon carrying solemn women to ride a stage.,1\n7436,anetv_DV1ITGBfo5w,13439,The person in the red short explains what core muscles he is exercising while doing the workout. Then they both,The person in the red short explains what core muscles he is exercising while doing the workout.,Then they both,gold,stand up and complete their tutorial on the workout.,sit together on benches forever.,demonstrate how to stand by and shake the clothes out.,stand close to two groups to talk to each other and come back together.,0\n7437,anetv_DV1ITGBfo5w,113,The man in the black shorts gets on one knee as the instructor gives instructions on what to do. The man in black shorts,The man in the black shorts gets on one knee as the instructor gives instructions on what to do.,The man in black shorts,gold,has the upper body.,gets to his knees and walks out of the gym holding a hammer.,\"takes the pail up to the man, and begins to talk about how to do it using the guitar.\",lifts a bar from the kneeling position.,3\n7438,anetv_c2ejr7Lci8s,8376,A person is seen riding a unicycle in the middle of a forest while holding an instrument. The man,A person is seen riding a unicycle in the middle of a forest while holding an instrument.,The man,gold,continues speaking to the camera while playing his instruments as well as out.,stops playing while the woman inspects him.,throws the frisbee on the court while others watch on the sides.,continues riding down the path as the camera follows his movements.,3\n7439,anetv_VA8SXILXTj0,7431,A couple of lemons are seen sitting on a table with glasses and plates and leads into a person putting the lemons in a container. He,A couple of lemons are seen sitting on a table with glasses and plates and leads into a person putting the lemons in a container.,He,gold,\"puts the vanilla in a glass, and pours it carefully in a martini glass.\",mixes ingredients with the lemons and shakes them up in another glass.,moves the counter around and ends by speaking into the camera and smiling to the camera.,cuts the cookies with the pan in close the oven.,1\n7440,anetv_VA8SXILXTj0,7432,He mixes ingredients with the lemons and shakes them up in another glass. He,He mixes ingredients with the lemons and shakes them up in another glass.,He,gold,continues to pour the foil in a shaker one at a time and another time.,\"use the spoon to cook the glass and peel it, shaking it with whipped cream, watching it.\",adds the powdered sugar into the cup then holds up a pitcher in front of him.,finishes the lemonade and presents it to the camera while also taking a sip.,3\n7441,anetv_x39KxoQHEp4,5572,Several people float down a river in tubes. They,Several people float down a river in tubes.,They,gold,take on tubes down intertubes.,pass through several rocks.,push the boat over the water back going into the water all together.,can climb in the trees before going down the stairs towards another boat in front of them.,1\n7442,anetv_x39KxoQHEp4,5574,The water gets rough as the past through some rocks. Several people,The water gets rough as the past through some rocks.,Several people,gold,are driving his canoe down the inflated boats.,are seen clearing it.,stand up in the river.,are in the ocean surfing.,2\n7443,lsmdc1041_This_is_40-8950,17441,\"Later, someone ducks down in her car as she smokes a cigarette. She\",\"Later, someone ducks down in her car as she smokes a cigarette.\",She,gold,leaps from the van.,puts out her hand.,sways back and forth.,blows smoke out the window and pulls away.,3\n7444,lsmdc0030_The_Hustler-65138,12929,\"He pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking. Someone\",\"He pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking.\",Someone,gold,is the first woman from empty glasses and possibly even revealing a gentleman.,\"is there, seated primly on the bed.\",ushers someone to a hearing box.,is just a little french.,1\n7445,lsmdc0030_The_Hustler-65138,12932,\"Someone's voice is subdued, controlled. He\",\"Someone's voice is subdued, controlled.\",He,gold,\"emerges from the window, and tugs his hand to the top of his head.\",picks up a clock.,steps to them.,\"stands over her, pulling a wad of bills from his pocket.\",3\n7446,lsmdc0030_The_Hustler-65138,12927,\"Someone enters his suite, removes his overcoat, then looks at the door that divides his room from someone's. He\",\"Someone enters his suite, removes his overcoat, then looks at the door that divides his room from someone's.\",He,gold,reaches up with something written on his sleeves.,has led him to where multiple copies are stacked.,\"seems hesitant, unsure of himself.\",places two hooks on the computer.,2\n7447,lsmdc0030_The_Hustler-65138,12928,\"He seems hesitant, unsure of himself. He\",\"He seems hesitant, unsure of himself.\",He,gold,approaches the man's hand surrounding his man.,\"pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking.\",\"stops down the steps and walks to the rail, where the general stands staring behind the lantern.\",struggle to pull himself from the cage hung animal pipe.,1\n7448,lsmdc0030_The_Hustler-65138,12931,Someone enters her suite and confronts her. Someone's voice,Someone enters her suite and confronts her.,Someone's voice,gold,rises from the head of the two women raising scrubbing.,comes over the screen.,\"is subdued, controlled.\",pours over a counter.,2\n7449,lsmdc0030_The_Hustler-65138,12926,Someone abruptly turns and walks out of the house. Someone,Someone abruptly turns and walks out of the house.,Someone,gold,watches him for a moment then follows.,\"stares into her soft eyes, her promise bored on her plate.\",watches as they take their seats in open the tents.,enters and whispers in her ear.,0\n7450,lsmdc0030_The_Hustler-65138,12930,\"Someone is there, seated primly on the bed. Someone\",\"Someone is there, seated primly on the bed.\",Someone,gold,enters her suite and confronts her.,looks at the tv.,holds on to the love seat.,has been asleep on the couch.,0\n7451,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26062,12120,\"A pristine replica of the long, multi columned Parthenon stands. Now children\",\"A pristine replica of the long, multi columned Parthenon stands.\",Now children,gold,\"square in - seats, as the penguins start to tour the.\",play around a man making giant soap bubbles on the park lawn.,talk as the spotlight lamps illuminate their solid pillars.,soar among the surrounding bushes.,1\n7452,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26062,12119,Someone shuts the curtains and faces him. Later the truck,Someone shuts the curtains and faces him.,Later the truck,gold,\"arrives, and the others halt in front of them.\",turns down a road bordered with well - tended flowering trees and shrubs.,strides into an interrogation room.,tv children set some down.,1\n7453,anetv_Z6l2Yu9Q0mU,6446,He then sings a song while hula hooping and transitions into him speaking to the camera. More shots of him singing and hula hooping,He then sings a song while hula hooping and transitions into him speaking to the camera.,More shots of him singing and hula hooping,gold,are shown as well as the people waving to him.,remain in the end and stops in the end.,captures the ending credits.,are shown and ends with him asking viewers to subscribe.,3\n7454,anetv_Z6l2Yu9Q0mU,6445,A man wearing glass is seen speaking into a microphone and picks up a hula hoop while speaking into the camera. He then,A man wearing glass is seen speaking into a microphone and picks up a hula hoop while speaking into the camera.,He then,gold,begins to play beer in a sort of hoop while moving his hand so he does n't speak.,speaks to another woman and leads into her playing beer pong as well as several players across her own.,sings a song while hula hooping and transitions into him speaking to the camera.,plays the instrument while pausing to speak to the camera and the man walks through the water.,2\n7455,anetv_Z6l2Yu9Q0mU,10582,He is holding a microphone and wearing sunglasses. He then,He is holding a microphone and wearing sunglasses.,He then,gold,spins a hula hoop around himself while singing into the mic.,begins playing the harmonica as he goes.,begins playing a song on the pre - controlled video.,places the flute to his mouth and begins to play the guitar.,0\n7456,anetv_Z6l2Yu9Q0mU,10581,A man is standing in a room. He,A man is standing in a room.,He,gold,is holding a microphone and wearing sunglasses.,is sitting on a piece of exercise equipment.,is scrubbing the shoe with a mop.,\"starts doing exercise moves, going up and down.\",0\n7457,anetv_Z6l2Yu9Q0mU,10583,He then spins a hula hoop around himself while singing into the mic. He then,He then spins a hula hoop around himself while singing into the mic.,He then,gold,continues hitting with another man sitting close to him.,sits down and talks to the camera.,plays cautiously and beat by pausing to speak to the camera.,throws again and spins in dribbling the match as more.,1\n7458,lsmdc0026_The_Big_Fish-62571,7375,\"Three catfish swim in front of his headlights. Realizing his plight, someone\",Three catfish swim in front of his headlights.,\"Realizing his plight, someone\",gold,is lifted off the floor and falls back in a heap plops to the floor.,leaves someone's car.,shoots the mutants a look.,tries to remain calm.,3\n7459,lsmdc0026_The_Big_Fish-62571,7377,That's when he sees her - -. She,That's when he sees her - -.,She,gold,hits: a huge fancy flower of colorful flowers.,turns back to his brave daughter.,brushes lightly upon her hair.,is swimming outside the car.,3\n7460,lsmdc0026_The_Big_Fish-62571,7373,\"Just as suddenly, the sound changes - - no longer pounding, but softly splashing. The world\",\"Just as suddenly, the sound changes - - no longer pounding, but softly splashing.\",The world,gold,is blurred as the chill wind sends a cloud of dust ensues outside.,seems less complicated than high.,\"is close and echoing, because the car is underwater.\",\"has suddenly completely distorted, is fear, as if to halt himself from his presence.\",2\n7461,lsmdc0026_The_Big_Fish-62571,7374,\"The tires are still on the road, but where there used to be air is water. Three catfish\",\"The tires are still on the road, but where there used to be air is water.\",Three catfish,gold,swim in front of his headlights.,are on the sidewalk next to the bike and unmarked are on the ground.,fills the helmeted men allowed the black man to spread them away.,are standing at an center in the room that is gathered at their feet.,0\n7462,lsmdc0026_The_Big_Fish-62571,7372,Someone turns on the wipers. It,Someone turns on the wipers.,It,gold,'s like being caught in a waterfall.,billows as buster lies on the ground.,holds a long stick attached to his mouth and it reaches his ear.,aims their rifle at him.,0\n7463,lsmdc0026_The_Big_Fish-62571,7378,\"She is swimming outside the car. While we never see her face exactly, she\",She is swimming outside the car.,\"While we never see her face exactly, she\",gold,\"remains just as beautiful, just as mysterious, as the first time we saw her.\",can say anything else properly.,\"takes a breath and now when she is another, talking.\",tries to pick up the cup but someone is flaxen too.,0\n7464,lsmdc0026_The_Big_Fish-62571,7376,\"Realizing his plight, someone tries to remain calm. Water\",\"Realizing his plight, someone tries to remain calm.\",Water,gold,rushes her across the corridor.,\"is trickling in through the crack between the window and the door, but very slowly.\",opens the crack and looks at someone.,is drawn into someone's mouth.,1\n7465,lsmdc0026_The_Big_Fish-62571,7371,The first raindrops hit the windshield. Someone,The first raindrops hit the windshield.,Someone,gold,leans toward a white - haired man.,turns on the wipers.,\"and his aide follow the car to his car, one marked outside and finds the door vacant.\",\"stands at a second angle, listening.\",1\n7466,lsmdc0026_The_Big_Fish-62571,7379,\"While we never see her face exactly, she remains just as beautiful, just as mysterious, as the first time we saw her. She\",\"While we never see her face exactly, she remains just as beautiful, just as mysterious, as the first time we saw her.\",She,gold,is holding a key and another girl and she is just squeezing the front and chest.,\"places her head onto his shoulders, gently pulls his head and pulls her close behind him.\",\"looks back in this book: another, rummaging among the narrator phrases that idly does not world.\",puts her hand to the windshield.,3\n7467,lsmdc0026_The_Big_Fish-62571,7380,She puts her hand to the windshield. He,She puts her hand to the windshield.,He,gold,puts his up to meet hers.,heads cautiously forward and tenderly touches his shoulder.,sees some others standing just at her.,\"puts his fingers on her thigh and stares at her, then touches her breasts.\",0\n7468,anetv_u5ri43qbi1A,6058,\"First, he searches the internet to find a pikachu character's face to fit the cake he's making. Then, he explains the name of the pikachu and he\",\"First, he searches the internet to find a pikachu character's face to fit the cake he's making.\",\"Then, he explains the name of the pikachu and he\",gold,shows viewers which frosting to put first all in order and when he's done he shows the entire cake finished.,shows down the tile.,cuts to this mess and then how to wrap a cake piece in white and soft red.,walks out and talking about gold shining eyes.,0\n7469,anetv_u5ri43qbi1A,15700,\"He then takes out a tablet that has a picture of Pikachu on it and begins decorating the cake with its face. The cake is finally finished, and the man\",He then takes out a tablet that has a picture of Pikachu on it and begins decorating the cake with its face.,\"The cake is finally finished, and the man\",gold,is cutting the red shoes.,begins talking and picks up the cake to show the final product.,\"begins to say something, not looking at it.\",\"quickly takes the rake away, touching down liners, putting the paintbrush out into the flowers.\",1\n7470,anetv_u5ri43qbi1A,6057,\"This video gives the audience a step by step guide of how to make a pikachu cake. First, he\",This video gives the audience a step by step guide of how to make a pikachu cake.,\"First, he\",gold,starts by peeling a chisel.,adds some beers from the stick and an ounce of fruit appears that he is mixing into a white experience.,searches the internet to find a pikachu character's face to fit the cake he's making.,incinerates the batter and adds various treats.,2\n7471,anetv_u5ri43qbi1A,15699,A man is standing in a kitchen taking with a white box in front of him with a silver doily in front of him. He then,A man is standing in a kitchen taking with a white box in front of him with a silver doily in front of him.,He then,gold,takes out a tablet that has a picture of pikachu on it and begins decorating the cake with its face.,\"puts the soda to a table and continues eating, cookie, smiles, and mops the table with the bucket.\",clips out his shoes and lays them on the table.,begins by talking to the camera while the picture is in his room.,0\n7472,anetv_Tbo7I63oIms,12940,\"A person ski over a ski rail and spins in the air, then land stand on the snow. The person\",\"A person ski over a ski rail and spins in the air, then land stand on the snow.\",The person,gold,ski down a motor hill and glides up to the right.,ski down the lake.,drop the rope and snowboard off to the other side.,ski over a ramp and fly in the air very high.,3\n7473,anetv_Tbo7I63oIms,12942,\"Then, the person ski over the rails of a home turning ans spinning and then land on the street. Then, a person\",\"Then, the person ski over the rails of a home turning ans spinning and then land on the street.\",\"Then, a person\",gold,\"lift their tires, pass one string, and flip and land on street.\",\"goes out class, breathing at the back of the bike.\",ski over the fence of a walking bridge and also ski on the stairs.,makes shapes and stands on the grass.,2\n7474,anetv_Tbo7I63oIms,12941,\"The person ski over a ramp and fly in the air very high. Then, the person\",The person ski over a ramp and fly in the air very high.,\"Then, the person\",gold,ski over the rails of a home turning ans spinning and then land on the street.,goes down ramps or went to the foreground a buck is skateboarding.,irons knocking the rider off the motorcycle.,puts wires across the water.,0\n7475,anetv_oL1gGyMz79s,6748,The man switches balls and bowls several more rounds getting mostly strikes. He,The man switches balls and bowls several more rounds getting mostly strikes.,He,gold,\"drives around together, showing several games of rock tools.\",changes his ball again and bowls two more strikes.,slides the board in the air making a line before the skateboarders.,shoots him again in sharp technique.,1\n7476,anetv_oL1gGyMz79s,6746,A man is bowling and misses one pin with his first ball. He,A man is bowling and misses one pin with his first ball.,He,gold,bowls out of the lane and pins this to one of the pins.,\"goes into the garage, throwing and throwing the ball.\",takes off his gloves and has a bullet nick to a tall man in front of him.,gets all strikes for the next six rounds.,3\n7477,anetv_oL1gGyMz79s,6747,He gets all strikes for the next six rounds. The man,He gets all strikes for the next six rounds.,The man,gold,is congratulated by the throw the right way as well and blocked multiple balls of other balls.,loses the cap outside and then runs while marching in place with his bow and arrow.,switches balls and bowls several more rounds getting mostly strikes.,picks up a puck.,2\n7478,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5540,\"Someone flings his hands forward. The someone fires, but the water\",Someone flings his hands forward.,\"The someone fires, but the water\",gold,gives the man a recreation and rams him forward.,rushes in at him.,blasts the flame into the water.,shoots to his hip.,1\n7479,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5541,\"The someone fires, but the water rushes in at him. It\",\"The someone fires, but the water rushes in at him.\",It,gold,does someone that grinds off all fours.,goes to the missing planks.,douses the charge and engulfs him.,hits someone's fingers.,2\n7480,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5528,\"Someone swings at someone's face, then pins him against the building. Someone\",\"Someone swings at someone's face, then pins him against the building.\",Someone,gold,spreads around and sees someone's window.,passing through a park near two police cars.,charges him as people slip onto the bed and help him slip away.,lands on a slanted roof.,3\n7481,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5535,It tumbles toward a rooftop with a glowing skylight. He weakly,It tumbles toward a rooftop with a glowing skylight.,He weakly,gold,pushes himself up on all fours.,\"destroys the boot, sends a skip on the giant's shoulder, then lands clumsily out of someone's grasp.\",turns toward the ominous ominous goblin armed on the stone blocking out flames.,\"slides his fingers over his head with his foot, and reaches out onto the sheer cliff root.\",0\n7482,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5537,\"The tank's cap flies off and its contents gush out in a swirling arc. Someone unleashes water from two more tanks, and it all\",The tank's cap flies off and its contents gush out in a swirling arc.,\"Someone unleashes water from two more tanks, and it all\",gold,unwraps and a small stream of bullets appears all around the sedan.,winds out to reveal the cupcakes he had left.,combines to form a giant flowing barrier around the rooftop.,ends as four trucks descend toward the foot of the truck.,2\n7483,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5531,Someone shoots it with lightning as someone swoops through an open floor. Someone,Someone shoots it with lightning as someone swoops through an open floor.,Someone,gold,\"leans on it with his stick resting on his hand, then examines it.\",sees someone running through the jungle.,blocks the fire and flings it with his shield.,bursts through a wall and grabs him.,3\n7484,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5530,He steers himself toward an unfinished skyscraper. Someone,He steers himself toward an unfinished skyscraper.,Someone,gold,pulls side puffed out under the front window.,strides through the darkened office.,shoots it with lightning as someone swoops through an open floor.,'s bars mirrors him.,2\n7485,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5525,Someone scrambles to his backpack and pulls out his own pair of flying sneakers. He,Someone scrambles to his backpack and pulls out his own pair of flying sneakers.,He,gold,barges into the truck which purposefully drops.,spots a helicopter rising in his direction and takes aim with the bolt.,pokes them in his trousers in the roof.,\"enter, get the truck.\",1\n7486,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5523,\"The three companions fall to the floor as lightning zaps the safety barrier behind them. With a power hungry smile, someone\",The three companions fall to the floor as lightning zaps the safety barrier behind them.,\"With a power hungry smile, someone\",gold,blasts away a chunk of the deck.,turns on someone's them.,pulls the submarine up to the hidden basin.,folds his arms tighter.,0\n7487,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5527,\"A flying someone knocks him from the ledge, and they plummet past the observation deck, circle each other and come together again in a fierce grasp. Someone\",\"A flying someone knocks him from the ledge, and they plummet past the observation deck, circle each other and come together again in a fierce grasp.\",Someone,gold,rises as he gulps down the mug.,\"swings at someone's face, then pins him against the building.\",draws steps towards a makeshift line.,runs away in a lifeboat as little boat whizzes by behind someone.,1\n7488,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5538,\"Someone unleashes water from two more tanks, and it all combines to form a giant flowing barrier around the rooftop. The son of Poseidon\",\"Someone unleashes water from two more tanks, and it all combines to form a giant flowing barrier around the rooftop.\",The son of Poseidon,gold,holds the water at bay on either side of himself.,steps out onto the narrow balcony.,hops down then gets to his feet.,'s spectators watch at the side.,0\n7489,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5526,\"He spots a helicopter rising in his direction and takes aim with the bolt. A flying someone knocks him from the ledge, and they\",He spots a helicopter rising in his direction and takes aim with the bolt.,\"A flying someone knocks him from the ledge, and they\",gold,float into a cloud of smoke and landing on the rock.,give handcuffed to each other as he flies.,fly from the cannon to smashing through the dives at the feet.,\"plummet past the observation deck, circle each other and come together again in a fierce grasp.\",3\n7490,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5542,It douses the charge and engulfs him. The maelstrom,It douses the charge and engulfs him.,The maelstrom,gold,combines a coaster and then explodes as the raft slides towards someone.,serpent repeatedly garnishes the blade.,tosses someone about like a toy and the bolt wrenches from his grasp.,throws the man toward his feet and commanding.,2\n7491,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5529,Someone lands on a slanted roof. He,Someone lands on a slanted roof.,He,gold,sticks to the roof as a barbell covers the room.,\"sits on the mast, and a wave opens on a string.\",steers himself toward an unfinished skyscraper.,runs up a cardboard gangplank out of the woods.,2\n7492,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5533,It tumbles out of the building. He,It tumbles out of the building.,He,gold,runs into the crowd and down the alley through a ingot of 20's guests.,\"soars back toward the empire state building, his shoes' wings beating furiously.\",flips off the baseball in the cab.,\"takes the wheel away, which looks nervous.\",1\n7493,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5536,\"Turning, someone sees water jet from its splitting seams. The tank's cap flies off and its contents\",\"Turning, someone sees water jet from its splitting seams.\",The tank's cap flies off and its contents,gold,returns over the splash glass.,gush out in a swirling arc.,drop onto the necks of another wheelchair.,confer with the matter someone limp to someone.,1\n7494,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5539,The son of Poseidon holds the water at bay on either side of himself. Someone,The son of Poseidon holds the water at bay on either side of himself.,Someone,gold,leads someone up to the somersaults.,picks up a seemingly triangular bottle.,\"looks down, unharmed, puffing on his cigar.\",flings his hands forward.,3\n7495,anetv_qb_5_9xDYqc,2628,\"The man continues touching the rock and begins stretching. After, he begins to actively and ferociously climb the wall and come down on the other side but he\",The man continues touching the rock and begins stretching.,\"After, he begins to actively and ferociously climb the wall and come down on the other side but he\",gold,completes to take the bottom rock off again.,falls covering the room.,does it without any ropes attached to him.,continues to kick himself off his arms in the air.,2\n7496,anetv_qb_5_9xDYqc,2627,An African American male is standing outside next to a tall rock wall. The man,An African American male is standing outside next to a tall rock wall.,The man,gold,pauses to smash the wall into a wall.,mounts the pommel and moves from the springs area over and over again.,continues touching the rock and begins stretching.,continues to show how to kill the ball.,2\n7497,anetv_K1z2fiB9pUM,17636,\"Dozens of people are seen riding up a large, dusty hill while the camera pans around people riding on dirt bikes. The people\",\"Dozens of people are seen riding up a large, dusty hill while the camera pans around people riding on dirt bikes.\",The people,gold,continue riding around the dirt and riding on the boards while more shots are shown of people riding in tubes along the trail.,ride all along the path while several others watch on the side and follow the riders as the continue riding along the track.,speak to one another with lead and the kids being interviewed as well as stopping.,go into mountain with another person riding in top and mountain skis.,1\n7498,anetv_I5g6I-FOguQ,16850,A group of people gather to watch and the size of the wave is illustrated. A surfer,A group of people gather to watch and the size of the wave is illustrated.,A surfer,gold,dives onto the swimming pool.,walks through a straight shots of water polo.,\"carries on board through the water, after people advance across the sea.\",falls ahead of the wave.,3\n7499,anetv_I5g6I-FOguQ,18571,\"A person at the top of a hill, standing on a stone balcony is seen recording the scene below in the ocean. A man\",\"A person at the top of a hill, standing on a stone balcony is seen recording the scene below in the ocean.\",A man,gold,is seen in wild and rough waters surfing in the water with people watching with binoculars nearby.,is kneeling behind in the pit of a bridge with his hands caught ice fish.,is standing in a gym preparing to play jump martial arts techniques.,begins fells in the seat after falling down evenly.,0\n7500,anetv_I5g6I-FOguQ,18570,\"A news report covers a story about a surfer who is captured on camera surfing incredibly high waves in the ocean. A person at the top of a hill, standing on a stone balcony\",A news report covers a story about a surfer who is captured on camera surfing incredibly high waves in the ocean.,\"A person at the top of a hill, standing on a stone balcony\",gold,is seen recording the scene below in the ocean.,flying into the lake.,performs a fishing line with the same man and several surfboard.,sinks holding in a yellow and silver kayak and demonstrates how to prepare to paddle using the paddle for a long time.,0\n7501,anetv_I5g6I-FOguQ,16849,A man stands high on a manmade cliff as a giant wave crashes nearby. A surfer,A man stands high on a manmade cliff as a giant wave crashes nearby.,A surfer,gold,is attacked again a car with a tail pulls his hood.,falls flat and falls off the water below.,drives a white catamarans into the ocean currents.,rides the giant wave in several different clips.,3\n7502,anetv_fPtKNj6jCPU,16951,A man and woman are standing together on a stage. The woman,A man and woman are standing together on a stage.,The woman,gold,twists her arm around her neck as she performs to perform in the air.,throws a tennis match into a camera for a dance while the group watches.,is seen sitting on a couch demonstrating exercise exercise moves.,\"is throwing balls, trying to get them into the cups as they rotate.\",3\n7503,anetv_fPtKNj6jCPU,16952,\"The woman is throwing balls, trying to get them into the cups as they rotate. The man\",\"The woman is throwing balls, trying to get them into the cups as they rotate.\",The man,gold,continues hitting the ball to the stick and came up the table.,started to punch and fell on the table in front of the young man.,talks as he joins in the game.,\"wanders over, throwing a shot put.\",2\n7504,anetv_fPtKNj6jCPU,7305,\"As he is talking, a young lady with long curly hair begins tossing balls across the able trying to get them in the cup. After he is done talking, the man joins in and the cups on the table\",\"As he is talking, a young lady with long curly hair begins tossing balls across the able trying to get them in the cup.\",\"After he is done talking, the man joins in and the cups on the table\",gold,\"clink, and neither of they hug far in front of her face.\",gives a thumbs up.,begin to get instructions and shake together.,begin to spin around as they try to score.,3\n7505,anetv_fPtKNj6jCPU,7304,\"A man in a black shirt and grey cargo is standing next to a beer pong table talking to the camera. As he is talking, a young lady with long curly hair\",A man in a black shirt and grey cargo is standing next to a beer pong table talking to the camera.,\"As he is talking, a young lady with long curly hair\",gold,begins tossing balls across the able trying to get them in the cup.,is talking to the camera cutting a woman's hair with a other toy machine.,stands at him both and a black logo appears on the screen.,comes by with a big black eye and a pistol like an old man.,0\n7506,anetv_uu4_cV49pMI,8560,A person is seen lying on the ground with another person running from behind. The person running then falls and others around them,A person is seen lying on the ground with another person running from behind.,The person running then falls and others around them,gold,continuously when another person sits on the ground.,help and drink water.,watch and cheer his face up more.,run around in the end.,1\n7507,anetv_Z7ZODw0C_hY,6520,He then walks up and down the field and cuts the grass growing from the sides. He,He then walks up and down the field and cuts the grass growing from the sides.,He,gold,continues walking up and cutting the weeds while looking back to speak to the camera.,finishes the cake and ends the call on a plate.,snags the frisbees and continues to play fetch.,\"braiding the sides, still tucked on the ground, leg moves as he goes around the ground.\",0\n7508,anetv_Z7ZODw0C_hY,11042,He is talking about cultivating the vegetable plants. He,He is talking about cultivating the vegetable plants.,He,gold,uses shears to cut the leaves off the tops of the plants.,goes brightly on the lens for a while.,gets over a clear bucket to look out of the window.,stands up and tired out his video.,0\n7509,anetv_Z7ZODw0C_hY,6519,A man is seen speaking to the camera in an indoor field. He then,A man is seen speaking to the camera in an indoor field.,He then,gold,walks up and down the field and cuts the grass growing from the sides.,walks along the path and begins grooming some around with his stick.,lifts the balls that leads into him running down a mat and laying down laying down on a mat.,begins his routine on the sandy bars while the camera pans all around him.,0\n7510,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72391,14757,The others stare at him. Someone,The others stare at him.,Someone,gold,is the last to lower his gaze.,glances aside and looks at the young someone.,puts her wrist down as they dance.,shoots at the drummer who stands awkwardly.,0\n7511,anetv_V4_SJyhRGqA,13895,A man has lined up numerous colored balls. He,A man has lined up numerous colored balls.,He,gold,puts some powder into a loaded fire.,puts the ball one across the bottom and flips several times off the floor.,\"moves down the line, hitting each ball through the goal.\",creates the lights in an arena.,2\n7512,anetv_V4_SJyhRGqA,13894,A game of croquette is in progress. A man,A game of croquette is in progress.,A man,gold,has lined up numerous colored balls.,hits him and push him.,returns to shore to make the sand castle.,is talking into a microphone while he exercise.,0\n7513,anetv_WV-Sf5-aCcc,17282,He begins moving back and fourth moving his body around. He,He begins moving back and fourth moving his body around.,He,gold,continues moving around and speaking when another woman comes into frame and moves around.,continues them around different areas and leads into one relaxing using a ladder and ends by marching away.,continues to stand while looking off into the distance.,continues to move around the area using various sticks.,0\n7514,anetv_WV-Sf5-aCcc,17281,A man is seen standing in front of the camera and holding his arms out. He,A man is seen standing in front of the camera and holding his arms out.,He,gold,walks in all along the fence while the camera watches in the distance.,stops to speak to the camera and begins pushing himself up.,brushes another mans hair and ends by speaking to the camera.,begins moving back and fourth moving his body around.,3\n7515,anetv_WV-Sf5-aCcc,5354,The man stops and stands upright. A lady,The man stops and stands upright.,A lady,gold,goes away and controls his hair.,is sitting nearby on the machine to watch.,stops before him does flips.,joins the man in the room.,3\n7516,anetv_WV-Sf5-aCcc,5356,The lady and the man dance around each other in a circle. The people,The lady and the man dance around each other in a circle.,The people,gold,continue fencing and capture the girl as they play.,finish and shake hands.,shake hands and walk away.,smile and laugh with one another.,1\n7517,anetv_WV-Sf5-aCcc,5353,\"The man turns to the right and continues, then turns forward. The man\",\"The man turns to the right and continues, then turns forward.\",The man,gold,performs a deadly rendition and backs away.,finishes and jumps several times.,climbs up the rear of the yellow vehicle then runs off.,stops and stands upright.,3\n7518,anetv_WV-Sf5-aCcc,5350,We see a man stand in a room talking. The man then,We see a man stand in a room talking.,The man then,gold,turn to a drum.,cleans the woman's face.,begins to demonstrate capoeira moves slowly.,starts welding a metal object with a rubber tool.,2\n7519,anetv_WV-Sf5-aCcc,5355,A lady joins the man in the room. The lady and the man,A lady joins the man in the room.,The lady and the man,gold,begin playing the drums in the end.,dance around each other in a circle.,put their arm around him.,dance down the street and leave.,1\n7520,anetv_WV-Sf5-aCcc,5351,The man then begins to demonstrate Capoeira moves slowly. The man then,The man then begins to demonstrate Capoeira moves slowly.,The man then,gold,demonstrates a gymnastic techniques throw.,jumps a bit and moves forward fast.,begins to move quickly.,mounts and moves a piece.,2\n7521,anetv_WV-Sf5-aCcc,5349,We see the opening title screen. We,We see the opening title screen.,We,gold,see a group of men walking in a raft.,see a man stand in a room talking.,see a man and women playing a game of soccer in a locker room.,see three second men in a cargo ring.,1\n7522,anetv_WV-Sf5-aCcc,5352,The man then begins to move quickly. The man,The man then begins to move quickly.,The man,gold,\"continues hitting the stick to the bars, occasionally punching but pushes it back.\",\"turns to the right and continues, then turns forward.\",stand to arm up and also speak to the camera next to an angle of the ball.,spins one another and continues to jump in a smaller torso.,1\n7523,anetv_xj-f9hzQ3Lc,3721,Someone calls a mark and they all stand up on their pedals preparing to be released. The bar is finally let down and the boys,Someone calls a mark and they all stand up on their pedals preparing to be released.,The bar is finally let down and the boys,gold,\"do a final pull on the rake, only more move for it to begin to fall off the rope.\",begin racing throughout the track that's covered in hills as people stand throughout it to watch them.,pull out of the water with the camera another of the air.,\"running away all pour out of the car, music can be seen farther on.\",1\n7524,anetv_xj-f9hzQ3Lc,3720,Several dirt bikers are standing under a garage behind a stand preparing to race. Someone calls a mark and they all,Several dirt bikers are standing under a garage behind a stand preparing to race.,Someone calls a mark and they all,gold,move one down together.,go back to white.,go back to gymnasts again.,stand up on their pedals preparing to be released.,3\n7525,lsmdc3044_KNOCKED_UP-20979,4782,Someone eyes the covers one by one. With her mouth agape she,Someone eyes the covers one by one.,With her mouth agape she,gold,leans down and rubs her mouth.,scratches the top of the receiver and reaches for the windshield.,\"drops the books into the bag, then stares off with a pensive expression.\",looks up as two decrepit troopers ram into her.,2\n7526,lsmdc3044_KNOCKED_UP-20979,4780,Someone notices a shopping bag protruding from the cabinet. She,Someone notices a shopping bag protruding from the cabinet.,She,gold,looks into the laptop and returns to a desk talking to the photo.,finds three baby books.,realizes the sword in his box.,reads a stokes - derelict living knife.,1\n7527,lsmdc3044_KNOCKED_UP-20979,4781,She finds Three baby books. Someone,She finds Three baby books.,Someone,gold,hangs up the other phone.,eyes the covers one by one.,jumps off the train.,wraps the robe around someone's neck.,1\n7528,anetv_7VWp-Dfvqkg,18340,One man then leads into playing harmonica on the stage while others watch on the side. The man,One man then leads into playing harmonica on the stage while others watch on the side.,The man,gold,finishes while the men play and play and tricks with them.,continues playing while the camera jostles as people continue to play the drums.,continues dancing along the stage and ends by speaking to the camera.,continues playing while others walk in and out of frame as well as play.,3\n7529,anetv_7VWp-Dfvqkg,18339,A man is seen speaking into a microphone with another man on stage. One man then,A man is seen speaking into a microphone with another man on stage.,One man then,gold,stands up and walks into a hookah pit.,puts his hands into the microphone and speaks to a boy.,leads into playing harmonica on the stage while others watch on the side.,finishes onto a stage and begins lifting his leg up.,2\n7530,anetv_8zfA20hcc0o,3294,The people move up and down the court while the camera follows their movements. Many people,The people move up and down the court while the camera follows their movements.,Many people,gold,watch on the sides as the group continues to play.,are seen still playing the game with the person all on the sidelines ending their routine.,continue to kick with as up and speak to one another.,walk around around the cutting and dancing around the area while three men.,0\n7531,anetv_8zfA20hcc0o,3293,Two men are seen passing a ball to one another and leads into a group of people playing soccer. The people,Two men are seen passing a ball to one another and leads into a group of people playing soccer.,The people,gold,move up and down the court while the camera follows their movements.,hit a croquet ball against one another and end by hitting a ball.,watch on the side and continue hitting the ball back and fourth.,continues moving back and fourth.,0\n7532,anetv_M9og58TMAm0,7598,A woman is seen moving up and down on an exercise bar while several shots are shown of her exercising. She,A woman is seen moving up and down on an exercise bar while several shots are shown of her exercising.,She,gold,'s shown again holding weights and doing exercises while standing on the beam as well as laying.,zooms through her hair and demonstrates how to push - ups and not speak to the camera.,is seen demonstrating how to properly use a machine and stand behind her under the surface.,is seen before the camera and is come down with video shots and shown taking two objects out of her.,0\n7533,anetv_El_q7DhzArg,9744,A woman in a baby blue shirt is at a park practicing. She is outside all by herself and no one else,A woman in a baby blue shirt is at a park practicing.,She is outside all by herself and no one else,gold,is in her room.,seems to be around at al.,is holding the kid.,is getting her behind.,1\n7534,anetv_El_q7DhzArg,9745,She is outside all by herself and no one else seems to be around at al. It is daytime outside and she,She is outside all by herself and no one else seems to be around at al.,It is daytime outside and she,gold,is the costume of whipping it all in the air.,gets them chestnut wet.,is on some concrete near the grass.,is talking about what they happened.,2\n7535,anetv_El_q7DhzArg,9746,It is daytime outside and she is on some concrete near the grass. She has a baton and she,It is daytime outside and she is on some concrete near the grass.,She has a baton and she,gold,makes a dash for it.,\"signature, forth, head.\",does some cool trick with it.,\"takes another bar by the hand that does a spin, and does it correctly in slow motion.\",2\n7536,anetv_El_q7DhzArg,8820,The girl in a blue shirt is twirling her baton. The girl,The girl in a blue shirt is twirling her baton.,The girl,gold,starts hula hooping with her hand.,threw the baton up in the air and raised her leg.,does a belly dance routine and performs a routine on the parallel bars.,proceeds to twirl a baton on her neck as get a better score.,1\n7537,anetv_jHyWtrhNTTk,5525,We then see a man do a high jump at 5'9. We then,We then see a man do a high jump at 5'9.,We then,gold,see the skier rowing on over boats.,see the man jump at 6 '.,\"see a replay blur, and see several kids surfing in the water.\",see people performing jump roping and jumping on a pommel stage.,1\n7538,anetv_jHyWtrhNTTk,5526,We then see the man jump at 6 '. We then see the man jump at 6'2 and he,We then see the man jump at 6 '.,We then see the man jump at 6'2 and he,gold,asks worriedly for a moment.,cuts clothes in half.,lands on another skateboard.,knocks the pole over.,3\n7539,anetv_jHyWtrhNTTk,5528,We see him try 6'2 again and not hit the pole. The man,We see him try 6'2 again and not hit the pole.,The man,gold,stuck on his board smokes the red time.,walks to the camera and turns it off.,is leaning across the pole in the money area.,holds for a guy when he keeps trying.,1\n7540,anetv_jHyWtrhNTTk,5527,We then see the man jump at 6'2 and he knocks the pole over. We,We then see the man jump at 6'2 and he knocks the pole over.,We,gold,see the end credits and the gate runs fast.,see him try 6'2 again and not hit the pole.,see a lady and another dog skateboard.,see the man exercising.,1\n7541,anetv_8zq6C0SRyDQ,15390,\"Woman is slicing a chocolate cake and its decorating it, put a second floor and some pink fondam. woman\",\"Woman is slicing a chocolate cake and its decorating it, put a second floor and some pink fondam.\",woman,gold,jumps in front of a kitchen in a kitchen holding butter and sauce.,puts wax on the metal present and decorate the cake until the little cake is delivered.,is mixing tea in a martini.,took a marker and write a letter in a pink foam craft and trimming it in a candy.,3\n7542,anetv_8zq6C0SRyDQ,7627,She frosts the cake layers with a knife. She then,She frosts the cake layers with a knife.,She then,gold,\"decorates the cake, showing off the finished product.\",cuts the paper and cuts up the paper with scissors.,\"bowl at the tea, shyly.\",begins a red - frosting bakes around the leaves by adding butter a spatula to the side.,0\n7543,anetv_8zq6C0SRyDQ,7626,\"A woman is standing in her kitchen, making a cake. She\",\"A woman is standing in her kitchen, making a cake.\",She,gold,frosts the cake layers with a knife.,puts the teddy in a jack.,has sugar and sugar into a bar.,is demonstrating how to prepare for a drink.,0\n7544,anetv_8zq6C0SRyDQ,15392,Woman walks into a party with a lot of kids holding the cake on her hands. cake,Woman walks into a party with a lot of kids holding the cake on her hands.,cake,gold,is in the center and she picks up a other egg and add it to the pumpkin.,is seen at the white table.,hoops shown are seen as the girl is in shown talking to the camera.,is in a counter with some recipes in the back and in a table full of candies.,3\n7545,anetv_8zq6C0SRyDQ,15391,Woman took a marker and write a letter in a pink foam craft and trimming it in a candy. woman,Woman took a marker and write a letter in a pink foam craft and trimming it in a candy.,woman,gold,looks at the camera and shows how to use moves peanut clipper.,walks into a party with a lot of kids holding the cake on her hands.,puts the iron on a large wooden box and lines it with a wooden box.,does a purple fire behind the rod.,1\n7546,lsmdc0004_Charade-47361,4072,He reaches into the desk drawer and pulls out a passport which he hands to her. The cover,He reaches into the desk drawer and pulls out a passport which he hands to her.,The cover,gold,rests a window beside the envelope.,indicates that it is swiss.,is lined with blood beneath a marker.,gets answers in the order.,1\n7547,lsmdc0004_Charade-47361,4074,Someone's hand opens it to a picture of a man - - the man we saw in someone's photo. He,Someone's hand opens it to a picture of a man - - the man we saw in someone's photo.,He,gold,is taken aback and fumbles his emotions.,hands her another passport.,holds up the mobile.,sits on an boulder dictaphone on the background.,1\n7548,lsmdc0004_Charade-47361,4071,\"He slides a sheet of paper and pen across to her, then starts to put the things back into the basket while he speaks. He\",\"He slides a sheet of paper and pen across to her, then starts to put the things back into the basket while he speaks.\",He,gold,\"walks away, and lowers his phone.\",\"begins close behind her strikes, but continues to step further and he moves into the bow and the crowd is exactly dwarfed.\",reaches into the desk drawer and pulls out a passport which he hands to her.,spins around and writes resignedly.,2\n7549,lsmdc0004_Charade-47361,4073,The cover indicates that it is Swiss. Someone's hand,The cover indicates that it is Swiss.,Someone's hand,gold,opens back.,\"giggles as it opens its mouth, light spilling out.\",opens it to a picture of a man - - the man we saw in someone's photo.,gets caught in the confusion with the rafters.,2\n7550,lsmdc0011_Gandhi-52306,13730,\"Near to breakdown, he gestures around the empty house. He\",\"Near to breakdown, he gestures around the empty house.\",He,gold,looks around the basket then goes outside wandering a manicured area.,\"dodges a heavy ball, then runs off.\",can not go on.,is swaying with even changes shoes.,2\n7551,lsmdc0011_Gandhi-52306,13732,\"We see two young men, one seventeen perhaps, the other older, and a girl, sixteen. And finally someone's wife, sitting near someone, the two women listening together but someone's wife\",\"We see two young men, one seventeen perhaps, the other older, and a girl, sixteen.\",\"And finally someone's wife, sitting near someone, the two women listening together but someone's wife\",gold,is strangely bruised and bored by this unseen at the group while someone comes to help him.,\"lies still, collecting their glasses.\",\"looks like a woman who has given up, her hair is dead and hardly combed, her sari dirty.\",is taken in at the figures of the soldiers with their sideline.,2\n7552,lsmdc0011_Gandhi-52306,13731,\"Someone looks around the crude dwelling, almost nothing remains. We\",\"Someone looks around the crude dwelling, almost nothing remains.\",We,gold,\"see two young men, one seventeen perhaps, the other older, and a girl, sixteen.\",'ve been frustration by in a welcoming pace.,turns to face the forbidden another.,\"walk below softened teens and finally someone, the men photograph, lean toward the giant bowl.\",0\n7553,anetv_ng14GLT_hHQ,9321,He is using a bucket of paints and a canvas. He,He is using a bucket of paints and a canvas.,He,gold,finishes the leaves on the carpet and pulls up a paintbrush.,begins mopping the floor.,uses the paints to create an image on the canvas.,carves around a large line of fire.,2\n7554,anetv_ng14GLT_hHQ,3425,A man is seen on his knees surrounded by painting tools and materials. He,A man is seen on his knees surrounded by painting tools and materials.,He,gold,demonstrates how to properly vacuum off the bike while still speaking to the camera.,use the rollers to pull up the rug and fold the ends by putting them on.,\"looks at the camera and speaks, gesturing to a associate sitting in a lake.\",\"mixes some pain and paints part of a canvas, then does another color.\",3\n7555,anetv_ng14GLT_hHQ,3426,\"He mixes some pain and paints part of a canvas, then does another color. He\",\"He mixes some pain and paints part of a canvas, then does another color.\",He,gold,cleans on the product.,\"keeps adding paint along the way, sometimes directly to the canvas.\",\"inspects the top of the murky, his shoe covered, leather and trims.\",is presented by various types of animation.,1\n7556,anetv_ng14GLT_hHQ,9320,A man is kneeling on the kitchen floor. He,A man is kneeling on the kitchen floor.,He,gold,is using a bucket of paints and a canvas.,is welding with a steel tool.,uses a knife to sharpen his sword.,pulls on a shirt and cuts a shirt by the camera.,0\n7557,lsmdc3027_GET_HIM_TO_THE_GREEK-12293,10259,It shows a petite blonde surgeon. Someone,It shows a petite blonde surgeon.,Someone,gold,lifts a pair of headphones.,smiles delightedly and drinks from the whiskey bottle.,runs his hand over her sister's head.,touches his wrist as he turns them on.,0\n7558,anetv_dyLGepr7VR0,16200,Two men and a woman are seen walking up onto a stage while a group of people are seen behind them in mirrors. The three then,Two men and a woman are seen walking up onto a stage while a group of people are seen behind them in mirrors.,The three then,gold,begin performing a pit routine with one another when they all begin to dance together.,\"move out together in unison, performing martial arts, grabbing them from their sides and lowering them with their knees.\",perform a dance routine while the people in the audience follow from behind.,enjoy a routine wearing batons in the stage and begin playing with one another as well as well.,2\n7559,anetv_dyLGepr7VR0,16201,The three then perform a dance routine while the people in the audience follow from behind. The man,The three then perform a dance routine while the people in the audience follow from behind.,The man,gold,dance around the stage while people and the woman are playing with others.,dismounts and shows the blonde.,stops and people salute to each other.,pump up the crowd and continue dancing as the others follow along in the mirror.,3\n7560,anetv_Eb_9_Bcij0Q,3489,A bearded man is seen giving a thumbs up to the camera and begins shaving his beard all while moving in fast time. Another person,A bearded man is seen giving a thumbs up to the camera and begins shaving his beard all while moving in fast time.,Another person,gold,is then seen going up and speaking to the camera as well as more clips of people standing back to her.,is seen from cuts to one in images and shaving while looking back to looking to the camera and laughing to the camera afterwards.,is seen wandering around while the man continues shaving his face and ends with a close up of his new face.,laughs and watches him play with them up in the air and smiling while holding his hand.,2\n7561,anetv_Eb_9_Bcij0Q,2215,\"In the middle of it, he grabs his phone to take pictures before he continues to shave off his beard. Once complete, he\",\"In the middle of it, he grabs his phone to take pictures before he continues to shave off his beard.\",\"Once complete, he\",gold,cuts books off of a table and nods at the camera a third time.,\"takes another step, then washes them in a clear jar.\",looks outside and licks his lips momentarily.,puts the clippers down and stands still to see what he's done.,3\n7562,anetv_Eb_9_Bcij0Q,2214,\"He then takes a razor and begins going over his beard and lining it up. In the middle of it, he\",He then takes a razor and begins going over his beard and lining it up.,\"In the middle of it, he\",gold,goes back towards the brush and begins shaving the sides of the beard until it is trimmed again.,grabs his phone to take pictures before he continues to shave off his beard.,highlights a scissors and leans over the bush.,repeats into brief bites and begins to scream for the beat of the sound.,1\n7563,anetv_Eb_9_Bcij0Q,2213,A man is standing in the bathroom and puts two thumbs up while showing his beard and head. He then,A man is standing in the bathroom and puts two thumbs up while showing his beard and head.,He then,gold,takes a razor and begins going over his beard and lining it up.,\"returns to the paint mirror, grabs his shoes and then begins brushing his hair.\",demonstrates how to properly put his legs by the face or show to the camera.,takes off the products and continues to paint the fingernail further on how to clean it.,0\n7564,anetv_Ule69iMpA3Y,16299,A woman is shown working out on a step doing some step aerobics. She,A woman is shown working out on a step doing some step aerobics.,She,gold,performs doing multiple participants for a high jump.,moves to one side of the step and continues to go up and down doing the aerobics.,turns to free lands on her knees to the floor and continues to dance.,explains the correct technique to explain the techniques.,1\n7565,anetv_Ule69iMpA3Y,14476,The lady moves to the right. The lady,The lady moves to the right.,The lady,gold,moves back to the middle of the step.,shows us the taps lens.,slides the arm of the bars to the right head as the camera pans to reveal the lady playing.,slides counter and checks the presentation.,0\n7566,anetv_Ule69iMpA3Y,14475,A lady in a gym goes up and down on an exercise step. The lady,A lady in a gym goes up and down on an exercise step.,The lady,gold,kicks the man with the lotion from the ankle stand.,takes her place to the gym.,lifts her body to the floor as well.,moves to the right.,3\n7567,lsmdc1012_Unbreakable-6943,9453,\"He lays the cloth on his newspaper, unwraps the stubby, black revolver, looks at it, re - wraps it, and replaces it. Feeling under the jeans again, he\",\"He lays the cloth on his newspaper, unwraps the stubby, black revolver, looks at it, re - wraps it, and replaces it.\",\"Feeling under the jeans again, he\",gold,peers down the top of the jumping tree.,\"stops the table, revealing black.\",slips on another biker.,removes a battered folder.,3\n7568,lsmdc1012_Unbreakable-6943,9452,\"He opens the door to a walk - in wardrobe, switches on the bare bulb, and feels under some folded jeans on a shelf above his head. He\",\"He opens the door to a walk - in wardrobe, switches on the bare bulb, and feels under some folded jeans on a shelf above his head.\",He,gold,removes a piece of gray cloth from which a gun butt protrudes.,swats through the front door.,turns and gaze at him.,picks out a waterfront and finds it empty.,0\n7569,lsmdc1012_Unbreakable-6943,9449,\"Someone is sitting up on a bed, a pillow behind his head, reading the paper. Someone\",\"Someone is sitting up on a bed, a pillow behind his head, reading the paper.\",Someone,gold,\"glances through, then checks the box.\",eyes someone as it slides off the door.,\"is asleep, lying across him.\",is making his coffee on the handle of the boat support.,2\n7570,lsmdc1012_Unbreakable-6943,9456,A photo of a young someone in football gear looks out from another story. He,A photo of a young someone in football gear looks out from another story.,He,gold,\"remains spar in his seat, surrounded by a baby in an actor.\",sits his magazine and is rooted to the spot.,\"turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches.\",turns his face in the air and steps forward.,2\n7571,lsmdc1012_Unbreakable-6943,9460,\"He glances across the room, quickly closes, and replaces the folder under his jeans. Someone\",\"He glances across the room, quickly closes, and replaces the folder under his jeans.\",Someone,gold,is outside his door.,\"stares into the bedroom, then steps in.\",shifts a perplexed gaze.,files out onto his shoulder.,0\n7572,lsmdc1012_Unbreakable-6943,9459,\"He looks back at the picture of the car, obviously, taken at night. It\",\"He looks back at the picture of the car, obviously, taken at night.\",It,gold,tips from someone's side as the building crumbles.,\"looking frizzy, relieved.\",walks towards him.,\"'s lying just beyond a bend in a tree - lined road, upside down in a ditch.\",3\n7573,lsmdc1012_Unbreakable-6943,9450,One arm flung around him. Someone,One arm flung around him.,Someone,gold,slams and strangles him with the father's death.,lowers the paper and glances at his son.,looks around; someone does n't realize he can do.,releases the crowd of people to watch.,1\n7574,lsmdc1012_Unbreakable-6943,9457,\"He turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches. He\",\"He turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches.\",He,gold,stares at it frowning.,\"come in score receiving different videos then says com, but missed it.\",holds up his hand to shield the flying ball.,\"is stretching but conscious, basic and straining.\",0\n7575,lsmdc1012_Unbreakable-6943,9451,Someone lowers the paper and glances at his son. He,Someone lowers the paper and glances at his son.,He,gold,\"closes the paper, and very carefully slides out from under the sleeping boy.\",unbuckles the seat belt and gives someone a sunny kiss.,looks uncertainly towards someone's laptop.,\"glances at the prisoner, then holds up one dark pick - ax.\",0\n7576,lsmdc1012_Unbreakable-6943,9454,\"Feeling under the jeans again, he removes a battered folder. He\",\"Feeling under the jeans again, he removes a battered folder.\",He,gold,refills the cashier 'cold - filled check.,pulls out a hidden knife.,opens it and flips through old newspaper clippings about american football.,\"his office, he crosses around a room and crosses back to the living room, where one of the boys hurries to the dorm\",2\n7577,lsmdc1012_Unbreakable-6943,9455,He opens it and flips through old newspaper clippings about American football. A photo of a young someone in football gear,He opens it and flips through old newspaper clippings about American football.,A photo of a young someone in football gear,gold,buys a thousand with them.,sees someone talking into the shovel.,looks out from another story.,wears a hawaiian shirt then boxes with someone.,2\n7578,lsmdc1012_Unbreakable-6943,9458,He stares at it frowning. He,He stares at it frowning.,He,gold,\"stares at her thoughtfully, glances at her long, rimmed lips.\",focuses on someone's father's empty laptop.,switches at the closing scene.,\"looks back at the picture of the car, obviously, taken at night.\",3\n7579,anetv_32-Bxdbf3mQ,9806,A man in a red shirt drives an orange tractor around the lawn. A dog,A man in a red shirt drives an orange tractor around the lawn.,A dog,gold,walks past the dog.,runs to help him.,is mowing the lawn next to the bushes.,runs around the yard.,3\n7580,lsmdc1056_Rambo-97108,3565,The peasants scramble towards someone and the mercenaries. Someone,The peasants scramble towards someone and the mercenaries.,Someone,gold,stares into the half - rise.,rushes into the building.,joins them and speaks to someone.,hurriedly rolls up to the tiled floor.,2\n7581,lsmdc1056_Rambo-97108,3555,\"They stumble desperately through the water. In slow motion, the peasants' feet\",They stumble desperately through the water.,\"In slow motion, the peasants' feet\",gold,tread in the air.,slosh through the water.,rest alike on a bump.,emerge from their touch.,1\n7582,lsmdc1056_Rambo-97108,3562,A soldier gets an arrow in the back as he tries to escape and then one in the head. Another soldier,A soldier gets an arrow in the back as he tries to escape and then one in the head.,Another soldier,gold,catches one in the leg and eye.,runs past the course and runs down a field carrying towels for people hitting.,rides injured and then another two punches in the back.,stops inside to show the position of excitement.,0\n7583,lsmdc1056_Rambo-97108,3549,Someone looks across at someone. The soldiers,Someone looks across at someone.,The soldiers,gold,stand as it falls past.,toss primed grenades into the paddy field.,ride past an argument between the two people.,\"saunter back to reveal someone, who continues to follow.\",1\n7584,lsmdc1056_Rambo-97108,3564,He falls into the paddy field onto a grenade. The peasants,He falls into the paddy field onto a grenade.,The peasants,gold,\"fall backwards onto the white plate, collide with each other, burning by the nazi.\",listen to their cells.,tumble from stone players into the sea.,scramble towards someone and the mercenaries.,3\n7585,lsmdc1056_Rambo-97108,3568,Someone draws an arrow on someone and aims it at the bald man's right eye. The other mercenaries,Someone draws an arrow on someone and aims it at the bald man's right eye.,The other mercenaries,gold,stop their regular minnesota - shaped attention.,cover someone with their weapons and glance at each other worriedly.,scan the cloudy street in the rear view mirror.,look at the guard as a gun flies out of his cigarette.,1\n7586,lsmdc1056_Rambo-97108,3563,Another soldier catches one in the leg and eye. He,Another soldier catches one in the leg and eye.,He,gold,sends the discus over slightly in the air.,falls into the paddy field onto a grenade.,'s already completes the serve.,gets off his rope and runs out of the room carrying someone.,1\n7587,lsmdc1056_Rambo-97108,3553,One of the troops points his rifle into the air. The peasants,One of the troops points his rifle into the air.,The peasants,gold,are strewn with debris.,trade additional tosses as the horsemen climb to the sun - strewn bluff below a blazing entrance on a new sun.,fly as fast as they can.,take the gunfire as the signal to begin a race across the paddy field.,3\n7588,lsmdc1056_Rambo-97108,3560,A soldier raises his rifle. He,A soldier raises his rifle.,He,gold,gets an arrow in the back.,lands in a hole in the dense skies below.,drops someone's gun and fires.,watches someone's sword on fire as he returns fire.,0\n7589,lsmdc1056_Rambo-97108,3552,Someone frowns and glances at the hanging severed head. One of the troops,Someone frowns and glances at the hanging severed head.,One of the troops,gold,points his rifle into the air.,falls onto the rooftop.,files out into the middle later also looking unconvinced.,limps with a nearby map.,0\n7590,lsmdc1056_Rambo-97108,3558,One of the soldiers raises his rifle. Bullets,One of the soldiers raises his rifle.,Bullets,gold,\"holes, the goal.\",hit the ground near the peasants.,\"someone, someone attacks kicks at someone, who bursts him with his feet.\",shoots a missile across the field just at a time of like four.,1\n7591,lsmdc1056_Rambo-97108,3550,The soldiers toss primed grenades into the paddy field. The peasants,The soldiers toss primed grenades into the paddy field.,The peasants,gold,hit a bundle of pipes into the alien.,scatter as he chases the soldiers.,are lined up at the edge of the paddy field.,peasants down to the coated floor in a small gray room.,2\n7592,lsmdc1056_Rambo-97108,3547,Someone and the mercenaries take cover behind charred sticks of timber framework. They,Someone and the mercenaries take cover behind charred sticks of timber framework.,They,gold,put their music sanford around their heads so they can almost hear.,skiis along a central track towards traffic.,perform an artillery piece on a device.,watch as a military lorry with a covered tail pulls into view and drives along the edge of the paddy field.,3\n7593,lsmdc1056_Rambo-97108,3557,They all make it successfully to the other side of the field and slump on the bank. A soldier,They all make it successfully to the other side of the field and slump on the bank.,A soldier,gold,shouts angrily and kicks one of the peasants in the head.,stands in his corner.,enters and hits double - stone.,advances blade aside the thin material.,0\n7594,lsmdc1056_Rambo-97108,3561,He gets an arrow in the back. Someone,He gets an arrow in the back.,Someone,gold,\"runs through the trees, letting fly with arrows from his bow.\",turns around and digs his gun and pointing it at someone.,returns several times to the left of the board.,closely uses his cane.,0\n7595,lsmdc1056_Rambo-97108,3546,\"Someone leads them away, but he is suddenly alerted. Someone and the mercenaries\",\"Someone leads them away, but he is suddenly alerted.\",Someone and the mercenaries,gold,go hurry and look on the carpets.,struggle throwing weapons after people.,take cover behind charred sticks of timber framework.,look at each other amiably.,2\n7596,lsmdc1056_Rambo-97108,3559,Bullets hit the ground near the peasants. The troops,Bullets hit the ground near the peasants.,The troops,gold,are lowered into the fire.,scatter up for a tower festival.,surround the army as they in and escape towards a conference room in front of a police entrance.,angrily gesture to the frightened men to cross the field again.,3\n7597,lsmdc1056_Rambo-97108,3554,The peasants take the gunfire as the signal to begin a race across the paddy field. They,The peasants take the gunfire as the signal to begin a race across the paddy field.,They,gold,ducks outward and smash and collect their seats.,stumble desperately through the water.,look into the rottweiler and turns.,make way around as the maintenance man raises his sword.,1\n7598,lsmdc1056_Rambo-97108,3556,\"In slow motion, the peasants' feet slosh through the water. They all\",\"In slow motion, the peasants' feet slosh through the water.\",They all,gold,stop and watch him through the barrier of the surf.,\"lean forward, listening to the brakes.\",make it successfully to the other side of the field and slump on the bank.,take the podium at the foot of the stand.,2\n7599,lsmdc1056_Rambo-97108,3567,Someone turns his back on someone. Someone,Someone turns his back on someone.,Someone,gold,sits on a bench facing the west defender - beast.,draws an arrow on someone and aims it at the bald man's right eye.,\"gets up, his looking badly injured.\",stares as someone shoves someone.,1\n7600,lsmdc1056_Rambo-97108,3551,The peasants are lined up at the edge of the paddy field. Someone,The peasants are lined up at the edge of the paddy field.,Someone,gold,\"climbing the long path, silhouetted against a light crack of light brush.\",frowns and glances at the hanging severed head.,pushes him through the high obstacles at the base of the wharf.,steers the crew away as someone circles the end of the wharf.,1\n7601,anetv_2FjaU9wfxaU,9606,A woman is seen hosting a news segment with a man and leads into a person bring out a dog and petting the dog. The man then,A woman is seen hosting a news segment with a man and leads into a person bring out a dog and petting the dog.,The man then,gold,demonstrates how to properly groom the dog while the host continues to speak and pet the dog.,speaks to the camera while continuing to throw frisbee out and cutting the dog and holding various frisbees behind girls.,begins riding around while speaking to the camera while riding around.,begins riding leaves around another dog while still riding a horse.,0\n7602,lsmdc3014_CAPTAIN_AMERICA-5544,4429,\"Later, he makes a film with American troops. The chorus of marching women in short skirts\",\"Later, he makes a film with American troops.\",The chorus of marching women in short skirts,gold,emerge in the hotel room.,joins someone on another stage.,float around capoeira place in circles by an closed gate.,has heard over from the counter and completes the steak.,1\n7603,lsmdc3014_CAPTAIN_AMERICA-5544,4431,\"The women salute as they march. Sitting in the audience, the senator\",The women salute as they march.,\"Sitting in the audience, the senator\",gold,gazes behind himself at the applauding crowd and nods to his assistant.,presses his lips to the woman's face.,blows on her nose.,adjusts his tie and leaves.,0\n7604,lsmdc3014_CAPTAIN_AMERICA-5544,4433,\"Later, children buy comics featuring Captain America from a newsstand. A gi\",\"Later, children buy comics featuring Captain America from a newsstand.\",A gi,gold,holds the runner screen to a german police officer.,reads a captain america comic on his bunk.,of them greets a woman.,\", someone is rooted to the spot.\",1\n7605,lsmdc3014_CAPTAIN_AMERICA-5544,4428,\"Someone poses for photographs with a baby and then the senator. Later, he\",Someone poses for photographs with a baby and then the senator.,\"Later, he\",gold,wipes wax from his face.,stops on someone's station desk.,makes a film with american troops.,joins someone outside the restaurant.,2\n7606,lsmdc3014_CAPTAIN_AMERICA-5544,4435,\"Sitting in an audience, someone grins as people around him cheer. Later, he\",\"Sitting in an audience, someone grins as people around him cheer.\",\"Later, he\",gold,\"signs an autograph for a boy backstage, then pauses as a blonde woman steps up to him.\",finds a plane in the sand.,addresses her to closed gate.,knocks someone's phone off the couch.,0\n7607,lsmdc3014_CAPTAIN_AMERICA-5544,4430,The chorus of marching women in short skirts joins someone on another stage. The women,The chorus of marching women in short skirts joins someone on another stage.,The women,gold,are wide - eyed - like someone.,hurry clear of the room and onto the bar.,salute as they march.,raise to sing and exchange a laugh and the officers sits beside her.,2\n7608,lsmdc3014_CAPTAIN_AMERICA-5544,4434,\"In the finished movie, someone blocks bullets with his arrowhead - shaped shield, then fires a machine gun as he leads a squad of soldiers into battle. Sitting in an audience, someone\",\"In the finished movie, someone blocks bullets with his arrowhead - shaped shield, then fires a machine gun as he leads a squad of soldiers into battle.\",\"Sitting in an audience, someone\",gold,fixes a sizable case on the shorter man.,grins as people around him cheer.,shakes someone's hand as a second officer helps the queue.,aims a pistol behind the racecar - goateed thug and spots her top through a dirt road.,1\n7609,lsmdc3014_CAPTAIN_AMERICA-5544,4432,\"Senator someone smiles and nods. Later, children\",Senator someone smiles and nods.,\"Later, children\",gold,buy comics featuring captain america from a newsstand.,\"skates through the streets, and a young boy walks in.\",\"share the table with someone, then someone touches a terrible flap to the desktop.\",flock down a set.,0\n7610,anetv_Ul8qLMmszx4,19942,The man speaks to the camera while still scraping off his car. He,The man speaks to the camera while still scraping off his car.,He,gold,rides all along the rails and looking off into the distance.,goes back to the indian man and shows alcohol shots to the camera.,finishes to wipe the tire off with a dirt tool.,cleans off another car while the cameraman shows his face and pans back to the man cleaning off the car.,3\n7611,anetv_Ul8qLMmszx4,18485,A person is seen using a scraper to clean the snow off his car while the camera captures him from several angles. He,A person is seen using a scraper to clean the snow off his car while the camera captures him from several angles.,He,gold,sprays the styled product discreetly onto his back.,continues putting the clients hair into the contacts while speaking to the camera while wiping the back wheel into the middle.,pushes windshield wipers down and wipes snow off other cars and the lights on the car turn on.,continues as more clips are shown of beaches as well as moving down a hill and snow shoveling.,2\n7612,anetv_Ul8qLMmszx4,19941,A person is seen pushing snow off of a car. The man,A person is seen pushing snow off of a car.,The man,gold,speaks to the camera while still scraping off his car.,takes a spare tire off of a large box and tightens the lug fist.,melts shovels all along the fence while one records them and wipes paint off his face.,performs tricks with the bike a distance.,0\n7613,lsmdc3052_NO_STRINGS_ATTACHED-25199,6147,\"Someone's mother, someone, is standing outside by a pretty rose garden. Someone\",\"Someone's mother, someone, is standing outside by a pretty rose garden.\",Someone,gold,sits back while wearing his ring.,sits over one of the friends.,is asleep and is talking about someone again.,\"walks someone to his car, a blue bmw.\",3\n7614,lsmdc3052_NO_STRINGS_ATTACHED-25199,6146,\"Two boys run down the stairs. Someone's mother, someone,\",Two boys run down the stairs.,\"Someone's mother, someone,\",gold,is joined by a guard.,sits at a 3d table.,smiles at someone slowly with excitement.,is standing outside by a pretty rose garden.,3\n7615,lsmdc3052_NO_STRINGS_ATTACHED-25199,6149,\"Looking slightly lost he drives away. Pretty, dark - haired someone\",Looking slightly lost he drives away.,\"Pretty, dark - haired someone\",gold,watches him with her arms folded.,arrives at the restaurant.,casually inspects him as they approach.,stands up in her apartment.,0\n7616,lsmdc3052_NO_STRINGS_ATTACHED-25199,6150,\"Pretty, dark - haired someone watches him with her arms folded. People\",\"Pretty, dark - haired someone watches him with her arms folded.\",People,gold,glimpse the last toss.,\"climbs the ladder, turning another booth on two young children entering and closing in on someone.\",and someone look up at someone.,mill about at a farmer's market by an artificial lake.,3\n7617,lsmdc3052_NO_STRINGS_ATTACHED-25199,6145,\"Mourners gather at someone's family home, a colonial - style mansion with white walls, shuttered windows, and a red - tiled roof. Two boys\",\"Mourners gather at someone's family home, a colonial - style mansion with white walls, shuttered windows, and a red - tiled roof.\",Two boys,gold,are laying in the bed with a man holding a toddler to hold up a white paper with safety paper.,run down the stairs.,leave in a door at a top.,sit on either side of the door stacked back on the lips.,1\n7618,lsmdc3052_NO_STRINGS_ATTACHED-25199,6148,\"Someone walks someone to his car, a blue bmw. He gets in the driving seat and someone\",\"Someone walks someone to his car, a blue bmw.\",He gets in the driving seat and someone,gold,leans by the door.,holds onto his mind.,takes out someone's waiting car.,walks through with a smile.,0\n7619,lsmdc1060_Yes_man-99062,3975,He is wide - eyed and disheveled. He,He is wide - eyed and disheveled.,He,gold,\"looks away, with an angry sigh.\",moves over and sits down in an armchair.,stares into space miserably and swallows.,\"stares at someone, who waves, then looks away.\",2\n7620,lsmdc1060_Yes_man-99062,3973,Someone wakes from his nightmare and sits up with a start. He,Someone wakes from his nightmare and sits up with a start.,He,gold,is outside with great embers on his face.,continues to go along the pavement.,is on the couch.,crosses the street next to the bus.,2\n7621,lsmdc1060_Yes_man-99062,3974,He is on the couch. He,He is on the couch.,He,gold,sits down and puts the brush with a measuring spoon.,is wide - eyed and disheveled.,turns and walks back into the security room.,\"is playing the pipes in the car, behind his car.\",1\n7622,lsmdc3037_IRON_MAN2-16899,1773,An Army drone stomps up to a young child wearing an Iron Man mask. The drone's camera,An Army drone stomps up to a young child wearing an Iron Man mask.,The drone's camera,gold,focuses on the mask.,follows from the paintball swing.,is clicking above a roaring volcano.,drifts from someone to a point - view only which covering his face.,0\n7623,lsmdc3037_IRON_MAN2-16899,1757,\"The Army and Navy drones march through the still crowded arena. Backstage, someone\",The Army and Navy drones march through the still crowded arena.,\"Backstage, someone\",gold,picks up a basket and finds a fallen made pose.,\"runs up to someone, who holds a telephone.\",walks to his left.,\"arrives the range of entered sailors, passes someone, and someone in baited breath.\",1\n7624,lsmdc3037_IRON_MAN2-16899,1769,\"Metal anchors fall down from their feet, securing them to the ground. The drones\",\"Metal anchors fall down from their feet, securing them to the ground.\",The drones,gold,raise their guns toward the sky and fire at someone as he flies toward them.,\"drop towards one of the great pillars, which leads into an painter operating the shape of a large creature.\",go back losing the structure.,drop off their boards and swoop down into the deep tunnel at the end zone.,0\n7625,lsmdc3037_IRON_MAN2-16899,1747,\"Behind him, the drones and someone also salute. Someone\",\"Behind him, the drones and someone also salute.\",Someone,gold,eyes someone's sad quarters.,shoots him and holds him on the hand.,\"glances down, at someone, and walks off.\",gazes off into the night sky.,3\n7626,lsmdc3037_IRON_MAN2-16899,1751,Someone and the drones fire their guns at someone. Commands,Someone and the drones fire their guns at someone.,Commands,gold,\"approach someone and someone, hiding behind the open door.\",shoot out from under a tree.,leads a trooper - worker in his cart.,\"pop up on his computer screen: deploy, deploy, deploy.\",3\n7627,lsmdc3037_IRON_MAN2-16899,1753,\"The Air Force drones fly through the roof, breaking more glass. The Air Force drones\",\"The Air Force drones fly through the roof, breaking more glass.\",The Air Force drones,gold,plummet down someone waters.,try to guide the cockatoo onto the deck with someone.,reaches to put them onto the it and heads onto the street again.,follow someone as he speeds up after someone.,3\n7628,lsmdc3037_IRON_MAN2-16899,1742,\"As footage of military aircraft and ships appear on the screen, eight drones rise from the floor on a platform at the back of stage left. More drones with wing - like panels atop their shoulders\",\"As footage of military aircraft and ships appear on the screen, eight drones rise from the floor on a platform at the back of stage left.\",More drones with wing - like panels atop their shoulders,gold,hold the marines points to her feet.,are suspended down the ceiling in the thick bar.,are covered and piled mr.,rise from the back of the stage left.,3\n7629,lsmdc3037_IRON_MAN2-16899,1743,\"More drones with wing - like panels atop their shoulders rise from the back of the stage left. Stage right, eight more drones\",More drones with wing - like panels atop their shoulders rise from the back of the stage left.,\"Stage right, eight more drones\",gold,bow in still unhurried before whistle.,shoot six degrees in the smoke.,sit on either side and roughly opposite each other in the obstacle.,rise from the floor.,3\n7630,lsmdc3037_IRON_MAN2-16899,1786,\"As the two men fight, someone enters a second set of doors and runs past another guard. Turning as she slides across the floor, she\",\"As the two men fight, someone enters a second set of doors and runs past another guard.\",\"Turning as she slides across the floor, she\",gold,knocks a weapon out on the corner of the room.,\"stares at the pavement in a corridor, just leaning against the bars and smiles into shadowy someone on her other side.\",\"throws taser darts at the second guard, who collapses.\",makes a shot at the end of the stage with a model flag.,2\n7631,lsmdc3037_IRON_MAN2-16899,1781,Someone fires at someone again and sets dozens of parked vehicles on fire. The vehicles,Someone fires at someone again and sets dozens of parked vehicles on fire.,The vehicles,gold,arrive at the end of the road.,line up to reveal a trail with shacks over the campfire.,\"explode and flip into the air behind someone, who darts toward the expo.\",\"drive to a stop at the roadside, then get out of the way.\",2\n7632,lsmdc3037_IRON_MAN2-16899,1760,Someone turns to the tech. Someone,Someone turns to the tech.,Someone,gold,\"grabs the phone, then pull her into the scene.\",looks around his body as he types.,coolly steps down from view.,twists someone's arm behind his back and slams him against a desk.,3\n7633,lsmdc3037_IRON_MAN2-16899,1752,\"Commands pop up on his computer screen: Deploy, deploy, deploy.. The Air Force drones\",\"Commands pop up on his computer screen: Deploy, deploy, deploy..\",The Air Force drones,gold,\"stand around furtively, the snow becoming dark.\",\"fly through the roof, breaking more glass.\",shoots and wraps his arm around his ankle.,wait in front of the collapsible landing in a handgun and punches someone by.,1\n7634,lsmdc3037_IRON_MAN2-16899,1754,The Air Force drones follow someone as he speeds up after someone. Someone's suit,The Air Force drones follow someone as he speeds up after someone.,Someone's suit,gold,\"features crumpled, someone's eyes shift from his seat.\",smooths out strange and light slips his fingers into the workshop itself.,\"fires the gatling gun at someone, who maneuvers through the sky.\",hits the ground in a pair of hug.,2\n7635,lsmdc3037_IRON_MAN2-16899,1764,\"The drones on the Expo grounds stand on steps and fire missiles at people as they run away. In his control room at Hammer Industries, the smiling someone\",The drones on the Expo grounds stand on steps and fire missiles at people as they run away.,\"In his control room at Hammer Industries, the smiling someone\",gold,looks stranger up a spiral staircase.,lowers his astonished gaze.,watches the mayhem on two large computer monitors.,washes a chair in the lobby of the room where someone uses the phone phone demurely.,2\n7636,lsmdc3037_IRON_MAN2-16899,1755,\"Someone's suit fires the Gatling gun at someone, who maneuvers through the sky. They\",\"Someone's suit fires the Gatling gun at someone, who maneuvers through the sky.\",They,gold,follow him toward an expo building while firing bullets through the windows.,swings as fast as they can and walks up to the back roof.,\"begin swimming around, while the passengers stare at someone.\",shoot out of the blue glow of a raised light.,0\n7637,lsmdc3037_IRON_MAN2-16899,1777,\"Below, someone makes a sharp turn onto a city street. Someone\",\"Below, someone makes a sharp turn onto a city street.\",Someone,gold,stares into the rear - view mirror as someone changes clothes.,then burst into snowflakes.,shoots herd the gunmen in.,of a hydra mansion is suspended on a wooded platform.,0\n7638,lsmdc3037_IRON_MAN2-16899,1745,\"All the drones are equipped with different weapons. In a dark room, someone\",All the drones are equipped with different weapons.,\"In a dark room, someone\",gold,mounts a flight of uneven bars with an exposed metal gate.,shoots to several duct.,controls a drone by a computer.,is dressed in a unmasked case labeled uniform.,2\n7639,lsmdc3037_IRON_MAN2-16899,1782,\"The vehicles explode and flip into the air behind someone, who darts toward the Expo. Meanwhile, the silver car\",\"The vehicles explode and flip into the air behind someone, who darts toward the Expo.\",\"Meanwhile, the silver car\",gold,smashes through a ship hitting debris and send into a karateka.,pulls up outside hammer industries and parks.,arrives at a bank v - parks and a truck parked beneath them.,approaches a burning pit where several swimmers are thrown on a diving board and swiftly overturns.,1\n7640,lsmdc3037_IRON_MAN2-16899,1758,\"Backstage, someone runs up to someone, who holds a telephone. A bespectacled it man\",\"Backstage, someone runs up to someone, who holds a telephone.\",A bespectacled it man,gold,draws his arm and salutes his wife.,peers out a window that reflects out his client's face.,comes outside of the last door to the someones house.,works at a computer.,3\n7641,lsmdc3037_IRON_MAN2-16899,1780,\"On the screen, three triangles representing Air Force drones move off together. Someone\",\"On the screen, three triangles representing Air Force drones move off together.\",Someone,gold,fires at someone again and sets dozens of parked vehicles on fire.,and another person films himself.,sets his boarding on a track.,downs the jack and approaches the fire.,0\n7642,lsmdc3037_IRON_MAN2-16899,1791,He falls as a fifth guard appears. Someone,He falls as a fifth guard appears.,Someone,gold,hurries to the fence and makes several calls.,interviews his apprentice someone in a file suit.,gets close to him.,jumps over the downed fourth guard and kicks the fifth guard in the head.,3\n7643,lsmdc3037_IRON_MAN2-16899,1761,Someone twists someone's arm behind his back and slams him against a desk. Someone,Someone twists someone's arm behind his back and slams him against a desk.,Someone,gold,interrupts a pretty hobbit.,lets go of someone and leaves.,\"stares at someone, who sits at his laptop framed at the fair.\",raises his makeshift liquor bottle in his hand and peers around.,1\n7644,lsmdc3037_IRON_MAN2-16899,1778,\"In the sky, someone and the drones follow someone as he flies along a freeway. Someone\",\"In the sky, someone and the drones follow someone as he flies along a freeway.\",Someone,gold,zips into a huge parking garage and around tall concrete columns.,\"levels out the shaft of sky, gun out to south america.\",distant a limo someone's car stop at which tracks: hands ride through the raised clearing.,\"leaps at the river, parked at the picnic shelter.\",0\n7645,lsmdc3037_IRON_MAN2-16899,1746,\"In a dark room, someone controls a drone by a computer. Someone, wearing the war machine suit, the someone ii heavily modified with weapons,\",\"In a dark room, someone controls a drone by a computer.\",\"Someone, wearing the war machine suit, the someone ii heavily modified with weapons,\",gold,rises from the floor of the circular main stage.,\"reach into the twenty with her necklace, pushed it with all his might.\",is pinned to someone's sit.,passes his frustrated guard across the study.,0\n7646,lsmdc3037_IRON_MAN2-16899,1790,She slides between the legs of a fourth approaching guard and punches him in the groin. He,She slides between the legs of a fourth approaching guard and punches him in the groin.,He,gold,glares at the screen of the matador.,falls as a fifth guard appears.,runs toward him and flicks the javelin over.,drops the phone on his ear.,1\n7647,lsmdc3037_IRON_MAN2-16899,1765,\"In his control room at Hammer Industries, the smiling someone watches the mayhem on two large computer monitors. People\",\"In his control room at Hammer Industries, the smiling someone watches the mayhem on two large computer monitors.\",People,gold,hurry past someone as she strides out of the expo's main entrance and approaches someone.,speed by with the boat.,sets him down on the counter and runs up the stairs.,\"joins in the floor, eating a cupcake and eating pizza.\",0\n7648,lsmdc3037_IRON_MAN2-16899,1768,\"The Army drones march double - time behind the fleeing crowd, then stop. Metal anchors\",\"The Army drones march double - time behind the fleeing crowd, then stop.\",Metal anchors,gold,fly fire as they run across from the ark.,\"paddle straight from the burning wreck, along the wires with a nest that sprayed onto their backs.\",come to the floor with someone with them.,\"fall down from their feet, securing them to the ground.\",3\n7649,lsmdc3037_IRON_MAN2-16899,1770,The drones raise their guns toward the sky and fire at someone as he flies toward them. One of the bullets,The drones raise their guns toward the sky and fire at someone as he flies toward them.,One of the bullets,gold,crashes over the track.,knocks them aside at all.,leaps out to shreds the unisphere.,\"strikes an air force drone, which crashes and bounces across the ground in flames.\",3\n7650,lsmdc3037_IRON_MAN2-16899,1744,\"Stage right, eight more drones rise from the floor. All the drones\",\"Stage right, eight more drones rise from the floor.\",All the drones,gold,are equipped with different weapons.,raise their rifles in a silent fire.,finish their routine and congratulate each other.,are fall back to the military fire and tumble.,0\n7651,lsmdc3037_IRON_MAN2-16899,1785,\"Someone punches a muscular guard. As the two men fight, someone\",Someone punches a muscular guard.,\"As the two men fight, someone\",gold,throws a grenade.,enters a second set of doors and runs past another guard.,holding the pipe pump up a shotgun.,blocks a bullets and knocks the floor in.,1\n7652,lsmdc3037_IRON_MAN2-16899,1794,\"Someone watches on a monitor as someone runs out of view. At the Expo, Air Force drones\",Someone watches on a monitor as someone runs out of view.,\"At the Expo, Air Force drones\",gold,show men and women on a runway.,erupts into an oncoming mass.,follow someone as he zooms overhead.,retrieve balls as someone plane makes a routing gathering.,2\n7653,lsmdc3037_IRON_MAN2-16899,1784,Someone stands watch while someone swipes a card through a security system. Someone,Someone stands watch while someone swipes a card through a security system.,Someone,gold,opens the building's door and sprints inside.,leans in the door and approaches someone with his hands in his pockets.,stares after the hand in front of her with the card.,indicates a framed photo.,0\n7654,lsmdc3037_IRON_MAN2-16899,1787,\"Turning as she slides across the floor, she throws Taser darts at the second guard, who collapses. Someone\",\"Turning as she slides across the floor, she throws Taser darts at the second guard, who collapses.\",Someone,gold,\"looks at him, as he lifts his shoulder warily, then gives down.\",\"whips out his hand gun, thrusts his tank menacingly at him, then lifts his shotgun barrel.\",collects her thrown aside from the groceries flask.,runs down a hallway while someone exchanges punches with the first guard near the entrance.,3\n7655,lsmdc3037_IRON_MAN2-16899,1779,\"Someone zips into a huge parking garage and around tall concrete columns. As someone and the drones zoom over parked vehicles, car alarms\",Someone zips into a huge parking garage and around tall concrete columns.,\"As someone and the drones zoom over parked vehicles, car alarms\",gold,continues to the offices and lowers the gate.,watches as the creatures snakes at him.,set off flashing tail lights.,stacks of whipped fish on the side of the road.,2\n7656,lsmdc3037_IRON_MAN2-16899,1771,The bullets hit a building. Concrete,The bullets hit a building.,Concrete,gold,\"the biker traffic, someone pushes a fire canister out of the building then gets up and aims his torch.\",\"leaves his face and vanishes, aiming his shoot at the window.\",showers down on running people.,\"speed through a marketplace, a collage of broken lies appears in front of him.\",2\n7657,lsmdc3037_IRON_MAN2-16899,1763,\"Firing their guns, the Air Force drones trail someone around Expo buildings as they zip through the sky. The drones on the Expo grounds\",\"Firing their guns, the Air Force drones trail someone around Expo buildings as they zip through the sky.\",The drones on the Expo grounds,gold,are hauled down from the hulking fluid - like weapons.,\"are only long shot of the parade, overlooking the road opposite.\",\"are quickly vanishing through the trio with various others, go into sailing.\",stand on steps and fire missiles at people as they run away.,3\n7658,lsmdc3037_IRON_MAN2-16899,1776,\"Air Force drones follow someone as he zooms high into the sky. Below, someone\",Air Force drones follow someone as he zooms high into the sky.,\"Below, someone\",gold,checks his watch as someone dives into a blaze beneath the domed zeppelin.,loops his rope along furiously.,makes a sharp turn onto a city street.,sees a group of men arriving to join her.,2\n7659,lsmdc3037_IRON_MAN2-16899,1756,\"Inside the building, people duck for cover. The Army and Navy drones\",\"Inside the building, people duck for cover.\",The Army and Navy drones,gold,march through the still crowded arena.,tread as cheer soldiers them outcrop.,carry a flying can.,tread hung on their heads.,0\n7660,lsmdc3037_IRON_MAN2-16899,1767,Someone sits in the driver's seat while someone climbs behind him in the back seat. The Army,Someone sits in the driver's seat while someone climbs behind him in the back seat.,The Army,gold,\"teen plays the passenger, his hands.\",\"lean, mesmerized by the magnificent skyline, allowing a faint shade of the clouds in the sky.\",of men leave toned the jam to her front room.,\"drones march double - time behind the fleeing crowd, then stop.\",3\n7661,lsmdc3037_IRON_MAN2-16899,1750,Someone flies out through the opening in the glass roof. Someone and the drones,Someone flies out through the opening in the glass roof.,Someone and the drones,gold,go fast on crates.,fire their guns at someone.,get out of the command truck.,explode on top of myrtle.,1\n7662,lsmdc3037_IRON_MAN2-16899,1793,He also falls and lies motionless. Someone,He also falls and lies motionless.,Someone,gold,gazes at the tv under the man's pillow.,continues dreaming of someone as they drive into people's tent.,watches on a monitor as someone runs out of view.,lifts the bottle lying directly above his head.,2\n7663,lsmdc3037_IRON_MAN2-16899,1789,\"Someone leaps over a cart and kicks him in the face, knocking him unconscious. She\",\"Someone leaps over a cart and kicks him in the face, knocking him unconscious.\",She,gold,\"leaps up at him, then plunges harmlessly off the water.\",\"kisses the boy, cousins a third man.\",slides between the legs of a fourth approaching guard and punches him in the groin.,tosses the ball to the one thug dressed in spanish.,2\n7664,lsmdc3037_IRON_MAN2-16899,1749,\"Someone walks over to someone. Elsewhere, someone\",Someone walks over to someone.,\"Elsewhere, someone\",gold,\", someone, someone, and someone watch the bright grass table with food and someone, with the finished trash.\",pauses in a kitchen and looks at inch pack of contents.,types a command: engage.,\"and someone share a small, silver - lit armory.\",2\n7665,lsmdc3037_IRON_MAN2-16899,1759,A bespectacled it man works at a computer. Someone,A bespectacled it man works at a computer.,Someone,gold,knits engrossed in someone's office.,is given a man list.,lifts a bar onto the train.,turns to the tech.,3\n7666,lsmdc3037_IRON_MAN2-16899,1748,\"The suit's thrusters shut off. With his back to the audience, someone\",The suit's thrusters shut off.,\"With his back to the audience, someone\",gold,puts both leg back on the rail.,stands the other guys with the six lifeboats mounted.,lands in front of someone.,brings off his drink then turns it back on the display.,2\n7667,lsmdc3037_IRON_MAN2-16899,1783,\"Someone and someone, wearing a form - fitting black leather outfit, step out. Someone\",\"Someone and someone, wearing a form - fitting black leather outfit, step out.\",Someone,gold,stands watch while someone swipes a card through a security system.,leads someone to a middle - aged child and falls into the water.,walks up on a deck carrying a clipboard.,glances between his parents.,0\n7668,lsmdc3037_IRON_MAN2-16899,1788,Someone runs down a hallway while someone exchanges punches with the first guard near the entrance. Someone,Someone runs down a hallway while someone exchanges punches with the first guard near the entrance.,Someone,gold,\"leaps over a cart and kicks him in the face, knocking him unconscious.\",pats someone's cheek and drags his boater to one of his fellow students.,wraps her arms around his neck and flings her on the floor.,tumbles down the corridor being watched by a guard and sees a woman with tall black hair let him high.,0\n7669,lsmdc3037_IRON_MAN2-16899,1774,The drone's camera focuses on the mask. The child,The drone's camera focuses on the mask.,The child,gold,climbs on the couch.,picks up the chainsaw canister's mask.,\"raises his left arm, revealing a glowing light in his hand.\",\"glances up, then appears beside him noticing all the pictures we saw before.\",2\n7670,lsmdc3037_IRON_MAN2-16899,1766,People hurry past someone as she strides out of the Expo's main entrance and approaches someone. Someone,People hurry past someone as she strides out of the Expo's main entrance and approaches someone.,Someone,gold,slips the key out.,leans anxiously from her parked car.,runs to her through the back door.,sits in the driver's seat while someone climbs behind him in the back seat.,3\n7671,lsmdc3037_IRON_MAN2-16899,1772,Concrete showers down on running people. An Army drone,Concrete showers down on running people.,An Army drone,gold,skates over a race as wild winner reporter interviewed.,is freely coming right beside the mustached.,\"crawls with tiled, burgundy motorcycles and pastel frames.\",stomps up to a young child wearing an iron man mask.,3\n7672,anetv_tOCFOu8eOkU,17299,Little kid is sitting in a Babies eating chair. an adult person,Little kid is sitting in a Babies eating chair.,an adult person,gold,is guiding the girl.,is laying in bed.,sits in the sidewalk with their kids chatting and eating.,is holding an ice cream and is offering it to the baby.,3\n7673,anetv_tOCFOu8eOkU,19407,A toddler is given an ice cream cone to eat by an unseen subject while sitting in a high chair. A toddler,A toddler is given an ice cream cone to eat by an unseen subject while sitting in a high chair.,A toddler,gold,is sitting in a high chair reaching for an ice cream cone.,takes a drink from a mixer.,carries a small axe in marley's hand as other pushes in and out of frame.,is eating ice cream and is helping someone to pick up a textbook.,0\n7674,anetv_tOCFOu8eOkU,19409,A hand holding the cone approaches the girl with the cone and gives it to her. The toddler,A hand holding the cone approaches the girl with the cone and gives it to her.,The toddler,gold,stands in front of a net while holding a candy tool through her mouth.,takes the ice cream cone and begins to eat it.,puts toothpaste on the woman and brush the teeth.,\"throws the red ball into a cup, and the woman sticks the sugar into the ice with cream.\",1\n7675,anetv_tOCFOu8eOkU,17300,An adult person is holding an ice cream and is offering it to the baby. the kid,An adult person is holding an ice cream and is offering it to the baby.,the kid,gold,pours an ice cream cone in its mouth and smiles.,looks out of the window.,turns and walks away.,grabs the ice cream and start eating.,3\n7676,anetv_tOCFOu8eOkU,19408,A toddler is sitting in a high chair reaching for an ice cream cone. A hand holding the cone,A toddler is sitting in a high chair reaching for an ice cream cone.,A hand holding the cone,gold,gently hits it and stirs it.,is laying around while sitting on the bed.,approaches the girl with the cone and gives it to her.,is placed on the table.,2\n7677,anetv_JfF80Uho8U8,10521,\"Then he tops it with chopped lettuce and a few tomato and pickle slices, some jalapenos and onions. Then he\",\"Then he tops it with chopped lettuce and a few tomato and pickle slices, some jalapenos and onions.\",Then he,gold,\"pours the eggs into a small pot, adds some cheese and tomatoes.\",points onions and carrots.,seasons it with pepper and some spicy sauce over the meat.,\"adds salt and pepper in hot sauce, salt covers the squirrel and chopped with a different plate and stirred them.\",2\n7678,anetv_JfF80Uho8U8,10519,There's a person in a commercial kitchen wearing a gray shirt and a gray hat demonstrating and talking about how to make a sandwich. He,There's a person in a commercial kitchen wearing a gray shirt and a gray hat demonstrating and talking about how to make a sandwich.,He,gold,begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices.,mixes ingredients together in a bowl with the oven.,is shown with them.,turns and talks while he does some different moves.,0\n7679,anetv_JfF80Uho8U8,10522,Then he seasons it with pepper and some spicy sauce over the meat. He then,Then he seasons it with pepper and some spicy sauce over the meat.,He then,gold,puts some pasta into the pot and cooks it.,prepares the pasta dish with some good chopping.,bob it with his wooden stick.,proudly shows the finished sandwich that is loaded with meat and cheese.,3\n7680,anetv_JfF80Uho8U8,10520,He begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices. Then he,He begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices.,Then he,gold,adds the chicken to all bug to grab it and gets them wet.,\"puts cheese slices and cold lunch meat slices inside the sandwich, followed by a few slices of salami.\",\"measures, adding onions, salt, wax and tomatoes.\",adds to the slice of bread and takes it off the floor.,1\n7681,anetv_JfF80Uho8U8,13194,A large white man is sitting in front of a restaurant freezer talking. The male then,A large white man is sitting in front of a restaurant freezer talking.,The male then,gold,uses the iron to brush the back of someone's head.,begins making a list on his hands and takes a twelve inch sub and cuts it in half.,comes into another pyramid and begins to move it around while the bartender speaks.,takes some polish for the cleaning product and wipes on all the table.,1\n7682,lsmdc0023_THE_BUTTERFLY_EFFECT-59481,15986,\"Suddenly a car appears from down the street and slowly pulls into the driveway. Someone, 24, an attractive young mother,\",Suddenly a car appears from down the street and slowly pulls into the driveway.,\"Someone, 24, an attractive young mother,\",gold,gets out of the car and walks to the mailbox.,stands looking out of the brothel as he approaches.,is held aloft and normally exaggerated around.,wears a red raincoat in the winter clothes and press paper.,0\n7683,lsmdc0023_THE_BUTTERFLY_EFFECT-59481,15987,\"Someone, 24, an attractive young mother, gets out of the car and walks to the mailbox. Someone\",\"Someone, 24, an attractive young mother, gets out of the car and walks to the mailbox.\",Someone,gold,stares at the guard standing in front of him.,taps the strap at his ex's shoulder.,\"is standing on the sales counter, then crouches as the friend moves in.\",walks back to the car.,3\n7684,lsmdc0023_THE_BUTTERFLY_EFFECT-59481,15985,\"When someone comes to in this memory, the lit cigarette absently drops from his mouth and nestles into the folds of his shirt. Suddenly a car\",\"When someone comes to in this memory, the lit cigarette absently drops from his mouth and nestles into the folds of his shirt.\",Suddenly a car,gold,snaps in and someone spots him.,pulls up and look down at their stained hats.,pulls up from the fallen train who slowly slides through the street until late at night.,appears from down the street and slowly pulls into the driveway.,3\n7685,lsmdc0023_THE_BUTTERFLY_EFFECT-59481,15984,\"People, all thirteen, watch the mailbox across the street with intense anticipation. When someone comes to in this memory, the lit cigarette\",\"People, all thirteen, watch the mailbox across the street with intense anticipation.\",\"When someone comes to in this memory, the lit cigarette\",gold,absently drops from his mouth and nestles into the folds of his shirt.,\"is right behind her, watching it.\",from his mouth is lit.,pours back into the window.,0\n7686,lsmdc0023_THE_BUTTERFLY_EFFECT-59481,15983,\"Furthermore, the walls behind him vibrate, slightly worse than before. People, all thirteen,\",\"Furthermore, the walls behind him vibrate, slightly worse than before.\",\"People, all thirteen,\",gold,watch the mailbox across the street with intense anticipation.,\"stand on one of the towers, carried all the way to the hotel.\",are flung into the operating room surrounded by people; over people.,\"are struggling to dive off their stomachs and aimed from the dunes, into the water.\",0\n7687,anetv_MN0YWduOEHk,2600,Men are standing in big field pulling a thick rope. men,Men are standing in big field pulling a thick rope.,men,gold,walk out of a grassy field raking.,jump together and land in big sports field.,are walking on sides of the rope and preparing themselves to pull the rope.,are in a black court playing games.,2\n7688,anetv_XH-YlSbgxkY,11076,A large auditorium is seen with a young dancer walking out on stage. The woman,A large auditorium is seen with a young dancer walking out on stage.,The woman,gold,throws a dagger to the older woman who stands on stage.,continues performing while instructing one girl and throwing the baton on the instrument.,turns back to the athlete and begins moving up and down to a balance beam.,begins dancing a routine using a baton and twirling it around.,3\n7689,anetv_XH-YlSbgxkY,11407,She is putting on a performance with a baton. She,She is putting on a performance with a baton.,She,gold,twirls and dances with the baton.,is standing in front of the audience and the judges facing her time.,spins by throwing the baton in the air and doing her tricks.,tries to catch her arm as she dances faster and dances to the baton.,0\n7690,anetv_XH-YlSbgxkY,11077,The woman begins dancing a routine using a baton and twirling it around. The girl,The woman begins dancing a routine using a baton and twirling it around.,The girl,gold,spins the twirls continuously in preparation motion followed by dancing with others.,spins herself around the rope in more and ends with her holding off.,continues jumping up and down and ends by swinging back and fourth and singing through the audience afterwards.,continues her routine and ends with her bowing and walking off stage.,3\n7691,anetv_XH-YlSbgxkY,11406,A girl is on a basketball court in front of a crowd. She,A girl is on a basketball court in front of a crowd.,She,gold,does a high jump several times in a hoop.,brings a girl down and jumps.,is putting on a performance with a baton.,is interviewed at older boys.,2\n7692,lsmdc1038_The_Great_Gatsby-87451,5294,They rest against a pillar and their fingers touch. They,They rest against a pillar and their fingers touch.,They,gold,\"run toward them, heading around a dragon house.\",fold over their back and fling it on their head.,situations through her hand.,look at each other.,3\n7693,lsmdc1038_The_Great_Gatsby-87451,5293,They step out onto the porch. They,They step out onto the porch.,They,gold,rest against a pillar and their fingers touch.,picks someone up on the bed.,run into the lobby and enter the elevator.,peer out of the front windows.,0\n7694,lsmdc1038_The_Great_Gatsby-87451,5290,\"Someone gives up, walks in and takes off his coat. Her dark eyes\",\"Someone gives up, walks in and takes off his coat.\",Her dark eyes,gold,remain glued to her face as he hears her approach.,return his gaze adoringly.,remain locked on her as she storms out of the house.,follow him as she walks outside.,1\n7695,lsmdc1038_The_Great_Gatsby-87451,5284,\"He smooths it back with his hand. Finally, appearing confident and relaxed and with the old familiar glint in his eyes, someone\",He smooths it back with his hand.,\"Finally, appearing confident and relaxed and with the old familiar glint in his eyes, someone\",gold,begins to wake up.,falls on onto the pole's high vault landing.,repeats the process slowly.,steps towards the room.,3\n7696,lsmdc1038_The_Great_Gatsby-87451,5292,\"Someone smiles, gets up and opens the French windows. They\",\"Someone smiles, gets up and opens the French windows.\",They,gold,step out onto the porch.,'s rectangles tousled in white.,are surrounded by broadcast officers.,leave the darkness of which window.,0\n7697,lsmdc1038_The_Great_Gatsby-87451,5300,People swim on his private beech. Someone,People swim on his private beech.,Someone,gold,has his arm over his blazer.,dives from a diving pontoon out in the water.,calmly crosses the beach under the fixture and extinguishes a big wad of sand.,see nature in the distance.,1\n7698,lsmdc1038_The_Great_Gatsby-87451,5288,He rattles a bowl in the sink to make his presence known. People,He rattles a bowl in the sink to make his presence known.,People,gold,are riding around a dirt track on a skateboard.,have already been washing over the water.,\"don't notice and continue looking deep into each other's eyes, smiling at each other.\",are being played in a swimming pool in various locations.,2\n7699,lsmdc1038_The_Great_Gatsby-87451,5280,\"On the porch, someone holds up a hand. He\",\"On the porch, someone holds up a hand.\",He,gold,licks it and shakes it.,\"sets it aside, and shuts the curtains with a frown.\",pulls the lid open.,nods to someone and takes a deep breathe.,3\n7700,lsmdc1038_The_Great_Gatsby-87451,5283,\"Watching from the door, someone takes off his boater and gestures for someone to tidy his hair. He\",\"Watching from the door, someone takes off his boater and gestures for someone to tidy his hair.\",He,gold,\"is now in someone's pink outfit, putting the back of her hand up by her cloak sleeves.\",sniffs his jacket pockets and spots the woman in a sunny stall.,\"moves on, then turns towards the doorway.\",smooths it back with his hand.,3\n7701,lsmdc1038_The_Great_Gatsby-87451,5287,\"Drenched, he returns and sees people deep in conversation. He\",\"Drenched, he returns and sees people deep in conversation.\",He,gold,smiles on the gran torino.,rattles a bowl in the sink to make his presence known.,faces the water and sees well and bends down to make a one - gesture.,baby takes his hand.,1\n7702,lsmdc1038_The_Great_Gatsby-87451,5297,\"Someone looks up in wonder. Surrounded by gushing fountains and ornamental palms, they\",Someone looks up in wonder.,\"Surrounded by gushing fountains and ornamental palms, they\",gold,climb the wooden suvs behind someone.,are filling out rock.,look up at the house.,dip right into the murky depths.,2\n7703,lsmdc1038_The_Great_Gatsby-87451,5299,\"Someone looks at someone, framed by the fountain. It\",\"Someone looks at someone, framed by the fountain.\",It,gold,carnies from left wars stage.,\"goes to someone, pinned.\",sees the game cameraman amid a.,'s an orange - squeezing machine.,3\n7704,lsmdc1038_The_Great_Gatsby-87451,5281,He nods to someone and takes a deep breathe. Someone,He nods to someone and takes a deep breathe.,Someone,gold,returns his eye to someone.,blows someone's lips and leaves.,sneaks furtively into the kitchen area and peers through the flowers into the room.,leans up beside someone and stamps out the letters.,2\n7705,lsmdc1038_The_Great_Gatsby-87451,5296,They walk up the drive. Someone,They walk up the drive.,Someone,gold,reaches into a wooden rail and slips across the red stair edge.,pauses using a jail cell.,looks up in wonder.,is on his soft couch near the trunk of a car door.,2\n7706,lsmdc1038_The_Great_Gatsby-87451,5298,\"Surrounded by gushing fountains and ornamental palms, they look up at the house. Someone\",\"Surrounded by gushing fountains and ornamental palms, they look up at the house.\",Someone,gold,puts on someone's coat and goes around to the refrigerator.,\"leans in close, then watches a bolt die down.\",puts one arm around his shoulders.,\"looks at someone, framed by the fountain.\",3\n7707,lsmdc1038_The_Great_Gatsby-87451,5291,Her dark eyes return his gaze adoringly. Someone,Her dark eyes return his gaze adoringly.,Someone,gold,gazes at her as she unbuttons her tie.,\"nods slowly, and then lifts her back up.\",stares at someone as they board the tv.,\"smiles, gets up and opens the french windows.\",3\n7708,anetv_YnFDzvuDJSQ,8505,She grabs some red ribbon and begins to tie into a bow. She then,She grabs some red ribbon and begins to tie into a bow.,She then,gold,fastens it and places the metal together.,shows how to hold lenses in several ways to dip it in the water.,goes to place it on to the christmas tree and continues to speak about it.,tries hard to hold a it minutes any longer.,2\n7709,anetv_YnFDzvuDJSQ,8504,She puts her hand on the christmas tree and talks some more about it. She,She puts her hand on the christmas tree and talks some more about it.,She,gold,squares are on the table facing the seemingly evening shirt.,grabs some red ribbon and begins to tie into a bow.,starting to turn around and chimney scotch while spreading out in frame.,\"comes out in an arcade of rain and picks up an ashtray, gripping it in her hand.\",1\n7710,anetv_YnFDzvuDJSQ,8503,A woman in red is standing beside a table explaining some things. she,A woman in red is standing beside a table explaining some things.,she,gold,\"bends down, puts up objects in the trash.\",plays around the corner very quickly as he runs.,jumps in and watches them.,puts her hand on the christmas tree and talks some more about it.,3\n7711,anetv_9PRK4oy1hhY,3754,\"A reporter interview two boys and a little boy. Then, the big boys and the small boys\",A reporter interview two boys and a little boy.,\"Then, the big boys and the small boys\",gold,run for their goal in poles and then bounce balls at a pinata of a beach.,play soccer table while the reporter continue the interview.,enters a gym and play soccer.,run back and forth over the vegetable shop.,1\n7712,anetv_J4vq7MLMAtY,15456,Several people are shown at a party playing different games and having fun. A man,Several people are shown at a party playing different games and having fun.,A man,gold,is sitting down playing a set of drums while holding other drums.,\"walks back to the man, takes a basketball and starts dancing with the middle's men.\",is now speaking to a camera while two people are sitting behind them standing upright.,begins to talk to one of the women as she is playing one of the games.,3\n7713,anetv_J4vq7MLMAtY,15457,A man begins to talk to one of the women as she is playing one of the games. The game,A man begins to talk to one of the women as she is playing one of the games.,The game,gold,is ending with people sitting and playing a game of soccer.,continues to be played in the end zone.,begins to get heated while several of the women laugh and joke around.,cuts to table that goes very hard on the court on the beach.,2\n7714,anetv_J4vq7MLMAtY,15459,One of the women takes a picture of the laughing women playing the game. A man,One of the women takes a picture of the laughing women playing the game.,A man,gold,serves the women ball and throw them into the cups.,talks to her while she's talking.,helps as the women try to get the hang of playing the game.,pokes her look around.,2\n7715,anetv_J4vq7MLMAtY,15458,The game begins to get heated while several of the women laugh and joke around. One of the women,The game begins to get heated while several of the women laugh and joke around.,One of the women,gold,shows one than the other while the host dances the cymbals.,looks in a booth two kids and a few riding team begin to cool.,laughs and is hit by the reporter passing a ball that is reeling with him.,takes a picture of the laughing women playing the game.,3\n7716,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-307,12337,\"In the dorm, the girls lead someone down a hall. They\",\"In the dorm, the girls lead someone down a hall.\",They,gold,hurl their furniture into a dumpster.,follow red droplets on the floor.,pick up the bikes and head inside.,are hot on their shoulders.,1\n7717,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-307,12338,They follow red droplets on the floor. Someone,They follow red droplets on the floor.,Someone,gold,does not notice what they were talking to each other.,pops out his shrugs.,finds space gawking at the end.,\"sits up in bed, her hair dyed bright red.\",3\n7718,anetv_BGHQbw5HZ9Y,11242,A man speaks to several women and plays a game with them. He,A man speaks to several women and plays a game with them.,He,gold,rubs lotions on their butts when he wins and gets a smack when he loses.,continues playing with the dogs while their continuously play around each other's enclosure.,stares contemplatively into the distance.,puff is shown in the background.,0\n7719,anetv_BGHQbw5HZ9Y,9019,A man then plays a game with various girls while rubbing down their bodies. More clips,A man then plays a game with various girls while rubbing down their bodies.,More clips,gold,are shown of people fencing around after the dogs following them along.,are shown of women playing the game and a man putting sunscreen on them.,are shown of people pushing puck and running around shooting paintball with one another.,are shown of people practicing interacting around a bowling game.,1\n7720,anetv_do_AQlxV9SI,12750,A large man is doing behind the neck shoulder presses. He is holding his breath doing them and then he,A large man is doing behind the neck shoulder presses.,He is holding his breath doing them and then he,gold,puts the straight strap on and opens it to join the other bodyguard.,stands up and starts to walk.,leans back down side to side.,raises the baton upwards.,1\n7721,anetv_do_AQlxV9SI,12751,\"He gets back on the bench and does a few more pf the shoulder presses again. Then, he\",He gets back on the bench and does a few more pf the shoulder presses again.,\"Then, he\",gold,twists his legs and pulls his legs back towards us.,presses the mans left knee and paste on the bench against the wall behind his head which fumbles with the whole action.,goes outside and practices spinning and throwing.,moves on to the next line and begins to kick and runs on the jump perfectly.,2\n7722,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19793,\"He gestures with a raised hand. Smiling, someone\",He gestures with a raised hand.,\"Smiling, someone\",gold,raises her right hand towards his mouth then nervously lifts her neck.,looks at the table.,lifts the older men head.,strolls up to him.,3\n7723,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19792,He flings the blue shirts onto a desk and peers down his nose at them. He,He flings the blue shirts onto a desk and peers down his nose at them.,He,gold,\"crosses to another assistant, then closes the door.\",smiles and stares at her.,gestures with a raised hand.,opens the door to someone's house.,2\n7724,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19799,\"Someone fidgets as he tries to get comfortable on a sofa in the spacious white lobby. A tall, slender woman\",Someone fidgets as he tries to get comfortable on a sofa in the spacious white lobby.,\"A tall, slender woman\",gold,lies on her side with her glasses closed behind her back.,steps up with interest and picks up one jacket from under a recliner.,emerges from a lift to find him struggling with the cushion.,comes out of the next door and approaches a collection of streamers.,2\n7725,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19795,\"Back at his apartment, he types on a laptop at his coffee table. Grinning proudly, he\",\"Back at his apartment, he types on a laptop at his coffee table.\",\"Grinning proudly, he\",gold,opens the book and reads it through the technology - in notebook book.,scratches his chin and looks down at a pile of magazines on the table.,selects a photo and returns it to the calendar.,\"stands, picks up his file, and places it together.\",1\n7726,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19796,\"He takes some of someone's promotional literature from the pile and regards it with a grimace. It's Chihuahua, someone\",He takes some of someone's promotional literature from the pile and regards it with a grimace.,\"It's Chihuahua, someone\",gold,glances around the corner.,stares back at him from the page.,picks up the cup as he hits it.,'s someone 'first journey.,1\n7727,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19798,A van sweeps past the Soho Grand Hotel. Someone,A van sweeps past the Soho Grand Hotel.,Someone,gold,soberly ignores her approaching furniture.,holds a sword at his chest.,looks at station startled.,fidgets as he tries to get comfortable on a sofa in the spacious white lobby.,3\n7728,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19797,\"It's Chihuahua, someone stares back at him from the page. He\",\"It's Chihuahua, someone stares back at him from the page.\",He,gold,dials a number on his cell phone.,\"pulls his cigarette from his mouth and sucks through his cigarette, smoking.\",sips the apple and stops to stare at it.,leads it into the act of a toy giant hand.,0\n7729,lsmdc1017_Bad_Santa-7509,2423,\"She pours out a shot for herself as well as someone's. They knock their drinks back, and someone\",She pours out a shot for herself as well as someone's.,\"They knock their drinks back, and someone\",gold,holds the bottle out of her other hand.,laughs without shaking hands.,breathes it out as well as a fresh cigarette of indignant someone on her cheek.,puffs on his cigarette.,3\n7730,lsmdc1017_Bad_Santa-7509,2419,The barmaid comes over to join them and sniffs his empty glass. The barmaid,The barmaid comes over to join them and sniffs his empty glass.,The barmaid,gold,replays his heading for the window.,refills his glass and gives him a sunny smile.,\"is called his french cooking, and approaches the breakfast counter.\",waves his bottle delicately off a blender and answers the door.,1\n7731,lsmdc1017_Bad_Santa-7509,2413,\"Still in his someone suit, someone sits alone at the counter in a bar and lights a cigarette. He\",\"Still in his someone suit, someone sits alone at the counter in a bar and lights a cigarette.\",He,gold,pom himself as he listens to music.,survivor turns to look at him.,opens it to an old woman in the room.,chews some gum and looks resentfully around the bar.,3\n7732,lsmdc1017_Bad_Santa-7509,2425,She nods and looks at his glass. She,She nods and looks at his glass.,She,gold,sways her hips and sings.,moves to the end of the hallway and finds someone and her tired cat.,\"pours him another shot, and then one for herself.\",\"is looking offscreen at someone, listening.\",2\n7733,lsmdc1017_Bad_Santa-7509,2414,He chews some gum and looks resentfully around the bar. He,He chews some gum and looks resentfully around the bar.,He,gold,arrives two rows shots.,takes in the usual collection of festive social drinkers out enjoying a christmas drink.,lets go of a boom looking from the school turret.,is on his coffee table.,1\n7734,lsmdc1017_Bad_Santa-7509,2428,\"And he does, in his beaten up old car. After the festive fornication, someone\",\"And he does, in his beaten up old car.\",\"After the festive fornication, someone\",gold,gives the release of a kick.,leans against the car having a smoke.,watches one of the sweets gifts.,lies on a small table by the bright bedroom window.,1\n7735,lsmdc1017_Bad_Santa-7509,2416,\"He drags on his cigarette and his gaze falls on a bald, goatee - bearded Indian guy giving him the evil eye across the bar. Someone\",\"He drags on his cigarette and his gaze falls on a bald, goatee - bearded Indian guy giving him the evil eye across the bar.\",Someone,gold,lifts a sidewalk outside and heads inside.,draws him to a stop in the crowded courtyard and composes himself.,winds a hand around her human form.,stares back at him.,3\n7736,lsmdc1017_Bad_Santa-7509,2424,\"They knock their drinks back, and someone puffs on his cigarette. She\",\"They knock their drinks back, and someone puffs on his cigarette.\",She,gold,\"regards him a moment, then sits up again.\",gives an uncertain look.,nods and looks at his glass.,turns to someone and her parents.,2\n7737,lsmdc1017_Bad_Santa-7509,2412,\"At the end of the day, someone is sitting in the car park outside the mall as people come out. Someone\",\"At the end of the day, someone is sitting in the car park outside the mall as people come out.\",Someone,gold,gives someone the finger as he walks away across the car park.,fills the picture with a little smile.,\"waves, showing off to go.\",\"comes out of an elevator, holding a clipboard.\",0\n7738,lsmdc1017_Bad_Santa-7509,2421,He knocks back his drink. She,He knocks back his drink.,She,gold,takes a sip of mouthwash and rushes back to the bedroom.,\"comes up to the table, smoking and looking at someone.\",\"frowns, then smiles.\",lifts his arm and saunters in.,2\n7739,lsmdc1017_Bad_Santa-7509,2418,The Indian guy keeps his malevolent gaze on someone and looks away. The barmaid,The Indian guy keeps his malevolent gaze on someone and looks away.,The barmaid,gold,smacks him playfully with his cue cue.,\"signals to their weapons and unscrews the roll of sandwiches, which point open the oven.\",comes over to join them and sniffs his empty glass.,puts his head down.,2\n7740,lsmdc1017_Bad_Santa-7509,2420,The barmaid refills his glass and gives him a sunny smile. He,The barmaid refills his glass and gives him a sunny smile.,He,gold,knocks back his drink.,walks through the downpour.,mumbles in his ear.,\"enters the corridor with two black slips and hands in his pockets, followed by people.\",0\n7741,lsmdc1017_Bad_Santa-7509,2417,Someone stares back at him. The Indian guy,Someone stares back at him.,The Indian guy,gold,raises his head and gives a wink.,emerges and makes his way towards the lip of the market.,keeps his malevolent gaze on someone and looks away.,leads his girlfriend out of the office.,2\n7742,lsmdc1017_Bad_Santa-7509,2422,\"She frowns, then smiles. She\",\"She frowns, then smiles.\",She,gold,pours out a shot for herself as well as someone's.,is timed out.,notices a meter sign on a monitor.,takes her keys from a coffee bag.,0\n7743,lsmdc1017_Bad_Santa-7509,2415,He takes in the usual collection of festive social drinkers out enjoying a Christmas drink. He drags on his cigarette and his gaze,He takes in the usual collection of festive social drinkers out enjoying a Christmas drink.,He drags on his cigarette and his gaze,gold,\"falls on a bald, goatee - bearded indian guy giving him the evil eye across the bar.\",narrows toward the screen.,captures the trident on the table.,lowered over his teach students.,0\n7744,anetv_vLJz4a4NvRI,18628,We see a c emblem screen. We,We see a c emblem screen.,We,gold,shows all the maps and trees standing behind the fence.,see the man continue to deal cards.,see kids working out on tubes.,see an illustration of badminton.,1\n7745,anetv_vLJz4a4NvRI,18626,We see an opening title screen and a man and lady look happy and the lady throws her hands in the air. We,We see an opening title screen and a man and lady look happy and the lady throws her hands in the air.,We,gold,\"a long wildly of slow motion, the lady adjusts it disappointed and zooms into the man above the door.\",see fiery images of the people struggling.,see the closing screen.,see a man dealing blackjack in front of a screen.,3\n7746,anetv_vLJz4a4NvRI,18627,We see a man dealing blackjack in front of a screen. We,We see a man dealing blackjack in front of a screen.,We,gold,see a man at a bar and wearing oversized gear.,see two men drying it in the center.,see a c emblem screen.,\"see a man playing playing racket ball, walking on stage.\",2\n7747,anetv_vLJz4a4NvRI,18629,We see the man continue to deal cards. We,We see the man continue to deal cards.,We,gold,man adds the product to the shoulder of the girls.,see the ending screen.,see the dealer's score.,see the boy playing make gestures.,1\n7748,lsmdc1029_Pride_And_Prejudice_Disk_One-83822,15174,Someone smiles hopefully at someone. She,Someone smiles hopefully at someone.,She,gold,begins massaging his chest.,smiles with a muted smile then takes off.,beams back at him.,\"heaves a roundhouse kick and lunges at one of the tables, inadvertently, then faces the barricade again.\",2\n7749,lsmdc1029_Pride_And_Prejudice_Disk_One-83822,15173,\"As someone takes someone's arm, and someone is escorted away by someone. Someone\",\"As someone takes someone's arm, and someone is escorted away by someone.\",Someone,gold,stands and hands the baby to someone.,reaches the end of his bed and continues reading.,smiles hopefully at someone.,\"pauses and blinks, then sips.\",2\n7750,anetv_oEZToisRw4w,389,\"Various women are seen walking around with shot puts in their hands followed by more shots of athletes walking around, throwing the ball, and waving to the crowd. The video\",\"Various women are seen walking around with shot puts in their hands followed by more shots of athletes walking around, throwing the ball, and waving to the crowd.\",The video,gold,transitions into people kids playing cricket as well as scoring and cheering with one another.,ends with the closing credits shown on the screen.,continues on with several different shots of female athletes throwing shot puts as well as cheering to the crowd and moving around.,ends with a close up of a man.,2\n7751,anetv_iRwRwpVLE_Y,14344,The girl interacts with some containers of ingredients on the table. The girl,The girl interacts with some containers of ingredients on the table.,The girl,gold,mixes the lemonade in measuring cup.,organize and moves them in on her back.,teaches the lady how to use the slat staring.,mixes the ingredients into a bowl with the camera looking down from a top down view.,3\n7752,anetv_iRwRwpVLE_Y,14348,An adult man walks into the screen and tastes something from the table. The girl,An adult man walks into the screen and tastes something from the table.,The girl,gold,walks to the slide and starts playing the bag.,tastes something from the table.,stops eating ice cream cone.,takes a pacifier to himself and begins to play in a pot.,1\n7753,anetv_iRwRwpVLE_Y,14345,The girl mixes the ingredients into a bowl with the camera looking down from a top down view. The girl,The girl mixes the ingredients into a bowl with the camera looking down from a top down view.,The girl,gold,adds oats into the bowl an mixes it.,folds another section of the board right into the pan.,puts on one flat of a box and pours soda again into a glass.,taking the pan at a bowl of stirred together with a sugar bowl with pasta.,0\n7754,anetv_iRwRwpVLE_Y,14343,The girl talks some more. The girl,The girl talks some more.,The girl,gold,walks behind her gloved hands to an older man.,dismounts from the pole.,plays a curling game.,interacts with some containers of ingredients on the table.,3\n7755,anetv_iRwRwpVLE_Y,14342,The girl adds a series of ingredients into a mixing bowl. The girl,The girl adds a series of ingredients into a mixing bowl.,The girl,gold,mixes ingredients into the bowl of baking.,puts a piece of lemon in the bowl.,mixes the content of the bowl.,adds ingredients into the lemons.,2\n7756,anetv_iRwRwpVLE_Y,19092,She mixes the ingredients together and an older man comes in to taste test the balls she rolled. The girl,She mixes the ingredients together and an older man comes in to taste test the balls she rolled.,The girl,gold,takes a bite as well while continuing to smile and laugh to the camera.,peels all the colors of dough and sticks all under the cookies until she finishes eating.,puts her lemons into a cookie and pierces the dough.,demonstrates several ups bobby extensions.,0\n7757,anetv_iRwRwpVLE_Y,19091,A young girl is seen speaking to the camera and leads into her pouring out ingredients into a bowl. She mixes the ingredients together and an older man,A young girl is seen speaking to the camera and leads into her pouring out ingredients into a bowl.,She mixes the ingredients together and an older man,gold,comes in to taste test the balls she rolled.,approaches while many small bottles sit on the counter.,brings the food and puts it in her pocket.,uses lunch to cover up more ingredients she is sharing them to then cuts them off.,0\n7758,anetv_iRwRwpVLE_Y,14346,The girl adds oats into the bowl an mixes it. The girl,The girl adds oats into the bowl an mixes it.,The girl,gold,mixes the pasta together with a spoon.,peels the eggs from it.,talks while wandering back and forth near the bowl.,stirs the layers with food.,2\n7759,anetv_iSHPVCBsnLw,9921,Two men are seen sitting on a couch watching tv and speaking back and fourth to one another. Another walks into frame speaking and holding a drink and the two men,Two men are seen sitting on a couch watching tv and speaking back and fourth to one another.,Another walks into frame speaking and holding a drink and the two men,gold,continue playing with one another.,continue speaking to one another.,play a guitar while wearing boxing clothes.,mock each other while several people watch on the side.,1\n7760,anetv_SOyOank50IY,19034,We see an opening screen on black. We,We see an opening screen on black.,We,gold,see two girls and a woman talking to one another as we continue skating all over the accordian.,see a man and woman washing dishes and talking.,see the four shots.,\"see kids face from the snow, in a clothes in the hallway getting ready to go in.\",1\n7761,anetv_SOyOank50IY,19039,\"We see them from a darker, higher camera. We\",\"We see them from a darker, higher camera.\",We,gold,see the passageway where the lady's unsolved rubik takes.,\", someone comes up behind someone in the dining room.\",see jungle gym with the kind of scuba riding.,see them from the higher camera again.,3\n7762,anetv_SOyOank50IY,19036,An image of a lady pops up on the screen. We,An image of a lady pops up on the screen.,We,gold,see the camera with a hundred characters.,see a title screen and a title screen.,see the ladies image again.,see a person shake the ball with a rag.,2\n7763,anetv_SOyOank50IY,19035,We see a man and woman washing dishes and talking. An image of a lady,We see a man and woman washing dishes and talking.,An image of a lady,gold,washes them with both hands.,is seen followed by a woman in a bathtub.,pops up on the screen.,is a product and transitions into a man washing dishes on the sink.,2\n7764,anetv_SOyOank50IY,19038,The lady pops up in the subtitles. We,The lady pops up in the subtitles.,We,gold,thanks with her final.,see the dollop holes of the roof and brick wall.,see the bunny body again.,\"see them from a darker, higher camera.\",3\n7765,lsmdc1046_Australia-90879,9618,Someone watches his arrival from the verandah. He,Someone watches his arrival from the verandah.,He,gold,sets his briefcase down.,marches out to someone.,\"stops his horse, checks his herd, then gallops off.\",\"is a young dancer suspiciously stunned, giggling.\",2\n7766,lsmdc1046_Australia-90879,9619,\"She wakes up in bed, frowns and then looks across at someone lying next to her and smiles, running a hand down his bearded cheek. She\",\"She wakes up in bed, frowns and then looks across at someone lying next to her and smiles, running a hand down his bearded cheek.\",She,gold,\"ignores the grieving off, looking at her eyes.\",\"runs a hand down his hairy, muscular chest.\",\"his head gracefully, he lets her go, giving her a determined gaze.\",tears out her cheeks.,1\n7767,lsmdc1046_Australia-90879,9617,Someone stands up on top of a water tower. Someone,Someone stands up on top of a water tower.,Someone,gold,watches his arrival from the verandah.,stands up and lets someone fall into the pool.,turns to look out the water.,grabs his camera from the top.,0\n7768,lsmdc1046_Australia-90879,9615,Someone comes slowly back into the room. Someone,Someone comes slowly back into the room.,Someone,gold,turns anxiously to her.,is been right up into the living room as someone walks down a hall.,takes out another record.,stares at his reflection.,0\n7769,lsmdc1046_Australia-90879,9614,She frowns as he leaves. Someone,She frowns as he leaves.,Someone,gold,comes slowly back into the room.,shrugs his brow vigorously.,hesitates abruptly and withdraws her hand.,joins his parents in a seat.,0\n7770,lsmdc1046_Australia-90879,9620,\"She runs a hand down his hairy, muscular chest. A wild horse\",\"She runs a hand down his hairy, muscular chest.\",A wild horse,gold,\"is ridden, bucking, around a training ring.\",prepares to scoop up branches before someone steals someone.,reaches out and buries his face with his eyes.,\"poised in his palm, looking up at the figure he has moved over the light.\",0\n7771,anetv_zwQYVBQnn4o,11305,\"Then another man does the same thing and he lifts it successfully. When he's done, someone\",Then another man does the same thing and he lifts it successfully.,\"When he's done, someone\",gold,\"trips over his head, causing him to fall steadily.\",comes on stage and gives him a hug.,levitates over sides of the tents and darts through with the ball.,walks onboard.,1\n7772,anetv_zwQYVBQnn4o,11306,\"When he's done, someone comes on stage and gives him a hug. He\",\"When he's done, someone comes on stage and gives him a hug.\",He,gold,is then given a medal.,falls into the middle of a grassy park.,dashes off from the door and carries his briefcase into the dining room.,stops drinking a drink.,0\n7773,lsmdc1011_The_Help-78584,4674,\"With a sigh, someone sits down on the chair someone has set out for her. Someone gently\",\"With a sigh, someone sits down on the chair someone has set out for her.\",Someone gently,gold,\"places his hands on his table lip, waits after they come out.\",spreads her father's contemplative gaze.,swallows the ordered dish.,dabs the cut with a cloth.,3\n7774,anetv_sOL5ksIFX50,9088,Curlers ar shown as they take different shot and sweep down the ice. The video,Curlers ar shown as they take different shot and sweep down the ice.,The video,gold,pans to different variations of the girl seen talking while showing off her bottle and occasionally talking.,ends with the closing credits and graphics.,begins with more shots of shows and the girls laughing followed by drumsticks and speaking to one another.,is completed when a man in the back starts shining the shoe around the top of a bush.,1\n7775,anetv_sOL5ksIFX50,9087,An introduction comes onto the screen for a video about the winter sport curling. Curlers ar,An introduction comes onto the screen for a video about the winter sport curling.,Curlers ar,gold,at an outdoor gym using and clone work hammer and social media effects.,shown as they take different shot and sweep down the ice.,tied back and neatly and in various scenes.,poured on a counter.,1\n7776,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33554,15874,They're in a cafe. She,They're in a cafe.,She,gold,comes to a halt at a shabby brick house.,kicks her hand off the counter.,gives an unnerved look.,walks over to herself.,2\n7777,lsmdc3068_THE_BIG_YEAR-3693,19009,He smiles as he gazes at the photo. His father,He smiles as he gazes at the photo.,His father,gold,\"moves to the center of his office, his hands tucked in the pockets.\",gives him a thoughtful look.,wipes tears from her eyes.,is reading earlier in the hall.,1\n7778,lsmdc3068_THE_BIG_YEAR-3693,19011,Someone drinks from a canteen as he waits on a rocky mountainside. He,Someone drinks from a canteen as he waits on a rocky mountainside.,He,gold,hurries after the sound.,passes the supper as someone enters the arena and pads towards the tower.,mounts the boat's prow and gestures to gait.,runs out quickly until him collapses.,0\n7779,lsmdc3068_THE_BIG_YEAR-3693,19010,His father gives him a thoughtful look. Someone,His father gives him a thoughtful look.,Someone,gold,drinks from a canteen as he waits on a rocky mountainside.,kneels to pick up the grimhold.,\"holds the roll check, then gives the seasoned look.\",lifts his head and points it at the puritan woman.,0\n7780,anetv_Ckkf840HZE4,16453,A man is seen riding around on the water wake boarding behind a boat. The man,A man is seen riding around on the water wake boarding behind a boat.,The man,gold,is shown in several clips performing a trick with camera affects point to his movements.,walks away and speaks to the camera while he talks.,continues skateboarding in an evening area and is performing back and fourth.,continuously waves with his hands and ends by stopping to split the two.,0\n7781,anetv_Ckkf840HZE4,16454,The man is shown in several clips performing a trick with camera affects point to his movements. The man,The man is shown in several clips performing a trick with camera affects point to his movements.,The man,gold,continues to ride around on the board while text appears to give instructions.,resets his hands and ends by adjusting his heel stand.,ends the javelin and gets point to a trainer and the older man stands in the middle and perform several other tricks with the players,then begins diving and across the grass and picks up a camera.,0\n7782,lsmdc3023_DISTRICT_9-10934,1876,He ducks lower into the grass as the truck pulls out of the clearing. He,He ducks lower into the grass as the truck pulls out of the clearing.,He,gold,\"finishes, pulls the trunk off the steering wheel and takes a seat.\",sees someone approaching and stands.,\"stands, gazes out of the city, then hurries away.\",runs through the house.,2\n7783,lsmdc3023_DISTRICT_9-10934,1871,\"Someone stands on a hill, using the stolen phone. He\",\"Someone stands on a hill, using the stolen phone.\",He,gold,strolls obliviously at someone.,hangs up with a frustrated look.,swings the key in the tire and flips it open.,stares in horror as the bandages fall around him.,1\n7784,anetv_NQyAC1aweec,10626,A cat is shown close up with a person's hand cutting the nails on the cat. The person,A cat is shown close up with a person's hand cutting the nails on the cat.,The person,gold,is then shown thoroughly and pets the cat's nails.,continuously claws one another.,shakes the cat's nail with the cat and continues clipping the cat's nails.,continues cutting the claws while the cat attempts to get up several times.,3\n7785,anetv_aCknCFmU0sA,17200,A man is seen looking to the camera holding up a brush. The man then,A man is seen looking to the camera holding up a brush.,The man then,gold,begins brushing his hair all along the sides.,begins to shave his beard while speaking.,begins moving his feet up and down.,begins shaving the razor while pointing.,0\n7786,anetv_aCknCFmU0sA,7299,The man brushes his hair all around while still looking down at the camera. The man,The man brushes his hair all around while still looking down at the camera.,The man,gold,picks up the rag then dips the brush onto the bucket and demonstrates how to properly brush it.,turns around to finish brushing his hair and ends by waving to the camera.,continues wiping snow off the ski as well as cleaning it up and speaking to the camera.,finishes by picking up the product.,1\n7787,anetv_aCknCFmU0sA,7298,A man with long hair is seen looking at the camera and begins brushing his hair. The man,A man with long hair is seen looking at the camera and begins brushing his hair.,The man,gold,brushes his hair all around while still looking down at the camera.,then begins brushing his hair as well as speaking to the camera.,continues brushing the woman's hair as well as pushing him off.,walks out of the bathroom and shows shaving of his hair and speaking to the camera then holds it up.,0\n7788,anetv_aCknCFmU0sA,17201,The man then begins brushing his hair all along the sides. He,The man then begins brushing his hair all along the sides.,He,gold,looks off into the distance and continues walking back to the camera.,speaks to his horse as well with others and movements.,turns around to show the back and continues brushing and waves.,begins getting it all shaved again and ends up pausing.,2\n7789,anetv_uqiMw7tQ1Cc,2715,A weight lifting tutorial is given. The coach,A weight lifting tutorial is given.,The coach,gold,explains the instructions stepper exercises.,helps the guy in red with the proper body placement and lifting technique.,explains the techniques of weightlifting equipment.,demonstrates how to make different technique.,1\n7790,anetv_uqiMw7tQ1Cc,16108,\"One man is holding onto a rope attached to a machine, and the other man instructs him to bend down on his left knee while still holding onto the rope and he showing the man how to have proper form. The man then instructs the man holding the rope to pull the row down a few times and he\",\"One man is holding onto a rope attached to a machine, and the other man instructs him to bend down on his left knee while still holding onto the rope and he showing the man how to have proper form.\",The man then instructs the man holding the rope to pull the row down a few times and he,gold,'s talking the whole time.,circles it all for his body and moves back towards the other others.,stops and jumps up and looks at it in his hand.,amounts on the rope he's able.,0\n7791,anetv_3YdmY4oPE5s,11098,A small group of people are seen standing around a field when one lady hits a ball. The people,A small group of people are seen standing around a field when one lady hits a ball.,The people,gold,play more games with the ball to frame the players.,hold the ball and throw the ball down at the end.,cheer as the audience cheers at the end.,continue playing crochet on the lawn while walking around.,3\n7792,anetv_qp9OcGPufEc,14149,The man performs tricks with the dog while the dog jumps on his back. He,The man performs tricks with the dog while the dog jumps on his back.,He,gold,continues to roam around with the dog performing tricks with the dog and frisbee.,continues rolling the dog up in it with his frisbee.,man gets in the snow and runs to dog.,continues walking around with another dog.,0\n7793,anetv_qp9OcGPufEc,14148,A dog is seen running around a man in the middle of an open field. The man,A dog is seen running around a man in the middle of an open field.,The man,gold,performs tricks with the dog while the dog jumps on his back.,follows his horse around with more dogs catching people.,bends down and throws the frisbee into another area.,bend down the right with a frisbee and skate around behind it.,0\n7794,anetv_uyzQkTArIwU,7182,One man in blue pants joined the dance then the other man went off the stage. One man will join the dance and then other man,One man in blue pants joined the dance then the other man went off the stage.,One man will join the dance and then other man,gold,\"turns and walked, and they started dancing.\",will get off the stage.,started to dance during a dance.,picks a harmonica off the ground.,1\n7795,anetv_uyzQkTArIwU,7181,Two men are playing kick dance at the center of the circle. One man in blue pants joined the dance then the other man,Two men are playing kick dance at the center of the circle.,One man in blue pants joined the dance then the other man,gold,approaches to shuffle them.,walks over to a red solo ball.,put their leg on the next stage.,went off the stage.,3\n7796,anetv_uyzQkTArIwU,4002,A large group of people are seen sitting around a circle when two men perform kicks and tricks around one another. More people,A large group of people are seen sitting around a circle when two men perform kicks and tricks around one another.,More people,gold,are shown running around around them performing and sitting on a punching background interviewing one another.,jump up and eventually run by while others still watch him.,are shown running down the mountain and kicking and waving for the camera.,enter the circle pit and transition with one another still performing various flips and kicks around one another.,3\n7797,anetv__f0S0vQZ9JM,4323,The people then begin mixing ingredients with one another and speaking to one another. The people,The people then begin mixing ingredients with one another and speaking to one another.,The people,gold,speak to one another while mixing food and others them in the end.,continue mixing drinks with one another and presenting them to the camera.,ride in on the objects as well as ash and the food.,run all around the area while walking around and playing one more time with one another.,1\n7798,anetv__f0S0vQZ9JM,4322,Two people are seen speaking to the camera followed by several drinks laid out. The people then,Two people are seen speaking to the camera followed by several drinks laid out.,The people then,gold,begin mixing ingredients with one another and speaking to one another.,begin playing another game of volleyball and ends by putting it out.,speak to one another while and show more shots of the people and resumes knitting.,begin dancing and warming gifts while others watch on the side.,0\n7799,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61302,6726,\"A small party of orcs and uruk - hai heading down the stairs from the watch tower. shagrat leads the uruk - hai, and someone leads the orcs. Someone\",\"A small party of orcs and uruk - hai heading down the stairs from the watch tower. shagrat leads the uruk - hai, and someone leads the orcs.\",Someone,gold,grabs his hat free and grabs his police car.,spies someone's body.,\"snap back and place, trying to keep their grip on the shield.\",supports someone on hand.,1\n7800,anetv_kShrO0yutUQ,17567,The man unlatches a bikes brake cable. The man,The man unlatches a bikes brake cable.,The man,gold,gets four bike and swings it.,takes the back wheel of a bike off of the frame.,works on thick rope.,gets rock and twists of a rider before doing tricks.,1\n7801,anetv_kShrO0yutUQ,17569,The man uses wrenches to looses a nut on the back wheel axle. The man,The man uses wrenches to looses a nut on the back wheel axle.,The man,gold,bends to raise the handlebars and starts to cut off the bike.,puts the back wheel back on the chain and locks the axle into place.,goes to the window and picks up the gas nozzle and throws it into the blue seat.,takes off his roller and drops the heavy pole.,1\n7802,anetv_kShrO0yutUQ,17568,The man takes the back wheel of a bike off of the frame. The man,The man takes the back wheel of a bike off of the frame.,The man,gold,uses the handle and jumps the seat and into the car.,uses wrenches to looses a nut on the back wheel axle.,cleans the door aggressively.,zooms the ax down the lane of small logs.,1\n7803,anetv_kShrO0yutUQ,12583,Oregon daily emerald logo and title card pops up. The word bike,Oregon daily emerald logo and title card pops up.,The word bike,gold,is overlaid on a mountain scene.,print let appears on the screen.,lies past a building in the empty below.,is in the center of the gym is shown.,0\n7804,anetv_kShrO0yutUQ,17566,A man stands in front of a display of bikes. The man,A man stands in front of a display of bikes.,The man,gold,unlatches a bikes brake cable.,gets to a low parallel track and shine basketball around it.,works at the top of a bike.,cleans up red paper shovel.,0\n7805,anetv_kShrO0yutUQ,12584,The word bike is overlaid on a mountain scene. Repair,The word bike is overlaid on a mountain scene.,Repair,gold,continues running back and forth on a wet dirt trail on a dirt road.,appears on screen with a man in a bathroom bullfighting and talking.,see a man walking through one of the cars.,\"is then overlaid under bike, becoming bike repair.\",3\n7806,anetv_kShrO0yutUQ,17570,The man puts the back wheel back on the chain and locks the axle into place. The man,The man puts the back wheel back on the chain and locks the axle into place.,The man,gold,latches the brake cable back into place.,stops the introductions and finishes precisely with the final product before moving it out of the driveway.,\"uses the tools to scrape dirt from it, and then returns to object the damaged roof.\",then shakes one move to the metal and grinds it into the bike.,0\n7807,anetv_CiCNA-Nr1QQ,14588,\"The man grabs the ball from the return and holds the ball and stands there for a while staring down the lane, and when he finally rolls it he makes a strike. When the strike is over, it then\",\"The man grabs the ball from the return and holds the ball and stands there for a while staring down the lane, and when he finally rolls it he makes a strike.\",\"When the strike is over, it then\",gold,goes down to big bit of the knife grabbing in the hand of the man.,\"throws it and hits it down, then grabs the ball, as an audience chases this time.\",leaves and lands on the wall for the crowd.,replays in slow motion.,3\n7808,lsmdc3062_SORCERERS_APPRENTICE-30792,10073,\"He eyes someone with a furrowed brow, then springs up and hurries after her. Someone and someone\",\"He eyes someone with a furrowed brow, then springs up and hurries after her.\",Someone and someone,gold,hurry away and follow him.,enter a subway station.,share a faint smile.,step up onto a platform.,1\n7809,anetv_BOOX9aGlSEs,7590,The man jumps into the snow and are skiing down a snowy slope. people,The man jumps into the snow and are skiing down a snowy slope.,people,gold,are riding bmx bikes under a very pile of snow.,are snowboarding down a snowy mountain hill.,\"are skiing down the hill of snow covered mountains, going into the snow.\",sit at the front of the hill as they walk on to snowboard.,1\n7810,anetv_BOOX9aGlSEs,7589,People are siting on cabins above a snowy hill. the man,People are siting on cabins above a snowy hill.,the man,gold,is teaching a truck to swing on a car that runs behind the car.,pass the horse and get standing in the dirt.,is flying in the snow with a snow shovel.,jumps into the snow and are skiing down a snowy slope.,3\n7811,anetv_BOOX9aGlSEs,215,The rider is still and starts skiing again. The skier,The rider is still and starts skiing again.,The skier,gold,repeats low until six glancing on the tracks.,rocks back and forth from the truck.,passes a person laying in the snow.,is helping his kayak.,2\n7812,anetv_BOOX9aGlSEs,217,The skier has stopped and starts skiing again. The skier,The skier has stopped and starts skiing again.,The skier,gold,goes off through the high water.,\"go up twice, then solves again.\",flips in slow motion.,does several flips and down in red sand.,2\n7813,anetv_BOOX9aGlSEs,214,The rider skis and goes of ramps as he skis. The rider,The rider skis and goes of ramps as he skis.,The rider,gold,falls and ski slope.,falls over the boat.,is still and starts skiing again.,stands on ropes in a shower and ties up the motorcycle.,2\n7814,anetv_BOOX9aGlSEs,216,The skier passes a person laying in the snow. The skier,The skier passes a person laying in the snow.,The skier,gold,continues to wipe down the camera while grabbing the shovel.,has stopped and starts skiing again.,gets into water on the river.,goes down a hill from behind.,1\n7815,anetv_BOOX9aGlSEs,213,Men wait and then ride the ski lift while talking to the camera. The men,Men wait and then ride the ski lift while talking to the camera.,The men,gold,drives the bike down the street.,demonstrate snowboarding and snowboarding.,go rafting and cheer from the camera to the class.,are off the lift and at the top of the hill.,3\n7816,anetv_BOOX9aGlSEs,218,The skier flips in slow motion. We,The skier flips in slow motion.,We,gold,see the attachment lady next to her.,see a person jump a ramp on their skis.,see the lady in the bathroom.,watch the dog beam in slow motion.,1\n7817,anetv_1KKVWzCwRSA,832,Many different people are in the background watching and doing different things in the snow. The man that were falling,Many different people are in the background watching and doing different things in the snow.,The man that were falling,gold,is another swimmer on the beach went to the rock.,comes in a van where other men do flips.,give up and stay in a sitting position.,is still crying in the background nod.,2\n7818,anetv_1KKVWzCwRSA,831,\"Several different men are seen trying to snow board but, falling down over and over. Many different people\",\"Several different men are seen trying to snow board but, falling down over and over.\",Many different people,gold,\"are shown in the end, flipping and kicking out a set of things.\",are then seen bmx cars all around a track.,walk in and out when one walks off to the side.,are in the background watching and doing different things in the snow.,3\n7819,anetv_l8aaaDY4ehA,13003,He stands on the stairs to mow. It,He stands on the stairs to mow.,It,gold,switches to a woman mowing.,- blistered someone speaks through a stony dwarf graffiti.,goes on with his lawn mower as he goes in the light on the cylinder.,walks behind him holding an ax.,0\n7820,anetv_l8aaaDY4ehA,13004,It switches to a woman mowing. It,It switches to a woman mowing.,It,gold,a tree in the corner line of trees.,walks forward and bumps.,sit at the couch.,goes back to the man mowing.,3\n7821,anetv_l8aaaDY4ehA,13005,It goes back to the man mowing. The man,It goes back to the man mowing.,The man,gold,runs down a swinging lawn and lawn at a tree and running in circles.,glides on and turns the mower back to the tree.,puts the mower in the shed and goes into the house.,takes a comb off his helmet and removes his hand with orange and gold color.,2\n7822,anetv_l8aaaDY4ehA,13002,We see a man mowing a lawn. He,We see a man mowing a lawn.,He,gold,is holding a leaf blower.,laughs and tugs at the calf.,walks to the top of the camel and sit down in front of a damage area.,stands on the stairs to mow.,3\n7823,anetv_ZTtPztql5jM,7665,Many people are in the stands. Several athletes,Many people are in the stands.,Several athletes,gold,are pulling out the rope.,are seen running a marathon.,jump dramatically on the beach.,stand in the arena.,3\n7824,anetv_ZTtPztql5jM,7666,Several athletes stand in the arena. The athletes,Several athletes stand in the arena.,The athletes,gold,go inside each one and stand at the end of the competition.,moves through a pit and onto a mat.,track around a track.,throw discs on the field.,3\n7825,anetv_ZTtPztql5jM,7664,Rain falls on a large auditorium. Many people,Rain falls on a large auditorium.,Many people,gold,are in the stands.,\"are watching, hundreds its feet being loaded, etc.\",set up liquors and countries and their miniature medals.,arrive in a hole.,0\n7826,anetv_bpB0GiH6uDw,19176,A rack of tools is shown followed by a man pulling the items off and a close up of a lawn mower. The person,A rack of tools is shown followed by a man pulling the items off and a close up of a lawn mower.,The person,gold,swings around and then uses a paintbrush to warm the new wallpaper in the paint.,continues cutting the grass and ends by having dogs on his lawn and walking away with a toy.,rides the camel while the camera captures girl movements.,continues to ride off the dirt bike.,1\n7827,anetv_bpB0GiH6uDw,1033,\"He walks up and down his entire lawn, pushing his lawn mower as he cuts the grass. He\",\"He walks up and down his entire lawn, pushing his lawn mower as he cuts the grass.\",He,gold,stops beside a toddler.,tracks his feet as he goes.,walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass.,takes hold of his brush and turns to them.,2\n7828,anetv_bpB0GiH6uDw,1032,He brings out the lawn mowing equipment from his garage and begins mowing the lawn. He,He brings out the lawn mowing equipment from his garage and begins mowing the lawn.,He,gold,\"walks up and down his entire lawn, pushing his lawn mower as he cuts the grass.\",slowly pulls out a piece of lumber.,continues to make the lawn basket as he prepares to lay round the lawn.,rides a lawn mower on the sandy grass around the yard and he goes over to the lawn.,0\n7829,anetv_bpB0GiH6uDw,1034,\"He walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass. After he's done mowing, he\",He walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass.,\"After he's done mowing, he\",gold,uses some grass to cut out the paper.,jumps off the tree and walks back to the yard.,plays with his two black and white dogs in his backyard.,is never donning the toy mower.,2\n7830,anetv_bpB0GiH6uDw,1031,There's a man in a green shirt mowing his lawn with a lawn mower. He,There's a man in a green shirt mowing his lawn with a lawn mower.,He,gold,finds a small parcel and continues to throw it on the lawn mower.,is riding on a lawn mower and jumping up.,brings out the lawn mowing equipment from his garage and begins mowing the lawn.,looks back around with the lawn mower.,2\n7831,anetv_TrRsujPlt5w,161,An elderly man is using an elliptical trainer inside a gym. He,An elderly man is using an elliptical trainer inside a gym.,He,gold,shows an event to a man and does tricks.,\"sits on a tightrope, high and traditional, suspended over the bars.\",pedals and pushes back and forth as he talks to the person with the camera.,is embarrassed and stands on the edge as he starts doing crunches.,2\n7832,lsmdc1001_Flight-71933,14890,\"He finds it stocked with juices and nonalcoholic beverages. Later, he\",He finds it stocked with juices and nonalcoholic beverages.,\"Later, he\",gold,shakes them out again.,exits a car with a painted maroon and green hide.,arrives at the edge of the ring.,eats a meal alone in his room.,3\n7833,lsmdc1001_Flight-71933,14896,He gets out of bed and goes to a side door. He,He gets out of bed and goes to a side door.,He,gold,rummages through an elegant mini - faded letter.,tries to move the furniture free of his bedroom as he sprints up the stairs and goes upstairs.,\"holds his ear to it, then pulls it open.\",is carrying a box of products on a brawny case and closes the box.,2\n7834,lsmdc1001_Flight-71933,14894,He looks around for the source of the knocking. Lying in bed he,He looks around for the source of the knocking.,Lying in bed he,gold,is awakened by the same sound.,scratched in his tail.,pulls out his wand.,runs his fingers through his drum.,0\n7835,lsmdc1001_Flight-71933,14898,A plane's beacon lights flash in the night sky. Someone turns around and his eyes,A plane's beacon lights flash in the night sky.,Someone turns around and his eyes,gold,land boldly to the left.,fall on a fridge.,\"widen, as he approaches sailboat waterfalls.\",dart at the street.,1\n7836,lsmdc1001_Flight-71933,14899,Someone turns around and his eyes fall on a fridge. He,Someone turns around and his eyes fall on a fridge.,He,gold,sees a coughing colleague shooting an arranged round.,\"taps the wooden desk, then holds her arm.\",rests his head on the boy's hands.,opens the door to reveal rows of miniature bottles of alcohol on the shelves.,3\n7837,lsmdc1001_Flight-71933,14889,Someone looks around the spacious room. He,Someone looks around the spacious room.,He,gold,shifts over her shoulder then walking.,turns to the red stained wet door and looks out.,picks up a can of coke and goes over to the fridge.,sits side by side in front of her.,2\n7838,lsmdc1001_Flight-71933,14895,Lying in bed he is awakened by the same sound. He,Lying in bed he is awakened by the same sound.,He,gold,gets out of bed and goes to a side door.,fetches drawers it spreads out at a radiator.,\"crouches underneath the couch, then begins to slip.\",makes his way back to the suite and collects the pages.,0\n7839,lsmdc1001_Flight-71933,14892,He sits over the toilet smoking as the bath fills. The clock,He sits over the toilet smoking as the bath fills.,The clock,gold,gives the topless woman a different part of the shoulder haircut.,continues on the pantry area.,has been hammered up.,shows 2.,3\n7840,lsmdc1001_Flight-71933,14897,Someone walks over and gazes at the skyline. A plane's beacon lights,Someone walks over and gazes at the skyline.,A plane's beacon lights,gold,glow in the dark sky above the sunken crater.,flash in the night sky.,illuminate the dimly lit hallway.,glide down the middle over the water.,1\n7841,lsmdc1001_Flight-71933,14891,\"Later, he eats a meal alone in his room. He\",\"Later, he eats a meal alone in his room.\",He,gold,stands with a picnic basket in front of himself.,stands in a bathroom with the rest of his team.,tilts his head furtively and spits a light.,lies in bed surfing channels on the tv.,3\n7842,lsmdc1001_Flight-71933,14893,The clock shows 2. 08 am as he hangs a suit in a wardrobe. He,The clock shows 2. 08 am as he hangs a suit in a wardrobe.,He,gold,wears an electric t in one cuff.,looks around for the source of the knocking.,\"wraps the iron, silver letter in his hand.\",\"slides up his hairy, weighted balls on his shoulders and shifts his gaze over the farmhouse.\",1\n7843,anetv_jdfe-CV_cpE,1094,He sits down and gets his hair cut. He,He sits down and gets his hair cut.,He,gold,is sleeping in the chair.,flips the paper in the sink.,goes to an end.,sticks the trumpet to the back of the dock.,0\n7844,anetv_jdfe-CV_cpE,1096,Him and the man start fighting. The man,Him and the man start fighting.,The man,gold,watches a movement and holds up his hands.,is laughing with the weight while they fight.,lifts his head and throws it on the floor.,pulls a gun and points it at the other man.,3\n7845,anetv_jdfe-CV_cpE,1093,A man gets up and walks into a barber shop. He,A man gets up and walks into a barber shop.,He,gold,puts the machine near the circles.,sits down and gets his hair cut.,starts to solve a rubik's cube.,\"is holding two dogs and smiles, occasionally combing his hair.\",1\n7846,anetv_jdfe-CV_cpE,1097,The man pulls a gun and points it at the other man. He runs into another mans arms and they,The man pulls a gun and points it at the other man.,He runs into another mans arms and they,gold,are shown in several shots.,bring him back to the table.,go across in the field.,walk out the door.,3\n7847,anetv_jdfe-CV_cpE,1095,He is sleeping in the chair. He,He is sleeping in the chair.,He,gold,goes along a wall.,wakes up and looks in a mirror.,hangs around and walks across the room.,slowly turns back to the bucket and begins taking care.,1\n7848,anetv_jdfe-CV_cpE,1092,Three men sit together on a couch. A man,Three men sit together on a couch.,A man,gold,lifts a bar with another tool.,gets up and walks into a barber shop.,stretches on a ring extremely far.,fixes weights on other person's necks.,1\n7849,anetv_QEfXMtnI6rw,11964,The man also holds up a razor and begins writing on the paper. The man,The man also holds up a razor and begins writing on the paper.,The man,gold,is then seen shaving his face and ending with credits.,continues cutting several sides and further palms along with the hr brush.,removes the jacket while still speaking.,looks around the page and leads into a man speaking to the camera.,0\n7850,lsmdc0033_Amadeus-67091,2808,Someone is asleep in the bed. Someone,Someone is asleep in the bed.,Someone,gold,awakes in his seat.,sits with someone at the door.,makes a call.,is dozing on the nearby child's bed.,3\n7851,lsmdc0033_Amadeus-67091,2806,\"It is as disordered as before, save that the table, previously littered with pages, is now completely bare. Someone\",\"It is as disordered as before, save that the table, previously littered with pages, is now completely bare.\",Someone,gold,looks at it with surprise and enters the bedroom.,jogs behind the door far enough to the opposite location.,\"sits upon the wheel, waiting directly for the woman.\",walks over to comfort him.,0\n7852,lsmdc0033_Amadeus-67091,2805,The child's bed is obviously too small for him and he is forced in to a cramped position. People,The child's bed is obviously too small for him and he is forced in to a cramped position.,People,gold,arrive at the door.,\"plug his headphone, head up, ron county shows someone's throat.\",are seen dancing in the bathroom.,\"spin around until both fall, then belly down and spin.\",0\n7853,lsmdc0033_Amadeus-67091,2807,Someone looks at it with surprise and enters the bedroom. Someone,Someone looks at it with surprise and enters the bedroom.,Someone,gold,\"smiles at someone, then vanishes.\",\"climbs up and straddles someone, but does n't rush to him.\",is asleep in the bed.,opens a front door and watches his ransacked roommate in bed.,2\n7854,lsmdc0033_Amadeus-67091,2804,Someone lies across from him on someone's small bed in his shirt sleeves and waistcoat. The child's bed is obviously too small for him and he,Someone lies across from him on someone's small bed in his shirt sleeves and waistcoat.,The child's bed is obviously too small for him and he,gold,has instantly stopped his eyelids.,is forced in to a cramped position.,is a much younger than his age boy.,can see their fingers grow up and writer grins at the neighboring clapping.,1\n7855,lsmdc0033_Amadeus-67091,2803,\"Someone lies asleep in the bed, holding the last pages of the manuscript. Someone\",\"Someone lies asleep in the bed, holding the last pages of the manuscript.\",Someone,gold,kisses the people on her back.,lies across from him on someone's small bed in his shirt sleeves and waistcoat.,hangs over the police and read the book.,\"turns, sees someone come in.\",1\n7856,anetv_IytPbGtfo14,6348,The lady adds some red stuff. The lady,The lady adds some red stuff.,The lady,gold,shows off her nails.,puts detergent into a glass of it.,adds ingredients into a cup.,holds the glass and smiles.,3\n7857,anetv_IytPbGtfo14,6346,The lady pours other stuff in and shakes it. The lady,The lady pours other stuff in and shakes it.,The lady,gold,pours the pours the drink into a glass.,pulls the juice out of the oven.,adds the presenter and fruits to the site.,takes the baby down and continues the dishes.,0\n7858,anetv_IytPbGtfo14,6347,The lady pours the pours the drink into a glass. The lady,The lady pours the pours the drink into a glass.,The lady,gold,raises a box and stirs.,adds some red stuff.,runs into the ice and stir.,places the plastic placed weight over the dish.,1\n7859,anetv_IytPbGtfo14,6345,The lady pours three shots of liquor into a cup. The lady,The lady pours three shots of liquor into a cup.,The lady,gold,pours other stuff in and shakes it.,gives the cup then takes a drink.,mixes the cake juice along with the liquid briefly.,mixes cubes contents in the strawberries.,0\n7860,anetv_IytPbGtfo14,6343,We see a lady behind a bar talking. The lady,We see a lady behind a bar talking.,The lady,gold,picks up a ball and talks about it.,takes a bottle of mouthwash.,lifts her leg up.,pours ice in glass.,3\n7861,anetv_IytPbGtfo14,6344,The lady pours ice in glass. The lady,The lady pours ice in glass.,The lady,gold,adds a thinly cork.,pours three shots of liquor into a cup.,dumps the ice into a glass glass bowl.,gives lemons in a jar.,1\n7862,anetv_fpVaXCwccNk,9071,A lady is standing and holding a hammer. The lady,A lady is standing and holding a hammer.,The lady,gold,shaves cream off her leg and puts it down into the end of his braid.,spins with the hammer and throws the hammer.,is talking while holding a shovel.,\"wipes a paint ball on the wall, then uses a grappling tool to clear off the wall again.\",1\n7863,anetv_fpVaXCwccNk,9072,The lady spins with the hammer and throws the hammer. The lady,The lady spins with the hammer and throws the hammer.,The lady,gold,runs away and we still see the results throughout.,takes then wrenches the elastic band from her grasp.,leaves after releasing the hammer.,picks up and releases throws.,2\n7864,lsmdc0011_Gandhi-52085,14066,A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we can't yet see that person. Someone,A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we can't yet see that person.,Someone,gold,\"looks around and notices that someone has just lost her mind's edge, just missing.\",is so hovering by the cross.,spies someone making out faces at longbourn.,\"is smiling, trying to move on, but answering the questions of an indian journalist.\",3\n7865,lsmdc0011_Gandhi-52085,14065,\"Third Class passengers are disembarking here, and on shore, separated by a wire fence from the rest of the pier. A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we\",\"Third Class passengers are disembarking here, and on shore, separated by a wire fence from the rest of the pier.\",A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we,gold,hear only the sound of words.,can only hear the splashing of water on the tiles.,can slip out that he is with her.,can't yet see that person.,3\n7866,lsmdc0011_Gandhi-52085,14067,\"He speaks with an uncertainty and tentativeness that he had lost in South Africa, patently overwhelmed by the reception. An English journalist\",\"He speaks with an uncertainty and tentativeness that he had lost in South Africa, patently overwhelmed by the reception.\",An English journalist,gold,is wearing a lot of red robes.,catches him as he turns.,sits up on the street.,trots out of a busy gaming area.,1\n7867,lsmdc0011_Gandhi-52085,14062,The General has taken the salute and moves to inspect the troops to the accompaniment of the military band. He,The General has taken the salute and moves to inspect the troops to the accompaniment of the military band.,He,gold,runs upstairs to a shop.,men progress from their seats.,is suddenly aware of a well - dressed indian half - listening to their conversation.,is the captain again with his fatigue cut and quiet.,2\n7868,lsmdc0011_Gandhi-52085,14068,An English journalist catches him as he turns. An exuberant woman,An English journalist catches him as he turns.,An exuberant woman,gold,comes back from the direction holding an remote.,puts a garland over his shoulders.,passes himself and leads them down a corridor.,watches her hand staring mr.,1\n7869,lsmdc0011_Gandhi-52085,14063,He is suddenly aware of a well - dressed Indian half - listening to their conversation. He glances at him and the well - dressed Indian,He is suddenly aware of a well - dressed Indian half - listening to their conversation.,He glances at him and the well - dressed Indian,gold,simply nods slightly and moves off a little.,are standing peddle by the jumble of beaten soldiers.,in that suit and staring in the same direction.,item has now decent.,0\n7870,lsmdc0011_Gandhi-52085,14059,\"Still a little confused, someone reaches in his pocket and produces a shilling. He\",\"Still a little confused, someone reaches in his pocket and produces a shilling.\",He,gold,is hearing something behind him.,hands it to someone.,rips a hunk of cash from a rusty plastic bag and holds it over his wallet.,\"files the envelope, put it in his coat pocket.\",1\n7871,lsmdc0011_Gandhi-52085,14060,He hands it to someone. The prison guard,He hands it to someone.,The prison guard,gold,\"appears in the doorway, looking off in confusion at someone, then back at the office for guidance.\",uses a flashlight of light to form a thick arc around the room.,\"plows into the auction, using the box.\",grabs someone who bends down for him at the bottom.,0\n7872,lsmdc0011_Gandhi-52085,14064,He glances at him and the well - dressed Indian simply nods slightly and moves off a little. The second Englishman,He glances at him and the well - dressed Indian simply nods slightly and moves off a little.,The second Englishman,gold,starts to beginning his routine as someone tapping his backside.,\"comes to him, flexes his arms, takes another copy of his justice and begins to read the name.\",grimaces at the young englishman and looks down again.,pushes the coughing out of his mouth with the tip of his left hand and seems to increase in light.,2\n7873,lsmdc0011_Gandhi-52085,14061,\"The prison guard appears in the doorway, looking off in confusion at someone, then back at the office for guidance. A British general\",\"The prison guard appears in the doorway, looking off in confusion at someone, then back at the office for guidance.\",A British general,gold,is coming down the gangplank accompanied by his adc.,\"has hidden his manager, opens a gate, closes the door in vain for 60 years.\",is shown at the door that is also about eight years old.,\"appears, firing a needle into a toll drying mechanism.\",0\n7874,anetv_FK73jqIGUzE,5100,\"A boy welds on a piece of metal making sparkles. Then, the boy\",A boy welds on a piece of metal making sparkles.,\"Then, the boy\",gold,kicks with his hammer.,raise his helmet and talks.,\"puts on a dark tool, and fights a bag of citrus to the level of the enclosed operated chair.\",puts plaster all around himself and talks.,1\n7875,anetv_o3yvGAz5IJ8,2344,She gathers some soapy water and begins to scrub the counter down. She,She gathers some soapy water and begins to scrub the counter down.,She,gold,mixes some caviar into her drink as she stirs them.,\"starts putting the solution down and scrubbing with a cloth, ruler and clean at a time.\",is back to her coat and her back are still in the tub.,dries the counter and or some oil on to the wood and begins to rub it in.,3\n7876,anetv_o3yvGAz5IJ8,14554,A woman is seen speaking to the camera while walking around a counter and pouring liquid out into a bucket. The woman then,A woman is seen speaking to the camera while walking around a counter and pouring liquid out into a bucket.,The woman then,gold,scrubs down the counter with a sponge and wiping oil along the top as well as her hands.,\"puts a pillow into buckets and begins to bowl her contents, smiling happily.\",begins using the toothbrush to clean up the sink.,sprays liquid soap along a cloth and leads into a person washing laid out to tissue cup.,0\n7877,anetv_o3yvGAz5IJ8,2343,A woman comes onto the screen and begin to explain the process. She,A woman comes onto the screen and begin to explain the process.,She,gold,gathers some soapy water and begins to scrub the counter down.,puts the soap into the closet and ends by lifting a metal surface to keep cleans on the boards.,\"sets a dvd for soap and a picture of her, talks to the camera, lays it on her back.\",makes several videos to a gym that is shown for where she works.,0\n7878,anetv_o3yvGAz5IJ8,2345,She dries the counter and or some oil on to the wood and begins to rub it in. The video,She dries the counter and or some oil on to the wood and begins to rub it in.,The video,gold,ends with her applying paper to the equipment and continues putting it.,ends with text shown off the screen while the gymnast leave down to the woman on the side.,ends with the closing caption shown on the screen.,ends with the closing captions shown on the screen.,2\n7879,anetv_o3yvGAz5IJ8,2342,An introduction comes onto the screen for a video about how to clean a butcher block. A woman,An introduction comes onto the screen for a video about how to clean a butcher block.,A woman,gold,is washing a sticker off the counter with a pink knife.,is then shown holding a shoe with a long knife and sharpening the knife using a knife.,comes onto the screen and begin to explain the process.,uses a cake nozzle to clean the windows.,2\n7880,lsmdc3014_CAPTAIN_AMERICA-5365,3019,\"Someone returns Rogers' enlistment form, now stamped 1a. Someone\",\"Someone returns Rogers' enlistment form, now stamped 1a.\",Someone,gold,\", exhausted, touches it as he stands.\",fights he from his mouth.,hangs a large fusion balloon to his left and holds it.,lets out a deep sigh.,3\n7881,lsmdc3088_WHATS_YOUR_NUMBER-41979,2309,She draws a slip two inches. Someone,She draws a slip two inches.,Someone,gold,gazes at the gran torino.,unfolds a slip of paper.,narrows her eyes as someone sits.,wears a brief sweater as she watches the derby players.,1\n7882,anetv_yRswMXWCcrI,10005,\"Then, other man skies on the hill and flat areas covered with snow. Also, skiers\",\"Then, other man skies on the hill and flat areas covered with snow.\",\"Also, skiers\",gold,ride horses with rafts in the mountains and ski to the water.,makes a flip from in the air while other people watch.,ski the ski hill to climb the slopes of the tubers.,are skiing over obstacles with bad soil.,1\n7883,anetv_yRswMXWCcrI,10004,\"A person stands on a hill covered wit snow, then the person ski down the hill and fall. A skier\",\"A person stands on a hill covered wit snow, then the person ski down the hill and fall.\",A skier,gold,falls over but that a person can be sitting next to the snow as the man continues for the boat steps.,bends into position and resumes polishing with his skateboard.,comes down a hill makes a jump over stones and falls and rolls on the snow.,\"shows the bull on the way, and the child continues on toward some rocks.\",2\n7884,lsmdc3025_FLIGHT-12113,18297,\"He steps out of the car, and walks up a foot path to a house. A man\",\"He steps out of the car, and walks up a foot path to a house.\",A man,gold,runs onto a snowy road.,\"watches someone from a parked car, and speaks into his cell phone.\",runs down a sidewalk as a lit car drives by.,stands on the sidewalk next to a basket of tree roots.,1\n7885,lsmdc3025_FLIGHT-12113,18296,He chugs on the bottle of juice. He,He chugs on the bottle of juice.,He,gold,jerks his head toward the cords still in his face.,puts the bottle on the kitchen and pours it onto the table.,\"steps out of the car, and walks up a foot path to a house.\",use a wallpaper blazer and paint the cars.,2\n7886,lsmdc3025_FLIGHT-12113,18294,\"Someone speeds down the mud road, splashing slush to the side. He\",\"Someone speeds down the mud road, splashing slush to the side.\",He,gold,notices someone silhouette and rugged across the fence icon to him.,continues to sprint forward.,brakes when he sees news crews outside the farm house.,\"abruptly turns around, the demon rolls over and makes his way into a shop.\",2\n7887,lsmdc3025_FLIGHT-12113,18295,He stops opposite a house in a quiet neighborhood. He,He stops opposite a house in a quiet neighborhood.,He,gold,strolls in the dusty streets but never have any customers.,chuckles to delight from across the front of the van.,chugs on the bottle of juice.,turns on an umbrella.,2\n7888,lsmdc3025_FLIGHT-12113,18293,Someone turns and walks away. Someone,Someone turns and walks away.,Someone,gold,enters with his glasses slung over his shoulder.,\"speeds down the mud road, splashing slush to the side.\",hangs from dipping her file.,goes back to the kitchen oven.,1\n7889,anetv_Q5kU3DUXXZg,17838,Numerous different pictures of fitness people flash on the screen and the logo la muscle flashes quickly. A group of people appear and they,Numerous different pictures of fitness people flash on the screen and the logo la muscle flashes quickly.,A group of people appear and they,gold,are on bicycles pedaling and are doing a cardio workshop while the man in front wearing a headband is talking the whole time.,finally both a team wearing hockey boards from a white background in the stadium.,come in quick clerical threads and shows the players practicing and ending the wrestling clips.,surf on shore with long paddles and grab pool deposits in their paddles and wave goodbye.,0\n7890,anetv_YCdPa5gJYmc,12038,The guy releases the item. A guy,The guy releases the item.,A guy,gold,moves away from the descending item.,grabs boxes and supplies.,wraps his arms around the boy as he holds up the coffee.,works in the vault and adjusts a screw.,0\n7891,anetv_m_ST2LDe5lA,261,Two people wearing scuba gear are underwater. They,Two people wearing scuba gear are underwater.,They,gold,stop then it shows a young girl wearing a gray suit and a sharp trainer with short haircut.,are being chopped in the cold water.,\"look at each other, remove their mouth pieces, then kiss.\",are trying to hold people facing each other.,2\n7892,anetv_m_ST2LDe5lA,262,\"They look at each other, remove their mouth pieces, then kiss. The man\",\"They look at each other, remove their mouth pieces, then kiss.\",The man,gold,places his mouth piece back in.,kisses people on the cheek.,raises his right hand toward his chest.,drinks their ice cream other with soap.,0\n7893,anetv_E7C91KoML-o,10363,A man is seen bending down before a weight. He,A man is seen bending down before a weight.,He,gold,speaks to the camera while holding up large weights and smiling.,lifts the weight up by his head.,starts walking up and forward with his arms up.,pauses to speak to the camera in slow motion.,1\n7894,anetv_E7C91KoML-o,5403,\"He squats down kind of and picks it up, it looks very heavy and kind of painful. He\",\"He squats down kind of and picks it up, it looks very heavy and kind of painful.\",He,gold,\"stops an electronic noise from the trunk, listening to other things.\",lifts up above his head and jumps his feet apart.,demonstrates a benefits of trimming the birds around a tree at the end.,\"slips it in her pocket, closing it and letting it come toward him.\",1\n7895,anetv_E7C91KoML-o,10364,He lifts the weight up by his head. He,He lifts the weight up by his head.,He,gold,folds the heavy weight on his shoulders.,\"swings around, letting it fall back into place.\",lifts it over his head and drops it back down.,drops it on the ground and sits up front.,2\n7896,anetv_E7C91KoML-o,5402,\"A man is bent over holding on to a weight with lots of weight on it. He squats down kind of and picks it up, it\",A man is bent over holding on to a weight with lots of weight on it.,\"He squats down kind of and picks it up, it\",gold,kneels down on the weights going to the floor.,drops and his chest is left in the chest lifting weights straight up over the chair.,pours away and gets back on the exercise machine.,looks very heavy and kind of painful.,3\n7897,anetv_zYQ-WdosIwI,17388,The woman then gets on knees and sits backwards. She,The woman then gets on knees and sits backwards.,She,gold,looks forward while sitting up and does this several times while speaking to the camera.,does a flip and lands at ground level.,is able to get any more.,starts to move away from the foam until almost falls over.,0\n7898,anetv_zYQ-WdosIwI,6499,\"Then she kneels down on the yoga mat and then she sits on her feet. Next, she\",Then she kneels down on the yoga mat and then she sits on her feet.,\"Next, she\",gold,\"jumps up on the bed, and sets down exercises.\",comes up and comes back down doing a kneeling squat.,feels like she should throw the sheet down on the floor.,begins to spin her legs around and raise her entire body to the end.,1\n7899,anetv_zYQ-WdosIwI,17387,A woman is seen standing on a pink may while speaking to the camera. The woman then,A woman is seen standing on a pink may while speaking to the camera.,The woman then,gold,begins rubbing her face and ending by laying a bow around as well as stick for him and continues talking.,begins performing various routine in a front jump.,plays a tennis match while others sit and watch.,gets on knees and sits backwards.,3\n7900,anetv_zYQ-WdosIwI,6498,First the woman greets everyone through the camera and she tells what she will be doing. Then she kneels down on the yoga mat and then she,First the woman greets everyone through the camera and she tells what she will be doing.,Then she kneels down on the yoga mat and then she,gold,moves her legs away and begins to dance with effort.,takes off an iron.,sits on her feet.,grabs a bar pause and spins high for her high kick and and flips.,2\n7901,anetv_RnN4BXyOtxU,16940,A lemon is cut on a counter. They,A lemon is cut on a counter.,They,gold,juice the lemon and pour it into a pot.,adds butter and butter and lemon juice.,are then added to a scale.,are sticking out in a silver cup pitcher.,0\n7902,anetv_RnN4BXyOtxU,16941,They juice the lemon and pour it into a pot. They,They juice the lemon and pour it into a pot.,They,gold,put the dough into a pan.,clink their glasses together.,use the mixer to pour the mixture them into a toast.,pour it into a plastic pitcher.,3\n7903,anetv_RnN4BXyOtxU,18578,\"A person cuts lemons and squeeze the juice. Then, the person\",A person cuts lemons and squeeze the juice.,\"Then, the person\",gold,\"pours the juice in a pot through a strainer, and adds sugar and heat for 5 min.\",mashes a small piece of turkey and pours them into a bowl.,pours the rum to the lemonade.,measures the ingredients to place all the ingredients together on a plate and then adds mix and syrup.,0\n7904,anetv_RnN4BXyOtxU,18579,\"Then, the person pours the juice in a pot through a strainer, and adds sugar and heat for 5 min. After, the woman\",\"Then, the person pours the juice in a pot through a strainer, and adds sugar and heat for 5 min.\",\"After, the woman\",gold,takes a lemonade to a pitcher.,eats another chocolate and add to lemon cup and bakes a lemon.,\"irons the lemon and mix them together, then mix in a metal.\",\"adds soda water, after they boys drink the lemonade.\",3\n7905,anetv_RnN4BXyOtxU,16942,They pour it into a plastic pitcher. They,They pour it into a plastic pitcher.,They,gold,toss a ball over the corner of the surface.,get out of her car and continue off unrolling their hand.,end the bottle and wipe it with the cup.,start to drink the drink.,3\n7906,anetv_Relgb880pRI,16924,A cartoon of an archway is shown and leads into a man placing tomatoes onto a plate. He,A cartoon of an archway is shown and leads into a man placing tomatoes onto a plate.,He,gold,is then seen dipping sugar into the pan and adding more shots.,continue to throw the ice white and the dog goes to stuff it away.,moves up and up and looks up as he speak to the camera.,puts onions and other ingredients onto a plate and cuts up several more ingredients.,3\n7907,anetv_Relgb880pRI,16925,He puts onions and other ingredients onto a plate and cuts up several more ingredients. He,He puts onions and other ingredients onto a plate and cuts up several more ingredients.,He,gold,as he finishes the ingredients and makes an omelette from a plate to another.,shows off two still finished slices.,dips the ingredients into noodles and pours it over again.,places the final ingredients into the bowl while talking to the camera and pans out on the meal he made.,3\n7908,anetv_BWqsgYhgUbI,13381,He tries again with another match. The fire then starts quickly and flames,He tries again with another match.,The fire then starts quickly and flames,gold,leap up toward the sky.,engulf a burst of fire.,shoot out towards a large hole.,burst through inside the box.,0\n7909,anetv_BWqsgYhgUbI,19222,The man knells down to the wood. the man,The man knells down to the wood.,the man,gold,strikes a match and starts a fire.,swings his hands chest and down.,throws the cushion behind the man who turns on his back.,picks up a paper and picks it up.,0\n7910,anetv_BWqsgYhgUbI,13380,\"He bends down and tries to start a fire, but it does n't light. He\",\"He bends down and tries to start a fire, but it does n't light.\",He,gold,\"starts to pound the wall against the open log, then grabs the mans books.\",tries again with another match.,\"is old and he becomes aware of a sharp, dusty hole.\",moves slowly into a typical empty courtyard.,1\n7911,anetv_eTVzSwuCfd8,18807,Then with a brush dry the hair with an animal print hair dryer. then with her hands the woman,Then with a brush dry the hair with an animal print hair dryer.,then with her hands the woman,gold,uses and shave her long hair.,uses a hair blow dryer.,put the hair on place.,began blow drying her hair.,2\n7912,anetv_eTVzSwuCfd8,18806,Woman is standing in frnot of a mirror with the wet hair and its separating it into parts. then with a brush,Woman is standing in frnot of a mirror with the wet hair and its separating it into parts.,then with a brush,gold,\"of red paint and curling blonde is shown, she begins running into the paper with a shovel.\",cleaning the lady liquid black and show a plastic paper container.,\"in loose hair, then starts juicing back your hair using a hair braids with batons.\",dry the hair with an animal print hair dryer.,3\n7913,anetv_eTVzSwuCfd8,9906,A woman is brushing her hair. She,A woman is brushing her hair.,She,gold,is wheeling the steel wall.,starts blow drying her hair with a rolling brush.,starts brushing her hair in front of her face.,is using a blow dryer to groom the hair of the woman below and neck for her.,1\n7914,anetv_eTVzSwuCfd8,9907,She starts blow drying her hair with a rolling brush. She,She starts blow drying her hair with a rolling brush.,She,gold,walks back to the tent and joins her coach.,throws the product over the hair of the man and pins it in place.,finishes and styles her hair.,uses a blow dryer to spray her hair and hair.,2\n7915,anetv_xv8OYJ7t7-E,18147,A girl sitting in a chair is covered in red goo and melted ice cream and whipped cream. We,A girl sitting in a chair is covered in red goo and melted ice cream and whipped cream.,We,gold,are shown in the studio.,girl grabs onto a red sheet and lays it over her head and drops it in her pile.,woman is standing in front of her wearing a lot of white as the camera cuts the happy girl and ends the scene.,see the girl without the goo covering her.,3\n7916,anetv_xv8OYJ7t7-E,18146,We see an image of a lady covered in ice cream. A girl sitting in a chair,We see an image of a lady covered in ice cream.,A girl sitting in a chair,gold,talks to her camera.,is covered in red goo and melted ice cream and whipped cream.,sees a man with tattoos of her belly in the barber chair.,\", working her hair, while she puts the things in her body.\",1\n7917,anetv_xv8OYJ7t7-E,18145,A lady in a bikini is holding a sundae glass. We,A lady in a bikini is holding a sundae glass.,We,gold,men hold a hand pin on her mouth.,see an image of a lady covered in ice cream.,\"rises in white cup over the scene, and then after that, the kid is a break and set in half.\",it is the girl.,1\n7918,anetv_xv8OYJ7t7-E,18148,We see the girl without the goo covering her. We,We see the girl without the goo covering her.,We,gold,see a ladies swimming and standing on the parallel walkway.,\"appear, and she finally collapses the pillow, then stands on the table in front of him again.\",see the closing title screen.,\"and a man talk to each other, then the men take off after the monitor.\",2\n7919,anetv_xv8OYJ7t7-E,13935,The woman the picks up a glass and holds it. things,The woman the picks up a glass and holds it.,things,gold,are being poured on the woman.,pan down from the tray as well as pours the bags around.,come up in the box and places upside back down.,sit across the table the woman throw the ball down.,0\n7920,anetv_PLvg8riZZVw,5218,A man is holding a fishing pole over an ice fishing hole. He gently,A man is holding a fishing pole over an ice fishing hole.,He gently,gold,inserts the fish into the hole.,swims up and down the hill in the hole.,\"turns the fish off, slowly left on the right side on his board.\",tries to pull up and then reel the fishing line out of the hole.,3\n7921,anetv_PLvg8riZZVw,5220,He dips and lowers while taking a break. He,He dips and lowers while taking a break.,He,gold,tries to reel the line out again.,flips over and begins to proceed high to the ice.,runs down the counter slowly and positions himself.,begins talking again without another word.,0\n7922,anetv_PLvg8riZZVw,5219,He gently tries to pull up and then reel the fishing line out of the hole. He,He gently tries to pull up and then reel the fishing line out of the hole.,He,gold,dips and lowers while taking a break.,walks along the wall outside to a pew.,\"falls backwards into the ramp, and he is filled with water.\",stops getting his gun from the spot.,0\n7923,anetv_PLvg8riZZVw,5222,He removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly. He,He removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly.,He,gold,\"watches to go through the window, through the tall window.\",steps around the hole and continually gently pulls the line from the water as another man pulls the fish out of the water.,\"stops, and gets back up, holding a bow in his neck.\",continues applying the first piece of wax paper to the floor and the pieces on a fingernail are still attached to the ground.,1\n7924,anetv_PLvg8riZZVw,5221,He tries to reel the line out again. He,He tries to reel the line out again.,He,gold,\"stops, picks up the plank, then hurls it to the ceiling.\",goes around and continues throwing the ball and hitting it in the back.,swallows hard as he stands in the distance behind someone.,removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly.,3\n7925,anetv_Aq2w52hpwig,11312,A person is seen sitting along the water with a close up of a paddle is shown. The camera,A person is seen sitting along the water with a close up of a paddle is shown.,The camera,gold,pans around to another group of people sitting in a canoe across from them.,spins around and the person continues swimming around the water while pouring back more water on the camera.,pans around the boat then pans through to a person's feet holding up a fishing pole.,pans around to show several other kids riding and performing tricks tricks.,0\n7926,anetv_Aq2w52hpwig,11313,The camera pans around to another group of people sitting in a canoe across from them. More people,The camera pans around to another group of people sitting in a canoe across from them.,More people,gold,are seen sitting in the water as well as boats along the water.,watch on the side and ends with the people paddling in the water.,are shown riding in the back looking to people outside on the beach.,walk past one another and end by pulling a tube and looking down at the site.,0\n7927,anetv_6PaTEwG8Ym4,4385,The man is sitting with a camera in his hand. The hairdresser,The man is sitting with a camera in his hand.,The hairdresser,gold,turns to the camera and shows how to use the hula hoop.,finishes cutting his hair and then steps back.,digs the potato in the pot.,starts welding the face and position of the mower leaf.,1\n7928,anetv_6PaTEwG8Ym4,4383,A man is seated on a chair in a hair salon. He,A man is seated on a chair in a hair salon.,He,gold,is using a big brush to dry his hair.,shows the materials to make a braid in and out.,starts braiding her hair.,is getting a haircut from a hairdresser who is wearing a blue dress.,3\n7929,anetv_6PaTEwG8Ym4,4384,He is getting a haircut from a hairdresser who is wearing a blue dress. The man,He is getting a haircut from a hairdresser who is wearing a blue dress.,The man,gold,starts pulling his stake sacks as he examines them in the shop.,finishes the ups and continues to talk to the camera.,is sitting with a camera in his hand.,is genuinely divided by his frail fingers.,2\n7930,anetv_pmIJcJiydpk,6425,A small child is seen standing with her hands on her hips and between jumping down a hop scotch outline. She,A small child is seen standing with her hands on her hips and between jumping down a hop scotch outline.,She,gold,moves to show the end around the bars and then bounces down at the end.,jumps all the way down and speaks to the camera in the end.,picks up one of the bottles and finally begins to move it into a lit beat.,then begins using it on her right.,1\n7931,anetv_lKSlIMfWZXI,12401,A man is washing dishes in a sink. He,A man is washing dishes in a sink.,He,gold,holds a large hose to spray the dishes with.,picks up a cup and scoops an apple to clean around.,washes his hands in a sink.,sprays the sink with a sponge and stops changing it.,0\n7932,anetv_lKSlIMfWZXI,799,A view is shown of a person inside a bathroom. A woman,A view is shown of a person inside a bathroom.,A woman,gold,gear up with a towel and other person wearing.,is painting a piece of clothing clothing.,cuts washing the bike.,dips a hose into a large tub.,3\n7933,lsmdc1015_27_Dresses-79671,18452,\"She goes to the bathroom and moisturizes her hands, then does some work at her laptop. Shuffling papers, she once again\",\"She goes to the bathroom and moisturizes her hands, then does some work at her laptop.\",\"Shuffling papers, she once again\",gold,switches the board back on.,realizes her groceries is already sitting in the open doorway.,glances at the door.,solves again.,2\n7934,lsmdc1015_27_Dresses-79671,18450,\"Later, a car drives past someone's building. She\",\"Later, a car drives past someone's building.\",She,gold,\"rushes to the front door, peers through the peephole, then flings it open.\",races a gothic school u. purchases championship.,creeps across a bridge.,attempts to roll the window.,0\n7935,lsmdc1015_27_Dresses-79671,18451,\"Someone switches on the light in the living room, its empty and she wanders anxiously up and down, then picks up a magazine from the couch, sits in a chair, thumbs through it distractedly. She\",\"Someone switches on the light in the living room, its empty and she wanders anxiously up and down, then picks up a magazine from the couch, sits in a chair, thumbs through it distractedly.\",She,gold,\"steps over to him, and pauses for a moment before continuing her greeting.\",\"looks herself in the eye, then folds his hands inquisitively.\",glances towards the front door.,shows the overnight pack and hangs it on the rack.,2\n7936,anetv_tAleUKVZCD8,18329,\"The players go to dressing rooms in the half time. Then, the players continue playing and the red team\",The players go to dressing rooms in the half time.,\"Then, the players continue playing and the red team\",gold,scores and wins the competition.,wins with the ball start and after the player drops the wrestler in to some landing.,points at the ball.,spins and try to score and wins again.,0\n7937,anetv_tAleUKVZCD8,18328,After the red team score. The players,After the red team score.,The players,gold,will only fast pull and teetering place.,practice as high as a list of praise.,have presented celebrates as they go play soccer.,go to dressing rooms in the half time.,3\n7938,anetv_0bjHe_5nACw,17140,A woman is seen speaking to the camera while holding a violin and continues with her playing the violin and pausing. The woman,A woman is seen speaking to the camera while holding a violin and continues with her playing the violin and pausing.,The woman,gold,continues to play the instrument while moving the arms up and speaks to the camera.,begins to play drums while stopping to speak to the audience to speak before giving it back to the camera.,continues playing the instrument and stopping to speak to the camera and demonstrate how to play.,plays the camera all around while still moving along the stage while others still sitting in the background.,2\n7939,anetv_ilX9ntIzaoQ,18962,We see a man run and jump on a raft as it slides down a long snowy hill. The raft stops and the cameraman,We see a man run and jump on a raft as it slides down a long snowy hill.,The raft stops and the cameraman,gold,gets up and walks around while filming the ground.,lands on a touch screen.,zooms up as we see the bottom.,pretends to walk back.,0\n7940,anetv_HDVk1O78gwc,17290,Several female gymnasts are shown on the bars making different mistakes with their tricks. Their coaches,Several female gymnasts are shown on the bars making different mistakes with their tricks.,Their coaches,gold,have seen on the sides as they pivot their advantage.,are also shown in the video along with them.,are injured and beating their legs in the sitting area.,and then to join the girls as they continue to show and continue to do several gymnastic tricks with their jump ropes.,1\n7941,anetv_HDVk1O78gwc,17291,Their coaches are also shown in the video along with them. The video,Their coaches are also shown in the video along with them.,The video,gold,shows someone ending the video.,then pans to a variety of young men some standing and performing climbers.,ends with the closing credits shown on screen.,ends with the closing credits shown on the screen.,3\n7942,anetv_HDVk1O78gwc,14525,She is seen in several clips as she falls and fails at the the flips and mounts. The clips,She is seen in several clips as she falls and fails at the the flips and mounts.,The clips,gold,continue throughout the video.,continue on people lying in the sky attempting to finish by coming out very quickly.,continue to move on on various motion and end by scenes of water draining from the horizon.,includes several small people multiple times before practicing when their board lands.,0\n7943,lsmdc1014_2012-79277,2882,\"People climb down the steps, leaving someone in the cockpit with someone. In the cargo hold, someone\",\"People climb down the steps, leaving someone in the cockpit with someone.\",\"In the cargo hold, someone\",gold,clasps his hands in his.,turns a corner and frowns.,hands someone life jackets.,holds up his neuralyzer.,2\n7944,lsmdc1014_2012-79277,2883,\"In the cargo hold, someone hands someone life jackets. Someone\",\"In the cargo hold, someone hands someone life jackets.\",Someone,gold,leans on the steps and looks across at his sleeping family.,leans back near his bass drum.,\"sits his buster, staring gravely at someone.\",bangs a rubber officer and deck the cargo plane.,0\n7945,anetv_xm7pETlJrwA,6053,She pours water out of the pot into the bucket as well as some detergent. She then,She pours water out of the pot into the bucket as well as some detergent.,She then,gold,shakes the container over dry cleaning and stirs it and the water begins to boil.,grabs a bucket and tosses it into a bucket that begins to sink.,washing clothes in the bucket using water continuously as well as a toothbrush.,lands her feet on the soap and continues brushing her face.,2\n7946,anetv_xm7pETlJrwA,6054,She then washing clothes in the bucket using water continuously as well as a toothbrush. She,She then washing clothes in the bucket using water continuously as well as a toothbrush.,She,gold,lays out the clothes in the end as well as hangs them up.,scrubs her hands onto the sink while putting more lipstick on her lips.,hit the ice on the back of the broom.,sprays her tongue thoroughly and carefully uses it to wipe off her face.,0\n7947,anetv_xm7pETlJrwA,6052,A woman is seen speaking to the camera while holding up a bucket and pot. She,A woman is seen speaking to the camera while holding up a bucket and pot.,She,gold,continues speaking to the camera while still packing up other clothes and talking to the camera.,puts several ingredients into a pot and hands it back again.,pours liquid into a glass and begins presenting the magazine to the camera.,pours water out of the pot into the bucket as well as some detergent.,3\n7948,lsmdc3060_SANCTUM-29296,16578,\"Someone and someone lifted on to the rocks. Back at forward base, someone\",Someone and someone lifted on to the rocks.,\"Back at forward base, someone\",gold,starts to climb the zebra.,\"squats down in front of his head, which sits on the platform next to someone at the bar.\",'s crew steps upward.,joins someone under the tent.,3\n7949,lsmdc3060_SANCTUM-29296,16579,\"Someone shoots someone a sidelong glance, then sits beside someone who eats rice from a pot. Someone\",\"Someone shoots someone a sidelong glance, then sits beside someone who eats rice from a pot.\",Someone,gold,turns off the radio.,\"looks from the salesman to someone, standing and makes her stomach slip.\",brings his plate back to the counter as he reads a book paper.,slumps into a folding chair.,0\n7950,lsmdc3060_SANCTUM-29296,16582,\"With his head bowed, he holds the bottle out to someone who takes it and drinks. The young man\",\"With his head bowed, he holds the bottle out to someone who takes it and drinks.\",The young man,gold,\"steps someone into stage with people, standing behind them.\",swallows then lets out a deep breath.,glances down at his watch.,touches a piece of iced juice over someone's ear.,1\n7951,lsmdc3060_SANCTUM-29296,16577,\"Someone sees his father standing at the water's edge, his arms cradling someone's limp body. Someone and someone\",\"Someone sees his father standing at the water's edge, his arms cradling someone's limp body.\",Someone and someone,gold,apparate nearby.,lie next to each other on the bed.,trot down the gloomy street.,lifted on to the rocks.,3\n7952,lsmdc3060_SANCTUM-29296,16583,The young man swallows then lets out a deep breath. Someone,The young man swallows then lets out a deep breath.,Someone,gold,lifts his head but avoids his son's gaze.,\"grabs his jacket, and someone and someone step out with a freestanding fountain.\",\"rides around in the water, shaking his head, fixing his guns.\",pulls nervously from her view.,0\n7953,lsmdc3060_SANCTUM-29296,16580,Someone turns off the radio. He,Someone turns off the radio.,He,gold,drops the helmet on and winds through it.,blasts the hammer pipes.,halts and visits forward.,\"sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig.\",3\n7954,lsmdc3060_SANCTUM-29296,16581,\"He sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig. With his head bowed, he\",\"He sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig.\",\"With his head bowed, he\",gold,\"goes out, opens a shot glass and flask for a drink, and studies his glass of vodka and a pencil.\",tears some caviar into his plate and throws it down.,holds the bottle out to someone who takes it and drinks.,\"backs away, gliding over the shimmering tropical water.\",2\n7955,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10231,Munching a hamburger someone enters the lobby through a revolving door. As the door start to close she,Munching a hamburger someone enters the lobby through a revolving door.,As the door start to close she,gold,\"moves into an open - view space and replaces a locked door, which glows precariously covered by water.\",pulls out the key from the hall.,lowers the ticket in the washroom.,reaches out towards a hastily approaching colleague.,3\n7956,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10232,Quickly retracts her hand as the door slams shut. She,Quickly retracts her hand as the door slams shut.,She,gold,narrows her eyes disapprovingly.,limps down a flight of steps.,\"sits upright, holding him open and shivering helplessly.\",slams the door shut.,0\n7957,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10229,The corners of his mouth down turned. He,The corners of his mouth down turned.,He,gold,peers at the contact sheet through a magnifying eye - glass to see two portly middle aged gentlemen holding glasses of wine.,\"look good to clean unnerved, he dropped the cup too.\",chuckles then does the conductor himself.,comes too.,0\n7958,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10230,He looks at the telephone receiver and frowns. Munching a hamburger someone,He looks at the telephone receiver and frowns.,Munching a hamburger someone,gold,holds at his laptop.,enters the lobby through a revolving door.,hops off and thumps the shuttle with his skipper.,ducks over a table and hides his actual eye with his hand.,1\n7959,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1651,She switches on the laptop. She,She switches on the laptop.,She,gold,looks up from the laptop.,\"leaves the cell, locking herself in.\",sets the timer on the computer again.,stares at the book.,0\n7960,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1650,She crosses to his laptop and finds the photograph of young someone among the search party. She,She crosses to his laptop and finds the photograph of young someone among the search party.,She,gold,totters her vertical legs with a corner.,switches on the laptop.,sets up and comes.,defends herself with the towel.,1\n7961,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1649,At the cottage someone drops her helmet and bag. She,At the cottage someone drops her helmet and bag.,She,gold,\"undoes the seat, sliding a knife over the dead man's chest and cheek to the diner.\",crosses to his laptop and finds the photograph of young someone among the search party.,\"sets his hand on a cane, then slams back down on a railing.\",drops her braces and lies curled up on it.,1\n7962,anetv_S24MDjduWIY,4005,The man ties a rope around a ball and continues having him perform layups on the court. More clips,The man ties a rope around a ball and continues having him perform layups on the court.,More clips,gold,are shown of them practicing while the man speaks to the camera.,are shown of people playing in bumper cars while others waiting around them.,\"are shown of people playing, hurling and throwing frisbee.\",are shown of people walking around the room and landing onto the stage.,0\n7963,anetv_S24MDjduWIY,4004,A man is seen speaking to the camera while people practice basketball drills intermittently. The man,A man is seen speaking to the camera while people practice basketball drills intermittently.,The man,gold,gives a thumbs up and then plays the field with a wooden ball while leading the men around to watch bike players.,points to a large picture of a player standing ball to another and men doing capoeira moves.,ties a rope around a ball and continues having him perform layups on the court.,moves using the stick to have a set of weights as spectators watch on the sides.,2\n7964,anetv_yXH7GcOduNo,13118,A woman is seen standing in the middle of a sand pit and begins swinging an object around. She,A woman is seen standing in the middle of a sand pit and begins swinging an object around.,She,gold,throws down the stick and ends by grabbing the stick into the hoop.,view throws down several several members of a soccer field as well as down onto her board and pushing the stick around.,continues moving back and fourth and ends by jumping off the side and beginning tricks.,spins this around herself several times then begins swinging herself around.,3\n7965,anetv_yXH7GcOduNo,13119,She spins this around herself several times then begins swinging herself around. She,She spins this around herself several times then begins swinging herself around.,She,gold,is being shown several times.,continues to jump around the bars and ends with them spinning and holding up the log.,continues swinging and finishes by throwing it off into the distance.,walks up to the horse and climbs back into the horse.,2\n7966,anetv_asLRIsN6wLQ,17566,A man in a yellow shirt holds a ball on his shoulder does some movements and turns quickly to throw it. After him another man,A man in a yellow shirt holds a ball on his shoulder does some movements and turns quickly to throw it.,After him another man,gold,does the same technique and throws the ball as well.,takes a shot and throws the ball from through the other.,goes down and swings the ball down also others kick it on his hand.,in a white shirt hits the object with his bats and falls backwards.,0\n7967,anetv_asLRIsN6wLQ,6350,Another man steps up and bends forward while throwing a ball off into the distance. Several more men,Another man steps up and bends forward while throwing a ball off into the distance.,Several more men,gold,are seen riding around in a gym while the camera follows in the distance.,are seen walking into frame and leads into several clips of people playing ping pong.,are seen throwing darts around the field while a man runs behind them.,take their turns as the camera captures their movements.,3\n7968,anetv_asLRIsN6wLQ,17567,After him another man does the same technique and throws the ball as well. They,After him another man does the same technique and throws the ball as well.,They,gold,cut a victory volleyball for cover.,take turns doing this and throwing the ball to see who gets it farther.,clips the boy throwing the ball towards the passing opponent.,are shown making goals row indoor soccer.,1\n7969,anetv_asLRIsN6wLQ,6349,A large ball is soon rolling forward followed by a man bending over and throwing a ball. Another man,A large ball is soon rolling forward followed by a man bending over and throwing a ball.,Another man,gold,steps up and bends forward while throwing a ball off into the distance.,flips the volleyball to the music and attempts to stand far with one of them up towards the man.,is seen a game of volleyball as well as spinning as his playing hockey still watching.,continues to watch as the young boy continues picking lifts and the dog continues to play.,0\n7970,anetv_asLRIsN6wLQ,17568,\"They take turns doing this and throwing the ball to see who gets it farther. Finally, the champion\",They take turns doing this and throwing the ball to see who gets it farther.,\"Finally, the champion\",gold,goes very last before throwing his ball into the distance.,appears to be again at the end of the video.,is back in he tells the results again.,girl moves backwards and near the goal.,0\n7971,lsmdc3018_CINDERELLA_MAN-8093,14999,\"Someone gives someone a reassuring gesture. At the bar, someone\",Someone gives someone a reassuring gesture.,\"At the bar, someone\",gold,stands and shakes someone's hand.,slices an omelet with the lemon inside the boat.,vomits into the saddle.,backs away at her aide.,0\n7972,lsmdc3018_CINDERELLA_MAN-8093,14992,Someone wraps the rest of her steak in her napkin. Someone,Someone wraps the rest of her steak in her napkin.,Someone,gold,pauses thoughtfully as she joins him in his chair.,\"is a buff man good times, and some others are drinking beer, the kitchen stealing food and dish, etc.\",arrives and shakes hands with the maitre.,\"watches the news to the woman, then eats with the egg.\",2\n7973,lsmdc3018_CINDERELLA_MAN-8093,14996,\"Someone turns in his seat, facing the large man fully. Someone\",\"Someone turns in his seat, facing the large man fully.\",Someone,gold,\", comes out and expected the situation.\",breathes heavily as he gazes at the sky and his suv stands by the end of the crane's low line.,winks as he crosses the room with a group of well - dressed friends.,lowers his gun and flings the sling higher into the distance.,2\n7974,lsmdc3018_CINDERELLA_MAN-8093,14997,Someone brings a bottle of champagne. Someone,Someone brings a bottle of champagne.,Someone,gold,puts glasses on her finger.,instantly notices her dress and holds it with both hands.,straightens his suit jacket.,tosses it onto the floor.,2\n7975,lsmdc3018_CINDERELLA_MAN-8093,14998,As his fighter crosses the room. Someone,As his fighter crosses the room.,Someone,gold,reels frantically through troubled passengers.,\"stands on the side of the balcony, his arms folded above his head.\",gives someone a reassuring gesture.,gazes upward and looks up as someone follows the bride outside.,2\n7976,lsmdc3018_CINDERELLA_MAN-8093,14991,A waiter starts to clear the table. Someone,A waiter starts to clear the table.,Someone,gold,takes a drink and steps into the room with an attractive shower.,walks up to greet the old woman.,wraps the rest of her steak in her napkin.,moves in front of someone as the young lady runs and leaps out someone's raised arm.,2\n7977,lsmdc3018_CINDERELLA_MAN-8093,14993,Someone arrives and shakes hands with the maitre. The Cinderella Man,Someone arrives and shakes hands with the maitre.,The Cinderella Man,gold,is slumped in the display case.,hangs the joy sign from either end of the o..,follows his wife's gaze.,leads someone by the stereo to the door.,2\n7978,lsmdc3018_CINDERELLA_MAN-8093,14994,The Cinderella Man follows his wife's gaze. As a waiter,The Cinderella Man follows his wife's gaze.,As a waiter,gold,\"holds the bouquet, someone smiles.\",\"drives away, someone opens his eyes.\",removes someone's fur coat.,looks up in the church.,2\n7979,anetv_rLH89pN9I84,10842,A woman walks out onto the grass. Two small dogs,A woman walks out onto the grass.,Two small dogs,gold,follow her on leashes.,run around and talks to him with the dogs dog.,are waiting on the kitchen entrance.,are being on her back.,0\n7980,anetv_rLH89pN9I84,10843,Two small dogs follow her on leashes. She bends down and the dogs,Two small dogs follow her on leashes.,She bends down and the dogs,gold,run around the water bottle.,fight over the dog with white dog.,are on the ground.,come up to her.,3\n7981,anetv_X6IoTFqaegc,9248,The woman sprays the glass and follows the object down the glass. She,The woman sprays the glass and follows the object down the glass.,She,gold,pours several more liquids into piles.,points out the tongue holes and watches the man laugh.,continues taking turns turning the camera back.,does this several times and shows where to plug in and how to use the tool.,3\n7982,anetv_X6IoTFqaegc,9247,A woman's hand is shown wiping a glass screen followed by various objects sitting on a table. The woman,A woman's hand is shown wiping a glass screen followed by various objects sitting on a table.,The woman,gold,sprays the glass and follows the object down the glass.,begins slicing lemons into small pieces of glass.,wipes down the pinky and turns the glass through the face while speaking to the camera.,mixes it up and continues along there followed by the person drying her leg and standing by the camera.,0\n7983,anetv_ez9pf35BMtc,11832,The man is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars. The boy,The man is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars.,The boy,gold,demonstrates landing a jump from the parallel bars as the man continues to talk to the camera.,walks around to another sitting next to him moving his hands up and down.,goes on and the young man raises his leg in the air until it lands on a bend.,continues rotating it with both hands when the boy stands to talk to the camera.,0\n7984,anetv_ez9pf35BMtc,18083,A little boy is shown on beams as the instructor describes what he's doing. The instructor,A little boy is shown on beams as the instructor describes what he's doing.,The instructor,gold,is now doing a routine in the end and jumps back again onto the mat.,\"is laying on the trampoline using the bars, the backup dancers and the other boy turns around then stands up.\",continues speaking to the camera about what to watch out for.,hands one to them who also kneels on the field behind him.,2\n7985,anetv_ez9pf35BMtc,18084,The instructor continues speaking to the camera about what to watch out for. The boy then,The instructor continues speaking to the camera about what to watch out for.,The boy then,gold,moves to the camera and begins going next to the bar and zooming in on his face.,finishes with all the lines and the first lens works.,comes to the camera and walks along the camera and moves all over.,continues performing as his instructor's direction.,3\n7986,anetv_ez9pf35BMtc,18082,\"In this video, a male instructor speaks to the camera in a gym. A little boy\",\"In this video, a male instructor speaks to the camera in a gym.\",A little boy,gold,walks into a microphone.,jumps into the air before leaning to the podium.,is shown on beams as the instructor describes what he's doing.,throws another soccer ball onto the table and serves it in place.,2\n7987,anetv_ez9pf35BMtc,11831,The man talks to the camera in a indoor gym. The man,The man talks to the camera in a indoor gym.,The man,gold,is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars.,removes the blindfold bottle.,beats the ball on the wall.,kicks and throws his jumps.,0\n7988,anetv_ez9pf35BMtc,11830,A man demonstrates how to balance on the parallel bars using a student gymnast as an example on a pair of parallel bars in an indoor gymnasium. The man,A man demonstrates how to balance on the parallel bars using a student gymnast as an example on a pair of parallel bars in an indoor gymnasium.,The man,gold,performs tai chi jumps while the gymnast perform the same routine.,talks to the camera in a indoor gym.,jumps heavy parallel bars and instructs as he misses a second while doing flip in midair and lands on his tie behind him.,begins jump throwing the ball high into the air once more.,1\n7989,anetv_Prt07JFztMI,9055,Two men are in an alley. They,Two men are in an alley.,They,gold,are putting a yellow board on a table in front of them.,throw the ball and fall over onto the mat.,are playing a game of tennis.,are bouncing up and down on sticks.,3\n7990,anetv_Prt07JFztMI,9057,There is a van in the foreground. There,There is a van in the foreground.,There,gold,stands being circled to one another and the winner walks away.,are also several buildings.,is snowboarding while he is sitting on another.,is an arm in and he continue to shake him off.,1\n7991,anetv_Prt07JFztMI,9056,They are bouncing up and down on sticks. There,They are bouncing up and down on sticks.,There,gold,come out onto the stage and people are playing a game of ping pong.,are bent over the couch.,is a van in the foreground.,are broken kites in the air.,2\n7992,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18412,He adds it to the other personal things he is put in a cardboard box. Someone,He adds it to the other personal things he is put in a cardboard box.,Someone,gold,sets the timer back attached to a red bowl and starts to remove it from a sitting bag.,descends into the bank.,appears at his door.,shifts her brown eyes.,2\n7993,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18411,\"In his office, someone picks up the empty photo frame from his desk, and looks at it with a sigh. He\",\"In his office, someone picks up the empty photo frame from his desk, and looks at it with a sigh.\",He,gold,adds it to the other personal things he is put in a cardboard box.,walks back on the bed.,turns and turns to look at someone.,gestures to the prisoner and lowers himself into the chair.,0\n7994,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18408,\"At home, someone finds a note from someone. Glumly she\",\"At home, someone finds a note from someone.\",Glumly she,gold,opens the portfolio and finds the signature clear of the triangle on the cigar box and passed it to her bag.,puts on the cake and checks her list.,\"steps into the room, and looks at all the clothes piled up on the bed.\",walks into her kitchen behind someone studying the painting.,2\n7995,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18406,\"He puts an arm around her, and she lays her head on his big barrel chest. Tears\",\"He puts an arm around her, and she lays her head on his big barrel chest.\",Tears,gold,\"roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone.\",\"in the ring, someone stares with his eyes wide.\",pats her fiancee and they both watch her face.,\"the blood from her face, the young girl gently lays her hand over her eyes.\",0\n7996,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18407,\"Tears roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone. At home, someone\",\"Tears roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone.\",\"At home, someone\",gold,pulls out his wallet and searches on his bag.,carries a bowl of popcorn from someone's table in the dining table.,'s daughter bows and walks toward the door with a stick of her heads.,finds a note from someone.,3\n7997,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18405,\"Looking up into her dad's jowly face, looking at her with fierce deep love, someone smiles. He puts an arm around her, and she\",\"Looking up into her dad's jowly face, looking at her with fierce deep love, someone smiles.\",\"He puts an arm around her, and she\",gold,looks at him tearfully.,lays her head on his big barrel chest.,smiles quickly and rubs himself with his.,gently kisses him passionately on the cheek.,1\n7998,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18409,\"Glumly she steps into the room, and looks at all the clothes piled up on the bed. She\",\"Glumly she steps into the room, and looks at all the clothes piled up on the bed.\",She,gold,chats in a plush acoustic chair.,\"slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together.\",remains out - ahead typing apart a bible.,moves the dish aside and back towards an empty window.,1\n7999,lsmdc1019_Confessions_Of_A_Shopaholic-80921,18410,\"She slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together. In his office, someone\",\"She slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together.\",\"In his office, someone\",gold,\"picks up the empty photo frame from his desk, and looks at it with a sigh.\",covers two rows of brandy glasses.,lowers a needle through her bloody nose and gazes out.,\"sits staring at her daughter, hands clutching her mother's crotch.\",0\n8000,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18528,\"It morphs into someone, someone, and someone. Someone\",\"It morphs into someone, someone, and someone.\",Someone,gold,turns and follows someone as they enter the lobby of an apartment building.,is an orderly behind someone.,is dimly across the room with her hands up on front his ankles.,points to dark storm clouds gathering above the building's pinnacle.,3\n8001,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18525,Someone and someone watch as the smoky trail disappears. She,Someone and someone watch as the smoky trail disappears.,She,gold,lowers his wounded hand to the ceiling of her upper arms.,props the sticks of her bony hands on her false ears.,twirls the barrel along their round targets.,wiggles an inviting finger.,3\n8002,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18523,\"He, someone and someone place their pearls on the floor, then crush them under their feet. Billows out, engulfing their legs and\",\"He, someone and someone place their pearls on the floor, then crush them under their feet.\",\"Billows out, engulfing their legs and\",gold,flips all the way to the dance floor.,travels up their bodies which snakes its way out of the room.,presses the door below them in the round - carpeted room.,spreads them over one guy's arms.,1\n8003,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18526,She wiggles an inviting finger. It,She wiggles an inviting finger.,It,gold,\"squeezes called nyc models, gazing out the window.\",swoops through the protective fence that surrounds the empire state building's observation deck.,adds other cuff and adds the caviar to the cup.,'s ready to leave the ring.,1\n8004,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18524,\"Billows out, engulfing their legs and travels up their bodies which snakes its way out of the room. Someone and someone\",\"Billows out, engulfing their legs and travels up their bodies which snakes its way out of the room.\",Someone and someone,gold,sit in a supermarket.,peer through a volume.,watch as the smoky trail disappears.,run past a giant suspended in midair.,2\n8005,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18527,It swoops through the protective fence that surrounds the Empire State Building's observation deck. It,It swoops through the protective fence that surrounds the Empire State Building's observation deck.,It,gold,knocks on the door at the end.,very calmly cocks a racket.,\"morphs into someone, someone, and someone.\",wriggle out onto the balcony and down by a panel of delighted treasure.,2\n8006,lsmdc3027_GET_HIM_TO_THE_GREEK-12401,10947,Someone holds his arms out and the boy gives him a hug. The rock - star,Someone holds his arms out and the boy gives him a hug.,The rock - star,gold,matches the mouthpiece and drives through first.,holds him close then stands and steps away.,\"falls, sending him closely through the air and crashing, lying on rocky ground.\",hangs over the second floor as the doors swing closed.,1\n8007,lsmdc1034_Super_8-8192,18182,Now someone is about three years old. His mother,Now someone is about three years old.,His mother,gold,\"offers the check, then holds it up to someone.\",measures his height against the wall.,has opened the door.,does not dial his phone.,1\n8008,lsmdc1034_Super_8-8192,18188,She laughs into the camera. Someone,She laughs into the camera.,Someone,gold,writhes in shallow water beside her.,steps across the cafe.,waves at the camera.,shakes an invisible hair to her friend.,2\n8009,lsmdc1034_Super_8-8192,18180,His mother blows out a solitary candle on his cake. She,His mother blows out a solitary candle on his cake.,She,gold,enters the shop and peeks through a window then leans beside him.,pushes someone to a table and lets someone go.,picks him up in her arms.,picks up the source of the music.,2\n8010,lsmdc1034_Super_8-8192,18199,\"Later, someone carefully slips her key into her front door and opens it. She\",\"Later, someone carefully slips her key into her front door and opens it.\",She,gold,walks over to the wall.,opens the door and lurches downstairs and pulls out a letter from the slide.,steps into the hall and puts the key in a dish on a side board.,stands in front of himself and sees someone in a black leotard.,2\n8011,lsmdc1034_Super_8-8192,18195,It vibrates across the tabletop. Someone,It vibrates across the tabletop.,Someone,gold,wipes the tears from her eyes.,\"pops up, speeding up, by the police.\",feels his eyes as he shakes the cork at his wife.,frowns blankly and turns his attention to the book.,0\n8012,lsmdc1034_Super_8-8192,18197,He and someone exchange a look. People,He and someone exchange a look.,People,gold,get into the driver's seat.,stare out of the window as they follow.,leap backward into the air.,go over to the hole and peer through it.,3\n8013,lsmdc1034_Super_8-8192,18201,She sees someone sitting in the front room. She,She sees someone sitting in the front room.,She,gold,\"goes in to him, and finds him smoking and drinking.\",pulls a cellphone from her purse and answers with a smile.,sits fully clothed in an armchair.,turns to record the main propeller.,0\n8014,lsmdc1034_Super_8-8192,18200,She steps into the hall and puts the key in a dish on a side board. She,She steps into the hall and puts the key in a dish on a side board.,She,gold,holds open a phone.,\"falls into the water, frowning.\",watches someone feed from his computer.,sees someone sitting in the front room.,3\n8015,lsmdc1034_Super_8-8192,18193,Someone watches the last bit of footage which is of someone's mother pushing him on a swing. The film,Someone watches the last bit of footage which is of someone's mother pushing him on a swing.,The film,gold,is thrown from the hoop and the wrecked both awkward.,cuts to someone's silhouette including his trousers.,runs out and spins around on the reel.,moves back as someone recklessly rolls away and goes into the control room.,2\n8016,lsmdc1034_Super_8-8192,18189,Someone waves at the camera. Someone,Someone waves at the camera.,Someone,gold,watches someone as someone hurries toward the entrance.,keeps his hands on their hips as he watches.,looks over at someone.,holds up a marker.,2\n8017,lsmdc1034_Super_8-8192,18191,She is sitting with her back to him. Her shoulders heave and tears,She is sitting with her back to him.,Her shoulders heave and tears,gold,roll down her face.,slide down someone's cheeks.,roll down her cheeks.,make down her face as she cries.,0\n8018,lsmdc1034_Super_8-8192,18176,A Cinay projector starts up. Someone,A Cinay projector starts up.,Someone,gold,stands as someone takes it from the table.,tries to copy the school story.,picks up the typewriter and wraps it inside him.,moves forward to watch the film.,3\n8019,lsmdc1034_Super_8-8192,18192,Her shoulders heave and tears roll down her face. She,Her shoulders heave and tears roll down her face.,She,gold,struggles to find the words.,pulls herself ecstatically and rises over the couch.,opens her eyes triumphantly.,shifts her sober gaze.,0\n8020,lsmdc1034_Super_8-8192,18185,\"Someone watches as the footage changes to him with his mother at Christmas. On screen, she\",Someone watches as the footage changes to him with his mother at Christmas.,\"On screen, she\",gold,smiles as someone holds up a present.,\"sits a clothed goblin on the wall, his hands curled around her shoulder.\",reads plenty of clothes.,is: eight years later.,0\n8021,lsmdc1034_Super_8-8192,18177,Someone moves forward to watch the film. The footage,Someone moves forward to watch the film.,The footage,gold,is of someone as a baby with his mother.,continues across the lot and finds a grab someone.,is a file of about f. - arizona - life.,is a wave of someone about someone beside this.,0\n8022,lsmdc1034_Super_8-8192,18184,She kisses a cut on his hand better. Someone,She kisses a cut on his hand better.,Someone,gold,watches as the footage changes to him with his mother at christmas.,rolls her head and sinks into her seat belt.,\"leads someone to the hall, gazing out toward his desk.\",leans close to her gently leans a hand on someone's shoulder.,0\n8023,lsmdc1034_Super_8-8192,18179,He sucks on her locket as she holds him. His mother,He sucks on her locket as she holds him.,His mother,gold,blows out a solitary candle on his cake.,\", nervously, is asleep comfortably in someone's bed from the bed.\",is belly dancing helplessly.,holds ready for her.,0\n8024,lsmdc1034_Super_8-8192,18178,The footage is of someone as a baby with his mother. He,The footage is of someone as a baby with his mother.,He,gold,\"walks back to her, imploring what someone is saying.\",pulls out a stained - iron window.,sucks on her locket as she holds him.,is a little little rusty.,2\n8025,lsmdc1034_Super_8-8192,18198,People go over to the hole and peer through it. The lights of the tomb and the water tower,People go over to the hole and peer through it.,The lights of the tomb and the water tower,gold,are on the lavender carpet.,are all very clean.,shows several sailors hallway up outside.,can be seen in the distance through it.,3\n8026,lsmdc1034_Super_8-8192,18187,\"He watches somberly as on screen, his mother picks him up and plays with him in the garden. She\",\"He watches somberly as on screen, his mother picks him up and plays with him in the garden.\",She,gold,guided by other dancers.,laughs into the camera.,takes a second orbit.,opens the refrigerator and makes a sandwich.,1\n8027,lsmdc1034_Super_8-8192,18183,His mother measures his height against the wall. She,His mother measures his height against the wall.,She,gold,\"manages a cautious look at the associates, then snaps heads back inside.\",kisses a cut on his hand better.,cracks around the wood and sinks to the floor.,indicates the writers's edge.,1\n8028,lsmdc1034_Super_8-8192,18186,\"On screen, she smiles as someone holds up a present. He watches somberly as on screen, his mother\",\"On screen, she smiles as someone holds up a present.\",\"He watches somberly as on screen, his mother\",gold,\"comes out of her apartment, glowers at her laptop.\",picks him up and plays with him in the garden.,sits next to him leaning on the rail.,pulls about to say something else.,1\n8029,anetv_fnKOW7tJA1A,18919,He begins doing a gymnastic routines on the parallel bars. He,He begins doing a gymnastic routines on the parallel bars.,He,gold,does a gymnastics routine on the bars as he finishes.,\"does numerous flips and flips, he dismounts and lands on the mat.\",does push - ups on the bars while he talks.,dismounts and lands on a mat.,3\n8030,anetv_fnKOW7tJA1A,3895,A man is doing a routine on the parallele bars. He,A man is doing a routine on the parallele bars.,He,gold,does push ups on the bars.,'s the main game.,is swinging forward and backward.,does a gymnastics routine on the bars.,2\n8031,anetv_fnKOW7tJA1A,18918,A man jumps onto parallel bars. He,A man jumps onto parallel bars.,He,gold,does a gymnastics routine on a beam.,begins doing a gymnastic routines on the parallel bars.,does push ups on the parallel beam.,does a gymnastics routine on the balance beam.,1\n8032,anetv_fnKOW7tJA1A,3896,He is swinging forward and backward. He,He is swinging forward and backward.,He,gold,completes his routine and jumps off.,runs through the long streets and lands within a row of trees.,raises a large hammer and throw a baton.,starts flipping back and forth as he cheers without the jumping.,0\n8033,anetv_MinmayCk2Nk,15123,The man does a handstand and dismounts. The man,The man does a handstand and dismounts.,The man,gold,dismounts from the mat.,takes a bow and starts walking away.,climbs far back before flipping quickly and jumps back flipping.,dismounts from the left pole.,1\n8034,anetv_MinmayCk2Nk,15121,We see a male gymnast prepare to use the pommel horse. The man,We see a male gymnast prepare to use the pommel horse.,The man,gold,does several jumps in triumph.,rides with his horse back and forth in fast motion.,stops and rides down slowly.,mounts the pommel horse and spins his legs around it.,3\n8035,anetv_MinmayCk2Nk,15122,The man mounts the pommel horse and spins his legs around it. The man,The man mounts the pommel horse and spins his legs around it.,The man,gold,dismounts and spins with the board in his hands.,dismounts and throws a karate arm.,does a handstand and dismounts.,moves after the thoughtful horse and then gets on the horse.,2\n8036,anetv_7g3YO0-R4qk,14430,A swimming pool is shown in a room. Men,A swimming pool is shown in a room.,Men,gold,are playing a volleyball and playing water polo.,are playing beer pong and playing beer pong.,are sitting on plastic tables in a room.,are shown jumping into the pool and swimming laps.,3\n8037,lsmdc1001_Flight-71915,18114,\"Someone speeds down the mud road, splashing slush to the side. He\",\"Someone speeds down the mud road, splashing slush to the side.\",He,gold,brakes when he sees news crews outside the farm house.,sits slouched.,stands across the water speeding over the side of the road.,fits a new box of crates to someone.,0\n8038,lsmdc1001_Flight-71915,18115,\"He brakes when he sees news crews outside the farm house. Some reporters spot him, he\",He brakes when he sees news crews outside the farm house.,\"Some reporters spot him, he\",gold,turns the walk away from them.,takes his poker in his carriage.,walks across the street to the car.,reverses and drives back onto the main road.,3\n8039,lsmdc1001_Flight-71915,18119,He steps out of the car and walks up a foot path to a house. A man,He steps out of the car and walks up a foot path to a house.,A man,gold,is cutting someone's hair.,\"rides away across the street, pursued by oncoming traffic, gazing out at the city where dark city lights twinkling on the city.\",slams the doors shut behind him.,watches someone from a parked car and speaks into his cell phone.,3\n8040,lsmdc1001_Flight-71915,18116,\"Some reporters spot him, he reverses and drives back onto the main road. He\",\"Some reporters spot him, he reverses and drives back onto the main road.\",He,gold,stops opposite a house in a quiet neighborhood.,holds up a parka as he hesitantly goes by.,carries a swiftly - moving dildo along with the light.,\"the truck's entrance, someone as a pop, surrounded by the dark corner and pulls out the golden bar alongside the car.\",0\n8041,lsmdc1001_Flight-71915,18118,He chugs on the bottle of juice. He,He chugs on the bottle of juice.,He,gold,adds detail to the whiskey's drink.,\"walks to another clinic, puts someone to a hook and stares at it.\",\"opens the door, takes a mixer mix and dumps its contents in a dark room.\",steps out of the car and walks up a foot path to a house.,3\n8042,lsmdc1001_Flight-71915,18117,He stops opposite a house in a quiet neighborhood. He,He stops opposite a house in a quiet neighborhood.,He,gold,wanders through traffic and turns on the lights.,chugs on the bottle of juice.,leads the way to his motel.,wanders in for a dirt road dipping heavily from a snow fence beyond the mirror.,1\n8043,anetv_iuQHLWWhSEY,5852,She spins herself around and performs more tricks. She,She spins herself around and performs more tricks.,She,gold,jumps off the side in the end as others watch.,\"pauses again as she walks along, doing various other tricks across the water.\",jumps to the end of the swing.,jumps into a pit and moves around off the ground.,0\n8044,anetv_iuQHLWWhSEY,10396,\"She tries to roll forward, then falls. She\",\"She tries to roll forward, then falls.\",She,gold,\"punches again, knocking him down.\",hunter draws another wand.,\"stands up and balances, jumping off the beam.\",punches out at her in slow motion.,2\n8045,anetv_iuQHLWWhSEY,5851,A young girl is seen standing up on an exercise beam. She,A young girl is seen standing up on an exercise beam.,She,gold,spins herself around and performs more tricks.,begins performing gymnastic tricks on uneven bars.,begins moving around on a beam as well as does leaps and flips.,moves back and fourth as well as jumping down and catching her baton and pull away.,0\n8046,anetv_cgfJnog1WLE,14998,The second young lady comes back and does the same thing as well as the female who came after her. The girl,The second young lady comes back and does the same thing as well as the female who came after her.,The girl,gold,finishes and pushes around the teacher.,comes back but realizes the weight is too heavy and gives up lifting it.,is seen washing shoes and present.,is interviewed and leading the time.,1\n8047,anetv_cgfJnog1WLE,14994,A young lady with broad shoulders and pig tails approaches a stage in prepares her mind. The lady,A young lady with broad shoulders and pig tails approaches a stage in prepares her mind.,The lady,gold,jumps off the beam and begins to rhythmically stack the woman's legs and body before an audience in sand.,avoids a hopscotch bat and finds another pinata.,cracks her knuckles and then bends down and tries to lift the weights.,sits up and sings with the baton dancer.,2\n8048,anetv_cgfJnog1WLE,14999,\"The girl comes back but realizes the weight is too heavy and gives up lifting it. However, the original girl comes back and continues to lift more and more weight with ease until the last time, she then bows and they\",The girl comes back but realizes the weight is too heavy and gives up lifting it.,\"However, the original girl comes back and continues to lift more and more weight with ease until the last time, she then bows and they\",gold,continue to stand for the first step.,walk up to an olympic stage and receive their metal.,walk back together on the mat.,walk off to the wooden room where the male with the same landing bike makes a splash.,1\n8049,anetv_cgfJnog1WLE,14996,\"Another girl then walks up and lifts the bar half way, realizes she s incapable and drops it. After she walks off she\",\"Another girl then walks up and lifts the bar half way, realizes she s incapable and drops it.\",After she walks off she,gold,turns the camera around and turns to the camera how to work the discs.,bends down and sits up on the ground while the camera focuses turning the child.,begins preparing the ingredients and begins mixing her things together in a few seconds.,\"brushes her self off and attempts again and raises it over her head, drops it, and walks away congratulating herself.\",3\n8050,anetv_cgfJnog1WLE,14997,A screen of scores are then shown and a different girl attempts the weight. The second young lady,A screen of scores are then shown and a different girl attempts the weight.,The second young lady,gold,stops skipping and starts rotating her right arm.,grabs the ball and throws it again.,comes back and does the same thing as well as the female who came after her.,is shown throwing the bat again in a slow motion knocking it over.,2\n8051,anetv_cgfJnog1WLE,14995,The lady cracks her knuckles and then bends down and tries to lift the weights. Too much weight is on the bar and the girls,The lady cracks her knuckles and then bends down and tries to lift the weights.,Too much weight is on the bar and the girls,gold,\"ends up twisting her arm in a circle, drops the bar and cries out in agony.\",steps back on the bar and tries to drink the cup.,stand together to talk to each other while pointing.,put her arms on her.,0\n8052,lsmdc1046_Australia-90791,16300,\"He looks her in the eye and walks off, leaving her uncomfortable and disappointed. Someone's\",\"He looks her in the eye and walks off, leaving her uncomfortable and disappointed.\",Someone's,gold,sitting glumly by a cooking fire with people.,got a bottle house puppy and sugar in special gear.,imagines people spinning back to the windows in the setting.,lee racked against his headlamps.,0\n8053,lsmdc1046_Australia-90791,16302,She dips her fingers in ash. She,She dips her fingers in ash.,She,gold,\"walks over to the stag, dropping, the voice measured.\",mixes a handful of yellow caviar onto another cake.,finds the withdraws pole in her hand.,\"smears black ash on his cheek, and smiles.\",3\n8054,lsmdc1046_Australia-90791,16301,Someone's sitting glumly by a cooking fire with people. She,Someone's sitting glumly by a cooking fire with people.,She,gold,tilts its head to give no response to anther.,is eating someone's coffee.,puts cakes down on a shelf.,dips her fingers in ash.,3\n8055,lsmdc1046_Australia-90791,16299,\"He breaks eye contact, and nods thoughtfully. He\",\"He breaks eye contact, and nods thoughtfully.\",He,gold,leans back and kisses her.,\"pulls out a timekeeper's rod, takes the check, and gives it to the guy.\",\"looks her in the eye and walks off, leaving her uncomfortable and disappointed.\",\"takes a seashell, stares pensively, and opens his eyes.\",2\n8056,anetv_WcQV3OzK_sc,6014,Several people and kids watch on the side and the woman puts the girls hair into ponytails. She,Several people and kids watch on the side and the woman puts the girls hair into ponytails.,She,gold,looks back and then continues to stand back to her finished putting.,finally takes the boys out of her handbag and puts them on the table.,sits the game facing three of the women and watches while an adult and girl practice.,speaks to the camera and cuts the girls hair when the dad puts the hair on his head and makes the kids laugh.,3\n8057,anetv_WcQV3OzK_sc,6015,\"The woman continues cutting her hair while others watch and speaks to the camera, followed by the woman straightening the hair and showing it off in slow motion. The girl\",\"The woman continues cutting her hair while others watch and speaks to the camera, followed by the woman straightening the hair and showing it off in slow motion.\",The girl,gold,continues moving all around the back in various locations while the camera captures her movements.,holds her hair and screams in excitement at the camera.,continues braiding her hair and cutting her hair back with her yarn.,continues to remove more makeup and then puts mascara to her hair and uses a tissue to style her hair.,1\n8058,anetv_V1CX5B7ih6c,12760,They jump and kick at each other. They,They jump and kick at each other.,They,gold,hold hands as they go.,sets the baton to the ground.,steps backward from the platform and onto a mat fixing their diaper before getting up and also practices jump in their workout routine.,roll around on the mat until one of them pins the other.,3\n8059,anetv_V1CX5B7ih6c,12759,\"Two men are on a padded surface, fighting. They\",\"Two men are on a padded surface, fighting.\",They,gold,put their arms around each other.,move around in front of the group then begin dancing up and down.,see the crowd in the bleachers and out introduction.,jump and kick at each other.,3\n8060,anetv_7mmXZeOJT8w,18581,A child's mouth is seen close up with a person brushing his teeth. The man,A child's mouth is seen close up with a person brushing his teeth.,The man,gold,speaks to the camera as he continues to listen into the music.,continues swinging with other girls on the side.,continues brushing while the boy smiles.,shows how to brush a brush with his teeth.,2\n8061,anetv_7mmXZeOJT8w,16040,Someone is brushing his teeth with a toothbrush. They,Someone is brushing his teeth with a toothbrush.,They,gold,can finish him running and action.,take the toothbrush out of his mouth.,are working as the vinegar and water drip previous play on the sink.,fall back and forth over the dancer's touch.,1\n8062,anetv_7mmXZeOJT8w,16039,A boy wearing glasses is sitting down. Someone,A boy wearing glasses is sitting down.,Someone,gold,puts the ice in his mouth and dumps the contents into a cup.,finishes and licks around.,is showing how to put the bottle to his ear.,is brushing his teeth with a toothbrush.,3\n8063,anetv_7mmXZeOJT8w,18582,The man continues brushing while the boy smiles. He pulls out the toothbrush and the boy,The man continues brushing while the boy smiles.,He pulls out the toothbrush and the boy,gold,shows him the fingers.,brushes his hair and the camera cuts off.,looks to the camera.,clips him and rubs his hands.,2\n8064,anetv_mxZRW_Xy7ks,15664,People are snowboarding between two fences in a small hall going down a small slope. people,People are snowboarding between two fences in a small hall going down a small slope.,people,gold,are driving over the snow as fast as they can before riding in the car.,are standing in a snowy mountain in snowboards.,come down on a ladder while talking and talking.,are laying on rafts in a river.,1\n8065,anetv_mxZRW_Xy7ks,15665,People are standing in a snowy mountain in snowboards. people,People are standing in a snowy mountain in snowboards.,people,gold,are riding on recumbent bikes in the area.,are eating sitting outside a tent.,are hula the dirt store.,are riding in a car.,1\n8066,anetv_ULPw4uZcx5I,140,A person is sitting in a tube with other people standing around and pushing the person down a snowy trail. The person,A person is sitting in a tube with other people standing around and pushing the person down a snowy trail.,The person,gold,flies down the trail in the tube with another person following down afterwards.,is more water skiing as they talk at the camera.,is then seen riding outside the fourth snow covered and swimming around a large end.,continues skiing up and down the hill while the camera continues to capture another person in the sun.,0\n8067,anetv_K1_g97xCqKg,10294,The video begins with a closeup of a tire in an auto shop. The cameraman,The video begins with a closeup of a tire in an auto shop.,The cameraman,gold,pulls the tire off of the vacuum.,uses his hand to show a specific spot on the tire and zooms in closer.,opens the waterside gate and shows the keys.,looks out the window.,1\n8068,anetv_K1_g97xCqKg,10295,The cameraman uses his hand to show a specific spot on the tire and zooms in closer. The man,The cameraman uses his hand to show a specific spot on the tire and zooms in closer.,The man,gold,puts down the camera and begins working on the tire.,spins the car on the monitor and weaves the cars motion again.,places the tool on the handlebar and shakes it down.,continuously zooms all along the piece of metal while the camera pans back to the camera.,0\n8069,anetv_K1_g97xCqKg,10297,He grabs the camera again to show different screws. The video,He grabs the camera again to show different screws.,The video,gold,cuts back to a game of various tricks.,is on the step again.,continues with the man reading the video with signs and talks directly to the camera.,ends showing both sides of the tire.,3\n8070,anetv_K1_g97xCqKg,10296,The man puts down the camera and begins working on the tire. He,The man puts down the camera and begins working on the tire.,He,gold,runs his hand through his pocket and looks at the camera in the mirror.,continues to speak to the camera and continues to ski around it.,grabs the camera again to show different screws.,turns around to tighten the hole in his back and continue riding his bike.,2\n8071,lsmdc3046_LARRY_CROWNE-21673,10604,\"Later, someone rides glumly as her husband drives. A dessert box\",\"Later, someone rides glumly as her husband drives.\",A dessert box,gold,moves out of the palace.,sits on the dashboard.,passes under the curb past someone.,is filled with happy children.,1\n8072,anetv_qBvQjv1XyfQ,18239,A man is shown talking to the camera and leads into an athletic girl swinging around on uneven bars. She,A man is shown talking to the camera and leads into an athletic girl swinging around on uneven bars.,She,gold,is then shown spinning and jumping on a bike performing various jumps.,finishes flipping and less to herself by speaking to the camera.,hops down while the man talks again and switches back and fourth to him talking and her performing.,is then shown throwing a javelin across the field and throwing her arms in the air.,2\n8073,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10465,Now two bodyguards flank a man in a tacky suit as he heads up a winding stone stairway. Camera flashes,Now two bodyguards flank a man in a tacky suit as he heads up a winding stone stairway.,Camera flashes,gold,burn through the trees.,visible in the fingers of a graceful sun.,revealing a pair of white stoops.,erupt around him as he ends a call on his cellphone.,3\n8074,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10467,\"He heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform. Below, a fighter\",He heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform.,\"Below, a fighter\",gold,\"is seen in a room, wearing a welding helmet.\",fires a lamp at the cordon.,smooths out fluid from his pipe.,faces a hog on a leash.,3\n8075,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10469,\"Now as someone's associate lights a cigarette, someone approaches. Someone shoves him against a wall and someone\",\"Now as someone's associate lights a cigarette, someone approaches.\",Someone shoves him against a wall and someone,gold,offers a quick look.,returns on a corridor.,holds up a knife.,hops onto the platform.,2\n8076,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10468,\"Below, a fighter faces a hog on a leash. In a back room, the tacky man\",\"Below, a fighter faces a hog on a leash.\",\"In a back room, the tacky man\",gold,addresses thugs counting cash.,opens a passionately spattered boot.,waves his hand against someone nets.,leaps out of the way.,0\n8077,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10471,\"Cringing, someone shakes his head. Part of his face\",\"Cringing, someone shakes his head.\",Part of his face,gold,reaches out to reveal someone.,shows his charcoal gesture.,twists and then falls to rest.,becomes skeletal then morphs back.,3\n8078,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10466,Camera flashes erupt around him as he ends a call on his cellphone. He,Camera flashes erupt around him as he ends a call on his cellphone.,He,gold,presses his mouth to the dashboard and takes a seat at the phone.,heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform.,grabs the items from someone.,\"folds his arms, gazes at the paper remains lying on the bench and hangs the sheet.\",1\n8079,anetv_7o-2My6U3GU,6320,The man begins by taking the shovel and shoveling off some of the snow from his walkway and dumping it on the side lawn while his dog plays around in the snow. He,The man begins by taking the shovel and shoveling off some of the snow from his walkway and dumping it on the side lawn while his dog plays around in the snow.,He,gold,walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow.,\"walks in, speeding off and falls off the hood and not looking at the clock.\",runs under the hill and wipes down the snow with a shovel.,shovels wearing a green towel and wipes it with his sleeve.,0\n8080,anetv_7o-2My6U3GU,6321,\"He walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow. After he's done, he\",He walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow.,\"After he's done, he\",gold,passes the back of the house away from the path he came.,keeps the shovel down and walks back into the house.,\"puts and starts shoveling the driveway, leaving the snow falls while blowing snow.\",takes and cuts off the hedge as he blower from the snow.,1\n8081,anetv_7o-2My6U3GU,17454,A close up of snow is seen with a shovel next to it. A person then,A close up of snow is seen with a shovel next to it.,A person then,gold,brushes snow from a car with a hose.,begins pushing the snow along the area.,lays down on the ground next to a row of grass.,\"fumbles around, wheels back and fourth, sits up and talks to the camera.\",1\n8082,anetv_2FRzNpVz6f8,18893,A bunch of teammates are riding horses on the field. They,A bunch of teammates are riding horses on the field.,They,gold,look around and find coaches waiting at net for pictures.,are involved in a game of volleyball.,are playing a game of polo.,are engaged in a game of field hockey.,2\n8083,anetv_2FRzNpVz6f8,18894,They are playing a game of polo. The people,They are playing a game of polo.,The people,gold,swim off to the side and one of them clap their hands.,use open hands to turn the ball back and forth between the puck on top of the net.,\"run on their horses, trying to hit the ball.\",continuously kick the ball back and forth in front of each other.,2\n8084,anetv_K8XNOs0AwaE,17383,He takes off his helmet to talk. The men are then shown engaged in a fight and several others,He takes off his helmet to talk.,The men are then shown engaged in a fight and several others,gold,try to tear them apart.,fight down the cross.,repeat the actions with text across the screen.,scores opponent and other kids nearby.,0\n8085,anetv_K8XNOs0AwaE,17382,A man rides a bmx dirt bike next to a tree. He,A man rides a bmx dirt bike next to a tree.,He,gold,rides into the parking lot.,ride around on blue t - jump and ride on skateboards.,takes off his helmet to talk.,climbs on top of it and raises the horse.,2\n8086,anetv_K8XNOs0AwaE,13308,\"The camera man shows the other guys on motorcycles continue on riding and one stops and talk to the first guy who took off his helmet while a guy takes pictures in the back ground. Both men gets off there bike and start to fight each other, they\",The camera man shows the other guys on motorcycles continue on riding and one stops and talk to the first guy who took off his helmet while a guy takes pictures in the back ground.,\"Both men gets off there bike and start to fight each other, they\",gold,\"continue on and skateboard the jumping some bit and gets on a surfboard who good american people watch, one carrying a c logo.\",\"start swinging at each other, grabs each other and falls to the ground.\",move on and adjust the right position on the mat.,are now working on the new model.,1\n8087,anetv_K8XNOs0AwaE,13309,\"Both men gets off there bike and start to fight each other, they start swinging at each other, grabs each other and falls to the ground. Many other guys rush to the fight and breaks in up, one of the guys\",\"Both men gets off there bike and start to fight each other, they start swinging at each other, grabs each other and falls to the ground.\",\"Many other guys rush to the fight and breaks in up, one of the guys\",gold,punches his green friends and helps him push the old woman into either side.,gets on his knees and tries to pull the line back.,is bleeding from him forehead while the other walks away with a female.,helps them onto the mat.,2\n8088,lsmdc1042_Up_In_The_Air-88712,8149,Someone drives up to his old school. He and someone,Someone drives up to his old school.,He and someone,gold,stand facing in the opposite directions.,get out of the car.,sit at the edge.,drive down a driveway.,1\n8089,lsmdc1042_Up_In_The_Air-88712,8155,They both clamber into a classroom. They,They both clamber into a classroom.,They,gold,speed out of a motorboat will not pass.,look at old newspaper photos of the basketball team.,hang over the wall drinking posters while dressed as the front door.,knocks on the door.,1\n8090,lsmdc1042_Up_In_The_Air-88712,8152,She goes to a window. Someone,She goes to a window.,Someone,gold,deflates as she hurries past the bus.,waves a tug alongside her.,comes over to someone.,undoes a catch with a credit card and pulls the window open.,3\n8091,lsmdc1042_Up_In_The_Air-88712,8150,He and someone get out of the car. He,He and someone get out of the car.,He,gold,finds someone staring at the window floor.,takes a seat next to her and looks at the door.,\"looks at the long, low building.\",answers the phone.,2\n8092,lsmdc1042_Up_In_The_Air-88712,8151,\"He looks at the long, low building. They\",\"He looks at the long, low building.\",They,gold,carry a group of chairs below them.,comes out over the sales table.,flick straight up to each fly.,tramp across some snow and walk up to the entrance.,3\n8093,lsmdc0009_Forrest_Gump-50625,15101,Someone looks down at someone. He,Someone looks down at someone.,He,gold,looks down at his floor.,scratches the back of his head.,pulls his medal of honor from around his neck.,looks at the man who forces a grin and puts his arms around someone's neck.,2\n8094,lsmdc0009_Forrest_Gump-50625,15105,They walk toward the entrance of the bus. Someone,They walk toward the entrance of the bus.,Someone,gold,\"pulls in after someone, who watches him hurry away.\",smiles as someone looks at her.,looks relieved at pleasure.,\"is in a open - plan office, almost alone.\",1\n8095,lsmdc0009_Forrest_Gump-50625,15102,He pulls his Medal of Honor from around his neck. Someone,He pulls his Medal of Honor from around his neck.,Someone,gold,comes in to a plate and glares at the kung fu master.,places the medal of honor in someone's hand.,gestures him towards the band.,turns and walks off.,1\n8096,lsmdc0009_Forrest_Gump-50625,15108,Someone gives someone the peace sign as the bus pulls away. Someone,Someone gives someone the peace sign as the bus pulls away.,Someone,gold,walks past the girls' office.,gives someone the peace sign.,sits at someone's side.,arrives at an fbi suite transport facility and union soldiers.,1\n8097,lsmdc0009_Forrest_Gump-50625,15103,Someone places the Medal of Honor in someone's hand. Someone,Someone places the Medal of Honor in someone's hand.,Someone,gold,looks at someone and studies her hand.,looks up at him.,points to someone and extends a hand to the burner.,rushes down to the bottle of glasses to her eyes.,1\n8098,lsmdc0009_Forrest_Gump-50625,15106,Someone smiles as someone looks at her. Someone,Someone smiles as someone looks at her.,Someone,gold,climbs up into the bus.,turns to the bedside.,sees someone via a blue dress.,\"seethes, wide - eyed.\",0\n8099,lsmdc0009_Forrest_Gump-50625,15107,Someone looks up and smiles sadly. Someone,Someone looks up and smiles sadly.,Someone,gold,stares at an unhatched egg.,looks over the lobby as someone comes inside.,gives someone the peace sign as the bus pulls away.,looks in someone's direction.,2\n8100,lsmdc0009_Forrest_Gump-50625,15104,Someone turns and walks up to someone. They,Someone turns and walks up to someone.,They,gold,tries to pick themselves up.,belong through the exchanges.,walk toward the entrance of the bus.,sack their hand to someone.,2\n8101,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2711,\"He is seeping out across the blood red sky, his face grave. He\",\"He is seeping out across the blood red sky, his face grave.\",He,gold,blasts him out of pries cage window.,spurs his horse on.,struggles to lean forward and strike in both arms.,looks down and sees the water's glass.,1\n8102,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2710,The main highway south to Minas Tirith. he looks toward the saw toothed mountains of Mordor. He,The main highway south to Minas Tirith. he looks toward the saw toothed mountains of Mordor.,He,gold,wiped his skies and skies.,\"heavily, someone steps away from the distant helicopters and stops, its head shining as a young someone lowers his head.\",\"is seeping out across the blood red sky, his face grave.\",swerves his head up with his oxygen mask.,2\n8103,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2713,His eyes settle on one old parchment. He,His eyes settle on one old parchment.,He,gold,gives an impassive look.,\"murmurs hurriedly to himself, reading.\",looks at something under his stunned eye.,\"steps to the booth and stares at the photo, awarded to their headlamps.\",1\n8104,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2709,Nine black riders burst out of Minas Morgul and charge toward Camera. The main highway south to Minas Tirith. he,Nine black riders burst out of Minas Morgul and charge toward Camera.,The main highway south to Minas Tirith. he,gold,\"jumps, banging on one of the restaurants when he arrives.\",attaches the buckles to the deck pipe.,looks toward the saw toothed mountains of mordor.,turns and walks off into the jungle.,2\n8105,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2712,Making is way down into the lower depths of the Citidel. His eyes,Making is way down into the lower depths of the Citidel.,His eyes,gold,\"are still on the landing handle, which has the process grandfather be firmly closed.\",settle on one old parchment.,are cramped under the water.,scan no human bodies.,1\n8106,lsmdc1055_Marley_and_me-96617,2192,They use torches to search the rainy night. Someone,They use torches to search the rainy night.,Someone,gold,scowls on the woman's finger.,switches the light on in the barn.,and someone making their way through the city.,blows open the stubs behind them.,1\n8107,lsmdc1055_Marley_and_me-96617,2194,The children are gathered together at a window. She,The children are gathered together at a window.,She,gold,seems oblivious to the letters on the screen.,shines a baking sheet over the wooden display.,\"searches through them window, knocking stereo down on the far side.\",picks up someone with a reassuring smile.,3\n8108,lsmdc1055_Marley_and_me-96617,2193,Someone switches the light on in the barn. The children,Someone switches the light on in the barn.,The children,gold,are gathered together at a window.,shambles a stack of papers at the parcel.,carry his penguin away from a shelter.,wears flower voices upstairs.,0\n8109,anetv_BDQHEemWnSk,15546,\"A young woman is skating along a boardwalk and bridge. Some men join her, and they\",A young woman is skating along a boardwalk and bridge.,\"Some men join her, and they\",gold,struggle back and forth from the other side.,bend in and expose the top then bowling up again.,begin to go downhill in front of each other.,do several stunts as they skate.,3\n8110,anetv_BDQHEemWnSk,15547,\"Some men join her, and they do several stunts as they skate. They\",\"Some men join her, and they do several stunts as they skate.\",They,gold,\"fast jumping at high speed, they advance hold each other as a line launches into a bridge.\",go over bridges and city sidewalks.,pass someone into the water.,\"move forward and further across the quarry, as they return to the coaches.\",1\n8111,anetv_A8KtrGjBodw,7518,A woman is seen opening a bottle of alcohol and pouring it into a class while speaking to the camera. The woman,A woman is seen opening a bottle of alcohol and pouring it into a class while speaking to the camera.,The woman,gold,continues speaking to the camera while holding up the glass of alcohol and ending by speaking more.,is continues mopping the floor with a large brush and kneeling down on another man speaking to the camera.,sits around in her while soaping her hands up with soap and leads into her putting her hands on her hips.,walks out of frame and zooms shot on the woman's cheeks and ends with the closing credits shown.,0\n8112,anetv_A8KtrGjBodw,14641,A woman walks into frame and pours herself a glass of wine. She,A woman walks into frame and pours herself a glass of wine.,She,gold,pours liquid to her glass then pours more into the bucket.,covers and blows a batch of basil first.,speaks to the camera while holding up the bottle.,then wraps an apron around her mouth as she bops herself.,2\n8113,anetv_A8KtrGjBodw,14642,She speaks to the camera while holding up the bottle. She,She speaks to the camera while holding up the bottle.,She,gold,stands up and picks up a cup of coffee.,drinks from the bottle while still speaking to the camera.,looks in the mirror and begins shaving his face and dancing to the camera.,laughs to the camera and laughs.,1\n8114,lsmdc3085_TRUE_GRIT-40536,10903,\"He grabs the kid with the broom, throws him to the ground. Someone\",\"He grabs the kid with the broom, throws him to the ground.\",Someone,gold,stick the cake and places it in a counter its size and smooth it out.,points to a pile of exposed embers on the big wooden bed.,boots the kid with the stick off the porch and goes into the shack.,\"pounces on someone, swinging back and forth against the sinuous old branches.\",2\n8115,lsmdc3085_TRUE_GRIT-40536,10904,Someone boots the kid with the stick off the porch and goes into the shack. A bell,Someone boots the kid with the stick off the porch and goes into the shack.,A bell,gold,hangs from the porch roof.,drops in the wire following him to talk.,\"is then caught, trying to go for it.\",patron tries the food which she drops for him to end the spider.,0\n8116,lsmdc3085_TRUE_GRIT-40536,10902,He cuts the donkey's rope and sets it free. He,He cuts the donkey's rope and sets it free.,He,gold,is put onto the pumpkin for the cookies and threw it.,holds another stethoscope to his ear.,\"grabs the kid with the broom, throws him to the ground.\",stops at the edge of the bureau and looks at his gloved hands.,2\n8117,lsmdc3085_TRUE_GRIT-40536,10907,The two kids sit staring at someone through narrowed eyes. Someone,The two kids sit staring at someone through narrowed eyes.,Someone,gold,\"shifts her eyes, then wipes her mouth with a pencil.\",'s in a garage with a police lamp stuck next.,drops his beer on the desk at the table and sits up.,comes out of the shack and shoves one of the kids to the ground.,3\n8118,lsmdc3085_TRUE_GRIT-40536,10899,Someone and someone ride side by side along by some rocks. They,Someone and someone ride side by side along by some rocks.,They,gold,emerge off the horse and run into the cruiser.,follow them down a street followed by several other people behind.,head towards a wooden shack.,push themselves through the tide of pyramids and deeper into the river.,2\n8119,lsmdc3085_TRUE_GRIT-40536,10908,Someone comes out of the shack and shoves one of the kids to the ground. He,Someone comes out of the shack and shoves one of the kids to the ground.,He,gold,lift the people over onto the cliff shaft.,flips a square of gold to someone.,takes a bite out of her sketchpad.,bundle his off in the dirt and goes out.,1\n8120,lsmdc3085_TRUE_GRIT-40536,10900,Two Native American kids sit on the porch tormenting a tied up donkey. He,Two Native American kids sit on the porch tormenting a tied up donkey.,He,gold,walks through the smoke.,leads following behind the distant girls.,\"stomps over to the kids, holding a big knife.\",spins in a goofy youthful ways.,2\n8121,lsmdc3085_TRUE_GRIT-40536,10901,\"He stomps over to the kids, holding a big knife. He\",\"He stomps over to the kids, holding a big knife.\",He,gold,looks to the right and the boy starts to disappear.,cuts the donkey's rope and sets it free.,rolls into a building's parking lot.,hands over her heart.,1\n8122,lsmdc3085_TRUE_GRIT-40536,10898,\"Someone watches, frowning as someone rides off across the plains. Someone and someone\",\"Someone watches, frowning as someone rides off across the plains.\",Someone and someone,gold,watch the retreating boys surround him.,ride side by side along by some rocks.,move closer to her.,find another huge mass of monks.,1\n8123,lsmdc3009_BATTLE_LOS_ANGELES-392,13725,\"He sits back in the doorway, clutching a radio. Someone\",\"He sits back in the doorway, clutching a radio.\",Someone,gold,lifts his brow and leaves.,\"looks from the mouse to it to the ground, its eyes shifting to the invisible covers.\",turns on his cell in the street behind him.,\"watches from his position, several yards away.\",3\n8124,lsmdc3009_BATTLE_LOS_ANGELES-392,13729,\"He lifts his head and gazes over his shoulder and his men. Lowering his eyes and tightening his lips, he\",He lifts his head and gazes over his shoulder and his men.,\"Lowering his eyes and tightening his lips, he\",gold,heads back toward the group.,rests his head on his hand.,turns and walks up to someone who turns and looks around.,gazes up at the present site of crystal gray.,0\n8125,lsmdc3009_BATTLE_LOS_ANGELES-392,13727,Someone gingerly approaches the wreckage. He,Someone gingerly approaches the wreckage.,He,gold,finds some charred remains by the door.,places his lapel over a baby.,uses it to gently brush.,is being pulled in.,0\n8126,lsmdc3009_BATTLE_LOS_ANGELES-392,13730,\"Lowering his eyes and tightening his lips, he heads back toward the group. He\",\"Lowering his eyes and tightening his lips, he heads back toward the group.\",He,gold,\"spots them, raindrops glistening in his face.\",keeps gazing back at the hammer.,glances around as the zookeeper looks around her.,\"marches pass the soldiers, who stand there, staring at him.\",3\n8127,lsmdc3009_BATTLE_LOS_ANGELES-392,13732,\"Now, as they walk amid burning buildings, a battle rages overhead. They\",\"Now, as they walk amid burning buildings, a battle rages overhead.\",They,gold,jog to a large rocky canteen.,are still too big on the buffet music.,arrive in a supermarket.,are holding basket balls.,2\n8128,lsmdc3009_BATTLE_LOS_ANGELES-392,13728,He finds some charred remains by the door. He,He finds some charred remains by the door.,He,gold,leans on his desk with an expression.,\"stops beer their water pours, sets it down, and drags someone toward the table.\",lifts his head and gazes over his shoulder and his men.,\"pulls his way upstairs, then takes out his cell.\",2\n8129,lsmdc3009_BATTLE_LOS_ANGELES-392,13719,The Marines stare gravely into each other's eyes. Someone,The Marines stare gravely into each other's eyes.,Someone,gold,puts a sack over his shoulders and attacks someone.,glances down at someone.,takes the letter from his pocket.,catches the teen's right eye.,2\n8130,lsmdc3009_BATTLE_LOS_ANGELES-392,13720,Someone takes the letter from his pocket. Someone,Someone takes the letter from his pocket.,Someone,gold,snatches the passport as he strolls in.,gulps down the whispered as he tiptoes away through the window into the backyard.,eyes someone and reaches to the heart.,looks him in the eye and gives a slight nod.,3\n8131,lsmdc3009_BATTLE_LOS_ANGELES-392,13733,They arrive in a supermarket. The injured man,They arrive in a supermarket.,The injured man,gold,sits down from the driver's passenger seat.,drags up a police pump.,returns to step forlornly at her.,\"winces, his face pale and sweaty.\",3\n8132,lsmdc3009_BATTLE_LOS_ANGELES-392,13722,Someone takes his pack for more ammo. He,Someone takes his pack for more ammo.,He,gold,goes back into the field.,rounds the corner and heads back to the principal's office.,passes and sees someone paddling behind him.,aims a bag of c - 4.,3\n8133,lsmdc3009_BATTLE_LOS_ANGELES-392,13724,Someone watches the aliens draw closer. He,Someone watches the aliens draw closer.,He,gold,nimbly shoves someone through his line of vision.,\"sits back in the doorway, clutching a radio.\",uses his wand as he peers through the pages.,\"sneers and shoots over the locked gate of a binding, which leaps out of the hole.\",1\n8134,lsmdc3009_BATTLE_LOS_ANGELES-392,13735,\"In a backroom, someone sweeps his rifle past storage boxes and an office desk. She\",\"In a backroom, someone sweeps his rifle past storage boxes and an office desk.\",She,gold,picks up a phone.,gives someone a high five to someone.,searches with a pencil.,finds a number of military agents.,0\n8135,lsmdc3009_BATTLE_LOS_ANGELES-392,13731,\"He marches pass the soldiers, who stand there, staring at him. Someone\",\"He marches pass the soldiers, who stand there, staring at him.\",Someone,gold,\"leaves, leaving someone quizzical right behind.\",\"stays motionless, following the staff sergeant with his eyes.\",has a good time.,\"rows away, where a brave boyish deputies gives a flagpole.\",1\n8136,lsmdc3009_BATTLE_LOS_ANGELES-392,13726,\"As the rest of the group slowly rise to their feet, someone gazes solemnly toward the bus. The vet\",\"As the rest of the group slowly rise to their feet, someone gazes solemnly toward the bus.\",The vet,gold,\"crouches in front of her, holding his head against his hand.\",looks from someone to someone.,looks over her shoulder.,closes the door behind someone.,2\n8137,lsmdc3009_BATTLE_LOS_ANGELES-392,13734,\"The injured man winces, his face pale and sweaty. In a backroom, someone\",\"The injured man winces, his face pale and sweaty.\",\"In a backroom, someone\",gold,switches on a set of sketch album.,glows through a stormy body.,sweeps his rifle past storage boxes and an office desk.,\"studies a map and checks on the bank, then turns to look between the targets.\",2\n8138,anetv_AffS41W1Jgg,15064,A man is seen speaking to the camera and leads into him laying up wallpaper on the wall. He,A man is seen speaking to the camera and leads into him laying up wallpaper on the wall.,He,gold,then stands up and continues speaking while using his hand to remove a piece of wallpaper from a closet.,continues putting paint all over the item onto the bowl and wiping shadows down the wall.,continues speaking to the camera while still spreading paper on the wall.,continues to work around the carpet and showing it off together in the end.,2\n8139,lsmdc3089_XMEN_FIRST_CLASS-42864,2107,\"Smiling warmly, someone steps in close to someone. Now a tv in a living room\",\"Smiling warmly, someone steps in close to someone.\",Now a tv in a living room,gold,shows the man's photo of someone on a phone at the breakfast table.,shows an envelope of an old woman.,shows a news broadcast.,watches someone curl up a window.,2\n8140,lsmdc3089_XMEN_FIRST_CLASS-42864,2109,He opens it and pulls out a sleek shiny helmet the color of pewter. He,He opens it and pulls out a sleek shiny helmet the color of pewter.,He,gold,\"puts it on, leaving only his eyes, nose, mouth, and chin exposed.\",'s screen displays new size.,watches one of a low six - colored leather clock on a shelf.,hog ropes the cattle then he troopers.,0\n8141,lsmdc3089_XMEN_FIRST_CLASS-42864,2114,Someone holds up a glass of liquor. She,Someone holds up a glass of liquor.,She,gold,turns back to someone.,takes the glass and crosses the stylish room to a hatch.,is giving someone a haircut.,pours a drink into the glass.,1\n8142,lsmdc3089_XMEN_FIRST_CLASS-42864,2105,He swings gently as his feet grip the model tightly. He,He swings gently as his feet grip the model tightly.,He,gold,manages to bring the young girl back to the back.,\"grabs a rope from her pass, creating a massive coil.\",\"stares, slack - jawed.\",opens a cab so we can see on the freeway running.,2\n8143,lsmdc3089_XMEN_FIRST_CLASS-42864,2117,\"Now standing in an open upper hatch, someone's diamond hand cuts a plum - sized chunk of ice from a large formation. As it\",\"Now standing in an open upper hatch, someone's diamond hand cuts a plum - sized chunk of ice from a large formation.\",As it,gold,\"shakes his head, richard parker begins to rise.\",\"lands in his basement in a glass oom, our view shoots through another window.\",plops into someone's drink.,reaches the lower level of an alley.,2\n8144,lsmdc3089_XMEN_FIRST_CLASS-42864,2102,\"He gives a little shrug of the head, then kicks off his shoes. He\",\"He gives a little shrug of the head, then kicks off his shoes.\",He,gold,looks down at the bruno and stomps.,peels off his socks.,hurries to the side of the boxcar.,\"pauses, looking down at the apartment.\",1\n8145,lsmdc3089_XMEN_FIRST_CLASS-42864,2103,He peels off his socks. Someone,He peels off his socks.,Someone,gold,peeks into the trailer.,queasily picks up the broken box.,notices the blonde someone beaming radiantly at him.,stands and stretches his arms draped around his arms.,2\n8146,lsmdc3089_XMEN_FIRST_CLASS-42864,2106,\"He stares, slack - jawed. Smiling warmly, someone\",\"He stares, slack - jawed.\",\"Smiling warmly, someone\",gold,looks over at someone who shakes his head and looks at someone silently who turns.,faces him steadily and gives his emotional nod as she nods.,gazes at his brother awkwardly.,steps in close to someone.,3\n8147,lsmdc3089_XMEN_FIRST_CLASS-42864,2110,\"He puts it on, leaving only his eyes, nose, mouth, and chin exposed. As someone faces someone, she\",\"He puts it on, leaving only his eyes, nose, mouth, and chin exposed.\",\"As someone faces someone, she\",gold,lowers her eyes toward the shirt.,exhales and lowers her chin.,shifts his gaze sympathetically.,\"smiles at him, her lips parted with tenderness.\",1\n8148,lsmdc3089_XMEN_FIRST_CLASS-42864,2101,The slim charmingly disheveled young man shifts his uncertain gaze. He,The slim charmingly disheveled young man shifts his uncertain gaze.,He,gold,\"gives a little shrug of the head, then kicks off his shoes.\",wags his hand vigorously.,\"rushes past someone and pauses, hesitantly slapping a bird's head.\",shifts his gaze regarding him with a knitted brow.,0\n8149,lsmdc3089_XMEN_FIRST_CLASS-42864,2115,\"She takes the glass and crosses the stylish room to a hatch. Opening the door, she\",She takes the glass and crosses the stylish room to a hatch.,\"Opening the door, she\",gold,sees herself in a doorway.,\"takes a sweater from the case, pulls a turkey sitting on her desk.\",gives someone a reassuring glance then grins.,heads into the submarine bridge.,3\n8150,lsmdc3089_XMEN_FIRST_CLASS-42864,2113,\"Relaxing, she tilts her head and cocks an eyebrow. Someone\",\"Relaxing, she tilts her head and cocks an eyebrow.\",Someone,gold,peeps in through the top of one of the slots.,thrusts a fake rope between her legs.,\"approaches them, sensing some kind of someone the background, walking up then down to a rest restroom.\",holds up a glass of liquor.,3\n8151,lsmdc3089_XMEN_FIRST_CLASS-42864,2116,\"Opening the door, she heads into the submarine bridge. Now standing in an open upper hatch, someone's diamond hand\",\"Opening the door, she heads into the submarine bridge.\",\"Now standing in an open upper hatch, someone's diamond hand\",gold,cuts a plum - sized chunk of ice from a large formation.,sits on the penguin on a nightstand.,climbs across the train platform at an angle on the wall.,runs to a cracked surface completely into the steely pool.,0\n8152,lsmdc3089_XMEN_FIRST_CLASS-42864,2111,\"As someone faces someone, she exhales and lowers her chin. She\",\"As someone faces someone, she exhales and lowers her chin.\",She,gold,turns away from the family tree and observes buckbeak's trust.,walks through a doorway.,shrugs her gloved hand.,\"stares piercingly at someone, her eyes narrowing.\",3\n8153,anetv_tGHLUWWm_zU,700,A close up of a corner of a room is shown. A man,A close up of a corner of a room is shown.,A man,gold,starts scrubbing the wall with glue.,is cutting a cat's nails.,walks into frame hitting a lawn mower and still looking around.,applies plaster to a wall with tools.,3\n8154,anetv_tGHLUWWm_zU,16353,We see the man as he puts the plaster on the wall. The man,We see the man as he puts the plaster on the wall.,The man,gold,bends over and works on the bottom part.,celebrates as a chain is running through the center.,throws a white ball and jumping into the air.,returns to throw the croquet ball down the lane.,0\n8155,anetv_tGHLUWWm_zU,16351,We see a wall in bad shape. We,We see a wall in bad shape.,We,gold,see them riding up kick exercise.,see a man in costume jumping off the roof.,see the man puma twice.,see a person putting plaster on it.,3\n8156,anetv_tGHLUWWm_zU,16352,We see a person putting plaster on it. We,We see a person putting plaster on it.,We,gold,see the man as he puts the plaster on the wall.,\"a man rubs it along the plaster, a wood - nailed tool is painted and tiles with his face.\",\"glimpse the new, ugly, shiny body.\",continue being injured in a green grassy field.,0\n8157,anetv_tGHLUWWm_zU,701,A man applies plaster to a wall with tools. The man,A man applies plaster to a wall with tools.,The man,gold,applies plaster to a different wall with tools.,working tools puts tiles on a mat and switching out black fabric.,put back more tiles on a chair attached to the ceiling by covering material.,glows on the screen and the man begins to apply plaster on the wall.,0\n8158,anetv_at8e-jBBU5E,18059,A man is climbing up a rock wall. He,A man is climbing up a rock wall.,He,gold,attaches a blue interior to the roof.,is using a hammer in a tower.,moves onto the board in front of him.,jumps to the top and gives a thumbs up.,3\n8159,anetv_at8e-jBBU5E,9678,\"Next, he shows an example of the rock climbing maneuver that he will teach. Lastly, he\",\"Next, he shows an example of the rock climbing maneuver that he will teach.\",\"Lastly, he\",gold,proceeded to show how to do the rock climbing maneuver in the example.,\"shows us the string, and continues putting the hammer balance more.\",continues to sharpen the hair.,takes some tools out of a wall and places it atop a set of wooden bars.,0\n8160,anetv_at8e-jBBU5E,9677,\"A man introduces a video about rock climbing while showing several different examples rock of climbing maneuvers. Next, he\",A man introduces a video about rock climbing while showing several different examples rock of climbing maneuvers.,\"Next, he\",gold,continues controlling the exercise machine and holds his movements further and further at show the position.,shows an example of the rock climbing maneuver that he will teach.,\"flashes several different directions to the other, including his fully in action, standing on different levels to raft at the park.\",shows how to use a body paper to adjust on the piano.,1\n8161,anetv_at8e-jBBU5E,18060,He jumps to the top and gives a thumbs up. He,He jumps to the top and gives a thumbs up.,He,gold,\"rises from his fingertips, then gets out of his carriage.\",paused and started to walk and gets ready to do very high jump wags blowing him.,stands at the bottom and talks to the camera.,continues to lay on the ground with his legs.,2\n8162,lsmdc1029_Pride_And_Prejudice_Disk_One-83864,5933,\"Someone continues to dance with someone, smiling contentedly. Winter has arrived and the ground outside Longbourn\",\"Someone continues to dance with someone, smiling contentedly.\",Winter has arrived and the ground outside Longbourn,gold,is crisp with a white layer of frost.,has been leaning to the side of the boat.,is just falling off into the rain.,is just being battered.,0\n8163,anetv_znhZPUF6xQw,8596,Several clips are shown of various girls performing gymnastics tricks on a large mat. The girls,Several clips are shown of various girls performing gymnastics tricks on a large mat.,The girls,gold,continue performing a routine performing some exercises while looking off into the distance.,continue performing and end with their legs clapping.,continue jumping and flipping around the area while the camera continues to capture their movements.,continue exercise as others watch in the background.,2\n8164,anetv_QxsELAtsSWE,6020,The female news reporter continues talking to the fitness instructor. She,The female news reporter continues talking to the fitness instructor.,She,gold,grind onto the tile and apply a product with a crack on some wall surface.,talks a apply form into a adverts of blue ink.,applies a bucket to a can and clips the wallpaper up.,speaks to the anchor back in the studio.,3\n8165,anetv_QxsELAtsSWE,6018,\"A female news reporter speaks to a fitness instructor inside a gym, where cyclists are riding fitness bikes. Exercises such as yoga and bicycling\",\"A female news reporter speaks to a fitness instructor inside a gym, where cyclists are riding fitness bikes.\",Exercises such as yoga and bicycling,gold,for training are displayed.,\"text leading, doing a same.\",are demonstrated by those in the gym.,begins to get to work.,2\n8166,anetv_QxsELAtsSWE,6019,Exercises such as yoga and bicycling are demonstrated by those in the gym. The female news reporter,Exercises such as yoga and bicycling are demonstrated by those in the gym.,The female news reporter,gold,continues talking to the fitness instructor.,does then serve the client's back and arm the time.,continues doing several routines in front of her campaign students.,\"performs working shooting in the busy gym, after woman are shown talking to her helping.\",0\n8167,anetv_5MjAgMF_FzA,11771,\"When the egg is almost fully cooked, the man begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet. He\",\"When the egg is almost fully cooked, the man begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet.\",He,gold,assembles a piece of white fruit with orange energy.,rolls the omelet back and forth in the pan.,\"hands the woman dry soup on a tray, stirred, with cut potatoes, struck off his feet and all fried eagerly.\",puts butter in a pan and adds a pan to it.,1\n8168,anetv_5MjAgMF_FzA,11768,A cook is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame. The cook now,A cook is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame.,The cook now,gold,cooks a pan to cook as she looks ready a pan cooling in a cabinet.,follows behind them.,looks off and continues to stir it.,scoops a large portion of mixed egg from a large metal pot into the small metal pan.,3\n8169,anetv_5MjAgMF_FzA,11770,\"He begins to whisk the egg mixture with two wooden sticks, holding the pan over the burner. When the egg is almost fully cooked, the man\",\"He begins to whisk the egg mixture with two wooden sticks, holding the pan over the burner.\",\"When the egg is almost fully cooked, the man\",gold,\"treads around the stove, sitting on the lap sweeping some leaves of the yellow pan.\",serves the chocolate and drinks the flour.,is now poured out a sandwich and begins to boil it.,begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet.,3\n8170,anetv_5MjAgMF_FzA,11767,A black screen with a white title appears. A cook,A black screen with a white title appears.,A cook,gold,is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame.,sets a board in a sink and stands in a room and puts a towel in her wet legs.,\"appears and two girls goes to a basketball in the front on their horses, drinking and bowls.\",stands on a counter and covers food.,0\n8171,anetv_Zhf052cWrv8,14184,A man is standing and walking in the gym. The man,A man is standing and walking in the gym.,The man,gold,sat on the rowing machine and put his feet on the pedal.,jumps and turns backwards and does a handstand then completes a high flip jumps handstand.,jumps a wire bar using a slab.,picks up a long pole and proceeds to cut the hair.,0\n8172,anetv_Zhf052cWrv8,14185,The man sat on the rowing machine and put his feet on the pedal. The man,The man sat on the rowing machine and put his feet on the pedal.,The man,gold,stopped the rope once stuck.,moves the machine behind the tent back and fourth.,started with the rope and another person went off the camaro.,began to pull the belt.,3\n8173,lsmdc1046_Australia-91082,4678,His eyes fill with tears of self - pity. Bomb ships,His eyes fill with tears of self - pity.,Bomb ships,gold,take off the plane into the cliffs.,is loaded into an open fire.,descend the police officer.,burn in the bay.,3\n8174,lsmdc1046_Australia-91082,4683,Someone is up on the wreck of someone Cattle Company water tower. Someone,Someone is up on the wreck of someone Cattle Company water tower.,Someone,gold,rides an overweight fat along a firm road.,reaches into his pocket and pulls out someone's harmonica.,jacks up a coaster.,people are suspended outside a white sky.,1\n8175,lsmdc1046_Australia-91082,4681,Someone tearfully watches the evacuation. Someone,Someone tearfully watches the evacuation.,Someone,gold,'s eyes widen and someone's eyes widen.,looks at the ruins of the territory hotel and sighs.,stands back in his seat and waits his news.,cascades down someone's body.,1\n8176,lsmdc1046_Australia-91082,4680,\"Someone comes up to someone's room. Eyes closed, tears\",Someone comes up to someone's room.,\"Eyes closed, tears\",gold,welling into his eyes.,roll down her cheeks.,stream down someone's pale cheeks.,\"stream down her mouth, but her eyes remain open.\",1\n8177,lsmdc1046_Australia-91082,4679,Bomb ships burn in the bay. Someone,Bomb ships burn in the bay.,Someone,gold,\"has a large casket on him, as they hike into the pale light of sunset.\",pulls the radio up.,takes off past the school.,comes up to someone's room.,3\n8178,anetv_78je-JBAqxQ,3132,\"They are playing beer pong with several red solo cups, drinking in between plays. A blonde woman\",\"They are playing beer pong with several red solo cups, drinking in between plays.\",A blonde woman,gold,follows them in hitting the main presence for the next watch.,\"watches as a man wins the game, hugging the woman next to him.\",is standing across from her to an interview holding it and holding her drink.,waching her and puts her black fist on the audience.,1\n8179,anetv_78je-JBAqxQ,3131,A man is blowing a whislet in front of a room filled with people. They,A man is blowing a whislet in front of a room filled with people.,They,gold,\"are playing beer pong with several red solo cups, drinking in between plays.\",\"play their instruments, rowing, and playing at the end.\",are walking on a rope.,is by the mouth of a fruit dish.,0\n8180,lsmdc1019_Confessions_Of_A_Shopaholic-80792,19010,\"Someone turns away, trying to mask her disappointment. New York, she\",\"Someone turns away, trying to mask her disappointment.\",\"New York, she\",gold,makes a phone call.,sits at a booth.,\"pops up, then takes a clean - inch travel mirror from her broken hair.\",sits glumly in the back of a yellow cab as it crosses times square.,3\n8181,lsmdc1019_Confessions_Of_A_Shopaholic-80792,19011,\"Her chin resting on one blue cashmere - gloved hand, she answers her mobile. Someone\",\"Her chin resting on one blue cashmere - gloved hand, she answers her mobile.\",Someone,gold,dives to the floor of the cab.,falls a window reading and waves to others as a cameraman shows his crowded gardens.,\"continues her silent blow, then follows.\",lowers her gaze on a covered drawing tool in a mirror and put his arms around her.,0\n8182,anetv_2kx--bbqXHg,18508,Cotton balls are being set on fire and put out in various ways. An ax,Cotton balls are being set on fire and put out in various ways.,An ax,gold,is lit from snow.,is next to the last strap.,rests on the back of her head.,is used to put out the fire.,3\n8183,lsmdc0002_As_Good_As_It_Gets-46415,16516,\"As she enters the apartment. The worst confirmed, she\",As she enters the apartment.,\"The worst confirmed, she\",gold,takes a small fruit out of her bag and stands in a steaming case.,\"smokes, looks down here the old paper windows.\",\"moves down the narrow hallway, her innards squirting the same chemicals that drives elk on opening day of the hunting season.\",opens a scarf to reveal some patrons and a wrappings made on the kitchen table.,2\n8184,lsmdc0002_As_Good_As_It_Gets-46415,16517,\"She is ebullient which, if life allowed, would be her natural state. Someone 'reaction her mother\",\"She is ebullient which, if life allowed, would be her natural state.\",Someone 'reaction her mother,gold,\"and smiles, eyes coldly.\",adds a saving grace.,\"is still removing his clothes, picking up the bag.\",is snowing months now.,1\n8185,anetv_KA6YYIl2z4E,14662,\"The woman then reaches back into her left eye first, then into her right to remove the contact lenses and a shot of them sitting in the contact lens container appears. Video\",\"The woman then reaches back into her left eye first, then into her right to remove the contact lenses and a shot of them sitting in the contact lens container appears.\",Video,gold,the items form a drawer while the person puts the contact lens into her eye.,\", porter show a website serpentine about a engagement ring.\",ends with a screen telling you to subscribe to their youtube channel for more helpful videos.,is then shown.,2\n8186,anetv_KA6YYIl2z4E,14661,The video begins with various words and instructions on how to insert & remove Halloween contact lenses. A contact lens container,The video begins with various words and instructions on how to insert & remove Halloween contact lenses.,A contact lens container,gold,is shown followed by a man in a suit and a tattoo phone.,on top is that spoke with a vodka platter.,\"is shown and two man shake their fingers, and then the woman quickly takes the contact lens away.\",is then filled with contact solution and the contacts into both sides of the container.,3\n8187,anetv_OzjjQ4SZ8PY,9931,A woman wearing scuba diving gear is under the water. She,A woman wearing scuba diving gear is under the water.,She,gold,throws a large fish in the water.,\"explores the ocean floor, looking at the fish and wildlife as a man swims behind her.\",badly jumps on a long platform and pulls over a tube which can't reach upon deep water.,jumps off a diving board in a pool of water.,1\n8188,anetv_OzjjQ4SZ8PY,9932,\"She explores the ocean floor, looking at the fish and wildlife as a man swims behind her. They\",\"She explores the ocean floor, looking at the fish and wildlife as a man swims behind her.\",They,gold,give ok signals to the person with the camera.,raise an egg between her hands.,\"appear busily painting, and through the bottom.\",sets it on the ground and lifts the blade off the spear.,0\n8189,anetv_gIhVeU8xbrs,19261,\"Another man wearing black shorts and a red and white shirt is also taking his turn at lifting the heavyweights on the barbell, then briefly over his head then drops them to the ground and does this four times in a row. A smaller man is now attempting to lift the barbell with the heavyweights, but he\",\"Another man wearing black shorts and a red and white shirt is also taking his turn at lifting the heavyweights on the barbell, then briefly over his head then drops them to the ground and does this four times in a row.\",\"A smaller man is now attempting to lift the barbell with the heavyweights, but he\",gold,can only lift them three times to his waist level then drops them.,\"jumps off his side and does a stand up, then joins in and begins to lift the weight.\",\"drops it on the bar onto a heavy weight in keeping up on his height for slow motion, before it is shown again in\",pulled back away while using it.,0\n8190,anetv_gIhVeU8xbrs,19262,\"A smaller man is now attempting to lift the barbell with the heavyweights, but he can only lift them three times to his waist level then drops them. A larger shirtless man is standing in front of a mirror and he\",\"A smaller man is now attempting to lift the barbell with the heavyweights, but he can only lift them three times to his waist level then drops them.\",A larger shirtless man is standing in front of a mirror and he,gold,is people practicing his moves.,\"'s also only lifting them to his waist a four times, then drops them and walks off.\",has pulled the gun side free.,begins spinning his body all over the bike.,1\n8191,anetv_gIhVeU8xbrs,3633,\"A slightly smaller guy approaches the bar but he never gets the bar off the ground. After him, a shirtless man tries to lift it but he\",A slightly smaller guy approaches the bar but he never gets the bar off the ground.,\"After him, a shirtless man tries to lift it but he\",gold,is knocked to his knees by the others around him.,also catches it so he falls.,collapses and falls to the ground.,can't get it off the ground either.,3\n8192,anetv_gIhVeU8xbrs,3630,\"Two men are in a weight room, one is sitting in a chair, and the other is standing on a mat about to jerk the bar. Another man then\",\"Two men are in a weight room, one is sitting in a chair, and the other is standing on a mat about to jerk the bar.\",Another man then,gold,comes along and attempts the weight and struggles at first but then gets it in the air before he drops it.,jumps in the air from the man five the first man who were while kneeling in the middle of the stage.,picks up a row of exercise drills.,opens a box and begins sharpening two other darts.,0\n8193,anetv_gIhVeU8xbrs,3631,Another man then comes along and attempts the weight and struggles at first but then gets it in the air before he drops it. The same male then,Another man then comes along and attempts the weight and struggles at first but then gets it in the air before he drops it.,The same male then,gold,comes off the back and does the same thing once again but this time he is done again.,lifts the bar four times and is successful at each attempt.,\"throws the ball backward as the crowd cheers and goes all over again, finishing the jump.\",gets up on the skateboard and begins moving it up and down.,1\n8194,anetv_gIhVeU8xbrs,3632,The same male then lifts the bar four times and is successful at each attempt. A slightly smaller guy approaches the bar but he never,The same male then lifts the bar four times and is successful at each attempt.,A slightly smaller guy approaches the bar but he never,gold,grabs the rope.,gives a backward look at the net on the ground.,fails to speak for anything.,gets the bar off the ground.,3\n8195,anetv_fBov3cwPEho,8163,The child drops the blue bulb and goes for another. The child,The child drops the blue bulb and goes for another.,The child,gold,gets her hands in her hair and hurries away.,adds another blue bulb to the tree.,replaces the black mop against wooden rim.,slides down a soft wooden slide.,1\n8196,anetv_fBov3cwPEho,8161,The dad puts it back and the baby takes it again. The child turns towards the camera and the dad,The dad puts it back and the baby takes it again.,The child turns towards the camera and the dad,gold,lays his arm alone on the table.,resumes the walk.,gets in and shakes the fork.,walks to a counter.,3\n8197,anetv_fBov3cwPEho,8164,The child adds another blue bulb to the tree. The camera,The child adds another blue bulb to the tree.,The camera,gold,turns to the left.,shows us the ocean shyly.,pans up to show the tree and then shows the stockings.,pans up to one as a young child looks back at the camera.,2\n8198,anetv_fBov3cwPEho,8160,We see a man and a baby decorating a Christmas tree. The baby,We see a man and a baby decorating a Christmas tree.,The baby,gold,takes a blue bulb off the tree.,is finished decorating the tree.,kneels up and steps around the tree.,skates back and forth between the christmas tree.,0\n8199,lsmdc1047_Defiance-91481,5187,\"In the distance, they spot Kissely the milkman running ahead of a unit of armed men in black uniforms. The two youngsters\",\"In the distance, they spot Kissely the milkman running ahead of a unit of armed men in black uniforms.\",The two youngsters,gold,stand on and look like the gun.,dive behind a rock.,run through the smoke.,stand on the doors to aim.,1\n8200,lsmdc1047_Defiance-91481,5186,\"This time, she looks someone straight in the eye. Tentatively, he\",\"This time, she looks someone straight in the eye.\",\"Tentatively, he\",gold,trips on the love seat.,sees them in her open dance grasp and holds her.,eyes people from behind.,\"raises his hand and touches her cheek with his fingers, gently pulling at her bottom lip with his thumb.\",3\n8201,anetv_WFbUBMgOMn8,12773,She is in the process of making a dessert. She,She is in the process of making a dessert.,She,gold,mixes all the ingredients and then shows the final product.,shows the video how to make jars on unstable pops.,\"her body on the chair, she tightens her laces and ties the box tied to her back and continues putting a defeated leg on\",a drag she is being taken out of a cup.,0\n8202,anetv_WFbUBMgOMn8,12314,A kitchen is shown followed by various ingredients and a woman speaking to the camera. She,A kitchen is shown followed by various ingredients and a woman speaking to the camera.,She,gold,mixes up ingredients and mixes more ingredients into the bowl.,demonstrates how to boil the pot and add to it.,mixes the ingredients and mixes it into a bowl.,begins showing the ingredients and putting them into a hot boiling pot and stirring around.,3\n8203,anetv_WFbUBMgOMn8,12315,She begins showing the ingredients and putting them into a hot boiling pot and stirring around. She,She begins showing the ingredients and putting them into a hot boiling pot and stirring around.,She,gold,\"begins with salad and lemon sticks, then she puts all the ingredients into a bowl and pours it into a pot.\",\"continues mixing up more ingredients and then puts them all together in a bowl, serving the dish ad sprinkling olive oil around it.\",then pours the curlers into a bowl containing the mix and she spreads the cookies into the oven.,mixes various ingredients into the bowl and begins to cook various vegetables and adds together to a plate with food and ingredients.,1\n8204,anetv_WFbUBMgOMn8,12772,A woman is talking in her kitchen. She,A woman is talking in her kitchen.,She,gold,shows how to bake a salad.,is cleaning out food.,is in the process of making a dessert.,is holding a pot of liquor and putting it in a pot.,2\n8205,anetv_Gms3Yt6RrV4,7329,A third man is seen in a car next to the man talking. The man wearing the helmet,A third man is seen in a car next to the man talking.,The man wearing the helmet,gold,starts down the street on a skateboard.,screws his blade up and grabs a tire.,takes off a sweater and hammers the table.,opens his mouth to speak to the camera and sits.,0\n8206,anetv_Gms3Yt6RrV4,7333,\"The man with the camera and the man in the car follow filming the man on the skateboard. After the stop sign, the car\",The man with the camera and the man in the car follow filming the man on the skateboard.,\"After the stop sign, the car\",gold,is shown showing underwater left wash path.,passes the man on the skateboard.,approaches and takes the digital supplies.,approaches the car right and closes up behind him.,1\n8207,anetv_Gms3Yt6RrV4,7332,The man rides past a stop sign. The man with the camera and the man in the car,The man rides past a stop sign.,The man with the camera and the man in the car,gold,makes a call adjustments.,plays a game of table tennis.,follow filming the man on the skateboard.,tells him to go and sign him.,2\n8208,anetv_Gms3Yt6RrV4,7331,The man goes down a few very steep hills on his skateboard. The man,The man goes down a few very steep hills on his skateboard.,The man,gold,shakes his head apologetically and brushes.,stands over the fallen bike on the second ramp.,rides past a stop sign.,skids to the border of the tubes.,2\n8209,anetv_Gms3Yt6RrV4,7334,\"After the stop sign, the car passes the man on the skateboard. The car stops and the man on the skateboard\",\"After the stop sign, the car passes the man on the skateboard.\",The car stops and the man on the skateboard,gold,runs onto the street before slamming into the other lady.,moves through the middle of the road.,stops just past them and picks up his skateboard.,stops the man from the bike.,2\n8210,anetv_Gms3Yt6RrV4,7328,Another man with a helmet on is standing near by. A third man,Another man with a helmet on is standing near by.,A third man,gold,is shown on a long board.,is seen in a car next to the man talking.,bends down and throws a light on the trunk.,does a handstand while another man is entering.,1\n8211,anetv_Gms3Yt6RrV4,7330,The man wearing the helmet starts down the street on a skateboard. The man,The man wearing the helmet starts down the street on a skateboard.,The man,gold,ride down drums but has n't bounced in circles.,stops and adjusts the line next to a red car.,chases the laces then takes out the red neon keys and is skating on the top of the motorcycle.,goes down a few very steep hills on his skateboard.,3\n8212,anetv_Gms3Yt6RrV4,7327,A man is seen talking with a camera very close to his face. Another man with a helmet on,A man is seen talking with a camera very close to his face.,Another man with a helmet on,gold,joins him on a camel who then walks away.,is standing near by.,is walking on an outdoor road.,is then shown running around holding a pan.,1\n8213,anetv_QjFioni0uCM,12071,A man is standing behind a woman sitting in a chair. He,A man is standing behind a woman sitting in a chair.,He,gold,is putting a product into her hair.,is using a tool to draw her mother's face and faces her.,leans down onto a rock and leans over to brush the girl's hair.,takes a paintbrush out of her hair.,0\n8214,anetv_QjFioni0uCM,12073,He begins to blow dry her hair. She,He begins to blow dry her hair.,She,gold,begins brushing his hair with his fingers.,starts to blow dry her hair herself.,avoids his gaze and he returns the kiss.,\"straightens her high, dark hair and rolls it on top of her head.\",1\n8215,anetv_QjFioni0uCM,12072,He is putting a product into her hair. He,He is putting a product into her hair.,He,gold,begins to blow dry her hair.,\"pours the liquid into the mirror, and she looks down.\",combs out and trying to straighten it.,begins to shave it's hair for the camera.,0\n8216,anetv_j_vP89LZlp8,435,The woman gets up and turns away. The person,The woman gets up and turns away.,The person,gold,turns around walks out of view.,finishes recording the rest of the body.,eyes a woman with 2 faster shoes and talks in the end.,hands her a piece of tape from a pocket.,0\n8217,anetv_j_vP89LZlp8,434,The woman sits down on the sofa. The woman,The woman sits down on the sofa.,The woman,gold,pours the buckets in the pail.,walks to the edge of the chair and starts knitting.,gets up and turns away.,\"sits in front of the trailer, taking a letter.\",2\n8218,anetv_j_vP89LZlp8,433,A woman brushes her long hair at home. The woman,A woman brushes her long hair at home.,The woman,gold,brushes the woman's hair.,sits down on the sofa.,trims the woman's hair.,looks at the large screen.,1\n8219,anetv_3I4EzlMo124,16751,\"Once she is on, she begins kicking her legs up and down and doing several flips along the bar. For her final trick, she flips off the bar and her foot goes further than expected but she\",\"Once she is on, she begins kicking her legs up and down and doing several flips along the bar.\",\"For her final trick, she flips off the bar and her foot goes further than expected but she\",gold,steps into the ropes.,barely jumps up into the acetone net.,quickly gathers herself and sticks her landing.,flops on a board multiple times.,2\n8220,anetv_3I4EzlMo124,16750,\"A teenage girl is dressed in a long sleeve red leotard and jumps up on a balance beam. Once she is on, she\",A teenage girl is dressed in a long sleeve red leotard and jumps up on a balance beam.,\"Once she is on, she\",gold,is slowly jumping out of her way.,turns a circular beam and begins to run her way over the pole.,begins kicking her legs up and down and doing several flips along the bar.,jumps off the balance beam and lands on the floor.,2\n8221,anetv_3I4EzlMo124,10696,A gymnast walks up to a beam and holds her hands out. She,A gymnast walks up to a beam and holds her hands out.,She,gold,begins performing a gymnastics routine on the beam.,flips through the bars and lands on a mat next to her.,spins around and hits people.,does a side flip and starts up as the rope begins.,0\n8222,anetv_3I4EzlMo124,10697,She begins performing a gymnastics routine on the beam. She,She begins performing a gymnastics routine on the beam.,She,gold,then picks up a ball and begins talking on camera.,has trouble smiling at the camera.,spins and twirls herself around and ends by jumping down with her arms up.,moves while still speaking to the camera.,2\n8223,lsmdc0008_Fargo-50053,13325,Both of them are watching the tv as someone reaches out to rest a hand on top of her stomach. Someone absently,Both of them are watching the tv as someone reaches out to rest a hand on top of her stomach.,Someone absently,gold,rests her own hand on top of his shoulder.,pushes him down and covers her face.,makes himself to close the door.,lifts her hair and puts his mohawk down.,0\n8224,lsmdc0008_Fargo-50053,13324,Her eyes go back to the tv. Both of them,Her eyes go back to the tv.,Both of them,gold,are watching the tv as someone reaches out to rest a hand on top of her stomach.,ride along the side - by - side in a cramped neighborhood.,continue to face and stare at the table with jars.,begin to grapple with the brunette.,0\n8225,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7373,Someone begins scanning the journal entry. He,Someone begins scanning the journal entry.,He,gold,looks troubled as he eyes a cartoon.,heads towards a cubicle and water appears.,spots a blocking on the next page.,hands the journal back to someone.,3\n8226,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7380,Someone struggles with the zipper of a shabby coat as she exits. Someone,Someone struggles with the zipper of a shabby coat as she exits.,Someone,gold,grabs someone's coat as she takes the drink.,steps out of the shadows.,turns to find a welcoming turnstile there.,looks at it through a window.,1\n8227,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7374,He hands the journal back to someone. Someone,He hands the journal back to someone.,Someone,gold,inhales from a pensive pencil.,bob fires the man.,opens it and begins reading it silently.,buries his face in his neck.,2\n8228,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7379,Someone closely studies her reaction to the offense. She,Someone closely studies her reaction to the offense.,She,gold,stabs the creature again.,hurls the ball upward.,flinches uncomfortably but then composes a smile for the customer.,peers at the sky anxiously.,2\n8229,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7377,Someone pulls into a parking lot of a country diner. Someone,Someone pulls into a parking lot of a country diner.,Someone,gold,drives off down the street and sits at the beach.,is about to enter when he spots someone coming out of the kitchen with a tray full of food.,'s pony - inspects and dangles chickens float above the windows.,\"picks up the rear door and sees a motorcycle coming out onto a street, someone.\",1\n8230,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7378,\"As she brings the mess inside the kitchen, a customer pinches her ass. Someone\",\"As she brings the mess inside the kitchen, a customer pinches her ass.\",Someone,gold,slips into the passenger seat.,reads a note from someone.,\"continues to look away when someone finally strolls in, as an examination table is close.\",closely studies her reaction to the offense.,3\n8231,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7372,Someone jumps off the bed and snatches the journal away. Someone,Someone jumps off the bed and snatches the journal away.,Someone,gold,flings a letter inside and carries him away.,returns to sleep again.,begins scanning the journal entry.,shakes his head and nods.,2\n8232,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7371,\"Someone, lying on his bed, quietly watches someone with growing concern. Someone\",\"Someone, lying on his bed, quietly watches someone with growing concern.\",Someone,gold,comes up beside someone.,jumps off the bed and snatches the journal away.,become shaking with frightening fever.,gives him a surprised look on the face and heads off to the side of the house.,1\n8233,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7370,\"Someone hastily hunts through his journals, tearing up the room looking for a certain book. Someone, lying on his bed,\",\"Someone hastily hunts through his journals, tearing up the room looking for a certain book.\",\"Someone, lying on his bed,\",gold,quietly watches someone with growing concern.,thrusts himself into the toilet.,\"straightens his suit, wearing his pajamas.\",goes to his office.,0\n8234,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7381,Someone steps out of the shadows. She,Someone steps out of the shadows.,She,gold,\"stays on his feet, his eyes glued to the overhead reflection.\",\"slides onto the third tracks, tapping the escalade's knob.\",takes their mugs and walks into the kitchen.,\"is startled at first, but eventually recognizes him.\",3\n8235,lsmdc0023_THE_BUTTERFLY_EFFECT-59492,7375,Someone opens it and begins reading it silently. His hands begin to tremble and he,Someone opens it and begins reading it silently.,His hands begin to tremble and he,gold,slams the book shut in defeat.,starts genuinely thoughtful about it.,lifts the breadstick up to a height.,moves slowly towards the carriage.,0\n8236,anetv_qmar8pDP5co,9507,The two sumo wrestlers walk out of the ring and again throw more powder. They,The two sumo wrestlers walk out of the ring and again throw more powder.,They,gold,men and referee attempt to put on the rope and get over a log before the athlete helps the man start the bull.,shoot a rocky bull with elves in the fall.,collide into one another and back away.,split the line into their pom poms.,2\n8237,anetv_qmar8pDP5co,9503,\"There is a large crowd spectating, and a man in the center of the ring acting as referee. The two sumo wrestlers\",\"There is a large crowd spectating, and a man in the center of the ring acting as referee.\",The two sumo wrestlers,gold,are led on the team with a competition moving their hands up while one intervene to get his attention.,get out onto the platform and pass the guy in giant black shirts.,throw a white powder into the ring.,stand turned on the turn and hug each other.,2\n8238,anetv_qmar8pDP5co,9506,Two other men hold brooms as sweep up some of the powder. The two sumo wrestlers,Two other men hold brooms as sweep up some of the powder.,The two sumo wrestlers,gold,are in a war competition ready as the referee appears on a tower.,walk out of the ring and again throw more powder.,drop hands in their phones.,are showing the loser on the shirts.,1\n8239,anetv_qmar8pDP5co,9509,They again collide into each other and begin wrestling. The man in black sumo shorts,They again collide into each other and begin wrestling.,The man in black sumo shorts,gold,passes the man who has the blindfold.,throws the other man out of the ring.,is behind another wrestler.,swings all her body around.,1\n8240,anetv_qmar8pDP5co,9504,\"The two sumo wrestlers throw a white powder into the ring. The squat and clap their hands together, while a group of men\",The two sumo wrestlers throw a white powder into the ring.,\"The squat and clap their hands together, while a group of men\",gold,laugh with the act.,hold flags and walk around the ring.,hold on in a ring.,pass on the dance competition.,1\n8241,anetv_qmar8pDP5co,9508,They collide into one another and back away. They again,They collide into one another and back away.,They again,gold,\"run through the air, swinging their head and fists at each other.\",hit the pinata and eat with one another.,ride the horse sideways after they hit the pinata.,collide into each other and begin wrestling.,3\n8242,anetv_RUv9YPd_0Zc,110,An introduction comes onto the screen for a presentation about auto repair. The video,An introduction comes onto the screen for a presentation about auto repair.,The video,gold,begins with the individual wearing the mask showing the results of the location.,shows different scenes of people riding horses and small waves.,shows showing how to do different parts of a bike.,displays several different parts of the car that is being worked on.,3\n8243,anetv_RUv9YPd_0Zc,112,The a dent fixing mechanism is attached to the cars to show how it works to repair one wheel. Then it,The a dent fixing mechanism is attached to the cars to show how it works to repair one wheel.,Then it,gold,flies into the truck behind it who crosses it upwards and back on.,gets one heavy tire on.,clips him as the car hammer the guard back and slides it onto the back.,shows another wheel being repaired by the same mechanism.,3\n8244,anetv_RUv9YPd_0Zc,111,The video displays several different parts of the car that is being worked on. The a dent fixing mechanism,The video displays several different parts of the car that is being worked on.,The a dent fixing mechanism,gold,is brought for her friend to join unhook the new tire on a rack in the background of the desk.,is attached to the cars to show how it works to repair one wheel.,is measured quick pensieve for a hotel.,skis down and eventually rinse out the car with a hose.,1\n8245,lsmdc0013_Halloween-54103,5745,She leaps backward to avoid the blade and slips over the edge of the railing. Camera,She leaps backward to avoid the blade and slips over the edge of the railing.,Camera,gold,pounces down from the second floor and slams into the floor.,crawls close to someone as she leads someone into the water.,fly back from someone's collar.,runs as someone pulls herself up and shoots the water dragging nearby.,0\n8246,lsmdc0013_Halloween-54103,5760,The shape pushes the door open and leaps into the kitchen. With a heave she,The shape pushes the door open and leaps into the kitchen.,With a heave she,gold,remains on the bed next to her.,\"walks up the stairs, clutching her heart.\",opens it half - way.,gazes up at a lantern light lamp a few feet away.,2\n8247,lsmdc0013_Halloween-54103,5725,There is someone lying on the bed but from this position someone can't see. She,There is someone lying on the bed but from this position someone can't see.,She,gold,has tears on her face as she rolls her eyes.,\"starts to pull away, causing her to stay and climb back up toward the crowd.\",moves forward toward the bed.,reaches in his pocket and grabs the keys.,2\n8248,lsmdc0013_Halloween-54103,5766,The back porch light comes on. Through the glass in the back door we,The back porch light comes on.,Through the glass in the back door we,gold,see someone with his dogs as it shuffles towards us and takes in a big hug.,see the masked guards at his apartment window at the end.,see a brown dog carrying a can of peanuts which is over the top.,see an old woman dressed in a nightgown approach.,3\n8249,lsmdc0013_Halloween-54103,5731,Suddenly a door next to her slowly opens. Someone,Suddenly a door next to her slowly opens.,Someone,gold,aims at a slight fighter in front of her.,steps out of the parking lot beside her mother.,comes out with no kiss.,backs out of the bedroom.,3\n8250,lsmdc0013_Halloween-54103,5733,Her mouth is open in speechless horror. She,Her mouth is open in speechless horror.,She,gold,looks up from side to side.,leans against the urinal.,opens the passenger door and looks up.,can only stare in horror at the sight of her dead friend.,3\n8251,lsmdc0013_Halloween-54103,5742,\"The knife slices across her arm, ripping her flesh. She\",\"The knife slices across her arm, ripping her flesh.\",She,gold,knocks her bearded face down and moves forward expectantly.,watches helplessly as she takes the stuffed mouse.,screams and spins around.,lets him on the throat.,2\n8252,lsmdc0013_Halloween-54103,5744,Someone bumps back into the railing. She,Someone bumps back into the railing.,She,gold,steals the waistband of someone's huggies.,leaps backward to avoid the blade and slips over the edge of the railing.,turns back - - which is not far away.,strides up the steps of the grocery store.,1\n8253,lsmdc0013_Halloween-54103,5759,\"The shape reaches through, groping for the lock. The shape\",\"The shape reaches through, groping for the lock.\",The shape,gold,blows out a whole pack of fang.,closes a narrow tiny screen.,lashes down through the pedestal chamber.,pushes the door open and leaps into the kitchen.,3\n8254,lsmdc0013_Halloween-54103,5762,She drags herself roughly out the window. Someone,She drags herself roughly out the window.,Someone,gold,\"picks herself up from the ground and runs as fast as she can, limping across the backyard, camera moving with her.\",stands behind a counter and leans over to the dorm window.,crouches down and touches someone's armor.,climbs into bed next to her parents.,0\n8255,lsmdc0013_Halloween-54103,5736,Someone suddenly moves away from the corner. The shape,Someone suddenly moves away from the corner.,The shape,gold,falls to the floor just beyond it.,walks along the corridor.,lunges out at her.,indicated on the fallen stump remains.,2\n8256,lsmdc0013_Halloween-54103,5727,Her face is a chalky white and there is a huge red gash across her throat. She,Her face is a chalky white and there is a huge red gash across her throat.,She,gold,falls in someone's video above.,puts a handkerchief on someone's left side and goes over the refrigerator in the messy living room.,stares at the bed and then screams at the top of her lungs.,takes it out and shows her the sitting position still in the oven.,2\n8257,lsmdc0013_Halloween-54103,5749,\"It is the shape, wearing the mask, the butcher knife in his hand, gleaming. The shape\",\"It is the shape, wearing the mask, the butcher knife in his hand, gleaming.\",The shape,gold,advances slowly toward the girl who lowers it and gestures.,\"must be glowing, so below.\",lies on a small steel chair.,moves to the top of the staircase and starts down toward her.,3\n8258,lsmdc0013_Halloween-54103,5741,The hand grasps a piece of someone's blouse and rips it. The knife,The hand grasps a piece of someone's blouse and rips it.,The knife,gold,\"slices across her arm, ripping her flesh.\",is completely smearing someone's eyes.,continues to cut someone's chest.,is very focused now.,0\n8259,lsmdc0013_Halloween-54103,5738,He lunges again with the knife. He,He lunges again with the knife.,He,gold,jumps and grabs some of the lettuce and starts to carve the sandwich.,equestrian & someone's chest.,lunges at her suddenly with the knife.,sets him across a floor and throws the pitchfork against the wall.,2\n8260,lsmdc0013_Halloween-54103,5767,Through the glass in the back door we see an old woman dressed in a nightgown approach. The old woman,Through the glass in the back door we see an old woman dressed in a nightgown approach.,The old woman,gold,throws the hot dog in the candy counter.,\"is looking anxious kindly, gesturing idly.\",\"stares at her suspiciously for a moment, then turns from the door and walks away.\",tearfully greets someone their hand.,2\n8261,lsmdc0013_Halloween-54103,5732,Someone backs out of the bedroom. Her mouth,Someone backs out of the bedroom.,Her mouth,gold,is open in speechless horror.,opens as if just getting trying to look any bit really.,is pressed from underneath.,falls open as she holds a glass.,0\n8262,lsmdc0013_Halloween-54103,5751,Then she looks up at the staircase. She,Then she looks up at the staircase.,She,gold,ignores an answer and slams the door.,\"looks down, notices the shields are off, and smiles at the door.\",pulls herself up off the floor and hobbles into the living room.,twirls to the round and leads her toward the hallway.,2\n8263,lsmdc0013_Halloween-54103,5764,\"She passes the driveway and scurries into the neighbor's backyard, up to the back door of the house. She\",\"She passes the driveway and scurries into the neighbor's backyard, up to the back door of the house.\",She,gold,goes to the window again as he turns the big nozzle.,pounds furiously on the door.,leaps out from behind a shelf.,\"takes the can and looks on in horror - - and sees again, to the camera box.\",1\n8264,lsmdc0013_Halloween-54103,5734,It is almost as if our eyes have suddenly begun to adjust to the darkness and we see the outline of a man standing right behind her. The outline,It is almost as if our eyes have suddenly begun to adjust to the darkness and we see the outline of a man standing right behind her.,The outline,gold,shows an extra structure in the picture.,of a stag being legal.,of a design is taken by a cluster of flowers.,becomes more and more clear.,3\n8265,lsmdc0013_Halloween-54103,5730,\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room, is someone, eyes open and staring. Someone\",\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room, is someone, eyes open and staring.\",Someone,gold,speaks gently as if to answer him.,shrinks back into a dark corner.,is footsteps in the room.,keeps his voice sound self - uncomfortable.,1\n8266,lsmdc0013_Halloween-54103,5746,Camera pounces down from the second floor and slams into the floor. Camera,Camera pounces down from the second floor and slams into the floor.,Camera,gold,looks on through a window as he goes.,closes in behind her.,\"moves with her as she backs away, screaming at the top of her lungs.\",appears in the doorway.,2\n8267,lsmdc0013_Halloween-54103,5758,\"Suddenly, the kitchen door explodes, the middle of it breaking. The shape\",\"Suddenly, the kitchen door explodes, the middle of it breaking.\",The shape,gold,shakes out of the cockpit as it fires directly at the cop.,\"reaches through, groping for the lock.\",\"dissipates from the dry room with golden doors, captions appear much wider.\",approaches a tangle of timber mercenaries.,1\n8268,lsmdc0013_Halloween-54103,5740,\"He stands there holding up the piece of material, then raises the butcher knife and moves for her. The hand\",\"He stands there holding up the piece of material, then raises the butcher knife and moves for her.\",The hand,gold,moves up with some hot steel that smashes the knife in the water.,\"goes to its head and cuts dead, keeping the knife on silver.\",puts a piece of paper on a knife's handle.,grasps a piece of someone's blouse and rips it.,3\n8269,lsmdc0013_Halloween-54103,5765,She pounds furiously on the door. Someone,She pounds furiously on the door.,Someone,gold,slowly slides the door shut behind them.,gets out the car and waves for the door.,continues to pound on the door.,\"continues walking down the stairs, grabbing some of her hair.\",2\n8270,lsmdc0013_Halloween-54103,5757,Her hand tries the door. Desperately she,Her hand tries the door.,Desperately she,gold,\"tries the door, glancing behind her.\",looks over her back.,finds a fiery winged cop moving past someone while he continues to work.,leaps across the frame.,0\n8271,lsmdc0013_Halloween-54103,5747,\"Camera moves with her as she backs away, screaming at the top of her lungs. She\",\"Camera moves with her as she backs away, screaming at the top of her lungs.\",She,gold,\"hits the floor and rolls over, holding her leg painfully.\",\"blows out her cheeks, then brushes off her teeth, and she sighs.\",\"flexes her neck, then drapes her arms around her shoulder.\",takes a whiskey bottle from a container with a pitcher of ice.,0\n8272,lsmdc0013_Halloween-54103,5737,The shape lunges out at her. He,The shape lunges out at her.,He,gold,lunges again with the knife.,swims up to the watermelon again.,reaches out and punches some of his money.,places the fist milk apples on the small wooden table.,0\n8273,lsmdc0013_Halloween-54103,5754,\"She crawls to the kitchen, rolls inside an slams the kitchen door behind her. In a flash, she\",\"She crawls to the kitchen, rolls inside an slams the kitchen door behind her.\",\"In a flash, she\",gold,leaps up and clicks the lock.,mends the black chaos.,avoids eye shadow again.,slaps her hair into a book blink.,0\n8274,lsmdc0013_Halloween-54103,5755,\"In a flash, she leaps up and clicks the lock. She\",\"In a flash, she leaps up and clicks the lock.\",She,gold,sees the kitchen window over the sink.,hangs up the receiver.,ties them around as someone drags her up a sidewalk.,strikes and lunges a few times.,0\n8275,lsmdc0013_Halloween-54103,5750,The shape moves to the top of the staircase and starts down toward her. Then she,The shape moves to the top of the staircase and starts down toward her.,Then she,gold,slowly turns around and looks after him again.,\"makes a run, turning and wades underneath.\",looks up at the staircase.,\"leans a step on one toe, pauses, and kicks at the sound, breathing hard.\",2\n8276,lsmdc0013_Halloween-54103,5735,The outline becomes more and more clear. Someone suddenly,The outline becomes more and more clear.,Someone suddenly,gold,pulls himself off the car and swings it steadily.,moves away from the corner.,stands up and looks at the leader of men.,\"turns back, but sweeps a note toward the rocker.\",1\n8277,lsmdc0013_Halloween-54103,5723,She reaches the top and stops. She,She reaches the top and stops.,She,gold,gets up from the sofa and kneels on the ground.,bends down and stares up the screen.,pushes her whole body toward him high behind the bar.,\"moves for the door, camera tracking with her.\",3\n8278,lsmdc0013_Halloween-54103,5752,She pulls herself up off the floor and hobbles into the living room. She,She pulls herself up off the floor and hobbles into the living room.,She,gold,smashes her head against someone's.,unlocks someone's padlock.,looks into a mirror.,moves for the kitchen.,3\n8279,lsmdc0013_Halloween-54103,5729,\"Someone jumps back to the door. Strung up to the light fixture on the ceiling, dangling there in the middle of the room,\",Someone jumps back to the door.,\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room,\",gold,someone turns and locks up the closet.,peer weary and nervous.,someone moves across the wet corridor.,\"is someone, eyes open and staring.\",3\n8280,lsmdc0013_Halloween-54103,5726,She moves forward toward the bed. Her face is a chalky white and there,She moves forward toward the bed.,Her face is a chalky white and there,gold,is a huge red gash across her throat.,'s a fabric toned form that have her hair snug about.,'s a man standing in a garden after with a cleaning razor on his coat collar.,\"'s a little girl, rolling up and down her back.\",0\n8281,lsmdc0013_Halloween-54103,5724,\"She moves for the door, camera tracking with her. Camera slowly\",\"She moves for the door, camera tracking with her.\",Camera slowly,gold,follows her into the lobby blocking her door.,moves away from the doorway and climbs into the visitors hall.,leans towards someone with his cigarette in her mouth.,tracks through the darkened bedroom of someone house.,3\n8282,lsmdc0013_Halloween-54103,5753,She moves for the kitchen. She,She moves for the kitchen.,She,gold,\"stops, looking at the flash mob.\",turns it in the bin she refills and fills the glass with water.,\"shows, needed for her lunch.\",\"crawls to the kitchen, rolls inside an slams the kitchen door behind her.\",3\n8283,lsmdc0013_Halloween-54103,5728,She stares at the bed and then screams at the top of her lungs. Someone,She stares at the bed and then screams at the top of her lungs.,Someone,gold,seems to be joining in.,jumps back to the door.,breathes out as more gazes lovingly at her eyes.,\"holds on tight, her eyes fading into tears.\",1\n8284,lsmdc0013_Halloween-54103,5756,She sees the kitchen window over the sink. Someone,She sees the kitchen window over the sink.,Someone,gold,looks at him and cowers as she walks toward it.,slowly climbs to her feet and limps toward the back door.,watches someone as he puts his leg behind her.,spots a penguin on an empty deck.,1\n8285,lsmdc0013_Halloween-54103,5743,She screams and spins around. Someone,She screams and spins around.,Someone,gold,watches her see her interview.,flails as he leaves.,bumps back into the railing.,tosses the man back and back.,2\n8286,anetv_hMUoeOFmquI,8283,\"The newscaster appears with her parents talking about the girl while clips of the race play, and still shot pictures of the girl appear on the camera. When the pictures and video clips of the interview and race are over, the newscaster\",\"The newscaster appears with her parents talking about the girl while clips of the race play, and still shot pictures of the girl appear on the camera.\",\"When the pictures and video clips of the interview and race are over, the newscaster\",gold,demonstrates how to use a phone in the storage room.,speaking to the camera makes screen on a pendant highlighting for more yellow logos.,is speaking alone back at the news station.,talks to the camera on the wall.,2\n8287,anetv_QHJTOHgjDMw,14951,She opens the piano and begins to play. She,She opens the piano and begins to play.,She,gold,begins into playing with the camera once again.,thinks about a couple while she is playing.,turns on tape and bowing.,has opened the gambling cart.,1\n8288,anetv_QHJTOHgjDMw,14950,\"A girl walks into a room, seeing sheet music at a piano. She\",\"A girl walks into a room, seeing sheet music at a piano.\",She,gold,keeps reacting and leads into her jumping up and down.,finishes and smiles broadly then extends her hand.,opens the piano and begins to play.,\"plays a piano, sings a song into the center.\",2\n8289,anetv_7c5vvEn3uLk,14845,A cowboy is riding on a horse in a large arena and is swinging his rope. The view changes to show a group of men with their horses and they,A cowboy is riding on a horse in a large arena and is swinging his rope.,The view changes to show a group of men with their horses and they,gold,\"are dancing, riding horses back and forth between toys as other horses have gathered.\",are watching the game and they see some men on to go to bring and arrange around participate while the dance in the grass.,are suddenly all to one right where the beauxbatons chute wrinkle to find a boot in there's grassy drop by the sides.,'re each holding onto their ropes and doing various things with them like tying and swinging them.,3\n8290,anetv_7c5vvEn3uLk,14846,Another man by the name of Stran Smith is now talking and clips of him riding his horse in different arenas as he wrangles a calf also plays. Clips of both of men talking and clips of them riding horses and wrangling calves,Another man by the name of Stran Smith is now talking and clips of him riding his horse in different arenas as he wrangles a calf also plays.,Clips of both of men talking and clips of them riding horses and wrangling calves,gold,really hell of aglow in the background.,play and rotate between the two of them.,are shown with a man and her approach doing wheelie.,cheerleaders in front gym and groups of instructor and some fencing.,1\n8291,anetv_zDPsJ3ECaTI,11281,An intro starts and begins showing a group of people. Various people,An intro starts and begins showing a group of people.,Various people,gold,in bikinis are exercising on an exercise machine.,perform a dance routine together with an instructor performing front and center.,are shown riding their horses.,are then seen walking in a sand pit.,1\n8292,anetv_zDPsJ3ECaTI,11282,Various people perform a dance routine together with an instructor performing front and center. The routine,Various people perform a dance routine together with an instructor performing front and center.,The routine,gold,continues as they continue to throw in slow motion.,continues with the people and instructor moving around with their arms and legs doing various movements to music.,continues with the gymnast all twirling the routine and holding a pose.,slows and does several hands in the air before ending their walk.,1\n8293,anetv_TFwELfVs19g,4178,She gets her belly button pierced. They,She gets her belly button pierced.,They,gold,\", someone comes up to someone in a file - in reflection of her gryffindor table.\",laughs afterward.,put an earring in the belly button.,\"then the talks again, while seated,.\",2\n8294,anetv_TFwELfVs19g,11684,\"A woman and and a man talk in a tattoo shop. Then, the man\",A woman and and a man talk in a tattoo shop.,\"Then, the man\",gold,opens paper and presents a paper to another man.,adjust his arm in the man's hair and a large dog watch him.,is welding a strip of material with a box.,cleans the button belly of the woman and puts a mark.,3\n8295,anetv_TFwELfVs19g,11685,\"Then, the man cleans the button belly of the woman and puts a mark. After, the woman lay down, and the man\",\"Then, the man cleans the button belly of the woman and puts a mark.\",\"After, the woman lay down, and the man\",gold,puts wax in skis under the woman's foot.,tattoo the back and neck of the man after he continues his piercing.,pierce the belly button and puts a stud.,measures trim and make it perfectly non style.,2\n8296,anetv_TFwELfVs19g,11686,\"After, the woman lay down, and the man pierce the belly button and puts a stud. The man\",\"After, the woman lay down, and the man pierce the belly button and puts a stud.\",The man,gold,stomps with a helmet of the right head and tight the other man lies on the ground from her couch in her room.,holds a mirror for the woman to see her piercing.,wears overlaid ski goggles as he breaks the ski with his feet.,cuts super o tam - tam in the hall.,1\n8297,anetv_TFwELfVs19g,4179,They put an earring in the belly button. She,They put an earring in the belly button.,She,gold,stands up and looks in a mirror.,pushes the dish up the room to climb the toilet.,pulls out a bit of pain and unplugs the hoop.,move the bowling balls.,0\n8298,anetv_TFwELfVs19g,4177,A woman is laying down on a table. She,A woman is laying down on a table.,She,gold,lays a fork in a plate in front of the counter.,moves a piece of paper onto the floor.,is laying down on a couch in front of the camera.,gets her belly button pierced.,3\n8299,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31557,2373,Someone follows Captain someone up a corridor. Someone,Someone follows Captain someone up a corridor.,Someone,gold,is over the edge.,peers into crew's sleeping quarters.,leads his elevated master down the staircase in synchronized moves.,\"turns to look at someone, who smiles sad.\",1\n8300,lsmdc3046_LARRY_CROWNE-21387,11409,The round - faced executive spreads his hands. Someone,The round - faced executive spreads his hands.,Someone,gold,softens the president and marches on with a smile.,sits at a table near a white - and - white table.,arrives outside someone's hotel window.,takes a breath as if to speak.,3\n8301,lsmdc3046_LARRY_CROWNE-21387,11408,The beefy executive callously picks pizza out of his teeth. Someone's eyes,The beefy executive callously picks pizza out of his teeth.,Someone's eyes,gold,\"are steadily bulging, droopy from foot to foot.\",\"widen with a robotic bar, ice.\",glisten in a helpless stare.,\"dart for a right - down, now.\",2\n8302,anetv_LYOQ0gVySxE,4651,Coffee is ground up in an electric grinder. A cup of coffee and coffee press,Coffee is ground up in an electric grinder.,A cup of coffee and coffee press,gold,are set on a table.,are shown being removed.,beer is poured into the scrolling dots and people are contents in it in a glass wing.,to a coffee table inside.,0\n8303,anetv_LYOQ0gVySxE,4653,Milk is poured into the cup of coffee. The cup of coffee,Milk is poured into the cup of coffee.,The cup of coffee,gold,is poured to the drink again.,has sprinkled and pour it into a third bowl.,is picked up and set back down on the saucer.,is a bit quieter.,2\n8304,anetv_LYOQ0gVySxE,4652,A cup of coffee and coffee press are set on a table. Milk,A cup of coffee and coffee press are set on a table.,Milk,gold,are lazily down at the rows into a table.,is poured into the cup of coffee.,are up on a table.,women continue working looking at him.,1\n8305,anetv_lvlVfgZ53NQ,10694,He pours liquids over a glass filled with ice. He then,He pours liquids over a glass filled with ice.,He then,gold,discusses the information at a point.,mixes the ice into the martini glass.,pours liquids into the strainer.,garnishes the final product for serving.,3\n8306,anetv_lvlVfgZ53NQ,10693,\"A man is talking behind a bar, standing in front of numerous alcohol bottles. He\",\"A man is talking behind a bar, standing in front of numerous alcohol bottles.\",He,gold,pours liquids over a glass filled with ice.,pours the drinks into a glass while holding a cup of coffee.,pours the juice into a mixer and pours it over a plate.,pours it into a glass and pours it a drink.,0\n8307,anetv_Cy3tUZIN8nk,18283,A man is seen sitting on a bench playing a harmonica. The man,A man is seen sitting on a bench playing a harmonica.,The man,gold,plays the guitar in front and continues playing.,continues playing a flute while looking to the camera.,proceeds to play the accordion in the end.,kicks his feet while he plays along.,3\n8308,anetv_Cy3tUZIN8nk,18284,The man kicks his feet while he plays along. He,The man kicks his feet while he plays along.,He,gold,continues to spin on the court while others watching on the sides.,grabs onto one and lays it down and continues putting more onto his movements.,women sort out his movements while brushing cats.,continues to play the instrument and pauses to speak to others.,3\n8309,anetv_Cy3tUZIN8nk,483,The man moves his foot up and down and pauses for a minutes before continuing to play. The man,The man moves his foot up and down and pauses for a minutes before continuing to play.,The man,gold,sings a bit and still plays the harmonica.,laughs several times while still shaking his face while playing on the mat.,pauses to speak to the camera again and continues to talk to the camera who smiles.,picks up the hoop once again and sits there for a moment.,0\n8310,anetv_NNqghz7Fd0M,12916,He is playing a kid drum set. He,He is playing a kid drum set.,He,gold,hits the cymbals and drums with his sticks.,puts a number of gray back on the drum.,starts playing the drums again.,texts back and forth.,0\n8311,anetv_NNqghz7Fd0M,12647,A small child is seen sitting behind a set of drums and playing in front of an audience. The boy,A small child is seen sitting behind a set of drums and playing in front of an audience.,The boy,gold,continues playing as people stand around and watch.,continues to play the instrument while the kids watch him laugh.,turns a guitar onto and plays the instrument while pausing to speak to the camera.,then pet the girl guitar and ends by the girl speaking to the camera.,0\n8312,anetv_NNqghz7Fd0M,12915,A little boy is seated in front of a tree. He,A little boy is seated in front of a tree.,He,gold,is trying to rake off his fake fake tree.,is playing a kid drum set.,is playing a slight swing.,is playing a croquet ball.,1\n8313,anetv__0CqozZun3U,12063,Man is standing in the botom of a stairs and is cleaning the snow hil in the street a snowplow is passing and the man is cleaning the snow and doing a path. man,Man is standing in the botom of a stairs and is cleaning the snow hil in the street a snowplow is passing and the man is cleaning the snow and doing a path.,man,gold,is standing in front of a car and is cleaning the windshield and all the windows.,puts a woman fall on the attached tiled carpet.,is with the man reading the ski.,\"is in snow in a car in front of a car on the house, where is two old man and woman on flooring.\",0\n8314,anetv_N49yT-kvXuw,17208,Several people climb the hills with snowboards and skis. They,Several people climb the hills with snowboards and skis.,They,gold,continues going down the hill.,ride up over the rocky ground as they all fall from the sand pit.,riders are intentionally pushing the snow down the hill.,talk to the camera between views of them skiing and boarding down the snowy hills.,3\n8315,anetv_N49yT-kvXuw,3776,A large mountain is shown with ski lifts moving and leads into people cleaning off the snow and walking around on boards. People,A large mountain is shown with ski lifts moving and leads into people cleaning off the snow and walking around on boards.,People,gold,perform several tricks on snowboards while the camera captures their movements.,are kicking a skateboard down the snow while looking off into the distance.,are seen going in large tubes down the river passing a man holding up a tube.,continue around jumping of a rope while others watch on the side.,0\n8316,anetv_N49yT-kvXuw,17207,An aerial view of a ski resort is shown. several people,An aerial view of a ski resort is shown.,several people,gold,are then shown standing in tubes.,are shown inside the lift and being shown.,are standing in a short rope being removed from underneath.,climb the hills with snowboards and skis.,3\n8317,anetv_N49yT-kvXuw,3777,People perform several tricks on snowboards while the camera captures their movements. More people,People perform several tricks on snowboards while the camera captures their movements.,More people,gold,are shown riding on a lakeside to surf.,flip into each other's arms.,are shown running on it as the camera captures their movements.,are seen speaking to the camera while others continue to ride around.,3\n8318,lsmdc1011_The_Help-78698,19327,\"Later, someone sifts through her post. She\",\"Later, someone sifts through her post.\",She,gold,opens the envelope and finds a note from someone.,brings paper to it.,checks a photo album on her picture and inserts a revolver.,pulls the photo fan out of her glass.,0\n8319,lsmdc1011_The_Help-78698,19328,She opens the envelope and finds a note from someone. She,She opens the envelope and finds a note from someone.,She,gold,looks at the white paste.,lays her arm around the desk and takes a photo to someone.,clicks some audio icons on one part.,smirks as she unfolds the enclosed check.,3\n8320,lsmdc1011_The_Help-78698,19331,\"She glugs back some beer, spilling some over her blouse, and swerves the car. She\",\"She glugs back some beer, spilling some over her blouse, and swerves the car.\",She,gold,takes off the chunk and breaks it to a roll.,smiles but gets lost to certain well.,\"gets in the backseat, starts down the stairs, and stops.\",\"glugs down the rest and puffs on a cigarette, throwing the empty bottle into the backseat.\",3\n8321,lsmdc1011_The_Help-78698,19330,\"Steaming along a straight dirt road between two green fields, kicking up a storm of dust behind her, she sits at the wheel of the Ford Fairlane station wagon, her lips curling. She\",\"Steaming along a straight dirt road between two green fields, kicking up a storm of dust behind her, she sits at the wheel of the Ford Fairlane station wagon, her lips curling.\",She,gold,takes her to her feet and takes out her ticket.,holds her hips while at cuff held up her hands.,\"glugs back some beer, spilling some over her blouse, and swerves the car.\",pull the gun over a cool swastika that has been wrapped around her shoulders.,2\n8322,lsmdc1011_The_Help-78698,19329,She smirks as she unfolds the enclosed check. She,She smirks as she unfolds the enclosed check.,She,gold,checks the bottle for the stacks and the money.,\"puts it back on a remote -, then drops her gaze across the yard.\",heads down a road and limps to her side.,tears the check into tiny pieces and storms out of the house.,3\n8323,lsmdc1011_The_Help-78698,19332,Someone receives a letter from someone offering her a job as a junior editor at Harper & amp; Row Publishers. Someone,Someone receives a letter from someone offering her a job as a junior editor at Harper & amp; Row Publishers.,Someone,gold,arrives in front of someone's house in a storm of dust and marches towards the front door like an angry chicken.,waves where her organization washes onscreen.,\"peers into the baby's arms, then shifts her jaw then glances at.\",starts off the seat of the hydra's court when people are led away from him.,0\n8324,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17229,\"A light shines from an upstairs window. In the bedroom, a dark - haired boy wearing round glasses\",A light shines from an upstairs window.,\"In the bedroom, a dark - haired boy wearing round glasses\",gold,kisses one of their.,is looking at an unusual photo album.,plays in the offscreen line.,pops someone's impassive face.,1\n8325,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17228,\"In the sprawling suburbs, the streets grow dark and the lights go on in the rows of houses. A light\",\"In the sprawling suburbs, the streets grow dark and the lights go on in the rows of houses.\",A light,gold,shines across the chimney.,shines from an upstairs window.,is gathering in the house.,blazes in a crowded track.,1\n8326,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17230,\"In the kitchen, his someone is decorating a meringue gateau. Someone\",\"In the kitchen, his someone is decorating a meringue gateau.\",Someone,gold,is fastening his son's bow tie.,lies on the bed next to someone's.,are asleep in bed.,tucking his drifts back into her bag.,0\n8327,anetv_yl37hI-Bgkk,6834,The person brushes off his hair and then signs his name on a piece of paper. More men are seen shaving their heads and one,The person brushes off his hair and then signs his name on a piece of paper.,More men are seen shaving their heads and one,gold,begins cutting his hair and giving him more thumbs tattoos as another showing is in his mouth.,stops wiping down and ends.,falls off without falling off.,speaks to the hair stylist on what he wants.,3\n8328,anetv_yl37hI-Bgkk,1120,A man is standing inside a building. He,A man is standing inside a building.,He,gold,uses tools to shave and clean another man's neck.,is applying a plaster of snow.,is shown doing some exercises on the sand.,walks down a river in a lift.,0\n8329,anetv_yl37hI-Bgkk,6835,More men are seen shaving their heads and one speaks to the hair stylist on what he wants. The person,More men are seen shaving their heads and one speaks to the hair stylist on what he wants.,The person,gold,continues drying up with the hair and ends up tugging up the bottle with a scissors at the end.,continues shaving the heads of men while they sit in the chair and wait.,applies makeup to another stylist who catches another makeup tattoo.,continues washing all the different areas.,1\n8330,anetv_yl37hI-Bgkk,1121,He uses tools to shave and clean another man's neck. The man then,He uses tools to shave and clean another man's neck.,The man then,gold,puts his facial hair on and shows a close up of the camera.,trims his hair while the man uses toppings to trim the tattoo.,signs a sheet to have his hair shaved off.,removes the leg of his left shoe and dips it into the left lace.,2\n8331,anetv_yl37hI-Bgkk,6833,A person is seen shaving the head of a person seen in a chair in front of him. The person,A person is seen shaving the head of a person seen in a chair in front of him.,The person,gold,smears the throats all along the sides and immediately cleans off the left boot.,lifts a third weight over his head before beginning to shave it's beard with a towel.,continues spraying the side of the pumpkin.,brushes off his hair and then signs his name on a piece of paper.,3\n8332,anetv_CBN0dqyWB7w,10357,A man is seen kneeling down next to a car while speaking to the camera. The camera,A man is seen kneeling down next to a car while speaking to the camera.,The camera,gold,pans all around the car as well as the tire while the man continues to speak to the camera.,moves back and fourth and shows several people working out on bicycle bikes.,zooms in on people and leads to the man climbing another.,zooms up around him using the hand moves around the machine.,0\n8333,anetv_mvomkmq32vU,12535,A track athlete prepares and stretches out on a starting line. A track athlete,A track athlete prepares and stretches out on a starting line.,A track athlete,gold,is looking down a track wearing a yellow shirt.,jumps on a horse.,runs down a track and high jumps over bar onto a mat.,prepares to jump into a sand pit.,2\n8334,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14106,\"Seeing no one, he gives a disappointed look. Later, someone and someone\",\"Seeing no one, he gives a disappointed look.\",\"Later, someone and someone\",gold,assemble wrought - iron fencing around lion's enclosure.,come into the office and look between the proceedings.,enter an unlit high table.,arrive in a home and dine up with north groom.,0\n8335,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14098,\"Someone looks on, dazed. Someone tears up and someone\",\"Someone looks on, dazed.\",Someone tears up and someone,gold,grins from ear to ear.,wraps her arms triumphantly around his neck.,steps down to join the soldier.,\"goes down the hall at someone, who is standing at the sink, studying her new friend.\",0\n8336,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14101,\"Later, the hand crosses off June 10th. As a circular saw cuts a pole, otters\",\"Later, the hand crosses off June 10th.\",\"As a circular saw cuts a pole, otters\",gold,watch from a rock.,spray out the waste paper.,signals to a sheet of beads.,sweep across a cresting wave.,0\n8337,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14088,Someone brings a sandwich to someone. He,Someone brings a sandwich to someone.,He,gold,continues to sketch as she sits beside him at a picnic table.,halts and glances back at someone.,gives a resigned nod.,pulls a strand off his tray.,0\n8338,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14105,\"He glances around, then checks his watch and gazes down a path for Lily. Seeing no one, he\",\"He glances around, then checks his watch and gazes down a path for Lily.\",\"Seeing no one, he\",gold,bangs back down hard.,\"heads off, leaving someone down.\",steps to a side door.,gives a disappointed look.,3\n8339,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14094,Someone expectantly takes a steadying breath. Someone,Someone expectantly takes a steadying breath.,Someone,gold,\"shifts her weight, her gaze intent.\",brushes his eyes behind sweating someone.,grimaces in taut smoke.,spreads her wings and snorts a thin drains of blood on her fingernail.,0\n8340,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14095,\"As he stares at the bank statements in his hands, someone bridles. Someone\",\"As he stares at the bank statements in his hands, someone bridles.\",Someone,gold,wears a puzzled frown.,\"'s energy brings him to his feet, but is firm and firm.\",\"sits on his table, her arms folded across her chest.\",hangs his head.,0\n8341,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14096,Someone wears a puzzled frown. Someone,Someone wears a puzzled frown.,Someone,gold,\"hurries downstairs into the corridor, grabs someone's arm, and walks off before turning off the lights.\",walks round to the young someone under a kiosk with some secret data on someone's white shirt.,holds up the bank statements.,and someone step forward to reveal where the sphere will be created.,2\n8342,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14092,\"Blinking back tears, someone strides away. Someone\",\"Blinking back tears, someone strides away.\",Someone,gold,goes through the jewelry box.,reaches over and shakes someone's hand.,scowls in someone's direction.,shakes his head disbelievingly and smiles to himself.,3\n8343,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14102,\"As a circular saw cuts a pole, otters watch from a rock. On the calendar, the hand Xs out the 19th, then\",\"As a circular saw cuts a pole, otters watch from a rock.\",\"On the calendar, the hand Xs out the 19th, then\",gold,the lid is firmly closed.,adds to a doodle at the bottom.,\"the other white, high below.\",tumble over its head.,1\n8344,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14097,Someone holds up the bank statements. Someone,Someone holds up the bank statements.,Someone,gold,inches at its folds.,\"looks on, dazed.\",notices the writing on the chalkboard.,stares at the gravestone.,1\n8345,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14108,She eyes his knit cap. She,She eyes his knit cap.,She,gold,touches the end of her nose.,produces someone's cigarette.,reflects and looks over at someone who wears a fearful gaze.,lifts her brow high.,3\n8346,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14089,\"He continues to sketch as she sits beside him at a picnic table. With a sad smile, she\",He continues to sketch as she sits beside him at a picnic table.,\"With a sad smile, she\",gold,tries to pick up a plate.,gets up and drives off.,gazes at the oblivious boy.,glances at the tv.,2\n8347,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14103,\"On the calendar, the hand Xs out the 19th, then adds to a doodle at the bottom. Sitting outside, someone\",\"On the calendar, the hand Xs out the 19th, then adds to a doodle at the bottom.\",\"Sitting outside, someone\",gold,sadly faces someone with seven pencil drawings on an upper lip.,hurries to the sound of locking the safe.,elbows someone's desk and brings his hands up.,draws in his sketchbook.,3\n8348,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14090,\"Struggling to remain composed, she nods. He\",\"Struggling to remain composed, she nods.\",He,gold,lifts his gaze to someone who holds her gaze.,returns to his sketch.,turns back to abduction another portrait.,reaches out and checks the screen.,1\n8349,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14091,\"He returns to his sketch. As someone focuses on his drawing, someone\",He returns to his sketch.,\"As someone focuses on his drawing, someone\",gold,lowers slightly in the stern.,pops a fish into his mouth and holds out a towel.,takes a picture in the rocking boys sky.,watches with heartbroken eyes.,3\n8350,lsmdc3087_WE_BOUGHT_A_ZOO-41390,14100,\"Now, someone and someone set towering posts near Buster's enclosure. Someone\",\"Now, someone and someone set towering posts near Buster's enclosure.\",Someone,gold,follows someone to follow him as they weave through another tunnel.,raises into the fire and slowly swims toward the rocker.,mounts a sign in front of a capuchin enclosure.,enters outside the studio.,2\n8351,anetv_GaxyzK2mHqw,13440,\"Woman shows a clean pan, put the butter on the bread and grate the cheese, then put it as a sandwich and in the pan with a lid till the bread is tasty. woman\",\"Woman shows a clean pan, put the butter on the bread and grate the cheese, then put it as a sandwich and in the pan with a lid till the bread is tasty.\",woman,gold,get a package put adhesive from a swiss water pan and begin to iron it.,serve the bread in a blue dish and slice in two.,rubs the bread into a bigger bowl to roll off the oven.,removes the knife and pours the cloth all over the top again.,1\n8352,anetv__nvQDglPcmc,16400,Water polo team is standing by the pool talking to the camera. man,Water polo team is standing by the pool talking to the camera.,man,gold,is standing in a racquetball uniform as the other man digs for his target.,jumps in the water and is holding a ball and sart playing in the pool.,cleans a white beach on the ice.,is walking on a beach with his walking children.,1\n8353,anetv_dQs2-z3TIes,2067,\"The girl speaks into the microphone, then performs a ballet piece. She\",\"The girl speaks into the microphone, then performs a ballet piece.\",She,gold,continues on how to demonstrate how to play the violin and wanting.,dances around the stage for the audience.,plays different the bars and plays on the end.,congratulates loudly with the performance while hitting with the child in arms.,1\n8354,anetv_dQs2-z3TIes,2066,A woman is on stage speaking to a little girl while holding a microphone. The girl,A woman is on stage speaking to a little girl while holding a microphone.,The girl,gold,kicks and leaves the group.,plays the drums with her hands continuously waiting for her turn.,\"speaks into the microphone, then performs a ballet piece.\",smiles at the camera and stops a video from showing him.,2\n8355,anetv_dQs2-z3TIes,2068,She dances around the stage for the audience. She,She dances around the stage for the audience.,She,gold,continues dancing dance with each other while dancing up and down.,master again appears backstage at the microphone holding up flags.,continues speaking while laughing while holding the harmonica.,falls onto one knee as she completes her performance.,3\n8356,anetv_mfq5Y7S3BWs,13565,The same woman is now seen on a stationary bicycle teaching a spin class. Several other people in the class,The same woman is now seen on a stationary bicycle teaching a spin class.,Several other people in the class,gold,started to perform their routine on the beam.,lift up in an upscale gym class.,can be seen on stationary bicycles in the mirror behind the instructor.,sit and chat with same class.,2\n8357,anetv_mfq5Y7S3BWs,13566,Several other people in the class can be seen on stationary bicycles in the mirror behind the instructor. The woman,Several other people in the class can be seen on stationary bicycles in the mirror behind the instructor.,The woman,gold,mixes a area and shows a different roller on the pan.,\"hangs back and feet, ending the window and starts being completely engrossed.\",is then shown on the ground demonstrating an exercise.,\"uses some more reassuring, tattooing sharpens to break down the floor.\",2\n8358,anetv_mfq5Y7S3BWs,13568,The spin class is shown again still in progress. The instructor then,The spin class is shown again still in progress.,The instructor then,gold,begins to teach the class they are trying to do in themselves.,does floor exercises again with the class following along.,turns around and sprints as the members continue.,comes back with pick sticks up and tuns around.,1\n8359,anetv_mfq5Y7S3BWs,13564,A woman is standing by a bathroom door talking. The same woman,A woman is standing by a bathroom door talking.,The same woman,gold,tries to adjust the weight.,is now seen on a stationary bicycle teaching a spin class.,takes off and is at the counter.,take their breaths and aim their rifle together.,1\n8360,anetv_mfq5Y7S3BWs,13567,The woman is then shown on the ground demonstrating an exercise. The spin class,The woman is then shown on the ground demonstrating an exercise.,The spin class,gold,has joined arms while doing stunts before a class.,\"pulled around in the routine, rocking back and forth.\",returns to hold a pose in the uneven bar.,is shown again still in progress.,3\n8361,anetv_rO9SwC42Goo,3742,Two young boys are sitting on a camel and holding on to a stick attached to the seating of the camel while a man dressed in dark clothing is standing next to them. The camel,Two young boys are sitting on a camel and holding on to a stick attached to the seating of the camel while a man dressed in dark clothing is standing next to them.,The camel,gold,begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel.,begins to take two steps while he pull them from the camel.,spins the small camel around the whole.,is riding a camel around with sets of the camels.,0\n8362,anetv_rO9SwC42Goo,12436,Two children are riding it as it kneels to the ground. The kids,Two children are riding it as it kneels to the ground.,The kids,gold,slide down putting their hearing gear on.,begin bouncing the dirt at each other.,are then able to dismount from the camel.,start carrying another child in it.,2\n8363,anetv_rO9SwC42Goo,3743,The camel begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel. The camel then lowers its back legs and the children,The camel begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel.,The camel then lowers its back legs and the children,gold,\"fold, revealing as forcefully to and also begin arm wrestling with the dog.\",bounces and moves back to the lady.,smile as they release their hands from holding on so tightly.,enjoy the quick sidelong stare of each of the girls as it peels away.,2\n8364,anetv_rO9SwC42Goo,12435,A man is standing in front of a camel. Two children,A man is standing in front of a camel.,Two children,gold,are tipped on a lawn with the dogs.,are knelled at a table.,are riding it as it kneels to the ground.,are playing on a wooden set.,2\n8365,anetv_qGID8CHyClA,3842,A man in a red shirt is walking next to them. They,A man in a red shirt is walking next to them.,They,gold,are measuring the end of the ball.,start to dance and dance.,stop playing and set the rope down.,stand and talks to the camera.,2\n8366,anetv_qGID8CHyClA,3838,A large group of men and women are on either side of a thick rope outdoors. They,A large group of men and women are on either side of a thick rope outdoors.,They,gold,\"are playing a game of tug of war, attempting to pull each other forward.\",go on with the rope and then begin balancing on the jumping rope.,run to the melee and different events.,steps onto the glider.,0\n8367,anetv_qGID8CHyClA,3840,\"A man crawls alongside them, offering encouragement. The red time wins, and everyone\",\"A man crawls alongside them, offering encouragement.\",\"The red time wins, and everyone\",gold,claps for the man.,shakes hands as they walk away.,seems to be chasing the ball.,stops waiting for the signal to start physically stabbing.,1\n8368,anetv_qGID8CHyClA,3841,People are playing a game of tug of war on the grass. A man in a red shirt,People are playing a game of tug of war on the grass.,A man in a red shirt,gold,is walking on the ground.,is walking next to them.,is walking behind another person.,is being interviewed at a time end.,1\n8369,anetv_qGID8CHyClA,3839,\"They are playing a game of tug of war, attempting to pull each other forward. A man\",\"They are playing a game of tug of war, attempting to pull each other forward.\",A man,gold,is standing up sculpting the sand pit.,\"crawls alongside them, offering encouragement.\",hits some yellow ball and skate down the suspension.,grab her as they walk away.,1\n8370,lsmdc1044_Pride_And_Prejudice_Disk_Two-89616,11353,Someone and the people are traveling through the rolling hills of the Peaks. Someone,Someone and the people are traveling through the rolling hills of the Peaks.,Someone,gold,put photos to paintings as she turns and races toward her house.,puts her fingers together.,is practicing his fencing.,looks around one of someone's sculpted - like terrain.,2\n8371,anetv_w-6Oo3bgms4,17298,Several men are playing soccer in a gym. There,Several men are playing soccer in a gym.,There,gold,are on a court on the side of a bar and watching them play.,\"are high on the field, trying to stay balanced.\",are some spectators in the background.,still has a large point for a man.,2\n8372,anetv_w-6Oo3bgms4,17299,Another group of men are playing soccer. There,Another group of men are playing soccer.,There,gold,are then shown of a player walking down the swimming pool behind another man and is singing in the background.,are the ball and a ball of tape are giving it to the players.,are spectators in the background.,are sitting on a wooden slide running a brush in front of them watching the game.,2\n8373,anetv_PG-AK5fawJI,16819,\"Then, the pie lands for the second time on the face of the actress, as well on the face of the tv presenter. The tv presenter stands holding ducks on both hands, then he\",\"Then, the pie lands for the second time on the face of the actress, as well on the face of the tv presenter.\",\"The tv presenter stands holding ducks on both hands, then he\",gold,pretends eats the duck on the right hand.,dances to reveal the charming - looking man film.,starts talking on a scrub fingernail and spreading his hand with a boyish face.,\"gets up and goes to his motel room, enters the wall.\",0\n8374,anetv_PG-AK5fawJI,16818,\"After playing a while, the woman turn a handle that raise the pie that lands on the face of the actress. Then, the pie\",\"After playing a while, the woman turn a handle that raise the pie that lands on the face of the actress.\",\"Then, the pie\",gold,\"is added, and the name is to the customer, and then she does a suppressed sob.\",\"lands for the second time on the face of the actress, as well on the face of the tv presenter.\",breaks in the dirt to get the ginger so she can cut it.,takes place while the man watches her.,1\n8375,anetv_PG-AK5fawJI,16817,\"A tv presenter and an actress are putting googles to play rock, paper and scissors pie on front a pie with white cream. After playing a while, the woman\",\"A tv presenter and an actress are putting googles to play rock, paper and scissors pie on front a pie with white cream.\",\"After playing a while, the woman\",gold,continues knitting while giving her long tattoo.,turn a handle that raise the pie that lands on the face of the actress.,cuts some orange cake and begins painting the flower.,stretches its cord attached to the side.,1\n8376,anetv_BCsfauy69xM,13623,We see from inside the pumpkin as they are being carved. We,We see from inside the pumpkin as they are being carved.,We,gold,see a lady bring two children into a slide.,see the sea full of ingredients.,see the court and measuring the distance.,see five pumpkins on a couch and in the dark lit from the inside.,3\n8377,anetv_BCsfauy69xM,13622,We see two people side by side carving pumpkins. We,We see two people side by side carving pumpkins.,We,gold,see aerial closing screens.,see people painting close window while walking past.,see the grass's fingernails.,see from inside the pumpkin as they are being carved.,3\n8378,anetv_BCsfauy69xM,13621,A person is carving a pumpkin. We,A person is carving a pumpkin.,We,gold,whip croutons in a pot.,see two people side by side carving pumpkins.,hands in protective scarves on a pumpkin.,then see the cat's wings and the word emblem on it.,1\n8379,anetv_BCsfauy69xM,13624,We see five pumpkins on a couch and in the dark lit from the inside. We,We see five pumpkins on a couch and in the dark lit from the inside.,We,gold,see people dancing inside a stage.,see a man standing on a wall and talking to the camera and we see a website on the screen.,see a closing title screen.,see a conference room with a lot of people in a room while a man is pointing.,2\n8380,lsmdc1043_Vantage_Point-88905,6867,\"On a preview monitor, the gnn gallery crew watch footage of an assassination attempt on someone. Someone\",\"On a preview monitor, the gnn gallery crew watch footage of an assassination attempt on someone.\",Someone,gold,jumps over and sits in the operating room.,attacks a chubby lad.,looks inside a window as someone walks the cockpit.,takes the bullets for someone.,3\n8381,anetv_OqA83jGQtfg,4196,An introduction comes onto the screen for a video about fishing lures. Several men,An introduction comes onto the screen for a video about fishing lures.,Several men,gold,fly through one after another until a man runs fishing and pours pigs into a bin.,show off the different lures they are using for ice fishing.,are shown engaging in standing outfits.,are then shown from different angles of horses a bit as well as a boy laughing to people.,1\n8382,anetv_OqA83jGQtfg,805,The men are seen sitting over a hole fishing on the ice and holding up fish. The men,The men are seen sitting over a hole fishing on the ice and holding up fish.,The men,gold,finally get the fish into fish and carry him into the water.,pull the fish back out and begin hitting the ball back and fourth shooting at the camera.,continue pulling fish out of the water presenting it to the camera and moving in slow motion.,drink many more shots of the men playing beer with one another.,2\n8383,anetv_OqA83jGQtfg,804,Men are seen holding hooks up to the camera followed by a fish moving under water and a close up of a fishing hole. The men,Men are seen holding hooks up to the camera followed by a fish moving under water and a close up of a fishing hole.,The men,gold,are then seen sitting on a trampoline in a large swimming pool while speaking to each other.,will speak to the camera that lead to several clips of people floating with kayaks along the water.,then swim to each other in various shots in the end while the camera panning back to the other man.,are seen sitting over a hole fishing on the ice and holding up fish.,3\n8384,anetv_OqA83jGQtfg,4198,The action of the lures is shown underwater as several different fish go after the lures. The men,The action of the lures is shown underwater as several different fish go after the lures.,The men,gold,are turning the vacuum to catch the frisbee as they move.,continue welding themselves in the air again.,appear and run through the water.,are also shown above the ice working their poles and catching several fish.,3\n8385,anetv_OqA83jGQtfg,4199,The men are also shown above the ice working their poles and catching several fish. The video,The men are also shown above the ice working their poles and catching several fish.,The video,gold,ends with the closing credits and graphics shown on the screen.,continues with several shots of men moving up and down in the area of a pool.,ends with the closing captions shown on the screen.,ends and one scores a goal and they throw themselves onto a field.,0\n8386,anetv_OqA83jGQtfg,4197,Several men show off the different lures they are using for ice fishing. The action of the lures,Several men show off the different lures they are using for ice fishing.,The action of the lures,gold,is surrounded by the cavalry.,is repeated several times.,closes down the gap into the pole.,is shown underwater as several different fish go after the lures.,3\n8387,anetv_kNAgK0nC9Ig,10740,People are seen walking on the beach that leads into a man surfing on the water. The man,People are seen walking on the beach that leads into a man surfing on the water.,The man,gold,runs around various flips and people in place and give shots to the camera.,puts down a ski and gives it a rub.,is shown performing arm gestures and begins bouncing up and down.,moves along the ocean on a surfboard while people watch on the side.,3\n8388,anetv_kNAgK0nC9Ig,10741,The man moves along the ocean on a surfboard while people watch on the side. Several shots,The man moves along the ocean on a surfboard while people watch on the side.,Several shots,gold,shows the man warming up with his hands.,are shown of the man riding waves while others watch from the side.,\"are shown of landscapes around buildings and leads to him in the water, grabbing fish and divers speaking to the camera.\",are shown of the diver falling spinning the river.,1\n8389,anetv_kNAgK0nC9Ig,12128,The video leads into several shots of people riding surf boards along the water. More clips,The video leads into several shots of people riding surf boards along the water.,More clips,gold,are shown of water surfing on a wave and waving to the camera.,are shown of people riding and riding along the water as well as surfing.,are shown of people surfing along the water and moving with the waves.,are shown of people riding around on bikes.,2\n8390,anetv__s20ZN8WZbo,9674,A man stands behind a bar with several mixed drinks. He,A man stands behind a bar with several mixed drinks.,He,gold,pours a drink on the glass to make lemons and pours it into a glass glass.,pours ice into a glass and tops it with different liquors.,rubs the bowl in his hand and stirs on the lemonade in the glass.,has a drink on it.,1\n8391,anetv__s20ZN8WZbo,9675,He pours ice into a glass and tops it with different liquors. He then,He pours ice into a glass and tops it with different liquors.,He then,gold,attaches it to a plate and drains it on a salad.,adds a small straw.,uses a shaker to cuts the lemons and lemon in one.,compares it to the glass and adds.,1\n8392,anetv_legHHtPK5fA,3689,They are throwing darts at targets. The people,They are throwing darts at targets.,The people,gold,are using paintball guns.,converse as they try to hit their targets.,avoided the bulls at the target.,are standing on his hut hiding behind rocks.,1\n8393,anetv_legHHtPK5fA,3688,A group of men are standing in a row. They,A group of men are standing in a row.,They,gold,are throwing darts at targets.,cheering and doing some scores by outside.,engage in a game using paintball gear.,are playing scotch tape enclosed.,0\n8394,anetv_zwa44U585FE,5300,They are playing a game of croquette. They,They are playing a game of croquette.,They,gold,hit the ball off of the court.,continue playing some cards as well as the crowd of people.,\"hit the balls, trying to get them through the small loops.\",hit the ball back and forth against the batter.,2\n8395,anetv_zwa44U585FE,13075,The men walk a little on the grass and they each briefly hit different balls. The men,The men walk a little on the grass and they each briefly hit different balls.,The men,gold,stand and walk to the edge of the ping pong platform.,are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course.,play paintball with white chasing young themselves.,continue to play hop scotch while performing flips in a large gymnasium skating rings.,1\n8396,anetv_zwa44U585FE,5299,A couple of men are shown in a backyard. They,A couple of men are shown in a backyard.,They,gold,are sitting on blankets and showing some blood stains.,are several different fencing matches on the ground in various city locations.,are playing a game of croquette.,begin to play a game of racquetball.,2\n8397,anetv_zwa44U585FE,13076,The men are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course. The men are now playing croquet in the large grassy area and they,The men are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course.,The men are now playing croquet in the large grassy area and they,gold,try hard to push the ball against a wall.,are trying the deserted yard as they watch.,\"'re taking turns hitting the croquet balls, smiling, and talking the whole time.\",are continuously hitting game of stilts.,2\n8398,anetv_aKacWW7Mn2c,14336,A man walks up to the edge of a diving board. He,A man walks up to the edge of a diving board.,He,gold,does several times several times.,flips through a harness and catches some fish.,picks up the pole and flips it along the beam.,\"dives off into the water, flipping as he goes down.\",3\n8399,anetv_aKacWW7Mn2c,4508,The swimmer dives into an Olympic pool from the platform. The swimmer,The swimmer dives into an Olympic pool from the platform.,The swimmer,gold,jumps on his knees and scores a dive into the pool below.,surfaces and swims over the side of the pool.,throws down into the water beneath the surface of a wave.,goes over the river to get the water and swims away across the pool.,1\n8400,anetv_aKacWW7Mn2c,4507,A swimmer lifts his arms before and prepares for a dive on the platform. The swimmer,A swimmer lifts his arms before and prepares for a dive on the platform.,The swimmer,gold,gets up and hurries off the poop.,does a high dive as he moves his body into the water.,jumps off the bridge and runs backwards across the diving board.,dives into an olympic pool from the platform.,3\n8401,anetv_aKacWW7Mn2c,14337,\"He dives off into the water, flipping as he goes down. He\",\"He dives off into the water, flipping as he goes down.\",He,gold,jumps several more times before falling down.,\"jumps off the diving board, landing in the water.\",falls and falls out of the water.,\"lands into the water, splashing everywhere as people clap.\",3\n8402,lsmdc1045_An_education-90239,10225,They climb the stands to a private suite. Someone,They climb the stands to a private suite.,Someone,gold,strides down a gangplank with a young woman in front of the man.,shakes hands with a man by the door.,looks in on the second desk with a furrowed brow and steps up against the wall.,climbs up his sleeve as he enters the chopper's glowing monitoring chambers.,1\n8403,lsmdc1045_An_education-90239,10226,Someone gives her coat to someone. Their contact,Someone gives her coat to someone.,Their contact,gold,finds two twins grinning.,is holding court in a white dinner jacket.,bears splattered on the front of the truck.,shakes and she see a senator's face.,1\n8404,anetv_YddPa1ujWuk,10950,The woman then begins cutting the news paper and place the box in the middle. The women,The woman then begins cutting the news paper and place the box in the middle.,The women,gold,push the paper around the room while the woman sits next to a tree trunk and speaks to the camera.,puts the box onto a table and begins wrapping the box.,wraps up the box with the news paper and tapes it down on the sides.,talk to the camera while continuing to speak to one another.,2\n8405,anetv_YddPa1ujWuk,10949,A woman is seen speaking to the camera while holding up a box and newspaper. The woman then,A woman is seen speaking to the camera while holding up a box and newspaper.,The woman then,gold,shows off making a file and a girl pours a cup of water onto it and sits down.,begins cutting the news paper and place the box in the middle.,begins cutting a little piece of paper with a throw object.,lays down some knitting shoes and places it up on ends around the man while continuing to look in the distance.,1\n8406,lsmdc0043_Thelma_and_Luise-68408,6691,\"Someone passes him and, as she does, he honks. They look up and he\",\"Someone passes him and, as she does, he honks.\",They look up and he,gold,sees the speedo someone swinging on the knees.,is wildly pointing to his lap.,grins and gazes off sadly.,\"wipes them open, dropping their playful one.\",1\n8407,lsmdc3038_ITS_COMPLICATED-17520,14315,As she places it in her shallow vegetable basket someone strolls into the garden. She,As she places it in her shallow vegetable basket someone strolls into the garden.,She,gold,nods irritably to herself.,\"scans the air, finds the skillet of softened pie and tilts it.\",\"returns his eyes at her, then pauses in a sudden frown.\",takes out her slip and marches up the steps.,0\n8408,lsmdc3038_ITS_COMPLICATED-17520,14314,She hunts around a five - foot plant then locates a tomato and sniffs it. As she places it in her shallow vegetable basket someone,She hunts around a five - foot plant then locates a tomato and sniffs it.,As she places it in her shallow vegetable basket someone,gold,strolls into the garden.,crouches and steps up on a trampoline.,places someone's head on the table.,takes a bite of peanuts.,0\n8409,lsmdc3038_ITS_COMPLICATED-17520,14313,\"Later, wearing a wide - brimmed hat she stands in one of the plots of her spacious garden. She\",\"Later, wearing a wide - brimmed hat she stands in one of the plots of her spacious garden.\",She,gold,slips off her peter kindly shirt.,hunts around a five - foot plant then locates a tomato and sniffs it.,rides it in her hands.,turns her watch clock.,1\n8410,lsmdc3038_ITS_COMPLICATED-17520,14311,He turns away and covers his face with one hand. Someone,He turns away and covers his face with one hand.,Someone,gold,sighs and his shoulders heave.,lifts his head to see he is clearly sleeping.,squints at him doubtfully.,gets up and goes to kiss him.,2\n8411,anetv_nKPkHO9ajs8,15415,\"A boy is outside, running with a net. He\",\"A boy is outside, running with a net.\",He,gold,hits a ball away from the goal.,pushes the soccer ball into his skin and gets it to propel him out.,hits the ball back and forth towards the other players.,is running in a game of animal masks.,0\n8412,anetv_nKPkHO9ajs8,13454,He runs to a goal in the yard. He,He runs to a goal in the yard.,He,gold,is going to hit the pinata.,grabs a camera and slides its off the ground.,pretends to shoot and score goals.,continues a bat on the wall.,2\n8413,anetv_nKPkHO9ajs8,13452,A boy is playing in the yard. He,A boy is playing in the yard.,He,gold,is holding a bat.,started to play a boy behind him.,tears up hopscotch on the ground.,is watching a dvd set by talking to himself.,0\n8414,anetv_PL1JmxPH7y4,2308,The man then begins moving up and down continuously. He,The man then begins moving up and down continuously.,He,gold,continues looking along the street while walking away.,gets up and walks back to the camera.,continues raising his hands and ends by taking off his shirt.,continues playing the drums while continuing to play.,1\n8415,anetv_PL1JmxPH7y4,2307,A person walks into frame and lays down on an exercise equipment. The man then,A person walks into frame and lays down on an exercise equipment.,The man then,gold,begins moving up and down continuously.,runs down a track with a pole and pointing to the pole.,moves around the machine and does in the end.,starts spinning around while using the object.,0\n8416,anetv_PL1JmxPH7y4,8287,\"A man then comes and lays down on his back and starts to do crunches with the machine. After a short of amount of time, the man then\",A man then comes and lays down on his back and starts to do crunches with the machine.,\"After a short of amount of time, the man then\",gold,gets up and grabs the camera and leaves.,shaves his shin brace and lets it fall when he's done.,bends over and begins to give the fists down before turning to a bend.,holds and leads the way out on the open deck and begins to move forward and forward.,0\n8417,lsmdc3077_THE_VOW-35778,10418,\"As he steps away, someone beams after him. Now, someone\",\"As he steps away, someone beams after him.\",\"Now, someone\",gold,\"sleeps peacefully in her lap, her lips parted above her cheek.\",packs a sorting handgun.,\"strolls the patio, sipping a glass of red wine.\",rides off his training trainers.,2\n8418,anetv_z-94IUxC4Xc,6282,Several shots of scenery are shown followed by a person performing a trick on a skateboard and others riding down a hill. Several shots,Several shots of scenery are shown followed by a person performing a trick on a skateboard and others riding down a hill.,Several shots,gold,are shown of people performing capoeira moves and more shots are shown of people running around the clothing.,are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in.,are shown of people riding around on a platform while others watch on the side as well as falling down and looking around.,are then shown of the person riding around on the bikes as well as skaters.,1\n8419,anetv_z-94IUxC4Xc,6283,Several shots are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in. One man falls in the end and his board,Several shots are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in.,One man falls in the end and his board,gold,is shown with flying like tires.,is shown again in his solo clip.,drops before the camera shows his movements following behind.,crashes along the side.,3\n8420,anetv_FNHoSA0hLgM,3743,They hit the ball back and forth against the wall. They,They hit the ball back and forth against the wall.,They,gold,\"continue fighting over the ball, trying to beat each other in the game.\",are trying to break on the floor.,hops up in a circle and do several more springs while raising their arms.,try to hit it but make sure it is not hit.,0\n8421,anetv_FNHoSA0hLgM,3742,An older boy and a younger one are on a racquetball court. They,An older boy and a younger one are on a racquetball court.,They,gold,hit the ball back and forth against the wall.,ripped the tennis ball from one cup in to hit the puck on the wall as well.,begin to play and serve the two fresh pins.,are trying to kick the ball back and forth.,0\n8422,anetv_6GYdu5G61g8,6523,\"People in two boats meet and start to throw water each other using the oars, then some rafters jump into the water. Persons\",\"People in two boats meet and start to throw water each other using the oars, then some rafters jump into the water.\",Persons,gold,jump from a balcony on the rocks to the water while other people continues rafting.,prepare to keep boats from the water.,are in awe on high replays behind spectators.,\"dissolves in a group of people, only to keep a small canopy with people.\",0\n8423,anetv_6GYdu5G61g8,6522,\"Then, people in a boat raft down the choppy waters of a river while paddling. People in two boats meet and start to throw water each other using the oars, then some rafters\",\"Then, people in a boat raft down the choppy waters of a river while paddling.\",\"People in two boats meet and start to throw water each other using the oars, then some rafters\",gold,jump into the water.,strain to pull the fish off.,get to the edge of the ocean in life - a in white suit.,stream into the rafters.,0\n8424,anetv_6GYdu5G61g8,6521,A group of people transport a boat on their heads. People,A group of people transport a boat on their heads.,People,gold,jumps backwards on the river and floats on their backs.,\"appear, to find someone.\",come onto the plane via the camera.,are moored on waiting by a river.,0\n8425,lsmdc3073_THE_GUILT_TRIP-34793,838,Someone winces as she pauses to remove her jacket. She,Someone winces as she pauses to remove her jacket.,She,gold,looks down at his hands.,sees him and whispers.,accelerates the crane right off the van.,looks at a nearby coin and share a smile.,1\n8426,lsmdc3073_THE_GUILT_TRIP-34793,834,Someone applauds from the nearby bar. Someone,Someone applauds from the nearby bar.,Someone,gold,darts behind a table.,\"tiptoes into a bathroom, as sunlight works on someone's hair.\",looks at the teen.,\"holds up her hands, overwhelmed.\",3\n8427,lsmdc3073_THE_GUILT_TRIP-34793,837,\"There's around a quarter of her steak remaining, as she stuffs a forkful of potato and a piece of bread into her mouth and struggles to chew. Someone\",\"There's around a quarter of her steak remaining, as she stuffs a forkful of potato and a piece of bread into her mouth and struggles to chew.\",Someone,gold,\"grabs one, and rides it to the crate to the back inside.\",pan at the other man is too chemical; his blonde eyes watches nearby.,winces as she pauses to remove her jacket.,is washing down eggs and pleasure as someone searches her belongings.,2\n8428,lsmdc3073_THE_GUILT_TRIP-34793,833,He hands her an enormous charred steak. Someone,He hands her an enormous charred steak.,Someone,gold,applauds from the nearby bar.,moves out a flaming gps graphic.,drops the dog and places it with the card.,presents the suit scrunches past the waist.,0\n8429,lsmdc3073_THE_GUILT_TRIP-34793,840,\"He blocks someone's view, who strains to look around him. Someone\",\"He blocks someone's view, who strains to look around him.\",Someone,gold,lulls back in her chair.,drops his hat on the peg.,passes someone in the police.,blinks at the motionless survivor.,0\n8430,lsmdc3073_THE_GUILT_TRIP-34793,836,Someone readies a napkin and picks the greens off her plate. She,Someone readies a napkin and picks the greens off her plate.,She,gold,looks around; someone runs out into the hall and hurries out of the bathroom.,tosses the filling tin across frosting grass.,\"holds up a morsel on her fork, then pops it into her mouth.\",takes both one of her dad's pants.,2\n8431,lsmdc3073_THE_GUILT_TRIP-34793,839,She sees him and whispers. He,She sees him and whispers.,He,gold,watches her nuzzle her husband.,\"blocks someone's view, who strains to look around him.\",\"pats himself on the shoulder, then runs up to stands.\",is back in the kitchen.,1\n8432,anetv_MkKUQ4MMHd8,5304,People are riding camels on the sand. People,People are riding camels on the sand.,People,gold,are riding in tubes down the mountain.,are walking next to the camels leading them.,is sitting on the street in a store carrying a bunch of water.,are on horses on an unpaved field.,1\n8433,anetv_MkKUQ4MMHd8,5305,People are walking next to the camels leading them. A building,People are walking next to the camels leading them.,A building,gold,with a rifle is leading them.,is shown in the background.,is shown riding the camels.,is then shown for several clip.,1\n8434,anetv_MkKUQ4MMHd8,13431,People are riding camels in a desert area. Two individuals that are leading the camels,People are riding camels in a desert area.,Two individuals that are leading the camels,gold,do some push camels.,\"are in different places, people are leading camels in their feet and also.\",give each other high fives.,gets up in the air.,2\n8435,anetv_MkKUQ4MMHd8,13432,Two individuals that are leading the camels give each other high fives. A man and woman riding different camels,Two individuals that are leading the camels give each other high fives.,A man and woman riding different camels,gold,form a small ridge.,goes down a slide and a waterfall into the river.,give each other high fives.,are standing in the middle of a beach.,2\n8436,anetv_26qGsfI9tZ8,731,\"A toddler climbs the steps of a playground. Then, the boy\",A toddler climbs the steps of a playground.,\"Then, the boy\",gold,slides down until to reach the ground.,hobbles unto the swings using a blanket.,flips and takes the slide to the slide.,\"counts on the child, buries his head in the water and jumps down.\",0\n8437,anetv_QrQN-Hm5xew,3180,A man is wearing a large gold necklace. Several people,A man is wearing a large gold necklace.,Several people,gold,are standing in the garden behind them.,are on a beach playing football.,are shown inside a warehouse.,are standing behind others watching.,2\n8438,anetv_QrQN-Hm5xew,3181,Several people are shown inside a warehouse. They,Several people are shown inside a warehouse.,They,gold,kisses begin to get out of a car.,weld stacked together in a locations.,are playing a game of volleyball.,begin skateboarding up and down the ramps.,3\n8439,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8766,\"Someone stands in front of someone. Pushing someone aside, someone\",Someone stands in front of someone.,\"Pushing someone aside, someone\",gold,turns her skiing with a big smile.,shrugs him to a wall.,knocks the man down and threatens him with his wand.,takes a big bite of the sandwich he is holding.,2\n8440,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8743,They hide behind a huge pile of giant orange pumpkins. A crow,They hide behind a huge pile of giant orange pumpkins.,A crow,gold,lands beside them as they anxiously watch the cottage.,watches from the side.,'s nest breaks and the commander flies into the air.,atop a crow's nest slowly approaches.,0\n8441,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8745,Someone spins round and peers into the forest. They,Someone spins round and peers into the forest.,They,gold,run as fast as they can away from the cottage and up the grassy slope.,stops at a roof with a intro fish.,leap into the sphere as they hurtle over the rising water.,charge through the chamber with his sword and miss it.,0\n8442,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8755,\"Still holding Scabbers, someone is dragged under the roots. Someone\",\"Still holding Scabbers, someone is dragged under the roots.\",Someone,gold,makes a grab for him.,\"rolls back someone, lying on top of someone.\",places the palms on the palm of the automaton's hand.,\"smacks him in the face, then drops it.\",0\n8443,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8753,Someone catches Scabbers and slumps down near the Whomping Willow with its twisted trunk. Someone,Someone catches Scabbers and slumps down near the Whomping Willow with its twisted trunk.,Someone,gold,runs alongside the boulder.,grabs her leg off the railings.,rides off along the wide trail.,\"points, his hand shaking.\",3\n8444,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8767,\"Pushing someone aside, someone knocks the man down and threatens him with his wand. Someone's wand\",\"Pushing someone aside, someone knocks the man down and threatens him with his wand.\",Someone's wand,gold,lights the creature up and backs him as it scurries up.,snaps out of his grasp.,catches someone's hand.,flies out of his hand.,3\n8445,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8756,\"Someone jumps over a swinging branch, but the next one lifts her off the ground. Someone\",\"Someone jumps over a swinging branch, but the next one lifts her off the ground.\",Someone,gold,clasps his back on his elbows.,launches the rope onto her to reach the end of her blanketed hand.,kicks herself down onto the runway and falls over a fake brick wall.,rolls over as the tree lashes out.,3\n8446,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8763,They hurtle around until someone lets go and someone falls down the hole under the tree roots. Someone,They hurtle around until someone lets go and someone falls down the hole under the tree roots.,Someone,gold,scales the winged block down the branches.,\"rotates in rage, extinguishing them.\",is managed to fall into a chain chain.,lands on top of him.,3\n8447,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8765,Huge paw prints on the dusty floor lead across the room to a wild - eyed man with matted hair and a ragged convict's uniform. Someone,Huge paw prints on the dusty floor lead across the room to a wild - eyed man with matted hair and a ragged convict's uniform.,Someone,gold,stands in front of someone.,leans his head against a chair while an older men steps out and shuts the door behind him.,walks up to his laptop.,shakes his head.,0\n8448,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8749,People come out of the cottage with the Executioner. He,People come out of the cottage with the Executioner.,He,gold,\"pulls himself up and goes to the greenhouse, knocking the camera upright.\",is making sure to tuck the rope together.,rides alongside the gran torino.,\"walks across the garden, carrying his sharp axe over his shoulder.\",3\n8449,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8757,\"He sprints off into flailing branches as someone is whirled above his head. Scratched by the sharp twigs, someone\",He sprints off into flailing branches as someone is whirled above his head.,\"Scratched by the sharp twigs, someone\",gold,picks his arm over a tree branch.,tosses a package to the ground before him.,is twisted this way and that as she clings to the branch.,falls to his dying family.,2\n8450,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8751,They watch horrified as the Executioner raises his axe. Someone,They watch horrified as the Executioner raises his axe.,Someone,gold,removes a monster from behind him and knocks him into a fireplace.,\"hides her face on someone's shoulder, putting her arms around his neck.\",holds the sword out.,holds a ball in one hand and throws it back.,1\n8451,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8758,\"Scratched by the sharp twigs, someone is twisted this way and that as she clings to the branch. She\",\"Scratched by the sharp twigs, someone is twisted this way and that as she clings to the branch.\",She,gold,is turned upside down.,\"throws the car pitiful of the house, as it goes backwards.\",\"drives off, trying to follow her whipping out her wand.\",drops the last bits to the ground.,0\n8452,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8742,People escape from the cottage and run down the garden path. They,People escape from the cottage and run down the garden path.,They,gold,watch someone fall as three children come and lean.,hide behind a huge pile of giant orange pumpkins.,see someone's attache case.,is lying on the floor as the handsome guy steps from the front of the room.,1\n8453,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8760,\"Someone finds his glasses and puts them on to see someone flying towards him. Desperately, she\",Someone finds his glasses and puts them on to see someone flying towards him.,\"Desperately, she\",gold,lets her head drop into the water around him.,turns for someone's sedan.,grabs hold of his t - shirt.,launches her gun through the air and gets thrown at the ground.,2\n8454,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8750,\"He walks across the garden, carrying his sharp axe over his shoulder. They\",\"He walks across the garden, carrying his sharp axe over his shoulder.\",They,gold,pauses on the plain as the train follows by.,sit on a small couch.,watch horrified as the executioner raises his axe.,smile and make sharp pranam in prayer.,2\n8455,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8764,People climb up through a trapdoor under bare floorboards. They,People climb up through a trapdoor under bare floorboards.,They,gold,go up a rickety staircase and along a dingy landing.,private fish supplies have been hanging next to tv off of hardwood floors.,cover them into huge rocks similar to a metal ladder.,lie down and clean their hands that has been on to carpet.,0\n8456,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8744,A crow lands beside them as they anxiously watch the cottage. Someone,A crow lands beside them as they anxiously watch the cottage.,Someone,gold,is hauled as he tackles the chunky caretaker.,spins round and peers into the forest.,must have been left on the edge below the bridge at center of darkness.,sticks his cloak in flames.,1\n8457,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8746,\"Someone glances back at the hippogriff still chained to a post in the pumpkin patch, then he follows his friends. Halfway up the hill, they\",\"Someone glances back at the hippogriff still chained to a post in the pumpkin patch, then he follows his friends.\",\"Halfway up the hill, they\",gold,\"find a row of spiders climbing into the heavyset enclosure, holding a large enormous book in the fire.\",kiss until the top of someone's bed lies on the grass.,stop and look back towards the cottage.,swarm around to the base of the tree.,2\n8458,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8769,Someone helps someone to his feet. The children,Someone helps someone to his feet.,The children,gold,return to his feet.,\"stare, horrified, as someone embraces him.\",hoist up his rear.,step out of someone's kitchen.,1\n8459,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8747,\"Halfway up the hill, they stop and look back towards the cottage. Smoke\",\"Halfway up the hill, they stop and look back towards the cottage.\",Smoke,gold,fills the city from afar.,\"looks over at the glowering clouds of mumbai, and taps on the window.\",\", someone sits clutching a book on a cardboard tube, gazing down at us.\",rises from the stone chimney.,3\n8460,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8768,Someone's wand flies out of his hand. Someone,Someone's wand flies out of his hand.,Someone,gold,surfaces and frees the watermelon.,helps someone to his feet.,honks his car horn as the destroyer reaches someone either side.,runs along the bare forest path towards a mass of ancient structures at water.,1\n8461,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8761,\"Desperately, she grabs hold of his T - shirt. He\",\"Desperately, she grabs hold of his T - shirt.\",He,gold,is hauled into the air.,aims at the backseat.,takes him down and kisses them desperately.,sends someone's blood hitting the ground.,0\n8462,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8759,She is turned upside down. Someone,She is turned upside down.,Someone,gold,laughs as another man takes his ad and gives her the money.,finds his glasses and puts them on to see someone flying towards him.,'s at the engine underneath.,stand at the top.,1\n8463,lsmdc1029_Pride_And_Prejudice_Disk_One-83978,8579,Someone turns and walks from the room. Someone's composure deserts her and she,Someone turns and walks from the room.,Someone's composure deserts her and she,gold,gets more scrunched on her body as she makes her way toward the bar.,covers both of her breasts.,\"puts the paper back on it, which gradually vanishes in the end.\",\"takes long, deep breath to try and calm herself.\",3\n8464,anetv_H306mUUJ5BE,507,A man is seen speaking to the camera while sitting in a chair and putting his arms up every now and then. He then,A man is seen speaking to the camera while sitting in a chair and putting his arms up every now and then.,He then,gold,takes a small sandwich and begins putting the box on top and moving it around the table then rubbing his brow and speaking again.,plays a harmonica moving his hands around while pausing to speak to the camera and ends up speaking and pointing.,points to the camera and begins doing sit ups and several others stand in the background.,begins doing several twists on the bike while speaking to the camera.,1\n8465,lsmdc0038_Psycho-67416,5239,\"Suddenly he rises, starts quickly out of the room, tries to switch off the lamp as he goes and in so doing succeeds only in knocking the bird off the shade. Then he\",\"Suddenly he rises, starts quickly out of the room, tries to switch off the lamp as he goes and in so doing succeeds only in knocking the bird off the shade.\",Then he,gold,takes an apple from his briefcase and opens it.,\"puts out the lamp, goes out, crosses the darkened office and goes outside.\",grabs another letter so that someone can be easily placed it on the lips of a settee.,\"blow back the canoe he just missed, high enough to find his frustration, listening, and even not - -.\",1\n8466,lsmdc0038_Psycho-67416,5241,\"Someone comes off the porch, walks to the path and directly up to the house, opens the door and goes in. Someone\",\"Someone comes off the porch, walks to the path and directly up to the house, opens the door and goes in.\",Someone,gold,walks across the park with a new one.,\"goes up, pauses one moment outside his mother's door, then opens it and goes in, leaving the door open.\",is standing a red haired young baby and strapped to bed.,\"is still in as usual, though we've not heard this before.\",1\n8467,lsmdc0038_Psycho-67416,5240,\"Then he puts out the lamp, goes out, crosses the darkened office and goes outside. Someone\",\"Then he puts out the lamp, goes out, crosses the darkened office and goes outside.\",Someone,gold,\", disgust, is dragged out of the room.\",wipes out the sign.,\"halts at the top of the stairs and goes through the door of the archives, followed by the police's office window.\",\"comes off the porch, walks to the path and directly up to the house, opens the door and goes in.\",3\n8468,lsmdc3071_THE_DESCENDANTS-5360,6837,\"Surrounding by dead floating leaves, the teen looks away. She\",\"Surrounding by dead floating leaves, the teen looks away.\",She,gold,leans into the train and plucks a section of rock from his.,rests her head on someone's shoulder and walks away.,sinks down beneath the water and holds her head in her hands.,blows out the hookah.,2\n8469,lsmdc3071_THE_DESCENDANTS-5360,6842,\"Her father approaches with a compassionate frown. Wheeling around, someone\",Her father approaches with a compassionate frown.,\"Wheeling around, someone\",gold,holds the line to her chest.,stares bitterly after her father.,finds him with his arms spread open to her.,flips back flips and spins in circles.,2\n8470,lsmdc3071_THE_DESCENDANTS-5360,6841,She climbs out and buries her face in a colorful towel. Her father,She climbs out and buries her face in a colorful towel.,Her father,gold,approaches with a compassionate frown.,closes a door while his daughter look beside him.,awkwardly bites her lip.,\"reaches for her, then carries it to a laundry tin.\",0\n8471,lsmdc3071_THE_DESCENDANTS-5360,6836,\"She looks away, stricken. Blinking back tears, someone\",\"She looks away, stricken.\",\"Blinking back tears, someone\",gold,walks further across.,meets his imploring gaze.,presses her cheek shut and smiles.,watches as someone from the light with a candle illuminating his face.,1\n8472,lsmdc3071_THE_DESCENDANTS-5360,6838,She sinks down beneath the water and holds her head in her hands. Large air bubbles,She sinks down beneath the water and holds her head in her hands.,Large air bubbles,gold,pop out of her mouth and then see his tubes in his hand.,swims with them as she pours them in the water.,escape her gaping mouth as her body shakes with sobs.,drift over a railing at one end of the hall.,2\n8473,lsmdc3071_THE_DESCENDANTS-5360,6840,Someone walks alongside her as her head emerges. She,Someone walks alongside her as her head emerges.,She,gold,\"puts someone to a tube, then shoots from the top of the tank.\",takes out a bag and turns it off.,hops off the couch to be swept up.,climbs out and buries her face in a colorful towel.,3\n8474,lsmdc3071_THE_DESCENDANTS-5360,6839,Large air bubbles escape her gaping mouth as her body shakes with sobs. Someone,Large air bubbles escape her gaping mouth as her body shakes with sobs.,Someone,gold,swinging and linen covers up from over the wall with her eyes shut by her husband.,grabs her bags out and pulls way to the kitchen door.,twirl her hips up in sync.,walks alongside her as her head emerges.,3\n8475,lsmdc3064_SPARKLE_2012-4340,13164,Someone gets to her feet. Someone,Someone gets to her feet.,Someone,gold,\"looks up, tears brimming in her eyes.\",knocks on the door.,pushes her out of the room.,looks her in the eye.,2\n8476,lsmdc3064_SPARKLE_2012-4340,13172,\"Someone rests her head across her arm, as she lies face down on her bed. Someone\",\"Someone rests her head across her arm, as she lies face down on her bed.\",Someone,gold,steps through the room.,\"stands, wet from his local life.\",\"comes and lies beside her sister, looking into her face.\",reaches in and pulls free.,2\n8477,lsmdc3064_SPARKLE_2012-4340,13173,\"Someone comes and lies beside her sister, looking into her face. She\",\"Someone comes and lies beside her sister, looking into her face.\",She,gold,turns to the portrait.,\"removes her cigarette, glances back at the empty mirror, and gives someone a confused look.\",wipes a tear running down the bridge of someone's nose.,\"pushes her arms in his neck, then spreads her arms over her head.\",2\n8478,lsmdc3064_SPARKLE_2012-4340,13169,\"Outside, two uniformed men carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights. A heavy - set man with glasses\",\"Outside, two uniformed men carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights.\",A heavy - set man with glasses,gold,leans forward before his suit shooting the cameras.,approaches him as he rolls off the hood and climbs on top of a high table.,\"walks beside the cracked bumper, flanked by piles of singed identical metal bodyguards.\",leads someone from the house in a long black coat.,3\n8479,lsmdc3064_SPARKLE_2012-4340,13168,\"Now at night, she smokes on the banquette. Outside, two uniformed men\",\"Now at night, she smokes on the banquette.\",\"Outside, two uniformed men\",gold,\"stroll across the street, holding 2 - finger phones.\",enter a apartment through the door in an intercom.,stand at a table polishing her chin with wet hair and a t - shirt.,\"carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights.\",3\n8480,lsmdc3064_SPARKLE_2012-4340,13170,A heavy - set man with glasses leads someone from the house in a long black coat. She,A heavy - set man with glasses leads someone from the house in a long black coat.,She,gold,presses his belt up.,leans out of the car and peers out.,glances at the body - bag as he guides her into the backseat of a patrol car.,\"is drying her hair, he is still brushing her long, thin hair.\",2\n8481,lsmdc3064_SPARKLE_2012-4340,13171,She glances at the body - bag as he guides her into the backseat of a patrol car. Someone,She glances at the body - bag as he guides her into the backseat of a patrol car.,Someone,gold,wearily clasps his natural pocket and stabs the ground with a hypodermic.,\"rests her head across her arm, as she lies face down on her bed.\",has a small half - opened crate beside her.,picks up an anti afro.,1\n8482,lsmdc3064_SPARKLE_2012-4340,13166,She caresses his lifeless face. We,She caresses his lifeless face.,We,gold,kiss each other on the cheek.,gives him a passionately kiss from the cheek.,fade to a black and white snapshot of someone she holds in her hands.,presses his lips in a tight line then hurries over.,2\n8483,anetv_Ou24uqaFRPg,14483,The man carefully touches the paint brush to an old table coloring portions of the table that have been damaged. A different man in an apron and face mask,The man carefully touches the paint brush to an old table coloring portions of the table that have been damaged.,A different man in an apron and face mask,gold,sands an old table.,fills the fire and gets in the chair.,lays on the ground and picks up a wheelbarrow.,looks up and washes his face.,0\n8484,anetv_Ou24uqaFRPg,14485,The man then puts polish on a rag and polishes the table. The man,The man then puts polish on a rag and polishes the table.,The man,gold,shows another strip of shoe polish and put it in front of him.,cuts and cuts the liquid as well as the man's shirt.,polishes a different old table.,dabs the spoon in the paint.,2\n8485,anetv_Ou24uqaFRPg,14482,The man mixes two of the different colored substances with a paint brush. The man carefully,The man mixes two of the different colored substances with a paint brush.,The man carefully,gold,applies an excess wax over an wall and holds it up and back to his smiling.,shaves the excess excess fingernail on the table.,touches the paint brush to an old table coloring portions of the table that have been damaged.,washes it all across the room.,2\n8486,anetv_Ou24uqaFRPg,14484,A different man in an apron and face mask sands an old table. The man then,A different man in an apron and face mask sands an old table.,The man then,gold,turns to place the purple cloth on the wall.,stops the car then circles it up.,puts polish on a rag and polishes the table.,leaves and proceed while the tattoo while a man monitor walks in and out of the frame.,2\n8487,anetv_P4Z4sQNQtJM,9989,A woman is standing outdoors in a pink martial arts outfit. She,A woman is standing outdoors in a pink martial arts outfit.,She,gold,cuts up to her camera.,\"moves slowly, showing various martial arts moves.\",is standing with her hands up while trying to take her legs from getting into the bathtub.,retreats onto the dance with a baton.,1\n8488,anetv_P4Z4sQNQtJM,9990,\"She moves slowly, showing various martial arts moves. She\",\"She moves slowly, showing various martial arts moves.\",She,gold,smooths off the woman's washed nails.,continues moving slowly as the names of the moves appear onscreen.,explains how to hold several different areas of propped wood onto a wood bar.,steps back across the aisle.,1\n8489,lsmdc1060_Yes_man-99492,6444,\"Someone catches her eye, smiles and waves. Someone\",\"Someone catches her eye, smiles and waves.\",Someone,gold,points around the room and gives someone a big thumbs - up.,\"rolls her nightie, silky - - like hers.\",sits alone with someone in the vegetable booth.,gulps him back then returns to work.,0\n8490,lsmdc1060_Yes_man-99492,6445,Someone points around the room and gives someone a big thumbs - up. They,Someone points around the room and gives someone a big thumbs - up.,They,gold,\", they're at all the cash in the safe, trying to bite them.\",share a smile as he grabs a pen to put sand in his pocket.,\"commences her way back at night, till one time,.\",share a fond smile.,3\n8491,lsmdc1060_Yes_man-99492,6442,\"With his hand on someone's shoulder, someone dances around as they walk off. Someone\",\"With his hand on someone's shoulder, someone dances around as they walk off.\",Someone,gold,'s with a group of friends.,carries someone on to his hand.,\"looks like a nightclub in the daytime, on the beach.\",takes a turn and pulls a large candy from his pants.,0\n8492,lsmdc1060_Yes_man-99492,6449,She opens then closes her phone. A woman,She opens then closes her phone.,A woman,gold,enters her iv section.,opens a door and opens it.,'s looking at the photo of someone sprawled on the ground.,puts her ear in to a test.,2\n8493,lsmdc1060_Yes_man-99492,6443,Someone's with a group of friends. Someone,Someone's with a group of friends.,Someone,gold,stares down at someone.,and someone trade a look.,family crowd lies side - by - side.,\"catches her eye, smiles and waves.\",3\n8494,lsmdc1060_Yes_man-99492,6446,\"They share a fond smile. Sitting alone at a table, someone\",They share a fond smile.,\"Sitting alone at a table, someone\",gold,leans into the fountain.,makes a phone call.,waits for another box to return.,stacks pages in a book.,1\n8495,lsmdc1060_Yes_man-99492,6450,\"Someone smiles tightly, and the woman raises her eyebrows. Someone\",\"Someone smiles tightly, and the woman raises her eyebrows.\",Someone,gold,sits down and stares ahead.,sits next to someone.,looks toward his office.,\"in a wedding dress, she rests her head on someone's shoulder.\",1\n8496,anetv_yUSo_xjyGhM,9621,One of the boys has no hands. He,One of the boys has no hands.,He,gold,is washing the dishes.,washes his shoe thoroughly.,\"walks toward the front door, carrying someone behind him.\",moves drink from the boy's hand.,0\n8497,lsmdc3013_BURLESQUE-5138,13610,Someone lies in bed with a camera as someone pulls a black stocking over her knee. She,Someone lies in bed with a camera as someone pulls a black stocking over her knee.,She,gold,pulls the stocking back down her leg.,climbs into the backseat.,straddles someone's suit.,\"peers up at us and looks out, blackness.\",0\n8498,anetv_RYyGvn4MOr0,11097,\"A little girl follows a boy in a yellow bumper car. Then, the boy and the girl\",A little girl follows a boy in a yellow bumper car.,\"Then, the boy and the girl\",gold,skateboard down a couple of steps.,removes the gloves and enter the corner offices in the quarry.,kick up the big jump.,hit other bumper cars.,3\n8499,anetv_RYyGvn4MOr0,11096,People drive bumper cars in a carnival. A little girl,People drive bumper cars in a carnival.,A little girl,gold,falls onto the sand.,walks onto a street and passes a man before a row of houses.,leaps on the front of a parked van while people go.,follows a boy in a yellow bumper car.,3\n8500,anetv_owLv-_CPNJI,15426,\"A man walked towards the folded back, unfolded the handlebar, seat and wheels and tightening the screw. He\",\"A man walked towards the folded back, unfolded the handlebar, seat and wheels and tightening the screw.\",He,gold,talks the other moves in the graph for words to prepare.,demonstrates and demonstrates how hr hip is used in the barber.,grabs the phone and starts to make a u wheel turn down the street without using it.,folded back the bike by unscrewing them and folded them.,3\n8501,anetv_owLv-_CPNJI,548,A folded up exercise bike is shown in a living room. A man,A folded up exercise bike is shown in a living room.,A man,gold,vacuums the marching floor the sink.,steps into an exercise bike.,demonstrates weightlifting and weightlifting.,\"unfolds the bike, putting it into place.\",3\n8502,anetv_owLv-_CPNJI,549,\"A man unfolds the bike, putting it into place. He\",\"A man unfolds the bike, putting it into place.\",He,gold,shows how it can fold and unfold.,comes out on an ironing board and begins ironing.,\"opens it, and brings out other supplies.\",sets the check of the dealer and gives it a vicious job.,0\n8503,lsmdc1060_Yes_man-99320,18649,Someone picks up a basket that someone's food was in. Someone,Someone picks up a basket that someone's food was in.,Someone,gold,is gathered in the double - paneled office.,\"turns the stick around to reveal a human hand, then shrugs.\",stands to kiss someone.,jumps to her feet and someone eyes her lovingly.,2\n8504,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16647,\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he gives a contented smile. Next morning, people\",\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he gives a contented smile.\",\"Next morning, people\",gold,have sex on a sofa.,are late for class.,stand alone at cafe dinner tables.,are hurrying through the foyer.,1\n8505,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16644,All the boys are fast asleep except for someone. He,All the boys are fast asleep except for someone.,He,gold,\"stands at a doorway into a different wall, to make them more sophisticated.\",\"watches the battlefield, which has been holstered in his arms.\",cleans the convenience store nearby.,is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin.,3\n8506,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16645,\"He is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin. Sitting beside him, his pet snowy owl\",He is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin.,\"Sitting beside him, his pet snowy owl\",gold,stands astride a perch and waves.,rolls out and finds him in the water boiler room.,holds a toy toy lion by the window and someone lets a loose woman come through.,\"turns its head as he gently strokes its soft, white feathers.\",3\n8507,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16650,It looks up as they open the classroom door. Someone,It looks up as they open the classroom door.,Someone,gold,carries the four vehicles inside.,\"strides toward them, at someone's ear, as if in a trance.\",\", still in the kitchen, aims at someone, who laughs against the tv.\",looks at them disapprovingly as they hurry into the room.,3\n8508,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16649,A tabby cat is sitting on the teacher's desk. It,A tabby cat is sitting on the teacher's desk.,It,gold,'s got beaten up by a pink cat.,\"goes and looks up at him warily, then rushes to her table to get the handcuff key to the floor.\",looks up as they open the classroom door.,\"yanks, and pulls down.\",2\n8509,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16648,\"Next morning, people are late for class. A tabby cat\",\"Next morning, people are late for class.\",A tabby cat,gold,flies through the ceiling.,spots a tree stacked as it slides into place.,slithers around the corner of the path.,is sitting on the teacher's desk.,3\n8510,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16651,Someone looks at them disapprovingly as they hurry into the room. The cat,Someone looks at them disapprovingly as they hurry into the room.,The cat,gold,\"slaps the guy at a table, and leaves.\",leaps off of the table and turns into someone.,lies on the bed.,gets unsteadily in the car as someone opens the door.,1\n8511,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16646,\"Sitting beside him, his pet snowy owl turns its head as he gently strokes its soft, white feathers. As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he\",\"Sitting beside him, his pet snowy owl turns its head as he gently strokes its soft, white feathers.\",\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he\",gold,falls into the floor.,gives a contented smile.,finds someone lying in the pig's lap.,stares at the crowd from the top of the high rim.,1\n8512,lsmdc3012_BRUNO-4306,16588,Someone rides the exercise bike. Someone,Someone rides the exercise bike.,Someone,gold,rubs the strap over his chest.,catches up to him.,drives out of view.,reclines and pulls down his pants.,1\n8513,lsmdc3012_BRUNO-4306,16592,\"He sits the baby on the scooter. Turning abruptly into the street, he\",He sits the baby on the scooter.,\"Turning abruptly into the street, he\",gold,comes down the steps and past the rear door.,\"pulls a bag from his coat pocket, and blows some of him across her stomach.\",sees someone on the clock and steps forward.,\"cuts off a speeding car, which skids.\",3\n8514,lsmdc3012_BRUNO-4306,16590,He lifts the baby's headphone. He,He lifts the baby's headphone.,He,gold,shows it covers on his brow.,\"rolls on her mother's face, knocking him to sleep.\",hands in the baby to him who straddles a scooter.,rests his head on the oar.,2\n8515,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7822,The boy sits in front of someone on the gas tank with his legs draped over the handlebars. Someone,The boy sits in front of someone on the gas tank with his legs draped over the handlebars.,Someone,gold,helps someone to his feet and taps his long chain around the club with his fingertip.,reaches for his gun.,\"stare little earnest, then nods slightly, his mouth drop.\",\"sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot.\",3\n8516,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7843,Someone notices more monks surrounding their group. The tattoo,Someone notices more monks surrounding their group.,The tattoo,gold,shines at the painted ceiling in the vast chamber.,is addressed on their throne.,is flop around all sides.,faced monk shifts his intense gaze to someone who lifts his chin.,3\n8517,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7845,The monk twitches a tight smile. Someone,The monk twitches a tight smile.,Someone,gold,turns to his companion.,extends his hand to it.,catches his breath and turns away.,gives him a gentle pat.,0\n8518,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7830,\"It grows moldy and disintegrates at his gloved touch. Glancing into the lunch box, he\",It grows moldy and disintegrates at his gloved touch.,\"Glancing into the lunch box, he\",gold,\"pulls out a flicking knife, takes it with a minute hand.\",finds the door ajar.,takes out an apple and watches the bright green fruit turn grey and crumble.,rocks his hands in the pockets book.,2\n8519,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7818,\"Riding a motorbike, someone catches up to them. He\",\"Riding a motorbike, someone catches up to them.\",He,gold,pulls up to the driver's side window.,strikes him with a machete.,aims his appropriate longer at the tiger.,pulls the rope from richard parker's mouth and flips the arrow over one side.,0\n8520,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7847,A monk reaches for him. He,A monk reaches for him.,He,gold,aims at someone's gun.,hauls him pass out to the city.,touches someone's cheek.,hands someone the diary.,2\n8521,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7825,\"Someone shifts his motorcycle onto only its front wheel. As the bike comes to a full stop, its rear wheels\",Someone shifts his motorcycle onto only its front wheel.,\"As the bike comes to a full stop, its rear wheels\",gold,reveals a masked japanese like biker - nosed rear inside it.,\"completely off the side of the boat, almost perfectly intact.\",stay up in the air for a moment then drops back to the ground.,ripple along the rough wheel as by contrast.,2\n8522,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7841,Someone's fingers caress the cross hanging around his neck. They,Someone's fingers caress the cross hanging around his neck.,They,gold,embrace then switch sides and embrace again.,\"of wrap, shirts, and men get out of theirs in the limo.\",share someone's firm gaze.,put in a subdued smile on his face.,0\n8523,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7840,He places a hand on someone's head. Someone's fingers,He places a hand on someone's head.,Someone's fingers,gold,dig into the wet lens.,fall on the wheel.,caress the cross hanging around his neck.,are gently ruffled by her hair.,2\n8524,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7834,\"He shoves half of the remaining sheathed Twinkie into his mouth, then bites down on the wrapper using his teeth to hold the cake in place. He\",\"He shoves half of the remaining sheathed Twinkie into his mouth, then bites down on the wrapper using his teeth to hold the cake in place.\",He,gold,\"empties a few more inside, and he grinds a metal into it.\",looks up down the street - - - - stunned - up.,\"gets her eye, she dances, and he puts her hand on her chin.\",slides the wrapper out.,3\n8525,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7828,\"Driving it, someone reaches into a lunch box on the seat beside him. He\",\"Driving it, someone reaches into a lunch box on the seat beside him.\",He,gold,\"tosses a book in a bag, opens, and stares at the photo.\",pulls out a sandwich.,sways back and forth.,\"turns and runs back to the apartment, and then nods.\",1\n8526,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7827,\"Now someone's motorcycle catches up to someone again. Driving it, someone\",Now someone's motorcycle catches up to someone again.,\"Driving it, someone\",gold,fires a blast of energy.,\"looks the other way, firing.\",reaches into a lunch box on the seat beside him.,spies someone following by the driver's door.,2\n8527,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7836,\"It's now empty plastic smeared with cream. Later, in the desert, someone\",It's now empty plastic smeared with cream.,\"Later, in the desert, someone\",gold,rolls past the back of the home.,waits with his legs wide open.,drives with some drinks and cigarette.,\"leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings.\",3\n8528,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7837,\"Later, in the desert, someone leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings. They\",\"Later, in the desert, someone leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings.\",They,gold,\"approach towering rock formations that appear constructed into, creating buildings within their natural structures.\",\"sets down a wet drink off a stair pipe, then returns to meet someone.\",\"walk along a narrow bridge pulled through a harsh, damp valley.\",peer through a rocky canopy of trees.,0\n8529,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7839,The one in front removes his hood revealing tattooed writing covering his face and bald scalp. He,The one in front removes his hood revealing tattooed writing covering his face and bald scalp.,He,gold,places a hand on someone's head.,blow out someone's body and kisses someone's bare legs.,\"puts a younger woman's skeleton costume, tries to retrieve some pliers.\",sits on his back on the desk and holds someone 'legs.,0\n8530,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7829,He pulls out a sandwich. It,He pulls out a sandwich.,It,gold,grows moldy and disintegrates at his gloved touch.,leans against the bathroom curtain.,slams someone's jeans down and flops back against someone.,\"is sharpening the carrot, then picks it up, moves it down next to her, she examines it for a moment.\",0\n8531,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7820,\"Grinning, he speeds ahead of the truck. It\",\"Grinning, he speeds ahead of the truck.\",It,gold,hides behind the mechanism.,pulls up beside then passes someone who shakes his head at someone.,smashes the cage which blocks someone's view.,relaxes up in the driver's seat as he turns the wheel backward.,1\n8532,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7844,The tattoo faced monk shifts his intense gaze to someone who lifts his chin. The monk,The tattoo faced monk shifts his intense gaze to someone who lifts his chin.,The monk,gold,\"lifts his small knees to the floor, then shakes his head.\",grabs someone's sword.,gives someone another shake then joins someone.,twitches a tight smile.,3\n8533,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7823,\"Someone sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot. Popping a wheelie, they\",\"Someone sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot.\",\"Popping a wheelie, they\",gold,jog across the road toward the edge of the station and approach the street outside.,glide along on only the bike's rear wheel.,stare at each others as he questions them.,turn back to see the zoo cop away.,1\n8534,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7833,He finds a plastic wrapped Twinkie and examines it then gives it a squeeze. Someone,He finds a plastic wrapped Twinkie and examines it then gives it a squeeze.,Someone,gold,strokes the side of his head then turns it down.,bites into the still fresh snack and chews thoughtfully.,smiles tightly as someone leans onward.,uses the mixer to block the bell until he finds the usual beautiful place.,1\n8535,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7831,\"Glancing into the lunch box, he takes out an apple and watches the bright green fruit turn grey and crumble. He\",\"Glancing into the lunch box, he takes out an apple and watches the bright green fruit turn grey and crumble.\",He,gold,swivels the car into a mud driveway and race to the window.,breaks away and pours his martini glass.,rubs his gloved fingers against each other cleaning the dust from them.,eagerly approaches and takes the plate of spaghetti from his lips as though seeking anything else.,2\n8536,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7838,A group of monks greets them. The one in front,A group of monks greets them.,The one in front,gold,removes his hood revealing tattooed writing covering his face and bald scalp.,\"gives her a boxy, open - plan bedroom.\",throws it as if at this restaurant.,swings a shy ball from the sidecar.,0\n8537,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7819,\"He pulls up to the driver's side window. Grinning, he\",He pulls up to the driver's side window.,\"Grinning, he\",gold,steals a suitcase from a closet.,speeds ahead of the truck.,looks across at a camera beside her.,turns and glances at the mansion.,1\n8538,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7842,They embrace then switch sides and embrace again. Someone,They embrace then switch sides and embrace again.,Someone,gold,sticks her tongue out and her eyes widen.,notices more monks surrounding their group.,lies face down against his bed.,opens and heads down from the floor back doorway.,1\n8539,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7826,\"As the bike comes to a full stop, its rear wheels stay up in the air for a moment then drops back to the ground. Now someone's motorcycle\",\"As the bike comes to a full stop, its rear wheels stay up in the air for a moment then drops back to the ground.\",Now someone's motorcycle,gold,\"comes off to strap someone against the bluff, barely coming face.\",catches up to someone again.,travels down a deserted street.,drives away from the brothel.,1\n8540,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7821,It pulls up beside then passes someone who shakes his head at someone. The boy,It pulls up beside then passes someone who shakes his head at someone.,The boy,gold,gives her a shy smile.,joins his dad at a desk.,\"wears a worried look, then lifts his head back.\",sits in front of someone on the gas tank with his legs draped over the handlebars.,3\n8541,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7835,He slides the wrapper out. It,He slides the wrapper out.,It,gold,points around the neck to reveal someone's curly - hearted expression and glistening eyes.,shut off the car's engine.,'s back to the hall.,'s now empty plastic smeared with cream.,3\n8542,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7849,Now they walk through a vast wine cellar. Someone,Now they walk through a vast wine cellar.,Someone,gold,grabs a bottle from a table in the middle of a rotunda.,closes the door on the house's leading back into the hall.,'s up close to her desk.,reaches and bravely and saunters out of the balloons.,0\n8543,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7832,He rubs his gloved fingers against each other cleaning the dust from them. He,He rubs his gloved fingers against each other cleaning the dust from them.,He,gold,leans to the counter and leans in to the ear.,someone gazes away pensively.,finds a plastic wrapped twinkie and examines it then gives it a squeeze.,looks shocked and then back to someone.,2\n8544,lsmdc1012_Unbreakable-6965,4299,\"He watches her turn and start down the stairs before he shuts the door. In a huge football stadium, someone\",He watches her turn and start down the stairs before he shuts the door.,\"In a huge football stadium, someone\",gold,is on duty holding a walkie - talkie.,stands in front of a mirror and snarls.,walks quickly to a nearby fence as the policemen dive into the vehicles.,is talking to someone at his desk as someone scoots out of bed.,0\n8545,anetv_hKE7vI--XGU,6393,A woman wearing a shawl stands in front of a tropical plant outdoors. A woman,A woman wearing a shawl stands in front of a tropical plant outdoors.,A woman,gold,sits in front of a mirror speaking to a dog.,stands at a bar in chalk.,gets a drink from a metal pot and starts rubbing it in place.,presents a band on stage for a performance.,3\n8546,anetv_hKE7vI--XGU,6394,A woman presents a band on stage for a performance. A flute player,A woman presents a band on stage for a performance.,A flute player,gold,does karate behind her while the orchestra plays.,sings on two stage in front of the microphone above judge.,plays a part of a song during the performance.,poses for the audience.,2\n8547,anetv_hKE7vI--XGU,6395,A flute player plays a part of a song during the performance. The band,A flute player plays a part of a song during the performance.,The band,gold,continues to play with the sticks.,resumes going down the ice and the group practices to salsa.,collides with a musician.,plays a song together during the performance.,3\n8548,anetv_-jl_v7zi17A,17291,A woman is seen riding on a piece of exercise equipment followed by several shots of her adjusting the equipment and moving it around. More shots,A woman is seen riding on a piece of exercise equipment followed by several shots of her adjusting the equipment and moving it around.,More shots,gold,are shown of people using equipment and kit sitting around people in tubes as well as tubes in the area.,are shown of people riding along the bike as well as a life speaking to the camera.,are shown of her riding the equipment and changing the settings on the front.,are shown of women sticking objects in the end while other people watch on the side.,2\n8549,anetv_Yd98o-oEGvI,11795,\"The game continues and the two continues to play with the frisbee while the owner puts his legs up for the dog to get. Now, the human\",The game continues and the two continues to play with the frisbee while the owner puts his legs up for the dog to get.,\"Now, the human\",gold,continues to pull the rope residential and ends with it back.,arm while other two wake up the too busy sometimes ride off themselves.,has four or five frisbees and starts to throw them rapidly for the dog to get.,orbits the wing of the baking glass and pins it on the waves.,2\n8550,anetv_Yd98o-oEGvI,11794,A man and a dog is out in a field and the dog holds the frisbee between his legs and the dog jumps over the person's back and fetches the frisbee. The game continues and the two,A man and a dog is out in a field and the dog holds the frisbee between his legs and the dog jumps over the person's back and fetches the frisbee.,The game continues and the two,gold,continues to play with the frisbee while the owner puts his legs up for the dog to get.,continue with the dog.,continue walking and waxing the sidewalk around while other people watch on the side.,continue performing tricks as the frisbees turn around in circles as they in the end with their dogs in a queue.,0\n8551,lsmdc1045_An_education-90119,12108,Someone grins and closes the book. Later she,Someone grins and closes the book.,Later she,gold,sits up to someone.,is getting ready for bed.,unrolls a large knitting box.,changes back to april.,1\n8552,lsmdc1045_An_education-90119,12109,Later she is getting ready for bed. Someone,Later she is getting ready for bed.,Someone,gold,'s on the bed fully clothed.,lies on the sofa and has a blanket draped around it.,takes out her suitcase.,sits in front of the tv filled with toilet paper.,0\n8553,lsmdc1045_An_education-90119,12111,She comes out of the bathroom. She,She comes out of the bathroom.,She,gold,looks in the mirror and spins herself around.,takes a bullet in the bath.,is licking her reflection for a long time.,\"looks at him, shifting awkwardly.\",3\n8554,anetv_X9Z9uqrb9EY,16082,\"Various shots and angles of them performing are shown, while others look on. They\",\"Various shots and angles of them performing are shown, while others look on.\",They,gold,and spectators dancing on front of the credits.,\"continue playing their rhythm and are having a great time, before the video ends.\",follow her movements in slow motion.,people are seen playing bleachers on a stage.,1\n8555,anetv_X9Z9uqrb9EY,9870,People are sitting down on chairs. They,People are sitting down on chairs.,They,gold,are dancing salsa stunts in the street.,are playing drums with their hands.,put hats on their heads.,are playing tug of war.,1\n8556,anetv_X9Z9uqrb9EY,16081,They are very into it and there are wine barrels behind them. Various shots and angles of them performing,They are very into it and there are wine barrels behind them.,Various shots and angles of them performing,gold,jump about clothes prepped.,\"are shown, while others look on.\",turns and being shown being played.,layups on the beach.,1\n8557,anetv_X9Z9uqrb9EY,9871,They are playing drums with their hands. People,They are playing drums with their hands.,People,gold,bend their foot to the wall.,are trying to get back into the water.,are playing the drums in front of someone.,are standing next to them behind a table watching.,3\n8558,anetv_X9Z9uqrb9EY,16080,Three men perform conga drums inside of a room. They are very into it and there,Three men perform conga drums inside of a room.,They are very into it and there,gold,'s a game preparing to play and celebrates a song.,'s a standing weight.,'s a strings to guitars.,are wine barrels behind them.,3\n8559,anetv_FLL06mU-ua8,10271,A man gives tips on outdoor physical training. He,A man gives tips on outdoor physical training.,He,gold,unwraps a razor and loosens a long chain.,pauses and turns around before and celebrates.,talks about a demonstration.,demonstrates on the monkey bars going back and forth with upper body strength.,3\n8560,anetv_PofMK_beoR8,3962,\"Several people begin walking into a room wearing Kangaroo shoes and bouncing around. On the left side of the room, there\",Several people begin walking into a room wearing Kangaroo shoes and bouncing around.,\"On the left side of the room, there\",gold,'s a closeup pulling the cloth down to pick up the earring.,\"are several young boys playing around them, making sounds different.\",is a bar on two poles that is about five feet high that each person takes turns jumping over.,'s white children running swinging the boards in their way until turning and extending their arms.,2\n8561,anetv_qrvPTE0kb5U,17307,A man is talking on a cell phone. He,A man is talking on a cell phone.,He,gold,has a tattoo on his arm and changes details.,picks up a hat and puts it on his ear.,is playing a accordion in a office.,begins talking to another man.,3\n8562,lsmdc1005_Signs-4628,15291,The young shop assistant comes to the counter with a paper prescription bag. She,The young shop assistant comes to the counter with a paper prescription bag.,She,gold,spots a speeding car.,leans pensively on the counter.,crosses to the door.,goes off to pick it up.,1\n8563,anetv_Vhf-vNRYQEg,2849,A close up of a sign is shown followed by the camera capturing many guitars on shelves around him. A man,A close up of a sign is shown followed by the camera capturing many guitars on shelves around him.,A man,gold,is seen getting out of a car.,takes a drink containing a glass of beer while continuing to speak to the camera.,is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding.,walks back and fourth while others watch and end with a couple.,2\n8564,anetv_Vhf-vNRYQEg,1006,A man sits on a cardboard box and plays an accordion. He,A man sits on a cardboard box and plays an accordion.,He,gold,holds the saxophone up.,steps into the song.,stops playing and talks to the camera.,stops playing and lifts his hand up.,3\n8565,anetv_Vhf-vNRYQEg,1005,Guitars are hanging on a wall of a shop. A man,Guitars are hanging on a wall of a shop.,A man,gold,talks to another woman.,is inside a gym.,puts a stick and stomps on his microphone.,sits on a cardboard box and plays an accordion.,3\n8566,anetv_Vhf-vNRYQEg,2850,A man is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding. He,A man is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding.,He,gold,pleads with the camera and then turning off the light as well as swimming in between him.,continues playing more while smiling to the camera and pauses to speak more and hold onto his instrument.,continues to demonstrate how to apply the wallpaper when a man talks while standing on a chair in front of the shop.,stands between him and on the playground and playing on the accordion.,1\n8567,anetv_2OEc8kPVn_Y,2870,An Asian woman is standing outside in a large field wearing a pink loose linen like outfit. She,An Asian woman is standing outside in a large field wearing a pink loose linen like outfit.,She,gold,strolls cautiously through the parlor.,then puts her legs and hands out and begins to move like a ninja throughout the field.,is hanging in the wall of the convention room.,is playing the instrument sitting on her lap.,1\n8568,anetv_2OEc8kPVn_Y,2871,\"She then puts her legs and hands out and begins to move like a ninja throughout the field. After she has moved left and right across the field, she\",She then puts her legs and hands out and begins to move like a ninja throughout the field.,\"After she has moved left and right across the field, she\",gold,moves in the front bends back and begins to do what she does bends over.,puts the shaker down.,then comes back to the middle of the field and stands still to complete her routine.,hands the game to sticks.,2\n8569,anetv_jqLwYHwYYPM,16095,The man is back on the ground with a long tape measure and measuring the ground. The man is now holding a tile with ridges on all four sides and he,The man is back on the ground with a long tape measure and measuring the ground.,The man is now holding a tile with ridges on all four sides and he,gold,takes a mallet and a tool to gently pound the pieces together.,is silently counting the blades together.,begins to throttle himself.,wants to know how to do it.,0\n8570,anetv_jqLwYHwYYPM,16097,\"When the man reaches the wall he uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it. The man is back in the house and piecing a small tile near some cabinets, then the man\",\"When the man reaches the wall he uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it.\",\"The man is back in the house and piecing a small tile near some cabinets, then the man\",gold,put one onto the fourth roller.,\"begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout.\",puts the lighter on and cuts tiles to apply it to the other side of the floor.,shins up carpet materials and hangs it together in place under the sheet cover.,1\n8571,anetv_jqLwYHwYYPM,16092,A black screen appears and the yellow words appear on them read Extreme How - To presents. The second black screen,A black screen appears and the yellow words appear on them read Extreme How - To presents.,The second black screen,gold,appears with green letters that say rocking secretary in the air in the center of the square.,has yellow words that read installing heated floor tile.,shows manual access floss and feigns for attention.,appears with white words that include a logo with barely white words and finally began the website down the channel to the cursor.,1\n8572,anetv_jqLwYHwYYPM,16093,\"The man walks away from the corner and the next view is of a kneeling man using a tool to remove base molding from a wall, using a drill gun, measuring with a long ruler, then laying on the ground gray pieces of fabric with some wires attached to it. The man is then shown pressing buttons on a little white box and the man is now pointing to those wires attached to those gray pieces of fabric and the man\",\"The man walks away from the corner and the next view is of a kneeling man using a tool to remove base molding from a wall, using a drill gun, measuring with a long ruler, then laying on the ground gray pieces of fabric with some wires attached to it.\",The man is then shown pressing buttons on a little white box and the man is now pointing to those wires attached to those gray pieces of fabric and the man,gold,starts putting wires into a gray pipe that is now shown on the wall.,finishes up the tool with the smoke in it to show how it works on physical with equipment.,appears in a still showing it then scribbles several flat tiles with a metal row.,places a bloody strip on the tool and puts a spare tire on it.,0\n8573,anetv_jqLwYHwYYPM,16096,The man is now holding a tile with ridges on all four sides and he takes a mallet and a tool to gently pound the pieces together. When the man reaches the wall he,The man is now holding a tile with ridges on all four sides and he takes a mallet and a tool to gently pound the pieces together.,When the man reaches the wall he,gold,\"moves around the surface of the small pole to show on the wall, goes back and forth digitally talks again.\",gets up and starts spinning the piece of wood in the arms and raking it all around the ground.,\"uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it.\",begins to create sticky tape.,2\n8574,anetv_jqLwYHwYYPM,16098,\"The man is back in the house and piecing a small tile near some cabinets, then the man begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout. The talking man from earlier\",\"The man is back in the house and piecing a small tile near some cabinets, then the man begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout.\",The talking man from earlier,gold,is interrupted by a blue background with pictures of his feet laying on the ground.,starts to put down the ski with alternating complete scrub while now a male is shown and next he scraping and starts talking.,is rolling a copy of fake tile that takes out the bottom of the wooden boots that he must draw from.,appears back in the corner talking and yellow words appear on the screen that contain websites.,3\n8575,anetv_GfSGZZSGH6g,9311,There are two roofers standing top of a building roof removing working on old roof removal. They,There are two roofers standing top of a building roof removing working on old roof removal.,They,gold,'re standing on their black roof.,are in front of a roof in an intricate pile of snow.,are demonstrating how to clean the side of the roof for the whole time.,are using roofing shovel to remove the shingles and tarp.,3\n8576,anetv_GfSGZZSGH6g,9312,They are using roofing shovel to remove the shingles and tarp. One of the roofers,They are using roofing shovel to remove the shingles and tarp.,One of the roofers,gold,is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp.,is onto a bridge and over the towel head.,sands the floor with foam.,uses a large knife to trim the snow as he's trying to block.,0\n8577,anetv_GfSGZZSGH6g,9313,One of the roofers is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp. The other roofer,One of the roofers is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp.,The other roofer,gold,cleans the ground but he throws the tree up to get a dead.,is revealed as he comes to.,is helping him roll up the tarp as he peels it off.,\"scramble to their knees, drive off the road with fireworks high with rails and balls.\",2\n8578,anetv__ajGnJjNUX0,13032,An ad for Floorworks appears on the screen. A guest room,An ad for Floorworks appears on the screen.,A guest room,gold,is shown sitting in a chair.,begins to peel off and a woman goes in front of him making it exercise.,is filled with marching guitar supplies.,\"is shown, displaying the dirty carpets.\",3\n8579,anetv__ajGnJjNUX0,13034,Men are shown replacing and repairing the floors with wooden slats that don't need glue to install. Final photos,Men are shown replacing and repairing the floors with wooden slats that don't need glue to install.,Final photos,gold,are shown of people at the bottom of a roof line some advertisements.,are shown as a white bike car is parked on the side of a rocky desert.,\"are shown of plaster, replica or beautiful.\",are shown of the new hardwood floors in the guest room.,3\n8580,anetv__ajGnJjNUX0,13033,\"A guest room is shown, displaying the dirty carpets. Men\",\"A guest room is shown, displaying the dirty carpets.\",Men,gold,explain how to prepare d. a product for pads.,are shown replacing and repairing the floors with wooden slats that don't need glue to install.,are applying ornaments to another tree.,are being interviewed for a woman who has fallen with his own and then continues packing and the window in the bathroom.,1\n8581,lsmdc1018_Body_Of_Lies-80345,16491,He smiles and raises his eyebrows at someone. They,He smiles and raises his eyebrows at someone.,They,gold,walk inside the kitchen.,stare at the envelope but this time he speaks to her.,smile at his wife like someone.,walk out to the street.,3\n8582,lsmdc1018_Body_Of_Lies-80345,16490,She waves a white napkin. He,She waves a white napkin.,He,gold,spins up and touches them.,smiles and raises his eyebrows at someone.,\"swerves on front a huge, brick breaking woman.\",puts her hand on her mouth then looks over at each.,1\n8583,lsmdc3021_DEATH_AT_A_FUNERAL-1309,12739,Someone childishly claps his bare bent legs together. He,Someone childishly claps his bare bent legs together.,He,gold,and someone get into the warehouse.,ads to the rhythm by tapping his knees with his hands.,walks through the crowds towards the house.,rests the head in his hand and stands.,1\n8584,lsmdc3034_IDES_OF_MARCH-2904,9916,\"Ending the call, he crosses a tarmac to a private jet. Later in flight, he\",\"Ending the call, he crosses a tarmac to a private jet.\",\"Later in flight, he\",gold,rolls onto a patio set where someone sits with his parents.,works beside someone who sits facing someone.,crosses the blue - white house to the high school balcony setting.,signals the homeless man.,1\n8585,lsmdc3034_IDES_OF_MARCH-2904,9918,Turbulence jostles the aircraft causing someone to look up from his work. He,Turbulence jostles the aircraft causing someone to look up from his work.,He,gold,speeds off.,points at someone's reactor.,braces himself and shuts his eyes.,see the clergyman below.,2\n8586,lsmdc3034_IDES_OF_MARCH-2904,9917,\"Later in flight, he works beside someone who sits facing someone. Turbulence\",\"Later in flight, he works beside someone who sits facing someone.\",Turbulence,gold,sweeps a bare hand over someone's lap.,reads an accepting card.,jostles the aircraft causing someone to look up from his work.,closes his eyes and squints as he sticks out his tongue.,2\n8587,lsmdc3034_IDES_OF_MARCH-2904,9919,\"He braces himself and shuts his eyes. With a wry smile, someone\",He braces himself and shuts his eyes.,\"With a wry smile, someone\",gold,shakes himself at the sight of someone and enters.,glances out his window.,watches him flip again.,goes to a window and follows his friend.,1\n8588,anetv_Ck-9AHZNkq4,2819,\"A boy looks at a smart phone while pedaling a stationary bike, and other boys continue biking. A boy\",\"A boy looks at a smart phone while pedaling a stationary bike, and other boys continue biking.\",A boy,gold,pushes a bull across the yard and does several stand ups before jumping down from the driveway.,kneels down on the street.,starts for the match.,lowers his cap to cover his eyes.,3\n8589,anetv_Ck-9AHZNkq4,12310,Three people are shown sitting on a bicycle machine and moving their legs. More people,Three people are shown sitting on a bicycle machine and moving their legs.,More people,gold,dance ready and get the weights up all the way back down when they're done.,are shown riding around preparing and moving around the track.,are seen riding on the exercise machine while the camera pans around their movements.,are seen riding around on exercise bikes while others watch on the side.,2\n8590,anetv_Ck-9AHZNkq4,12311,More people are seen riding on the exercise machine while the camera pans around their movements. A person shows off his watch and a woman,More people are seen riding on the exercise machine while the camera pans around their movements.,A person shows off his watch and a woman,gold,leans near them and wipe the vehicle off.,is looking at her phone.,walks behind him smiling.,is shown on the sidelines continuing to kick it up that leads into several runners turning around and running around as well.,1\n8591,anetv_CaQkeVwKiUs,10539,A man hits the individual pointing guns with a bowling pin. The guy,A man hits the individual pointing guns with a bowling pin.,The guy,gold,stands up and shoots the ball very quickly around each mans left.,pulls the head of the individual not pointing guns.,rushes to members opposite people and pin him with their medals.,shakes the guy over the shaken levels of the tank.,1\n8592,anetv_CaQkeVwKiUs,10536,A guy enters a building through a door. A guy,A guy enters a building through a door.,A guy,gold,talks with the camera.,is running around holding cones.,taps his finger on the guy.,greets two sitting individuals.,3\n8593,anetv_CaQkeVwKiUs,5718,From behind a suited black man walks behind them and he hits the taller guy in the head and they begin talking to the shorter man. The white man,From behind a suited black man walks behind them and he hits the taller guy in the head and they begin talking to the shorter man.,The white man,gold,walks to the shorter man and pulls his head off of his body and hands it to the black man.,is talking about the wetsuit.,\"walks back to the hot cake and puts the ball inside the cup, happy attention followed by presenting them to the cups.\",once again return to the black fencing toy and does a clamp on the left side and eventually push on surround well to each.,0\n8594,anetv_CaQkeVwKiUs,10541,The man bowls with the individual's head. The man,The man bowls with the individual's head.,The man,gold,paints the man's nose with his right fist.,tosses the head which the guy catches in a bag and shakes.,puts several glasses on his glass.,stretches a missing bite from one of the horses.,1\n8595,anetv_CaQkeVwKiUs,10537,A guy greets two sitting individuals. The guy,A guy greets two sitting individuals.,The guy,gold,runs to it and stands above.,heats a chair after he catches the ball.,lifts his overlooking sequence.,point a gun at the individual pointing three guns.,3\n8596,anetv_CaQkeVwKiUs,5717,\"As soon as the suited man walks past them, the taller man and the suited man pulls out futurist guns and point it at one another. From behind a suited black man walks behind them and he hits the taller guy in the head and they\",\"As soon as the suited man walks past them, the taller man and the suited man pulls out futurist guns and point it at one another.\",From behind a suited black man walks behind them and he hits the taller guy in the head and they,gold,bounce to kick their captive in the air.,begin talking to the shorter man.,ride over in a small circle.,draw him up in a circle.,1\n8597,anetv_CaQkeVwKiUs,10538,The guy point a gun at the individual pointing three guns. A man,The guy point a gun at the individual pointing three guns.,A man,gold,takes something out of his hand and pushes the board across the board.,holds an egg and cuts it in four.,holds open a tool's broken hatch.,hits the individual pointing guns with a bowling pin.,3\n8598,lsmdc3051_NANNY_MCPHEE_RETURNS-24505,10948,\"They pass a pristine white, estate house. Someone\",\"They pass a pristine white, estate house.\",Someone,gold,takes a deep breath.,opens the champion stew house in darkness.,slides a chain over a skyscraper.,writes in front of a limp - faced player.,0\n8599,lsmdc3051_NANNY_MCPHEE_RETURNS-24505,10949,Someone takes a deep breath. In a muddy yard a fallen sign,Someone takes a deep breath.,In a muddy yard a fallen sign,gold,\"stands across him, touching a riverside.\",jolts a gaggle of people.,reads four: seven.,reads - deep valley.,3\n8600,lsmdc3051_NANNY_MCPHEE_RETURNS-24505,10950,In a muddy yard a fallen sign reads - Deep Valley. Dirty water,In a muddy yard a fallen sign reads - Deep Valley.,Dirty water,gold,holds a room between them people.,floods the lobby which look deformed and wrinkled.,reaches on the snowy road.,gets launched from a barn doorway.,3\n8601,lsmdc3051_NANNY_MCPHEE_RETURNS-24505,10951,Flywheels and belts turn an axle. A horizontal assembly of pipes,Flywheels and belts turn an axle.,A horizontal assembly of pipes,gold,starts to go out into the air and then to it.,\"is grated with a small rushing in the mortar, which is slid onto the floor inside the pumping socket.\",is shaped like a castle.,stands on the bridge of someone's clock at the drop.,2\n8602,lsmdc1041_This_is_40-9367,7917,A window shows someone on a bed. He,A window shows someone on a bed.,He,gold,is on the couch while looking down on the street.,crosses out of his room and holds out a newspaper.,frowns as someone gets out.,\"sports a bruised, swollen eye.\",3\n8603,lsmdc1041_This_is_40-9367,7915,\"On the island, the hero someone lies dying with someone the dog at his side. Someone\",\"On the island, the hero someone lies dying with someone the dog at his side.\",Someone,gold,watches his son pair the hat.,watches with the girls and someone.,stares on a helmet burns the wounded man before driving him towards the edge.,deftly dumps the triangle out of a vampire's body.,1\n8604,lsmdc1041_This_is_40-9367,7918,\"He sports a bruised, swollen eye. Someone\",\"He sports a bruised, swollen eye.\",Someone,gold,leads a man open the door to an apartment.,walks in with a sympathetic smile.,bends down to break the cloth over his head.,takes a breath as someone approach.,1\n8605,lsmdc1041_This_is_40-9367,7914,\"As he shuffles off, someone watches him go with a little smile. On the island, the hero someone\",\"As he shuffles off, someone watches him go with a little smile.\",\"On the island, the hero someone\",gold,reads expecting another second - view film.,lies dying with someone the dog at his side.,scales the burning building with his left foot.,hands someone a collar or arrow: as his daily self slowly returns to the screen.,1\n8606,lsmdc3089_XMEN_FIRST_CLASS-42643,15465,\"In a European city, someone arrives at an austere building. Now we\",\"In a European city, someone arrives at an austere building.\",Now we,gold,find several people behind the back of the jet.,watch a group of professional girls playing a wig.,drift high above the landing.,face a gold bar marked with a swastika.,3\n8607,lsmdc1011_The_Help-78503,17187,\"Outside the diner, someone grabs her hand. He\",\"Outside the diner, someone grabs her hand.\",He,gold,gets up.,hurls it aside and fires motorcycle.,'s framing his wrists.,steps towards her and kisses her on the lips.,3\n8608,lsmdc1011_The_Help-78503,17191,She pushes aside a press photographer. Toilets,She pushes aside a press photographer.,Toilets,gold,are scattered on the yard.,uncaps a white sample album.,\"answering the bludger, someone scans the carton, then cranks it up from the box post.\",watch the roof collapse.,0\n8609,lsmdc1011_The_Help-78503,17186,He reaches across and takes her hand. She,He reaches across and takes her hand.,She,gold,tries to free him.,responds with a smile.,poses for them with a layered - bladed revolver.,takes out a wad of cash.,1\n8610,lsmdc1011_The_Help-78503,17192,\"Toilets are scattered on the yard. Someone, with her knickers down,\",Toilets are scattered on the yard.,\"Someone, with her knickers down,\",gold,is in pajamas and a big leather shirt.,proudly sits on one of the many toilets scattered across the lawn.,rushes onto the awning and goes to the window.,reaches out to her striding across the floor.,1\n8611,lsmdc1011_The_Help-78503,17190,Someone comes out of her house grimacing. She,Someone comes out of her house grimacing.,She,gold,wrenches the toy thestral to its ground.,pushes aside a press photographer.,turns on their heels.,\"drives through the path, panicking children.\",1\n8612,lsmdc1011_The_Help-78503,17193,\"Tenderly carrying someone in her arms, someone sets her down on the lawn surrounded by a dozen toilets. She\",\"Tenderly carrying someone in her arms, someone sets her down on the lawn surrounded by a dozen toilets.\",She,gold,\"looks up to see the portrait leaving his son, apparently in front of the wall.\",\"wears a dress, someone attempts to climb the camel.\",kneels in front of her.,\"surveys her work, waiting.\",2\n8613,lsmdc1011_The_Help-78503,17197,\"On a bus on her way home, someone is napping. Someone, sitting nearby,\",\"On a bus on her way home, someone is napping.\",\"Someone, sitting nearby,\",gold,looks up from his book.,watches two men playing.,holds a phone to her ear.,\"shoots the older man, then looks off smiling.\",0\n8614,lsmdc1011_The_Help-78503,17196,Someone grabs someone by the hand. Someone,Someone grabs someone by the hand.,Someone,gold,pulls away and goes.,steps past the weakened woman.,is now lying unconscious beneath a canvas.,clutches someone's back.,0\n8615,lsmdc1011_The_Help-78503,17195,\"At someone's, someone, josefo and Pascagoula are watching civil rights activist someone on tv. Someone\",\"At someone's, someone, josefo and Pascagoula are watching civil rights activist someone on tv.\",Someone,gold,\"stands with a laptop, and leads them down a hallway.\",opens the wooden barred gate and steps inside.,looks at the open - mouthed spotted coins.,turns off the tv.,3\n8616,lsmdc1011_The_Help-78503,17194,\"Someone, watching coldly from the front door, goes inside. At someone's, someone, josefo and Pascagoula\",\"Someone, watching coldly from the front door, goes inside.\",\"At someone's, someone, josefo and Pascagoula\",gold,stick in an descending dancer.,grooming a silver container fruit comes along.,trailing chips into his pockets.,are watching civil rights activist someone on tv.,3\n8617,lsmdc3073_THE_GUILT_TRIP-34839,8079,Someone's face falls and she looks down. Someone,Someone's face falls and she looks down.,Someone,gold,reaches for the scarf.,nods slowly and closes her eyes.,looks up to his eye and smiles.,goes to the car in front of her.,1\n8618,lsmdc3073_THE_GUILT_TRIP-34839,8080,Someone nods slowly and closes her eyes. She,Someone nods slowly and closes her eyes.,She,gold,joins her hands together and rests them against her forehead.,holds her gaze above his forehead.,\"takes a breathing tube through her eyes, then uses her arm.\",stops at a door and starts for the door.,0\n8619,anetv_3ArMGKnxlcU,5352,They are going around poles in the water. They,They are going around poles in the water.,They,gold,do jump roping and flipping each other to the side.,do their stunts as they dance.,jump down two times and continue to talk.,go under a bridge.,3\n8620,anetv_3ArMGKnxlcU,5351,People are canoeing down a river of water. They,People are canoeing down a river of water.,They,gold,smile in the waters.,are involved in a game of beach soccer.,are going in a river in small kayaks.,are going around poles in the water.,3\n8621,anetv_sCxGclun1E0,9698,Two children are standing behind a counter stirring ingredients in pots. A person in a white shirt,Two children are standing behind a counter stirring ingredients in pots.,A person in a white shirt,gold,comes up in front of them.,picks up the bowl with a little cup then picks it up and slams it away.,is mopping the floor behind them.,is sitting behind them.,0\n8622,anetv_sCxGclun1E0,15600,A kid uses their hands to scrape off the spatula. Another person,A kid uses their hands to scrape off the spatula.,Another person,gold,runs across a track to get some snow rolls.,drawing cards with pictures in the background.,stands in front of them and licks his finger.,lands silverware around the tree before getting them into the bowl.,2\n8623,anetv_sCxGclun1E0,9699,A person in a white shirt comes up in front of them. He,A person in a white shirt comes up in front of them.,He,gold,is wearing a red shirt.,stops at the bar and turns.,dips his finger in the bowl and licks it.,\"is holding his hands, but his arms don't plan him.\",2\n8624,anetv_sCxGclun1E0,15599,Two kids are sitting behind a counter stirring the ingredients in the bowls. A kid,Two kids are sitting behind a counter stirring the ingredients in the bowls.,A kid,gold,walks around to a table and pushes it.,uses their hands to scrape off the spatula.,is scrubbing the dishes in a bin and washes their hands.,is then seen standing together and talking about them.,1\n8625,lsmdc1057_Seven_pounds-98195,4596,It languidly wraps its tentacles around his forearm and stings him. His body instantly,It languidly wraps its tentacles around his forearm and stings him.,His body instantly,gold,goes into shock from the poison.,slows and he rises once more.,expands like a glowing accordian.,binds the floor as it gets long and relieved.,0\n8626,lsmdc1057_Seven_pounds-98195,4609,Someone is wheeled down a hospital corridor on a gurney. Someone,Someone is wheeled down a hospital corridor on a gurney.,Someone,gold,\"looks at it lying sideways, watching him.\",comes to see her in an operating room.,smiles out for herself.,is now fully blonde as people stand by the doorway looking through.,1\n8627,lsmdc1057_Seven_pounds-98195,4603,\"In a hospital, medics try to resuscitate someone. Someone\",\"In a hospital, medics try to resuscitate someone.\",Someone,gold,has the club slung over her abdomen and someone stares lifelessly at her.,goes to climb out.,is in deep conversation with an official.,\"doubles back, then returns to his teammates.\",2\n8628,lsmdc1057_Seven_pounds-98195,4604,\"Someone's pager wakes her. Lying on her stomach, she\",Someone's pager wakes her.,\"Lying on her stomach, she\",gold,crosses to some sticky slab and creeps up the stairs.,folds her arm in pain.,\"reaches out for the pager, then raises herself a little to look at it.\",rubs a pillow under her knee.,2\n8629,lsmdc1057_Seven_pounds-98195,4587,\"As someone emails a response to the message he received, the Corvette wanders into the opposite lane, narrowly missing an oncoming car. The van\",\"As someone emails a response to the message he received, the Corvette wanders into the opposite lane, narrowly missing an oncoming car.\",The van,gold,\"slows to a second stop as someone, prone on the wall, sits high in the bed.\",drives a few feet away and drives between two vehicles.,\"flips several times, throwing its passengers about like rag dolls.\",hits the lot faster.,2\n8630,lsmdc1057_Seven_pounds-98195,4607,\"In an operating room, someone's body is lifted onto a table. A square of his chest\",\"In an operating room, someone's body is lifted onto a table.\",A square of his chest,gold,hangs by the bare - ceiling ceiling.,is taped above church.,is bare beneath a sheet.,rises and bounces restlessly back down.,2\n8631,lsmdc1057_Seven_pounds-98195,4608,A square of his chest is bare beneath a sheet. Someone,A square of his chest is bare beneath a sheet.,Someone,gold,\"raises his eyes momentarily, then watches the older man leave.\",is wheeled down a hospital corridor on a gurney.,takes a long seat as someone lays someone down.,pulls the document out of the manuscript and looks up at it.,1\n8632,lsmdc1057_Seven_pounds-98195,4580,\"Someone, now sitting on the side of his bed in shadowy light, lowers the phone slowly from his ear and swallows hard. In the motel, someone\",\"Someone, now sitting on the side of his bed in shadowy light, lowers the phone slowly from his ear and swallows hard.\",\"In the motel, someone\",gold,'s clock shows five seconds.,pulls a large bag of ice from the freezer.,removes an off rolls of surveillance footage of someone's children!,lies on the floor near a sparking circuit breaker.,1\n8633,lsmdc1057_Seven_pounds-98195,4589,The Corvette someone was driving bounces and rolls down a steep embankment. The Corvette,The Corvette someone was driving bounces and rolls down a steep embankment.,The Corvette,gold,attempts to wash as fast as possible.,comes to rest as a mangled heap among bushes.,\"propel him down, wearing a clear blue dress.\",passes a slanting un - urban neighborhood.,1\n8634,lsmdc1057_Seven_pounds-98195,4595,He surfaces from the memory and reaches for a plastic bucket on the side of the bath. He,He surfaces from the memory and reaches for a plastic bucket on the side of the bath.,He,gold,pours the contents into the water.,\"takes someone over, accidentally to the pool, and stops to look backwards.\",rubs the surface of the page.,swings his shirt leg over a cotton ball.,0\n8635,lsmdc1057_Seven_pounds-98195,4583,\"He checks his watch, which is on the side of the bath, then makes a call. Someone\",\"He checks his watch, which is on the side of the bath, then makes a call.\",Someone,gold,draws up his cell phone.,covers his face with his hand and nods as he weeps.,slides his short pair into his leather jacket.,turns around and opens someone's door.,1\n8636,lsmdc1057_Seven_pounds-98195,4612,\"Someone, anesthetized and wearing a theater cap, lies on the operating table. Someone's new heart\",\"Someone, anesthetized and wearing a theater cap, lies on the operating table.\",Someone's new heart,gold,lies still in the open cavity of her chest.,looks up for someone.,pounds on someone's shoulder.,is ripped in the television.,0\n8637,lsmdc1057_Seven_pounds-98195,4610,A surgeon lifts someone's heart out of his body and carefully passes it to a colleague. Someone and her colleagues,A surgeon lifts someone's heart out of his body and carefully passes it to a colleague.,Someone and her colleagues,gold,watch someone introduce the u. s. signature.,are operating on someone.,find out both their seats straight.,are in the gift cabin.,1\n8638,lsmdc1057_Seven_pounds-98195,4601,\"In a flashback, he reaches out to touch someone's inert, bloody hand. He\",\"In a flashback, he reaches out to touch someone's inert, bloody hand.\",He,gold,\"bumps in, her full lover faint.\",leans his head against the pillow.,\"lies on the road, cuddling her and weeping.\",\"opens his eyes and locks his eyes on someone, who shoots mississippi.\",2\n8639,lsmdc1057_Seven_pounds-98195,4592,He is wearing the jeans and polo shirt. He slowly,He is wearing the jeans and polo shirt.,He slowly,gold,walks down the table.,dances with a ball and a dish in the stands.,is looking disappointed on the field.,lowers himself into the tub.,3\n8640,lsmdc1057_Seven_pounds-98195,4582,\"He slits it open, dumps it into the bathtub, and turns on the shower. He\",\"He slits it open, dumps it into the bathtub, and turns on the shower.\",He,gold,\"wipes her nose, then wets another hook on the vanity.\",\"licks the plate, puts his mouth up and turns back and forth.\",\"checks his watch, which is on the side of the bath, then makes a call.\",runs into the room.,2\n8641,lsmdc1057_Seven_pounds-98195,4581,\"In the motel, someone pulls a large bag of ice from the freezer. He\",\"In the motel, someone pulls a large bag of ice from the freezer.\",He,gold,beats the passenger door.,\"slits it open, dumps it into the bathtub, and turns on the shower.\",follows someone's gaze along the road ahead.,\"enters and tugs down the bush, then begins instinctively connected to the guitar.\",1\n8642,lsmdc1057_Seven_pounds-98195,4586,\"Someone, admires her engagement ring. As someone emails a response to the message he received, the Corvette\",\"Someone, admires her engagement ring.\",\"As someone emails a response to the message he received, the Corvette\",gold,voice message appears with a message which he reads!,soldier is punched in the head.,\"wanders into the opposite lane, narrowly missing an oncoming car.\",looks down at someone.,2\n8643,lsmdc1057_Seven_pounds-98195,4605,\"Lying on her stomach, she reaches out for the pager, then raises herself a little to look at it. Suddenly noticing the empty space beside her in the bed, she\",\"Lying on her stomach, she reaches out for the pager, then raises herself a little to look at it.\",\"Suddenly noticing the empty space beside her in the bed, she\",gold,\"rises the spoon, a large billboard of her packet baring most of it to her face.\",stops and lowers her head.,flops down onto the bed.,sits up and scans about.,3\n8644,lsmdc1057_Seven_pounds-98195,4613,Someone's new heart lies still in the open cavity of her chest. Someone,Someone's new heart lies still in the open cavity of her chest.,Someone,gold,\"looks up at the monitor, which is flat - lining.\",\"spots someone, still looking at the ghost.\",is plugged in and appears on the bed of someone's room.,'s dad jumps in.,0\n8645,lsmdc1057_Seven_pounds-98195,4600,\"Someone spasms begin to subside. In a flashback, he\",Someone spasms begin to subside.,\"In a flashback, he\",gold,steps into a room and pulls out a wet handful of apple.,\"reaches out to touch someone's inert, bloody hand.\",humps someone with brandy.,gets up and straightens up so his arms are dangling above his head.,1\n8646,lsmdc1057_Seven_pounds-98195,4597,\"His body instantly goes into shock from the poison. As he spasms, he\",His body instantly goes into shock from the poison.,\"As he spasms, he\",gold,twists aside and glances at a second lifelessly.,stops at his throat then turns.,\"straightens up, going down and is very gently.\",grabs hold of the shower curtain around the bath.,3\n8647,lsmdc1057_Seven_pounds-98195,4602,\"He lies on the road, cuddling her and weeping. In the motel, someone\",\"He lies on the road, cuddling her and weeping.\",\"In the motel, someone\",gold,lies asleep among another picture of myrtle.,lies asleep beside her on the bed.,closes someone's eyes on someone.,lies on his back in the tub.,3\n8648,lsmdc1057_Seven_pounds-98195,4606,\"Suddenly noticing the empty space beside her in the bed, she sits up and scans about. In an operating room, someone's body\",\"Suddenly noticing the empty space beside her in the bed, she sits up and scans about.\",\"In an operating room, someone's body\",gold,is lifted onto a table.,sags on the cell floor.,rolls into a corner.,slam shut on the bath floor.,0\n8649,lsmdc1057_Seven_pounds-98195,4591,\"In his motel room, someone steps gingerly into the bathtub of iced water. He\",\"In his motel room, someone steps gingerly into the bathtub of iced water.\",He,gold,\"rises onto his bed and looks at someone, who sits down in the toilet.\",dries his wet hair from someone's face.,is wearing the jeans and polo shirt.,applies a hardened substance to the right side of the bench.,2\n8650,lsmdc1057_Seven_pounds-98195,4588,\"The van flips several times, throwing its passengers about like rag dolls. The Corvette someone\",\"The van flips several times, throwing its passengers about like rag dolls.\",The Corvette someone,gold,arrive at their grandma home.,is now swiping over the tank and rushes into the elevator.,\"heads for a taxi, as someone runs pointing.\",was driving bounces and rolls down a steep embankment.,3\n8651,lsmdc1057_Seven_pounds-98195,4590,\"The Corvette comes to rest as a mangled heap among bushes. In his motel room, someone\",The Corvette comes to rest as a mangled heap among bushes.,\"In his motel room, someone\",gold,notices someone light shines on the man's garage door.,works at the windows of a university building.,brings a blonde cellphone to his ear.,steps gingerly into the bathtub of iced water.,3\n8652,lsmdc1057_Seven_pounds-98195,4593,He slowly lowers himself into the tub. He,He slowly lowers himself into the tub.,He,gold,enters the shot and giggles.,helps to a blanket and sits up.,is left a note on the floor beside the tub.,starts to climb the stairs and wades in the tub while she talks.,2\n8653,lsmdc1057_Seven_pounds-98195,4611,\"A medic opens the door of the operating room to let in another medic who is carrying someone's heart, which is in a stainless steel bowl. Someone, anesthetized and wearing a theater cap,\",\"A medic opens the door of the operating room to let in another medic who is carrying someone's heart, which is in a stainless steel bowl.\",\"Someone, anesthetized and wearing a theater cap,\",gold,\"walks in to the open window, and unzips her coat.\",wears a bandage around his ankle.,runs his arm through it.,lies on the operating table.,3\n8654,lsmdc1057_Seven_pounds-98195,4594,Someone recalls a blissful - looking someone lying in bed with him and stroking his face. He,Someone recalls a blissful - looking someone lying in bed with him and stroking his face.,He,gold,breathes lightly and caresses his hair.,looks back at the beaming master.,deflects the current cocaine.,surfaces from the memory and reaches for a plastic bucket on the side of the bath.,3\n8655,lsmdc1057_Seven_pounds-98195,4585,\"Someone rocks back a forth. Someone,\",Someone rocks back a forth.,\"Someone,\",gold,\"in red, recalls his mark.\",someone and someone haul in.,admires her engagement ring.,\"wearing her suit, watches as she turns on.\",2\n8656,lsmdc1057_Seven_pounds-98195,4599,\"He tears up the shower curtain, bringing it and the rail down on himself. Someone\",\"He tears up the shower curtain, bringing it and the rail down on himself.\",Someone,gold,\"stares onto the place, before spinning himself around himself.\",\"lurches toward someone, who's been thrown from the car and lies on the dark road.\",strolls toward a lit gate.,\"steps out of jetting telegraph equipment and approaches it, his hands up behind the desk.\",1\n8657,lsmdc0001_American_Beauty-45548,11664,\"Someone stands in front of the mirror, wearing her suit once more, applying lipstick. She\",\"Someone stands in front of the mirror, wearing her suit once more, applying lipstick.\",She,gold,stares at her reflection critically.,screams and spreads his hands over his face.,\"smiles sadly at him, then tries her own.\",\"enters and descends the stairs, looking in.\",0\n8658,lsmdc0001_American_Beauty-45548,11669,\"The woman wrinkles her face, skeptical. Someone\",\"The woman wrinkles her face, skeptical.\",Someone,gold,\"enters, followed by a different couple in their fifties.\",stops fast and stares at it.,licks her fingers and glances at album.,shifts and shifts uncomfortably.,0\n8659,lsmdc0001_American_Beauty-45548,11667,\"Smiling, someone leads a man and woman into the living room. They are thirtyish, and they\",\"Smiling, someone leads a man and woman into the living room.\",\"They are thirtyish, and they\",gold,begin to iron a robe behind the counter.,'ve seen a lot of houses today.,prepare for their rooms.,are dressed too wearing her hoodie.,1\n8660,lsmdc0001_American_Beauty-45548,11661,\"Throughout all this, she keeps repeating to herself. She\",\"Throughout all this, she keeps repeating to herself.\",She,gold,is cocked and pain.,does moving shoulder ceilings and is once again staring in a pose.,whacks her with the was - rubbed and furious.,\"neatly arranges her sales materials on a desk, then strips down to her undergarments.\",3\n8661,lsmdc0001_American_Beauty-45548,11666,\"The front door opens to reveal someone, greeting us with the smile she thinks could sell ice to an Eskimo. Smiling, someone\",\"The front door opens to reveal someone, greeting us with the smile she thinks could sell ice to an Eskimo.\",\"Smiling, someone\",gold,\"looks through the surprised, then locks the door to a music store.\",leads a man and woman into the living room.,gives a bitter smile and dashes to the garden.,spots someone and covers him with his hands.,1\n8662,lsmdc0001_American_Beauty-45548,11670,\"Someone enters, followed by a different couple in their fifties. Someone\",\"Someone enters, followed by a different couple in their fifties.\",Someone,gold,\"notices, searching his face.\",moves to her car.,\"stands with a different couple: african american, late twenties.\",takes his cell phone from his pocket and hangs it on the phone.,2\n8663,lsmdc0001_American_Beauty-45548,11662,\"She neatly arranges her sales materials on a desk, then strips down to her undergarments. And\",\"She neatly arranges her sales materials on a desk, then strips down to her undergarments.\",And,gold,vacuums a dirty carpet that will never be clean.,guides the reptile stick upward.,blond remain on her own.,\", she sits with an exposed tactical team and grabs her underwear.\",0\n8664,lsmdc0001_American_Beauty-45548,11663,And vacuums a dirty carpet that will never be clean. Someone,And vacuums a dirty carpet that will never be clean.,Someone,gold,\"stands in front of the mirror, wearing her suit once more, applying lipstick.\",tiles is seen as the chemical.,\"feet still in sparkly parts, pattern pet parts in more parts appear.\",sands on his face and explains together to move about them assembling.,0\n8665,lsmdc0001_American_Beauty-45548,11668,\"They are thirtyish, and they've seen a lot of houses today. The woman\",\"They are thirtyish, and they've seen a lot of houses today.\",The woman,gold,stands up at the ready and waves to the floor.,\"wrinkles her face, skeptical.\",puts ornaments onto a tree and begins to add a pair of cute brown shoes shaped icing.,helps the two art out.,1\n8666,lsmdc0001_American_Beauty-45548,11665,She stares at her reflection critically. She,She stares at her reflection critically.,She,gold,\"shakes revealing, dotting her shoulder tips from under the veil.\",\"takes several steps, still creating sneezes, then returns to the canvas.\",\"says this as if it were a threat, then notices a smudge on the mirror and wipes it off.\",strides out to meet someone.,2\n8667,anetv_7coVNZXiU6U,13887,The camera pans to a close up of the woman in the kitchen chair who has had most of her hair cut off and now how a very short haircut. The camera,The camera pans to a close up of the woman in the kitchen chair who has had most of her hair cut off and now how a very short haircut.,The camera,gold,\"shows individual ingredients in person's hands, easily putting it on a piece that cuts up to a large hair bun.\",zooms back into the hair mirror.,moves across the tight around several braids as she braids the bangs on her knees while pausing to comb the side of her hair.,cuts again to the man who first appears in the film and a shot of a digital clock displaying the time.,3\n8668,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10101,He soars into the barn. Someone,He soars into the barn.,Someone,gold,knits her brow and follows him inside.,puts his wings on his elbow and inspects them.,he pulls out his pen and hands it to him.,\"grabs a lantern, finds a weapon raised in its position.\",0\n8669,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10100,\"Later, he flies to a fence and burps. He\",\"Later, he flies to a fence and burps.\",He,gold,throws a snowball from the steeple.,peeks in at someone's prom date.,soars into the barn.,wears a welcoming grin as they approach the wall below.,2\n8670,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10103,\"Now inside, someone repairs the window. She\",\"Now inside, someone repairs the window.\",She,gold,smooths putty at the seam.,glances over her shoulder then crosses.,\"picks up the handgun, staring at someone, who takes his gun.\",gets into a car.,0\n8671,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10099,\"He eyes someone suspiciously as she cooks, then strides to a seat at the head of the table. Someone\",\"He eyes someone suspiciously as she cooks, then strides to a seat at the head of the table.\",Someone,gold,takes a dressing owner's sarcastic paw and hits them closely.,escorts her to the observation booth.,drives her own bandaged hand.,stares at his headgear and cocks her head.,3\n8672,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10098,Someone marches downstairs in purple pajamas and a full - face gas mask with a single snout - like filter. He,Someone marches downstairs in purple pajamas and a full - face gas mask with a single snout - like filter.,He,gold,performs tricks on the long grass.,pushes open the parlor lamp.,\"inspects the cut, flinging it out of his open window.\",\"eyes someone suspiciously as she cooks, then strides to a seat at the head of the table.\",3\n8673,lsmdc3051_NANNY_MCPHEE_RETURNS-24705,10102,Someone knits her brow and follows him inside. She,Someone knits her brow and follows him inside.,She,gold,\"touches his face, then wanders toward his house.\",\"heads back toward someone, who gently caresses his shoulders.\",picks someone up from the phone.,peeks into the hole.,3\n8674,lsmdc0001_American_Beauty-45583,1387,\"Someone, watching from the stands, picks out his daughter. Someone\",\"Someone, watching from the stands, picks out his daughter.\",Someone,gold,\"performs well, concentrating.\",looks at things tears in his eyes.,touches someone's cheeks.,sees the school woman.,0\n8675,lsmdc0051_Men_in_black-71253,4153,Someone watches as the Bug continues its howl of triumph. he feels totally defeated. Someone,Someone watches as the Bug continues its howl of triumph. he feels totally defeated.,Someone,gold,knocks the glass down some more.,whirls around with the silvery white man.,\"is spiraling - impatient as he makes his way between the ascending, railing.\",knows what he has to do.,3\n8676,anetv_rSGgal9LtDk,11933,\"In front of the toaster, a block of white cream and a banana is sitting on a white plate. Next, two slices of bread\",\"In front of the toaster, a block of white cream and a banana is sitting on a white plate.\",\"Next, two slices of bread\",gold,gets on the table and takes a bite out of a sandwich.,are in the toaster going up and down.,\"takes place and rubs them on holograph cheese, then spread the bread into a long platter of onion cheese and cheese on the.\",are shown that are the ingredients that are attached to the counter.,1\n8677,anetv_rSGgal9LtDk,11932,\"A white Breville toaster is sitting on a counter being plugged. In front of the toaster, a block of white cream and a banana\",A white Breville toaster is sitting on a counter being plugged.,\"In front of the toaster, a block of white cream and a banana\",gold,is sitting on a white plate.,is then shown on the spaghetti.,is including presenting the knife on full face.,appears and discusses out of the viewers.,0\n8678,anetv_B5Ea3Bs8hC4,3267,\"The man goes back to the pink bucket to wash another dark item clothing, he wrings it out in the pink bucket, throws it in the yellow bucket, then wrings his hands together a few times while staring at the camera. There\",\"The man goes back to the pink bucket to wash another dark item clothing, he wrings it out in the pink bucket, throws it in the yellow bucket, then wrings his hands together a few times while staring at the camera.\",There,gold,man is putting a cloth on the table as he moves the process and puts it in the pack.,are a drawing of him making wiping down and taking an envelope into the box.,is a wall of dust with him.,are people walking behind the man as he's washing and wringing out the clothing.,3\n8679,lsmdc1041_This_is_40-9230,11808,\"Entering the parking lot together, someone moves in front of someone and heads to her silver suv. Someone\",\"Entering the parking lot together, someone moves in front of someone and heads to her silver suv.\",Someone,gold,climbs lazily with a cold stare.,exits with a taxi and fixes their mugs instead.,strolls toward his blue sedan and pulls the keys from his pocket.,shifts her amusement towards someone's bed.,2\n8680,lsmdc1041_This_is_40-9230,11809,Someone strolls toward his blue Sedan and pulls the keys from his pocket. The couple,Someone strolls toward his blue Sedan and pulls the keys from his pocket.,The couple,gold,presents a tag to someone.,takes the wheel off.,walk out with their guns drawn.,enters separate vehicles at the same time.,3\n8681,lsmdc1041_This_is_40-9230,11806,\"Now, they exit the school and walk side by side, both wearing mischievous grins. They\",\"Now, they exit the school and walk side by side, both wearing mischievous grins.\",They,gold,\"continue walking, coyly avoiding each other's gaze.\",\"stares at the pedestal for a moment, then crosses gliding through the glittering maze marble gradually in the gravel pit.\",are walking in front of a huge map and step into a gymnasium.,\"shrieks almost muscled, and seems to be stopped by a pool.\",0\n8682,lsmdc1041_This_is_40-9230,11807,\"They continue walking, coyly avoiding each other's gaze. Entering the parking lot together, someone\",\"They continue walking, coyly avoiding each other's gaze.\",\"Entering the parking lot together, someone\",gold,nods as she heads over to the window and leaves.,moves in front of someone and heads to her silver suv.,joins someone and someone at the fast dining table.,crosses the other room and allows a brief smile.,1\n8683,anetv_B-6kP8M_GmM,19090,He is shown playing a game with a virtual sumo wrestler. The shorter man,He is shown playing a game with a virtual sumo wrestler.,The shorter man,gold,bounces into a man's head to a man in the last harness to do motocross moves.,stops to talk to the camera for an extended period.,speaks to the camera smiling.,\"looks to the judge, kicks them then makes them work.\",1\n8684,anetv_B-6kP8M_GmM,19087,A man walks up holding a basketball. Scenes,A man walks up holding a basketball.,Scenes,gold,\"are shown of him playing the game, along with several images of him standing.\",man walks to him.,are about writing on it.,see the blue team rush to.,0\n8685,anetv_B-6kP8M_GmM,19088,\"Scenes are shown of him playing the game, along with several images of him standing. He\",\"Scenes are shown of him playing the game, along with several images of him standing.\",He,gold,sprays them together with a bat.,is talking to a man much shorter than him.,is shown using tennis pads as he walks into the plaza.,follows a acrobatic skating road with an wheeler of holographic cameras in a field.,1\n8686,anetv_B-6kP8M_GmM,15184,The men then begin playing basketball while constantly bumping into one another. The men continue hitting one another and the host,The men then begin playing basketball while constantly bumping into one another.,The men continue hitting one another and the host,gold,speaks to the camera.,puts his feet in the air.,speaking to the camera.,kicks another ball accidentally hits them.,0\n8687,anetv_0y_5NIIvUzI,15199,A man holding a beer talks to two men on a ski slope. A man,A man holding a beer talks to two men on a ski slope.,A man,gold,puts his shoes in the foot and watches them perform.,wearing a yellow sweater and holding a beer stretches on a ski slope.,puts silver sticks on the fake kindling in front of a house.,takes all of the ramp with him.,1\n8688,anetv_0y_5NIIvUzI,15202,A large crowd of spectators standing on the slopes watching the skiing athletes compete in different competitions. A skier,A large crowd of spectators standing on the slopes watching the skiing athletes compete in different competitions.,A skier,gold,performs a free style skiing performance as he falls and rolls down hill.,skate on the board show a different man with men interviewed and other locations.,boy is bungee jumping on it and climbs back off the mountain onto a wakeboard.,swings a rope in acrobatic flips.,0\n8689,anetv_0y_5NIIvUzI,15200,A man wearing a yellow sweater and holding a beer stretches on a ski slope. Scenes of different skiers,A man wearing a yellow sweater and holding a beer stretches on a ski slope.,Scenes of different skiers,gold,jumping and performing tricks on the ski slopes.,do jump rope and tricks alongside various whale vibrant living animals.,reaches snowboarders on back.,begin to plant the wires about the exasperated press.,0\n8690,anetv_0y_5NIIvUzI,2480,A close up of a news paper is shown that leads into several shots of people talking and a skier falling off a jump. More shots,A close up of a news paper is shown that leads into several shots of people talking and a skier falling off a jump.,More shots,gold,are shown of people riding in the water as well as showing more riding around around water.,are shown of people swinging on kayaks while shooting a pose and waving off more signs.,are shown of different people riding around and doing tricks with firearms showing someone captures the parts.,are shown of skiers falling off jumps as well as falling down the snowy hill while others watch.,3\n8691,anetv_0y_5NIIvUzI,15201,Scenes of different skiers jumping and performing tricks on the ski slopes. A large crowd of spectators,Scenes of different skiers jumping and performing tricks on the ski slopes.,A large crowd of spectators,gold,standing on the slopes watching the skiing athletes compete in different competitions.,assists their skills in the background.,runs around the area as a man illuminates stunts on her watch.,cleans a landscape in snow.,0\n8692,anetv_wH-uaN8gL_k,17623,Many kids are in a gym playing dodge ball. The camera,Many kids are in a gym playing dodge ball.,The camera,gold,falls out of a basket.,hits a ball in front of the pins.,goes to one of the kids showing them making a throw.,pans back to the man as they perform and walk.,2\n8693,anetv_wH-uaN8gL_k,17624,The camera goes to one of the kids showing them making a throw. The kids,The camera goes to one of the kids showing them making a throw.,The kids,gold,step back and fourth while still hanging the cricket ball.,run back and forth as the game persists.,go with their arms as they begin to run and across the ground.,are also playing and talking to each other.,1\n8694,anetv_wH-uaN8gL_k,6357,The group plays a game of dodgeball against other kids. The group,The group plays a game of dodgeball against other kids.,The group,gold,goes down the slide.,juggles a lacrosse game.,continue playing with one another while the camera moves around.,hits the ball hitting each other.,2\n8695,anetv_wH-uaN8gL_k,6356,A large group of people are seen running around a gym. The group,A large group of people are seen running around a gym.,The group,gold,speak to one another before jumping down.,continues to stand around in the end.,plays a game of dodgeball against other kids.,are then seen moving around and down the middle of the track.,2\n8696,anetv_5aMigcn2cU8,18203,They are then shown performing an art exercise called zumba inside a building. They,They are then shown performing an art exercise called zumba inside a building.,They,gold,are showing techniques on them.,\"all stand up together, moving their hands in the air with them.\",kick at a camera as other people watch straight.,\"dance back and forth in unison, then are shown posing together at the end as musical notes float across the screen.\",3\n8697,anetv_5aMigcn2cU8,18202,A group of two women and two men pose together. They,A group of two women and two men pose together.,They,gold,\", a man appears reporter jack a wall with photographers.\",begin playing a game of table hockey.,are playing a shuffleboard on the ice.,are then shown performing an art exercise called zumba inside a building.,3\n8698,anetv_MXbwIfqSq_Q,17904,The man in gray out is standing in a room and started to rotate his hands forward and backward. The man,The man in gray out is standing in a room and started to rotate his hands forward and backward.,The man,gold,is on the parallel bars on the bars.,does an iron once more.,is crossing the closely painted wooden bars.,is swaying side to side and move his arms in front of him.,3\n8699,anetv_MXbwIfqSq_Q,17903,A picture of a man is shown and then drawings of human vertebrae. The man in gray out,A picture of a man is shown and then drawings of human vertebrae.,The man in gray out,gold,in a suit while the camera is seen holding the lens from his face.,is standing on the field to full beach.,is shown using the scissors to move themselves along a wall.,is standing in a room and started to rotate his hands forward and backward.,3\n8700,lsmdc1041_This_is_40-8962,4100,\"Someone leans in, devours the treat, and throws the last bite away. Now, he\",\"Someone leans in, devours the treat, and throws the last bite away.\",\"Now, he\",gold,takes the page by a large book which stands staring at it.,jogs on a treadmill with electrodes dotting his bare chest.,has slipped a finger in it and opens it to you.,sniffs the viewer and lurches the new flower in its nostril.,1\n8701,lsmdc1041_This_is_40-8962,4092,She breaks up a pack of cigarettes and throws them away. She,She breaks up a pack of cigarettes and throws them away.,She,gold,overturns a small pouch into the bin.,looks up and sees someone facing her with the other burning cameras.,\"falls across the street, stunned by a figure huddled motionless.\",pours over her fingers friend the phone.,0\n8702,lsmdc1041_This_is_40-8962,4104,\"His doctor bends close from behind, thrusts his finger out of view and works it around. Now, someone\",\"His doctor bends close from behind, thrusts his finger out of view and works it around.\",\"Now, someone\",gold,\"sits by the truck with his eyes fixed on a neighboring window, with a broad smile on his face.\",sits with her feet in stirrups.,\"spots someone opposite a car, smiling onstage.\",sits in her bedroom working on the canvas jogging by herself.,1\n8703,lsmdc1041_This_is_40-8962,4095,He throws the cupcakes in one at a time. Someone,He throws the cupcakes in one at a time.,Someone,gold,hastily tosses down pieces of smaller pieces and finds them empty.,blinks on the wine.,plays someone's house as she returns.,pauses at the last cupcake and takes a deep breath.,3\n8704,lsmdc1041_This_is_40-8962,4096,Someone pauses at the last cupcake and takes a deep breath. He,Someone pauses at the last cupcake and takes a deep breath.,He,gold,continues to take off his coat.,\"unwraps the cupcake, then takes a large bite.\",takes a fish out of his mouth and lets it fall.,does a hand stand.,1\n8705,lsmdc1041_This_is_40-8962,4094,\"Setting it aside, he opens the trash bin and overturns a large jar of candy. He\",\"Setting it aside, he opens the trash bin and overturns a large jar of candy.\",He,gold,throws the cupcakes in one at a time.,looks into the suv and brings the food out.,approaches her through the window that leans inside.,takes off his seed and tosses it away.,0\n8706,lsmdc1041_This_is_40-8962,4098,\"He starts to throw the rest in, then hesitates and takes another bite. Chewing blissfully, he\",\"He starts to throw the rest in, then hesitates and takes another bite.\",\"Chewing blissfully, he\",gold,turns back into the auditorium.,\"steps forward, his expression grim.\",turns to figure out his erect - eyed routine.,holds the remainder over the trash.,3\n8707,lsmdc1041_This_is_40-8962,4101,\"Now, he jogs on a treadmill with electrodes dotting his bare chest. A doctor\",\"Now, he jogs on a treadmill with electrodes dotting his bare chest.\",A doctor,gold,runs towards him and holds up another ax.,stands close with his hand up someone's hospital gown.,pulls up revealing a menu overlooking the map.,presses a photo on the monitors page several steps with him.,1\n8708,lsmdc1041_This_is_40-8962,4103,\"Now, she sits in a dentist's chair. His doctor\",\"Now, she sits in a dentist's chair.\",His doctor,gold,stares up at the ceiling.,\"bends close from behind, thrusts his finger out of view and works it around.\",knocks the wife 'utensils on the ground.,nods now.,1\n8709,lsmdc1041_This_is_40-8962,4099,\"Chewing blissfully, he holds the remainder over the trash. Someone\",\"Chewing blissfully, he holds the remainder over the trash.\",Someone,gold,is seen jumping rope on the camera.,grabs the window covers and falls leaping onto the bed.,gives a jazz ticket to someone.,\"leans in, devours the treat, and throws the last bite away.\",3\n8710,lsmdc1041_This_is_40-8962,4097,\"He unwraps the cupcake, then takes a large bite. He\",\"He unwraps the cupcake, then takes a large bite.\",He,gold,\"starts to throw the rest in, then hesitates and takes another bite.\",garnishes the pasta with a big scoop.,takes a spoonful of caviar off the sandwich.,\"finishes the spoonful, still no shaking his hand.\",0\n8711,lsmdc1041_This_is_40-8962,4090,\"Leaving the door open, someone sulks away. Now, someone\",\"Leaving the door open, someone sulks away.\",\"Now, someone\",gold,drives a hospital corridor.,bolts out of the hall then returns to the front sweaty wall and peeks over.,steps out of a side door and opens a trash bin.,steps into groggily briefs.,2\n8712,lsmdc1041_This_is_40-8962,4087,Her own hand snatches her out of view and she collapses with her feet sticking out. They slowly,Her own hand snatches her out of view and she collapses with her feet sticking out.,They slowly,gold,climb the steps to the street.,position up and drop the needle.,turn together toward the pictures.,drag out of view.,3\n8713,lsmdc1041_This_is_40-8962,4086,\"Now, someone bounces in the doorway across the bathroom between the girls' rooms. Her own hand snatches her out of view and she\",\"Now, someone bounces in the doorway across the bathroom between the girls' rooms.\",Her own hand snatches her out of view and she,gold,glances across to the gun behind her.,lowers the door as the elevator enters.,yanks off the tape.,collapses with her feet sticking out.,3\n8714,lsmdc1041_This_is_40-8962,4091,\"Now, someone steps out of a side door and opens a trash bin. She\",\"Now, someone steps out of a side door and opens a trash bin.\",She,gold,\"opens the foyer and finds someone standing there, staring in wonder.\",breaks up a pack of cigarettes and throws them away.,turns around it all and slams the side door shut.,glances at the long blonde woman.,1\n8715,lsmdc1041_This_is_40-8962,4085,\"She hits someone with a pillow. Now, someone\",She hits someone with a pillow.,\"Now, someone\",gold,bounces in the doorway across the bathroom between the girls' rooms.,\"leads his skis down the stream, where it's tires, and he an elderly civilian, turns uneasily to someone.\",\"steps out of the house, and both drag the bottle out of the top of a garbage can.\",lies awake in bed and lies in bed beside him.,0\n8716,lsmdc1041_This_is_40-8962,4088,They slowly drag out of view. Someone,They slowly drag out of view.,Someone,gold,is on this morning at the motel.,focuses on her homework.,stuffs a black robe into a fabric together.,\"sways back and forth, firing at the openings.\",1\n8717,lsmdc1041_This_is_40-8962,4089,\"Someone focuses on her homework. Playing air guitar, someone\",Someone focuses on her homework.,\"Playing air guitar, someone\",gold,\"advances toward someone's bed, then retreats to the doorway and flings one arm out.\",lifts a arms of someone's chain and rubs the back of his neck with his hands.,is wide - eyed as she reads.,returns to the laptop.,0\n8718,lsmdc3023_DISTRICT_9-10710,8406,\"Later, soldiers bag their comrade's arm. Someone\",\"Later, soldiers bag their comrade's arm.\",Someone,gold,\"rush into defeated grasp, firing their swords.\",holds out a form.,switches on a kiosk.,\"stands, grabs his jacket and bows its tie.\",1\n8719,lsmdc3023_DISTRICT_9-10710,8407,Someone holds out a form. Someone,Someone holds out a form.,Someone,gold,aims his wand and aims people at the wall.,sets the can down.,finds the identical spider inside.,approaches someone's hand.,1\n8720,anetv_EbGq9gXcXLQ,16198,\"He is sitting on a black stool and he is in between two microphones to record what is going on. In the end of the video, he\",He is sitting on a black stool and he is in between two microphones to record what is going on.,\"In the end of the video, he\",gold,slows down and stops playing the drums.,continues someone frantically in front of him.,wipes his face with a towel.,is still seated again.,0\n8721,anetv_EbGq9gXcXLQ,16197,This man is beating on the congas using the palms of his hands and he also makes fists sometimes to make a deeper sound. He is sitting on a black stool and he,This man is beating on the congas using the palms of his hands and he also makes fists sometimes to make a deeper sound.,He is sitting on a black stool and he,gold,\"has mans hair sneakers, brown with a blue headset white and grey shirt and a rock and black leather shirt.\",is in between two microphones to record what is going on.,is conceals his mood.,\"begins hitting the drums again, gets up and looks away from the increase of waste.\",1\n8722,anetv_EbGq9gXcXLQ,5299,The man moves his hands all along the drum set while the camera captures his movements. He,The man moves his hands all along the drum set while the camera captures his movements.,He,gold,continues to play on the set and look off into the distance.,continues playing in the end and ends by walking away and playing up to its side.,continues to play his harmonica on the side while pausing for the game.,begins to advance on the drum while speaking to the camera in slow motion.,0\n8723,anetv_gSeE_Ms-2TI,16988,A man is seen kneeling down on a roof and speaking to the camera. The camera,A man is seen kneeling down on a roof and speaking to the camera.,The camera,gold,pans several pictures on the wall and ends by a man speaking to the camera.,moves around the yard while holding up various tools and smiling to the camera.,pans all the room while a woman speaks to the camera.,pans all around the roof while the man is seen sitting and still speaking.,3\n8724,anetv_gSeE_Ms-2TI,16989,The camera pans all around the roof while the man is seen sitting and still speaking. The camera pans all around the roof and,The camera pans all around the roof while the man is seen sitting and still speaking.,The camera pans all around the roof and,gold,leads into a man lifting a man off the ground.,leads into the two of the men washing.,shows the video ending.,shows the man still sitting.,3\n8725,anetv_QQe2n2yjJuc,437,A man falls and a coach speaks to the team that leads into a player scoring a goal and being shown again in slow motion. More shots,A man falls and a coach speaks to the team that leads into a player scoring a goal and being shown again in slow motion.,More shots,gold,are shown of a hockey player scoring on the screen.,are shown of the game being played and end with the team cheering and one man laying on the ground.,\"are shown of people bringing and throwing trophies as well as talking to the camera before a host introduces people, watching the event.\",are shown of people speak to the camera while people watch on the sides.,1\n8726,anetv_QQe2n2yjJuc,210,People are playing indoor soccer in an arena. People,People are playing indoor soccer in an arena.,People,gold,are snowboarding down a snowy slope in a competition.,play a game of rock paper scissors.,are playing polo in a field.,are cheering in the crowd watching.,3\n8727,anetv_QQe2n2yjJuc,436,A large group of people are seen playing a soccer match as well as audience members watching their reactions. A man falls and a coach,A large group of people are seen playing a soccer match as well as audience members watching their reactions.,A man falls and a coach,gold,and a laugh as the video begins.,speaks to the team that leads into a player scoring a goal and being shown again in slow motion.,captures one man from the end of the ship.,wearing green stands behind him and once the host cheers and demonstrates how to play with the men as well as spectators.,1\n8728,lsmdc0017_Pianist-56436,5783,\"Someone lies inert on the bed, weak, starving, ill. Someone, no longer pregnant, and someone enter,\",\"Someone lies inert on the bed, weak, starving, ill.\",\"Someone, no longer pregnant, and someone enter,\",gold,come to the bed.,wearing exactly tunic - beautifully heels.,generally lingering in her embrace.,glancing up at the boy.,0\n8729,lsmdc0017_Pianist-56436,5785,\"Someone goes to the kitchen, wets a towel, comes back to the bed, kneels it, places the towel on someone's brow. He\",\"Someone goes to the kitchen, wets a towel, comes back to the bed, kneels it, places the towel on someone's brow.\",He,gold,\"starts talks into his stomach, and on a worktop.\",picks up his bag and hesitates.,\"focuses on her, smiles.\",slides along the wall.,2\n8730,lsmdc0017_Pianist-56436,5784,\"Someone, no longer pregnant, and someone enter, come to the bed. Someone\",\"Someone, no longer pregnant, and someone enter, come to the bed.\",Someone,gold,pulls a holder on the popcorn.,barely has strength to open his eyes and focus on them.,sits parked in her car.,slaps him awake and writhes.,1\n8731,anetv_hXjxOvlNxQM,6787,\"The wrestler lifts him up into the air. Lastly, the wrestler\",The wrestler lifts him up into the air.,\"Lastly, the wrestler\",gold,gives a guy a shake of weight.,drops him hard onto the floor.,lifts both hands in triumph.,hugs his teammates and tenses.,1\n8732,anetv_hXjxOvlNxQM,6786,A wrestler picks up another wrestler from the ground. The wrestler,A wrestler picks up another wrestler from the ground.,The wrestler,gold,lifts him up into the air.,tries to sit down while another man hugs the other man.,jumps off the mat and positions himself on the corner.,jumps off the back of the falls.,0\n8733,anetv_WdC6dVbfTvs,15819,Afterwards the girl stands up talks to he friend and looks in the mirror. In the end the camera man,Afterwards the girl stands up talks to he friend and looks in the mirror.,In the end the camera man,gold,turns around and speaks to the camera with authority.,gives an interview while walking with balls.,applies a false beard to the camera.,returns to shave his body.,0\n8734,anetv_WdC6dVbfTvs,15816,Initially he uses a piercing tool to make the incision on the belly button. Afterwards he,Initially he uses a piercing tool to make the incision on the belly button.,Afterwards he,gold,\"washes the white rinsed out with the liquid, then to brush his teeth.\",is sitting back in the bath tub with his water helmet on.,inserts the piercing and makes sure its secure.,talks about with pants and a red cloth over his mouth.,2\n8735,anetv_WdC6dVbfTvs,15818,Than he uses a wipe and cleans the area. Afterwards the girl,Than he uses a wipe and cleans the area.,Afterwards the girl,gold,takes his hand and paint and paints it to a man mowing.,looks over an cutter and begins kicking.,clips the styled hair in the face and ends with more text shown on the screen.,stands up talks to he friend and looks in the mirror.,3\n8736,anetv_WdC6dVbfTvs,15817,Afterwards he inserts the piercing and makes sure its secure. Than he,Afterwards he inserts the piercing and makes sure its secure.,Than he,gold,can not clean the camera section.,uses a wipe and cleans the area.,wipes the words to his teeth.,grooms the hands and the brushes and checks it around his finger.,1\n8737,anetv_0S0fNrI4oVs,12859,A group of usa olympic fencing champions are shown competing in fencing interspersed with images and graphics advertising an upcoming fencing tournament in nyc. Several images of fencers,A group of usa olympic fencing champions are shown competing in fencing interspersed with images and graphics advertising an upcoming fencing tournament in nyc.,Several images of fencers,gold,are show on the gym grass.,are shown fighting in dim sports.,are shows interspersed with video of the fencers walking.,are shown as they do measuring for cards and one seat together.,2\n8738,anetv_XhqFJNRt-5g,3285,He ropes a calf and throws it down onto the ground. He,He ropes a calf and throws it down onto the ground.,He,gold,lands on top of someone.,ties the legs of the calf and stands up.,climbs on to the horse.,ties the calf while still tying the calf and ties it up for calf.,1\n8739,anetv_XhqFJNRt-5g,3284,Behind the fence a man is riding a horse. He,Behind the fence a man is riding a horse.,He,gold,glances around and gets to his feet.,\"gets off the horse and jumps on its back, then rides back to several others.\",ropes a calf and throws it down onto the ground.,is pulling the plow behind the object.,2\n8740,anetv_XhqFJNRt-5g,3286,He ties the legs of the calf and stands up. He,He ties the legs of the calf and stands up.,He,gold,ropes and swings his legs up the calf rope.,catches a cow and escapes across the bridge.,\"heads off, undoes the overcoat, and gently touches the front of someone's head.\",gets back on his horse.,3\n8741,anetv_XhqFJNRt-5g,3283,People are walking in front of a white fence. Behind the fence a man,People are walking in front of a white fence.,Behind the fence a man,gold,is painting a fence.,is riding a horse.,is around the side of a fence.,speaks into a microphone.,1\n8742,lsmdc1024_Identity_Thief-82571,11058,\"He inputs the code and they slide open. As he quickly enters, someone\",He inputs the code and they slide open.,\"As he quickly enters, someone\",gold,puts his arm up.,snaps it in half.,pulls out the keys.,finds the room vacant.,3\n8743,lsmdc1024_Identity_Thief-82571,11057,\"The burner finishes processing and prints out the card. Smiling, someone\",The burner finishes processing and prints out the card.,\"Smiling, someone\",gold,goes to study someone.,hands it to someone.,is standing by him and lays him on the ground.,nods to his fellow students.,1\n8744,lsmdc1024_Identity_Thief-82571,11060,\"He steps toward the computer with wide eyes. Now, people\",He steps toward the computer with wide eyes.,\"Now, people\",gold,show a nightclub day and leafy in shades.,pick up the notebook as the wind rings above him.,run past his house and walk to a plaza where agent someone watches from a booth into the kitchen.,exit the building through an unmarked alley door.,3\n8745,lsmdc1024_Identity_Thief-82571,11055,He sits at his computer and logs into company records. Someone,He sits at his computer and logs into company records.,Someone,gold,enters someone's information into a card burner and inserts a blank card.,\"leans forward and withdraws the head, keeping his hands tied around a desk.\",covers the pages of his manuscript.,ushers a coffee shop.,0\n8746,lsmdc1024_Identity_Thief-82571,11052,He finds someone's records in a box. Someone,He finds someone's records in a box.,Someone,gold,picks up the automaton's pages and frowns.,plugs a flash drive into the credit card burner.,walks up on sunny auditorium building.,\"closes the cruiser, his eyes widen.\",1\n8747,lsmdc1024_Identity_Thief-82571,11053,\"Someone plugs a flash drive into the credit card burner. On the records computer, someone\",Someone plugs a flash drive into the credit card burner.,\"On the records computer, someone\",gold,glares at someone with his binoculars.,answers his cell phone.,hands a plate to an elderly woman.,logs into the network.,3\n8748,lsmdc1024_Identity_Thief-82571,11054,\"In his office area, someone stares off with a furrowed brow. He\",\"In his office area, someone stares off with a furrowed brow.\",He,gold,bellows a decision in the stone bucket house.,sits at his computer and logs into company records.,shoves someone into his room.,tosses him back in front of someone.,1\n8749,lsmdc1024_Identity_Thief-82571,11056,\"Someone enters someone's information into a card burner and inserts a blank card. On someone's computer, he\",Someone enters someone's information into a card burner and inserts a blank card.,\"On someone's computer, he\",gold,picks up the phone and kneels down to the open door.,sees someone's actual photo.,dials some paperwork.,rubs his back on it.,1\n8750,lsmdc1024_Identity_Thief-82571,11051,\"On a security monitor, someone enters the code. Our view\",\"On a security monitor, someone enters the code.\",Our view,gold,drifts to a figure completely lost in a flying position.,stops as the guy spies him on the stairwell and the two men step out onto a catwalk.,lowers inside the records room as a glass door and metal gate slide open.,focuses on the three captives as two wheel reward weapons in the ground.,2\n8751,lsmdc1034_Super_8-7965,13685,\"Someone stops sponging on the makeup and stares at her uncertain of how to respond. She does so, and he\",Someone stops sponging on the makeup and stares at her uncertain of how to respond.,\"She does so, and he\",gold,dabs makeup onto her eyelids.,walks away as someone walks through the dressing room.,turns his head to see someone watch it.,\"backs off, sometimes in silence.\",0\n8752,lsmdc1034_Super_8-7965,13684,Someone gently applies someone's makeup with a sponge. Someone,Someone gently applies someone's makeup with a sponge.,Someone,gold,hangs on tight helplessly.,turns her head tearfully and bleary eyes on someone as she heads out of the room.,stops sponging on the makeup and stares at her uncertain of how to respond.,slumps to the floor.,2\n8753,lsmdc1034_Super_8-7965,13683,She ties her hair back from her face. Someone,She ties her hair back from her face.,Someone,gold,gently applies someone's makeup with a sponge.,slaps herself in the back.,swims out of the shower.,walks lost in thought.,0\n8754,lsmdc1034_Super_8-7965,13682,He starts gently sponging it on. She,He starts gently sponging it on.,She,gold,pushes him angrily and hugs back his tears.,angles he tells himself arrogantly now moves easily.,runs his hand over the strings.,ties her hair back from her face.,3\n8755,anetv_zKYqEsVfEnU,291,Two men are seen standing together with one speaking to the camera and the other laying on the floor. The man,Two men are seen standing together with one speaking to the camera and the other laying on the floor.,The man,gold,speaks to the camera while the camera man zooms in on the product and the man wipes away of the stick and speaks again.,continues grabbing the table and turning around and ends with him running along.,kneels behind him and points to his body while the man laying door moves his arms and legs to demonstrate proper exercises.,continue bouncing around on the floor while holding up a small tennis racket in the middle of the room.,2\n8756,anetv_FQEGKGn9vnU,18103,A little girl climbs to the top of a slide. She then,A little girl climbs to the top of a slide.,She then,gold,slides down the rope.,\"sits down, and slides to the bottom.\",flips on monkey bars.,hops over monkey bars in the end.,1\n8757,anetv_FQEGKGn9vnU,17059,A girl climbs up stairs on the playground. People,A girl climbs up stairs on the playground.,People,gold,are sitting on a hill watching them play.,practice to jump in the spotlight beam.,walk next to her.,slide under the water slide to slide backward.,0\n8758,anetv_FQEGKGn9vnU,17058,A girl climbs up a slide and goes back down several times. A girl,A girl climbs up a slide and goes back down several times.,A girl,gold,gets on the hopscotch board and tries to get off the camera.,lifts a baby rope and pumps.,puts a blue top onto it.,climbs up stairs on the playground.,3\n8759,anetv_cdpPn-7R3GQ,3269,A group of balls are on a pool table being shot. Two men,A group of balls are on a pool table being shot.,Two men,gold,are talking in front of the large bedding where they are preparing to throw balls.,retreat until they reach the cup.,are in a circle holding rackets.,\"are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink.\",3\n8760,anetv_cdpPn-7R3GQ,17965,A cue hits a stack of pool balls. Two men,A cue hits a stack of pool balls.,Two men,gold,are dancing on a basketball court.,are shown playing a game of pool and talking.,are standing in a field lined with white ball.,are swimming in a swimming pool.,1\n8761,anetv_cdpPn-7R3GQ,3270,\"Two men are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink. The man\",\"Two men are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink.\",The man,gold,speaks to the camera with several shots of the surrounding rocks and under touches of the contents in the end.,comes to the room and makes a point and cheer as well as people sitting on the sides.,holds up the blue reeling and shows assistance as well as they captures showing their fitness items and using their hands.,is shown interviewing numerous different people while talking about the drink.,3\n8762,anetv_4mRdgV8t4KY,9091,People are riding horses in an indoor arena. People,People are riding horses in an indoor arena.,People,gold,are riding in a game of tug of war.,are riding horses in a park.,are sitting outside the arena watching them.,wash bow and arrows in a field.,2\n8763,lsmdc3088_WHATS_YOUR_NUMBER-42402,19231,\"Now on the arm of a groomsman, someone leads the bridal procession down a grassy aisle. She\",\"Now on the arm of a groomsman, someone leads the bridal procession down a grassy aisle.\",She,gold,\"grins girlishly at someone, who smiles from his seat among the guests.\",looks at the twister and nods.,\"beckons a student, and someone squats in front of him and continues to speak.\",trudges up a sidewalk toward someone as she glares at him.,0\n8764,lsmdc3088_WHATS_YOUR_NUMBER-42402,19230,\"Someone grabs it and takes a grateful bite. Now on the arm of a groomsman, someone\",Someone grabs it and takes a grateful bite.,\"Now on the arm of a groomsman, someone\",gold,sits alone with someone.,stares off his entire classroom.,\"cooks with approval, as he works.\",leads the bridal procession down a grassy aisle.,3\n8765,lsmdc3088_WHATS_YOUR_NUMBER-42402,19229,Someone pops up from behind a sofa with a Croissan'wich. Someone,Someone pops up from behind a sofa with a Croissan'wich.,Someone,gold,grabs it and takes a grateful bite.,turns and approaches the bank.,and someone run to the stairs.,brings someone a bottle of whiskey.,0\n8766,lsmdc3088_WHATS_YOUR_NUMBER-42402,19232,\"She grins girlishly at someone, who smiles from his seat among the guests. Nearby, someone's father\",\"She grins girlishly at someone, who smiles from his seat among the guests.\",\"Nearby, someone's father\",gold,looks hard at his cellphone.,aims his cell phone camera.,gives a sad relief.,appears behind his desk and smiles at his partner.,1\n8767,lsmdc3088_WHATS_YOUR_NUMBER-42402,19234,The guests stand as someone's mother walks her down the aisle. The bridal veil catches in a flower arrangement and a guest,The guests stand as someone's mother walks her down the aisle.,The bridal veil catches in a flower arrangement and a guest,gold,helps them untangle it.,with the stick outside the door.,house is destroyed.,juts from his nostrils.,0\n8768,lsmdc3088_WHATS_YOUR_NUMBER-42402,19233,The wedding planner plays a tuba. The guests,The wedding planner plays a tuba.,The guests,gold,turn toward a grave buffalos in the olympics.,stand as someone's mother walks her down the aisle.,make themselves toward the carriage.,sip her drumsticks and face at the tv.,1\n8769,lsmdc0006_Clerks-48909,9013,\"She joins them, latching on to someone's arm, lovingly. People\",\"She joins them, latching on to someone's arm, lovingly.\",People,gold,\"takes his keys off the bench, then undoes the belt on his suit jacket.\",close into their mouths.,are never seen further across.,\"stare at someone, confused.\",3\n8770,anetv_VOyKKN3NdXM,16759,\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people are talking either together or alone. The woman from before who is dressed in an orange and red dress\",\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people are talking either together or alone.\",The woman from before who is dressed in an orange and red dress,gold,is seen on a skateboard runners she all skateboard his pulling with the matches in slow motion.,is explaining how to make a coffee.,is shown falling when they all continue performing this in different locations.,appears again and is still holding the white paper as she talks.,3\n8771,anetv_VOyKKN3NdXM,16758,\"The woman is no longer shown and there are various pictures flashing that seem to be about speed car wash. A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people\",The woman is no longer shown and there are various pictures flashing that seem to be about speed car wash.,\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people\",gold,are well and after the car.,are line the car while the lips are visible.,can fix it on the roof to have very steamed photos.,are talking either together or alone.,3\n8772,anetv_VOyKKN3NdXM,16756,A colorful intro with a lot of flashing words flash across the screen along with a logo and a banner with foreign language written on it. A woman dressed in an orange and red dress and scarf is standing and talking has she,A colorful intro with a lot of flashing words flash across the screen along with a logo and a banner with foreign language written on it.,A woman dressed in an orange and red dress and scarf is standing and talking has she,gold,demonstrates a ballet floor exercise woman and another woman turns up a perfect finish workout.,hold white paper in her hands.,makes a choreography in her loose hair.,\"walked with the empties, and after dancing are shown with the girl is in a white plate.\",1\n8773,anetv_VOyKKN3NdXM,16760,The woman from before who is dressed in an orange and red dress appears again and is still holding the white paper as she talks. Flashing words,The woman from before who is dressed in an orange and red dress appears again and is still holding the white paper as she talks.,Flashing words,gold,come through her mind.,appear on screen in a row.,appear after the woman is talking and continues to the end.,appear across the screen with colorful clips from the camera.,2\n8774,anetv_uzgIBU9arcU,5106,A baby is seen swinging back and fourth on a swing while laughing and smiling to the camera. The baby,A baby is seen swinging back and fourth on a swing while laughing and smiling to the camera.,The baby,gold,walks into frame and then up to the camera and continues talking for the camera.,continues moving back and fourth while looking up to the camera and smiling.,is then seen standing in a swing and then continues on smiling to kids and back to the camera.,continues to swing around on its back and ends by bowing and swinging over the child.,1\n8775,anetv_3792wPKkdXI,14988,A man and a woman are arm wrestling on top of a table in middle of stage and the woman wins. people,A man and a woman are arm wrestling on top of a table in middle of stage and the woman wins.,people,gold,are laying on a table loading the piano and watching a woman with the children.,dance and dance around the stage.,are in stands around the stage watching the competition.,\"continue to dance together, after one of the women falls.\",2\n8776,lsmdc0027_The_Big_Lebowski-62799,13568,Hairy legs emerge from his khaki shorts. He also,Hairy legs emerge from his khaki shorts.,He also,gold,wears a khaki army surplus shirt with the sleeves cut off over an old bowling shirt.,wears a peach biking styles.,paddles down the steep mangled demon between circling stone platforms.,speeds off into the ring as the crowd watches in terror.,0\n8777,lsmdc0027_The_Big_Lebowski-62799,13566,We are tracking in on the circular bench towards a big man nursing a large plastic cup of Bud. He,We are tracking in on the circular bench towards a big man nursing a large plastic cup of Bud.,He,gold,leans forward as if chatting.,\", apparently covered with a magical shield, does nothing as thick as possible.\",has dark worried eyes and a goatee.,\", someone is already being replaced apprehensively at and now dispute his bags on the ground.\",2\n8778,lsmdc0027_The_Big_Lebowski-62799,13564,\"The music turns into boomy source music, coming from a distant jukebox, as the credits end over a clattering strike. A lanky blonde man with stringy hair tied back in a ponytail\",\"The music turns into boomy source music, coming from a distant jukebox, as the credits end over a clattering strike.\",A lanky blonde man with stringy hair tied back in a ponytail,gold,appears on the building.,takes off her tie.,sits with an old man in the cockpit of a red representing dancefloor.,turns from the strike to walk back to the bench.,3\n8779,lsmdc0027_The_Big_Lebowski-62799,13567,He has dark worried eyes and a goatee. Hairy legs,He has dark worried eyes and a goatee.,Hairy legs,gold,flail under the spotlight.,blow out of two opened windows.,\"lie on a construction floor bordering a landscape, held by bare letters.\",emerge from his khaki shorts.,3\n8780,anetv_oG4zf8dAQKw,2741,A close up of products are shown followed by a woman open the package in front of a mirror. The woman,A close up of products are shown followed by a woman open the package in front of a mirror.,The woman,gold,\"puts the package into her mouth, swishes it around, then spits it out.\",pour a bottle of paint into the case and wipes out her eyes.,places peanut butter onto a plate and then sprays something along the liquid.,walks with a rag while looking to the camera and pointing to the camera and blending it in her clothing.,0\n8781,lsmdc1040_The_Ugly_Truth-8759,6989,He takes her by the hand and throws his jacket aside. Someone,He takes her by the hand and throws his jacket aside.,Someone,gold,leads someone onto the dance floor and spins her.,stands awkwardly in the doorway.,emerges from a living room.,\"picks up the bottle, which is now on a plate.\",0\n8782,lsmdc1040_The_Ugly_Truth-8759,7009,\"Someone presses someone against the edge of the open door. Someone's mouth hangs open, and he\",Someone presses someone against the edge of the open door.,\"Someone's mouth hangs open, and he\",gold,reaches over the front door.,\"walks off, looking shocked.\",clutches the chain around his head.,unbuttons his t - shirt.,1\n8783,lsmdc1040_The_Ugly_Truth-8759,6997,\"They hold hands above their heads, and someone sinks down. Someone\",\"They hold hands above their heads, and someone sinks down.\",Someone,gold,spins in his surfboard.,gives her a hug.,sways rhythmically to the music as someone caresses her hair and runs his hands down her sides.,runs over to someone and sits down again.,2\n8784,lsmdc1040_The_Ugly_Truth-8759,7001,Someone forces himself to nod. Someone,Someone forces himself to nod.,Someone,gold,holds back up and looks at her father.,walks comical on someone.,smiles nervously and heads off.,puts his hands on each's chest.,2\n8785,lsmdc1040_The_Ugly_Truth-8759,6992,\"They smile and dance together, back and forth. Someone\",\"They smile and dance together, back and forth.\",Someone,gold,touches one arm - - someone's fingers steaming along the back of the sphere.,\"takes two strained breaths, drops one hand, and strikes someone with a ref.\",spins someone and leads her.,ogles someone's dark green collar binding them in death.,2\n8786,lsmdc1040_The_Ugly_Truth-8759,7012,\"She lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning. She\",\"She lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning.\",She,gold,takes off her shoes and flings them aside.,\"pauses for a moment, looking bored.\",\"rises, covering her hands with his.\",stares wide - eyed at someone.,0\n8787,lsmdc1040_The_Ugly_Truth-8759,6994,\"She steps away, holding his hands, and returns with her back to him. They\",\"She steps away, holding his hands, and returns with her back to him.\",They,gold,\"sink down, moving their shoulders seductively from side to side.\",flips over the headboard and carries her to the bedroom where the pumpkin is lying behind the maize and others look at her.,\"tears her pants and musters a slight smile at herself, then wraps the curtains over him and gazes at someone in the audience.\",sits up in her chair.,0\n8788,lsmdc1040_The_Ugly_Truth-8759,7011,\"Someone lets herself into her room, looking equally surprised. She\",\"Someone lets herself into her room, looking equally surprised.\",She,gold,opens the door to take off her coat and she does it.,\"lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning.\",rubs someone's face and wraps her arm around his niece.,steps past someone onto the porch and starts to leave.,1\n8789,lsmdc1040_The_Ugly_Truth-8759,7000,People's noses almost touch. They,People's noses almost touch.,They,gold,\"gaze at each other, with their mouths slightly open, as if they are about to kiss.\",headstones hurriedly and collapse in front.,licks his lips then switches off.,glare at their retreating horses.,0\n8790,lsmdc1040_The_Ugly_Truth-8759,7007,Someone presses buttons and loosens his jacket. She,Someone presses buttons and loosens his jacket.,She,gold,leans in and kisses her shoulders.,opens the garage door.,stares at the receiver then closes it.,flashes a smile at him.,3\n8791,lsmdc1040_The_Ugly_Truth-8759,6999,\"Someone wraps her arms around someone's neck, and they dance close. He\",\"Someone wraps her arms around someone's neck, and they dance close.\",He,gold,\", she steers her head against his shoulder.\",steps aside and faces her with his glazed eyes.,\"up her back, he lifts her off her feet and someone falls to the floor.\",\"spins her back and forth, then pulls her closer.\",3\n8792,lsmdc1040_The_Ugly_Truth-8759,7005,He presses the call button. Someone,He presses the call button.,Someone,gold,turns and faces someone.,climbs onto the elevator and opens the door in surprise.,\"points his radio, abruptly.\",\"gets on his feet, walks away.\",0\n8793,lsmdc1040_The_Ugly_Truth-8759,6993,Someone spins someone and leads her. She,Someone spins someone and leads her.,She,gold,takes her place by the beam.,\"stares with disdain, her eyes wide.\",\"steps away, holding his hands, and returns with her back to him.\",heads to the door of a glowering someone.,2\n8794,lsmdc1040_The_Ugly_Truth-8759,6995,\"They sink down, moving their shoulders seductively from side to side. They\",\"They sink down, moving their shoulders seductively from side to side.\",They,gold,\"as we drift over the rocks where they are smoking, someone's attention is drawn on the bed.\",\"turn, round and round, moving smoothly to the music.\",look at each other.,\", someone lays his hands down her entire body and leans back as if watching for another deep kiss.\",1\n8795,lsmdc1040_The_Ugly_Truth-8759,7004,Someone carries her shoes as she walks with someone to an elevator. He,Someone carries her shoes as she walks with someone to an elevator.,He,gold,turns down the front of the house.,is in a gym.,opens the door and walks in.,presses the call button.,3\n8796,lsmdc1040_The_Ugly_Truth-8759,7013,She takes off her shoes and flings them aside. Someone,She takes off her shoes and flings them aside.,Someone,gold,and a cameraman watch them jog to the side.,\"leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door.\",jumps up from the top of the balcony.,gently dabs the fur of the hair.,1\n8797,lsmdc1040_The_Ugly_Truth-8759,7008,People suddenly wrap their arms around each other and kiss hungrily. Someone,People suddenly wrap their arms around each other and kiss hungrily.,Someone,gold,\"rushes to someone, and the girl reaches for her shoe.\",later someone kissing someone and her sister.,removes the ring from his nose.,presses someone against the edge of the open door.,3\n8798,lsmdc1040_The_Ugly_Truth-8759,7010,\"Someone's mouth hangs open, and he walks off, looking shocked. Someone\",\"Someone's mouth hangs open, and he walks off, looking shocked.\",Someone,gold,dons his sunglasses as he opens his door.,leans forward and puts his hands in his pockets.,\"lets herself into her room, looking equally surprised.\",\"takes off his jacket, takes the gun and drops it down.\",2\n8799,lsmdc1040_The_Ugly_Truth-8759,7003,\"Someone follows, looking dazed. Someone\",\"Someone follows, looking dazed.\",Someone,gold,heads for the front window.,leaps back and fires on him.,carries her shoes as she walks with someone to an elevator.,takes the pen from the gangsters and tosses up a letter.,2\n8800,lsmdc1040_The_Ugly_Truth-8759,7006,They step into the elevator and stand side by side. Someone,They step into the elevator and stand side by side.,Someone,gold,presses buttons and loosens his jacket.,bangs her hat.,\"places his right hand over someone's chest, pulling him down.\",\"peers down at her dead friend, then leans back in his seat.\",0\n8801,lsmdc1040_The_Ugly_Truth-8759,6991,He turns and ducks under her arm and pulls her close. They,He turns and ducks under her arm and pulls her close.,They,gold,keep his waistband from their back as she storms back into the kitchen.,waste's laser light radiate standing in the woods.,\"smile and dance together, back and forth.\",\"strokes his forehead, removes her dark shoes then hands the woman a long silver cup.\",2\n8802,lsmdc1040_The_Ugly_Truth-8759,7014,\"Someone leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door. She\",\"Someone leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door.\",She,gold,crouches down from her position while she anxiously presses her ear to the door.,hurries stealthily into the warehouse.,opens the door and looks horrified.,smiles at the joke.,2\n8803,lsmdc1040_The_Ugly_Truth-8759,6990,Someone leads someone onto the dance floor and spins her. He,Someone leads someone onto the dance floor and spins her.,He,gold,turns and ducks under her arm and pulls her close.,reaches back and takes her water hand.,whacks it on the table.,\"bangs her head over, propelling herself against the glass balustrade.\",0\n8804,lsmdc1040_The_Ugly_Truth-8759,7002,Someone smiles nervously and heads off. Someone,Someone smiles nervously and heads off.,Someone,gold,\"follows, looking dazed.\",holds her hand over her ears.,turns onto the pavement and spots her reflection in the mirror.,enter to the truck's med pod.,0\n8805,lsmdc1040_The_Ugly_Truth-8759,6996,\"They turn, round and round, moving smoothly to the music. Someone leans back on someone's arm, and they\",\"They turn, round and round, moving smoothly to the music.\",\"Someone leans back on someone's arm, and they\",gold,look blank.,look under 15 expressions.,dance with their hands held palm to palm.,\"caress each other's faces, then gently pulls his chin from her hand.\",2\n8806,lsmdc3016_CHASING_MAVERICKS-6246,15075,\"Someone jogs into view, carrying a surfboard. He\",\"Someone jogs into view, carrying a surfboard.\",He,gold,stretches out in the bed.,\"and very bored suction squats down in the water, holding his baby.\",points to the two long paddleboards.,\"flips to the side of the road and lets thoughtful gaze collide, then steps away from the ticket area.\",2\n8807,lsmdc3016_CHASING_MAVERICKS-6246,15076,\"Now in wetsuits, they each carry a board. Someone\",\"Now in wetsuits, they each carry a board.\",Someone,gold,strapping above half of the bush.,conditions it curiously.,shows their egg for the mutants.,taps a car with his board.,3\n8808,lsmdc3016_CHASING_MAVERICKS-6246,15074,\"Now, someone's watch reads 6: 30 as he waits in the doorway of his shed. Someone\",\"Now, someone's watch reads 6: 30 as he waits in the doorway of his shed.\",Someone,gold,carries someone in luggage into the shop.,is behind her as she wheel to work out.,\"walks quickly out of view, finding a package and envelope lying inside.\",\"jogs into view, carrying a surfboard.\",3\n8809,lsmdc0043_Thelma_and_Luise-68251,13500,Someone's head moves almost imperceptibly. Someone,Someone's head moves almost imperceptibly.,Someone,gold,pulls himself up and stares at it.,stops to answer it.,studies someone's face.,sits at a restaurant restaurant.,2\n8810,lsmdc0043_Thelma_and_Luise-68251,13501,Someone studies someone's face. Someone,Someone studies someone's face.,Someone,gold,squeezes her flushed eyes.,looks at someone for a long time.,holds someone's gaze.,stares out over the night sky.,1\n8811,lsmdc1057_Seven_pounds-97865,6352,He stops outside her room and looks at her through the window. Someone,He stops outside her room and looks at her through the window.,Someone,gold,sees a figure walking up.,turns back to someone.,\"lies fast asleep, surrounded by machines and monitors.\",pulls the bottle from the seat.,2\n8812,lsmdc1057_Seven_pounds-97865,6356,Someone slowly and gently pulls the phone out and shuts it. Someone,Someone slowly and gently pulls the phone out and shuts it.,Someone,gold,\"stands, looking down at her tenderly.\",awakens to his feet.,\"comes out, as a fat young woman comes downstairs and looks at her father's chest.\",tucks his fist into a temple and pats his cheeks.,0\n8813,lsmdc1057_Seven_pounds-97865,6355,\"Her ear pressed against her phone, which lies on a pillow beneath her. Someone\",\"Her ear pressed against her phone, which lies on a pillow beneath her.\",Someone,gold,slowly and gently pulls the phone out and shuts it.,sets down his gaze and turns off as he does so.,keeps pausing for a long moment before rolling his eyes.,pushes the duffle bag at her mouth.,0\n8814,lsmdc1057_Seven_pounds-97865,6357,\"Someone stands, looking down at her tenderly. Someone\",\"Someone stands, looking down at her tenderly.\",Someone,gold,leads the others into hiding.,\"puts someone's phone on the bed, draws up a chair and sits at her bedside.\",puts his arm around him.,turns her eyes back as it widens sharply.,1\n8815,lsmdc1057_Seven_pounds-97865,6350,The glass doors slide apart and he enters. Someone,The glass doors slide apart and he enters.,Someone,gold,walks down a hospital corridor towards someone's room.,strides furtively around the room and comes up to leave.,\"steps outside, her eyes looking.\",brings her to a machine that knocks open the door.,0\n8816,lsmdc1057_Seven_pounds-97865,6351,Someone walks down a hospital corridor towards someone's room. He,Someone walks down a hospital corridor towards someone's room.,He,gold,stops outside her room and looks at her through the window.,wakes up and dials a number.,april and faces worriedly before hugging two children.,hands over a document book.,0\n8817,lsmdc1057_Seven_pounds-97865,6353,Someone closes his clamshell mobile phone. Someone,Someone closes his clamshell mobile phone.,Someone,gold,lies on her side.,goes into the humps apartment.,lowers an alert gaze.,stands at his computer and turns off the radio.,0\n8818,lsmdc1057_Seven_pounds-97865,6358,\"Someone puts someone's phone on the bed, draws up a chair and sits at her bedside. Someone\",\"Someone puts someone's phone on the bed, draws up a chair and sits at her bedside.\",Someone,gold,\"stares down at her peaceful, but bruised face.\",picks the secure photo of his father and casts him on the bedroom.,steps out from the glove box onto a display counter.,looks into his mirror as he gets in.,0\n8819,lsmdc1057_Seven_pounds-97865,6354,Someone lies on her side. Her ear,Someone lies on her side.,Her ear,gold,presses as she plugs her body into tight.,avoids her gaze as he glides his hand over her own thigh.,\"pressed against her phone, which lies on a pillow beneath her.\",brushing her chin pressing the back of her auburn hair just a few inches away.,2\n8820,lsmdc0032_The_Princess_Bride-66009,17923,\"He is impossibly far behind, but the way he goes you'd think he didn't know that because he is flying up the rope, hand over hand like lightning. He\",\"He is impossibly far behind, but the way he goes you'd think he didn't know that because he is flying up the rope, hand over hand like lightning.\",He,gold,\"continues inside the house, moving his arms and legs and a long beat drum that comes with choppy waters in the background.\",\"prods someone, who nods, increases his pace.\",hugs his busty blond friend.,retreats from blue winds to wind his long green hair.,1\n8821,lsmdc0032_The_Princess_Bride-66009,17925,Someone is cutting deeply into someone's lead. And his arms,Someone is cutting deeply into someone's lead.,And his arms,gold,begin moving much more slowly.,grow seductively as they follow her inside.,is plastic - bare.,are folded across his chest.,0\n8822,lsmdc3081_THOR-37886,7104,\"Seemingly unaffected, the agent lands a series of jabs then tackles someone through the back of a tunnel. They\",\"Seemingly unaffected, the agent lands a series of jabs then tackles someone through the back of a tunnel.\",They,gold,land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead.,thrusts him down like an old.,see the sphere outside.,fight over the high - backed carriage.,0\n8823,lsmdc3081_THOR-37886,7095,\"With a flurry of punches, someone fights off two more agents then kicks a third through the tunnels plastic sheathing. Outside, the crane\",\"With a flurry of punches, someone fights off two more agents then kicks a third through the tunnels plastic sheathing.\",\"Outside, the crane\",gold,put down a tritium undercarriage and fly over his nostrils.,\"crashes away, barefoot.\",swerves a limping man.,raises the man with the crossbow above the crater with a direct view of mjolnir.,3\n8824,lsmdc3081_THOR-37886,7088,Someone crouches as more agents armed with assault rifles join the search. Someone,Someone crouches as more agents armed with assault rifles join the search.,Someone,gold,hands through a bottle of smoke.,\"screws his feet with his arms, clasping his knees.\",finds an ornament.,looks up at the night sky and grins.,3\n8825,lsmdc3081_THOR-37886,7093,\"The man runs outside and climbs into a basket dangling at the end of a crane. Meanwhile, someone\",The man runs outside and climbs into a basket dangling at the end of a crane.,\"Meanwhile, someone\",gold,hurries straight through the thick bar.,leads someone from the bank's side to the lake.,kicks an agent in the face sending him toppling down a ladder into his teammates.,jumps firing into the large barred hangar.,2\n8826,lsmdc3081_THOR-37886,7109,\"Standing over the motionless agent, someone wipes his muddy forearm across his chin, then stares at Mjolnir's silhouette. Someone\",\"Standing over the motionless agent, someone wipes his muddy forearm across his chin, then stares at Mjolnir's silhouette.\",Someone,gold,\"rips down a sheet of plastic, then walks up to someone and smiles.\",looks at the empty approaching vault.,\"climbs onto a small, gray rock and stares up at the storm's wings.\",runs along a false ridge which sways back and forth against a framed parked pool.,0\n8827,lsmdc3081_THOR-37886,7094,\"Meanwhile, someone kicks an agent in the face sending him toppling down a ladder into his teammates. Someone\",\"Meanwhile, someone kicks an agent in the face sending him toppling down a ladder into his teammates.\",Someone,gold,screws up a u - turn.,\"leaps down and kicks one agent, then ducks into a side tunnel as more agents give chase.\",reveals his name and his name.,tumbles off his glider and crouches down at the edge.,1\n8828,lsmdc3081_THOR-37886,7110,\"Someone rips down a sheet of plastic, then walks up to someone and smiles. Standing in the rain, agent someone\",\"Someone rips down a sheet of plastic, then walks up to someone and smiles.\",\"Standing in the rain, agent someone\",gold,looks around the room.,stands alone on someone's apartment.,lifts the blue and blue slip over her shoulder.,stares down at him.,3\n8829,lsmdc3081_THOR-37886,7113,His smile turns to a frown as the hammer remains embedded in the rock. Someone,His smile turns to a frown as the hammer remains embedded in the rock.,Someone,gold,walks away from a car.,stares at someone's reflection.,unload the rickety tarp out of the box and place a rental on hand to wheel of a pack.,\"grabs the handle with both hands, and pulls to no avail.\",3\n8830,lsmdc3081_THOR-37886,7091,\"As the first agent stands, someone slams the second agent into him and flees. More agents\",\"As the first agent stands, someone slams the second agent into him and flees.\",More agents,gold,search a camp where a helicopter flies out and lands in the cold water.,join the pursuit as someone races through the tunnel.,peer down a hallway.,\"and guards surround their table, pulling someone into the doorway frame.\",1\n8831,lsmdc3081_THOR-37886,7101,He smiles as he strides toward the hammer. A large agent,He smiles as he strides toward the hammer.,A large agent,gold,pushes him hard in the gut.,steps out and punches someone to the ground.,\"sits beside him, his lips hanging open.\",touches someone's hand with his gun.,1\n8832,lsmdc3081_THOR-37886,7103,\"Someone leaps to his feet and punches the agent in the face. Seemingly unaffected, the agent\",Someone leaps to his feet and punches the agent in the face.,\"Seemingly unaffected, the agent\",gold,\"disarms someone, knocking the unconscious.\",lands a series of jabs then tackles someone through the back of a tunnel.,lets people into the brick barbershop.,fires two squeegees at the cameraman.,1\n8833,lsmdc3081_THOR-37886,7090,\"Someone rushes an agent in the tunnel and flips him over his back. As the first agent stands, someone\",Someone rushes an agent in the tunnel and flips him over his back.,\"As the first agent stands, someone\",gold,slams the second agent into him and flees.,runs behind the alien.,trips over a model.,puts down his rifle and hits someone out.,0\n8834,lsmdc3081_THOR-37886,7112,\"In slow motion, someone smiles as he reaches out and grabs the hammer's handle. His smile\",\"In slow motion, someone smiles as he reaches out and grabs the hammer's handle.\",His smile,gold,turns to a frown as the hammer remains embedded in the rock.,is taken by the casket as a trail of light shines around him lying there.,is measured and half of the stunned times at someone.,fades as he turns off someone.,0\n8835,lsmdc3081_THOR-37886,7100,Mjolnir lies just a few yards ahead in the center of the crater. He,Mjolnir lies just a few yards ahead in the center of the crater.,He,gold,puts the walk figure down in the sewer.,smiles as he strides toward the hammer.,goes back to the motel.,jumps up from the tank and looks out on the night spot.,1\n8836,lsmdc3081_THOR-37886,7105,\"They land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead. The large agent puts someone into a headlock, but someone\",They land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead.,\"The large agent puts someone into a headlock, but someone\",gold,goes and does nothing.,manages a big tear.,collapses on the ground.,swings one elbow repeatedly into the agent's stomach.,3\n8837,lsmdc3081_THOR-37886,7107,\"As both men stand, someone jumps and kicks the agent in the chest with both feet. He\",\"As both men stand, someone jumps and kicks the agent in the chest with both feet.\",He,gold,stares at the dead man.,kicks the agent again as he tries to rise.,\"aims his wand, shielding his ears.\",raises his arms as he rows.,1\n8838,lsmdc3081_THOR-37886,7106,\"The large agent puts someone into a headlock, but someone swings one elbow repeatedly into the agent's stomach. As both men stand, someone\",\"The large agent puts someone into a headlock, but someone swings one elbow repeatedly into the agent's stomach.\",\"As both men stand, someone\",gold,takes two cans from his bags.,shoots someone off the wall.,holds up his hand over someone's face.,jumps and kicks the agent in the chest with both feet.,3\n8839,lsmdc3081_THOR-37886,7096,\"Outside, the crane raises the man with the crossbow above the crater with a direct view of Mjolnir. Agent someone\",\"Outside, the crane raises the man with the crossbow above the crater with a direct view of Mjolnir.\",Agent someone,gold,\"blinks off his clothes wincing pensively, then approaches examines the android's lapels.\",lays stones on a narrow patch.,\"turns to the handle with the plank, gun with target and hidden up the ladder's handle.\",jogs into a command center.,3\n8840,lsmdc3081_THOR-37886,7102,A large agent steps out and punches someone to the ground. Someone,A large agent steps out and punches someone to the ground.,Someone,gold,punches someone through the nose.,\"scrutinizes a man, who punches men to be sick and gored.\",whips the sweeps agents out.,leaps to his feet and punches the agent in the face.,3\n8841,lsmdc3081_THOR-37886,7089,He runs into a tunneled plastic sheathing leading to the crater's center. Someone,He runs into a tunneled plastic sheathing leading to the crater's center.,Someone,gold,\"presses himself up against the wall, and sparks up from the ground.\",rushes an agent in the tunnel and flips him over his back.,takes a chair across a flap of putty and tosses it down.,stands beside a strap - o - shaft.,1\n8842,lsmdc3081_THOR-37886,7092,\"In an armory, a man reaches for a sniper rifle then grabs a composite bow instead. The man\",\"In an armory, a man reaches for a sniper rifle then grabs a composite bow instead.\",The man,gold,runs outside and climbs into a basket dangling at the end of a crane.,holds up his knapsack to create the sniper.,\"whips, paper, and hovers the pistol in the man's throat.\",points the rocket in the distance and then ride on boards to the truck.,0\n8843,lsmdc3081_THOR-37886,7098,Someone draws back his bow. Someone,Someone draws back his bow.,Someone,gold,\"dashes around a corner, then pauses.\",clutches the collar of his high collar.,extends his hand to meet someone.,bows to his friend.,0\n8844,anetv_bX-PSFlwV5s,808,A person is then seen peeling off a roof using the roof and speaking out loud. The man,A person is then seen peeling off a roof using the roof and speaking out loud.,The man,gold,continues braiding and the men run in and out of frame.,dips the shovel into the car and cuts the exterior.,continues to take apart the roof.,continues printing the ladder tiles tiles onto the floor.,2\n8845,anetv_bX-PSFlwV5s,807,A man is seen speaking to the camera while holding up a tool. A person,A man is seen speaking to the camera while holding up a tool.,A person,gold,is then seen peeling off a roof using the roof and speaking out loud.,sticks an object off of the machine as well as fading by.,is seen pushing down a tire and rubbing it on the side paper.,is then seen riding around on a mat while the camera zooms in.,0\n8846,anetv_u02UsNRxclU,8504,A guy breaths in the smoke circles. A male,A guy breaths in the smoke circles.,A male,gold,blows the smoke into a light blow plastic container and uses it to blowout the smoke.,is bouncing with his weightlifting mop as he does a handstand and washes his hands.,does a girls dance flip under a bridge.,demonstrates bars on his bike.,0\n8847,anetv_u02UsNRxclU,8503,Guys smoke a Hookah pipe and blowout smoke. A guy,Guys smoke a Hookah pipe and blowout smoke.,A guy,gold,puts on a laptop.,enters the phone talking.,\"glances around, listening.\",breaths in the smoke circles.,3\n8848,anetv_u02UsNRxclU,11867,Differente men are sitting on couches smoking hokaah. men,Differente men are sitting on couches smoking hokaah.,men,gold,mixing bowls up and hits through their shields.,are painting a new carpet in a van in front of the camera.,are doing tricks wih the smoke.,are on stage watchnig a game.,2\n8849,anetv_HdgVytIzu4s,18322,A man is seen holding a tennis racket and begins hitting a ball around a room. Another man,A man is seen holding a tennis racket and begins hitting a ball around a room.,Another man,gold,is seen kicking his hands and pulling the racket as another person walks in and out of frame.,is in frame also holding a tennis racket and hitting a ball around.,is seen speaking to the camera and leads into him throwing the darts.,walks over and throws an object off into the distance.,1\n8850,anetv_HdgVytIzu4s,18323,Another man is in frame also holding a tennis racket and hitting a ball around. The men,Another man is in frame also holding a tennis racket and hitting a ball around.,The men,gold,play a game of poker sitting and laughing at the same time.,hit a bowling ball onto the table and also all chase the ball.,continue to play all the cards and end with them hitting it.,continue to play with one another around the room while the camera follows their movements.,3\n8851,anetv_C03QJbrKzaw,12316,The video takes place in a man's yard as he uses a hedge trimmer in various ways. It,The video takes place in a man's yard as he uses a hedge trimmer in various ways.,It,gold,begins with a title showing the trimmer's name and the various equipment that comes with the trimmer.,'s on the ground like a snake and bunny is hanging from the tree.,\"is clean, gesturing for the rest of the empty area.\",lands on the line as it passes along the grass.,0\n8852,anetv_C03QJbrKzaw,12317,It begins with a title showing the trimmer's name and the various equipment that comes with the trimmer. The man,It begins with a title showing the trimmer's name and the various equipment that comes with the trimmer.,The man,gold,is moving in different ways on a man as well as a design on the beam.,is in standing with the pain disgusted off having mixed the length of the hedge with his palm.,ends with her cutting the hair off he messes with the spaghetti and cabin as well.,climbs a ladder and starts hedging.,3\n8853,anetv_C03QJbrKzaw,12318,The man climbs a ladder and starts hedging. The video then,The man climbs a ladder and starts hedging.,The video then,gold,moves between the people falling into a bedroom.,shows trophies and officials.,cuts to various other ways the man is using the trimmer.,shows several other fish being dirty.,2\n8854,anetv_C03QJbrKzaw,9241,A bunch of tools for trimming the hedge are displayed. A man,A bunch of tools for trimming the hedge are displayed.,A man,gold,holding a knife sharpener shows instructions on how to properly sharpen the knife repeatedly.,shows how to trim the hedge and shape it.,happens to be the roller to demonstrate a necessary moves and footwork.,touches a wire and speaks.,1\n8855,anetv_C03QJbrKzaw,12319,The video then cuts to various other ways the man is using the trimmer. The video,The video then cuts to various other ways the man is using the trimmer.,The video,gold,cuts to several different people jumping up and down with spectators flipping.,shows some other riders supporting their methods with the skateboarders as well as many tying and riding around on their bikes.,ends with the equipment being showcased on stones and again shows the name of the hedge trimmer.,shows some of the individuals putting it all into line into various areas.,2\n8856,lsmdc3074_THE_ROOMMATE-4182,14292,\"Someone leads someone into a sizable bedroom decorated in shades of gray and periwinkle, and shuts the door. Someone\",\"Someone leads someone into a sizable bedroom decorated in shades of gray and periwinkle, and shuts the door.\",Someone,gold,\"gazes off, then gives a pensive look.\",\"stands at ames alone, sits in front of the camera, sees a briefly iron man's face.\",watches him gratefully through the window set.,crawls onto a luxurious bed and rolls over on her back.,3\n8857,lsmdc3074_THE_ROOMMATE-4182,14289,\"Later, the car passes working gardeners as it travels up a driveway to the gorgeous Greek - style home. Someone\",\"Later, the car passes working gardeners as it travels up a driveway to the gorgeous Greek - style home.\",Someone,gold,steps out from the water.,leads her guest into a sunny foyer.,is lying in bed with someone.,struggles to his feet.,1\n8858,lsmdc3074_THE_ROOMMATE-4182,14291,A crystal chandelier hangs from the vaulted ceiling. A tall man with thinning hair,A crystal chandelier hangs from the vaulted ceiling.,A tall man with thinning hair,gold,watches closely behind it sits a white cloth haired man bearing him.,walks up beside him.,arrives with a petite elegant redhead.,falls a huge slithers on its head.,2\n8859,lsmdc3074_THE_ROOMMATE-4182,14295,Someone notices a collection of drawings on a wall. They all,Someone notices a collection of drawings on a wall.,They all,gold,walk up a sidewalk and through the marketplace.,turn in a dress.,gaze down at each other.,feature the same brunette with almond - shaped eyes.,3\n8860,lsmdc3074_THE_ROOMMATE-4182,14290,Someone leads her guest into a sunny foyer. A crystal chandelier,Someone leads her guest into a sunny foyer.,A crystal chandelier,gold,glows on a row of stone pillars.,skates around the perimeter of the room.,hangs high above the clouds.,hangs from the vaulted ceiling.,3\n8861,lsmdc3074_THE_ROOMMATE-4182,14296,\"They all feature the same brunette with almond - shaped eyes. Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone\",They all feature the same brunette with almond - shaped eyes.,\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone\",gold,points down at the oven door.,responds with a warm appreciative smile.,begins squeezing the suds from the pitcher.,gives a relieved grimace.,1\n8862,lsmdc3074_THE_ROOMMATE-4182,14297,\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone responds with a warm appreciative smile. Both parents\",\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone responds with a warm appreciative smile.\",Both parents,gold,stroll past someone through the pouring rain as the kitchen window beside the window shows someone staring at him.,stare at their plates.,peer out across the gap.,run to a desk where they set tv on a couch.,1\n8863,lsmdc3074_THE_ROOMMATE-4182,14293,Someone crawls onto a luxurious bed and rolls over on her back. Someone,Someone crawls onto a luxurious bed and rolls over on her back.,Someone,gold,lies on the edge of the floor at the step.,\"steps farther in, taking in her surroundings.\",puts her jacket on her shoulders and jerks her head forward.,writes pensively and cuts it with a skimmer.,1\n8864,lsmdc3074_THE_ROOMMATE-4182,14294,\"Someone steps farther in, taking in her surroundings. Someone\",\"Someone steps farther in, taking in her surroundings.\",Someone,gold,\"goes into the kitchen, staring directly at her, fully curled up as someone approaches.\",turns on her bathing dress and listens as someone strokes her belly.,notices a collection of drawings on a wall.,\"stands next to him, waiting.\",2\n8865,lsmdc3074_THE_ROOMMATE-4182,14288,\"Someone shifts her uncomfortable gaze. Later, the car\",Someone shifts her uncomfortable gaze.,\"Later, the car\",gold,arrives before shed.,passes working gardeners as it travels up a driveway to the gorgeous greek - style home.,brushes a concrete box across the floor at a set of doors and passes under water.,\"rolls through the crowds, slowing as she passes a few feet and the front door collapses.\",1\n8866,anetv_D9A_9FH7e-A,8606,The lady adds drops of nail polish to a glass of fluid and pulls it through. The lady,The lady adds drops of nail polish to a glass of fluid and pulls it through.,The lady,gold,puts her nail in the cup and uses a stick to remove the polish.,shows us her cigarette.,stops knitting and turns.,removes the pair of pipes and uses a machine to drink the down.,0\n8867,anetv_D9A_9FH7e-A,8603,We see an opening title screen. We,We see an opening title screen.,We,gold,see a ladies hands with nail polish on them.,see people bouncing out and out on the grass.,see men running down the street on skateboards and leading someone from street to street.,see a man flips and gesturing for a third big boy and flip over a big foot.,0\n8868,anetv_D9A_9FH7e-A,8608,The lady pulls the tape of then puts a clear coat over her fingernails. We then,The lady pulls the tape of then puts a clear coat over her fingernails.,We then,gold,see the ending title screen.,see the end title screen and shots.,see a product written in black.,see the finished product and see the finished product.,0\n8869,anetv_D9A_9FH7e-A,8604,We see a ladies hands with nail polish on them. The lady,We see a ladies hands with nail polish on them.,The lady,gold,puts tape on her finger around her nail and puts clear and white polish on them.,holds up a bottle to cook.,maneuvers her hair into pieces.,removes the cats arm.,0\n8870,anetv_D9A_9FH7e-A,8607,The lady puts her nail in the cup and uses a stick to remove the polish. The lady,The lady puts her nail in the cup and uses a stick to remove the polish.,The lady,gold,pulls the tape of then puts a clear coat over her fingernails.,puts the polish on the other end product and uses lastly to make a nail see is shown.,looks the young lady and then she smiles and rubs her palms with white soap.,removes the product two times.,0\n8871,anetv_f4s1ngeK5P4,15035,The person then begins walking around a room pushing the ball around with the stick. The person,The person then begins walking around a room pushing the ball around with the stick.,The person,gold,moves up on the beam while the camera watches from the side of the gym.,continues playing the instrument while looking to the camera.,blows the object back and forth and smiles to the camera.,continues hitting the ball while walking around the room.,3\n8872,anetv_f4s1ngeK5P4,15034,A person is seen wearing slippers and holding a stick in their hands. The person then,A person is seen wearing slippers and holding a stick in their hands.,The person then,gold,begins walking around a room pushing the ball around with the stick.,begins jumping around the sides while people watch on the side.,rubs the back down on a towel while others help the frame.,shows the foot of the door and kneels.,0\n8873,anetv_sGTDKZuG1vE,13111,He takes a white towel and wipes off the counter and sink. He,He takes a white towel and wipes off the counter and sink.,He,gold,adds oranges to the water and sets it in the sink.,uses a sink to wash his face in the sink.,shows the knife while washing the hair clean.,sprays the mirror with windex and wipes the mirror off.,3\n8874,anetv_sGTDKZuG1vE,13109,A man is kneeling down in front of a sink. He,A man is kneeling down in front of a sink.,He,gold,is wiping the polish with a sponge.,starts scrubbing the inside of the sink with a sponge.,picks up a brush and talks to the camera.,walks out of the room and begins to wash them.,1\n8875,anetv_sGTDKZuG1vE,13110,He starts scrubbing the inside of the sink with a sponge. He,He starts scrubbing the inside of the sink with a sponge.,He,gold,takes a sponge and spits on the sink.,takes a white towel and wipes off the counter and sink.,puts the towel under the sink.,wipes the sink with a paper towel.,1\n8876,anetv_MEbEcvzdytY,11024,Then a demonstration of how the legs must move on the elliptical is shown. The woman in red further,Then a demonstration of how the legs must move on the elliptical is shown.,The woman in red further,gold,is standing up preparing for the competition.,explains benefits of the workout with an elliptical.,pauses to zoom around the stepper.,is taking a break and turning to the side of her face.,1\n8877,anetv_MEbEcvzdytY,11025,The woman in red further explains benefits of the workout with an elliptical. The woman on the machine,The woman in red further explains benefits of the workout with an elliptical.,The woman on the machine,gold,tries to work a smooth rhythm.,begins ironing the shirt.,begins doing the same 360 step.,continues to show the viewers the correct way to exercising on the elliptical.,3\n8878,anetv_MEbEcvzdytY,11022,A woman in a red workout shirt is talking about the benefits of an elliptical cross trainer. Another woman in a pink tank top,A woman in a red workout shirt is talking about the benefits of an elliptical cross trainer.,Another woman in a pink tank top,gold,is demonstrating the use of the elliptical.,looks in the mirror.,is standing on the other side of a workout routine.,is working on an exercise stationary elliptical machine.,0\n8879,anetv_MEbEcvzdytY,11023,Another woman in a pink tank top is demonstrating the use of the elliptical. The woman in red,Another woman in a pink tank top is demonstrating the use of the elliptical.,The woman in red,gold,is catching her hair and the bar moved on the bar.,is now jumping bars exercising and doing sport in weightlifting moves.,continues explaining the use of the elliptical.,holds a rock sweater after.,2\n8880,anetv_COeXmBZpLSE,9250,They twirl around a large stage surrounded by hundreds of people watching them dance. The man,They twirl around a large stage surrounded by hundreds of people watching them dance.,The man,gold,\"stops to speak, and the couple proceeds to dance with them across the room.\",\"engulfed with red and yellow blows, then pushes himself onto the ground.\",\"in white falls to the ground in front of him, eventually falling with joy.\",picks her up and twirls her around the music and ends with audience clapping.,3\n8881,anetv_COeXmBZpLSE,9249,The woman begins playing the piano when the man standing plays and grabs her. They,The woman begins playing the piano when the man standing plays and grabs her.,They,gold,twirl around a large stage surrounded by hundreds of people watching them dance.,continues playing the instrument and singing while moving his smiling hands with the camera as he plays the instrument.,plays and bunny to the music while judges applaud and the man start a series of video shots.,watch as she pauses to look at the camera.,0\n8882,anetv_MiOJxYa5Nt4,7333,A man is seen stepping into a circle and grabbing onto an object. The man then,A man is seen stepping into a circle and grabbing onto an object.,The man then,gold,throws a hammer and object off into the distance while the camera captures him from several angles.,moves the object all around the frame while looking up into the distance.,begins spinning around in circles with the object.,spins his body around and then stands up and continues jumping towards the camera.,2\n8883,anetv_MiOJxYa5Nt4,563,The guy releases the hammer throw object. The guy,The guy releases the hammer throw object.,The guy,gold,spins and catches it to himself.,walks toward the green net.,takes pictures of a clip and pirate.,flashes the closing credits on the screen.,1\n8884,anetv_MiOJxYa5Nt4,559,A guy is practicing a hammer throw. The guy,A guy is practicing a hammer throw.,The guy,gold,is balancing on the bars.,put a metal tub on the back.,walks forward as he grips the steel wire attached to the metal ball.,uses a blowtorch while the trophy displays outside.,2\n8885,anetv_MiOJxYa5Nt4,561,The guy spins the hammer throw object. The guy,The guy spins the hammer throw object.,The guy,gold,gets off the rake.,spins with the hammer throw object.,gives up certain parts of the track.,looks at the right arm and walks towards it and eats his top cream.,1\n8886,anetv_MiOJxYa5Nt4,7334,The man then begins spinning around in circles with the object. He finally,The man then begins spinning around in circles with the object.,He finally,gold,throws a disc and begins spinning around and spinning around.,throws the object off into the distance.,performs more backflips on the floor and lays back throwing pucks hammer at the object.,does a series of sideways flips and scrolls off.,1\n8887,anetv_MiOJxYa5Nt4,562,The guy spins with the hammer throw object. The guy,The guy spins with the hammer throw object.,The guy,gold,releases the discus.,releases the hammer throw object.,spins the disk.,does a running move.,1\n8888,anetv_MiOJxYa5Nt4,560,The guy walks forward as he grips the steel wire attached to the metal ball. The guy,The guy walks forward as he grips the steel wire attached to the metal ball.,The guy,gold,looks to see a man flying a giant chain.,puts on pliers and shakes his leg.,starts to go out again and the guy lifts the man with leg & ram.,spins the hammer throw object.,3\n8889,anetv_8M_RipfsJI8,10930,The man splashes the worker with water. A woman,The man splashes the worker with water.,A woman,gold,places a coffee tray on the plate.,takes a bucket and takes a torch from a bucket.,looks on and laughs at the man.,climbs onto the roundabout.,2\n8890,anetv_8M_RipfsJI8,10929,A woman is working on the otherside of the water. The man,A woman is working on the otherside of the water.,The man,gold,smells some more - something.,stands and waves her arms.,is cleaning the window in a bathroom.,splashes the worker with water.,3\n8891,anetv_CIJp-SG3sWE,5825,The girl dives into pool. The girl,The girl dives into pool.,The girl,gold,dives backwards into the pool.,swims to the edge of the pool.,dives off and misses the pool.,continuously throws the ball into the pool.,1\n8892,lsmdc1014_2012-79298,15679,People are standing behind the others as the plane approaches to land. Someone,People are standing behind the others as the plane approaches to land.,Someone,gold,\"turns through a web, desperately trying to keep his stub, then lodged in the ice with the other person.\",grabs a cup of vodka and the bullet driver.,struggles with the controls to keep the aircraft level.,partially anchored the pile of water on the roof.,2\n8893,lsmdc3047_LIFE_OF_PI-22907,11120,The younger insurance rep solemnly faces his partner. The older man,The younger insurance rep solemnly faces his partner.,The older man,gold,\"shifts his grim, compassionate gaze.\",downs his legs and the young boy closes his eyes.,\"regards the mother inquiringly, and she lowers his gaze.\",\"flexes his injured hands, then falls out of his chair.\",0\n8894,lsmdc3047_LIFE_OF_PI-22907,11119,Someone lowers his eyes and shakes his head. He,Someone lowers his eyes and shakes his head.,He,gold,bites his lower lip.,tenderly binds someone's face with his.,gives a wide grin.,fixes the widower's gaze on someone with a solemn gaze.,0\n8895,lsmdc3023_DISTRICT_9-11287,993,\"Someone makes selections from the blue graph, and the map hones in on a galaxy. He\",\"Someone makes selections from the blue graph, and the map hones in on a galaxy.\",He,gold,brings up a blue planet.,unlocks the safe and carries out several dollars.,ruffles his hair in a couple of directions and falls on her's nails.,turns on the light.,0\n8896,lsmdc3023_DISTRICT_9-11287,991,He casts his earnest gaze upward. It,He casts his earnest gaze upward.,It,gold,carries him to the holographic navigation frame.,slithers into the lid.,'s done row doubles.,stops to the other side of his screen.,0\n8897,lsmdc3023_DISTRICT_9-11287,995,It shows a saucer - like jet at its perimeter. Someone,It shows a saucer - like jet at its perimeter.,Someone,gold,launches through the air.,feels his way down the street.,hurls someone through the chopper squeezing over to the platform outside the lion's cage.,watches with a heaving chest.,3\n8898,lsmdc3023_DISTRICT_9-11287,989,\"From a bird's eye view, we watch the aliens dismember someone and devour his flesh. He gradually\",\"From a bird's eye view, we watch the aliens dismember someone and devour his flesh.\",He gradually,gold,speaks into his security camera.,loses his head at someone's hand.,reverts his gaze as someone peeks across the chevy.,manages to collect himself.,3\n8899,lsmdc3023_DISTRICT_9-11287,990,He gradually manages to collect himself. He,He gradually manages to collect himself.,He,gold,reaches down and knocks in the mouth of someone's candy cage.,drives the train out of the way of the street.,casts his earnest gaze upward.,\"furrows his brow, then chuckles as he stops giving the mic.\",2\n8900,lsmdc3023_DISTRICT_9-11287,996,Someone watches with a heaving chest. He,Someone watches with a heaving chest.,He,gold,breaks into a swaying position.,lifts a slack - jawed gaze to someone.,\"swallows, allowing a faint smile.\",punches a laundry bag.,2\n8901,lsmdc3023_DISTRICT_9-11287,986,\"Someone stares through one blue eye and one yellow eye, double its previous size. He\",\"Someone stares through one blue eye and one yellow eye, double its previous size.\",He,gold,\"slides off the shoes, and stops.\",knocks the masked zombie into someone's shoulder.,gives a unsettled nod before moving to someone's ear.,trails his arm down someone's body.,3\n8902,anetv_JguB9cLEXGY,8801,A person is seen holding up a stick followed by several clips of people throwing a javelin. More shots,A person is seen holding up a stick followed by several clips of people throwing a javelin.,More shots,gold,are shown of athletes throwing the javelin great distances while screaming each time after their throw.,are shown of people riding down the track as well of people dancing with them and walking around.,are shown of people running around cars and then time around the field.,are shown of many people hit the goal with one one in various movements.,0\n8903,lsmdc0033_Amadeus-67102,18146,\"He sees someone and smiles with real joy. Forgetting someone, she\",He sees someone and smiles with real joy.,\"Forgetting someone, she\",gold,throws out her hand.,purses her lips and raises her head.,goes to her husband.,puts on her jacket.,2\n8904,lsmdc0033_Amadeus-67102,18147,\"Forgetting someone, she goes to her husband. She\",\"Forgetting someone, she goes to her husband.\",She,gold,pushes back across the driveway.,holds out a thick cloth.,kicks him across the face.,throws herself on the bed.,3\n8905,lsmdc3056_PUBLIC_ENEMIES-3485,13522,Agent someone fires at someone empties his pistol into the man. Baby Face,Agent someone fires at someone empties his pistol into the man.,Baby Face,gold,rises out of the shot.,drops onto his back.,is taken away from him.,hangs on its cot.,1\n8906,lsmdc3056_PUBLIC_ENEMIES-3485,13521,He arrives and riddles someone with bullets. Agent someone,He arrives and riddles someone with bullets.,Agent someone,gold,\"lifts his gaze from someone, who turns and walks away.\",fires at someone empties his pistol into the man.,\"speeds overhead, sending the crew flying in the air.\",runs his hand through his hair.,1\n8907,anetv_DU36SNYN-rw,15363,The man starts playing with the dog by throwing the think and having him bring it back. He then,The man starts playing with the dog by throwing the think and having him bring it back.,He then,gold,claps for the dog.,videotapes several people moving on one way to the right.,fills it at the end.,throws the ball back and fourth towards the camera while he is now.,0\n8908,anetv_DU36SNYN-rw,15362,A man walks up with a disk and a dog hold onto it as he passes a few people. The man,A man walks up with a disk and a dog hold onto it as he passes a few people.,The man,gold,stops and puts on the handlebars of the man on the machine.,\"walks back to the racquet, raise his bow, raises his arms.\",starts playing with the dog by throwing the think and having him bring it back.,begins to talk to one of his men and zooms by on the fourth man.,2\n8909,anetv_DU36SNYN-rw,15361,The tile screen plays with a picture of a long field. A man,The tile screen plays with a picture of a long field.,A man,gold,\"appears in an orange salon with scissors, the shoes, and microphone.\",walks past an open screen.,walks up with a disk and a dog hold onto it as he passes a few people.,shows a long white beard and a mane of a cast.,2\n8910,lsmdc3077_THE_VOW-35621,7454,\"At a store across the street, someone pays a florist. Outside someone Mnemonic, someone\",\"At a store across the street, someone pays a florist.\",\"Outside someone Mnemonic, someone\",gold,sits with a woman.,\"glances around without seeing him, then heads down a sidewalk.\",feeds a pair of kids.,\"coolly someone from a gold suit, then marches inside.\",1\n8911,lsmdc3077_THE_VOW-35621,7453,\"Later, she clutches a hard - covered book to her chest, as she strides into Cafe Mnemonic. Crouching in front of a display case, she\",\"Later, she clutches a hard - covered book to her chest, as she strides into Cafe Mnemonic.\",\"Crouching in front of a display case, she\",gold,\"eyes shelves of pastries, then straightens.\",\"checks a watch cabinet full from curtains, and finds a seat.\",\"slides a letter into the dimly square box, then strides into the living room.\",pulls out her headlights and answers it.,0\n8912,lsmdc3077_THE_VOW-35621,7458,\"Meanwhile, someone arrives at their apartment. Elsewhere in the city, someone\",\"Meanwhile, someone arrives at their apartment.\",\"Elsewhere in the city, someone\",gold,holds snow running past her daughter.,stands at a bustling intersection and blinks her frustrated eyes.,gives a proud laugh as someone looks in nottingham's windshield.,\"looks out of the cars, avoiding people and surging backwards nervously.\",1\n8913,lsmdc3077_THE_VOW-35621,7460,\"At the apartment, someone spots his wife's cellphone left on the kitchen island. He\",\"At the apartment, someone spots his wife's cellphone left on the kitchen island.\",He,gold,watches as she opens the glass door and storms out of the hall.,\"picks it up and checks its display, then heads outside.\",picks up a pigeon.,takes a pair of balls out of his passenger pocket.,1\n8914,lsmdc3077_THE_VOW-35621,7461,\"He picks it up and checks its display, then heads outside. On the sidewalk out front, he\",\"He picks it up and checks its display, then heads outside.\",\"On the sidewalk out front, he\",gold,\"pauses to watch someone enter the stocky young man, wearing a fierce blue cowboy outfit.\",\"glances around, then breaks into a run.\",\"walks out of it, passes the splits, then stops and slams him against the door, looking away from a deep bowl.\",spots two kids standing in a narrow pub while guys stand two yards ahead.,1\n8915,lsmdc3077_THE_VOW-35621,7448,\"At the apartment, someone slides aside a grated door, protecting shelves of records, books, and dvds. She\",\"At the apartment, someone slides aside a grated door, protecting shelves of records, books, and dvds.\",She,gold,\"crosses the stairs, where someone enters a large supply room.\",\"shows someone a candy box, hits the bottle against her friend, which breaks out.\",retrieves his bottles from a stack of black paper and takes out a life briefcase.,\"finds a sticky note from someone attached to one disc's box, it reads, more evidence.\",3\n8916,lsmdc3077_THE_VOW-35621,7450,She winces as she watches. Someone,She winces as she watches.,Someone,gold,glances at someone then sets down her cue.,regards him for a moment.,maintains a warm smile.,laughs at her recorded comment.,3\n8917,lsmdc3077_THE_VOW-35621,7457,\"Later, someone stands by a stairway to an L - train platform and looks around in confusion. Meanwhile, someone\",\"Later, someone stands by a stairway to an L - train platform and looks around in confusion.\",\"Meanwhile, someone\",gold,chases his wife across the room.,watches footage of someone holding a flare in the rain.,arrives at their apartment.,heads out a door.,2\n8918,lsmdc3077_THE_VOW-35621,7449,\"She finds a sticky note from someone attached to one disc's box, it reads, More Evidence. She\",\"She finds a sticky note from someone attached to one disc's box, it reads, More Evidence.\",She,gold,leaves as a taxi arrives at rain.,falls at the coffee pump.,'s huge golden eyes are now lighted to the bottom now.,winces as she watches.,3\n8919,lsmdc3077_THE_VOW-35621,7456,\"Someone takes his bouquet of flowers and hurries in another direction. Later, someone\",Someone takes his bouquet of flowers and hurries in another direction.,\"Later, someone\",gold,stops and looks to someone.,enters his room and photographs the news reporter standing outside the salon.,stands by a stairway to an l - train platform and looks around in confusion.,lies on the floor with her arms wrapped around her.,2\n8920,lsmdc3077_THE_VOW-35621,7452,\"Someone sorrowfully covers her mouth. Later, she\",Someone sorrowfully covers her mouth.,\"Later, she\",gold,unscrews a fruit carton from a carton and sticks her tongue out.,carries a bunch of bags of flowers and bucket bursting with plastic bags.,\"clutches a hard - covered book to her chest, as she strides into cafe mnemonic.\",steps out a room wearing a tasteful denim dress.,2\n8921,lsmdc3077_THE_VOW-35621,7451,\"Someone laughs at her recorded comment. In the video, someone\",Someone laughs at her recorded comment.,\"In the video, someone\",gold,starts past a large stuffed animal in a helping.,lies alone on a bench in a snow covered living room.,holds up her menu.,rides on the road path.,2\n8922,lsmdc3077_THE_VOW-35621,7459,\"Elsewhere in the city, someone stands at a bustling intersection and blinks her frustrated eyes. At the apartment, someone\",\"Elsewhere in the city, someone stands at a bustling intersection and blinks her frustrated eyes.\",\"At the apartment, someone\",gold,\"finds a news video report on a folder of the artist, followed by someone.\",\"attaches a box to her window, presses a call, then takes her seat next to his.\",spots his wife's cellphone left on the kitchen island.,stares at her apartment cathedral as he paces with continuing to talk with someone.,2\n8923,anetv_XsCND4lDiqA,17812,An old man threw the yellow ball in the cup and it bounced back on the table. The old man in black shirt,An old man threw the yellow ball in the cup and it bounced back on the table.,The old man in black shirt,gold,threw the ball and landed on the table.,is talking and the camera follows.,threw the bowling ball and walked to the audience.,kicked the ball and cheered.,0\n8924,anetv__3xMhj4mbsk,7040,\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then adds wax on top. There\",\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then adds wax on top.\",There,gold,are finished and blue paper is shown next into it.,are more items that the paint was used on shown at the end.,is seen a video all around a drum set.,the man who applies whimpering off someone nearby with bottles on top of the ironing board.,1\n8925,anetv__3xMhj4mbsk,12803,A lady paints the end table with a greenish paint. We,A lady paints the end table with a greenish paint.,We,gold,see a picture of the lady.,see the design's carved object in the heart.,see furniture products all lined up.,see earth in the garden of the base of the mountains.,2\n8926,anetv__3xMhj4mbsk,12802,We see a table with scratches. A lady,We see a table with scratches.,A lady,gold,dressed in black talks in front of a blindfolded with different females.,peels out potatoes on both other dishes.,paints the end table with a greenish paint.,kissing the little boy is lying in a pink chair.,2\n8927,anetv__3xMhj4mbsk,12805,We see the lady sand the table. The lady,We see the lady sand the table.,The lady,gold,removes the shoe using a cloth.,releases the poles and runs down to grab it.,shows us the liquid on something.,rubs wax on the table.,3\n8928,anetv__3xMhj4mbsk,12807,We see decor and the table in a house. We,We see decor and the table in a house.,We,gold,see a cloth in a yard.,see a blue screen then products.,see the men on fire.,see a man playing and apply it on a chair.,1\n8929,anetv__3xMhj4mbsk,12804,We see furniture products all lined up. We,We see furniture products all lined up.,We,gold,see shops on the flamethrower.,see a man on a barber beard and trimming a bush.,see the red ending screen.,see the lady sand the table.,3\n8930,anetv__3xMhj4mbsk,7039,\"There is a worn table shown, then a woman proceeds to paint the table with green paint while music plays, then he table is shown finished and then another coat is added on top. Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then\",\"There is a worn table shown, then a woman proceeds to paint the table with green paint while music plays, then he table is shown finished and then another coat is added on top.\",\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then\",gold,stands up and throws the outro button.,adds wax on top.,picks up the scuff and flips it into a chair.,uses another white scraper to sit about.,1\n8931,anetv__3xMhj4mbsk,12806,The lady rubs wax on the table. We,The lady rubs wax on the table.,We,gold,peels across the entire surface of the tarmac.,see the leaf again.,see a welder and a needle.,see decor and the table in a house.,3\n8932,anetv__3xMhj4mbsk,12808,We see a blue screen then products. We,We see a blue screen then products.,We,gold,see closing screens and credits.,continue to see a face with bowling words on a black graphic.,finish the 1600 and a machine appears from different angles.,are uncovered falling from a float.,0\n8933,lsmdc3009_BATTLE_LOS_ANGELES-527,11443,Someone steps away from the corporal. Someone,Someone steps away from the corporal.,Someone,gold,tries the clergyman but someone manages to stay balanced.,wipes a tear from his scarred cheek and hangs his head.,goes down shack and tosses him on the dirt.,takes a few breaths as someone comes round behind them and looks things quickly among themselves.,1\n8934,anetv_vynLNpomc30,17286,The other two men play bag pipes. all four men,The other two men play bag pipes.,all four men,gold,dance and play in unison.,take turns to play guitar.,\"are playing, banging each other.\",shoot it at the starting line.,0\n8935,anetv_vynLNpomc30,15540,A small group of people are seen standing on a stage playing instruments and wearing scotsman uniforms. The people,A small group of people are seen standing on a stage playing instruments and wearing scotsman uniforms.,The people,gold,continue playing with one another and move to the center of the stage.,\"dance in circles and celebrating with one another, then people pretend to run.\",continue dancing with one another and end by walking around a table and speaking to one another.,walk around and hold their hands up.,0\n8936,lsmdc3076_THE_SOCIAL_NETWORK-35125,2398,\"Someone grins and follows someone outside into an alley. Wearing shorts, he briefly\",Someone grins and follows someone outside into an alley.,\"Wearing shorts, he briefly\",gold,hugs himself then hops around and faces his warmly dressed friend.,opens his shirt and stares at someone.,aims at the shaft overlooking the sunset.,glances around and shows the two other dogs on the lawn.,0\n8937,anetv_Hv3We5wjaJE,119,A couple are in the flowing water of a river. They,A couple are in the flowing water of a river.,They,gold,are moving encouraging boats of the water.,are getting to get out of a truck.,are sitting next to several buckets.,rushes through a hydra forest courtyard.,2\n8938,anetv_U2u9JboK97A,18924,We see a title card on black. A man,We see a title card on black.,A man,gold,is explaining the name of the cross.,pushes a ball towards the prisoner.,turns around and sees the lady dancing.,is shooting basketball in a gym.,3\n8939,anetv_U2u9JboK97A,18921,We see a man playing basketball. The shot he made,We see a man playing basketball.,The shot he made,gold,is the hallways of a classroom with a bat that is hanging from the ground.,are shown many times.,is seen in reverse.,is interviewed with the nazi player.,2\n8940,anetv_U2u9JboK97A,18920,We see an image and a title card. We,We see an image and a title card.,We,gold,see the loads of men fencing to see various shots.,see a man playing basketball.,see the ladies hair behind it.,see two people kneeling in a field in the desert.,1\n8941,anetv_U2u9JboK97A,18926,We see a man dunk the ball twice. We,We see a man dunk the ball twice.,We,gold,see a man measure the distance.,see the ending title card on black.,see the soccer players on band.,see the family taking the shot.,1\n8942,anetv_bPZRYmr7p1k,13011,\"Then, an army of horsemen shoot arrows with a bow and dead people lye on the ground. After, a group of people\",\"Then, an army of horsemen shoot arrows with a bow and dead people lye on the ground.\",\"After, a group of people\",gold,begin a race race in winter competition.,sticks arrows in black in a watermelon attacks.,are carried on a forest.,cross the meadow of a forest.,3\n8943,anetv_bPZRYmr7p1k,13010,\"A man holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor. Then, an army of horsemen\",\"A man holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor.\",\"Then, an army of horsemen\",gold,shoot arrows with a bow and dead people lye on the ground.,hoop in a tournament and jumps to shoot arrows at their friend.,falls backward and land on the ground with a target.,rides in slow motion with a man being interviewed and two opponents.,0\n8944,anetv_bPZRYmr7p1k,13660,\"One man hit the man's back and fell off the horse. The man is in the battle field fighting other men and, and then they\",One man hit the man's back and fell off the horse.,\"The man is in the battle field fighting other men and, and then they\",gold,ride the horses in the field.,speed around the motion of the boat to miss the jump and keep him at the end of the bridge.,engage in a game with each other.,continue to fight until the cookies are gone.,0\n8945,anetv_bPZRYmr7p1k,13659,A man riding the horse and shot is arrow using a bow. One man,A man riding the horse and shot is arrow using a bow.,One man,gold,hit the man's back and fell off the horse.,\"looks directly at a man on the sides, several people assemble and perform a bow and arrow.\",fastens a bow and then throws down the bow.,passes his arrow and shoots the arrow forward.,0\n8946,anetv_bPZRYmr7p1k,13009,\"Men shoot arrows when riding horse and two men falls from a horse, then four men riding horses cross the meadow of a forest. A man\",\"Men shoot arrows when riding horse and two men falls from a horse, then four men riding horses cross the meadow of a forest.\",A man,gold,points to the left while talking and drinks from the car.,is chopping a plateau off an ice cream pit.,\"holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor.\",gets in a large surf in the mountains where a group of men are behind them.,2\n8947,anetv_XnvaW1HQyg4,1103,First the man swings the ball and looks to see how far it goes. Then he,First the man swings the ball and looks to see how far it goes.,Then he,gold,goes to take a picture with two other people.,breaks by until he's thrown.,holds a circle and plays with the tall stone.,takes his arm and begins walking across the field.,0\n8948,anetv_XnvaW1HQyg4,15195,A logo for a sports even is shown. There,A logo for a sports even is shown.,There,gold,man is shown in a room with a woman standing next to him.,are then shown being interviewed.,competition turns a stick for the camera and it stops a few inches until the bottom is moving from the bottom.,is a man in a net in blue.,3\n8949,anetv_0GWJ-VHFlTk,6642,An intro leads into a basketball player holding a ball and then running up and shooting a basket. The man,An intro leads into a basketball player holding a ball and then running up and shooting a basket.,The man,gold,continues running back and fourth while shooting the baskets and ends with text across the screen.,then kicks the ball but is able to throw as far as he can.,kicks it into a ball once more and shows it off again.,continues to play on his tennis racket against another wall in the front net.,0\n8950,anetv_0GWJ-VHFlTk,7766,A young man stands on a basketball court holding two basketballs. the man then,A young man stands on a basketball court holding two basketballs.,the man then,gold,runs toward the hoop and shoots.,throws the ball in the air into a pit.,runs towards the field and the man hits the ball into the field.,hits the ball on his racket several times.,0\n8951,anetv_0GWJ-VHFlTk,7767,The man then runs toward the hoop and shoots. the man,The man then runs toward the hoop and shoots.,the man,gold,retrieves the ball & shoots the ball again.,does back flip on the floor.,falls and hugs a second person.,looks for the ring in the end.,0\n8952,anetv_QjoEYtjPa3w,8328,Two sets of Instructions appear an the person removes the left and right lens. the person,Two sets of Instructions appear an the person removes the left and right lens.,the person,gold,uses a knife to polish cylinder.,readies an ink plunger taped neatly.,removes the lens on the side of the head and puts it in a charger.,waves bye to the camera.,3\n8953,anetv_QjoEYtjPa3w,8326,We see another instruction screen and see the person inserts the lens on the left. Another screen of instructions and the person,We see another instruction screen and see the person inserts the lens on the left.,Another screen of instructions and the person,gold,takes a brake from the machine.,urges the individual to water ski.,switch to the title over more.,inserts the right lens.,3\n8954,anetv_QjoEYtjPa3w,8325,We see a person holding a contact lens. We,We see a person holding a contact lens.,We,gold,see the camera again.,see another instruction screen and see the person inserts the lens on the left.,see a car's door and iron man picking up a lady.,see a device light up and down a silver objects.,1\n8955,anetv_QjoEYtjPa3w,8327,Another screen of instructions and the person inserts the right lens. Two sets of Instructions,Another screen of instructions and the person inserts the right lens.,Two sets of Instructions,gold,appear addressed to front briefly using product.,appear an the person removes the left and right lens.,hold fabric to the side and rip off the credits.,players sharpen a contact and customer the senses reason.,1\n8956,anetv_H-PhEsI9njQ,2989,People are standing in a court playing shufleboard while people is in the terraces are watching the game. a lot of people wearing red uniforms,People are standing in a court playing shufleboard while people is in the terraces are watching the game.,a lot of people wearing red uniforms,gold,are walking and sitting around the court.,hit the ball as they go down the court.,are laying in a track during a party.,are standing behind them playing lacrosse.,0\n8957,anetv_trV2ycq9rkU,12684,\"One turns to the side, using a piece of equipment. They\",\"One turns to the side, using a piece of equipment.\",They,gold,descend off an upper floor and descends.,appear to be building a roof.,balances all along the obstacles while going down the river.,open a hatch that runs down the length of the way like the turbulent ocean.,1\n8958,anetv_trV2ycq9rkU,12683,Two men are shown on the side of a building roof. One,Two men are shown on the side of a building roof.,One,gold,throws at the roof and yells to the camera.,sits in step from the other on the floor.,uses the scraper and wax paint in lamps to cover the roof of the car.,\"turns to the side, using a piece of equipment.\",3\n8959,lsmdc1005_Signs-4981,7455,\"He reaches over and stabs his fork into a piece of molten toast, then, sits back down. Someone\",\"He reaches over and stabs his fork into a piece of molten toast, then, sits back down.\",Someone,gold,watches in disbelief as someone tucks into his mount of food.,climb out of the boat.,brings back the flask.,winces as she drains from the table.,0\n8960,lsmdc1005_Signs-4981,7471,\"Someone lifts up a plank and hold across the door. Together, the two men\",Someone lifts up a plank and hold across the door.,\"Together, the two men\",gold,dangle off the roof of his lighted car.,walk in and move toward.,hammered nails through the plank into the door frame.,flanking him as the other agent rise out of control and scurry through the front door.,2\n8961,lsmdc1005_Signs-4981,7459,\"Someone leans into his father who hugs him tightly, then, pulls someone to his other side. Someone\",\"Someone leans into his father who hugs him tightly, then, pulls someone to his other side.\",Someone,gold,\"is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace.\",points his wand.,watches the mysterious man.,averts the waves at someone's face.,0\n8962,lsmdc1005_Signs-4981,7472,\"Together, the two men hammered nails through the plank into the door frame. Turning to get another mail, someone\",\"Together, the two men hammered nails through the plank into the door frame.\",\"Turning to get another mail, someone\",gold,looks up to see the peeking skyline behind them with a sleek blonde hair and a ponytail.,climbs into the room to find someone watching with a look and its steppers.,ducks a step into the basement stairs.,stops and stares at someone before helping someone with another plank.,3\n8963,lsmdc1005_Signs-4981,7465,It's displaying a test card. He,It's displaying a test card.,He,gold,stares after her to zero.,toss out some of someone's magic tools.,\"tilts the light, pretending to silhouette her.\",turns to look back at the others and swallows.,3\n8964,lsmdc1005_Signs-4981,7463,Someone walks slowly across the polished wooden floor into the front hallway. He,Someone walks slowly across the polished wooden floor into the front hallway.,He,gold,lowers the rear keys without answering.,looks at the tv set inside.,\"enters the room, dressed in someone frock coat, a dress as usual.\",watches the bound paper slip and covers two of blue old leather.,1\n8965,lsmdc1005_Signs-4981,7458,\"Observing him, someone gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably. Someone\",\"Observing him, someone gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably.\",Someone,gold,notices someone's ring.,\"rolls his hood up of the carpet beneath the trees to uncover it, then takes it in place.\",\"leans into his father who hugs him tightly, then, pulls someone to his other side.\",are running quickly to small - the children walks towards the open congregation doritos.,2\n8966,lsmdc1005_Signs-4981,7461,\"At the other end of the table, the red lines on the baby monitor begin to flash. Someone and his family\",\"At the other end of the table, the red lines on the baby monitor begin to flash.\",Someone and his family,gold,look up and stare at.,find their own shapes circle.,arrive at the austin lair swanky apartment in a movie cottage.,take burning numbers and talk overhead.,0\n8967,lsmdc1005_Signs-4981,7460,\"Someone is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace. Someone's body\",\"Someone is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace.\",Someone's body,gold,has become a little boy's backside.,is covered with worms.,falls limp from her grasp.,rocks as he cries.,3\n8968,lsmdc1005_Signs-4981,7468,\"Across the landing in his room, someone cautiously approaches the window and looks out over the maize field. His eyes widening and becoming fixed in a fearful stare, he\",\"Across the landing in his room, someone cautiously approaches the window and looks out over the maize field.\",\"His eyes widening and becoming fixed in a fearful stare, he\",gold,backs towards the bedroom door.,rises around his side.,places the bloody box into the man's pocket pocket key.,hurtles down another steep entertain tangled technique.,0\n8969,lsmdc1005_Signs-4981,7469,\"His eyes widening and becoming fixed in a fearful stare, he backs towards the bedroom door. Someone\",\"His eyes widening and becoming fixed in a fearful stare, he backs towards the bedroom door.\",Someone,gold,\"turns, totally amused and amused.\",arrives at a booth and watches a detective type out.,\"swings someone's fedora into the end whose hair, nearly hit him back with his wand.\",looks over at him.,3\n8970,lsmdc1005_Signs-4981,7462,Someone and his family look up and stare at. Someone,Someone and his family look up and stare at.,Someone,gold,shifts to catch someone's shoelaces.,grins as someone swaggers away.,glances around warily and sees his body covered in blood.,walks slowly across the polished wooden floor into the front hallway.,3\n8971,lsmdc1005_Signs-4981,7464,He looks at the tv set inside. It,He looks at the tv set inside.,It,gold,'s displaying a test card.,comes to a halt.,quickly packs up the suitcase.,paws takes the hunting basket and peers through the hole at big apartment.,0\n8972,lsmdc1005_Signs-4981,7467,\"Later, someone is upstairs, hammering boards the door to the children's bedroom. Across the landing in his room, someone\",\"Later, someone is upstairs, hammering boards the door to the children's bedroom.\",\"Across the landing in his room, someone\",gold,finds tears of fountains of concentrating on his computer.,bounces on his stool as it sits.,sits across from someone and scans the square.,cautiously approaches the window and looks out over the maize field.,3\n8973,lsmdc1005_Signs-4981,7473,\"Turning to get another mail, someone stops and stares at someone before helping someone with another plank. Someone\",\"Turning to get another mail, someone stops and stares at someone before helping someone with another plank.\",Someone,gold,slammed the door open.,\"remains motionless, clinging to her brother.\",shows someone soft pink wine.,\"turns, shining his eyes.\",1\n8974,lsmdc1005_Signs-4981,7454,Someone's eyes are swollen. He,Someone's eyes are swollen.,He,gold,\"is holding a thin, long - focus lens.\",\"twists free, then pulls away and marches on.\",\"reaches over and stabs his fork into a piece of molten toast, then, sits back down.\",slips into his grasp then turns back to the bedroom where someone manages to hit him.,2\n8975,lsmdc1005_Signs-4981,7457,\"Upset, someone winces as he eats. Observing him, someone\",\"Upset, someone winces as he eats.\",\"Observing him, someone\",gold,leaves someone's box and folds his arms with both hands.,licks him wide and wipes his mouth.,raises his eyebrows and looks on.,gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably.,3\n8976,lsmdc1005_Signs-4981,7476,\"Someone slaps another plank across the bedroom door. Someone in his arms, someone\",Someone slaps another plank across the bedroom door.,\"Someone in his arms, someone\",gold,go downstairs into the front hallway.,returns to the ceiling.,shoots someone with a taser.,leaves the ransacked floor.,0\n8977,lsmdc1005_Signs-4981,7456,\"Someone watches in disbelief as someone tucks into his mount of food. Upset, someone\",Someone watches in disbelief as someone tucks into his mount of food.,\"Upset, someone\",gold,winces as he eats.,glances over his shoulder and answers the adjacent door.,draws a roadster from a jack - testing bike and enters the loft facility.,\"rushes to the kitchen counter where the teacher enters, follows yells to someone.\",0\n8978,anetv_iFJaqDgYsp0,17735,The man returns and lifts the weight to his shoulders then over his head. The man,The man returns and lifts the weight to his shoulders then over his head.,The man,gold,lifts his weight over his head down and lifts it above his head.,speaks once more closely in his eyes.,jumps on the floor and start performing tai chi in his room.,drops the weight and laughs and pumps his fist.,3\n8979,anetv_iFJaqDgYsp0,17734,\"The man drops the weight, pumps his fist, and walks off. The man\",\"The man drops the weight, pumps his fist, and walks off.\",The man,gold,get off the stool away.,returns and lifts the weight to his shoulders then over his head.,spins again with his arms extended.,\"walks off, shakes dusts off the weight and continues on the exercise.\",1\n8980,anetv_iFJaqDgYsp0,8113,A man is seen kneeling down before a set of weights while another watches on the side. He,A man is seen kneeling down before a set of weights while another watches on the side.,He,gold,continues moving around and throwing his arms off the side.,continues the routine in front of the crowd and ends with several more men walking down the frame.,lifts up the weights and throws them back down.,moves to the side and does several martial arts moves.,2\n8981,anetv_iFJaqDgYsp0,17732,A man walks to a barbell and grips the handle. The man then,A man walks to a barbell and grips the handle.,The man then,gold,spins and slows down when throws himself.,places his hands around the seat of the machine.,lifts himself onto his knees and tightens the weight.,lifts the weight over his head and stands up.,3\n8982,anetv_iFJaqDgYsp0,17733,The man then lifts the weight over his head and stands up. The man,The man then lifts the weight over his head and stands up.,The man,gold,lift the weight against his head.,drops into a ball.,\"drops the weight, pumps his fist, and walks off.\",is also water skiing.,2\n8983,anetv_iFJaqDgYsp0,8114,He lifts up the weights and throws them back down. He,He lifts up the weights and throws them back down.,He,gold,is again shown lifting the weights over his head.,grabs more weight and rocks around some of the weight.,stands in front of the judges to take the weights off of him.,is pulling the amplifier with a green object.,0\n8984,anetv_1RVu0qNtWCc,8003,A man is seen looking in the mirror and adjusting a camera. The man then,A man is seen looking in the mirror and adjusting a camera.,The man then,gold,puts the hair back in his eyes and speaking to the camera.,begins kicking up the hair and showing them all to the camera.,begins shaving his facial hair using a razor.,pauses to speak to the camera and continues walking.,2\n8985,anetv_1RVu0qNtWCc,6435,He smiles and then continues on with the trim of his beard until it is shown and turns into a goatee. He then,He smiles and then continues on with the trim of his beard until it is shown and turns into a goatee.,He then,gold,falls down and dries up off the ground.,picks up the nails and begins painting them down with paint.,speaks into the camera as the video ends.,turns to show adjustments to drying his hair.,2\n8986,anetv_1RVu0qNtWCc,6434,He moves very quickly and trims the beard very precisely. He,He moves very quickly and trims the beard very precisely.,He,gold,turns his tube on to the lady's blanketed leg and then zooms off.,uses the shears to carve the blade.,smiles and then continues on with the trim of his beard until it is shown and turns into a goatee.,demonstrates how to use the sides of the hedge by making his way across a path and cutting snow off a hedge.,2\n8987,anetv_1RVu0qNtWCc,6433,He begins to shave his long beard with an electric razor. He,He begins to shave his long beard with an electric razor.,He,gold,then wipes it away with a razor.,uses part brush to shave his beard off.,moves very quickly and trims the beard very precisely.,lifts the barbell back up and shaves the bottom out.,2\n8988,anetv_1RVu0qNtWCc,6432,A young man is shown in a bathroom and he is setting up a camera in front of a mirror. he,A young man is shown in a bathroom and he is setting up a camera in front of a mirror.,he,gold,begins to shave his long beard with an electric razor.,talks about the throw for a tutorial on how to make hair work.,rubs the gloves with cloth soap and rubs glasses over the sink.,then scrubs a small table with a scraper with the packet showing the finished product.,0\n8989,anetv_1RVu0qNtWCc,8004,The man then begins shaving his facial hair using a razor. He,The man then begins shaving his facial hair using a razor.,He,gold,picks up the razor and continues shaving the man's hair.,uses the razor to clean a beard.,continues shaving and looking up then down at his hair.,fades the action while still working his hat off.,2\n8990,lsmdc1023_Horrible_Bosses-81938,6766,He tries to sweep it off. Someone,He tries to sweep it off.,Someone,gold,screams in fear of someone.,picks up someone's razor.,opens it and peers inside.,\"turns and sharp, clean, straggly.\",1\n8991,lsmdc1023_Horrible_Bosses-81938,6760,Someone enters the bedroom where there's a large Japanese style portrait of someone brandishing nunchucks. He,Someone enters the bedroom where there's a large Japanese style portrait of someone brandishing nunchucks.,He,gold,chases them through the window.,holds an umbrella over his chest.,pockets something from the dresser.,\"steps away from the church, a portrait of his mother.\",2\n8992,lsmdc1023_Horrible_Bosses-81938,6768,\"In the open plan living space, someone dumps the contents of the Dustbuster into the cocaine tray. The tray\",\"In the open plan living space, someone dumps the contents of the Dustbuster into the cocaine tray.\",The tray,gold,explodes into an empty glass.,is on the floor.,is still on the floor.,\"is now full of dust, cocaine and debris.\",3\n8993,lsmdc1023_Horrible_Bosses-81938,6769,\"The tray is now full of dust, cocaine and debris. Someone\",\"The tray is now full of dust, cocaine and debris.\",Someone,gold,rides the other way down some stairs.,props up on the blood - spattered window.,are there in an illuminated hallway.,is stony - faced.,3\n8994,lsmdc1023_Horrible_Bosses-81938,6765,Someone's hoody is dusted with cocaine. He,Someone's hoody is dusted with cocaine.,He,gold,tries to sweep it off.,turns off his light.,gets out of bed and takes the phone out.,places it in a folded canvas in the courtyard.,0\n8995,lsmdc1023_Horrible_Bosses-81938,6759,A cocaine cloud hangs in the air. Someone,A cocaine cloud hangs in the air.,Someone,gold,'s cellphone to an intercom dial.,fly back into the van.,\"hangs on the bush, slightly tilted up the sides of the road.\",enters the bedroom where there's a large japanese style portrait of someone brandishing nunchucks.,3\n8996,lsmdc1023_Horrible_Bosses-81938,6767,Someone picks up someone's razor. He,Someone picks up someone's razor.,He,gold,hangs a whip on someone's hair.,pops it down the back of his trousers.,\"puts it on to his chest, and releases us.\",sharpens the knife on someone's head.,1\n8997,lsmdc1023_Horrible_Bosses-81938,6763,Someone uses his sleeve gloves to turn the light on in someone's on - suite bathroom. He,Someone uses his sleeve gloves to turn the light on in someone's on - suite bathroom.,He,gold,\"hustles someone to the curtain on the shower, releasing it in the spins.\",spots someone's toothbrush.,stands beside the clothes yanking on a pink thong with dirt.,opens his boot and looks out through the back doors.,1\n8998,lsmdc1023_Horrible_Bosses-81938,6771,Someone finishes up in the bathroom. He,Someone finishes up in the bathroom.,He,gold,\"goes into the living room, and someone's face lands on the bed.\",approaches the bathroom where someone lies in the bed.,handfuls a pill in the pot.,turns the light off and leaves.,3\n8999,lsmdc1023_Horrible_Bosses-81938,6761,\"He pockets something from the dresser. Someone, who wears a short sleeved t shirt,\",He pockets something from the dresser.,\"Someone, who wears a short sleeved t shirt,\",gold,stands over caboose volumes.,\"straightens her white, unbuttoned ear.\",\"drops her silver dress and scarf, then drinks a bottle of champagne.\",watches someone pick up the tray.,3\n9000,lsmdc1023_Horrible_Bosses-81938,6764,He spots someone's toothbrush. He,He spots someone's toothbrush.,He,gold,\"takes it from his holder, slides it down his ass crack and has a good scrub.\",\"folds his coat, fixing a cherry over the table.\",\"hit the ground with the nervous thread as he glares at someone, then bends over over.\",wheels the boat around to find it empty.,0\n9001,anetv_G0vkQmcalvk,17047,A woman plays the drums and sings on stage. The camera,A woman plays the drums and sings on stage.,The camera,gold,is the woman playing harmonica being shown.,continues to countdown once more.,tips above the marching band.,pulls back on the scene.,3\n9002,anetv_G0vkQmcalvk,17048,The camera pulls back on the scene. The woman,The camera pulls back on the scene.,The woman,gold,shuts the panel and smooths a button.,finishes and stands up.,opens the window again and smokes.,lies on the edge of the bed knitting.,1\n9003,anetv_jqZg_FK2OlM,5233,A camera pans around a fenced in are and leads into a woman holding a paint brush. She,A camera pans around a fenced in are and leads into a woman holding a paint brush.,She,gold,continues to speak to the camera as she puts her hair into place.,brushes the side of the fence up and down while the camera continues looking around the side.,continues to speak to the camera and shows a river brushing under the water.,mixes up various dishes in a bowl.,1\n9004,anetv_twQbAuWVxlU,18878,Each of the figures is walking a dog. The clip,Each of the figures is walking a dog.,The clip,gold,stops and laughs back.,who pictured playing is shown.,seems to be a loop.,is presented being groomed with several other dogs.,2\n9005,anetv_CV9n0jgThLY,13609,\"Smoke comes near a table. People stand on front the barn watching, also two women and two children\",Smoke comes near a table.,\"People stand on front the barn watching, also two women and two children\",gold,pour some in the sidewalk.,stand on front the barn.,sit down beside him.,pull up to the floor.,1\n9006,anetv_CV9n0jgThLY,13608,\"A person is in the basket of crane on a roof of a barn, while a man stands on the truck holding a rope. Smoke\",\"A person is in the basket of crane on a roof of a barn, while a man stands on the truck holding a rope.\",Smoke,gold,see a black bench under the van next to the white van.,comes near a table.,see the boat ski through a city on a concrete road.,is in a jungle to other boys.,1\n9007,anetv_DkiJwIJQKaM,12332,A woman holding two Frisbee is standing over a dog. the dog,A woman holding two Frisbee is standing over a dog.,the dog,gold,throws the frisbee off the table.,and dog begin to clap for the dog.,is holding a leash from the leash.,runs around in a circle around the woman.,3\n9008,anetv_DkiJwIJQKaM,12333,The dog runs around in a circle around the woman. the woman and dog,The dog runs around in a circle around the woman.,the woman and dog,gold,keep laying on the floor.,continue to perform several tricks with frisbee.,continue performing with one another with the bow at the head.,help through and catch the calf.,1\n9009,anetv_DkiJwIJQKaM,15590,\"Person is holgding blue frisbees and is plying with a dog in a closed field, the doing tricks while is trying to catch the frisbee. the dog\",\"Person is holgding blue frisbees and is plying with a dog in a closed field, the doing tricks while is trying to catch the frisbee.\",the dog,gold,is riding in a green chair and there is a plucked off the hair.,holds a frisbee on his mouth and starts running around the girl doing tricks.,falls and the person is watching him throw the frisbee to the man who's standing in the wheels.,is standing on the snowy mountain and is going down a pile of sand.,1\n9010,anetv_Paj9y9YMSg0,15490,People are riding horses in a field. They,People are riding horses in a field.,They,gold,are jumping up and down.,are pulling behind the ropes.,run behind the stone.,are playing polo on horses.,3\n9011,anetv_Paj9y9YMSg0,15491,They are playing polo on horses. A person standing on the sidelines,They are playing polo on horses.,A person standing on the sidelines,gold,watching them is helping two little girls spin the monkey at a pinata.,hands another picture of the man in his red jacket.,waves a white flag.,is shooting or surfing.,2\n9012,anetv_HnCUykqco5M,817,A large group of people are seen moving along the river in a raft. Another group,A large group of people are seen moving along the river in a raft.,Another group,gold,is seen paddling by themselves as well as pausing to speak to the camera and walking on the bumpy.,continues walking around the water on the wake boards.,are seen down the rough water at the same time.,is seen riding along the river in front.,3\n9013,anetv_HnCUykqco5M,2317,Text speaks of an event that is coming up. Several people,Text speaks of an event that is coming up.,Several people,gold,start taking their stuff.,are standing holding a bull as a person runs a finger over the animal.,are sitting on rafts as they float gently down stream.,get in a roofed gym practicing drills.,2\n9014,anetv_HnCUykqco5M,2318,Several people are sitting on rafts as they float gently down stream. The people,Several people are sitting on rafts as they float gently down stream.,The people,gold,start snowboarding down a hill of snow.,\"hit the rapids hard, and begin paddling their way through.\",are also down and crashes as the water is taken above.,wipe their boards in the intense water.,1\n9015,anetv_HnCUykqco5M,818,Another group is seen riding along the river in front. The people,Another group is seen riding along the river in front.,The people,gold,swim around and laugh with one another as well as jumping off cliffs and riding their bodies down the river.,ride past one another with obstacles.,begin rowing canoes as he rides.,begin shoveling with others riding in front and ends with a man riding a skateboard down a mountain.,0\n9016,anetv_HnCUykqco5M,2319,\"The people hit the rapids hard, and begin paddling their way through. They\",\"The people hit the rapids hard, and begin paddling their way through.\",They,gold,continue to slide across the ocean.,continue to bow around the river in choppy water as a car closes up behind him.,are shown jumping off cliffs into the water before rafting again.,see a river near the river.,2\n9017,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10951,\"Someone stands still for a moment, gazing at himself. To his surprise, two shadowy figures gradually\",\"Someone stands still for a moment, gazing at himself.\",\"To his surprise, two shadowy figures gradually\",gold,\"appear in the mirror, standing one on each side of him.\",form the cluster of hundreds of cobwebs to spot it nervously.,appear in the ocean and a tube.,space the room.,0\n9018,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10954,\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone puts a hand on his own shoulder. His mother fondly\",\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone puts a hand on his own shoulder.\",His mother fondly,gold,sets someone up and gives him a loving smile.,kisses him gently.,takes aim and shoot off on the bus.,smiles at him again.,3\n9019,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10949,\"He stops in front of it, and tries to read the writing carved around the wooden frame. But the words\",\"He stops in front of it, and tries to read the writing carved around the wooden frame.\",But the words,gold,are strange and unfamiliar.,belong to someone in eight.,are written back from left.,are on it.,0\n9020,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10930,\"Then he puts the light down. As he takes down a book and opens it, a screaming face\",Then he puts the light down.,\"As he takes down a book and opens it, a screaming face\",gold,appears at the belt of sir someone's corpse.,appears with breathing apparatus.,is angry as he hears bored blood on his face.,burst violently out of the pages.,3\n9021,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10937,\"Hidden by the invisibility cloak, someone feels his way across the dark room. He\",\"Hidden by the invisibility cloak, someone feels his way across the dark room.\",He,gold,helps a section of the engineer rail up into the river.,\"stops for a moment, as someone passes by with his lantern.\",\"shifts his disgruntled gaze, then peers out at the apartment building.\",steps into the dark room where someone's helmet sits in his lap.,1\n9022,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10929,Someone takes off the cloak and holds the lantern closer to a shelf. Then he,Someone takes off the cloak and holds the lantern closer to a shelf.,Then he,gold,looks down cautiously into the solitary figure.,puts the light down.,gets up and turns to face someone.,takes the wooden blade through flared flame.,1\n9023,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10931,\"As he takes down a book and opens it, a screaming face burst violently out of the pages. Someone\",\"As he takes down a book and opens it, a screaming face burst violently out of the pages.\",Someone,gold,shuts the cell door behind him.,levitates along wood and hides.,slams the book shut.,\"facing slurps, he pulls a unit off the ground and snags her lying on the ground.\",2\n9024,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10927,\"Under the invisibility cloak, someone peers about him wearily. Inside, he\",\"Under the invisibility cloak, someone peers about him wearily.\",\"Inside, he\",gold,searches along more dark bookshelves.,uses his phone on the sofa below.,flies into the sunlight amid soaking debris.,disappears under the girder.,0\n9025,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10947,\"Through a stone arch, he glimpses a large mirror and a carved frame that goes down a few steps into the room beyond. As he walks slowly towards the mirror, he\",\"Through a stone arch, he glimpses a large mirror and a carved frame that goes down a few steps into the room beyond.\",\"As he walks slowly towards the mirror, he\",gold,steps into the camera and separates.,opens his legs and stands onto his side.,sees the black walking figure on his way up the stairs.,sees his own reflection getting closer.,3\n9026,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10921,\"Someone's snowy owl turns its head, as he leaps out of bed and puts on his spectacles. Down in the Gryffindor common room, someone\",\"Someone's snowy owl turns its head, as he leaps out of bed and puts on his spectacles.\",\"Down in the Gryffindor common room, someone\",gold,stares at his own body and nose.,is standing in front of a blazing fire.,swigs from a bottle's pill bottle.,falls off the before.,1\n9027,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10955,His mother fondly smiles at him again. Someone,His mother fondly smiles at him again.,Someone,gold,looks at her sadly.,looks up his face.,'s lingering hand caresses her crotch.,\"holds an inflated lantern, then leaves casually, leaning over a tree, holding a poles.\",0\n9028,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10953,\"Someone stretches out a hand towards them, but his fingers only touch his reflection in the glass. As his mother puts her hand on the shoulder of his reflection in the mirror, someone\",\"Someone stretches out a hand towards them, but his fingers only touch his reflection in the glass.\",\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone\",gold,wears his jumpsuit and strikes his body with the wrist stick.,puts a hand on his own shoulder.,\"pulls off her dress, revealing a sleeved shirt and panties.\",\"starts to pace, but does n't quite pulls him in.\",1\n9029,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10958,\"In the empty classroom, they take off the invisibility cloak. They\",\"In the empty classroom, they take off the invisibility cloak.\",They,gold,begin to sing as they enter the telegraph office.,struggle to guide someone into the passageway.,walk down a gangplank through the magnificent packed quidditch stadium.,run to the mirror.,3\n9030,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10928,\"Inside, he searches along more dark bookshelves. Someone\",\"Inside, he searches along more dark bookshelves.\",Someone,gold,attaches a cutting tool and two sharpening knives.,massages the electric cat's cage.,takes off the cloak and holds the lantern closer to a shelf.,studies it through chrome spray.,2\n9031,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10932,\"Someone slams the book shut. Grabbing his cloak, someone\",Someone slams the book shut.,\"Grabbing his cloak, someone\",gold,dodges by moving someone's hand.,grasps someone by the mouth.,knocks him out to the floor.,knocks over the lamp.,3\n9032,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10957,\"Someone pulls the cover off someone's bed. In the empty classroom, they\",Someone pulls the cover off someone's bed.,\"In the empty classroom, they\",gold,take off the invisibility cloak.,come into someone's apartment.,find someone asleep in his sleep.,find someone standing at a vacant central cubicle.,0\n9033,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10936,\"The lamp light shows up his thin lips. Hidden by the invisibility cloak, someone\",The lamp light shows up his thin lips.,\"Hidden by the invisibility cloak, someone\",gold,'s cold eyes gaze nervously through the narrow stained cheeks.,feels his way across the dark room.,stares at someone slowly.,joins someone's face in a walled window and hurry away from someone.,1\n9034,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10945,\"A door, in the far wall seems to open and close by itself. In the classroom next door, someone\",\"A door, in the far wall seems to open and close by itself.\",\"In the classroom next door, someone\",gold,reappears as he takes off the invisibility cloak.,tosses a book in revolving pencil.,\"enters the pizza with the briefcase of someone, who stands with him.\",is pointing at a crystal poster.,0\n9035,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10941,\"Someone makes a grab, but only snatches a hand full of air. Someone\",\"Someone makes a grab, but only snatches a hand full of air.\",Someone,gold,dives underneath the bar.,leans down and grabs the mace.,takes a step backwards.,\"runs with his heavy stick, trying to get the firewood.\",2\n9036,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10944,\"People rush away down the corridor. A door, in the far wall\",People rush away down the corridor.,\"A door, in the far wall\",gold,seems to open and close by itself.,\"passes a short window of someone completely broken, and forces people out over the courtyard, onto the floor floor.\",\"remains, can no one thing.\",\"is a battered old bearded man, first one from the corner.\",0\n9037,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10923,Someone runs bare foot down the stone stairs towards a pile of presents on the Christmas tree. Someone,Someone runs bare foot down the stone stairs towards a pile of presents on the Christmas tree.,Someone,gold,gently scraping buster's foot with a dainty hand.,flees off the sand.,blows on their entrance.,\"picks up a parcel, while someone dips into a box of every flavor beans.\",3\n9038,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10939,\"He breathes a sigh of relief, as the caretaker goes out through a far door way. Someone\",\"He breathes a sigh of relief, as the caretaker goes out through a far door way.\",Someone,gold,peers over the food.,\"scratches his tail, then waddles over to her grandmother at the edge of the stone entrance and down to her grave.\",\"and someone plays a second assortment of metal, sliding out beside him with a candle.\",\"creeps into a moon lit corridor, where someone's red - eyed cat is lurking.\",3\n9039,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10933,\"Grabbing his cloak, someone knocks over the lamp. He\",\"Grabbing his cloak, someone knocks over the lamp.\",He,gold,ducks back and retrieves the flame.,yanks out someone's weapon and moves his hand away.,walks past onto someone's pistol barrel and leaps to his feet.,quickly puts on the invisibility cloak over his head and disappears.,3\n9040,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10922,\"Down in the Gryffindor common room, someone is standing in front of a blazing fire. Someone\",\"Down in the Gryffindor common room, someone is standing in front of a blazing fire.\",Someone,gold,makes a little trying to win the movie.,sits up on a cigar that the lights have risen on the ground.,\"apparate in a dark rivers - lit with oak, buildings, etc.\",runs bare foot down the stone stairs towards a pile of presents on the christmas tree.,3\n9041,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10948,\"As he walks slowly towards the mirror, he sees his own reflection getting closer. He\",\"As he walks slowly towards the mirror, he sees his own reflection getting closer.\",He,gold,\"stops in front of it, and tries to read the writing carved around the wooden frame.\",gets an inch from her husband's cheek.,\"tosses the large portico to the vent, and goes the other way.\",awakes down in a courtyard to the couch on the porch.,0\n9042,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10946,\"In the classroom next door, someone reappears as he takes off the invisibility cloak. The moon light, filtering through the snow on the window panes,\",\"In the classroom next door, someone reappears as he takes off the invisibility cloak.\",\"The moon light, filtering through the snow on the window panes,\",gold,stares down into the night between buildings.,gives the empty classroom a mysterious air.,sits in the dusty flat.,hangs by a hedge and staring at the others.,1\n9043,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10950,But the words are strange and unfamiliar. Someone,But the words are strange and unfamiliar.,Someone,gold,\"comes briefly and presses his lips together, then throws someone's crotch down.\",\"stands still for a moment, gazing at himself.\",gets out of the bed where someone was sitting on the car.,holds only three feet.,1\n9044,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10926,\"In the library, a floating hand carries a lantern between the bookshelves. Under the invisibility cloak, someone\",\"In the library, a floating hand carries a lantern between the bookshelves.\",\"Under the invisibility cloak, someone\",gold,carries onto a stretcher.,rides a dark figure past the front door.,peers about him wearily.,dances into the back too.,2\n9045,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10924,He puts down the letter and unties the string on the parcel. He,He puts down the letter and unties the string on the parcel.,He,gold,\"unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern.\",\"awakens, then creeps stands and touches the back of the baby's cap along with the brush.\",walks back to the cabinet for the book and withdraws.,leaves and finds rustling glisten in the floorboards.,0\n9046,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10938,\"He stops for a moment, as someone passes by with his lantern. He\",\"He stops for a moment, as someone passes by with his lantern.\",He,gold,picks up a large flaming torch.,\"runs through the trees, picks up his rucksack and starts across the lawn toward her apartment.\",\"chucks his flashlight aside, then looks down at his cellphone on his desk.\",\"breathes a sigh of relief, as the caretaker goes out through a far door way.\",3\n9047,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10942,Someone takes a step backwards. Someone,Someone takes a step backwards.,Someone,gold,springs up and stumbles.,points about his body to the shield.,bounces off his wrists and swings at the thumper post knocking someone over.,turned sharply back to someone.,3\n9048,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10952,\"Someone turns, but the room behind him is completely empty. He\",\"Someone turns, but the room behind him is completely empty.\",He,gold,\"slides a backpack up to someone's head, shaking his brow for a moment.\",\"across the street, he rests his hands on his shoulders, closing the door, then goes back to the locker room.\",tries to explode himself all around the room and leaps in the other way.,\"looks back at the pretty young woman, and swallows nervously.\",3\n9049,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10934,\"He quickly puts on the invisibility cloak over his head and disappears. Someone, the caretaker,\",He quickly puts on the invisibility cloak over his head and disappears.,\"Someone, the caretaker,\",gold,runs in with her and cuffs someone with the shield.,is unable to rise.,holds up a lantern.,leaves his house and the tree is undamaged.,2\n9050,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10943,Someone turned sharply back to someone. People,Someone turned sharply back to someone.,People,gold,rush away down the corridor.,\", with him standing against the door, glances at the others, as they stare at the exam table.\",take off where the kids were.,\"and someone trade share a look, and savagely fly until they are wearing a cheerful blue mask.\",0\n9051,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10925,\"He unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern. Someone\",\"He unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern.\",Someone,gold,swings it on to his shoulders.,\"continues to blow until he is done, the video fades screen for some reason.\",\"'s name, the love, is a lightly on a heart of someone's heart.\",\"holds up his thumb, then at the art.\",0\n9052,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10956,Someone looks at her sadly. Someone,Someone looks at her sadly.,Someone,gold,pulls the cover off someone's bed.,is wide - eyed and smitten.,sits on someone's back.,steps two from beside her former executive.,0\n9053,anetv_UYGiq0CsYEs,18151,A man performs on stage standing and playing a drum set while singing. The crowd,A man performs on stage standing and playing a drum set while singing.,The crowd,gold,continues dancing and another man in the blue shirt watches from the bed.,claps for a crowd as people applaud.,\"claps for the audience, while the rest of the audience greet the man behind him.\",waves their hands in the air.,3\n9054,anetv_UYGiq0CsYEs,18693,He appears to be singing at the same time. A bright light,He appears to be singing at the same time.,A bright light,gold,is coming from the window.,runs out from the artificial lake where he is sitting on a grave.,fills the air as someone walks along to the front door and looks out to the floor.,shines from behind him.,3\n9055,anetv_UYGiq0CsYEs,18691,A man is standing at a microphone in front of a crowd. He,A man is standing at a microphone in front of a crowd.,He,gold,is playing the drums on stage.,is wearing a blue shirt and purple hat.,continues by cutting the grass.,spins around in the air.,0\n9056,anetv_UYGiq0CsYEs,18692,He is playing the drums on stage. He,He is playing the drums on stage.,He,gold,lifts his legs as to go over the room.,plays the guitar several times.,\"walks around the darkness, some laughing.\",appears to be singing at the same time.,3\n9057,anetv_QuEHZ2Y3H40,12073,A close up of a wave is shown leading into a woman surfing. More clips,A close up of a wave is shown leading into a woman surfing.,More clips,gold,are shown of people surfing on the lake.,are shown of people paddling in surf rafts as the boats listen to their paddles.,are shown of people surfing as well as swimming in the ocean.,are shown of various people jumping up and down rocks.,2\n9058,anetv_QuEHZ2Y3H40,12074,More clips are shown of people surfing as well as swimming in the ocean. The,More clips are shown of people surfing as well as swimming in the ocean.,The,gold,dolphins walk in and out of frame.,continue surfing around the water and swimming underneath.,bounce in the water as the camera pans to show the floor.,rafters ride down the river.,1\n9059,anetv_QuEHZ2Y3H40,18989,People are swimming under the water. A woman,People are swimming under the water.,A woman,gold,is seen standing on skis in front of a river.,is sitting in a lake.,holds out a rock to use and begins pulling ice out.,surfs on a yellow surf board.,3\n9060,lsmdc3023_DISTRICT_9-10785,11097,\"He opens the door for the little one to go out. Outside their doorway, the little alien\",He opens the door for the little one to go out.,\"Outside their doorway, the little alien\",gold,is still tearing off the cage mountain with pulling horrible out of it.,takes his phone onto the bed and shuts it.,plays with an empty cat food can.,hands the gun back to someone and shoots.,2\n9061,lsmdc3023_DISTRICT_9-10785,11098,He throws the alien child a candy. The child,He throws the alien child a candy.,The child,gold,loses and returns it to the little boy.,swoops down to stop dead.,\"runs towards them, but people no one.\",throws it back in his face.,3\n9062,lsmdc3023_DISTRICT_9-10785,11099,The child throws it back in his face. Someone,The child throws it back in his face.,Someone,gold,lowers the covers from his mouth.,aims his shotgun at the kid.,grabs his hand and someone cracks him from the mushrooms.,\"looks on for himself, breathing hard.\",1\n9063,anetv_5K-soRkdGDs,14834,\"A dog is shown running up steps to a building. They go inside, and it\",A dog is shown running up steps to a building.,\"They go inside, and it\",gold,gets into yellow leap.,is tackled by a matador.,jumps on the ladder.,'s a dog grooming salon.,3\n9064,anetv_5K-soRkdGDs,14835,\"They go inside, and it's a dog grooming salon. Several signs in another language\",\"They go inside, and it's a dog grooming salon.\",Several signs in another language,gold,appears on screen whom she talks about what she did after they were done.,are shown before the equipment is turned on.,\"appears, with a petite man of haircut, clippers, a well dressed man.\",appears include a dog and make a celery leash that makes the dog three grooming.,1\n9065,lsmdc0051_Men_in_black-70927,8574,\"Someone whirls around to see someone 'body, growing another head. Someone\",\"Someone whirls around to see someone 'body, growing another head.\",Someone,gold,grabs his guitar from behind and sends someone's picture.,has consumed his courage at it and does n't limps for the moment.,bounds down the stairs but finds more estate behind.,\"raises the weapon again, threatening.\",3\n9066,lsmdc0051_Men_in_black-70927,8570,\"At the sound of someone's voice, someone suddenly pales, a look of fear coming over his face. He\",\"At the sound of someone's voice, someone suddenly pales, a look of fear coming over his face.\",He,gold,pulls his own gun and aims it at someone 'forehead.,returns to the office building where three prisoners huddle together in a hallway.,is unable to slide him down.,lowers the binoculars to his own.,0\n9067,lsmdc0051_Men_in_black-70927,8573,Someone pulls his own weapon and points it at someone's head. Someone,Someone pulls his own weapon and points it at someone's head.,Someone,gold,\"looks into someone's white notebook, much more to himself.\",\"whirls around to see someone 'body, growing another head.\",slides down the barrel.,puts a ring on his jaw and his chest heaves.,1\n9068,lsmdc0051_Men_in_black-70927,8572,\"Someone, seeing that someone is getting somewhere, joins in the routine. someone blows someone 'head off and someone' body\",\"Someone, seeing that someone is getting somewhere, joins in the routine.\",someone blows someone 'head off and someone' body,gold,tries to block his way.,collapses to the floor.,turns around the nappy.,begins to touch with laughter.,1\n9069,lsmdc0051_Men_in_black-70927,8569,Someone opens the door and gets out of the car. They,Someone opens the door and gets out of the car.,They,gold,knock the snow off the ground.,bump to open the door.,get out of the car.,look over at someone.,2\n9070,lsmdc0051_Men_in_black-70927,8575,\"Someone raises the weapon again, threatening. Someone\",\"Someone raises the weapon again, threatening.\",Someone,gold,\"nods, point taken.\",creep alongside his cells.,turns heading towards someone's car standing straight ahead to the left.,looks down at the pasta in front of someone.,0\n9071,anetv_G9m5zxl2f08,18371,A person is seen putting their hands in a sink full of dirty water and pressing his face up against the water. The man,A person is seen putting their hands in a sink full of dirty water and pressing his face up against the water.,The man,gold,continues wiping the mud off of his face as the mud drips down into the sink.,continues washing powder in the sink with a towel then rubs it down under the sink and wipes it on the side.,wipes his face and wipes his face with a rag then runs his hair over his face while looking off into the distance.,rinses off the soap and pulls onto the brush on a toothbrush followed by a piercer afterwards.,0\n9072,lsmdc1011_The_Help-78540,2033,\"She burst through the bathroom door and finds someone sitting in a pool of blood. Hastily picking up the fallen towel rack, someone\",She burst through the bathroom door and finds someone sitting in a pool of blood.,\"Hastily picking up the fallen towel rack, someone\",gold,calmly takes in the situation.,comes back to her father.,slaps it and dances wildly.,grasps it and ironed his shirt.,0\n9073,anetv_EoQgUlLb3U4,3294,The man throws the discus really hard. The man,The man throws the discus really hard.,The man,gold,watches ahead after his discus.,flexibility platinum the talked dna contain his.,shows the sparks from anh to.,goes between the ball and hits it.,0\n9074,anetv_EoQgUlLb3U4,3293,\"A man turns his body around, preparing to throw his discus. The man\",\"A man turns his body around, preparing to throw his discus.\",The man,gold,throws the discus really hard.,turns them around and ends with credits rolling.,throws discus and mimes flying back and forth as they jump into the air.,continues throwing and ends by shaking cups.,0\n9075,anetv_Z8yKTJeRMOE,11606,\"A man professionally paints several pieces of furniture using a spray painter in a paint shop while wearing overalls, a denim shirt and a paint mask. The man\",\"A man professionally paints several pieces of furniture using a spray painter in a paint shop while wearing overalls, a denim shirt and a paint mask.\",The man,gold,forms a mustache of green polish and screws the etched substance over his face.,\"talks, then dry and shows how to wrap a box.\",\"sits at a keyboard outside the car, talking as he opens the drawer while the light crashed on the machine.\",begins by painting a wooden armchair metallic gray with a gold spray paint can.,3\n9076,anetv_Z8yKTJeRMOE,11608,The man then paints a side table black with lights shining off of the black painted wood. The man,The man then paints a side table black with lights shining off of the black painted wood.,The man,gold,uses an orange paint brush to rub the skin all along the wooden block.,ends with painting a dresser drawer pink before the scene fades to a black marketing graphic.,starts cutting the grass with a long torch.,continues to paint around the men.,1\n9077,anetv_Z8yKTJeRMOE,11607,The man begins by painting a wooden armchair metallic gray with a gold spray paint can. The man then,The man begins by painting a wooden armchair metallic gray with a gold spray paint can.,The man then,gold,sands that way on the driveway and applies powdered cream all over it.,scrubs the glitter the dog several points to the camera while other man watches him showcase.,demonstrates how to apply the mud left part out on the paint pipe.,paints a side table black with lights shining off of the black painted wood.,3\n9078,anetv_99A2KqvfBLI,10009,The keyboardist plays a spirited solo during the song. The man,The keyboardist plays a spirited solo during the song.,The man,gold,plays the band as the band plays.,congratulates and gives a high five to the keyboardist at the end of the song.,looks up into the air.,turn to throw for the camera.,1\n9079,anetv_99A2KqvfBLI,10008,A man walks onto the stage to join a band. A man,A man walks onto the stage to join a band.,A man,gold,plays up front of a band with a harmonica.,steps on stage and drinks straight from the drumsticks.,stands in a crowd and dismounts.,performs on the green in front of a crowd of judges.,0\n9080,lsmdc1001_Flight-71882,15183,\"Still wearing his tie, his shirt's sleeves rolled up. He\",\"Still wearing his tie, his shirt's sleeves rolled up.\",He,gold,boy does a wheelie in his direction and his new tricks as he passes in the traffic.,sits down and lifts his hands up to his chest.,\"jumps off a ladder and hustles over to someone, kissing her.\",glares at her mom first.,2\n9081,lsmdc1001_Flight-71882,15181,\"He takes someone's hands. Later at someone's family farm, someone\",He takes someone's hands.,\"Later at someone's family farm, someone\",gold,\"emerges on a labeled, machine - coaster bike.\",sees the lights on in the hangar.,lies a table covered in a stuffed alligator.,\"stands on a bread stand, smoking a cigarette in his hand, sniffing around his teeth.\",1\n9082,lsmdc1001_Flight-71882,15180,Someone's eyes dart up and down. He,Someone's eyes dart up and down.,He,gold,jumps them as it loops around his waist.,finds something under a t - shirt.,takes someone's hands.,glances back at someone and shakes her head.,2\n9083,lsmdc1001_Flight-71882,15182,\"Later at someone's family farm, someone sees the lights on in the hangar. Someone\",\"Later at someone's family farm, someone sees the lights on in the hangar.\",Someone,gold,brings someone's car to a halt beside one.,leans over the cessna.,turns her pursue gloves and slowly climbs onto a narrow river in a pit.,swigs the papers from someone sitting on her desk.,1\n9084,anetv_VLmZ3M3wSbo,5919,He drops the lens on the sink and again tries to put the contact into his eye. He,He drops the lens on the sink and again tries to put the contact into his eye.,He,gold,checks his watch then puts on her glasses and gives the doctor a aspiring look.,places the shaving brush on the lathered again and shaves his lip.,puts his hand on the side to stop the lens.,drops the lens again and continues trying to put it into his eye and the camera moves around in the end.,3\n9085,anetv_VLmZ3M3wSbo,5918,A young man is seen holding his eye open in front of a mirror and attempting to put a contact lens in. He,A young man is seen holding his eye open in front of a mirror and attempting to put a contact lens in.,He,gold,\"someone goes to the camera for a very moment, showing himself checking out the various thing that he is missing.\",stops and takes a shot.,points to the camera.,drops the lens on the sink and again tries to put the contact into his eye.,3\n9086,anetv_1517CiM5c0A,2928,Several people stand on the street. They,Several people stand on the street.,They,gold,are then shown playing the cymbals while dancing.,float down with the children in the background.,are playing instruments together.,run on chasing a ball.,2\n9087,anetv_1517CiM5c0A,7887,A main with a small video camera shoots footage of the musical group. One of the men in the group,A main with a small video camera shoots footage of the musical group.,One of the men in the group,gold,continues to try to wrestle while he ropes several more more.,walks away from the group to talk to a man who is at a yellow table and points something out on the table.,makes their way down the aisle of the goal center bridge.,speaks to another man with bows hanging from his lap.,1\n9088,anetv_1517CiM5c0A,7886,A native american tribe are on the street in full native dress playing woodwind instruments in front of shops as people walk by on the sidewalk. A main with a small video camera,A native american tribe are on the street in full native dress playing woodwind instruments in front of shops as people walk by on the sidewalk.,A main with a small video camera,gold,leads the entrance of an outdoor outdoor street.,is seen from the screen.,shoots footage of the musical group.,shows the judges wit in various sports as well approaches the pommel and narrates it.,2\n9089,anetv_1517CiM5c0A,2929,They are playing instruments together. A man,They are playing instruments together.,A man,gold,is video taping them.,is seen playing a record on the sidewalk.,talks to the camera while a band is playing for music.,wearing a white shirt is playing wall pipes.,0\n9090,anetv_2Ua6E2a6kT4,14621,A man is seen speaking to the camera while standing out in a back yard. He,A man is seen speaking to the camera while standing out in a back yard.,He,gold,is then shown cleaning products onto his mower while he combs along the sides.,pans to a man spraying down a fence with a hose and another man watching on the side.,uses a towel around the dog while speaking to the camera.,mixes it together with several clips of him playing forward back and laughing.,1\n9091,anetv_2Ua6E2a6kT4,14622,He pans to a man spraying down a fence with a hose and another man watching on the side. The man,He pans to a man spraying down a fence with a hose and another man watching on the side.,The man,gold,cleans the snow all around the car.,uses his feet to push along the moving wall and runs around afterwards.,continues moving the tires along the fence while using a tool to scrape down.,continues to spray down the hose while another watches on the side and pans back to the camera man.,3\n9092,lsmdc1031_Quantum_of_Solace-84359,4783,Cia agent someone watches from a sofa. They,Cia agent someone watches from a sofa.,They,gold,look down from a stone balustrade.,walk out of a blazing truck.,look dark and increasingly nervous as they pass behind the urns and buzz up.,follow him around the hallway.,0\n9093,anetv_M6O-QNDUdwU,16689,\"Several swimmers walk past each other, shaking hands. They\",\"Several swimmers walk past each other, shaking hands.\",They,gold,\"gather in the pool, then engage in a game of water polo.\",stand at balance with guns on their feet.,are practicing on with their swords.,continue to surf in toward the soccer man.,0\n9094,anetv_M6O-QNDUdwU,16690,\"They gather in the pool, then engage in a game of water polo. They\",\"They gather in the pool, then engage in a game of water polo.\",They,gold,\"hit the ball back and forth, trying to get it into the net.\",turn on as the others start to celebrate.,feast and people are practicing different colors.,ride the ski surfboard and swim towards the shore.,0\n9095,anetv_Imui46JTe7s,16085,We then see a man talking to the camera and sitting and laying on a exercise ball. The man,We then see a man talking to the camera and sitting and laying on a exercise ball.,The man,gold,performs sits ups while on the ball and talking.,walks in front and hands us a tattoo casually.,walks over to the box and uses it to perform the number.,\"shoots the tool again, catches it again, demonstrating how to properly lay it down again.\",0\n9096,anetv_Imui46JTe7s,16084,We see a fitness center sign. We then,We see a fitness center sign.,We then,gold,see a man talking to the camera and sitting and laying on a exercise ball.,see the bungee jump on a lift and a person in a panic stand laying on the ground as a performer hops on deck.,see the bus where a group of people start to sail on a river in a lake.,see several boys jumping up on the trampoline while one man begins wetting their hand.,0\n9097,anetv_Imui46JTe7s,16086,The man performs sits ups while on the ball and talking. The man,The man performs sits ups while on the ball and talking.,The man,gold,throws the woman up in the air and walks away.,continues to move his fencing fencer while the men watch or demonstrate.,sits up and talks to the camera.,lifts the weight and raises it in the air.,2\n9098,anetv__dLbtK8_SHo,2841,The player is shuffling behind the net and turning the racquet upside down in between the shots. Then the players,The player is shuffling behind the net and turning the racquet upside down in between the shots.,Then the players,gold,continue playing receiving the red score and show their team mates.,demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls.,continue competing to pass it around for team mates.,hit in the goalie and return to the players without hitting the ball again.,1\n9099,anetv__dLbtK8_SHo,2840,There are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner. The player,There are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner.,The player,gold,is shuffling behind the net and turning the racquet upside down in between the shots.,yells about the teammate and is carefully torn away by throwing a ball through the turkish arm.,\"hit the ball with his racket, send down basket blocks for the winning team.\",starts playing the racket with an electric tool raised in his hands.,0\n9100,anetv__dLbtK8_SHo,2842,Then the players demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls. The player,Then the players demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls.,The player,gold,walked with the coach and the coach took a dive in the empty bowls.,continues move on the cards to show how to properly hit the ball in the locker room.,spins around and ends by chasing the ball around the net in the end.,bounces the ball back with the tip of the racquet handle.,3\n9101,anetv__dLbtK8_SHo,2839,The video is about a tennis tutorial and drill by Edgar Giffenig. There,The video is about a tennis tutorial and drill by Edgar Giffenig.,There,gold,are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner.,are about what they previously do.,explains it showing random techniques on how to properly serve the balls during perfect stunts.,is tea dishes in the main room of the pool.,0\n9102,anetv_8j75QYV-iCg,268,A young girl in a yellow outfit poses with a baton. She,A young girl in a yellow outfit poses with a baton.,She,gold,takes her dancing and singing.,\"begins to dance, twirling the baton as she goes.\",\"pushes several hoop onto her shoulders, twirl, does cartwheels around it as if she were doing hesitates.\",grabs her baton.,1\n9103,anetv_8j75QYV-iCg,270,\"The girl spins, sits, slides, and twirls as she performs. She\",\"The girl spins, sits, slides, and twirls as she performs.\",She,gold,kicks it in the air.,\"clenches the sash around her teeth, turns her around, and runs off with the arms of a lair.\",falls to the ground in a pose and smiles as she finishes.,ends - - a last and colorful print shows explodes upward - - lots more speed.,2\n9104,anetv_8j75QYV-iCg,269,\"She begins to dance, twirling the baton as she goes. The girl\",\"She begins to dance, twirling the baton as she goes.\",The girl,gold,stops and claps her hands as she finishes and claps.,begins to belly dance in her room.,\"spins, sits, slides, and twirls as she performs.\",performs flip - flips off the trampoline.,2\n9105,anetv_J3qC2hqRhPc,16426,Elmo pulls out a toothbrush and begins dancing while Bruno Mars appears brushing his teeth on the mirror. Elmo,Elmo pulls out a toothbrush and begins dancing while Bruno Mars appears brushing his teeth on the mirror.,Elmo,gold,\"sure he stays seated, speaks very softly.\",uses a toothpaste brush on the tap.,enjoys course and he just laughs at the camera and says to help him.,is singing along as bruno mars continues to brush his teeth and the multicolored lights on the mirror flicker.,3\n9106,anetv_J3qC2hqRhPc,16425,Elmo from Sesame Street is presenting how to brush teeth along with singer Bruno Mars. Elmo,Elmo from Sesame Street is presenting how to brush teeth along with singer Bruno Mars.,Elmo,gold,recovers a little of the paintbrushes and slowly tugs on it next.,the video shows she's grabbing the toes a shoe when she is so done.,has a sharp look on the direction of the statement.,pulls out a toothbrush and begins dancing while bruno mars appears brushing his teeth on the mirror.,3\n9107,anetv_J3qC2hqRhPc,16427,Elmo is singing along as Bruno Mars continues to brush his teeth and the multicolored lights on the mirror flicker. Elmo and Bruno Mars,Elmo is singing along as Bruno Mars continues to brush his teeth and the multicolored lights on the mirror flicker.,Elmo and Bruno Mars,gold,sit at a instrument on a portable that makes a drip.,continue to dance along as they teach little kids the importance of brushing teeth.,demonstrate both martial arts.,appear to intervals across the screen as the white breathing continues.,1\n9108,lsmdc3014_CAPTAIN_AMERICA-5712,11941,\"An explosion inside the chamber blows out the glass and sends someone and the engineer flying backward across the room. At headquarters, someone\",An explosion inside the chamber blows out the glass and sends someone and the engineer flying backward across the room.,\"At headquarters, someone\",gold,\"and the gang of men try to free themselves, but he loses his grip on someone.\",talks colonel 50 distance away on an am.,fires bowling off a shelf - ground with no one can touch.,approaches a blonde woman reading a newspaper.,3\n9109,lsmdc3014_CAPTAIN_AMERICA-5712,11939,\"In a lab, someone examines a glowing blue pellet. Shielded behind a blast screen, someone\",\"In a lab, someone examines a glowing blue pellet.\",\"Shielded behind a blast screen, someone\",gold,spies someone wading the fifth floor.,sees a form from a cabinet.,uses mechanical claws to touch a wire to the glowing pellet.,dodges a cartoon agent.,2\n9110,lsmdc3014_CAPTAIN_AMERICA-5712,11947,She grabs his tie and pulls him behind a bookcase. She,She grabs his tie and pulls him behind a bookcase.,She,gold,climbs out from the bedroom window and into the toilet.,pulls him closer and kisses him.,watch a twelve - year - old woman behind her.,takes a sharp peck around his sides.,1\n9111,lsmdc3014_CAPTAIN_AMERICA-5712,11948,She pulls him closer and kisses him. Someone,She pulls him closer and kisses him.,Someone,gold,leans over someone and stares off.,nods then gives him a doleful look.,walks up behind them.,grabs someone and kisses him repeatedly and then walks away.,2\n9112,lsmdc3014_CAPTAIN_AMERICA-5712,11946,The woman sashays to someone who folds his arms and glances away. She,The woman sashays to someone who folds his arms and glances away.,She,gold,grabs his tie and pulls him behind a bookcase.,grips the revolver at his chest.,accepts the shower towards her.,fires as he emerges under the suit.,0\n9113,lsmdc3014_CAPTAIN_AMERICA-5712,11940,\"Shielded behind a blast screen, someone uses mechanical claws to touch a wire to the glowing pellet. An explosion inside the chamber\",\"Shielded behind a blast screen, someone uses mechanical claws to touch a wire to the glowing pellet.\",An explosion inside the chamber,gold,spreads the mist with gleaming and snakes.,becomes very orderly and squeezed out.,activates someone with a flame.,blows out the glass and sends someone and the engineer flying backward across the room.,3\n9114,lsmdc3014_CAPTAIN_AMERICA-5712,11942,\"At headquarters, someone approaches a blonde woman reading a newspaper. Someone\",\"At headquarters, someone approaches a blonde woman reading a newspaper.\",Someone,gold,approaches the front of the station.,still does n't give up.,\"hops onto a bench and approaches someone, who stands behind the closing partition.\",nods and stands with his hands behind his back.,3\n9115,lsmdc3014_CAPTAIN_AMERICA-5712,11943,Someone nods and stands with his hands behind his back. The woman,Someone nods and stands with his hands behind his back.,The woman,gold,pulls out of the parking lot and a man walks up a ladder outside a daybreak gate.,looks up from her paper and smiles at him.,takes off his jacket.,'s hand picks up the basin as water pours between her legs.,1\n9116,lsmdc3014_CAPTAIN_AMERICA-5712,11944,\"As someone leans against the table, the woman holds up her newspaper, 400 Prisoners Liberated. The secretary\",\"As someone leans against the table, the woman holds up her newspaper, 400 Prisoners Liberated.\",The secretary,gold,makes her way to the chaise lounge.,opens a tumbler on the table as she offers a tender look.,continues along and disbelieving the offer.,flexes the foot of her crossed - leg as she eyes someone.,3\n9117,lsmdc3014_CAPTAIN_AMERICA-5712,11945,The secretary flexes the foot of her crossed - leg as she eyes someone. The woman,The secretary flexes the foot of her crossed - leg as she eyes someone.,The woman,gold,sashays to someone who folds his arms and glances away.,turns the key to the bathroom.,faces someone and raises her arms and points at the mirror.,listens remorsefully and runs her hands over her beaded sweep hair.,0\n9118,anetv_bh6VHVHMoo8,6279,A man in a blue shirt kneels on the ground and slowly pulls a weight. The camera,A man in a blue shirt kneels on the ground and slowly pulls a weight.,The camera,gold,moves underneath the back of the bars.,is repeated again with the little action.,pans right to the front of the man.,pans around a man on the cardio machine.,2\n9119,anetv_bh6VHVHMoo8,6280,The camera pans right to the front of the man. We,The camera pans right to the front of the man.,We,gold,see various sitting up screens.,see a lady in the background working our on her knees.,see the man see the mans throw.,see the man with the handles on a front.,1\n9120,anetv_bh6VHVHMoo8,6281,We see a lady in the background working our on her knees. The ending title screen,We see a lady in the background working our on her knees.,The ending title screen,gold,displays a text intro advertising the job.,has a website on it.,appears on a fifth screen.,appears with people on screen.,1\n9121,anetv_bh6VHVHMoo8,3837,The man is kneeling on a board. The man,The man is kneeling on a board.,The man,gold,lifts the weights to his head.,gently rolls the handlebar and ties it around and secures him with the handcuff handle while stopping.,jumps up next to a trampoline.,releases the silver cable.,3\n9122,anetv_bh6VHVHMoo8,3836,The man pulls the silver cable toward him. The man,The man pulls the silver cable toward him.,The man,gold,works for the dictaphone.,clears and backs away from the kayak and hooks it on the tarp.,is kneeling on a board.,stands on the roof of the boat.,2\n9123,anetv_bh6VHVHMoo8,6278,There is an opening title screen with words. A man in a blue shirt,There is an opening title screen with words.,A man in a blue shirt,gold,is playing rock paper out.,kneels on the ground and slowly pulls a weight.,plays a walking stick.,plays a game on how to properly throw them onto the screen interspersed with the video shown.,1\n9124,anetv_wjcCl0jPxO4,19197,An aesthetician is talking about skin care routines and giving tips on how to keep facial skin clean. The model,An aesthetician is talking about skin care routines and giving tips on how to keep facial skin clean.,The model,gold,washes her face and then dabs it dry gently with a towel.,veterinarian holds the pan to the first time showing other different other location when he was done.,is wearing against the inside of machine gun fire.,is using a shaver and tutorial assignment way to draw an image of the kid's hair using the other title and elongated brush.,0\n9125,anetv_wjcCl0jPxO4,19196,There's a woman in a maroon shirt washing her face in the sink. An aesthetician,There's a woman in a maroon shirt washing her face in the sink.,An aesthetician,gold,is taking a pack of tissue paper from the sink.,is talking about skin care routines and giving tips on how to keep facial skin clean.,is standing on the sidewalk beside her.,gets shot on the tile behind her.,1\n9126,anetv_9PqYL4zTnxY,10939,\"A woman is in a driveway, doing tricks and stunts as she jumps rope. She\",\"A woman is in a driveway, doing tricks and stunts as she jumps rope.\",She,gold,pauses on the same side of the research board where the track is shown in a close up.,\"increases speed, then stops as a man approaches her to discuss her technique.\",takes a few turns and walks out of the ropes in park.,wraps a towel around her leg and holds her up.,1\n9127,anetv_9PqYL4zTnxY,10940,\"She increases speed, then stops as a man approaches her to discuss her technique. She then\",\"She increases speed, then stops as a man approaches her to discuss her technique.\",She then,gold,\"jumps up and down, and flips over the rapidly.\",seems to go through a routine and continues against what to do about what they do.,\"returns to demonstrating how to jump rope, and the various names of the moves.\",sits gracefully on the mat for a while and straightens up.,2\n9128,lsmdc3049_MORNING_GLORY-23566,16196,A guy delivers a note to someone. She,A guy delivers a note to someone.,She,gold,glances disapprovingly at someone.,bows and faces him.,hands another man in.,kisses her back and leaves.,0\n9129,anetv_ybF4RykZxK8,3225,A man is seen riding down on a skateboard while the camera follows his movements. The man,A man is seen riding down on a skateboard while the camera follows his movements.,The man,gold,continues riding back and fourth while a camera captures them from behind.,continues to unload the bike with people standing behind him.,skates around the street through obstacles and down the street.,continues running over and over while number one is shown again and continues riding.,2\n9130,anetv_ybF4RykZxK8,3226,The man skates around the street through obstacles and down the street. More people,The man skates around the street through obstacles and down the street.,More people,gold,are seen running around the area as well as falling in and off the side.,arrive together to them and back again.,walk underneath as well as the camera panning around the street.,continue riding down the street while the camera follows them.,3\n9131,anetv_AR6_PW1um-I,2006,A man with shades on rolls around on two longboards. White text,A man with shades on rolls around on two longboards.,White text,gold,appears on the screen as two.,is seen at the bottom of the screen.,appears on the screen and is filming.,appear on the screen showing the same man bowling.,1\n9132,anetv_AR6_PW1um-I,2005,A man with a helmet and a longbord walks ahead as he helps the girl in the roller blades get across grass. The girls,A man with a helmet and a longbord walks ahead as he helps the girl in the roller blades get across grass.,The girls,gold,start to get to the bottom of the diving board at the end of the rink.,hold a blue parka and reach out to flatten it with each hand.,approach to acknowledge the younger woman as he steps on the lawn.,skates around in the parking lot as the man helps her move and with balance.,3\n9133,anetv_AR6_PW1um-I,18206,She joins a man on a skateboard. Together they,She joins a man on a skateboard.,Together they,gold,perform various stunts on their equipment.,ride bikes back on a road board passing the same hoola pattern by their bikes.,skateboard into several other cars.,photograph the brunette woman as they game.,0\n9134,anetv_AR6_PW1um-I,2004,A black screen appears with white letters. A man with a helmet and a longbord,A black screen appears with white letters.,A man with a helmet and a longbord,gold,walks ahead as he helps the girl in the roller blades get across grass.,- old man is sitting in a chair doing a timer.,waits on the outside hill.,explains how to sharpen the knife.,0\n9135,anetv_AR6_PW1um-I,2003,A man and a woman are at a parking lot as the woman is learning how to roller blade. A black screen,A man and a woman are at a parking lot as the woman is learning how to roller blade.,A black screen,gold,appears with a yellow intro of her working on a bicycle.,appears with white letters.,appears in the background.,appears with a blue backdrop in gold and green and green.,1\n9136,anetv_AR6_PW1um-I,18205,A woman is wearing a pair of inline skates. She,A woman is wearing a pair of inline skates.,She,gold,turns around and starts walking around the field.,joins a man on a skateboard.,makes a third call.,slides along a coat rack behind the closed areas.,1\n9137,anetv_AR6_PW1um-I,2007,White text is seen at the bottom of the screen. The man on the longboard and the girl in the inline skates,White text is seen at the bottom of the screen.,The man on the longboard and the girl in the inline skates,gold,roll around in the parking lot.,spinning spinning and throwing a ball.,is a tube under his nipple.,walks past trying to stay upright.,0\n9138,lsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5835,\"As the four white horses come to a halt, the footman comes over to open the carriage door and help someone out. Briefly greeting the children, someone\",\"As the four white horses come to a halt, the footman comes over to open the carriage door and help someone out.\",\"Briefly greeting the children, someone\",gold,\"hurries inside, where someone has come to meet her.\",takes out a photo of himself and guides her to a centaur at the front of the church line.,\"sees someone, his face sad - faced, handheld stating about the activity by his client.\",crosses to the bars.,0\n9139,lsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5834,\"They quickly hurry over to greet it. As the four white horses come to a halt, the footman\",They quickly hurry over to greet it.,\"As the four white horses come to a halt, the footman\",gold,backs up and motions them off.,comes over to open the carriage door and help someone out.,\"steps out of one of the lifeboats but moves forward, looking toward the audience.\",reach the floor and look up.,1\n9140,lsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5832,\"With a look of utter contempt, someone leaves the room. At Longbourn, the people 'four children\",\"With a look of utter contempt, someone leaves the room.\",\"At Longbourn, the people 'four children\",gold,\"gaze skywards, down on them, moving quickly.\",are keeping their noses on someone's white house.,are playing on the lawn when the carriage pulls into the driveway.,sit at a table at their apartment.,2\n9141,lsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5833,\"At Longbourn, the people 'four children are playing on the lawn when the carriage pulls into the driveway. They quickly\",\"At Longbourn, the people 'four children are playing on the lawn when the carriage pulls into the driveway.\",They quickly,gold,\"do the same, they are in the dorm, looking nervously at each other.\",get back onto the dance floor.,hurry over to greet it.,shut out the lights.,2\n9142,lsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5831,\"She climbs into the carriage. At someone, someone\",She climbs into the carriage.,\"At someone, someone\",gold,\"bumps the second guard, student smirks.\",\"is sitting in the drawing room, watching someone practice her piano playing.\",storms into a room passing by one of the windows.,warms up to a boulder at the top of the rock and gazes about wearily.,1\n9143,lsmdc3077_THE_VOW-35659,13759,\"Someone eyes someone who mouths, It's okay. Already seated, someone\",\"Someone eyes someone who mouths, It's okay.\",\"Already seated, someone\",gold,zips up his jacket.,\"sits on the edge of the bed, covering his face with his hand.\",\"stands awkwardly, then sits again.\",points at the boy.,2\n9144,anetv_HSEnmPWF5GY,17442,A montage of a priest is giving communion to people. Jesus and Mother Teresa,A montage of a priest is giving communion to people.,Jesus and Mother Teresa,gold,are gathered on the border of the boat.,are shown as a montage continues.,explode place atop the crow's nest.,stand and talk to the camera.,1\n9145,lsmdc3056_PUBLIC_ENEMIES-3114,2387,\"The three newcomers make their way down the platform, suitcases in hand. Now, travelers\",\"The three newcomers make their way down the platform, suitcases in hand.\",\"Now, travelers\",gold,mill about on a vast terminal's marble floors.,make their way into the library lobby.,\"streams down city streets and thames, montana.\",\"appear coming through the entrance, followed by a large picture of women.\",0\n9146,lsmdc3056_PUBLIC_ENEMIES-3114,2386,He peers down the platform. The three newcomers,He peers down the platform.,The three newcomers,gold,lift his wrists and go out into the hallway.,\"make their way down the platform, suitcases in hand.\",in the stroll line are now heavily bound.,pose faces back outside.,1\n9147,lsmdc3056_PUBLIC_ENEMIES-2774,18715,\"In a farmhouse, gang members change clothes while eating. A woman\",\"In a farmhouse, gang members change clothes while eating.\",A woman,gold,wraps food in newspapers and brings it over to their table.,studies a toy tin with a spoon.,helps the others out for the matter with takes care.,stands in a kitchen and talks to one of the children.,0\n9148,lsmdc3056_PUBLIC_ENEMIES-2774,18717,\"Outside, someone walks alone. Without his overcoat, he\",\"Outside, someone walks alone.\",\"Without his overcoat, he\",gold,glances back at someone with a coy smile.,wears a black vest and a leather gun holster.,watches the gaps in the stairs.,strolls down a narrow path at the mountains.,1\n9149,lsmdc3056_PUBLIC_ENEMIES-2774,18702,\"Shot in the back, someone collapses. Standing on the running board he\",\"Shot in the back, someone collapses.\",Standing on the running board he,gold,\"grabs his wrist and drops the chain again, pulling someone's attention out.\",lets himself into a cloud of mini pipes with a firework attached to his face.,takes a clown gun.,sticks to his arm as they drive away.,3\n9150,lsmdc3056_PUBLIC_ENEMIES-2774,18705,Someone struggles to keep his grip while holding on to the moving car himself. Someone,Someone struggles to keep his grip while holding on to the moving car himself.,Someone,gold,\"flips off the ski, one gets back to the water.\",looks up to his old friend and grins.,\"swings the wheel, rusty and rattle.\",comes out after him with it.,1\n9151,lsmdc3056_PUBLIC_ENEMIES-2774,18712,\"Now, someone stands below an overcast sky. Strands of his greasy black hair\",\"Now, someone stands below an overcast sky.\",Strands of his greasy black hair,gold,tumble into the rain.,are dwarfed by parts of his tall wool vest.,hang and hang back.,hang over his forehead.,3\n9152,lsmdc3056_PUBLIC_ENEMIES-2774,18709,\"Someone closes the sedan's door. Gathering himself, he\",Someone closes the sedan's door.,\"Gathering himself, he\",gold,\"sniffs, flaring his nostrils.\",swerves to the young man.,digs his journal into a vent bin.,peeks around a corner and into his apartment.,0\n9153,lsmdc3056_PUBLIC_ENEMIES-2774,18719,\"As someone turns and walks away from the farmhouse, the woman continues to gaze after him. A little boy in overalls\",\"As someone turns and walks away from the farmhouse, the woman continues to gaze after him.\",A little boy in overalls,gold,holds it up to the pierced man.,\"is sitting with an old fridge, a tread room.\",comes up and takes her hand.,is sitting at his desk in a white house.,2\n9154,lsmdc3056_PUBLIC_ENEMIES-2774,18718,\"They hold eye contact, and she lets go. As someone turns and walks away from the farmhouse, the woman\",\"They hold eye contact, and she lets go.\",\"As someone turns and walks away from the farmhouse, the woman\",gold,is careful not to approach the window.,'s jaw drops slack.,walks beside her to her.,continues to gaze after him.,3\n9155,lsmdc3056_PUBLIC_ENEMIES-2774,18724,\"Now, a man in a blue suit hurries through lush green woods with a someone gun. He\",\"Now, a man in a blue suit hurries through lush green woods with a someone gun.\",He,gold,\"turns over, studying her surroundings.\",\"trips, then climbs to his feet and runs on.\",\"freezes, throws someone under a horizontal barricade and runs through an obstacle.\",stares earnestly at someone's head and places his beer on the cradle.,1\n9156,lsmdc3056_PUBLIC_ENEMIES-2774,18725,\"He trips, then climbs to his feet and runs on. A group of armed lawmen\",\"He trips, then climbs to his feet and runs on.\",A group of armed lawmen,gold,\"follow behind, charging up a hill.\",leads men of chocolates out of the roof.,confer from the germans.,fall from a red police car.,0\n9157,lsmdc3056_PUBLIC_ENEMIES-2774,18721,\"Together, they wander a few steps without taking their eyes off of him. Now in the car as someone drives, someone\",\"Together, they wander a few steps without taking their eyes off of him.\",\"Now in the car as someone drives, someone\",gold,observes with his two handed sisters and his winnings.,looks back at someone.,enters through one of the windows and looks away.,sits in her passenger seat.,1\n9158,lsmdc3056_PUBLIC_ENEMIES-2774,18723,\"He faces forward and glances at someone. Now, a man in a blue suit\",He faces forward and glances at someone.,\"Now, a man in a blue suit\",gold,shows the one who gives her instructions.,hurries through lush green woods with a someone gun.,rolls out her basement end.,crawls up the ring.,1\n9159,lsmdc3056_PUBLIC_ENEMIES-2774,18720,\"A little boy in overalls comes up and takes her hand. Together, they\",A little boy in overalls comes up and takes her hand.,\"Together, they\",gold,\"stop, and then they start the dance.\",shake balls and hit each other in the stomach.,go down a road and fall into a tree of snow.,wander a few steps without taking their eyes off of him.,3\n9160,lsmdc3056_PUBLIC_ENEMIES-2774,18727,The lawman's shot misses and someone runs off. Someone,The lawman's shot misses and someone runs off.,Someone,gold,lets someone fly in the air.,\"throws his balls, and someone scores a point.\",sprints through the trees.,watches someone play on tv as he strides past others.,2\n9161,lsmdc3056_PUBLIC_ENEMIES-2774,18726,\"A group of armed lawmen follow behind, charging up a hill. Soeone\",\"A group of armed lawmen follow behind, charging up a hill.\",Soeone,gold,runs backwards firing wildly.,strike him as the library closes.,steps back and forth.,hang onto them as they look at each other.,0\n9162,lsmdc3056_PUBLIC_ENEMIES-2774,18713,Strands of his greasy black hair hang over his forehead. His gaze,Strands of his greasy black hair hang over his forehead.,His gaze,gold,hovers over someone as he raises his head and face.,turns to a frown on his face.,drifts to a road which cuts through a desolate field toward the flat horizon.,remains fixed on the ground side.,2\n9163,lsmdc3056_PUBLIC_ENEMIES-2774,18714,\"His gaze drifts to a road which cuts through a desolate field toward the flat horizon. In a farmhouse, gang members\",His gaze drifts to a road which cuts through a desolate field toward the flat horizon.,\"In a farmhouse, gang members\",gold,stand outside on the stairs or chat lockers.,ride down a slide down the slope.,pass someone and drain some cash and cash on his shoulders.,change clothes while eating.,3\n9164,lsmdc3056_PUBLIC_ENEMIES-2774,18716,Someone buttons up next to another escapee. Someone,Someone buttons up next to another escapee.,Someone,gold,puts out a cigarette.,waves her hand to the window.,appears shaking his head.,reaches forward and grabs someone.,0\n9165,lsmdc3056_PUBLIC_ENEMIES-2774,18703,\"Standing on the running board he sticks to his arm as they drive away. His body dragging across the dirt, someone\",Standing on the running board he sticks to his arm as they drive away.,\"His body dragging across the dirt, someone\",gold,screeches to the halt on his tracks.,\"turns back to the horse, who gazes back at her.\",pulls someone to the ground and supports him clean.,\"hangs onto someone's arm, grimacing in pain.\",3\n9166,lsmdc3056_PUBLIC_ENEMIES-2774,18722,\"Now in the car as someone drives, someone looks back at someone. He\",\"Now in the car as someone drives, someone looks back at someone.\",He,gold,\"steps down, grabs his jacket and rolls on his side and pushing it a few feet.\",\"goes over to someone, who sits between the untouched stacks of scrap paper.\",makes his way towards his silver sedan.,faces forward and glances at someone.,3\n9167,lsmdc3090_YOUNG_ADULT-44150,13401,She types in her hotel. She,She types in her hotel.,She,gold,rips hair removal tape from someone 'upper lip.,places it toward the attendant's display and shifts his serene gaze.,information on how can exhibit formation ends with the gym door.,\"'flashes, someone returns.\",0\n9168,lsmdc3090_YOUNG_ADULT-44150,13402,\"She rips hair removal tape from someone 'upper lip. Wearing a towel around her head, someone\",She rips hair removal tape from someone 'upper lip.,\"Wearing a towel around her head, someone\",gold,holds onto her wrist.,removes her gloved hands in the room.,lies with her eyes closed.,particles a piece of metal against the side of someone's head.,2\n9169,lsmdc3090_YOUNG_ADULT-44150,13409,Someone follows someone through a doorway then up several steps. She,Someone follows someone through a doorway then up several steps.,She,gold,\"extends one hand, and a zombie creeps toward him.\",\"gazes upwards from the railing, scrawny someone.\",glances over her shoulder.,\"takes down the viewer, as if he is holding it to him.\",2\n9170,lsmdc3090_YOUNG_ADULT-44150,13404,\"Later, she strides into a Buy Buy Baby store. She\",\"Later, she strides into a Buy Buy Baby store.\",She,gold,takes her sunglasses off as she approaches the car.,inhales frantically and screws up her sleeve.,passes a rack of items resembling teddy bears then rows of pink dresses.,stops and bounces on as someone watches her.,2\n9171,lsmdc3090_YOUNG_ADULT-44150,13403,\"Wearing a towel around her head, someone lies with her eyes closed. Back in her room, someone\",\"Wearing a towel around her head, someone lies with her eyes closed.\",\"Back in her room, someone\",gold,uses newspapers in the laundry to carry them inside.,applies her fingernails on top of someone's face.,pins up her hair.,wears a quizzical gaze.,2\n9172,lsmdc3090_YOUNG_ADULT-44150,13407,Someone climbs the front steps. She,Someone climbs the front steps.,She,gold,passes with someone's friend.,sets down his wallet.,takes off her sunglasses then slowly moves through the living room.,grabs the hood of the trailer from the car.,2\n9173,lsmdc3090_YOUNG_ADULT-44150,13406,\"Later, she walks toward someone's house where guests stand in the driveway or walk into the backyard. Someone\",\"Later, she walks toward someone's house where guests stand in the driveway or walk into the backyard.\",Someone,gold,turns calmly and looks up on the porch in his apartment.,climbs the front steps.,enters the burlesque circuit lounge and plays a cigarette.,is playing food with his mother.,1\n9174,anetv_QHd9bJOuvIU,7035,He is standing in front of a house talking. Men,He is standing in front of a house talking.,Men,gold,is actually playing a sport.,starts talking about bowling times in an open field in a park.,are putting new shingles onto a roof.,is outside on a swing.,2\n9175,lsmdc1056_Rambo-96803,14007,\"He stops grinding, drops the blade and runs a hand through his hair. A rusty metal fan on a rod\",\"He stops grinding, drops the blade and runs a hand through his hair.\",A rusty metal fan on a rod,gold,lies on a bench nearby.,pulls out of his wrist restraint.,tries to catch the snitch.,shoots out and closes the vault door flat.,0\n9176,lsmdc1056_Rambo-96803,14017,He walks down a wooden walkway to the boat. Someone,He walks down a wooden walkway to the boat.,Someone,gold,pulls an infant down the rear of a raft.,is carrying a grape - colored turkey.,is sitting under the boat's canopy.,opens up a set of wooden poles in front of the camels.,2\n9177,lsmdc1056_Rambo-96803,14012,He deftly lifts the assembly off the bench and puts it down. He,He deftly lifts the assembly off the bench and puts it down.,He,gold,\"leaves the workshop and walks out into the night air, where it's raining heavily.\",turns it thick and crooked.,removes it made from the rack.,tosses it and wheels.,0\n9178,lsmdc1056_Rambo-96803,14009,He removes a nut from the rod and discards the fan. He,He removes a nut from the rod and discards the fan.,He,gold,\"replaces it with his creation, a new fan.\",rolls to a different corner and approaches an adjacent sidewalk.,lines coated the cavern until the alien hammers a small circle with a stone.,leaps to the side but does it for someone.,0\n9179,lsmdc1056_Rambo-96803,14014,His boat is moored below at the water's edge. He,His boat is moored below at the water's edge.,He,gold,tilts his head and gazes at the tritium.,looks markings on the river.,looks down at it.,lies out on the train on the water deck behind him.,2\n9180,lsmdc1056_Rambo-96803,14013,\"He leaves the workshop and walks out into the night air, where it's raining heavily. His boat\",\"He leaves the workshop and walks out into the night air, where it's raining heavily.\",His boat,gold,pulls out from her side and climbs up.,\"is through the floor, clouds of steam.\",is moored below at the water's edge.,\"is eating busy, having a lunch.\",2\n9181,lsmdc1056_Rambo-96803,14008,A rusty metal fan on a rod lies on a bench nearby. He,A rusty metal fan on a rod lies on a bench nearby.,He,gold,\"hurries up an aisle, and hesitates.\",eyes a cutting board just as a logo icon goes out.,removes a nut from the rod and discards the fan.,opens his palm to reveal the letters just below someone's chest.,2\n9182,lsmdc1056_Rambo-96803,14011,He picks up a spanner and tightens the nut. He,He picks up a spanner and tightens the nut.,He,gold,slowly takes a breath and moves his head to his mouth.,sets it back on his shoulders.,deftly lifts the assembly off the bench and puts it down.,slices the bread removed and slices.,2\n9183,lsmdc1056_Rambo-96803,14005,\"In someone's fort, sparks fly as he grinds round blades on a spinning wheel. Veins\",\"In someone's fort, sparks fly as he grinds round blades on a spinning wheel.\",Veins,gold,fly in his hair harder.,stand out on his muscular arms.,appear on his hood.,lift two men in the air and bounce in the arms.,1\n9184,lsmdc1056_Rambo-96803,14006,Veins stand out on his muscular arms. He,Veins stand out on his muscular arms.,He,gold,\"downs the poison stream, then rocks through his body to the strap of his injured foot.\",whips the doctor's belt with his open foot.,\"stops grinding, drops the blade and runs a hand through his hair.\",puts a red stain down onto their curved skin.,2\n9185,lsmdc1056_Rambo-96803,14010,\"He replaces it with his creation, a new fan. He\",\"He replaces it with his creation, a new fan.\",He,gold,hands the envelope to the officer and takes his father's autograph.,adds a nut to the thread at the end of the rod and reaches onto a bench.,grabs the mountain manager.,takes the keys of the envelope from her.,1\n9186,anetv_i-8vfNV-klk,11568,A man is using a pair of hedge trimmers on trees. He,A man is using a pair of hedge trimmers on trees.,He,gold,about just seconds to dig that vine from make wood.,is talking to the camera as he goes.,is moving up and down on a covered lawn.,begins using the clothes down of the hedge.,1\n9187,anetv_i-8vfNV-klk,11569,He is talking to the camera as he goes. He,He is talking to the camera as he goes.,He,gold,trims the trees with the shears.,are standing in the background.,\"cups his face into his hand, then leans forward and kisses.\",continues playing while going off to the camera.,0\n9188,anetv_H0gSWEElh6A,1458,He is hammering nails into a wooden bar. He,He is hammering nails into a wooden bar.,He,gold,uses the tool to properly align the nails before hammering it in.,is squeezing the dirt back into the trailer.,puts a fire in the fire flaming wood.,lays two more goblin books on how to have.,0\n9189,anetv_H0gSWEElh6A,1457,There's a man demonstrating how to use a hand setting tool. He,There's a man demonstrating how to use a hand setting tool.,He,gold,goes backwards throwing a knife.,pours a layer of wax over the hedge.,demonstrates the trimmer for planting an extremely detailed scale.,is hammering nails into a wooden bar.,3\n9190,anetv_tTEAlDsmZrA,16710,They begin cutting a hedge with a saw. A man,They begin cutting a hedge with a saw.,A man,gold,is standing on a ladder cutting the top of a tree.,is scrubbing a snow bike downhill.,uses a brush to brush the grass.,is shown climbing up a tree in front of a tree.,0\n9191,anetv_tTEAlDsmZrA,3613,More men are seen cutting hedges on the lawn as well as the trees up high. Several men work together on the home and the camera,More men are seen cutting hedges on the lawn as well as the trees up high.,Several men work together on the home and the camera,gold,pans around various fooseball tables and well.,shows panning back to him doing several shots of the fence.,pans back in the scene continuing to show you touching your shoes.,pans around the yard in the end.,3\n9192,anetv_tTEAlDsmZrA,3612,A man is seen cutting trees in a backyard while the camera pans around the area. More men,A man is seen cutting trees in a backyard while the camera pans around the area.,More men,gold,are seen from behind the hedge in the woods while still speaking to the camera.,are seen speaking to the camera and speaking to one another.,are seen cutting hedges on the lawn as well as the trees up high.,follows the man out of frame following fire.,2\n9193,anetv_tTEAlDsmZrA,16709,People are standing in a back yard. They,People are standing in a back yard.,They,gold,are being pulled back and fourth on the grass.,are performing flips and jumps.,begin cutting a hedge with a saw.,carve a pumpkin with a green paint.,2\n9194,lsmdc0041_The_Sixth_Sense-67604,1072,His eyes drift down to someone's arms. Someone's arms,His eyes drift down to someone's arms.,Someone's arms,gold,are covered in tiny cuts and bruises.,\"relax slightly as he turns around, crumbles.\",\"spread out around his neck, gazing at her young laotong.\",propped up on her shoulders and seductively uncoils around her head.,0\n9195,anetv_sjyZWmvTGA4,19221,Several men are blowing leaves in front of a home. One man,Several men are blowing leaves in front of a home.,One man,gold,uses the blower to catch them.,pushes the mower out of the window and walk out onto the board.,is using the hose not to get chopped and blows into a room.,is going all throughout the yard to blow the leaves.,3\n9196,anetv_sjyZWmvTGA4,19223,He clears out in front of the home. He also,He clears out in front of the home.,He also,gold,suggests a tomato that sits on the table in front of him.,reels around a heap.,solves a few times.,clears out by the shed.,3\n9197,anetv_sjyZWmvTGA4,19224,He also clears out by the shed. Another man,He also clears out by the shed.,Another man,gold,is shown wandering through the yard.,shows how to use the object.,pays out to shoot the recruits are fading quickly.,walks past him to his horse.,0\n9198,anetv_sjyZWmvTGA4,19222,One man is going all throughout the yard to blow the leaves. He,One man is going all throughout the yard to blow the leaves.,He,gold,goes to the yard to take the leashes off.,\"throws a frisbee over the person, and then catches the ball.\",clears out in front of the home.,is thrown up pictures other girls and older men are assisting him.,2\n9199,anetv_B69Fkd_L9gA,4540,He is getting ready to get into his hot tub on his deck. He,He is getting ready to get into his hot tub on his deck.,He,gold,walks bare foot through the snow to get into his hot tub.,adds soap to the faucet and smears it on his face.,stops in the door to find a girl waiting for him upstairs.,\"leans against the railing, gazing downward, and faces his father.\",0\n9200,anetv_B69Fkd_L9gA,4542,He begins to shovel the snow off the deck to make it easier for him to walk. He,He begins to shovel the snow off the deck to make it easier for him to walk.,He,gold,moves down and shows that last tube where the slide is parked.,stops and began removing the helmet.,clears the snow from the deck to create a pathway to the hot tub.,stretches it out to the ground.,2\n9201,anetv_B69Fkd_L9gA,4541,He walks bare foot through the snow to get into his hot tub. He,He walks bare foot through the snow to get into his hot tub.,He,gold,begins to shovel the snow off the deck to make it easier for him to walk.,\"leans back in the window, then stares at himself in the mirror.\",\"walks through a forested area where he opened the refrigerator, and the sink pulling back to the second floor.\",starts to take the package to someone's as he reaches for the washing toothbrush.,0\n9202,anetv_B69Fkd_L9gA,4539,There's man standing on his deck that is covered with snow. He,There's man standing on his deck that is covered with snow.,He,gold,is riding a ladle's water and sitting and talking to the camera.,is getting ready to get into his hot tub on his deck.,goes off a beach street and jumps into waves.,is using radio sticks despairingly to be more indoors.,1\n9203,anetv_rDlPcW_2nG0,12657,\"Two women standing in the kitchen, one girl is wearing a black top and the other one is wearing a beige top. The woman in beige\",\"Two women standing in the kitchen, one girl is wearing a black top and the other one is wearing a beige top.\",The woman in beige,gold,\"showed a sandwich on the kitchen counter, then started peeing the green cucumber using a peeler, then start slicing the cucumber.\",shorts escorts the girls team on the other side of the room.,is looking down the woman's middle.,stops drumming the ball.,0\n9204,anetv_jvQU6RyhY7I,9062,A woman has a bandana tied around her eyes. She,A woman has a bandana tied around her eyes.,She,gold,puts the needle through her chest and explains a very sexy way.,uses a stick to swing at a pinata.,rubs her head briefly then totters her face.,\"takes a pistol from the hanger, chugs the bottle and tosses the bottle onto the counter.\",1\n9205,anetv_jvQU6RyhY7I,9063,She uses a stick to swing at a pinata. She,She uses a stick to swing at a pinata.,She,gold,goes up the stairs and hits her.,hits the pinata numerous times.,picks up the baton and twirls around in circles.,does a flip then drops it to the ground.,1\n9206,anetv_czh5nNO_Eow,14819,\"The man stops painting, and begins talking as he points at a few things on the door. A black screen\",\"The man stops painting, and begins talking as he points at a few things on the door.\",A black screen,gold,appears and he is holding a card.,with another appears with the paper slowly explaining.,appears with white words that include a website if someone wants more information.,on black frosted buildings.,2\n9207,anetv_czh5nNO_Eow,14818,The man then grabs a paint brush and begins painting on paints various parts of the door while continuing to talk. The man,The man then grabs a paint brush and begins painting on paints various parts of the door while continuing to talk.,The man,gold,\"stops painting, and begins talking as he points at a few things on the door.\",continues turning around and showing off the instrument.,then shows several more points on the lawn while her stifles to the camera while her fingers are still still around them.,continues cutting the ends of the wall and walking around while looking a little more lines.,0\n9208,anetv_czh5nNO_Eow,14817,\"A man then appears in front of a red door that is leaning up against a wall that has plastic on it, and he's talking and touching the door. The man then\",\"A man then appears in front of a red door that is leaning up against a wall that has plastic on it, and he's talking and touching the door.\",The man then,gold,stands in the shower with the dog and pours it in the dried particles around to the window.,gets a tattoo from a marble machine and begins with only one stylized out of the window and showing.,puts a black strap on his head to rub it on his face then make sure that tie operates your tires and adjusts the settings,grabs a paint brush and begins painting on paints various parts of the door while continuing to talk.,3\n9209,anetv_3PC5_h68qkc,4182,\"We see the location name and the resort shots of the restaurants, bathrooms and more. We\",\"We see the location name and the resort shots of the restaurants, bathrooms and more.\",We,gold,see people dance and play games outdoors and in a room in groups with balloons and dancing.,suddenly is attire with names and ehow.,cleans cars and the kids keeping grab umbrellas.,are several switches and backing scenes.,0\n9210,anetv_3PC5_h68qkc,4180,We see the opening title screen. People,We see the opening title screen.,People,gold,is playing guitar while smoking a pipe.,are shining a pumpkin with it.,are putting on their supplies and riding in rafts down a river.,see sumo sumo uniforms.,2\n9211,anetv_3PC5_h68qkc,4181,People are putting on their supplies and riding in rafts down a river. We,People are putting on their supplies and riding in rafts down a river.,We,gold,slide down a hill leading by a large group of people on boats.,rewind all the fish shells.,are shown in games petting a bike.,\"see the location name and the resort shots of the restaurants, bathrooms and more.\",3\n9212,lsmdc0026_The_Big_Fish-62008,17357,\"Someone laughs a little, which becomes a cough. Taking the half - empty Ensure, someone\",\"Someone laughs a little, which becomes a cough.\",\"Taking the half - empty Ensure, someone\",gold,comes inside revealing someone.,rushes to a wall block.,gets up to go.,enters the dining room.,2\n9213,lsmdc0026_The_Big_Fish-62008,17356,Someone won't commit to someone's assessment. Someone,Someone won't commit to someone's assessment.,Someone,gold,climbs down from the truck.,\"laughs a little, which becomes a cough.\",\"starts paddling slowly, then returning to the crowd.\",\"takes her hand out, and puts them together.\",1\n9214,lsmdc0026_The_Big_Fish-62008,17360,\"He smiles at his joke. Shutting the door behind himself, someone\",He smiles at his joke.,\"Shutting the door behind himself, someone\",gold,runs into the dining room.,looks up and picks up letters.,irritably takes another of his hands.,drinks the rest of the ensure himself.,3\n9215,lsmdc0026_The_Big_Fish-62008,17359,He is at the door when. He,He is at the door when.,He,gold,smiles at his joke.,takes out a jutting brush.,steps past cell phones and tries the lock.,flips his weapon down a passageway and tries to fish out.,0\n9216,anetv_xmW27Mi-jbg,298,A boy is standing in front of a picture. We,A boy is standing in front of a picture.,We,gold,are on a chalk screen on a dark grounds.,is playing in a newspaper.,see a fire flaming from rocks.,are giving a lot of ingredients after giving his instructions.,2\n9217,anetv_xmW27Mi-jbg,300,\"Several steps are then shown for building a fire, including the pile of wood and paper. The fire is lit, and two boys\",\"Several steps are then shown for building a fire, including the pile of wood and paper.\",\"The fire is lit, and two boys\",gold,are taking out each other after the man lay them on the ground.,get ready to talk to each other on the return table.,roast marshmallows over it.,play a hole together.,2\n9218,anetv_xmW27Mi-jbg,10393,They light the sticks with a lighter. A fire,They light the sticks with a lighter.,A fire,gold,is surrounding the flame.,glows in the intense rippling water.,starts in the fire pit they made.,is attached to the fire.,2\n9219,anetv_xmW27Mi-jbg,299,We see a fire flaming from rocks. Several steps,We see a fire flaming from rocks.,Several steps,gold,\"are then shown for building a fire, including the pile of wood and paper.\",are hammered into wood.,are shown near the fire.,are close to someone and the man is sweeping the floor.,0\n9220,anetv_xmW27Mi-jbg,10392,A person puts sticks into a pile. They,A person puts sticks into a pile.,They,gold,light the sticks with a lighter.,pause the game before the match.,put on sticks in the pile.,carry them all over the roof.,0\n9221,lsmdc3084_TOOTH_FAIRY-39995,9521,\"Later, someone walks someone out. They\",\"Later, someone walks someone out.\",They,gold,stop outside the most cheerful troops.,run to technique on different moves.,buy items as they drive through a shapeless white house.,halt near the front desk.,3\n9222,anetv_lkC_md7KKq0,7927,A woman is standing next to a man in the kitchen as she sharpens a knife with a mug. The man,A woman is standing next to a man in the kitchen as she sharpens a knife with a mug.,The man,gold,hands her another knife.,begins wrapping a clipper two more cutting with the knife.,tests colored liquid from trying to sharpen an eyeball.,pours into a large buffet and makes an omelette.,0\n9223,anetv_lkC_md7KKq0,7916,Text appears across the white screen. Two people,Text appears across the white screen.,Two people,gold,play volleyball in a court watching the game.,are shown in a kitchen.,are posing following the crowd quickly.,are shown on the dance floor.,1\n9224,anetv_lkC_md7KKq0,7918,They are both holding knives. They,They are both holding knives.,They,gold,mount up and high on the crystals.,sharpen the knives on the bottom of a mug.,bump each other.,does something as if she is a live technician.,1\n9225,anetv_lkC_md7KKq0,7928,The man hands her another knife. The woman,The man hands her another knife.,The woman,gold,shows alfredo tips on the console panel.,sharpens the knife with the mug.,extends to the orange box and lunges easily.,removes the needle and removes the shoes.,1\n9226,anetv_6it_yeIb_L0,8905,\"A spinning ad appears, before changing to two men standing in a skateboarding building in Bali. Several people\",\"A spinning ad appears, before changing to two men standing in a skateboarding building in Bali.\",Several people,gold,are shown sitting on a beach drinking and playing a game of ping pong.,go down the steep hill and then start performing several tricks of their bike while on their course on bikes.,are standing in car a parking harness and is playing the wrestling item.,are shown skating down a city street before they are doing skateboarding tricks indoors.,3\n9227,anetv_6it_yeIb_L0,8906,Several people are shown skating down a city street before they are doing skateboarding tricks indoors. We,Several people are shown skating down a city street before they are doing skateboarding tricks indoors.,We,gold,drive into the road of a highway.,th road and passing in the street.,\"are at angles going over a video, passing it to distance.\",see several shots of a man dressed as the incredible hulk between skaters.,3\n9228,anetv_6it_yeIb_L0,6733,Several shots of scenery are shown as well as people smiling to the camera. More clips,Several shots of scenery are shown as well as people smiling to the camera.,More clips,gold,are shown of various individuals attempting a bike play soccer with others watching on top.,are shown of people riding along as well as ending with more clips of people going happy.,are shown of people riding skateboards around areas and people waving to the camera.,are shown of people riding along the beach while riding down the river.,2\n9229,anetv_6it_yeIb_L0,6734,More clips are shown of people riding skateboards around areas and people waving to the camera. Several clips,More clips are shown of people riding skateboards around areas and people waving to the camera.,Several clips,gold,are shown of people riding around on their bikes while others watch them turn.,are shown of people performing tricks on boards and holding up boards to the camera.,are shown of kids in front of people riding motorcycles.,are shown of people riding with skateboard rope as well as jumping off the skateboard and ends with another man playing at a end.,1\n9230,anetv_7o7hL0VccJQ,7103,\"A man on the street corner outside a venue, standing on stilts plays a bagpipe as people go by. Someone in a blue jacket\",\"A man on the street corner outside a venue, standing on stilts plays a bagpipe as people go by.\",Someone in a blue jacket,gold,is holding the microphone while the man in a white shirt is standing and playing the drums.,is throwing a spoon toward the pier.,is walking down the sidewalk in a ballet venue.,comes by and leaves a tip in a bucket.,3\n9231,anetv_7o7hL0VccJQ,7104,A person in a hat leaves a tip. The person,A person in a hat leaves a tip.,The person,gold,slips a coating on the hedge.,filming zooms in on a sign.,moves a liquid and herbs to the person.,adds a rolled up dough.,1\n9232,anetv_7o7hL0VccJQ,11708,A man on stilts is playing the bag pipes on a street. A bus,A man on stilts is playing the bag pipes on a street.,A bus,gold,passes on the street behind the man.,jumps through the open garage door.,hops down the people behind him and they enter the side of the street.,spits up on both of them.,0\n9233,anetv_xIG7FQWBWZU,16011,We see inside an ice rink with supplies for curling. A lady throws the stone and other ladies,We see inside an ice rink with supplies for curling.,A lady throws the stone and other ladies,gold,hit the serving darts.,bend over and shake the score.,eat around in a circle.,sweep the ground in front of it.,3\n9234,anetv_xIG7FQWBWZU,14912,An ice rink and sports gear is shown. huge pucks,An ice rink and sports gear is shown.,huge pucks,gold,slide at the end of the gym.,slide across the park track.,are pushed across the the rink.,lay around the field.,2\n9235,anetv_xIG7FQWBWZU,16012,A lady throws the stone and other ladies sweep the ground in front of it. A lady,A lady throws the stone and other ladies sweep the ground in front of it.,A lady,gold,aims at the screen and nothing appears in the screen.,jumps up and down with her hands in the air.,\"takes the frisbee off and hold it up, and then its chain.\",puts the bow on top.,1\n9236,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11361,\"Then the two carriages lurch away, the crowd of well wishers waving them off. The ground\",\"Then the two carriages lurch away, the crowd of well wishers waving them off.\",The ground,gold,shelves are turned looking dusty.,is covered with a light dusting of snow.,is a mouse stamped in a explosion with floating tractor blowing dust mushroom.,bunch and danced on the ground as they burst into the bottom.,1\n9237,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11357,\"Outside the church, two young girls hold up an arch of green foliage and berries for people to walk under. They\",\"Outside the church, two young girls hold up an arch of green foliage and berries for people to walk under.\",They,gold,tip - on water lands parking across a hospital room.,\"step up into the waiting carriage, well wishers surrounding them on every side.\",see an image emerge.,banks twisted curves at its length.,1\n9238,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11358,\"They step up into the waiting carriage, well wishers surrounding them on every side. Behind them, people also\",\"They step up into the waiting carriage, well wishers surrounding them on every side.\",\"Behind them, people also\",gold,take the pictures and plates.,\"stand up, angry by the goon, assisting horses.\",pass beneath the arch.,sit back in sleep.,2\n9239,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11360,\"Someone's face is a picture of joy, while even someone's usual stern expression has softened into a beaming smile. They two\",\"Someone's face is a picture of joy, while even someone's usual stern expression has softened into a beaming smile.\",They two,gold,\"backs away slowly, walking on their horses direction.\",step up into the carriage that awaits them.,are all engaged in a game of jousting as they go in.,begin to enjoy each other's strokes.,1\n9240,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11359,\"Behind them, people also pass beneath the arch. Someone's face\",\"Behind them, people also pass beneath the arch.\",Someone's face,gold,drops as he sprints through the rolling grey - stone structure which rains down.,is set up as a fifth pig image.,is shaped by frost.,\"is a picture of joy, while even someone's usual stern expression has softened into a beaming smile.\",3\n9241,lsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11362,\"The ground is covered with a light dusting of snow. People gaze tenderly into each other's eyes, and slowly he\",The ground is covered with a light dusting of snow.,\"People gaze tenderly into each other's eyes, and slowly he\",gold,reaches for her hips.,leans forward and kisses her gently on the lips.,glares at the ailing woman.,reaches to wraps his arms around someone's neck.,1\n9242,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8509,Two of the three angles show the someone entering the cottage through a wooden side door. Someone,Two of the three angles show the someone entering the cottage through a wooden side door.,Someone,gold,descends to the hilton shuttle reception.,is seen across the table.,puts the monitor down and heads off.,\"has a house, small furniture, and paints on a wall.\",2\n9243,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8508,She holds its screen up close viewing someone at the front door. Two of the three angles,She holds its screen up close viewing someone at the front door.,Two of the three angles,gold,show the someone entering the cottage through a wooden side door.,\"start towards their hotel's doors, one by one.\",are closer with their fingers bent over it.,\"are n't visible, moving in a hiding spot.\",0\n9244,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8507,In the cottage someone studies surveillance feeds on the portable monitor. She,In the cottage someone studies surveillance feeds on the portable monitor.,She,gold,spots someone with a donut cop 3 hero.,watches the blanket as the kidnapper faces the room.,lowers the laptop with a map of auto - wars.,holds its screen up close viewing someone at the front door.,3\n9245,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8510,\"Someone puts the monitor down and heads off. In the basement, someone\",Someone puts the monitor down and heads off.,\"In the basement, someone\",gold,carries his bags slung in his hand and makes his way up a staircase to a stairwell.,\"picks up a bag of cash from his bag, gets out.\",switches on a reel - to - reel tape player.,finds someone's ascending housing reactor.,2\n9246,anetv_Y76yy0chbhU,15887,They are playing lacrosse together. They,They are playing lacrosse together.,They,gold,\"run around, trying to hit the ball.\",play a game of tug of war.,stop each other in the race track.,throw their hands in and out of sync.,0\n9247,anetv_Y76yy0chbhU,15886,A couple of teams are on an open field. They,A couple of teams are on an open field.,They,gold,throw various darts into the basket.,are playing lacrosse together.,are dancing in a circle around the center of the room.,are playing a game of field hockey.,1\n9248,anetv_RTD_JWmhNkA,390,The man on the right is playing a guitar the traditional way. They man on the right,The man on the right is playing a guitar the traditional way.,They man on the right,gold,is doing the same dancing a little more.,is singing while he is playing.,are controlling their drums.,takes a break and puts the baby down.,1\n9249,anetv_RTD_JWmhNkA,388,Two man a in a room sitting. A man on the left,Two man a in a room sitting.,A man on the left,gold,walks between the drums with a hand moving on the boy's lap.,is playing a guitar that lays on a table.,joins a ping pong match.,picks up a crocodile.,1\n9250,anetv_RTD_JWmhNkA,2087,One man uses his hands and another uses tools to play. The men,One man uses his hands and another uses tools to play.,The men,gold,stand again again and talk to the camera and continue talking.,walk into the field and cheer for the crowd.,continue playing with one another and end by looking to the camera.,move off quickly and rip each other across the camera frame.,2\n9251,anetv_RTD_JWmhNkA,389,A man on the left is playing a guitar that lays on a table. The man on the right,A man on the left is playing a guitar that lays on a table.,The man on the right,gold,is playing a guitar the traditional way.,hits the drum then plays an accordian.,is playing the piano.,holds his arm from the bongos and begins to walk to the wall.,0\n9252,anetv_RTD_JWmhNkA,2086,Two men are seen sitting down playing guitar with one another. One man uses his hands and another,Two men are seen sitting down playing guitar with one another.,One man uses his hands and another,gold,uses tools to play.,pushing the objects around for the band.,is finished playing the violin.,break up a cigarette while laughing.,0\n9253,lsmdc1017_Bad_Santa-7779,18342,Someone backs away from between the car and the van as someone starts the van up. Someone,Someone backs away from between the car and the van as someone starts the van up.,Someone,gold,runs up a staircase while someone rounds a corner.,goes after the van and speeds into the cab.,leans back against the grill of the chevy and lights himself a smoke.,\"pulls on a long gray gas mask, with a bitter syringe and a red sock.\",2\n9254,lsmdc1017_Bad_Santa-7779,18359,Someone comes out of the house and walks over to someone as one of the bags catches alight. Someone,Someone comes out of the house and walks over to someone as one of the bags catches alight.,Someone,gold,stamps out the blazing bag.,lifts a fallen lamp and runs off.,heads towards the gravel driver.,\"breaks, not looking spotted.\",0\n9255,lsmdc1017_Bad_Santa-7779,18336,\"Up ahead he sees a light swinging from side to side. As he gets closer, he\",Up ahead he sees a light swinging from side to side.,\"As he gets closer, he\",gold,\"undoes a turn in the ignition, headed to the bed.\",sees it's someone waving a torch.,\"bends his side as if, knocking someone's feet.\",approaches the river and inspects it.,1\n9256,lsmdc1017_Bad_Santa-7779,18332,At night people sit in the van in the deserted mall car park watching the staff entrance. They,At night people sit in the van in the deserted mall car park watching the staff entrance.,They,gold,see someone come out.,load in trolleys back into a dark living room.,go and leave the house.,\"shovel, led into the front yard of suburban house, passing one of the bare - clad boys, as they pass.\",0\n9257,lsmdc1017_Bad_Santa-7779,18348,\"Back at someone's, someone opens the front door to someone, who's got a bag of groceries. He\",\"Back at someone's, someone opens the front door to someone, who's got a bag of groceries.\",He,gold,eyes her figure appreciatively.,\"starts to cross the threshold, walks up to him, and gets into the bed.\",picks up a bag of luggage.,places her bag around a corner to collects her purse.,0\n9258,lsmdc1017_Bad_Santa-7779,18354,\"In the lounge, someone has conked out on the sofa. Someone\",\"In the lounge, someone has conked out on the sofa.\",Someone,gold,hurries across the room and sees three police cars clearly after them.,\"carefully removes her slippers and then peels off her sheer, hold - up socks.\",\"climbs up, fully clothed and pushed down the floor.\",hold up both to her - she nods and kisses her parents' lips.,1\n9259,lsmdc1017_Bad_Santa-7779,18340,\"Someone lifts the bonnet of his Chevy. Bonnet up, someone\",Someone lifts the bonnet of his Chevy.,\"Bonnet up, someone\",gold,picks up a chunk from her stove.,bounds up the stairs as he slams someone's head.,follows someone through a crowded corridor.,steps back from the car.,3\n9260,lsmdc1017_Bad_Santa-7779,18350,\"In the kitchen, people make necklaces out of pieces of popcorn. She\",\"In the kitchen, people make necklaces out of pieces of popcorn.\",She,gold,adds it to a big bowl.,\"drink into their glasses, pours the liquid into the glass.\",whips a hole in a charger.,opens the glass door and peeks inside.,0\n9261,lsmdc1017_Bad_Santa-7779,18335,Someone drives down a deserted unlit road. Up ahead he,Someone drives down a deserted unlit road.,Up ahead he,gold,races across a barren jungle blanketed with forest green grass.,watches someone building up.,sees a light swinging from side to side.,sees white snow lying across the hangar.,2\n9262,lsmdc1017_Bad_Santa-7779,18355,\"Someone carefully removes her slippers and then peels off her sheer, hold - up socks. She hands one to someone, and they\",\"Someone carefully removes her slippers and then peels off her sheer, hold - up socks.\",\"She hands one to someone, and they\",gold,rub their noses together.,pin the socks up at the fireplace.,resume their own box.,begin towards the door of consequence lift drops her short skirt.,1\n9263,lsmdc1017_Bad_Santa-7779,18331,\"Someone watches him go, a thoughtful expression crossing his face. At night people\",\"Someone watches him go, a thoughtful expression crossing his face.\",At night people,gold,are driving red's raft.,sit in the van in the deserted mall car park watching the staff entrance.,walk down the street at night.,\"fight at the elevator, carrying barriers - - - - - someone snatches the phone.\",1\n9264,lsmdc1017_Bad_Santa-7779,18353,\"She pushes his hand away, so he reaches up and unzips the back of her skirt. She\",\"She pushes his hand away, so he reaches up and unzips the back of her skirt.\",She,gold,quickly does it back up and gives someone a kiss.,scoops up his dress and spreads it under her eyes.,pulls off her pants and puts it in someone's mouth.,puts one hand on one of the japanese apples.,0\n9265,lsmdc1017_Bad_Santa-7779,18341,\"Bonnet up, someone steps back from the car. Someone\",\"Bonnet up, someone steps back from the car.\",Someone,gold,steps back from his wagon and leaves closer to the bar.,backs away from between the car and the van as someone starts the van up.,stops beside the subway and sits.,\"leaps up into the fence, signaling for the people to get out of an elevator.\",1\n9266,lsmdc1017_Bad_Santa-7779,18338,He shakes his head wierdly. Someone,He shakes his head wierdly.,Someone,gold,crumples up a rock.,gives him a helpless look.,throws the axe to drag someone around.,shoebox looks up and hoists.,1\n9267,lsmdc1017_Bad_Santa-7779,18333,They see someone come out. People,They see someone come out.,People,gold,come out from the camp and drive around a corner.,\"is on the stairs, beneath the green and flowing water.\",move up into the sky.,watches as someone gets in his big chevrolet car and drives off.,3\n9268,lsmdc1017_Bad_Santa-7779,18349,\"He eyes her figure appreciatively. In the kitchen, people\",He eyes her figure appreciatively.,\"In the kitchen, people\",gold,make necklaces out of pieces of popcorn.,listen to watch someone slide marks in the journal.,are staring at someone in his whites.,go over to section style portico.,0\n9269,lsmdc1017_Bad_Santa-7779,18356,\"She hands one to someone, and they pin the socks up at the fireplace. They\",\"She hands one to someone, and they pin the socks up at the fireplace.\",They,gold,\"kneel on to someone, someone pressing her feet together, dazed.\",to the cave and the hatch closes.,exchange a smile and leave someone to slumber on.,dough is rolled on a plate.,2\n9270,lsmdc1017_Bad_Santa-7779,18334,People watches as someone gets in his big Chevrolet car and drives off. Someone,People watches as someone gets in his big Chevrolet car and drives off.,Someone,gold,drives down a deserted unlit road.,moves near the doorway.,goes to the base.,gaining his seat off the road and crosses to the road.,0\n9271,lsmdc1017_Bad_Santa-7779,18344,Someone reverses and someone slithers down the grill of the Chevy onto the ground. someone,Someone reverses and someone slithers down the grill of the Chevy onto the ground.,someone,gold,peers into a barred window.,slaps himself out of his feet.,walks up to him.,collapses over the mouthful.,2\n9272,lsmdc1017_Bad_Santa-7779,18330,Someone picks up his report card and heads out of the kitchen. Someone,Someone picks up his report card and heads out of the kitchen.,Someone,gold,\"moves off the table, gesturing for her to sit down.\",\"watches him go, a thoughtful expression crossing his face.\",wraps his arms around the activist.,\"watches him go, then leans down to kiss a couple.\",1\n9273,lsmdc1017_Bad_Santa-7779,18358,\"Later, someone is at the front of the house lighting the candle bags someone had come around organizing. Someone\",\"Later, someone is at the front of the house lighting the candle bags someone had come around organizing.\",Someone,gold,steals a t - thoughtfully from a hole and dumps it on a wall.,comes out of the house and walks over to someone as one of the bags catches alight.,watches as she swim away across the rocky - - a number of shirtless pairs.,\"pulls the tin out through the door, extending the package then throws it into the shelf.\",1\n9274,lsmdc1017_Bad_Santa-7779,18357,\"They exchange a smile and leave someone to slumber on. Later, someone\",They exchange a smile and leave someone to slumber on.,\"Later, someone\",gold,is at the front of the house lighting the candle bags someone had come around organizing.,sleeps with the quilt in his eyes.,lays on a couch and exercise awakes.,\"enters, strolls in an elegant apartment, in an ominous print dress.\",0\n9275,lsmdc1017_Bad_Santa-7779,18346,Someone sighs and walks to the van. He,Someone sighs and walks to the van.,He,gold,walks out of the car carrying them.,puts the gangsters on the ground.,\"removes the jump start cables from the van, returns to someone and clips them onto his ears.\",looks at the framed portrait of st.,2\n9276,lsmdc1017_Bad_Santa-7779,18347,\"He removes the jump start cables from the van, returns to someone and clips them onto his ears. Back at someone's, someone\",\"He removes the jump start cables from the van, returns to someone and clips them onto his ears.\",\"Back at someone's, someone\",gold,finds green blue troops waiting beside a pole.,sets down the rifle and fires.,goes to lie alone in the bathroom wall with a lanky and pensive device supporting his dark coat.,\"opens the front door to someone, who's got a bag of groceries.\",3\n9277,lsmdc1017_Bad_Santa-7779,18339,Someone heads back to his car and someone smiles. Someone,Someone heads back to his car and someone smiles.,Someone,gold,lurches toward his car and dashes off older his new convoy.,opens it and gets up.,lifts the bonnet of his chevy.,climbs off his car and creeps down a driveway.,2\n9278,lsmdc1017_Bad_Santa-7779,18352,\"In the hall, someone stands on a chair to put decorations on the tree. She pushes his hand away, so he\",\"In the hall, someone stands on a chair to put decorations on the tree.\",\"She pushes his hand away, so he\",gold,is never getting away.,takes out his necklace and gives the woman a hug.,reaches up and unzips the back of her skirt.,begins to put his lighter on her.,2\n9279,lsmdc1017_Bad_Santa-7779,18343,\"Someone nods to someone and she drops the van into gear, hits the gas, and crushes someone between the two vechicles. Someone reverses and someone\",\"Someone nods to someone and she drops the van into gear, hits the gas, and crushes someone between the two vechicles.\",Someone reverses and someone,gold,\"aims the gun at someone as it moves closer, hands on his lead.\",slithers down the grill of the chevy onto the ground.,grabs a breather as someone thrusts a hand to her mouth.,leaps out of someone and grabs her.,1\n9280,anetv_mwndGBRpOPg,4906,The person pushes themselves up into the air and flips back down. He,The person pushes themselves up into the air and flips back down.,He,gold,continues riding along the water.,continues smoking a cigarette while laughing to the camera.,continues flipping the skateboard's board together and ends by preparing to turn off the camera.,goes over to the tortilla while also putting on the shoes.,0\n9281,anetv_OdLcbH2H_zI,13200,An arrow graphic is seen and title text. A woman,An arrow graphic is seen and title text.,A woman,gold,stands on a dark lit room holding an accordion and demonstrating how to play it.,is then shown playing foosball.,stands outside a barn talking and hugs two ice glasses.,is siting down holding a tattoo that shows her nails.,0\n9282,anetv_OdLcbH2H_zI,13201,A woman stands on a dark lit room holding an accordion and demonstrating how to play it. The woman,A woman stands on a dark lit room holding an accordion and demonstrating how to play it.,The woman,gold,hold the cigarette without taking her fingers to the man.,puts the violin under her arm and begins to play it.,begins to play a song pressing in the keys.,how to play the flute and put a bow together.,2\n9283,anetv_OdLcbH2H_zI,13203,The woman pauses to discuss then plays more of the song. The woman,The woman pauses to discuss then plays more of the song.,The woman,gold,continues her play and changes her song on.,finishes and closes the accordion.,continues the drums and ends by moving by with a bow to her.,continues to play and the woman not successful hula in movements.,1\n9284,anetv_OdLcbH2H_zI,13202,The woman begins to play a song pressing in the keys. The woman,The woman begins to play a song pressing in the keys.,The woman,gold,continues to show the play.,pauses to discuss then plays more of the song.,pushes her strings numerous while laughing at the same time.,stops playing and smiles at the camera.,1\n9285,anetv_PAiJNr97C6g,17776,A man is shown speaking to the camera and begins riding around on a snowboard. Several other people,A man is shown speaking to the camera and begins riding around on a snowboard.,Several other people,gold,are shown riding attached to a car and leads into several others riding on boards and performing tricks.,are seen riding snowboards and speaking to the camera.,are shown riding around on skateboards as well as speaking to the camera and take the mountain.,laugh as well as people standing and speaking to the camera.,1\n9286,anetv_PAiJNr97C6g,17777,Several other people are seen riding snowboards and speaking to the camera. The people,Several other people are seen riding snowboards and speaking to the camera.,The people,gold,ride around a track while more people are seen riding on the bikes and riding in the area.,continue riding and people ski down the river and ride along.,ride on the snow as well as on and off the lift and ends with a man speaking.,ride camels on the field while the camera captures them from several angles.,2\n9287,anetv_PAiJNr97C6g,13095,\"A snowboard instructor on a snow slope area demonstrates through live example and via talking to the camera how to snowboard on a ski slope. A man in goggles, coat and\",A snowboard instructor on a snow slope area demonstrates through live example and via talking to the camera how to snowboard on a ski slope.,\"A man in goggles, coat and\",gold,skiers ski down the slope holding the hose in the water.,\"canvas fall, goes out on a patch.\",holding a snowboard talks into the camera while standing on a snow covered slope.,skis slide down the snow and a snowy hill that sits on his knees.,2\n9288,anetv_PAiJNr97C6g,13096,\"The people snowboarding are then seen on a ski lift, beginning the snowboarding exercise by getting off the ski lift and snowboarding using he ski lift as a catapult. The snowboard instructor then\",\"The people snowboarding are then seen on a ski lift, beginning the snowboarding exercise by getting off the ski lift and snowboarding using he ski lift as a catapult.\",The snowboard instructor then,gold,\"is on the set of water with his hands and walking, paddling up past.\",\"returns to talk to the camera, alone, again.\",begins walking down the path wearing a pair of shorts.,comes up to the boats sledding down the mountain on the other side a bit away from the slope in fast speeds.,1\n9289,anetv_ktYgm8bRK-g,11317,\"She progresses and adds another hula hip and both of them go on at the same time. In her next setting, she\",She progresses and adds another hula hip and both of them go on at the same time.,\"In her next setting, she\",gold,holds up the picture of her own.,straightens her injured spinning throw and walks towards the show at president lane and does a spin routine.,talks with a little one of the bottles and then discusses for herself.,has about five around her body and continues to dance.,3\n9290,anetv_ktYgm8bRK-g,11316,\"With the hula hoop, the girl begins flipping and dancing with it between her legs. She progresses and adds another hula hip and both of them\",\"With the hula hoop, the girl begins flipping and dancing with it between her legs.\",She progresses and adds another hula hip and both of them,gold,stand and applaud at the end.,sit in the middle of a hula.,gather it to shake hands.,go on at the same time.,3\n9291,anetv_ktYgm8bRK-g,11318,\"She continues to do the same thing with different amounts and with other body parts as people come and take pictures of her displaying her talent. Lastly, another small videos\",She continues to do the same thing with different amounts and with other body parts as people come and take pictures of her displaying her talent.,\"Lastly, another small videos\",gold,shows each performance for them to perform for the fencers.,appears showing advertisements for the jump rope sisters youtube page.,shows as applications at the end.,watches some young men practice jumping around coming on and finally speaking to the other at the end.,1\n9292,anetv_ktYgm8bRK-g,11315,\"A woman begins walking down a cobble stone sidewalk with brown boots and then she is seen twirling a hula hoop. With the hula hoop, the girl\",A woman begins walking down a cobble stone sidewalk with brown boots and then she is seen twirling a hula hoop.,\"With the hula hoop, the girl\",gold,moves her feet out of the top and begins trimming her nail.,hoists her extension hula hoop to land on on the ground as the audience cheers the woman beneath.,stands on the swings swinging the bat while the other woman watches her.,begins flipping and dancing with it between her legs.,3\n9293,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7703,She eyes him and shuts the door. A flashback,She eyes him and shuts the door.,A flashback,gold,shows a photo of someone on tv.,shows a man looking at someone and her mother.,shows a young woman on the beach.,shows her getting out on the bed.,2\n9294,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7702,She holds out her hand to take it back. She,She holds out her hand to take it back.,She,gold,\"wears a square lace, no sunglasses.\",juts out her black lips and lets her face drift beneath.,sets the lashes aside.,eyes him and shuts the door.,3\n9295,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7701,She hands him some money and he examines it. She,She hands him some money and he examines it.,She,gold,looks around the ballroom at someone.,asks someone named tattoo.,\"removes her hair, revealing her ashen toned features in someone's portrait.\",holds out her hand to take it back.,3\n9296,anetv_BNQPVf2Ia5Y,13047,The man trims a smaller light green hedge with the trimmer. The man,The man trims a smaller light green hedge with the trimmer.,The man,gold,walked away from the roll of paper.,cleans snow off the first person exhibits sharpening block.,trims another hedge with trimmer.,uses the painted sheet upon the first half.,2\n9297,anetv_BNQPVf2Ia5Y,13046,\"A man wearing black pants, a plaid shirt and baseball cap trims a dark green hedge with an electric hedge trimmer. The man\",\"A man wearing black pants, a plaid shirt and baseball cap trims a dark green hedge with an electric hedge trimmer.\",The man,gold,shows in front of the camera.,then turns on the foot of a tall fence in a yard and walks in front of it.,proceeds to dry the snow from the house.,trims a smaller light green hedge with the trimmer.,3\n9298,anetv_ZdwkA72VMKE,15118,One man follows behind and the two shuffling eventually move the puck into a hole. The three men,One man follows behind and the two shuffling eventually move the puck into a hole.,The three men,gold,finish as his chest crashes around the other boy on the sand as the boys try to point the ball forwards.,exchange one shot after another.,cheer with each other and give each other big hugs.,continue speaking and swim around behind them.,2\n9299,anetv_ZdwkA72VMKE,15117,Two men are shuffling brooms across a floor with another pulling it on a string. One man follows behind and the two shuffling eventually,Two men are shuffling brooms across a floor with another pulling it on a string.,One man follows behind and the two shuffling eventually,gold,begin to head turns the side.,clap themselves in between the men.,change a zero in the end.,move the puck into a hole.,3\n9300,anetv_wOZdXVdiB04,10192,A large group of people are seen playing dodgeball against one another and throwing the ball back and fourth. Many people,A large group of people are seen playing dodgeball against one another and throwing the ball back and fourth.,Many people,gold,hit the ball back and fourth as the men continue playing tennis with one another.,are seen running around the field using guns as well as celebrating.,help one another as they hit circle against the object and people while others watch on the side.,watch the game on the sidelines as people continue to play while some fall and walk in and out of frame.,3\n9301,anetv_uOUjBTlwoxg,7107,A house is shown with piles of snow in front. A person,A house is shown with piles of snow in front.,A person,gold,is mopping the grass with a brush.,is wiping the shoes of a long car.,is holding a plastic ornament attached to a sticker.,drags a skateboard through the snow.,3\n9302,anetv_uOUjBTlwoxg,7108,A person drags a skateboard through the snow. He,A person drags a skateboard through the snow.,He,gold,\"diver is skateboarding alone on the road manipulating the snowboard heavily, full of buildings, carwash, and slate streets.\",is then seen doing several stunts and falls through the yard.,falls into a pile of sand.,lunges down the alrge with it.,1\n9303,anetv_uOUjBTlwoxg,2635,A person is seen moving around on a snowboard around a yard. The person,A person is seen moving around on a snowboard around a yard.,The person,gold,rides around and running around the room.,proceeds in front of several people looking down into the grass.,falls and gets back up riding on the board.,continues moving down the hill and watches on the side.,2\n9304,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12805,\"Someone steps aside, as a vinyl disk returns to a record player. Books\",\"Someone steps aside, as a vinyl disk returns to a record player.\",Books,gold,\"fly back onto shelves, and a grand piano rights itself.\",player appears on the ground.,wander through the bar as she stares at the door.,slams the doors shut behind her as she gazes downward.,0\n9305,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12807,\"He raises his foot, and it zooms up to its rightful place. Someone\",\"He raises his foot, and it zooms up to its rightful place.\",Someone,gold,casts the jolting aside.,wears pajamas made from upholstery fabric.,shakes his head as he lifts it over his head.,gazes down at someone swinging on his wheelchair.,1\n9306,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12806,\"The missing plaster renews itself on the ceiling, and someone smiles. He\",\"The missing plaster renews itself on the ceiling, and someone smiles.\",He,gold,looks down at his feet.,takes off his sunglasses and cocks it.,gives someone a heart - interested look.,steps to the hall and gets to his feet.,0\n9307,anetv_IV5llWEEfAw,19258,A sailboat sails through rough waters in the ocean. The skipper,A sailboat sails through rough waters in the ocean.,The skipper,gold,pushes a muddy valley into them river in front.,\"passes by large trees in the pool, friends of kayakers.\",falls off the ground by the water on the cliff.,is seen manning the steering wheel at the back of the boat.,3\n9308,anetv_IV5llWEEfAw,19259,The skipper is seen manning the steering wheel at the back of the boat. The mast of the ship,The skipper is seen manning the steering wheel at the back of the boat.,The mast of the ship,gold,sails on to its stern.,is seen in full view.,is reflected beneath the horizon.,rises into the river.,1\n9309,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3797,They're all of someone's stuffed mice. The first,They're all of someone's stuffed mice.,The first,gold,pets someone away on his right looked drawn.,nappy is a little chocolate of their kitchen.,shows two mice getting married.,\", pauses, to someone, who smiles.\",2\n9310,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3793,He gets up and goes in the living room. Someone,He gets up and goes in the living room.,Someone,gold,takes a shirt out in a sweatshirt.,leans her against the wall of the fireplace and takes off his shades.,stands still holding someone's ball.,has finally fallen asleep on the sofa.,3\n9311,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3795,Someone picks some photographs up off the floor. He,Someone picks some photographs up off the floor.,He,gold,notes the details pinned.,marks the junior league.,puts lipstick in someone's crotch.,sits down and studies them.,3\n9312,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3791,The alarm clock says it's just after 4: 30 in the morning. Someone,The alarm clock says it's just after 4: 30 in the morning.,Someone,gold,lies awake in bed.,desperately swims around himself as the giant lays them under his arm.,stares blankly at the black costco sign that reads.,\"sits watching tv sullenly on the kitchen computer, as someone dances with a young man and wipes her new ear.\",0\n9313,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3798,The next shows the specky boy mouse returning home and finding the girl mouse in bed with a bearded mouse that wears a polo neck bib. The next,The next shows the specky boy mouse returning home and finding the girl mouse in bed with a bearded mouse that wears a polo neck bib.,The next,gold,morning someone returns to an apartment eating a cigarette and looks around.,girl is the same with the woman from the rodeo boy and also wearing the blue dress.,'s feet begin to put in the form and the man dropped both socks.,shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him.,3\n9314,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3789,Someone puts someone in front of the tv with snacks and sticks headphones on him. Someone,Someone puts someone in front of the tv with snacks and sticks headphones on him.,Someone,gold,returns and stares at a mirror angle.,plunges into the kitchen.,pulls a pillow over his head to block out someone's laughter.,is still in shock.,2\n9315,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3792,Someone lies awake in bed. He,Someone lies awake in bed.,He,gold,\"sets his head down on her shoulder, then surveys some sign for the exhibit.\",\"stares sadly, then lowers his hands from his pocket.\",gets up and goes in the living room.,leans against the wall and shakes his head.,2\n9316,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3799,The next shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him. Portions of cheese,The next shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him.,Portions of cheese,gold,is show behind the room when finally out of a small board.,are in front of him and the photo.,is put in the floor and adds more bread to it.,are quickly made around three more cardboard on the box.,1\n9317,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3790,Someone pulls a pillow over his head to block out someone's laughter. The alarm clock,Someone pulls a pillow over his head to block out someone's laughter.,The alarm clock,gold,shows four minutes to fifteen.,says it's just after 4: 30 in the morning.,stands on the corner of the loft away from any time the last things is moving toward: he gets a key with one.,reads 1 minute.,1\n9318,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3802,\"The next morning, someone gets someone some cereal. Someone\",\"The next morning, someone gets someone some cereal.\",Someone,gold,watches him from the painfully seat.,offers her a napkin then taps all at her husband.,sets over half the water.,picks up someone's mobile by mistake and goes out.,3\n9319,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3786,Someone goes into his bedroom. Someone,Someone goes into his bedroom.,Someone,gold,settles down on the couch.,goes to the kitchen window.,cocks his head restlessly.,points at his reflection in the mirror.,0\n9320,lsmdc3022_DINNER_FOR_SCHMUCKS-10455,3794,Someone has finally fallen asleep on the sofa. Someone,Someone has finally fallen asleep on the sofa.,Someone,gold,walks up to find someone's pickup.,\"is being wounded who lies in her raft ahead, not the people who stand up, not quite close.\",\"is gasping, more slowly toward the diary also glinting.\",picks some photographs up off the floor.,3\n9321,anetv_7UrJuhFvlQ4,9712,The leaves fly up in the air but stick largely together as the the leaf blower wipes the ground clean of brown leaves and starts to form piles on the lawn. The camera occasionally and finally,The leaves fly up in the air but stick largely together as the the leaf blower wipes the ground clean of brown leaves and starts to form piles on the lawn.,The camera occasionally and finally,gold,puts leaves in suburban brown cabins to show the offscreen animals.,ends with a person picking off the leaves.,\"walks the car to different dirt towards the gate that go to the angles of the house, and go down.\",settles on a yellow riding lawn mower sitting in the yard beyond the piles of leaves.,3\n9322,anetv_4x08i2_AYKo,1806,The man speeds up then returns to his initial speed. The man,The man speeds up then returns to his initial speed.,The man,gold,looks up and prepares the machine in slow stream.,pulls up traffic on ibs.,reaches the park's sign and comes to a stop.,gets down from the leaves again and the man does a big flip.,2\n9323,anetv_4x08i2_AYKo,1805,Turns to his right and walks pass a row of benches. The man,Turns to his right and walks pass a row of benches.,The man,gold,lowers the binoculars as the crowd looks un - upon in atlantic city.,\"sits beside someone, studies his wand, then notes him to review the golden papers.\",speeds up then returns to his initial speed.,\"swings open and along the building hat following his crane and going back to a regular angle, then stands outside.\",2\n9324,anetv_4x08i2_AYKo,1804,A man walks on stilts into a park. Turns to his right and,A man walks on stilts into a park.,Turns to his right and,gold,jumps back to finish.,walks pass a row of benches.,runs as another man can follow after him.,picks up the camera.,1\n9325,lsmdc3009_BATTLE_LOS_ANGELES-539,14134,Someone cranks the stirring wheel. Someone,Someone cranks the stirring wheel.,Someone,gold,flashes a woman couple of african dressed.,comforts the blonde girl.,\"bounces his leg, marking speed.\",puts the wires in the safe.,1\n9326,lsmdc1058_The_Damned_united-98441,7038,Someone follows someone into the Leeds dressing room. Someone,Someone follows someone into the Leeds dressing room.,Someone,gold,\"notes on an just nearby cabinet feature, its shadows at its sides.\",takes a note from his blazer pocket.,\"smiles, who stares forward, horrified.\",crosses to a small waiting cafe where its left door stands.,1\n9327,anetv_M_E1i4S8Vp0,13415,A girl talks in front of a swing. She,A girl talks in front of a swing.,She,gold,lays a large log on the floor.,starts to swing and then goes higher for the whole video.,enters from behind the boy using a pair of shears.,jumps off of a beam on the bike.,1\n9328,anetv_M_E1i4S8Vp0,7124,A young girl is seen dancing around in front of a swing. The jumps on the swing and,A young girl is seen dancing around in front of a swing.,The jumps on the swing and,gold,moves herself back and fourth.,catches her swinging all around the room.,jumps onto the bars in the end.,ends by taking a few shots on the ground.,0\n9329,anetv_M_E1i4S8Vp0,7125,The jumps on the swing and moves herself back and fourth. She,The jumps on the swing and moves herself back and fourth.,She,gold,catches up with his right leg up and flips them all all together on both sides.,moves along the side and ends by walking away from the camera.,moves away to speak to other people and continues to walk on the road.,continues riding up and down on the swing.,3\n9330,lsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14768,He pulls down the blind. He,He pulls down the blind.,He,gold,moves toward the bed.,curls his fingers thoroughly to the wall.,looks back at the workstation.,looks down at the lake.,0\n9331,lsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14767,He has moved over to the coat on back of chair. His hand,He has moved over to the coat on back of chair.,His hand,gold,has perhaps six inches from his hand.,is firmly beside the camera.,goes into the pocket and brings the knife out.,folds and looks up at the camera.,2\n9332,lsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14766,He has heard the voice and starts to move out of close shot. He,He has heard the voice and starts to move out of close shot.,He,gold,see the clothes slapping forward by a tree - escape.,has moved over to the coat on back of chair.,holds the mic on his neck and claps it.,is still being arrested and the other door is then attacked.,1\n9333,anetv_H8MY7XGrN6Q,4223,A person is seen roller balding around a street while many people are seen walking around him. A man,A person is seen roller balding around a street while many people are seen walking around him.,A man,gold,is then being interviewed by reporters and ends with the camera panning away.,is seen walking down the street squishing a ball into a cup while looking off into the distance.,pushes into the keys and grabs his hands while looking off to the camera.,is swinging the back of a bicycle while others.,0\n9334,lsmdc1001_Flight-72032,16807,Someone opens a writing pad. Someone,Someone opens a writing pad.,Someone,gold,covers the panel with the hand.,\"clear liquid, he picks up.\",strokes on someone's knee.,\"shifts, his hands resting on the table.\",3\n9335,anetv_hru57dsi0N0,1570,She shows off her bare feet and their shape. She then,She shows off her bare feet and their shape.,She then,gold,finishes her routine casually.,puts on and tries to lace her shoes around the swollen feet.,cartwheels down the grand hallway.,takes the earring off the needle.,1\n9336,anetv_hru57dsi0N0,1569,A woman is seated in a chair in a dining room. She,A woman is seated in a chair in a dining room.,She,gold,has her hands on her hips.,is using a trainer to talk about how to braid the hair and style her hair.,shows off her bare feet and their shape.,are pedaling in her room and dries her hair.,2\n9337,anetv_eCXiGAChev4,9145,Woman is cleaning utensils in a bucket. woman,Woman is cleaning utensils in a bucket.,woman,gold,is putting ingredients in a pot bowl.,is on a appliance and start washing a little.,uses a gun to clean the mop.,is standing on the field wearing a black dress.,3\n9338,anetv_eCXiGAChev4,10438,A person is sitting down in front of a bucket. Another person,A person is sitting down in front of a bucket.,Another person,gold,is laying down talking and lead into him kicking the ball in a green room.,\"stops, talking about it.\",is standing on the grass in front of them.,is rubbing a hole in the board.,2\n9339,anetv_QBJelFFVJu0,10,A person holds a harmonica between his hands a plays a song. The person,A person holds a harmonica between his hands a plays a song.,The person,gold,finishes the song and holds up the harmonica.,plays the guitar around the band.,plays a game of grass on his violin as he watches it play.,plays the piano while the camera captures his movements.,0\n9340,anetv_QBJelFFVJu0,9,The harmonica is held up and shown. A person,The harmonica is held up and shown.,A person,gold,is working rural materials against the paint wall.,hug her side briefly and continue riffles.,holds a harmonica between his hands a plays a song.,walks by in front of the camera.,2\n9341,lsmdc3055_PROMETHEUS-27099,8064,Someone takes off her helmet. Someone and someone,Someone takes off her helmet.,Someone and someone,gold,walk out and reach a second river with a clear tube of a carrier ramp.,run down a corridor.,watch from the bridge.,reach the plane holding circus equipment.,2\n9342,lsmdc3055_PROMETHEUS-27099,8073,\"The aide shoots the engineer, and he drops the head. The engineer\",\"The aide shoots the engineer, and he drops the head.\",The engineer,gold,\"turns someone around and palms her chest, knocking her off the platform.\",opens slightly above the window and stares down in horror.,drags out her cigarette.,heaves the sheet back onto the bed.,0\n9343,lsmdc3055_PROMETHEUS-27099,8066,\"Someone steps past his aide who lowers a gun. As the engineer sits up, several tubes\",Someone steps past his aide who lowers a gun.,\"As the engineer sits up, several tubes\",gold,detach from his oxygen mask.,walk from the gates of the titanic.,come from one line and through the volume like u's been potion.,slide down beneath them.,0\n9344,lsmdc3055_PROMETHEUS-27099,8083,\"A holographic sphere emerges around him, and widening outer rings flip into place. Someone\",\"A holographic sphere emerges around him, and widening outer rings flip into place.\",Someone,gold,\"flinches, revealing the bandage someone dropped from another.\",stops to catch her breath.,winks with pride in it and well.,flips the hurdle and falls to the ground and throws down into a fetal position.,1\n9345,lsmdc3055_PROMETHEUS-27099,8093,\"Running for Prometheus, someone jumps another gap, but falls short and grabs hold of the opposite ledge. She\",\"Running for Prometheus, someone jumps another gap, but falls short and grabs hold of the opposite ledge.\",She,gold,nudges at his underling.,looks at the roof.,\"motionless, people completely want them.\",\"pulls herself up, then finds her path blocked for certain.\",3\n9346,lsmdc3055_PROMETHEUS-27099,8062,He leads them to the working pod. Someone,He leads them to the working pod.,Someone,gold,collapses to her knees in pain.,leans over to see the tile roof slide off.,watches impassively as an alien crawls forward.,prepare themselves to clean out and see it.,0\n9347,lsmdc3055_PROMETHEUS-27099,8080,\"The center of the disc drops, then rotates counter clockwise and opens for a head and pillar to emerge. Someone\",\"The center of the disc drops, then rotates counter clockwise and opens for a head and pillar to emerge.\",Someone,gold,leads his huge body down a rocky staircase.,tries to look in its direction.,'s face falls.,runs back into the jungle.,1\n9348,lsmdc3055_PROMETHEUS-27099,8063,Someone collapses to her knees in pain. Someone,Someone collapses to her knees in pain.,Someone,gold,\"spins around, straightens up and closes her arms.\",takes off her helmet.,is lying in bed.,holds the dagger up to someone.,1\n9349,lsmdc3055_PROMETHEUS-27099,8084,\"Someone stops to catch her breath. As the engineer works the controls, a brief flash\",Someone stops to catch her breath.,\"As the engineer works the controls, a brief flash\",gold,appears in the water.,illuminates his crescent shaped ship.,shows the two men lying around.,is right before her.,1\n9350,lsmdc3055_PROMETHEUS-27099,8088,As our view retracts through the star map a holographic line sets out from the gunner chair and targets hologram of the planet earth. She,As our view retracts through the star map a holographic line sets out from the gunner chair and targets hologram of the planet earth.,She,gold,\"rises to her feet, standing beside one of the erupting plumes.\",pushes into the opening.,\"cautiously returns, cradling a gun.\",leads two civilians back into a brown diner.,0\n9351,lsmdc3055_PROMETHEUS-27099,8070,The engineer looks at someone who eagerly waits for a reply. He,The engineer looks at someone who eagerly waits for a reply.,He,gold,\"strides past a hulking, empty figure of a figure standing in front of windows.\",takes out his cellphone and takes out the newspaper.,\"repeats the same action, then climbing.\",gently lays his hand on the top of someone's head.,3\n9352,lsmdc3055_PROMETHEUS-27099,8086,\"The exhaust hurls her through passage leading outside. Through a window, the crew\",The exhaust hurls her through passage leading outside.,\"Through a window, the crew\",gold,watches thin plumes of smoke rise from the ground.,proceeds through a wooden roof.,are looking at a marketplace at her painting.,stares down at the podiums.,0\n9353,lsmdc3055_PROMETHEUS-27099,8078,Someone's head lies about a foot away. On the bridge someone,Someone's head lies about a foot away.,On the bridge someone,gold,peers into a patch of corn boxes.,watches a video feed showing her father's heart rate.,remains motionless as he returns to the supply room.,leans on the rail stick in front of him.,1\n9354,lsmdc3055_PROMETHEUS-27099,8090,\"She runs for Prometheus, but the ground fissures, threatening to cut her off from the ship. As the gap widens she\",\"She runs for Prometheus, but the ground fissures, threatening to cut her off from the ship.\",As the gap widens she,gold,knocks the light from the gym and sees a sign in the distance.,stumbles and runs down the narrow slope.,jumps the fissure and runs on.,\"reaches the railing, slides into the water.\",2\n9355,lsmdc3055_PROMETHEUS-27099,8077,Now someone lies wounded on the floor. Someone's head,Now someone lies wounded on the floor.,Someone's head,gold,lies on chest.,is turned in red.,does supported by the guests.,lies about a foot away.,3\n9356,lsmdc3055_PROMETHEUS-27099,8087,\"Through a window, the crew watches thin plumes of smoke rise from the ground. As our view retracts through the star map a holographic line\",\"Through a window, the crew watches thin plumes of smoke rise from the ground.\",As our view retracts through the star map a holographic line,gold,shows the elder girl in a pale blue dress with asgard.,sets out from the gunner chair and targets hologram of the planet earth.,glows along a narrow ridge toward a slate - grey rooftop jutting to los atlantic skyscrapers.,looms over someone and nestled near a branch of yellowstone.,1\n9357,lsmdc3055_PROMETHEUS-27099,8067,\"As the engineer sits up, several tubes detach from his oxygen mask. He\",\"As the engineer sits up, several tubes detach from his oxygen mask.\",He,gold,rides through the upper windows with his foot on the oar.,tackles someone forward and backward to the doors on the tomb.,holds a cloth out coat over the body.,takes off his headgear and hunches over.,3\n9358,lsmdc3055_PROMETHEUS-27099,8071,\"He gently lays his hand on the top of someone's head. With both hands, he\",He gently lays his hand on the top of someone's head.,\"With both hands, he\",gold,walks back to her with a kiss on his cheek.,rests his head on his shoulder.,\"grabs someone by the throat, then lifts him off his feet and breaks his neck.\",stares at her sprinkle sweets.,2\n9359,lsmdc3055_PROMETHEUS-27099,8072,\"With both hands, he grabs someone by the throat, then lifts him off his feet and breaks his neck. He\",\"With both hands, he grabs someone by the throat, then lifts him off his feet and breaks his neck.\",He,gold,punches someone in the gut and falls off.,\"reaches up, pats his arms, then spins his neck.\",manages to break out of the window throwing the seat back into the car.,rips someone's head off and strikes someone with it.,3\n9360,lsmdc3055_PROMETHEUS-27099,8081,\"Running through a tunnel, someone glances back. As the engineer climbs onto the gunner chair, we\",\"Running through a tunnel, someone glances back.\",\"As the engineer climbs onto the gunner chair, we\",gold,watch someone go sideways.,follow someone taking out the manuscript.,hear her breathing continuing.,glimpse someone's motionless face in profile.,3\n9361,lsmdc3055_PROMETHEUS-27099,8091,As the gap widens she jumps the fissure and runs on. We,As the gap widens she jumps the fissure and runs on.,We,gold,glimpse the ceiling opening up over the crescent shaped ship.,scuttles off where approaching a tree.,at the bottom of the stairs.,are circling outside of the mountainside gate.,0\n9362,lsmdc3055_PROMETHEUS-27099,8075,\"He strikes the aide, flings him into a wall across the chamber. Someone\",\"He strikes the aide, flings him into a wall across the chamber.\",Someone,gold,stretches as his catapult flails downwards.,slows to a stop and braces herself on a wall.,\"drops into a body of water, rubbing a hand over his face and knees.\",tries to escape the hydraulic reactor during the mace.,1\n9363,lsmdc3055_PROMETHEUS-27099,8085,\"The helmet shields his face, then more armor shields his body. The exhaust\",\"The helmet shields his face, then more armor shields his body.\",The exhaust,gold,hurls her through passage leading outside.,pours out to reveal people buzz around.,fronted which contains many armed sailors.,heaves and falls in the rigid floor.,0\n9364,lsmdc3055_PROMETHEUS-27099,8068,The engineer looks at someone. The aide,The engineer looks at someone.,The aide,gold,strikes someone in the gut with his gun.,\"exchanges it with the skiptracer, someone at his side.\",opens the door to reveal his mother's pink spikey face.,\"strides off, leaving the family carrier and chips through a window.\",0\n9365,lsmdc3055_PROMETHEUS-27099,8092,\"We glimpse the ceiling opening up over the crescent shaped ship. Running for Prometheus, someone\",We glimpse the ceiling opening up over the crescent shaped ship.,\"Running for Prometheus, someone\",gold,fastens the glinting sparks on someone's lips and takes web address.,\"jumps another gap, but falls short and grabs hold of the opposite ledge.\",sniffs a sample of the mortar's chains.,jumps down the pole deck and catches someone crouched in the knee.,1\n9366,lsmdc3055_PROMETHEUS-27099,8079,\"Someone looks at his rattled shipmate, then lowers his gaze. He\",\"Someone looks at his rattled shipmate, then lowers his gaze.\",He,gold,smacks someone's head.,\"passes a window and pulls back, with his pipe loosened.\",glances to someone who gets to her feet and points her wand to her lips.,\"licks his lips, then shifts in his seat.\",3\n9367,lsmdc3055_PROMETHEUS-27099,8074,\"The engineer turns someone around and palms her chest, knocking her off the platform. He\",\"The engineer turns someone around and palms her chest, knocking her off the platform.\",He,gold,follows the door and finds the suv pulling away.,fade to the moon.,\"strikes the aide, flings him into a wall across the chamber.\",jumps from the toilet and into another opening.,2\n9368,lsmdc3055_PROMETHEUS-27099,8082,\"As the engineer climbs onto the gunner chair, we glimpse someone's motionless face in profile. The engineer\",\"As the engineer climbs onto the gunner chair, we glimpse someone's motionless face in profile.\",The engineer,gold,cringing someone's tracking jet.,\"dangles above the guy's head, it roars above his head.\",turns slowly and looks at someone as he walks in on the ground.,\"takes a seat, then activates the star map.\",3\n9369,lsmdc3055_PROMETHEUS-27099,8076,Someone slows to a stop and braces herself on a wall. Now someone,Someone slows to a stop and braces herself on a wall.,Now someone,gold,lies wounded on the floor.,spots someone's phone on her laptop.,flips through a wall book.,picks the pasta from a noodles bin.,0\n9370,lsmdc3055_PROMETHEUS-27099,8089,\"She rises to her feet, standing beside one of the erupting plumes. She runs for Prometheus, but the ground fissures,\",\"She rises to her feet, standing beside one of the erupting plumes.\",\"She runs for Prometheus, but the ground fissures,\",gold,\"winding curves all the way to the blackness, looking down.\",threatening to cut her off from the ship.,sending it running out from behind.,timber over the rooftops.,1\n9371,lsmdc3001_21_JUMP_STREET-226,18409,\"Now in his office, the Captain slowly chews a sandwich in his hands. Holding someone and someone in a disapproving glare he\",\"Now in his office, the Captain slowly chews a sandwich in his hands.\",Holding someone and someone in a disapproving glare he,gold,gives two tequila shots.,fixes them with a serving smile.,points at them accusingly.,goes into an interrogation room.,2\n9372,lsmdc3001_21_JUMP_STREET-226,18407,Someone dry humps someone with a full duffle bag. Someone,Someone dry humps someone with a full duffle bag.,Someone,gold,turns on the x - rays and sees it's someone.,ran after it and exit the gate.,\"lurches, picks to his knees, and looks out.\",smiles at her phone.,3\n9373,lsmdc3001_21_JUMP_STREET-226,18406,Someone pounds someone's crotch with a stuffed giraffe's head. Someone dry,Someone pounds someone's crotch with a stuffed giraffe's head.,Someone dry,gold,humps someone with a full duffle bag.,\"leaves, turning on all lights of the car.\",balls at a table in a latrine.,hands at the patrons.,0\n9374,lsmdc3001_21_JUMP_STREET-226,18405,He pounces on someone playfully. He,He pounces on someone playfully.,He,gold,crawls to his face.,throws him again as he hops onto a stage.,sits on his head.,disappears down from someone's statue's face.,2\n9375,anetv_j_IJQAywTuU,377,A young boy is seen riding along a skateboard followed by several more shots of people riding on boards. The boys,A young boy is seen riding along a skateboard followed by several more shots of people riding on boards.,The boys,gold,perform several tricks while the camera pans into the sky and move up and down the track.,ride around during bikes as well as racing around the track riding their bikes and riding a lawnmower.,swim around the area with a group of people and watch people on the hills.,get in a bike and walk down a snowy mountain.,0\n9376,lsmdc0021_Rear_Window-58359,5113,Someone begins to move around the room assembling her possessions preparatory to leaving. Someone,Someone begins to move around the room assembling her possessions preparatory to leaving.,Someone,gold,stares down at her prize.,turns into the fierce frustration.,begin to get desperate.,is falling from the rocker.,2\n9377,lsmdc0021_Rear_Window-58359,5116,\"Someone starts to say something then thinks better of it, and remains silent. Someone\",\"Someone starts to say something then thinks better of it, and remains silent.\",Someone,gold,gets to the buffet and trips without noticing.,turns in the half - opened door.,slams someone's door shut.,\"looks back from the safe, disgruntled, and grabs his phone.\",1\n9378,lsmdc0021_Rear_Window-58359,5111,\"Someone starts to rise from the divan, the camera panning up. Someone\",\"Someone starts to rise from the divan, the camera panning up.\",Someone,gold,\"has her sharp sunglasses bouncing, someone stands frozen in silhouette.\",\"enters and picks up a few mops, then takes a drink.\",switches to someone and places one hand on her head.,looks across at her with some concern.,3\n9379,lsmdc0021_Rear_Window-58359,5115,Someone's eyes follow her up the steps toward the door. Someone,Someone's eyes follow her up the steps toward the door.,Someone,gold,\"stands stroking someone's apartment door, then.\",\"leans his face close to hers, as if locked on dynamite.\",ambles down a long corridor but the doors swing open.,\"starts to say something then thinks better of it, and remains silent.\",3\n9380,anetv_y7i-jRmrwnI,10828,She takes a drink out of a wine glass. She,She takes a drink out of a wine glass.,She,gold,continues doing dishes in the sink.,\"spots a bottle for doughnut, and puts a coffee cup down to the table gently using her arm.\",pours down the cup.,\"pours out the blender, tastes it, and leaves it in her mouth.\",0\n9381,anetv_y7i-jRmrwnI,12201,A woman is standing at a sink. She,A woman is standing at a sink.,She,gold,instructs on how to start shaving the furniture.,is applying the paint on the sole covering her breasts.,is washing dishes in the sink.,opens a shirt and puts them in the bin.,2\n9382,anetv_y7i-jRmrwnI,10829,She continues doing dishes in the sink. She,She continues doing dishes in the sink.,She,gold,\"pans all around the bar, washing dishes.\",looks out the window in front of her.,dips into the water under the sink.,puts several lights on the grill.,1\n9383,anetv_y7i-jRmrwnI,12202,She is washing dishes in the sink. She,She is washing dishes in the sink.,She,gold,dumps a mug into the sink and starts wiping the sink.,\"soaps up beneath the soap, then uses the shower to rinse it.\",picks up a wine glass and takes a drink.,\"cleans up the sink, washing them.\",2\n9384,anetv_y7i-jRmrwnI,12203,She picks up a wine glass and takes a drink. She,She picks up a wine glass and takes a drink.,She,gold,continues to do the dishes in the sink.,takes a glass and drinks.,serve his coffee in a smaller glass.,uses a spoon to complete the drink and continues to mix the drink.,0\n9385,anetv_y7i-jRmrwnI,10827,A woman is standing over a sink doing dishes. She,A woman is standing over a sink doing dishes.,She,gold,is washing dishes in a sink.,'s washing her hands by different woman.,takes a drink out of a wine glass.,is standing up washing dishes in the sink.,2\n9386,lsmdc3038_ITS_COMPLICATED-17334,1274,She digs out her cell phone. Screwing her mouth to one side she,She digs out her cell phone.,Screwing her mouth to one side she,gold,lowers the phone and looks away.,straddles her alarm clock.,watches her hit her gun back and forth in front of her.,puts it down on her handheld.,0\n9387,lsmdc3038_ITS_COMPLICATED-17334,1273,She reaches for her bag then hesitates. She,She reaches for her bag then hesitates.,She,gold,dumps the groceries off.,averts her eyes as she goes forward.,waves on the news.,digs out her cell phone.,3\n9388,lsmdc3038_ITS_COMPLICATED-17334,1275,Screwing her mouth to one side she lowers the phone and looks away. She,Screwing her mouth to one side she lowers the phone and looks away.,She,gold,lets out a sigh and opens the lid.,manages a brief tearful smile and continues.,takes one of the 21 photos.,holds it open and looks up at the young women.,1\n9389,lsmdc3038_ITS_COMPLICATED-17334,1276,She manages a brief tearful smile and continues. Lifting her brow someone,She manages a brief tearful smile and continues.,Lifting her brow someone,gold,puts her fingers together and leans over desperately on the window.,\"sets down the bow, smiling, then goes to the bar where he sat his hands in his pocket, and twirls his jacket\",waves victoriously and lowers her weapon.,gives a wide - eyed nod.,3\n9390,lsmdc3087_WE_BOUGHT_A_ZOO-41755,3014,Someone wraps his arms around her and they share a warm heartfelt embrace. The teen boy,Someone wraps his arms around her and they share a warm heartfelt embrace.,The teen boy,gold,holds a coin and a brand.,parks his family.,\"leans diagonally into someone window, his feet planted in a flowerbed as he holds her.\",\"bows his head, and flings his arms around his gaunt son.\",2\n9391,anetv_XSNenkxgryQ,18623,A news anchor presents a story behind a desk in a large newsroom. People,A news anchor presents a story behind a desk in a large newsroom.,People,gold,are seen smoking regular cigarettes and electric cigarettes.,try to play a game of polo and end with team mates.,starts climbing a tree with a large shovel as she goes to push snow.,are on the decks each with one seated the flaming cars.,0\n9392,anetv_XSNenkxgryQ,18625,The news anchor talks with a guest in the newsroom. Professionals,The news anchor talks with a guest in the newsroom.,Professionals,gold,sit at tables together under great pews.,are clapping for the japanese skateboards.,are seen in there offices discussing the subject.,is sitting on the kitchen table as they play clean.,2\n9393,anetv_XSNenkxgryQ,18624,People are seen smoking regular cigarettes and electric cigarettes. The news anchor,People are seen smoking regular cigarettes and electric cigarettes.,The news anchor,gold,talks with a guest in the newsroom.,streams with a news record.,is seen sailing in the water.,lies back beside the radioman.,0\n9394,anetv_XSNenkxgryQ,18626,Professionals are seen in there offices discussing the subject. Text,Professionals are seen in there offices discussing the subject.,Text,gold,and taunts are shown of a group of people in the car and competing in a wrestling match.,demonstrates different martial arts shoes and how to properly use the gaming tiles in order to clean out in leaded windows.,follows behind doing it in the pumpkin.,is seen against a red background with a website and information.,3\n9395,lsmdc1005_Signs-5152,10231,Someone's bedroom window looks out over the scene. The family,Someone's bedroom window looks out over the scene.,The family,gold,\"remains crowded crowded by the children, their eyes glued to the darkness.\",\"dark, people still glanced to each other and tightly straining for their breath.\",look up at two paintings from the ceiling.,huddled together on the grass near the picnic table and brick barbecue.,3\n9396,lsmdc1005_Signs-5152,10225,He slams the bat into the alien. The creature,He slams the bat into the alien.,The creature,gold,\"knocks out the driver's hand, but catches him in the eye.\",\"topples over, landing on his back and knocking against a small sideboard.\",watches from a gap.,snaps the claws up in a circle.,1\n9397,lsmdc1005_Signs-5152,10211,\"His eyes glazed with tears, someone stares at the alien as it rocks back and forth, leaning over its captive hanging limply over its arm. Someone\",\"His eyes glazed with tears, someone stares at the alien as it rocks back and forth, leaning over its captive hanging limply over its arm.\",Someone,gold,\"drags the gun down from his jaws, then collapses, snapping his arms.\",goes slowly under the screen door and returns to the other side of the room.,\"turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother.\",lays his hand on someone's back.,2\n9398,lsmdc1005_Signs-5152,10223,The alien recoils as its skin is splashed with liquid. Someone,The alien recoils as its skin is splashed with liquid.,Someone,gold,prepares for another strike.,rolls its head back and forth by a foam crotch.,spreads the surface causing the killer to face the object.,licks a slice of lemon and chews.,0\n9399,lsmdc1005_Signs-5152,10218,\"As the water spills onto its shoulder, an angry red wound erupts in its green gray skin. People\",\"As the water spills onto its shoulder, an angry red wound erupts in its green gray skin.\",People,gold,\"move onto the couch, listening.\",stare around the room at the collection of discarded glasses of water.,lie unconscious.,try to push each other in a blanket.,1\n9400,lsmdc1005_Signs-5152,10235,\"Someone comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck. He\",\"Someone comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck.\",He,gold,\"pulls the bathroom door closed, does up his shirt cuff buttons and puts on his watch.\",pulls up the cab of a cinema cafe and walk him towards the entrance.,\"opens the door to the luxury apartment building, looking tough in black.\",is using a pair of clippers in the supply bag with all of them.,0\n9401,lsmdc1005_Signs-5152,10234,The door to the on suite bathroom is ajar. Someone,The door to the on suite bathroom is ajar.,Someone,gold,\"lifts up the barbells and examines them carefully, then jogs up to the side of the closet.\",\"comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck.\",stands in the corner and sees someone still in the gym.,opens the door and goes inside.,1\n9402,lsmdc1005_Signs-5152,10228,\"The alien takes deep, difficult breaths. Someone\",\"The alien takes deep, difficult breaths.\",Someone,gold,has last his handkerchief into an awkward can.,breaks the curtain in.,hurries out into the garden and crouches down by people.,remains face the groin.,2\n9403,lsmdc1005_Signs-5152,10226,\"The creature topples over, landing on his back and knocking against a small sideboard. The broken head of the bat\",\"The creature topples over, landing on his back and knocking against a small sideboard.\",The broken head of the bat,gold,flies away from the cloud.,hits a blossoming tree.,\"lies on the floor, shards of glass around it.\",swats someone into the trunk.,2\n9404,lsmdc1005_Signs-5152,10227,\"The broken head of the bat lies on the floor, shards of glass around it. The alien\",\"The broken head of the bat lies on the floor, shards of glass around it.\",The alien,gold,lifts the glass to the glass of two as he walks.,glances up at the receptionist sitting in her bed.,\"takes deep, difficult breaths.\",stops before the van.,2\n9405,lsmdc1005_Signs-5152,10232,Early morning sunshine floods the lawn. The light brown curtains,Early morning sunshine floods the lawn.,The light brown curtains,gold,\"blows the wind, revealing people other ornate wooden buildings.\",gather on the taj wall.,flap in the breeze like loosened sails.,seem to be present and there is a little more as we talk.,2\n9406,lsmdc1005_Signs-5152,10233,The board across another window in the room remain intact. And large flakes of fresh white snow,The board across another window in the room remain intact.,And large flakes of fresh white snow,gold,drift down outside the repaired windows of the room.,swarm in the dark behind a boy walking dead.,float from the craft.,float up out on the scene.,0\n9407,lsmdc1005_Signs-5152,10220,\"Someone turns to someone in astonishment. On the veranda, someone\",Someone turns to someone in astonishment.,\"On the veranda, someone\",gold,looks back into the living room through a broken window as someone heads out onto the lawn.,is staring gravely out of his bedroom.,stands several paces ahead of her.,leans in close as someone's face dashes forward.,0\n9408,lsmdc1005_Signs-5152,10216,Someone strikes the creature in its abdomen. It,Someone strikes the creature in its abdomen.,It,gold,settles against the wall of someone's room.,\"falls into a side table, knocking over a glass of water.\",lifts it as it soars and loses its fake wings.,swings into someone's arms.,1\n9409,lsmdc1005_Signs-5152,10212,\"Someone turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother. He\",\"Someone turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother.\",He,gold,turns back around to stare with stern determination at the alien.,\"leaps down to the ledge and swings his leg up against his, his butt illuminated with firelight.\",sidles someone on the shoulder toward the morgul.,reaches his dead nose and opens his eyes.,0\n9410,lsmdc1005_Signs-5152,10219,People stare around the room at the collection of discarded glasses of water. Someone,People stare around the room at the collection of discarded glasses of water.,Someone,gold,turns to someone in astonishment.,shields her eyes from each side.,opens the paper to reveal a private file.,cia agents file in.,0\n9411,lsmdc1005_Signs-5152,10230,\"Someone, his eyes closed, cradles his limp son. Someone\",\"Someone, his eyes closed, cradles his limp son.\",Someone,gold,presses someone's neck and recoils.,trades a glance on the spot.,lets go of someone's spear.,\"climbs up the grand staircase and reclines, staring off at someone.\",0\n9412,lsmdc1005_Signs-5152,10222,Someone swings the bat at glasses on the coffee table. The alien,Someone swings the bat at glasses on the coffee table.,The alien,gold,recoils as its skin is splashed with liquid.,grabs a lamp post and goes down a boom.,gets back in the pool.,stops him from swerve.,0\n9413,lsmdc1005_Signs-5152,10224,Someone prepares for another strike. He,Someone prepares for another strike.,He,gold,remembers the sword back at someone's chest.,slams the bat into the alien.,sits on the basement's elevated platform.,'s a first man with the sword up.,1\n9414,lsmdc1005_Signs-5152,10213,Its small eyes glowing green in their sunken sockets. Someone,Its small eyes glowing green in their sunken sockets.,Someone,gold,watches him exit the mansion.,\"disappear from view as the limbs part, screwing one.\",takes the bat down.,\"can still face him suddenly, but does n't think only they would do this for a few seconds.\",2\n9415,lsmdc1005_Signs-5152,10214,Someone takes the bat down. The alien,Someone takes the bat down.,The alien,gold,walks slowly past the biker.,is dragged away from someone.,throws it out of the ice.,lowers its hand over someone's face.,3\n9416,anetv_99Mk5a8Tvyk,5519,\"There are several other people in that park with their dogs, sitting under canopies. The man\",\"There are several other people in that park with their dogs, sitting under canopies.\",The man,gold,get into the back of the car and continues snowboarding.,is throwing a frisbee for the dog to fetch.,\"ground a little band, and the fun is practicing playing again with these dogs.\",in brown talks to the camera after the scene while ending a throw.,1\n9417,anetv_99Mk5a8Tvyk,5518,There's a man wearing a red hat and a black shirt training and playing with his dog in a dog park. There,There's a man wearing a red hat and a black shirt training and playing with his dog in a dog park.,There,gold,people chases the dog holding a man and a dog running up in a field and with the dog.,\"are several other people in that park with their dogs, sitting under canopies.\",then comes one effect of a big walk in several locations and enter a yard.,\"a like leotards begins spinning the dog, sometimes spinning around and doing tricks in sped up way out to the alley.\",1\n9418,anetv_99Mk5a8Tvyk,5523,The man also throws a ball to the dog for him to fetch. The man,The man also throws a ball to the dog for him to fetch.,The man,gold,throws the ball backwards on both sides of the court.,lifts the dog up and walks away with it.,continues to mop the horse and cuts the grass in half.,throws frisbees with his frisbee while standing on the right side.,1\n9419,anetv_99Mk5a8Tvyk,5521,The dog is running around and fetching the Frisbee for its owner. The dog,The dog is running around and fetching the Frisbee for its owner.,The dog,gold,jumps up and throws the frisbee to the dog.,then blows with a candle as the friend man examines it.,drops to the ground and shows more movement.,jumps up high to catch the frisbee.,3\n9420,anetv_99Mk5a8Tvyk,5520,The man is throwing a Frisbee for the dog to fetch. The dog,The man is throwing a Frisbee for the dog to fetch.,The dog,gold,is running around and fetching the frisbee for its owner.,runs back sedately across the counter as a dog runs on the beach.,is trying to get the man off his feet.,gives him the dog as he returns with the man.,0\n9421,anetv_99Mk5a8Tvyk,5522,The dog jumps up high to catch the Frisbee. The man also,The dog jumps up high to catch the Frisbee.,The man also,gold,uses a frisbee to catch the frisbee.,brushes the dog with the frisbee.,throws a ball to the dog for him to fetch.,catches the frisbee with a dog toy.,2\n9422,anetv_ma9R2AjCRZE,10637,Two sumos are wrestling in a big green field in a competition while people are taking pictures of them. referee,Two sumos are wrestling in a big green field in a competition while people are taking pictures of them.,referee,gold,shows his back standing and shaking his head as referee talks.,fells in the middle of the ring trying to win the ring.,is walking behind people.,decide the winner and rise their hands.,3\n9423,anetv_ma9R2AjCRZE,7848,They engage in a wrestling match togheter. They,They engage in a wrestling match togheter.,They,gold,push and pull as people watch.,demonstrate a demonstration of the cat swings.,give the other a high five.,sit forward watching the video.,0\n9424,anetv_2Q0WGQbJbso,12796,A person plays a violin in front of a huge crowd of people. The people,A person plays a violin in front of a huge crowd of people.,The people,gold,give him a standing ovation at the end.,continue fencing with one another while the crowd continues to sing.,jump around the lake and smiles while people talk to the camera.,finish playing the instruments together as the crowd claps.,0\n9425,anetv_h0R04AFnor4,7935,A person touches the skin with a green light while cleaning the area. The person,A person touches the skin with a green light while cleaning the area.,The person,gold,puts cream on a brush and covers it's ears.,scrubs the large ski with red snow.,clean the leg with cotton.,attaches the blue paw over the equipment.,2\n9426,anetv_h0R04AFnor4,7936,The person clean the leg with cotton. The person,The person clean the leg with cotton.,The person,gold,fill the glass using soap.,stirs and vacuums his nails.,continues applying the green light.,shave their legs with a machine.,2\n9427,anetv_BK8yiRJkfcU,8882,A large arena is seen with a person running by and pointing to the camera. Several shots,A large arena is seen with a person running by and pointing to the camera.,Several shots,gold,are shown of the athlete playing football and leads into him standing.,are shown of people knitting gear and close to the camera as well as several clips of people practicing jumping off in the distance.,are shown of the hat as well as the man put on the area.,are shown of people walking down a casino and singing as well as speaking to their diplomas.,0\n9428,lsmdc3089_XMEN_FIRST_CLASS-43661,19042,\"She runs to the crashed x - jet. Onboard, she\",She runs to the crashed x - jet.,\"Onboard, she\",gold,grabs his ring and dials.,radios the american ship.,talks into a larger file.,ads items over the letters.,1\n9429,lsmdc3089_XMEN_FIRST_CLASS-43661,19039,The triple - barreled cannons aim at the shore. Someone,The triple - barreled cannons aim at the shore.,Someone,gold,disintegrates a large fire - like wave.,plows through the older man as someone climbs up into the water.,holds up a knife that was loaded into a sack.,\"lowers his fingertips from his temple, breathing heavily.\",3\n9430,lsmdc3089_XMEN_FIRST_CLASS-43661,19028,The helmet descends into someone's hands. Someone,The helmet descends into someone's hands.,Someone,gold,\"grabs someone, then hurries over to the cleared path.\",enters and looks down.,leans back on his elbows to keep his balance.,puts on the helmet.,3\n9431,lsmdc3089_XMEN_FIRST_CLASS-43661,19031,\"In the x - jet, someone breathes strenuously. Someone\",\"In the x - jet, someone breathes strenuously.\",Someone,gold,puts on his tee - shirt.,looks on behind him.,lies on the roof.,'s friends stroll nearby.,1\n9432,lsmdc3089_XMEN_FIRST_CLASS-43661,19071,\"Someone, someone, and the cyclone master join someone and someone. They\",\"Someone, someone, and the cyclone master join someone and someone.\",They,gold,stop by the curb in front of the car door.,\"stand in a line, all holding hand.\",\"walk past someone, who holds out the letter.\",lift their heads and hands them down to someone.,1\n9433,lsmdc3089_XMEN_FIRST_CLASS-43661,19034,Now the coin emerges from the back of the villain's head. Someone's parted lips and glistening eyes,Now the coin emerges from the back of the villain's head.,Someone's parted lips and glistening eyes,gold,fill it with tears.,remain on his form.,spot a big drop to his upper cheek.,show his gaze to be strangely tense and tranquil.,3\n9434,lsmdc3089_XMEN_FIRST_CLASS-43661,19063,\"Someone addresses the other mutant. Someone, someone, someone and someone\",Someone addresses the other mutant.,\"Someone, someone, someone and someone\",gold,look on as one group.,hurry outside.,\"step into the car, running along the corridor and into the roadway.\",fight each other as the general slowly hurries into the back hall and flees.,0\n9435,lsmdc3089_XMEN_FIRST_CLASS-43661,19070,\"Someone rises and takes someone's hand. Someone, someone, and the cyclone master\",Someone rises and takes someone's hand.,\"Someone, someone, and the cyclone master\",gold,the door's office.,kneel in their compartment.,him into the fray.,join someone and someone.,3\n9436,lsmdc3089_XMEN_FIRST_CLASS-43661,19046,\"He peers at them, his eyes framed by the helmet. All of the missiles\",\"He peers at them, his eyes framed by the helmet.\",All of the missiles,gold,remain suspended in the sky.,are mounted with drug explosions.,seems to advance as it runs.,fly back and forth as he raps into the hole in a split.,0\n9437,lsmdc3089_XMEN_FIRST_CLASS-43661,19053,As the American admiral and Russian captain observe resignedly. Someone,As the American admiral and Russian captain observe resignedly.,Someone,gold,\"uses a hat, he halts toward the people.\",offers a russian then marches someone at a map in his office.,continues to command themselves.,fires a bullet at someone's helmet.,3\n9438,lsmdc3089_XMEN_FIRST_CLASS-43661,19029,Someone puts on the helmet. He,Someone puts on the helmet.,He,gold,watches as the engineer reaches over and pulls someone close.,blows his whistle and she blows it.,\"finds the watch controls, with a happy smile.\",takes two steps toward someone and tilts his head.,3\n9439,lsmdc3089_XMEN_FIRST_CLASS-43661,19056,Someone hurries to someone and holds a hand over the wound. Someone,Someone hurries to someone and holds a hand over the wound.,Someone,gold,glares at his reflection.,looks deep in thought.,\"grimaces as someone extracts the bullet, which rolls into his palm.\",tears at her.,2\n9440,lsmdc3089_XMEN_FIRST_CLASS-43661,19026,The girder trapping someone falls and he steps around the villain to face him. Someone,The girder trapping someone falls and he steps around the villain to face him.,Someone,gold,smooths his arm behind his back then draws back to watch on.,\"stands frozen, arm outstretched, reaching for his helmet.\",yells from a high kick.,finds the envelope with his gun.,1\n9441,lsmdc3089_XMEN_FIRST_CLASS-43661,19057,\"Someone grimaces as someone extracts the bullet, which rolls into his palm. Over the sea, the rockets\",\"Someone grimaces as someone extracts the bullet, which rolls into his palm.\",\"Over the sea, the rockets\",gold,fly in the air sending soaring upwards.,\"fall from the sky, some bursting in mid - air.\",swarm at the devices.,are lined with narrow wooden obstacles.,1\n9442,lsmdc3089_XMEN_FIRST_CLASS-43661,19032,Someone looks on behind him. The coin,Someone looks on behind him.,The coin,gold,glisten in his ear.,approaches someone's forehead.,turns but the last go out.,swings repeatedly at someone who crumples to the floor watching him.,1\n9443,lsmdc3089_XMEN_FIRST_CLASS-43661,19035,\"On the beach, someone and someone step outside. Someone's body\",\"On the beach, someone and someone step outside.\",Someone's body,gold,drifts following a limb blocking deeper it.,\"falls limp as they mustached, who kisses a bride's hand, then chats in a bathrobe.\",returns to rest bare.,levitates out of the submarine.,3\n9444,lsmdc3089_XMEN_FIRST_CLASS-43661,19064,\"Someone, someone, someone and someone look on as one group. Someone\",\"Someone, someone, someone and someone look on as one group.\",Someone,gold,\"peers in someone's direction, then reaches out to her.\",bows proudly and tosses.,\"is watching her board across the deck, crew at the ready.\",leads someone up to the hut and clutches his unconscious brother in his arms.,0\n9445,lsmdc3089_XMEN_FIRST_CLASS-43661,19030,\"Across the room from someone, someone holds up the Nazi coin. Someone\",\"Across the room from someone, someone holds up the Nazi coin.\",Someone,gold,places the key above the bow.,closes her eyes and knits her brow.,keeps a finger to his temple.,brings someone a full view of staff.,2\n9446,lsmdc3089_XMEN_FIRST_CLASS-43661,19036,Someone's body levitates out of the submarine. Someone,Someone's body levitates out of the submarine.,Someone,gold,moves sticking a figure behind them.,pins a rod onto someone's knee.,\"crawls beside someone who drops husband, arm - face on light.\",lets him drop onto the sand.,3\n9447,lsmdc3089_XMEN_FIRST_CLASS-43661,19060,\"Someone looks at someone, who lies in his arms. He lowers his hand and someone\",\"Someone looks at someone, who lies in his arms.\",He lowers his hand and someone,gold,releases the canoe on.,trades a look to people out of the corner of his eye.,swigs from a bottle stick.,drops to her knee.,3\n9448,lsmdc3089_XMEN_FIRST_CLASS-43661,19049,The rockets fall from the sky. Someone,The rockets fall from the sky.,Someone,gold,dives into a blue pool of green water.,reaches for someone's helmet.,reels helplessly as the nazi flare soars.,stabs a serpentine creature in the wings towards the fire.,1\n9449,lsmdc3089_XMEN_FIRST_CLASS-43661,19055,Someone deflects each bullet fired by her and one strikes someone in the back. The wounded mutant,Someone deflects each bullet fired by her and one strikes someone in the back.,The wounded mutant,gold,\"faces the audience, who launches their fists.\",drops above his face beaten by metal.,flies over to the witch and shoots.,\"hits the sand, belly down.\",3\n9450,lsmdc3089_XMEN_FIRST_CLASS-43661,19054,Someone fires a bullet at someone's helmet. Someone deflects each bullet fired by her and one,Someone fires a bullet at someone's helmet.,Someone deflects each bullet fired by her and one,gold,strikes him with his burning key.,strikes the meeting with number nine.,\"mad, hitting each other accidentally and aiming away, the gang's guns disappear, missing.\",strikes someone in the back.,3\n9451,lsmdc3089_XMEN_FIRST_CLASS-43661,19045,Someone raises a hand and the rockets stop in mid - air within a 100 feet of the shore. He,Someone raises a hand and the rockets stop in mid - air within a 100 feet of the shore.,He,gold,\"peers at them, his eyes framed by the helmet.\",reaches into its pocket then turns toward people from taking the sphere towards him.,leads someone into a dark tank.,slides down the stairs three times before leaping onto the roof.,0\n9452,lsmdc3089_XMEN_FIRST_CLASS-43661,19040,\"Someone lowers his fingertips from his temple, breathing heavily. He\",\"Someone lowers his fingertips from his temple, breathing heavily.\",He,gold,\"bows open his head, and rapidly rips the locket away from someone's ear pocket.\",\"stares at one bug, then hits it against an 8 wall.\",clutches his father's arm.,looks at someone and nods.,3\n9453,lsmdc3089_XMEN_FIRST_CLASS-43661,19061,Someone mournfully tightens his jaw. Someone,Someone mournfully tightens his jaw.,Someone,gold,musses the top of his head.,holds his tender gaze.,yawns as someone resumes his rifle.,\"looks up toward someone, who sits down in front of the ex - artist someone.\",1\n9454,lsmdc3089_XMEN_FIRST_CLASS-43661,19058,\"In slow motion, both the Russians and Americans celebrate. Someone\",\"In slow motion, both the Russians and Americans celebrate.\",Someone,gold,tries to kick and strikes someone.,wavers on his phone.,raises his arms overhead.,runs over to someone.,3\n9455,lsmdc3089_XMEN_FIRST_CLASS-43661,19033,As someone expels strained breaths. Someone,As someone expels strained breaths.,Someone,gold,rips up her pants.,\"spins, pacing between his two knees.\",stays focused on someone.,gets on a back seat and sits at a black stretch.,2\n9456,lsmdc3089_XMEN_FIRST_CLASS-43661,19052,The American and Russian commanders each watch them returning. As someone,The American and Russian commanders each watch them returning.,As someone,gold,eyes several red tinted glasses staring at him.,\"ducks down the bar, spar readies his superior.\",punches someone in the face.,heads towards the entrance.,2\n9457,lsmdc3089_XMEN_FIRST_CLASS-43661,19067,She looks to someone again. Someone,She looks to someone again.,Someone,gold,follows beside the others.,enters the tent sitting in a small patch of rock.,kneels down beside someone.,\"looks uneasily at someone, his to black.\",2\n9458,lsmdc3089_XMEN_FIRST_CLASS-43661,19037,\"With open arms, someone levitates down from a blast hole near the top of the submarine. Someone and someone\",\"With open arms, someone levitates down from a blast hole near the top of the submarine.\",Someone and someone,gold,take her carcass out of her by the arms.,step forward as he lands on the beach.,shoot the frog at people.,ride down the banks of an intersecting link between line two.,1\n9459,lsmdc3089_XMEN_FIRST_CLASS-43661,19048,Someone and someone stand before the hovering missiles. As someone slowly,Someone and someone stand before the hovering missiles.,As someone slowly,gold,twists his left hand.,\"swings a remote, we glimpse that the face.\",\"removes the gun - - seven third, his weapons precision, the others are able to have a contact on it.\",\"leaps into the dark, an alien man.\",0\n9460,lsmdc3089_XMEN_FIRST_CLASS-43661,19044,Our view follows the rockets. Someone raises a hand and the rockets,Our view follows the rockets.,Someone raises a hand and the rockets,gold,are drawn to the roof and roof of the van.,stop in mid - air within a 100 feet of the shore.,explode across someone's.,shoot through several brisk ravine.,1\n9461,lsmdc3089_XMEN_FIRST_CLASS-43661,19065,\"Someone peers in someone's direction, then reaches out to her. She\",\"Someone peers in someone's direction, then reaches out to her.\",She,gold,\"map outlines each waiting, stories - accomplishment.\",\"tries to laugh, but someone opens the windscreen in a fireball.\",frowns and sucks her fist.,\"limps forward, leaving someone and the others behind.\",3\n9462,lsmdc3089_XMEN_FIRST_CLASS-43661,19027,\"Someone stands frozen, arm outstretched, reaching for his helmet. The helmet\",\"Someone stands frozen, arm outstretched, reaching for his helmet.\",The helmet,gold,fires a powerful burst of flame.,moves on to the hillside.,reaches down and buckles.,descends into someone's hands.,3\n9463,lsmdc3089_XMEN_FIRST_CLASS-43661,19043,The American commander peers sternly. The mutants,The American commander peers sternly.,The mutants,gold,points a flare as a picture.,watch from the shore.,gallop to his horse.,stretch out from a seats.,1\n9464,lsmdc3089_XMEN_FIRST_CLASS-43661,19069,\"She kisses his forehead, then looks to someone. Someone\",\"She kisses his forehead, then looks to someone.\",Someone,gold,is washing his face in a sink.,rises and takes someone's hand.,stares at his sister who sits at a laptop.,\"stares at him, his eyes wide.\",1\n9465,lsmdc3089_XMEN_FIRST_CLASS-43661,19051,\"Someone elbows him and sends the other mutants flying across the beach. As he holds someone down, he\",Someone elbows him and sends the other mutants flying across the beach.,\"As he holds someone down, he\",gold,regains control of the missiles.,swims to the lip of the boat.,\"hops up on the railing they reach the side of the wharf, his last time 'splash.\",helps someone up as he races like a elf and seizes someone.,0\n9466,anetv_NjTk2naIaac,18479,A group of adults are sitting in bumper cars. the cars all,A group of adults are sitting in bumper cars.,the cars all,gold,get out of the cars.,begin to dirt around the cars.,look around and bumping into each other.,start at the same time.,3\n9467,anetv_NjTk2naIaac,18480,The cars all start at the same time. the adults then,The cars all start at the same time.,the adults then,gold,begin to chase and bump each other.,talks to someone again.,quickly slide the slide down the hill before riding back under the water again.,\"drives with the other boys, and finally the bikes continue jumping and falling down.\",0\n9468,anetv_NjTk2naIaac,17100,A man is seen spinning around a ride and leads into people sitting in bumper car seats. The people then,A man is seen spinning around a ride and leads into people sitting in bumper car seats.,The people then,gold,ride around the object as well as people friends pushing the cars.,walk back and fourth on the stilts as others watch on the side while one man drives ahead.,ride around playing bumper cars while the camera man spins in circles and leaves once done.,drive around a mountain and eventually hard in the snowy terrain.,2\n9469,anetv_NjTk2naIaac,17101,The people then ride around playing bumper cars while the camera man spins in circles and leaves once done. More people,The people then ride around playing bumper cars while the camera man spins in circles and leaves once done.,More people,gold,are seen shoveling snow in the snow as well as washing their car down the street.,are seen walking on a beach showing people watches.,are seen hugging and talking to the camera and panning around a theme park.,are shown on screen on the side and ends with some cars running.,2\n9470,anetv_EwoxOKwqUPI,1604,The woman scores a shot and celebrates. The two players,The woman scores a shot and celebrates.,The two players,gold,are back to the camera.,ram the black wall.,run towards the woman down from the grassy field.,hug each other and raise the woman's arm in victory.,3\n9471,anetv_EwoxOKwqUPI,1602,A woman plays a game of beer pong with a short man dressed as a leprechaun. A dj,A woman plays a game of beer pong with a short man dressed as a leprechaun.,A dj,gold,shows shots of underwater parade and people sailing.,prepares to play volleyball with a young player.,plays spins a pair of turntables on stage for the crowd.,holds a ping pong saucer while the man sit behind a table.,2\n9472,anetv_EwoxOKwqUPI,1603,A dj plays spins a pair of turntables on stage for the crowd. The woman,A dj plays spins a pair of turntables on stage for the crowd.,The woman,gold,plays the harmonica in front of her then pauses.,\"waves to the audience, does push ups, and is drinking.\",scores a shot and celebrates.,plays a violin and lies in the air.,2\n9473,anetv_44htu_ovvLs,3919,A woman is seen looking off into the distance followed by shots of her riding a horse and looking off into the distance. The woman,A woman is seen looking off into the distance followed by shots of her riding a horse and looking off into the distance.,The woman,gold,continues riding around on the horse and ends with her walking away and waving to the camera.,continues to ride the horse all along her body while holding herself back and fourth by moving herself on the horse and arms away.,continues driving around the track and ends by holding up the camera to her face while the camera zooms in on them.,continues to jump along the horse with her hand and the girl continues smiling the fight and ends by showing off her horse.,0\n9474,anetv_iA2Q4t-o58w,16774,\"One does several back flips, then a group begins throwing girls into the air, practicing flips. Several clips\",\"One does several back flips, then a group begins throwing girls into the air, practicing flips.\",Several clips,gold,are shown of the divers doing impressive flips and tricks in backward flips move sideways.,slide down the field past each other.,\"are shown of kids falling backwards, jumping and flipping.\",are shown of people doing gymnastics and falling down.,3\n9475,anetv_iA2Q4t-o58w,16772,\"Several blocks fall, forming a black and white picture of two girls. The girls\",\"Several blocks fall, forming a black and white picture of two girls.\",The girls,gold,crouch down and fall on top of the bar.,are shown in a gymnasium.,finish their playing and shake hands.,\"run for a run, racing to get the winner.\",1\n9476,anetv_iA2Q4t-o58w,16773,\"The girls are shown in a gymnasium. One does several back flips, then a group\",The girls are shown in a gymnasium.,\"One does several back flips, then a group\",gold,of girls stands at the end.,\"begins throwing girls into the air, practicing flips.\",of people run and build up a ballet routine.,completes several purple mats.,1\n9477,anetv_iA2Q4t-o58w,12681,A girl is seen in the tub as well as back at the gym getting hurt and playing with others. More clips,A girl is seen in the tub as well as back at the gym getting hurt and playing with others.,More clips,gold,are shown of people working roller in the storage gear.,are shown of people performing gymnastics and falling out of their tricks or hurting another.,are shown of people playing and sometimes their hands and hands around as they go.,are shown of people playing bar together while people sit around her while trying to help her up.,1\n9478,anetv_KxAxMZ6dYa4,11959,People gathered around a shuffleboard begin playing. a few people,People gathered around a shuffleboard begin playing.,a few people,gold,\"are seen hitting a ball around the field, hitting the ball around the areas while people watch in the side.\",speak to the camera as the other people play shuffle board.,occasionally seen playing instruments and smiling towards the camera while the camera captures their movements.,are trying to crawl by singing throughout the video.,1\n9479,anetv_KxAxMZ6dYa4,11958,An anchorman beings talking to the camera. People,An anchorman beings talking to the camera.,People,gold,gathered around a shuffleboard begin playing.,are sitting to bed together wearing a blue skirt.,turn quickly down a snowy hill.,are in rafts performing a choreography.,0\n9480,anetv_KxAxMZ6dYa4,10258,A group is shown outside playing a game of curling. The people,A group is shown outside playing a game of curling.,The people,gold,play with one another while tying up various presents.,kick the ball back and fourth back and fourth.,continue running around with the ball as well as holding the ball.,push the pucks and talk to the camera.,3\n9481,anetv_RrEJ2-TfWCI,10262,Two men are seen speaking to the camera holding lacrosse sticks. The men,Two men are seen speaking to the camera holding lacrosse sticks.,The men,gold,inspect them closely and stop as they talk.,pretend to hit and push one another while still speaking.,\"begin arm wrestling, one by one.\",begin playing ping pong and smiling to one another and speaking.,1\n9482,anetv_RrEJ2-TfWCI,12571,Two men are seen holding lacrosse sticks and speaking to the camera with one holding a stick. The men,Two men are seen holding lacrosse sticks and speaking to the camera with one holding a stick.,The men,gold,continue to push the puck around while their movements are shown again in slow motion and one can not speak to the camera.,continue playing with one another while a large group of them play and move against one another.,continue to play the ball back and fourth with one another while the camera pans around a player drinking.,demonstrate how to properly push another player with sticks and hitting the other person with a stick.,3\n9483,anetv_RrEJ2-TfWCI,10263,The men pretend to hit and push one another while still speaking. They,The men pretend to hit and push one another while still speaking.,They,gold,continue to spin around the room together and end by turning off a camera.,continue to demonstrate moves while looking to the camera.,continue to dance up and across the yard as fast as they can.,throw their hand out and continue playing with one another.,1\n9484,anetv_gmnwqOPcOo0,1566,A woman breaks a Guiness book of world records by hula hooping with 107 hula hoops in front of an audience and then giving an interview. The interior of an event showcase,A woman breaks a Guiness book of world records by hula hooping with 107 hula hoops in front of an audience and then giving an interview.,The interior of an event showcase,gold,\"is shown, while people continue to enjoy.\",is shown including the signs involved.,professional festival gymnast is shown also performing with a narrow chair towards it.,chefs perusing deal activities.,1\n9485,anetv_gmnwqOPcOo0,875,She starts to hula hoop with all of them. She,She starts to hula hoop with all of them.,She,gold,shakes a mans hand.,does n't know how to make the drink.,lands on her knees and in her arms.,knocks a man back shots of her.,0\n9486,anetv_gmnwqOPcOo0,876,She shakes a mans hand. She,She shakes a mans hand.,She,gold,hands someone a cellphone.,shuts her eyes and buries her face in a pillow.,is talking to a camera.,whacks him with his hands.,2\n9487,anetv_gmnwqOPcOo0,873,A woman is stacking up hula hoops around her. She,A woman is stacking up hula hoops around her.,She,gold,lifts them up with the help of another woman.,sways flipping in the air two times.,keeps cutting a second piece of furniture as well as another child tossing a piece of paper down and landing to his feet.,finishes playing a flute.,0\n9488,anetv_gmnwqOPcOo0,874,She lifts them up with the help of another woman. She,She lifts them up with the help of another woman.,She,gold,continues to nail the course with them.,starts to hula hoop with all of them.,swivels her feet backwards going another and forward as she can.,gets up and chops something.,1\n9489,anetv_gmnwqOPcOo0,1567,The interior of an event showcase is shown including the signs involved. A woman,The interior of an event showcase is shown including the signs involved.,A woman,gold,\"goes into a big gym, doing various exercises and various moves to jumping speed.\",piles hula hoops around another woman on a red and white stage.,is practicing gymnastics she does a gymnastics routine on a balance beam in a gym.,\"enters a suite and approaches the shoreline, while a woman and a man, dancing together.\",1\n9490,anetv_cxIfpBvuk0E,17445,She is saying something to the camera as she smokes. She,She is saying something to the camera as she smokes.,She,gold,tries to solve her cube.,shaves her head with some clippers.,\"continues scraping snow off, taking tango shots.\",thumps her ashes and continues to smoke.,3\n9491,anetv_cxIfpBvuk0E,17447,She turns around and then back to smoking. She,She turns around and then back to smoking.,She,gold,sticks her tongue out.,brushes water off the side.,runs out of the parking lot.,is dressed in a hospital gown and black sweater cut and black.,0\n9492,anetv_cxIfpBvuk0E,17449,She pans over to a picture of a crazy looking woman and tries to imitate it. She,She pans over to a picture of a crazy looking woman and tries to imitate it.,She,gold,continues to smoke and talk to the camera.,continues mixing the ingredients in a bowl while throwing it into a cup and presenting it for the camera.,suddenly turns the water again and raises back - laughs.,\"tapestry slashing at one of someone's names, but back remains perches on the end of the tape.\",0\n9493,anetv_cxIfpBvuk0E,17443,An arm comes into view and the girl smells it. She smokes some more and,An arm comes into view and the girl smells it.,She smokes some more and,gold,blows smoke as she plays with her hair.,shows us her method.,grinds it down.,pulls the ski away.,0\n9494,anetv_cxIfpBvuk0E,17451,She makes faces at the camera. She,She makes faces at the camera.,She,gold,skateboards in a long very dark road.,throws another item at the screen.,places the lights all over the floor.,gets up close to the camera as someone walks behind her.,3\n9495,anetv_cxIfpBvuk0E,17444,She smokes some more and blows smoke as she plays with her hair. She,She smokes some more and blows smoke as she plays with her hair.,She,gold,rolls across the chair to face the clown.,waits for her to have to pick smoke out.,looks throughout the office as she talks into the camera.,is saying something to the camera as she smokes.,3\n9496,anetv_cxIfpBvuk0E,17450,She continues to smoke and talk to the camera. She,She continues to smoke and talk to the camera.,She,gold,starts to talk on the phone and keeps walking.,continues shows the finished product.,finishes and goes to sit up.,makes faces at the camera.,3\n9497,anetv_cxIfpBvuk0E,17446,She thumps her ashes and continues to smoke. She,She thumps her ashes and continues to smoke.,She,gold,the lights go out.,shows the gurgling pit.,then shows a painting of the tiger to recover the duration from other ballet class.,turns around and then back to smoking.,3\n9498,lsmdc1010_TITANIC-77386,4867,\"Someone signs and dates the drawing, then blows on it. He\",\"Someone signs and dates the drawing, then blows on it.\",He,gold,closes his sketchbook and hands it to someone.,finds someone sitting at the back of his tent.,\"reads from the office, as he hands the man to a alex.\",frowns at his drawing.,0\n9499,lsmdc1010_TITANIC-77386,4870,She hands him the case holding the Heart of the Ocean. Someone,She hands him the case holding the Heart of the Ocean.,Someone,gold,flying as the plane rocks from the train slowly to south lion's hulls draped over the other side of the boat.,walks into the next room and slides the case into the safe.,is already innocent to it.,glares as he runs the length of the water.,1\n9500,lsmdc1010_TITANIC-77386,4868,\"Later, someone writes on a sheet of paper. Someone\",\"Later, someone writes on a sheet of paper.\",Someone,gold,steps up to her.,takes out a stack of mail.,lies back down with a blanket.,emerges from the cut and gazes downward.,0\n9501,lsmdc1010_TITANIC-77386,4871,\"Someone walks into the next room and slides the case into the safe. In the first class smoking room, someone\",Someone walks into the next room and slides the case into the safe.,\"In the first class smoking room, someone\",gold,\"enters the interrogation room, holding someone's arm.\",stares into the lecture hall.,\"approaches someone, who stands.\",opens the front door.,2\n9502,lsmdc1055_Marley_and_me-96370,10470,Someone pulls into the driveway. There,Someone pulls into the driveway.,There,gold,is a man in a garden tie with woman.,\"eyes someone, who's throw in a middle - aged man as he puts a beer in his lap.\",looks at the police card.,'s a patrol car and people gathered on the street.,3\n9503,lsmdc1055_Marley_and_me-96370,10469,A police car drives past. Someone,A police car drives past.,Someone,gold,runs into a patrol car and picks up a gas grenade.,pulls into the driveway.,parks up on a brick building and stalks off.,\"leans in, outside at the gas station.\",1\n9504,lsmdc1055_Marley_and_me-96370,10471,There's a patrol car and people gathered on the street. He,There's a patrol car and people gathered on the street.,He,gold,\"gets out of the car, holding the pup.\",grabs a wet paper sticks.,is talking to the camera with a harmonica on.,\"drives a car, then runs down the road and jumps into the snow.\",0\n9505,anetv_qgasVDGUw3E,6251,A truck is shown parked in a driveway with words on the front bumper. Shingles on the roof,A truck is shown parked in a driveway with words on the front bumper.,Shingles on the roof,gold,are from half - dozen ways doing automatic on windows down the street.,are being detached and removed.,are set to planks along the wall.,is shown being washed off white.,1\n9506,anetv_qgasVDGUw3E,10883,\"A red truck parks on front a house, a ladder is on the rood of the truck. A person\",\"A red truck parks on front a house, a ladder is on the rood of the truck.\",A person,gold,takes a shot on how to make an alcoholic drink.,is taking off damaged shingles of a roof.,dressed in black gear present a wooden training tire with a hanger on it.,starts shoveling snow on someone's motorcycle.,1\n9507,anetv_qgasVDGUw3E,10884,\"A person is taking off damaged shingles of a roof. Then, the person\",A person is taking off damaged shingles of a roof.,\"Then, the person\",gold,'s car is struggling to fix the roof from a house and enter the house.,continues shoveling the snow off the roof with a shovel.,walks down a bouncy new wallpaper.,is nailing and gluing new shingles in the roof.,3\n9508,anetv_Ub88_ql0B78,984,Another girl is shown doing a separate baton routine. a boy,Another girl is shown doing a separate baton routine.,a boy,gold,is then shown performing on another court.,sits up against a wall instructing her name before moving down.,hands the ring on her neck.,throws her cell at a pinata with a bat.,0\n9509,anetv_Ub88_ql0B78,983,A girl is on a basketball court performing a routine with a baton. another girl,A girl is on a basketball court performing a routine with a baton.,another girl,gold,is shown doing a separate baton routine.,is joined by the first and musicians walking with people in the end her other way.,walks around the bar then mounts a proper beam.,appears and smiling as she does another girl.,0\n9510,anetv_Ub88_ql0B78,3755,The girl continues spinning and twirling around. The girl,The girl continues spinning and twirling around.,The girl,gold,flips on the bar and dances through the judges.,walks to a stage pit.,throws a twirl while the end flips.,continues spinning in different shots and leads into clips of her by herself as well as with others.,3\n9511,anetv_b8eqn-GTdcc,16422,She picks up a bottle and a green rag. She,She picks up a bottle and a green rag.,She,gold,sprays the chair and starts wiping it with the rag.,wipes a rag with a rag.,enters the bathroom and scrubs it with the toothbrush.,\"cleans it with a towel, then scrubs it in a plastic lock tissue.\",0\n9512,anetv_b8eqn-GTdcc,1776,A woman is shown speaking to the camera and standing next to a chair. She,A woman is shown speaking to the camera and standing next to a chair.,She,gold,bends over and places her hands down and begins scrubbing her eyelashes.,holds up various products and begins spraying down a chair.,gets out lotion and begins working out on the machine.,continues speaking to the camera while sitting down on his back.,1\n9513,anetv_b8eqn-GTdcc,16421,A woman is standing up next to a chair talking. She,A woman is standing up next to a chair talking.,She,gold,twirls the patterns padding and beside her bed.,picks up a bottle and a green rag.,puts on a gray hoodie and begins to examine it.,\"rubs her hands up and down, showing how to lift with the rope.\",1\n9514,anetv_b8eqn-GTdcc,16423,She sprays the chair and starts wiping it with the rag. She,She sprays the chair and starts wiping it with the rag.,She,gold,comes out on a towel and washes her hands.,pulls a wipe out of a bottle and wipes down the chair.,continues scrubbing the windows as she climbs over the surface to the surface.,\"adds ice to the sink, lifting it to the floor.\",1\n9515,anetv_b8eqn-GTdcc,1777,She holds up various products and begins spraying down a chair. She,She holds up various products and begins spraying down a chair.,She,gold,\"sleeps on her bed, facing her parents.\",begins blow drys her hair while looking to the camera.,wipes down the chair with a rag and presents it in the end.,uses a clamp to cut the hair and brushes it off the table.,2\n9516,anetv_3CJW0qBwwx4,6315,A man is seen kneeling down beside a car spraying a hose on the car. He,A man is seen kneeling down beside a car spraying a hose on the car.,He,gold,continues speaking to the camera as well as the pump and objects.,\"takes a breath, then straightens and lowers the blade through the lenses.\",continues shoveling up the road as well as showing how it works.,uses a sponge to clean around the car while others clean around the sides.,3\n9517,anetv_3CJW0qBwwx4,6316,He uses a sponge to clean around the car while others clean around the sides. More shots,He uses a sponge to clean around the car while others clean around the sides.,More shots,gold,are shown of the man skiing and criss screw on the bicycle as well as driving down the highway.,are shown of them cleaning the inside as well as under the hood while the camera pans around.,are shown of the description.,are shown shown of him smoking and smiling.,1\n9518,anetv_C-M4L_WDzK8,14667,A group of women play field hockey on an outdoor field covered in grass. The women,A group of women play field hockey on an outdoor field covered in grass.,The women,gold,kick a ball into the goal.,run after a white ball on the field while holding hockey sticks.,talk to one another while the graphics advertising cheers.,continue doing martial arts moves on the mounted horses.,1\n9519,anetv_C-M4L_WDzK8,14668,The women run after a white ball on the field while holding hockey sticks. The red team and blue team,The women run after a white ball on the field while holding hockey sticks.,The red team and blue team,gold,are scoring a goal but the batter is n't happy.,wins behind the man holding the soccer ball as he tries to congratulate them.,continue to play field hockey while a referee watches on and a guard guards the goal.,makes the ball off the far side of the gym again.,2\n9520,anetv_wfy5UXaAVnQ,17486,\"Multiple groups battle high violent waters. At one point, the violent waters\",Multiple groups battle high violent waters.,\"At one point, the violent waters\",gold,seem to almost topple one of the groups.,\"are shown as well as divers, from some flying scientists and vests to activities.\",are to be thrown back by itself.,are crowded across the river.,0\n9521,anetv_wfy5UXaAVnQ,17484,Wind blows the trees in the Grand Canyon. A group of people on a white boat,Wind blows the trees in the Grand Canyon.,A group of people on a white boat,gold,glances at them from their wands.,float to the ship.,paddle away at the waters in the river.,swims along the beach.,2\n9522,anetv_wfy5UXaAVnQ,17487,\"At one point, the violent waters seem to almost topple one of the groups. A brave, single kayaker\",\"At one point, the violent waters seem to almost topple one of the groups.\",\"A brave, single kayaker\",gold,want the hiking bark at someone.,is draped over the open balloon as he drops the grip of a large wave.,comes from the subway to a long railing.,paddles away at the waters.,3\n9523,anetv_wfy5UXaAVnQ,17485,A group of people on a white boat paddle away at the waters in the river. Multiple groups,A group of people on a white boat paddle away at the waters in the river.,Multiple groups,gold,perform the same thing and arrange a cake on a set of calm flame.,are directs their rafters to vault in a saucer.,of women dive in kayaks then jump with obstacles.,battle high violent waters.,3\n9524,lsmdc0013_Halloween-53568,1403,\"Someone, 18, he wears a Halloween mask and a costume. She\",\"Someone, 18, he wears a Halloween mask and a costume.\",She,gold,takes a photograph of someone from someone.,giggles as the boyfriend jumps into the room.,markings an old someone 'belt with his baseball cap.,\"has only form, cocky crotch.\",1\n9525,lsmdc0013_Halloween-53568,1402,\"Into the bedroom comes the sister, 18, very pretty. Someone, 18, he\",\"Into the bedroom comes the sister, 18, very pretty.\",\"Someone, 18, he\",gold,watches the two of her finishes up.,wears a halloween mask and a costume.,\"disguise, walks in someone's bathroom.\",is someone has red dress.,1\n9526,lsmdc0013_Halloween-53568,1404,She giggles as the boyfriend jumps into the room. They,She giggles as the boyfriend jumps into the room.,They,gold,meet by someone.,\"kiss again, this time with more passion.\",talk someone in.,are talking in the closet.,1\n9527,lsmdc0013_Halloween-53568,1401,The boyfriend grabs the sister and kisses her. Into the bedroom,The boyfriend grabs the sister and kisses her.,Into the bedroom,gold,\"comes the sister, 18, very pretty.\",\", someone watches a cop, her tv chase.\",and digs into the wood.,\", someone turns on a lamp.\",0\n9528,lsmdc0013_Halloween-53568,1405,\"They kiss again, this time with more passion. He\",\"They kiss again, this time with more passion.\",He,gold,drinks in one last time - one time.,\"looks up, shooting at someone, who crawl away.\",is a handsome young man underneath.,looks to her daughter when he's gone.,2\n9529,anetv_1Om21fCH1sI,7291,Various clips are shown of people riding around on bikes as well as sitting on bikes ready to race. Several clips,Various clips are shown of people riding around on bikes as well as sitting on bikes ready to race.,Several clips,gold,are shown of people riding together using thousands and ends with text explaining the tips and curves.,are shown of people up close as well as them riding around on bikes.,are shown of people riding around on skateboards and bumping into one another while a man speaks.,are shown of people riding around on dirt bikes and are shown bouncing around.,1\n9530,anetv_5koLOwu786I,8660,The young man is wiping his hair with towel. The young man,The young man is wiping his hair with towel.,The young man,gold,walks on with the dog in the backyard.,\"is blow drying his hair, rubbing his hair with blow dry.\",starts finishing his work and arrives.,is washing his clothes in the sink.,1\n9531,anetv_5koLOwu786I,1829,\"After he grabs a silver blow dryer and continues to shake his hair until its done. As he continues, a small circle\",After he grabs a silver blow dryer and continues to shake his hair until its done.,\"As he continues, a small circle\",gold,comes off the screen with words as the boy begins to look into the mirror.,appears and makes tattoos with their fingers.,begins draw on the drums and pauses to show some badminton on the deck.,of nothing falls around.,0\n9532,anetv_5koLOwu786I,8661,\"The young man is blow drying his hair, rubbing his hair with blow dry. The young boy\",\"The young man is blow drying his hair, rubbing his hair with blow dry.\",The young boy,gold,begins using his hands along underneath a table while he continues to blow dry his hair.,finishes combing his hair and rubs it all over it.,is shaking his head as he blow dry his hair.,rubs his rags across his dryer to trim a mischievous look.,2\n9533,anetv_5koLOwu786I,1828,Justin Beiber is standing in front of the mirror shaking and towel drying his hair. After he,Justin Beiber is standing in front of the mirror shaking and towel drying his hair.,After he,gold,\"continues styling the lady's hair, the reporter wins.\",\"got the bottle, he begins to lay down the fork showing another section of his hair.\",is finished the tattoo and hits the star in it.,grabs a silver blow dryer and continues to shake his hair until its done.,3\n9534,lsmdc1045_An_education-90081,11213,\"The woman shakes her head. And again, someone\",The woman shakes her head.,\"And again, someone\",gold,\"kisses his head, and someone.\",does food through a glass door.,'s reaching with excitement.,looks say something else in the eye.,2\n9535,lsmdc0028_The_Crying_Game-63722,3187,He leaps up from the bed. She,He leaps up from the bed.,She,gold,\"gives someone a sly smile, then lifts his face to his mouth and digs back.\",brings her lips close to his so they touch.,watches him stamping the living floor.,jerks away from him.,1\n9536,lsmdc0028_The_Crying_Game-63722,3193,She smiles brightly at something behind someone. He,She smiles brightly at something behind someone.,He,gold,turns and sees someone is there.,holds out a restraining hand.,sits down with his supplies.,squishes his ears one ear.,0\n9537,lsmdc0028_The_Crying_Game-63722,3192,\"He sees someone looking at him, smiling brightly, then talking back to someone. She\",\"He sees someone looking at him, smiling brightly, then talking back to someone.\",She,gold,smiles brightly at something behind someone.,takes out the envelope as someone comes inside.,holds the ticket for her.,\"digs back with one finger, and goes out.\",0\n9538,lsmdc0028_The_Crying_Game-63722,3190,Someone stands in the darkness. He,Someone stands in the darkness.,He,gold,comes up the stone steps to the porch.,groggily turns upside and walks up to the trucks.,\"stands outside watching, the flowers behind his back.\",glances up at the locket around his neck and still breathing deeply.,2\n9539,lsmdc0028_The_Crying_Game-63722,3188,She brings her lips close to his so they touch. He,She brings her lips close to his so they touch.,He,gold,brings a tool to her cheek.,\"lifts an slender cake to meet his lips, then shifts his sad stare.\",grabs her hair and pulls her head back.,starts to sit in front of him.,2\n9540,lsmdc0028_The_Crying_Game-63722,3189,He grabs her hair and pulls her head back. She,He grabs her hair and pulls her head back.,She,gold,comments in front of a banana.,falls from the repaired window.,pulls a gun and sticks it between his teeth.,takes her tongue as she goes.,2\n9541,lsmdc0028_The_Crying_Game-63722,3194,In the background we see someone rising. People,In the background we see someone rising.,People,gold,moves back a door before a white narsil someone returns to a collection of petite fairies toward a wall where they are used.,making their way to their seats at the bar.,signs off to dances in more two shapes.,keep food into the kitchen.,1\n9542,lsmdc0028_The_Crying_Game-63722,3191,\"He stands outside watching, the flowers behind his back. Then the chair turns and we\",\"He stands outside watching, the flowers behind his back.\",Then the chair turns and we,gold,see someone coming opening.,see some advances square.,see it is someone.,see someone's reflection in the doorway cutting his legs.,2\n9543,anetv_GZjNt2TsChs,13948,A young child is seen climbing up a playground and then going down a slide. She,A young child is seen climbing up a playground and then going down a slide.,She,gold,climbs a foot of stairs and slides down a slide.,goes back to the top again followed by another go down the slide and back to the stairs again.,walks back and fourth down the slide while the camera follows her movements.,is then seen standing in a park followed by several people speaking to one another.,1\n9544,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17017,\"In a car, someone flips through a binder of property listings as he rides besides a dimple - chinned man in glasses. In the back seat, someone\",\"In a car, someone flips through a binder of property listings as he rides besides a dimple - chinned man in glasses.\",\"In the back seat, someone\",gold,plays with a digital camera.,struts into the woods and spots a bartender.,sits on a platform next to him watching.,holds out a wooden box and drains it into a straw.,0\n9545,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17003,\"In the next sketch, a boy sits with his elbows on a table, his face buried in his hands. The sketch on the opposite page\",\"In the next sketch, a boy sits with his elbows on a table, his face buried in his hands.\",The sketch on the opposite page,gold,\", he stuffs it in his pocket and examines a gold picture of a smiling boy.\",shows the name of the vanger family.,shows a giant turtle painted surface.,shows a woman cradling a baby while a figure watches from a doorway.,3\n9546,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16995,\"On the storage bag's white label, someone writes pb and a backwards j.. Now, someone\",\"On the storage bag's white label, someone writes pb and a backwards j..\",\"Now, someone\",gold,straps full pink on.,pushes open someone's bedroom door and finds his son asleep on top of the covers.,lies in a static tube until either side.,frantically vent her phone to her ear and ear.,1\n9547,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17012,\"Picking her up, someone carries her into her bedroom. Reaching a bed piled high with stuffed animals, he\",\"Picking her up, someone carries her into her bedroom.\",\"Reaching a bed piled high with stuffed animals, he\",gold,reaches for it to grab her intently and others be led back along the loft.,unlocks the door and faces her.,sits on its edge and sets someone on his lap.,lifts someone up off her bed.,2\n9548,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16992,He watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen. She,He watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen.,She,gold,\"reveals a flower with a pretty bearded, dark skinned editor.\",stares at him thoughtfully.,\"combines the slices to make two sandwiches, then grabs storage bags.\",returns one eggs and a decanter.,2\n9549,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16998,\"He sits on the edge of the bed and shoots someone a perplexed glance. Furrowing his brow, he\",He sits on the edge of the bed and shoots someone a perplexed glance.,\"Furrowing his brow, he\",gold,smirks a little as he climbs to one of the twins's feet.,shifts away from the first server.,opens the book to a pair of skillfully drawn sketches.,swallows at a meal with straws.,2\n9550,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17011,\"Someone stands in the doorway. Picking her up, someone\",Someone stands in the doorway.,\"Picking her up, someone\",gold,slams her on the stairs and pumps her fist.,finds a fallen area beside someone.,carries her into her bedroom.,follows him to the edge of the fort.,2\n9551,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17014,He gazes out a window at a party in the yard next door. She,He gazes out a window at a party in the yard next door.,She,gold,furrows his brow and unties the top off its top.,fixes a big grin on his face as he strides outside.,\"looks down the aisle, then turns.\",watches them with a doleful look.,3\n9552,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17005,Someone finds a drawing filling up both sides. Someone,Someone finds a drawing filling up both sides.,Someone,gold,crosses the finished table slides.,smiles at someone's mother.,sets the sketchbook aside and caresses his son's shaggy brown bangs.,writes the final picture of the hero in the dragon ring.,2\n9553,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16985,\"With concerned looks, both men shift their eyes back to someone's drawing, where the bald decapitated man's tongue juts from his mouth in agony, as his head flies away from his body. The principal\",\"With concerned looks, both men shift their eyes back to someone's drawing, where the bald decapitated man's tongue juts from his mouth in agony, as his head flies away from his body.\",The principal,gold,\"hauls up a drink of milk, sticks the filter over the cupboard, shakes it and rises through the window.\",\"shoots the father a horrified glance, then heads off.\",pumps his hands like a flier.,slams the suit's magazine over his desk and starts to punch him with his hand.,1\n9554,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16984,A drawing shows a man with his head flying off his sliced neck. He,A drawing shows a man with his head flying off his sliced neck.,He,gold,is flat on the dart board.,then joins the group of people indoors.,starts on playing the drums with his paddle.,holds someone's gaze.,3\n9555,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17013,\"Reaching a bed piled high with stuffed animals, he sits on its edge and sets someone on his lap. He\",\"Reaching a bed piled high with stuffed animals, he sits on its edge and sets someone on his lap.\",He,gold,crumples to its knees.,sets the cross in front of him.,keeps stepping between someone's legs as he tests the top of a bar.,gazes out a window at a party in the yard next door.,3\n9556,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16999,\"Furrowing his brow, he opens the book to a pair of skillfully drawn sketches. One\",\"Furrowing his brow, he opens the book to a pair of skillfully drawn sketches.\",One,gold,looks up at them.,\"swallows hard, his eyes widening.\",shows a bald burly man with a menacing look.,\"wears a long, white bathrobe.\",2\n9557,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17016,\"She rests her head against his shoulder and closes her eyes. As he returns his attention to the young partygoers next door, a blonde woman holding a beer\",She rests her head against his shoulder and closes her eyes.,\"As he returns his attention to the young partygoers next door, a blonde woman holding a beer\",gold,spots him and gives a friendly wave.,sits on a table beside him.,stands next to him.,watch with a backpack.,0\n9558,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16987,\"Turning thoughtfully to his son, someone sees him leaning against the bank of lockers with his arms crossed. As his father approaches, someone\",\"Turning thoughtfully to his son, someone sees him leaning against the bank of lockers with his arms crossed.\",\"As his father approaches, someone\",gold,hoists his backpack onto his shoulder.,drapes one arm around someone's shoulders.,clasps a hand fondly of his wife's brow.,shakes his hand in front of him and shifts his grim gaze.,0\n9559,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16986,\"The principal shoots the father a horrified glance, then heads off. Turning thoughtfully to his son, someone\",\"The principal shoots the father a horrified glance, then heads off.\",\"Turning thoughtfully to his son, someone\",gold,snorts a line of cocaine in his mouth as he removes his point to the magazine and mouths someone at him.,gives him a look then climbs to her feet with her dog.,gives an unnerved shake of the head as he waddles over to someone and kneels nearby.,sees him leaning against the bank of lockers with his arms crossed.,3\n9560,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16989,\"Someone strides out of the school with his son right behind him. At home, someone\",Someone strides out of the school with his son right behind him.,\"At home, someone\",gold,'s boat hauls a bass into a cage.,opens the fridge to reveal stacks of plastic containers with notes on them.,sits down at a picnic table and looks at some old postcards lying on the floor beside him.,sets her suitcase near the closed suite window followed by someone and someone chatting with a waitress.,1\n9561,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17008,He stares at his weary defeated reflection. He,He stares at his weary defeated reflection.,He,gold,tilts up the side mirror as it cuts to his reflection.,\"turns backward, his back against the water.\",quietly puts a thief in the mans shoes.,shifts his gaze to a cluster of pill bottles filling a shelf.,3\n9562,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16993,\"Holding a marker, someone draws a check someone in the air. She\",\"Holding a marker, someone draws a check someone in the air.\",She,gold,swings someone in the air with another hammer.,fidgets with his closed mouth.,pokes through a drawer.,smiles as she resumes her work.,3\n9563,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17002,\"At the center of the table, tiny people stand around a gaping chasm. In the next sketch, a boy\",\"At the center of the table, tiny people stand around a gaping chasm.\",\"In the next sketch, a boy\",gold,sits at the books with dark cursive written on its back.,tries to break his hair across.,\"sits with his elbows on a table, his face buried in his hands.\",is seen staring at a mirror covering a wedding ring on her finger.,2\n9564,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16997,\"Entering the room, someone gently lifts his son's hand and takes the book. He\",\"Entering the room, someone gently lifts his son's hand and takes the book.\",He,gold,waddles to him.,returns to his radio.,\"faces someone, someone bites his lip.\",sits on the edge of the bed and shoots someone a perplexed glance.,3\n9565,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17006,\"Someone sets the sketchbook aside and caresses his son's shaggy brown bangs. Later in a bathroom, he\",Someone sets the sketchbook aside and caresses his son's shaggy brown bangs.,\"Later in a bathroom, he\",gold,swings around a stove and lights a cigarette.,\"dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink.\",looks down at the sorting chain which his fallen father sits on an easel and gazes down at his dead body.,picks up a white stocking shaving machine lying on the floor.,1\n9566,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17015,\"Turning from the window, someone holds her tighter. She\",\"Turning from the window, someone holds her tighter.\",She,gold,pries her finger out of his mouth.,wraps his arms around her shoulders.,grasps his hold and they kiss.,rests her head against his shoulder and closes her eyes.,3\n9567,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16991,\"Sitting at a table in a breakfast nook, he smiles. He\",\"Sitting at a table in a breakfast nook, he smiles.\",He,gold,sprinkles of more part of his olive garland.,studies the book of it as someone waits as he gets up.,watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen.,goes up to someone's side as they take off their coats.,2\n9568,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16996,\"Now, someone pushes open someone's bedroom door and finds his son asleep on top of the covers. Entering the room, someone\",\"Now, someone pushes open someone's bedroom door and finds his son asleep on top of the covers.\",\"Entering the room, someone\",gold,sits motionless with his gaze fixed on the patient on his lap.,lifts his binoculars again and sees someone walking among the bushes.,gently lifts his son's hand and takes the book.,removes a rag from a drawer and heads off.,2\n9569,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16990,\"At home, someone opens the fridge to reveal stacks of plastic containers with notes on them. His daughter\",\"At home, someone opens the fridge to reveal stacks of plastic containers with notes on them.\",His daughter,gold,watches as he fits the new casserole dish inside.,slides the sandwich into the pan as he answers the phone.,tries capsule a plate on the pan.,\"leaves the house with his jacket, as someone answers.\",0\n9570,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16988,\"As his father approaches, someone hoists his backpack onto his shoulder. Someone\",\"As his father approaches, someone hoists his backpack onto his shoulder.\",Someone,gold,picks up the receiver and places it on the back door.,\"drops the boy's head in the floor, then lands with his eyes.\",strides out of the school with his son right behind him.,observes the other people with a digital look.,2\n9571,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17000,One shows a bald burly man with a menacing look. Dark - smudged pencil work,One shows a bald burly man with a menacing look.,Dark - smudged pencil work,gold,out in the original place.,emerge from a cue case.,sharpening at a table marked unto a array of oak paintings with electric sculptures.,creates gloomy shading around both figures.,3\n9572,lsmdc3087_WE_BOUGHT_A_ZOO-40952,16983,He beckons someone into the hall and leads him past artwork posted above the lockers. A drawing,He beckons someone into the hall and leads him past artwork posted above the lockers.,A drawing,gold,page emerges from his pocket.,scrolls out on someone's chest.,unit addresses the same boy.,shows a man with his head flying off his sliced neck.,3\n9573,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17009,\"The shelf below contains jewelry, knick - knacks, and a framed photo of him and someone. Someone\",\"The shelf below contains jewelry, knick - knacks, and a framed photo of him and someone.\",Someone,gold,puts a new designer makeup on.,lowers his heartbroken eyes.,lifts her facing stone and looks around.,looks down at the sidewalk table.,1\n9574,lsmdc3087_WE_BOUGHT_A_ZOO-40952,17007,\"Later in a bathroom, he dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink. He\",\"Later in a bathroom, he dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink.\",He,gold,\"stares slack - jawed, and sees the children getting into his arms chatting.\",stares at his weary defeated reflection.,\"salutes for a, someone, closes the fridge door and heads back to the living room.\",\"takes himself back to a plastic bathroom bathroom, holds it empty and puts it in his pocket.\",1\n9575,lsmdc1059_The_devil_wears_prada-98688,14517,She crosses in heavy traffic. Someone,She crosses in heavy traffic.,Someone,gold,reaches the front with the door and is on a platform cutting the air several times.,works his way up the street.,\"struggles back into the office, carrying big bags and four coffees.\",\"stands in the upper side mirror, looking down into a thin jacket.\",2\n9576,lsmdc1059_The_devil_wears_prada-98688,14518,\"Someone struggles back into the office, carrying big bags and four coffees. Someone\",\"Someone struggles back into the office, carrying big bags and four coffees.\",Someone,gold,takes a bow.,\"freezes, occurring the blinds and looking through the lobby.\",looms over the revolving gate then at the gate over the rear of the car.,waltzes in and drops her coat and bag onto someone's desk.,3\n9577,lsmdc1059_The_devil_wears_prada-98688,14516,A sleek chauffeur - driven car brings someone to someone showroom on 7th Avenue. She,A sleek chauffeur - driven car brings someone to someone showroom on 7th Avenue.,She,gold,climbs a po tower staircase.,\"halt at an brothel, its pitch black and white.\",\"visits her, paces carrying her folders.\",crosses in heavy traffic.,3\n9578,anetv_AG6Rpvxxetg,5791,The video takes place in a gymnastics arena. A man,The video takes place in a gymnastics arena.,A man,gold,performs clears dive equipment from a coach's coach.,catches more athletes and targets them over the crowd.,is performing gymnastics on a beam while several others are watching.,spins with a rope attached to his feet.,2\n9579,anetv_AG6Rpvxxetg,5792,A man is performing gymnastics on a beam while several others are watching. The man,A man is performing gymnastics on a beam while several others are watching.,The man,gold,jumps high on the mat while people watch.,begins on the beam upside down.,jumps into the air and gets caught while on ropes.,continues to push off around the disc while moving his hands around to aim.,1\n9580,anetv_AG6Rpvxxetg,5793,He then does several flips. The video,He then does several flips.,The video,gold,does in slow motion.,\"ends with quince falling back, releasing the white disk across the screen and then runs into the circle lying on the field.\",ends as he performs a final flip and hops off the beam.,ends with the closing graphics shown on the screen.,2\n9581,anetv_Zl3YebXhXC0,5184,A young boy is in the driveway in front of his house. He,A young boy is in the driveway in front of his house.,He,gold,rolls a plastic snowstorm all over the car.,is dancing on a city street.,is wearing a pair of headphones.,mows a small patch of grass.,2\n9582,anetv_Zl3YebXhXC0,15356,A boy blows dead leaves using a blowing machine in the driveway of a house. A man,A boy blows dead leaves using a blowing machine in the driveway of a house.,A man,gold,walks along a sidewalk watching him from a window.,sits on the porch of the house.,sits in the yard next to a pile of brushes and leaf blower.,plays a set of wood.,1\n9583,anetv_Zl3YebXhXC0,5185,He is wearing a pair of headphones. He,He is wearing a pair of headphones.,He,gold,is playing a set of bagpipes.,walks to the table and whispers something.,is using a leaf blower to blow leaves.,eyes the only section of the carved face.,2\n9584,anetv_5X7zeOps9uA,12006,The man backs away from the lady. The lady,The man backs away from the lady.,The lady,gold,takes off her blindfold and walks away.,wave her hands in the air.,falls to the floor with a knife.,lands in a carriage letting go.,0\n9585,anetv_5X7zeOps9uA,12004,The lady in orange leaves the other. The lady,The lady in orange leaves the other.,The lady,gold,moves from the pinata toward the man and swings.,uses the pole to stand outside the perimeter clapping.,puts the contact lens in her eye.,brings the motorcross up in front of the shop and blows the window.,0\n9586,anetv_5X7zeOps9uA,9079,The woman in orange shirt left the woman and the woman in blue shirt starts to hit the pinata. The woman,The woman in orange shirt left the woman and the woman in blue shirt starts to hit the pinata.,The woman,gold,bounces and rhythmically while holding it in between air her legs.,missed the pinata as she walked backwards and continue to hit the air.,kneels and grabs her head while holding a silver cup.,starts doing a.,1\n9587,anetv_5X7zeOps9uA,12005,The lady moves from the pinata toward the man and swings. The man,The lady moves from the pinata toward the man and swings.,The man,gold,puts on blindfold again.,backs away from the lady.,removes the ball from his smaller finger.,grabs another boy and helps her on to the bars.,1\n9588,anetv_5X7zeOps9uA,9078,The woman with blindfold is being guided by other woman. The woman in orange shirt left the woman and the woman in blue shirt,The woman with blindfold is being guided by other woman.,The woman in orange shirt left the woman and the woman in blue shirt,gold,spreads her arms round her head and takes a break before.,continue playing with the shoes.,goes back to talk.,starts to hit the pinata.,3\n9589,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10670,\"Someone puts down her basket and rushes off, quickly followed by someone. The two girls\",\"Someone puts down her basket and rushes off, quickly followed by someone.\",The two girls,gold,\"walk past the restaurant and approach the guests, someone.\",heads down the corridor.,stare after each other as someone strolls ahead stage.,\"hurry around the outside of the house, then across the wide expanse of lawn, looking for their father.\",3\n9590,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10672,\"They spot him, arms behind his back, strolling pensively into the shade of the trees. They\",\"They spot him, arms behind his back, strolling pensively into the shade of the trees.\",They,gold,stop at a hazy window.,follow back with someone's mood.,rush over to him.,turn their tail and bend down to take a drag.,2\n9591,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10666,\"He pulls a letter out of his saddlebag, dismounts, and gives it to her in exchange for a few coins. She\",\"He pulls a letter out of his saddlebag, dismounts, and gives it to her in exchange for a few coins.\",She,gold,\"peers down into the kitchen, after she speaks again, tentatively.\",\"comes to someone's room, puts the alien gun in its pockets, and locks the door.\",\"heads back inside, studying the unopened letter, and goes to knock on the door of someone's study.\",\"completes a high throw and falls but lands on her hands, but fails.\",2\n9592,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10668,She goes inside and hands over the letter. Someone,She goes inside and hands over the letter.,Someone,gold,leaves the letter on the desk until the housekeeper has left.,looks back up and pleased.,buckles as someone straightens the trunk.,leans back into the lifeboat.,0\n9593,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10663,\"Someone, meanwhile, is getting more and more bored by the minute. She\",\"Someone, meanwhile, is getting more and more bored by the minute.\",She,gold,\"suddenly seems to be pulled off the road, so they are very subdued.\",has pictured young's butler.,gets up off the bed and wanders over to the window.,hears him calling to the bell.,2\n9594,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10667,\"She heads back inside, studying the unopened letter, and goes to knock on the door of someone's study. She\",\"She heads back inside, studying the unopened letter, and goes to knock on the door of someone's study.\",She,gold,\"leaves the room, followed by her friend as he heaves his wristwatch from his chair and lifts his head with a gentle smile.\",\"taps the bench and sits next to someone, smiling down at new rising dust.\",goes inside and hands over the letter.,\"halts visibly satisfied, then walks to her car, grabs a book from a chair, and places it into a cooker.\",2\n9595,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10669,Someone leaves the letter on the desk until the housekeeper has left. The housekeeper now,Someone leaves the letter on the desk until the housekeeper has left.,The housekeeper now,gold,turns to find someone holding a baby with one of them.,\"looks in a mirror, and hears a simple, bench voice.\",has an envelope of water beside her.,makes her way out into the garden to take down the washing.,3\n9596,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10665,A young man is galloping along on horseback in the bright sunshine. The housekeeper,A young man is galloping along on horseback in the bright sunshine.,The housekeeper,gold,\"peers out of the window at longbourn, and seeing the messenger arriving, quickly hurries out to meet him.\",leads his group onward the other way.,is in several grey dark mountains giving different characteristics or dusting.,strolls through the hotel and into the water where someone sits beside her.,0\n9597,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10673,They rush over to him. Someone,They rush over to him.,Someone,gold,grips him cues to someone.,falls as she shields her friend and whirls her around.,grabs another boot and pulls it off his leg.,sits down with the letter.,3\n9598,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10660,\"Seeing someone's distress, someone's face falls, and he leaves the room. Meanwhile, someone\",\"Seeing someone's distress, someone's face falls, and he leaves the room.\",\"Meanwhile, someone\",gold,\"is back out, searching the darkened streets, clutching a piece of paper in his hand.\",has walked through the house garden.,meets someone's handwritten book.,wakes over his shoulder.,0\n9599,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10661,\"Meanwhile, someone is back out, searching the darkened streets, clutching a piece of paper in his hand. He\",\"Meanwhile, someone is back out, searching the darkened streets, clutching a piece of paper in his hand.\",He,gold,gazes up at a house.,brings his hand into a pocket and talks for a minute to recognize the words again.,cocks his head at someone as he cocks his head.,takes out the gps and rams its fangs out and close it.,0\n9600,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10671,\"The two girls hurry around the outside of the house, then across the wide expanse of lawn, looking for their father. They\",\"The two girls hurry around the outside of the house, then across the wide expanse of lawn, looking for their father.\",They,gold,wraps a chain around someone's neck then tumbles all over.,stare at each other.,\"spot him, arms behind his back, strolling pensively into the shade of the trees.\",walk home as someone studies them.,2\n9601,lsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10664,She gets up off the bed and wanders over to the window. A young man,She gets up off the bed and wanders over to the window.,A young man,gold,is galloping along on horseback in the bright sunshine.,sits on a sofa on a couch.,sheds a thick raven with damp hair.,jogs across the living room to a vacant station.,0\n9602,lsmdc1040_The_Ugly_Truth-8816,7503,Someone's smile gives way to a hardened expression. Someone,Someone's smile gives way to a hardened expression.,Someone,gold,puts on her question melons.,pan around close and setting him aside.,\"watches him go with an anxious, thoughtful expression.\",attacks a goblin glare.,2\n9603,lsmdc1040_The_Ugly_Truth-8816,7506,Someone returns to her room. Someone,Someone returns to her room.,Someone,gold,walks into the room.,steps up into the lounge as she serves a drink.,stares at the young who lies on his back.,pats with his suitcase.,0\n9604,lsmdc1040_The_Ugly_Truth-8816,7504,\"Someone watches him go with an anxious, thoughtful expression. Someone\",\"Someone watches him go with an anxious, thoughtful expression.\",Someone,gold,becomes irritated as he sits beside a stove.,walks up to the wardrobe.,wanders off with his hands in his pockets.,glares at someone as someone takes someone's hand in the back.,2\n9605,lsmdc1040_The_Ugly_Truth-8816,7505,Someone wanders off with his hands in his pockets. Someone,Someone wanders off with his hands in his pockets.,Someone,gold,picks up a cup and holds it apart as he fumbles.,leans back in studiously.,returns to her room.,is lowering from a solemn sky above it.,2\n9606,anetv_DXOKFXlx84M,7372,A dog is seen laying comfortably in a large bowl with a man beside him. The man,A dog is seen laying comfortably in a large bowl with a man beside him.,The man,gold,turns the hair around and continues playing with one another.,moves the potatoes all along the table while continuing to eat.,circles around and speaks to the woman on the ground.,is seen kneeling down next to the dog and begins rubbing him down.,3\n9607,anetv_DXOKFXlx84M,7373,The man is seen kneeling down next to the dog and begins rubbing him down. The man,The man is seen kneeling down next to the dog and begins rubbing him down.,The man,gold,continues to clean off the dog in the bath.,finishes and ends by pointing out the camera.,continues to pull off the machine while pausing to speak to the camera and brushing.,continues brushing back and fourth while continuing to work and cutting the leaves.,0\n9608,anetv_PqP3JIJEU5I,11434,He moves quickly to smooth out dents. The man,He moves quickly to smooth out dents.,The man,gold,\"moves toward the table, picks up a clipboard, talks to someone, who takes a selection of green shards.\",moves to the bottom and smooths back up the top.,snaps a piece of paper.,stops laying his balls together and continues to talk about the gliding surroundings.,1\n9609,anetv_PqP3JIJEU5I,11435,The man moves to the bottom and smooths back up the top. He,The man moves to the bottom and smooths back up the top.,He,gold,turns again while still still speaking to him.,finishes and walks away.,lays the book on a paper towel.,brushes the hair and uses it to wipe across the fence.,1\n9610,lsmdc3079_THINK_LIKE_A_MAN-36603,14352,\"Steadying himself on someone, someone lifts his leg and shoots the ball with one hand. It\",\"Steadying himself on someone, someone lifts his leg and shoots the ball with one hand.\",It,gold,lands into two inflatable cones.,bounces off the rim.,falls from someone's face.,\"crawls downstairs into the water, as someone buzzes someone through a revolving gate.\",1\n9611,anetv_Atdxx_Pxnd4,6799,He uses a lasso to rope a calf. He,He uses a lasso to rope a calf.,He,gold,walks back to the railing.,\"tries to tie up the calf, losing his rope.\",\"a line, he puts it on his horse.\",gapes at the japanese kite in midair.,1\n9612,anetv_Atdxx_Pxnd4,6798,A cowboy runs out of a gate on a horse. He,A cowboy runs out of a gate on a horse.,He,gold,lassos and raise the cow.,uses a lasso to rope a calf.,gets to his feet and begins gathering up the calf on top of a cow.,chases after the calf and jumps down and around.,1\n9613,lsmdc0029_The_Graduate-64227,10298,Someone steps in beside someone. Someone,Someone steps in beside someone.,Someone,gold,turns her head and gawks at each other.,steps in beside the others.,wears his sparkling gown.,\"snatches the robe off and waves his hand, gills passing after him.\",1\n9614,lsmdc0029_The_Graduate-64227,10299,Someone steps in beside the others. They,Someone steps in beside the others.,They,gold,blot out the sun.,peer up at the titanic.,sits with her rear to one side.,run to the hide.,0\n9615,lsmdc0029_The_Graduate-64227,10300,They blot out the sun. Someone,They blot out the sun.,Someone,gold,joins a tree in the castle.,steps in beside them.,\"wanders around the room, one then backtracks, just sitting.\",moves to his father.,1\n9616,anetv_1o-Fx2dGfpc,19513,She lifts the violin up and starts playing it. She,She lifts the violin up and starts playing it.,She,gold,starts playing the drums several times.,takes the drums and lays it down.,finishes and lowers the violin.,leans back in the chair and begins playing the keyboard.,2\n9617,anetv_1o-Fx2dGfpc,19512,A woman is sitting down holding a violin. She,A woman is sitting down holding a violin.,She,gold,is playing a violin.,picks up a violin and starts playing her piano.,begins dancing with little dogs at the end.,lifts the violin up and starts playing it.,3\n9618,lsmdc0043_Thelma_and_Luise-68384,1194,\", all are gesticulating wildly. Someone\",\", all are gesticulating wildly.\",Someone,gold,hangs up the phone.,\"scrambles over to the truck, into the gurgles with a bystander.\",looks around as she stops playing on the elegant platform.,\"places his palms together and cheers, to wake stunned.\",0\n9619,lsmdc0043_Thelma_and_Luise-68384,1199,Someone is fumbling with the phone. Someone,Someone is fumbling with the phone.,Someone,gold,\"drives away with someone, wearing his t - shirt and flying the truck's tire.\",gives people a look as if he is got it completely under control.,drops to the windows.,\"is struggling to keep control of him, seeing him dart the archway.\",1\n9620,lsmdc0043_Thelma_and_Luise-68384,1195,\"Everyone is very disappointed, taking off their headsets, turning off tape recorders and looking at someone like he is an idiot. Someone still\",\"Everyone is very disappointed, taking off their headsets, turning off tape recorders and looking at someone like he is an idiot.\",Someone still,gold,holds the phone in his hand.,can't hear what he is saying.,does n't react in the same situation.,\"has not, yet.\",0\n9621,lsmdc0043_Thelma_and_Luise-68384,1197,People are staring at each other intently. Someone,People are staring at each other intently.,Someone,gold,steps up to the phone.,kisses his daughter suddenly and pulls her lips tight.,\"walks up to the parlor, where he'd been listening to someone 'realization.\",turns over and lifts the seat to his neck.,0\n9622,lsmdc0043_Thelma_and_Luise-68384,1198,Again everybody springs into action. Someone,Again everybody springs into action.,Someone,gold,rests his hand against someone's forehead.,knocks the booze on the pearl.,is fumbling with the phone.,spins the camera away.,2\n9623,lsmdc0043_Thelma_and_Luise-68384,1196,Someone still holds the phone in his hand. People,Someone still holds the phone in his hand.,People,gold,\", his home now at his motel, comes with a box.\",are staring at each other intently.,\"close up, reads an beside guardian who now wears a stretcher.\",\"put his fingers at the faucet, then walk past them toward an elevator.\",1\n9624,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4839,\"The locomotive's wheels spin kicking up sparks. Before the engine reaches the end, the bridge underneath it\",The locomotive's wheels spin kicking up sparks.,\"Before the engine reaches the end, the bridge underneath it\",gold,swoops for her: moving faster and faster.,\"lands pale and muddy, amid the hayseeds.\",is covered with cloaks and churning patterns.,splits from the final portion of the track.,3\n9625,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4829,\"Jostling inside a railcar, someone braces himself and someone rises to his knees. Someone\",\"Jostling inside a railcar, someone braces himself and someone rises to his knees.\",Someone,gold,lifts one of the rocks and couch climbing.,\"streak in the ocean, totally straight.\",has a ring in his hand.,leaves the downed railcar.,3\n9626,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4823,\"He spots someone unconscious on his back, then looks up through the open ceiling. Turning around, he\",\"He spots someone unconscious on his back, then looks up through the open ceiling.\",\"Turning around, he\",gold,\"briefly raises his arms towards a double cage, the couple blinking curtly.\",gets a quick glimpse then hides underneath the sedan.,crashes over the window as he reaches it.,finds himself face to face with someone.,3\n9627,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4825,Someone grabs someone's throat. Someone and someone,Someone grabs someone's throat.,Someone and someone,gold,arrive to see someone bite into someone's neck.,dance as they flash steadily.,follow him down the hall toward the jungle.,fall with a kiss.,0\n9628,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4834,\"He drives his fist through the vampire's chest then pulls it out awash with blood. His mouth agape, someone\",He drives his fist through the vampire's chest then pulls it out awash with blood.,\"His mouth agape, someone\",gold,finds someone hanging out of its crumbling choosing patterns.,falls flat on his back.,\"shouts out a condom, pulls it off his shirt and swipes it with the gun.\",sucks back a white trigger before smashing the curtained opening.,1\n9629,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4835,\"His mouth agape, someone falls flat on his back. Someone and someone\",\"His mouth agape, someone falls flat on his back.\",Someone and someone,gold,stride through an elegant room.,approach the cab and follow both officer out.,pull off the blankets and cover him with their horns.,notice the track collapsing above them.,3\n9630,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4806,\"Meanwhile, someone exhales a puff of thick smoke. With a match, she\",\"Meanwhile, someone exhales a puff of thick smoke.\",\"With a match, she\",gold,blows out a green smoke.,lights a rope sending flames up a beam.,puts the bite on her pipe.,takes a bottle from it.,1\n9631,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4815,\"Someone boots someone back into a corner. As the train nears the burning bridge, someone\",Someone boots someone back into a corner.,\"As the train nears the burning bridge, someone\",gold,stares at the fruit for a moment.,eyes the blaze from the locomotive.,commands the wings to make him.,peers at the iceberg.,1\n9632,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4812,He pulls out a common rock. He,He pulls out a common rock.,He,gold,drilled it around a hole.,watches the robed chasing disperse.,pins it onto the rooftops and sending him tumbling throughout the lobby.,tosses the rock and crosses to another crate.,3\n9633,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4831,\"Emerging from thick smoke, he crosses the support structure and kicks out a beam. The track under the last railcar gives out and the railcar\",\"Emerging from thick smoke, he crosses the support structure and kicks out a beam.\",The track under the last railcar gives out and the railcar,gold,flips forward forcing someone and someone to run on to the next.,\"draws the diary to him, his gave him in its sitting position.\",slide of the shimmering surface of the water.,melts away from the bars.,0\n9634,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4816,\"As the train nears the burning bridge, someone eyes the blaze from the locomotive. He\",\"As the train nears the burning bridge, someone eyes the blaze from the locomotive.\",He,gold,fires a fire pump.,\"pulls back a lever, uses a piece of wood to keep it in place then leaves the controls.\",jumps into the air and fires.,\", people sit at the table, facing each other.\",1\n9635,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4805,\"As someone ducks a punch, the pair gets jostled atop the last railcar. Meanwhile, someone\",\"As someone ducks a punch, the pair gets jostled atop the last railcar.\",\"Meanwhile, someone\",gold,\"glances aside, as someone makes the grimhold jauntily on her chest sending sketches of a column - clad her own.\",hurries inside the canvas shelter and stares at the back screens to someone.,exhales a puff of thick smoke.,applauds someone as someone retrieves the blue van coat and makes a mad dash for someone.,2\n9636,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4809,Someone catches someone's arm then flips him. Someone,Someone catches someone's arm then flips him.,Someone,gold,rises to his feet and slams someone's face through the top of a wooden crate.,\"looks over at someone, who shakes someone's hand.\",tosses the shard and rolls it under his arm.,is still on the yellow board.,0\n9637,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4836,Someone and someone notice the track collapsing above them. They,Someone and someone notice the track collapsing above them.,They,gold,jump into the open trailer of the locomotive's coal car.,follow a suit and two men inside.,are in their way hurrying past the lockers.,get up and lean close to a fence to watch someone.,0\n9638,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4826,Someone and someone arrive to see someone bite into someone's neck. The vampire,Someone and someone arrive to see someone bite into someone's neck.,The vampire,gold,brings one ax on his side.,looks up at them.,takes a few deep breaths and dabs his brow with his latex gloves.,holds up his human coworkers.,1\n9639,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4822,\"Making his way through the railcars, someone finds a floor strewn with broken wood. He\",\"Making his way through the railcars, someone finds a floor strewn with broken wood.\",He,gold,\"spots someone unconscious on his back, then looks up through the open ceiling.\",bends down as if locked on fire.,find a bunch of three night birds as a level up.,\"stands nearby for a moment, then stands and moves towards the door.\",0\n9640,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4821,\"They run back across the rooftops. Making his way through the railcars, someone\",They run back across the rooftops.,\"Making his way through the railcars, someone\",gold,and another youth lie upon their fields.,mournfully chops a piece of steam.,spots him and lock a chain.,finds a floor strewn with broken wood.,3\n9641,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4827,\"The vampire looks up at them. Now, as the train passes over the burning bridge, the track splits and the last railcar\",The vampire looks up at them.,\"Now, as the train passes over the burning bridge, the track splits and the last railcar\",gold,\"go out, leaving only a beat.\",breaks loose from the train.,surfaces into the darkness.,flies into his pocket.,1\n9642,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4840,\"Before the engine reaches the end, the bridge underneath it splits from the final portion of the track. Someone and someone\",\"Before the engine reaches the end, the bridge underneath it splits from the final portion of the track.\",Someone and someone,gold,\"brace themselves, clinging to the engine.\",rush up and pulls him up.,arrive on the other side.,get cigarette from the floor.,0\n9643,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4838,He and someone make their way across the engine. The locomotive's wheels,He and someone make their way across the engine.,The locomotive's wheels,gold,\"seem to emerge, moving forward.\",spin to move against someone.,spin kicking up sparks.,wheel up a gurney.,2\n9644,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4819,\"Meanwhile, someone helps someone onto the roof. They\",\"Meanwhile, someone helps someone onto the roof.\",They,gold,peer out the tunnel.,try to hold their house as hard as they can.,rise to their feet and spot the burning bridge up ahead.,take him down in a ditch.,2\n9645,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4807,\"With a match, she lights a rope sending flames up a beam. As she marches off, a massive fire\",\"With a match, she lights a rope sending flames up a beam.\",\"As she marches off, a massive fire\",gold,flares both glamorous shoes.,shines in the trees around him.,creature runs out of the water.,consumes the entire support structure of a bridge.,3\n9646,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4810,Someone rises to his feet and slams someone's face through the top of a wooden crate. Someone,Someone rises to his feet and slams someone's face through the top of a wooden crate.,Someone,gold,tears down someone's vest.,\"twitches a smile, hushed and flexes.\",lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself.,\"shuts the door and pauses, watching the four men.\",2\n9647,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4811,Someone lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself. He,Someone lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself.,He,gold,pulls out a common rock.,looks round and leaves the house.,turns side to side and hobbles around the vegetables.,\"glares at the key, then backs away.\",0\n9648,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4828,\"About to fall into the blaze below, they daringly leap across the divide and land on the next rail car's roof. Jostling inside a railcar, someone braces himself and someone\",\"About to fall into the blaze below, they daringly leap across the divide and land on the next rail car's roof.\",\"Jostling inside a railcar, someone braces himself and someone\",gold,turns on his wipers.,weaves his motorcycle through.,rises to his knees.,smashes her car door into the concrete.,2\n9649,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4808,\"As she marches off, a massive fire consumes the entire support structure of a bridge. Someone\",\"As she marches off, a massive fire consumes the entire support structure of a bridge.\",Someone,gold,washes more out of the tank and holds it out.,watches her from behind a photo of a statue.,catches someone's arm then flips him.,picks up the third manual in one hand and turns it out.,2\n9650,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4814,\"He kicks open another crate, spilling rocks on the floor. Someone\",\"He kicks open another crate, spilling rocks on the floor.\",Someone,gold,grabs his photo from the backseat.,is caught in the water.,boots someone back into a corner.,carries the chicken to land.,2\n9651,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4832,The track under the last railcar gives out and the railcar flips forward forcing someone and someone to run on to the next. Someone,The track under the last railcar gives out and the railcar flips forward forcing someone and someone to run on to the next.,Someone,gold,\"is now standing, standing.\",lowers some discs from his boot.,kicks out another support beam.,stops in a white hug.,2\n9652,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4813,\"He tosses the rock and crosses to another crate. Inspecting the cargo, he\",He tosses the rock and crosses to another crate.,\"Inspecting the cargo, he\",gold,darts down the hallway.,finds more rocks in place of the silver.,heads down a long rocky hill with two coats.,tosses a parcel in front of someone.,1\n9653,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4804,\"He kicks off the passing rock wall and lands facing his rival. As someone ducks a punch, the pair\",He kicks off the passing rock wall and lands facing his rival.,\"As someone ducks a punch, the pair\",gold,gets on and someone fires into the outside.,shoots wall jacks across the table.,gets jostled atop the last railcar.,sinks a helicopter in the field.,2\n9654,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4830,\"Someone leaves the downed railcar. Emerging from thick smoke, he\",Someone leaves the downed railcar.,\"Emerging from thick smoke, he\",gold,stirs a pot of popcorn next to a straight pipe.,dives onto a high platform to meet the elder man foe.,stands and picks sparks bag from the shoulders of his bunk.,crosses the support structure and kicks out a beam.,3\n9655,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4817,\"He pulls back a lever, uses a piece of wood to keep it in place then leaves the controls. He\",\"He pulls back a lever, uses a piece of wood to keep it in place then leaves the controls.\",He,gold,enters the first railcar and staggers past the dummy cargo.,is in a middle of the desert and chop up a carpet.,rises and flips out the tv.,careens faster and closer to the still pit.,0\n9656,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4818,\"He enters the first railcar and staggers past the dummy cargo. Meanwhile, someone\",He enters the first railcar and staggers past the dummy cargo.,\"Meanwhile, someone\",gold,stops and faces a soldier on top of the box.,joins the deejay as he strides away.,stands at the far side of the building's front door.,helps someone onto the roof.,3\n9657,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4833,Someone kicks out another support beam. Someone and someone,Someone kicks out another support beam.,Someone and someone,gold,move in and out of the hop - open audience.,fall to the structure under the track then hurry along its beams.,share someone's sad kiss.,\"are on the other side of a chain, holding a bar of someone with a model.\",1\n9658,anetv_clSku91LoQQ,12513,A man is wearing sunglasses and singing on stage. Another man,A man is wearing sunglasses and singing on stage.,Another man,gold,is outside singing into the microphone.,is playing an electric guitar to his right.,is seen rollerblading through the middle of a large group of people and leads into more people jumping on the beach.,picks up his guitar and begins to play the bongos.,1\n9659,anetv_clSku91LoQQ,12514,Another man is playing an electric guitar to his right. A little boy,Another man is playing an electric guitar to his right.,A little boy,gold,\"joins them, singing and playing an accordian.\",is asleep in his chair playing the accordian.,is sitting in bed holding his guitar.,plays the drums while a guitar also plays guitar.,0\n9660,anetv_clSku91LoQQ,10744,A band is seen performing on a stage in front of a large audience with a small child singing and playing the harmonica. The boy,A band is seen performing on a stage in front of a large audience with a small child singing and playing the harmonica.,The boy,gold,stops watching while he rotates around the baton before another group of dogs running around him.,continues playing while holding up his hands and moving his arms.,continuously lays down the guitar while still looking at the camera as well as holding him along and out in slow dancing.,continues playing with the band as the audience claps.,3\n9661,lsmdc0029_The_Graduate-64314,4418,He turns the key in the ignition and starts the car. He,He turns the key in the ignition and starts the car.,He,gold,walk down the street.,freezes with his hand still on the key.,\"stands up, letting someone pass.\",\"goes to trunk, and notices it's someone.\",1\n9662,lsmdc0029_The_Graduate-64314,4419,He freezes with his hand still on the key. He,He freezes with his hand still on the key.,He,gold,looks up as someone removes his cap.,checks to cross the pan.,slides the catalog back in to place.,turns off the engine.,3\n9663,anetv_ZG4ApSk5iKw,7521,He raises the back on his work out machine and starts doing crunches again. He,He raises the back on his work out machine and starts doing crunches again.,He,gold,smiles back at the camera and lets him go.,speeds off and peers at the mailbox.,sits up and continues talking to the camera.,lifts the foot up before coming to the piece.,2\n9664,anetv_ZG4ApSk5iKw,7519,A man is doing various tasks while doing crunches. He,A man is doing various tasks while doing crunches.,He,gold,stops and talks to the camera.,stands up and walks on behind the beam as he dismounts.,is using gear in the tattoo gear.,have flips in his hands and shown.,0\n9665,anetv_ZG4ApSk5iKw,7520,He stops and talks to the camera. He,He stops and talks to the camera.,He,gold,starts throwing over a glass of water.,is only in full gym fighting.,runs toward the camera.,raises the back on his work out machine and starts doing crunches again.,3\n9666,lsmdc3055_PROMETHEUS-27233,5077,\"Someone opens the air locked doors with her back and hand, then jumps out and lands in a hard roll. Yet another tentacle\",\"Someone opens the air locked doors with her back and hand, then jumps out and lands in a hard roll.\",Yet another tentacle,gold,\"comes running in, flanked by long women.\",enters at the rail of the cabin.,reaches out and wraps around his head.,\"reaches someone, narrowly missing a cab with a blue sheet.\",2\n9667,lsmdc3055_PROMETHEUS-27233,5079,The mouth launches a serpentine appendage down the engineer's throat. It,The mouth launches a serpentine appendage down the engineer's throat.,It,gold,\"pulls him close, then lowers itself on top of him.\",\"slashes a monk with a knife, then punches the air and staggers back at the thug.\",lowers his attention screen and steps back on the balustrade forward.,\"fly backward with chunks of flaming debris, running to litter the road.\",0\n9668,lsmdc3055_PROMETHEUS-27233,5081,It eventually relaxes and grows still. Someone,It eventually relaxes and grows still.,Someone,gold,gets on the shoulder and does a good move.,weeps on her back.,pitches into her face and hauls her up off the ground.,contemplates the hotel.,1\n9669,lsmdc3055_PROMETHEUS-27233,5078,Yet another tentacle reaches out and wraps around his head. The buds,Yet another tentacle reaches out and wraps around his head.,The buds,gold,freezes just one time too.,unique softens through the ingredient and tips them along.,shoot out tendrils that lash around his skull and hold him still.,stops someone for a moment lowering the drink.,2\n9670,lsmdc3055_PROMETHEUS-27233,5074,\"The creature lifts the engineer off the floor. Grabbing her helmet, someone\",The creature lifts the engineer off the floor.,\"Grabbing her helmet, someone\",gold,opens through a door and lowers the dragon to her head.,rushes back to the airlock compartment.,shows someone the subs again.,hits the panel.,1\n9671,lsmdc3055_PROMETHEUS-27233,5072,\"As the creature wraps its tentacles around the engineer, she wriggles out from beneath them both. A spare tentacle wraps around her ankle, but she\",\"As the creature wraps its tentacles around the engineer, she wriggles out from beneath them both.\",\"A spare tentacle wraps around her ankle, but she\",gold,can't hold it away.,can't keep up.,\"gently yanks it open, closing her teeth.\",kicks it lose and scrambles away.,3\n9672,lsmdc3055_PROMETHEUS-27233,5071,\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and tackles him, taking someone down with them. As the creature wraps its tentacles around the engineer, she\",\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and tackles him, taking someone down with them.\",\"As the creature wraps its tentacles around the engineer, she\",gold,\"lunges around to grab someone's station stick, then places it on either side of the bed.\",watches his human body fall on top of her.,wriggles out from beneath them both.,\"finds a license receiver on the wall, complete with an image of a diver of forty - eight men wearing jeans.\",2\n9673,lsmdc3055_PROMETHEUS-27233,5070,\"Charging, he backs her against a wall. She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and\",\"Charging, he backs her against a wall.\",\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and\",gold,places her mouth on bank's cover - lens.,\"tackles him, taking someone down with them.\",turns her back to the guard in a gum - infested tank below.,swoops in with his back help with a tray.,1\n9674,lsmdc3055_PROMETHEUS-27233,5075,\"In the lifeboat, the engineer struggles pitily against the grasp of the giant squid - like creature. The engineer\",\"In the lifeboat, the engineer struggles pitily against the grasp of the giant squid - like creature.\",The engineer,gold,eyes the approaching ship.,takes a few steps back and someone pulls the dagger down thoughtfully from the threads of the wand.,braces his legs against the door frame.,sits back upright to face the automaton.,2\n9675,lsmdc3055_PROMETHEUS-27233,5080,\"It pulls him close, then lowers itself on top of him. It eventually\",\"It pulls him close, then lowers itself on top of him.\",It eventually,gold,swerves like a locomotive.,trots away to the ground railway.,relaxes and grows still.,\"brings him to the ground, followed by loose bolts.\",2\n9676,anetv_ZgVmS-AhYgA,7396,A group of rafters carries a raft down a path. Groups of rafters,A group of rafters carries a raft down a path.,Groups of rafters,gold,turn under the water as the water is thrown from their way into the water.,\"are rushing through the water, with kayaks that are tied around the yard.\",lands themselves down the river.,ride down a river going over small waterfalls.,3\n9677,anetv_ZgVmS-AhYgA,7397,Groups of rafters ride down a river going over small waterfalls. The rafters,Groups of rafters ride down a river going over small waterfalls.,The rafters,gold,\"are tearing through the rapids, sail boats straight of their hands.\",are surfing the waves as they bounce along.,climb out from there boat onto the shore and walk up the path.,paddle one fast down the river and land on a rivers.,2\n9678,anetv_ZgVmS-AhYgA,7398,The rafters climb out from there boat onto the shore and walk up the path. People,The rafters climb out from there boat onto the shore and walk up the path.,People,gold,on water skis at the top of a steep shore.,\"are standing at the front of the tree, crashing into the camera.\",are there as they kayak through the choppy water with their surf side - sail on it.,jump from rocks into a swimming hole of the river.,3\n9679,anetv_nLdRqOTb0Ik,14738,A man is siting behind a desk doing a Rubik's cube. He,A man is siting behind a desk doing a Rubik's cube.,He,gold,sets the rubik's cube down and stands up.,is then seen mixing yet again with a crunch machine along the street.,\"of drill is shown, and the person starts away down on the left.\",is directing the cube in front of him.,0\n9680,anetv_nLdRqOTb0Ik,18024,The man solves it quickly as the timer catches him and a man writes down his score and shakes his hand. His solve,The man solves it quickly as the timer catches him and a man writes down his score and shakes his hand.,His solve,gold,is now completely intact.,\"is finally made again, broken out with two words.\",is shown again in slow motion.,is shown in progress.,2\n9681,anetv_nLdRqOTb0Ik,14739,He sets the Rubik's cube down and stands up. He,He sets the Rubik's cube down and stands up.,He,gold,sits down again and does the rubik's cube again.,pain seems to be a distant lot of warm leaves.,\"stands up and goes to the stairs, covering his face with the cloth.\",knocks.,0\n9682,anetv_nLdRqOTb0Ik,18023,A young man is seen sitting at a table and beginning to solve the rubix cube. The man,A young man is seen sitting at a table and beginning to solve the rubix cube.,The man,gold,speaks to the camera and ends the game with the man.,solves it quickly as the timer catches him and a man writes down his score and shakes his hand.,solves the puzzle while also pushing the objects all around the table while still speaking.,continues flipping and turning away in the end and ends with it close up.,1\n9683,lsmdc0016_O_Brother_Where_Art_Thou-55308,7167,The doors slam shut and the boy grinds into gear. He,The doors slam shut and the boy grinds into gear.,He,gold,spins his yet another chamber.,\"has wood blocks strapped to his feet so that he can reach accelerator, brake and clutch.\",opens a cupboard door and pulls out a blueprint.,climbs off of the hills.,1\n9684,anetv_d3RF0qC6RJs,18932,A man performs with his dog in a frisbee catching spectacle on a large grass covered lawn in front of an audience of people on the sidelines. A man,A man performs with his dog in a frisbee catching spectacle on a large grass covered lawn in front of an audience of people on the sidelines.,A man,gold,throws a frisbee for the dog to throw it.,comes chasing frisbee while another man clips the fur tags in each hand and after two others join them.,performs a routine while riding the horse and jumping on his horse before walking off to the ground as he walks along.,throws frisbee after frisbee in the air each of which his dog catches in mid air.,3\n9685,anetv_d3RF0qC6RJs,8485,He throws frisbees and plays with a dog. The guy,He throws frisbees and plays with a dog.,The guy,gold,starts playing the accordion and clapping his hands.,grabs the leash with the dogs hair.,continues to stretch with the dog pet.,picks up the dog and carries it.,3\n9686,anetv_d3RF0qC6RJs,18933,The man then has the dog jump off of his back and perform many other tricks and stunts on the field in the middle of catching the frisbees. An audience in front on the sidelines,The man then has the dog jump off of his back and perform many other tricks and stunts on the field in the middle of catching the frisbees.,An audience in front on the sidelines,gold,erupts in applause at the final frisbee catch.,\"wait a short time, landing and ends with the video with a topcoat.\",\"pan around to get applause from the trots, which finally crashes ahead of them.\",watch the people watch the man throw more tricks.,0\n9687,anetv_d3RF0qC6RJs,8484,A man is standing on a field. He,A man is standing on a field.,He,gold,throws frisbees and plays with a dog.,goes over a pole in the center of the track.,starts removing a ball into the dirt.,runs up and jumps into a large sand pit.,0\n9688,anetv_aZQWCEejbk8,13129,\"A girl walks up to a slide, sits down, then goes down the slide. She\",\"A girl walks up to a slide, sits down, then goes down the slide.\",She,gold,slide down the wooden slide and then checked over and over.,goes to a railing and sits on a bench.,walks back to do it again.,lifts her cheek to her head and smiles.,2\n9689,lsmdc3041_JUST_GO_WITH_IT-18318,3938,\"The frowning beauty arrives beside someone and accidentally drops her purse. As he sets it on the bar, she\",The frowning beauty arrives beside someone and accidentally drops her purse.,\"As he sets it on the bar, she\",gold,returns to the dance studio.,lifts it and faces her side.,flips back a newspaper.,spies his wedding ring.,3\n9690,anetv_4T8uFygBeNo,9402,Two people are seen kicking around a skateboard and lead into clips of them riding down a road. The camera,Two people are seen kicking around a skateboard and lead into clips of them riding down a road.,The camera,gold,continues to walk up while more shots are shown of the man holding several frisbees and picking it up.,follows the boys from several angles skating down a street and performing various tricks.,continues while people walk in spare wheels pans all around.,pans around and a person stands on a ladder at a sand.,1\n9691,anetv_4T8uFygBeNo,4442,First the man steps onto his skateboard and a car rides past. Then both of the men,First the man steps onto his skateboard and a car rides past.,Then both of the men,gold,ride the skateboards at the same time in the middle of the streets.,ride the skateboard into the plastic cruiser.,get out of the car and race off the vehicle.,walk to a patch of bare road and on a dirt landscape.,0\n9692,anetv_4T8uFygBeNo,9403,The camera follows the boys from several angles skating down a street and performing various tricks. The men,The camera follows the boys from several angles skating down a street and performing various tricks.,The men,gold,continue riding around on the stilts and performing tricks while the camera pans around it.,prepares to ride around quickly but leads off the rough waves as they turn around and perform the tricks on the area.,continue to beat and talk to each other and cheer for the camera.,continue moving around the city through obstacles and moving along the road.,3\n9693,anetv_lPCl1ZYH2xI,3464,The lady is dressed in a long beige jacket and ear muffs and she is scraping the snow off of the other end of the car. A boy then appears and he is shoveling snow out from behind the car and then another person,The lady is dressed in a long beige jacket and ear muffs and she is scraping the snow off of the other end of the car.,A boy then appears and he is shoveling snow out from behind the car and then another person,gold,comes to help them.,is drinking from the car with a snow shovel.,comes and put up on the chair.,is shown trying to slide on the back.,0\n9694,anetv_lPCl1ZYH2xI,1192,They lift open the trunk of the car. Another person in a tan coat,They lift open the trunk of the car.,Another person in a tan coat,gold,\"approaches the cab, takes out the shoes, and goes into a cluttered room.\",is cleaning off the front of the car.,grabs them and shovels them.,pulls someone up from the row two trailer.,1\n9695,anetv_lPCl1ZYH2xI,3466,\"As the snow picks up, the first female leaves and now there are only two people outside each brushing off dirt on two different cars. Once the first car is finished, the lady leaves and now the boy\",\"As the snow picks up, the first female leaves and now there are only two people outside each brushing off dirt on two different cars.\",\"Once the first car is finished, the lady leaves and now the boy\",gold,is left outside by himself getting the rest of the snow off of the vehicle.,walks on the left spraying glue on the tip of the wheel.,begins riding downhill on the snow casually and going a bit on the ground and dropping her hand.,stops and jumps in a competition on a corner distance ahead by the bull alley.,0\n9696,anetv_lPCl1ZYH2xI,1193,Another person in a tan coat is cleaning off the front of the car. A man in a white jacket,Another person in a tan coat is cleaning off the front of the car.,A man in a white jacket,gold,is talking in front of a wall.,is standing in the driver's car.,starts to clear the snow off of another car.,is standing outside smoking and talking to the camera.,2\n9697,anetv_lPCl1ZYH2xI,1191,A person in a red coat is cleaning the snow off their car. They,A person in a red coat is cleaning the snow off their car.,They,gold,\", the people wears in the sidewalk and look at a patch of legs in all of the table.\",\"get in the garage and get out in the snow as they wander off in the same direction, cars are creepy.\",'re barefoot and two cars are tubing down a driveway with a woman on frisbees.,lift open the trunk of the car.,3\n9698,anetv_lPCl1ZYH2xI,3463,\"Once all the snow is gone, she opens the truck and begins talking to another lady. The lady is dressed in a long beige jacket and ear muffs and she\",\"Once all the snow is gone, she opens the truck and begins talking to another lady.\",The lady is dressed in a long beige jacket and ear muffs and she,gold,is scraping the snow off of the other end of the car.,gets a partially blow dryer off the side.,is doing some stunt.,vigorously working her back on the tire.,0\n9699,anetv_lPCl1ZYH2xI,1194,A man in a white jacket starts to clear the snow off of another car. They,A man in a white jacket starts to clear the snow off of another car.,They,gold,are using spray jack and fire as the camera brings them to the counter.,start spray scrubbing the car's metal.,begin to play while attached to a leash.,open the door to the car.,3\n9700,anetv_lPCl1ZYH2xI,3465,\"A boy then appears and he is shoveling snow out from behind the car and then another person comes to help them. As the snow picks up, the first female leaves and now there\",A boy then appears and he is shoveling snow out from behind the car and then another person comes to help them.,\"As the snow picks up, the first female leaves and now there\",gold,are another girl dressed of a park.,are some people in the bedroom outside the car.,is applying electrical fire hose of his car's car too.,are only two people outside each brushing off dirt on two different cars.,3\n9701,anetv_lPCl1ZYH2xI,1195,They open the door to the car. They,They open the door to the car.,They,gold,give an angry shove.,continue clearing the snow from the car.,comes to the door.,\"people stare blankly, dumbfounded.\",1\n9702,anetv_lPCl1ZYH2xI,3462,\"A woman in a red jacket is outside of the garage brushing off the snow on her trunk. Once all the snow is gone, she\",A woman in a red jacket is outside of the garage brushing off the snow on her trunk.,\"Once all the snow is gone, she\",gold,places the paint on right on it's face.,picks up her shovel and starts snow off of the van.,opens the truck and begins talking to another lady.,sits down and picks the snow up.,2\n9703,anetv_7rd23-3wEyU,18583,A man is seen speaking to the camera while leading into various pictures of speaking as well as smoking. The man,A man is seen speaking to the camera while leading into various pictures of speaking as well as smoking.,The man,gold,finishes by speaking to the camera and leads into several shots of him riding on.,continues speaking while showing pictures intermittently of smoking and cigarettes close up.,continues to around and various shots of objects are shown as well as people speaking to the camera again.,continues speaking to one another while more shots are shown of dogs laying on a table.,1\n9704,anetv_f2LGG2ocbu8,3338,People around him clap while more stand around and talk as well as watch the balls be thrown. The people,People around him clap while more stand around and talk as well as watch the balls be thrown.,The people,gold,continue to roller around on the sand car as well as close ups of the person filming.,continue to spin around while clips move around one another and end by moving off.,grab the ball from the ground over and over again while occasionally looking over to the camera and panning back to the large crowd.,continue hitting and taking all the field of balls and shooting them into red cups.,2\n9705,anetv_f2LGG2ocbu8,3337,A large group of people are seen sitting around a pit with one man spinning around and throwing a ball off into the distance. People around him,A large group of people are seen sitting around a pit with one man spinning around and throwing a ball off into the distance.,People around him,gold,walks quickly as the person just turns around and dives into a bin.,throw the ball over as well as their movements during shots are shown and shown again in slow motion.,bump him back and fourth on the side celebrating and ends by smiling to others.,clap while more stand around and talk as well as watch the balls be thrown.,3\n9706,anetv_TUPCQpyoSbI,12583,They look at the various wares for sale. Then they,They look at the various wares for sale.,Then they,gold,turn to see who have bowed with a heavy stare.,do both sizes die up.,\"soar towards the plateau, where they hold two rifles with flower hair on a sling rack in the lobby.\",\"are shown in a group, knitting with yarn.\",3\n9707,anetv_TUPCQpyoSbI,13199,\"A family eats lunch at the table together, while a 75 year old grandma knits inside of the house. She\",\"A family eats lunch at the table together, while a 75 year old grandma knits inside of the house.\",She,gold,is holding cookie dough and very envelope with a machine ensuring that is talking to the other girl again making meat.,is mopping through with some anger and frustration.,goes to a group to hang out with other older women who enjoy knitting as well.,and kids come up to greet a soldier.,2\n9708,anetv_TUPCQpyoSbI,13197,Outside a man is walking with a herd of sheep during a cold winter day. Inside of some store there,Outside a man is walking with a herd of sheep during a cold winter day.,Inside of some store there,gold,is two horses drawn as he takes the grass too.,are elastic and groomers taking kids running in stilts.,\"are two cars in a small field of water, while bmx skiers have run up the river in their handlers.\",is an older woman browsing looking around at some fabric.,3\n9709,lsmdc0011_Gandhi-52653,2226,\"The Judge is flipping through documents on the case, a troubled frown on his face. At last, he\",\"The Judge is flipping through documents on the case, a troubled frown on his face.\",\"At last, he\",gold,goes to the bed and faces someone.,shuts the folder and nods to the clerk.,pulls his sleeve up to his chest.,pumps his pockets with his hands.,1\n9710,lsmdc0011_Gandhi-52653,2227,\"He has recovered a bit more, but he still moves slowly. As someone enters, he\",\"He has recovered a bit more, but he still moves slowly.\",\"As someone enters, he\",gold,sees a long stairway courtyard and a group of students coming out of the tunnel.,\"lowers his glasses, places them on his desk, and rises, facing someone.\",holds up a pack of gum.,smashes the car.,1\n9711,lsmdc0011_Gandhi-52653,2233,\"Featuring the reporters shrugging incredulously to each other, as they sit once more. The Advocate General\",\"Featuring the reporters shrugging incredulously to each other, as they sit once more.\",The Advocate General,gold,\"addresses a man from the office, the still one on the screen, ignores her gown from before.\",looks down and has two small glasses that turns into both of his cups.,is speaking from a folded journal.,handed a piece someone half as another pass.,2\n9712,lsmdc0011_Gandhi-52653,2229,\"The whole court rises, the astounded reporters the last of all. He\",\"The whole court rises, the astounded reporters the last of all.\",He,gold,takes the prisoner's stand.,sets the ball shades in the front of a photo frame.,\"builds a number of ping pong, while the crowd cheerleading and claps for it.\",\"is perhaps hopping, purposefully, having a great double time.\",0\n9713,lsmdc0011_Gandhi-52653,2230,He takes the prisoner's stand. He,He takes the prisoner's stand.,He,gold,sniffs the last parts that can be used on.,\"looks around, a little surprised, a little affected by the demonstration.\",throws the doll suit off to the side as someone walks by.,bends toward a door of great open doors and opens it.,1\n9714,lsmdc0011_Gandhi-52653,2232,\"He looks up at the judge. For a minute their eyes meet, the judge\",He looks up at the judge.,\"For a minute their eyes meet, the judge\",gold,pinball while last group.,watches captain america with his lips open.,makes a little bow to someone.,points on the screen.,2\n9715,lsmdc0011_Gandhi-52653,2228,\"The clerk, confused as well as astonished, see the judge standing, facing someone in respect, and dutifully, he too stands. The whole court\",\"The clerk, confused as well as astonished, see the judge standing, facing someone in respect, and dutifully, he too stands.\",The whole court,gold,is ill and powerful.,stands nearby with a back to the choir.,\"rises, the astounded reporters the last of all.\",goes wild and blank.,2\n9716,lsmdc0011_Gandhi-52653,2231,\"He looks around, a little surprised, a little affected by the demonstration. He\",\"He looks around, a little surprised, a little affected by the demonstration.\",He,gold,folds the book and hesitates off at the same moment.,pushes someone's glossy calendar back onto back.,looks up at the judge.,is wearing a green frock - striped with a red thin urns covering him.,2\n9717,lsmdc0011_Gandhi-52653,2225,He laughs and someone struggles to join in the joke. The Judge,He laughs and someone struggles to join in the joke.,The Judge,gold,yields a happy appreciative smile.,grabs his push down someone.,\"is flipping through documents on the case, a troubled frown on his face.\",sing smiles as the hymn plays.,2\n9718,lsmdc0053_Rendezvous_mit_Joe_Black-71265,15863,\"Someone closes his eyes but then they flutter open, he glances up at the ceiling and finally, exhausted, falls back asleep. The great lawn infested with workmen, planting stakes, un - rolling a huge canvas tent, gardeners fashioning topiary and adding landscaping of their own, crews\",\"Someone closes his eyes but then they flutter open, he glances up at the ceiling and finally, exhausted, falls back asleep.\",\"The great lawn infested with workmen, planting stakes, un - rolling a huge canvas tent, gardeners fashioning topiary and adding landscaping of their own, crews\",gold,\"setting up platforms, speakers, lights.\",come up from a pine table on top of the tree.,sit on one of shelves with destroyed furniture.,dunking their head in the mud.,0\n9719,lsmdc0053_Rendezvous_mit_Joe_Black-71265,15862,\"Someone sits up again, frightened, but still there is no one there, he seems fraught with indecision, should he get up, should he not, what is happening?. Someone closes his eyes but then they flutter open, he\",\"Someone sits up again, frightened, but still there is no one there, he seems fraught with indecision, should he get up, should he not, what is happening?.\",\"Someone closes his eyes but then they flutter open, he\",gold,is trying to figure out what he is saying.,\"glances up at the ceiling and finally, exhausted, falls back asleep.\",\"goes over to them and puts one fist into his belly, embracing them each other but coming running after someone.\",flips down a tool and punches someone by the neck.,1\n9720,lsmdc0053_Rendezvous_mit_Joe_Black-71265,15861,\"All beweildered, someone looks around once more, climbs back into bed, trying to trace the source of what he has heard or has n't heard; he is not sure. He\",\"All beweildered, someone looks around once more, climbs back into bed, trying to trace the source of what he has heard or has n't heard; he is not sure.\",He,gold,\"lies on the floor, as he intermittently, studying someone, and folds his arms.\",\"pulls the covers up now, not a sound, tries to close his eyes.\",rises to have a noise visible behind him.,grabs it and inspects the torn note.,1\n9721,anetv_lnvsb4-71BQ,10418,The man continues hitting the ball while speaking to the camera and holding up ping pong tools. The man,The man continues hitting the ball while speaking to the camera and holding up ping pong tools.,The man,gold,\"begins to play the grass with a tennis racket, hitting it back and fourth while the camera captures him from several angles.\",returns to play a shot tennis against the wall and walks around the room as a ball still hangs on the side.,continues to push the ball back and fourth into the camera while the camera captures his movements.,demonstrates how to properly hit the ball and move his body around and still hitting the ball.,3\n9722,anetv_lnvsb4-71BQ,10417,A man is seen speaking to the camera while holding up several game of ping pong are played. The man,A man is seen speaking to the camera while holding up several game of ping pong are played.,The man,gold,begins shooting the ball around onto the table while the man continues to talk.,is seen taking a crowded drink of beer and pouring it into a glass.,continues hitting the ball while speaking to the camera and holding up ping pong tools.,continues hitting the ball with one racket while the other continues hitting in the stick while others watch on the sides.,2\n9723,lsmdc3076_THE_SOCIAL_NETWORK-35310,2728,Someone sits with his back to someone and the rest of the table. He,Someone sits with his back to someone and the rest of the table.,He,gold,swivels his chair around to lock eyes with someone.,spreads across the orb.,\"looks bored, trying not to find her.\",looks up at the night sky.,0\n9724,lsmdc3076_THE_SOCIAL_NETWORK-35310,2727,He thoughtfully rumples his lips. Someone,He thoughtfully rumples his lips.,Someone,gold,pulls a half out from a drawer.,sits with his back to someone and the rest of the table.,is in the shop working.,backs the case in front of his face with cologne.,1\n9725,anetv_3-_Eld2NwJ0,13879,She pours sand for the boy and puts it into a bucket. She,She pours sand for the boy and puts it into a bucket.,She,gold,jumps off a horse.,flips over the bucket and grabs a shovel to play with.,starts catching the meters in the water.,digs out the strainer perched on a tree.,1\n9726,anetv_3-_Eld2NwJ0,543,She dumps it out upside down in front of her. A little boy,She dumps it out upside down in front of her.,A little boy,gold,comes up on the monkey bars and tries to hold the pinata while many people watch and amazement.,is sitting in the sand next to her.,carefully jumps down and gets out on top of her.,laughs as she talks over to the camera.,1\n9727,anetv_3-_Eld2NwJ0,13878,A woman is seen sitting on the beach with a small boy. She,A woman is seen sitting on the beach with a small boy.,She,gold,spins on the horses and throws a dart.,pours sand for the boy and puts it into a bucket.,helps a baby under the water.,watches people walk over to wave with one another.,1\n9728,anetv_3-_Eld2NwJ0,542,A woman is putting sand into a green bucket. She,A woman is putting sand into a green bucket.,She,gold,throws the ball to the camera.,dumps it out upside down in front of her.,uses the rake to lie on the steps.,is mopping the floor.,1\n9729,anetv_boqfpo3YAps,13658,Video footage is then shown of her running alongside a large group of people while many watch on the sides. More pictures,Video footage is then shown of her running alongside a large group of people while many watch on the sides.,More pictures,gold,are shown of people playing soccer with several other people as well as jogging on skateboards.,are shown of the people riding and interacting with one another while a band is seen standing out and speaking with other people.,are shown of her finishing the race as well as others.,are shown of people walking on dirt roads and pulling the snow.,2\n9730,anetv_boqfpo3YAps,13657,Several pictures are shown of a woman standing by herself as well as with friends. Video footage,Several pictures are shown of a woman standing by herself as well as with friends.,Video footage,gold,shows the woman speaking to the camera and shows shots of people riding around in a present.,is then shown of her running alongside a large group of people while many watch on the sides.,shows him flipping as well as the people watching on.,shows several others waiting at a slope.,1\n9731,anetv_IKrnz_OzqT8,14321,A man watches a performance on tv while playing a set of hand drums at home. The man,A man watches a performance on tv while playing a set of hand drums at home.,The man,gold,has sugar in his mouth and palms his hands.,gets up and walks back towards the camera.,plays the drums and a flute on stage.,looks forward and focuses while playing the drums.,3\n9732,anetv_IKrnz_OzqT8,14322,The man looks forward and focuses while playing the drums. The man,The man looks forward and focuses while playing the drums.,The man,gold,speaks to the camera as the camera pans around to show what he is looking for.,is seen wearing a basketball costume and playing with hula hoops.,moves his hands up and down doing the instrument.,leans back and plays vigorously on the drums.,3\n9733,anetv_Vshvpb9eecg,6713,A woman is seen walking into frame while speaking to the camera and putting her face in cream. The woman then,A woman is seen walking into frame while speaking to the camera and putting her face in cream.,The woman then,gold,shows her finished decorating.,rubs the cream on her face while still speaking to the camera.,applies open the makeup and sprays makeup to the eye lens.,begins brushing the hair and looking to the camera.,1\n9734,anetv_Vshvpb9eecg,6714,The woman then rubs the cream on her face while still speaking to the camera. The camera,The woman then rubs the cream on her face while still speaking to the camera.,The camera,gold,pans her around and shows off various ingredients and shows it back to the camera.,rubs her back and down her face while the camera captures her movements.,turns around to show her lemonade.,pans around the kitchen while the woman continues to rub her hands in the lotion.,3\n9735,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4899,\"The students look around, nervously. Someone\",\"The students look around, nervously.\",Someone,gold,\"peers through a hole in the stone wall behind it, and sees someone and her squad.\",is walking after people are moving down the hall.,looks at the alien as the cat kneels up to her.,\"walks up to a window, raises her own head.\",0\n9736,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4900,Someone sees that someone is holding someone. She,Someone sees that someone is holding someone.,She,gold,\"is crouching beside someone, but it does n't open.\",looks tearful and distressed.,\"drags her window, leads him to an alcove, and looks back across the rain.\",is spreading the nails in someone's head.,1\n9737,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4898,Someone's is a dog. Someone,Someone's is a dog.,Someone,gold,sets a candle on the wall in a private room.,is reading someone's write - up.,snaps a photo and shows him the picture.,\"produces a hare, which leaps joyfully over their heads.\",3\n9738,lsmdc0027_The_Big_Lebowski-63018,16972,\"He has a large Western - style mustache and wears denims, a yoked shirt and a cowboy hat. We\",\"He has a large Western - style mustache and wears denims, a yoked shirt and a cowboy hat.\",We,gold,recognize the voice of the stranger whose narration opened the movie.,\"rides with a filthy and white ax as king, open and combat.\",wears him fondly.,\", plays like a tiny black dog as he steps away with a satisfied nod.\",0\n9739,lsmdc0027_The_Big_Lebowski-63018,16973,\"We recognize the voice of The Stranger whose narration opened the movie. Waiting for his drink, he\",We recognize the voice of The Stranger whose narration opened the movie.,\"Waiting for his drink, he\",gold,takes it again and got in his face.,looks amiably around the bar.,clicks the light in the glass.,'s seen drinking tea.,1\n9740,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9224,He flies up in a spiral of black smoke. People,He flies up in a spiral of black smoke.,People,gold,watching him stand and then time to someone.,look at someone with a blazing derby.,\"turn in circles, but can see no sign of him.\",run like a second bus.,2\n9741,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9228,\"They change form, and shoot into the sky, the cloud of black spell. They\",\"They change form, and shoot into the sky, the cloud of black spell.\",They,gold,run with the product and lift someone over their shoulders.,\"attack someone house, which bursts into flames.\",\"stick, far all supporters threw the sign.\",get into his car and step out.,1\n9742,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9220,\"Hearing something, he starts to run again. Someone\",\"Hearing something, he starts to run again.\",Someone,gold,is sitting in an armchair in the cemetery.,is playing but he throws him away.,is a little way behind.,\"comes over, breaking up thought.\",2\n9743,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9233,\"Someone nods to someone, then walks along the corridor. Someone leaps on someone's back and he\",\"Someone nods to someone, then walks along the corridor.\",Someone leaps on someone's back and he,gold,lifts the weight to his chest.,watches a fiery blast from a spacecraft sprayed out of the binoculars.,is bathed in flames.,staggers away with her.,3\n9744,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9214,Someone races out of the house. She,Someone races out of the house.,She,gold,notices someone standing nearby.,grabs the phone and hugs a photographer.,laughs and sprints away.,looks at him but does not look at her across the eye.,2\n9745,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9210,\"Someone walks out, followed by someone. Someone\",\"Someone walks out, followed by someone.\",Someone,gold,gulps hard as he gets up.,jumps around and pulls away from people.,looks out into the night.,crashes down a flight of wooden stairs.,2\n9746,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9216,Someone dashes through a gap in the flames. It,Someone dashes through a gap in the flames.,It,gold,\"closes, preventing someone giving chase.\",wears a black helmet.,\"smashes into the figure's hand, bringing our view back to their spotlight.\",\"dissolves through one of the windows, which is blocked by the other men.\",0\n9747,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9227,People join them on the island. They,People join them on the island.,They,gold,speedily navigate the water and approaches the river.,come to see someone drawing the highlights of the shots.,fly into the sky.,\"form a circle, back - to - back, wands poised.\",3\n9748,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9211,Someone looks out into the night. Someone,Someone looks out into the night.,Someone,gold,is lying on the floor next to someone.,steps forward with a concerned expression.,walks to the car and pulls up snow's hood.,and someone wash the dishes and get to the front table.,1\n9749,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9219,\"Someone stands still, surrounded by the swaying reeds. Hearing something, he\",\"Someone stands still, surrounded by the swaying reeds.\",\"Hearing something, he\",gold,starts to run again.,waves to someone and starts on west along with others as he boards the bus.,looks at the second ship.,tries to start to steer.,0\n9750,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9229,\"He finds his family safe, watching their house burn. He\",\"He finds his family safe, watching their house burn.\",He,gold,thrusts two cash in the bin.,searches for someone's wallet then walk toward the general store.,closes a door of a wagon and drives them.,puts an arm around his wife.,3\n9751,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9213,\"In a swirl of black, someone appears. Someone\",\"In a swirl of black, someone appears.\",Someone,gold,sags as the vigorous effort now picks up the locket.,races out of the house.,\"blocks her reach, then soars through the air, followed by someone.\",'s family raises up on the performance screen.,1\n9752,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9225,\"People turn in circles, but can see no sign of him. They\",\"People turn in circles, but can see no sign of him.\",They,gold,take refuge on a small island of sand.,opens the door of someone's house and enters an old campus with a bent - faced kid.,\"kiss, forming a wave onward after him.\",stand over the sun - tranquil ice across the pond.,0\n9753,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9221,She steps back as a figure emerges from the reeds. The figure,She steps back as a figure emerges from the reeds.,The figure,gold,swims out from beneath a skylight.,shows a resigned move.,is tall with a thin face and beard.,drops slides in front of his eyes.,2\n9754,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9209,\"Later, the front door of the house opens. Someone\",\"Later, the front door of the house opens.\",Someone,gold,checks her vodka pistol.,'s backpack shows an array of dried shrubs.,follows someone out of the floor as he climbs in.,\"walks out, followed by someone.\",3\n9755,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9226,\"On their tiny island, people fend off attacks with their wands. People\",\"On their tiny island, people fend off attacks with their wands.\",People,gold,join them on the island.,move up and out of the carriages.,walk up to the pavement.,walk on in shot to an cottage garden.,0\n9756,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9232,She heads back the way they came. Someone,She heads back the way they came.,Someone,gold,runs after someone who rides up the staircase on an overcast day in a huff.,\"nods to someone, then walks along the corridor.\",\"touches her lower knee, followed by people.\",glances back at the stack of diagrams and looks under them and knocks them into the panel.,1\n9757,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9223,He stops and smiles menacingly. Someone,He stops and smiles menacingly.,Someone,gold,measures herself in the hand.,primps his hair and looks.,appears behind someone and raises his wand.,glances around as someone takes their father out.,2\n9758,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9222,The figure is tall with a thin face and beard. He,The figure is tall with a thin face and beard.,He,gold,stares up at a gleaming golden light within it.,stops and smiles menacingly.,\"leans forward, clutching someone's sword.\",adjusts his helmet as she sleeps in her same white chair.,1\n9759,lsmdc1007_Spider-Man1-74753,11354,\"He goes limp and falls towards the ground. Someone, on his glider,\",He goes limp and falls towards the ground.,\"Someone, on his glider,\",gold,\"peer up at the blade, shuts his eyes and sneers.\",catches the unconscious figure and takes him to a rooftop.,is silhouetted against the sunlight.,\"begins to climb over the dashes, moving dangerously close.\",1\n9760,lsmdc1007_Spider-Man1-74753,11353,Vapor seeps out from the back of the Green someone's gloves straight into the face of someone who's hanging upside down. He,Vapor seeps out from the back of the Green someone's gloves straight into the face of someone who's hanging upside down.,He,gold,holds the wand over his head.,goes limp and falls towards the ground.,\"moves to someone, walks out of the doorway, and they are shivering.\",becomes 100 feet in front of someone.,1\n9761,anetv_YoXZfvf5Teg,19797,The woman then puts her fingers onto the strings and with her other hand she touches and points on her fingers on the strings as well as taking the bow to her strings every now and then. The woman,The woman then puts her fingers onto the strings and with her other hand she touches and points on her fingers on the strings as well as taking the bow to her strings every now and then.,The woman,gold,then pulls the screen out of the room and lays it on all sides.,\"gently grabs the shoe a bit and then finishes, after she is finished she chops.\",continues to dance more and ends by the audience.,talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions.,3\n9762,anetv_YoXZfvf5Teg,19796,The woman puts the violin up to her chin and continues to talk. The woman then puts her fingers onto the strings and with her other hand she,The woman puts the violin up to her chin and continues to talk.,The woman then puts her fingers onto the strings and with her other hand she,gold,gets up and begins moving her arm children scarf around and her back before smiling at the camera.,spreads the box over and dips it carefully using the sax and then rings the resistance once again.,\"begins dancing about the side, while her ballet movements continues as the woman finishes her performance.\",touches and points on her fingers on the strings as well as taking the bow to her strings every now and then.,3\n9763,anetv_YoXZfvf5Teg,19794,\"The intro is a white screen, the website on the top left, the words Howcast original appear and afterwards another set of words describing the lesson appear and it reads Vibrato Beginner Violin Lessons. A woman named Julie Artzt Becker\",\"The intro is a white screen, the website on the top left, the words Howcast original appear and afterwards another set of words describing the lesson appear and it reads Vibrato Beginner Violin Lessons.\",A woman named Julie Artzt Becker,gold,is on congas in front of a large crowd of people.,is shown as some words float across the screen to perform a wakeboarding stand inside a school.,\"appears on screen and then everything works out in an interview on samantha's body, as she continues to bowl.\",is holding her violin is sitting and talking in front of a blue screen.,3\n9764,anetv_YoXZfvf5Teg,19798,The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions. Eventually the woman,The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions.,Eventually the woman,gold,takes a look on her phone while explaining the performances she is holding as she talks about her movements.,begins to spike the piercing ferociously into a rubik's chest.,stops talking and ends with a smile and the words howcast original appear on the white screen.,\"are dressed in a white room, and they are holding bows above their heads.\",2\n9765,anetv_YoXZfvf5Teg,19795,A woman named Julie Artzt Becker is holding her violin is sitting and talking in front of a blue screen. The woman,A woman named Julie Artzt Becker is holding her violin is sitting and talking in front of a blue screen.,The woman,gold,is suddenly wearing the orange sweater and walks backwards behind the camera with them.,puts the violin up to her chin and continues to talk.,is standing behind a group of women with yarn and bags.,\"talks to two women in costume as she plays her sat bag, and plays with her tantrum.\",1\n9766,anetv_vcl8rFSCH4w,7433,A close up of people are shown sitting on a snowy hill and looking to the camera. The people then all,A close up of people are shown sitting on a snowy hill and looking to the camera.,The people then all,gold,ride in tubes down the snowy trail with one moving around at the bottom.,ride around and ends with the people riding on bikes.,turn around and move crashing into one another and getting one out.,talking to the camera and shows more clips of him riding down a hill.,0\n9767,anetv_H80bs53Arrw,4925,She begins to use the hula hoop. She,She begins to use the hula hoop.,She,gold,tries to turn the hoops every time.,picks up the hula hoop in the end of the hula hoop in the center of the hula hoop.,lays down on the ground and uses the hula hoop on her foot.,starts performing hula hoops with hula hoop.,2\n9768,anetv_H80bs53Arrw,8277,A woman speaks the the camera while spinning a hula hoop around her arm. the woman then,A woman speaks the the camera while spinning a hula hoop around her arm.,the woman then,gold,begins speaking to the camera and smiling to the camera.,continues spinning around and ends by jumping down on a string being followed by several clips of artists around.,takes the hula hoop and places it around her hips.,spins the red hula girls style hula hoop around her body for the hula.,2\n9769,anetv_H80bs53Arrw,4924,A woman is standing in a room holding a hula hoop. She,A woman is standing in a room holding a hula hoop.,She,gold,begins to use the hula hoop.,begins to hula hoop and begins to hula hoop while looking at its keyboard.,is then shown standing by a hoop holding a hula hoop.,spins to get an orange ball across her mouth.,0\n9770,anetv_H80bs53Arrw,8278,The woman then takes the hula hoop and places it around her hips. the woman,The woman then takes the hula hoop and places it around her hips.,the woman,gold,is recording a small area next.,then describes the braid with her hands and stirs the larger while again guiding her mouth with her hands.,demonstrates how to use the hula hoop in the traditional way.,\"then ballet begins and the woman continues facing the other girl, leaving the pose as the adult finishes speaking again.\",2\n9771,lsmdc0012_Get_Shorty-53402,19400,As people enter the restaurant. Someone,As people enter the restaurant.,Someone,gold,\"shoots someone a stricken glance, then clenches the cigarette.\",\"checks out the bar, sees they are n't there, then looks up at the railing.\",is in shopping positions outside the restaurant holding a baby seated in a chair.,\"returns to someone, who shakes a terrified hand and throws it to him.\",1\n9772,lsmdc3081_THOR-37869,3251,\"Someone drives west toward the setting sun. In Asgard, someone and his mother someone\",Someone drives west toward the setting sun.,\"In Asgard, someone and his mother someone\",gold,\"sit on either side of someone, who lies in a bed beneath a translucent golden barrier.\",carry a small stack of noodles.,pat each other on the shoulder.,mold a cage with collapsible waterfalls and railing.,0\n9773,anetv_2VYQ4q24D-4,16292,\"Two cars are parked on the side of the road as train passes by. All of a sudden, the angle shifts and a boy\",Two cars are parked on the side of the road as train passes by.,\"All of a sudden, the angle shifts and a boy\",gold,passes to sweep it at the same man.,continues to show how to drive the bowling ball.,begins skateboarding down the hill and throughout the city.,grabs the steering wheel.,2\n9774,lsmdc0022_Reservoir_Dogs-59172,5757,\"Someone explodes, raising his gun and charging towards someone. Someone\",\"Someone explodes, raising his gun and charging towards someone.\",Someone,gold,picks up a pen and peeks up at him.,prepares to take off the cape as someone forces away.,calms down and puts his gun away.,\"goes before someone, hitting a building fry in the air.\",2\n9775,anetv_lmcBk-gqMzA,3713,A woman in a green shirt is holding two brushes in her hands. She,A woman in a green shirt is holding two brushes in her hands.,She,gold,begins brushing her hair on her back.,holds her hair up in front of her face.,starts brushing a brown horse next to her.,begins polishing her shoes off.,2\n9776,anetv_lmcBk-gqMzA,14024,She picks up a brush and starts brushing the horse. She,She picks up a brush and starts brushing the horse.,She,gold,\"continues to brush the horses mane, then pinches the bottom of the flap.\",then brushes her teeth with a pink brush then brushes the teeth.,picks up another brush and brushes the horse.,takes the doll and sits on the horse.,2\n9777,anetv_lmcBk-gqMzA,14023,A woman in a green shirt is standing next to a brown horse. She,A woman in a green shirt is standing next to a brown horse.,She,gold,sharpens the wood to secure it.,bends around and lays her hand on the woman's head.,picks up a brush and starts brushing the horse.,\"follows, and using a stepper on the floor.\",2\n9778,anetv_lmcBk-gqMzA,3714,She starts brushing a brown horse next to her. She,She starts brushing a brown horse next to her.,She,gold,trims the horse for the crowd.,rakes the horse around her and drops it on the horse's tail.,starts brushing the horse green.,picks up the other brush and brushes the horse.,3\n9779,anetv_eL0LrJio1XE,12138,People rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road. The shadows of a biker,People rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road.,The shadows of a biker,gold,cast on the bumpy road.,is shown in the driveway at a newsstand.,are shown that include helmets and skiers on the right side of the field getting thrown to get down.,drive on in competition of terrain.,0\n9780,anetv_eL0LrJio1XE,12137,A bike stands on a bumpy unpaved road. People,A bike stands on a bumpy unpaved road.,People,gold,are in the dirt on a hill in the middle of city as people are in a pile of snow.,spin on the machine in front of the wheel.,watch from the top of the hill.,rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road.,3\n9781,anetv_19fGZFUE7yE,17237,We see a game of poker being played. An odd man,We see a game of poker being played.,An odd man,gold,puts on swipes which plays with action from another portion of the room.,appears in front of the camera.,throws the ball in the air.,is shown dealing cards and cards.,1\n9782,anetv_19fGZFUE7yE,17236,A group of people walk by in the background. We,A group of people walk by in the background.,We,gold,see a lady riding a bike on the beach.,see people running in the field.,see the hockey in slow motion.,see a game of poker being played.,3\n9783,anetv_19fGZFUE7yE,17234,A man in a black tuxedo is speaking to the camera. A person,A man in a black tuxedo is speaking to the camera.,A person,gold,in a red shirt is walking happily around the field.,in a black and white shirt is cutting another man's hair.,walks by in the background.,is riding a lawn mower across a lawn.,2\n9784,anetv_19fGZFUE7yE,17238,\"An odd man appears in front of the camera. We see the first man, then cards being dealt and we\",An odd man appears in front of the camera.,\"We see the first man, then cards being dealt and we\",gold,see the title results and a black box on the board.,see all of them using a rag.,see two teams playing guitars.,fade to a black screen.,3\n9785,anetv_19fGZFUE7yE,17235,A person walks by in the background. A group of people,A person walks by in the background.,A group of people,gold,are siting on exercise.,are by and cartwheels around.,walk by in the background.,bows on the screen with one team play.,2\n9786,lsmdc0005_Chinatown-48298,368,\"Cross starts to reply, then there's the sound of a mariachi band and some men in formation clear a bluff about a hundred yards off. They\",\"Cross starts to reply, then there's the sound of a mariachi band and some men in formation clear a bluff about a hundred yards off.\",They,gold,\"walk backwards in front of him; suddenly, as he stops his brother's left just scuttles behind and reaches for the door.\",begin to coast up a grand stream.,are dressed like spanish dons on horseback.,jump up and forth several times.,2\n9787,anetv_mnS-nMZne3I,14276,He jumps on the diving board several times and jumps into a pool. The man,He jumps on the diving board several times and jumps into a pool.,The man,gold,flips and turns and falls backward from the pool board.,is shown again spinning himself one at a time.,surfaces and stands up in the pool.,removes himself and dives into the pool.,2\n9788,anetv_mnS-nMZne3I,14275,A man walks onto a diving board. He,A man walks onto a diving board.,He,gold,jumps on the diving board several times and jumps into a pool.,is balanced on a large boat.,sails backward and backwards dives.,gets off the board and stands onto a trampoline.,0\n9789,lsmdc3090_YOUNG_ADULT-44094,15287,Someone walks across the parking lot to her car. She,Someone walks across the parking lot to her car.,She,gold,stares at the front someone then crouches and inspects the damage.,bumps for the car.,goes upstairs to find someone getting into his car.,pulls him to the top of a bed.,0\n9790,lsmdc3090_YOUNG_ADULT-44094,15291,Two girls chat at the counter. She picks it up and,Two girls chat at the counter.,She picks it up and,gold,\"enters, the closer look on her face.\",takes him one hand which doffs its someone.,checks the caller i d. ,presents it to her father.,2\n9791,lsmdc3090_YOUNG_ADULT-44094,15284,\"Later, someone drives into the hotel parking lot. She\",\"Later, someone drives into the hotel parking lot.\",She,gold,moves to the stables below.,parks the suv by the rail and dashes through a parked car.,\"goes on, snaps off her thoughts.\",turns into a parking space and smashes into a lamp post.,3\n9792,lsmdc3090_YOUNG_ADULT-44094,15290,Someone eats as she types on her laptop. Two girls,Someone eats as she types on her laptop.,Two girls,gold,stare at each other.,takes picture of their childhood.,are zig - costumed and nervous.,chat at the counter.,3\n9793,lsmdc3090_YOUNG_ADULT-44094,15288,She stares at the front someone then crouches and inspects the damage. Someone,She stares at the front someone then crouches and inspects the damage.,Someone,gold,shuts the door behind her.,\"stands holding a mallet, staring up at the photo, a tall, green plainly complex.\",stands and walks off.,gazes solemnly into the hallway.,2\n9794,lsmdc3090_YOUNG_ADULT-44094,15289,Someone stands and walks off. Someone,Someone stands and walks off.,Someone,gold,greets guests at a small table.,eats as she types on her laptop.,looks down at someone.,walks up front the illuminated route of st.,1\n9795,lsmdc3090_YOUNG_ADULT-44094,15286,\"Later, she grimaces as she pulls the weave out of her hair. Someone\",\"Later, she grimaces as she pulls the weave out of her hair.\",Someone,gold,walks across the parking lot to her car.,\"wrings their hands around the urn of her, clasps his hands together forward and raises her shields and smile.\",\"removes her perfume from someone's bath, then jumps off.\",\"steps out, then glances over her shoulder and punches a bug downstairs.\",0\n9796,lsmdc3090_YOUNG_ADULT-44094,15283,\"Smiling at one another, they touch glasses then finished their drinks. Later, someone\",\"Smiling at one another, they touch glasses then finished their drinks.\",\"Later, someone\",gold,sits on an orange bench and shakes her hands.,drives into the hotel parking lot.,and someone sit across a table and look at tv.,stands against a debris - strewn desk.,1\n9797,anetv_2GACaR0GdD8,16339,Two people are riding through the forest on horseback. The girls riding horses,Two people are riding through the forest on horseback.,The girls riding horses,gold,stop for a moment and begin to pose for the camera.,are behind the horses.,ride out of the barn.,are away from each other.,0\n9798,anetv_2GACaR0GdD8,13866,One of the people stops the horse and dismounts. The person,One of the people stops the horse and dismounts.,The person,gold,stops the legs of the horse.,remounts the horse and continues riding down the path.,jumps over the bar three times.,is then pushed down the slope on the side of the horse.,1\n9799,anetv_2GACaR0GdD8,13865,Two people ride horses down a forest path. One of the people,Two people ride horses down a forest path.,One of the people,gold,starts walking back down the road.,rides a horse down the hill.,stops the horse and dismounts.,jumps off some with flags.,2\n9800,anetv_2GACaR0GdD8,16340,The girls riding horses stop for a moment and begin to pose for the camera. To end the video the girls,The girls riding horses stop for a moment and begin to pose for the camera.,To end the video the girls,gold,\"hug and stir, then talk about one another.\",continue riding each other on the roads followed by the others with the brothers some more.,ride off into the distance on their horses.,get on the rope and ride up.,2\n9801,anetv_2GACaR0GdD8,13864,A still image of an individual standing by a horse is shown. Two people,A still image of an individual standing by a horse is shown.,Two people,gold,walk a horse and two horses.,are seen running together as the portrait cut into the destination's conclusion.,ride horses down a forest path.,\"are then shown performing tricks, and other applauding and speaking on a pair of seats.\",2\n9802,anetv_QCcueK6xiZ4,1136,Several cars are parked in a parking lot. People,Several cars are parked in a parking lot.,People,gold,are riding in the street by cars.,are seeing washing the cars with soap and water.,are on stationary bikes going fast.,are riding bumper cars in a carnival.,1\n9803,anetv_QCcueK6xiZ4,1135,\"A man is crouching on the ground, cleaning something. Several cars\",\"A man is crouching on the ground, cleaning something.\",Several cars,gold,are still in the street.,are parked in a parking lot.,are shown at the pump.,are pulling around in circles.,1\n9804,anetv_aEpRYY_wi0M,3517,More picture are shown of people fixing bikes. Several more pictures,More picture are shown of people fixing bikes.,Several more pictures,gold,are shown of a race as well as people trimming the sports and others watching on the sides and panning down the mountains.,are shown in the car.,are shown of people working bikes.,are shown flipped over and cutting on a rope.,2\n9805,anetv_aEpRYY_wi0M,14957,A photo of two men working on a bike. More text,A photo of two men working on a bike.,More text,gold,has shown for the video sequence.,is shown of the company.,is shown that shows the men working.,overlayed saying we meet three times a week.,3\n9806,anetv_aEpRYY_wi0M,3516,A picture of a building is shown followed by picture of people working. More picture,A picture of a building is shown followed by picture of people working.,More picture,gold,is shown of a man running with flowers in growing water.,are shown of people fixing bikes.,is then shown of the men walking on the bike with a young child.,shows with the camera getting fourth to the floor as well as a close up moves of cleaning.,1\n9807,anetv_Kt1JpqwDvl8,5174,\"A person vacuum the inside of a car, while other men clean by hand the car with detergent and water. Then, a man\",\"A person vacuum the inside of a car, while other men clean by hand the car with detergent and water.\",\"Then, a man\",gold,dry the car with clothes.,uses the tool and cleans the car using duct tape to wipe clean the windshield cleaning on the tire.,does an exercise have a tire around the car cold and puts it on the car.,appears against the wall and removes a rubber rocket.,0\n9808,anetv_Kt1JpqwDvl8,5175,\"Then, a man dry the car with clothes. Other cars\",\"Then, a man dry the car with clothes.\",Other cars,gold,are washed in a automatic car machine.,are parked outside the room.,appear on a big replace ramp.,are pulled by a car.,0\n9809,anetv_Kt1JpqwDvl8,5176,\"Other cars are washed in a automatic car machine. After, people\",Other cars are washed in a automatic car machine.,\"After, people\",gold,cleans the car with cloths inside and outside by hand.,get out of the car and put underneath the spackling.,are shown skiing down a railway street.,reach the air and aim at the roof.,0\n9810,anetv_GBTpVjwLxe0,1219,A kayak rider paddles against the current and maneuvers back and forth with his hips and paddle. The kayak rider,A kayak rider paddles against the current and maneuvers back and forth with his hips and paddle.,The kayak rider,gold,is shown skiing in the water near his surfboard with his hands shaking and his movements.,dips into the water and recovers.,begins to leap through the rough waters of the track.,rides the dirt to the second man towards the raft.,1\n9811,lsmdc1029_Pride_And_Prejudice_Disk_One-83513,4655,She gives a good - natured shrug and carries on her way. She,She gives a good - natured shrug and carries on her way.,She,gold,\"trots over the field towards netherfield hall, standing proudly in the distance.\",returns with the pregnancy kit.,\"catches her in his arms, then bag his shoulders.\",lights the bumper button.,0\n9812,lsmdc1029_Pride_And_Prejudice_Disk_One-83513,4656,\"She trots over the field towards Netherfield Hall, standing proudly in the distance. As she gets closer, she\",\"She trots over the field towards Netherfield Hall, standing proudly in the distance.\",\"As she gets closer, she\",gold,finds every panel of way - police tires and the whole door.,walks under the shadow of a tree.,takes a leafy break and climbs back onto his back.,turns to the others bearing their neon sign.,1\n9813,lsmdc1029_Pride_And_Prejudice_Disk_One-83513,4657,Now someone is sitting on someone's sickbed. She,Now someone is sitting on someone's sickbed.,She,gold,gets into the bus and runs out the window.,pinches her toes together as she examines her diamond necklace in a mirror.,gently strokes her sleeping sister's face.,sips a cup of water and takes a drink.,2\n9814,lsmdc1029_Pride_And_Prejudice_Disk_One-83513,4658,She gently strokes her sleeping sister's face. Someone,She gently strokes her sleeping sister's face.,Someone,gold,curls in her hair.,glances around the gloomy windows.,slowly opens her eyes and looks weakly at someone.,pulls off his beloved and prepares a shot.,2\n9815,anetv_oeSyeZqlC1g,17727,An adult and several teen in canoes holds paddles. The man,An adult and several teen in canoes holds paddles.,The man,gold,rides the camel with his arms.,\"gets out of the canoe wearing a yellow raft, then other rider doing water.\",shows the teens how to move the oars.,helps the boy on the horse deck.,2\n9816,anetv_oeSyeZqlC1g,17728,The man shows the teens how to move the oars. The teens,The man shows the teens how to move the oars.,The teens,gold,folds themselves around various inflated clamps.,gives each man a thumbs up.,stays on their tubes.,follow the instructions of the man and row the oars.,3\n9817,lsmdc1031_Quantum_of_Solace-84342,14714,He pulls her back down on to a bed. Dj,He pulls her back down on to a bed.,Dj,gold,scans the half room.,opens the front door and he climbs into a room filled with balls and toys.,plays under a full moon.,\"looks on, as she leads her to the elevator.\",2\n9818,lsmdc1031_Quantum_of_Solace-84342,14716,A Range Rover pulls up at the entrance. Someone,A Range Rover pulls up at the entrance.,Someone,gold,speeds his way to a corner.,enters with a cafe.,\"gets out, accompanied by someone in a glamorous black and gold dress.\",rides back down a narrow street between town and the vintage hotel.,2\n9819,lsmdc1031_Quantum_of_Solace-84342,14711,Tousle - headed someone puts down his champagne glass and heads back to the bedroom. He,Tousle - headed someone puts down his champagne glass and heads back to the bedroom.,He,gold,follows someone up his ladder to the front door.,\"comes in, sipping a bottle of whiskey as a couple pours cups of coffee into her mouth.\",kisses her naked back.,moves into the kitchen where they find plates of fruit.,2\n9820,lsmdc1031_Quantum_of_Solace-84342,14713,She smiles and turns her face towards him. He,She smiles and turns her face towards him.,He,gold,takes out his claw - like package.,pulls her back down on to a bed.,kisses someone someone's head and nods.,shakes someone's hand and smiles at him.,1\n9821,lsmdc1031_Quantum_of_Solace-84342,14715,Trays are being served and cocktails sipped. A Range Rover,Trays are being served and cocktails sipped.,A Range Rover,gold,moves to the grassy trees surrounded.,pulls up at the entrance.,trundles from the compound.,is in man versus formal yielding pool.,1\n9822,lsmdc1031_Quantum_of_Solace-84342,14704,They are led through the airy tile and marble halls. Someone,They are led through the airy tile and marble halls.,Someone,gold,\"casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone.\",sits up as a desk.,\"'parlor light is, coming from inside.\",cups up along the walls below the narrow village.,0\n9823,lsmdc1031_Quantum_of_Solace-84342,14707,He takes off his jacket and walks into the bathroom. Someone,He takes off his jacket and walks into the bathroom.,Someone,gold,trots for a circuit.,\"enters a berth, using her hand.\",runs over to his mom then guides his men around.,\"grins, and goes to the bedroom.\",3\n9824,lsmdc1031_Quantum_of_Solace-84342,14709,Someone answers the door naked. Someone,Someone answers the door naked.,Someone,gold,emerges from the shower lot.,is lying on a bed with two kids.,hands him an envelope.,sits on the mat.,2\n9825,lsmdc1031_Quantum_of_Solace-84342,14710,Someone hands him an envelope. Tousle - headed someone,Someone hands him an envelope.,Tousle - headed someone,gold,puts down his champagne glass and heads back to the bedroom.,\"takes out a mouthful of food and strides into the kitchen, then steps out.\",\"looks down to the lower relatively, then removes his heels.\",is pulled awake in a night raincoat.,0\n9826,lsmdc1031_Quantum_of_Solace-84342,14712,He kisses her naked back. She,He kisses her naked back.,She,gold,pulls up against a anti - tick - rise awning and turns a corner.,spots someone on his way back.,smiles and turns her face towards him.,wraps his legs around her and pulls her close to him.,2\n9827,lsmdc1031_Quantum_of_Solace-84342,14706,She stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom. He,She stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom.,He,gold,smacks the phone on his breast and hurls it at an open laptop.,takes off his jacket and walks into the bathroom.,sets down her cigarette and carries over to a table next to a pile of folders files.,kisses her brow then points towards his neck.,1\n9828,lsmdc1031_Quantum_of_Solace-84342,14705,\"Someone casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone. She\",\"Someone casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone.\",She,gold,stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom.,walks her two further through the viewfinder.,sits with his arms folded on a podium.,holds the window in the house.,0\n9829,anetv_qcA3mFHfo84,15669,A girl is shown several times running on a track. She,A girl is shown several times running on a track.,She,gold,dives into the water.,runs down the track and throws her javelin.,flips off the bar onto a mat.,uses a pole to vault over a bar.,3\n9830,anetv_qcA3mFHfo84,15670,She uses a pole to vault over a bar. She,She uses a pole to vault over a bar.,She,gold,goes backwards several times.,\"chops a counter once, then does a cartwheel and keeps it.\",glances over then goes.,lands on a mat on the other side.,3\n9831,anetv_Upd7zpT6tuc,8342,A girl waves at the camera before we see a baseball field. Someone,A girl waves at the camera before we see a baseball field.,Someone,gold,throws at a ball.,\"hits the ball, and runs to first base.\",sits next to someone.,cuts the grass with a lacrosse brush.,1\n9832,anetv_Upd7zpT6tuc,16552,One kicks a ball in the air. She,One kicks a ball in the air.,She,gold,begins swinging the dog.,runs toward a base.,hits another man with the stick.,holds a large bat away.,1\n9833,anetv_Upd7zpT6tuc,16551,Several athletes are in a field. One,Several athletes are in a field.,One,gold,kicks a ball in the air.,juggles the ball into the goal in a goal.,is playing a game of tug of war in a field outside.,throws a ball onto the padded.,0\n9834,anetv_Upd7zpT6tuc,8343,\"Someone hits the ball, and runs to first base. A kicker wearing sunglasses\",\"Someone hits the ball, and runs to first base.\",A kicker wearing sunglasses,gold,\"walks over to the camera, talking.\",shakes his shot as he shares his face.,holds a violin against his neck.,is sitting in the middle of the union.,0\n9835,anetv_Upd7zpT6tuc,16553,She runs toward a base. She then,She runs toward a base.,She then,gold,presents a can of paint.,puts sticks in her hands and attempts to use the cymbals while pausing to speak and text.,runs around to the home plate.,lands to side lanes of glass.,2\n9836,anetv_L35c6QI1l_0,17500,A man wearing a safari hat leads a group of camels with riders in a single file. The camera,A man wearing a safari hat leads a group of camels with riders in a single file.,The camera,gold,pans to a still view of a man and a woman riding next to another woman.,shows how they carve on a white horse toward the group.,pans a close up of the camels lying in the sand with their riding saddles on.,owners watch on the side as the driver walks by the group.,2\n9837,anetv_L35c6QI1l_0,17502,A rider captures the view of the sand dunes leading to the ocean. The camel caravan,A rider captures the view of the sand dunes leading to the ocean.,The camel caravan,gold,arrives to a camp on the beach.,pulls in a roll and walks away.,engage in front of a airport van.,watch closely around the wooded area.,0\n9838,anetv_L35c6QI1l_0,17498,A scene of sand dunes leading to a beach shoreline. A girl in a blue blouse,A scene of sand dunes leading to a beach shoreline.,A girl in a blue blouse,gold,walks and poses in the sand.,is playing hop scotch.,demonstrates how to ride the trees.,is performing a curling set off a christmas tree.,0\n9839,anetv_L35c6QI1l_0,17501,The camera pans a close up of the camels lying in the sand with their riding saddles on. A rider,The camera pans a close up of the camels lying in the sand with their riding saddles on.,A rider,gold,captures the view of the sand dunes leading to the ocean.,speaks on the cottage followed by more uniformed people riding down the mountain.,is shown afterwards walking along a sign.,is seen standing with a camera as well as close ups.,0\n9840,anetv_L35c6QI1l_0,17499,A girl in a blue blouse walks and poses in the sand. A man wearing a safari hat,A girl in a blue blouse walks and poses in the sand.,A man wearing a safari hat,gold,leads a group of camels with riders in a single file.,runs next to him and serves his bowler.,approaches the top then does the same thing again.,flies into the air and jumps into the air in a pile.,0\n9841,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4945,Someone walks towards something lying on the ground. A necklace of blue stones,Someone walks towards something lying on the ground.,A necklace of blue stones,gold,is written on the back of someone's grooming procession.,\"lies on the snow, tipped out of its box.\",\"appears on the bow, tethered to a graph just below the surface.\",\"holds a torch, which cuts around someone's neck.\",1\n9842,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4940,\"Ahead of them, someone lies on her back in the snow. Her body\",\"Ahead of them, someone lies on her back in the snow.\",Her body,gold,\"ecstatically, she faces the water as her eyes slide around as she takes a deep breath.\",carried into the vortex.,falls like a dead pig.,is wrenched from side to side.,3\n9843,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4941,Her body is wrenched from side to side. She,Her body is wrenched from side to side.,She,gold,pulls them down into the basement.,gets in the front with someone.,\"shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream.\",\"is someone, gripping her arms above her head, her eyes seen.\",2\n9844,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4938,\"On the way back, people are walking ahead of them. Someone\",\"On the way back, people are walking ahead of them.\",Someone,gold,looks in her right eye and smirks unpleasantly.,\"puts one arm over someone's shoulder, the other over someone's.\",continues a winding path along an empty road to where the small houses are behind them.,are wearing fancy outfits.,1\n9845,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4937,\"Someone wipes the butterbeer froth from her lip with her sleeve, then gazes at someone. On the way back, people\",\"Someone wipes the butterbeer froth from her lip with her sleeve, then gazes at someone.\",\"On the way back, people\",gold,find comfort - - fall.,walk together in kind.,are walking ahead of them.,slow to a wide - eyed glare.,2\n9846,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4948,\"Back inside its box, the necklace lies on a desk. Someone\",\"Back inside its box, the necklace lies on a desk.\",Someone,gold,\"studies it, then turns to someone.\",digs out his notes.,spots the clock on his surfboard.,finds a drawing on a log using a cane.,0\n9847,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4943,\"She crashes down onto the snow and lies on her back, her head shaking. Someone\",\"She crashes down onto the snow and lies on her back, her head shaking.\",Someone,gold,\"looks at him, leans in, hearing her.\",yawns anxiously as she passes above the building's furnishings.,arrives on the scene.,\"leans over the grave, sway with someone.\",2\n9848,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4934,Someone clenches his jaw and scowls at someone. Someone,Someone clenches his jaw and scowls at someone.,Someone,gold,takes someone's blouse off.,leans on the table.,sits open behind someone.,stands in the doorway.,1\n9849,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4939,\"Someone puts one arm over someone's shoulder, the other over someone's. Ahead of them, someone\",\"Someone puts one arm over someone's shoulder, the other over someone's.\",\"Ahead of them, someone\",gold,sits on the back of the backseat.,sweeps past a nearby warehouse.,pushes a gallon of mud onto his spear.,lies on her back in the snow.,3\n9850,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4942,\"She shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream. She\",\"She shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream.\",She,gold,leans on the balcony gardens close and tries to wave as the door frames and disappears.,\"lays her arms on a desk like a woman leaning forward so that someone can see someone's sword, head off sideways.\",gets another bottle of water.,\"crashes down onto the snow and lies on her back, her head shaking.\",3\n9851,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4947,\"Someone folds back the wrapping paper. Back inside its box, the necklace\",Someone folds back the wrapping paper.,\"Back inside its box, the necklace\",gold,wields a snatched cake.,lies on a desk.,lights a candle as he leaves.,unrolls a new shard of bacon from its jar.,1\n9852,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4944,\"They step aside, and the giant someone picks someone up. Someone\",\"They step aside, and the giant someone picks someone up.\",Someone,gold,walks towards something lying on the ground.,casts a grotesque sorrow at him.,holds the kindling for a dish so it won't clean through the windows.,\"shakes her head, then swims toward someone and wraps her arms around her neck.\",0\n9853,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4935,Someone leans on the table. He,Someone leans on the table.,He,gold,pours a shot of vodka.,\"raises his eyebrows, as he glances at someone.\",notes the ball in his pocket.,fills a tray then finds a sofa covered with white food.,1\n9854,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10821,He enters to find that the room has been trashed. And upturned furniture,He enters to find that the room has been trashed.,And upturned furniture,gold,is wedged against a wall.,is been torn in strips.,is stacked in the pensieve.,is strewn about the room.,3\n9855,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10822,\"And upturned furniture is strewn about the room. Unseen, someone\",And upturned furniture is strewn about the room.,\"Unseen, someone\",gold,trots out of the hotel room and scurries down a corridor to a lift.,removes the rear and climbs on to the wooden table.,goes to speak to the alien and bashes him with the wall.,moves it out of its sheeting on someone.,0\n9856,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10824,\"She gives him a sultry look, and he grins. As he\",\"She gives him a sultry look, and he grins.\",As he,gold,reaches for his shirt he yanks it up.,\"heads skyward, someone intercepts him to meet her.\",stares so brightly she can see someone's face.,lets out a bashful sigh disturbing the fake mustache.,3\n9857,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10823,She bursts out laughing and pats him at the thigh. Someone,She bursts out laughing and pats him at the thigh.,Someone,gold,bangs the poker on his forehead.,adjusts the mechanical arms with her right hand.,\"does the flip, then shimmies his hips.\",wanders out of the lift.,3\n9858,anetv_HVfr9FnEj-Q,4719,The ladies dip down and toss their hair backwards. They,The ladies dip down and toss their hair backwards.,They,gold,swing their dipped bodies.,finish and return the drink to the floor and lay it rhythmically.,stand up and paints their faces.,move forward when they see the hit and jump very slow walking against the sand.,0\n9859,anetv_HVfr9FnEj-Q,4718,The ladies are belly dancing. The ladies,The ladies are belly dancing.,The ladies,gold,\"end the dance in unison, then dance.\",dip down and toss their hair backwards.,begin clapping and singing.,play a song of singing some on stage.,1\n9860,anetv_HVfr9FnEj-Q,4722,The ladies throw their hair back and forth. 2: 43 a man,The ladies throw their hair back and forth.,2: 43 a man,gold,throw a man in an attempt to throw a ball open.,\"approach the first class, then left many medals together.\",is in the room in the back and bends down.,are inside and begin sumo dancing in the middle of the ring.,2\n9861,anetv_HVfr9FnEj-Q,4720,They swing their dipped bodies. The ladies,They swing their dipped bodies.,The ladies,gold,flip into a log.,dip and bend backwards.,\"swing, then swing at an affectionate bat.\",\"move towards their breasts, smiling to each other, facing their trio.\",1\n9862,anetv_HVfr9FnEj-Q,4721,The ladies dip and bend backwards. The ladies,The ladies dip and bend backwards.,The ladies,gold,throw their hair back and forth.,notice and give their bows.,fall backwards the ball.,laugh and clap for his head.,0\n9863,anetv_HVfr9FnEj-Q,4723,2: 43 a man is in the room in the back and bends down. The ladies,2: 43 a man is in the room in the back and bends down.,The ladies,gold,lift the weight up and the head down.,are wrestling with the swords.,finish dancing and take a bow.,are being shown in the water.,2\n9864,anetv_Oc8ACBiwIyE,6972,More tiles are pushed off of the roof as they pull away items. They,More tiles are pushed off of the roof as they pull away items.,They,gold,is shown vacuuming the floor in the concrete room.,swing back and fourth on the floor.,finish pulling off the tiles.,scrubs the clothing with their hands and knees.,2\n9865,anetv_Oc8ACBiwIyE,15017,Every time he removes a tile several bats fly out. Many bats,Every time he removes a tile several bats fly out.,Many bats,gold,go down and stare at one another.,fly out from the roof.,fly from the mouse.,hover before it are thrown to the ground.,1\n9866,anetv_Oc8ACBiwIyE,6971,A camera pans around a roof and shows a person pushing up tiles. More tiles,A camera pans around a roof and shows a person pushing up tiles.,More tiles,gold,are shown in the end and ending by a woman laying on the floor.,fall out while a camera pans in show photos of him standing around.,are pushed off of the roof as they pull away items.,are shown as they wipe the tiles and cracks up the wall.,2\n9867,anetv_Oc8ACBiwIyE,15016,A man stands ono a clay roofed house. One by one he,A man stands ono a clay roofed house.,One by one he,gold,removes the clay tiles.,lets play on the front.,stands against the wall.,jumps onto the balcony and disappears into a house.,0\n9868,anetv_D2TQ_RR2Q50,3357,Clips are shown of people running down the street while the women continue to speak. The girls,Clips are shown of people running down the street while the women continue to speak.,The girls,gold,\"continue to play with another man on the sidelines, as well as people dancing and attempting various tricks with the camera crowd.\",talk more and more while people are still shown running down the road.,continuously perform various jumps while others watch and walk away.,continue playing and walk away and one of the boys struggles with a ball as well as others.,1\n9869,anetv_D2TQ_RR2Q50,4760,Three women are seen speaking to the camera while people run in the background. More clips,Three women are seen speaking to the camera while people run in the background.,More clips,gold,is shown of the people dancing back and fourth while others watch on the sides.,are shown of people performing around performing different tricks on their skateboards.,are shown of different girls doing their tricks by laughing and waving to the camera.,are shown of people running a marathon while others still speak to the camera.,3\n9870,anetv_D2TQ_RR2Q50,3356,Three women are seen speaking to the camera and answering questions that the hosts ask. Clips,Three women are seen speaking to the camera and answering questions that the hosts ask.,Clips,gold,are shown of people running down the street while the women continue to speak.,and people play game of soccer in a field together in a field with many people in the background.,are playing on a game while they are laying games in the net.,continue to walk on the ice and continue playing hop approvingly.,0\n9871,anetv_D2TQ_RR2Q50,4761,More clips are shown of people running a marathon while others still speak to the camera. The women,More clips are shown of people running a marathon while others still speak to the camera.,The women,gold,continue training on end people interviews in the news.,are also spotting the flags and show more afterwards.,continue speaking while others still run around.,continue along the road while others speak and pass by the driver and then stop to protect their faces.,2\n9872,anetv_64vbnwtL7I8,7992,People in recorded video of the bowling match. Spectators,People in recorded video of the bowling match.,Spectators,gold,are flying the waves from another country man.,use a hula hoop to perform a competition performance on a large stage.,sit and stand behind the railing watching the event.,are playing the game; courts of the playing gets hit.,2\n9873,anetv_64vbnwtL7I8,7994,A man bowls a his turns standing backwards. People in the stands,A man bowls a his turns standing backwards.,People in the stands,gold,gather in front of musicians dancing in the air.,are white behind the man.,cheer for the bowler.,\"peer into his sides, trying to keep the ball down.\",2\n9874,anetv_Hc--KcdMkEA,14631,A man stands in front of a podium talking. Two other men,A man stands in front of a podium talking.,Two other men,gold,are unable to lift his legs.,are chasing the ball.,stand next to him.,stand then talk to each other.,2\n9875,anetv_Hc--KcdMkEA,14632,Two other men stand next to him. One of the two men,Two other men stand next to him.,One of the two men,gold,spins him all over his head and one woman throws him out of the way.,digs in a fire pit where there was a fire and then pours water on it.,begin hopping over each other.,wipe the other's face.,1\n9876,anetv_Hc--KcdMkEA,14633,One of the two men digs in a fire pit where there was a fire and then pours water on it. The same man,One of the two men digs in a fire pit where there was a fire and then pours water on it.,The same man,gold,digs around in the pit with his hand looking for burning embers.,is now standing in a square of wood with his hand and holding the large stick.,is first to grab the fish and rubbing it into his mouth.,gets off the ornament of the chair.,0\n9877,anetv_eDMv3IHGpnA,18315,A man wearing very large glasses is talking into a black microphone while people behind him are dancing until he points into their direction and they all scatter off the dance floor. Men are dressed in red suits and each are,A man wearing very large glasses is talking into a black microphone while people behind him are dancing until he points into their direction and they all scatter off the dance floor.,Men are dressed in red suits and each are,gold,taking turns break dancing alone as words on the screen are possibly naming the dancer.,making hand movements with sharp swords.,gathered in a classroom as contorts three wooden cups moving their hands rapidly illustration.,showing the yet winning host.,0\n9878,anetv_6yVhTyPaaLQ,655,\"Then, the woman paints two canvas using a bottle, when it is necessary the woman rotates the canvas. Then, the woman\",\"Then, the woman paints two canvas using a bottle, when it is necessary the woman rotates the canvas.\",\"Then, the woman\",gold,gives an final hand.,put white paints and paint then warm paints.,puts the canvas on the floor and continues painting with the bottle.,picks up a bow and put a satisfied star on brown coats.,2\n9879,anetv_6yVhTyPaaLQ,654,\"A woman stands on front a paint holding a bottle, and then paintings on canvas are shown in a slideshow. Then, the woman\",\"A woman stands on front a paint holding a bottle, and then paintings on canvas are shown in a slideshow.\",\"Then, the woman\",gold,\"shows how to lever spacers, then put it on the vase, and show how she is doing it.\",adds to the paint and continues to paint it with an iron.,interviews the child while she speaks to him.,\"paints two canvas using a bottle, when it is necessary the woman rotates the canvas.\",3\n9880,anetv_6yVhTyPaaLQ,656,\"Then, the woman puts the canvas on the floor and continues painting with the bottle. After, the woman hangs the paintings on the, then she\",\"Then, the woman puts the canvas on the floor and continues painting with the bottle.\",\"After, the woman hangs the paintings on the, then she\",gold,puts the paintings on the floor and then hang on the wall to continues painting.,uses a brush to remove stacks of substance across the floor.,paints the front nails.,bends down and grabs it and shows how to sit on the sofa.,0\n9881,anetv_pizl41xmw7k,19036,A child mops the floor of a hallway in a house. The child,A child mops the floor of a hallway in a house.,The child,gold,\"walks through frame covering the cookies on the hardwood floor, then turns back to two watching.\",empties a cement bucket on top of the lake and then wets the floor.,uses a hand blocking brush to clean the cat while a man uses a leaf to clean it to the camera.,sets the mop down and plays with her family member.,3\n9882,anetv_pizl41xmw7k,19037,The child sets the mop down and plays with her family member. The child,The child sets the mop down and plays with her family member.,The child,gold,looks away from the camera then falls back below some seats.,returns the pinata and is blindfolded while the child laughs.,makes a small call.,walks into the bedroom area and continues to mop the floor.,3\n9883,anetv_E1AVyl1RwF8,8290,They are using boxing gloves and equipment. One man,They are using boxing gloves and equipment.,One man,gold,is kicking and punching as the other blocks.,\"throws a ball, then another begins to break his arm inside.\",uses a glove to hit the ground and shows some other screaming techniques.,demonstrates long jumps uses a course to collect the field.,0\n9884,anetv_E1AVyl1RwF8,199,One man is seen holding boxing gloves and hitting a man standing in front of him. A man,One man is seen holding boxing gloves and hitting a man standing in front of him.,A man,gold,is then seen speaking to the camera while various shots are shown of people help.,walks into frame followed by a man performing tricks and laughing to the camera.,is seen blocking the other with pads while the man continues to punch and kick.,places held on his hands by starting a wrestling match.,2\n9885,anetv_E1AVyl1RwF8,8289,A couple of men are fighting inside a gym. They,A couple of men are fighting inside a gym.,They,gold,are engaged in a game of rock paper scissors.,are engaged in a game of jousting.,lob the ball back and forth against each other.,are using boxing gloves and equipment.,3\n9886,anetv_5kdiJ2cC5_w,16475,The woman plays the violin. The woman,The woman plays the violin.,The woman,gold,plays a conga violin and applaud.,plays on her violin.,stops playing the violin.,sings at the end of the broom then plays with it.,2\n9887,anetv_RWir3muDHg0,8669,Suddenly the men start pulling on the rope as other men are instructing them and the spectators are cheering. The men in the yellow and blue shirts are easily pulling the rope and they,Suddenly the men start pulling on the rope as other men are instructing them and the spectators are cheering.,The men in the yellow and blue shirts are easily pulling the rope and they,gold,continue to play tug of war with the weights.,have won while the people around them cheer.,sit in a hot steel tying men on how to pole wrestle.,\"'re attacking in blue, the men make the first wave to jump him as they run.\",1\n9888,anetv_RWir3muDHg0,8668,A lot of men are standing outdoors on a dirt field and there are two teams standing along a rope while a lot of people are standing around watching them. The men wearing yellow and blue shirts,A lot of men are standing outdoors on a dirt field and there are two teams standing along a rope while a lot of people are standing around watching them.,The men wearing yellow and blue shirts,gold,\"progresses and heavily off several other lays, trying to sit on the grass.\",are playing large hockey with arrows on their hands.,run down an shooting track and part of the land stopped to stop jumping while.,pick up the rope and are getting in position to play tug o war.,3\n9889,anetv_Hev5Vj0Jjuk,3387,A girl stands on top of the platform with a rope and harness and prepares to jump. A pop band,A girl stands on top of the platform with a rope and harness and prepares to jump.,A pop band,gold,is seen doing her jump while on a stage with a defeated audience.,moves off a line and the performers perform a high jump and walk back.,comes behind the men and we see several girls riding on the horses.,is seen singing a song and dancing.,3\n9890,anetv_Hev5Vj0Jjuk,3389,The girl jumps from the platform and bounces on the bungee cord in the air. The girl,The girl jumps from the platform and bounces on the bungee cord in the air.,The girl,gold,in jumps up and touches her feet by herself.,gives her mother a hug then dances back.,is met by the group members who congratulate her for the jump.,\", the end twisting, rises to the ground.\",2\n9891,anetv_Hev5Vj0Jjuk,3385,The girls put on safety harnesses. The group,The girls put on safety harnesses.,The group,gold,runs in every direction.,leaves some area offering a sign for the coast.,climb up the stairs to the top of the platform.,continues to teach the girl they are riding.,2\n9892,anetv_Hev5Vj0Jjuk,3384,A group of girls look up at an amusement park ride and wave there hands in fear and anticipation. The girls,A group of girls look up at an amusement park ride and wave there hands in fear and anticipation.,The girls,gold,\"proceed to walk faster from the parking lot, and two children stand for the van, jumping side to side sideways.\",put on safety harnesses.,is going down and maintaining an argument as activity on the grassy green grassy field.,continue to climb wave in the air as each scene ends.,1\n9893,anetv_Hev5Vj0Jjuk,3386,The group climb up the stairs to the top of the platform. A girl,The group climb up the stairs to the top of the platform.,A girl,gold,in a black shirt is walking on a gymnastics table.,falls down when a young man picks them up.,stands on top of the platform with a rope and harness and prepares to jump.,holds a new box in better hands.,2\n9894,anetv_bPkk-z5n8MY,16489,A large group of people are seen spinning and twirling batons in the city. A large group of people,A large group of people are seen spinning and twirling batons in the city.,A large group of people,gold,are seen dancing around a gymnasium before walking away.,are seen running around a gym following a team of people as well as others.,are seen wandering around an audience with their neck spinning and walking around.,are seen sitting around the group watching.,3\n9895,lsmdc3038_ITS_COMPLICATED-17652,9824,Workers gather their things and hurry. He,Workers gather their things and hurry.,He,gold,\"looks at the bearded, unshaven man then tops it with a large distant table.\",stands next to the roof of broken rock.,nods at her beaming.,\"holds her boot in his t - vision, opening the door.\",2\n9896,lsmdc3038_ITS_COMPLICATED-17652,9825,He nods at her beaming. Someone,He nods at her beaming.,Someone,gold,pouts at her sister and then takes off her clothes and their eyes meet.,turns and kisses her nephew.,gives her a loving smile.,smiles and looks away.,3\n9897,anetv_c9bvuUO9Q0Q,11861,A person then pulls up a pinata and begins swinging at the object. The boy,A person then pulls up a pinata and begins swinging at the object.,The boy,gold,moves his hands around and continues to swing at the object.,grabs a calf and walks on the lawn while a man helps a dog and help down the street.,\"finishes, scores a shadow and walks away.\",with the her stick is shown from several angles when a close up of another girl is seen kicking his legs around.,0\n9898,anetv_c9bvuUO9Q0Q,11860,A small group of people are seen standing outside with one being blindfolded and holding a bat. A person then,A small group of people are seen standing outside with one being blindfolded and holding a bat.,A person then,gold,begins mixing and throwing a knife around throwing a dough into a pan and kicking the ingredients into the pan.,begins throwing frisbees into the air while others hit the side.,pulls up a pinata and begins swinging at the object.,attempt the pinata and the girl tries too hard to miss the ball but the woman tries to catch it.,2\n9899,anetv_cDe2GlvMEQg,15400,He points to several objects while leading into dirt being shown as well as plaster. People,He points to several objects while leading into dirt being shown as well as plaster.,People,gold,are seen putting plaster all over the walls while the man continues to speak.,are seen attempting to lay down more in the time.,\"still shots of the man sitting while a pool sits on top of the machine, continues to stir while others in the stands.\",walk up and speak to the camera as they continue to mow.,0\n9900,anetv_cDe2GlvMEQg,15399,A man is seen speaking to the camera indoors as well as outdoors. He,A man is seen speaking to the camera indoors as well as outdoors.,He,gold,points to several objects while leading into dirt being shown as well as plaster.,is then seen exercising on the bike as well as people pulling out the seat storage.,begins down the path while welding.,adjusts the settings on the horse and shows off his helper.,0\n9901,anetv_6fgk5PKVS2o,776,The people are then shown in various angles riding up a snowy mountain and going down a hill. Close ups of the people's faces,The people are then shown in various angles riding up a snowy mountain and going down a hill.,Close ups of the people's faces,gold,are shown as they go up and down the hill several times and landing at the bottom of a hill.,are shown as well as the kids dancing.,are shown on pans as well as performing tricks on top of the mountain and falling off in the snow.,are shown as well as people performing in unison as well as performing tricks at the end.,0\n9902,anetv_6fgk5PKVS2o,775,A person's car is shown from several angles with a person inside and leads into the car driving with people inside. The people,A person's car is shown from several angles with a person inside and leads into the car driving with people inside.,The people,gold,are riding around and working on the camels.,are then shown in various angles riding up a snowy mountain and going down a hill.,continue to ride around on the street while jumping around areas and zooming to the camera.,are shown back and fourth around well as others shoveling raking.,1\n9903,lsmdc3057_ROBIN_HOOD-27848,9677,\"King someone winces thoughtfully, then leans toward someone. He\",\"King someone winces thoughtfully, then leans toward someone.\",He,gold,eyes someone and strokes her hand.,steps out wearing a ripped shirt.,looks out to the crowd.,folds his arms around someone.,2\n9904,anetv_51XRujaBAbE,19008,\"A toddler stands on the hay and grabs the leg of a woman. Then, men\",A toddler stands on the hay and grabs the leg of a woman.,\"Then, men\",gold,carry on horses then push the woman through the trees down a grassy slope.,enter the field and turn back to one of the people.,wearing red shoes perform the same karate moves.,push the motorcycles with the children while a man takes notes.,3\n9905,anetv_51XRujaBAbE,19007,\"A man carry a child, a woman applaud and a man takes pictures. A toddler\",\"A man carry a child, a woman applaud and a man takes pictures.\",A toddler,gold,play off her words and trophies with a subscribe screen.,plays in front of a car with a woman in arm talk.,stands on the hay and grabs the leg of a woman.,stands in line down.,2\n9906,anetv_51XRujaBAbE,19009,\"Then, men push the motorcycles with the children while a man takes notes. Then, the children\",\"Then, men push the motorcycles with the children while a man takes notes.\",\"Then, the children\",gold,split together and sail in a circle.,play large drums while two men cross.,help a man who score the stand.,line on the start line and then run.,3\n9907,anetv_JQavlg895jU,15174,The group picks up one after the other and dances around the stage while others spot. The group,The group picks up one after the other and dances around the stage while others spot.,The group,gold,continues to play more and ends by stopping them in circles.,dismounts and moves high off the mat before getting back on the rope.,continues dancing in front of the crowd and ends by walking off stage.,continues to throw the ball on the sides while people watch on the sides.,2\n9908,anetv_JQavlg895jU,15173,A large group of people are seen standing on a stage and begin performing a cheerleading routine. The group,A large group of people are seen standing on a stage and begin performing a cheerleading routine.,The group,gold,continues spinning around the other and a group hugs each other.,continues performing a routine on the stage while looking through the laces on the side doing hands.,picks up one after the other and dances around the stage while others spot.,end by panning away from each other and hitting one another with the camera.,2\n9909,anetv_JQavlg895jU,6473,\"The group are lined up then they throw the ladies up in the air, catched them and scattered around. The cheer dancing\",\"The group are lined up then they throw the ladies up in the air, catched them and scattered around.\",The cheer dancing,gold,continues as they end and people push the opponent over with the bow.,continues as they jump skyward and go.,takes their entire routine as they show the winner while the other throws the conductor into the air to catch it.,started to perform their cheer dance as people run behind them with flags.,3\n9910,lsmdc0053_Rendezvous_mit_Joe_Black-71547,14529,\"Someone halts, in the distance a figure is approaching from over the crest of the hill where people disappeared. He is heading straight for her, she\",\"Someone halts, in the distance a figure is approaching from over the crest of the hill where people disappeared.\",\"He is heading straight for her, she\",gold,sees a group of loose tubes moving up in front of her body.,looks up to see someone climbing.,\"tries to make him out, seems to recognize him, starts to walk towards him as if pulled by a magnet.\",\"hangs up, exhales softly as she sways in the sunshine.\",2\n9911,lsmdc0053_Rendezvous_mit_Joe_Black-71547,14530,\"It is a man, he keeps coming, and now that he is close and recognizes him. Something about him\",\"It is a man, he keeps coming, and now that he is close and recognizes him.\",Something about him,gold,makes someone slightly tentative.,is taking place for doing karate job for barefoot.,\"is - - full of pale satin hair, palette and ink.\",takes him down a path and seems really enjoying it.,0\n9912,anetv_peoMXSP3VgY,7593,Skateboarders ride down through a parking garage together. The skateboards,Skateboarders ride down through a parking garage together.,The skateboards,gold,take off in the competition on the swings.,are shown ski while they sit on the bikes and are talking.,are waved off from the bikes.,ride down a hill the skid at the bottom.,3\n9913,anetv_peoMXSP3VgY,7592,Mountains are seen in the background and a boy rides in a car. Skateboarders,Mountains are seen in the background and a boy rides in a car.,Skateboarders,gold,boys are seen standing next to them and begins to play and others watch him work.,jumps onto his bike to join his ride.,ride down through a parking garage together.,seen walking on the face of cars and giving clips in the game.,2\n9914,anetv_peoMXSP3VgY,7594,The skateboards ride down a hill the skid at the bottom. The boy,The skateboards ride down a hill the skid at the bottom.,The boy,gold,skates pushing the snow wrathfully in the puddles.,rides down the dirt road near the end selected.,shines a snow over.,sets his board standing upright.,3\n9915,anetv_peoMXSP3VgY,7595,The boy sets his board standing upright. A boy,The boy sets his board standing upright.,A boy,gold,walks to the beach and shows several finished flips.,skateboards through the bleachers of a stadium.,takes a glass of water out of the ocean.,pulls up a fish and puts his hands in the water.,1\n9916,lsmdc0027_The_Big_Lebowski-62970,7840,\"Someone gets out, still holding his drink. His eyes on the rearview mirror, someone\",\"Someone gets out, still holding his drink.\",\"His eyes on the rearview mirror, someone\",gold,notices someone holding someone's arm.,\"swallows hard, and swallows.\",hastily reaches inside and shuts the door.,jerks a thumb over his shoulder.,3\n9917,lsmdc0027_The_Big_Lebowski-62970,7841,Halfway up the block a Volkswagon bug has pulled over to the curb. In the driver's seat we,Halfway up the block a Volkswagon bug has pulled over to the curb.,In the driver's seat we,gold,see people across the street.,\"see a second person, sitting behind him.\",see the squad car enter across the street.,see a fat man's shape.,3\n9918,lsmdc0027_The_Big_Lebowski-62970,7836,\"Someone sits in back holding a White Russian, listening to the chauffeur, a man of about the same age from whose livery cap a ponytail emerges. He\",\"Someone sits in back holding a White Russian, listening to the chauffeur, a man of about the same age from whose livery cap a ponytail emerges.\",He,gold,\"rushes to him, grabs someone, and then hugs him close.\",\"takes a sip of a freshly - mixed white russian, which leaves milk on his mustache.\",is going to take a bow.,\"starts away from the iron shop and flies across the colorful, disheveled street.\",1\n9919,lsmdc0027_The_Big_Lebowski-62970,7837,\"He takes a sip of a freshly - mixed White Russian, which leaves milk on his mustache. I was feeling really shitty earlier in the day, i'd lost a little money, I\",\"He takes a sip of a freshly - mixed White Russian, which leaves milk on his mustache.\",\"I was feeling really shitty earlier in the day, i'd lost a little money, I\",gold,indicates that someone is easy to be out.,was down in the dumps.,taylor being here because of the circles.,things you want to kill throughout the movie.,1\n9920,lsmdc0027_The_Big_Lebowski-62970,7839,The limo has rolled to a stop. Someone,The limo has rolled to a stop.,Someone,gold,\"gets out, still holding his drink.\",waddles over as someone lowers his gun.,presses a fist back against his door and tries to split the windows.,lies semi - slumped.,0\n9921,lsmdc0027_The_Big_Lebowski-62970,7843,The waiting limo's back door is flung open. Someone,The waiting limo's back door is flung open.,Someone,gold,sits behind items and starts talking.,opens his lips and rows of gum down.,is shoved in and awkwardly takes a seat facing the rear.,watches the rich man through a sedan drain.,2\n9922,lsmdc0027_The_Big_Lebowski-62970,7838,\"I was feeling really shitty earlier in the day, i'd lost a little money, I was down in the dumps. The limo\",\"I was feeling really shitty earlier in the day, i'd lost a little money, I was down in the dumps.\",The limo,gold,has rolled to a stop.,fell outside the grave.,\"pulls away, which protrude from someone 'hand.\",\"rushes up to someone, reaches for someone.\",0\n9923,anetv_7aydawW3AfE,13070,A little girl is sitting on a bed with her eyes closed. A woman,A little girl is sitting on a bed with her eyes closed.,A woman,gold,kneels down and puts eye liner on the girl.,is sitting behind the couch putting mousse into the mohawk lock.,sits in a chair eating a cream cone.,is standing in front of the tub with a pink razor.,0\n9924,anetv_7aydawW3AfE,13071,A woman kneels down and puts eye liner on the girl. The girl,A woman kneels down and puts eye liner on the girl.,The girl,gold,releases a knife on the lady's leg and wipes her face.,rubs her hand all over the girl with her hair on the left side then head.,opens her eye and smiles.,uses a toothbrush to wash her face.,2\n9925,anetv_VAKQMtYrl4I,445,Several dogs walk down a street. They,Several dogs walk down a street.,They,gold,stop and gets hands.,are on leashes held by their owners.,play hopscotch at their feet while trying to catch frisbee.,are performing on the grass then they get up on the rake stage.,1\n9926,anetv_nuqxJvTbG9w,7924,A woman is seen kicking a ball out into a field of people and then running back to the home plate. She then,A woman is seen kicking a ball out into a field of people and then running back to the home plate.,She then,gold,pans many times performing the jumps and jumping to the end of the field to begin a run.,takes several more balls behind her and pushes it around the chair as well as them celebrating their throw.,takes the camera off and continues with the dogs by serving.,kicks the ball again while others around her run and grab the ball from the field.,3\n9927,lsmdc1029_Pride_And_Prejudice_Disk_One-83474,250,\"Having heard everything, someone looks at someone out the corner of her eye. Then, with a mischievous smile, she\",\"Having heard everything, someone looks at someone out the corner of her eye.\",\"Then, with a mischievous smile, she\",gold,gets up and crosses the room in front of him.,\"takes it completely and holds it in her pants, wei turns to the eagles by the door.\",walks past someone as she goes past a window.,looks on as someone's mouth fills with tears.,0\n9928,lsmdc1029_Pride_And_Prejudice_Disk_One-83474,252,\"Resplendent in her green silk gown and fashionable feather hat, someone is tolerating the dancing, wheeling in and out with a haughty air. Someone\",\"Resplendent in her green silk gown and fashionable feather hat, someone is tolerating the dancing, wheeling in and out with a haughty air.\",Someone,gold,dances with the red queen backwards when someone has provided the trio.,is up with someone and having a much better time of it.,looks up at someone and someone in a blonde witch's uniform.,comes into him sitting behind a golden table with his front door open.,1\n9929,lsmdc1029_Pride_And_Prejudice_Disk_One-83474,251,\"Then, with a mischievous smile, she gets up and crosses the room in front of him. Watching her pass by, his eyes\",\"Then, with a mischievous smile, she gets up and crosses the room in front of him.\",\"Watching her pass by, his eyes\",gold,fall away as someone swings her chain loose at him.,\"glazed over as tears glisten in his eyes, which rises up to his chest.\",linger on her for a long moment as she talks to someone.,flash back to the top shelf.,2\n9930,lsmdc1029_Pride_And_Prejudice_Disk_One-83474,253,\"Someone is up with someone and having a much better time of it. Whilst people watch the moment with disgust,\",Someone is up with someone and having a much better time of it.,\"Whilst people watch the moment with disgust,\",gold,speech between someone and the first four.,slumped in a chair.,scooped up in coffee from all their beers has heard the performance.,\"canned laughter - - tight from him, saddened.\",1\n9931,anetv_v2iIR1YLdz4,5589,He is doing hand stands on a couple of bars on the ground. The bars,He is doing hand stands on a couple of bars on the ground.,The bars,gold,begins to spin the same several times on the back.,are made from pvc pipes.,take out on one foot and then does a final flip.,are shown in slow motion.,1\n9932,anetv_v2iIR1YLdz4,5588,A man is doing gymnastics in a living room. He,A man is doing gymnastics in a living room.,He,gold,turns around on stage and picks up a microphone.,is sitting with a accordion in his lap.,is sitting up on a martial arts set.,is doing hand stands on a couple of bars on the ground.,3\n9933,anetv_e0Qj2F3V6fM,5867,She then puts it into the tray and into the oven to bake. Afterward she,She then puts it into the tray and into the oven to bake.,Afterward she,gold,puts the pieces out onto cookie dough and puts it on.,allows the cake and bake in the oven.,places the cookies into a cookie sheet before putting it back inside.,takes it out and shows the finished product.,3\n9934,anetv_e0Qj2F3V6fM,5866,She mixes everything together and stirs it up with seasoning. She then,She mixes everything together and stirs it up with seasoning.,She then,gold,\"grabs the utensils, picks the dish up in the trash, and begins to clean it out with the bag.\",puts it into the tray and into the oven to bake.,begins mixing the dough into the dough.,boils some sauce and placed in the dishwasher.,1\n9935,anetv_e0Qj2F3V6fM,5865,She shows the ingredients and tell what to set the oven to. She,She shows the ingredients and tell what to set the oven to.,She,gold,mixes everything together and stirs it up with seasoning.,pours the liquid into the oven.,shows the lemons into the bowl.,puts her clr into a pot.,0\n9936,anetv_e0Qj2F3V6fM,5864,The video stats explaining how to make Omelette muffins. She,The video stats explaining how to make Omelette muffins.,She,gold,demonstrates how to apply the sandwich to the pan.,demonstrates how to repair pieces of clothing.,shows the ingredients and tell what to set the oven to.,and explains about the new methods.,2\n9937,anetv_UxlSiLBleX4,5155,He begins to play an acoustic guitar. He,He begins to play an acoustic guitar.,He,gold,\"dominates the room with someone, whose eyes are rimmed with black blood.\",finishes playing the guitar and standing up.,also uses his ear to drop the guitar.,holds a violin to his lips.,1\n9938,anetv_UxlSiLBleX4,16557,A seated man wearing headphones plays a guitar. The man,A seated man wearing headphones plays a guitar.,The man,gold,plays the piano while the piano.,plays a drum set and spread band on his hands.,stops playing and leans forward.,begins playing the guitar while left on the right.,2\n9939,anetv_UxlSiLBleX4,5154,A man is sitting down in a chair. He,A man is sitting down in a chair.,He,gold,is cutting down on the ground in front of him.,has shaving cream on his leg.,is dancing in front of a flute.,begins to play an acoustic guitar.,3\n9940,lsmdc3021_DEATH_AT_A_FUNERAL-1227,8852,\"As the guest heads off, someone appears. Someone\",\"As the guest heads off, someone appears.\",Someone,gold,waits for a hat for a whole party.,leads him into the study where someone takes in the refined decor.,\"sobs both her thighs as she catches, then rises swing her outstretched arms.\",closes the porch door and tries to open the door.,1\n9941,lsmdc3021_DEATH_AT_A_FUNERAL-1227,8855,He eyes its title page. Someone,He eyes its title page.,Someone,gold,presses her chamber to his chest and sings.,takes it and clips it.,flips the manuscript over.,finds a cardboard box and starts urinating its pages.,2\n9942,lsmdc3021_DEATH_AT_A_FUNERAL-1227,8854,The dwarf spots a manuscript on the coffee table. He,The dwarf spots a manuscript on the coffee table.,He,gold,eyes its title page.,takes out his cards and looks at it.,throws a blank copy back to the man.,holds onto the pup.,0\n9943,lsmdc3021_DEATH_AT_A_FUNERAL-1227,8853,Someone leads him into the study where someone takes in the refined decor. The dwarf,Someone leads him into the study where someone takes in the refined decor.,The dwarf,gold,\"looks to someone, who addresses someone.\",gyrates harshly against the bed.,spots a manuscript on the coffee table.,is lifted to the tower.,2\n9944,anetv_2-xMWBQA7iM,18089,We see a title screen. We,We see a title screen.,We,gold,see someone making lacrosse on stilts.,see an opening screen.,see titles in the screen.,see the man stop rowing and walks and gets the camera.,3\n9945,anetv_2-xMWBQA7iM,18087,The man drink from his water. The man,The man drink from his water.,The man,gold,switches clothes and adjusts the surface.,brakes the sailboat with his skiers.,rows fast on the machine.,pokes him and stands upright.,2\n9946,anetv_2-xMWBQA7iM,18090,We see the man stop rowing and walks and gets the camera. The man then,We see the man stop rowing and walks and gets the camera.,The man then,gold,return to the car with his gear attached.,points again to the pool set.,shows the screen on the rowing machine.,goes to work and jumps on front of his board.,2\n9947,anetv_2-xMWBQA7iM,18088,The man rows fast on the machine. We,The man rows fast on the machine.,We,gold,see a title screen.,see the shot again in the end.,see the man and the client.,see the man peel the seat in front of him.,0\n9948,anetv_2-xMWBQA7iM,18086,We see a man walk over and sits on a rowing machine. The man,We see a man walk over and sits on a rowing machine.,The man,gold,stops and holds her position.,drink from his water.,pierces a needle from his head.,spins and pulls the machine down the pole.,1\n9949,anetv_iH659QSrcDc,6103,A man stands on a roof and drills pieces of wood down. Credits,A man stands on a roof and drills pieces of wood down.,Credits,gold,are standing on the floor.,look over the area and see two men throwing knives on their escape.,are seen for the video with a website.,is sitting on the ground next to him.,2\n9950,anetv_iH659QSrcDc,6102,A text graphic is seen with a title and description. A man,A text graphic is seen with a title and description.,A man,gold,stands on a roof and drills pieces of wood down.,runs down a track and falls in a sand pit.,sits leaving headphones talking and playing a cut accordian.,draws an object to the body.,0\n9951,lsmdc3037_IRON_MAN2-17002,9218,Someone watches security camera videos. He,Someone watches security camera videos.,He,gold,holds up cans as soldiers stand smoking appraisingly.,climbs out of the car and stops.,types on the keyboard.,lifts his eyes to a statue then moves her head downward and glares hard.,2\n9952,lsmdc3037_IRON_MAN2-17002,9233,Someone's face appears on the monitor. Someone,Someone's face appears on the monitor.,Someone,gold,\"sits on the bed, her head turned up and crystal half - filled.\",puts the sheet down.,appears on another monitor.,\"thrusts a finger furiously at someone then hurries into the dance room, which tears its letters from the door.\",2\n9953,lsmdc3037_IRON_MAN2-17002,9232,Someone falls off a small cliff and lands on his back in the stream below. Someone's face,Someone falls off a small cliff and lands on his back in the stream below.,Someone's face,gold,appears on the monitor.,is no larger than someone fearful.,drops from the mud road as he hits the hole in the water.,buried in the snow.,0\n9954,lsmdc3037_IRON_MAN2-17002,9228,Someone aims and fires the Gatling gun at someone. Bullets,Someone aims and fires the Gatling gun at someone.,Bullets,gold,kicks someone aside with a warm smile.,whacks the dead thug.,ricochet off someone's suit.,\"fires his weapon from its barrel, then checks the shotgun.\",2\n9955,lsmdc3037_IRON_MAN2-17002,9213,\"She lifts a can of mace and sprays a twelfth guard in the eyes as he steps out of a doorway. In the lobby, someone\",She lifts a can of mace and sprays a twelfth guard in the eyes as he steps out of a doorway.,\"In the lobby, someone\",gold,pulls over and steps inside it.,pries someone into a u - turn.,bites the first guard's ear.,sways pleasantly to listen to him.,2\n9956,lsmdc3037_IRON_MAN2-17002,9230,Someone works at the computer. A message,Someone works at the computer.,A message,gold,appears next to the tv.,sits on the bedside table.,comes from the computer.,appears onscreen: system access.,3\n9957,lsmdc3037_IRON_MAN2-17002,9223,\"Inside, the two guards hang by their necks from the ceiling. Someone\",\"Inside, the two guards hang by their necks from the ceiling.\",Someone,gold,\"stands at someone's shoulder, parting her with a coin.\",takes someone's head and runs back up the passageway in the night.,\"tries to throw someone in the mall, and the ambulance starts to ride through the bus - rail car.\",hurries across the room toward someone's computer station.,3\n9958,lsmdc3037_IRON_MAN2-17002,9215,\"Someone punches the guard's face, sending him sailing backward onto the floor. Someone\",\"Someone punches the guard's face, sending him sailing backward onto the floor.\",Someone,gold,grabs a black ball and checks the other quickly as the bomb bomb lands into a pile.,gazes down the hallway at the many guards lying on the floor.,practices his rendition and tense living room.,launched from another train's landing.,1\n9959,lsmdc3037_IRON_MAN2-17002,9209,\"Still holding the cord, someone knocks one guard out and releases the cord. The eighth guard\",\"Still holding the cord, someone knocks one guard out and releases the cord.\",The eighth guard,gold,falls to the floor.,kisses him firmly on the forehead.,begins to pound on the roof shutters.,loses control of the car.,0\n9960,lsmdc3037_IRON_MAN2-17002,9212,Someone breaks his right arm and knocks him out with a kick. Someone,Someone breaks his right arm and knocks him out with a kick.,Someone,gold,strides down the corridor.,aims the head against a giant wave.,wraps his arms around her.,\"rams the pole, knocking the defending players off.\",0\n9961,lsmdc3037_IRON_MAN2-17002,9214,\"In the lobby, someone bites the first guard's ear. Someone\",\"In the lobby, someone bites the first guard's ear.\",Someone,gold,creeps him from a bush in a third class classroom.,\"punches the guard's face, sending him sailing backward onto the floor.\",shifts his jaw to the driver and scans to the ceiling.,taps her bag on the desk outside the printing office.,1\n9962,lsmdc3037_IRON_MAN2-17002,9216,\"Someone gazes down the hallway at the many guards lying on the floor. With a cord around his neck, one guard\",Someone gazes down the hallway at the many guards lying on the floor.,\"With a cord around his neck, one guard\",gold,flails as he dangles from the ceiling.,slips his trousers up along the side and shuts the ground then raises his gun.,flies him out of the shower.,puts the passengers back on the couch.,0\n9963,lsmdc3037_IRON_MAN2-17002,9210,The eighth guard falls to the floor. Someone,The eighth guard falls to the floor.,Someone,gold,\"on the ground, someone tosses someone to the ground.\",pumps her fist through the air.,slams the remaining guard onto the floor.,\"takes someone's hand, his fingers locked on it's bright lid.\",2\n9964,lsmdc3037_IRON_MAN2-17002,9211,An eleventh guard rounds a corner. Someone,An eleventh guard rounds a corner.,Someone,gold,breaks his right arm and knocks him out with a kick.,gets up and hurries after the witch.,\"rushes, followed by a man, his nazi than completely kneeing, and searches a small shopping trailer.\",lies down in the open and cups her face in his hands.,0\n9965,lsmdc3037_IRON_MAN2-17002,9227,\"Inside the dome, someone hurls someone onto a rocky stream bed. Someone\",\"Inside the dome, someone hurls someone onto a rocky stream bed.\",Someone,gold,sees someone stumble off over the edge of the bus.,aims and fires the gatling gun at someone.,crowds wildly the decks 10 feet from side to side.,slides through the bridge by a park roof which lands directly above someone's face.,1\n9966,lsmdc3037_IRON_MAN2-17002,9206,\"As dark smoke rises from the pellets, the guards cover their eyes. Someone\",\"As dark smoke rises from the pellets, the guards cover their eyes.\",Someone,gold,skips down a corridor.,takes a final puff.,grabs someone's radio and stands in tight.,kicks the guards and knocks them out.,3\n9967,lsmdc3037_IRON_MAN2-17002,9207,Someone deflects the nightstick with a steel cord. She,Someone deflects the nightstick with a steel cord.,She,gold,\"blows, moving her body.\",manages the wings and starts to fall out.,sits at the edge of the exercise machine.,punches the guard and wraps the cord around his neck.,3\n9968,lsmdc3037_IRON_MAN2-17002,9208,\"Two more guards charge someone. Still holding the cord, someone\",Two more guards charge someone.,\"Still holding the cord, someone\",gold,knocks one guard out and releases the cord.,snaps passengers from from the vault.,\"hugs the villain over his head, then lifts someone's locket from his mouth.\",inserts his machine gun.,0\n9969,lsmdc3037_IRON_MAN2-17002,9219,He types on the keyboard. A rolling list of data and the graphic outline of an arc reactor suit,He types on the keyboard.,A rolling list of data and the graphic outline of an arc reactor suit,gold,sits on the wooden floor.,writes but the local finger six points at a poster.,displays on a monitor.,appears to cover an image.,2\n9970,lsmdc3037_IRON_MAN2-17002,9217,\"With a cord around his neck, one guard flails as he dangles from the ceiling. Someone\",\"With a cord around his neck, one guard flails as he dangles from the ceiling.\",Someone,gold,'s face knocking someone out back and he lies with his wand.,arrives and turns with his back against the moving railing.,\"brings the boy to his feet, who carries him to his back and his legs, his elbows on his hips.\",watches security camera videos.,3\n9971,lsmdc3037_IRON_MAN2-17002,9221,\"The drones follow someone inside, crash into continents, and explode. Someone\",\"The drones follow someone inside, crash into continents, and explode.\",Someone,gold,bounces against the pool high above him and dunks him at his feet.,retreating from the tank.,uses an electric tool to shoot a light's energy at the flamethrower.,\"follows someone, who holds two cocked pistols, into the room.\",3\n9972,lsmdc3037_IRON_MAN2-17002,9224,\"Above the Expo grounds, someone flies alone. Someone\",\"Above the Expo grounds, someone flies alone.\",Someone,gold,removes flaming fuse from the tree beside them.,averts his uncertain - pointed bow.,finds notes on the tv.,zooms down and tackles someone in the sky.,3\n9973,lsmdc3037_IRON_MAN2-17002,9231,A message appears onscreen: System Access.. Someone,A message appears onscreen: System Access..,Someone,gold,falls off a small cliff and lands on his back in the stream below.,wields a cat cover.,stares out at the windowed office where an old woman checks someone's desk.,opens his eyes and rushes back to bluish so he'll kill him.,0\n9974,lsmdc3037_IRON_MAN2-17002,9220,A rolling list of data and the graphic outline of an arc reactor suit displays on a monitor. Someone,A rolling list of data and the graphic outline of an arc reactor suit displays on a monitor.,Someone,gold,is sunscreen buckingham convicts leaving a kids hanging under a bridge with a brown face.,lifts the screen around a boot making the first floor up.,flies faster and faster toward the unisphere.,pokes the hook on the fan.,2\n9975,lsmdc3037_IRON_MAN2-17002,9222,\"Someone follows someone, who holds two cocked pistols, into the room. Inside, the two guards\",\"Someone follows someone, who holds two cocked pistols, into the room.\",\"Inside, the two guards\",gold,stare up at the defeated boy who catches him holding a spear under his upper hand.,hang by their necks from the ceiling.,make their way through the break room.,pile to the far corner of the room.,1\n9976,anetv_kkjBLmM6KEg,18559,A woman speaks to the camera while holding a card. A couple,A woman speaks to the camera while holding a card.,A couple,gold,appears on a professional stage under a spotlight and performs a dance routine.,lie apart while knitting and knitting.,holds up a photograph of a man walking behind a camera.,presents a happy cookie pops are shown and they talk to the woman with it.,0\n9977,lsmdc3070_THE_CALL-32949,12099,\"She turns the lock and rests her head, then spots something across the room. She\",\"She turns the lock and rests her head, then spots something across the room.\",She,gold,\"steps forward, her jaw hanging slack.\",fly from the deck.,aims at a shelf.,shuts the door behind him.,0\n9978,lsmdc3070_THE_CALL-32949,12088,\"Now, the killer slides a cassette tape into an old boom box. Someone\",\"Now, the killer slides a cassette tape into an old boom box.\",Someone,gold,tommy spits out the contents and works his way up to the mouth of his tank.,springs someone's chair into the upright position and circles her with his hand on her head.,puts a swiffer towel over the basement roof.,follows someone to a new door and dashes to the wrecked room building.,1\n9979,lsmdc3070_THE_CALL-32949,12087,\"Someone presses it against her until she calms. Now, the killer\",Someone presses it against her until she calms.,\"Now, the killer\",gold,rolls stop by the gate and slips inside.,slides a cassette tape into an old boom box.,swims out toward the camera.,drives forward through a wounded someone.,1\n9980,lsmdc3070_THE_CALL-32949,12080,\"Now, four wheels, the front two large and the back two tiny, roll across a dingy concrete floor. Her right eye\",\"Now, four wheels, the front two large and the back two tiny, roll across a dingy concrete floor.\",Her right eye,gold,scans the parking lot where a unicorn pop is posted on the beach.,sweeps to create a flower shape inside the apartment.,\"shifts as someone lowers the high chair back, creating a gurney.\",lies in a dimly lit corridor surrounded by the hydraulic leaded windows.,2\n9981,lsmdc3070_THE_CALL-32949,12081,\"Gripping the top of her head, he roughly keeps the mask in place. Now, someone\",\"Gripping the top of her head, he roughly keeps the mask in place.\",\"Now, someone\",gold,emerges at the opposite end of a hall shop.,runs away in a national and flurry things.,rides his surfboard down a promontory.,\"cuts off her shirt, stripping her down to her bra.\",3\n9982,lsmdc3070_THE_CALL-32949,12100,\"She steps forward, her jaw hanging slack. Someone\",\"She steps forward, her jaw hanging slack.\",Someone,gold,narrows her eyes as he turns to her and him.,\"breaks through the door and grabs her, covering her mouth.\",comes out from the deck with a cardigan.,leaps back in the passenger seat.,1\n9983,lsmdc3070_THE_CALL-32949,12097,\"He falls back and she frees her other hand. In the hall, someone\",He falls back and she frees her other hand.,\"In the hall, someone\",gold,lies unconscious on someone's bed asleep.,pulls a red one around her neck.,reaches a dead end and backtracks.,hides a handgun in front of her.,2\n9984,lsmdc3070_THE_CALL-32949,12086,\"Later, he holds his hand over her mouth, then replaces it with a gas mask. Someone\",\"Later, he holds his hand over her mouth, then replaces it with a gas mask.\",Someone,gold,presses it against her until she calms.,puts her tinted glasses in another.,slumps backwards and bursts his gun.,bends on another branch as he slowly walks through the grass.,0\n9985,lsmdc3070_THE_CALL-32949,12093,\"Her hair still in her face, someone cringes as someone strokes her cheeks. He\",\"Her hair still in her face, someone cringes as someone strokes her cheeks.\",He,gold,covers his ear with his finger and leaves.,brushes the hair away from her right eye.,walks across the checkered floor.,\"glances into his eyes, as he holds his gaze at the set of farm doors first.\",1\n9986,lsmdc3070_THE_CALL-32949,12079,\"Now darkness obscures our view. Now, four wheels, the front two large and the back two tiny,\",Now darkness obscures our view.,\"Now, four wheels, the front two large and the back two tiny,\",gold,all passenger - side the drapes.,silver signs fade to black.,roll across a dingy concrete floor.,ripped out paper securely in time.,2\n9987,lsmdc3070_THE_CALL-32949,12096,The killer turns away and someone squeezes her left hand free from the wrist restraint. He falls back and she,The killer turns away and someone squeezes her left hand free from the wrist restraint.,He falls back and she,gold,frees her other hand.,scoots away into the open water.,lands in a flurry of dust.,watches the men go.,0\n9988,lsmdc3070_THE_CALL-32949,12084,\"Now, someone lowers her head back over the lip of the sink and sprays down her hair. As he massages her scalp with shampoo, he\",\"Now, someone lowers her head back over the lip of the sink and sprays down her hair.\",\"As he massages her scalp with shampoo, he\",gold,sees his staring doe eye.,pretends to rain her hands coming down her dress.,keeps his face close to hers.,browses contemporary steps inside the plane.,2\n9989,lsmdc3070_THE_CALL-32949,12082,\"Now, someone cuts off her shirt, stripping her down to her bra. He\",\"Now, someone cuts off her shirt, stripping her down to her bra.\",He,gold,strides toward the nesting - covered apartment.,\"treads cream on someone's stomach, touching his look, half slumps on the counter.\",throws a bag aside then steps back.,removes her sandals and grips her ankles as she pulls away.,3\n9990,lsmdc3070_THE_CALL-32949,12090,\"He Sits beside her, she looks away as he takes a comb off the tray. The disturbed man gently\",\"He Sits beside her, she looks away as he takes a comb off the tray.\",The disturbed man gently,gold,shakes the boy's hand.,lifts the sleeve up around his shoulders.,presses a button on someone's tattoo.,combs her hair in front of her face.,3\n9991,lsmdc3070_THE_CALL-32949,12095,Someone flashes a tight smile as someone stares with a horrified gaze. The killer turns away and someone,Someone flashes a tight smile as someone stares with a horrified gaze.,The killer turns away and someone,gold,\"stalks over to the troll who shoots out, eyes narrowed.\",is leaning over the car.,recoils as he leans over a bloody wall as the truck pulls in.,squeezes her left hand free from the wrist restraint.,3\n9992,lsmdc3070_THE_CALL-32949,12098,\"In the hall, someone reaches a dead end and backtracks. She\",\"In the hall, someone reaches a dead end and backtracks.\",She,gold,pauses and's by us the painted wooden book.,picks up a scaffolding containing a pair of flowers.,\"lands on the bed, then lies with a pillow under one arm.\",\"turns the lock and rests her head, then spots something across the room.\",3\n9993,lsmdc3070_THE_CALL-32949,12101,\"Now, an officer patrols the hive as several workstations lie quiet and vacant. Someone\",\"Now, an officer patrols the hive as several workstations lie quiet and vacant.\",Someone,gold,sits at her desk working a recorder's controls.,slumps to his couch with a crackle of metal.,leads soldiers down a motorboat in a narrow river.,wipes the car with her thumb.,0\n9994,lsmdc3070_THE_CALL-32949,12092,\"Someone tries squeezing her left hand out from the thick restraint strap as someone trims a little of her hair. Her hair still in her face, someone\",Someone tries squeezing her left hand out from the thick restraint strap as someone trims a little of her hair.,\"Her hair still in her face, someone\",gold,seems to glimpse her body's balance.,puts it on the ground.,cringes as someone strokes her cheeks.,sees someone's feigning stare.,2\n9995,lsmdc3070_THE_CALL-32949,12085,\"As he massages her scalp with shampoo, he keeps his face close to hers. Later, he\",\"As he massages her scalp with shampoo, he keeps his face close to hers.\",\"Later, he\",gold,lathers his chest with his clippers and carefully holds up his chest to reveal a dry staring face.,\"puts on his jacket at the end of his bed, and lays a baby bike up onto the sofa.\",\"holds his hand over her mouth, then replaces it with a gas mask.\",'s using a plastic tool as he skims its contents.,2\n9996,anetv_FsXl6whrCWk,680,Two people are sitting on a bean bag chair. A man,Two people are sitting on a bean bag chair.,A man,gold,is drinking from a mug.,is standing in a room holding a handle.,runs around while holding onto a big machine.,gets to their feet and starts pulling off him close with the closing.,0\n9997,anetv_FsXl6whrCWk,679,A man sits behind a desk. Two people,A man sits behind a desk.,Two people,gold,are sitting on mats on two children doing weightlifting.,play table ping pong in front of a window.,sit in a tattoo shop.,are sitting on a bean bag chair.,3\n9998,anetv_FsXl6whrCWk,678,A woman in a black shirt is sitting on a bench. A man,A woman in a black shirt is sitting on a bench.,A man,gold,is dancing on a stage.,is shown explaining a machine called tools.,sits behind a desk.,works in the bathroom.,2\n9999,anetv_aAY_M6M26TI,17935,Two people play a ping pong match in a room. The person,Two people play a ping pong match in a room.,The person,gold,is seen hitting the balls all in his hands.,scores multiple points in the game in a row.,strikes a large ball at the target.,shows the ball inside the base and cheers them on.,1\n10000,anetv_aAY_M6M26TI,14198,A man and woman are inside a house. They,A man and woman are inside a house.,They,gold,are engaged in a game of kickball.,are putting the bike's equipment into the air at the roadside as several other people watch the other leave of bikes.,are looking around at the ice as windows.,are playing a game of table tennis.,3\n10001,anetv_aAY_M6M26TI,14199,They are playing a game of table tennis. They,They are playing a game of table tennis.,They,gold,are engaged in a game of dodgeball.,kick a ball back and forth.,pull the cloth off the table and return to the table.,hit the ball back and forth over the net.,3\n10002,anetv_aAY_M6M26TI,17936,The person scores multiple points in the game in a row. People,The person scores multiple points in the game in a row.,People,gold,lift their hands up until the four of them dive in.,play soccer on the skate field.,take pictures as the two continue to spin.,are seen watching the game.,3\n10003,anetv_aAY_M6M26TI,17937,People are seen watching the game. The lady,People are seen watching the game.,The lady,gold,walks over and begins hitting the ball with the blower as well as others.,put down the lights up their dips and a skirts in entrance will be put out.,puts contacts lens into her eye as well as a guy.,holds the ping pong ball while discussing before she leaves.,3\n10004,anetv_Uj1QtIM8500,12079,A woman is seen speaking to the camera while holding up a contact lens. She,A woman is seen speaking to the camera while holding up a contact lens.,She,gold,continues pushing the crew along her car while turning the lens off.,moves her hands around while still speaking to the camera.,puts contacts of contacts into her hair and shows off her contacts.,puts a contact lens in her eye and jumps down.,1\n10005,anetv_Uj1QtIM8500,11085,A woman is seen speaking to the camera and holding a contact lens. She,A woman is seen speaking to the camera and holding a contact lens.,She,gold,speaks to the camera and begins holding up a contact lens.,smiles at a camera and places two lens in her eye.,moves her hands around while holding onto the lens and leads into her demonstrating how to put one in your eye.,is seen speaking to the camera.,2\n10006,anetv_Uj1QtIM8500,12080,She moves her hands around while still speaking to the camera. She,She moves her hands around while still speaking to the camera.,She,gold,man takes a picture of her and pick it up and removes her key from her hand.,\"her the robe, she starts to hula hoop.\",holds open her eye and puts a contact in her eye.,move to go.,2\n10007,anetv_UCBAyJpXuCw,9689,A man in a black shirt is playing a drum set. A man in a green shirt,A man in a black shirt is playing a drum set.,A man in a green shirt,gold,is talking in front of the microphone and talks.,is talking in front of the camera.,begins talking and holding a harmonica.,plays a guitar at the front of the stage.,3\n10008,anetv_UCBAyJpXuCw,9688,People are on a stage playing instruments. A man in a black shirt,People are on a stage playing instruments.,A man in a black shirt,gold,walks into the room and starts playing another drum.,is playing a drum set.,plays the saxophone again while talking to the camera.,is talking into a microphone.,1\n10009,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1644,4495,Someone's buying clothes at a local shop. He,Someone's buying clothes at a local shop.,He,gold,rolls up the boy's garment as someone approaches him from behind.,\"enters the house ignoring her, turns the second, passes it to her and goes off.\",sets out a blue trash bag.,leads someone through the doorway with two small vibrating toys.,0\n10010,lsmdc3002_30_MINUTES_OR_LESS-920,13937,He sets his cellphone on the table. He,He sets his cellphone on the table.,He,gold,removes his tatty hair.,slides it to someone.,stands and watches from the rack.,puts it onto someone's ear and the boy listens on his radio.,1\n10011,lsmdc0004_Charade-47420,5923,\"The glass is held over the first, magnifying the face. It\",\"The glass is held over the first, magnifying the face.\",It,gold,\"collapses along the floor, everything in low, rust billowing and whipping.\",'s a photo of a young someone.,put his arm around master glass.,is splattered with red foam.,1\n10012,anetv_k_gjsTv-jy8,9183,A person is standing behind a counter putting food onto a tray. They,A person is standing behind a counter putting food onto a tray.,They,gold,put the tray into an oven.,pour down the tray and put them back on the counter.,continue to put the insides and the brush up and using a hand to brush.,are walking putting the mix into a pan and placing the cakes together on the tray.,0\n10013,anetv_k_gjsTv-jy8,9184,They put the tray into an oven. They,They put the tray into an oven.,They,gold,use the cookies around the counter.,take the tray out of the oven and lift cookies onto a plate.,dance in unison.,pick up the carrots and have a recipe roll.,1\n10014,anetv_k_gjsTv-jy8,9185,They take the tray out of the oven and lift cookies onto a plate. They,They take the tray out of the oven and lift cookies onto a plate.,They,gold,get in the mix and put the lights back on.,wash off the mat in the sink.,put the cookies into a oven and go down the fence.,step out of the room.,1\n10015,anetv_je6wJ_Ky5wg,7062,We pan left and see the class without the teacher. The lady in pink in the back right,We pan left and see the class without the teacher.,The lady in pink in the back right,gold,is lost and stops trying.,opens the door and finds an apron.,walks away and the lady throws her back at the pinata.,gets slapped and steps inside.,0\n10016,anetv_je6wJ_Ky5wg,2578,A number of women exercise together using a stepping type of implement. The camera,A number of women exercise together using a stepping type of implement.,The camera,gold,pans slightly to the right.,moves to a large freeway on the left of a large table.,follows the closing in the video with a final stop.,moves the finish line as they do fast stand of different workouts.,0\n10017,anetv_je6wJ_Ky5wg,2579,The camera pans slightly to the right. The camera,The camera pans slightly to the right.,The camera,gold,moves like a sign through the air.,changes to a young man sitting on a large kayak.,pans back slightly to the left.,shows another girl throwing darts on a table at the bottom.,2\n10018,anetv_je6wJ_Ky5wg,7060,A lady in a sports bra leads a glass in aerobics using a exercise step. The instructor,A lady in a sports bra leads a glass in aerobics using a exercise step.,The instructor,gold,raises her am in the air.,drags her into an elliptical as she lifts his hands up and down.,holds up a piece of exercise machine and produces a stick.,reaches for the dance and dances around before continuing to speak.,0\n10019,anetv_je6wJ_Ky5wg,7061,The instructor raises her am in the air. We,The instructor raises her am in the air.,We,gold,\"her face powdered, she puts a wreath on the top of her purse, sits it near, and brings it to the poker\",\"the motor, someone walks her and.\",to the lyrics of the band routine as someone plays the drums.,pan left and see the class without the teacher.,3\n10020,anetv_Dzj5X11anrk,11829,We see an animated opening screen. We,We see an animated opening screen.,We,gold,see a person talking to the camera.,see an cartoon being moldy and pray.,see a boy on a horse standing side by side on the stage.,\"see trees, leaves, and mulch.\",3\n10021,anetv_Dzj5X11anrk,4331,Mulch is poured around the tree. then mulch,Mulch is poured around the tree.,then mulch,gold,have been chopped up on top of the tall christmas tree.,are placed inside the cutting piece.,are covered in mulch and.,is then spread evenly around the tree.,3\n10022,anetv_Dzj5X11anrk,4330,Two woman and man start scraping a dirt away from a tree. mulch,Two woman and man start scraping a dirt away from a tree.,mulch,gold,is poured around the tree.,gives used to repair a snow angel on the roof.,are seen floating on the branches above the fence.,crashes over the orange on the ground.,0\n10023,anetv_Dzj5X11anrk,11830,A black pot contains mulch and three people are putting mulch around the base of a sapling. We,A black pot contains mulch and three people are putting mulch around the base of a sapling.,We,gold,see the ending credits screen.,are zooms in and through and taking the left tool.,\"is two of the in between placing tomatoes of pasta, after they get a venom from it and take off the paper.\",\", the man demonstrates to log it on fire after taylor while he then proceeded to cut.\",0\n10024,anetv_b_iUgvzb1-0,13874,\"A woman bends forward extending her left left arm on front and raising her leg up while having the right hand over her shoulder. Then, the woman\",A woman bends forward extending her left left arm on front and raising her leg up while having the right hand over her shoulder.,\"Then, the woman\",gold,turns to the left and throw a ball and spin her body.,\"dance on the floor, who does slytherins dance with several others.\",dances in the wrestling studio with a wrestling roll on her arm.,is doing her hand with the rod while she stands and stops while the woman loudly laughs.,0\n10025,anetv_xmStXpxlG_I,6055,A toddler hits a pinata with a bat while it is spinning. A person,A toddler hits a pinata with a bat while it is spinning.,A person,gold,is seen swinging bounces on the grass.,is near the boy showing an arm.,spins a small pinata in a foam.,plays hurling a blue ball into the bag on the ground.,1\n10026,lsmdc3032_HOW_DO_YOU_KNOW-2239,10937,Someone picks up her menu and someone nods. Someone,Someone picks up her menu and someone nods.,Someone,gold,does a few sit ups and tells the proper information about the same.,\"comes along the aisle, stops someone, and goes to her.\",edges his chair away and stirs.,\"rolls her eyes, then studies her menu.\",3\n10027,anetv_cA2ZLOZcCyc,9304,A person is riding the bike on the dirt road. The biker,A person is riding the bike on the dirt road.,The biker,gold,jumped into high ramps.,is driving a red car and small dog is riding a car.,falls onto the back of the vehicle to a right to get up the hill.,does several tricks on their skateboards.,0\n10028,anetv_oS7Twj3Pou0,11444,A person walks in the street holding an umbrella. A woman wearing a hooded shirt,A person walks in the street holding an umbrella.,A woman wearing a hooded shirt,gold,sits suspended across the street.,jumps near the man.,is playing his skateboard.,continues sweeping the floor.,1\n10029,anetv_oS7Twj3Pou0,1027,Man is carrying an umbrella that is brown in color. Woman,Man is carrying an umbrella that is brown in color.,Woman,gold,begins to wash the car.,are sitting in a sunny park in the green grassy grass.,in a gray is sitting on a small chair in a garden.,is holding a black umbrella.,3\n10030,anetv_oS7Twj3Pou0,11443,A man wearing Arab clothes talks on front a crow while holding a large umbrella. A person,A man wearing Arab clothes talks on front a crow while holding a large umbrella.,A person,gold,runs on a deck with a person on the right.,takes a ties tied against a horse and is attached to a rope.,walks in the street holding an umbrella.,reaches over his knees on the sheets.,2\n10031,anetv_ScWdvpS6epQ,6344,People are standing on a blue mat. They,People are standing on a blue mat.,They,gold,\"kick their legs off, trying to get off of the horse.\",sits on a bench.,begin doing a cheerleading routine on the mat.,hoodie and a white shirt is sitting next to a woman standing in front of her to be recording her and giving her a mouthpiece,2\n10032,anetv_CbfgZlo0Ut4,15970,\"A man talks inside a car dealer. After, a car\",A man talks inside a car dealer.,\"After, a car\",gold,exits a car wash.,wash a lot of presented cards.,is seen in a plaza area where a girl alongside part of the company.,driving and after the man with a new bottle.,0\n10033,anetv_CbfgZlo0Ut4,15971,\"After, a car exits a car wash. A crew of people\",\"After, a car exits a car wash.\",A crew of people,gold,ride the camels along the sidewalk.,clean a car by hand.,are inside the facility.,brushes her tires out of the car.,1\n10034,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19283,Where high - ranking Officers of the Third Reich stand flanking someone as they oversee the rally. Someone,Where high - ranking Officers of the Third Reich stand flanking someone as they oversee the rally.,Someone,gold,sits staring down at the wall with both hands clasped behind fists.,\"follows someone, who sets people on the crowd, while someone stands.\",\"is walking away in an open area, background of torches, vehicles, nazi officers.\",runs across the launch and lands but falls back in slow motion and falls to the platform.,2\n10035,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19291,They move off and almost run headlong into someone and his entire entourage coming down from the Podium. 50 kids,They move off and almost run headlong into someone and his entire entourage coming down from the Podium.,50 kids,gold,push their autograph books for someone's signature.,do to open someone's tank taking bayonet belts.,run into the chic building that slanted all that direction.,huddle behind the row of drones dancing bystanders.,0\n10036,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19292,50 kids push their autograph books for someone's signature. Someone,50 kids push their autograph books for someone's signature.,Someone,gold,starts to answer the front door.,pauses to sign them.,looks away from the young girl.,\"rides close behind someone, who wears a helmet.\",1\n10037,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19284,\"Someone is walking away in an open area, background of torches, vehicles, Nazi Officers. Someone\",\"Someone is walking away in an open area, background of torches, vehicles, Nazi Officers.\",Someone,gold,circles someone behind his desk.,pushes someone against a column and begins to search her clothing for the diary.,stop in a building full view of a statue.,collects supplies in a dark driveway.,1\n10038,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19296,Someone's motorcycle pulls up to the main terminal. A Plainclothes Agent,Someone's motorcycle pulls up to the main terminal.,A Plainclothes Agent,gold,distributes leaflets bearing someone's picture to people inside the terminal.,spots someone's emblazoned with an invisible force.,approaches the foggy structures.,moves up to behind grey desk.,0\n10039,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19285,Someone pushes someone against a column and begins to search her clothing for the Diary. He,Someone pushes someone against a column and begins to search her clothing for the Diary.,He,gold,pulls the book from someone's pocket.,she picks through the book.,looks irritated and uses her handheld recorder.,\"throws a candle at someone and bows his head, as the fireballs explode behind her.\",0\n10040,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19282,Someone wears the uniform of a Nazi Soldier. He,Someone wears the uniform of a Nazi Soldier.,He,gold,cannons assault rifles.,\"strides on a cable under a huge, wooden bridge and stares into space.\",is now buttoning up the tunic - - which happens to be several sizes too big.,lifts the glass out of her files.,2\n10041,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19288,Someone releases her and backs away. She,Someone releases her and backs away.,She,gold,hits the man down the platform toward someone's face.,rips from her skirt.,looks at him with a lover's pain.,leaps down after the noose.,2\n10042,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19294,\"Someone breaks the spell by taking the Grail Diary from him, opens it to the first page and signs his autograph. He\",\"Someone breaks the spell by taking the Grail Diary from him, opens it to the first page and signs his autograph.\",He,gold,puts his hands in it.,\"clears the page, studies it closely, then scans the page.\",\"wins the same battle with his wand, and over the other team.\",hands it back and moves on.,3\n10043,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19287,His hands fly to her neck. Someone,His hands fly to her neck.,Someone,gold,releases her and backs away.,pensively tears the jello out.,picks up a glass of champagne and puts it in a pocket.,gives him a passionate kiss and kisses her hand.,0\n10044,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19297,A Plainclothes Agent distributes leaflets bearing someone's picture to people inside the terminal. Someone,A Plainclothes Agent distributes leaflets bearing someone's picture to people inside the terminal.,Someone,gold,leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder.,flashes himself to eye the photo as he passes between pedestrians.,walks in the sweaty officers' office.,touches his cheek again.,0\n10045,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19289,She looks at him with a lover's pain. He,She looks at him with a lover's pain.,He,gold,holds it over his eyes for a moment.,moves over to someone.,lowers his head and sits by his chair.,\"claps a hand, then jumps in place.\",1\n10046,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19286,He pulls the book from someone's pocket. His hands,He pulls the book from someone's pocket.,His hands,gold,are led out to the patio line.,continue to curl around someone's body.,run out to its side.,fly to her neck.,3\n10047,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19298,Someone leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder. They,Someone leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder.,They,gold,begin to walk toward the boarding gates.,\", someone gets a scrap of paper from someone's wedding box and hangs it on a piece of paper.\",\"pauses, going blankly into space where someone skids to a stop beside his bed and leans his head on his desk.\",\"his full breath, a bearded man and red woman curls his fingers around his weary muscular jaw, and aims out the window.\",0\n10048,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19293,Someone pauses to sign them. Someone,Someone pauses to sign them.,Someone,gold,shakes his head again.,sits on the fire.,glares at the newcomers.,looks someone's way.,3\n10049,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19295,He hands it back and moves on. Someone's motorcycle,He hands it back and moves on.,Someone's motorcycle,gold,helps him into the water and rides in behind the steep cliffs.,pulls up to the main terminal.,follows him below the truck where someone removes its roaring wheels.,is now parked circled by bushes and various rocks.,1\n10050,lsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19290,He moves over to someone. They,He moves over to someone.,They,gold,move off and almost run headlong into someone and his entire entourage coming down from the podium.,walk through in front of the house.,exit up a tunnel.,spot her bad husband.,0\n10051,anetv_Jd3D2d-RwL0,4930,A close up of a leaf blower is shown followed by the camera looking around the area. A hand,A close up of a leaf blower is shown followed by the camera looking around the area.,A hand,gold,walks in and continuing to smoke while two of them standing watch.,takes out a rake and cuts leaves.,is then seen starting the machine and pushing the machine around the yard.,is seen followed by a person combing her hair.,2\n10052,anetv_Jd3D2d-RwL0,4932,The man turns off the machine and looks around the front while pointing to the top of the machine. The camera pans around the machine and the man,The man turns off the machine and looks around the front while pointing to the top of the machine.,The camera pans around the machine and the man,gold,is shown giving a thumbs up.,continues to walk into the machine.,holds the machine upright.,stepping up and down on the machine again.,0\n10053,anetv_Jd3D2d-RwL0,4931,A hand is then seen starting the machine and pushing the machine around the yard. The man,A hand is then seen starting the machine and pushing the machine around the yard.,The man,gold,goes back down and continues to hit the leaves.,turns off the machine and looks around the front while pointing to the top of the machine.,then sits up and adjusts the machine.,continues to ride the bike back and fourth while the camera captures his movements.,1\n10054,anetv_YQfJWGJ75Pk,133,\"The man then goes to the right side of the dresser and sprays there, then goes back to the front, then the top, and then on the left side. The dresser the man is spraying\",\"The man then goes to the right side of the dresser and sprays there, then goes back to the front, then the top, and then on the left side.\",The dresser the man is spraying,gold,is on a moving platform that is on wheels.,the window with his rag doing with the sponge and shines the waves.,something with his finger paint on the earlobe.,\"the coverage bag and talks, then the man talks and spits up the hose.\",0\n10055,anetv_YQfJWGJ75Pk,17586,A man demonstrates how to spray varnish a chest of drawers using a spray nozzle varnish hose. A man,A man demonstrates how to spray varnish a chest of drawers using a spray nozzle varnish hose.,A man,gold,is cleaning a mug while a woman in a pink sweatshirt gets in a cart.,lifts a blue towel off the chair and begins to lay a rug on the floor.,\"stands in his kitchen, shaving her legs whipping brown.\",sprays a chest of drawers with varnish while standing barefoot outdoors.,3\n10056,anetv_YQfJWGJ75Pk,132,A man is standing with his legs apart and is holding a sprayer in his right hand and spraying a dresser with many drawers as a man walks past him and looks at what he's doing. The man brings his legs closer together while still spraying and he,A man is standing with his legs apart and is holding a sprayer in his right hand and spraying a dresser with many drawers as a man walks past him and looks at what he's doing.,The man brings his legs closer together while still spraying and he,gold,is about to off his feet instead.,\"looks toward the camera as he speaks to the camera, scrubbing his face with trembling hands.\",begins closing the drawers.,\"smiles and takes his high jump into the air and inserts are first, in slow motion.\",2\n10057,anetv_YQfJWGJ75Pk,17587,The man covers the entire chest from the very top to the bottom with the spray varnish which is coming from a long hose attached to a metal pump. The man,The man covers the entire chest from the very top to the bottom with the spray varnish which is coming from a long hose attached to a metal pump.,The man,gold,finishes spraying the chest and hangs the nozzle up and walks away as the camera focuses on the finished product.,takes the substance from the boy in the bath.,grabs the boot and begins to blow over the roof that is hanging from the end wall.,\"removes something from his pocket and slips into the car, creating a bigger time above on the side of the car.\",0\n10058,anetv_3PiN6rDgg_E,16089,The camera shows different makeup pieces with accompanying descriptions cards in between cutting back to the woman talking. The woman,The camera shows different makeup pieces with accompanying descriptions cards in between cutting back to the woman talking.,The woman,gold,applies the clamp to her head and continues decorating the edges of the paper.,\"begins to apply some of the makeup to her face, including lips and to her nails via nail polish.\",continues talking extensively about the entire ward and people working at a table to have two other ladies.,continues speaking to the camera while next to the elliptical and showing a picture about a storage channel.,1\n10059,anetv_3PiN6rDgg_E,16090,\"The woman begins to apply some of the makeup to her face, including lips and to her nails via nail polish. The woman\",\"The woman begins to apply some of the makeup to her face, including lips and to her nails via nail polish.\",The woman,gold,uses some of the makeup to make hair streaks in another persons hair.,continues talking and looks out followed by putting his hair well.,\"uses a paintbrush to form the powdered spray, which wraps around the eyelids of the camera window.\",starts blow drying her hair by giving it to her ear.,0\n10060,anetv_3PiN6rDgg_E,16088,\"A woman demonstrates how to use one container of powdered pigment to make many different hair, nail, and face makeup products. A woman\",\"A woman demonstrates how to use one container of powdered pigment to make many different hair, nail, and face makeup products.\",A woman,gold,peels a partial lens into her hand on a silver tube.,is then shown brushing the hair of the dog with white combs that used to brush by a model's nails.,\"holds a matte towel on her arm, shaves it, then polishes its smooth arc across the side of the table.\",talks to the camera in front of a counter filled with makeup.,3\n10061,anetv_gA0m7YUH408,11116,A man hits a ball with a club. He,A man hits a ball with a club.,He,gold,throws the balls down onto the table.,man serves the ball.,hits the ball with his stick.,puts his hands in the air to celebrate.,3\n10062,anetv_gA0m7YUH408,2289,A young man is standing bent over on a grassy field. The man hits a croquet ball with a mallet and it,A young man is standing bent over on a grassy field.,The man hits a croquet ball with a mallet and it,gold,falls off his feet.,strikes a wooden stick.,'s caught in a fling.,'s a big hole.,1\n10063,anetv_gA0m7YUH408,11117,He puts his hands in the air to celebrate. People,He puts his hands in the air to celebrate.,People,gold,see the man standing in a black shirt case talking.,spins his bat around and makes a dash for the helmet from the shoulders of his opponent.,are walking on the grass behind him.,\"see him get to see her, but his dog is standing by him.\",2\n10064,anetv_gA0m7YUH408,2290,The man hits a croquet ball with a mallet and it strikes a wooden stick. The man,The man hits a croquet ball with a mallet and it strikes a wooden stick.,The man,gold,rolls the bow and hits it repeatedly.,celebrates by repeatedly raising his hands in victory.,throws the ball and throws it into a white ball.,points to a fence in the corner with a racket while staying near the window.,1\n10065,anetv_8gUKEh27AFM,15037,A man stands behind a cage. He,A man stands behind a cage.,He,gold,\"stops the camera and stands, resting on a hand top.\",is standing on a small circle.,gets a tools into his mouth.,bends to pick up the top tiles.,1\n10066,anetv_8gUKEh27AFM,14523,A man swings a ball on a chain around his body and throws it behind him. A man in a blue shirt,A man swings a ball on a chain around his body and throws it behind him.,A man in a blue shirt,gold,jumps through the air like more discus.,stands behind a fence behind him.,lifts the pole and walks away to hit it professionally.,runs in a path with some males.,1\n10067,anetv_8gUKEh27AFM,15039,He has a ball on a rope. He then,He has a ball on a rope.,He then,gold,rides the log playing an game.,spins and throws the ball.,throws it over the net.,rubs it over the ball.,1\n10068,anetv_OMRu1rPRBHo,7185,A man is talking to another man in a parking lot. They,A man is talking to another man in a parking lot.,They,gold,lift shingles on the ground.,cheer him on while others watch from below.,take tubes to the top of a hill.,parked cars in the front of each other by three cars and driving.,2\n10069,anetv_OMRu1rPRBHo,7186,They take tubes to the top of a hill. They then,They take tubes to the top of a hill.,They then,gold,ride off of tubing down a rapid river.,tube down the snowy hill.,get down on tubes and start bouncing down a mountain together.,ride him on the hill.,1\n10070,anetv_OMRu1rPRBHo,15609,People are walking around on the snow. People,People are walking around on the snow.,People,gold,pull their tubes behind the horses and one of them starts the building.,are taking cars from the drive behind the car.,are going down the hill of snow in tubes.,are watching a game of beach soccer.,2\n10071,anetv_OMRu1rPRBHo,15610,People are going down the hill of snow in tubes. People,People are going down the hill of snow in tubes.,People,gold,are riding on tubes in a parking lot.,go down a snowy hill.,are going down the mountain into the tubes.,are coming up the hill attached to a rope.,3\n10072,anetv_Uw_4gKpmAhI,18901,The other contractor is breaking an existing wall in the living room. The entire house,The other contractor is breaking an existing wall in the living room.,The entire house,gold,is under renovation with furniture and boxes lying around the house with dust.,is moved by the father watch and points a finger at the camera.,is pictured in white and the cuting glass.,is covered with shaving cream.,0\n10073,anetv_L67RSiR2X78,9013,A man is waxing and buffing his skies. He,A man is waxing and buffing his skies.,He,gold,goes to see remembrall.,are engaged in a game of polo.,rubs wax over the ski again.,are on bow enjoying a demonstration.,2\n10074,anetv_L67RSiR2X78,9014,He rubs wax over the ski again. He,He rubs wax over the ski again.,He,gold,uses the buffer on the ski again.,show how to apply wax to tape and put it on a ironing board.,breaks and gives the paper to the rope player.,wets the wax seals and cleans out it with his fingers.,0\n10075,anetv_L67RSiR2X78,9017,He is buffing it with a fine buffer. He,He is buffing it with a fine buffer.,He,gold,ripping the legs back turns away before throwing him out.,\"spins around, looking out over the room with the ferry.\",fills the cover with sand.,is done with buffing the ski.,3\n10076,anetv_L67RSiR2X78,18230,Man is showing how to wax skis with a machine. with a sponge the man,Man is showing how to wax skis with a machine.,with a sponge the man,gold,is using a tool to remove tiles.,is putting wax in the ski and then is polishing it.,uses a measuring tape to polish the white piece of foam.,uses the dry wax to assemble a hanger on the center of the counter.,1\n10077,anetv_L67RSiR2X78,9012,An advertisement for snowculture is on the screen. A man,An advertisement for snowculture is on the screen.,A man,gold,is waxing and buffing his skies.,is cleaning up a kitchen sink.,is shown being an airplane.,throws the pole into a lane.,0\n10078,anetv_L67RSiR2X78,9016,He is scrapping off the excess wax from the ski. He,He is scrapping off the excess wax from the ski.,He,gold,is buffing it with a fine buffer.,shaves the items in different clothing and smiles.,shows the same process as he skiis.,pushes the chains to secure the snowy tire.,0\n10079,anetv_L67RSiR2X78,9015,He uses the buffer on the ski again. He,He uses the buffer on the ski again.,He,gold,\"is so strong that he falls and he is right, and the camera moves angles along the scene.\",grips his sprayer better.,continues up the path until his legs are bare.,is scrapping off the excess wax from the ski.,3\n10080,lsmdc1010_TITANIC-77002,5052,Someone stands behind her grandmother as someone climbs out of her wheelchair. The crew,Someone stands behind her grandmother as someone climbs out of her wheelchair.,The crew,gold,watches someone as she shuffles to a video monitor displaying footage of the titanic wreck.,\"travels through the night, holds her father's eyes as he takes the seat towards her.\",places a piece of the cases together.,\"backs out, dragging a massive shield.\",0\n10081,lsmdc1010_TITANIC-77002,5054,\"On the video monitor, grayish growth covers the window's ornate scrollwork. Someone\",\"On the video monitor, grayish growth covers the window's ornate scrollwork.\",Someone,gold,lies at work and watches more stonily while people stare ahead and stare hard.,climbs to the top on the platform and stares down in the sleeping gorilla.,\"dyes her hands from the infant, then faces the open screen.\",places her hands over her mouth.,3\n10082,lsmdc1010_TITANIC-77002,5057,Someone switches on a tape recorder as he sits across from someone. Someone,Someone switches on a tape recorder as he sits across from someone.,Someone,gold,gently puts a light beneath her reflection.,stacks a stack of papers onto a nearby desk.,looks around a bit as he nears for class.,\"grins, then nods.\",3\n10083,lsmdc1010_TITANIC-77002,5053,The crew watches someone as she shuffles to a video monitor displaying footage of the Titanic wreck. Someone,The crew watches someone as she shuffles to a video monitor displaying footage of the Titanic wreck.,Someone,gold,\"blinks and inhales sharply as the door with the ornate, leaded glass window comes into view.\",restarts their lifeboat up in the sunken announcers position.,crouches down from the ship's railing just below the platform as the engineer smiles.,glances around the controls and sees a boat wheel down.,0\n10084,lsmdc1010_TITANIC-77002,5056,Someone turns away from the monitor and returns to her wheelchair. Someone,Someone turns away from the monitor and returns to her wheelchair.,Someone,gold,\"watches with an embarrassed smirk, then slips as she hands him her move.\",switches on a tape recorder as he sits across from someone.,\"someone's case, someone removes someone's business hair and steps up onto the floor situated on the floor floor.\",'s sitting on a big mat next to her and keeps holding the strap strapped to her face.,1\n10085,anetv_QUJXOFPJ_YI,17540,Three people play racquetball really badly. They,Three people play racquetball really badly.,They,gold,do not have court skills or an awareness of how the ball will bounce.,throw the ball on the game croquet between two pins.,bounce a ball and falls towards a goal in a large net.,is engaged in a game of fencing.,0\n10086,anetv_QUJXOFPJ_YI,5464,They are hitting a ball against the wall with racquets. They,They are hitting a ball against the wall with racquets.,They,gold,are in a game of water polo.,continue playing as a man joins in.,engage in roller blading.,are involved in a game of volleyball.,1\n10087,anetv_QUJXOFPJ_YI,5463,Two girls are inside a gym in a building. They,Two girls are inside a gym in a building.,They,gold,are doing a choreography on the couch.,are hitting a ball against the wall with racquets.,walk down he first landing on a sidewalk.,are standing in front of a counter and they are jumping over a stack of mats in front of them.,1\n10088,lsmdc1004_Juno-6700,13145,\"He brings the up to his neck. With his hands round her waist, her belly touching his, she\",He brings the up to his neck.,\"With his hands round her waist, her belly touching his, she\",gold,\"closes her eyes and rests her head on his chest, as they slowly sway together.\",tosses them back to the ceiling and backs away.,folds his pants tightly across her chest.,\"goes along side to side with her hands in his belt pockets, running over to him.\",0\n10089,anetv_5yqHTGQm2B0,12814,They are walking on the pogo sticks and jumping a bit too. They,They are walking on the pogo sticks and jumping a bit too.,They,gold,come up and then cut their grass and can.,man in blue shorts ties the hoop back to the man releases the boy and the camera follows as the woman performs higher too.,perform trick and a man is skating fast down.,try to get the ball in the hoop and continue bouncing around the court.,3\n10090,anetv_5yqHTGQm2B0,12815,They try to get the ball in the hoop and continue bouncing around the court. A man in green,They try to get the ball in the hoop and continue bouncing around the court.,A man in green,gold,begins to kick the ball into the circle.,does a flip in the air and shoots the ball into the hoop.,does a different trick and begins on how to properly make the pit.,walks with a ball on the net.,1\n10091,anetv_5yqHTGQm2B0,12813,Men on these robotic looking pogo sticks are playing basketball inside of a court. They,Men on these robotic looking pogo sticks are playing basketball inside of a court.,They,gold,are playing a game of soccer on the croquet court.,are walking on the pogo sticks and jumping a bit too.,\"are playing a game of war behind shambling kids, and fighting blankets of the ball.\",are in seashore playing the game together.,1\n10092,anetv_gDexNGeZln0,18435,A person is seen speaking to the camera and leads into a close up of the ground and another person sitting on the side. More shots,A person is seen speaking to the camera and leads into a close up of the ground and another person sitting on the side.,More shots,gold,are shown of logs and sticks as well as a fire pit and a boy cutting a stick.,are shown of people getting ready and sitting down on a raft.,are shown of people riding out and around in intertubes in a large pit with her and various others.,are shown of people putting plaster on the roof as well as lighting and presenting the camera.,0\n10093,anetv_gYvYh9aMohY,19881,\"Then, Another boy is jumping rope as well and swirling it around and he eventually throws his rope. There\",\"Then, Another boy is jumping rope as well and swirling it around and he eventually throws his rope.\",There,gold,\", the man finishes his routine and finishes the rope with the rope in his hand.\",is a larger group of 5 that jump rope in sync and do a lot of cool tricks.,\", he does it again then walks away.\",\", the rope has entered the obstacle perfectly and is followed by the boy jumping around.\",1\n10094,lsmdc3083_TITANIC2-38930,3170,Someone stands behind her grandmother as someone climbs out of her wheelchair. The crew,Someone stands behind her grandmother as someone climbs out of her wheelchair.,The crew,gold,stoops over a tiny van as the driver opens its car door.,watches someone as she shuffles to a video monitor displaying footage of the titanic wreck.,manmade the heavy water stamps the contents until he sees a large spill crowd around the ship.,set up with her long tow pole.,1\n10095,lsmdc3083_TITANIC2-38930,3173,Someone turns away from the monitor and returns to her wheelchair. Someone,Someone turns away from the monitor and returns to her wheelchair.,Someone,gold,looks nervously at someone.,\"joins the nerds on the floor, then lowers her arms without taking her purse.\",switches on a tape recorder as he sits across from someone.,turns away with her eyes closed.,2\n10096,anetv_wAt_OsQe-qM,18394,A man is talking inside a room in a house. He,A man is talking inside a room in a house.,He,gold,is holding a flower under the handle.,is holding a stick and violin.,puts some clothes into a bucket.,goes to a workshop and places on the scale.,1\n10097,anetv_wAt_OsQe-qM,18395,He is holding a stick and violin. He then,He is holding a stick and violin.,He then,gold,returns to playing the flute.,spins himself in circles.,demonstrates how to play the violin.,begins playing the drums in place.,2\n10098,anetv_pON-g7IJKEY,6089,There is a Disney princess pinata hanging from a tree. The kids,There is a Disney princess pinata hanging from a tree.,The kids,gold,are enjoying hitting the pinata with a blue stick.,are under several tables.,are playing poker on the ground and cheer her across.,\"are playing croquet nonchalantly, trying to reach a goal.\",0\n10099,anetv_pON-g7IJKEY,6088,There are many kids ranging from toddlers to teenagers enjoying themselves at a backyard birthday party. There,There are many kids ranging from toddlers to teenagers enjoying themselves at a backyard birthday party.,There,gold,is a disney princess pinata hanging from a tree.,is a different person than the large group of some children riding in their lunch.,are parents playing with the students at the beach playground in the backyard.,are several and people on lights.,0\n10100,anetv_pON-g7IJKEY,6090,The kids are enjoying hitting the pinata with a blue stick. they kids,The kids are enjoying hitting the pinata with a blue stick.,they kids,gold,are side to side playing with the kids.,take turns to hit the pinata.,\"start throwing one of the limbs high in the air, trying not to pick it up.\",\"continue laughing, trying to keep the poles away and unable to hit the pinata away from the other.\",1\n10101,anetv_pON-g7IJKEY,6091,They kids take turns to hit the pinata. A little girl dressed in a purple skirt,They kids take turns to hit the pinata.,A little girl dressed in a purple skirt,gold,tries to tear the pinata by hitting it hard with the stick.,throws the ball to another boy playing it as the person is missing.,are running around talking.,\"throws the long, closed bat.\",0\n10102,anetv_6lIi6-Y6q10,12471,He slices some lemons and puts the lemons along with a cherry on a toothpick. Then he,He slices some lemons and puts the lemons along with a cherry on a toothpick.,Then he,gold,finishes the finished process and manages to poke another light into the dough then stir it with.,\"pours three different liquors in a lemon, added vodka and grape tomatoes to stir it into a small cup.\",puts a slice of cucumber that is cut lengthwise into the cocktail.,adds onions and tomato juice and turns right before he loses the jet to add on the lemon.,2\n10103,anetv_6lIi6-Y6q10,12470,He puts some ice cubes in a talll glass and then adds some Pimms in it. He,He puts some ice cubes in a talll glass and then adds some Pimms in it.,He,gold,mixes the speed of the pasta and still looks in the pan.,chop the beers in the nuts then in the water and the man attempts to jam the sandwich into it.,slices some lemons and puts the lemons along with a cherry on a toothpick.,lifts the glass out into the bottom of the martini glass.,2\n10104,anetv_RnRUwLtR33g,5733,The lady jumps rope on the pavement. The lady,The lady jumps rope on the pavement.,The lady,gold,gets on the pommel horse again.,struggles to bring it up on the water.,smiles and walks away.,swings the rope to the side.,3\n10105,anetv_RnRUwLtR33g,1596,\"A young girls talks into the camera and demonstrates several jump rope stunts and techniques from an outdoor paved park ground, surrounded by houses and foliage. The girl\",\"A young girls talks into the camera and demonstrates several jump rope stunts and techniques from an outdoor paved park ground, surrounded by houses and foliage.\",The girl,gold,is shown in the class smiling for pictures as people continue run across the walls while others are in the background.,starts to meet with each of them filming squats are shown in front of them.,is taking turns in an indoor cafeteria with a group of judges.,talks to the screen and smiles while the camera has a close up.,3\n10106,anetv_RnRUwLtR33g,1597,The girl talks to the screen and smiles while the camera has a close up. The girl,The girl talks to the screen and smiles while the camera has a close up.,The girl,gold,laughs really trying to keep the composure moving off.,begins to jumprope on the park ground exhibiting rope work and leg work within the techniques.,\"bends, and takes plaster tools and begins braiding the girl's braid.\",moves her hands behind and over her body while talking to the camera.,1\n10107,anetv_RnRUwLtR33g,5732,A lady speaks while outside on a windy day. The lady,A lady speaks while outside on a windy day.,The lady,gold,shows happy pigtails stepping up and down down the street.,talks to the camera operator and a butterfly knife.,tries a small bit.,jumps rope on the pavement.,3\n10108,anetv_lJRwUE12drE,11176,The gymnast then moves himself around the bars and jumps down afterwards. Another man,The gymnast then moves himself around the bars and jumps down afterwards.,Another man,gold,follows his opponent to two dance while flipping one another while stopping to lift his arms up and kick back.,slows down a little bit and then kicks himself.,joins the staircase leading onto a slack line.,steps up to the bars and attempts to spin around.,3\n10109,anetv_lJRwUE12drE,11175,People are seen walking around a gymnasium and leads into one standing in between bars. The gymnast then,People are seen walking around a gymnasium and leads into one standing in between bars.,The gymnast then,gold,moves himself around the bars and jumps down afterwards.,balances on jump ropes by teammates and people cheer them on.,runs performing gymnastics once again and eventually jumping up and down on a bridge facing others.,perform several tricks with after posing around themselves while walking by people.,0\n10110,lsmdc0029_The_Graduate-64175,3447,He undoes the zipper at her neck. She,He undoes the zipper at her neck.,She,gold,checks his pulse.,turns and looks at him.,stares after her apron then places her hand on the front of his own thigh.,climbs in and brushes past them.,1\n10111,anetv_CtQ25XC45As,136,The kids then play a game of dodgeball against one another. One team,The kids then play a game of dodgeball against one another.,One team,gold,scores a goal when another poses and many others watch on the sidelines.,hits a goal and hits one of the pucks.,wins and cheers with one another as they line up to receive a trophy.,dives into the net.,2\n10112,anetv_-DGsqL65o4k,9627,A car is seen stuck in some water while another car drive past with a person riding skis on the back. The camera,A car is seen stuck in some water while another car drive past with a person riding skis on the back.,The camera,gold,shows several pictures of people riding down a steep hill on tubes going down the hill.,captures more videos of people riding the leaves staring back towards the camera.,captures the water skier from several angles as the car flies past others.,pans to a group of men shoveling the man's fur and a reporter fighting with tires.,2\n10113,anetv_-DGsqL65o4k,1558,Two people are standing on the side walk of a flooded street. a car,Two people are standing on the side walk of a flooded street.,a car,gold,is parked in a busy street.,is one of them watching them.,speeds through the street.,drives with a man who is getting down into a boat.,2\n10114,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26041,19245,\"She shoves the statue, which knocks into another, creating a domino effect that topples an entire row. As someone reaches for his sword, someone\",\"She shoves the statue, which knocks into another, creating a domino effect that topples an entire row.\",\"As someone reaches for his sword, someone\",gold,pulls herself up and immediately goes to collapsing.,gently pulls the boy's body towards the rather human child.,speeds down a steep run past a dead soldier.,\"kicks it away, hauls him to his feet and pulls him close.\",3\n10115,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26041,19244,\"Chasing him, someone halts at an intersection, then instinctively turns. Someone\",\"Chasing him, someone halts at an intersection, then instinctively turns.\",Someone,gold,starts the tiger straight curving across the top of a bluff.,crouches behind a statue and holds up his phone.,remembers its eyes scanning captivated areas together.,can not notice the van arrives.,1\n10116,anetv_MYzG-TsW8w8,2849,Four men are outside in a field throwing a baseball to each other. A ball then rolls into a pond and a little boy,Four men are outside in a field throwing a baseball to each other.,A ball then rolls into a pond and a little boy,gold,grabs it and throws it.,rushes onto an arm.,runs out into the opposite side.,grabs the unmasked boy in her side.,0\n10117,anetv_MYzG-TsW8w8,2851,The scene moves to a playground and the boys begin going down the slide. More kids are shown and they,The scene moves to a playground and the boys begin going down the slide.,More kids are shown and they,gold,begin to bump into each other.,\"are doing various activities as they play such as the see saw, monkey bars and swings.\",fall off their socks.,end up doing flips and tricks.,1\n10118,anetv_MYzG-TsW8w8,2850,A ball then rolls into a pond and a little boy grabs it and throws it. The scene moves to a playground and the boys,A ball then rolls into a pond and a little boy grabs it and throws it.,The scene moves to a playground and the boys,gold,are playing a game with one another using as pretend boys how to score.,mill around the yard several times.,are both walking on.,begin going down the slide.,3\n10119,anetv_ZsqjU0X3mxY,5546,The lady washes her hairs and begins cutting it with a pair of shears to a very short length. The girl,The lady washes her hairs and begins cutting it with a pair of shears to a very short length.,The girl,gold,does a few splits and shows on her upper lip and bends down.,sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands.,\"places a blade in the sand, then her gratitude, then twists off the side to the floor and reads the trainer.\",turns with the walked springboard and does two more quick flips before her opens it the splits again.,1\n10120,anetv_ZsqjU0X3mxY,5543,\"She stands up, flips her pony tail and the camera pans her outfit and she has on a black shirt and blue shorts and begins walking up the stairs. Next, she\",\"She stands up, flips her pony tail and the camera pans her outfit and she has on a black shirt and blue shorts and begins walking up the stairs.\",\"Next, she\",gold,\"hangs off down the floor, holding a stick and playing the violin while a little girl in a yellow bikini watches.\",stops at the fish off the screen.,goes into a room and begins talking to a woman with a black shirt and blonde hair.,hops down the bar while dancing pose at the end holding the pose.,2\n10121,anetv_ZsqjU0X3mxY,5545,The lady holds up a white index card with sketches of two heads. The lady,The lady holds up a white index card with sketches of two heads.,The lady,gold,peels cleaner out the front of the wrapping paper.,puts the menu in a pen and discusses it.,washes her hairs and begins cutting it with a pair of shears to a very short length.,adds graffiti to a hair brush.,2\n10122,anetv_ZsqjU0X3mxY,5541,A pale young woman in a white dress is standing in the forest with long curly brownish - reddish hair and begins skipping. Then she,A pale young woman in a white dress is standing in the forest with long curly brownish - reddish hair and begins skipping.,Then she,gold,is shown with a black shirt and long hair and begins talking in a dark staircase.,\"leaves the mans playing, approaches the same door, continues to about the braid is petite.\",smiles a little harder at it and then gets it off and places it down.,does at the whole front such along with her skirt and darts and fun.,0\n10123,anetv_ZsqjU0X3mxY,5547,The girl sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands. The hairdresser,The girl sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands.,The hairdresser,gold,stops and wipes her face with yellow cloth.,leans forward and pauses to show the hairstyle and begins.,speaks as the stylist continuously braids and lays there the ribbon on her hands as she applies her makeup.,\"begins blow drying her hair, cutting it and styling it.\",3\n10124,anetv_ZsqjU0X3mxY,5544,\"Next, she goes into a room and begins talking to a woman with a black shirt and blonde hair. The lady\",\"Next, she goes into a room and begins talking to a woman with a black shirt and blonde hair.\",The lady,gold,is sitting down while flipping and drying her hair out of the white space.,\"begins with a dance routine with her dad, on upper hand.\",\"irons her iron faster, then trouble brushing her teeth.\",holds up a white index card with sketches of two heads.,3\n10125,anetv_ZsqjU0X3mxY,5542,\"Then she is shown with a black shirt and long hair and begins talking in a dark staircase. She stands up, flips her pony tail and the camera pans her outfit and she\",Then she is shown with a black shirt and long hair and begins talking in a dark staircase.,\"She stands up, flips her pony tail and the camera pans her outfit and she\",gold,is walking toward on the step and still holding it for her.,shows to do the hair tricks then numerous times.,has on a black shirt and blue shorts and begins walking up the stairs.,resumes ironing the final skirts.,2\n10126,anetv_ZsqjU0X3mxY,5549,She continues to get her hair down while her hair is panned over on the counter and the floor. Then she,She continues to get her hair down while her hair is panned over on the counter and the floor.,Then she,gold,clips the hair and trims her hair.,grabs the bar and shoulders her up and explaining as she is speaking.,sits on a bench and smiles at the thought of her short hair cut.,shows some of her very hairy work.,2\n10127,lsmdc1048_Gran_Torino-92416,1741,Someone stubs a cigarette out on someone's cheek. Someone,Someone stubs a cigarette out on someone's cheek.,Someone,gold,\"stares off, shyly, then walks off.\",meets someone near the house.,crumples the paper and holds it against someone's face.,folds her paws next to the tree.,1\n10128,anetv_NfTfLk1D-tI,15171,The person sits down in front of the drums and begins playing them continuously. The man,The person sits down in front of the drums and begins playing them continuously.,The man,gold,continues playing and ends with the man standing down with the ends at his back.,continues playing the drums faster and faster while the camera captures his movements.,continues rubbing down the drums while speaking to the camera.,playing the guitar and then plays several shots while pausing to speak to the camera.,1\n10129,anetv_NfTfLk1D-tI,15170,A close up of drums are seen followed by a person walking into frame. The person,A close up of drums are seen followed by a person walking into frame.,The person,gold,continues walking around while the camera captures their movements.,flips over and over speaking and looking away from a camera.,plays sticks with a drum and leads into more clips.,sits down in front of the drums and begins playing them continuously.,3\n10130,anetv_xDD9rWISPpk,14538,He turns around and runs the other direction. He,He turns around and runs the other direction.,He,gold,hears a noise and hears the bedroom door closing.,runs down the street.,holds tightly in his hands as he carries the box.,knock a note to the ground before driving through.,1\n10131,anetv_xDD9rWISPpk,14537,A man is running down the street wearing stilts. He,A man is running down the street wearing stilts.,He,gold,runs down the women pavement on ramps with her.,class from the start of parallel park.,turns around and runs the other direction.,lays on the ground trying to build the fire.,2\n10132,anetv_xDD9rWISPpk,5273,A man is running in pogo stilts. He,A man is running in pogo stilts.,He,gold,turns around and then walks back.,\"dismounts, running fast and circles in the air.\",stops and jumps off the board.,has put his foot high on a hilly street.,0\n10133,anetv_lvAXZEUE0m8,18644,He jumps off the bridge and bungee jumps over a body of water. A boat,He jumps off the bridge and bungee jumps over a body of water.,A boat,gold,stands in the background where there's a man behind a square.,passes along the trail.,drives up and puts him in the boat.,skiing in the water skiing appears.,2\n10134,anetv_lvAXZEUE0m8,18643,A man puts a harness on and steps on a bridge. He,A man puts a harness on and steps on a bridge.,He,gold,removes his mask and smiles into the camera.,is holding a darkened pole and raiser him to the wire.,resets the boat with a rope.,jumps off the bridge and bungee jumps over a body of water.,3\n10135,anetv_Gkv5ibx0tYw,4587,She holds up a hair curler and puts it in her hair. She,She holds up a hair curler and puts it in her hair.,She,gold,takes it out and continues talking.,stands and talks while holding the camera.,shakes her head and sets it in front of screen.,begins leaving the camera behind her.,0\n10136,anetv_Gkv5ibx0tYw,4586,A woman with short blonde hair is sitting in a chair talking. She,A woman with short blonde hair is sitting in a chair talking.,She,gold,is with her actor and swimsuit sophisticated hairstyle.,\"is at the floor of the building, and she has a ball of lotion in her hands.\",holds up a hair curler and puts it in her hair.,holds up a pair of clippers to apply tattoos on her legs.,2\n10137,anetv_Jxhz1ln7UXk,5764,A person is seen walking around a yard as well as many people standing. The people then,A person is seen walking around a yard as well as many people standing.,The people then,gold,beginning playing a game with one another and running around the yard.,ride around a wooden bridge while people watch on the sides.,begin climbing on a sofa and moving up around the water.,play around surfing as well as surfing along the water and riding side to side and speaking to the camera.,0\n10138,lsmdc1040_The_Ugly_Truth-8536,8865,\"Names appear beside the white silhouetted symbols for a woman, then a man. The symbols\",\"Names appear beside the white silhouetted symbols for a woman, then a man.\",The symbols,gold,stares at his depiction of keys.,is applying skulls and symbols.,\"flip open, revealing someone lying on the ground nearby.\",have red hearts on them.,3\n10139,lsmdc1040_The_Ugly_Truth-8536,8866,The symbols have red hearts on them. A young woman,The symbols have red hearts on them.,A young woman,gold,arrives to a lawn plot.,\"comes out of her house, talking on her phone.\",sits on the arm of a bed.,holds a large cake into a bowl with a woman in it.,1\n10140,lsmdc0011_Gandhi-52846,9459,\"People's secretary, someone, waving goodbye from the boat deck of their ship as it sails - - someone is holding the tether of a goat - - all of them smiling at the camera like voyagers everywhere. Someone on the steps of someone in the East End of London\",\"People's secretary, someone, waving goodbye from the boat deck of their ship as it sails - - someone is holding the tether of a goat - - all of them smiling at the camera like voyagers everywhere.\",Someone on the steps of someone in the East End of London,gold,deck and gasp some discussion with the slyly.,\", the still view of their village that is tweed.\",\", holding the letter long out to the between.\",being greeted by a cheering crowd.,3\n10141,anetv_ux4iT6vQQb0,6340,People run motocross on a bumpy road in the wood. A person,People run motocross on a bumpy road in the wood.,A person,gold,is twisting the rope high and forward.,climbs a bump with a motorcycle.,lifts up a large ax tire and passes it to each other.,cuts the legs of the boat around the mountain and track it on the ground.,1\n10142,anetv_ux4iT6vQQb0,6341,A person climbs a bump with a motorcycle. Also people,A person climbs a bump with a motorcycle.,Also people,gold,catch the horses elliptical on a dirt arena.,get in curlers and stumbles back.,rides motorcycles on an unpaved flat surface.,push their raft over the river and fall.,2\n10143,lsmdc1010_TITANIC-77579,3289,He hands the message to dark - haired someone. Someone,He hands the message to dark - haired someone.,Someone,gold,\"switches warily to the man, wearing red gloves and a black sweeping shirt.\",takes off his hat and glances at the door.,takes off someone's violin and sets it horizontally in the middle of the dance floor.,sits in front of the photos of the flowers on each easel.,1\n10144,lsmdc1010_TITANIC-77579,3292,\"Someone puts on a headset and sends a telegraph. On the boat deck, officers\",Someone puts on a headset and sends a telegraph.,\"On the boat deck, officers\",gold,\"depart in the undulating morgul, spain on the sob.\",appear at the immaculately overlooking neighboring structures.,supervise and swing them out over the water.,peer faintly from the inflated deck as someone rushes out to steadily double over.,2\n10145,lsmdc1010_TITANIC-77579,3293,\"On the boat deck, officers supervise and swing them out over the water. Someone\",\"On the boat deck, officers supervise and swing them out over the water.\",Someone,gold,\"walks in the aisle, watching closely.\",\"retreats to the entrance of the ship, aiming underwater.\",\"checks the new - view panel, then finds a sailor plowing with the passages.\",stands at lifeboat four.,3\n10146,lsmdc1010_TITANIC-77579,3294,Someone stands at lifeboat four. Someone,Someone stands at lifeboat four.,Someone,gold,shoots as someone spots someone slain on the surface.,lowers the bottle and moves the board towards captain someone.,yells to a man on an upper deck.,return the mustached passengers onto the bus's wheel frame.,2\n10147,lsmdc1010_TITANIC-77579,3290,\"Slack - jawed, someone stares at someone. Someone\",\"Slack - jawed, someone stares at someone.\",Someone,gold,laughs and shakes his head.,puts his hat back on and walks out.,moves to a table in an office.,lifts his gaze to the cafe owner.,1\n10148,lsmdc1010_TITANIC-77579,3291,Someone puts his hat back on and walks out. Someone,Someone puts his hat back on and walks out.,Someone,gold,is something in her tv.,looks up and smiles down at him.,puts on a headset and sends a telegraph.,faces in his folded newspaper.,2\n10149,anetv_qVHazdU4_vY,15076,A woman is sitting cross legged on the floor. She,A woman is sitting cross legged on the floor.,She,gold,works a cardio machine machine and checks a flashlight beam.,continues rotating her legs rapidly.,begins to spin as they start a dance.,talks as she stretches her legs.,3\n10150,anetv_qVHazdU4_vY,14552,She lays down and demonstrates how to perform a break dancing move. She,She lays down and demonstrates how to perform a break dancing move.,She,gold,spins around continuously while still speaking to the camera.,continue to talk and finish by jumping off and talking on the stage for a while.,\"twists in turns and grapes left, with a cashier behind her talking while talking and looking about.\",guides the instrument to a split screen.,0\n10151,anetv_qVHazdU4_vY,14551,A woman is sitting on the floor and speaking to the camera while moving her legs around. She,A woman is sitting on the floor and speaking to the camera while moving her legs around.,She,gold,continues swinging the machine across the room in the same direction.,continues the exercise and jumps off the mat and ends by pointing behind the camera.,lays down and demonstrates how to perform a break dancing move.,put her right leg up and the woman continues to do several lay ups.,2\n10152,anetv_qVHazdU4_vY,15077,She talks as she stretches her legs. She,She talks as she stretches her legs.,She,gold,\"watches, cleaning her legs as they approach.\",\"reaches her legs around in a circle, stretching her calves.\",recovers a smile and shaves her neck.,wets the area over and over again and uses the bristle brush to remove the hooves in the sidewalk.,1\n10153,lsmdc3036_IN_TIME-16029,12055,\"Inside, he finds a lone time capsule on a pedestal. Its time balance\",\"Inside, he finds a lone time capsule on a pedestal.\",Its time balance,gold,passes all the stories above his head.,\", lingers under the chair.\",reads one million years.,begins to form lifts with several forces within.,2\n10154,lsmdc3036_IN_TIME-16029,12027,Someone eyes someone's clock. Someone,Someone eyes someone's clock.,Someone,gold,\"lifts his chin, smirking triumphantly as he maintains eye contact with his rival.\",begins to get her hair back.,goes to the window.,frowns tight and grips his cell.,0\n10155,lsmdc3036_IN_TIME-16029,12039,He stands with his back to someone. She,He stands with his back to someone.,She,gold,\"sidesteps for her dressing room, where an attractive lotus cat lies between it.\",shakes her head and withdraws her hands.,gives him an exasperated look.,touches her face and leaves.,2\n10156,lsmdc3036_IN_TIME-16029,12022,He rolls up his sleeve. As he,He rolls up his sleeve.,As he,gold,reaches his other hand out.,sets down his shawl.,\"approaches, someone reluctantly stretches his forehead to the floor.\",\"starts absently, someone's mother looks imploringly at him.\",0\n10157,lsmdc3036_IN_TIME-16029,12048,\"Among them, someone aims a gun at someone's head. Someone\",\"Among them, someone aims a gun at someone's head.\",Someone,gold,gives a shocked look.,smiles at someone as he looks down at someone black and red arms.,\"faces the boy, who lies still on her back.\",\"turns, ready to sweep.\",0\n10158,lsmdc3036_IN_TIME-16029,12049,\"As the guards set their weapons on the floor, someone removes his sunglasses. Someone\",\"As the guards set their weapons on the floor, someone removes his sunglasses.\",Someone,gold,clamps her arm gently on his forehead.,\"points it at someone, who stands beside him.\",raises the flame to.,picks up her gun and strides up to her father.,3\n10159,lsmdc3036_IN_TIME-16029,12046,\"Pushing aside two guards, someone emerges from behind their protective wall. She\",\"Pushing aside two guards, someone emerges from behind their protective wall.\",She,gold,knocks after a dusk which illuminates the room.,sets her gun on the floor.,\"walks in, then close to someone.\",takes out the glock holding one of the rifles.,1\n10160,lsmdc3036_IN_TIME-16029,12028,Someone struggles futilely to free himself. Someone and the thugs,Someone struggles futilely to free himself.,Someone and the thugs,gold,run toward a large crowd of uniformed ladies.,\"lean forward, watching intently.\",begin with the lantern.,\"hurry up, firing someone's gun.\",1\n10161,lsmdc3036_IN_TIME-16029,12051,Someone guides the businessman inside. He,Someone guides the businessman inside.,He,gold,glances at the digital map and data tables as someone leads them past.,\"peeks into her apartment, then wraps her jacket around her shoulders and ties her laces together.\",crosses stairs with one flashlight.,strides briskly down the street after her husband.,0\n10162,lsmdc3036_IN_TIME-16029,12053,Someone trains her gun on her father. Someone,Someone trains her gun on her father.,Someone,gold,faces with the guards.,leans on one of his cohorts.,turns the vault's dial.,dismounts expertly brushing his curved legs.,2\n10163,lsmdc3036_IN_TIME-16029,12054,\"He turns the vault's wheel and heaves the door open. Inside, he\",He turns the vault's wheel and heaves the door open.,\"Inside, he\",gold,arrives at a gallery where another brother rushes through.,puts down an electronic music type.,carries his news tray.,finds a lone time capsule on a pedestal.,3\n10164,lsmdc3036_IN_TIME-16029,12043,Three limos pulled into the semi - circular driveway in front of a towering skyscraper. The suited men surround their charge and the group,Three limos pulled into the semi - circular driveway in front of a towering skyscraper.,The suited men surround their charge and the group,gold,jogs toward the building.,carries weapons around the other sides of the roof and under their door.,flips them backwards then towers over them.,heads up a broad flight of stairs in the building's lobby.,3\n10165,lsmdc3036_IN_TIME-16029,12033,\"Now, someone gazes at the four dead minutemen who lie face down on a sidewalk. Someone\",\"Now, someone gazes at the four dead minutemen who lie face down on a sidewalk.\",Someone,gold,takes a bus away as someone drives off into the opposite van.,whips from someone's g - automatic and hesitates.,drives a car over the welcome birthday trees.,\"blinks, his back to someone.\",3\n10166,lsmdc3036_IN_TIME-16029,12041,\"She stares off thoughtfully, then shifts her eyes back to him. Someone\",\"She stares off thoughtfully, then shifts her eyes back to him.\",Someone,gold,walks over with the captain.,shoots her a questioning glance.,watches them with wide eyes.,\"sighs, deep in thought.\",1\n10167,lsmdc3036_IN_TIME-16029,12047,She sets her gun on the floor. He,She sets her gun on the floor.,He,gold,sweeps his rich hair off of her face.,lays his head on someone's shoulder.,stares with wide eyes.,\"steps tensely, rubbing his neck.\",2\n10168,lsmdc3036_IN_TIME-16029,12030,The gangster flies back in his chair. Someone and someone,The gangster flies back in his chair.,Someone and someone,gold,run out into their room.,watch the screen disappear.,\"sit in the dimly lit train, as if in a trance.\",join hands and escape to a dimly lit hallway.,3\n10169,lsmdc3036_IN_TIME-16029,12044,\"The suited men surround their charge and the group heads up a broad flight of stairs in the building's lobby. Toting a gun in one hand, someone\",The suited men surround their charge and the group heads up a broad flight of stairs in the building's lobby.,\"Toting a gun in one hand, someone\",gold,strides in after them.,carries up the ladder and exits.,\"lifts his hand, his arms protruding from the small hulk.\",takes a gun stroll across a large street and stops by the window.,0\n10170,lsmdc3036_IN_TIME-16029,12045,\"The other guards aim at her as well. Pushing aside two guards, someone\",The other guards aim at her as well.,\"Pushing aside two guards, someone\",gold,emerges from behind their protective wall.,pins the bag aside.,leads the blond to her.,shoots his pistol into the chamber of retrieved burning fires.,0\n10171,lsmdc3036_IN_TIME-16029,12038,\"Someone leads someone by the hand across a roof. Reaching a chest - high wall at its edge, they\",Someone leads someone by the hand across a roof.,\"Reaching a chest - high wall at its edge, they\",gold,pose at the dining table.,bump a protective shield stacked to the sides of a city street.,stop at a closed - topped menu.,peer down at the street.,3\n10172,lsmdc3036_IN_TIME-16029,12023,As he reaches his other hand out. Someone,As he reaches his other hand out.,Someone,gold,takes a deep breath.,opens the door to someone.,leads someone to the bench.,walks up to someone.,0\n10173,lsmdc3036_IN_TIME-16029,12034,\"Someone blinks, his back to someone. With his hands\",\"Someone blinks, his back to someone.\",With his hands,gold,\"apart, someone shakes his head and returns.\",\"gripping her shoulders, someone raises his hands and gently interlaces his forehead.\",clasped calmly behind his back.,\"drawn on someone's face, he cringes tearfully.\",2\n10174,lsmdc3036_IN_TIME-16029,12052,\"Reaching a vault in an adjacent room, he releases someone. Someone\",\"Reaching a vault in an adjacent room, he releases someone.\",Someone,gold,reverses the new deck.,whips away fans then pulls him on himself by the elbow.,trains her gun on her father.,drops her pistol between her boot.,2\n10175,lsmdc3036_IN_TIME-16029,12042,Someone shoots her a questioning glance. Three limos,Someone shoots her a questioning glance.,Three limos,gold,arrive at their home in plain smoking search.,hop from the platform inside.,gaze her from the bed strewn about.,pulled into the semi - circular driveway in front of a towering skyscraper.,3\n10176,lsmdc3036_IN_TIME-16029,12050,\"At her father's office, she enters a pass code. Someone\",\"At her father's office, she enters a pass code.\",Someone,gold,'s mother enters his office.,'s computer chip in his mirror's head.,guides the businessman inside.,picks up his phone and crosses toward some cards and taking a bite from the table.,2\n10177,lsmdc3036_IN_TIME-16029,12036,Someone shifts his attention to the bystanders gathered in a wide circle around him. He,Someone shifts his attention to the bystanders gathered in a wide circle around him.,He,gold,presses his lips together as if to speak.,strolls up to a group of them.,\"watches the horse swagger off, knocking advances to reveal someone again.\",\"looks up to the woman, then lowers the mic.\",1\n10178,lsmdc3036_IN_TIME-16029,12025,Someone stares at the men's clocks. Someone,Someone stares at the men's clocks.,Someone,gold,picks up a frost report on a table.,eventually spots a car wedged on his wall.,gazes steadily at his foe and breathes deeply through flared nostrils.,pushes him down.,2\n10179,lsmdc3036_IN_TIME-16029,12040,She gives him an exasperated look. She,She gives him an exasperated look.,She,gold,\"stares off thoughtfully, then shifts her eyes back to him.\",\"nods, rocking her hips, sexily counts our number.\",\"stands beside him, shuts her eyes and waves.\",grabs someone from his lip and pushes a line of paperwork down the lane.,0\n10180,lsmdc3036_IN_TIME-16029,12037,He strolls up to a group of them. Someone,He strolls up to a group of them.,Someone,gold,leads someone by the hand across a roof.,strides down on a stage with other women.,steps back to look at the finished characters.,smiles wistfully at her reflection and someone takes to the settee.,0\n10181,lsmdc3036_IN_TIME-16029,12031,Someone and someone join hands and escape to a dimly lit hallway. They,Someone and someone join hands and escape to a dimly lit hallway.,They,gold,hurry up a stairwell.,wander through the village as they find house sound.,buy a set of keys then exit the room.,watch a bird decorating a tree covered with green grass.,0\n10182,lsmdc3036_IN_TIME-16029,12032,\"They hurry up a stairwell. Now, someone\",They hurry up a stairwell.,\"Now, someone\",gold,wears his protective helmet.,joyfully leads the fellowship onto someone's shoulder.,arrives at a dignified house with her shopping bag slung over her shoulder.,gazes at the four dead minutemen who lie face down on a sidewalk.,3\n10183,lsmdc3036_IN_TIME-16029,12026,Someone gazes steadily at his foe and breathes deeply through flared nostrils. He,Someone gazes steadily at his foe and breathes deeply through flared nostrils.,He,gold,starts to rotate his arm over the gangster's.,\"grapples with a broken tower, unable to keep up any longer.\",draws a strand of thin metal flies across his chest and draws a wavy stone upward back a few inches.,closes his eyes.,0\n10184,anetv_OYPyiUC4h68,9755,\"The man, now wearing life jacket, with his wife float down a river in the middle of a large group. A group from behind floats next to the man and woman as they\",\"The man, now wearing life jacket, with his wife float down a river in the middle of a large group.\",A group from behind floats next to the man and woman as they,gold,slow down near the side of the river.,swing at the wooden eye on the water board and watch a man lake and.,get in the raft and ride down a slide together.,\"float in the grass, including people, cooking in and out to sea.\",0\n10185,anetv_OYPyiUC4h68,9753,A man in bathing suit and his wife float down a river on intertubes. The man,A man in bathing suit and his wife float down a river on intertubes.,The man,gold,lets line other people swims through a small river that smooth perfectly made ice and water on the skis.,is water skiing and talking to the camera.,carries a long motor raft along the trail as the ark leaves the cliff.,falls from his intertube and walks over to the waters edge.,3\n10186,anetv_OYPyiUC4h68,9754,\"The man falls from his intertube and walks over to the waters edge. The man, now wearing life jacket, with his wife\",The man falls from his intertube and walks over to the waters edge.,\"The man, now wearing life jacket, with his wife\",gold,dressed in green intermittently standing with the little white dog lost his costume.,float down a river in the middle of a large group.,stand in the sailors behind him and seizing him to turn on landing with both arms to the man in knee.,stained with a thinning green light.,1\n10187,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60305,10541,Someone rushes to someone's side as he slumps to the floor. someone appears to be dead. Suddenly someone,Someone rushes to someone's side as he slumps to the floor. someone appears to be dead.,Suddenly someone,gold,starts a gasp and sits down locket by the outskirts of a table.,\"providing grooves to someone, extended someone raised leg.\",passes the end of the bikes and follows her out with her friends behind.,coughs.,3\n10188,anetv_WmOTDAim7XM,6387,A man is holding a chain saw over his head. He,A man is holding a chain saw over his head.,He,gold,uses sticks to cut someone's nails.,is holding onto popsicles with parts.,starts clipping the top of the hedge.,catches the ball and throws it to the ground.,2\n10189,anetv_WmOTDAim7XM,6388,He starts clipping the top of the hedge. People,He starts clipping the top of the hedge.,People,gold,leaves frame shoulder first.,lifts it up to the roof of the house as he touches it.,draw along the left.,are walking on the sidewalk behind him.,3\n10190,anetv_gYBIX_tGaXo,19239,Betty Haidler seems really focused and determined to go home with a prize. Betty Heidler starts spinning and then with all the momentum,Betty Haidler seems really focused and determined to go home with a prize.,Betty Heidler starts spinning and then with all the momentum,gold,throwing some music into the room.,throwing them down and talking to the camera holding the camera.,tossed the hammer really far away.,rules of the game going throughout.,2\n10191,lsmdc0041_The_Sixth_Sense-67684,2333,\"All we see is the top of his head. Every now and then we get glimpses of things someone is playing with peeking over the back of the couch, but we\",All we see is the top of his head.,\"Every now and then we get glimpses of things someone is playing with peeking over the back of the couch, but we\",gold,can not really appear in the eye.,can see the spheres fall from the shelf behind him.,can't quite make out what he is doing.,can see someone's leg moves in of the way.,2\n10192,lsmdc0041_The_Sixth_Sense-67684,2332,Someone is playing behind the couch. All we see,Someone is playing behind the couch.,All we see,gold,is his money raised.,\"someone opening his eyes, bracing blasting in the cement.\",is the top of his head.,\"see from the corner as the crowd reaches the room, where inside come play - break dancing, watched by three group, subdued\",2\n10193,lsmdc1057_Seven_pounds-97688,2340,The file appears to be full of newspaper cuttings. Someone,The file appears to be full of newspaper cuttings.,Someone,gold,\"turns to someone, who is sitting with a basket on it.\",remembers the arguing 500 someone.,grows concerned from his position in his chair to gag someone's four fist area.,opens it and studies the first cutting intently.,3\n10194,lsmdc1057_Seven_pounds-97688,2338,He puts his keys on a table and shuts the door. Someone,He puts his keys on a table and shuts the door.,Someone,gold,comes to the bathroom.,\"follows with someone, who stands in the doorway, observing him.\",sits on his bed in dim lamp light and takes a book and a file out of his bag.,\"undoes the lights on his cuffs, storms out, and switches off the plane light.\",2\n10195,lsmdc1057_Seven_pounds-97688,2332,Someone pulls up in his saloon outside the slightly seedy - looking motel. He,Someone pulls up in his saloon outside the slightly seedy - looking motel.,He,gold,poses before he lowers the glass.,enters the classroom finishing his meal.,gets out of the car and goes to the reception window.,chats in the thick dark room.,2\n10196,lsmdc1057_Seven_pounds-97688,2337,Someone lets himself into a dark room and carries in his cases. He,Someone lets himself into a dark room and carries in his cases.,He,gold,puts his keys on a table and shuts the door.,\"halts, who enters a video and practices the game.\",unlocks the door and onto the corridor to a lab level.,sits as someone stares at someone with a knitted brow.,0\n10197,lsmdc1057_Seven_pounds-97688,2330,Someone puts her files back in his briefcase and leaves with a polite smile. Someone,Someone puts her files back in his briefcase and leaves with a polite smile.,Someone,gold,remains sitting at the table.,talks into a cell phone.,grins and shrugs her head.,lifts her brow sadly.,0\n10198,lsmdc1057_Seven_pounds-97688,2335,A pudgy bearded guy spots him and comes out from behind a lacy curtain. Someone,A pudgy bearded guy spots him and comes out from behind a lacy curtain.,Someone,gold,watches over his peer.,heads across the city ways through the rear door of the art class.,\"throws the pig's tail outside, watches a briefly white male trot up, and glances over to the humanoid giant.\",returns to the reception window where the guy now greets him.,3\n10199,lsmdc1057_Seven_pounds-97688,2339,Someone sits on his bed in dim lamp light and takes a book and a file out of his bag. The file,Someone sits on his bed in dim lamp light and takes a book and a file out of his bag.,The file,gold,lowers four rows of folders and sharp gold shades of silver hand - carved metal.,appears to be full of newspaper cuttings.,\"reads, reading, do - - half - inch the sack with a indian hand and heavy paper.\",can be strangers outside.,1\n10200,lsmdc1057_Seven_pounds-97688,2334,Someone goes to look through an open door. A pudgy bearded guy,Someone goes to look through an open door.,A pudgy bearded guy,gold,spots something on the stereo stair.,answers an explosion nestor.,knocks down a piece of mortar.,spots him and comes out from behind a lacy curtain.,3\n10201,lsmdc1057_Seven_pounds-97688,2336,Someone returns to the reception window where the guy now greets him. Someone,Someone returns to the reception window where the guy now greets him.,Someone,gold,'s nose rests on strands of chinese plumes.,helps another technician guys out onto the boat.,remains on the back of the room.,lets himself into a dark room and carries in his cases.,3\n10202,anetv_r1mrueEHDDE,199,\"She is holding a flute, which she then begins to play. When she is done, she\",\"She is holding a flute, which she then begins to play.\",\"When she is done, she\",gold,\"puts her hands down, continues about the song, and then enjoys the song.\",turns and begins playing a set of violin.,reaches out and catches the ball.,lowers the flute away from her mouth and walks over to the camera.,3\n10203,anetv_r1mrueEHDDE,198,A girl walks over in front of a stand with music. She,A girl walks over in front of a stand with music.,She,gold,play beach volleyball with some female opponents.,\"is holding a flute, which she then begins to play.\",then starts talking on the phone while others watch.,starts demonstrating how to do hand exercises.,1\n10204,lsmdc3061_SNOW_FLOWER-30408,13276,\"We see someone sitting in a red tinted bathtub. Back at the desk, Shutting the notebook, she\",We see someone sitting in a red tinted bathtub.,\"Back at the desk, Shutting the notebook, she\",gold,enters her book.,notices a photograph tucked beneath the scattered pages of a manuscript draft.,\"wanders over a keypad and a button with its closed disheveled panel, then looks back and forth between his scanner.\",leans back in her chair and leans her head a moment.,1\n10205,lsmdc1024_Identity_Thief-82335,2739,\"They toast and down their shots. Now, they\",They toast and down their shots.,\"Now, they\",gold,get into a car.,sit at a table with several empty shot glasses.,\"arrive at home, eating their dinner together in the sunshine.\",get out of the car and exit the tunnel and make their way down the stairwell.,1\n10206,lsmdc1024_Identity_Thief-82335,2738,He wears a turquoise bolo. They,He wears a turquoise bolo.,They,gold,complies.,toast and down their shots.,\"row the tall boats into the rough waters, followed by images of furniture and bushes.\",\"hold the milkman's down, someone walks down to the deck.\",1\n10207,lsmdc1024_Identity_Thief-82335,2737,A husky bearded man in a cowboy hat notices her. He,A husky bearded man in a cowboy hat notices her.,He,gold,is playing her and one of them likes her is braided to one side.,carries a meeting of blue to the slender gray section of the building.,leads him to a corridor leading to a suite.,nods to himself as someone sips her green beverage.,3\n10208,lsmdc1024_Identity_Thief-82335,2740,\"As they drink another shot, someone slaps the table. Someone\",\"As they drink another shot, someone slaps the table.\",Someone,gold,loads a cup of coffee and sets it on the table.,spots a metal cruiser in the loft's dusty room.,enters and scans the room.,knocks over his face.,2\n10209,lsmdc1046_Australia-90830,7861,Birds take flight over a land which has turned green. The dusty plains,Birds take flight over a land which has turned green.,The dusty plains,gold,\"have been replaced by rivers, lakes and islands.\",flow through the country followed by the dawn sunlight.,appears in the shape behind a brick motorcycle.,is balmoral with california and formal banners one carrying someone.,0\n10210,lsmdc1046_Australia-90830,7846,Someone holds her hands joyfully in the air. Someone,Someone holds her hands joyfully in the air.,Someone,gold,snickers as he averts his gaze.,remains in his seat at the theater smiling happily at the down pour.,rise from the boat's deck.,bursts in through the budweiser stand.,1\n10211,lsmdc1046_Australia-90830,7858,\"She pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed. They\",\"She pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed.\",They,gold,\"suit pulls onto a freeway racked by a strong current of military broomsticks, then heads down the streets, heading straight toward an widening\",hurry up a staircase.,\"enter the darkened house, with the club.\",\"lie in each other's arms, naked, covered by just a sheet.\",3\n10212,lsmdc1046_Australia-90830,7862,\"The dusty plains have been replaced by rivers, lakes and islands. Waterfalls\",\"The dusty plains have been replaced by rivers, lakes and islands.\",Waterfalls,gold,tumble down the rocks of the previously dry canyon.,\", people walk along a cliff toward horizontal tracks.\",is using hand utensil while is being walking by the camera.,are bundled unto a lawns and low on top.,0\n10213,lsmdc1046_Australia-90830,7845,People dance around people in the rain - soaked street. Someone,People dance around people in the rain - soaked street.,Someone,gold,trudges wearily to the basement.,holds her hands joyfully in the air.,\"looks toward someone, pulls herself away from the mountainside, and carries two other bags.\",holsters a pistol at him.,1\n10214,lsmdc1046_Australia-90830,7854,\"On the screen, someone clicks her emerald heels together. People\",\"On the screen, someone clicks her emerald heels together.\",People,gold,run up the stairs to someone's room with the balcony.,watch mama's princess castle.,is steeping feet by inch square.,moves the room behind her.,0\n10215,lsmdc1046_Australia-90830,7863,Waterfalls tumble down the rocks of the previously dry canyon. People,Waterfalls tumble down the rocks of the previously dry canyon.,People,gold,are pulled carrying flags on canoes.,are bathing in a pool in each other's arms.,float along the river along a street.,walk down the path in nice wooden hills.,1\n10216,lsmdc1046_Australia-90830,7842,\"She turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain. They\",\"She turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain.\",They,gold,\"land on her bed in the rain, and take a behavior from on the hallway.\",have now drawn the driveway to cut out the door.,\"smiles away, nods her head towards her tablet.\",kiss as it starts to pour down.,3\n10217,lsmdc1046_Australia-90830,7856,They break apart and stare at one another. They,They break apart and stare at one another.,They,gold,turn back; someone lowers his head and nods.,look for longer bats.,pause for a moment.,look longingly at each other.,3\n10218,lsmdc1046_Australia-90830,7855,\"Indoors, they kiss passionately. They\",\"Indoors, they kiss passionately.\",They,gold,break apart and stare at one another.,juggle a warm structure.,face their natural form.,dance passionately.,0\n10219,lsmdc1046_Australia-90830,7852,He scowls at his drunken son - in - law and walks off. Someone,He scowls at his drunken son - in - law and walks off.,Someone,gold,helps someone strip down its surfboard.,glances at a bearded visitor.,\"nods slowly, watching him go.\",halts reluctantly and heads back to the bench.,2\n10220,lsmdc1046_Australia-90830,7860,\"The door to the room swings closed, as lightning flashes and the rain pours down on nighttime someone. Birds\",\"The door to the room swings closed, as lightning flashes and the rain pours down on nighttime someone.\",Birds,gold,take flight over a land which has turned green.,sit on the couch.,someone stands in the passenger seat of a bus.,are shown in the back seat as someone knocks on the door.,0\n10221,lsmdc1046_Australia-90830,7857,He slides the dress off her shoulders and she opens the front of his shirt. She,He slides the dress off her shoulders and she opens the front of his shirt.,She,gold,\"stops staring at another single moment, then shuts it.\",enters a large crowd of protesters.,\"pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed.\",gives a relieved wave.,2\n10222,lsmdc1046_Australia-90830,7853,\"Someone nods slowly, watching him go. On the screen, someone\",\"Someone nods slowly, watching him go.\",\"On the screen, someone\",gold,leans against a wall and gazes thoughtfully at her reflection's reflection on leaves.,turns to show a pause.,is in the reading room.,clicks her emerald heels together.,3\n10223,lsmdc1046_Australia-90830,7843,They kiss as it starts to pour down. The crowds at the pub,They kiss as it starts to pour down.,The crowds at the pub,gold,starts to cheer as someone makes to cry slightly.,grab their own feet.,go for a brief moment and wait.,cheer the rain's arrival and dance in the street.,3\n10224,lsmdc1046_Australia-90830,7841,He looks at her seriously. She,He looks at her seriously.,She,gold,gives her a look.,\"turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain.\",\"releases her lcd - scan gaze, smoothes her hat and moves another picture to her friend.\",spreads her arms and wraps the litter around someone's waist.,1\n10225,anetv_ycBFz2RdgoY,495,A park sign that reads Welcome to Kanaha Beach Park is shown. More windsurfers,A park sign that reads Welcome to Kanaha Beach Park is shown.,More windsurfers,gold,are shown racing across the water.,are shown swimming around the fountain.,float on the beach.,are shown on the black screen.,0\n10226,anetv_IwViXKNNBEU,13192,A man prepares himself to throw a discus. Multiple people,A man prepares himself to throw a discus.,Multiple people,gold,stand on a street and watch them upside a skateboard.,are rollerblading on a large slack - pole track.,are shown shooting arrows for the target.,walk around and talk in the background.,3\n10227,anetv_IwViXKNNBEU,13193,Multiple people walk around and talk in the background. The man,Multiple people walk around and talk in the background.,The man,gold,sliding quickly addresses the people.,waves to the music.,stops and lifts the handles readying his feet.,spins and throws the discus.,3\n10228,anetv_kQoGS3YjBXk,15418,He points to the frame while speaking to the camera and leads into him screwing objects into place. The person,He points to the frame while speaking to the camera and leads into him screwing objects into place.,The person,gold,continues to screw the frame as well as the chain while turning and speaking to the camera.,continues dancing around the side of the tire as well as showing more ornaments on the object.,\"continues wrapping the object, pushing logs onto the paper and ends with the camera panning on the wall.\",shows furniture on the roof and properly pull up.,0\n10229,anetv_kQoGS3YjBXk,15417,A man is shown speaking to the camera and leads into him standing in front of a bike frame. He,A man is shown speaking to the camera and leads into him standing in front of a bike frame.,He,gold,uses the blue bicycle to mark the corner of the bike with the pedals and paper biking.,has a busy bike on its left.,points to the frame while speaking to the camera and leads into him screwing objects into place.,shows off the tire and speaking to the camera.,2\n10230,anetv_QV4E2B0AdGw,506,A man receives a tattoo in a tattoo parlor from a male tattoo artist interspersed with video of a waiting woman showing her neck tattoo. A man,A man receives a tattoo in a tattoo parlor from a male tattoo artist interspersed with video of a waiting woman showing her neck tattoo.,A man,gold,in a red shirt is walking and is talking to a man standing up to her.,in a white coat on congas watch a signs.,and a woman are on a stage and playing a violin for a few seconds.,lays on a tattoo table and receives a color tattoo from a tattoo artist.,3\n10231,anetv_QV4E2B0AdGw,7110,She shows off her tattoos and the artist continues working. The in the end he,She shows off her tattoos and the artist continues working.,The in the end he,gold,shows off his new tattoo.,picks up an iron and shows how to unhook the chair in the shirt.,puts the ring on her finger and sprays it on the tip of her wand.,wakes for her upper response.,0\n10232,anetv_QV4E2B0AdGw,508,The two men talk and laugh as the tattoo is issued and the camera cuts to a woman who talks and shows her neck tattoo to the camera. The man who received the tattoo stands and,The two men talk and laugh as the tattoo is issued and the camera cuts to a woman who talks and shows her neck tattoo to the camera.,The man who received the tattoo stands and,gold,pierces the man's ear.,removes the tattoo on the man's effectively to remove his leg and put it on the end board.,shows the fish tattoo he just received before the camera cuts to a marketing graphic.,stands on the hill looking at the camera.,2\n10233,anetv_QV4E2B0AdGw,507,A man lays on a tattoo table and receives a color tattoo from a tattoo artist. The two men talk and laugh as the tattoo is issued and the camera,A man lays on a tattoo table and receives a color tattoo from a tattoo artist.,The two men talk and laugh as the tattoo is issued and the camera,gold,is over to the head.,demonstrates on the drink of the man.,continues to talk about it.,cuts to a woman who talks and shows her neck tattoo to the camera.,3\n10234,anetv_I1P5GuVHFQA,1599,\"The man then puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object. He\",\"The man then puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object.\",He,gold,pauses to speak more to the camera and looking down at the object to see how it turned out.,woman irons the back and continues ironing to find the place dazzling.,leaves the man hanging out of the frame to demonstrate how to properly do various moves.,continues to take puffs out of the pipe and blows out smoke pieces of the hookah.,0\n10235,anetv_I1P5GuVHFQA,1598,A man is seen speaking to the camera while holding up various objects and sharpening a stick. The man then,A man is seen speaking to the camera while holding up various objects and sharpening a stick.,The man then,gold,\"puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object.\",begins moving it around and leads into the man speaking to the camera.,mixes up the ingredients and continues to play the game while the camera pans around him.,begins cutting up the ribbon using a box.,0\n10236,lsmdc3015_CHARLIE_ST_CLOUD-1181,7424,He pours some water from a pitcher and hands it over. Someone,He pours some water from a pitcher and hands it over.,Someone,gold,looks into someone's building and gives a cocky grin.,nods and offers his friend a smile.,grabs the cake and puts it in a strainer.,returns to his bedroom and looks at the hole.,1\n10237,lsmdc3015_CHARLIE_ST_CLOUD-1181,7422,\"He blinks, then gives a faint wince and furrows his brow. He\",\"He blinks, then gives a faint wince and furrows his brow.\",He,gold,sit on kitchen talking to a slumbering man.,shifts his haunted gaze.,\"swallows repeatedly, grabs a cup from a nearby table and downs its contents.\",\"briefly averts his gaze, he reaches up and slaps a paper down the charts.\",2\n10238,lsmdc3015_CHARLIE_ST_CLOUD-1181,7423,\"He swallows repeatedly, grabs a cup from a nearby table and downs its contents. He\",\"He swallows repeatedly, grabs a cup from a nearby table and downs its contents.\",He,gold,\"shows his plate for someone, who catches it by the pixie - faced man.\",\"drinks the beer as he chugs off a spoon, then deposits the drink to a showroom.\",pours some water from a pitcher and hands it over.,\"faces someone, and suddenly yellow misty leaves swirl about him.\",2\n10239,lsmdc3015_CHARLIE_ST_CLOUD-1181,7421,Three butterflies cover a laceration on his temple. He,Three butterflies cover a laceration on his temple.,He,gold,raises his neck as we soar through an arched window in a dark overgrown beach.,\"is shot ahead, his eyes wide with horror.\",\"blinks, then gives a faint wince and furrows his brow.\",watches several paces carefully out on the board.,2\n10240,lsmdc3015_CHARLIE_ST_CLOUD-1181,7425,\"Someone nods and offers his friend a smile. Grinning to himself, Charlie\",Someone nods and offers his friend a smile.,\"Grinning to himself, Charlie\",gold,\"rushes across the room to someone, who sniffs from his mug.\",squeezes a silky chunk from a sack.,leaves the door and jogs right after her.,settles back on his pillows.,3\n10241,anetv_3jZq0UaDIks,864,\"Suddenly, two men appears sailing in inflatable boats while the woman takes pictures. Other people\",\"Suddenly, two men appears sailing in inflatable boats while the woman takes pictures.\",Other people,gold,sail on the beach.,\"pull the kayaks under the water, driving the boats and travel to the water.\",are cheered in te boats and a dog walks below them while the children continue doing the leaning current and sailing to the water.,sail on individual boats in the choppy waters in the river.,3\n10242,anetv_3jZq0UaDIks,863,\"A woman walks to the bank of a river holding a camera. Suddenly, two men\",A woman walks to the bank of a river holding a camera.,\"Suddenly, two men\",gold,are kayaking outside and get out of a lift.,hug the men next to the podium.,appears sailing in inflatable boats while the woman takes pictures.,unload a dolly from a clipboard.,2\n10243,anetv_3jZq0UaDIks,11961,We film as people come over a small waterfall in black rafts. The cameraman,We film as people come over a small waterfall in black rafts.,The cameraman,gold,turns the water with water and pauses to look around.,turns and walks away from the shore as another man walks past.,stops a line gliding down the river.,skis the platform with their raft.,1\n10244,anetv_3jZq0UaDIks,11959,A person holds their phone as they walk in a field near a river bank and films the river as it runs. We,A person holds their phone as they walk in a field near a river bank and films the river as it runs.,We,gold,\"pick up every flowing sand dunes, wands, and singers kayaks on the rapids.\",\"the people begin rowing and driving, while a text intro shows la being shown.\",see a ladies head.,the various are in shining and sirens that are being free.,2\n10245,anetv_3jZq0UaDIks,865,Other people sail on individual boats in the choppy waters in the river. Two people,Other people sail on individual boats in the choppy waters in the river.,Two people,gold,stand on the bank of the river.,are riding down a boat with fun and boats while driving.,waves in front of the boat and bow.,\"are gathered, preparing, rafting or sailing with their school clothes.\",0\n10246,anetv_8rimo9x4qqw,9058,A snowboarder gives a tutorial for how to hit a jump. A few techniques,A snowboarder gives a tutorial for how to hit a jump.,A few techniques,gold,are shown in four parts.,are interviewed near a dirt field.,are shown working under the water.,are shown by different skills.,0\n10247,anetv_6qynXM937V0,18024,\"He continues playing his harmonica to a soothing tune. After he stops playing, he\",He continues playing his harmonica to a soothing tune.,\"After he stops playing, he\",gold,starts left the drums.,comes back playing the drums.,puts his hands down.,slows a bit and turns off.,2\n10248,anetv_6qynXM937V0,18023,There's a man wearing a hat and a beige colored shirt standing on the banks of a river playing his harmonica. There,There's a man wearing a hat and a beige colored shirt standing on the banks of a river playing his harmonica.,There,gold,is a still river behind him.,large gray man is rappelling down the road from the point as two people are skateboarding in front of gear.,is recording the video news and name subtitles one guy has n't navigates the line down his entire shoulder.,are all on video of the children and the men who are walking.,0\n10249,lsmdc0002_As_Good_As_It_Gets-46632,3722,Someone still walking with his usual attention to where he steps. Someone walking and though we can see an improvement it,Someone still walking with his usual attention to where he steps.,Someone walking and though we can see an improvement it,gold,is an impressive part of someone house.,is still decidedly strange as he conspicuously avoids stepping on the lines.,is about to be much home.,has much smaller clothing.,1\n10250,lsmdc0002_As_Good_As_It_Gets-46632,3723,\"Someone looks at her, Embarrassed, self - conscious, His habits making him appear unworthy. It\",\"Someone looks at her, Embarrassed, self - conscious, His habits making him appear unworthy.\",It,gold,forces him to half - whisper something he has n't at all said to himself.,stabs weakly over the wreckage of a circular uniform.,swims across the desk.,walks through the door and tries to pull on the female ambulances.,0\n10251,anetv_M6xFXdXOzzc,2265,There are 4 people who are all playing badminton and the boy in the white shirt is the first one to serve to the man in the black shirt. Then the man wearing the black shirt,There are 4 people who are all playing badminton and the boy in the white shirt is the first one to serve to the man in the black shirt.,Then the man wearing the black shirt,gold,catches the ball and throws a frisbee at the paper to start a fiery game cordoned off.,is throwing the ball at a different ball while hitting it.,retrieves the ball in middle of him and begins the ball down the beers.,serves to the boy whose wearing the gold shirt.,3\n10252,lsmdc1012_Unbreakable-6884,17222,A cape hooded figure stands motionless in an archway silhouetted black against the teeming rain. He,A cape hooded figure stands motionless in an archway silhouetted black against the teeming rain.,He,gold,leans to the nearby stereo and leans underwater.,retrieves his bag from his shoulder and leaves.,leans over on the horn office.,is watching an american football training session.,3\n10253,lsmdc1012_Unbreakable-6884,17229,\"Someone stares at the locker door, and then glances at someone. In a darkened room, a hand\",\"Someone stares at the locker door, and then glances at someone.\",\"In a darkened room, a hand\",gold,\"reaches over and raises a bottle of champagne, then grins to himself.\",\"on the dresser, someone frowns as it covers her leans back.\",reaches out and switches on a bedside lamp.,pulls out a green toilet from a boot and wipes down with a towel and a handful.,2\n10254,lsmdc1012_Unbreakable-6884,17228,An older man is in the doorway. Someone,An older man is in the doorway.,Someone,gold,is standing at the front of the building and dives onto a board.,goes through the misty knot.,\"stares at the locker door, and then glances at someone.\",is in the kitchen following him.,2\n10255,lsmdc1012_Unbreakable-6884,17220,\"She returns to her work, still ignoring him. He\",\"She returns to her work, still ignoring him.\",He,gold,pulls on his baseball cap and goes.,rips the tiny piece out in front of someone's hands.,rushes over to leave someone who sits looking after her.,goes forward with his utility knife.,0\n10256,lsmdc1012_Unbreakable-6884,17227,He puts his towel away and glances to his right. An older man,He puts his towel away and glances to his right.,An older man,gold,applies bubbles from his nose.,knocks on a window.,is in the doorway.,knocks the step forward.,2\n10257,lsmdc1012_Unbreakable-6884,17219,\"She makes a note and puts down the pen, still without looking at him. She\",\"She makes a note and puts down the pen, still without looking at him.\",She,gold,\"sits on his back, turns the pages on.\",\"returns to her work, still ignoring him.\",opens her book and someone reaches for his phone.,\"moves around and sits down, pretending to read as he goes.\",1\n10258,lsmdc1012_Unbreakable-6884,17224,He captures the ball thrown from behind and dives over the line. He,He captures the ball thrown from behind and dives over the line.,He,gold,goes to the far end and cuts an object off into the distance.,goes into the fight as the goalie by the red hits and gallops fast.,tosses the ball to another player and trots back again.,fails and walks onto the diving board.,2\n10259,lsmdc1012_Unbreakable-6884,17232,A clock on the other side of the bed says a quarter to one. Someone,A clock on the other side of the bed says a quarter to one.,Someone,gold,presses the phone to his ear.,\"clicks their fingers, while a murmur of concentration plays.\",stands at his wife's closed door.,\"the edge of the stairs, someone stomps in front of a mirror, lined up for his work besides the seating.\",2\n10260,lsmdc1012_Unbreakable-6884,17218,She picks up a pen. She,She picks up a pen.,She,gold,labels an address on the kitchen floor.,puts the bag down.,dives for a line beneath the dark bunk.,\"makes a note and puts down the pen, still without looking at him.\",3\n10261,lsmdc1012_Unbreakable-6884,17231,\"Someone, head on a pillow, looks sideways at his son who's sleeping peacefully. A clock on the other side of the bed\",\"Someone, head on a pillow, looks sideways at his son who's sleeping peacefully.\",A clock on the other side of the bed,gold,\"shows someone, now fully clothed.\",bounces up in the air.,pulls to his right.,says a quarter to one.,3\n10262,lsmdc1012_Unbreakable-6884,17225,\"Protected from the rain by the hood of his cape, someone sighs deeply. In the locker room, someone\",\"Protected from the rain by the hood of his cape, someone sighs deeply.\",\"In the locker room, someone\",gold,passes home window with a radio.,towels his head and face.,talks to someone's house.,works to assorted purchases.,1\n10263,lsmdc1012_Unbreakable-6884,17230,\"In a darkened room, a hand reaches out and switches on a bedside lamp. Someone, head on a pillow,\",\"In a darkened room, a hand reaches out and switches on a bedside lamp.\",\"Someone, head on a pillow,\",gold,begins reading over dramatically.,picks up a clear bottle and then run on a bedside table.,\"leans through the curtains, coming up the stairs holding the second, and then we hear someone whispering.\",looks sideways at his son who's sleeping peacefully.,3\n10264,lsmdc1012_Unbreakable-6884,17223,\"One player suddenly erupts into a sprint, sidestepping opponents without losing speed. He\",\"One player suddenly erupts into a sprint, sidestepping opponents without losing speed.\",He,gold,is dragged by the base of the contestant.,\"tries on the pole mnu motion rebels, though a refuge in the pursuit.\",pauses as someone tries to cheer again as he hugs a young man by the head with it.,captures the ball thrown from behind and dives over the line.,3\n10265,lsmdc1012_Unbreakable-6884,17226,\"In the locker room, someone towels his head and face. He\",\"In the locker room, someone towels his head and face.\",He,gold,moves forward and someone listens.,kicks the fan from the spray bottle.,puts his towel away and glances to his right.,breaks into a grin.,2\n10266,lsmdc1012_Unbreakable-6884,17221,He pulls on his baseball cap and goes. A cape hooded figure,He pulls on his baseball cap and goes.,A cape hooded figure,gold,\"watches, riding the long board across the water beside him.\",with large features overlaid splayed over one railway.,hangs from a wire supporting an asian man.,stands motionless in an archway silhouetted black against the teeming rain.,3\n10267,anetv_MC0L0ljTUiw,4120,\"She puts her arms out, shaking her hips to music. When she is done, she\",\"She puts her arms out, shaking her hips to music.\",\"When she is done, she\",gold,turns around and stands up shaking in his hands.,has her wand drawn off.,smiles and points toward the camera with both hands.,steps closer and kisses his temple.,2\n10268,anetv_MC0L0ljTUiw,2820,A woman walks into a room as people watch. She,A woman walks into a room as people watch.,She,gold,adjusts the settings on the couch.,goes into a pose and begins dancing.,is sitting down in a chair.,kicks the snow off of the women.,1\n10269,anetv_MC0L0ljTUiw,2821,She goes into a pose and begins dancing. She,She goes into a pose and begins dancing.,She,gold,performs several belly dancing moves as she dances.,kicks a ball up the wooden bars and is seen once again performing by dancing with a man that he has fun.,stops dancing and starts belly dancing.,finishes the song by taking out her phone and stops playing.,0\n10270,anetv_MC0L0ljTUiw,4119,A woman walks gracefully into a room wearing a belly dancer outfit. She,A woman walks gracefully into a room wearing a belly dancer outfit.,She,gold,\"puts her arms out, shaking her hips to music.\",poses with the young ballerina baton and striking a pose.,starts hula hooping with her legs above the camera.,walks in front of a host of dogs as she gets out of the studio.,0\n10271,anetv_CsvEXvHlO3M,18057,A man is seen smiling to the camera and leads into several clips of people walking with tubes. A person,A man is seen smiling to the camera and leads into several clips of people walking with tubes.,A person,gold,\"holds their skateboard in their hands as they continue to ride around, as well as performing tricks.\",rides down a snowy hill with a child on a tube.,continues riding down a mountain while sitting in a kayak.,pushes the pucks all along the water and continues to use while pushing themselves along the water.,1\n10272,anetv_CsvEXvHlO3M,16570,People are going down a hill in a tube. A baby,People are going down a hill in a tube.,A baby,gold,is sitting in a tube going down the hill.,in the river is interviewed.,jumps off of the diving board.,is starting to fall in sync.,0\n10273,anetv_CsvEXvHlO3M,16569,A man is standing in the snow. People,A man is standing in the snow.,People,gold,land in the skies behind them.,sail on a boarding amidst a small crowd.,is brushing his hair.,are going down a hill in a tube.,3\n10274,anetv_CsvEXvHlO3M,18058,A person rides down a snowy hill with a child on a tube. Several more shots,A person rides down a snowy hill with a child on a tube.,Several more shots,gold,are shown of him riding along the water as well as snowboarding down the hill.,are shown of people riding down the mountain and smiling to one another.,are shown of people riding on the trail as well as the water below.,are shown of the boys jumping down a hill in slow motion.,1\n10275,anetv__i6yjCO8nzQ,17532,A boy's gymnastics team lines up. They,A boy's gymnastics team lines up.,They,gold,work a name on an ad for a picture.,pick a line for kids and their boys.,are flying up in different momentum.,take turns doing flips down a mat.,3\n10276,anetv__i6yjCO8nzQ,11209,The men begin performing gymnastic tricks one after the other down a mat. The men,The men begin performing gymnastic tricks one after the other down a mat.,The men,gold,continue flipping and a man helping them at the end.,perform several martial arts moves in a gymnastics competition.,continue to cheer to the instructor.,\"switch to the mixing routine, then up and down ladder.\",0\n10277,anetv__i6yjCO8nzQ,11208,A large group of people are seen standing around with the audience clapping. The men,A large group of people are seen standing around with the audience clapping.,The men,gold,applaud and lead into a group of men standing across the stage on edge.,move to flip off stage and begin dancing with one another.,begin performing gymnastic tricks one after the other down a mat.,continue dancing while the camera pans around the woman exercising on the stage.,2\n10278,anetv_sIYRsGZm2XY,6,A man is smoking a hookah in a booth. A man in a suit,A man is smoking a hookah in a booth.,A man in a suit,gold,is holding a bowl of food.,walks back behind him.,demonstrates how to put a face in the window.,is standing in front of a fire in front of him.,0\n10279,anetv_sIYRsGZm2XY,8,A doctor is talking to the camera. Two women,A doctor is talking to the camera.,Two women,gold,are sitting behind a desk.,are sitting on front a table throwing knives.,are talking inside a large room.,are seen in a bar talking about the game.,0\n10280,anetv_sIYRsGZm2XY,7,A man in a suit is holding a bowl of food. A doctor,A man in a suit is holding a bowl of food.,A doctor,gold,shakes a mans hand.,speaks in front of him.,approaches with another man in his arms.,is talking to the camera.,3\n10281,anetv_sIYRsGZm2XY,11172,A man is seated inside a booth. He,A man is seated inside a booth.,He,gold,begins dealing the cards around an outdoor table.,is smoking from a hookah pipe.,is playing an acoustic saxophone.,is playing the instrument on the sidewalk.,1\n10282,anetv_B3fiiuk0EqE,15340,A man shovels snow from a driveway. The camera pans,A man shovels snow from a driveway.,The camera pans,gold,\"direction and show the rhythm of the house nearby, and continues several times.\",to help him hedge.,to a massive circular pole spanning up hills.,to show another man using an electric shoveling machine to clear show from his driveway.,3\n10283,anetv_B3fiiuk0EqE,15341,The camera pans to show another man using an electric shoveling machine to clear show from his driveway. The man,The camera pans to show another man using an electric shoveling machine to clear show from his driveway.,The man,gold,continues shoveling the snow from the sidewalk and's continuing shoveling the sides while speaking to the camera until his head gets obscured.,finishes clearing snow and turns to the camera.,pauses inside his garage and puts his torn dress on.,wets the shovel again using the gearing trimmer.,1\n10284,anetv_Yh9eGll8fYQ,10392,Two people are seen speaking to one another and leads into a man standing on the edge and jumping. The man's jump,Two people are seen speaking to one another and leads into a man standing on the edge and jumping.,The man's jump,gold,is shown again in slow motion and the man falls up.,is shown again times in slow motion followed by several more clips of people spinning and jumping.,is shown as well as the man throwing flips and tricks while moving his hands very quickly and past the camera.,is shown several times from different camera as he jumps off the side and back up again.,3\n10285,anetv_LTmYxVYBa90,11379,A group of people are sitting on camels in the sand beside a hill. A man,A group of people are sitting on camels in the sand beside a hill.,A man,gold,falls the slope with snow as he snowboards on the building.,is standing in front of a large bulge and his hundreds of hands.,stands kayaking in a river.,reaches for the chain on the camels mouth as the camel sits.,3\n10286,anetv_LTmYxVYBa90,11380,A man reaches for the chain on the camels mouth as the camel sits. The man in light blue,A man reaches for the chain on the camels mouth as the camel sits.,The man in light blue,gold,is handed the cushion.,pulls on the bottom part of the upper platform.,feeds the man hand to eat something.,assists the man in dark blue to untie.,3\n10287,anetv_DmTI8y6Anvo,12854,A basketball player is seen jumping under a basketball ball net and shooting a ball continuously at the net. She continues shooting and the video,A basketball player is seen jumping under a basketball ball net and shooting a ball continuously at the net.,She continues shooting and the video,gold,ends with the closing graphics shown on the screen.,ends with the closing medal being presented.,ends with various text across the screen.,ends with the closing captions shown on the screen.,2\n10288,anetv_4-BW75h1D1A,5581,The woman shakes her hips as she dances. Credits,The woman shakes her hips as she dances.,Credits,gold,appear on the screen.,play similar to the sound test.,dance in an d'oeuvre with another woman behind her.,lays on the floor as everyone looks up.,0\n10289,anetv_4-BW75h1D1A,5580,A woman in a white dress belly dances outside near columns and trees. The woman,A woman in a white dress belly dances outside near columns and trees.,The woman,gold,moves forward and presents the bride with flowers.,shakes her hips as she dances.,watches the woman eavesdrops and dance on the ocean.,stops singing and notices something in her hands.,1\n10290,lsmdc3064_SPARKLE_2012-4445,5045,As she plays on with her eyes closed someone steps out from the wings with a plate. It,As she plays on with her eyes closed someone steps out from the wings with a plate.,It,gold,grabs his hat and ruffles his hair.,\"arrives with her, rooted to the spot and watches her as she and the wind pelt her hair.\",\"bears a single serving cake with white frosting, lit with one candle.\",eats some of his cereal.,2\n10291,lsmdc3011_BLIND_DATING-1030,11160,A monitor shows a transmitter fitted in to someone's temple. Dr. Sato,A monitor shows a transmitter fitted in to someone's temple.,Dr. Sato,gold,sits on the stereo's top bunk and listens hard.,removes a power pack wired with a pair of modified sunglasses.,reaches for the back of someone's hand.,steers a boat into the light then over.,1\n10292,lsmdc3011_BLIND_DATING-1030,11152,\"Now, in recovery, someone lies with his eyes closed. A bandage\",\"Now, in recovery, someone lies with his eyes closed.\",A bandage,gold,hangs over someone's head.,\"flies from his face, beside someone and his in the backseat.\",\"wraps his head, and a tube and wire trail from his hand.\",is draped over a sheet lying on his chest.,2\n10293,lsmdc3011_BLIND_DATING-1030,11154,His chest rises and falls steadily. Someone,His chest rises and falls steadily.,Someone,gold,sinks to the tank.,lifts the bones hovering blind.,arrives outside the glass pane door.,\"gets out of his car and sits in his car with a satchel, string, and heavy handle wheel.\",2\n10294,lsmdc3011_BLIND_DATING-1030,11161,Dr. Sato removes a power pack wired with a pair of modified sunglasses. The tiny camera,Dr. Sato removes a power pack wired with a pair of modified sunglasses.,The tiny camera,gold,sinks down off someone.,points cautiously up the window at the two - by - two's.,sits mounted on the right lens.,catches light up the woman's cheek.,2\n10295,lsmdc3011_BLIND_DATING-1030,11149,Someone folds his hands in the waiting room. Someone,Someone folds his hands in the waiting room.,Someone,gold,watches him on the monitor.,gets up and leads her along the staircase.,fidgets in the waiting room.,raises hands and plugs him into an embrace.,2\n10296,lsmdc3011_BLIND_DATING-1030,11153,\"A bandage wraps his head, and a tube and wire trail from his hand. His chest\",\"A bandage wraps his head, and a tube and wire trail from his hand.\",His chest,gold,bears a mallet stuck to his wand.,rises and falls as she screams on the water.,rises and falls steadily.,\"lies one foot on his bleeding knee, his back to follow outside.\",2\n10297,lsmdc3011_BLIND_DATING-1030,11159,Someone crouches down beside a conscious someone as someone looks on. A monitor,Someone crouches down beside a conscious someone as someone looks on.,A monitor,gold,shows a transmitter fitted in to someone's temple.,of steps spreads across horned dirt.,shows someone gazes off the lookout new position.,fires at a approaching soldier.,0\n10298,lsmdc3011_BLIND_DATING-1030,11151,\"Inside, someone approaches the family. Now, in recovery, someone\",\"Inside, someone approaches the family.\",\"Now, in recovery, someone\",gold,watches someone with her arms folded.,approaches a diamond engagement.,lies with his eyes closed.,holds his thumbnail to the strain of mature eggs.,2\n10299,lsmdc3011_BLIND_DATING-1030,11150,\"A microscopic view shows blood flow along a Y - shaped pathway. In the waiting room, someone\",A microscopic view shows blood flow along a Y - shaped pathway.,\"In the waiting room, someone\",gold,taps the water under his glass.,lies beside a framed photo of himself.,puts on her glasses and exhales.,peeks over the hole of the door and gawks.,2\n10300,lsmdc3011_BLIND_DATING-1030,11147,Someone puts his arm around her. Someone,Someone puts his arm around her.,Someone,gold,wags his finger toward someone.,uses his cell phone.,holds him at gunpoint.,places her bent hand between her neck and legs.,1\n10301,lsmdc3011_BLIND_DATING-1030,11162,The doctors follow his gesture. It,The doctors follow his gesture.,It,gold,touches his temple as he turns to approach.,scratches the heads of his chin accidentally.,'s a hazy window.,\"raise two couples at his fingers, and the man points at his foot and gasps.\",2\n10302,lsmdc3011_BLIND_DATING-1030,11156,\"Wearing a peaceful gaze, she strides eagerly to his bedside. She\",\"Wearing a peaceful gaze, she strides eagerly to his bedside.\",She,gold,covers the coffee mug full of coffee.,throws an arm around his son and breaks into a muted embrace.,\"lets her brow brush his in a brief nuzzle, then straightens.\",looks up at the noises hovering overhead.,2\n10303,anetv_tBGeBbO8gh0,17717,They have made holes through the ice. They,They have made holes through the ice.,They,gold,push their bodies in a large hole.,are flaming cups out of a rock.,fish with long poles in the water.,are shown polo on the background.,2\n10304,anetv_tBGeBbO8gh0,10014,Three men are standing are outdoors standing around two holes ice fishing. The men,Three men are standing are outdoors standing around two holes ice fishing.,The men,gold,begin showing a cow throwing a flint outside the hole.,catch a large fish and pull it out of the hole.,are demonstrating different moves to make a bow.,are then shown sitting down onto the ice fishing.,1\n10305,anetv_tBGeBbO8gh0,17716,A couple of men are standing on an iced over lake. They,A couple of men are standing on an iced over lake.,They,gold,cut up a cake and put in the back of a fire.,are going through the river.,have made holes through the ice.,are rafting on the big tubes.,2\n10306,anetv_6EWzgWd72Cs,6966,There are two news reporters talking about dog grooming as part of their news segment. A lady dressed in a blue dress,There are two news reporters talking about dog grooming as part of their news segment.,A lady dressed in a blue dress,gold,is to wash a bucket to clean the ground.,is talking about the extreme dog grooming company that grooms dogs.,is practicing the exercise on a stationary bench.,is walking down the stairs.,1\n10307,anetv_6EWzgWd72Cs,880,People are Dying the dogs hair different colors by using some kind of liquid material. Then the dogs,People are Dying the dogs hair different colors by using some kind of liquid material.,Then the dogs,gold,move the third adult to turn around and then show each other.,can be shown away in a wind towards the christmas little party.,are being entered into a contest for the best groomed looking dogs.,\"nails, also removed and are shown in by joking and oil nails, after the person is finished drying the women's hair.\",2\n10308,anetv_6EWzgWd72Cs,6970,Some other dog is shown painted to resemble a zebra. The woman in blue,Some other dog is shown painted to resemble a zebra.,The woman in blue,gold,applies as if to a client dragged along with the drying - screen.,turns and looks back at the people going down the tube.,turns the child on the back in the mirror.,comes back to talk more about the dog grooming salon.,3\n10309,anetv_6EWzgWd72Cs,879,\"New reports are giving news about extreme dog grooming, people are cutting dogs hair and trimming there nails. people\",\"New reports are giving news about extreme dog grooming, people are cutting dogs hair and trimming there nails.\",people,gold,\"are shown trotting in intertubes, trying to not wake them on horses.\",are dying the dogs hair different colors by using some kind of liquid material.,\"are done in costco, applying dogs to a very annual training marathon at quick jump.\",\"are chasing a bowling ball in a big, indoor field.\",1\n10310,anetv_6EWzgWd72Cs,6968,She shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers. One lady,She shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers.,One lady,gold,comes to a garage and demonstrates how to do the dogs brush.,speaks to the camera.,grooms a poodle and then dyes its fur with different colors.,speaks and bows to the camera.,2\n10311,anetv_6EWzgWd72Cs,6967,A lady dressed in a blue dress is talking about the Extreme Dog Grooming company that grooms dogs. She,A lady dressed in a blue dress is talking about the Extreme Dog Grooming company that grooms dogs.,She,gold,shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers.,dog sits on a table and talks to the camera.,is doing the exterior to make a home column.,cuts the salon version of the blow dryer while explaining.,0\n10312,anetv_6EWzgWd72Cs,6969,Several kids sit with the dog and pet the dog as part of a behavioral therapy session. Some other dog,Several kids sit with the dog and pet the dog as part of a behavioral therapy session.,Some other dog,gold,flips together like a horse.,is being led by the dog around the beach.,is shown painted to resemble a zebra.,skirts around hers practicing the dog back.,2\n10313,anetv_aBmKEmXVCqM,257,A man is standing on a elliptical working out. He,A man is standing on a elliptical working out.,He,gold,comes down a track and begins talking.,begins sharpening the knives with a knife.,moves his arms back and forth.,is playing a violin with an electric electric guitar.,2\n10314,anetv_aBmKEmXVCqM,258,He moves his arms back and forth. There,He moves his arms back and forth.,There,gold,is a lake behind him.,he hurriedly lumbers down the stairs as the water rises as water spills toward them.,is a nervous smile and he walks to her and opens her eyes.,\", the man lowers his body and plays a beat.\",0\n10315,lsmdc0017_Pianist-56178,14399,\"Again someone tries, but someone, her profile to him, does n't see. He\",\"Again someone tries, but someone, her profile to him, does n't see.\",He,gold,appears on the television screen with his father's name on the screen.,shows his teeth together.,follows behind her as she walks past the campus.,goes back to work.,3\n10316,lsmdc0017_Pianist-56178,14404,\"He jumps down, is about to dash towards someone, but stops dead. Someone\",\"He jumps down, is about to dash towards someone, but stops dead.\",Someone,gold,takes the sound beside it.,\"throws hands, a white table.\",is no longer there.,jams a barrel into the orb.,2\n10317,lsmdc0017_Pianist-56178,14400,He goes back to work. The German policemen,He goes back to work.,The German policemen,gold,have opened front of the spanish ruins.,wander over to one of the stalls to buy fruit.,are stepping on quiet piles of books.,sit at the train site.,1\n10318,lsmdc0017_Pianist-56178,14403,He comes to a decision. He,He comes to a decision.,He,gold,pulls himself out of the darkness.,pushes himself up and doubles over.,\"jumps down, is about to dash towards someone, but stops dead.\",turns away and wanders out to the basin.,2\n10319,lsmdc0017_Pianist-56178,14401,The German policemen wander over to one of the stalls to buy fruit. Someone glances across the square: someone,The German policemen wander over to one of the stalls to buy fruit.,Someone glances across the square: someone,gold,linger on the window opposite end of the observation porch.,is still at the stall.,sees nestor right through a barrier of tents.,hands the man photos to someone.,1\n10320,anetv_ZKtjyZhRB6E,3656,A group of older people are seen sitting on a bus speaking to one another. The camera,A group of older people are seen sitting on a bus speaking to one another.,The camera,gold,pans around to show the kids walking away.,pans to show several people riding horses in a gym.,pans around the bus to show more people sitting and speaking.,is then seen in a container while the inflatable is shown in several clips people using snow to cut in.,2\n10321,anetv_ZKtjyZhRB6E,3657,The camera pans around the bus to show more people sitting and speaking. A woman,The camera pans around the bus to show more people sitting and speaking.,A woman,gold,is seen speaking to a man next to her while he knits.,is seen speaking to the camera followed by a boy riding a rough wave with the help of a woman.,smokes and demonstrates how to properly hit the swing with the racket several times while taking a mat and laying in the field.,talks to the camera and leads into a camera that leads into people riding beach skiers.,0\n10322,anetv_xzmcOKHP-sM,7680,We see hospital scenes then a room of women knitting and a lady talking. We,We see hospital scenes then a room of women knitting and a lady talking.,We,gold,see kids looking through and wearing the knitted hats.,speaks to a male man in a bar talking and demonstrating various dance moves.,see the ending screen title and accompanies.,see the screen for a video for a video about the performance.,0\n10323,anetv_xzmcOKHP-sM,7679,We see a hospital in an opening scene. We,We see a hospital in an opening scene.,We,gold,see the ladies moping a floor and part of the room.,see a couple of men drinking a drink.,see hospital scenes then a room of women knitting and a lady talking.,see a surfer with a string.,2\n10324,anetv_xzmcOKHP-sM,7346,A woman then talks to the camera. Several people,A woman then talks to the camera.,Several people,gold,do arts and craft.,are shown segment of water.,jump out of a locker.,are talking in the background.,0\n10325,anetv_xzmcOKHP-sM,7682,We see people looking through and wearing the hats. A lady,We see people looking through and wearing the hats.,A lady,gold,reaches down squares and starts eating a soda.,stands behind a desk demonstrating the proper way to approach the wheel while a girl dances with the people behind the more players.,pulls a black dress off a tower mirror.,walks down a hallway with the hats in a wagon.,3\n10326,anetv_xzmcOKHP-sM,7684,We see a boy in a mask wearing the hat. We,We see a boy in a mask wearing the hat.,We,gold,see something and being engulfed.,see a man ski off a ski.,see arrows and arrow from various angles.,see the ending screen.,3\n10327,anetv_xzmcOKHP-sM,7681,\"We see a lady talking we see the hats, people knitting, and the lady talks again. We\",\"We see a lady talking we see the hats, people knitting, and the lady talks again.\",We,gold,see a lady being interviewed and we see him briefly.,see people looking through and wearing the hats.,see a group of children filled large inflatable rings.,see a black title screen in pictures.,1\n10328,anetv_xzmcOKHP-sM,7345,People walk through a large lobby. A woman then,People walk through a large lobby.,A woman then,gold,works on top when coming down the ladder.,\"bends down and picks up the groceries, taking off their expensive clothes.\",rides down a sidewalk.,talks to the camera.,3\n10329,lsmdc3067_THE_ART_OF_GETTING_BY-32129,16871,Someone touches someone's leg. He,Someone touches someone's leg.,He,gold,rests his cheek on his foot.,knocks the man off.,jolts spilling his beer.,smears crumbs down on his cheek.,2\n10330,lsmdc1039_The_Queen-88159,12171,\"Someone climbs into bed next to someone. Thursday, someone\",Someone climbs into bed next to someone.,\"Thursday, someone\",gold,begins to take two tickets from her pocket.,sees a light hanging inside the door and holds the gun down.,hurries past another woman.,\"sits in bed, watching tv.\",3\n10331,lsmdc1039_The_Queen-88159,12172,\"Thursday, someone sits in bed, watching tv. Newspapers\",\"Thursday, someone sits in bed, watching tv.\",Newspapers,gold,photos show: naked.,are strewn all over someone's bed.,- dimensional photos show in the tv zookeeper's office.,earrings he breaks up highlighting someone's credit.,1\n10332,anetv_hL11sP4Hlrg,182,A person is then seen wiping polish onto a pad and rubbing the object all over her nails. She then,A person is then seen wiping polish onto a pad and rubbing the object all over her nails.,She then,gold,adds a paint brush along the wood and puts them on top end.,lifts it back up down again while still speaking to the camera.,puts a coating over the nail and shows it off again.,applies the polish along it and ends with polish and false nails.,2\n10333,anetv_hL11sP4Hlrg,3314,Someone is adding nail polish to a sponge to create an ombree paint. then a thin layer of paint in the sponge,Someone is adding nail polish to a sponge to create an ombree paint.,then a thin layer of paint in the sponge,gold,is shown to cut the top of the pumpkin.,is cleaned with dried metal.,hits the smaller object and turns it on top.,is put in the nails and two more layer.,3\n10334,anetv_hL11sP4Hlrg,181,A close up of nails are seen followed by a shot of brushes and nail polish. A person,A close up of nails are seen followed by a shot of brushes and nail polish.,A person,gold,is shown coming in a jump throw with cutting about her course followed by speaking to her and showing off several points.,is seen bending down and putting an face down using polish.,is then seen wiping polish onto a pad and rubbing the object all over her nails.,holds a pumpkin across the screen and begins cutting the nails.,2\n10335,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5338,Someone sits on a swing lost in thought. He,Someone sits on a swing lost in thought.,He,gold,sees his cousin someone with his gang.,picks it up and dashes off his bag then answers it.,runs to a charred door and shuts it.,looks out the window.,0\n10336,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5336,\"Cars speed along a duel carriageway beside a field, where the grass is scorched and dry. A teenage boy, someone,\",\"Cars speed along a duel carriageway beside a field, where the grass is scorched and dry.\",\"A teenage boy, someone,\",gold,watches from the table.,sits on a bulldog in the corner of someone's whimpering.,walks across the field.,walks down the aisle.,2\n10337,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5337,\"A teenage boy, someone, walks across the field. A boy\",\"A teenage boy, someone, walks across the field.\",A boy,gold,pauses on his way.,pours something under his nose.,gets off the roundabout.,\"lies in his garage, between two beams.\",2\n10338,anetv_a0bj_vVpK9s,10648,A man pushes a tube down a hill. Another person,A man pushes a tube down a hill.,Another person,gold,turns off his skateboard.,walks on the snow.,is riding through the water on top of a hill.,sleds down the hill on a tube.,3\n10339,anetv_a0bj_vVpK9s,10649,Another person sleds down the hill on a tube. A person in a red jacket,Another person sleds down the hill on a tube.,A person in a red jacket,gold,leads the person down a hill.,is shown skiing down a hill.,is standing on a snow covered slope.,is standing at the bottom.,3\n10340,lsmdc0002_As_Good_As_It_Gets-46472,12412,He rises and makes an awkward exit. She,He rises and makes an awkward exit.,She,gold,is trying to express her gratitude.,shoots into a taxi.,holds up a knife.,takes someone from a jacket.,0\n10341,lsmdc0002_As_Good_As_It_Gets-46472,12413,She is trying to express her gratitude. An enormous sheaf of completed pages,She is trying to express her gratitude.,An enormous sheaf of completed pages,gold,fill the criss - cycle equipment.,sit next to her.,is tossed into a dirt scraping debris and eventually stops on the tracks as a countdown appears.,grow homes in a single cardboard bucket in the next room.,1\n10342,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1589,3696,\"Inside, He throws the boot on the table. The Sheriff\",\"Inside, He throws the boot on the table.\",The Sheriff,gold,sits facing a few burly men.,chases the man through the collar.,looks down at the baby mouse.,knocks himself down on the floor.,0\n10343,anetv__vUE7PhDBcA,6221,He sprays himself with water while continuing to run. He,He sprays himself with water while continuing to run.,He,gold,continues making and losing the castle evenly.,rides through a tall crop.,continues speaking to the camera while running all over.,draws on the stone surface and continues.,2\n10344,anetv__vUE7PhDBcA,6220,A man is shown running down a track and smiling to the camera. He,A man is shown running down a track and smiling to the camera.,He,gold,rides down the track back to the score and up on her.,continues riding down the slopes while others watch.,skates around the track and continues skating.,sprays himself with water while continuing to run.,3\n10345,anetv__vUE7PhDBcA,17380,A man is running in a field. The man,A man is running in a field.,The man,gold,drinks from a water bottle.,stands on the field.,turns around and lighting a cow.,runs to the other end of the rope and it lands in the field.,0\n10346,anetv_OFe8toY6Ch4,4201,After other men throws the heavy ball. Next a man,After other men throws the heavy ball.,Next a man,gold,throws a heavy ball that goes very fast and hits other balls.,flies up and hits the ball with his head.,in the top shows a scale strength advantage and lay on top.,grabs up a watch drill until scored.,0\n10347,anetv_OFe8toY6Ch4,4200,\"Then, a woman throws the ball and other women brush the floor. After other men\",\"Then, a woman throws the ball and other women brush the floor.\",After other men,gold,are cleaning the fence.,get out to the table and watch a game.,grab guns and throws the ball to each other.,throws the heavy ball.,3\n10348,anetv_OFe8toY6Ch4,4321,An animated white title screen with a logo is shown. A man,An animated white title screen with a logo is shown.,A man,gold,talks about how to cut skin up nails.,is shown wearing a ski mask.,from the camera watch her in the background.,\"walks away from the camera frame, transitioning to a white screen with a logo.\",3\n10349,lsmdc3004_500_DAYS_OF_SUMMER-1703,6129,He's drawn a girl holding a dagger dripping blood. Brother and sister,He's drawn a girl holding a dagger dripping blood.,Brother and sister,gold,look at one another.,are brushing his own teeth in soap.,knock themselves down on the floor.,leap out of the car and swim around locker room.,0\n10350,lsmdc3004_500_DAYS_OF_SUMMER-1703,6127,\"Someone stops, realizing he's alone in appreciating someone's performance. Someone\",\"Someone stops, realizing he's alone in appreciating someone's performance.\",Someone,gold,puts himself in on his hat.,feebly reaches for the coffee at the table and slips it into his pocket.,\"exits the lift past a sign that reads, thank you for 75 years.\",shifts his lips in a choreographed twist.,2\n10351,anetv_B_PhHrBEeNI,13698,Several shots are shown of a band playing together on stage and a man speaking to the camera and playing the harmonica. The man,Several shots are shown of a band playing together on stage and a man speaking to the camera and playing the harmonica.,The man,gold,continues speaking while playing the harmonica while still showing clips of the band playing.,continues speaking to the camera and the man continues holding up dough while still speaking to the camera.,continues to play the saxophone while holding his mouthpiece and speaks to the camera.,continues playing the saxophone while the camera captures his movements.,0\n10352,anetv_B_PhHrBEeNI,4032,A man is seen speaking to the camera and begins playing on a stage with people. He then,A man is seen speaking to the camera and begins playing on a stage with people.,He then,gold,moves around a large area and shows several clips from the camera.,plays the harmonica while speaking and showing clips of him singing.,\"sits down on the floor and begins playing, singing and singing again.\",drinks his water and pouring liquid into the cups before speaking to the camera.,1\n10353,anetv_B_PhHrBEeNI,4033,He then plays the harmonica while speaking and showing clips of him singing. He,He then plays the harmonica while speaking and showing clips of him singing.,He,gold,continues playing with his shirt and ends with text.,plays the instrument with her hands and continues speaking.,continues to play his instrument with a different bow as he watches.,continues to speak and play as well as showing him on stage.,3\n10354,lsmdc1019_Confessions_Of_A_Shopaholic-80756,9273,Someone leaves her to it. She,Someone leaves her to it.,She,gold,leans back to a chair.,peers blankly at someone.,spots an attendant and hostess.,kisses him from behind.,1\n10355,lsmdc1019_Confessions_Of_A_Shopaholic-80756,9275,Someone glancing oversees him waiting for an answer. She,Someone glancing oversees him waiting for an answer.,She,gold,slaps someone's face.,\"sways on him, unaware.\",takes her coat in hand as they jump to the door.,closes her eyes and waves.,0\n10356,lsmdc1019_Confessions_Of_A_Shopaholic-80756,9276,\"She slaps someone's face. Someone, pouring champagne,\",She slaps someone's face.,\"Someone, pouring champagne,\",gold,rushes out to join them.,misses the glass as she watches in horror.,\"closes his mouth, does n't speak.\",holds his arms out and aim behind a drink.,1\n10357,lsmdc1019_Confessions_Of_A_Shopaholic-80756,9274,She peers blankly at someone. Someone glancing,She peers blankly at someone.,Someone glancing,gold,\"aside, then bows.\",oversees him waiting for an answer.,swirling in his left direction brings his hand back his foot and stops when he hears something strange.,between the ar and the case.,1\n10358,anetv_33SI8z8PovA,16995,A black female is shown in a room with a black scarf around her head. Black spots on her faced are then zoomed in on and she,A black female is shown in a room with a black scarf around her head.,Black spots on her faced are then zoomed in on and she,gold,begins to apply something on it.,puts her arm around the bristle do turn on the snowboard.,begins toward the camera with hula hoops.,begins to blow dance.,0\n10359,anetv_33SI8z8PovA,16996,\"Black spots on her faced are then zoomed in on and she begins to apply something on it. Next, she takes some spray and it makes her skin extremely oily and she\",Black spots on her faced are then zoomed in on and she begins to apply something on it.,\"Next, she takes some spray and it makes her skin extremely oily and she\",gold,brushes this out from a fingernail.,continues to talk until the video is over.,looks herself in the mirror and flings in several different dresses and sections.,puts some blush in her brush sealife.,1\n10360,lsmdc0013_Halloween-53623,13793,People continue walking down the street. Someone,People continue walking down the street.,Someone,gold,reacts and walks out of the mall.,breaks stride and runs across the street.,is running to a street set.,walks away to where he is holding his headphones.,1\n10361,lsmdc0013_Halloween-53623,13792,\"As she walks back to someone at the street the shape moves to watch them, then fades back into the interior of the house. People\",\"As she walks back to someone at the street the shape moves to watch them, then fades back into the interior of the house.\",People,gold,are sleeping the roof of the military hut.,continue walking down the street.,\"sit on the sidelines, observing and laughing.\",were fighting in the middle of street bordering a small obstacle on the street as the front row cruises by.,1\n10362,lsmdc0013_Halloween-53623,13787,Someone walks through the front gate and starts up toward the porch. Someone,Someone walks through the front gate and starts up toward the porch.,Someone,gold,\"follows, wonders if she wants it.\",strolls up to the front porch.,\"walks across the bed to her window, smiling softly.\",\"looks to herself as she eyes someone as he pulls away, wearily.\",1\n10363,lsmdc0013_Halloween-53623,13786,Someone holds up a key. Someone,Someone holds up a key.,Someone,gold,walks through the front gate and starts up toward the porch.,shoves the door open.,hurries away stairs and joins someone on someone's bed.,wakes up with a start.,0\n10364,lsmdc0013_Halloween-53623,13794,Someone breaks stride and runs across the street. We,Someone breaks stride and runs across the street.,We,gold,shoot through the brightness from the ship's occupants.,see someone walking off down the street in the distance.,submarine demurely up the front and back as each gun gets dragged below.,\"silently topple, a baby past, then hangs and falls on the ground.\",1\n10365,lsmdc0013_Halloween-53623,13788,Someone strolls up to the front porch. She,Someone strolls up to the front porch.,She,gold,winks and enters off with a sour look on his face.,\"bends down, lifts the welcome mat and places the key under it.\",opens her door to find marley dead on the dirt.,spots him from the nearby window and grins at the door.,1\n10366,lsmdc0013_Halloween-53623,13790,\"Through a frost window, we see someone bending over the welcome mat. Suddenly a dark shape, the outline of a man,\",\"Through a frost window, we see someone bending over the welcome mat.\",\"Suddenly a dark shape, the outline of a man,\",gold,pops up through the timbers and glimpses someone in the bedroom.,is in the burning present by a circus board.,sits erect by the crowd of the students.,\"leans forward, watching her.\",3\n10367,lsmdc0013_Halloween-53623,13789,\"She bends down, lifts the welcome mat and places the key under it. Through a frost window, we\",\"She bends down, lifts the welcome mat and places the key under it.\",\"Through a frost window, we\",gold,glimpse the figure of moving appraisingly on the train.,see a bunch of employee kids.,see two uniformed policemen walking a hospital corridor.,see someone bending over the welcome mat.,3\n10368,lsmdc0013_Halloween-53623,13791,\"Suddenly a dark shape, the outline of a man, leans forward, watching her. As she walks back to someone at the street the shape moves to watch them, then\",\"Suddenly a dark shape, the outline of a man, leans forward, watching her.\",\"As she walks back to someone at the street the shape moves to watch them, then\",gold,clutching another small dog to her left and puts her head on someone's lap.,someone throws and reaches out to him.,walks in close to the window.,fades back into the interior of the house.,3\n10369,lsmdc0013_Halloween-53623,13785,\"They walk up to the front of the old, two - story someone house set back from the street. Someone\",\"They walk up to the front of the old, two - story someone house set back from the street.\",Someone,gold,holds up a key.,comes down the slide.,looks up towards the editor 'name devastation.,closes the door behind her.,0\n10370,anetv_laeOL4ipHck,16153,An introduction comes onto the screen for a video about vacationing. Some women,An introduction comes onto the screen for a video about vacationing.,Some women,gold,are swimming between people in the living room knitting something with the same functions.,join an instructor for performers and led to dance on the dance stage.,stand areas outside doing homework.,are shown playing volleyball on the beach while sending the ball back and forth.,3\n10371,anetv_laeOL4ipHck,16154,Some women are shown playing volleyball on the beach while sending the ball back and forth. The video,Some women are shown playing volleyball on the beach while sending the ball back and forth.,The video,gold,shows more city clips performing tricks and turning and ends with the interview seen on the screen.,ends with the closing caption shown across the screen.,continues as the girls continue to dance with one another as well as letting more fly.,ends with the team dressed in white uniform playing over hockey with a number of hockey players.,1\n10372,anetv_laeOL4ipHck,4785,They are engaged in a game of volleyball. They,They are engaged in a game of volleyball.,They,gold,shake hands and serve to a pitcher.,lob the ball back and forth over the net.,are playing lacrosse on a field.,cling to their competitive.,1\n10373,anetv_laeOL4ipHck,4784,A group of girls are on a sandy beach. They,A group of girls are on a sandy beach.,They,gold,are engaged in a game of volleyball.,shake hands on ice on the ground.,run down the beach and throw the ball towards the water.,run and swim across the ice.,0\n10374,anetv_RUAWJc2OIJY,18393,\"He shows a video of a man break dancing, he brings this man out on the stage. The audience claps for him and him and Steve\",\"He shows a video of a man break dancing, he brings this man out on the stage.\",The audience claps for him and him and Steve,gold,cheers on more times.,talk for a little while.,are shown falling down behind him.,do the sit ups.,1\n10375,anetv_RUAWJc2OIJY,7075,Two men shake hands and the audience claps. The man,Two men shake hands and the audience claps.,The man,gold,picks up a weight and hands it to the man.,stands and claps his hands.,prepares to perform dance participants on an arched platform.,starts to dance on the stage.,3\n10376,anetv_RUAWJc2OIJY,18392,\"Steve harvey on his talk show talking to the audience and clapping his hands while he speaks. He shows a video of a man break dancing, he\",Steve harvey on his talk show talking to the audience and clapping his hands while he speaks.,\"He shows a video of a man break dancing, he\",gold,hustles past people dancing.,stops using the energetic fetch bear.,shows entire badminton selfies.,brings this man out on the stage.,3\n10377,anetv_RUAWJc2OIJY,7074,A man in a suit is talking to the camera. A man,A man in a suit is talking to the camera.,A man,gold,\"is standing behind a bar on a skateboard, sitting in front of a roller.\",starts break dancing on the floor.,starts skateboarding with another man wearing stilts.,is kneeling on a platform outside the gym.,1\n10378,lsmdc3045_LAND_OF_THE_LOST-21324,947,\"He picks up a rock and throws it at her. With a hurt gaze, someone\",He picks up a rock and throws it at her.,\"With a hurt gaze, someone\",gold,glares again and speaks quince good - bye.,kisses the screw driver's head and opens it.,\"walks down the steps, past grumpy.\",leaps out diamond weld bordering the train.,2\n10379,lsmdc3045_LAND_OF_THE_LOST-21324,944,Someone notices the dot of his laser pointer on his chest. It,Someone notices the dot of his laser pointer on his chest.,It,gold,has a nearby fixed sketch of someone.,\"bends forward, trying to catch him.\",pulls itself up and drags it away.,works its way up to his forehead.,3\n10380,anetv_Rvx2EoMScKg,10176,A boy sits down at a keyboard in a room. The person,A boy sits down at a keyboard in a room.,The person,gold,pauses by the right corner of the room and holds his right hand then taps him directly on the counter.,plays a song on the keyboard.,moves his drums on drum sticks while still recording his play.,takes the iron and applies lotion to the shoe.,1\n10381,anetv_Rvx2EoMScKg,10862,A boy plays piano in a living room where there are two people. A person,A boy plays piano in a living room where there are two people.,A person,gold,picks with instruments and a camera captures.,is holding a string to the piano.,next to the boy film the boy playing the piano.,plays guitar as the guy plays the guitar.,2\n10382,anetv_Rvx2EoMScKg,10177,The person plays a song on the keyboard. The friends,The person plays a song on the keyboard.,The friends,gold,plays with the camera at the end.,play a long montage on stage.,continue playing on each other as they play.,watch as the boy plays a song.,3\n10383,anetv_Rvx2EoMScKg,10178,The friends watch as the boy plays a song. The boy,The friends watch as the boy plays a song.,The boy,gold,leans closer to the person.,picks up motion with a stick to play.,blows off and grabs a plastic bag.,gets frustrated and leans forward after he stops playing.,3\n10384,anetv_Rvx2EoMScKg,10863,\"A person next to the boy film the boy playing the piano. then, boy\",A person next to the boy film the boy playing the piano.,\"then, boy\",gold,plays the drums and dance with a tool.,talk behind the boy.,stops playing and playing in the background.,plays a red bag as he and other boy play instruments.,1\n10385,anetv_HktZZPJMU8s,2281,\"Then, the man opens the legs and practice Tai Chi miving his whole body. After, the man moves around his upped body, then he\",\"Then, the man opens the legs and practice Tai Chi miving his whole body.\",\"After, the man moves around his upped body, then he\",gold,holds an instrument displaying his legs.,gets a fifth camera forwards.,moves around while holding the rod.,lifts weights and drops the weights straight to his chest.,2\n10386,anetv_HktZZPJMU8s,19878,He then begins dancing around the room with the object moving his body all around. He,He then begins dancing around the room with the object moving his body all around.,He,gold,continues to move around the room with his body.,continues dancing up the side while stopping to speak to the camera.,continues down the entire while holding his arms up while looking off into the distance.,leads into a game of it hitting a player on a rope.,0\n10387,anetv_HktZZPJMU8s,19877,A man is seen standing in front of the camera with an object in his hands. He then,A man is seen standing in front of the camera with an object in his hands.,He then,gold,shows the camera several times several times and zooms it back into the container.,continues throwing the ball up and down while continuing to speak.,begins dancing around the room with the object moving his body all around.,dives off of a second board and flips the board in the end.,2\n10388,anetv_v0NEZPgjcXI,11989,\"A video game for wwe professional wrestling starts, showing a three on one match. The player controlling Roman Reigns hits a big move on his opponent, and his team\",\"A video game for wwe professional wrestling starts, showing a three on one match.\",\"The player controlling Roman Reigns hits a big move on his opponent, and his team\",gold,'s team burns the match.,fights his passage between concentration and replayed.,comes in for a big coordinated attack.,before urinating on down a table.,2\n10389,anetv_WWyGnNfcj8Q,14919,A man is seen decorating a cake blindfolded while a small group of people watch. The man,A man is seen decorating a cake blindfolded while a small group of people watch.,The man,gold,continues to curl leaves in place while the camera pans around to all of movements.,continues to skate around a road as well as winner watch his shoes.,pans to different objects as well as text in the end.,adds frosting to the cake while others continue to watch as well as other ingredients.,3\n10390,lsmdc1014_2012-79028,15543,\"Someone can see them from the dressing room. Someone, the waiter,\",Someone can see them from the dressing room.,\"Someone, the waiter,\",gold,runs from the room past someone.,pours someone the double.,takes a seat at a table facing the restaurant.,is on his way back from the doorway.,1\n10391,anetv_TI3WqIauOYs,1867,A man takes off his shirt. He,A man takes off his shirt.,He,gold,drops a weight to the floor in front of him.,is crossing his arms using a sword and physical strength.,starts doing karate moves on a blue mat.,picks up a bottle and sprays it with his foot.,2\n10392,anetv_TI3WqIauOYs,1868,He starts doing karate moves on a blue mat. He,He starts doing karate moves on a blue mat.,He,gold,\"presses a camera, also holding a pole in his hand.\",starts doing his karate moves.,\"turns over the machine and walks around, looking off at the end before walking off.\",does several flips in the air.,3\n10393,anetv_94w7SEcPDho,12463,Man is standing on a side of the path next to his bicycle. in the start people,Man is standing on a side of the path next to his bicycle.,in the start people,gold,are driving down the path.,are sitting on exercise bikes.,are standing by the car.,are skiing on 2014.,0\n10394,anetv_94w7SEcPDho,14792,It goes up and down hills. They,It goes up and down hills.,They,gold,figure of a baby in had shimmies by an old couple.,'ve squares on the fallen tree.,mounted her crazed costume comes racing against the ledge.,pass another biker on the trail.,3\n10395,anetv_94w7SEcPDho,14791,A bike is going down a dirt track. It,A bike is going down a dirt track.,It,gold,is using the trimmer to cut the bike in half.,goes up and down hills.,graphic is shown and on.,was in bangs at home.,1\n10396,anetv_94w7SEcPDho,12462,Man riding a bike is going down a dirty path. man,Man riding a bike is going down a dirty path.,man,gold,is laying down snow on the floor.,is standing on a side of the path next to his bicycle.,is running in a house walking along a dirt highway.,is sitting in front of a bar talking to the camera.,1\n10397,anetv_94w7SEcPDho,14793,They pass another biker on the trail. The,They pass another biker on the trail.,The,gold,get back to the finish line.,girls run out of the range.,reporter speaks to the viewers.,zombie drops out of the view.,0\n10398,lsmdc1044_Pride_And_Prejudice_Disk_Two-89705,8800,Someone sets the music out for her. Then she,Someone sets the music out for her.,Then she,gold,claps her hand and goes toward an apartment camp.,\"slides out of bed, siting by her daughter, not to cry.\",scans around herself and rests her head on an empty table.,makes her way across the room.,3\n10399,anetv_qlqF8K072UU,6495,\"A second participant perform long jump successfully in the competition. However, the third participant\",A second participant perform long jump successfully in the competition.,\"However, the third participant\",gold,allows another single giant green handle to rail competition in another attempt.,\"runs, but fails to perform the long jump.\",of a rope falls off.,is longer than an athlete from first training to fly a string.,1\n10400,anetv_qlqF8K072UU,8049,An athletic girl is seen standing ready and jumps down a long track into a pit. Many watch from the sidelines and men,An athletic girl is seen standing ready and jumps down a long track into a pit.,Many watch from the sidelines and men,gold,rake up the sand and score the athletic score.,follow her with the javelin.,make a snack throughout the field.,flip back and try to steer straight from reach.,0\n10401,anetv_qlqF8K072UU,6494,\"A woman runs on the track and then jumps long on a sand box, after she walks and a man shows her performance. A second participant\",\"A woman runs on the track and then jumps long on a sand box, after she walks and a man shows her performance.\",A second participant,gold,perform long jump successfully in the competition.,is dropped off in front of her.,\"performs a successful jump on a small parallel beam and doing flips, then she walks forward.\",pushes a frisbee to the final woman who walked by.,0\n10402,anetv_qlqF8K072UU,8050,Many watch from the sidelines and men rake up the sand and score the athletic score. Several more women,Many watch from the sidelines and men rake up the sand and score the athletic score.,Several more women,gold,are shown returning to measure a distance in the end.,are seen sitting around a table.,are seen running down the track into the pit with their score being shown immediately afterwards.,are shown running around on a lacrosse field and hitting the ball in the ground with shots of someone on the sidewalk.,2\n10403,anetv_Io8EwPbNUbE,7276,A video tutorial is shown of a family doing dishes at a campsite. Everything,A video tutorial is shown of a family doing dishes at a campsite.,Everything,gold,is shown swimming deserted.,is thrown into two buckets.,begin to form the correct location where they are shown on how to exercise.,is also talking about swimming.,1\n10404,anetv_cKFARm4dsws,8296,He kicks his feet back and forth getting pretty high. He just,He kicks his feet back and forth getting pretty high.,He just,gold,throws down on the ground and hits him twice.,enjoys his time swinging back and forth outside enjoying the day.,stands up and looks at the camera.,mounts the balls off as the audience gets more yelling.,1\n10405,anetv_cKFARm4dsws,8294,A little boy is getting on the swinging closing his little safety guard. He,A little boy is getting on the swinging closing his little safety guard.,He,gold,closes it and builds up some momentum to start going fast.,is wildly pushing the wall up.,shoots him in the neck.,go smoothly on his feet on the stairs also.,0\n10406,anetv_cKFARm4dsws,8295,He closes it and builds up some momentum to start going fast. He,He closes it and builds up some momentum to start going fast.,He,gold,does a break and seems quite happy when he falls off and the green warriors quickly run.,kicks his feet back and forth getting pretty high.,is completely holding his picture.,sends high balls off.,1\n10407,lsmdc3033_HUGO-15023,2152,The audience rises to its feet. He,The audience rises to its feet.,He,gold,works his way up behind it.,fishes some cash from someone.,readies his knife against the man.,nods to the audience then bows to someone.,3\n10408,lsmdc3033_HUGO-15023,2150,\"On stage, someone steps aside as a spotlight illuminates a curtain. The curtain parts and someone\",\"On stage, someone steps aside as a spotlight illuminates a curtain.\",The curtain parts and someone,gold,lowers it and ventures nervously over the railing.,steps very close to the water.,steps out of the elevator.,walks out wearing a tuxedo.,3\n10409,lsmdc3033_HUGO-15023,2151,The curtain parts and someone walks out wearing a tuxedo. The audience,The curtain parts and someone walks out wearing a tuxedo.,The audience,gold,men walk toward the podium.,watches with a flickering admiringly across his face.,rises to its feet.,is chained to the floor.,2\n10410,lsmdc3033_HUGO-15023,2149,\"Sitting with someone and someone, someone smiles as he applauds. On stage, someone\",\"Sitting with someone and someone, someone smiles as he applauds.\",\"On stage, someone\",gold,nods at his young mother and applauds.,faces a doctor's smiling daughters.,slows down and sprints off.,steps aside as a spotlight illuminates a curtain.,3\n10411,lsmdc3056_PUBLIC_ENEMIES-3212,10546,\"Now, someone faces the bars in the back of his cell. The lawyer, someone,\",\"Now, someone faces the bars in the back of his cell.\",\"The lawyer, someone,\",gold,opens the trunk on a tech.,stands in a courtyard.,leads the group to a priest.,sits in a corridor on the other side.,3\n10412,lsmdc3056_PUBLIC_ENEMIES-3212,10543,The hulking man leans to someone's ear. Someone,The hulking man leans to someone's ear.,Someone,gold,remains on the mangled wall.,\"scowls toward his cell, then heads over.\",pulls a record aside.,tucks inside and locks himself in a crate.,1\n10413,lsmdc3056_PUBLIC_ENEMIES-3212,10545,\"He waves two prisoners on. Now, someone\",He waves two prisoners on.,\"Now, someone\",gold,longingly reflects the soapy complexion.,lands in the x - jet.,\"enters someone's bedroom, and closes the door behind him.\",faces the bars in the back of his cell.,3\n10414,lsmdc3056_PUBLIC_ENEMIES-3212,10544,\"Someone scowls toward his cell, then heads over. He\",\"Someone scowls toward his cell, then heads over.\",He,gold,waves two prisoners on.,goes in toward the door.,leads someone to a bank.,maintains a sharp peering beyond its outer guardrail.,0\n10415,lsmdc3056_PUBLIC_ENEMIES-3212,10542,The lawyer nonchalantly follows a second guard farther ahead. The hulking man,The lawyer nonchalantly follows a second guard farther ahead.,The hulking man,gold,leans to someone's ear.,brings through a hanger in a gully behind people.,records her as she closes the door.,sits with his soldier around the two watch.,0\n10416,anetv_QRdQ8KIVf40,18051,A man and a child walk in a living room on back the table pool. A woman,A man and a child walk in a living room on back the table pool.,A woman,gold,walks with a stick next to the men.,sleeps next to a dog.,stands at a piano smoking a pipe.,is sitting on an elliptical.,0\n10417,anetv_ESlUzrtqC98,18909,A lady in pink picks up a ball off the ground. The man in white shirt,A lady in pink picks up a ball off the ground.,The man in white shirt,gold,is sitting in a chair.,picks up a ball off the ground.,is in a blue yellow uniform cheering for someone.,walks away from the camera.,1\n10418,anetv_ESlUzrtqC98,18911,The man in white picks up a ball. The lady in pink,The man in white picks up a ball.,The lady in pink,gold,suddenly hits a ball throw the ball.,needs to bend down to pick up a ball.,\"t then put the black shirt, the woman in red shirt sports a hat.\",is doing a high jump.,1\n10419,anetv_ESlUzrtqC98,18907,The camera is turned right side up. A group of people,The camera is turned right side up.,A group of people,gold,are playing beer pong.,are off at the side of the river.,are seen sitting around continuing to play croquet in the middle.,sit skating on street and darts.,0\n10420,anetv_ESlUzrtqC98,18906,The camera is on it's side. The camera,The camera is on it's side.,The camera,gold,continues around piercing the animal's face.,cuts shot in half.,zooms shot on the red motorcycle.,is turned right side up.,3\n10421,anetv_ESlUzrtqC98,2193,The camera is righted as the game continues. The video,The camera is righted as the game continues.,The video,gold,starts with the website.,ends with someone walking along a white trail.,ends with the one team getting two consecutive balls in cups.,matches the video of the woman playing the keyboard.,2\n10422,anetv_ESlUzrtqC98,18908,A group of people are playing beer pong. A lady in pink,A group of people are playing beer pong.,A lady in pink,gold,hit by a ball.,picks up a ball off the ground.,walks off playing his flute.,is walking on the sitting at an back desk.,1\n10423,anetv_ESlUzrtqC98,18912,The man in white drinks from a cup. The man and the lady,The man in white drinks from a cup.,The man and the lady,gold,walk with their hands raised towards the ready.,interact ping - pong.,blow the ice cream and pour cream to the kid's face.,jump up and down and hug.,3\n10424,anetv_BmZwZLKxHCY,17142,She puts on compact makeup from a case. She then,She puts on compact makeup from a case.,She then,gold,pierces fasten through another nail and holds the pliers stuck to her skin by waving her hands at the camera.,applies eye shadow and lipstick.,shows it to a doctor at the service entrance.,lights a pumpkin as she holds a shot cut and cut before serving it.,1\n10425,anetv_BmZwZLKxHCY,17141,A little girl is sitting in a rocking chair. She,A little girl is sitting in a rocking chair.,She,gold,begins to do a trick on a third swing.,puts on compact makeup from a case.,lifts up a letter and attaches it to the paper.,is holding some sort of balance ribbon.,1\n10426,anetv_-MldnTjJ-zE,526,A girl is standing next to a white horse. She,A girl is standing next to a white horse.,She,gold,gets up and walks away.,talks as she rides a horse with a single club.,is pulling a woman up and doing some rope tricks on the horse.,begins to brush the horse.,3\n10427,anetv_-MldnTjJ-zE,14258,She goes to the horses face and tries to brush but he moves his face to the other direction so she continues in different places. She,She goes to the horses face and tries to brush but he moves his face to the other direction so she continues in different places.,She,gold,looks to the camera in the kitchen.,walks around to the other side of the horse and starts brushing that side of him.,continues walking around the grass the camera goes over the side of the road to make her look failing work.,is riding in the distance as video is zooming along showing her very great sport.,1\n10428,anetv_-MldnTjJ-zE,14257,She steps back and talks about how she does it and then gets back to brushing. She goes to the horses face and tries to brush but he,She steps back and talks about how she does it and then gets back to brushing.,She goes to the horses face and tries to brush but he,gold,'s another shot of the horse.,does more practice at her.,continues telling her story.,moves his face to the other direction so she continues in different places.,3\n10429,anetv_-MldnTjJ-zE,14256,\"A little girl is standing next to a white horse, she is brushing the horse. She\",\"A little girl is standing next to a white horse, she is brushing the horse.\",She,gold,\"is walking behind the horse, brushing a horse in her tail.\",bend down to the horse to remove her legs.,\"takes the horse out followed by her arms, using her teeth and running down the horse's neck with hammer.\",steps back and talks about how she does it and then gets back to brushing.,3\n10430,anetv_-MldnTjJ-zE,527,She begins to brush the horse. She,She begins to brush the horse.,She,gold,wipes the horse away with her cloth.,the horse is blow into his mouth to dry off the horse.,walks around the horse and brushes the other side of the horse.,she reaches for the tether in the right hand and drops it on the ground.,2\n10431,anetv_YtPZMBePf5c,6308,\"The man teases the boy with a cone and lets the boy have it, only to be taken away again. The man then\",\"The man teases the boy with a cone and lets the boy have it, only to be taken away again.\",The man then,gold,\"proceeds to hit a pinata inside, all with a loop in his hand.\",puts ice cream on the cone and smiles at the boy while he walks away and other's watch.,plays the same games with others the other people watch on the side as the boy lets go of her hand.,slides to the level finally and then comes back to cut the game.,1\n10432,anetv_YtPZMBePf5c,6307,A man is seen swirling a stick around a pot while a young boy on the side watches him work. The man,A man is seen swirling a stick around a pot while a young boy on the side watches him work.,The man,gold,motions all along the instrument while looking off into the distance and stops to speak.,gets on the arm and throws himself while the man laughs he picks up several pieces of liquor and shakes it down.,\"teases the boy with a cone and lets the boy have it, only to be taken away again.\",walks on the logs into the pile.,2\n10433,anetv_6QImnhUemH0,12952,The man puts the mop into the blue mop bucket first and then he starts mopping. First he,The man puts the mop into the blue mop bucket first and then he starts mopping.,First he,gold,wipes himself with the towel in the can.,mops near the stove and the counter.,takes off the vacuum and ties the laces.,mops the mop of contac he is up to starts cutting and stroking it off his hand.,1\n10434,anetv_6QImnhUemH0,12953,First he mops near the stove and the counter. Then he,First he mops near the stove and the counter.,Then he,gold,puts some potatoes in the pan and leaves it at a pan.,\"adds another cupcake, pours it into line and cooks the mix in it when it begins with a heated drink.\",goes up and pulls a clipboard along alongside corridor.,mops on the floor that between the refrigerator and another counter.,3\n10435,anetv_6QImnhUemH0,12954,Then he mops on the floor that between the refrigerator and another counter. Then he,Then he mops on the floor that between the refrigerator and another counter.,Then he,gold,grabs a powder tank and and water went under a wall with it in the tank.,\"make a sudden for a drink, the weather of which that has several ingredients and plates and lemon.\",mops the center of the kitchen floor.,finds some type of metallic hot noodles with sponge and huts.,2\n10436,lsmdc3051_NANNY_MCPHEE_RETURNS-24521,11373,Someone joins her behind the counter. It,Someone joins her behind the counter.,It,gold,'s piled waist high.,egg his attention on a mobile bowl and a solution on the mantelpiece.,stamps a cloth through one of the other rooms!,up someone then runs up.,0\n10437,anetv_GcEutQTeAnA,5871,A man carefully washes the side of a car with a sponge. The man,A man carefully washes the side of a car with a sponge.,The man,gold,adds some text on the keyboard to complete the procedure.,lifts a towel into a sink and continues scrubbing the door.,folds the camera and measures it in several sections.,stands up and washes the windshield.,3\n10438,anetv_OM0jqPYx700,12920,The white lights are reflected on the table. The man,The white lights are reflected on the table.,The man,gold,is writing on a broken piece of paper.,wipe the edge of the table with white rag.,polished off his shoes.,takes on the canvas coat in the room and takes off the mask.,1\n10439,anetv_OM0jqPYx700,12919,A man in black shirt wipe the table with white cloth. The white lights,A man in black shirt wipe the table with white cloth.,The white lights,gold,are in the man's hands.,are reflected on the table.,put the sunscreen on his leg.,put on on the table.,1\n10440,anetv_3pBldeB3uaE,19120,A large group of people are seen standing around a pool as well as people writing on paper and speaking to one another. More people,A large group of people are seen standing around a pool as well as people writing on paper and speaking to one another.,More people,gold,are seen close up watching them with the video.,continue playing their instruments together followed by one speaking to a man and speaking.,continue their soup and speaking as well as various people speaking to one another and many people.,are seen diving on a board and jumping off onto the side.,3\n10441,anetv_3pBldeB3uaE,19121,More people are seen diving on a board and jumping off onto the side. Several people,More people are seen diving on a board and jumping off onto the side.,Several people,gold,fall onto the diving board.,continue surfing in the water flipping and spinning around.,are seen watching on the side as the kids continue to dive.,are then interviewed to one another and are shown performing in slow motion.,2\n10442,anetv_tVC_5_SgseY,14536,\"Then, the man fries an egg and puts it on the bread as well the mortadella, green leaves, cheese and ketchup. After, the man\",\"Then, the man fries an egg and puts it on the bread as well the mortadella, green leaves, cheese and ketchup.\",\"After, the man\",gold,add white slices of bread in the pan until it cuts to the bread bread.,cuts the sandwich in two and eat one.,puts dough on a tray of flowers and takes them off of the salad.,curl the bread with a plate and put it on a plate.,1\n10443,anetv_tVC_5_SgseY,17591,When the egg is ready the man form a sandwich and spread ketchup. sliced in the hald and,When the egg is ready the man form a sandwich and spread ketchup.,sliced in the hald and,gold,serve it on white plate.,put it on the pumpkin.,put chocolate on top of the mixture.,add another half of an eggs with sugar and green lock cheese coloring to.,0\n10444,anetv_tVC_5_SgseY,17590,The man grabs a bread slice and spread butter and put them on a griddle. when the egg is ready the man,The man grabs a bread slice and spread butter and put them on a griddle.,when the egg is ready the man,gold,form a sandwich and spread ketchup.,\"spread, then peel spaghetti and put it on a sandwich into the tomato pan.\",cleans the sandwich with a cat tool.,starts ironing and put it in the oven.,0\n10445,anetv_tVC_5_SgseY,17589,Chef is standing in front of a counter talking to the camera. the man,Chef is standing in front of a counter talking to the camera.,the man,gold,discusses a cup with coffee and bright ingredients that are displayed on the table.,grabs a bread slice and spread butter and put them on a griddle.,then is presenting the bottle with instructions remover to the point that the window has finally seen.,\"begins sharpening the knife, sharpening a piece of paper by sharpening a knife.\",1\n10446,anetv_7QxUtHqQdbY,19866,A man is seen standing in the woods holding an ax and walking closer to a log. The man,A man is seen standing in the woods holding an ax and walking closer to a log.,The man,gold,steps on the log a bit followed by him swinging the ax on the log.,begins using a tool to cut the area off.,uses a hose to a tree.,lifts the claw and fans the tree and the camera pans out to the man who is standing in the area.,0\n10447,anetv_7QxUtHqQdbY,3100,He is pushing around a log. He,He is pushing around a log.,He,gold,uses a large ax to chop the log.,then bowls several times.,uses the ax to trim the hedges.,\"reach a second motorbike, but he leaps from the ground holding his legs.\",0\n10448,anetv_v8Dqgro-f-U,191,We see people on bleachers and kids jumping. We then,We see people on bleachers and kids jumping.,We then,gold,see the ending title title sequence with copyright text on a screen.,see people playing soccer on the beach.,see the blue ending screen.,see a swings slide in the distance.,2\n10449,anetv_v8Dqgro-f-U,187,We see a gym filled with people watching as people jump rope. We see the outside of the building and a man,We see a gym filled with people watching as people jump rope.,We see the outside of the building and a man,gold,pumping his hands and legs in the air.,jumping off on the uneven bars on the field.,throws a yellow t rope off the end of the park.,is interviewed with shots of the inside cut in.,3\n10450,anetv_v8Dqgro-f-U,190,We see girls interviewed outside the main room and scenes from inside the gym. We,We see girls interviewed outside the main room and scenes from inside the gym.,We,gold,see the title title screen.,see a man mixing bottles for a bottle.,see a girl striking a pose as she is dancing ad on the floor.,see people on bleachers and kids jumping.,3\n10451,anetv_v8Dqgro-f-U,189,We watch girl perform see ladies serving snacks and watch another person perform. We,We watch girl perform see ladies serving snacks and watch another person perform.,We,gold,see girls interviewed outside the main room and scenes from inside the gym.,see the lady leg up high.,older girls ride down the hills among the rest of the lead ages.,enter the competition in la.,0\n10452,lsmdc3025_FLIGHT-12234,12602,\"Someone shifts, his hands resting on the table. Someone\",\"Someone shifts, his hands resting on the table.\",Someone,gold,hurriedly converses with someone as someone chucks it.,winces as he gives her a potion then looks away.,begins to play without turning away from a mirror.,turns on his cell phone recorder.,3\n10453,lsmdc3025_FLIGHT-12234,12601,Someone opens a writing pad. Someone,Someone opens a writing pad.,Someone,gold,stands on the center frame holding her sister's bag.,purse for a gap.,\"shifts, his hands resting on the table.\",elbows her with the arm.,2\n10454,lsmdc3025_FLIGHT-12234,12600,They're seated at a table. Someone,They're seated at a table.,Someone,gold,sits down near a table.,bounces from a table and holds on outside.,disgustedly lets out a troubled breath.,opens a writing pad.,3\n10455,anetv_CX5QUmM97DI,7052,A man is trimming a damaged bush using a machette. The man,A man is trimming a damaged bush using a machette.,The man,gold,is kayaking around a large yard.,starts cutting the wood for speed.,continuously demonstrates using the contraptions from removing the hedge trimmer.,continues chopping the cut branch on a deck.,3\n10456,anetv_E6ePEI4UOtU,8855,A person absorbs all the water from a bowl using a mop. Water,A person absorbs all the water from a bowl using a mop.,Water,gold,is poured into a large bucket.,goes around the table and sets a slat on the counter.,does various moves into several of them that is able to leave the floor.,is sitting on the floor.,0\n10457,anetv_E6ePEI4UOtU,8856,Water is poured into a large bucket. The mop in dunked in the bucket of water then,Water is poured into a large bucket.,The mop in dunked in the bucket of water then,gold,pour on the furniture.,spun dry in the tray.,lifts the wheels off a table and begins lifting it to the floor.,pours the water while harry is watching.,1\n10458,anetv_E6ePEI4UOtU,8854,A mop stands upright next to a bucket. A person,A mop stands upright next to a bucket.,A person,gold,in a chair walks out to measure when a weight is then shown on the ground.,\"is scrubbing the chair, using various notes.\",absorbs all the water from a bowl using a mop.,is holding a mop that prays as she speaks to the camera.,2\n10459,lsmdc0008_Fargo-49872,7640,\"Someone is on her hands and knees by a body down in the ditch, again looking at footprints in the snow. She\",\"Someone is on her hands and knees by a body down in the ditch, again looking at footprints in the snow.\",She,gold,\"gets up, clapping the snow off her hands, and climbs out of the ditch.\",runs a foot up.,struggles to secure guidance again.,follows him through a square doorway.,0\n10460,lsmdc0008_Fargo-49872,7641,\"She is looking at the prowler, which still idles on the shoulder. Someone is driving; someone\",\"She is looking at the prowler, which still idles on the shoulder.\",Someone is driving; someone,gold,walks up to her.,sits next to her.,is leaving.,\"walks around the car, to the sound of someone's voices.\",1\n10461,lsmdc0008_Fargo-49872,7639,She calls up to the road. Someone,She calls up to the road.,Someone,gold,almost seems to be getting more leverage.,\", in the raft, climbs all the raft, sitting morose.\",knocks herself out.,\"is on her hands and knees by a body down in the ditch, again looking at footprints in the snow.\",3\n10462,lsmdc1009_Spider-Man3-76742,17210,Lit by the glow from the fire someone turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat. Someone,Lit by the glow from the fire someone turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat.,Someone,gold,\"looks impassively at someone, then shakes his head.\",is 10 stories high.,keeps shooting and glances over her shoulder.,\"watches off for a moment, facing himself.\",0\n10463,lsmdc1009_Spider-Man3-76742,17211,Someone turns away rebuffed and leaves by the balcony. In the goblin layer someone,Someone turns away rebuffed and leaves by the balcony.,In the goblin layer someone,gold,he keeps his back at a gas plant.,has rolled up the front of his vampire's cloak.,leaves to a top coat and holds a jar of cocaine.,picks up the green goblin sword from among the debris on the floor.,3\n10464,lsmdc1009_Spider-Man3-76742,17209,He half turns his head to look at someone who is in his someone suite but without the mask. Lit by the glow from the fire someone,He half turns his head to look at someone who is in his someone suite but without the mask.,Lit by the glow from the fire someone,gold,\"plays paintball but someone keeps his back to someone, who is watching closely for a moment.\",turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat.,\"is sitting behind him as it raises its hands, creating a burst of flames.\",\"leans forward and stands the flaming torch to the light, but it explodes, destroying the room.\",1\n10465,lsmdc1009_Spider-Man3-76742,17207,Up in his mansion someone turns off the tv and paces past a roaring fire with a hand clasped to his forehead. He,Up in his mansion someone turns off the tv and paces past a roaring fire with a hand clasped to his forehead.,He,gold,\"turns, for someone, then slowly climbs back into the room.\",\"paces up to someone in his lap, his head resting on someone's shoulder.\",\"grabs his hand then goes after him again, multiple years in slow motion.\",stops in front of the portrait of his father.,3\n10466,anetv_-FWGLSfI13Q,2005,\"Next, they use a knife to cut the face into the pumpkin. A boy in a black shirt\",\"Next, they use a knife to cut the face into the pumpkin.\",A boy in a black shirt,gold,is talking to her and adding a normal lawn.,is standing inside a workshop with a small snow block.,puts a cloth on top of a larger dish.,makes funny faces to the camera while another boy plays with the insides of the pumpkin.,3\n10467,anetv_-FWGLSfI13Q,18621,Another person plays in the distance and leads into a man helping the boy draw. The man then,Another person plays in the distance and leads into a man helping the boy draw.,The man then,gold,plays the instrument while still speaking to the camera while the camera moves off of the water.,begins playing with one another while still speaking to the camera.,cuts out the outline with the boys help and shows the pumpkin in the dark.,begins parting the dog from under a blanket and holding the leaf.,2\n10468,anetv_-FWGLSfI13Q,2002,A little boy in a kitchen is scooping out the inside of a pumpkin while another boy sits a the table. The boy's dad,A little boy in a kitchen is scooping out the inside of a pumpkin while another boy sits a the table.,The boy's dad,gold,is being very frustrated.,is the first girl rakes it with an ice cream cone.,starts washing the bottom.,comes over to help him get the insides out of the pumpkin.,3\n10469,anetv_-FWGLSfI13Q,2004,\"They begin to use a marker to draw a face on the pumpkin. Next, they\",They begin to use a marker to draw a face on the pumpkin.,\"Next, they\",gold,use a knife to cut the face into the pumpkin.,put a pumpkin into cookie dough on the pumpkin and rolling it around to find the seeds.,add sticks all the christmas decorations on the christmas tree.,begin to throw the lipstick blood on a tiny girl.,0\n10470,anetv_-FWGLSfI13Q,2003,The boy's dad comes over to help him get the insides out of the pumpkin. They,The boy's dad comes over to help him get the insides out of the pumpkin.,They,gold,turn the pumpkin taking fires.,begin to use a marker to draw a face on the pumpkin.,are mixed by all the colors.,are made from the house.,1\n10471,anetv_-FWGLSfI13Q,2006,A boy in a black shirt makes funny faces to the camera while another boy plays with the insides of the pumpkin. The family,A boy in a black shirt makes funny faces to the camera while another boy plays with the insides of the pumpkin.,The family,gold,turns the lights off and lights up the pumpkin before the video ends.,puts an earring inside the ring.,continues to break together and end by showing a pumpkin at the end.,continues to play a game of croquet while the credits of the video are shown.,0\n10472,lsmdc3084_TOOTH_FAIRY-39649,3566,Someone grabs the stocky fairy's magic wand. Someone,Someone grabs the stocky fairy's magic wand.,Someone,gold,throws someone a wand.,puts eye light on the pumpkin.,slides it down front of the hedges and back.,falls out of it.,0\n10473,lsmdc3084_TOOTH_FAIRY-39649,3564,The stocky fairy pantomimes flying. Fairies,The stocky fairy pantomimes flying.,Fairies,gold,point magic wands and drag him back to someone.,eyes the boys spot the boys.,steps toward the driver's door.,steps out with a meeting drawn on a road.,0\n10474,lsmdc3084_TOOTH_FAIRY-39649,3567,\"Someone throws someone a wand. As he flexes his arms, his wand\",Someone throws someone a wand.,\"As he flexes his arms, his wand\",gold,disappears instantly he disappears into the darkness of the sight.,shoots fairy dust in his eyes.,adds a mask to someone's eyelid.,releases one hand and knocks him over.,1\n10475,lsmdc3084_TOOTH_FAIRY-39649,3568,\"As he flexes his arms, his wand shoots fairy dust in his eyes. Someone\",\"As he flexes his arms, his wand shoots fairy dust in his eyes.\",Someone,gold,falls under the ring as the trudge lashes out.,stares after the portrait.,pokes him with his wand.,\"walks into the room, then looks at someone.\",2\n10476,lsmdc3084_TOOTH_FAIRY-39649,3565,He rolls his shoulders and someone glances at the crowd. Someone,He rolls his shoulders and someone glances at the crowd.,Someone,gold,takes off his glasses.,withdraws his hand from her mouth.,eyes the little old man as he heads into a safe parking space.,'s sunglasses twinkle brightly as a teeters sea reflected in the starry sky.,0\n10477,anetv_zGTqXydTuQs,1679,We see the names of the boys. We,We see the names of the boys.,We,gold,children appear surfing the screen.,\"see a red product of a title thrower, on a black and white court.\",see the ending title screens.,interviewed and youtube.,2\n10478,anetv_zGTqXydTuQs,1675,Two boys in scuba gear sit in a van and preparing to scuba dive. We,Two boys in scuba gear sit in a van and preparing to scuba dive.,We,gold,'re images of someone.,\"zoom in on the icy blue, their mouth swimming and talking.\",see the man skating over ice.,\"see three people in the water, two under water.\",3\n10479,anetv_zGTqXydTuQs,1676,\"We see three people in the water, two under water. We\",\"We see three people in the water, two under water.\",We,gold,see a person pulling leaves on a boat.,see people out of wrapping wrapping.,see the man laying down on stilts.,see under water and above intermittently.,3\n10480,anetv_zGTqXydTuQs,1677,We see under water and above intermittently. A boy,We see under water and above intermittently.,A boy,gold,is kneeling on a cabin.,sprays up a pumpkin and rubs his hands through his hair.,holds a plastic broom stand over the sink.,talks to the camera and lifts his goggles.,3\n10481,anetv_zGTqXydTuQs,1674,\"We see a house, a van and a title screen. Two boys in scuba gear\",\"We see a house, a van and a title screen.\",Two boys in scuba gear,gold,run off with the shoes uphill climbing the snow.,appear natural as their feet backs into armed blasts.,are skating and going down the hill.,sit in a van and preparing to scuba dive.,3\n10482,anetv_zGTqXydTuQs,4001,An instructor takes them underwater. They,An instructor takes them underwater.,They,gold,are joined by a man next to a rope.,are handed roller parts.,push bright water on them.,swim around in shallow water.,3\n10483,anetv_zGTqXydTuQs,1678,A boy talks to the camera and lifts his goggles. We,A boy talks to the camera and lifts his goggles.,We,gold,see a person snowboarding lying.,see the names of the boys.,see a match indoors.,see a rod shaped tool.,1\n10484,anetv_KWeZbXoX8Ys,6169,There is a very tall and steep slide running through some trees in a large open ground. There,There is a very tall and steep slide running through some trees in a large open ground.,There,gold,is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down.,sits with their head on the ground and doing slow splits by a man hopscotch high.,'s dancing trouble with stick names hung up on the sidewalk using it.,are several other people lined up with volts machines on the ground.,0\n10485,anetv_KWeZbXoX8Ys,6171,A young boy wearing black shorts and a shirt comes sliding down in full force. He,A young boy wearing black shorts and a shirt comes sliding down in full force.,He,gold,lifts his head and continues dancing.,is using a little racket!,does fast jump - down as they run across the busy music parlor.,lands far from the slide as he tumbles down and off of the slide.,3\n10486,anetv_KWeZbXoX8Ys,6170,There is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down. A young boy wearing black shorts and a shirt,There is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down.,A young boy wearing black shorts and a shirt,gold,comes running over toward the man with both hands and leads the tight little girl in circles.,is followed by the crowd before the race.,comes sliding down in full force.,is sitting next to him solving the cube.,2\n10487,anetv_IajP-SB2D5c,2858,A young man in a blue tank top faces a camera and talks on a sports field while other athletes stretch in the background. The young man then,A young man in a blue tank top faces a camera and talks on a sports field while other athletes stretch in the background.,The young man then,gold,performs a long jump which is followed by two replays of the high jump in slow motion.,dives around a ball on the lower board.,demonstrates the exercises explaining that he is high and turns the cable around the left just alternating back to remove his jumping ramp.,begins wrestling with each other with swords resembling a fencing match.,0\n10488,anetv_IajP-SB2D5c,7340,A man is talking in front of a camera on a track. He,A man is talking in front of a camera on a track.,He,gold,is seen performing backwards while kneeling down.,pulls the rock and begins swinging it around.,takes a long running jump.,is then shown walking around and blowing sand in a town car.,2\n10489,anetv_IajP-SB2D5c,7341,He takes a long running jump. He lands in the sand pit and it,He takes a long running jump.,He lands in the sand pit and it,gold,is measured for distance.,lands in a pile of sand.,closes a few times.,falls off the beach.,0\n10490,anetv_MwQTeFD0OKQ,2667,The credits of the clip are shown. A guy,The credits of the clip are shown.,A guy,gold,stands in front of a wall.,gets some letters around the wall.,is approaching a weight on a stage.,is welding a piece of welding equipment.,2\n10491,anetv_MwQTeFD0OKQ,12047,The credits of the clip is shown. A guy,The credits of the clip is shown.,A guy,gold,uses it to pull it off.,stands inside an enclosure full of supplies.,is rubbing her electric shoes with yellow shorts.,moves in front of weights.,3\n10492,anetv_MwQTeFD0OKQ,2669,A man massages a guy's shoulders. The man,A man massages a guy's shoulders.,The man,gold,interacts and ties while bouncing onto a trainer.,easily knocks the older man in.,sits on the man's back and gestures to the legs holding the weight.,smells something a person holds up in their hands.,3\n10493,anetv_MwQTeFD0OKQ,12049,A male smells something in a person hands while someone touches his shoulders. Guys,A male smells something in a person hands while someone touches his shoulders.,Guys,gold,\", the man carries the other around while rubbing his hands but get hit to the camera.\",\"pour the sugar, then pours juice to a vanilla content.\",come over to the volunteers shelter next to the little edge where the little kid jumps up.,lift weights and some celebrate.,3\n10494,anetv_MwQTeFD0OKQ,2671,A guy The audience cheers and claps. A guy,A guy The audience cheers and claps.,A guy,gold,jumps down the street and lands in the sand.,spots them playing soccer together.,bows his hands on the mat.,cheers and kisses the weight plates.,3\n10495,anetv_MwQTeFD0OKQ,2668,A guy is approaching a weight on a stage. A man,A guy is approaching a weight on a stage.,A man,gold,walks over his point of struts to the stage.,massages a guy's shoulders.,crunches it over in his hand.,uses a kick - ball from a machine onto a field below.,1\n10496,anetv_MwQTeFD0OKQ,2670,The man smells something a person holds up in their hands. A male,The man smells something a person holds up in their hands.,A male,gold,rubs a white powder on his hand and chest.,appears over him and he finally stops to put up his hands.,stands in a chair with a blue cloth.,does a hand stand.,0\n10497,anetv_MwQTeFD0OKQ,12048,A man massages a male. A male,A man massages a male.,A male,gold,smells something in a person hands while someone touches his shoulders.,putting pops in on the man's mouth.,lifts his leg with the needle.,runs down without breaking a barbell.,0\n10498,anetv_MwQTeFD0OKQ,2672,A guy is benching pressing. A guy,A guy is benching pressing.,A guy,gold,drives a bike bike down the lane.,removes the congas off a hand table.,steps and ties his shoe.,is captured kissing his thigh on a stage with a weight on the floor.,3\n10499,lsmdc3007_A_THOUSAND_WORDS-3546,7656,\"Someone stares at someone, then gazes up at the tree. Someone\",\"Someone stares at someone, then gazes up at the tree.\",Someone,gold,storms off then returns with an axe.,turns towards a group of spiders.,waves to herself and rolls up her sleeve.,tosses her flowers to the crowd.,0\n10500,lsmdc3007_A_THOUSAND_WORDS-3546,7658,\"Someone swings the axe, he hits the trunk and flies through the air and lands in a patch of spiky plants. Lying on the ground someone\",\"Someone swings the axe, he hits the trunk and flies through the air and lands in a patch of spiky plants.\",Lying on the ground someone,gold,plants her arms by his waist and gently clasps her at his back.,lets herself push on a back rail while people watch on the side.,\"pulls down his waistband, revealing a dark bruise.\",cocks a red wand at him.,2\n10501,lsmdc0028_The_Crying_Game-63381,18401,He has a cut lip where someone struck him. Someone,He has a cut lip where someone struck him.,Someone,gold,\"is his belt, striking a roman development of his picked off the competition event.\",open it and see the interior of someone's apartment dried with bundles of parchment.,blinks sharply at her.,prods him on with the gun.,3\n10502,anetv_LLLuBjEVHI8,19379,A teenage boy wearing a white shirt and black track pants is shooting hoops in an outdoor basketball court. There,A teenage boy wearing a white shirt and black track pants is shooting hoops in an outdoor basketball court.,There,gold,is a man who has a body nearly fights to competitors.,are shown the girl without different small dress standing on bottom of a diving board.,are a few cones arranged around the court.,is a small shot of the ball and the hoop fighting in the first ring.,2\n10503,anetv_LLLuBjEVHI8,19380,There are a few cones arranged around the court. The boy,There are a few cones arranged around the court.,The boy,gold,is in a giant art costume and appears to take their turn shot off.,\"continues running, dribbling and shooting hoops with the basketball.\",\"is playing two drums, trying to hear the voice, but there is another band playing in the background.\",from the white team is waving for the crowd as the kid approaches the young toddler.,1\n10504,anetv_LLLuBjEVHI8,19381,\"The boy continues running, dribbling and shooting hoops with the basketball. He\",\"The boy continues running, dribbling and shooting hoops with the basketball.\",He,gold,hits a shot and makes a basket and then stops playing.,throws a ball at the pins.,shoots the ball towards the door and then returns again.,flings his legs around and pulls his eye closed.,0\n10505,anetv_8ulb1O_5gRs,6144,He begins shooting the gun against a target on a tree. He,He begins shooting the gun against a target on a tree.,He,gold,\"stands up on a bow stretches, using his stick to jump the jump concepts clear to someone.\",removes his arrows with a bow.,rides the unicycle and turns around.,continues shooting the gun and showing off his shots in the end.,3\n10506,anetv_8ulb1O_5gRs,17117,The man stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below. We,The man stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below.,We,gold,watch the ladies striking fire at a man in costume.,see the drawing from ground level as it is covered with paint.,see the dense title screen.,\"propel him into the water, then only doing another move to.\",1\n10507,anetv_8ulb1O_5gRs,6143,A man is seen speaking to the camera while holding a paintball gun and aiming it off in the distance. He,A man is seen speaking to the camera while holding a paintball gun and aiming it off in the distance.,He,gold,continues to hit the ball while moving himself around and blowing the water out of his mouth.,takes off in a second followed by several shots of him chasing a dart.,begins shooting the gun against a target on a tree.,speaks into clips of a man shooting the bow and arrow by speaking to the camera.,2\n10508,anetv_8ulb1O_5gRs,17119,The man is shooting the target from ground level. The camera lens,The man is shooting the target from ground level.,The camera lens,gold,has been drawn about the foot of the roof.,close as it drives into the range.,is covered with paint as the man shoots it.,is given to masse.,2\n10509,anetv_8ulb1O_5gRs,17116,A man with a paintball stands on a deck holding a large red paintball gun. The man,A man with a paintball stands on a deck holding a large red paintball gun.,The man,gold,hits a series of jump boards and begins running out and behind him while standing next to him.,stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below.,looks up and shakes his head at passenger.,turns to talks to the camera again.,1\n10510,anetv_8ulb1O_5gRs,17118,We see the drawing from ground level as it is covered with paint. The man,We see the drawing from ground level as it is covered with paint.,The man,gold,spots an image of the cat laying next to the hedges.,starts cutting the weeds of the nails.,is shooting the target from ground level.,continues all along the cat's nails and brushes off the big cat before continuing to brush the pad.,2\n10511,lsmdc0008_Fargo-49955,3841,\"After hitting him several times, She yanks someone's belt out of his dangling pants and strangles him with it. Someone\",\"After hitting him several times, She yanks someone's belt out of his dangling pants and strangles him with it.\",Someone,gold,tears up from her face.,\"knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt.\",\"squints up at the spider, which head off angrily.\",lands at a dead dead in someone's ring.,1\n10512,lsmdc0008_Fargo-49955,3842,\"Someone knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt. His face\",\"Someone knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt.\",His face,gold,is deeply bruised and cut.,is a spread of flames.,lies in the grass as someone lifts the needle at his head.,\"falls out from the floor of the building twisting its neck and spinning while he's on a bike, mounted on a thread.\",0\n10513,lsmdc0008_Fargo-49955,3845,\"A door slams off - screen. Someone, briefcase in hand,\",A door slams off - screen.,\"Someone, briefcase in hand,\",gold,runs out the door.,\"gets into his cadillac, slams the door and peels out.\",walks the knife over to her faced king.,\"the guys, dragging a raised horseman door, walk down the street.\",1\n10514,lsmdc0008_Fargo-49955,3844,Someone is at the kitchen phone. Through the door to the dining room we,Someone is at the kitchen phone.,Through the door to the dining room we,gold,\"see men lying huddled, drinking.\",see an apartment entrance.,see someone picking up an extension.,watch him on the couch.,2\n10515,lsmdc0008_Fargo-49955,3843,His face is deeply bruised and cut. Someone,His face is deeply bruised and cut.,Someone,gold,straightens and looks down at someone.,watches him and walks out of the bathroom.,is at the kitchen phone.,looks around for the locket.,2\n10516,anetv_o6lTgyb_AkM,10641,\"She sits in her studio, speaking. She\",\"She sits in her studio, speaking.\",She,gold,\"enters beautifully in ballet outfits, spinning and dancing.\",is a black woman and a chinese girl standing behind someone.,changes to a business n icon.,\"grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree.\",3\n10517,anetv_o6lTgyb_AkM,10643,She grabs a sponge and dips it into green and blue paint while painting the leaves on the tree. She,She grabs a sponge and dips it into green and blue paint while painting the leaves on the tree.,She,gold,\"moves on to grab the paintbrush and dips it into black paint repeatedly, and moves on to paint another tree.\",then walks back to the camera to showing that product should be the wrong way.,stops to rake some wallpaper over demonstrating how to install the descent from the wax.,continues to brush the thread through the wall while she continues talking.,0\n10518,anetv_o6lTgyb_AkM,10644,\"With the same paint brush, this time dipping it into green paint, she paints the pines of three. She\",\"With the same paint brush, this time dipping it into green paint, she paints the pines of three.\",She,gold,blow out of her hair to rembrandt whom he'd on how not to blow.,emerges from plastic wrap of paper onto the bed and moves it to the front of the house.,\"halts, cleans the bloody nails and studies the gray.\",finishes her painting and speaks for a bit.,3\n10519,anetv_o6lTgyb_AkM,10640,A painter demonstrates various art pieces in her studio. She,A painter demonstrates various art pieces in her studio.,She,gold,shows by little wallpaper and some closing individually.,lifts a triangular position to help as ladders appear.,\"sits in her studio, speaking.\",pushes her hands on the back of his chair.,2\n10520,anetv_o6lTgyb_AkM,10642,\"She grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree. She\",\"She grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree.\",She,gold,continues using the paint to paint a fence to the other side and put it onto all inside of the finish square.,grabs a sponge and dips it into green and blue paint while painting the leaves on the tree.,continues to brush all along her nails.,points and cuts up the paint.,1\n10521,lsmdc1040_The_Ugly_Truth-8612,17731,\"Tall, thick - set someone follows someone to her office. Sitting at her desk, someone\",\"Tall, thick - set someone follows someone to her office.\",\"Sitting at her desk, someone\",gold,\"gives someone a challenging look, picks up a card and the phone, and dials.\",\"sips a glass from a coffee cup, and sips a glass of milk.\",leans over and faces her sisters with a warm smile.,\"pops a pot of water, takes it, and places it in her jacket.\",0\n10522,anetv_s7ajQRC7w9w,3973,She steps onto the board and starts wind surfing. She,She steps onto the board and starts wind surfing.,She,gold,moves closer to her dog on the belly of the boat while people wave on cameras.,hits its button two times.,holds onto the kite of the wind surf.,waves announcer walks viewers to join them.,2\n10523,anetv_s7ajQRC7w9w,3972,A woman is holding onto a wind surfboard in the water. She,A woman is holding onto a wind surfboard in the water.,She,gold,puts it in the water and removes it from the animals.,\"surfs on the ocean, adding to the water.\",steps onto the board and starts wind surfing.,are standing next to a young woman in canoes.,2\n10524,anetv_xbWAmySRE88,1571,\"A lady then grabs weave, a needle and begins to sew in the hair. Once she shows how the sew - in is secured, the finished product is shown and the girl now\",\"A lady then grabs weave, a needle and begins to sew in the hair.\",\"Once she shows how the sew - in is secured, the finished product is shown and the girl now\",gold,is able to apply her makeup properly.,gets a contact gel out of a pair of scissors.,has long curly hair.,tries to remove the lenses.,2\n10525,anetv_xbWAmySRE88,1569,\"The video begins with a title page showing that a video of a versatile sew - in is about to be done. First image, the braid pattern\",The video begins with a title page showing that a video of a versatile sew - in is about to be done.,\"First image, the braid pattern\",gold,man adds carrots and slices clouds around cake.,is shown on the individuals head as some of her hair is left out around the perimeter of her head.,\"is now displayed, a man wearing a blue wash shirt, a pink leotards.\",sits on a bun.,1\n10526,anetv_xbWAmySRE88,1570,\"First image, the braid pattern is shown on the individuals head as some of her hair is left out around the perimeter of her head. A lady then\",\"First image, the braid pattern is shown on the individuals head as some of her hair is left out around the perimeter of her head.\",A lady then,gold,descends her knees at the end of the braid in the water and fell on her hair.,goes across a long static strapping set and removes her hair and puts her arms around in the air.,\"grabs weave, a needle and begins to sew in the hair.\",walks her on the sidewalk.,2\n10527,lsmdc1024_Identity_Thief-82498,17931,\"Someone grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck. Someone\",\"Someone grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck.\",Someone,gold,tosses the snake away and shakes her hands.,\"dodges its tentacles, incinerating someone as she steps through the house.\",\"sticks his own hand at someone, and swaggers towards the outer courtyard.\",'s sword glows with its red light in a high white arc.,0\n10528,lsmdc1024_Identity_Thief-82498,17928,\"The snake watches the flame, then bites into someone's neck. Someone whacks it with a stick, and someone\",\"The snake watches the flame, then bites into someone's neck.\",\"Someone whacks it with a stick, and someone\",gold,shoves the boy through a straw.,makes it into the room.,drops to the ground.,jabs back in the cell.,2\n10529,lsmdc1024_Identity_Thief-82498,17924,He pushes his pants off. Someone,He pushes his pants off.,Someone,gold,wraps the cord around the robot's neck.,tosses his jeans into the woods.,lowers his head and gives his troubled wounded look.,shows a normally a weapon.,1\n10530,lsmdc1024_Identity_Thief-82498,17930,\"She hits it a few more times, then tosses away the stick. Someone\",\"She hits it a few more times, then tosses away the stick.\",Someone,gold,does a few steps before walking away.,takes two long leap down the lane her hands dry.,\"grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck.\",appears to be seen at the far end of the raft.,2\n10531,lsmdc1024_Identity_Thief-82498,17932,\"Someone tosses the snake away and shakes her hands. In the morning, a cargo train\",Someone tosses the snake away and shakes her hands.,\"In the morning, a cargo train\",gold,passes by a rusty disheveled station.,continues to create walls inside the building.,sprints down a street.,shows up for the airport.,0\n10532,lsmdc1024_Identity_Thief-82498,17923,He springs up and fumbles with his jeans. He,He springs up and fumbles with his jeans.,He,gold,pushes his pants off.,leaves a store and answers.,puts it down on the table.,taps a buzzer over the dashboard.,0\n10533,lsmdc1024_Identity_Thief-82498,17925,Someone tosses his jeans into the woods. It,Someone tosses his jeans into the woods.,It,gold,passes in front of him.,drops onto his shoulders.,continues through the flames.,wags his lower toes.,1\n10534,lsmdc1024_Identity_Thief-82498,17927,The snake tightens around his neck. The snake,The snake tightens around his neck.,The snake,gold,\"smashes the cash trunk, leaving the hole in its infantry.\",lays out its tongue and strokes the young serpent.,rips off someone's right throat then stands apart.,\"watches the flame, then bites into someone's neck.\",3\n10535,lsmdc1024_Identity_Thief-82498,17929,\"Someone whacks it with a stick, and someone drops to the ground. She\",\"Someone whacks it with a stick, and someone drops to the ground.\",She,gold,\"hits it a few more times, then tosses away the stick.\",delivers her hand to him and fixes it on her stomach.,slides over to the table.,draws a few feet back toward the boy before drops it onto the table.,0\n10536,lsmdc1024_Identity_Thief-82498,17922,He glances back at someone as the snake slithers into his pants. He,He glances back at someone as the snake slithers into his pants.,He,gold,clutches the locket around someone's neck.,sweeps up his lifeless body.,springs up and fumbles with his jeans.,\"hits him, then bounces him on the ground.\",2\n10537,lsmdc1024_Identity_Thief-82498,17933,\"In the morning, a cargo train passes by a rusty disheveled station. Someone\",\"In the morning, a cargo train passes by a rusty disheveled station.\",Someone,gold,are attacked in a field.,blanket comes in narrow streets beneath trees.,agents swarm through the trees with a cloud of dust.,applies makeup while someone lies on a bench in a pair of dirt - covered khakis.,3\n10538,lsmdc1024_Identity_Thief-82498,17936,He moves to the ticket booth. He,He moves to the ticket booth.,He,gold,looks back at someone and paces.,\"is sitting at a small desk, sipping his coffee.\",sets the surveillance phone aside.,hands the vodka bottle to someone.,0\n10539,lsmdc1024_Identity_Thief-82498,17934,Someone applies makeup while someone lies on a bench in a pair of dirt - covered khakis. Someone,Someone applies makeup while someone lies on a bench in a pair of dirt - covered khakis.,Someone,gold,hurries up to someone.,wakes up and reaches for his neck.,throws rice primed in a bin.,\"glances at a document beside him, discreetly takes off his fedora.\",1\n10540,lsmdc1024_Identity_Thief-82498,17921,\"Someone lies on his side next to the fire, and someone snuggles up behind him. She\",\"Someone lies on his side next to the fire, and someone snuggles up behind him.\",She,gold,reaches down and picks up the hammer.,\"rolls it up behind the two windows, unlocking the door.\",pulls her arm away.,hikes around the television station.,2\n10541,lsmdc1024_Identity_Thief-82498,17935,Someone wakes up and reaches for his neck. Someone,Someone wakes up and reaches for his neck.,Someone,gold,is beside us as they stare at each other.,watches him with a smile.,zips down someone's visor.,pulls someone back and slams her hand against his stomach.,1\n10542,anetv_0qTzoVjsMpQ,10964,He pokes a hole in the top of the tin foil several times. He,He pokes a hole in the top of the tin foil several times.,He,gold,removes his belt and gazes after it.,reaches a hole in a box and picks it up.,catches themselves in his hand and ties it along the surface of the automaton.,puts that onto the top of the hookah.,3\n10543,anetv_0qTzoVjsMpQ,10962,A man fills a hookah with water and sets it on a table. He,A man fills a hookah with water and sets it on a table.,He,gold,the camera shows a serves lying on the glass.,puts tobacco in a device and covers it with tin foil.,takes only yellow spray before trimming the hedge in an ascending and men.,\"sets the cup down before leans into the cooler water, left it empty, and wipes off.\",1\n10544,anetv_0qTzoVjsMpQ,10965,He puts that onto the top of the hookah. He,He puts that onto the top of the hookah.,He,gold,finishes welding and piercing the eyes.,uses a paint brush to wipe his face with the brush.,takes a smoke off the hookah and blows the smoke.,demonstrates how to properly put a fishing pole on the ice.,2\n10545,anetv_0qTzoVjsMpQ,10963,He puts tobacco in a device and covers it with tin foil. He,He puts tobacco in a device and covers it with tin foil.,He,gold,unwraps the shirt and shows pictures to the wall while speaking to the camera.,pokes a hole in the top of the tin foil several times.,continues playing and talking to the camera.,puts the egg in a pan.,1\n10546,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1917,2825,Someone notices an ax outside. Now he,Someone notices an ax outside.,Now he,gold,carries the ax over his shoulder as someone leads him through the woods.,arrives at the town table.,steps over his spear and finds the poison lying in the ground.,enters past filled pit zombies.,0\n10547,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1917,2826,\"Now he carries the ax over his shoulder as someone leads him through the woods. Wearing his sunglasses, someone's new mentor\",Now he carries the ax over his shoulder as someone leads him through the woods.,\"Wearing his sunglasses, someone's new mentor\",gold,\"walks away, revealing a gold - open case filled with cannons.\",\"leans over someone, demonstrating his new strength to carry the pups back.\",stops at a tree and gazes up the towering trunk.,sits in his hammock as he peers through the porthole.,2\n10548,lsmdc3080_THIS_MEANS_WAR-37395,608,It shifts to James Monroe Elementary. Someone,It shifts to James Monroe Elementary.,Someone,gold,comes out from the school.,watches nervously as someone watches with astonishment.,rules maximilian's sleeves.,gets her back on the towel and furrows her brow.,0\n10549,lsmdc3080_THIS_MEANS_WAR-37395,610,\"At the Smart Consumer offices, someone sits before a toy fire truck. Someone\",\"At the Smart Consumer offices, someone sits before a toy fire truck.\",Someone,gold,maids gingerly from the underground cruiser.,slips the five - dollar lighter into a mud embossed slot on an asphalt pouch.,gives him a hammer and lets him smash it to pieces.,\"averts her, a giant aircraft disturbing on her spot.\",2\n10550,lsmdc3080_THIS_MEANS_WAR-37395,613,Someone's ex comes out of her and watches him give someone a hug. Someone,Someone's ex comes out of her and watches him give someone a hug.,Someone,gold,goes up and runs up the street.,makes a call and wheels around.,switches the tape with his fingers.,smiles as he returns to his truck.,3\n10551,lsmdc3080_THIS_MEANS_WAR-37395,609,Someone comes out from the school. Someone,Someone comes out from the school.,Someone,gold,stands by smiling as someone gives his son a hug.,walks over to a piano.,comes into a hand ride.,\"goes into the garden, starting to work on the balcony of a large hallway.\",0\n10552,lsmdc1027_Les_Miserables-6446,12617,\"Someone turns and walks away. Wearing a troubled frown, someone\",Someone turns and walks away.,\"Wearing a troubled frown, someone\",gold,\"stares at the pistol for a moment, then drops it into the sewer.\",watches the two members making a word for her.,turns her blearily off.,sets down his bike steel with a finishing drawing.,0\n10553,lsmdc1027_Les_Miserables-6446,12615,\"Covered in sewerage, someone holds someone onto his shoulder and climbs up steps out of the sewer. Someone\",\"Covered in sewerage, someone holds someone onto his shoulder and climbs up steps out of the sewer.\",Someone,gold,aims a pistol at him.,takes a step closer to a boy's legs.,\"gently slides back along the walls, propelling himself into a seizing shaft of fells.\",\"turns and scans his office, ending continuing on.\",0\n10554,lsmdc1027_Les_Miserables-6446,12618,\"Wearing a troubled frown, someone stares at the pistol for a moment, then drops it into the sewer. Someone\",\"Wearing a troubled frown, someone stares at the pistol for a moment, then drops it into the sewer.\",Someone,gold,\"reaches down towards the mannequin, shutting the door.\",uses it to climb over the broken metal hatch.,\"continues to pound it stuck, as someone reaches the control box.\",starts to walk away.,3\n10555,lsmdc1027_Les_Miserables-6446,12616,Someone aims a pistol at him. Someone,Someone aims a pistol at him.,Someone,gold,\"turns to someone, who holds the pistol steady.\",swarm swiftly along the desert.,grabs someone and drags the inspector around.,'s body is motionless and he looks back at someone.,0\n10556,anetv_xXj-oQm-NbE,1088,A man in a tie and suit is standing in front of a building talking. He then,A man in a tie and suit is standing in front of a building talking.,He then,gold,demonstrates how to weld it using metal with a tool.,stands next to a woman talking.,begins using the tool to match a small brush.,sits on a beam and begins to weld.,1\n10557,anetv_xXj-oQm-NbE,1089,He then stands next to a woman talking. The woman,He then stands next to a woman talking.,The woman,gold,starts to wrap a small blue box in wrapping paper.,walks onto the soda table and talks to the camera.,puts shampoo on the woman's back.,puts her shoe in and drops her t hunter outfit.,0\n10558,anetv_xXj-oQm-NbE,12075,We see a decorative image then see a man talking outside a house. We,We see a decorative image then see a man talking outside a house.,We,gold,see a dilapidated carving.,see a man in baseball gear walking on the field.,see a man run down a track.,see title screens and the man in various rooms in the house.,3\n10559,anetv_xXj-oQm-NbE,1090,The woman starts to wrap a small blue box in wrapping paper. A man holds up a wooden block and the other man,The woman starts to wrap a small blue box in wrapping paper.,A man holds up a wooden block and the other man,gold,closes in with him.,carves something in it.,explains how to get it properly for the company.,puts it on the wrapping piece.,1\n10560,anetv_xXj-oQm-NbE,12077,We see the man and a lady girt warp a box with dollar bill wrapping paper. A title screen appears and we,We see the man and a lady girt warp a box with dollar bill wrapping paper.,A title screen appears and we,gold,see a graphic with red letters.,see the lady walk into a blue screen.,see the man outside talking.,see kids knitting fencing.,2\n10561,anetv_xXj-oQm-NbE,12079,We see novelty items such as a sword and we see a Texas shaped cutting board as the man pretends to cut it. the man talks in the woods and we,We see novelty items such as a sword and we see a Texas shaped cutting board as the man pretends to cut it.,the man talks in the woods and we,gold,see the lady pick up a tire from the table and stick it to the ground.,see a hole in the seam.,see an ending title screen.,\"see a man hand duel the boy and father, then throw the dog behind him.\",2\n10562,anetv_xXj-oQm-NbE,12078,A title screen appears and we see the man outside talking. We see novelty items such as a sword and we,A title screen appears and we see the man outside talking.,We see novelty items such as a sword and we,gold,see a texas shaped cutting board as the man pretends to cut it.,see the boy running and a man in blue yard attempt to draw the dust from his shoes.,\"see shots of oak basil, seagulls, and onions.\",see two men in white alley going shot and other throwing their arrows to see away in the distance.,0\n10563,anetv_xXj-oQm-NbE,12076,We see title screens and the man in various rooms in the house. The man,We see title screens and the man in various rooms in the house.,The man,gold,wipes his hands while still putting his hands onto his coat.,smiles and shakes his hips round.,leans forward on the steps and then continues exercising.,stands outside of the house talking.,3\n10564,anetv_xOmfJGR5fBw,5514,She begins cutting the cat's claws while the cat squirms around a bit. She,She begins cutting the cat's claws while the cat squirms around a bit.,She,gold,moves along on the ground as well as pushing begins pushing the cat away and walking up the cat.,continues cutting the claws while speaking to the camera.,stomps back a few times and continues clipping the cat's claws.,cuts one of the cat's claws then pets the dog's claws as she shakes to the camera.,1\n10565,anetv_xOmfJGR5fBw,7603,We see a lady sitting holding a cat and talking. The lady,We see a lady sitting holding a cat and talking.,The lady,gold,begins cutting the cat's claws with the right hand.,blows smoke rings outside the kitchen.,shows us nail clippers.,starts clipping the cats nails.,2\n10566,anetv_xOmfJGR5fBw,7606,The lady shows us a clipped claw. We,The lady shows us a clipped claw.,We,gold,\"it to the paper, she turns when someone started to ads her other side and xs out the contents of it.\",a line of corn field a dancer approaches her.,goes to the same view of the roof and its rear edge of the roof.,see a paw's claw up close.,3\n10567,anetv_xOmfJGR5fBw,5513,A woman is seen holding on a cat on a coach and holding up a pair of nail clippers. She,A woman is seen holding on a cat on a coach and holding up a pair of nail clippers.,She,gold,begins cutting the cat's claws while the cat squirms around a bit.,lays shoes on and continues brushing the shoes.,continues moving her around and demonstrating how to properly dance and ends by waving them all around while she continues playing.,grabs a cat from head to head.,0\n10568,anetv_xOmfJGR5fBw,7605,The lady clips her cats claws. The lady,The lady clips her cats claws.,The lady,gold,continues hula hoop with her hips.,puts her paw again in the blue lotion.,stops and licks her face.,shows us a clipped claw.,3\n10569,anetv_xOmfJGR5fBw,7608,The lady finishes and talks to the camera. We,The lady finishes and talks to the camera.,We,gold,see men stretching and do paper while one guy and woman jump rope on the rope.,see the ending screen with video clips.,patch is shown in the screen and we see the lady in the other portraits.,focus on the record and see an ending title screen.,1\n10570,anetv_xOmfJGR5fBw,7607,We see a paw's claw up close. The lady,We see a paw's claw up close.,The lady,gold,is laying down on the white folds.,finishes and talks to the camera.,then then empties the dog on the ground.,cleans the brown flowerbed.,1\n10571,anetv_xOmfJGR5fBw,7604,The lady shows us nail clippers. The lady,The lady shows us nail clippers.,The lady,gold,covers her mouth with polish and paints the lady's nails until she finishes cutting up.,clips her cats claws.,gives designs for the pumpkin of food.,shows a nail polish that sprays our blue product.,1\n10572,anetv_sCj-ME5RkLY,1684,People are paying volleyball on a court. A girl,People are paying volleyball on a court.,A girl,gold,is holding a medal on the street.,jumps onto a small square.,hits a ball on a court.,falls down going for the ball.,3\n10573,anetv_THOLslLjRqs,3577,\"The woman stops painting and talks, then she continues painting. Two kids\",\"The woman stops painting and talks, then she continues painting.\",Two kids,gold,stands on front the woman.,are talking about the grooming services.,drive in a machine getting very involved in a blade painting.,are on the dogs side of the large fence and brushing her nails while the people are laying on their shoulders in images.,0\n10574,anetv_THOLslLjRqs,18256,A woman is painting a drawer orange. She,A woman is painting a drawer orange.,She,gold,are laying on the blue tiles.,dips the paint brush into a paint can and continues painting.,has some point to the people on how to look at her.,is talking outside of a beer bottle.,1\n10575,anetv_THOLslLjRqs,18257,She dips the paint brush into a paint can and continues painting. Two kids,She dips the paint brush into a paint can and continues painting.,Two kids,gold,are shown painting the nail in the same location.,walk up and down a hose along the side.,are watching her in front of her.,gather in the house before the camera is smiling.,2\n10576,lsmdc3030_GROWN_UPS-14022,5220,They playfully fight over in a churning motion. They,They playfully fight over in a churning motion.,They,gold,\"scramble over their heads, grabbing bottles of high - colored debris.\",turn their chairs away.,spot the demonic creature with their weapons.,have been board - diving in a pits warming pool.,1\n10577,lsmdc3030_GROWN_UPS-14022,5215,\"Later, someone, someone, someone, and someone sit in chairs watching as someone leans over her car to fix it. They\",\"Later, someone, someone, someone, and someone sit in chairs watching as someone leans over her car to fix it.\",They,gold,ogle someone's long legs and butt.,locks someone's seat down to the attendant photograph.,are put in the office.,kiss the female alien's body out in front of the tank.,0\n10578,lsmdc3030_GROWN_UPS-14022,5219,Someone watches flapping in the breeze. They playfully,Someone watches flapping in the breeze.,They playfully,gold,toss through the champagne.,slide the other in.,crash into each other while fondling their backs.,fight over in a churning motion.,3\n10579,lsmdc3030_GROWN_UPS-14022,5217,\"Using pliers, she removes a lid out. His hair\",\"Using pliers, she removes a lid out.\",His hair,gold,is put inside his head.,is now close to the mask.,\"catches in place, adjusting his hair.\",blows backwards and forward.,3\n10580,lsmdc3030_GROWN_UPS-14022,5216,\"She dons her glasses and peers under the hood. Using pliers, she\",She dons her glasses and peers under the hood.,\"Using pliers, she\",gold,flings its brush past her.,looks into the mirror.,lies on her back.,removes a lid out.,3\n10581,lsmdc3030_GROWN_UPS-14022,5214,\"Someone and someone watch from inside someone's car. Later, someone, someone, someone, and someone\",Someone and someone watch from inside someone's car.,\"Later, someone, someone, someone, and someone\",gold,walk along a corridor in a middle - class tiled room.,sit in chairs watching as someone leans over her car to fix it.,walk down the overturned police station.,pull off the freeway through a huge waterfall.,1\n10582,anetv_I0yNAIWHcQQ,599,2 girls are sitting and swinging on the same swing. The camera pans,2 girls are sitting and swinging on the same swing.,The camera pans,gold,\"left, but immediately stop.\",goes to people playing as the toddler joins her.,to show the rest of the playground.,to end with the ending camera.,2\n10583,anetv_I0yNAIWHcQQ,601,Another girls talks into the camera. The camera,Another girls talks into the camera.,The camera,gold,pans up to show girls watching their performance as they swim.,focuses on people on the screen.,pans back to the 2 girls swinging.,focuses all on another woman's information.,2\n10584,anetv_I0yNAIWHcQQ,9124,A woman is swinging on a swing set. A woman,A woman is swinging on a swing set.,A woman,gold,surfs on the bars.,is swinging around and twirling it.,is in the park watches.,holding the camera smiles.,3\n10585,anetv_I0yNAIWHcQQ,9125,A woman holding the camera smiles. Another person,A woman holding the camera smiles.,Another person,gold,is standing next to her.,watches from behind an open car and the women poke the dogs out.,is seen standing in a stable with a large dog.,helps sister flip a cookie in her playground.,0\n10586,anetv_-wFNUGYf298,16418,A young adult male punches and kicks a suspended punching bag. The young male then,A young adult male punches and kicks a suspended punching bag.,The young male then,gold,slides back forward on the swing and spins.,starts to move around the punching bag while still punching and kicking it.,hurries into his arms and tries to walk up.,falls to his side and tackles the man on the ground.,1\n10587,anetv_-wFNUGYf298,16419,The young male then starts to move around the punching bag while still punching and kicking it. The young male then,The young male then starts to move around the punching bag while still punching and kicking it.,The young male then,gold,walks away while removing his gloves.,jumps into the lift and spins around.,stops to hit the ball back and fourth against another wall while the man aims again.,grabs the frame and begins performing a squat routine on the floor.,0\n10588,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60059,19126,People wake with a start. People,People wake with a start.,People,gold,pull a fish from the shore.,start snowboarding down a hill.,have been sleeping on someone's bed.,are standing in the large room.,2\n10589,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10987,\"Hearing someone cross the office, he darts for a fire exit, setting off the alarm. He\",\"Hearing someone cross the office, he darts for a fire exit, setting off the alarm.\",He,gold,marches past someone and marches him out of the window.,\"shoves someone behind his desk, then jogs up to them.\",closes the door and turns back.,hangs his head as his hostages shove past.,2\n10590,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10988,He closes the door and turns back. He,He closes the door and turns back.,He,gold,remains at his feet.,grabs it and looks him from the closet.,taps the sign on the door.,opens a glass cabinet.,2\n10591,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10990,The crowd disperses but someone remains. She,The crowd disperses but someone remains.,She,gold,\"dangles out back over the launcher stands, his mouth dangling at the sides.\",watches him head off.,fails at this moment as he struggles and stands hastily.,\"tries to step away, then slowly bows his head.\",1\n10592,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10989,He taps the sign on the door. He,He taps the sign on the door.,He,gold,nods sadly as someone drives.,\"stare at him, soft - delighted.\",takes a wildlife book from a shelf.,brings the phone to his ear and presses a button on an ironing handle.,2\n10593,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10992,A person with someone custome kisses a nun. He,A person with someone custome kisses a nun.,He,gold,\"grabs the mended bird, and slowly forward.\",\"heads over to someone, who wears a black wig and holds a cigarette in a long.\",reaches for the cover and runs out as the tire rolls slowly off the vehicle.,puts soap on a bucket.,1\n10594,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10991,She watches him head off. He,She watches him head off.,He,gold,sticks some fake fangs in.,flings both arms around him.,slows as he searches men getting out of his car.,tucks his ear to someone's neck and smiles to herself.,0\n10595,anetv_aVJRaXUjsEE,6842,\"The other man with him throws a ball across the table, too. Two other men stand on the far right side of the beer pong table, and one of the men reaches to grab the cup where the ball fell into, and the other man\",\"The other man with him throws a ball across the table, too.\",\"Two other men stand on the far right side of the beer pong table, and one of the men reaches to grab the cup where the ball fell into, and the other man\",gold,in the ball hits the ball with his paddle then gets it in place.,continue playing with him and a scores!,bends down to catch a ball that has fallen on the floor.,both bows and slams it onto the table.,2\n10596,anetv_aVJRaXUjsEE,6841,\"One of the men throws a beer pong ball across the table, into a cup. The other man with him\",\"One of the men throws a beer pong ball across the table, into a cup.\",The other man with him,gold,throws off a piece of paper to shoot.,\"throws a ball across the table, too.\",takes the ball in the pins and hits it across the ring knocking the balls into a bowl.,is up on the table.,1\n10597,anetv_aVJRaXUjsEE,6840,Two men stand on the far left of a beer pong table. One of the men,Two men stand on the far left of a beer pong table.,One of the men,gold,takes the cup in the floor.,plays then throws a hit that's five to every left of the floor.,\"throws a beer pong ball across the table, into a cup.\",holds up two hands in the red tam against the side in front of them.,2\n10598,anetv_DTprdtsGCts,9252,A large rock wall is shown. The man,A large rock wall is shown.,The man,gold,continues playing the instrument.,is seen cooking on a stage until a set of blocks is shown.,performs to move around the yard on a park with pads on the bottom.,\"picks up a black - cloth statuette and removes his dressing sandals, then returns the plaster to the wall.\",0\n10599,anetv_DTprdtsGCts,9248,Pipes are being shown on a rock. A man,Pipes are being shown on a rock.,A man,gold,is walking on a trail.,is seen playing the drums then begin playing the drums.,gets up from his chair and starts playing the harmonica.,is kneeling down behind the drums.,0\n10600,anetv_DTprdtsGCts,9251,A man sits on top of a rock. A man,A man sits on top of a rock.,A man,gold,starts playing an instrument.,puts his hands on the horse.,is working behind a boat.,holds up the microphone.,0\n10601,anetv_DTprdtsGCts,9249,A large structure behind a fence is shown. A boat,A large structure behind a fence is shown.,A boat,gold,is around the four locked with a stick.,is in the water surrounding a rock.,snowmobiles the basin as a person paddles.,is being pulled above an inflated boat.,1\n10602,anetv_DTprdtsGCts,9250,A boat is in the water surrounding a rock. A man,A boat is in the water surrounding a rock.,A man,gold,goes water skis near the water.,lifts the feet out of the machine.,sits on top of a rock.,is pulled by a fish of water.,2\n10603,anetv_GQdkuWJGYFg,18466,We see a lady talking and standing in a kitchen. The lady waves to the camera and we,We see a lady talking and standing in a kitchen.,The lady waves to the camera and we,gold,see them shoveling the sidewalk.,see the title screen.,see colorful title screens.,see the cameraman outside.,1\n10604,anetv_GQdkuWJGYFg,6057,She puts strawberries in to a glass. She,She puts strawberries in to a glass.,She,gold,adds juice to it.,picks them up and ushers her into the bathroom.,holds her up and looks around.,fills the glass with food.,0\n10605,anetv_GQdkuWJGYFg,18467,The lady waves to the camera and we see the title screen. The lady talks and we,The lady waves to the camera and we see the title screen.,The lady talks and we,gold,see a girl taking turns and scissors on circles.,see the ending screen with a closing intro.,see credits wakeboarding and another screen.,see her add strawberries to a glass.,3\n10606,anetv_GQdkuWJGYFg,18469,\"The lady juices a lemon, stirs it and pours the lemon juicer over the strawberries. The lady\",\"The lady juices a lemon, stirs it and pours the lemon juicer over the strawberries.\",The lady,gold,tosses the salad hard.,demonstrates the items in the beginning of the pot.,\"pours the mixture into a pan, then pours syrup into the cinnamon bowl.\",talks and drinks the juice from the glass.,3\n10607,anetv_GQdkuWJGYFg,18468,The lady talks and we see her add strawberries to a glass. The lady,The lady talks and we see her add strawberries to a glass.,The lady,gold,\"juices a lemon, stirs it and pours the lemon juicer over the strawberries.\",holds her finger up then rubs in her eye.,picks up a container and eats it.,adds dry ingredients to the bowl.,0\n10608,anetv_GQdkuWJGYFg,18471,\"The lady throws her arms in the air, and points to the corner before waving. The title screen re - appears and we\",\"The lady throws her arms in the air, and points to the corner before waving.\",The title screen re - appears and we,gold,see the lady speak with a video in the upper right corner.,see two ladies holding an ice cream cone.,see a lady bouncing up violently and running out of the city.,see a lady in a black shirt and black hat.,0\n10609,anetv_GQdkuWJGYFg,6056,A woman is standing in a kitchen. She,A woman is standing in a kitchen.,She,gold,is holding a knife on a table.,begins to make pasta in a sink.,is holding a drink of coffee.,puts strawberries in to a glass.,3\n10610,anetv_GQdkuWJGYFg,18470,The lady talks and drinks the juice from the glass. The lady,The lady talks and drinks the juice from the glass.,The lady,gold,mixes lemonade in two glasses and then places it on her lips and dumps them several cups on the tent table.,\"throws her arms in the air, and points to the corner before waving.\",sprays items and pours them into a martini glass with ice.,squeezes lemons and adds jaw to the bowl.,1\n10611,anetv_o6Xr1PiL-Jg,5590,\"The woman attempts to rake leaves, but then she falls and gets back up holding the rake and a man takes it from her. Then she walks away and comes back again and he\",\"The woman attempts to rake leaves, but then she falls and gets back up holding the rake and a man takes it from her.\",Then she walks away and comes back again and he,gold,rakes the leaves on top of her.,throws the baby back on camera.,begins to align it back into the case.,stops to talk to the camera.,0\n10612,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14912,\"Someone is riding his horse through the woods, a picture of elegance in his top hat and frock coat. Spying someone, he\",\"Someone is riding his horse through the woods, a picture of elegance in his top hat and frock coat.\",\"Spying someone, he\",gold,dumps a pile of rucksack onto the observatory.,whispers in his ear.,\"brings his horse to a halt, never once taking his eyes off her.\",watches the city from below.,2\n10613,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14908,Someone makes no effort to make any further inquiries. He,Someone makes no effort to make any further inquiries.,He,gold,strides slowly and pointedly over to the window.,notices a pretty hobbit.,stands up to run to the roof window.,\"crashes through the fleeing teens, which smashes into someone's car, sending him reeling.\",0\n10614,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14915,They set off down the avenue of trees at a trot. Someone,They set off down the avenue of trees at a trot.,Someone,gold,steps up to a fog - mounted lake and flies through.,watches them not quite knowing what to make of the encounter.,\"stands on a bridge, watching the man shoot.\",notices the commander staring at the unmoving pup.,1\n10615,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14909,\"It's a bright, sunny day. The wooded green fields of the English countryside\",\"It's a bright, sunny day.\",The wooded green fields of the English countryside,gold,are drawn off to one side.,stretch out to the horizon.,seems to stretch out as he runs toward the moonlit countryside.,is filled with colorful balloons.,1\n10616,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14910,\"Someone wanders alone, taking in the sumptuous view. She\",\"Someone wanders alone, taking in the sumptuous view.\",She,gold,is gliding across the table with her sister.,stretches in his hand out to someone.,idly pats the trunk of a large tree as she passes by.,pass down a narrow archway leading to an early apartment for an outdoor party.,2\n10617,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14914,\"Looking awkward, someone kicks his horse on. They\",\"Looking awkward, someone kicks his horse on.\",They,gold,\"walk up a couple of steps, side by side.\",walk along a beach.,set off down the avenue of trees at a trot.,\"the ropes, someone and her companions stare at someone, who walks barefoot along a circular platform, becoming visible in a reflection.\",2\n10618,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14916,\"Someone watches them not quite knowing what to make of the encounter. Later, Fitzwilliam\",Someone watches them not quite knowing what to make of the encounter.,\"Later, Fitzwilliam\",gold,is in the storeroom with some of the timers.,closes his study while someone is still in her dressing gown.,hangs s a archbishop's suited.,sits with someone as she plays the piano.,3\n10619,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14911,She idly pats the trunk of a large tree as she passes by. She,She idly pats the trunk of a large tree as she passes by.,She,gold,sits in a chair.,pats him affectionately and stands.,takes her time staring up into the branches that shield her from the glare of the sun.,stops someone watching her.,2\n10620,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14917,\"In an adjoining room, someone is listening. People\",\"In an adjoining room, someone is listening.\",People,gold,regards her with a big grin.,walk on unused household.,are sitting in a sofa near her.,is watching and watching him.,2\n10621,lsmdc1029_Pride_And_Prejudice_Disk_One-83906,14913,\"Nonchalantly crossing her arms in front of her, she stares up defiantly at someone. Looking awkward, someone\",\"Nonchalantly crossing her arms in front of her, she stares up defiantly at someone.\",\"Looking awkward, someone\",gold,steps toward the bodhi tree.,kicks his horse on.,turns to the black man to greet him.,glances down at her younger brother and refuses.,1\n10622,lsmdc3079_THINK_LIKE_A_MAN-36936,10282,\"He frowns and someone stifles a smile. Taking the ring from its box, he\",He frowns and someone stifles a smile.,\"Taking the ring from its box, he\",gold,peeks into the pocket in her dress.,slides it onto someone's finger.,opens his diary and reads a paper bundle of paper.,\"plucks it into the note then turns around to someone, tentatively.\",1\n10623,lsmdc3079_THINK_LIKE_A_MAN-36936,10285,Now Sonia and someone enter the cafe during another open mic event. Sonia,Now Sonia and someone enter the cafe during another open mic event.,Sonia,gold,someone behind someone an who sits leaning against his desk.,reads someone's letter as he sits.,\"waits for his maid, showing someone again.\",sees someone taking the stage.,3\n10624,lsmdc3079_THINK_LIKE_A_MAN-36936,10284,The three of them watch as the engaged couple kisses. Now Sonia and someone,The three of them watch as the engaged couple kisses.,Now Sonia and someone,gold,strut into space.,are hit in the head with the other team.,play phone number three.,enter the cafe during another open mic event.,3\n10625,lsmdc3079_THINK_LIKE_A_MAN-36936,10283,\"Taking the ring from its box, he slides it onto someone's finger. Someone\",\"Taking the ring from its box, he slides it onto someone's finger.\",Someone,gold,finds someone at the sight of her wife on the bed.,guides someone through the great stone gate.,lifts his glistening eyes to hers.,\"beats a grid of a few letters on the gleaming wooden walls, then steps forward to find someone with a ball.\",2\n10626,anetv_1BWF1U1dJ_w,8524,\"A large platter of prepared sandwiches displays. A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients\",A large platter of prepared sandwiches displays.,\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients\",gold,include rolls and lunch meat.,are scattered next a drains.,are done and almost blends them up.,needed to assemble the cranberry cup.,0\n10627,anetv_1BWF1U1dJ_w,8525,\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients include rolls and lunch meat. A person\",\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients include rolls and lunch meat.\",A person,gold,is then seen putting a sandwich of cheese and meat together on white bread rolls with lettuce on a counter top.,kicks chopsticks out of the oven dough and cuts them.,begins mixing the ingredients into a smart bowl with butter glass.,adds various eggs with a pitcher and some cheese then places it on the table and brings it.,0\n10628,anetv_57cM1GcKktw,14883,A heavy man in a blue shirt is playing the bag pipes. He,A heavy man in a blue shirt is playing the bag pipes.,He,gold,blows into the pipe while making the notes with his fingers.,\"gets up, looks down at his phone and sits on the next bed.\",starts playing another drum.,continues pulling on one drum after another.,0\n10629,anetv_57cM1GcKktw,14885,He adjusts the bag pipe and continues to play. He,He adjusts the bag pipe and continues to play.,He,gold,finishes his song and reaches to turn off the camera.,is pats the back of the car.,pauses and looks up at the shimmering birds taking off two.,puts the shoe down and starts laying it down.,0\n10630,anetv_57cM1GcKktw,14884,He slightly dances as he plays. He,He slightly dances as he plays.,He,gold,adjusts the bag pipe and continues to play.,\"freezes, holding his mouth open, and instantly, as it turns.\",eyes someone as the goats eyes start to eat.,pats his fresh head.,0\n10631,lsmdc3058_RUBY_SPARKS-28521,717,Someone covers her face with her hands and glances aside. Someone,Someone covers her face with her hands and glances aside.,Someone,gold,eyes the receiver on her phone.,eyes her son's lap.,adds a page to the typewriter.,slaps it with shock and goes on.,2\n10632,lsmdc3070_THE_CALL-32832,7253,\"Frozen in place, his frenzied gaze softens on the trunk. Holding her headset, someone\",\"Frozen in place, his frenzied gaze softens on the trunk.\",\"Holding her headset, someone\",gold,\"shifts her wide, frantic eyes to the gps locator screen.\",spots the prisoner elder father.,sits and places his hands on his hips.,holds the surfboard tent home to its tail.,0\n10633,lsmdc3070_THE_CALL-32832,7255,\"From overhead, we narrow in on the parking lot. Now, two squad cars\",\"From overhead, we narrow in on the parking lot.\",\"Now, two squad cars\",gold,arrive at the end of a carousel.,walk along a busy road.,emerge into the hydraulic park.,speed toward the abandoned sedan and screech to a halt.,3\n10634,lsmdc3070_THE_CALL-32832,7254,\"Holding her headset, someone shifts her wide, frantic eyes to the gps locator screen. From overhead, we\",\"Holding her headset, someone shifts her wide, frantic eyes to the gps locator screen.\",\"From overhead, we\",gold,drift close to the whispered cross.,narrow in on the parking lot.,watch the sleek aircraft still masse behind them.,find someone writing on a platform.,1\n10635,lsmdc3070_THE_CALL-32832,7244,The kidnapper bashes the driver's head and stands glaring at the motionless body. The enraged man,The kidnapper bashes the driver's head and stands glaring at the motionless body.,The enraged man,gold,looms over against the crates and the rear passenger door opens.,\"starts off, then turns as the helpless driver crawls away.\",emerges with his twitching stick and aims at a man in shorts.,pulls the shorthaired box from a shelf then wheels himself around to the watch.,1\n10636,lsmdc3070_THE_CALL-32832,7248,They fall from his trembling hand. He,They fall from his trembling hand.,He,gold,shifts an anxious gaze between his trunk and the body.,takes a sip then shoves it into her mouth.,tries to pull off the trunk.,touches the scar on the face of his temple.,0\n10637,lsmdc3070_THE_CALL-32832,7256,\"Now, two squad cars speed toward the abandoned sedan and screech to a halt. With their guns aimed, the officers\",\"Now, two squad cars speed toward the abandoned sedan and screech to a halt.\",\"With their guns aimed, the officers\",gold,aim the pistol at them.,rush toward the sedan.,rush down the street and walk with agents.,aim their guns at the recruits.,1\n10638,lsmdc3070_THE_CALL-32832,7247,The kidnapper removes a handful of glass shards from his back pocket. They,The kidnapper removes a handful of glass shards from his back pocket.,They,gold,\"stick it in its mouth, screws it in one hand.\",\"fend off the alarm gryffindors, who shakes their fists together.\",fall from his trembling hand.,rip off the rack.,2\n10639,lsmdc3070_THE_CALL-32832,7251,The killer faces the sedan with his mouth hanging open. The terrified teen,The killer faces the sedan with his mouth hanging open.,The terrified teen,gold,falls down with his slides closed.,tries a long - focus lens.,keeps her eyes on the roof.,returns a professional feed.,2\n10640,lsmdc3070_THE_CALL-32832,7252,\"The terrified teen keeps her eyes on the roof. Frozen in place, his frenzied gaze\",The terrified teen keeps her eyes on the roof.,\"Frozen in place, his frenzied gaze\",gold,softens on the trunk.,takes back at the cross's mangled springing.,\"sweeps towards her, casting long shadows on the ground.\",finds two supply agents from her bottom.,0\n10641,lsmdc3070_THE_CALL-32832,7245,\"The enraged man starts off, then turns as the helpless driver crawls away. Backing away, he\",\"The enraged man starts off, then turns as the helpless driver crawls away.\",\"Backing away, he\",gold,cautiously hooks a knife on his elbow again.,dismounts and manages a puzzled look.,glances down at their dolphins.,drops the shovel and turns.,3\n10642,lsmdc3070_THE_CALL-32832,7250,\"Ripping off his blood - stained shirt, he wipes blood from his undershirt and tosses it down. The killer\",\"Ripping off his blood - stained shirt, he wipes blood from his undershirt and tosses it down.\",The killer,gold,lies on his stomach and swallows.,faces the sedan with his mouth hanging open.,drops someone's luggage in front of someone.,parts his bloody nose.,1\n10643,lsmdc3070_THE_CALL-32832,7246,\"Backing away, he drops the shovel and turns. The kidnapper\",\"Backing away, he drops the shovel and turns.\",The kidnapper,gold,gets up on its roof and reaches out.,aims the gun at a man hustling him role out of their way.,removes a handful of glass shards from his back pocket.,\"takes a launcher and goes, shattering all of its boxes.\",2\n10644,lsmdc3070_THE_CALL-32832,7249,\"He shifts an anxious gaze between his trunk and the body. Ripping off his blood - stained shirt, he\",He shifts an anxious gaze between his trunk and the body.,\"Ripping off his blood - stained shirt, he\",gold,rubs columns of five screens with his left hand and gives an encouraging nod.,knocks it between the shop shelves and heads down a hallway.,wipes blood from his undershirt and tosses it down.,stares off.,2\n10645,lsmdc3034_IDES_OF_MARCH-2848,14447,He returns the folder to her. She,He returns the folder to her.,She,gold,takes a page from the bag.,shakes someone's hand.,gives a mocking grin.,pours off the spilled wine.,2\n10646,lsmdc3019_COLOMBIANA-9321,118,\"At the fbi, Agent someone turns to someone. Someone\",\"At the fbi, Agent someone turns to someone.\",Someone,gold,takes his cell back and heads out of the room.,is a document underneath.,is practicing some nex pyramid.,meets someone's gaze.,0\n10647,lsmdc3019_COLOMBIANA-9321,119,\"As he leaves, Agent someone bows his head. Meanwhile, someone\",\"As he leaves, Agent someone bows his head.\",\"Meanwhile, someone\",gold,\"rides a four - foot camel along with both passengers in a boat, watching the bird.\",enters a command module.,brushes a tear from her eye then slides on a pair of sunglasses.,heads out of the ceremony as someone loads the manager.,2\n10648,lsmdc3019_COLOMBIANA-9321,123,Its door closes after her and the vehicle pulls into the road. The bus,Its door closes after her and the vehicle pulls into the road.,The bus,gold,trails billows of exhaust as it trundles into the distance.,pulls into the night by the house.,\"pulls away, passing a splash - across road which opens across the city corner.\",\"pulls back as the car barrels over someone, then snatches it.\",0\n10649,lsmdc3019_COLOMBIANA-9321,114,\"She allows a tiny smile. At the fbi, Agent someone\",She allows a tiny smile.,\"At the fbi, Agent someone\",gold,reads a letter in an airplane setting.,presses his thumb to a glass of wine.,stares at his bearded daughter with dazed eyes.,shoots his partner a frustrated look.,3\n10650,lsmdc3019_COLOMBIANA-9321,113,\"Depressing the payphone's hook, someone hangs up. She\",\"Depressing the payphone's hook, someone hangs up.\",She,gold,adjusts someone's helmet.,allows a tiny smile.,peers out and points frantically.,\"nods, then follows her gaze.\",1\n10651,lsmdc3019_COLOMBIANA-9321,122,She strides toward a bus parked at the side of the road. Its door closes after her and the vehicle,She strides toward a bus parked at the side of the road.,Its door closes after her and the vehicle,gold,stops in a waiting area by the rear door.,pulls into the road.,rolls to a stop.,comes to a halt.,1\n10652,lsmdc3019_COLOMBIANA-9321,121,Golden sunlight glows down on her as she turns away from the phone and dons a hat. She,Golden sunlight glows down on her as she turns away from the phone and dons a hat.,She,gold,stairs to the left.,\"closes her eyes, then quietly turns on her cell and pulls a purse from her pocket.\",averts her stunned gaze.,strides toward a bus parked at the side of the road.,3\n10653,lsmdc3019_COLOMBIANA-9321,117,Someone lets out a whisper. She,Someone lets out a whisper.,She,gold,gives a stiff nod.,stops far behind her.,shakes his head and fans himself.,wipes away a tear then replaces the receiver.,3\n10654,lsmdc3019_COLOMBIANA-9321,120,\"Meanwhile, someone brushes a tear from her eye then slides on a pair of sunglasses. Golden sunlight\",\"Meanwhile, someone brushes a tear from her eye then slides on a pair of sunglasses.\",Golden sunlight,gold,rises from the approaching vehicle.,glows on someone's face as she wears a white string of her gown.,glows through her window as she remembers doing her walk in front of the harbor.,glows down on her as she turns away from the phone and dons a hat.,3\n10655,lsmdc3019_COLOMBIANA-9321,116,With the phone's receiver cradled against her neck. Someone,With the phone's receiver cradled against her neck.,Someone,gold,lets out a whisper.,wakes him and pushes himself into her.,\"drops the rest of the class, her hair hanging loose from her fingers.\",hangs in her chair.,0\n10656,anetv_-wcSkAAeOK8,1028,A woman is seen speaking to the camera while standing in front of an exercise bike. The woman,A woman is seen speaking to the camera while standing in front of an exercise bike.,The woman,gold,continues speaking to the man while the man continues to speak and shows several tattoos about these things.,continues speaking and begins climbing onto the bike.,continues to use the exercise and showing how to adjust the tire.,takes the skateboard down and adjusts again.,1\n10657,anetv_-wcSkAAeOK8,1029,The woman continues speaking and begins climbing onto the bike. She,The woman continues speaking and begins climbing onto the bike.,She,gold,fails to demonstrate how to use the tire to lift the tire off.,continues dancing around and swinging her arms around.,spins herself around on the bike while sitting and standing and the camera panning around the girl.,begins climbing an wall on the sides.,2\n10658,anetv_d40Tv56RrnA,3442,A girl in a pink blouse and a girl in a white t - shirt wash clothes in large tubs just outside the thatched roof house. The camera man,A girl in a pink blouse and a girl in a white t - shirt wash clothes in large tubs just outside the thatched roof house.,The camera man,gold,pans the front of the washing area while the girl in the white t - shirt rinses the clothes.,washes to the side of a t - shirts and shows how to use lie in a gun while the dog brushes about.,notices a quick cd on the floor and shows the moves very fast.,pushes the door open and walks into the trees.,0\n10659,anetv_7VvcQNSAd24,10586,A man is seen standing in front of a mirror holding a razor. He then,A man is seen standing in front of a mirror holding a razor.,He then,gold,puts detergent on the mane and shaving off of his beard using a tool.,puts in lotion into his hair and brushes some of his hair down.,begins shaving his face while still looking in the mirror.,moves one shaving design onto his legs and performing a shaving.,2\n10660,anetv_7VvcQNSAd24,10587,He then begins shaving his face while still looking in the mirror. He,He then begins shaving his face while still looking in the mirror.,He,gold,finishes shaving his face and looks back smiling at the camera.,continues to throw himself into the sink while the camera stares.,continues to shave and is shaving cream on the razor.,continues by shaving his beard to show how to properly shave the sink before setting them again.,0\n10661,anetv_dRqbDamDLT0,14849,\"The wheel is taken off, tire irons are put in, and the tube is removed. A new tube\",\"The wheel is taken off, tire irons are put in, and the tube is removed.\",A new tube,gold,is inserted and is pumped up.,is then shown with a plastic evenly leaning onto it.,pulls up and then removed.,is removed and then it's enough to ski.,0\n10662,anetv_dRqbDamDLT0,3751,He is working to replace the tire on a bike. He,He is working to replace the tire on a bike.,He,gold,is using a big tire tire on it quickly.,removes the rubber tread and replaces it.,is bent over to wipe the paste from the vehicle.,uses his chore to achieve it.,1\n10663,anetv_dRqbDamDLT0,3750,A man is inside a work shop. He,A man is inside a work shop.,He,gold,continues to exercise around on an elliptical.,is cleaning a can of windex.,is going using his window as he talks.,is working to replace the tire on a bike.,3\n10664,anetv_Zf3RcqHO82M,13698,They are talking about the tango dance. They,They are talking about the tango dance.,They,gold,\", holding her hips and singing, she leaves the place by a river taxi.\",clap their hands together as they go.,do some dancing and dance.,spin and twirl before an audience.,3\n10665,anetv_Zf3RcqHO82M,13697,A man and woman are sitting on a stage together. They,A man and woman are sitting on a stage together.,They,gold,hold the cross around her and push them away.,begin dancing around with the equipment.,resumes moving her hands faster and faster.,are talking about the tango dance.,3\n10666,anetv_rBVbsbJJcyM,8898,An introduction comes onto the screen for a fine linen company. A woman,An introduction comes onto the screen for a fine linen company.,A woman,gold,explains that she will describe how to fold cloth napkins.,walks to the side.,is then shown talking about how to make a sandwich.,appears on the counter and shows how her braid is used in detail.,0\n10667,anetv_rBVbsbJJcyM,8901,She folds the napkin and continues to press it some more. The video,She folds the napkin and continues to press it some more.,The video,gold,ends with a logo on the screen.,ends with the closing credits.,ends with a website on the screen.,ends with the closing graphics shown on the screen.,1\n10668,anetv_rBVbsbJJcyM,8900,She starts by pressing the napkin with a hot iron. She,She starts by pressing the napkin with a hot iron.,She,gold,rinses a full of powder white water and wipes them off with a cloth.,holding a piece of the chemical.,folds the napkin and continues to press it some more.,takes a pan from the oven and finishes the sauce.,2\n10669,anetv_rBVbsbJJcyM,8899,A woman explains that she will describe how to fold cloth napkins. She,A woman explains that she will describe how to fold cloth napkins.,She,gold,starts by pressing the napkin with a hot iron.,demonstrates how to wear the rollers.,proceeds to apply the power mix in a nurse pan.,smiles and applies the cleaner on top of her as she lathers the chest with the roll up cloth and lays it down.,0\n10670,anetv_nE0_PaRBXeA,8682,There are a few other people running on the treadmill behind the man. He,There are a few other people running on the treadmill behind the man.,He,gold,shoots and deals his backpack as he stands up.,begin bouncing each other with baskets as they bounce up and down.,is holding two long poles in his hands.,starts off by pulling the handles of the machine and then goes back and forth to exercise.,3\n10671,anetv_nE0_PaRBXeA,8681,There's a man in a blue shirt using the lat pull machine in a gym. There,There's a man in a blue shirt using the lat pull machine in a gym.,There,gold,communicate in the back together manicurist nuts.,with a signs peeler and then he is very hard to cut into the human bind that almost to be accidentally closed.,are standing by.,are a few other people running on the treadmill behind the man.,3\n10672,lsmdc1055_Marley_and_me-96609,6921,He leaves the editor's glass - fronted office. The children,He leaves the editor's glass - fronted office.,The children,gold,watch a woman surround an elevator across the floor.,are playing ball in the garden with someone when someone arrives home.,\"sit in their new pew, then sit before a lifting pole.\",\"peer over his binoculars, then enter through bright display.\",1\n10673,lsmdc1060_Yes_man-99449,14531,Someone marches through the busy terminal building. People,Someone marches through the busy terminal building.,People,gold,are standing in front of the visitors entrance.,\", from parade photographs piano, slides but someone stops between her and someone.\",enter the conference room area at people.,walk some way behind her.,3\n10674,lsmdc1060_Yes_man-99449,14530,A jet touches down in la. Someone,A jet touches down in la.,Someone,gold,finds a photo pulled up.,holds someone with a breathless kiss.,approaches someone and presents several hydra soldiers.,marches through the busy terminal building.,3\n10675,lsmdc1060_Yes_man-99449,14529,\"Without looking at him, she leaves the room. A jet\",\"Without looking at him, she leaves the room.\",A jet,gold,touches down in la.,glows with a photo.,arrives at the prow of the ship.,stops in front of her.,0\n10676,lsmdc1060_Yes_man-99449,14528,Someone stares at her wretchedly. Someone,Someone stares at her wretchedly.,Someone,gold,opens his eye for a moment and raises his arms.,sits in his bed followed by someone.,stares eyes watch her own son.,walks in and unlocks someone's handcuffs.,3\n10677,lsmdc3068_THE_BIG_YEAR-3582,1955,\"She falls on her behind as the birds continue their assault. Now, as the birders file toward a waiting air taxi, someone\",She falls on her behind as the birds continue their assault.,\"Now, as the birders file toward a waiting air taxi, someone\",gold,\"addresses pedestrians, then monitors him.\",grimaces as he raises the gun toward a rifle in her purse.,shoves an open check into the view.,storms past them with her expensive luggage.,3\n10678,lsmdc3068_THE_BIG_YEAR-3582,1950,He wipes the counter with a scarf. The birders,He wipes the counter with a scarf.,The birders,gold,ride with the soldier.,pass him in a public doorway.,flock to the windows.,listen at the fbi guilty conduct.,2\n10679,lsmdc3068_THE_BIG_YEAR-3582,1952,\"As someone takes her scarf to a water pump, gulls swoop down all around her. She\",\"As someone takes her scarf to a water pump, gulls swoop down all around her.\",She,gold,flails wildly in a futile attempt to defend herself.,approaches someone and leaps as he unveils her.,pats forth riders on her shoulders.,grabs a towel and gives it to her lips.,0\n10680,lsmdc3068_THE_BIG_YEAR-3582,1956,\"Now, as the birders file toward a waiting air taxi, someone storms past them with her expensive luggage. One guy\",\"Now, as the birders file toward a waiting air taxi, someone storms past them with her expensive luggage.\",One guy,gold,opens the stripe having a good drag on us.,looks back and points to a rooftop.,takes off her helmet.,remains motionless as someone and someone follow.,1\n10681,lsmdc3068_THE_BIG_YEAR-3582,1951,\"The birders flock to the windows. As someone takes her scarf to a water pump, gulls\",The birders flock to the windows.,\"As someone takes her scarf to a water pump, gulls\",gold,\"fly from the middle of her head, dragging her hands out.\",swarm the staircases and apparate.,swoop down all around her.,scatter out of the pond.,2\n10682,anetv_AnPLZtJs7zE,18046,The man dips the paintbrush into a bucket of paint and starts painting the fence. The man,The man dips the paintbrush into a bucket of paint and starts painting the fence.,The man,gold,continues to polish and cuts the wood with a picture of the camera.,pulls out the lawn torch and continues painting.,moves along the fence painting it.,continues painting the bike with short strokes and a painting of his picture board out of place.,2\n10683,anetv_AnPLZtJs7zE,18045,The man is holding a paintbrush. The man,The man is holding a paintbrush.,The man,gold,uses a knife to cut a piece of paper with several wall paper.,vacuums the rug.,is playing the the paper.,dips the paintbrush into a bucket of paint and starts painting the fence.,3\n10684,anetv_AnPLZtJs7zE,18047,The man moves along the fence painting it. The man,The man moves along the fence painting it.,The man,gold,switches off his helmet then aims at the camera again.,continues cutting down the painting and looks off into the distance.,finishes painting and steps away from the fence.,cuts to the scene paper and ends up showing hands moving to collect grown soccer shoes.,2\n10685,anetv_AnPLZtJs7zE,18044,A man is talking to the camera next to a fence. The man,A man is talking to the camera next to a fence.,The man,gold,starts brushing the horses hair.,puts glasses on the black table of the man.,is holding a paintbrush.,put a tire onto the bike.,2\n10686,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19535,Two horses are charging across the English countryside. Their riders,Two horses are charging across the English countryside.,Their riders,gold,stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance.,ripple over a car.,die out and are prepared to eat it.,\"are now shown, and one of them is galloping with vast arrives.\",0\n10687,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19540,\"Having picked a posy of wild flowers from the woods, someone crosses a small field where a chestnut mare and her foal are grazing in the sunshine. She\",\"Having picked a posy of wild flowers from the woods, someone crosses a small field where a chestnut mare and her foal are grazing in the sunshine.\",She,gold,opens the front door and talks about some clothes.,\"walks on, towards the village beyond.\",\"is drinking, barking at the dog.\",bends down to pick up the flames.,1\n10688,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19536,\"Their riders stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance. With a broad smile, someone\",Their riders stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance.,\"With a broad smile, someone\",gold,reaches his dead spot.,scrambles to a stairway railing and drops his head feet.,backs away from the waters.,\"rides on towards his new property, followed by his companion, someone.\",3\n10689,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19544,\"Someone dons someone's bonnet. Now, outside church, someone\",Someone dons someone's bonnet.,\"Now, outside church, someone\",gold,drives someone faces the policeman.,sits atop a decorated softball.,makes a call in short letters facing the kids.,is in deep conversation with a neighbor.,3\n10690,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19541,\"Now approaching her house, Longbourn, she bypasses the entrance when she hears her sisters arguing inside. Someone\",\"Now approaching her house, Longbourn, she bypasses the entrance when she hears her sisters arguing inside.\",Someone,gold,approaches and someone following someone out of a trench.,peeks around two restaurant table in the kitchen.,peers into her father's study.,reads a document titled with her printed on the title page.,2\n10691,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19546,\"Her five daughters set off behind their father. So, someone\",Her five daughters set off behind their father.,\"So, someone\",gold,watches with a black eye.,prizes herself away and runs to catch up with them.,hurls his beer at someone.,\"paces, watching her from paper mug across the table.\",1\n10692,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19537,\"With a broad smile, someone rides on towards his new property, followed by his companion, someone. Watching from a distance, as the two horses thunder across the fields,\",\"With a broad smile, someone rides on towards his new property, followed by his companion, someone.\",\"Watching from a distance, as the two horses thunder across the fields,\",gold,keeping the enemy features down above their heads.,chase and fire breath.,line the crest of an elevated road between surfboards.,\"is a young woman, someone.\",3\n10693,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19545,\"Now, outside church, someone is in deep conversation with a neighbor. Her five daughters\",\"Now, outside church, someone is in deep conversation with a neighbor.\",Her five daughters,gold,arrive at the nearby coffee shop as students watch tensely.,set off behind their father.,sit a few younger kids up quickly in a park.,are both sitting under the covers.,1\n10694,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19542,Someone peers into her father's study. Father and daughter,Someone peers into her father's study.,Father and daughter,gold,enter a decanter and dining room.,move toward the barrier.,roll their eyes amd smile.,celebrate their hand in a flowery engagement ring.,2\n10695,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19539,\"Up on the hillside, she turns away from the scene with a smile playing on her lips. Wearing a straw bonnet and simple day dress, someone\",\"Up on the hillside, she turns away from the scene with a smile playing on her lips.\",\"Wearing a straw bonnet and simple day dress, someone\",gold,sets off down a country lane.,swings out from a cart and checks his friend's suitcases.,walks to the curb.,tosses her clipboard down.,0\n10696,lsmdc1029_Pride_And_Prejudice_Disk_One-83400,19538,\"Watching from a distance, as the two horses thunder across the fields, is a young woman, someone. Up on the hillside, she\",\"Watching from a distance, as the two horses thunder across the fields, is a young woman, someone.\",\"Up on the hillside, she\",gold,turns away from the scene with a smile playing on her lips.,spies someone outside the basket table.,sees a boy french cooking next to someone.,pulls him to the far side of the rocky deck.,0\n10697,anetv_Oz4q98BhqKo,11485,The man in red walks off to the left. The class,The man in red walks off to the left.,The class,gold,finishes and stop dancing.,rubs his palms together and rubs his arms.,start it slightly behind.,pursues the dojo one of the students.,0\n10698,anetv_Oz4q98BhqKo,11483,While standing on the step the people swing their hands. The class,While standing on the step the people swing their hands.,The class,gold,begins to go out like a stroller.,walks down towards the edge of the mat.,swings their arms again.,is going slow again.,2\n10699,anetv_Oz4q98BhqKo,11486,The class finishes and stop dancing. The teacher,The class finishes and stop dancing.,The teacher,gold,comes over and styles her books.,puts the violin on his right hand and stands.,shows the names of the fencers.,walks to turn off the camera.,3\n10700,anetv_ruNII4WvE3k,2272,A person stands behind as the woman continues to groom the dog. She,A person stands behind as the woman continues to groom the dog.,She,gold,continues to polish the bush and continues to slow her back to the camera.,\"continues toward the water, and with him standing behind him heads towards her.\",continuously cuts the dogs fur while the man speaks to the camera.,is helping her friends to groom the back of the horse.,2\n10701,anetv_ruNII4WvE3k,277,A couple of people are shown inside a grooming facility. They,A couple of people are shown inside a grooming facility.,They,gold,start walking along a river.,have a dog on the table to groom.,walk onto a water platform as some rocks.,are wearing weightlifting outfits as they take pictures.,1\n10702,anetv_ruNII4WvE3k,278,They have a dog on the table to groom. They carefully,They have a dog on the table to groom.,They carefully,gold,trim his fur and nails.,ties the laces up and slap it.,work out with balls under the water.,wipe the tire off.,0\n10703,anetv_ruNII4WvE3k,2271,A small dog is seen standing on a table with a woman cutting it's fur. A person,A small dog is seen standing on a table with a woman cutting it's fur.,A person,gold,is seen holding up a cat and eating it's claws.,continues cutting the cat's claws and shots into the camera.,stands behind as the woman continues to groom the dog.,is seen sitting on a female and begins shaving her legs.,2\n10704,anetv_KYtV2vpwuVw,18304,1 a camera man watches men on bikes that are about to race. 2 The race,1 a camera man watches men on bikes that are about to race.,2 The race,gold,starts with the kids enjoying the ride.,is tidying in the center of the video with the flow of the bowling cap.,begins with the guys on bikes.,is driving down the road on a dirt track.,2\n10705,anetv_4OfhHE72V8c,1715,\"A person is sitting a a mirror putting eye makeup on, alternating from left eye to right eye. They then\",\"A person is sitting a a mirror putting eye makeup on, alternating from left eye to right eye.\",They then,gold,zooms a woman's hair blow and applies eye makeup on briefly before turning on the others.,apply blush with a sponge and brush.,\"run down their cheeks, then wave to one another as they walk.\",swish the right eye and pitying it with a yellow razor on the eye.,1\n10706,anetv_4OfhHE72V8c,13722,\"Then, the woman puts make up on the lower eyelid using the brush. After, the woman\",\"Then, the woman puts make up on the lower eyelid using the brush.\",\"After, the woman\",gold,cleans the water the young girl faces down off the bars.,takes a sponge to powder her cheeks.,brushes the top of the shoe.,combs a white and white paint.,1\n10707,anetv_4OfhHE72V8c,13721,\"A woman paints dark the top of her eyelid using a brush. Then, the woman\",A woman paints dark the top of her eyelid using a brush.,\"Then, the woman\",gold,stands up and applies the lens to the trowel.,bends down to face a tree.,puts make up on the lower eyelid using the brush.,shapes black rubs on nails.,2\n10708,anetv_0z7qHOca3D4,18996,The group rides through loose sand and the horses kick it up into the air. The group,The group rides through loose sand and the horses kick it up into the air.,The group,gold,continues to run over to do a calf jam while on the grass.,walked backwards during the final run.,\"go back in the horses, then make their way through the water.\",rides along a dune section and through some low vegetation.,3\n10709,anetv_0z7qHOca3D4,18991,A large empty beach is seen seen from the shore. A bird,A large empty beach is seen seen from the shore.,A bird,gold,comes up and hits the ball.,is surfing back in the water and a person continues surfing and going on the water.,is setting at one end of the bow.,is seen walking along the shoreline.,3\n10710,anetv_0z7qHOca3D4,18992,A bird is seen walking along the shoreline. A group,A bird is seen walking along the shoreline.,A group,gold,rides horses along the coast line together.,of runners is shown in the background showing wild animals.,of people are sitting in a kayak on the water near the edge.,of men are seen riding around on horses stuck and taking pictures down the horses.,0\n10711,anetv_0z7qHOca3D4,18994,The group rides up along the bluffs. A female rider,The group rides up along the bluffs.,A female rider,gold,splashes the boat in the gloomy channel.,shows a ferris bike.,does a wheelie and the television shows her stripped bare.,rides near the waters edge.,3\n10712,anetv_0z7qHOca3D4,18993,Different species of flowers are seen. The group,Different species of flowers are seen.,The group,gold,rides up along the bluffs.,plays different places in the area together.,approaches clothes and leaves together.,is still playing intertubes on a water hill.,0\n10713,anetv_0z7qHOca3D4,18990,An introduction graphic is seen with title. A large empty beach,An introduction graphic is seen with title.,A large empty beach,gold,are shown passing through the snowy mountains.,is shown and a woman shows how to throw the balls.,is seen seen from the shore.,is shown with many kids talking and throwing darts.,2\n10714,anetv_0z7qHOca3D4,18997,The riders ride slowly and then it becomes later in the day and the sun is getting low. The beach,The riders ride slowly and then it becomes later in the day and the sun is getting low.,The beach,gold,is seen from a distance as the sun has set.,\"is showing a batch of sponsors and shiny dust filled in a post of foliage, a fire and it reloading the snow.\",is still in the ocean several different clips with surfers getting ready for the boat.,is extremely peaceful with it as it rides down to the desert.,0\n10715,anetv_0z7qHOca3D4,18995,A female rider rides near the waters edge. The group rides through loose sand and the horses,A female rider rides near the waters edge.,The group rides through loose sand and the horses,gold,ride through a snowy snow.,kick it up into the air.,with a stick to the set.,moves down the storm.,1\n10716,anetv_BbFCkDdq3S0,16457,He takes a huge leap into the air. He,He takes a huge leap into the air.,He,gold,lands in a giant sand pit.,gives his routine to his broomstick.,jumps up off the stage and head to the judges.,shuts the door alone.,0\n10717,anetv_BbFCkDdq3S0,16456,A boy runs slowly down a path. He,A boy runs slowly down a path.,He,gold,makes his way across the field in some colorful circles and as it passes around a teen mannequin reading his globe.,stops by a line and starts to make many of the bold lines from different angles.,takes a huge leap into the air.,throws the board upside down.,2\n10718,lsmdc3039_JACK_AND_JILL-2533,16670,He takes out a four - foot stick. He,He takes out a four - foot stick.,He,gold,uncovers a reed and settles onto the chairs.,takes off his pants.,holds up the stone shoe.,tosses someone the ball.,3\n10719,anetv__7JooVc_sCQ,1,A close up shot of a bike is done while a man puts his gear on to ride. One rider,A close up shot of a bike is done while a man puts his gear on to ride.,One rider,gold,throws another person over the snow while another man watches.,is shown riding around while another does various tricks.,runs down and up onto a dirt track.,zooms in on a bike that hurries to him and the man continues talking.,1\n10720,anetv__7JooVc_sCQ,2,One rider is shown riding around while another does various tricks. Several different bikers,One rider is shown riding around while another does various tricks.,Several different bikers,gold,watch on front the ride then run off in a different direction.,are shown riding up and down tracks and flying through at record speeds.,take the race down the track through a competition.,are shown riding down a hill together as they skateboard.,1\n10721,anetv_kgPvfYhmn54,2743,They are paddling the rafts through harsh white water rapids. The people,They are paddling the rafts through harsh white water rapids.,The people,gold,\"clamber through the rapids, deep in water with riders doing water at the bottom of the river.\",\"fall out, and are pulled back in by other rafters before continuing on their way.\",blocked only a few rows to turn the top under the water.,begin to look toward a large waterfall and slowly turn to the surfer who also continues into the water to wave her.,1\n10722,anetv_kgPvfYhmn54,2742,A group of people are floating on rafts on a river. They,A group of people are floating on rafts on a river.,They,gold,are soaking small kayaks along the river.,are paddling the rafts through harsh white water rapids.,paddle through the water in an arena.,start kayaking at the bottom of the hill.,1\n10723,anetv_lOtplLrtapE,450,\"A man shows a video of himself training for the weightlifting events in the Olympics. Several times, he\",A man shows a video of himself training for the weightlifting events in the Olympics.,\"Several times, he\",gold,picks up weight and lifts it over his head.,grabs the bike and vaults a few times.,jumps off the bar and doing several jumps.,\"does the same, but this time the whole time.\",0\n10724,anetv_spAlIMm8jSg,13926,A replay of her performance is shown. Words,A replay of her performance is shown.,Words,gold,is studying the screen by her performance.,are then shown on the screen.,each go down afterwards.,church is shown with a white background.,1\n10725,anetv_spAlIMm8jSg,13924,A woman jumps onto two bars and does a gymnastics routine. The audience,A woman jumps onto two bars and does a gymnastics routine.,The audience,gold,is watching her perform.,give their high tips.,starts to do balance routine.,clapping for the gymnast before the gymnast stands up and practices the routine.,0\n10726,anetv_spAlIMm8jSg,13925,The audience is watching her perform. She,The audience is watching her perform.,She,gold,jumps off the bars and lands on the mat with her hands in the air.,\"is talking to the audience, but the audience is ecstatic.\",stops playing it put her arms together.,spins herself around and falls on the stage and does a little dance.,0\n10727,anetv_eNE8O5cgYuE,2572,\"It was scenic and beautiful out there, flowers blossoming and everything. A few of the runners\",\"It was scenic and beautiful out there, flowers blossoming and everything.\",A few of the runners,gold,casually puting their shoes as she makes them.,is shown in the garden.,soberly bounding out and started playing close together.,talk about their experience to reporters.,3\n10728,anetv_eNE8O5cgYuE,2571,There is ia group of runners starting a marathon taking their time. It,There is ia group of runners starting a marathon taking their time.,It,gold,is field in a screen with running individuals making a path in the middle of the field.,\"was scenic and beautiful out there, flowers blossoming and everything.\",plays a marathon of time.,is a quiet facility of water.,1\n10729,anetv_xAI1y9izXOM,2095,Two men sit across a table and begin an arm wrestling match. They both,Two men sit across a table and begin an arm wrestling match.,They both,gold,\"have a drink, and the two continue playing with one another during the video.\",struggle a bit until the man on the left eventually wins.,begin playing the game with their sticks.,begin to cheer and spin.,1\n10730,anetv_SKMVLKmgxAw,17015,\"A man is shown seated, banging on a pair of bongo drums. He\",\"A man is shown seated, banging on a pair of bongo drums.\",He,gold,picks up the guitar.,continues strumming the guitar as he continues to play.,alternates between the drums as he plays a tune.,plays a different set of buttons on the violin.,2\n10731,anetv_SKMVLKmgxAw,17014,White text on a black screen appears. A man,White text on a black screen appears.,A man,gold,reads the detailed information.,\"is shown seated, banging on a pair of bongo drums.\",is stretching a coat on a dance floor.,starts talking to a man how to make a coffee mug at them.,1\n10732,anetv_SKMVLKmgxAw,306,He is using his hands to play a pair of drums. He,He is using his hands to play a pair of drums.,He,gold,is sitting on the flooring on the floor.,hangs the frisbees in his locker.,continues to play throughout the video.,takes one hammer off the cue.,2\n10733,anetv_SKMVLKmgxAw,17016,He alternates between the drums as he plays a tune. There,He alternates between the drums as he plays a tune.,There,gold,music starts from his list.,\", a man plays on a bell on a blue carpet in a gym.\",is shown with his playing.,is a close up of the man banging the drums with his hands.,3\n10734,lsmdc0053_Rendezvous_mit_Joe_Black-71277,14506,But someone only pours coffee. Someone,But someone only pours coffee.,Someone,gold,has lumber and has been too burned to dead.,gazes at the going - on outside which are increasing in intensity.,eats a dance as they stand on a dock burning.,\"spots someone, pulls himself around his hotel desk, and starts for the shot.\",1\n10735,lsmdc3087_WE_BOUGHT_A_ZOO-41529,18141,\"He gazes after her gratefully. Going into the house, he\",He gazes after her gratefully.,\"Going into the house, he\",gold,grins at the flowers and a flock of birds in his wake.,\"finds someone sitting at the foot of the stairs, in tears.\",finds someone lying in bed underneath his big bed.,\"groggily removes the phone from her ear, slipping it off.\",1\n10736,lsmdc3087_WE_BOUGHT_A_ZOO-41529,18140,Someone gives a stoic shrug. She,Someone gives a stoic shrug.,She,gold,packs a suit.,\"lays in a seat, and peeks under the door.\",\"regards him compassionately, then gets up, pats his leg, and looks him in the eye.\",climbs out of the limo.,2\n10737,lsmdc0031_The_Lost_Weekend-65391,12846,\"Someone, an empty jigger in his hand, stands at the same spot, only now leaning with his back against the bar. The place\",\"Someone, an empty jigger in his hand, stands at the same spot, only now leaning with his back against the bar.\",The place,gold,\", the g., is thrown among the students.\",is motionless on the ground as the red wavy haired men continue their step closer with the seething mass of evergreens behind them.,\"is about half filled - - eight customers at the bar, five tables occupied.\",\"stores are bare, two pursue colored balls pointed out at the shadow of a naked man standing on either side.\",2\n10738,anetv_RK8VF2pL72I,10758,A woman is sitting in a chair knitting. She,A woman is sitting in a chair knitting.,She,gold,looks up and talks to someone.,points her arm at the camera without amused.,begins playing the saxophone in the distance.,sits up and shows how to use makeup.,0\n10739,anetv_RK8VF2pL72I,10759,She looks up and talks to someone. She,She looks up and talks to someone.,She,gold,limps slowly to her horse in the doorway.,leans heavily against the wall and his pillows bent behind her.,notices the low - colored bullet with a key from la boots.,continues knitting in her hands.,3\n10740,anetv_QDjaaUtepHo,18916,A pink and yellow logo with lips appears on screen. A male hairdresser,A pink and yellow logo with lips appears on screen.,A male hairdresser,gold,shows how to make a face that wear that picture.,gets off the counter with a medal.,works on the hair of a seated woman in a luxury beauty salon.,does a call on her black hair.,2\n10741,anetv_QDjaaUtepHo,18917,A male hairdresser works on the hair of a seated woman in a luxury beauty salon. The man,A male hairdresser works on the hair of a seated woman in a luxury beauty salon.,The man,gold,talks to the camera and shows her knife moving powders.,dries and applies product to the woman's hair.,talks to the camera and brushes her hair with a sad red blow dryer.,squeezes in and receives the pictures.,1\n10742,lsmdc0030_The_Hustler-64667,13309,Someone rises and confronts someone almost scornfully. Someone,Someone rises and confronts someone almost scornfully.,Someone,gold,grabs him and lifts him.,\"stands nearby, taking a pen from his companion's feet and staring pensively at it.\",\"hands a crossbow to someone, who leaves.\",\"looks down at his own dirty, disheveled shirt.\",3\n10743,lsmdc0030_The_Hustler-64667,13308,Someone opens his palms for the sprinkling of the talcum powder. Someone,Someone opens his palms for the sprinkling of the talcum powder.,Someone,gold,\"rubs his hands together, then takes out his cigarette case.\",sees a black pistol gun in a battered leather sack half pipe with a bottle of spirits.,is all happy with it.,is rinsed in a basin and mixed with water and salt to the head.,0\n10744,lsmdc0030_The_Hustler-64667,13307,\"Someone emerges from the washroom, dries his hands, looks at someone and then at someone who nods. Someone\",\"Someone emerges from the washroom, dries his hands, looks at someone and then at someone who nods.\",Someone,gold,helps someone into the jacket with the carnation still in the lapel.,\"starts the other way, quickly, for her own defense with the gun and turns to the bed.\",\"stands with his hand in his pockets, cradles something in his hands.\",unbuckles his seat belt and takes off.,0\n10745,lsmdc0030_The_Hustler-64667,13310,\"Someone looks down at his own dirty, disheveled shirt. Someone\",\"Someone looks down at his own dirty, disheveled shirt.\",Someone,gold,stays drowsily on the monitor and underwater.,moves to put on his jacket.,picks up a stack of cocktail crates.,sees a light surging outside of the stall.,1\n10746,lsmdc0030_The_Hustler-64667,13306,Someone starts to put away someone's cue stick. Someone,Someone starts to put away someone's cue stick.,Someone,gold,pushed someone across the room.,\"watches, as the killer points to two foot wave blasts toward their opponents.\",\"emerges from the washroom, dries his hands, looks at someone and then at someone who nods.\",shoves the remainder back into his trouser pocket.,2\n10747,anetv_9wRQsxVFwkE,4909,A child is seen pushing a lawn mower along the side of a lawn while looking and laughing the camera. The man,A child is seen pushing a lawn mower along the side of a lawn while looking and laughing the camera.,The man,gold,turns around and continues mowing along the grass while the camera captures his movements.,continues mowing the lawn as well as the boy bending all around the area while looking into the camera.,continues driving and he continues speaking to the camera while the cop outside pours spilling pool and smiles to the camera.,is then seen putting more tape down the grass while showing different products in the end.,0\n10748,anetv_9wRQsxVFwkE,15496,A young man is seen pushing a lawn mower and smiling to the camera. The man,A young man is seen pushing a lawn mower and smiling to the camera.,The man,gold,continues mixing on lawn mower while the camera pans around him.,moves to the other table while looking around and smiling.,then begins pushing the mower while he bends around all over the body to continue mowing.,looks over his shoulder and walks back and fourth.,3\n10749,anetv_9wRQsxVFwkE,15497,The man looks over his shoulder and walks back and fourth. He,The man looks over his shoulder and walks back and fourth.,He,gold,keeps playing with the cymbals and bows as he continues to skate.,then peels off his arm and leads into more speaking.,continues with one man performing with the hula hoop.,walks past one more time with the mower.,3\n10750,lsmdc1027_Les_Miserables-6069,3169,\"Once finished, he gets off her and saunters away, leaving her on her back. She\",\"Once finished, he gets off her and saunters away, leaving her on her back.\",She,gold,trails his fingertips down her cheek through deep finer.,\"lies motionless, her head on a pillow.\",goes into the room.,turns but gives her a kindly hug and kisses her ear.,1\n10751,lsmdc1027_Les_Miserables-6069,3168,\"He lies on top of someone, and her lips tremble. Once finished, he\",\"He lies on top of someone, and her lips tremble.\",\"Once finished, he\",gold,takes the cup again and walks past.,removes his false profile.,is down and absently glimpses the hair stylists.,\"gets off her and saunters away, leaving her on her back.\",3\n10752,lsmdc1027_Les_Miserables-6069,3170,\"She lies motionless, her head on a pillow. Her rouged face\",\"She lies motionless, her head on a pillow.\",Her rouged face,gold,is covered in sweat.,is grim and somber.,is beaded with soot.,is yanking up from the tank.,1\n10753,lsmdc1027_Les_Miserables-6069,3167,The captain pushes her down and turns her over. He slowly,The captain pushes her down and turns her over.,He slowly,gold,strides toward the counter.,\"sits up, cradling some resting positions and rests his head on his elbow.\",raises the hem of her dress.,puts his hand in the air on his tower.,2\n10754,lsmdc3081_THOR-38184,12914,\"Someone walks to someone, who stands on a balcony and looks out over his sprawling kingdom. Someone\",\"Someone walks to someone, who stands on a balcony and looks out over his sprawling kingdom.\",Someone,gold,\"caps his helmet, the marching band man smells his hat and they then relax.\",stares straight ahead then looks down.,surfaces as the bright light turns to shine.,\"screams as he walks through the crowd, he goes down over the impatient ground as if to steer his thoughts.\",1\n10755,lsmdc3081_THOR-38184,12911,\"Someone walks up to his mother and takes her hand briefly, then continues on. As someone watches her son walk away, someone\",\"Someone walks up to his mother and takes her hand briefly, then continues on.\",\"As someone watches her son walk away, someone\",gold,softly shuts the door behind her.,steps up beside her.,shakes her hand.,searches for the arriving guests.,1\n10756,lsmdc3081_THOR-38184,12910,\"Sitting at the table, someone smiles then stiffens as someone passes through the crowd behind her. Someone\",\"Sitting at the table, someone smiles then stiffens as someone passes through the crowd behind her.\",Someone,gold,'s eyes are wide open.,arrives by the house as someone makes his way through the doorway.,\"walks up to his mother and takes her hand briefly, then continues on.\",is squeezing her breast with his palm.,2\n10757,lsmdc3081_THOR-38184,12912,\"As someone watches her son walk away, someone steps up beside her. Someone\",\"As someone watches her son walk away, someone steps up beside her.\",Someone,gold,\"sitting in the high bed, she drags the woman out the alcove and someone leaves at another door.\",turns the tv off.,shakes someone's piece.,offers a small smile and touches someone's bare arm.,3\n10758,lsmdc3081_THOR-38184,12913,Someone offers a small smile and touches someone's bare arm. Someone,Someone offers a small smile and touches someone's bare arm.,Someone,gold,\"walks to someone, who stands on a balcony and looks out over his sprawling kingdom.\",\"makes a kind of shrug, then briefly opens her eyes to share a warm smile.\",\"wears a overcoat and his crumpled fedora, then wears a backpack and of black jacket.\",helps duke drag someone into the water.,0\n10759,anetv_U1nvAxorOPQ,6393,A woman is seen speaking to the camera while holding up tools and another woman standing behind her brushing a horse. The woman,A woman is seen speaking to the camera while holding up tools and another woman standing behind her brushing a horse.,The woman,gold,continues brushing the horse's mane and leads the horse away while more speaking.,uses a tool on the horse's hooves and then cleans off the front with a brush.,is then seen brushing the horse close while still touching the horse.,continues to speak to the camera again and then rinses her hair back in the end.,1\n10760,anetv_U1nvAxorOPQ,6394,The woman uses a tool on the horse's hooves and then cleans off the front with a brush. The,The woman uses a tool on the horse's hooves and then cleans off the front with a brush.,The,gold,woman gets change from the bucket and cleans down the dog.,\"instructions again, once more after it repeatedly cleaning.\",\"girl spreads over, and is then shown scrubbing a stone.\",continues cleaning off the hooves and ends with her looking at the camera.,3\n10761,anetv_U1nvAxorOPQ,16196,A woman is seen speaking to the camera while standing next to another woman. The first then,A woman is seen speaking to the camera while standing next to another woman.,The first then,gold,begins lifting a horse's hoof and cleaning off the bottom.,begins painting her nails with an electric tool.,begins washing a brush on the rag.,holds up a match and begins applying it up in the cup.,0\n10762,anetv_tOEomEC1rY8,3006,A woman is sitting in a chair while a woman behind her is holding a hair dryer. She,A woman is sitting in a chair while a woman behind her is holding a hair dryer.,She,gold,dries the hair back with her hand and works on out.,continues to brush the woman's hair.,finishes her hair and walks away.,begins drying the woman's hair.,3\n10763,anetv_tOEomEC1rY8,3007,She begins drying the woman's hair. The woman,She begins drying the woman's hair.,The woman,gold,continues to rub her face and holds her hair.,places a large comb on her hair.,is talking to the camera pointing at a hair dryer.,puts her hair down in front of her beard.,2\n10764,anetv_83WXP5z80Y0,12355,The woman demonstrates using a hula hoop in a large room while another person talks. Another person,The woman demonstrates using a hula hoop in a large room while another person talks.,Another person,gold,shows how to properly bounce on the bongos.,approaches but the woman can seen this.,sits in a mirrored table and types facing the camera.,looks in through the window of the door.,3\n10765,anetv_83WXP5z80Y0,12354,Title screens are shown on the video. The woman,Title screens are shown on the video.,The woman,gold,demonstrates using a hula hoop in a large room while another person talks.,runs and talks to the camera again.,is speaking to her friend.,takes the jump and begins a laughs as a crowd watches.,0\n10766,lsmdc0028_The_Crying_Game-63890,5336,She falls into a deep sleep. Someone,She falls into a deep sleep.,Someone,gold,\"looks down at her, almost fondly.\",\"closes her eyes, then lowers her gaze on the ground below.\",\"stretches her arm, and notices the text facing through the photos.\",hurries out of sight scattering people.,0\n10767,lsmdc0028_The_Crying_Game-63890,5334,She woozily tries to hit him round the face. Someone,She woozily tries to hit him round the face.,Someone,gold,brings herself to a large arm chair beside him.,raises an unsteady hand and points it at him.,holds it with both arms and knocks.,\"is up for both someone then, sweeping his wand before stirring the trigger again.\",1\n10768,lsmdc0028_The_Crying_Game-63890,5339,She searches through the pockets and takes out the gun. An alarm sounds; she,She searches through the pockets and takes out the gun.,An alarm sounds; she,gold,is so excited for her someone.,reaches to turn it off.,starts to climb the stairs.,does n't think what can happen.,1\n10769,lsmdc0028_The_Crying_Game-63890,5335,She says very slowly and sleepily. She,She says very slowly and sleepily.,She,gold,shows her earring and pauses to look at the cube.,falls into a deep sleep.,drops inside her arms several times.,\"sits down on the bed and lies sleeping, her head partially pressed against his chest.\",1\n10770,lsmdc0028_The_Crying_Game-63890,5338,\"She rises very quietly and goes to his coat, thrown across a chair. She\",\"She rises very quietly and goes to his coat, thrown across a chair.\",She,gold,\"rushes up at someone, collecting her things on the floor.\",\"has her back against his shoulder, followed by someone, who is at the piano.\",is flying back on crumpled clothes.,searches through the pockets and takes out the gun.,3\n10771,lsmdc0028_The_Crying_Game-63890,5337,\"Someone looks down at her, almost fondly. They\",\"Someone looks down at her, almost fondly.\",They,gold,kiss and kiss tenderly.,leave the bar.,share a look.,\"are lying on the bed together, fully clothed.\",3\n10772,lsmdc0028_The_Crying_Game-63890,5341,Someone takes several silk stockings out of a drawer and ties them very securely to each corner of the brass bed. She,Someone takes several silk stockings out of a drawer and ties them very securely to each corner of the brass bed.,She,gold,visit illuminate the rooms filled stage.,\"ties them round both of someone's feet, very gently, so as not to wake him.\",appear on the piano.,picks it right up to sit in the chair and opens the slipping door after the sitting man.,1\n10773,anetv_6PnPu_cLCvE,13432,A boy stands in front of a garage. the boy then,A boy stands in front of a garage.,the boy then,gold,\"takes a cigarette, lights and smokes it.\",leads the right friend.,sprays a white roller on the face.,grabs a piece of wood to set down a bars.,0\n10774,anetv_6PnPu_cLCvE,13433,\"The boy then takes a cigarette, lights and smokes it. the boy\",\"The boy then takes a cigarette, lights and smokes it.\",the boy,gold,turns his face in fire.,speaks again to the man and girl painting the porch.,takes another puff of the hookah.,puts the cigarette out on the ground.,3\n10775,lsmdc0003_CASABLANCA-47081,15971,\"Someone, sitting at a table with her German officer, stares down into her drink. Someone\",\"Someone, sitting at a table with her German officer, stares down into her drink.\",Someone,gold,\"makes it to someone, who is sitting in front of a young girl in a large white dress.\",speaks to the orchestra.,puts luscious bits of vodka in a glass jar.,pulls the bottle down from his cuff and holds a tray of toast.,1\n10776,lsmdc0003_CASABLANCA-47081,15966,People hear male voices singing downstairs. Someone,People hear male voices singing downstairs.,Someone,gold,stops running as someone jogs quickly off all night.,situated over a seat in a prominently courtyard.,opens her rear door.,stands at the balcony outside his office and watches the germans below.,3\n10777,lsmdc0003_CASABLANCA-47081,15964,\"Someone gets up, as does someone. Someone\",\"Someone gets up, as does someone.\",Someone,gold,walks into the dim corridor for someone's suv.,snatches up the table.,\"looks at him, puzzled.\",gets out of the car and stands still with the lights.,2\n10778,lsmdc0003_CASABLANCA-47081,15968,\"At the bar, someone watches with raised eyebrow. Someone's lips\",\"At the bar, someone watches with raised eyebrow.\",Someone's lips,gold,curl into a churning smile.,are very tight as he listens to the song.,are spread in front of someone's face.,\"move, someone takes a deep breath.\",1\n10779,lsmdc0003_CASABLANCA-47081,15977,\"Someone jumps up and sings with tears in her eyes. Someone, overcome with emotion,\",Someone jumps up and sings with tears in her eyes.,\"Someone, overcome with emotion,\",gold,\"looks proudly at someone, who sings with passion.\",stands thoughtfully between his eye - hole total.,does the last second with the sound of his life.,puts down her top finger and looks at people again.,0\n10780,lsmdc0003_CASABLANCA-47081,15967,\"Someone stands at the balcony outside his office and watches the Germans below. At the bar, someone\",Someone stands at the balcony outside his office and watches the Germans below.,\"At the bar, someone\",gold,finds the hotel colonel still pinned to the floor.,watches with raised eyebrow.,tends to his overalls.,is asleep with someone.,1\n10781,lsmdc0003_CASABLANCA-47081,15970,\"He starts down the step. Someone, sitting at a table with her German officer,\",He starts down the step.,\"Someone, sitting at a table with her German officer,\",gold,is about to follow her.,sits down in a chair.,is standing in front of a tv camera.,stares down into her drink.,3\n10782,lsmdc0003_CASABLANCA-47081,15973,Someone passes the table where someone sits and goes straight to the orchestra. People,Someone passes the table where someone sits and goes straight to the orchestra.,People,gold,arrive behind the island.,gather outside a cafeteria and crowded tables and file out.,sing as they start to play.,\"stand slowly someone, who looks up from the bathroom.\",2\n10783,lsmdc0003_CASABLANCA-47081,15978,\"Someone, overcome with emotion, looks proudly at someone, who sings with passion. Finally the whole cafe\",\"Someone, overcome with emotion, looks proudly at someone, who sings with passion.\",Finally the whole cafe,gold,begins laughing as the shape is wrenched away.,is busy with the distressed lemonade.,someone arrives holding white guitar playing drummers on the battlefield.,\"stands, singing, their faces aglow.\",3\n10784,lsmdc0003_CASABLANCA-47081,15980,Someone's face is exalted. She,Someone's face is exalted.,She,gold,is completely intent at the words.,starts wiping the baby's face with the napkin.,shouts at the top of her lungs.,\", she suddenly rises and gestures with her chest.\",2\n10785,lsmdc0003_CASABLANCA-47081,15975,\"Someone conducts the German singing in an attempt to drown out the competition. After a while, someone and his officers\",Someone conducts the German singing in an attempt to drown out the competition.,\"After a while, someone and his officers\",gold,throw someone to each other.,give up and sit down.,arrive in the queensboro bridge surrounded by someone who is by the ferry.,rush the zoo to another cafe where a man holds his older brother.,1\n10786,lsmdc0003_CASABLANCA-47081,15981,She shouts at the top of her lungs. She deliberately,She shouts at the top of her lungs.,She deliberately,gold,\"catches a section, then smashes into the ship with a thud.\",wags her chair high.,steps up and has her belly down.,faces the alcove where the germans are watching.,3\n10787,lsmdc0003_CASABLANCA-47081,15969,Someone's lips are very tight as he listens to the song. He,Someone's lips are very tight as he listens to the song.,He,gold,sprinkles on the top.,\"stands on the stool, hunched over to dance, thoughtfully.\",starts down the step.,comes the passenger door.,2\n10788,lsmdc0003_CASABLANCA-47081,15982,She deliberately faces the alcove where the Germans are watching. Several French officers,She deliberately faces the alcove where the Germans are watching.,Several French officers,gold,sit at a table leisurely at one row of their identical sculptures.,sit on a couch.,stand behind one of them in a wheelchair.,\"surround someone, offering him a drink.\",3\n10789,lsmdc0003_CASABLANCA-47081,15972,Someone speaks to the orchestra. Someone,Someone speaks to the orchestra.,Someone,gold,stands and ambles inside of the office.,\"loops his stick around, over and over.\",passes the table where someone sits and goes straight to the orchestra.,turns to someone and takes off as a band from a band plays.,2\n10790,lsmdc0003_CASABLANCA-47081,15979,\"Finally the whole cafe stands, singing, their faces aglow. The song\",\"Finally the whole cafe stands, singing, their faces aglow.\",The song,gold,ends with the little girl waving something on the grass.,\"finishes on a high, triumphant note.\",comes down the little kid's pace.,is playing set in silence.,1\n10791,lsmdc0003_CASABLANCA-47081,15976,\"After a while, someone and his officers give up and sit down. Someone\",\"After a while, someone and his officers give up and sit down.\",Someone,gold,bust through the restroom through.,jumps up and sings with tears in her eyes.,looks up the watchtower to the front of the school.,\"uncurls the trunk on front of him, then man hugging someone, who holds the child's wallet.\",1\n10792,lsmdc1060_Yes_man-99278,13077,\"Someone sits at the bar with a bottle of beer. Smiling, someone\",Someone sits at the bar with a bottle of beer.,\"Smiling, someone\",gold,runs away from her front shot.,sashays up beside him.,walks through the crowd.,takes a sip from a hip flask.,1\n10793,lsmdc1060_Yes_man-99278,13079,\"Someone sits at the bar, smiling and waiting. She\",\"Someone sits at the bar, smiling and waiting.\",She,gold,glances over and beams.,looks up from her table and notices someone heading toward his office.,hugs no seems to be particular parcels.,looks at the mastermind.,0\n10794,lsmdc1060_Yes_man-99278,13078,\"Smiling, someone sashays up beside him. Someone\",\"Smiling, someone sashays up beside him.\",Someone,gold,sits up in bed then slides his pants back on her belly.,and her other girls join him and wave to him.,\"coolly glares at someone, then faces his own powerfully.\",\"sits at the bar, smiling and waiting.\",3\n10795,lsmdc1060_Yes_man-99278,13075,She wears a spangly mini top hat. Someone,She wears a spangly mini top hat.,Someone,gold,stands with his hand on his heart.,looks from the study of a framed photo of someone on a picturesque couch.,extends someone's hand then claps.,steps ahead the huge campaign.,0\n10796,lsmdc1060_Yes_man-99278,13076,\"She pouts at the crowd, then furrows her brow. Someone\",\"She pouts at the crowd, then furrows her brow.\",Someone,gold,finds a bridesmaid with a smile.,sits at the bar with a bottle of beer.,blinks her tears and blinks her tears.,\"wrings his arms, then spots someone.\",1\n10797,anetv_wqZzLAPmr9k,10773,\"Water is salted and boiled for the pasta, and vegetables are sauteed in olive oil. Sardines\",\"Water is salted and boiled for the pasta, and vegetables are sauteed in olive oil.\",Sardines,gold,lift out in a garlic setting.,juice are being mixed and someone speaks to the camera.,\"are added, then mixed with the spaghetti noodles, creating a finished dish.\",person is mixing the ingredients in a pot with a mixer and the man cuts a cucumber and pours it into a bowl.,2\n10798,anetv_hPJw9_nPo_s,1787,\"The view is now from the first persons point of view and a person is waterboarding very quickly, going on ramps and all over a large area of water while holding onto the handle that is connected to the rope that is pulling the person. The water boarder then\",\"The view is now from the first persons point of view and a person is waterboarding very quickly, going on ramps and all over a large area of water while holding onto the handle that is connected to the rope that is pulling the person.\",The water boarder then,gold,pulls off completely for a long time to the diving board gliding and sideways.,pulled out of the water as the ocean is seen from several angles.,\"turn on the wheels, and the dog retreats.\",approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him.,3\n10799,anetv_hPJw9_nPo_s,1788,The water boarder then approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him. The water boarder continues to waterboard and the outro screen,The water boarder then approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him.,The water boarder continues to waterboard and the outro screen,gold,gives way to light the stickers on the video to clean it up.,\"appears of the aerial shot of the area with the company name, website and facebook address.\",begins to white words explain the youtube channel.,\"gets colored and the screen fades to black, blue and yellow and grey words appear over the black screen.\",1\n10800,anetv_hPJw9_nPo_s,11575,A close up of a wakeboard is seen as well as a person's hands grabbing onto string. The person,A close up of a wakeboard is seen as well as a person's hands grabbing onto string.,The person,gold,continues waterskiing around on the rope and ends by jumping it down and laughing.,continues holding the rope as another person watches.,then jumps down the mountain and continues jumping all around the area.,rides around the water on the board while doing jumps.,3\n10801,anetv_J9OSz5iCwNU,7674,The boy roller blades criss cross style around some orange cones. The boy,The boy roller blades criss cross style around some orange cones.,The boy,gold,begins blowing a blade strip out of his shoes.,\"does it again, this time weaving in and out of the cones.\",does the same thing with the horse and puts it back together.,grabs the strings and skis again and switches different angles of the blue skier over it.,1\n10802,anetv_J9OSz5iCwNU,7672,\"Later, the boy roller blades onto another ramp. The young boy\",\"Later, the boy roller blades onto another ramp.\",The young boy,gold,hops up the shadowfax platform to safety.,stops swinging and awkwardly slides across the field.,\"is seen in another outfit, performing spins at the end of his roller blading.\",uses his right hand with the scraper finding the metal bars.,2\n10803,anetv_J9OSz5iCwNU,7673,\"The young boy is seen in another outfit, performing spins at the end of his roller blading. The boy roller blades\",\"The young boy is seen in another outfit, performing spins at the end of his roller blading.\",The boy roller blades,gold,bounces low and he leads his jacket across the floor to one of the horses.,getting out of the way.,lifts the javelin across a field and jumps on it!,criss cross style around some orange cones.,3\n10804,anetv_J9OSz5iCwNU,7671,A young boy roller blades off a ramp and onto another ramp. The boy,A young boy roller blades off a ramp and onto another ramp.,The boy,gold,jumps after the edge of the building and kicks his foot in the slide.,\"speeds off onto a ramp and jumps off it, landing on the cement.\",falls down a ramp it lands in the sand track.,runs down a ramp onto a cliff.,1\n10805,anetv_hV9sBYo342M,7532,A man is running down a track. He,A man is running down a track.,He,gold,throws a javelin at the group of people.,runs down the track while holding a frisbee.,jumps onto a blue mat.,runs across the track and catches the ball.,2\n10806,anetv_hV9sBYo342M,7533,He jumps onto a blue mat. He,He jumps onto a blue mat.,He,gold,jumps over a high bar and lands on the blue mat.,jumps off the beam and falls onto the floor.,jumps off of the beam.,captures the deadly technique.,0\n10807,anetv_0SmA1cGocz4,5719,The word curling appears on the screen numerous times. A woman,The word curling appears on the screen numerous times.,A woman,gold,talks about a game of jerseys and pictures of her game being shown.,begins playing the harmonica.,walks on the parallel bars with a baton in front of her.,\"is shown having her hair dried, brushed, and curled by a specialist.\",3\n10808,anetv_0SmA1cGocz4,5721,\"He places her hair is rollers, then takes them down and styles it. Then she\",\"He places her hair is rollers, then takes them down and styles it.\",Then she,gold,shows how to wrap it up and kiss them.,poses with her new hair style.,cuts them and places it in the brushes.,puts it down the drain until its time.,1\n10809,anetv_0SmA1cGocz4,5720,\"A woman is shown having her hair dried, brushed, and curled by a specialist. He\",\"A woman is shown having her hair dried, brushed, and curled by a specialist.\",He,gold,put the scissors around the woman's hair.,starts mopping the floor while taking a step of jumping on the wall.,cuts the braided hair into sections with shots with a hair styling.,\"places her hair is rollers, then takes them down and styles it.\",3\n10810,anetv_RLdlDewtKbE,8332,Several players begin to play a cricket game on a field. A man,Several players begin to play a cricket game on a field.,A man,gold,stumbles over one of the cricket posts.,runs towards the net.,\"starts running, several men and are running.\",walks over and pulls a ball from his bench.,0\n10811,anetv_RLdlDewtKbE,8331,An intro is shown for a cricket game. Several players,An intro is shown for a cricket game.,Several players,gold,are on lacrosse of field playing.,are shown on a screen to hold of the polo shots.,begin to play a cricket game on a field.,demonstrate several goals using yelling to participate during a game of game.,2\n10812,anetv_RLdlDewtKbE,8333,A man stumbles over one of the cricket posts. The players,A man stumbles over one of the cricket posts.,The players,gold,take turns practicing their karate moves.,continue to play darts.,shake hands as the game ends.,hit the balls back and forth and onlookers hold up the ball and wait for another throw.,2\n10813,anetv_nMiXX2jqI40,18495,\"He looks at various fish under the water. Another man dressed as an elf appears, and they\",He looks at various fish under the water.,\"Another man dressed as an elf appears, and they\",gold,look at the ocean life together.,\"of scuba diving confronts the diver, showing giving another's help.\",scrape off all of the man's dark hair.,fish on to the fish.,0\n10814,anetv_nMiXX2jqI40,3128,He swims at the bottom of the ocean. He,He swims at the bottom of the ocean.,He,gold,explores old ship wrecked items and fish.,stands out straight from the water in front of him.,smiles then produces a line.,makes a sound they can break.,0\n10815,anetv_nMiXX2jqI40,18493,A man dressed as santa claus is wearing scuba gear. He,A man dressed as santa claus is wearing scuba gear.,He,gold,begins fighting several people from a protective jacket and falling.,begins cleaning a fence.,is fishing on a large piece of equipment as he guides a young girl in an open box.,is swimming through and looking at the debris and wreckage on the ocean floor.,3\n10816,anetv_nMiXX2jqI40,18494,He is swimming through and looking at the debris and wreckage on the ocean floor. He,He is swimming through and looking at the debris and wreckage on the ocean floor.,He,gold,\"begins to move, jumping down on parallel stairs, high above him swiftly.\",juts out his lip.,\"slams people around the pool, and they all disappear into the water.\",looks at various fish under the water.,3\n10817,anetv_nMiXX2jqI40,3127,A man is dressed like santa claus and wearing scuba gear. He,A man is dressed like santa claus and wearing scuba gear.,He,gold,swims at the bottom of the ocean.,\"grimaces in front of the camera, taking off his jacket and waving his hair.\",is going up to a hole on the sand.,takes a step into a tub and pushes on at a bar.,0\n10818,anetv_lsgB3WU-1r0,13419,Several businesses are shown from the outside. A fencing match,Several businesses are shown from the outside.,A fencing match,gold,is over shown in different locations.,is displayed to the camera.,commences inside a building.,is put in.,2\n10819,anetv_lsgB3WU-1r0,13418,A city skyline appears in front of a large river. Several businesses,A city skyline appears in front of a large river.,Several businesses,gold,are shown from the outside.,race down a dark trail.,are then seen sitting at the side of a mountain with a long rope.,are then shown sitting around a canvas.,0\n10820,anetv_CkC1wxAaDjM,17988,An archery tournament begins and the montage shows the players hiding behind shields and firing back and forth. The parents of the children,An archery tournament begins and the montage shows the players hiding behind shields and firing back and forth.,The parents of the children,gold,are in a pool in green shorts demonstrating as they play a game of outdoor polo.,fight and recording them as they move off the spectator.,are shown watching the battle.,eat on the seesaw over the indoor soccer team.,2\n10821,anetv_kZXVFSjRt5g,6122,They get ins the boat with paddles and some others next to them in a kayak. They,They get ins the boat with paddles and some others next to them in a kayak.,They,gold,leap into the waters of the lake as well as the closing.,wave at the ocean back to the camera.,\"use the paddle to try to control the boat, but get splashed by the very brown water.\",go up and talk to the camera.,2\n10822,anetv_kZXVFSjRt5g,6121,A few people are sitting down indian style with life vest on watching a man inside of a float boat talk. They,A few people are sitting down indian style with life vest on watching a man inside of a float boat talk.,They,gold,start to walk during as if you'll swim.,get ins the boat with paddles and some others next to them in a kayak.,are in a game of water.,are doing steps while going by behind their boat.,1\n10823,anetv_kZXVFSjRt5g,6123,\"They use the paddle to try to control the boat, but get splashed by the very brown water. Another little boat comes and bumps into them, they\",\"They use the paddle to try to control the boat, but get splashed by the very brown water.\",\"Another little boat comes and bumps into them, they\",gold,are doing the same thing.,finally leap through the air onto the precipice as they continue to push the waves off the choppy waters.,climb the rock until very high.,paddle until they are about to reach back to land.,3\n10824,lsmdc3001_21_JUMP_STREET-47,10357,\"The biker knocks him over and runs off. Straddling the leader's rear, someone\",The biker knocks him over and runs off.,\"Straddling the leader's rear, someone\",gold,sees the zombies still beside him.,grabs someone by the throat.,spins the wheeler away.,humps him as he cuffs him.,3\n10825,lsmdc3001_21_JUMP_STREET-47,10356,\"Elsewhere, someone vaults off a post and tackles the leader. The biker\",\"Elsewhere, someone vaults off a post and tackles the leader.\",The biker,gold,hops into one of the lifeboats and waves their arms overhead as her dances.,sits on a pair of white horses.,knocks him over and runs off.,\"trots off, pleasantly looking for sight.\",2\n10826,lsmdc3001_21_JUMP_STREET-47,10359,Someone leaps into someone's arms and the athletic cop swings his partner around. They,Someone leaps into someone's arms and the athletic cop swings his partner around.,They,gold,doors slam shut as the snow closes outside.,slap at his mother.,face the gang leader.,follow someone out from the living room.,2\n10827,lsmdc3001_21_JUMP_STREET-47,10354,Someone gets on his bike. Someone,Someone gets on his bike.,Someone,gold,chases the leader on foot.,climbs out of the limo.,comes down the stairs.,dives into another pit.,0\n10828,lsmdc3001_21_JUMP_STREET-47,10361,As someone pretends to hump him someone kneels by his face. Nearby young families,As someone pretends to hump him someone kneels by his face.,Nearby young families,gold,grow up at a velvet table.,hold out his walkie - talkie.,gawk with horrified expressions.,walk his young home in a blazing theater.,2\n10829,lsmdc3001_21_JUMP_STREET-47,10355,\"Pulling out in front of the bearded bikers, someone gets off his bike and draws his gun. Elsewhere, someone\",\"Pulling out in front of the bearded bikers, someone gets off his bike and draws his gun.\",\"Elsewhere, someone\",gold,vaults off a post and tackles the leader.,knocks at a gate and lets go of a bunch of riders.,\"answers his rear window, cupping a charred limb and gives a wince.\",shows a phone to a penis inspecting matveyev's services.,0\n10830,anetv_FKl0077EUoY,18204,The person turns it on and then off off. We,The person turns it on and then off off.,We,gold,see the time being played by a castle.,see blue kayaks on the shore.,see a flash of a credits.,see the man talking to the camera.,3\n10831,anetv_FKl0077EUoY,18203,The person touches it and turns it off. The person,The person touches it and turns it off.,The person,gold,turns it on and then off off.,throws an orange and fades to silhouette.,grabs the old bowl and styles it.,puts a marker into the cone.,0\n10832,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86789,3128,The nurse ends her call. Someone,The nurse ends her call.,Someone,gold,hangs out her phone and goes into the living room.,releases her bloody hand away.,rises to his feet and enters a hospital ward where he strolls past bed - bound patients.,takes off someone's shirt and lowers her by the defensive.,2\n10833,anetv_MFeI2mRg6Ho,2722,\"The guy from the yellow team has the ball on the stick, he's running quickly with it and he scores. They\",\"The guy from the yellow team has the ball on the stick, he's running quickly with it and he scores.\",They,gold,skate across the squares toward the young school the others are running as the process is paused.,\"play the game of against the other team, and the two men demonstrate basketball players and play.\",\"are shown about soccer together using a change to kick a ball over a goal, but he keeps the broom to hold blocked and\",put the trophy in the air and yell with excitement.,3\n10834,anetv_MFeI2mRg6Ho,2721,\"Some team is playing a game on the field, one of them scores. The audience goes crazy and then the teams\",\"Some team is playing a game on the field, one of them scores.\",The audience goes crazy and then the teams,gold,play a game back on a gymnasium while a young team of the players give the coach an interview.,are back to trying to score into the goal.,begin to cut mordor.,start clapping the match.,1\n10835,anetv_lrM8LSnXmSw,6951,A woman is seen speaking to the camera while standing in front of a board. She,A woman is seen speaking to the camera while standing in front of a board.,She,gold,shows a close up of the board on the side and is seen speaking to the camera.,begins speaking to the camera while speaking to the camera while showing off various dishes.,begins moving up and down the board while spinning herself around and moving her body.,uses a pole to iron a piece while speaking to the camera.,2\n10836,anetv_lrM8LSnXmSw,6952,She begins moving up and down the board while spinning herself around and moving her body. She,She begins moving up and down the board while spinning herself around and moving her body.,She,gold,continues moving all around the yard while showing off her hands in the end.,continues walking around the woman and ends with her moving back and fourth by clapping her hands.,continues moving along the beam while the camera captures her movements.,continues to move and stops to face the camera in the end.,3\n10837,anetv_gCDpUPvD3s4,1948,One person makes a goal. A person walking on the ground,One person makes a goal.,A person walking on the ground,gold,runs along the sides.,grabs a ball with a mallet.,is chained on the other.,runs lots of chalk.,1\n10838,anetv_gCDpUPvD3s4,14846,\"People rides horses holding polo sticks as well people that walk next to the horsemen. A person from the horse hit a ball with the polo stick, also a player\",People rides horses holding polo sticks as well people that walk next to the horsemen.,\"A person from the horse hit a ball with the polo stick, also a player\",gold,hit the ball while walking.,comes and walks the man is balancing talks.,is led to come on for the man.,gives way to the ball.,0\n10839,anetv_3CO7fRiJOy4,4973,One of them continuously spins in circles. She,One of them continuously spins in circles.,She,gold,players are along after another tile backing and the girls kick a ball back and fourth.,rides alone after the others have left.,is knocked backward and eventually join into a lot of sand.,\"loses the first female drummer, and walks away.\",1\n10840,lsmdc3071_THE_DESCENDANTS-5675,1004,\"On a small stage, three male singers perform on stools as they strum a guitar, a ukulele, and a bass. Scanning the restaurant, someone\",\"On a small stage, three male singers perform on stools as they strum a guitar, a ukulele, and a bass.\",\"Scanning the restaurant, someone\",gold,\"spots a man with grey, shoulder - length hair at the bar.\",sees someone hurtling up the river to join the crowd and other members.,\"gives a potion goodbye, then twirls behind a bass drum, music singing.\",peers over a balcony.,0\n10841,lsmdc3071_THE_DESCENDANTS-5675,1005,\"Scanning the restaurant, someone spots a man with grey, shoulder - length hair at the bar. Someone\",\"Scanning the restaurant, someone spots a man with grey, shoulder - length hair at the bar.\",Someone,gold,pushes open a closed display door and looks out from a new door.,\"claps her hands, then walks away.\",looks out the bar at someone's night.,\"sidles down the narrow gap between the bar and a wall, then rounds a corner to the other side and joins someone.\",3\n10842,lsmdc3071_THE_DESCENDANTS-5675,1003,\"The family pauses near the threshold, taking in the thriving casual hot spot. On a small stage, three male singers\",\"The family pauses near the threshold, taking in the thriving casual hot spot.\",\"On a small stage, three male singers\",gold,line up from stage.,sit and lunch together.,stand in a circle waiting for the second goateed young female.,\"perform on stools as they strum a guitar, a ukulele, and a bass.\",3\n10843,lsmdc3071_THE_DESCENDANTS-5675,999,\"The mother faces the water. Watching her, someone\",The mother faces the water.,\"Watching her, someone\",gold,\"finishes, ignoring himself.\",hurriedly edges in sullenly.,adopts a breezy demeanor.,surfaces in her stomach.,2\n10844,lsmdc3071_THE_DESCENDANTS-5675,1002,\"Raindrops plop into the placid water, dotting it with tiny percolations. Someone\",\"Raindrops plop into the placid water, dotting it with tiny percolations.\",Someone,gold,\"leads the way up to the porch, then through the doorway.\",springs into his victim and tosses the dagger away.,fill their alarmed eyes.,zooms in near another rider on a kick.,0\n10845,lsmdc3071_THE_DESCENDANTS-5675,998,Someone bites back a comment and faces the water. The woman,Someone bites back a comment and faces the water.,The woman,gold,\"grabs her sister, hugs her and arrives up.\",shoves someone's hands in the dish.,\"fetches a lanky curtain, and rubs it with the toe of her foot.\",offers a sincere concerned frown.,3\n10846,lsmdc3071_THE_DESCENDANTS-5675,1001,Someone twitches himself out of a statue - like hold. Someone,Someone twitches himself out of a statue - like hold.,Someone,gold,lands murder on the eye.,spurs the horse on his shoulders.,marches from the water.,draws in her face.,2\n10847,anetv_p6ea3QpXryw,5241,\"A man lifts his arm in slow motion, throwing darts one after another at the board. He\",\"A man lifts his arm in slow motion, throwing darts one after another at the board.\",He,gold,\"falls, then walks to the end of the room.\",walks up to the board and reaches for it.,continues instructing the young man before they reach the ladder and begin to get close.,then stands up and approves side - by - side.,1\n10848,anetv_p6ea3QpXryw,5240,A dart board is shown against a wall. A man,A dart board is shown against a wall.,A man,gold,applies plaster to a wall.,\"lifts his arm in slow motion, throwing darts one after another at the board.\",is playing a phone of a musical a game.,takes several darts and darts.,1\n10849,anetv_tIbSsad0z9U,12418,Several clips are shown of a man swimming around in a pool and speaking to the camera. The man,Several clips are shown of a man swimming around in a pool and speaking to the camera.,The man,gold,is then seen swimming around in pool with his arms up.,paddles around and zooms in on the fire.,is then seen swinging back and fourth on the board.,continues moving around in the pool demonstrating how to do proper technique while still speaking to the camera.,3\n10850,anetv_tIbSsad0z9U,15396,The water is shown crashing against ocean rocks. Then we,The water is shown crashing against ocean rocks.,Then we,gold,see the bikers running and plunge to a platform right ahead of them.,see the side in water to see as the tractor is thrown back from the wave.,see the waterfall boys stand behind a row.,see the man demonstrating swim moves in the pool again.,3\n10851,anetv_tIbSsad0z9U,15395,A man is swimming in an indoor pool. The water,A man is swimming in an indoor pool.,The water,gold,is five feet away.,sports springboard by wide laser.,is shown crashing against ocean rocks.,goes under behind the person.,2\n10852,lsmdc3075_THE_SITTER-35026,671,\"Shrugging a sad smile, she averts her gaze. He\",\"Shrugging a sad smile, she averts her gaze.\",He,gold,glances back at his wife.,snaps the photo together.,hands her some tissues.,points at her breasts.,2\n10853,lsmdc3075_THE_SITTER-35026,668,\"She shifts her lips thoughtfully, then climbs out of the minivan. As someone watches her head up to the house, someone\",\"She shifts her lips thoughtfully, then climbs out of the minivan.\",\"As someone watches her head up to the house, someone\",gold,takes the padlock on her ramp as it comes up to the story of an upscale foyer house.,steps out and with someone waving an attacker walks in beside her.,\"bombed out tickets, followed by a tall woman who sits atop them smiling, and eyes someone.\",unbuckles her seatbelt and climbs into the seat beside him.,3\n10854,lsmdc3075_THE_SITTER-35026,673,With a sheepish grin she takes the tissues and wipes her cheeks. Someone,With a sheepish grin she takes the tissues and wipes her cheeks.,Someone,gold,rests the two photos in her hand then extends her ear to his shoulders.,leans over him with her arms extended.,blinks her thoughtful eyes.,turns to the girls and whispers into his arm.,2\n10855,lsmdc3075_THE_SITTER-35026,666,She turns to him tearfully and he nods. He,She turns to him tearfully and he nods.,He,gold,wipes the doll's safety off as he digs through her suitcase.,gives her a kind look.,stops at the sidewalk and picks up the glass of whiskey.,gives his father a long look.,1\n10856,lsmdc3075_THE_SITTER-35026,672,He hands her some tissues. With a sheepish grin she,He hands her some tissues.,With a sheepish grin she,gold,leans on a tight - coated mat.,puts one hand in her pockets as serves drinks into the martini glass.,marches into the room and transitions from tools to someone.,takes the tissues and wipes her cheeks.,3\n10857,lsmdc3075_THE_SITTER-35026,665,\"She wakes up and glances outside, avoiding someone's gaze. She\",\"She wakes up and glances outside, avoiding someone's gaze.\",She,gold,presses her fingers to her ears.,gives someone a difficult look.,averts her eyes as he watches her.,wakes her roommate in a fluffy shoulder pout and steps onto a balcony.,2\n10858,lsmdc3075_THE_SITTER-35026,667,He gives her a kind look. She,He gives her a kind look.,She,gold,joins a group of male girls who watches him gaze closely.,\"looks away and shakes his head, trying to take out his joke.\",\"shifts her lips thoughtfully, then climbs out of the minivan.\",\"gives him a little look, then turns to his dad.\",2\n10859,anetv_mwUP1yZQsh0,3287,A screen with text is shown. Two children,A screen with text is shown.,Two children,gold,are shown fighting various children.,are tubing in a room.,are then shown on a screen in the gym.,play with a slide.,3\n10860,anetv_mwUP1yZQsh0,3288,Two children play with a slide. The two children,Two children play with a slide.,The two children,gold,play in a small toy house.,are making card movements.,play tam - tams on the other side.,talk about the dogs.,0\n10861,anetv_mwUP1yZQsh0,3289,The two children play in a small toy house. The two children,The two children play in a small toy house.,The two children,gold,are on a swing performing.,\"turn to the pinata, blown to see it as the boys watch.\",play paintball on their small field.,return to playing with the slide.,3\n10862,anetv_-VexUX6OJBM,18287,\"The boys are outside in the grass, one of them has on jumping shoes and the other one is walking around bare foot. The male with the shoes\",\"The boys are outside in the grass, one of them has on jumping shoes and the other one is walking around bare foot.\",The male with the shoes,gold,leads to the middle of the lawn towards the other window.,runs down a street in his dead direction.,is very excited about their shoes being they high on the seat and is groomed to get them done.,begins to flip and lands on the mat and sits down while the other boy does a flip.,3\n10863,anetv_-VexUX6OJBM,18290,\"Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there is an instant replay. Lastly, the other boy\",Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there is an instant replay.,\"Lastly, the other boy\",gold,scores all the players into the goal by winning the game.,begins running fast and hard into the goal rink and 20 pins have run over in ill green green grass.,does the same to the other one for one final time.,begins to do back flips alone in the grass.,3\n10864,anetv_-VexUX6OJBM,17820,The man in the red pants performs somersaults while the other man with the jumping extensions watches on and gets instruction. The man with the jumping extensions,The man in the red pants performs somersaults while the other man with the jumping extensions watches on and gets instruction.,The man with the jumping extensions,gold,walks out and makes throw a skate from the falcon and drop it to the ground.,watches as an older man attempts to stick with his arms and does another jump as everyone back watches and stands.,goes to help her up the arm then throws him to the ground.,practices with the help of the man wearing red pants and completes a somersault.,3\n10865,anetv_-VexUX6OJBM,18289,\"The male without the shoes, does many flips and the boy with the jumping repeats them as well but with the shoes. Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there\",\"The male without the shoes, does many flips and the boy with the jumping repeats them as well but with the shoes.\",Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there,gold,'s a very finished shake of his solo as the people continue to walk out.,'s also a man.,'s a young man standing in the corner of the living room swinging and into four alternate sticks.,is an instant replay.,3\n10866,anetv_-VexUX6OJBM,18288,\"The male with the shoes begins to flip and lands on the mat and sits down while the other boy does a flip. The male without the shoes, does many flips and the boy with the jumping\",The male with the shoes begins to flip and lands on the mat and sits down while the other boy does a flip.,\"The male without the shoes, does many flips and the boy with the jumping\",gold,throws his arms.,repeats them as well but with the shoes.,start in the air.,end walks over his talking.,1\n10867,anetv_-VexUX6OJBM,17819,The man with the jumping extension does a flip and misses the landing and ends up on his but. The man in the red pants,The man with the jumping extension does a flip and misses the landing and ends up on his but.,The man in the red pants,gold,performs somersaults while the other man with the jumping extensions watches on and gets instruction.,jumps up and down as he does it with his other hand on the other side as the two continue to cheer.,gets a piercing and begins to jump again.,jumps out of a newspaper and falls down to the floor.,0\n10868,anetv_5YVN5d8DkSk,14358,The camera pans around several pitting sitting at a bar as well as bartenders attending to people's needs. More shots,The camera pans around several pitting sitting at a bar as well as bartenders attending to people's needs.,More shots,gold,are shown of people with their arms laid out.,are shown of people interacting in the restaurant and finally people speaking to the camera.,are shown of a bunch of shoes playing hoops with one another while holding back to the camera.,is shown of the man running on a pier holding a pink coat hand and going to a study floor.,1\n10869,lsmdc3018_CINDERELLA_MAN-7860,6595,\"He scans the locker room then leans over and eats out of the bowl. As a balding man signals to someone, the boxer\",He scans the locker room then leans over and eats out of the bowl.,\"As a balding man signals to someone, the boxer\",gold,quickly puts his embarrassment to his chin.,looks back at his surprise visitor.,'s fingers begin to talk.,resumes his old rt adjustment.,1\n10870,lsmdc3018_CINDERELLA_MAN-7860,6596,\"As a balding man signals to someone, the boxer looks back at his surprise visitor. Someone\",\"As a balding man signals to someone, the boxer looks back at his surprise visitor.\",Someone,gold,throws the gun on the other man's head.,wipes his face with a towel.,holds someone's hands out.,flashes a faint smile.,1\n10871,lsmdc3018_CINDERELLA_MAN-7860,6594,\"With a bowl of hash sitting in front of him, someone paces. He\",\"With a bowl of hash sitting in front of him, someone paces.\",He,gold,\"flips, and performs a series of somersaults.\",\"stands on his board, with a tall jar of potatoes on his back.\",\"hands the ax to someone, who drags it into his pocket.\",scans the locker room then leans over and eats out of the bowl.,3\n10872,anetv_nIfYhQHFWZI,10238,A young man is seen standing before a mat. He then,A young man is seen standing before a mat.,He then,gold,begins playing a game of drums to his partner.,rides down on onto the mat.,runs down the mat and performs flips.,begins throwing an object off into the distance.,2\n10873,anetv_nIfYhQHFWZI,10239,He then runs down the mat and performs flips. He,He then runs down the mat and performs flips.,He,gold,lands back and jumps back on the mat.,jumps down and lifts weights up high.,continues running down and jumping into a mat.,does the routine and other jump ropes.,2\n10874,anetv_JavaLreBqtI,14390,We watch the lady pull rollers our out her braids. We,We watch the lady pull rollers our out her braids.,We,gold,then put her hair back on the bun.,\", the woman puts a hair onto her hair and the man speaks.\",see two men in the arms in sandy.,see her hair up close.,3\n10875,anetv_JavaLreBqtI,14388,We see a lady sitting on a couch talking. The lady,We see a lady sitting on a couch talking.,The lady,gold,sprays her right hair on the ground.,makes faces and claps her hands.,hands the children to other children and pay their child.,films herself to a mirror and talks before moving a hand to her middle.,1\n10876,anetv_JavaLreBqtI,14389,The lady makes faces and claps her hands. We,The lady makes faces and claps her hands.,We,gold,watch the lady pull rollers our out her braids.,see a lady standing in front of a fence with her trowel.,see the ending title screen.,see a person spin off the side.,0\n10877,anetv_JavaLreBqtI,14391,We see her hair up close. The lady,We see her hair up close.,The lady,gold,rips out two mans legs and begins to remove his shoe from the floor.,makes a quote sign with her fingers.,poses for pictures in front of helpful camera.,\"speaks gently, gently.\",1\n10878,lsmdc0003_CASABLANCA-46997,15247,Someone reaches the entrance to the cafe as someone comes out. He,Someone reaches the entrance to the cafe as someone comes out.,He,gold,stops and addresses someone politely.,\"turns back to someone, who stands back.\",turns the chair toward someone.,steps away from someone.,0\n10879,lsmdc0003_CASABLANCA-46997,15250,Someone walks up behind someone. She,Someone walks up behind someone.,She,gold,pulls an envelope from his pocket and finds it inside.,\"looks briefly at someone, then turns away.\",lays her on the floor close to her.,glances back toward someone and tries to see the doorknob.,1\n10880,lsmdc0003_CASABLANCA-46997,15248,\"He stops and addresses someone politely. As he exits, someone\",He stops and addresses someone politely.,\"As he exits, someone\",gold,looks after him with a puzzled expression.,points before him like an airport.,and someone seating in its front booth.,clambers up to his seat as he makes a call.,0\n10881,lsmdc0003_CASABLANCA-46997,15249,\"At the linen stall, someone examines a tablecloth which an Arab vendor is endeavoring to sell. Someone\",\"At the linen stall, someone examines a tablecloth which an Arab vendor is endeavoring to sell.\",Someone,gold,slowly gets out of the boat and frowns.,soars towards the students.,walks up behind someone.,peers out among the trees.,2\n10882,anetv_aMexiSP5Vjc,10241,A young child is seen using an elliptical while watching a computer video in front of her. The girl,A young child is seen using an elliptical while watching a computer video in front of her.,The girl,gold,continues moving around and moves to the camera showing more clips of her performing proper dance moves.,is seen skating in on her hands and spinning and ends by braiding her hair off to the side.,controls the moves on the video using the machine while the camera zooms in and out of the area.,\"watches with hoops behind the people, jumping back and fourth and ends by smiling with her arms up in the air.\",2\n10883,anetv_kFmOtf_Ew1w,14587,Several clips are shown of people swimming in the water leading into a woman looking at the camera and still moving around under the water. The woman,Several clips are shown of people swimming in the water leading into a woman looking at the camera and still moving around under the water.,The woman,gold,continues floating in the water followed by grabbing a boogie board and performing various moves around the water.,is holding the pole to her performance frantic and roping while gesturing the side and jumping.,throws several more poles and jumps in the air to stand while several clips are shown of people running through the water.,continues putting the ball down and ends with a person speaking to the camera.,0\n10884,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,400,Lines run through the words bulletproof and never break. Chandeliers,Lines run through the words bulletproof and never break.,Chandeliers,gold,cluster of tree reads blocking the boy's picture.,\"is arm wrestling and then prepare the rest of the present, then ticks up a good time and irons it flat on.\",passes the camera into the smoke stained hood with shiny outer lights underneath it.,crash to the floor.,3\n10885,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,396,Someone snatches the scroll from the air. He,Someone snatches the scroll from the air.,He,gold,\"swerves off the ship, lands in the trash.\",\"gazes from the bottle to the scroll, then slams the bottle onto a nearby table.\",adds it to the bianca.,watches as he runs across the deck at the door.,1\n10886,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,397,\"Inside, someone gazes up at a figure standing at balcony railing. From the balcony someone\",\"Inside, someone gazes up at a figure standing at balcony railing.\",From the balcony someone,gold,peers inside and run upstairs.,swings toward a building.,gazes through round eyeglasses at someone.,turns a sails wheel to the canvas.,2\n10887,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,398,\"Someone peers through his opera glasses at someone and the falcon, then turns his head sharply and looks at the glass case holding the Unicorn model. Someone\",\"Someone peers through his opera glasses at someone and the falcon, then turns his head sharply and looks at the glass case holding the Unicorn model.\",Someone,gold,puts it on the cousin and steps towards him.,focuses on the label reading bulletproof.,stands at the pavement.,\"hold hands, like maps, as a of model skinny musical extensions.\",1\n10888,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,402,\"The falcon breaks of its center mast, grabs a metal tube in its beak then flies off. It\",\"The falcon breaks of its center mast, grabs a metal tube in its beak then flies off.\",It,gold,bursts onto the surface before it crashes onto black of minas tirith.,\"spreads it free, then throws it upwards, letting hands fly as he leaps off the car.\",soars to the balcony and lands on someone's arm.,turns and heads straight to the road.,2\n10889,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,394,\"Someone stumbles out of the audience, runs to a banquet table then yanks off the table cloth. He\",\"Someone stumbles out of the audience, runs to a banquet table then yanks off the table cloth.\",He,gold,returns to the pump.,drapes it over his head then hurries outside to a sunny courtyard by a pool.,\"glances toward someone's hut, then dives towards a hall.\",reaches into someone's hand.,1\n10890,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,390,Someone Salaad watches someone through thick eyeglasses. Someone,Someone Salaad watches someone through thick eyeglasses.,Someone,gold,emerges at a blood - soaked boy.,sweeps in towards a stairwell.,\"twirls her up and thrusts her arms around, twisting her gracefully attacker the forehead.\",bangs his head on the seat in front of him.,3\n10891,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,393,Snowy writhes then covers his ears with his paws. Someone,Snowy writhes then covers his ears with his paws.,Someone,gold,fumbles with his life belt.,\"stumbles out of the audience, runs to a banquet table then yanks off the table cloth.\",passes it to the inspector with his thumb toward someone.,stares meanwhile still a drone flying into the air above his head.,1\n10892,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,395,He drapes it over his head then hurries outside to a sunny courtyard by a pool. Someone,He drapes it over his head then hurries outside to a sunny courtyard by a pool.,Someone,gold,\"watches his father sleeping in her bed as someone paces to find someone sleeps couch staring up at him, motionless.\",sits slumped by the table covering his smart shoes as he struggles to avoid carrying the orb.,pulls a bottle from an inner pocket.,gazes at a mirror then keeping an intensely - skinned window in the mirror.,2\n10893,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,391,Someone bangs his head on the seat in front of him. People,Someone bangs his head on the seat in front of him.,People,gold,\", slowly, slips and casually digs out his phone and dials a number.\",turn and look at him.,has a gathering of presents so we change to seeing and person walking.,\"spots someone, smirks, then weaves his seatbelt as the bus pulls up outside of it.\",1\n10894,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,403,It soars to the balcony and lands on someone's arm. Someone,It soars to the balcony and lands on someone's arm.,Someone,gold,flies back and lands on the shallow floor of the river.,plucks the tube from the bird's beak.,turns to look merely dubiously in his eyes.,shoots the bearded man.,1\n10895,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,389,Someone puts his fingers in his ears. Someone Salaad,Someone puts his fingers in his ears.,Someone Salaad,gold,gently towards his flushed cheeks.,watches someone through thick eyeglasses.,stands and rolls them on.,strokes her head in the streams.,1\n10896,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,401,Chandeliers crash to the floor. Someone,Chandeliers crash to the floor.,Someone,gold,sprints inside and increases the volume on the girder.,\"releases the falcon, which swoops over the crowd.\",activates a packaged plug.,\"gets out of bed, searching her face for a moment.\",1\n10897,anetv_tSR4Pj_muN0,8925,The men with the skin harness jump off a crane high above a forest. We,The men with the skin harness jump off a crane high above a forest.,We,gold,leaps over the front of the van in front of us to the pilot.,see a vast next screen.,see the ground below.,see the dog jump a deep end.,2\n10898,anetv_tSR4Pj_muN0,8923,We see his back and see blood and a harness in his skin and another two men one who has the skin harness. We,We see his back and see blood and a harness in his skin and another two men one who has the skin harness.,We,gold,see the person in gray shorts add a thermometer over the right.,see the men climbing and standing on a crane high in the sky.,\"focus on a bra, a piece of paper, and boxer tops that he is with and how he is.\",shot tips and someone runs along with his help but it has n't gone on a second time until he's done.,1\n10899,anetv_8Da6w-Eg3Ko,2052,A man starts up a gas powered hedger and hands it to someone standing on a platform. The man on the platform,A man starts up a gas powered hedger and hands it to someone standing on a platform.,The man on the platform,gold,sits on the ground in a circle.,starts a marathon on all the people together.,gets liquid into a tray and begins to play with in his hands.,trims the top of a hedge with the hedge trimmer.,3\n10900,anetv_8Da6w-Eg3Ko,19234,A man starts a chainsaw on the ground. He hands it to a man on a makeshift platform above him and he,A man starts a chainsaw on the ground.,He hands it to a man on a makeshift platform above him and he,gold,starts trimming tall hedges.,hits a ball to the ground.,gives a nasty look.,\"starts, rotate, and starts briefly thrust his paw in the air.\",0\n10901,anetv_8Da6w-Eg3Ko,2053,The man on the platform trims the top of a hedge with the hedge trimmer. The platform,The man on the platform trims the top of a hedge with the hedge trimmer.,The platform,gold,cuts to foliage and the hedge tools are depositing on the gray canvas.,is hooked and picked up and down on his lap.,is towed with a tractor alongside the hedge while the man continues to trim it.,leans off his back and is using the shears to draw the hedges back.,2\n10902,anetv_8Da6w-Eg3Ko,19235,He hands it to a man on a makeshift platform above him and he starts trimming tall hedges. The first man,He hands it to a man on a makeshift platform above him and he starts trimming tall hedges.,The first man,gold,uses the clock to use the trimmer.,is standing in the walkway to trim his hedges.,is on on a tractor pulling the platform forward so the man on top can cut another area of the hedge.,reaches the bush and uses the brush to trim leaves.,2\n10903,anetv_W74AfHdwWhM,19032,There is a woman shown throwing knives into wood and taking them out. In the end the other people who are there all,There is a woman shown throwing knives into wood and taking them out.,In the end the other people who are there all,gold,measure the distance and grab them easily and shoot her at the end.,are then shown fighting with trampolines.,begins dropping into the air.,sit down and eat popsicles.,3\n10904,anetv_lW4OZ8eP3ns,8668,\"He is playing a violin, and another man is playing a guitar. They walk offscreen as they play, and we\",\"He is playing a violin, and another man is playing a guitar.\",\"They walk offscreen as they play, and we\",gold,see rows of empty seats.,see a man in black shorts doing a little trick.,see it in the background.,see the whispered foreign snowfall.,0\n10905,anetv_lW4OZ8eP3ns,8667,\"A man is inside a shop building. He is playing a violin, and another man\",A man is inside a shop building.,\"He is playing a violin, and another man\",gold,cleans the bottles for him.,is standing to jump with his hammer.,is off the stage.,is playing a guitar.,3\n10906,anetv_lW4OZ8eP3ns,10942,He and a man with a guitar continue to play. A row of seats,He and a man with a guitar continue to play.,A row of seats,gold,lights in the sky.,blocks the view as they play.,strut around a microphone.,are shown between people singing.,1\n10907,anetv_lW4OZ8eP3ns,8669,\"They walk offscreen as they play, and we see rows of empty seats. The men\",\"They walk offscreen as they play, and we see rows of empty seats.\",The men,gold,take puffs on a organizing signaling a signal.,\"walk into view, in front of the seats, then away.\",\"race off, leaving someone alone in front of a fence crowded in chaos.\",are their canoes down atop the shack.,1\n10908,lsmdc0011_Gandhi-52415,10693,\"They all look at him with some surprise. As he speaks, he\",They all look at him with some surprise.,\"As he speaks, he\",gold,rises and walks to the servant.,can't say any.,reacts to the sound.,allows him to ride his horse.,0\n10909,anetv_18qVzfQ9VAs,2370,A woman is standing while wearing a pair of black boots. Her boots,A woman is standing while wearing a pair of black boots.,Her boots,gold,are moving on the correct ground.,are tied next to a rocks on the ground.,are then using poles and attachments on a bike.,begin to move and kick as she starts dancing.,3\n10910,anetv_18qVzfQ9VAs,2371,Her boots begin to move and kick as she starts dancing. She,Her boots begin to move and kick as she starts dancing.,She,gold,winces so she can't see that.,\"leans back in her chair, throwing her arms back.\",\"continues her workout, acting elegantly as the rest of the students are dancing.\",\"moves side to side, kicking in and out.\",3\n10911,anetv_18qVzfQ9VAs,2372,\"She moves side to side, kicking in and out. The woman\",\"She moves side to side, kicking in and out.\",The woman,gold,is fully shown as she stops dancing and begins to speak to the camera.,\"walks away, turning more times and talks on the way as her hands jerk on the floor.\",is again shown moves again when the woman walks back.,continues riding around the swimming area while turning to the camera and ends by walking around and smiling to camera.,0\n10912,lsmdc3062_SORCERERS_APPRENTICE-30978,8150,\"Back in the foyer, someone holds out someone's ring and someone magically snatches it. He\",\"Back in the foyer, someone holds out someone's ring and someone magically snatches it.\",He,gold,laughs and accepts the tools.,stands behind someone and now copy him from the women.,is sitting in a chair at the foosball table.,offers up the grimhold.,3\n10913,lsmdc3062_SORCERERS_APPRENTICE-30978,8151,He offers up the Grimhold. Someone,He offers up the Grimhold.,Someone,gold,draws it to himself.,jumps into a burst of flame.,grabs the boy and strikes him.,wakes with a start.,0\n10914,lsmdc1028_No_Reservations-82895,10572,\"Hearing singing, someone slows down as she nears the kitchen. She\",\"Hearing singing, someone slows down as she nears the kitchen.\",She,gold,meets someone coming out with two plates.,spits the alcohol in a clink and casts one last look.,glances over his shoulder and his eyes alight all the way pass him.,lowers the glove onto her skirt.,0\n10915,lsmdc1028_No_Reservations-82895,10573,She meets someone coming out with two plates. Someone,She meets someone coming out with two plates.,Someone,gold,walks into the kitchen.,turns to watch them.,sets a lobster on one and faces him.,presses a hand to her lower lip.,0\n10916,lsmdc1028_No_Reservations-82895,10570,\"Someone rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers. Someone\",\"Someone rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers.\",Someone,gold,places a hand in someone's lap.,makes her way through the crowded dining area.,looks around and checks the license pad.,comes up behind him with her arm around the young woman.,1\n10917,lsmdc1028_No_Reservations-82895,10571,\"Someone makes her way through the crowded dining area. Hearing singing, someone\",Someone makes her way through the crowded dining area.,\"Hearing singing, someone\",gold,drags one of the girls over.,slides her fist into her mouth.,holds the bagpipe to a lady.,slows down as she nears the kitchen.,3\n10918,lsmdc1028_No_Reservations-82895,10569,\"Someone looks sadly down at her doll, as someone goes. Someone\",\"Someone looks sadly down at her doll, as someone goes.\",Someone,gold,\"leaps from the tent with someone holding someone, someone is smiling, quite contentedly.\",\"stares at the gap in the ceiling, studying her names.\",\"rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers.\",\"glances at him, then addresses the first dog.\",2\n10919,anetv_LoBjzA2z2Ls,5070,Croutons are in a bowl and chopped ingredients are separated. theman,Croutons are in a bowl and chopped ingredients are separated.,theman,gold,freckles are sliced on a shuffleboard.,cup is boiled and mixed in sugar.,\"mix all the ingredients in a bowl to make the dressing, put plastic wrap as a lid.\",\"are drizzles, and spatula are helped assembling a shaking pan and stirred.\",2\n10920,anetv_LoBjzA2z2Ls,12330,Several ingredients are shown being put into a bowl and as well as cut up and wrap put on top. The woman,Several ingredients are shown being put into a bowl and as well as cut up and wrap put on top.,The woman,gold,talks in the kitchen while still speaking.,cooks the food as and mixes it together with the salad and stirs it up.,is then seen putting the bag on top and presenting it to a pot.,puts more items underneath the sheet and folds it into container.,1\n10921,anetv_LoBjzA2z2Ls,12329,A close up of a salad is shown with a spoon mixing it around. Several ingredients,A close up of a salad is shown with a spoon mixing it around.,Several ingredients,gold,are cut off the plate.,are shown being put into a bowl and as well as cut up and wrap put on top.,are laid on a table with the ingredients sliced up.,are shown along with more ingredients laid close while a person is seen sitting in the tub.,1\n10922,anetv_LoBjzA2z2Ls,5069,A cesar salad is eady and its served in a bowl. croutons,A cesar salad is eady and its served in a bowl.,croutons,gold,are in a bowl and chopped ingredients are separated.,displays a skewered - and cake handle.,are rappelling up a cutting bowl and mix mixture.,is seen in a bowl on top and make a bowl in a spoon.,0\n10923,anetv_X1bmeq4u6YE,15472,The curry is in a pan and the bread and butter are on a tray. The man,The curry is in a pan and the bread and butter are on a tray.,The man,gold,secures the mixer in a bowl.,\"applies the butter, then the curry to the bread before toasting it.\",presents the ingredients on the side of the cake scale.,is poking the pasta in the cup.,1\n10924,anetv_X1bmeq4u6YE,15473,\"The man applies the butter, then the curry to the bread before toasting it. A cartoon charicature of a stick person\",\"The man applies the butter, then the curry to the bread before toasting it.\",A cartoon charicature of a stick person,gold,is seen with injury being slid on a white plate.,shows a dish breakfast.,appears at the table in front of him.,dances at the end.,3\n10925,anetv_X1bmeq4u6YE,15471,A video shows how to make curry toast. The curry is in a pan and the bread and butter,A video shows how to make curry toast.,The curry is in a pan and the bread and butter,gold,is treading water to reigns the little pot of water.,\"is poured, with a machete on the sides.\",are on a tray.,are added cut into place by citrus and meter.,2\n10926,anetv_G5frRzhSNJ8,7860,A boy is in a salon chair. a woman,A boy is in a salon chair.,a woman,gold,flashes to the camera.,braids her hair before putting it into a hold.,is cutting the boy's hair.,is polishing the shoe with a brush.,2\n10927,anetv_G5frRzhSNJ8,13970,The young man shows off his new hair cut. The two hairstylists and the man,The young man shows off his new hair cut.,The two hairstylists and the man,gold,sit down and chat.,bend down and hug the ball.,puts out his shirt and lay down on it.,zoomed in by writing a shot of his product.,0\n10928,anetv_G5frRzhSNJ8,13968,She smears the pomade onto her hands and rubs it all over the hair of the young man. She,She smears the pomade onto her hands and rubs it all over the hair of the young man.,She,gold,hangs up and puts her head down on the beam.,\"stands at the top of the high, holding on rope securely in one hand.\",rests her chin on the water and pulls back her hair.,styles the hair of young man with the use of her hands and a comb.,3\n10929,anetv_G5frRzhSNJ8,13965,The female hair stylists begins by shampooing the hair of the young man. He,The female hair stylists begins by shampooing the hair of the young man.,He,gold,sits and has his cut by the hair stylists.,curls up and styling her hair as she talks to the camera again.,male reporter is shown interviewed.,'s neck is being combed.,0\n10930,anetv_G5frRzhSNJ8,13967,She juggles a few pomades. She,She juggles a few pomades.,She,gold,smears the pomade onto her hands and rubs it all over the hair of the young man.,\"grabs the hair from his face, then rocks her ankle to dry her dry hair.\",opens her purse and flashes as she tosses the disc past the patient.,picks it up and passes it to someone.,0\n10931,anetv_G5frRzhSNJ8,13969,She styles the hair of young man with the use of her hands and a comb. The young man,She styles the hair of young man with the use of her hands and a comb.,The young man,gold,touches her hair with the wand and ruffles his hair with her long hair.,smiles while holding a shot glass through someone's hand.,shows off his new hair cut.,drops the blades off and hangs it on her legs.,2\n10932,anetv_G5frRzhSNJ8,13964,\"A woman sprays mist onto the hair of young man and she continues on to cut his hair, blow dry it, and finishes off by styling it. Two hair stylists\",\"A woman sprays mist onto the hair of young man and she continues on to cut his hair, blow dry it, and finishes off by styling it.\",Two hair stylists,gold,stand next to a young man as they speak to a camera about justin bieber's hairstyle look.,get out of the bath and back to pink.,is shown smiling at each sitting canvas.,show a slow finer pattern on the hand to remove the contact lens lens.,0\n10933,anetv_G5frRzhSNJ8,7861,A woman is cutting the boy's hair. the woman then,A woman is cutting the boy's hair.,the woman then,gold,washes the boys hair.,combs the brushes with scissors.,styles the hair with her hair.,demonstrates how to cut the grass.,0\n10934,anetv_G5frRzhSNJ8,13966,He sits and has his cut by the hair stylists. She,He sits and has his cut by the hair stylists.,She,gold,takes the cloth out from someone's hand.,sprays a product throughout the hair of the man.,\"peers at the door, showed it, and goes inside.\",leads someone across the deck and into a drill tunnel which leads into people.,1\n10935,lsmdc0043_Thelma_and_Luise-68511,8516,The dust from the cars is blowing across them. They just,The dust from the cars is blowing across them.,They just,gold,get out of the car preventing the car from entrance.,have sight of something that has no sense.,add the tail to the car door.,sit looking at the grand canyon.,3\n10936,lsmdc0043_Thelma_and_Luise-68511,8519,Someone sees people for the first time. They,Someone sees people for the first time.,They,gold,\"are sitting in the car, oblivious in a way, to all the activity around them.\",come into to the tree.,fright someone through walking.,sees only the man behind.,0\n10937,lsmdc0043_Thelma_and_Luise-68511,8515,The police cars stop in a line about two hundred yards behind them. The dust from the cars,The police cars stop in a line about two hundred yards behind them.,The dust from the cars,gold,drifts onward and bumps the trucks stop.,slams to a halt.,explode down the lane.,is blowing across them.,3\n10938,lsmdc0043_Thelma_and_Luise-68511,8517,\"They just sit looking at the Grand Canyon. From the canyon, the fbi helicopter\",They just sit looking at the Grand Canyon.,\"From the canyon, the fbi helicopter\",gold,\"opens briefly, revealing a cattle below.\",shows someone walking across the beach.,\"sits on a map, which shows the surface of his computer.\",rises up in front of the car.,3\n10939,lsmdc0043_Thelma_and_Luise-68511,8520,\"They are sitting in the car, oblivious in a way, to all the activity around them. He only\",\"They are sitting in the car, oblivious in a way, to all the activity around them.\",He only,gold,\"solves the puzzle, then attempts to hammer out more and notes on the test he was in.\",see a small full of people rising up into the night.,\"makes his turn in several different motions, pans his face to have people.\",takes his eyes off of them long enough to look at someone.,3\n10940,lsmdc3060_SANCTUM-29216,10640,\"Someone greets a camera crew. In a tent office, they\",Someone greets a camera crew.,\"In a tent office, they\",gold,view a computer animation of the complex cave system.,find a flower camp behind both trees.,aim their lifeboats toward the loading dock.,play ping - pong.,0\n10941,lsmdc3060_SANCTUM-29216,10639,\"The brunette notices a penned - in wild boar, a local woman sitting on a path, and two young men wearing grass skirts. Someone\",\"The brunette notices a penned - in wild boar, a local woman sitting on a path, and two young men wearing grass skirts.\",Someone,gold,opens his head back wider to reveal someone.,returns a t - shirt.,greets a camera crew.,flips her cellphone away.,2\n10942,anetv_7X_wgaRaJYQ,14386,Another person passes her under the water. Words,Another person passes her under the water.,Words,gold,a group of people head boarding in the gathering of cannons fire on the lower perimeter.,are then the back ground going it with stolen cash and hitting.,come onto the screen at the end.,struggle around to shoulder to the music.,2\n10943,anetv_7X_wgaRaJYQ,6886,A lady is swimming in a large pool. The lady,A lady is swimming in a large pool.,The lady,gold,spins and dives into the water.,flips and dives on the water.,moves the shampoo around.,is dipping in and out of the water.,3\n10944,anetv_7X_wgaRaJYQ,6885,We see the opening title on the screen. A lady,We see the opening title on the screen.,A lady,gold,inserts the contact lens into the woman's hand.,holds up a bottle of ice and mixing cups.,stands on a sink and discusses.,is swimming in a large pool.,3\n10945,anetv_7X_wgaRaJYQ,14385,A woman is swimming laps in a swimming pool. Another person,A woman is swimming laps in a swimming pool.,Another person,gold,is knitting in the other's hands.,is kneeling next to her.,passes her under the water.,is outside in the ocean.,2\n10946,anetv_2UbwK1Qtveg,9038,A man sits in a barber chair. another man with clippers,A man sits in a barber chair.,another man with clippers,gold,sits on the row table.,cuts the sitting man's beard.,is standing in front of the mirror.,is cutting the man's nails.,1\n10947,anetv_2UbwK1Qtveg,14942,A man is shaving another man's beard. The shaving it,A man is shaving another man's beard.,The shaving it,gold,has tattoos on them.,shaves off his face.,has an excited expression on his face.,fades from black to color.,2\n10948,anetv_2UbwK1Qtveg,9039,Another man with clippers cuts the sitting man's beard. a third man,Another man with clippers cuts the sitting man's beard.,a third man,gold,is shown making faces at the camera.,kneels something down on a pad.,walks away with a coffee platform and completes it in a fifth attempt.,is lying on top of the cat to give the tattoo.,0\n10949,lsmdc0031_The_Lost_Weekend-65817,13681,\"Just as he is slipping out, comes. Someone\",\"Just as he is slipping out, comes.\",Someone,gold,\"sits closer to the recessed wizard and nods, beside the window.\",open the toilet paper near the fingers.,shuts the door behind him.,slips underneath a white robe.,2\n10950,lsmdc0031_The_Lost_Weekend-65817,13679,On the armchair near the kitchen door lies someone's leopard coat. Someone,On the armchair near the kitchen door lies someone's leopard coat.,Someone,gold,washes a shoe off onto a cloth.,\"lies asleep on the couch, using the pillow and the comforter from someone's bed.\",weeping and someone watches her get.,puts the tumbler into a welcome counter.,1\n10951,lsmdc0031_The_Lost_Weekend-65817,13682,Someone shuts the door behind him. She,Someone shuts the door behind him.,She,gold,wags an ice cigarette and hat.,disappears as the students step up past the violence hallway.,sits on an empty bench as someone sips from a car.,flings open the door and runs out.,3\n10952,lsmdc0031_The_Lost_Weekend-65817,13684,She is wearing someone's foulard dressing gown. Someone,She is wearing someone's foulard dressing gown.,Someone,gold,is lying down on a bench.,wears his long - bangs head on the train's bench.,steps into the elevator and moves across the hall to a bedroom.,runs to the banister and looks down.,3\n10953,lsmdc0031_The_Lost_Weekend-65817,13686,Someone is just coming from it. He,Someone is just coming from it.,He,gold,\"follows, shoving his nephew.\",\"is brought up to a patient, doubles over, and pumps a fist.\",tries to be exposed in the lavatory.,walks down the street about ten steps when someone comes up to him.,3\n10954,lsmdc0031_The_Lost_Weekend-65817,13687,\"Someone disregards her, tries to go on. Someone\",\"Someone disregards her, tries to go on.\",Someone,gold,turns straight back to the shadows.,comes out and joins her.,tosses her rifle through the air.,overtakes him and blocks his way.,3\n10955,lsmdc0031_The_Lost_Weekend-65817,13680,Very cautiously he begins to tiptoe toward the chair. He,Very cautiously he begins to tiptoe toward the chair.,He,gold,pulls the drawer back and leads up to where someone is wounded.,picks up the leopard coat and starts towards the entrance door.,\"runs down it, taking deep breaths and sniffing the air.\",\"swings the hammer to fist, jumps still, open and then fall off into the dark tunnel below.\",1\n10956,lsmdc0031_The_Lost_Weekend-65817,13683,She flings open the door and runs out. She,She flings open the door and runs out.,She,gold,throws open a suitcase.,is wearing someone's foulard dressing gown.,shoots as she helps someone with her back.,grabs her shoulders and punches him in the groin.,1\n10957,lsmdc3014_CAPTAIN_AMERICA-5348,14356,\"In a nearby recruitment booth, a man steps in front of a mirror which shows his reflected face on a body of a soldier. As a woman pulls the man away, someone steps up, only his eyes and forehead\",\"In a nearby recruitment booth, a man steps in front of a mirror which shows his reflected face on a body of a soldier.\",\"As a woman pulls the man away, someone steps up, only his eyes and forehead\",gold,beaming tenderly as he watches people switch.,are reflected above the soldier's collar.,clipped to his arm.,are stained with pale blood.,1\n10958,lsmdc3014_CAPTAIN_AMERICA-5348,14354,An Army recruitment poster featuring Uncle someone hangs on a column. Someone,An Army recruitment poster featuring Uncle someone hangs on a column.,Someone,gold,slings a case onto the side of an armored vehicle.,poses to former promoter.,and his men file out.,turns to where someone was standing but finds him gone.,3\n10959,lsmdc3014_CAPTAIN_AMERICA-5348,14355,\"Someone turns to where someone was standing but finds him gone. In a nearby recruitment booth, a man\",Someone turns to where someone was standing but finds him gone.,\"In a nearby recruitment booth, a man\",gold,raises his hands in a fashion towards the door he leans toward.,\"knocks over a mustached, which pulls both pairs of his own.\",steps in front of a mirror which shows his reflected face on a body of a soldier.,drops a swaggers over a plush bed and turns behind him.,2\n10960,anetv_p4qZGZenAoU,11821,\"She then dances in the living room with the moisturizer on. Finally, she\",She then dances in the living room with the moisturizer on.,\"Finally, she\",gold,finishes and the camera follows a woman in a studio gym that.,\"picks up the hula hoop again and walks out onto the stage, dancing backward time and again.\",returns to the bathroom and washes her face.,\"is dancing, her camera still on the field, quickly lighting the color that none of the girl in and walks with her,\",2\n10961,anetv_p4qZGZenAoU,11820,She applies a moisturizer to her face while dancing around. She then,She applies a moisturizer to her face while dancing around.,She then,gold,dances in the living room with the moisturizer on.,brushes her hand from his face and licked the glistening makeup.,moves upright while continuing and looking off into the distance.,grabs wallpaper from multiple angles and whisks it up and have a bit of hairspray.,0\n10962,anetv_p4qZGZenAoU,11819,A woman with her hair up in a towel introduces her video showing how she washes her face. She,A woman with her hair up in a towel introduces her video showing how she washes her face.,She,gold,looks up and is talking to someone as he is seated on knitting.,applies a moisturizer to her face while dancing around.,takes part out to wash them in a hot tub.,spreads two cucumbers onto a box before pouring it onto a present.,1\n10963,lsmdc0030_The_Hustler-65021,18911,People just stare at him. They,People just stare at him.,They,gold,stand side by side at the table.,take turns as someone runs out of the car.,look troubled as someone takes the injection.,\"are at a table, sipping drinks.\",3\n10964,lsmdc0030_The_Hustler-65021,18910,\"She stands there, lips pursed, absorbing the insult. Someone\",\"She stands there, lips pursed, absorbing the insult.\",Someone,gold,grabs her wrap and points out a stack of books in the air.,gets up and reaches in his pocket for his billfold.,slips off of the card and folds his finger for a scrap of paper.,looks around as someone draws her gun and aims.,1\n10965,lsmdc0030_The_Hustler-65021,18912,\"They are at a table, sipping drinks. Someone\",\"They are at a table, sipping drinks.\",Someone,gold,looks up at the captain who faces someone who nods again.,leans in close to the seat.,shuffles a deck of cards as he talks.,puts herself another cup in someone's wine.,2\n10966,lsmdc0030_The_Hustler-65021,18909,Someone is in the washroom. Someone,Someone is in the washroom.,Someone,gold,blazer rapidly starts its way.,turns the blood on his head.,comes into the attic where someone is in someone's bedroom.,makes her way down the aisle and joins them at the table.,3\n10967,lsmdc0030_The_Hustler-65021,18913,\"Someone, like a schoolboy, listens intently. Someone\",\"Someone, like a schoolboy, listens intently.\",Someone,gold,gives the camera a screwdriver.,\"sits apart, watching them both.\",finds him as if she is no makeup.,returns to the collapsible.,1\n10968,anetv_f9eW4rFQG-A,1776,Two men are on a boat and they are sailing across the water over fish. An underwater view is then shown and you,Two men are on a boat and they are sailing across the water over fish.,An underwater view is then shown and you,gold,will have to go over.,can see the water boat coming on.,can see the bottom of the ducks body.,can see two people standing and kayaking.,2\n10969,anetv_f9eW4rFQG-A,1777,\"Several men and boats are then shown and one mail catches a fish. After, a man dressed in all black is underwater and a water helicopter is\",Several men and boats are then shown and one mail catches a fish.,\"After, a man dressed in all black is underwater and a water helicopter is\",gold,talking to the two dogs and talking on the jet.,shown then the man goes back under water holding the camera and playing with large fish.,flying a jet and the water covered the sail in the water.,held a large boat in water surrounded with other person in the river.,1\n10970,anetv_VEXswbPrwxE,9571,The man runs around dodging the charging bull. The man,The man runs around dodging the charging bull.,The man,gold,does the karate stance as the young man swings the croquet stick and places his orange bat round the table.,grimaces spiked and felled.,drops his hat in the ring.,runs up and catches the frisbee to the bull.,2\n10971,anetv_VEXswbPrwxE,9569,A bull comes out of the gate at a rodeo and man in the ring jumps on then off his back. The man,A bull comes out of the gate at a rodeo and man in the ring jumps on then off his back.,The man,gold,grabs the frisbees and jumps off of the harness.,picks up his fallen hat in the ring.,\"continues running down the track around the dirt, shooting him once again after another moment.\",runs to the male and pulls him to distract the bull by the bull in people.,1\n10972,anetv_VEXswbPrwxE,9570,The man picks up his fallen hat in the ring. The man,The man picks up his fallen hat in the ring.,The man,gold,spins as he stretches his arm through the.,starts to tighten the colored strap on his jacket.,runs around dodging the charging bull.,lifts his right hand and bows it in his goateed hands.,2\n10973,anetv_VEXswbPrwxE,9572,The man drops his hat in the ring. The man,The man drops his hat in the ring.,The man,gold,talks into the screen and pours the drink.,jumps on the wall to avoid the bull.,is ironing the spike mask.,attempts to brush his teeth.,1\n10974,anetv_VEXswbPrwxE,9573,The man jumps on the wall to avoid the bull. Another man,The man jumps on the wall to avoid the bull.,Another man,gold,spins around tricks on the room ramp.,comes down the stairs towards the men.,opens the gate and calls to the bull to enter the pin.,runs back down and shoots the man.,2\n10975,anetv_br8Ao_UBEZA,8546,Two men enter the racquetball room. The two men,Two men enter the racquetball room.,The two men,gold,run up and stand on his line.,kneel at each other in the wrestling ring and begin fighting.,stand at the crotch wrestling line.,\"start playing racquetball, running around the room trying to hit the ball.\",3\n10976,lsmdc3020_DEAR_JOHN-10126,14342,Someone's eyes remain downcast. He,Someone's eyes remain downcast.,He,gold,\"lifts his head and glances at someone, blinking pensively.\",stares at someone as he drops his hand to his hands and knees.,\"stands, then stands up and turns toward a doorway.\",lays the ring on his fingers and quickly puts it in his pocket and dials a number.,0\n10977,lsmdc3020_DEAR_JOHN-10126,14340,Someone watches someone as she stands with someone at a snack kiosk. Someone,Someone watches someone as she stands with someone at a snack kiosk.,Someone,gold,\"pulls her close beside someone, gazing out at the vast expanse of city with other pedestrians.\",\"bows his head, avoiding someone's gaze.\",gently closes someone's hands as they shake hands.,\"saunters along a sidewalk, while two women watch in his chaise.\",1\n10978,lsmdc3020_DEAR_JOHN-10126,14341,\"Someone bows his head, avoiding someone's gaze. The patient's lips\",\"Someone bows his head, avoiding someone's gaze.\",The patient's lips,gold,spread into a professional smirk.,twitch into a wincing smile.,spread into a slightly smile.,creep up of a faint near - wind.,1\n10979,lsmdc3013_BURLESQUE-5061,15351,As someone backs out of her spot. Someone,As someone backs out of her spot.,Someone,gold,slips down on a chain with a box around it and pulls it off.,takes out a crowbar and smashes someone's passenger window as she drives past.,\"flinches, then gets a bracelet.\",looks directly at the tv.,1\n10980,lsmdc3013_BURLESQUE-5061,15350,Someone gives an incredulous stare. As someone,Someone gives an incredulous stare.,As someone,gold,\"blinks, someone smiles and shrugs.\",approaches for someone as she runs.,returns to the pruning plant.,backs out of her spot.,3\n10981,lsmdc3013_BURLESQUE-5061,15355,She finds someone sleeping in the bed. Someone,She finds someone sleeping in the bed.,Someone,gold,\"closes his eyes, pensively.\",rolls her eyes resentfully and pulls the doors shut.,sits in a chair watching her.,crosses to a pair of metal doors swinging.,1\n10982,lsmdc3013_BURLESQUE-5061,15353,\"Now someone arrives home in a red clingy dress. Eyeing the daybed, she\",Now someone arrives home in a red clingy dress.,\"Eyeing the daybed, she\",gold,lifts her gaze from his daughter in a beaded blue dress.,sets her reflection down and bites her lower lip.,approaches a disgruntled black - cut brunette.,\"pauses briefly, then crosses to the french doors and opens them.\",3\n10983,lsmdc3013_BURLESQUE-5061,15354,\"Eyeing the daybed, she pauses briefly, then crosses to the French doors and opens them. She\",\"Eyeing the daybed, she pauses briefly, then crosses to the French doors and opens them.\",She,gold,finds someone sleeping in the bed.,\"shifts herself licks, and stops.\",sees someone's look that she is standing in the doorway.,removes one glasses from her mouth and exhales.,0\n10984,lsmdc3013_BURLESQUE-5061,15352,\"With an indignant gape, she peels off. Someone\",\"With an indignant gape, she peels off.\",Someone,gold,pauses and peers up to the ambulance with a wagon still facing the second policeman.,\"looks a little admiring, then gazes at himself in a mirror.\",flings the crowbar back into her trunk.,\", on the front of the tower, watches someone down the engraved alley.\",2\n10985,anetv_gnZssGiQC7A,333,A man at a professional sports event performs a long jump over a pit of sand in front of a stadium filled with people. The man,A man at a professional sports event performs a long jump over a pit of sand in front of a stadium filled with people.,The man,gold,begins to go around a building with his stilts and competing as athletes perform martial competitions.,speaks to the screen very close with what you can see he ends several athletes engaging in an indoor soccer game.,walks wild alongside people in the same rough and shop of a heighten stadium.,begins by encouraging the audience to clap by throwing his hands up at the crowd and gesturing for applause.,3\n10986,lsmdc1029_Pride_And_Prejudice_Disk_One-83425,3984,\"Upstairs, someone is leaning on her dressing table, studying her own reflection. She\",\"Upstairs, someone is leaning on her dressing table, studying her own reflection.\",She,gold,\"appears filling her long skirt for a gem, for her.\",\"smiles coyly as her older brother watches, pleasantly glazed and amused.\",\"stares nervously at the fbi, which turns away.\",\"practices a few facial expressions, smiles.\",3\n10987,lsmdc1029_Pride_And_Prejudice_Disk_One-83425,3981,\"Meanwhile, downstairs, someone is working late in his study, poring over the household accounts. He\",\"Meanwhile, downstairs, someone is working late in his study, poring over the household accounts.\",He,gold,\"marks up a book, puts his quill back in its pot.\",\"rolls onto the control platform, his shotgun in hand.\",carries number dogs down to the hall.,\"slips the canoe past an upper section of the passageway, quickly emerges as through the chopper door.\",0\n10988,lsmdc1029_Pride_And_Prejudice_Disk_One-83425,3983,\"With a sly look to the side, he reaches for a drinks decanter. Upstairs, someone\",\"With a sly look to the side, he reaches for a drinks decanter.\",\"Upstairs, someone\",gold,\"wears a wide club that lies on the ground, his face splattered with sweat.\",\"walks out of the canvas room, carrying an envelope.\",sets the tray case down in front of someone's mallet.,\"is leaning on her dressing table, studying her own reflection.\",3\n10989,lsmdc1029_Pride_And_Prejudice_Disk_One-83425,3982,\"He marks up a book, puts his quill back in its pot. With a sly look to the side, he\",\"He marks up a book, puts his quill back in its pot.\",\"With a sly look to the side, he\",gold,reaches for a drinks decanter.,dashes down the hall.,pulls out someone's hat and dials another number.,scoops up the kitten.,0\n10990,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19190,\"Someone tries to clamber up onto the ledge. As he does, the ring\",Someone tries to clamber up onto the ledge.,\"As he does, the ring\",gold,slows to a stop.,manages to fall off the road.,slips out of his shirt and dangles in full view of someone!,moves in whirlwind.,2\n10991,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19196,\"Someone blinks, masking the malice of his eyes with their heavy pale lids. Someone\",\"Someone blinks, masking the malice of his eyes with their heavy pale lids.\",Someone,gold,\"sighs tearfully, awkwardly despairingly at someone.\",pulls him into an enormous square tower.,creeps close to someone and whispers in his ear.,picks someone up to cut someone hard.,2\n10992,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19195,Someone's out - stretched hand suddenly grasps someone's arm pulling him safely onto the ledge. Someone,Someone's out - stretched hand suddenly grasps someone's arm pulling him safely onto the ledge.,Someone,gold,runs along the walkway and gets out of bed.,glares down at someone.,gawks with his shoulder appraisingly then removes the other sunglasses and undoes the handcuffs.,\"stops, picks up and winds up.\",1\n10993,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19194,\"Startled, someone looks down at someone, losing his footing in the process. Someone's out - stretched hand\",\"Startled, someone looks down at someone, losing his footing in the process.\",Someone's out - stretched hand,gold,tries to deliberately ominously towards someone.,gets his head to a dive.,\"enters the mic, and plants his paddle on it.\",suddenly grasps someone's arm pulling him safely onto the ledge.,3\n10994,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19191,\"As he does, the ring slips out of his shirt and dangles in full view of someone!. Lose on: someone\",\"As he does, the ring slips out of his shirt and dangles in full view of someone!.\",Lose on: someone,gold,manages to release it as the video closes in.,lugs off the tank towards the people.,rears back in shock tenses like a cat.,and someone rush out to dance.,2\n10995,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19193,\"Someone, head bowed, trying to pull himself up. Startled, someone\",\"Someone, head bowed, trying to pull himself up.\",\"Startled, someone\",gold,\"looks down at someone, losing his footing in the process.\",gulps back some relief.,\"spots the man, quickens jumps on the edge of the stage.\",\"stares inside, listening.\",0\n10996,lsmdc1059_The_devil_wears_prada-98816,2262,\"Someone's wearing a black, off - the - shoulder gown. Someone\",\"Someone's wearing a black, off - the - shoulder gown.\",Someone,gold,returns to the operations room to paddleboards esu staying behind.,\"walks to his room, staring at ames, and plods away, looking at the ceiling of an approaching ceiling.\",spots someone with a chic lady on his arm.,\"bites through her straw, obscuring her hair but instantly becomes still.\",2\n10997,lsmdc1059_The_devil_wears_prada-98816,2261,\"Inside at the benefit, people follow someone around as she greets guests, prompting her as to who they are. Someone\",\"Inside at the benefit, people follow someone around as she greets guests, prompting her as to who they are.\",Someone,gold,\"'s wearing a black, off - the - shoulder gown.\",plays in a circle as two women stand in the other.,edges out of the way as he meets someone by the mouth of steps.,gazes at the group of blonde women standing before him.,0\n10998,anetv_SvYeqLg4dQU,18574,A replay with overlaid graphics is shown. The man,A replay with overlaid graphics is shown.,The man,gold,pushes briefly and comes over to the end of the fallen.,continues to play pool.,rides up the coach and stretches.,celebrates by washing hands.,1\n10999,anetv_SvYeqLg4dQU,18573,An overhead view of a blue pool table is shown. A man,An overhead view of a blue pool table is shown.,A man,gold,talks to the camera about swimming.,is laying stone onto the ground.,takes shot with the cue.,weaves his body while wearing a surf board.,2\n11000,anetv_SvYeqLg4dQU,16991,The man holds out his billiards stick to line up a shot then takes the shot. The man,The man holds out his billiards stick to line up a shot then takes the shot.,The man,gold,brings the sack toward a truck and places it on his cricket case.,continues to talk while laughing to one another.,makes the same shot at the other for his own.,chalks the end of his pool cue and walks to the corner of the table.,3\n11001,anetv_SvYeqLg4dQU,16990,Professional pool players play a game of billiards in a competition. The man,Professional pool players play a game of billiards in a competition.,The man,gold,throw a javelin and lands very far about dropping rear the ground.,extends his hand and turns to the big orchestra.,sat on the parallel bar to keep the lanka on his belt and stand in front the crowd.,holds out his billiards stick to line up a shot then takes the shot.,3\n11002,anetv_SvYeqLg4dQU,16992,The man chalks the end of his pool cue and walks to the corner of the table. The man,The man chalks the end of his pool cue and walks to the corner of the table.,The man,gold,leans over pumps the cue stick between his fingers before taking a shot.,carves a cheap circle floor with the wrapping paper.,bounces and taps the goalie on the shoe.,moves a flip into the sand and slides a goal out to peel them off.,0\n11003,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13093,He looks at someone with surprise. The man in the chair,He looks at someone with surprise.,The man in the chair,gold,\"looks at him, and continues to swing his hands under her chin.\",\"ticks up, a junior cut of a man followed by an old civil tumbled hurrying down some stairs.\",\"gets to his feet and turns, revealing himself to be someone.\",\"walks out of shot, taking his charcoal and covering the orb with of index finger.\",2\n11004,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13081,Someone grabs him and pushes him ahead. Someone,Someone grabs him and pushes him ahead.,Someone,gold,leads someone down the hallway as he searches for someone.,\"looks awkwardly, then leans closer and puts his wife's arm in his back, which is now set against one shoulder.\",sees someone's back in the room.,hobbles painfully against the grave area.,0\n11005,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13092,They only see a hand reach out. He,They only see a hand reach out.,He,gold,looks at someone with surprise.,is in hand.,reach the office.,notices the broken keys of a fish as he watches the man feed.,0\n11006,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13088,Someone releases his grip on someone and shoves her toward someone. She,Someone releases his grip on someone and shoves her toward someone.,She,gold,gets up and steps down into the sunlight.,slams the weapon against the pavement.,is propelled directly into his arms.,puts her hand behind someone's head.,2\n11007,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13082,Someone leads someone down the hallway as he searches for someone. He,Someone leads someone down the hallway as he searches for someone.,He,gold,runs to it and looks up.,backs away.,closes the kitchen door behind her.,opens a door and enters.,3\n11008,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13078,\"He is so pissed off, he literally rips a machine gun from the hands of one of the startled soldiers. He\",\"He is so pissed off, he literally rips a machine gun from the hands of one of the startled soldiers.\",He,gold,\"faces someone, who had been standing in her doorway, making three fingers high into the glass.\",\"approaches an empty partition paneled door, tries a knob from the corner and shoots it.\",\"peer down from it, shaking to recent time by a distant flying youtube panel.\",\"turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room.\",3\n11009,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13083,He opens a door and enters. People,He opens a door and enters.,People,gold,writhe in ashes and the turn round revealing someone smoking from a cereal box.,\"dismount to round someone, reaches up and moves it.\",\"rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage.\",come through the glass doors and circle an empty street.,2\n11010,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13097,She takes the Grail Diary from him. Someone,She takes the Grail Diary from him.,Someone,gold,\"reaches out his hand, kisses it up, then kisses it.\",takes a look for herself - - then glances up at someone.,covers a big book.,\"looks at the matches, then finds the pen written in pink letters.\",1\n11011,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13079,\"He turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room. Someone\",\"He turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room.\",Someone,gold,\"looks at the first woman, a better determined look at her on the side and take a step back away.\",blaster someone is lighter and the same nervous getting into the elevator.,looks shocked and horrified.,doles out more balls.,2\n11012,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13090,Someone crosses the room toward a high - backed chair facing the fireplace. People,Someone crosses the room toward a high - backed chair facing the fireplace.,People,gold,- view meet her in a berth.,do not have the advantage of seeing who is sitting in that chair.,\"set with a deep frown, someone glances up at the crowd.\",steps more as a bus faces the screen.,1\n11013,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13084,\"People rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage. He\",\"People rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage.\",He,gold,\"runs out of her office, locks her eyes to the door, smashes him into the wall.\",writhes in pain as if in an angry line of his brain.,turns quickly to the two men standing above him and walks past boss and footprints.,\"looks at someone, then back to his father.\",3\n11014,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13095,Someone smiles benignly and flips through the Grail Diary. Someone,Someone smiles benignly and flips through the Grail Diary.,Someone,gold,rushes to someone's side.,places a paper box of piece paper in a box and pokes the letter with a palm.,arrive at the fire with him.,\"enters, leaving someone getting into her father's study.\",0\n11015,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13080,Someone looks shocked and horrified. Someone,Someone looks shocked and horrified.,Someone,gold,glances down at missing someone's hand then hands the giant to someone.,pulls a bow ring from his pocket.,grabs him and pushes him ahead.,eyes his depiction: golf outfit and a black.,2\n11016,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13085,\"He looks at someone, then back to his father. Everyone\",\"He looks at someone, then back to his father.\",Everyone,gold,is yelling at once.,\"walks out of the kitchen, towards someone, coffee 45 in his hands.\",looks up at someone and nods.,\"looks on, then sees someone coming out of the hall as someone walks into the common room.\",0\n11017,lsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13087,\"He drops the machine gun to the table and it slides across, shattering glass. Someone\",\"He drops the machine gun to the table and it slides across, shattering glass.\",Someone,gold,\"sits on someone, gazing up at the ceiling.\",\"walks out with the audience of his students, screaming.\",releases his grip on someone and shoves her toward someone.,finds the prone spot under a plastic cover.,2\n11018,anetv_0gLAhptj34w,1157,A close up of a fooseball table is shown with two people playing. The people,A close up of a fooseball table is shown with two people playing.,The people,gold,continue playing with one another while stands underneath to speak to the camera.,move the poles all along the table pushing a ball.,plays cards and two people walk back into small groups.,continue to play the drums on the stage.,1\n11019,anetv_0gLAhptj34w,14180,Two people are playing against each other in a game of Foosball. The left person,Two people are playing against each other in a game of Foosball.,The left person,gold,lays down onto a table behind another man.,\"drops the ball in the net, and tries to keep up.\",lifts his right hand in circles with the paddle.,reaches down and grabs the ball.,3\n11020,anetv_0gLAhptj34w,1158,The people move the poles all along the table pushing a ball. The two,The people move the poles all along the table pushing a ball.,The two,gold,continue to play back and fourth.,continue hitting the ball and speak to each other.,begin hitting each other to one another.,continue playing volleyball and play with one another.,0\n11021,anetv_0gLAhptj34w,14182,The left person spins the left pole fast. We,The left person spins the left pole fast.,We,gold,wee the right hand and the zest's become visible.,see the white team score a goal.,see the fish vapor cross.,man hugs his guys side.,1\n11022,lsmdc0009_Forrest_Gump-50574,7596,Someone pulls someone up onto the stage. The other vets,Someone pulls someone up onto the stage.,The other vets,gold,girls follow him as someone descends.,bigger surrounds the official 'tail.,agent flexes her other leg.,follow someone pushes onto the stage and push him toward the microphones.,3\n11023,lsmdc0009_Forrest_Gump-50574,7597,The other vets follow someone pushes onto the stage and push him toward the microphones. Someone,The other vets follow someone pushes onto the stage and push him toward the microphones.,Someone,gold,raises his fist as the crowd cheers wildly.,shifts someone's troubled gaze.,buries his face in people's shoulder.,\"sits in a chair, staring at his window.\",0\n11024,anetv_RWTLd_0BeAg,12414,One of the girls leaves and the other girl continues dancing alone. She,One of the girls leaves and the other girl continues dancing alone.,She,gold,starts throwing the batons in the air.,turns to the someone and sister standing up.,\"then 2 dance, salsa leaves.\",watches her after her mother do cartwheels and does other gymnasts.,0\n11025,anetv_MSSb3wPd5hM,9022,People in a marching band are standing on an open area playing cymbals and drummers. people,People in a marching band are standing on an open area playing cymbals and drummers.,people,gold,are doing a routine on a stage trying to place a picture in the wall.,are standing in the background watching the matching band.,\"are talking to the camera and a man begins speaking, over and over on the stage.\",are standing in front of the judges watching.,1\n11026,anetv_MSSb3wPd5hM,11387,A group of people are seen playing instruments next to one another. The,A group of people are seen playing instruments next to one another.,The,gold,shake their fingers to each other.,continue playing while the camera zooms in on one's television.,continue to play while the front row turns around.,plays and play around as well as speaking to the camera.,2\n11027,anetv_MSSb3wPd5hM,11388,The continue to play while the front row turns around. The front row,The continue to play while the front row turns around.,The front row,gold,is repeated back and forth.,moves all around one another as they continue to play.,shows the three again in the building.,makes the first jump from the room.,1\n11028,anetv_bNwrAuu0qiQ,11558,An intro leads into several pictures of a tennis player and leaders into video footage of the player playing matches. The tennis player,An intro leads into several pictures of a tennis player and leaders into video footage of the player playing matches.,The tennis player,gold,\"comes after him, misses and flips a few times and continues to climb the lane in the whole game.\",is shown in several shots of games performing incredible stunts and clenching his fists to celebrate in the end.,shows him how to play a game of hockey moving with one another when powdered more pom effects are taken.,\"attempts to walk down one after, tossing and banging with one another.\",1\n11029,anetv_c7fu7RcM2iE,1584,Each man does a set of multiple jumps in a continuous line. The filming,Each man does a set of multiple jumps in a continuous line.,The filming,gold,is interrupted by building staff.,crashes the wheel onto the ground.,lowers for the first time.,slows down as he heads away.,0\n11030,anetv_c7fu7RcM2iE,1583,The men run together in a group. Each man,The men run together in a group.,Each man,gold,lowers the hands to the ground as they run.,takes up and adds a fire.,does a set of multiple jumps in a continuous line.,pours mops together in a bucket.,2\n11031,anetv_c7fu7RcM2iE,1582,A group of men do freestyle running jumps throughout the city. The men,A group of men do freestyle running jumps throughout the city.,The men,gold,race into the black capped steel.,all walk along the sidelines to watch another event.,perform backstroke chi while others stand around.,run together in a group.,3\n11032,lsmdc0016_O_Brother_Where_Art_Thou-55592,1412,\"He tackles him and, with his hands wrapped round someone's throat, the two roll over. They have rolled through some brush and their bodies\",\"He tackles him and, with his hands wrapped round someone's throat, the two roll over.\",They have rolled through some brush and their bodies,gold,lie all down around the floor.,are kissing on the floor.,\"are moving angrily on each other, then ogles the two men's legs.\",are now halfway into a clearing.,3\n11033,anetv_4_3m_-SGzXw,3292,Man is in a room with a digital paper machine and the machine is printing a sign. men,Man is in a room with a digital paper machine and the machine is printing a sign.,men,gold,is in a long room in the middle of the screen.,stand on the front of a house.,are sticking the wallpaper to a white wall.,are going in front of the blower.,2\n11034,anetv_4_3m_-SGzXw,3291,Graphic about how to do digital wallpaper is shown. man is in a room with a digital paper machine and the machine,Graphic about how to do digital wallpaper is shown.,man is in a room with a digital paper machine and the machine,gold,is cleaning construction paper.,is printing a sign.,goes using an object on a treadmill on the wall.,is being hung low.,1\n11035,anetv_98OypfeTKEc,18160,Thre women are swinging on the yard of a school. women,Thre women are swinging on the yard of a school.,women,gold,are in courtyard of a school having fun on swings.,are mowing the grass while doing a dance dance with the ladies who enjoy fencing just watch.,walk around to the customer while his to the two children.,are raking up raking a dirt path.,0\n11036,anetv_98OypfeTKEc,1271,People are swinging on a swing set. A woman in a black jacket,People are swinging on a swing set.,A woman in a black jacket,gold,walks into the girl.,bends down near her pinata.,walks out of the room.,is on the first swing.,3\n11037,anetv_98OypfeTKEc,1272,A woman in a black jacket is on the first swing. A woman in white pants and a brown shirt,A woman in a black jacket is on the first swing.,A woman in white pants and a brown shirt,gold,walks through her.,is on the last swing.,\"is shoveling, while still laughing.\",is standing next to tyler.,1\n11038,lsmdc1057_Seven_pounds-97616,16820,He pulls up in a parking spot outside a large institutional - looking building with the stars and stripes hanging over the door. Someone,He pulls up in a parking spot outside a large institutional - looking building with the stars and stripes hanging over the door.,Someone,gold,enters the perfect place as the huge figure sits with his back over him.,watches in horror as he struggles the street way.,\"peers out of the forecourt, watches as harry snakes its way along the shelves.\",gets out of his car and admires a shiny bmw convertible parked beside him.,3\n11039,lsmdc1057_Seven_pounds-97616,16821,\"Someone gets out of his car and admires a shiny bmw convertible parked beside him. Elderly ladies, one on a Zimmer,\",Someone gets out of his car and admires a shiny bmw convertible parked beside him.,\"Elderly ladies, one on a Zimmer,\",gold,shuffle down a corridor.,leave the door as the man exits the building.,watch them push the club.,watch moonlit monks through a pile of trees.,0\n11040,lsmdc1057_Seven_pounds-97616,16824,Someone reaches for a pad. But he,Someone reaches for a pad.,But he,gold,guides someone to the elevator.,does n't sound - - he continues singing on the sidewalk.,climbs the first scout ladder.,\"grabs her wrist, then is aware of someone.\",3\n11041,lsmdc1057_Seven_pounds-97616,16823,A suited man sits on the edge of someone's bed. Someone,A suited man sits on the edge of someone's bed.,Someone,gold,reaches for a pad.,kisses a guy shirt.,\"lies on the bed fully clothed, drenched in eyed.\",\"lies on his side in the bath, only to rub his face.\",0\n11042,anetv_Qre7RVxEn78,14041,The man pierces both of his ears. He,The man pierces both of his ears.,He,gold,claws over the camera.,hands the woman the wound but he can't speak.,presses a button on the gas lighter.,gets up off the table and looks at his piercings in the mirror.,3\n11043,anetv_Qre7RVxEn78,10276,A man's ear is shown close up. A man,A man's ear is shown close up.,A man,gold,is talking in the bathroom as he lifts the weight over his head before forcing his face into the toilet basin.,is equipped on a large bar.,is shown standing in front of a bike in a room.,shows the tool he is going to use to pierce his ear.,3\n11044,anetv_Qre7RVxEn78,10277,A man shows the tool he is going to use to pierce his ear. He,A man shows the tool he is going to use to pierce his ear.,He,gold,\"inserts the needle, piercing his ear.\",is using an electric razor to shave a horse on his legs.,\"advances on a panel, pulling him up from the ground.\",points around the car to the other side.,0\n11045,anetv_Qre7RVxEn78,14039,A young man with a marked dot for ear piercing is laying on a medical table. Another young man,A young man with a marked dot for ear piercing is laying on a medical table.,Another young man,gold,shows a large ear piercing tool to the camera.,washes in front of several cars of cars.,is in the organ standing and holding a harmonica.,takes picture as he washes the dog.,0\n11046,anetv_Qre7RVxEn78,10278,\"He inserts the needle, piercing his ear. He then\",\"He inserts the needle, piercing his ear.\",He then,gold,\"adds a tube, creating a gauge.\",thumps his fist to his mouth.,grabs a razor and toothpaste.,\"lies down, banging his eyes shut in confusion.\",0\n11047,anetv_Qre7RVxEn78,14040,Another young man shows a large ear piercing tool to the camera. The man,Another young man shows a large ear piercing tool to the camera.,The man,gold,holds his paw and points at his father's ear.,removes the mans legs and sharpens the metal leg.,uses his toothbrush from a bathroom in front of the camera.,pierces both of his ears.,3\n11048,anetv_1sA-lEbrgak,4465,The man lifts it over his head and his score his shown afterwards. He,The man lifts it over his head and his score his shown afterwards.,He,gold,comes out and poses for the player to throw a black discuss against a guy.,see a bike and a man welding right below blue.,does this several more times.,forces another and starts by walking out to the sand and turning it over.,2\n11049,anetv_s9Wop4PMZaw,15088,Two young children are seen riding on a camel past a group of people and a man leading them along. The man,Two young children are seen riding on a camel past a group of people and a man leading them along.,The man,gold,continues to lead the camel around with the children on top and ends with them climbing down and others walking up.,is then seen brushing the paper and leads into several clips of people riding by dogs.,bends down and takes the phone off.,rubs a truck with the missed rope to get a horse down and ends with a woman speaking to the camera.,0\n11050,anetv__WMRdq7yFpA,17730,\"He swims away from the camera, looking back. He then\",\"He swims away from the camera, looking back.\",He then,gold,holds his kayak by lifting lifts above his head.,moves his eyes off himself.,\"turns sideways, still watching and swimming.\",sees people picking up a pole and pulling down several other other people.,2\n11051,anetv__WMRdq7yFpA,11414,He breathes bubbles as he goes through the water. He,He breathes bubbles as he goes through the water.,He,gold,\"stands on the main deck, leaning against a wall of lockers in the icy ground.\",looks back momentarily at the camera.,\"leads them down a bridge, a view of upraised torso and flying along the platform.\",takes a deep breath.,1\n11052,anetv__WMRdq7yFpA,11413,A man is diving deep into the ocean. He,A man is diving deep into the ocean.,He,gold,grins back and forth as he walks up into the bass wax and begins to smooth out dance.,breathes bubbles as he goes through the water.,uses the open hand to bomb the fish into the hole.,jumps off the diving board.,1\n11053,anetv__WMRdq7yFpA,17729,A man is diving under the ocean water. He,A man is diving under the ocean water.,He,gold,gets a pole off a ledge.,does a spin stand in the water.,\"swims away from the camera, looking back.\",\"dismounts, and falls into the sea.\",2\n11054,lsmdc0004_Charade-47730,10423,\"Who, like everyone else, leave the table and stand together at the rail watching. She rises on tip - toes and kisses him gently; his only reaction\",\"Who, like everyone else, leave the table and stand together at the rail watching.\",She rises on tip - toes and kisses him gently; his only reaction,gold,would n't take in her.,has a soft spot of her lips.,\"is to apply his mind to life, but someone's laughter has glum.\",is to look at her.,3\n11055,lsmdc3088_WHATS_YOUR_NUMBER-42303,12907,\"Under a bright lamp, she painstakingly works on one of her sculptures. She\",\"Under a bright lamp, she painstakingly works on one of her sculptures.\",She,gold,picks up a cell phone and reads a string of text messages starting with someone's phone number.,\"turns the vibrating back on the table, then rubs her double.\",\"pulls it off, exposing her breasts.\",spots the ball and makes his way to the perimeter of the court.,0\n11056,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15752,\"In a dressing room, someone watches someone put on make - up. She\",\"In a dressing room, someone watches someone put on make - up.\",She,gold,stands and faces him.,\"beams at someone, who raises his eyebrows.\",\"ventures through the glass into the vacant lounge, pulling two shelves full of equipment.\",\"trots to the corner of the room, where the six men gathered and mimics someone.\",0\n11057,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15756,\"Someone watches someone step out onto stage. On stage, she\",Someone watches someone step out onto stage.,\"On stage, she\",gold,glances at someone and takes a seat at the piano.,comes across the surface of the piano.,plays the air and walks to the street.,\"leans backwards, facing someone.\",0\n11058,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15753,Someone notices the young man. He,Someone notices the young man.,He,gold,removes someone's cap off.,stands over the piano.,pulls up the phone.,\"points, then leaves.\",3\n11059,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15751,\"Someone flutters her arms overhead. In a dressing room, someone\",Someone flutters her arms overhead.,\"In a dressing room, someone\",gold,performs in little bang - class whites un - in.,\"vacuums a fireplace, slashing with a disturbed look as she strolls past doorway.\",watches someone put on make - up.,finds someone forgotten above all the beach trunks.,2\n11060,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15754,They peer into the auditorium. Someone,They peer into the auditorium.,Someone,gold,fill the mic with a brief knowing gaze.,eyes the masked agents shyly.,\"bows, then exits the stage with the other dancers.\",hurries out and leads someone into the hallway.,2\n11061,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15757,\"On stage, she glances at someone and takes a seat at the piano. On stage, someone\",\"On stage, she glances at someone and takes a seat at the piano.\",\"On stage, someone\",gold,dances with someone as she dances.,\"stands over the waves of the crowd, wildly watching the dancers.\",sets her fingers on the keys and nervously looks over the crowd.,sits on a bench and watches her sister playing with the doll.,2\n11062,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15755,The house is full of enthused faces. Someone,The house is full of enthused faces.,Someone,gold,walks to the auditorium.,watches someone step out onto stage.,opens it and gawks.,takes the boy out from the frame.,1\n11063,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15750,\"As someone hurries onstage with several dancers, someone heads off. Someone\",\"As someone hurries onstage with several dancers, someone heads off.\",Someone,gold,\"grabs his hand and walks with him, holding up on him.\",flutters her arms overhead.,strolls into a workshop and sits at a desk.,faces him with a forgotten gait.,1\n11064,anetv_g2uL6H3fP1c,19994,\"The man finishes, grabs his shirt, and walks off. We\",\"The man finishes, grabs his shirt, and walks off.\",We,gold,\", his fasten tail with a sub makes several other runs and the little girl from the clip did on green.\",\"see the man on the man, rogers' metal squeezer and put guy cloth on the floor.\",see video clips in the closing screen.,fence behind him and we see a scraper tiles the man's back on the carpet.,2\n11065,anetv_g2uL6H3fP1c,19992,The man flips around and does Capoeira moves. We,The man flips around and does Capoeira moves.,We,gold,\"couple walks back to the camera, flipping upside down.\",see the man do a handstand on one hand.,guy steps in and back to.,see the man throw a discus.,1\n11066,anetv_g2uL6H3fP1c,19989,We see a man walking in a parking lot. The man,We see a man walking in a parking lot.,The man,gold,makes it and the man sits down in the corner.,skates around and plays the bagpipes.,takes off the tire and pulls a skateboard into it.,starts performing martial arts moves.,3\n11067,anetv_g2uL6H3fP1c,19988,We see an animated opening screen. We,We see an animated opening screen.,We,gold,see a man walking in a parking lot.,see a person riding a raft in a kayak.,see the man using the machine in the game.,see the melon products inside and see the logo website.,0\n11068,anetv_g2uL6H3fP1c,19991,The man removes his shirt and necklace. The man,The man removes his shirt and necklace.,The man,gold,stretches his arms and returns to his bike.,throws the disk to the lady.,flips around and does capoeira moves.,takes a few drinks off of the bowling toy.,2\n11069,anetv_g2uL6H3fP1c,19990,The man starts performing martial arts moves. The man,The man starts performing martial arts moves.,The man,gold,removes his shirt and necklace.,continues talking to grab shoes.,begins singing and cheering and smiling.,kneels down and stands weights.,0\n11070,anetv_g2uL6H3fP1c,19993,We see the man do a handstand on one hand. The man,We see the man do a handstand on one hand.,The man,gold,finishes gesturing talking and takes off the hubcap.,gets into the man and curls his blindfold.,\"finishes, grabs his shirt, and walks off.\",lifts his hair off his shoulders.,2\n11071,anetv_R4yz8nXO5hI,7111,A person paints flowers onto a white canvas with a fine brush. The person,A person paints flowers onto a white canvas with a fine brush.,The person,gold,then uses paint lines to sprinkle more paint on it.,removes the painting from the table and shows the finished product.,is cleaning the woman's hair with a spray brush before cutting it with paint.,put sand on the surface.,1\n11072,anetv_mDaZqz7lB0o,2423,An intro of what seems to be an Indian man is shown and documenting his everyday life. The man,An intro of what seems to be an Indian man is shown and documenting his everyday life.,The man,gold,uses his tools how to ski and ski down the steep mountain after his equipment exercising.,is then shown playing on a small organ with a microphone attached to it.,plays a first man miners christmas with a painting.,appears with white signs next to him then takes the knife to cut the knife.,1\n11073,anetv_mDaZqz7lB0o,17878,A man sits a piano with his hands placed on the keys. the man,A man sits a piano with his hands placed on the keys.,the man,gold,adjusts the radio while the camera captures his movements.,begins playing the piano.,plays a song over and over.,enters a set of keys.,1\n11074,anetv_mDaZqz7lB0o,2424,The man is then shown playing on a small organ with a microphone attached to it. The camera then moves to capture the vacancy of the room and the man,The man is then shown playing on a small organ with a microphone attached to it.,The camera then moves to capture the vacancy of the room and the man,gold,laying on the ground while he flies toward the camera and ends with his routine.,is shown playing the flute.,lets go of the hook and turns off a frame.,lying on the floor assisting him and silently.,1\n11075,anetv_M2OoQFcDflU,15232,A tray of chips are shown on a table. A person,A tray of chips are shown on a table.,A person,gold,pouring ingredients into a small pot.,is dealing cards onto the table.,is using a dish washer to clean its ingredients.,is rubbing small bowls with pumpkins.,1\n11076,anetv_M2OoQFcDflU,15233,A person is dealing cards onto the table. People sitting at the table,A person is dealing cards onto the table.,People sitting at the table,gold,\", holding wrapping paper supplies.\",is putting stuff in their glasses.,start to dance and start to drink in the cups as a judge leaves hand on top.,give each other high fives.,3\n11077,anetv_H9ekrZnisUI,13194,Outside in the yard there is a lady dressed like a cupcake and she is playing a game of cricket. She hits the yellow ball but it,Outside in the yard there is a lady dressed like a cupcake and she is playing a game of cricket.,She hits the yellow ball but it,gold,does not move very far at all.,is trying to recover the ball.,'s not for it as she gets a cup of flattened and shoves it into the oven to throw it into the background.,'s hard for the goal.,0\n11078,anetv_H9ekrZnisUI,13196,She has a little bit of trouble trying to get a good position to hit the ball again. When she finally hits it again it,She has a little bit of trouble trying to get a good position to hit the ball again.,When she finally hits it again it,gold,does not go through the course like she was expecting so she is disappointed.,pins the ball out of the box.,scores and lands in the trash can that is still been successful.,ends like a turban twisting.,0\n11079,anetv_H9ekrZnisUI,13195,She hits the yellow ball but it does not move very far at all. She,She hits the yellow ball but it does not move very far at all.,She,gold,flips away from a side of the field.,moves and moves into the field.,has a little bit of trouble trying to get a good position to hit the ball again.,is playing wooden ball.,2\n11080,anetv_PXBcPu2_KOo,4347,An athlete climbs on the pommel horse to perform jumps and flips. The athlete,An athlete climbs on the pommel horse to perform jumps and flips.,The athlete,gold,flips backwards and then continues with her routine.,\"does many forward flips in his maneuvers, spins and spins.\",does a final jump and runs over the gym.,pounces on him and takes up speed and handsprings.,0\n11081,lsmdc3016_CHASING_MAVERICKS-6136,17781,\"Wearing an ear - to - ear grin, he paddles toward shore. He\",\"Wearing an ear - to - ear grin, he paddles toward shore.\",He,gold,nears a younger surfer as a swell creeps up behind them.,spots him at the lighthouse.,climbs onto a barn barn and opens a door to some small children standing behind her.,pulls out a massive wave.,0\n11082,lsmdc3016_CHASING_MAVERICKS-6136,17782,He nears a younger surfer as a swell creeps up behind them. The novice,He nears a younger surfer as a swell creeps up behind them.,The novice,gold,bops their heads standing before someone steps off.,meets someone's open eyes.,gets to his feet.,shifts his mill gaze.,2\n11083,lsmdc3016_CHASING_MAVERICKS-6136,17783,\"The scowling boy sits with his pals at the top of the steps, tapping a bat in his hand. Someone\",\"The scowling boy sits with his pals at the top of the steps, tapping a bat in his hand.\",Someone,gold,steps onto a catwalk and leaps over a railing.,gives it a light tap and walks on.,\"looks down for a moment, then returns in the main room.\",\"steps up to someone, covering his face with his hands.\",1\n11084,anetv_TcrLMpMA1WM,16594,A man is kneeling down in front of a pile of sticks. He,A man is kneeling down in front of a pile of sticks.,He,gold,takes them off then goes under a pile of sand.,turns around and stares at it.,pushes a plaster to the wall.,lights the sticks on fire.,3\n11085,anetv_TcrLMpMA1WM,16595,He lights the sticks on fire. He,He lights the sticks on fire.,He,gold,takes a small puff of his cigarette.,covers the floor with a red fire as he does so.,takes sticks out of a bucket and starts another fire.,limps away from the burning embers in the burning house.,2\n11086,anetv_TcrLMpMA1WM,797,\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it will help bring it back up. With a pocket bellow even when its wet it will still build a fire really well back up it just\",\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it will help bring it back up.\",With a pocket bellow even when its wet it will still build a fire really well back up it just,gold,seems like a drink from a radiator.,seems like an journey.,takes more time and patience.,seems it is getting cleaned.,2\n11087,anetv_TcrLMpMA1WM,795,The man is hunched over on the the ground trying to build a fire by himself. It,The man is hunched over on the the ground trying to build a fire by himself.,It,gold,'s all about adding oxygen at the right time once you have started a nice fire.,is then seen in a arts manner he runs and turns very pretty and reclined in the grass.,fly out of the fire.,hands the device over its full head.,0\n11088,anetv_TcrLMpMA1WM,796,\"It's all about adding oxygen at the right time once you have started a nice fire. Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it\",It's all about adding oxygen at the right time once you have started a nice fire.,\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it\",gold,takes him very hard.,will help bring it back up.,flows from the container near the top of a pipe.,would look great if it were the midst of the swimming goal.,1\n11089,anetv_0H_9zlnmW4U,2361,A man is seen standing in a large field and leads into him moving his arms and legs around the area. The man,A man is seen standing in a large field and leads into him moving his arms and legs around the area.,The man,gold,continues to play with the drums and ends with him walking away to demonstrate clips of him playing and doing moves.,then begins riding down a fourth board in the pit while others watch on the side.,continues moving around the gym using a camera and moving around the area.,continues moving around the area moving his hands up and down and looking off into the distance.,3\n11090,lsmdc3069_THE_BOUNTY_HUNTER-4686,3675,\"Outside, the thug makes a call. Reaching his suv, he\",\"Outside, the thug makes a call.\",\"Reaching his suv, he\",gold,draws up his gun and aims at an unseen zombie someone.,ends the call and gets in.,lands at a split.,offers someone a slip.,1\n11091,lsmdc3069_THE_BOUNTY_HUNTER-4686,3677,\"Later, he pops the trunk. Someone\",\"Later, he pops the trunk.\",Someone,gold,meets his daughter's gaze.,turns an armored case toward the land of cirith 2013.,throws the flare aside and punches someone in the crotch.,answers her calendar.,2\n11092,lsmdc3069_THE_BOUNTY_HUNTER-4686,3676,\"He sets down a newspaper article featuring someone's name and photo as the credited writer. In his car, someone\",He sets down a newspaper article featuring someone's name and photo as the credited writer.,\"In his car, someone\",gold,notices smoke wafting from the back.,sinks to the floor.,makes his way towards the front door.,\"walks off with a dejected look, then walks over.\",0\n11093,lsmdc3069_THE_BOUNTY_HUNTER-4686,3680,\"As he arrives at a desk, an aging blonde swivels to face him. Someone\",\"As he arrives at a desk, an aging blonde swivels to face him.\",Someone,gold,\"watch someone approach, then switches off his lights.\",shifts his sheepish gaze.,presses his knuckles gently.,hauls her niece to the floor.,1\n11094,lsmdc3069_THE_BOUNTY_HUNTER-4686,3679,\"Now, In Atlantic City, a storefront sign reads, Souvenirs, someone's Gifts. The hulking goateed guy, someone,\",\"Now, In Atlantic City, a storefront sign reads, Souvenirs, someone's Gifts.\",\"The hulking goateed guy, someone,\",gold,sits in a shabby room.,arrives sporting two black eyes and a gash across his nose ,watches a bizarre memory file through his eyes.,\"climbs to a table, then wades down a corridor.\",1\n11095,lsmdc0030_The_Hustler-64820,17259,\"She unloads liquor and canned goods from the carton, then goes to join someone by the window. Someone\",\"She unloads liquor and canned goods from the carton, then goes to join someone by the window.\",Someone,gold,\"gallops along a polished sidewalk, with party buildings in central square.\",runs across the office to her first graduate student.,takes a cigarette lighter out of her purse and hands it to someone.,places someone's hand resting on the back of the chair as she lays her hand on his shoulders and strokes his arm.,2\n11096,lsmdc0030_The_Hustler-64820,17258,He pulls her schoolbooks out of the carton and takes her purse. She,He pulls her schoolbooks out of the carton and takes her purse.,She,gold,knocks down the last taste of a rag and looks out.,\"unloads liquor and canned goods from the carton, then goes to join someone by the window.\",tosses it on the floor and draws it in his pointy cup.,waits under someone's pillow as he digs out a phone.,1\n11097,lsmdc0005_Chinatown-48024,13845,\"Move along the red tiled roof and down to a lower level of the roof where someone 'feet are hooked over the apex of the roof and someone himself is stretched face downward on the tiles, pointing himself and his camera to a veranda below him where the girl and someone are eating. Someone\",\"Move along the red tiled roof and down to a lower level of the roof where someone 'feet are hooked over the apex of the roof and someone himself is stretched face downward on the tiles, pointing himself and his camera to a veranda below him where the girl and someone are eating.\",Someone,gold,\"by frame, the pretty girl raises her cigarette in front of her face then strides off.\",is clicking off more shots when the tiles his feet are hooked over come loose.,carries the box of coins into a pocket beside them.,watches as someone gets in from the car.,1\n11098,lsmdc0005_Chinatown-48024,13844,Someone and the girl seem blissfully unaware of them. Turns again and they,Someone and the girl seem blissfully unaware of them.,Turns again and they,gold,quickly get this haircut.,trot down one side.,\"row past someone and the girl, someone again clicking off several fast shots.\",'re both amd smile.,2\n11099,lsmdc0005_Chinatown-48024,13854,The Customer is shrinking back into the chair. Someone,The Customer is shrinking back into the chair.,Someone,gold,has a gun and starts scrubbing it up.,\"comes bursting in, slapping a newspapers on his thigh.\",\"steps stiffly silently, and looks at them confidently.\",gazes sadly at an old factory and watch him gravely.,1\n11100,lsmdc0005_Chinatown-48024,13843,\"He shoots past someone, expertly running off a couple of fast shots. Someone and the girl\",\"He shoots past someone, expertly running off a couple of fast shots.\",Someone and the girl,gold,duel after the cops stroll across lush woodland.,climbs the grand staircase.,seem blissfully unaware of them.,zoom out and prone.,2\n11101,lsmdc0005_Chinatown-48024,13847,But a fragment off the cracked edge of the tile falls. He,But a fragment off the cracked edge of the tile falls.,He,gold,comes onto the blazing screen.,tries to slow himself down.,uses his hands to wash his face.,tosses a empty whiskey bottle onto the dock.,1\n11102,lsmdc0005_Chinatown-48024,13846,Someone is clicking off more shots when the tiles his feet are hooked over come loose. Someone,Someone is clicking off more shots when the tiles his feet are hooked over come loose.,Someone,gold,slap down a wall.,begins a slow slide down the tile to the edge of the roof and possibly over it to a three - story drop.,raises his hands in grim air.,strains in her feet.,1\n11103,lsmdc0005_Chinatown-48024,13851,\"In the style of the Hearst yellow press, there is a heart - shaped drawing around one of the photos that someone had taken. A self - satisfied smile\",\"In the style of the Hearst yellow press, there is a heart - shaped drawing around one of the photos that someone had taken.\",A self - satisfied smile,gold,comes to someone 'face.,is seen on her forehead.,is within her rippling gaze.,is facing someone's face.,0\n11104,lsmdc0005_Chinatown-48024,13849,\"He rises, looks up to the roof. He\",\"He rises, looks up to the roof.\",He,gold,tin down; a little door is closed in the front door.,looks to the girl.,takes off a jacket with a hair tie.,turns to the helicopters and starts right off.,1\n11105,lsmdc0005_Chinatown-48024,13852,\"Someone gets out of the chair. Someone, a little concerned,\",Someone gets out of the chair.,\"Someone, a little concerned,\",gold,coolly starts to off the building.,goes outside to greet him.,walks through the room.,\"tries to restrain him, holding onto the barber sheet around someone 'neck.\",3\n11106,lsmdc0005_Chinatown-48024,13850,\"He looks to the girl. In the style of the Hearst yellow press, there\",He looks to the girl.,\"In the style of the Hearst yellow press, there\",gold,is a padded quality with the name of her horror.,is a heart - shaped drawing around one of the photos that someone had taken.,are spectators clapping and clapping as the competition begin.,\"is a shop entrance where someone hotel, lights in an apartment.\",1\n11107,anetv_nEcOF04KK0g,14834,He prepares the shoe for shining. He,He prepares the shoe for shining.,He,gold,uses the machine to practice up more and points.,licks from his fingers and puts his face in the pan.,explains his method of shoe shining.,\"strums, showing each drink steadily.\",2\n11108,anetv_nEcOF04KK0g,14833,A man stirs shoe shine crafting materials into a jar. He,A man stirs shoe shine crafting materials into a jar.,He,gold,prepares the shoe for shining.,lays it on the tight wall.,retrieves a welding match in the lock.,enters the hot embers and next to the insides.,0\n11109,anetv_nEcOF04KK0g,14835,He explains his method of shoe shining. The man,He explains his method of shoe shining.,The man,gold,moves the slide his shoe.,begins wiping the shoe.,has white lotion back then ads gel to it and applies the applies to the mans leg.,shines the top of a shoe and finishes by fixing the laces of the shoe.,3\n11110,lsmdc0009_Forrest_Gump-50495,2685,Three planes dive down toward the jungle. Someone,Three planes dive down toward the jungle.,Someone,gold,props down a gun and contemplates her hands.,throws someone among the literature.,holds out the ship's engineer.,\"runs, carrying someone.\",3\n11111,lsmdc0009_Forrest_Gump-50495,2675,\"Someone drops someone down at the bank, next to the other wounded soldiers. Someone\",\"Someone drops someone down at the bank, next to the other wounded soldiers.\",Someone,gold,\"grabs someone by the shirt, angry.\",\"stands and stares at the casket, which stands, forming beneath his toes.\",puts two rifles down the.,\"flings up a sip of water, holds the torch over the boat doors and becomes a massive tank for his fellow students.\",0\n11112,lsmdc0009_Forrest_Gump-50495,2680,Someone removes the frond to look at the wound. Someone's chest,Someone removes the frond to look at the wound.,Someone's chest,gold,is heard and open.,knits as someone tries to pull himself free.,has been blown open.,heaves as they sit on the surface.,2\n11113,lsmdc0009_Forrest_Gump-50495,2689,Someone and the other wounded soldiers wait for a rescue helicopter. Someone,Someone and the other wounded soldiers wait for a rescue helicopter.,Someone,gold,pays someone and puts the emergency ticket outside.,shoots a dart from their seats.,\"turns to someone, the back of the plane.\",looks down at someone.,3\n11114,lsmdc0009_Forrest_Gump-50495,2681,Someone's chest has been blown open. Someone,Someone's chest has been blown open.,Someone,gold,\"looks at her grave, then glowers, nods slowly, commenting on the typed notes.\",throws someone out of the door and into the ring.,looks around as he hear the voices of the enemy.,throws the bowl - shaped tray into the oven.,2\n11115,lsmdc0009_Forrest_Gump-50495,2674,Someone fires his pistol at the unseen enemy as someone pulls him away. Someone,Someone fires his pistol at the unseen enemy as someone pulls him away.,Someone,gold,\"someone, she tricks with a new shield.\",struggles to pull his in.,reaches for his weapon and kicks at the retreating attacker with his sword.,\"drops someone down at the bank, next to the other wounded soldiers.\",3\n11116,lsmdc0009_Forrest_Gump-50495,2684,Someone looks up in fear. Three planes,Someone looks up in fear.,Three planes,gold,dive down toward the jungle.,\"are apart from cars, including someone.\",have softened through the forest.,explode out of the station which are led between the two.,0\n11117,lsmdc0009_Forrest_Gump-50495,2677,Someone gets up and runs as someone yells after him. Someone,Someone gets up and runs as someone yells after him.,Someone,gold,\"drags him to the collar of the suit, snags it hard and grips someone by the scruff.\",runs through the jungle searching for someone.,sneaks with all the other students walk backstage and sings.,takes her hand and starts to dance at the fireplace.,1\n11118,lsmdc0009_Forrest_Gump-50495,2678,Someone runs through the jungle searching for someone. Someone,Someone runs through the jungle searching for someone.,Someone,gold,slows down and looks around carefully.,stares nervously at him as he makes his way into an elevator.,shakes someone's hand then steps away.,spots the flaming snatching.,0\n11119,lsmdc0009_Forrest_Gump-50495,2688,Someone carries someone to the bank of the river. Someone and the other wounded soldiers,Someone carries someone to the bank of the river.,Someone and the other wounded soldiers,gold,wait for a rescue helicopter.,tread water in the other way.,sit down from the dock.,get into the bus.,0\n11120,lsmdc0009_Forrest_Gump-50495,2679,Someone slows down and looks around carefully. Someone,Someone slows down and looks around carefully.,Someone,gold,kisses someone at the top of the neck and in the temple.,looks up as he lies on the ground.,sashays away into the courtyard.,appears on the phone with a needle.,1\n11121,lsmdc0009_Forrest_Gump-50495,2686,The fireballs explode behind him. The entire jungle area,The fireballs explode behind him.,The entire jungle area,gold,is in flames as someone runs.,clears as the skiff flies backwards.,is filled with troopers.,blocks her as it explodes and waves over its movements.,0\n11122,lsmdc0009_Forrest_Gump-50495,2687,The entire jungle area is in flames as someone runs. Someone,The entire jungle area is in flames as someone runs.,Someone,gold,carries someone to the bank of the river.,\"watches them run, picking by their roommates.\",stands with his hands in his pockets and flashes a faint smile.,picks up a metal shield and strides off.,0\n11123,lsmdc0009_Forrest_Gump-50495,2673,Someone gets up as someone yells. Someone,Someone gets up as someone yells.,Someone,gold,bobs his hips and shakes someone's hand.,fires his pistol at the unseen enemy as someone pulls him away.,shredded breeches and travels off with their oxygen masks.,\"drives away from someone, but he looks shocked.\",1\n11124,lsmdc0009_Forrest_Gump-50495,2676,\"Someone grabs someone by the shirt, angry. Someone\",\"Someone grabs someone by the shirt, angry.\",Someone,gold,dashes off down the busy street and drives away into the dark traffic.,gets off of a car into the large parking lot and hits the police button on a van.,keeps an eye on someone.,gets up and runs as someone yells after him.,3\n11125,lsmdc0009_Forrest_Gump-50495,2682,Someone looks around as he hear the voices of the enemy. Someone,Someone looks around as he hear the voices of the enemy.,Someone,gold,carries someone through the jungle.,lifts his locket from his hand and holds his wife in his hand.,begins to drift back and forth across the floor.,glances over someone's shoulder to back off.,0\n11126,lsmdc0009_Forrest_Gump-50495,2683,The roar of approaching planes is deafening. Someone,The roar of approaching planes is deafening.,Someone,gold,stares into the venom amiably beside him.,looks up in fear.,unplugs an overhead projector as someone breaks.,fills the sky like a spear.,1\n11127,anetv_9IvKkq9k81o,410,A person is seen sitting at a table and cutting out an outline on the pumpkin. The man continues cutting the pumpkin and the camera,A person is seen sitting at a table and cutting out an outline on the pumpkin.,The man continues cutting the pumpkin and the camera,gold,pans out to the man speaking to the package.,zooms in on it's face in the light and in the dark.,captures the nails on her hands.,zooms in on a pumpkin in the end.,1\n11128,anetv_9IvKkq9k81o,6324,A man is seen sitting in a chair carving a pumpkin. The man,A man is seen sitting in a chair carving a pumpkin.,The man,gold,pushes a knife along the pumpkin.,continues carving it into the pumpkin.,turns around and stops cutting the grass with a bobble.,puts on his dots and resumes clipping.,0\n11129,anetv_9IvKkq9k81o,6325,The man pushes a knife along the pumpkin. He,The man pushes a knife along the pumpkin.,He,gold,looks to the camera and continues cutting.,pushes it across the table before clipping the twigs down.,continues carving a pumpkin pumpkin in the pumpkin.,carves to see the barber again.,0\n11130,anetv_9WmsYbZl1pw,7901,\"A purple onion, celery and parsley then get chopped up individually and each individually gets thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more. A finger dips into the bowl to get a sample out and mixing\",\"A purple onion, celery and parsley then get chopped up individually and each individually gets thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more.\",A finger dips into the bowl to get a sample out and mixing,gold,continues for a bit longer.,contents onto it's bread.,tops with half cooked vegetables and sharp it.,boiling water in a spoonful pot that was now extremely heated.,0\n11131,anetv_9WmsYbZl1pw,7904,\"Some white shredded food gets thrown onto the grill and is stirred around by a black spatula. Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food\",Some white shredded food gets thrown onto the grill and is stirred around by a black spatula.,\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food\",gold,is placed and sliced with paints on it.,is scooped up and put onto the meat and cheese.,is cooker and then continues at the bottom.,end is applied onto the bread.,1\n11132,anetv_9WmsYbZl1pw,7899,An introduction of 6 different small videos of foods appear and there's text below that say's Steve's cooking. A large piece of raw meat appears on a white plate and the word Reuben,An introduction of 6 different small videos of foods appear and there's text below that say's Steve's cooking.,A large piece of raw meat appears on a white plate and the word Reuben,gold,appears on between the two men with a pan of garlic.,is peddling for a little about how to get it.,comes to the screen and original poodle.,flashes a few times on it as it's shown in various different angles.,3\n11133,anetv_9WmsYbZl1pw,7903,A small brush with melted butter begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled. Some white shredded food,A small brush with melted butter begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled.,Some white shredded food,gold,gets thrown onto the grill and is stirred around by a black spatula.,are placed on a red - cake table and then the girls more time peeps the postcards.,lie on a counter and moved to it then put the sugar part under the bowl.,\", the lid is white.\",0\n11134,anetv_9WmsYbZl1pw,7900,\"An empty large clear bowl is shown and mayonnaise, ketchup, relish, worcesterchire sauce, and hot sauce get spooned into the bowl. A purple onion, celery and parsley then get chopped up individually and each individually gets\",\"An empty large clear bowl is shown and mayonnaise, ketchup, relish, worcesterchire sauce, and hot sauce get spooned into the bowl.\",\"A purple onion, celery and parsley then get chopped up individually and each individually gets\",gold,thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more.,\"loosely cut from round, with about four bowls of pepper before it goes to a different effect.\",sharpened by lettuce and placed between it using tools until chopped like knives.,cut and add a tray of tomatoes to sharpen the knife.,0\n11135,anetv_9WmsYbZl1pw,7905,\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food is scooped up and put onto the meat and cheese. The mixed sauce from the clear bowl is then shown being spread onto the bread with a spoon and the meat, cheese and shredded white food\",\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food is scooped up and put onto the meat and cheese.\",\"The mixed sauce from the clear bowl is then shown being spread onto the bread with a spoon and the meat, cheese and shredded white food\",gold,items together and two more and spirits are shaped on top to the mix.,\"is put onto the bread, topped with the other bread, and then sliced in half diagonally.\",is placed in the pan with a bolt of bread.,is grilled on the into the top.,1\n11136,anetv_9WmsYbZl1pw,7897,There's a sandwich that is still whole and has been cut in half into a triangular shape and white words pop up on the screen noting that it's a Reuben sandwich. A man in the kitchen appears and he's putting seasonings into a pan and he,There's a sandwich that is still whole and has been cut in half into a triangular shape and white words pop up on the screen noting that it's a Reuben sandwich.,A man in the kitchen appears and he's putting seasonings into a pan and he,gold,takes it and begins mixing it to replace the best pasta dish.,stirs the ingredients for properly.,is then shown socks on top of it.,starts swishing the pan around.,3\n11137,anetv_9WmsYbZl1pw,7902,A finger dips into the bowl to get a sample out and mixing continues for a bit longer. A small brush with melted butter,A finger dips into the bowl to get a sample out and mixing continues for a bit longer.,A small brush with melted butter,gold,\"is shown, puts all the ingredients on the plate and blends it together.\",is being added to the bowl.,begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled.,\"is bottled and the edges are put in the oven, added to the bowl.\",2\n11138,anetv_4ImpZRtbzYw,5578,The girl is then seen outside sanding down the table and leads into her painting the table. Several shots of the table,The girl is then seen outside sanding down the table and leads into her painting the table.,Several shots of the table,gold,are shown followed by the person decorating in various colors and braids while others gift theirs to the camera.,are shown as well as a woman moving up and down with her hands standing on each side of a bar.,\"are shown as well as lists drawn out, paper being rolled, and laid out onto the table.\",are shown followed by shows fans in large glasses sitting on the floor.,2\n11139,anetv_4ImpZRtbzYw,2721,She then sands down the table and dips a brush into paint. She then,She then sands down the table and dips a brush into paint.,She then,gold,cleans her brush on a nail and gives up a final product.,sprays the baking soda with a sponge and trails down the top of it.,paints all around the table while sanding more and finally laying down wax.,measures it in white paper and places it on the beams.,2\n11140,anetv_4ImpZRtbzYw,2720,A woman is seen speaking to the camera and shows off a wooden table. She then,A woman is seen speaking to the camera and shows off a wooden table.,She then,gold,holds the pumpkin onto her mobile and speaks to the camera.,presents herself to another person.,puts on dresser and begins using a hula hoop using her hands and coming to a surface.,sands down the table and dips a brush into paint.,3\n11141,anetv_4ImpZRtbzYw,5579,\"Several shots of the table are shown as well as lists drawn out, paper being rolled, and laid out onto the table. Finally the table\",\"Several shots of the table are shown as well as lists drawn out, paper being rolled, and laid out onto the table.\",Finally the table,gold,is shown as the man lays back in place while a woman walks into it.,is shown with a person moving a circle from underneath.,is shown then the person towels a rag to clean the wipe all over the floor and with a towel.,is complete and is shown again inside next to a dress while the woman finishes speaking.,3\n11142,anetv_4ImpZRtbzYw,5577,A woman is seen speaking to the camera and pans around an old table. The girl,A woman is seen speaking to the camera and pans around an old table.,The girl,gold,is then seen outside sanding down the table and leads into her painting the table.,begins moving up and down and moving her hands up and down.,holds up on the rag and shows how to solve a rubix cube.,moves the sheets all along the fire while the camera captures her on the side.,0\n11143,anetv_4ImpZRtbzYw,2722,She then paints all around the table while sanding more and finally laying down wax. She,She then paints all around the table while sanding more and finally laying down wax.,She,gold,continues to sit on the cake and sits next to the camera looking away from the camera and ends by looking at the camera.,measures the table and cuts out paper to put on top and shows off the table in the end her speaking more.,begins by using the paint in a paper cut while still looking out.,continues wrapping the present together end by speaking to one another.,1\n11144,anetv_K-t4tUTq_Ik,12205,People are standing on a tennis court. They,People are standing on a tennis court.,They,gold,are playing a game of tennis.,throw the soccer ball down the center of the court.,begin playing a game of badminton.,play pool on the court.,0\n11145,anetv_K-t4tUTq_Ik,12206,They are playing a game of tennis. A man in a white shirt,They are playing a game of tennis.,A man in a white shirt,gold,is standing next to him.,hits the tennis ball.,is sitting next to her.,is playing the bass drum.,1\n11146,anetv_hzU9--vcDMY,5537,\"Men duck behind trees, plywood walls and fences on a paintball field. Men\",\"Men duck behind trees, plywood walls and fences on a paintball field.\",Men,gold,are in distress by other countries.,shoot back and forth at each other.,notice the neon sign above them.,are lifted in front of someone.,1\n11147,anetv_hzU9--vcDMY,5538,Men shoot back and forth at each other. Men,Men shoot back and forth at each other.,Men,gold,sale on a wall scored in slow motion.,are across the park.,run and duck looking for a place to hide.,cheering to the man.,2\n11148,anetv_hzU9--vcDMY,5536,A man puts on paintball gear in a mirror grabs his gun and runs through the snow. Men,A man puts on paintball gear in a mirror grabs his gun and runs through the snow.,Men,gold,continues boiling with the camera.,standing on a sandy field making water skies.,are shown swimming in the snow as the man pours water into a large black cup.,\"duck behind trees, plywood walls and fences on a paintball field.\",3\n11149,anetv_hzU9--vcDMY,5539,Men run and duck looking for a place to hide. The men,Men run and duck looking for a place to hide.,The men,gold,shake hands and the men talk.,sit on either side of the wall looking for each other then stand up and face each other.,start to jump and the men get in the back.,line around in the dirt measuring and bow to each other.,1\n11150,anetv_hzU9--vcDMY,5540,The men sit on either side of the wall looking for each other then stand up and face each other. A man,The men sit on either side of the wall looking for each other then stand up and face each other.,A man,gold,wearing gray sweater walks across a set of stairs and plays bagpipes.,saunters with a stick spray which has fallen on his head.,slumps onto the man's legs and the people look on each other's faces in the room.,talks in front of a paintball park sign.,3\n11151,anetv_fqoEZaCd7hU,5934,A person with no arms is seen sitting in a chair and playing the guitar with his feet. He,A person with no arms is seen sitting in a chair and playing the guitar with his feet.,He,gold,continues playing while singing along and moving his feet up and down the guitar.,leads into another clips of other men playing and laughing and showing clips of him winning.,drags him into the water and paddles out.,continues to speak while moping and pushing his clothes all around.,0\n11152,anetv_UXX8k68S3_g,11212,A person is seen drawing on the side of a pumpkin and then leads into cutting out the outlines. The person then,A person is seen drawing on the side of a pumpkin and then leads into cutting out the outlines.,The person then,gold,holds up the pumpkin and cuts it from a square plate.,puts noodles into a smaller bowl.,peeps under the pumpkin while pointing to pumpkin sling and looking around the yard.,wipes a rag all over the pumpkin cleaning off its sides.,3\n11153,anetv_ZZ71FIfxX-c,18646,\"Scenes of two men playing beer pong are shown, interspersed with the two talking to each other exaggeratedly from across the table. One of the men\",\"Scenes of two men playing beer pong are shown, interspersed with the two talking to each other exaggeratedly from across the table.\",One of the men,gold,throws a ball landed in another room.,puts water and numbers into a bucket and other men play beer pong.,uses the cross to both of the men as a hint of a man's success.,drinks from a cup and falls down unconscious on the floor.,3\n11154,anetv_ZZ71FIfxX-c,18647,One of the men drinks from a cup and falls down unconscious on the floor. The second man,One of the men drinks from a cup and falls down unconscious on the floor.,The second man,gold,\"walks to the ice, then the breech and the man stand on the other side square and gets someone on the ice.\",\"kicks the first man, places a ball on the first man's chest, an leaves.\",rolls himself up onto the bench.,pours a bottle on the surfer's stripe and he swims very slowly with the other level.,1\n11155,anetv_ZZ71FIfxX-c,4748,The second guy makes shot while holding his hand over his eyes. The first guy drinks a beer then passes out and the second guy,The second guy makes shot while holding his hand over his eyes.,The first guy drinks a beer then passes out and the second guy,gold,starts to pay him out.,raises left and over and knocks against the pinata.,helps him from his mouth.,puts a pong ball on his chest before leaving.,3\n11156,anetv_ZZ71FIfxX-c,4746,Another man appears at the other end of the table then the men speak. The second man,Another man appears at the other end of the table then the men speak.,The second man,gold,gets a bag out.,magically has two pong balls in his hands then magically adds 10 cups to the table for beer pong.,\"kicks off the second man, then the child still goes.\",walks away laughing of his big hand and the man holds another bottle of mouthwash.,1\n11157,anetv_ZZ71FIfxX-c,4747,The second guy makes shot after shot and the first guy drinks beers. The second guy,The second guy makes shot after shot and the first guy drinks beers.,The second guy,gold,looks at the floor as listlessly interviews while talk about it.,tries to hit balls in the ice cup.,gets it and winces in excitement.,makes shot while holding his hand over his eyes.,3\n11158,anetv_qVy_WDpLHRM,12832,She begins vacuuming the carpet. She,She begins vacuuming the carpet.,She,gold,grabs the mop and starts scrubbing down the back of the hose.,turns her back to show off her work.,unrolls the wallpaper with a cloth.,takes off the hose attachment and cleans a lamp and the stairs.,3\n11159,anetv_qVy_WDpLHRM,12833,She takes off the hose attachment and cleans a lamp and the stairs. She,She takes off the hose attachment and cleans a lamp and the stairs.,She,gold,turns the toilet on a blue rag and shows how to use the surface.,empties the filter of the vacuum into the trash can.,put the object into a washer and put the temperature on a foam.,is being patted sitting on a table and she reaches into the drawer with a tool while a smaller fish take breath.,1\n11160,anetv_qVy_WDpLHRM,12831,A woman is standing behind a vacuum. She,A woman is standing behind a vacuum.,She,gold,puts oil on it.,is swiping two leaves off of him.,mixes the wood on to the wall and starts nails.,begins vacuuming the carpet.,3\n11161,lsmdc3082_TITANIC1-38590,15552,\"Onrushing water surges up an empty corridor, splintering furniture and knocking doors off their hinges. Some passengers\",\"Onrushing water surges up an empty corridor, splintering furniture and knocking doors off their hinges.\",Some passengers,gold,\"leap off the back of the titanic, which is now tilted up several stories above the ocean surface.\",on a coat stand behind them.,\"are grappling underneath one of the bathroom windows, revealing a sunlit bed.\",\"step down, including the young child.\",0\n11162,lsmdc3082_TITANIC1-38590,15561,\"Several kneeling people grab one of the priest's hand. Shivering, someone\",Several kneeling people grab one of the priest's hand.,\"Shivering, someone\",gold,slams someone against the docks.,peers back at the dead creature.,\"fires a club at his brother, then spots people running beside him.\",clings to someone as she looks down at the sinking ship.,3\n11163,lsmdc3082_TITANIC1-38590,15498,\"Carrying their instruments, three of the quartet members walk away as people run past. Someone, the violin player\",\"Carrying their instruments, three of the quartet members walk away as people run past.\",\"Someone, the violin player\",gold,takes a step toward himself.,pats someone's shoulder.,approaches the fire firing up the center of the court to join them.,places his instrument against his neck and resumes playing.,3\n11164,lsmdc3082_TITANIC1-38590,15504,\"In the smoking room, someone checks his pocket watch as a glass slides off the mantle. He\",\"In the smoking room, someone checks his pocket watch as a glass slides off the mantle.\",He,gold,\"eyes someone skeptically, then hugs her lips anxiously.\",cuts the top of a grave queen.,remains watches tv at the restaurant.,opens a clock on the mantle and adjusts the time.,3\n11165,lsmdc3082_TITANIC1-38590,15503,\"Water pours in beneath the door. In the smoking room, someone\",Water pours in beneath the door.,\"In the smoking room, someone\",gold,stirs a few refills.,checks his pocket watch as a glass slides off the mantle.,walks to the table with a tray of food.,sees two young girls staring fives.,1\n11166,lsmdc3082_TITANIC1-38590,15562,\"Shivering, someone clings to someone as she looks down at the sinking ship. Her breath\",\"Shivering, someone clings to someone as she looks down at the sinking ship.\",Her breath,gold,is loose in the tank.,smokes in the cold air.,is reflected in the empty glass.,forms a swirl of flames.,1\n11167,lsmdc3082_TITANIC1-38590,15529,\"Someone climbs on to the high side of the capsizing lifeboat. All along the sinking ship, people\",Someone climbs on to the high side of the capsizing lifeboat.,\"All along the sinking ship, people\",gold,\"make their way past someone, someone slumped on someone's boat deck.\",struggle to hang on to railings or pull themselves onto pieces of floating debris.,\"sit with it, standing beside it.\",lead the puck over the rail.,1\n11168,lsmdc3082_TITANIC1-38590,15539,The suction slams him against the side of the ship. But he,The suction slams him against the side of the ship.,But he,gold,appears stock - still.,lies half - bloody on earth in his bunk.,\"quickly backs away, smashing someone onto a parachute and hatch.\",braces himself against the window frame.,3\n11169,lsmdc3082_TITANIC1-38590,15577,\"Also in a lifeboat someone turns away from the carnage and squeezes his eyes shut. In the engine room, a crewman\",Also in a lifeboat someone turns away from the carnage and squeezes his eyes shut.,\"In the engine room, a crewman\",gold,reaches towards a sparking circuit breaker.,holds a flat - brimmed hat on a luggage rack.,leads someone into the hauled office followed by the police officer.,streams down the helicopter's open hatch.,0\n11170,lsmdc3082_TITANIC1-38590,15520,Someone backs away from the rushing water. Someone and others,Someone backs away from the rushing water.,Someone and others,gold,get into the tarp of the boat.,climb out of view.,slice at the thick ropes.,run out the door with their luggage.,2\n11171,lsmdc3082_TITANIC1-38590,15568,People slide down the slanted deck. Someone's eyes,People slide down the slanted deck.,Someone's eyes,gold,are moving toward the low ceiling.,dangle limply over his back.,lift stone as a figure draws near.,widen as he watches.,3\n11172,lsmdc3082_TITANIC1-38590,15544,\"In one of the lifeboats, someone beats off paniced passengers with an oar. Several cables\",\"In one of the lifeboats, someone beats off paniced passengers with an oar.\",Several cables,gold,snap apart under the water.,fly in the cable deck itself.,fall off of the fall.,holding a funnel snap and flail against the water like whips.,3\n11173,lsmdc3082_TITANIC1-38590,15526,\"In the wheelhouse, someone stares wide - eyed as water covers the glass windows. Water\",\"In the wheelhouse, someone stares wide - eyed as water covers the glass windows.\",Water,gold,has lifted to rest on the deck.,stands as a spotlight move to the raindrops shining them over their heads.,runs across the bay.,gushes in and engulfs him.,3\n11174,lsmdc3082_TITANIC1-38590,15509,\"As people scramble about, someone unties the life belt on someone's body. People\",\"As people scramble about, someone unties the life belt on someone's body.\",People,gold,find other fighting thugs.,\"screams as the boy swoops after him but the vampire blocks and climbs hard, stabbing someone in the groin.\",rush away from the rising water.,repels upward onto his shoulders and lays him on the ground.,2\n11175,lsmdc3082_TITANIC1-38590,15521,\"Someone and others slice at the thick ropes. Inside, people\",Someone and others slice at the thick ropes.,\"Inside, people\",gold,stroll through a row of spaced homes.,run from thin soldiers with their spears.,walk past a registration store.,slip and fall near the grand staircase.,3\n11176,lsmdc3082_TITANIC1-38590,15500,A viola player glances back then returns and joins in. The bass player,A viola player glances back then returns and joins in.,The bass player,gold,returns to the waitress's right side where the slip stand with the dad on hand.,serves the ball to the left.,leaves his hands under the water.,carries his bass back then stands on the other side of someone.,3\n11177,lsmdc3082_TITANIC1-38590,15535,Someone climbs over a railing and helps someone climb over. They,Someone climbs over a railing and helps someone climb over.,They,gold,\"descend the staircase, following the jump off the sidecar.\",drop onto the deck below.,\"duck down among the oncoming trees, still carrying the collapsible.\",show shots of the vehicle hitting an oar tank.,1\n11178,lsmdc3082_TITANIC1-38590,15572,Several people climb over the railing at the back of the ship. One man,Several people climb over the railing at the back of the ship.,One man,gold,\"falls over, finishing another person.\",jumps onto a board and listens without paddling.,\"jumps and free falls into the icy water, where small groups of survivors cling to floating debris.\",watches two pilots and begin to raft across the road.,2\n11179,lsmdc3082_TITANIC1-38590,15515,Water rushes over the listing ship causing some people to fall into the water. People,Water rushes over the listing ship causing some people to fall into the water.,People,gold,struggle to free a lifeboat from its falls.,scramble through the water toward their snowboards.,walk with fluorescent lights.,are on a plane across the bay.,0\n11180,lsmdc3082_TITANIC1-38590,15570,\"A brunette woman slips out of a man's grasp and slides down the deck on her stomach. All along the Titanic, people\",A brunette woman slips out of a man's grasp and slides down the deck on her stomach.,\"All along the Titanic, people\",gold,stare out from the waves.,\"share a look as the plane sinks further into the lifeboat, hovering at its edge.\",\"dangle from ropes, spill from railings, or slide down into the ocean.\",splash water and wave to her.,2\n11181,lsmdc3082_TITANIC1-38590,15554,\"Gripping someone's hand, someone weaves through the crowd. They\",\"Gripping someone's hand, someone weaves through the crowd.\",They,gold,\"and someone are grapple for the ball, which being played on the back of the bank and fleeing.\",hem bumps the boyfriend parker's shoulder.,shake their bearded mates.,move to a railing and watch as several passengers plunge overboard.,3\n11182,lsmdc3082_TITANIC1-38590,15540,But he braces himself against the window frame. He,But he braces himself against the window frame.,He,gold,starts running down the track into deep.,opens his door and sees people watching the accident.,stands with someone at the handkerchief water chamber.,reaches up for a railing but slips.,3\n11183,lsmdc3082_TITANIC1-38590,15580,\"Inside the ship, a ceiling collapses as several support columns fail. A crack\",\"Inside the ship, a ceiling collapses as several support columns fail.\",A crack,gold,opens down the side of the titanic.,pops out of frame and heads off.,stabs pumpkins upside down.,appears as the men lie at the door.,0\n11184,lsmdc3082_TITANIC1-38590,15524,\"Outside, people fall into the water. Others\",\"Outside, people fall into the water.\",Others,gold,see closely on the snow covered faces.,sit ahead and drive up the massive residential area of the abandoned cottage.,men watch in the darkness as more lava outward like a pitcher of lava.,run up the deck from the approaching water.,3\n11185,lsmdc3082_TITANIC1-38590,15564,\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier. Her gauzy dress\",\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier.\",Her gauzy dress,gold,forms out a silk robe.,billowing in the currents.,breaks down and turns over.,jumps up and flees.,1\n11186,lsmdc3082_TITANIC1-38590,15543,The ship's baker helps her up. Someone and someone,The ship's baker helps her up.,Someone and someone,gold,get out of the ship and land the top of the breaking dance.,reunite in the crowd.,make their way down the corridor.,walk up at her.,1\n11187,lsmdc3082_TITANIC1-38590,15531,\"Several people run toward the back end of the Titanic, which is now tilted up at a slight angle. Some passengers\",\"Several people run toward the back end of the Titanic, which is now tilted up at a slight angle.\",Some passengers,gold,drift along the railroad tracks on the opposite corner of the hangar.,hang from ropes or leap into the icy sea.,around dotted places lead out of the waters in water.,try to pull themselves towards what looks like the rest of the story.,1\n11188,lsmdc3082_TITANIC1-38590,15542,\"He turns and swims toward open water. Meanwhile, someone\",He turns and swims toward open water.,\"Meanwhile, someone\",gold,drops on to a lower deck.,dives onto a couch then dives into the pool.,kisses a volunteer in a brown - walled corridor.,\"slides down a waterfall with jars: admiration, beads, and stalls, and recognizes him.\",0\n11189,lsmdc3082_TITANIC1-38590,15557,\"A few dozen people tread water near the propellers, which have now risen completely out of the water. Someone\",\"A few dozen people tread water near the propellers, which have now risen completely out of the water.\",Someone,gold,paddling buoys the speed of the wave as it moves closer.,\"pulls someone up the poop deck, which is now slanted at about a 45 - degree angle.\",'s rear is suspended in the environment as they approach staff all approaching their instructor.,\"'s head presses in the back of someone's suv, and someone screams squirting horror through the water.\",1\n11190,lsmdc3082_TITANIC1-38590,15507,The man kisses the woman. A red - haired woman,The man kisses the woman.,A red - haired woman,gold,raps on the door with her hands up.,steps to the edge.,sits with his back to the couch.,leans over two young children lying in a bed.,3\n11191,lsmdc3082_TITANIC1-38590,15511,The young girl in someone's arm looks around herself wide - eyed. People,The young girl in someone's arm looks around herself wide - eyed.,People,gold,follow her the directions.,work to right the overturned lifeboat.,stare at each other.,sits on the edge of the bed.,1\n11192,lsmdc3082_TITANIC1-38590,15528,\"Someone slices through the rope with his pocketknife partially freeing the boat, but causing it to tip on to its side. Someone\",\"Someone slices through the rope with his pocketknife partially freeing the boat, but causing it to tip on to its side.\",Someone,gold,smirks at someone's resume.,stares down at someone who is peaceful on rocks.,climbs on to the high side of the capsizing lifeboat.,\"runs to the shaft of the center and hits it against the wall, meeting chest weeps, squishing away from the curls.\",2\n11193,lsmdc3082_TITANIC1-38590,15513,One sailor slides down a rope. Someone,One sailor slides down a rope.,Someone,gold,puts on the life belt as water surges around him.,plunges into a water bunk behind a fire escape.,gets off the water and jumps down to the railing next to someone.,grabs into another hold.,0\n11194,lsmdc3082_TITANIC1-38590,15533,Someone and someone make their way to a railing near the rear of the ship and peer over the side. Someone,Someone and someone make their way to a railing near the rear of the ship and peer over the side.,Someone,gold,joins them as someone gracefully descends to the underside of the sea.,grabs someone's hand and leads her through the crowd.,\"snuggles up alongside them, her head lulls around her own shoulder.\",pulls back towards an old dark clapboard house.,1\n11195,lsmdc3082_TITANIC1-38590,15502,He gazes through a window at the rising water then places one hand on the helm. Water,He gazes through a window at the rising water then places one hand on the helm.,Water,gold,\"into the abyss, someone places a hand down behind his back.\",pours in beneath the door.,\", he runs both hands over his.\",\", someone reaches over to someone, then swims to the edge of the pool.\",1\n11196,lsmdc3082_TITANIC1-38590,15558,\"Someone pulls someone up the poop deck, which is now slanted at about a 45 - degree angle. They\",\"Someone pulls someone up the poop deck, which is now slanted at about a 45 - degree angle.\",They,gold,grab onto the railing at the exact spot they first met.,dashes to the side of the booth and turns to see the abdomen.,\"stop a few feet from someone, who a shark pass behind him.\",tread as he peers in the car direction.,0\n11197,lsmdc3082_TITANIC1-38590,15553,\"Some passengers leap off the back of the Titanic, which is now tilted up several stories above the ocean surface. Gripping someone's hand, someone\",\"Some passengers leap off the back of the Titanic, which is now tilted up several stories above the ocean surface.\",\"Gripping someone's hand, someone\",gold,helps someone to the canvas.,gives it a kiss.,weaves through the crowd.,turns to face him.,2\n11198,lsmdc3082_TITANIC1-38590,15512,People work to right the overturned lifeboat. One sailor,People work to right the overturned lifeboat.,One sailor,gold,slides down a rope.,flaps her boat and drags on furniture.,climbs hard besides a sailor.,pushes them through a ship and falls into a cable.,0\n11199,lsmdc3082_TITANIC1-38590,15525,\"Others run up the deck from the approaching water. In the wheelhouse, someone\",Others run up the deck from the approaching water.,\"In the wheelhouse, someone\",gold,stares wide - eyed as water covers the glass windows.,fishes someone against someone clothesline.,\"gets cautiously out of another water, slowly, crouches, as someone aims out of the hole on captain ridge.\",reaches into the sack and gets into a truck full of armed vehicles.,0\n11200,lsmdc3082_TITANIC1-38590,15518,Someone hands the girl to a woman. People,Someone hands the girl to a woman.,People,gold,stand for the camera that is in profile.,wade toward the stern as the titanic sinks.,take to them to cheer him off.,are kissing on the back in a green wig.,1\n11201,lsmdc3082_TITANIC1-38590,15532,Some passengers hang from ropes or leap into the icy sea. Someone and someone,Some passengers hang from ropes or leap into the icy sea.,Someone and someone,gold,pose as the brunette woman prepares to leave.,make their way to a railing near the rear of the ship and peer over the side.,continue leading the way to the water.,are ushered into the sphere.,1\n11202,lsmdc3082_TITANIC1-38590,15563,\"Someone hugs her tight and kisses her forehead. Inside a submerged portion of the ship, a woman's lifeless body\",Someone hugs her tight and kisses her forehead.,\"Inside a submerged portion of the ship, a woman's lifeless body\",gold,is encased in chemical against another knee.,runs deeper into the predator's tent.,drifts beneath a large chandelier.,sits sprawled on the island.,2\n11203,lsmdc3082_TITANIC1-38590,15551,\"Water gushes in through the glass skylights, sweeping people across tiled floors, or pinning them against wooden railings. Onrushing water\",\"Water gushes in through the glass skylights, sweeping people across tiled floors, or pinning them against wooden railings.\",Onrushing water,gold,\"falls onto the cover of their caps, then drops out, leaving several dust and debris on the ground below.\",drips down someone surrounding them and disappears.,\"surges up an empty corridor, splintering furniture and knocking doors off their hinges.\",comes down through to prevent the coach trying to defend someone that someone knocks them off.,2\n11204,lsmdc3082_TITANIC1-38590,15541,He reaches up for a railing but slips. He,He reaches up for a railing but slips.,He,gold,\"steps through the bottom, as back above the stage.\",turns and swims toward open water.,chases her as she runs down the sole.,stands right behind the track and reaches a long white sedan behind him.,1\n11205,lsmdc3082_TITANIC1-38590,15501,The cello player also returns. He,The cello player also returns.,He,gold,gazes through a window at the rising water then places one hand on the helm.,\"flashes a fencing smile, slow to action.\",rushes across the finish line where local women walk from behind.,finds a way to keep hold.,0\n11206,lsmdc3082_TITANIC1-38590,15545,Several cables holding a funnel snap and flail against the water like whips. Someone's eyes,Several cables holding a funnel snap and flail against the water like whips.,Someone's eyes,gold,widen as the huge funnel tips over.,widen as a cop fires a firework in his face.,widen as the flames pull free.,are closed on the rocking trophy.,0\n11207,lsmdc3082_TITANIC1-38590,15548,The impact creates a wave which washes away several people. A man climbs into someone's lifeboat but someone,The impact creates a wave which washes away several people.,A man climbs into someone's lifeboat but someone,gold,takes his keys and looks down at.,pushes him back into the ocean.,attempts to get off the prow.,is too far away.,1\n11208,lsmdc3082_TITANIC1-38590,15505,He opens a clock on the mantle and adjusts the time. He,He opens a clock on the mantle and adjusts the time.,He,gold,pulls the notebook out and switches off the address.,\"is at first, silhouetted against the cold sun, then slowly opens the door and walks inside.\",shuts the clock then leans against the mantle gazing downward.,resumes his work as he drops restlessly into his rock houses.,2\n11209,lsmdc3082_TITANIC1-38590,15514,Someone puts on the life belt as water surges around him. Water,Someone puts on the life belt as water surges around him.,Water,gold,swims through his skin.,\", someone goes through a tunnel.\",comes across the river.,rushes over the listing ship causing some people to fall into the water.,3\n11210,lsmdc3082_TITANIC1-38590,15547,\"Swimming in the water with several others, someone looks up as the giant funnel falls on to him. The impact\",\"Swimming in the water with several others, someone looks up as the giant funnel falls on to him.\",The impact,gold,sends the torch flying into the night sky.,throw orange scoop of darkness towards ships.,becomes very violently glassy as the giant races up to someone and looms out of view.,creates a wave which washes away several people.,3\n11211,lsmdc3082_TITANIC1-38590,15567,\"A lifeboat full of people rows away from the rear of the ship, which rises several stories into the night sky. People\",\"A lifeboat full of people rows away from the rear of the ship, which rises several stories into the night sky.\",People,gold,slide down the slanted deck.,emerges from the great hall and windows to a blackface balcony.,\", perusing someone, kneel to the edge of the circle, paddle away from the water.\",steps onto an forest road and starts toward the new - haired passage of the complex.,0\n11212,lsmdc3082_TITANIC1-38590,15530,\"All along the sinking ship, people struggle to hang on to railings or pull themselves onto pieces of floating debris. Several people\",\"All along the sinking ship, people struggle to hang on to railings or pull themselves onto pieces of floating debris.\",Several people,gold,\"run toward the back end of the titanic, which is now tilted up at a slight angle.\",rush to the ship sprawls over the bay.,\", minas suddenly, and stare from one another to kids.\",fly into the sky.,0\n11213,lsmdc3082_TITANIC1-38590,15516,People struggle to free a lifeboat from its falls. Someone,People struggle to free a lifeboat from its falls.,Someone,gold,opens a knife and cuts at a rope.,gulps hard as he gives a parting glance at someone.,clambers over the cliff face.,brings it up to someone's head.,0\n11214,lsmdc3082_TITANIC1-38590,15527,\"Water gushes in and engulfs him. Outside on one of the decks, passengers\",Water gushes in and engulfs him.,\"Outside on one of the decks, passengers\",gold,erupt throughout the compound.,hang one hand a third time and fell six feet through a row of other boats.,wade through waist deep water to a lifeboat in the middle of the ship.,stare out as a huge sky splashes at the end of the canyon.,2\n11215,lsmdc3082_TITANIC1-38590,15537,\"As the water rises, some are carried up the staircase while others are trapped against the ceiling of the room below. Wearing a life vest, someone\",\"As the water rises, some are carried up the staircase while others are trapped against the ceiling of the room below.\",\"Wearing a life vest, someone\",gold,steps on the control machine.,crosses to a foosball table grinning.,swims pass one of the broken windows.,crawls off onto the bed.,2\n11216,lsmdc3082_TITANIC1-38590,15510,People rush away from the rising water. The young girl in someone's arm,People rush away from the rising water.,The young girl in someone's arm,gold,looks around herself wide - eyed.,joins underwater with a younger someone behind her.,crouches on the bench.,\"throws an alien to him, who tosses it down to a base of dirt leaning against the wall.\",0\n11217,lsmdc3082_TITANIC1-38590,15566,\"Elsewhere, stacks of plates slide off their shelves and smash on the floor. A lifeboat full of people\",\"Elsewhere, stacks of plates slide off their shelves and smash on the floor.\",A lifeboat full of people,gold,watch as people dance out.,\"rows away from the rear of the ship, which rises several stories into the night sky.\",lies back at the bottom.,hurtle through clouds after some canyon.,1\n11218,lsmdc3082_TITANIC1-38590,15519,People wade toward the stern as the Titanic sinks. Someone,People wade toward the stern as the Titanic sinks.,Someone,gold,\"falls over someone, but not even in the mud.\",finds someone holding someone then wanders past the cliff's edge deck.,goes and shoots someone with a smoldering look.,backs away from the rushing water.,3\n11219,lsmdc3082_TITANIC1-38590,15576,\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance. Also in a lifeboat someone\",\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance.\",Also in a lifeboat someone,gold,turns away from the carnage and squeezes his eyes shut.,\"soars onto the ship deck, furrowing her veil, her hair pulled back.\",sinks to the sand of his mother who raise the head and look at him.,scans the water and sets it on a sea of floating donuts.,0\n11220,lsmdc3082_TITANIC1-38590,15522,\"Inside, people slip and fall near the grand staircase. Someone wearing a top hat and formal wear\",\"Inside, people slip and fall near the grand staircase.\",Someone wearing a top hat and formal wear,gold,and limps onto the sidewalk.,slippers as he races circles.,are tentatively drawn together before him.,sits in a chair watching with wide eyes.,3\n11221,lsmdc3082_TITANIC1-38590,15549,A man climbs into someone's lifeboat but someone pushes him back into the ocean. Someone and someone,A man climbs into someone's lifeboat but someone pushes him back into the ocean.,Someone and someone,gold,\"in the cockpit, then climb out of the lifeboat.\",walk up the sunken gangplank netting as tree goers are parked nearby.,continue to fight their way through the crowd which slowly funnels up another staircase.,soar up to the helipad on the lower deck.,2\n11222,lsmdc3082_TITANIC1-38590,15546,\"Someone's eyes widen as the huge funnel tips over. Swimming in the water with several others, someone\",Someone's eyes widen as the huge funnel tips over.,\"Swimming in the water with several others, someone\",gold,looks up as the giant funnel falls on to him.,moves up at them.,sees several smiling warriors in her scuba chamber as one lifeboat crashes down sliding below.,pushes a cramped boat across the way.,0\n11223,lsmdc3082_TITANIC1-38590,15573,\"One man jumps and free falls into the icy water, where small groups of survivors cling to floating debris. The baker\",\"One man jumps and free falls into the icy water, where small groups of survivors cling to floating debris.\",The baker,gold,\"gives a hopeful inlet dance before someone, misty, watches him buy a few times, then continues to walk.\",pulls a flask out of his pocket and takes a drink.,uses the paddles to navigate the titanic buildings in the current.,\"helps the woman downstream both to her fingertips, then falls to the bottom of it.\",1\n11224,lsmdc3082_TITANIC1-38590,15517,Someone opens a knife and cuts at a rope. Someone,Someone opens a knife and cuts at a rope.,Someone,gold,is also trimmed by the horse.,hands the girl to a woman.,stuffs the diary in his box.,drags someone's hair back into her hand with her own.,1\n11225,lsmdc3082_TITANIC1-38590,15499,\"Someone, the violin player places his instrument against his neck and resumes playing. A viola player\",\"Someone, the violin player places his instrument against his neck and resumes playing.\",A viola player,gold,\"walks down the street behind him, with a bewildered sound leading to him.\",\"holds his hand and ignores his rhythm, staring straight towards the rocking child set against the wall.\",glances back then returns and joins in.,enters his house dressed in white shorts while a man joins her friend and glances at his empty hand.,2\n11226,lsmdc3082_TITANIC1-38590,15538,\"Wearing a life vest, someone swims pass one of the broken windows. The suction\",\"Wearing a life vest, someone swims pass one of the broken windows.\",The suction,gold,caresses his ankles and legs easily.,disappears as much as as dust out of someone's eyes.,slams him against the side of the ship.,slide down the other's shoulder into someone's study.,2\n11227,lsmdc3082_TITANIC1-38590,15574,The baker pulls a flask out of his pocket and takes a drink. Someone,The baker pulls a flask out of his pocket and takes a drink.,Someone,gold,looks up from pier heights and smiles.,slouches and ushers his men out through the crowd.,wraps his arms around someone as she grips on to the railing.,steps towards the apartment and takes a step with someone.,2\n11228,lsmdc3082_TITANIC1-38590,15571,\"All along the Titanic, people dangle from ropes, spill from railings, or slide down into the ocean. Several people\",\"All along the Titanic, people dangle from ropes, spill from railings, or slide down into the ocean.\",Several people,gold,climb over the railing at the back of the ship.,move into the water to try out splashes.,climb rails and go up to the opposite side of the road.,\"hold on, screaming, grabbing them, swinging their arms and throwing each other up and down.\",0\n11229,lsmdc3082_TITANIC1-38590,15559,They grab onto the railing at the exact spot they first met. Water,They grab onto the railing at the exact spot they first met.,Water,gold,formation before the opposing team hidden below the uneven displays.,\"down, they fall down the top of the lifeboat, deep in the water with someone.\",streams down the exposed propellers as they continue to tilt upward.,fire.,2\n11230,lsmdc3082_TITANIC1-38590,15534,Water swamps the base of the first funnel as it sinks below the ocean's surface. Someone,Water swamps the base of the first funnel as it sinks below the ocean's surface.,Someone,gold,\"lifts his visor, revealing the royal moon, which's prow.\",sucking the rest of the knife deeper.,climbs over a railing and helps someone climb over.,explode outside the impact who falls off.,2\n11231,lsmdc3082_TITANIC1-38590,15550,\"Someone and someone continue to fight their way through the crowd which slowly funnels up another staircase. Inside, people\",Someone and someone continue to fight their way through the crowd which slowly funnels up another staircase.,\"Inside, people\",gold,dash towards one another and open their tires.,cling to columns at the top of the grand staircase.,emerge into a factory area and wait for a gate.,hold onto them as they advance by a row of varied rafts.,1\n11232,lsmdc3082_TITANIC1-38590,15579,\"Blood streaming down his forehead, someone grips a side railing as it splits apart. Inside the ship, a ceiling\",\"Blood streaming down his forehead, someone grips a side railing as it splits apart.\",\"Inside the ship, a ceiling\",gold,is airplanes over a massive body of water.,collapses as several support columns fail.,fills the full view of the painting.,rises up beneath the surface.,1\n11233,lsmdc3082_TITANIC1-38590,15506,He shuts the clock then leans against the mantle gazing downward. An elderly couple,He shuts the clock then leans against the mantle gazing downward.,An elderly couple,gold,\"called light clothes joins in, shutting the door behind him.\",sits at a piano and look like a nursery accordian.,lies in bed as water streams beneath them.,sits by the elegant gardens of balmoral architecture with a group of college girls filled him.,2\n11234,lsmdc3082_TITANIC1-38590,15578,\"In the engine room, a crewman reaches towards a sparking circuit breaker. Blood streaming down his forehead, someone\",\"In the engine room, a crewman reaches towards a sparking circuit breaker.\",\"Blood streaming down his forehead, someone\",gold,holds up the photo of someone and herself.,sits up the triangular out spire and writes.,grips a side railing as it splits apart.,hands to his lips to flame.,2\n11235,anetv_M2pxaQiBbXA,12806,A man dressed in white walks back and forth by the poolside in the background. A man dressed in white,A man dressed in white walks back and forth by the poolside in the background.,A man dressed in white,gold,stands in front of a nearby fence.,walks on the side of the lane and spins off both bars.,stands up several walks behind the machines.,is shown standing in the foreground and gesturing.,3\n11236,anetv_hSq0yL5AB40,8663,Several clips of people are shown waving to the camera and watch people riding bikes. Many people,Several clips of people are shown waving to the camera and watch people riding bikes.,Many people,gold,are seen walking on horses and moving back and fourth to one another.,are seen riding on the lake.,are shown riding around on bikes around a long track and the camera panning around.,are in their shoes as well as people walking out trees and pausing to the chase.,2\n11237,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,77,The captain opens his door and punches out the attacker. They,The captain opens his door and punches out the attacker.,They,gold,move the man into the captain's cabin.,\"pauses for a moment, then turns to someone with his cane.\",coil him down.,fight under their horns.,0\n11238,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,76,Someone punches the bigger man as Snowy jumps on his back. The captain,Someone punches the bigger man as Snowy jumps on his back.,The captain,gold,opens his door and punches out the attacker.,opens his front door to a taunting tank.,grabs the air pistol from his grip.,looks down at the ancient humanoid corpse.,0\n11239,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,74,\"Someone opens the cabin door then peers at the captain. In the hall, someone\",Someone opens the cabin door then peers at the captain.,\"In the hall, someone\",gold,watches the lift as the priest give up wide - eyed.,bumps into a crew member who attacks him.,turns to a mirror.,opens the door open.,1\n11240,lsmdc3092_ZOOKEEPER-45332,14865,She holds the door for Griffins ex who climbs in with him. Someone,She holds the door for Griffins ex who climbs in with him.,Someone,gold,has never been any more.,presses a button and looks at the building digital clock.,looks up at someone who nods.,starts to follow someone's gaze.,2\n11241,lsmdc0002_As_Good_As_It_Gets-46396,5803,\"She closes the door in his face, then walks to her son and leads him back to his room. Camera\",\"She closes the door in his face, then walks to her son and leads him back to his room.\",Camera,gold,moves toward mother and son sitting on the edge of someone's bed.,\"comes out of the bathroom and grabs someone's things, walks away, and starts toward the door of his home.\",\", someone sits, smiling at someone, stows her handbag, looks down at the file.\",grabs the phone frame to see out the screen.,0\n11242,lsmdc0002_As_Good_As_It_Gets-46396,5804,Camera moves toward mother and son sitting on the edge of someone's bed. She,Camera moves toward mother and son sitting on the edge of someone's bed.,She,gold,narrows her eyes as her clock cast low on someone's neck.,holds a digital thermometer to his ear.,walks up to the stage and sings.,removes a handheld pattern from a low table light.,1\n11243,lsmdc0002_As_Good_As_It_Gets-46396,5805,She holds a digital thermometer to his ear. They both,She holds a digital thermometer to his ear.,They both,gold,count down the seconds.,look over at the dock.,look at each other then take a contact out of his eye.,stare blankly up the upholstery.,0\n11244,lsmdc1062_Day_the_Earth_stood_still-100687,9899,She descends three steps from the gallery area where she was watching and cautiously approaches the tent. She,She descends three steps from the gallery area where she was watching and cautiously approaches the tent.,She,gold,lets someone out of her hands.,crosses her knee in black.,\"steps back, takes a step toward her wedding, then twirls behind her shoulder.\",peers in and sees the man's eyes fluttering.,3\n11245,lsmdc1062_Day_the_Earth_stood_still-100687,9901,Patient is thrashing around inside the tent. Someone,Patient is thrashing around inside the tent.,Someone,gold,\"meets behind someone, waving arms on the glider.\",breaks open the door into the room open.,lets a large butt drop to the floor.,comes in and checks a monitor.,3\n11246,lsmdc1062_Day_the_Earth_stood_still-100687,9900,She peers in and sees the man's eyes fluttering. Patient,She peers in and sees the man's eyes fluttering.,Patient,gold,is thrashing around inside the tent.,leaves the confounded board.,spots a plane outside the front entrance.,steps up to the patient who picks her bag up.,0\n11247,anetv_dLLvpM-gB8Q,16037,Two kids are playing in the back of a truck. People,Two kids are playing in the back of a truck.,People,gold,are sitting in bumper cars.,are standing around a yellow ice cream truck.,\"are in an alley behind statues, long wooden sweaters and yellow sweaters.\",are walking down a street and near the other side of the street.,1\n11248,anetv_dLLvpM-gB8Q,16038,People are standing around a yellow ice cream truck. Two kids,People are standing around a yellow ice cream truck.,Two kids,gold,stop in front of the camera watching.,are sitting down on a sidewalk eating ice cream.,can walk down the yard.,are skating outdoors by end in the road watching the ground.,1\n11249,anetv_Mdt2E8KYpCg,19590,He throws the man down on top of the table as hard as he can. He,He throws the man down on top of the table as hard as he can.,He,gold,is stretching and pulling across the safety of a wire.,takes out the empty wrapping paper and begins tapes it with a cloth.,\"moves, head first, then jumps in the floor throwing the ball.\",holds up a mallet above the man on the ground.,3\n11250,anetv_Mdt2E8KYpCg,19589,He lifts him up as two other wrestlers clean off a table. He,He lifts him up as two other wrestlers clean off a table.,He,gold,enters a small white room with people lying in front the seated man.,bounce around the bars and rip across the squares on it.,goes to remove the weight of the object which falls back on the ground.,throws the man down on top of the table as hard as he can.,3\n11251,anetv_Mdt2E8KYpCg,19588,A man is helped off the floor by another wrestler. He,A man is helped off the floor by another wrestler.,He,gold,are pushed in an attempt washing in turns dancing between the men and his web like hammer dancing around it.,begins to put the ball down as large slides fastens the end.,lifts him up as two other wrestlers clean off a table.,grabs his jacket and drummer down along with the rest of the crowd.,2\n11252,anetv_Mdt2E8KYpCg,6291,A wrestler stands up outside a ring. Other wrestlers,A wrestler stands up outside a ring.,Other wrestlers,gold,are beside the floor.,lay in middle of benches.,pick him up and prepare to put him through a table.,practice arm wrestling like cameras.,2\n11253,anetv_zJNYqTVWqyY,3072,We see a small dog in a bathtub with the title over the top. A person,We see a small dog in a bathtub with the title over the top.,A person,gold,is brushing the mans hair.,talks to the camera in a scrubbing epee.,approaches a dog and sprays him with cloth.,wets the dog and puts shampoo on it.,3\n11254,anetv_zJNYqTVWqyY,3074,The person washes the dog with their hands. They,The person washes the dog with their hands.,They,gold,\"speed them, and then person dries them off with their hands.\",are in the cockpit with the vacuum attachment.,see the closing screen.,stand the dog up and wash him.,3\n11255,anetv_zJNYqTVWqyY,3073,A person wets the dog and puts shampoo on it. The person,A person wets the dog and puts shampoo on it.,The person,gold,washes the dog with their hands.,trims its black hair.,cuts the leaves in a mess.,continues walking from the bathroom and the man rinses all the clothes.,0\n11256,anetv_zJNYqTVWqyY,3075,They stand the dog up and wash him. They,They stand the dog up and wash him.,They,gold,are in front of a man cleaning a window.,rinse the soap off the dog.,take a ladies swing with a rope.,ends the play with the shower with a silky pink toothbrush.,1\n11257,anetv_zJNYqTVWqyY,3076,They rinse the soap off the dog. We,They rinse the soap off the dog.,We,gold,continues cleaning the bathroom.,see the wet little dog from above.,see a man across the ocean.,see the person on the faucet cleaning the shoe.,1\n11258,lsmdc0016_O_Brother_Where_Art_Thou-55557,3538,\"A hissing whisper from behind draws people's attention. Someone, jaw hanging open,\",A hissing whisper from behind draws people's attention.,\"Someone, jaw hanging open,\",gold,\"remain motionless, staring blankly at the peaceful night sky.\",falls on her face.,\"can only stare, as if at a ghost.\",reaches out to read.,2\n11259,lsmdc0016_O_Brother_Where_Art_Thou-55557,3535,He walks halfway down the aisle and stops several rows behind people. He,He walks halfway down the aisle and stops several rows behind people.,He,gold,\"scans the theater, then brings a whistle to his lips.\",\"walks back to work, and is joined by a girl with three fellow gymnast eventually pushing them to the benches.\",\"starts to climb up and down the steps, then stops and looks.\",\"slaps one of the men, who are already at the back of the car.\",0\n11260,lsmdc0016_O_Brother_Where_Art_Thou-55557,3537,At his whistle the back doors burst open and a line of chained men trot in at double - time. They,At his whistle the back doors burst open and a line of chained men trot in at double - time.,They,gold,walk at someone's house.,remain silently on their feet.,tread water on a jar.,turn and go through a lonely stretches.,1\n11261,lsmdc0016_O_Brother_Where_Art_Thou-55557,3534,A man carrying a shotgun enters the auditorium. He,A man carrying a shotgun enters the auditorium.,He,gold,joins someone's crew.,throws out the ladies.,walks halfway down the aisle and stops several rows behind people.,throws his open stick.,2\n11262,lsmdc0016_O_Brother_Where_Art_Thou-55557,3541,\"Someone O'Daniel sits on the veranda of the Governor's Mansion, smoking a cigar and sipping from a glass of bourbon as the evening sun goes down. With his mouth forming an o around his dropping cigar, someone\",\"Someone O'Daniel sits on the veranda of the Governor's Mansion, smoking a cigar and sipping from a glass of bourbon as the evening sun goes down.\",\"With his mouth forming an o around his dropping cigar, someone\",gold,\"pushes the imaginary scarf aside and steps closer, flashing the candle under the lights.\",\"looks sadly from one to the other, like a spectator at a particularly boring tennis match.\",puts his wings onto frame.,\"keeps his eyes trained on someone, then rises, holding it around with the glowing strainer.\",1\n11263,lsmdc0016_O_Brother_Where_Art_Thou-55557,3536,\"He scans the theater, then brings a whistle to his lips. At his whistle the back doors burst open and a line of chained men\",\"He scans the theater, then brings a whistle to his lips.\",At his whistle the back doors burst open and a line of chained men,gold,\"onto open balcony approaches the men, then someone whips a soldier with his rifle.\",\"are seen in red, followed by a large tree.\",fight over a man behind someone.,trot in at double - time.,3\n11264,lsmdc0016_O_Brother_Where_Art_Thou-55557,3539,\"Someone, jaw hanging open, can only stare, as if at a ghost. Someone\",\"Someone, jaw hanging open, can only stare, as if at a ghost.\",Someone,gold,\"stares also, but finally brings out another.\",swats his hands defensively and goes look.,turns on an edge towards a lamppost.,continues to file through the wall.,0\n11265,lsmdc0016_O_Brother_Where_Art_Thou-55557,3540,\"Someone's face remains frozen in horrified disbelief, but someone finally accepts someone's corporeal reality. Someone\",\"Someone's face remains frozen in horrified disbelief, but someone finally accepts someone's corporeal reality.\",Someone,gold,\"squints and cocks his head as if to say, what was that?\",\"grabs a napkin, then drops it over the sink and removes the slipper.\",punches someone across the face steadily.,in the position we've given him up and he is ready to measure.,0\n11266,anetv_wDFpFJ1CP9g,17948,\"Next, they show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them. As the girl wakeboards several people\",\"Next, they show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them.\",As the girl wakeboards several people,gold,are in life grips that the girl catches and jumps up on her knees and also starts doing it.,move and climb rope - board and there are many fish sitting on.,are kayaking down the hill in ice.,cheer for her from the boat.,3\n11267,anetv_wDFpFJ1CP9g,17947,\"Next, they are shown practicing how to wakeboard in a pool while the man discusses the techniques. Next, they\",\"Next, they are shown practicing how to wakeboard in a pool while the man discusses the techniques.\",\"Next, they\",gold,finishes and start moving the pieces around the floor start doing an interview together.,show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them.,swim in different cliffs to swells.,are shown posing and all over the adult with the drumsticks on their hands.,1\n11268,anetv_wDFpFJ1CP9g,17946,\"A man is explaining the key concepts behind making a child comfortable enough to wakeboard while his daughter is shown wakeboarding in a lake at the same time. Next, they\",A man is explaining the key concepts behind making a child comfortable enough to wakeboard while his daughter is shown wakeboarding in a lake at the same time.,\"Next, they\",gold,are shown practicing how to wakeboard in a pool while the man discusses the techniques.,\"are standing upright together, laughing and on doing sit ups in front of a stadium.\",'re doing some flips in the swimming pool and almost a lot of amazing people on skating.,swim the boat's waters between the dog and struggles on the boat.,0\n11269,anetv_wDFpFJ1CP9g,9940,A man in a blue shirt is standing by the water talking. The girl and guy,A man in a blue shirt is standing by the water talking.,The girl and guy,gold,are in a swimming pool practicing wake boarding.,\"pick up a red rock, then receive them.\",are sitting at the table talking about the game.,get together to sing.,0\n11270,anetv_wDFpFJ1CP9g,17949,As the girl wakeboards several people cheer for her from the boat. The video,As the girl wakeboards several people cheer for her from the boat.,The video,gold,ends with a closing view of one of the rafters falling heavily together with oars.,ends with them closing words on a screen for a video about shuffleboard.,ends with the closing graphics and captions shown at the end of the video.,shows a girl standing on a trampoline when she jumps off of the water boat.,2\n11271,anetv_wDFpFJ1CP9g,9939,A girl is wake boarding behind a boat. A man in a blue shirt,A girl is wake boarding behind a boat.,A man in a blue shirt,gold,is standing by the water talking.,is sitting down watching them.,gets stuck while his friends watch.,is standing while holding onto a small rope in his hands as he enters.,0\n11272,lsmdc0033_Amadeus-66612,5485,The wagon is galloping through the snowy streets of the city. Inside the conveyance we,The wagon is galloping through the snowy streets of the city.,Inside the conveyance we,gold,\"stand on a circular warehouse ahead, as an alien approaches with a individual's coat on.\",see people riding skateboards and throwing up lights cover range.,\"see someone wrapped in blankets, half - conscious, being held by the hospital attendants.\",\"see loads of people with military clothing, mounted instruments and feet.\",2\n11273,lsmdc0033_Amadeus-66612,5484,\"The driver whips up the horse, and the wagon dashes off through the still - falling snow. The wagon\",\"The driver whips up the horse, and the wagon dashes off through the still - falling snow.\",The wagon,gold,\"pulls away, followed with someone limping forward.\",is galloping through the snowy streets of the city.,stops and cars fall beneath the speeding car ahead of them.,is completely empty as the danger becomes a small street exiting the exit.,1\n11274,lsmdc0033_Amadeus-66612,5486,\"Inside the conveyance we see someone wrapped in blankets, half - conscious, being held by the hospital attendants. Someone\",\"Inside the conveyance we see someone wrapped in blankets, half - conscious, being held by the hospital attendants.\",Someone,gold,gets in the getaway car and retrieves it from someone.,turns slowly and looks across: spar.,sleeps resting on a nearby bench.,stares at him grimly.,3\n11275,lsmdc0019_Pulp_Fiction-56873,15368,\"Someone lowers his voice, which only serves to make him more menacing. He\",\"Someone lowers his voice, which only serves to make him more menacing.\",He,gold,bends down in front of the woman who has sunk to the floor.,is no longer playing the scraps of any of the head staff about their simple sculptures.,\"turns up the volume on the television, only his head rising away from him.\",closes the door.,0\n11276,lsmdc0019_Pulp_Fiction-56873,15367,Someone is crying and scared. Someone,Someone is crying and scared.,Someone,gold,sees the boy staring.,walks into her room.,\"lowers his voice, which only serves to make him more menacing.\",looks into her eyes.,2\n11277,anetv_tFjGMdff3WM,18402,Several pictures are shown of a machine as well as tools laid out. A man,Several pictures are shown of a machine as well as tools laid out.,A man,gold,holds up noodles and shows the materials to drink it.,speaks to the camera while pointing alcohol to the camera.,is seen using the tool in another picture.,is then seen doing push ups on a bike while others watch on the side.,2\n11278,anetv_tFjGMdff3WM,18403,A man is seen using the tool in another picture. Several more clips,A man is seen using the tool in another picture.,Several more clips,gold,are shown of the same ones over and over.,is shown of him sitting next to him.,are shown of kites that have targets.,are shown of people doing various lines.,0\n11279,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3282,\"The person sitting on the stool reaches down and pets a small white dog. The dog, Snowy,\",The person sitting on the stool reaches down and pets a small white dog.,\"The dog, Snowy,\",gold,stands back in the chair.,goes down the dog.,brushes its teeth and takes its hand.,sits and watches the crowd.,3\n11280,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3284,\"Tilting his head, Snowy steps forward. Strolling through the crowd, the man\",\"Tilting his head, Snowy steps forward.\",\"Strolling through the crowd, the man\",gold,gazes up at his player.,deftly picked several people's pockets.,moves toward his friend to escort his pass.,turns with his partner.,1\n11281,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3290,The young man wanders through the crowded square. Two man wearing bowlers,The young man wanders through the crowded square.,Two man wearing bowlers,gold,are playing an indoor wrestling ring.,lays out on a blue mat in a short rhythm.,play together in a ring and belly struggle.,peer through holes punched through the same newspaper.,3\n11282,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3286,The thief takes a man's wallet out of the back of his pants. The man,The thief takes a man's wallet out of the back of his pants.,The man,gold,dabs at the coin then bobs his head.,pats his empty pocket then glances around himself.,climbs to another balustrade.,scrutinizes the elevated model's head.,1\n11283,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3291,Two man wearing bowlers peer through holes punched through the same newspaper. Snowy,Two man wearing bowlers peer through holes punched through the same newspaper.,Snowy,gold,\"yard a row of figures, stopping nearby as they gather.\",runs up to the young man.,fly an orange along the hood.,are riding but not running down a road.,1\n11284,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3289,\"The thief steals a mustached man's lighter, then lights the man's cigarette. The young man\",\"The thief steals a mustached man's lighter, then lights the man's cigarette.\",The young man,gold,\"leans in the shadows, his hands back on his smoking.\",\"sits on a bench, staring at the gran torino.\",smokes the cigarette and lights the cigarette pipe.,wanders through the crowded square.,3\n11285,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3285,\"Strolling through the crowd, the man deftly picked several people's pockets. The thief\",\"Strolling through the crowd, the man deftly picked several people's pockets.\",The thief,gold,picks it up to spanish meat.,covers one of the letters.,takes a man's wallet out of the back of his pants.,in his suit disconnects and his stepfather try on mournfully.,2\n11286,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3287,The man pats his empty pocket then glances around himself. The thief,The man pats his empty pocket then glances around himself.,The thief,gold,gives the monitor a cold smile.,\"taps another man on the shoulder, then reaches into his breast pocket as he turns.\",takes off his unlit work glasses and chugs.,\"hesitates, tucking his hair in his pockets.\",1\n11287,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3288,\"The thief taps another man on the shoulder, then reaches into his breast pocket as he turns. The thief\",\"The thief taps another man on the shoulder, then reaches into his breast pocket as he turns.\",The thief,gold,rips up the limb.,slips a ring over his wand then grabs the bloody end of it.,picks up the papers.,\"steals a mustached man's lighter, then lights the man's cigarette.\",3\n11288,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3283,\"The dog, Snowy, sits and watches the crowd. A nearby man\",\"The dog, Snowy, sits and watches the crowd.\",A nearby man,gold,\"slips on a pair of leather gloves, then wiggles his fingers.\",\"spots a pair of tall men in an original room, tapestry with intricate white flakes.\",\"holds a leash for someone, who bounds up the stairs to the ground awaiting screaming steps.\",\"grabs his bag and sits down, eating down newspaper.\",0\n11289,lsmdc3070_THE_CALL-32675,4419,\"Blurry - eyed, she puts a hand on her temple and looks away from him. The man\",\"Blurry - eyed, she puts a hand on her temple and looks away from him.\",The man,gold,measures himself in close with the hand that slowly pulls him very close.,notices a blonde woman wearing a striped dressing gown and a black - yellow bowtie.,\"peers out at them from the raft, then waves to someone.\",leaves and shuts the door.,3\n11290,lsmdc3070_THE_CALL-32675,4418,\"She opens a door marked Quiet Room and bursts in on a lounging coworker. Blurry - eyed, she\",She opens a door marked Quiet Room and bursts in on a lounging coworker.,\"Blurry - eyed, she\",gold,carries the fridge door to the room.,puts a hand on her temple and looks away from him.,\"stares up into someone's notebook, trying to calm herself.\",\"faces down from the artists, then idly styles his hair.\",1\n11291,lsmdc3070_THE_CALL-32675,4413,She brings a hand to her headset. Someone's boss,She brings a hand to her headset.,Someone's boss,gold,picks up her from a bed.,looks across the aisle to someone.,peers down from a man unresponsive.,watches her from across the room.,3\n11292,lsmdc3070_THE_CALL-32675,4416,She turns to her coworker. She,She turns to her coworker.,She,gold,holds up a copy of french fries.,spots a picture of himself and another photo.,rises and rushes out.,considers tearfully.,2\n11293,lsmdc3070_THE_CALL-32675,4420,The man leaves and shuts the door. Someone,The man leaves and shuts the door.,Someone,gold,\"sighs, slips on a shirt, and hauls up a pair of jeans.\",grimaces as the apartment fades.,\"grips her head with both hands, pacing.\",pulls out a sheet of old school and carries them to a hotel room.,2\n11294,lsmdc3070_THE_CALL-32675,4417,She rises and rushes out. She,She rises and rushes out.,She,gold,opens a door marked quiet room and bursts in on a lounging coworker.,sits up to look at someone.,steps forward as she digs her hands in an assistant as she walks away.,drops her overhang and hurriedly runs her hand across the bed.,0\n11295,lsmdc3070_THE_CALL-32675,4415,Someone's eyes dart about frantically. She,Someone's eyes dart about frantically.,She,gold,has her pushing away.,runs the marathon until two tables filled with teammates.,reaches for his phone and hurry.,turns to her coworker.,3\n11296,anetv_Tu1oKxyfHTs,3115,\"A male is wearing black and white swimming shorts, standing at the edge of a diving board, bounces a few times and then jumps out of view and into the water. An older shirtless man wearing black shorts\",\"A male is wearing black and white swimming shorts, standing at the edge of a diving board, bounces a few times and then jumps out of view and into the water.\",An older shirtless man wearing black shorts,gold,begins to walk on the same board of the male who previously jumped but then stops.,takes off the camera and eventually the start of the pool are visible amidst the pool.,climbs onto the wakeboard as the instructor pushes him on the stilts and loses and jumps back in the water.,skates beside a bar covered with blue are doing where he flips over the parallel bar and does incredible stunts.,0\n11297,anetv_Tu1oKxyfHTs,3117,\"On a shorter board a male wearing blue swim underwear walks to the edge of the board jumps a few times, stops, turns around and walks back. The male\",\"On a shorter board a male wearing blue swim underwear walks to the edge of the board jumps a few times, stops, turns around and walks back.\",The male,gold,\"walks to the edge of the board again, jumps a few times, then once again turns around and walks back.\",then begins riding in the lawn again.,\"pauses from for a moment as he nears, her face moving up and down.\",men spin around and ends with a guy waiting in a row for workout.,0\n11298,anetv_Tu1oKxyfHTs,3116,An older shirtless man wearing black shorts begins to walk on the same board of the male who previously jumped but then stops. On a shorter board a male wearing blue swim underwear walks to the edge of the board,An older shirtless man wearing black shorts begins to walk on the same board of the male who previously jumped but then stops.,On a shorter board a male wearing blue swim underwear walks to the edge of the board,gold,trying to wrangle as his movements faster as he can.,and attacks another tug in the water.,\"jumps a few times, stops, turns around and walks back.\",to adjust the doubt on his lower why behind it while a camera zooms in to show the side of his face.,2\n11299,lsmdc0011_Gandhi-53166,13985,\"Someone turns to the person; he makes the pranam. Someone is making the pranam to him and he suddenly,\",Someone turns to the person; he makes the pranam.,\"Someone is making the pranam to him and he suddenly,\",gold,it rolls stand but breaks the silence.,as quickly as they are with his dad.,to meet his outburst.,wildly draws his gun and fires.,3\n11300,anetv_rBCf1qjOwCc,12599,Litle kids are standing in front of a ouse talking to the camera and making lemonade. the kid,Litle kids are standing in front of a ouse talking to the camera and making lemonade.,the kid,gold,is standing in the large bathroom and picks up a bottle of soda.,\"opens a pot and grab sugar and poured into a cup of water, lemon juice and mix it with a spoon.\",takes the tray and pours the ham into it in bowls.,pours a fruit into the pot and pours another mix with a mixer.,1\n11301,lsmdc1010_TITANIC-77165,13075,He pulled her to a different section of the railing. Someone,He pulled her to a different section of the railing.,Someone,gold,stands and paddles towards the car's engine.,runs across the deck of the ship.,\"blocks this, he peeks out in a mirror.\",leans forward and spits.,3\n11302,lsmdc1010_TITANIC-77165,13074,Someone takes someone's hand. He,Someone takes someone's hand.,He,gold,pulled her to a different section of the railing.,twirls someone's suit.,follows behind the fiddle with a piece of paper.,presses his report card back toward the envelope.,0\n11303,lsmdc1010_TITANIC-77165,13076,Someone's mother and her friends stroll nearby. He,Someone's mother and her friends stroll nearby.,He,gold,notices the black card.,shrugs her brow as he steps into an office.,accepts the envelope then turns the trunk.,turns around and swallows.,3\n11304,lsmdc1010_TITANIC-77165,13079,\"Smiling at someone, someone points to her own chin. Someone quickly\",\"Smiling at someone, someone points to her own chin.\",Someone quickly,gold,\"swallows, she sucks.\",wipes saliva off his own chin.,\"slaps someone's cheek, dreamily away.\",takes off his specs.,1\n11305,lsmdc0027_The_Big_Lebowski-63028,1057,They are wearing severe but modishly retro suits. A bed of nails,They are wearing severe but modishly retro suits.,A bed of nails,gold,is shown that leads into several cars hitting a parked car at a small angle.,is the only set dressing on the cover.,is being held up by cardboard and a couple.,stands through rags and heat.,1\n11306,lsmdc0027_The_Big_Lebowski-63028,1056,Someone stops between two albums. Someone,Someone stops between two albums.,Someone,gold,keeps a nail master resting on a wall.,lifts his own book to look on sympathetically.,pulls out an album with a worn sleeve.,stands against the bow and waits.,2\n11307,lsmdc0027_The_Big_Lebowski-63028,1055,\"She strides toward us, naked under a robe which she is just cinching shut. Someone\",\"She strides toward us, naked under a robe which she is just cinching shut.\",Someone,gold,sets and we and slip on the stairs.,stops between two albums.,disappears when her running hair hits his face.,throws the colonel down the floor.,1\n11308,lsmdc3080_THIS_MEANS_WAR-37066,19921,She gives a dispirited look then heads over. One of the chef,She gives a dispirited look then heads over.,One of the chef,gold,hands her a warm towel as she sits.,in her flaps takes a breath.,'s women looks up from the dolls.,wearing pliers is being smudged on dirty figures.,0\n11309,lsmdc3080_THIS_MEANS_WAR-37066,19922,One of the chef hands her a warm towel as she sits. She,One of the chef hands her a warm towel as she sits.,She,gold,takes her coat and places it on the stove.,drops her face in the towel.,sticks a lemon out of her mouth.,lowers her seat from him and steps away.,1\n11310,lsmdc3080_THIS_MEANS_WAR-37066,19920,\"Later, she enters a sushi restaurant. She\",\"Later, she enters a sushi restaurant.\",She,gold,gives a dispirited look then heads over.,opens a door for him.,makes her way out.,stares at her as she walks slowly.,0\n11311,lsmdc3080_THIS_MEANS_WAR-37066,19923,\"She drops her face in the towel. Lifting her face from the towel, someone\",She drops her face in the towel.,\"Lifting her face from the towel, someone\",gold,wipes away from the board.,\"twists around, wipes cloth and looking off.\",sees someone and someone.,stands in front of the electrical counter and checks her cell.,2\n11312,lsmdc3033_HUGO-15030,7526,A carriage drives into the mouth of a volcano spewing smoke and embers. A train,A carriage drives into the mouth of a volcano spewing smoke and embers.,A train,gold,\"logo appears, the inspectors someone.\",\"approaches, and people stand in step.\",crashes onto a fiery landscape of jagged rocks.,flies through an empty propeller stop by a wind.,2\n11313,lsmdc3033_HUGO-15030,7521,Someone holds up his arms then bows and steps backward toward a movie screen. He,Someone holds up his arms then bows and steps backward toward a movie screen.,He,gold,sits and touches the same dancer with interest as they are kissing them.,looms over the monitor and zooms in on the clerk.,\"crawls in, and they notice the helmeted man who is now sitting.\",\"puts on a top hat and places a cigarette in his mouth, then ducks off stage.\",3\n11314,lsmdc3033_HUGO-15030,7523,\"Wearing a coat and tails, young someone throws a music clefs. He\",\"Wearing a coat and tails, young someone throws a music clefs.\",He,gold,leans back and eats chewing.,takes off his own head and throws it onto the wires where it hovers like a musical note.,\"joins him on the front lawn, alone.\",kicks the guy away in the ground.,1\n11315,lsmdc3033_HUGO-15030,7525,\"Outside a castle, a magician conjures a pair of green imps who twirl batons of fire. A carriage\",\"Outside a castle, a magician conjures a pair of green imps who twirl batons of fire.\",A carriage,gold,drives into the mouth of a volcano spewing smoke and embers.,turns as two men run across a bridge.,pulls into the house below.,\"stands there, wide enough for them to approach, avoiding them one by one.\",0\n11316,lsmdc3033_HUGO-15030,7522,\"He puts on a top hat and places a cigarette in his mouth, then ducks off stage. Next, a fleet of airships, dirigibles, and hot air balloons\",\"He puts on a top hat and places a cigarette in his mouth, then ducks off stage.\",\"Next, a fleet of airships, dirigibles, and hot air balloons\",gold,fly across a cloudy sky.,\"explode in the air, bathed in golden smoke.\",are tethered the street at the frat room.,bears his building as he carries a report through his date.,0\n11317,lsmdc3033_HUGO-15030,7524,\"In other clips, revelers push a chariot across the sky. A magician\",\"In other clips, revelers push a chariot across the sky.\",A magician,gold,leaps two fabric blows.,\"lifts a giant hat, revealing a woman with butterfly wings.\",gets up from his box and snaps the pumpkin.,bodied hits the pirate's cricket cheek.,1\n11318,anetv_Iuk7PNmG3tQ,6890,\"Again, another animated example is shown to explain how the game works. The black team player\",\"Again, another animated example is shown to explain how the game works.\",The black team player,gold,changes into the cricket actions.,followed and their backup dancers wins the side.,hits the puck on the opposite corner of the ice.,walks off one of the people day go by stair and down the gate then vaults over the plant.,2\n11319,anetv_Iuk7PNmG3tQ,6888,An animated version of the game is shown on screen. Then the focus,An animated version of the game is shown on screen.,Then the focus,gold,goes is the man talk to the camera and a young man standing on the side is holding a paintball bow.,is back on the real game where a black team player is highlighted as he takes a shot on the goal.,is on mail to do so.,shows a gymnast standing on a field where a man walks up on front a large audience.,1\n11320,anetv_Iuk7PNmG3tQ,6886,One of the players from the black team hits the puck away from his opponent. The players from the white team,One of the players from the black team hits the puck away from his opponent.,The players from the white team,gold,take their own turn and see their game on a new screen.,try to prevent him from hitting a goal.,are pressing the team boys while their game wins.,scores the same goal for the opposing team.,1\n11321,anetv_Iuk7PNmG3tQ,6889,\"Then the focus is back on the real game where a black team player is highlighted as he takes a shot on the goal. Again, another animated example\",Then the focus is back on the real game where a black team player is highlighted as he takes a shot on the goal.,\"Again, another animated example\",gold,appears on some say as the video ends with the words in pursuit of them.,\"appear in paradise, finally the color overlays and the words disappear.\",is shown to explain how the game works.,is shown to capture the ball from sandy ice on the scene most of the time before finally dropping the ball.,2\n11322,anetv_Iuk7PNmG3tQ,6887,The players from the white team try to prevent him from hitting a goal. An animated version of the game,The players from the white team try to prevent him from hitting a goal.,An animated version of the game,gold,is replayed from elk.,is shown on screen.,is cheering for the teams.,is pushed across the screen.,1\n11323,anetv_Iuk7PNmG3tQ,6885,Several players from the black and white team are playing ice hockey in the arena. One of the players from the black team,Several players from the black and white team are playing ice hockey in the arena.,One of the players from the black team,gold,makes the shot with two hitting their goal.,begins to have a lacrosse game.,hits the puck away from his opponent.,hits the ball all over the net.,2\n11324,anetv_Iuk7PNmG3tQ,6892,\"As the black moves fast and towards the goal, it cause the goalie to fall down. The black team\",\"As the black moves fast and towards the goal, it cause the goalie to fall down.\",The black team,gold,wins the goal and gets the victory in the game.,goes over the black ropes and the red team celebrate.,\"reaches for a gap in the wall, causing it to attempt again.\",catches his catches and tries to switch after the ball.,0\n11325,anetv_Iuk7PNmG3tQ,6891,\"The black team player hits the puck on the opposite corner of the ice. As the black moves fast and towards the goal, it\",The black team player hits the puck on the opposite corner of the ice.,\"As the black moves fast and towards the goal, it\",gold,cause the goalie to fall down.,hits the goalie - - a game of hockey player.,fills a pit with both palms.,shows right drills with it's results.,0\n11326,anetv__9e948mdwrs,1988,A man blows dead leaves of a backyard. A person,A man blows dead leaves of a backyard.,A person,gold,puts oil into a pan on the rocks.,makes a pile of dead leaves.,slides sand in a leaf.,starts cutting the grass with a knife.,1\n11327,anetv_w8gNl6HWctA,4234,\"The man becomes irate as he plays and begins stomping, yelling, wildly gesturing and pushing the woman down on the floor when she falls as they play the game. When the game ends the woman leaves, looking upset and the man\",\"The man becomes irate as he plays and begins stomping, yelling, wildly gesturing and pushing the woman down on the floor when she falls as they play the game.\",\"When the game ends the woman leaves, looking upset and the man\",gold,begins to smile and walk away at the end of the session.,looks satisfied as he begins doing wild stretches in front of the doorway and talking to another person.,tethered its legs around appropriate covers.,finishes her call and laughs.,1\n11328,anetv_w8gNl6HWctA,4233,A woman approaches him and the two begin to talk. The man and woman,A woman approaches him and the two begin to talk.,The man and woman,gold,are walking in on a path with a human in their hand.,ducks ropes and laces for a lobster.,begin to play tennis in a closed gym room by hitting the tennis ball against a wall with their tennis racket.,is behind a table about some type of stuff.,2\n11329,lsmdc0041_The_Sixth_Sense-67756,11471,The two boys are statues as someone's blood - chilling yells fill. Someone,The two boys are statues as someone's blood - chilling yells fill.,Someone,gold,is one of them.,is in a cot.,stares as someone raises his spear.,heaves two metal red drink at his hands.,0\n11330,lsmdc3081_THOR-38159,14814,\"Someone beats the bridge repeatedly, creating fracture lines which spiderweb through the glassy material. Behind someone, someone\",\"Someone beats the bridge repeatedly, creating fracture lines which spiderweb through the glassy material.\",\"Behind someone, someone\",gold,steps down a city street and lands on a cliff above.,\"swats someone by the chin, knocking him around.\",stands and runs at his brother with his spear in his hands.,gazes up with his limp broken speedos.,2\n11331,lsmdc3081_THOR-38159,14819,\"As someone falls he grabs someone's spear. Standing on the ragged edge of the bridge, someone\",As someone falls he grabs someone's spear.,\"Standing on the ragged edge of the bridge, someone\",gold,lunges wildly at someone.,floats on the platform backwards.,grabs someone's leg.,quickly searches the roof.,2\n11332,lsmdc3081_THOR-38159,14816,Someone leaps at someone as he swings down his war hammer. The explosion,Someone leaps at someone as he swings down his war hammer.,The explosion,gold,carries someone and someone high into the air.,explodes as the floor hurtles away from them.,lurches off and fighting someone wearing his green satin jacket.,pass power tower into the spar.,0\n11333,lsmdc3081_THOR-38159,14828,Someone stands motionless then slowly follows the others. A low sun,Someone stands motionless then slowly follows the others.,A low sun,gold,shines in the night sky.,illuminates the glittering kingdom of asgard.,dappled day covers the sun.,shines across the deck with the pale hood right.,1\n11334,lsmdc3081_THOR-38159,14821,\"The two brothers dangle over an endless expanse of deep space. Below someone, someone\",The two brothers dangle over an endless expanse of deep space.,\"Below someone, someone\",gold,leads someone through a busy street.,stops by the platform.,hangs onto his spear with one hand.,leans back against the dune.,2\n11335,lsmdc3081_THOR-38159,14815,\"Behind someone, someone stands and runs at his brother with his spear in his hands. Someone\",\"Behind someone, someone stands and runs at his brother with his spear in his hands.\",Someone,gold,slows three crisp removes the time.,\"the armies soldiers leave the field, a soldier kicks him from the wall and she fights his way through the shield.\",jumps over the helicopter and notepaper.,leaps at someone as he swings down his war hammer.,3\n11336,lsmdc3081_THOR-38159,14820,\"Standing on the ragged edge of the bridge, someone grabs someone's leg. The two brothers\",\"Standing on the ragged edge of the bridge, someone grabs someone's leg.\",The two brothers,gold,burst onto the crowded deck past a pool.,\"sway together as they ride the boat, landing in the boat swerve.\",rush out to the window.,dangle over an endless expanse of deep space.,3\n11337,lsmdc3081_THOR-38159,14818,\"As the end of the bridge collapses, flames rip apart the spinning observatory, which then crashes into the water. As someone falls he\",\"As the end of the bridge collapses, flames rip apart the spinning observatory, which then crashes into the water.\",As someone falls he,gold,stalks off onto a calm curtsy.,picks up his own match and picks it up.,straightens up by its head.,grabs someone's spear.,3\n11338,lsmdc3081_THOR-38159,14826,\"The gas clouds stop swirling and expand slightly. Back on earth, someone, someone and someone\",The gas clouds stop swirling and expand slightly.,\"Back on earth, someone, someone and someone\",gold,stare up at a blue sky marbled with fluffy white clouds.,follow a sharp corner.,watch the plane crash into a ditch.,stroll between crags's towering ruin.,0\n11339,lsmdc3081_THOR-38159,14822,\"Below someone, someone hangs onto his spear with one hand. Someone\",\"Below someone, someone hangs onto his spear with one hand.\",Someone,gold,is thrusting a substance into the baby's face.,punches him and runs an overhand around someone.,stares up at his father.,raises the gun and heads to people's table ok.,2\n11340,lsmdc3081_THOR-38159,14825,\"Releasing his grip, someone falls into outer space toward a swirling cloud of flashing gas. The gas clouds\",\"Releasing his grip, someone falls into outer space toward a swirling cloud of flashing gas.\",The gas clouds,gold,rise and the crystalline intensity points.,stay harmlessly with ominous smoke.,stop swirling and expand slightly.,\"gathers itself as he descends, then stops.\",2\n11341,lsmdc3081_THOR-38159,14827,Someone shuffles back toward their truck. Someone,Someone shuffles back toward their truck.,Someone,gold,stands motionless then slowly follows the others.,gives a wide - face smile.,stops in the tracks.,grabs sister out of the car.,0\n11342,anetv_FYhB2rQwfCc,12122,Two people are playing wall ball in a room. A woman,Two people are playing wall ball in a room.,A woman,gold,drops her racket onto the ground.,is practicing how to make a fire.,takes a baseball and lays.,is standing in front of an audience.,0\n11343,anetv_FYhB2rQwfCc,7322,Two players compete in a racquetball match indoors. The man,Two players compete in a racquetball match indoors.,The man,gold,drops the ball and his racket on accident.,throws a ball all over the goal.,kicks the ball and dances off after the team cheer.,lands on the shot ignoring the player.,0\n11344,anetv_FYhB2rQwfCc,7324,The players stretch out before the ball is served. The man,The players stretch out before the ball is served.,The man,gold,lifts the barbel and the crowd cheers.,walked to one knee.,\"cheer and celebrate, run to celebrate, and compete shown together again.\",jumps off of the wall while hitting the ball.,3\n11345,anetv_FYhB2rQwfCc,7323,The man drops the ball and his racket on accident. The players,The man drops the ball and his racket on accident.,The players,gold,are crowned all right together.,started to play on the other and listen to each other.,stretch out before the ball is served.,run and land on the dock.,2\n11346,lsmdc3081_THOR-37672,75,\"Someone throws someone at the armored giant, striking his face. Meanwhile, another giant knocks down someone, but someone\",\"Someone throws someone at the armored giant, striking his face.\",\"Meanwhile, another giant knocks down someone, but someone\",gold,shoots a guard at the.,\"rolls on someone's side, leaps into the air.\",catches him gaining with a.,dispatches him with a flying knife.,3\n11347,lsmdc3081_THOR-37672,73,\"Someone swings someone at an armored giant, but the feen grabs someone's wrist and headbutts him. The giant\",\"Someone swings someone at an armored giant, but the feen grabs someone's wrist and headbutts him.\",The giant,gold,leaps into the air and kicks him off the ground.,lands lightly over someone's head.,glares down at her.,punches someone and sends him sailing backward.,3\n11348,lsmdc3081_THOR-37672,93,\"He thrusts Mjolnir skyward imbuing it with a bolt of lightning, then slams the hammer into the ground. A huge shockwave\",\"He thrusts Mjolnir skyward imbuing it with a bolt of lightning, then slams the hammer into the ground.\",A huge shockwave,gold,looms in the center of the plaza.,is engulfed in flames.,ripples outward and sweeps away the giants in a swell of shattered earth.,leans over the table destroyed.,2\n11349,lsmdc3081_THOR-37672,88,Flakes of frost fall from a huge creature encased in ice. Someone's allies,Flakes of frost fall from a huge creature encased in ice.,Someone's allies,gold,\"watch as the beast shakes its head free, revealing a wide mouth filled with fangs.\",disappears by the spell.,animation in the mansion morphs into someone of someone's anchor positioned like a zebra.,fall by grinding lines.,0\n11350,lsmdc3081_THOR-37672,74,The giant punches someone and sends him sailing backward. Someone,The giant punches someone and sends him sailing backward.,Someone,gold,shoots down but tries to follow him down another tunnel.,\"throws someone at the armored giant, striking his face.\",\"doubles in several cocks, then drops his arms first, then kicks him away.\",points on her reflection in the mirror.,1\n11351,lsmdc3081_THOR-37672,64,\"His chest heaving, someone continues to stare at the Jotun, then turns his back to him. Someone\",\"His chest heaving, someone continues to stare at the Jotun, then turns his back to him.\",Someone,gold,leads her to the elevator.,\"listens intently, then lowers his gaze and turns his attention to someone gratefully.\",\"smiles as he spins and smashes the giant with someone, sending the giant flying backward.\",tips it back on him.,2\n11352,lsmdc3081_THOR-37672,91,\"Smashing through boulders of rock and ice in its path, twirling his hammer so fast that it blurs, someone flings chunks of the ground like projectiles. The creature\",\"Smashing through boulders of rock and ice in its path, twirling his hammer so fast that it blurs, someone flings chunks of the ground like projectiles.\",The creature,gold,\"swings its spiked tail toward someone, but misses.\",flies closer to the fire with its tail light underneath.,\"appears atop its perimeter, keeping great looking down and breaking something.\",retreats after the fighting wand which is no less than person.,0\n11353,lsmdc3081_THOR-37672,102,\"Smiling, someone turns to his companions then frowns. Sitting atop a black war horse, someone\",\"Smiling, someone turns to his companions then frowns.\",\"Sitting atop a black war horse, someone\",gold,trips off the horse and ease the bully.,pauses as the two of them move off.,appears in full battle armor.,walks along the crest of the gangplank to the sky.,2\n11354,lsmdc3081_THOR-37672,83,\"Someone retreats a few steps, then runs forward and slides through the giant's legs. Someone\",\"Someone retreats a few steps, then runs forward and slides through the giant's legs.\",Someone,gold,spots some gold tendrils from his sword.,grabs his sword again and thrusts it into the giant's throat.,\"helps someone to her feet, as the small, gentle woman approaches a ship, preparing to dive.\",\"continues to swing past his women, continually by one wave, staring at each other, startled.\",1\n11355,lsmdc3081_THOR-37672,94,A huge shockwave ripples outward and sweeps away the giants in a swell of shattered earth. The shockwave,A huge shockwave ripples outward and sweeps away the giants in a swell of shattered earth.,The shockwave,gold,draw onto a repeat of her previous pyramid.,\"looms through a jungle, dotting to amber sky.\",and the windows go dark.,\"spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet.\",3\n11356,lsmdc3081_THOR-37672,79,\"Someone smashes his war hammer into a giant's chest. Nearby, someone\",Someone smashes his war hammer into a giant's chest.,\"Nearby, someone\",gold,\"vomits with sheer divide, and gradually backs up and watertight a clear window outside the ship.\",watches the giant slam a monk with his western - lipped mouth.,stabs a bare chested giant with a dagger.,dangles a few posts over the bound flowerbed.,2\n11357,lsmdc3081_THOR-37672,69,\"Someone throws a weapon which shatters a giant's ice weapon, while someone swings his hefty ax into another giant's torso. Someone\",\"Someone throws a weapon which shatters a giant's ice weapon, while someone swings his hefty ax into another giant's torso.\",Someone,gold,\"fires a hurtling ropes at him, aggressively trying to hit him with impact.\",hit a boy painfully as someone takes the wand out of his fallen brother and whips him off.,\"kicks the cow again and runs him along a fence, then ducks and faces as people come out of the gate.\",kicks a giant across the ground and looks up at someone.,3\n11358,lsmdc3081_THOR-37672,96,The warriors stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them. The creature,The warriors stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them.,The creature,gold,walks away painfully as ducks digging holes in the firewood.,breaks into a gap.,leaps out tendrils its wings.,\"pulls itself up, narrows its beady red eyes and roars.\",3\n11359,lsmdc3081_THOR-37672,85,Someone and someone pull someone off the spikes. Someone,Someone and someone pull someone off the spikes.,Someone,gold,slings down the fire on the wall.,\"smashes another giant with someone, then hurls his hammer across the battlefield striking down several enemies.\",hits a jagged log on the demon's tortured foot.,rise onto the ground beneath the zombie.,1\n11360,lsmdc3081_THOR-37672,65,\"Someone smiles as he spins and smashes the giant with someone, sending the giant flying backward. Someone\",\"Someone smiles as he spins and smashes the giant with someone, sending the giant flying backward.\",Someone,gold,watches as the plane speeds off.,swings his hammer into another frost giant then fends of several attacks.,turns away from someone.,turns to look at him.,1\n11361,lsmdc3081_THOR-37672,99,\"As the beast rears up onto its hind legs, someone flies like a missile into the creature's open mouth and out through the back of its head. The beast's eyes\",\"As the beast rears up onto its hind legs, someone flies like a missile into the creature's open mouth and out through the back of its head.\",The beast's eyes,gold,\"turn slowly open, revealing a sleepy, dark - haired spiders.\",roll backward as it collapses onto the ground.,widen as its blade flies over a burning tunnel.,shake steadily and the rich black zombie drops into view.,1\n11362,lsmdc3081_THOR-37672,66,Someone swings his hammer into another frost giant then fends of several attacks. Someone,Someone swings his hammer into another frost giant then fends of several attacks.,Someone,gold,'s jaws go free.,cups both hands and squeezes it.,takes out a spiked mace as someone slashes with a double - bladed sword.,and his companions smile happily.,2\n11363,lsmdc3081_THOR-37672,87,\"He flicks his hand, sending out a bolt of blue energy which races through the rocky terrain. Flakes of frost\",\"He flicks his hand, sending out a bolt of blue energy which races through the rocky terrain.\",Flakes of frost,gold,\"spreads on the long, white walls.\",\"spreads from the back door, which someone lies in his arms, hovering on the rug.\",swirl across the field.,fall from a huge creature encased in ice.,3\n11364,lsmdc3081_THOR-37672,82,The giant knocks someone's sword out of his hand. Someone,The giant knocks someone's sword out of his hand.,Someone,gold,draws away leaving the crowd staring at him impassively.,\"retreats a few steps, then runs forward and slides through the giant's legs.\",shoots the attacker from behind his.,grabs someone's wand from his pocket.,1\n11365,lsmdc3081_THOR-37672,95,\"The shockwave spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet. The warriors\",\"The shockwave spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet.\",The warriors,gold,stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them.,stand with place as someone moves towards them.,\"line in front of one of the devil's towers, which towering and towers over him.\",cautiously scramble out of the wood - trap.,0\n11366,lsmdc3081_THOR-37672,71,More frost giants race out of the Citadel and leap down into the courtyard below. One Jotun,More frost giants race out of the Citadel and leap down into the courtyard below.,One Jotun,gold,picks him up and propels it over someone's shoulders.,punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet.,stick runs over the gryffindor tent and finds a guard hustling the three of them.,crawls along in the whirlwind.,1\n11367,lsmdc3081_THOR-37672,77,Someone retreats to the edge of a cliff as a burly Jotun races toward him. The giant,Someone retreats to the edge of a cliff as a burly Jotun races toward him.,The giant,gold,hurls a trooper through the floor and smashes its head with the pole.,\"leaps up onto shadowfax, then pulls off the hood and makes its way into the alien.\",\"leaps at someone, who turns translucent, then passes straight through him before tumbling into a deep ravine.\",leaps from the back of the kicker into the pit.,2\n11368,lsmdc3081_THOR-37672,72,\"One Jotun punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet. Someone swings someone at an armored giant, but the feen\",One Jotun punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet.,\"Someone swings someone at an armored giant, but the feen\",gold,grabs someone's wrist and headbutts him.,gets suspended and falls as more guards scurry into position.,hit the prisoners as they attempt to reach the river.,blocks ahead of someone.,0\n11369,lsmdc3081_THOR-37672,86,\"From his thrown, someone watches the conflict. He\",\"From his thrown, someone watches the conflict.\",He,gold,\"looks away into the distance, then advances to the pumpkin with his wand.\",emerges up beside a parked truck.,\"flicks his hand, sending out a bolt of blue energy which races through the rocky terrain.\",waves after him and punches a port guy in the head.,2\n11370,lsmdc3081_THOR-37672,100,The beast's eyes roll backward as it collapses onto the ground. Someone,The beast's eyes roll backward as it collapses onto the ground.,Someone,gold,\"stares at someone, his smile leaving its clock.\",lower the catapults and up to someone's feet.,runs over to her.,lands in front of the dead creature as it slides over the edge of the cliff and disappears.,3\n11371,lsmdc3081_THOR-37672,81,\"Meanwhile, someone parries another giant's attacks. The giant\",\"Meanwhile, someone parries another giant's attacks.\",The giant,gold,spins him across the bars.,\"throws stick to the bat, dragging around.\",knocks someone's sword out of his hand.,\"strikes a fight and thuds into someone as he rushes in, who briefly flees.\",2\n11372,lsmdc3081_THOR-37672,80,\"He stabs the frost giant in the heart and wrenches himself free, then watches as his arm gradually returns to normal. Meanwhile, someone\",\"He stabs the frost giant in the heart and wrenches himself free, then watches as his arm gradually returns to normal.\",\"Meanwhile, someone\",gold,parries another giant's attacks.,crosses to the table where he'd been holding all the patients he'd used.,stirs awake and then briefly closes his eyes.,lays out her luggage.,0\n11373,lsmdc3081_THOR-37672,98,\"Spinning his hammer, someone leaps high into the air. As the beast rears up onto its hind legs, someone\",\"Spinning his hammer, someone leaps high into the air.\",\"As the beast rears up onto its hind legs, someone\",gold,stares up at the stars.,flies like a missile into the creature's open mouth and out through the back of its head.,swoops through a dirt room.,swoops down the trap door.,1\n11374,lsmdc3081_THOR-37672,89,\"Someone's allies watch as the beast shakes its head free, revealing a wide mouth filled with fangs. Spinning like a whirlwind, someone\",\"Someone's allies watch as the beast shakes its head free, revealing a wide mouth filled with fangs.\",\"Spinning like a whirlwind, someone\",gold,continues to battle frost giants as his friends flee.,takes air from it landing and hands it over to its dangling rider.,is beginning to head off at a gap.,grabs a drone by the unicorn which flies overhead.,0\n11375,lsmdc3081_THOR-37672,78,Someone grapples with an ice giant who grips someone's arm searing the flesh as it burned. Someone,Someone grapples with an ice giant who grips someone's arm searing the flesh as it burned.,Someone,gold,smashes his war hammer into a giant's chest.,\"looks up, revealing someone's face, his helmet, and his belt shaped - baseball should just look at someone with amazement.\",flops her cover on the ground beside them.,\"see in horror, swooping around the desert.\",0\n11376,lsmdc3081_THOR-37672,92,\"The creature swings its spiked tail toward someone, but misses. Still twirling his hammer, someone\",\"The creature swings its spiked tail toward someone, but misses.\",\"Still twirling his hammer, someone\",gold,\"stretches the vampire's neck into the fighter's neck and slashes him, forcing his assault to the side.\",laughs with his tongue flicking its neck and shudders with him.,watches as frost giants close in around him.,runs and grabs the broomstick.,2\n11377,lsmdc3081_THOR-37672,97,\"The creature pulls itself up, narrows its beady red eyes and roars. Spinning his hammer, someone\",\"The creature pulls itself up, narrows its beady red eyes and roars.\",\"Spinning his hammer, someone\",gold,thrust his knife for her.,opens its right pocket revealing the fire.,leaps onto a narrow ledge off a train and lands on another side of the floor.,leaps high into the air.,3\n11378,lsmdc3081_THOR-37672,101,\"Someone lands in front of the dead creature as it slides over the edge of the cliff and disappears. Smiling, someone\",Someone lands in front of the dead creature as it slides over the edge of the cliff and disappears.,\"Smiling, someone\",gold,begins to hold someone's neck.,looks over at the packed surf.,turns to his companions then frowns.,eyes the dashboard skeptically.,2\n11379,lsmdc3081_THOR-37672,67,Someone takes out a spiked mace as someone slashes with a double - bladed sword. Someone,Someone takes out a spiked mace as someone slashes with a double - bladed sword.,Someone,gold,looks from someone to the landlord.,\"rushes through the injured side, which stops beside a neighboring building.\",runs steadily down the red - walled street towards tall brick bushes.,laughs as he wields his sword.,3\n11380,lsmdc3081_THOR-37672,63,\"Someone stares at his brother then pulls his arm free, and with his teeth bared glares at the giant. His chest heaving, someone\",\"Someone stares at his brother then pulls his arm free, and with his teeth bared glares at the giant.\",\"His chest heaving, someone\",gold,\"turns and stares, continuing his descent.\",raises his brow imitating the same height.,\"continues to stare at the jotun, then turns his back to him.\",struggles to his feet and touches his temple at the hand over his head.,2\n11381,lsmdc3081_THOR-37672,84,Someone grabs his sword again and thrusts it into the giant's throat. Someone and someone,Someone grabs his sword again and thrusts it into the giant's throat.,Someone and someone,gold,fall down onto the fire.,\"stand by the barrier, firing round the spherical storm.\",tumble through the crumbling mass.,pull someone off the spikes.,3\n11382,lsmdc3081_THOR-37672,90,\"Spinning like a whirlwind, someone continues to battle frost giants as his friends flee. Carried by someone, someone\",\"Spinning like a whirlwind, someone continues to battle frost giants as his friends flee.\",\"Carried by someone, someone\",gold,looks back as the beast races toward them on four legs.,lands safely on the ground.,holds someone by his arms.,stabs the prisoners for battle.,0\n11383,lsmdc3045_LAND_OF_THE_LOST-21078,14478,Someone finds a makeshift electronic device on his desk. He,Someone finds a makeshift electronic device on his desk.,He,gold,opens it to reveal a sharp piece of someone.,removes a capsule then drops it.,grabs a french fry.,finds someone sitting with the other roadster's rifles.,2\n11384,anetv_7VbXyfF3kEw,2324,Two women wearing matching outfits are on their microphones and kind of half watching a boy play with a rubix cube. The boy,Two women wearing matching outfits are on their microphones and kind of half watching a boy play with a rubix cube.,The boy,gold,is solving the cube pretty quickly the girl seems pretty shocked.,bends down and releases the poles while sitting with their arms.,throws the black bottle down and looks as more or the members of the the dance.,lets go of a 17 disc and slides it onto the other side.,0\n11385,anetv_uYqNIBbz4_Q,16192,A man is seen standing outside holding a rope and tying it around a tree bark. He then,A man is seen standing outside holding a rope and tying it around a tree bark.,He then,gold,axes the log on the ground and breaks it into two.,ties the ropes onto the calf that lead him down the field.,throws the object back and fourth while holding up a calf.,picks up a tool on the horse and ties and ties the cow.,0\n11386,anetv_JHITVq5zJOM,9839,They are playing a game of volleyball. They,They are playing a game of volleyball.,They,gold,continue talking to each other as they continue to play.,hit the ball back and forth over the net.,claim the game while trying to score the ball.,pour mud for the cup.,1\n11387,anetv_JHITVq5zJOM,9838,Several people are gathered around a net on the beach. They,Several people are gathered around a net on the beach.,They,gold,play a game of volleyball.,are playing a game of volleyball.,are involved in a game of lacrosse.,roll the ball back and forth.,1\n11388,anetv_JHITVq5zJOM,18611,\"Several kids are playing beach volleyball on an enclosed, sand volleyball court. One of the boys\",\"Several kids are playing beach volleyball on an enclosed, sand volleyball court.\",One of the boys,gold,starts to hit a goal and high fives an opponent.,takes the ping pong coaches him and walks to shake the ball.,falls down after trying to go for the ball.,\"in the audience takes it, directing it on the border.\",2\n11389,anetv_ZMTi498qnPc,2922,A young child is seen sitting on a bar with another girl showing her teeth to the camera. The girl,A young child is seen sitting on a bar with another girl showing her teeth to the camera.,The girl,gold,keeps dancing as the trainer prepares.,opens the box to take an object out while the young girl laughs to the camera.,talks in front of a mirror and speaks to the makeup artist.,spins and dips her hands in the pool.,1\n11390,anetv_ZMTi498qnPc,2923,The girl opens the box to take an object out while the young girl laughs to the camera. The girl,The girl opens the box to take an object out while the young girl laughs to the camera.,The girl,gold,stares down at the children as the girl picks up food and continues hitting him with a stick.,continues taking items out of the box while the girl looks and laughs.,continues moving the hula hoop around with her hands hanging along and holding her breaths out.,flips her body around and gives a happy shrug.,1\n11391,anetv_ZMTi498qnPc,220,A little girl is sitting on a bench in front of a wall. A woman,A little girl is sitting on a bench in front of a wall.,A woman,gold,is painting her toe nails with polish.,is painting her nails in a bed.,is sitting on the ground waiting for a hula.,starts going back on touching her hair.,0\n11392,lsmdc0010_Frau_Ohne_Gewissen-51426,6210,\"Someone is wearing his vest and hat, no coat. He\",\"Someone is wearing his vest and hat, no coat.\",He,gold,runs for the door and comes right next to him.,is carrying a file of papers and smoking a cigar.,puts on a sweatshirt and a t - shirt.,lassos the wheel and runs on it.,1\n11393,anetv_-qXqnltHWtE,2279,Men ride horses out of a gates and ropes a bull before dismounting and tying their its legs. The winner,Men ride horses out of a gates and ropes a bull before dismounting and tying their its legs.,The winner,gold,is against a woman then runs.,stands up and makes his teeth while doing a trick of a disc and uses it to run.,rides the horses and horses and hugs them several times riding back and forth over the obstacle.,waves his hat and is congratulated by the other riders.,3\n11394,anetv_-qXqnltHWtE,2278,Cowboys compete in a rodeo competition. Men,Cowboys compete in a rodeo competition.,Men,gold,are building wrestling on the field.,ride horses out of a gates and ropes a bull before dismounting and tying their its legs.,are standing around playing tug and war.,are standing on the rope.,1\n11395,anetv_TK5FnYshy10,478,We see kids across the beach working on their castles in the wet sand. We,We see kids across the beach working on their castles in the wet sand.,We,gold,then see the raft down the hill.,see a replay out of the jump.,see a teen and two small kids filling a large square bucket with sand.,see a lady close up dipping a huge brush in a wake board and begins to pick that up.,2\n11396,anetv_TK5FnYshy10,476,We see an opening title screen. A group of kids,We see an opening title screen.,A group of kids,gold,are playing curling in a field rink.,are running in a bowling field.,see playing on a gym floor.,is building a moat filled with water around a sand castle.,3\n11397,anetv_TK5FnYshy10,12408,They gather sand and pack it around the center. The children across the beach,They gather sand and pack it around the center.,The children across the beach,gold,are floating around in the sand.,are shown as a company take their ornaments.,\"are putting sand in buckets, proud of their work.\",gather their belongings as she narrates.,2\n11398,anetv_TK5FnYshy10,12411,A line of buckets filled with items are displayed on the beach as the kids gather behind them. A woman,A line of buckets filled with items are displayed on the beach as the kids gather behind them.,A woman,gold,is tubing down a grassy slope.,in a red coat enters with the dirty laundry.,is seen speaking speak to the camera while holding up various objects in holding it.,opens a piece of paper and reads it to the group before handing the buckets to the kids.,3\n11399,anetv_TK5FnYshy10,12407,\"A group of kids are at the beach, trying to build a sand castle. They\",\"A group of kids are at the beach, trying to build a sand castle.\",They,gold,hit the water in the mountains.,toss their freedom on their friends.,gather sand and pack it around the center.,wave over one ball and cartwheel into the water.,2\n11400,anetv_TK5FnYshy10,12410,A girl dumps sand into a large bucket. A line of buckets filled with items,A girl dumps sand into a large bucket.,A line of buckets filled with items,gold,are flying and fall on them.,are displayed on the beach as the kids gather behind them.,comes up to join her.,is washed from a bucket along a bucket.,1\n11401,anetv_TK5FnYshy10,480,We see prize buckets in the sand and the kids run over to the camera man. A lady in black,We see prize buckets in the sand and the kids run over to the camera man.,A lady in black,gold,is skiing on the snow.,reads names a man hands her and passes out prize buckets to the kids.,gives someone a thumbs up.,goes in to an aerial shot.,1\n11402,anetv_TK5FnYshy10,477,A little girl with floaters on pour water in the moat. We,A little girl with floaters on pour water in the moat.,We,gold,see kids across the beach working on their castles in the wet sand.,come to the area holding people.,is also knitting at the back.,\", the technician walks the gate.\",0\n11403,anetv_TK5FnYshy10,12409,\"The children across the beach are putting sand in buckets, proud of their work. A girl\",\"The children across the beach are putting sand in buckets, proud of their work.\",A girl,gold,stands on a bench wearing a fresh towel and rolls to her knees in the sand.,sits in front of a pile of snow.,is then seen standing a line and eating a baby.,dumps sand into a large bucket.,3\n11404,anetv__D9oML1HvVw,12939,More people are shown performing flips off rope and picnic tables. The men,More people are shown performing flips off rope and picnic tables.,The men,gold,fly off throwing the board until it is a fire.,continue swinging one over and padded down the aisle.,continue moving and bounces in the water as the man water surfing.,take turns jumping off the rope and looking to the camera.,3\n11405,anetv__D9oML1HvVw,6426,A guy flips off a slack line and lands on his body. A man,A guy flips off a slack line and lands on his body.,A man,gold,throws a bowling ball sitting on a mat.,lifts up a kid with a pole.,walks on a slack line and falls off.,make up over a proper backflip.,2\n11406,anetv__D9oML1HvVw,6427,A man walks on a slack line and falls off. A person,A man walks on a slack line and falls off.,A person,gold,jumps over a hill of snow and sits across a hector assisted by a girl.,fells on the grass and falls down.,does flips around the slack line.,brushes a flaming boat and does a spectacular flip in the water.,2\n11407,anetv__D9oML1HvVw,6428,A person does flips around the slack line. A male,A person does flips around the slack line.,A male,gold,and a woman walk out of the bend.,\"flips off a brown, picnic table.\",falls down onto the motorbike.,slices the side of the field and slices a hundred foot.,1\n11408,anetv__D9oML1HvVw,12938,A man is seen standing up on a rope and jumping off doing a flip. More people,A man is seen standing up on a rope and jumping off doing a flip.,More people,gold,are seen running around in different clips as well as performing tricks and leads off into people congratulating themselves and jumping.,pull on the string and end up walking out.,are shown performing flips off rope and picnic tables.,stand by the edge as well as running into the crowd and holding up the rope.,2\n11409,anetv_4VVIFV6XmKo,518,\"They continue fighting and hitting one another as a person stands in the corner showing them. After some time, they\",They continue fighting and hitting one another as a person stands in the corner showing them.,\"After some time, they\",gold,continue to continue to hit the ball together as far as they can.,finish fighting and stand still across from one another in the gym.,do another black break and begin to talk to each other.,ride the bicycle through the living passing and move on to celebrate.,1\n11410,anetv_4VVIFV6XmKo,517,Two men are in a small gym boxing and fighting one another. They,Two men are in a small gym boxing and fighting one another.,They,gold,walk up and down the room.,continue fighting and hitting one another as a person stands in the corner showing them.,move around the room and arm wrestle with one another.,hang on and proceed to play soccer.,1\n11411,anetv_z_ojmuWzMWo,10123,A dog plays behind and with the groomed dog. The dog now,A dog plays behind and with the groomed dog.,The dog now,gold,puts something on the screen.,runs through a market.,is getting a haircut.,starts walking with it for the dog.,2\n11412,anetv_z_ojmuWzMWo,10120,The woman is spraying water on the small dog with a hose. She,The woman is spraying water on the small dog with a hose.,She,gold,is now blow drying the dog.,gets it into the bucket when the dog comes.,smiles at the camera while in her cap.,helps a dog alongside the dog who not fetch.,0\n11413,anetv_z_ojmuWzMWo,10119,A dog is being bathed by a woman. The woman,A dog is being bathed by a woman.,The woman,gold,is wiping the shoe with a cloth.,is spraying water on the small dog with a hose.,throws a letter to the dog.,sprays the fire with a heavy hose.,1\n11414,anetv_z_ojmuWzMWo,10121,She is now blow drying the dog. The dog,She is now blow drying the dog.,The dog,gold,walks into frame and walks towards the dog she also comes to.,\"tried to cut her face, so she is trying to do something very close to her face.\",is placed in the kennel next to a woman's feet.,washes her face with the shampoo.,2\n11415,anetv_c3SJUucMqJQ,12606,The person pets the belly of the cat. They,The person pets the belly of the cat.,They,gold,finish searching each other.,put the core on the back couch.,push the pov's paws into the area.,take the cat back and set it in a chair.,3\n11416,anetv_c3SJUucMqJQ,12603,They lay the cat down on their lap. They,They lay the cat down on their lap.,They,gold,begin to clip the nails of the cat.,put a face on the wall.,spray some baking nuts and place another.,play between sticks of the pigeons.,0\n11417,anetv_c3SJUucMqJQ,12602,A person picks up a cat off of a chair. They,A person picks up a cat off of a chair.,They,gold,use the ax to pick it off.,lay the cat down on their lap.,set up a bicycle and place them on a wooden bench.,put the cat down on the floor.,1\n11418,anetv_c3SJUucMqJQ,12605,A person is sitting next to them on a laptop. The person,A person is sitting next to them on a laptop.,The person,gold,puts a candle in the oven.,is painting the wall on front of the camera.,pets the belly of the cat.,switches on the water back at a fire.,2\n11419,anetv_5QbiJmDyoM0,17777,A female gymnast mounts a beam in a gym. She,A female gymnast mounts a beam in a gym.,She,gold,\"mounts, flips and flips several times before jumping back onto the routine.\",does several flips and springs across the beam.,mounts the gymnastics beam and starts jumping on flips.,demonstrates re doing gymnastics on the balance beam.,1\n11420,anetv_5QbiJmDyoM0,17778,She does several flips and springs across the beam. She then,She does several flips and springs across the beam.,She then,gold,does various stunts on the beam.,performs several flips and tricks towards the mat.,dismounts and raises her arms.,dismounts and lands happily at the end.,2\n11421,anetv_aqQ7-J9kbUE,19331,People are standing around the campfire. A man,People are standing around the campfire.,A man,gold,showers and they start stepping across the floor.,holds a rope on a fire.,removes mulch from the boat.,picks up sticks from the ground.,3\n11422,anetv_aqQ7-J9kbUE,6913,A man is fueling the fire. The fire,A man is fueling the fire.,The fire,gold,starts to return fire.,scrolls into the screen.,is bound and skewered.,dies down a bit.,3\n11423,anetv_aqQ7-J9kbUE,19332,A man picks up sticks from the ground. The man,A man picks up sticks from the ground.,The man,gold,jumps right off of his skateboard.,drops the clippings into the water.,holds the bat that came with a mallet.,goes closer to the campfire and adds a stick to it.,3\n11424,anetv_aqQ7-J9kbUE,6914,The fire dies down a bit. The man,The fire dies down a bit.,The man,gold,gets it roaring again.,spills harmlessly into the hole and swerves into the hole.,turns on an empty radio and turns around.,lights it on fire.,0\n11425,anetv_aqQ7-J9kbUE,19330,A guy is making a campfire with a blowtorch. People,A guy is making a campfire with a blowtorch.,People,gold,are cooking behind them.,are irritated by a tree.,are standing around the campfire.,is dancing in his living room.,2\n11426,lsmdc0001_American_Beauty-45680,563,\"Someone is smiling, enjoying the show; someone just stares. Someone\",\"Someone is smiling, enjoying the show; someone just stares.\",Someone,gold,runs up from his board and starts to wave.,\"lay someone, shivering, flat and sullen, to someone's seat.\",chuckles at a joke and startles her.,stares at the reverence.,2\n11427,lsmdc0001_American_Beauty-45680,569,\"She smiles her most winning smile at him. He knows this persona well, only it\",She smiles her most winning smile at him.,\"He knows this persona well, only it\",gold,keeps keeping him waiting.,'s never pissed him off as much as it does right now.,has not been at all.,'s not of the kind and making him smile.,1\n11428,lsmdc0001_American_Beauty-45680,566,\"We follow them as they pass a sign that reads. Inside the ballroom, well - dressed real estate professionals\",We follow them as they pass a sign that reads.,\"Inside the ballroom, well - dressed real estate professionals\",gold,enter a spiral between two.,claim the wedding spectacle with a long purple curtain.,are shown a high bow in a alley.,\"stand in clumps, chatting.\",3\n11429,lsmdc0001_American_Beauty-45680,568,She drags someone toward a silver - haired man and his much younger wife. We,She drags someone toward a silver - haired man and his much younger wife.,We,gold,\"recognize the man as someone, the real estate king.\",switch place to find the inside.,\"her from her seat, someone hops into a van and slips into a trail.\",looks up and sees someone lying sleeping with his head resting against the foot of the bed.,0\n11430,lsmdc0001_American_Beauty-45680,565,\"The three of them stare at the tv, like strangers in an airport. We\",\"The three of them stare at the tv, like strangers in an airport.\",We,gold,follow them as they pass a sign that reads.,world suppresses a nervous - growing - awake; vamp raises a head.,\"in town with someone, someone stops in the doorway, listening quietly.\",\", now in, and calm's are someone and someone, walk at the crib.\",0\n11431,lsmdc0001_American_Beauty-45680,567,Catering waiters serve hors d'eouvres. She,Catering waiters serve hors d'eouvres.,She,gold,tries to fight off his white fur boater.,drags someone toward a silver - haired man and his much younger wife.,pours fire into a jug.,\"brings someone to the bathroom, then swings at us as she passes.\",1\n11432,lsmdc3057_ROBIN_HOOD-27711,5771,She crouches beside someone and draws the blanket up over his shoulder. Her gaze,She crouches beside someone and draws the blanket up over his shoulder.,Her gaze,gold,dances lovingly over her body.,lingers on someone as she sidles away.,\"drifts to an unoccupied window, then lowers its gaze into the barred opening of a towering building.\",frown wistfully as she positions her finger at someone.,1\n11433,lsmdc3057_ROBIN_HOOD-27711,5769,\"It starts gently, then quickly gathers force as lightning flashes overhead. Someone\",\"It starts gently, then quickly gathers force as lightning flashes overhead.\",Someone,gold,jerks the massive shell back and forth as punches in the brilliant flames.,\"wakes, leaning over and dribbling her friend.\",continues its advocate as she takes a deep breath.,sits by the hearth in the banquet hall.,3\n11434,lsmdc3057_ROBIN_HOOD-27711,5770,\"Someone sits by the hearth in the banquet hall. At her feet, someone\",Someone sits by the hearth in the banquet hall.,\"At her feet, someone\",gold,\"sleeps on the floor in an undershirt, a blanket covering him from the waist down.\",gazes up at the large hotel room of his family.,belts up a staircase.,watches uncomfortably as she pulls the boy back into the dining room.,0\n11435,lsmdc3057_ROBIN_HOOD-27711,5766,\"Now, puffy clouds reflect the moonlight, casting a gentle glow on Nottingham's fields as the Merry Men plot to reclaim the grain. In slow motion, someone\",\"Now, puffy clouds reflect the moonlight, casting a gentle glow on Nottingham's fields as the Merry Men plot to reclaim the grain.\",\"In slow motion, someone\",gold,lovingly uses his arms and walks his head between his fingertips.,\"throws the dogs at someone, keeping his eyes on someone as they follow someone in the dusty suit.\",\"marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder.\",pulls up at the's dorm and watches as someone glides on.,2\n11436,lsmdc3057_ROBIN_HOOD-27711,5767,\"In slow motion, someone marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder. Little someone\",\"In slow motion, someone marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder.\",Little someone,gold,puts the dead wrapper back down.,rests someone and her son the in a concerned expression.,scowls at the boy.,works beside someone who wears a joyful grin.,3\n11437,lsmdc3057_ROBIN_HOOD-27711,5772,Her gaze lingers on someone as she sidles away. She,Her gaze lingers on someone as she sidles away.,She,gold,throws her head away then watches her arms crossed.,gives a hug in glistening eyes.,finds her in her office.,\"turns her back to him and strides across the great hall, her arms swinging stiffly at her sides.\",3\n11438,lsmdc3057_ROBIN_HOOD-27711,5768,Little someone works beside someone who wears a joyful grin. It,Little someone works beside someone who wears a joyful grin.,It,gold,\"starts gently, then quickly gathers force as lightning flashes overhead.\",\", someone sits in a bench, watches the glint in the ashes.\",smiles and takes a seat.,\"back to his parents, the fairy gives a news card.\",0\n11439,lsmdc3057_ROBIN_HOOD-27711,5775,\"She glances back toward someone with parted lips, then continues out. Now, as legions of soldiers\",\"She glances back toward someone with parted lips, then continues out.\",\"Now, as legions of soldiers\",gold,march double time through the woods.,\"cross a street, night, someone uses a golden disk on to a toy.\",\"arrive, displaying a shady sculpture of dark stone many with gleaming brown doors with every color - toned eye.\",pass by and near the rows of glass panels.,0\n11440,lsmdc3057_ROBIN_HOOD-27711,5774,He watches from the floor as she pauses. She,He watches from the floor as she pauses.,She,gold,touches her skin over her niece.,glances at a chair pushed along the wall.,rubs her hands together.,\"glances back toward someone with parted lips, then continues out.\",3\n11441,anetv_ErEr4Sxdprw,4365,A man is in the gym in tight he bends over picks up a weight over his head and drops it back down. He,A man is in the gym in tight he bends over picks up a weight over his head and drops it back down.,He,gold,walks back and loosens up before walking back up and doing it again adding more weight.,lifts the weight on his head and finally punching the air by lifting it over his head and touching it.,struggles to successfully get the weight down and lifts it over his head so it falls over when he strikes again.,begins to do stops jumping at his knees again and taking a few more forward breaths.,0\n11442,anetv_ErEr4Sxdprw,4366,He walks back and loosens up before walking back up and doing it again adding more weight. He,He walks back and loosens up before walking back up and doing it again adding more weight.,He,gold,does not even realize that she was okay.,heads out of the room.,does this multiple times adding more and more weight to the rack.,formations jumps in the air at the end!,2\n11443,anetv_UGKGBBAckJw,1122,Children are standing on mats in a large basketball court. They,Children are standing on mats in a large basketball court.,They,gold,dart on the table together.,are playing instruments together in front of running building.,are watching and watching the dog.,do exercises lead by an instructor that can not be seen and music is playing.,3\n11444,anetv_UGKGBBAckJw,4034,The students step onto the mat with alternating feet. The students,The students step onto the mat with alternating feet.,The students,gold,listen in the fearful light.,push their bundles along the wall and into the gym.,step side to side while stepping on the mat.,take small steps towards the public table.,2\n11445,anetv_UGKGBBAckJw,4032,A group of children stand on mats together with an instructor waiting to begin. The students,A group of children stand on mats together with an instructor waiting to begin.,The students,gold,work out first raising their arms up and down.,\"moves back and fourth, landing on the rope and ends by jumping out and bowing.\",step back from position to perform as the instructor uses a stepper to clap.,kneel down together and move.,0\n11446,anetv_UGKGBBAckJw,4033,The students work out first raising their arms up and down. The students,The students work out first raising their arms up and down.,The students,gold,turn and gaze around a dark office.,bow for their final move.,are very frustrated and someone starts gathering the field.,step onto the mat with alternating feet.,3\n11447,anetv_UGKGBBAckJw,1124,\"The children start to do steps back and forth onto and then off of the mats, in between moving their arms. The children then\",\"The children start to do steps back and forth onto and then off of the mats, in between moving their arms.\",The children then,gold,\"continue again on their trainer, half turns up to each other again.\",turns around and looks over a city of kids clapping and helping and clapping.,\"go right and left, stepping off and on the mats.\",slide down the slide while the children stand on.,2\n11448,anetv_Ls8ha6c0ye8,15791,He gets a pass into a park area. He,He gets a pass into a park area.,He,gold,stands outside a bush.,takes a cigarette and ads answers on it.,\"is shown driving, walking, and riding horses as he explores the area.\",waves his phone into the air and picks it up.,2\n11449,anetv_Ls8ha6c0ye8,15790,A man is driving a car through a window. He,A man is driving a car through a window.,He,gold,is holding a microphone attached to a train.,is cleaning the garage using a hose.,has some tools in his hand.,gets a pass into a park area.,3\n11450,anetv_Qlh-VSBxcJs,5857,She continues dancing around while moving all around the floor whipping her hair and grabbing her skirt. She,She continues dancing around while moving all around the floor whipping her hair and grabbing her skirt.,She,gold,continues speaking while looking off into the distance.,finishes playing and looks up to the camera and woman speaking to another woman while walking back to the music.,finishes by sitting down on the floor and looking into the mirror.,continues walking around it with a stick.,2\n11451,anetv_Qlh-VSBxcJs,5856,An intro leads into a belly dancer performing a routine in front of a mirror. She,An intro leads into a belly dancer performing a routine in front of a mirror.,She,gold,continues dancing around while moving all around the floor whipping her hair and grabbing her skirt.,begins stepping up and down and ends by falling while a man in a robe is standing next.,continue performing around the court performing ballet movements as she performs.,has the dance back in her knees on the stage and begins bending down to the floor.,0\n11452,anetv_nK7XMj4gYJs,3626,A man is demonstrating a gymnastics performance on two bars. There,A man is demonstrating a gymnastics performance on two bars.,There,gold,swings his hands as she learns.,tries to jump off the beam.,doing tricks for footing several perpendicular bars while browsing a few times.,are spectators watching the performance.,3\n11453,anetv_YDwHdB6MBrE,17959,A woman in a blue jacket is standing on the field watching them. The kids,A woman in a blue jacket is standing on the field watching them.,The kids,gold,begin bouncing up and down as they try to climb the tree.,in the gym are wearing flippers.,are standing on the side watching dance.,are chasing around a yellow ball.,3\n11454,anetv_YDwHdB6MBrE,17958,Kids are playing lacrosse on a field. A woman in a blue jacket,Kids are playing lacrosse on a field.,A woman in a blue jacket,gold,is standing on the field watching them.,is standing around in a clearing stretching ahead.,is playing a game of hop scotch.,is standing on the camels talking to the camera.,0\n11455,anetv_fSA-eTz3GkU,6498,A man in the stands claps for him. Another man,A man in the stands claps for him.,Another man,gold,throws a man back to the camera.,spins and throws a ball onto the field.,walks by along a road doing several tricks.,comes out of the bar.,1\n11456,anetv_dDmc6n79ek0,15940,Finally there are two players face to face with a referee and a pick in the middle of them and then a game begins with multiple different views and multiple different people hitting the puck and skating. A man is quickly skating across the rink and when he collides with an opposing player he,Finally there are two players face to face with a referee and a pick in the middle of them and then a game begins with multiple different views and multiple different people hitting the puck and skating.,A man is quickly skating across the rink and when he collides with an opposing player he,gold,appears and gives up a website that is thrown from afar.,puts two piece back with a goal and scores three more before waving.,hits him very hard with his stick until the man falls to the rink.,falls around and three kicked out.,2\n11457,anetv_dDmc6n79ek0,11936,The group leads into a large game of ice hockey. People,The group leads into a large game of ice hockey.,People,gold,hit the ball back and fourth.,skate around furiously with one man sweeping in the end.,are seen playing volleyball beside the ice while speaking to people watching one game.,are running in the bases as the team practice with a team.,1\n11458,anetv_dDmc6n79ek0,15941,A man is quickly skating across the rink and when he collides with an opposing player he hits him very hard with his stick until the man falls to the rink. The man gets up and the fast paced game,A man is quickly skating across the rink and when he collides with an opposing player he hits him very hard with his stick until the man falls to the rink.,The man gets up and the fast paced game,gold,starts next giving him a few of the videos.,\"begins, while the increasingly large number of men march up and interviews.\",continues on and ends with men manually smoothing out the ice.,continues as the player continues skating and doing various spins in the competition.,2\n11459,anetv_dDmc6n79ek0,15939,\"A vintage, black ad white poor quality video plays and it shows a lot of hockey players on an ice rink just skating around. Finally there are two players face to face with a referee and a pick in the middle of them and then a game\",\"A vintage, black ad white poor quality video plays and it shows a lot of hockey players on an ice rink just skating around.\",Finally there are two players face to face with a referee and a pick in the middle of them and then a game,gold,is made while the players start wrestling at the table.,begins with multiple different views and multiple different people hitting the puck and skating.,put out of the field.,appears on the screen of them.,1\n11460,anetv_dDmc6n79ek0,11935,Several people are seen skating around the ice in black and white. The group,Several people are seen skating around the ice in black and white.,The group,gold,pursues the shots from a large car riding together.,continues to play the game with other instruments.,does several push ups while people watch on the sidelines.,leads into a large game of ice hockey.,3\n11461,lsmdc3009_BATTLE_LOS_ANGELES-525,18949,He points to his temple then gets into someone's face. Someone,He points to his temple then gets into someone's face.,Someone,gold,turns away from someone.,\"hurries back to people, where someone's asleep.\",keeps his glaring eyes steady.,puts down his candle.,2\n11462,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9628,5525,Someone stares at the picture of someone in the newspaper. He,Someone stares at the picture of someone in the newspaper.,He,gold,studies the screen for a second and then tears it off.,\"lies on the ground beside someone, legged fake blood beneath.\",is in a coat and sits down while holding a paper box.,\"sees a raging man with wild, staring eyes struggling violently with his prison guards.\",3\n11463,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9628,5526,\"He sees a raging man with wild, staring eyes struggling violently with his prison guards. A foxglove\",\"He sees a raging man with wild, staring eyes struggling violently with his prison guards.\",A foxglove,gold,grows in stony ground.,\"bolt slips from the view, as the rider walk away.\",is heard coming from the gloom.,knocks a woman out of the toppling.,0\n11464,lsmdc0002_As_Good_As_It_Gets-46299,3001,He leads the way back toward the studio. And he,He leads the way back toward the studio.,And he,gold,\"hears possible footsteps, clicking through another door with a fixture.\",fiddles with hair behind the collar until it's black.,\"grabs her heels, and joins someone in the bloodstained room.\",turns and sees the naked model.,3\n11465,lsmdc0002_As_Good_As_It_Gets-46299,3003,Someone is striking blatantly sexual poses to the increasingly uneasy someone. Someone,Someone is striking blatantly sexual poses to the increasingly uneasy someone.,Someone,gold,\"dances over with the word, not wanting to get a certain way.\",has instinctively put someone on the defensive.,is putting on a black coat and full - length leather jacket.,\"is puzzled by the noise, and roars with some stores.\",1\n11466,lsmdc0002_As_Good_As_It_Gets-46299,3002,And he turns and sees the naked model. Someone,And he turns and sees the naked model.,Someone,gold,has a ball that he'll need for.,is seated in a side chair.,\"turns a channels on someone, not wearing a rustic helmet.\",moves back to retrieve his clothes.,3\n11467,lsmdc1020_Crazy_Stupid_Love-81510,6492,She gazes at him and smiles. She,She gazes at him and smiles.,She,gold,places her arms around her back.,\"props herself up in bed, leans over and kisses him on the cheek.\",takes his shirt off and she grins.,\"looks down, then tenderly.\",1\n11468,lsmdc1009_Spider-Man3-76699,3705,Someone tears up the tattered skin tight black fabric across his chest. A slither of Symbiote,Someone tears up the tattered skin tight black fabric across his chest.,A slither of Symbiote,gold,\"appears on the bottom of his headset, and disappears in a soft wind.\",bathes his face as he proceeds to the portrait.,falls onto someone's shoulder.,lies in the ring beneath her wig.,2\n11469,lsmdc1009_Spider-Man3-76699,3713,He prices the door open with his fingertips. Someone,He prices the door open with his fingertips.,Someone,gold,runs through the ruins.,see him in position below.,dumps his once water out of a mud trailer.,looks around his shabby room.,3\n11470,lsmdc1009_Spider-Man3-76699,3710,\"Later in his room, someone is in the shower with the water streaming over his tightly closed eyes. A short time later, he\",\"Later in his room, someone is in the shower with the water streaming over his tightly closed eyes.\",\"A short time later, he\",gold,lies with a bandage wrapped around his left shoulder.,\"drives down a highway and through a leafy, dual neighborhood digs.\",opens the hedging and looks through.,is sitting on his floor for lonely leaning against the french windows.,3\n11471,lsmdc1009_Spider-Man3-76699,3709,\"Like a wild cat with ferocious jagged teeth, he lurches forward as venom. Later in his room, someone\",\"Like a wild cat with ferocious jagged teeth, he lurches forward as venom.\",\"Later in his room, someone\",gold,writes in a book.,is in the shower with the water streaming over his tightly closed eyes.,is listening to someone.,\"wipes a powder up his nose, then lifts the clamps to his chest.\",1\n11472,lsmdc1009_Spider-Man3-76699,3701,\"He falls against the bell in a struggle. For a second, the mask\",He falls against the bell in a struggle.,\"For a second, the mask\",gold,snaps off and someone throws a leather sweatshirt under a twin tank.,of a large roof is shown.,seems to disintegrate then snaps back into place.,rises off its sepoys as it flies.,2\n11473,lsmdc1009_Spider-Man3-76699,3707,\"Above him, someone tears the unraveling Symbiote from his body. The slimy black Symbiote\",\"Above him, someone tears the unraveling Symbiote from his body.\",The slimy black Symbiote,gold,rises until a cake is flung aside.,\"shines on bloodshot, with large maintenance man working in it.\",slithers off the edge of the ledge that someone's on and snakes down the bell tower.,takes out his rich outline and winks at someone.,2\n11474,lsmdc1009_Spider-Man3-76699,3703,Someone looks up at the sound. Someone,Someone looks up at the sound.,Someone,gold,bites a popsicle and stares down after it.,turns and walks up the hall to the bottles beside him.,\"pulls up the mask, ripping it across his contorted features.\",slams her foot against the wall and primping at the bottom.,2\n11475,lsmdc1009_Spider-Man3-76699,3706,\"A slither of Symbiote falls onto someone's shoulder. Above him, someone\",A slither of Symbiote falls onto someone's shoulder.,\"Above him, someone\",gold,tears the unraveling symbiote from his body.,watches a man lying on his back in his room.,is struggling desperately to pull back himself.,lands shield over the man and his mother.,0\n11476,lsmdc1009_Spider-Man3-76699,3711,\"A short time later, he is sitting on his floor for lonely leaning against the French windows. He\",\"A short time later, he is sitting on his floor for lonely leaning against the French windows.\",He,gold,crosses a lush - and - blue lawn.,presses liquid on his lips and tenses.,looks away from his brother and starts to lift a racket from a shelf.,\"trudges to the door and holds the door, which comes off in his hand.\",3\n11477,lsmdc1009_Spider-Man3-76699,3704,He looks up the vertiginous tower as if he were at the deep of a deep well. Someone,He looks up the vertiginous tower as if he were at the deep of a deep well.,Someone,gold,works on a fish at a leisurely pace as it just overtakes the water.,\"steps to the explodes and looks at them, satisfied, and takes a step forward.\",\"stands in the doorway - - component charger, under the lists and feeling for someone.\",tears up the tattered skin tight black fabric across his chest.,3\n11478,lsmdc1009_Spider-Man3-76699,3702,\"For a second, the mask seems to disintegrate then snaps back into place. Someone\",\"For a second, the mask seems to disintegrate then snaps back into place.\",Someone,gold,adds a feather into the sweatshirt and up.,flips across the bars several times.,looks up at the sound.,\"sighs, as his father dive out of the corner center.\",2\n11479,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59945,3551,Someone is preparing to leave. Someone,Someone is preparing to leave.,Someone,gold,is just away from him.,is over to her.,\"looks at the young hobbit, moved by his courage.\",\"leans over by the door, watching someone coldly.\",2\n11480,anetv_K8W0PtyPlD4,9655,Rules are shown for the game. A group of girls,Rules are shown for the game.,A group of girls,gold,play volleyball over stage.,play a volley ball game.,are shown playing hockey.,are shown gathered in studio gymnasium.,1\n11481,anetv_K8W0PtyPlD4,9656,A group of girls play a volley ball game. A group of adults,A group of girls play a volley ball game.,A group of adults,gold,carry a curling boat with the classmates.,watch a boy 'score.,stands interviewed with the boy.,play a volleyball game on an overcast day.,3\n11482,anetv_K8W0PtyPlD4,9653,A group of adults plays a game of beach volleyball. Groups of children of kids,A group of adults plays a game of beach volleyball.,Groups of children of kids,gold,play a game of beach volleyball.,play beer pong in a large gymnasium.,appear to be from different elliptical machines on white shacks.,performs five people in the big rear waves.,0\n11483,anetv_K8W0PtyPlD4,9654,Groups of children of kids play a game of beach volleyball. Rules,Groups of children of kids play a game of beach volleyball.,Rules,gold,are nerdist as people ride.,are shown for the game.,\"join them, they use a wash to show the game.\",strains against the playground.,1\n11484,anetv_AZaSkc1gnhY,3700,\"After, the man plays guitar indoor on front an audience. Next, the man\",\"After, the man plays guitar indoor on front an audience.\",\"Next, the man\",gold,plays harmonica and guitar at the same time.,stops jump and talks and after a closeup of the instrument close and then shows the machine closeup.,hits the saxophone and the ball.,plays tam - tams while wearing a hat.,0\n11485,anetv_AZaSkc1gnhY,3699,\"Then, the man hols a cup of coffee and a guitar in the street. After, the man\",\"Then, the man hols a cup of coffee and a guitar in the street.\",\"After, the man\",gold,plays guitar indoor on front an audience.,put a cigarette on the electronic chamber and stretch iron tape.,stops a campfire while taking a beer and lighting the fire.,wash a can and take a spoon.,0\n11486,anetv_AZaSkc1gnhY,3698,A man drinks coffee and then plays guitar indoor. The man,A man drinks coffee and then plays guitar indoor.,The man,gold,jogs up to another room of people behind someone.,\"sits, drinks mouthwash and swallows.\",stops playing a harmonica and smiles from someone.,makes a pause and takes his coffee.,3\n11487,anetv_juLxWt_3omw,5618,Then she lifts the heavy yellow weight and someone who's watching her shows peremptory by yelling. She,Then she lifts the heavy yellow weight and someone who's watching her shows peremptory by yelling.,She,gold,jogs into the narrow hallway.,raises two blades to her chest as she holds an unseen door to him and calls out.,holds it up for a good second and then drops it back down to the ground.,\"is very high, and there are a black screen where the women are shown throwing the discus and yelling.\",2\n11488,anetv_juLxWt_3omw,18446,A woman is seen standing ready in front of a set of weights. She,A woman is seen standing ready in front of a set of weights.,She,gold,\"puts her arms out, then leans on a set of weights.\",walks in and out of frame while still jumping onto a camera.,lifts the bar up over her head and begins to throw it down in the end.,lifts weights all over her shoulders while the camera captures her movements.,2\n11489,lsmdc1031_Quantum_of_Solace-84320,7864,He walks pensively away from the desk then goes back. He,He walks pensively away from the desk then goes back.,He,gold,draws a photograph of himself.,is detailing someone's grandparents.,displays another news report.,grins and walks off.,3\n11490,anetv_a7QrIgqkyao,19054,A woman is standing behind a table with several pumpkin carving kits. She,A woman is standing behind a table with several pumpkin carving kits.,She,gold,begins to pull the lens out of fish's eye.,pours more ingredients into the paint and shows the cooking pasta.,uses his knives to put pasta into a mixer.,shows the contents of the books.,3\n11491,anetv_a7QrIgqkyao,19056,\"The woman chooses a design, carving it into the pumpkin. She then\",\"The woman chooses a design, carving it into the pumpkin.\",She then,gold,begins mixing sand in the bowl and putting them into a bowl.,\"places batteries in tea light to go inside, and paints the pumpkin black.\",cuts cellophane to make a cake and make sure he is the top.,places a candle on the cupcake.,1\n11492,anetv_a7QrIgqkyao,19055,She shows the contents of the books. The woman,She shows the contents of the books.,The woman,gold,inserts a brown animal into a toy and places the books on it.,\"chooses a design, carving it into the pumpkin.\",holds out a pencil and plastic it.,begins brushing the bathroom mirror.,1\n11493,lsmdc1041_This_is_40-8908,12187,\"Someone nods behind her large, round glasses. At the front of the store, someone\",\"Someone nods behind her large, round glasses.\",\"At the front of the store, someone\",gold,talks to the bartender.,accepts her old cellphone.,gives a baked gaze.,hangs a christmas garland.,3\n11494,anetv_gTh9bd9yV9E,2081,\"Then, the teen puts color on the cheeks, then she eyeliners the eyelids. After, the teen\",\"Then, the teen puts color on the cheeks, then she eyeliners the eyelids.\",\"After, the teen\",gold,gets her pink hair cut and cut off the top of his photos.,\"brushes the white brush, then faces the other man.\",takes the drink and plays around the while.,paint the mouth and put lipstick on the cheeks and paint the eyelids.,3\n11495,anetv_gTh9bd9yV9E,2080,\"A teen puts make up to an man on his face. Then, the teen\",A teen puts make up to an man on his face.,\"Then, the teen\",gold,\"puts mascara, lip sticks and paint the eyelid with an eyeliner.\",hops on his feet.,make back his hands to demonstrate temperature.,takes running again from side to side.,0\n11496,anetv_gGai6uu5Yjs,628,Women are doing exrcise in elliptical bike in room. men,Women are doing exrcise in elliptical bike in room.,men,gold,are in a room doing exercise in elliptical bike.,is showing them in different forms and suede liners.,are jumping rope in a gym doing a big jump.,are in the living room talking.,0\n11497,anetv_gGai6uu5Yjs,16448,\"The back view of a woman is shown, followed by two more. A man and other women\",\"The back view of a woman is shown, followed by two more.\",A man and other women,gold,are shown with the camera in her hands and moving to the vacuum when one handled the pieces.,are shown using elliptical trainers at varying speeds as they pedal and exercise.,are playing a slack field.,are shown warming up on exercise mats using one hustling indoors.,1\n11498,lsmdc1028_No_Reservations-82818,6115,She walks back up the curving staircase to her apartment. She,She walks back up the curving staircase to her apartment.,She,gold,starts to lift herself to the ground and hurries in.,walks to the stereo.,\"unlocks the door and opens it, stands beside it for a few seconds then closes it again.\",is sitting across the desk watching them.,2\n11499,lsmdc1028_No_Reservations-82818,6114,\"Someone carries on down the stairs, as someone goes into his apartment. She\",\"Someone carries on down the stairs, as someone goes into his apartment.\",She,gold,catches briefly in the clothing.,remains in the doorway from the kitchen towards a text on the lower end of the glass.,turns the journal at the faint color of pride - a woman's outside the kitchen.,walks back up the curving staircase to her apartment.,3\n11500,lsmdc1028_No_Reservations-82818,6116,\"She unlocks the door and opens it, stands beside it for a few seconds then closes it again. At her therapist's, someone\",\"She unlocks the door and opens it, stands beside it for a few seconds then closes it again.\",\"At her therapist's, someone\",gold,sits in a car reading a black door.,garnishes a plate of food.,heads back to work.,turns out the numbers into a rubix cube without yet presenting it's the fades.,1\n11501,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15737,\"He punches and kicks out wildly, deflecting shots, but a Quaffle unseats him. He\",\"He punches and kicks out wildly, deflecting shots, but a Quaffle unseats him.\",He,gold,\"speeds past, spinning in a blue suit.\",\"grabs the falcon, races past the wharf and looks from the ocean to the boat.\",dangles from the end of his broomstick.,\"is grabbed, as the tv was thrown from his grasp.\",2\n11502,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15735,\"He punches it away with his right hand, kicks another, and punches a third with his left hand. He\",\"He punches it away with his right hand, kicks another, and punches a third with his left hand.\",He,gold,\"cuffs it, exposing the whip.\",knocks the suv off the clay.,grabs hold of the next quaffle.,\"pulls the trigger, forcing the baby against the outer wall.\",2\n11503,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15733,\"Two players collide and fall. Holding a round leather Quaffle, someone\",Two players collide and fall.,\"Holding a round leather Quaffle, someone\",gold,tumbles in through the front.,selects autograph for another celebrating.,aim's it at someone's goal.,slaps a yellow ball over the peg.,2\n11504,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15740,She smiles as someone is jerked sideways and the Quaffle flies past him through the goal. A Quaffle,She smiles as someone is jerked sideways and the Quaffle flies past him through the goal.,A Quaffle,gold,runs up to a railing.,\"wave hits them, sending him sprawling.\",is aimed at someone who is swinging helplessly.,appears again from a house.,2\n11505,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15730,\"From the stands, someone waves to him. Someone\",\"From the stands, someone waves to him.\",Someone,gold,releases his boot and shoots an arrow.,sees the green leave.,swaggers up to someone.,sets his wine down and takes a sip.,2\n11506,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15738,Someone is up on her feet rooting for someone. He,Someone is up on her feet rooting for someone.,He,gold,climbs the stairs into the den and finds someone standing with her.,is bleeding as he comes down the stairs.,\"regains his seat on the broomstick, and watched by someone, clings on anxiously.\",becomes aware of that sound of the level of the boardroom.,2\n11507,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15741,A Quaffle is aimed at someone who is swinging helplessly. It,A Quaffle is aimed at someone who is swinging helplessly.,It,gold,\"cranes his neck to watch someone's anger, which has begun to rage, and he is concentrating by the battle with drovers.\",\"is the orb of asgard, facing the buddy, who is on the ground behind them.\",stumbles off the chaos on the breaks.,hits his head and bounces away.,3\n11508,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15734,\"Holding a round leather Quaffle, someone aim's it at someone's goal. He\",\"Holding a round leather Quaffle, someone aim's it at someone's goal.\",He,gold,touches the model 'blackberry.,shrugs as she raises a glass.,fires into a small crowd of ducks.,\"punches it away with his right hand, kicks another, and punches a third with his left hand.\",3\n11509,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15739,Someone whispers into her hand. She smiles as someone is jerked sideways and the Quaffle,Someone whispers into her hand.,She smiles as someone is jerked sideways and the Quaffle,gold,leaves her making the graceful dance.,is pressed close on hers.,wrap wraps her in round.,flies past him through the goal.,3\n11510,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15729,They all turn towards people. Someone,They all turn towards people.,Someone,gold,and someone look confident and handsome.,is shoulder - deep in the back.,\"walks out of someone's house and down the road, crushing them.\",stands stiffly wearing a protective leather helmet.,3\n11511,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15736,He grabs hold of the next Quaffle. It,He grabs hold of the next Quaffle.,It,gold,'s someone's turn to protect his goal.,\"balances rapidly, jumping up and down.\",hard launches a powerful energy surge.,knocks someone to the floor.,0\n11512,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15732,Someone smirks as he catches someone's eye. She,Someone smirks as he catches someone's eye.,She,gold,hands her an earpiece.,tilts her head and regards someone full of the downcast stare.,\"glances away, then back.\",flashes a smile and drops his head.,2\n11513,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15731,Someone flies confidently towards a circular goalpost. Someone almost,Someone flies confidently towards a circular goalpost.,Someone almost,gold,hit the bored man.,slips off his broomstick as he heads for the opposing goal.,bursts through the great gate.,deflects the thread of him.,1\n11514,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15725,People hurtle through the clouds towards Hogwarts. They,People hurtle through the clouds towards Hogwarts.,They,gold,walk through a quiet courtyard.,hit the invisible shield and retreat.,\"dressed blows on the surface, covering the rippling foam against the canvas.\",\"swords, on shelves: lantern, five columns.\",1\n11515,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15727,Someone is in a cluttered room. He,Someone is in a cluttered room.,He,gold,is at the bar.,\"looks around, tossing an apple.\",sits on the sofa lining the sink.,picks down a torch and hurries to the stairs.,1\n11516,anetv_Lyaozxv4_qU,10275,The camera cuts back to the first man briefly before returning to the leaf blower man. The camera,The camera cuts back to the first man briefly before returning to the leaf blower man.,The camera,gold,turns back to his own.,is right to him that the cat is being advertised on the lawn mower.,does so again a second time.,stops while the man is still outside.,2\n11517,anetv_Lyaozxv4_qU,10274,The camera pans and then follows a man wearing a leaf blower as he blows leaves. The camera,The camera pans and then follows a man wearing a leaf blower as he blows leaves.,The camera,gold,cuts back to the first man briefly before returning to the leaf blower man.,gestures to people on the sidewalk.,pans to the right and the man continues to smoke around the bushes.,pans around the outdoor the two dogs.,0\n11518,lsmdc1005_Signs-4555,13292,The brothers meet up again at the front of the house. They,The brothers meet up again at the front of the house.,They,gold,gazes at the cloud - dusted sky outside them from an upturned back tree.,search the apartment even.,\"are going again, and the film cuts into their students, followed by the deejay.\",stop and look around breathlessly.,3\n11519,lsmdc1005_Signs-4555,13293,\"Someone keeps his gaze fixed firmly on the farmhouse roof as he paces backwards down the gloomy yard, and tries to get a better view. He\",\"Someone keeps his gaze fixed firmly on the farmhouse roof as he paces backwards down the gloomy yard, and tries to get a better view.\",He,gold,\"turns and shines off, lined to eye.\",outlines a tall driveway and creates a protective shield.,walks tensely back to someone.,looks over his shoulder on the ground.,2\n11520,lsmdc1005_Signs-4555,13288,An outside light comes on. They,An outside light comes on.,They,gold,part past someone and someone from the free cavity.,rush out and split up.,puts oil on a woman who's mashed potatoes into a roll.,cling to a divider separating the four from the buildings and stand for a shelter.,1\n11521,lsmdc1005_Signs-4555,13295,People turn and look behind them as something brushes past the swing. There,People turn and look behind them as something brushes past the swing.,There,gold,words appear on the screen.,\"'s an urgent rustling in the maize stalks beyond the swing, which gradually dies away.\",see someone and the elevator enter.,looks around two graves.,1\n11522,lsmdc1005_Signs-4555,13290,Someone comes to the back of the house as a dust bin's tipped over up ahead. Someone,Someone comes to the back of the house as a dust bin's tipped over up ahead.,Someone,gold,runs along the side of the house.,watches football against the cliff wall.,enters from the burning room and into the private classroom.,grabs a piece of tape and holds it to his ear.,0\n11523,lsmdc1005_Signs-4555,13291,Someone runs along the side of the house. The brothers,Someone runs along the side of the house.,The brothers,gold,walk along a catwalk.,meet up again at the front of the house.,are holding umbrella over glasses grimly.,gaze out on the rows of cubicles.,1\n11524,lsmdc1005_Signs-4555,13296,\"There's an urgent rustling in the maize stalks beyond the swing, which gradually dies away. Next morning, someone\",\"There's an urgent rustling in the maize stalks beyond the swing, which gradually dies away.\",\"Next morning, someone\",gold,stops the dead nhl.,\"sits in the dining room with someone, who's holding her walkie talkie.\",\"sits at the edge of a large dining room, standing just outside the door of his desk.\",sits with a food tray covered in vomit.,1\n11525,lsmdc1005_Signs-4555,13294,He walks tensely back to someone. People,He walks tensely back to someone.,People,gold,are watching the pianist figure.,sit at the top of the stairs.,turn and look behind them as something brushes past the swing.,continue to leave without someone.,2\n11526,lsmdc1005_Signs-4555,13289,They rush out and split up. Someone,They rush out and split up.,Someone,gold,comes to the back of the house as a dust bin's tipped over up ahead.,steps out into a padded street and runs to someone.,\"makes thick pas with a vigorous effort, poking his partner at men in the window, then firmly punches him in the chin.\",lies on his bed and is gasping excitedly.,0\n11527,anetv_-OH1BDqao9w,7491,The car gets driven out. People,The car gets driven out.,People,gold,are sitting outside of the building.,\"is 31 through an airport, along the highway.\",burst from someone's car and stop at the wheel.,drive over the town.,0\n11528,anetv_-OH1BDqao9w,7490,The tires are getting scrubbed. The car,The tires are getting scrubbed.,The car,gold,are not gaining on the tires.,is getting dried by a man.,pulls over as someone covers the weather.,drives down the night.,1\n11529,anetv_-OH1BDqao9w,7487,The front of a car wash building is shown. A guy,The front of a car wash building is shown.,A guy,gold,talks to someone inside a black car.,is sitting in a grass oom.,walks outside a house holding a scraper.,drives as he increases the speed of his pedal.,0\n11530,anetv_-OH1BDqao9w,7492,People are sitting outside of the building. People,People are sitting outside of the building.,People,gold,are waiting inside of the waiting room.,are playing a volleyball indoor.,are going down the river.,are playing baseball in a field.,0\n11531,anetv_-OH1BDqao9w,7489,He vacuums the seats of the car. He car,He vacuums the seats of the car.,He car,gold,stops in the driveway.,places along green lights around it.,\"gets close to the car again, holding up the half - pet sign and changes the life.\",gets washed by a pressure washer.,3\n11532,anetv_-OH1BDqao9w,9643,The outside of a car wash is seen. A man,The outside of a car wash is seen.,A man,gold,is shown peeling a cart.,is washing a horse at a sink.,is scrubbing drys and washing the sink.,is talking to a woman inside the car.,3\n11533,anetv_-OH1BDqao9w,9644,\"A man is talking to a woman inside the car. She gets out, and he\",A man is talking to a woman inside the car.,\"She gets out, and he\",gold,takes it in to be washed and dried.,gets onto another bike bike.,gets in the car with her.,uses a rain pump to spray and spray ice up.,0\n11534,anetv_x3cOxXOYbwA,6153,A weight is seen putting put on a bar and leads into a man kneeling down. The man,A weight is seen putting put on a bar and leads into a man kneeling down.,The man,gold,lifts several weight when it hits his legs and the person falls down the mats.,grabs a set of weights and begins to lift it over his head.,spins fourth and lifts all the weights while riding back back to the camera.,\"is laying himself down on the mat, holding up several tools and liquids in front of him.\",1\n11535,anetv_x3cOxXOYbwA,6154,The man grabs a set of weights and begins to lift it over his head. He,The man grabs a set of weights and begins to lift it over his head.,He,gold,are sitting on the side watching the men as they make skate.,swings and lands on the floor and moving more times further.,throws the weight up and then back on the ground.,begins lifting up the weights.,2\n11536,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59896,12123,\"Someone is already at the door, he turns to someone. Someone\",\"Someone is already at the door, he turns to someone.\",Someone,gold,weeps over his furious face.,\"comes out to join her, putting him fast, despite herself.\",glares from his superior as he leaves the entrance.,hurries out the door.,3\n11537,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59896,12122,Someone holds out the envelope. He,Someone holds out the envelope.,He,gold,hands it to someone.,holds up his thumb.,looks down at the quill.,\"looks down and closer, then flips him over and squeezes at them.\",0\n11538,anetv_6DzBNkTen1g,558,A woman in a black shirt tries to hit a pink pinata. She,A woman in a black shirt tries to hit a pink pinata.,She,gold,goes over and talks to people standing next to it.,jumps up and throws water into a puddle.,bends down and starts toward the girl hitting the ball.,picks up the cue and throws it again.,0\n11539,anetv_6DzBNkTen1g,9550,A woman in a black shirt is blind folded. She,A woman in a black shirt is blind folded.,She,gold,starts swinging a bat at a pinata.,explains how to do the rollers.,has the top nose piercing.,adds a photo to the apartment.,0\n11540,anetv_yaWwad6WXVY,7156,\"The man stands and leave the court. After, several men\",The man stands and leave the court.,\"After, several men\",gold,play polo in a number of red shirts and make their goals.,practice basketball in a court.,fall off a trampoline.,are shown in a kitchen and then watch the scene.,1\n11541,anetv_yaWwad6WXVY,7155,\"A person practice dribbling and shooting the ball walking or running in the court, while a man watch the training. The man\",\"A person practice dribbling and shooting the ball walking or running in the court, while a man watch the training.\",The man,gold,is again standing to the second orange ball indoors.,continues running as a girl pushes in the ground as other player avoiding the screen shows his point of view from the platform to man,runs on stilts and jumps on a weightlifting barrier.,stands and leave the court.,3\n11542,anetv_PbzmcZ_IORE,14614,A toy dog is walking on the floor. It,A toy dog is walking on the floor.,It,gold,jogs off in the background.,is wearing bikini shirts and red pants.,begins to blow dry the leaves.,stops to look around back and forth.,3\n11543,anetv_PbzmcZ_IORE,14615,It stops to look around back and forth. Someone,It stops to look around back and forth.,Someone,gold,\"takes a seat and scoops it up, tying it around his fingertip.\",pulls through the pages to find business products.,picks the dog up and puts it back down.,remains on the door.,2\n11544,anetv_SxIJ6MjcgnY,1727,\"One owner does a hand stand a throws the frisbee to his dog, who is able to catch. Many owners and dogs\",\"One owner does a hand stand a throws the frisbee to his dog, who is able to catch.\",Many owners and dogs,gold,throwing and catching frisbees and doing tricks while doing so.,are shown where several dogs are groomed.,are seen playing instruments while others from the shoes walk around and catch the frisbee.,are moving well along the side of the table.,0\n11545,anetv_SxIJ6MjcgnY,1726,A man throwing the frisbee to his dog and the dog catches. One owner,A man throwing the frisbee to his dog and the dog catches.,One owner,gold,\"does a hand stand a throws the frisbee to his dog, who is able to catch.\",moves to the ground and follows lifebuoy.,takes the clip and washes the dog with the frisbees.,tries and does tricks with his other dog walking.,0\n11546,anetv_xfNYfCAlkM4,2706,A boy shows up on the screen and gets a cup of water and gargles it. He,A boy shows up on the screen and gets a cup of water and gargles it.,He,gold,pours off the wall and goes back to drinking.,hugs a pack of men standing in front of him instructing him as well as the camera.,smiles and walks off the screen for a moment.,hangs open a box.,2\n11547,anetv_IAtxK0w_ybY,3224,\"They put it in a bowl, and something then pour it in a pitcher. They\",\"They put it in a bowl, and something then pour it in a pitcher.\",They,gold,are given off the roll of dough.,are then mixing and lifted one another and pour it into a plastic cup.,\"stick, near their bowls and begin to old set.\",pour it into glasses and drink it.,3\n11548,anetv_IAtxK0w_ybY,3223,The ladies cook a syrup and add lemons and the syrup to a blender. They,The ladies cook a syrup and add lemons and the syrup to a blender.,They,gold,\"put it in a bowl, and something then pour it in a pitcher.\",paddle water with water.,they spread a white dough into a container.,add the clean mix.,0\n11549,anetv_IAtxK0w_ybY,3222,We see two ladies in a kitchen preparing to cook. The ladies,We see two ladies in a kitchen preparing to cook.,The ladies,gold,grab the cooked pasta for the bowl and pour the cheered raw on a plate.,\"stand place, bathing each other and eat in chunks.\",cook a syrup and add lemons and the syrup to a blender.,puts the pot on the stove and shows balls and ending product.,2\n11550,anetv_IAtxK0w_ybY,12963,\"Woman cuts the lemon, des seed, chop them and put them on the blender. then\",\"Woman cuts the lemon, des seed, chop them and put them on the blender.\",then,gold,pour the drink into the cookies and put it on a plate.,pour the juice in the syrup and serve in a clear cup.,\", the woman puts a piece of bread on top and then serves the food.\",pour a cup of orange juice.,1\n11551,anetv_IAtxK0w_ybY,3221,Colorful circles appear and the title comes up. We,Colorful circles appear and the title comes up.,We,gold,see the name of the ocean.,see two ladies in a kitchen preparing to cook.,see a person kick a wind through a tree.,are seen meeting with the sky while one man sits on the side each and round waterfalls yet jumping one at a time.,1\n11552,anetv_sV6NoTdFaPE,10196,A young woman is seen speaking to the camera while holding onto a field hockey stick. The girl then,A young woman is seen speaking to the camera while holding onto a field hockey stick.,The girl then,gold,hits the ball all around the yard while the camera follows.,begins spinning around the beam and begins swinging in the air and spinning around.,begins tattooing her belly.,puts it on a board and begins running down the field in slow motion.,0\n11553,anetv_sV6NoTdFaPE,10197,The girl then hits the ball all around the yard while the camera follows. She,The girl then hits the ball all around the yard while the camera follows.,She,gold,moves back and fourth while people watch on the sides.,continues to hit the ball around and stops to look at the camera.,stops playing and takes her hand up.,would only point in the game again.,1\n11554,anetv_bw96D55q2FI,1880,A man then begins to ride his skateboard from the top of the roof down an inclined road. The man then,A man then begins to ride his skateboard from the top of the roof down an inclined road.,The man then,gold,puts several switches on a road to grocer drive.,begins moving and skateboarding throughout the neighborhood and interacting with the people.,comes back from the left and uses his skateboard holding the snow.,moves closer and begins dancing around the lawn and moving up and down.,1\n11555,anetv_bw96D55q2FI,1879,A skateboarder comes by and rolls in a patch of dirt by the side walk. A man then,A skateboarder comes by and rolls in a patch of dirt by the side walk.,A man then,gold,pulls up in a driving course and then begin skateboarding.,begins to ride his skateboard from the top of the roof down an inclined road.,rides on the vehicle and tries another kick to avoid her doing what he came on.,shows exterior the area with the bike and then materials across the competition.,1\n11556,anetv_bw96D55q2FI,1882,\"All of a sudden, the man walks through the subway and gets off his skateboard until he gets to his destination. He then\",\"All of a sudden, the man walks through the subway and gets off his skateboard until he gets to his destination.\",He then,gold,is shown moving several times in the first manner and does n't really it.,stands over the predator railing where the person skis at the bottom of the front steps.,\"proceeds to skate through the city, jumping over the poles and the credits begin to roll.\",drops the debris and looks up.,2\n11557,anetv_bw96D55q2FI,1881,\"The man then begins moving and skateboarding throughout the neighborhood and interacting with the people. All of a sudden, the man\",The man then begins moving and skateboarding throughout the neighborhood and interacting with the people.,\"All of a sudden, the man\",gold,walks through the subway and gets off his skateboard until he gets to his destination.,\"comes into his car, that stops.\",moves using all the objects as he is about to build up fire.,\"jumps into his hands, doing tricks, going up and down.\",0\n11558,lsmdc0019_Pulp_Fiction-56684,1617,Someone powders her nose by doing a big line of coke off the bathroom sink. Her head,Someone powders her nose by doing a big line of coke off the bathroom sink.,Her head,gold,jerks up from the rush.,presses the cloth to her lips.,is pulled up in memory.,rests with her friend on her knees.,0\n11559,lsmdc0019_Pulp_Fiction-56684,1619,\"As he chews, his eyes scan the Hellsapopinish restaurant. Someone\",\"As he chews, his eyes scan the Hellsapopinish restaurant.\",Someone,gold,comes back to the table.,dons his fatal blood mask before he steps inside.,watches a book from the laptop.,smiles at his sleeping woman.,0\n11560,lsmdc0019_Pulp_Fiction-56684,1618,Her head jerks up from the rush. Someone,Her head jerks up from the rush.,Someone,gold,twists in and throws papers.,gets out and inspects the carpet.,strokes his face and wipes his palm across her butt cheeks.,digs into his someone steak.,3\n11561,lsmdc1011_The_Help-78287,3812,Someone scowls at her reflection. Her mother,Someone scowls at her reflection.,Her mother,gold,knits up with makeup.,zips her up roughly.,nods and steals a bite of her expensive - hearted spin.,\"takes a place for the phone, picks up the bags and steps up behind the doctors.\",1\n11562,lsmdc3009_BATTLE_LOS_ANGELES-627,1526,He tosses her a magazine. Someone,He tosses her a magazine.,Someone,gold,eats her bite of doritos.,struggles to his knees.,watches as someone puffs through pursed lips.,shows her french fries.,1\n11563,lsmdc3009_BATTLE_LOS_ANGELES-627,1527,Someone struggles to his knees. Someone,Someone struggles to his knees.,Someone,gold,ties someone's legs around the top of her trolley.,grabs his buttocks and sits back down.,follows him up into the building.,lifts a grenade launcher.,3\n11564,lsmdc1058_The_Damned_united-98399,18471,\"Someone's face softens into a grin. Beaming, someone\",Someone's face softens into a grin.,\"Beaming, someone\",gold,nuzzles her laotong with her lips.,runs and embraces him.,reaches over to bring him briefly into someone's lips.,turns and walks away.,1\n11565,lsmdc1058_The_Damned_united-98399,18461,\"The clock shows five past four. Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone\",The clock shows five past four.,\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone\",gold,\"looks alternately at his office floor, then at the clock.\",whips the sling cap.,looks around and snarls as he tv at the darkened house.,turns on the lights.,0\n11566,lsmdc1058_The_Damned_united-98399,18450,\"He strolls to the far end of the dressing room and kneels before a heavy - featured, sandy - haired lad, looking him in the eye. The young man\",\"He strolls to the far end of the dressing room and kneels before a heavy - featured, sandy - haired lad, looking him in the eye.\",The young man,gold,opens a cabinet door to finish alone.,begins wearing a worn veil while looking at someone as he stares after his son.,\"smiles bashfully and hangs his head, as someone rises to his feet and looks around the other players.\",grabs the boy's shirt and draws around.,2\n11567,lsmdc1058_The_Damned_united-98399,18453,Someone nudges his shoulder against the young players. Someone,Someone nudges his shoulder against the young players.,Someone,gold,faces him tenderly and watches.,gets off his stool and stands up.,stands before the team.,\"gazes toward someone, who turns her head.\",2\n11568,lsmdc1058_The_Damned_united-98399,18468,\"Outside his office door, he smooths both hands over his hair, then strides off down the gloomy, brick - walled passage. He\",\"Outside his office door, he smooths both hands over his hair, then strides off down the gloomy, brick - walled passage.\",He,gold,\"approaches the lobby, where his number is framed by a dresser and pages.\",stops in front of a house through a window.,elbows pound against the steel valve glass metal door.,stops in his tracks as he sees people turn the corner ahead.,3\n11569,lsmdc1058_The_Damned_united-98399,18449,Someone marches into the Derby home dressing room. The Derby players,Someone marches into the Derby home dressing room.,The Derby players,gold,tuck the white shirts of their home kit into their shorts and sit on benches as someone strolls in.,collide and pick up balls his feet again.,hold their opponent's weapon back.,find their seats in a arena by a group of oriental servants.,0\n11570,lsmdc1058_The_Damned_united-98399,18460,Sunlight streams in from the terraces through the narrow windows set high in the stark walls. The clock,Sunlight streams in from the terraces through the narrow windows set high in the stark walls.,The clock,gold,\"turns 8: he's the best shot on the shingles that he had worked, which was broken down.\",shows five past four.,shows different seconds on nine seconds.,shows the construction man lying in a pool of flickering light.,1\n11571,lsmdc1058_The_Damned_united-98399,18472,\"Beaming, someone runs and embraces him. The team\",\"Beaming, someone runs and embraces him.\",The team,gold,marches away from his father's trailer.,arrives at a pool of white.,heads toward the bow's conference.,cheer in the dressing room.,3\n11572,lsmdc1058_The_Damned_united-98399,18451,His eyes meet someone's. They,His eyes meet someone's.,They,gold,lead everyone between the seats and on the steps of the auditorium.,stand from the window.,look down at him.,\"exchange a respectful, knowing nod.\",3\n11573,lsmdc1058_The_Damned_united-98399,18458,\"As play gets underway, the Leeds players, in their away kit of blue shirts and yellow shorts pass the ball wide. In his dingy office, someone\",\"As play gets underway, the Leeds players, in their away kit of blue shirts and yellow shorts pass the ball wide.\",\"In his dingy office, someone\",gold,\"opens a hatch with a lacrosse stick and finds it, then kicks his shoes in the air.\",hits the ball away from the edge of the building.,takes photos of the prom sex calendar.,smokes as he watches the clock.,3\n11574,lsmdc1058_The_Damned_united-98399,18454,Someone stands before the team. A smile,Someone stands before the team.,A smile,gold,plays on someone's lips as they walk among the faces of the women.,glows on her back lips.,is put down his face.,spreads across his face as he looks around the players.,3\n11575,lsmdc1058_The_Damned_united-98399,18467,\"Someone puts on his jacket, straightens his tie and steps into the corridor. Outside his office door, he\",\"Someone puts on his jacket, straightens his tie and steps into the corridor.\",\"Outside his office door, he\",gold,makes his way up to someone's garage.,tenses as he nears the yard.,places his own hands in cot.,\"smooths both hands over his hair, then strides off down the gloomy, brick - walled passage.\",3\n11576,lsmdc1058_The_Damned_united-98399,18448,People watch someone and the Leeds team get off their bus. Someone,People watch someone and the Leeds team get off their bus.,Someone,gold,watches grimly as he loads it.,stares at the certificate as someone nods incredulously to someone.,pulls his jacket from a crate onto the campus street.,marches into the derby home dressing room.,3\n11577,lsmdc1058_The_Damned_united-98399,18459,\"In his dingy office, someone smokes as he watches the clock. Sunlight\",\"In his dingy office, someone smokes as he watches the clock.\",Sunlight,gold,shines around his lights as he sits in a chair.,\", someone puffs on his cigar rhythmically and puts it to his mouth.\",streams in from the terraces through the narrow windows set high in the stark walls.,goes after him.,2\n11578,lsmdc1058_The_Damned_united-98399,18463,\"He looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows. Someone\",\"He looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows.\",Someone,gold,passes an enormous stone.,\"brings up, revealing the chef in a knee sheath dress.\",swivels to and tilts his head as captain drops the president off the podium.,sits with his head in his hands.,3\n11579,lsmdc1058_The_Damned_united-98399,18470,\"Someone strolls off, leaving someone frowning at someone. Someone's face\",\"Someone strolls off, leaving someone frowning at someone.\",Someone's face,gold,is still in the back seat.,becomes a blur from someone.,softens into a grin.,falls by the fountain.,2\n11580,lsmdc1058_The_Damned_united-98399,18466,\"He bows his head against the wall, then paces in the light streaming through the windows, his hands on his head. Someone\",\"He bows his head against the wall, then paces in the light streaming through the windows, his hands on his head.\",Someone,gold,frees himself from the tank.,artists on motor stilts do a square procedures slippery bar around his feet.,spins and leans close to the crying man.,\"puts on his jacket, straightens his tie and steps into the corridor.\",3\n11581,lsmdc1058_The_Damned_united-98399,18462,\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone looks alternately at his office floor, then at the clock. He\",\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone looks alternately at his office floor, then at the clock.\",He,gold,\"flashes a turn, as he can see the crowd, his face concerned and erect, and then strikes.\",covers the entire clock as he hears the passengers.,\"looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows.\",gets to the lower level of the stair and opens it to the ceiling hanging.,2\n11582,lsmdc1058_The_Damned_united-98399,18456,\"The Derby players leap to their feet and roar, red - faced. They\",\"The Derby players leap to their feet and roar, red - faced.\",They,gold,\"run out of the dressing room, down the gloomy corridor, and up the tunnel into the daylight on the pitch.\",bow out of range and move across the bridge towards the edge of the ocean.,push the riders back.,takes charge at the table.,0\n11583,lsmdc1058_The_Damned_united-98399,18469,He stops in his tracks as he sees people turn the corner ahead. Someone,He stops in his tracks as he sees people turn the corner ahead.,Someone,gold,ducks down as he can and opens a case of newspaper.,\"stares at him imploringly, then turns around to face him.\",\"strolls off, leaving someone frowning at someone.\",steps up onto a railing at the bottom of the stairs and dives to one side.,2\n11584,lsmdc1058_The_Damned_united-98399,18465,He stands and once more peers up at the figures of the cheering Derby fans. He,He stands and once more peers up at the figures of the cheering Derby fans.,He,gold,\"bows his head against the wall, then paces in the light streaming through the windows, his hands on his head.\",smokes up the entire ruin of a ship.,rears up and punches him in the face.,approaches someone and throws her fist.,0\n11585,lsmdc1058_The_Damned_united-98399,18452,\"Someone apes a scared face, then beams at the rest of the team. Someone\",\"Someone apes a scared face, then beams at the rest of the team.\",Someone,gold,nudges his shoulder against the young players.,takes forward gate from someone.,fried accessories are spread amongst dozens of headstones.,limo speeds up under a bumpy track.,0\n11586,lsmdc1058_The_Damned_united-98399,18455,A smile spreads across his face as he looks around the players. The Derby players,A smile spreads across his face as he looks around the players.,The Derby players,gold,are carrying their hearts.,arrive at the party blinds.,\"leap to their feet and roar, red - faced.\",stare at the small windows.,2\n11587,lsmdc3037_IRON_MAN2-16530,7836,\"The dark - haired guard and another man rush down the stairs, grab someone, and place a white bag over his head. They\",\"The dark - haired guard and another man rush down the stairs, grab someone, and place a white bag over his head.\",They,gold,slowly descend the building.,join someone at the sled.,\"lead him outdoors, then throw him into the back of a van, and closes its doors.\",glance at each other in horror.,2\n11588,lsmdc3037_IRON_MAN2-16530,7828,\"Smiling, someone stands, punches the man's face, then slams the man's forehead into the sink. The man\",\"Smiling, someone stands, punches the man's face, then slams the man's forehead into the sink.\",The man,gold,falls to the floor.,punches a thug full in the face.,folds up a section of broken mirror.,takes off his jacket.,0\n11589,lsmdc3037_IRON_MAN2-16530,7838,\"Later, inside a pristine airplane hangar, two men in gray coveralls open the van's back doors. The dark - haired guard\",\"Later, inside a pristine airplane hangar, two men in gray coveralls open the van's back doors.\",The dark - haired guard,gold,wears the coveralls striped helmet around his back as they drive away.,shows a photo of bright yellow boxy green arrows.,pulls the bag from someone's head and leads him out of the van.,scans the perimeter of the safe and pops it on the podium.,2\n11590,lsmdc3037_IRON_MAN2-16530,7826,Someone and the man study each other. The man,Someone and the man study each other.,The man,gold,glances down at a number printed on his own shirt.,takes a bite of the cake and reads it.,releases him then points to someone.,\"backs the camera into a room, making notes, on a rock, also exercises on playing and playing.\",0\n11591,lsmdc3037_IRON_MAN2-16530,7834,\"At the bottom, guards open a gate. Someone\",\"At the bottom, guards open a gate.\",Someone,gold,turns and runs back up the stairs.,\"rushes through the door, hearing the guards within the shoppers.\",strolls cautiously bearing a rifle and open the casket.,\"steps for the coupled structure, then gazes in the direction of a expectant narrow eyed man.\",0\n11592,lsmdc3037_IRON_MAN2-16530,7835,Someone turns and runs back up the stairs. The dark - haired guard and another man,Someone turns and runs back up the stairs.,The dark - haired guard and another man,gold,step into the hall.,\"rush down the stairs, grab someone, and place a white bag over his head.\",walk by and kiss her.,\"turn and follow someone, again not at all.\",1\n11593,lsmdc3037_IRON_MAN2-16530,7821,\"Staring at someone, the guard places the tray on a shelf attached to the cell door and leaves. Someone\",\"Staring at someone, the guard places the tray on a shelf attached to the cell door and leaves.\",Someone,gold,\"stands, picks up the tray, and grabs a note lying on it.\",steps on the boulder partition.,watches a mirror as the teens dangle.,\"finds the dead turk still in his tracks, peering through its gate.\",0\n11594,lsmdc3037_IRON_MAN2-16530,7824,\"The guard returns and opens the cell door. Wearing a prison uniform, a long - haired man\",The guard returns and opens the cell door.,\"Wearing a prison uniform, a long - haired man\",gold,crosses the closed door to another agent.,resembling someone steps into the cell.,plays with four flamethrower soldiers.,sets his cot down on a chair.,1\n11595,lsmdc3037_IRON_MAN2-16530,7819,\"Elsewhere in his cell, someone sits leaning against a sink. Outside the cell, a dark - haired guard\",\"Elsewhere in his cell, someone sits leaning against a sink.\",\"Outside the cell, a dark - haired guard\",gold,pauses up on his basement stairs and idly tosses his phone.,hands her a key card.,strolls down a hallway in the lobby.,approaches with a tray of food.,3\n11596,lsmdc3037_IRON_MAN2-16530,7818,\"The jet flies over orange - tinged clouds. Elsewhere in his cell, someone\",The jet flies over orange - tinged clouds.,\"Elsewhere in his cell, someone\",gold,steps into view and watches the sustengo rush over.,groggily takes a backpack off.,jogs over to join them.,sits leaning against a sink.,3\n11597,lsmdc3037_IRON_MAN2-16530,7822,\"Someone stands, picks up the tray, and grabs a note lying on it. Sitting on the bed, someone\",\"Someone stands, picks up the tray, and grabs a note lying on it.\",\"Sitting on the bed, someone\",gold,scans his reflection and looks up as the video works.,\"reads the note, which is written in a foreign language.\",\"sits on her bed, listening to a reading on her hip.\",stares out the window with his face low.,1\n11598,lsmdc3037_IRON_MAN2-16530,7833,\"As someone walks off, his cell explodes. Someone\",\"As someone walks off, his cell explodes.\",Someone,gold,returns his gaze to someone who swings back at the kid.,enters a stairwell and runs down the stairs.,enters and lowers a nearby phone.,knocks two wrestlers with their wands.,1\n11599,lsmdc3037_IRON_MAN2-16530,7825,\"Wearing a prison uniform, a long - haired man resembling someone steps into the cell. The guard\",\"Wearing a prison uniform, a long - haired man resembling someone steps into the cell.\",The guard,gold,taps his gloved finger carefully on his own throat and stops tapping the sidewalk with his charcoal.,\"closes the door, locks it, and leaves.\",takes out his cell.,aims a gun at a guy's forehead.,1\n11600,lsmdc3037_IRON_MAN2-16530,7832,The guard places one hand on someone's shoulder. Someone,The guard places one hand on someone's shoulder.,Someone,gold,\"turns, punches the guard, then snaps his neck.\",props himself up on his elbows.,nods and walks in.,lets go of the gun and starts out.,0\n11601,lsmdc3037_IRON_MAN2-16530,7837,\"They lead him outdoors, then throw him into the back of a van, and closes its doors. Later, inside a pristine airplane hangar, two men in gray coveralls\",\"They lead him outdoors, then throw him into the back of a van, and closes its doors.\",\"Later, inside a pristine airplane hangar, two men in gray coveralls\",gold,descend the strip on the road to an j. 'house.,bring their bikes to a curb and department street.,open the van's back doors.,hold a sign over the drawing building.,2\n11602,lsmdc3037_IRON_MAN2-16530,7831,\"Someone grabs the key, reaches through the cell bars, and unlocks the door. As someone walks down a hallway, he\",\"Someone grabs the key, reaches through the cell bars, and unlocks the door.\",\"As someone walks down a hallway, he\",gold,strides toward the kitchen then studies the girls with a pensive smile.,passes another guard who turns toward him.,stops and listens with a steward.,marches up a flight of stone steps and sits on a bench.,1\n11603,lsmdc3037_IRON_MAN2-16530,7840,Someone and someone shake hands. Someone and someone,Someone and someone shake hands.,Someone and someone,gold,sit at the table.,look down sadly as her face hardens with tearful fury.,walk along the corridor.,watch amidst the candles.,0\n11604,lsmdc3037_IRON_MAN2-16530,7820,\"Outside the cell, a dark - haired guard approaches with a tray of food. Staring at someone, the guard\",\"Outside the cell, a dark - haired guard approaches with a tray of food.\",\"Staring at someone, the guard\",gold,stands in a rush capsule.,heads down the hall and joins his bags to the woman.,places the tray on a shelf attached to the cell door and leaves.,starts to pivot the cue ball against him.,2\n11605,anetv_894d9_pty3o,17689,A group of moose are baying between scenes of lifts and helicopters overhead. People,A group of moose are baying between scenes of lifts and helicopters overhead.,People,gold,cheer as the second herd rides them.,look down at the kite as the kite travels through the sky.,sprinting toward a door.,give each other high fives as they ski.,3\n11606,anetv_N88-LuWK_K0,1926,An intro leads into several clips of people riding in on horses throwing a rope and grabbing calf's in the middle of a pit. More clips,An intro leads into several clips of people riding in on horses throwing a rope and grabbing calf's in the middle of a pit.,More clips,gold,are shown of people roping calf's in the pit and ending with pictures of people performing.,are shown of people performing various tricks as well as clips of snow as well as different people riding along.,are shown of people riding down the large waves as well as the puck on their side.,are shown of the players riding around on board as well as jumping up and up.,0\n11607,anetv_ngwH6Zy5vb8,14322,The audience stands up and claps for him. People,The audience stands up and claps for him.,People,gold,run and continue dancing.,play playing and the caption appears on screen.,slap their faces and clap.,are hugging and mingling on a stage.,3\n11608,anetv_ngwH6Zy5vb8,14321,A man in a suit is playing a piano. The audience,A man in a suit is playing a piano.,The audience,gold,turns around and sits on the ground.,is playing a couple of drums.,stands up and claps for him.,\"has stopped playing, then playing for a long time.\",2\n11609,lsmdc3020_DEAR_JOHN-9652,18339,She holds her gaze steady. He,She holds her gaze steady.,He,gold,hesitates at the door.,glances to his right.,lowers his woeful gaze.,gets out of the vehicle and parks in a driveway in front of someone.,0\n11610,lsmdc3020_DEAR_JOHN-9652,18338,She gazes at the moon. She,She gazes at the moon.,She,gold,covers the moon with her thumb.,blinks over her wide eyes.,\"spots a dancer's drawing mirror, then watches over her son.\",\"proceeds again down the tunnel toward a glad, small, curving water.\",0\n11611,anetv_6d9z33GFEGo,6355,A man is holding a wine glass and talking. He,A man is holding a wine glass and talking.,He,gold,takes a drink of the wine and sets the glass down.,is making a drink with mouthwash.,pours water into the tea cup and trying to serve it.,pours beer into a cup while sitting down with him.,0\n11612,anetv_6d9z33GFEGo,6361,He takes a scoop of what's in the pot and adds it to the pan. He,He takes a scoop of what's in the pot and adds it to the pan.,He,gold,begins to stir the pasta that is in the pan.,\"focuses on what they can do shortly and stop to go to the camera, doing seasonings and drains it.\",fixes the fishing hook with a stone.,catches the pot and walks it back.,0\n11613,anetv_6d9z33GFEGo,6358,He pours oil into a pan on a stove. He,He pours oil into a pan on a stove.,He,gold,pours the pasta into a pitcher of water.,adds the pasta to the pot.,adds seasonings to the pan.,boils pasta in a pan.,2\n11614,anetv_6d9z33GFEGo,6360,He stirs a pot that is on the stove. He,He stirs a pot that is on the stove.,He,gold,takes a pan of water from the pot and puts it into a pot.,takes a scoop of what's in the pot and adds it to the pan.,takes the big bite of bread.,takes them out of the pot.,1\n11615,anetv_6d9z33GFEGo,6356,He takes a drink of the wine and sets the glass down. He,He takes a drink of the wine and sets the glass down.,He,gold,\"takes a vodka bottle, and drinks her.\",picks up the bottle again.,shows bottles that are sitting on a counter.,kicks a man then blinks thoughtfully.,2\n11616,anetv_6d9z33GFEGo,6362,He begins to stir the pasta that is in the pan. He,He begins to stir the pasta that is in the pan.,He,gold,\"laughs, moving back and forth to him.\",stirs it first and makes a hand in the pot.,scoops the pasta out of the pan onto a plate.,picks up the brush and starts to add it to a pot.,2\n11617,anetv_6d9z33GFEGo,6363,He scoops the pasta out of the pan onto a plate. He,He scoops the pasta out of the pan onto a plate.,He,gold,chokes by someone's omelette.,picks up his wine glass again.,finishes chopping the potatoes on the dining table.,makes the dish and adds fork to the refrigerator.,1\n11618,anetv_6d9z33GFEGo,6359,He adds seasonings to the pan. He,He adds seasonings to the pan.,He,gold,mashes the egg in the pan.,adds the noodles with spaghetti to a container.,stirs a pot that is on the stove.,washes his hands in the windows.,2\n11619,anetv_6d9z33GFEGo,6357,He shows bottles that are sitting on a counter. He,He shows bottles that are sitting on a counter.,He,gold,pours oil into a pan on a stove.,talks outside holding a can of newspaper in his hands.,shows the situation chart.,cleans the water on the white pizza and puts it in place.,0\n11620,lsmdc1034_Super_8-8018,13062,Someone points to the mangled remains of the white pickup truck. They,Someone points to the mangled remains of the white pickup truck.,They,gold,get down from the carriage.,lie beneath their covers.,push someone in place.,give someone a british look.,0\n11621,lsmdc1034_Super_8-8018,13061,They have a good view across the devastation. Someone,They have a good view across the devastation.,Someone,gold,points to the mangled remains of the white pickup truck.,wears a little silk floral designer and shiny handbag mourning.,looks down at them for two seconds before reaching into their robes.,sees her in a blue dress.,0\n11622,lsmdc1034_Super_8-8018,13060,Someone picks up one of the strange white cubes which have spilled from the wreckage and pockets it before joining the others on top of a wrecked carriage. They,Someone picks up one of the strange white cubes which have spilled from the wreckage and pockets it before joining the others on top of a wrecked carriage.,They,gold,land on the center of the train.,have a good view across the devastation.,see an empty plain in the canyon.,\"weave between the struts, knocking down, and strolling forward, smashing into a dark car.\",1\n11623,anetv_RFgusQogDyQ,17741,A girl in a green shirt is being recorded as she swings back and forth on a swing. The person with the camera,A girl in a green shirt is being recorded as she swings back and forth on a swing.,The person with the camera,gold,begins to zoom in close on her as she continues to swing on the swing.,\"watches it, passes, switch places, and then it even the final sparking moves.\",turns back and lands with the ball.,walks through the frame and ends up fast jumping off and moving across the sand at the formations.,0\n11624,anetv_RFgusQogDyQ,17742,The person with the camera begins to zoom in close on her as she continues to swing on the swing. You,The person with the camera begins to zoom in close on her as she continues to swing on the swing.,You,gold,swing as the girl does the same thing again various times and two slides them off.,can see a man near the swing and a white shirt standing as the girl is swinging.,seats up in the circle and move it high above the yard.,is shown to move the thing and leads away to the camera.,1\n11625,anetv_RFgusQogDyQ,6608,A woman is seen sitting on a swing moving back and fourth while the camera watches her. The woman continues swinging back and fourth while people walk in and out frame and she,A woman is seen sitting on a swing moving back and fourth while the camera watches her.,The woman continues swinging back and fourth while people walk in and out frame and she,gold,continue to cut her claws while the child watches her several more times.,looks off into the distance.,continuously continues her movements and captures her movements and moving her body around.,continues to speak to the camera.,1\n11626,anetv_u8ykXBc2Efs,11879,A boy and girl are standing in front of a kitchen sink. They,A boy and girl are standing in front of a kitchen sink.,They,gold,are doing the dishes in the sink.,cook a pan and start drinking the drinks.,is washing her hands with mouthwash.,is standing close with both hands.,0\n11627,anetv_u8ykXBc2Efs,11881,A woman walks behind them and open opens the refrigerator. She then,A woman walks behind them and open opens the refrigerator.,She then,gold,starts helping them rinse the dishes.,helps him climb into the cart and continues to eat.,folds into it with a rag and takes it down.,\"fried three ingredients in spit, cocoa oil and tic.\",0\n11628,anetv_u8ykXBc2Efs,2256,The camera moves to in front of the kids and their mom enters the room. The mom,The camera moves to in front of the kids and their mom enters the room.,The mom,gold,continues explaining what decorations she needs to be.,adds something to the fridge and puts something in a cabinet.,waves her hands hand next to her lap helping her with her new beer.,grabs some items from a refrigerator and walks to get the cup laps.,1\n11629,anetv_u8ykXBc2Efs,11880,They are doing the dishes in the sink. A woman,They are doing the dishes in the sink.,A woman,gold,goes to watch the woman.,washes dishes under the sink.,walks behind them and open opens the refrigerator.,is washing her hands up in the sink.,2\n11630,anetv_JW5P5FdOrcw,3070,A bottle of vinegar is shown on a table next to alcohol and soap. She,A bottle of vinegar is shown on a table next to alcohol and soap.,She,gold,begins mopping the hardwood floor.,\"sprays the hair of the woman, then dries off the clothes.\",sautes the ingredients with a slice of bread.,sprays the liquid to the glass and replaces it with water.,0\n11631,anetv_JW5P5FdOrcw,3069,She is showing the bottom of the mop. A bottle of vinegar,She is showing the bottom of the mop.,A bottle of vinegar,gold,is shown on a table next to alcohol and soap.,is used to mop it all over it.,is shown under the wired door.,is laid out in her wake.,0\n11632,anetv_JW5P5FdOrcw,3071,She begins mopping the hardwood floor. A dog,She begins mopping the hardwood floor.,A dog,gold,jumps down and misses her back and resumes all on the floor.,is crouching behind a chair while washing it.,is laying down on a bed.,has her clothes soaked to her face.,2\n11633,anetv_JW5P5FdOrcw,3068,A woman is standing up talking and holding a blue mop. She,A woman is standing up talking and holding a blue mop.,She,gold,mixes it into the mop.,begins to show her hands and feet.,walks down the stairs with a razor.,is showing the bottom of the mop.,3\n11634,lsmdc0005_Chinatown-48349,15054,Someone gets out of the car with someone. He offers her his arm and they,Someone gets out of the car with someone.,He offers her his arm and they,gold,drive along the road after her.,go up the walkway to the entrance.,go over to another section.,pound each other's fingers.,1\n11635,lsmdc0005_Chinatown-48349,15053,\"Someone's car pulls up before the elegant Spanish rest home, its entryway illuminated by streetlights. Someone\",\"Someone's car pulls up before the elegant Spanish rest home, its entryway illuminated by streetlights.\",Someone,gold,gazes at herself past a mirror.,gets out of the car with someone.,takes two identical glasses unto someone's wheelhouse.,\"scans the area until he reaches behind someone, who spots it.\",1\n11636,lsmdc0005_Chinatown-48349,15055,\"People are approached by an unctuous man in his forties, with a flower in his buttonhole. Then he\",\"People are approached by an unctuous man in his forties, with a flower in his buttonhole.\",Then he,gold,\"gets a clear look at someone, bruised, trousers torn, etc.\",\"puts all the ingredients into a large glass bowl, makes different rum and retrieves some braids and put them a drink of jackets.\",is sitting on an archery juicer and a tomato is shown cutting up the ice to make a sandwich.,\"calmly looks up at the collar, disappointed, and uses his gun to have in one of the men's clothing.\",0\n11637,lsmdc0009_Forrest_Gump-50656,19673,Someone looks down at someone crashes at the bottom of the ramp. Taxi cabs,Someone looks down at someone crashes at the bottom of the ramp.,Taxi cabs,gold,emerge into a house carrying a sleek tennis bag.,crowd the street as someone pushes someone along the sidewalk.,walk in to flatbed truck with someone standing next to a young man.,pull up to a pile of girls in front of a door.,1\n11638,lsmdc0009_Forrest_Gump-50656,19677,\"Someone picks up another bottle of port wine, but it is empty. He\",\"Someone picks up another bottle of port wine, but it is empty.\",He,gold,tosses it onto the floor.,heaves himself into a chair.,takes off his glasses and looks up.,glances over at someone friend.,0\n11639,lsmdc0009_Forrest_Gump-50656,19678,He tosses it onto the floor. Someone,He tosses it onto the floor.,Someone,gold,tosses the empty liquor bottle down and picks another bottle.,jumps and tosses several toys aside.,turns to someone with proud eyes.,leaps from the plane with his massive hands.,0\n11640,lsmdc0009_Forrest_Gump-50656,19679,Someone tosses the empty liquor bottle down and picks another bottle. He,Someone tosses the empty liquor bottle down and picks another bottle.,He,gold,becomes enraged as he throws the bottle and looks at someone.,\"continues to drift water, and someone meets his gaze.\",shoots him in the chest.,look on in the living.,0\n11641,lsmdc0009_Forrest_Gump-50656,19676,\"A taxi skids to a stop, almost hitting them as they cross the street. Someone\",\"A taxi skids to a stop, almost hitting them as they cross the street.\",Someone,gold,slaps the bumper of the taxi.,glares at the cameras bow.,points and heads towards the fountain.,\"jumps out with a rifle, his rifle raised.\",0\n11642,lsmdc0009_Forrest_Gump-50656,19672,Someone's wheelchair begins to slide down the ramp and spins around on the icy ground. Someone,Someone's wheelchair begins to slide down the ramp and spins around on the icy ground.,Someone,gold,looks down at someone crashes at the bottom of the ramp.,sees someone and his partner jump from a train escape into the stands.,stares back back toward someone and tracking her gaze from the window where her parents are taken.,runs down and picks up a policeman.,0\n11643,lsmdc0009_Forrest_Gump-50656,19675,The taxi honks at someone. A taxi,The taxi honks at someone.,A taxi,gold,\"skids to a stop, almost hitting them as they cross the street.\",\"travels across the tight road town, a dozen vehicles speeding across the dirt road.\",pulls up to the street's rooftop at the gate.,\"drives past a restaurant, where a small army of women, including, kids, and pups test jewelry and other knives.\",0\n11644,lsmdc0009_Forrest_Gump-50656,19674,Taxi cabs crowd the street as someone pushes someone along the sidewalk. A taxi driver,Taxi cabs crowd the street as someone pushes someone along the sidewalk.,A taxi driver,gold,\"gets out, then shots through a metal glass falls on the floor then approaches someone.\",appears above him as he passes the classroom.,honks his horn as someone wheels someone out in front of the taxi.,appears from behind him.,2\n11645,anetv_eaR8oEBlYWk,20027,She walks over and takes the lid off of a large bucket of water on the ground. She,She walks over and takes the lid off of a large bucket of water on the ground.,She,gold,dips a pot into the bucket and dumps the water into the sink.,then backs the little away and soldering.,puts water on the babies face.,moss falls on a wall next to her.,0\n11646,anetv_eaR8oEBlYWk,20026,The woman continues to wash the clothes in the sink. She,The woman continues to wash the clothes in the sink.,She,gold,continues talking to the camera while still looking off the camera.,gets wet and sink.,walks over and takes the lid off of a large bucket of water on the ground.,rinses her hands with soap.,2\n11647,anetv_eaR8oEBlYWk,20025,A white washing machine that is unplugged is shown. The woman,A white washing machine that is unplugged is shown.,The woman,gold,\"leads the welder up, splashing the floors.\",washes towels off in a bathroom while talking to the camera.,continues to wash the clothes in the sink.,drops the bucket and switches the flat lid to it.,2\n11648,anetv_eaR8oEBlYWk,20024,She pours water into a blue bowl. She,She pours water into a blue bowl.,She,gold,plays from even different kinds of greens.,puts clothes into the buckets of water that are in the sink.,adds liquid and then takes a large plastic container that is inserted into the water.,pours juice into a mixer pot and adds some of the sauce to the pan.,1\n11649,anetv_eaR8oEBlYWk,20023,A woman in a jacket is washing clothes in a sink. She,A woman in a jacket is washing clothes in a sink.,She,gold,uses her hands up a steam drain cleaner.,pours water into a blue bowl.,washes her hands and dances with plastic towels.,sprays soap on the plates all along the boat with her hands.,1\n11650,anetv_qxQWNu_MN94,3961,He jumps off into the pool below him. Another person,He jumps off into the pool below him.,Another person,gold,is on an diving board.,steps onto the diving board.,is next to him in red diving gear.,is seen in his yard and holding a hose and panning it all around him.,1\n11651,anetv_qxQWNu_MN94,3960,A man walks onto a diving board. He,A man walks onto a diving board.,He,gold,jumps off into the pool below him.,puts on the bolts and laughs with the top of the bungee harness.,does an front flip inside the car.,loses the balance and goes over a bar.,0\n11652,anetv_elW8E-9bCRQ,18527,One of the men puts his foot out while the other turns him in circles. When the dance is finally over both men,One of the men puts his foot out while the other turns him in circles.,When the dance is finally over both men,gold,give and begin fighting.,begins performing two dance moves.,throw back to each other.,shake hands and wave to the crowd.,3\n11653,anetv_elW8E-9bCRQ,18525,Two very tall men in tuxedos are dancing outside of a store. People,Two very tall men in tuxedos are dancing outside of a store.,People,gold,start along the extreme steps of the crowd.,are standing back watching them do their dance.,are watching him with a moving picture.,are struggling in a park with a lot of spectators watching them.,1\n11654,anetv_elW8E-9bCRQ,18526,People are standing back watching them do their dance. One of the men,People are standing back watching them do their dance.,One of the men,gold,throws one plow under the other and spreads his arms as the crowd cheers.,does a flip into the water.,\"is putting the stick over their mouth and starts burning the sides, they climb to it, most trying to contain it.\",puts his foot out while the other turns him in circles.,3\n11655,anetv_nQM5LT1-ZRU,2263,We then see the man adjusting the handle bar of the bike. The man,We then see the man adjusting the handle bar of the bike.,The man,gold,demonstrates how the levers sit and adjusts the brake levers.,puts a sock back on the bike.,spins the tire repeatedly and pulls us the pin.,\"lifts the bike tire, puts it in the garbage, and passes it to a lady.\",0\n11656,anetv_nQM5LT1-ZRU,2262,We see a title screen. We then,We see a title screen.,We then,gold,see a man washing up a ski target.,see the man adjusting the handle bar of the bike.,see people biking on a ski slope.,see the man shining a vacuum on a hardwood floor.,1\n11657,anetv_nQM5LT1-ZRU,2261,We see a man in a room talking about a bike. We,We see a man in a room talking about a bike.,We,gold,see the ending credits.,see the man's name and arranges.,see a title screen.,see the play and the ending title screens.,2\n11658,anetv_nQM5LT1-ZRU,2264,\"The man demonstrates the sitting positions and braking and screws them tight. The man then, and\",The man demonstrates the sitting positions and braking and screws them tight.,\"The man then, and\",gold,plays the piano outside.,move both legs gracefully.,catch a person from the equipment cylinder.,adjusts the shifter lever.,3\n11659,anetv_nQM5LT1-ZRU,2265,\"The man then, and adjusts the shifter lever. We\",\"The man then, and adjusts the shifter lever.\",We,gold,ride in eats while a man and a guy carry a bike on a track.,\", the man removes the shoes and the man in white in front of the camera.\",see a recap and the closing scene of the video.,briefly shows the difference still solar.,2\n11660,anetv_IHPb-JPIhg8,3165,He jumps off and puts his hands in the air. He,He jumps off and puts his hands in the air.,He,gold,throws the darts on the pipe.,gets back on the balance beam.,does several tricks with him.,flies to his back and wraps his legs in the air.,1\n11661,anetv_xNiYjTyCTtg,13225,The two girls acknowledge the girl holding the camera. They each,The two girls acknowledge the girl holding the camera.,They each,gold,take a second and have a good blow.,show their ears that they are wanting to be pierced.,take turns and punch again.,have a hard time clapping and drink.,1\n11662,anetv_xNiYjTyCTtg,13227,\"The woman working in the shop straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces. The woman\",\"The woman working in the shop straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces.\",The woman,gold,looks shocked as the worker talks to her and holds the mirror for h er to see the ear.,shakes the smoke off alone.,continues to talk holding the phone and the mirror at the other side.,makes her way to the right.,0\n11663,anetv_xNiYjTyCTtg,13226,They each show their ears that they are wanting to be pierced. The woman working in the shop,They each show their ears that they are wanting to be pierced.,The woman working in the shop,gold,are speaking to her with sister.,\"straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces.\",\"is being washed and lathered with toothpaste and making a toothbrush to hold a button n the toothbrush, then keeps looking about.\",starts to pound their teeth in a drain and the third ladies come out.,1\n11664,anetv_xNiYjTyCTtg,13229,To be continued is shown on the screen. The girl,To be continued is shown on the screen.,The girl,gold,towels with her fingers to brush her hair.,does several more sit ups.,shows her ear as she sits in the chair and tries not to cry as the camera zooms in on her ear.,once again showing the girl up on a fake side.,2\n11665,anetv_xNiYjTyCTtg,13228,The woman looks shocked as the worker talks to her and holds the mirror for h er to see the ear. To be continued,The woman looks shocked as the worker talks to her and holds the mirror for h er to see the ear.,To be continued,gold,\"the tub, which is very dark.\",is shown on the screen.,to draw some lotion out of the skin you want her to be.,\", a system speaks to the camera while the woman leans from the camera and speaks.\",1\n11666,anetv_xNiYjTyCTtg,13224,Two girls are standing in a shop and hug each other. The two girls,Two girls are standing in a shop and hug each other.,The two girls,gold,are entering and prepare to ballroom dancing together.,are standing in bed together.,acknowledge the girl holding the camera.,begin swimming several times.,2\n11667,anetv_Y-CZasxVlx4,17861,The girl plays the guitar as she sits on the sofa. The girl,The girl plays the guitar as she sits on the sofa.,The girl,gold,stands and plays on the drums.,stops playing and talks to the camera again while demonstrating.,plays the violin and plays with her rest.,starts to play and picks her flute up.,1\n11668,anetv_Y-CZasxVlx4,17860,A girl holding a guitar talks to the camera. The girl,A girl holding a guitar talks to the camera.,The girl,gold,plays the guitar as she sits on the sofa.,begins skating around a row of other cars.,puts something into the basket.,speaks to the camera while dancing on the side.,0\n11669,lsmdc3067_THE_ART_OF_GETTING_BY-32529,3303,\"Inside the softly lit bar, someone and someone share a booth, each with a bottle of beer on the table. Her friend\",\"Inside the softly lit bar, someone and someone share a booth, each with a bottle of beer on the table.\",Her friend,gold,wears a lover's uniform.,points the two at the rows of seats along the platform.,musters a tight smile.,gives a glamorous nod.,2\n11670,lsmdc3067_THE_ART_OF_GETTING_BY-32529,3302,\"Now an illuminated awning over an entry way reads, Lou's. Inside the softly lit bar, someone and someone\",\"Now an illuminated awning over an entry way reads, Lou's.\",\"Inside the softly lit bar, someone and someone\",gold,\"share a booth, each with a bottle of beer on the table.\",recognize her as they walk by.,look up at the ceiling of the dance floor.,stroll inside of the expo.,0\n11671,lsmdc3067_THE_ART_OF_GETTING_BY-32529,3301,\"Vivian admires her son as she shakes her head. Later, someone\",Vivian admires her son as she shakes her head.,\"Later, someone\",gold,strolls into his room where only his twin size bed remains.,pays the new man and the young attorney.,\"sits with a girl in a brown cap, who holds a pencil in her mouth.\",crawls multiple boxes through a pile under an zip rack to gear a belt bar that displays behind a chair.,0\n11672,anetv_75xhANnCOEg,12539,A boy and girl performing dojo are shown in various images. They,A boy and girl performing dojo are shown in various images.,They,gold,are using red paddles to make a little christmas in the sand in a room.,are wearing scuba gear.,\"are then shown in video, as the little girl kicks a bag over and over.\",pose and clap as they use their blows to play the instruments.,2\n11673,anetv_75xhANnCOEg,15989,A grey screen appears with black letters about the video about a Dojo. While a song plays there,A grey screen appears with black letters about the video about a Dojo.,While a song plays there,gold,is a group of white contestants standing together by an multicolored field.,are still pictures with children practicing as well as video of the instructor and a girl practicing kicks.,are several large tennis player on the court who are cheering with white capes.,is a male how to play the saxophone next in a hands basket.,1\n11674,lsmdc3049_MORNING_GLORY-23263,966,\"A male presenter, someone Pollard, sits next to her. She\",\"A male presenter, someone Pollard, sits next to her.\",She,gold,gives a faint smile as he brushes his lips.,wears a black coat over her wavy brown hair.,is demonstrating a bobby pin and manipulating new stuff.,listens to one of them.,3\n11675,lsmdc3049_MORNING_GLORY-23263,969,\"The female presenter, someone, is onscreen. The studio, now empty, someone\",\"The female presenter, someone, is onscreen.\",\"The studio, now empty, someone\",gold,stands in it with a pile of papers in one hand and two mugs in the other.,\"flipped upside down, admires the populated techniques.\",watches with an awestruck expression.,\"is in the old shot, alone.\",0\n11676,lsmdc3049_MORNING_GLORY-23263,968,\"In the studio, someone has fallen asleep. Someone\",\"In the studio, someone has fallen asleep.\",Someone,gold,\"weeps, and answers his phone.\",is happier than a television.,slams excitedly on his bureau and gives 45 year a sniff.,holds a headphone to her ear.,3\n11677,lsmdc3049_MORNING_GLORY-23263,964,A guy in the meeting has fallen asleep in front of his computer. Someone,A guy in the meeting has fallen asleep in front of his computer.,Someone,gold,chuckles with one of her colleagues.,jumps into a seat on the roof of the building as the biker rips out of his room.,fixes his hands on the attache case.,sits beside the rough - looking man.,0\n11678,lsmdc3049_MORNING_GLORY-23263,973,\"It's a red t - shirt with the words,. Someone\",\"It's a red t - shirt with the words,.\",Someone,gold,puts it on under a denim jacket.,stands in a chokehold.,wipes off the fake mustache from the sleeves.,steps behind a closed door and follows someone inside.,0\n11679,lsmdc3049_MORNING_GLORY-23263,963,The meeting room is behind a studio. A guy in the meeting,The meeting room is behind a studio.,A guy in the meeting,gold,looks at him triumphantly.,starts up the stairs with a cup strapped to the glider.,has fallen asleep in front of his computer.,is at a microphone.,2\n11680,lsmdc3049_MORNING_GLORY-23263,967,She listens to one of them. Staff,She listens to one of them.,Staff,gold,are crawling above the door.,sit next to a brick up house.,takes a break while still temporarily resting of the word.,listen to headphones and watch screens.,3\n11681,lsmdc3049_MORNING_GLORY-23263,962,She talks manically in a meeting. The meeting room,She talks manically in a meeting.,The meeting room,gold,is behind a studio.,is too much for him.,is displaying a fairly good drink.,shows one hours sync.,0\n11682,lsmdc3049_MORNING_GLORY-23263,961,Someone hurries into a building. She,Someone hurries into a building.,She,gold,pats down on a snow - covered ground.,looks at the pinata.,walks out of the system.,walks down a corridor.,3\n11683,lsmdc3049_MORNING_GLORY-23263,965,\"Someone chuckles with one of her colleagues. A male presenter, someone Pollard,\",Someone chuckles with one of her colleagues.,\"A male presenter, someone Pollard,\",gold,is suddenly tossed on a couch.,creeps up behind her.,sits up to someone.,sits next to her.,3\n11684,lsmdc3049_MORNING_GLORY-23263,970,\"The studio, now empty, someone stands in it with a pile of papers in one hand and two mugs in the other. She\",\"The studio, now empty, someone stands in it with a pile of papers in one hand and two mugs in the other.\",She,gold,takes off his glasses.,shakes someone's hand.,smiles and turns to leave.,hands the watermelon to a wealthy woman.,2\n11685,lsmdc3049_MORNING_GLORY-23263,972,Someone takes a t - shirt from a gift bag. It,Someone takes a t - shirt from a gift bag.,It,gold,wears a grave expression as he watches it leave.,\"'s a red t - shirt with the words, \",wears an oxygen mask as she steps out of the car.,hangs with a lighter in his house.,1\n11686,lsmdc3049_MORNING_GLORY-23263,960,Someone drives through dark streets and pulls into a car park. Someone,Someone drives through dark streets and pulls into a car park.,Someone,gold,hurries into a building.,gathers around his parks.,leads a woman down an rv.,waves his hand as someone down a hall.,0\n11687,anetv_l4LFSd-7hxU,7,A close up of a fooseball table is shown with two people on the sides. The people,A close up of a fooseball table is shown with two people on the sides.,The people,gold,throw the ball back and fourth to one another.,sweep the ball all around the field as well as being around the side.,continue to speak and speak to one another as well as stopping to speak to the camera.,grab onto poles and begin playing the game.,3\n11688,anetv_l4LFSd-7hxU,8,The people grab onto poles and begin playing the game. A woman walks into the room and the men,The people grab onto poles and begin playing the game.,A woman walks into the room and the men,gold,continue to ride around.,pretend to watch as they speak.,grab the ball and run around the pool.,continue playing on the table.,3\n11689,anetv_zM1-aiWdPvY,8718,A woman is seen speaking to the camera while standing next to a horse and holding a brush. She,A woman is seen speaking to the camera while standing next to a horse and holding a brush.,She,gold,puts her long hair on the side and begins riding her horse with shears.,points to the horse while also brushing the horse's mane and zooming it around.,begins brushing all along the horse while still speaking to the camera.,then brushes up her horse's mane and begins throwing it over the dog with a purse.,2\n11690,anetv_zM1-aiWdPvY,8719,She begins brushing all along the horse while still speaking to the camera. She,She begins brushing all along the horse while still speaking to the camera.,She,gold,continues brushing the dog with the brush and brushing up over the horse's mane.,continues grooming the dog as well as washing her onion pathways and collecting it into a bowl with a brush.,continuously uses her feet to brush and brush the horse's mane.,pauses for a moment to end while speaking to the camera.,3\n11691,lsmdc1020_Crazy_Stupid_Love-81080,6979,\"He wears smart, polished brown leather shoes and a maroon suit. A guy\",\"He wears smart, polished brown leather shoes and a maroon suit.\",A guy,gold,strides confidently through the bar.,checks his way in an anonymous - type shop.,carries a necklace in its large overalls.,approaches his daughter and distantly.,0\n11692,lsmdc1020_Crazy_Stupid_Love-81080,6977,\"The other one, someone, eyes her with concern. The one who's getting a talking to, someone,\",\"The other one, someone, eyes her with concern.\",\"The one who's getting a talking to, someone,\",gold,is sitting close the street behind.,\"lets him go, then scowls.\",sags her shoulders and pouts.,starts climbing with a second.,2\n11693,lsmdc1020_Crazy_Stupid_Love-81080,6978,\"The one who's getting a talking to, someone, sags her shoulders and pouts. He\",\"The one who's getting a talking to, someone, sags her shoulders and pouts.\",He,gold,\"looks down at him, back, and twists her head back.\",\"wears smart, polished brown leather shoes and a maroon suit.\",is busy with his competitors in his gear and stops him.,\"is freed, but someone is all staring into the night.\",1\n11694,anetv_eEfvYiuGULM,3954,Athletes throw a javelin across the field during a competition in a stadium. The athlete,Athletes throw a javelin across the field during a competition in a stadium.,The athlete,gold,stands with some people watching on the sidelines.,is not pleased with his throw and slaps his legs in frustration.,slides behind the hard base of each mat.,throws a javelin across the field.,1\n11695,anetv_eEfvYiuGULM,3955,The athlete is moderately pleased with his throw and claps his hands walking away and nods his head. A scoreboard,The athlete is moderately pleased with his throw and claps his hands walking away and nods his head.,A scoreboard,gold,appears across the screen.,is seen with the results of the competition.,appears to be seen hurling short.,is shown of a man wearing a track uniform and a 360 begins.,1\n11696,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1197,Someone remembers back to earlier. He applies lipstick in the corridor and the conductor,Someone remembers back to earlier.,He applies lipstick in the corridor and the conductor,gold,notice on the mail.,helps someone up with his bucket.,rings through a walkie - talkie.,walks past him as he stands outside the lavatory.,3\n11697,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1207,\"Bullets rip through the walls of the first class compartments, showering people with debris. Someone\",\"Bullets rip through the walls of the first class compartments, showering people with debris.\",Someone,gold,hands someone a pistol.,hurls a stack at shield and a green shield which swings for exam vehicles.,opens the entryway cabinets.,ducks down as he tries to crawl.,0\n11698,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1205,Someone closes the exterior door and sees someone is lying down. He,Someone closes the exterior door and sees someone is lying down.,He,gold,steps out the mobile from his reverie and looks through it through a stack of papers.,is snug on his back.,pulls someone down beside him then lights a pipe.,\"turns, as if trying to not pull off a running trigger.\",2\n11699,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1198,He takes the chain of the cistern then removes one of the taps from the basin. He,He takes the chain of the cistern then removes one of the taps from the basin.,He,gold,can be shown on a table.,\"removes it, pressing it to the frost and absently puts it aloft.\",uses the tap to open the cover on a gas valve.,stops for a half minutes behind them.,2\n11700,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1202,He steps into a compartment. Someone,He steps into a compartment.,Someone,gold,do not pda them.,descends the stairs and startles him.,unscrews the window from his hand and examines it.,looks into the corridor.,3\n11701,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1195,\"Someone looks out of the window then at someone. As someone grapples with someone, he\",Someone looks out of the window then at someone.,\"As someone grapples with someone, he\",gold,tilts his chair round.,crushes it with both hands.,brimmed hat rolls over.,rips his blouse off.,3\n11702,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1196,One aims a rifle at someone. Someone,One aims a rifle at someone.,Someone,gold,\"leans forward, letting her son drop a penguin on the floor.\",unplugs her family phone and runs.,bashes at the retreating young someone and him.,remembers back to earlier.,3\n11703,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1200,\"A soldier makes his way into someone's compartment, unwittingly triggering the booby - trapped grenade. It\",\"A soldier makes his way into someone's compartment, unwittingly triggering the booby - trapped grenade.\",It,gold,\"goes off, throwing the soldier off the train.\",goes to the body of his life jacket.,wakes up with a white wet towel.,notice him as they hike a little distance.,0\n11704,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1206,A soldier opens a crate and takes out a Maxim machine gun. The weapon,A soldier opens a crate and takes out a Maxim machine gun.,The weapon,gold,sinks as someone casually thrusts it and grips the knife.,hits the floor and tackles her.,is fixed onto its tripod and the belt - fed ammunition loaded into the breech.,jostles someone's metal body by swinging the door closed.,2\n11705,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1193,Someone shoves her out of the carriage as they go over a bridge. Someone,Someone shoves her out of the carriage as they go over a bridge.,Someone,gold,makes his way past the retreating revelers draped overhead in the bay.,shuts the door to the corridor and sees someone has gone.,are running past and thoughtful.,pops out of her peak and bites a chunk of ice.,1\n11706,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1194,Someone shuts the door to the corridor and sees someone has gone. Someone,Someone shuts the door to the corridor and sees someone has gone.,Someone,gold,keeps the treadmill behind us.,\"opens his door to the other driver from the inside, shuts the door, and turns back outside.\",strides across the stage where a blonde man chases man.,looks out of the window then at someone.,3\n11707,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1210,He hits a soldier who drops a grenade. The soldier someone hit,He hits a soldier who drops a grenade.,The soldier someone hit,gold,his head and someone slips forward.,and throws his hands in front of him.,realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades.,gunfire and the men drop the gun.,2\n11708,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1209,Someone shoots through the hole created by the machine gun bullets. He,Someone shoots through the hole created by the machine gun bullets.,He,gold,\"rounds past him, his helmet reeling against the protective shield.\",\"runs to a wall, unscrews a padlock, and slides it out.\",hits a soldier who drops a grenade.,gets out and runs toward the woman.,2\n11709,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1211,The soldier someone hit realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades. People,The soldier someone hit realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades.,People,gold,sit in the ruined lavatory of their carriage which is at the end of those still attached to the engine.,pulls a ball from a closet.,soldiers auction it up makes them sick.,land around him and beats a flat ball.,0\n11710,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1208,\"The lipstick he put in the machine gun belt is fed into the breech, jamming the gun. Someone\",\"The lipstick he put in the machine gun belt is fed into the breech, jamming the gun.\",Someone,gold,needs electric contact lenses while examining the people working pre - session with colleagues.,shoots through the hole created by the machine gun bullets.,is on the phone.,\", in a keypad, walks through the door to join his aide, wearing an armful of weapons.\",1\n11711,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1203,Someone looks into the corridor. He,Someone looks into the corridor.,He,gold,points her head at someone's.,shoos the elderly couple out of their compartment.,\"burns his comforter, then grabs someone roughly around his waist and fires him with the machine.\",builds up gradually.,1\n11712,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1201,\"It goes off, throwing the soldier off the train. He\",\"It goes off, throwing the soldier off the train.\",He,gold,backs up several trees.,runs back to the safe and turns it over.,steps into a compartment.,gets more sideways and sends him off down the road.,2\n11713,anetv_ND9mMyNjm5M,18161,The groomer cleans the horses hooves with a pick and brush. The groomer,The groomer cleans the horses hooves with a pick and brush.,The groomer,gold,brushes the hooves in the back of the black dog.,brushes the horses tail.,brushes off the mans hooves.,brushes the horses hooves.,1\n11714,anetv_ND9mMyNjm5M,18157,The blond girl brushes the horse vigorously with a brown hand brush. The blond girl,The blond girl brushes the horse vigorously with a brown hand brush.,The blond girl,gold,has her face put to the ground.,holds her hand and then begins to ride the horses.,wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes.,attempts to pat the horse and stares off into the distance.,2\n11715,anetv_ND9mMyNjm5M,18156,A blond girl dressed in a blue hoodie grooms a black horse. The blond girl,A blond girl dressed in a blue hoodie grooms a black horse.,The blond girl,gold,brushes the horse vigorously with a brown hand brush.,takes turns bouncing the white dog.,smiles at the camera as her walk to the front.,dunks her other boy and braids her hair.,0\n11716,anetv_ND9mMyNjm5M,16077,The woman is seen doing something with the horses hoof. The woman,The woman is seen doing something with the horses hoof.,The woman,gold,brushes the horses neck and then starts to brush out the horses tail and mane.,spins the camera around the leaves with ease.,kneels down on the ground and rocks back and forth.,picks up an ax to get off the horse.,0\n11717,anetv_ND9mMyNjm5M,18162,The groomer brushes the horses tail. The groomer,The groomer brushes the horses tail.,The groomer,gold,uses a brush to lower the mane.,combs the cattle's tail.,shakes the dogs fur and walks away.,brushes the horses mane.,3\n11718,anetv_ND9mMyNjm5M,16076,The woman starts brushing the horses legs. The woman,The woman starts brushing the horses legs.,The woman,gold,is seen doing something with the horses hoof.,begins mowing the belly of the horse.,continues to talk in pain.,rides to the side of the horse.,0\n11719,anetv_ND9mMyNjm5M,18158,The blond girl wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes. The blond groomer,The blond girl wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes.,The blond groomer,gold,brushes into the mans hair.,brushes her hair while holding up a razor.,rubs her chin with a rag and applies more white paint on the paw.,wipes down the black horse with a striped cloth.,3\n11720,anetv_ND9mMyNjm5M,18160,The blond groomer proceeds to brush the horses legs. The groomer,The blond groomer proceeds to brush the horses legs.,The groomer,gold,brushes the dogs fur as well as more clipper pets.,cleans the horses hooves with a pick and brush.,dries the dogs fur and begins brushing the dog's fur.,brushes the dogs fur.,1\n11721,anetv_ND9mMyNjm5M,16075,A woman brushes out and scratches a big black horse. The woman,A woman brushes out and scratches a big black horse.,The woman,gold,starts brushing the horses legs.,reach outside to faucet the water.,holds a gentle brush in her curling bedroom.,combs her tail while the horse follows the motions.,0\n11722,anetv_ND9mMyNjm5M,18159,The blond groomer wipes down the black horse with a striped cloth. The blond groomer,The blond groomer wipes down the black horse with a striped cloth.,The blond groomer,gold,brushes the cat.,brushes the dogs's hair with a orange clipper.,brushes the dog's fur.,proceeds to brush the horses legs.,3\n11723,anetv_XKOeu8n7R7s,4232,A small group of men are seen running around a basketball court playing a game of basketball. One player,A small group of men are seen running around a basketball court playing a game of basketball.,One player,gold,kicks off the ball to hit it several times before stopping to hit the ball back.,kicks the ball between goals and the ball moves on it as they continue hitting them.,hit a ball and the ball hitting the other in the other.,moves all around the net holding the ball and demonstrates how to properly shoot a hoop.,3\n11724,anetv_jIsGq431gBs,15853,\"They all go for a long walk together, including down a large flight of stairs. They\",\"They all go for a long walk together, including down a large flight of stairs.\",They,gold,kneel on the platform of people and look up at the small stacks.,\"steps into the room with her son firmly tied back in front of someone, who now lifts the far covers.\",\"reach a long line of rafts by the water, where they get in and begin rafting.\",are about exhausted from coffee.,2\n11725,anetv_jIsGq431gBs,15852,They all meet in a room to put on helmets and get together their equipment. They all,They all meet in a room to put on helmets and get together their equipment.,They all,gold,continue to show off the bike and land on the ground next to one near their ankle.,\"go for a long walk together, including down a large flight of stairs.\",\"stand round to do a few candy salutes, not make or patrol it.\",\"are high in their bikes, pulling even rope, at their path.\",1\n11726,anetv_jIsGq431gBs,15851,A bunch of people are meeting in a raft shop. They all,A bunch of people are meeting in a raft shop.,They all,gold,meet in a room to put on helmets and get together their equipment.,get into the water.,have binoculars to change the surface of the body of water.,get into the water with a skis before they are unable to turn back and continue to work out.,0\n11727,anetv_jIsGq431gBs,15854,\"They reach a long line of rafts by the water, where they get in and begin rafting. The people\",\"They reach a long line of rafts by the water, where they get in and begin rafting.\",The people,gold,\"are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together.\",get out of the river onto a raft and paddle on a dock.,looks up the river.,follow in a stiff boat route as they attempt to walk on sticks.,0\n11728,anetv_jIsGq431gBs,15855,\"The people are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together. They all\",\"The people are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together.\",They all,gold,go around the rivers and enjoy themselves as far as they can stay upright.,\"go into the kayaks steady, but they stay locked on the boats.\",stop to have lunch under an outdoor pavilion at the end of their adventure.,take turns right across the wave of one person and a yellow.,2\n11729,lsmdc1001_Flight-71654,13531,She slides the side - stick forward. One wheel,She slides the side - stick forward.,One wheel,gold,\"makes calls up to someone, who twirls toward the back.\",\"off cautiously, then chops as one of the ringwraiths lashes off.\",\"gets caught with one hand, dropping it and then an backwards.\",gets stuck while retracting.,3\n11730,lsmdc1001_Flight-71654,13530,The plane turns upside down. She,The plane turns upside down.,She,gold,attempts to strap a rod up her rear.,slides the side - stick forward.,glances around the broomstick.,leans over the table with his eye resting on his back.,1\n11731,anetv_8L1xXJvKuv4,11118,A group of people are swimming in an indoor pool with other swimmers standing on the side of the pool watching. The children on the sidelines,A group of people are swimming in an indoor pool with other swimmers standing on the side of the pool watching.,The children on the sidelines,gold,talk to the camera and are near the net to separate looks.,show a vinyl multitude of kids playing the curling motions on a video game.,are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim.,swims in the rapids as another teen hangs on their skateboards on a jump line going through the water.,2\n11732,anetv_8L1xXJvKuv4,11119,The children on the sidelines are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim. A person,The children on the sidelines are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim.,A person,gold,\"enters and hugs them as the band continues, in the distance more shots and the water applauding the others in the queue.\",\"carrying a raft leap across to the river and holds on to the end with shoes, jim soaking alone.\",throws a ball across the field where a young boy chases in a swimming pool as a teenage boy watches with the boy in black,walks by the camera as the shaky camera focuses on the people who are already in the pool swimming.,3\n11733,anetv_Mnhg-VEP69U,14536,A man is seen assembling a tire on a lift and taking the rubber off using a machine. He then,A man is seen assembling a tire on a lift and taking the rubber off using a machine.,He then,gold,takes a screw on the tire wheel and spreads it.,moves the machine to the other man who takes out the tire and climbs closer from the car.,puts the rubber back on using the machine and ends by moving back from the tire.,uses the tool and tape around to tighten the slat up on the machine.,2\n11734,anetv_AZn294ubbps,2967,Man is sitting in a kayak in the lakeside in front of the man talking. the man,Man is sitting in a kayak in the lakeside in front of the man talking.,the man,gold,is sitting next to a horse and puts on his gloves.,is using a straw in pits over a day.,sits on the kayak behind the man and start rowing in the lake.,is putting water up in a boat before squeezing the water for the kid sitting in office next to the boat.,2\n11735,anetv_AZn294ubbps,10080,\"A man wearing sunglasses is standing at the edge of the ocean on a beach in front of a man seated in a kayak. He gets into the kayak, and they\",A man wearing sunglasses is standing at the edge of the ocean on a beach in front of a man seated in a kayak.,\"He gets into the kayak, and they\",gold,\"paddle away as they demonstrate how to use the paddles, then turn back to shore as he continues talking.\",continue to wave in unison making no move to the wave that continue to stay around and builds template with his surfers as they start,begin skiing down the rapids on a small hill in web.,do jump over a pier on sail rafters.,0\n11736,anetv_AZn294ubbps,2966,Man is standing in a lakeside talking to the camera and holding a row nex to a kayak. man,Man is standing in a lakeside talking to the camera and holding a row nex to a kayak.,man,gold,is sitting behind a boat canoe drinking from a coffee board.,is sitting in a kayak in a kayak holding the sail of a boat.,is sitting in a kayak in the lakeside in front of the man talking.,is talking while holding a camera pole in his hand.,2\n11737,anetv_wv2baWJtSoc,17933,A man in a blue shirt is sitting down holding a bar on an exercise machine. He,A man in a blue shirt is sitting down holding a bar on an exercise machine.,He,gold,pushes off and uses the exercise machine.,is standing in a gym showing a sword in the man's hands.,works out on the machine and out to his regular neck and correct exercise.,pulls back the instrument and walks on with the machine.,0\n11738,lsmdc1005_Signs-4441,1295,\"A dark haired girl of about six - years - old stands a little further down the path. The two men run over to her, and someone\",A dark haired girl of about six - years - old stands a little further down the path.,\"The two men run over to her, and someone\",gold,grabs her by the arms.,smothers up the embrace.,comes to the other side.,points to paws.,0\n11739,lsmdc1005_Signs-4441,1293,They stop when they reach a gap. And,They stop when they reach a gap.,And,gold,are eating from a car.,\"another flashback, someone finds someone inside the bank.\",\"look along a clear pathway, which cuts through the crop.\",now look dead in blue.,2\n11740,lsmdc1005_Signs-4441,1282,\"Suddenly, the same man leans up on his elbows in bed. His eyes\",\"Suddenly, the same man leans up on his elbows in bed.\",His eyes,gold,are glued to the music.,\"never leave someone, but all around him is silent.\",darting feverishly around the simply furnished room.,remain all over the road.,2\n11741,lsmdc1005_Signs-4441,1289,\"Someone crosses the bathroom and stares out of the door, his toothbrush in his mouth. He\",\"Someone crosses the bathroom and stares out of the door, his toothbrush in his mouth.\",He,gold,\"stares, then leans back on the cushion.\",\"stares at the floor, looking slightly bemused.\",flips a switch and slides the syringe back to the girl.,\"strides across the landing, opens the door to the children's room and glances around.\",3\n11742,lsmdc1005_Signs-4441,1292,\"Someone and the young man, someone, charge through a field of tall green maize. They\",\"Someone and the young man, someone, charge through a field of tall green maize.\",They,gold,\"look up at the bashful place, then their nose animates another line.\",hurtle forwards the whirling staircase.,continue either side of a cliff and walking alongside a massive group of mourners.,stop when they reach a gap.,3\n11743,lsmdc1005_Signs-4441,1284,\"He relaxes and sits up. The man, someone,\",He relaxes and sits up.,\"The man, someone,\",gold,fires out the whole rear of the tent and follows a carriage around the lawn.,comes out of his bedroom wearing a black t - shirt and pajama bottoms.,dodges a punch as best he can.,\"smiles at someone, and he hands her to her, then snatches her by her stuff.\",1\n11744,lsmdc1005_Signs-4441,1290,\"He strides across the landing, opens the door to the children's room and glances around. He\",\"He strides across the landing, opens the door to the children's room and glances around.\",He,gold,jumps to his feet and strains to listen.,\"raises his wand and quill falls completely over it, gradually returning.\",sets the keys and hurries up to the metropolitan room.,looks down from the shaft of the key.,0\n11745,lsmdc1005_Signs-4441,1286,He walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it. Someone,He walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it.,Someone,gold,hurries into the chase.,\"twirls a wand over someone's head, bites the apple, and scratches his ass.\",pauses for a moment to listen at the door.,moves the bicycle towards the door and enters.,2\n11746,lsmdc1005_Signs-4441,1288,He is in his mid - 40s with short dark hair and a rugged handsome face. Someone,He is in his mid - 40s with short dark hair and a rugged handsome face.,Someone,gold,\"runs down the street, stopping in a slight charming look.\",puts down his dark coat and gets walking.,\"crosses the bathroom and stares out of the door, his toothbrush in his mouth.\",is in her car.,2\n11747,lsmdc1005_Signs-4441,1283,His eyes darting feverishly around the simply furnished room. He,His eyes darting feverishly around the simply furnished room.,He,gold,relaxes and sits up.,places himself in the drain.,replaces a pump on his toned chest.,finds someone's in the rear.,0\n11748,lsmdc1005_Signs-4441,1287,Someone pauses for a moment to listen at the door. He,Someone pauses for a moment to listen at the door.,He,gold,is in his mid - 40s with short dark hair and a rugged handsome face.,\"moves from the window, says nothing and is just seen enough to hear it.\",\"is quiet, staring at the sight for a moment.\",swings to the fireplace.,0\n11749,lsmdc1005_Signs-4441,1304,\"A path leads from the side of the circle, splitting into two prongs. A third crop circle has two straight lines at either side, and a circle of maize\",\"A path leads from the side of the circle, splitting into two prongs.\",\"A third crop circle has two straight lines at either side, and a circle of maize\",gold,\"remaining in the center, with another path leading off from its side.\",are being painted amongst the lines.,has licking the handle.,turns and cradles in the heart of the ice.,0\n11750,lsmdc1005_Signs-4441,1302,He swallows hard and tentatively steps forward onto a sea of flattened maize stalks. Someone,He swallows hard and tentatively steps forward onto a sea of flattened maize stalks.,Someone,gold,moves on to the dirt and his legs wrapped in a suit strap.,appears at the far side of the room as he finds men practicing in the mercenaries.,\"stares in wonder as he, people come to the perimeter of a vast circular expanse of flattened maize.\",\"folds his hands in his own device to cover the whole, summit of mount doom.\",2\n11751,lsmdc1005_Signs-4441,1303,Another crop circle lies beside it. It,Another crop circle lies beside it.,It,gold,\"'s the same size, but has a small semi - circle of maize still standing within it.\",lies down by someone.,slides their belts down over one knee.,\"play baseball, lighted by lug moss poopsie bows obituary tree.\",0\n11752,lsmdc1005_Signs-4441,1297,\"He reaches a fair haired boy of about 10, who stares glassily across the field. Someone\",\"He reaches a fair haired boy of about 10, who stares glassily across the field.\",Someone,gold,notices the arena sitting beside him.,peers into a bearded someone sitting tensely on stage.,stands in an outdoor arena as spectators work off at different stances.,turns someone's head to face him.,3\n11753,lsmdc1005_Signs-4441,1300,\"Someone stands and slowly walks through the maize, followed by someone, who's still carrying someone in his arms. Someone\",\"Someone stands and slowly walks through the maize, followed by someone, who's still carrying someone in his arms.\",Someone,gold,\"shakes his head, another ducks in the outside, while other boys fetch the club.\",stops and glances around anxiously.,\"join from the camp, passing the indian - to - infested water, looking in at the collection of books.\",looks up from his briefcase.,1\n11754,lsmdc1005_Signs-4441,1285,\"The man, someone, comes out of his bedroom wearing a black t - shirt and pajama bottoms. He\",\"The man, someone, comes out of his bedroom wearing a black t - shirt and pajama bottoms.\",He,gold,\"reaches down a pair of stilts, wrings his hands, and rubs it wet before.\",show the clip starting off the farm half through the door.,tries a pillow on a chair under the window.,walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it.,3\n11755,lsmdc1005_Signs-4441,1301,Someone stops and glances around anxiously. He,Someone stops and glances around anxiously.,He,gold,emerges from a sphere's view and holds his unit upright.,glances up then reaches back and wrestles the lid off the edge.,swallows hard and tentatively steps forward onto a sea of flattened maize stalks.,\"then grips his jacket and moves closer to him, his eyes shaking.\",2\n11756,lsmdc1005_Signs-4441,1294,\"And look along a clear pathway, which cuts through the crop. A dark haired girl of about six - years - old\",\"And look along a clear pathway, which cuts through the crop.\",A dark haired girl of about six - years - old,gold,\"is talking in a basement room, holding no old zippo.\",stands a little further down the path.,come out from her kitchen.,\", someone is a beginning to leave her table.\",1\n11757,lsmdc1005_Signs-4441,1305,\"It splits into three larger prongs, the central one of which points towards a smaller circle. Someone\",\"It splits into three larger prongs, the central one of which points towards a smaller circle.\",Someone,gold,is on the phone as he looks out of his window at the yard.,collapses on the dead.,hands him around in a synchronized manner.,\"softens momentarily, one of someone's feet keeps getting closer.\",0\n11758,lsmdc1005_Signs-4441,1291,\"Someone rushes out of his wooden farmhouse and heads towards a whitewashed barn, while the younger man runs down a flight of steps from the other floor. Someone and the young man, someone,\",\"Someone rushes out of his wooden farmhouse and heads towards a whitewashed barn, while the younger man runs down a flight of steps from the other floor.\",\"Someone and the young man, someone,\",gold,drags him to the side of a roof.,watch as empty stalls rush onto the canopied area.,charge through a field of tall green maize.,observe from the front seat of the humvee.,2\n11759,lsmdc3071_THE_DESCENDANTS-5235,18151,\"Sharing her mother's round face and sullen pout, she faces her visitors. Her mother\",\"Sharing her mother's round face and sullen pout, she faces her visitors.\",Her mother,gold,brings a thoughtful frown.,\"looks to them indignantly, hands on her hips.\",sips a tub and shakes the bottle of mouthwash.,leans close and plants his arms around her waist.,1\n11760,lsmdc3071_THE_DESCENDANTS-5235,18150,\"As it passes, we glimpse someone riding shotgun. The car\",\"As it passes, we glimpse someone riding shotgun.\",The car,gold,is taken off of someone's car.,stop just inside of a house.,arrives at a house.,crashes into each other.,2\n11761,lsmdc3071_THE_DESCENDANTS-5235,18148,Someone sees someone hurl lawn chairs into a pool. Someone,Someone sees someone hurl lawn chairs into a pool.,Someone,gold,rests his head on a vacant course.,briefly lowers the phone and glowers at it.,takes a shot by the woman.,takes the ladder and tosses them onto the ground.,1\n11762,lsmdc3071_THE_DESCENDANTS-5235,18149,\"Someone briefly lowers the phone and glowers at it. As it passes, we\",Someone briefly lowers the phone and glowers at it.,\"As it passes, we\",gold,watch a vanger visit from someone.,watch the static from last view of a parked car.,see two rows of policeman block rifle microphones behind them.,glimpse someone riding shotgun.,3\n11763,lsmdc0009_Forrest_Gump-50819,12471,Someone lies in his bed as the door opens. Someone,Someone lies in his bed as the door opens.,Someone,gold,slips his eyes back.,sits across from her.,sees the cab pull up.,gets into bed next to someone.,3\n11764,lsmdc0009_Forrest_Gump-50819,12484,Someone runs down the drive away from his house. Someone,Someone runs down the drive away from his house.,Someone,gold,\"runs to the end of the drive, then turns right and runs down the highway.\",\"is being worked along the roads, trying to stay upright.\",looks up as someone creeps past the office.,looks out across the minivan at a guy leaning against the wall.,0\n11765,lsmdc0009_Forrest_Gump-50819,12481,He walks off the porch. He,He walks off the porch.,He,gold,sees someone in the bathroom.,comes outside and opens a door for him.,begins to jog across the lawn.,comes up and shuts the door behind her.,2\n11766,lsmdc0009_Forrest_Gump-50819,12475,The Congressional Medal lies on a table by a ping - pong paddle. Someone,The Congressional Medal lies on a table by a ping - pong paddle.,Someone,gold,holds a glass of milk and wears his bathrobe.,hands him a bag of mustard as he talks.,rolls it and prays.,blows out flames as he taps another wooden cup.,0\n11767,lsmdc0009_Forrest_Gump-50819,12469,Someone turns and walks toward the door. Someone,Someone turns and walks toward the door.,Someone,gold,is looking down at someone with gray coasts on the arm of the street.,turns and walks up the stairs.,is at the door packed for her locker and shutting the door behind her.,someone briskly after him and follows him from some open gates.,1\n11768,lsmdc0009_Forrest_Gump-50819,12474,The cab drives away as someone is asleep in his bed. The Congressional Medal,The cab drives away as someone is asleep in his bed.,The Congressional Medal,gold,lies on a table by a ping - pong paddle.,flows to one eye.,\"'s front page, someone's handsome girlfriend catches him as the two boys arm furtively around of men who are busy table reporters.\",fill a huge container in four white emergency hoses.,0\n11769,lsmdc0009_Forrest_Gump-50819,12482,He begins to jog across the lawn. His speed,He begins to jog across the lawn.,His speed,gold,increases as he runs farther away.,\"'s finished, as the driver pass him.\",\"is new, and makes a shot.\",\"is familiar, on someone.\",0\n11770,lsmdc0009_Forrest_Gump-50819,12477,Someone's bed is made. Someone,Someone's bed is made.,Someone,gold,smart tech wears jeans and walkie - talkie.,\"trembles, sinking her hands there.\",stands in the doorway looking at the room and bed where someone had been.,and someone are both in dull black cars.,2\n11771,lsmdc0009_Forrest_Gump-50819,12470,The house stands in the rain. Someone,The house stands in the rain.,Someone,gold,\"is seated beside a cart, looking sputtering to the camera.\",picks up a parcel and hurls it down into the pool.,stands and leaves by.,lies in his bed as the door opens.,3\n11772,lsmdc0009_Forrest_Gump-50819,12483,His speed increases as he runs farther away. Someone,His speed increases as he runs farther away.,Someone,gold,runs down the drive away from his house.,looks down at the receiver then on his hand.,runs to the back of someone's body.,crosses himself before falling into a wide bed.,0\n11773,lsmdc0009_Forrest_Gump-50819,12473,Someone carries her purse and walks toward a waiting cab. The cab,Someone carries her purse and walks toward a waiting cab.,The cab,gold,passes into the opposite wing at the cottage outside the door.,gets up as someone enters.,comes out for her.,drives away as someone is asleep in his bed.,3\n11774,lsmdc0009_Forrest_Gump-50819,12478,Someone stands in the doorway looking at the room and bed where someone had been. He,Someone stands in the doorway looking at the room and bed where someone had been.,He,gold,\"is still, as if in a trance.\",picks up the emergency result from inside.,turns to him as the casket turns back to normal.,\"tries to open it, revealing a man's shirt.\",0\n11775,anetv_kuv1yEeNQzQ,5606,\"Two teams play soccer beach, and players scores while men hug to celebrate. Then, the teams\",\"Two teams play soccer beach, and players scores while men hug to celebrate.\",\"Then, the teams\",gold,continue playing and scoring close to the goal area.,swim fast and throw with all transitioning opponents.,play beach soccer with players and the score riders graphic.,stretch their horses and chase the ball on the field.,0\n11776,anetv_kuv1yEeNQzQ,5977,\"The black screen with the same colorful logos briefly appear again and it's followed by more clips of people playing soccer in the sand making goals after goals while people cheer them on, and the winners cheer themselves on. Once again the black screen with the logos appears and various clips of the ones shown before\",\"The black screen with the same colorful logos briefly appear again and it's followed by more clips of people playing soccer in the sand making goals after goals while people cheer them on, and the winners cheer themselves on.\",Once again the black screen with the logos appears and various clips of the ones shown before,gold,\", but it ends with black and white trophies and other logos spectators.\",are shown again until it ends with a screen of the logos.,\"launches the game to the court, then the players lining up the ball once more and the field.\",having a jump competition.,1\n11777,anetv_kuv1yEeNQzQ,5608,\"After, the teams continue playing and scoring and the players wearing red t - shirt win and receives a trophy. Teams\",\"After, the teams continue playing and scoring and the players wearing red t - shirt win and receives a trophy.\",Teams,gold,\"serve the scores then people, that woman wins and a man in the same uniform scores.\",\"are jumping rope in a room, one player and long lacrosse stick.\",play beach soccer in the beach in a competition.,\"practices a commentators point putting different teams over victory, and ends with them running into the game and making run with the ball.\",2\n11778,anetv_kuv1yEeNQzQ,5605,\"People plays beach soccer in front the sea. Two teams play soccer beach, and players\",People plays beach soccer in front the sea.,\"Two teams play soccer beach, and players\",gold,keep remaining lacrosse on the field.,are watching.,scores while men hug to celebrate.,are shown on the beach in hockey.,2\n11779,anetv_kuv1yEeNQzQ,5607,\"Then, the teams continue playing and scoring close to the goal area. A player wearing a black t - shirt\",\"Then, the teams continue playing and scoring close to the goal area.\",A player wearing a black t - shirt,gold,runs through a team and grabs his opponent both in a hug.,answers an overhand shot of the ball.,scour the hockey unicycle on the ice as he goes to do it.,kick the ball to move in an elliptical trajectory and scores.,3\n11780,anetv_vutxJfF0Rlg,14109,Several pictures are shown of people measuring themselves and a cup of coffee. Text,Several pictures are shown of people measuring themselves and a cup of coffee.,Text,gold,is using nail polish.,is shown as well as pictures of people smiling to each other.,use a poured can.,shots of the ingredients are shown with several ingredients added in flash glass along with bowl and plates being mixed in close.,1\n11781,anetv_vutxJfF0Rlg,19296,\"The coffee helps you to burn fat and boost metabolism and seemed to help a person lose 5 lbs in 1 week. the coffee help to eliminated craving, give energy, and you\",The coffee helps you to burn fat and boost metabolism and seemed to help a person lose 5 lbs in 1 week.,\"the coffee help to eliminated craving, give energy, and you\",gold,ca the crawl part of the side.,can also get in the coffee free every month.,can't wash your ears.,do the power line victoriously but sing.,1\n11782,anetv_vutxJfF0Rlg,19297,\"The coffee help to eliminated craving, give energy, and you can also get in the coffee free every month. If you refer 3 people you\",\"The coffee help to eliminated craving, give energy, and you can also get in the coffee free every month.\",If you refer 3 people you,gold,'re feeling this then is working on the video and make a decide stand just taking time with a metal leather wall.,actually take a bath and again for the cubicle.,start doing core surprise waking quickly doing a little really and combo before sing and plays together as if to play.,can get free coffee every month and other free prizes as well.,3\n11783,anetv_vutxJfF0Rlg,14110,Text is shown as well as pictures of people smiling to each other. Cars and money,Text is shown as well as pictures of people smiling to each other.,Cars and money,gold,are shown as well as more text and pictures of people drinking coffee.,are shown resting on the roof as well as looking through photographs.,are shown and the woman talks with and one man in out to the camera.,\"are shown in a gazebo, with people walking around and talking to other people.\",0\n11784,lsmdc3025_FLIGHT-11972,6046,\"She takes the glass from his hand, and sets it carefully on the nearby table. She\",\"She takes the glass from his hand, and sets it carefully on the nearby table.\",She,gold,\"waits on the sidewalk as someone escorts her to the bike, and looks her inside.\",\"stares at her colleagues's parents, then turns to his voice.\",pushes herself towards him.,gives a little pat then crosses to someone who walks over to another booth.,2\n11785,lsmdc3025_FLIGHT-11972,6042,\"Carrying the pillow, she walks to someone. She\",\"Carrying the pillow, she walks to someone.\",She,gold,spots a family photo for two.,climbs from the bus.,\"lifts his leg, and places the cushion under it.\",turns in back and glances at him.,2\n11786,lsmdc3025_FLIGHT-11972,6044,\"He raises the glass, as if to take a drink, but stops midway. Someone\",\"He raises the glass, as if to take a drink, but stops midway.\",Someone,gold,drops to his knees sideways.,\"nods touched, and he smiles wildly.\",straightens up on a sofa to remove his jacket.,\"hesitates, her gaze steady on him.\",3\n11787,lsmdc3025_FLIGHT-11972,6043,Someone is laid back in the armchair. He,Someone is laid back in the armchair.,He,gold,\"slowly wraps her arm around his neck, kisses his chest and turns him on but they have gone.\",\"kicks in the glass, then brings it back behind his table to catch his attention.\",seizes her and plants her foot on her belly.,\"raises the glass, as if to take a drink, but stops midway.\",3\n11788,lsmdc3025_FLIGHT-11972,6045,\"Someone hesitates, her gaze steady on him. She\",\"Someone hesitates, her gaze steady on him.\",She,gold,\"tries to stop, but struggles to remain composed.\",eyes a flat iron.,\"takes the glass from his hand, and sets it carefully on the nearby table.\",pushes her purse top off as she walks deeper into the salon.,2\n11789,anetv_QjMNQxu3Zf8,18528,A woman is brushing her teeth in a bathroom. She,A woman is brushing her teeth in a bathroom.,She,gold,spits the toothpaste on her toothbrush.,uses shaving brushes to shave her leg.,is brushing her teeth and beginning to brush her teeth.,laughs and continues to brush her teeth.,3\n11790,anetv_QjMNQxu3Zf8,6744,The lady is in the bathroom brushing her teeth while talking to the camera. The lady,The lady is in the bathroom brushing her teeth while talking to the camera.,The lady,gold,picks the girls up and frowns.,started dancing and laughing then brush her teeth.,brushes her fingers and trims the lady's legs.,attempts to put the glasses back in her mouth and continues to do anything more moves.,1\n11791,anetv_QjMNQxu3Zf8,18529,She laughs and continues to brush her teeth. She then,She laughs and continues to brush her teeth.,She then,gold,rubs on her chin and dabs.,is brushing her teeth as well as looking at the tv.,shows different facial hair.,bends over and spits into a sink.,3\n11792,lsmdc0043_Thelma_and_Luise-68518,18347,He sees people in the car. Some of the police sharpshooters,He sees people in the car.,Some of the police sharpshooters,gold,are still trained on their vehicles.,explode in the town and the kids flee.,get out of the car's truck and drive away.,are sporting semi - automatic rifles.,3\n11793,lsmdc0043_Thelma_and_Luise-68518,18346,He can't stop looking. He,He can't stop looking.,He,gold,loads a photograph in his raft.,\"stands in his seat seat, protectively bent with someone.\",gets out of bed and stares into it.,sees people in the car.,3\n11794,lsmdc0043_Thelma_and_Luise-68518,18345,The helicopter lands behind the row of police cars. He,The helicopter lands behind the row of police cars.,He,gold,sees the roof being blown up by its dead.,is hauling on its wheels with waves parked on a 7 - wheeler farm.,sees people facing each other.,falls on the radio.,2\n11795,anetv_-Kmx-BCAsQc,19024,A man on the right takes a photo. The man,A man on the right takes a photo.,The man,gold,stands filming the man and starts to play a set of drums.,swings one leg at a time.,shows how he will play properly.,stands and with the discuss in front of the audience.,1\n11796,anetv_-Kmx-BCAsQc,19026,The man does a handstand then dismounts. The man,The man does a handstand then dismounts.,The man,gold,laughs and raises his arms as tall others crowd behind him.,walks away as another walks to the pommel horse.,jumps onto his back and then dismounts.,throws large legs across the court.,1\n11797,anetv_-Kmx-BCAsQc,19023,A man in orange waves then mounts a pommel horse. The man,A man in orange waves then mounts a pommel horse.,The man,gold,spins it around with the other leg by which then catches his other with his body and catches it.,spins around and around on the pommel horse.,does a handstand as the cow shoots throughout the stadium.,throws the pole down and ropes the second calf.,1\n11798,anetv_-Kmx-BCAsQc,19025,The man swings one leg at a time. The man,The man swings one leg at a time.,The man,gold,does a handstand then dismounts.,jumps away from backwards.,gives a cool pistol.,lets the gray jacket rolls over and knocks it against the wall.,0\n11799,anetv_EYIYohKR0Qo,10894,Several girls are then shown deep underwater doing a shimmy motion and then back stroking in the pool. One female,Several girls are then shown deep underwater doing a shimmy motion and then back stroking in the pool.,One female,gold,beneath her begins to get ready to play.,is seen holding up a shot and warming up talking to the camera.,\"then begins breast stroking, waves to the camera and then gets out.\",swimmer dives into the water to stay on the ball by the audience.,2\n11800,anetv_EYIYohKR0Qo,4327,A woman is preparing to dive into a pool. She,A woman is preparing to dive into a pool.,She,gold,does the hula hoop.,throws the ball and throws it onto the field.,takes drinks from a bottle.,goes to the diving board and leans forward.,3\n11801,anetv_EYIYohKR0Qo,10893,The screen then flashes between several girls as they prepare to jump dive in the water. Several girls,The screen then flashes between several girls as they prepare to jump dive in the water.,Several girls,gold,are then shown deep underwater doing a shimmy motion and then back stroking in the pool.,are wearing multi 14.,dance in front of the camera as the women continue performing.,throw paddles at each other while then swim in the water.,0\n11802,anetv_EYIYohKR0Qo,10892,A young female dressed in a white jersey and purple shorts is standing on the edge of a pool stretching. The screen then,A young female dressed in a white jersey and purple shorts is standing on the edge of a pool stretching.,The screen then,gold,flashes between several girls as they prepare to jump dive in the water.,begins to show her giving high fives.,stops running up and she is jumping multiple times.,puts on a blank screen.,0\n11803,anetv_EYIYohKR0Qo,4328,She goes to the diving board and leans forward. She,She goes to the diving board and leans forward.,She,gold,teaches her how to sweep the rim of the stash so that his knees are frozen with water.,\"jumps into the water, swimming like a fish.\",does a flip backwards throughout the board.,makes a shot and approaches in slow motion.,1\n11804,anetv_EYIYohKR0Qo,10895,\"One female then begins breast stroking, waves to the camera and then gets out. Two other girls then\",\"One female then begins breast stroking, waves to the camera and then gets out.\",Two other girls then,gold,begin to stand and begin skating together in a game of tug o war.,holds up the hoop and places it on the arc hoop.,\"begin taking shots by pushing and leaping, attempting to wind up while performing.\",stand side by side on the outside of the pool and jump in together and race to the other side of the pool.,3\n11805,anetv_yvTmIulkl7c,8299,She swings a baton at a small pinata. She,She swings a baton at a small pinata.,She,gold,throws it onto the board.,cones up her forward lip.,is blindfolded as she continues to swing again and again.,continues swinging the ax as she takes the swing.,2\n11806,anetv_P9qhbSYblG4,1239,A close up is seen of a fancy bowling ball. A man,A close up is seen of a fancy bowling ball.,A man,gold,walks up to a lane with a ball in his hand.,puts several balls in the cups.,attempts to hit the ball around the lane.,throws a bowling ball across a park.,0\n11807,anetv_P9qhbSYblG4,1240,A man walks up to a lane with a ball in his hand. He,A man walks up to a lane with a ball in his hand.,He,gold,\"throws the ball, knocking down pins.\",suddenly shoots one ball onto the floor and frees it from the air.,\"spins the hoop, then takes the ball and pins it on the table.\",\"starts doing the ups, scoop it up and drops it, and rolls into the ball.\",0\n11808,anetv_P9qhbSYblG4,15831,A colorful bowling ball rests in a rack. A boy,A colorful bowling ball rests in a rack.,A boy,gold,\"sits down on it, holding a silencer then puts his hand on his face.\",rolls his stick on the ground.,bowls strikes down a lane in a bowling alley.,attempts a shot in a circle.,2\n11809,anetv_GBdj6erXjDM,6366,The girl laughs while trying to eat the ice cream. The girl,The girl laughs while trying to eat the ice cream.,The girl,gold,nods and comes back towards the monkey bar.,licks the ice cream cone with the tip of her tongue.,measures dishes in her bathroom.,splashes into the man's crotch.,1\n11810,anetv_GBdj6erXjDM,6365,A girl sits in the drivers seat of a car and enjoys a ice cream cone. The girl,A girl sits in the drivers seat of a car and enjoys a ice cream cone.,The girl,gold,obscures her nose ice in a hole in an ice cream cone.,laughs while trying to eat the ice cream.,\"and a man walk towards each other, then they talk about the car.\",puts a cream cone over her lip and continues to fix the flower.,1\n11811,anetv_rG-WlnAoc3M,15466,\"Then, the man cleans again with soap and water the car for the second time. The man\",\"Then, the man cleans again with soap and water the car for the second time.\",The man,gold,puts the light on a sink in a lake then clean the corner of the table.,cleans with a cloth and rinse with water the rims of the car.,dressed while sitting around putting his right hands into a container.,removes the heavy hose of the mop and put it off the washing machine to clean more water.,1\n11812,anetv_rG-WlnAoc3M,15467,\"The man cleans with a cloth and rinse with water the rims of the car. After, the man\",The man cleans with a cloth and rinse with water the rims of the car.,\"After, the man\",gold,pulls up the dry snow on a black boot and adds other cleaning materials.,opens the door and walks in the window using his thumb to wipe the drain.,dry the car manually with a cloth.,cleans the tent and shows his spare tire.,2\n11813,anetv_rG-WlnAoc3M,15465,\"The man rinses the car with water. Then, the man\",The man rinses the car with water.,\"Then, the man\",gold,\"rinse his hands off the water, and dries off the ski wash as he rinses the dogs.\",uses a rug to crawl on the carpet near a tree.,uses a brush to remove the clean water surface.,cleans again with soap and water the car for the second time.,3\n11814,anetv_rG-WlnAoc3M,15464,\"A person wet a car with water, then he puts detergent to the car using a long squeegee. The man\",\"A person wet a car with water, then he puts detergent to the car using a long squeegee.\",The man,gold,takes the wheel off and cleans out its other side.,wipes down the hose with an iron sprayer.,rinses the car with water.,began painting the insides in the box to make sure it is clean and clean and clean.,2\n11815,anetv_rG-WlnAoc3M,15468,\"After, the man dry the car manually with a cloth. Next, the man\",\"After, the man dry the car manually with a cloth.\",\"Next, the man\",gold,puts a rod inside the tools and removes the snowboard under a covered ski container.,\"cleans inside the car, then drives the car.\",takes out his brush and brush and apply the shoe to another man.,puts a piece of cloth over the border of the ski.,1\n11816,anetv__B3Q8bTJWG4,6536,A man rides a horse into an arena. He,A man rides a horse into an arena.,He,gold,use field fruits and snowboard placed.,uses a horse steps.,mounts the horse.,jumps off the horse and ties a calf.,3\n11817,anetv__B3Q8bTJWG4,6538,He stands up and gets back on his horse. Two people,He stands up and gets back on his horse.,Two people,gold,sit at a table having a meal and by moments of shaving the other.,are riding on roller blades.,get out of the carriage.,come and lay the calf down on the arena.,3\n11818,anetv__B3Q8bTJWG4,6537,He jumps off the horse and ties a calf. He,He jumps off the horse and ties a calf.,He,gold,\"jumps down and grabs the calf, then jumps off the horse.\",ropes a calf and drops it.,stands up and gets back on his horse.,starts walking along the aisle towards the horses.,2\n11819,anetv_7DJDUzdw_I4,3913,\"The man then grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd. As he finishes, another person\",The man then grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd.,\"As he finishes, another person\",gold,approaches the bars as well as a coach.,builds up arms and blows to kneel.,is seen running in slow motion letting him go by the glider.,appears and it stops.,0\n11820,anetv_7DJDUzdw_I4,3912,A male African American gymnast is in a large arena full of people preparing for a performance. The man then,A male African American gymnast is in a large arena full of people preparing for a performance.,The man then,gold,\"performs the number, walks back, and then does a body stand with a repeated bar before landing back on the stage.\",spins around and lifts his rope to an obstacle in a gym.,begins to lift the bar all around the track and begins performing a gymnastics routine on different uneven bars several more times.,grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd.,3\n11821,anetv_LslQvR_4bkk,15239,\"A man practice ice hockey throwing a disc with a stick. Then, the player scores in a game and he\",A man practice ice hockey throwing a disc with a stick.,\"Then, the player scores in a game and he\",gold,is congratulated by teammates.,multiple scores a goal.,walks back for matches.,changes from the team to start the game.,0\n11822,anetv_MzqovHjEKE4,6777,A man is seen speaking to the camera and leads into him holding up a tool and pointing to several bushes. The man then,A man is seen speaking to the camera and leads into him holding up a tool and pointing to several bushes.,The man then,gold,trims along the bush while stopping to speak to the camera and holding up the tool.,puts onto the object and begins cutting the grass around the area.,begins brushing a person's hair.,puts the boy down and begins putting sticks into a paint pan.,0\n11823,anetv_9uieGqu2TYA,6867,\"Various short clips of different men on different parallel bars in gymnasiums are doing handstands, swinging on them and doing various other tricks as spectators look on. The last man on the parallel bars\",\"Various short clips of different men on different parallel bars in gymnasiums are doing handstands, swinging on them and doing various other tricks as spectators look on.\",The last man on the parallel bars,gold,shows up spinning between jumps in the water.,is successful and then a second where there is a dirt background.,wins and lays forward.,seems to be practicing in a gym with no large group of spectators looking on.,3\n11824,anetv_9uieGqu2TYA,6866,\"A black intro screen appears and it contains white words that say Named Gymnastic Elements Parallel bars, then music: Nightwish Where were you last night, and the last screen includes foreign words an email and a website. Various short clips of different men on different parallel bars in gymnasiums\",\"A black intro screen appears and it contains white words that say Named Gymnastic Elements Parallel bars, then music: Nightwish Where were you last night, and the last screen includes foreign words an email and a website.\",Various short clips of different men on different parallel bars in gymnasiums,gold,\"are doing handstands, swinging on them and doing various other tricks as spectators look on.\",\", front of the firm, and capoeira with different gears.\",\"preparing to break in one different location, with them jumping and just how to do it in the first club.\",having just participating and ends with 2 different people doing different reasons.,0\n11825,lsmdc0012_Get_Shorty-53327,16594,\"Someone watches as someone picks up a copy of the script, begins flipping through it. Someone\",\"Someone watches as someone picks up a copy of the script, begins flipping through it.\",Someone,gold,sits at a picture of a pack on someone's desk.,\", drops the cardigan in the center of the yard, who in colorful.\",\"comes into the apartment, then hands him the cup of coffee.\",\"flips through the script, sees a name.\",3\n11826,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4597,Now someone peers through the binoculars. People,Now someone peers through the binoculars.,People,gold,is sitting and looming down on the bridge.,ride into the canyon.,catch up beside his stomach.,approach a nazi cruiser.,1\n11827,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4587,\"He just looks at someone, overcome with emotion. Finally, he\",\"He just looks at someone, overcome with emotion.\",\"Finally, he\",gold,begins with someone's new results.,takes another teacup in drinks that will be his next.,hugs him so that he can take his hands.,throws his arms around him.,3\n11828,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4596,He lowers the binoculars and turns to someone. Now someone,He lowers the binoculars and turns to someone.,Now someone,gold,fights his way through a soggy loft working in a storm lawn.,waits with the grocer on the screen.,addresses a physician who's holding a clipboard.,peers through the binoculars.,3\n11829,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4588,\"Finally, he throws his arms around him. And he\",\"Finally, he throws his arms around him.\",And he,gold,\"holds a garment in his hand, without his shirt missing.\",\"eyes his face for steady, not speechless.\",becomes aware of his father's embrace.,begins to toss him around and then smooth slapped his shoulder.,2\n11830,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4595,Someone peers through binoculars to see the canyon of the crescent moon. He,Someone peers through binoculars to see the canyon of the crescent moon.,He,gold,reads his hand covered in mock blood.,lowers it and slithers bree to a cliff.,bends down behind him.,lowers the binoculars and turns to someone.,3\n11831,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4586,\"Finally, someone becomes aware of his presence. He just\",\"Finally, someone becomes aware of his presence.\",He just,gold,looks back at her and motions for her to escape.,stares at the brown hued.,\"looks at someone, overcome with emotion.\",keeps someone's hand among its lifeless surface.,2\n11832,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4599,Now we turn a corner and they see the hidden city. Its spectacular Grecian facade,Now we turn a corner and they see the hidden city.,Its spectacular Grecian facade,gold,sits posted outside the massive building.,\"illuminate the tall, metal buildings.\",is carved directly into the rock.,shows an island of chinese stones.,2\n11833,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4585,\"He joins the others at the edge of the cliff, looking down at the wreckage below with a bewildered expression. Finally, someone\",\"He joins the others at the edge of the cliff, looking down at the wreckage below with a bewildered expression.\",\"Finally, someone\",gold,walks down the street.,becomes aware of his presence.,turns away without starting his cold expression.,comes back onto the bridge and runs through the woodland with him.,1\n11834,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4589,And he becomes aware of his father's embrace. He,And he becomes aware of his father's embrace.,He,gold,hugs his father back.,pushes the boy back.,\"kisses the boy still hugging, then kisses him back.\",notices his friends looking at him then reaches out to shovel a pose.,0\n11835,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4593,\"Someone turns and walks toward the horse with people. Suddenly someone, borne on the wind,\",Someone turns and walks toward the horse with people.,\"Suddenly someone, borne on the wind,\",gold,looks down to the precipice.,turns to the shock.,blows into scene and lands at someone's feet.,chases them through a concrete wall.,2\n11836,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4591,\"Someone pats someone on the back and someone collapses, sitting hard on the rocky cliff edge. Unaware, people\",\"Someone pats someone on the back and someone collapses, sitting hard on the rocky cliff edge.\",\"Unaware, people\",gold,gather around to watch the bomber plow down the cliff.,creep up the steep ridge of the rohan one.,are hauled down by other hydra soldiers.,start to walk away.,3\n11837,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4592,\"Unaware, people start to walk away. Someone\",\"Unaware, people start to walk away.\",Someone,gold,turns and walks toward the horse with people.,\"dodges a zombie, trying to fend the dancers.\",slowly scoops up the foot of the bed.,grabs a dark piece of shrimp.,0\n11838,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4598,People ride into the canyon. Now we turn a corner and they,People ride into the canyon.,Now we turn a corner and they,gold,find an plowing valley west.,look into a state of papers.,stand up through the ministry of magic.,see the hidden city.,3\n11839,lsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4590,People are moved by this sudden reconciliation. Someone pats someone on the back and someone,People are moved by this sudden reconciliation.,Someone pats someone on the back and someone,gold,slams him into a mass of cave animals.,gets someone free literature.,is at the other end.,\"collapses, sitting hard on the rocky cliff edge.\",3\n11840,anetv_l9mvKfKACio,18346,\"A group of people are outside a ski resort entitled Boulder ridge and they begin to wait in line with their tubes. As they are waiting, they\",A group of people are outside a ski resort entitled Boulder ridge and they begin to wait in line with their tubes.,\"As they are waiting, they\",gold,\"are close together at the same slope, all in the same spot, their riders turn.\",can see several people going down the hill and tubing before it is finally their turn.,brace themselves over the vine and begin going across a large wooded path.,go back to the first time who is hard at the altar of their slide.,1\n11841,anetv_l9mvKfKACio,18347,\"As they are waiting, they can see several people going down the hill and tubing before it is finally their turn. Once they reach the bottom, they\",\"As they are waiting, they can see several people going down the hill and tubing before it is finally their turn.\",\"Once they reach the bottom, they\",gold,race off an dirt ramp and tear around a staircase that falls behind the big piece of concrete.,grab their tube and begin to walk off the slope.,change up an lose in the sky above the alien.,\"begin riding down the road, very fast and then can trotting by the bottom of the hill.\",1\n11842,anetv_MlkXsUDCoww,4700,The person pushes the mower along the edge of the grass and throughout the rest of the grass. The man then,The person pushes the mower along the edge of the grass and throughout the rest of the grass.,The man then,gold,cuts out more plants and begins to step up what he just done when the dog returns to skateboarding in a field of grass.,grabs a weed wacker and cuts the weeds along the edge.,scoops the person in front and lights the blade while trimming the exterior of the bushes.,finishes his the mower and begins mowing the lawn and ending up mowing the lawn.,1\n11843,anetv_MlkXsUDCoww,4699,A person is seen pushing a lawn mower all across the yard. The person,A person is seen pushing a lawn mower all across the yard.,The person,gold,continues decorating around the tree while still in the grass.,waves to the camera and pushes the mower all around the yard.,pushes the mower along the edge of the grass and throughout the rest of the grass.,continues shoveling along the yard while the camera captures his movements.,2\n11844,anetv__vVKdZM5Cy8,15007,A man is shown holding a volleyball talking to the camera and leads into showing various jumps. He,A man is shown holding a volleyball talking to the camera and leads into showing various jumps.,He,gold,continues talking to the camera and moving around the gym hitting the ball.,has trouble jumping up and down in a circle.,is seen again performing a cheer in slow motion thrown in the end as well as clips on playing tennis.,continues pushing the horse back and fourth while the man continues to speak to the camera.,0\n11845,anetv_5gBRDguUe8U,16433,A person is seen sitting on a stool and piecing together several parts of a bike. The person,A person is seen sitting on a stool and piecing together several parts of a bike.,The person,gold,is seen separating the ice with a machine and holding it up to create a product.,continues piecing the bike together and pans around the finished product in the end.,begins moving its tail all around and ends by jumping off of the roof and looking to the camera.,leads him along a rope while moving back and fourth to the chain and work.,1\n11846,lsmdc3015_CHARLIE_ST_CLOUD-696,9327,\"He quietly opens the driver's side door and gets behind the wheel. As he starts the engine, the headlights\",He quietly opens the driver's side door and gets behind the wheel.,\"As he starts the engine, the headlights\",gold,moves the limousine reverses away.,reveal someone standing in his path.,tap the right of the car.,are out in the plain.,1\n11847,lsmdc3015_CHARLIE_ST_CLOUD-696,9325,\"He hops down to the Splendid Splinter which sits with its sails lowered, then jumps down to the shadowy driveway. Creeping alongside the house, he\",\"He hops down to the Splendid Splinter which sits with its sails lowered, then jumps down to the shadowy driveway.\",\"Creeping alongside the house, he\",gold,gazes out of the window.,climbs out someone's craning 2 door.,makes his way to the family car.,finds the brown - cat path inside the mansion.,2\n11848,lsmdc3015_CHARLIE_ST_CLOUD-696,9322,\"As the boy obeys, their mother comes out in scrubs. She\",\"As the boy obeys, their mother comes out in scrubs.\",She,gold,runs after a bus.,walks out of the room with her leg raised.,offers them some cash on the door.,spits water from the t - board.,0\n11849,lsmdc3015_CHARLIE_ST_CLOUD-696,9326,\"Creeping alongside the house, he makes his way to the family car. He\",\"Creeping alongside the house, he makes his way to the family car.\",He,gold,quietly opens the driver's side door and gets behind the wheel.,\"notices the abandoned money on a desk and starts for it, driving it in the center of the room.\",takes it as the bus rumbles.,waits by the door where someone and someone sit aside and stare at the open door above.,0\n11850,lsmdc3015_CHARLIE_ST_CLOUD-696,9329,\"Someone glares, then begrudgingly beckons his younger brother. He\",\"Someone glares, then begrudgingly beckons his younger brother.\",He,gold,gets into the car beside him.,shakes one cell in his shirt.,punches someone in the face.,turns to a sitting audience.,0\n11851,lsmdc3015_CHARLIE_ST_CLOUD-696,9328,\"As he starts the engine, the headlights reveal someone standing in his path. He\",\"As he starts the engine, the headlights reveal someone standing in his path.\",He,gold,\"stares down, observing the ltd of the serpentine height.\",is lying on top of another couch.,leads them back out to the road.,\"wears a red sox jacket, his mitt, and a giant foam finger.\",3\n11852,anetv_ZXlJIrRiXrA,14032,\"He continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it. He\",\"He continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it.\",He,gold,begins lying on top and that you're by summoning a lunge and hitting the board.,walks over to the decorated and slides it hand fish through the opening.,pulls the slices of a piece from the hole and tosses it on the wall.,picks it up to show off to the camera.,3\n11853,anetv_ZXlJIrRiXrA,14031,A man is pulling something up from a hole in the snow as he appears to be fishing. He,A man is pulling something up from a hole in the snow as he appears to be fishing.,He,gold,walks up to remove a thread out of a can.,\"continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it.\",retrieves the fishing fish from the fishing hole in the hole.,swims in the water.,1\n11854,anetv_ZXlJIrRiXrA,14030,A nice show is a snowy landscape is shown with a campsite right along the tree line. A man,A nice show is a snowy landscape is shown with a campsite right along the tree line.,A man,gold,is watching the author with a trophy.,is going down raking the driveway in a backyard then is shown using a large tree and mulch together on a tree.,is pulling something up from a hole in the snow as he appears to be fishing.,is seen standing around a dirt cutting field pushing the trimmer on top.,2\n11855,anetv_ZXlJIrRiXrA,18642,A view is seen of snow covered ground and people on the ice. A man,A view is seen of snow covered ground and people on the ice.,A man,gold,sets up a fishing line in a hole in a lake.,stands up and begins to ride a stationary bike in the woods.,pushes a man who emerges in a big parking environment.,drives a car with a cardboard bar and drinks from the glass.,0\n11856,anetv_ZXlJIrRiXrA,18643,A man sets up a fishing line in a hole in a lake. He then,A man sets up a fishing line in a hole in a lake.,He then,gold,uses a cutter to spread over the tile.,pulls a fish through the hole.,focuses on the mixes and ends by demonstrating how to use a waterfall.,cleans the river bowl he takes the tarp and folds it around it.,1\n11857,anetv_s1E6EKs1MZw,11372,A man in a gorilla suit is playing a saxophone in the middle of a store. The employees,A man in a gorilla suit is playing a saxophone in the middle of a store.,The employees,gold,are gathering at the cordon.,look on and laugh at the person playing and use their phones to take pictures.,join an audience in front of a crowd of people watching the man in all of them.,continue to cheer and holding a microphone.,1\n11858,anetv_s1E6EKs1MZw,11373,The employees look on and laugh at the person playing and use their phones to take pictures. The gorillas reaches out to grab one of the employees hands and the man,The employees look on and laugh at the person playing and use their phones to take pictures.,The gorillas reaches out to grab one of the employees hands and the man,gold,is very embarrassed by it.,begins out of the situation lather up.,is not even celebrating.,squats over in their pocket facing one another.,0\n11859,anetv_s1E6EKs1MZw,11375,They talk to each other a bit and the other employees begin to clap excitedly. The Gorilla suit man,They talk to each other a bit and the other employees begin to clap excitedly.,The Gorilla suit man,gold,continues in the blackness of licking them and withdrawing the song.,is playing a humvee.,plays the sax some more as everyone is still laughing.,points to the harmonica and they go in.,2\n11860,anetv_s1E6EKs1MZw,11374,The gorillas reaches out to grab one of the employees hands and the man is very embarrassed by it. They talk to each other a bit and the other employees,The gorillas reaches out to grab one of the employees hands and the man is very embarrassed by it.,They talk to each other a bit and the other employees,gold,do hands with the middle men by the table.,than begin to live.,begin to congratulate him.,begin to clap excitedly.,3\n11861,anetv_s1E6EKs1MZw,11376,The Gorilla suit man plays the sax some more as everyone is still laughing. He,The Gorilla suit man plays the sax some more as everyone is still laughing.,He,gold,\"comes out of the room, right by a ring of glittery juice.\",follow someone's gaze as he notices conductor - white dog trick behind them.,plays and plays to the camera as the video comes to an end.,opens the box album to jam his revolver and put him to the fire.,2\n11862,anetv__XRJk2oFwZw,6438,\"The fielders on the side field are waiting to guard the ball and prevent the batter from making runs. After the bowler causes batter get out by hitting the stumps behind him, the entire team\",The fielders on the side field are waiting to guard the ball and prevent the batter from making runs.,\"After the bowler causes batter get out by hitting the stumps behind him, the entire team\",gold,hits the children surfboard.,cheers for their runs.,goes into a wrong corner of the circle.,heads towards the teams.,1\n11863,anetv__XRJk2oFwZw,6436,The bowler from the blue teams hits an overhand ball to the batter. The bowler,The bowler from the blue teams hits an overhand ball to the batter.,The bowler,gold,raises his hand to claim that the batter has not made a run.,\"runs and goes on his bagpipe, while stretching.\",lets the ball throw on the teammates and scores.,reaches for the pole.,0\n11864,anetv__XRJk2oFwZw,6437,The bowler raises his hand to claim that the batter has not made a run. The fielders on the side field,The bowler raises his hand to claim that the batter has not made a run.,The fielders on the side field,gold,are also sprinting perfect.,\"are bleeding, showing a appearance to slow down and talking about the game.\",are waiting to guard the ball and prevent the batter from making runs.,is turning to catch into the crowd.,2\n11865,anetv__XRJk2oFwZw,6441,The blue team continues playing as the bowler bowls more overhand balls to the batter. The batter then walks out and another batter from his team,The blue team continues playing as the bowler bowls more overhand balls to the batter.,The batter then walks out and another batter from his team,gold,blows on the cricket and volleys one in through the scores.,comes on the field while the blue team waits to start another round.,hits the finished goal.,hits on a bar.,1\n11866,anetv__XRJk2oFwZw,6439,\"After the bowler causes batter get out by hitting the stumps behind him, the entire team cheers for their runs. The bowler bowls an overhand again to the batter and the batter\",\"After the bowler causes batter get out by hitting the stumps behind him, the entire team cheers for their runs.\",The bowler bowls an overhand again to the batter and the batter,gold,is shot and scores.,hits the outdoor ball.,knocks the other man away.,hits it straight across.,3\n11867,anetv__XRJk2oFwZw,20034,A small group of people are seen standing around an indoor gym playing a game of crochet with one another. The people,A small group of people are seen standing around an indoor gym playing a game of crochet with one another.,The people,gold,continue playing with one another as they hit the ball and run around and walk away in the end.,are seen performing hockey on the sideline while a man in the back speaks.,continue with their hands and move around with one another while the camera follows.,continue riding around one another while others watch on the side.,0\n11868,anetv__XRJk2oFwZw,6440,\"Again when the bowler hits an overhand, the batter tries to run to make a run but is stopped by the fielders who hit the ball on the stumps. The blue team\",\"Again when the bowler hits an overhand, the batter tries to run to make a run but is stopped by the fielders who hit the ball on the stumps.\",The blue team,gold,continues playing as the bowler bowls more overhand balls to the batter.,scores as the boys continue to play and the judge watch the game and see him at the sport.,in the white shirt go the ball and runs and bounces his stick over the net.,is kicking a ball across the field in front of the girls who lowered them to the wall.,0\n11869,anetv__XRJk2oFwZw,6434,There are two teams playing cricket in an indoor cricket field that is covered by net on two sides. The two teams,There are two teams playing cricket in an indoor cricket field that is covered by net on two sides.,The two teams,gold,play against each other while someone volleys the ball on the wall.,are playing volleyball as they march slowly.,are represented by blue color and white color.,stand in the field to celebrate with each other.,2\n11870,anetv_O5vpeIfQxLQ,8509,The graphic Ice Cream Eating Competition appears on screen. Three people,The graphic Ice Cream Eating Competition appears on screen.,Three people,gold,\"cheer doing jump, trying to score.\",standing on a track celebrating are sitting on the rink.,are inside badminton at a track.,are eating ice cream out of cups with their fingers.,3\n11871,anetv_O5vpeIfQxLQ,10008,A man eats ice cream with his hands while a girl eating ice cream next to him watches and laughs. A woman on the man's other side,A man eats ice cream with his hands while a girl eating ice cream next to him watches and laughs.,A woman on the man's other side,gold,flips him a watermelon five.,shows his finger around buckbeak's neck and holding the ice cream.,is also eating ice cream with her hands.,is holding a red napkin once he is carried away.,2\n11872,anetv_O5vpeIfQxLQ,8510,Three people are eating ice cream out of cups with their fingers. The woman on the far end,Three people are eating ice cream out of cups with their fingers.,The woman on the far end,gold,is being turned in the machine.,\"finishes hers first, followed by the other two.\",put their glasses on the mouths of a man up on the bottom of the cross.,gather up and spits her teeth into her mouth.,1\n11873,anetv_O5vpeIfQxLQ,10009,A woman on the man's other side is also eating ice cream with her hands. Another woman,A woman on the man's other side is also eating ice cream with her hands.,Another woman,gold,watches as they each hold up their empty cup.,is already licking the ice cream out with the hose.,is standing on the side of the court with a small residue in a green center as other other colored balls in a photo.,\"is shown in the kitchen wearing her skin with noodles, and standing shaking brown cream, little cake is around small ice cream and\",0\n11874,anetv_O5vpeIfQxLQ,8511,Credits animate on the screen. The collage,Credits animate on the screen.,The collage,gold,wipes water before his eyes as he speaks.,demonstrates taking tips to hold incredible extensions.,reappears with the end on it.,\"stands petals and flowers, items tied back and forth across a shed, beyond the house.\",2\n11875,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6714,\"People are on the porch of the new house, with someone lined up before them. Someone\",\"People are on the porch of the new house, with someone lined up before them.\",Someone,gold,sits glumly on a curb.,is standing in front of his big black town car.,\"holds over a large, creepy cat.\",raises a fist to her lips.,1\n11876,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6717,\"His rent collector, someone, is talking, pointing to maps spread out on the desk. A buzzer is heard, and someone\",\"His rent collector, someone, is talking, pointing to maps spread out on the desk.\",\"A buzzer is heard, and someone\",gold,tries on the broke.,snaps on the dictaphone on his desk.,sits hunched in a chair near the sofa.,gets into her car.,1\n11877,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6705,\"People, assisted by three of someone children, are carrying out the last of the furniture. The family\",\"People, assisted by three of someone children, are carrying out the last of the furniture.\",The family,gold,\"consists of someone, his wife and four kid of various ages, from two to ten.\",strolls out with a towel wrapped while one player places the bottle down.,is drunkenly getting into the car.,cuts put down their embroidery to watch.,0\n11878,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6706,\"The family consists of someone, his wife and four kid of various ages, from two to ten. People\",\"The family consists of someone, his wife and four kid of various ages, from two to ten.\",People,gold,are helping someone move.,follow him as he holds the cash in his palm.,acknowledge someone with ease.,do a butterfly party dancing in front of a large green sheet.,0\n11879,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6709,\"In front of one of the miserable shacks that line the street are two vehicles. One of them is someone's rickety car, and the other\",In front of one of the miserable shacks that line the street are two vehicles.,\"One of them is someone's rickety car, and the other\",gold,stuff in the road on it.,is an even more rickety truck piled high with household goods.,\"has a snow counter, suites on and now at school a small, grassy crust.\",\"is flat - blanketed, only by an adult's.\",1\n11880,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6716,\"Someone cross themselves, shaking hands all around. His rent collector, someone,\",\"Someone cross themselves, shaking hands all around.\",\"His rent collector, someone,\",gold,is carried behind him.,overlooks the busy city and following someone and travels fast through the city streets.,\"is talking, pointing to maps spread out on the desk.\",appears in the doorway of someone's closet.,2\n11881,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6713,It has the promise when built up of being a pleasant little middle class section. People,It has the promise when built up of being a pleasant little middle class section.,People,gold,move slowly towards the others and each going down the dark without seeing to watch.,are shown inside a house using a wooden frame to hit a concrete using the hoop.,\"are on the porch of the new house, with someone lined up before them.\",\"are done her school, sits at the bottom of a floating bar, looking off, sadly.\",2\n11882,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6715,\"His wife, in the car, is a very attractive, sophisticated - looking lady, dripping with furs and jewels. Someone\",\"His wife, in the car, is a very attractive, sophisticated - looking lady, dripping with furs and jewels.\",Someone,gold,advances and are both escorted by the police.,gives him a hug then peers out.,is watching someone across the street.,\"has someone in a bikini, watching the music.\",2\n11883,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6707,About a dozen neighbors crowd around. Someone,About a dozen neighbors crowd around.,Someone,gold,jumps on her back.,crashes into the seemingly shooting second.,turns a gaze off someone.,\"gets in the front seat of the car, with the baby in her arms.\",3\n11884,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6711,\"The rickety caravan starts off down the street, to the cheers of the neighbors. The kids\",\"The rickety caravan starts off down the street, to the cheers of the neighbors.\",The kids,gold,are belly duty on the island.,\"do the fist, turn as they arrive.\",get up and hold up for their services.,\"enter, with screams of delight.\",3\n11885,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6712,\"The kids enter, with screams of delight. It\",\"The kids enter, with screams of delight.\",It,gold,has the promise when built up of being a pleasant little middle class section.,fires some of the students.,starts to wander up and away from the people.,manages to crawl away from the tiger.,0\n11886,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6710,\"One of them is someone's rickety car, and the other is an even more rickety truck piled high with household goods. The rickety caravan\",\"One of them is someone's rickety car, and the other is an even more rickety truck piled high with household goods.\",The rickety caravan,gold,fly over her from the porch.,\"starts off down the street, to the cheers of the neighbors.\",repeats the moves in one solitary moment.,throws doll - like wood properly can they participate in circles.,1\n11887,lsmdc0014_Ist_das_Leben_nicht_schoen-54721,6708,\"Someone gets in the front seat of the car, with the baby in her arms. The family goat\",\"Someone gets in the front seat of the car, with the baby in her arms.\",The family goat,gold,stands on a residential street by a mini back door.,gets in the back seat with the three kids.,stands on either side of the elevator.,crosses the room and heads for someone's friends as they enter the house.,1\n11888,anetv_5kmGgH4xFW0,18070,\"Two people from the group are dressed in winter gear, go down the slope in their tubes. The other two group members\",\"Two people from the group are dressed in winter gear, go down the slope in their tubes.\",The other two group members,gold,follow them in their tubes as they go down the mountain slope.,canoe down some water hill and while on their snowboard mounted on top while a man in blue follows behind.,stand up off the wall to a profound time a time machine.,\"race around a small cricket area, where a lot of kids wait behind in the white car.\",0\n11889,anetv_5kmGgH4xFW0,18071,The other two group members follow them in their tubes as they go down the mountain slope. The group members,The other two group members follow them in their tubes as they go down the mountain slope.,The group members,gold,are shown snowboarding out of the first hole over a ski slope.,enjoy themselves in the tubes are the go downhill.,steer the animals as a man pushes them up the hill.,float along the hill and smoke rings in the sky.,1\n11890,anetv_5kmGgH4xFW0,15212,They get into intertubes they carried to the top. They then,They get into intertubes they carried to the top.,They then,gold,take off skis under the waterfall.,slide putting on obstacles on a sidewalk.,slide down the hillside in the intertubes.,wave after them as they finish their lesson.,2\n11891,anetv_5kmGgH4xFW0,18074,The snowy mountain slopes have several other tubers enjoying themselves as they go down the slopes. The group,The snowy mountain slopes have several other tubers enjoying themselves as they go down the slopes.,The group,gold,shares a picture of themselves standing next to their snow tubes at the bottom of the mountain slope.,lift up a cloister that gets pushed up to the mountain and weeps over it by walking a ramp and doing another super speed removal,lanky tubes on tubes slowly down slope.,\"sits around in snowslides and paddles off, still trying to stay afloat.\",0\n11892,anetv_5kmGgH4xFW0,18072,The group members enjoy themselves in the tubes are the go downhill. They,The group members enjoy themselves in the tubes are the go downhill.,They,gold,are riding in a dimly - bmx country paddling and performing how to stay in the water.,share some pictures of their tubing adventure.,\"sit down while the tubes raft over ramps, falling into their feet and reaching the edge.\",begin to race faster as they go around the tree.,1\n11893,anetv_5kmGgH4xFW0,18073,They share some pictures of their tubing adventure. The snowy mountain slopes,They share some pictures of their tubing adventure.,The snowy mountain slopes,gold,\"drifts up another high, snow covered hill.\",have several other tubers enjoying themselves as they go down the slopes.,breaks open in the mountain river in balmoral and stop a skier car on a slope fast the hill.,is a network of trees.,1\n11894,anetv_5kmGgH4xFW0,15211,A couple of people are on the top of a snowy hill. They,A couple of people are on the top of a snowy hill.,They,gold,begin chasing a ball down the track.,are in a walking green cloud of smoke.,are performing ski resort riding down a hill.,get into intertubes they carried to the top.,3\n11895,anetv_tT7ljH8GCl8,12130,We get a first hand view of the person's lawn being mowed as they turn and push the mower all over. The man's face,We get a first hand view of the person's lawn being mowed as they turn and push the mower all over.,The man's face,gold,is lit with sweat from an old wooden patio.,is shown again with the child jumping down into the snow as the man stops the mower.,is shown just before he turns off the camera.,is shown again before returning to the vacuum.,2\n11896,anetv_tT7ljH8GCl8,12128,A lawnmower is outside next to a line of round rocks. A person,A lawnmower is outside next to a line of round rocks.,A person,gold,takes a blower in a man.,is standing on top something on a brown board.,starts the mower and begins pushing it alongside the rock border.,is along a ground looking man standing on a row next to a yellow hedges.,2\n11897,anetv_tT7ljH8GCl8,12129,A person starts the mower and begins pushing it alongside the rock border. We,A person starts the mower and begins pushing it alongside the rock border.,We,gold,\"catch the mower and grab a bow, where the man started.\",get a first hand view of the person's lawn being mowed as they turn and push the mower all over.,are holding loads of the frisbee playing the game.,see a hole in the tree.,1\n11898,lsmdc0021_Rear_Window-58644,10498,She listens a moment to the songwriter's melody. She,She listens a moment to the songwriter's melody.,She,gold,\"grins at someone, who freezes.\",\"comments on it to the songwriter, who starts from the beginning again, playing it more fully.\",moves her head downward and shifts her disappointed gaze.,glares tearfully at her own phone.,1\n11899,lsmdc0021_Rear_Window-58644,10518,He piles these on the beds. Someone,He piles these on the beds.,Someone,gold,unrolls a plumed captive.,continue as the rough alien appears at the ground below them.,lowers the camera quickly.,peeks into the deserted area.,2\n11900,lsmdc0021_Rear_Window-58644,10510,\"He lowers the lens, and we see someone's eyes travel across the screen, as he imagines someone's progression. Then sharpening his look, he\",\"He lowers the lens, and we see someone's eyes travel across the screen, as he imagines someone's progression.\",\"Then sharpening his look, he\",gold,\"picks up the long - focus lens, and easing himself back cautiously, begins watching someone.\",remembers giving the sword to someone.,smooths his outline across the boys' porch.,takes a last breath and hits the neon switch.,0\n11901,lsmdc0021_Rear_Window-58644,10495,\"Someone lowers the long - focus lens, and turns his head to the right as he hears the first notes of the songwriter's melody which we have heard him trying to complete. He\",\"Someone lowers the long - focus lens, and turns his head to the right as he hears the first notes of the songwriter's melody which we have heard him trying to complete.\",He,gold,\"begins to spring back to the gallery on the side of the mountain echoing in, more relaxed.\",\"is in black tie, and from the looks of the apartment he is preparing for guests.\",\"goes to tiptoe toward the public telephone, then holds on to each other, frowning it at him as he lands.\",whispers to someone again.,1\n11902,lsmdc0021_Rear_Window-58644,10480,The sun has just set. We,The sun has just set.,We,gold,\"is gathering on the winter, so if the courtyard of the waterfront is being shown.\",\"coming into flies, nearly nine from us.\",\"are inside, driving around the wrecked daytime.\",follow the basket down to the yard which brings someone's apartment into view.,3\n11903,lsmdc0021_Rear_Window-58644,10485,\"Satisfied, she takes off the glasses, and examines her face as a whole, through squinting eyes. Her hair - do makes her\",\"Satisfied, she takes off the glasses, and examines her face as a whole, through squinting eyes.\",Her hair - do makes her,gold,seem middle - aged.,\"braid down and over her hair, looks at someone.\",turn down even more than she just can.,sticky turn to move her dark hair to a french braid and braid.,0\n11904,lsmdc0021_Rear_Window-58644,10489,\"Putting the glass down, she squints to see if she has disturbed the lipstick. Unable to see clearly, she\",\"Putting the glass down, she squints to see if she has disturbed the lipstick.\",\"Unable to see clearly, she\",gold,\"smiles, then carves and examines the page.\",is directly - - in her twenties.,moves to the kitchen and takes a sip of tea.,\"puts on the glasses again, looks, and touches up her lips slightly.\",3\n11905,lsmdc0021_Rear_Window-58644,10486,Her hair - do makes her seem middle - aged. She,Her hair - do makes her seem middle - aged.,She,gold,\"goes to the door, amazed at this topic.\",\"has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing.\",turns her body from the harpsichord and clutches her thighs.,looks for some goods then reaches into a bag and bends over to pick it up.,1\n11906,lsmdc0021_Rear_Window-58644,10494,\"Then she leaves the apartment, with a show of determination. She\",\"Then she leaves the apartment, with a show of determination.\",She,gold,pulls out a baking sheet of paper.,turns out the lights behind her.,lies on a towel on his desk where her legs are bent.,\"leans backward, peering through the helicopter's open window.\",1\n11907,lsmdc0021_Rear_Window-58644,10493,\"She goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off. Then she\",\"She goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off.\",Then she,gold,starts to drink the drink.,\"closes it, creating the menacing bottle for set.\",widens the eyes of a glass scraping into the door.,\"leaves the apartment, with a show of determination.\",3\n11908,lsmdc0021_Rear_Window-58644,10520,\"He picks up the phone and dials a number, still keeping his eyes on someone. The phone\",\"He picks up the phone and dials a number, still keeping his eyes on someone.\",The phone,gold,rests after the receiver.,starts to fall again.,\"buzzes on filter, then is picked up and answered by a woman.\",is now falling from its wake.,2\n11909,lsmdc0021_Rear_Window-58644,10483,\"He turns, and we see him raise the long - focus camera to his eye. The long - focus lens\",\"He turns, and we see him raise the long - focus camera to his eye.\",The long - focus lens,gold,brings someone into an enlarged picture which reveals details we have not previously noticed.,chalk beside us and leaves his gaze shadowy pierce its small opening in his right eye and hand.,is held up to his ear as the crowd begins to play.,\"comes onto the page, seems to draw on his skin, still close to cedar.\",0\n11910,lsmdc0021_Rear_Window-58644,10490,\"Unable to see clearly, she puts on the glasses again, looks, and touches up her lips slightly. She\",\"Unable to see clearly, she puts on the glasses again, looks, and touches up her lips slightly.\",She,gold,keeps talking as the gorilla scowls at her.,\"breaks the spoon in the pitcher and picks the lemon to her mouth, then presents it to him.\",pushes the armoire forward and puts it on the rod.,\"puts her glasses in a handbag, then stands to put out the lights.\",3\n11911,lsmdc0021_Rear_Window-58644,10481,\"She seems to be putting on the final touches of her make - up, prior to going out. She\",\"She seems to be putting on the final touches of her make - up, prior to going out.\",She,gold,\"is wearing a kelly green suit, and is seated at her dressing table.\",is trying to make some escape but conclude is trapped in the pools of a dome.,\"walks to a rack, then goes down it and uses her hands to wipe down each section of the aisle.\",is just closing with quick braiding the chain.,0\n11912,lsmdc0021_Rear_Window-58644,10503,He quickly raises his long - focus camera to his eye. We,He quickly raises his long - focus camera to his eye.,We,gold,are now given a waist - high shot as the focus is adjustment by someone.,turns slowly towards her and puts a hand on his lips.,pass the other side.,\"relax to be closer, her phone cracks.\",0\n11913,lsmdc0021_Rear_Window-58644,10502,She nervously looks at a couple of men passers by. He quickly,She nervously looks at a couple of men passers by.,He quickly,gold,arcs dark clothing for his dining area.,\"bows his head, looking down to the night story window.\",puts another notebook in podiums.,raises his long - focus camera to his eye.,3\n11914,lsmdc0021_Rear_Window-58644,10487,\"She has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing. She\",\"She has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing.\",She,gold,\"opens and corpulent she comes out, rubs her head on her hand as she enters, and picks up a red cellphone.\",is running up through others.,\"is gorgeous and fashionable, the beauty which remain is rubber on her well - muscled hair.\",\"reaches for a tall glass of liquor next to her, and takes a long drink.\",3\n11915,lsmdc0021_Rear_Window-58644,10513,\"As he hesitates, we are able to see the cardboard box he is carrying has the name of a laundry on it. He\",\"As he hesitates, we are able to see the cardboard box he is carrying has the name of a laundry on it.\",He,gold,\"glances back, as if to make it into his pocket.\",\"looks at him, then: slowly.\",enters the apartment turns on the living room lights.,is talking to the wall fast.,2\n11916,lsmdc0021_Rear_Window-58644,10517,\"Then he goes to the dresser, and instead of putting the laundry away, he proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc. He\",\"Then he goes to the dresser, and instead of putting the laundry away, he proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc.\",He,gold,piles these on the beds.,\"heaves a hole, as he opens the envelope.\",goes out into a vast room of water.,reveals a old result of a pal with bright sunlight.,0\n11917,lsmdc0021_Rear_Window-58644,10515,A number of suits and top coats are lying on an orderly pile on the bed. He,A number of suits and top coats are lying on an orderly pile on the bed.,He,gold,props up his pistol and runs and polish them.,dances along on the radio.,picks up the sorting hat and carries it to a bag.,takes the laundry out of the box and puts in on the bed next to the suits.,3\n11918,lsmdc0021_Rear_Window-58644,10504,We are now given a waist - high shot as the focus is adjustment by someone. The figure,We are now given a waist - high shot as the focus is adjustment by someone.,The figure,gold,wears a red polo outfit.,of an agent in a silver train jump.,is that of someone.,is david close to someone.,2\n11919,lsmdc0021_Rear_Window-58644,10492,\"She walks into the living room, finishing the drink. She\",\"She walks into the living room, finishing the drink.\",She,gold,studies the envelope in her hand.,takes the shrimp out of the cup and puts it on the table.,\"goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off.\",tosses her popcorn on the floor.,2\n11920,lsmdc0021_Rear_Window-58644,10514,\"He proceeds to the bedroom, and the lights go on there. A number of suits and top coats\",\"He proceeds to the bedroom, and the lights go on there.\",A number of suits and top coats,gold,run into a building in a dancing room.,slide out of the mall.,are lying on an orderly pile on the bed.,are parked near him.,2\n11921,lsmdc0021_Rear_Window-58644,10488,\"She reaches for a tall glass of liquor next to her, and takes a long drink. Putting the glass down, she\",\"She reaches for a tall glass of liquor next to her, and takes a long drink.\",\"Putting the glass down, she\",gold,takes the drink and drinks a glass of milk.,steps out from the window.,squints to see if she has disturbed the lipstick.,taps one window and sits down on the edge of the counter.,2\n11922,lsmdc0021_Rear_Window-58644,10482,\"Someone looks down, he smiles to himself. He turns, and we\",\"Someone looks down, he smiles to himself.\",\"He turns, and we\",gold,gaze up over the rippling surface of his thin dark ceiling.,see him raise the long - focus camera to his eye.,can see it a second later.,see that he's here.,1\n11923,lsmdc0021_Rear_Window-58644,10516,\"He takes the laundry out of the box and puts in on the bed next to the suits. Then he goes to the dresser, and instead of putting the laundry away, he\",He takes the laundry out of the box and puts in on the bed next to the suits.,\"Then he goes to the dresser, and instead of putting the laundry away, he\",gold,reaches through on the approach to get it tangled while the first scrubber is stuck.,\"proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc.\",stops several few inches from the edge and carries a large amount of clean of his shoes and shoes.,sees a greenhouse cap sewing a child's coat on a couch.,1\n11924,lsmdc0021_Rear_Window-58644,10507,\"It is someone, carrying a light - weight cardboard box under his arm. The camera\",\"It is someone, carrying a light - weight cardboard box under his arm.\",The camera,gold,pans him over to the right until he is lost behind the building.,pulls towards a sandy walkway lit by fleeting lights of a candle.,is wearing someone's uniform.,rises as he goes from a church where the kids have walked passed him.,0\n11925,lsmdc0021_Rear_Window-58644,10506,She is suddenly blotted out by a figure of a man who enters the picture from the left side. It,She is suddenly blotted out by a figure of a man who enters the picture from the left side.,It,gold,has to cry for s. to scream or scream.,peers around into the wall.,is approaching on the screen.,\"is someone, carrying a light - weight cardboard box under his arm.\",3\n11926,lsmdc0021_Rear_Window-58644,10511,\"Then sharpening his look, he picks up the long - focus lens, and easing himself back cautiously, begins watching someone. Someone\",\"Then sharpening his look, he picks up the long - focus lens, and easing himself back cautiously, begins watching someone.\",Someone,gold,has her eye drawn too.,\"is unable, weeping, and sobs.\",\"nods a bit, then smiles, slightly bemused at his remark.\",\"comes up the corridor, and stands unlocking his door.\",3\n11927,lsmdc0021_Rear_Window-58644,10508,The camera pans him over to the right until he is lost behind the building. He,The camera pans him over to the right until he is lost behind the building.,He,gold,reappears in his beach and he appears on the screen as the man.,\"is much nearer the lens, because he is on this side of the street.\",\"frowns, followed by a man sitting on a spinning spot.\",are then seen jumping across the snow and ends up falling quickly falling and running in the snow.,1\n11928,lsmdc0021_Rear_Window-58644,10496,\"An attractive girl is setting out trays of canap s, glasses, ice and liquor. She\",\"An attractive girl is setting out trays of canap s, glasses, ice and liquor.\",She,gold,\"breaks out into the container, holding around, about to put the contact into her ear.\",begins in preparation to spray the cup and contents a kid out of the bowl.,pauses as she crosses the room carrying a tray of food.,mixer is eaten to second fat lemonade.,2\n11929,lsmdc0021_Rear_Window-58644,10501,\"By her gestures, she is obviously a professional choreographer. She\",\"By her gestures, she is obviously a professional choreographer.\",She,gold,\"speeds at the bottom, looks for the women in the of sweaters, which she explains a technique of how worse both wear.\",walks away on the beach which is decorated with flowers.,\"seems to be trying to figure out what to do, or where to go.\",loads the clerk with a black bar.,2\n11930,lsmdc0021_Rear_Window-58644,10505,\"The figure is that of someone. Getting no reaction, she\",The figure is that of someone.,\"Getting no reaction, she\",gold,glances at his ex - mixed colleague.,looks for a little bit of way.,notices the group about someone ride a reflection in her head.,\"crosses the street, and seats herself at an empty table in front of the cafe.\",3\n11931,lsmdc0021_Rear_Window-58644,10484,\"The long - focus lens brings someone into an enlarged picture which reveals details we have not previously noticed. Satisfied, she\",The long - focus lens brings someone into an enlarged picture which reveals details we have not previously noticed.,\"Satisfied, she\",gold,steps away stoically and brushes past her.,\"indicates her breasts, then runs her thumb over her coldly stricken teacher's lips.\",\"takes off the glasses, and examines her face as a whole, through squinting eyes.\",\"glances at someone's designer handbag, walks up and takes an apple from the shelf.\",2\n11932,lsmdc0021_Rear_Window-58644,10509,\"He is, therefore, slightly out of focus. He lowers the lens, and we\",\"He is, therefore, slightly out of focus.\",\"He lowers the lens, and we\",gold,hear that down the glass door.,hear a close shot of an alien.,\"see someone's left and far left eye, right about him.\",\"see someone's eyes travel across the screen, as he imagines someone's progression.\",3\n11933,lsmdc0021_Rear_Window-58644,10499,\"Her expression shows that it pleases her, and moves her romantically. Someone's head\",\"Her expression shows that it pleases her, and moves her romantically.\",Someone's head,gold,mopes to her mouth.,turns in this new direction.,becomes embarrassed when she runs a loop over her head and flops on her side.,sits four stories above the easel.,1\n11934,lsmdc0021_Rear_Window-58644,10497,She pauses as she crosses the room carrying a tray of food. She,She pauses as she crosses the room carrying a tray of food.,She,gold,\"look around the room, then cuts the rack of little kids.\",listens a moment to the songwriter's melody.,runs to a set of stairs and fishes some china sack from his pocket.,chugs a beer and throws down his jacket.,1\n11935,lsmdc0021_Rear_Window-58644,10478,The camera is concentrating on the long - focus lens camera which fills the screen. Someone's hand,The camera is concentrating on the long - focus lens camera which fills the screen.,Someone's hand,gold,has a bag over his left arm.,is shown from the girl's face.,\"comes in, picks it up.\",appears at the end of the hill.,2\n11936,lsmdc0021_Rear_Window-58644,10512,\"Someone comes up the corridor, and stands unlocking his door. As he hesitates, we\",\"Someone comes up the corridor, and stands unlocking his door.\",\"As he hesitates, we\",gold,glimpse the living hinge across wall and strewn around them.,\"can see the light switch, the roach mutant fluttering in the air overhead.\",are able to see the cardboard box he is carrying has the name of a laundry on it.,see the couple opening the doors and the door close behind him.,2\n11937,lsmdc0021_Rear_Window-58644,10519,Someone lowers the camera quickly. He,Someone lowers the camera quickly.,He,gold,\"picks up the phone and dials a number, still keeping his eyes on someone.\",sends another car along a walkway into the darkness.,\"tracks the forward steps leading aim, blocking and climbing with energy.\",\"looks back at the detonator room, then the door opens.\",0\n11938,lsmdc1014_2012-79368,15074,Someone glances up and sees someone watching them. Someone,Someone glances up and sees someone watching them.,Someone,gold,crawls over the other side.,stares down at the monitor.,stares ahead and speaks without looking at someone.,watches from above as he returns to his sleep.,2\n11939,lsmdc1014_2012-79368,15069,They are deep in prayer as the tidal wave comes closer. Someone and his wife,They are deep in prayer as the tidal wave comes closer.,Someone and his wife,gold,look up and gaze at someone's castle.,are competing on horses by a pier.,stare blankly at the stained glass ceiling.,hug their son between them as someone listens.,3\n11940,lsmdc1014_2012-79368,15072,\"In the back, someone is with is family, people. Someone lies asleep, his head\",\"In the back, someone is with is family, people.\",\"Someone lies asleep, his head\",gold,resting on someone's shoulder.,leaning against his house.,pinned with soot and ash.,bent over his rib cage.,0\n11941,lsmdc1014_2012-79368,15070,A revised countdown appears on their screens. Someone,A revised countdown appears on their screens.,Someone,gold,\", barely applauding with another man, someone kicks someone in the face as he rolls into a pool.\",sumo yellow sumo wrestlers stand in a v formation in the middle of a arena.,and a man in a instructions outfit are mixing ingredients into a bowl and adding chips.,drives the truck with his grandparents in the cab with him.,3\n11942,lsmdc1014_2012-79368,15073,\"Someone lies asleep, his head resting on someone's shoulder. Someone\",\"Someone lies asleep, his head resting on someone's shoulder.\",Someone,gold,looks from someone to someone.,glances up and sees someone watching them.,looks up from the letter.,gives her a sweet passionate kiss then kisses her neck.,1\n11943,anetv_kkXSGwesZ0U,8078,Two people have their legs tied together and then receive instructions. They,Two people have their legs tied together and then receive instructions.,They,gold,continue fighting in different gym style men are seen in the bleachers.,are shown kissing on the side and sitting at a stop.,walk out to a ledge and then go bungee jumping over the edge.,come out to sing on the middle of the canyon.,2\n11944,anetv_cdP8_KujTCE,12283,The man in the suit come through the gate. A man in red,The man in the suit come through the gate.,A man in red,gold,runs down some stairs.,walks past the camera.,jumps over his horse.,rides while the man makes his way.,1\n11945,anetv_cdP8_KujTCE,12281,We then see people in a room and outdoors at a fancy party. A woman,We then see people in a room and outdoors at a fancy party.,A woman,gold,walks at the camera.,inspects a couple of people.,walks through the door.,talks and hugs the lady.,2\n11946,anetv_cdP8_KujTCE,12280,We see a colorful and playful title screen. We then,We see a colorful and playful title screen.,We then,gold,see people in a room and outdoors at a fancy party.,see the ending title screen.,see the ending screen and advertisement.,see people playing volleyball in the water.,0\n11947,anetv_cdP8_KujTCE,12284,A man in red walks past the camera. The lady in white,A man in red walks past the camera.,The lady in white,gold,sees the camera and hides.,walks past the camera.,throws his hands in the air.,turns with a row of white arrows.,0\n11948,lsmdc3053_PARENTAL_GUIDANCE-25831,6729,Someone's eyes shift to someone and someone. He,Someone's eyes shift to someone and someone.,He,gold,rises and holds her hand over his lap.,slings someone over his shoulder and draws him close.,looks around the gym bathroom.,looks at his daughter who stares back with a disappointed gaze.,3\n11949,anetv_pwoy7UXdnAE,2897,The dog stands to catch the Frisbee the leans on the man. The dog,The dog stands to catch the Frisbee the leans on the man.,The dog,gold,\"comes back, merry and get a good straw.\",jumps into the man's arms.,takes off to the right car as the dog goes.,picks the dog up as well.,1\n11950,anetv_pwoy7UXdnAE,2896,The man throws Frisbees for the dog to catch. The dog,The man throws Frisbees for the dog to catch.,The dog,gold,cheered while people ride up near the tree.,jumps onto the street.,\"falls right with the detergent, which lies in the water.\",stands to catch the frisbee the leans on the man.,3\n11951,anetv_pwoy7UXdnAE,2895,A man and a dog walk in a training room. The man,A man and a dog walk in a training room.,The man,gold,in the cage licks the top of a horse.,throws frisbees for the dog to catch.,leaves the other then outdoors with soil.,uses the shaver as he touches the wall before lifting it out of one.,1\n11952,anetv_pwoy7UXdnAE,2898,The dog jumps into the man's arms. We,The dog jumps into the man's arms.,We,gold,see people spinning around and america seeing the money in slow motion.,\", he uses the ax to chop the wood.\",see the ending title screen.,see the dog being played by light and frisbees.,2\n11953,anetv_mAfp5ABlKyM,1851,The men hit the ball back and forth. The winner,The men hit the ball back and forth.,The winner,gold,kicks the ball into the goal.,raises his hands as the crowd cheers.,laughs as the crowd cheers.,kicks the ball out of the water.,1\n11954,anetv_mAfp5ABlKyM,1850,Two men are playing table tennis while two judges sit at either end. The men,Two men are playing table tennis while two judges sit at either end.,The men,gold,shake hands and turn around to look at the team.,shake hands as the coach plays.,hit the ball back and forth.,shake hands and look at each other.,2\n11955,anetv_mAfp5ABlKyM,1852,The winner raises his hands as the crowd cheers. The scene,The winner raises his hands as the crowd cheers.,The scene,gold,shows extreme stills of a dog and the man shaking the woman's leg.,shows a couple of scenes performing incredible stunts in slow moves.,is replayed of his successful hit.,continues with a group of men wandering curling and watching all.,2\n11956,lsmdc3059_SALT-28832,11665,She woefully meets his gaze. Someone,She woefully meets his gaze.,Someone,gold,looks sad and contented.,gives a loving smile.,wraps her arms around him and they share a tender kiss.,takes a deep breath and holds her gaze.,1\n11957,anetv_O7SljQqahy8,17522,The person then uses the towel to rub the surface of the sink. The person,The person then uses the towel to rub the surface of the sink.,The person,gold,washes clothes with the towel while cleaning the floor.,pours a can of clean liquid into the sink.,drops the towel and picks it up.,begins mopping the floor.,2\n11958,anetv_O7SljQqahy8,17521,A person pours vinegar in a sink on a towel. The person then,A person pours vinegar in a sink on a towel.,The person then,gold,uses a sponge to clean surface and place it together.,rinse a sponge in a sink before wiping it with sponge.,uses the towel to rub the surface of the sink.,rinses the ladies face with a sponge.,2\n11959,lsmdc0021_Rear_Window-58051,11599,The woman sits up as the man enters. She,The woman sits up as the man enters.,She,gold,dismounts and turns to the woman.,takes a wet cloth off her forehead.,\"opens the front door, studying it.\",pats a lady on the belly.,1\n11960,lsmdc0021_Rear_Window-58051,11614,\"In one hand the man carries a small garden hoe and rake, and in the other a pair of trimming shears. He\",\"In one hand the man carries a small garden hoe and rake, and in the other a pair of trimming shears.\",He,gold,\"twists its large round, pauses the pole at the object and bows.\",tries the dust and the dolls continue to pound against it and echo through the grass.,\"goes to a small patch of flowers, perhaps three feet square.\",is skiing on a winter sidewalk and chatting up as five other are in the garden.,2\n11961,lsmdc0021_Rear_Window-58051,11631,\"She takes off her hat coat, and hangs them on a chair. It\",\"She takes off her hat coat, and hangs them on a chair.\",It,gold,solemnly watches the lady from behind.,\"eyes a mirror, still searching her face.\",\"is worn, and looks as if it belongs more to a fighter than a nurse.\",waddles up a hill.,2\n11962,lsmdc0021_Rear_Window-58051,11630,She puts her bag down on a table. She,She puts her bag down on a table.,She,gold,pours a container into a mug.,\"takes off her hat coat, and hangs them on a chair.\",\"walks into the door, to a table with her hand on it.\",punches him in the stomach and then slams it into the ground.,1\n11963,lsmdc0021_Rear_Window-58051,11603,He hangs up and resumes his attention on the apartment of the salesman. The salesman,He hangs up and resumes his attention on the apartment of the salesman.,The salesman,gold,can be seen in his kitchen numerous small glass cups at his feet.,is now covering an suntan blanket and a magazine cover.,\"looks toward the bedroom door, hesitates, then reluctantly walks toward it.\",has already been put on his back and looks glumly at his hostile though brother.,2\n11964,lsmdc0021_Rear_Window-58051,11595,\"He sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand. He\",\"He sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand.\",He,gold,walks towards the counter and a man walks over to the closed door.,makes his way down past someone's things and takes a corner.,\"stands by the stairs, ready to jump, then turns and puts his hat on.\",takes off his coat and tie.,3\n11965,lsmdc0021_Rear_Window-58051,11605,\"He shouts back at her, turns and goes out of the room. His attitude\",\"He shouts back at her, turns and goes out of the room.\",His attitude,gold,makes her preoccupied is a little sad.,\"fills our view as he does, toward the pool table.\",\"changes to weary patience, then irritation, then anger.\",is much about someone in his uniform.,2\n11966,lsmdc0021_Rear_Window-58051,11610,\"Carefully, and with considerable ingenuity, he works it under the cast. He scratches, and a look of sublime relief\",\"Carefully, and with considerable ingenuity, he works it under the cast.\",\"He scratches, and a look of sublime relief\",gold,comes on the screen.,comes over his face.,approaches the bald guy's nose.,appears on his former neighbor's features.,1\n11967,lsmdc0021_Rear_Window-58051,11596,\"He takes off his coat and tie. With his eyes still focused on the distant apartments, someone\",He takes off his coat and tie.,\"With his eyes still focused on the distant apartments, someone\",gold,continues talking with someone.,comes fast - clicking on his heels.,picks up his wand from the fire.,turns his head to look at it.,0\n11968,lsmdc0021_Rear_Window-58051,11611,\"Satisfied, he takes the scratcher out. As he replaces it on the windowsill, his attention\",\"Satisfied, he takes the scratcher out.\",\"As he replaces it on the windowsill, his attention\",gold,crumbles to the view beneath someone's shrubs.,is drawn back to the scene outside the window.,switches to a dangling glimpse of a naked body lying over the bed.,drifts to his crossover.,1\n11969,lsmdc0021_Rear_Window-58051,11615,\"They are beautiful, multi - colored three foot high zinnias. Someone's attention\",\"They are beautiful, multi - colored three foot high zinnias.\",Someone's attention,gold,is calm and if the pebble rises as the python releases itself.,observes about the school museum.,\"has been taken by her view, oblivious from the noise.\",is turned to something else of interest.,3\n11970,lsmdc0021_Rear_Window-58051,11621,\"His anger seems to have left him, replaced by the kind of peace that flowers bring many people. He\",\"His anger seems to have left him, replaced by the kind of peace that flowers bring many people.\",He,gold,lifts up his helmet.,\"continues to read through the envelopes, not seeing someone driving.\",\"notices her, but does n't speak.\",is obviously amazed at the things he has n't.,2\n11971,lsmdc0021_Rear_Window-58051,11618,\"She settles into a folding, canvas deck chair. She\",\"She settles into a folding, canvas deck chair.\",She,gold,\"gets up, walks to the fence, and looks over.\",closes her eyes as she rests neatly beside the woman's breasts.,\"runs downward then face the promontory, taking a large row of light patterns.\",chats to a alien who holds the pill in her mouth and looks at her hands.,0\n11972,lsmdc0021_Rear_Window-58051,11612,\"As he replaces it on the windowsill, his attention is drawn back to the scene outside the window. We\",\"As he replaces it on the windowsill, his attention is drawn back to the scene outside the window.\",We,gold,see the man who left his apartment in anger come out of the doorway into the backyard.,don't see his wife in the passenger seat.,play to the door and open the door.,\"see the rafts, beat down the buildings.\",0\n11973,lsmdc0021_Rear_Window-58051,11598,The man enters the bedroom. The woman,The man enters the bedroom.,The woman,gold,sits up as the man enters.,walks in the bathroom and opens the door.,raises an eyebrow at him.,stops and looks at the door.,0\n11974,lsmdc0021_Rear_Window-58051,11591,At this moment we hear the sounds of a piano playing. Someone,At this moment we hear the sounds of a piano playing.,Someone,gold,stands on the platform with his feet between his knees.,is louder than the sound of singing.,disbelievingly shakes her head and rocks the girl around the island.,glances out across to the other apartments as he sees.,3\n11975,lsmdc0021_Rear_Window-58051,11601,\"Before the man even reaches her, she begins talking, somewhat vigorously. We\",\"Before the man even reaches her, she begins talking, somewhat vigorously.\",We,gold,has her hands behind her head sensing what she has addressed.,can see a woman lying on the far bed.,moves and then begins to move her fingers around gently gently stroke the hula till she missed it.,catches himself running so that he can reach the bag.,1\n11976,lsmdc0021_Rear_Window-58051,11609,\"He reaches for a long, Chinese back scratcher lying on the windowsill. Carefully, and with considerable ingenuity, he\",\"He reaches for a long, Chinese back scratcher lying on the windowsill.\",\"Carefully, and with considerable ingenuity, he\",gold,drags someone to the parlor door.,works it under the cast.,sits at the master 'desk.,looks down at her scalp.,1\n11977,lsmdc0021_Rear_Window-58051,11600,\"She takes a wet cloth off her forehead. Before the man even reaches her, she\",She takes a wet cloth off her forehead.,\"Before the man even reaches her, she\",gold,nestles out of her panties and fetches herself in.,\"begins talking, somewhat vigorously.\",holds up the cut but huge dragon sword.,goes mighty grabbed and swings back.,1\n11978,lsmdc0021_Rear_Window-58051,11597,\"With his eyes still focused on the distant apartments, someone continues talking with someone. His shirt\",\"With his eyes still focused on the distant apartments, someone continues talking with someone.\",His shirt,gold,is stained with sweat underneath.,half like someone does n't say what to do.,is drawing on the headboard.,swats as someone takes off his pants.,0\n11979,lsmdc0021_Rear_Window-58051,11617,\"She carries a copy of the Herald Tribune, and still wears her hearing aid. She\",\"She carries a copy of the Herald Tribune, and still wears her hearing aid.\",She,gold,\"settles into a folding, canvas deck chair.\",is the girl of a different girl with a large fat one that has brought a fuss.,\"gets to his feet, pushes his way along the corridor into a corridor that keeps people on her side.\",\", someone is in a marathon.\",0\n11980,lsmdc0021_Rear_Window-58051,11590,\"It is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song. At this moment we\",\"It is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song.\",At this moment we,gold,hear him buzz throughout his school.,hear the tone of the husky's voice calling.,\"see someone and someone enter the house, alone.\",hear the sounds of a piano playing.,3\n11981,lsmdc0021_Rear_Window-58051,11593,He carries a large aluminum sample case common to salesmen. The brick,He carries a large aluminum sample case common to salesmen.,The brick,gold,\"returns to the third room, then lights a laptop.\",is weather - worn and faded.,break pins to the floor of a hallway; someone's eyes widen.,has a pergola decorated with flawless feathers.,1\n11982,lsmdc0021_Rear_Window-58051,11629,She carries a small black bag. She,She carries a small black bag.,She,gold,picks up a man in chair.,puts her bag down on a table.,waves to the window inside picks up the wallet - dish signed.,\"leans forward, watching him with a breezy smile.\",1\n11983,lsmdc0021_Rear_Window-58051,11637,As she leaves him holding the thermometer the camera pulls back as she crosses to a divan. She,As she leaves him holding the thermometer the camera pulls back as she crosses to a divan.,She,gold,lands at the edge of the bed.,\"opens it with her hands, but smiles and stands up staring up at him.\",tosses it over her shoulder.,\"takes a sheet from underneath, and covers the divan with it.\",3\n11984,lsmdc0021_Rear_Window-58051,11623,She begins gesturing to him how to take care of his flowers. He,She begins gesturing to him how to take care of his flowers.,He,gold,plays the details in the shed.,\"comes back, not genuinely upset by now.\",\"listens for a moment, then looks directly at her.\",eyes that the black mark her left eye and blindly succeeds that she has really hurt him.,2\n11985,lsmdc0021_Rear_Window-58051,11628,\"As she comes down the stairs of the landing, holding on the wrought iron railing with one hand. She\",\"As she comes down the stairs of the landing, holding on the wrought iron railing with one hand.\",She,gold,has turned around some machinery and continues to show her strength to balance on it.,\"frantically packs on the curtain leading, and runs across the room.\",rises from a rocker on the floor and drops onto the floor.,carries a small black bag.,3\n11986,lsmdc0021_Rear_Window-58051,11625,The strong movements of his mouth show us that he objects vigorously to the annoyance of her comments. She,The strong movements of his mouth show us that he objects vigorously to the annoyance of her comments.,She,gold,\"raises a skirt, twirling around to start him as he takes.\",walks up to someone and whispers something else.,\"moves away from the fence, started and a little shocked.\",leaps and races through the fallen figure on his own while he approaches behind.,2\n11987,lsmdc0021_Rear_Window-58051,11619,\"She gets up, walks to the fence, and looks over. He\",\"She gets up, walks to the fence, and looks over.\",He,gold,has her veil too.,\"kneels down, inspects them, touches them affectionately and with some pride.\",does n't seem to be mad about what to happen.,is covered with a newspaper.,1\n11988,lsmdc0021_Rear_Window-58051,11635,\"She takes the thermometer out of its case, shakes it down. She\",\"She takes the thermometer out of its case, shakes it down.\",She,gold,talks as she works.,runs back into her office.,\"puts it in a strainer, tastes it, and drinks some more.\",enters and answers the phone.,0\n11989,lsmdc0021_Rear_Window-58051,11607,For a moment he is hidden by the wall. Someone,For a moment he is hidden by the wall.,Someone,gold,appear over a dozen shots of him gasping in water.,seems to go for a trellis.,\"gently touches his arm, holding it up in his gloved hand.\",shifts his look more to the right.,3\n11990,lsmdc0021_Rear_Window-58051,11633,A look at his face shows he does n't think much of it. She,A look at his face shows he does n't think much of it.,She,gold,\"shifts her eyes, and takes a kitty in her eyes.\",writhes and the rhythm busts.,comes in a short black sweater with a white color.,swings the wheelchair around abruptly to face her.,3\n11991,lsmdc0021_Rear_Window-58051,11584,The camera is now focused on the window of the small building where we earlier saw the girl behind the oscillating fan. Loud ballet music,The camera is now focused on the window of the small building where we earlier saw the girl behind the oscillating fan.,Loud ballet music,gold,comes onto the screen for a moment as the laughing debris reveals.,is heard yet low on the floor.,is pouring from her open window.,is heard coming from behind a guy coming.,2\n11992,lsmdc0021_Rear_Window-58051,11581,Someone's eyes become set upon something else in the neighborhood he sees. Someone's attention,Someone's eyes become set upon something else in the neighborhood he sees.,Someone's attention,gold,is now drawn to another feature of his backyard entertainment.,drifts to a pair of green cabs but and opens it.,pans to the burnt - soaked street beyond.,lit up the flowers as they all follow.,0\n11993,lsmdc0021_Rear_Window-58051,11592,\"It irritates someone as he looks in the direction of the new music. On the second floor, a man\",It irritates someone as he looks in the direction of the new music.,\"On the second floor, a man\",gold,steps over the bars and out of view.,carries three coat on between battlefield shields.,has entered the living room from a hallway door.,gets out and passes to another man.,2\n11994,lsmdc0021_Rear_Window-58051,11620,\"He kneels down, inspects them, touches them affectionately and with some pride. His anger\",\"He kneels down, inspects them, touches them affectionately and with some pride.\",His anger,gold,is taking place in the end.,\"etched across someone's face, he returns a tender look.\",\"seems to have left him, replaced by the kind of peace that flowers bring many people.\",is growing intermittent as he freezes with their seats now as they share a bundle together someone.,2\n11995,lsmdc0021_Rear_Window-58051,11613,He is easy to identify through the color of his garish necktie. In one hand the man,He is easy to identify through the color of his garish necktie.,In one hand the man,gold,is dressed with stationed harnesses and begin arm wrestling.,\"carries a small garden hoe and rake, and in the other a pair of trimming shears.\",is listening to the number on the piano.,touches his knees as he puts his arm around the woman.,1\n11996,lsmdc0021_Rear_Window-58051,11636,She talks as she works. As she leaves him holding the thermometer the camera,She talks as she works.,As she leaves him holding the thermometer the camera,gold,pulls back as she crosses to a divan.,makes a swirl of honey to peel chips off her plate.,sees a welded tire.,stays calm with the soft glow on the travel.,0\n11997,lsmdc0021_Rear_Window-58051,11627,\"She is a husky, unhandsome, dark - haired woman who is dressed like a district nurse, with dark coat, dark felt hat, with a white uniform showing underneath the coat. As she\",\"She is a husky, unhandsome, dark - haired woman who is dressed like a district nurse, with dark coat, dark felt hat, with a white uniform showing underneath the coat.\",As she,gold,\"steps inside, our view spies some police birders emerge from the mansion out over the dead soldiers.\",\"comes down the stairs of the landing, holding on the wrought iron railing with one hand.\",\"steps inside, someone puts a cut down between a brown robe, then picks it into her apartment.\",arrives at the apartment.,1\n11998,lsmdc0021_Rear_Window-58051,11587,Someone's eyes drop from the ballet dancer's room to the one underneath. She,Someone's eyes drop from the ballet dancer's room to the one underneath.,She,gold,\", her eyes widen.\",\"continues low to her chat, apparently dragged to her feet.\",looks up in the direction of the music and in a calm routine fashion adjusts the volume of her hearing aid.,\"puts his hand on someone's shoulders and presses him on his chest, using his hands.\",2\n11999,lsmdc0021_Rear_Window-58051,11589,\"She is a faded, refined type. It\",\"She is a faded, refined type.\",It,gold,is lying on someone's lap as her parents are talking to someone in an actual environment.,\"is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song.\",\"is a slinky, plane with white toy reflects horses.\",reads the newspaper and the 13 bazaar actually.,1\n12000,lsmdc0021_Rear_Window-58051,11624,\"He listens for a moment, then looks directly at her. The strong movements of his mouth\",\"He listens for a moment, then looks directly at her.\",The strong movements of his mouth,gold,are coming out of frame.,pained them all deeply.,are alive that sound as someone watches his son press himself in the dirt.,show us that he objects vigorously to the annoyance of her comments.,3\n12001,lsmdc0021_Rear_Window-58051,11586,\"She picks up both bread and chicken leg and continues her interpretive dance, alternately munching the bread and butter and chicken leg. Someone's eyes\",\"She picks up both bread and chicken leg and continues her interpretive dance, alternately munching the bread and butter and chicken leg.\",Someone's eyes,gold,clap and she frowns.,relax throughout her quickly.,shift close to plants as his eyes widen with someone as he stares at scotty's sleeping body.,drop from the ballet dancer's room to the one underneath.,3\n12002,lsmdc0021_Rear_Window-58051,11583,\"Someone asks, eagerly and alertly. She\",\"Someone asks, eagerly and alertly.\",She,gold,\"steps toward it, and plucks from the note.\",wanders up by night time.,replies warmly and pours himself a beer.,\"gracefully moves across the room to the rhythm of the music and dance, toward the ice box.\",3\n12003,lsmdc0021_Rear_Window-58051,11594,\"Each apartment has three windows facing the back, one showing a hallway, one a living room, and the window on the right opening into a bedroom. He\",\"Each apartment has three windows facing the back, one showing a hallway, one a living room, and the window on the right opening into a bedroom.\",He,gold,\"sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand.\",\", they belong to someone.\",sunlight shine across the ashen announcers plate to show whole residential mansion.,head trapping someone.,0\n12004,lsmdc0021_Rear_Window-58051,11608,\"His leg, under the cast, begins itching. He\",\"His leg, under the cast, begins itching.\",He,gold,shifts on the windows and blows out a lamp.,returns out the railing.,throw adhesive parts of the rug onto the floor.,\"squirms, tries to move the leg a little.\",3\n12005,lsmdc0021_Rear_Window-58051,11632,\"Satisfied, she walks to someone. A look at his face\",\"Satisfied, she walks to someone.\",A look at his face,gold,\"is shown drawing his skull, tinted imperceptibly.\",gets out of his apartment and puts his t - shirt in the bed.,shows someone's hair being lowered with the jacket.,shows he does n't think much of it.,3\n12006,anetv_bd3Df5_QMNw,10096,A picture of a dog in shown in a tub and leads into hands holding tools and a dog wandering around a tub. The person,A picture of a dog in shown in a tub and leads into hands holding tools and a dog wandering around a tub.,The person,gold,then begins to brush a dog while the dog continues to rub the fur with dogs.,continues rubbing out on the dog as well as showing how to properly wash him.,uses a towel all around the area while the camera pans around to the sides.,puts toothpaste onto a brush and brushes the dog's teeth back and fourth.,3\n12007,anetv_bd3Df5_QMNw,10097,The person puts toothpaste onto a brush and brushes the dog's teeth back and fourth. Finally she puts gel in the dog's mouth and the dog,The person puts toothpaste onto a brush and brushes the dog's teeth back and fourth.,Finally she puts gel in the dog's mouth and the dog,gold,gets contact and condensation easily.,appears revealed in the eye.,is seen sitting on a bed waving to the camera.,is toothpaste in the liquid like a suit.,2\n12008,anetv_cRDXBF2RcYI,541,A person puts wax on their leg. They,A person puts wax on their leg.,They,gold,lay it up by gently putting plaster on their leg.,continue to the latino boy removes a t.,put paper on it and rip off the hair.,are using two sticks to paint onto a scanner.,2\n12009,anetv_cRDXBF2RcYI,540,A person is laying back on a bed. A person,A person is laying back on a bed.,A person,gold,puts the camera on top of the doctor.,irons a shoe at the sink.,puts sand onto a shoe.,puts wax on their leg.,3\n12010,anetv_zSCZphJS2vA,2772,An athlete is seen walking up to a platform and begins spinning himself around and throwing an object off into the distance. His throw is shown again in slow motion and another man,An athlete is seen walking up to a platform and begins spinning himself around and throwing an object off into the distance.,His throw is shown again in slow motion and another man,gold,is seen spinning around then throwing the object with his hands up afterwards.,is seen in slow motion.,spins out of frame and spins around several times.,\"catches a ball, then holds up with a javelin over his head and attempts to stand over the edge of the roof.\",0\n12011,anetv_1XtjXqqPvyQ,5644,A dog runs onto grass. a man,A dog runs onto grass.,a man,gold,throws a frisbee to the camera.,is also holding frisbee with the guy.,emerges to exchange the dog.,throws a frisbee towards the dog.,3\n12012,anetv_1XtjXqqPvyQ,5646,The man runs towards the dog. the man and dog,The man runs towards the dog.,the man and dog,gold,celebrates on the sidewalk.,grab a flower from the floor.,perform several tricks as a crowd watches.,are off behind the man.,2\n12013,anetv_1XtjXqqPvyQ,5645,The dog catches the frisbee. the man,The dog catches the frisbee.,the man,gold,does sit ups with the dog.,catches the dog again.,throws the frisbee for the dog.,runs towards the dog.,3\n12014,anetv_1XtjXqqPvyQ,5243,He tries to get the dog to catch one of the frisbees in his hands as the dog frantically tries to get one. The man,He tries to get the dog to catch one of the frisbees in his hands as the dog frantically tries to get one.,The man,gold,tries to sweep catch and catch the wad of dust from the dog to catch the frisbee.,\"continues to talk to the camera without talking, end with his mouth being caught.\",runs back and fourth to one another and talks to the camera while the dog is caught away.,stands with a frisbee in his hand as the dog runs away.,3\n12015,anetv_1XtjXqqPvyQ,5241,A dog runs across a field with a frisbee. A man,A dog runs across a field with a frisbee.,A man,gold,talks while the man stands side to side.,walks off with a camera while talking.,catches a frisbee and plays at the bagpipe.,\"follows suit, playing with the boy in front of a crowd.\",3\n12016,lsmdc0005_Chinatown-48397,2118,\"With the heel of his shoe, he kicks at the right rear taillight of the car. He\",\"With the heel of his shoe, he kicks at the right rear taillight of the car.\",He,gold,switches on a towel and puts a scarf around the sleeve.,levitates his other hand as the vampire smashes his head on someone beside the barrel.,\"bursts, righting them but can not.\",\"shatters the red lens, gets up.\",3\n12017,lsmdc0005_Chinatown-48397,2119,\"He carefully pulls the red lens off the taillight, exposing the white light beneath it. He\",\"He carefully pulls the red lens off the taillight, exposing the white light beneath it.\",He,gold,\"a moment his stands up, he finds possessed of what is dark.\",tosses the red lens into the shrubbery and hurries back toward the house.,\"finds him in the back and flops into his bed, bowing his head off.\",\"is seen in the strip, and wears a piece of metal at it.\",1\n12018,lsmdc1028_No_Reservations-82792,3364,\"The woman, someone, raises her eyebrows. She\",\"The woman, someone, raises her eyebrows.\",She,gold,\"regards him coolly, then puts out the teacup.\",makes her way through a glass of narrowed areas.,tilts her head back shut.,checks some orders attached to a shelf.,3\n12019,anetv_KAbo60mowhw,7859,The man holds out the Frisbee in his hand to the dog. A woman,The man holds out the Frisbee in his hand to the dog.,A woman,gold,picks up the dog after the dog runs down.,rides the dog with the dog.,vacuums the ground with dry leaves standing while a man and dogs are walking behind him and recording on the highway.,plays catch with the dog throwing a frisbee in a grassy park.,3\n12020,anetv_KAbo60mowhw,7858,A man plays catch with a dog in a dirt field while throwing a Frisbee. The man,A man plays catch with a dog in a dirt field while throwing a Frisbee.,The man,gold,holds out the frisbee in his hand to the dog.,runs between two frisbees from his mouth and walks round to a side playing.,\"kicks up frisbee on the ground, then his dog pick up the dog and ties it up to wrap it in the man.\",picks up the frisbee and smokes while talking to the camera.,0\n12021,anetv_V1IHwwpyFUE,12297,\"Then, the teen throws the ball to a child who throws back it and runs away. After, the teen\",\"Then, the teen throws the ball to a child who throws back it and runs away.\",\"After, the teen\",gold,throws again the ball to a girl who kicks back the ball and runs.,jumps and spins how to hold a frisbee in front of it.,falls on the beam and spins in a ball that fell as a biker is hit.,\"lifts the weight hanging back out, keeps it on waves and cheers.\",0\n12022,anetv_V1IHwwpyFUE,12296,\"Three children run on the street followed by the teen, then she stands on the street holding a ball. Then, the teen\",\"Three children run on the street followed by the teen, then she stands on the street holding a ball.\",\"Then, the teen\",gold,throws the ball to a child who throws back it and runs away.,performs long jumps while the guy claps.,takes pictures with the child.,pushes between the children.,0\n12023,anetv_V1IHwwpyFUE,12295,\"A teen throws a ball to a child, who throws back it to the teen and run away. Three children run on the street followed by the teen, then she\",\"A teen throws a ball to a child, who throws back it to the teen and run away.\",\"Three children run on the street followed by the teen, then she\",gold,stops through a really well rock store.,dips the 10 and put it down in the last position.,gets across the monkey bars.,stands on the street holding a ball.,3\n12024,anetv_V1IHwwpyFUE,3447,The girl kicks a ball when another boy runs in and out of frame as well as other children. The girl,The girl kicks a ball when another boy runs in and out of frame as well as other children.,The girl,gold,begins to play with one another while swinging.,continues performing while the pinata flings the girls around and then stands up.,flips the ball back and fourth to one another as well as his opponent in cheering.,continues running around with the ball as well as in and out of frame.,3\n12025,anetv_V1IHwwpyFUE,12298,\"After, the teen throws again the ball to a girl who kicks back the ball and runs. The teen follows the girl, then she\",\"After, the teen throws again the ball to a girl who kicks back the ball and runs.\",\"The teen follows the girl, then she\",gold,does it again in her victory.,retrieves a baseball ball and throws it in the air.,stands in the street.,walks back over the net she received.,2\n12026,lsmdc3043_KATY_PERRY_PART_OF_ME-20787,18448,\"Peering at the phone, someone holds her hand to her head. Elsewhere, a mass of people\",\"Peering at the phone, someone holds her hand to her head.\",\"Elsewhere, a mass of people\",gold,sees ships working on the floor.,\"cross a vast wintry field, surrounded by golden green.\",follow a couple of armored bears lying on the floor.,moves through a parking lot.,3\n12027,lsmdc3043_KATY_PERRY_PART_OF_ME-20787,18449,\"Elsewhere, a mass of people moves through a parking lot. Backstage, someone\",\"Elsewhere, a mass of people moves through a parking lot.\",\"Backstage, someone\",gold,takes a basket of spectacle.,strolls downstairs through a sign drawn on a coastal walkway.,exits a building with his cellphone hanging on hands.,lies curled on her side on a massage table.,3\n12028,lsmdc3043_KATY_PERRY_PART_OF_ME-20787,18447,\"Someone picks up her cellphone. Peering at the phone, someone\",Someone picks up her cellphone.,\"Peering at the phone, someone\",gold,watches it disappears revealing a red with gold stains cover it.,glances at the technical sergeant.,faces the boys near her laptop.,holds her hand to her head.,3\n12029,lsmdc3003_40_YEAR_OLD_VIRGIN-1116,1366,The beautician applies more wax. She,The beautician applies more wax.,She,gold,lays down another cloth.,kicks through the water.,lays over the glider.,takes the rubber helmet out of a shaped gear and clamps it safely on a rubber.,0\n12030,anetv_8twDb4CdhE0,14022,A close up of a woman is shown speaking to the camera holding an ice cream in front of her face. She,A close up of a woman is shown speaking to the camera holding an ice cream in front of her face.,She,gold,continues to wipe off a razor and ends by styling the tattoo.,begins cutting the cats claws while showing off her hair while still speaking to the camera.,takes multiple bites of the ice cream while the camera pans around her body and several other people surround her.,puts a knife into the basin and spreads it out.,2\n12031,lsmdc1027_Les_Miserables-6456,18231,Someone leans forward and drops into the abyss. Someone,Someone leans forward and drops into the abyss.,Someone,gold,moves on and takes a sheet off.,takes off his pad.,returns to his uniform and watches.,is washed away into the swirling foam.,3\n12032,lsmdc1027_Les_Miserables-6456,18232,\"Someone sits alone in a room, scarred by battle. His left arm\",\"Someone sits alone in a room, scarred by battle.\",His left arm,gold,is in a sling.,rests anxiously on its back.,stops a few inches from him.,rotates on his feet.,0\n12033,lsmdc1027_Les_Miserables-6456,18233,His left arm is in a sling. He,His left arm is in a sling.,He,gold,is laying on a table.,stares into space thoughtfully.,catapult as the salvage pod hangs over side of the wrought iron structure.,\"leaps towards it, trying to see if someone is injured.\",1\n12034,anetv_hu714U34avg,17692,\"The instructor then walks in and they all begin doing a routine together. In the beginning, they start out moving their arms but they eventually\",The instructor then walks in and they all begin doing a routine together.,\"In the beginning, they start out moving their arms but they eventually\",gold,increase the workout by adding in the stepper and walking around the room.,climb it back to the waist near a standing pit.,fall off the side.,come to squeeze their chains as they continue to move.,0\n12035,anetv_hu714U34avg,11330,The women start adding leg movements along with arm movements and they continue this routine going around their stepper and occasionally stepping onto the stepper. The women finish with a strong step onto the stepper then the dancing stops and they all,The women start adding leg movements along with arm movements and they continue this routine going around their stepper and occasionally stepping onto the stepper.,The women finish with a strong step onto the stepper then the dancing stops and they all,gold,listen to the labored breathing of his feet.,begin taking their set using their completed exercise.,begin themselves into the exercise routine.,walk away from their steppers.,3\n12036,anetv_hu714U34avg,17693,\"In the beginning, they start out moving their arms but they eventually increase the workout by adding in the stepper and walking around the room. Once the ladies have completed their workout, one\",\"In the beginning, they start out moving their arms but they eventually increase the workout by adding in the stepper and walking around the room.\",\"Once the ladies have completed their workout, one\",gold,\"touches her other hand, push the pants back on the body, and driving back.\",\"remains in the room, grabs her water and walks around in a circle to calm her heart rate.\",\"takes a long jump, and then do their ballet routine on a stack.\",\"has slouched her black foot, now and a little trouble vigorously.\",1\n12037,anetv_hu714U34avg,17691,\"A group of women are walking around in a workout room, one is making steps in place while talking to her friend and the other one is looking at herself in the mirror. The instructor then walks in and they all\",\"A group of women are walking around in a workout room, one is making steps in place while talking to her friend and the other one is looking at herself in the mirror.\",The instructor then walks in and they all,gold,cheer and cheer with one another.,rubs their hands together.,begin to perform with the cameras basically once more.,begin doing a routine together.,3\n12038,anetv_hu714U34avg,11329,A woman steps up to her stepper and starts doing arm movements and the other women start following her. The women start adding leg movements along with arm movements and they,A woman steps up to her stepper and starts doing arm movements and the other women start following her.,The women start adding leg movements along with arm movements and they,gold,go back to the other tattoo to unload on the injury with the leg.,put the up on the them as they continue to exercise.,continue this routine going around their stepper and occasionally stepping onto the stepper.,'re shown talking about mini fans about pools that all have machines as doors roll in the room.,2\n12039,anetv_hu714U34avg,11328,There are women in a mirrored exercise room with wooden floors and are getting ready to do exercises. A woman,There are women in a mirrored exercise room with wooden floors and are getting ready to do exercises.,A woman,gold,steps up to her stepper and starts doing arm movements and the other women start following her.,next to a walk and in a dress starts dancing ballet and holding a pose.,stands in the room in front of the bedroom.,and a man sit in the stands in a hallway talking.,0\n12040,anetv_0drl-yrfBAA,13927,A group of marching band drummers ready themselves starts performing while audience are encircling them. Another group of drummers,A group of marching band drummers ready themselves starts performing while audience are encircling them.,Another group of drummers,gold,\"join them, put down their hats and plays with them while the first group walks around while playing.\",plays in the background with spectators watching in the background as the group talks about the song.,play with their skis along the side of the stage.,are standing on stage and holding beers by playing drums.,0\n12041,anetv_0drl-yrfBAA,13928,\"Another group of drummers join them, put down their hats and plays with them while the first group walks around while playing. A third set of drummers arrives followed by the cymbals players and they all\",\"Another group of drummers join them, put down their hats and plays with them while the first group walks around while playing.\",A third set of drummers arrives followed by the cymbals players and they all,gold,played their instruments together.,are done.,play across a sandy court to run.,look up at the drummer.,0\n12042,anetv_0drl-yrfBAA,2094,Another group of musicians holding timbals an cymbals enter the scenario to play with the other musicians. A person,Another group of musicians holding timbals an cymbals enter the scenario to play with the other musicians.,A person,gold,kisses the boy in different ways of peolpe blowing karate related moves.,watch the band and bongo man makes the menacing point.,takes picture to the marching band.,rings the tip of them and up over the shown scene.,2\n12043,anetv_0drl-yrfBAA,2093,\"Five youth play drums in a field full of people. Then, a group of boys holding bass drums\",Five youth play drums in a field full of people.,\"Then, a group of boys holding bass drums\",gold,begin playing in a gymnasium.,meet each other on a city street.,\"stand up to someone as they walk across the finish line on a turbulent, sunny street.\",put their hats on the ground then start to play.,3\n12044,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2209,10816,\"Later, the smiling bride and groom clink their glasses and sip champagne. Someone\",\"Later, the smiling bride and groom clink their glasses and sip champagne.\",Someone,gold,shakes someone's hand.,\"comes, age two - thirty.\",pounds on the window; her head lulls back and forth.,tries to reach the door between her fingers.,0\n12045,anetv_Jth2Zlpr1gQ,3622,The woman in red top is standing. The woman,The woman in red top is standing.,The woman,gold,is bowling and comes out to shoot at them.,is helping wile person bits earth in the boat or pushed the fitness board.,reaches up and wrings her hands before swinging her sat postcard time.,stretches her arms one side first then the next one.,3\n12046,anetv_Jth2Zlpr1gQ,3623,The woman stretches her arms one side first then the next one. The woman,The woman stretches her arms one side first then the next one.,The woman,gold,dismounts her leg and stands on the bar.,finishes shaving and dries his face with his hands.,\"dismounts and do tricks and flip overboard, while still swinging.\",\"put her arms in front of her, then stretch out and turned around.\",3\n12047,lsmdc1005_Signs-4813,9732,Someone gently releases the handle. He,Someone gently releases the handle.,He,gold,whips off his shirt.,lifts someone off his feet.,reaches for a plate of food.,turns and treads calmly along the wooden veranda surrounding the house.,3\n12048,lsmdc1005_Signs-4813,9735,Someone views the scene with restrained alarm. He,Someone views the scene with restrained alarm.,He,gold,\"turns and spots the brown chevy 4x4 parked on a short driveway, a figure the wheel.\",crosses the road and shuts the door behind him.,pauses at the corner of the station with a hand on his head.,picks up the phone and checks his iphone.,0\n12049,lsmdc1005_Signs-4813,9734,\"The compact ruin is deserted, the solid dark wood desk clattered with papers. Someone\",\"The compact ruin is deserted, the solid dark wood desk clattered with papers.\",Someone,gold,views the scene with restrained alarm.,dumps the metal down onto an adjoining roof.,is missing.,\"appears to be covered numerous places, featuring someone twister to put on a piece of paper.\",0\n12050,lsmdc1005_Signs-4813,9739,\"In the back are bundles of clothes which someone eyes questioningly. Returning his attention to the front, he\",In the back are bundles of clothes which someone eyes questioningly.,\"Returning his attention to the front, he\",gold,notices a blood stain on someone's check shirt.,pulls out his masked trunks.,\"clears his top, slows to a stop, staring at a stone statue, which heaves down the mountain path.\",\"finds the bishop behind him, grabbing surprised and spaces.\",0\n12051,lsmdc1005_Signs-4813,9729,Someone knocks at the house of Vet. He,Someone knocks at the house of Vet.,He,gold,\"aims his revolver at someone, who tosses it aside.\",opens the screen door.,blows smoke into someone's mouth.,steps aside and joins someone in another doorway.,1\n12052,lsmdc1005_Signs-4813,9733,\"He turns and treads calmly along the wooden veranda surrounding the house. Reaching the closed window, he\",He turns and treads calmly along the wooden veranda surrounding the house.,\"Reaching the closed window, he\",gold,stops and looks through the glass into an office.,finds someone sitting on a stone balcony alone.,waddles up beside the penguin on their way.,climbs a flight of stairs.,0\n12053,lsmdc1005_Signs-4813,9737,\"Someone puts both hands on the sill and leans in with an inquisitive frown. Someone, the Asian man who stayed in town,\",Someone puts both hands on the sill and leans in with an inquisitive frown.,\"Someone, the Asian man who stayed in town,\",gold,\"sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead.\",\"has gathered people, staring deep into the river.\",turns off the front porch.,is just raised discreetly to be calm and enjoying what he did in his arm.,0\n12054,lsmdc1005_Signs-4813,9728,\"Takes a coat from the closet, where someone is still glued to the tv. From the bedroom, someone\",\"Takes a coat from the closet, where someone is still glued to the tv.\",\"From the bedroom, someone\",gold,sees a man in a casino with someone.,goes to a box of hotel clothes and picks a small glass.,'s looking at clouds through a telescope.,\"is pulling a car through the window's side window, then smokes the engine.\",2\n12055,lsmdc1005_Signs-4813,9738,\"Someone, the Asian man who stayed in town, sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead. In the back\",\"Someone, the Asian man who stayed in town, sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead.\",In the back,gold,\"seat, the men drink toward the entrance of the van.\",\"chamber, the mourners rush anxiously the remaining bagged, heading for the highway.\",\"seat, scraping lad's clay tattooed all around the cop's head and forehead, neither brakes or less and seats.\",are bundles of clothes which someone eyes questioningly.,3\n12056,lsmdc1005_Signs-4813,9741,Someone is still staring ahead. He,Someone is still staring ahead.,He,gold,lowers his eyes then frowns.,\"turns, shifting his eyes to his aunt.\",sees no sound coming out of his old dog pantry.,\"moves up, his eyes on her.\",0\n12057,lsmdc1005_Signs-4813,9736,\"He turns and spots the brown Chevy 4x4 parked on a short driveway, a figure the wheel. Someone\",\"He turns and spots the brown Chevy 4x4 parked on a short driveway, a figure the wheel.\",Someone,gold,pats someone on the shoulder then heads back to the car.,\"approaches the vehicle cautiously across a lawn, leaning over to get a view of its occupant.\",compares it to the wheel sheath and stacked slightly in the eyes.,rushes into the cab and heads towards a cab with the cross standing before him.,1\n12058,lsmdc1005_Signs-4813,9740,\"Returning his attention to the front, he notices a blood stain on someone's check shirt. Someone\",\"Returning his attention to the front, he notices a blood stain on someone's check shirt.\",Someone,gold,\"slithers out into his room, concealed by one stick.\",glances down as he takes a sawed off pipe.,is still staring ahead.,sits down and sprays the muddy flowerbed.,2\n12059,lsmdc1005_Signs-4813,9730,He opens the screen door. He,He opens the screen door.,He,gold,climbs a staircase and places his hands on the table.,walks across the darkened foyer as the cabinets across the floor have emptied.,\"wields shears, bringing it down with his gloved hands, then electrocutes!\",\"peers through slats in the wooden door behind it, then, gingerly closes the screen.\",3\n12060,lsmdc1005_Signs-4813,9726,\"On another page is a picture of a bluey green alien with an angular jaw, and black almond shaped eyes. Flames\",\"On another page is a picture of a bluey green alien with an angular jaw, and black almond shaped eyes.\",Flames,gold,falls curled in the center of someone's lap.,pouring from the upstairs windows.,\"with clouds and light flash, several images appear.\",\"rushes from the church and grabs four sons in his arms, as they throw it onto the pavement.\",1\n12061,lsmdc1005_Signs-4813,9731,\"He peers through slats in the wooden door behind it, then, gingerly closes the screen. Someone\",\"He peers through slats in the wooden door behind it, then, gingerly closes the screen.\",Someone,gold,laughs and is actually racked up a completed supply.,\"sits on the ground, his head covered with blood, the light of overhead light reflected in the sky.\",gently releases the handle.,opens it and puts on a pair of blue slacks on the other side.,2\n12062,lsmdc1005_Signs-4813,9727,Flames pouring from the upstairs windows. People,Flames pouring from the upstairs windows.,People,gold,run across the cover of minas tirith.,are staring at the picture.,walk up a stairwell.,run over the dimly lit house in the loft under the stairs.,1\n12063,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,385,The flag outside flies at half - mast. Music,The flag outside flies at half - mast.,Music,gold,goes to control as people leap into the opening.,\", at the slopes, it floats into the air and dives onto it's boat.\",\"fall in the air over a balcony, then someone bursts and the men watch helplessly.\",plays from a gramophone beside a grave.,3\n12064,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,387,\"People are amongst the mourners. As the song ends, a man\",People are amongst the mourners.,\"As the song ends, a man\",gold,claps two cymbals together.,begins sporting a quill.,makes his way through the flashing rooms.,puts a small pipe.,0\n12065,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,386,Music plays from a gramophone beside a grave. People,Music plays from a gramophone beside a grave.,People,gold,watch around the jumpers and then a title screen.,\"people are watching them, one - box, people is top of hogwarts.\",are amongst the mourners.,creep back inside the house with a smoking snacks.,2\n12066,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,388,\"As the song ends, a man claps two cymbals together. Someone\",\"As the song ends, a man claps two cymbals together.\",Someone,gold,\"smiles at her father, then grin.\",screams in rage as frustration.,sets down her body using the baton to speak.,eavesdrops on a conversation.,3\n12067,anetv_2_KTq85YQcY,3191,\"Then, the woman iron the shirt carefully. After, the woman puts the shirt on a hanger and button the shirt, then she\",\"Then, the woman iron the shirt carefully.\",\"After, the woman puts the shirt on a hanger and button the shirt, then she\",gold,shows the man to clean dresser.,tosses it an iron and boots over.,puts her hair to her arm.,coil the wire around the iron.,3\n12068,anetv_2_KTq85YQcY,10480,A woman appears and fills the iron with water. She then,A woman appears and fills the iron with water.,She then,gold,sprays cleaner on a pink towel.,lifts the wind bottle up to her face and sweeps the shaving cream over her eyes.,shows a shot of a jumbo drone.,demonstrates how to iron clothing with it.,3\n12069,anetv_2_KTq85YQcY,10479,An iron is shown sitting on a counter top. A woman,An iron is shown sitting on a counter top.,A woman,gold,is wiping the water with a cloth.,appears and fills the iron with water.,walks up the stairs to an exercise machine and begins talking.,showing how to use a clean toothbrush and iron the cut legs.,1\n12070,anetv_2_KTq85YQcY,3190,\"A woman fills the container of an iron with water, after she reads the tag of a shirt to set up the iron temperature. Then, the woman\",\"A woman fills the container of an iron with water, after she reads the tag of a shirt to set up the iron temperature.\",\"Then, the woman\",gold,iron the shirt carefully.,puts a pair of yellow polo on her chest.,resumes preparing the hair process.,talks to the camera again at the end.,0\n12071,lsmdc1011_The_Help-78235,17961,\"At her home, a well groomed brunette in a flowery, sleeveless, '60s style dress pulls out a length of toilet paper and marks it with dots. Someone, a stout, well - cushioned maid,\",\"At her home, a well groomed brunette in a flowery, sleeveless, '60s style dress pulls out a length of toilet paper and marks it with dots.\",\"Someone, a stout, well - cushioned maid,\",gold,trots to the bottom of the stairs and shouts up.,rises so they are given an antique.,drops a newspaper as she waits in.,strides up to the table and pulls out her shoes.,0\n12072,anetv_UcnzlGqUEyA,20022,A person picks up a piece of fruit. A brush,A person picks up a piece of fruit.,A brush,gold,is shown on the floor and a man grabs her arm.,is added to the chocolate.,is used to brush the wax.,is shown on the screen.,3\n12073,anetv_UcnzlGqUEyA,20023,A brush is shown on the screen. A man,A brush is shown on the screen.,A man,gold,bends down to remove the shoes.,holds a razor above her.,is shaving his beard.,demonstrates how to play a saxophone.,2\n12074,anetv_ah3tGziTbds,5304,A close up of a board is shown with a person pointing around. This,A close up of a board is shown with a person pointing around.,This,gold,shifts like a dog on the floor attached to a board.,are interviewed again across the table.,cuts around the ring and various people push around the side as well as the various keys and more people around the back.,leads into boats boats riding along the water with people steering.,3\n12075,anetv_ah3tGziTbds,5305,This leads into boats boats riding along the water with people steering. The people,This leads into boats boats riding along the water with people steering.,The people,gold,are then seen standing it in foreground and chasing down a rough leash.,moving around one another and ends by speaking and pointing to the camera.,continue to ride along the water and leads back to the man with the board.,speak to the camera while doing parts and raising the bottles into the water.,2\n12076,anetv_ah3tGziTbds,9167,Video of people sailing on large bodies of water is shown. The man,Video of people sailing on large bodies of water is shown.,The man,gold,is shown holding a hand and bringing the man down.,is standing by the whiteboard and speaks to the camera.,\"holds waves on a machine, waves and drinks games.\",continues skating around the snowy area while more kids are shown so well.,1\n12077,lsmdc3008_BAD_TEACHER-4053,1037,\"Someone takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple. Later, someone\",Someone takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple.,\"Later, someone\",gold,\"stands clothed with someone, carrying his wife's blood signature.\",opens a box album filled with tiny black dots.,kneels near the man's house shoulder.,enters her full classroom.,3\n12078,lsmdc3008_BAD_TEACHER-4053,1036,She puts down her purse and puts on a pair of rubber gloves. Someone,She puts down her purse and puts on a pair of rubber gloves.,Someone,gold,takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple.,steps into her bedroom and puts her feet down.,\"struggles to pick the key colonial instinctively reach for someone, and snags it against the back of her car.\",gets off the faucet and puts his hand on his shoe.,0\n12079,lsmdc3008_BAD_TEACHER-4053,1035,She takes out a few credit cards. She,She takes out a few credit cards.,She,gold,uses it to drop a syringe.,looks at every ensemble and resume looking at the cloisters.,pours beer into jars.,puts down her purse and puts on a pair of rubber gloves.,3\n12080,anetv_4BRCZaaITn0,12414,\"He walks back and forth, avoiding the rocks. He\",\"He walks back and forth, avoiding the rocks.\",He,gold,gazes straight into view and shakes his head.,turns at the driveway and returns again.,stands in the crowd while the crowd watches.,makes a few baskets and moves followed.,1\n12081,anetv_4BRCZaaITn0,12413,A man is mowing his lawn around a tree in front of his house. He,A man is mowing his lawn around a tree in front of his house.,He,gold,\"walks back and forth, avoiding the rocks.\",is using the rake to put shoes down when he says so.,sets the mower down and walks away watching her.,walks down a city street.,0\n12082,lsmdc0019_Pulp_Fiction-56938,10266,Someone steps in with a fire extinguisher and sprays both guys until they are wide awake and wet as otters. The two prisoners,Someone steps in with a fire extinguisher and sprays both guys until they are wide awake and wet as otters.,The two prisoners,gold,look up at their captors.,\"follow suit, lingering on their headlamps, and smile.\",stop kissing then cross his blonde wolf.,put up a glass - pong table.,0\n12083,lsmdc0014_Ist_das_Leben_nicht_schoen-54440,13576,\"She is standing talking to one of the boys, Freddie, a glass of punch in her hand. She\",\"She is standing talking to one of the boys, Freddie, a glass of punch in her hand.\",She,gold,talks about how to serve the glass with water.,\"is slightly distorted on the bar, and looks like he is a boy.\",sets the sun upright with her hands in the towel.,turns around and for the first time she sees someone.,3\n12084,lsmdc0014_Ist_das_Leben_nicht_schoen-54440,13578,\"A whistle is heard offscreen, and the music stops. As the music starts and couples begin dancing once more, they\",\"A whistle is heard offscreen, and the music stops.\",\"As the music starts and couples begin dancing once more, they\",gold,stop and smile and cheering to her.,get excited to give him water.,continue into the tunnel taking place.,look at each other.,3\n12085,lsmdc0014_Ist_das_Leben_nicht_schoen-54440,13575,\"He stops suddenly as he sees someone, staring at her. She\",\"He stops suddenly as he sees someone, staring at her.\",She,gold,\"is standing talking to one of the boys, freddie, a glass of punch in her hand.\",\"lunges, his legs swinging.\",\"steps forward, starts to run.\",\"looks to her at the hall, then turns and looks at her.\",0\n12086,anetv_lGKUEUBeo8U,4662,The man walked to the blue platform. The man,The man walked to the blue platform.,The man,gold,sat on the ground next to the man in black and shake hands.,walked to the edge and positioned the ball.,steps up and down on the platform as he moves around it.,\"hit the floor in the air once the girl started, then pushed to the ground when he cheered.\",2\n12087,anetv_lGKUEUBeo8U,4663,The man steps up and down on the platform as he moves around it. The man,The man steps up and down on the platform as he moves around it.,The man,gold,move his arms around him as he moves.,continues to work up the wall as well.,steps away from the case and continues looking at him in the mirror.,walks to the end of the rope and stops it and begins to help.,0\n12088,anetv_lGKUEUBeo8U,227,A boy walks into frame and begins stepping up and down on a small stairs moving his arms and legs around. He,A boy walks into frame and begins stepping up and down on a small stairs moving his arms and legs around.,He,gold,spins around the board still moving up and down adding kicks in the end and bowing while running away.,continues speaking and moving an object on the bars while still speaking to the camera.,smooths after his legs several times and jumps over the material.,continues to pull and continues to walk around as the camera captures him from several angles.,0\n12089,anetv_QSV7f5XHohE,6988,\"The woman makes holes in the center of four cakes, then pile the cakes putting frosty between them. Then, the woman\",\"The woman makes holes in the center of four cakes, then pile the cakes putting frosty between them.\",\"Then, the woman\",gold,puts vegetables on a tray and continue cutting the meat and putting the cutters next to them.,picks up the glitter and adds it to a circle and shows the finished nails in the pan.,cut to make a small cake that put on top of the piled cakes.,cut them and eat the insides of a sandwich.,2\n12090,anetv_QSV7f5XHohE,12210,Several photos of cakes are shown. A women,Several photos of cakes are shown.,A women,gold,turns to a table with a handful of five bodies and a lot of knives.,is in a field holding a clipping potato.,is then shown making a cake.,is seen using a toy cooking pot.,2\n12091,anetv_QSV7f5XHohE,6989,\"After, the woman putss a barbie head on top the cake and cut them to give a dress form. Next, the woman\",\"After, the woman putss a barbie head on top the cake and cut them to give a dress form.\",\"Next, the woman\",gold,moves the ball and shows and enter the background.,brings back plates strawberry cake to groom the present while another looks and makes sprouts.,\"takes two lemon slices, a sharpening put and take a bite of strawberries.\",\"puts white frosty around the cake and even the dress, then make groves.\",3\n12092,anetv_QSV7f5XHohE,12211,She intersts a doll on top of the cake. She then,She intersts a doll on top of the cake.,She then,gold,creates a curly chocolate and candies on a tree.,walks forward trying to brush it again.,uses the bulbs to bake cookies.,makes it look like the cake is a dress.,3\n12093,anetv_QSV7f5XHohE,6987,A woman stands on front cakes and a barbie with a beautiful dress. The woman,A woman stands on front cakes and a barbie with a beautiful dress.,The woman,gold,turns the hula hoop.,finishes wallpaper and smiles.,turns the flower and mix it in a blender.,\"makes holes in the center of four cakes, then pile the cakes putting frosty between them.\",3\n12094,anetv_B1DNoole3Wo,12957,A young girl is shown speaking to the camera with an older man smoking a cigarette in the background. More text is shown and another child,A young girl is shown speaking to the camera with an older man smoking a cigarette in the background.,More text is shown and another child,gold,is seen speaking to the camera while her mom smokes and she breathe in an inhaler.,is shown with a woman on front her side.,is shown in a picture getting all into a girl.,plays along the camera while two are skating behind plaster.,0\n12095,anetv_B1DNoole3Wo,14575,A little girl walks out of a house talking. Her mom,A little girl walks out of a house talking.,Her mom,gold,hits the ball upside down and resumes her bath.,is smoking a cigarette in the background.,comes out to fuss her castles.,gets to her feet.,1\n12096,anetv_B1DNoole3Wo,14576,Her mom is smoking a cigarette in the background. The girl,Her mom is smoking a cigarette in the background.,The girl,gold,talks to the camera and does several more comments that it's did not quite a bit of fun.,went back to recording.,is shown through the years becoming sick because of her mother's smoking.,holds an harmonica above her ear and touches it while looking compass and pointing.,2\n12097,anetv_2cUJTeArPsI,19275,Little kid is hanging from a pole in a playground. playground,Little kid is hanging from a pole in a playground.,playground,gold,is jumping past the kid as a child on to the kid's playground.,\"is hitting the playground, swinging in it.\",is shown in a dusty field in a big park.,is doing hopscotch on a hardwood floor in a park.,2\n12098,anetv_bCD6_kGsF9A,6416,A woman wearing blue jeans skates on one leg. Woman wearing blue jeans,A woman wearing blue jeans skates on one leg.,Woman wearing blue jeans,gold,spins around on skates.,and white shirt is practicing the rope moves.,are swimming in the pool.,gets behind the wheel.,0\n12099,anetv_bCD6_kGsF9A,8987,Woman is on roller skate in a competition doing tricks around cones. people,Woman is on roller skate in a competition doing tricks around cones.,people,gold,is sitting on chairs under tents watching the girl.,peddle in and lift each other together.,are in the bumper cars with a bull standing behind them.,are shown riding tubes on the field in a race.,0\n12100,anetv_bCD6_kGsF9A,8988,People is sitting on chairs under tents watching the girl. people,People is sitting on chairs under tents watching the girl.,people,gold,are standing in the middle of the room watching them.,are marching on the wooden field in front of the audience.,are standing on the beach in a white yellow helium.,is standing next to the fence watching the girl.,3\n12101,anetv_LbXhdPZakpo,1074,A large group of girls are seen running around a field playing field hockey. Coaches,A large group of girls are seen running around a field playing field hockey.,Coaches,gold,continues with one of them watching horses and begins to play with the game.,yell to the women on the sides as they continue to play.,watching them come to the end and talk to one another.,try to stay while others watch on the sides.,1\n12102,anetv_LbXhdPZakpo,14273,A large group of people are seen running around a field. They,A large group of people are seen running around a field.,They,gold,hit the ball back and fourth on the floor.,try to get out the balls.,are shown playing a game of field hockey with one another.,are playing a large game of basketball.,2\n12103,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7656,\"Clutching the letter, he peers in through a window. The young man\",\"Clutching the letter, he peers in through a window.\",The young man,gold,describes a sheer collie grin.,steps inside and lets the door swing shut behind him.,takes the grail diary from its pocket and lets go of it.,sits up and reading a cigar.,1\n12104,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7651,It bears a wax seal. Someone,It bears a wax seal.,Someone,gold,transforms into a paper mini carving.,watches someone as he takes it behind the counter and rips it open.,is having a deserted long time.,reads the map of honor and wears a red stamp.,1\n12105,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7677,\"As someone approaches, he puts the remainder back in a bowl and dusts his hands off on his pants. She\",\"As someone approaches, he puts the remainder back in a bowl and dusts his hands off on his pants.\",She,gold,myrtle's on top of someone's foot who starts to spin forward.,\"continues the buttons on a shirt tee, gazing at the island, then lights a play piece of paper on the wall.\",\"looks down at him with a sweet, coy smile.\",\"into one hole, he spots a man with a pair of shoes, and starts to go down the sleeves.\",2\n12106,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7665,\"He binds someone's wrists. As the trapped hunter looks on, the vampire\",He binds someone's wrists.,\"As the trapped hunter looks on, the vampire\",gold,rips the wire wings and climbs twice onto the door.,\"looks at someone's blood, then lowers his arm, and irons the string smoking his wand.\",\"opens a gleaming straight razor, turns it over and touches the blade.\",\"raises his tank companion at him and hesitates, as if he is a newfound charge for the ticket.\",2\n12107,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7675,\"Facing someone, someone discreetly jerks his head aside. She\",\"Facing someone, someone discreetly jerks his head aside.\",She,gold,bends over to try to drag her away.,turns towards the other toast on the spot.,turns and scans the room.,tosses a leaf box down.,2\n12108,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7668,\"He catches it in his mouth, then slashes the vampire's throat. Contracting his abdomen, he\",\"He catches it in his mouth, then slashes the vampire's throat.\",\"Contracting his abdomen, he\",gold,\"sees marley, planting a small shoulder spear in a the unlit neon cauldron.\",curls upward and cuts through the snare rope.,rips off a pair of gloomy helmets.,collapses to the couch.,1\n12109,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7660,\"The dust clears revealing someone's distorted, monstrous features. He\",\"The dust clears revealing someone's distorted, monstrous features.\",He,gold,falls from the collision into oncoming vehicles.,knocks someone back then activates a trapdoor.,smokes his cigarette as he sets down his beer.,goes to the window.,1\n12110,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7669,\"Contracting his abdomen, he curls upward and cuts through the snare rope. Someone\",\"Contracting his abdomen, he curls upward and cuts through the snare rope.\",Someone,gold,\"faces the dead man, then walks off.\",walks to the location and the screen fades to black.,\"falls to the floor, frees his wrists and retrieves his ax.\",pulls someone to a stop and lies on top of someone.,2\n12111,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7652,Someone watches someone as he takes it behind the counter and rips it open. Someone,Someone watches someone as he takes it behind the counter and rips it open.,Someone,gold,studies the envelope with paste.,walks around a corner and then up at another floor with panes filled with bowls.,opens the door and steps inside.,hands her list to him with a friendly smirk.,3\n12112,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7661,He knocks someone back then activates a trapdoor. The vampire hunter plunges through and a rope snare,He knocks someone back then activates a trapdoor.,The vampire hunter plunges through and a rope snare,gold,catches him around the ankle.,extends over its head.,surges up a fetal position.,pumps his fevered leg.,0\n12113,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7667,\"Crouching low, the vampire slips the bowl beneath the hunter. He\",\"Crouching low, the vampire slips the bowl beneath the hunter.\",He,gold,peers toward the ship then turns to it as it rides away.,notices the rider's black eye.,turns and reaches for the automaton shaped bird.,\"catches it in his mouth, then slashes the vampire's throat.\",3\n12114,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7663,\"His ax lies beside them. Arriving, someone\",His ax lies beside them.,\"Arriving, someone\",gold,shoots someone by his side.,pauses and moves to them.,finds grappling hooks together.,kicks it away and strikes him.,3\n12115,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7657,\"He crosses the floor between two service counters quickening his pace as he nears the back. In the pharmacy workroom, a bespectacled man with sizable sideburns\",He crosses the floor between two service counters quickening his pace as he nears the back.,\"In the pharmacy workroom, a bespectacled man with sizable sideburns\",gold,lays his pinned strands of a chain aside.,grinds a pestle in a mortar.,and a modest mouth arrives.,is escorted to the floor with a woman and someone's seen in close shots.,1\n12116,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7676,\"Beyond a circle of waltzing couples, someone sits snacking on nuts. As someone approaches, he\",\"Beyond a circle of waltzing couples, someone sits snacking on nuts.\",\"As someone approaches, he\",gold,puts the remainder back in a bowl and dusts his hands off on his pants.,addresses someone and the other two.,reaches down and grabs another phone.,turns his back to someone.,0\n12117,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7662,\"The vampire hunter plunges through and a rope snare catches him around the ankle. As we pull back to find someone in a room full of victims, each suspended upside down, the young hunter futile\",The vampire hunter plunges through and a rope snare catches him around the ankle.,\"As we pull back to find someone in a room full of victims, each suspended upside down, the young hunter futile\",gold,trying to free the intertube.,reaches for the floor.,orders passionately on a platform.,effort to win a game in broken.,1\n12118,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7674,\"Someone pulls out dress pants. Wearing a tuxedo with his stovepipe hat, someone\",Someone pulls out dress pants.,\"Wearing a tuxedo with his stovepipe hat, someone\",gold,follows someone into a mansion.,walks on to his drink.,stands in shock on his cell.,strolls up to a mirror wearing a white bikini.,0\n12119,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7672,\"Spraying blood soaks half his face. Using his hand, someone\",Spraying blood soaks half his face.,\"Using his hand, someone\",gold,steps into view as his gills still pressed on the register.,follows in removing the stick.,wipes it away with a horrified expression.,turns to find his shaver on the table.,2\n12120,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7664,\"Arriving, someone kicks it away and strikes him. He\",\"Arriving, someone kicks it away and strikes him.\",He,gold,binds someone's wrists.,rushes over to the seat.,presses the remote control on the bus.,throws it with his opponent.,0\n12121,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7673,He tosses someone a parcel. Someone,He tosses someone a parcel.,Someone,gold,grabs a magnetic tool from the box and continues to iron over the papers.,pulls out dress pants.,pokes someone with his staff as he shows.,turns to the waiter.,1\n12122,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7654,\"At dusk, as someone leaves, someone locks up then throws down his apron and hurries to action. In his room, he\",\"At dusk, as someone leaves, someone locks up then throws down his apron and hurries to action.\",\"In his room, he\",gold,walks on a road through obstacles and a large examples of trees.,\"slaps down the letter, dons an overcoat and gets his ax.\",looks up into a utility room and connects walls to toned darkness.,strides around a large packed living room and paces.,1\n12123,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7666,\"Someone resumes his struggle to free himself as Stibble sharpens the blade against the porcelain bowl's ornate rim. Crouching low, the vampire\",Someone resumes his struggle to free himself as Stibble sharpens the blade against the porcelain bowl's ornate rim.,\"Crouching low, the vampire\",gold,grabs his stomach and slides down in the final position to spot wooded surroundings.,\"tests the facial muscles in his hand, then lowers his leg.\",\"flexes his free foot, his weapon wincing.\",slips the bowl beneath the hunter.,3\n12124,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7658,\"As he turns, someone narrows his eyes. Stibble\",\"As he turns, someone narrows his eyes.\",Stibble,gold,\"the wall, someone thrusts, and someone hands he throwing someone to the sheer window material.\",\", someone walks into the room and shuts him into a pillar.\",rests the pestle against the mortar's rim.,\", someone greets his friends and someone leaves some leaves.\",2\n12125,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7653,\"Someone hands her list to him with a friendly smirk. At dusk, as someone leaves, someone\",Someone hands her list to him with a friendly smirk.,\"At dusk, as someone leaves, someone\",gold,locks up then throws down his apron and hurries to action.,stands at a window rubbing fluffy white back into view.,smiles at the cooler of bills and a row of silverware.,leads an opponent with a thoughtful look.,0\n12126,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7671,\"As somone charges, he delivers a mighty upward blow. Spraying blood\",\"As somone charges, he delivers a mighty upward blow.\",Spraying blood,gold,gushes through the giant.,\", he lies on a floor that bears the silverware and treatment.\",soaks half his face.,\"from someone's leg, someone swings him back down.\",2\n12127,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7659,\"Someone charges, but the vampire throws powder. The dust\",\"Someone charges, but the vampire throws powder.\",The dust,gold,rises into the solders position.,\"clears, and wearing a hand face as he swims.\",\"clears, and there's cue tabletop jutting up at the feet of the toolbox.\",\"clears revealing someone's distorted, monstrous features.\",3\n12128,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7655,\"At night, we swoop low over the streets of Springfield passing smoking chimneys as lightning flashes in the distance. Clutching the letter, he\",\"At night, we swoop low over the streets of Springfield passing smoking chimneys as lightning flashes in the distance.\",\"Clutching the letter, he\",gold,passes fountains and numbers.,finds someone lying on the ground by a window overlooking the city.,scans the devastation but finds himself on the deserted spot.,peers in through a window.,3\n12129,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7670,\"Someone falls to the floor, frees his wrists and retrieves his ax. As somone charges, he\",\"Someone falls to the floor, frees his wrists and retrieves his ax.\",\"As somone charges, he\",gold,flails and drags him onto a high boulder.,delivers a mighty upward blow.,tosses the scroll to the deck.,\"feels his ankle, and turns around.\",1\n12130,lsmdc1014_2012-78908,3939,A crack appears on the supermarket floor. Cereal boxes,A crack appears on the supermarket floor.,Cereal boxes,gold,are tossed on a closed drawer.,shake as someone reaches out for them.,decorate the corner of the underneath.,are stacked around a pot until a face in multiple windows displays a triangle of liquor and powerful furniture and fresh plates.,1\n12131,lsmdc1014_2012-78908,3938,\"At the checkout, a customer's trolley rolls slowly away. A crack\",\"At the checkout, a customer's trolley rolls slowly away.\",A crack,gold,\"opens, then a snowy bird.\",emerges from the doorway open and firmly opens.,appears on the supermarket floor.,enters a coastal town.,2\n12132,anetv_kzbQWKUMyS0,17908,The man mounts a tightrope and performs on it. The man,The man mounts a tightrope and performs on it.,The man,gold,does a handstand and dismounts with both hands.,dismounts from the tightrope and hops around the stage.,plays the drums from side to side.,dismounts and lands on the rocks.,1\n12133,anetv_kzbQWKUMyS0,17909,The man dismounts from the tightrope and hops around the stage. The man,The man dismounts from the tightrope and hops around the stage.,The man,gold,mounts the rope again and performs tricks.,has black is jumping on the bars.,\"grabs the boy, knocking him into the crowd.\",hops on the bench and walks into the room.,0\n12134,anetv_kzbQWKUMyS0,17911,The man dismounts from the rope and performs some kicks on stage. The man,The man dismounts from the rope and performs some kicks on stage.,The man,gold,is seen standing together in the air performing the same thing.,mounts the rope once more and performs more tricks.,moves the horse jumping up and down with his partner.,finishes and cleans his hands and ends with the two people fencing together.,1\n12135,anetv_kzbQWKUMyS0,17912,The man mounts the rope once more and performs more tricks. The man briefly,The man mounts the rope once more and performs more tricks.,The man briefly,gold,does another bronze routine in the park section.,dismounts from the rope.,turns again entering another game.,moves forward to assist several angles.,1\n12136,anetv_kzbQWKUMyS0,17910,The man mounts the rope again and performs tricks. The man,The man mounts the rope again and performs tricks.,The man,gold,runs after the calf and films.,spins and throws the animal as it swings to the floor.,dismounts from the rope and performs some kicks on stage.,dismounts and lands in the balance beam.,2\n12137,anetv_kzbQWKUMyS0,2437,\"After the split, the man jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it. The circus show continues, and the man\",\"After the split, the man jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it.\",\"The circus show continues, and the man\",gold,is shown again and making several circles before jumping high on a mat and signing it to adjust head.,is congratulated by the words on the screen.,continues doing jumps on top of the slack line and clapping to get the audiences' participation.,vanishes behind the pedestrian than run in the street before outside the gym.,2\n12138,anetv_kzbQWKUMyS0,17914,The man briefly dismounts from the rope again. The man,The man briefly dismounts from the rope again.,The man,gold,dismounts a final time and poses for the audience.,walks to the right and grabs a ball.,flips back and flips in the water.,turns and stokes on the land.,0\n12139,anetv_kzbQWKUMyS0,2436,\"As he dances, the man jumps on top of a rope and starts teetering back and forth until he slides down into a split. After the split, the man\",\"As he dances, the man jumps on top of a rope and starts teetering back and forth until he slides down into a split.\",\"After the split, the man\",gold,put in the rope and let the flight of balance go over the bar.,twists him off the side and spins him around.,jump back up and goes over the bar to high level to his head and jump off the bows to the man that continue bellhop,jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it.,3\n12140,anetv_kzbQWKUMyS0,2435,\"A young man appears out of the corner doing a flip on a large stage and clapping to the audience. As he dances, the man\",A young man appears out of the corner doing a flip on a large stage and clapping to the audience.,\"As he dances, the man\",gold,jumps on top of a rope and starts teetering back and forth until he slides down into a split.,\"gets in a red squares, stands up quickly and dances as the point of the city is so happy.\",with a accordian begins to maintain the dance.,jumps some claps and the audience applauds him for his own performance.,0\n12141,lsmdc1029_Pride_And_Prejudice_Disk_One-83882,13113,\"Hearing a noise from the hall, he looks up from his book to see trunks being moved. She\",\"Hearing a noise from the hall, he looks up from his book to see trunks being moved.\",She,gold,\"eyes him briefly, and quickly takes the phone.\",leans against the canvas bale.,pushes him forward with fear and drunkenly not to go.,comes in to see him.,3\n12142,lsmdc1029_Pride_And_Prejudice_Disk_One-83882,13112,\"Indoors, someone is reading. Hearing a noise from the hall, he\",\"Indoors, someone is reading.\",\"Hearing a noise from the hall, he\",gold,looks up from his book to see trunks being moved.,goes back to listen.,\"lowers to someone's sitting car, adjusts the receiver, and fumbles.\",turns sharply toward someone with the crowd of greeting.,0\n12143,anetv_JKa3jnnowNo,19228,A man is on a ladder drilling something. Another man,A man is on a ladder drilling something.,Another man,gold,is snowboarding the snowy bush.,is kneeling down in front of him and hammers nails into the ceiling.,puts a reproachful bag in a large pile.,is seen seated inside a bowling alley.,1\n12144,anetv_JKa3jnnowNo,19227,Two men are standing on a roof of a house. A man,Two men are standing on a roof of a house.,A man,gold,dumps water in the sitting room.,is on a ladder drilling something.,is using a bucket of wet wax weed.,holds a man tight over their bodies.,1\n12145,anetv_JKa3jnnowNo,1563,A man puts nails to new planks in the roof. A man,A man puts nails to new planks in the roof.,A man,gold,uses a ladder to remove ice from a disc.,puts down the blanket on a chair hanging silently from the wall.,shows off a layer of cement while uses a brush to polish a pair of metal pieces with a metal stick hanging and typewriter.,holds a flame while putting covers to the roof.,3\n12146,lsmdc3041_JUST_GO_WITH_IT-18400,16613,Someone sucks on his straw as if it's a cigarette. The girl,Someone sucks on his straw as if it's a cigarette.,The girl,gold,picks up her slice and winces at it.,\"waggles her long, long fingers.\",\"swings her arms around, then touches the mannequin's head and places lightly on her heart.\",dumps into his rental and strokes someone's hand.,0\n12147,lsmdc3037_IRON_MAN2-16378,8367,Two officers on motorcycles escort a black luxury car along a city street. The car,Two officers on motorcycles escort a black luxury car along a city street.,The car,gold,drives down the street and makes it a group packed past.,travels down one of the aisles.,travels down the side of a building on an elevated central street.,stops outside a building's ornate facade.,3\n12148,lsmdc3037_IRON_MAN2-16378,8368,The car stops outside a building's ornate facade. Someone,The car stops outside a building's ornate facade.,Someone,gold,holds up two pieces of paper.,steps out of the car and waves to onlookers.,watches as he purses his lips.,goes upstairs and approaches someone.,1\n12149,lsmdc3037_IRON_MAN2-16378,8370,\"Someone and someone step out and join someone as he enters the hotel. Inside, someone\",Someone and someone step out and join someone as he enters the hotel.,\"Inside, someone\",gold,stands at his desk desk and packs a can of paper.,delivers up in front of someone.,walks off while someone and someone step into a restaurant.,finds someone standing in his bedroom.,2\n12150,lsmdc3037_IRON_MAN2-16378,8366,\"Someone smiles at someone, who turns away. Two officers on motorcycles\",\"Someone smiles at someone, who turns away.\",Two officers on motorcycles,gold,scramble out of their vehicles.,escort a black luxury car along a city street.,stand in the doorway of a car.,take come out of their duplex.,1\n12151,lsmdc3037_IRON_MAN2-16378,8363,\"In a photo, someone, wearing a dark bikini, lies on her side. Someone\",\"In a photo, someone, wearing a dark bikini, lies on her side.\",Someone,gold,seems a bit longer playing the sea for her.,stands and unbuttons her shirt.,stands and walks slightly bent over.,grabs a clipboard and turns off the faucet.,2\n12152,lsmdc1028_No_Reservations-82944,14582,\"In someone's room, someone searches through a cardboard box. She\",\"In someone's room, someone searches through a cardboard box.\",She,gold,pulls out a scarf.,sits at the kitchen table.,takes a notice from someone's bag and sits up.,draws out her pen and hands it back.,0\n12153,lsmdc1028_No_Reservations-82944,14584,Someone follows someone into the hallway. Someone,Someone follows someone into the hallway.,Someone,gold,takes a bite of food.,\"hurdles the counter, then staggers away and grabs him by the throat.\",\"opens her eyes, her eyes fill with flames.\",picks up her keys and grabs her coat.,3\n12154,lsmdc1028_No_Reservations-82944,14585,Someone picks up her keys and grabs her coat. Someone,Someone picks up her keys and grabs her coat.,Someone,gold,is still working on someone's cell.,leaves and walks wearily onto a concrete.,stands and stares at the door.,goes into the living room and switches off the helmet lamp.,2\n12155,lsmdc1028_No_Reservations-82944,14583,\"Someone puts the pink, stripy scarf back and begins to look through a second box. Someone\",\"Someone puts the pink, stripy scarf back and begins to look through a second box.\",Someone,gold,follows someone into the hallway.,is into the fact that it is almost a horrible evening.,places the tallies seals box.,\"walks over to the older woman reading, then beams proudly.\",0\n12156,lsmdc3058_RUBY_SPARKS-28223,14170,Someone looks up at the house and shakes his head. Someone,Someone looks up at the house and shakes his head.,Someone,gold,\"stands, looks at the clock.\",takes his phone back.,\"walks along the corridor, smiling holding his cell phone.\",spots someone watching him from outside the house.,1\n12157,lsmdc3058_RUBY_SPARKS-28223,14175,He steps around the desk and whispers in his brother's ear. Someone,He steps around the desk and whispers in his brother's ear.,Someone,gold,\"stands, wearing her hat and a doctor's cap.\",shots of someone's smile reveals if most of the women were already hard behind.,\"takes out his phone, and places a slip of paper into his pocket.\",shoots him an incredulous look.,3\n12158,lsmdc3058_RUBY_SPARKS-28223,14179,He looks up from his typewriter then hurries out. He,He looks up from his typewriter then hurries out.,He,gold,glances over his shoulder and looks at his sister who's still hanging her nightie.,watches the valet stand anxiously.,returns to the kitchen presenting a bottle of wine.,\"runs some waves as he heads back toward the square, and turns with his new assistant.\",2\n12159,lsmdc3058_RUBY_SPARKS-28223,14177,\"Someone notes their perplexed grins. Left alone with her, someone\",Someone notes their perplexed grins.,\"Left alone with her, someone\",gold,appears on the chalkboard.,tucks into her panties.,answers her bedside clock.,backs against a wall.,3\n12160,lsmdc3058_RUBY_SPARKS-28223,14171,Someone takes his phone back. Someone,Someone takes his phone back.,Someone,gold,\"smiles at him, unhappily someone in his seat.\",drives someone's car into her drive.,\"clenches his fist, dropping it to the ground and forgetting.\",leads the way up the staircase.,3\n12161,lsmdc3058_RUBY_SPARKS-28223,14176,The brothers trade a look. Someone,The brothers trade a look.,Someone,gold,slips out of the cab and faces a door.,is windsurfing in the lake parking lots.,strides over to the couch and places her back to him.,notes their perplexed grins.,3\n12162,lsmdc3058_RUBY_SPARKS-28223,14173,\"From the kitchen counter, someone watches someone and someone return to the balcony. They\",\"From the kitchen counter, someone watches someone and someone return to the balcony.\",They,gold,walks toward the door which opens it.,cross to the door with an affected breezy air.,dump a banana in front of someone.,roll down a window.,1\n12163,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5928,The witch dodges the bolts. As she,The witch dodges the bolts.,As she,gold,soars through the forest.,stops clutching a cake.,\"watches, the shape opens the door.\",\"leaps away, it collapses.\",0\n12164,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5929,\"As she soars through the forest. Someone, a young muscular man with dark hair,\",As she soars through the forest.,\"Someone, a young muscular man with dark hair,\",gold,comes up behind him.,stands nearby with his gun on his shoulder.,\"sits on the road with his legs crossed, waiting for the answer.\",sits in the back of a home.,1\n12165,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5927,She points her crossbow at a witch with scaly skin and black hair who turns. The hag,She points her crossbow at a witch with scaly skin and black hair who turns.,The hag,gold,knocks her arm back and runs off.,rewinds the bar to calm her.,throws a dagger at someone.,smashes someone's vase in a steel grip.,2\n12166,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5926,\"Someone, a young woman with dark hair and an athletic build, kicks down the door of an isolated cottage in the woods. She\",\"Someone, a young woman with dark hair and an athletic build, kicks down the door of an isolated cottage in the woods.\",She,gold,\"has set it on the tree and mows the lawn, back towards his house in his head!\",knows what's wrong then shines at her.,\"pauses for a moment, then turns back in someone's direction.\",points her crossbow at a witch with scaly skin and black hair who turns.,3\n12167,anetv_itgR5a-hH_o,16274,A man is seen playing piano and smiling to the camera. He,A man is seen playing piano and smiling to the camera.,He,gold,continues speaking while smiling to the camera.,points at the camera again.,continues decorating the object and walking along the aisle.,continues playing while looking down at his hands.,3\n12168,anetv_itgR5a-hH_o,11042,A man is smiling and playing a piano. The camera,A man is smiling and playing a piano.,The camera,gold,shows he started to play the guitar.,stands in a close up with a white screen.,shows all the keys inside the piano as he plays.,zooms in on the break dancing had.,2\n12169,anetv_itgR5a-hH_o,16275,He continues playing while looking down at his hands. People,He continues playing while looking down at his hands.,People,gold,man looks up at a black screen showing that he will win a game while sitting.,walk in and out of frame as he continues to play.,continues playing as the audience cheers him to the music.,go down and sitting to the end.,1\n12170,anetv_EU-IdUKbLSg,16222,Shots of people playing are shown when one hits the other. The coaches,Shots of people playing are shown when one hits the other.,The coaches,gold,yell to one another while people still play the game.,begin to play the drums wall while they all pass to the camera.,are then seen kicking onto a park and running around while holding another ball.,are then several other laughing and they eventually disappear to measure the distance.,0\n12171,anetv_ghFOHoBiyD8,3999,A man wearing glasses is holding a book and talking. He,A man wearing glasses is holding a book and talking.,He,gold,reads a paper onto a box.,is throwing a dart before them.,is standing on a triangular pier as the man prepares his harmonica.,is shown entering a bowling alley.,3\n12172,anetv_ghFOHoBiyD8,4000,He is shown entering a bowling alley. The man,He is shown entering a bowling alley.,The man,gold,interviews players and joins them in a game of bowling.,loads the first one go.,takes the third magazine.,skates through a belly shop.,0\n12173,anetv_ghFOHoBiyD8,4001,The man interviews players and joins them in a game of bowling. A player,The man interviews players and joins them in a game of bowling.,A player,gold,explains the techniques he uses.,throws his feet up onto the field.,blocks his punch with a third attempt.,loses his game and does another cheer.,0\n12174,anetv_lsvZBtYMXZM,1447,\"The man in the suit and the woman continue to dance alone. The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit\",The man in the suit and the woman continue to dance alone.,\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit\",gold,blows him the beat.,instructs his opponent who stand and talk watching them in the end.,does the back turning off the music.,dodges the punch and pushes the man in the tank top out of the dance floor.,3\n12175,anetv_lsvZBtYMXZM,1444,Two people are standing face to face under a spotlight. The man wearing a black and white suit,Two people are standing face to face under a spotlight.,The man wearing a black and white suit,gold,simulates a slap to the woman wearing a dress on the right.,is skating down on outdoor street.,is holding on a tennis tile.,joins the man in a room.,0\n12176,anetv_lsvZBtYMXZM,1445,The man wearing a black and white suit simulates a slap to the woman wearing a dress on the right. A man wearing a black tank top immediately runs into the spotlight to stand between the two and they all,The man wearing a black and white suit simulates a slap to the woman wearing a dress on the right.,A man wearing a black tank top immediately runs into the spotlight to stand between the two and they all,gold,made their pointe back and forth from the first store.,meet on their escape.,run around with the water magazine that platforms dive in the aisle holding dancers too hold on as they wave together.,begin to dance as the room is lit up to show a large dancing area with people in the audience watching them.,3\n12177,anetv_lsvZBtYMXZM,1446,The three continue to dance until the man in the black tank top picks the woman up and throws her to the ground and leaves the dance floor. The man in the suit and the woman,The three continue to dance until the man in the black tank top picks the woman up and throws her to the ground and leaves the dance floor.,The man in the suit and the woman,gold,clap and sit on the mat as the smokey party begins.,continue to dance alone.,put water around in the hoop near view.,keep dancing on the mat.,1\n12178,anetv_lsvZBtYMXZM,1448,\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit dodges the punch and pushes the man in the tank top out of the dance floor. The man in the suit and the woman in the dress continue to dance alone and they\",\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit dodges the punch and pushes the man in the tank top out of the dance floor.\",The man in the suit and the woman in the dress continue to dance alone and they,gold,start recording the two people with the towel around each other.,\"are almost on wearing, after the men turn one of them on one of them.\",end dramatically in a pose with her back on the ground and the man hovering above her.,pretend they were zooming a tablecloth.,2\n12179,lsmdc1060_Yes_man-99381,5886,He looks into the room and sees a guitar. Someone,He looks into the room and sees a guitar.,Someone,gold,pretends to be asleep.,looks shifty as he steps away from her.,steps down to a balcony.,points at the guy and goes inside.,3\n12180,lsmdc1060_Yes_man-99381,5881,The desperate man is standing on a ledge outside the top floor. Someone,The desperate man is standing on a ledge outside the top floor.,Someone,gold,moves a stack of boxes down off his feet.,bursts into an apartment.,is hit in the stomach in action.,\"starts moving very slowly and still, then gets up and slams the bar shut.\",1\n12181,lsmdc1060_Yes_man-99381,5887,\"Someone points at the guy and goes inside. On the street, people\",Someone points at the guy and goes inside.,\"On the street, people\",gold,\"watch other horseman struggle out a door and alertly calm their easy gaze, and wave before dismounting.\",'s wife uses a roll of toilet paper to wrap an essay in the pages.,cower from their fat men and throws in the garbage car.,\"are standing in the crowd, looking up anxiously.\",3\n12182,lsmdc1060_Yes_man-99381,5883,Someone goes into the cluttered living room and looks around. He,Someone goes into the cluttered living room and looks around.,He,gold,\"hangs on either side of the corridor, waiting for his trip to eat.\",leans out of an arched window and looks at the guy on the ledge.,sees someone entering into a crate.,squeezes through a pillow then sits up and finds herself staring at him with a tight face.,1\n12183,lsmdc1060_Yes_man-99381,5879,\"Standing on the street, someone stares into the distance with a steely resolve. He\",\"Standing on the street, someone stares into the distance with a steely resolve.\",He,gold,crouches down beside someone.,checks his hand then glances out with the light from the car.,\"bursts into the tall, red brick apartment building and runs up a central staircase.\",downs a long long drink then twists it into the waistband of his left glasses and turns back to someone.,2\n12184,lsmdc1060_Yes_man-99381,5880,\"He bursts into the tall, red brick apartment building and runs up a central staircase. The desperate man\",\"He bursts into the tall, red brick apartment building and runs up a central staircase.\",The desperate man,gold,flings himself off the car and somersaults into his center.,lands on the train and sings in someone's offices.,goes over high raindrops.,is standing on a ledge outside the top floor.,3\n12185,lsmdc1060_Yes_man-99381,5882,Someone bursts into an apartment. Someone,Someone bursts into an apartment.,Someone,gold,\"enters, waking up by his slippers.\",studies a simple garden pot and finding someone in a kitchen door.,goes into the cluttered living room and looks around.,\"the scaffolding, someone struggles to balance upright.\",2\n12186,lsmdc1060_Yes_man-99381,5884,He leans out of an arched window and looks at the guy on the ledge. He,He leans out of an arched window and looks at the guy on the ledge.,He,gold,\"sits rocking back and forth as he reads the medal, which has gone from his torso.\",shakes the ground like a penis.,partially falls off beside the bed while a black - haired woman looks him out the window.,\"is a casually dressed, portly guy with thick, black hair.\",3\n12187,lsmdc1060_Yes_man-99381,5885,\"He is a casually dressed, portly guy with thick, black hair. He\",\"He is a casually dressed, portly guy with thick, black hair.\",He,gold,is combed out out of his folders and white barber pecks.,looks into the room and sees a guitar.,makes her way to the desk where she silently hears the telephone call which the woman keeps on.,has a blow mustache and wears a cool usual beard mustache.,1\n12188,anetv_waF8oGaQqvI,9145,\"The woman stands up to show her tattoo and the woman is briefly shown sunbathing with the tattoo covered up. A close up of her tattoo is shown and words appear over it that say's Democrats are more likely to have tattoos, then a white screen\",The woman stands up to show her tattoo and the woman is briefly shown sunbathing with the tattoo covered up.,\"A close up of her tattoo is shown and words appear over it that say's Democrats are more likely to have tattoos, then a white screen\",gold,appears with white text that displays the gel colored sparkles.,\"appears with green text appear, then leap two zero across the screen.\",appears with the blue words in the middle that say howcast.,appears with white words that read left me cut in to day com dot com.,2\n12189,anetv_waF8oGaQqvI,9144,When he's done tattooing her he holds up a white bottle with a green cap and talks to her while showing it and white words appear on the screen giving a warning that Applying too much topical anesthetic and then covering the tattoo can cause seizures. The woman stands up to show her tattoo and the woman,When he's done tattooing her he holds up a white bottle with a green cap and talks to her while showing it and white words appear on the screen giving a warning that Applying too much topical anesthetic and then covering the tattoo can cause seizures.,The woman stands up to show her tattoo and the woman,gold,lit the shirt is watching.,is briefly shown sunbathing with the tattoo covered up.,is not holding the contact lens into her hand.,has her item in her hand and strands of the tattoo in her hands and in her flickering settings.,1\n12190,anetv_waF8oGaQqvI,9142,A special effect intro appears and a blue word appears in the middle of the screen and say's Howcast. A woman is lying on a bed in a business with a man sitting next to her and a list of things,A special effect intro appears and a blue word appears in the middle of the screen and say's Howcast.,A woman is lying on a bed in a business with a man sitting next to her and a list of things,gold,pop up on the screen under the words you will need appear on the screen.,and a website address.,he is about to cross and the address of her name is shown.,on the counter in front of her.,0\n12191,anetv_zdaD55zVNdQ,10547,\"A man throws a hammer throw in a judged sports performance, outside, on a grass covered field with a group of onlookers on the side lines. A man\",\"A man throws a hammer throw in a judged sports performance, outside, on a grass covered field with a group of onlookers on the side lines.\",A man,gold,has a microphone running through a plaza and an course on a track.,\"approaches a square, paved, white surface surrounded by black netting.\",lifts the ball goes black and falls to the ground multiple times.,demonstrates how to do karate on the court.,1\n12192,anetv_zdaD55zVNdQ,10548,Two people emerge with a long tape measure to measure the distance the hammer ball was thrown. The athlete,Two people emerge with a long tape measure to measure the distance the hammer ball was thrown.,The athlete,gold,quickly steps up on the discuss in the competition while smiling jim the matches.,start to throw ball at the goal with the mallet.,lands in the sun and packed with the standing title.,runs off jumping and smiling and chest bumps another player.,3\n12193,lsmdc1055_Marley_and_me-96673,16683,He runs his hand down Marley's beige coat. He,He runs his hand down Marley's beige coat.,He,gold,treads along the top of the stairs.,\"strokes the dog's tail, which is n't wagging now.\",\"picks one, then turns back slowly.\",lobs his flashlight from the direction of someone.,1\n12194,lsmdc1058_The_Damned_united-98362,18900,\"Derby players hit a ball, then run up and down the stands. Someone\",\"Derby players hit a ball, then run up and down the stands.\",Someone,gold,calls the japanese and talks.,swimmers get across from it and shake their hands for an victory.,joins someone on the terraces.,kicks the ball and runs from the opposing sandy and pumps a somersault while bouncing.,2\n12195,lsmdc3058_RUBY_SPARKS-28112,12937,\"Reaching the upstairs landing, he peers over the railing. Someone\",\"Reaching the upstairs landing, he peers over the railing.\",Someone,gold,launches a boat on the line and slips.,spits into the basin.,finds no sign of the woman downstairs.,looks through the same tunnel.,2\n12196,lsmdc3058_RUBY_SPARKS-28112,12940,\"He dashes through doorway and slams it shut behind him. Now in his bathroom, someone\",He dashes through doorway and slams it shut behind him.,\"Now in his bathroom, someone\",gold,lies in only briefs and drops to the floor.,dials a call on his cellphone and paces.,sleeps on someone's lap.,smiles into his shoulder.,1\n12197,lsmdc3058_RUBY_SPARKS-28112,12942,\"He removes his glasses briefly and rubs his eyes. Ending the call, he\",He removes his glasses briefly and rubs his eyes.,\"Ending the call, he\",gold,joins the marines on the golden floor.,braces both hands on the counter and leans over breathlessly.,\"smiles slightly, then gives a shy smile.\",sits down at the table and leaves the room.,1\n12198,lsmdc3058_RUBY_SPARKS-28112,12936,\"He ventures cautiously from his office. Reaching the upstairs landing, he\",He ventures cautiously from his office.,\"Reaching the upstairs landing, he\",gold,sees someone lying on the bed.,grins at him remorsefully.,hurries to the door.,peers over the railing.,3\n12199,lsmdc3058_RUBY_SPARKS-28112,12941,\"Now in his bathroom, someone dials a call on his cellphone and paces. He\",\"Now in his bathroom, someone dials a call on his cellphone and paces.\",He,gold,leaves someone's truck with one of the cabs parked by the parking lot.,removes his glasses briefly and rubs his eyes.,\"bites his lip as he wakes up, his eyes still closed.\",adjusts her seat belt.,1\n12200,lsmdc3058_RUBY_SPARKS-28112,12938,Someone finds no sign of the woman downstairs. Someone,Someone finds no sign of the woman downstairs.,Someone,gold,hops behind the counter and grabs a cellphone.,walks over to his truck and climbs the stairs.,\"starts the truck driver, just as someone is walking to the windshield.\",\"turns away, his body relaxing.\",3\n12201,lsmdc3058_RUBY_SPARKS-28112,12932,Someone backs up and sinks to the floor. He,Someone backs up and sinks to the floor.,He,gold,feels his son's knee.,is raised and falls to the ground.,falls down into the chair.,springs from her touch.,3\n12202,lsmdc3058_RUBY_SPARKS-28112,12945,\"As she adds hot sauce, someone creeps downstairs and musters a casual demeanor. She\",\"As she adds hot sauce, someone creeps downstairs and musters a casual demeanor.\",She,gold,hands the patrolman to someone.,hurries to an strawberries display.,steps out of the kitchen.,collapses to her knees in disgust.,2\n12203,lsmdc3058_RUBY_SPARKS-28112,12935,His wide eyes magnified by his glasses. He,His wide eyes magnified by his glasses.,He,gold,ventures cautiously from his office.,gapes and holds notes.,solemnly the concern on their faces.,raises his fingers to his temple.,0\n12204,lsmdc3058_RUBY_SPARKS-28112,12943,\"Ending the call, he braces both hands on the counter and leans over breathlessly. Someone\",\"Ending the call, he braces both hands on the counter and leans over breathlessly.\",Someone,gold,whisks eggs in a glass mixing bowl.,slams down a slice of punch.,shoots his radio in the shoulder and the man move alongside.,sits up and flips some switches.,0\n12205,lsmdc3058_RUBY_SPARKS-28112,12930,\"On his way out, someone freezes. Someone\",\"On his way out, someone freezes.\",Someone,gold,crosses the street and approaches a door at the end of the corridor.,turns on the phone.,\"stands in his kitchen, eating a bowl of cereal.\",\"reaches up, touches one.\",2\n12206,lsmdc3058_RUBY_SPARKS-28112,12934,He runs upstairs and into his office. Someone,He runs upstairs and into his office.,Someone,gold,stops at the phone door and hangs up.,\"is n't interested, talking to others for activities to know.\",\"picks up his bag and dials, then walks inside.\",looks around with his hand on his chest.,3\n12207,lsmdc3058_RUBY_SPARKS-28112,12944,\"Someone whisks eggs in a glass mixing bowl. As she adds hot sauce, someone\",Someone whisks eggs in a glass mixing bowl.,\"As she adds hot sauce, someone\",gold,sits inside a brown onion.,sits on a couch staring at the map.,creeps downstairs and musters a casual demeanor.,dumps the juice out of his mouth.,2\n12208,lsmdc3058_RUBY_SPARKS-28112,12931,\"Someone stands in his kitchen, eating a bowl of cereal. Someone\",\"Someone stands in his kitchen, eating a bowl of cereal.\",Someone,gold,lowers her tearful gaze and closes the egg.,walks up a staircase to someone's apartment.,\"gets out of the limo, and addresses his staff.\",backs up and sinks to the floor.,3\n12209,lsmdc3009_BATTLE_LOS_ANGELES-630,18752,The soaring missile hits the craft. He,The soaring missile hits the craft.,He,gold,falls onto his back and watches as fire builds inside the vessel.,carefully tosses the plane into the sky.,hurls both st into another fan.,breaks into a grin.,0\n12210,lsmdc3009_BATTLE_LOS_ANGELES-630,18750,\"Climbing up the concrete's slab, he spot the box. Someone\",\"Climbing up the concrete's slab, he spot the box.\",Someone,gold,rides up to his suv.,collects a stack of strategy packets from the dividing section and walks on.,averts his defeated gaze and shakes his head.,fires at an alien which explodes and knocks someone.,3\n12211,lsmdc3009_BATTLE_LOS_ANGELES-630,18751,Someone fires at an alien which explodes and knocks someone. Someone,Someone fires at an alien which explodes and knocks someone.,Someone,gold,slams him on the chopper.,spins to someone and someone.,starts the fire and someone chases after someone.,grabs the grenade launcher.,3\n12212,anetv_bM5VpCdPOrw,2129,A man speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area. He,A man speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area.,He,gold,begin to wipe the window with a solution and show the changes.,like animals are seen on screen.,group are seen riding all around a city while speaking to the camera and showing off grinding and crashing.,puts white clothing all over his body and several others and leads into the people riding camels with others leading in front.,3\n12213,anetv_bM5VpCdPOrw,2128,A man is seen speaking to he camera and leads into clip of his truck driving and people riding behind. A man,A man is seen speaking to he camera and leads into clip of his truck driving and people riding behind.,A man,gold,drives the bike down the road with a man walking to the end of the bus.,speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area.,is seen speaking to the camera and leads into several stills of him riding on the surface.,races past the camera and gets off the boat while still speaking.,1\n12214,lsmdc3020_DEAR_JOHN-9557,16181,\"As he steps away, someone methodically sets the silverware aside. He\",\"As he steps away, someone methodically sets the silverware aside.\",He,gold,picks up the plate in both hands.,wraps his arms around someone's limp body and holds her in position.,sits on the vanity chair on the bench.,meticulously drops his head and drops onto the floor.,0\n12215,lsmdc3020_DEAR_JOHN-9557,16183,\"Later, we watch through a doorway, as father and son eat at the dining room table. Someone\",\"Later, we watch through a doorway, as father and son eat at the dining room table.\",Someone,gold,\"watches her tick up to show her looks as if she is sick, quite alone, etc.\",in a wooden cafe hurries across a punching bag as he escorts his toiletries to a stage.,watches proudly as she vacantly rides past.,\"gazes off as he chews, then looks down at his plate.\",3\n12216,lsmdc3020_DEAR_JOHN-9557,16185,His father picks at his food. Someone,His father picks at his food.,Someone,gold,watches him with a concerned expression.,sits to watch the contestants.,walks on to the dance floor.,pretends to be asleep with his eyes closed.,0\n12217,lsmdc3020_DEAR_JOHN-9557,16175,Someone shuffles into the dining room. His father,Someone shuffles into the dining room.,His father,gold,\"closes the oven door, crosses to an island counter and watches him.\",keeps her gaze fixed on a woman in a cricket cage.,gives him a towel.,goes to wipe her robe but collapses on her bed.,0\n12218,lsmdc3020_DEAR_JOHN-9557,16172,\"Now an oven door opens, revealing two pans of lasagna. A pair of hands and oven mitts\",\"Now an oven door opens, revealing two pans of lasagna.\",A pair of hands and oven mitts,gold,shows a toaster attached to the ceiling.,take them out and sets them on a stove.,sit around a table.,\"are next, hauling food up a pot.\",1\n12219,lsmdc3020_DEAR_JOHN-9557,16171,\"Someone nods, and steps away. Now an oven door\",\"Someone nods, and steps away.\",Now an oven door,gold,shows the young woman standing in a short booth.,flies open as someone waves at him.,opens into a large bewildered entryway and clatters.,\"opens, revealing two pans of lasagna.\",3\n12220,lsmdc3020_DEAR_JOHN-9557,16178,\"Taking it into the kitchen, he sets the plate, place mat and glass on the island. His father\",\"Taking it into the kitchen, he sets the plate, place mat and glass on the island.\",His father,gold,drops a glass into the pantry counter's empty linen refrigerator.,looks on as he starts to put the silverware away.,\"hangs his head and takes some paste, then eyes someone sweep her empty clothes.\",\"staggers idle, then ducks down by the dressing table and takes a bite.\",1\n12221,lsmdc3020_DEAR_JOHN-9557,16188,\"He turns, facing a window. Someone\",\"He turns, facing a window.\",Someone,gold,follows his gaze to find someone's car pulling up outside.,looks down and sees.,works her jaw to face him.,makes his way down the street into the busy living area and people arrive behind him.,0\n12222,lsmdc3020_DEAR_JOHN-9557,16187,\"With a melancholy stare, someone scoops a large fork full of lasagna into his mouth and chews. He\",\"With a melancholy stare, someone scoops a large fork full of lasagna into his mouth and chews.\",He,gold,drinks from a bloody bottle of wine.,\"runs over to a open window, which shatters.\",\"turns, facing a window.\",lumbers down his steps.,2\n12223,lsmdc3020_DEAR_JOHN-9557,16184,\"Someone gazes off as he chews, then looks down at his plate. His father\",\"Someone gazes off as he chews, then looks down at his plate.\",His father,gold,looks up from his book.,gives her a perplexed smile.,picks at his food.,spots the plate in the garden outside.,2\n12224,lsmdc3020_DEAR_JOHN-9557,16176,\"His father closes the oven door, crosses to an island counter and watches him. The young man\",\"His father closes the oven door, crosses to an island counter and watches him.\",The young man,gold,follows someone to the front of the restaurant and props a cigar on his lap.,pushes past a penguin.,lowers his glasses and looks at the car.,clears one of three place settings from the dining room table.,3\n12225,lsmdc3020_DEAR_JOHN-9557,16179,His father looks on as he starts to put the silverware away. Someone,His father looks on as he starts to put the silverware away.,Someone,gold,puts the sandwich in the toilet and climbs into slips out of frame.,puts the silverware back down.,pushes himself up the battered preacher.,follows him as he strides out waves.,1\n12226,lsmdc3020_DEAR_JOHN-9557,16177,\"The young man clears one of three place settings from the dining room table. Taking it into the kitchen, he\",The young man clears one of three place settings from the dining room table.,\"Taking it into the kitchen, he\",gold,\"sets the plate, place mat and glass on the island.\",goes to the table and picks up a light rising from the top of the milk.,\"shakes it again, then stands and reaches for a stack of bills.\",\"finds it stocked with milk, and pulls out the dead drawer.\",0\n12227,lsmdc3020_DEAR_JOHN-9557,16182,\"He picks up the plate in both hands. Later, we\",He picks up the plate in both hands.,\"Later, we\",gold,walk into a vanishing truck.,\"take back the bag, opens the room.\",\"watch through a doorway, as father and son eat at the dining room table.\",wander through someone's loft as someone goes up the stairs and goes upstairs.,2\n12228,lsmdc3020_DEAR_JOHN-9557,16189,\"Standing, he leaves the table. He\",\"Standing, he leaves the table.\",He,gold,points to the owners with hanky.,goes back to his shirt and takes her hand.,goes outside and jogs down off the porch.,sets the knife by the campfire and takes a stuffed bite.,2\n12229,lsmdc3020_DEAR_JOHN-9557,16180,\"Someone puts the silverware back down. As he steps away, someone methodically\",Someone puts the silverware back down.,\"As he steps away, someone methodically\",gold,creeps out from another glamorous boy dress.,\"hostility his shoelace with brown oversized gloves, then lifts his arms in a shrug.\",tugs at the back of his neck.,sets the silverware aside.,3\n12230,lsmdc3020_DEAR_JOHN-9557,16186,\"Someone watches him with a concerned expression. With a melancholy stare, someone\",Someone watches him with a concerned expression.,\"With a melancholy stare, someone\",gold,munches his breakfast and follows someone down the street.,scoops a large fork full of lasagna into his mouth and chews.,notices back at him as he walks away.,squirms slightly toward her.,1\n12231,lsmdc3020_DEAR_JOHN-9557,16173,A pair of hands and oven mitts take them out and sets them on a stove. Someone,A pair of hands and oven mitts take them out and sets them on a stove.,Someone,gold,wanders into the kitchen.,\"bites the sandwich, turns, and carries him out.\",puts with a knife in an oven.,wins and takes big gulps of water.,0\n12232,lsmdc3020_DEAR_JOHN-9557,16190,\"He goes outside and jogs down off the porch. Getting out of her car, someone\",He goes outside and jogs down off the porch.,\"Getting out of her car, someone\",gold,drives off with someone and someone.,spots the suv as he races away.,follows someone out weaving the rainy traffic.,faces him with an affectionate smirk.,3\n12233,lsmdc3020_DEAR_JOHN-9557,16170,Someone meets the kind man who hands him the paper with a pen. Someone,Someone meets the kind man who hands him the paper with a pen.,Someone,gold,\"stares at him, concerned.\",looks over his shoulder and sees someone who had been shot.,\"nods, and steps away.\",opens the cottage and slides the foot down the stairs.,2\n12234,lsmdc3020_DEAR_JOHN-9557,16174,Someone wanders into the kitchen. Someone,Someone wanders into the kitchen.,Someone,gold,grabs a dollop and cuts someone off.,locks the table for her at the kitchen.,passes a sign featuring someone.,shuffles into the dining room.,3\n12235,lsmdc3020_DEAR_JOHN-9557,16169,Someone fishes a scrap of paper from the trash bin. Someone,Someone fishes a scrap of paper from the trash bin.,Someone,gold,opens a cabinet and fills a bottle of whiskey.,meets the kind man who hands him the paper with a pen.,puts in his ash bag and holds the ball on his shoulder.,sees a pill in the glass.,1\n12236,anetv_xqzsv8VpaNM,18316,A woman on a sail boat is coursing through the lake. the man then,A woman on a sail boat is coursing through the lake.,the man then,gold,fills a large round and the water pours on.,wipes the boat with his sail.,returns to talk to the camera.,uses the sail washing while sitting on board on a boat.,2\n12237,anetv_xqzsv8VpaNM,10256,Directions explain the wind functions. The man,Directions explain the wind functions.,The man,gold,is picking up a large blanket from the side and smoothing it hard placed while finishing it.,is seen speaking again before disappearing.,talks about music for a microphone.,proceeds to clip the person with a bigger stick.,1\n12238,anetv_xqzsv8VpaNM,10255,He is sailing on a boat in the water. Directions,He is sailing on a boat in the water.,Directions,gold,is in the large lake of the rafters.,are at the rapids speed of the river.,explain the wind functions.,see a man on fish.,2\n12239,anetv_td15Nx9J0a4,6648,The referee calls a penalty on him for touching the ground and the man gets very upset and is protesting. There,The referee calls a penalty on him for touching the ground and the man gets very upset and is protesting.,There,gold,are again as who were waiting.,are cheering and gesturing wildly for him to cut out.,is a replay shown.,is a man on a screen at the march.,2\n12240,anetv_td15Nx9J0a4,6649,There is a replay shown. The man,There is a replay shown.,The man,gold,\"is running down the track, then still hitting riding a swing.\",points to work the bike pedal is performed.,walks around afterwards upset and picks up a towel pacing around afterwards.,stops playing with a towel and starts to get in.,2\n12241,anetv_td15Nx9J0a4,2883,He then points to himself and the crowd looking confused and finally his score being shown. He,He then points to himself and the crowd looking confused and finally his score being shown.,He,gold,hits the ground angrily and then walks away still speaking to the coaches and pointing to the ground.,stands up and scores and his opponent cheer.,climbs back and finishes some speed.,is shown skating in some water as well as several soccer players.,0\n12242,anetv_td15Nx9J0a4,2882,An athletic man is seen standing ready holding a shot put and then throws the ball off into the distance. He then,An athletic man is seen standing ready holding a shot put and then throws the ball off into the distance.,He then,gold,moves it back and down to the tree while others watch on the sidelines.,continues doing down the alley and ends with him running into the field.,spins around a capture while holding tennis rackets and hands him more weights.,points to himself and the crowd looking confused and finally his score being shown.,3\n12243,anetv_T4ZeB_TvS68,6379,An elderly man is standing inside a casino. He,An elderly man is standing inside a casino.,He,gold,is holding a spoon of food to one another.,is demonstrating how to make looks of a parked bike.,is using an iron to tai keys on the floor.,talks about the decks and the way they are dealt.,3\n12244,anetv_T4ZeB_TvS68,6380,He talks about the decks and the way they are dealt. A female dealer,He talks about the decks and the way they are dealt.,A female dealer,gold,is shown skating down a field in sand.,is given money and a bowling plate talks to the man.,is standing next to him as he gives the demonstration.,\"is shown followed by his coaches, then grilling and high kicks in a large grassy field.\",2\n12245,anetv_T4ZeB_TvS68,15709,A female dealer waits patiently beside him. He,A female dealer waits patiently beside him.,He,gold,checks his phone with a grateful smile.,shows how to deal the hands during the game.,\"grabs a glass of wine, takes up a bottle of petrol, and walks into the apartment.\",\"looks indifferent as he tips his hat to on, looking up at the police car screen.\",1\n12246,anetv_hfk93bEIjwc,18110,\"Some people are rafting on the river, paddling along with the currents. They\",\"Some people are rafting on the river, paddling along with the currents.\",They,gold,\"follow several small waterfalls, trying to stay upright.\",start to fall into place and go back to their raft.,are riding themselves through the water as they go.,wave at the side and begin to relax with all their might.,0\n12247,anetv_hfk93bEIjwc,18109,A raft is seen parked alongside a river. Some people,A raft is seen parked alongside a river.,Some people,gold,paddle out and waves at the boat in the water.,\"are rafting on the river, paddling along with the currents.\",are sailing in the water next to water.,are seen riding down the river while others gather around them.,1\n12248,anetv_hfk93bEIjwc,2661,Several people are on a raft in the water. They,Several people are on a raft in the water.,They,gold,use more rocks to recover.,go back and forth after the people.,are people on rafts rafting down the water.,pass by many rocks.,3\n12249,anetv_w3N0Pyz2-m0,5227,A woman plays the violin in various outdoors settings. The woman,A woman plays the violin in various outdoors settings.,The woman,gold,begins to play the flute.,\"talks to someone off camera while seated indoors, interspersed with dramatic cuts of the woman playing the violin in outdoor environments.\",perform wearing a red colored sweater while speaking to the band.,shows many in fencing outfits while pulling the instrument.,1\n12250,anetv_w3N0Pyz2-m0,184,We see a lady playing a violin. We,We see a lady playing a violin.,We,gold,see the lady pick up a violin and pose it from a return.,then see a woman playing hopscotch.,are listening to the person with their trophy.,see a lady taking in a brick room and playing the violin outside.,3\n12251,anetv_w3N0Pyz2-m0,187,We see the lady playing in front of fire. W,We see the lady playing in front of fire.,W,gold,lady snatches the ball from the hands.,see the ending title and video clips.,moves now on the sidewalk.,look across the cabinet from the camera.,1\n12252,anetv_w3N0Pyz2-m0,183,We see a dark title screen. We,We see a dark title screen.,We,gold,see a lady sitting in front of an open sink.,see a player holding a large ball in the air.,see a lady in the mop head.,see a lady playing a violin.,3\n12253,anetv_p3PEMCN4h_g,11355,A large group of people appear at the starting point and being running through various different scenery's while many people are cheering them on. The people are now starting to approach the finish line and some,A large group of people appear at the starting point and being running through various different scenery's while many people are cheering them on.,The people are now starting to approach the finish line and some,gold,are crossing the waves together when they are underwater and performing different tricks along either side of them.,kids riding her down the field.,fall off of the bar while the men walk away.,have ribbons placed around their neck.,3\n12254,anetv_p3PEMCN4h_g,13050,A close up of a person running is shown in a public place. More people,A close up of a person running is shown in a public place.,More people,gold,are seen riding in a boat with horses in teh cheers still in sunscreen.,are in fencing gear and instructs them.,are seen sitting down on the steps.,are seen running down a track while several watch on the side.,3\n12255,anetv_p3PEMCN4h_g,11354,\"A lot of people appear in a large area, hanging out, walking and talking and the words on the screen say omaha Marathon Inaugural hits Running Festival. A large group of people\",\"A lot of people appear in a large area, hanging out, walking and talking and the words on the screen say omaha Marathon Inaugural hits Running Festival.\",A large group of people,gold,are shown at the bottom on a diving board and a plane falls between the rapids.,are seen skiing and their bumper cars ride down of snowy hill.,appear at the starting point and being running through various different scenery's while many people are cheering them on.,\"are crashing, one of the individuals waits and the ball breaks and starts going back up.\",2\n12256,anetv_p3PEMCN4h_g,13049,A group of people are seen wandering around as well as a man speaking to the camera. A close up of a person running,A group of people are seen wandering around as well as a man speaking to the camera.,A close up of a person running,gold,is shown in a public place.,is seen motion leads by people throwing the ball and crashing into each other.,is shown followed by a person crashing down onto a board in the middle.,is shown followed by many pictures of people riding around in them.,0\n12257,anetv_p3PEMCN4h_g,11356,The people are now starting to approach the finish line and some have ribbons placed around their neck. The outro screen appears and it,The people are now starting to approach the finish line and some have ribbons placed around their neck.,The outro screen appears and it,gold,and the website are passing next to a white screen with the name and website.,\"includes with pictures of the person, three fifty, some very old, including red can and a military top and shown that the\",'s shown to different clips of trees just above the food area where waterfalls are selling with a lemon.,includes the logo along with the twitter handles and facebook contact information.,3\n12258,lsmdc1055_Marley_and_me-96497,15276,\"On the pavement, the people 'bin is surrounded by chewed empty boxes of baby equipment. Someone, accompanied by Marley,\",\"On the pavement, the people 'bin is surrounded by chewed empty boxes of baby equipment.\",\"Someone, accompanied by Marley,\",gold,is lying on top of one of the dead trees.,comes out of the house with another bin bag as the bin men arrive.,brings back from someone.,is sitting down by a couch with just a blanket on.,1\n12259,lsmdc1055_Marley_and_me-96497,15275,\"Marley offers up a welcoming paw. On the pavement, the people 'bin\",Marley offers up a welcoming paw.,\"On the pavement, the people 'bin\",gold,'s with alter and other restaurant knob.,can be seen with a friendly welcome.,is surrounded by chewed empty boxes of baby equipment.,lowers its side door and catch him.,2\n12260,lsmdc1055_Marley_and_me-96497,15273,Marley jumps up at the table with the baby on it. Someone,Marley jumps up at the table with the baby on it.,Someone,gold,gets marley to sit as someone lifts the baby out of the carrier.,is throwing a ball in the balls and hitting the ball walks around to the kids hit it once more.,\"gets into his dusty apartment, munching a sandwich.\",climbs back onto the bed then stands.,0\n12261,lsmdc1055_Marley_and_me-96497,15284,\"From the driver's seat, someone looks up and through a window, sees someone cuddling someone and singing to him. She\",\"From the driver's seat, someone looks up and through a window, sees someone cuddling someone and singing to him.\",She,gold,sits down and shakes the trip off.,\"see someone's face and shirt with the back of his head, leaving only his right fist, and clutching his platinum wig.\",\"notices the car, shows someone, and waves to her husband, who waves back with a smile.\",hikes around dirt and intervals across a neighborhood street.,2\n12262,lsmdc1055_Marley_and_me-96497,15282,\"In the evening, someone and Marley drive up to the house with the headlights on. Marley's\",\"In the evening, someone and Marley drive up to the house with the headlights on.\",Marley's,gold,hands comes into view and slides off her car.,posted in the ambulance.,looking out of the rear passenger window.,crossed back on his pants as he approaches the front door.,2\n12263,lsmdc1055_Marley_and_me-96497,15279,The big dog sits calmly and watches as a young couple kiss and cuddle on the sand. He,The big dog sits calmly and watches as a young couple kiss and cuddle on the sand.,He,gold,faces him briefly as someone leafs in.,notices the dog watching the young couple.,\", the man dives on the water and makes a play.\",looks down and notices a couple in her getting a package of popcorn from a convertible van.,1\n12264,lsmdc1055_Marley_and_me-96497,15281,\"He wistfully chews a toothpick as Marley lies down on the sand. In the evening, someone and Marley\",He wistfully chews a toothpick as Marley lies down on the sand.,\"In the evening, someone and Marley\",gold,swim all around the diner.,join a band at the center of a business procession where couples are watching.,drive up to the house with the headlights on.,leave on each of their seats.,2\n12265,lsmdc1055_Marley_and_me-96497,15274,Someone gets Marley to sit as someone lifts the baby out of the carrier. Marley,Someone gets Marley to sit as someone lifts the baby out of the carrier.,Marley,gold,accepts the ford operator and throws a bicycle around.,\"slows to a stop, his body convulsing.\",offers up a welcoming paw.,'re sit in the foyer.,2\n12266,lsmdc1055_Marley_and_me-96497,15280,He notices the dog watching the young couple. He,He notices the dog watching the young couple.,He,gold,breaks fling the dog and admires her skirt and sneers.,bumps into a bell.,wistfully chews a toothpick as marley lies down on the sand.,puts by the door light.,2\n12267,lsmdc1055_Marley_and_me-96497,15278,Someone sits with Marley under a palm tree. The big dog,Someone sits with Marley under a palm tree.,The big dog,gold,sits calmly and watches as a young couple kiss and cuddle on the sand.,sits alone in the hall.,holds into a couple of pie.,smiles and shows him his tooth cane.,0\n12268,lsmdc1055_Marley_and_me-96497,15283,\"Marley's looking out of the rear passenger window. From the driver's seat, someone\",Marley's looking out of the rear passenger window.,\"From the driver's seat, someone\",gold,\"pulls a blanket over the frame, exposing the partly open door.\",\"'s face is pressed to a bottle, still looking at someone, who now drives him in the snow.\",stops down and sits upright.,\"looks up and through a window, sees someone cuddling someone and singing to him.\",3\n12269,lsmdc0043_Thelma_and_Luise-68129,119,\"Reveal someone, standing in front of a closet, trying to decide what else to bring, as if she is forgotten something. The room\",\"Reveal someone, standing in front of a closet, trying to decide what else to bring, as if she is forgotten something.\",The room,gold,is very hewn with cages.,looks like it was decorated entirely from a sears catalog.,\"is removed, though she is changed, but now wearing the same black dress.\",has been completely trashed.,1\n12270,lsmdc0043_Thelma_and_Luise-68129,121,She is debating whether to take an extra pair of socks. She,She is debating whether to take an extra pair of socks.,She,gold,decides not to and closes the suitcase.,\"places them on the ground, moving the reptile off their backs.\",is slipping over the dresser and starts to pick himself up.,pets her date to go after james affection.,0\n12271,lsmdc0043_Thelma_and_Luise-68129,122,She decides not to and closes the suitcase. She,She decides not to and closes the suitcase.,She,gold,\"goes to the phone, picks it up and dials.\",\"stares quietly out of sight, then turns back to him.\",peeks over and points it at someone.,opens her suitcase and rings out.,0\n12272,lsmdc0043_Thelma_and_Luise-68129,120,She could be packing for camp. Her room,She could be packing for camp.,Her room,gold,is pretty music as well as they were playing.,is covered with rain.,is filled with people in the living room.,is as orderly as the suitcase.,3\n12273,anetv_IrTqW6Qn8mI,7938,A person is blowing leaves with a leaf blower. They,A person is blowing leaves with a leaf blower.,They,gold,see her leg wrapped in.,\"step to the grass and a bag falls from all the members, then, someone starts to blow out the leaves.\",continue blowing the leaves across the yard.,are going in green grass and people begin to gather around the plants.,2\n12274,anetv_IrTqW6Qn8mI,7937,A close up is shown of leaves being blown. A person,A close up is shown of leaves being blown.,A person,gold,is seen shoveling her leaves.,is blowing leaves with a leaf blower.,carves along the ground to catch type.,rides in a tube and gets further in and is able to get it done.,1\n12275,anetv_r3dM-5cZ7e8,11426,A group of swimmers stand ready on a platform and bend down to their feet. Several men,A group of swimmers stand ready on a platform and bend down to their feet.,Several men,gold,crash as them spinning around and dives onto the ground.,are also performing martial arts in a gymnasium with others as well as varied things.,stand behind them when they all jump in at the same time.,are then seen sitting in the water holding weights.,2\n12276,anetv_r3dM-5cZ7e8,11427,Several men stand behind them when they all jump in at the same time. The men,Several men stand behind them when they all jump in at the same time.,The men,gold,run on the platform and push metal with toe move.,take pictures while others stand and stands at the end.,race back and fourth doing a butterfly movement back and fourth until they all reach the end.,continue to advance and on the pole they begin to jump back and forth as they jump.,2\n12277,lsmdc0032_The_Princess_Bride-66587,3719,And his smile is enough. As The Grandfather,And his smile is enough.,As The Grandfather,gold,steps out the door.,throws the door just another door opens.,reaches a corner they find someone talking to a dorm wearing surgical camp caps.,faces someone who stomps off.,0\n12278,anetv_WMx0-3GZGUI,7304,The girl then removes what she made from the oven. A younger boy,The girl then removes what she made from the oven.,A younger boy,gold,dismounts from a beam and runs into the indoor sidelines and does a cartwheel and spins repeatedly.,in red and pink form join him at the bottom of the slide.,watches while eating a cupcake.,is next to beating a thanksgiving shaped cake when they talk.,2\n12279,anetv_WMx0-3GZGUI,7303,The girl puts her mixture into the pans and puts them in an easy bake oven. The girl then,The girl puts her mixture into the pans and puts them in an easy bake oven.,The girl then,gold,bites the bread and pulls her out of the water looking.,shows how to bake the salad and put the bake in a bowl.,\"takes a pan around cake, incinerating it.\",removes what she made from the oven.,3\n12280,anetv_WMx0-3GZGUI,7302,An adult helps the girl spray her baking pans. The girl,An adult helps the girl spray her baking pans.,The girl,gold,\"paints the blue clear, and rubs on her belly.\",begins to shave her legs.,puts her mixture into the pans and puts them in an easy bake oven.,opens the bathroom door and talks.,2\n12281,anetv_WMx0-3GZGUI,7301,The girl mixes several things from small bowls in a bigger bowl. An adult,The girl mixes several things from small bowls in a bigger bowl.,An adult,gold,grabs her ground hand and crosses herself to the camera.,helps the girl spray her baking pans.,pulls up ingredients on a cookie sheet.,whisks the cup off the floor.,1\n12282,anetv_WMx0-3GZGUI,7300,A little girl is in a kitchen talking. The girl,A little girl is in a kitchen talking.,The girl,gold,almost takes the ball.,swings and swings at the pinata.,mixes several things from small bowls in a bigger bowl.,is on skis in the kitchen.,2\n12283,anetv_WMx0-3GZGUI,7305,A younger boy watches while eating a cupcake. The young girls,A younger boy watches while eating a cupcake.,The young girls,gold,pretend to go over a bowl of biscuits and fall to the top.,consider each other and play with someone in front of the bar.,cuts the desert she made and eats it.,stare expectantly at each other then strolls across the living room.,2\n12284,anetv_u2329Chp6IY,16085,\"A room is shown with a small rink and a bunch of adults going around in a small oval in bumper cars. Since they are in a small area, they\",A room is shown with a small rink and a bunch of adults going around in a small oval in bumper cars.,\"Since they are in a small area, they\",gold,get off their bikes and tumble and begin clipping their legs across the dirt.,get congested and start hitting each other and spinning in a circle.,walk back a little to watch the school of exercise in the next room.,begin to fight each other and a man cheers.,1\n12285,anetv_u2329Chp6IY,10877,They begin bumping into each other. A green car,They begin bumping into each other.,A green car,gold,passes on the end.,is driven in a skate park.,\"is driving behind the cars, looking around the metal sign.\",spins around and hits a gray car.,3\n12286,anetv_u2329Chp6IY,10876,People are riding around in bumper cars. They,People are riding around in bumper cars.,They,gold,appear in front of a computer.,begin bumping into each other.,are being interviewed on sidewalk.,is embarrassed in a market.,1\n12287,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9769,10756,Someone touches it with his wand. Writing,Someone touches it with his wand.,Writing,gold,\"shows him sword blade, blade on the chain.\",\", someone fetches the flame and finds it to the kitchen floor, revealing someone who runs to someone again.\",\"comes down flat, before him, on the ground, and reaches to grab someone's arm once again.\",appears on the parchment.,3\n12288,lsmdc0030_The_Hustler-64513,8133,\"He downs his bourbon, weaves a bit, bends over the table, and awkwardly pokes at the white cue ball with his stick, missing an easy shot. Several more townspeople\",\"He downs his bourbon, weaves a bit, bends over the table, and awkwardly pokes at the white cue ball with his stick, missing an easy shot.\",Several more townspeople,gold,have come in from the street and are following the play.,\"drop his gun in a slug, then swoop between the two back then seizes it in half.\",\"are shown in the trashed, hitting it in neat si.\",join the boys running out of the empty town.,0\n12289,lsmdc0030_The_Hustler-64513,8135,The bartender refills the glasses as soon as they are emptied. Two balls,The bartender refills the glasses as soon as they are emptied.,Two balls,gold,fly back and forth as the septum lawrence trainer gets out.,lay side by side on the table.,drain together at the end.,come out of the elevator doorways.,1\n12290,lsmdc0030_The_Hustler-64513,8138,\"But someone pats the corner pocket confidently, leans over, and raps out his shot. He\",\"But someone pats the corner pocket confidently, leans over, and raps out his shot.\",He,gold,pounds his pal someone on the shoulder and collapses into a nearby chair.,is still drilling into him.,opens the middle of an ornate ladder and opens it.,\"stops, closes the window and sighs.\",0\n12291,lsmdc0030_The_Hustler-64513,8137,Some of the onlookers seem skeptical. But someone,Some of the onlookers seem skeptical.,But someone,gold,is strapped to his back.,\"pats the corner pocket confidently, leans over, and raps out his shot.\",attention is now returned to a listening barbecue.,\", jumping down, screams at a group of two men in the huddle.\",1\n12292,lsmdc0030_The_Hustler-64513,8132,The game is in mid - progress. It,The game is in mid - progress.,It,gold,is.,team performs very conga and a yellow helmet with metal mallets and yellow polo.,makes his progress to the center of a pond to make the record.,'s someone's shot.,3\n12293,lsmdc0030_The_Hustler-64513,8134,Several more townspeople have come in from the street and are following the play. The bartender,Several more townspeople have come in from the street and are following the play.,The bartender,gold,gets two drinks from his cup.,refills the glasses as soon as they are emptied.,makes a joke and tugs it out of his mouth.,takes a drink and pours oil into one glass of dr.,1\n12294,lsmdc0030_The_Hustler-64513,8136,Two balls lay side by side on the table. Someone,Two balls lay side by side on the table.,Someone,gold,throw them and hit the ball.,\"peers at them, trying to figure his shot, blinking his eyes to focus better.\",scoots over to someone next to her.,peers at them with a shabby ring.,1\n12295,lsmdc0030_The_Hustler-64513,8131,Someone rises from his barstool. Someone,Someone rises from his barstool.,Someone,gold,is already at the table.,reaches for the car door.,is being fired in anger as he lies beside the stage.,watches over her wounded head.,0\n12296,lsmdc0010_Frau_Ohne_Gewissen-51451,19178,He turns back to people. People,He turns back to people.,People,gold,\"walks to a table, sitting under pebbles, practicing, and backtracks.\",start to get up.,come out to meet him.,come along as someone walks past a tall stone.,1\n12297,lsmdc0010_Frau_Ohne_Gewissen-51451,19185,He turns a little towards someone. Someone,He turns a little towards someone.,Someone,gold,\", a good - humored, someone, looks away with her mouth open, letting go of his neck.\",notices that someone finds security in the warmly lit room.,has placed a chair.,reaches over sister's hand.,2\n12298,lsmdc0010_Frau_Ohne_Gewissen-51451,19182,\"She wears a gray tailored suit, small black hat with a veil, black gloves, and carries a black bag. The secretary\",\"She wears a gray tailored suit, small black hat with a veil, black gloves, and carries a black bag.\",The secretary,gold,closes the door behind her.,hands the money to someone.,sits up and looks at it.,\"picks up her hands, reaches him to change the dummy string, then bends down.\",0\n12299,lsmdc0010_Frau_Ohne_Gewissen-51451,19183,The secretary closes the door behind her. Someone,The secretary closes the door behind her.,Someone,gold,stands watching him go.,\"runs over to the open door, but does n't budge.\",heads toward one of the trucks.,goes to meet her.,3\n12300,lsmdc0010_Frau_Ohne_Gewissen-51451,19179,People start to get up. The secretary,People start to get up.,The secretary,gold,suddenly gets out of bed and immediately reacts to the noise.,has opened the door.,is walking down a corridor on which the chaos celebrate the ship's performance.,\"turns away, cranes in toward the crowd, and snatches money.\",1\n12301,lsmdc0010_Frau_Ohne_Gewissen-51451,19180,The secretary has opened the door. Someone,The secretary has opened the door.,Someone,gold,finds a pillow on a closet.,stands staring at the door.,turns around and frowns into the floor.,opens the passenger door and enters.,1\n12302,lsmdc0010_Frau_Ohne_Gewissen-51451,19181,Someone stands staring at the door. He,Someone stands staring at the door.,He,gold,pulls out a magic card and takes his dress off.,relaxes with an obvious effort of will.,steps inside and takes the aston.,looks down and sees a large house baled with chandeliers hanging from the frame.,1\n12303,anetv_UCndppz9rWc,15028,Kid is standing in the field watching the man with the lawnmower. man,Kid is standing in the field watching the man with the lawnmower.,man,gold,is sitting back behind the rope swinging an arrow and kick the ball all around the field while holding a green flag.,is in the gym talking while sitting in a chair.,is holding a score stick and falls to a yellow rock.,stands and extends the hand to hold the kid.,3\n12304,anetv_UCndppz9rWc,15027,Manis wearing a white shirt and is walking in a green grass carrying a lawnmower. kid,Manis wearing a white shirt and is walking in a green grass carrying a lawnmower.,kid,gold,is brushing the dog next to a tree in a field.,is standing in the field watching the man with the lawnmower.,is walking in a snowy path doing high jump.,is standing up in a barn next to a horse how to do it.,1\n12305,anetv_5Owjrx-YjjM,8760,\"After he's done completing the kite, they go out in the open to fly the kite. The father\",\"After he's done completing the kite, they go out in the open to fly the kite.\",The father,gold,continues again with more difficulty trying to get a new target.,is holding the kite in his hand as the wind blows strongly.,smiles as a school of dog lights don't go off.,is amazed with the propellers.,1\n12306,anetv_5Owjrx-YjjM,8761,The father is holding the kite in his hand as the wind blows strongly. The girl,The father is holding the kite in his hand as the wind blows strongly.,The girl,gold,and someone are seen unable to stand in her left side.,\"walks in front of a ski board, surfing storm clouds.\",walks past the body and sees her baby lying still.,holds the string of the kite and begins flying the kite high up in the air.,3\n12307,anetv_5Owjrx-YjjM,8759,\"A little girl is sitting on the porch floor with her dad as he puts together a blue butterfly kite for her. After he's done completing the kite, they\",A little girl is sitting on the porch floor with her dad as he puts together a blue butterfly kite for her.,\"After he's done completing the kite, they\",gold,announce different aglow and kiss more often in their kitchen while she continues.,go out in the open to fly the kite.,begin to pick them up that gets stuck into place.,go inside and sweep his yard.,1\n12308,anetv_bTE3HEy_kVk,16313,We then see images of one roof. We,We then see images of one roof.,We,gold,see the roof up close and see moss growing on it.,see giving animation pause and after a repeat.,see the opening opening screen.,see the title vehicle one lot.,0\n12309,anetv_bTE3HEy_kVk,16312,We see two roof images side by side. We then,We see two roof images side by side.,We then,gold,see a welding tool on a handle.,see riding dirt bikes in a gym.,see images of one roof.,see a man on karate moves.,2\n12310,anetv_bTE3HEy_kVk,16316,We see the finished new roof. We,We see the finished new roof.,We,gold,orbit the plastic pieces.,man and man walk on outside start by doing many bicycles on the buildings.,see the ending screen credits.,lay in and see the carved finished pumpkin showing the shaver.,2\n12311,anetv_bTE3HEy_kVk,16314,We see the insulation and the roof as it is being installed. A man,We see the insulation and the roof as it is being installed.,A man,gold,takes the kettle bell and places it on the ground.,is screwing the roof into place.,goes behind a closet and cleans the wallpaper with a squeegee.,stands before the fire talking to the camera.,1\n12312,anetv_bTE3HEy_kVk,16315,A man is screwing the roof into place. We,A man is screwing the roof into place.,We,gold,are presenting product to a pile of metal in the trunk.,see the finished new roof.,across something behind him as a man is part of the truck.,\"walks from the battle on the rim of the jump mask, high in the air.\",1\n12313,anetv_sGGnEgCnEt8,5912,The athletes eventually wind up stomach down on the floor. The crowd,The athletes eventually wind up stomach down on the floor.,The crowd,gold,starts to race throughout the shop.,cheers and cheer on the waves before getting up and running out.,erupts in cheers as the match ends.,is dancing through the crowded crowd.,2\n12314,anetv_sGGnEgCnEt8,5911,The competitors make all kind of faces as they grimace. The athletes eventually,The competitors make all kind of faces as they grimace.,The athletes eventually,gold,bring out and do stationary.,goes into the exercise class.,wind up stomach down on the floor.,thrust the knife up.,2\n12315,anetv_sGGnEgCnEt8,5910,People are gathered as two men arm wrestle. The competitors,People are gathered as two men arm wrestle.,The competitors,gold,move to win on the last line.,are twirled and lifted and wins.,\"continue throwing pucks, sending balls crashing.\",make all kind of faces as they grimace.,3\n12316,anetv_8OSnT8UvJkU,12853,The person cuts around the sides and the woman is seen wearing glasses and posing with her new style. More shots of a person cutting,The person cuts around the sides and the woman is seen wearing glasses and posing with her new style.,More shots of a person cutting,gold,is shown while the woman speaks to the camera.,nails themselves on squeezing the skin underneath.,skin are shown as well as a pumpkin.,are shown as well as the end logo.,0\n12317,anetv_8OSnT8UvJkU,12852,A woman with a nose ring is seen speaking to the camera and leads into someone cutting her hair. The person cuts around the sides and the woman,A woman with a nose ring is seen speaking to the camera and leads into someone cutting her hair.,The person cuts around the sides and the woman,gold,begins sections her hair and ends by smiling at the camera.,is seen wearing glasses and posing with her new style.,continues speaking to the camera and pushing the leaves on.,laughs as she clips the other shoe instrument and smiling to the camera.,1\n12318,anetv_v9APkG4il4Q,15330,A person is seen walking across a long rope. Several more clips,A person is seen walking across a long rope.,Several more clips,gold,are shown of people surfing away backstage.,are shown of the person walking from various angles.,are shown of people riding and closer to one another.,are shown of people climbing off of the boat.,1\n12319,anetv_v9APkG4il4Q,9288,\"The man walks with a shaky carriage, slowly across a high suspended rope. The man waivers but\",\"The man walks with a shaky carriage, slowly across a high suspended rope.\",The man waivers but,gold,is able to move momentarily to indicate this time.,\"is swiftly moving under the water, to the bottom place.\",makes it to the other side where he celebrates by smiling into the camera.,falls it out to the ground before it ending.,2\n12320,anetv_v9APkG4il4Q,9287,\"A man walks across a rope stretched between two mountain tops high above land, balancing himself with both arms and hands, before making it to the other side of the rope. The man\",\"A man walks across a rope stretched between two mountain tops high above land, balancing himself with both arms and hands, before making it to the other side of the rope.\",The man,gold,moves back and forth across the rock before doing the girl fall and round times.,flips the two back until he holds onto the rope rope and falls backwards to the runway.,lifts around the throws and walks off the boat while doing flips on front of four right as he goes on the hill.,\"walks with a shaky carriage, slowly across a high suspended rope.\",3\n12321,anetv_v9APkG4il4Q,15331,Several more clips are shown of the person walking from various angles. The man,Several more clips are shown of the person walking from various angles.,The man,gold,continue dancing as several people throw the object.,moves his arms around the structure spinning around multiple sides.,walks away toward the camera and then pans back to the camera and passes the clip downhill.,finishes to the other side and smiles to the camera.,3\n12322,anetv_hniQpwn3Ob4,18831,An intro leads into several clips of different athletes performing shotput throws in a circle. More men,An intro leads into several clips of different athletes performing shotput throws in a circle.,More men,gold,continue jumping with one another and ends with several goal dives.,are seen with bulls enjoying the sport.,continue to step up and throw the object while many watch on the sidelines.,perform tricks around another team performing tricks while others watch on the sides.,2\n12323,anetv_5WWvCSCGXmc,15915,A group of dirt bike riders race along a path. They,A group of dirt bike riders race along a path.,They,gold,\"get out of their cars, then start to ride down the hill.\",crawl over the road and wait in the back.,see the snowboards and changing.,are engaged in a bmx dirt bike race.,3\n12324,anetv_5WWvCSCGXmc,15916,They are engaged in a bmx dirt bike race. They,They are engaged in a bmx dirt bike race.,They,gold,begin to use the bikes on these pedals and a house and a garage.,go over hills and around the curves to the finish line.,are engaged in a game of tug of war.,\"flips past each other, then skies and rides across the snow covered driveway while more skateboarders ride away.\",1\n12325,anetv_5WWvCSCGXmc,91,A small group of people are seen riding bikes around a track completing a race with one another. The people,A small group of people are seen riding bikes around a track completing a race with one another.,The people,gold,ride the bikes on the side while pausing to crowd around the table.,continue riding around as others watch and fades to black.,ride around on the track and end by jumping on the ground and jumping into the pit.,continue running down the track and end by jumping down on a mat.,1\n12326,anetv_l-YtPYZ_534,1369,We see tools and tips for croquet. The two men,We see tools and tips for croquet.,The two men,gold,start welding wood and metal together.,talk to the camera inside the casino.,demonstrate how to remove wallpaper from a wall.,argue about the game.,3\n12327,anetv_l-YtPYZ_534,1373,The man has his foot on a red ball. We,The man has his foot on a red ball.,We,gold,\"leave the boat and a man in the black shirt with a red hat grabs the surfboard, then begins to go into the water\",see a man laugh and dance while another is upset.,show the interior of the white car that cleaned the car in the parking lot.,is in the forest across the screen and the man in the blue shirt starts sliding down.,1\n12328,anetv_l-YtPYZ_534,1374,We see a man laugh and dance while another is upset. We,We see a man laugh and dance while another is upset.,We,gold,switch with end credits playing.,see two children sitting on a paved slope.,\"zoom up and closer the camera frame, but does n't follow the man.\",see the ending title screen.,3\n12329,anetv_l-YtPYZ_534,1370,The two men argue about the game. We,The two men argue about the game.,We,gold,few players walk away as the third shows the game.,see the men playing croquet.,\", the play - the players walk.\",are shown on the screens with instruction screen.,1\n12330,anetv_l-YtPYZ_534,1367,We see a white opening screen. We,We see a white opening screen.,We,gold,see a man talking with iron man playing the saxophone with a screen.,see a man putting welding metal on the floor.,see men riding on a track for a race.,see two men sitting then shaking their heads.,3\n12331,anetv_l-YtPYZ_534,1372,We see a diagram on the screen. The man,We see a diagram on the screen.,The man,gold,sits in the darkened room to talk.,has his foot on a red ball.,starts dancing and playing a saxophone hitting us.,plays round a faster spin.,1\n12332,anetv_l-YtPYZ_534,1371,We see the men playing croquet. We,We see the men playing croquet.,We,gold,see the arrows and the board.,see the car with logo tv.,see a diagram on the screen.,see the lady and the man wrestle again.,2\n12333,lsmdc1006_Slumdog_Millionaire-73827,13811,Someone steals the tourists' shoes as they pose for someone. The boys,Someone steals the tourists' shoes as they pose for someone.,The boys,gold,get the jacket and lead it toward the entrance into the library.,run along the toilets as someone sits with the man.,sell the shoes from a store.,hide their distress as someone gallops toward a stable with flames.,2\n12334,lsmdc1006_Slumdog_Millionaire-73827,13816,He shows her a picture of someone in the same spot. Security guards,He shows her a picture of someone in the same spot.,Security guards,gold,push down with their wrinkled writhe in the side.,are shown on the wall at the site.,spot the boys and chase them off.,straighten the fighting soldiers then pick up their supplies for the search.,2\n12335,lsmdc1006_Slumdog_Millionaire-73827,13814,\"By day, someone touts for tourists as a guide as someone counts wads of cash. Someone\",\"By day, someone touts for tourists as a guide as someone counts wads of cash.\",Someone,gold,photographs an asian tourist outside the taj.,skips up - toting her list.,is cutting rigidly before his performance.,'s face clips the company room.,0\n12336,lsmdc1006_Slumdog_Millionaire-73827,13813,\"At night, people sit smoking a hookah pipe and drinking with friends around a campfire. Someone\",\"At night, people sit smoking a hookah pipe and drinking with friends around a campfire.\",Someone,gold,wears fancy leather cowboy boots.,seeming not from all activity.,blows out the sight of more people.,pulls someone away amid the debris.,0\n12337,lsmdc1006_Slumdog_Millionaire-73827,13815,Someone photographs an Asian tourist outside the Taj. He,Someone photographs an Asian tourist outside the Taj.,He,gold,adjusts dirt from the car.,\"is outside on choppers, surveying a desert.\",punches his aide with her feet.,shows her a picture of someone in the same spot.,3\n12338,lsmdc1006_Slumdog_Millionaire-73827,13812,\"The boys sell the shoes from a store. At night, people\",The boys sell the shoes from a store.,\"At night, people\",gold,\"stand peacefully beneath food, each baby enraged, both hands pointed.\",\"are back home out of the theater singing, smiling happily, except someone's is n't the only one there.\",sit smoking a hookah pipe and drinking with friends around a campfire.,are taking pictures of the chemical company.,2\n12339,lsmdc1006_Slumdog_Millionaire-73827,13810,\"Outside the Taj Mahal, someone takes Polaroid photographs of tourists. Someone\",\"Outside the Taj Mahal, someone takes Polaroid photographs of tourists.\",Someone,gold,steals the tourists' shoes as they pose for someone.,aims a red bar.,looks over the sofa at someone who is there.,pulls up and sits on the blonde while she drives out the window.,0\n12340,anetv_FRJLhGFpCGE,1472,Pictures are shown of people running. A person,Pictures are shown of people running.,A person,gold,runs and jumps into a pit.,\"is seen playing her violin, holding a frisbee.\",is seen standing before a game of kickball.,is running down a trail.,3\n12341,anetv_FRJLhGFpCGE,1473,A person is running down a trail. X - rays,A person is running down a trail.,X - rays,gold,are shown in the snow.,are shown onto the screen.,are shown on the screen.,blow the windows and shown with boats that are nearby.,2\n12342,anetv_FRJLhGFpCGE,1474,X - rays are shown on the screen. A person's feet is shown and they,X - rays are shown on the screen.,A person's feet is shown and they,gold,are tapping their feet on the carpet.,continue playing ping pong.,are polishing large dried utensils as they appear to inserted on the tier of the dog.,are cleaned off their feet.,0\n12343,anetv_FRJLhGFpCGE,1220,Still and clips of a man running marathons are shown with overlaid graphics showing angles. Strides used during a marathon,Still and clips of a man running marathons are shown with overlaid graphics showing angles.,Strides used during a marathon,gold,are shown spraying power whatever is now in slow motion.,\"are shown quickly spanning the city, running very fast.\",are shown and illustrated.,appears and displays several different angles giving the logos before laying down the same croquet table.,2\n12344,anetv_FRJLhGFpCGE,1219,The words Dathan Ritzenhein nyc Marathon 2010 appear on a black screen. Still and clips of a man running marathons,The words Dathan Ritzenhein nyc Marathon 2010 appear on a black screen.,Still and clips of a man running marathons,gold,are shown with overlaid graphics showing angles.,made in the same setting where many have the people bulls and cheering a cup of soccer.,and white flips into a messes.,howcast followed by a cheer agents approaching behind.,0\n12345,lsmdc3035_INSIDE_MAN-2199,15054,\"Someone and the lanky robber take shallow breaths. Now, in a police station conference room, someone\",Someone and the lanky robber take shallow breaths.,\"Now, in a police station conference room, someone\",gold,sits at the long table.,\"drives across a sprawling hotel, unaware of a running pickup parked beside another car.\",sits on the main bus at the back of the jury.,sits at his bedside desk.,0\n12346,anetv_0dgmG3h9RLA,3956,A man and two boys watching from a far. The camera,A man and two boys watching from a far.,The camera,gold,pans to the man on the platforms back and fourth.,shoots areas all around the park while the bagpipes play.,cuts into a still view of the camera.,pushes up behind him as he kneels on top.,1\n12347,anetv_0dgmG3h9RLA,3955,A person is playing bagpipes out in a park. A man and two boys,A person is playing bagpipes out in a park.,A man and two boys,gold,walk in the street playing polo.,watching from a far.,walk alongside a house and drive back in.,are standing in front of each other.,1\n12348,anetv_uID_HFDKFKw,6262,A large group of people are seen standing around a lawn while one jumps into a water pit and the others throw a ball around. More people,A large group of people are seen standing around a lawn while one jumps into a water pit and the others throw a ball around.,More people,gold,slide around in the water while some stand around and others kick and chase a ball.,are shown taking pictures of people playing soccer from one another while people walking around the ball.,are seen running and running around one another while running down the track.,walk on side as the camera captures their perspective and ends with people walking and flipping them in there.,0\n12349,anetv_uID_HFDKFKw,123,A large group of people are gathered on a field. They,A large group of people are gathered on a field.,They,gold,are running and kicking balls back and forth.,are playing a game of cheerleading on the sand.,are playing various drums and skis.,are throwing from a ball that's left onto the ground.,0\n12350,anetv_9gU5be5YCVw,14346,The man performs a routine on the parallel bars. The man,The man performs a routine on the parallel bars.,The man,gold,does several times and jumps up and down.,finishes his routine and dismounts.,does a karate routine on stage.,jumps and runs move but goes back over the finish successfully.,1\n12351,anetv_9gU5be5YCVw,14345,\"A man walks up to parallel bars while spectators, competitors, and officials are in the background. The man\",\"A man walks up to parallel bars while spectators, competitors, and officials are in the background.\",The man,gold,knocks an athlete from the bars and lands back on the bar.,attempts to get one together but does n't successful.,performs a routine on the parallel bars.,throws the javelin successfully.,2\n12352,anetv_axoyB4pypWY,7467,A couple of cages are on the ground. There,A couple of cages are on the ground.,There,gold,are dogs sleeping in each cage.,they move through it and a group of people on platform keep blowing rope.,can be a someone.,bursts in a gym!,0\n12353,anetv_axoyB4pypWY,7469,A man is shown on a field performing tricks with a dog and a bunch of frisbees. The dog,A man is shown on a field performing tricks with a dog and a bunch of frisbees.,The dog,gold,hops out of the grass and the man takes the frisbee off a hook.,zooms in on frisbees and a dog catches the frisbees.,\"catches, flips, and chases the frisbees.\",catches the animal while attached to a frisbee.,2\n12354,anetv_axoyB4pypWY,7468,There are dogs sleeping in each cage. A man,There are dogs sleeping in each cage.,A man,gold,\"is standing in a corner stands and wearing a blue outfit trophies set in menacing colors, talking to the camera.\",sits on a rocking chair.,sits in his lap in front of the camera.,is shown on a field performing tricks with a dog and a bunch of frisbees.,3\n12355,anetv_y-OZ45FQZ0g,7777,\"A man is sitting on the couch wearing jeans a shirt, and he's holding a guitar on his lap, strumming with his right hand and tapping the upper strings with his left hand. The man\",\"A man is sitting on the couch wearing jeans a shirt, and he's holding a guitar on his lap, strumming with his right hand and tapping the upper strings with his left hand.\",The man,gold,\"waves the harmonica sound and starts to play on the guitar, the end of the song pipe.\",sticks up objects and white balls that attaches to the harmonica and then slides down a bit.,gives a great flip to the music as he continues to explain to the camera that he is teaching how to play.,slows down and stops strumming and tapping on his guitar.,3\n12356,anetv_y-OZ45FQZ0g,7778,\"The man slows down and stops strumming and tapping on his guitar. A colorful screen appears and it displays a cartoon picture of a Pokemon standing outdoors near a tree while it's snowing, and red words\",The man slows down and stops strumming and tapping on his guitar.,\"A colorful screen appears and it displays a cartoon picture of a Pokemon standing outdoors near a tree while it's snowing, and red words\",gold,read pokemon - pallet - town.,buy in the town.,appear on the screen switch courses and interacts with him and chips.,\"showing above, first night.\",0\n12357,lsmdc1011_The_Help-78260,662,\"As platinum blonde someone, in a yellow playsuit, rings off, her husband creeps up behind her. He\",\"As platinum blonde someone, in a yellow playsuit, rings off, her husband creeps up behind her.\",He,gold,\"she closes the door, opening it.\",nuzzles her neck and bends her backwards by the edge of their swimming pool.,lifts his jacket on the peg.,eats her pursed lip and rests her head on her back.,1\n12358,lsmdc3056_PUBLIC_ENEMIES-3702,2798,\"At the storefront, someone stand ready. Near the cinema door, someone\",\"At the storefront, someone stand ready.\",\"Near the cinema door, someone\",gold,finds someone hunched on the couch.,is still in pursuit of someone.,watches movie patrons exiting the lobby.,is in a slot at the dining table.,2\n12359,lsmdc3056_PUBLIC_ENEMIES-3702,2776,\"Outside, the agents take their positions. In the movie house, someone\",\"Outside, the agents take their positions.\",\"In the movie house, someone\",gold,watches the screen with a furrowed brow.,zips her a beer beside a cup.,turns with the phone from someone.,strolls through the busy marketplace.,0\n12360,lsmdc3056_PUBLIC_ENEMIES-3702,2788,He dons a cocky smile. Someone,He dons a cocky smile.,Someone,gold,looks towards the london canister basket.,stares at his son.,allows a cheery smile.,watches with a defiant smirk.,3\n12361,lsmdc3056_PUBLIC_ENEMIES-3702,2786,Someone and someone wait patiently in the recessed storefront. Someone,Someone and someone wait patiently in the recessed storefront.,Someone,gold,\"turns, gazing toward the cinema lobby.\",grouped a sign for a partially sideboard that reads what you have noticed that several men are standing.,\"is about pink pass by, gazing at the homestead.\",fires the barrel at them.,0\n12362,lsmdc3056_PUBLIC_ENEMIES-3702,2784,\"Outside, someone checks his watch. Posted near the box office, he\",\"Outside, someone checks his watch.\",\"Posted near the box office, he\",gold,looks across the street.,types in his drawings.,swerves to avoid someone.,marches down a staircase.,0\n12363,lsmdc3056_PUBLIC_ENEMIES-3702,2792,\"Outside the theater, someone digs a box of matches from his pocket and takes one out. From his breast pocket, he\",\"Outside the theater, someone digs a box of matches from his pocket and takes one out.\",\"From his breast pocket, he\",gold,writes some documents over an empty table.,slices his path through the barley rink.,gazes out of the window as he takes another bite of the piece.,produces a cigar and holds it ready.,3\n12364,lsmdc3056_PUBLIC_ENEMIES-3702,2791,\"A guard follows, closes a prison door, and locks it. Outside the theater, someone\",\"A guard follows, closes a prison door, and locks it.\",\"Outside the theater, someone\",gold,sits behind a lectern as she makes her way forward.,hunches over a box draped over a stereo.,digs a box of matches from his pocket and takes one out.,pretends to amble up for the other teacher to train her.,2\n12365,lsmdc3056_PUBLIC_ENEMIES-3702,2805,Someone notices and roughly Across the street. Someone and someone,Someone notices and roughly Across the street.,Someone and someone,gold,try arms to protect bad beach someone.,leave the recessed storefront.,can see someone leaping up and hopping on until someone barges in hand.,play by her cars.,1\n12366,lsmdc3056_PUBLIC_ENEMIES-3702,2775,\"Sitting in her own, someone turns, peeking nervously over her shoulder. She\",\"Sitting in her own, someone turns, peeking nervously over her shoulder.\",She,gold,finds the handle of her mom and lifts it over her head.,\"spots the piano, then steps into a night green fog.\",comes in to quince with a rolling.,\"faces the screen again, her chest heaving.\",3\n12367,lsmdc3056_PUBLIC_ENEMIES-3702,2801,\"Now, someone steps into plain view walking between someone and someone. Younger friend\",\"Now, someone steps into plain view walking between someone and someone.\",Younger friend,gold,helps him to his knees.,notices his bald car.,wears a carefree grin.,watches from the beach as someone works on a parked bench.,2\n12368,lsmdc3056_PUBLIC_ENEMIES-3702,2787,\"On the movie screen, someone Gable faces someone Powell. He\",\"On the movie screen, someone Gable faces someone Powell.\",He,gold,clerk packs a notebook's pages from a different compact.,smiles off his back.,waddles on an outdoor television.,dons a cocky smile.,3\n12369,lsmdc3056_PUBLIC_ENEMIES-3702,2777,\"In the movie house, someone watches the screen with a furrowed brow. Someone\",\"In the movie house, someone watches the screen with a furrowed brow.\",Someone,gold,\"wheels her way down an escalator, carefully shutting the door.\",gazes at her with a knitted brow and clenched jaw.,moves his grip and looking a little tired.,lifts someone's shiny spilled victim on top of rotten skin.,1\n12370,lsmdc3056_PUBLIC_ENEMIES-3702,2794,\"On the movie screen, someone makes his way down the cell block flanked by guards. Someone\",\"On the movie screen, someone makes his way down the cell block flanked by guards.\",Someone,gold,\"steps through the campus, looks around at someone and notices a guard bending over.\",\"spots the barrel of the security light, which lights up.\",steps onto the cage and faces a doll with others ahead.,wears a faint sad smile.,3\n12371,lsmdc3056_PUBLIC_ENEMIES-3702,2800,\"With a hostile sneer, the burly agent rushes out of the car. Now, someone\",\"With a hostile sneer, the burly agent rushes out of the car.\",\"Now, someone\",gold,steps into plain view walking between someone and someone.,quietly climbs the second flight of stairs and stairs.,\"'s thug pierce the window, and someone rolls down a mouthful.\",\"stands in a corner facing the roadside, leaning his hand on the ground.\",0\n12372,lsmdc3056_PUBLIC_ENEMIES-3702,2803,\"A bystander aside, someone heads down the sidewalk after them. Burly agent\",\"A bystander aside, someone heads down the sidewalk after them.\",Burly agent,gold,drives the thug through a passenger door and into his nose.,sits in the hallway and someone curtsies as a leave.,flings a mossy bar at her.,joins the flow of foot traffic with his gun raised.,3\n12373,lsmdc3056_PUBLIC_ENEMIES-3702,2783,Someone Gable stares after her. Someone,Someone Gable stares after her.,Someone,gold,watches with shining eyes.,shakes his head knowingly and looks through a magazine.,gives someone a couple of turns.,'s on two children staring at her.,0\n12374,lsmdc3056_PUBLIC_ENEMIES-3702,2774,\"Someone gazes at the screen with a boyish smirk. Sitting in her own, someone\",Someone gazes at the screen with a boyish smirk.,\"Sitting in her own, someone\",gold,\"turns, peeking nervously over her shoulder.\",puts a tender smile.,pops him in her mouth.,stares at him disapprovingly.,0\n12375,lsmdc3056_PUBLIC_ENEMIES-3702,2802,\"Younger friend wears a carefree grin. A bystander aside, someone\",Younger friend wears a carefree grin.,\"A bystander aside, someone\",gold,finds a hidden photo of a teen girl playing a projector.,heads down the sidewalk after them.,refuses in the blackness.,swims to a wrecked stall with two gear tied.,1\n12376,lsmdc3056_PUBLIC_ENEMIES-3702,2795,Someone wears a faint sad smile. Someone,Someone wears a faint sad smile.,Someone,gold,the neighbor follows him.,\"his way between the rows of darting maize, he pauses to pick up his pockets.\",\"wears a faint half - smile, his eyes shining.\",\", an security guard watches.\",2\n12377,lsmdc3056_PUBLIC_ENEMIES-3702,2797,\"The patrons stand, filing out of their rows. A few rows down, someone\",\"The patrons stand, filing out of their rows.\",\"A few rows down, someone\",gold,spots someone converses holding an umbrella.,stands with someone and don his straw hat.,spots someone and blinks then looks back.,waits by someone as as waiter walks toward the dining room table.,1\n12378,lsmdc3056_PUBLIC_ENEMIES-3702,2790,\"Onscreen, someone turns away from someone. A guard\",\"Onscreen, someone turns away from someone.\",A guard,gold,\"rushes out, followed by someone, who is in the garden back up with a pensive smile.\",\"steals a teapot from the open bag and ducks through a doorway, then returns his gaze to someone.\",shouts at him as he opens the captain's cannon.,\"follows, closes a prison door, and locks it.\",3\n12379,lsmdc3056_PUBLIC_ENEMIES-3702,2785,\"Posted near the box office, he looks across the street. Someone and someone\",\"Posted near the box office, he looks across the street.\",Someone and someone,gold,interview the couples in a dance studio.,wait patiently in the recessed storefront.,burst into the house.,turn into the state park.,1\n12380,lsmdc3056_PUBLIC_ENEMIES-3702,2796,\"In the movie house, words on the screen read The End. The patrons\",\"In the movie house, words on the screen read The End.\",The patrons,gold,walk around to a huge cheese airport.,smile as they stare up at stone.,laugh as someone holds the bouquet in brandy.,\"stand, filing out of their rows.\",3\n12381,lsmdc3056_PUBLIC_ENEMIES-3702,2781,\"Later still, she turns away from a door, clad in black. Taking a deep breath, she\",\"Later still, she turns away from a door, clad in black.\",\"Taking a deep breath, she\",gold,screws her eyes shut.,manages a brave nod.,hands over the table.,prepares at the event where the vessel sways.,1\n12382,lsmdc3056_PUBLIC_ENEMIES-3702,2778,\"Someone gazes at her with a knitted brow and clenched jaw. In a fur - collared coat, the exotically pretty actress\",Someone gazes at her with a knitted brow and clenched jaw.,\"In a fur - collared coat, the exotically pretty actress\",gold,sits on top of the gawking crowd.,laughs with mother and children.,head a long and clean black nose.,wears a pensive expression.,3\n12383,lsmdc3056_PUBLIC_ENEMIES-3702,2789,\"Someone watches with a defiant smirk. Onscreen, someone\",Someone watches with a defiant smirk.,\"Onscreen, someone\",gold,turns away from someone.,goes to the station.,runs her fingers through someone's hair as she strums the guitar strings.,jerks his fists to his neck.,0\n12384,lsmdc3056_PUBLIC_ENEMIES-3702,2780,\"Later, she shifts her sober gaze. Later still, she\",\"Later, she shifts her sober gaze.\",\"Later still, she\",gold,takes her notebook aside as she makes out.,\"turns away from a door, clad in black.\",is absent from a nearby table.,slumps over a bar.,1\n12385,lsmdc3056_PUBLIC_ENEMIES-3702,2806,Someone and someone leave the recessed storefront. Agent,Someone and someone leave the recessed storefront.,Agent,gold,\"scowls, holding his aim as he gains on the crime boss.\",steps to the french window and strokes the half - naked passengers from the bridge and exits.,'s law taps her gold red visor on someone's forehead.,gaze boldly overlooking the second line.,0\n12386,lsmdc3056_PUBLIC_ENEMIES-3702,2793,\"From his breast pocket, he produces a cigar and holds it ready. On the movie screen, someone\",\"From his breast pocket, he produces a cigar and holds it ready.\",\"On the movie screen, someone\",gold,crawls through a small movie set at a photo booth.,\"peers out of the window, to see lights peeking around behind them open.\",dips a chain around someone's neck and pulls him up to a sprint.,makes his way down the cell block flanked by guards.,3\n12387,anetv_KUejIghF6K4,5204,A young child is seen hitting a pinata with a baseball bat as the person moves it around on strings. The boy,A young child is seen hitting a pinata with a baseball bat as the person moves it around on strings.,The boy,gold,continues swinging at the pinata and pauses to speak to the camera nervously.,continues to throw the ball around while holding it out as well as shots hitting a pinata in the end.,continues swinging around and hitting the ball around frame when the two continue around.,continues hitting the pinata on the spring.,0\n12388,anetv_KUejIghF6K4,15131,\"A toddler hits a pinata with a baseball bat, sometimes the pinata moves up. The toddler\",\"A toddler hits a pinata with a baseball bat, sometimes the pinata moves up.\",The toddler,gold,picks a pinata from a pile of shit and waves it in the air.,went back carrying a toddler muffin tray and gets a hair ball.,uses a hammer and terms to hit and swing it.,falls trying to hit the pinata that went up.,3\n12389,anetv_KUejIghF6K4,15132,\"The toddler falls trying to hit the pinata that went up. After, the toddler rise and\",The toddler falls trying to hit the pinata that went up.,\"After, the toddler rise and\",gold,walked away.,falls down next to the blue cloth.,continues hitting the pinata.,punches a woman in the back.,2\n12390,anetv_BSlVLi81VGM,834,The woman is seen using a razor on the man's leg. She,The woman is seen using a razor on the man's leg.,She,gold,continues to shave his legs as others watch around him.,stops and looks at the room.,sees the man putting gel on his chin.,proceeds to follow her but her back is held out on her hands.,0\n12391,anetv_BSlVLi81VGM,833,A person is seen bending down on the floor with a man sitting on a couch. The woman,A person is seen bending down on the floor with a man sitting on a couch.,The woman,gold,then lifts a set of bars and continues to put his shoulders on.,is then seen boxing in the middle working around a room while the camera focuses on the man.,is seen using a razor on the man's leg.,helps herself draw plaster and place it in her hands.,2\n12392,anetv_P2Fcv3cC8bI,995,The man lifts the wallpaper and hands it to another man standing on a chair. The second man,The man lifts the wallpaper and hands it to another man standing on a chair.,The second man,gold,applies liquid to the case.,places the wallpaper on a wall with help from the first man.,is explaining a black cutting process session and is seen the man entering his makeshift office.,opens the cabinet and rubs clean a few parts from the slit.,1\n12393,anetv_P2Fcv3cC8bI,994,A man uses a brush on bundled wallpaper on the floor. The man,A man uses a brush on bundled wallpaper on the floor.,The man,gold,spins partway up and leaves.,sits and lays hand on the back nails.,lifts the wallpaper and hands it to another man standing on a chair.,stands at the tiles.,2\n12394,anetv_aHzNMe-VKfE,12124,He has a little hockey stick and he is using it to swing at a rolling back. The ball keeps coming toward him and he,He has a little hockey stick and he is using it to swing at a rolling back.,The ball keeps coming toward him and he,gold,attempts to pass the pinata off.,gets hit by a rope.,gets closer to the proper size.,keeps swinging trying to hit it.,3\n12395,anetv_aHzNMe-VKfE,12123,A little boy is in the house playing in his shirt and diaper. He has a little hockey stick and he,A little boy is in the house playing in his shirt and diaper.,He has a little hockey stick and he,gold,plays a harmonica before the harmonica.,passes him so he can buy it.,is playing beach soccer in a parting of waves.,is using it to swing at a rolling back.,3\n12396,anetv_PY6WgOIZlhw,9785,A man wearing black clothesis lifting weight in a corer of a room. wmoan,A man wearing black clothesis lifting weight in a corer of a room.,wmoan,gold,throws in a chair with a woman sitting.,is gathered in the middle of the court.,talks to the camera with a woman on the bridge.,is on side of th room lifting weight.,3\n12397,anetv_PY6WgOIZlhw,9787,In front musculous man is kneeling in floor trying to lifting weight. men,In front musculous man is kneeling in floor trying to lifting weight.,men,gold,are in gym making baskets and hitting pool ball.,are in room lifting weight on the middle of mats.,are in a gym performing walking across the ice.,play at gym while sitting on an exercise machine.,1\n12398,anetv_PY6WgOIZlhw,8580,Three bodybuilders lift barbells at the knees. They,Three bodybuilders lift barbells at the knees.,They,gold,do high five on the street.,\"raise them to their chests, then over their heads very quickly, doing several sets.\",\"climb above the shoulders, as fans run as someone swoops through the balcony.\",\"look out the window, then at a moved pace.\",1\n12399,anetv_PY6WgOIZlhw,8581,\"They raise them to their chests, then over their heads very quickly, doing several sets. They\",\"They raise them to their chests, then over their heads very quickly, doing several sets.\",They,gold,turns to the side of the room.,set the barbells down before showing another man doing the same.,switches the light going on a light dusting off the porch steps using the glow as the light remains dark.,proudly rolling up the hula hoop with a hand tightening rose beside it.,1\n12400,anetv_PY6WgOIZlhw,8582,They set the barbells down before showing another man doing the same. They,They set the barbells down before showing another man doing the same.,They,gold,ride and skate around together.,\"lay down on mats, using exercise balls to do sit ups, then doing arm lifts.\",tie the bend over to his side and take out some flexing.,continue to hit the ball while another does jumps off the little.,1\n12401,anetv_PY6WgOIZlhw,9786,Wmoan is on side of th room lifting weight. in front musculous man,Wmoan is on side of th room lifting weight.,in front musculous man,gold,is with a bar to iron few things.,are standing with two of them fixing their undergarments.,is eating an ice cream cone.,is kneeling in floor trying to lifting weight.,3\n12402,lsmdc1040_The_Ugly_Truth-8576,12432,\"The French windows are open. Inside, a handsome, muscular guy\",The French windows are open.,\"Inside, a handsome, muscular guy\",gold,holds a long bandanna.,is wrapping a towel around his waist.,wears a white machine - sized badge.,stands before his open door.,1\n12403,lsmdc1040_The_Ugly_Truth-8576,12428,\"Light streams through open French windows. In her bathroom, someone\",Light streams through open French windows.,\"In her bathroom, someone\",gold,faces flannel spattered clothing.,\"runs her fingers through her long, blonde hair.\",\"ventures down the hallway carrying her flashlight, carrying a huge metal object.\",puts on her lower lip and wipes her nose with a cloth.,1\n12404,lsmdc1040_The_Ugly_Truth-8576,12433,\"Inside, a handsome, muscular guy is wrapping a towel around his waist. Someone\",\"Inside, a handsome, muscular guy is wrapping a towel around his waist.\",Someone,gold,\"comes up and kneels next to him, pulling next to him.\",plucks off his keys on his hand and walks toward the door.,clamps her hand over the cat's snout and ogles the guy.,leans on a banister as his neighbor brushes himself by.,2\n12405,lsmdc1040_The_Ugly_Truth-8576,12431,He is up a tree. Someone,He is up a tree.,Someone,gold,stands underneath the tree.,is at a pool table holding a cup and there was a bottle in his hand.,is eating some cereal.,grabs a flower from a paper.,0\n12406,lsmdc1040_The_Ugly_Truth-8576,12427,The upstairs of someone's apartment has a balcony. Light,The upstairs of someone's apartment has a balcony.,Light,gold,\"the bedroom, someone swigs from a bottle without it, then shakes it in a sink.\",streams through open french windows.,fireballs start across someone's chest and shoulder.,dozes off the bed.,1\n12407,lsmdc1040_The_Ugly_Truth-8576,12429,\"In her bathroom, someone runs her fingers through her long, blonde hair. D'Artagnan\",\"In her bathroom, someone runs her fingers through her long, blonde hair.\",D'Artagnan,gold,\"leans forward, leaning against a glass of white wine.\",spots her on the sidewalk.,trots out of the window.,falls out and she snatches the magazine from her hand.,2\n12408,lsmdc3077_THE_VOW-35788,15275,\"Someone smiles at someone, then looks around uncertainly. Her husband\",\"Someone smiles at someone, then looks around uncertainly.\",Her husband,gold,stands tight and stares.,\"shuts the closet, and then glances away.\",regards her with a tender gaze.,looks up at her own old window.,2\n12409,lsmdc3077_THE_VOW-35788,15274,\"Later, under gleaming skyscraper windows, the suv pulls into a space in a deserted civic parking lot situated before a crosswalk. Someone\",\"Later, under gleaming skyscraper windows, the suv pulls into a space in a deserted civic parking lot situated before a crosswalk.\",Someone,gold,returns a few steps away and stares with an admiring look.,sits a third youth at a table.,marks rustic rustic store with bench parks.,\"smiles at someone, then looks around uncertainly.\",3\n12410,anetv_aObyxa8gdAo,15723,One of the players deals the cards as the others have their drinks. The player,One of the players deals the cards as the others have their drinks.,The player,gold,hits high five in red and white.,returns and hugs his team mates.,distributes the cards evenly among the three players as they position their tokens on the table.,hit the ball hard while other people are drinking beer.,2\n12411,anetv_aObyxa8gdAo,15725,The other player carefully and thoughtfully makes his move. Then the person who dealt the cards,The other player carefully and thoughtfully makes his move.,Then the person who dealt the cards,gold,picks up his stack of cards and tokens that he has won.,return with the measuring down the food money.,and takes it away.,and points to it.,0\n12412,anetv_aObyxa8gdAo,7502,One man deals cards and chips while speaking to one another. They,One man deals cards and chips while speaking to one another.,They,gold,are smiling and talking while serving tennis balls at each other.,see more people practicing mixing balls.,continue playing and speaking to one another.,are then seen standing around a bar talking to one another.,2\n12413,anetv_aObyxa8gdAo,15724,The player distributes the cards evenly among the three players as they position their tokens on the table. The person dealing the card,The player distributes the cards evenly among the three players as they position their tokens on the table.,The person dealing the card,gold,lays down a six of diamonds and waits for the other players to make their move.,\"picked at each other, and members sing a parmesan file.\",contains a british theory pen printed on its hand.,\"shut over chips each other, a reporter talks in front of a family.\",0\n12414,anetv_aObyxa8gdAo,15722,There are three men sitting a small room playing poker on a table. One of the players,There are three men sitting a small room playing poker on a table.,One of the players,gold,is shown playing in the shop by men.,deals the cards as the others have their drinks.,throws the shot into the left to start the match.,is taking a photo and signing autographs.,1\n12415,anetv_aObyxa8gdAo,7501,A man is seen looking at the camera and leads into him playing a poker game with others. One man,A man is seen looking at the camera and leads into him playing a poker game with others.,One man,gold,deals cards and chips while speaking to one another.,\"speaks to the camera with a woman walking on front a few other athletes, then are shown again in slow motion.\",is then seen running around with a man woman who is watching him playing paintball.,speaks to the camera while a man speaks to the audience and leads into more shots of him speaking and looking into the camera.,0\n12416,anetv_Xq9ueKle4fY,8432,A woman is seen leaning over a tub scrubbing a dog. She,A woman is seen leaning over a tub scrubbing a dog.,She,gold,dries off the dog with a towel and then blow dries him.,sprays sunscreen on her face and continues mopping her face.,speaks into the camera while still speaking to the camera.,holds the back of her toothbrush and speaks to the camera.,0\n12417,anetv_Xq9ueKle4fY,8433,She dries off the dog with a towel and then blow dries him. She,She dries off the dog with a towel and then blow dries him.,She,gold,stands right next to her wet face.,continues to take off the shoes and blow dries her hair.,brushes him and trims his nails and gives him kisses.,\"pulls away, then puts her arm around his sides and rearranges the top of his head with his fingers.\",2\n12418,anetv_Xq9ueKle4fY,2820,This woman is bathing the dog to make him clean again and when she walks away the dog shakes a little bit. Then she comes back and dries the dog off using a towel and then she,This woman is bathing the dog to make him clean again and when she walks away the dog shakes a little bit.,Then she comes back and dries the dog off using a towel and then she,gold,gets comfortable and lotion on her head.,turns off of the window and looks back at the dog.,begins to blow drys her hair.,blow dries the dog and combs it's hair.,3\n12419,lsmdc1044_Pride_And_Prejudice_Disk_Two-89868,1009,People are sitting in the back. Someone family,People are sitting in the back.,Someone family,gold,is preparing to skate.,come out to greet them.,is standing on a beach talking.,\"stands in on the other side, looking out at it.\",1\n12420,anetv_zqXJkZgKmSk,2726,The runner stops on the home base and turns around. We,The runner stops on the home base and turns around.,We,gold,see the people at the back of the field.,knocked hurriedly by.,see the man in front yard then gets back on the horse and continues talking.,cuts up more snow and the camera cuts from path up the man's front legs.,0\n12421,anetv_ne7uJQ0MUtE,875,The lady switches to a pink shirt and talks before pouring items into a small pot and stirring. The lady,The lady switches to a pink shirt and talks before pouring items into a small pot and stirring.,The lady,gold,places the cookies in a tray and mixes the ingredients.,turns the fire off and removes her pot.,picks up a glass and pours it into the drink.,adds some ingredients into lime juice.,1\n12422,anetv_ne7uJQ0MUtE,877,We see the lady with a glass bowl of lemon juice as she juices more lemons into a white container. The lady,We see the lady with a glass bowl of lemon juice as she juices more lemons into a white container.,The lady,gold,puts the white container over a strainer into the glass bowl.,mixes in the container with the mug and then puts the electric lemonade in it.,puts her baking tray inside.,puts her screen along with eggs and blended water.,0\n12423,anetv_ne7uJQ0MUtE,874,A lady in a polka dot shirt stands in a kitchen talking. The lady,A lady in a polka dot shirt stands in a kitchen talking.,The lady,gold,presents a knife to the doll.,holds the contact lens in her right eye.,switches to a pink shirt and talks before pouring items into a small pot and stirring.,puts a stack of clothes in a sink.,2\n12424,anetv_ne7uJQ0MUtE,876,The lady turns the fire off and removes her pot. We,The lady turns the fire off and removes her pot.,We,gold,see lights pan with food.,see by man as she can see someone firing a gun into the dark.,\"fade out, followed by a woman in bed.\",see the lady with a glass bowl of lemon juice as she juices more lemons into a white container.,3\n12425,anetv_ne7uJQ0MUtE,878,The lady puts the white container over a strainer into the glass bowl. The lady,The lady puts the white container over a strainer into the glass bowl.,The lady,gold,pours the lemon juice into a larger glass pitcher.,put the egg into a jar of glasses and pour water into a pot on the top.,shakes the brass dispenser motions and facing us.,\"takes a bite, and wraps a lemon in a strainer to keep the beer glass from the camera.\",0\n12426,anetv_ne7uJQ0MUtE,409,A woman demonstrates how to make lemonade from a kitchen using lemons and water. A woman,A woman demonstrates how to make lemonade from a kitchen using lemons and water.,A woman,gold,spreads a little cake on a stove in her bedroom.,is standing in a kitchen next to a bowl of multi colored fruit.,pours lemon juice into a glass bowl and shows it at the rod.,speaks to the camera while inside an water dressing and talking.,1\n12427,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4300,\"He struggles with it and with great difficulty, forces it back into the trunk and fastens it down with a strong chain. He\",\"He struggles with it and with great difficulty, forces it back into the trunk and fastens it down with a strong chain.\",He,gold,submerges it in either directions and shows the foot open.,touches it to his lips and turns to struggle through the trunk of the freight car.,\"gives someone a tiny, golden ball.\",\"crosses it with a line, standing ready for someone.\",2\n12428,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4297,\"Someone gives someone a wooden bat, then unchains one of the brown balls. It\",\"Someone gives someone a wooden bat, then unchains one of the brown balls.\",It,gold,\"shoots straight up, above their heads, almost out of sight.\",\"takes over 10, five - dime, across the road and skids to a stop.\",sneaks back up.,cuts up its diamond shaped fingernails.,0\n12429,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4296,\"People carry a trunk out into the school grounds. They set the trunk on the grass, and someone\",People carry a trunk out into the school grounds.,\"They set the trunk on the grass, and someone\",gold,climbs inside the pulling.,looks about the floor.,\"takes out a large, red ball.\",moves on past the wrapped group.,2\n12430,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4301,\"He gives someone a tiny, golden ball. Delicate, golden wings\",\"He gives someone a tiny, golden ball.\",\"Delicate, golden wings\",gold,shoot out from a skyscraper.,spring out of the snitch.,rise from the tower.,unfolds badly.,1\n12431,lsmdc3044_KNOCKED_UP-20866,15198,The pool sparkles outside the guesthouse. Now a pale chubby butt,The pool sparkles outside the guesthouse.,Now a pale chubby butt,gold,sits in a fancy gold seat beneath the elevated television and a chair singing the rose for the cake.,boy stretches out his arms.,circles a curve on someone's miserable bare stomach.,lies naked under tangled sheets.,3\n12432,lsmdc3044_KNOCKED_UP-20866,15199,\"Now a pale chubby butt lies naked under tangled sheets. Someone, standing and dressed,\",Now a pale chubby butt lies naked under tangled sheets.,\"Someone, standing and dressed,\",gold,\"turns to the stairs and starts up off the stairs to the third floor, which is missing.\",lies asleep in a dark leather lounge chair.,wrinkles her brow at someone's butt.,\"looking around, reading.\",2\n12433,lsmdc3044_KNOCKED_UP-20866,15201,She extends her foot and touches someone's side. He,She extends her foot and touches someone's side.,He,gold,faces his straggly haired friend.,picks someone up and hugs him.,jerks up and glances around.,walks cautiously along an elevated platform outside.,2\n12434,lsmdc3044_KNOCKED_UP-20866,15200,\"Someone, standing and dressed, wrinkles her brow at someone's butt. She\",\"Someone, standing and dressed, wrinkles her brow at someone's butt.\",She,gold,drives someone welcome to the beach.,bounces the mattress with her foot.,floats out onto the balcony.,tilts it toward the boy.,1\n12435,anetv_piKE8obU4JY,937,\"They begin their routine, each section moving in their own set way before coming together and spreading out again. They\",\"They begin their routine, each section moving in their own set way before coming together and spreading out again.\",They,gold,look like they do.,form into two rows and finish the song.,appear as they all come out of the area and touch each other.,looks and spies the other soldiers lifting the floor on a line towards the second floor.,1\n12436,anetv_piKE8obU4JY,936,A drum line gets in formation at an outdoor event. They,A drum line gets in formation at an outdoor event.,They,gold,begin to play hopscotch on the table in front of the cows.,\"in and perform perform in the frat house, the old guy in the red shirt is watching from the back of a large beetle\",do a routine on the horizontal bars.,\"begin their routine, each section moving in their own set way before coming together and spreading out again.\",3\n12437,anetv_mjbzWcSeiwQ,5516,A hockey team prepares for a game. They,A hockey team prepares for a game.,They,gold,play a game of croquette in the dirt.,are standing at a net in front of the field.,begin playing basketball for the competition for the tournament.,skate out from the locker room and warm up.,3\n12438,anetv_mjbzWcSeiwQ,1580,Ice hockey players are getting dressed and signing autographs. They then,Ice hockey players are getting dressed and signing autographs.,They then,gold,go to a lacrosse game of lacrosse.,engage in a game of beer pong.,bow and give force with the game.,engage in a game of hockey.,3\n12439,anetv_mjbzWcSeiwQ,1579,Numerous people arrive at a large facility. Ice hockey players,Numerous people arrive at a large facility.,Ice hockey players,gold,are at a table in a gym.,join into scene shots.,try and watch the main field hockey.,are getting dressed and signing autographs.,3\n12440,anetv_5kBKAfEX7XA,13891,An athlete is seen walking up to a set of uneven bars and begins performing a gymnastics routine on the bars. He,An athlete is seen walking up to a set of uneven bars and begins performing a gymnastics routine on the bars.,He,gold,continues moving around on the bars and ends by jumping down on the side with his arms out.,is shown numerous angles in others cheers as he holds herself along the pommel along.,continue floating on the bars doing long jumps as well as the hostages watching.,continue and spectators watch on the back as the man helps him up and then leads him around onto the mat.,0\n12441,anetv_pZZVzBD8bZY,6541,Various shots are shown of large crowd celebrating in the distance and people riding motorcycles around. The people,Various shots are shown of large crowd celebrating in the distance and people riding motorcycles around.,The people,gold,move around the area while others watch on the side.,continue riding around in slow motion as the camera captures their movements.,continue to cheer before the men take off and end up walking in the arena.,\"continue to watch on the side on the boardwalk playing with along, enjoying the race while looking one around.\",1\n12442,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2243,\"She takes aim and moves silently towards the figure hidden by the branches. As she draws closer, she\",She takes aim and moves silently towards the figure hidden by the branches.,\"As she draws closer, she\",gold,notices the pillar edged with ash.,stares at the frozen crewman and takes a deep breath.,pushes the tree limbs aside.,cocks her head and watches him.,2\n12443,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2240,\"Someone continues walking through the woods, looking around. Nearby, the troll\",\"Someone continues walking through the woods, looking around.\",\"Nearby, the troll\",gold,\"is there, standing staring at someone.\",looks up from his meal of wild boar.,swings a dagger at the cafe.,lies on asphalt.,1\n12444,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2242,\"She notices movement in the distance and cautiously investigates, her crossbow at the ready. She\",\"She notices movement in the distance and cautiously investigates, her crossbow at the ready.\",She,gold,sprints to the damp pathway below as he sees after grappling hanging from the safe.,\"picks up another tray, gently picks it with her foot.\",reaches the front door and caged into the front door.,takes aim and moves silently towards the figure hidden by the branches.,3\n12445,anetv_IiCN1md2MV4,4638,\"Then, the man on back hit the ball that comes on the back. After, the man\",\"Then, the man on back hit the ball that comes on the back.\",\"After, the man\",gold,spins and throws balls after the blue pinata.,throws the ball back to the teen.,stop playing and walk.,takes the rake to begin the ball.,2\n12446,anetv_IiCN1md2MV4,5085,They are playing wall ball. They,They are playing wall ball.,They,gold,play a game of volley ball.,have a hard time playing the polo.,run and score the goal.,stop and walk towards the wall.,3\n12447,anetv_IiCN1md2MV4,4636,Two men play squash in a room with a glass wall. The man on front,Two men play squash in a room with a glass wall.,The man on front,gold,uses a ball in an oven to put plaster in the wall.,talks and talks to the camera.,\"grabs a demonstrating gun, and talks with other men behind him.\",hits the ball to the wall.,3\n12448,anetv_IiCN1md2MV4,4637,\"The man on front hits the ball to the wall. Then, the man on back\",The man on front hits the ball to the wall.,\"Then, the man on back\",gold,hit the ball that comes on the back.,floats as the second man hits the ball with his racquet.,falls to the ground.,flips off the wall and lands on the mouthpiece of the carpet.,0\n12449,anetv_nXr1r26HZis,3929,A group of people are inside a building. They,A group of people are inside a building.,They,gold,are playing a game of foosball together.,are throwing two darts behind a table.,are trying to solve another rubik's cube.,begin to play a game of croquette.,0\n12450,anetv_nXr1r26HZis,3930,They are playing a game of foosball together. They,They are playing a game of foosball together.,They,gold,start playing a game of indoor soccer.,play a large game of hockey.,are playing a game of baskets.,\"kick the figures back and forth, trying to win the game.\",3\n12451,lsmdc3032_HOW_DO_YOU_KNOW-2273,8886,Now someone arrives in a tasteful office where a man with a closely trimmed beard waits at a desk. He,Now someone arrives in a tasteful office where a man with a closely trimmed beard waits at a desk.,He,gold,looks at a laptop and switches off the bedside lamp.,rolls out of pink robe as she examines herself in the mirror.,gestures to a someone to sit on chair or ottoman.,\"leaps to the bedroom door, opens it.\",2\n12452,lsmdc3032_HOW_DO_YOU_KNOW-2273,8881,\"Reaching a reception desk, they peer at a vast wall mounted directory. Someone\",\"Reaching a reception desk, they peer at a vast wall mounted directory.\",Someone,gold,cautiously up and sees a small swastika looms to the stranger.,gives up the signal.,sits on the edge of the bed with her head lowered.,brushes off his son's suit jacket as he guides him along.,3\n12453,lsmdc3032_HOW_DO_YOU_KNOW-2273,8878,\"He leads her to a couch. As she sits, he\",He leads her to a couch.,\"As she sits, he\",gold,places a cushion beside a table and lifts her pillow with her hand.,lies down and puts his head in her lap.,leans against someone's shoulder.,removes the cream from her fingers and studies it intently.,1\n12454,lsmdc3032_HOW_DO_YOU_KNOW-2273,8880,\"Someone ushers someone through a dignified office building's thriving lobby. Reaching a reception desk, they\",Someone ushers someone through a dignified office building's thriving lobby.,\"Reaching a reception desk, they\",gold,\"find someone's hotel, studying his clock.\",peer at a vast wall mounted directory.,look through the expensive beers and someone's fridge.,stand a ten feet tall.,1\n12455,lsmdc3032_HOW_DO_YOU_KNOW-2273,8887,He gestures to a someone to sit on chair or ottoman. Someone,He gestures to a someone to sit on chair or ottoman.,Someone,gold,grins as the two girls change their poles.,perches on the ottoman.,stands in his bedroom while the others watch tv.,heads off.,1\n12456,lsmdc3032_HOW_DO_YOU_KNOW-2273,8884,\"Later, someone faces a bearded man. Someone's head droops forward and he\",\"Later, someone faces a bearded man.\",Someone's head droops forward and he,gold,\"looks toward his melon model, finding the residue of its cover.\",bites someone's chest.,bites his upper lip.,pulls the parcel.,2\n12457,lsmdc3032_HOW_DO_YOU_KNOW-2273,8883,\"Now they sit side - by - side on a waiting room couch. Later, someone\",Now they sit side - by - side on a waiting room couch.,\"Later, someone\",gold,faces a bearded man.,\"sits on her couch, drinking.\",sleeps on the couch.,\"strolls to a car radio wash door, then walks into the hospital.\",0\n12458,lsmdc3032_HOW_DO_YOU_KNOW-2273,8882,Someone brushes off his son's suit jacket as he guides him along. Now they,Someone brushes off his son's suit jacket as he guides him along.,Now they,gold,wear dresses and gown print trousers and their business suits.,sit side - by - side on a waiting room couch.,birder on to the other twin lobby carriages admiring the shoes.,arrive at a full of ages ages.,1\n12459,anetv_0pegrKSh4iw,8244,Along man is seen standing beside him while the camera pans around to other musicians. People,Along man is seen standing beside him while the camera pans around to other musicians.,People,gold,are huddled around the ice watching.,are seen playing the guitar while the drummer continues drumming as well as a man singing into the microphone.,end the video leads into different shots of girls filling a gymnasium one back and fourth.,are seen sitting in front of singing.,1\n12460,anetv_0pegrKSh4iw,8243,A man is seen sitting behind a drum kit and begins to play a song on drums. Along man,A man is seen sitting behind a drum kit and begins to play a song on drums.,Along man,gold,is seen standing beside him while the camera pans around to other musicians.,continues playing a harmonica all around the stage as the camera pans to change sides.,plays the instrument while the woman plays and switches back to the camera.,plays the drums continuously and ends with them moving his arms and others around.,0\n12461,anetv_0pegrKSh4iw,15264,A man is seen playing a set of drums followed by another man standing near him. The man,A man is seen playing a set of drums followed by another man standing near him.,The man,gold,continues to play while speaking to the camera while still playing the guitar.,moves up and down his instrument.,pushes his hands around and ends with the man still speaking and playing a set of drums.,continues playing while the man speaks into the microphone and other people play instruments around him.,3\n12462,anetv_VR19Scunfhg,11824,Another man walks a tight rope in a park. that man,Another man walks a tight rope in a park.,that man,gold,is shown and as both of the men are tattooing and on tight ups.,demonstrates rope on monkey bars.,stops the camera talking and looks off again.,falls from his tightrope.,3\n12463,anetv_VR19Scunfhg,11822,A man walks a tight rope hanging over a pool. the man,A man walks a tight rope hanging over a pool.,the man,gold,falls in the pool.,jumps the fourth man and skates several times while spinning and doing tricks.,wins and continues skateboarding on the road.,jumps when he turns and runs walking.,0\n12464,anetv_VR19Scunfhg,18018,\"After, various people attempt to do the same thing in various locations and they all fall off. Finally, the tv's are shown while videos are shown and the Youtube subscribe video\",\"After, various people attempt to do the same thing in various locations and they all fall off.\",\"Finally, the tv's are shown while videos are shown and the Youtube subscribe video\",gold,shows a new lesson with video videos.,is at the bottom.,shows them demonstrating upright.,shows an animated video screen and shows scenes of woman grooming a horse and speaking to the camera.,1\n12465,anetv_VR19Scunfhg,18016,A man is shown tight roping across a small pond and eventually falls in the water. Another man,A man is shown tight roping across a small pond and eventually falls in the water.,Another man,gold,runs to the man and holds up his hands to the camera.,is seen looking off in the distance pulling the rope faster so the right don't hit it.,is standing on a surface of sand.,is shown doing the same thing but falls into the pool.,3\n12466,anetv_VR19Scunfhg,11825,That man falls from his tightrope. various people,That man falls from his tightrope.,various people,gold,are shown entering the tiny boat holding the surfer to the end and knitting along.,step to pull out discus game.,are seen walking different tight ropes and falling.,start to do hand springs.,2\n12467,anetv_dtvIQ9Pd-Bg,11246,A man in a kitchen has knifes and a sharpening block. The man,A man in a kitchen has knifes and a sharpening block.,The man,gold,\"is cutting a tomato with knife knife sharpener, knives or sharpening a knife.\",explains the proper technique for cutting up grass.,puts the knife on the man's left arm.,wets the block and runs a knife across two different blocks.,3\n12468,anetv_dtvIQ9Pd-Bg,11248,The man grabs a pole and sharpens the knife on it. The man,The man grabs a pole and sharpens the knife on it.,The man,gold,wipes the knife on a towel.,slides the knife and cuts the axle of the knife.,shows how to chop the object in his bowl.,returns the sharpening knife to cut it.,0\n12469,anetv_dtvIQ9Pd-Bg,11250,The man grabs and removes a lemon. The man,The man grabs and removes a lemon.,The man,gold,shows us an upside down pot.,irons a shirt on a boat.,takes a straw onto the fabric and puts it in the bowl.,drinks from a spinning pitcher and adds a final straw.,0\n12470,anetv_dtvIQ9Pd-Bg,11245,We see a man and the intro scene. A man in a kitchen,We see a man and the intro scene.,A man in a kitchen,gold,is doing splits in a pool.,places toilet paper on his shoulder.,has knifes and a sharpening block.,stretches fast to the bar.,2\n12471,anetv_dtvIQ9Pd-Bg,11249,The man wipes the knife on a towel. The man,The man wipes the knife on a towel.,The man,gold,slaps the hand clean again.,grabs and removes a lemon.,grabs the shoe to polish the towels now.,wipes the bathroom back on.,1\n12472,anetv_dtvIQ9Pd-Bg,11247,The man wets the block and runs a knife across two different blocks. The man,The man wets the block and runs a knife across two different blocks.,The man,gold,pauses and finishes the weld before releasing it.,takes a knife and cuts the knife in half.,is seated on a mat with a gun in his hands.,grabs a pole and sharpens the knife on it.,3\n12473,anetv_iC1C5wfb0iU,9365,The men on the right win and shake hands and hung. One man high fives a child,The men on the right win and shake hands and hung.,One man high fives a child,gold,outdoors and finishes them off during the day.,held up by a lady behind them.,kneeling off while the handcuffed man indoors wins the match.,salon a cover on women stands.,1\n12474,anetv_iC1C5wfb0iU,9366,One man high fives a child held up by a lady behind them. We,One man high fives a child held up by a lady behind them.,We,gold,monitor a girl of a man in a red runs from the crowd.,see a closing screen.,see the man leave his right looking in a weird way and how to get get stuck up as we finish his filming.,then drives on camels while the dog is curled on the floor.,1\n12475,anetv_GhVERbQMZWQ,12030,A hummer backs a boat down a ramp. A person,A hummer backs a boat down a ramp.,A person,gold,runs glumly along the first strip.,rises from an inter - wheeled dock.,moves his feet on the back of the snow ski.,is wake boarding behind the boat.,3\n12476,anetv_GhVERbQMZWQ,12031,A person is wake boarding behind the boat. People,A person is wake boarding behind the boat.,People,gold,are sitting in rafts and touching the rapids.,are sitting on the boat.,are chasing a boat in the water.,fall into the waters behind him.,1\n12477,lsmdc0010_Frau_Ohne_Gewissen-51482,4276,\"For a second he stands there motionless, then crosses to the door and opens it. Someone\",\"For a second he stands there motionless, then crosses to the door and opens it.\",Someone,gold,opens a final look for tases.,\"leaps over the wall, searching for someone, who flees.\",walks past him into the room.,\"lifts his brow, shifts to his feet, then watches as he draws back.\",2\n12478,lsmdc0010_Frau_Ohne_Gewissen-51482,4269,\"He switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket. He\",\"He switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket.\",He,gold,pulls out the lighter and tosses it away.,picks up the phone.,\"pulls up outside someone's car, rising down onto the porch.\",\"puts it in the lock, slipping its plugs into and blowing it out of his hands.\",1\n12479,lsmdc0010_Frau_Ohne_Gewissen-51482,4267,The corridor door opens letting light in. Someone,The corridor door opens letting light in.,Someone,gold,stands ahead with writing.,enters with his hat on and his briefcase under his arm.,ambles into the hallway.,\"looks at the offscreen someone, then turns back off the tap.\",1\n12480,lsmdc0010_Frau_Ohne_Gewissen-51482,4277,Someone walks past him into the room. His hands,Someone walks past him into the room.,His hands,gold,are clasped behind his back.,are propped back on someone's head.,move up and down.,rest on someone's lap.,0\n12481,lsmdc0010_Frau_Ohne_Gewissen-51482,4273,\"He hangs up, takes off his hat and drops hat and briefcase on the davenport. He\",\"He hangs up, takes off his hat and drops hat and briefcase on the davenport.\",He,gold,pays the railroad card.,looks around the room and crosses to lower the venetian blinds and draw the curtains.,sits facing him and watches.,sets it down as someone crouches over someone and glances at him.,1\n12482,lsmdc0010_Frau_Ohne_Gewissen-51482,4275,Someone stops in sudden alarm. For a second he,Someone stops in sudden alarm.,For a second he,gold,tries to damage the gun.,scales the dead wall.,slips on people's feet.,\"stands there motionless, then crosses to the door and opens it.\",3\n12483,lsmdc0010_Frau_Ohne_Gewissen-51482,4268,Someone enters with his hat on and his briefcase under his arm. He,Someone enters with his hat on and his briefcase under his arm.,He,gold,\"runs a hand across the long mustached columns face, which is visible among the glowing structure.\",\"switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket.\",\"stands, staring at the walls, which windows are hanging open and a picture of him is to treasure.\",reaches into his pocket and pulls out a handgun his father has him ready to do.,1\n12484,lsmdc0010_Frau_Ohne_Gewissen-51482,4274,He gathers up the morning paper which is lying untidily on the floor and puts it in the waste - paper basket. Someone,He gathers up the morning paper which is lying untidily on the floor and puts it in the waste - paper basket.,Someone,gold,turns tearfully among one of the students.,struggles to make her grassy task.,\"sprays the bowl with camouflaged tape, then uses an empty post to make a perfect new base.\",stops in sudden alarm.,3\n12485,lsmdc0010_Frau_Ohne_Gewissen-51482,4270,He picks up the phone. Someone,He picks up the phone.,Someone,gold,is on the phone.,\"turns the cold, listening the fan, and goes back to the nerdist - cyclist arts instructor.\",\"shakes it again, and now the hovering 9 is shot.\",\"puts her phone back on the pavement, and stands right on the tracks.\",0\n12486,lsmdc0010_Frau_Ohne_Gewissen-51482,4282,He has stopped in front of someone. They,He has stopped in front of someone.,They,gold,look at each other for a tense moment.,points around the streets and watches for an attractive bmx alien.,shake him.,\"bare looks in the bag lane, but unable to see what he - - - - it is a decision.\",0\n12487,lsmdc0010_Frau_Ohne_Gewissen-51482,4278,His hands are clasped behind his back. Someone,His hands are clasped behind his back.,Someone,gold,slings across the dead floor.,closes the door without taking his eyes off someone.,looks into his goblet.,back against the horrible face of the cafe!,1\n12488,lsmdc0010_Frau_Ohne_Gewissen-51482,4279,Someone closes the door without taking his eyes off someone. Someone,Someone closes the door without taking his eyes off someone.,Someone,gold,\"lifts his head and lifts it upwards, then gently trudges down the deck.\",has computer eyes and his alert smile.,stops in the middle of the room and turns.,comes out of the office and opens the door for someone.,2\n12489,anetv_-aWU5Yj_OPw,11903,A young man is seated in a living room. He,A young man is seated in a living room.,He,gold,is playing an accordion.,\"starts to touch a sofa, but ends up banging on the bed.\",is playing an electronic keyboard.,is playing a pair of bongo drums with his hands.,2\n12490,anetv_p7j6yY99vEg,17011,Players are in a a side of a basket court gathered in a circle. referee wearing a yellow shirt,Players are in a a side of a basket court gathered in a circle.,referee wearing a yellow shirt,gold,walks from the other side of the court.,is standing in a dark room watching them.,throws a yellow ball on the blue court.,holds a trophy as they continue to kick.,0\n12491,anetv_p7j6yY99vEg,6963,A man in an orange shirt throws a ball. They,A man in an orange shirt throws a ball.,They,gold,boys tries to participate in a trick on the field.,start playing a game of basketball.,start facing him kneeling to the camera.,pick up the ball and start to jump.,1\n12492,anetv_LZ4dINjqX5U,14387,An athletic man is seen standing with his arms a up and begins performing a gymnastics routine. He,An athletic man is seen standing with his arms a up and begins performing a gymnastics routine.,He,gold,moves around a hoop and showing more clips of him exercising and jumping onto the beam.,spins himself round and round on the bar performing several flips and tricks and ends with him sticking his arms up into the air.,attacks several times while moving him all over the beam as well as set.,continues playing with the object and moving himself around and waving to the camera while looking out.,1\n12493,anetv_4bw6ocN0jGU,5630,A dog is running by a lake. A man,A dog is running by a lake.,A man,gold,sprays the dog on the floor.,is wake boarding behind a boat.,runs down a track and jumps into a rope.,jumps into the river and she goes.,1\n12494,anetv_4bw6ocN0jGU,5631,A man is wake boarding behind a boat. A person,A man is wake boarding behind a boat.,A person,gold,is sitting in the water.,is sitting on a boat underwater.,is skiing down the air in a rock post.,is using sharp sticks to get something onto the kayak.,0\n12495,anetv_h-MWdTHW_Eg,9927,\"The girl walks to the other side then hits the birdie to the man. He picks it up and hits it to her, and she\",The girl walks to the other side then hits the birdie to the man.,\"He picks it up and hits it to her, and she\",gold,sends it back to him and back and forth.,stands up with the baby.,starts to hit the car with her hands.,draws into the paint ball.,0\n12496,anetv_h-MWdTHW_Eg,9926,A man hits a birdie with a racket and a girl picks it up. The girl,A man hits a birdie with a racket and a girl picks it up.,The girl,gold,talks in front of a mirror.,walks to the other side then hits the birdie to the man.,grabs a stick and serves them over.,watches from the wall then runs off.,1\n12497,anetv_h-MWdTHW_Eg,9928,\"He picks it up and hits it to her, and she sends it back to him and back and forth. Two people\",\"He picks it up and hits it to her, and she sends it back to him and back and forth.\",Two people,gold,grab the ice and leave the trunk.,are striking him in the corner of the sofa.,sit by a tree eating homework and walk away.,are walking in the parking lot.,3\n12498,anetv_h-MWdTHW_Eg,15100,A man and a little girl are playing badminton in front of a playground. The girl,A man and a little girl are playing badminton in front of a playground.,The girl,gold,picks up the birdie off the ground and serves it.,gets a medal in her hand.,interacts in a bar with sticks to the side.,jumps and jumps off a diving board.,0\n12499,anetv_h-MWdTHW_Eg,15101,The girl picks up the birdie off the ground and serves it. The man,The girl picks up the birdie off the ground and serves it.,The man,gold,walks back up the sidewalk with the ball in her hand.,\"kicks the ball up off the fire, then returns to the backyard, and approaches.\",runs and proceeds to get the tennis ball on the table.,walks off the court.,3\n12500,anetv_e9l3PzP4uGQ,3131,\"The person rolls them into balls and sets them on a plate, finally sticking them into the oven. She then\",\"The person rolls them into balls and sets them on a plate, finally sticking them into the oven.\",She then,gold,pulls away the lid and folds it in half.,rolls over on the dough and mixes it together.,cooks and measuring all the ingredients that they want to make.,pulls out the made cookies and gives the camera a thumbs up.,3\n12501,anetv_e9l3PzP4uGQ,3130,Various clip are shown of ingredients being laid out in bowls followed by a person mixing them all together. The person,Various clip are shown of ingredients being laid out in bowls followed by a person mixing them all together.,The person,gold,beats paper ingredients into hitting a mixer.,continues cutting the mound and moving around making sacks and food together.,\"rolls them into balls and sets them on a plate, finally sticking them into the oven.\",attempts to apply all the ingredients into the bowl and ends by showing off the bowl and putting it into the camera.,2\n12502,anetv_5ZmZr2bguy0,4991,A woman is seen standing in a large circle and bending herself forward. The woman then,A woman is seen standing in a large circle and bending herself forward.,The woman then,gold,starts doing stunts in elliptical.,cuts the contact onto the bar while speaking to the camera and waving to the camera.,begins playing the instrument.,spins herself around and throws an object off into the distance.,3\n12503,anetv_5ZmZr2bguy0,4992,The woman then spins herself around and throws an object off into the distance. The woman,The woman then spins herself around and throws an object off into the distance.,The woman,gold,does this several times afterwards.,spins around various angles that end her swinging around arm round and pulling away.,stands and walks back.,stands on the beam as well as the purple volleyball on the woman poses and walks up.,0\n12504,anetv_3FZ47muWIYA,2583,The children hold up objects while speaking and lead into them washing their hands. The kids,The children hold up objects while speaking and lead into them washing their hands.,The kids,gold,are then shown again in various shots swimming in front of a person and looking around.,continue playing while looking down and speaking to the camera.,continue to use the ball and push around while looking to the camera.,continue washing and drying their hands and walk out.,3\n12505,anetv_3FZ47muWIYA,2582,A person is seen washing their hands and leads into children speaking to the camera. The children,A person is seen washing their hands and leads into children speaking to the camera.,The children,gold,hold up objects while speaking and lead into them washing their hands.,continue to play with their dog while several clips are shown of people wind drying their hair.,continue to ride over and snowboards with one another as well as under the water.,untie each other back and fourth while the camera pans around the other.,0\n12506,anetv_3FZ47muWIYA,5770,A video is shown on the importance of washing your hands. Kids,A video is shown on the importance of washing your hands.,Kids,gold,come into a living room using a spring board.,are sitting in a water swimming pool.,talk about their experiences.,try to make a put on the floor to glue.,2\n12507,anetv_uFMlVrTUoR8,13782,He rakes it out over the ground. He,He rakes it out over the ground.,He,gold,picks up a stick and puts it on a field.,then begins shoveling snowy in his yard.,brings another wheelbarrow full of mulch and rakes it out over the lawn.,talks about the process.,2\n12508,anetv_uFMlVrTUoR8,13781,A man dumps a wheelbarrow of mulch on the lawn. He,A man dumps a wheelbarrow of mulch on the lawn.,He,gold,stops the mower and uses it to mow his yard.,walks up to a window.,sprays water on the bush near the cars.,rakes it out over the ground.,3\n12509,anetv_g7IZWqeyM20,8364,\"A man appears with a racket and he's talking to the camera as he hits a racketball then various small clips play afterwards that include him hitting the racketball as well as various other people playing, too. The outro screen appears and it\",\"A man appears with a racket and he's talking to the camera as he hits a racketball then various small clips play afterwards that include him hitting the racketball as well as various other people playing, too.\",The outro screen appears and it,gold,'s exactly like the white intro screen.,includes four blue walks and it left then the subscribe button.,shows the same video session then two men skateboarding down one and sitting in to a stop.,shows a small well thing and a location that the website hones in.,0\n12510,lsmdc3069_THE_BOUNTY_HUNTER-4926,15201,\"Elsewhere, the caddy peeks out from a sunken sand trap. The caddy\",\"Elsewhere, the caddy peeks out from a sunken sand trap.\",The caddy,gold,throws it on the ground and gets a kangaroo up.,crawls out from hiding.,turns going into a cattle restaurant.,lifts a heavy towel by the steering frame.,1\n12511,lsmdc3069_THE_BOUNTY_HUNTER-4926,15197,The bounty hunter frantically dodges golf balls as they whiz toward him. He,The bounty hunter frantically dodges golf balls as they whiz toward him.,He,gold,punches his crotch in a supermarket.,taps his mobile to the ready as the garbage travels through the arena detection.,leaps over one then ducks another.,tosses the man's quill in his shoulder.,2\n12512,lsmdc3069_THE_BOUNTY_HUNTER-4926,15195,One rumples his lips then flees. He,One rumples his lips then flees.,He,gold,scurries down some steps.,looks away from his desk and flips on his cell.,runs up to someone's suv then steps close to someone.,opens his mouth and exhales.,0\n12513,lsmdc3069_THE_BOUNTY_HUNTER-4926,15202,\"As he holds the flag for putting golfers, someone spies him. Someone\",\"As he holds the flag for putting golfers, someone spies him.\",Someone,gold,commander walks in the hall between the open doors behind someone.,throws a bulb up at him and hits him on the head.,runs off lush the horses and follows someone.,steers the cart in the caddy's direction.,3\n12514,lsmdc3069_THE_BOUNTY_HUNTER-4926,15194,The couple steps out back and wanders through a festive picnic. He,The couple steps out back and wanders through a festive picnic.,He,gold,whacks their face over and strolls over to the young girls as they separate.,gives a photo of a sports beer.,walks her to the party's edge.,climbs up snow - filled hills from outside almost far.,2\n12515,lsmdc3069_THE_BOUNTY_HUNTER-4926,15196,The caddy leads him down a hill and across a grassy driving range. The bounty hunter frantically,The caddy leads him down a hill and across a grassy driving range.,The bounty hunter frantically,gold,tries to level a phone.,stands in the other direction.,\"adjusts his head, and furrows his brow.\",dodges golf balls as they whiz toward him.,3\n12516,lsmdc3069_THE_BOUNTY_HUNTER-4926,15199,\"One ball buzzes low over his head and a fourth whips past his nose. As he leaves the range and runs onto a green, someone\",One ball buzzes low over his head and a fourth whips past his nose.,\"As he leaves the range and runs onto a green, someone\",gold,\"restrains the burly leader, who punches him and pushes him in.\",drives up in a golf cart.,crashes to the ground behind.,appears and watches him out of a window.,1\n12517,lsmdc3069_THE_BOUNTY_HUNTER-4926,15200,\"As he leaves the range and runs onto a green, someone drives up in a golf cart. Elsewhere, the caddy\",\"As he leaves the range and runs onto a green, someone drives up in a golf cart.\",\"Elsewhere, the caddy\",gold,runs a bowling alley across the street.,wears a small white veil.,blows their ears as they go.,peeks out from a sunken sand trap.,3\n12518,lsmdc3069_THE_BOUNTY_HUNTER-4926,15198,He leaps over one then ducks another. One ball buzzes low over his head and a fourth,He leaps over one then ducks another.,One ball buzzes low over his head and a fourth,gold,whips past his nose.,heap of dead bodies.,hit by the sailors.,impaled with his rucksack.,0\n12519,lsmdc3069_THE_BOUNTY_HUNTER-4926,15204,\"Dropping the flag, he dashes over a hill. Someone\",\"Dropping the flag, he dashes over a hill.\",Someone,gold,descends someone's spear with his chained fist.,\"leaps out, tackles the caddy, and tumbles with him into the water.\",appear seven years later.,paces to cab and immediately calls to him.,1\n12520,lsmdc3069_THE_BOUNTY_HUNTER-4926,15203,\"The young man spots them and his polite smile fades. Dropping the flag, he\",The young man spots them and his polite smile fades.,\"Dropping the flag, he\",gold,turns on the lights and unlocks it.,plods down the aisle.,dashes over a hill.,\"jumps over her shoulder, then scrambles extends his hand.\",2\n12521,lsmdc3069_THE_BOUNTY_HUNTER-4926,15205,He shows his tattooed chest. Someone swaps,He shows his tattooed chest.,Someone swaps,gold,stares with a disappointed boy.,looks with someone as the real artest serves.,looks with someone then releases the caddy.,scissors with both hands.,2\n12522,anetv_47OMV7rZrQA,989,She then begins to perform for the judges. She,She then begins to perform for the judges.,She,gold,moves around the class.,does numerous moves in martial arts for the crowd.,\"loses her balance, flips, and celebrates, her elbows boobs up.\",\"makes them seem quite excited, finally a few athletes and powder on her.\",1\n12523,anetv_47OMV7rZrQA,988,A woman walks onto a mat in a gym. She then,A woman walks onto a mat in a gym.,She then,gold,jumps down and sits on a mat.,begins to perform for the judges.,continues doing this routine on the uneven bars.,walks across the mat.,1\n12524,anetv_47OMV7rZrQA,17746,She then begins moving her arms and legs around along the mat while looking off into the distance. The woman,She then begins moving her arms and legs around along the mat while looking off into the distance.,The woman,gold,continues moving around the mat with her arms and legs and ends by holding a pose and bowing.,continues speaking to the camera while moving her hands all around the steppers and ends by speaking softly to the man.,continues kicking up the beam and continues performing various flips as well as bowing off in the distance.,continues her running routine and ends by her jumping up and off of stage as well as unseen talking.,0\n12525,anetv_47OMV7rZrQA,17745,A woman is seen walking out onto a large mat with many picture watching her on the side. She then,A woman is seen walking out onto a large mat with many picture watching her on the side.,She then,gold,begins moving herself around the beam and looking off into the distance.,throws several darts back and fourth on her board and leads into her grabbing the camera.,holds up the flipping paper in the end while another person push around in the end.,begins moving her arms and legs around along the mat while looking off into the distance.,3\n12526,anetv_LAbzDJZtSvQ,3050,\"A man is standing in the woods, talking. He\",\"A man is standing in the woods, talking.\",He,gold,shows his foot on a wave.,\"blows a fire at the ground, then runs.\",is walking towards the shoreline.,uses an ax to hit a large piece of wood.,3\n12527,anetv_LAbzDJZtSvQ,3051,He uses an ax to hit a large piece of wood. He,He uses an ax to hit a large piece of wood.,He,gold,knocks on him on the ground.,splits the wood into logs with the ax.,stands up and uses the grass bite.,creeps towards the top of the stairs.,1\n12528,anetv_1Y3BV0Awjuo,10698,We see food on a table and a lady picking at a potato. The potato,We see food on a table and a lady picking at a potato.,The potato,gold,begins to take another cutting of the potato.,peels the potato and puts it on the kitchen counter.,slides the potatoes into a bowl.,\"is cut, then dropped in a pot.\",3\n12529,anetv_1Y3BV0Awjuo,10701,\"We see a red illustration on a potato and a potato is mashed. Two more potatoes are peeled easily, Another potato\",We see a red illustration on a potato and a potato is mashed.,\"Two more potatoes are peeled easily, Another potato\",gold,is on paper and sliced.,will be chopped in a plate.,is boiled and dropped in cold water.,is mixed and then chopped meat is taped onto a plate.,2\n12530,anetv_1Y3BV0Awjuo,10699,\"The potato is cut, then dropped in a pot. It's transferred to cold water and the skin just\",\"The potato is cut, then dropped in a pot.\",It's transferred to cold water and the skin just,gold,seems to have catfish around the hole.,moved from the vehicle and pointed to how to turn it around.,slides off when pulled.,want to taste him dry.,2\n12531,anetv_1Y3BV0Awjuo,10700,It's transferred to cold water and the skin just slides off when pulled. We,It's transferred to cold water and the skin just slides off when pulled.,We,gold,\"- - below, the water instantly explodes as he hears someone standing up.\",comes safely filling the darkened gramophone with only a few shadow.,can no longer breathe.,see a red illustration on a potato and a potato is mashed.,3\n12532,anetv_VeWdsZb5tog,3884,Two young women are talking to each other. A slinky is thrown and a girl,Two young women are talking to each other.,A slinky is thrown and a girl,gold,took her tools and stretches out the hose.,hops to where the slinky dropped.,is still at a bar with him following her.,in the tournament quickens her voice to lift him by his shoulder.,1\n12533,anetv_VeWdsZb5tog,3885,A slinky is thrown and a girl hops to where the slinky dropped. Another girl in a black shirt,A slinky is thrown and a girl hops to where the slinky dropped.,Another girl in a black shirt,gold,\"hops around, too.\",is an pulled his arms and neck from each position.,is posing after the darts hit.,is demonstrating the ballet move that extend to her skirt spinning.,0\n12534,anetv_VeWdsZb5tog,3887,The girls sit down on the sidewalk and talk. The girls,The girls sit down on the sidewalk and talk.,The girls,gold,finishes and continues talking.,take their glasses off and enjoy a tango routine.,go to another area to sit down and talk.,struggle to open their ears and dance.,2\n12535,anetv_VeWdsZb5tog,12114,A couple of girls are standing outside of a house. They,A couple of girls are standing outside of a house.,They,gold,are standing in a flash bright orange in front of them.,are picking up something from the inside.,are playing cricket at a table.,\"are laughing and talking, playing with their hair.\",3\n12536,anetv_VeWdsZb5tog,3886,\"Another girl in a black shirt hops around, too. The girls\",\"Another girl in a black shirt hops around, too.\",The girls,gold,do a back flip by falling down.,pretends to do makes her way together.,stop with the girls catch their legs.,sit down on the sidewalk and talk.,3\n12537,anetv_VeWdsZb5tog,12115,\"They are laughing and talking, playing with their hair. They\",\"They are laughing and talking, playing with their hair.\",They,gold,are in the public and acting as eat their meal.,tie the shoes into a pink room.,are then shown playing several games of hopscotch.,play practicing their sumo outfits and playing the street in front of the camera.,2\n12538,lsmdc0011_Gandhi-52563,9926,\"Someone's spinning never stops. Someone looks up at someone, someone\",Someone's spinning never stops.,\"Someone looks up at someone, someone\",gold,\"looks over his shoulder at him as the crowd lifts, which has been taken by other.\",'s feet on the ground.,'s panic taking in her cold.,shakes his head solemnly.,3\n12539,lsmdc0011_Gandhi-52563,9929,\"He holds someone's eyes, giving strength. Then he\",\"He holds someone's eyes, giving strength.\",Then he,gold,\"turns to someone, made more aware of her by someone's reference.\",\"stands, walks forward toward a corner, connecting the chain off someone's belt and back at someone.\",mimes greek - medicine.,jerks his face at his mother's face and vomits.,0\n12540,lsmdc0011_Gandhi-52563,9928,Someone reaches out and touches his hand. He,Someone reaches out and touches his hand.,He,gold,grins as he bounces a kite in the air.,spots someone from bedside rising then keeps quiet.,stares at someone but does n't take his eyes off her.,\"holds someone's eyes, giving strength.\",3\n12541,lsmdc0011_Gandhi-52563,9927,\"Someone looks up at someone, someone shakes his head solemnly. But he\",\"Someone looks up at someone, someone shakes his head solemnly.\",But he,gold,tightens his eyes tightly.,smiles again and smiles tearfully.,does not go on.,simply tries to start offering someone's hand.,2\n12542,lsmdc1047_Defiance-91553,11610,Someone hits back and launches himself at his brother. Someone,Someone hits back and launches himself at his brother.,Someone,gold,takes a huge leap and crashes onto the sofa.,leaps in the back of a pool as he flies off.,walks in and punches the bald man.,\"tries to pull them apart, but is shoved to one side.\",3\n12543,lsmdc1047_Defiance-91553,11622,\"Straightening his jacket, he looks around at the assembled people staring at him. Someone\",\"Straightening his jacket, he looks around at the assembled people staring at him.\",Someone,gold,is transformed into two jabs.,picks up his gun.,scoots down next to someone.,looks around at someone.,1\n12544,lsmdc1047_Defiance-91553,11618,\"He pushes someone down on his back, picks up a round stone and prepares to throw it. Someone\",\"He pushes someone down on his back, picks up a round stone and prepares to throw it.\",Someone,gold,arcs over someone's face and descend on the meager morgul in his aunt's apartment.,\"adopts a terrible look, then fires a bullet at the animal near him.\",\"hands him an invite as he goes, and someone descends in the other direction.\",holds a protective hand in front of his face.,3\n12545,lsmdc1047_Defiance-91553,11625,The two young people look at each other. Someone,The two young people look at each other.,Someone,gold,brings it back to mrs. po.,looks up at someone.,looks at them both and affectionately pats someone on the cheek.,is asleep in the driver's seat.,2\n12546,lsmdc1047_Defiance-91553,11612,Someone 'next blow sends someone reeling to the ground. Someone,Someone 'next blow sends someone reeling to the ground.,Someone,gold,looks at them both in shock.,rips her hair off her head and gazes up at the statue of liberty.,throws off his shield and he shoots someone in the head and blood streaming between the hut's roof.,rests her head on someone's shoulder.,0\n12547,lsmdc1047_Defiance-91553,11615,Someone slowly scrambles to his feet. He,Someone slowly scrambles to his feet.,He,gold,pulls him up with both hands and slams him back onto the muddy ground.,carefully leaves the casket with hot blanket wrapped around it.,attempts to follow someone as marley off himself onto the dirt.,picks up his gun and rams the wood back onto the crawl wall.,0\n12548,lsmdc1047_Defiance-91553,11624,\"Someone addresses someone, who's standing with someone. The two young people\",\"Someone addresses someone, who's standing with someone.\",The two young people,gold,have been gathered for dinner.,stand close to someone.,look at each other.,are glued to the rocks.,2\n12549,lsmdc1047_Defiance-91553,11633,\"Someone nods at someone who nods back. As the Russian commander moves on, someone and his men\",Someone nods at someone who nods back.,\"As the Russian commander moves on, someone and his men\",gold,stand at the prow.,make their way through an pursuing field.,stare as soldiers cock their heads.,fall in with the russian foot soldiers.,3\n12550,lsmdc1047_Defiance-91553,11614,Someone rolls someone on his back with a flick of his foot. Someone slowly,Someone rolls someone on his back with a flick of his foot.,Someone slowly,gold,swats the blade to his side.,scrambles to his feet.,turns back towards someone.,lowers himself on his knees.,1\n12551,lsmdc1047_Defiance-91553,11628,\"Without a word, he grabs his machine gun, and with a line of volunteers behind, strides off past someone. At Nowogrodek, Nazi soldiers\",\"Without a word, he grabs his machine gun, and with a line of volunteers behind, strides off past someone.\",\"At Nowogrodek, Nazi soldiers\",gold,detach from a screaming spear.,\"walk down the aisle, with flashlights, flashlights down a hallway at an interior complex.\",stand guard as jewish men and women wearing yellow stars file into the ghetto.,\"leap into vehicles, lined with geese flying through the sky.\",2\n12552,lsmdc1047_Defiance-91553,11613,Someone looks at them both in shock. Someone,Someone looks at them both in shock.,Someone,gold,presses his lips together pensively.,rolls someone on his back with a flick of his foot.,waves his hands into the sink.,talks for a few moments before someone laughs.,1\n12553,lsmdc1047_Defiance-91553,11616,\"He pulls him up with both hands and slams him back onto the muddy ground. He goes to do it again, but someone\",He pulls him up with both hands and slams him back onto the muddy ground.,\"He goes to do it again, but someone\",gold,\"is lying around, looking worn.\",pulls the chain away from her.,fists him in the groin.,has made lazily down the driveway.,2\n12554,lsmdc1047_Defiance-91553,11609,\"He steps towards someone, who's looking at the blood on his fingers. Someone\",\"He steps towards someone, who's looking at the blood on his fingers.\",Someone,gold,is fired.,hits back and launches himself at his brother.,squints at the unshaven man holding a long piece of steel.,looks back at the unseen someone.,1\n12555,lsmdc1047_Defiance-91553,11631,They carefully tread along a low - tiled roof. They,They carefully tread along a low - tiled roof.,They,gold,turn down the corridor.,align a man hunched.,climb down at the far end of the roof and hurry towards the interior of the ghetto.,sit down on lounges on a campfire table.,2\n12556,lsmdc1047_Defiance-91553,11626,Someone looks at them both and affectionately pats someone on the cheek. He,Someone looks at them both and affectionately pats someone on the cheek.,He,gold,touches him.,turns to find someone standing behind him.,smiles politely at his next joke and gets to the car.,\"walks up into her kitchen, eating a half - eaten chicken.\",1\n12557,lsmdc1047_Defiance-91553,11617,\"He goes to do it again, but someone fists him in the groin. He\",\"He goes to do it again, but someone fists him in the groin.\",He,gold,puts the user back on.,\"does n't eat the boy, triumphant after the explosion.\",\"pushes someone down on his back, picks up a round stone and prepares to throw it.\",\"goes over and walks off with both hands, acutely lifelessly to the floor, blood soaking his skin.\",2\n12558,lsmdc1047_Defiance-91553,11629,\"At Nowogrodek, Nazi soldiers stand guard as Jewish men and women wearing yellow stars file into the ghetto. People\",\"At Nowogrodek, Nazi soldiers stand guard as Jewish men and women wearing yellow stars file into the ghetto.\",People,gold,they enter the crowded parlor as someone climbs an ancient staircase.,stride purposefully past the ghetto entrance.,\"cling to the slanted roof, tearing apart the chess pieces.\",are walking in footage of a lake.,1\n12559,lsmdc1047_Defiance-91553,11611,\"Someone tries to pull them apart, but is shoved to one side. Someone 'next blow\",\"Someone tries to pull them apart, but is shoved to one side.\",Someone 'next blow,gold,catches his breath as he wanders back to his office and chats with someone.,sends someone reeling to the ground.,\"is broken through a wall, followed by the blast.\",\"hits someone, taking him off, knocking him down.\",1\n12560,lsmdc1047_Defiance-91553,11632,They climb down at the far end of the roof and hurry towards the interior of the ghetto. Someone,They climb down at the far end of the roof and hurry towards the interior of the ghetto.,Someone,gold,out into an adjacent courtyard.,nods at someone who nods back.,nods for the boys to leave the house.,\"appears to bowl, and wipes his mouth.\",1\n12561,lsmdc1047_Defiance-91553,11619,\"People watch in mute shock. With a livid scowl, someone\",People watch in mute shock.,\"With a livid scowl, someone\",gold,\"stops, looks at someone, who holds him with one hand nearby.\",doubles the front and hunches over and pulls the hood off the mannequin.,enters as all the other troops cheerful hit it.,drops the stone on the ground and gets to his feet.,3\n12562,lsmdc1047_Defiance-91553,11621,\"Someone sits up and wipes his mouth. Straightening his jacket, he\",Someone sits up and wipes his mouth.,\"Straightening his jacket, he\",gold,rolls down his sleeves.,sits up and lays his hands on his hips.,looks around at the assembled people staring at him.,hangs his eyes as he rings a doorbell.,2\n12563,lsmdc1047_Defiance-91553,11620,\"With a livid scowl, someone drops the stone on the ground and gets to his feet. Someone\",\"With a livid scowl, someone drops the stone on the ground and gets to his feet.\",Someone,gold,lowers the chain around his wrist and catches it.,holds a scrap of paper to his index finger.,opens the door and finds someone standing in a cage.,sits up and wipes his mouth.,3\n12564,lsmdc1047_Defiance-91553,11630,People stride purposefully past the ghetto entrance. They carefully,People stride purposefully past the ghetto entrance.,They carefully,gold,lift the door close to meet someone's.,find out a greenish - shaped squeegee on the conveyor belt.,tread along a low - tiled roof.,riddle a stair wall with one of the bookshelves.,2\n12565,lsmdc1047_Defiance-91553,11627,\"He turns to find someone standing behind him. Without a word, he\",He turns to find someone standing behind him.,\"Without a word, he\",gold,\"grabs his machine gun, and with a line of volunteers behind, strides off past someone.\",\"grabs a little impatiently, then rubs the pale silvery white robe over her head.\",crosses the room wearing a light - glow wind rising through the night air.,\"tips his dressing gown and faces someone, then gives someone a pleading look.\",0\n12566,lsmdc1047_Defiance-91553,11608,People and the others look accusingly at someone. He,People and the others look accusingly at someone.,He,gold,cuts them off and taking off his necklace.,\"steps towards someone, who's looking at the blood on his fingers.\",turns to page and sees someone.,looks at her for a moment.,1\n12567,anetv_dn1qrAHh7k0,12285,Man spread buter on the bread and is toast in a pan while the cheese is melting. when the sandwixh is ready the man,Man spread buter on the bread and is toast in a pan while the cheese is melting.,when the sandwixh is ready the man,gold,serve it in a white plate.,grinds the gray wood over the sandwich kneels on the table.,holds the ax's egg and put it in a carrier pile.,\"is eating a hot cream and mustard, baking in the sausage of a bread oven.\",0\n12568,anetv_dn1qrAHh7k0,6013,\"A person slathers the bread with mayo, then tops it with provolone cheese. The sandwich\",\"A person slathers the bread with mayo, then tops it with provolone cheese.\",The sandwich,gold,is then fried in a pan.,is relax on the bread and down plate.,is tied up while removing something and slipping the potato in a pot.,is and shows the entire vast salad.,0\n12569,anetv_jJ5t3ZUxP7Y,17671,A man walks over to the end of a table that has a bunch of red cups arranged in a triangle. He,A man walks over to the end of a table that has a bunch of red cups arranged in a triangle.,He,gold,begins to toss a ball into the cups.,\"continues running around the floor, then lets the ball go to the ground.\",uses the piece of cake and holds it aloft to reach the top of the cup.,\"bends down over, begins the game of the player and then takes it.\",0\n12570,anetv_jJ5t3ZUxP7Y,17672,He begins to toss a ball into the cups. The video goes to black and a graphic,He begins to toss a ball into the cups.,The video goes to black and a graphic,gold,shines on a page.,appears to close the clip.,shows a picture of a lost person.,shows next scenes of his donut park.,1\n12571,anetv_nezTU6Bq5hM,19200,The camera zooms in on the boy as he cuts the grass. The boy,The camera zooms in on the boy as he cuts the grass.,The boy,gold,stops cutting and pushes the grass with the shears.,spins around and touches one of the dog on the tail.,looks to the crowd.,\"picks up the items, ready to cut the grass.\",0\n12572,anetv_nezTU6Bq5hM,19199,A teen is squatting in the grass cutting grass with hedge shears. The camera,A teen is squatting in the grass cutting grass with hedge shears.,The camera,gold,shows the man mowing the lawn.,zooms in on the boy as he cuts the grass.,focuses on all the croquet clips in the yard.,shows a man writing a company design.,1\n12573,anetv_nezTU6Bq5hM,9178,A man is kneeling down on grass. He,A man is kneeling down on grass.,He,gold,picks up a plate of food and puts it in front.,is on a board skating around a corner.,is playing the harmonica.,is clipping the grass with large scissors.,3\n12574,anetv_nezTU6Bq5hM,9179,He is clipping the grass with large scissors. The man,He is clipping the grass with large scissors.,The man,gold,uses green yarn and yarn to trim the bush as she goes to and ends and deals with the other.,is wearing a yellow and red shirt.,licks the cut legs.,uses the brush to groom a white towel on his section.,1\n12575,anetv_GNg5kjnJlOE,19292,A close up of stilts are shown followed by a man bouncing around. Several people,A close up of stilts are shown followed by a man bouncing around.,Several people,gold,are shown jumping up and down on the stilts past one another.,are seen walking around on a building playing traditional instruments.,are shown jumping on a motorcycle while others watch on the stilts.,riding on bumper cars and bumping into one another.,0\n12576,anetv_GNg5kjnJlOE,19293,Several people are shown jumping up and down on the stilts past one another. They,Several people are shown jumping up and down on the stilts past one another.,They,gold,wave to other people in the pool as well as members performing a tango routine.,are also seen doing tricks and tricks back with the head while raising them over and catching the public.,continue performing several tricks and ends with walking back on stage.,continue bouncing around as well as with other people.,3\n12577,lsmdc1057_Seven_pounds-98053,11344,She nods and smiles at him. Someone,She nods and smiles at him.,Someone,gold,lowers his lip briefly and stares down at someone.,\"stands, her hands on someone's face.\",leans in front of her as she runs off.,scratches his eyebrow shyly.,3\n12578,lsmdc1057_Seven_pounds-98053,11346,They are still at the table. Someone,They are still at the table.,Someone,gold,holds out a hand to protect herself.,has a paddle in his hand on his shoulder.,crosses to the bed and folds her arms.,frowns as she listens to someone humming.,3\n12579,lsmdc1057_Seven_pounds-98053,11345,Someone scratches his eyebrow shyly. Someone,Someone scratches his eyebrow shyly.,Someone,gold,follows his gaze towards the house.,opens an office bottle.,stretches out her upturned palm and gestures for someone to sit at the table.,presses his hand to someone's parted lips.,2\n12580,lsmdc1057_Seven_pounds-98053,11335,\"Someone, wearing his customary gray suit and shirt and tie, enters someone's bedroom carrying the gift. One of the walls\",\"Someone, wearing his customary gray suit and shirt and tie, enters someone's bedroom carrying the gift.\",One of the walls,gold,is very tiny and the middle - action thief shoos someone from the room.,\"climbs out, followed by a long row of cluttered houses and dark veiled gray lawns and dark corners.\",is made taped open on a dark brick wall.,\"is covered in photos, some of someone at different ages.\",3\n12581,lsmdc1057_Seven_pounds-98053,11339,Someone puts the box down and catches sight of himself in a full - length mirror. Someone,Someone puts the box down and catches sight of himself in a full - length mirror.,Someone,gold,comes out of the bedroom wearing polo shirt and jeans.,drops the box onto his hand and starts to leave.,\"drops the light, which glows from the crystal light on his fingertips.\",hikes up in his jacket and grabs the bar outside a window.,0\n12582,lsmdc1057_Seven_pounds-98053,11337,\"He watches as someone carries the casserole she took out of the oven to a candlelit table. On another table, the flame of a tea light\",He watches as someone carries the casserole she took out of the oven to a candlelit table.,\"On another table, the flame of a tea light\",gold,glows in the darkness.,is licking a flame.,flashing four months earlier.,turns up in color.,0\n12583,lsmdc1057_Seven_pounds-98053,11340,Someone comes out of the bedroom wearing polo shirt and jeans. He,Someone comes out of the bedroom wearing polo shirt and jeans.,He,gold,rolls onto his back.,puts two plates on the counter.,notices a tag hang from his suitcase.,stands at the opened french windows.,3\n12584,lsmdc1057_Seven_pounds-98053,11336,\"Someone moves slowly over to the window, which has a fine net curtain over it. He\",\"Someone moves slowly over to the window, which has a fine net curtain over it.\",He,gold,\"sits with her hands on her knees, then hurries out.\",leads the way through the vault of the motorcycle and up the flooded staircase.,watches as someone carries the casserole she took out of the oven to a candlelit table.,walks through the living room holding an empty red jewelry awning.,2\n12585,lsmdc1057_Seven_pounds-98053,11341,He stands at the opened French windows. Someone,He stands at the opened French windows.,Someone,gold,lugs his life jacket.,is sitting at the table.,is now about ten.,goes inside and closes the door behind her.,1\n12586,lsmdc1057_Seven_pounds-98053,11342,Someone is sitting at the table. Someone,Someone is sitting at the table.,Someone,gold,is on a white.,plants a joint over her cheek.,looks down at his outfit.,\"smiles, and blinks peach tears.\",2\n12587,anetv_f0lxilPpXeM,10108,A man and woman are sitting behind a desk talking. A doctor,A man and woman are sitting behind a desk talking.,A doctor,gold,holds a martini paper and a paper.,is performing surgery in a room.,starts painting on a blade on the wall.,is holding another piece of pancake to the head.,1\n12588,anetv_f0lxilPpXeM,10110,A woman in a red shirt is standing at a counter talking. A woman,A woman in a red shirt is standing at a counter talking.,A woman,gold,picks her shirt up and begins holding a shovel snow and putting it in her hand.,wipes her mouth with a napkin.,walks into frame and begins painting and the front of a hedge.,is standing on a green hot bed with her hands up.,1\n12589,anetv_Ygt3z-K-ZMQ,17591,Women mix a variety of alcoholic drinks for consumption. Steps,Women mix a variety of alcoholic drinks for consumption.,Steps,gold,get some sugar d'oeuvres for money.,\"in the square, the woman enters from the highway.\",are shown for a beautiful whiskey sour.,dishes make the charges very narrow in the street with the food items.,2\n12590,anetv_sCzauf2u4dc,12238,We see one lady in a sunny field with a hose. We,We see one lady in a sunny field with a hose.,We,gold,\", people, and other children ride past areas on a bench as a party watches by the barn.\",to two men in red.,see a brunette entrance behind a human and the woman split to the right girl.,see a small dog on the back of the horse.,3\n12591,anetv_sCzauf2u4dc,12240,\"We see the small dog, then two ladies and the small dog. The lady\",\"We see the small dog, then two ladies and the small dog.\",The lady,gold,strokes the dog with a cord and lets spin.,is sitting playing with the dog.,places the hand on the cat.,parts the cigarette with one paw.,1\n12592,anetv_sCzauf2u4dc,12236,We see the emblem on the opening screen. We,We see the emblem on the opening screen.,We,gold,see a man jump on an back beam.,see a title screen and deposit information on an counter perfect.,see the cats hand in red zips.,switch to images of two ladies with horses.,3\n12593,anetv_sCzauf2u4dc,12239,We see a small dog on the back of the horse. We,We see a small dog on the back of the horse.,We,gold,\"see the small dog, then two ladies and the small dog.\",then see the person speak to the camera.,see a green ending title screen.,go behind a tree.,0\n12594,anetv_sCzauf2u4dc,12237,We switch to images of two ladies with horses. We,We switch to images of two ladies with horses.,We,gold,see a lady taking a paint brush from an image of a raft.,see one lady in a sunny field with a hose.,then see a man doing dishes using a large knife.,see the right lady jumping off the concrete.,1\n12595,anetv_nHkVfEKklJA,15803,A young boy jokes around sitting at a drum set. A boy,A young boy jokes around sitting at a drum set.,A boy,gold,talks while by using the rake.,takes out playing a flute with his friends.,plays a drum set at home.,plays a set of drums while hammering a drum with hands in the background.,2\n12596,anetv_nHkVfEKklJA,15804,A boy plays a drum set at home. The parents,A boy plays a drum set at home.,The parents,gold,leave the room within scale 15.,put the elephant on a trunk and leans on the christmas tree.,kick on drums while play.,watch the boy play the drums.,3\n12597,lsmdc3059_SALT-28828,2017,She remembers riding in the back of an suv in Korea with someone's concerned gaze fixed on her. She,She remembers riding in the back of an suv in Korea with someone's concerned gaze fixed on her.,She,gold,slams her left hand on its right and lunges at the action.,\"looks at him, the woman before him.\",\"faces him, revealing her bruised swollen eye.\",\"is listening, but someone catches her breath and hangs up the phone in front of her.\",2\n12598,anetv_NH2TVi42xDE,11512,The words do You Have a Dog that Can't Be Groomed? appear in a comic font on screen. A woman is holding a little yorkie on a couch and it,The words do You Have a Dog that Can't Be Groomed? appear in a comic font on screen.,A woman is holding a little yorkie on a couch and it,gold,manuscripts waiting for them to be left.,'s mouthwash to take something out of the adjacent room.,is lit on lawn.,becomes very upset when it sees a grooming brush.,3\n12599,anetv_NH2TVi42xDE,3969,The person then begins brushing the dog while the dog fights back. The person,The person then begins brushing the dog while the dog fights back.,The person,gold,continues to brush the horse while she brushes the horse's fur.,continues grooming the dog and ends by cuddling him.,jumps around on the side and glides away from the fence.,continues brushing and then brushing the horses hooves as he goes on completing the ride.,1\n12600,anetv_NH2TVi42xDE,3968,A person is seen sitting on a coach holding a brush as well as dog in their hands. The person then,A person is seen sitting on a coach holding a brush as well as dog in their hands.,The person then,gold,begins grooming the dogs in a wrap while the girl continues riding around.,begins brushing the dog while the dog fights back.,pulls the hair down and begins glancing to the camera.,pushes a camel around and leads into several clips of the dogs flying around.,1\n12601,anetv_NH2TVi42xDE,11513,The woman uses positive reinforcement over several days and is able to brush the dog with little fuss. The woman,The woman uses positive reinforcement over several days and is able to brush the dog with little fuss.,The woman,gold,begins talking to the camera while several dogs hang from a tree trimmer.,gives a little smile as she steps off.,cuddles and kisses the dog and credits roll.,smells with the disclaimer and continues to spray the dog.,2\n12602,lsmdc0006_Clerks-48947,18017,\"He grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle. Someone\",\"He grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle.\",Someone,gold,smiles as he gazes up at the open shelf beside him.,\"hurtles out the polished wood, tilting back.\",grabs italian bread and smacks it into someone's face as he rushes him blindly.,\"stops, then sees someone standing on the sidewalk, entering.\",2\n12603,lsmdc0006_Clerks-48947,18015,Someone jumps to his feet as someone comes at him again. Someone,Someone jumps to his feet as someone comes at him again.,Someone,gold,tumbles into the cakes as someone's products scatter beneath and around him.,\"steals a calf, then swings and is nearly just in the doorway.\",leaps from his back to the large metal door and steps down beside it.,is lifted over his head.,0\n12604,lsmdc0006_Clerks-48947,18016,Someone tumbles into the cakes as someone's products scatter beneath and around him. He,Someone tumbles into the cakes as someone's products scatter beneath and around him.,He,gold,\"grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle.\",wraps the designer scarf around another lens.,pulls someone's cap off showing crushed tile on the floor.,tables bears him deep vulture.,0\n12605,lsmdc0006_Clerks-48947,18014,\"Someone throws his fists into someone's midriff, throwing him back into the magazine rack. Someone\",\"Someone throws his fists into someone's midriff, throwing him back into the magazine rack.\",Someone,gold,watches someone on his shoulder.,takes off a folded piece of paper.,jumps to his feet as someone comes at him again.,\"ignores him, starts up the stairs.\",2\n12606,lsmdc0006_Clerks-48947,18018,\"Someone leaps at his feet, and someone grabs the shelves, knocking aspirin over until SOMEONE - shrieking - sprays something in someone's face. Someone\",\"Someone leaps at his feet, and someone grabs the shelves, knocking aspirin over until SOMEONE - shrieking - sprays something in someone's face.\",Someone,gold,looks down at someone lying out of bed.,chases him out of the frame.,knocks from the door in the bolt and misses.,coral in the side compartment 'which fill the darkness of the night.,1\n12607,lsmdc0006_Clerks-48947,18012,Someone lies on the floor alone. Someone,Someone lies on the floor alone.,Someone,gold,slides from the room.,\"throttles someone, choking him to the ground.\",drags someone out from under it.,helps someone's arm.,1\n12608,lsmdc0006_Clerks-48947,18013,\"Someone throttles someone, choking him to the ground. Someone\",\"Someone throttles someone, choking him to the ground.\",Someone,gold,holds his pursuers out and slams him on the beam.,\"throws his fists into someone's midriff, throwing him back into the magazine rack.\",hits the women in the head and whacks him with a black cape.,lands in his fighter's arms.,1\n12609,anetv_t5Br7yOUe4g,15307,There's a gymnast wearing red leotards performing gymnastics on a horse bar in a large stadium with spectators and a panel of judges. She,There's a gymnast wearing red leotards performing gymnastics on a horse bar in a large stadium with spectators and a panel of judges.,She,gold,\"get thrown, and the person does a ballet forward routine.\",begins by getting onto the horse bar and does a front flips and a couple back flips.,performs forward roping a jump in a professional stadium as she dismounts by jumping off.,jumps up and down on a beam.,1\n12610,anetv_t5Br7yOUe4g,15309,Then she continues twisting her legs and does another side flips by twisting her body. She then,Then she continues twisting her legs and does another side flips by twisting her body.,She then,gold,\"does to tie the harness, and s three zoom in.\",wins and jumps down under a large bin and stands over to the right and walks across the finish line.,begins to shave her legs while still looking not.,gracefully does few more continuous back flips and jumps off the bar and walks away.,3\n12611,anetv_t5Br7yOUe4g,15308,She begins by getting onto the horse bar and does a front flips and a couple back flips. Then she,She begins by getting onto the horse bar and does a front flips and a couple back flips.,Then she,gold,\"performs on the bag and performs several stunts and stunts, going around and twirling.\",shakes it up and spits it into the air.,\"lassos, ties a lasso, and ties something off of her sides.\",continues twisting her legs and does another side flips by twisting her body.,3\n12612,anetv_qL7kMgxpFJY,8593,The person flattens the plaster and begins rubbing it on the wall. He,The person flattens the plaster and begins rubbing it on the wall.,He,gold,continues putting plaster on the wall while looking back to the camera.,shows off the piece of chalks and moving its wings at the end he begins speaking quickly.,takes a circular wooden bucket that is placed on the metal floor.,uses the tool to do wax over the ski to repair the ski process between skis.,0\n12613,anetv_qL7kMgxpFJY,8592,A person is seen kneeling over a bucket and laying plaster on a board. The person,A person is seen kneeling over a bucket and laying plaster on a board.,The person,gold,moves the vacuum off back and fourth to the wall.,makes several attempts as well as padding to the wall.,kicks a tool one by one while another casts the discs on the ground.,flattens the plaster and begins rubbing it on the wall.,3\n12614,anetv_qL7kMgxpFJY,6201,A man pours concrete onto a plate. He,A man pours concrete onto a plate.,He,gold,runs holding a large axe.,proceeds to clean the sink.,is wearing a blue uniform.,grabs the bowl and rubs it on the sandwich.,2\n12615,anetv_qL7kMgxpFJY,6203,He then spreads it onto a wall. He,He then spreads it onto a wall.,He,gold,smooths the sews with a brush.,places the powder down one of the furnished paper onto a large wooden table.,spreads it around evenly.,uses a tool to release the rod.,2\n12616,anetv_gV6W0rAHyZg,1810,He is holding a lacrosse stick in his hands as he explains the techniques of the game. He,He is holding a lacrosse stick in his hands as he explains the techniques of the game.,He,gold,makes hand gestures to demonstrate the correct method of holding the lacrosse stick for effective playing technique.,continues the process while finally talking back to the camera.,plays it for fun as they cross to the trees.,goes up and over multiple times in several techniques.,0\n12617,anetv_gV6W0rAHyZg,1809,There's a man in a white shirt standing in an open field doing a tutorial for Expert Village on how to play lacrosse. He,There's a man in a white shirt standing in an open field doing a tutorial for Expert Village on how to play lacrosse.,He,gold,stands up and walk back to pet players.,is holding a lacrosse stick in his hands as he explains the techniques of the game.,explains his technique of holding the hammer and starts driving back the game of croquet throughout the field.,takes turns to shot at the camera.,1\n12618,lsmdc0009_Forrest_Gump-50566,7406,The television reveals someone as he is awarded the Medal of Honor by someone. Someone,The television reveals someone as he is awarded the Medal of Honor by someone.,Someone,gold,takes a seat in front of a colored elephant.,\"leans back with a smile and his gun, watching the set of false lips getting louder.\",gently averts his eye as a warm smile spreads across his face.,leans and whispers into someone's ear.,3\n12619,lsmdc0009_Forrest_Gump-50566,7410,The three men in the barber shop look up in disbelief. Someone,The three men in the barber shop look up in disbelief.,Someone,gold,\", except with his hands on his fist, struggling to acknowledges a movement.\",looks up in shock.,\"hikes down the hall, smiling off his two friends before he goes.\",\"embeds himself in someone's body, lunges backward, and collapses to the ground.\",1\n12620,lsmdc0009_Forrest_Gump-50566,7408,\"The television revealing someone as he drops his pants, bends over and shows the bullet wound on his bare buttocks. Someone\",\"The television revealing someone as he drops his pants, bends over and shows the bullet wound on his bare buttocks.\",Someone,gold,bends down and grabs the boy's tattoo.,looks down and smiles.,returns to the news roll.,\"freezes as the thug pounds someone's left knee, smashing his face.\",1\n12621,lsmdc0009_Forrest_Gump-50566,7409,Someone looks down and smiles. The three men in the barber shop,Someone looks down and smiles.,The three men in the barber shop,gold,fill several rows of taxis.,\"watch stunned, wide - faced with mr.\",begin polishing the floor with the foot waterfall.,look up in disbelief.,3\n12622,anetv_r-xtiGmrKxA,12478,A man is standing in the gym alone and begins talking to the camera. He then,A man is standing in the gym alone and begins talking to the camera.,He then,gold,puts his fist up and begins shadow boxing as he moves around the room.,talks with a man who is showing the harmonica going effortlessly.,begins inside the bar explaining.,kneels down and picks up the weights and holds it up.,0\n12623,anetv_r-xtiGmrKxA,12480,\"Next, he adds his feet and starts to kick the air and does twist as if someone is there hitting him. Finally, he\",\"Next, he adds his feet and starts to kick the air and does twist as if someone is there hitting him.\",\"Finally, he\",gold,drives up to the end and rapidly turns high in the air without raising his head.,\"knocks loose, goes back onto the mat and drops the tile in and out again.\",turns on his living room and goes back to pretend he is playing and stops by an object.,comes back to the screen slightly out of breath to end the video.,3\n12624,anetv_r-xtiGmrKxA,12479,\"He then puts his fist up and begins shadow boxing as he moves around the room. Next, he\",He then puts his fist up and begins shadow boxing as he moves around the room.,\"Next, he\",gold,dismounts and lands on the ground in front of his mother.,continues to change different settings for all the drums.,adds his feet and starts to kick the air and does twist as if someone is there hitting him.,begins playing the saxophone with several people who are holding hands and hitting it back and forth as he approached them.,2\n12625,anetv_nibek2g971I,12845,\"A man is walking a very low, red tightrope. Another man\",\"A man is walking a very low, red tightrope.\",Another man,gold,joins him on the rope as they walk back and forth on it.,is wresting his feet quickly in the finish line.,is very still playing at the end of a course.,is resting on a man's shoes.,0\n12626,anetv_nibek2g971I,2004,He is then shown balancing on a rope in front of a crowd. He,He is then shown balancing on a rope in front of a crowd.,He,gold,gets up and walks away from a camera.,walks across the rope.,walks in and practices his routine.,is shown wearing a smaller indian suit and white uniform.,1\n12627,anetv_nibek2g971I,2002,A picture of a man with a hat is shown. The same man,A picture of a man with a hat is shown.,The same man,gold,is wake boarding above the beach.,is followed by several clips of people playing around in the field.,is shown without a hat.,\"talks to the cameraman, paper and uses a hammer to make a wall.\",2\n12628,anetv_nibek2g971I,12844,A photo of clowns and foreign language is shown. A man,A photo of clowns and foreign language is shown.,A man,gold,is doing a tutorial on how to assemble pole stances.,is seen through the front in his tire with a spear.,is lifting off a bike back and forth and using it.,\"is walking a very low, red tightrope.\",3\n12629,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1543,They sip their drinks and stare straight ahead. Someone,They sip their drinks and stare straight ahead.,Someone,gold,lands in a horizontal line.,looks at someone and sighs.,are torn from the bones on the ice.,\"lies fully clothed on a bed, then turns his head back to look asleep.\",1\n12630,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1551,Someone smiles at the driver. The car,Someone smiles at the driver.,The car,gold,crosses to a vendor.,slides out of the parking lot.,knocks on the door.,\"pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer.\",3\n12631,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1553,His long cape hangs in a puddle on the pavement. He,His long cape hangs in a puddle on the pavement.,He,gold,plods down a corridor with his head bowed.,\"steps into the room, clutching his eyes with his hand.\",races toward his cottage.,looks up at an electronic billboard from which someone stares at him.,3\n12632,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1552,\"The car pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer. His long cape\",\"The car pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer.\",His long cape,gold,\"has his arms crooked at his sides, and then wonders what he is doing.\",\"is completely dead by the tree roots, and the figure is about to reach the grass.\",\"is tied up against the barred white half of a window, his trousers rushed to a pile.\",hangs in a puddle on the pavement.,3\n12633,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1548,People sit in the back. Someone,People sit in the back.,Someone,gold,winds the window down.,turns toward the pool.,guides someone from the box.,gets on a stool and walks off.,0\n12634,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1547,Someone has her back to him. People,Someone has her back to him.,People,gold,receive a slip of paper.,sit in the back.,helps samantha up someone.,walk over to underling road.,1\n12635,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1546,\"He raises his glass, then turns away, popping the fangs back in his mouth as he makes his way through the crowd. Someone\",\"He raises his glass, then turns away, popping the fangs back in his mouth as he makes his way through the crowd.\",Someone,gold,leaps from the railing.,follows him toward the water.,has her back to him.,\"offscreen, wearing black suit shorts strides down the aisle, someone darts through a musical - link bar by someone.\",2\n12636,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1549,\"Someone steps back from the car window and knits his hands together by his chin. Drenched by the rain, he\",Someone steps back from the car window and knits his hands together by his chin.,\"Drenched by the rain, he\",gold,sits with his body on his platform.,stumbles back towards the parking window.,stares at them with window glides up.,opens another worried door.,2\n12637,lsmdc3011_BLIND_DATING-824,14950,Someone takes another bite of his sandwich and chews it thoughtfully. Someone,Someone takes another bite of his sandwich and chews it thoughtfully.,Someone,gold,spread out the cheeks.,pulls out a sandwich then lifts the truffles over his head.,lowers his cell phone.,\"freezes mid chew, then swallows hard.\",3\n12638,lsmdc0010_Frau_Ohne_Gewissen-51175,13829,Someone enters through the living room archway with someone behind her. She,Someone enters through the living room archway with someone behind her.,She,gold,sees people and trots over to the desk.,climbs down and comes to the door of a stall.,passes altogether through the lawn.,leads him towards the door.,3\n12639,lsmdc0010_Frau_Ohne_Gewissen-51175,13834,Someone opens the door a crack. Both,Someone opens the door a crack.,Both,gold,are bursting in the room.,leaps fast and up for support.,start to drop their arms on each other.,\"look at the stairs, where someone is going up.\",3\n12640,lsmdc0010_Frau_Ohne_Gewissen-51175,13833,People move close to the door. Someone,People move close to the door.,Someone,gold,opens the door a crack.,hands her her wand.,is transfixed by the mysterious troll.,\"stands nearby, pointing at a neighbor's boy.\",0\n12641,lsmdc0010_Frau_Ohne_Gewissen-51175,13832,\"In the background someone begins to ascend the stairs, carrying his coat and glass. People\",\"In the background someone begins to ascend the stairs, carrying his coat and glass.\",People,gold,notices someone watching him and carries the money case to the altar.,move close to the door.,are exchanging torches as they draw guns.,\"takes a few steps, whose mist smeared with dust.\",1\n12642,lsmdc0010_Frau_Ohne_Gewissen-51175,13831,On the way he picks up his hat. In the background someone,On the way he picks up his hat.,In the background someone,gold,\"begins to ascend the stairs, carrying his coat and glass.\",plays with her hair.,glances into the room at the other.,pushes a flying suitcase out in the office.,0\n12643,lsmdc0010_Frau_Ohne_Gewissen-51175,13830,She leads him towards the door. On the way he,She leads him towards the door.,On the way he,gold,picks up his hat.,walks downstairs into the hallway.,can crush the room.,unfastens the cotton bag that he used to tie the zipper.,0\n12644,lsmdc0010_Frau_Ohne_Gewissen-51175,13825,He gathers up his coat and tie and picks up his glass. Someone,He gathers up his coat and tie and picks up his glass.,Someone,gold,is zipping up his briefcase.,gives an opportunity to approach someone.,is in some way going through the mall watching.,walks into the curling room.,0\n12645,lsmdc0010_Frau_Ohne_Gewissen-51175,13821,He withdraws the top copy barely enough to expose the signature line on the supposed duplicate. Again people,He withdraws the top copy barely enough to expose the signature line on the supposed duplicate.,Again people,gold,are walking in the cafeteria.,look at each other.,watch the rest of the animal.,exchange a quick glance.,3\n12646,lsmdc0010_Frau_Ohne_Gewissen-51175,13835,\"Both look at the stairs, where someone is going up. Someone\",\"Both look at the stairs, where someone is going up.\",Someone,gold,is running very fast and pinned to the ground.,\"'s someone stands at the doorway, forcing a teenage friend to force her way to her elbows to prod at her own body.\",takes her hand off the doorknob and holds on to someone's arm.,\"slowly scramble up to his feet but flings onto the tile, leaving a garbage bag on, under the area yelling.\",2\n12647,lsmdc0010_Frau_Ohne_Gewissen-51175,13827,Someone trundles off towards the archway. Someone leads the way and someone,Someone trundles off towards the archway.,Someone leads the way and someone,gold,\"sees someone, holding a corner nervously.\",begins to crash through the walls.,shoves the sheriff into the widely furnished room.,\"goes after her, his briefcase under his arm.\",3\n12648,lsmdc0010_Frau_Ohne_Gewissen-51175,13819,Someone has unscrewed his fountain pen. He,Someone has unscrewed his fountain pen.,He,gold,hands it to someone.,notices people struggling to keep up.,looks tense and waggles.,steps in and the two nearby wistfully look around.,0\n12649,lsmdc0010_Frau_Ohne_Gewissen-51175,13823,Casually someone lifts the briefcase and signed applications off someone's lap. Someone,Casually someone lifts the briefcase and signed applications off someone's lap.,Someone,gold,wears a red roller.,has poured some more whisky into his glass.,\"looks from left to right, she sits back down, picks up the singed script and adjusts one.\",races up the stairs up to the father.,1\n12650,lsmdc0010_Frau_Ohne_Gewissen-51175,13828,\"Someone leads the way and someone goes after her, his briefcase under his arm. Someone\",\"Someone leads the way and someone goes after her, his briefcase under his arm.\",Someone,gold,steps toward the table and stands.,is nowhere to be seen.,enters through the living room archway with someone behind her.,marches back to someone.,2\n12651,lsmdc0010_Frau_Ohne_Gewissen-51175,13826,Someone is zipping up his briefcase. Someone,Someone is zipping up his briefcase.,Someone,gold,trundles off towards the archway.,watches angrily as someone races toward the car.,gives his son his own smile.,\"pin him, is politely at the door.\",0\n12652,lsmdc0010_Frau_Ohne_Gewissen-51175,13824,He tries the siphon but it is empty. He,He tries the siphon but it is empty.,He,gold,\"attempts to hit the ball, teasing the thug for a moment.\",\"drops into the abyss, making his way through the crowd.\",grabs the meat and fumbles.,gathers up his coat and tie and picks up his glass.,3\n12653,lsmdc3081_THOR-37871,14159,\"On Earth, someone and someone drive through the desert at night. They\",\"On Earth, someone and someone drive through the desert at night.\",They,gold,stares down at a tree on the sunny beach.,fuss on someone and answer side to side.,approach the impact crater now lit by floodlights and swarming with shield agents.,\"play, grin, table beside bed.\",2\n12654,anetv_GyOLWizKXaE,6429,A man is outside with a lawn utensil and he begins cutting the yard. He moves a knob and then continues to cut the grass and another woman,A man is outside with a lawn utensil and he begins cutting the yard.,He moves a knob and then continues to cut the grass and another woman,gold,walking inside and cuts the grass to pieces.,is then seen walking in front of him.,is shown cutting the yard.,runs and walks very much when it's done.,2\n12655,anetv_ZMG8WE3Y22k,11267,Men then arrive in a field and take the rafts out before more pictures are shown. The men then,Men then arrive in a field and take the rafts out before more pictures are shown.,The men then,gold,stand in the field with their paddles and actually get in the raft demonstrating the proper way to row.,continue skiing down the river while folding the instruments and instruments or taking an underwater shot of jump.,walk to the goalie holding the cow and is tied into the boat like butter.,begin to play paintball with various men walking to the river by a camera in the end.,0\n12656,anetv_ZMG8WE3Y22k,11266,Several pictures of different individual are shown white water rafting as an intro for a video. Men then,Several pictures of different individual are shown white water rafting as an intro for a video.,Men then,gold,perform a routine in a large pool field make an flips and bang goals while walking them into the swimming pool.,arrive in a field and take the rafts out before more pictures are shown.,begin milling around on landing on stilts place while running.,do the hills in front of a house.,1\n12657,anetv_ZMG8WE3Y22k,11268,\"The men then stand in the field with their paddles and actually get in the raft demonstrating the proper way to row. Finally, they are in the water and all of them\",The men then stand in the field with their paddles and actually get in the raft demonstrating the proper way to row.,\"Finally, they are in the water and all of them\",gold,are seen walking on the water as others sails.,stop surfing and look at each other.,begin to paddle throughout the water.,fall to the ground and continue kayaking.,2\n12658,anetv_ZMG8WE3Y22k,11269,\"Finally, they are in the water and all of them begin to paddle throughout the water. More people join them and they eventually\",\"Finally, they are in the water and all of them begin to paddle throughout the water.\",More people join them and they eventually,gold,get out of the water and walk back to land.,get preparing for a swim to dive in slow motion.,get some water off the boat as they fish to pan behind them.,begin rafting under the water.,0\n12659,lsmdc3057_ROBIN_HOOD-27678,6215,\"Someone grabs someone's sword. Later, someone\",Someone grabs someone's sword.,\"Later, someone\",gold,climbs to the sub.,\"brushes his hair to the side, stopping to see his long hair.\",rides the king's white steed.,storms into his office.,2\n12660,anetv_lSbbzsOjwno,743,A young girl is seen scrubbing a small dog down with soap next to a tub full of water. She,A young girl is seen scrubbing a small dog down with soap next to a tub full of water.,She,gold,continues cleaning the potato as well as holding up the brush.,pours more soap onto the dog and drags him over and leads into pictures of the dog all cleaned.,\"are pausing some ballet moves, then gets to the side of the faucet and rubs soap on her legs.\",sprays cream on her face with a brush while cleaning her water and using a towel to clean out her bare hands.,1\n12661,anetv_Cy56IkwsQVs,17872,\"A young man stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling. A small white balls\",\"A young man stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling.\",A small white balls,gold,are shown side by side and the woman finishes and talks to the camera.,is thrown across the table as the people attempt to throw the balls in the blue cups from across the table.,are in the middle of a young man demonstrating the class and his friend.,are shown behind a bar while more other women look bored.,1\n12662,anetv_Cy56IkwsQVs,17871,\"Several young people, talk and laugh while standing around a table covered in beer cans and blue plastic cups. A young man\",\"Several young people, talk and laugh while standing around a table covered in beer cans and blue plastic cups.\",A young man,gold,\"in red cap is talking to the other, ready to talk to the camera about how to make another drink.\",\"lifts a bowling ball, while the crowd cheers for them.\",speaks to the camera while the people begin sweeping in the ice.,\"stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling.\",3\n12663,anetv_Cy56IkwsQVs,17873,A small white balls is thrown across the table as the people attempt to throw the balls in the blue cups from across the table. In the final moments of the clip a ball flies across the table and the men,A small white balls is thrown across the table as the people attempt to throw the balls in the blue cups from across the table.,In the final moments of the clip a ball flies across the table and the men,gold,react in a triumphant way throwing their arms in the air in celebration.,begin to pong from other shot.,waving and different techniques begin.,side to hit.,0\n12664,lsmdc3004_500_DAYS_OF_SUMMER-1430,17941,She grabs a dummy remote from a coffee table and pretends to watch tv. Someone,She grabs a dummy remote from a coffee table and pretends to watch tv.,Someone,gold,\"passes, stops, turns around and mounts the stairs.\",removes her sunglasses as she makes its way through a main door.,\"frowns, funny, and gets a bottle up next to his vest.\",jumps up from the sofa they've been sitting on and walks off.,3\n12665,lsmdc3004_500_DAYS_OF_SUMMER-1430,17949,A whole Chinese family is indeed staring at them from the on - suite bathroom display. They,A whole Chinese family is indeed staring at them from the on - suite bathroom display.,They,gold,hold someone locked as they kiss.,face each other on the bed.,\"bartender tiptoes onto the bed and someone leans in the chair, holding a phone to his ear.\",attempts to open a large propeller as it flicks its tongue further.,1\n12666,lsmdc3004_500_DAYS_OF_SUMMER-1430,17946,Someone dives onto a double bed. Someone,Someone dives onto a double bed.,Someone,gold,sees a rumpled man.,hooks his open mic onto the bars.,presses our hand to his cluttered chest.,crawls on after her.,3\n12667,lsmdc3004_500_DAYS_OF_SUMMER-1430,17947,Someone crawls on after her. They,Someone crawls on after her.,They,gold,escape into the side of the hut and look around.,grabs something above the railing and slips in.,\"look around, slowly.\",peer down into the trapped shaft.,2\n12668,lsmdc3004_500_DAYS_OF_SUMMER-1430,17945,Someone chases her through the huge furniture store. Someone,Someone chases her through the huge furniture store.,Someone,gold,continues on and posing for a manicure on a table.,shuts a satchel in the unit.,sharply sweeps through with cigar books.,dives onto a double bed.,3\n12669,lsmdc3004_500_DAYS_OF_SUMMER-1430,17943,\"He clowns, sitting at a table. He\",\"He clowns, sitting at a table.\",He,gold,turns to the half - poster.,carries a piece of biscuits in the basement.,walks through to another display.,wipes the end with her own knife.,2\n12670,lsmdc3004_500_DAYS_OF_SUMMER-1430,17938,Someone nods awkwardly and has no idea what to say. Someone,Someone nods awkwardly and has no idea what to say.,Someone,gold,\"dismisses him with a salute, then turns to someone.\",\"extends his hand and nods, and hugs it back.\",looks tense and put away.,is brought up on the pavement.,0\n12671,lsmdc3004_500_DAYS_OF_SUMMER-1430,17948,\"They look around, slowly. A whole Chinese family\",\"They look around, slowly.\",A whole Chinese family,gold,sits serenely at a birthday table.,\"is mounted on the sidewalk, practicing their huddle.\",is indeed staring at them from the on - suite bathroom display.,\"is crossing the tight ropes that they can see, heads in hand and mouth.\",2\n12672,anetv_pv73L2pQX1s,14381,A flame exit a tube and a light sparkles form the welding machine. Two men,A flame exit a tube and a light sparkles form the welding machine.,Two men,gold,work out a gun and take them above their numbers.,begin scraps in the cables.,pass on the ground from the center of the room.,weld to join to big cylinders.,3\n12673,anetv_pv73L2pQX1s,14380,A person is welding a small square metal object. A flame exit a tube and a light sparkles,A person is welding a small square metal object.,A flame exit a tube and a light sparkles,gold,float from throughout the tower.,form the welding machine.,is shown again outside.,light cloud rises into the air.,1\n12674,anetv_fX3tcnTdAN4,10409,The boys lacrosse team is shown working out. They,The boys lacrosse team is shown working out.,They,gold,are then running drills on the gravel.,\"is home with their name, and chains on the sides.\",are getting bigger and bigger.,are practicing bull fighting in a ring.,0\n12675,anetv_fX3tcnTdAN4,10410,\"Next, the team is in a scrimmage on the field. After that they\",\"Next, the team is in a scrimmage on the field.\",After that they,gold,\"were shown playing an actual game, running back and forth.\",begin to take their turns while scores the ball.,get into each other who posed waiting.,walk down the field and jump into a field.,0\n12676,anetv_fX3tcnTdAN4,10411,\"After that they were shown playing an actual game, running back and forth. Lastly a few members\",\"After that they were shown playing an actual game, running back and forth.\",Lastly a few members,gold,are at a professional game.,are in dream of playing soccer at a curling game.,watch and music as well hula skating around doing many flips.,begin smiling and showing moves to protect their faces and interviews.,0\n12677,lsmdc1004_Juno-6559,14336,\"In class, someone swallows some Tic Tacs as someone appears by his side clutching her folders. Another boy\",\"In class, someone swallows some Tic Tacs as someone appears by his side clutching her folders.\",Another boy,gold,tries to bite someone.,looks around and finds his wallet filled with letters.,stands on the other side of the work table.,leaps out through a roof window.,2\n12678,lsmdc1027_Les_Miserables-6334,4378,Someone looks up to the heavens. Someone,Someone looks up to the heavens.,Someone,gold,\"looks around, thoughtfully.\",takes a mustached american's hand and holds it up in front of him.,walks through dark banners above the courtyard and runs up.,moves toward her and crouches down beside someone.,0\n12679,lsmdc1027_Les_Miserables-6334,4379,\"Outside, someone steals a dead soldier's jacket, peaked cap and musket. Disguised as a soldier, he\",\"Outside, someone steals a dead soldier's jacket, peaked cap and musket.\",\"Disguised as a soldier, he\",gold,begins to scratch in shabby across - armed belly eyes.,strides through irregular holsters.,makes his way to the barricade where students keep watch.,struggles a pull on his boys hand.,2\n12680,lsmdc1027_Les_Miserables-6334,4382,\"He is let in, and guns are aimed at him. Someone\",\"He is let in, and guns are aimed at him.\",Someone,gold,jumps into another cab.,slams through the windows with the foot of gunfire hands someone.,has a noose around his neck.,scrambles through the rising water.,2\n12681,lsmdc1027_Les_Miserables-6334,4380,\"Disguised as a soldier, he makes his way to the barricade where students keep watch. He\",\"Disguised as a soldier, he makes his way to the barricade where students keep watch.\",He,gold,sits at a window with no one watching him.,takes off his cap.,reaches into his pocket.,scans the produce chamber then glances over his shoulder and spots the magazine.,1\n12682,lsmdc1027_Les_Miserables-6334,4381,\"He takes off his cap. He is let in, and guns\",He takes off his cap.,\"He is let in, and guns\",gold,fall off the ground.,are aimed at him.,\"ready, chalks down the lorry to the ground.\",disappear out of the machine.,1\n12683,anetv_XKvzx2cD9KY,13162,A line of men are then shown wearing sumo wrestling outfits. Two people,A line of men are then shown wearing sumo wrestling outfits.,Two people,gold,throw the blue ball back and forth.,get inside of the ring and begin fighting.,are shown fencing with one another while people walk on.,are shown playing ping pong at a ping pong table.,1\n12684,anetv_XKvzx2cD9KY,13163,Two people get inside of the ring and begin fighting. The two people,Two people get inside of the ring and begin fighting.,The two people,gold,tie up the dragon created by one wolf inside as it loses their own winner.,grab each other's necks and try to knock their opponent down to the ground.,talk to the camera as the man laughs and they fight him.,bow argue with each other after the tug of war.,1\n12685,anetv_XKvzx2cD9KY,13161,There is a large crowd shown clapping and two hosts speaking in the beginning. A line of men,There is a large crowd shown clapping and two hosts speaking in the beginning.,A line of men,gold,play beer pong continuously.,engage up a high jump rope.,are then shown wearing sumo wrestling outfits.,\"dressed in fencing uniforms are shown on a patio, engage in a wrestling match.\",2\n12686,anetv_P4dx0xrr6fM,2486,He spins in circles around a platform. He,He spins in circles around a platform.,He,gold,\"tosses a ball a great distance, and walks away.\",turns on the pommel and throws another again in slow motion.,\"continuously kicks and spins, grabbing each other for good measure.\",sits in the middle of the parking lot.,0\n12687,anetv_P4dx0xrr6fM,2485,An athlete walks onto a field. He,An athlete walks onto a field.,He,gold,performs his cartwheels in the air.,spins in circles around a platform.,\"is surrounded by a white, yellow, green ball.\",is being ready with some javelin defenders on the bar.,1\n12688,lsmdc3083_TITANIC2-38853,4623,The man smiles at a bearded crewmate. They,The man smiles at a bearded crewmate.,They,gold,face someone's face.,see a man on a table.,see the man on right sides.,pass alongside upper balconies running down the side of the ship.,3\n12689,anetv_2WyRPSKFUi8,10294,He is blowing leaves away while he is moving. He,He is blowing leaves away while he is moving.,He,gold,drops the bar and walks in a pattern to the ground.,continues in a circle as he keeps blowing the leaves.,dips the cat in covered turn.,is cutting the dog all around.,1\n12690,anetv_2WyRPSKFUi8,18725,A man is riding a riding lawn mower backwards. He,A man is riding a riding lawn mower backwards.,He,gold,pushes a lawn mower along a path.,is blowing leaves across the yard as he goes.,cameraman in a black slanting into a home actions.,stands over the mower and lands on the yard.,1\n12691,anetv_2WyRPSKFUi8,18726,He is blowing leaves across the yard as he goes. He then,He is blowing leaves across the yard as he goes.,He then,gold,jumps in and seats on the ground.,climbs in dark again and sits back a little.,\"puts on immaculately waxing goggles and run to picking himself up as he is being lay on a large, white shovel.\",\"rolls back forward, doing the same pattern back and forth until the yard is clear of debris.\",3\n12692,anetv_2WyRPSKFUi8,10293,A man is riding a lawn mower backward down a hill. He,A man is riding a lawn mower backward down a hill.,He,gold,starts shaving his dad's arm.,is blowing leaves away while he is moving.,goes to the long grass then skips in an aisle.,goes through the open trailer all over the yard.,1\n12693,anetv_RAmQyeaBu-k,18874,Several shots are shown of signs and landscapes and leads into a person tying a rope. Several people,Several shots are shown of signs and landscapes and leads into a person tying a rope.,Several people,gold,are seen wandering around and smiling to the camera as well as climbing up a rock.,are shown jumping up and down the long rope.,rides around in a circle while the camera pans around the area.,are seen moving around on the sides while others watch on the sides.,0\n12694,anetv_RAmQyeaBu-k,18875,Several people are seen wandering around and smiling to the camera as well as climbing up a rock. More people,Several people are seen wandering around and smiling to the camera as well as climbing up a rock.,More people,gold,surf down moving land and snowboarding again.,are seen climbing up the rock as well as a man climbing down.,are shown riding onto a bridge and leads into a man paddling past.,ride around the boats while the camera zooms in and then zooms in and out.,1\n12695,anetv_BnkUgUQBED0,5326,A man holding a cat sits down on the chair. The man,A man holding a cat sits down on the chair.,The man,gold,stops and looks him right in the eye.,clips the cats fingernails.,wipes his face with a rag.,begins talking to his phone.,1\n12696,anetv_BnkUgUQBED0,5325,We see a chair with a pillow on it. A man holding a cat,We see a chair with a pillow on it.,A man holding a cat,gold,sits down on the chair.,is sitting in front of it.,stands in its paws.,is on the ground next to him.,0\n12697,anetv_BnkUgUQBED0,5327,The man clips the cats fingernails. The man,The man clips the cats fingernails.,The man,gold,\"picks up a skeletal torch and it trims the front, with its visual grooms.\",strokes the cat's head.,puts part of the man's leg.,lifts his clipper and beard.,1\n12698,anetv_BnkUgUQBED0,5328,The man strokes the cat's head. The man,The man strokes the cat's head.,The man,gold,puts the rake on the dirt.,rubs his brow with it.,continues to mow the lawn with a mower.,plays with the cat rocking it back and forth.,3\n12699,anetv_U37UAWdI-vY,9127,A group of people are seated around a dining table. A man,A group of people are seated around a dining table.,A man,gold,is playing a harmonica for the group.,is standing next to a pot standing next to them.,has a match in front of them.,is talking to a camera in a dark room.,0\n12700,anetv_U37UAWdI-vY,3301,\"As he plays, more of the young kids gather around to watch him play as he switches the two harmonicas. When he is finished, the young boys\",\"As he plays, more of the young kids gather around to watch him play as he switches the two harmonicas.\",\"When he is finished, the young boys\",gold,finishes with one regular racecars.,are shown singing in the water and they are playing the guitars at a computer.,begin smiling and start to clap in amazement.,laugh to himself as they continue to play.,2\n12701,anetv_U37UAWdI-vY,3300,\"A family is sitting at a table and the grandpa begins positioning himself as if he is clapping his hands but he is really playing the harmonica. As he plays, more of the young kids\",A family is sitting at a table and the grandpa begins positioning himself as if he is clapping his hands but he is really playing the harmonica.,\"As he plays, more of the young kids\",gold,gather around to watch him play as he switches the two harmonicas.,join him and start playing games with him.,walk up and walk around him while jumping all the way to the man.,sit together and start playing the drums.,0\n12702,anetv_U37UAWdI-vY,9128,A man is playing a harmonica for the group. They,A man is playing a harmonica for the group.,They,gold,sit and listen intently as he plays.,talk onto the microphone and then dance.,hold the blended raft over and a thumbs up.,play the guitar and stand up.,0\n12703,anetv_3Z4b34lBnyU,5374,\"A referee walks past the man, a man from the ground stands up and the very large man kicks him, picks him up, then slams him onto the rink. The man just\",\"A referee walks past the man, a man from the ground stands up and the very large man kicks him, picks him up, then slams him onto the rink.\",The man just,gold,attempts to get back to the end and gestures backwards.,raises his javelin to a man sitting in front of it and then hits his throat.,remains and then moves back and forth again.,lays there writhing in pain.,3\n12704,anetv_3Z4b34lBnyU,5373,\"A very large man wearing a black speedo is standing in a wrestling rink huffing and puffing. A referee walks past the man, a man from the ground stands up and the very large man\",A very large man wearing a black speedo is standing in a wrestling rink huffing and puffing.,\"A referee walks past the man, a man from the ground stands up and the very large man\",gold,in black walks across the table to him.,throw 16 inch cones on the left of his left and begins to win.,\"kicks him, picks him up, then slams him onto the rink.\",is catching the discus.,2\n12705,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7185,127,\"Leaving someone's room, someone hears voices from the open door of someone's store room. Someone\",\"Leaving someone's room, someone hears voices from the open door of someone's store room.\",Someone,gold,is now seen wheeled under a padded swing of bed mattress.,sees the dark mark on someone's arm.,sits by a window with a bunch of flowers.,makes a low - sunk sketch then looks back in the mirror.,1\n12706,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7185,126,\"He puts his wand to his temple and drops a thread of memory into the pensieve. Leaving someone's room, someone\",He puts his wand to his temple and drops a thread of memory into the pensieve.,\"Leaving someone's room, someone\",gold,\"pauses and runs up the bedroom, his arms draped around his waist.\",hears voices from the open door of someone's store room.,\"waits by his reading glasses, breathing deeply.\",takes off the pink dress and stares at the necklace through beaches.,1\n12707,anetv_fgoXpih2Kws,8447,A boy is standing in an empty room. another boy,A boy is standing in an empty room.,another boy,gold,is walking onto the stands.,walks up to the first boy.,congratulates them as they finish.,puts two beer balls in his back.,1\n12708,anetv_fgoXpih2Kws,13893,One boy gets the other one pinned to the floor. One boy,One boy gets the other one pinned to the floor.,One boy,gold,hits the ball with his racket until the other men hit him.,throws a disc and sprints away.,has an arm from the right after his punches and walks away.,starts slapping the other boy's head and then picks him up upside down.,3\n12709,anetv_fgoXpih2Kws,13892,Two young boys play fight in a room with a black and white checkered floor. One boy,Two young boys play fight in a room with a black and white checkered floor.,One boy,gold,spins the baton and stadium his baton.,gets the other one pinned to the floor.,gets up and swims to the other edge.,throws a ball towards the camera and slides to the ground.,1\n12710,lsmdc0029_The_Graduate-64159,13222,He pushes the card and a pen toward someone. Someone,He pushes the card and a pen toward someone.,Someone,gold,whacks him with its michelle art.,notices a black photo at the end of the screen.,stands up and walks back to the railing.,\"writes his name on the card and then stares at it for a moment, crumples it up and fills out a second card.\",3\n12711,lsmdc0029_The_Graduate-64159,13221,Someone walks to the front desk and stands there. He,Someone walks to the front desk and stands there.,He,gold,walks over to the kitchen table where someone reads from the cracks.,notices his date on one of the screens.,crosses to the piano and takes a pistol.,pushes the card and a pen toward someone.,3\n12712,lsmdc0029_The_Graduate-64159,13220,Someone walks out of the Veranda Room and into the lobby. Someone,Someone walks out of the Veranda Room and into the lobby.,Someone,gold,lies in bed next to someone and sits next to someone.,\"stands in front of the police car parked, then turns to shut off the light.\",\"shakes his head, head at his business people.\",walks to the front desk and stands there.,3\n12713,anetv_p2C4MeV02GU,7114,Woman is talking to the camera holding a big cat on her legs that is sitting in a cat cushion and its caressing his head. woman,Woman is talking to the camera holding a big cat on her legs that is sitting in a cat cushion and its caressing his head.,woman,gold,\"is doing a serious mitten and then begins doing makeshift crunches, whips and others gymnasts in a living room.\",is holding a nail clipper and cut the cat's nails explaining the right way to do it.,is making curlers biting his lip.,is wearing white sweater and yellow sweater and is pretending to put makeup on them.,1\n12714,anetv_6VT2jBflMAM,8577,A camera pans all around a backyard and leads into a large group of people playing kickball. The camera,A camera pans all around a backyard and leads into a large group of people playing kickball.,The camera,gold,continues to capture the kids sitting on the other side skating and laughing back and fourth and smiling.,capturing her reaction and spins himself around while standing up and walking out past the crowd.,pans around a arena walking and holding up balls in their hands.,pans around to the cameraman as well as close ups of the others and people running around.,3\n12715,anetv_6VT2jBflMAM,8578,The camera pans around to the cameraman as well as close ups of the others and people running around. More clips,The camera pans around to the cameraman as well as close ups of the others and people running around.,More clips,gold,are shown of them moving with sad colors and speaking to one another.,are shown of the game being played with people running around and catching the ball with one another.,are shown of athletes throwing paintball sport and shooting shots to a distance.,are shown of look back and ends with another person on the side.,1\n12716,anetv_6VT2jBflMAM,18026,Several people are in a backyard playing a game of kickball and having a great time. A kid,Several people are in a backyard playing a game of kickball and having a great time.,A kid,gold,\"stands on the field, then joins introduces the hammer throw.\",is taking a bat and look at the camera in smart a..,is laying cement on the goal and is getting it in the air.,is recording the game and showing himself the camera at the same time.,3\n12717,lsmdc3032_HOW_DO_YOU_KNOW-2306,13302,Someone gives him a nod. Someone,Someone gives him a nod.,Someone,gold,rubs a forehead with his hands.,is lying in the kitchen.,pours blueberries over their cereal.,leads his head away.,2\n12718,lsmdc3032_HOW_DO_YOU_KNOW-2306,13301,He adds Life cereal to their bowls. Someone,He adds Life cereal to their bowls.,Someone,gold,hammers his fist against a shelf.,gives him a nod.,hides in the van.,looks over at people.,1\n12719,lsmdc3032_HOW_DO_YOU_KNOW-2306,13300,He grins and someone gives him an irritated look. Standing behind her he,He grins and someone gives him an irritated look.,Standing behind her he,gold,wraps his arms around her waist.,gives her a thin box.,\"leans over the card, which falls halfway through the pavement.\",puts his hand for her to go straight under her touch.,0\n12720,anetv_o8ja3mhecQI,4999,A kid is hanging from a bar. They,A kid is hanging from a bar.,They,gold,swings at a pinata.,have trouble going on the stilts.,continue on onto the board.,put a red rope over the bar.,3\n12721,anetv_o8ja3mhecQI,5782,A girl is swinging on pull up bars and she jumps down. While on the ground she,A girl is swinging on pull up bars and she jumps down.,While on the ground she,gold,hangs up the side and then runs.,ends she stands up and grips the pole with both hands as another man appears.,kicks her feet in the air and kicks her feet down.,\"grabs a resistance band, loops it around her arm and climbs back on the pull up bars.\",3\n12722,anetv_o8ja3mhecQI,5000,They put a red rope over the bar. They,They put a red rope over the bar.,They,gold,clap their hands and swing.,perform the splits onto the court.,start to raise the cup to their chests.,put the black handles of the rope onto their legs.,3\n12723,anetv_Sx7YgFLnwfM,6318,A woman is sitting in a chair talking. A persons hand,A woman is sitting in a chair talking.,A persons hand,gold,is shown with hopscotch equipment.,is playing rock paper scissors with a robot.,punching in a small shop and the girl customers.,talks into a large drum match.,1\n12724,anetv_Sx7YgFLnwfM,6319,A persons hand is playing rock paper scissors with a robot. A man in a white shirt,A persons hand is playing rock paper scissors with a robot.,A man in a white shirt,gold,is filming a man holding a bat.,is holding smoke from a hookah.,is standing behind the wall looking into a mirror.,is talking to the woman.,3\n12725,anetv_nYlAXMmPWw0,3559,They dance around in a circle. They,They dance around in a circle.,They,gold,continue dancing together in the room.,switch with the back of their hand up against each other's chest.,have brought a hug and start playing the music.,talk to each other as they play their song.,0\n12726,anetv_nYlAXMmPWw0,3558,Five women are in a room dancing. They,Five women are in a room dancing.,They,gold,sit in a chair and start dancing on the floor.,start dancing with batons as they play.,dance around in a circle.,play foosball and dance in a studio.,2\n12727,anetv_xq7Gr0FUwpo,4395,\"Then, people water ski in the water pulling by a boat. A woman water ski while two men\",\"Then, people water ski in the water pulling by a boat.\",A woman water ski while two men,gold,explains the movements made by the girl.,watch on the side of a boat.,ski on the lift.,get to exercise behind a boat.,0\n12728,anetv_xq7Gr0FUwpo,4397,\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he falls in the water. After, a person water ski and then\",\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he falls in the water.\",\"After, a person water ski and then\",gold,falls in the water.,continue to water ski in their land.,\"starts surfing, then flips.\",takes off in the rowing machine and starts working out on the machine.,0\n12729,anetv_xq7Gr0FUwpo,4396,\"A woman water ski while two men explains the movements made by the girl. After, a man water ski holding a water sky rope tie to a pole while a person watch, then he\",A woman water ski while two men explains the movements made by the girl.,\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he\",gold,puts a metal on the boat.,adds attachment to cameras on the street.,succeeds in the moves.,falls in the water.,3\n12730,anetv_xq7Gr0FUwpo,4394,\"Scientist writes a formula on a board, then the scientists run and jumps in the water. Then, people\",\"Scientist writes a formula on a board, then the scientists run and jumps in the water.\",\"Then, people\",gold,play water polo inside a house in a circular town.,turn and see the screen.,are standing on the water and shakes the mop with water.,water ski in the water pulling by a boat.,3\n12731,anetv_xq7Gr0FUwpo,4393,\"Two scientist throws stones in the water while talking. Scientist writes a formula on a board, then the scientists\",Two scientist throws stones in the water while talking.,\"Scientist writes a formula on a board, then the scientists\",gold,begin to teach their name.,run and jumps in the water.,march to the front of it display the subscribe links.,talk in an oil using a flight marker.,1\n12732,anetv_5BAvlsHfTLk,5043,\"He starts with the main body and then goes to attach the wheels, the handle and the pedals. Then he\",\"He starts with the main body and then goes to attach the wheels, the handle and the pedals.\",Then he,gold,goes with some pliers and begins measuring the wall while hundreds of feet around also and round on the machine are down.,goes ahead and attaches the rubber tires.,goes through green range with cable bike wheels.,pushes the wheel clockwise and begins skiing several times.,1\n12733,anetv_5BAvlsHfTLk,5041,Santa Cruz Nomad Bike company is demonstrating how to install a bike. The company representative,Santa Cruz Nomad Bike company is demonstrating how to install a bike.,The company representative,gold,shows the riders how they should reach for the links.,is putting together the bike parts piece by piece.,is removing twister supplies there.,comes and cuting the mounds of alcohol to make the pedal together.,1\n12734,anetv_5BAvlsHfTLk,5042,The company representative is putting together the bike parts piece by piece. He,The company representative is putting together the bike parts piece by piece.,He,gold,replaces his wheelchair using an oriental rock to brush on the board.,\"starts with the main body and then goes to attach the wheels, the handle and the pedals.\",leans wearily on the machine.,precision the oversized rod and using a tool to fit the bolts.,1\n12735,anetv_5BAvlsHfTLk,5044,Then he goes ahead and attaches the rubber tires. After that he,Then he goes ahead and attaches the rubber tires.,After that he,gold,runs all the piling off his bike and replaces the screws.,picked up the little nut and landed it upright with a strap on his head.,fixes the handles of the bike with black rubber tops.,shows the pawn and put the handle on the bike.,2\n12736,anetv_5BAvlsHfTLk,5045,\"He finally reinforces all the parts and ensures the bike is ready for use. when he's done, he\",He finally reinforces all the parts and ensures the bike is ready for use.,\"when he's done, he\",gold,sets it on a plate and gets in in front of him again with the food.,starts to form the middle for it.,gets on the bike and rides it.,gets some more and continues to iron the coat.,2\n12737,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3035,\"It's someone, wearing the blue and white Spectrespecs, advertised on the quibbler. She\",\"It's someone, wearing the blue and white Spectrespecs, advertised on the quibbler.\",She,gold,\"appears different while man and - little grated in the ocean is seeing his mom activate the spinner, but he sounds weird.\",sees a cloud of silvery dust hovering above the floor and pulls out her wand.,\"walk to the shops airfield, hats, and sandals.\",turns back towards someone shades slowly.,1\n12738,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3034,He steps onto the almost deserted platform and glances along it. Steam,He steps onto the almost deserted platform and glances along it.,Steam,gold,moves up from the mops.,rises as he walks away.,slows as a door closes.,falls from the floor.,1\n12739,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3029,Someone stands swinging a lantern on the Hogwarts platform as the express pulls up. People,Someone stands swinging a lantern on the Hogwarts platform as the express pulls up.,People,gold,applauds from the dining room.,\"wait for someone at the carriage door, finally leave their compartment.\",stand in the middle of the courtyard.,\"mistress looks out the window but gets up to see someone, still standing alone, with his hands folded.\",1\n12740,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3033,Someone flings the invisibility cloak back over someone and walks out of the carriage. He,Someone flings the invisibility cloak back over someone and walks out of the carriage.,He,gold,looks to someone and slips.,hurries out to the door.,faces the elf's arms.,steps onto the almost deserted platform and glances along it.,3\n12741,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3030,He pulls down the blind. Something,He pulls down the blind.,Something,gold,falls from the rack and crashes to the floor.,clicks in half.,looks around the man.,runs at the bottom of the room.,0\n12742,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3036,Someone's nose is broken and bloody. They,Someone's nose is broken and bloody.,They,gold,people get out of the mercedes and walk out across a wharf for uniformed soldiers.,watch the draw anxiously.,reach the school gates.,\"opens his eyes, peering down over the trailer's inscription.\",2\n12743,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3032,He stamps on the helpless someone. Someone,He stamps on the helpless someone.,Someone,gold,grabs one of the dead trots.,flings the invisibility cloak back over someone and walks out of the carriage.,\"gazes at his reflection in the mirror, and closes it on its back, then lifts it to his chest.\",looks at his mentor.,1\n12744,anetv_ufBz1xfqQoM,2889,A host is seen speaking into a microphone and a couple walks out on stage. The couple,A host is seen speaking into a microphone and a couple walks out on stage.,The couple,gold,begin dancing with one another while others walk on stage.,begin playing the drums while looking to each other.,continue dancing while the group pans around to around them continues to dance.,continues to sit and speak to one another while a microphone plays.,0\n12745,anetv_ufBz1xfqQoM,19344,We see a lady close up. A man,We see a lady close up.,A man,gold,performs a split mark while we see the man making long jumps and at the neck.,enters a bathroom and walks up steps to second level.,spins a woman round and round.,speaks before the kitchen and we see a man sitting on the floor.,2\n12746,anetv_ufBz1xfqQoM,19342,We then see other people waiting to dance. We,We then see other people waiting to dance.,We,gold,see a game on tv.,see people hitting a ball near the goal.,see 6 couples dancing together.,see the christmas tree on the swing.,2\n12747,anetv_ufBz1xfqQoM,19340,The lady hops in place. A bunch of men,The lady hops in place.,A bunch of men,gold,perform a long jump.,wash dishes in a court.,stand on the field.,walk out onto the stage.,3\n12748,anetv_ufBz1xfqQoM,19339,We see two people enter a dance floor. The people then,We see two people enter a dance floor.,The people then,gold,take their turn dancing in a competition.,see the lady perform their exotic routine and belly dancing together.,enter a room as the camera moves on a light.,switch and back dancing.,0\n12749,anetv_ufBz1xfqQoM,19341,A bunch of men walk out onto the stage. We then,A bunch of men walk out onto the stage.,We then,gold,see more people wearing boxing wrestler pads.,see a man walking towards swings and ax.,see other people waiting to dance.,see them jumping from ankle stilts.,2\n12750,anetv_ufBz1xfqQoM,2890,The couple begin dancing with one another while others walk on stage. People,The couple begin dancing with one another while others walk on stage.,People,gold,cheer as they audience stands around and leads into more people dancing together.,cheer and ends up speaking to the camera as people dance and laugh.,dance while everyone watches them break and leave with their hands.,are then seen dancing on stage and holding one another in front of them.,0\n12751,anetv_ufBz1xfqQoM,19343,We see 6 couples dancing together. We,We see 6 couples dancing together.,We,gold,see a man in a large field playing a drums.,see a lady close up.,see a man stage a stage.,see the girls do karate points.,1\n12752,anetv_Jz7bt59z6Qg,16451,A woman turns the camera around to show the back of her horse. She then,A woman turns the camera around to show the back of her horse.,She then,gold,brushes her hair back and brushes.,undoes the ring and puts it in her mouth.,takes another kite while piece of telephoto lens still visible beneath her shoulder.,turns the camera back around to show herself and her friends.,3\n12753,anetv_Jz7bt59z6Qg,9957,Three women and one man ride horses on an unpaved road in the forest. A man riding a horse,Three women and one man ride horses on an unpaved road in the forest.,A man riding a horse,gold,jumps on a dirt road.,walks beside a calf.,follows the three women.,uses a lasso to guide his child on the grass.,2\n12754,anetv_Jz7bt59z6Qg,16450,Some people are shown horseback riding on a trail. A woman,Some people are shown horseback riding on a trail.,A woman,gold,is shown riding a horse as she dances.,walks forward as she ties the laces of one of the horses.,is seen riding a horse on a pier.,turns the camera around to show the back of her horse.,3\n12755,lsmdc3067_THE_ART_OF_GETTING_BY-32177,2745,\"Someone and someone peer around the nose of a truck and watch him enter a coffee shop called, The Cup & Saucer. Someone\",\"Someone and someone peer around the nose of a truck and watch him enter a coffee shop called, The Cup & Saucer.\",Someone,gold,glances to the desk.,removes a substance from a rag bottle.,roll his eyes at someone's place.,takes a seat at a window.,3\n12756,lsmdc3067_THE_ART_OF_GETTING_BY-32177,2744,Wearing his trench coat someone slowly ambles along with a briefcase in hand. Someone and someone,Wearing his trench coat someone slowly ambles along with a briefcase in hand.,Someone and someone,gold,rush over to the table where a reverend approaches.,\"peer around the nose of a truck and watch him enter a coffee shop called, the cup & saucer.\",walk along the station.,sit together in the vortex.,1\n12757,anetv_Qg3Lih9PTBM,12744,\"Two sumos wrestle fiercely while a judge watch them. Then, the sumo wearing black slip\",Two sumos wrestle fiercely while a judge watch them.,\"Then, the sumo wearing black slip\",gold,and tie hector into a barber chair.,pushed out of the ring the other sumo.,into each other and twist off the paper.,\"away, and hug to the women.\",1\n12758,anetv_Qg3Lih9PTBM,12745,\"Then, two sumo wrestle and trip with the judge, one of them falls. After, the sumosn continue wrestling and the sumo with black slip\",\"Then, two sumo wrestle and trip with the judge, one of them falls.\",\"After, the sumosn continue wrestling and the sumo with black slip\",gold,involves the performance covering it.,is repeated and kneeling down on the counter.,fails then throw them to their opponent.,falls out the ring.,3\n12759,anetv_BcMHGhxdMl4,9696,\"As he talks, a variety of people from different ages and genders are moving around and hitting each other. The action keeps going, and the man\",\"As he talks, a variety of people from different ages and genders are moving around and hitting each other.\",\"The action keeps going, and the man\",gold,continues to cycle at the debris still falling.,performs the same thing.,talks about the events and extends his arm about the cars.,talks to the camera with a woman in full costume taking a turn.,2\n12760,anetv_BcMHGhxdMl4,16959,People are driving bumper cars in a amusement park. old man,People are driving bumper cars in a amusement park.,old man,gold,is standing next to man watching the people in bumper cars.,is standing with a friends in front of a man with bumper with his arms behind him as dealer.,holds behind a baseball net.,is in a back tractor in a snow.,0\n12761,anetv_BcMHGhxdMl4,16958,Man is standing behind the fence talking to the camera watching people in driving in bumper cars. people,Man is standing behind the fence talking to the camera watching people in driving in bumper cars.,people,gold,are driving bumper cars in a amusement park.,are in bleachers watching them on the side of the court watching.,are standing in a parking lot on the road in ski gear.,are sitting near the front of the van going down the road.,0\n12762,anetv_BcMHGhxdMl4,9695,\"A man with short black curly hair is standing in the corner of a bumper car room talking. As he talks, a variety of people from different ages and genders\",A man with short black curly hair is standing in the corner of a bumper car room talking.,\"As he talks, a variety of people from different ages and genders\",gold,are shown in front of a house and amid dried freebies.,are moving around and hitting each other.,are shown competing in enlarged photos of the scene a group of men out on stairs outdoors with various group performing.,\"are shown on the screen, including tricks.\",1\n12763,lsmdc3087_WE_BOUGHT_A_ZOO-41078,12589,\"He marches off, but the staff heads in the opposite direction. An entry gate sign\",\"He marches off, but the staff heads in the opposite direction.\",An entry gate sign,gold,gives someone as they enter.,\"reads, rosemoor wildlife park.\",falls open across the room to someone.,appears with teller owners of them.,1\n12764,lsmdc3087_WE_BOUGHT_A_ZOO-41078,12587,\"He rubs someone's shoulder, causing him to turn away in embarrassment. Sitting on someone's shoulder, Crystal\",\"He rubs someone's shoulder, causing him to turn away in embarrassment.\",\"Sitting on someone's shoulder, Crystal\",gold,spins in someone's arms.,slaps a hand over her head.,flies up from a chair around him.,catches his eye on someone.,1\n12765,lsmdc3087_WE_BOUGHT_A_ZOO-41078,12588,\"Sitting on someone's shoulder, Crystal slaps a hand over her head. He marches off, but the staff\",\"Sitting on someone's shoulder, Crystal slaps a hand over her head.\",\"He marches off, but the staff\",gold,bites his arm again.,are close behind chevy.,heads in the opposite direction.,are already across the room.,2\n12766,anetv_Bg526A61c1w,7900,\"He then practices for the event by lifting the big Olympic sized weights. At the competition, he\",He then practices for the event by lifting the big Olympic sized weights.,\"At the competition, he\",gold,picks up the weights from a squatting position before rising up and then throwing the weights down on completion.,throws the discus in confusion and after several balanced down discus rubiks technique.,turns his discus and sits up on his feet.,jumps over a bar with his head on who starts to jab and knocks and wrenches.,0\n12767,anetv_Bg526A61c1w,7899,\"Before an Olympic weight lifting event, a Chinese competitor is shown preparing by working out in a gym. He then\",\"Before an Olympic weight lifting event, a Chinese competitor is shown preparing by working out in a gym.\",He then,gold,throws a discus as man.,engages in discus throw in front of a small crowd.,talks to the camera while bending forward and to show how to properly put the weight on the shoulders for the discus.,practices for the event by lifting the big olympic sized weights.,3\n12768,anetv_PFn7a6eEhb4,6667,The camera zooms in on a baby cow with various title pages shown across the screen. A group of men,The camera zooms in on a baby cow with various title pages shown across the screen.,A group of men,gold,walk through and dressed with pumpkins on a wooden table.,hold onto the men in the back.,ride the black horses riding and side by side.,run around a calf while others hold him down.,3\n12769,anetv_PFn7a6eEhb4,6670,Several men drag him out while a tourist attempts to draw the bull in. The bull nearly grabs him but the boy,Several men drag him out while a tourist attempts to draw the bull in.,The bull nearly grabs him but the boy,gold,brings him to lift the upright while still holding a gun.,puts it in his mouth.,holds another leash and holds onto the dog and holds him up.,makes it on the fence and throws the red blanket on the bull.,3\n12770,anetv_PFn7a6eEhb4,6669,A drunk man attempts to interact with a bull and is flipped into the air. Several men,A drunk man attempts to interact with a bull and is flipped into the air.,Several men,gold,catch them walk on the ground and finish watching the match.,stand in place with the dog and others and try to get a whistle from the screen.,pump their fists and one of the men get up and begin doing different things as the man did the same.,drag him out while a tourist attempts to draw the bull in.,3\n12771,anetv_PFn7a6eEhb4,6668,A group of men run around a calf while others hold him down. A drunk man,A group of men run around a calf while others hold him down.,A drunk man,gold,attempts to interact with a bull and is flipped into the air.,talks on front a horse.,holds out a toy and gives him a thumbs up.,jumps up and helps him down.,0\n12772,anetv_nJMS8jN3uU4,6662,The girl in pink kicks the ball to her brother in the orange shirt while the little kids run around and play. There,The girl in pink kicks the ball to her brother in the orange shirt while the little kids run around and play.,There,gold,girl finishes a routine and walks off down the street.,\", the girl on her hopscotch runs on the hopscotch and onto his back and is watching from the side on the pavement.\",picks her girls arms out and throws her arms down.,'s a little baby sitting on the ground in a baby bouncer watching them play.,3\n12773,anetv_nJMS8jN3uU4,6661,There are four kids of varying ages playing kick ball in their backyard. The girl in pink,There are four kids of varying ages playing kick ball in their backyard.,The girl in pink,gold,stops watching and jumps and makes the basket in her.,kicks the ball to her brother in the orange shirt while the little kids run around and play.,looks around the room reassuringly showing the boy playing sadly in her chair.,picks up two more balls and gives the girl a high five.,1\n12774,lsmdc3041_JUST_GO_WITH_IT-18392,5613,She abruptly gets in the limo. Someone,She abruptly gets in the limo.,Someone,gold,leaps up outside the building and calls to someone as they slide across the floor.,\"turns to someone, who stares agog at him.\",peers out from the bank bus.,bites out in front of the car window as the driver pulls out.,1\n12775,anetv_agZNSscDJww,19104,People are playing a game of lacrosse outside. A man in a blue shirt,People are playing a game of lacrosse outside.,A man in a blue shirt,gold,is skateboarding on a sidewalk.,speaks and sitting down talking.,is standing next to him.,is talking to the camera.,3\n12776,anetv_agZNSscDJww,19103,A man is playing the bagpipes. People,A man is playing the bagpipes.,People,gold,move both legs from the room and out of the front of the room.,are playing a game of lacrosse outside.,are glued to the camera as his introduction goes on to stuff to the right.,are playing inside a foosball shop.,1\n12777,anetv_sX8Rr1o4XWM,2029,A close up of a sign is shown followed by a person dipping paint. The person,A close up of a sign is shown followed by a person dipping paint.,The person,gold,puts paint on the shaver and continues painting the fence.,is then seen spreading paint all around the area while another smiles to the camera.,brushes the paint into a pick and puts them against a tree.,\"starts cutting the shoe block, then wipes paint on the back of the car.\",1\n12778,anetv_sX8Rr1o4XWM,2030,The person is then seen spreading paint all around the area while another smiles to the camera. The men,The person is then seen spreading paint all around the area while another smiles to the camera.,The men,gold,continue to lay plaster down on the walls.,continue to race around the sides while we see his movements.,continue their search and leads into a room of a rolling and block.,then begins to play together while speaking with one another.,0\n12779,anetv_sTtFSpelQk4,5199,The man drifts to the side slightly while talking using the paddle as an anchor in the water and seemingly demonstrating how to paddle using the paddle and hand gestures to explain how to move the paddle and canoe in the water. The man then,The man drifts to the side slightly while talking using the paddle as an anchor in the water and seemingly demonstrating how to paddle using the paddle and hand gestures to explain how to move the paddle and canoe in the water.,The man then,gold,takes off along the pier and does the kayak on the waves in slow motion.,appears again with his wake and walks up the slope while paddling it to jump on the board and pulling over the machine.,\"is entered several people riding past the camera, and we then see people riding on a board surfing the waves.\",pushes away from the camera with the paddle and drifts out into the water before paddling back to the camera again.,3\n12780,anetv_sTtFSpelQk4,5198,A man in a red life vest demonstrates how to paddle in a canoe through gestures and through talking to the camera from a canoe in a body of water. A man in a red canoe,A man in a red life vest demonstrates how to paddle in a canoe through gestures and through talking to the camera from a canoe in a body of water.,A man in a red canoe,gold,and a canoe sits in a canoe paddling while the man climbs the rock next to his lake.,walks down a turbulent river like a kayak fighting after one on a right.,is paddling with one oar in a small body of water while talking to the camera.,\"raft on the river and in an underpass, they walk next to the kayak carrying kayaks into the ocean.\",2\n12781,lsmdc1062_Day_the_Earth_stood_still-100616,15671,She tentatively opens the toilet cubicle door. She,She tentatively opens the toilet cubicle door.,She,gold,looks nervously at the woman in military uniform and nods.,\"climbs inside, leaving a quick photography vision around.\",\"passes out and front door, opens door and shuts it.\",\"smiles at herself, then turns to look at his car.\",0\n12782,anetv_OabVylOVys4,12603,\"One person gets pushed off of the boat, but the others keep going. when they get to shore, they\",\"One person gets pushed off of the boat, but the others keep going.\",\"when they get to shore, they\",gold,have paused for the large raft.,manage to get off the wheel of the boat.,see other people who they know.,launch again and into the kayaks.,2\n12783,anetv_OabVylOVys4,19926,The people speak to one another and eat food as well as swim in the river. People,The people speak to one another and eat food as well as swim in the river.,People,gold,fall off as they wave to the camera.,\"ride in kayaks, eat and cook more food as well as continuing to ride down the river.\",continue speaking with one another and grabbing the instrument.,jump out and watch the titanic.,1\n12784,anetv_NulnzF8avMI,4057,The audience watches and cheers as the announcers give their commentary. He,The audience watches and cheers as the announcers give their commentary.,He,gold,spots someone who walks in and feeds someone.,turns up their hands to pick up the food.,crawls up an arm in a swingset area.,goes up to a hand stand.,3\n12785,anetv_NulnzF8avMI,4056,\"The gymnast gathers his focus, and mounts the pommel horse to begin his event. The audience\",\"The gymnast gathers his focus, and mounts the pommel horse to begin his event.\",The audience,gold,watches him expectantly for a little while.,watches and cheers as the announcers give their commentary.,then dismounts his legs and cheer and dismounts and finishes her routine.,cheers with mounting glee as the gymnast stand and performs the high jump.,1\n12786,anetv_NulnzF8avMI,4059,He picks up his speed once he comes back down from the hand stand. The gymnast,He picks up his speed once he comes back down from the hand stand.,The gymnast,gold,has a nice dismount.,is reeling away around the bars.,walks alongside himself and jumps.,gets a higher plate while the power & and graphic quickly pans to a human.,0\n12787,anetv_NulnzF8avMI,4058,He goes up to a hand stand. He,He goes up to a hand stand.,He,gold,picks up his speed once he comes back down from the hand stand.,that's burmese brand on its tail toward a figure of a faraway man.,\"submerges in the water in a pool of water, and pulls back into the water and is drug out by a swimming pool.\",'s bumps and shadows.,0\n12788,anetv_qz47x5-R-BU,3639,Band is in stage and the front man is singing. woman,Band is in stage and the front man is singing.,woman,gold,is showing how to play hopscotch on stage.,is playing drums wearing a black cap.,has an iron and plays the violin.,is playing harmonica while dancing on a business runway.,1\n12789,lsmdc1023_Horrible_Bosses-81820,9859,Someone smashes him through a window. He,Someone smashes him through a window.,He,gold,rocks back and forth as he's recorded pouch.,snatches his drink.,plummets onto the roof of a parked car.,hits his other half.,2\n12790,lsmdc1023_Horrible_Bosses-81820,9858,Someone drags someone through the office by his tie. Someone,Someone drags someone through the office by his tie.,Someone,gold,zooms into the recording unit.,\"slide down the rug, looking down from it.\",smashes him through a window.,\"approaches someone, who gives a sincere look.\",2\n12791,lsmdc1023_Horrible_Bosses-81820,9860,He plummets onto the roof of a parked car. Someone,He plummets onto the roof of a parked car.,Someone,gold,snaps to from his reverie.,'s suv gets caught by a bullet in the car's roof.,strokes the car as he reverses.,hits him and unconscious him to the floor outside.,0\n12792,lsmdc1044_Pride_And_Prejudice_Disk_Two-89601,12011,Officers from someone's regiment are taking tea at Longbourn. Someone,Officers from someone's regiment are taking tea at Longbourn.,Someone,gold,pulls his chubby butt into the.,is having the time of her life.,is walking fast along the snow path with a skateboarder sitting on the subway lot.,drops his bags and leaves with paper bags in a grassy area to shoot them into the back.,1\n12793,lsmdc3063_SOUL_SURFER-31152,6870,The minivan drives over a bridge. They,The minivan drives over a bridge.,They,gold,pass by some restaurants then spots a few surfers.,wave at the worker someone.,hurtle down from the window toward the house.,see a man chasing break.,0\n12794,anetv_9PP5_HGpu4c,10998,A man is shown in a kitchen segment with a female newscaster. He,A man is shown in a kitchen segment with a female newscaster.,He,gold,removes his finger from a pen sheet and slides them down.,shows her several different ingredients on the table in front of them.,\"skates, while now a record is seen.\",reporter is talking and talking onscreen.,1\n12795,anetv_9PP5_HGpu4c,10999,He shows her several different ingredients on the table in front of them. He then,He shows her several different ingredients on the table in front of them.,He then,gold,\"grabs a glass, adds some ginger cubes with her.\",instructs them on a hot method.,finds the full tennis and dips the glass into a glass.,shows her how to make a stir fry.,3\n12796,anetv_9PP5_HGpu4c,16541,\"The chef then begins to describe the food in front of him and cuts the food to go into the pan. Once completed, he\",The chef then begins to describe the food in front of him and cuts the food to go into the pan.,\"Once completed, he\",gold,cuts eggs in half and cuts up small green things as the woman assists him by turning the food in the pan.,begins to stir the guitar as the shaker drops into small pieces.,puts on his coat and uses the ingredients he show about how to wash the man.,\"mixes it around in a plate, turns it for a bowl, and places it on the plate.\",0\n12797,anetv_9PP5_HGpu4c,16540,The a male and female are shown on a television production stage behind an island with cooking ingredients. The chef then,The a male and female are shown on a television production stage behind an island with cooking ingredients.,The chef then,gold,hurriedly setting something on a baking stove and places a baking pan on the painting.,begins cleaning the bologna from the screen revealing a few bill - michele.,takes a bite of the peanut butter and pulls off the sandwich.,begins to describe the food in front of him and cuts the food to go into the pan.,3\n12798,anetv_9PP5_HGpu4c,16539,A red title screen is shown where a man is tossing food in a frying pan. The a male and female,A red title screen is shown where a man is tossing food in a frying pan.,The a male and female,gold,chef is holding a small bowl and talking.,is seen laying in a table and other lifts and puts a parrot on top of the plate.,are shown on a television production stage behind an island with cooking ingredients.,bowl cooks the drinks.,2\n12799,anetv_9uitA8tmSfE,1390,A woman jumps into a pool. A woman,A woman jumps into a pool.,A woman,gold,kneels next to the woman.,is holding a large camera laughing.,stands on her swings and does several poses.,jumps onto the water then dives in.,1\n12800,lsmdc3068_THE_BIG_YEAR-3301,16932,\"Someone abruptly turns away, listening. Climbing down off a boulder, he\",\"Someone abruptly turns away, listening.\",\"Climbing down off a boulder, he\",gold,backs up and drags someone off his feet.,lets a piece of drinking whisky into his mantel.,loses his footing and falls.,picks himself up and grabs over them.,2\n12801,lsmdc3068_THE_BIG_YEAR-3301,16930,\"His jaw drops as the emerald hued bird hovers over his head. In slow motion, we\",His jaw drops as the emerald hued bird hovers over his head.,\"In slow motion, we\",gold,see a a moon set in the moon.,drift - up into the sky.,glimpse an animated mountain cartoon faces.,watch the beats of its tiny wings.,3\n12802,lsmdc3068_THE_BIG_YEAR-3301,16929,Someone turns to find the hummingbird flying over the gate. His jaw,Someone turns to find the hummingbird flying over the gate.,His jaw,gold,drops as the emerald hued bird hovers over his head.,drops as he crashes into the deflect of someone's knocking.,drops at the end of the engine.,falls as he swallows hard.,0\n12803,lsmdc3068_THE_BIG_YEAR-3301,16933,\"Climbing down off a boulder, he loses his footing and falls. Landing, he\",\"Climbing down off a boulder, he loses his footing and falls.\",\"Landing, he\",gold,falls off the running.,puts on his dry t - shirts.,\"crawls along the ground, then flops over and snaps photos of a bird in flight.\",\"stumbles onto a poop deck, as richard parker peers into the lifeboat, lands back in front and binoculars.\",2\n12804,anetv_JDg--pjY5gg,12279,People are shown throwing ping pong balls into beer filled cups. A group of people,People are shown throwing ping pong balls into beer filled cups.,A group of people,gold,are seen hitting balls all around a court while a person walking next to them watches.,accept trophies at the event as onlookers celebrate and drink beer and the man returns to speak briefly into the camera.,do 'games and play soccer as the men are laughing and drinking their beers.,are seen sitting on small chairs and playing one another while looking back to good camera.,1\n12805,anetv_JDg--pjY5gg,12889,\"The man is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots. Several people\",\"The man is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots.\",Several people,gold,are shown riding around in a chair when speaking to one another talking in front of a news segment all playing.,switch to bowling contents and hit the ball as well as many watch.,are shown dressed up in tennis and ends with one upcoming volleyball jumping down and throws them back.,\"hold up award cards, hug and cheer before one last interview with the man and a fade out to marketing material.\",3\n12806,anetv_JDg--pjY5gg,12888,A man in a red shirt talks to a camera before the camera cuts away to a room full of people playing professional beer pong and competitive social event. The man,A man in a red shirt talks to a camera before the camera cuts away to a room full of people playing professional beer pong and competitive social event.,The man,gold,\"is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots.\",continues to play the harmonica while the woman adjusts the camera.,solves a rubix cube and begins hopping on the wall while he records it watching the man with red and black men playing games.,dips light balls in the air and the girl grabs the bowling ball and throws it.,0\n12807,anetv_JDg--pjY5gg,12278,A man in a red and black shirts talks to the camera in a close up shot before the scene cuts away to a room filled with people playing or watching people plat beer pong. People,A man in a red and black shirts talks to the camera in a close up shot before the scene cuts away to a room filled with people playing or watching people plat beer pong.,People,gold,are close in stretching elder arms and other with swords and a safety video clips.,are shown throwing ping pong balls into beer filled cups.,are then shown standing and playing bowling.,\"man celebrates the video and jumps off one of the drums behind a man, then walks past his opponent.\",1\n12808,anetv_6DYQHmsezUw,15239,A man and woman in front of the barrel are moving sideways in the water near a man with legs exposed. A woman,A man and woman in front of the barrel are moving sideways in the water near a man with legs exposed.,A woman,gold,stands behind the bar talking.,screams due to waves.,is seen standing in front of an parallel watching revelers as she bounces.,reaches a hanging above a mountain covered in snow.,1\n12809,anetv_6DYQHmsezUw,15238,A wave moves a barrel in an inner tube up out of the water near three people. A man and woman in front of the barrel,A wave moves a barrel in an inner tube up out of the water near three people.,A man and woman in front of the barrel,gold,sailing on a tube while people watch them.,are cheering and then a car rolls to the shore of the river.,are moving sideways in the water near a man with legs exposed.,are passing large waterfall on side the boat.,2\n12810,anetv_6DYQHmsezUw,1802,Several people are floating on tubes down a river. They,Several people are floating on tubes down a river.,They,gold,hold a small board down the river as they go.,are skiing down a hill and crashing into each other.,are then shown riding and kayaks down a river.,\"lay back in the tubes, riding the waves as they go.\",3\n12811,anetv_6DYQHmsezUw,1803,\"They lay back in the tubes, riding the waves as they go. They\",\"They lay back in the tubes, riding the waves as they go.\",They,gold,\"struggle to stay in the tubes, holding onto each other.\",break on the dusty sled and the boat slides down the slope.,fall across the water from them.,then go after the rope in the river and eventually flip to the escalator.,0\n12812,lsmdc1023_Horrible_Bosses-81814,3773,Someone spots a hot chick. Staff,Someone spots a hot chick.,Staff,gold,are gathered in a meeting room.,sprints over a warm - up dock in the middle of the aisle.,\", a three guys unlocks a bike door, dragging him inside.\",reports names on the text.,0\n12813,anetv_u9aFICSj7zw,7401,A boy is ice fishing on a frozen lake in the winter time. He,A boy is ice fishing on a frozen lake in the winter time.,He,gold,is then a man in a red suit demonstrating how to do a paddle using the big tire while holding water and wakeboard.,takes another turn of the cat.,pulls up a fish as his parents watch him pull it in.,\"watches as he is in the water, rolling on a rock to the river.\",2\n12814,anetv_u9aFICSj7zw,17070,\"A toddler pulls a string from a hole in the ice while a man is kneels on the ice. Then, a fish\",A toddler pulls a string from a hole in the ice while a man is kneels on the ice.,\"Then, a fish\",gold,hit an ice puddle.,rolls down the ice.,come out the hole.,is boiled in person on sea.,2\n12815,anetv_u9aFICSj7zw,7402,He pulls up a fish as his parents watch him pull it in. He finally gets the fish up onto the ice and he,He pulls up a fish as his parents watch him pull it in.,He finally gets the fish up onto the ice and he,gold,goes back to the large fish.,picks the fish up to push it with the other man who was caught.,serves it for a few times about what he will be doing.,sees that it is a really big catch.,3\n12816,anetv_81F42Yyw_iY,3378,She lands on a yellow mat under her. Words,She lands on a yellow mat under her.,Words,gold,leans on a pole and struggles as her friend slides his shirt backward and backward.,alternating between two lanes and a white line.,opens her eyes and stares back behind her.,come onto the screen at the end.,3\n12817,anetv_81F42Yyw_iY,3377,A woman pole vaults over a tall bar. She,A woman pole vaults over a tall bar.,She,gold,stands in front of the screen regaining her balance as she tries to loosen the screws.,performs its jump in several different angles.,lands on a yellow mat under her.,is shown doing long jump in slow motion for several downs.,2\n12818,anetv_WtWw-GNpr4E,14210,Two people are seen playing badminton when one man speaks to the camera. The man,Two people are seen playing badminton when one man speaks to the camera.,The man,gold,moves his body around and demonstrates how to properly hit the birdie.,grabs a stick and swings around the other followed by captions.,then begins playing the game and ends with text across a screen.,finishes and holds up a stick and cheers the match over.,0\n12819,anetv_WtWw-GNpr4E,14211,The man moves his body around and demonstrates how to properly hit the birdie. He,The man moves his body around and demonstrates how to properly hit the birdie.,He,gold,catches it again and continues playing it.,continues taking turns turns and showing the man playing the piano.,continues to speak and demonstrate on how to play.,looks on the screen for the show.,2\n12820,lsmdc0033_Amadeus-66917,8984,Inside we see one gold snuff box: it is the one we saw someone being presented with as a child in the Vatican. Someone,Inside we see one gold snuff box: it is the one we saw someone being presented with as a child in the Vatican.,Someone,gold,leaps from the rail on the pavement.,\"takes to the end of the laundry room containing her own items, which depicts a young girl.\",turns to look around him.,\"lies breathlessly on the roof, wearing lopes and looking across the street.\",2\n12821,lsmdc0033_Amadeus-66917,8985,Someone turns to look around him. She,Someone turns to look around him.,She,gold,\"moves through the observation tower, looking back at the street.\",points across the room to the workroom.,\"blinks down, but reluctantly heavily.\",enters and turns on a light as someone descends the stairs.,1\n12822,lsmdc0033_Amadeus-66917,8980,\"Someone is sitting up on the box beside the driver. Inside the vehicle, we\",Someone is sitting up on the box beside the driver.,\"Inside the vehicle, we\",gold,glimpse the figure of someone.,\"can see its deep floor, a six - story brick wall.\",can only hear the curtain shaking off the composure.,see someone in the doorway dressed in a gorilla outfit.,0\n12823,lsmdc0033_Amadeus-66917,8983,Someone stands looking about him with tremendous curiosity. She,Someone stands looking about him with tremendous curiosity.,She,gold,drops the fish into the mouth.,solemnly studies his fur.,opens a drawer in a sideboard.,salute someone backstage at him.,2\n12824,lsmdc0033_Amadeus-66917,8986,She points across the room to the workroom. Someone,She points across the room to the workroom.,Someone,gold,gets onto her feet and looks up.,crosses and goes in alone.,stares at it as she lies in dazed prayer.,jumps off the stage and picks up the script.,1\n12825,lsmdc0033_Amadeus-66917,8987,\"He moves slowly into the 'holy of holies' picking up objects with great reverence - a billiard ball; a discarded wig; a sock; a buckle - then objects more important to him. Standing at someone's desk, strewn with manuscripts, he\",He moves slowly into the 'holy of holies' picking up objects with great reverence - a billiard ball; a discarded wig; a sock; a buckle - then objects more important to him.,\"Standing at someone's desk, strewn with manuscripts, he\",gold,turns to someone and gives the other a sidelong look.,sees a black gray letters ad red in.,glances around at the pages of a daily movie.,picks up someone's pen and strokes the feather.,3\n12826,lsmdc0033_Amadeus-66917,8981,\"Inside the vehicle, we glimpse the figure of someone. Someone\",\"Inside the vehicle, we glimpse the figure of someone.\",Someone,gold,spots a hound carrier inside a ledge.,crouches and smells their hands.,is conducting and playing in a reflective mood.,lies meticulously under the mask.,2\n12827,lsmdc0033_Amadeus-66917,8982,The room is considerably tidier as a result of someone's ministrations. Someone,The room is considerably tidier as a result of someone's ministrations.,Someone,gold,are taking the file out of the drawer and tossing a newspaper.,steps out and watches someone surrounding him.,looks out from behind a bed with gray hair and beard.,stands looking about him with tremendous curiosity.,3\n12828,anetv_0PnAEoMx-v0,19095,A person is playing an acoustic guitar. There,A person is playing an acoustic guitar.,There,gold,'s hands are standing on the edge of the stage.,is a christmas tree behind him.,band is lying on the floor watching the boys speak and watch the news.,is wearing a black shirt and a brown shirt and a white mask on it next to him.,1\n12829,anetv_0PnAEoMx-v0,19096,There is a Christmas tree behind him. A logo with words,There is a Christmas tree behind him.,A logo with words,gold,come onto the screen.,come up the screen.,come across the screen.,comes onto the screen.,3\n12830,anetv_y4PXBhxpZHk,12528,A large group of people are shown in several shots playing a sport's game while hundreds of people watch on the sides. The men,A large group of people are shown in several shots playing a sport's game while hundreds of people watch on the sides.,The men,gold,continue jumping up and down in the sand while another group from various side watch on the side.,kick the ball back and fourth over one another and ends with a person playing caught a pool.,continue running around the field while close ups of coaches are shown and one scores a goal.,throw on the balls as well as shooting performing a shot and ends by celebrating their balance.,2\n12831,anetv_y4PXBhxpZHk,12529,The men continue running around the field while close ups of coaches are shown and one scores a goal. One man kneels down and the others,The men continue running around the field while close ups of coaches are shown and one scores a goal.,One man kneels down and the others,gold,run around the circle until jump up ball and team goes to the field.,drinks the water out afterwards.,chasing him to another from land mate gear.,shake hands with players.,3\n12832,lsmdc1057_Seven_pounds-97705,14268,\"Someone opens French windows and goes outside. Looking shocked, someone\",Someone opens French windows and goes outside.,\"Looking shocked, someone\",gold,goes around the side of the house to find someone feeding someone.,sees the door and enters the apartment.,runs sideways in his porch and walks toward a closed door.,enters the gym door.,0\n12833,lsmdc1057_Seven_pounds-97705,14266,Someone puts the phone down. She,Someone puts the phone down.,She,gold,shakes her head pensively.,scans about the room.,drops his hat onto someone.,struts off with the others.,1\n12834,lsmdc1057_Seven_pounds-97705,14267,She scans about the room. Someone,She scans about the room.,Someone,gold,turns to a padded guard.,pulls up a bunch of policemen and kisses someone.,opens french windows and goes outside.,steps up quickly and gets off the divan bed.,2\n12835,anetv_PoamN_DEInI,9090,A woman is doing hopscotch on a sidewalk outside a fence. She,A woman is doing hopscotch on a sidewalk outside a fence.,She,gold,gets a dart and walks past two cars.,talks and shows different locations of the dog.,is dragging a friends up and cooking her up.,is then shown posing for pictures.,3\n12836,anetv_5cTnHXcD7DE,17352,A large group of people are seen running down the street while many watch on the sides. Several people,A large group of people are seen running down the street while many watch on the sides.,Several people,gold,are seen warming up with one another while others watch on the sides.,are seen speaking to the camera as more shots are shown of people running.,walk in front of them and the man throws objects into the man's face.,walk towards the door walking around.,1\n12837,anetv_5cTnHXcD7DE,17353,Several people are seen speaking to the camera as more shots are shown of people running. People,Several people are seen speaking to the camera as more shots are shown of people running.,People,gold,cheer others on on the sides as well as marching bands playing and people still running.,is then seen walking around on the field and leads into people walking along the field.,are seen in a sand puck as well as others walking around the area and laughing with one another.,working out along the girls and walking back and speaking to the camera.,0\n12838,anetv_LVub7uinY-4,18728,A small group of people are seen playing a baseball game on a field and leads into several more shots of them playing. The video,A small group of people are seen playing a baseball game on a field and leads into several more shots of them playing.,The video,gold,continues on a approaches around in middle of a circle and ends with people walking in and past other people in front.,continues with several more shots of people playing instruments to one another and ends by looking back to the other men in team fight.,continues with several clips of people hitting and catching the ball and ends with text across the screen.,cuts to clips of athletes playing field hockey with one another and dancing playing with one another.,2\n12839,lsmdc0013_Halloween-53927,7150,Someone turns and walks back to the street. A car,Someone turns and walks back to the street.,A car,gold,drives down a highway.,is parked at some large.,pulls up in front of the house and parks.,pulls up at the corner just inside the garage door.,2\n12840,anetv_tCfu0LplM64,13359,The man then begins to clean and shine the shoes. the man then,The man then begins to clean and shine the shoes.,the man then,gold,begins to remove a pair of shoes.,holds the finished shoes up to the camera.,lathers his skin with a cloth.,takes a cigarette out of his mouth.,1\n12841,anetv_tCfu0LplM64,6467,A man is sitting behind a table. He,A man is sitting behind a table.,He,gold,is drinking beer from a cup of tea.,applies the liquid to his face with a large paint brush.,has a little brush and starts shining his shoes.,is trying to pour a liquid into his neck.,2\n12842,anetv_tCfu0LplM64,13358,A man holds a pair of shoes up to the camera. the man then,A man holds a pair of shoes up to the camera.,the man then,gold,bungee jump on it while the camera also runs front and spins.,applies shaving cream up on the side of his face.,begins to walk back to the center of the yard.,begins to clean and shine the shoes.,3\n12843,anetv_9L-aeZsgwZs,9735,A group is gathered on a field in front of a crowd. They,A group is gathered on a field in front of a crowd.,They,gold,are in the field playing water polo.,\"are leaning back, playing a game of tug of war.\",are working on the beach playing a game of rackets.,begin to play a game of blue polo.,1\n12844,anetv_9L-aeZsgwZs,9108,A coach instructs his team on what to do. Teams and referees,A coach instructs his team on what to do.,Teams and referees,gold,are sitting in the first event participate.,make a perfect formation.,are competing on a street with a red background after christmas in the rink.,walk around the field.,3\n12845,anetv_9L-aeZsgwZs,9107,A large crowd of people outside the field watch the game. A coach,A large crowd of people outside the field watch the game.,A coach,gold,instructs his team on what to do.,runs up and throws the ball and scores.,looks away and cheers for his parents.,runs after the ball and throws it off into the net.,0\n12846,anetv_AWPlbtK7afY,343,\"A group of people is learning how to rollerblade. Some peeople go in groups, but generally they\",A group of people is learning how to rollerblade.,\"Some peeople go in groups, but generally they\",gold,have lost a grip.,are slow and awkward.,stand back to get thrown.,'re about to use their fishing.,1\n12847,anetv_2ji02dSx1nM,16248,He goes through the waves as they crash around him. He,He goes through the waves as they crash around him.,He,gold,heaves a deep sigh as he slides back down the stairs.,continues riding the waves and talking to the camera in an interview.,\"watches a moment intently, then looks out at the open window on his desk, frowning.\",and keep attempting to win the rest of the race when day glides and people stand patched up if he's getting a full bike,1\n12848,anetv_2ji02dSx1nM,16247,A surfer is riding on a surf board in the ocean. He,A surfer is riding on a surf board in the ocean.,He,gold,falls onto the sea from the surf waves and pans around the passing wind wave waves.,runs onto a pier and skis to rest behind the boat.,\"holds up his surfboard, and sail at the ocean's edge.\",goes through the waves as they crash around him.,3\n12849,anetv_-bzI8_hCbWk,4092,A large group of people are seen standing around a large gymnasium playing a game of dodge ball with one another. One man,A large group of people are seen standing around a large gymnasium playing a game of dodge ball with one another.,One man,gold,\"comes over more times and pauses, actually hitting the blue net in the end.\",performs an impressive flip that leads to a man speaking to the camera and showing more shots of impressive dodgeball play.,kicks the puck several blocks while and pans around.,throws a ball into the goal while other people stand at the end.,1\n12850,anetv_6jgWCFWtCfU,19486,A group from a band is marching down a street. They girls,A group from a band is marching down a street.,They girls,gold,are cheerleading as the band follows.,leap across the sand to rain down at the end.,bend over and look around the house.,play the drums and marching.,0\n12851,anetv_6jgWCFWtCfU,6879,A large group of people are seen marching together with cheerleaders in the front and a marching band behind them. The group,A large group of people are seen marching together with cheerleaders in the front and a marching band behind them.,The group,gold,continue riding forward along the waves while others watch on the side and watch them play.,continues to play together as the clips be shown as well as dance.,continues marching along the street followed by a man on a bike behind them.,walks onto a formation together and begin performing various martial arts in the middle they walk into and playing the instruments.,2\n12852,anetv_T8mTuW85NNo,392,A tv news anchor reports on a story. A variety of people,A tv news anchor reports on a story.,A variety of people,gold,\"are shown watching their hands, as the report speaks on germs.\",are in gym shit.,gather and set up on records display.,are inside several enclosed bowls.,0\n12853,anetv_AdnLY0a6yn0,11378,Once he lands in the sand he goes back to start again. He,Once he lands in the sand he goes back to start again.,He,gold,jumps up from his raft when the action of the action has gone somewhere.,\"rides his bike into a lawn, at home.\",does this over and over each time starting farther back.,waves to people and leaves the bus.,2\n12854,anetv_AdnLY0a6yn0,11377,\"A man is practicing indoors, he is doing intervals of jumping while running. Once he lands in the sand he\",\"A man is practicing indoors, he is doing intervals of jumping while running.\",Once he lands in the sand he,gold,chases after him with his hands.,does jump down and high speed.,goes back to start again.,rolls onto his back and spins.,2\n12855,lsmdc0032_The_Princess_Bride-66456,6924,\"Someone can't even do that, but after a bit of rocking back and forth, he manages to get enough momentum to catapult his arm over and onto his friend's. People\",\"Someone can't even do that, but after a bit of rocking back and forth, he manages to get enough momentum to catapult his arm over and onto his friend's.\",People,gold,\"slipped a few feet up to reveal someone, one of the supports.\",kneel before the clergyman.,'s hand hovers to the top of her hand.,sit at the edge of the great hall surrounded by trees just deep in pitch.,1\n12856,lsmdc0032_The_Princess_Bride-66344,8186,The trees are unusual in one respect: all of them are extraordinarily heavily knotted. They,The trees are unusual in one respect: all of them are extraordinarily heavily knotted.,They,gold,cross the dojo in the middle.,move slowly in front of their crowd.,are deeper into the grove now.,are turned over a faded switch.,2\n12857,anetv_Va3NsrY1DJ8,17609,\"He bounches high into the air, off the rope and back on. He\",\"He bounches high into the air, off the rope and back on.\",He,gold,ducks in the snow dragging the boat.,\"continues to rock through the countryside, swinging himself up in the air before closing.\",jumps off a blazing beam as sparks fly from the tanker.,continues this action throughout the video.,3\n12858,anetv_PyPu-6wATfw,7308,\"A bartender explains and shows how to prepare exotic alcoholic drinks in glasses using alcohol and juice. Then, the bartender takes a cup and prepares a cocktail in a shaker, then he\",A bartender explains and shows how to prepare exotic alcoholic drinks in glasses using alcohol and juice.,\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he\",gold,pours it in the cup.,adds a test to make a chocolate textbook.,places the glass in solution and adds the mix in a shaker.,pours the juice into a cup.,0\n12859,anetv_PyPu-6wATfw,7309,\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he pours it in the cup. After, the bartender\",\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he pours it in the cup.\",\"After, the bartender\",gold,pours liquor in a glass and puts straws and pieces of pineapple in the glass.,adds the mixture on the cook and puts up a cup and gather the drink together.,uses two batons to secure a record.,takes a piece of chips from the glass.,0\n12860,anetv_PyPu-6wATfw,16856,A man is standing behind a restaurant bar. the man,A man is standing behind a restaurant bar.,the man,gold,give the man the ice shake and then slice up bread.,begins doing his somersault down a hill.,places a glass on the bar.,\"gives a bike handstand, then collects several of the things they are used to drink.\",2\n12861,anetv_PyPu-6wATfw,16857,The man places a glass on the bar. the man then,The man places a glass on the bar.,the man then,gold,begins making a cocktail while talking to the camera.,\"takes the drink out of a cup, pours it into a cup of ice and then pours two more in the glass.\",grabs a cup of ice cubes and puts it on the rim of a blender.,picks up the drink and puts one in his mouth.,0\n12862,lsmdc0041_The_Sixth_Sense-68012,14215,Someone picks up the spoon and takes a sip. Someone,Someone picks up the spoon and takes a sip.,Someone,gold,slowly brings the spoon to her mouth and swallows another spoonful.,takes someone's hand.,has a pen in it.,takes a sip from her change and leans out of the window to see someone gazing towards the ocean.,0\n12863,lsmdc1057_Seven_pounds-97772,13039,Someone's eyes glisten with tears as she stares at him. He,Someone's eyes glisten with tears as she stares at him.,He,gold,watches the kite on their slender scantily clad torso.,rolls his eyes and kisses the back of his head.,runs her finger through his heart then turns away.,eyes her steadily and smiles faintly.,3\n12864,lsmdc1057_Seven_pounds-97772,13040,He eyes her steadily and smiles faintly. She,He eyes her steadily and smiles faintly.,She,gold,turns off the light like a goofy grin.,\"considers, then looks at him reassuringly.\",shakes her head sadly.,\"stares, horrified, terrified.\",1\n12865,lsmdc1057_Seven_pounds-97772,13043,Someone is cleaning a window of the house. Someone,Someone is cleaning a window of the house.,Someone,gold,\"leaps outside, leaving someone alone so they run with their clothes soaked.\",walks down a flight of stairs into the station.,is standing on a farmhouse on the other side of the house.,\"approaches the window and smiles in at someone, who opens the front door but not the wrought iron screen door.\",3\n12866,lsmdc1057_Seven_pounds-97772,13042,\"Someone sits in his car, watching a house. Someone\",\"Someone sits in his car, watching a house.\",Someone,gold,tries to slip off her coat and luggage.,\"drives, rubbing his son's shoulder.\",is cleaning a window of the house.,heads toward the stairs and out into the night.,2\n12867,lsmdc1057_Seven_pounds-97772,13041,\"She considers, then looks at him reassuringly. Someone\",\"She considers, then looks at him reassuringly.\",Someone,gold,\"reluctantly gets back to someone, who's wrapped in the blanket of the bed.\",\"looks at him, half amused.\",nods slowly and simply nods.,\"sits in his car, watching a house.\",3\n12868,anetv_cc17BiSDn8w,18827,\"A man in a red kayak rolls into the water, and out of the water. He\",\"A man in a red kayak rolls into the water, and out of the water.\",He,gold,peers at them with the binoculars.,smiles at the camera and gets off of the diving board.,continues with several swimmers gathered from a large pool.,rolls into the water once more.,3\n12869,anetv_cc17BiSDn8w,18829,He then is in a blue kayak and rolls into the water and out of the water. He,He then is in a blue kayak and rolls into the water and out of the water.,He,gold,bends over and holds up several rock.,is seen moving on the water holding rides by another man's boat.,does it once more.,is running until he is able to go back to the water.,2\n12870,anetv_cc17BiSDn8w,18828,He rolls into the water once more. He then,He rolls into the water once more.,He then,gold,continues to talk and sit on the object that he needs done.,flops into a top.,is in a blue kayak and rolls into the water and out of the water.,lands on each side of his boat and peers into the water.,2\n12871,anetv_UhgVO1QaP2s,1040,The boys wrestle again and we see images of men wrestlers. An interviewer,The boys wrestle again and we see images of men wrestlers.,An interviewer,gold,leads him to the casino and meets more.,takes an omelette with his teammate as he gives him a winning.,watches many more women as women watch over a hill.,walks into an office an talks to a man.,3\n12872,anetv_UhgVO1QaP2s,1038,\"We we boys in diaper sumo gear running around in a gym, the boys then begin to wrestle. We\",\"We we boys in diaper sumo gear running around in a gym, the boys then begin to wrestle.\",We,gold,see the man perform with the final ends.,see two of the boys being interviewed by two men.,split ropes in the background.,see the curlers jumping over a wall and begin the match going in unison.,1\n12873,anetv_UhgVO1QaP2s,6833,Men are doing jumps on a pole in stage. a lot of people,Men are doing jumps on a pole in stage.,a lot of people,gold,are walking on the sidewalk and again in stage men are doing jumps.,are interviewed with the camera watching them in action.,are around watching them.,are posing all on the river observing the game.,0\n12874,anetv_UhgVO1QaP2s,6830,Kids are practicing sumo wrestling in a gym room and talking to the camera about their experience. men,Kids are practicing sumo wrestling in a gym room and talking to the camera about their experience.,men,gold,\"ride back on the monkey bars, with different my dogs.\",\"are in an office, shake their hands and are talking about their sumo experience.\",are in the gym constantly dancing on landing in a gym.,are in a gym in gym doing a choreography in elliptical machines.,1\n12875,anetv_UhgVO1QaP2s,1039,We see two of the boys being interviewed by two men. The boys wrestle again and we,We see two of the boys being interviewed by two men.,The boys wrestle again and we,gold,see him left again.,see some arrows on dirt.,see images of men wrestlers.,see the swollen ending screen.,2\n12876,anetv_UhgVO1QaP2s,6831,\"Men are in an office, shake their hands and are talking about their sumo experience. girls\",\"Men are in an office, shake their hands and are talking about their sumo experience.\",girls,gold,are sitting at a table on a school court.,are on roping and boxing.,are doing gymnastics in a stage.,are walking into frame while people are watching them in small court room and behind a store.,2\n12877,anetv_UhgVO1QaP2s,1042,We see a circus show in an empty stadium. We,We see a circus show in an empty stadium.,We,gold,see the title scree and makes a web throw.,see animals running on a large line behind the trees.,see two men indoors dance a war era.,see scene of the city with buildings and people.,3\n12878,lsmdc0006_Clerks-48846,3524,\"Someone standing on a ladder, replaces a fluorescent light. An old man\",\"Someone standing on a ladder, replaces a fluorescent light.\",An old man,gold,jumps down into his suite at night.,starts writing them up.,sits on his feet.,joins him at the foot of the ladder.,3\n12879,lsmdc0006_Clerks-48846,3526,\"The light in place, someone descends the ladder and closes it. Someone\",\"The light in place, someone descends the ladder and closes it.\",Someone,gold,\"opens it, revealing four mechanical limbs reaching out for it.\",throws the hands back in the bedside cabinet.,glances over and reacts.,yanks his arms from above his head as he tumbles up a hill.,2\n12880,lsmdc0006_Clerks-48846,3525,\"An old man joins him at the foot of the ladder. The light in place, someone\",An old man joins him at the foot of the ladder.,\"The light in place, someone\",gold,writes on the line of a third represents.,descends the ladder and closes it.,hold a candle.,places someone's knee in the fire.,1\n12881,anetv_WXEq3OeD68o,838,\"The guy lifts the weights over his head, and the guy jumps into the air in joy. The guy\",\"The guy lifts the weights over his head, and the guy jumps into the air in joy.\",The guy,gold,finishes after his foot.,stops weightlifting on stage.,struggles to lift weights.,turns the rod off and lifts the barbell to his chest.,1\n12882,anetv_WXEq3OeD68o,13012,A weight lifter is standing on a stage. He,A weight lifter is standing on a stage.,He,gold,lifts a barbell up to his head before dropping it.,lifts the barbell up under the barbell.,are dancing around demonstrating very zumba exercises.,looks at us for quite a bit.,0\n12883,anetv_WXEq3OeD68o,13013,He lifts a barbell up to his head before dropping it. He,He lifts a barbell up to his head before dropping it.,He,gold,leans forward and presses someone's forehead.,jumps up and down in excitement.,holds the blade over his head.,does a series of kicks again at the same time.,1\n12884,anetv_5vDPgcyRtOU,8531,A man working on a piece of furniture is overlaid with the text Apply wax with a soft cloth. Polish with orange oil,A man working on a piece of furniture is overlaid with the text Apply wax with a soft cloth.,Polish with orange oil,gold,is tied next to the white table that has the color of it.,is applied to it as if the life is indeed below fondant and is fixing garments.,appears as the man sprays the furniture and rubs it in.,is sprinkled on the bucket.,2\n12885,anetv_5vDPgcyRtOU,8532,Polish with orange oil appears as the man sprays the furniture and rubs it in. The logo,Polish with orange oil appears as the man sprays the furniture and rubs it in.,The logo,gold,cut and inserted.,appears again with a closing statement.,on the details of the bedroom is shown.,polishes an instructional excess surface.,1\n12886,anetv_5vDPgcyRtOU,8530,The topic Table Waxing and Polishing appears on screen followed by descriptive text. A man working on a piece of furniture,The topic Table Waxing and Polishing appears on screen followed by descriptive text.,A man working on a piece of furniture,gold,is overlaid with the text apply wax with a soft cloth.,is shown with his fingers horizontally.,begins spinning using his frisbees and a crowd comes silver through.,is shown being wiped by the kid.,0\n12887,anetv_5vDPgcyRtOU,2200,A video warning showing characteristics of the products is shown. man,A video warning showing characteristics of the products is shown.,man,gold,is standing in front of a wooden table polishing the table with wax and orange oil.,is wearing red gloves using a rake to cut items to eyeball.,is punching the machine hard.,picks up a hose and toss some of the bodies of overlaid style.,0\n12888,anetv_5vDPgcyRtOU,8529,An 1825 Interiors logo appears on screen with a legal disclaimer. The topic Table Waxing and Polishing,An 1825 Interiors logo appears on screen with a legal disclaimer.,The topic Table Waxing and Polishing,gold,is talking about how to cross yourself.,appears on screen followed by descriptive text.,appear in troubled races and finally shows streets.,starts very dark over the day.,1\n12889,anetv_lNvX6h3o4EA,7134,\"A man sits at the front of a class while playing a guitar and speaking. When he is done, he\",A man sits at the front of a class while playing a guitar and speaking.,\"When he is done, he\",gold,stands up to walk away.,joins her and plays a song on a guitar.,finishes the performance with the guitar.,plays the drums and plays the bagpipes.,0\n12890,anetv_cXRWQa9tQLw,2550,\"They break apart, going into an elaborate dance routine. They\",\"They break apart, going into an elaborate dance routine.\",They,gold,look at a picture of two young people most close at the same time and watching them.,\"coatcheck between them, catching them between their hands.\",\"bounce with feet high the walls, pick and flip and and spin.\",\"flip, toss, and throw each other, then jump up and down excitedly.\",3\n12891,anetv_cXRWQa9tQLw,2549,A group of cheerleaders are posing on a stage. They,A group of cheerleaders are posing on a stage.,They,gold,\"break apart, going into an elaborate dance routine.\",are doing exercise on a court.,group begins doing a routine on their stage.,are practicing on a stage on the stage.,0\n12892,anetv_LSCQ1yqocHg,16732,\"He then turns on the water and and washes his hands. After he's done washing, he\",He then turns on the water and and washes his hands.,\"After he's done washing, he\",gold,\"offers it to several kids standing on the field while shaking his hands and kicking the ball around, watching the replay.\",continues rubbing up the tires and looking to the camera.,begins to talk to the camera before opening it in hushed raise before walking around the water washing something on his knees.,uses a white hand towel that is lying next to the sink on the counter.,3\n12893,anetv_LSCQ1yqocHg,16731,He takes a pump from the liquid hand soap from the sink counter. He then,He takes a pump from the liquid hand soap from the sink counter.,He then,gold,paints his feet again and mopping the bottom.,cuts the asphalt up which is already clean.,turns on the water and and washes his hands.,rinses the toothbrush off the sink.,2\n12894,anetv_LSCQ1yqocHg,16730,There's a man standing in a kitchen and washing his hands in steel kitchen sink. He,There's a man standing in a kitchen and washing his hands in steel kitchen sink.,He,gold,takes a pump from the liquid hand soap from the sink counter.,adds pours onto the dish and takes the towel all down to clean.,looks awkward as they all sit down at a laptop.,gives a logo a tutorial on how to wash the sink.,0\n12895,anetv_zE1l4avJZaU,13697,They tie the ribbon onto a wrapped package. They,They tie the ribbon onto a wrapped package.,They,gold,finish the letter and put it in their daughter's arms.,pull the paper from the box and put on a jacket.,\"pour it into a canister, then get the little water from the picture.\",tape the bow they made onto the package.,3\n12896,anetv_zE1l4avJZaU,13696,A person is making a bow out of ribbon. They,A person is making a bow out of ribbon.,They,gold,mix white frosting in the middle.,put a towel up to the tree.,tie the ribbon onto a wrapped package.,are using scissors to fly by.,2\n12897,anetv_aEUbl9oT_0s,13188,Various shots are shown of athletes holding a pole in their hands and leaning backwards. This,Various shots are shown of athletes holding a pole in their hands and leaning backwards.,This,gold,presented off numbers before backing faces.,lead into several more clips of athletes performing flips obstacle bikes and more kids playing in the background.,leads into several clips of more athletes throwing javelins off into the distance.,are seen hoping over and over the net.,2\n12898,anetv_aEUbl9oT_0s,13189,This leads into several clips of more athletes throwing javelins off into the distance. More and more people,This leads into several clips of more athletes throwing javelins off into the distance.,More and more people,gold,stand on a mat as well.,are seen riding through the field while keeping watch on the road.,are shown throwing javelins.,run and speak with one another.,2\n12899,anetv_M6yAoJJQvGY,9836,A woman is seen speaking to the camera and leads into clips of her performing ab exercises wile speaking to the camera. The woman,A woman is seen speaking to the camera and leads into clips of her performing ab exercises wile speaking to the camera.,The woman,gold,continues working on the floor while the camera captures her movements.,demonstrates how to do a proper sit up by moving her arms in different places and speaking to the camera.,\"continues speaking while moving her hands around, flipping by herself as more while speaking in the end.\",continues to film a class around moving even around in the end and smiling to the camera.,1\n12900,anetv_ULwdDmQ8Z_8,19423,\"She then sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer. Once the boat arrives, they young boy throws the rope to her and she\",She then sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer.,\"Once the boat arrives, they young boy throws the rope to her and she\",gold,comes up to help with a bowl.,rides at the end of the boat.,begins to hold on to it.,helps the little girl get in the water.,2\n12901,anetv_ULwdDmQ8Z_8,5338,A woman in an orange vest wearing skis is standing at the edge of a dock by the water. She,A woman in an orange vest wearing skis is standing at the edge of a dock by the water.,She,gold,wanders off doing the same thing.,pulls down a fishing boat and knocks on the salvage rocks.,talks to the camera as she rides the boat across the lake.,sits down on the dock and then gets into the water.,3\n12902,anetv_ULwdDmQ8Z_8,19424,\"Once the boat arrives, they young boy throws the rope to her and she begins to hold on to it. The woman finally becomes stable and the boat\",\"Once the boat arrives, they young boy throws the rope to her and she begins to hold on to it.\",The woman finally becomes stable and the boat,gold,hops around and takes the lift.,picks up enough speed for her to go.,runs so baited can be seen.,is participating in the high extensions then ties the rope securely around the kid.,1\n12903,anetv_ULwdDmQ8Z_8,19422,\"A woman is shown wearing a bathing suit skirt, orange float, and water skis. She then\",\"A woman is shown wearing a bathing suit skirt, orange float, and water skis.\",She then,gold,talks about using the paddle like a grown person.,shows two large waves under the water.,sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer.,shows how to get the snow from the salvage intertube.,2\n12904,anetv_ULwdDmQ8Z_8,5339,A boat comes and the people inside the boat throw her a line and she grabs it. Then they take off and she,A boat comes and the people inside the boat throw her a line and she grabs it.,Then they take off and she,gold,returns to the board.,does a hand stand.,falls off the boat.,skis behind the boat.,3\n12905,lsmdc1046_Australia-90638,2085,\"Someone stares at the boy. Up on the cliff, someone\",Someone stares at the boy.,\"Up on the cliff, someone\",gold,\"makes a fire by drilling a stick into a piece of wood, and some kindling.\",\"overlooks the stain, encouraging him to swim and scurry.\",\"draws on his monstrous gaze, his face covered with sweat.\",can barely get out through the open.,0\n12906,anetv_h15m87WsCHQ,7191,Hockey players are playing a hockey game on the ice. A crowd,Hockey players are playing a hockey game on the ice.,A crowd,gold,cheers them as they prepare to play a game.,is watching them play.,stands watching them watching.,of people are watching the game.,1\n12907,anetv_h15m87WsCHQ,7193,A man in yellow falls on the ice. A man in a suit,A man in yellow falls on the ice.,A man in a suit,gold,is talking to hockey players.,is shown wearing welding gear.,runs down the ocean in a large body of water.,falls from the water.,0\n12908,anetv_SIeV0DPSpHQ,1111,We see a tree in a round of dirt. We,We see a tree in a round of dirt.,We,gold,see a root in the yard.,see a green shore white on impact.,see a man playing standing hurriedly in the woods.,see the box on the right.,0\n12909,anetv_SIeV0DPSpHQ,1108,We see two men in a yard pushing an item in the grass. We,We see two men in a yard pushing an item in the grass.,We,gold,see the title screen.,see a white screen and shows a man in painting on it.,see two kids sanding the roof.,see a dirt patch in the grass.,3\n12910,anetv_OD4MrhX85-M,17202,A girl in a white hoodie takes her turn and nocks out the red disc. A man in white shorts,A girl in a white hoodie takes her turn and nocks out the red disc.,A man in white shorts,gold,picks up a track ball.,is drinking a drink from a mouth holding a chicken.,performs a little flip on a hopscotch on a playground with the lady in on the right.,steps in front of the camera and moves the discs with his foot.,3\n12911,anetv_OD4MrhX85-M,15209,A game takes her turn pushing the puck down the game. A man,A game takes her turn pushing the puck down the game.,A man,gold,bounces off the side and crashes with another fourth woman and a stick in to score shaking and celebrating.,plays ping pong while seated on the ground.,walks into frame in the end.,walks on the sidewalk while hitting a ball.,2\n12912,anetv_in5XF1bbYr0,10107,We see a title screen. We,We see a title screen.,We,gold,see a dog washing clothes in a sink.,see a man in a white shirt playing bowling in front of a tv set.,see the ladies face one of five times their names.,see an image of the dog laying in the grass with words on the screen.,3\n12913,anetv_in5XF1bbYr0,10106,A man raises his hands in the air and walks off and another person walks past the camera. We,A man raises his hands in the air and walks off and another person walks past the camera.,We,gold,see the illustration with music.,\", the men push the leaves into a circle and a man walks into a building.\",see a title screen.,the machine goes by as the people continue to mark a circle of people we see of the crossing wave as them dancing.,2\n12914,anetv_in5XF1bbYr0,10105,A person throws a frisbee as a dog catches them. A man raises his hands in the air and walks off and another person,A person throws a frisbee as a dog catches them.,A man raises his hands in the air and walks off and another person,gold,walks on a horse.,comes to help the man.,walks past the camera.,rushes back in the corner.,2\n12915,anetv_in5XF1bbYr0,10104,We see a series of opening screens. A person,We see a series of opening screens.,A person,gold,throws a frisbee as a dog catches them.,applies a paper to the tire.,jumps on a machine and collapses in a pile.,has folded wallpaper on a wall.,0\n12916,anetv_hrwcr7BxS5I,1278,A man is bouncing a tennis ball on a court. He,A man is bouncing a tennis ball on a court.,He,gold,makes his way up to the court and jumps.,starts walking back and forth on the court.,serves the ball over the net.,hits the ball through the wall.,2\n12917,anetv_hrwcr7BxS5I,9915,He bounces the ball a few times. Then he,He bounces the ball a few times.,Then he,gold,stands up and throws the ball in his basket.,sets it down and throws it on the field.,\"throws the ball off in the other direction, and the ball is filled with the man swimming into the water.\",serves it over the net.,3\n12918,anetv_hrwcr7BxS5I,9914,A man is on an outdoor tennis court. He,A man is on an outdoor tennis court.,He,gold,bounces the ball a few times.,is demonstrating how to play squash.,drops a ball first in front of the men.,pushes the puck across the floor.,0\n12919,anetv_hrwcr7BxS5I,1279,He serves the ball over the net. He then,He serves the ball over the net.,He then,gold,\"chases after the ball, then stops.\",spins the net into the water.,uses a hammer to hit the ball across the court.,returns to the camera and puts it back under ice before going back to the bar.,0\n12920,lsmdc1010_TITANIC-77283,3125,Someone curtsies and steps out. Someone,Someone curtsies and steps out.,Someone,gold,beams with excitement.,hikes past an alleyway to an area with scaffolding covering its grand door.,walks to someone and ties the laces of her corset.,holds up his own.,2\n12921,lsmdc1010_TITANIC-77283,3124,\"Someone lays her hand on dark haired someone's shoulder and sinks against her chair. Later in someone's room, someone\",Someone lays her hand on dark haired someone's shoulder and sinks against her chair.,\"Later in someone's room, someone\",gold,unplugs two different young features.,whisks a robotic to protect himself.,laces up the back of someone's corset.,sees someone.,2\n12922,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12002,He twirls his right hand as if spinning a lasso. Someone,He twirls his right hand as if spinning a lasso.,Someone,gold,hits the stone and hits the ground.,watches his son dance for the girls.,takes the sphere and exits and makes it down the alley.,catches someone's arm while then turns to a stop.,1\n12923,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12005,He lowers the magazine and takes out a subscription insert. Someone,He lowers the magazine and takes out a subscription insert.,Someone,gold,\"brings someone's back up to his armpit, then stares at it.\",turns back his concertina to the producer then reaches out for the seat.,enters in plain clothes.,fixes her with heartbroken gaze.,2\n12924,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12001,He climbs on the table and dances for the girls who stand circled around him. He,He climbs on the table and dances for the girls who stand circled around him.,He,gold,\"is shown a couple of small bulls, then women begin fighting in a hotel.\",holds her against the far wall as he tries to help someone and the audience.,twirls his right hand as if spinning a lasso.,passes on the couch next to a red parked car.,2\n12925,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11998,\"Someone wraps a scarf around his neck, then dances the Charleston on the low, round table. Someone\",\"Someone wraps a scarf around his neck, then dances the Charleston on the low, round table.\",Someone,gold,\"stands in front of the camera to dance regular, wish someone's former smile.\",grooves along from his chair.,sees an adolescent monster.,appears through the tv.,1\n12926,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11997,He watches a girl dance in a skimpy nightie and gives her two thumbs up. Someone,He watches a girl dance in a skimpy nightie and gives her two thumbs up.,Someone,gold,\"slips out her windshield, as she makes her way down into her pink baseball convertible.\",looks confused and hurries to the class.,\"waits, and undoes the belt on her dress arm.\",\"wraps a scarf around his neck, then dances the charleston on the low, round table.\",3\n12927,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11994,\"Back in the common room, girls hurry in with armfuls of clothing. Someone\",\"Back in the common room, girls hurry in with armfuls of clothing.\",Someone,gold,looks at the screen.,sits on a reclining chair with a look of amazement as they try on outfits.,remains on the bed.,soars through his disguise.,1\n12928,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11996,Someone puts a hat on his head. He,Someone puts a hat on his head.,He,gold,watches a girl dance in a skimpy nightie and gives her two thumbs up.,walks towards the plant where he spies groom the dogs.,\"picks up the ax, avoiding his gaze.\",jumps on his bed and starts kicking his stomach.,0\n12929,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12004,\"Now, someone reads Cosmopolitan. He\",\"Now, someone reads Cosmopolitan.\",He,gold,pulls her from the limo and rides her in his car.,lowers the magazine and takes out a subscription insert.,\"rips his coat away, then slides open a window to reveal the street of the skyscraper.\",glances up at the russian statue.,1\n12930,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11999,Someone grooves along from his chair. Someone and someone,Someone grooves along from his chair.,Someone and someone,gold,take care in the passenger's shop.,walk up and down the aisle past an apartment building littered with books.,are still in shock from smiling off as they go in.,grab his arms and urge him to his feet.,3\n12931,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12000,Someone and someone grab his arms and urge him to his feet. He,Someone and someone grab his arms and urge him to his feet.,He,gold,whips position and rides backwards.,sweeps up the hands of the upturned women and his children.,grabs his cane and flies into the sky.,climbs on the table and dances for the girls who stand circled around him.,3\n12932,anetv_t1urvYx1X_w,12674,A man is seen walking out of a building and begins wiping off his car with a briefcase. He,A man is seen walking out of a building and begins wiping off his car with a briefcase.,He,gold,continues running along the sidewalk while a camera pans all around the car from side to side.,continues to struggle to wipe off the snow and ends with him looking at the wrong car.,pauses to speak to the camera and smiles to himself while taking out his shoes.,sets up a large blue bucket and puts his coat to the camera after taking her place.,1\n12933,anetv_t1urvYx1X_w,7461,Some cars are covered in snow in a parking lot. A man,Some cars are covered in snow in a parking lot.,A man,gold,is drinking ice and a water bottle.,is seen using his briefcase to scrape away the snow.,jumps to a wheel high then flips after the tractor.,is also riding the bike while the car explains.,1\n12934,anetv_t1urvYx1X_w,7462,A man is seen using his briefcase to scrape away the snow. He,A man is seen using his briefcase to scrape away the snow.,He,gold,\"continues chain tunnels and we, scraping and off the roof.\",\"continues soaping down the orange, then puts it down inside the daimler.\",sets the white on the driveway in front of his car.,attempts to use his hands as well.,3\n12935,anetv_movzxpiGX8k,4779,She then begins brushing her hair while looking into the camera. The woman,She then begins brushing her hair while looking into the camera.,The woman,gold,continues speaking to the camera and looks back to the camera.,continues to brush her hair with her and hair and brush along the floor.,continues to smile at the ends as the picture fades to an cringing to cut at the screen.,continues brushing her hair while looking off into the distance.,3\n12936,anetv_movzxpiGX8k,4778,A young woman is seen looking into the camera with her hair laid out. She then,A young woman is seen looking into the camera with her hair laid out.,She then,gold,begins brushing her hair while looking into the camera.,bends down into her lap and begins working her legs up.,begins cutting the woman's hair with an electric razor.,brushes a side of her hair and sprays various lotion on them.,0\n12937,anetv_movzxpiGX8k,3425,A woman is sitting down in a chair. He,A woman is sitting down in a chair.,He,gold,begins playing the drums continuously.,is using a hose to rake them.,starts brushing her hair with a blue brush.,is walking next to a dog in a kitchen.,2\n12938,anetv_movzxpiGX8k,3426,He starts brushing her hair with a blue brush. She,He starts brushing her hair with a blue brush.,She,gold,uses her hands to spread the braid together.,stops brushing and looks at him.,uses the razor to brush her hair.,touches her hair while she brushes it.,3\n12939,anetv_VEihQG2UWKE,1058,A woman is holding a purple umbrella. People,A woman is holding a purple umbrella.,People,gold,are trimmed by a woman as she talks.,are walking around in a park.,are standing there waiting for them.,\"are standing around the table, talking.\",1\n12940,anetv_VEihQG2UWKE,1056,People are flying kites on grass. The kites,People are flying kites on grass.,The kites,gold,are shown in the sky.,fly into a ball hitting a ball.,gather in the middle of the lines.,are floating on a beach.,0\n12941,anetv_Zc8zn0sKfwo,1392,A man is seen standing behind a counter and showing off various ingredients. He then,A man is seen standing behind a counter and showing off various ingredients.,He then,gold,mixes various ingredients in a tube and begins mixing them all together.,grabs a cartridge and presents it to the camera attached to a machine.,begins mixing the noodles together in a bowl.,begins mixing the ingredients together in a pan and frying them up.,3\n12942,anetv_Zc8zn0sKfwo,1393,He then begins mixing the ingredients together in a pan and frying them up. Finally he,He then begins mixing the ingredients together in a pan and frying them up.,Finally he,gold,\"adds the noodles to the pan, fades to a fry - fry, and speaks in on to a pot.\",continues working out and making a small sandwich on a drink pan.,puts it in a pan and takes it out to present to the camera.,puts food onto his plate and prepares them over in a big set of hot eggs and then finally into them having toast.,2\n12943,anetv_Zc8zn0sKfwo,10266,He shows a macaroni and cheese bake. He then,He shows a macaroni and cheese bake.,He then,gold,shows off more gloves.,\"applies to dish near the sink, then a man in the bathroom tub scrubs with a razor.\",shows the step by step instructions for how to make the bake.,\"rolls in a bowl, the.\",2\n12944,anetv_q2VG0zzPJMw,5239,There's another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table. He,There's another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table.,He,gold,shows the aluminum moose using the metal of the letters on the wall.,begins by rubbing a back wheel into the knife as another man captures it.,wrenches the wheel from the tire frame and begins clipping the top of it as he works his new tool below the tire.,is welding the metal piece with precision in a horizontal manner.,3\n12945,anetv_q2VG0zzPJMw,5240,He is welding the metal piece with precision in a horizontal manner. There,He is welding the metal piece with precision in a horizontal manner.,There,gold,cold blood the size of his phone in a tasteful bedroom.,unfolds muscles to get a better position.,'s a welding machine showing how it works on melting metal at high temperature.,detail to how he conducts the tattoo.,2\n12946,anetv_q2VG0zzPJMw,5238,\"There's a welder in a blue shirt wearing a yellow protective helmet, welding a large metal pipe in a workshop. There\",\"There's a welder in a blue shirt wearing a yellow protective helmet, welding a large metal pipe in a workshop.\",There,gold,\", he turns on the light welding and puts his arms around the floor while a boy stands under front of the flames.\",'s another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table.,see one of the other men in the backyard going down snow.,has wax metal on a metal crate and a knife repeatedly space.,1\n12947,anetv_6b8h8ztnj9Q,14930,A large group of people are seen sitting on exercise equipment in a room. The people,A large group of people are seen sitting on exercise equipment in a room.,The people,gold,grab the machine and row themselves back and fourth on the machine.,continue spinning and moving on the floor as well as in a gym surrounded by others.,then begin performing a machine and moving around.,continue to exercise and move exercise bikes from one another.,0\n12948,anetv_6b8h8ztnj9Q,16535,A group of people are inside a gym together. They,A group of people are inside a gym together.,They,gold,walk back and forth hitting the ball.,are working out on rowing machines.,are sitting on library stools.,are throwing balls into a net against a wall.,1\n12949,anetv_6b8h8ztnj9Q,14931,The people grab the machine and row themselves back and fourth on the machine. The,The people grab the machine and row themselves back and fourth on the machine.,The,gold,the people give on while one person speaks and the camera captures them and the men walk out one another.,move up to scissors then ball back and forth while moving their hands up and back down.,people in the places are shown moving solo around and hitting them.,continue to ride around while the camera follows them and ends with them standing up.,3\n12950,anetv_6b8h8ztnj9Q,16536,They are working out on rowing machines. They,They are working out on rowing machines.,They,gold,carry their water into the water.,do an exercise in the exercise.,pull on the ropes and slide up and down the machines.,fall apart and attack the stage while a group of players approach.,2\n12951,anetv_EZZMYzY6Pug,9948,\"Then he smears the wax and coats on a surface. After the wax cools and solidifies, he\",Then he smears the wax and coats on a surface.,\"After the wax cools and solidifies, he\",gold,scrapes it off the surface.,adds the wax to the top and dips the red goo into the tree.,paints the surface with a grey brush and he is demonstrating how to wipe the wax off on the canvas.,shows the proper dot.,0\n12952,anetv_EZZMYzY6Pug,9947,He melts a piece of wax against the heated surface of the iron. Then he,He melts a piece of wax against the heated surface of the iron.,Then he,gold,puts the spread evenly horizontally to the center.,pours the smaller glass on the glass.,smears the wax and coats on a surface.,uses his face on a thick layer of wax.,2\n12953,anetv_EZZMYzY6Pug,9946,There's a man demonstrating how to melt wax and coat surfaces with wax using an iron. He,There's a man demonstrating how to melt wax and coat surfaces with wax using an iron.,He,gold,applies the red competition in front of a folded black object.,begins to weld a piece of ironing from it with a clean gray cloth.,melts a piece of wax against the heated surface of the iron.,is out of place and attached without demonstrating proper technique and stops ironing some of the rubber.,2\n12954,anetv_-rKS00dzFxQ,6520,The man grabs some pepper and throws it onto the potatoes. The man,The man grabs some pepper and throws it onto the potatoes.,The man,gold,adds some more milk.,\"runs his tail through the debris, scrapes it on the dirt and topples it over a wall.\",sticks a white hot potato all over the pump.,throws the object while the other brushes the horse.,0\n12955,anetv_-rKS00dzFxQ,6512,The woman throws the butter into a saucepan. The man speaks to her briefly and the woman,The woman throws the butter into a saucepan.,The man speaks to her briefly and the woman,gold,gets into the pot.,proceeds to pour some milk into the saucepan.,holds up the sandwich.,rinses her mouth and shrugs.,1\n12956,anetv_-rKS00dzFxQ,6516,The man throws in a pinch of salt onto the potatoes. The man,The man throws in a pinch of salt onto the potatoes.,The man,gold,resumes mashing the potatoes.,tastes the pot of the sauce.,then turns the dog all over his legs and then around to another person as the person instructs him to cook.,attempts to rake the leaves with his towel and uses a towel and tray to scrape off the product.,0\n12957,anetv_-rKS00dzFxQ,6521,The man adds some more milk. The man,The man adds some more milk.,The man,gold,stops welding and pats his arms.,prepares parts of the board and puts it on a plate.,returns to mashing the potatoes and stirring them as they have thoroughly become soft.,climbs in and adds up the salad for the toppings.,2\n12958,anetv_-rKS00dzFxQ,6513,The man speaks to her briefly and the woman proceeds to pour some milk into the saucepan. The man,The man speaks to her briefly and the woman proceeds to pour some milk into the saucepan.,The man,gold,readies the pasta to make it in the end.,places the yellow pot and the saucepan on the stove.,holds and takes the peel out of a pot.,pours the juice into the glass and pours it into round cup.,1\n12959,anetv_-rKS00dzFxQ,6507,The man peels and cuts potatoes before throwing them into a yellow pot. The man,The man peels and cuts potatoes before throwing them into a yellow pot.,The man,gold,mixes up the wet plate in a fire.,continues installing the cookie counter.,talks to the camera as the man throws the bologna grand recipe.,throws in three handfuls of salt into the yellow pot.,3\n12960,anetv_-rKS00dzFxQ,6511,The woman joins the man at the table and she cuts butter in half. The woman,The woman joins the man at the table and she cuts butter in half.,The woman,gold,puts the plates onto the cake.,\"dabs her mouth with a napkin, then pours the frosting on a silver dish.\",throws the butter into a saucepan.,seats the couch to inspect.,2\n12961,anetv_-rKS00dzFxQ,6506,A recipe of mashed potatoes sits on the table. The man,A recipe of mashed potatoes sits on the table.,The man,gold,grooms food with a roll of the meat.,peels and cuts potatoes before throwing them into a yellow pot.,\"chopped vegetables, oil and mayonnaise.\",puts a stick inside the dough.,1\n12962,anetv_-rKS00dzFxQ,6514,The man places the yellow pot and the saucepan on the stove. The man,The man places the yellow pot and the saucepan on the stove.,The man,gold,grabs the pot's lid and covers the pot.,mixes something in the pot and brings the pasta to its boil.,begins cooking a sauce mixture with paste.,adds pasta to the skillet and adds the cilantro into a clear pot.,0\n12963,anetv_-rKS00dzFxQ,6518,The man pours in the milk from the saucepan into the pot. The man,The man pours in the milk from the saucepan into the pot.,The man,gold,stirs the lemon and then juices into it to clear it.,put the 4 and throw it in a basket.,begins making the drink in the glass bowl.,mashes the potatoes some more.,3\n12964,anetv_-rKS00dzFxQ,6509,\"The man cuts up some garlic. Into the pot, the man\",The man cuts up some garlic.,\"Into the pot, the man\",gold,throws the garlic along with two leaves.,heats the sauce in the skillet with a cooking pot.,pours milk in the pan and adds the salt and peppers to the pot.,places a egg on the island.,0\n12965,anetv_-rKS00dzFxQ,6508,The man throws in three handfuls of salt into the yellow pot. The man,The man throws in three handfuls of salt into the yellow pot.,The man,gold,cuts up some garlic.,puts the mouthwash from his mouth.,adds a squeeze and put salt inside.,\"walks away through the empties, knocking over a cop.\",0\n12966,anetv_-rKS00dzFxQ,6522,The man returns to mashing the potatoes and stirring them as they have thoroughly become soft. The man,The man returns to mashing the potatoes and stirring them as they have thoroughly become soft.,The man,gold,takes off the paper and puts the products into his mouth then goes through different files.,pours the pasta from the meet and starts to stir it up.,is making them clean - weakly.,pauses for a second to throw in some water and resumes to stirring the potatoes.,3\n12967,anetv_-rKS00dzFxQ,6519,The man mashes the potatoes some more. The man,The man mashes the potatoes some more.,The man,gold,swaps a peeler on the cup then puts it back to the old man.,picks up a spoon and pulls up the flame.,finishes chopping them and adds a detail to the customer.,grabs some pepper and throws it onto the potatoes.,3\n12968,anetv_-rKS00dzFxQ,6510,\"Into the pot, the man throws the garlic along with two leaves. The woman joins the man at the table and she\",\"Into the pot, the man throws the garlic along with two leaves.\",The woman joins the man at the table and she,gold,cuts butter in half.,pours them into the pot.,grabs several drinks making a alcoholic drink.,decides to look to the dog for help.,0\n12969,anetv_-rKS00dzFxQ,6523,The man pauses for a second to throw in some water and resumes to stirring the potatoes. The finished mashed potatoes dish,The man pauses for a second to throw in some water and resumes to stirring the potatoes.,The finished mashed potatoes dish,gold,is shown adding more time that it shows his mouth cooking by dipping up tooth.,is being mowed on the plate.,is shown being close together and set as a large gymnast is outside representing the starting counter.,is left on a counter.,3\n12970,lsmdc1045_An_education-90300,14194,She turns on her heel and walks indoors. Someone,She turns on her heel and walks indoors.,Someone,gold,goes to the driver's door and gets in the car.,answers her cell phone.,emerges from the bathroom with her towel draped across her face.,emerges inside a sponge salon into a newspaper store.,0\n12971,lsmdc1045_An_education-90300,14195,Someone goes to the driver's door and gets in the car. Indoors someone,Someone goes to the driver's door and gets in the car.,Indoors someone,gold,stands for lonely in the hallway.,gets out of a car and sprints down a road.,makes his way through the weary car's street.,runs up the ramp and walks up to the curb.,0\n12972,lsmdc1045_An_education-90300,14197,Someone swigs from the bottle then drops it on the passenger seat. He,Someone swigs from the bottle then drops it on the passenger seat.,He,gold,gives him a gentle look and she gazes at him lovingly.,throws someone sit down in the chair.,stares mournfully into the distance.,looks out into the amnesia rain.,2\n12973,anetv_8Yfm6gbKRho,854,Cricket players are pitched balls during a game in a large stadium. The cricket player,Cricket players are pitched balls during a game in a large stadium.,The cricket player,gold,is pointed at the net in white.,goes down on the ball.,is trying to help break the game.,hits a high pop fly that is caught.,3\n12974,anetv_8Yfm6gbKRho,853,A man runs onto the field of a sporting game. Cricket players,A man runs onto the field of a sporting game.,Cricket players,gold,are on a field watching the event during a festival.,run across the field and take an encouraging kick after they fell.,are pitched balls during a game in a large stadium.,are on an ice court watching the game.,2\n12975,anetv_8Yfm6gbKRho,855,The cricket players pose for photos. The players all,The cricket players pose for photos.,The players all,gold,continue on their opponent.,begin to shoot in the gryffindor field.,place their tennis sticks.,line up for a race on the adjacent track.,3\n12976,lsmdc3073_THE_GUILT_TRIP-34842,14704,\"Someone regards her son, then fetches her handbag from the hallway. Someone\",\"Someone regards her son, then fetches her handbag from the hallway.\",Someone,gold,and mother share a nearby glance at their son.,smiles at someone as she writhes into the kitchen.,dons his jacket on the darkened floor and climbs a mask.,watches her leave the room.,3\n12977,lsmdc3073_THE_GUILT_TRIP-34842,14706,He picks up his briefcase and follows the man through the partition doors. A woman,He picks up his briefcase and follows the man through the partition doors.,A woman,gold,\"walks in holding two strikes, then halts.\",walks inside on a metal weight bench.,rides up beside someone as he watches the estate.,tries to apply makeup to someone.,3\n12978,lsmdc3073_THE_GUILT_TRIP-34842,14705,\"Someone watches her leave the room. Later, someone\",Someone watches her leave the room.,\"Later, someone\",gold,leads her back onto the beach.,steps out reading someone's slip.,sets her makeshift mug onto a stove.,waits in the hotel's convention hall.,3\n12979,anetv_0p34rFNYj_M,8729,\"An adult female and a young female is in the beach, the adult female is dumping the sand from the pail to the ground. The woman in polka dots\",\"An adult female and a young female is in the beach, the adult female is dumping the sand from the pail to the ground.\",The woman in polka dots,gold,is singing over as she came.,is showing her logo.,play with a brown weight.,is sitting on the ground and showing her pants.,3\n12980,anetv_0p34rFNYj_M,8730,The woman in polka dots is sitting on the ground and showing her pants. The young girl,The woman in polka dots is sitting on the ground and showing her pants.,The young girl,gold,is pointing on to something and waving at the camera.,started to shave her leg using a razor.,uses her foot to apply brushing her bottom nails.,walks through the set of uneven bars and jumps over a jump bar.,0\n12981,lsmdc0022_Reservoir_Dogs-59213,4496,Someone holds the ear up to the cop to see. We,Someone holds the ear up to the cop to see.,We,gold,follow someone as he walks out of the warehouse.,\"see the image rehearsing a design on the monitor, a blurry sphere.\",exit at the end.,see in the back of the plane as the boy drives down a lane.,0\n12982,lsmdc0022_Reservoir_Dogs-59213,4497,We follow someone as he walks out of the warehouse. He,We follow someone as he walks out of the warehouse.,He,gold,\"opens the trunk, pulls out a large can of gasoline.\",glares at her.,gets off his raft and travel by the bus.,puts his letters on the roof.,0\n12983,lsmdc0022_Reservoir_Dogs-59213,4498,\"He opens the trunk, pulls out a large can of gasoline. He\",\"He opens the trunk, pulls out a large can of gasoline.\",He,gold,walks back inside the warehouse carrying the can of gas.,drives a silver worried tractor out of the garage onto the street.,takes down pamphlets and barrels through the commercial door.,holds up the robot's cap again and lets it go.,0\n12984,anetv_WlFBWlCklm8,5610,\"When the man is done demonstrating what he can do on the stilts he stops in his original spot to talk some more, waves and then runs off. The outro appears and it\",\"When the man is done demonstrating what he can do on the stilts he stops in his original spot to talk some more, waves and then runs off.\",The outro appears and it,gold,'s exactly like the intro.,bears a website for art.,is quickly moving talking about what to say.,'s onto the second words: dump.,0\n12985,anetv_WlFBWlCklm8,5609,\"A man named prvni kroky is on metal stilts outside and he begins, walking, jumping, running and moving and doing various movements while on his stilts and people around him are either sitting or walking doing their own thing. When the man is done demonstrating what he can do on the stilts he\",\"A man named prvni kroky is on metal stilts outside and he begins, walking, jumping, running and moving and doing various movements while on his stilts and people around him are either sitting or walking doing their own thing.\",When the man is done demonstrating what he can do on the stilts he,gold,\"zips straight up and taps it several times, does it all the time and seems like he is doing it.\",\"stops in his original spot to talk some more, waves and then runs off.\",gives the guy a thumbs up and begins tending by his gills.,begins up towards an empty sidewalk and trying to break it down.,1\n12986,anetv_A4L4ObzZ5VE,275,All the riders go over a jump and land smoothly. All the riders then,All the riders go over a jump and land smoothly.,All the riders then,gold,run backwards forward and work and run off to the bar.,go along the stone ramp as following in their efforts.,get ready to go indoors and start the race.,go around a sharp turn.,3\n12987,anetv_A4L4ObzZ5VE,274,A bunch of dirt bikes are going around a dirt track racing. All the riders,A bunch of dirt bikes are going around a dirt track racing.,All the riders,gold,ride all bikes down the hill.,are driving the tractor.,start a race race through a dirt track.,go over a jump and land smoothly.,3\n12988,anetv_A4L4ObzZ5VE,276,All the riders then go around a sharp turn. Two riders at the back of the pack,All the riders then go around a sharp turn.,Two riders at the back of the pack,gold,\"does the same jump thing, doing several tricks, cartwheels, and stunts.\",are walking alongside very rifles.,are working inside their bikes.,wiped out while turning.,3\n12989,anetv_A4L4ObzZ5VE,380,People are riding motor bikes around a dirt race track. Two bike riders,People are riding motor bikes around a dirt race track.,Two bike riders,gold,are driving on a road.,are racing across the dirt track and onto the beach.,fall off their motor bikes.,are shown chasing stuck in the tracks.,2\n12990,anetv_A4L4ObzZ5VE,381,Two bike riders fall off their motor bikes. A person,Two bike riders fall off their motor bikes.,A person,gold,is behind it and jumps in tow.,drops the rope and heads toward the fallen bike riders.,is riding like bmx bike in the gym.,reaches into the car and talk about grabs a phone.,1\n12991,lsmdc3009_BATTLE_LOS_ANGELES-268,16115,\"She gives someone a nod. On the roof, someone and someone\",She gives someone a nod.,\"On the roof, someone and someone\",gold,go into a private room where a brunette woman topples the rear seat.,climb out of a train station.,watch through their scopes as someone and someone climb on to the bus.,climb in the ship's deck.,2\n12992,lsmdc3009_BATTLE_LOS_ANGELES-268,16116,\"On the roof, someone and someone watch through their scopes as someone and someone climb on to the bus. Someone\",\"On the roof, someone and someone watch through their scopes as someone and someone climb on to the bus.\",Someone,gold,places his hand over it.,\"smiles at the memory, frowning.\",reaches under the dash.,\"shakes his head, then saunters toward the carriages.\",2\n12993,lsmdc3009_BATTLE_LOS_ANGELES-268,16112,Someone pokes the alien with his gun. Someone,Someone pokes the alien with his gun.,Someone,gold,stares up.,\"shoots it, causing liquid to spurt out.\",stares at the laptop game.,punches the monk's neck.,1\n12994,lsmdc3009_BATTLE_LOS_ANGELES-268,16111,\"Examining the body, someone notes a mechanical piece, seemingly soldered to bone. Someone\",\"Examining the body, someone notes a mechanical piece, seemingly soldered to bone.\",Someone,gold,stands expectantly under a low wall.,joins his someone in an armchair.,uses a foot to scoop himself out of the box.,pokes the alien with his gun.,3\n12995,lsmdc3009_BATTLE_LOS_ANGELES-268,16113,\"Someone shoots it, causing liquid to spurt out. They\",\"Someone shoots it, causing liquid to spurt out.\",They,gold,won't fit.,drag the alien inside.,see a huge chested thug with a spear.,fly under the tree.,1\n12996,lsmdc3009_BATTLE_LOS_ANGELES-268,16114,They drag the body to the back of the station. She,They drag the body to the back of the station.,She,gold,spins as underwear follows right to left.,\"runs, including the unconscious woman.\",is l - box - first - - so he won't fit.,gives someone a nod.,3\n12997,lsmdc3009_BATTLE_LOS_ANGELES-268,16117,\"Someone reaches under the dash. In the station, someone\",Someone reaches under the dash.,\"In the station, someone\",gold,is up and rolling his pants.,slices open the alien's chest.,dives into his water.,pushes himself into a compartment.,1\n12998,anetv_ufK2mbJI0to,12235,A large group of people are seen running around a soccer field playing a game of soccer. The kids,A large group of people are seen running around a soccer field playing a game of soccer.,The kids,gold,continue to throw balls across a table while others stand in the background.,continue to kick the ball around one another while others watch on the side.,walk onto a web on the area while the camera follows closely behind them.,hit around and talk to one another as others watch on the side.,1\n12999,anetv_ufK2mbJI0to,12236,The kids continue to kick the ball around one another while others watch on the side. More shots,The kids continue to kick the ball around one another while others watch on the side.,More shots,gold,are shown of the men running and showing off several teammates watching them.,are shown of the game as well as people playing with one another.,are shown of people speaking to the camera and ends with everyone browsing at the camera.,are shown of one riding around on a trampoline and lead into shots out the side of the lawn.,1\n13000,anetv_XWG_-4VMTcA,11606,\"A wrestler, standing at the top of a ladder, with another man on the ladder with him, but in front of him, jumps off the ladder from the top and takes the other person with him. A man in a wrestling costumer\",\"A wrestler, standing at the top of a ladder, with another man on the ladder with him, but in front of him, jumps off the ladder from the top and takes the other person with him.\",A man in a wrestling costumer,gold,stands at the top of a ladder in the middle of a ring with a referee and people in the audience.,takes the running people kick a punching bag and walk up to the lift and takes the person off the ground and getting off.,approaches the others on the couple to back hands.,chases the referee as the man in stripes picks him off and spins him around.,0\n13001,anetv_XWG_-4VMTcA,11607,A man in a wrestling costumer stands at the top of a ladder in the middle of a ring with a referee and people in the audience. The man jumps off the ladder as people in the audience clap for him and the other man,A man in a wrestling costumer stands at the top of a ladder in the middle of a ring with a referee and people in the audience.,The man jumps off the ladder as people in the audience clap for him and the other man,gold,falls off as well.,begins to jump and go down and falls to the ground.,prepares the ride.,runs past and raises his glass in the air.,0\n13002,lsmdc0002_As_Good_As_It_Gets-46600,17292,Someone's two digital clocks are two minutes apart. He,Someone's two digital clocks are two minutes apart.,He,gold,knocks an old crystal fan out of control.,lowers someone's arm then withdraws.,sits in a chair still fully dressed.,punches a code into the file.,2\n13003,lsmdc0002_As_Good_As_It_Gets-46600,17293,He sits in a chair still fully dressed. A beat then we,He sits in a chair still fully dressed.,A beat then we,gold,see more soles rising.,follow the shot of the car of someone's stately apartment.,hear someone's whispered voice.,see the movement on someone's outstretched.,2\n13004,lsmdc0002_As_Good_As_It_Gets-46600,17294,\"A beat then we hear someone's whispered voice. As someone unpacks, she\",A beat then we hear someone's whispered voice.,\"As someone unpacks, she\",gold,\"is not recognizable, rubbing her face with her fingertips.\",scrutinizes the topic of her stuffed hitch.,ignores the pasta and sails more component.,gives gifts to her mother and someone.,3\n13005,anetv_DpoIgaZ1m_U,9097,The instructor does a sliding kick on the student. The instructor,The instructor does a sliding kick on the student.,The instructor,gold,runs out and grabs a baton.,catches the kicks of the student.,demonstrates how to properly be a hop kick to kick the ball back from the rope.,uses a wrist and a hand stand.,1\n13006,anetv_DpoIgaZ1m_U,9096,The instructor trips the student after catching the punches. The instructor,The instructor trips the student after catching the punches.,The instructor,gold,knocks down the instructor's leg again.,stops them as he raises the score flag.,does a sliding kick on the student.,gets the basket irritated by the instructor.,2\n13007,anetv_DpoIgaZ1m_U,9095,Two men spar in a karate practice match inside a gym studio. The instructor,Two men spar in a karate practice match inside a gym studio.,The instructor,gold,returns to a room demonstrating the fencing skills.,demonstrates the exercise in a fencing ironing class.,trips the student after catching the punches.,\"goes to be kneeling on the bottom of the mat and stops and begins to make kicks, after they break kick.\",2\n13008,lsmdc3002_30_MINUTES_OR_LESS-869,17682,She heads for the vault. Someone,She heads for the vault.,Someone,gold,\"hesitates, someone looks back at her.\",opens a barred gate and enters the vault.,puts on her necklace and collects his belongings.,peeks through another corridor.,1\n13009,lsmdc3002_30_MINUTES_OR_LESS-869,17684,She fills the sack with cash. Someone,She fills the sack with cash.,Someone,gold,\"gives two sacks to someone, who tosses one to someone.\",climbs over the car beside her.,grins and calls back.,strains at her knees and looks at someone.,0\n13010,lsmdc3002_30_MINUTES_OR_LESS-869,17683,Someone opens a barred gate and enters the vault. She,Someone opens a barred gate and enters the vault.,She,gold,towers over the landing on a third balcony.,stops as someone grips the straps of a shotgun as he plummets down onto the floor and leaps onto the canvas.,\"gets out, grabs one piece of wood in a corner and picks a man up from the floor to his desk.\",fills the sack with cash.,3\n13011,anetv_-pLiSHAz4fo,11282,A man talking about how to work out in a certain position. He,A man talking about how to work out in a certain position.,He,gold,explains it and shows in detail how it should be done.,is learning how to make a sandwich.,struggle on how slower he can use.,lay it on the ground beside him and put the left lens onto the man's face.,0\n13012,anetv_-pLiSHAz4fo,11283,He explains it and shows in detail how it should be done. Then he,He explains it and shows in detail how it should be done.,Then he,gold,\"seasons them with ice, paper.\",takes a turn and begins a material and begins to explain the starting button.,puts a wire on it with large bumps.,grabs the bar and demonstrates like that also.,3\n13013,anetv_-pLiSHAz4fo,11284,Then he grabs the bar and demonstrates like that also. He,Then he grabs the bar and demonstrates like that also.,He,gold,resumes his drink such as a presenting and demonstrates the various variations in the ice.,then makes the steps over the dish and walks back and forth on the hopscotch.,begins to do it in repetition a few times before finishing up.,\"gives the little way a mouthful, then begins to turn so that he can enjoy it.\",2\n13014,lsmdc0016_O_Brother_Where_Art_Thou-55656,46,\"Someone O'Daniel stands by someone's chair with an arm draped over his shoulder, leaning in to murmur confidentially. Someone\",\"Someone O'Daniel stands by someone's chair with an arm draped over his shoulder, leaning in to murmur confidentially.\",Someone,gold,\"grabs the inspector's hand, holds up the thin hand, and holds out the hatchet.\",\"sits stiffly erect as he listens, frowning at a spot in space.\",spots the asian haired man's assistant.,\"has a classical record, looking anxious for someone.\",1\n13015,anetv_k1WnO7UeBJ8,9165,Two people are shown walking around with a rug over their shoulders and walk inside a building. They,Two people are shown walking around with a rug over their shoulders and walk inside a building.,They,gold,open the rug then pull out measuring tape and hammer down the rug.,kick their feet together.,fall off their socks and pause at tubes and begin laying down again.,are working out and watching all the locations.,0\n13016,anetv_k1WnO7UeBJ8,9166,They open the rug then pull out measuring tape and hammer down the rug. They then,They open the rug then pull out measuring tape and hammer down the rug.,They then,gold,put plaster all over the floor and present the finished product of the rug by shaking hands with the owners and smiling for pictures.,mix it together with a white bucket.,fold it around 10 lights sitting behind the wall.,\"lower the floor and mix the carpet, then use the handles of the bike.\",0\n13017,lsmdc0011_Gandhi-52132,8394,\"A splendid peacock, its tail fanned in brilliant display, lords it on a velvet lawn. A woman in a sumptuous silk sari\",\"A splendid peacock, its tail fanned in brilliant display, lords it on a velvet lawn.\",A woman in a sumptuous silk sari,gold,is trying to feed it crumbs.,casts a spell after it.,shows a collection of photographs on the sofa in front of them.,\"braces a portly spanish man in front of someone, who floats off.\",0\n13018,lsmdc0011_Gandhi-52132,8400,\"He still has n't smiled, but people have. This\",\"He still has n't smiled, but people have.\",This,gold,emerges from the plane.,\"takes stock, and holds the gun steady.\",is private - - beautiful and still.,starts running toward someone's office.,2\n13019,lsmdc0011_Gandhi-52132,8398,\"Except for the servants, someone is the only Indian male not in European clothes. Someone\",\"Except for the servants, someone is the only Indian male not in European clothes.\",Someone,gold,walks attentively to a tree cage.,cuts out his free hand.,hugs someone's family food.,\"is pleased, someone amused.\",3\n13020,lsmdc0011_Gandhi-52132,8397,\"As someone leaves, people watch him clinically. Except for the servants, someone\",\"As someone leaves, people watch him clinically.\",\"Except for the servants, someone\",gold,is the only indian male not in european clothes.,shakes themselves both around.,dumps the food on the banquet table.,helps someone out over the book.,0\n13021,anetv_Vg5Vfb16Kb8,10796,The little girl then puts on purple lipstick on her lips. The little girl,The little girl then puts on purple lipstick on her lips.,The little girl,gold,plays with the girl using her hair while checking her nails.,holds extremely long hair and quickly applies it to a black long hair.,\"begins brushing the dog, then finishes brushing the bangs out of her hair.\",continues putting on lipstick while speaking to the camera man about putting on makeup.,3\n13022,anetv_Vg5Vfb16Kb8,10795,A little girl wearing a pink blouse sits on a bed squinting her eyes. The little girl then,A little girl wearing a pink blouse sits on a bed squinting her eyes.,The little girl then,gold,puts on purple lipstick on her lips.,spins herself around off a landing.,applies the iron to her face.,tries to turn soap back on.,0\n13023,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33439,19271,\"A bearded man reads paperwork. From her seat across his desk, someone\",A bearded man reads paperwork.,\"From her seat across his desk, someone\",gold,writes in someone's book.,thoughtfully faces the host with his jaw.,checks the ticket then starts toward the office.,shoots the portly bearded man a weary look.,3\n13024,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33439,19272,\"From her seat across his desk, someone shoots the portly bearded man a weary look. He\",\"From her seat across his desk, someone shoots the portly bearded man a weary look.\",He,gold,\"gapes briefly at her before getting up and walking, walking his feet.\",keeps his eyes on someone.,nods to someone and steps into the conference table.,glances haughtily at the heavily pierced woman as he reviews her file.,3\n13025,anetv_45gAK3x_0ds,18930,A young man is seen bouncing up and down on top of black slack line with it in between his crotch. More men,A young man is seen bouncing up and down on top of black slack line with it in between his crotch.,More men,gold,are shown pushed around going on a square as well as other people skiing and playing in the field.,are shown hitting the board and looking at a dartboard as well as contacts in the distance.,appear on the slack line doing tricks back and forth and landing on the slack line and performing for the crowd surrounding them.,continue to chase the other off to slower one other one falling over and walking away.,2\n13026,anetv_45gAK3x_0ds,18372,The credits of the clip are shown. People,The credits of the clip are shown.,People,gold,are going on the island in a competition.,begin to shoot with their palms.,are in the bushes in the woods.,are standing in the rain and some with covering.,3\n13027,anetv_yLS0UuNYXOI,5546,A large ice glacier is shown in the water. A boat,A large ice glacier is shown in the water.,A boat,gold,is moving a lot near the river with some sort of watching playing.,is pulling a person on skis behind the boat.,\"is kneeling down to the waters, people come into view.\",is seen by a shark on the surface of the water.,1\n13028,anetv_Nn-KZMYbOv4,5712,The camera pans all around the people working out and shows a man leading in front. The group,The camera pans all around the people working out and shows a man leading in front.,The group,gold,continues dancing around the room as the couples watch on the sides.,jumps on a set of uneven bars that leads into pictures of people fencing.,starts punching each other in the arms bumping each other with one.,continues to ride together in different shots while following the man in front.,3\n13029,anetv_Nn-KZMYbOv4,5711,A large group of people are seen riding exercise bikes while wearing santa hats. The camera,A large group of people are seen riding exercise bikes while wearing santa hats.,The camera,gold,pans all around the people working out and shows a man leading in front.,shows the girls speaking to the camera while followed by various jump signs and other interviews.,pans around and showing the people sitting around the cars.,pans around the people as they walk past cars.,0\n13030,anetv_Nn-KZMYbOv4,7168,They are wearing christmas outfits while riding spin bikes. The people,They are wearing christmas outfits while riding spin bikes.,The people,gold,continue brake and hopping around the inflated boat after the girls jump along the beach.,begin to slowly slide around on their skis.,are taking a christmas spin class.,in white in similar cars are riding bicycles.,2\n13031,lsmdc1043_Vantage_Point-89002,94,Someone chases after the bearded man who has holstered his gun. Someone,Someone chases after the bearded man who has holstered his gun.,Someone,gold,emerges from behind a desk and spies someone behind someone.,bounces out of his hands and checks on the debris pile inside it.,looks up as a gnn cameraman runs past.,comes out and edges for his entrance to his place down in a bucket.,2\n13032,lsmdc1043_Vantage_Point-89002,102,Someone glances around and manually rewinds the tape control. Someone,Someone glances around and manually rewinds the tape control.,Someone,gold,\"staggers past someone, someone leads someone across the podium.\",crosses to the window and peers out the window.,\"looks intently at the screen, his eyes unblinking.\",watches someone stride past his guards.,2\n13033,lsmdc1043_Vantage_Point-89002,91,\"Across the plaza, someone, clutching a chest wound, tries to sit up. Someone\",\"Across the plaza, someone, clutching a chest wound, tries to sit up.\",Someone,gold,catches up with someone's girlfriend.,comes out of the hall to his study.,stands next to the stone with no sign of anything.,\"runs across to him, past the mess of twisted metal crowd control barriers.\",3\n13034,lsmdc1043_Vantage_Point-89002,99,Someone searches for the cell phone. Someone,Someone searches for the cell phone.,Someone,gold,removes the back of his raincoat from someone's shoulders.,watches as someone keys in numbers on his cell phone.,sits beside someone at the counter.,snatches it out and lumbers grimly to a battered clock.,1\n13035,lsmdc1043_Vantage_Point-89002,96,Someone reads the gnn logo and leaps to his feet. He,Someone reads the gnn logo and leaps to his feet.,He,gold,\"springs nervously to his feet, then creeps toward a gripping giant statue.\",runs to the gnn outside broadcast van and enters the gallery.,picks up the book and puts marker marker on the sheet.,\"tackles a zombie, sends someone flying the collapses over his face.\",1\n13036,lsmdc1043_Vantage_Point-89002,97,He runs to the gnn outside broadcast van and enters the gallery. Someone,He runs to the gnn outside broadcast van and enters the gallery.,Someone,gold,captures the video's lonely progress with residential roads and penalty shots.,\"serves someone, staring gloomily.\",stares at the bank of monitors.,eyes a sack of snapshots and the elephant beams.,2\n13037,lsmdc1043_Vantage_Point-89002,95,Someone looks up as a gnn cameraman runs past. Someone,Someone looks up as a gnn cameraman runs past.,Someone,gold,drags a conscious someone up a driveway then hurries toward it then concern at the chains.,grabs someone again and signals the truck.,adorns a bamboo clipboard.,reads the gnn logo and leaps to his feet.,3\n13038,lsmdc1043_Vantage_Point-89002,86,Someone hauls himself to his knees. Someone,Someone hauls himself to his knees.,Someone,gold,takes a pack of cigarettes from his pocket.,struggles to get to his feet.,\"swings him with another kick, but he gets him on to the table.\",\"looks at someone, breathless.\",1\n13039,lsmdc1043_Vantage_Point-89002,84,They rewind the camera in vision. Both men,They rewind the camera in vision.,Both men,gold,\"run towards the latch, then gallop towards it.\",drop their weapons at hostages lying on the ground.,stare at the lcd screen.,rush out and grab his wrists.,2\n13040,lsmdc1043_Vantage_Point-89002,93,Someone looks up to see the Spanish bearded cop with a gun. Someone,Someone looks up to see the Spanish bearded cop with a gun.,Someone,gold,spots his father filling his chute with bait.,yells in horror at the sound of the flushing hooves of his motorcycle.,approaches the man as if he is no longer dead.,chases after the bearded man who has holstered his gun.,3\n13041,lsmdc1043_Vantage_Point-89002,85,Both men stare at the lcd screen. Flames and black smoke,Both men stare at the lcd screen.,Flames and black smoke,gold,rise into the air.,cases on their feet.,rising over the loo.,filters from a map.,0\n13042,lsmdc1043_Vantage_Point-89002,88,A man throws a blanket over a women whose clothes are in flames. Someone,A man throws a blanket over a women whose clothes are in flames.,Someone,gold,holds a harmonica in front of the mirror.,takes in the number of people lying injured.,grabs the spinner as the movie cuts off.,replays across the screen.,1\n13043,lsmdc1043_Vantage_Point-89002,98,Someone sees a still frame of him being shot. Someone,Someone sees a still frame of him being shot.,Someone,gold,slowly emerges from the bed.,searches for the cell phone.,shoots her off in a fire.,frantically orders his bullet.,1\n13044,lsmdc1043_Vantage_Point-89002,90,\"Someone recalls the muzzle flashes in the window. Across the plaza, someone, clutching a chest wound,\",Someone recalls the muzzle flashes in the window.,\"Across the plaza, someone, clutching a chest wound,\",gold,watches solemnly as someone stomps his nose against the steaming blade.,tries to sit up.,loosens the strap of his balanced - stethoscope.,puts the silver bullet to someone's neck.,1\n13045,lsmdc1043_Vantage_Point-89002,92,Someone stares at his fallen colleague. Someone,Someone stares at his fallen colleague.,Someone,gold,starts for the kid's bath.,sends someone another note.,looks up to see the spanish bearded cop with a gun.,abruptly relaxes out of his vision.,2\n13046,lsmdc1043_Vantage_Point-89002,103,\"Someone looks intently at the screen, his eyes unblinking. Someone\",\"Someone looks intently at the screen, his eyes unblinking.\",Someone,gold,breaks away from the opposing team to play.,notices a sign for someone and someone.,is the man who is broken from far ahead.,turns and runs out off the van.,3\n13047,lsmdc1043_Vantage_Point-89002,89,Someone takes in the number of people lying injured. Someone,Someone takes in the number of people lying injured.,Someone,gold,watches as someone leads her through the airport building.,recalls the muzzle flashes in the window.,are taking pictures as someone is reading her name.,kisses someone and pats him on the stomach.,1\n13048,anetv_gJxR-KzawO4,4305,A little girl is shown standing in front of a sink. She,A little girl is shown standing in front of a sink.,She,gold,walks around and starts crying using the brush and soaping her hands.,is using soap to lather up a cup.,\"flips a pad over, then removes her filter from the tub.\",covers her mouth and then starts to brush her teeth.,1\n13049,anetv_gJxR-KzawO4,8529,\"She is soaping a blue cup, washing it with a sponge. She then\",\"She is soaping a blue cup, washing it with a sponge.\",She then,gold,wiped the towel on a towel and put it on the yellow sink.,pours water into an orange pot and pours the ingredients out of the pot.,completes it and flips it up into the air in front of her.,uses water from the faucet to rinse the cup clean.,3\n13050,anetv_gJxR-KzawO4,4306,She is using soap to lather up a cup. She then,She is using soap to lather up a cup.,She then,gold,dries her hands with her dark hair before applying when laid glisten with a toothbrush cream.,rinses the cup off under the faucet.,shows us how to soap the soap.,brings the soap down and washes it in front of a large bin.,1\n13051,anetv_gJxR-KzawO4,8528,A little girl is standing in front of a kitchen sink. She,A little girl is standing in front of a kitchen sink.,She,gold,\"is soaping a blue cup, washing it with a sponge.\",washes her hands together in a sink.,is pouring a sponge into a bucket and washing a white towel.,is holding a wooden bucket by rags.,0\n13052,lsmdc3069_THE_BOUNTY_HUNTER-5131,18015,\"As someone shoves her off, she grabs a bottle. The woman\",\"As someone shoves her off, she grabs a bottle.\",The woman,gold,smashes it on someone's head.,\"runs her hands over her short, cut hair.\",tosses her money to the floor and exits the elevator.,dumps a pizza into a suitcase.,0\n13053,anetv_yxZ4ouqcld4,1014,Hundreds of people are walking around an area and checking out shoes. A man,Hundreds of people are walking around an area and checking out shoes.,A man,gold,runs past the yard he charges powder.,begins to put credits to the players.,walks into the room and picks up a bowling ball that is being hit by a guy.,talks to a woman about what shoes she likes to wear.,3\n13054,anetv_yxZ4ouqcld4,1015,A man talks to a woman about what shoes she likes to wear. People,A man talks to a woman about what shoes she likes to wear.,People,gold,introduce the woman doing fitness routines with her arms and legs.,are using hoops and fashions.,are sitting on big shoulders.,are dancing and enjoying the event together.,3\n13055,anetv_yxZ4ouqcld4,1019,Several people get interviewed during the race. The man who wins the race,Several people get interviewed during the race.,The man who wins the race,gold,comes across the finish line.,\"shows an unshaven man, doing the ho, in exchange two places and jumps on top of the machine.\",continues talking to the camera that is between them.,and places a wipe on the gate.,0\n13056,anetv_yxZ4ouqcld4,1017,There is food being eaten at the event by many. Several runners,There is food being eaten at the event by many.,Several runners,gold,are shown shows scraping their potatoes.,are at a queue in the kitchen.,are getting ready to start a race.,look up as they walk together.,2\n13057,anetv_yxZ4ouqcld4,1018,The race begins and people run very fast. Several people,The race begins and people run very fast.,Several people,gold,are climbing stunts in an open structure.,join in equipment to get out of cut shot.,get interviewed during the race.,chase the poles away and several adults are people running from the sand watching the game.,2\n13058,anetv_yxZ4ouqcld4,1013,A camera shoots various shots all around a city and shoe store. Hundreds of people,A camera shoots various shots all around a city and shoe store.,Hundreds of people,gold,are walking around an area and checking out shoes.,watch the boat having the cheering event.,are shown cleaning off dogs hair before getting ready to jump.,perform several tricks and tricks with many different frisbees.,0\n13059,anetv_yxZ4ouqcld4,1016,People are dancing and enjoying the event together. There,People are dancing and enjoying the event together.,There,gold,sits continuously with his leg out routine.,are walking next to each other.,is food being eaten at the event by many.,are playing a game with people who are watching them.,2\n13060,anetv__ekSmyvWdRQ,12417,They grab an orange pepper from a pile. They,They grab an orange pepper from a pile.,They,gold,pick their horses up.,start grabbing them all together and put them into a oven.,have fun over the top.,chop the pepper in half.,3\n13061,anetv__ekSmyvWdRQ,12416,A person is putting salad into a clear bowl. They,A person is putting salad into a clear bowl.,They,gold,start the nut and start to dry up.,puts holes in the right side of the salad.,begin to get whipped to the kitchen.,grab an orange pepper from a pile.,3\n13062,anetv_6hu3V1PS4vM,950,\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats written in white on the left side of the screen. Another black screen appears and it\",\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats written in white on the left side of the screen.\",Another black screen appears and it,gold,includes a large white screen that appears to apply with new information.,\"'s white and white words scrolling on the bottom say's distressed, and you can not see anything else.\",\"includes 3 small pictures of the same girl, and contact information written in white at the bottom of the screen.\",\"cuts to white words and white letters, on a white background, include a youtube switch repair - labeled network website.\",2\n13063,anetv_6hu3V1PS4vM,527,\"A closeup of a young woman talking into a screen begins, while the woman is standing on a field of grass and wearing a sports tank top. The woman\",\"A closeup of a young woman talking into a screen begins, while the woman is standing on a field of grass and wearing a sports tank top.\",The woman,gold,can stop the scuba diving and then returns and poses to replay it in several quick moves.,begins to plays hockey with other women on a field.,is sitting and talking others get closer while doing her hair.,\"is then seen riding on a lawn runner and sitting on a bench, watching other people take on different positions.\",1\n13064,anetv_6hu3V1PS4vM,949,\"In the same small screen on the right a man is now talking while the video plays and the white words say he is Asst Coach Aceves Helix Field Hockey. A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats\",In the same small screen on the right a man is now talking while the video plays and the white words say he is Asst Coach Aceves Helix Field Hockey.,\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats\",gold,\"is momentarily duration, then buster appear and takes another steps out of the bottom.\",are shown and is teams of men wearing bikinis and the volleyball rink they begin.,written in white on the left side of the screen.,are shown with bare gray men.,2\n13065,anetv_EF74-5YIhAk,7724,The woman sits in he green kayak and get in the water holding the row. the other man,The woman sits in he green kayak and get in the water holding the row.,the other man,gold,is demonstrating how to hold the rope to go sail.,shakes the man's second and goes to the water pushing the side around the boat.,is in the white kayak and is behind the woman in the sea.,stops chat and stands alone up on the other side of the spot.,2\n13066,anetv_EF74-5YIhAk,7725,The other man is in the white kayak and is behind the woman in the sea. the man and the woman,The other man is in the white kayak and is behind the woman in the sea.,the man and the woman,gold,are kayaking together in a calm sea.,are on the water wakeboarding underwater.,are driving the front of a car at a water ski station.,are pushed down the hill to join boat.,0\n13067,anetv_EF74-5YIhAk,13943,Two people prepare to go kayaking and are pushed into the lake. Two people then,Two people prepare to go kayaking and are pushed into the lake.,Two people then,gold,appear to the other side of the river.,\"paddle around, then come back and celebrate.\",put a hole in the water in the water.,ski down the hill of water.,1\n13068,anetv_EF74-5YIhAk,7723,A man anda woman are standing next to a car holding kayaks equipment. the woman,A man anda woman are standing next to a car holding kayaks equipment.,the woman,gold,sits in he green kayak and get in the water holding the row.,stops with a wheel of his hand.,is shown pushing another man in a row and shown after the man rafting after water.,rolls the car wheel to the next side.,0\n13069,lsmdc1059_The_devil_wears_prada-98840,12491,She passes people sitting at tables outside a restaurant. She,She passes people sitting at tables outside a restaurant.,She,gold,places a boat near her side.,\"stands at the door, listening to someone.\",mechanics of shot cyclist used in operation advertises.,shakes her head and moves on.,3\n13070,lsmdc1059_The_devil_wears_prada-98840,12488,\"Someone stands and stares at her with her big doe eyes for a moment, then leaves. Someone\",\"Someone stands and stares at her with her big doe eyes for a moment, then leaves.\",Someone,gold,\"strolls sadly through the city, mulling over her decision.\",lie blank faced at the broken shards.,peers at a candy then hands him a set of keys.,looks up to see at the others.,0\n13071,lsmdc1059_The_devil_wears_prada-98840,12487,Someone has turned her attention to the book. Someone,Someone has turned her attention to the book.,Someone,gold,\"stands and stares at her with her big doe eyes for a moment, then leaves.\",opens but someone is left behind the door.,sees him in his mirrored notebook.,opens the bottle - moistened anxiously just stares at them.,0\n13072,lsmdc1059_The_devil_wears_prada-98840,12494,She picks up another photograph. Someone,She picks up another photograph.,Someone,gold,\"rubs her neck, trying to ease some of the tension.\",plops doubtfully on the sofa.,sets the stack of queens off the desk.,stands cross - legged at the bar.,0\n13073,lsmdc1059_The_devil_wears_prada-98840,12496,Someone is at work early. Someone's office is empty and so,Someone is at work early.,Someone's office is empty and so,gold,is someone's chair.,seems to be having sex.,does her big - aunt.,is a big voice beside him.,0\n13074,lsmdc1059_The_devil_wears_prada-98840,12502,\"Someone stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair. Someone\",\"Someone stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair.\",Someone,gold,lowers the phone on her bedside chair.,\"dons her hat, steps off of the tv, and reaches for someone's arm.\",comes to the door.,enters someone's apartment.,2\n13075,lsmdc1059_The_devil_wears_prada-98840,12489,\"Someone strolls sadly through the city, mulling over her decision. It's dark and the swanky shop windows she passes\",\"Someone strolls sadly through the city, mulling over her decision.\",It's dark and the swanky shop windows she passes,gold,boasts the picnic area.,are all lit up.,the world.,quite happy when she arrives.,1\n13076,lsmdc1059_The_devil_wears_prada-98840,12490,It's dark and the swanky shop windows she passes are all lit up. She,It's dark and the swanky shop windows she passes are all lit up.,She,gold,she just unlocked her second floor.,\"walks out of the kitchen, wide - eyed, watching.\",passes people sitting at tables outside a restaurant.,\"spots someone, wrapping her arms around her neck.\",2\n13077,lsmdc1059_The_devil_wears_prada-98840,12493,\"Back at home, someone wanders out of the bedroom and finds someone looking through some of her old articles and photographs, including one of her with her parents. She\",\"Back at home, someone wanders out of the bedroom and finds someone looking through some of her old articles and photographs, including one of her with her parents.\",She,gold,\"leads the band away as they walk along the wheeler, past roller - damage on the side of the crescent bird mansion.\",hands him an envelope.,picks up another photograph.,drags him into someone's room.,2\n13078,lsmdc1059_The_devil_wears_prada-98840,12500,\"She stands and stares at someone with a vaguely pleased smile. Someone nods and holds her hand out to receive the coat, but someone\",She stands and stares at someone with a vaguely pleased smile.,\"Someone nods and holds her hand out to receive the coat, but someone\",gold,is led out of the cage through the crowd.,sits up and grabs her breast with her coat.,tosses it and her handbag onto someone's desk and marches into her office.,walk back to grab someone to the purse.,2\n13079,lsmdc1059_The_devil_wears_prada-98840,12492,She shakes her head and moves on. Yellow taxicabs,She shakes her head and moves on.,Yellow taxicabs,gold,flexes her neck and watch as it starts to spin.,stalk toward the band.,appears on the wall behind them.,\"pass her on the street as she walks past shop windows, one displaying a fashionable red coat.\",3\n13080,lsmdc1059_The_devil_wears_prada-98840,12501,\"Someone nods and holds her hand out to receive the coat, but someone tosses it and her handbag onto someone's desk and marches into her office. Someone\",\"Someone nods and holds her hand out to receive the coat, but someone tosses it and her handbag onto someone's desk and marches into her office.\",Someone,gold,\"is inside the terrace, overlooking a room with black, white hair, a headband in a bouncy lounge.\",\"raises her head slightly, her own cheek pressed into hers.\",\"stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair.\",slides into someone's chased room.,2\n13081,lsmdc1059_The_devil_wears_prada-98840,12503,Someone comes to the door. Someone,Someone comes to the door.,Someone,gold,reluctantly picks up her telephone receiver and calls someone who's running down busy streets with some big bags.,turns and walks a little farther into the lobby.,crawls up to meet marley beside one dog.,holds bright a knife coil.,0\n13082,lsmdc1059_The_devil_wears_prada-98840,12499,\"Someone comes in, unbuttoning her coat, which has a striped collar. She\",\"Someone comes in, unbuttoning her coat, which has a striped collar.\",She,gold,photographs them with someone.,stands and stares at someone with a vaguely pleased smile.,strolls through a half - toned sign that has bundles of cocaine.,\"holds him close, then turns and walks toward him to the door.\",1\n13083,anetv__W8m7v1Ir5I,2907,A large group of people are seen standing behind one another with others watching on the sides and leads into the group running down a road. The large group of kids,A large group of people are seen standing behind one another with others watching on the sides and leads into the group running down a road.,The large group of kids,gold,continue running down the road after one another while people still watch on the sides.,are seen cheering as well as switching sides and pushing against the piece and moving back and fourth.,continue taking turns jumping off the rope with other people joining in.,cheer up and down to more areas as well as jumping to each woman and ends with people falling off their teacher.,0\n13084,lsmdc3045_LAND_OF_THE_LOST-21068,11497,\"He puts down a stack of papers, and picks up the prehistoric rock, which shows a familiar indentation. The scientist\",\"He puts down a stack of papers, and picks up the prehistoric rock, which shows a familiar indentation.\",The scientist,gold,takes a flip - top lighter from his pocket and eyes the inscription: big cat.,someone shuts his eyes.,faces down from behind some tree - lined building.,\"shakes direction with green, not noticing it.\",0\n13085,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12176,\"Someone sits amongst a council of free - peoples of Middle earth, someone stands before them, addressing people, and 20 other elves, Dwarves, and men. Someone\",\"Someone sits amongst a council of free - peoples of Middle earth, someone stands before them, addressing people, and 20 other elves, Dwarves, and men.\",Someone,gold,\"reels, some instantly stunned, then makes the pranam.\",\"elaborately built canvas, and different masks are surrounded by a mechanism.\",stops at the front of the bus with the hurt history.,steps forward and moves towards a stone plinth.,3\n13086,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12175,Someone closes someone's fingers around the jewel. Someone,Someone closes someone's fingers around the jewel.,Someone,gold,\"opens her right hand as she stretches out her toes, seizing the ropes rail a few times.\",\"leans towards someone, gently kissing him.\",eyes a young woman.,stares at someone through a tear.,1\n13087,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12177,Someone steps forward and moves towards a stone Plinth. He,Someone steps forward and moves towards a stone Plinth.,He,gold,sits down and hands it back to someone.,halts in the doorway.,places the ring on the plinth and returns to his seat.,reaches out his hand to lock it open then finds someone's face for a.,2\n13088,anetv_bQVMoeBK7XU,12201,\"Once it is evenly displayed, several paragraphs begin to show about the use of the product and what each week should be. After, a short sentence\",\"Once it is evenly displayed, several paragraphs begin to show about the use of the product and what each week should be.\",\"After, a short sentence\",gold,appears and tells you to go on their web page to get more details.,is caught from the door.,\"shows how the process is completed, and it took by a final picture, separate all of the kitchen to take.\",appears again and the video continues.,0\n13089,anetv_bQVMoeBK7XU,12200,\"A bottle of aging cream is shown and a woman begins to apply it on her face in her T - zone. Once it is evenly displayed, several paragraphs\",A bottle of aging cream is shown and a woman begins to apply it on her face in her T - zone.,\"Once it is evenly displayed, several paragraphs\",gold,begin to show about the use of the product and what each week should be.,are shown and the talking lenses are actually the eye lenses of the contact lenses.,of sand appear and a tool is added into it.,\"are shown for cityscape, ending with a newscaster being washed.\",0\n13090,anetv_wvlyV067oOU,16963,The young kids are bouncing on the big trampoline. The young boy,The young kids are bouncing on the big trampoline.,The young boy,gold,carries flute with to take him playing.,switches to the boy.,fell on his back as he avoided the ball.,takes off a helmet.,2\n13091,anetv_wvlyV067oOU,16964,The young boy fell on his back as he avoided the ball. The kids,The young boy fell on his back as he avoided the ball.,The kids,gold,continue to run offscreen and back at home as he missed their jump.,continue playing on the grass while one of them lays something on the boy's left side and misses the wrong direction.,fell down the rope and lands near the string playing the game.,are wearing helmet as they threw the ball and other side of the kids dodge the ball.,3\n13092,anetv_wvlyV067oOU,16965,The kids are wearing helmet as they threw the ball and other side of the kids dodge the ball. Two adult people,The kids are wearing helmet as they threw the ball and other side of the kids dodge the ball.,Two adult people,gold,\"hold their arms and fell, too, and fell first into the pool from each other.\",went up to the trampoline to watch the kids.,are then seen sitting at the end of the beach playing a game of beach soccer.,\"in yellow and team interview behind a fence, ball firmly on the field.\",1\n13093,anetv_E1-eVfnNfXI,4980,\"A woman is sitting with a baby in her arms. She takes licks of an ice cream cone, and the baby\",A woman is sitting with a baby in her arms.,\"She takes licks of an ice cream cone, and the baby\",gold,begins to talk with her.,is shown being brushed.,\"pushes it into his lap, rolls into the water.\",laughs hysterically each time.,3\n13094,anetv_E1-eVfnNfXI,4981,\"She takes licks of an ice cream cone, and the baby laughs hysterically each time. She\",\"She takes licks of an ice cream cone, and the baby laughs hysterically each time.\",She,gold,\"offers him bites, pulling the cone away and making him laugh.\",uses signs and lathers as well as a grown up that shows their fuss.,smokes lighter when he shows a triple time.,touches the disposable cream and the baby above her stands and walks over.,0\n13095,anetv_4W4mrswC2tA,1800,A woman is lifting weights in a gym room. She,A woman is lifting weights in a gym room.,She,gold,lifts the barbell up to her chest.,continues speaking and playing with another girl while sitting on the equipment.,gathers lots of things and uses her hands to tighten the saddle.,uses her next block.,0\n13096,anetv_4W4mrswC2tA,1801,She lifts the barbell up to her chest. She then,She lifts the barbell up to her chest.,She then,gold,places it in his hands and release his jacket.,takes some more her other soda.,drops the baton and continues to stare at her.,lifts it over her head and laughs.,3\n13097,anetv_4W4mrswC2tA,1660,\"A young lady in purple shirt is squatting to pick up the barbel, the barbel has green and red metal plates on it. Then the young girl\",\"A young lady in purple shirt is squatting to pick up the barbel, the barbel has green and red metal plates on it.\",Then the young girl,gold,continues to play a video of herself and the man taking the man at the competition.,\"picked up the barbel, pause on her chest then pushed it all up, then let it go.\",drops the weight and puts it down while the baby dribbles.,is then shown doing the barbel using the weight that went up and then sliding his hands behind her arm.,1\n13098,anetv_mhYFpct97UE,12286,\"Then we see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo. The girls\",\"Then we see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo.\",The girls,gold,\"play heavily, chasing the ball around the field.\",squats all in the lot and scores some shots.,threw the ball and dipped them into balls in several motions with the mallets and i cut them smoothen the hand.,swim to the team's side window to play some hidden hidden by the net.,0\n13099,anetv_mhYFpct97UE,19398,She is then shown in several clips during field hockey games. A green arrow,She is then shown in several clips during field hockey games.,A green arrow,gold,waves to the men as they are interviewed as they seem to talk about the objects.,is shown showing her scores and shoots her a target.,begins to ram into the goalie and back into the goal.,appears over her head each time she is in the game.,3\n13100,anetv_mhYFpct97UE,12287,\"The girls play heavily, chasing the ball around the field. Each time the girl appears, an arrow\",\"The girls play heavily, chasing the ball around the field.\",\"Each time the girl appears, an arrow\",gold,hits the girl in blue again.,hits the girl playing with the racquet.,points to her in the group.,misses the first direction of after she is shot again.,2\n13101,anetv_mhYFpct97UE,12285,A senior photo of a girl holding a rose is shown. Then we,A senior photo of a girl holding a rose is shown.,Then we,gold,see the girl in a pink tunic and a dress with a hat holding a braided jar.,\"see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo.\",see a pair of ladies shown standing facing a roller target.,see photos of the girl at a tumble.,1\n13102,anetv_mhYFpct97UE,19397,A few school photos are shown of a young girl. She,A few school photos are shown of a young girl.,She,gold,walks barefoot down a sidewalk holding girl.,is then shown in several clips during field hockey games.,has her hair collared next to it.,finishes on her face and tightens her lip.,1\n13103,lsmdc1028_No_Reservations-82836,303,Someone walks wearily into her apartment. She,Someone walks wearily into her apartment.,She,gold,is no longer along the street.,picks up the receiver and heads up the front.,adjusts that of her golden volleyball.,\"removes her long, red scarf from around her neck and walks over to the answer machine.\",3\n13104,lsmdc1028_No_Reservations-82836,302,Someone's anguished face is crumpled. Someone,Someone's anguished face is crumpled.,Someone,gold,walks wearily into her apartment.,is vacuuming nearby by the bed.,starts to fall out of the chair.,hangs onto his shoulders.,0\n13105,lsmdc1028_No_Reservations-82836,298,She stares through the window at the sleeping someone. Someone,She stares through the window at the sleeping someone.,Someone,gold,\"shakes his head, and makes his way upstairs.\",checks her spot drawn to the cemetery.,reaches out and grabs her wand with her hand.,slowly wakes up and takes in her surroundings.,3\n13106,lsmdc1028_No_Reservations-82836,304,\"She removes her long, red scarf from around her neck and walks over to the answer machine. Transfixed, someone\",\"She removes her long, red scarf from around her neck and walks over to the answer machine.\",\"Transfixed, someone\",gold,\"sits in the seat dressed, teenage - like.\",\"stands in the hallway, clutching her coat.\",\"dashes out of the room, quickly in a blind, and stockings on top of her stomach.\",looks at his wrist.,1\n13107,lsmdc1028_No_Reservations-82836,305,\"Transfixed, someone stands in the hallway, clutching her coat. She\",\"Transfixed, someone stands in the hallway, clutching her coat.\",She,gold,\"uses the blow dryer, to show someone's hair.\",swallows and sobs.,turns and walks back towards the door.,\"hands on her crackers, then jerks upright.\",2\n13108,lsmdc1028_No_Reservations-82836,299,Someone slowly wakes up and takes in her surroundings. She,Someone slowly wakes up and takes in her surroundings.,She,gold,wraps his arms around his neck and rests her head on his shoulder.,\"looks across at someone, who's staring at her.\",lowers her arms and opens her eyes.,\"crosses her apartment toward a tv, and picks up her phone.\",1\n13109,lsmdc1028_No_Reservations-82836,300,\"Then, someone sits up. Someone\",\"Then, someone sits up.\",Someone,gold,points quizzically at someone.,steps out to find someone striding over to her.,stares unblinkingly at the young girl.,smiles at the reverend.,2\n13110,lsmdc1028_No_Reservations-82836,301,Someone stares unblinkingly at the young girl. Tears,Someone stares unblinkingly at the young girl.,Tears,gold,roll down someone's face.,sprint toward the other bureau.,\"man is sitting in the hospital bed, with the night combo forming on her, walking with her hands in his pockets, he\",\"a medic, he staggers at her victim.\",0\n13111,anetv_E-bv464MTsQ,5531,A large group of people riding horses are walking around each other on a large field. One of them throws a ball onto the field and the people,A large group of people riding horses are walking around each other on a large field.,One of them throws a ball onto the field and the people,gold,fight over the ball around.,begin playing a game on their horses.,are watching the game in the hockey event.,stop to talk while three two wrestle to the side.,1\n13112,lsmdc1009_Spider-Man3-76101,6912,\"Someone, wearing just a pair of shorts, steps out of the chamber. He\",\"Someone, wearing just a pair of shorts, steps out of the chamber.\",He,gold,stands up and looks up and sees someone in the hallway.,\"comes out of the back door, heaves a door back into the mechanism and closes it.\",takes a deep breath and smirks.,\"walks up and down through the water, carrying a satchel of toiletries.\",2\n13113,lsmdc1009_Spider-Man3-76101,6913,\"He takes a deep breath and smirks. In a dark, peaceful forest, people, lying on a huge hammock - like web on their backs,\",He takes a deep breath and smirks.,\"In a dark, peaceful forest, people, lying on a huge hammock - like web on their backs,\",gold,look up at him on the shore.,flip to a couple of greenery.,sit behind a huge tree climbing in a body like brown snow.,are watching for shooting stars.,3\n13114,lsmdc1009_Spider-Man3-76101,6911,\"The door of a glass chamber slides open and green smoke pours out. Someone, wearing just a pair of shorts,\",The door of a glass chamber slides open and green smoke pours out.,\"Someone, wearing just a pair of shorts,\",gold,steps out of the chamber.,puts his arm around his head.,\"is lighting her cigarette, bladed so far.\",does some step forward from the swimming pool.,0\n13115,lsmdc1009_Spider-Man3-76101,6910,In the Goblin Lair at the Osborne mansion several incarnations of the demonic Green Goblin mask are displayed on stands along with a number of high tech weapons and futuristic flying equipment. A screen,In the Goblin Lair at the Osborne mansion several incarnations of the demonic Green Goblin mask are displayed on stands along with a number of high tech weapons and futuristic flying equipment.,A screen,gold,appears in the background as we have seen magazine to someone's office.,shows a scan of a human body.,shows tremendous crabs and snakes that are saying to someone.,\"of dots, overlapping sweep.\",1\n13116,lsmdc1026_Legion-5318,15289,\"Someone leads a tall, black, 30'ish someone inside. Someone\",\"Someone leads a tall, black, 30'ish someone inside.\",Someone,gold,clasps his hands together.,watches someone throw as the two sisters rush out of view.,looks up with interest.,sits alone at the altar of a apartment.,2\n13117,lsmdc1026_Legion-5318,15287,\"Someone, holding an old wooden cot, stares at them, then walks away. Someone\",\"Someone, holding an old wooden cot, stares at them, then walks away.\",Someone,gold,comes out of the snowy area with a tight grin.,has a picture written in it that has fallen in his eyes.,turns someone.,puffs on her cigarette.,3\n13118,lsmdc0012_Get_Shorty-53396,8328,People walk out to the driveway. Someone,People walk out to the driveway.,Someone,gold,\"follows someone over to the minivan, opens the door for him.\",sees a joke at a wall.,folds a blanket over the paint.,stops to hang ear - to - ear as he lies in bed alone getting around.,0\n13119,lsmdc0012_Get_Shorty-53396,8329,\"Someone follows someone over to the minivan, opens the door for him. People\",\"Someone follows someone over to the minivan, opens the door for him.\",People,gold,come out of the door and drink out.,\"are laughing as someone, very drunk now finishes another drink.\",\"looks at him, then he moves closer to his child.\",walks into the toilets.,1\n13120,lsmdc0010_Frau_Ohne_Gewissen-51508,15363,He goes on pacing up and down. Finally someone,He goes on pacing up and down.,Finally someone,gold,can't stand the silence any longer.,turns and stares at the stairs and looks.,approaches the house and draws his rakes.,looks out at him and writhes.,0\n13121,anetv_uokQq9Xrjf8,2627,There's a fitness trainer representing The FitCast fitness in a gym demonstrating how to do a tall kneeling palloff press. He,There's a fitness trainer representing The FitCast fitness in a gym demonstrating how to do a tall kneeling palloff press.,He,gold,peels them apart and begins slicing some new material beneath the clothing.,smooths and iron clothes screws down.,is kneeling down on the floor in a black shirt and gray sweat pants.,\"belly workout, she moves her legs over an exercise bike doing crunches before she stops and gets on on the bikes.\",2\n13122,lsmdc3060_SANCTUM-29545,6329,\"Someone looks at his son, his profile traced in a glimmer of light. Daylight\",\"Someone looks at his son, his profile traced in a glimmer of light.\",Daylight,gold,bathes their faces as they emerge from a fissure and step into a cavern.,time he knocks on the window.,walks over and peeks around his window.,flares up and reverses around the air.,0\n13123,lsmdc3060_SANCTUM-29545,6334,Someone climbs on to the tank. He,Someone climbs on to the tank.,He,gold,holds a rifle over his stomach and staggers back over the supports.,\"peers down its hatch, then straightens.\",grabs a fish and hurries out.,jumps off his motorbike.,1\n13124,lsmdc3060_SANCTUM-29545,6326,\"He lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light. As someone lifts his hand, a trace of light\",\"He lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light.\",\"As someone lifts his hand, a trace of light\",gold,reflects on his palm and fingers.,shines on his slip and explodes.,shines on someone's face as he shoots it.,approaches his bones.,0\n13125,lsmdc3060_SANCTUM-29545,6331,\"As they walk toward it, someone removes his helmet. Someone removes his helmet as well and his father\",\"As they walk toward it, someone removes his helmet.\",Someone removes his helmet as well and his father,gold,settles into the top of the vehicle.,lifts his face to the hole.,and his teammates gaze in the face of the latrine.,\"sits by, watching his own pistol at the nighttime pier.\",1\n13126,lsmdc3060_SANCTUM-29545,6327,\"As someone lifts his hand, a trace of light reflects on his palm and fingers. He\",\"As someone lifts his hand, a trace of light reflects on his palm and fingers.\",He,gold,collects his beard then shifts his gaze to the parchment.,pauses and looks down at her.,shifts his gaze to someone.,\"shows a man reading, pointing about.\",2\n13127,lsmdc3060_SANCTUM-29545,6320,He checks for his light's reflection on his palm. Someone,He checks for his light's reflection on his palm.,Someone,gold,\"stares down at the girl, then shifts her eyes, collects her purse and spoons.\",lifts his hand to the light on his own helmet and switches it off.,sits by several flowers on the journal.,stares back through the surface of the thick water.,1\n13128,lsmdc3060_SANCTUM-29545,6335,\"He peers down its hatch, then straightens. Rain\",\"He peers down its hatch, then straightens.\",Rain,gold,\"the gun, the officers surround the agent and hurry up through a tree - lined building toward the shore.\",approaches a male guard.,takes a step forward and pushes the door open.,falls on someone's face as he looks up.,3\n13129,lsmdc3060_SANCTUM-29545,6324,\"Holding its button down, he creeps forward, no longer crawling but crouched under the low ceiling. Someone pauses beside him and someone\",\"Holding its button down, he creeps forward, no longer crawling but crouched under the low ceiling.\",Someone pauses beside him and someone,gold,cowers through the clasp as he has formed on someone's vest.,shoots him a glance.,falls into the abyss.,leans back in his chair.,1\n13130,lsmdc3060_SANCTUM-29545,6323,\"He turns on his wristwatch's light and it glows on his determined face. Holding its button down, he\",He turns on his wristwatch's light and it glows on his determined face.,\"Holding its button down, he\",gold,sends it flying across the next floor of a statue.,follows her gaze up the convoy then approaches a sign.,\"yanks it open, revealing the shape.\",\"creeps forward, no longer crawling but crouched under the low ceiling.\",3\n13131,lsmdc3060_SANCTUM-29545,6321,\"Someone lifts his hand to the light on his own helmet and switches it off. Now, someone's helmet light\",Someone lifts his hand to the light on his own helmet and switches it off.,\"Now, someone's helmet light\",gold,shines up at a laptop before spreading it out with a red flag.,shines past another oncoming car and looms toward it.,shows someone on a rundown datsun.,\"emerges from darkness, illuminating the walls of a tunnel as he crawls through it.\",3\n13132,lsmdc3060_SANCTUM-29545,6322,\"As someone moves forward, his light fades out. He turns on his wristwatch's light and it\",\"As someone moves forward, his light fades out.\",He turns on his wristwatch's light and it,gold,crawls across the room.,fly out into the street.,takes on a dejected shape.,glows on his determined face.,3\n13133,lsmdc3060_SANCTUM-29545,6330,\"Daylight bathes their faces as they emerge from a fissure and step into a cavern. At its center, a brilliant shaft of sunlight\",Daylight bathes their faces as they emerge from a fissure and step into a cavern.,\"At its center, a brilliant shaft of sunlight\",gold,reflects the director in the morning sun shooting brightly from the tranquil venue.,stomps on the edges of the ship as a lighthouse shimmers its way between them.,glows down through a hole in its high ceiling.,shines on windows on their posted images.,2\n13134,lsmdc3060_SANCTUM-29545,6337,\"He lights a makeshift torch then grins. As someone rises with his flaming cylindrical container in hand, someone\",He lights a makeshift torch then grins.,\"As someone rises with his flaming cylindrical container in hand, someone\",gold,shoves fabric into the top of his own oil - filled container.,reaches into the jacket pocket.,grabs his flailing grenade.,watches from the meat cage.,0\n13135,lsmdc3060_SANCTUM-29545,6325,Someone pauses beside him and someone shoots him a glance. He,Someone pauses beside him and someone shoots him a glance.,He,gold,\"replaces the lid, he strides toward someone and goes outside.\",turns and glances at someone then shuts the gate in a cupboard.,\"lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light.\",kneels down in front of the large spiral - eyed man.,2\n13136,lsmdc3060_SANCTUM-29545,6333,Someone lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it. Someone,Someone lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it.,Someone,gold,climbs on to the tank.,dangle as snowy looks behind him.,crawls on a leather bench where a bench faced worker stands upright.,sits in his cottage.,0\n13137,lsmdc3060_SANCTUM-29545,6336,\"Squatting, someone fills a container with oil from the tank, then looks over at someone who strikes a flint under the shelter of a wheel well. He\",\"Squatting, someone fills a container with oil from the tank, then looks over at someone who strikes a flint under the shelter of a wheel well.\",He,gold,begins to d the seeds out of the machine.,offers some real matches to someone.,lights a makeshift torch then grins.,tosses a coin onto the gryffindor table.,2\n13138,lsmdc3060_SANCTUM-29545,6319,The light on someone's helmet torch fades out. He,The light on someone's helmet torch fades out.,He,gold,checks for his light's reflection on his palm.,pauses at a watering hole and lines up his nearby scope.,turns on the light.,wears a black helmet and gray owl.,0\n13139,lsmdc3060_SANCTUM-29545,6332,Someone removes his helmet as well and his father lifts his face to the hole. Someone,Someone removes his helmet as well and his father lifts his face to the hole.,Someone,gold,\"shifts her amused eyes to the girl, who watches as someone props her head against her own chin.\",crawls onto the island and raises the binoculars.,lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it.,we all see the intro.,2\n13140,lsmdc3060_SANCTUM-29545,6328,He shifts his gaze to someone. Someone,He shifts his gaze to someone.,Someone,gold,takes a pair of steps toward someone's apartment.,leads him down the hall leading to the lift.,\"looks at his son, his profile traced in a glimmer of light.\",reaches nearby and kicks a fork into someone's face.,2\n13141,lsmdc3013_BURLESQUE-5036,14547,He cuts the stage lights. Someone,He cuts the stage lights.,Someone,gold,moves across the table to his friends.,touches someone 'scooter.,purses his lips in a soft stare.,places a chair center stage and straddles it.,3\n13142,lsmdc3013_BURLESQUE-5036,14541,He kisses someone 'cheek. She,He kisses someone 'cheek.,She,gold,watches him go with a grateful smile.,gives him a resolute look and dashes out onto the street on third street.,\"returns, revealing someone's sleeve, lets out a loud cry.\",kisses him hard between the lips.,0\n13143,lsmdc3013_BURLESQUE-5036,14540,Someone gives an affectionate smile as someone walks away. She,Someone gives an affectionate smile as someone walks away.,She,gold,steadies his descent and soberly claps his hands.,stares down at her.,briefly pats someone's shoulder.,bites her lip worriedly.,3\n13144,lsmdc3013_BURLESQUE-5036,14545,\"She drops the costumes, then removes her coat. She\",\"She drops the costumes, then removes her coat.\",She,gold,climbs wearily onto the stage.,gets someone's alien hand from plastic bags.,\"drops over her feet, and takes someone by the wrist.\",is magically carrying them.,0\n13145,lsmdc3013_BURLESQUE-5036,14542,She watches him go with a grateful smile. Now she,She watches him go with a grateful smile.,Now she,gold,\"strolls across the crowded hall, to the riverbank, out beneath a slender tree sticker with a long length snow covered grassy lining.\",\"enters the stage area, her arms loaded with costumes.\",rides along the line of houses near the health clinic.,is tearfully stronger now inside as someone wakes and peers out the window.,1\n13146,lsmdc3013_BURLESQUE-5036,14548,Someone places a chair center stage and straddles it. Someone,Someone places a chair center stage and straddles it.,Someone,gold,\"walks over to the window, peers out of the window, briefly gazing through the window as someone comes in.\",focuses a blue - tinted spotlight on her.,dance onto the course steadily.,\"stands up on the couch, then slides one leg near his chest.\",1\n13147,lsmdc3013_BURLESQUE-5036,14546,\"Someone puts on a cd labeled, Instrumental Only, Last of me. He\",\"Someone puts on a cd labeled, Instrumental Only, Last of me.\",He,gold,fumbles right up the number which opens.,finds a grateful design in its dimly lit kitchen and goes with a table already.,cuts the stage lights.,\"reaches through the drawer, wakes the lights and presses the triangle.\",2\n13148,anetv_8_RfK2rp2To,19458,An athlete is seen standing ready holding a pole and begins running down a large track over a beam. The woman,An athlete is seen standing ready holding a pole and begins running down a large track over a beam.,The woman,gold,\"continues jumping, talking to grab tools and pit that many while.\",continues skateboarding down the track while a man helps him balance on a beam.,then jumps over the beam and throws her arms in the air to celebrate and run around the field.,stops and climbs back and fourth on the rope next to a camera.,2\n13149,anetv_8_RfK2rp2To,19459,The woman then jumps over the beam and throws her arms in the air to celebrate and run around the field. The woman,The woman then jumps over the beam and throws her arms in the air to celebrate and run around the field.,The woman,gold,wave her arms in the air while looking off into the distance.,continues to do cartwheels and ends with her throwing her arms in the air.,is seen jumping over the beam and flipping.,does flips on the mat while celebrating and ends with her jump shown again and her sitting in front of her score.,3\n13150,lsmdc3063_SOUL_SURFER-31175,8321,\"At the hospital, someone sits on a exam table. Someone's mother\",\"At the hospital, someone sits on a exam table.\",Someone's mother,gold,sets the pants down.,smiles and nods to someone.,watches him projected across the table.,leaves the receptionist from the office.,1\n13151,lsmdc3063_SOUL_SURFER-31175,8320,\"In the grocery store's produce section, someone reaches for a bag of apples on a high shelf. Later, she\",\"In the grocery store's produce section, someone reaches for a bag of apples on a high shelf.\",\"Later, she\",gold,carries a brown paper bag to her bicycle.,uses a peanut butter out of a chicken that crosses her nose.,sits past a grazes fence with the old woman on it.,bursts into the apartment door.,0\n13152,lsmdc0009_Forrest_Gump-50286,12188,Someone pulls a robe off of her sleeping roommate's bed. Someone,Someone pulls a robe off of her sleeping roommate's bed.,Someone,gold,\"hands the robe to someone, sitting on someone's bed.\",circles a car toward someone.,\"lifts his pants, some weeping.\",\"gives the smothers a pleading look, then looks over her shoulder at someone.\",0\n13153,lsmdc0009_Forrest_Gump-50286,12187,Someone unlocks the door and they step inside. Someone,Someone unlocks the door and they step inside.,Someone,gold,opens the door to the office and slams the doors shut.,pulls a robe off of her sleeping roommate's bed.,\"enters, leaving the floor behind.\",wraps his arm around someone's shoulder then marches off.,1\n13154,lsmdc0009_Forrest_Gump-50286,12191,Someone dries the water from her hair. Someone,Someone dries the water from her hair.,Someone,gold,scoops water from her fists.,takes off her slip and sits on the bed next to him.,goes up the banks to another boat.,leaves her kitchen.,1\n13155,lsmdc0009_Forrest_Gump-50286,12190,\"Someone picks up a towel, then walks back toward someone. Someone\",\"Someone picks up a towel, then walks back toward someone.\",Someone,gold,dries the water from her hair.,is sitting back down in the armchair; someone starts sleeping in the armchair.,stares up at a sleeping meerkat.,takes a round look at him.,0\n13156,lsmdc0009_Forrest_Gump-50286,12195,Someone looks down at someone's breasts. Someone,Someone looks down at someone's breasts.,Someone,gold,realizes that he is looking at her.,\"smiles as people disappear, then someone rubs his face.\",\"grins and, getting out of his way, avoiding the word other royal expression on his face.\",puts the pages on the diary.,0\n13157,lsmdc0009_Forrest_Gump-50286,12194,Someone looks at someone like he is never seen a woman in her underwear before. Someone,Someone looks at someone like he is never seen a woman in her underwear before.,Someone,gold,\"stands beside him, holding her hand to her mouth.\",\"stares out of the window, sees tears from sidewalk away.\",bows her head and nods.,looks down at someone's breasts.,3\n13158,lsmdc0009_Forrest_Gump-50286,12192,Someone takes off her slip and sits on the bed next to him. She,Someone takes off her slip and sits on the bed next to him.,She,gold,\"comes in, smiles at him - - then clenches the handle, his gears popping out again.\",is only wearing her bra and panties.,slides a hand into his partner's.,closes the front door with someone with another padlock.,1\n13159,lsmdc0009_Forrest_Gump-50286,12193,She is only wearing her bra and panties. Someone,She is only wearing her bra and panties.,Someone,gold,\"walks over to her, where someone is the same motioning.\",looks at someone like he is never seen a woman in her underwear before.,\"picks up the reins, but he hugs it with an effortless stride.\",is on her bed as she walks his two fingers with her left hand and sits with her.,1\n13160,lsmdc0009_Forrest_Gump-50286,12189,\"Someone hands the robe to someone, sitting on someone's bed. Someone\",\"Someone hands the robe to someone, sitting on someone's bed.\",Someone,gold,\"picks up a towel, then walks back toward someone.\",stares at him as he goes to his car.,has one hand clasped over someone's neck.,regards him applauds bitterly.,0\n13161,lsmdc0009_Forrest_Gump-50286,12183,Someone gets back into the car. Someone,Someone gets back into the car.,Someone,gold,goes on on a campus area wearing a dark vest.,pulls away as someone steps toward someone.,\"enters, leaving the suv.\",slowly walk through some building.,1\n13162,lsmdc0009_Forrest_Gump-50286,12186,Someone grabs someone hand and leads him toward the dorm. People,Someone grabs someone hand and leads him toward the dorm.,People,gold,walk to his car and leans on the other shoulder for a hug.,sneak to someone's door.,sit with his father and her father.,walk and walk away.,1\n13163,anetv_RRIGf87R6jc,5669,She uses a cookie cutter to cut shapes out of the dough. She,She uses a cookie cutter to cut shapes out of the dough.,She,gold,\"begins jumping up the sides on the wall, then takes the can back off.\",puts olive slices into a lemon.,\"places the ingredients on an oven and takes some baking bread, drying us un - cooked.\",is dipping the dough into a white glaze.,3\n13164,anetv_RRIGf87R6jc,5668,A girl is pouring ingredients into a bowl and mixing them together. She,A girl is pouring ingredients into a bowl and mixing them together.,She,gold,uses a cookie cutter to cut shapes out of the dough.,brings them to the stage.,raises a wet sleeve around her finger and picks up the frosting and starts putting it.,\"eats all the ingredients and her hands, stirring them together in a bowl.\",0\n13165,lsmdc0026_The_Big_Fish-62521,431,\"He has a gun, but he truly does n't want to shoot Norther. The Teller Woman\",\"He has a gun, but he truly does n't want to shoot Norther.\",The Teller Woman,gold,stops before obliges cases.,is already waving him to the back.,playfully offers her hand away.,escapes someone followed by firing wildly.,1\n13166,lsmdc0026_The_Big_Fish-62521,434,She pulls open the vault door. The inner sanctum of the Horizon Savings and Loan,She pulls open the vault door.,The inner sanctum of the Horizon Savings and Loan,gold,is fitted for a small box.,truly come out and stare out.,holds exactly one folding chair.,appear in the glue together.,2\n13167,lsmdc0026_The_Big_Fish-62521,432,The Teller Woman is already waving him to the back. He,The Teller Woman is already waving him to the back.,He,gold,decides he better go.,is holding her up to the ceiling.,holds up the wedding photo.,has got a fellowship buried by his canopy.,0\n13168,lsmdc0026_The_Big_Fish-62521,435,The inner sanctum of the Horizon Savings and Loan holds exactly one folding chair. Someone,The inner sanctum of the Horizon Savings and Loan holds exactly one folding chair.,Someone,gold,is left atop the roof.,sees that someone is rubbed bright on his hip hop fashion.,\"winces, but does n't say anything yet.\",is releasing a character off into a room.,2\n13169,lsmdc0026_The_Big_Fish-62521,433,He decides he better go. The Teller Woman,He decides he better go.,The Teller Woman,gold,is crying as she works the combination.,\"is nowhere to be seen but begins there, which moves to the other side & that the woman is going to start.\",uses the bodhi tree to catch the chain of fire.,lifts the table and hands it to someone.,0\n13170,lsmdc3044_KNOCKED_UP-20945,18272,Someone takes a long sip of coffee. He,Someone takes a long sip of coffee.,He,gold,looks at a girl in the mirror.,slides the sheet down into his bag and stares off thoughtfully.,opens the closet door to reveal a bearded gray - haired man in a robe and hat.,lifts his brow and smiles.,3\n13171,anetv_F2yh5HfIj2c,16824,A man wearing scuba gear walks along the edge of a swimming pool. The man,A man wearing scuba gear walks along the edge of a swimming pool.,The man,gold,takes several turns and swims back into the water.,continues immensely through the water and stopping deep in the water.,starts talking to the camera and shows the camera various items.,is holding a bikini whose he is holding rubs.,2\n13172,anetv_F2yh5HfIj2c,16827,The man enters the swimming pool and proceeds to place a cover on the drain while under water in the scuba gear. The man,The man enters the swimming pool and proceeds to place a cover on the drain while under water in the scuba gear.,The man,gold,holds up a towel and rinses the dishes out of the water to dry.,is then shown in slow motion turning off the stool to hide the outline of the vacuum's bed.,gives a thumbs up.,helps the child under greasy blue water from the window of the tub to the back.,2\n13173,anetv_F2yh5HfIj2c,16825,The man starts talking to the camera and shows the camera various items. The camera,The man starts talking to the camera and shows the camera various items.,The camera,gold,pans to different images of sitting down.,moves to the man back on the nails of the man looking down.,shows the swimming pool.,shows the different areas of the chart while the man sits behind them.,2\n13174,anetv_F2yh5HfIj2c,16828,The man gives a thumbs up. The man,The man gives a thumbs up.,The man,gold,uses a brush before filling it up with tools and tools.,gets to the end and sticks the equipment between someone's washing.,shows the bubbles the tool makes underwater while bobbing his head.,draws the strip off a circle.,2\n13175,lsmdc1009_Spider-Man3-76076,3248,\"The broken mirror pieces slot together, becoming the blue sky above New York City. Someone\",\"The broken mirror pieces slot together, becoming the blue sky above New York City.\",Someone,gold,\"swings through the air, high above the city streets.\",fixes his top chair in the back of a van parked by his car.,\"bursts into driven traffic as it flies along the street, considerably backed.\",\"moves on, glancing the length of the stairs and reaching a door into his bedroom.\",0\n13176,lsmdc1009_Spider-Man3-76076,3247,Someone in a long white dress looks reproachfully at someone in the final fractured image. The broken mirror pieces,Someone in a long white dress looks reproachfully at someone in the final fractured image.,The broken mirror pieces,gold,have been sitting in a white circle of heavy water resting on the dingy seats.,an enormous computerized to the video.,flops up to the side giant wearing a increasingly attached necklace.,\"slot together, becoming the blue sky above new york city.\",3\n13177,anetv_FrVitupq7sQ,5082,Several slow motion scenes are shown performing a correct tennis serve with the men demonstrating right after. The men,Several slow motion scenes are shown performing a correct tennis serve with the men demonstrating right after.,The men,gold,step into the other shots that leads into a man wearing a pair of gloves lifting a large weight over his head.,do this for several turns with one slow motion of a man performing the trick done afterwards.,continue to play the game back and fourth to one another while going on and speaking to the camera and bite afterwards.,moves to a hockey room while speaking to the camera and leads into shots of him playing his team mates.,1\n13178,anetv_FrVitupq7sQ,5081,Two men are seen standing on a tennis court holding rackets and speaking to the camera. Several slow motion scenes,Two men are seen standing on a tennis court holding rackets and speaking to the camera.,Several slow motion scenes,gold,are shown performing a correct tennis serve with the men demonstrating right after.,are shown of a man in a white shirt while speaking to another man in front of him.,are shown on the screen followed by several people doing a game of pic and talking to the camera again.,are shown of the players shooting in suits.,0\n13179,anetv_73n-KuFkH94,10648,Several shots of athletic runners are shown followed by slow motion shots of an athlete running a long jump and celebrating. The camera,Several shots of athletic runners are shown followed by slow motion shots of an athlete running a long jump and celebrating.,The camera,gold,captures the progress of the act as behind this time followed by many clips more shown of people running down the field.,races to the right by control to score and jumps up into up once again.,pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd.,watches as the video ends with the players shown before a soccer field posing.,2\n13180,anetv_73n-KuFkH94,10649,The camera pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd. His jump,The camera pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd.,His jump,gold,is shown while more people are getting the jumps off their bikes and doing various tricks.,jumps off and his cheer goes up on the screen.,jumps over a bar while well kicking a ball.,is shown several more times followed by other's jumping performing their jump in front of the large crowd.,3\n13181,lsmdc3025_FLIGHT-11937,13310,\"Later, he sets a case of Budweiser in the passenger seat. He\",\"Later, he sets a case of Budweiser in the passenger seat.\",He,gold,locks it on a folded strip of paper.,gets in the car and unscrews a gallon bottle of vodka.,picks out the tin and stamps across the street someone the car.,sits facing a mirror.,1\n13182,lsmdc3025_FLIGHT-11937,13309,As he studies the glass of vodka. He,As he studies the glass of vodka.,He,gold,\"gulps the mixture, then turns to her startled face to collect his reaction.\",pulls a towel out of his shirt pocket and lets it out.,pours a handful of straws into a drink.,\"picks it up, and takes a drink.\",3\n13183,lsmdc3025_FLIGHT-11937,13319,Someone pulls up to the apartment entrance. He,Someone pulls up to the apartment entrance.,He,gold,tries on a door and finds it ajar.,lights a cigarette from the tip of a small revolver.,leans on a roof.,passes the car with someone's things.,3\n13184,lsmdc3025_FLIGHT-11937,13313,He drives with groggy eyed. Someone,He drives with groggy eyed.,Someone,gold,\"drives down a street, beer can in hand.\",takes a swig handing someone to a young boy.,is left on a corner.,strides hastily through the fog - lined streets.,0\n13185,lsmdc3025_FLIGHT-11937,13314,\"Someone drives down a street, beer can in hand. He\",\"Someone drives down a street, beer can in hand.\",He,gold,spots a record view of the leeds players and heads towards the living room.,\"passes a dead - end street, and stops.\",stops at a set of keys on the bench.,\"goes to a window, squinting around looking at the damage.\",1\n13186,lsmdc3025_FLIGHT-11937,13311,He gets in the car and unscrews a gallon bottle of vodka. He,He gets in the car and unscrews a gallon bottle of vodka.,He,gold,\", someone raises a hood in front of a face, with a gun slung around his neck.\",grabs at one of the juice to massage his way with it.,takes it and drives in through the passenger door.,looks around and drinks from the bottle.,3\n13187,lsmdc3025_FLIGHT-11937,13315,\"He passes a dead - end street, and stops. Someone\",\"He passes a dead - end street, and stops.\",Someone,gold,gets out of his car.,\"watches the baled, distraught fight.\",\"looks away, then back at someone.\",\"pauses and looks around, then looks over.\",2\n13188,lsmdc3025_FLIGHT-11937,13321,He takes a sip from his beer and looks up. Someone,He takes a sip from his beer and looks up.,Someone,gold,peer out the window of an apartment building.,with his eyes dart beside someone.,looks out and licks his hands.,walks toward the apartment.,3\n13189,lsmdc3025_FLIGHT-11937,13307,A photo of someone appears on the tv behind the bar. Someone,A photo of someone appears on the tv behind the bar.,Someone,gold,cautiously walks out of the house.,sits at the bar and moves a cocktail napkin back and forth.,comes out of a car with a tag wrapped in a t - shirt.,follows to the mat.,1\n13190,lsmdc3025_FLIGHT-11937,13318,As she runs back through a worn fence. Someone,As she runs back through a worn fence.,Someone,gold,pulls up to the apartment entrance.,\"gets on his hat, sneaks into the living room and falls to the floor.\",\"trips someone into the mass of men in a neck suit, and carry him over to shoot.\",swipes a payphone beside her so she can see it up close as she packs it to them.,0\n13191,lsmdc3025_FLIGHT-11937,13316,\"Someone looks away, then back at someone. He\",\"Someone looks away, then back at someone.\",He,gold,whips forward as he sneaks off and faces people.,\"watches, as someone loads items in the back of a car.\",closes her eyes tightly and walks out.,strips down beside someone and begins to cry.,1\n13192,lsmdc3025_FLIGHT-11937,13308,Someone sits at the bar and moves a cocktail napkin back and forth. As he,Someone sits at the bar and moves a cocktail napkin back and forth.,As he,gold,studies the glass of vodka.,\"strolls into the office, drinks from a seed.\",scratches his ears he does n't acknowledge it.,\"does different comedy, a man nearby turns his head and leaves.\",0\n13193,lsmdc3025_FLIGHT-11937,13320,He passes the car with someone's things. He,He passes the car with someone's things.,He,gold,finds someone in the article with the petrol papers.,\"turns away and races out of the car, sending seven men flying down the road.\",pulls the limo open for a moment of silence.,takes a sip from his beer and looks up.,3\n13194,anetv_WiGOn6O-S1g,5109,The divers are getting ready to dive into the pool. One of the divers,The divers are getting ready to dive into the pool.,One of the divers,gold,dives and jumps into the pool from a great height.,people jumps on the rope.,looks back into the jungle.,does the dive off of the ground.,0\n13195,anetv_WiGOn6O-S1g,5108,There are several swimmers standing on the tallest diving board of a swimming pool. The divers,There are several swimmers standing on the tallest diving board of a swimming pool.,The divers,gold,are getting ready to dive into the pool.,collide into each other as they continue to recover.,\"turn their heads around and then jumped into the pool, pour fish, while people watch, as some of the blonde dives and\",\"imitate each other, as do some boys swimming and mishaps one person as they dive out onto the pool near the camera.\",0\n13196,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26071,9190,She takes down one janitor after another. Her final dart hits a janitor's thigh and he,She takes down one janitor after another.,Her final dart hits a janitor's thigh and he,gold,continues furiously down his rug.,looks closely into his trailer.,starts pressing the shelves again.,falls from a tall ladder.,3\n13197,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26071,9191,Her final dart hits a janitor's thigh and he falls from a tall ladder. Later someone,Her final dart hits a janitor's thigh and he falls from a tall ladder.,Later someone,gold,sprays a glass to him.,enters the locker room while the corporate officer stares straight at him and shuts him off.,\", now moving as his chest fills a punching bag.\",\"drags the janitor across the polished floor, pulling him behind a line of columns.\",3\n13198,anetv_1AxGiLSmGZo,7584,Several people are seen kite surfing along the water and one performing tricks. More people perform tricks and one,Several people are seen kite surfing along the water and one performing tricks.,More people perform tricks and one,gold,sliding down the board as others watch on the side.,leads into people surfing in the water.,\"fall off the side, immediately climbing back on.\",dismounts and cartwheels together until a third girl rides up alongside them.,2\n13199,lsmdc3053_PARENTAL_GUIDANCE-25625,8803,Now the living room flat screen shows a scary puppet riding a tricycle. Someone,Now the living room flat screen shows a scary puppet riding a tricycle.,Someone,gold,takes the video shot after the left boy.,clicks a remote turning it off.,backs away from them.,kicks a wooden plank into the trunk.,1\n13200,anetv_Io1OF2OkTWY,13669,Several clips are shown of the man in a plane with the dog as well as underwater. The man,Several clips are shown of the man in a plane with the dog as well as underwater.,The man,gold,performs several activities with his dog in hand while a woman speaks to the camera.,applies it all to the dog's legs while the camera zooms back on.,continues falling backward while the camera captures three angles and shows his hands and facebook interviews.,continues messing up and clips wiping off the board over the rim of the boat.,0\n13201,anetv_Io1OF2OkTWY,13668,A man is seen speaking to the camera while holding onto a dog in a plane. Several clips,A man is seen speaking to the camera while holding onto a dog in a plane.,Several clips,gold,are shown of two gymnasts performing backwards together.,are shown of the waving as well as riding around on the road as well as driving around.,are shown of the divers skating around the site as well as speaking and performing a flip.,are shown of the man in a plane with the dog as well as underwater.,3\n13202,anetv_5Qj8hHmZbiI,6720,People are playing beer pong at a party. People,People are playing beer pong at a party.,People,gold,is sitting at a table playing beer pong.,\"are on a court talking, playing squash and playing beer pong.\",are drinking drinks from the table.,are sitting in chairs trying to stand up.,2\n13203,anetv_m--b-Ltjm_Y,13570,A woman is seen helping a person put on a pair of stilts followed by clips of people using the stilts. Several clips,A woman is seen helping a person put on a pair of stilts followed by clips of people using the stilts.,Several clips,gold,are shown of people running and walking around using the stilts as well as speaking to the camera and helping one another.,are shown of people running in front of the camera.,are then shown of her getting her hair braided down and then wiping it with a brush.,are then shown more people jumping stilts and performing training performing martial arts routines.,0\n13204,anetv_m--b-Ltjm_Y,6775,A woman is kneeling down talking the the camera. the woman then,A woman is kneeling down talking the the camera.,the woman then,gold,runs onto the ladies arms.,grabs a pair of running stilts and demonstrates them.,shows off the vegetables.,shows a small camera with a razor on it.,1\n13205,anetv_m--b-Ltjm_Y,6776,The woman then grabs a pair of running stilts and demonstrates them. several people then,The woman then grabs a pair of running stilts and demonstrates them.,several people then,gold,begins running down a track wearing a heavy hat.,perform several tricks around and posing in a ballet studio.,go through a city park on the running stilts.,jump up and do tricks as they move on until her instructor moves off.,2\n13206,anetv_Cgquef_qgcs,11038,The man runs down a track with the large pole. He finally pole,The man runs down a track with the large pole.,He finally pole,gold,volts himself over a bar and onto a mat.,balances from the elevated high pole.,somersaults over two hurdles and lands on top.,vaults and lands balance on a rope hanging on the bars.,0\n13207,anetv_Cgquef_qgcs,9038,A person is seen standing before a large track holding a pole. The person,A person is seen standing before a large track holding a pole.,The person,gold,is then seen running around several times in the end.,spins around and throws a stick off into the distance.,continues running around with the stick.,begins running down the track holding onto the pole.,3\n13208,anetv_Cgquef_qgcs,11037,A man is seen standing with a large pole. The man,A man is seen standing with a large pole.,The man,gold,throws an object off into the distance.,does exercise tricks while others jumps down into the pit.,gets off a board in bows and runs down the lane.,runs down a track with the large pole.,3\n13209,anetv_e5rZPT7BJas,4972,A person is peeling a sticker off of a white shoe. They,A person is peeling a sticker off of a white shoe.,They,gold,rinse the sink and put it over the faucet.,wipe the shoe with a towel.,split the metal and keeps peddling from the wooden block.,in the car with a brush and put the socks on the ground.,1\n13210,anetv_1JHqxhajh60,16429,A hand is holding a shower head close to a dog. The dog,A hand is holding a shower head close to a dog.,The dog,gold,stands at a time watch while his leg emerges.,goes over a wash and over the snow.,moves around the bathtub as he tries to bite the water being splashed on him.,shows off her hair down a ponytail.,2\n13211,anetv_-u2zAMnrCC4,12767,The man stands up next to the kayak and talks. The girl,The man stands up next to the kayak and talks.,The girl,gold,skis near the lake.,adjust his paddles and talks.,gets into the kayak.,helps then demonstrate how to do oar.,2\n13212,anetv_-u2zAMnrCC4,12762,A man in a life vest sits on a kayak on the grass. A dog,A man in a life vest sits on a kayak on the grass.,A dog,gold,stands on the bridge and kayak after sitting on the bars.,\"stands in a rowing, as another man walks into frame.\",runs next to him.,jumps in the camel outside of a pile of brown and green grass.,2\n13213,anetv_-u2zAMnrCC4,8961,The pool knocks over the man and the other begins kayaking down the forest. The men,The pool knocks over the man and the other begins kayaking down the forest.,The men,gold,continue to ride on the skis and ride in slow motion.,stand around afterwards and speak to one another.,continue to block while speaking to the camera by one end.,continue bouncing on the sled wheeling and one on the side to chase the ball.,1\n13214,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12004,\"Standing, he grabs his tool bag and strides past her to the door. Someone\",\"Standing, he grabs his tool bag and strides past her to the door.\",Someone,gold,finds him wearing a hospital gown.,spots hundreds of silver ants on the ground.,leads someone back to the laundry room where someone lies alone on the quilt.,stares after him as he hurries out.,3\n13215,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12020,Spar lazily looks over from his boulder. Spar,Spar lazily looks over from his boulder.,Spar,gold,gets to his feet.,inches up from behind a canvas basket.,\"hurls him down, gripping a spear, knocking him down as he stands helplessly.\",blows in in their mouths.,0\n13216,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12007,\"Opening it, he puts on his glasses. He\",\"Opening it, he puts on his glasses.\",He,gold,poses as he exits the truck.,moves the cursor down the desktop photo of someone and someone to a row of icons at the bottom.,curves a few feet away.,lifts the market his chest.,1\n13217,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12017,The aging tiger wearily meets his gaze. Someone,The aging tiger wearily meets his gaze.,Someone,gold,turns back to the others.,stands on a swing beside him and primes his side.,\"sits awake, watching the bird.\",stops reading and gazes down at his own eyes.,0\n13218,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12008,\"The cursor moves along the monitor's dock to the iPhoto application. Clicking it, someone\",The cursor moves along the monitor's dock to the iPhoto application.,\"Clicking it, someone\",gold,knocks off the items onto the shelf.,opens an album displaying thumbnail images of family photos.,looks one more time at the glittering pellet barrel.,scrambles to his knees then hops to a knee - labeled difficulty with a open device.,1\n13219,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12009,\"Clicking it, someone opens an album displaying thumbnail images of family photos. He\",\"Clicking it, someone opens an album displaying thumbnail images of family photos.\",He,gold,\"opens the first one, then selects full screen.\",glances around as she strolls along.,fishing at a pen they share faint smacking mouth.,\"looks around for a moment, then turns her eyes back to the dinner table over someone.\",0\n13220,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12021,Spar gets to his feet. He carefully,Spar gets to his feet.,He carefully,gold,picks up his briefcase and pulls it out.,makes his way down.,tosses the sleeve of his fedora to show the dark - lined room and shoves it behind him.,\"wanders over, stands, then flips off with the top of his head.\",1\n13221,lsmdc3087_WE_BOUGHT_A_ZOO-41444,11998,The tiger hangs his head. Someone,The tiger hangs his head.,Someone,gold,gazes at the penguin while someone brittle his modified rifle.,looks at the wing mirror and someone.,\"enters the cage area, unnoticed by someone.\",raises a sultry brow and lifts his brow.,2\n13222,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12002,Someone observes from the end of the cage row. Spar,Someone observes from the end of the cage row.,Spar,gold,covers the alien with both hands as they pour an hell sized hole through his bangs.,meets his pleading gaze.,asks to join someone as she rubs it.,keeps his eyes on someone.,1\n13223,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12005,\"Someone stares after him as he hurries out. Now, someone\",Someone stares after him as he hurries out.,\"Now, someone\",gold,\"stands in front of someone, looking at his hands and smiling.\",sets a door against someone's neck with her hand trailing in his lap.,sits at the kitchen island with a laptop in front of him.,stands on the house holding her hands clutching her mobile to her chest.,2\n13224,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12003,\"As someone tries to hold the tiger's gaze. Standing, he\",As someone tries to hold the tiger's gaze.,\"Standing, he\",gold,grabs his tool bag and strides past her to the door.,\"is licking some of his human cream, on their hind leg.\",opens bread and takes his insides out with an aboriginal.,\"picks up another fish vodka and tries to take it, then strip it in front of the gift sack.\",0\n13225,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12015,\"Now someone runs to Spar's enclosure, joining someone, someone, and someone. He\",\"Now someone runs to Spar's enclosure, joining someone, someone, and someone.\",He,gold,stares after her and a hideous smile.,gets up and looks away.,pieces of yarn are used on their fingernails and trimmed.,heads to the gate.,3\n13226,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12006,\"Now, someone sits at the kitchen island with a laptop in front of him. Opening it, he\",\"Now, someone sits at the kitchen island with a laptop in front of him.\",\"Opening it, he\",gold,finds someone's belongings and the map.,finds scotty eating bite of cereal.,puts on his glasses.,finds an information folder for the wolf dish.,2\n13227,lsmdc3087_WE_BOUGHT_A_ZOO-41444,11999,\"Someone enters the cage area, unnoticed by someone. The owner\",\"Someone enters the cage area, unnoticed by someone.\",The owner,gold,\"shows him into the bedroom where someone, wearing yellow feather rimmed, reflects over someone's black wig.\",climbs down from his ladder and faces spar.,presses his hands together and goes with his gloved hands.,sidles around and sets down a thicker scale party.,1\n13228,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12023,\"As he glances toward someone, she looks away. He\",\"As he glances toward someone, she looks away.\",He,gold,rubs his hands against his chair and strides over to the wheel.,closes the bridge's door and peeks in.,abruptly turns and walks off.,\"glances at her thoughtfully, then lets herself in.\",2\n13229,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12011,A lens flare obscures her angelic face with brilliant sunlight. Someone,A lens flare obscures her angelic face with brilliant sunlight.,Someone,gold,watches smartly but someone snatches her blouse off.,\"easily picked up the dragon before joining them once more, who rises to stand.\",lies curled on the gloved towel.,hovers the cursor over an arrow icon to continue to the next image.,3\n13230,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12010,\"He opens the first one, then selects Full Screen. He\",\"He opens the first one, then selects Full Screen.\",He,gold,cocks the computer dial.,pulls his men's backpack up.,glides the cursor across a smiling photo of someone with trees behind her.,grabs another windscreen and runs.,2\n13231,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12019,Someone joins in on the yelling. Spar lazily,Someone joins in on the yelling.,Spar lazily,gold,looks over from his boulder.,moves on with still eyes.,contemplates his dead mouth.,kneels a foot on the floor.,0\n13232,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12000,\"He glances away, then opens his mouth wide. As he\",\"He glances away, then opens his mouth wide.\",As he,gold,\"strolls down, his abandoned master comes with someone.\",does a few inches.,gazes sadly at the tiger.,\"drops to his knees, energy flutters up a wave of his hands clinging to fractured powder.\",2\n13233,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12012,His cursor remains on the icon as he gazes at the sun - blanched photo of his wife. He blinks his languishing eyes and his lips,His cursor remains on the icon as he gazes at the sun - blanched photo of his wife.,He blinks his languishing eyes and his lips,gold,curl under a tender bubble.,tighten into a frown.,curl into a tight liquid.,graze for a moment.,1\n13234,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12001,As he gazes sadly at the tiger. Someone,As he gazes sadly at the tiger.,Someone,gold,pulls the knots of shawl over his goat head.,points at the rippling corner of someone's mouth.,observes from the end of the cage row.,blurry half of someone dons a terrified.,2\n13235,lsmdc3087_WE_BOUGHT_A_ZOO-41444,12022,He carefully makes his way down. Someone,He carefully makes his way down.,Someone,gold,slips off his words.,lowers his cupped hands from his mouth.,stealthily up the street and up the porch light.,removes the tray of handled caution.,1\n13236,anetv_B3YfGd4Wt24,16924,A group of kids are seen practicing various cheer leading moves in a gym as well as woman speaking to the camera. Several shots,A group of kids are seen practicing various cheer leading moves in a gym as well as woman speaking to the camera.,Several shots,gold,are then shown of people fencing in various martial arts movements.,are shown of the boys dancing and speaking to one another and leads into them swimming.,are shown of people sitting on bikes as well as riding behind an exercise tilted and walking away from one another.,are shown of the girl's outfits as well as them demonstrating moves.,3\n13237,anetv_3H7ZS0E90pY,14670,A girl jumps onto a balance beam. She,A girl jumps onto a balance beam.,She,gold,jumps off of stance making them successfully stretching her arms.,runs over and wraps up a heavy rope and knocks to the other.,hops over a beam onto the balance beam and a noncommittal looking flip toward her upper platform.,does a gymnastic routine on the balance beam.,3\n13238,anetv_3H7ZS0E90pY,14672,She jumps off the beam and lands on the mat with her hands up. A woman in a blue shirt,She jumps off the beam and lands on the mat with her hands up.,A woman in a blue shirt,gold,is balancing on top of white mat.,comes over and hugs her.,stands at a sink.,describes how large the balance beam is missing her.,1\n13239,anetv_3H7ZS0E90pY,14671,She does a gymnastic routine on the balance beam. She,She does a gymnastic routine on the balance beam.,She,gold,jumps off the beam and lands on the mat with her hands up.,stands on the beam and sticks her hands under the beam.,does a flip on the mat.,jumps the beam and dismounts the beam.,0\n13240,lsmdc3037_IRON_MAN2-16344,19036,Someone taps a long - armed robot. Someone,Someone taps a long - armed robot.,Someone,gold,aims his body surreptitiously toward a dead boat's well shaft.,picks up a framed drawing of iron man.,\"stands over glances at someone, studying them features.\",removes the bow's head strap.,1\n13241,lsmdc3037_IRON_MAN2-16344,19037,Someone picks up a framed drawing of Iron Man. Someone,Someone picks up a framed drawing of Iron Man.,Someone,gold,\"sits with his hand on the drum of the chair, staring intently at the band's hands.\",places his fingers over the abstract painting.,rises from her chair.,\"hops onto a counter, removes a painting from a wall, and hangs the iron man poster.\",3\n13242,anetv_-V5_GMuMzc8,11756,A man is sitting in a barber chair. Another man,A man is sitting in a barber chair.,Another man,gold,uses a brush to brush the dogs hair.,is rubbing the woman in the hair.,is giving him a hair cut.,has a tattoo on his breast.,2\n13243,anetv_-V5_GMuMzc8,11757,Another man is giving him a hair cut. He then,Another man is giving him a hair cut.,He then,gold,uses a tool to put product between his legs.,brushes off the mans neck.,explains how to knit your hair.,starts to walk on the sidewalk using his stilts.,1\n13244,anetv_D8dHEAYIawg,12590,A group of women and a man are playing volleyball in the sand on a beach. They,A group of women and a man are playing volleyball in the sand on a beach.,They,gold,are seen fighting and playing volleyball with each other again tossing her skyward and avoiding the black.,are playing soccer on a court.,are playing fond hats.,lob the pink ball back and forth over the net.,3\n13245,anetv_Snw8Jf1DQwg,16537,A screenshot of a woman wearing a blue jumpsuit is standing in a pose holding two batons and white words on the middle of the screen say 2 Baton Nicole. The woman is now standing on a floor with a lot of colorful lines and dashes and she,A screenshot of a woman wearing a blue jumpsuit is standing in a pose holding two batons and white words on the middle of the screen say 2 Baton Nicole.,The woman is now standing on a floor with a lot of colorful lines and dashes and she,gold,\"is dancing until she stands up, one doing other moves.\",is doing cartwheels and twirling around the hopscotch table.,is standing by gradually.,\"begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons.\",3\n13246,anetv_Snw8Jf1DQwg,16538,\"The woman is now standing on a floor with a lot of colorful lines and dashes and she begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons. Almost to the end of her routine the woman\",\"The woman is now standing on a floor with a lot of colorful lines and dashes and she begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons.\",Almost to the end of her routine the woman,gold,\"begins swaying backward onto the mat, and woman carrying a disc up her shoulder and spin around.\",\"drops the baton twice, picks them up and continues to do her routine until the end.\",\"falls in, the little raises legs on the floor, then she can come out while the woman continues dancing.\",stands up briefly and turns away.,1\n13247,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60385,7205,\"Someone gives someone a small Crystal Phial. As the Fellowship's boats drift past, someone\",Someone gives someone a small Crystal Phial.,\"As the Fellowship's boats drift past, someone\",gold,eyes the winged boy.,\"stands alone, watching from the banks of the river.\",finds the older family room warm and tubman.,joins both girls on the raft.,1\n13248,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60385,7203,\"Someone is leading 200 uruk - hai out of Isengard. they run fast, their powerful legs carrying them at speed. The Fellowship\",\"Someone is leading 200 uruk - hai out of Isengard. they run fast, their powerful legs carrying them at speed.\",The Fellowship,gold,emerge without the mortified.,is wheeled by a gurney and is busy casting holes in.,\"are rough - hewn, across from people.\",are in small elven boats.,3\n13249,anetv_eepvgF5Fi_Q,9941,People sit at a black jack table. A man,People sit at a black jack table.,A man,gold,simulates in a cart.,sits behind the table dealing the cards.,is then seen removing a coat and presenting it with a hand product.,in a black shirt plays beer pong.,1\n13250,anetv_9mF5s6_dTlk,18276,He places the iron down. He,He places the iron down.,He,gold,iron man plays a keyboard.,straightens and shaves his chest the result of his creation.,takes the paper towel and quickly cleans the piece of wood.,surfaces with a reflection in the holes in the bag of marble.,2\n13251,anetv_9mF5s6_dTlk,18275,He picks up a paper towel and presses the iron against the piece of wood with one hand while using the other hand to drag a paper towel over the ironed areas of the board. He,He picks up a paper towel and presses the iron against the piece of wood with one hand while using the other hand to drag a paper towel over the ironed areas of the board.,He,gold,explains of to make the new material in the morning.,places the iron down.,pours it into the bedroom and begins shaving on some fluid.,uses a paint pick to get it comfortable to trace the source of the place just scratched up some behind.,1\n13252,anetv_9mF5s6_dTlk,18273,A man in a crowded garage with lots of tools speaks to the camera as he holds a piece of paper. He,A man in a crowded garage with lots of tools speaks to the camera as he holds a piece of paper.,He,gold,picks up a lighter and flips in circles in the air until the credits come on in the video.,\"then cuts the leg of the man spinning quickly, puts it down and then bumps on.\",\"taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood.\",removes the weight tire and swipes it off with the rubber.,2\n13253,anetv_9mF5s6_dTlk,18274,\"He taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood. He\",\"He taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood.\",He,gold,begins to move the wax evenly across the excess in order to clean the surface.,puts down the piece of paper and takes the iron tool straight to the piece of wood.,starts to carve the knife.,shows what will be up showing and demonstrates the proper technique about it.,1\n13254,anetv_uXX2lSVAXq8,8877,A medical processional puts a device and needle in someones face. It,A medical processional puts a device and needle in someones face.,It,gold,is actually a piercing.,go from the woman's dancers.,shows the press of the digital tree.,looms the window of the salon.,0\n13255,anetv_XKpx9fyNINg,10779,A close up of a person putting on a rack is shown followed by several women lifting up large amounts of weight. More people,A close up of a person putting on a rack is shown followed by several women lifting up large amounts of weight.,More people,gold,are seen working around as well as jumping on a machine and performing a tango routine while the camera roars to a stop.,are shown in clips around a gate and one person is seen walking along tiles with one person running after that.,are seen riding down down the mountain.,are seen lifting up the heavy weights over their head and throwing it down when they are done.,3\n13256,anetv_91ozOcjKl5M,15964,He adds pasta to a large pot on the stove. He,He adds pasta to a large pot on the stove.,He,gold,vegetables housed a pot mix into a pot mixing ingredients.,pours some noodles in a pan.,starts cooking in a pan on the stove.,stirs more water on a plate.,2\n13257,anetv_91ozOcjKl5M,15965,He starts cooking in a pan on the stove. He,He starts cooking in a pan on the stove.,He,gold,sprays the counter with a towel.,pours oil into the pot.,covers the pan with a lid.,eats a omelette on a plate.,2\n13258,anetv_91ozOcjKl5M,15962,Ingredients are shown on a sliver platter. A man,Ingredients are shown on a sliver platter.,A man,gold,is seen washing a knife using water and trimming it with liquid.,begins chopping food on a black chopping board.,\"talks in front of a sink, interspersed with various ingredients together.\",\"is putting a chocolate top, using various tools.\",1\n13259,anetv_91ozOcjKl5M,15963,A man begins chopping food on a black chopping board. He,A man begins chopping food on a black chopping board.,He,gold,is finished mashing the potatoes.,is then cutting the top of a hookah and puts it on the stove.,adds pasta to a large pot on the stove.,mix the garlic on the bread and drags them into the bowl.,2\n13260,anetv_91ozOcjKl5M,15967,He puts the pasta into a bowl. He,He puts the pasta into a bowl.,He,gold,pours the lemon juice in the sink and rubs it.,pours oil into two bowls in a bowl.,pours the sauce on top of the pasta.,pours it into the garnished pan.,2\n13261,anetv_91ozOcjKl5M,15966,He covers the pan with a lid. He,He covers the pan with a lid.,He,gold,takes his cigarette and swishes it.,sprinkles tomatoes on top.,slides it lid onto a plate.,puts the pasta into a bowl.,3\n13262,anetv_xm01x3C3RJo,9196,A girl pours water onto the dog out of a cup. She,A girl pours water onto the dog out of a cup.,She,gold,rubs shampoo on the dogs fur.,holds a hose in a tub with the hose.,puts water on the bottom of the pot.,sprays the bowl back with it and sets it on the table.,0\n13263,anetv_xm01x3C3RJo,9195,A dog is put into a bath tub. A girl,A dog is put into a bath tub.,A girl,gold,drinks the pink tub full of shampoo and cleaner.,puts down the water on her belly in a sink.,folds up her clothes using a toothbrush.,pours water onto the dog out of a cup.,3\n13264,anetv_xm01x3C3RJo,9197,She rubs shampoo on the dogs fur. She,She rubs shampoo on the dogs fur.,She,gold,swings her facial flames around.,dusts away the water with her hair.,dance around and ends with her holding the frisbee held by the dog.,dries the dog off with a towel.,3\n13265,anetv_fh68-PXZ9Oo,11102,The man and dog perform tricks with one another back and fourth. The man,The man and dog perform tricks with one another back and fourth.,The man,gold,continues jumping rope between the cones.,throws the frisbee and the dog runs after the dog.,backs up the dog.,continues to perform tricks with the dog and frisbee.,3\n13266,anetv_fh68-PXZ9Oo,11101,A man is seen throwing several frisbee to a dog in a back yard. The man and dog,A man is seen throwing several frisbee to a dog in a back yard.,The man and dog,gold,continue to throw the dog off onto the side.,performs tricks and ends by jumping up and bowing to the camera.,perform tricks with one another back and fourth.,fur the leash around the dog and the dog chases after it.,2\n13267,anetv_fh68-PXZ9Oo,2419,The man does jumps and flips with the dog while still throwing the frisbee. The man,The man does jumps and flips with the dog while still throwing the frisbee.,The man,gold,continues running while the woman continues to jump.,continues to throw the object around with the dog jumping on him in the end.,spins and jumps again tricks with another dog.,ties the dog around the neck and picks up the frisbee.,1\n13268,anetv_fh68-PXZ9Oo,2418,A man is seen standing in a field throwing a frisbee around with a dog. The man,A man is seen standing in a field throwing a frisbee around with a dog.,The man,gold,continues hitting with the dog and ends with the dog flying away.,spins around throwing the frisbee with the dog and piecing it multiple times.,does jumps and flips with the dog while still throwing the frisbee.,spins and whips his teammates around as another person is seen.,2\n13269,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17919,\"He points to a large banner reading Prodi - G, then notices a pretty girl in the crowd. She\",\"He points to a large banner reading Prodi - G, then notices a pretty girl in the crowd.\",She,gold,rolls her eyes and leaves.,\"signals to someone, motioning to him to follow her though the sound of war.\",works as the film cuts and he spins and figures it open with wings.,closes her eyes and gives him a high five.,0\n13270,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17920,The rapper's mic goes dead. Someone,The rapper's mic goes dead.,Someone,gold,spins on his feet.,lies in bed beside him.,leaps at the stairs.,beckons him from behind the stage.,3\n13271,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17921,Someone beckons him from behind the stage. Someone,Someone beckons him from behind the stage.,Someone,gold,\"looks away from their seats, smiling.\",loses his suit and leans toward someone.,swings the wooden bat skyward.,goes over to his stepfather with two friends.,3\n13272,anetv_GTxmHim5JnY,14532,Two children twirl on a tire swing. Another child,Two children twirl on a tire swing.,Another child,gold,slide down the slide at pops other.,is swinging in another swing set.,leaps onto the boy on the other side and they stand clapping.,bends down to sit down but like a kid on the ground.,1\n13273,anetv_GTxmHim5JnY,14533,Another child is swinging in another swing set. A very small child,Another child is swinging in another swing set.,A very small child,gold,stands and show as they bounce and rake.,is swinging over the playground and begins to slide.,is seen getting the dirt from in a swing while a man attempts to hit at the pinata at the end time.,runs through the play area.,3\n13274,anetv_tTBbFGv9emI,12403,A man cuts the center of a log with an ax while standing on the log. The man,A man cuts the center of a log with an ax while standing on the log.,The man,gold,continues to spread with the knife.,mixes all other objects together in a bag throwing them off with a knife.,lassos the calf over the pole and to put him on the floor.,stands on the log holding the ax with the right hand.,3\n13275,anetv_tTBbFGv9emI,12405,\"Then, the man continues cutting the log. After, two people walk on front the man, and one\",\"Then, the man continues cutting the log.\",\"After, two people walk on front the man, and one\",gold,hand on the horse slice on the other.,man tulle him with a hand.,goes over the wall on the top of the tree.,takes loosed wood from the log.,3\n13276,anetv_FZk40J_drws,8599,Various shots of a person running after dark are shown ranging from the bridge onto a city as well as a long beach. The person,Various shots of a person running after dark are shown ranging from the bridge onto a city as well as a long beach.,The person,gold,keeps running through the city while the camera captures him from several angles.,is then seen jumping boarding from a distance and is then shown again again.,rides in with the car and being shown.,\"walks further into a river which is mostly black and combed by people, more shrubbery.\",0\n13277,anetv_FZk40J_drws,19301,He runs along city streets and the Hollywood Walk of Fame. He,He runs along city streets and the Hollywood Walk of Fame.,He,gold,runs up a steep hill as the sun starts to rise.,sinks in and spots someone.,strolls up to the bar after class and opens the bay.,strolls in entourage of the beast's house.,0\n13278,anetv_FZk40J_drws,19300,He runs across a long bridge towards a city. He,He runs across a long bridge towards a city.,He,gold,leaps off a passing gated gate and flips side to side.,steps over the balcony and spies someone on his way out.,remains on the floor as the man dance faster.,runs through a long two lane tunnel.,3\n13279,anetv_FZk40J_drws,19298,A man picks up a stone on the beach. He,A man picks up a stone on the beach.,He,gold,rips the ring off his finger and plays the various outdoor like wood.,\"stands on the ladder, ready to wax it on the wood.\",takes a run along the beach in early evening and passes a seal.,picks up a rope and flies forward from it.,2\n13280,anetv_FZk40J_drws,19302,He runs up a steep hill as the sun starts to rise. The man,He runs up a steep hill as the sun starts to rise.,The man,gold,drops the stone from the beach on top of the hill.,turns towards someone and starts to walk down the path.,closes the lid on the closing window.,walks away but fails.,0\n13281,anetv_FZk40J_drws,19303,The man drops the stone from the beach on top of the hill. Video of him running as the words Join me appear on screen and he,The man drops the stone from the beach on top of the hill.,Video of him running as the words Join me appear on screen and he,gold,lands in front of a trampoline on the other side.,tries to pet the seal.,'s shown of his bike.,is inside the studio talking.,1\n13282,anetv_FZk40J_drws,19299,He takes a run along the beach in early evening and passes a seal. He,He takes a run along the beach in early evening and passes a seal.,He,gold,runs across a long bridge towards a city.,\"looks up in different directions, he is followed by someone.\",goes to the camera as he takes in a deep.,\"pauses, as a woman cap sets up and near his eyes.\",0\n13283,lsmdc3059_SALT-28817,15979,Spies the pursuing suv then runs off between two lanes of unmoving cars. Someone,Spies the pursuing suv then runs off between two lanes of unmoving cars.,Someone,gold,follows someone into the truck.,speeds off between the lanes of traffic.,glances on one of the officers and they veer over their drivers as they remain fixed on the car.,enters a sedan and runs off.,1\n13284,anetv_8QbHeaXOJOA,11859,A man is holding the kite before letting it go. It,A man is holding the kite before letting it go.,It,gold,snowmobiles down the hills near the hill.,\"spins high into the air and flips in circles and angles, bouncing off the ground.\",separates and lands on a spare.,\"rocks multiple times, then moves faster.\",1\n13285,anetv_8QbHeaXOJOA,11858,A kite is shown high in the air. A man,A kite is shown high in the air.,A man,gold,is seen flying his face in and out of water.,jumps from the boat and is replayed again several times in slow motion.,is holding the kite before letting it go.,is snowboarding down a hill.,2\n13286,lsmdc0010_Frau_Ohne_Gewissen-51627,12516,She switches off the porch light and the hall light. She,She switches off the porch light and the hall light.,She,gold,takes out a lit cigarette and smokes as she snorts smoke and turns it in the opposite direction.,\"moves towards the living room, where there is still light on.\",\"reaches her door, and reaches inside as she enters.\",\"enters the house, walks right in and goes around the living room.\",1\n13287,lsmdc0010_Frau_Ohne_Gewissen-51627,12514,\"She wears white lounging pajamas, and she is carrying something small and heavy concealed in a scarf in her right hand. She\",\"She wears white lounging pajamas, and she is carrying something small and heavy concealed in a scarf in her right hand.\",She,gold,turns and heads in another direction.,and someone run out of the kitchen and go down to a box rest on the tree.,is standing in a pan sitting outside the bed.,\"reaches the front door, opens it slightly, fixes the catch so that the door can be opened from outside.\",3\n13288,lsmdc0010_Frau_Ohne_Gewissen-51627,12512,The lights are turned on. Someone,The lights are turned on.,Someone,gold,has a bouquet of hearts on it.,\"sprawls on the ceiling, with someone.\",is coming down the stairs.,\"pivots the chair, pulls himself a large iron from his shirt and sets it on his desk.\",2\n13289,lsmdc0010_Frau_Ohne_Gewissen-51627,12513,\"Someone is coming down the stairs. She wears white lounging pajamas, and she\",Someone is coming down the stairs.,\"She wears white lounging pajamas, and she\",gold,is carrying something small and heavy concealed in a scarf in her right hand.,is brushing the bottom of her bangs.,\"covers a pretty black shotgun, gazing at the statue of liberty, and showing it's almost six - glass.\",has a picture of her face and a portrait of a missile - in office.,0\n13290,lsmdc3034_IDES_OF_MARCH-2810,16444,\"As he and his dark - haired colleague exit onto a college campus, a title appears. A roadside sign\",\"As he and his dark - haired colleague exit onto a college campus, a title appears.\",A roadside sign,gold,shows a sign of a man striking gas.,\"reads, pullman, america's future begins march 15.\",\"reads, welcome, photos and thanksgiving party.\",\"reads, command unit, look for jewish identification.\",1\n13291,anetv_TscC5kgurqY,2625,We see a man talking into a camera. We,We see a man talking into a camera.,We,gold,man laughs and drinks the coffee.,see a man riding in a carriage in a backyard.,dance is a series using a room with guitars being played in a dimly lit small room.,see a table full of bowls of food.,3\n13292,anetv_TscC5kgurqY,18901,A table is covered in an array of food items in plates and bowls. The chef,A table is covered in an array of food items in plates and bowls.,The chef,gold,puts on a salad and bowls several knives on a counter.,stands and talks to people measuring plate bowls.,\"talks about the food, and how to use it in an omelette.\",puts a knife on top of a table and places the panels under the door.,2\n13293,anetv_TscC5kgurqY,2628,We see a man making omelets. The man,We see a man making omelets.,The man,gold,makes an omelette and puts it on a plate.,stops dancing and talks to a speaker.,walks to the front of the roof.,puts shots of paint on a wall.,0\n13294,anetv_TscC5kgurqY,18900,A man is shown speaking with another man. A table,A man is shown speaking with another man.,A table,gold,is seen followed by a man playing a guitar and speaking to the camera.,is covered in an array of food items in plates and bowls.,is seen as well as a cat moving in and out of frame.,replay shows toys around the circle.,1\n13295,anetv_TscC5kgurqY,2629,The interviewer makes an omelette. The chef,The interviewer makes an omelette.,The chef,gold,jumps and puts his arms in the air.,scoops us the ingredients in a plates and makes a sandwich.,mix the ingredients for the bowl bowls.,demonstrates a part of a methods of creamy peel.,0\n13296,anetv_TscC5kgurqY,2630,The two men shake hands. We then,The two men shake hands.,We then,gold,see the ending screens.,see both fencers braiding.,see them leave their desks and kneel down in the sand.,see men cutting grass in an outdoor shop.,0\n13297,anetv_TscC5kgurqY,2626,We see a table full of bowls of food. We,We see a table full of bowls of food.,We,gold,see the table and plates.,a man talks and shows a caulk.,see the man talk to the other again.,see a man playing a plate.,2\n13298,anetv_1GzrcmQ5Pcc,12874,A woman is holding a camera taking a picture. A woman in a blue shirt,A woman is holding a camera taking a picture.,A woman in a blue shirt,gold,walks down and walks with him also excited.,is in a similar bathtub.,is sliding down on the beach.,poses with a man for a picture.,3\n13299,anetv_1GzrcmQ5Pcc,12873,People are running around playing dodge ball. A woman,People are running around playing dodge ball.,A woman,gold,hits the ball and hits the ball which it bounced to someone's hands.,is holding a camera taking a picture.,threw something all over the court.,walks over to the rake.,1\n13300,anetv_WsXxnCQ_MIc,16008,The woman begins by removing a terry cloth turban from her head and revealing a wet may batch of hair. The woman then,The woman begins by removing a terry cloth turban from her head and revealing a wet may batch of hair.,The woman then,gold,begins to put section of her hair in twist braids.,peels the cloth from the wall paper while shoveling it with sticky tissue.,wipes the paste on the top paw using a final tool for tools.,\"puts two reading bottle to rim, then flips the wallpaper down.\",0\n13301,anetv_WsXxnCQ_MIc,16009,The women then starts blowdrying sections of her hair with a comb attached blow dryer. The woman,The women then starts blowdrying sections of her hair with a comb attached blow dryer.,The woman,gold,uses blow dryer to fiddle the lens with her hand.,uses a comb dryer to strands the hair of the dog.,continues to demonstrate arm comb with the bangs dryer as she styles appreciatively.,swings her straightened hair and smiles.,3\n13302,anetv_9jFyJhik9VM,5876,A person goes windsurfing on a lime green board in a body of water. The person,A person goes windsurfing on a lime green board in a body of water.,The person,gold,zooms in in the square area.,does a few spins.,takes off his father's board.,drops close first to the left.,1\n13303,lsmdc0020_Raising_Arizona-57454,13540,\"She tiptoes into the trailer, hand to her mouth. Someone, rubbing his cheek,\",\"She tiptoes into the trailer, hand to her mouth.\",\"Someone, rubbing his cheek,\",gold,looks around at the family present which pretends to notice.,seems angry at himself.,puts his hands to his pockets.,stands up and makes his way down to the deck.,1\n13304,lsmdc0020_Raising_Arizona-57454,13534,\"Feeling the look, he goes back to his cornflakes. Someone\",\"Feeling the look, he goes back to his cornflakes.\",Someone,gold,leans back to blow smoke at the ceiling.,\"continues on, but someone suddenly pretends to bolt down the railing.\",man uncomfortably is nearby sketchpad ostrich fuming.,\"takes his wedding ring on a covered plinth, then throws it upside down.\",0\n13305,lsmdc0020_Raising_Arizona-57454,13542,\"Someone at the top of the stoop, turns out to the yard. A scad of children, ranging in age from two to seven,\",\"Someone at the top of the stoop, turns out to the yard.\",\"A scad of children, ranging in age from two to seven,\",gold,\"are on beating at the barbecue mushrooms' bush, hulte arrest.\",are crawling over someone's car.,joins the first house built man walks from the porch.,\"are on line of it, with cozy - collared, cast - like carcass.\",1\n13306,lsmdc0020_Raising_Arizona-57454,13548,\"Someone looks over at the tv, which the bam - shouting six - year - old is banging with his stick. The kid in the cowboy hat\",\"Someone looks over at the tv, which the bam - shouting six - year - old is banging with his stick.\",The kid in the cowboy hat,gold,\"drops the gun and someone switched off, bright red fingers clenching and blue robes and protective gear.\",is reaching up to slap someone on the ass.,pour his candy sack into the woods and at someone who really yells at him.,falls to the floor of the kid.,1\n13307,lsmdc0020_Raising_Arizona-57454,13541,\"Someone, rubbing his cheek, seems angry at himself. Someone at the top of the stoop,\",\"Someone, rubbing his cheek, seems angry at himself.\",\"Someone at the top of the stoop,\",gold,turns out to the yard.,rocks survey the oncoming car and welcomes the parked driver.,leans across the desk and sets windows down.,difficult now that it seems like a man would be unconscious in a wheelchair.,0\n13308,lsmdc0020_Raising_Arizona-57454,13547,\"The track weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator. He\",\"The track weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator.\",He,gold,eyes him with an infected look.,holds on the bottom to the bank.,raises his voice to make himself heard over the din of all the children boiling around the room.,munches 5 sticks candles struggling to get clear.,2\n13309,lsmdc0020_Raising_Arizona-57454,13543,\"A scad of children, ranging in age from two to seven, are crawling over someone's car. One is beating on it with a large stick, another\",\"A scad of children, ranging in age from two to seven, are crawling over someone's car.\",\"One is beating on it with a large stick, another\",gold,\"sits on the hood pulling back one of the windshield wipers, etc.\",tear runs down someone's eyes.,along a blue tank.,pig approaches the grill.,0\n13310,lsmdc0020_Raising_Arizona-57454,13546,\"The weaving knee - level tracking shot is following a six - year - old boy in shorts and a dirty T - shirt as he tramps around the trailer, brandishing a big stick. The track\",\"The weaving knee - level tracking shot is following a six - year - old boy in shorts and a dirty T - shirt as he tramps around the trailer, brandishing a big stick.\",The track,gold,spins and jumps around a few feet and the rhythm until it stops.,stops tearing down his backpack.,\"weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator.\",wrestles into him as he stumbles down the street toward the body of the security.,2\n13311,lsmdc0020_Raising_Arizona-57454,13545,\"As people enter, someone beaming as they go to the crib. She\",\"As people enter, someone beaming as they go to the crib.\",She,gold,walks back into her cabin.,holds back the candle.,proudly under her silky suit.,\"puts her hand to her forehead, reacting to the baby as if she is about to faint.\",3\n13312,lsmdc0020_Raising_Arizona-57454,13538,Someone spins and smacks someone across the face with her purse. He,Someone spins and smacks someone across the face with her purse.,He,gold,advances on her and his head shot nothing.,tips back a face.,reels under the blow.,gives a tentative chuckle.,2\n13313,lsmdc0020_Raising_Arizona-57454,13535,\"Someone leans back to blow smoke at the ceiling. Someone, with someone standing by,\",Someone leans back to blow smoke at the ceiling.,\"Someone, with someone standing by,\",gold,\"pours something to the darkness, and stops himself.\",is just opening the door to a young couple.,reaches at his side through the spheres.,\"thumps her roommate's stomach, screams and tears fall from the windows.\",1\n13314,lsmdc0020_Raising_Arizona-57454,13537,\"From behind, someone gives her an energetic thwok on the ass. Someone\",\"From behind, someone gives her an energetic thwok on the ass.\",Someone,gold,spins and smacks someone across the face with her purse.,spot someone who's sitting on the sofa.,is dreaming of his throw to a bowl.,sees her staring at it.,0\n13315,lsmdc0020_Raising_Arizona-57454,13544,\"One is beating on it with a large stick, another sits on the hood pulling back one of the windshield wipers, etc. As people enter, someone\",\"One is beating on it with a large stick, another sits on the hood pulling back one of the windshield wipers, etc.\",\"As people enter, someone\",gold,drops his mug to someone's romantic brand.,beaming as they go to the crib.,takes their scrap of paper with someone.,\"bursts out through some coins in the lobby, recalls a film with black stickers on it.\",1\n13316,lsmdc0020_Raising_Arizona-57454,13536,\"Someone is a short stocky blond man in his early thirties, wearing Bermuda shorts. Someone\",\"Someone is a short stocky blond man in his early thirties, wearing Bermuda shorts.\",Someone,gold,\"is a stack of cigar books near the wall, cafe.\",is dancing amongst.,\"is wearing slacks, heels, and a scarf over her hair.\",whispers to the table.,2\n13317,anetv_GvJxJf4m6_M,17748,\"Then, the man puts the right leg on a chair and bend to pretend put on socks. Then, the man\",\"Then, the man puts the right leg on a chair and bend to pretend put on socks.\",\"Then, the man\",gold,\"pushes the towel along the leg of the armrest, after the young man stare at the camera and the credits begins.\",irons the smaller bars on the wooden barrow.,take a rod to help enter the feet in the shoes.,lay the stick across the floor and tied weak ground paper.,2\n13318,anetv_GvJxJf4m6_M,17747,\"A man stands behind a pair of shoes while touching his back and talking. Then, the man\",A man stands behind a pair of shoes while touching his back and talking.,\"Then, the man\",gold,wipes him hands and light a shoe and then gets to the front of the suit.,talks again and then cleans the mirror putting shoe cloth on the eye.,puts the right leg on a chair and bend to pretend put on socks.,holds a shoe of detergent and tie the shoe and stands up.,2\n13319,anetv_GvJxJf4m6_M,13022,The man then pulls up his sock and uses a pole on his leg. He,The man then pulls up his sock and uses a pole on his leg.,He,gold,repeats it and gets the position he can really want that.,kicks away afterwards as well.,lifts his leg up and then back down again.,kicks it and split again.,2\n13320,anetv_O0nOzufJ_OM,4975,Two straight attempts featuring a powerful spin result in the the discus flying far both times. This,Two straight attempts featuring a powerful spin result in the the discus flying far both times.,This,gold,aged man is less deadly hitting the ball and throwing down he ball.,happens between the players's hands to a sideways motion that is displayed extremely individual dressed around the world.,is followed by more photos.,\"succeeds in the tugboat and slams them on the ground, dodging.\",2\n13321,anetv_O0nOzufJ_OM,4974,\"More photos play, showing the competitor in different positions. Two straight attempts\",\"More photos play, showing the competitor in different positions.\",Two straight attempts,gold,appear next then video from slow motion.,featuring a powerful spin result in the the discus flying far both times.,fall in after picture of various people doing shot at one another as many other athletes.,sport over the course and celebrate.,1\n13322,anetv_O0nOzufJ_OM,4973,An attempt with him twirling rapidly begins and the discus launches. More photos,An attempt with him twirling rapidly begins and the discus launches.,More photos,gold,falls on his face.,are shown hundreds of red flags.,continue to show off the crowd throwing the players.,\"play, showing the competitor in different positions.\",3\n13323,anetv_O0nOzufJ_OM,4976,This is followed by more photos. Another attempt,This is followed by more photos.,Another attempt,gold,is recorded on the plane.,\"is shown at the bottom, and some letters appear on the screen before remaining foundation of the channel.\",\"plays, followed by another slate of photos.\",is being shown in style.,2\n13324,anetv_7PSicg5Q2ZI,881,She cuts a lemon in half. She,She cuts a lemon in half.,She,gold,pops it out of her mouth.,laughs a lot throughout the video.,pours more cream into the oven.,pours the spaghetti into the pot.,1\n13325,anetv_7PSicg5Q2ZI,879,A woman in a green shirt stands in a kitchen. She,A woman in a green shirt stands in a kitchen.,She,gold,is making various ingredients into a pot.,is putting something into a green bowl.,stands in front of several ingredients.,throws the pasta through the sink.,2\n13326,anetv_7PSicg5Q2ZI,880,She stands in front of several ingredients. She,She stands in front of several ingredients.,She,gold,cuts a lemon in half.,touches unexpectedly un - winged.,pours the food into a chocolate container.,points the knife together.,0\n13327,anetv_RGVDeXqN1ao,10332,She cuts a rectangular piece of the Cellophane and place the pot over it in the center. Then she,She cuts a rectangular piece of the Cellophane and place the pot over it in the center.,Then she,gold,puts the sheet down on the tree.,takes the knife and puts it on one end on an ironing board.,\"wraps the cookies together in the saucepan, using a large knife.\",brings to together the edges of the cellophane towards the top of the plant.,3\n13328,anetv_RGVDeXqN1ao,10331,A woman dressed in a black shirt representing the company Bents is standing in a garden and demonstrating how to use Cellophane to wrap a plant for gift purposes. She,A woman dressed in a black shirt representing the company Bents is standing in a garden and demonstrating how to use Cellophane to wrap a plant for gift purposes.,She,gold,is the woman using the rod that include the trimmer and much power that it needs to get it in place.,cuts a rectangular piece of the cellophane and place the pot over it in the center.,switch to foods in the christmas room outdoors.,shows a wrap on the wrapping paper and shows how to add the seam to the ocean.,1\n13329,anetv_RGVDeXqN1ao,10333,Then she brings to together the edges of the Cellophane towards the top of the plant. She,Then she brings to together the edges of the Cellophane towards the top of the plant.,She,gold,goes but does n't go to the new portion.,then use the sticks to spread it underneath as a kimono grabs them in the end.,takes a decorate piece of ribbon to tie the scrunched up cellophane together to make it look like a bow on top.,puts the decked stick on the table and make a basket till the end of the pinata.,2\n13330,lsmdc1031_Quantum_of_Solace-84378,9179,\"His head slumps against someone's shoulder. Expressionlessly, someone\",His head slumps against someone's shoulder.,\"Expressionlessly, someone\",gold,feels for a pulse.,heads for his car.,gazes earnestly at the soldiers.,\"watches him walk into a clearing, blowing crocodile leaves on the house.\",0\n13331,lsmdc1031_Quantum_of_Solace-84378,9181,\"They walk off, leaving the body slumped amid the rubbish bags in the dumpster. The Range Rover\",\"They walk off, leaving the body slumped amid the rubbish bags in the dumpster.\",The Range Rover,gold,approaches a blonde figure resembling in central space concerned uniform.,\"walks through a market, turns into the exit.\",heads down a desert highway.,\"is settled by a soldier in a haze, shooting out one of the recruits.\",2\n13332,lsmdc1031_Quantum_of_Solace-84378,9182,The Range Rover heads down a desert highway. The Range Rover,The Range Rover heads down a desert highway.,The Range Rover,gold,passes between the lanes and hooks straight ahead.,\"drives through the dusty, barren.\",\"trundles down the middle of a narrow lane, whipping the roadster with a handle.\",slides outside onto all fours as the convoy passes by.,1\n13333,lsmdc1031_Quantum_of_Solace-84378,9180,\"He drops the body in a dumpster, removes someone 'wallet from his jacket, takes out the cash, and tosses the wallet aside. They\",\"He drops the body in a dumpster, removes someone 'wallet from his jacket, takes out the cash, and tosses the wallet aside.\",They,gold,\"turned, someone looks it over.\",\"walk off, leaving the body slumped amid the rubbish bags in the dumpster.\",steps on the street nearby window and covers the floor.,\"takes a tire off him, climbs the stairs and steps down a winding corridor, missing an area wrapped around him.\",1\n13334,anetv_TvlCdfubl9Y,18147,Another man wearing a blue sweater is helping the other man assembling the bicycles. men,Another man wearing a blue sweater is helping the other man assembling the bicycles.,men,gold,are assembling three bicycles on living room.,run out of the parking cheer in the background.,are now poke in the snow very quickly about their stunts.,are shown showing the process of the bbq one.,0\n13335,anetv_TvlCdfubl9Y,18146,Man wearing a green shirt is assembling a bicycle on the middle of a living room. another man wearing a blue sweater,Man wearing a green shirt is assembling a bicycle on the middle of a living room.,another man wearing a blue sweater,gold,is helping the other man assembling the bicycles.,is watching them at the table.,is talking next to a ballerina.,hangs up an axe and walks into a ride in a white line.,0\n13336,anetv_uCdUm-lou7w,11023,A girl swings on monkey bars on an outdoor playground. The girl,A girl swings on monkey bars on an outdoor playground.,The girl,gold,misses a monkey bar and then looses her grip and falls to the ground.,stands up and lets the girl fall and flips her the air.,walks up and down the monkey bars and jumps off her feet.,swings back and forth while the girl works.,0\n13337,anetv_wLKePf07V14,17541,\"After, the man cuts part of the gift paper to show the green cellophane paper. Next, the man\",\"After, the man cuts part of the gift paper to show the green cellophane paper.\",\"Next, the man\",gold,puts ribbons around the neck of the bottle.,\"put the fold on gloves, then cut the rubber and bear the gift.\",puts on the bread to make o in tip of the cake from it.,writes a scoop into the paper.,0\n13338,anetv_wLKePf07V14,17540,\"Then, the wraps the bottle with gift paper over the cellophane paper. After, the man\",\"Then, the wraps the bottle with gift paper over the cellophane paper.\",\"After, the man\",gold,inserts the ball into a container and appears jars of liquid.,spray the contents of the bowl.,\"put two strips onto the wrapping paper, including the wrap.\",cuts part of the gift paper to show the green cellophane paper.,3\n13339,anetv_wLKePf07V14,225,A man unrolls cellophane paper and sits a bottle on it and wraps it in paper. The man,A man unrolls cellophane paper and sits a bottle on it and wraps it in paper.,The man,gold,removes a paper using a nail.,opens cut material and read swatter inside.,ties a bow around the neck of the bottle.,polishes the flat table and wraps the gold bell.,2\n13340,anetv_wLKePf07V14,226,The man ties a bow around the neck of the bottle. We,The man ties a bow around the neck of the bottle.,We,gold,see the finished wrapped product.,on the stage come again to the center of the stage.,then see a greek print logo and academy title screen.,enter on the other and in the bow.,0\n13341,anetv_wLKePf07V14,224,We see the colorful title screen. A man,We see the colorful title screen.,A man,gold,puts his hands up and leads us to the bottom of the grand ski.,is seen sitting in a chair behind a large drum machine.,unrolls cellophane paper and sits a bottle on it and wraps it in paper.,is seen sitting in front of a truck blowing snow.,2\n13342,lsmdc0011_Gandhi-53102,27,Their clothes are dirty - - and they are too - - but they are laying knives and guns at someone's feet. Someone,Their clothes are dirty - - and they are too - - but they are laying knives and guns at someone's feet.,Someone,gold,turns and his feet lean into the shield.,messes on of the back of her hair sprawled at frame as she sits on the bathroom door.,\"is looking at him, testing, not giving or accepting anything that is mere gesture.\",\"is there with someone's car, which misses.\",2\n13343,lsmdc0011_Gandhi-53102,31,Almost reflexively he holds his hand out to indicate the height of his son. He,Almost reflexively he holds his hand out to indicate the height of his son.,He,gold,\"walks wild and someone pulls his sunglasses off her head, looking deeply tanned.\",glares at someone and then back at someone.,\"continues to slumber, transfixed by the act.\",talks more and begins dancing and stopping when they are done.,1\n13344,lsmdc0011_Gandhi-53102,26,There are thongs around their arms that make their bulging muscles seem even more powerful. Their clothes are dirty - - and they are too - - but they,There are thongs around their arms that make their bulging muscles seem even more powerful.,Their clothes are dirty - - and they are too - - but they,gold,don't have anything for it that they do.,are laying knives and guns at someone's feet.,are too polished unable to see the orderly head.,do not care - o - level.,1\n13345,lsmdc0011_Gandhi-53102,29,\"Someone's face is knotted in emotion, half anger, half almost a child's fear - - but there is a wild menace in that instability. Someone\",\"Someone's face is knotted in emotion, half anger, half almost a child's fear - - but there is a wild menace in that instability.\",Someone,gold,flinches as someone barges into the room.,\"stares at him, breathless.\",trudge out of front of the great main house made up by the zombies.,\"is oblivious, deep in conversation.\",1\n13346,lsmdc0011_Gandhi-53102,28,People start to move toward him - - the man looks immensely strong and immensely unstable. But someone,People start to move toward him - - the man looks immensely strong and immensely unstable.,But someone,gold,\"'s adjusting the saddle, silence.\",pushes him out of the abyss.,\"holds up a shaking hand, stopping them.\",\"is completely agitated, looks truly uncomfortable for this moment.\",2\n13347,lsmdc0011_Gandhi-53102,30,It is as though the man has told him of some terrible self - inflicted wound. Almost reflexively he,It is as though the man has told him of some terrible self - inflicted wound.,Almost reflexively he,gold,holds his hand out to indicate the height of his son.,stumbles back onto the sofa to split the floor.,is utterly serious as he is aware that this is really the floor.,knows it as level.,0\n13348,lsmdc3024_EASY_A-11396,2693,He arrives at the Penderghast front door and knocks. Someone's mother,He arrives at the Penderghast front door and knocks.,Someone's mother,gold,\"laughs at someone, not noticing his presence.\",removes two champagne glasses with a jug.,answers with a warm delighted smile.,gives a resigned blink of the smile.,2\n13349,lsmdc3024_EASY_A-11396,2692,We peer through an arched hedge. Someone,We peer through an arched hedge.,Someone,gold,\"gazes out over the bridge, forming a cloud of smoke in both directions.\",\"runs out of the tank, then climbs away from the pit.\",\"rides into view on a scooter, lurches to a halt and dismounts awkwardly.\",lies upside - down in the bunk.,2\n13350,anetv_a7oaRcmRZ5k,4188,A person is seen riding on the back doing several flips and tricks on his board. The people,A person is seen riding on the back doing several flips and tricks on his board.,The people,gold,continue riding down the track and ends by jumping down onto a mat with another man watching on the side.,continue showing with people watching on the sides and ends with the person jumping and speaking to the camera.,are then seen moving in the tubes quickly as people are riding around and falling to the side.,watch the man as well as the camera as he continues flipping around and looking back to the camera.,3\n13351,anetv_a7oaRcmRZ5k,4187,A boat is seen riding along the water with a man driving others around. A person,A boat is seen riding along the water with a man driving others around.,A person,gold,is seen running through gear with a paddle while others watch in the water.,is seen riding on the back doing several flips and tricks on his board.,is then shown riding in a boat pushing the man on a board.,is riding a rowing rowing machine as quickly as a person in a battle gear.,1\n13352,anetv_W3a7BIqWov4,18271,A person is seen laying down on a bowling alley on the floor. The man then,A person is seen laying down on a bowling alley on the floor.,The man then,gold,goes down and moves the hoop around continuously.,demonstrates the woma exercises as well as showing how to properly move.,begins break dancing on the floor.,begins throwing the object off into the distance.,2\n13353,anetv_W8ILh7ickB4,10695,The person is squeezing the lemons in the squeezer. The person,The person is squeezing the lemons in the squeezer.,The person,gold,pour the lemon into the white spray bottle and added water.,pours a coffee cup into the hands and grabs both lemons and pours it in the cup.,painting objects overlaid on film.,makes a small splash on the water.,0\n13354,anetv_W8ILh7ickB4,10696,The person pour the lemon into the white spray bottle and added water. The person,The person pour the lemon into the white spray bottle and added water.,The person,gold,adds ice and oil and pepper.,pour the sugar into the flower and pour it in the blender.,spray the lemon juice in a bow and rub the bowl with sponge.,takes the beverage with a washed red liquid.,2\n13355,lsmdc0033_Amadeus-66748,4167,He nods - he has wanted this result all the time. Then he,He nods - he has wanted this result all the time.,Then he,gold,picks up the drink and sits.,becomes aware of the manuscript in his hand.,stands up and goes back down an aisle.,gently lifts her foot and holds it to his chest.,1\n13356,lsmdc1047_Defiance-91631,15184,\"A woman breaks the ice that has formed in a bucket of water. Next to her, someone,\",A woman breaks the ice that has formed in a bucket of water.,\"Next to her, someone,\",gold,\"faces someone, appears.\",ladles out some soup to a long line of people.,and the tent holds the tea.,\"windsurfing in a flat breeze, catches the girls and starts crying in the pool.\",1\n13357,lsmdc1047_Defiance-91631,15185,\"Next to her, someone, ladles out some soup to a long line of people. He\",\"Next to her, someone, ladles out some soup to a long line of people.\",He,gold,walks to the office.,sets down a cigarette - filled bag.,holds up two potatoes.,comes in from the refrigerator to greet someone in the office.,2\n13358,lsmdc1047_Defiance-91631,15179,Two officers kneeling await their fate. Someone,Two officers kneeling await their fate.,Someone,gold,\"loosens his belt, and raises his arm a high.\",comes up behind them and shoots them both on the head.,backs up and resumes they smoke.,gazes to him.,1\n13359,lsmdc1047_Defiance-91631,15177,Someone fires on a truck. Someone,Someone fires on a truck.,Someone,gold,opens the passenger compartment.,wrenches the vehicle into the parking lot.,sets a bomb under the truck.,dreamily hits the flaming rear wheel of a van.,2\n13360,lsmdc1047_Defiance-91631,15183,Deep winter has set in at the Naliboki Forest Camp. A table and bench,Deep winter has set in at the Naliboki Forest Camp.,A table and bench,gold,are covered with bushes.,is getting in the camp.,are blanketed in snow.,is shown in a story dug in a tent.,2\n13361,lsmdc1047_Defiance-91631,15182,Who jig up and down in a huddle. Together the young couple,Who jig up and down in a huddle.,Together the young couple,gold,is being rescued to the testing ground.,hold the napkin that was wrapped around the glass someone crushed with his foot.,are gradually turning on one another and showing off the arranged approach of the table.,exits the studio as the young man prepares the fire.,1\n13362,lsmdc1047_Defiance-91631,15175,\"When someone nods, someone steps forward with a ring. Someone\",\"When someone nods, someone steps forward with a ring.\",Someone,gold,\"hurriedly waits at the command center, with his gun in his hands.\",tends to someone who has a shawl over her long loose hair.,knocks on the door over the wall.,raises his hand flirtatiously and raises a bottle to his forehead.,1\n13363,lsmdc1047_Defiance-91631,15176,\"In the woods, someone leads the onslaught. Someone\",\"In the woods, someone leads the onslaught.\",Someone,gold,maneuvers the chief into position.,fires on a truck.,gently pushes the puck toward someone.,wets his fingertip and steps inside.,1\n13364,lsmdc1047_Defiance-91631,15180,Someone comes up behind them and shoots them both on the head. Someone in a chair,Someone comes up behind them and shoots them both on the head.,Someone in a chair,gold,waits by the cab for money.,is lifted up to shoulder height and twirled around.,pulls someone's cigarette out of a way as someone tries to ignore him.,look from their vehicle down the country road.,1\n13365,lsmdc3067_THE_ART_OF_GETTING_BY-32121,6396,\"Someone glares as she spots a couple canoodling on a brown stone stairway. Someone in a negligee and robe, the woman\",Someone glares as she spots a couple canoodling on a brown stone stairway.,\"Someone in a negligee and robe, the woman\",gold,shines carrying a little boy.,\"kisses a younger man, then flirtatiously touches his coat lapel.\",has a drink upside down beside her.,pulls themselves into the station.,1\n13366,lsmdc3067_THE_ART_OF_GETTING_BY-32121,6397,\"Someone in a negligee and robe, the woman kisses a younger man, then flirtatiously touches his coat lapel. Her gaze\",\"Someone in a negligee and robe, the woman kisses a younger man, then flirtatiously touches his coat lapel.\",Her gaze,gold,drops on the broomstick.,drifts to a wide - hatch ramp.,stays on her window carefully.,follows as he makes his way past someone and someone.,3\n13367,anetv_y56qXoJh6U0,15504,A group of people are seen standing around a bowling alley when several shots of people throwing the ball are shown. More close ups of people speaking to the camera,A group of people are seen standing around a bowling alley when several shots of people throwing the ball are shown.,More close ups of people speaking to the camera,gold,are shown followed by a man playing and speaking and looking down.,follows one another around a paintball road with martina shots.,are shown again shortly afterwards throwing shots into the distance.,are shown as well as speaking to one another and a woman taking pictures of the players.,3\n13368,anetv_y56qXoJh6U0,8148,They take turns walking up to the lanes with balls. They,They take turns walking up to the lanes with balls.,They,gold,take off of the ball.,\"throw the balls, knocking down the pins.\",are hitting a ball down the lane.,start running down the lane in circles.,1\n13369,anetv_y56qXoJh6U0,8147,Several team members gather in a bowling alley. They,Several team members gather in a bowling alley.,They,gold,walk slowly as they race down the long narrow path.,take turns walking up to the lanes with balls.,continue on tennis until they reach some pins.,bump each other on the road.,1\n13370,anetv_y56qXoJh6U0,15505,More close ups of people speaking to the camera are shown as well as speaking to one another and a woman taking pictures of the players. More clips of people playing,More close ups of people speaking to the camera are shown as well as speaking to one another and a woman taking pictures of the players.,More clips of people playing,gold,are shown followed into a man playing soccer by several players and pans.,are shown as well as speaking up and leads into the woman mixing a drink together.,are shown as well as being interviewed and speaking to one another.,are shown afterwards in slow motion in slow motion.,2\n13371,anetv_xTEXsZO-PVI,12951,A wind surfer goes by. A man in the sail boat,A wind surfer goes by.,A man in the sail boat,gold,leans back to pull on the sail in the boat.,is going down the choppy river with rapids above him.,starts paddling back flips through the current waters.,holds a rope connected to ships notepaper.,0\n13372,anetv_B42CY1Z6eV8,13315,\"The man in blue shirt is sitting on the wheel chair. The young man put his leg over his leg and put his socks and shoes, he\",The man in blue shirt is sitting on the wheel chair.,\"The young man put his leg over his leg and put his socks and shoes, he\",gold,is going a little fast.,walked to the board with his pants.,did the same thing on other leg.,ties them up to the left.,2\n13373,anetv_B42CY1Z6eV8,13316,\"The young man put his leg over his leg and put his socks and shoes, he did the same thing on other leg. The young man\",\"The young man put his leg over his leg and put his socks and shoes, he did the same thing on other leg.\",The young man,gold,tied his shoes and smiled to the camera and gave a thumbs up.,was kneeling and kicked it rubber.,fidgeting and then never takes the doors off.,walked towards the guy while the man sat down back on his feet.,0\n13374,anetv_B42CY1Z6eV8,16877,Young man lifts up his ankle. Man wearing black pants,Young man lifts up his ankle.,Man wearing black pants,gold,is walking on a wood floor covered in dark cream.,walks in front of his body.,puts on a white sock.,get in as carpet billows between the tiles.,2\n13375,anetv_B42CY1Z6eV8,16878,Man wearing black pants puts on a white sock. Man,Man wearing black pants puts on a white sock.,Man,gold,is loosening his black shoe laces.,is on a gym with exercise equipment equipment.,jumps and falls over showing us how to ride making here in slow motion.,takes the man and pulls it along the backpack.,0\n13376,anetv_oMegp6a547Q,15241,The camera pans around several groups of people are seen performing martial arts around one another as well as people walking around and watching. Many shots,The camera pans around several groups of people are seen performing martial arts around one another as well as people walking around and watching.,Many shots,gold,are shown of people speaking to one another and lead into a man walking away and stopping.,are shown of people dancing and singing as well as performing martial arts in the streets and helping one another.,are shown of the person climbing in the fence and putting blue balls on the box.,are shown of women speaking to one another while the camera pans around and ends by holding down another.,1\n13377,anetv_oMegp6a547Q,15242,Many shots are shown of people dancing and singing as well as performing martial arts in the streets and helping one another. People,Many shots are shown of people dancing and singing as well as performing martial arts in the streets and helping one another.,People,gold,finish their performance on the stage and continue dancing.,\"are seen playing instruments, reading the the news, and performing martial arts all around the street.\",play on the dance scene and people interact with one another.,interviews and ends with the woman cheering and speaking to the camera while doing movements.,1\n13378,anetv_qmKSDwVvxVk,1033,He jumps backwards over a bar. He,He jumps backwards over a bar.,He,gold,try to fight in elephant bed.,jumps onto the floor between sets his feet on the ground.,lands on a blue mat on his back.,dismounts and falls off the bar onto his arms.,2\n13379,anetv_qmKSDwVvxVk,1918,\"Scene opens to indicate a standing high jump practice on a particular date. A student athlete appears, dressed in casual shorts and a red t - shirt, and he\",Scene opens to indicate a standing high jump practice on a particular date.,\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he\",gold,is charging a small board and then jumps up while a track around a wooden dock.,has several shots of green grass in middle of center store and named he quietly enters the ocean to play rock key demonstrations.,makes some jump at executive faces.,proceeds to do practice jumps.,3\n13380,anetv_qmKSDwVvxVk,1920,\"The first jump is poor, and he knocks off the bar during the jump. He\",\"The first jump is poor, and he knocks off the bar during the jump.\",He,gold,springs up on his hands to adjust his posture.,clears the bar on the second jump.,falls out and head for the ensuing area.,continues hoping and comes in to the post.,1\n13381,anetv_qmKSDwVvxVk,1921,He clears the bar on the second jump. The third jump,He clears the bar on the second jump.,The third jump,gold,\"is the most impressive, with the athlete clearing the bar again.\",starts to jump over the bar on his other side jumps.,is out of line.,does the jump of the jump.,0\n13382,anetv_qmKSDwVvxVk,1032,A man is standing on a track. He,A man is standing on a track.,He,gold,is dancing onto a blue mat.,jumps backwards over a bar.,is throwing the bowling ball into the field.,is jumping over a track.,1\n13383,anetv_qmKSDwVvxVk,1919,\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he proceeds to do practice jumps. The first jump is poor, and he\",\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he proceeds to do practice jumps.\",\"The first jump is poor, and he\",gold,knocks off the bar during the jump.,celebrates in his arms as he is being interviewed after the athlete.,stands very still before doing some circles tennis tricks and first pushing it.,swings again to cut the air.,0\n13384,lsmdc3050_MR_POPPERS_PENGUINS-23918,4631,Someone sleeps with the closed computer still on his lap. The penguin,Someone sleeps with the closed computer still on his lap.,The penguin,gold,waddles to his side.,appears from an oxygen mask.,stares down then finds himself looking at someone on the ring.,\"cautiously ventures inside, his eyes cut by someone.\",0\n13385,lsmdc3050_MR_POPPERS_PENGUINS-23918,4632,\"The penguin waddles to his side. Leaning closer, it\",The penguin waddles to his side.,\"Leaning closer, it\",gold,eyes the weary man.,sweeps out on his pit.,'s two pools expanse on its front.,\"becomes a warm, intense breath.\",0\n13386,lsmdc3050_MR_POPPERS_PENGUINS-23918,4637,\"The penguin slides away on its belly. Later, someone\",The penguin slides away on its belly.,\"Later, someone\",gold,rides in the woman's limousine eating a snake.,passes the building's front desk.,\"flies with the envelope onto someone's head, revealing the scar on someone's forehead.\",lobs a tin rail.,1\n13387,lsmdc3050_MR_POPPERS_PENGUINS-23918,4642,Someone hands him more cash. He,Someone hands him more cash.,He,gold,draws blood from his hand.,looks at her beau.,doles out even more.,hangs up and gives a gentle shrug.,2\n13388,lsmdc3050_MR_POPPERS_PENGUINS-23918,4636,He tosses it onto the path of water. The penguin,He tosses it onto the path of water.,The penguin,gold,slides away on its belly.,flops down as the fax continues on.,\"shifts his gaze to the small tiger, who gives him a tight black grin.\",gets frantically and trots off.,0\n13389,lsmdc3050_MR_POPPERS_PENGUINS-23918,4639,He pulls up security footage of someone tossing the penguin down the hallway. He,He pulls up security footage of someone tossing the penguin down the hallway.,He,gold,\"the frustrated, he stands in front of the tv and comes down to her rear.\",shows a closer image of someone cheering and freezes it.,\"weaves off after him, throwing him up at a u - boat.\",raises to his full height with his thumb.,1\n13390,lsmdc3050_MR_POPPERS_PENGUINS-23918,4630,\"As the bird tilts his head curiously, someone minimizes the recipe window. Someone\",\"As the bird tilts his head curiously, someone minimizes the recipe window.\",Someone,gold,sleeps with the closed computer still on his lap.,\"eyes the tip of his hand, at the top of her hair, reaches for the phone.\",'s image of a table is unfinished.,\"enters the room, takes boy, and laying at a table near a small counter.\",0\n13391,lsmdc3050_MR_POPPERS_PENGUINS-23918,4638,\"Someone sets the penguin on the floor, then turns to a computer. He\",\"Someone sets the penguin on the floor, then turns to a computer.\",He,gold,pulls up security footage of someone tossing the penguin down the hallway.,pulls back someone finds someone sleeping on his bed.,\"scans the space for a moment, then flies away.\",\"shakes his back, then turns off the lamp in a gust of wind.\",0\n13392,lsmdc3050_MR_POPPERS_PENGUINS-23918,4635,Someone notices a vase of flowers sitting on a table in the hallway. He,Someone notices a vase of flowers sitting on a table in the hallway.,He,gold,crouches and places the typewriter against the wall.,\"breaks a dot, with determination in his eyes.\",pours the vase's water down the hall.,slides off the front door and hurries upstairs.,2\n13393,lsmdc3050_MR_POPPERS_PENGUINS-23918,4641,Someone looks at the bird standing behind him. Someone,Someone looks at the bird standing behind him.,Someone,gold,lays down on her couch.,hands him more cash.,crosses to him and approaches someone.,takes a glass of ice and puts them down.,1\n13394,lsmdc3050_MR_POPPERS_PENGUINS-23918,4640,Someone offers a someone bill. Someone,Someone offers a someone bill.,Someone,gold,sprays his snake - themed hair and hands it to someone.,lies in bed under someone's fever.,looks at the bird standing behind him.,strides down to it and massages a lamp - lit window.,2\n13395,anetv_WTOTYZOu3MQ,15090,\"The man served the ball and hit the wall but it just bounced so low that the man can't hit it. The man chase after the ball picke it up and hit, then a shirtless man\",The man served the ball and hit the wall but it just bounced so low that the man can't hit it.,\"The man chase after the ball picke it up and hit, then a shirtless man\",gold,went toward the table and throw it straight in the air and another boy tried to help him point next to the table.,runs to the ball and the man next man wearing the men sit in the roofed gym and measure.,\"burst out the door during the trip, then the man kicked the ball and landed on all the high.\",came up to him and teach him how to serve the ball.,3\n13396,anetv_WTOTYZOu3MQ,15089,The barefoot man serve the ball but missed it. The man served the ball and hit the wall but it just,The barefoot man serve the ball but missed it.,The man served the ball and hit the wall but it just,gold,hits the ball on the court.,serves it in the back basket.,bounced so low that the man can't hit it.,can not see what they set up and threw the ball.,2\n13397,anetv_9IIcG8AiUnA,12748,A man is standing inside a kitchen in front of a small table. He,A man is standing inside a kitchen in front of a small table.,He,gold,sharpens a knife in a block with a knife.,is using a white mop machine in the yard.,puts cans of cheese into the glass and chops it together.,shows and talks about olive oil and lemon juice.,3\n13398,anetv_9IIcG8AiUnA,12749,He shows and talks about olive oil and lemon juice. He,He shows and talks about olive oil and lemon juice.,He,gold,stirs the jug creating pools full of water.,talks about as he wants to direct the lemonade.,adds rum to the pitcher for vegetables.,uses the items to clean and polish the table of scratches.,3\n13399,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1921,4078,Someone plants his feet staring at the tree trunk. He,Someone plants his feet staring at the tree trunk.,He,gold,extends the square wire to someone.,\"tries again, but only chips the trunk.\",sets his mouth open and rests his cheek against the glass.,fumbles with scissors and gets out of the car.,1\n13400,anetv_5O1ttcUIUKk,16183,Men are standing in a large green field playing lacrosse. people,Men are standing in a large green field playing lacrosse.,people,gold,is around the field watching the game.,are playing lacrosse in a gym.,are standing in an indoor basketball game.,start walking down the field playing a game of hitting a ball.,0\n13401,anetv_5O1ttcUIUKk,16184,People is around the field watching the game. men,People is around the field watching the game.,men,gold,are playing paintball with the man in a red hat who is talking to the camera.,wearing paintball gear stand playing shuffle rope in an indoor arena.,are playing in a field with red standing on their t up field.,are running side to side of the ield playing lacrosse trying to score.,3\n13402,anetv_MBTSe-NHK-I,8031,They go down the falls into the rapid white coiling waters. They,They go down the falls into the rapid white coiling waters.,They,gold,young men struggle to swim towards the boat as the and the dolphins stay for a loading but he's caressing the memory.,\"point to the well carrying smoke and the rafters, and they appears up from a mixture close to their shore.\",see the matador jumping from the fun below.,\"wave as they go by the camera, and continue to float downstream.\",3\n13403,anetv_MBTSe-NHK-I,8030,A group of rafters are floating toward the small waterfall. They,A group of rafters are floating toward the small waterfall.,They,gold,jump over the wave causing several rafters to get away from the water.,are pulled back towards the water.,go down the falls into the rapid white coiling waters.,run down a river.,2\n13404,anetv_MBTSe-NHK-I,2734,The third tuber goes through the rapids. The camera,The third tuber goes through the rapids.,The camera,gold,zooms out as the tubers pass through the rough water and end up in the calm waters of the river.,pans around the city of tall foliage.,comes to a stop on it.,follows up and back and the kite huddles inside.,0\n13405,anetv_MBTSe-NHK-I,2731,A river with white rapids and a group of tubers wearing yellow helmets float in the distance. One tuber,A river with white rapids and a group of tubers wearing yellow helmets float in the distance.,One tuber,gold,comes across the rapids bobbing up and down through the rapids.,lands on the bottom of the lake with the skier hanging on their lower feet on the water.,goes wrong then swim around the pool.,runs as fast as people run as they drive away.,0\n13406,anetv_MBTSe-NHK-I,2733,The second tuber comes through the rapids. The third tuber,The second tuber comes through the rapids.,The third tuber,gold,goes through the rapids.,is loose as the iceberg builds up the ice until it glides over to the shore again.,runs in the jungle next to the lake.,passes down and start falling down.,0\n13407,anetv_MBTSe-NHK-I,8029,A forest is shown with rapid water from a river. A group of rafters,A forest is shown with rapid water from a river.,A group of rafters,gold,shoot through the rapids.,is laden with cocktails.,have many left behind.,are floating toward the small waterfall.,3\n13408,anetv_MBTSe-NHK-I,2732,One tuber comes across the rapids bobbing up and down through the rapids. The second tuber,One tuber comes across the rapids bobbing up and down through the rapids.,The second tuber,gold,comes out of the sky as someone draws up past her.,comes through the rapids.,comes on to make his escape and next desperately sticking his left hand to the building.,swims from a skier at the bridge.,1\n13409,anetv_2SBTnunPQrQ,15869,\"A little boy shines the shoes of a person using black shoe polish and make shine with a brush and a cloth. Then, the man\",A little boy shines the shoes of a person using black shoe polish and make shine with a brush and a cloth.,\"Then, the man\",gold,spins a wooden rug over the white puppy.,paints the laces of the boots.,rubs some on the chair and apply cream to the corner of the shoe.,pays the little boy.,3\n13410,anetv_2U_BUV8PLtk,14468,A pair of handlebars are detached from the bike and is laying down flat on a table. The man then,A pair of handlebars are detached from the bike and is laying down flat on a table.,The man then,gold,grabs a folding wheel and uses the sander to secure it all to the roof.,begins applying the ice all to the rim.,tries again and tries to repair the scenes.,picks up the handlebars and sticks them back into the bike tightening them with a key.,3\n13411,anetv_VxoBV76IkLM,10197,Man is standing in a alge ield doing a shot put. woman,Man is standing in a alge ield doing a shot put.,woman,gold,give a bottle of hair and is facing a man with a machine.,is in a gym practicing gymnastics in the very middle of the field.,is standing in the room teetering on the pool edge where the ball is giving it.,is wearing black clothes doing a shot put in a large green field.,3\n13412,anetv_VxoBV76IkLM,10198,Woman is wearing black clothes doing a shot put in a large green field. woman,Woman is wearing black clothes doing a shot put in a large green field.,woman,gold,is sitting on a horse next to her on a horse.,is standing in a yard getting a hair cut.,shows the camera how to brush a bike.,is practicing doing a shot put in the field.,3\n13413,lsmdc3035_INSIDE_MAN-2145,7183,\"In the secured office, someone looks up. He\",\"In the secured office, someone looks up.\",He,gold,places the receiver at her ear.,activates a smoke bomb and rolls it into the hallway.,pulls a catholic decorated envelope from a box rack and snaps it in half.,places a figurine to someone.,1\n13414,anetv_gWyBBQtsDhc,4206,A woman with long hair is seen speaking to the camera while moving her arms around and smiling while she speaks. She then,A woman with long hair is seen speaking to the camera while moving her arms around and smiling while she speaks.,She then,gold,begins brushing her long hair out and smiling back at the camera and waving.,\"includes back and fourth, moving back and fourth and ends by speaking to the camera.\",begins using a razor while speaking and making rubbing lotion onto her face.,begins cutting her hair and ends by walking around afterwards stopping to speak in various shots.,0\n13415,anetv_YPNLMBhuDS8,17712,A man is seen speaking to the camera while holding up a shoe and polish and pointing to objects. The man then,A man is seen speaking to the camera while holding up a shoe and polish and pointing to objects.,The man then,gold,briefly moves the iron around the mans neck as well as welding it on.,begins using the shoes on the floor.,\"puts a knife on the floor, moving along the jack and putting plaster on top.\",rubs down the shoe with a rag while the camera zooms in on more products and speaking to the camera.,3\n13416,anetv_rFM3OUUL5fI,12660,A large rock column is seen from a boat in the ocean. The man,A large rock column is seen from a boat in the ocean.,The man,gold,speaks to the camera and rides the board several times.,moves to the camera before floating on animal.,waves and waves in the water in a wave.,attempts to walk across the rope but falls but and holds onto the rope.,3\n13417,anetv_rFM3OUUL5fI,8940,\"Once to the other side, he tries to turn around and come back but has the hardest time standing up. Finally he\",\"Once to the other side, he tries to turn around and come back but has the hardest time standing up.\",Finally he,gold,is erect and begins teetering his way across the rope and makes it to the other side without falling.,is shown again and then come to join him and a little girl in the orange shirt is caressing him.,stifles his boxing ring just against his face.,takes the check off the camera.,0\n13418,anetv_rFM3OUUL5fI,12661,The man attempts to walk across the rope but falls but and holds onto the rope. The man,The man attempts to walk across the rope but falls but and holds onto the rope.,The man,gold,walks around and throw a rope on one side as well as the man.,continues spinning and jumping up and down.,does many routines while smiling and unwrapping the rope onto a rope.,walks across the rope all the way to the attached rock.,3\n13419,anetv_rFM3OUUL5fI,8939,\"The camera then begins to pan the rocks and a man begins tight roping between them. As he is walking, he\",The camera then begins to pan the rocks and a man begins tight roping between them.,\"As he is walking, he\",gold,\"begins packing, the baby in costume, walk around the side and continue on to the camera.\",holds the paddle in his hand to break out the fire and throw it again.,makes several attempts to cross but falls three times before finally making it to the other side.,continues to do this on the board while bongo players also sits on the bench moving forward.,2\n13420,anetv_rFM3OUUL5fI,12659,A seal sits on a rock near an ocean. A large rock column,A seal sits on a rock near an ocean.,A large rock column,gold,is seen from a boat in the ocean.,\"stands by the water, surrounded by piles of bubbles.\",is seen moving closer to someone.,is shaped in bottom.,0\n13421,anetv_ZwxvczODMbM,12762,\"The dog walked over the young man. The woman beat the young boy, the did arm wrestling again and the woman\",The dog walked over the young man.,\"The woman beat the young boy, the did arm wrestling again and the woman\",gold,fell off the back.,beat the young man.,hugged the other man then went to the other again.,danced on the blue pinata.,1\n13422,anetv_ZwxvczODMbM,12761,Two people are arm wrestling on a chair. The dog,Two people are arm wrestling on a chair.,The dog,gold,is putting ornaments off the divan.,is tipped down the table.,is slowly operating in pain.,walked over the young man.,3\n13423,anetv_E7OCzz_XuiI,16017,A fridge is seen opening with two people grabbing onto a piece of cheese. The two men,A fridge is seen opening with two people grabbing onto a piece of cheese.,The two men,gold,fight then begin playing a game of rock paper scissors.,climb at the table as well.,sit on the beach court talking.,stand together and chat with him.,0\n13424,anetv_Yb5b_xx1P9I,11011,A man in a black shirt is checking food in a sandwich shop. The man then,A man in a black shirt is checking food in a sandwich shop.,The man then,gold,applies peanut jelly in orange bread.,pours a drink to the baby and points him at a cup of food.,goes to a family on the bar.,moves fast to make a hoagie sandwich by adding ingredients from the bins.,3\n13425,anetv_Yb5b_xx1P9I,11012,The man then moves fast to make a hoagie sandwich by adding ingredients from the bins. The man,The man then moves fast to make a hoagie sandwich by adding ingredients from the bins.,The man,gold,picks up the oranges and says it under the press.,ladles the cheese shortly then the host uses a white drink and cuts off the next wrapping.,wraps the sandwich in paper and puts it in a plastic bag.,moves a pot off the pan and puts them in the pan.,2\n13426,anetv_Yb5b_xx1P9I,11013,We see on a phone the man made the sandwich in 41 seconds. The man then,We see on a phone the man made the sandwich in 41 seconds.,The man then,gold,cuts stacks of oil inside of the cabinets.,sits on the stove and add gasoline.,takes the sandwich apart in the back.,takes the string and continues to play the accordion.,2\n13427,anetv_JEvEoAESqJ0,13617,A large group of people are seen running down a track together. One man,A large group of people are seen running down a track together.,One man,gold,drives forward with the riders without bumping and running.,is seen running the opposite direction by himself.,jumps onto a platform and a person performs a jump.,is behind a piano beam holding up in stage and one pole continuously.,1\n13428,anetv_JEvEoAESqJ0,3943,People are running around a track. A man,People are running around a track.,A man,gold,is interviewed while the women each also take photos.,jumps into a sand pit.,runs down a track and jumps into a pile of sand.,gets off a horse.,2\n13429,anetv_JEvEoAESqJ0,3944,A man runs down a track and jumps into a pile of sand. A person in a purple shirt,A man runs down a track and jumps into a pile of sand.,A person in a purple shirt,gold,splits over the puck.,falls down to the ground.,is holding a broom.,walks past a crowd of indians.,2\n13430,anetv_JEvEoAESqJ0,13618,One man is seen running the opposite direction by himself. He,One man is seen running the opposite direction by himself.,He,gold,walks by and more shots are shown of a larger glass - colored pool.,goes over together off the roof and is watching them rotate.,\"continues moving around and swinging the beam while holding and walking around him, jumping back to avoid the game.\",jumps into a pit and walks away.,3\n13431,anetv_-AjZCBMb4qU,12667,\"A girl is seating in front of a table, playing an accordian. She\",\"A girl is seating in front of a table, playing an accordian.\",She,gold,begins playing the flute together.,stares at the camera as she plays the keyboard and pulls the accordian in and out.,sits up and walks toward the middle of the band.,brushes past him as he walks by.,1\n13432,anetv_vUuC72xikqw,1607,A close up of a pumpkin is seen followed by a child scouping out the middle. Another child next to her,A close up of a pumpkin is seen followed by a child scouping out the middle.,Another child next to her,gold,continues laying the plaster to the wall.,has slowly painted the dog with a brush and rests back down a towel so the small circle is shown in the end.,is seen balancing various ingredients in the traditional board and more clips of the same process are shown.,is seen cutting out the pumpkin when an adults walks into frame.,3\n13433,anetv_vUuC72xikqw,1608,Another child next to her is seen cutting out the pumpkin when an adults walks into frame. The adults,Another child next to her is seen cutting out the pumpkin when an adults walks into frame.,The adults,gold,continue to pass and do various tricks to the girl by showing it at the end.,continue to slide round and continue wrapping the present while people watch.,helps the children with one smiling to the camera and holding up seeds while the camera pans around the room.,grab a box of yellow water from the surfboard and run around while standing and rake the fence.,2\n13434,lsmdc1043_Vantage_Point-89076,17233,\"He zooms in as she places something in his hand and clutches his palm. As their heads move closer, someone\",He zooms in as she places something in his hand and clutches his palm.,\"As their heads move closer, someone\",gold,tries to cross them.,lowers his gaze and stops filming.,bends over and accepts his wine.,raises a central finger to his son's belly and crouches.,1\n13435,lsmdc1043_Vantage_Point-89076,17227,He records the upper windows and one of the many arches in the plaza. There,He records the upper windows and one of the many arches in the plaza.,There,gold,\"between them, as he looks astonished against a historic wall hidden an old high wall, the luxurious room shakes.\",are kid shouting hello from some of the balconies.,\", asian boys collide on the bars with the scraper spilling on the other side of the referee.\",system has a quality of fifty stores over the cliffs.,1\n13436,lsmdc1043_Vantage_Point-89076,17221,People reach the balcony railing. They,People reach the balcony railing.,They,gold,race along the balcony.,disappear through a dress bar.,go down the stairs to a room.,go back on the ship and wait for someone.,0\n13437,lsmdc1043_Vantage_Point-89076,17213,\"Someone rounds a corner, someone and another agent in pursuit. Someone\",\"Someone rounds a corner, someone and another agent in pursuit.\",Someone,gold,rushes through the throng.,shoot back at someone.,shoots in the air.,struggles in the car.,2\n13438,lsmdc1043_Vantage_Point-89076,17219,He shoves people out of his way. Someone,He shoves people out of his way.,Someone,gold,retreats and walks back down the path to the main entrance of the cafe.,smiles brightly at himself.,runs onto a balcony and leaps from it into a courtyard.,downs a high five as he balances on weight board.,2\n13439,lsmdc1043_Vantage_Point-89076,17224,He runs across a road to an underpass carrying highway traffic. Someone,He runs across a road to an underpass carrying highway traffic.,Someone,gold,stops in the street and stares with the curb.,is still at the wheel.,takes the gun from his holster and checks the magazine.,drags his bike up underneath the boat.,2\n13440,lsmdc1043_Vantage_Point-89076,17215,Someone rushes out into the street. He,Someone rushes out into the street.,He,gold,slam on it.,darts into the road as an ambulance approaches.,\"holds his door, which is slightly ajar.\",shoves away her furniture and dashes through the front door of the hotel.,1\n13441,lsmdc1043_Vantage_Point-89076,17217,\"He gets to his feet, and he runs. Someone and the second agent, someone,\",\"He gets to his feet, and he runs.\",\"Someone and the second agent, someone,\",gold,chase someone into an arcade.,get hanging up when the mob gather.,\"sprints back to a park bench, looking sadly at someone in shock.\",\"are grabbing money still to the coffee, stare at the pavement.\",0\n13442,lsmdc1043_Vantage_Point-89076,17222,They race along the balcony. Someone,They race along the balcony.,Someone,gold,'s face is revealed as someone dodges his horse.,feels along someone's tie - related's contempt.,dashes away from the apartment building and sprints along the street.,\"emerges, peering nervously through binoculars.\",2\n13443,lsmdc1043_Vantage_Point-89076,17223,\"Dodging traffic, he crosses the road until he is hit by another car. He\",\"Dodging traffic, he crosses the road until he is hit by another car.\",He,gold,stands and stares off beyond the wrecked diner.,runs underneath a bar and scurries over in the ground to open a suitcase while stopping to grab at dad.,wears jeans and a t - shirt and has an impressive test.,runs across a road to an underpass carrying highway traffic.,3\n13444,lsmdc1043_Vantage_Point-89076,17220,Someone runs onto a balcony and leaps from it into a courtyard. People,Someone runs onto a balcony and leaps from it into a courtyard.,People,gold,skateboard up a tower.,watch the man fight through him.,reach the balcony railing.,fall on its glassy faces in front of windows.,2\n13445,lsmdc1043_Vantage_Point-89076,17226,\"The man in the checked shirt, someone, is videoing. He\",\"The man in the checked shirt, someone, is videoing.\",He,gold,uses a attending portable phone to a tire.,is walking in the center of the house.,records the upper windows and one of the many arches in the plaza.,runs toward a gold building.,2\n13446,lsmdc1043_Vantage_Point-89076,17231,\"He strolls deeper into the crowd, his camera focused above their heads. He pans his camera around, and on the lcd screen he\",\"He strolls deeper into the crowd, his camera focused above their heads.\",\"He pans his camera around, and on the lcd screen he\",gold,finds someone standing at the same desk with someone on his other bed.,talks to clergyman network.,sees someone by the pillar with the young man someone saw her with.,\"passes the first inmate who stops in a wall, facing where the young ads kicks and punches.\",2\n13447,lsmdc1043_Vantage_Point-89076,17232,\"He pans his camera around, and on the lcd screen he sees someone by the pillar with the young man someone saw her with. He\",\"He pans his camera around, and on the lcd screen he sees someone by the pillar with the young man someone saw her with.\",He,gold,clutches his mobile phone in his eyes.,nip her fingers at the troll's neck.,zooms in as she places something in his hand and clutches his palm.,\"appears, shakes the hand of the mysterious girl and looks as if she's better than.\",2\n13448,lsmdc1043_Vantage_Point-89076,17212,An agent leads someone away. Someone elbows him in the face and he,An agent leads someone away.,Someone elbows him in the face and he,gold,takes the agents gun.,returns to another railing.,lets the heavy tears fall.,lies on his stomach.,0\n13449,lsmdc1043_Vantage_Point-89076,17218,\"Someone and the second agent, someone, chase someone into an arcade. He\",\"Someone and the second agent, someone, chase someone into an arcade.\",He,gold,shoves people out of his way.,spots another radio and stumbles between them.,slams his case on the desk.,\"scans the area, halts, and then struts off to the kitchen.\",0\n13450,lsmdc1043_Vantage_Point-89076,17214,Someone shoots in the air. Someone,Someone shoots in the air.,Someone,gold,rushes out into the street.,gives her a warm smile.,leans around the controls and leans against the wall.,shakes someone's hands as they pull out a argument.,0\n13451,lsmdc1043_Vantage_Point-89076,17228,There are kid shouting hello from some of the balconies. Someone,There are kid shouting hello from some of the balconies.,Someone,gold,runs on the ledge trying to get off his feet.,walks away from the kids and resumes videoing.,reemerges across the deck and flapping low to its pink sands.,do arthur - stand at the unsteady occasionally.,1\n13452,lsmdc1043_Vantage_Point-89076,17229,Someone walks away from the kids and resumes videoing. The timer on his lcd screen,Someone walks away from the kids and resumes videoing.,The timer on his lcd screen,gold,reads nearly two hours and two minutes.,shows someone reclined on a lamp bench on the upper landing.,gives a disapproving shock to it.,shows a second page containing flesh - noodle from the market.,0\n13453,lsmdc1043_Vantage_Point-89076,17230,The timer on his lcd screen reads nearly two hours and two minutes. He,The timer on his lcd screen reads nearly two hours and two minutes.,He,gold,lifts it to his ear.,\"start from its race, and give the proper hand to sharpen another needle.\",\"strolls deeper into the crowd, his camera focused above their heads.\",finds someone drinking a cream time.,2\n13454,lsmdc1043_Vantage_Point-89076,17216,He darts into the road as an ambulance approaches. Someone,He darts into the road as an ambulance approaches.,Someone,gold,notices the site in its cage.,sits in the passenger seat.,watches him go.,spots cover on two cars.,1\n13455,lsmdc1043_Vantage_Point-89076,17225,\"His arms, face and hair are wet with sweat. Someone\",\"His arms, face and hair are wet with sweat.\",Someone,gold,stares back at the crowd of high students.,remains motionless in the snow dark.,steps out from behind a pillar and looks along the road.,duel on among his tall overcoat and jeans.,2\n13456,anetv_uFMDSiHu7g4,10068,A man wearing a striped shirt dances with a girl in a brown blouse at a street festival. Other couple,A man wearing a striped shirt dances with a girl in a brown blouse at a street festival.,Other couple,gold,\"sit on the side of a pool, with other young people boxing.\",of men are on a room in front of the group as a costume moves around in bartenders.,are seen standing beside a large plant with buckets and talking to each other.,join in and dance in a street festival while performers play on a stage.,3\n13457,anetv_uFMDSiHu7g4,10069,Other couple join in and dance in a street festival while performers play on a stage. Onlookers,Other couple join in and dance in a street festival while performers play on a stage.,Onlookers,gold,are at a table tennis padded by one woman.,\"dance as act as zumba in their diy, after their gaze falls.\",pass by while the group continues to dance.,take a flags on their necks and then dance together and put the instances of their scarves in cold air.,2\n13458,anetv_OuEQLjwBIPI,11288,The man stands up and other men appear talking to him or are near him. The men are positioned on the field and a man hits a ball and and all the men,The man stands up and other men appear talking to him or are near him.,The men are positioned on the field and a man hits a ball and and all the men,gold,run on the mat.,start running on the field.,jump up to stumble in.,are watching the game below.,1\n13459,anetv_OuEQLjwBIPI,11289,The men are positioned on the field and a man hits a ball and and all the men start running on the field. The man who just hit the ball,The men are positioned on the field and a man hits a ball and and all the men start running on the field.,The man who just hit the ball,gold,\"after taking it off, then the game continues on in the end.\",begins to cheer and jump up and down multiple times then walks away.,\"with the stick and grabs the ball, and two men ride up.\",does boys part tie takes his turns shooting the ball for demonstrate run between running and landing.,1\n13460,anetv_OuEQLjwBIPI,11287,\"A man in a green outfit, wearing white gloves and a green hat is bending over with his hands on his thighs while a website is displayed on the bottom of the screen. The man stands up and other men\",\"A man in a green outfit, wearing white gloves and a green hat is bending over with his hands on his thighs while a website is displayed on the bottom of the screen.\",The man stands up and other men,gold,appear talking to him or are near him.,are then seen dressed in a black costume after the dance.,are fencing still and talking about how this quick looks would be.,are shown and the man with him steering them all and smiling to each other.,0\n13461,anetv_OuEQLjwBIPI,8985,One man pitches a ball and another hit it. One man,One man pitches a ball and another hit it.,One man,gold,\"swings, dodging the ball in grabbing the bench.\",hits the ball against the wall.,runs and kicks the ball.,jumps up and down while holding the bat and walking away.,3\n13462,anetv_2-hF-v79XyQ,9391,The yellow team all hug each other. We,The yellow team all hug each other.,We,gold,return to the men in the studio.,and the girls eat their treats then return to the bow and pat each other.,see a cop on the street.,\"zoom through the field, as the lady explains the wheat to hit the volleyball.\",0\n13463,lsmdc3048_LITTLE_FOCKERS-23198,15932,\"With a smile, he holds out a plate of cake. Someone\",\"With a smile, he holds out a plate of cake.\",Someone,gold,punches him in the nose.,wraps an arm around her shoulder.,emerges from his reverie.,shows at a print.,0\n13464,lsmdc3048_LITTLE_FOCKERS-23198,15937,The older man flings him into a giant ball pit. Someone,The older man flings him into a giant ball pit.,Someone,gold,looks toward the city in front of someone.,jumps at the sides as he flashes a new one.,disappears below the balls.,releases the cable and jumps over.,2\n13465,lsmdc3048_LITTLE_FOCKERS-23198,15940,They shift in another part of the pit. Someone,They shift in another part of the pit.,Someone,gold,is grabbing someone and prance away from the wall.,notices and stares with intense eyes.,swings his hands off the diner then walks away.,stares out of the window.,1\n13466,lsmdc3048_LITTLE_FOCKERS-23198,15942,\"Behind him, someone burst through the surface. He\",\"Behind him, someone burst through the surface.\",He,gold,lands on the deck by someone.,comes onto the floor of someone's bed.,tosses the lifeboat the robot back.,grabs his son - in - law.,3\n13467,lsmdc3048_LITTLE_FOCKERS-23198,15938,Someone disappears below the balls. He,Someone disappears below the balls.,He,gold,glances around but sees only the playing.,shuts his mouth and wipes his mouth.,rockets engines on extension as they glide skyward.,presents a smaller condom.,0\n13468,lsmdc3048_LITTLE_FOCKERS-23198,15933,Someone blocks a strike then hits someone in the face. Someone,Someone blocks a strike then hits someone in the face.,Someone,gold,stands at a dead body.,\"retrieves his hand, hugs it.\",slides off his jacket.,allows a small smile as someone approaches the adopted girl.,2\n13469,lsmdc3048_LITTLE_FOCKERS-23198,15935,\"As someone throws a punch, someone blocks him. Someone\",\"As someone throws a punch, someone blocks him.\",Someone,gold,tries to push him away.,\"whacks him, knocking him into the crowd.\",takes a breath before letting go from the diving board.,pulls a toy phone from his pocket.,0\n13470,anetv_vpvhtd7CqUA,268,Anti animal cruelty text appears. A bull fighter,Anti animal cruelty text appears.,A bull fighter,gold,poses in front of the point clapping his men.,is shown fighting a bull.,appears in swimming and carries ice in gear.,stops the young man's sprint forward.,1\n13471,anetv_vpvhtd7CqUA,270,A video is played of bullfighters getting gored. A new video,A video is played of bullfighters getting gored.,A new video,gold,is of several more videos.,appears with slow motion stills of it jogging down females snowboarding.,talks and people cheer.,showing dead animals plays.,3\n13472,anetv_vpvhtd7CqUA,269,A bull fighter is shown fighting a bull. A video,A bull fighter is shown fighting a bull.,A video,gold,is played of bullfighters getting gored.,of a pit with middle frisbee is shown.,shows how to grab his things and clearly use the players' arm to help the dog.,is shown of someone fighting on it.,0\n13473,lsmdc1034_Super_8-8411,15317,It comes after someone and the others. The three friends,It comes after someone and the others.,The three friends,gold,turn their heads off.,look up the aisle.,run on down a dark tunnel until they come to a dead end and are forced to stop.,head off together.,2\n13474,lsmdc1034_Super_8-8411,15313,The alien suddenly stops in its tracks. The sheriff,The alien suddenly stops in its tracks.,The sheriff,gold,stares into the pond.,\"looks up, steps through the gate.\",is up on his feet.,looks down at her.,2\n13475,lsmdc1034_Super_8-8411,15309,The alien puts someone down and immediately goes to investigate the noise. Someone,The alien puts someone down and immediately goes to investigate the noise.,Someone,gold,goes to listing voice mail.,stops and huddled inside the chief of sculpture.,stretches through his arm as he walks about half a dozen watering plants.,\"breaks cover and runs over to someone, who lies un - moving on the chamber floor.\",3\n13476,lsmdc1034_Super_8-8411,15321,The alien draws itself up to its full height of about 25 feet and someone steps towards it. The alien,The alien draws itself up to its full height of about 25 feet and someone steps towards it.,The alien,gold,surfaces as he moves from the sharp hole.,cocks its head to one side.,reaches out and grabs the ax.,takes the ring from someone's neck.,1\n13477,lsmdc1034_Super_8-8411,15318,The three friends run on down a dark tunnel until they come to a dead end and are forced to stop. The alien,The three friends run on down a dark tunnel until they come to a dead end and are forced to stop.,The alien,gold,picks up the ax.,slides forward out of reach and vanish.,emerges from the shadows.,cautiously backs out the tunnel.,2\n13478,lsmdc1034_Super_8-8411,15305,\"The alien carries on working, oblivious to someone or someone. It\",\"The alien carries on working, oblivious to someone or someone.\",It,gold,stops what it's doing and takes someone down from where she is hanging.,tucks in behind him.,remains with the other door.,rides up to the front.,0\n13479,lsmdc1034_Super_8-8411,15315,People follow the sheriff through the alien's maze of equipment. The sheriff,People follow the sheriff through the alien's maze of equipment.,The sheriff,gold,rushes in and gingerly removes more cash from her now flat tire.,uncorks the bottle another jug.,shines his flashlight ahead of them.,sits by the lip of the van.,2\n13480,lsmdc1034_Super_8-8411,15308,\"He lights a firecracker and leaves it beside a pile of other fireworks, then legs it off back down the tunnel. The alien\",\"He lights a firecracker and leaves it beside a pile of other fireworks, then legs it off back down the tunnel.\",The alien,gold,sits at a corner into an enormous shelter in an oven loaded the someone.,turns to the trapped man.,puts someone down and immediately goes to investigate the noise.,extends the pump from the fire truck to the fountain.,2\n13481,lsmdc1034_Super_8-8411,15322,The alien cocks its head to one side. The others,The alien cocks its head to one side.,The others,gold,look on in horror as the alien picks someone up.,duck into space as a locomotive's tail erupt along the ceilinged - lit new york skyscrapers.,aim at their partners.,gaze toward the player.,0\n13482,lsmdc1034_Super_8-8411,15310,\"She stares at him, then hugs him, tight. Someone\",\"She stares at him, then hugs him, tight.\",Someone,gold,\"enters a porsche's van, followed by someone.\",looks at him with a furrowed brow.,turns to him.,\"looks taken aback, but pleasantly so.\",3\n13483,lsmdc1034_Super_8-8411,15312,\"The alien runs along the dark tunnel in pursuit of someone, who flees up ahead of it. The alien suddenly\",\"The alien runs along the dark tunnel in pursuit of someone, who flees up ahead of it.\",The alien suddenly,gold,slides out of the gas chemicals into a tunnel that shapes like spiders.,stops in its tracks.,soars down the hill.,frees him from behind and out of the skylight.,1\n13484,lsmdc1034_Super_8-8411,15302,The fork in the tunnel brings someone out quite close to her. He,The fork in the tunnel brings someone out quite close to her.,He,gold,brings it up then looks down at the bar.,open to get a better view ranging from many of the houses in the cemetery.,watches as the alien continues with its work.,looks down and notices someone forgotten from under her.,2\n13485,lsmdc1034_Super_8-8411,15320,People cower back from it. Someone,People cower back from it.,Someone,gold,wraps the dog back around his neck.,\"quickly wraps a blanket around someone, who's there in the hospital's garage lot.\",is someone's leader leaving.,stands his ground as it draws closer.,3\n13486,lsmdc1034_Super_8-8411,15306,It stops what it's doing and takes someone down from where she is hanging. Someone,It stops what it's doing and takes someone down from where she is hanging.,Someone,gold,waits by the buffet and stops.,\"motions her to go further, is deep in thought.\",watches with mounting alarm.,answers her phone to make credit.,2\n13487,lsmdc1034_Super_8-8411,15319,The alien emerges from the shadows. People,The alien emerges from the shadows.,People,gold,cover a clip and radio.,stream over a rocky sea.,cower back from it.,emerge from the human room entrance.,2\n13488,lsmdc1034_Super_8-8411,15314,The sheriff is up on his feet. People,The sheriff is up on his feet.,People,gold,burst in the vehicle.,is watching him from the sun.,follow the sheriff through the alien's maze of equipment.,are snowboarding to the dirt floor in their fenced area.,2\n13489,lsmdc1034_Super_8-8411,15323,The others look on in horror as the alien picks someone up. It,The others look on in horror as the alien picks someone up.,It,gold,illuminates the missing portion of the porcelain.,has its wings and takes a woman's machete.,holds him close to its face to get a look at him.,flies out of the windows and disappears.,2\n13490,lsmdc1034_Super_8-8411,15311,They carefully lower the sheriff. The alien,They carefully lower the sheriff.,The alien,gold,'s large open body just missing the bear.,\"leans forward, burying his face in the crook of someone's hand.\",offers food on a napkin.,\"runs along the dark tunnel in pursuit of someone, who flees up ahead of it.\",3\n13491,lsmdc1034_Super_8-8411,15316,\"Bringing up the rear, someone is snatched by the creature and pulled back into the darkness. It\",\"Bringing up the rear, someone is snatched by the creature and pulled back into the darkness.\",It,gold,comes after someone and the others.,falls on the deck.,\"turns to face flames, creating blaze.\",silhouettes the friends as they all lie still.,0\n13492,lsmdc1034_Super_8-8411,15304,Someone tries to get his lighter to spark up. The alien,Someone tries to get his lighter to spark up.,The alien,gold,\"carries on working, oblivious to someone or someone.\",'s head comes in banging his head against the hand of something orange by the ocean hand.,grabs his grenade and one of the men easily takes their support.,\"reaches to pick up the chain of the trolls elastic and pulls from it, breaking the bolt.\",0\n13493,lsmdc1034_Super_8-8411,15300,Someone selects some suitably noisy fireworks and watches as the alien sets to work on whatever it is it's building. Someone,Someone selects some suitably noisy fireworks and watches as the alien sets to work on whatever it is it's building.,Someone,gold,is using fire to object.,is attached to a roll of steel bars along a exhaust pipe.,steps out of his study.,\"is still dangling, motionless, upside down.\",3\n13494,anetv_7B1FZR0IA6M,17656,A person jumps off their skateboard into a pile of leaves. A man,A person jumps off their skateboard into a pile of leaves.,A man,gold,is doing tricks on a large snow filled skateboard.,walks away with water chasing around.,stands by the stove talking.,films another man skateboarding.,3\n13495,anetv_7B1FZR0IA6M,17654,A person is jumping on a skateboard on a slack line. People,A person is jumping on a skateboard on a slack line.,People,gold,do several ramps and rope stunts as attached to the ropes.,jump off of a high rock as the audience still.,are doing skateboard tricks at a skate park.,walk along the street and feeling it.,2\n13496,anetv_7B1FZR0IA6M,5559,He bounces up and down on rope. He then,He bounces up and down on rope.,He then,gold,exercises and jumping on the mat.,spins hoops with his men jumping rope.,does several other tricks.,pays for several more and feet than the mat.,2\n13497,anetv_7B1FZR0IA6M,5560,He then does several other tricks. He,He then does several other tricks.,He,gold,red colored scales are shown in a photograph.,do a black turn yellow go in talking.,jumps a ramp and dives into a pile of leaves.,is still running jumps and jumps on his skates.,2\n13498,anetv_7B1FZR0IA6M,17655,People are doing skateboard tricks at a skate park. A person,People are doing skateboard tricks at a skate park.,A person,gold,is jumping on the bike.,jumps off their skateboard into a pile of leaves.,is riding in a skateboard down the skateboard.,is riding on a stroller and are beside him.,1\n13499,anetv_9PvtW0Uvnl0,13514,\"Several shots are shown of people tying their shoes, hitting a button, and checking a watch. People\",\"Several shots are shown of people tying their shoes, hitting a button, and checking a watch.\",People,gold,are then seen running down the road one at a time followed by many more following.,are holding their poles up to a third examination table.,\"take pictures of the game while a man background a woman, watches.\",begin seen doing continues young into place while vaulters exercising in unison.,0\n13500,anetv_9PvtW0Uvnl0,13513,A camera pans away from a road and shows a person's feet moving around. Several shots,A camera pans away from a road and shows a person's feet moving around.,Several shots,gold,are shown of divers speaking to the camera and gesturing to the camera.,are shown of people running around interviewing the people as well as tying and speaking to one another.,are shown of people interacting in the background.,\"are shown of people tying their shoes, hitting a button, and checking a watch.\",3\n13501,lsmdc0006_Clerks-48654,1350,\"Someone makes blow job faces down an imaginary line of guys, looking quite like a performing seal. He\",\"Someone makes blow job faces down an imaginary line of guys, looking quite like a performing seal.\",He,gold,\"realizes he has someone from over the satchel, and speaks to the camera.\",\"opens his mouth, picks up a can and doubles the image of the city building.\",\"grabs the shredded tiller against the bench, embarrassed as someone explains fearing by that.\",throws a little humming sound behind each nod.,3\n13502,anetv_Mk9PMED8K4g,6696,\"A lady pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike. The lady\",\"A lady pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike.\",The lady,gold,backs the dirt bike off the truck.,pushes the pinata to see where they started.,walks slowly down a hill where children talking.,goes up the window and pierces the side of the cake.,0\n13503,anetv_Mk9PMED8K4g,6699,The lady rides the dirt bike through water. The lady,The lady rides the dirt bike through water.,The lady,gold,mounts the horse and gets out of the car.,talks on a phone.,pulls the bike back.,lassos two horses and rides a horse along.,1\n13504,anetv_Mk9PMED8K4g,6694,A person is riding a dirt bike. A lady,A person is riding a dirt bike.,A lady,gold,puts his hand under an ice cream bar.,puts a bike on top of a bike.,is grooming an old pinkie with hose.,puts on goggles while sitting on a dirt bike.,3\n13505,anetv_Mk9PMED8K4g,18494,\"The woman is shown sitting on a motorcycle wearing a red bull helmet. He starts the motorcycle and goes away, next the woman stops the motorcycle when she gets near a car and she\",The woman is shown sitting on a motorcycle wearing a red bull helmet.,\"He starts the motorcycle and goes away, next the woman stops the motorcycle when she gets near a car and she\",gold,chews it and watches on off as the couple gets in.,jumps over the ground.,is in robert talks.,changes the clothes she has on and gets back on her motorcycle.,3\n13506,anetv_Mk9PMED8K4g,6697,\"The lady climbs on the truck, undressed, and dresses in her biking gear. The lady\",\"The lady climbs on the truck, undressed, and dresses in her biking gear.\",The lady,gold,uses the bike to guide her bike then stop it and slides the helicopter over down the ramp.,then begins on a horse jumping over the top of a ramp.,rides off on the dirt bike.,rides a scooter and rides the car down the road.,2\n13507,anetv_Mk9PMED8K4g,6698,The lady rides off on the dirt bike. The lady,The lady rides off on the dirt bike.,The lady,gold,flips the bike wheel on the ground.,rides the dirt bike through water.,rides the bike again.,returns riding an exercise bike.,1\n13508,anetv_Mk9PMED8K4g,6695,A lady puts on goggles while sitting on a dirt bike. A lady,A lady puts on goggles while sitting on a dirt bike.,A lady,gold,\"pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike.\",picks up a black brush and starts taking them down and pedaling.,holds a small brush in the front paw of a knife outside.,puts the strap on the rail of the canoe getting ready to swing.,0\n13509,anetv_5rw6n16ILgY,17690,\"A series of female contestants are shown trying to jump a hurdle while an audience watches, and the four commentators occasionally interject. Some of the contestants\",\"A series of female contestants are shown trying to jump a hurdle while an audience watches, and the four commentators occasionally interject.\",Some of the contestants,gold,are seen waving her arms in unison.,get their legs through the air.,are interviewed with flowers in their hands.,fall from their shoulders.,2\n13510,anetv_5rw6n16ILgY,18401,A woman then runs across a track and jumps over a beam. a second woman then,A woman then runs across a track and jumps over a beam.,a second woman then,gold,spins himself on the pole and performs many tricks.,runs and jumps over a different beam.,jumps and loses the skateboard then does some flips.,performs a gymnastics routine on the parallel bars.,1\n13511,anetv_5rw6n16ILgY,18400,Four men sit at a table and give commentary. a woman then,Four men sit at a table and give commentary.,a woman then,gold,grabs drink from an alcohol bottle and pushes it on the floor.,plays the game and is shaking a pole.,begins putting contact lenses in their face.,runs across a track and jumps over a beam.,3\n13512,lsmdc3092_ZOOKEEPER-45099,2151,Someone winces and grits his teeth. He,Someone winces and grits his teeth.,He,gold,turns to someone with a fixed smirk.,brings his hands forward.,walks across the street.,pulls out the quill.,3\n13513,lsmdc3092_ZOOKEEPER-45099,2154,\"Someone creeps past a man - made waterfall. Swinging it open, he\",Someone creeps past a man - made waterfall.,\"Swinging it open, he\",gold,finds a power box inside.,illuminates the manhattan skyline.,reaches towards the circle.,pulls the cable open.,0\n13514,lsmdc3092_ZOOKEEPER-45099,2150,\"As someone stares after her, Floyd shoots a quill into his forehead. Someone\",\"As someone stares after her, Floyd shoots a quill into his forehead.\",Someone,gold,runs his arms over someone's small stomach.,sidesteps with her elbow.,grins at her oldest daughter.,winces and grits his teeth.,3\n13515,lsmdc3092_ZOOKEEPER-45099,2156,\"On just his hind legs, someone scurries down a path to a set of heavy iron double doors. He\",\"On just his hind legs, someone scurries down a path to a set of heavy iron double doors.\",He,gold,scrambles to the kitchen board then dumps them across his wooden table to the wall man.,\"slaps someone's shoulder and they start into the room, and the zombies behind their death aggressively splayed out.\",\"climbs up to the keyhole, glances around, then picks the lock.\",\"bursts through a crowd, then spins one after the other, narrowly missing full.\",2\n13516,lsmdc3092_ZOOKEEPER-45099,2153,\"The monkey leaps onto it, climbs down the pole and lands in someone's enclosure. Someone\",\"The monkey leaps onto it, climbs down the pole and lands in someone's enclosure.\",Someone,gold,dives off the balustrade and lands on a howling.,hustles into someone's house.,creeps past a man - made waterfall.,digs down a paper skirt.,2\n13517,lsmdc3092_ZOOKEEPER-45099,2155,\"A dog is licking himself. On just his hind legs, someone\",A dog is licking himself.,\"On just his hind legs, someone\",gold,scurries down a path to a set of heavy iron double doors.,\"is using a mug in a small ashen street with a house wash, cutting clothes and a beard.\",has adopted children rich and dull grapes.,picks up the dogs shoes as a person in a black hoodie with large grail toothbrush.,0\n13518,lsmdc3092_ZOOKEEPER-45099,2152,He pulls out the quill. The monkey,He pulls out the quill.,The monkey,gold,\"bereaved inspector picks up his mobile phone from a bar, opens his eyes and smells his guest.\",checks the oven number.,\"leaps onto it, climbs down the pole and lands in someone's enclosure.\",'s head reads four minutes to two.,2\n13519,anetv_CI6cPLeVCTk,18585,Two people are seen sitting on swings outside. The people then,Two people are seen sitting on swings outside.,The people then,gold,hop on one another.,begin to skate around one another.,run around bumping with each other.,begin moving back and fourth.,3\n13520,anetv_5-SbGVTPM1c,12298,Men run down a track and leap backwards over a bar. A man,Men run down a track and leap backwards over a bar.,A man,gold,throws a heavy discuss.,walks with a disc in his hand.,waves a white flag once the land.,runs through a padded ramp and lands on the parallel bars.,2\n13521,lsmdc1008_Spider-Man2-75727,17425,Someone moves her head away and closes her mouth and her eyes. Someone,Someone moves her head away and closes her mouth and her eyes.,Someone,gold,swallows and smiles at their pretty date.,\"notices the bottles of powder in her hand, as her mother gazes at it.\",\"stands for a moment, then walks away.\",'s lost in memories.,3\n13522,lsmdc1008_Spider-Man2-75727,17429,\"Someone is sitting in a cafe with a glass front, leaning her head on her hand. Someone\",\"Someone is sitting in a cafe with a glass front, leaning her head on her hand.\",Someone,gold,holds the lady down and looks surprised to see her.,\"strolls in, and sits opposite her.\",sits with someone and gazes into the adjustment officer's eyes.,shuts the door and looks around.,1\n13523,lsmdc1008_Spider-Man2-75727,17428,\"She opens her mouth in a silent sigh, and looks sad and reflective. Someone\",\"She opens her mouth in a silent sigh, and looks sad and reflective.\",Someone,gold,\"is sitting in a cafe with a glass front, leaning her head on her hand.\",\"rises from her bed across his face and looks at her, watching soberly.\",keeps gesturing at her hands in the bathtub.,\"comes on from the bathroom, then stops for a moment and averts her worried gaze.\",0\n13524,lsmdc1008_Spider-Man2-75727,17423,\"Someone, on her knees, leans over him, kissing him full on the lips, her head pointing the opposite way from his. He\",\"Someone, on her knees, leans over him, kissing him full on the lips, her head pointing the opposite way from his.\",He,gold,\"looks a couple of times, never taking his eyes off her.\",\"stretches out his left hand, and holds her head still.\",freezes as a man shakes his head back and forth beneath the chair.,\"lifts his glove, shows missing a little bite, and bares his teeth.\",1\n13525,lsmdc1008_Spider-Man2-75727,17421,He is lying on the sofa. He,He is lying on the sofa.,He,gold,turns over and tips his head back on a cushion on the arm of the sofa.,lies in the bed with someone.,follows and holds the cellphone to his ear.,comes to the living room.,0\n13526,lsmdc1008_Spider-Man2-75727,17426,Someone's lost in memories. Her long hair,Someone's lost in memories.,Her long hair,gold,mussed as the water submerges away to her mouth.,slumps over a suspended breath.,\"trails down over his cheek, until someone pulls back.\",lies in the floor beneath the pillow.,2\n13527,lsmdc1008_Spider-Man2-75727,17422,\"He turns over and tips his head back on a cushion on the arm of the sofa. Someone, on her knees,\",He turns over and tips his head back on a cushion on the arm of the sofa.,\"Someone, on her knees,\",gold,pulls her to her feet.,leans down and types a blanket over her.,is flung backwards by the rumpled.,\"leans over him, kissing him full on the lips, her head pointing the opposite way from his.\",3\n13528,lsmdc1008_Spider-Man2-75727,17427,\"Her long hair trails down over his cheek, until someone pulls back. She\",\"Her long hair trails down over his cheek, until someone pulls back.\",She,gold,\"looks at her for a moment, then turns away and looks to her in the eye.\",responds with a grotesque sympathetic smile.,turns to find someone's teen swinging a pitchfork.,\"opens her mouth in a silent sigh, and looks sad and reflective.\",3\n13529,lsmdc1008_Spider-Man2-75727,17424,\"He stretches out his left hand, and holds her head still. Someone\",\"He stretches out his left hand, and holds her head still.\",Someone,gold,moves her head away and closes her mouth and her eyes.,\"lies limp from someone, clinging to a blanket.\",lays a hand on his arm.,shakes his own hand.,0\n13530,lsmdc3050_MR_POPPERS_PENGUINS-24193,1543,Someone and someone sit up. Someone,Someone and someone sit up.,Someone,gold,stands and stares at people.,tries someone on her way out.,looks over at someone who stands stock in his tracks.,turns to a mirror.,3\n13531,lsmdc3050_MR_POPPERS_PENGUINS-24193,1542,\"A dress flips over a curtain rod, and an employee brings another one. Someone\",\"A dress flips over a curtain rod, and an employee brings another one.\",Someone,gold,reluctantly returns.,\"steps out in a silver dress, her long hair draped over one shoulder.\",grins to his chest and executes it.,holds a brandy then follow her.,1\n13532,lsmdc3050_MR_POPPERS_PENGUINS-24193,1545,Someone crosses to the living room where the penguins gather around a scattering of stones from a hearth. She,Someone crosses to the living room where the penguins gather around a scattering of stones from a hearth.,She,gold,reaches up behind him and pulls someone's head against someone's shoulder.,looks under the covers to reveal the towering skeleton.,carries a small tray of flowers onto a table on the way to the beach.,kneels on the floor.,3\n13533,lsmdc3050_MR_POPPERS_PENGUINS-24193,1548,Someone steps aside and makes a phone call. Someone,Someone steps aside and makes a phone call.,Someone,gold,pulls up at retirement.,stands at the end of an incline.,kicks someone's shoes into the parked car.,sits at a restaurant.,3\n13534,lsmdc3050_MR_POPPERS_PENGUINS-24193,1546,She kneels on the floor. Someone,She kneels on the floor.,Someone,gold,walks along the hall and solemnly glances over his shoulder at a wall of fluffy green stairs.,crouches down to find another egg.,walks up behind her as she turns and walks away.,browses stuffed binder items.,1\n13535,lsmdc3050_MR_POPPERS_PENGUINS-24193,1551,Someone and someone leave them. Someone,Someone and someone leave them.,Someone,gold,is in his seat with the general.,points to a penguin sitting on the snow globe.,faces the children uncomfortably facing the boy.,sneaks with them to the stepladder of jutting rock.,1\n13536,lsmdc3050_MR_POPPERS_PENGUINS-24193,1547,\"The penguin turns back, then scurries out as someone joins them. Someone\",\"The penguin turns back, then scurries out as someone joins them.\",Someone,gold,opens them to reveal someone standing elegantly.,flicks the light at the crowd.,re - on - line its hinge of minas quidditch.,steps aside and makes a phone call.,3\n13537,anetv_GNzaxjYL0TM,19373,Two people are seen sitting on dirt bikes speaking to the camera with one shoveling dirt and the other riding along. Several shots,Two people are seen sitting on dirt bikes speaking to the camera with one shoveling dirt and the other riding along.,Several shots,gold,are then shown of the two riding dirt bikes along a trail while stopping to gesture to the camera every now and then.,are shown of people riding on the ice followed by a man with the body as well as people walking in the area.,are shown of people wandering and looking at one another as well as speaking to the camera.,are shown of people riding down a snowy hill on skateboards as well as riding on skateboards and continuing along with people.,0\n13538,anetv_nSR-JSqGoWQ,14792,\"The Brazilians follow up with a goal on a penalty kick, taken by an exuberant keeper. The Argentinians\",\"The Brazilians follow up with a goal on a penalty kick, taken by an exuberant keeper.\",The Argentinians,gold,get out by the shoot.,\"are surrounded by men, surrounded by red walls.\",shoot away from the kids.,steal a pass halfway across the sand field and take it down for a goal in the tight corner.,3\n13539,anetv_nSR-JSqGoWQ,14794,\"To make matters worse, Argentina scores on a deep uncontested shot after that. This game is far too easy for them, and they\",\"To make matters worse, Argentina scores on a deep uncontested shot after that.\",\"This game is far too easy for them, and they\",gold,have a brief replay with his conversation.,went down the games while throwing balls onto each others.,win by a large score.,get back and forth with their sticks.,2\n13540,anetv_nSR-JSqGoWQ,14793,The Argentinians steal a pass halfway across the sand field and take it down for a goal in the tight corner. This,The Argentinians steal a pass halfway across the sand field and take it down for a goal in the tight corner.,This,gold,is immediately followed by another goal from argentina on a penalty kick.,ends after the ball fall on.,is the first man to hit the boy.,am in the same setting.,0\n13541,anetv_5nvximBXhFI,10962,\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy is shown holding a camera with a selfie stick recording the action. After, a black male appears talking in the car and the boys\",\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy is shown holding a camera with a selfie stick recording the action.\",\"After, a black male appears talking in the car and the boys\",gold,appear clapping their hands and breaths away from hair left.,are then shown walking up a set of stairs.,fix on it once as various snow skis.,are falling the hill and cause him to go the far way across a river and do the same.,1\n13542,anetv_5nvximBXhFI,10961,\"A tall garage building is shown in the dark and then several teen age boys appear skateboarding in the inside of it. As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy\",A tall garage building is shown in the dark and then several teen age boys appear skateboarding in the inside of it.,\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy\",gold,in a wheelchairs begin to tug and begins to take them.,pushes them in order to hurl ice away.,is shown holding a camera with a selfie stick recording the action.,takes out his social gambling venue.,2\n13543,anetv_5nvximBXhFI,10963,\"After, a black male appears talking in the car and the boys are then shown walking up a set of stairs. The action continues and all the boys join one another back in the garage and the male that was talking in the video\",\"After, a black male appears talking in the car and the boys are then shown walking up a set of stairs.\",The action continues and all the boys join one another back in the garage and the male that was talking in the video,gold,takes the boy off to the bottom and view if he was making a final jump.,is about his karate performance.,screws to their eye.,is seen skating with the rest of the boys.,3\n13544,lsmdc3088_WHATS_YOUR_NUMBER-41950,5950,\"Perching in an armchair, someone leans back and peers out a window. Someone\",\"Perching in an armchair, someone leans back and peers out a window.\",Someone,gold,darts down the cave range.,takes her notebook from her purse and writes.,stands in the rain and turns to face her mother.,spits down two bottles.,1\n13545,lsmdc3088_WHATS_YOUR_NUMBER-41950,5953,\"Someone comes down barefooted, swigging champagne from the bottle. She\",\"Someone comes down barefooted, swigging champagne from the bottle.\",She,gold,stands up and presses a hand to her forehead then pours some into someone's eyes.,has become more angry.,glances up at him warmly.,notices a short man chatting up a model type.,3\n13546,lsmdc3088_WHATS_YOUR_NUMBER-41950,5954,She pads down the hall and wedges between an attractive young man and woman. She,She pads down the hall and wedges between an attractive young man and woman.,She,gold,\"fan poses before the display platform its grand illuminate, brown - furnished and with a cornered set.\",\"rounds a corner, then peeks back at the woman with beau.\",shows someone as she leaves with someone.,guests have gathered together at the golden queen of cafe park.,1\n13547,lsmdc3088_WHATS_YOUR_NUMBER-41950,5956,\"Amid a huddle of giggling women, one aims her videophone. Someone\",\"Amid a huddle of giggling women, one aims her videophone.\",Someone,gold,smacks her spear out of the back of the corpse.,\"scowls with her breasts, then dangles her beer.\",spins to face the engaged couple and flourishes her free hand.,\"tearful vet notices the three soldiers lying asleep, in - sulky sleep.\",2\n13548,lsmdc3088_WHATS_YOUR_NUMBER-41950,5949,\"At a mirror, someone curls her lashes. Perching in an armchair, someone\",\"At a mirror, someone curls her lashes.\",\"Perching in an armchair, someone\",gold,dumps some of the capsules onto the exam table.,plants a folded scissor on the desk and holds it to his chest.,arrives before the fire.,leans back and peers out a window.,3\n13549,lsmdc3088_WHATS_YOUR_NUMBER-41950,5955,\"She rounds a corner, then peeks back at the woman with Beau. The drunk young woman reluctantly\",\"She rounds a corner, then peeks back at the woman with Beau.\",The drunk young woman reluctantly,gold,bops to a stall and swoops it toward the floor again.,steps off the dinner counter and faces a glass of champagne.,breaks off his frown.,makes her way to the center of the party.,3\n13550,lsmdc3088_WHATS_YOUR_NUMBER-41950,5952,\"Someone grabs a glass of champagne and gulps down half its content. Now at the party downstairs, her mother\",Someone grabs a glass of champagne and gulps down half its content.,\"Now at the party downstairs, her mother\",gold,carries her mother to a table.,grabs her hands and fumbles it.,taps the side of her wine.,looks at a kitty computer phone.,2\n13551,anetv_KzxVQ19pRUU,14409,A man is seen speaking to the camera and begins holding up bottles of alcohol. He,A man is seen speaking to the camera and begins holding up bottles of alcohol.,He,gold,stirs a glass of soda in a shaker and then downs it in a glass.,begins filling out the alcohol in a glass by shaking it.,mixes ingredients together as well as liquids into a mixer.,are then shown putting gloves and pouring into several buckets as well as game of water.,2\n13552,anetv_KzxVQ19pRUU,14410,He mixes ingredients together as well as liquids into a mixer. He,He mixes ingredients together as well as liquids into a mixer.,He,gold,takes a drink and mixes the ingredients up together.,mashes up the mixture into a pouch and adds ingredients into another dish and creates a omelette with a spoon.,adds up more ingredients to a plate while several other people look in the pumpkin.,\"mixes out dough in a plastic pot, then measures it need to put it in a pan.\",0\n13553,anetv_KzxVQ19pRUU,14411,He takes a drink and mixes the ingredients up together. He finally,He takes a drink and mixes the ingredients up together.,He finally,gold,pours the meal over a clear spoon and stirs the pasta into the pasta.,pours the glass out onto a plate.,puts in whip cream and a cherry to present.,juices a martini and pours it in the pitcher.,2\n13554,lsmdc3002_30_MINUTES_OR_LESS-947,13286,\"As someone attacks, someone defends himself with the hair trimmer. Someone\",\"As someone attacks, someone defends himself with the hair trimmer.\",Someone,gold,pulls a new cat out of its case.,\"keeps his hands pointed at them, someone into someone's eyes.\",frowns and glares brightly at someone.,whips him with the cord.,3\n13555,lsmdc3002_30_MINUTES_OR_LESS-947,13287,Someone whips him with the cord. Someone,Someone whips him with the cord.,Someone,gold,roars down the sticky passage.,\"stands in front of someone, wielding a knife, kneeling back straight up in the sky.\",punches him in the kidney.,quickly takes the first steps to his shirt door.,2\n13556,anetv_b6VAlwv45q4,9264,A man plays and narrates a virtual video game on camera while talking into a microphone and wearing headphones as the games plays behind him as a animation. A man,A man plays and narrates a virtual video game on camera while talking into a microphone and wearing headphones as the games plays behind him as a animation.,A man,gold,\"makes a flute while dancing a bit, then runs out and shrieks in his entire song.\",simulates throwing up in a close up view on camera.,hits the billiard ball and throws it by the camera.,holds two lighter sticks next to a bowling ball.,1\n13557,anetv_b6VAlwv45q4,2085,The blue and gray guy are on a seesaw and the blue guy jumps at the gray guy. Both of the characters,The blue and gray guy are on a seesaw and the blue guy jumps at the gray guy.,Both of the characters,gold,finish their routine and spin around.,fall off the map.,set their keys on their bikes.,\"continue playing, and a guy holds the camera up to his legs.\",1\n13558,anetv_b6VAlwv45q4,9265,A man simulates throwing up in a close up view on camera. The man then,A man simulates throwing up in a close up view on camera.,The man then,gold,walks through an forest using a silver pole in iron man's hand.,talks into a microphone as an animated video game plays behind him in full screen.,moves a handle of the fire with his hands.,dives into the pit with a skateboard on his rope.,1\n13559,anetv_b6VAlwv45q4,2086,Both of the characters fall off the map. The guys fall down stairs fighting and we,Both of the characters fall off the map.,The guys fall down stairs fighting and we,gold,see the scoreboard and all are two again.,see it before officers lesson in the room with the tier up and the audience table.,see a few text at the end.,see the subscribe screen.,3\n13560,anetv_b6VAlwv45q4,2084,One character falls off the map and a third character joins the fight. The blue and gray guy are on a seesaw and the blue guy,One character falls off the map and a third character joins the fight.,The blue and gray guy are on a seesaw and the blue guy,gold,jumps at the gray guy.,stops when he starts a sport formation with heavy yellow jerseys.,move out of the shelter of the wooden stick.,skis with the bull clapping behind.,0\n13561,anetv_1stYB5_yR5k,18393,The man mix the paint and with a brush varnish all the shed. at the end the man,The man mix the paint and with a brush varnish all the shed.,at the end the man,gold,talks to the camera and shows the materials list.,gets into his car and brushes a curtain off the hall.,cuts his hair while jogging.,blows the liquid into the washer and walks away.,0\n13562,anetv_1stYB5_yR5k,18392,Man is talking to the camera cleaning a wooden shed and start painting it. the man,Man is talking to the camera cleaning a wooden shed and start painting it.,the man,gold,kneeling down in a room in clean clothes.,is talking to the camera while another man is running in.,mix the paint and with a brush varnish all the shed.,is showing playing the carpet that the house is using.,2\n13563,lsmdc0020_Raising_Arizona-57769,12167,An Old Hayseed with his hands in the air speaks up. Someone,An Old Hayseed with his hands in the air speaks up.,Someone,gold,contorts as the through green tears.,is tossing someone a sack.,moves around in a chair for a weight ring and the metal look on the ground.,holds the instructions and starts sharpening the right blade of the bread.,1\n13564,lsmdc0020_Raising_Arizona-57769,12156,\"The rumble builds, louder and louder, until it is snapped off by a click. The front door handle clicks open and someone\",\"The rumble builds, louder and louder, until it is snapped off by a click.\",The front door handle clicks open and someone,gold,stands from a seven - nine!,struggles to hold himself.,stands in the doorway.,can just overhears them.,2\n13565,lsmdc0020_Raising_Arizona-57769,12169,He is looking in shock at the tellers' counter. Someone,He is looking in shock at the tellers' counter.,Someone,gold,someone is looking on.,\"is momentarily abashed, but then brightens.\",leans out in the light of the surveillance car.,\"tosses a plastic bean, and drops it down in the sink.\",1\n13566,lsmdc0020_Raising_Arizona-57769,12161,As he stands up with the piece of paper. It,As he stands up with the piece of paper.,It,gold,is someone's picture of the farmers and mechanics bank.,\"placed a small card basket, which then selects garbage and rolls.\",folds his hands and throws him onto his back.,explains with one of the women in various shots demonstrating what to do.,0\n13567,lsmdc0020_Raising_Arizona-57769,12154,\"As we hear his footfalls on concrete steps, someone rises into frame, apparently climbing a stoop. The sun behind him throws him into silhouette; the extreme telephoto\",\"As we hear his footfalls on concrete steps, someone rises into frame, apparently climbing a stoop.\",The sun behind him throws him into silhouette; the extreme telephoto,gold,flickers across the gray cloud of cloud forming the base of the glass v. which the left man is leaning against to side down.,flattens him against the sun.,glow of new light shines across the door of the apartment building.,surface patrolman still rouses him.,1\n13568,lsmdc0020_Raising_Arizona-57769,12160,\"He bends down to pick it up but suddenly freezes, with a soft grunt of surprise. As he\",\"He bends down to pick it up but suddenly freezes, with a soft grunt of surprise.\",As he,gold,stands up with the piece of paper.,\"turns from the door, rumbling it down.\",\"swings for her and waits, she laughs and slaps down her knees.\",starts to open the door a few inches.,0\n13569,lsmdc0020_Raising_Arizona-57769,12158,\"The room is a complete shambles from the fight. After only a momentary pause at the door to take in the scene, someone\",The room is a complete shambles from the fight.,\"After only a momentary pause at the door to take in the scene, someone\",gold,\"opens his right hand at the left, sprints out of the room and tries to pull the door open.\",looks down at him.,slowly turns and faces him directly in the rear wall.,\"goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper.\",3\n13570,lsmdc0020_Raising_Arizona-57769,12153,\"A huge rumbling rippling red ball that fills the frame. As we hear his footfalls on concrete steps, someone\",A huge rumbling rippling red ball that fills the frame.,\"As we hear his footfalls on concrete steps, someone\",gold,is a electrical holographic solo.,\"rises into frame, apparently climbing a stoop.\",\"appears on the phone, his face reflected in the water.\",is suddenly aware that someone is asleep on the porch.,1\n13571,lsmdc0020_Raising_Arizona-57769,12155,The sun behind him throws him into silhouette; the extreme telephoto flattens him against the sun. The rumble,The sun behind him throws him into silhouette; the extreme telephoto flattens him against the sun.,The rumble,gold,\"gets louder, louder than just before the second group regains control.\",\"builds, louder and louder, until it is snapped off by a click.\",\"of his helmet flicks its head in the air as someone yells to someone, as he rubs someone's hair.\",is heard as they lift a few feet from the car.,1\n13572,lsmdc0020_Raising_Arizona-57769,12162,It is someone's picture of the Farmers and Mechanics Bank. They,It is someone's picture of the Farmers and Mechanics Bank.,They,gold,look at each other.,sports an eye with rounded lenses.,look up to show someone seated around.,are seen chatting & female colleagues.,0\n13573,lsmdc0020_Raising_Arizona-57769,12168,Someone is tossing someone a sack. He,Someone is tossing someone a sack.,He,gold,is looking in shock at the tellers' counter.,gets handcuffed from the broom.,fills his coat with basket.,rotates a plane inside.,0\n13574,lsmdc0020_Raising_Arizona-57769,12159,\"After only a momentary pause at the door to take in the scene, someone goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper. He\",\"After only a momentary pause at the door to take in the scene, someone goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper.\",He,gold,reaches across nearby tables.,puts it back to the rooftop repairing a glass partition.,\"bends down to pick it up but suddenly freezes, with a soft grunt of surprise.\",look a frightened creature in all directions.,2\n13575,lsmdc0020_Raising_Arizona-57769,12166,Someone holds a shotgun; someone holds a shotgun in one hand and someone. in his car seat in the other. Everyone,Someone holds a shotgun; someone holds a shotgun in one hand and someone. in his car seat in the other.,Everyone,gold,ducks behind the trees.,\"freezes, staring at people.\",\"looks up at someone, who stands behind him.\",\"makes his way down the snowy streets to the honda, who is still motionless as the car accelerates ahead.\",1\n13576,lsmdc0020_Raising_Arizona-57769,12165,As people bang in through the door. Someone holds a shotgun; someone,As people bang in through the door.,Someone holds a shotgun; someone,gold,drops inside a chain veil.,holds a shotgun in one hand and someone.,limps over to the bank.,quickly serves it all over.,1\n13577,lsmdc0020_Raising_Arizona-57769,12164,Someone reaches for his door. As people,Someone reaches for his door.,As people,gold,\"have fired another attack, someone falls.\",\"hurry round the corner, women pop out of the room and leave their cigarette butts out.\",bang in through the door.,turn it and hide behind the pillar.,2\n13578,lsmdc0020_Raising_Arizona-57769,12163,They look at each other. Someone,They look at each other.,Someone,gold,reaches for his door.,grabs the key from his pocket and rushes to him.,squeezes buttons and holds out a manuscript.,turns and sits pensively in his car.,0\n13579,lsmdc3044_KNOCKED_UP-20906,9737,Someone smiles indulgently as the doctor forces a smile and inserts the wand. An image,Someone smiles indulgently as the doctor forces a smile and inserts the wand.,An image,gold,appears on a monitor.,shows some of the women television set lying on the floor.,shows the red glowing circle of someone's arrival.,appears in the mist.,0\n13580,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14101,\"Buckbeak gallops across the quadrangle, flaps his wings, and takes off into the night sky. Silhouetted against the moon, he\",\"Buckbeak gallops across the quadrangle, flaps his wings, and takes off into the night sky.\",\"Silhouetted against the moon, he\",gold,presses pensively on his shield.,inspects his wife dance clothes.,carries someone away to safety.,toying with a flows focusing bird cage onto his head.,2\n13581,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14105,\"The great wheels turn as the clock chimes. As they run along the corridor towards the hospital wing, someone\",The great wheels turn as the clock chimes.,\"As they run along the corridor towards the hospital wing, someone\",gold,swigs as his friend.,\"reaches his hut, carrying snowy ax and tray.\",leads the penguins to a bunk bed.,comes out and closes the door.,3\n13582,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14104,They hurry upstairs past the huge clock. The great wheels,They hurry upstairs past the huge clock.,The great wheels,gold,turn as the clock chimes.,loom into the air plaza.,emerge from the tree.,are sent scrambling into an adjacent.,0\n13583,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14103,\"Pulling someone after her, someone runs across the quadrangle into the school. They\",\"Pulling someone after her, someone runs across the quadrangle into the school.\",They,gold,hurry upstairs past the huge clock.,gate and steps forward as someone walks into the area behind the crowd.,arrive at a bank's crest.,\"spins her a second look, then perches lightly on his leg.\",0\n13584,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14100,Someone climbs onto Buckbeak's back and smiles at someone. Buckbeak,Someone climbs onto Buckbeak's back and smiles at someone.,Buckbeak,gold,stretches out to cover her smile while grinning.,rises between someone's mighty feet.,\"gallops across the quadrangle, flaps his wings, and takes off into the night sky.\",holds his hand beside a lantern.,2\n13585,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14102,\"Silhouetted against the moon, he carries someone away to safety. Pulling someone after her, someone\",\"Silhouetted against the moon, he carries someone away to safety.\",\"Pulling someone after her, someone\",gold,averts his gaze.,runs across the quadrangle into the school.,curls her body behind her.,sits back on her seat.,1\n13586,anetv_G3cINUdHdGo,2920,\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he starts aiming at the dartboard with the darts in his hand. The man then throws three darts against the dartboard, two of which stick to the board, the man\",\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he starts aiming at the dartboard with the darts in his hand.\",\"The man then throws three darts against the dartboard, two of which stick to the board, the man\",gold,goes to retrieve a dart from the board and gestures with his fist and a smile.,picks up the ball and strikes it with it.,throws the darts across the board.,\"darts down the hatchback, leaves and then back down as the men try to get in.\",0\n13587,anetv_G3cINUdHdGo,2918,A man in a red shirt speaks and demonstrates how to throw darts against a dart board while three other people in red shirts watch behind him. A man in a red shirt,A man in a red shirt speaks and demonstrates how to throw darts against a dart board while three other people in red shirts watch behind him.,A man in a red shirt,gold,grabs darts and darts off a dart board and lands on his chest.,is waving his hands in the air above.,is skateboarding down the lane talking.,faces the camera and begins to talk while holding darts in his hand and while three men behind him watch.,3\n13588,anetv_G3cINUdHdGo,2919,\"A man in a red shirt faces the camera and begins to talk while holding darts in his hand and while three men behind him watch. The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he\",A man in a red shirt faces the camera and begins to talk while holding darts in his hand and while three men behind him watch.,\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he\",gold,shoots circles and turning off into the distance while others watch on him.,then runs back under his other hand.,flashes two kick at a man on the basketball team and avoid it.,starts aiming at the dartboard with the darts in his hand.,3\n13589,lsmdc1040_The_Ugly_Truth-8853,12283,\"As they embrace, someone turns someone around, and they lean against the side of the basket. He\",\"As they embrace, someone turns someone around, and they lean against the side of the basket.\",He,gold,holds up his hands with his eyes closed.,\"waves his hand dismissively at the pilot, who turns and looks the other way.\",offers a half - smile.,\"reflects on someone's face, then takes another sip.\",1\n13590,lsmdc1040_The_Ugly_Truth-8853,12282,Someone clasps her hands around his face and kisses him passionately. They,Someone clasps her hands around his face and kisses him passionately.,They,gold,\", someone flips through his dresses.\",smile and front shoulders shaking with horror.,\"share a kiss on the cheek, then goes.\",wrap their arms around each other.,3\n13591,lsmdc1040_The_Ugly_Truth-8853,12281,\"Someone looks away, and someone studies him for a moment. Someone\",\"Someone looks away, and someone studies him for a moment.\",Someone,gold,goes toward the ice again and someone attacks his men.,struggles to free himself and drags him to the knees.,clasps her hands around his face and kisses him passionately.,\"brush his fingers, someone holds up his hand to reveal a strand of dark brown hair, with the back of his head.\",2\n13592,lsmdc1040_The_Ugly_Truth-8853,12279,\"Someone's expression softens, and she looks away for a moment. She\",\"Someone's expression softens, and she looks away for a moment.\",She,gold,passes through her eyes and looks at the sidewalk ahead.,\"looks at someone and narrows her eyes, skeptically.\",\"stares at her pleadingly, then smiles back at him.\",squeezes his eyes shut and shakes her hand.,1\n13593,lsmdc1040_The_Ugly_Truth-8853,12280,\"He just stares at her. Someone looks away, and someone\",He just stares at her.,\"Someone looks away, and someone\",gold,moves his head to hers.,steps up beside him as she touches a stack of flowers.,studies him for a moment.,is leaning back to the counter in the bathroom.,2\n13594,lsmdc1048_Gran_Torino-92040,10852,\"Ignoring them, someone picks up two metal folding chairs. Sitting holding her cell phone, someone\",\"Ignoring them, someone picks up two metal folding chairs.\",\"Sitting holding her cell phone, someone\",gold,looks at her mother someone.,reaches into her badge and takes out a phone.,applies slinky to the era.,'s database watches a monk.,0\n13595,lsmdc1048_Gran_Torino-92040,10854,\"Someone goes over to someone, who's unfolding the chairs. Someone\",\"Someone goes over to someone, who's unfolding the chairs.\",Someone,gold,\"rolls her eyes and looks at someone, who beckons her over.\",starts dances down a street really fast.,\"and someone pick each other out, facing him.\",clings to one peaceful as someone trembles.,0\n13596,lsmdc1048_Gran_Torino-92040,10866,\"He steps on the cigarette. Having just pulled the cover over the car, he\",He steps on the cigarette.,\"Having just pulled the cover over the car, he\",gold,stares at someone incredulously.,\"comes to stand in the bench, looking at a large clock: 4 foot seven.\",arrives wearing another gorilla suit.,relaxes as he watches someone dejectedly out the window.,0\n13597,lsmdc1048_Gran_Torino-92040,10864,Someone pulls open the garage door. Someone,Someone pulls open the garage door.,Someone,gold,goes behind knocking on the window again.,slowly approaches the camaro in the cans.,emerges from the front door.,drops the cigarette and blows out smoke.,3\n13598,lsmdc1048_Gran_Torino-92040,10849,\"The Stars and Stripes flies on a pole outside someone's modest clapboard house. Inside, the mourners\",The Stars and Stripes flies on a pole outside someone's modest clapboard house.,\"Inside, the mourners\",gold,hold any binoculars and play with a girl.,help themselves to food.,at the door steps out.,are up on the farm staring overhead.,1\n13599,lsmdc1048_Gran_Torino-92040,10861,He spits and wanders away. Someone,He spits and wanders away.,Someone,gold,\"'s in the large garage, smoking.\",lifts his head and stands.,looks down the street between someone teasing someone.,stares at the cell.,0\n13600,lsmdc1048_Gran_Torino-92040,10848,Someone sits texting on her cell phone. The Stars and Stripes,Someone sits texting on her cell phone.,The Stars and Stripes,gold,hang from their above go up.,flies on a pole outside someone's modest clapboard house.,are online cursive checked.,appear near the side clearing.,1\n13601,lsmdc1048_Gran_Torino-92040,10851,\"Hearing someone come down, the boys quickly shut the trunk. Ignoring them, someone\",\"Hearing someone come down, the boys quickly shut the trunk.\",\"Ignoring them, someone\",gold,shuts it and heads out.,kicks out a scotch machine.,looks down at his melon - white notebook and eyes it over his test block.,picks up two metal folding chairs.,3\n13602,lsmdc1048_Gran_Torino-92040,10862,\"Someone's in the large garage, smoking. Beside her, with its cover partially pulled back\",\"Someone's in the large garage, smoking.\",\"Beside her, with its cover partially pulled back\",gold,is a pristine ford gran torino muscle car.,\", bounces on each bunk to look at it.\",is a sickly thanksgiving.,\"adorned with a goatee, cotton; someone, sits at and approached drunk as people walk up stage.\",0\n13603,lsmdc1048_Gran_Torino-92040,10868,\"Someone opens his front door to a teenager, someone. Someone\",\"Someone opens his front door to a teenager, someone.\",Someone,gold,comes to the storeroom reading a book.,pulls her from the shadowy steps at a raced and hears someone from a safe distance away.,slams the door and turns to the priest.,reluctant to stride out into the canal.,2\n13604,lsmdc1048_Gran_Torino-92040,10863,\"Beside her, with its cover partially pulled back is a pristine Ford Gran Torino muscle car. Someone\",\"Beside her, with its cover partially pulled back is a pristine Ford Gran Torino muscle car.\",Someone,gold,pulls open the garage door.,closes the trunk as someone bursts off.,pulls through to the road.,tastes a sun - shaped coffee product.,0\n13605,lsmdc1048_Gran_Torino-92040,10865,Someone drops the cigarette and blows out smoke. He,Someone drops the cigarette and blows out smoke.,He,gold,\"turns around, then hurries along a corridor and pulls a handgun.\",\"kisses him, then pushes him who pockets the gun.\",stands and stares at her.,steps on the cigarette.,3\n13606,lsmdc1048_Gran_Torino-92040,10856,Someone trudges back to her seat. Someone,Someone trudges back to her seat.,Someone,gold,walks out of the front door with his golden labrador.,faces someone and speaks.,sits by the wheel leaning into the passenger seat.,\"stares at someone, staring coldly at the gold.\",0\n13607,lsmdc1048_Gran_Torino-92040,10857,Someone walks out of the front door with his Golden Labrador. He,Someone walks out of the front door with his Golden Labrador.,He,gold,opens a pouch of chewing tobacco as he goes down the front steps.,crosses to the door.,gets out of bounds and runs away.,turns to the jewelry cabinet.,0\n13608,lsmdc1048_Gran_Torino-92040,10855,\"Someone rolls her eyes and looks at someone, who beckons her over. Someone\",\"Someone rolls her eyes and looks at someone, who beckons her over.\",Someone,gold,steps out of the building.,\"sips her wine, someone grabs the bong.\",trudges back to her seat.,continues on suppressed singing as someone smiles morosely at her baby.,2\n13609,lsmdc1048_Gran_Torino-92040,10867,\"Having just pulled the cover over the car, he stares at someone incredulously. He\",\"Having just pulled the cover over the car, he stares at someone incredulously.\",He,gold,slides open and adjusts his pants.,spots a crinkle stretching around the top of his hat.,smiles as someone beams at the band.,spits and walks out.,3\n13610,lsmdc1048_Gran_Torino-92040,10858,He opens a pouch of chewing tobacco as he goes down the front steps. Someone,He opens a pouch of chewing tobacco as he goes down the front steps.,Someone,gold,pops some tobacco in his mouth.,gets someone's cigarette and grabs it.,looks up at his father.,leans in front of the invisible wall.,0\n13611,lsmdc1048_Gran_Torino-92040,10859,Someone pops some tobacco in his mouth. Someone,Someone pops some tobacco in his mouth.,Someone,gold,\"stares at the house, eyes narrowed.\",catches up with someone.,\"bar someone takes a drink from his glass and hands it to someone, who gets in front of the limo.\",alien extends a pallid hand and picks him up against the van's door.,0\n13612,lsmdc1048_Gran_Torino-92040,10850,\"Someone follows someone, who wears a permanent frown. Someone\",\"Someone follows someone, who wears a permanent frown.\",Someone,gold,march the rifles and pry it open.,takes a drag then gives him an apple.,clouds in the sky above them.,heads down to the basement.,3\n13613,anetv_QLVgy-1ydr0,11681,The male leaves a black shoe behind. People,The male leaves a black shoe behind.,People,gold,\"folds the horses line up, and walks off.\",discuss in a circle.,stand and moves for a closer move.,play in a room and resumes talking.,1\n13614,anetv_QLVgy-1ydr0,11676,A guy messes with a bull. A bull,A guy messes with a bull.,A bull,gold,lets go of the bull.,pushes a man down.,runs over the bulls.,yells to a bull.,1\n13615,anetv_QLVgy-1ydr0,11679,The male gets up and his face is bloody. People,The male gets up and his face is bloody.,People,gold,walk on the field holding flags.,help the male and carry him away.,are playing at a table.,appears on the screen.,1\n13616,anetv_QLVgy-1ydr0,11677,The bull is lured into a pen and the gates are close. The male,The bull is lured into a pen and the gates are close.,The male,gold,gives a thumbs up and smiles.,hunter hoists the trio up on the track.,extends the letter to a small crowd and starts down again.,continues to advance while holding the crossbow.,0\n13617,anetv_QLVgy-1ydr0,11680,People help the male and carry him away. The male,People help the male and carry him away.,The male,gold,picks up some tennis racket and hits with a spatula.,catch blood off the floor and picks himself up.,leaves a black shoe behind.,picks up the boy and leaves.,2\n13618,anetv_QLVgy-1ydr0,11675,A male attaches a hollow stick on a bull whom chases him. A guy,A male attaches a hollow stick on a bull whom chases him.,A guy,gold,kicks a ball over to skis and crashes several times.,appears to throw animals in park.,messes with a bull.,chases it with her hand as the bushes after a bellow approach.,2\n13619,anetv_nh1GBPeyyMo,2297,A person's hands are seen cutting a piece of paper with scissors and then wrapping a box with paper. She,A person's hands are seen cutting a piece of paper with scissors and then wrapping a box with paper.,She,gold,cuts the paper with a hoop and replaces it with a ornament.,\"tapes down the present and ties it in a bowl, finishes by cutting the excess string and placing a tag on top.\",is then seen speaking to the camera and rubbing the nails with her hands.,pulls off the shoes and continues taping them down when they are done.,1\n13620,anetv_6tdIiKzMVcg,14977,We see a camera man right behind the table. A person,We see a camera man right behind the table.,A person,gold,walks in front of the camera.,makes a button down the guy's arm as it reaches him.,polish glasses and milk on his client.,puts shaving cream on his arm by stroking his hair.,0\n13621,anetv_6tdIiKzMVcg,14976,A host in a white suit narrates. We,A host in a white suit narrates.,We,gold,is in sumo outfits as people do a fenced event and quietly scream at people.,is giving the video in a interview about a white venue.,see a camera man right behind the table.,see a man go into a restaurant area.,2\n13622,anetv_m978SIFnHS8,9717,\"Dark nights are shown with lightning flashing through the sky. After, the video begins and several people\",Dark nights are shown with lightning flashing through the sky.,\"After, the video begins and several people\",gold,\"are shown as close as illustrations, on a large motor bike.\",are shown preparing to drive around in dirt cars.,are shown on a large boat sailing in the water.,emerge together with some other cities shown on stage.,2\n13623,anetv_m978SIFnHS8,9718,\"After, the video begins and several people are shown on a large boat sailing in the water. The weather begins to turn nasty and the people\",\"After, the video begins and several people are shown on a large boat sailing in the water.\",The weather begins to turn nasty and the people,gold,are coming after the camera.,continue to have a load that screws all the way to the side while the snow water reaches the end of the ocean.,have to hold on for dear life so they won't die.,are going down the water at an angle while moving left they stay on the snowy board followed by a clouds of dawn and giving,2\n13624,anetv_84uYA9rFoSw,19048,She displays more ballet moves. She,She displays more ballet moves.,She,gold,becomes happy in circles.,files with wallpaper before putting it down and putting them onto the camera.,snags in the code.,finishes with the low fifth position.,3\n13625,anetv_84uYA9rFoSw,19047,She then faces the camera talking. She,She then faces the camera talking.,She,gold,\"the man and blond, shown doing a tiny dance in the back lifts.\",darts from the window again.,continues to brush her hair while looking over to the camera.,displays more ballet moves.,3\n13626,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14529,\"Holding the record, she looks up with a smile. He\",\"Holding the record, she looks up with a smile.\",He,gold,\"kisses her mouth, and you can see that.\",takes the battered record sleeve from her.,closes her eyes tightly.,strides down the street and turns.,1\n13627,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14531,\"Wearing a wry smile, someone starts to dance. He\",\"Wearing a wry smile, someone starts to dance.\",He,gold,turns and offers someone his hand.,grins as everyone catches.,rests his head on her shoulder.,\"sits at the piano, still gazing tv through his glasses.\",0\n13628,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14533,He takes her by the hand and raises it above his head. Someone's building,He takes her by the hand and raises it above his head.,Someone's building,gold,writhes as he grabs a beer and looks at him through his phone.,is covered with dust.,\"swings open, and someone forces someone against a pillar.\",is dwarfed by the skyscrapers on the horizon.,3\n13629,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14532,\"Someone's pretty mother seems to watch from the photograph on the shelving unit, as someone cracks a smile and dances a cheeky little jive with someone. He\",\"Someone's pretty mother seems to watch from the photograph on the shelving unit, as someone cracks a smile and dances a cheeky little jive with someone.\",He,gold,\"waddles on to the dining table, then picks himself up and hurries her feet through the doorway.\",takes her by the hand and raises it above his head.,evidently someone by his hand.,\"eyes someone for the old man who sits alone, directly across the floor and stares up at her.\",1\n13630,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14530,He takes the battered record sleeve from her. She,He takes the battered record sleeve from her.,She,gold,pours the last box on the paper.,wraps it around his wrist as he runs to the table.,closes her eyes and smiles as he puts the record on.,\"ignores someone and stands by the entrance to his office, chatting with french servants.\",2\n13631,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14535,Someone sits at her desk as someone goes through dresses with another model. Someone,Someone sits at her desk as someone goes through dresses with another model.,Someone,gold,listens at the door.,taps the opened wall phone.,reverses up beside him.,swigs from a bottle.,0\n13632,anetv_UZBHdQZc0ZM,19550,Old woman is sitting on snowslide and its going down a snowy slope. old woman,Old woman is sitting on snowslide and its going down a snowy slope.,old woman,gold,is pulling the snow from the pole.,goes in a snowy mountain and paddling crosses a snowy hill with a pause pole on.,is in snowslide going down snow track.,is walking back down the slope holding a rag.,2\n13633,anetv_UZBHdQZc0ZM,19552,A man and a woman are grabing the old lady fom the back in a slide. different people,A man and a woman are grabing the old lady fom the back in a slide.,different people,gold,ride in the ocean in the tub while a boy walks through the mop.,are going left behind the counter with the other person lost in a field of other children.,are shown in the house and started with the women sitting in front of them.,are going down slope holding snowslides with a rope.,3\n13634,anetv_UZBHdQZc0ZM,19549,Men are holding snowslides from a deposit. old woman,Men are holding snowslides from a deposit.,old woman,gold,is sitting on snowslide and its going down a snowy slope.,is holding a toy picture.,stands on a slide.,is making bike supplies and cooking supplies.,0\n13635,anetv_UZBHdQZc0ZM,19553,Old women are sitting on woodn bench talking to the camera. old people,Old women are sitting on woodn bench talking to the camera.,old people,gold,are performing various moves in the room dancing.,are standing in a kitchen eating ice ice cream.,are sitting and standing in front of a camera posing for a picture.,\"are in swimming, playing a game of dodgeball.\",2\n13636,anetv_UZBHdQZc0ZM,19551,Old woman is in snowslide going down snow track. a man and a woman,Old woman is in snowslide going down snow track.,a man and a woman,gold,is building a race.,are holding toy tubes and is rollerblading through the snow.,are grabing the old lady fom the back in a slide.,are walking in a green car and skating on a highway off a street.,2\n13637,lsmdc3033_HUGO-14495,17688,Someone wrings her hands as she watches someone. Someone,Someone wrings her hands as she watches someone.,Someone,gold,picks up a jar of wine.,raises her left finger.,\"bangs in his seat of her coffee, adjusted her wrist, and flicks the long - switch button.\",punches a stuffed chair then drops into it and sobs.,3\n13638,lsmdc0051_Men_in_black-71107,2652,Some lights are starting to go out. Someone,Some lights are starting to go out.,Someone,gold,cuts several more pieces of fish.,sits on a ladder for a moment.,is about to jump up and down beside the doorknob.,\"looks to his partner, then to the screen.\",3\n13639,anetv_RzlX3Ai9AH4,2548,She holds the cans of paint as she talks about the finished product. The painted armoire,She holds the cans of paint as she talks about the finished product.,The painted armoire,gold,has a green paint closer to the large canvas with the paint.,is filling her hand with paint.,is shown a final time.,is addressed to someone.,2\n13640,anetv_RzlX3Ai9AH4,2546,\"An armoire is shown, and a woman is holding one of the drawers. She\",\"An armoire is shown, and a woman is holding one of the drawers.\",She,gold,sands down the wood before applying a coat of chalk paint with a brush.,shows a cleaned tool.,begins wrapping the present.,is putting a rectangular piercing called the wallpaper.,0\n13641,anetv_RzlX3Ai9AH4,2545,\"Text states the video will show how to chalk paint. An armoire is shown, and a woman\",Text states the video will show how to chalk paint.,\"An armoire is shown, and a woman\",gold,is preparing a poster about several sets of wall sex.,is mowing her lawn.,is already pointing at her thicker nails.,is holding one of the drawers.,3\n13642,anetv_RzlX3Ai9AH4,2547,She sands down the wood before applying a coat of chalk paint with a brush. She,She sands down the wood before applying a coat of chalk paint with a brush.,She,gold,uses a clear paint to trim her skin and face.,cut to pieces at the bottom of the stack.,absently using a white rag as she cuts the material.,holds the cans of paint as she talks about the finished product.,3\n13643,anetv_Mx-rOsiQTos,13507,We return to seeing the leaves being blown. We,We return to seeing the leaves being blown.,We,gold,see leaves blowing in the street.,walk around the far wall of the pool and wipe the cut.,see a building being opened with a hose.,add on together and added.,0\n13644,anetv_Mx-rOsiQTos,13504,We see a man get in riding leaf blower. We,We see a man get in riding leaf blower.,We,gold,see the leaves being blown on the ground.,see a person mowing the lawn.,see a ball flying inflatable in the woods.,see a man chopping a wood.,0\n13645,anetv_Mx-rOsiQTos,13506,We see a pipe on the machine. We,We see a pipe on the machine.,We,gold,return to seeing the leaves being blown.,see a man pulled over the ski carpet.,see a vacuum fashion over the screen.,go off in the yard as small drum walks in and out of scene.,0\n13646,lsmdc3003_40_YEAR_OLD_VIRGIN-1205,17263,\"As someone walks past a couch, she kicks the back. Someone\",\"As someone walks past a couch, she kicks the back.\",Someone,gold,takes off her hat and balances on the bed.,pulls up in robin's jersey.,sits up with mussed hair.,\"unrolls, he uses a handle for cover as a big pot opens.\",2\n13647,lsmdc3003_40_YEAR_OLD_VIRGIN-1205,17264,Someone sits up with mussed hair. Someone,Someone sits up with mussed hair.,Someone,gold,sits with someone in the dorm's front seat.,faces someone and someone.,walks past the hotel and makes a call.,stares off from a pensive.,1\n13648,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10805,\"She goes into the great hole, where tiny someone waves his wand and levitates decorations onto a tall Christmas tree. Someone\",\"She goes into the great hole, where tiny someone waves his wand and levitates decorations onto a tall Christmas tree.\",Someone,gold,finds people playing chess at one of the long polished tables.,hangs up on a branch and passes a few paces behind the net.,sits up in bed.,and flames ruffled in the breeze as they wander away from the tent.,0\n13649,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10803,\"Snow falls on to the tars and turrets of the school. Wearing a huge fur coat, someone\",Snow falls on to the tars and turrets of the school.,\"Wearing a huge fur coat, someone\",gold,snatches the satchel of cash from a briefcase.,\"rides out the the road in the car's backseat, and throws the gun on someone's head repeatedly.\",\"plots across the snow covered courtyard, dragging behind him an enormous christmas tree.\",chews a carrot with a slight smile and stares up at towering owls perched on a nearby tree.,2\n13650,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10806,Someone finds people playing chess at one of the long polished tables. She,Someone finds people playing chess at one of the long polished tables.,She,gold,walks down the brightly decorated hall to join them.,pats him in the gut with the box.,\"faces the building, in wonder, someone and the other recruits stand around watching, uneasy.\",approaches two fat men wearing an earpiece into an office.,0\n13651,anetv_CqAJxW84FkU,18743,A man in a green shirt and green hat is holding a large knife. He,A man in a green shirt and green hat is holding a large knife.,He,gold,starts sharpening a sharpener for his knife.,gets up and walks away.,starts cutting a piece of wood with the knife.,puts an earring into the hole.,2\n13652,anetv_CqAJxW84FkU,18744,He starts cutting a piece of wood with the knife. He,He starts cutting a piece of wood with the knife.,He,gold,puts the mask down and takes the place again.,puts it on as he takes a large knife and hammers it out of the spoon.,\"begins feeding the vegetables, cutting more vegetables for the ingredients.\",cuts the piece of wood in half.,3\n13653,lsmdc3078_THE_WATCH-36546,8701,\"Someone spots them through the smoke, their figures defined by a backdrop of amber flame. She\",\"Someone spots them through the smoke, their figures defined by a backdrop of amber flame.\",She,gold,\"flinches, as someone shines a flash of smoke.\",draws up his pen.,runs out from behind the police car and embraces her husband.,crashes out to the house and soars her mother's legs.,2\n13654,lsmdc3078_THE_WATCH-36546,8703,\"Someone holds her tight, closing his eyes. The group\",\"Someone holds her tight, closing his eyes.\",The group,gold,goes back together and sneezes.,faces the burning wreckage.,zoom together behind the wheel.,drives away down the grove of mountains.,1\n13655,lsmdc3078_THE_WATCH-36546,8702,She runs out from behind the police car and embraces her husband. Someone,She runs out from behind the police car and embraces her husband.,Someone,gold,\"holds her tight, closing his eyes.\",unzips the bottle and hurriedly escorts it on the road beneath him.,play increasingly consistently.,emerges with a safety flag and shoots looking at someone.,0\n13656,lsmdc3078_THE_WATCH-36546,8704,\"The group faces the burning wreckage. Nodding, someone\",The group faces the burning wreckage.,\"Nodding, someone\",gold,speeds toward the road.,extends a digital placement.,smiles at his friend.,turns and leaves the cart's seat with someone.,2\n13657,anetv_RVbejE3s3m4,10955,A couple of girls are seated in front of a table. One girl,A couple of girls are seated in front of a table.,One girl,gold,starts laughing up while a cameraman watches them.,begins talking and they are also hitting the drums and smiling while still laughing.,is playing a song and accordion.,is painting the other one's nails.,3\n13658,anetv_RVbejE3s3m4,10956,One girl is painting the other one's nails. She,One girl is painting the other one's nails.,She,gold,dips the last paint wet substance into it and wipes it down.,is looking down at the picture.,gets up and begins spraying it with a pink layer.,\"puts on several coats, then seals them with a topcoat.\",3\n13659,anetv_RVbejE3s3m4,6977,A hand is seen laying on a table with a person behind them grabbing objects and moving in fast motion. The person,A hand is seen laying on a table with a person behind them grabbing objects and moving in fast motion.,The person,gold,continues hitting the ball all along the ice while looking back to the camera.,continues using the cut and shows off the cylinder as well as camera.,paints the nails of the other and shows off the nails while moving in fast motion.,continues pushing it all along the board while the cat walks around the area.,2\n13660,anetv_5kIl4TspdR0,3079,You can see the tongue moving around never really being comfortable inside of the mouth. The man,You can see the tongue moving around never really being comfortable inside of the mouth.,The man,gold,is then shown close to the camera while showing how you can sweep the buzzer with his hand and splitting the homework.,\"continues having to do this thing, very very much for the camera.\",\"opens the bedroom windows and shows her cave, turned out of sight.\",\"continues to brush, toothpaste spewing down his lips a bit.\",3\n13661,anetv_5kIl4TspdR0,3078,They wear braces so they make sure to scrub all around very well. You,They wear braces so they make sure to scrub all around very well.,You,gold,can see the tongue moving around never really being comfortable inside of the mouth.,the manner and not knowing how to do it with any certain lighter by stepping further to try to get a colored rope out from,eyes leave the skid as someone races through the scene.,\"uses different shoes to complete their such protective work, when the cross appears to begin snow snow.\",0\n13662,anetv_5kIl4TspdR0,3077,Someone is brushing their teeth with an electric toothbrush. They,Someone is brushing their teeth with an electric toothbrush.,They,gold,scrub the dog hose into the towel.,wear braces so they make sure to scrub all around very well.,hit the ball back and forth.,\"rubbing the toothpaste back, trying to keep it together.\",1\n13663,lsmdc3076_THE_SOCIAL_NETWORK-35222,19313,The twins wait in the reception room. The twins,The twins wait in the reception room.,The twins,gold,yank out long - painful hands.,hide their eyes with their flashlights.,help someone up a run outside.,\"get up, fix their coats.\",3\n13664,anetv_kcPbEkv5UXE,11069,A lady walks up to watch the drummer play. The drummer,A lady walks up to watch the drummer play.,The drummer,gold,moves while playing the accordion.,goes down and describes the music.,plays a solo on the cymbal.,begins to play the drums.,2\n13665,anetv_kcPbEkv5UXE,11070,The drummer plays a solo on the cymbal. The drummer,The drummer plays a solo on the cymbal.,The drummer,gold,talks before he begins introducing himself.,ends the song and bows to the audience.,plays the accordion as the band plays.,starts deep shots into it.,1\n13666,anetv_kcPbEkv5UXE,11068,A girl plays a drum set in a city plaza for passing people. A lady,A girl plays a drum set in a city plaza for passing people.,A lady,gold,walks out on her side behind the door.,makes a lot of chalk on a tricycle.,walks up to watch the drummer play.,turns away from the skates.,2\n13667,anetv__wITx73-BXw,4123,We see girls on a field playing lacrosse and the camera flashes and lights up one girl on the field. We,We see girls on a field playing lacrosse and the camera flashes and lights up one girl on the field.,We,gold,see the yellow game master handed to to him.,see beach soccer and ladies walking across the field.,see the ending information screen.,pack on the field and other arrow is seen on the end of the field as we see a goal and leading to the teams,2\n13668,lsmdc3015_CHARLIE_ST_CLOUD-1023,15496,\"Meanwhile, someone lies asleep on his couch. He\",\"Meanwhile, someone lies asleep on his couch.\",He,gold,flails fearfully at someone who lies in the crow's nest.,\"licks his lips, then groggily lifts his head.\",picks up one of them.,holds a satellite dish over his shoulder.,1\n13669,lsmdc3015_CHARLIE_ST_CLOUD-1023,15493,\"Someone morosely sips his liquor. The next morning, boats languidly\",Someone morosely sips his liquor.,\"The next morning, boats languidly\",gold,\"driven away, passing past a military retirement home.\",sail past the coastal town.,speedily through the calm ocean as brown passengers barge out of the tank.,sit in a lifeboat.,1\n13670,lsmdc3015_CHARLIE_ST_CLOUD-1023,15489,\"He shakes his head, then yanks his hand from her grasp. Someone\",\"He shakes his head, then yanks his hand from her grasp.\",Someone,gold,blinks tearfully as she watches him turn away.,passes someone on the couch and shakes her head.,pats the side of someone's chest with both hands.,slips slowly from her grasp as the crowd disappears.,0\n13671,lsmdc3015_CHARLIE_ST_CLOUD-1023,15507,\"Someone steps into view and crouches down on one knee. Farther along, our view\",Someone steps into view and crouches down on one knee.,\"Farther along, our view\",gold,rolls over to reveal some rules for a black chess playing.,grinds down into space then soars to a lower hatch.,leads him into a dirt trunk.,peers over the headstone in memory of someone's father.,3\n13672,lsmdc3015_CHARLIE_ST_CLOUD-1023,15509,\"The engraved side remains hidden to us, but visible to him. Someone\",\"The engraved side remains hidden to us, but visible to him.\",Someone,gold,comes out with speed and assists her with her hair and is shaving her leg in a huge blue razor.,puts his hands on the bush and opens the palm of his left hand.,leans huddled against her father's headstone.,raises the gun so it can be seen under the paying.,2\n13673,lsmdc3015_CHARLIE_ST_CLOUD-1023,15508,\"Farther along, our view peers over the headstone in memory of someone's father. The engraved side\",\"Farther along, our view peers over the headstone in memory of someone's father.\",The engraved side,gold,of a square guard range.,nears the canoe then turns to his right.,\"remains hidden to us, but visible to him.\",of the writer staggers out without standing.,2\n13674,lsmdc3015_CHARLIE_ST_CLOUD-1023,15500,Someone lets the dog run by. Someone,Someone lets the dog run by.,Someone,gold,leaps on his brace.,tries through the binoculars as the herd gaining.,faces a shop window.,turns away revealing a pillar of smoke.,2\n13675,lsmdc3015_CHARLIE_ST_CLOUD-1023,15491,\"As someone leaves, he opens them again in a haunted stare. We\",\"As someone leaves, he opens them again in a haunted stare.\",We,gold,\"peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction.\",\"the robots go off, dancing round and round in a circle.\",someone gives with a resigned smile.,\"of chill, grumpy, someone turns to someone.\",0\n13676,lsmdc3015_CHARLIE_ST_CLOUD-1023,15506,Someone glowers as he strides among the graves. Someone,Someone glowers as he strides among the graves.,Someone,gold,steps into view and crouches down on one knee.,notices the note and someone hurls it in the undergrowth.,\"steps forward, looking at the pair of children.\",jogs out over the undercover woods.,0\n13677,lsmdc3015_CHARLIE_ST_CLOUD-1023,15497,\"He sets a coffee pot in the kitchen sink. As water fills the carafe, he\",He sets a coffee pot in the kitchen sink.,\"As water fills the carafe, he\",gold,opens a freezer and takes out a rumpled bag of grounds.,sucks the spaghetti in.,polishes the steaming pot with a spoon.,finds the plastic container over a blow - cut christmas cake.,0\n13678,lsmdc3015_CHARLIE_ST_CLOUD-1023,15501,Someone faces a shop window. Someone,Someone faces a shop window.,Someone,gold,drops his dubious gaze from the opposite.,\"creeps outside, a tall raised woman wearing a casual outfit.\",frowns at the window.,stands up as the bullpen slides down a dilapidated sidewalk.,2\n13679,lsmdc3015_CHARLIE_ST_CLOUD-1023,15505,\"Now, in the cemetery, tombstones stand in light and shadow. Someone\",\"Now, in the cemetery, tombstones stand in light and shadow.\",Someone,gold,looks at the key features.,watches someone hike his apartment.,douses himself in shallow water.,glowers as he strides among the graves.,3\n13680,lsmdc3015_CHARLIE_ST_CLOUD-1023,15498,\"As water fills the carafe, he opens a freezer and takes out a rumpled bag of grounds. He\",\"As water fills the carafe, he opens a freezer and takes out a rumpled bag of grounds.\",He,gold,\"dials a call, then catches up with him.\",ducks over to find someone combing his hair.,walks into the store and stands staring at it.,\"scowls at it, then gives it a shake.\",3\n13681,lsmdc3015_CHARLIE_ST_CLOUD-1023,15490,\"Someone blinks tearfully as she watches him turn away. With a resolute expression, he\",Someone blinks tearfully as she watches him turn away.,\"With a resolute expression, he\",gold,looks at her with open eyes.,sees her and sneaks into a chair.,steps further into the glade.,\"returns his gaze to someone, who stares vacantly.\",2\n13682,lsmdc3015_CHARLIE_ST_CLOUD-1023,15504,\"Someone stares at the neglected boat. Now, in the cemetery, tombstones\",Someone stares at the neglected boat.,\"Now, in the cemetery, tombstones\",gold,beads maintain their curved yellowish position.,stand in light and shadow.,sits beside someone at someone's bedside.,zoom into someone's perspective.,1\n13683,lsmdc3015_CHARLIE_ST_CLOUD-1023,15502,Someone pictures the Carniceria and the brewing squall. A view from his cottage,Someone pictures the Carniceria and the brewing squall.,A view from his cottage,gold,reads the mentor on a clear book.,shows the tall beach in a jar.,shows someone vanish as she walks away.,scratches the edge of a parked lifeboat.,2\n13684,lsmdc3015_CHARLIE_ST_CLOUD-1023,15499,\"Wearing green sweater, he browses a newspaper. Two officers\",\"Wearing green sweater, he browses a newspaper.\",Two officers,gold,step to a prominent spot in the dinning room.,feed their convoy.,push two old women by a window.,prepare dishes on their cake.,0\n13685,lsmdc3015_CHARLIE_ST_CLOUD-1023,15492,\"We peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction. In the caretaker's cabin, someone\",\"We peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction.\",\"In the caretaker's cabin, someone\",gold,sits alone and bleary eyed with a glass of whiskey.,checks his clock someone's bright dashboard.,paces past the closed tent.,lowers the white bible.,0\n13686,lsmdc0041_The_Sixth_Sense-67843,10563,\"A white woman in a torn white frilly dress - - tears soaking her face, hangs to the right. A small mixed race child in half pants,\",\"A white woman in a torn white frilly dress - - tears soaking her face, hangs to the right.\",\"A small mixed race child in half pants,\",gold,\"tag on neatly, abandoned the dirty chair wipes.\",rolls a heavy iron curtain to a table taunts the girl over a mattress.,\"ages, is smiling to someone.\",hangs to their left.,3\n13687,lsmdc0041_The_Sixth_Sense-67843,10562,\"A black man in britches and no shirt, face beaten to a pulp, hangs in the center. A white woman in a torn white frilly dress - - tears soaking her face,\",\"A black man in britches and no shirt, face beaten to a pulp, hangs in the center.\",\"A white woman in a torn white frilly dress - - tears soaking her face,\",gold,hands the back to the crowd.,hangs to the right.,punches and kicks someone in the face.,\"puts up her hand, looks at the object slung over her shoulder, then grabs someone's hand.\",1\n13688,anetv_CPnLc0MtBYc,11346,A boy stands on a track field. He then,A boy stands on a track field.,He then,gold,runs to the high jump and completes it.,stops jumping and runs across the field.,engages in a game of ice hockey.,rakes sand for lecturing boy.,0\n13689,anetv_CPnLc0MtBYc,15589,The young man run to the pole. The young man,The young man run to the pole.,The young man,gold,jumped over the pole and landed on the red mat.,mounts the balance beam before doing long jumps and bungee jump.,plays fence croquet while the man stands off the camera.,\"falls, goes through the finish flips, pulls green man fell and falls on the ground once again.\",0\n13690,anetv_n5xfkpQ8PWM,9277,The woman blows glitter papers from the palm of her hand. The sponsor of the clips,The woman blows glitter papers from the palm of her hand.,The sponsor of the clips,gold,are then placed in a brilliant pile of leafs.,shows her wearing still from the camera.,comes to a woman painting the cat's nails.,is introduced and displayed on the screen.,3\n13691,anetv_n5xfkpQ8PWM,9270,A woman smiles and cuts a wrapping paper with a scissor. The woman,A woman smiles and cuts a wrapping paper with a scissor.,The woman,gold,finishes braiding the hair while still holding the canvas.,places a teddy bear in a bowl.,grab some wrapping paper in wrapping paper.,folds paper through a paper needle.,1\n13692,anetv_n5xfkpQ8PWM,9272,A woman puts two crystal presents in a white and pink box. A woman,A woman puts two crystal presents in a white and pink box.,A woman,gold,tosses and got gift items.,with a necklace closes the cake and turn it off.,holds up a covered gift wrapped in silver wrapping paper.,sits in the hall and paints a piece of wood.,2\n13693,anetv_n5xfkpQ8PWM,9273,A woman holds up a covered gift wrapped in silver wrapping paper. A woman,A woman holds up a covered gift wrapped in silver wrapping paper.,A woman,gold,sits on the ground next to her.,places a jewelry box in a box.,lays out her bag with ice off the board.,spreads the cards together in cut paper and adds the gifts.,1\n13694,anetv_n5xfkpQ8PWM,9271,The woman places a teddy bear in a bowl. A woman,The woman places a teddy bear in a bowl.,A woman,gold,puts mashed eggs into the bowl.,puts two crystal presents in a white and pink box.,picks the fish up and places it back on the table.,walks into a kitchen.,1\n13695,anetv_n5xfkpQ8PWM,9276,\"The woman holds out stacked, wrapped gifts with her hands. The woman\",\"The woman holds out stacked, wrapped gifts with her hands.\",The woman,gold,sits down on the edge of the dinosaur.,stands up and turns around.,blows glitter papers from the palm of her hand.,holds sandwiches to an ice cream in a bar.,2\n13696,anetv_n5xfkpQ8PWM,9269,A woman wraps several Christmas gifts. A woman,A woman wraps several Christmas gifts.,A woman,gold,cuts gifts to a metal table by wrapping paper.,put on front a gift paper.,smiles and cuts a wrapping paper with a scissor.,speaks inside a shop that says gift dips.,2\n13697,anetv_n5xfkpQ8PWM,9275,The woman presents a gold bowl. The woman,The woman presents a gold bowl.,The woman,gold,\"holds out stacked, wrapped gifts with her hands.\",shows in some of the blow lettuce and has to put it in the oven.,lets the lemonade start gently.,mixes cake on a christmas tree.,0\n13698,lsmdc3026_FRIENDS_WITH_BENEFITS-1541,7766,\"She replaces the cover, glances outside and jogs out of the room in the opposite direction. Someone and his family\",\"She replaces the cover, glances outside and jogs out of the room in the opposite direction.\",Someone and his family,gold,sit amongst the street of cars.,arrive at a professional hotel overlooking the city.,occupy four of the five chairs around the table.,arrive on a piled top station.,2\n13699,lsmdc3026_FRIENDS_WITH_BENEFITS-1541,7765,\"Left alone, someone lifts away a top panel of the box and climbs out. She\",\"Left alone, someone lifts away a top panel of the box and climbs out.\",She,gold,\"pulls up off the lab floor, sets her magazine down and peers angrily from under a balustrade.\",opens it and catches him.,\"replaces the cover, glances outside and jogs out of the room in the opposite direction.\",attaches him to the spires.,2\n13700,lsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5193,\"The party continue their walk through the trees. Later, someone\",The party continue their walk through the trees.,\"Later, someone\",gold,rides his horse ready to the ground.,'s house clears the sidewalk.,rests her own ear against the headboard.,is helping someone up into her carriage.,3\n13701,lsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5192,Someone keeps her gaze averted from him. The party,Someone keeps her gaze averted from him.,The party,gold,continue their walk through the trees.,gets up and turns off.,looks to someone else as they kiss.,shows the star wars ship.,0\n13702,lsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5194,\"As the carriage draws away, someone stands watching it. Someone\",\"As the carriage draws away, someone stands watching it.\",Someone,gold,turns to see him grow ever smaller in the distance.,keeps her lips pursed as the smoke trails around her breasts.,reads the items on wheels.,saunters over and dodges the slab of someone's hand with long white apples.,0\n13703,anetv_Fr7rhb2Vw_k,9400,She then applies to wallpaper very carefully and trims it to fit perfectly. She,She then applies to wallpaper very carefully and trims it to fit perfectly.,She,gold,applies some more paper and gets it lined up.,stands onto the screen and plays ukulele out of the way.,finishes ticking to the new product and holds it up for it.,shaves the entrance and every man begins climbing into the next structure.,0\n13704,anetv_Fr7rhb2Vw_k,9398,She is then shown again speaking in front of a wall and giving instructions as to how to begin the process. The,She is then shown again speaking in front of a wall and giving instructions as to how to begin the process.,The,gold,woman speaks while she moves in to use ski as shows more.,is then shown mixing the glue required and applies it to a white wall.,violinist continues to play and speak to the camera as she continues exercising along the floor.,is confronted by the actions of the hag.,1\n13705,anetv_Fr7rhb2Vw_k,9399,The is then shown mixing the glue required and applies it to a white wall. She then,The is then shown mixing the glue required and applies it to a white wall.,She then,gold,\"paints the purple button with a cactus, and lights it, surrounded by powder.\",shows how to wrench the dough with a ribbon to make sure that it is n't fit.,applies to wallpaper very carefully and trims it to fit perfectly.,adjusts the mulch and paints a mark on the bottom of the shoe.,2\n13706,anetv_Fr7rhb2Vw_k,11686,He points out all the different tools he needs. A woman then,He points out all the different tools he needs.,A woman then,gold,shows how to hang wallpaper inside a house.,rides saddles on horses.,pulls out a wallpaper from the wall using a brush.,takes items off of the pumpkin and just takes her screwdriver to a small tray.,0\n13707,anetv_Fr7rhb2Vw_k,9396,Text is shown with regards to how to install wallpaper. A women,Text is shown with regards to how to install wallpaper.,A women,gold,shown ingredients and rinsing water are shown.,is standing in a hardware store and then shows you the various tools required for installation of the wallpaper.,is speaking to the camera and shows images of the man hitting the girl.,are seen speaking as well as bit and leads into a woman speaking into the camera.,1\n13708,anetv_Fr7rhb2Vw_k,9397,A women is standing in a hardware store and then shows you the various tools required for installation of the wallpaper. She,A women is standing in a hardware store and then shows you the various tools required for installation of the wallpaper.,She,gold,then shows how to must install.,works on the carpet and then demonstrates how to tinder a strip on the rug.,is putting them in a salad bowl.,is then shown again speaking in front of a wall and giving instructions as to how to begin the process.,3\n13709,anetv_Fr7rhb2Vw_k,9401,She applies some more paper and gets it lined up. The video,She applies some more paper and gets it lined up.,The video,gold,ends with every slip of paper laid on the board.,ends with text explaining.,closes with her giving some final advice.,can be seen panning.,2\n13710,anetv_Fr7rhb2Vw_k,11685,A man is standing inside a building. He,A man is standing inside a building.,He,gold,is putting a drum on his bicycle.,shows how to hit a hedge with a stick.,is using something on a rope.,points out all the different tools he needs.,3\n13711,anetv_AxaksczuL80,7185,A man puts lotion on his face with a brush. He,A man puts lotion on his face with a brush.,He,gold,then brushes the hair off and wipes it off.,begins playing his instrument while continuing to play.,is filling soap from the door.,begins shaving his beard with a razor.,3\n13712,anetv_AxaksczuL80,6624,A man holds two razors in his hands. He,A man holds two razors in his hands.,He,gold,adds them to the wood.,brushes shaving cream onto his face.,uses weights on the sill as he turns on a telescope.,takes a break to break a line aging to black and green flames.,1\n13713,anetv_AxaksczuL80,6625,He brushes shaving cream onto his face. He,He brushes shaving cream onto his face.,He,gold,shaves his beard with his finger.,walks over as he hands the ice cream to his father.,gives his hand a shake and says bye.,starts shaving the side of his face with a razor.,3\n13714,anetv_BH-kBRn84i8,7910,The man in white shirt is cutting the grass with lawn mower. The man,The man in white shirt is cutting the grass with lawn mower.,The man,gold,starts as moving looks at the camera.,plays and sits the real mower.,walked on the grass covered law.,is the electric mower and the camera is arched in brown grass.,2\n13715,anetv_BH-kBRn84i8,14717,A man wearing a hat is seen pushing a lawn mower across a yard of grass while moving back and fourth. He,A man wearing a hat is seen pushing a lawn mower across a yard of grass while moving back and fourth.,He,gold,sits down by himself along and ends by walking to the fence.,stops and starts swinging the mower around showing how to play a guitar.,cuts up several locations games and ends by walking towards it.,continues cutting the grass and looking back and motioning to the camera.,3\n13716,anetv_BH-kBRn84i8,7911,The man walked on the grass covered law. The man,The man walked on the grass covered law.,The man,gold,licks his lips repeatedly.,is shaving with the hammer style shave.,pulled back the lawn mower and then moved it forward and repeated it.,walked to the nearby table and talk to the bench.,2\n13717,lsmdc1062_Day_the_Earth_stood_still-100868,3813,People stare as he then reaches down with his other hand and touches the alien flesh to the officer's head. Power,People stare as he then reaches down with his other hand and touches the alien flesh to the officer's head.,Power,gold,as someone watches anxiously.,surges through the man's body.,tightening the metal bands around someone's lips.,appears by one figure and walks towards it.,1\n13718,lsmdc1062_Day_the_Earth_stood_still-100868,3812,\"He touches a hand to the police cruiser, activating all its systems. People\",\"He touches a hand to the police cruiser, activating all its systems.\",People,gold,peers through the undergrowth and falls back in the darkness.,\"passes through the large hole, we side of the highway.\",stare as he then reaches down with his other hand and touches the alien flesh to the officer's head.,are checked on two men who are watching someone.,2\n13719,lsmdc3012_BRUNO-4208,11891,\"Later, he leans against a bulletin board filled with celebrity photos. Angelina Jolie's\",\"Later, he leans against a bulletin board filled with celebrity photos.\",Angelina Jolie's,gold,puts the quaffle into his right palm.,a photo with someone's father at the beach.,has a black x over it.,\"lies behind him, gazing up at the painting.\",2\n13720,lsmdc3012_BRUNO-4208,11893,He points to someone Gibson. Someone,He points to someone Gibson.,Someone,gold,poses releasing a hair man.,converge around someone if.,throws down his marker.,\"nods politely and stares at his teacher, then dignified.\",2\n13721,lsmdc3012_BRUNO-4208,11892,Angelina Jolie's has a black x over it. Someone,Angelina Jolie's has a black x over it.,Someone,gold,\"tilts his head, checking out someone's.\",is an approving man.,crashes off the last web and stops.,\"sits on the horn, wide - eyed.\",0\n13722,lsmdc0013_Halloween-53964,7428,\"Still holding him up with one hand, the shape slams someone against the wall, holding him several feet off the floor. Someone\",\"Still holding him up with one hand, the shape slams someone against the wall, holding him several feet off the floor.\",Someone,gold,looks like what he has been watching about.,looks up to see the two front people.,struggles to get free.,grabs it from the tree.,2\n13723,lsmdc0013_Halloween-53964,7430,The shape lifts his other hand. It,The shape lifts his other hand.,It,gold,instantly pulls control of the door and turns to the crowd.,nearly pulls it out in front of him.,takes off.,holds the butcher knife.,3\n13724,lsmdc0013_Halloween-53964,7437,The ghost does n't answer. She,The ghost does n't answer.,She,gold,reaches out for the wrist position.,grabs someone's arm.,slides the sheets down from her body.,\"turns briefly, then starts to walk.\",2\n13725,lsmdc0013_Halloween-53964,7425,\"He steps out and grabs someone around the neck with an instantaneous lunge. Someone tries to jump away, but the shape\",He steps out and grabs someone around the neck with an instantaneous lunge.,\"Someone tries to jump away, but the shape\",gold,can't stop one.,has a firm hold on his neck.,waddles off his tail.,is still dragged and the teacher has come after him.,1\n13726,lsmdc0013_Halloween-53964,7420,He looks around the kitchen. In another cupboard he,He looks around the kitchen.,In another cupboard he,gold,finds a can of peanuts.,glances over with someone in the kitchen.,takes his captive inside.,heads back into the backdoor.,0\n13727,lsmdc0013_Halloween-53964,7432,\"The shape drives the knife deeply into someone's chest with a slamming thud, the other end of the knife stuck through the wall. Someone\",\"The shape drives the knife deeply into someone's chest with a slamming thud, the other end of the knife stuck through the wall.\",Someone,gold,continues as someone leaps over his head to scoop someone to the ground.,\"hangs there, impaled on the wall, eyes still open in horror, dead.\",\", or animal clinging to the plows and clamber hatch, begins to collapse below his feet with a dull white piece of grass.\",\"falls out of the armchair onto the green chair, as a woman withdraws blood from his hand.\",1\n13728,lsmdc0013_Halloween-53964,7429,Someone struggles to get free. The shape,Someone struggles to get free.,The shape,gold,lifts his other hand.,breaks away from someone.,\"gets out and walks away, satchel in hand.\",drops off a platform.,0\n13729,lsmdc0013_Halloween-53964,7417,Someone comes through the swinging doors. He,Someone comes through the swinging doors.,He,gold,grabs the letter and stands in his pajamas.,wears the amazing dress.,is almost looking for her.,opens refrigerator and takes out two beers.,3\n13730,lsmdc0013_Halloween-53964,7435,She hears someone enter the room but does n't look up. The shape,She hears someone enter the room but does n't look up.,The shape,gold,tries to pull the grate off of the door.,opens the door for her.,moves quickly through the shape.,stands in the doorway.,3\n13731,lsmdc0013_Halloween-53964,7422,\"Someone freezes, staring at the two doors. He\",\"Someone freezes, staring at the two doors.\",He,gold,hurries to the door and turns into the corridor.,\"looks surprised, then lifts the weight to his shoulders.\",walks to one of the doors and opens it.,climbs the stairs and comes to a stop.,2\n13732,lsmdc0013_Halloween-53964,7418,He opens refrigerator and takes out two beers. Someone,He opens refrigerator and takes out two beers.,Someone,gold,gathers the food and beers into his arms.,leaves appreciatively and removes a boy's head.,grins and watches him go.,proceeds to put the balls into the holes.,0\n13733,lsmdc0013_Halloween-53964,7410,Someone pulls someone up from the couch and they walk quickly up the stairs. She,Someone pulls someone up from the couch and they walk quickly up the stairs.,She,gold,walks to the window and glances out.,touches her neck.,drags her through the lobby.,pushes peers down to the curb and turns.,0\n13734,lsmdc0013_Halloween-53964,7421,In another cupboard he finds a can of peanuts. He,In another cupboard he finds a can of peanuts.,He,gold,\"tosses it at him, but opens the photograph first.\",steps to the door and looks outside.,takes a seat which he'd removed and pulls some notes carefully.,makes the note written into the wall.,1\n13735,lsmdc0013_Halloween-53964,7424,He turns from the door. He,He turns from the door.,He,gold,puts it and looks over.,closes the door as he steps inside.,steps to the other door and opens it.,looks up at the door then turns on the light.,2\n13736,lsmdc0013_Halloween-53964,7411,She walks to the window and glances out. Someone,She walks to the window and glances out.,Someone,gold,stands by the telephone.,lies on the ground.,glances around as she exits.,\"walks out on door, gazing intently at the powered cliffs.\",0\n13737,lsmdc0013_Halloween-53964,7423,He walks to one of the doors and opens it. He,He walks to one of the doors and opens it.,He,gold,turns from the door.,pulls out some letters.,looks to man and finds a purple call too.,presses his fingertips together.,0\n13738,lsmdc0013_Halloween-53964,7414,The only light is a candle illuminating the sheets as they move slowly up and down and from side to side. Empty beer cans,The only light is a candle illuminating the sheets as they move slowly up and down and from side to side.,Empty beer cans,gold,sit hidden from the wall.,leave a trail from the door to the bed.,\"appears on the guy's feet, as if in the warmth of underwear.\",sit inside a table as well as the dorm room.,1\n13739,lsmdc0013_Halloween-53964,7433,\"Someone hangs there, impaled on the wall, eyes still open in horror, dead. Someone\",\"Someone hangs there, impaled on the wall, eyes still open in horror, dead.\",Someone,gold,returns to the open line.,leaps onto two armed guards.,lounges in the bed smoking another cigarette.,drive down a sidewalk.,2\n13740,lsmdc0013_Halloween-53964,7439,\"Someone laughs at her own joke, then stops when she sees the ghost is motionless. Someone\",\"Someone laughs at her own joke, then stops when she sees the ghost is motionless.\",Someone,gold,\"looks forward and holds her wand up, sees it for a moment.\",turns around and looks.,takes a slip off a box of wrapped trash.,finds someone at the bar and stops.,1\n13741,lsmdc0013_Halloween-53964,7409,Someone grabs someone's hand and stands up. Someone pulls someone up from the couch and they,Someone grabs someone's hand and stands up.,Someone pulls someone up from the couch and they,gold,walk quickly up the stairs.,watch him in amazement.,hold each other and push him back.,chase each other over at a table.,0\n13742,lsmdc0013_Halloween-53964,7419,Someone gathers the food and beers into his arms. He,Someone gathers the food and beers into his arms.,He,gold,\"picks up another - a vase, notices something and holds it in.\",plops back in his seat.,looks into the phone at the bar as a band plays.,looks around the kitchen.,3\n13743,lsmdc0013_Halloween-53964,7426,\"Someone tries to jump away, but the shape has a firm hold on his neck. Then the shape\",\"Someone tries to jump away, but the shape has a firm hold on his neck.\",Then the shape,gold,pulls up to the bridge deck.,comes up with reverse and starts to go.,reaches out his hand and pulls himself to the floor before the sunlight.,lifts someone up off the floor.,3\n13744,lsmdc0013_Halloween-53964,7434,Someone lounges in the bed smoking another cigarette. She,Someone lounges in the bed smoking another cigarette.,She,gold,holds it up in front of her and watches her through.,hears someone enter the room but does n't look up.,aims the knife in the other direction.,\"continues enjoying her song, and she finishes pouring coffee.\",1\n13745,lsmdc0013_Halloween-53964,7427,\"He makes a guttural sound deep in his throat as the shape's hand closes tightly around his windpipe. Still holding him up with one hand, the shape\",He makes a guttural sound deep in his throat as the shape's hand closes tightly around his windpipe.,\"Still holding him up with one hand, the shape\",gold,\"reaches forward, sideways, rubbing his hands to his surface.\",is reloading for a gas skull.,\"slams someone against the wall, holding him several feet off the floor.\",moves slowly across the fire.,2\n13746,lsmdc0013_Halloween-53964,7436,The shape stands in the doorway. Someone,The shape stands in the doorway.,Someone,gold,\"smiles, smiles and spins, picks up two trays of whisk, and runs to his arms.\",\"sees someone standing nearby, muttering.\",looks at the ghost.,glances up as someone turns standing on.,2\n13747,lsmdc0013_Halloween-53964,7412,Someone stands by the telephone. Someone,Someone stands by the telephone.,Someone,gold,\"looks at the window, then back down where someone stands in the doorway.\",\"shrugs, turns away from the window and walks back to people sitting on the couch.\",pours as someone approaches someone.,\"takes a swig from the st, then glances at a desk.\",1\n13748,lsmdc0013_Halloween-53964,7415,Her hair is a mess and she is frustrated. Someone,Her hair is a mess and she is frustrated.,Someone,gold,takes the nurse from next to it.,\"smiles, hustles flops toward her.\",looks down at the locket.,grabs someone and pushes her down on the bed.,3\n13749,lsmdc0013_Halloween-53964,7413,\"Someone shrugs, turns away from the window and walks back to people sitting on the couch. The only light\",\"Someone shrugs, turns away from the window and walks back to people sitting on the couch.\",The only light,gold,is a candle illuminating the sheets as they move slowly up and down and from side to side.,\"playing out on the floor, following them.\",\"coming from the window someone him, and someone looks at someone too, lost in thought.\",\", but is looking at the phone.\",0\n13750,lsmdc0033_Amadeus-66951,15972,He goes on tearing the pages determinedly. A servant,He goes on tearing the pages determinedly.,A servant,gold,opens in his hands start to clean the kitchen table.,reaches down and shakes it.,brings a large cooking egg as two tomatoes approach.,opens the door to announce.,3\n13751,anetv_6YtaXJJKUKM,1975,A woman is seen speaking to the camera while a small fooseball table sits before her. The woman,A woman is seen speaking to the camera while a small fooseball table sits before her.,The woman,gold,continues speaking as she spins around the game occasionally and leads into her playing with another girl.,stops playing and looks around.,continues decorating her nails closely and speaking to the camera and putting it back together.,walks away that she is then shown speaking to the camera.,0\n13752,lsmdc3081_THOR-37855,15206,Someone smiles as he peruses images from Norse mythology. He,Someone smiles as he peruses images from Norse mythology.,He,gold,\"stops evacuating the house, a friend holding his doll - in - arms.\",pauses at an image of someone holding mjolnir.,joins the rest of the wedding guests in his market.,shows how expensive his cohorts's would fit.,1\n13753,lsmdc3081_THOR-37855,15208,\"Outside, someone sits in their idling research truck. She\",\"Outside, someone sits in their idling research truck.\",She,gold,\"looks at a true print, then rubs its head against the head of a car.\",proffers the red - bracelet box.,\"pinches her nose, then gives her another.\",\"watches as someone walks into a store, pet palace, across the street.\",3\n13754,lsmdc3081_THOR-37855,15204,\"She finally turns, and follows her friends. Back on Earth, someone\",\"She finally turns, and follows her friends.\",\"Back on Earth, someone\",gold,carries someone off with someone.,trips and calls over the barges with his equipment on.,places his sandwich over his hole.,uses a library computer.,3\n13755,lsmdc3081_THOR-37855,15203,\"Someone and the other men stand. They turn and leave, but someone\",Someone and the other men stand.,\"They turn and leave, but someone\",gold,puts his arms around her.,wears his long coat.,puts him back to him.,\"remains rooted, staring at someone.\",3\n13756,lsmdc3081_THOR-37855,15207,\"He pauses at an image of someone holding Mjolnir. Outside, someone\",He pauses at an image of someone holding Mjolnir.,\"Outside, someone\",gold,is striding toward the house.,checks his lunch hoe.,holds his rifle over his shoulder.,sits in their idling research truck.,3\n13757,lsmdc3081_THOR-37855,15205,\"Back on Earth, someone uses a library computer. He\",\"Back on Earth, someone uses a library computer.\",He,gold,\"crosses the room and selects a book from a cart, then puts it down and opens a thicker volume beside it.\",reveals a lacquer in a insert cradling a photo to the bench in front of their desks.,pulls the planks away from the wall.,removes the camp fire blazing.,0\n13758,anetv_Auy0KGsXAIg,14278,He is talking in front of a disassembled bike. He,He is talking in front of a disassembled bike.,He,gold,has been pulled boxes in and out of a wall to work out what he will do.,cuts a hoodie and puts something on the bike.,shows the different tools he needs to replace the chain.,comes on and talks.,2\n13759,anetv_Auy0KGsXAIg,1584,A man is seen speaking to the camera and leads into him holding up various tools and begins putting them on a bike. The man,A man is seen speaking to the camera and leads into him holding up various tools and begins putting them on a bike.,The man,gold,then grabs the pieces off of the tire and shows them in removing a tire from the car.,speaks to the camera as well as explaining how shaded proper tools are demonstrated against the baseboards.,is then seen cutting the man's hair and showing how to speed.,demonstrates how to properly piece together a bike and peddling the bike to show how it works.,3\n13760,anetv_Auy0KGsXAIg,14277,A man wearing a beanie is inside a room. He,A man wearing a beanie is inside a room.,He,gold,is playing the drums in front of a crowd.,is talking in front of a disassembled bike.,is polishing a boxing glove.,starts playing the bagpipes.,1\n13761,anetv_9khzc3a4zz0,10289,A woman is doing tricks with her jump rope. She,A woman is doing tricks with her jump rope.,She,gold,does a hand stand while jump roping.,jumps on a diving board a few times.,takes off and throws jumps from his water.,is then shown on the screen and the woman in the pen shirt has done and the girl is climbing up stairs doing some choreography,0\n13762,anetv_9khzc3a4zz0,10290,She does a hand stand while jump roping. She,She does a hand stand while jump roping.,She,gold,does a front flip while jump roping.,stands and lifts her belly as she creeps through the line before her.,continues to spin around spinning and twirling and doing different things and ends.,\", she catches up.\",0\n13763,anetv_9khzc3a4zz0,10291,She does a front flip while jump roping. She,She does a front flip while jump roping.,She,gold,sets her arms down and mimics all dance in control.,stands up at the end of the rope.,stops and walks forward.,celebrates several times and lands near the stage.,2\n13764,anetv_VO49rhXzhk4,11537,The woman wraps the book with the paper and tape. The woman,The woman wraps the book with the paper and tape.,The woman,gold,lays it out and taps herself on the floor.,wraps the paper around her nails.,talks to the camera whole holding the wrapped and ribboned book.,cuts the cellophane in another box.,2\n13765,anetv_VO49rhXzhk4,11534,Closeups of the necessary equipment for this operation are shown. The woman,Closeups of the necessary equipment for this operation are shown.,The woman,gold,places the polish tile onto the hands and talks.,wraps a book with tissue paper and tape.,begins to decorate the elliptical wall and finally wears a kilt and shows a client.,uses some concentration to describe the workout with the machine.,1\n13766,anetv_VO49rhXzhk4,11533,A woman's hands are shown wrapping something. The woman,A woman's hands are shown wrapping something.,The woman,gold,does and blow dry the hair.,wraps it around his torso.,talks to the camera.,touches the blunt paper and unwraps the flower.,2\n13767,anetv_VO49rhXzhk4,11536,The woman cuts paper to shape for the book. The woman,The woman cuts paper to shape for the book.,The woman,gold,comes back and put chair after.,wraps the book with the paper and tape.,in california places the land on the paper.,puts parchment paper on a colorful can to form the wet line on a different page.,1\n13768,anetv_VO49rhXzhk4,11535,The woman wraps a book with tissue paper and tape. The woman,The woman wraps a book with tissue paper and tape.,The woman,gold,tapes the chicken paper.,begins clipping her number with a piece of paper.,cuts paper to shape for the book.,appears and test the thick wrapping they.,2\n13769,anetv_Sd08rsPTroE,13038,He starts talking again to the camera. He,He starts talking again to the camera.,He,gold,is talking while sitting behind drums.,does several flips and crunches throughout the floor.,starts scraping the car on it.,puts the hand down.,0\n13770,anetv_Sd08rsPTroE,13036,A man starts talking to the camera. He,A man starts talking to the camera.,He,gold,picks up a piece of equipment.,is holding a rubik's cube on the desk and he's putting it in his mouth.,sprays some liquor in a sink.,is making a cake with a finger in the product.,0\n13771,anetv_Sd08rsPTroE,13040,He starts to play the drums. He,He starts to play the drums.,He,gold,continues to talk to the camera.,smiles as he plays the guitar.,turns in a korean class.,play when in the ring comes to join a story.,0\n13772,anetv_Sd08rsPTroE,13035,Words appear on the screen for a bit. A man,Words appear on the screen for a bit.,A man,gold,starts talking to the camera.,continuously swings water and casts.,clears a path with a stick.,is interviewed with a seal.,0\n13773,anetv_Sd08rsPTroE,13039,He is talking while sitting behind drums. He,He is talking while sitting behind drums.,He,gold,continues playing the drums and blowing leaves.,starts to play the drums.,explains how to play the violin.,is setting down the drums and cymbals.,1\n13774,anetv_Sd08rsPTroE,13037,He picks up a piece of equipment. He,He picks up a piece of equipment.,He,gold,ties the top of a rack.,is moving back to using the shovel.,starts talking again to the camera.,takes a piece of paper off the wall.,2\n13775,anetv_Sd08rsPTroE,16146,He is then seen sitting behind a drum set points to drums and begins playing. He,He is then seen sitting behind a drum set points to drums and begins playing.,He,gold,continue playing and looking off into the distance.,begins to speak on the instrument and begins playing back and fourth with another set of their drums.,continues playing while playing his flute and bowing to the camera.,pauses to speak to the camera as well as play more.,3\n13776,anetv_Sd08rsPTroE,13042,He plays the drums again. He,He plays the drums again.,He,gold,then plays the drums with his hands.,stops and puts the flute.,moves to a set of keys and.,talks to the camera for a final time.,3\n13777,anetv_Sd08rsPTroE,13041,He continues to talk to the camera. He,He continues to talk to the camera.,He,gold,stands up as he outlined.,plays the drums again.,continues to play his harmonica.,\"is drawing a tall window, where he goes missing a step, but in reaction.\",1\n13778,lsmdc1044_Pride_And_Prejudice_Disk_Two-89736,12586,\"In his night things, someone calmly opens the door. The messenger\",\"In his night things, someone calmly opens the door.\",The messenger,gold,hands him a letter.,\"gets both finished, looking at someone.\",boss nervously walks through the hallway and stops.,pays for the crowds outside an airport at a salon.,0\n13779,lsmdc1044_Pride_And_Prejudice_Disk_Two-89736,12587,The messenger hands him a letter. Someone,The messenger hands him a letter.,Someone,gold,\"passes the housekeeper his candle, then opens the letter.\",steps across a workshop.,eyes his senator's'.,hurries over to the brick floor and faces her friend.,0\n13780,anetv_QBI5ZH_cdik,7765,Men are doing motocross in a dusty path. people,Men are doing motocross in a dusty path.,people,gold,are in a motocross competition doing tricks on the dusty path.,are doing centers on their horses.,are and participate in a race track doing field event.,are going down a long street.,0\n13781,anetv_QBI5ZH_cdik,7764,Man is standing in front of the men in motorcycles holding a sign with numbers. men,Man is standing in front of the men in motorcycles holding a sign with numbers.,men,gold,are standing in front of a gate talking.,are doing motocross in a dusty path.,are playing shuffleboard on the rink.,are riding a wakeboard near behind them.,1\n13782,lsmdc0005_Chinatown-48273,17102,Someone goes back to the photographs. He,Someone goes back to the photographs.,He,gold,\"hears a scratching sound, apparently coming from just outside the outer door.\",stares after him and smiles.,is talking about materials to do.,crosses to someone who eyes him quizzically.,0\n13783,lsmdc0005_Chinatown-48273,17107,Someone heads toward the door. Someone,Someone heads toward the door.,Someone,gold,\"nods graciously, heads on into someone's office.\",slams down for a moment before pausing by his partner.,finds herself and locks the chamber.,pushes her way away from the open door.,0\n13784,lsmdc0005_Chinatown-48273,17106,\"The Secretary returns, sees the workman on the floor. Someone\",\"The Secretary returns, sees the workman on the floor.\",Someone,gold,undoes the thermos over his hand and meets his gaze.,heads toward the door.,hits him hard and sprints off.,stops to look back at the camera.,1\n13785,lsmdc0005_Chinatown-48273,17105,\"Workmen are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise. The Secretary\",\"Workmen are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise.\",The Secretary,gold,grabs the the file and flaps it down.,is pulling a goat down from the grass.,\"returns, sees the workman on the floor.\",peeps out and flashes through the peephole.,2\n13786,lsmdc0005_Chinatown-48273,17103,\"He hears a scratching sound, apparently coming from just outside the outer door. He\",\"He hears a scratching sound, apparently coming from just outside the outer door.\",He,gold,shakes the glasses of wine rolls out of the coffee cup.,\"moves quickly to it, hesitates, swiftly opens the door.\",hangs up his bag and helps someone toward his car.,has not been italian.,1\n13787,lsmdc0005_Chinatown-48273,17104,\"He moves quickly to it, hesitates, swiftly opens the door. Workmen\",\"He moves quickly to it, hesitates, swiftly opens the door.\",Workmen,gold,has forgotten his things on someone.,barges in through the door behind himself.,looks out in front of the van in a corner.,\"are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise.\",3\n13788,lsmdc0005_Chinatown-48273,17101,\"She gets up, annoyed, and goes into someone's inner office. Someone\",\"She gets up, annoyed, and goes into someone's inner office.\",Someone,gold,comes into the bathroom and stares directly into her mind for a moment.,leans into a wall with graduation paint and slim features.,goes back to the photographs.,blows the candles from the bed and looks across the room as the tall man covers his cigarette.,2\n13789,lsmdc3077_THE_VOW-35467,14262,\"Their warped figures reflected on its seamless, chrome like surface. In another flashback, someone\",\"Their warped figures reflected on its seamless, chrome like surface.\",\"In another flashback, someone\",gold,sits in her old saloon.,\"eats food with two small packets of chewing fruit, pushing it at the tiger.\",works a mound of clay on the table in an art studio.,takes a light in a mirror.,2\n13790,lsmdc3077_THE_VOW-35467,14263,\"In another flashback, someone works a mound of clay on the table in an art studio. Her pulled back hair\",\"In another flashback, someone works a mound of clay on the table in an art studio.\",Her pulled back hair,gold,pulls up from a nearby pillow as the younger girl stares at him.,is now shoulder length.,accompanies someone to the new york jet.,holds her arm down.,1\n13791,lsmdc3077_THE_VOW-35467,14265,\"With a frustrated look, she smacks the unfinished sculpture, then shoves the table away. Someone\",\"With a frustrated look, she smacks the unfinished sculpture, then shoves the table away.\",Someone,gold,enters and turns off the stereo.,bumps into a rock wall.,leaves vault and slips on.,rolls his eyes and touches his temple in contrast to the dim light.,0\n13792,lsmdc3077_THE_VOW-35467,14264,\"Her pulled back hair is now shoulder length. With a frustrated look, she\",Her pulled back hair is now shoulder length.,\"With a frustrated look, she\",gold,\"strains it into a box, and thrusts it through tissue paper.\",\"smacks the unfinished sculpture, then shoves the table away.\",takes a deep breath.,\"walks away, and she has to stoop down before her.\",1\n13793,anetv_Ip1EWQCXvRM,1731,A man speaks to the group and leads into them paddling down a river. The group,A man speaks to the group and leads into them paddling down a river.,The group,gold,continue to walk on the water.,continues washing the boats while speaking back and showing them off.,continues riding down the river showing close ups of them working and ending with a logo across the screen.,continues riding along the water and ends by giving it the water.,2\n13794,anetv_Ip1EWQCXvRM,1730,A small group of people are seen sitting in a raft with close ups of their feet and paddles are shown. A man,A small group of people are seen sitting in a raft with close ups of their feet and paddles are shown.,A man,gold,speaks to the group and leads into them paddling down a river.,is seen playing drums while another in a kayak behind them.,is then seen jumping on his boat talking to the camera while water skiing beside the canoe.,rides a snowboard into the water in several more clips as well as riding them around while others watch on the side.,0\n13795,lsmdc3042_KARATE_KID-18944,13505,\"Turning, he passes a man in a gray uniform, standing guard beneath a red flag. Someone\",\"Turning, he passes a man in a gray uniform, standing guard beneath a red flag.\",Someone,gold,addresses nods to the mutant.,lands on the ground.,scrabbles aim at the post.,\"mopes down the sidewalk, passing between two cramped rows of parked bicycles.\",3\n13796,lsmdc3042_KARATE_KID-18944,13516,\"The boy turns and someone beckons him with a finger. Frowning, someone\",The boy turns and someone beckons him with a finger.,\"Frowning, someone\",gold,\"closes his eyes, staring, and smiles at the offscreen someone.\",twists back to face him and kisses him on the forehead.,picks up the toothpaste cap on his way to the bathroom.,hangs up the phone.,2\n13797,lsmdc3042_KARATE_KID-18944,13513,\"Looking around, the maintenance man spies a toothpaste cap on the sink. He\",\"Looking around, the maintenance man spies a toothpaste cap on the sink.\",He,gold,averts his gaze as she walks down the grassy aisle.,shows him and brushes himself along the shoulder of his parka.,\"picks it up, takes careful aim.\",lifts a taser from his mouth and shoots a coin at the kitchen computer.,2\n13798,lsmdc3042_KARATE_KID-18944,13514,\"He picks it up, takes careful aim. It\",\"He picks it up, takes careful aim.\",It,gold,walks straight from the clearing.,disappears into the night's darkness.,\"sprawls across the top of the cliff, below someone's out zone map.\",hits someone in the neck.,3\n13799,lsmdc3042_KARATE_KID-18944,13492,\"In a cafeteria, someone holds a combination tray and bowl in one hand. With the other, he\",\"In a cafeteria, someone holds a combination tray and bowl in one hand.\",\"With the other, he\",gold,struggles to serve himself food with chopsticks.,glances around and studies the photo of the blonde someone.,\"opens the wall, revealing an expanse of bed within.\",heads into his own study.,0\n13800,lsmdc3042_KARATE_KID-18944,13498,Someone leads him to a counter protected by a glass barrier. She,Someone leads him to a counter protected by a glass barrier.,She,gold,hands her tray to a cafeteria worker.,\"nods at us broadly, who puts his hand behind her head and looks at her with an ornamental gesture.\",staggers to his feet.,lifts the zipper with his hand as she steals a drink.,0\n13801,lsmdc3042_KARATE_KID-18944,13506,\"Cars pack a four - lane artery. Nearby, dozens of other locals\",Cars pack a four - lane artery.,\"Nearby, dozens of other locals\",gold,get led up the hill.,spin around as people approach amnesia fish and watch on the side.,join all the witches at a fire.,perform graceful steps and gestures in unison.,3\n13802,lsmdc3042_KARATE_KID-18944,13507,\"Nearby, dozens of other locals perform graceful steps and gestures in unison. Now, someone\",\"Nearby, dozens of other locals perform graceful steps and gestures in unison.\",\"Now, someone\",gold,takes out an elegant chair as someone reads it.,meets two detectives down the graveyard.,carries a toolbox to the apartment building's entrance.,joins his friends in front of a white sart - tam - machine.,2\n13803,lsmdc3042_KARATE_KID-18944,13515,It hits someone in the neck. The boy turns and someone,It hits someone in the neck.,The boy turns and someone,gold,beckons him with a finger.,peeks out in the end.,follows between the boys again.,spots his son walking away.,0\n13804,lsmdc3042_KARATE_KID-18944,13499,The girl grins sweetly and leaves. Someone,The girl grins sweetly and leaves.,Someone,gold,\"watches her go, with a peaceful smile, and wanders in her general direction.\",turns back and faces him with a coy smile.,stops him with a pensive gaze.,\"stares at him, then returns his gaze to the door of a modest room.\",0\n13805,lsmdc3042_KARATE_KID-18944,13510,\"With a barely perceptible shake of the head, someone enters the cerulean - tiled bathroom. Someone\",\"With a barely perceptible shake of the head, someone enters the cerulean - tiled bathroom.\",Someone,gold,\"tugs on the handle bars, wipes her face in rags, drags herself open.\",\"sits in his seat, asleep.\",glares down at the girl then stands.,sneaks a peek at the man.,3\n13806,lsmdc3042_KARATE_KID-18944,13495,\"She gets a tray and bowl for herself. Using her chopsticks, she\",She gets a tray and bowl for herself.,\"Using her chopsticks, she\",gold,fills his bowl with noodles.,kneels and ties them together.,admires an apron and lacy blue gown.,removes the lid and fixes it on the chain again.,0\n13807,lsmdc3042_KARATE_KID-18944,13501,\"As someone obeys, someone bumps his shoulder. Mrs. Po\",\"As someone obeys, someone bumps his shoulder.\",Mrs. Po,gold,glances at the set.,moves forward decorating the room's rim.,sends someone in the opposite direction.,watches someone lift the stone door.,2\n13808,lsmdc3042_KARATE_KID-18944,13504,\"Someone lumbers down the front steps and shuffles glumly to the gate. Turning, he\",Someone lumbers down the front steps and shuffles glumly to the gate.,\"Turning, he\",gold,\"passes a man in a gray uniform, standing guard beneath a red flag.\",finds an tracking camera sitting on her.,finds a double - shot rolled up and starts to go.,grabs the pen and follows her onto the flatbed truck.,0\n13809,lsmdc3042_KARATE_KID-18944,13493,\"With the other, he struggles to serve himself food with chopsticks. A hand\",\"With the other, he struggles to serve himself food with chopsticks.\",A hand,gold,appears on a sweaty mannequin.,strokes one of his braids.,walks to the tray.,reaches against the fish pack.,1\n13810,lsmdc3042_KARATE_KID-18944,13491,\"With an embarrassed pout, someone turns away. In a cafeteria, someone\",\"With an embarrassed pout, someone turns away.\",\"In a cafeteria, someone\",gold,holds a combination tray and bowl in one hand.,is at someone's bedside.,wipes someone's earpiece with his burmese finger.,looks up with a witch in a dance house.,0\n13811,lsmdc3042_KARATE_KID-18944,13508,\"In the living room of 305, someone practices martial - arts drills, uided by an instructor on tv. Someone\",\"In the living room of 305, someone practices martial - arts drills, uided by an instructor on tv.\",Someone,gold,chases after someone as she sleeps on the sofa.,drops the wooden ball back into the tunnel and moves many times from the floor.,peeks in through the open door.,\"dashes through swings onto one side, blocking one of someone's widely out plants.\",2\n13812,lsmdc3042_KARATE_KID-18944,13496,\"Using her chopsticks, she fills his bowl with noodles. Someone\",\"Using her chopsticks, she fills his bowl with noodles.\",Someone,gold,sits and watches as they flash across the street.,'s mouth hangs open as he irritably approaches the register.,hands the dog to someone.,allows a humble smile.,3\n13813,lsmdc3042_KARATE_KID-18944,13502,\"Mrs. Po sends someone in the opposite direction. Now, as students\",Mrs. Po sends someone in the opposite direction.,\"Now, as students\",gold,make their way toward a large stone ferry.,step into the studio pool.,climb over a mountainside.,file out from the school.,3\n13814,lsmdc3042_KARATE_KID-18944,13503,\"Now, as students file out from the school. Someone\",\"Now, as students file out from the school.\",Someone,gold,\"sits up at his goateed friend, clutching his long hair behind his back.\",lumbers down the front steps and shuffles glumly to the gate.,studies someone and heads to the church.,\"opens a suitcase, revealing a delicate cut knee - length dress.\",1\n13815,lsmdc3042_KARATE_KID-18944,13494,A hand strokes one of his braids. It,A hand strokes one of his braids.,It,gold,shows the oil and the knife.,shows a small child with a beard on wei.,thoughtfully kisses his forehead.,'s the pretty violinist.,3\n13816,anetv_yinXvETACC4,4414,A host is seen speaking to the camera and leads into a trainer speaking with others exercising behind her. More shots of people exercising on bikes,A host is seen speaking to the camera and leads into a trainer speaking with others exercising behind her.,More shots of people exercising on bikes,gold,are shown and ends with the trainer walking through and talking.,are shown while the camera's movements are shown again.,are shown as well as the camera following their movements.,\"are shown in snowy landscapes, flipping and leads into the people performing impressive jumps while using the shoes and looking around.\",0\n13817,anetv_U0IJmOHoa1M,11284,The cricket team of Sri Lanka is playing against another country. the cricketers,The cricket team of Sri Lanka is playing against another country.,the cricketers,gold,are spread over a table writing expectant photographs.,are shown from the scene to the street.,are called a green run.,are playing a competitive game in the field.,3\n13818,anetv_U0IJmOHoa1M,11289,The match goes on full swing as the batsmen score four runs. The fielder,The match goes on full swing as the batsmen score four runs.,The fielder,gold,\"runs to catch the ball after the batsman hits it high, almost catching the ball to make him clean bold.\",king performs another couple of steps.,shoots the other man back and runs in the end while trying to score.,gives up and gets away after chasing the dogs.,0\n13819,anetv_U0IJmOHoa1M,11285,The cricketers are playing a competitive game in the field. The Sri Lanka team,The cricketers are playing a competitive game in the field.,The Sri Lanka team,gold,is leaning away from the quidditch flag.,goes out by their time.,comes closer to each team and make the scores.,is represented by the blue uniform.,3\n13820,anetv_U0IJmOHoa1M,11288,The video shows different cricket matches taking place where Sri Lanka is playing against teams from different countries. The stadium,The video shows different cricket matches taking place where Sri Lanka is playing against teams from different countries.,The stadium,gold,raises high on the cork yet another recorded replay of one of the balls.,shows some slow the two teams between two girls of forty instructing groups of soccer players.,is filled with spectators cheering for the cricketers.,applauds and dislodge player scores and his croquet kick closeup player sheepishly shoots the ball close to the center of the goal box which rockets,2\n13821,anetv_U0IJmOHoa1M,11287,The batsman scores four runs as the bowler throws an overhand ball. The video,The batsman scores four runs as the bowler throws an overhand ball.,The video,gold,shows different cricket matches taking place where sri lanka is playing against teams from different countries.,ends with the man opening reappears on the screen and throw 3 a goal.,counts off a man in red bowling clips bowling pins and hits.,ends with the closing credits shown on the screen.,0\n13822,anetv_U0IJmOHoa1M,11286,The Sri Lanka team is represented by the blue uniform. The batsman,The Sri Lanka team is represented by the blue uniform.,The batsman,gold,continues to use the players's hands to break up some parts of the wig and puts it back in his pocket.,scores four runs as the bowler throws an overhand ball.,practices on sets of the soccer.,returns the winning serve.,1\n13823,lsmdc1010_TITANIC-77567,16678,\"She blinks, then gazes at him. Someone\",\"She blinks, then gazes at him.\",Someone,gold,\"stares at her and opens his mouth, as if to speak, then slaps her face.\",sweeps her brow and pushes it away.,\"stalks forward, his pistol still sweaty.\",wipes her brow and turns away.,0\n13824,anetv_-4WdzYpCJPU,1222,A man is standing at a table holding a bow in his hand talking. He then,A man is standing at a table holding a bow in his hand talking.,He then,gold,goes outside and shoots an arrow at a target.,shoots the bow and arrow.,demonstrates how to sharpen the knife.,stacks the symbols with ink.,0\n13825,lsmdc1027_Les_Miserables-6244,727,Someone seals a folded letter with wax. She,Someone seals a folded letter with wax.,She,gold,climbs down the figure as he walks up in her home.,\"heads in a pile of piles, paper, test and passports.\",runs out to the garden and slots the letter in the railings.,looks behind his ruined waling.,2\n13826,lsmdc1027_Les_Miserables-6244,730,It's addressed to someone. Someone,It's addressed to someone.,Someone,gold,tries to restrain his brother.,points to a book.,has been restrained to it.,opens the letter and reads it.,3\n13827,lsmdc1027_Les_Miserables-6244,728,She runs out to the garden and slots the letter in the railings. Someone,She runs out to the garden and slots the letter in the railings.,Someone,gold,straightens one - fitting suit and walks out of the way with the photo.,emerges from the shadows and takes the letter.,smiles as she wags her finger at her.,laughs and leans back in her arms.,1\n13828,lsmdc1027_Les_Miserables-6244,729,Someone emerges from the shadows and takes the letter. It,Someone emerges from the shadows and takes the letter.,It,gold,is the camisole - someone.,'s addressed to someone.,collapses on the shoulder.,rises and falls with a slow - sigh.,1\n13829,lsmdc1027_Les_Miserables-6244,726,Someone puts a candlestick in her bag. Someone,Someone puts a candlestick in her bag.,Someone,gold,sweeps over and sets up seat screens.,puts a dutifully in his pocket.,reaches the controls and stares off.,seals a folded letter with wax.,3\n13830,lsmdc1027_Les_Miserables-6244,731,\"Rain pours down, soaking the cobbled street. Someone\",\"Rain pours down, soaking the cobbled street.\",Someone,gold,\"counts from the remaining citizens, men of troopers and policemen who tumble backwards on ground ironing.\",arrives in the rear - room.,\"slowly walks through the darkness, soaked to the skin.\",looks down as a guy reaches out.,2\n13831,lsmdc0050_Indiana_Jones_and_the_last_crusade-70228,8312,\"Someone is giving it careful study while he dabs the lump on the back of his head with an ice pack. Someone, wearing a bathrobe,\",Someone is giving it careful study while he dabs the lump on the back of his head with an ice pack.,\"Someone, wearing a bathrobe,\",gold,emerges from a balcony pew his tiny husband.,sits in front of the piano.,leans over to study the impression.,sits in a commercial parlor office.,2\n13832,lsmdc0050_Indiana_Jones_and_the_last_crusade-70228,8313,\"Someone, wearing a bathrobe, leans over to study the impression. Someone\",\"Someone, wearing a bathrobe, leans over to study the impression.\",Someone,gold,sits dons her straw hat.,\"remains on the spot, watching from below.\",backs wearily up behind them.,lowers the ice pack from his head and looks at someone.,3\n13833,lsmdc0011_Gandhi-52559,8036,The camera is on a row of sandals by the door - -. It,The camera is on a row of sandals by the door - -.,It,gold,\"tries to grab someone, but someone closes the door.\",are all run out a fire escape from an adjacent door.,pans to the room.,rushes the board and tries to reach it.,2\n13834,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12611,\"He staggers to the marble sink and leans on it. Looking down, he\",He staggers to the marble sink and leans on it.,\"Looking down, he\",gold,sees the skin on his hands begin to bulge and bubble.,sees the coin inches above his head.,\"finds someone still, gazing at us in surprise, then gives us wide.\",kicks a chair nearby.,0\n13835,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12608,They look at their thick sludge suspiciously. They,They look at their thick sludge suspiciously.,They,gold,head as they pin them down.,join someone in a suitcase.,fly in an arc.,put the hairs into the potion.,3\n13836,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12613,\"As he watches, he gradually turns into podgy someone. He\",\"As he watches, he gradually turns into podgy someone.\",He,gold,\", someone turns away and dashes down someone.\",lifts his hand and touches his beefy face with plump fingers.,roars into the kitchen.,staggers alone as shadows jutting out.,1\n13837,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12614,\"He turns and sees someone coming out of the cubicle, transformed into fat - faced, dumpy someone. They\",\"He turns and sees someone coming out of the cubicle, transformed into fat - faced, dumpy someone.\",They,gold,stare at each other.,steps off the corridor when a stone passes by.,hurry to the top as someone watches the boys leave someone's friend's wheelchair.,disappear into the hall toward the brothers.,0\n13838,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12610,Someone drops his glass and clutches his stomach in agony. He,Someone drops his glass and clutches his stomach in agony.,He,gold,staggers to the marble sink and leans on it.,tucks him out of his throat.,gets away with his cane and peers downward.,\"removes a jet from the egg, hauls it over his head and bottle down his face.\",0\n13839,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12609,\"Clinking glasses, they all drink at once. Someone\",\"Clinking glasses, they all drink at once.\",Someone,gold,\"turns around, mixing the smoking drink.\",takes a swig and heads for the nearest cubicle.,strolls the forth sip.,removes his spectacles and the customer steps away.,1\n13840,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12607,She hands one to someone and one to someone. They,She hands one to someone and one to someone.,They,gold,\"fight over someone, then a ring of flame which goes for someone and she kicks her way to her feet.\",drive along the road.,look at their thick sludge suspiciously.,use handfuls of raw meat to set aside on a crate.,2\n13841,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12612,\"Looking down, he sees the skin on his hands begin to bulge and bubble. Someone\",\"Looking down, he sees the skin on his hands begin to bulge and bubble.\",Someone,gold,\"lifts the weight briefly, then turns around and shifts his weight.\",takes the seat beside someone on someone.,\"drops his teeth three times, his teeth clenched in pain.\",looks into the mirror.,3\n13842,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12606,People hide as people appear with armfuls of cake. They,People hide as people appear with armfuls of cake.,They,gold,see the floating cakes and grab them.,are standing dying by tables.,fight over the smashed stone.,\"emerge in a stunning beauty, direct their chins, and begin a run.\",0\n13843,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12605,\"She holds up the cakes. Followed by someone, someone\",She holds up the cakes.,\"Followed by someone, someone\",gold,\"peers around a statue in the corridor, makes sure the coast is clear, and lifts his crooked wand.\",is smiling about what she is.,studies someone 'diary.,nods to a tall guy wearing red wig.,0\n13844,anetv_lGvI5pyjpFg,7943,A young girl is seen standing behind a table squeezing limes while another washes dishes in the background. The girl,A young girl is seen standing behind a table squeezing limes while another washes dishes in the background.,The girl,gold,walks up to the sink to begin washing the dishes.,continues washing the dishes near the sink while continuing to speak to the camera.,stirs mushrooms in a palette and pours down ingredients into water.,continues juicing the fruit and walks towards the camera then back again.,3\n13845,lsmdc1015_27_Dresses-79758,308,\"Later, someone, still looking unhappy, hangs the dresses back in the closet. On a sunny day, someone\",\"Later, someone, still looking unhappy, hangs the dresses back in the closet.\",\"On a sunny day, someone\",gold,arrives at someone 'apartment.,stands outside looking anxious.,approaches the packages on the side of the seats and throws it to someone.,and her family are out of an ambulance.,0\n13846,lsmdc1015_27_Dresses-79758,311,\"Later, he and someone are scanning the bar codes on items for the wedding list. He\",\"Later, he and someone are scanning the bar codes on items for the wedding list.\",He,gold,scans some china penguins.,begins bouncing it and smiling.,checks the empty tools.,slides a contact lens into someone's eyes.,0\n13847,lsmdc1015_27_Dresses-79758,306,\"He looks awkward at catching her off guard, looking sad and vulnerable. They\",\"He looks awkward at catching her off guard, looking sad and vulnerable.\",They,gold,\"hold up two, each giving a warning glance.\",\"sit opposite one another, squirming in uncomfortable silence.\",stop her from falling.,drive through a large snow - covered road.,1\n13848,lsmdc1015_27_Dresses-79758,310,Someone becomes suspicious as someone stands blocking the doorway. Someone,Someone becomes suspicious as someone stands blocking the doorway.,Someone,gold,is vacuuming and dancing.,approaches the huge hatch and starts out.,cleans a sample of his hair.,bursts out the flames.,0\n13849,lsmdc1015_27_Dresses-79758,309,\"On a sunny day, someone arrives at someone 'apartment. Someone\",\"On a sunny day, someone arrives at someone 'apartment.\",Someone,gold,leads someone through the store.,becomes suspicious as someone stands blocking the doorway.,puts a sheet over her son.,\"arrives, an overcoat and sleeveless shirt and a bright black collar.\",1\n13850,anetv_lDJpGI4BZ8k,12795,The man plays his harmonica and takes breaks to speak. The man,The man plays his harmonica and takes breaks to speak.,The man,gold,continues playing the guitar while another walks behind and plays guitar.,finishes and walks back to the camera.,plays the violin and turns back to playing.,stop playing and talks to the camera.,3\n13851,anetv_lDJpGI4BZ8k,12131,A man walks into frame and holds up a harmonica. He then,A man walks into frame and holds up a harmonica.,He then,gold,begins taking two puffs of the instrument while looking away.,plays the accordion while looking off into the distance.,clips the cards and a drawings around a picture as well as making others laugh.,begins playing the instrument and moving his hands around.,3\n13852,anetv_lDJpGI4BZ8k,12794,\"He shows us a harmonica, and talks. The man\",\"He shows us a harmonica, and talks.\",The man,gold,talks to the camera while picking it up.,takes the flute and plays the saxophone.,plays his harmonica and takes breaks to speak.,walks into the room wearing purple and black tape.,2\n13853,anetv_lDJpGI4BZ8k,12793,A man enters waving his arms and pointing at the camera. He,A man enters waving his arms and pointing at the camera.,He,gold,\"is mounts as he thrusts his hips, then stops and performs his moves.\",runs a accordion in electric drum and begins it to take it off the drums at several fast pace.,reaches down for frame and has to throw the baton and end up throwing it on the white floor.,\"shows us a harmonica, and talks.\",3\n13854,anetv_lDJpGI4BZ8k,12797,The man throws his arms in the air. The man,The man throws his arms in the air.,The man,gold,lets go of the disc and falls.,triumphantly lifts another metal.,finishes and walks away.,starts doing flips on the floor and still watching.,2\n13855,anetv_lDJpGI4BZ8k,12132,He then begins playing the instrument and moving his hands around. He,He then begins playing the instrument and moving his hands around.,He,gold,continues to play the instrument while moving around and looking out the camera.,continues moving along the instrument while pausing to speak to the camera.,pauses to speak to the camera and continues playing on the harmonica.,lands back and fourth again while pausing to speak to the camera.,2\n13856,anetv_xbcP38aF5Ok,14375,Other men are outside talking and laughing and then man with the red hair is gathered with friend and has a chip in his nose. He and his friend next to him,Other men are outside talking and laughing and then man with the red hair is gathered with friend and has a chip in his nose.,He and his friend next to him,gold,as they all went away.,slap the guy in front of him.,trying to rake his leaves in the sand.,are trying one to put his gun down.,1\n13857,anetv_xbcP38aF5Ok,14373,\"A man with red some what spiky hair grabbed another boy by the shirt and the boy walked away, the man went after him but then quickly turned back around. The red spiked hair man\",\"A man with red some what spiky hair grabbed another boy by the shirt and the boy walked away, the man went after him but then quickly turned back around.\",The red spiked hair man,gold,got sliced by a white backdrop.,is then on the court practicing flips and stuff.,twirled and threw makes grab on the other boy celebrate.,threw another javelin over after him to the field.,1\n13858,anetv_xbcP38aF5Ok,4141,The man does flips and shows a man speaking to a teacher in a class. The boys,The man does flips and shows a man speaking to a teacher in a class.,The boys,gold,walk to their parts side as they congratulate each other.,shoot more shots of cameras as well as leading into more shots.,run around the school and outside and speak to one another.,break a routine to join a different jump.,2\n13859,anetv_QbhMOqg9Tmg,14001,Women are insisde a bathtub shving her legs with ceam and water. women,Women are insisde a bathtub shving her legs with ceam and water.,women,gold,are laughing in front of a mirror.,are using quilt to dance in public.,are also puting the clothing.,get up and start eating wearing bikinis.,0\n13860,lsmdc3038_ITS_COMPLICATED-17239,8728,He and someone share an awkward smile. She,He and someone share an awkward smile.,She,gold,faces forward and chuckles.,hands her the stoop.,stands and gives a deep look.,follows someone at someone.,0\n13861,lsmdc3038_ITS_COMPLICATED-17239,8727,\"Now, someone drives his car. Someone\",\"Now, someone drives his car.\",Someone,gold,makes an occasional call.,stops the car and rolls down his window.,sits at a table.,intercepts someone's bonnet.,1\n13862,lsmdc3037_IRON_MAN2-16257,10466,\"He uncovers a blueprint and studies it. Later wearing welding goggles, someone\",He uncovers a blueprint and studies it.,\"Later wearing welding goggles, someone\",gold,welds pieces of metal together.,enters the bedside desk.,rests the goblet atop his canopy.,puts his scraps in a bag.,0\n13863,lsmdc3037_IRON_MAN2-16257,10465,\"In his father's work area, someone thumbs through diagrams and plans. He\",\"In his father's work area, someone thumbs through diagrams and plans.\",He,gold,poses in a circle.,steps back down the wheelchair.,uncovers a blueprint and studies it.,tilts his head and shows his brow.,2\n13864,lsmdc3037_IRON_MAN2-16257,10467,\"Later wearing welding goggles, someone welds pieces of metal together. Someone\",\"Later wearing welding goggles, someone welds pieces of metal together.\",Someone,gold,and someone descend to the wall marked the ruined chamber of the network.,readies himself to shield.,stops welding and lifts the goggles above his forehead.,smiles as and places a tiny alien on the boat's scale.,2\n13865,anetv_pX-ik8n_eNQ,4211,The man waits for the other man to get back. One player,The man waits for the other man to get back.,One player,gold,knocks the man over someone's point of view.,leans over the register and claps for him.,gets to the end of the bar.,hits the ball when it almost falls on the floor.,3\n13866,anetv_pX-ik8n_eNQ,1459,\"Two young men play ping pong front to front in an indoor facility. Then, one of the man\",Two young men play ping pong front to front in an indoor facility.,\"Then, one of the man\",gold,fall to another individual who serves the ball with the other girl.,goes to the side of the tennis table to continue playing.,grabs the ball and throws it in the sand.,begins fighting the other woman while other other competitors watch him to turn back and play.,1\n13867,anetv_pX-ik8n_eNQ,4209,Two men are playing table tennis. The ball,Two men are playing table tennis.,The ball,gold,is lifted into the air which is thrown to the ground.,throws up into purple cups.,flies off the table to the side at one point.,hits the ball back and forth.,2\n13868,anetv_pX-ik8n_eNQ,1460,\"Then, one of the man goes to the side of the tennis table to continue playing. The ball\",\"Then, one of the man goes to the side of the tennis table to continue playing.\",The ball,gold,hit the net and fall to the floor.,returns working in the room at the same time once more.,\"drops down near him, and does a few tilt ups.\",is aimed facing his teammate.,0\n13869,anetv_pX-ik8n_eNQ,4210,The ball flies off the table to the side at one point. The man,The ball flies off the table to the side at one point.,The man,gold,swings and grabs the lawn.,waits for the other man to get back.,steps up and shows off the finished piece.,serves the boy again.,1\n13870,anetv_8UJ5PGzu1PE,5565,A man lays a Coca Cola bottle on a bundle of hay. The man,A man lays a Coca Cola bottle on a bundle of hay.,The man,gold,puts the hose into a parked truck.,stops exercising and opens his mouth.,shots an arrow from a bow.,grabs the shovel and continues skateboarding.,2\n13871,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13776,As he peers over side. We,As he peers over side.,We,gold,lumbers uneasily as someone rolls on his back.,start moving before he does.,get it through a fitting glass window.,see him considerable impressive.,1\n13872,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13777,We start moving before he does. We,We start moving before he does.,We,gold,tilt to frame him from the waist downward and follow close behind him.,are on the screen.,watches the girl walk back and forth toward the camera.,see the camera.,0\n13873,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13779,\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he steps past a tiny cellar window and we pan and tighten in close on it, into. Their noses are flat against the glass; their cheeks touch; their window\",\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he steps past a tiny cellar window and we pan and tighten in close on it, into.\",Their noses are flat against the glass; their cheeks touch; their window,gold,have turned in place.,is n't quite big enough to hold both their heads.,is open and nearer.,is in half with one hand.,1\n13874,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13778,\"We tilt to frame him from the waist downward and follow close behind him. As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he\",We tilt to frame him from the waist downward and follow close behind him.,\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he\",gold,begins to trim it and peers out his gap.,\"steps past a tiny cellar window and we pan and tighten in close on it, into.\",reaches under the door of a window and peers inside the marble chamber.,\"mows her around, his travels heels on marley's back.\",1\n13875,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13773,She is in profile as before. We,She is in profile as before.,We,gold,start to follow the line up.,\"are squeezing their eyes shut, breathing gasps.\",are alone shot someone on the pitch as they rush forward.,slows to a stop.,0\n13876,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13775,\"He sits back, tugging unconcernedly at the line. Then he\",\"He sits back, tugging unconcernedly at the line.\",Then he,gold,slaps the ass - with the clothe.,\"throws a flip through it, then knocks the board against the water.\",leans over to see what's wrong.,\"charges, struggles up the horse, and throws him up in the air.\",2\n13877,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13783,\"He starts down the rustling coal - heap, helping someone down. They\",\"He starts down the rustling coal - heap, helping someone down.\",They,gold,have achieved the cellar floor.,\"runs out, leaving the lawn below as he catches her in a puddle on the sidewalk.\",splits down all together.,stops speaking to someone more than another man had come to his cell house.,0\n13878,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13771,\"Someone is happy to let her mouth fall open and let out a gasp. We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her,\",Someone is happy to let her mouth fall open and let out a gasp.,\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her,\",gold,is painfully wire of the thread on her leg.,soars down toward it's flickering horns.,has stopped and startled at the rapid end.,drifts her long hair across her throat.,3\n13879,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13780,Their noses are flat against the glass; their cheeks touch; their window is n't quite big enough to hold both their heads. It is on the ground; we,Their noses are flat against the glass; their cheeks touch; their window is n't quite big enough to hold both their heads.,It is on the ground; we,gold,are still stare at it.,don't see their chins.,can barely hear the gate's engine.,just hear the voice of the telephone.,1\n13880,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13772,\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her, drifts her long hair across her throat. She\",\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her, drifts her long hair across her throat.\",She,gold,goes to see someone reading at him at the sidewalk.,starts to feed her.,furtively soars into the sea.,is in profile as before.,3\n13881,lsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13781,It is on the ground; we don't see their chins. They,It is on the ground; we don't see their chins.,They,gold,write at the perimeter of a table.,go water once more.,swim around on each side of the herd.,look towards the departed someone.,3\n13882,anetv_UIH5arBo3-Y,10181,The man pauses for a second. The man,The man pauses for a second.,The man,gold,takes the table and walks away from the camera.,talks while the camera pans to a person filming the step instruction.,finishes his song and stops.,dismounts on the board and begins talking.,2\n13883,anetv_UIH5arBo3-Y,10180,An older man with glasses and gray hairs sits and sings as he plays the guitar. The man,An older man with glasses and gray hairs sits and sings as he plays the guitar.,The man,gold,pauses for a second.,strum a drum while he plays.,moves quizzically to the interviewer with his violin.,plays the piano again.,0\n13884,anetv_UIH5arBo3-Y,10182,The man finishes his song and stops. We,The man finishes his song and stops.,We,gold,see how to do this song.,see the man singing and then teaches him to talk again.,see the ending title screen with a cat on it.,run away from the mirror.,2\n13885,anetv_pMDFkrK0KRc,6270,He is wearing a pair of black glasses. He,He is wearing a pair of black glasses.,He,gold,takes off the glasses and applies contact lenses.,is carrying a large skillet and begins to pour it into a steel pan.,is using a lawn mower to cut the grass.,is playing an accordian.,0\n13886,anetv_pMDFkrK0KRc,8664,\"Then, the man takes off his glasses and take a contact lens with his finger, then he puts again his glasses. After, the man\",\"Then, the man takes off his glasses and take a contact lens with his finger, then he puts again his glasses.\",\"After, the man\",gold,takes onto the rag and start pulling the ice to the castle.,\"takes off his glasses, then open his eye with two fingers and put the contact lens.\",cleans the ground attempt takes the beach and then we see the sheds of a board on the beach.,puts two slices on the bar.,1\n13887,anetv_pMDFkrK0KRc,8665,\"After, the man takes off his glasses, then open his eye with two fingers and put the contact lens. Next, the man\",\"After, the man takes off his glasses, then open his eye with two fingers and put the contact lens.\",\"Next, the man\",gold,put the contact lens in the other eye.,puts the lens up in tissue paper with white contacts.,\"stack a dial, and put his ear with his right hand then produces the water.\",thrust the hair on the branch and pulled it into position.,0\n13888,anetv_pMDFkrK0KRc,6269,A man is talking to the camera. He,A man is talking to the camera.,He,gold,is talking to the camera.,is seated in a room hitting the boy.,is wearing a pair of black glasses.,is scooping out a pumpkin.,2\n13889,lsmdc0046_Chasing_Amy-68686,13124,Someone picks through her food. People,Someone picks through her food.,People,gold,\"rolls across the couch, shifting her jaw.\",sit at a booth.,warm up in laundry.,are shaving on her bare legs.,1\n13890,lsmdc0046_Chasing_Amy-68686,13123,Someone watches him go and exits. Someone,Someone watches him go and exits.,Someone,gold,picks through her food.,starts to go.,descend the stairwell and two carriages pass by a quieter room.,serves breakfast together and drinks.,0\n13891,anetv_RHb_nF11Scc,8418,He is trying to remove a splinter from someone's toe. He,He is trying to remove a splinter from someone's toe.,He,gold,stands inside a rain - drenched warehouse.,opens the door for the archbishop from the front entrance.,picks up the coat lid and enters halfway through drawer.,continues working until the splinter is removed.,3\n13892,anetv_RHb_nF11Scc,17655,Man is standing in front of a woman's foot. the man,Man is standing in front of a woman's foot.,the man,gold,sprays a hookah and blows out smoke.,is kneeling on the floor and lifting a woman's left arm free.,rubs sunscreen on the man's leg.,is cutting the woman's nails.,3\n13893,anetv_RHb_nF11Scc,8417,\"A man is inside a room, holding a foot in his hands. He\",\"A man is inside a room, holding a foot in his hands.\",He,gold,pours the ball into a large box.,\"is running, dancing and twirling the batons.\",starts playing and stops to talk to the camera.,is trying to remove a splinter from someone's toe.,3\n13894,anetv___c8enCfzqw,18449,\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she roll the brush downwards and upwards. She\",\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she roll the brush downwards and upwards.\",She,gold,\"show the carved tree, then put the needle and started braiding brush.\",rearranges the steps to the list of what they'd need to do.,styled her hair by brushing and combing it to give more volume.,sat on the floor and then brushed off the hair hair and her sandals.,2\n13895,anetv___c8enCfzqw,18448,\"The lady sat at the center of the studio with her wet hair, she put a white cream on her hand then rub it on her hair. The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she\",\"The lady sat at the center of the studio with her wet hair, she put a white cream on her hand then rub it on her hair.\",\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she\",gold,roll the brush downwards and upwards.,did the more to walk away.,the comb on under her flutter.,did so long back before only the man on her hair began.,0\n13896,anetv___c8enCfzqw,18447,\"A lady in black jacket is posing for the camera, then a man with medium length hair is shown, the man touched her hair to check on it, then the girl blow dry her hair. The lady sat at the center of the studio with her wet hair, she\",\"A lady in black jacket is posing for the camera, then a man with medium length hair is shown, the man touched her hair to check on it, then the girl blow dry her hair.\",\"The lady sat at the center of the studio with her wet hair, she\",gold,put a white cream on her hand then rub it on her hair.,sway again.,pushed her hand up.,places a cookie screen.,0\n13897,anetv_XeRiPVEZ6pY,1069,A man is playing an accordian with a piano onstage before a crowd. He,A man is playing an accordian with a piano onstage before a crowd.,He,gold,continues to play the saxophone and fight it.,bounces and dances lightly as he plays for the audience.,walks back down the video and begins playing the violin.,begins performing some kind of martial arts before the performance.,1\n13898,anetv_XeRiPVEZ6pY,16484,The guy stops playing the accorion. The guy,The guy stops playing the accorion.,The guy,gold,points to the audience and orchestra.,points towards the tattoo artist.,sits up and sits his microphone.,makes a poster for his bike.,0\n13899,anetv_6LrY7uMj8Kg,1968,Three men sitting by the counter are sitting watching tv and then ladies in cheerdancing outfit started dancing as the men stare at them. The ladies,Three men sitting by the counter are sitting watching tv and then ladies in cheerdancing outfit started dancing as the men stare at them.,The ladies,gold,dance as they dance circles like men dancing in a hall.,take their shoes up and hug their arms around the other.,\"started dancing, raising their arms up swinging their bodies.\",finish and look at each other with shirtless sequences while watching them.,2\n13900,anetv_3TxZTZEEg44,1723,A student with shades is now in the video as he and the instructor further help to explain the video as the student shows how to return serve the balls. The instructor,A student with shades is now in the video as he and the instructor further help to explain the video as the student shows how to return serve the balls.,The instructor,gold,is now in a blue shirt and explaining more in the video and where to get more free lessons.,ends with the men showing martial artists standing on a mat on their shoulders and speaking to each other.,kicks the player on the left side of the court.,continues on the notes while the instructor talks.,0\n13901,anetv_3TxZTZEEg44,1721,A grey title screen with white letters and artwork show who the host and the video series is about. Footage,A grey title screen with white letters and artwork show who the host and the video series is about.,Footage,gold,overtakes the gymnast perform then the crowd calls the applause.,is finally shown on the screen with the scene of the video holding a small towel.,talk than pretend they are talking about the pumpkins before the video.,is shown with two players playing tennis.,3\n13902,anetv_3TxZTZEEg44,1724,The instructor is now in a blue shirt and explaining more in the video and where to get more free lessons. A white screen,The instructor is now in a blue shirt and explaining more in the video and where to get more free lessons.,A white screen,gold,is shown with a text intro with several scenes of a man's hand jumping on a city in the end.,appears with a red arrow in a circle and black letters showing where to get more videos.,appears with champion types that this is facing naming fun in total time.,comes up and comes to a shot by the name of the man's name.,1\n13903,anetv_3TxZTZEEg44,1720,A man in a red shirt at an outdoor tennis court is giving a tutorial on to return a serve and how to hold the racket. A grey title screen with white letters and artwork,A man in a red shirt at an outdoor tennis court is giving a tutorial on to return a serve and how to hold the racket.,A grey title screen with white letters and artwork,gold,show who the host and the video series is about.,come up from the table.,appears on the score paper.,appears running back in random making goals.,0\n13904,anetv_3TxZTZEEg44,5017,A man is seen speaking to the camera while holding a tennis racket and leads into shots of him hitting the ball with another on a field. He,A man is seen speaking to the camera while holding a tennis racket and leads into shots of him hitting the ball with another on a field.,He,gold,move behind to capture the ball in a pool before the camera focuses in on him as he continues to play.,continues playing while looking at the camera working himself.,come wearing the end and hug the racket as well as speaking to the camera and dancing around and catching the dealer's hands.,demonstrates how to properly hit the ball with another while leading back into him speaking to the camera.,3\n13905,anetv_3TxZTZEEg44,1722,Footage is shown with two players playing tennis. The instructor,Footage is shown with two players playing tennis.,The instructor,gold,shows how to hold and move with the racket.,narrates the game and leads into several clips involved in the game around the casino.,turns to watch the records group.,\"stops the bat, trying to score.\",0\n13906,anetv_3Hgwyprv8u4,8712,The person walks around with the vacuum and pushes it along a rug. More shots,The person walks around with the vacuum and pushes it along a rug.,More shots,gold,\"are shown of people riding around, while the camera focuses on the objects.\",are shown of cleaners as well as ingredients.,are shown of the person using the attachments on the camera as well as showing how it's made.,are shown of shoes as well as sitting and looking in the distance.,2\n13907,anetv_3Hgwyprv8u4,8711,A camera pans all around a vacuum close up and shows a person's feet. The person,A camera pans all around a vacuum close up and shows a person's feet.,The person,gold,walks around with the vacuum and pushes it along a rug.,continues noisily down carpet while the camera captures her movements.,is then shown climbing all into the water while the camera zooms off.,continues spraying the dog again by smiling at the camera and smiling into the camera.,0\n13908,anetv_pnFRC2_HPrE,4607,A woman in black shorts and a blue shirt is seen using an elliptical trainer and the brand and model are shown. Different people are shown using the elliptical and the various features,A woman in black shorts and a blue shirt is seen using an elliptical trainer and the brand and model are shown.,Different people are shown using the elliptical and the various features,gold,are shown jerking it.,are displayed in stage.,are shown about the group working.,are shown and demonstrated.,3\n13909,anetv_pnFRC2_HPrE,4609,Finally the brand and model are shown again with the same girl from the beginning. Then the screen,Finally the brand and model are shown again with the same girl from the beginning.,Then the screen,gold,goes black for the rest of the video.,are show again at home with the paint store and photograph of a girl talking about another.,ends with the closing credits.,goes black and the video ends with the closing credits.,0\n13910,anetv_pnFRC2_HPrE,4608,Different people are shown using the elliptical and the various features are shown and demonstrated. Finally the brand and model,Different people are shown using the elliptical and the various features are shown and demonstrated.,Finally the brand and model,gold,appears too hard written among them before that various display of the name of the building.,\"appears on the screen, added more, social media utensils and other interments fencing.\",are shown again with the same girl from the beginning.,liners are shown with long white strength.,2\n13911,lsmdc3016_CHASING_MAVERICKS-6253,11451,\"Later, on calm waters, they kneel on their respective boards. They\",\"Later, on calm waters, they kneel on their respective boards.\",They,gold,move farther along the rocks.,move in a middle of charcoal purple containers.,hold the distant dining room for one long.,\"bend over, paddling both hands through the water at the same time.\",3\n13912,lsmdc3016_CHASING_MAVERICKS-6253,11450,\"Now, they carry the boards into the surf. Later, on calm waters, they\",\"Now, they carry the boards into the surf.\",\"Later, on calm waters, they\",gold,travels across a rocky body of water to a darting pulling lawn.,kneel on their respective boards.,slosh a passing glass.,hide only a line on the board.,1\n13913,lsmdc3016_CHASING_MAVERICKS-6253,11452,Brackets on the boards hold water bottles. They,Brackets on the boards hold water bottles.,They,gold,see the lady fall off her boards above the dunk.,open the lens on the boat with the water board first takes two glasses from the water.,\"pour the powder into the glass, then add stacks of white juice.\",pause and sit up.,3\n13914,anetv_wdD-UHM8rTg,18875,She holds up a violin and a stick. A boy,She holds up a violin and a stick.,A boy,gold,with a black body walks over the court.,does the same after her.,walks around to watch.,puts a tattoo on the guy's neck.,1\n13915,anetv_wdD-UHM8rTg,304,More shots are shown of trash and people wandering around and speaking to the camera. More clips,More shots are shown of trash and people wandering around and speaking to the camera.,More clips,gold,are shown of people skating in a sunny pool from many dinette and clean as well as inside.,are shown of the kids holding up sides as well as people crashing into one another.,are shown of people playing pool sets of shoes.,are shown of children playing instruments and speaking to the camera.,3\n13916,anetv_wdD-UHM8rTg,18874,A girl is talking to the camera. She,A girl is talking to the camera.,She,gold,removes the curlers from hair.,holds up a violin and a stick.,starts talking while showing beaches.,moves around a group.,1\n13917,anetv_wdD-UHM8rTg,18876,A boy does the same after her. They,A boy does the same after her.,They,gold,go over hills and fly.,get the ball and behind all the players passionately from the shore while showing how to perform.,begin playing a song for the camera.,wrestle the act again until the scene begins.,2\n13918,anetv_ULBhK8jXNws,19197,There is a truck being driven on the road in the beginning of the video. Then a man,There is a truck being driven on the road in the beginning of the video.,Then a man,gold,is shown using a old man who keeps playing in another casino and shows the number while talking.,is then shown riding in the road while looking away while looking away.,\"is shown sitting by the poolside, surfing in the water with other people.\",push a skateboard on snowboard but is thrown back and forth motion.,2\n13919,lsmdc1058_The_Damned_united-98444,14171,\"Someone scratches his balls as he eyes someone contemptuously, standing beside the team lined up for the national anthem. Someone\",\"Someone scratches his balls as he eyes someone contemptuously, standing beside the team lined up for the national anthem.\",Someone,gold,beats the coffin with open fist.,sings in the stands.,\"grabs someone to his referees, then places the card in front of someone.\",flips over her friend's hair.,1\n13920,lsmdc1058_The_Damned_united-98444,14172,\"Someone sings in the stands. On the pitch, someone\",Someone sings in the stands.,\"On the pitch, someone\",gold,is at another table where someone's hair curled.,remains tight - lipped.,\"does the same aerobic dance, back of his arms, dressed, tai its fun writhing.\",\"hurries to the telephone, sets out the fire and pulls out a slash, which begins.\",1\n13921,lsmdc1058_The_Damned_united-98444,14173,\"Someone smirks wryly as he locks looks with someone, who looks away imperiously. Someone\",\"Someone smirks wryly as he locks looks with someone, who looks away imperiously.\",Someone,gold,\"salutes someone in the stands, who smiles back and touches his nose smugly.\",stands and watches him approach.,sits at the top of a large prescription bottle and wipes some of the liquor from his mouth and back the remaining windows.,seems to be clearly like that for him.,0\n13922,anetv_gPtpPiea0iQ,5649,The woman stands preparing to hammer throw. The woman,The woman stands preparing to hammer throw.,The woman,gold,throw the ball upside down.,performs the hammer throw.,gives the woman a bath.,lifted the metal bar.,1\n13923,anetv_gPtpPiea0iQ,5652,The woman walks out of the netted area. The woman,The woman walks out of the netted area.,The woman,gold,adjusts the strap on a hairpin.,raises her arm again.,hand at shoulder exposed knee.,pats a shower of a bathtub and picks out the raincoat with a pad.,1\n13924,anetv_gPtpPiea0iQ,5650,The woman performs the hammer throw. The hammer,The woman performs the hammer throw.,The hammer,gold,\"bounces the balls, trying to catch the balls.\",turns around the javelin throw.,turns into each other.,is seen landing with judges walking towards it.,3\n13925,anetv_gPtpPiea0iQ,5648,A woman walks into a partially netted area. The woman,A woman walks into a partially netted area.,The woman,gold,stands preparing to hammer throw.,uses a comb to secure the product.,removes the shoes from the car.,darts down a long and swirling hoop between balls.,0\n13926,anetv_8EGM3zcvjs8,11394,\"Eight people are standing at the studio, one woman walked at the back of the group. The group\",\"Eight people are standing at the studio, one woman walked at the back of the group.\",The group,gold,ends up shoving behind the woman.,\"started dancing, swirling, shaking their hips, rotating, their arms and hands are moving from side to side, in front.\",continue practicing boxing with one another while still tying their laces.,\"continues to play when the woman steps the news, followed by the camera showing the same thing.\",1\n13927,anetv_mzewLmZSCMU,13743,A person is seen bending down on the floor followed by a ballerina jumping. Another person,A person is seen bending down on the floor followed by a ballerina jumping.,Another person,gold,passes upstairs and leads into three women performing and jumping on the beam.,is then seen holding places behind a log while still speaking to the camera and leads them taking objects down.,flips on the beam while others watch on the sides.,is seen moving their body around in a costume afterwards.,3\n13928,anetv_mzewLmZSCMU,17918,Dancers are shown in clips performing. Deloitte Ignite 14 Myth advertisement,Dancers are shown in clips performing.,Deloitte Ignite 14 Myth advertisement,gold,is leading the movie.,for an array of dance moves on the beach.,is in facebook columbia.,is shown on screen with a website address.,3\n13929,anetv_mzewLmZSCMU,13744,Another person is seen moving their body around in a costume afterwards. More dancers,Another person is seen moving their body around in a costume afterwards.,More dancers,gold,are seen jumping around the stage.,turns around and ends with the website shown.,do something while people watch on the side.,struggle to split their hairstyles in sync of one pose with lunge.,0\n13930,anetv_mzewLmZSCMU,17917,The Royal Opera House appears on a black screen. Dancers,The Royal Opera House appears on a black screen.,Dancers,gold,appear followed by another who struggle on his broom and gets inside.,are shown in clips performing.,ricochet off his beer.,are underwater with balloons at a cafe.,1\n13931,anetv_ZbS9R9faBQk,11471,A plate is brought over to the stove. He,A plate is brought over to the stove.,He,gold,\"uses a spoon to block the flame, then grabs a knife.\",goes into the kitchen and dumps his fridge.,dishes out what was in the pan onto the plate.,don't make it up!,2\n13932,anetv_ZbS9R9faBQk,11470,A man is stirring a pot on a stove. A plate,A man is stirring a pot on a stove.,A plate,gold,is shown on a plate.,is shown on the top of a low pot.,is brought over to the stove.,places meat in hand.,2\n13933,lsmdc1034_Super_8-8052,14623,\"Later, he puts out dog food. Clutching a script, he\",\"Later, he puts out dog food.\",\"Clutching a script, he\",gold,rushes through a house.,strolls in in someone's room.,goes into the hotel's room.,runs over to someone's house.,3\n13934,anetv_CjPN7fw0B48,17356,A man is mowing the yard up and down. He then,A man is mowing the yard up and down.,He then,gold,shows how to use a paintbrush to hit the mulch.,mows the yard sideways.,swings the mower over and over on the ground.,starts raking up a driveway in front of him.,1\n13935,anetv_CjPN7fw0B48,8716,The man walks across the mowed lawn and sits on a bench. The man,The man walks across the mowed lawn and sits on a bench.,The man,gold,stands and walks back across the lawn.,\"starts to speed the riding mower with his brush, trying to bite along.\",trims the hedges on the hedges.,leaves with a cloth over his neck.,0\n13936,anetv_CjPN7fw0B48,8715,A man mows his lawn while being filmed from a high angle in a sped - up video. The man,A man mows his lawn while being filmed from a high angle in a sped - up video.,The man,gold,continues to clean the shirt by again describing what the routine is over.,walks across the mowed lawn and sits on a bench.,continues to push the mower while others try to cut it off the grass.,uses the razor to scrape some of the parts of the roof when two people fold the camera out.,1\n13937,anetv_CjPN7fw0B48,17355,A backyard is shown between a wooden fence. A man,A backyard is shown between a wooden fence.,A man,gold,stands up and starts styling the grass as he rakes it out.,is mowing the yard up and down.,is seated beside a hedge on the corner of a building.,shovels a long bush and mulch.,1\n13938,anetv_g4OlXwjgwSs,8721,People are standing around watching him. He,People are standing around watching him.,He,gold,throws the ball and makes pucks.,turns and looks up at someone.,is drinking a mug of coffee.,launches the ball onto the field.,3\n13939,anetv_g4OlXwjgwSs,8720,A man in a red jersey spins around and throws a ball onto the field in front of him. People,A man in a red jersey spins around and throws a ball onto the field in front of him.,People,gold,run up the middle street.,are standing around watching him.,see different techniques of horses on the field.,get to four feet tall while the other men kick and hold back.,1\n13940,anetv_g4OlXwjgwSs,11109,We see the mans feet and his knees as he extends his arm. We,We see the mans feet and his knees as he extends his arm.,We,gold,see scissors before starting to fall into frame.,see a front canoe on the landscape.,see back and motion on his feet and falls rhythmically.,see a closing title screen.,3\n13941,anetv_g4OlXwjgwSs,11108,We see the man's leg swing analyzed and the shoulder position. We,We see the man's leg swing analyzed and the shoulder position.,We,gold,see the man swing up back and the boy throws each ball.,see the mans feet and his knees as he extends his arm.,\"jump then and the lady comes back, demonstrating.\",see the lady fighting down lady.,1\n13942,anetv_8xsLp6lqijo,1945,He picks up the skateboard and holds it in his hand. He,He picks up the skateboard and holds it in his hand.,He,gold,then gets his feet off the skateboard.,begins to jump up on a beam and back it on his skateboard.,\"leaves the cart by the man, half the man in the background.\",puts the skateboard back down and continues skateboarding.,3\n13943,anetv_8xsLp6lqijo,1944,A man is standing on a skateboard. He,A man is standing on a skateboard.,He,gold,begins doing a gymnastics routine on the balance beam.,starts performing several tricks in a rice field.,begins to spin around as like the disc repeatedly.,picks up the skateboard and holds it in his hand.,3\n13944,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59787,16001,Fire writing emerges on the plain band of gold. The one ring,Fire writing emerges on the plain band of gold.,The one ring,gold,increasing dust around the hall.,reaches for his peace as people above him.,falls through space and into flames.,holds their goblet guns.,2\n13945,lsmdc3040_JULIE_AND_JULIA-17952,8013,\"The sisters hook pinkies, tap their thumbs together, then wiggle their hands away. Someone\",\"The sisters hook pinkies, tap their thumbs together, then wiggle their hands away.\",Someone,gold,rushes onto the dining stage.,lowers an arm as he carries them by the lake.,juts out her cheeks as she watches.,playfully taps someone on the nose.,3\n13946,anetv_Eq0Ibnq9sYA,2319,A woman is seen pushing a puck along some ice followed by people brushing ice with brooms in front of the puck. They,A woman is seen pushing a puck along some ice followed by people brushing ice with brooms in front of the puck.,They,gold,continues to the play of the game as well as decorating.,continue blowing the sticks in a pit during a game of lacrosse in the end.,continuously brush and end the puck in a circle and ends with the woman speaking to the others.,is shown speaking in the same shots as well as working out on an ice rink as well as hitting a switch.,2\n13947,anetv_Khxa5Ey3udM,2069,\"A person is inside a lawn mower parked near a field. Then, the person\",A person is inside a lawn mower parked near a field.,\"Then, the person\",gold,turn on the machine and mows a field.,spots a couple enveloped and people image on the screen.,hands over the person to cut grass.,is kicking a leaf blower across the yard.,0\n13948,anetv_hyv8OkQcgEA,6555,\"Then, a man explains how to operate a leaf blow machine while men continue blowing the leaves. Another man\",\"Then, a man explains how to operate a leaf blow machine while men continue blowing the leaves.\",Another man,gold,explains while other men vacuum and blows leaves.,\"comes to the veranda, blowing the leaves and muscle so it work.\",takes out the sheet and holds utensils by his hands.,\"in a black hat speaks to the camera when the man enters, raises a gun and walks on the street.\",0\n13949,anetv_hyv8OkQcgEA,6554,\"Men blows dead leaves pushing a leaf blower machine on the ground or holding a machine on the back. Then, a man\",Men blows dead leaves pushing a leaf blower machine on the ground or holding a machine on the back.,\"Then, a man\",gold,explains how to operate a leaf blow machine while men continue blowing the leaves.,is in a backyard talking to the camera and trying in a final yard house.,watch a dog run into the center of the jungle with the hose help to push leaves.,is applying another juvenile when another person is shown a shovel standing near the.,0\n13950,anetv_jlqC3lFqxhQ,8159,The video then goes into numerous various different segments of a bunch of different people snowboarding while doing tricks either in the daytime or nighttime and at various different locations. The outro,The video then goes into numerous various different segments of a bunch of different people snowboarding while doing tricks either in the daytime or nighttime and at various different locations.,The outro,gold,appears with a logo over information and various names from heights appear with shown on the screen inside.,flashes to the chinese female logo.,goes to gray and then fade to black.,is shown at a local.,2\n13951,anetv_wtoKUYBw9f4,224,The lady then perform her high jump and stands and jumps and pumps her arms. We,The lady then perform her high jump and stands and jumps and pumps her arms.,We,gold,see her counts and the lady who shifts the body of the coach again.,see the man finish and the lady lassos and ties his hair.,see a replay of the jump.,see the barman following her while the girl continues dancing.,2\n13952,anetv_wtoKUYBw9f4,15990,\"She gets into a position, then runs. She\",\"She gets into a position, then runs.\",She,gold,does one more dive as they skateboard.,vaults over a pole onto a mat.,calls the city as she goes across the river and stops to climb on the tree.,continues to kick the other onto the mat.,1\n13953,anetv_wtoKUYBw9f4,222,We see an opening title screen. We,We see an opening title screen.,We,gold,see a lady standing on a track with a score screen showing.,see a graph on stage.,see a title screen.,see a helicopter that we should grabs.,0\n13954,anetv_wtoKUYBw9f4,15989,A female track athlete stands on the tracks. She,A female track athlete stands on the tracks.,She,gold,bows and falls into view.,\"gets into a position, then runs.\",rides on the skateboard tricks and performs gymnastics jump.,runs on her javelin lands and lands in a pile of sand.,1\n13955,anetv_wtoKUYBw9f4,223,We see a lady standing on a track with a score screen showing. The lady,We see a lady standing on a track with a score screen showing.,The lady,gold,performs and then puts a couple of miniature bottles off the bar and walks towards her.,stands next to the blue horse while standing in the grass speaking to the youth in his enclosure.,frowns as her teammates dismount another run.,then perform her high jump and stands and jumps and pumps her arms.,3\n13956,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9312,\"Steel supports are ripped away. The remaining supports give way, and the bridge\",Steel supports are ripped away.,\"The remaining supports give way, and the bridge\",gold,\"broke free, filled by the snitch cloud of powder.\",shows the boxer in the left.,\"passes apart, staying just halfway through.\",crashes into the murky waters of the thames.,3\n13957,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9309,\"People lie injured, as the People emerge from the shop, one holding a man with a bag over his head. The third\",\"People lie injured, as the People emerge from the shop, one holding a man with a bag over his head.\",The third,gold,sounds a light move and the man just takes a split as someone fires the mask.,picks up a coat that he has taken from his vest and it tails the room in place.,\"has a long, thin face and a beard.\",guard looks away as someone scrambles to his feet and leaps over a building.,2\n13958,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9310,\"The third has a long, thin face and a beard. They\",\"The third has a long, thin face and a beard.\",They,gold,see a riders shuffle ballet then the man are dressed in their final process.,\"zoom away, and weave over and under the millennium bridge.\",crunches floor twirling books in one and liner.,\"switches on a feathery on but slowly to infant that, gets out of the drip, spreading his legs helplessly as he cuts.\",1\n13959,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9307,\"The staff on one of the upper floors gather at the windows, and look out in alarm, as the menacing clouds drift ever closer. They\",\"The staff on one of the upper floors gather at the windows, and look out in alarm, as the menacing clouds drift ever closer.\",They,gold,\"billow forward in the shape of a skull, from which three dark trails of smoke appear.\",\"eyes the ramp, where someone and someone climbed together and put an alien in the back.\",\"settle in, we are seen leaving the conversation, as they stare up each other as they walk in the room.\",sweeps a corner of the pipe to the head of the ship which vanishes as the ship breaks into flames.,0\n13960,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9306,\"Reflected in the glass of a tall office building, the brooding storm clouds settle over the City of London. The staff on one of the upper floors\",\"Reflected in the glass of a tall office building, the brooding storm clouds settle over the City of London.\",The staff on one of the upper floors,gold,has huge windows of exposed debris and a wooden ceiling.,\"gather at the windows, and look out in alarm, as the menacing clouds drift ever closer.\",go through the front window.,begin to follow and crawl away.,1\n13961,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9311,\"It tilts and sways, flinging people against the parapets. They\",\"It tilts and sways, flinging people against the parapets.\",They,gold,hide their complexion at dark.,\"cling on, desperately.\",are kayaking in the bombed gothic tower.,screech one closer to strike as people from the center have stopped.,1\n13962,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9308,\"They sweep up Charing Cross Road, moving swiftly past Leicester Square tube station. Traveling down narrow alleys, back streets, and through solid walls, they\",\"They sweep up Charing Cross Road, moving swiftly past Leicester Square tube station.\",\"Traveling down narrow alleys, back streets, and through solid walls, they\",gold,stop with a harsh look of sunlight on the top.,see their arms and wave at someone's group.,\"hurtle into diagon alley, where they swoop into a shop.\",watch from inside a building as the plane grows smaller.,2\n13963,anetv_GYh4XH7jUL4,10652,A person dives off a board into a pool. They,A person dives off a board into a pool.,They,gold,go in the choppy water and snowboards through the ocean.,are pulled along the sides of the water.,come up from under the water.,are preparing to fire.,2\n13964,anetv_L0arB1mOuSE,15730,Several clips of shown of people playing kickball against one another in a large field. Several clips,Several clips of shown of people playing kickball against one another in a large field.,Several clips,gold,are shown of people celebrating and celebrating in several locations.,are shown of people performing passages as well as holding a hat and speaking to one another.,are then shown of animals playing and ends by them walking around shoveling.,\"are shown of people running around, catching and throwing the ball, as well as partying on the side.\",3\n13965,lsmdc0027_The_Big_Lebowski-62846,1435,People walk to someone's car. As the two men,People walk to someone's car.,As the two men,gold,get into the car.,slides down a quiet street.,\"shake hands, someone approaches.\",\"are getting harnessed together, people switch toward someone.\",0\n13966,anetv_f4CSejhkTd8,14548,\"Woman is doing exercise in diferent machines like rowing, eliptical and legs machine and lifting weight. the man keeps talking to the camera in a small gym room in front of a mirror and the woman\",\"Woman is doing exercise in diferent machines like rowing, eliptical and legs machine and lifting weight.\",the man keeps talking to the camera in a small gym room in front of a mirror and the woman,gold,is pulled around a pair of exercise caps on how to do and take them apart.,mixes the lotion all together and then demonstrates how to play.,is doing exercise in the elliptical machine.,overlaid while talking over to the machine and asking incredulously to turn.,2\n13967,anetv_f4CSejhkTd8,9784,A man and woman are seen speaking to the camera and leads into several clips of people working out. The two,A man and woman are seen speaking to the camera and leads into several clips of people working out.,The two,gold,begin running around hitting one another and smiling with one another.,are seen speaking again and shows a close up of a machine.,continue moving around and end by speaking to the camera and holding up a circle.,continue riding on the puck while pausing to look off into the distance.,1\n13968,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16303,Someone and someone fight desperately with someone gaining the upper hand. She,Someone and someone fight desperately with someone gaining the upper hand.,She,gold,throw the hunter to the ground and crouches over her with a weapon.,swipes the bug in her own's chest and hugs him at the back of the boat.,frees someone from the press then puts fire at the angry man's other hand.,ducks as the group gets ready to leave.,0\n13969,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16298,Someone pulls apart one of someone's bindings. Someone,Someone pulls apart one of someone's bindings.,Someone,gold,\"climbs out of the bed and sits up, listening.\",yanks it off of the wrapping paper.,\"wraps a chain around her fist and charges someone, knocking her to the ground.\",views another monitor and someone.,2\n13970,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16302,Someone grabs some weapons and runs to join the fray. Someone and someone,Someone grabs some weapons and runs to join the fray.,Someone and someone,gold,bundle the money in their hands.,peel around the room.,fight desperately with someone gaining the upper hand.,huddle around the croupier's alcove.,2\n13971,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16300,Someone turns to help someone but is confronted by siamese twin witches joined at the back. The duo,Someone turns to help someone but is confronted by siamese twin witches joined at the back.,The duo,gold,trot as they race past the gravestones in the mountains edge.,attacks him ferociously with long blades.,helps someone down along a subway platform.,move their knees rhythmically.,1\n13972,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16304,Someone grabs the knife hand and the two struggle for dominance. The sun,Someone grabs the knife hand and the two struggle for dominance.,The sun,gold,starts to rise over the horizon.,has finally stopped the shadow of the boy's door.,falls on the screen then cuts underneath the house.,glides over the night white sky setting.,0\n13973,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16295,Right as the horned - witch is about to execute a little girl. Someone,Right as the horned - witch is about to execute a little girl.,Someone,gold,does so and then runs across an open platform.,stops and looks back into the street.,goes to the steps and slaps a thug's hand.,shoots her in the abdomen.,3\n13974,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16301,The duo attacks him ferociously with long blades. Someone,The duo attacks him ferociously with long blades.,Someone,gold,leads him toward the front fence of the train on the high moving tower as they climb.,grabs some weapons and runs to join the fray.,sits at his side with the boarder talking as he goes.,goes to the backstage room as a teacher finds him.,1\n13975,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16294,Someone blocks her advance and knocks the witch aside. Right as the horned - witch,Someone blocks her advance and knocks the witch aside.,Right as the horned - witch,gold,is about to execute a little girl.,prepares to fairy the spell into his gun.,\"turns on, it lights a pile of black smoke.\",morphs into the witch she tears up snowy.,0\n13976,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16312,They head for the trees with the wires stretched between them. Someone,They head for the trees with the wires stretched between them.,Someone,gold,emerges to peace and screws up the shield before taking off his lights.,lands in a clearing and runs to catch them.,comes to a halt in front of the trap and starts in another direction.,grabs the keys by the barred security guard.,2\n13977,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16293,Just as someone is about to strike someone. Someone,Just as someone is about to strike someone.,Someone,gold,blocks her advance and knocks the witch aside.,head back to watch.,stares at someone as they continue on.,is walking in her direction.,0\n13978,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16311,\"In the forest, someone follows two other witches on their brooms. They\",\"In the forest, someone follows two other witches on their brooms.\",They,gold,\"float a chain into someone's vest, then absorbs it.\",head for the trees with the wires stretched between them.,ride a web way.,are riding up to the additional couple of them.,1\n13979,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16291,Someone shoots the attacking witch in the back. Someone,Someone shoots the attacking witch in the back.,Someone,gold,runs across the dirt and flees to the rest of the house.,jumps out of hiding.,unleashes a furious fire.,summons the breath and kicks her in the air.,1\n13980,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16307,Someone throws a twin crossbow to someone who catches it. She then,Someone throws a twin crossbow to someone who catches it.,She then,gold,\"retreats, her skeleton is lifted into a sling.\",runs for easily extension him to a window.,runs down on the horse and wrenches it free.,\"picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces.\",3\n13981,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16314,He looks over his shoulder eyeing her approach. He,He looks over his shoulder eyeing her approach.,He,gold,\"lifts the rifle, takes careful aim and fires.\",slaps it from someone's hand.,\"runs down a walkway towards a long, long dark corridor and down.\",nervously turns his surfboard at someone and spits his tie around someone's feet.,0\n13982,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16309,But he takes them out with a swing of his foot. Someone,But he takes them out with a swing of his foot.,Someone,gold,watches someone's body as the teacher struggles with him.,covers himself with a blanket.,approaches with her crossbow.,continues for the next number.,2\n13983,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16292,The spiky - haired witch gathers the children. Just as someone,The spiky - haired witch gathers the children.,Just as someone,gold,brings a horse to a bedside cabinet.,places someone's hand on it quickly reach his throat.,is about to strike someone.,turns their off and carries him to a doorway.,2\n13984,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16308,\"She then picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces. But he\",\"She then picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces.\",But he,gold,\"begins, screaming, gasping for breath.\",takes them out with a swing of his foot.,continues wrapping and pushes her around the musical piece as the chains flies away.,\"backs grabs her, and bites her on the throat as he sneezes!\",1\n13985,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16296,Someone shoots her in the abdomen. She,Someone shoots her in the abdomen.,She,gold,someone kisses buttons.,collapses to the ground and looks up as someone takes aim at her head.,tosses the invisibility cloak over him.,swoops down to new knees again.,1\n13986,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16313,Someone comes to a halt in front of the trap and starts in another direction. He,Someone comes to a halt in front of the trap and starts in another direction.,He,gold,kicks off the policeman as he stumbles again.,looks over his shoulder eyeing her approach.,cuts through the haze of wood light.,picks up a narrow path towards some water which is driving across the narrow fields of water.,1\n13987,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16299,Someone frees the children from their fetters. Someone,Someone frees the children from their fetters.,Someone,gold,points at her open knee with their swords.,tries to prop her ass in the handicapped spot.,appears in the driving.,swings at someone with a knife.,3\n13988,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16297,She collapses to the ground and looks up as someone takes aim at her head. Someone,She collapses to the ground and looks up as someone takes aim at her head.,Someone,gold,pulls apart one of someone's bindings.,looks up from the page as she moves out.,turns back with her smoke.,\"smiles, lifts her eye.\",0\n13989,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16306,Someone headbutts someone who staggers away. Someone,Someone headbutts someone who staggers away.,Someone,gold,\"peeks around, then cautiously climbs into the high stone rooftop.\",watches with a mounting serious dutifully.,throws a twin crossbow to someone who catches it.,\"stumbles backwards, snapping him into a hug.\",2\n13990,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14619,\"As someone follows her, someone returns his gaze to the amphitheater and knocks on a rock wall. Someone\",\"As someone follows her, someone returns his gaze to the amphitheater and knocks on a rock wall.\",Someone,gold,regards the penguin curiously.,shifts his gaze as he walks through the open - plan office.,confronts them as he closes the door.,follows someone out among the ruins.,3\n13991,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14615,\"The guards leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes. Someone\",\"The guards leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes.\",Someone,gold,style bows hangs at their side.,wins and put them at the necks of the tuxedo.,\"stands with someone and someone, carrying two dogs.\",\"faces his acolytes then raises both arms, gesturing for them to rise from their seats.\",3\n13992,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14613,\"At dusk above the darkened horizon, scattered clouds roll across the sky. At night, spotlights\",\"At dusk above the darkened horizon, scattered clouds roll across the sky.\",\"At night, spotlights\",gold,illuminate the ancient amphitheater as someone's guards walk someone out on stage.,spin on the streets of chicago los transportation.,fly through the desert of minas.,gaze across the water as the stars rise overhead.,0\n13993,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14612,\"They watch the guests convene outside. At dusk above the darkened horizon, scattered clouds\",They watch the guests convene outside.,\"At dusk above the darkened horizon, scattered clouds\",gold,roll across the sky.,drift in the sky below.,\"float through clouds, forming mountains in the distance towards them.\",drift toward that orange ans fiery blaze that's sun engine in its midst.,0\n13994,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14620,Someone follows someone out among the ruins. He lays his hand on her shoulder and she,Someone follows someone out among the ruins.,He lays his hand on her shoulder and she,gold,rests his head on her shoulder.,\"meets his gaze, fidgeting anxiously.\",swings off her bracket.,\"meets him, then turns and faces him.\",1\n13995,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14616,\"Someone faces his acolytes then raises both arms, gesturing for them to rise from their seats. Someone\",\"Someone faces his acolytes then raises both arms, gesturing for them to rise from their seats.\",Someone,gold,jumps onto the bridge.,lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down.,lowers wearing eyes and presses his fist to a wooden railing.,looks up at the balled - faced boy and gently stretches out his hands.,1\n13996,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14614,\"At night, spotlights illuminate the ancient amphitheater as someone's guards walk someone out on stage. The guards\",\"At night, spotlights illuminate the ancient amphitheater as someone's guards walk someone out on stage.\",The guards,gold,lock regain their strength and break their embrace passionately.,\"approach someone, who maintains a tense pose as the destroyer's head sinks upward.\",get down fighting in the same alley but finds one fall of the carriage.,\"leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes.\",3\n13997,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14617,Someone lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down. Someone,Someone lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down.,Someone,gold,nods to him.,\"is left alone, with his lips break in a faint smile as he whirls a tool for them.\",\"lowers her worried gaze, sets down her rifle, and heads off.\",hands it to someone.,2\n13998,anetv_kIIAJsYMjyc,13210,A man is seen sitting on the floor and jumping to a standing position. he then,A man is seen sitting on the floor and jumping to a standing position.,he then,gold,moves all around the end and end by laughing while others walking around him.,begins playing the instrument while pausing to speak to the camera.,walks around a gym and leads out onto a mat.,goes back in to a kneeling position and jumps to his feet again.,3\n13999,anetv_kIIAJsYMjyc,13211,He then goes back in to a kneeling position and jumps to his feet again. The same man,He then goes back in to a kneeling position and jumps to his feet again.,The same man,gold,walks over to the barbell while the other uses a few hands to help him up.,'s play is repeated in slow motion as part of the things he did.,falls to the mat while the camera holds out his hand.,does this two more times.,3\n14000,lsmdc3068_THE_BIG_YEAR-3633,3395,\"Sitting in an airport shuttle, he eyes his phone. Its display\",\"Sitting in an airport shuttle, he eyes his phone.\",Its display,gold,pages sit in a facility.,shows the clock with a 12 - an answers it.,\"reads, '11 months later.\",shows the photos of a smiling someone holding his grandson.,3\n14001,lsmdc3068_THE_BIG_YEAR-3633,3396,Its display shows the photos of a smiling someone holding his grandson. Someone,Its display shows the photos of a smiling someone holding his grandson.,Someone,gold,\"walks across the lobby, where a trio from one man wears a matching costume.\",grins as he sees someone at the ferry terminal.,\"reflected on the white screen, someone mocks him as his mohawk fills his girlfriend's face.\",lays asleep on the table in front of him.,1\n14002,lsmdc3068_THE_BIG_YEAR-3633,3397,Someone grins as he sees someone at the ferry terminal. Someone,Someone grins as he sees someone at the ferry terminal.,Someone,gold,\"glides along another ledge of a second marine, who practices the stolen convention.\",opens his pants and pulls out a set of keys.,is working on sketches while holding a plastic computer.,approaches with a hand cupped to his ear.,3\n14003,anetv_EZKrOWEKX_Q,19010,The person crashes and falls into the water. A wave,The person crashes and falls into the water.,A wave,gold,crashes over a person surfing.,pours over the water.,walks to the side of the boat.,falls on the ocean.,0\n14004,anetv_EZKrOWEKX_Q,15317,The title appears over the wave. We,The title appears over the wave.,We,gold,see surfers riding waves in the ocean.,\"approaches the red land playing house, where a man holds a dodge ball in the backyard then he runs around the field.\",medium land and the teenagers swim beside the yellow helicopter examiner on the beach behind the white boat.,be city fans roll up and down the street with a blowing sky.,0\n14005,anetv_EZKrOWEKX_Q,19009,People are surfing on large waves in the water. The person,People are surfing on large waves in the water.,The person,gold,dives into the water in a black hatchback.,crashes and falls into the water.,gets pulled and waves off the beach.,rides on a tight wave while they surf back into the water.,1\n14006,anetv_EZKrOWEKX_Q,15316,\"A large, blue wave is seen. The title\",\"A large, blue wave is seen.\",The title,gold,appears over the wave.,appears onto the screen.,shows men skiing down a hill.,seems to be wakeboarding in the sky.,0\n14007,anetv_EZKrOWEKX_Q,15320,A man escapes being overcome by a wave. A man,A man escapes being overcome by a wave.,A man,gold,stands at the far end of the pool.,stands on the shore.,lulls on a side up walks across and creeps off around the dirt track.,is swimming in the river.,1\n14008,anetv_EZKrOWEKX_Q,15319,A man is engulfed by a wave. A man,A man is engulfed by a wave.,A man,gold,removes a large three white and brown fish from the ground.,begins clapping at the side on the ground.,escapes being overcome by a wave.,is dozing in chain points in the lake.,2\n14009,anetv_EZKrOWEKX_Q,15318,We see surfers riding waves in the ocean. A man,We see surfers riding waves in the ocean.,A man,gold,is engulfed by a wave.,rides a man on an escalator.,holds a woman on pushing him in.,gestures his sail with a boat.,0\n14010,anetv_86sxvTk3YEY,7478,\"An actor, Jason Stathom, is sitting in a blue reclining chair talking a late night tv host by the name of Jimmy Fallon who is sitting behind a desk. The two continue to speak then they both\",\"An actor, Jason Stathom, is sitting in a blue reclining chair talking a late night tv host by the name of Jimmy Fallon who is sitting behind a desk.\",The two continue to speak then they both,gold,stand up in a joking manner and walk over to a table.,move up and down on the table.,do some steps in the street.,have a coconut and a sponge and they put it together again and arrive at the shirt.,0\n14011,anetv_86sxvTk3YEY,7480,\"They both stand at the ends of the table and begin arm wrestling and talking. After a long period of time passes, the actor\",They both stand at the ends of the table and begin arm wrestling and talking.,\"After a long period of time passes, the actor\",gold,awards snorts in his hair.,wins and starts cheering for himself.,is boiling in and black and green does it.,\"is left, interviewing a replay.\",1\n14012,anetv_86sxvTk3YEY,7479,The two continue to speak then they both stand up in a joking manner and walk over to a table. They both,The two continue to speak then they both stand up in a joking manner and walk over to a table.,They both,gold,stand at the ends of the table and begin arm wrestling and talking.,take a sip from the camera again.,stand at a table in a small room with the measuring cups.,take a swig of wet beer and then hurry to the center of the table.,0\n14013,anetv_9-XGzUTSsuI,5695,While talking the man is also doing arm and leg movements and the camera is zoomed out to show his whole body. When the man is done the same blue screen from the beginning,While talking the man is also doing arm and leg movements and the camera is zoomed out to show his whole body.,When the man is done the same blue screen from the beginning,gold,has two tattoos on his left hand with a tattoo on his leg.,seems to be getting a tattoo on her foot.,is shown in slow motion.,appears and ends with the same white screen with the green ehow written in the middle.,3\n14014,anetv_9-XGzUTSsuI,5694,\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he's a Personal Trainer. While talking the man is also doing arm and leg movements and the camera\",\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he's a Personal Trainer.\",While talking the man is also doing arm and leg movements and the camera,gold,puts back on to a female competitive workout.,lifts his feet and lifts it to his chest.,is zoomed out to show his whole body.,regretfully and and some engages demonstrating a top type in his blue hand.,2\n14015,anetv_9-XGzUTSsuI,5693,\"A white screen appears and green letters appear in the middle of the screen and read eHow and changes to a blue screen that has a large white word that reads health under a small white square that contains the green eHow. A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he\",A white screen appears and green letters appear in the middle of the screen and read eHow and changes to a blue screen that has a large white word that reads health under a small white square that contains the green eHow.,\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he\",gold,stops playing and gives a gun.,'s a personal trainer.,'s talking offscreen to a mat.,is writing on it.,1\n14016,anetv_RseCMmSvcPY,15261,A close up of a pool table is seen when two girls walk into frame holding sticks. The girls,A close up of a pool table is seen when two girls walk into frame holding sticks.,The girls,gold,discuss in one pan and bend with one another while others watch on the sides.,continue kicking wrestle while laughing into one another and running into a shot.,speak to one another while pointing to the table.,go back and fourth and hit one another.,2\n14017,anetv_RseCMmSvcPY,10093,The people then begin playing a game of pool with one another. The two continue playing and one,The people then begin playing a game of pool with one another.,The two continue playing and one,gold,hits the other with a stick.,wins the little one with the other.,throw his one on the other.,person talking to the camera.,0\n14018,anetv_RseCMmSvcPY,10092,A close up of a pool table is shown when two people walk into frame. The people then,A close up of a pool table is shown when two people walk into frame.,The people then,gold,begin performing martial arts and throwing hoops to one another.,leads back playing ping pong and grabbing one another.,begin playing a game of pool with one another.,begin hitting a wall with rackets with one another.,2\n14019,lsmdc3078_THE_WATCH-36504,4546,\"As an alien lunges forward, a shot blasts open its groin. Someone\",\"As an alien lunges forward, a shot blasts open its groin.\",Someone,gold,lurches to a halt.,ads a glove while ready to fight.,takes out another creature.,\"turns as the soldier launches into the air, sending him knees down on the base of his leg.\",2\n14020,lsmdc3078_THE_WATCH-36504,4548,Someone shoots the alien and someone kicks it off. The guys,Someone shoots the alien and someone kicks it off.,The guys,gold,\"climb out from the basement, then tip over a refrigerator, slamming the grate over another alien.\",aim shots at the ash giants escape tables.,punch him in the shin.,fall to their knees.,0\n14021,lsmdc3078_THE_WATCH-36504,4547,\"Someone takes out another creature. In slow motion, someone\",Someone takes out another creature.,\"In slow motion, someone\",gold,\"tosses his pistols, then draws a single revolver.\",spoons the shotgun to his ear and breathing blocks.,stands on the swing at the curb.,tosses someone's hand in the jet.,0\n14022,lsmdc3078_THE_WATCH-36504,4542,The meter shows a lessening of power and the overhead amber lights go out. Dozens of aliens,The meter shows a lessening of power and the overhead amber lights go out.,Dozens of aliens,gold,shine into a lift on the tarmac.,drift slowly through the spiraling like carved columns.,lie on top of the silver timekeeper ships.,\"emerge from the tunnels, crawling on all fours.\",3\n14023,lsmdc3078_THE_WATCH-36504,4555,\"The guys sprint for the security door as it lowers. Before the door closes completely, they all\",The guys sprint for the security door as it lowers.,\"Before the door closes completely, they all\",gold,slide underneath and into the parking lot.,turn to look up at the crashing theater.,\"look, find nothing but throws off.\",start off the hinges.,0\n14024,lsmdc3078_THE_WATCH-36504,4550,\"As they run through the store, the alien reaches through the grate. A smoky blast\",\"As they run through the store, the alien reaches through the grate.\",A smoky blast,gold,hits the floor as two bartenders are standing on either side.,launches the refrigerator across the room.,cuts across the ship's walls.,reveals dingy buildings stationed beneath them.,1\n14025,lsmdc3078_THE_WATCH-36504,4552,\"The aliens scramble out of the basement, then race across the store, knocking over lawn furniture. The guys\",\"The aliens scramble out of the basement, then race across the store, knocking over lawn furniture.\",The guys,gold,stare as someone boats headlights drive across the wreckage.,\"continue their dash to the exit, someone keeping hold of the orb.\",pick up someone into a bag.,cross the street and shoot the street until u - end lane highway.,1\n14026,lsmdc3078_THE_WATCH-36504,4541,Someone unplugs four cables attached to someone and the beam dies out. Someone,Someone unplugs four cables attached to someone and the beam dies out.,Someone,gold,knocks someone's hand.,takes deep breaths and shakes her tiny wand.,\"removes the orb from the tower, then looks around.\",\"removes the edges of the car false open, and marks a ceiling.\",2\n14027,lsmdc3078_THE_WATCH-36504,4559,\"In slow motion, someone's flaming Costco i d card, which bears his photo, rises into the night sky. A severed alien head\",\"In slow motion, someone's flaming Costco i d card, which bears his photo, rises into the night sky.\",A severed alien head,gold,hangs from the port side.,lies on the ground and bears a monk's ankle.,\"flies through the air, its mouth open wide.\",tips on and it snaps off into force.,2\n14028,lsmdc3078_THE_WATCH-36504,4549,\"The guys climb out from the basement, then tip over a refrigerator, slamming the grate over another alien. As they run through the store, the alien\",\"The guys climb out from the basement, then tip over a refrigerator, slamming the grate over another alien.\",\"As they run through the store, the alien\",gold,'s being blown away.,reaches through the grate.,raises its tires and staggers.,hides behind the wheel booth.,1\n14029,lsmdc3078_THE_WATCH-36504,4554,Someone hits a red button on the wall. The guys,Someone hits a red button on the wall.,The guys,gold,rush through to the ring.,enter the tunnel with a fighting gun.,sprint for the security door as it lowers.,enter the surveillance room.,2\n14030,lsmdc3078_THE_WATCH-36504,4556,\"Before the door closes completely, they all slide underneath and into the parking lot. Someone and someone\",\"Before the door closes completely, they all slide underneath and into the parking lot.\",Someone and someone,gold,watch as a clear trunk emerges from behind a tree.,\"sit at the rocking table, staring as starry - eyed black boy, in black.\",hide behind a police car.,\"run along the residential street, where the two buses stop and watch.\",2\n14031,lsmdc3078_THE_WATCH-36504,4557,\"With their fingers in the orb, a brilliant beam of light hits the store and a wave of energy encases the entire building. Someone\",\"With their fingers in the orb, a brilliant beam of light hits the store and a wave of energy encases the entire building.\",Someone,gold,settles over a canvas shimmering fence covered in mushroom clouds.,peeks over the car.,\"awakens and pushes himself along the edge as the destroyer swerves, destroying him.\",leads someone through the building to a stately building.,1\n14032,lsmdc3078_THE_WATCH-36504,4558,\"An aerial view shows the massive eruption of fire and smoke. In slow motion, someone's flaming Costco i d card, which bears his photo,\",An aerial view shows the massive eruption of fire and smoke.,\"In slow motion, someone's flaming Costco i d card, which bears his photo,\",gold,rises into the night sky.,looks up from his pickup and brings out a box of cash.,opens the barn door.,scans the area as a few of his vehicles descend another circuit deck.,0\n14033,lsmdc3078_THE_WATCH-36504,4543,\"Dozens of aliens emerge from the tunnels, crawling on all fours. Someone\",\"Dozens of aliens emerge from the tunnels, crawling on all fours.\",Someone,gold,throws the orb down to someone.,watches until both men rush away with myrtle.,zooms in on the woman who lies watching her coach.,stares at one of the coaches gesturing someone.,0\n14034,lsmdc3078_THE_WATCH-36504,4553,\"The guys continue their dash to the exit, someone keeping hold of the orb. Someone\",\"The guys continue their dash to the exit, someone keeping hold of the orb.\",Someone,gold,looks at the check at the man.,stares into the vast desert.,brings blood down his pursed lips.,hits a red button on the wall.,3\n14035,lsmdc3078_THE_WATCH-36504,4544,Someone throws the orb down to someone. Someone,Someone throws the orb down to someone.,Someone,gold,carries more past someone.,is standing in the middle of the graveyard.,jumps to a thick cable and slides down to the floor.,bows from the next door.,2\n14036,lsmdc3078_THE_WATCH-36504,4545,\"Walking backwards, they fire on the alien horde. As an alien lunges forward, a shot\",\"Walking backwards, they fire on the alien horde.\",\"As an alien lunges forward, a shot\",gold,flies out through wall and widened.,barrel leaps back and fires.,sends a cyclone through someone and shield him.,blasts open its groin.,3\n14037,lsmdc3078_THE_WATCH-36504,4560,Boxes spilling out foil - wrapped Magnum condoms soar amid the rising smoke. Someone,Boxes spilling out foil - wrapped Magnum condoms soar amid the rising smoke.,Someone,gold,sticks a dirty cigarette between his lips and high three brace - wincing regaining control.,'s struggles to wrap around their roaring club.,looks over the hood of the police car.,pulls out a air pipe.,2\n14038,anetv_uM6ErLnAGW4,5328,\"The woman adds chopped vegetables, salsa, and eggs to a large bowl. The woman\",\"The woman adds chopped vegetables, salsa, and eggs to a large bowl.\",The woman,gold,cuts up a baking dish next and pours it into a cup.,\"is talking to the camera, garnishes out food, and salad.\",uses a spatula to mix everything together.,mixes the ingredients together in a pan and fries it out with sugar.,2\n14039,anetv_uM6ErLnAGW4,5333,The finished bell peppers are seen on the cutting board. A woman,The finished bell peppers are seen on the cutting board.,A woman,gold,is looking over the glass window at the female.,bow in a white card and gives the girl a serve while a man strokes her face.,adds ingredients to a casserole dish.,is standing at a bar.,2\n14040,anetv_uM6ErLnAGW4,5331,Cheese is added to the tops of the bell peppers and the tops are placed back on them. The bell peppers,Cheese is added to the tops of the bell peppers and the tops are placed back on them.,The bell peppers,gold,are removed from the dish and put on a plate.,are scooped up and placed on a piece of wood.,is being put into a pile and they stir the food in a pan.,is shown in many different places.,0\n14041,anetv_uM6ErLnAGW4,5330,A spoon is used to add ingredients into the hollow bell peppers. Cheese is added to the tops of the bell peppers and the tops,A spoon is used to add ingredients into the hollow bell peppers.,Cheese is added to the tops of the bell peppers and the tops,gold,are placed back on them.,are mixed with chopped shapes and tomatoes.,are placed in video slices.,are shaken and onions in the sauce.,0\n14042,anetv_uM6ErLnAGW4,5332,The bell peppers are removed from the dish and put on a plate. the finished bell peppers,The bell peppers are removed from the dish and put on a plate.,the finished bell peppers,gold,are placed around the cups of the man's head.,\"appear along with insects, trying to make it hard.\",are being made on the wall.,are seen on the cutting board.,3\n14043,anetv_uM6ErLnAGW4,5326,Carved pepper jack - o - lanterns are seen prepared. A woman,Carved pepper jack - o - lanterns are seen prepared.,A woman,gold,uses a knife to carve out the center and facial features of a bell pepper then places in a dish.,leaves the open shoes on the doorstep.,pours some into a face as well as a pan of oil that have laid down on a table.,uses another large holder to paint the walls.,0\n14044,anetv_uM6ErLnAGW4,5329,The woman uses a spatula to mix everything together. A spoon,The woman uses a spatula to mix everything together.,A spoon,gold,is pour the mixture into the baking pan.,is shown with a bag of honey.,rubs two of the waves poured into the martini glass.,is used to add ingredients into the hollow bell peppers.,3\n14045,anetv_uM6ErLnAGW4,5327,A woman uses a knife to carve out the center and facial features of a bell pepper then places in a dish. The woman,A woman uses a knife to carve out the center and facial features of a bell pepper then places in a dish.,The woman,gold,is then taken place uses 30 strokes.,squeezes lemons into an plant.,\"adds chopped vegetables, salsa, and eggs to a large bowl.\",demonstrates the process of carving methods before taking her hairstyle again.,2\n14046,anetv_qZk7okgCU2M,3268,A man is belly surfing as a wave arrives. He,A man is belly surfing as a wave arrives.,He,gold,surfs in the water as a surfer.,waves at the surfer in a wave.,stands up on his surfboard and rides the waves.,\"blows in the air, and lands on the back of the boat.\",2\n14047,anetv_qZk7okgCU2M,3269,He stands up on his surfboard and rides the waves. A woman reporter,He stands up on his surfboard and rides the waves.,A woman reporter,gold,\"leans forward, hugging him at arm's length.\",walks to the other side of the board and waves again.,talks to a man about the surfer.,shoots him with the packet.,2\n14048,anetv_ybkcKusf-Kg,18881,He pulls himself up and does several tricks. He then,He pulls himself up and does several tricks.,He then,gold,lowers himself back down to the ground.,flips over the kicking his arms at the end.,demonstrates how to pull a rope and screams slightly.,gets followed by another man diving towards a crowded party.,0\n14049,anetv_ybkcKusf-Kg,18879,A gymnast enters the auditorium full of people. He,A gymnast enters the auditorium full of people.,He,gold,looks into a carpeted room and sits.,stands and walks away slowly.,is seen performing tai chi.,grabs the high bars.,3\n14050,anetv_ybkcKusf-Kg,9728,\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and fall stand on the mat. Also, a male athlete behind the gymnast\",\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and fall stand on the mat.\",\"Also, a male athlete behind the gymnast\",gold,performs a high and jump dive in a high stepping on a blue mat.,runs fast and flips in the air.,\"weaves and dismounts, then begins holding his rucksack, the teen runs around and twirls him then he prepares to perform her routine.\",begins to make a goal from sitting in the mat next to him.,1\n14051,anetv_ybkcKusf-Kg,18880,He grabs the high bars. He,He grabs the high bars.,He,gold,jumps in a swing three times.,grabs someone and pushes him onto the toilet seat.,pulls himself up and does several tricks.,jumps off the slack line and lands on a mat.,2\n14052,anetv_ybkcKusf-Kg,9727,\"Then, the gymnast stand on his hands, make two flips in the air and falls stand on the mat. Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and\",\"Then, the gymnast stand on his hands, make two flips in the air and falls stand on the mat.\",\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and\",gold,ends with him swinging back in the air wildly.,fall stand on the mat.,falls as he flips.,perform in front of the crowd.,1\n14053,lsmdc3013_BURLESQUE-4684,4839,\"Someone and Coco enter and spot someone onstage. Standing at a chair with her back turned, someone\",Someone and Coco enter and spot someone onstage.,\"Standing at a chair with her back turned, someone\",gold,\"heads down a hall, then heads behind the girls.\",finds someone lying in bed.,lets her hair down.,\"looks from someone to someone, who looks pensively at the table.\",2\n14054,lsmdc3013_BURLESQUE-4684,4841,\"Someone gyrates her backside, then looks over her shoulder. Holding the back of the chair, she\",\"Someone gyrates her backside, then looks over her shoulder.\",\"Holding the back of the chair, she\",gold,stares off with a sober gaze.,applies an petal.,seductively points her knees in and out.,hands the photo to someone.,2\n14055,lsmdc3013_BURLESQUE-4684,4844,The club owner affords a slight nod. Now someone,The club owner affords a slight nod.,Now someone,gold,rubs her hands over her head and body.,draws a white frozen mirror.,opens a stairwell as someone shuffles layering creamy fluid.,pulls a sausage out of a large bottle on the stairs.,0\n14056,lsmdc3013_BURLESQUE-4684,4842,\"Holding the back of the chair, she seductively points her knees in and out. She\",\"Holding the back of the chair, she seductively points her knees in and out.\",She,gold,lifts a thin cloth over her face.,\"eyes her long, blonde hair.\",\"continues to kiss on the heavy light of day, but drops in.\",whips her hair back and steps forward.,3\n14057,lsmdc3013_BURLESQUE-4684,4837,Someone shoots a satisfied glance toward someone at the back of the house. Someone,Someone shoots a satisfied glance toward someone at the back of the house.,Someone,gold,\"stands, elevation on the cashier's frail body.\",\"returns to the table, where someone raises an eyebrow.\",walks to the jet's passenger laptop.,finish the start and goes in.,1\n14058,lsmdc3013_BURLESQUE-4684,4843,Someone and the others keep watching. Someone,Someone and the others keep watching.,Someone,gold,sits up at the table as he pours the carefully exiting cocktail glass into the cup and cowers next to it.,pulls back someone's shades.,\"holds her hands out like paws, then slaps her backside with her right, then with her left.\",shoots away a stack of piles.,2\n14059,anetv_f-aGlEjgZoE,15827,The puts tape on he eye and begins putting eyeliner above her eye. She,The puts tape on he eye and begins putting eyeliner above her eye.,She,gold,\"takes the shapes from the pumpkin, goes.\",continues putting the makeup on while speaking to the camera and takes off the tape in the end.,then add the dots on top above the bench to be clean.,puts the people in the container with the back of her hand.,1\n14060,anetv_f-aGlEjgZoE,15826,A woman is seen speaking to the camera while holding up various objects. The puts tape on he eye and,A woman is seen speaking to the camera while holding up various objects.,The puts tape on he eye and,gold,begins sharpening them with large hands.,begins sharpening the object over her objects.,begins putting eyeliner above her eye.,then continues blowing it out around the camera.,2\n14061,anetv_veaxOUe_8HE,15331,Two people are seen speaking to the camera and leads into several clips of people playing volleyball with one another. The people,Two people are seen speaking to the camera and leads into several clips of people playing volleyball with one another.,The people,gold,riding around on the roads as well as laughing then speaking to one another and speaking to one another about their story.,continue to play the sport while others speak to the camera as well as watch on the sides and high five each other.,continue to hit the ball back and fourth to one another and end by hitting a ball.,continue to play as others watch on the sides and ends with the women continuing to speak.,1\n14062,anetv_41xqneu4_RA,17317,A man is inside a room in a house. He,A man is inside a room in a house.,He,gold,picks up a guitar and begins to make out.,scoops up smoke as he lays a piece of rag on the floor and lets it cover it.,is holding a chair laying on it.,is using a racquet to hit a tennis ball back and forth against a wall.,3\n14063,anetv_0PS48XWOsKA,9156,A woman stands next to a window display and demonstrates how to take off the bug screen and open the window. She then,A woman stands next to a window display and demonstrates how to take off the bug screen and open the window.,She then,gold,shows how to mix the liquid with a bucket of water to adjust it up and rub it on the top.,cleans the window and closes it.,stands next to the sign and opens it.,cleans the ice with a hose and in the glass.,1\n14064,anetv_0PS48XWOsKA,3119,The woman then opens the window. the woman,The woman then opens the window.,the woman,gold,cleans the exterior of the window.,smokes and then removes the lid.,leaves the hookah and then stands and talks while looking around.,puts a contact lens and digs in the contacts.,0\n14065,anetv_0PS48XWOsKA,3118,A woman stands in front of a window pane. the woman then,A woman stands in front of a window pane.,the woman then,gold,dries her eyes off the dry hair and displays hair products.,points to several parts of the window.,unlocks the metal bucket panels the protester herself.,picks up the comb and chandeliers material on the floor to have a styled iron.,1\n14066,anetv_0PS48XWOsKA,9155,The words Window Information Series Casement Window Operation & Cleaning along with the Thermal Industries logo appear on screen. A woman,The words Window Information Series Casement Window Operation & Cleaning along with the Thermal Industries logo appear on screen.,A woman,gold,is sitting on steps on a basketball court.,stands next to a window display and demonstrates how to take off the bug screen and open the window.,\"kneels on top of a painting and then paints darkness, white words that include chalkboard care or some of the grid.\",picks up the bottle and applies it to the ground before leaning on it.,1\n14067,anetv_hYRNSJwhVPw,19420,She then begins performing sit ups on the dock. She,She then begins performing sit ups on the dock.,She,gold,blows into the air multiple times.,continues to demonstrate how to properly do sit ups and gesturing to the camera.,continues to play while the camera captures his movements.,continues playing while the camera captures her movements.,1\n14068,anetv_hYRNSJwhVPw,19419,A woman is shown running down the beach and smiling to the camera. She then,A woman is shown running down the beach and smiling to the camera.,She then,gold,walks up the board and jumps off the wave and up again.,moves from the other side and ends with text across the screen.,begins performing sit ups on the dock.,is seen throwing a knife into the sink and dipping around it as well as speaking.,2\n14069,anetv_Nc71GzZhAHE,2514,A sign to a sugar mountain is shown and peolpe practicing snowboard. people,A sign to a sugar mountain is shown and peolpe practicing snowboard.,people,gold,are walking around a gym on the side of the track.,are shown going down a river.,\"are going outdoors, riding rafts a mountain.\",is snowboarding down a snowy hill.,3\n14070,anetv_Nc71GzZhAHE,2515,People is snowboarding down a snowy hill. snowy cars,People is snowboarding down a snowy hill.,snowy cars,gold,are blowing at the front of a house.,are riding in snowy hill.,are walking at the bottom of a mountain.,go down a hill in a intertubes.,1\n14071,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9657,6395,\"The other portraits are distraught. Weeping and wailing, the painted characters\",The other portraits are distraught.,\"Weeping and wailing, the painted characters\",gold,leave the in line silently.,scatter through the trees.,snap with horror as people watch.,run from picture to picture.,3\n14072,lsmdc3085_TRUE_GRIT-40657,13250,As they head through a pine forest. Someone,As they head through a pine forest.,Someone,gold,searches without reaching for it and flips around.,sticks another empty bottle over the end of a thin stubby branch.,surrounds it to the other side of the river.,takes to a figure.,1\n14073,lsmdc3085_TRUE_GRIT-40657,13243,He takes a piece and stands with his legs apart. He,He takes a piece and stands with his legs apart.,He,gold,throws the cornbread in the air.,glances back at someone 'unconvinced smile.,puts an arm around his shoulder.,swings his legs up and high on the board.,0\n14074,lsmdc3085_TRUE_GRIT-40657,13249,\"Under a canopy of swollen dark gray clouds, they head across a plain of straw - like grass. As they\",\"Under a canopy of swollen dark gray clouds, they head across a plain of straw - like grass.\",As they,gold,\"soar over the city, technicians travel onto a lying nestled rock roof with a gentle fall.\",\"prow, someone glares in over someone.\",\"ride inside, one penguin reaches in and pulls it out of a drawer.\",head through a pine forest.,3\n14075,lsmdc3085_TRUE_GRIT-40657,13253,\"The entrance is surrounded by craggy stone cliffs. By a campfire, someone\",The entrance is surrounded by craggy stone cliffs.,\"By a campfire, someone\",gold,goes over the veteran someone.,peers at the house's steamed up ceiling.,sits lodged at the top bunk wearing a toothy black brown suit.,mashes some cornbread and water and holds it out to someone.,3\n14076,lsmdc3085_TRUE_GRIT-40657,13247,\"Someone, someone, and someone ride across a vast prairie of short patchy grass. Behind them, in the distance,\",\"Someone, someone, and someone ride across a vast prairie of short patchy grass.\",\"Behind them, in the distance,\",gold,bubbles are visible across the distant waters.,a man walks away from a truck and whispers into the child's ear.,is a mountain range.,trees come to a halt in a sharp road block.,2\n14077,lsmdc3085_TRUE_GRIT-40657,13242,He digs around and some bits of yellow cornbread fall out. He,He digs around and some bits of yellow cornbread fall out.,He,gold,notices his watch from a nearby table and hands him a book.,holds out his flaming crown.,takes a piece and stands with his legs apart.,looks into a garbed roll.,2\n14078,lsmdc3085_TRUE_GRIT-40657,13241,Someone stares at someone who dismounts and tumbles to the ground. He,Someone stares at someone who dismounts and tumbles to the ground.,He,gold,\"swings a hammer disk, climbs through it and fake it onto a nearby fence.\",keeps hold of his horse's reigns and drunkenly struggles to his feet.,\"see a circle voice at his foot, but he ducks by a bush.\",\"stumbles after him, then jumps through the back window and falls onto a chair.\",1\n14079,lsmdc3085_TRUE_GRIT-40657,13248,Fluffy white clouds hang in a blue sky above the trio as their horses plod on across a largely featureless landscape. They,Fluffy white clouds hang in a blue sky above the trio as their horses plod on across a largely featureless landscape.,They,gold,are walking on the blue coast highway.,ride through longer grass beside a river.,stretch their arms together and swirl on toward the dance.,stay bored by one picnic.,1\n14080,lsmdc3085_TRUE_GRIT-40657,13239,He throws his bottle in the air. He misses and the bottle,He throws his bottle in the air.,He misses and the bottle,gold,knocks him directly to the hand.,falls back onto the water.,lands on the grass.,falls from the bottle to the floor.,2\n14081,lsmdc3085_TRUE_GRIT-40657,13252,Someone stands framed by the square entrance to a dark mine. He,Someone stands framed by the square entrance to a dark mine.,He,gold,moves into his bedroom.,studies a newspaper report.,returns with an arm reach.,shoots into the darkness.,3\n14082,lsmdc3085_TRUE_GRIT-40657,13240,He misses and the bottle lands on the grass. Someone,He misses and the bottle lands on the grass.,Someone,gold,\"bites into a coin, and falls his leg on the seat.\",\"stands, occasionally surprised.\",falls on a mattress in the doorway.,stares at someone who dismounts and tumbles to the ground.,3\n14083,lsmdc3085_TRUE_GRIT-40657,13246,Someone goes to his saddle bag. Someone,Someone goes to his saddle bag.,Someone,gold,drops the bike into breezeway - circular tissue.,hurls yet another piece.,puts the jack - o - lantern in the oven.,slaps someone's arm.,1\n14084,lsmdc3085_TRUE_GRIT-40657,13245,\"And before he can shoot, someone takes a shot. Someone\",\"And before he can shoot, someone takes a shot.\",Someone,gold,\"gets limp by his arms, staring at someone.\",goes to his saddle bag.,grasps someone and waves her over.,kicks the ball into the other man's mitt.,1\n14085,lsmdc0003_CASABLANCA-46860,7157,Someone jumps to his feet as someone enters. Someone,Someone jumps to his feet as someone enters.,Someone,gold,waits to be asked to seat himself.,shoves the driver's door open.,\"closes his eyes, then moves his chin to the side mirror and wipes his face.\",\"pauses, walking forward.\",0\n14086,lsmdc0003_CASABLANCA-46860,7158,\"Someone smiles back at him, but her eyes are still troubled. On the floor, someone\",\"Someone smiles back at him, but her eyes are still troubled.\",\"On the floor, someone\",gold,strums a guitar and begins her number.,closes the door and running toward the separating room.,lifts her club as she lights a match.,looks up at the sun.,0\n14087,lsmdc0003_CASABLANCA-46860,7160,\"He sees people whispering together, then notices someone at the bar. He\",\"He sees people whispering together, then notices someone at the bar.\",He,gold,stands and stands watching her.,rises and goes off.,\"steps out, heading back to them.\",gets back to his pickup and takes up his business coat from behind a parked car.,1\n14088,lsmdc0003_CASABLANCA-46860,7163,\"At the bar, someone sips a drink. Someone\",\"At the bar, someone sips a drink.\",Someone,gold,spots a sultry woman pouring champagne with a straw.,walks up and casually takes a place at the bar next to someone.,squints as she stuffs the bottles into his women's pockets.,\"pours a bottle of coffee, then sets it down.\",1\n14089,lsmdc0003_CASABLANCA-46860,7166,\"Someone finishes her song, and the crowd applauds quite enthusiastically. Someone\",\"Someone finishes her song, and the crowd applauds quite enthusiastically.\",Someone,gold,joyfully nods and hits someone over her shoulder.,turns around to face someone and presses the small stage button behind her back.,sits alone at her table.,is tossed out of the courtroom.,2\n14090,lsmdc0003_CASABLANCA-46860,7159,\"Meanwhile, someone looks about with apparent casualness. He\",\"Meanwhile, someone looks about with apparent casualness.\",He,gold,sheep breaks the light.,\"sees people whispering together, then notices someone at the bar.\",picks up a notebook.,crosses for the arquillian to secure it.,1\n14091,lsmdc0003_CASABLANCA-46860,7161,He rises and goes off. We,He rises and goes off.,We,gold,\"rush to a tall archway, stop the gaunt figure.\",watch as the three subs descend.,swoop high around the building as people march from behind a church.,see someone's troubled profile.,3\n14092,lsmdc0003_CASABLANCA-46860,7164,Someone walks up and casually takes a place at the bar next to someone. Someone,Someone walks up and casually takes a place at the bar next to someone.,Someone,gold,sees an antique poking at his chest.,takes the ring and looks at it.,are an attractive little esu woman whether or terrible extra clothes.,\"adds the freckles, then slips it towards them.\",1\n14093,lsmdc0003_CASABLANCA-46860,7162,\"We see someone's troubled profile. While someone sings, someone\",We see someone's troubled profile.,\"While someone sings, someone\",gold,\"kneels heavily, leans against his chest, his hands close to his face.\",gives a faint grin and takes an deep breath.,gives a worried glance in someone's direction.,essay unplugs her book.,2\n14094,lsmdc0003_CASABLANCA-46860,7165,Someone absorbs the shock quietly. He,Someone absorbs the shock quietly.,He,gold,shields his aim 'eye for a second.,recoils off someone's zombie cap.,\"leaves the room, still partying through a doorway.\",stops when someone brings the drink to someone.,3\n14095,anetv_fMVKdmMVixQ,16474,He instructs them on position before leading them in yoga. They,He instructs them on position before leading them in yoga.,They,gold,\"perform several moves, slowly and gracefully.\",pull up to a halt then that take turns and continue trying to move into the arena.,explaining the equipment while the other man is using to cut it down and continue to side with him turning back into a fork.,\"began to flash for a few moments, while gesturing to make his way the other way.\",0\n14096,anetv_fMVKdmMVixQ,16473,A group of people stand behind a master yogi. He,A group of people stand behind a master yogi.,He,gold,swings and shoots behind the net with a golf club.,is dragged in his hands.,instructs them on position before leading them in yoga.,exits a curb and helps people to the cabin.,2\n14097,lsmdc0043_Thelma_and_Luise-68329,6766,Someone has forgotten all about the money. They,Someone has forgotten all about the money.,They,gold,are both leaving the restaurant now.,consider in a race as they begin to separate cars from their team.,\"charts world's logo of new jersey, named someone, who wakes him and he looks to his pretty blouse.\",\"have remained seated at the rigidly, some of the others for the best hold for a lingering stranger.\",0\n14098,lsmdc0043_Thelma_and_Luise-68329,6765,She is already standing up putting money on the table. Someone,She is already standing up putting money on the table.,Someone,gold,has forgotten all about the money.,\"is standing in front of someone's bedroom window, holding a bottle of milk.\",drops her heels safely.,calls to her dad.,0\n14099,lsmdc0043_Thelma_and_Luise-68329,6764,Someone is getting a bad feeling. She,Someone is getting a bad feeling.,She,gold,is already standing up putting money on the table.,gets to her feet.,digicam it on someone's face.,is holding her umbrella behind her neck.,0\n14100,lsmdc0043_Thelma_and_Luise-68329,6771,Someone comes and sits beside her. Neither one,Someone comes and sits beside her.,Neither one,gold,another; someone looks a little awkward.,will sad but not really interested.,says anything for a moment.,\"in the room, someone is standing in the doorway in their children's sight.\",2\n14101,lsmdc0043_Thelma_and_Luise-68329,6770,Someone sits down on the sidewalk in front of the room. Someone,Someone sits down on the sidewalk in front of the room.,Someone,gold,\"drums his chin on the drum, waiting.\",\"looks up with disgust, then gives him a thumbs up.\",is dark on a television sitting.,comes and sits beside her.,3\n14102,lsmdc0043_Thelma_and_Luise-68329,6768,As they hit the door they both break into a full run. She,As they hit the door they both break into a full run.,She,gold,\"is stoic, fighting tears.\",fires at the building nearly approaching.,pushes the ladder thrown out back tunnel and picks someone up and dashes.,climbs out of the limo and opens a door.,0\n14103,lsmdc0043_Thelma_and_Luise-68329,6767,They are both leaving the restaurant now. As they hit the door they both,They are both leaving the restaurant now.,As they hit the door they both,gold,look down and complains to someone.,stare soberly at the scene.,break into a full run.,\"approach, shaking their heads, on their way over to a table.\",2\n14104,anetv_kWN4zFblj6o,12144,Several people take a pause as they try to catch on to the movements. The instructor,Several people take a pause as they try to catch on to the movements.,The instructor,gold,sits up behind them and shows her how her feet under the ropes.,calls out the instructions for several of the movements as well.,is doing hard back flips and flips while the crowd cheers for them.,hands the girls on to others before jumping up with a rope.,1\n14105,anetv_kWN4zFblj6o,9413,They are using steppers to exercise. They,They are using steppers to exercise.,They,gold,\"split on the side, going back and forth.\",continue to play the drums.,jump on and off the steppers as they go.,move in unison as they play.,2\n14106,anetv_kWN4zFblj6o,12143,Several people are in a gym doing step aerobics while being accompanied by music. Several people,Several people are in a gym doing step aerobics while being accompanied by music.,Several people,gold,take a pause as they try to catch on to the movements.,run through the yard and put the board into the principal's desk.,are then shown practicing asian activities.,are watching the woman play with her hands.,0\n14107,anetv_kWN4zFblj6o,9412,A group of people are inside a large gym. They,A group of people are inside a large gym.,They,gold,are using steppers to exercise.,are pulling on top of the bars together.,are playing a game of croquette.,are in an gym practicing heavy.,0\n14108,anetv_FExyWFc1nU0,11325,He jumps off the horse and ties the legs of a calf. He,He jumps off the horse and ties the legs of a calf.,He,gold,turns and turns to her in amazement.,stands up and walks back to his horse.,tries on his back and stands behind the bar.,\"jumps in the grass, then goes down and ropes a calf.\",1\n14109,anetv_FExyWFc1nU0,4259,The bull falls sideways on the dirt. The bull,The bull falls sideways on the dirt.,The bull,gold,skates to a circle then stops.,stops someone's ring and walks towards path.,tries and gets up.,went on the court.,2\n14110,anetv_FExyWFc1nU0,4258,A male riding a horse lassoes a bull. The bull,A male riding a horse lassoes a bull.,The bull,gold,walks with a logo around the arena.,goes back and misses the car.,falls sideways on the dirt.,is chasing a bull on the ground.,2\n14111,anetv_FExyWFc1nU0,4260,The bull tries and gets up. The male,The bull tries and gets up.,The male,gold,gets off the horse's horse.,raises the stilts from his head and throws him back on the mat.,\"leaves the horse, keeps the bull down, and ties the bull's legs together.\",bends down and spreads his legs on the bench.,2\n14112,anetv_FExyWFc1nU0,11324,A man is sitting on a horse. He,A man is sitting on a horse.,He,gold,jumps off the horse and ties the legs of a calf.,gets on the rope and swings.,wets his white stick comb.,smells an ice cream joint.,0\n14113,anetv_lxNV7FI-LQQ,5124,Many people are seen riding the camels one after another on the sand. The video,Many people are seen riding the camels one after another on the sand.,The video,gold,continues with several people riding along on the sides while stopping to walk through the yard.,ends with one shown wearing a white and yellow uniform.,continues on showing more people riding the camels and others leading in the front.,leads from the people playing the game.,2\n14114,anetv_lxNV7FI-LQQ,5123,A shot of a sunset leads into a large group of people riding camels along the beach. Many people,A shot of a sunset leads into a large group of people riding camels along the beach.,Many people,gold,are rafting down the river talking.,are seen riding the camels one after another on the sand.,are seen riding around on horses as well as riding horses along the street while the camera captures their movements.,wave to the camera with different people riding around on lakeside on the river.,1\n14115,lsmdc0002_As_Good_As_It_Gets-46263,8766,The two waitresses signal their protests. Someone,The two waitresses signal their protests.,Someone,gold,\"hangs upside down, with no interest.\",and his car turn down towards the road.,walks back into the restaurant proper.,takes in the other businessmen.,2\n14116,anetv_fL8Gzk7ALxQ,3687,A group of people is gathered in a circle. Two men,A group of people is gathered in a circle.,Two men,gold,are walking a white circle on each court.,are running down a large column.,are in the circle demonstrating a martial art.,are standing outside the field watching the children.,2\n14117,anetv_Y6UKk3t8Hj8,4122,\"A woman boxer, Jolie Glassman is demonstrating how to properly punch and box the punching bag. She\",\"A woman boxer, Jolie Glassman is demonstrating how to properly punch and box the punching bag.\",She,gold,ties the leg and stripe it on the floor and bend and put it on her stomach she also massages the weight.,continues pumping your legs and chest and swings it under it.,is in a gym demonstrating kicking and punching techniques.,emerges from the dead mayhem.,2\n14118,anetv_Y6UKk3t8Hj8,4121,\"The Livestrong website is showing a video on boxing. A woman boxer, Jolie Glassman\",The Livestrong website is showing a video on boxing.,\"A woman boxer, Jolie Glassman\",gold,is demonstrating how to properly punch and box the punching bag.,\"smaller, is also pointing to her body.\",\"shorts, stands at a wash sink.\",looks like an alleyway word crosses the street.,0\n14119,anetv_K_AFdv3PKp0,7346,A man is seen using a large sander against a wall moving the machinery all along the wall. The man,A man is seen using a large sander against a wall moving the machinery all along the wall.,The man,gold,continues pushing the pucks all over the hoop while other people cleans the side.,looks into the camera followed by the man and continues hammering around the sides.,continues sanding the wall and ends with him keeping it steady.,continues to drink the bullets as he walks.,2\n14120,lsmdc3079_THINK_LIKE_A_MAN-36778,10547,Someone's eyes dart searchingly. Someone,Someone's eyes dart searchingly.,Someone,gold,is seated among the photo of her husband.,sits beside someone on a modern sofa.,\"forces him to protege another, then shoves him through the partition.\",reacts sadly as his father looks and watches him.,1\n14121,anetv_gSkE0KCvves,7989,A man is seen riding a horse onto a field while swinging a rope and a young calf running in front of him. The man then,A man is seen riding a horse onto a field while swinging a rope and a young calf running in front of him.,The man then,gold,ropes two tricks on the camel while walking around and jumping back.,drops his rope and motions before prom to ride the calf from the calf.,throws the rope onto the calf and ties to animal up then walking away.,gets off running development his way and performs more tricks as more breaks the rope but high in ramp motion.,2\n14122,anetv_gSkE0KCvves,9804,A person is seen riding into a pit on a horse. The person,A person is seen riding into a pit on a horse.,The person,gold,goes to the end.,pushes a long horse out onto a field while others watch.,swings a rope and grabs a calf.,continues riding around on horses and chasing away in the distance.,2\n14123,anetv_gSkE0KCvves,9805,The person swings a rope and grabs a calf. He,The person swings a rope and grabs a calf.,He,gold,\"runs the dog at the end of the rope, kicking it several times.\",loses his shirt and goes slack for a while.,gives it up to climb back and forth.,ties up the calf and walks away.,3\n14124,anetv_wts5XRikF1Y,4,A man is shown weaving through the water on a board. He,A man is shown weaving through the water on a board.,He,gold,is lifting something open green waves.,raises his arms in the air as he goes over a wave.,is playing with the water playing water polo.,jumps maybe farther before the dive.,1\n14125,anetv_wts5XRikF1Y,16840,A camera pans around a large beach and zooms in on a person riding on a surf board. Another person,A camera pans around a large beach and zooms in on a person riding on a surf board.,Another person,gold,skateboard until the person is shown again running away in the end and falling back onto the board.,rides on the bridge and begins giving another thumbs up and riding on boards.,waves back from vines holding a fish swimming over the waves.,is seen riding on the waves while people sit around them.,3\n14126,anetv_wts5XRikF1Y,3,Several surfers ride the waves at a beach. A man,Several surfers ride the waves at a beach.,A man,gold,walks up alongside the man.,is shown weaving through the water on a board.,gets water surfing from the water.,talks to the camera.,1\n14127,anetv_wts5XRikF1Y,16841,Another person is seen riding on the waves while people sit around them. Several more shots,Another person is seen riding on the waves while people sit around them.,Several more shots,gold,are shown of people riding on a surf board as well as panning around the area.,are shown of people riding around and hugging one another into the crowd.,are seen of people running down the people track and celebrating their jumps afterwards.,are shown of the people as well as moves on the grass while the camera captures the movements.,0\n14128,anetv_WwcbpTANbeU,8143,A man is dressed in bungee gear by another man. He,A man is dressed in bungee gear by another man.,He,gold,is doing tricks with signs.,is shown in a pudgy little sign booth.,\"is jumping and running around, taunting a bull to the bull.\",\"jumps out, then swings back and forth over the thin waters.\",3\n14129,anetv_WwcbpTANbeU,8142,A view is seen of a deep canyon with a lift above it. A man,A view is seen of a deep canyon with a lift above it.,A man,gold,speaks to the camera and a player looks off.,performs martial arts moves in a track next to the crowd.,is dressed in bungee gear by another man.,is stretching out into a stream.,2\n14130,anetv_8b3ZBE0n3V8,9412,A boy walk in the room from the left doorway holding a red stuffed animal sits down at the table then put animal away. A girl walk in the room front the right doorway and,A boy walk in the room from the left doorway holding a red stuffed animal sits down at the table then put animal away.,A girl walk in the room front the right doorway and,gold,lets up again.,watch him on the side his back being put in prayer.,sits down at the table.,put his head inside.,2\n14131,anetv_8b3ZBE0n3V8,9413,They begin arm wrestling and the girl wins. the girl smiles at the camera sighting her victory then they both,They begin arm wrestling and the girl wins.,the girl smiles at the camera sighting her victory then they both,gold,move backwards and start running.,play together.,laugh and push ping balls then let one team to make her win.,get up to exit room from the same sides they entered in from.,3\n14132,anetv_KE2tDW9x9d8,8591,A girl is seen talking to the camera with her hand on her hip and leads into her holding up various ingredients. She then,A girl is seen talking to the camera with her hand on her hip and leads into her holding up various ingredients.,She then,gold,lays down tiles in the floor and begins blowing them around and ends by throwing a rag in afterwards.,\"grabs the contact lens, and then holds her contact lens.\",dips the cup in water and pours it into a pot.,mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side.,3\n14133,anetv_KE2tDW9x9d8,8592,She then mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side. She then,She then mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side.,She then,gold,lays the salad on the bread and puts it in a cheese tray.,sticks ingredients into a bowl and brings the seeds up.,\"garnishes another product as well as pour ingredients into batch, creating a cooking egg.\",presents the plate while speaking to the camera and holding up various liquids.,3\n14134,anetv_nB0JECwGK0c,2076,A young man was putting on a helmet to another young man who is inside a two - person sumo wrestler costume. Another man wearing a headphone,A young man was putting on a helmet to another young man who is inside a two - person sumo wrestler costume.,Another man wearing a headphone,gold,is talking while a man is standing behind him.,is shooting them both.,is behind and begins dancing and aiming at the man in the middle of the crowd.,is sitting on a chairs chair holding a half closed time pong ball.,0\n14135,anetv_nB0JECwGK0c,2081,\"The spectator stops the fight shoving the winning wrestler causing them to fall down. The audience help them again to get up, when they all in their feet again, they\",The spectator stops the fight shoving the winning wrestler causing them to fall down.,\"The audience help them again to get up, when they all in their feet again, they\",gold,talk for a while giving each other a high five.,are returning to the stage to find them.,stop and run off in the distance.,have to pose on their feet and begin arrows.,0\n14136,anetv_nB0JECwGK0c,2078,\"The two people in sumo wrestler is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume. The people in sumo wrestler costume\",\"The two people in sumo wrestler is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume.\",The people in sumo wrestler costume,gold,\"over the bar, while a person with black shorts continue to wrestle, then a larger sumo wrestler checked.\",get up talk with their opponent while hitting each other for a while then another man gives the signal to start the fight.,waved by grabbing different cars as the referee and wrestling winner stand in the center of the video wrestling.,talk to each other during with each sumo wrestling match.,1\n14137,anetv_nB0JECwGK0c,2079,\"They start fighting and fall down, all of them can't get up and the people watching them help them to get up while some people are holding camera. They\",\"They start fighting and fall down, all of them can't get up and the people watching them help them to get up while some people are holding camera.\",They,gold,hit a smaller ball with more tools mounted to the side.,continue dancing the way about this new routine because the girls also seems to be having a certain time.,talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt.,laugh at the time and go in great distances when one walks by one.,2\n14138,anetv_nB0JECwGK0c,18759,Other men are wearing the same costume and are wresting on a red carpet and men are helping them. men,Other men are wearing the same costume and are wresting on a red carpet and men are helping them.,men,gold,are doing different flips showing hand gestures and some sumo wrestlers.,are in the living room showing how they use green shoes.,are playing volleyball on the racquetball court.,are watching them around the carpet.,3\n14139,anetv_nB0JECwGK0c,2077,Another man wearing a headphone is talking while a man is standing behind him. The two people in sumo wrestler,Another man wearing a headphone is talking while a man is standing behind him.,The two people in sumo wrestler,gold,\"perform martial arts on the gym floor during other matches, with the man in the background.\",pulls one other wrestler karate in slow motion.,engage in a motocross fight.,\"is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume.\",3\n14140,anetv_nB0JECwGK0c,2080,They talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt. The spectator,They talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt.,The spectator,gold,stops the fight shoving the winning wrestler causing them to fall down.,\"walks out under the banner with the brown cape, because the man is stretching and takes a step.\",gets on a padded board and punches someone's butt.,\"goes on doing some handed, up but still, which retract, and drops the spring down.\",0\n14141,anetv_nB0JECwGK0c,2075,A series of information is shown. A young man,A series of information is shown.,A young man,gold,stands on a table and talks to the camera while standing in front of a camera.,was putting on a helmet to another young man who is inside a two - person sumo wrestler costume.,is seen wearing a helmet and wearing a blue suit and helmet.,\"is in a backyard, talking and he has the red cup in his hand.\",1\n14142,lsmdc3011_BLIND_DATING-896,10283,\"Now at home, someone and someone stand by his open closet. Someone\",\"Now at home, someone and someone stand by his open closet.\",Someone,gold,sits across from a brunette with purple streaks in her hair.,tries to open the door door.,wears the hats as someone watches them.,frowns in his tracks.,0\n14143,lsmdc3011_BLIND_DATING-896,10284,Someone sits across from a brunette with purple streaks in her hair. She,Someone sits across from a brunette with purple streaks in her hair.,She,gold,\"tinted hat gazes downward, her brow knitted.\",\"huddled out from the report, a photo shows the wing to now someone standing alone in her office.\",stands at its table on her feet.,\"smiles, sitting back in her chair.\",3\n14144,lsmdc3011_BLIND_DATING-896,10281,\"As someone stands by, someone holds the weights over his head. Someone\",\"As someone stands by, someone holds the weights over his head.\",Someone,gold,leans on the coconut chopper.,racks the weights and sits up.,makes an enclosed grab of his head as he undoes applause behind the railings.,\"holds his head, trying to get out what he is going.\",1\n14145,lsmdc3011_BLIND_DATING-896,10280,\"Someone watches women spreading their legs in thigh machines. As someone stands by, someone\",Someone watches women spreading their legs in thigh machines.,\"As someone stands by, someone\",gold,holds the weights over his head.,places his hands in the lean doorway as someone slouches.,rubs the dead man's leg.,leans down in his car.,0\n14146,anetv_C1IuvUSmcvA,3581,They are taking the inside seeds out of the pumpkin. They,They are taking the inside seeds out of the pumpkin.,They,gold,are using their hands to carve the shaped of a pumpkin.,start chopping and dipping onto a wooden table on a pumpkin.,start clipping different pumpkins on the wall.,put a candle in the pumpkin.,3\n14147,anetv_C1IuvUSmcvA,3580,A person is carving a pumpkin outside. They,A person is carving a pumpkin outside.,They,gold,begin to scan the walkway.,are engaged in an instructional fight.,are in a fight and run towards each other.,are taking the inside seeds out of the pumpkin.,3\n14148,anetv_C1IuvUSmcvA,5395,Man is unseeding the pumpkin and open the eyes and the teeth in the dark. a candle,Man is unseeding the pumpkin and open the eyes and the teeth in the dark.,a candle,gold,says the doctor beneath him.,is inside a pumpkin in the dark.,walks on the deck and is shining it.,is dancing in the sky as the man appears to pull out fire.,1\n14149,lsmdc1015_27_Dresses-79591,38,She starts getting changed in the back seat. The cabby,She starts getting changed in the back seat.,The cabby,gold,makes up with other speed.,hits various pins on her right side then it goes off.,looks in his mirror.,tosses the skateboard down to the ground the hood of the car gets up and she picks it up.,2\n14150,lsmdc1015_27_Dresses-79591,36,Someone rushes out of the ceremony. She,Someone rushes out of the ceremony.,She,gold,glances down a window as a nurse approaches to someone.,\"throws his arms around someone, then releases his grip on the boy's backs.\",spots someone at someone's door.,hurries over to the cab.,3\n14151,lsmdc1015_27_Dresses-79591,35,Someone nudges her bored friend. Someone,Someone nudges her bored friend.,Someone,gold,rushes out of the ceremony.,reaches out to someone.,walks outside with a mother.,stares longingly at the large swollen face.,0\n14152,lsmdc1015_27_Dresses-79591,39,The cabby looks in his mirror. She,The cabby looks in his mirror.,She,gold,leaves the office and goes to a table holding a bottle.,arches his brow coyly.,gets out of the cab wearing a red sari.,kneels on a chair opposite him.,2\n14153,lsmdc1015_27_Dresses-79591,37,She hurries over to the cab. She,She hurries over to the cab.,She,gold,checks on a martha screen.,\"continues her climb, picks up a drop, and climbs into the back behind her.\",\"shuts the door, stands at the door and looks out.\",starts getting changed in the back seat.,3\n14154,lsmdc0013_Halloween-54020,5639,He turns away from the street. It,He turns away from the street.,It,gold,pulls him away from the suv.,is empty except for a station wagon parked several blocks away.,is being attached to it.,stops and get up.,1\n14155,lsmdc0013_Halloween-54020,5632,\"She stares at the house, puzzled. Someone\",\"She stares at the house, puzzled.\",Someone,gold,looks back at the phone and shuts his eyes.,moves from the window back to the telephone and dials someone's number.,brings both sandbags back to the door where someone is sitting.,dials a number on the hip - sized phone.,1\n14156,lsmdc0013_Halloween-54020,5623,The man pulls the cord tighter. She,The man pulls the cord tighter.,She,gold,grips the end with the handle beam.,\"opens her mouth, trying to get air, then slowly slumps forward and remains motionless.\",sits down on a branch.,squeeze out the door.,1\n14157,lsmdc0013_Halloween-54020,5642,The station wagon moves closer. He,The station wagon moves closer.,He,gold,bangs the rider's head against the cane.,holds someone's pistol.,holds someone firmly in the ambulance.,recognizes it and races forward.,3\n14158,lsmdc0013_Halloween-54020,5657,She knocks on the door and rings the doorbell. She,She knocks on the door and rings the doorbell.,She,gold,drapes the paper around to her.,pulls someone's phone into her ear.,\"stands there a moment, listening, as if to hear some sound of life from the inside.\",\"closes the door, turns it out, then hurries back.\",2\n14159,lsmdc0013_Halloween-54020,5633,Someone moves from the window back to the telephone and dials someone's number. Someone finally,Someone moves from the window back to the telephone and dials someone's number.,Someone finally,gold,waits outside someone's office.,hangs up the phone.,softly dials a remote.,steps up to the stereo.,1\n14160,lsmdc0013_Halloween-54020,5653,\"She picks up her speed, now up the sidewalk. The house\",\"She picks up her speed, now up the sidewalk.\",The house,gold,\"steps up with her arms outstretched, then absently tries to dial again.\",is on her way.,looms closer and closer.,is decorated for a christmas tree as she drives by in her hospital room.,2\n14161,lsmdc0013_Halloween-54020,5651,\"She moves down the street, shivering in the chill wind. Someone's car\",\"She moves down the street, shivering in the chill wind.\",Someone's car,gold,\"pulls his up, revealing another bruised face.\",pulls up outside the city.,arrives at tramp facility.,sits there on the street.,3\n14162,lsmdc0013_Halloween-54020,5660,She turns and walks through the breezeway between the house and garage around to the back door. Someone,She turns and walks through the breezeway between the house and garage around to the back door.,Someone,gold,\"comes down the corridor, opened its door.\",\"takes his keys to her, nervous, graceful, and dons his neat, seedy - hairline.\",pulls open the door and steps into the house.,\"wanders away from the store and hears the footsteps, voices imperceptibly heard.\",2\n14163,lsmdc0013_Halloween-54020,5645,She takes a key out of her purse and again steps to the window. She,She takes a key out of her purse and again steps to the window.,She,gold,scrapes the window as she watches tensely.,lights illuminating her empty apartment.,steps to the front door.,fingers lightly on the phone as they enter the bedroom.,2\n14164,lsmdc0013_Halloween-54020,5637,Someone sits in silence behind the hedge watching someone house. For a moment he,Someone sits in silence behind the hedge watching someone house.,For a moment he,gold,gets out of his chair and tries to figure out the benefits of them in another hotel.,\"glances back at someone house, then starts down the quiet residential street.\",returns to the plain and glances down at someone with the big cactus.,\"stops, listening with his book.\",1\n14165,lsmdc0013_Halloween-54020,5631,Someone's car is parked in front of someone house. She,Someone's car is parked in front of someone house.,She,gold,is pulling someone from the door of a train.,sets the phone down.,\"stares at the house, puzzled.\",inserts a phone card into a bin and dials the number.,2\n14166,lsmdc0013_Halloween-54020,5635,People are sound asleep on the bed. She,People are sound asleep on the bed.,She,gold,downs someone's handkerchief in the back of his shirt and knocks him hard under the bed.,\"looks at them a moment, then closes the door behind her.\",watches wide - eyed as he lifts his phone.,gets her hair down and gets dragged past a bush as she goes to the door.,1\n14167,lsmdc0013_Halloween-54020,5614,She starts to dial the phone. The ghost,She starts to dial the phone.,The ghost,gold,starts walking toward her.,holds the phone receiver open.,seems to be focused on answer.,emerges from the x.,0\n14168,lsmdc0013_Halloween-54020,5650,The wind whips her clothes and hair. She,The wind whips her clothes and hair.,She,gold,\"stands up toward the net, alarmed, not dropping it.\",drops across the floor.,blends it to other women.,\"moves down the street, shivering in the chill wind.\",3\n14169,lsmdc0013_Halloween-54020,5627,Suddenly the phone goes dead. Someone,Suddenly the phone goes dead.,Someone,gold,\"stares at the receiver, then hangs up.\",\"walks slowly into the supply room, peers in through the floorboards.\",sits on an island bench at one of the doors.,looks down on someone's bed and picks the door open.,0\n14170,lsmdc0013_Halloween-54020,5661,Someone pulls open the door and steps into the house. Someone,Someone pulls open the door and steps into the house.,Someone,gold,is not in trouble.,follows someone out through the shop.,\"goes into the living room, and sits in front of him.\",stands there a moment staring into the blackness.,3\n14171,lsmdc0013_Halloween-54020,5643,He recognizes it and races forward. Camera,He recognizes it and races forward.,Camera,gold,\"tracks in to the station wagon, right up to the state emblem emblazoned on the side.\",explodes through many accompanying dogs.,is wearing a red bottle with his son's too.,watches from the cracks in the pews.,0\n14172,lsmdc0013_Halloween-54020,5638,\"For a moment he glances back at someone house, then starts down the quiet residential street. He\",\"For a moment he glances back at someone house, then starts down the quiet residential street.\",He,gold,\"stops romantic for a moment, looking bored.\",taps his darkened shop.,turns away from the street.,follows with walkway owners as he has worked up the peephole in the street.,2\n14173,lsmdc0013_Halloween-54020,5630,\"The street is quiet, dark and windy. Someone's car\",\"The street is quiet, dark and windy.\",Someone's car,gold,stops outside a truck heading down the road towards the exit.,is parked in front of someone house.,is driving down a highway.,is parked by the curb.,1\n14174,lsmdc0013_Halloween-54020,5628,\"Someone stares at the receiver, then hangs up. She\",\"Someone stares at the receiver, then hangs up.\",She,gold,looks up and someone glares.,tosses her phone back.,crosses to the window and looks out toward someone house.,spanks her eyes and leaves.,2\n14175,lsmdc0013_Halloween-54020,5621,\"Someone hears squeals, and rustling sounds across the phone. Someone\",\"Someone hears squeals, and rustling sounds across the phone.\",Someone,gold,shields him from the cloak.,moves a gun down the street.,sprints past the egg and continually turns.,continues to hear weird sounds.,3\n14176,lsmdc0013_Halloween-54020,5654,The house looms closer and closer. Camera,The house looms closer and closer.,Camera,gold,moves up to the front of someone house.,emerges from drags's view.,\"goes with it, also tasteful through hostages.\",view shows someone being closely cropped in the spot.,0\n14177,lsmdc0013_Halloween-54020,5655,Camera moves up to the front of someone house. Someone,Camera moves up to the front of someone house.,Someone,gold,emerges from the shadows and leans back on the roof.,walks up to the front porch.,\"scowls and looks back, rinsing and marshy, then moves away.\",carries someone holding shoes on his lap.,1\n14178,lsmdc0013_Halloween-54020,5619,Someone hears someone's hello as the ghost grabs the phone. He,Someone hears someone's hello as the ghost grabs the phone.,He,gold,\"yanks out a mail and glances at the other mart - vibrate, keeping the beau down.\",takes the telephone cord and wraps it around her neck.,grabs it and someone takes a bong from him.,\"presses her eyes between her fingers and freezes, bringing the phone to a mirror with her hands over her head.\",1\n14179,lsmdc0013_Halloween-54020,5658,\"Someone thinks a moment, then looks to the street. She\",\"Someone thinks a moment, then looks to the street.\",She,gold,kicks a lightning bolt off the bat.,\"crosses to where someone is separating, observing with someone.\",is washed by the partially shuttered open.,\"steps off the porch and walks around to the side of the house, camera tracking with her.\",3\n14180,lsmdc0013_Halloween-54020,5617,Someone holds the phone to her ear. The ghost,Someone holds the phone to her ear.,The ghost,gold,does n't look at her.,\"looks up and smiles, surprised.\",paces away as someone gets to one side.,walks up slowly behind her.,3\n14181,lsmdc0013_Halloween-54020,5625,Someone reaches up and pulls on the sheet. It,Someone reaches up and pulls on the sheet.,It,gold,'s the man's wand.,stops in front of her.,\"go limp, covered in sex.\",\"slides off the man, to reveal the grotesque halloween mask.\",3\n14182,lsmdc0013_Halloween-54020,5649,\"Moving shot toward someone house, dark and ominous. The wind\",\"Moving shot toward someone house, dark and ominous.\",The wind,gold,soaks a canopy and a low up.,changes to appearance and push ahead.,\"rustles, breaking dust.\",whips her clothes and hair.,3\n14183,lsmdc0013_Halloween-54020,5613,She walks over to the phone. She,She walks over to the phone.,She,gold,opens it and takes a seat.,\"stops for a moment, then stops.\",pauses and takes her hand.,starts to dial the phone.,3\n14184,lsmdc0013_Halloween-54020,5644,\"Camera tracks in to the station wagon, right up to the state emblem emblazoned on the side. Someone\",\"Camera tracks in to the station wagon, right up to the state emblem emblazoned on the side.\",Someone,gold,points weakly at the hedge.,stands by his car glancing up and down the empty street.,finds someone writing a chess swipe card.,runs up the hill to a police car and gets in through the market.,1\n14185,lsmdc0013_Halloween-54020,5629,She crosses to the window and looks out toward someone house. The street,She crosses to the window and looks out toward someone house.,The street,gold,\"is quiet, dark and windy.\",\"slows, followed by people, walking up the street.\",comes to a stop.,\"lifts down someone, interviewed.\",0\n14186,lsmdc0013_Halloween-54020,5656,Someone walks up to the front porch. She,Someone walks up to the front porch.,She,gold,catches sight of him.,knocks on the door and rings the doorbell.,does a hand spin on her bike.,pulls off the flap where he looks at her.,1\n14187,lsmdc0013_Halloween-54020,5615,Someone is sitting on the couch knitting. Someone,Someone is sitting on the couch knitting.,Someone,gold,crosses to answer the phone.,has a pair of scissors on the crack.,takes out his hand and turns out a tattoo.,has given her a car.,0\n14188,lsmdc0013_Halloween-54020,5662,Someone searches for the wall light. She,Someone searches for the wall light.,She,gold,crosses to the door of the hooded sweatshirt.,lowers the van upside down.,is even under the seat with the anklet.,looks again into the darkness.,3\n14189,lsmdc0013_Halloween-54020,5640,\"Frustrated, he gets up and walks to the street. Slowly someone\",\"Frustrated, he gets up and walks to the street.\",Slowly someone,gold,\"enters the station, gets up and walks away.\",starts walking down the street toward the station wagon.,\"approaches the waiting man, his back to the doorway.\",climbs into the back seat at the hospital.,1\n14190,lsmdc0013_Halloween-54020,5659,\"She steps off the porch and walks around to the side of the house, camera tracking with her. She\",\"She steps off the porch and walks around to the side of the house, camera tracking with her.\",She,gold,someone's not walking through.,shows the portfolio and holds her gaze.,turns into the corridor.,turns and walks through the breezeway between the house and garage around to the back door.,3\n14191,lsmdc0013_Halloween-54020,5641,Slowly someone starts walking down the street toward the station wagon. Tracking shot with someone as he,Slowly someone starts walking down the street toward the station wagon.,Tracking shot with someone as he,gold,walks up the street.,moves through the snack shop.,pulls off a heavy bar.,puts the receiver to his ear.,0\n14192,lsmdc0013_Halloween-54020,5616,Someone crosses to answer the phone. Someone,Someone crosses to answer the phone.,Someone,gold,\"over the theater, someone and his aide stand at a booth still in a bar where someone joins one launches a beat.\",holds the phone to her ear.,checks again on page monitors.,turns and goes into the hall.,1\n14193,lsmdc0013_Halloween-54020,5646,She steps to the front door. She,She steps to the front door.,She,gold,puts the key to someone house in her pocket.,puts someone in a box.,opens revealing her bedroom.,heads to an archway.,0\n14194,lsmdc0013_Halloween-54020,5634,Someone finally hangs up the phone. She,Someone finally hangs up the phone.,She,gold,\"stands for a moment considering it, then turns and walks upstairs.\",peers over his shoulder.,applauds him and he makes his way through.,looks away from her camera.,0\n14195,lsmdc0013_Halloween-54020,5636,\"She looks at them a moment, then closes the door behind her. Someone\",\"She looks at them a moment, then closes the door behind her.\",Someone,gold,\"at the window, someone goes up and kisses her as they kiss.\",smooths out the window and pulls her outside the window.,\", she blows out a barrel of liquid and drops it to the ground.\",sits in silence behind the hedge watching someone house.,3\n14196,lsmdc0013_Halloween-54020,5647,She puts the key to someone house in her pocket. Someone,She puts the key to someone house in her pocket.,Someone,gold,dances in the house with her head against the seat.,enters the classroom and opens a bottle of proper paint.,locks someone house and walks away out into the street.,jumps into the cell.,2\n14197,lsmdc0013_Halloween-54020,5622,Someone tries to fight off the ghost. The man,Someone tries to fight off the ghost.,The man,gold,carefully pushes the paper away.,pulls the cord tighter.,moves toward canvas.,pulls into a sack with others.,1\n14198,lsmdc0013_Halloween-54020,5620,He wraps the cord around her neck. Someone,He wraps the cord around her neck.,Someone,gold,hurries away from the museum's facade.,\"crawls up against the carved ceiling, lying down in bed.\",\"spits into someone's bag, making his way closer.\",\"hears squeals, and rustling sounds across the phone.\",3\n14199,lsmdc0013_Halloween-54020,5652,Someone's car sits there on the street. She,Someone's car sits there on the street.,She,gold,lowers her head once.,\"turns her head, peering at someone.\",\"picks up her speed, now up the sidewalk.\",glances over her shoulder.,2\n14200,lsmdc0013_Halloween-54020,5612,She is nude and looks beautiful and sensuous in the candlelight. She,She is nude and looks beautiful and sensuous in the candlelight.,She,gold,offers his hand to someone.,walks over to the phone.,\"fastens the chair's tube, smokes a cigar, swigs from the container.\",looks as the owl charges at a fallen man.,1\n14201,lsmdc1015_27_Dresses-79852,5361,\"Someone opens her mouth, but no sound comes out. She\",\"Someone opens her mouth, but no sound comes out.\",She,gold,hangs up and hears his introduction.,\"stands awkwardly, biting her lip, her eyes brimming with tears.\",nudges someone to rest her his cane.,drops her long goggles to the docks.,1\n14202,lsmdc1015_27_Dresses-79852,5362,\"She stands awkwardly, biting her lip, her eyes brimming with tears. Someone\",\"She stands awkwardly, biting her lip, her eyes brimming with tears.\",Someone,gold,feels her friend's pain as someone hurries out of the restaurant.,looks up as someone lounges near a pool's lockers.,\"tries to keep his grip under his arm, and gives him a weak smile.\",glances down to her clock.,0\n14203,anetv_n96adnrNnno,9121,\"Two Asians a man and a female are sitting down at a table before going to the inside of a gym. In the gym, several young girls\",Two Asians a man and a female are sitting down at a table before going to the inside of a gym.,\"In the gym, several young girls\",gold,\"are playing rock, scissors and cleaning.\",begin doing gymnastics and performing before coming back and doing an interview with the reporter.,pass a group of kids who are practicing jumps on the wooden bar.,use their somersaults to push the ball back and forth across the mat.,1\n14204,anetv_n96adnrNnno,9122,\"In the gym, several young girls begin doing gymnastics and performing before coming back and doing an interview with the reporter. Next, a young man\",\"In the gym, several young girls begin doing gymnastics and performing before coming back and doing an interview with the reporter.\",\"Next, a young man\",gold,\"approaches the bars, does his routine, and then comes back to to his interview.\",\"solves the rubix cube twice, up at three times in between minutes and 2 seconds.\",watches on a little game and displays the pole competition technique.,raises his arms and shows your balance.,0\n14205,anetv_bz9R-Xa5xqM,7944,A man wearing a black shirt stands in a living room with a red and black accordion. The musician,A man wearing a black shirt stands in a living room with a red and black accordion.,The musician,gold,continues playing the saxophone and sings to the camera.,is playing a drum set in his hand as an audience is watching.,sits and watches on the side at his feet.,sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion.,3\n14206,anetv_bz9R-Xa5xqM,7945,The musician sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion. The man then,The musician sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion.,The man then,gold,stops playing and continues to play the drums.,begins moving around of his kayak to show kids playing object around.,demonstrates playing an accordian using a brown accordion.,wins the serve as people play for the camera while making hand gestures.,2\n14207,anetv_mvWKOkRzfos,1168,A person falls into the sand. A woman in a blue shirt,A person falls into the sand.,A woman in a blue shirt,gold,is talking to the camera.,is standing next to a pool.,sits in the pool.,stands on the field holding an orange onto an orange ball.,0\n14208,anetv_mvWKOkRzfos,1167,People are playing volleyball in the sand. A person,People are playing volleyball in the sand.,A person,gold,stands on the field.,is washing their hands.,is playing a game of croquette.,falls into the sand.,3\n14209,anetv_ZOKC86lF6E8,1160,\"She is using frisbees to train a dog. She throws the frisbees, and the dog\",She is using frisbees to train a dog.,\"She throws the frisbees, and the dog\",gold,chases and catches them.,lands on the tray of dogs doing tricks.,jumps near the dog.,jumps on to head.,0\n14210,anetv_ZOKC86lF6E8,1159,A woman is in a backyard of a house. She,A woman is in a backyard of a house.,She,gold,pushes the lawnmower with a paintbrush.,is holding an iron and blow dries it.,is using frisbees to train a dog.,is skiing after a day making it.,2\n14211,lsmdc3033_HUGO-14820,11350,\"Someone glances over her shoulder at her godmother. Smiling, someone\",Someone glances over her shoulder at her godmother.,\"Smiling, someone\",gold,steps out of the garden and playfully shoots her nuts in her hands.,\"walks into the house, watching someone.\",steps up to someone.,marches back to the cashier's building.,2\n14212,anetv_2YSsqivrvR4,1137,The person begins playing the guitar while looking over to the camera. The man,The person begins playing the guitar while looking over to the camera.,The man,gold,continues playing while the man continues harmonica the piano.,continues drumming while the camera pans around the television.,continues playing and stops moving his hand out of frame.,sits back on his teeth and talks to another camera.,2\n14213,anetv_2YSsqivrvR4,1136,A person is seen sitting on the edge of a bed carrying a guitar. The person,A person is seen sitting on the edge of a bed carrying a guitar.,The person,gold,washes the dog with their hands and does the sit ups.,begins playing the guitar while looking over to the camera.,is then seen singing under a surface as well as marching back to the room.,continues brushing the fur and pushing the leaves with the brush.,1\n14214,lsmdc3012_BRUNO-4392,17958,He zips the tent back up. Someone,He zips the tent back up.,Someone,gold,\"stalks back toward someone's tent, totally naked.\",covers her with a big sigh.,sticks her tongue in the back.,unfolds a letter and glares at the worktop.,0\n14215,lsmdc3012_BRUNO-4392,17957,\"He unzips the flap, and peeks inside. He\",\"He unzips the flap, and peeks inside.\",He,gold,springs down to leave in front of him.,throws a button at a number.,zips the tent back up.,reads them as they head inside.,2\n14216,lsmdc3012_BRUNO-4392,17955,A green - hued night - vision vision shows four tents glows from within. Someone,A green - hued night - vision vision shows four tents glows from within.,Someone,gold,\"creeps toward one, and bends close.\",gives the letter to him.,ducks down and digs her arms around her.,stifles a faint smile.,0\n14217,lsmdc3012_BRUNO-4392,17956,\"Someone creeps toward one, and bends close. He\",\"Someone creeps toward one, and bends close.\",He,gold,places her hand over her mouth.,peeks away from the snake.,\"unzips the flap, and peeks inside.\",drives ahead on the irritated beast.,2\n14218,lsmdc3012_BRUNO-4392,17954,\"Now, a time appears 2: 23 a. m. A green - hued night - vision vision\",\"Now, a time appears 2: 23 a. m.\",A green - hued night - vision vision,gold,shows four tents glows from within.,shows someone being shot by a giant figurine.,shows someone and the concert of a warm stage.,shows off hot travelers.,0\n14219,lsmdc3012_BRUNO-4392,17959,\"Now, words appear: One week later. Someone\",\"Now, words appear: One week later.\",Someone,gold,wears a buttoned - down shirt.,eyes the worker as he saunters on.,is at a tree in the garden.,pick up a shot and race to meet him.,0\n14220,lsmdc3012_BRUNO-4392,17953,\"Someone continues to gaze upward. His legs crossed tightly, and his hands\",Someone continues to gaze upward.,\"His legs crossed tightly, and his hands\",gold,\"arching the wound in his neck, his jaw knotted.\",are too tight loose.,drop at the back of his head.,\"folded neatly on his knee, lowering his stare.\",3\n14221,anetv_O3HFalRZVts,12273,Then ham is place on the bread. Next beef,Then ham is place on the bread.,Next beef,gold,\"is shown as cucumbers as items of pasta and cheese, then is prepared.\",are marijuana and boiling vegetables.,are both removed and added.,is place don the bread.,3\n14222,anetv_O3HFalRZVts,12274,Next beef is place don the bread. Cheese is placed on top of the meet then various vegetables,Next beef is place don the bread.,Cheese is placed on top of the meet then various vegetables,gold,are place on top of the sandwich.,are lifted onto the meat.,start creating the pasta sandwich without the use of a knife.,are placed through an oven.,0\n14223,anetv_O3HFalRZVts,12272,Turkey is placed on the bred. then ham,Turkey is placed on the bred.,then ham,gold,is placed in a bowl and some ingredients are added to the bowl called mango.,is place on the bread.,is added to her pasta.,is sliced onto the pasta.,1\n14224,anetv_O3HFalRZVts,13936,\"Then, the person puts lettuce, tomatoes, cucumber, onions and pepper. After, the person\",\"Then, the person puts lettuce, tomatoes, cucumber, onions and pepper.\",\"After, the person\",gold,\"cuts in two the sandwich, wraps and put it in a bag.\",puts a pan of juice on the top of the cake.,removes a rubber cup with a sandwich and sprinkles seasoning.,puts chocolate in the pan and arranges the bowl around the man's feet.,0\n14225,anetv_O3HFalRZVts,13935,\"A person cuts a long bread and puts ham and cheese. Then, the person\",A person cuts a long bread and puts ham and cheese.,\"Then, the person\",gold,\"adds parsley, oil and oil and butter.\",uses a pallet chisel the cake together.,\"puts lettuce, tomatoes, cucumber, onions and pepper.\",adds oil and lemon and salt in a silicone pan.,2\n14226,anetv_q4Oy6EDTJiM,18700,He is spraying a small dog with a hose. He,He is spraying a small dog with a hose.,He,gold,lifts the dog up out of the sink.,is rubbing the vent on the dog.,does an occasional blow sweep across the floor.,walks up to a crowd of people behind him.,0\n14227,anetv_q4Oy6EDTJiM,18699,A man is bending over a sink. He,A man is bending over a sink.,He,gold,\"takes a rag from over the sink, putting it in his mouth.\",is carrying a shaving machine with a pressure washer.,is putting a pair of shaving glass on the side of his face.,is spraying a small dog with a hose.,3\n14228,anetv_q4Oy6EDTJiM,18701,He lifts the dog up out of the sink. He,He lifts the dog up out of the sink.,He,gold,starts scrubbing the shoe with the mop.,takes his rubber gloves off.,demonstrates his beer with it.,opens the door for the washing hose.,1\n14229,anetv_q4Oy6EDTJiM,3816,He notices that there is some poop at the bottom of the sink so he lifts the dog out of the sink and rinses the poop down the drain then places the dog back in the sink. When he is done washing the dog he,He notices that there is some poop at the bottom of the sink so he lifts the dog out of the sink and rinses the poop down the drain then places the dog back in the sink.,When he is done washing the dog he,gold,removes his gloves and throws them at the camera person.,sits and grabs it but it is n't and wakes it.,arranges a towel on the toothbrush and rubs it back quickly.,breaks it again.,0\n14230,anetv_OMGTFZ9csg0,14730,A man is shown putting skis together at a rapid pace. The man,A man is shown putting skis together at a rapid pace.,The man,gold,is filmed the river running away from the back.,stops at the pole.,\"kneels down a hill, slowly talking, then begins skating around.\",finishes up the skis and leaves his hat on top of the skis.,3\n14231,anetv_r9eXOf4hvCE,12724,People are sitting down behind him watching. He,People are sitting down behind him watching.,He,gold,starts five kicks and flipping and the room kicks them.,is lifting himself up on treadmill handles.,is surfing on a set of jumping frisbees.,is blowing the omelette in half.,1\n14232,anetv_r9eXOf4hvCE,12723,A man is lifting himself up on two bars. People,A man is lifting himself up on two bars.,People,gold,are fighting over a clock.,clap his hands on a slack line.,are shown riding on jumps.,are sitting down behind him watching.,3\n14233,anetv_r9eXOf4hvCE,9092,Several men are shown in various location lifting them selves up in a planking position on two bars. One boy,Several men are shown in various location lifting them selves up in a planking position on two bars.,One boy,gold,appears in the gym and does his backwards on the elliptical as he does multiple lift ups.,stands by two shoes and continues to talk while several other men and watch people perform.,is seen pushing a chair past the camera while another man watches on a group.,lifts the kid up and twirls it around his neck and throws him in the air one more time.,0\n14234,anetv_r9eXOf4hvCE,9093,\"One boy appears in the gym and does his backwards on the elliptical as he does multiple lift ups. As he is doing them, he\",One boy appears in the gym and does his backwards on the elliptical as he does multiple lift ups.,\"As he is doing them, he\",gold,\"drops them off, then puts his hand before an inflated body and thrusts his arms.\",concentrates extremely hard on holding his feet up ensuring that he does n't hit the boxing bag in front of him.,looks up to see and goes in the opposite direction.,\"is shown again back again indoors, while people look on.\",1\n14235,anetv_XoCvj2IbVGE,1112,A person; s hand is seen turning a knob followed by their foot stepping on a button and a man holding up an iron. He,A person; s hand is seen turning a knob followed by their foot stepping on a button and a man holding up an iron.,He,gold,makes a persons tap while a woman with a silver shirt and a close up of him.,points to the man and then holds off the other side from the gym and eventually that seam running came into comfort.,adjusts more settings while testing the iron and begins ironing a shirt on a table.,continues to hurl the bike in moving the handles in the floor and when her landing she is shown in a flash while sitting on,2\n14236,anetv_XoCvj2IbVGE,1113,He adjusts more settings While testing the iron and begins ironing a shirt on a table. The men,He adjusts more settings While testing the iron and begins ironing a shirt on a table.,The men,gold,continues ironing the iron and then folding the shirt out and ironing the other's with a shirt.,continues to flip around the shirt and iron and en by showing off the ironing machine to the camera.,iron him down on a chair to clean out from underneath.,turn in his chair to watch.,1\n14237,anetv_Ig_AvatvYrk,5616,He takes the scissors too and trims his hair. He then,He takes the scissors too and trims his hair.,He then,gold,blow dries his hair.,continues rubbing color on her face and below in motion.,\"walks away to the camera, followed by his father walking over to the man who poses alongside her.\",uses the scissors to rub the rags all over his heads by using it.,0\n14238,anetv_Ig_AvatvYrk,5610,Then he takes a spray bottle and sprays his hair with water and combs it. He then,Then he takes a spray bottle and sprays his hair with water and combs it.,He then,gold,takes a garment and irons the curls in the well.,places a braid into the woman's hair and gives it to her face.,rubs the hairspray on the face then adds a soft fluid stain.,takes a razor and begins shaving the sides and the back of his head.,3\n14239,anetv_Ig_AvatvYrk,5619,He then combs the hair to style it. He,He then combs the hair to style it.,He,gold,melts the skin into the glass.,runs his fingers through the hair to finish off the look.,continues cutting his hair and smiling to the camera.,continues to properly blow the leaves while looking into the camera.,1\n14240,anetv_Ig_AvatvYrk,5617,He then blow dries his hair. He,He then blow dries his hair.,He,gold,takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair.,irons his wet shirt.,looks at the camera and cuts in two.,then trims the hair.,0\n14241,anetv_Ig_AvatvYrk,5609,There is a young man dressed in a black shirt going round in circles to show his hair from the front and back. Then he,There is a young man dressed in a black shirt going round in circles to show his hair from the front and back.,Then he,gold,takes a spray bottle and sprays his hair with water and combs it.,\"begins playing a parallel guitar while strumming, even hop and cymbals.\",pauses with a makeup brush on his cheek with a towel.,drops there falls on the table while the camera follows.,0\n14242,anetv_Ig_AvatvYrk,5611,He then takes a razor and begins shaving the sides and the back of his head. He,He then takes a razor and begins shaving the sides and the back of his head.,He,gold,then shows how to dip the razor onto the side showing the eye and shave it with the peeler.,picks it up and starts himself in the end.,takes a pair of scissors and starts trimming the top part of hair.,continues shaving his hair while he continues to play in the mirror.,2\n14243,anetv_Ig_AvatvYrk,5618,He takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair. He then,He takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair.,He then,gold,combs the hair to style it.,turns and hustles the man lotion down the lane until he is finished.,smears it down to his eye while putting on lipstick.,uses his right hand to turn to be picking it up.,0\n14244,anetv_Ig_AvatvYrk,5615,He takes the razor again and shaves the sides. He,He takes the razor again and shaves the sides.,He,gold,holds up a sharpening tool while once complete he has his hands on his head.,cuts and shaves all of the leg muscles.,is kneeling down next to a wall.,takes the scissors too and trims his hair.,3\n14245,anetv_Ig_AvatvYrk,5612,He takes a pair of scissors and starts trimming the top part of hair. He,He takes a pair of scissors and starts trimming the top part of hair.,He,gold,uses a black comb and scissors to point cut his hair.,looks at snowy brush with the brush.,continue to do the same technique in order to demonstrate important features for what he is making.,sinks down in front of them as they sit down.,0\n14246,anetv_Ig_AvatvYrk,5614,He holds the hair in his hand as he trims it. He,He holds the hair in his hand as he trims it.,He,gold,takes the razor again and shaves the sides.,continues sharpening the brush against the hair.,strokes her hair and hands them to her.,continues to show beard on the hair.,0\n14247,anetv_Ig_AvatvYrk,5620,He runs his fingers through the hair to finish off the look. He,He runs his fingers through the hair to finish off the look.,He,gold,sees the woman in her room and shakes her arms.,\"resumes blow octave by his hand, tossing the batons around.\",\"fails to make up, but continues with his own.\",rotates around to show his hairstyle from all angles.,3\n14248,anetv_Ig_AvatvYrk,5613,He uses a black comb and scissors to point cut his hair. He,He uses a black comb and scissors to point cut his hair.,He,gold,holds the hair in his hand as he trims it.,solves the rubix cube using his feet.,uses a small blue comb to groom the medal.,talked to the camera and braiding his hair.,0\n14249,lsmdc1048_Gran_Torino-92457,9138,\"Someone sits down in an armchair, blood dripping from his fingers. He\",\"Someone sits down in an armchair, blood dripping from his fingers.\",He,gold,glances at someone and takes a step forward.,find the lift sign that it reads ok.,steers it to someone.,\"stares into the distance, a frown on his face and his features fixed and grim.\",3\n14250,lsmdc1048_Gran_Torino-92457,9141,Someone knocks at someone's door. Someone,Someone knocks at someone's door.,Someone,gold,\"sits in district melodrama, sitting at a table with a bouquet of flowers.\",lets himself in as someone lights up a cigarette.,closes his eyes and blinks groggily.,waddles over and someone pushes him away.,1\n14251,lsmdc1048_Gran_Torino-92457,9133,Someone is helped to a chair by her mother and someone. Blood,Someone is helped to a chair by her mother and someone.,Blood,gold,\", staring at the pie in a napkin, he is looking at a picture of the baby.\",\", they sit on the table just before someone comes into the office and leans in.\",leads someone in a difficult fashion and is dragged away by seeing that someone not being bored and his mother is laughing.,runs down her face and legs.,3\n14252,lsmdc1048_Gran_Torino-92457,9134,\"Blood runs down her face and legs. Appalled, someone\",Blood runs down her face and legs.,\"Appalled, someone\",gold,\"stares at someone, his mouth hanging open.\",gives a pleading look.,pulls her knees up to tie her backside and places it back on his shoulders.,slides her hand up to someone's chest.,0\n14253,lsmdc1048_Gran_Torino-92457,9137,He walks into his kitchen and leans against a worktop. He,He walks into his kitchen and leans against a worktop.,He,gold,takes out his toothbrush and starts his horse.,wipes the paper off the table and touches the bottle over a piece top.,\"kicks a table, then marches into his front room and kicks over another table.\",pauses with her hair and brings a beer.,2\n14254,lsmdc1048_Gran_Torino-92457,9131,Someone sips a rice liquor. Someone,Someone sips a rice liquor.,Someone,gold,tosses the drink on top a stack at customers.,sees a car go by outside.,looks around and drinks wine as he ducks.,spits the thumbnail as someone pours ice into his glass.,1\n14255,lsmdc1048_Gran_Torino-92457,9140,Someone comes and sits beside him. Someone,Someone comes and sits beside him.,Someone,gold,keeps her eyes averted.,knocks at someone's door.,jogs down the steep dishes.,\"continues to listened, through the rubbish - strewn unnaturally, by people.\",1\n14256,lsmdc1048_Gran_Torino-92457,9136,\"He walks away from someone's house, pushing the Colt into his belt. He\",\"He walks away from someone's house, pushing the Colt into his belt.\",He,gold,lowers the duffel bag over his shoulder.,walks into his kitchen and leans against a worktop.,steps to the window and stabs the window out as hand.,hammers it at something from behind and throws it again while someone's hand slides out of control.,1\n14257,lsmdc1048_Gran_Torino-92457,9139,The blood on his fists has dried. Someone,The blood on his fists has dried.,Someone,gold,transforms back into figure.,stares at him solemnly.,comes and sits beside him.,\"drops ahead of him, raising his fingers, forcing them to fall behind.\",2\n14258,lsmdc3061_SNOW_FLOWER-29838,9727,She takes out her phone and dials. She,She takes out her phone and dials.,She,gold,pulls the cartridge out of her ear.,sits on the bed beside her.,calls to someone's cell from the radio station phone.,lifts it to her ear and waits.,3\n14259,lsmdc3061_SNOW_FLOWER-29838,9726,\"Someone sits at her car, staring off absently. She\",\"Someone sits at her car, staring off absently.\",She,gold,takes out her phone and dials.,sets down his laptop and finds an envelope staring at her.,\"nods and gets up, talks into the radio.\",\"pauses at the counter, picking up the package and trying to slip it down.\",0\n14260,lsmdc3061_SNOW_FLOWER-29838,9725,She gives her parents a determined look. Someone,She gives her parents a determined look.,Someone,gold,gazes lovingly at the picture still on the pink drawing.,gives her a silver cellphone.,spots his friend on the street.,\"sits at her car, staring off absently.\",3\n14261,anetv_fMRgMeDs9Ck,6779,A person is seen combing the person's hair while still using the trimmer. The man's head,A person is seen combing the person's hair while still using the trimmer.,The man's head,gold,is also seen being shaven on the side.,moves back and fourth while creating a tattoo back.,moves over to show off the man looking off into the distance.,is shown again several more times and speaks to the camera.,0\n14262,anetv_fMRgMeDs9Ck,6778,A mans hair is seen close up followed by a razor being used on the sides. A person,A mans hair is seen close up followed by a razor being used on the sides.,A person,gold,is seen prepping a blue razor on his face while he brushes down his hair.,is seen combing the person's hair while still using the trimmer.,holds up a brush and demonstrating how to scrub off the bowl.,demonstrates how to groom various clips of shots of that ski.,1\n14263,anetv_X4l1wbSYQFo,18950,A woman is seen speaking to the camera while holding a bottle of lotion. She,A woman is seen speaking to the camera while holding a bottle of lotion.,She,gold,are shown sitting by a bottle spraying down a verdell.,pouts the lotion out on a spoon and then shows more in her hands.,mixes the liquid into a container as well as hold up her hand.,is looking around little office while he is working how to do it.,1\n14264,anetv_X4l1wbSYQFo,18951,She pouts the lotion out on a spoon and then shows more in her hands. She then,She pouts the lotion out on a spoon and then shows more in her hands.,She then,gold,begins applying it all over her body while still speaking to the camera.,demonstrates how to iron a hair leg and prepping to properly wear a plastic smile.,begins mixing the noodles all around the bowl by showing off the water and smiling in the side.,moves to rotate the braid into the mask.,0\n14265,anetv_X4l1wbSYQFo,1499,She is holding a bottle of fluid as she speaks. She then,She is holding a bottle of fluid as she speaks.,She then,gold,begins brushing her teeth in the mirror.,spreads it onto her hands and applies it to her face.,throws a liquid into the glass.,places her hands over her mouth and tips the lens in its nose.,1\n14266,anetv_X4l1wbSYQFo,1498,A woman is talking in a bathroom. She,A woman is talking in a bathroom.,She,gold,takes dirty rags out of a plastic container.,is pushing a button.,starts washing clothes with soap.,is holding a bottle of fluid as she speaks.,3\n14267,anetv_WuO75Sb0Kgg,7530,He explains what are the correct ways to put on contact lenses and also how to keep them clean. A woman,He explains what are the correct ways to put on contact lenses and also how to keep them clean.,A woman,gold,shows how to strip off of hair on and remove any contact lenses.,is shown tattooing and talking for a man how to contact people.,does various moves facing forward while smiling to the camera.,is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case.,3\n14268,anetv_WuO75Sb0Kgg,19241,The lady wipes her hands on a towel near a sink. We,The lady wipes her hands on a towel near a sink.,We,gold,see her put them in a cleaning solution in a small clear jar.,see the baby singing and smiling through the door.,see the ending product.,see another person spraying washer.,0\n14269,anetv_WuO75Sb0Kgg,7531,A woman is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case. Then the doctor also,A woman is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case.,Then the doctor also,gold,awakens to show another piercing from your eye that continues in to petals of a body.,demonstrates how to correctly wear the lenses.,uses a chalk brush to apply lipstick to the audience.,takes a sip and patted her face.,1\n14270,anetv_WuO75Sb0Kgg,7529,\"There's an optometrist seated with his patient in front of a phoropter in his clinic, talking about contact lenses and its maintenance. He\",\"There's an optometrist seated with his patient in front of a phoropter in his clinic, talking about contact lenses and its maintenance.\",He,gold,explains what are the correct ways to put on contact lenses and also how to keep them clean.,\"is standing on his pole, posing for a bathroom camera and giving instructions showing how to wash your mouth.\",did some roofing tricks to get their hair on the dryer.,\"sniffles, takes the torch desperately in his hand.\",0\n14271,anetv_WuO75Sb0Kgg,19239,An eye doctor talks as we cut to scenes of a woman putting her contacts in. We,An eye doctor talks as we cut to scenes of a woman putting her contacts in.,We,gold,see the girl speaking and the child.,inserts the contact lens into his eye.,see a lady being laid out in a room as a man talking into the camera.,see the doctor put the contact in the for the lady.,3\n14272,anetv_WuO75Sb0Kgg,19240,We see the doctor put the contact in the for the lady. The lady,We see the doctor put the contact in the for the lady.,The lady,gold,put a contact around her eye.,wipes her hands on a towel near a sink.,puts contact lens in her eye.,screams to the camera and spins again.,1\n14273,anetv_WuO75Sb0Kgg,19242,We see her put them in a cleaning solution in a small clear jar. We,We see her put them in a cleaning solution in a small clear jar.,We,gold,see the frilly stick on a rack.,then measure the wall of the white wall and they part the images then makes a billiards save.,then explain the parts quickly as the water comes nearer and show more proper placement in the substance.,see the lady and a doctor in the office talking.,3\n14274,anetv_WuO75Sb0Kgg,19238,We see a green swirling opening scene. An eye doctor,We see a green swirling opening scene.,An eye doctor,gold,walks down the street followed by another man in a round crowd filled city uniforms.,is standing in a room as a man with a man between him knees takes his arm.,is interviewed and then see how to put it in an aerosol can.,talks as we cut to scenes of a woman putting her contacts in.,3\n14275,anetv_lTFCUuLtUJs,17298,A large group of people are seen standing around a track leading into several people running down the road. A woman,A large group of people are seen standing around a track leading into several people running down the road.,A woman,gold,is seen speaking to the camera while several people are seen running and drinking water.,leads the group around a track while others watch on the side.,walks over onto the field as well as playing in front of a casino.,removes once and jump roping with two others while walking.,0\n14276,lsmdc0023_THE_BUTTERFLY_EFFECT-59534,9683,\"She sees someone's nose bleed and her eyes go wide. Someone, still stunned,\",She sees someone's nose bleed and her eyes go wide.,\"Someone, still stunned,\",gold,\"pushes off the hood, gasping for breath, sighs and walks out.\",\"thrusts the dagger at someone, who stands back at someone, clutching furiously at the chest.\",drops his hollow gaze.,can do little but stare from the floor.,3\n14277,lsmdc0023_THE_BUTTERFLY_EFFECT-59534,9681,Someone whips around to see someone watching him. Someone,Someone whips around to see someone watching him.,Someone,gold,removes his sunglasses from his coat sleeves.,shoots a bullet through the weapon which hit him in his face disintegrates with a thud.,switches on a radio.,lurches back from the shock of seeing someone and falls to the floor.,3\n14278,lsmdc0023_THE_BUTTERFLY_EFFECT-59534,9682,Someone lurches back from the shock of seeing someone and falls to the floor. She,Someone lurches back from the shock of seeing someone and falls to the floor.,She,gold,leaps onto the floor pulling out the fly up over the ship.,raises her arms to the side and pulls the kayak away.,sees someone's nose bleed and her eyes go wide.,gives a high five.,2\n14279,anetv_hUzsmIWojH0,16549,A man runs up to a beam and jumps over it several times. He,A man runs up to a beam and jumps over it several times.,He,gold,makes at least six attempts.,jumps on the horse and runs his hand across the pole.,mounts the tightrope and crashes into the air.,stands up the person and tries climbing on it.,0\n14280,anetv_DBGea9pST1A,16107,A snow plow plows snow along a road at night. A man,A snow plow plows snow along a road at night.,A man,gold,is riding a car.,saunters down a driveway.,shovels snow to form a path from his door.,slings a bag in the hospital.,2\n14281,anetv_DBGea9pST1A,557,A person is pushing a snow blower through snow. A man,A person is pushing a snow blower through snow.,A man,gold,is shoveling his walk way to his home.,is picking up a snow blower.,uses the yellow cape to hit something in the snow.,is putting a cigarette in his mouth.,0\n14282,anetv_DBGea9pST1A,16108,A man shovels snow to form a path from his door. A rural road,A man shovels snow to form a path from his door.,A rural road,gold,is shown snowed over.,is fired with some trees.,occurs to the sun.,is seen with people idling as cameraman.,0\n14283,anetv_D-BRqQhL74Q,9649,Three girls are seen holding a rope with one walking away and two playing tug of war. Two girls switch places and the final two,Three girls are seen holding a rope with one walking away and two playing tug of war.,Two girls switch places and the final two,gold,continue to spin and kick in unison the whole same time.,begins walking back to the the front.,compete against one another playing tug of war back and fourth.,helps with one another while more people walk around to help it.,2\n14284,anetv_ow9bWn5gOvg,113,\"A man in is talking in a kitchen with a knife, a chopping board and bowl in front of him. He\",\"A man in is talking in a kitchen with a knife, a chopping board and bowl in front of him.\",He,gold,\"is shaving his ears, while maneuvering around his neck while also pulling away the ski.\",is marking something from his plate before the game is off again.,lifts a sharpening stone from the yellow green bowl filled with water and talk about if for a while.,are cutting with a cutting machete.,2\n14285,anetv_ow9bWn5gOvg,114,\"He lifts the knife and starts sharpening the knife with the stone and the talking continues. He shows something and put between the stone and knife but put it away before sharpening the knife, he\",He lifts the knife and starts sharpening the knife with the stone and the talking continues.,\"He shows something and put between the stone and knife but put it away before sharpening the knife, he\",gold,cuts off and brings his glass to it.,repeat the procedure before dipping the knife in water.,puts on a grimace and lays on the ground.,\"hurls it into strips, popping it in half.\",1\n14286,anetv_ow9bWn5gOvg,601,Man is standing in a kitchen in front of a black counter. the man,Man is standing in a kitchen in front of a black counter.,the man,gold,sharpens a shotgun and puts the knife on the cooker.,is eating behind a table chopping lettuce.,is holding a knife and using a knife with a fork.,is taking out a grey stone from the green plastic bowl.,3\n14287,anetv_-l5e1zVzQOQ,2645,A large screen shows the band above. People,A large screen shows the band above.,People,gold,play the guitar on the stage.,dives into the pool.,are starting to achieve the large formation.,are playing in a railway line.,0\n14288,anetv_-l5e1zVzQOQ,2643,A band plays music on stage. A man,A band plays music on stage.,A man,gold,plays the drums intensely.,sings while shown arguing.,appears on the audience.,walks in front of headphones on the drums.,0\n14289,anetv_-l5e1zVzQOQ,2644,A man plays the drums intensely. A large screen,A man plays the drums intensely.,A large screen,gold,is shown on black screens.,shows the band above.,shows a colleague hitting the instrument machine.,appears and the word m appears pop up on the screen.,1\n14290,anetv_On4V94fVLpg,18368,A females gives an interview on carving kit. Children,A females gives an interview on carving kit.,Children,gold,\"take notes and subscribe as signs on it, then paper.\",creep right away from the wall and go holding the vacuum equipment.,\"fly out on a gift tree where they sit, get a price and head across the lawn.\",hold pumpkins with smiles on their faces.,3\n14291,anetv_On4V94fVLpg,18369,Children hold pumpkins with smiles on their faces. A man,Children hold pumpkins with smiles on their faces.,A man,gold,pulls the top of a pumpkin off.,on a horse stands and rides a horse.,lets a man out wearing a hat.,walks at the diver's eye.,0\n14292,anetv_On4V94fVLpg,18367,A person carves a pumpkin. A females,A person carves a pumpkin.,A females,gold,starts painting off a paper and then lights them.,gives an interview on carving kit.,adds olive oil to the pumpkin.,stands nearby and washes his cake knife.,1\n14293,anetv_On4V94fVLpg,18370,A man pulls the top of a pumpkin off. The lady,A man pulls the top of a pumpkin off.,The lady,gold,presents a knife and a smaller knife.,pulls the bow and starts ironing.,begins slicing the cat's claws.,stirs the pan then cooks it.,0\n14294,anetv_On4V94fVLpg,18371,The lady presents a knife and a smaller knife. Two people,The lady presents a knife and a smaller knife.,Two people,gold,sit with papers in front of them.,put wax on oven.,speak to the camera and continue talking.,are then seen wearing cowboy boots with scissors and the camera pans to many people on the ground.,0\n14295,anetv_Cb3IonOw0bs,1945,The lady then shaves her legs with an electric shaver. We,The lady then shaves her legs with an electric shaver.,We,gold,on the machine and we see screens.,\", the styling woman sprays in the sink.\",see the lady smile and continue to shave her legs.,\"up red crossed, they pull back and forth and turn to the camera.\",2\n14296,anetv_Cb3IonOw0bs,1944,The camera zooms out and we see it's a set with camera equipment around. The lady then,The camera zooms out and we see it's a set with camera equipment around.,The lady then,gold,sits down on her lap and does a spin opposite on the end.,shaves her legs with an electric shaver.,uses a rowing violin to it.,jumps forward and kneels in front of the ground.,1\n14297,anetv_Cb3IonOw0bs,1943,A lady sits in a tub and rubs her legs with water while wearing an exfoliater glove. The camera zooms out and we,A lady sits in a tub and rubs her legs with water while wearing an exfoliater glove.,The camera zooms out and we,gold,see the taping.,see the finished product again.,see it's a set with camera equipment around.,see the lady using the slack lens to see a little girl.,2\n14298,anetv_bNuRrXSjJl0,14878,A woman is seen standing ready on a diving board and leads into her holding out her arms and performing an impressive dive. The woman,A woman is seen standing ready on a diving board and leads into her holding out her arms and performing an impressive dive.,The woman,gold,begins performing several tricks and ends by tying up her feet while the camera captures her movements.,is seen several more times diving into the pool and coming to the surface.,finishes and speaks and ends with her cheering and laughing and presenting herself to the camera.,glances off in the distance while being captured.,1\n14299,anetv_Ksbk5rtqVd0,2886,She pours some product into her palm. She,She pours some product into her palm.,She,gold,starts wiping the product onto her face.,pours a drink into the water.,sprays her dog with the brush.,\"lifts the receiver to her ears, then blows a smoke.\",0\n14300,anetv_Ksbk5rtqVd0,2885,A woman in a white shirt is sitting down. She,A woman in a white shirt is sitting down.,She,gold,is holding a bow - arrow.,throws some paper into the camera.,play something on a track with some sticks.,pours some product into her palm.,3\n14301,anetv_iYxj8a1TPYk,2876,A basketball player is seen dribbling a ball in various shots for the camera and leads into the player making baskets over and over again. The man,A basketball player is seen dribbling a ball in various shots for the camera and leads into the player making baskets over and over again.,The man,gold,is then seen speaking to the camera and transitions into him scoring several more baskets.,is then shown hitting an arrow on the board several times.,ends up running back to the cheer coach and observes some of that jump from the pole.,picks the instrument up and lays it down on the floor.,0\n14302,anetv_fpWOf1DR1oA,18655,A predominately dark dart board is empty. A guy,A predominately dark dart board is empty.,A guy,gold,throws a dart at the dart board.,digs into a bucket in a white bath tub.,holds up two swords and prepares them to take their turns and hit them red.,signals for the teen to enter.,0\n14303,anetv_X82bc2v5kcM,5105,A man is seen speaking to the camera while holding a bottle of lotion and then spread it throughout a woman's hair. He then,A man is seen speaking to the camera while holding a bottle of lotion and then spread it throughout a woman's hair.,He then,gold,wipes down the woman's hair and then begins washing up all hair in the mirror.,demonstrates how to properly put more lotion into his mouth and showing how to properly rub his face.,brushes the hair and blow dries it while styling it into a certain look.,pushes the hair off his face while ending with the close credits till he finishes.,2\n14304,anetv_X82bc2v5kcM,13740,\"He uses different creams and tools to style her hair. When he is done, he\",He uses different creams and tools to style her hair.,\"When he is done, he\",gold,puts the shirt into his mouth before tying it down.,talks because he is very in a demonstration about what he is playing in.,brushes a handful of hair from his hair and smiles to the camera.,shows off the final product.,3\n14305,anetv_X82bc2v5kcM,5106,He then brushes the hair and blow dries it while styling it into a certain look. He finishes the cut and dry and the woman,He then brushes the hair and blow dries it while styling it into a certain look.,He finishes the cut and dry and the woman,gold,continues cutting and cutting her hair.,sees herself in the mirror.,walks away from the girl.,brushes it from hair.,1\n14306,anetv_x4DuEusRR7Q,14399,A person is seen swimming the depths of a pool floor. The man,A person is seen swimming the depths of a pool floor.,The man,gold,\"comes up before the camera, his face showing.\",surfaces and the man takes off from the top.,plays a zumba game against one as a woman holds a scuba diver in the watches.,stops by his windows and starts playing.,0\n14307,anetv_x4DuEusRR7Q,14400,\"The man comes up before the camera, his face showing. He then\",\"The man comes up before the camera, his face showing.\",He then,gold,shaves his leg again.,shaves it with both hands.,demonstrates how to put the tire on your leg in slow motion.,swims slowly back toward the surface.,3\n14308,lsmdc3037_IRON_MAN2-16883,6510,\"Someone glances up at them and smiles. In his room, someone\",Someone glances up at them and smiles.,\"In his room, someone\",gold,talks on the phone while the two dead guards hang from the ceiling behind him.,sits in an armchair as he strolls.,shovels something out of his garage.,unties his shirt in the misty pants.,0\n14309,lsmdc1031_Quantum_of_Solace-84243,11721,\"In a dressing room, makeup is applied and costumes are checked. One actress\",\"In a dressing room, makeup is applied and costumes are checked.\",One actress,gold,opens the letter and sits back down.,is having a wound painted on her forehead.,is his school uniform reveals someone standing behind a reception desk when someone is on.,pours glasses on her cheeks.,1\n14310,lsmdc1031_Quantum_of_Solace-84243,11718,They drive through quiet cobbled streets past a bubbling fountain. Someone,They drive through quiet cobbled streets past a bubbling fountain.,Someone,gold,notices a hula stickman watching someone.,is following his gps tracker.,bashes in their armored truck atop the armored truck.,crawls onto a deserted floor.,1\n14311,lsmdc1031_Quantum_of_Solace-84243,11735,Someone is back stage behind the set which features huge moving eye. He,Someone is back stage behind the set which features huge moving eye.,He,gold,\"glares faintly, frowns, then pushes himself back and chews.\",climbs up a walk way.,lands in a glass of the office below.,performs as well as a hula hoop dances.,1\n14312,lsmdc1031_Quantum_of_Solace-84243,11731,\"He picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece. Someone\",\"He picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece.\",Someone,gold,\"eyes a song out across the way, then starts to read it.\",\"does the same, settling in his chair.\",sprays the newspaper and trims the end of it.,\"is a little enraptured, but transformed seems to be bored.\",1\n14313,lsmdc1031_Quantum_of_Solace-84243,11725,Someone's crony is carrying a bag. Someone,Someone's crony is carrying a bag.,Someone,gold,hands him the cup.,walks past the museum to where fun - teresa and safe - filled photos across the valley.,\"leads the way to a man, then drifts down to the floor and stops in front of a desk.\",looks down at the revelers from a balcony.,3\n14314,lsmdc1031_Quantum_of_Solace-84243,11728,Someone follows the guests with the gift bag in the toilets. The crowds,Someone follows the guests with the gift bag in the toilets.,The crowds,gold,get into the car.,are panicked and leave the store.,move into the auditorium.,work in the yard with his many children.,2\n14315,lsmdc1031_Quantum_of_Solace-84243,11717,Someone's car arrives in town. They,Someone's car arrives in town.,They,gold,reports are quick to talk about the london activity.,walk deeper into the river.,pass outside a police field.,drive through quiet cobbled streets past a bubbling fountain.,3\n14316,lsmdc1031_Quantum_of_Solace-84243,11719,Someone is following his gps tracker. Someone,Someone is following his gps tracker.,Someone,gold,arrives at a large very modern leisure complex.,shows an alarm clock.,walks into the car facing wheels again.,carries a dozen banyan pots.,0\n14317,lsmdc1031_Quantum_of_Solace-84243,11724,Someone joins the theatergoers wearing a tuxedo. Someone's crony,Someone joins the theatergoers wearing a tuxedo.,Someone's crony,gold,features someone's uniform.,is carrying a bag.,wears a black leotard.,falls into a meeting of belly cars.,1\n14318,lsmdc1031_Quantum_of_Solace-84243,11730,Someone empties the bag into a basin. He,Someone empties the bag into a basin.,He,gold,\"steps on the tv at the laboratory, produce more cocaine from his teacup.\",ducks the sharp blade under the syringe.,\"picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece.\",prepares food to work in the garden.,2\n14319,lsmdc1031_Quantum_of_Solace-84243,11714,He shows someone's photo on his camera. He,He shows someone's photo on his camera.,He,gold,throws it to her after going back.,goes over some paperwork.,tosses the phone to the surly agent who studies the picture.,takes out his jackets.,2\n14320,lsmdc1031_Quantum_of_Solace-84243,11723,\"Someone walks down a plain white corridor, opens a door and steps inside. Guests\",\"Someone walks down a plain white corridor, opens a door and steps inside.\",Guests,gold,thoughtfully steals himself from a dressing area.,\", someone climbs into a tunnel with an elevator.\",gather in a reception area in the form of a cube built over the theater entrance.,looks inside as he enters the front.,2\n14321,lsmdc1031_Quantum_of_Solace-84243,11715,He tosses the phone to the surly agent who studies the picture. He,He tosses the phone to the surly agent who studies the picture.,He,gold,lays in the invisibility line.,steps up to the heavyset woman and someone appears.,looks from someone to someone.,closes the phone and hands it back.,3\n14322,lsmdc1031_Quantum_of_Solace-84243,11729,Someone and his friend carrying their gift bags are welcomed into a private box. Someone,Someone and his friend carrying their gift bags are welcomed into a private box.,Someone,gold,hands the box to someone who takes it.,picks up the framed certificate.,eyed looks on a young leather sofa.,empties the bag into a basin.,3\n14323,lsmdc1031_Quantum_of_Solace-84243,11732,\"Someone does the same, settling in his chair. The guest someone followed in\",\"Someone does the same, settling in his chair.\",The guest someone followed in,gold,is slumped in the corner.,gapes form a bolt as well.,respect to their new moves.,\"surprise as he watches the train, obscuring his father's picture.\",0\n14324,lsmdc1031_Quantum_of_Solace-84243,11734,The singer is raised up the set on a decorator's cradle. Someone,The singer is raised up the set on a decorator's cradle.,Someone,gold,is back stage behind the set which features huge moving eye.,\"winks at the bars, hangs his head, and stares off.\",grabs the screen door.,fires blood at someone's as an ambulance approaches.,0\n14325,lsmdc1031_Quantum_of_Solace-84243,11739,The man stares at him. From a high gantry someone,The man stares at him.,From a high gantry someone,gold,looks out at the vast packed amphitheater.,puts her arms sideways and glances out.,climbs in to ram a high wall.,trains his paws on the handlebars.,0\n14326,lsmdc1031_Quantum_of_Solace-84243,11722,One actress is having a wound painted on her forehead. Someone,One actress is having a wound painted on her forehead.,Someone,gold,sorts clothing on the table monuments up with restless eyes.,lights her cigarette and the rest of the dirt is changed over and furry.,\"walks down a plain white corridor, opens a door and steps inside.\",'s footsteps emerge from the stairwell.,2\n14327,anetv_43gst-Mw43s,8965,A house is shown with a sentence of how to wash the rooftop. the numbers and address,A house is shown with a sentence of how to wash the rooftop.,the numbers and address,gold,are shown in the advertising.,are displayed over the desk.,of the likeness are shown.,of the car is overlaid.,0\n14328,anetv_43gst-Mw43s,8964,A comic of a man telling how to wash with a detergent. a house,A comic of a man telling how to wash with a detergent.,a house,gold,fills the screen with a hot spray.,\"is shown, with the rest of the neighbors.\",comes along and unlatches in the olive carpet as he blows.,is shown with a sentence of how to wash the rooftop.,3\n14329,anetv_zSeLjjo3KF0,17414,A man stands along the edge of a bridge where he is preparing his harness to do a free fall. He,A man stands along the edge of a bridge where he is preparing his harness to do a free fall.,He,gold,dives into the forest red and soars down from a room behind him.,runs down the river with a surf.,jumps off the bridge and lands at the top of three jumps.,throws himself off the side of the bridge as the people watch him descent into the fall.,3\n14330,anetv_zSeLjjo3KF0,17630,A man stands on the edge of a bridge while another man checks his bungee jumping harness. The first man,A man stands on the edge of a bridge while another man checks his bungee jumping harness.,The first man,gold,grips the bridge railing and prepares to jump off the bridge.,puts a rope around his neck then jumps off his board and ties the bars on the bridge.,jumps on a boat while jumping into the competition doing tricks and flips.,lets go of the rope.,0\n14331,anetv_zSeLjjo3KF0,17631,The first man grips the bridge railing and prepares to jump off the bridge. The first man,The first man grips the bridge railing and prepares to jump off the bridge.,The first man,gold,greets greets man.,is then pictured outside indoors.,jumps off the bridge while the second man throws a rope down alongside.,fails to kiss one man who make a 360 but falls without jumping off.,2\n14332,lsmdc3035_INSIDE_MAN-2025,2670,They interrogate the narrow eyed man. He,They interrogate the narrow eyed man.,He,gold,plunges into the pool.,pulls her into an embrace as they drive on.,is a broad - wealthy white faced bearded zombie.,shrugs and looks down.,3\n14333,lsmdc3035_INSIDE_MAN-2025,2671,He shrugs and looks down. They,He shrugs and looks down.,They,gold,finds it in the room with reading papers.,rest a mile away from the fire.,turns to an offscreen someone.,show the jewish man snapshots of someone and the lanky guy.,3\n14334,lsmdc3035_INSIDE_MAN-2025,2669,Someone studies the instant photos of the hostages. His father,Someone studies the instant photos of the hostages.,His father,gold,rubs the boy's back.,\"stares at the coin, closing his eyes.\",approaches an open - plan office and takes out a card from the clerk's desk.,aims upward and snatches the note.,0\n14335,lsmdc1040_The_Ugly_Truth-8604,3387,Someone licks the red Jell - O off one of the girl's fingers and gives an approving nod. Someone,Someone licks the red Jell - O off one of the girl's fingers and gives an approving nod.,Someone,gold,'s taking deep breaths as someone comes in with the bikini babes.,moves himself around as he heads for her doors.,joyfully joyfully kisses his cheeks.,returns to the screen.,0\n14336,anetv_E6LJROCxQPA,13536,A person is seen walking across the yard leading into a long rope. The man,A person is seen walking across the yard leading into a long rope.,The man,gold,runs up pushing a horse around a dirt area over and over.,continues walking around the body and ends by walking away.,continues speaking as others watch on the side.,jumps on the rope and attempts to walk across it.,3\n14337,anetv_E6LJROCxQPA,13537,The man jumps on the rope and attempts to walk across it. He,The man jumps on the rope and attempts to walk across it.,He,gold,continues walking and leads into him falling off.,jumps over the side of the pole.,spins and lands again about stacks of rock.,jumps off the stilts and jumps after the rope.,0\n14338,anetv_A6DBt7UgWEg,8542,A man is shown stretching before engaging in a tennis match in front of a crowd. He then,A man is shown stretching before engaging in a tennis match in front of a crowd.,He then,gold,demonstrate how to hold the handle.,speaks to the crowd amongst flashing cameras through a microphone.,jumps over the bar and begins walking to the end.,begins performing flips and tricks around and looking into the distance.,1\n14339,anetv_A6DBt7UgWEg,8543,He then speaks to the crowd amongst flashing cameras through a microphone. The man,He then speaks to the crowd amongst flashing cameras through a microphone.,The man,gold,continues running back and fourth to one another and ends by laughing to the camera.,swims along the pool as the scene returns to his turn.,\"is occasionally shown playing tennis, then goes back to speaking to the group.\",continues getting on the kayak while talking and a large video show a video of people canoeing.,2\n14340,anetv_A6DBt7UgWEg,8541,\"A spinning disc with circles of color are shown, panning out a a film reel and the words films of india. A man\",\"A spinning disc with circles of color are shown, panning out a a film reel and the words films of india.\",A man,gold,is explaining how to open a metal door that they are working.,is shown stretching before engaging in a tennis match in front of a crowd.,is shown giving two scuba moves for a fire while an audience watches as well.,steps into frame and is shown using his razor and talking.,1\n14341,anetv_LB1A7BobPwg,2596,\"They push their cards and drink beer, then pull cards and drink beer. The bartender\",\"They push their cards and drink beer, then pull cards and drink beer.\",The bartender,gold,is followed by one man pouring liquor into a bowl of alcohol.,spits the beer back in the glass.,pours smoke into a pitcher and pours out the cups.,clinks the glass for his uncle.,1\n14342,anetv_LB1A7BobPwg,2592,We see the white title screen. We then,We see the white title screen.,We then,gold,see the ending title screens.,see the new ending screen.,see a bartender talking to two people in a bar.,see see group of people playing with one another.,2\n14343,anetv_LB1A7BobPwg,2598,The bartender looks at the camera and speaks. We,The bartender looks at the camera and speaks.,We,gold,see the end title screen.,see the drill screen on the left.,\"to another man, the young man takes a bottle of two.\",strolls through someone's office.,0\n14344,anetv_LB1A7BobPwg,2593,We then see a bartender talking to two people in a bar. The man,We then see a bartender talking to two people in a bar.,The man,gold,grabs a cup and drinks from the pool.,puts his arm behind his back.,pass the bar on a cold martini counter.,places his glasses on the counter to take a drink.,1\n14345,anetv_LB1A7BobPwg,2597,The bartender spits the beer back in the glass. The bartender,The bartender spits the beer back in the glass.,The bartender,gold,brings her cup to her mouth and makes a shot.,\"raises his drink to his lips, trying to stop himself.\",gives a resigned look.,looks at the camera and speaks.,3\n14346,anetv_LB1A7BobPwg,2594,The man puts his arm behind his back. The bartender,The man puts his arm behind his back.,The bartender,gold,puts two cards on the bar.,grabs a cup of coffee and shakes the table.,adds something to a pan then pauses.,raises his gloves and salute the kids.,0\n14347,lsmdc1023_Horrible_Bosses-81890,15052,\"They push a large briefcase towards him, and he opens it. It\",\"They push a large briefcase towards him, and he opens it.\",It,gold,'s fingers spin.,\"'s empty, apart from a small bundle of bank notes.\",is forming a few wooden faces.,walks toward the door.,1\n14348,lsmdc1023_Horrible_Bosses-81890,15049,He furrows his brow as she tweaks his nipples. She,He furrows his brow as she tweaks his nipples.,She,gold,kisses it and he uses her phone.,moves a half - inch and applies one foot on the line that line to each window.,\"grins, then slaps his ass.\",kicks away and straightens his restraints.,2\n14349,lsmdc1023_Horrible_Bosses-81890,15042,Balding someone is partying hard with three Thai hookers in skimpy underwear. He,Balding someone is partying hard with three Thai hookers in skimpy underwear.,He,gold,snorts a line of cocaine from one's stomach.,is putting on clothes.,stands in the hallway and backs them another.,\"lakeside in our shore, waiting for someone.\",0\n14350,lsmdc1023_Horrible_Bosses-81890,15041,\"His extended office now complete, someone removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve. Someone\",\"His extended office now complete, someone removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve.\",Someone,gold,\"wends his way through the book's pages, scattering sidles quicker to the finished page.\",reach the bottom second slowly buckle.,withdraws money from his bank account.,holds the yanks far out of the rig.,2\n14351,lsmdc1023_Horrible_Bosses-81890,15046,\"Someone's shirt is open, exposing his bloated stomach. He\",\"Someone's shirt is open, exposing his bloated stomach.\",He,gold,looks at herself in the mirror.,cage hangs at top roughly.,tosses him with a powerful blow.,holds up someone's handicapped parking pass.,3\n14352,lsmdc1023_Horrible_Bosses-81890,15048,\"At the dentist, someone licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear. He\",\"At the dentist, someone licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear.\",He,gold,furrows his brow as she tweaks his nipples.,flies the shaken pavement to a cocktail bar on the cement body.,\"closes a winch in turn, then uses it and spikes.\",runs through the unit and opening shadows with the large group then walks in.,0\n14353,lsmdc1023_Horrible_Bosses-81890,15040,\"Someone smashes his office wall down with a sledgehammer. His extended office now complete, someone\",Someone smashes his office wall down with a sledgehammer.,\"His extended office now complete, someone\",gold,does the same to a button in a reading desk.,opens the bag and storms out.,slams his fist into the console beside a weight player.,removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve.,3\n14354,lsmdc1023_Horrible_Bosses-81890,15047,\"He holds up someone's handicapped parking pass. At the dentist, someone\",He holds up someone's handicapped parking pass.,\"At the dentist, someone\",gold,drives two wheels into the car and pounds on it on the ground.,'s hands up to a guard as she sits in the park.,\"licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear.\",is taken out by the lincoln - frowning track creature.,2\n14355,lsmdc1023_Horrible_Bosses-81890,15044,He is in his office. Someone,He is in his office.,Someone,gold,grins at his father.,takes a deep breath and heaves back as he says.,drops the grail agents on the floor.,'s in the main office.,3\n14356,lsmdc1023_Horrible_Bosses-81890,15043,They writhe in orgiastic abandonment. He,They writhe in orgiastic abandonment.,He,gold,gets out and under the hood.,throws up a telescope.,hands the individuals to someone.,is in his office.,3\n14357,anetv_XThYcZoFMMs,5954,\"All the ingredients you need to make butter cake are on the counter, someone is pointing at each ingredient and starts grabbing them. They\",\"All the ingredients you need to make butter cake are on the counter, someone is pointing at each ingredient and starts grabbing them.\",They,gold,take the shot and get ready for the container.,put the new bread onto glue to add shingles.,\"power to make into two more smoke, and finally it's done and puts them in the pan.\",use a mixer to mix some of the ingredients together.,3\n14358,anetv_XThYcZoFMMs,5955,They use a mixer to mix some of the ingredients together. They add the eggs in one by one while the mixer is still mixing and then they,They use a mixer to mix some of the ingredients together.,They add the eggs in one by one while the mixer is still mixing and then they,gold,use beer and they talk to the camera.,turn it off and add some more in.,create a small selection of food.,put the baked mixture into a cute pan.,1\n14359,anetv_rcDw6If4hjc,14201,A bowler wearing green shorts bowls and makes a strike. The bowler,A bowler wearing green shorts bowls and makes a strike.,The bowler,gold,bowls another ball using both hands and makes another strike.,hits the man in the head behind safety.,hitting with the ball caught the batter.,reaches for the camera.,0\n14360,anetv_rcDw6If4hjc,15828,The pins are knocked over. He,The pins are knocked over.,He,gold,reaches for the window savagely hit.,latino guys climb into a bench and approach the jutting rocks of a building.,\"you can pick up something, she is holding the stick in her hand and foreground it down of her head.\",throws the ball several more times.,3\n14361,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7541,The old man leans forward. Someone,The old man leans forward.,Someone,gold,\"looks away, and eases back a little.\",returns the painting's music with her finger.,puts tape on the fingers.,\"spreads his hands, grinning.\",0\n14362,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7537,\"He hands a curved wand to someone, who examines it closely. Someone\",\"He hands a curved wand to someone, who examines it closely.\",Someone,gold,removes the light of the torch and aims it at someone.,\"passes him a plain, straight wand.\",kicks the box into a case and drops the keys in the slot.,\"strides through a tall stunning hall, and collides with an army of marble.\",1\n14363,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7540,He turns it in his fingers. Someone,He turns it in his fingers.,Someone,gold,gives the wand back to someone.,steps out and begins with blow buttons.,is everything in the state not going down.,is slid on his clock.,0\n14364,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7538,\"Someone passes him a plain, straight wand. He\",\"Someone passes him a plain, straight wand.\",He,gold,arranges his face into the mirror.,raises the wand tip to his left ear.,releases from the bottom of his hooded stick at the kneeling position.,looks around at the flowing flowing.,1\n14365,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7535,The old wand maker sits by a window. He,The old wand maker sits by a window.,He,gold,\"presses his hands on his bullwhip, plunging into space with a wall of red energy.\",touches a pale blue sheen.,looks up at someone.,stuffs the bag off.,2\n14366,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7534,Someone shows them into a room. The old wand maker,Someone shows them into a room.,The old wand maker,gold,shows the encased in black and black fragments.,\"sits draped across a sheet, wrapped in sheet.\",sits by a window.,has got a little lighter from the inside of his neck.,2\n14367,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7536,He looks up at someone. He,He looks up at someone.,He,gold,\"remains taken back, as if going back to the cottage, hitting a ping - pong court.\",\"opens the safe, and takes out his phone, slumped the wooden chair, and goes to help him up.\",smiles at the photo.,\"hands a curved wand to someone, who examines it closely.\",3\n14368,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7539,He raises the wand tip to his left ear. He,He raises the wand tip to his left ear.,He,gold,returns with a pamphlet.,catches some on the ax then touches a side of his wound.,flattens it in his cupped hand.,turns it in his fingers.,3\n14369,anetv_MWWDqMI-rxU,1026,He is sitting on the ground talking. He,He is sitting on the ground talking.,He,gold,finishes playing the harmonica and walks off.,stands up and talks to the camera.,gets a blue belt.,uses a plastic bag to wash with a towel and something over his head.,1\n14370,anetv_MWWDqMI-rxU,18588,Two people are seen speaking to the camera when one begins to breakdance. The man,Two people are seen speaking to the camera when one begins to breakdance.,The man,gold,continues playing and leads into various clips of people performing curling goals with the camera.,plays with a karate as well as opening the frame.,moves along with his arms arms and legs with her and ends by taking off.,continues speaking to the camera and begins demonstrating how to perform proper moves.,3\n14371,anetv_MWWDqMI-rxU,18589,The man continues speaking to the camera and begins demonstrating how to perform proper moves. He,The man continues speaking to the camera and begins demonstrating how to perform proper moves.,He,gold,continues moving around the camera and ends by speaking to it.,continues to solve the video while the other smiles to the camera.,continues speaking to the camera and finishes by sitting on the ground.,begins to be seen impressive properly play and ends with him clapping for the camera.,0\n14372,lsmdc0033_Amadeus-66841,11955,\"To its grand and weighty sound, someone starts to undress, watched by the horrified someone. He\",\"To its grand and weighty sound, someone starts to undress, watched by the horrified someone.\",He,gold,begins to scramble to his feet.,opens his mouth in distress.,\"steps away, leaning against the headboard.\",\"remains, in the shadows he is trying to make.\",1\n14373,lsmdc0033_Amadeus-66841,11956,He opens his mouth in distress. The candle,He opens his mouth in distress.,The candle,gold,flickers over her as she removes her clothes and prepares for his embrace.,begins to cry again.,juts out from some smoking buckets.,hides behind the door.,0\n14374,anetv_r4F2X_MlL-U,456,A hand lines the loose area of the wallpaper. The hand,A hand lines the loose area of the wallpaper.,The hand,gold,puts paste from a bowl on the back of the loose wallpaper.,grips the disc to the glass revealing the piercing artist sticking out.,sweeps gold on it.,is then seen running down the fence.,0\n14375,anetv_r4F2X_MlL-U,457,The hand puts paste from a bowl on the back of the loose wallpaper. The hand,The hand puts paste from a bowl on the back of the loose wallpaper.,The hand,gold,paints the applauded paper.,use the measuring tape to mix the heat by measuring tape on the paper.,runs a scrub on the loose wallpaper.,talks to the camera.,2\n14376,lsmdc1024_Identity_Thief-82128,4386,\"Someone slowly drives down a congested highway. Later, carrying a briefcase, the well - groomed businessman\",Someone slowly drives down a congested highway.,\"Later, carrying a briefcase, the well - groomed businessman\",gold,\"pushes a stick along the compound, keeping it steady.\",walks through an enclosed courtyard and enters an office building.,pushes someone along the table.,view his unconscious wife who worn up.,1\n14377,lsmdc1024_Identity_Thief-82128,4387,\"Later, carrying a briefcase, the well - groomed businessman walks through an enclosed courtyard and enters an office building. Now, someone\",\"Later, carrying a briefcase, the well - groomed businessman walks through an enclosed courtyard and enters an office building.\",\"Now, someone\",gold,steps off an elevator and walks to his office.,gazes up at the shell decorated that gave the world's power over a portrait of a younger blond.,\"arrives with her shadowy, sunny blue tattooed and a red decor against the wall.\",\"finds a outside, the suitcase in his hand.\",0\n14378,anetv_1RQOgX36Z2E,9168,He rolls a tire over to a piece of equipment. He,He rolls a tire over to a piece of equipment.,He,gold,starts a motor bike.,demonstrates by talking to the camera and explains about the process process.,shows how to mount the tire onto the equipment.,man instructs and shows how it should burn.,2\n14379,anetv_1RQOgX36Z2E,9167,A man is working inside a shop. He,A man is working inside a shop.,He,gold,adjusts the camera and nails around.,is on a table playing croquette.,talks about how to remove a sandwich.,rolls a tire over to a piece of equipment.,3\n14380,anetv_mhHoL-9mY1E,17597,The man takes the top off and sprays the shoes. The man,The man takes the top off and sprays the shoes.,The man,gold,uses the brush on the shoe to rub the shoe.,starts to wipe the car clean with a hose.,uses tongs to clean the tire using a tool.,continues ironing the shirt with a paintbrush.,0\n14381,anetv_mhHoL-9mY1E,17599,The man puts the top back on the can. The man,The man puts the top back on the can.,The man,gold,adds trimmer outside his bricked again.,puts the black circle on the finish line.,gets up and grabs the camera.,holds back his hand with a squash hand.,2\n14382,anetv_mhHoL-9mY1E,17596,We see a person sitting in front of a shoe holding a can with brush. The man,We see a person sitting in front of a shoe holding a can with brush.,The man,gold,picks up a blue bag then begins to do it again.,uses a brush to paint the wall with a sprayer.,\"puts on a green jacket, and its washing the shoes.\",takes the top off and sprays the shoes.,3\n14383,anetv_mhHoL-9mY1E,17598,The man uses the brush on the shoe to rub the shoe. The man,The man uses the brush on the shoe to rub the shoe.,The man,gold,gets up and looks down the way.,spreads his arms on the couch.,represents an animation in the shower head with his hands.,puts the top back on the can.,3\n14384,anetv_jtyWcZGp4VA,18144,\"After, the person brushes the back leg of the dog using the big brush, then she small brush and the comb. Next, the person\",\"After, the person brushes the back leg of the dog using the big brush, then she small brush and the comb.\",\"Next, the person\",gold,adds something to the hair of square hair and bites.,brushes the toy thoroughly on using the shower curtain and where the cat is brushing it.,sprays the leg of the dog and combs.,takes a pair of scissors to pull the clips with the right hair scissors.,2\n14385,anetv_jtyWcZGp4VA,18142,\"A person take on the hands a small and big brush and a com, and points a jug of detergent and a spray bottle. The person\",\"A person take on the hands a small and big brush and a com, and points a jug of detergent and a spray bottle.\",The person,gold,takes the big brush and brush the back leg of the dog from top to bottom.,add water and foot shoes with the solution.,sprays the removing with excess spray.,shows the boy how to clean off the shoes and then rub oil on his legs.,0\n14386,anetv_2i_rotAjuoE,2983,First there is a screen shown for a small amount of time letting viewers know what this video is about. Then there,First there is a screen shown for a small amount of time letting viewers know what this video is about.,Then there,gold,is a chance of a woman fiddling a turn of happiness.,are several kids who are about the techniques of water going along the path together.,is another stencil placed on the dashboard of the van's trunk.,is a man riding different horses in different settings where people watch them.,3\n14387,anetv_2i_rotAjuoE,2984,\"Then there is a man riding different horses in different settings where people watch them. In the first one, the horse runs with him on his back and he tries to jump over a wooden obstacle, but fails and there\",Then there is a man riding different horses in different settings where people watch them.,\"In the first one, the horse runs with him on his back and he tries to jump over a wooden obstacle, but fails and there\",gold,are many more fails.,is successful speed with the rope jump.,spins around him very much.,were more people continue riding benches on the lawn.,0\n14388,anetv_y2MSbfOsukM,1327,A woman is seen bending forward while sitting on a bed and holding a brush in her hands. She then,A woman is seen bending forward while sitting on a bed and holding a brush in her hands.,She then,gold,sprays lotion all over her face.,lays to scrub her cheek with a lantern and lays it on the carpet.,runs the brush through her hair over and over again.,frame in scenarios and cuts the dolls arm all side to side and adult sits alone in the same direction.,2\n14389,anetv_y2MSbfOsukM,1328,She then runs the brush through her hair over and over again. She,She then runs the brush through her hair over and over again.,She,gold,dries up the lower portion of the brush before washing her hands as she talks to the camera.,\"washes her hair with a towel, shows a practice and uses a brush on her hair.\",uses the brush to rub all the lotion off of her leg.,continues to run the brush through her hair and ends by smiling to the camera.,3\n14390,anetv_er6fi7nYsuw,6429,People are playing lacrosse on a field. A girl in a maroon shirt,People are playing lacrosse on a field.,A girl in a maroon shirt,gold,is playing a pole on a field.,is standing behind him.,is hitting the ball with her stick.,is playing futsal on a field.,2\n14391,anetv_er6fi7nYsuw,6430,A girl in a maroon shirt is hitting the ball with her stick. Another girl in a yellow shirt,A girl in a maroon shirt is hitting the ball with her stick.,Another girl in a yellow shirt,gold,is sitting behind the girl.,is standing on the field.,is talking to the camera.,is sitting next to her.,1\n14392,anetv_er6fi7nYsuw,7566,A girl referee wearing a yellow shirt follows the ball from a distance. The players,A girl referee wearing a yellow shirt follows the ball from a distance.,The players,gold,continue to play with the field on a green table while holding the camera.,sulks at the woman.,try to hit the ball to another.,fight to get control of the ball while the referee looks on.,3\n14393,anetv_er6fi7nYsuw,7565,Two teams of girls playing field hockey in a field hockey tournament. A girl referee wearing a yellow shirt,Two teams of girls playing field hockey in a field hockey tournament.,A girl referee wearing a yellow shirt,gold,follows the ball from a distance.,pushes the ball back at the goal and starts running with it at the same time.,is also watching the news.,throws a ball into the net.,0\n14394,lsmdc0023_THE_BUTTERFLY_EFFECT-59674,7388,Someone is ignored by several someone pledges as he plops himself by a tree and hunts through his journal to find the entry from when he was seven and visited someone at Sunnyvale. Seven - year old someone,Someone is ignored by several someone pledges as he plops himself by a tree and hunts through his journal to find the entry from when he was seven and visited someone at Sunnyvale.,Seven - year old someone,gold,\"'s professor shows a odd - looking logo with chrome light like people saying in the evening, someone, as classes.\",\"swings, serving the ball back and forth.\",sits on his bed with his outstretched arms around his vacuuming as he talks into his cheek.,\"comes to during the time he first met his father, someone.\",3\n14395,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94893,15322,They see a baby Thestral. She,They see a baby Thestral.,She,gold,takes an apple from her bag.,falls a paper box.,pauses to prepare the cats seeds.,picks up a stone and draws it free.,0\n14396,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94893,15323,She takes an apple from her bag. She,She takes an apple from her bag.,She,gold,rolls the apple to the baby.,is sitting at the stove top.,yanks the water out of her bag.,is led up to her suite.,0\n14397,anetv_Y_dtU10XIsg,16609,A close up of a crack is seen. A woman,A close up of a crack is seen.,A woman,gold,lets go of the pumpkin.,enters across the bars.,walk up to a chest ramp.,\"is outside, shoveling snow.\",3\n14398,anetv_Y_dtU10XIsg,16610,\"A woman is outside, shoveling snow. A dog\",\"A woman is outside, shoveling snow.\",A dog,gold,wags his tail as he tries to help.,is covered in snow as the bull enters a house.,is walking down a street in a tube.,mows her outside in the snow.,0\n14399,anetv_vycd0CJTwoA,9635,\"A parking lot is shown, and a man on roller blades takes off down the hill. He\",\"A parking lot is shown, and a man on roller blades takes off down the hill.\",He,gold,lights that twice on another beach.,finishes and walks off.,is walking on the los angeles street in the same setting.,goes around sharp curves on his skates.,3\n14400,anetv_vycd0CJTwoA,9636,He goes around sharp curves on his skates. He,He goes around sharp curves on his skates.,He,gold,sets up sticks in the lawn.,feels for one last time.,skates on the track and also gets off and do tricks.,takes several country and wooded roads before rolling to a stop in a parking lot.,3\n14401,anetv_DqsaFxxfONY,7667,A man dismounts from a set a parallel bars in a park onto a platform. The man,A man dismounts from a set a parallel bars in a park onto a platform.,The man,gold,then swings by himself while performing in his own room.,takes a bar to stand up and starts doing the footage of the match.,moves hard in a synchronized coiling motion as a splash on break buildings.,does shoulder dips between the bars on the exercise equipment.,3\n14402,anetv_DqsaFxxfONY,675,The man then performs several mores on the beams moving back and fourth. The man,The man then performs several mores on the beams moving back and fourth.,The man,gold,dives back on stage to belly.,walks up and puts his ax in his lap.,runs along another beam and pauses to demonstrate how to perform properly in the hopscotch.,continues exercising on the beam while the camera shows his movements.,3\n14403,anetv_DqsaFxxfONY,7668,The man does shoulder dips between the bars on the exercise equipment. The man,The man does shoulder dips between the bars on the exercise equipment.,The man,gold,performs his routine using the bars.,does a routine on a rope beam and gets off of his feet.,does push ups on the parallel bars.,wraps the same arm around his body.,2\n14404,anetv_DqsaFxxfONY,7669,The man does push ups on the parallel bars. The man,The man does push ups on the parallel bars.,The man,gold,lifts the weight above his head and head.,dismounts several times and lands on a swing on the mat.,pauses and finishes his bike.,climbs across the parallel bars hanging upside down then does pull ups.,3\n14405,anetv_KJQi_5e72lM,7437,Afterwards he uses a bristled brush and scrubs the bottom of the ski. Finally he,Afterwards he uses a bristled brush and scrubs the bottom of the ski.,Finally he,gold,uses a soft brush and runs it over the ski once more.,finishes it up and walks over to the sink.,pours snow to get the berries off the snowboard.,pours sets too material and stands up.,0\n14406,anetv_KJQi_5e72lM,7436,A man is seen talking to the camera as he sets up a ski on a work bench inside of a Ski shop. After lining up the ski and securing it on the bench he,A man is seen talking to the camera as he sets up a ski on a work bench inside of a Ski shop.,After lining up the ski and securing it on the bench he,gold,gets up off his feet.,uses the rowing machine and on several more tricks.,adjusts the bike and continues skiing.,uses a plastic card and goes over the bottom of the ski three times.,3\n14407,anetv_9q6wWG6ql4E,14829,The little girl stands behind a gymnastic log and peers around the log. The little girl then,The little girl stands behind a gymnastic log and peers around the log.,The little girl then,gold,displays the ax to secure the previous size.,swings a window backward across a log and stands up and has her ax again.,returns using the monkey bars switching from hand to hand.,takes a drink as the girl moves a yellow bag over a log to chop the grass.,2\n14408,anetv_9q6wWG6ql4E,15114,\"Then, the little girl climbs the monkey bar. Then, the little girl\",\"Then, the little girl climbs the monkey bar.\",\"Then, the little girl\",gold,cuts the rope with a camera.,returns climbing the monkey bars.,does a little slide with the small teen trying to hit the ball off.,jumps through the monkey bars.,1\n14409,anetv_9q6wWG6ql4E,15113,\"A little girl talks and stands in the playground. Then, the little girl\",A little girl talks and stands in the playground.,\"Then, the little girl\",gold,does a hop bar to over a heighten hurdle.,climbs the monkey bar.,turns to see the baby playing the baby and a man in a blue shirt talks to the camera.,is trimming a monkey path.,1\n14410,anetv_9q6wWG6ql4E,14828,A little girl wearing a white blouse plays on the monkey bars. The little girl,A little girl wearing a white blouse plays on the monkey bars.,The little girl,gold,runs on a field of monkey bars.,stops walking and looks over the counter the other way.,does one hand stand on.,stands behind a gymnastic log and peers around the log.,3\n14411,lsmdc3018_CINDERELLA_MAN-8232,3003,The timekeeper slaps the mat. Someone,The timekeeper slaps the mat.,Someone,gold,run over the title lawns towards the mantel.,\"stands and glares, his brow hard set over a vengeful gaze.\",\", someone punches him.\",helps some parents members join him.,1\n14412,lsmdc3018_CINDERELLA_MAN-8232,3004,\"In the opposite corner, someone rolls his neck. The champ\",\"In the opposite corner, someone rolls his neck.\",The champ,gold,\"'s muscular disc reads ripped from his hinges, back lying on the ground.\",fondles the dim color.,eyeballs someone with a vacant trance - like stare.,turns to the stylist.,2\n14413,lsmdc0033_Amadeus-66618,13780,\"This is someone, Chaplain at the hospital. In the corridor as they walk, we\",\"This is someone, Chaplain at the hospital.\",\"In the corridor as they walk, we\",gold,\"can see that he lies over the rolls, staring at someone.\",note several patients - - some of them visibly disturbed mentally.,can pass the dead man.,\"see someone standing over her, heaving someone away.\",1\n14414,lsmdc0010_Frau_Ohne_Gewissen-51138,5712,\"Their heads touch, side by side, the camera slowly starts to recede as we. Someone\",\"Their heads touch, side by side, the camera slowly starts to recede as we.\",Someone,gold,moves in the footing on the machine opposite someone.,knits one finger in his mouth then wheels away.,\"sits in the swivel chair, talking into the dictaphone.\",\"hurries through the road, slowly to the tilt of the road to his left, disappeared.\",2\n14415,lsmdc0010_Frau_Ohne_Gewissen-51138,5713,\"Someone sits in the swivel chair, talking into the dictaphone. He\",\"Someone sits in the swivel chair, talking into the dictaphone.\",He,gold,puts his spoon in the palm of his hand.,walks over to her.,is brought out of a car.,has hooked the wastebasket under his feet to sit more comfortably.,3\n14416,anetv_c5Io6wg8D60,8362,He starts running and builds up speed pretty quickly. He,He starts running and builds up speed pretty quickly.,He,gold,walks down some streets and leaves him to see them taking his time.,does lots of tricks as he jumps on a rope with obstacles.,lands into the sand and when he is done and man come behind him to smooth the sand out.,\"stands up and goes, picks up the skateboard and continues to continue skateboarding.\",2\n14417,anetv_c5Io6wg8D60,8361,He begins to walk backwards and get himself ready to start running. He,He begins to walk backwards and get himself ready to start running.,He,gold,falls on the sidelines onto the field.,knocks his people and catching him off of post kicks.,starts running and builds up speed pretty quickly.,runs away from her very karate act.,2\n14418,anetv_c5Io6wg8D60,8360,A man is standing by a desk talking with some coaches about something. He,A man is standing by a desk talking with some coaches about something.,He,gold,stands up and lifts his weights over his head but also gets hit by the action.,begins to walk backwards and get himself ready to start running.,is sitting on a table next to the men introducing a role for the competition.,is in a classroom shaking his hands at tempo and serving food food.,1\n14419,anetv_rMZtiiLAqoY,18676,Another closeup of the ball dispenser is shown. The man,Another closeup of the ball dispenser is shown.,The man,gold,\"continues shaving, rubbing his crotch slightly.\",smiles at the camera.,shows us the left block.,takes the mic out to hang up.,1\n14420,anetv_rMZtiiLAqoY,18674,The man jams the coin mechanism with a knife. The man,The man jams the coin mechanism with a knife.,The man,gold,lays it down near his mortar.,grabs a steel rod and cleans the blade with a sword.,uses a mechanism to insert multiple table football balls onto the table.,drains a bottle of beers on a table.,2\n14421,anetv_rMZtiiLAqoY,18672,The man holds a coin up to the camera. The man,The man holds a coin up to the camera.,The man,gold,inserts the coin into the table.,tosses the court over to the third man.,puts another phone on the table.,rings the bell again.,0\n14422,anetv_rMZtiiLAqoY,18675,A closeup of the ball dispenser mechanism is shown. The man,A closeup of the ball dispenser mechanism is shown.,The man,gold,\"plays table football by himself, scoring several goals.\",begins playing the exercise hard while the host in it.,turns on the machine and starts performing operation using a machine and machine.,does not really enter into the desert.,0\n14423,anetv_rMZtiiLAqoY,18671,A man with disheveled hair talks to the camera while standing next to a table football table. The man,A man with disheveled hair talks to the camera while standing next to a table football table.,The man,gold,holds a coin up to the camera.,picks up the shirt and walks away.,picks a ball into a pile.,goes back and forth and has to cut his man off to the same number and finally the woman still jotun her head.,0\n14424,anetv_rMZtiiLAqoY,18673,The man inserts the coin into the table. the man,The man inserts the coin into the table.,the man,gold,jams the coin mechanism with a knife.,falls in wide water.,uses the pliers to demonstrate and release a machine.,put the rod on the table and put another.,0\n14425,anetv_rMZtiiLAqoY,15991,The man puts the coin in as well as a knife and begins playing a game of fooseball using a lever moving the ball around the side. He,The man puts the coin in as well as a knife and begins playing a game of fooseball using a lever moving the ball around the side.,He,gold,continues spinning around an area while standing on a fashionable area while the camera pans around and speaks.,ends by smiling to the camera and giving a thumbs up.,continues putting and showing several clips sitting and presenting the plants.,throws down the items and continues holding ice guns at quickly and pausing to speak to the camera.,1\n14426,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4550,\"He gives someone the eye as we pan to center someone, who looks wooed and self - conscious. Someone enters the shot and whispers and beckons someone and, as the singing continues, they\",\"He gives someone the eye as we pan to center someone, who looks wooed and self - conscious.\",\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they\",gold,pause for a moment for a moment to lean into doorway.,\"are eating, talking, dinner.\",\"leave the group and start towards a shade tree in medium ground, which we pan to center.\",beings to dance.,2\n14427,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4551,\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they leave the group and start towards a shade tree in medium ground, which we pan to center. They\",\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they leave the group and start towards a shade tree in medium ground, which we pan to center.\",They,gold,come into the parlor.,turned into a bag with a smile.,walk; singers in background.,are left for the stage.,2\n14428,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4552,\"Someone, looking ahead, is displeased. They\",\"Someone, looking ahead, is displeased.\",They,gold,clink the glasses together.,\"follow on the ice as people walk toward him, holding hands.\",\"keep on without his vest, sunglasses, ready to sign.\",\"sit on the bench, their backs to us, partly concealed by the tree trunk.\",3\n14429,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4553,\"People enter the shot, their backs to us. They\",\"People enter the shot, their backs to us.\",They,gold,drop one sliding beneath.,pop the hangers and bring their teeth and a shelf below some trapdoor themselves.,\"sit on the bench, their back to us.\",take off their forms and smash it against the bleachers wall as the crowd crawls and applaud.,2\n14430,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4555,The children recede towards the river in background. Someone,The children recede towards the river in background.,Someone,gold,meekly keeps her head down.,grins at the radio.,\"gazes after him, fading, then backs it up.\",jumps up and stands up.,0\n14431,lsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4554,\"They sit on the bench, their back to us. The children\",\"They sit on the bench, their back to us.\",The children,gold,are someone's parents.,hold their arms above their eyes.,\"ride their bikes in the stretch limousine, outside in chases.\",recede towards the river in background.,3\n14432,anetv_DIF8qouivIU,2069,A man wearing a white fencing outfit walks over to a woman in leather with her hands tied together. He,A man wearing a white fencing outfit walks over to a woman in leather with her hands tied together.,He,gold,tries a front tier on her shoulders as she sits on the floor with her.,begins to drink some martini liquids and.,dismounts from the bow and walks away.,holds her waist and speaks to her while watching the men fence behind them.,3\n14433,anetv_cyznGwlE9hM,17097,\"This is a shot put and discus throw music video. First, the man\",This is a shot put and discus throw music video.,\"First, the man\",gold,throws the ball around a club while he talks.,brings his hands out in the air and pretends while moving his hips faster.,spins around and throws the discus indoors.,spins his face while he is hitting the ball.,2\n14434,anetv_cyznGwlE9hM,17098,\"First, the man spins around and throws the discus indoors. Next he\",\"First, the man spins around and throws the discus indoors.\",Next he,gold,is shown doing it outdoors where lots of people are watching.,makes a goal and runs his hands behind his face.,grabs a plastic ball and continues to peel the teen.,runs around to the jump and and kicks the board.,0\n14435,anetv_cyznGwlE9hM,1991,People spin around and throw balls onto a field. The crowd,People spin around and throw balls onto a field.,The crowd,gold,cheers as they win the game.,watches them throw the balls.,cheers around the man followed by them playing.,cheer for the cheering team.,1\n14436,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72403,8870,Someone is the only one to stand as someone comes to the table. He,Someone is the only one to stand as someone comes to the table.,He,gold,grins politely as he bends down to retrieve his napkin.,\"is suddenly strange, restless, unleashes him sigh, and looks away.\",starts it and goes as his mother tries to retrieve him from.,looks round and follows the men.,0\n14437,lsmdc1008_Spider-Man2-75853,11176,The train approaches the buffers. It,The train approaches the buffers.,It,gold,'s a student on a round bar plane waves as he runs across.,crashes through them and careens forward to the very end.,load on the car.,soars over the city.,1\n14438,lsmdc1008_Spider-Man2-75853,11175,\"It rips someone's costume in several places, and battles the front of the train as the costume tears away his arms as his hands holds the webs uses them to restrain the train forward thrust. Someone's features\",\"It rips someone's costume in several places, and battles the front of the train as the costume tears away his arms as his hands holds the webs uses them to restrain the train forward thrust.\",Someone's features,gold,are driven away as rain crashes against double washing cars as someone drives out.,\"break free and he leads someone to a railing, landing into an rocky obstacle, back from the train atop the warehouse.\",\"turn, and a hurls in the air black tendrils cuts into the view.\",are contorted as some of the webs start to break.,3\n14439,lsmdc1008_Spider-Man2-75853,11179,He continues to hold the webs attached to the buildings behind them. The train,He continues to hold the webs attached to the buildings behind them.,The train,gold,slams the two bundles one onward and falls a few feet away.,grinds to a halt.,\"comes into a long, thick flight of vision.\",\"draws from side to side, revealing a dozen seagulls.\",1\n14440,lsmdc1008_Spider-Man2-75853,11177,It crashes through them and careens forward to the very end. Someone,It crashes through them and careens forward to the very end.,Someone,gold,\"leans back, raising their fists.\",slides to one knee and juts out forcing her to relax.,\"stops walking around the side of the vehicle, climbing on next to him.\",stands as if glued to the front of the train.,3\n14441,lsmdc1008_Spider-Man2-75853,11181,He releases the web and slumps forward. Hands,He releases the web and slumps forward.,Hands,gold,perch on the wall rises a pair of feet up at its top.,fly through the air.,reach out to prevent him from falling.,\"behind the man, someone stands in front of someone, who's billowing.\",2\n14442,lsmdc1008_Spider-Man2-75853,11183,\"The passengers lift the unconscious, unmasked someone into the carriage. His head falling back, the costumed figure\",\"The passengers lift the unconscious, unmasked someone into the carriage.\",\"His head falling back, the costumed figure\",gold,lies on the trail amid the guests.,reaches down and knocks him away.,is passed along the carriage over people's heads.,places its arms around his body.,2\n14443,lsmdc1008_Spider-Man2-75853,11182,Hands reach out to prevent him from falling. The passengers,Hands reach out to prevent him from falling.,The passengers,gold,\"lift the unconscious, unmasked someone into the carriage.\",lift their guns skyward.,peer out from behind the driver seat where the police car is driving.,\"are very shallow, they are up by themselves.\",0\n14444,anetv_BKrUkWSo4Ig,7972,An intro leads into a man holding a violin and playing with his hands. The man,An intro leads into a man holding a violin and playing with his hands.,The man,gold,continues to play and then pauses to speak to the camera while also demonstrating how to properly play.,carries several sticks all around while still playing in the air.,then begins to play the drums with his hands with his hands and brow.,plays the harmonica while the camera looks around him and places the instrument in his hands as all continue to play.,0\n14445,lsmdc1057_Seven_pounds-97714,1199,Someone sits glumly among a stack of packed boxes in the beach house. Someone,Someone sits glumly among a stack of packed boxes in the beach house.,Someone,gold,slips some coins onto someone's mother's wallet and takes a tiny bite of dessert.,has turned the guard down a dark street to the front of the trees.,\"drives his car sedately along the wide and winding coast road, which is bathed in sunshine.\",appears on the bluffs as someone maintains a graceful pose.,2\n14446,lsmdc1057_Seven_pounds-97714,1184,Someone walks up to him. He,Someone walks up to him.,He,gold,\"walks in, grabbing a hose, resting it on a spot in front of the car.\",\"runs toward the face of the army, breathing heavily and gasping for breath.\",\"stares at her with sad, gentle eyes.\",\"slows, picks up the bell, and starts down the aisle.\",2\n14447,lsmdc1057_Seven_pounds-97714,1181,\"Once again, someone looks astounded. Someone\",\"Once again, someone looks astounded.\",Someone,gold,rise their steps and stand motionless.,puts his gloved fist into his rich temple.,frames his eyes pinched tightly and raps his knuckles.,grins and looks down.,3\n14448,lsmdc1057_Seven_pounds-97714,1185,\"He stares at her with sad, gentle eyes. He\",\"He stares at her with sad, gentle eyes.\",He,gold,stares at her with wide eyes.,tenderly kisses them fierce.,\"raises his eyebrows, then looks serious.\",closes his eyes as he presses someone's hand in his temple.,2\n14449,lsmdc1057_Seven_pounds-97714,1192,Someone shoots someone a last look before shutting the door behind him. Someone,Someone shoots someone a last look before shutting the door behind him.,Someone,gold,stops on the counter and spots someone.,leads them out of the street.,takes his jacket off the list and walks out.,goes to his car.,3\n14450,lsmdc1057_Seven_pounds-97714,1194,Someone watches him through the window. Someone,Someone watches him through the window.,Someone,gold,knocks the penguin from the train to the boat.,leans back and lowers the canvas toward us.,\"stands, looking out from his patio.\",gives a pudgy boy.,2\n14451,lsmdc1057_Seven_pounds-97714,1202,\"In his motel room, someone uses a small hose to fill up the large cylindrical fish tank that someone was carrying. Light from the tank\",\"In his motel room, someone uses a small hose to fill up the large cylindrical fish tank that someone was carrying.\",Light from the tank,gold,\"illuminates someone's face as he stands in the darkness, seemingly lost in thought.\",\"lies peacefully in the surveillance room, bruised and bruised, and a pale light comes on.\",starts to van underneath which is now in a workshop marbled with paper and stars.,two two more gypsies come into the second house and washes their face.,0\n14452,lsmdc1057_Seven_pounds-97714,1180,He stares down at the table they are sitting at. She,He stares down at the table they are sitting at.,She,gold,looks down at his reflection in the soft words.,walks up to the table and puts two glasses of tea in her simple coat.,\"gazes down at someone, who's just inches from the ceiling.\",fiddles with her collar.,3\n14453,lsmdc1057_Seven_pounds-97714,1183,They share a lingering look. Someone,They share a lingering look.,Someone,gold,sucks out his inhaler.,smiles broadly and heads out.,sits on the bed.,looks up at the motorcycle.,1\n14454,lsmdc1057_Seven_pounds-97714,1198,Someone cleans his beach house. Someone,Someone cleans his beach house.,Someone,gold,\"see someone's eyes rolling up and down a branch, pockets it hard and falls backward.\",sits glumly among a stack of packed boxes in the beach house.,\"moves to seat tilting several toilets, decorating the picnic basket.\",leaves a leafy flap.,1\n14455,lsmdc1057_Seven_pounds-97714,1179,\"Someone looks astonished and stares at him, brow furrowed. He\",\"Someone looks astonished and stares at him, brow furrowed.\",He,gold,scowls at someone's brother with a backpack.,\"shifts on his feet, unable to give him the opportunity.\",holds the chain out to him.,stares down at the table they are sitting at.,3\n14456,lsmdc1057_Seven_pounds-97714,1191,She gives a little wave as someone steps outside. Someone,She gives a little wave as someone steps outside.,Someone,gold,leads someone to the barred sedan.,jumps from the bottom and splashes to the ground.,marches out her front entrance.,shoots someone a last look before shutting the door behind him.,3\n14457,lsmdc1057_Seven_pounds-97714,1189,\"They hold each other's gaze. Then, someone\",They hold each other's gaze.,\"Then, someone\",gold,walks into a pair of houses that are lined up at the end of a rack in the middle of the theater.,caresses the grieving sister's cheek with a dainty sneer.,hands up a wad of cash.,smiles and looks down shyly.,3\n14458,lsmdc1057_Seven_pounds-97714,1193,Someone goes to his car. Someone,Someone goes to his car.,Someone,gold,looks from the bottle to someone.,notices someone getting into the car.,rushes down after him and wraps the napkin to the sleeve.,watches him through the window.,3\n14459,lsmdc1057_Seven_pounds-97714,1197,Someone fingers a rope of pearls and studies a photo of himself and someone. Someone,Someone fingers a rope of pearls and studies a photo of himself and someone.,Someone,gold,lifts his blanket by the shirt and shows her on the way across the street.,cleans his beach house.,lights a cigarette as he takes the plane down in front of him.,ducks as it opens through an open entrance.,1\n14460,lsmdc1057_Seven_pounds-97714,1190,\"Then, someone smiles and looks down shyly. She\",\"Then, someone smiles and looks down shyly.\",She,gold,slips her middle finger into his arm and moves away.,\"goes, slowly, leaving her wedding robe sitting around her.\",stays about his meal without taking his eyes off with them.,gives a little wave as someone steps outside.,3\n14461,lsmdc1057_Seven_pounds-97714,1200,\"Someone drives his car sedately along the wide and winding coast road, which is bathed in sunshine. The motel receptionist, someone,\",\"Someone drives his car sedately along the wide and winding coast road, which is bathed in sunshine.\",\"The motel receptionist, someone,\",gold,puts up a packed mnu.,pulls something on a small wheel.,helps someone carry gear.,is studying the sunset killer.,2\n14462,lsmdc1057_Seven_pounds-97714,1195,\"Someone stands, looking out from his patio. Tears\",\"Someone stands, looking out from his patio.\",Tears,gold,\", loving around the tables.\",rolls down someone's cheeks as he stands looking out to sea.,clips playing paintball.,\"to the curtains, he sets his keys on a path in front of him and parents all walk up the hall toward the door\",1\n14463,lsmdc1057_Seven_pounds-97714,1182,\"Someone grins and looks down. Taken aback, someone\",Someone grins and looks down.,\"Taken aback, someone\",gold,gets up and starts dragging out.,strolls up to his entrance.,blinks as the decision sinks in.,smiles a little and hugs him.,2\n14464,lsmdc1057_Seven_pounds-97714,1188,\"Someone gives an awkward, white - toothed grin and makes for the front door. They\",\"Someone gives an awkward, white - toothed grin and makes for the front door.\",They,gold,leap into the side of the panels.,hold each other's gaze.,find another hanging up in the back of the stylish.,\"has led his way through a women's office, on a low lamp covered floor.\",1\n14465,anetv_VHUC47iq1Wg,1820,In them a someone throws a ball at a player. Another player,In them a someone throws a ball at a player.,Another player,gold,\"grabs the balls, lifting it over the net.\",display the ball and throws it back to the net.,hits the ball with his bat.,hits the ball and leaps into the crowd.,2\n14466,anetv_VHUC47iq1Wg,1819,Several clips of cricketers are shown. In them a someone,Several clips of cricketers are shown.,In them a someone,gold,is being played against them.,throws a ball at a player.,race across a field making letters to black.,gives all the news mail.,1\n14467,lsmdc3055_PROMETHEUS-26502,16925,Someone unlatches his helmet then bends over and pulls it off. Straightening he,Someone unlatches his helmet then bends over and pulls it off.,Straightening he,gold,points to people who's shooting.,\"brings, and gives it a thumbs up.\",finishes his picture and edges away as someone gives him a perplexed look.,inhales deeply and pulls off his skullcap.,3\n14468,lsmdc3055_PROMETHEUS-26502,16910,\"As the team ventures in, holographic monitors each show the captain a crew member's computerized helmet view. Venturing through the opening someone\",\"As the team ventures in, holographic monitors each show the captain a crew member's computerized helmet view.\",Venturing through the opening someone,gold,finds someone passing the helicopter's prow.,draws himself up with an alert stare.,\"blocks, desperately creating a torch, killing the people on their necks.\",\"opens a folder to show a surly someone in his sportensemble expanding, gray pajama bottoms.\",1\n14469,lsmdc3055_PROMETHEUS-26502,16903,\"The team members approach one of the entry ways, each carrying a kit or bag of varying size. We\",\"The team members approach one of the entry ways, each carrying a kit or bag of varying size.\",We,gold,step from someone's body.,\"climbs the panels of a door, assembling the equipment.\",peer up at the approaching humans from a sandy slope dotted with sharp rocks.,\", someone steps to the edge of the tunnels, takes the hard thrust and knocks it over.\",2\n14470,lsmdc3055_PROMETHEUS-26502,16902,Someone ventures forward and someone follows. The team members,Someone ventures forward and someone follows.,The team members,gold,stare at each other at the dessert conference doors.,are racing along a dusty - retreating track through explorers orcs.,\"approach one of the entry ways, each carrying a kit or bag of varying size.\",arrive an expert heap to greet someone.,2\n14471,lsmdc3055_PROMETHEUS-26502,16909,\"Now, someone's view closes in on a cave opening. As the team ventures in, holographic monitors each\",\"Now, someone's view closes in on a cave opening.\",\"As the team ventures in, holographic monitors each\",gold,films a parasail photograph on which it's about six rows of people.,show the captain a crew member's computerized helmet view.,line their fists pumping.,watch a profile pass with the look of someone.,1\n14472,lsmdc3055_PROMETHEUS-26502,16900,\"Her helmet's computerized view shows long, low entrances carved into the dome's base. In the dark cockpit, someone\",\"Her helmet's computerized view shows long, low entrances carved into the dome's base.\",\"In the dark cockpit, someone\",gold,\"holds onto a railing, struggling in to reach her reverie.\",\"stands beside her, watching her crawl up lifelessly.\",stands behind the captain's chair.,lies down from burning exercise machine.,2\n14473,lsmdc3055_PROMETHEUS-26502,16911,\"Further in, the team passes through a circular archway. They\",\"Further in, the team passes through a circular archway.\",They,gold,mezzanine a muddy terrain.,\"pause, shining their lights in either direction.\",find the caddy inside.,and someone move closer.,1\n14474,lsmdc3055_PROMETHEUS-26502,16890,The crew steps into a hanger. Someone,The crew steps into a hanger.,Someone,gold,\"spins wildly in the sky, his vision dropping into the pool.\",comes along several shots of the internet.,brings a duffel to the front of a transport vehicle with twin rows of seats.,sits at a table holding a piece of equipment bound above his head.,2\n14475,lsmdc3055_PROMETHEUS-26502,16893,The mohawked man moves down a few spots. The transport,The mohawked man moves down a few spots.,The transport,gold,slides on its own rope.,pulls out alongside two atvs.,continues towards a telephone.,missile burst in with someone.,1\n14476,lsmdc3055_PROMETHEUS-26502,16916,\"As he activates its computerized system, someone, someone, and someone join him. The pups\",\"As he activates its computerized system, someone, someone, and someone join him.\",The pups,gold,rings bright droplets of people round them.,master competes rushed between double bars.,split off again as the extending network of tunnels grows more complex.,shoots out a wall of skulls and propels into the center.,2\n14477,lsmdc3055_PROMETHEUS-26502,16894,\"The transport pulls out alongside two atvs. In the transport, someone\",The transport pulls out alongside two atvs.,\"In the transport, someone\",gold,notes their gear overhead.,waits to answer her email.,moves close to someone.,finds a bulge in a leather jacket.,2\n14478,lsmdc3055_PROMETHEUS-26502,16914,\"Spinning, they shine red scanner beams in all directions as they fly down the corridor. He\",\"Spinning, they shine red scanner beams in all directions as they fly down the corridor.\",He,gold,sends two more off the other way.,sprawls down evenly on the boards.,opens the door and climbs out again.,sniffs the exotic straw.,0\n14479,lsmdc3055_PROMETHEUS-26502,16913,\"Someone releases two into the air. Spinning, they\",Someone releases two into the air.,\"Spinning, they\",gold,shine red scanner beams in all directions as they fly down the corridor.,break into a clearing on the edge of the field.,jump up as someone swoops over.,push several cables across the body.,0\n14480,lsmdc3055_PROMETHEUS-26502,16889,\"In the airlock, a hatch rises. The crew\",\"In the airlock, a hatch rises.\",The crew,gold,folds it off the canvas.,holds the coffin above him.,sits on the ship.,steps into a hanger.,3\n14481,lsmdc3055_PROMETHEUS-26502,16919,\"As he leads them on, someone curiously shines her flashlight at the etched stone walls. Someone\",\"As he leads them on, someone curiously shines her flashlight at the etched stone walls.\",Someone,gold,places his arm around someone's neck.,turns and recognizes him.,\"takes up the rear, closely observing his surroundings.\",takes the giant photo by the key and places it on someone's box.,2\n14482,lsmdc3055_PROMETHEUS-26502,16899,The crust rounded front gives a hint of wind - eroded carving of a face. The survey vehicles,The crust rounded front gives a hint of wind - eroded carving of a face.,The survey vehicles,gold,pull up around the dome and park.,have thrown face - to - face with water bubbling.,wait to find the their graves.,pulls up to the air home.,0\n14483,lsmdc3055_PROMETHEUS-26502,16923,Water rains around the probe as it plunges several stories. Someone,Water rains around the probe as it plunges several stories.,Someone,gold,taps keys on his sleeve.,rouses it to dim another burst of light.,pursue someone by the slamming into a rock.,\"shoots someone the canvas, which lands downwards, spilling down a broken tire.\",0\n14484,lsmdc3055_PROMETHEUS-26502,16892,\"As the mohawked man sits, someone takes the seat facing him. The mohawked man\",\"As the mohawked man sits, someone takes the seat facing him.\",The mohawked man,gold,moves down a few spots.,smiles sweetly and turns.,gives someone a brave gesture.,runs over to someone.,0\n14485,lsmdc3055_PROMETHEUS-26502,16917,The pups split off again as the extending network of tunnels grows more complex. The survey team,The pups split off again as the extending network of tunnels grows more complex.,The survey team,gold,comes to a halt and moves swaying.,climbs out from the rooftops and cross the street.,is fitted to their third belt.,reaches a rounded tunnel of dark gleaming stone.,3\n14486,lsmdc3055_PROMETHEUS-26502,16891,\"Someone brings a duffel to the front of a transport vehicle with twin rows of seats. As the mohawked man sits, someone\",Someone brings a duffel to the front of a transport vehicle with twin rows of seats.,\"As the mohawked man sits, someone\",gold,nods and returns with a broad - bladed gaze.,looks up over his shoulder then hunches steadily down the steps.,takes the seat facing him.,looks down with a frown.,2\n14487,lsmdc3055_PROMETHEUS-26502,16915,He sends two more off the other way. Leaving his chair the captain,He sends two more off the other way.,Leaving his chair the captain,gold,pulls the garage door open and steps out.,goes to a layout table.,quickly snaps his seat belt.,looks up from his magazine.,1\n14488,lsmdc3055_PROMETHEUS-26502,16906,Someone regards the space with a calm expression. A view through a helmet camera,Someone regards the space with a calm expression.,A view through a helmet camera,gold,shows someone advancing on the turn of an upper stairway.,goes to the distant window of england's surplus.,shows a few of the team exploring the cavernous space.,shows the features man hard features.,2\n14489,lsmdc3055_PROMETHEUS-26502,16920,\"They venture towards a faint light in the distance. Rounding a turn, the survey team\",They venture towards a faint light in the distance.,\"Rounding a turn, the survey team\",gold,sees someone and someone.,shoots into the water.,steps into view and slows.,nods slowly.,2\n14490,lsmdc3055_PROMETHEUS-26502,16897,Someone adverts her troubled gaze. The transport,Someone adverts her troubled gaze.,The transport,gold,makes a left run and heads back to sleep; someone rests her head on someone's shoulder.,leads the two atvs to an opening in a wall surrounding the structure.,looks at her father.,nears the ominous crowd.,1\n14491,lsmdc3055_PROMETHEUS-26502,16895,\"In the transport, someone moves close to someone. He\",\"In the transport, someone moves close to someone.\",He,gold,\"grabs someone by the leg, then tosses it down.\",\"presses her helmet to his with an ardent gaze, then turns away.\",removes its lighter as the skeletons stride by and leaves with the mallet by someone's side.,allows someone to lift his head to the floor.,1\n14492,lsmdc3055_PROMETHEUS-26502,16896,\"He presses her helmet to his with an ardent gaze, then turns away. Someone\",\"He presses her helmet to his with an ardent gaze, then turns away.\",Someone,gold,glances around and finds her mother standing alone.,proudly returns his gaze to someone.,leaves leaving his board behind.,adverts her troubled gaze.,3\n14493,lsmdc3055_PROMETHEUS-26502,16922,A pup doubles back from the far wall and drops down the pit. Water,A pup doubles back from the far wall and drops down the pit.,Water,gold,\"his feet, he falls and lands on his knees.\",thrash around the doorway descending as someone let the child get on a rod and the dog pulls someone away.,rains around the probe as it plunges several stories.,\", someone tries to step up to the side of the bed.\",2\n14494,lsmdc3055_PROMETHEUS-26502,16918,\"The survey team reaches a rounded tunnel of dark gleaming stone. As he leads them on, someone\",The survey team reaches a rounded tunnel of dark gleaming stone.,\"As he leads them on, someone\",gold,curiously shines her flashlight at the etched stone walls.,is directing someone the dictaphone.,controls the prisoners for their intervention.,finds two young men dunking with carts.,0\n14495,anetv_F_-w_z4B3bg,547,The man moves sticks around while looking off into the distance and begins to play. Another boy,The man moves sticks around while looking off into the distance and begins to play.,Another boy,gold,walks into frame as well as the others at the way the camera turns around.,walks in and out of frame and begins singing into a microphone.,is seen jumping up and down on his back while the camera captures his movements and walks back.,is seen gently moving his feet along by the man while riding back and fourth.,1\n14496,lsmdc1004_Juno-6783,18659,She rides down a quiet residential street in bright sunlight. She,She rides down a quiet residential street in bright sunlight.,She,gold,arrives at someone's house and props her bike against the front wall.,looks up her right face as she waves to the phone and sees she still looks at his wife and knees.,snogs her as she closes her eyes.,\"stares at her rescuer pensively, then turns and approaches the girl.\",0\n14497,lsmdc1004_Juno-6783,18661,Someone is sitting on the low wall with his guitar on his lap. Someone,Someone is sitting on the low wall with his guitar on his lap.,Someone,gold,sighs when he hears the noise.,\"watches television, smiling about it now.\",sits down facing him with her guitar.,steps on the other side of the house.,2\n14498,lsmdc1004_Juno-6783,18660,She arrives at someone's house and props her bike against the front wall. Someone,She arrives at someone's house and props her bike against the front wall.,Someone,gold,\"storms through the terminal, finds someone with another woman in the suit.\",cleans a hand in front of her.,is sitting on the low wall with his guitar on his lap.,stares at her cousin.,2\n14499,lsmdc1004_Juno-6783,18658,Someone is sitting on the front lawn bouncing two Weimaraner pups on her lap. She,Someone is sitting on the front lawn bouncing two Weimaraner pups on her lap.,She,gold,stares thoughtfully at the dragon's window as it moves forward.,false back and scribbles product number on love periodically.,rides down a quiet residential street in bright sunlight.,waves over her shoulder.,2\n14500,anetv_yGwevg8vwuU,16148,Two people are seen performing various martial arts tricks against one each other in the middle of a large field. The people,Two people are seen performing various martial arts tricks against one each other in the middle of a large field.,The people,gold,continue to play and others watch on the side as well watch in the end.,continue spinning and kicking around one another while laughing at the camera and spinning around.,hold up their hands while smiling to one another as they continue to perform tricks.,speak to one another and continue to speak with one another.,1\n14501,anetv_yGwevg8vwuU,3445,A couple of women are fighting in a field. They,A couple of women are fighting in a field.,They,gold,say goodbye to each other.,spin and kick in a form of kickboxing.,are engaged in a game of curling.,are trying to play a game of croquette with the batter.,1\n14502,anetv_yGwevg8vwuU,3446,They spin and kick in a form of kickboxing. They,They spin and kick in a form of kickboxing.,They,gold,look stone - splitting as they pull.,\"continue fighting quickly, kicking and boxing with each other.\",step floors in a small area.,spin around to catch the ball and spin it around.,1\n14503,anetv_5yGj9JooT_Q,9767,A man jumps off a stack of mats. Another man,A man jumps off a stack of mats.,Another man,gold,begins to play it together while kicking his feet.,does a flip off the wall.,holds his hands in place.,is shown running and doing multiple throws.,1\n14504,anetv_5yGj9JooT_Q,9766,Two men are fighting with bows and arrows in a room. A man,Two men are fighting with bows and arrows in a room.,A man,gold,is leaning up close.,blows on a piece of wood.,jumps off a stack of mats.,is talking to the camera.,2\n14505,anetv_jYphKtLFIUk,3777,A group of boys chisel a name in sand on the beach with their hands. The boys,A group of boys chisel a name in sand on the beach with their hands.,The boys,gold,help their person line up.,leave the art piece leaving just one boy in a red t - shirt to work on it alone.,continue playing on the ice and slide backwards down the track and giving a thumbs up in work.,play against one another while paddling at the animal.,1\n14506,anetv_elgmPvU19K8,4744,\"Another boat appears, then we see people watching waves. a man\",\"Another boat appears, then we see people watching waves.\",a man,gold,stands on the beach and then uses a pitcher of spray.,falls off of the boat into the boat.,\"smiles at the camera, then lowers the camera.\",is water surfing behind a boat.,3\n14507,anetv_elgmPvU19K8,19385,One of the men on the boat jumps into the water from the second level. Another man,One of the men on the boat jumps into the water from the second level.,Another man,gold,leaves the boat and slowly looks up to a gauge.,flies a drone from a ski boat.,comes inside and a boat follows.,jumps to the track below his skis.,1\n14508,anetv_elgmPvU19K8,19384,\"Several men ski, ride jet skis and wake boards. One of the men on the boat\",\"Several men ski, ride jet skis and wake boards.\",One of the men on the boat,gold,ski down the board in the raft.,rides a lift with a high wave.,jumps into the water from the second level.,jump building an inter area.,2\n14509,anetv_elgmPvU19K8,19386,Another man flies a drone from a ski boat. Two men,Another man flies a drone from a ski boat.,Two men,gold,ski down a flagpole.,shoot in a hangar.,tip a jet ski over on it's side in the water.,are a big flip off.,2\n14510,anetv_elgmPvU19K8,19383,Several men in swimsuits are standing on the deck of a large boat. Several men,Several men in swimsuits are standing on the deck of a large boat.,Several men,gold,are walking sailing very back together.,\"ski, ride jet skis and wake boards.\",are scuba diving under large water in the water.,is shuffling their boards out of the water.,1\n14511,anetv_elgmPvU19K8,4743,\"A view is seen of the ocean with a big boat in it. Another boat appears, then we\",A view is seen of the ocean with a big boat in it.,\"Another boat appears, then we\",gold,see the artificial ocean surface.,see people watching waves.,see something is in progress.,see an aerial view of the mountains.,1\n14512,anetv_FRzN9ApCxW8,16879,\"Once he makes it to the other side of the strip, the person with the camera walks closer to him and starts to talk to them. After, the guy with the lawn mower\",\"Once he makes it to the other side of the strip, the person with the camera walks closer to him and starts to talk to them.\",\"After, the guy with the lawn mower\",gold,turns a skateboard down the road and runs over a pile of snow.,is then shown next to a woman who is in a backyard standing near a wood block floor stand talking.,begins to laugh and continues cutting the yard.,\"spins on, shaking his hips and jumping.\",2\n14513,anetv_FRzN9ApCxW8,16878,\"A man is outside in a field of grass pushing a lawn mower back and forth. Once he makes it to the other side of the strip, the person with the camera\",A man is outside in a field of grass pushing a lawn mower back and forth.,\"Once he makes it to the other side of the strip, the person with the camera\",gold,on the borders is show off a couple of quick angles.,walks closer to him and starts to talk to them.,stops cradling his back to the camera mower starts to turn in and gave a long time.,trims the section but the bars.,1\n14514,lsmdc0029_The_Graduate-64180,11519,\"Someone comes through the back door, moves to the pool and dives in. Someone\",\"Someone comes through the back door, moves to the pool and dives in.\",Someone,gold,is dancing in the middle of the dance floor.,swims toward us the length of the pool.,\"has turned off, looking at its supports, gasping, to avoid sight.\",is sitting in someone's car.,1\n14515,lsmdc0029_The_Graduate-64180,11514,The sun is bright outside. His bathing suit,The sun is bright outside.,His bathing suit,gold,hangs from the entrance.,is rising doubtfully from the tightrope holding joy.,stands in the wind.,is on the window sill.,3\n14516,lsmdc0029_The_Graduate-64180,11499,Someone has just shut the door to the bathroom behind him. He,Someone has just shut the door to the bathroom behind him.,He,gold,\"sits on the bench, shaking his hand till he is finished.\",gestures at the camera somewhat obscured by empty desolate areas.,\"is wearing his shirt, buttoned, and no trousers.\",drapes one pillow behind his head as someone reaches for someone's jacket.,2\n14517,lsmdc0029_The_Graduate-64180,11508,\"Someone walks into the shot, half dressed. She\",\"Someone walks into the shot, half dressed.\",She,gold,passes between someone and the television set and goes out of frame.,is with a bunch of roses with a very long window.,\"stands alone in a straw chair, watching, wide - eyed.\",stands in front of him.,0\n14518,lsmdc0029_The_Graduate-64180,11503,\"In the dining room, people are sitting, having their dinner, looking through the doorways toward someone. Someone\",\"In the dining room, people are sitting, having their dinner, looking through the doorways toward someone.\",Someone,gold,\"picks up his weapon and guides it to a shelf, knocking in space, rows of rows, stare down at it.\",are on a pier.,stand in the doorway of a room in a small refrigerator carrying their trays of small green rooms and lungs.,\"stands, crosses back to the door to the den and shuts it.\",3\n14519,lsmdc0029_The_Graduate-64180,11516,He takes the suit and puts it on. He,He takes the suit and puts it on.,He,gold,\"steps forward with his blue goggles, so she can't see him.\",\"moves to the bedroom door, opens it and goes out.\",\", the pretty young biker jumps on the bed, staggers away, then moves up the street's open frame.\",grabs it from a rack.,1\n14520,lsmdc0029_The_Graduate-64180,11517,\"He moves to the bedroom door, opens it and goes out. We\",\"He moves to the bedroom door, opens it and goes out.\",We,gold,corner juts over his brow as he and someone sit beside him at the table.,are many men in seeing way.,see someone in the kitchen.,\"drops the bag into a trash bin, glares at someone, who smiles.\",2\n14521,lsmdc0029_The_Graduate-64180,11513,Follow someone as he gets up and moves to the windows of what is now his bedroom in someone house. He,Follow someone as he gets up and moves to the windows of what is now his bedroom in someone house.,He,gold,approaches the house's mother's facade to find.,tosses his pills through the fridge and swims toward the other end of the couch.,opens the closed blinds over the window.,is at the bottom of the stairs.,2\n14522,lsmdc0029_The_Graduate-64180,11502,\"We now see behind someone the door that leads from someone den, in which someone is sitting. In the dining room, people\",\"We now see behind someone the door that leads from someone den, in which someone is sitting.\",\"In the dining room, people\",gold,\"are sitting, having their dinner, looking through the doorways toward someone.\",take their seats in front of their neighborhood.,are boxing in the living room.,move toward an open window.,0\n14523,lsmdc0029_The_Graduate-64180,11510,Someone continues to stare at the set. Someone,Someone continues to stare at the set.,Someone,gold,plants a slight curtsey and winces her in place.,passes the dog and looks at the dog.,sits with her leg resting on its knee.,appears again and passes the other way.,3\n14524,lsmdc0029_The_Graduate-64180,11507,\"Someone is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed. Someone\",\"Someone is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed.\",Someone,gold,\"walks into the shot, half dressed.\",switched off from all the window and earrings.,\", a patient, sits in bed facing her bare body.\",\"is sitting on a table, facing with him.\",0\n14525,lsmdc0029_The_Graduate-64180,11506,Pull back and we are in the Taft Hotel Room. Someone,Pull back and we are in the Taft Hotel Room.,Someone,gold,fishes in his pocket as she goes.,\"stands on the edge of the lounge, looking grateful for the city.\",\"is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed.\",walks into the kitchen and framed images with cakes and toys appear.,2\n14526,lsmdc0029_The_Graduate-64180,11505,\"A television set, facing the chair, is on. Someone\",\"A television set, facing the chair, is on.\",Someone,gold,is looking as she looks around the room.,picks up a can of beer and drinks from it.,\"hangs his head, hands on his knees to someone's gun, and points it at someone whose head is cocked.\",looks up from his 2 - year - old assistant and stands for a moment.,1\n14527,lsmdc0029_The_Graduate-64180,11520,Someone swims toward us the length of the pool. He,Someone swims toward us the length of the pool.,He,gold,dawns a school glove over a red defensive fish.,stays on top of her for a moment.,runs his arms through his pockets.,kisses up round the surface and in an deep as the smoke is lowered.,1\n14528,lsmdc0029_The_Graduate-64180,11515,His bathing suit is on the window sill. He,His bathing suit is on the window sill.,He,gold,is trailing.,hangs up beside them.,takes the suit and puts it on.,climbs on board down.,2\n14529,lsmdc0029_The_Graduate-64180,11511,Someone appears again and passes the other way. Someone,Someone appears again and passes the other way.,Someone,gold,passes back the other way again.,approaches at the last basket staring from the bench.,coming down to face them.,leads it into a number with students.,0\n14530,lsmdc0029_The_Graduate-64180,11509,She passes between someone and the television set and goes out of frame. Someone,She passes between someone and the television set and goes out of frame.,Someone,gold,continues to stare at the set.,steps behind an ironing board lamp.,looks up to see that someone has disappeared.,opens the refrigerator and follows her through.,0\n14531,lsmdc0029_The_Graduate-64180,11512,\"Someone passes back the other way again. Someone, now fully dressed and carrying her purse,\",Someone passes back the other way again.,\"Someone, now fully dressed and carrying her purse,\",gold,is walking around the corner of the house to work out.,joins her through the doorway.,\"passes through again and, without looking at someone, goes to the door of the hotel room, opens it and exits.\",turns her back and returns to the bed.,2\n14532,lsmdc0029_The_Graduate-64180,11497,\"Someone is going toward him from the house, carrying some ominously large thing wrapped in tinfoil. He\",\"Someone is going toward him from the house, carrying some ominously large thing wrapped in tinfoil.\",He,gold,sees the silhouettes of someone falling on the street.,fixes his wine for a moment staring out across the street.,rolls off the raft and swims to the end of the pool.,wraps the chain around someone 'neck.,2\n14533,lsmdc0029_The_Graduate-64180,11504,\"Someone stands, crosses back to the door to the den and shuts it. On someone's back as he\",\"Someone stands, crosses back to the door to the den and shuts it.\",On someone's back as he,gold,demonstrates watch it carefully.,\"sweeps the boys' feet up the floor, sitting on the salesman's desk - and peers down the hallway.\",returns to the chair and sits.,walks up a ladder.,2\n14534,lsmdc0029_The_Graduate-64180,11494,The light in the room disappears. The midsummer sun,The light in the room disappears.,The midsummer sun,gold,\"turns on very high, blood everywhere the surface of the pool.\",begins to engulf through the triumphant school.,beats down on someone swimming pool and on someone who lies on a rubber raft in the middle of the pool.,puts its branches in the air.,2\n14535,lsmdc0029_The_Graduate-64180,11496,\"Someone wears dark glasses, is deeply tanned, and holds a beer can in one hand. Someone\",\"Someone wears dark glasses, is deeply tanned, and holds a beer can in one hand.\",Someone,gold,opens his eyes and moves his head slightly.,\"fumbles in his pocket, then begins to fold a second brush over someone's party hat.\",picks up brushes and approaches a waiter.,\"climbs the porch, smoking her cigarette and holding her mouth.\",0\n14536,lsmdc0029_The_Graduate-64180,11518,We see someone in the kitchen. Someone,We see someone in the kitchen.,Someone,gold,opens the entrance door and looks over at a lanky robber with a briefcase inside.,\"stretches on a rug, then someone stands halfway outside.\",\"comes through the back door, moves to the pool and dives in.\",gets off the backseat.,2\n14537,lsmdc0029_The_Graduate-64180,11501,\"Someone moves in to someone, kneels in front of him and starts to unbutton his shirt. We now\",\"Someone moves in to someone, kneels in front of him and starts to unbutton his shirt.\",We now,gold,see the white manager on the tv.,\"see an rib cage and all the noise, terror - lose.\",see a running figure lying on his back on the horse.,\"see behind someone the door that leads from someone den, in which someone is sitting.\",3\n14538,lsmdc0029_The_Graduate-64180,11521,He stays on top of her for a moment. Someone,He stays on top of her for a moment.,Someone,gold,sits down while giggling.,\"goes to his window, and comes back in.\",turns toward us and looks.,stands up then leans close to her.,2\n14539,lsmdc0029_The_Graduate-64180,11500,\"He is wearing his shirt, buttoned, and no trousers. He\",\"He is wearing his shirt, buttoned, and no trousers.\",He,gold,tries to tie up the boy and pulls him to his feet.,moves to a chair and sits.,'ll help to get a weather look.,looks in a cramped space.,1\n14540,anetv_Nh-RdjyfGNA,2118,Teams of players play beach soccer. A player,Teams of players play beach soccer.,A player,gold,scores a goal with the soccer ball.,ducks to a ball forward.,pointing the cricket players joins players on the ice.,watches a brazilian competition.,0\n14541,anetv_lviFcaF4HUo,4105,\"She spins herself between the two, going around and around the bars. She\",\"She spins herself between the two, going around and around the bars.\",She,gold,spins and hits all around the ball to the racket.,jumps off the beam onto a mat while.,\"dismounts, throwing her arms into the air and smiling.\",continue into images as they continue to spin and walk to another.,2\n14542,anetv_lviFcaF4HUo,9562,She does a gymnastics routine on the parallel bars. She,She does a gymnastics routine on the parallel bars.,She,gold,does several jump and lands on the mat.,does a cheerleading routine on the balance beam.,\"jumps onto the mat, performing flips across the mat.\",lands on a blue mat in front of her and puts her arms up.,3\n14543,anetv_lviFcaF4HUo,9561,A girl is on the parallel bars. She,A girl is on the parallel bars.,She,gold,removes his hat and bounces the rope.,starts jumping roping in the gym.,does a gymnastics routine on the parallel bars.,does push ups on the mat.,2\n14544,anetv_lviFcaF4HUo,4104,\"A female gymnast launches herself onto a low beam, then a high one. She\",\"A female gymnast launches herself onto a low beam, then a high one.\",She,gold,\"spins herself between the two, going around and around the bars.\",balances on the beam as she runs as she lands.,performs a stunning cheerleader routine in slow motion.,does multiple crunches and lifts in her dismount before going down several times.,0\n14545,lsmdc0041_The_Sixth_Sense-67649,16196,The next step will put him at the chair. Someone,The next step will put him at the chair.,Someone,gold,lowers his fingers from his temple.,stumbles and begins to stop.,goes back to sleep.,interlaces her fingers with she bridesmaids.,0\n14546,anetv_yfjnahzAPSc,3629,\"A group of people play cricket on a large green, grass covered field with intersperses demonstrative interviews with different people between practice video. A man in a white shirt\",\"A group of people play cricket on a large green, grass covered field with intersperses demonstrative interviews with different people between practice video.\",A man in a white shirt,gold,speaks to the camera with people practicing cricket in the background.,speaks to the camera in a field near clear paper with a logo.,walks back to a beer tree and grabs a piece of ice from a compact shelf.,lies on a slack rope by a rope.,0\n14547,anetv_yfjnahzAPSc,9194,A person talks in a field where people are training hurling. People,A person talks in a field where people are training hurling.,People,gold,are engaged in a game of ocean polo.,are standing in a circle watching a discus throw above a stadium.,throw a ball to other players in the field.,walking onto a field where people are thrown to someone.,2\n14548,anetv_yfjnahzAPSc,9196,Another man explains while people where people plays in the field. A player,Another man explains while people where people plays in the field.,A player,gold,blows the lacrosse team against a sprints while giving other interview lines away.,stands over a green circle in the rink.,pass the ball in an dusts court and field.,hit a ball while other try to catch the ball.,3\n14549,anetv_yfjnahzAPSc,3630,A man in a white shirt speaks to the camera with people practicing cricket in the background. A group of men,A man in a white shirt speaks to the camera with people practicing cricket in the background.,A group of men,gold,start paddling together in a barn and jump.,practice cricket on a field with different people interviewing and gesturing different cricket moves as they speak.,are shown on the corridor how to hit the ball back and forth.,are doing moves on several settings between opponents and others playing tricks and hitting the ball.,1\n14550,anetv_QCj7IGUGs2Y,443,A little girl runs in an indoor playground. She,A little girl runs in an indoor playground.,She,gold,jumps in an indoor ring.,shows her throwing herself on the floor mat.,runs and flips herself over another wall.,runs under the equipment looking into a net.,3\n14551,anetv_QCj7IGUGs2Y,14980,\"The girl walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares. Then she\",\"The girl walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares.\",Then she,gold,performs and moves using a blue glow stick.,begins swinging on one of the swings and enjoys herself.,lets herself in her last falling pace before getting her feet forward.,\"climbs down onto another base covered ground, mostly of doubled over then lets her run.\",1\n14552,anetv_QCj7IGUGs2Y,14981,Then she begins swinging on one of the swings and enjoys herself. Then she,Then she begins swinging on one of the swings and enjoys herself.,Then she,gold,starts climbing up a rope tunnel to go explore some fun.,lifts all the shoes to watch the food.,\"takes her final ornament, pretending to make cake.\",walks past the camera and then everything continues on together and cheers.,0\n14553,anetv_QCj7IGUGs2Y,444,She runs under the equipment looking into a net. She,She runs under the equipment looking into a net.,She,gold,turns her back with the pole and swings her off the mat.,sets the tray by the tree and glares at it.,grabs a bag and rubs it over her head.,\"appears to be confused, walking slowly.\",3\n14554,anetv_QCj7IGUGs2Y,14979,There's a little girl dressed in a lime green outfit playing in an indoor play structure. The girl,There's a little girl dressed in a lime green outfit playing in an indoor play structure.,The girl,gold,\"walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares.\",is riding a chinese elliptical in the living room with two fresh shoes and a dryer.,\"swings free circles a body of adult mice who are watching, performing with her jumps out of the trampoline.\",begins performing on the floor at the center of the room above her.,0\n14555,anetv_7DY1vm9RiIk,7269,Several clips begin playing of volleyball fields with spectators. The first clip,Several clips begin playing of volleyball fields with spectators.,The first clip,gold,is shown of a trophy game.,skate on the advertisements.,is shown by a lady playing on stage.,shows the players celebrating.,3\n14556,anetv_7DY1vm9RiIk,7272,It then continues to show clips of men playing volleyball. The video,It then continues to show clips of men playing volleyball.,The video,gold,ends with a closeup of the audience and a title sequence.,ends with a padded screen filled with trophies.,cuts to a player playing croquet and support alone.,ends with a video of the people playing soccer together.,0\n14557,anetv_7DY1vm9RiIk,7268,The video begins with a title sequence and logo. Several clips,The video begins with a title sequence and logo.,Several clips,gold,\"are shown of people dancing, dancing.\",are shown of a man turning to his music and showing the smoke.,begin playing of volleyball fields with spectators.,are shown repeated ma playing away from the camera.,2\n14558,anetv_hT_4wWPNYxo,13201,Woman wearing bikini is ni a backyard dancing and doing gymnastics. the dancing woman,Woman wearing bikini is ni a backyard dancing and doing gymnastics.,the dancing woman,gold,sits behind the bars to perform the jump and make her dance.,is able to take her performance with the baton.,spins other small dogs like the man stands around and does a choreography.,is kneeling holding the hoola hoop.,3\n14559,anetv_hT_4wWPNYxo,15240,Woman is walking on a backyard on a sunny day wearing a bathsuit and holding a hoola hoop. the girl,Woman is walking on a backyard on a sunny day wearing a bathsuit and holding a hoola hoop.,the girl,gold,raises the legs up in a circle around the woman.,start doing a dance with the hoola hoop.,holds a weight bar in a gym.,is holding a violin and the violin on her frame.,1\n14560,anetv_hT_4wWPNYxo,13202,The dancing woman is kneeling holding the hoola hoop. the hoola hoop feels of the woman hands and she,The dancing woman is kneeling holding the hoola hoop.,the hoola hoop feels of the woman hands and she,gold,grab it again with her foot.,takes the hula ring wildly.,is using multiple clipper and tape.,begins stroke another water in both her hands and then hula the while missing.,0\n14561,lsmdc1015_27_Dresses-79712,10732,It's someone 'turn to look stunned. Someone,It's someone 'turn to look stunned.,Someone,gold,is at a loss.,\"turns to someone, who shrugs at many other people, someone touches them.\",squeezes his hand over the can.,\"swipes out his slaps, then slaps it again.\",0\n14562,lsmdc3091_ZOMBIELAND-44732,7865,\"As Buck takes a bath, someone playfully scoops mounds of suds onto the boy's head. Outside by a blossoming tree, he\",\"As Buck takes a bath, someone playfully scoops mounds of suds onto the boy's head.\",\"Outside by a blossoming tree, he\",gold,watches the expensive vessel surround over.,peers into the murky hole.,turns to steering the destroyed vessel.,twirls the happy boy in his arms.,3\n14563,lsmdc3091_ZOMBIELAND-44732,7867,He dabs his tears with real cash from the Monopoly board. The four survivors,He dabs his tears with real cash from the Monopoly board.,The four survivors,gold,step closer to the mob from someone at front - in the center of a group of teams holding hands.,sit pensively by the hearth.,peer a small recreational window.,\"lift his seat, crushing the crest of the titanic's enormous body.\",1\n14564,lsmdc3091_ZOMBIELAND-44732,7866,The open wallet contains two cherished snapshots of the bright faced boy. Someone,The open wallet contains two cherished snapshots of the bright faced boy.,Someone,gold,fires a snowball at him.,'s blots show off the scars.,takes a close look.,reveals the name of someone's turntables.,2\n14565,lsmdc3091_ZOMBIELAND-44732,7873,\"Later, he reads a label by candlelight. Someone\",\"Later, he reads a label by candlelight.\",Someone,gold,ushers others through his bedroom.,opens the fridge door to reveal a bustling balding guy.,sits at photos of him.,swigs from the bottle.,3\n14566,lsmdc3091_ZOMBIELAND-44732,7868,\"As she reaches for a gun, he targets another objet d'art. Little someone\",\"As she reaches for a gun, he targets another objet d'art.\",Little someone,gold,\"lays in the cemetery, her dress wrapped around a wind witch body.\",takes aim with a pump action shotgun.,fires her gun into the sky.,drops the metal onto a blazing torch and brings it to someone 'head.,1\n14567,lsmdc3091_ZOMBIELAND-44732,7870,\"Someone returns a rugged nod. Now gripping a bottle of wine, someone\",Someone returns a rugged nod.,\"Now gripping a bottle of wine, someone\",gold,allows someone to put his palms down.,lies down and kisses his father.,watches someone on the sly.,carries his board over the water.,2\n14568,lsmdc3091_ZOMBIELAND-44732,7864,\"He serves a fresh pancake to a towheaded little boy in a high chair. As Buck takes a bath, someone\",He serves a fresh pancake to a towheaded little boy in a high chair.,\"As Buck takes a bath, someone\",gold,watches someone across from the mother in three - serve homework.,soaks the bottle salt.,playfully scoops mounds of suds onto the boy's head.,stares at the surf.,2\n14569,lsmdc3091_ZOMBIELAND-44732,7871,\"Now gripping a bottle of wine, someone watches someone on the sly. She\",\"Now gripping a bottle of wine, someone watches someone on the sly.\",She,gold,waits expectantly to shapely someone.,\"follows the old woman, helps him to his feet.\",taps the bottle on the door frame.,hands him a pager over his heart.,2\n14570,anetv_8Nv52hFr0tg,8259,The female gymnast finishes her routine and dismounts. People,The female gymnast finishes her routine and dismounts.,People,gold,is congratulated by her and her performance.,begin to move the gym ball across.,are shown applauding the gymnast.,pull the bar up onto the stage.,2\n14571,anetv_8Nv52hFr0tg,8258,The gymnast performs a routine on a beam. The female gymnast,The gymnast performs a routine on a beam.,The female gymnast,gold,lounge and back flips as the gymnast dismounts and lands on the mat.,performs flips on the beam with the two.,finishes her routine and dismounts.,runs up to the balance beam and end several flips and flips and flips before dismounting the dancer.,2\n14572,anetv_8Nv52hFr0tg,8257,A close up of a second woman saying something is shown. The gymnast,A close up of a second woman saying something is shown.,The gymnast,gold,picked up the file so easily.,breaks and was seen.,gets on the counter with the bat on a table.,performs a routine on a beam.,3\n14573,anetv_8Nv52hFr0tg,8260,People are shown applauding the gymnast. The gymnast,People are shown applauding the gymnast.,The gymnast,gold,does the splits as the judges landed on the gym.,begins slow dance as they dance.,walks away from the beam.,\"drops to the floor, and male gymnast jumps higher.\",2\n14574,anetv_UaiKJ_7mKIA,3652,A woman in snow jacket shovels snow from a sidewalk. A man,A woman in snow jacket shovels snow from a sidewalk.,A man,gold,pulls down a shovel and throws it off into a pile to the ground.,is with a poodle in a tube.,breaks up ice with a spade.,is seen next to his father who is seated with them on the sidewalk.,2\n14575,anetv_UaiKJ_7mKIA,3650,A man shovels snow from the sidewalk. A man in a wheelchair,A man shovels snow from the sidewalk.,A man in a wheelchair,gold,drives up a snow covered hill.,rides the bike watching a person who is filming them.,leans against a bush in a yard carrying a wooden mower.,goes down a sidewalk on a cold winter day.,3\n14576,anetv_UaiKJ_7mKIA,3651,A man in a wheelchair goes down a sidewalk on a cold winter day. A woman in snow jacket,A man in a wheelchair goes down a sidewalk on a cold winter day.,A woman in snow jacket,gold,shovels snow from a sidewalk.,is standing next to some cement talking to the camera.,put a waste ground in her yard.,is lying on a bunk and talking.,0\n14577,anetv_UaiKJ_7mKIA,3653,A man breaks up ice with a spade. A man,A man breaks up ice with a spade.,A man,gold,shovels snow from a sidewalk into a tree lined planter.,removes a covered feather from a hookah.,jumps in front of a large formation.,holds a cup full of drum sticks in front of him.,0\n14578,anetv__I8sqYLhRKM,18331,The older girl shows the younger one how to rake while another girl stands by and watches on a nearby slide. The camera,The older girl shows the younger one how to rake while another girl stands by and watches on a nearby slide.,The camera,gold,pans back down as a family of people are pulling to decorate the house.,zooms in around the boy's face and shows off his wrist.,\"pans as the boy continues to talk as she leaves, but she does n't speak to the camera.\",zooms in on the younger girl and watches her rake up the leaves.,3\n14579,anetv__I8sqYLhRKM,18330,Two girls are shown raking up leaves in a yard while continuously talking to the camera. The older girl,Two girls are shown raking up leaves in a yard while continuously talking to the camera.,The older girl,gold,pushes a miniature lip length through their hair and makes a bow.,shows the younger one how to rake while another girl stands by and watches on a nearby slide.,continues to drive the dog and continue blowing them.,continues steps in the car and leads into her standing with her daughter.,1\n14580,lsmdc3059_SALT-29053,7290,The military aide sets his briefcase on the table. Secret service agent James,The military aide sets his briefcase on the table.,Secret service agent James,gold,take a tearful couple heads down.,\", someone soberly checks his computers.\",joins a woman wearing a headset.,\"binds someone's arm, pats the slumped and guilty prisoner.\",2\n14581,anetv_oZnbAhzN3jg,12195,First the soap is applied then it is scraped away. The process,First the soap is applied then it is scraped away.,The process,gold,is above the sink.,is repeated and finished.,is mixed on a list.,is measured completely replaced.,1\n14582,anetv_oZnbAhzN3jg,12194,A person shows how to clean large windows. First the soap,A person shows how to clean large windows.,First the soap,gold,moves over the hardwood floors and bowls pour the surface.,is applied then it is scraped away.,is clean as the squeegee has instructed.,is removed and being cleaned from the shed.,1\n14583,anetv_8GJWokVCzUM,3827,\"This man is wearing a red tank top, black shorts, and shoes. He runs on the race track and the he\",\"This man is wearing a red tank top, black shorts, and shoes.\",He runs on the race track and the he,gold,does the triple jump in which he almost makes it to the end.,runs very fast into the man as he does incredible stunts and tricks.,grabs the shovel before zoom in the net over the rear.,is successfully getting to their feet and hurrying all through the avenue of trees as the trees come under the length of the sidewalk.,0\n14584,anetv_PMDpnLURLp8,12774,Everyone else begins to take their turns and start to run and jump also. They,Everyone else begins to take their turns and start to run and jump also.,They,gold,are stopped by a referee playing a game of green clapping.,turns to the boy and looks up in celebration as his mother pulled back towards the people.,clap as they step near to their knees at a little volley.,practice for a while and do it for a few more times.,3\n14585,anetv_PMDpnLURLp8,12773,Then he positions himself and does a jump and lands. Everyone else,Then he positions himself and does a jump and lands.,Everyone else,gold,is wearing a red t shirt.,begins to take their turns and start to run and jump also.,looks in the mirror.,starts moving the platform for a few minutes until he returns and resumes back in to finish the event.,1\n14586,anetv_PMDpnLURLp8,12772,He grabs the long pole and begins to walk with it to the other side of the field. Then he,He grabs the long pole and begins to walk with it to the other side of the field.,Then he,gold,takes the camera to turn the back to the rope.,tries again to keep the ball and ties.,positions himself and does a jump and lands.,stands away from the edge.,2\n14587,lsmdc0031_The_Lost_Weekend-65874,11253,A smile of relief comes on someone's face. Someone,A smile of relief comes on someone's face.,Someone,gold,puts his eleventh fingers down the side of someone's mouth.,\"walks a few steps ahead of him, then turns toward her mother.\",has sunk back on the couch again.,fixes a coffee cup in her hand.,2\n14588,lsmdc0031_The_Lost_Weekend-65874,11250,She looks into the living room and her face freezes. Someone,She looks into the living room and her face freezes.,Someone,gold,looks in at someone.,has risen from the couch and has picked up the glass of whiskey.,rubs his face.,steps up and surveys the scene.,1\n14589,lsmdc0031_The_Lost_Weekend-65874,11251,\"Someone has risen from the couch and has picked up the glass of whiskey. There's a second of hesitation, then he\",Someone has risen from the couch and has picked up the glass of whiskey.,\"There's a second of hesitation, then he\",gold,hurries between them up to someone.,\"uses it for an ashtray, dropping the cigarette into it.\",\"stops for a little turn, hand feeling the carrying water all around someone while his conversation continuing.\",nods back and forth.,1\n14590,lsmdc0031_The_Lost_Weekend-65874,11249,\"She puts a cigarette in his mouth, lights it. She\",\"She puts a cigarette in his mouth, lights it.\",She,gold,\"clenches her fist and sits, landing on her hands.\",starts into the kitchen.,stops in front of someone.,takes it and shuts it.,1\n14591,lsmdc0031_The_Lost_Weekend-65874,11252,\"There's a second of hesitation, then he uses it for an ashtray, dropping the cigarette into it. A smile of relief\",\"There's a second of hesitation, then he uses it for an ashtray, dropping the cigarette into it.\",A smile of relief,gold,plays down someone's lips as she twitches brief memory of the baby's deep space.,leads back to their hands as he stares at it.,comes on someone's face.,closes on him as he crosses the steps of the building.,2\n14592,anetv_jmerKGN0VPs,3268,A man in red sprays his car with water. He,A man in red sprays his car with water.,He,gold,puts the fabric of the tire on.,rinses off the soap.,jumps off a vehicle and gets out of the car.,puts several turns back to the water.,1\n14593,anetv_jmerKGN0VPs,3269,He rinses off the soap. He,He rinses off the soap.,He,gold,laughs as he does it.,sweeps away the dirt.,washes his face and wipes blue ads with his hands.,puts one foot on the rug.,0\n14594,anetv_jmerKGN0VPs,778,A man in a red shirt is spraying a car with a hose. He,A man in a red shirt is spraying a car with a hose.,He,gold,shovels the snow from a partially scraped garden.,touches equipment onto the window.,walks behind the car and continues spraying it.,is spraying the sticks with a hose.,2\n14595,anetv_jmerKGN0VPs,777,A black car is parked in a parking lot. A man in a red shirt,A black car is parked in a parking lot.,A man in a red shirt,gold,is standing on a ledge.,is spraying a car with a hose.,stands on an exercise machine.,is driving a small car.,1\n14596,anetv_jmerKGN0VPs,3270,He laughs as he does it. He,He laughs as he does it.,He,gold,is listening to the pensive of the dictaphone.,use their hands to sound different different comforts.,sprays the back of the car.,closes it's eyes and begins to peel away.,2\n14597,lsmdc0053_Rendezvous_mit_Joe_Black-71355,10474,\"She kisses someone in some light, humorous way they have ob - viously done before, their heads bobbing like plastic water toys and their lips meeting mid - air. At the kiss's conclusion someone\",\"She kisses someone in some light, humorous way they have ob - viously done before, their heads bobbing like plastic water toys and their lips meeting mid - air.\",At the kiss's conclusion someone,gold,remembers someone wearing a miserable preparing panty cake.,turns away from the window.,suddenly notices someone is present and has been watching.,\"pulls her fiery curtain down from his coat, barely holding it there.\",2\n14598,anetv_MYi6p113py8,12055,A woman stands in front of a crowd of people on a public sidewalk and dances with a male dance partner in ballroom style dance. A man,A woman stands in front of a crowd of people on a public sidewalk and dances with a male dance partner in ballroom style dance.,A man,gold,stands in front of someone holding a piece of glass in one hand while they drink with sticks.,is seen on stage with various clips regarding his tutorial fighting with.,is talking to the woman as he talks.,adjusts a radio while a woman stands in a ballroom dance pose preparing for a dance.,3\n14599,anetv_MYi6p113py8,14716,The man and woman begin dancing with one another in front of the large crowd. The two,The man and woman begin dancing with one another in front of the large crowd.,The two,gold,continue off performing splits ups while another dancers continue to pull them away.,continue playing with one another while people watch on the sides.,continue to dance in swing with one another.,continue dancing with one another while others watch and end by bowing and taking tips.,3\n14600,anetv_MYi6p113py8,14715,A woman is seen standing in the middle of a large crowd with a man bending down in front. The man and woman,A woman is seen standing in the middle of a large crowd with a man bending down in front.,The man and woman,gold,are then seen holding a tennis racket and hitting a girl all over together.,get up and begin dancing on the ground beside one another.,begin dancing with one another in front of the large crowd.,starts dancing across the field.,2\n14601,lsmdc0026_The_Big_Fish-62095,14564,\"Only someone, smoking on the corner, is n't sad to see someone go. Many of the townfolk\",\"Only someone, smoking on the corner, is n't sad to see someone go.\",Many of the townfolk,gold,are in the lush room over the swing.,are on their turntables to someone and who are writing on papers in the bar.,\"have announcers, whom touch a trail at the top of the cinema.\",come onto the street to hug someone or shake his hand.,3\n14602,lsmdc0026_The_Big_Fish-62095,14571,Each wears a backpack with all his earthly possessions. People,Each wears a backpack with all his earthly possessions.,People,gold,looks at his son partly in back.,sit down beside a chocolate table piled with foil on one arm.,\"come to a bend, where the paved road veers left and an overgrown dirt road runs straight.\",\"add some more stuff to a shelf where he spots photos of the wealthy, and comes blurry.\",2\n14603,lsmdc0026_The_Big_Fish-62095,14568,\"She motions for someone to lean down, so she can whisper something to him. Although we are very close, we\",\"She motions for someone to lean down, so she can whisper something to him.\",\"Although we are very close, we\",gold,can't hear her voice.,can just see his arm standing within the room from his place.,have now just able to look at people as he sidles over to a door.,hear the sound of the priest behind.,0\n14604,lsmdc0026_The_Big_Fish-62095,14567,\"The ruckus slows and quiets, as if a strange spell has been cast. She\",\"The ruckus slows and quiets, as if a strange spell has been cast.\",She,gold,drops the starboard under his straw.,tries again but does not.,\"motions for someone to lean down, so she can whisper something to him.\",stops in beside someone.,2\n14605,lsmdc0026_The_Big_Fish-62095,14569,\"Although we are very close, we can't hear her voice. The advice only\",\"Although we are very close, we can't hear her voice.\",The advice only,gold,looks like a fashionable brass gym.,has broken out of the angular bench.,seems to have a false sense as she does.,succeeds in confusing someone.,3\n14606,lsmdc0026_The_Big_Fish-62095,14572,The old road is blocked with signs and warnings of danger. Someone,The old road is blocked with signs and warnings of danger.,Someone,gold,\"looks at the dirt road, wary.\",is in green backwards.,quietly turns her side to leave.,\"starts with his stilts, spectators, and his hawaiian shirts.\",0\n14607,lsmdc0026_The_Big_Fish-62095,14566,\"As the crowd parts, he finds himself face to face with. The ruckus\",\"As the crowd parts, he finds himself face to face with.\",The ruckus,gold,makes an attempt for admiration for someone shot by holding his own spear.,stares up at him for a moment then enters from outro.,shines to a windowed office door in the end zone.,\"slows and quiets, as if a strange spell has been cast.\",3\n14608,lsmdc0026_The_Big_Fish-62095,14570,The advice only succeeds in confusing someone. We,The advice only succeeds in confusing someone.,We,gold,didn't blow some sort.,didn't blow some sort.,tilt up from the road to reveal people walking out of someone.,people from the mall.,2\n14609,lsmdc0026_The_Big_Fish-62095,14565,\"Many of the townfolk come onto the street to hug someone or shake his hand. As the crowd parts, he\",Many of the townfolk come onto the street to hug someone or shake his hand.,\"As the crowd parts, he\",gold,stops and throws a ticket back.,reaches a corner and efforts podium lonely wearing a hat.,\"rocks his hips and snaps in, releasing his hands.\",finds himself face to face with.,3\n14610,lsmdc3070_THE_CALL-32890,839,Three squad cars arrive at the target home. Someone and his fellow officer,Three squad cars arrive at the target home.,Someone and his fellow officer,gold,is in a bumper car parked by the back of the shop.,shoot agents in every corner of the camp.,\"hop out with their side arms drawn, rushing past toys in the front lawn.\",sit on his ridge.,2\n14611,lsmdc3070_THE_CALL-32890,840,\"Someone and his fellow officer hop out with their side arms drawn, rushing past toys in the front lawn. Someone\",\"Someone and his fellow officer hop out with their side arms drawn, rushing past toys in the front lawn.\",Someone,gold,hurries out of the car.,runs on the bike and sprints forward.,goes in the front door.,spots them and runs into them.,2\n14612,lsmdc3070_THE_CALL-32890,837,\"Her database searches briefly, then loads a smiling photo of the kidnapper. Someone\",\"Her database searches briefly, then loads a smiling photo of the kidnapper.\",Someone,gold,gives the woman a collect nod.,\"looks up as someone strolls toward the high, broken building.\",hands her a torn slip next to it.,glares at the image.,3\n14613,lsmdc3070_THE_CALL-32890,833,Flames instantly consume the attendant. The kidnapper,Flames instantly consume the attendant.,The kidnapper,gold,\"glances back at it, makes hand gestures to his mother.\",punches his head as someone scrambles away.,reaches into his jacket pocket and replaces a padlock on stereo.,watches as the burning man flails about.,3\n14614,lsmdc3070_THE_CALL-32890,834,\"The kidnapper watches as the burning man flails about. Breaking his stare, the killer\",The kidnapper watches as the burning man flails about.,\"Breaking his stare, the killer\",gold,flies from his grasp.,reaches someone toward the destroyer.,picks up someone's hat and crawls out of the tunnel.,rushes to the trunk.,3\n14615,lsmdc3070_THE_CALL-32890,835,\"Breaking his stare, the killer rushes to the trunk. With her jaw trembling, someone\",\"Breaking his stare, the killer rushes to the trunk.\",\"With her jaw trembling, someone\",gold,\"scrambles to his feet and peers around the building, then unlocks the doors.\",delivers a handful of oatmeal.,walks back to someone's office.,shifts her desperate eyes.,3\n14616,lsmdc3070_THE_CALL-32890,836,\"With her jaw trembling, someone shifts her desperate eyes. Elsewhere, the police database\",\"With her jaw trembling, someone shifts her desperate eyes.\",\"Elsewhere, the police database\",gold,finds a match for the kidnapper's print.,blows through a balcony while a person halts their movements.,keeps pulling on clothing.,rush the parking lot.,0\n14617,lsmdc3070_THE_CALL-32890,841,Someone goes in the front door. Someone,Someone goes in the front door.,Someone,gold,finds someone's wife and kids in the kitchen.,\"hands on a dry to a tall metal courtyard, while someone waiting for a gangplank.\",releases the key and shoots a dash to his window.,is frantically hearing about anything.,0\n14618,lsmdc3070_THE_CALL-32890,838,Someone glares at the image. Three squad cars,Someone glares at the image.,Three squad cars,gold,swerve around him as he rides up onto the side of the bus.,tumble out of the stairwell at someone's door.,appear in front of them.,arrive at the target home.,3\n14619,lsmdc0011_Gandhi-52237,10441,They have reached the trough. He,They have reached the trough.,He,gold,see a group of males with the bludger between them.,tracking in the woman's back from the school as someone scrambles to situated just skipping.,\"meets someone's gaze, and for a moment something deeper than argument passes between them.\",shows her some packets.,2\n14620,lsmdc0011_Gandhi-52237,10446,They watch someone as he carries his bowl of potatoes to someone. Someone,They watch someone as he carries his bowl of potatoes to someone.,Someone,gold,leans out of frame to face the framed tray of contents.,sits on the opposite side of the chair.,\"takes a bowl from the closet table, and notices them.\",\"plods on toward the kitchen, carrying the bowl of potatoes.\",3\n14621,lsmdc0011_Gandhi-52237,10442,\"He meets someone's gaze, and for a moment something deeper than argument passes between them. Then something\",\"He meets someone's gaze, and for a moment something deeper than argument passes between them.\",Then something,gold,catches someone's eye again.,catches someone's eye.,\"breaks more, and the murmurs is filled with sadness.\",\"comes out and raises his hand, offering the gesture.\",1\n14622,lsmdc0011_Gandhi-52237,10447,Clothes are dipped in the brownish water. It is long past the monsoons and they,Clothes are dipped in the brownish water.,It is long past the monsoons and they,gold,are then added to the water.,have had to come far out in the riverbed to the water.,are going down a slide and with a person in their sleep.,crawl towards the house from the pool.,1\n14623,lsmdc0011_Gandhi-52237,10445,\"He has n't moved, and neither have his friends. They\",\"He has n't moved, and neither have his friends.\",They,gold,scoot back to the other side of the room.,watch someone as he carries his bowl of potatoes to someone.,boom down to the ledge.,pretend to blow someone's hair as they run.,1\n14624,lsmdc0011_Gandhi-52237,10437,He glances at someone then drops the potato in the bowl. He,He glances at someone then drops the potato in the bowl.,He,gold,lifts the pail of peelings to someone.,moves back to policemen and drops it into the cauldron.,skulks off to the second.,smacks a knife with it!,0\n14625,lsmdc0011_Gandhi-52237,10448,It is long past the monsoons and they have had to come far out in the riverbed to the water. But they,It is long past the monsoons and they have had to come far out in the riverbed to the water.,But they,gold,keep arranging trying to get in.,are n't really angry.,bring us elderly ladies on their way.,are laughing at their task.,3\n14626,lsmdc0011_Gandhi-52237,10439,\"Someone in his fine linen suit takes the pail awkwardly. His friends watch with amusement, but they too\",Someone in his fine linen suit takes the pail awkwardly.,\"His friends watch with amusement, but they too\",gold,quickly open the wine.,look and gape at the offscreen wagon.,rise to follow as they head for the kitchen.,barely notice the stake in it.,2\n14627,lsmdc0011_Gandhi-52237,10438,He lifts the pail of peelings to someone. Someone in his fine linen suit,He lifts the pail of peelings to someone.,Someone in his fine linen suit,gold,takes the pail awkwardly.,is carried onto a stretcher.,sinks and follows him.,approaches with a dagger.,0\n14628,lsmdc0011_Gandhi-52237,10443,The goat is reaching for his bowl of potatoes. He,The goat is reaching for his bowl of potatoes.,He,gold,removes the lid and takes a big bite.,pushes it away and starts for the kitchen.,\"pushes a stroller, towards a stove.\",looks up to someone with a resigned smile.,1\n14629,lsmdc0011_Gandhi-52237,10436,Someone has finished the last potato. He,Someone has finished the last potato.,He,gold,dashes through the trees and sees someone striding out of the village.,glances at someone then drops the potato in the bowl.,\"pulls it open, then tosses his trash bag over.\",\"checks the towel, and edges to the door.\",1\n14630,lsmdc0011_Gandhi-51750,18929,\"We see the throng, following the weapon - carrier bier of someone as it slowly inches its way along the Kings way. Someone, tall, handsome, bemedalled,\",\"We see the throng, following the weapon - carrier bier of someone as it slowly inches its way along the Kings way.\",\"Someone, tall, handsome, bemedalled,\",gold,laughs at the spotlight.,has a walkie and a tray and four coats.,is drinking his good hand.,walks at the head of dignitaries from many lands.,3\n14631,lsmdc0011_Gandhi-51750,18928,Commentators from all over the world are covering the ceremony. We,Commentators from all over the world are covering the ceremony.,We,gold,puts the plastic bag onto the board.,approaches the russian captain at the reception.,\"concentrate on one, let us say the most distinguished american broadcaster of the time, someone.\",turn just the way of the track.,2\n14632,anetv_dzsSiqXxfpw,18841,\"After talking to the crowd he calls out and a dog runs out on the stage to him. Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man\",After talking to the crowd he calls out and a dog runs out on the stage to him.,\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man\",gold,push the dog.,throws the frisbees on the ground and starts to play fetch with the dog.,get the triple frisbee at the starting line.,is playing with his dog and all of his tricks while the dog gives in more baton performing the tricks.,1\n14633,anetv_dzsSiqXxfpw,18842,\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man throws the Frisbees on the ground and starts to play fetch with the dog. At one point the dog\",\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man throws the Frisbees on the ground and starts to play fetch with the dog.\",At one point the dog,gold,grabs his wooden hand as it goes out.,\"eats a frisbee, then a dog jumps and walks back and forth, leaving wildly for the dog and bark.\",starts to jump off the mans back as he chases after frisbees.,eats with a heavy brush.,2\n14634,anetv_dzsSiqXxfpw,18843,At one point the dog starts to jump off the mans back as he chases after Frisbees. Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he,At one point the dog starts to jump off the mans back as he chases after Frisbees.,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he,gold,grabs the tire off.,starts to spin the dog around.,speaks about it again.,turns and walks across the street.,1\n14635,anetv_dzsSiqXxfpw,18844,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he starts to spin the dog around. In the end the man,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he starts to spin the dog around.,In the end the man,gold,performs a trick with the dog and makes him do a back flip and grabs him and takes him off the stage.,plays and shows the dogs while other dogs drag them off.,is upset and picks up the pile of hair for the dog and gives it to him.,holds a disc in the air and the man jump with the string and hit the bull again.,0\n14636,anetv_dzsSiqXxfpw,18840,A man is seen lecturing a crowd while holding several green Frisbees in his hand. After talking to the crowd he calls out and a dog,A man is seen lecturing a crowd while holding several green Frisbees in his hand.,After talking to the crowd he calls out and a dog,gold,jumps onto the man to dog.,runs out on the stage to him.,runs and leads out to a boy with another person towards the horse.,runs on underneath the camel.,1\n14637,lsmdc1011_The_Help-78318,20063,\"Someone lays out some cards. In the bathroom, as someone softly raises the toilet lid, someone\",Someone lays out some cards.,\"In the bathroom, as someone softly raises the toilet lid, someone\",gold,drapes it over his head.,sinks into his leg and flops himself on the bed.,puts her ear to the bathroom door.,blows the chess one over.,2\n14638,lsmdc1011_The_Help-78318,20067,A child's bedroom turned upside down. Someone,A child's bedroom turned upside down.,Someone,gold,pops the trunk first.,picks up the case carrying someone and starts toward the dining room.,\"sits with someone on her lap, sheltering under an upturned mattress.\",\"points at the tv; minibus steps out, crosses their apartment, and opens the door behind them.\",2\n14639,lsmdc1011_The_Help-78318,20064,\"Defiantly, someone flushes the toilet. Someone\",\"Defiantly, someone flushes the toilet.\",Someone,gold,\"stands with her arms folded, then slams down the lid.\",\"smiles softly, her nose quivers in the water.\",peers out of a giant iron.,slaps herself on the phonograph.,0\n14640,lsmdc1011_The_Help-78318,20075,\"At a bus stop, several maids from the locality are climbing aboard. Someone, in a green straw hat and spotty dress and carrying a pie and a fan,\",\"At a bus stop, several maids from the locality are climbing aboard.\",\"Someone, in a green straw hat and spotty dress and carrying a pie and a fan,\",gold,peers out from the door of an empty bus.,comes to the secretary's door.,walks down the aisle holding the tray of sticks on her straw.,comes downstairs with a hopping torch.,0\n14641,lsmdc1011_The_Help-78318,20071,Someone picks the child up. Someone,Someone picks the child up.,Someone,gold,\"makes a beat, but his eyes react as if he is waiting for his answer.\",the boy knocks the wave back and hurtles off the table.,stares astonished at someone as he's heard her with the little boy and teens both.,shuts the toilet door with her free hand.,3\n14642,lsmdc1011_The_Help-78318,20066,\"Someone looks up from her cards without expression. Someone, carrying her handbag,\",Someone looks up from her cards without expression.,\"Someone, carrying her handbag,\",gold,walks past someone and follows someone.,\"looks after him, and takes the shirt from him.\",is shoved to the back of her head and starts to go.,\"strides out of the front door, into the pouring rain.\",3\n14643,lsmdc1011_The_Help-78318,20060,She sees a sun chair being buffeted in the wind. The pool umbrella,She sees a sun chair being buffeted in the wind.,The pool umbrella,gold,causes the boat as it goes into the ocean.,catches the body in it as it starts darting around the tree.,is held in place beside the bus.,has gone the way of the chair.,3\n14644,lsmdc1011_The_Help-78318,20074,\"Smiling softly, someone kisses her on the cheek. They\",\"Smiling softly, someone kisses her on the cheek.\",They,gold,\"glance at his wife, then backs away.\",\", a handsome young man at her coat, looking at the newspaper in his hand, sits alone at the dining bed.\",hug each other fondly.,\", one of the woman turns her from side to side.\",2\n14645,lsmdc1011_The_Help-78318,20062,Someone beats a hasty retreat. Someone,Someone beats a hasty retreat.,Someone,gold,\"crawls quickly through him, righting sparks, striking his stomach.\",climbs into a handle's den!,frowns anxiously as she examines the portrait of someone's bald piano.,lays out some cards.,3\n14646,lsmdc1011_The_Help-78318,20065,\"Someone stands with her arms folded, then slams down the lid. Someone\",\"Someone stands with her arms folded, then slams down the lid.\",Someone,gold,notices someone writing and scratches his eyebrow.,looks up from her cards without expression.,draws at his fingers and shakes her head.,stares at richard parker.,1\n14647,lsmdc1011_The_Help-78318,20059,\"Someone puts down the paper and sidles to the window, looking out over the terrace and the outdoor toilet beyond it. She\",\"Someone puts down the paper and sidles to the window, looking out over the terrace and the outdoor toilet beyond it.\",She,gold,sees a sun chair being buffeted in the wind.,\"turns and runs down the deep, mud - strewn sidewalk.\",put his eyes on it.,takes it and looks over to someone who sits in the back seat with someone.,0\n14648,lsmdc1011_The_Help-78318,20070,\"Someone, holding someone's hand, stands outside the wooden toilet, on the back porch. Someone\",\"Someone, holding someone's hand, stands outside the wooden toilet, on the back porch.\",Someone,gold,peeks into the living room.,disappears in the open door.,looks and looks horrified.,picks the child up.,3\n14649,lsmdc1011_The_Help-78318,20068,\"Someone sits with someone on her lap, sheltering under an upturned mattress. In someone's sprawling bungalow the next day, someone, in her maid's uniform,\",\"Someone sits with someone on her lap, sheltering under an upturned mattress.\",\"In someone's sprawling bungalow the next day, someone, in her maid's uniform,\",gold,takes off her toes and leaves the apartment.,looks up at the brightly.,is sitting on the toilet.,smiles like a nearby propeller.,2\n14650,lsmdc1011_The_Help-78318,20073,\"Someone waves to someone and drives off. Smiling softly, someone\",Someone waves to someone and drives off.,\"Smiling softly, someone\",gold,rests his head in his hands.,kisses her on the cheek.,turns her hand away.,\"leads his team to a reception room, where the young punk of the gang catch and look.\",1\n14651,lsmdc1011_The_Help-78318,20057,\"At someone's house, someone is fanning someone with a newspaper. Someone\",\"At someone's house, someone is fanning someone with a newspaper.\",Someone,gold,\"wrestles the ball up, applauding the hag.\",take a cigarette out of the purse and dances.,\"sits up her in chair, in awe.\",takes a paper basket and dabs it with a white cloth.,2\n14652,lsmdc1011_The_Help-78318,20061,The pool umbrella has gone the way of the chair. Someone,The pool umbrella has gone the way of the chair.,Someone,gold,beats a hasty retreat.,takes out a broken hand.,skips barefoot - - then rushes down in different kitchen.,whacks out the window.,0\n14653,anetv_furUOKw0Qzs,12634,\"Then there is a man who kneels down next to a red car, and explains what you will need to change a tire. He\",\"Then there is a man who kneels down next to a red car, and explains what you will need to change a tire.\",He,gold,then begins to adjust the skis.,\"loosens the bolts and positions the jack, removes the tire and replaces it with a new one.\",end dressed and shows how to properly throw his jacket around in the shoes.,\"deflated a shirt on his wheels, trying to work out.\",1\n14654,anetv_furUOKw0Qzs,19084,He then puts a block down next to the tire as well as taking off the hubcap. The man,He then puts a block down next to the tire as well as taking off the hubcap.,The man,gold,puts a jack down and unscrews the tire taking it off.,takes the sin off of the tire and places it against the tire of the car.,measures the tools part and mixes the parts.,continues to work all around the tires while also using a skateboard.,0\n14655,anetv_furUOKw0Qzs,19083,A man is seen kneeling down before a car tires and pointing to objects. He then,A man is seen kneeling down before a car tires and pointing to objects.,He then,gold,puts a block down next to the tire as well as taking off the hubcap.,clips down the tools and grabs a tire.,pulls the liquid onto the tire while looking up to the camera.,uses a tool to scrape away the sides of the car before returning to the water.,0\n14656,anetv_furUOKw0Qzs,12635,\"He loosens the bolts and positions the jack, removes the tire and replaces it with a new one. Then he\",\"He loosens the bolts and positions the jack, removes the tire and replaces it with a new one.\",Then he,gold,\"lowers the car and tightens the new bolts, then removes the jack and talks for a bit more.\",puts the tire very tightly on the bike and uses the rubber wrench to tighten the bolts.,puts the tire back on the machine to get back into the harness.,reaches the driver's side then picks it up and walks to the keys.,0\n14657,anetv_furUOKw0Qzs,19085,The man puts a jack down and unscrews the tire taking it off. He,The man puts a jack down and unscrews the tire taking it off.,He,gold,removes the cap and places the tires on the box.,sees the man spread the small cup of jotunheim.,screws in the new one and puts the hubcap back on.,mops the equipment with movements as he talks to the camera.,2\n14658,anetv_furUOKw0Qzs,12633,There is an intro with a little red animated car that drives by over the top of the logo for Kwik Fit Top Tip. Then there,There is an intro with a little red animated car that drives by over the top of the logo for Kwik Fit Top Tip.,Then there,gold,is a little peace in the pitch.,\"is a man who kneels down next to a red car, and explains what you will need to change a tire.\",is a lot of watching.,'s a red hoodie filming the background as the video ends with the credits of the clip.,1\n14659,anetv_0yGGccaHMnI,18922,\"A person is seen down a path, wearing a pair of stilts. They\",\"A person is seen down a path, wearing a pair of stilts.\",They,gold,are running and washing them in a small white towel.,are laying down onto a horse.,\"walk very slowly up the gravel path on the stilts, trying to keep their balance.\",sit on a bridge at the underpass.,2\n14660,anetv_0yGGccaHMnI,1389,They walk back and forth on a dirt trail. They,They walk back and forth on a dirt trail.,They,gold,jump off the stilts and hold them in their hands.,get a ladder tightly and climb out before walking away down the steep path.,swirl above the crest.,ride off through a snow bank and pit.,0\n14661,anetv_0yGGccaHMnI,1388,A person is standing on stilts. They,A person is standing on stilts.,They,gold,walk back and forth on a dirt trail.,see a person kick it's legs a fourth.,are scrubbing car blades.,are holding a box of black ribbon.,0\n14662,anetv_0yGGccaHMnI,18923,\"They walk very slowly up the gravel path on the stilts, trying to keep their balance. They\",\"They walk very slowly up the gravel path on the stilts, trying to keep their balance.\",They,gold,take their turn as they take a shake back back on.,are involved in a game of tug of war.,run down the track after people running to join the jump and jump.,turn and walk the other direction.,3\n14663,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61744,12642,Someone passes people who bow before him. Someone,Someone passes people who bow before him.,Someone,gold,gently picks up the coin.,shakes her head as he runs.,steps forward to bow in respect.,turns off the elevator.,2\n14664,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61744,12641,Then walks in slow procession down the white paved path as the crowd bow their heads in respect to their new someone. Someone,Then walks in slow procession down the white paved path as the crowd bow their heads in respect to their new someone.,Someone,gold,passes people who bow before him.,looks back at her apparently not noticing.,opens his eyes and then shakes his head solemnly.,\"runs at someone, who steps ahead with a wave above his head, not looking up.\",0\n14665,anetv_EOvotFy4YX0,16986,A man is seen riding a camel that has a cart attached to the back with two passengers. The people in the back,A man is seen riding a camel that has a cart attached to the back with two passengers.,The people in the back,gold,are watching him as the camel walks up.,have a conversation while riding through several people watching on the sidelines.,waxed their hips while the camera captures their movements.,appear as the camels ride the camels beside each other.,1\n14666,anetv_EOvotFy4YX0,16987,The people in the back have a conversation while riding through several people watching on the sidelines. The man riding the camel,The people in the back have a conversation while riding through several people watching on the sidelines.,The man riding the camel,gold,smiles and waves to the camera.,is followed followed by another person walking on skateboards to a bus.,plays while the other man has several coats.,in the grass while more people are shown riding their bikes.,0\n14667,anetv_rDADR0Lg4U8,11381,A group of female players walk onto a court behind their coach. They,A group of female players walk onto a court behind their coach.,They,gold,teams teammates for an audience.,pass in the middle as they trophy each other.,are engaged in a game of cricket.,\"engage in a lacrosse game, fighting over the ball with their bats.\",3\n14668,anetv_rDADR0Lg4U8,11382,\"They engage in a lacrosse game, fighting over the ball with their bats. The girls\",\"They engage in a lacrosse game, fighting over the ball with their bats.\",The girls,gold,sew and cheer as they move toward each other.,are still holding their trophy.,follow the slytherin balls to the ground and point them out.,celebrate their win with flowers and hugs.,3\n14669,anetv_ShKrNPaSdhY,19876,A man is in the snow with no shirt on. A man,A man is in the snow with no shirt on.,A man,gold,has a bandanna on his face and no shirt on snowboarding down a hill.,is sitting in a sled talking to the camera.,comes and helps people.,is standing behind him.,0\n14670,anetv_ShKrNPaSdhY,15754,\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person grabs something for a large wooden shelf. Various clips play of a person snowboarding, sometimes the person is wearing a jacket, sometimes the person is shirtless, sometimes the person is holding the selfie stick, and sometimes someone\",\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person grabs something for a large wooden shelf.\",\"Various clips play of a person snowboarding, sometimes the person is wearing a jacket, sometimes the person is shirtless, sometimes the person is holding the selfie stick, and sometimes someone\",gold,is filming the person.,came up and knocks his young boy out of a water building.,\"falls to the ground, says some more, he moves all around him.\",\"helps them up, balancing it to his shoulder until he walks back on and does a tight moves on her sigh.\",0\n14671,anetv_ShKrNPaSdhY,15753,\"A man is looking out of an opened window of a very fast moving train surrounded by snow and a lot of trees. A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person\",A man is looking out of an opened window of a very fast moving train surrounded by snow and a lot of trees.,\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person\",gold,is taking down two more on the kites that are visible.,grabs something for a large wooden shelf.,is an advertisement for them and the camera pans to show the people that he all talking about how to dance.,is reaching for the finish logo on the street.,1\n14672,anetv_ShKrNPaSdhY,19875,A person is snowboarding down a hill of snow. A man,A person is snowboarding down a hill of snow.,A man,gold,is in the snow with no shirt on.,goes walking down a hill of snow.,stands next to a snow ski.,is snowboarding down a mountain of muddy snow.,0\n14673,lsmdc3079_THINK_LIKE_A_MAN-36976,5256,\"Stepping out of one, someone brings a tray to his friends and their significant others. He\",\"Stepping out of one, someone brings a tray to his friends and their significant others.\",He,gold,\"cups a hand in his neck, return with his mother.\",\"beams at the applauding group, then hands out food.\",\"bounces with his feet, as someone's son approaches him.\",shoves his fumbles into his pocket.,1\n14674,lsmdc3079_THINK_LIKE_A_MAN-36976,5261,Entering the truck someone gives a determined look. He,Entering the truck someone gives a determined look.,He,gold,\"stand at the bar, sipping tea and looking about a row of beads.\",pulls off his pants and ditches his pants.,enters second room followed by a small crystal chandelier sets hanging from a wall.,stares slack - jawed.,3\n14675,lsmdc3079_THINK_LIKE_A_MAN-36976,5259,She nudges the customer aside. He,She nudges the customer aside.,He,gold,shakes his head at her.,strides off after her.,pulls down a sleeve of his raincoat and retrieves it.,hands it to her.,0\n14676,lsmdc3079_THINK_LIKE_A_MAN-36976,5260,She trudges away and the customer steps up. Entering the truck someone,She trudges away and the customer steps up.,Entering the truck someone,gold,\"waves to someone, signaling for his son to raise his head in oven head.\",\"hurries to her car, clipping his brow.\",steps into kitchen area.,gives a determined look.,3\n14677,lsmdc3079_THINK_LIKE_A_MAN-36976,5258,Duke sits with someone and someone. She,Duke sits with someone and someone.,She,gold,takes her glasses to exchange a look.,nudges the customer aside.,steps up to his daughter then kisses him on the cheek.,\"helps a child carry a candle, a man boils his childhood brewing.\",1\n14678,lsmdc3079_THINK_LIKE_A_MAN-36976,5257,\"He beams at the applauding group, then hands out food. Duke\",\"He beams at the applauding group, then hands out food.\",Duke,gold,takes his ball and morsel the pot instead.,\"picks him up and carries it around, then faces away in the last of the kitchen.\",sits with someone and someone.,mixes wine and practice behind his boat.,2\n14679,anetv_mEjU4uJZccw,14034,The woman to one side is playing maracas. The man on the other side,The woman to one side is playing maracas.,The man on the other side,gold,picks up the discuss.,is playing an electric guitar.,is taking off her sneakers.,is leaning in frame to forcefully painting.,1\n14680,lsmdc1062_Day_the_Earth_stood_still-100611,645,It's on a collision course with the Earth. Graphics,It's on a collision course with the Earth.,Graphics,gold,\"are someone in the process, in spectre.\",show impact location manhattan.,shows a start selected a wall of old snow.,is rolling on a green field.,1\n14681,lsmdc3026_FRIENDS_WITH_BENEFITS-1386,592,He waves cordially at her friend. Someone,He waves cordially at her friend.,Someone,gold,gently carries her limp body on the edge of the stove.,looks numbly by the wagon who hold the ball to his chest.,looks around then waves back.,\"stares at her mother, and gives a brief nod.\",2\n14682,lsmdc0053_Rendezvous_mit_Joe_Black-71385,772,\"Someone hesitates, nods, conceding the point, reaches for the doorknob. Someone\",\"Someone hesitates, nods, conceding the point, reaches for the doorknob.\",Someone,gold,\"enters, someone following right behind him.\",\"pauses, gazes off.\",\"shuts the door, letting him in.\",bursts through the open door of someone's office and goes toward the door.,0\n14683,anetv_ESecNZbZgug,16424,A woman walks up to an elliptical. She,A woman walks up to an elliptical.,She,gold,is up on a bar talking while kneeling on a floor.,starts working on an equipment on the bike.,\"climbs onto it, using it to exercise.\",\"does a girlish routine, then mounts a beam.\",2\n14684,anetv_ESecNZbZgug,16425,\"She climbs onto it, using it to exercise. She\",\"She climbs onto it, using it to exercise.\",She,gold,shows the mechanics for how it works as she pedals along.,sags in the machine.,\"readies her cane, then sticks the earpiece out and finds someone's luggage in her hospital bathroom.\",\"throws the last object on the log, then falls on it.\",0\n14685,anetv_ESecNZbZgug,3648,\"The front of the machine is shown and the woman presses a button to speed up the machine and moves faster. Next, she\",The front of the machine is shown and the woman presses a button to speed up the machine and moves faster.,\"Next, she\",gold,cleans the handlebars with the machine but again it bears a weak dart in it.,\"removes the shoe jack, continues on.\",gets off the bike and twists a knob to raise the incline of the machine and continues her workout.,starts to tend and backs off in circles for the first lifting machine.,2\n14686,anetv_ESecNZbZgug,3647,A black elliptical is shown and a woman dressed in red workout clothes gets on it and starts to exercise. The front of the machine is shown and the woman,A black elliptical is shown and a woman dressed in red workout clothes gets on it and starts to exercise.,The front of the machine is shown and the woman,gold,is now sitting in the back talking and doing proper.,presses a button to speed up the machine and moves faster.,moves about the proper methods as it is laying with a paint start drawing.,uses the sprayer on the stepper's handle.,1\n14687,anetv_fhtNAMK0Vqk,5942,He is using a blow dryer to dry the horse's wet body. He,He is using a blow dryer to dry the horse's wet body.,He,gold,sharpens it to make sure it was n't right.,moves the blow dryer back and forth all over the horse's back to dry it.,ensuring that the new guy does n't have any trouble to his lawn.,is playing the canvas with water and.,1\n14688,anetv_fhtNAMK0Vqk,5943,He moves the blow dryer back and forth all over the horse's back to dry it. He,He moves the blow dryer back and forth all over the horse's back to dry it.,He,gold,continues cutting the person's hair while the camera captures his movements.,continues to paint her shoe with the rest of his ears.,is also uses a scrubbing brush on the horse's back to clean the horse.,grabs a wrench from his belt and puts his arm around someone.,2\n14689,anetv_fhtNAMK0Vqk,5941,\"A man wearing a cowboy hat, sunglasses and yellow latex gloves is standing next to a horse in a stable. He\",\"A man wearing a cowboy hat, sunglasses and yellow latex gloves is standing next to a horse in a stable.\",He,gold,is playing a very large drop of dirt and a young face light.,is sitting down step on how to do it by exercises and how to do exercise exercise.,is brushing snow from his foot and starts trimming one of the boots behind a bush and trims it.,is using a blow dryer to dry the horse's wet body.,3\n14690,anetv_exCENNu1qBU,10762,He stands up and runs on stilts. He,He stands up and runs on stilts.,He,gold,falls down on a ramp.,goes out and is raising splits in the air.,jumps off the track.,walks out and takes his running.,0\n14691,anetv_exCENNu1qBU,16298,He puts on his safety gear. He,He puts on his safety gear.,He,gold,skims a handwritten message.,adjusts the back seat.,gets up and runs and jumps on a pair of stilts.,and the others walk to ride.,2\n14692,anetv_exCENNu1qBU,16297,A man is sitting in a parking lot drinking a soda. He,A man is sitting in a parking lot drinking a soda.,He,gold,sets demonstrating how to ride a ticket on sitting steps.,fills the cup with water and puts it in the sink.,puts on his safety gear.,sits at a table then take shaving drinks from the cup.,2\n14693,anetv_exCENNu1qBU,10761,A man sitting on the ground takes a drink from a bottle. He,A man sitting on the ground takes a drink from a bottle.,He,gold,pushes the ball back and forth before serving.,stands up and runs on stilts.,pours another liquid onto the plate and swirls it around.,goes down to davis pad.,1\n14694,anetv_3gsF785TAmg,18153,A player on the yellow team falls and the players on each team assist her. They,A player on the yellow team falls and the players on each team assist her.,They,gold,\"hit a blue ball with a rings, then the white team in red 20 shirts scores.\",start to hit the ball back and forth on the stage to check off the score.,are playing in a large field while people run around with their team mates.,take her shoe and sock off and massage her leg.,3\n14695,anetv_3gsF785TAmg,18152,A game of volleyball is being played between blue and yellow team. The yellow team servies the ball and it,A game of volleyball is being played between blue and yellow team.,The yellow team servies the ball and it,gold,includes the whole black team.,is hit continually back and forth until the yellow team scores a point.,somersaults down to only the players while the coach is talking.,cheers and it quickly bumps into a huge goalie blocking a goal.,1\n14696,lsmdc1011_The_Help-78268,16542,Someone has heard every word. Someone,Someone has heard every word.,Someone,gold,looks down at her lap.,accelerates by the next wave's peak making nice.,walks to the right side of the aisle a 20 yards up to the front.,waits in the last long hall.,0\n14697,lsmdc1011_The_Help-78268,16544,\"Later, someone and her friends are standing by their cars. Someone\",\"Later, someone and her friends are standing by their cars.\",Someone,gold,stares out at the gold bar at her kitchen island.,\"is inside, watching them through a window.\",takes a white plastic baggie from a nearby room and taps it served.,opens her apartment door to find someone descending into a dim hallway.,1\n14698,anetv_a74RMGL_c8E,6193,\"One of the players puts the ball down on a line, backs up, then takes his stick and hits the ball. It goes into the goal and hits the goalie in the face and the crowd cheers,\",\"One of the players puts the ball down on a line, backs up, then takes his stick and hits the ball.\",\"It goes into the goal and hits the goalie in the face and the crowd cheers,\",gold,throwing their hands in the air.,encouraging the players and balls to walk away from the sides.,staring towards the knees very near the crowd.,cheering as shortly balconies are walking around the court.,0\n14699,anetv_a74RMGL_c8E,6192,There's a game in progress on a very green and grassy field in an outdoor stadium filled with people. One of the players,There's a game in progress on a very green and grassy field in an outdoor stadium filled with people.,One of the players,gold,is walking on a field and is someone in earlier.,\"shows off to the game's tv, then he begins doing his game while suddenly on a rope.\",kicks the ball back and forth over the net net.,\"puts the ball down on a line, backs up, then takes his stick and hits the ball.\",3\n14700,anetv_a74RMGL_c8E,18048,A game is in progress as the crowd watches. The people,A game is in progress as the crowd watches.,The people,gold,are interviewed by the screen.,continue playing his lacrosse game.,\"are seen playing pool, cheering before finishing a pose.\",are playing a game of field hockey.,3\n14701,anetv_a74RMGL_c8E,18049,The people are playing a game of field hockey. They,The people are playing a game of field hockey.,They,gold,are engaged in a game of soccer.,are playing a game of volleyball.,hit the ball into the goal as the crowd cheers.,are shown croquet being indoor and she is showing the level of the volleyball.,2\n14702,lsmdc3002_30_MINUTES_OR_LESS-1013,3928,A red dot shines on the forehead of someone's mask emanating from someone's laser path. Someone,A red dot shines on the forehead of someone's mask emanating from someone's laser path.,Someone,gold,kicks and kicks someone in the ribs.,pulls off his mask.,stop trapping the serpent.,moves with makeup.,1\n14703,lsmdc1055_Marley_and_me-96423,6429,Someone leaves the glass - fronted office with a grin. He,Someone leaves the glass - fronted office with a grin.,He,gold,\"walks through the open - plan newsroom, fists clenched in triumph.\",\"returns it to someone's garage, and places a cellphone in someone's bag.\",\"speaks, takes on a tall revealing low spectacles near his trudges map.\",plays with crowds as he eats breakfast.,0\n14704,lsmdc1055_Marley_and_me-96423,6430,\"He walks through the open - plan newsroom, fists clenched in triumph. He\",\"He walks through the open - plan newsroom, fists clenched in triumph.\",He,gold,clamps her father's face as someone returns to the courtyard.,shakes off a spray bottle.,walks off the table and strikes the keys.,sits at his cube workstation and starts to type on his computer.,3\n14705,anetv_RgMAHuMVRcU,13635,Two men are working together in an orchard. They,Two men are working together in an orchard.,They,gold,begin an arm wrestling match with a flash sword.,is drinking beer and drinking beers.,are wearing a black school cape and demonstrating how to cut the hair of a woman in front of a large window.,use very long shears to cut the branches.,3\n14706,anetv_RgMAHuMVRcU,19763,\"They work their way around the tree before we see a video of a cloudy sky and the orchard, overlain with words describing what to do to successfully trim the trees. A man\",\"They work their way around the tree before we see a video of a cloudy sky and the orchard, overlain with words describing what to do to successfully trim the trees.\",A man,gold,takes waxing and starts carving a pumpkin in different places.,is shown walking toward the camera with a cutting tool in his hand.,is skateboarding along a grass path across the desert.,is separating the yard of a cow with a string that has fun.,1\n14707,anetv_RgMAHuMVRcU,19764,Numerous images of the orchard and trees are shown. A screen,Numerous images of the orchard and trees are shown.,A screen,gold,appears and scrolls across the screen.,video shows people riding on skates.,displayed black and white words appear.,shows further information regarding the video.,3\n14708,anetv_RgMAHuMVRcU,13636,They use very long shears to cut the branches. They,They use very long shears to cut the branches.,They,gold,approach a thick of padlocked trees in the parking lot to bounce a shiny issues from each other.,are in a roll and moving in front of them.,keep trimming the trees as they go.,sit at the edge on a chopping board.,2\n14709,anetv_1gp-5iOIfVo,11500,\"All of the people meet at the starting line and begin a marathon throughout the city. As they run, people\",All of the people meet at the starting line and begin a marathon throughout the city.,\"As they run, people\",gold,falls down to the slack line.,rush about either jumping rope and show the windows that crashed the counter.,are shown from one's eye.,\"are on the side of the road encouraging them with water on their tables, signs and clapping for them.\",3\n14710,anetv_1gp-5iOIfVo,11499,\"Several individuals are dressed in workout clothes, tying up their shoes, and placing numbers on their shirts. All of the people\",\"Several individuals are dressed in workout clothes, tying up their shoes, and placing numbers on their shirts.\",All of the people,gold,attempt at bowling for a small bit and end by standing near the camera.,continue to go around tricks and watch movement and movements on the right.,meet at the starting line and begin a marathon throughout the city.,begins when they're done washing both and a man begins in a scrubber machine.,2\n14711,anetv_1gp-5iOIfVo,11926,\"A group of people are walking outdoors, and people are preparing to run in a race. They\",\"A group of people are walking outdoors, and people are preparing to run in a race.\",They,gold,\"their soccer in a field, another boy takes up soccer and neither the spectators gives people a overlaid and fails to hug but there\",run down city streets and past numerous buildings.,are going off of a different dirt hill in a slow motion.,same dog stands on the fence that people are making and squatting and begin outfits out to finish the ground.,1\n14712,anetv_1gp-5iOIfVo,11501,\"Aside from the people, there are also large red blow ups on the side illustrating the hydration stations. Finally, a young couple completes the marathon and a still image of them\",\"Aside from the people, there are also large red blow ups on the side illustrating the hydration stations.\",\"Finally, a young couple completes the marathon and a still image of them\",gold,blocks the camera and is talking as well.,is shown at the end.,\"follows, and the atmosphere seems easily animated.\",\"spot the parasails, trying to receives several more letters.\",1\n14713,anetv_XPctbL-V1ww,6375,\"He moves forward a little and spits out some toothpaste. Then continues to brush, he\",He moves forward a little and spits out some toothpaste.,\"Then continues to brush, he\",gold,\"wipes shaving cream off his shoulder with a bucket, and gives another high wave at the camera.\",puts the tooth brush down and grabs a cup of water gargles a bit and spits it out.,dips a brush into his teeth on the keyboard.,pulls out the toothpaste.,1\n14714,anetv_XPctbL-V1ww,6374,A little boy in his pajamma's standing in the mirror watching himself brush his teeth. He,A little boy in his pajamma's standing in the mirror watching himself brush his teeth.,He,gold,pinches the breadstick to his lips and uses it with his brush.,moves forward a little and spits out some toothpaste.,\"to the camera as he's laying down on the floor, he poses and dries his hair with a brush.\",\"'s hair is being washed with blood that she has again, and now he is continuing shaving his nose.\",1\n14715,anetv_2-SPZIF5lPY,18020,A woman in fencing gear comes in. She,A woman in fencing gear comes in.,She,gold,begins to teach him while the man gallops up and down the rug.,starts to swim forward using the raft in her face.,shows how to use for a lacrosse ball.,takes a bow and arrow shoots it at a target.,0\n14716,anetv_2-SPZIF5lPY,15659,A group of men are being interviewed about jousting. They,A group of men are being interviewed about jousting.,They,gold,join together in a gym to joust.,spin alternately and throw the discus.,continues to play soccer from head to hand.,are shown running back and forth on the grey ice.,0\n14717,anetv_2-SPZIF5lPY,15660,They join together in a gym to joust. A man and woman,They join together in a gym to joust.,A man and woman,gold,take sunglasses and dance around in competition.,are leading into the water.,\"rolls them around in circles, several feet high.\",gear up and parry with each other.,3\n14718,anetv_2-SPZIF5lPY,18022,He begins to attach a dummy while the woman looks horrified. The men backstage,He begins to attach a dummy while the woman looks horrified.,The men backstage,gold,stops to give gambling back for a better look at the table.,go down and stand in a line.,\"spins, jumping until the gambler is glacier.\",are again shown laughing and clapping.,3\n14719,anetv_2-SPZIF5lPY,18021,She begins to teach him while the man gallops up and down the rug. He,She begins to teach him while the man gallops up and down the rug.,He,gold,\"walks through the wooden door in a hallway, next to the cat.\",proceeds to walk in the water along the back trail.,begins to attach a dummy while the woman looks horrified.,scramble to free him as he moves the bike very quickly.,2\n14720,anetv_HCFF0svChQY,10432,A group of team mates are gathered on a track. An athlete,A group of team mates are gathered on a track.,An athlete,gold,spins and flips on a track in front of audience.,runs down the track then jumps down the ramp.,runs around a track and throws a javelin.,runs and jumps into the sand.,3\n14721,anetv_HCFF0svChQY,4466,A man is sprinting down a track. He,A man is sprinting down a track.,He,gold,throws the skateboard in the dirt field.,is doing somersaults on two large mats.,jumps into a pit of sand.,jumps off of a diving board and skis along the border of the ruin.,2\n14722,anetv_HCFF0svChQY,10433,An athlete runs and jumps into the sand. The crowd,An athlete runs and jumps into the sand.,The crowd,gold,watches the onlookers as they take turns riding.,claps as he stands and walks away.,has a lacrosse stick.,cheer as people run on the beach.,1\n14723,anetv_qXUdnj4VN80,18250,The lady also rides a one wheel bike while hula hooping. the girl then hula hoops while,The lady also rides a one wheel bike while hula hooping.,the girl then hula hoops while,gold,standing on a mat then hula hoops with two hula hoops standing in the same spot.,\"wakeboarding while walking with the stilts, and front while the video pans.\",doing it near the end.,doing the pictures with her purse.,0\n14724,anetv_qXUdnj4VN80,18251,\"The girl then hula hoops while standing on a mat then hula hoops with two hula hoops standing in the same spot. the girl then hula hoops hanging upside down, she also\",The girl then hula hoops while standing on a mat then hula hoops with two hula hoops standing in the same spot.,\"the girl then hula hoops hanging upside down, she also\",gold,shows her backrest in the air before swimming in the competition.,does various tips in her feet.,makes her head down to the cabinet and lands on her knees.,hula hoops around her hand while doing a split on a mat.,3\n14725,anetv_qXUdnj4VN80,18252,\"The girl then hula hoops hanging upside down, she also hula hoops around her hand while doing a split on a mat. the girl\",\"The girl then hula hoops hanging upside down, she also hula hoops around her hand while doing a split on a mat.\",the girl,gold,\"walks to a waits line, then slowly touches the girl on the back.\",\"gets into a ring, and takes next to the pool on the ground.\",hula hoops a big tire hula hoop then hula hoops with three hula hoops using her two hands and one feet in the air.,spins the baton in a girl's hands and judges push the surface up straight and focus on her.,2\n14726,anetv_D0aZaiBAHxg,18701,He starts up a chainsaw. He,He starts up a chainsaw.,He,gold,begins to trim the large hedge.,stands up and runs toward the wall.,places a yellow umbrella on the back of the mower.,opens it to reveal the general's picked up phone.,0\n14727,anetv_D0aZaiBAHxg,11416,A man is seen trimming along the edges of a bush from several angles while the camera follows him. The man continues to cut all around the hedge and the camera,A man is seen trimming along the edges of a bush from several angles while the camera follows him.,The man continues to cut all around the hedge and the camera,gold,captures his every movement.,returns to speak to the camera.,pans up to show his movements.,pans around and eventually takes it off.,0\n14728,anetv_D0aZaiBAHxg,18700,A man stands in front of a bush. He,A man stands in front of a bush.,He,gold,starts up a chainsaw.,sits and touches down the camera.,trims with a red trim.,puts noodles on a can.,0\n14729,lsmdc1031_Quantum_of_Solace-84293,3541,He marches the man away with a gun at his neck. He,He marches the man away with a gun at his neck.,He,gold,holds the guy at the edge of a roof.,sprays the dog with two joint - clawed fingers and wades around.,\"run to the other side, throws it.\",loses his posture and throws it in the middle of the man.,0\n14730,lsmdc1031_Quantum_of_Solace-84293,3540,He tips over a pan of oil which bursts into flames and gets past the gunman as the hero dies bloodily on stage. He,He tips over a pan of oil which bursts into flames and gets past the gunman as the hero dies bloodily on stage.,He,gold,takes a new sprint with shining eyes.,lowers her right arm.,walks to a stop and gazes at the dog.,marches the man away with a gun at his neck.,3\n14731,lsmdc1031_Quantum_of_Solace-84293,3544,He sends him off the roof. He,He sends him off the roof.,He,gold,packs a duffel and straightens up by its the chair.,flies up and amongst the land below.,lands on someone's car.,stuns someone with his gun.,2\n14732,lsmdc1031_Quantum_of_Solace-84293,3533,\"Upstairs, someone clears out of his box. Someone\",\"Upstairs, someone clears out of his box.\",Someone,gold,is sucked into the apartment building.,\"shakes the banister and rises, lowering him into the water.\",\"emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting.\",\", now at the airport, strides over to someone's house and drops it on a nearby table.\",2\n14733,lsmdc1031_Quantum_of_Solace-84293,3538,A pursuer goes gun battle ensues in the restaurant. Someone,A pursuer goes gun battle ensues in the restaurant.,Someone,gold,\"still swipes at a friend, he returns to his boys.\",\"another confident, stiff - looking, phoenix, someone, the pledges of an old chinese, are full of dead, etc.\",escapes into the kitchen area.,emerges from the gate with another shaft in the air.,2\n14734,lsmdc1031_Quantum_of_Solace-84293,3542,He holds the guy at the edge of a roof. Someone gets in his car and someone's prisoner,He holds the guy at the edge of a roof.,Someone gets in his car and someone's prisoner,gold,leads them out.,tries to break free.,gets into another car's car.,is caught by the redcap greeting the departing protester.,1\n14735,lsmdc1031_Quantum_of_Solace-84293,3535,\"As someone walks calmly down the corridor, someone and his party are hurrying for an exit. They\",\"As someone walks calmly down the corridor, someone and his party are hurrying for an exit.\",They,gold,\"are quite dignified, standing upright.\",peer at the pump.,come face to face.,start to a doorway of the shadowy van.,2\n14736,lsmdc1031_Quantum_of_Solace-84293,3534,\"Someone emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting. As someone walks calmly down the corridor, someone and his party\",\"Someone emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting.\",\"As someone walks calmly down the corridor, someone and his party\",gold,\"explode around him, as they head outside to the glass.\",are hurrying for an exit.,go down and down their sidewalk.,arrive at a bar.,1\n14737,lsmdc1031_Quantum_of_Solace-84293,3543,Someone gets in his car and someone's prisoner tries to break free. He,Someone gets in his car and someone's prisoner tries to break free.,He,gold,finds someone trapped at the spot.,\"starts scraping off the car, but allowing the hostages to follow.\",\"was an oncoming car, smashing them against the van's front trolley.\",sends him off the roof.,3\n14738,lsmdc1031_Quantum_of_Solace-84293,3536,They come face to face. The hero,They come face to face.,The hero,gold,\"falls towards them, leaving blackness circular effect.\",loses and swings someone's.,is shot on stage as men chase someone.,walks away from the coast.,2\n14739,lsmdc1031_Quantum_of_Solace-84293,3539,\"A man body checks him, but someone shoots him pointblank through the body. He\",\"A man body checks him, but someone shoots him pointblank through the body.\",He,gold,ducks as a door flies open in front of him.,tumbles in rumpled covers as he swigs on her.,\"is thrown to the girder, hits someone with a crowbar.\",runs to the bottom and gallops across the pole.,0\n14740,lsmdc1031_Quantum_of_Solace-84293,3537,The hero is shot on stage as men chase someone. He,The hero is shot on stage as men chase someone.,He,gold,has his nose raised.,\"waves and everyone on the field waves the flag, knocking a line.\",runs through a crowded restaurant and shots are fired taking down a bystander.,enters with a house's lid.,2\n14741,anetv_K5wPwCFVkhU,7335,A small puppy is rubbing his face in someone's lap. He,A small puppy is rubbing his face in someone's lap.,He,gold,throws the frisbee and spins around.,climbs out of bed behind the office and peers at the sun.,continues across the room to reveal an infant sitting beside him.,chews and licks his paw as he cuddles.,3\n14742,anetv_K5wPwCFVkhU,16687,A dog is resting in a person lap. the dog,A dog is resting in a person lap.,the dog,gold,is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap.,\"leans forward, licking a nail.\",runs in the road.,jumped onto the grass.,0\n14743,anetv_K5wPwCFVkhU,7336,He chews and licks his paw as he cuddles. He,He chews and licks his paw as he cuddles.,He,gold,points his stick to grab the egg base.,murmurs meekly as she watches the boy interacting with his smiling groom.,looks up at the camera slightly.,\"gives her the gift, then back shoves his daughter away, carrying someone with teddy.\",2\n14744,anetv_K5wPwCFVkhU,16688,The dog is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap. finally the dog,The dog is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap.,finally the dog,gold,comes back up with a purple shirt on shoes and hangs it back.,continues to move his legs and ecstatically continue skateboarding while the man tries to bathe the dog.,scrubs the dog with a brush and the dog pulls the dog away.,stops licking the person hand and try's to look at the camera.,3\n14745,lsmdc1059_The_devil_wears_prada-98767,3492,They catch sight of someone who's trying to creep back downstairs. She,They catch sight of someone who's trying to creep back downstairs.,She,gold,turns back to someone.,\"leaves the book on the top step, and hurries away.\",\"goes behind him and finds her seated on the side of the bed, holding her pursed ear.\",ducks from the shadows with a horrified expression.,1\n14746,lsmdc1059_The_devil_wears_prada-98767,3491,\"She reaches an upper floor, and comes across someone and her husband. They\",\"She reaches an upper floor, and comes across someone and her husband.\",They,gold,find a forearm - hole in an lit wall.,catch sight of someone who's trying to creep back downstairs.,turn it back downstairs.,frisks the elevator and hurries out of a silver chain - link vehicle.,1\n14747,lsmdc1059_The_devil_wears_prada-98767,3490,They giggle as someone creeps upstairs. She,They giggle as someone creeps upstairs.,She,gold,\"reaches an upper floor, and comes across someone and her husband.\",fills the cluttered glass cabinet.,slams her against a wall and leans back against the cabinet.,stops drinks on the set and saunters off.,0\n14748,lsmdc1059_The_devil_wears_prada-98767,3493,\"She leaves the book on the top step, and hurries away. Someone\",\"She leaves the book on the top step, and hurries away.\",Someone,gold,puts the bottle down and drizzles salt into the container.,looks away in her direction.,returns to the camp in the dining room.,\"grabs someone's arm, and pulls her into a side room as she arrives for work.\",3\n14749,anetv_1G3rv9ssDY4,6976,Two more batches of racers start the same race. A single biker,Two more batches of racers start the same race.,A single biker,gold,is going through the curved road at very high speed.,is passing on the road waving to camera as people pass a girl in a wave.,appears still then some other people and maroon kayaks rollerblading into a vehicle with people behind them who drives two skiers.,\"jam group is rock, also.\",0\n14750,anetv_1G3rv9ssDY4,6974,There are five bikers wearing helmets standing ready to start a race. They,There are five bikers wearing helmets standing ready to start a race.,They,gold,then walk on the still cow of a large cattle.,follow the other sumo wrestlers.,are performing with a tower of sea equipment.,begin racing at high speed over a curved road.,3\n14751,anetv_1G3rv9ssDY4,6972,The bikers are going over a curbed surface at full speed. There,The bikers are going over a curbed surface at full speed.,There,gold,gives only the occasional.,are several other bikers doing the same activity on another curved surface.,teens are riding on the side and people being pulled in the grass near a mountain.,pulls the package from his pocket and tosses it over his head.,1\n14752,anetv_1G3rv9ssDY4,6973,There are several other bikers doing the same activity on another curved surface. There,There are several other bikers doing the same activity on another curved surface.,There,gold,they are assembling all the ramps and spurs trying back to the attendant to lift the final slice onto the road.,is chain around his neck.,are also wearing black and white gloves for different world skating.,are five bikers wearing helmets standing ready to start a race.,3\n14753,anetv_1G3rv9ssDY4,6975,They begin racing at high speed over a curved road. Two more batches of racers,They begin racing at high speed over a curved road.,Two more batches of racers,gold,are inside the bar.,race around in the open water.,start the same race.,are place on a large field.,2\n14754,anetv_c6BcS5NdI6E,4456,A large group of people are seen playing a game of volley ball with one another while moving around the beach. Several shots,A large group of people are seen playing a game of volley ball with one another while moving around the beach.,Several shots,gold,are shown of people playing beer pong with one another while laughing to one another.,are shown of people playing beer pong against one another and others around cups.,are shown with people playing various sports as well as back and fourth and taking pictures.,are shown of the people wandering around one another playing the game back and fourth over the net and helping one another.,3\n14755,lsmdc0027_The_Big_Lebowski-63037,16800,\"Someone pops the latches on his attache case and takes out the homework, which is now in a ziploc bag. He\",\"Someone pops the latches on his attache case and takes out the homework, which is now in a ziploc bag.\",He,gold,\"holds it out at arm's length, displaying it to someone.\",\"steps up to his with black eyes and a spider - face, a white scarf and a prison uniform.\",\"tries to point at someone's drops, but finds it empty.\",puts the letters on the wall behind him and pulls it open quickly.,0\n14756,lsmdc0027_The_Big_Lebowski-63037,16801,\"He holds it out at arm's length, displaying it to someone. Someone\",\"He holds it out at arm's length, displaying it to someone.\",Someone,gold,gazes at the back piece.,loses the stick and flings it on the track.,is still holding out the homework.,lifts it up to show his own hazmat features.,2\n14757,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6439,\"Someone returns a solemn, remorseful look. Someone\",\"Someone returns a solemn, remorseful look.\",Someone,gold,stands in the doorway of a news room and waves to the skylight top.,turns off the shower.,turns around and mopes off down the block of brown stone buildings.,\"sits beside someone, pretending to knit with a pencil.\",2\n14758,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6441,\"Later he sulks at a bar while someone, someone and others have a good time all around him. Someone\",\"Later he sulks at a bar while someone, someone and others have a good time all around him.\",Someone,gold,is faster because of joy and the crowd looks very anxious.,falters from the sight.,passes in front of our view as the picture fades to black.,\"looks on, smiling at someone and shaking his mouth as if at a physical castle.\",2\n14759,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6436,Tears stream down someone's cheek. The boy,Tears stream down someone's cheek.,The boy,gold,turns back as he stretches in her direction and unbuckles canopy beside the wheel as she moves forward.,\"dries his face with his sleeve, then glances off pensively.\",is only to be lifted.,grins and runs past the coastal motel and shows someone over his shoulder.,1\n14760,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6442,Someone passes in front of our view as the picture fades to black. In the early morning under a gray sky someone,Someone passes in front of our view as the picture fades to black.,In the early morning under a gray sky someone,gold,walks down the middle of a street.,wintry autumn dust and shade as it leaves a treacherous forest.,\"smiles at her amazing style, sharing a hopeful gaze.\",prepares for even a hat.,0\n14761,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6443,In the early morning under a gray sky someone walks down the middle of a street. Later he,In the early morning under a gray sky someone walks down the middle of a street.,Later he,gold,strolls through a park on a pathway between tall leafy trees and approaches vivian sitting on a bench.,turns to others in a backyard toting the luggage.,watches someone pedal down a bluff in the middle of the campus.,turns from an adjoining window and faces us with a warm smile.,0\n14762,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6438,Someone's chin furrows sadly as he stares at his mentor. Someone,Someone's chin furrows sadly as he stares at his mentor.,Someone,gold,notices two guest troopers.,\"passes them to the roadside with a leafy fence and turns back to the others, passing the maize eyed to the other one.\",\"returns a solemn, remorseful look.\",\"allows a faint smirk, then picks out a mallet and lightly taps the small drum set with its metal stick.\",2\n14763,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6440,Someone turns around and mopes off down the block of brown stone buildings. Later he,Someone turns around and mopes off down the block of brown stone buildings.,Later he,gold,\"sulks at a bar while someone, someone and others have a good time all around him.\",paces in the hallway through a great hall in the middle of the living garden.,flies through a crowd of policemen and embers.,hangs on him at another table and sits on hood.,0\n14764,lsmdc3067_THE_ART_OF_GETTING_BY-32472,6437,He flashes a wry dimpled smile. Someone's chin,He flashes a wry dimpled smile.,Someone's chin,gold,rests on a rope piled up on both of someone's shoulders.,presses it up and shines her fingers into her chin.,furrows sadly as he stares at his mentor.,juts out of his bag.,2\n14765,lsmdc3003_40_YEAR_OLD_VIRGIN-1170,9452,Someone watches the someone Identity. Someone,Someone watches the someone Identity.,Someone,gold,runs down the wharf.,\"sits at his desk, sweeping over a thick stack of gunshots.\",approaches someone at a desk.,\"turns to someone, who is also backing away.\",2\n14766,lsmdc3003_40_YEAR_OLD_VIRGIN-1170,9453,Someone approaches someone at a desk. He,Someone approaches someone at a desk.,He,gold,presses a savage glare.,glances over his shoulder.,holds the coin under his personal view.,peeks over the stained - glass windows.,1\n14767,lsmdc3003_40_YEAR_OLD_VIRGIN-1170,9454,He glances over his shoulder. A pudgy boy,He glances over his shoulder.,A pudgy boy,gold,comes on with a handgun.,sits on an electric chair.,emerges from the bin.,holds a pair of boots.,3\n14768,anetv_cqVvHj1oC-8,15728,A woman is seen speaking to the camera while scraping off her car and holding up products to help. More people,A woman is seen speaking to the camera while scraping off her car and holding up products to help.,More people,gold,are seen speaking to the camera and showing off their methods of melting ice and leading back to the two reporters.,are seen running down the street while looking to the camera.,are shown of people riding down the mountain as well as the camera followed with women using skateboards doing water.,are shown lifting raging gear and walking around to the camera followed by several clips of riding shoes and others riding.,0\n14769,anetv_cqVvHj1oC-8,15727,Two people are seen hosting a news segment that leads into clips of people scraping off their cars. A woman,Two people are seen hosting a news segment that leads into clips of people scraping off their cars.,A woman,gold,speaks to the camera and leads into various shots of landscapes that is ice around a city.,is seen putting photos around a large hoop and speaks to the camera while moving his hands up and down.,talks about an earpiece and brushes and points to the floor.,is seen speaking to the camera while scraping off her car and holding up products to help.,3\n14770,lsmdc0026_The_Big_Fish-62211,3774,\"He tries to recollect, but it's already gone. Someone motions, is it okay for her\",\"He tries to recollect, but it's already gone.\",\"Someone motions, is it okay for her\",gold,to sit there and gets to her car.,to collect someone and sees the game.,to get in the truck next the ride.,to sit on the bed?,3\n14771,anetv_TjLoGNBzNRA,9032,A woman rubs a wall surface. The woman,A woman rubs a wall surface.,The woman,gold,lays down and grabs the iron surface of a cup.,sands the floor facing the tattoo.,talks wipes then continues mixing.,peels something apart while kneeing on the ground.,3\n14772,anetv_TjLoGNBzNRA,9034,The woman attaches wallpaper to the wall surface. The woman,The woman attaches wallpaper to the wall surface.,The woman,gold,paints the sheet removed wax.,trims excess wallpaper from the wall.,rolls backward cord to the ground.,applies metal slices on the spray pipe and explaining the difference process.,1\n14773,anetv_TjLoGNBzNRA,15010,She gives a thumbs after she completes hanging the graphic wall paper. Then she,She gives a thumbs after she completes hanging the graphic wall paper.,Then she,gold,demonstrates how easy it is to peel off from the wall.,sprays bottom in the wall and use cleaner on it and edge it out.,comes back for the hanger and performs a routine on the beam for the fire.,continues putting paintbrush to the wallpaper using some grout to cover what dots on the wall.,0\n14774,anetv_TjLoGNBzNRA,9035,The woman trims excess wallpaper from the wall. The woman,The woman trims excess wallpaper from the wall.,The woman,gold,stands next to the wallpaper and gives a thumbs up sign.,continues to show how to ward us the wallpaper very carefully.,put back wallpaper and on the carpet to show how the design should be painted.,uses a broken cloth to wipe the bottom.,0\n14775,anetv_TjLoGNBzNRA,9033,The woman peels something apart while kneeing on the ground. The woman,The woman peels something apart while kneeing on the ground.,The woman,gold,puts the camera finishes to gets up and leave his room.,attaches wallpaper to the wall surface.,begins ironing the woman's leg and pulling on the exercise while rubbing his leg.,wipes the unseen woman's sleeve.,1\n14776,anetv_TjLoGNBzNRA,9037,The woman peels the wallpaper away from the wall. The woman,The woman peels the wallpaper away from the wall.,The woman,gold,sits by the wallpaper and gives the thumbs up sign.,goes into the oven on how to cut the wallpaper.,stands and lays on cement covering the wall.,puts a piece of cloth down and wipes it with her thumb.,0\n14777,anetv_TjLoGNBzNRA,9036,The woman stands next to the wallpaper and gives a thumbs up sign. The woman,The woman stands next to the wallpaper and gives a thumbs up sign.,The woman,gold,leaves a note on the wall.,peels the wallpaper away from the wall.,interacts with another young group.,takes a last brush to scrape off the excess.,1\n14778,anetv_TjLoGNBzNRA,15008,There's a woman doing a tutorial on how to fix wall paper on a wall. She,There's a woman doing a tutorial on how to fix wall paper on a wall.,She,gold,\"shows one of her hair to the girl, and she continues taking exercise together.\",begins by preparing the surface and then peels of the sheet from the adhesive side of the wall paper.,walks out of her office.,puts them out of an oven.,1\n14779,anetv_TjLoGNBzNRA,15009,She continues hanging more wall paper on the wall and ensures that it glues on tight and securely on the wall surface without creases. She,She continues hanging more wall paper on the wall and ensures that it glues on tight and securely on the wall surface without creases.,She,gold,\"edges up, she continues pulling the carpet around the tiles while showing a shirt off in the end.\",wall continues to knock over the chair from the ceiling then moves to brush the room again and works the metal box.,\"clips blurs of the lamps moving up and down one, as the knife cuts begins to hum around the entire wand with it.\",gives a thumbs after she completes hanging the graphic wall paper.,3\n14780,anetv_AqTZd5HZKNI,10348,Man is holding an orange vacuum and is vacuuming the white carpet in an empty room. the mn,Man is holding an orange vacuum and is vacuuming the white carpet in an empty room.,the mn,gold,close the door to vacuum the carpet behind the door.,walks on the floor and began vacuuming a dirt floor.,watch the man and is back going down the snowy shirt trough.,put the squeegees down the inside of the room.,0\n14781,anetv_AqTZd5HZKNI,16594,The man pushes a vacuum back and fourth along the carpet. He,The man pushes a vacuum back and fourth along the carpet.,He,gold,continues laying down a rug.,continues pushing the vacuum around all over the floor.,grabs a vacuum and then begins vacuuming it.,finishes up some tiles and rearranges the pipe on the wall.,1\n14782,anetv_AqTZd5HZKNI,10347,Man is holding a vacuum and cleaning a carpet. man,Man is holding a vacuum and cleaning a carpet.,man,gold,is vacuuming the floor putting boxing gloves on.,is vacuuming a backyard holding a brush and pulling it to a dog.,is cutting te carpet in the next room.,is holding an orange vacuum and is vacuuming the white carpet in an empty room.,3\n14783,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73336,16838,Someone sidles up behind him at the sink. Someone,Someone sidles up behind him at the sink.,Someone,gold,turns to the door.,shakes his head painfully.,\"looks back at someone who shakes his head, then sinks to his knees.\",\"goes to put a hand on someone's shoulder, but can't bring himself to do it.\",3\n14784,anetv_B0sXYJeZ8Xk,2951,A woman is seen standing in a yard with a lawn mower in front of her. The girl then,A woman is seen standing in a yard with a lawn mower in front of her.,The girl then,gold,jumps up on the horse and begins sweeping the horse down.,holds up a pair of scissors and begins styling the girl's hair.,pushes the lawn mower along the yard.,begins mowing her lawn while sitting down down and speaking to the camera.,2\n14785,anetv_B0sXYJeZ8Xk,2952,The girl then pushes the lawn mower along the yard. The camera,The girl then pushes the lawn mower along the yard.,The camera,gold,moves in closer of the woman still pushing the mower and speaking to the camera.,zooms in on the mower and continues cutting the grass.,zooms in with a view of all the bare branches.,returns to just a few toys piling the hedge and grass.,0\n14786,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5191,\"Someone goes to prop an elbow on his knee, but slips. Someone\",\"Someone goes to prop an elbow on his knee, but slips.\",Someone,gold,\"'s clearly want with someone's attitude, someone knows this place not have his mind where it was.\",\"goes down the hallway, past the opposite window of someone's study.\",stands up and raises his clapping hat.,rests an arm on the tractor hood.,3\n14787,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5189,\"He strolls happily through the barley. Reaching a light blue tractor, he\",He strolls happily through the barley.,\"Reaching a light blue tractor, he\",gold,climbs into the driver seat.,finds a sign under the wall.,plods along a chrome rooftop.,backs across the sizable reflecting basketball.,0\n14788,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5195,\"As his nephew drives the trucktor down the path, someone turns away with a calculating gaze. He\",\"As his nephew drives the trucktor down the path, someone turns away with a calculating gaze.\",He,gold,marches into the barley field.,folds a hand into his pocket and unbuttons her shirt.,draws a boy on camera points to one standing in front of the burning house.,shoots a server at someone who gets in his car.,0\n14789,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5196,Someone hauls a bucket through the muddy work yard. The limousine,Someone hauls a bucket through the muddy work yard.,The limousine,gold,drives past the yard.,follows someone into the interrogation room.,swerves between the dead bodies.,starts to scuttle in front of someone.,0\n14790,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5192,Someone rests an arm on the tractor hood. Someone,Someone rests an arm on the tractor hood.,Someone,gold,bangs up against the pillar.,shifts his magical gaze.,wears an oversized mini battery mail outfit.,reaches for the ignition.,3\n14791,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5187,\"Standing among the healthy crops, someone plucks a grain from one of the wispy stalks. He\",\"Standing among the healthy crops, someone plucks a grain from one of the wispy stalks.\",He,gold,\"bites a seed, examines it and casts a hopeful gaze toward the sunny sky.\",\"blinks and stares after them, then tosses them away.\",leaves the gate.,beats the galloping camel.,0\n14792,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5190,\"Reaching a light blue tractor, he climbs into the driver seat. Someone\",\"Reaching a light blue tractor, he climbs into the driver seat.\",Someone,gold,\"and someone, a delighted man, tries to pick him out.\",\"mouths, he hands them.\",opens the trunk and climbs back onto the wheel.,\"goes to prop an elbow on his knee, but slips.\",3\n14793,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5193,Someone reaches for the ignition. Someone,Someone reaches for the ignition.,Someone,gold,snatches the car off.,\"jumps, then waves the boy onward.\",drives his seatbelt and stands other from a nearby window.,takes out snowy skates and spins for the driver.,1\n14794,lsmdc3051_NANNY_MCPHEE_RETURNS-24530,5188,\"He bites a seed, examines it and casts a hopeful gaze toward the sunny sky. He\",\"He bites a seed, examines it and casts a hopeful gaze toward the sunny sky.\",He,gold,waves back the clouds.,carries the bags in her hand.,\"writes title on, then dashes off a bombed road.\",strolls happily through the barley.,3\n14795,anetv_F_sbhegCsyg,3865,\"A group of people are gathered at an outdoor park. They are dressed up, and they\",A group of people are gathered at an outdoor park.,\"They are dressed up, and they\",gold,were using lunch activity in the studio.,are doing several moves.,get into a raft.,are decorating the christmas tree.,2\n14796,anetv_g-rw2Kyh9xo,18553,A man walks up to the side of a pool. He,A man walks up to the side of a pool.,He,gold,dives into the water and floats to the surface.,hits it with the sticks to his racket.,\"throw sharply just slightly, then makes the walk back after the ball.\",uses several other brushes to ride a sled.,0\n14797,anetv_g-rw2Kyh9xo,10837,He stands up and wind surfs in the water. He,He stands up and wind surfs in the water.,He,gold,walks in and out of frame.,gets out of the swimming pool.,puts down a pitcher and shakes it.,is riding a cart something behind a tree.,1\n14798,lsmdc3078_THE_WATCH-36118,125,\"Now, at a large home with a brick facade, someone opens a door. His basement\",\"Now, at a large home with a brick facade, someone opens a door.\",His basement,gold,boasts a pool table and wet bar.,reveals a cartoon huddled in the doorway.,\", opens and someone steps towards him.\",rolls us he peers through a door of drawers at the far end of the garage.,0\n14799,anetv_OSw73cXwjR4,644,A person wearing a hat is sitting no a couch. They,A person wearing a hat is sitting no a couch.,They,gold,begin playing an accordion.,are installing flooring in the carpet.,are dancing and dancing down a sidewalk.,begin to dance on the drums.,0\n14800,anetv_OSw73cXwjR4,645,They begin playing an accordion. They,They begin playing an accordion.,They,gold,are pointing at buttons on the accordion with a screwdriver.,turn a cord around and drum on the turbulent waters.,hold all their hands o the air.,play the drums in front of them.,0\n14801,anetv_buhaBimF4M0,13578,A friend is talking with the fallen woman as she tries to get up. A friend,A friend is talking with the fallen woman as she tries to get up.,A friend,gold,\"comes and hugs her parents about it, who gives one about what the owner is doing.\",gets out of the pool.,talks to her while holding the camera and offers her a hand to get up.,runs across the stage behind laughing and hits.,2\n14802,anetv_buhaBimF4M0,13579,A friend talks to her while holding the camera and offers her a hand to get up. Two women,A friend talks to her while holding the camera and offers her a hand to get up.,Two women,gold,\"hold hand and start rollerblading, while the girl in the red shirt learns how.\",drop a contact in the eye while her body is next to a cement tank.,are then seen speaking to the camera while sitting down walks and shaking hands.,are shown holding the woman in front of them and hold her mother's hands while folding.,0\n14803,anetv_buhaBimF4M0,13577,\"A woman on roller blades moves backwards, falls on the grass and laughs. A friend\",\"A woman on roller blades moves backwards, falls on the grass and laughs.\",A friend,gold,appears on the left side of the volleyball field.,jumps from the bars and crashes to the ground.,pushes out behind the lady and pushes his way down his body.,is talking with the fallen woman as she tries to get up.,3\n14804,anetv_jsofzMPb0i4,2841,He continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket. He,He continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket.,He,gold,demonstrates different techniques of shooting the ball right into the hoop without missing a single basket.,\"takes a deep breath, then lowers an gaze to the altar and embarrassment.\",continues demonstrating how to make a goal.,starts playing and alabama leaves ball again.,0\n14805,anetv_jsofzMPb0i4,2839,\"He begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop. Then he\",\"He begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop.\",Then he,gold,\"bowling ball and returns to the table, eventually goes to his bar.\",shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high.,hits the pinata in the air as he gets off.,turns back and stands on a magnifying seat.,1\n14806,anetv_jsofzMPb0i4,2840,Then he shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high. He,Then he shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high.,He,gold,continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket.,shows holes and continues to score circles across the blue ball.,play again with the blue pack doing jumps on the bars in the gym.,misses it very before eventually finally older man jumps on the field and is again first attempt to shoot the ball.,0\n14807,anetv_jsofzMPb0i4,2838,There's a basketball player demonstrating various types of basketball hoop shooting techniques on behalf of World of Hoops. He,There's a basketball player demonstrating various types of basketball hoop shooting techniques on behalf of World of Hoops.,He,gold,runs up to the man in the shirt to pull an instrument in his mouth.,\"begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop.\",talked to the camera and talk about his techniques.,returns the puck up the ball into the goal and the darts continue.,1\n14808,anetv_bGql7ldp84A,1153,She takes them out of the oven and begins to wrap them into individual sets. The video,She takes them out of the oven and begins to wrap them into individual sets.,The video,gold,ends with a closing screen for the cookies tyson showing a website showing the various recipe logo agreement.,ends with a person showing the other how to using it.,ends with the closing credits.,ends with the closing credits and the credits of it are displayed.,2\n14809,anetv_bGql7ldp84A,1150,She begins with all the ingredients she will need for the cookies and begins to combine the dry ingredients. She then,She begins with all the ingredients she will need for the cookies and begins to combine the dry ingredients.,She then,gold,proceeds to mix the wet ingredients in a glass bowl.,places the ingredients together in a bowl and takes the salad.,\"blends the bowl together and adds peanut butter into the bowl and preparing to mix popsicles, flour and mix.\",mixes all the ingredients and mixes top limes and pasta baking soda to make the mixture.,0\n14810,anetv_bGql7ldp84A,1152,\"After she mixes all the ingredients together she begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven. She\",\"After she mixes all the ingredients together she begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven.\",She,gold,mixes the ingredients in the pan and begins cooking cooked.,takes them out of the oven and begins to wrap them into individual sets.,places the cookie dough and cookies on the cookies.,\"lays down some vegetables, and continues talking to the camera.\",1\n14811,anetv_bGql7ldp84A,1151,She then proceeds to mix the wet ingredients in a glass bowl. After she mixes all the ingredients together she,She then proceeds to mix the wet ingredients in a glass bowl.,After she mixes all the ingredients together she,gold,puts the mixture on the pan and proceeds to pour it on with the drink.,\"begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven.\",adds the mixing mix into an iron mix with a large lemon on top of the counter.,puts the cake all into the bowl and puts it on the plate.,1\n14812,anetv_UUjTMDSUvs0,4663,The camera pans around kitchen and shows the woman cooking more ingredients. She,The camera pans around kitchen and shows the woman cooking more ingredients.,She,gold,puts up the cake and places it in a bowl.,scoops the lemons out of the pot and pours it on a plate.,continues mixing it around in the pan.,gives ingredients a plate and shows how to make lemonade.,2\n14813,anetv_UUjTMDSUvs0,1407,A buffet of food is shown around the woman. She,A buffet of food is shown around the woman.,She,gold,leaves the group of kids away.,is chopping larger vegetables as serving as counts.,is standing outside holding a cake by talking for a bread ready to bake.,is stirring the food in the pan.,3\n14814,anetv_UUjTMDSUvs0,4662,A woman is seen cooking items onto a stove with various ingredients laid out. The camera,A woman is seen cooking items onto a stove with various ingredients laid out.,The camera,gold,pans around her mixing all around the leg and pours the liquids into a blender.,pans around kitchen and shows the woman cooking more ingredients.,pans all around a table as well as well all ingredients and putting ingredients into a bowl.,\"pans over several clips of ingredients that are ingredients inside, turning flour into a bowl.\",1\n14815,anetv_sxQbiXWFdKs,7519,\"Kids walk to the water's edge and launch the water craft, including boats and inner tubes. A man\",\"Kids walk to the water's edge and launch the water craft, including boats and inner tubes.\",A man,gold,runs a pole vault.,rides in next to a holographic elliptical.,narrates the scene at the helm of a boat.,is repeating the game as they row on beside shore.,2\n14816,anetv_sxQbiXWFdKs,13720,A group of people get off of a yellow school bus with life rafts around their neck and enter a foliage filled area leading to a body of water. A man on a motorized boat,A group of people get off of a yellow school bus with life rafts around their neck and enter a foliage filled area leading to a body of water.,A man on a motorized boat,gold,swims in the middle of the calm setting.,is shown applying board to the ground.,jumps on the water.,talks to the camera while sitting on the edge of the inside of a boat in front of the boat steering wheel.,3\n14817,anetv_sxQbiXWFdKs,13721,\"The people are seen pushing off into the water in inflatable rafts, and donut shaped rafts, floating down the water solo or with others using paddles. A woman\",\"The people are seen pushing off into the water in inflatable rafts, and donut shaped rafts, floating down the water solo or with others using paddles.\",A woman,gold,is seen in the water in a kayak floating using a paddle to move in the water.,follows after them holding the kite impressive and an older man speaking to the camera and showing off his family.,is seen speaking to the camera while looking into the camera.,is sitting at the bottom of a large river.,0\n14818,anetv_sxQbiXWFdKs,7518,A school bus unloads with kids carrying boats with Down the Delaware overlaid. Kids,A school bus unloads with kids carrying boats with Down the Delaware overlaid.,Kids,gold,\"walk to the water's edge and launch the water craft, including boats and inner tubes.\",leads off celebratory pictures of their car.,is waving at a camera and holding up a frisbee.,family is sitting in green jack chairs.,0\n14819,anetv_B39pJK4FU1o,9091,She then jumps hopscotch and picks up the pink item. She,She then jumps hopscotch and picks up the pink item.,She,gold,throws it again and jumps again and returns picking up the pink item.,\"spins and spins, running a pose as if trying to be pushed.\",continues talking about the proper placement.,moves the letters in the plastic dryer bag to be in.,0\n14820,anetv_B39pJK4FU1o,9089,A lady is talking in an office and holding a pink item. the lady,A lady is talking in an office and holding a pink item.,the lady,gold,holds out large smart cube and adds decorations.,throws the pink item on a game board on the floor.,puts a contact lens in her eye.,sprays it with a razor.,1\n14821,anetv_B39pJK4FU1o,9090,The lady throws the pink item on a game board on the floor. She then,The lady throws the pink item on a game board on the floor.,She then,gold,jumps hopscotch and picks up the pink item.,does a list on a table and puts in the bag again.,takes another snow shoe and picks it right back up.,puts her boot in a purple's wooden box.,0\n14822,anetv_V2MlQezL1IE,2878,The video then comes back to the older man who is directing the players. The men,The video then comes back to the older man who is directing the players.,The men,gold,are shown as others pass fence.,continue to ride on the board.,begin tossing a volleyball back and forth.,begin bouncing on the ground like soldiers riding up a barrier and throwing a pinata into a pool.,2\n14823,anetv_V2MlQezL1IE,2877,A simulated screen showing a volleyball court shows while he speaks. The video then,A simulated screen showing a volleyball court shows while he speaks.,The video then,gold,ends with a title screen with credits come around.,shows several reporter playing paintball on the field.,comes back to the older man who is directing the players.,begins to describe different newscaster actions performing various match moves.,2\n14824,anetv_V2MlQezL1IE,2875,The video begins with a title screen. An older man,The video begins with a title screen.,An older man,gold,talks while a woman in purple talks on the now - side screens.,is seen in a gym speaking to the camera while men play volleyball in the background.,finishes laying plaster on the floor of a room with wax on a wood floor and starts painting the wall.,is seen standing in front of the camera as well as the plaster is shown.,1\n14825,anetv_KhAtzEJxz9M,2744,A group of women are moving back and forth in unison. They,A group of women are moving back and forth in unison.,They,gold,\"change positions, marching forward.\",are instructing in a gym or exercise.,spin and walk around the other and continue in jump techniques.,are shown riding around on a city with surfing jockeys.,0\n14826,anetv_KhAtzEJxz9M,2745,\"They change positions, marching forward. Then then\",\"They change positions, marching forward.\",Then then,gold,finishing several dancing swirling battling and landing on the sand.,race the gymnast tapping their hands on the floor as the guard preps their kick.,take the discus as a red flags thrower and a man man appears behind the wave of the shield.,continue doing several aerobic dance moves together.,3\n14827,anetv_KhAtzEJxz9M,15047,The women jump bounce in place before the lyrics of the song starts. When the lyrics start they,The women jump bounce in place before the lyrics of the song starts.,When the lyrics start they,gold,are coming out of the sisters' apartment.,finish their song song.,go into an intricate dance routine that fits with the song.,are finally jumping cymbals to begin a wind and are performing with various locations and waiting in the water.,2\n14828,lsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9579,\"She is hard at work, to music o. s.. Among the members of the sad burlesque audience, he\",\"She is hard at work, to music o. s..\",\"Among the members of the sad burlesque audience, he\",gold,lets her head on his hand.,stops in front of dozens of tall towers with ripped shirts and white ornaments.,is in strong contrast: a sour and aggressive expression.,wears the other levels of his language and talks in it.,2\n14829,lsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9582,Before we see the lettering he slides it into his pocket. A hand,Before we see the lettering he slides it into his pocket.,A hand,gold,stands with a metal pack.,- seen his cast is now a row of moving bicycles.,appears on stage in front of a woman.,descends firmly onto his shoulder.,3\n14830,lsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9584,He glances up behind him as we. He,He glances up behind him as we.,He,gold,shows his father's bottle.,sets them in front of the white trophy's coffin.,bends down and speaks quietly next someone's ear.,\"sets down the hanger, picks it up and checks a display.\",2\n14831,lsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9577,\"He shifts into second gear, climbing a steep little hill. He\",\"He shifts into second gear, climbing a steep little hill.\",He,gold,starts fast and noisily down a steep hill.,passes a window and sits beside him.,\"rises to the bottom of the steps, sitting a hundreds of feet out keys on the tower floor.\",leaps over the bar and into a react - roofed gym.,0\n14832,lsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9581,We move in fast to a head close - up. Before we see the lettering he,We move in fast to a head close - up.,Before we see the lettering he,gold,slides it into his pocket.,seems to be racing.,is struck across above us.,can give and see.,0\n14833,anetv_qumU7AgV3Mk,14889,\"A guy slips, falls on the ice arena, and laughs. A man\",\"A guy slips, falls on the ice arena, and laughs.\",A man,gold,stands with a lot.,in a black shirt gets splashed on the triangle.,picks up someone and holds for another ring.,opens his mouth very wide to show his excitement.,3\n14834,anetv_qumU7AgV3Mk,14888,People interact in a circling ice arena. A lady,People interact in a circling ice arena.,A lady,gold,stands on a rope and blows the whistle.,talks to a group of males.,throws a ball to a pole and hits several pins.,holds the violin while it is slowly dancing and people're sitting behind it watching.,1\n14835,anetv_u_RzyIJi8qc,2511,\"Two men are standing outside with a crowd of people lifting weights and exercising. Many people begin to film the guys on their phone, the weight lifting continues and several people\",Two men are standing outside with a crowd of people lifting weights and exercising.,\"Many people begin to film the guys on their phone, the weight lifting continues and several people\",gold,go down on the mat.,walk around on some high mats.,come back to do interviews.,watch from the uneven set.,2\n14836,anetv_8TGG-FZx0cc,17888,The man stirs the spaghetti in the pot. The man,The man stirs the spaghetti in the pot.,The man,gold,cooks a pan successfully with oil cleaning it cooked in the pan.,drains the spaghetti and rinses it before putting it into a bowl.,puts a chicken on a pot and cuts up some ingredients.,takes the pasta out of the mix and works on it as the man cuts.,1\n14837,anetv_8TGG-FZx0cc,12291,\"There is a pot of boiling water on the stove shown, and then a person picks up a bag of noodles. The person\",\"There is a pot of boiling water on the stove shown, and then a person picks up a bag of noodles.\",The person,gold,flips another large vacuum in front of the spare stumps of lettuce.,gets the noodles out and puts them in the water.,mixes all the ingredients and then holds a cup mug before going into the bowl.,\"mixes the ingredients in the fire, then flattens it clean with a new pan.\",1\n14838,anetv_8TGG-FZx0cc,17887,A person shows us a package of spaghetti then adds the spaghetti to the boiling water. The man,A person shows us a package of spaghetti then adds the spaghetti to the boiling water.,The man,gold,puts the spaghetti in red frosting and stirs the cup in a frying pan.,stirs the spaghetti in the pot.,\"bites the lip with a hose, then he begins to clean a pan.\",peels butter from a cup to blend the eggs.,1\n14839,anetv_8TGG-FZx0cc,12292,They stir the noodles with tongs and instructions are given along the way. Then they,They stir the noodles with tongs and instructions are given along the way.,Then they,gold,are both reading their lines and finishes them off.,put the ingredients into a bowl and add the tongs to a bowl from the oven.,drain the noodles in the sink and scrape the rest off the bottom of the pot.,\"complete the dish, wrap it and put them into the oven.\",2\n14840,anetv_8TGG-FZx0cc,17886,A pot of water boils on a stove. A person,A pot of water boils on a stove.,A person,gold,rinses a piece of vegetables and then picks up pasta.,shows us a package of spaghetti then adds the spaghetti to the boiling water.,cuts lemon through the mixer and pours the vegetables over a pasta pitcher.,\"picks up a bowl of chopped potatoes, turning a pot over the stove.\",1\n14841,lsmdc1042_Up_In_The_Air-88607,7707,They jog up onto the sandy beach. A courtesy bus,They jog up onto the sandy beach.,A courtesy bus,gold,arrives at the trip.,is galloping along another dirt road.,sits outside the base on the towering ridge.,delivers the group to the hotel.,3\n14842,lsmdc1042_Up_In_The_Air-88607,7709,They run into the entrance barefoot. Someone,They run into the entrance barefoot.,Someone,gold,wakes up in bed.,\"disappears, leaving someone behind him.\",jumps out of a car and falls into a ditch.,comes out for the rest of the party toward hogwarts.,0\n14843,lsmdc1042_Up_In_The_Air-88607,7710,\"He looks at her, bleary - eyed. She\",\"He looks at her, bleary - eyed.\",She,gold,hits the radio back and sits asleep before her.,leans down and kisses him.,notices someone watching him with a warm smile.,\"has no answer, but can't believe it.\",1\n14844,lsmdc1042_Up_In_The_Air-88607,7704,All the lights in the yacht go out. People,All the lights in the yacht go out.,People,gold,working on peanuts on the floor.,look someone in the face.,\"walk back up, drinking coffee.\",\"look back towards the city lights, some distance away.\",3\n14845,lsmdc1042_Up_In_The_Air-88607,7708,A courtesy bus delivers the group to the hotel. They,A courtesy bus delivers the group to the hotel.,They,gold,run into the entrance barefoot.,course the tape.,kiss.,arrive outside the motel.,0\n14846,lsmdc1042_Up_In_The_Air-88607,7711,People have breakfast at the hotel's outdoor cafe. They,People have breakfast at the hotel's outdoor cafe.,They,gold,\"are pulling the band band past someone like a ballerina, which she has n't been in yet.\",sit at one of many tables under a blue umbrella.,both proceed to put the lock on the stereo.,pick up the order to leave the someone for a variety of things.,1\n14847,lsmdc1042_Up_In_The_Air-88607,7713,Someone has the photo of people. Someone,Someone has the photo of people.,Someone,gold,picks up a stick.,looks at him through the wall.,stretches curtly as she glances upright.,holds up the photo.,3\n14848,lsmdc1042_Up_In_The_Air-88607,7712,They walk along a pier. Someone,They walk along a pier.,Someone,gold,ends a call to her friend.,has the photo of people.,climbs flat on the ship.,glances toward someone's desk.,1\n14849,lsmdc1042_Up_In_The_Air-88607,7706,Everyone gets a ride back to land in a small pontoon boat. They,Everyone gets a ride back to land in a small pontoon boat.,They,gold,continue fast down the mountain.,hurry it into someone's apartment.,jog up onto the sandy beach.,use a large boat to play a display at the lake shore.,2\n14850,lsmdc1042_Up_In_The_Air-88607,7705,\"People look back towards the city lights, some distance away. Everyone\",\"People look back towards the city lights, some distance away.\",Everyone,gold,gets a ride back to land in a small pontoon boat.,are swirling around a large chasm beyond and only a few small black make - up statues of ominous grand - palace walls.,\"'s black range rover pulls away to reveal someone's house, removing the letters from the floor.\",looks looking up underneath the dome.,0\n14851,lsmdc3092_ZOOKEEPER-45421,1945,\"The van doors open and someone and someone step out to switch places. Later, it\",The van doors open and someone and someone step out to switch places.,\"Later, it\",gold,sits at a concrete barrier where a car arrives.,leaps to the lower part of someone's ship.,\"is a fair, winding road surrounded by lush countryside town.\",cruises down a residential street.,3\n14852,lsmdc3092_ZOOKEEPER-45421,1948,It dead ends in a 15 foot wall. He,It dead ends in a 15 foot wall.,He,gold,follows someone over to the wall.,carries the children in circles.,\"comes home, minas morgul in line.\",flips onto a second plywood panel and places it to his right.,0\n14853,lsmdc3092_ZOOKEEPER-45421,1946,\"Right past her, he heads upstairs. Shane\",\"Right past her, he heads upstairs.\",Shane,gold,keeps his arm out draped over his body.,goes into a living room where someone sleeps on the floor of a belly dancer.,\"knocks someone tray with a red fire extinguisher, as someone walks inside.\",gets up from a computer in his underwear.,3\n14854,lsmdc3092_ZOOKEEPER-45421,1947,Steering wheel turning sharply around a bend. It dead,Steering wheel turning sharply around a bend.,It dead,gold,beaten in front of her.,leaves a small hamper.,twenties and less evenly spaced.,ends in a 15 foot wall.,3\n14855,lsmdc3092_ZOOKEEPER-45421,1944,\"The van rolls out, heads into the road and drives straight into the side of a parked car. The van doors open and someone and someone\",\"The van rolls out, heads into the road and drives straight into the side of a parked car.\",The van doors open and someone and someone,gold,lies in the sanitarium.,step out to switch places.,\"run, pushing a car toward the house.\",lean against each other for a kiss.,1\n14856,anetv_NOxiMgQMeuk,10449,A woman is shown with a paintbrush and a piece of canvas. She,A woman is shown with a paintbrush and a piece of canvas.,She,gold,\"then applies a brush on the bow, then brushes the bottom of a stone.\",talks about drying sections of the hair and then picks the back up with a silver clamp and tightens it up.,pours something onto the paw.,uses green paint to fill in a drawing of a plant.,3\n14857,anetv_NOxiMgQMeuk,10450,She uses green paint to fill in a drawing of a plant. She,She uses green paint to fill in a drawing of a plant.,She,gold,smiles and squats back and forth of a few steps.,\"talks to the camera, creating multiple lines.\",\"goes around in circles, painting the image.\",continues with about the vacuum and rakes down the tree.,2\n14858,anetv_oUQPIZu5bVU,1996,A team groups together holding a trophy. The team,A team groups together holding a trophy.,The team,gold,begins to jump on two rings.,is playing pool as spectators cheer.,\"prepares to be soccer in different places, trying to fight the adults.\",shakes hands with the opposing team.,3\n14859,anetv_oUQPIZu5bVU,1994,Men are playing bagpipes in a line. Players,Men are playing bagpipes in a line.,Players,gold,are running around on the field playing sports.,are around the court watching a game and play the arena.,leave a wooden court on a wooden court.,play rock paper scissors.,0\n14860,anetv_oUQPIZu5bVU,1995,Players are running around on the field playing sports. A team,Players are running around on the field playing sports.,A team,gold,is leading a group of men playing lacrosse.,groups together holding a trophy.,takes chalk on a field of volleyball.,is holding the basketball in a casino taking its progress.,1\n14861,lsmdc3071_THE_DESCENDANTS-5603,11833,\"A wide, low - limbed tree shades our view. The sun\",\"A wide, low - limbed tree shades our view.\",The sun,gold,shines down on the riverbed and strands of passing and cliffs.,is ripped across the sky.,\"shines down a spiral of dust, which is illuminated from a soft, grey wood.\",sets behind the watery horizon as the foursome continues along the shore toward a distant resort.,3\n14862,anetv_FpxVS1Xpl1U,13865,Man and woman are talking and presenting the man that walks by the pool. man,Man and woman are talking and presenting the man that walks by the pool.,man,gold,is weightlifting and doing a big jump from a trampoline and talking to the camera.,is behind a counter talking to the camera.,is holding a white bowl covered in a mixing cup.,is sitting in two green chairs on a mower to grab the side of the man.,0\n14863,anetv_FpxVS1Xpl1U,13870,Woman is impressed siting by the pool and have her hands on her face. presentator,Woman is impressed siting by the pool and have her hands on her face.,presentator,gold,etched on her face.,\", woman is seen in the pool.\",is interviewing the man.,starts to catapult the big fish into the woman's chest.,2\n14864,anetv_FpxVS1Xpl1U,13866,Man is weightlifting and doing a big jump from a trampoline and talking to the camera. a big platfom is shown and a man,Man is weightlifting and doing a big jump from a trampoline and talking to the camera.,a big platfom is shown and a man,gold,talks to a pedal in the middle of a small room.,talks to a boy that dressed for a snapshot.,is seated at the edge in the room throwing tiles on a rack.,is being interviewed by a woman in top of trampoline.,3\n14865,anetv_FpxVS1Xpl1U,13867,A big platfom is shown and a man is being interviewed by a woman in top of trampoline. woman in audience,A big platfom is shown and a man is being interviewed by a woman in top of trampoline.,woman in audience,gold,is screaming and throwing kisses.,is then shown celebrating the event.,is standing around him talking to the camera.,hold up a beer and start dancing together.,0\n14866,anetv_FpxVS1Xpl1U,13864,People are sitting in chairs in pool. man and woman,People are sitting in chairs in pool.,man and woman,gold,wearing a pink shirt pull a towel from an unfinished room where a group of people are sitting.,are in a gym kicking a tennis ball with a ball.,interview a woman on a field mixing some into a cup.,are talking and presenting the man that walks by the pool.,3\n14867,anetv_FpxVS1Xpl1U,13868,Woman in audience is screaming and throwing kisses. man,Woman in audience is screaming and throwing kisses.,man,gold,is on the 10 m trampoline and make a hand stand to make the jump to the pool.,is putting helper on his face with fake nails.,is holding a mouthwash and washing her face.,is in a bra wearing a boxing outfit in a gym.,0\n14868,anetv_hKezMv52Nw8,3228,\"After, she walks off and her jump is measures as they show her replay. After, more girls begin to jump and represent their team and their jumps\",\"After, she walks off and her jump is measures as they show her replay.\",\"After, more girls begin to jump and represent their team and their jumps\",gold,continue to take and flipping and flipping fiving.,are measured as well.,wide also as they go down to a dirt track.,is shown again in slow motion.,1\n14869,anetv_hKezMv52Nw8,3227,\"A female athlete is standing in a field and takes off running and does a long jump in to the pit. After, she walks off and her jump\",A female athlete is standing in a field and takes off running and does a long jump in to the pit.,\"After, she walks off and her jump\",gold,is shown stretching on the floor with her tools.,is measures as they show her replay.,turning and jumping several times.,is shown again hitting the background.,1\n14870,anetv_cCqjsuJa2vk,15119,A female is standing in a gym with a black dress that has sparkles and a pink trim on the bottom beginning to perform. She,A female is standing in a gym with a black dress that has sparkles and a pink trim on the bottom beginning to perform.,She,gold,takes the pencil and begins running to the surface of the woman sitting on the floor.,\"walks off to the floor, does a final exercise, and puts his feet in the air.\",throws the baton in the air and starts moving around the floor with it.,grabs some shoes of her sneakers and pushes her hair down.,2\n14871,anetv_cCqjsuJa2vk,15120,\"She throws the baton in the air and starts moving around the floor with it. During her performance, she\",She throws the baton in the air and starts moving around the floor with it.,\"During her performance, she\",gold,does a series of kicks and flips while tossing the baton in the air and catching it.,quickly does some back flips and jumps.,raises her hand to show how to turn the hula hoop up.,begins to jump to talk to the camera once more.,0\n14872,anetv_cCqjsuJa2vk,8297,A woman is dancing on a hardwood floor holding a baton. She,A woman is dancing on a hardwood floor holding a baton.,She,gold,throws the baton down in front of her.,starts twirling the baton.,throws her baton in the air.,\"joins in and clips her head, then assassin spots a pose on the stage and dances and turns to two participants.\",1\n14873,anetv_cCqjsuJa2vk,8298,She starts twirling the baton. She,She starts twirling the baton.,She,gold,drops two flips preparing to make another performance.,shows a low - moving girl with the horse watching her.,drops the baton into the hoop.,does a cart wheel during her routine.,3\n14874,lsmdc0023_THE_BUTTERFLY_EFFECT-59548,9723,\"At that moment, someone passes someone in the lobby. Someone\",\"At that moment, someone passes someone in the lobby.\",Someone,gold,\"walks away, leaving someone dumbfounded.\",\"leans over his head and rubs at his fist, then gazes up at someone's gaunt face.\",cleans the pot from a smooth corridor below.,stops with his back to the lectern.,0\n14875,lsmdc0023_THE_BUTTERFLY_EFFECT-59548,9722,\"Someone hangs up the phone, then checks his watch. At that moment, someone\",\"Someone hangs up the phone, then checks his watch.\",\"At that moment, someone\",gold,freezes in an office.,passes someone in the lobby.,reads the big screen.,\"steps out, regards someone a moment, then stares.\",1\n14876,lsmdc0023_THE_BUTTERFLY_EFFECT-59548,9721,Someone inserts his last quarter into the lobby pay phone and dials a telephone number. Someone,Someone inserts his last quarter into the lobby pay phone and dials a telephone number.,Someone,gold,\"pauses, letting the phone glide down over his shoulders and glances at the concert.\",hurries over to the man leaving the room with his father high behind.,reaches over to the ipod and opens it to show someone inside.,\"hangs up the phone, then checks his watch.\",3\n14877,lsmdc0023_THE_BUTTERFLY_EFFECT-59548,9720,\"After a moment of wow, someone runs off to class himself. Someone\",\"After a moment of wow, someone runs off to class himself.\",Someone,gold,turns to the mezzanine and searches a case of toiletries.,\"motions for someone to follow him, moving across the six - office staircase from the opposite direction.\",inserts his last quarter into the lobby pay phone and dials a telephone number.,put up.,2\n14878,lsmdc0023_THE_BUTTERFLY_EFFECT-59548,9719,\"Someone gives him a big unexpected kiss and walks away. After a moment of wow, someone\",Someone gives him a big unexpected kiss and walks away.,\"After a moment of wow, someone\",gold,slips under grated partition.,stands and walks back toward the camera again and heads straight toward the window.,pinches her nose and swallows it.,runs off to class himself.,3\n14879,anetv_p74gAY-kWaY,15924,A woman is seen standing beside a girl sitting down brushing her hair. A boy,A woman is seen standing beside a girl sitting down brushing her hair.,A boy,gold,wanders around on the ice while speaking.,walks up next to her and leads her into a wandering class.,uses a brush to pull his curls out of her hair.,watches on the side as the woman continues to brush the hair.,3\n14880,anetv_p74gAY-kWaY,15925,A boy watches on the side as the woman continues to brush the hair. The woman,A boy watches on the side as the woman continues to brush the hair.,The woman,gold,grabs some ribbon and the braid around her cheek ans looking and frown.,continues cleaning the ladder while the camera pans around.,\"slides the tongue gently down one, while commentators watch closely.\",speaks to the girl while running the brush all over her hair.,3\n14881,anetv_ILIpCfCWyT0,15921,People are skateboarding down a street. A person,People are skateboarding down a street.,A person,gold,is painting a dead woman's fingernails.,is standing in front of a scraping camera.,is riding a blue bicycle.,\"is spinning on a skateboard in street, passing a car stereo.\",2\n14882,anetv_ILIpCfCWyT0,8118,Skaters are skateboarding during the day. Now the same skaters,Skaters are skateboarding during the day.,Now the same skaters,gold,\"are shown jumping off their bikes, doing a low jump.\",are stopped in a different aisle.,are skating during he night time.,are deeply interviewed for a whole event.,2\n14883,anetv_ILIpCfCWyT0,15922,A person is riding a blue bicycle. People,A person is riding a blue bicycle.,People,gold,are doing tricks on a skateboard.,are sitting in rafts at a high table.,are sitting inside the car.,start running down the street.,0\n14884,anetv_cwQQj3VZLC8,19523,He salutes the large applauding audience. Another man,He salutes the large applauding audience.,Another man,gold,shouts into the audience.,walks by while holding the microphone down towards the boy.,is interviewed with his end clips from the microphone.,waits on the start line before accelerating into the long jump.,3\n14885,anetv_cwQQj3VZLC8,19526,Another man waits on the start line before running into a longjump. He,Another man waits on the start line before running into a longjump.,He,gold,removes a third arrow.,obstacles briefly by the skate park down the street.,\"walks towards the back, switches off a piece of tape, then slows.\",waves to the appreciative crowd and runs away smiling and celebrating.,3\n14886,anetv_cwQQj3VZLC8,19522,He takes off running and does a long jump. He,He takes off running and does a long jump.,He,gold,dismounts and lands on the mat with the jump.,flips off the flip beam and slides around the bars.,runs down a track into the air.,salutes the large applauding audience.,3\n14887,anetv_cwQQj3VZLC8,19521,\"A man is standing at the start line clapping his hands, people look on. He\",\"A man is standing at the start line clapping his hands, people look on.\",He,gold,passes the camera for more tickets and pay attention.,takes off running and does a long jump.,smiles and claps his hands over his hips.,\"sits and talks after the video, ending in credits in slow motion.\",1\n14888,anetv_cwQQj3VZLC8,19524,Another man waits on the start line before accelerating into the long jump. He,Another man waits on the start line before accelerating into the long jump.,He,gold,towers again and raises the flag first.,lifts up the rope and lands on the sand in the sand.,is getting up while he moves himself up and down.,looks to the crowd who are subdued.,3\n14889,anetv_SrcZRhXkr2k,2120,Two people play a game of indoor racquetball. A player,Two people play a game of indoor racquetball.,A player,gold,dodges backwards from the ball.,\"enters the car, then enters a room.\",leads a chainsaw down a few steps.,wearing a tank top holds his hands over a course to make balls.,0\n14890,anetv_SrcZRhXkr2k,17144,\"A man and woman are standing in a racketball room and attempt on taking turns hitting the racketball very hard, but the woman is dominating every chance. The woman\",\"A man and woman are standing in a racketball room and attempt on taking turns hitting the racketball very hard, but the woman is dominating every chance.\",The woman,gold,then finished a nail and starts to explain that she is dancing.,swings the racket and almost hits the man in his face with her fast flying racket.,is holding a flute while the woman is playing with a jump from her right hand to the balance.,is plastering with an mop while everyone moves it numerous times before the girl is sitting.,1\n14891,anetv_SrcZRhXkr2k,2121,A player dodges backwards from the ball. The player,A player dodges backwards from the ball.,The player,gold,runs after the puck.,falls over and serves some overhand balls.,presses a yellow ball.,slides across the floor to recover the ball.,3\n14892,anetv_SrcZRhXkr2k,17145,\"The man reaches his hand out, shakes the woman's hand, and gives her a side hug while they both walk towards the door to exit the room. The woman exits first, removes her glasses and smiles, and the man\",\"The man reaches his hand out, shakes the woman's hand, and gives her a side hug while they both walk towards the door to exit the room.\",\"The woman exits first, removes her glasses and smiles, and the man\",gold,closes her eyes and tears off her shirt.,\"drops her glasses, pumps the mouthful of the toast in front of her and takes a seat behind her.\",is walking right behind her and removes his glasses while looking down.,spreads reception a little toward the window.,2\n14893,anetv_qCnHgcP3tM8,4808,\"Cars are driving down the highway fairly quickly. They stop, a man\",Cars are driving down the highway fairly quickly.,\"They stop, a man\",gold,\"is swings at the street, and dark dinette are going over hills.\",shines from women's outdoor structure.,gets out and helps two women get out.,is gaining on the child.,2\n14894,anetv_qCnHgcP3tM8,4809,\"They stop, a man gets out and helps two women get out. They\",\"They stop, a man gets out and helps two women get out.\",They,gold,go into a bar and throw a ball into a girls drink starting a beer pong war.,move together on a stretcher and try to keep them from each other.,walk on an others sidewalk and lift their arms over their heads.,\"are there, waiting for her to act the first ones.\",0\n14895,anetv_qCnHgcP3tM8,4810,They go into a bar and throw a ball into a girls drink starting a beer pong war. He,They go into a bar and throw a ball into a girls drink starting a beer pong war.,He,gold,\"are strong, but unable to pull the ball out of the hoop.\",checks the nails and sends another person across the field.,wakes up in his dorm and then click on his ipad to start a beer pong championship.,instant picture of the bowling ball is shown followed by a player up shown throwing someone into the pool and back in two brushes.,2\n14896,anetv_IZCzbslH8jo,9834,A woman is on a court playing with a stick. She,A woman is on a court playing with a stick.,She,gold,plays around while taking the stone out of the court.,\"blows a ball down the field, hits it hard.\",kicks the ball and hits them.,hits a ball on the court.,3\n14897,anetv_IZCzbslH8jo,9835,She hits a ball on the court. She,She hits a ball on the court.,She,gold,demonstrates how to swing and hit the ball.,throws the ball over a net and hits it.,hits it on the lane and raises her beer in victory.,pulls off the hem of her jeans.,0\n14898,anetv_4ivePL3RW0Q,17274,\"A title slide is then shown, and then shows several ingredients used in a recipe for cookies. The video then\",\"A title slide is then shown, and then shows several ingredients used in a recipe for cookies.\",The video then,gold,shows the man emptying a slice of cake.,shows a image of women wearing different colors.,makes one gift taped off the bread and results are displayed.,shows the two boys mixing ingredients together.,3\n14899,anetv_4ivePL3RW0Q,17275,The video then shows the two boys mixing ingredients together. They,The video then shows the two boys mixing ingredients together.,They,gold,michelle solo names appears on screen.,mix alcoholic drinks are shown being formed.,the game begins with the capture.,roll the dough into balls and place them into an oven.,3\n14900,anetv_4ivePL3RW0Q,17276,They roll the dough into balls and place them into an oven. The boys,They roll the dough into balls and place them into an oven.,The boys,gold,start cutting the cookies to make the cookies.,try to change sides but pile them on the ground.,stand up and rub the balls together.,take the cookies out of the oven and begin eating them.,3\n14901,anetv_TZ5Vd9eL5WA,12677,A man moves a glass bowl off the counter. A woman,A man moves a glass bowl off the counter.,A woman,gold,throws him another glass of ice.,falls onto the ledge of a large red bucket.,begins chopping a tomato on a board.,pours the cup at her and clamps it in her mouth.,2\n14902,anetv_TZ5Vd9eL5WA,12676,Two people are standing in a kitchen. A man,Two people are standing in a kitchen.,A man,gold,is mixing the ingredients into a bowl.,sits holding a knife.,is kneeling down and mixing making sandwiches.,moves a glass bowl off the counter.,3\n14903,anetv_3SjuIcAfeWk,1782,The woman hold the center of the plastic. The woman,The woman hold the center of the plastic.,The woman,gold,positions the carpet with a squeegee.,\"puts the woman's fingers in the cutting pin, and the woman puts the black dot on the finger.\",uses a piece of steel on the rope.,tied the ribbon on the wrapper and cut the excess ribbon.,3\n14904,anetv_3SjuIcAfeWk,16665,She uses plastic wrap to wrap around the vase. She then,She uses plastic wrap to wrap around the vase.,She then,gold,sets the new package down and settles against it.,ties a pretty bow around the top.,opens the baby's folded legs.,puts the wallpaper to the wall.,1\n14905,anetv_3SjuIcAfeWk,16664,A woman is standing in front of a vase on a table. She,A woman is standing in front of a vase on a table.,She,gold,puts the bottle on the blue table and stirs.,is facing the camera in front of her.,talks and mixing the ingredients in a bowl.,uses plastic wrap to wrap around the vase.,3\n14906,anetv_3SjuIcAfeWk,1781,The woman is covering the vase with a clear plastic. The woman,The woman is covering the vase with a clear plastic.,The woman,gold,grab the dollars to blow paper in a piece of paper paper.,sprays the hoop up and talks to saran wrap.,uses the sprayer to remove boiling oil.,hold the center of the plastic.,3\n14907,lsmdc1060_Yes_man-99072,12388,A guy walks onto the stage. He,A guy walks onto the stage.,He,gold,\"guy under an orange jacket catches, claps.\",is slightly at the table by a pool.,plays with a heavy black instrument.,is around 60 and tanned with white hair.,3\n14908,lsmdc1060_Yes_man-99072,12389,He is around 60 and tanned with white hair. He,He is around 60 and tanned with white hair.,He,gold,takes the store back up through his open window.,smiles at his adoring fans.,notices bottles of powder from the window rack.,\"is thoroughly shaved, rubbing alcohol.\",1\n14909,lsmdc1060_Yes_man-99072,12390,Even someone smiles and claps. Someone,Even someone smiles and claps.,Someone,gold,is aware of the kicks.,gives someone a nod.,holds up his hand expectantly and then nods knowingly.,switches off the tv.,2\n14910,lsmdc1060_Yes_man-99072,12387,Someone jumps out of his skin. A guy,Someone jumps out of his skin.,A guy,gold,rides a rope in a cruise boat.,secures a gold ring on the base.,dodges a rope stuck to his arm.,walks onto the stage.,3\n14911,anetv_bCtiTOEf9KI,2160,She is exercising on a hardwood floor in the gym. She,She is exercising on a hardwood floor in the gym.,She,gold,jumps into shelter as she performs a break dance routine.,talks with the trainer for a while.,is talking to the camera again.,continues doing her stomach crunches.,3\n14912,anetv_bCtiTOEf9KI,2159,A woman dressed in a black tank top and black tights is doing stomach crunches on a mat. She,A woman dressed in a black tank top and black tights is doing stomach crunches on a mat.,She,gold,does a little exercise on a pair of uneven bars.,takes the dumbbells while her body is around in the air.,is exercising on a hardwood floor in the gym.,begins to lay carpet on a hardwood floor.,2\n14913,anetv_UvuXGKesWS0,2604,The same man swims backstroke down the lane from where he came. The words BreastStroke,The same man swims backstroke down the lane from where he came.,The words BreastStroke,gold,show up on the screen.,appear in the sky left.,is to be using as they applaud.,is shown to see them appear in different instant.,0\n14914,anetv_UvuXGKesWS0,2603,The words BackStroke Style float across the screen. The same man,The words BackStroke Style float across the screen.,The same man,gold,sat forward and collect using his drinks using a spoon.,is seen sitting before a fire with several legs and flipping around.,is seen speaking to the camera and holds up various tools of equipment from his wrist while adding hands.,swims backstroke down the lane from where he came.,3\n14915,anetv_UvuXGKesWS0,2602,A man jumps in the pool and swims freestyle. The words BackStroke Style,A man jumps in the pool and swims freestyle.,The words BackStroke Style,gold,is mixed in the water.,traverses pool with the goalie through the goal.,strike makes from time to time.,float across the screen.,3\n14916,anetv_UvuXGKesWS0,2601,The words Freestyle Swimming float across the screen. A man,The words Freestyle Swimming float across the screen.,A man,gold,bounces into a pathway and pulls himself up into the water.,netted a white arrow and hits a red ring on his face.,gives a thumbs up and then a man wearing a white uniform dances on a stage in front of a crowd.,jumps in the pool and swims freestyle.,3\n14917,anetv_UvuXGKesWS0,2605,The words BreastStroke show up on the screen. The man,The words BreastStroke show up on the screen.,The man,gold,is showing how to remove pastries in young positions.,points a scale on his shirt.,beats up a button in a shirt.,does the breaststroke back across the pool.,3\n14918,anetv_eMkBTRYwBAU,5223,A man in ski jacket on a snowboard holds onto a rope attached to a truck. The truck starts driving and the man,A man in ski jacket on a snowboard holds onto a rope attached to a truck.,The truck starts driving and the man,gold,is pulled behind on the tow rope.,takes a ski area off of the skier.,gets off a black staircase and gets back on the train.,begins to ski around going downhill.,0\n14919,anetv_eMkBTRYwBAU,5224,The truck starts driving and the man is pulled behind on the tow rope. The man,The truck starts driving and the man is pulled behind on the tow rope.,The man,gold,\"is pulled off the cord, going out of the water to take off the helmet.\",puts a different round and gets in the bike.,goes to the car and starts loading down steep steep steep ramps.,maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck.,3\n14920,anetv_eMkBTRYwBAU,5225,The man maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck. The man,The man maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck.,The man,gold,slows down before he lets go of the tow rope and comes to a stop.,leans over the man and then using a pair of legs together and ending by pushing it down and speaking.,continues to ride the bike to the end of the bike and sees the closing credits.,continues to ride the other machine up around a plant and it breaks after the guy falls to the ground.,0\n14921,lsmdc0013_Halloween-54099,1285,Someone moves to the head of the staircase. Slowly someone,Someone moves to the head of the staircase.,Slowly someone,gold,raises his hands and presses his palms together.,starts up the staircase.,takes his gun out of the network and closes it.,\"pauses, his hand clasped around his head.\",1\n14922,anetv_-1IlTIWPNs4,4753,A cameraman walks down a snowy driveway to capture a young child shoveling up snow. The boy,A cameraman walks down a snowy driveway to capture a young child shoveling up snow.,The boy,gold,speaks into the camera and continues pushing the snow around with a shovel.,mows the grass bordering the yard using the machine to shovel the dirt with it.,ride a orange mower along a paved slope.,walks outside and comes down the hill and starts talking to the camera.,0\n14923,anetv_b1PAqOmflgI,15069,A boy in a blue t - shirt bounces two basketballs in a gym while blocking another basketball player and making a goal with the ball. A boy,A boy in a blue t - shirt bounces two basketballs in a gym while blocking another basketball player and making a goal with the ball.,A boy,gold,swims in a line of pool balls.,lets go of a club and shoots the ball into the field.,bounces two basketballs between his legs.,throws crochet on the shore of an art made then becomes more filled with a teenager celebrating.,2\n14924,anetv_b1PAqOmflgI,15071,Another basketball player approaches him and tries to take the ball from him. The player in the blue shirt,Another basketball player approaches him and tries to take the ball from him.,The player in the blue shirt,gold,\"blocks him and makes the goal, and then proceeds to do it again, twice.\",hits the ball again several times as it hits a dartboard and lands on each other just behind.,runs back at the player.,takes the ball and throws it at the man.,0\n14925,anetv_b1PAqOmflgI,15070,A boy bounces two basketballs between his legs. Another basketball player,A boy bounces two basketballs between his legs.,Another basketball player,gold,comes in and takes a ring on it and throws it down.,hits a wooden ball.,approaches him and tries to take the ball from him.,narrows his eyes and fully the balls in return.,2\n14926,lsmdc1045_An_education-90275,909,Someone eyes her husband reproachfully. Someone,Someone eyes her husband reproachfully.,Someone,gold,shakes someone's hand.,rushes past someone and someone.,smiles broadly and claps her foot.,gazes towards her bra.,0\n14927,lsmdc1045_An_education-90275,907,Someone opens the door for her. They,Someone opens the door for her.,They,gold,\"wait a moment, while now other door is opened in closed crates.\",stop at a doorway and gaze at this warily.,drive off into the london twilight.,push the door shut and smile.,2\n14928,lsmdc1045_An_education-90275,905,People leave someone's place. They,People leave someone's place.,They,gold,return their attention to people.,head for the car.,continues with the class together without alarmed.,\"climb onto the train, concerned.\",1\n14929,lsmdc1045_An_education-90275,908,They drive off into the London twilight. Someone,They drive off into the London twilight.,Someone,gold,eyes her husband reproachfully.,shuts the door on the car.,is.,heads after the plane.,0\n14930,lsmdc1045_An_education-90275,913,The attendant pumps the fuel. Someone,The attendant pumps the fuel.,Someone,gold,drops a second rope on the ruined bottom.,trips on a bottom.,goes into the shop of the village garage.,reaches around and points to the quidditch form missing two stacks.,2\n14931,lsmdc1045_An_education-90275,906,They head for the car. Someone,They head for the car.,Someone,gold,opens the door for her.,pulls up inside someone's office.,looks around the crate seemingly until its empty.,misses the gap and run inside.,0\n14932,lsmdc1045_An_education-90275,912,They hit for town in the gathering twilight. They,They hit for town in the gathering twilight.,They,gold,look at the rear of the boat.,stop off at the petrol station.,can 1 person on the board.,\"pass over the shelf as they land near a large, open tree.\",1\n14933,lsmdc1045_An_education-90275,914,Someone goes into the shop of the village garage. Someone,Someone goes into the shop of the village garage.,Someone,gold,hikes toward a hill full of buildings and shrubs.,reaches into the glove box for the cigarettes.,\"draws the handle frame, takes out a long left trigger and smells it in a square ring, then releases someone.\",arrives sporting a bungee rope.,1\n14934,anetv_GffGGAwbcHo,11326,A hippie dog lies down on the floor and seems to be hallucinating. Dogs and spacecraft,A hippie dog lies down on the floor and seems to be hallucinating.,Dogs and spacecraft,gold,is seen watering tails into a car.,are seen exploring space.,gazes as they peer amongst side of the grave.,rains down all around the yard and tools of the welding safety is shown on the screen.,1\n14935,anetv_GffGGAwbcHo,11325,A cowboy walks his dog and is shot outside a saloon. Chaplin,A cowboy walks his dog and is shot outside a saloon.,Chaplin,gold,is up over the sink.,is seen walking his dog.,stands tall and places them in the oven.,small sedan is shown into the ghetto.,1\n14936,anetv_GffGGAwbcHo,11324,A God walks a poodle. A cowboy,A God walks a poodle.,A cowboy,gold,runs down a ladies court.,takes a loose suit from her harness.,pushes it off the border of his motorcycle.,walks his dog and is shot outside a saloon.,3\n14937,anetv_o8-v0rPP06U,2704,A man scores a goal and leads into more clips of people scoring goals. Team mates,A man scores a goal and leads into more clips of people scoring goals.,Team mates,gold,celebrate as more goals are shown in different clips of soccer matches.,are shown followed by cards and men making out into the goal.,are shown while sitting on the sideline as well as running goals.,run up and down the field throwing balls to the camera.,0\n14938,anetv_o8-v0rPP06U,2703,A man is seen walking around and leads into people playing soccer. A man,A man is seen walking around and leads into people playing soccer.,A man,gold,walks next to the older man and instructs.,is performing putting his shoes in the back.,is seen playing a fencing paintball game while the camera zooms in on his score.,scores a goal and leads into more clips of people scoring goals.,3\n14939,anetv_qNxLTF4Q6yk,8262,He is playing a guitar beside a case. A small crowd,He is playing a guitar beside a case.,A small crowd,gold,watches them as he plays and uses drums.,is listening as he plays.,watches as he running towards it.,plays and plays music with the band and his guitar.,1\n14940,anetv_qNxLTF4Q6yk,8261,A man is seated on a platform outside. He,A man is seated on a platform outside.,He,gold,holds a white briefcase under his hand and lays it on his shoulder and knees.,acknowledges a large crowd and shows a text on display.,stands up in the middle of the screen upside down.,is playing a guitar beside a case.,3\n14941,anetv_qNxLTF4Q6yk,7599,A man is sitting on a chair in front of a store playing a guitar like a drum while people is walking in front of him. a couple,A man is sitting on a chair in front of a store playing a guitar like a drum while people is walking in front of him.,a couple,gold,is playing the drum set in turn.,are talking in front of the store and drinking water.,of boys are playing a game of lacrosse.,attempts to play a harmonica.,1\n14942,anetv_nMK_jVy5ZuI,16198,More people are shown running down the track performing impressive jumps as well as celebrating afterwards. Several clips,More people are shown running down the track performing impressive jumps as well as celebrating afterwards.,Several clips,gold,are then shown of the men riding down the track.,are shown of people riding along a track and performing tricks with several people.,are shown of many other surfers running back and forth as people continue to ride around.,are shown of athletes running down the track as well as jumping over beams and waving to the audience.,3\n14943,anetv_nMK_jVy5ZuI,16197,Several clips are shown of athletes running down a large track into a pit of sand. More people,Several clips are shown of athletes running down a large track into a pit of sand.,More people,gold,are shown riding down a track as well as fenced and swimming around.,are seen dancing on their faces.,are then seen standing on the water jumping on the volleyball many more afterwards.,are shown running down the track performing impressive jumps as well as celebrating afterwards.,3\n14944,lsmdc3061_SNOW_FLOWER-29914,4463,\"Someone joyfully clasps her hands around her friend's. Now, they each\",Someone joyfully clasps her hands around her friend's.,\"Now, they each\",gold,add a fresh stick of incense to a pot filled with the smoldering tokens.,have a snack and shake hands.,gets up a trapeze.,hold the empty jigger of pills.,0\n14945,lsmdc3061_SNOW_FLOWER-29914,4462,\"As someone returns to the gate, a woman approaches someone. Someone\",\"As someone returns to the gate, a woman approaches someone.\",Someone,gold,put lipstick on the woman's lips.,joyfully clasps her hands around her friend's.,grabs a coat from her hand.,sets down his bag and lingers near the door.,1\n14946,lsmdc3061_SNOW_FLOWER-29914,4455,\"She places someone's hands around it. Clutching the fan to her chest, she\",She places someone's hands around it.,\"Clutching the fan to her chest, she\",gold,shows a merry saber.,\"cautiously glances around, then hurries off down the hall.\",tensely boards the front of the protester moving her head to open notes.,gazes at a portrait of sister on the piano in park.,1\n14947,lsmdc3061_SNOW_FLOWER-29914,4465,\"Her head hung low, someone nods morosely. Someone\",\"Her head hung low, someone nods morosely.\",Someone,gold,\"leans close to someone, smiles fondly and shakes his eyes.\",\"hangs up and walks along the street, past the offscreen guests.\",lifts her eyes to her laotong's calm face and twitches a tender smile.,arrives through a tall doorway with some sitting beside him.,2\n14948,lsmdc3061_SNOW_FLOWER-29914,4454,Someone slides the folded fan out from her sleeve. She,Someone slides the folded fan out from her sleeve.,She,gold,\"throws it down as someone gets up, and stares at it.\",places someone's hands around it.,hands him the keys.,glances around and sees someone suddenly standing bent over the couch.,1\n14949,lsmdc3061_SNOW_FLOWER-29914,4447,\"The light casts a pale glow on her delicate face. Now, someone\",The light casts a pale glow on her delicate face.,\"Now, someone\",gold,\"picks someone before her, carries her into the world's dessert.\",opens a jewelry box drawer and takes out a paper fan.,places a dress tucked in her neck.,drives another vehicle across the wooded property.,1\n14950,lsmdc3061_SNOW_FLOWER-29914,4444,\"Someone notices a projection on a wall. Moving closer to the bright panel, she\",Someone notices a projection on a wall.,\"Moving closer to the bright panel, she\",gold,sees rows of chinese characters.,films two birds hiking wide rocks as they cross the concert.,looks up as the bell in tail splits colorful boxes.,charges bedside doors down to the unicorn with the knife.,0\n14951,lsmdc3061_SNOW_FLOWER-29914,4467,\"Now, a door closes someone into a room. Someone\",\"Now, a door closes someone into a room.\",Someone,gold,walks into the house.,sits drinking at the coffee maker.,carries a duffel bag with an expensive bouquet in print.,sinks to her knees.,3\n14952,lsmdc3061_SNOW_FLOWER-29914,4453,A servant girl rushes over. Someone,A servant girl rushes over.,Someone,gold,slides the folded fan out from her sleeve.,grabs someone by the lapel.,comes out of the front door and finds herself full of breakfast.,smacks the stuffed clown carefully.,0\n14953,lsmdc3061_SNOW_FLOWER-29914,4448,\"Now, someone opens a jewelry box drawer and takes out a paper fan. Later, she\",\"Now, someone opens a jewelry box drawer and takes out a paper fan.\",\"Later, she\",gold,\"sits hunched under a very large, black carpet.\",sits at a table and writes on it.,places a black canvas over its ornate marked run.,\"crosses to the kitchen smaller panel where two savings check a black box with one soldier, clutching a broken heart.\",1\n14954,lsmdc3061_SNOW_FLOWER-29914,4451,Her mother - in - law's eyes remain on her stitching. Someone,Her mother - in - law's eyes remain on her stitching.,Someone,gold,drives down a hallway.,regains her composure and raised her stool on to her dorm.,\"steps into the room, then continues searching.\",\"blinks, then averts her heartbroken gaze.\",3\n14955,lsmdc3061_SNOW_FLOWER-29914,4459,\"Hurrying to a sedan chair, she takes someone's arm as the woman exits the litter. A porter\",\"Hurrying to a sedan chair, she takes someone's arm as the woman exits the litter.\",A porter,gold,pulls someone out of the room.,\"tilts it forward, allowing her to step over the wooden rails in front.\",pushes the naked child into a booth.,has been taken on a rack before the seats of a campaign bus.,1\n14956,lsmdc3061_SNOW_FLOWER-29914,4456,\"Clutching the fan to her chest, she cautiously glances around, then hurries off down the hall. Someone\",\"Clutching the fan to her chest, she cautiously glances around, then hurries off down the hall.\",Someone,gold,throws her head against a wall.,\"watches her disappear down a staircase, then turns her look.\",crawls around the room.,walks over to the envelope and finds it on a cardboard box.,1\n14957,lsmdc3061_SNOW_FLOWER-29914,4450,\"Spreading open the fan, someone reads her friend's message. Now, someone's mother - in - law\",\"Spreading open the fan, someone reads her friend's message.\",\"Now, someone's mother - in - law\",gold,\", the security soldiers run from the cargo bus.\",\", stares nervously at the cake.\",mows the park's garden.,sits at the head of the table of a group of women doing embroidery work.,3\n14958,lsmdc3061_SNOW_FLOWER-29914,4457,\"Someone watches her disappear down a staircase, then turns her look. Now, someone\",\"Someone watches her disappear down a staircase, then turns her look.\",\"Now, someone\",gold,finds herself alone on a crowded floor with a small.,sleeps in her room.,pushes open a gate's wooden doors.,\"and someone sit by someone, who's busy at his pendulum.\",2\n14959,lsmdc3061_SNOW_FLOWER-29914,4458,\"Now, someone pushes open a gate's wooden doors. Hurrying to a sedan chair, she\",\"Now, someone pushes open a gate's wooden doors.\",\"Hurrying to a sedan chair, she\",gold,takes someone's arm as the woman exits the litter.,pauses as he gazes across the street.,puts a orange bomb on to her desk.,\"drops out onto ticket window, squinting as they approach.\",0\n14960,lsmdc3061_SNOW_FLOWER-29914,4469,\"With an anguished look, she peers through a crack, then slumps against the thick wooden door. In the present, as someone sits asleep with her head propped against a wall, a female hand\",\"With an anguished look, she peers through a crack, then slumps against the thick wooden door.\",\"In the present, as someone sits asleep with her head propped against a wall, a female hand\",gold,passes a travel book.,sinks as otters eat alongside the apartment.,reaches out and gently brushes her long bangs from her face then taps her shoulder.,stands in the middle of the room.,2\n14961,lsmdc3061_SNOW_FLOWER-29914,4445,\"Moving closer to the bright panel, she sees rows of Chinese characters. Someone\",\"Moving closer to the bright panel, she sees rows of Chinese characters.\",Someone,gold,makes their way across the pool.,shakes a pair of magazines from the table.,waling up on a balcony overlooking a street and addresses the la.,gazes at the projection.,3\n14962,lsmdc3061_SNOW_FLOWER-29914,4446,Someone gazes at the projection. The light,Someone gazes at the projection.,The light,gold,casts a pale glow on her delicate face.,glows and flaps back.,has almost knocked someone out of someone's dementor.,\"crosses the room and catches sight of him, smiling.\",0\n14963,lsmdc3061_SNOW_FLOWER-29914,4470,\"In the present, as someone sits asleep with her head propped against a wall, a female hand reaches out and gently brushes her long bangs from her face then taps her shoulder. Someone\",\"In the present, as someone sits asleep with her head propped against a wall, a female hand reaches out and gently brushes her long bangs from her face then taps her shoulder.\",Someone,gold,\"tapping her hat, someone turns and walks out of the room.\",wakes and looks up at the visitor.,\"enters from the bathroom, closing his eyes.\",clenches her lips ecstatically.,1\n14964,lsmdc3061_SNOW_FLOWER-29914,4461,Someone accompanies her through the open gate. Someone,Someone accompanies her through the open gate.,Someone,gold,hold him as someone sees him in the ballroom.,grips the collar of the raincoat and scurries to the phone.,\"makes her way across a bridge outside a temple, then turns to the young servant.\",grabs someone and someone.,2\n14965,lsmdc3061_SNOW_FLOWER-29914,4471,Someone wakes and looks up at the visitor. Someone's aunt,Someone wakes and looks up at the visitor.,Someone's aunt,gold,sits beside her on a bench in the hallway.,gives a disappointed look.,\"reaches out, then turns back to someone.\",turns around in his front disguise.,0\n14966,lsmdc3061_SNOW_FLOWER-29914,4449,\"A baby rests beside her in a bassinet. Spreading open the fan, someone\",A baby rests beside her in a bassinet.,\"Spreading open the fan, someone\",gold,lets someone else have atop the baby.,peers defiantly at a stack of boxes in the kitchen.,reads her friend's message.,gazes at the humanoid statue.,2\n14967,lsmdc3061_SNOW_FLOWER-29914,4460,\"A porter tilts it forward, allowing her to step over the wooden rails in front. Someone\",\"A porter tilts it forward, allowing her to step over the wooden rails in front.\",Someone,gold,accompanies her through the open gate.,frantically continues downstairs and finds a difficult rectangular stack of letters in a cordial display.,makes his way with her groceries being pulled inside.,sets down a headphones.,0\n14968,lsmdc3061_SNOW_FLOWER-29914,4464,\"Now, they each add a fresh stick of incense to a pot filled with the smoldering tokens. Later, they\",\"Now, they each add a fresh stick of incense to a pot filled with the smoldering tokens.\",\"Later, they\",gold,\"lead someone down a hallway, past the hospital walls, jagged concrete walls.\",\"walk back to the drummer, beyond the windscreen, lined on either side for a narrow clearing.\",eat a couple of ice cream panels.,sit on a bench.,3\n14969,lsmdc3061_SNOW_FLOWER-29914,4468,\"Someone sinks to her knees. With an anguished look, she\",Someone sinks to her knees.,\"With an anguished look, she\",gold,\"peers through a crack, then slumps against the thick wooden door.\",watches and backs away.,brings someone onto the swing.,\"wipes the edge of the chair to the floor, as someone awakes and pulls her up against the wall with his foot, embracing\",0\n14970,lsmdc3061_SNOW_FLOWER-29914,4472,Someone's aunt sits beside her on a bench in the hallway. She,Someone's aunt sits beside her on a bench in the hallway.,She,gold,lets out a breath.,opens the car door for someone.,scoots through a partition.,sinks to her knees and places her hand on his hand.,0\n14971,anetv_HYAlS44yzdo,17467,A man is seen spinning around and throwing a shot put in the air. Another man,A man is seen spinning around and throwing a shot put in the air.,Another man,gold,is shown throwing the object off into the distance and ends on the side.,is followed shortly afterwards doing the same.,is seen running down the lane in a hula hoop pose with his arms held high up to him.,is then seen jumping on and slapping several people.,1\n14972,anetv_HYAlS44yzdo,4881,\"A man is outside in a field and throws a shot put into the crowd. After, several images are shown and a red arrow high lights parts of their leg that\",A man is outside in a field and throws a shot put into the crowd.,\"After, several images are shown and a red arrow high lights parts of their leg that\",gold,makes one room square right.,are needed for technique and balance.,are still suspended from the ground many times.,are shouting in cold air.,1\n14973,anetv_HYAlS44yzdo,4882,\"After, several images are shown and a red arrow high lights parts of their leg that are needed for technique and balance. Many men\",\"After, several images are shown and a red arrow high lights parts of their leg that are needed for technique and balance.\",Many men,gold,speak at a half arabic stage and say's citizens and citizens is being recorded.,are shown viewed from the casino and ending by putting powdered ornaments over the cups.,are then shown throwing more shotput in the field as coaches and people begin to watch.,\"is shown with several rope moving upward, with only one board and the other demonstrating rises to do flips.\",2\n14974,anetv_HYAlS44yzdo,17468,Another man is followed shortly afterwards doing the same. Pictures,Another man is followed shortly afterwards doing the same.,Pictures,gold,of the items are shown and the balls are green.,as well as people watching the show.,are then shown of the men shot putting and leads into more video.,are shown of various people playing around as well as two more crowd.,2\n14975,anetv_Fr9F2xRLd0A,15915,Boys hang onto the ends of a kayak with another paddling. The kayak rider,Boys hang onto the ends of a kayak with another paddling.,The kayak rider,gold,dances off as it runs into the water and eventually cuts to a white kite in a dark bay.,passes the second surfer to backstroke the fish boat.,turns the kayak around using his oar.,flies along the deck with it.,2\n14976,anetv_Fr9F2xRLd0A,15916,The kayak rider turns the kayak around using his oar. The kayak rider,The kayak rider turns the kayak around using his oar.,The kayak rider,gold,paddles forward with the boys riding hanging on.,rides in the water out of the shark.,swims in at the murky times.,closes the raft on turns.,0\n14977,anetv_Fr9F2xRLd0A,2222,The people hang on to the ends and she paddles away. This,The people hang on to the ends and she paddles away.,This,gold,motion is shown in slow motion.,\"water is right on water as the express begins to mix on, up up in the safety of the boat.\",\"house, little woman is walking towards mother's house in her bed.\",appears to be a rescue video tutorial.,3\n14978,anetv_Fr9F2xRLd0A,15917,The kayak rider paddles forward with the boys riding hanging on. A kayak,The kayak rider paddles forward with the boys riding hanging on.,A kayak,gold,is full of rafters and an orange jet.,is launched from the shore into the water.,crashes the people rides the new set and begins to flip.,slides hard in the yard beside a boy.,1\n14979,anetv_Fr9F2xRLd0A,15918,A kayak is launched from the shore into the water. Two boys,A kayak is launched from the shore into the water.,Two boys,gold,navigate on the water and one boat runs through the water.,sit on top of the kayak on both ends with the rider in paddling.,start hiking intertubes out of the water.,are pulled from castles of the truck.,1\n14980,anetv_jmPV_y8YntQ,202,There are several people seated and standing that are watching the girls as they jump rope. The girls,There are several people seated and standing that are watching the girls as they jump rope.,The girls,gold,go back and forth around martial arts to each other.,separate and talk to each other in the gym.,jumps after they dive into the gymnasium and pull back in the various moves that engage in bungee jumping with balance experience.,take turns and jump rope in a relay manner.,3\n14981,anetv_jmPV_y8YntQ,201,They are ready to compete in competition. There,They are ready to compete in competition.,There,gold,ready his running in the same race.,throw their their swords.,'s a ball to a basketball.,are several people seated and standing that are watching the girls as they jump rope.,3\n14982,anetv_jmPV_y8YntQ,203,They switch between the contestants and move from fast skipping to slower and steadier skipping. They,They switch between the contestants and move from fast skipping to slower and steadier skipping.,They,gold,take turns as they skip.,begin arm wrestling in the rope.,are demonstrating on headsets.,adjust them at the sinks.,0\n14983,anetv_kdjLJTGj4H0,16182,Women are playing a game of curling. The audience,Women are playing a game of curling.,The audience,gold,are gathered on a table.,is watching them walk behind the man.,does a sticker on the drawings.,watching them cheers and applauds.,3\n14984,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96238,17692,\"Still kneeling beside someone, someone watches him go. Outside the chest room, someone\",\"Still kneeling beside someone, someone watches him go.\",\"Outside the chest room, someone\",gold,walks cautiously down a flight of white dimly lit stone steps.,gazes up at the massive tv set of groggy - eyed television.,crosses to the door and climbs into his dorm.,presses the shelf out to someone's bed where he answers his cell.,0\n14985,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11068,They turn to see the people. Young someone,They turn to see the people.,Young someone,gold,\"hangs back, then bends down to tie his shoelace.\",\"waves at someone, who is crouching at the center of the aisle.\",does not and then pushes the one down on the platform.,appears next to someone.,0\n14986,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11069,\"Young someone hangs back, then bends down to tie his shoelace. People\",\"Young someone hangs back, then bends down to tie his shoelace.\",People,gold,paddle through the flat foyer.,\"exchange a look, before someone returns to their son.\",exchange his nervous looks.,puts an arm around each other's shoulders.,1\n14987,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11070,\"People exchange a look, before someone returns to their son. He\",\"People exchange a look, before someone returns to their son.\",He,gold,hangs off decorations bit curtained by a nearby ceiling.,\"regards her uncertainly, then gazes at his wife.\",cups jet passed over his face.,\"crouches down, beside him.\",3\n14988,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11061,\"The trolley stops, and the girl jumps off. The older boy\",\"The trolley stops, and the girl jumps off.\",The older boy,gold,\"runs, pushing the trolley at speed into a brick pillar between the platforms.\",drags the cart and opens the door to a restroom.,carries the baby away and the kids run into the enclosure of the building.,puts down her things.,0\n14989,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11062,The first boy looks nervous. Someone,The first boy looks nervous.,Someone,gold,walks up to him and rests a hand on his shoulder.,opens the crate and points the other way out.,rises from the table with someone's daughters in his arm.,brushes the plate and returns to the patio.,0\n14990,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11065,Little sister someone chases a paper bird flying up the platform. People,Little sister someone chases a paper bird flying up the platform.,People,gold,are pointed balls at her.,holds up a bouncy log gliding back and forth on the dirt.,sweep a wooded path and speed toward the escalator.,\"fuss over their daughter, someone.\",3\n14991,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11066,\"People fuss over their daughter, someone. Someone\",\"People fuss over their daughter, someone.\",Someone,gold,walks out of the school.,\"leaps around the stern, his point of view follows.\",\"has an arm round their small son, someone.\",points at someone and shrugs.,2\n14992,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11067,\"Someone has an arm round their small son, someone. They\",\"Someone has an arm round their small son, someone.\",They,gold,turn to see the people.,start against the gate.,grab their arms.,get out of the car.,0\n14993,anetv_AvjExlAl18I,12530,A man is seen performing a dance routine on a stage while an orchestra plays behind him. A woman then,A man is seen performing a dance routine on a stage while an orchestra plays behind him.,A woman then,gold,plays a piano around speaking to a group of people and then leaves.,speaks to the camera and begins moving in on her back until the entire performance is made.,smiles when the woman claps up more and cheers.,steps in and dances with the man while spinning his hat around and twirling on the stage.,3\n14994,anetv_AvjExlAl18I,12531,A woman then steps in and dances with the man while spinning his hat around and twirling on the stage. The two,A woman then steps in and dances with the man while spinning his hat around and twirling on the stage.,The two,gold,kiss the birdie all together.,continue to dance around one another while holding batons interacting and the audience turns herself into the camera.,end by making a funny gesture and then walk off the stage to the side.,continue moving their hands up to the audience and ends with one group walking to the slack line.,2\n14995,anetv_Ej_a4iCd45I,19126,Two men high five each other the men all trade sides. The ball,Two men high five each other the men all trade sides.,The ball,gold,lets all the ball wander.,returns to his team.,lands on the ground.,hops away to the other side of the path.,2\n14996,anetv_Ej_a4iCd45I,19127,The ball lands on the ground. A man,The ball lands on the ground.,A man,gold,spills dirt onto the sand.,is swinging a pinata with his hand as he swings his broom and hits in the air.,kicks the ball to the other side.,hits the ball with the pole.,2\n14997,anetv_Ej_a4iCd45I,19128,A man kicks the ball to the other side. A man,A man kicks the ball to the other side.,A man,gold,is shooting out the first ball.,throws darts and throws a shot put.,does a shot of the ice.,jumps and spins in the air.,3\n14998,anetv_Ej_a4iCd45I,19124,We see the title cards on blue. We,We see the title cards on blue.,We,gold,see the ending title screen.,then see two men at a paintball table.,see men playing beach volleyball.,see the man sitting looking at the camera.,2\n14999,anetv_Ej_a4iCd45I,19129,The man in gray daces as the other men jump around. The men,The man in gray daces as the other men jump around.,The men,gold,lay side by side on the floor.,continue to get out.,throw balls onto the table.,pose for a photo.,3\n15000,lsmdc3083_TITANIC2-39120,7296,\"In a dining room, someone sips tea with two other women. Someone\",\"In a dining room, someone sips tea with two other women.\",Someone,gold,\"walks toward someone, who holds up a contract.\",helps the drink over the hair of her neighbor.,nods at someone then strides off.,\"sips the soda coldly, then returns.\",2\n15001,lsmdc3083_TITANIC2-39120,7297,\"Someone nods at someone then strides off. Nearby, mustached someone\",Someone nods at someone then strides off.,\"Nearby, mustached someone\",gold,hands him his handkerchief.,speeds up and down.,listens and rolls his rifle and offers a hunting bow.,sits with the captain.,3\n15002,anetv_kOVQPyzXkUY,3619,The guy type walks across water on a rope that has a short distance from the dock to a boat edge while people watch. guy's also,The guy type walks across water on a rope that has a short distance from the dock to a boat edge while people watch.,guy's also,gold,flops down the sail with a surf board onto his nearby gaudencio boards on the canvas.,doing some roundhouse moves on a calm surf high above a large lake.,play a cheer and hugs the conga boy by the arm.,bounce and do tricks on a pink type rope as well.,3\n15003,anetv_W04glwJ_IYI,2935,A woman grooms an angry poodle who is collared and tethered to a pole attached to a black grooming table. A brown poodle,A woman grooms an angry poodle who is collared and tethered to a pole attached to a black grooming table.,A brown poodle,gold,pulls the slow chair closer to her.,is being combed by a woman in a yellow walled room on a black grooming table.,is empty the top of a fence to groom the dog on the leash.,is running around a small set of frisbees in an unfinished slides.,1\n15004,anetv_W04glwJ_IYI,2936,\"The woman holds out a pink plastic toy which the dog begins to bite, snap and grab at while the woman combs the poodles fur. The poodle\",\"The woman holds out a pink plastic toy which the dog begins to bite, snap and grab at while the woman combs the poodles fur.\",The poodle,gold,continues to snap at the pink toy and also at the woman's hand and the comb.,holds the man up and shows lines around stationary pieces.,puts a hat on and continues talking to the camera.,takes the shovel off the ground.,0\n15005,anetv_aVDyPmUgHU0,3820,He picks up a trimming saw and starts the engine. He,He picks up a trimming saw and starts the engine.,He,gold,shows the stack of trash on the baby's bedside table.,starts tying the horse into his chamois.,climbs the ladder and begins trimming the tree.,holds up the camera.,2\n15006,anetv_aVDyPmUgHU0,3821,He climbs the ladder and begins trimming the tree. He,He climbs the ladder and begins trimming the tree.,He,gold,goes over the steps in a slow motion on the apartment.,puts an arm around the priest.,looks back to the camera and smiles.,\"jumps on the side of the trimmers, then uses a right tool to trim the tied frames.\",2\n15007,anetv_aVDyPmUgHU0,3819,A man comes onto the screen to introduce a video about him trimming trees. He,A man comes onto the screen to introduce a video about him trimming trees.,He,gold,shows a small canoe as he continues to unties rays.,is then seen stepping over and climbing the bank of a wall.,is shown going down the hedges along with some important things.,picks up a trimming saw and starts the engine.,3\n15008,lsmdc3090_YOUNG_ADULT-43862,13010,As the sun rises over distant skyscrapers. Someone,As the sun rises over distant skyscrapers.,Someone,gold,is no longer in grid.,drives across a bridge out of town.,can watch the tire smash at the end of the other past like a fireball.,runs in front of an elephant train.,1\n15009,anetv_06r6DtoTtSQ,7307,He moves his hands to demonstrate how to move on the board and then uses his feet. He,He moves his hands to demonstrate how to move on the board and then uses his feet.,He,gold,then does a handstand and moves to the camera.,\"moves quickly, stretching on time.\",continues to demonstrate the move while riding around and speaking to the camera.,then walks around the room for a second time.,2\n15010,anetv_06r6DtoTtSQ,7306,A man is shown speaking to the camera and moving his feet on a skateboard. He,A man is shown speaking to the camera and moving his feet on a skateboard.,He,gold,riding down the road into the bumper cars then pulling out a ramp and skating around another.,continues riding around on the mower truck that leads into another man riding down the hill.,moves his hands to demonstrate how to move on the board and then uses his feet.,continues climbing all on the board using objects as well as his arms.,2\n15011,anetv_06r6DtoTtSQ,12663,A man is seen speaking to the camera while holding a skateboard and leads into moving the board with his hands and then demonstrating moves. The man,A man is seen speaking to the camera while holding a skateboard and leads into moving the board with his hands and then demonstrating moves.,The man,gold,continues to demonstrate how to properly use the machine while several shots of liquids and leaves being shown.,continues moving around on the board and ends with him speaking to the camera.,continues to do flips all along the frame and ends by speaking to the board.,spins around all around the people while his to do various martial arts moves and laughing while speaking to the camera.,1\n15012,anetv_W1krUTxgsMc,19530,White text on a black background discusses a disease called ra. A man,White text on a black background discusses a disease called ra.,A man,gold,\"is shown seated in a living room, playing a guitar.\",talks to a blonde woman with a long black beard.,talks to the camera while wearing a snowboard.,is seen mopping the floor with large drums and cymbals.,0\n15013,anetv_W1krUTxgsMc,18259,A man is then shown in a chair. He,A man is then shown in a chair.,He,gold,measures the floor and shows how properly it is.,gets off the couch and back showing it.,moves the electric cone into his neck and decides to raise the shoe.,is playing a guitar.,3\n15014,anetv_W1krUTxgsMc,18260,He is playing a guitar. He,He is playing a guitar.,He,gold,continues dancing and gives cute silly tricks.,plays at the keyboard on the arms and begins playing the guitar.,finishes the song at the end.,holds a drum line in front of him.,2\n15015,anetv_W1krUTxgsMc,18258,Several slides of text are shown. A man,Several slides of text are shown.,A man,gold,speaks to the camera while scraping his teeth.,is then shown in a chair.,is talking as he talks.,holds out a man's hands and knees.,1\n15016,anetv_bFHpaULTwsE,19341,\"A tree and mulching materials are show, then a man prepares the area around the tree. Then the man\",\"A tree and mulching materials are show, then a man prepares the area around the tree.\",Then the man,gold,put mulch around the tree and gives form with a rack.,rides at a brown saw with others as he talks.,starts to use mushrooms to spread orange shapes.,continues blowing the leaves around the pool.,0\n15017,lsmdc3018_CINDERELLA_MAN-8115,12166,Someone closes the apartment door behind him. Light,Someone closes the apartment door behind him.,Light,gold,shines down on the couple standing close together.,\"a rifle, someone glances around, then moves to the window.\",light shines through the windows of a luxurious kitchen.,falls off the window.,0\n15018,lsmdc3018_CINDERELLA_MAN-8115,12164,Someone yanks off her apron and marches out. Someone,Someone yanks off her apron and marches out.,Someone,gold,leans to his children.,drops the money under the table.,dashes up a tunnel as someone exits office building.,brings the two cruisers to the corner.,0\n15019,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85364,9639,\"Someone steps up close and glowers at someone. Catching his pipe between his teeth, someone\",Someone steps up close and glowers at someone.,\"Catching his pipe between his teeth, someone\",gold,holds up his lighter.,breaks free with him.,drags him towards the water.,presses a bend against someone's chest.,0\n15020,lsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85364,9640,\"Catching his pipe between his teeth, someone holds up his lighter. Someone\",\"Catching his pipe between his teeth, someone holds up his lighter.\",Someone,gold,coughs around his chair and takes a deep breath.,smiles and takes it.,places a ring on his left finger and lifts the tip over his fist.,carries him over the woods.,1\n15021,anetv_I4wkBjpwAAU,13889,There is a crowd of army officers watching them cheering for them as they do the strength training exercise. The game,There is a crowd of army officers watching them cheering for them as they do the strength training exercise.,The game,gold,is over after one of the army officer's drags the other officer on the ground and wins the game.,continues while the individuals dance in the practice.,continue to file on their clothes and then flee all their students.,\"starts to fall and when they finish each end, one third of them wins as the queen wins.\",0\n15022,anetv_I4wkBjpwAAU,13888,Two army men in the their uniforms are tied together and pulling each other in opposite direction as part of their training. There,Two army men in the their uniforms are tied together and pulling each other in opposite direction as part of their training.,There,gold,are attached to mid handles.,it is too hard.,is a crowd of army officers watching them cheering for them as they do the strength training exercise.,are wanted when they are taken.,2\n15023,anetv_vmFfa1yv72k,11579,\"Several rooms and couples are shown and the ball is thrown in a cup. Once done, the camera pans out and you\",Several rooms and couples are shown and the ball is thrown in a cup.,\"Once done, the camera pans out and you\",gold,can see the couples are competing against each other in a room together.,can see skis in a room with un - flowing umbrella and a straw.,can finish while the watches.,show what's going on the pool.,0\n15024,anetv_vmFfa1yv72k,11577,Several peoples outfits are being panned from the bottom up. Then a group of cups are on the table and they,Several peoples outfits are being panned from the bottom up.,Then a group of cups are on the table and they,gold,are lifted.,begin playing beer pong with a group of people.,walk into their small room lit axes.,begin to play a game of mock croquet.,1\n15025,anetv_vmFfa1yv72k,11578,Then a group of cups are on the table and they begin playing beer pong with a group of people. Several rooms and couples are shown and the ball,Then a group of cups are on the table and they begin playing beer pong with a group of people.,Several rooms and couples are shown and the ball,gold,is loaded with their blue equipment.,is simply back with more people and the women are shown their pictures.,breaks far between times.,is thrown in a cup.,3\n15026,lsmdc1029_Pride_And_Prejudice_Disk_One-83660,1242,\"Then, they set off walking again. Someone\",\"Then, they set off walking again.\",Someone,gold,smiles contentedly to herself.,\"moves quickly after, moving, and he stops him.\",meets his forehead against his wife's.,points to his back on the side.,0\n15027,lsmdc1029_Pride_And_Prejudice_Disk_One-83660,1241,\"They watch as someone jumps from the swing into the arms of an officer. Then, they\",They watch as someone jumps from the swing into the arms of an officer.,\"Then, they\",gold,swing their ankles as they prepare.,\"turn to a stop, looking back in.\",set off walking again.,\"travel along bank waters and down the street, continuing to record fleet.\",2\n15028,lsmdc1029_Pride_And_Prejudice_Disk_One-83660,1243,\"Someone smiles contentedly to herself. Now, someone\",Someone smiles contentedly to herself.,\"Now, someone\",gold,rushes into someone's room.,touches the bride door.,starts to head between his street.,wears a scarlet gold dress.,0\n15029,anetv_jkay2K3RA1M,13074,Then we see a girl painting her nails with clear fluid. She,Then we see a girl painting her nails with clear fluid.,She,gold,is resting her hand on top of a dvd case.,catches the thread product.,puts her finger into a bucket then walks through the ocean.,is using paint and paint and cuts and paints the softly painted surface.,0\n15030,anetv_jkay2K3RA1M,3120,A stuffed animal is sitting in a chair. A person,A stuffed animal is sitting in a chair.,A person,gold,plays the end of a violin.,has their hand laying on a book.,is welding something in the tree.,is standing in front of a lawnmower drawing in the grass holding a black on green grass.,1\n15031,anetv_jkay2K3RA1M,13073,A stuffed toy is held up for the camera. Then we,A stuffed toy is held up for the camera.,Then we,gold,see the little lady go out of frame.,see the finished boobs and black and white plates under matte paper.,see a girl painting her nails with clear fluid.,see a black team punch and one man wins from the ground.,2\n15032,anetv_jkay2K3RA1M,3121,A person has their hand laying on a book. Another person,A person has their hand laying on a book.,Another person,gold,\"puts a white disc over all of his back, and starts to write in black ink.\",sits on a camel and a person talks.,picks up a cue cube that is completely wrapped around it.,is painting their fingernails.,3\n15033,lsmdc0027_The_Big_Lebowski-63042,867,\"He swings the crowbar into the windshield, which shatters. He\",\"He swings the crowbar into the windshield, which shatters.\",He,gold,takes out the driver's window.,considers a worker on their bikes.,crashes through the roof on the other side.,\"drops into the air, and catches it in his hands.\",0\n15034,lsmdc0027_The_Big_Lebowski-63042,868,He takes out the driver's window. Lights,He takes out the driver's window.,Lights,gold,turns on the light.,are going on in houses down the street.,\"the rental car again, someone looks out under the window.\",pull the trunk as the bird blows off.,1\n15035,lsmdc0027_The_Big_Lebowski-63042,866,\"He pops someone's trunk, flings in the briefcase and takes out a tire iron. He\",\"He pops someone's trunk, flings in the briefcase and takes out a tire iron.\",He,gold,is forced to take him off his sand shimmer by getting on his feet.,attaches the car wheel and opens the door to a second car door.,\"unpacks tv alongside three trainers, who all both carry the books with the bat and tossed about across the way.\",\"swings the crowbar into the windshield, which shatters.\",3\n15036,lsmdc0027_The_Big_Lebowski-63042,865,Someone is striding down the lawn with his attache case like an enraged encyclopedia salesman. He,Someone is striding down the lawn with his attache case like an enraged encyclopedia salesman.,He,gold,\"pops someone's trunk, flings in the briefcase and takes out a tire iron.\",brushes his hair on a dresser.,\"'s in the bathroom on the coast, not knowing what's happening.\",stares ahead as he looks out at the taped bay window.,0\n15037,anetv_--0edUL8zmA,15338,They continue playing several rounds of dodge ball. The player,They continue playing several rounds of dodge ball.,The player,gold,kicks the ball to a net.,\"scores, several other kids continue but she around on the court.\",in red kicked the ball and jumped in the end.,aims directly at one of his opponents and hits him on his leg.,3\n15038,anetv_--0edUL8zmA,15332,Four men are playing dodge ball in an indoor court. They,Four men are playing dodge ball in an indoor court.,They,gold,hold the ball and put it into a goal.,are making soccer balls against each other in front of a net.,are trying to hit the ball back and forth over the balls.,start running towards the red balls after the coach blows the whistle.,3\n15039,anetv_--0edUL8zmA,15334,\"One of the players hits the ball on his opponent. The opponent strikes back at the other player, but he\",One of the players hits the ball on his opponent.,\"The opponent strikes back at the other player, but he\",gold,manages to dodge the ball.,gets hit by a ball.,kicks the ball back into the net.,loses his in place.,0\n15040,anetv_--0edUL8zmA,15337,The player hits the ball hard on his opponent's leg. They,The player hits the ball hard on his opponent's leg.,They,gold,hit the ball back and forth against the wall behind all explosions.,turn to a point of kick.,tries to balance it with one grunt as it hit against the ropes to stop them from sliding.,continue playing several rounds of dodge ball.,3\n15041,anetv_--0edUL8zmA,15339,The player aims directly at one of his opponents and hits him on his leg. The game,The player aims directly at one of his opponents and hits him on his leg.,The game,gold,ends after the coach blows the whistle.,ends with two giant individuals wiped down the distance.,continues until the level wins.,continues as a bearded man leans over her and aims the cord.,0\n15042,anetv_--0edUL8zmA,15335,\"The opponent strikes back at the other player, but he manages to dodge the ball. Next, the player\",\"The opponent strikes back at the other player, but he manages to dodge the ball.\",\"Next, the player\",gold,hits the ball over and over.,hits another ball directly at his opponent standing opposite him.,\"hits the ball with his stick, proceeds to strike it in the right field and misses.\",raises up the boxer while the audience cheers and cheers for him.,1\n15043,anetv_--0edUL8zmA,15336,\"Next, the player hits another ball directly at his opponent standing opposite him. The player\",\"Next, the player hits another ball directly at his opponent standing opposite him.\",The player,gold,lifts the heavy ball in his hand and stands towards it.,throws the ball into the net.,puts a smaller ball in the net several times and kicks it into the goal.,hits the ball hard on his opponent's leg.,3\n15044,anetv_--0edUL8zmA,15333,They start running towards the red balls after the coach blows the whistle. One of the players,They start running towards the red balls after the coach blows the whistle.,One of the players,gold,walks some tricks over to the polo board.,juggles the ball and starts to run.,hits the ball on his opponent.,is holding the man.,2\n15045,anetv_Rai5nKbB6wU,4244,We see a man pumping his arms. After the race men,We see a man pumping his arms.,After the race men,gold,\"hug the chest, the man gives a high five and lifts the weight over his head.\",hug and shake hands.,\"start spinning the sumo, the wrestler and a man run to a railing.\",throw his legs in both air.,1\n15046,anetv_Rai5nKbB6wU,4241,We see a man on a skateboard crash hard. We,We see a man on a skateboard crash hard.,We,gold,see a corvette splitting shingles.,\"see people outside the truck, quick flashes.\",see written score boards.,see a police cars and reverse.,2\n15047,anetv_Rai5nKbB6wU,6490,People are standing on a boat in the water. People,People are standing on a boat in the water.,People,gold,are walking in a town.,are in the air swimming.,are sitting on canoes in a raft.,are then shown playing beer pong.,0\n15048,anetv_Rai5nKbB6wU,4245,After the race men hug and shake hands. We,After the race men hug and shake hands.,We,gold,play the drums on the skipper bearing the bridge up in a supply room through a bible.,see the closing title screens.,approaches the girls with friends and who.,eye and apply the molds on the ground with its names on the screen.,1\n15049,anetv_Rai5nKbB6wU,4239,People stretch and warm up. We,People stretch and warm up.,We,gold,overtakes the building!,see people skateboarding fast cut with people and city scenes.,frowns in the cottage.,are being served with a bus.,1\n15050,anetv_Rai5nKbB6wU,4240,We see people skateboarding fast cut with people and city scenes. We,We see people skateboarding fast cut with people and city scenes.,We,gold,see a man in workshop working on video tile.,see a man on a skateboard crash hard.,see the names of the people on the banner.,then see shots of men going down a city streets.,1\n15051,anetv_Rai5nKbB6wU,6491,People are walking in a town. People,People are walking in a town.,People,gold,are seen swimming under water.,are seated in a park walking a bus.,are long boarding down a hill in front of people watching.,are on the car holding laughs.,2\n15052,anetv_dI6TWaB6tls,8989,\"A woman in a ballroom outfit approaches a man in a ballroom dance, when the two meet they begin to dance across the floor using elaborate footwork during the dance. A phone number inviting people to call in and vote for them\",\"A woman in a ballroom outfit approaches a man in a ballroom dance, when the two meet they begin to dance across the floor using elaborate footwork during the dance.\",A phone number inviting people to call in and vote for them,gold,appears on the screen along with the network logo.,'name is shown on the screen.,are shown for the symphony.,\"wins, giving the audience's reaction.\",0\n15053,anetv_Ptw9hFDV4ow,16928,A coach is training a boy and a girl to do kickboxing. There,A coach is training a boy and a girl to do kickboxing.,There,gold,gets off the horse.,boys practice is in a playground.,\"is a woman standing in a purple shirt, filming the coach teach the kids.\",is talking and kneeling on the floor watching.,2\n15054,anetv_Ptw9hFDV4ow,16929,\"There is a woman standing in a purple shirt, filming the coach teach the kids. Both the girl and the boy\",\"There is a woman standing in a purple shirt, filming the coach teach the kids.\",Both the girl and the boy,gold,then dance to fix ping's materials.,are taking turns in returning the punches and kicks to the coach.,are playing a splash at video table on the beach.,are throwing her a wheelie.,1\n15055,anetv_Ptw9hFDV4ow,16930,Both the girl and the boy are taking turns in returning the punches and kicks to the coach. The coach,Both the girl and the boy are taking turns in returning the punches and kicks to the coach.,The coach,gold,is encouraging the students to constantly punch and return the kicks.,stops for a hand encourage run to other players to the team and then cheers.,helps the girls team raise his arms and scores.,is won and fights for the practice.,0\n15056,anetv__n9eNF1WaFU,4799,The dog sits on a table and gets brushed. The dog,The dog sits on a table and gets brushed.,The dog,gold,picks up a large catch of orange powder and tosses it on top of the horse.,grabs her then goes to the camera to listen.,gets into a bath tub.,sits at the table together.,2\n15057,anetv__n9eNF1WaFU,14946,The first woman washes the dog. The dog and the first woman,The first woman washes the dog.,The dog and the first woman,gold,are shown watching the dog.,walk through a room.,begin the next time.,talk again on the video.,1\n15058,anetv__n9eNF1WaFU,14943,\"The dog walks into a door where a woman waits. The woman, along with another woman,\",The dog walks into a door where a woman waits.,\"The woman, along with another woman,\",gold,has to change the wig.,clears another door with a dog and grabs his dog.,\"pets the dog, who is now on a table.\",takes a bottle of beer from himself.,2\n15059,anetv__n9eNF1WaFU,14945,The first woman combs the dog's hair. The dog and the first woman,The first woman combs the dog's hair.,The dog and the first woman,gold,walk through a room and into the bathroom.,are scrubbing the fur of the dog.,are seen drying their hair in sections.,are seen combing and styling the black dog while the woman looks from her to a mirror.,0\n15060,anetv__n9eNF1WaFU,4801,A woman washes the dog in the bath tub. She,A woman washes the dog in the bath tub.,She,gold,gnn sub aims the mop at a kitchen sink.,stops the soap and scrubs his shoes thoroughly.,dries the dog with a towel and blow drier.,continues to put lotion on her dog.,2\n15061,anetv__n9eNF1WaFU,14947,The first woman towels the dog. The first woman,The first woman towels the dog.,The first woman,gold,removes something like freebies from the bucket.,talks then pets the dog and the dog.,blow dries the dog.,returns the mop to the dogs.,2\n15062,anetv__n9eNF1WaFU,4802,She dries the dog with a towel and blow drier. She,She dries the dog with a towel and blow drier.,She,gold,continues drying her hair after ironing which hair in her leg.,picks up a large brush and talks about it.,clutches hands and hair as she uses the paper to move her hands.,shaves and clips the hair of the dog.,3\n15063,anetv__n9eNF1WaFU,4800,The dog gets into a bath tub. A woman,The dog gets into a bath tub.,A woman,gold,shows me how to brush your teeth.,washes the dog in the bath tub.,towels her hair off with a salad towel.,has an oil under her feet.,1\n15064,anetv__n9eNF1WaFU,4798,A large dog walks into a building. The dog,A large dog walks into a building.,The dog,gold,spots it's foot and dog catches it.,watches the boy trying to track down the same moment.,is knocked down as the dog shrieks.,sits on a table and gets brushed.,3\n15065,anetv__n9eNF1WaFU,14950,The first woman grooms the dog. The dog,The first woman grooms the dog.,The dog,gold,runs and talks about the dogs.,purses the cat paws on their fingers.,walks towards the second woman.,shakes the lemons with the fork and begins jumping the vegetables on the pan.,2\n15066,anetv__n9eNF1WaFU,14944,\"The woman, along with another woman, pets the dog, who is now on a table. The first woman\",\"The woman, along with another woman, pets the dog, who is now on a table.\",The first woman,gold,gets a final haircut from the dog.,speaks while making notes and moving her hands at an seated pace.,combs the dog's hair.,gets the bottle after the dog laughs and the woman brushes her teeth.,2\n15067,anetv__n9eNF1WaFU,14942,A dog walks past the camera. The dog,A dog walks past the camera.,The dog,gold,walks back and talks to the camera.,walks into a door where a woman waits.,is screwing in the neighbor's fur.,keeps looking at the mask and gearing up on the windowsill.,1\n15068,anetv__n9eNF1WaFU,4803,She shaves and clips the hair of the dog. The dog,She shaves and clips the hair of the dog.,The dog,gold,laugh and laughs at the camera.,walks out of the building.,is getting the haircut very off.,follows her hair around and shows the finished product.,1\n15069,anetv__n9eNF1WaFU,14949,The camera shows a winter exterior town scene. A woman,The camera shows a winter exterior town scene.,A woman,gold,runs the mirror through dark hair.,\"walked down some stairs, roller blades, and do to scramble backwards.\",comes to dump dishes.,styles another woman's hair.,3\n15070,anetv_QLACTCzs0R0,15827,The other side of the rope is shown. One team,The other side of the rope is shown.,One team,gold,\"nods, and the rope eventually comes off as the young man retrieves a rope and the knife is nearly limping.\",does an dance practice as the crowd watches.,tries to keep his balance and balance so he jumps to his side.,\"is pulled over a red line on the ground, ending the game.\",3\n15071,anetv_QLACTCzs0R0,15825,A large group of Navy soldiers are shown on a dock playing a game of tug of war. On one side of the rope,A large group of Navy soldiers are shown on a dock playing a game of tug of war.,On one side of the rope,gold,leads to the small crow.,seems to rise over the wharf and fail to sing.,is a trophy that is crowned on the side of the man and the man from the left skates and pauses successfully.,is a team pulling as hard as they can while being cheered on.,3\n15072,anetv_QLACTCzs0R0,15828,\"One team is pulled over a red line on the ground, ending the game. The men\",\"One team is pulled over a red line on the ground, ending the game.\",The men,gold,are also extremely given to them as they all take their turns.,stand up to relax.,run towards another hut.,throw the ball back to the field.,1\n15073,anetv_QLACTCzs0R0,15826,On one side of the rope is a team pulling as hard as they can while being cheered on. Another Navy soldier,On one side of the rope is a team pulling as hard as they can while being cheered on.,Another Navy soldier,gold,\"climbs a stone pump, then sticks a twinkle in his right pocket.\",stands on to the fireman corner sticks and drives off.,is shown taking pictures of the game.,follows the taller man who runs along the road towards her and then steps on the slow wave.,2\n15074,lsmdc3088_WHATS_YOUR_NUMBER-42191,15298,She goes to the door. Her eyes,She goes to the door.,Her eyes,gold,flash round as she moves her to open front door.,widen at the sight of a man holding a gift box.,\"walk to the window, and looks down at it, about rocks her eyes.\",\"illuminates the soft red sun, over the heels, at the party guests.\",1\n15075,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1801,14093,Someone lunges forward and bites the tip of someone's nose off. He,Someone lunges forward and bites the tip of someone's nose off.,He,gold,flings it off the tree and descends from his perch behind the lifeboat.,\"approaches her with a bloody face, his teeth clenched in fury and pain, and strikes someone.\",puts his finger on someone and takes it.,\"is hurled back, aiming the mace down into the back of someone's head.\",1\n15076,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1801,14095,The troll watches from the trees as she falls to the ground. The Sheriff,The troll watches from the trees as she falls to the ground.,The Sheriff,gold,kicks her in the stomach.,flies off and lays her on the ground.,speeds outside with a woman in its mouth.,gazes at a man holding the baby's doll face to show her mouth.,0\n15077,lsmdc3041_JUST_GO_WITH_IT-18647,10548,\"She restlessly wipes her nose, and flips on her other side. In the bathroom, someone\",\"She restlessly wipes her nose, and flips on her other side.\",\"In the bathroom, someone\",gold,\"glances at her slack - jawed, her brow furrowed.\",sees the vacant bathroom.,sleeps in the cramped tub.,reaches in the shower.,2\n15078,lsmdc3041_JUST_GO_WITH_IT-18647,10549,\"In the bathroom, someone sleeps in the cramped tub. Later, someone\",\"In the bathroom, someone sleeps in the cramped tub.\",\"Later, someone\",gold,walks into his room drinking and sets the timer on his computer.,sits in a cluttered room with bookshelves.,\"lies sound asleep, resting her head on someone's shoulder.\",leaves the galley and smiling lovingly in the lobby.,2\n15079,lsmdc3041_JUST_GO_WITH_IT-18647,10550,\"Later, someone lies sound asleep, resting her head on someone's shoulder. He\",\"Later, someone lies sound asleep, resting her head on someone's shoulder.\",He,gold,drops to her knees and lays a hand to his mouth.,\"remains awake, staring blankly across the room.\",punches someone's back.,\"troop out her through the window, keeping one eye upward.\",1\n15080,lsmdc3041_JUST_GO_WITH_IT-18647,10557,\"Surrounded by tropical plants and lit candles, he makes a call on a portable phone. Someone\",\"Surrounded by tropical plants and lit candles, he makes a call on a portable phone.\",Someone,gold,gives a faint smile.,answers a bedside phone.,stands up and goes down the stairs.,sits at a kitchen island in his windowed kitchen.,1\n15081,lsmdc3041_JUST_GO_WITH_IT-18647,10553,\"Half asleep, someone ambles into the bathroom, where someone still sleeps with his hand in the toilet. The bed - headed boy\",\"Half asleep, someone ambles into the bathroom, where someone still sleeps with his hand in the toilet.\",The bed - headed boy,gold,\"drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees.\",is just asleep on his bed.,\"sits on his bed with a knife in each hand, a flat iron draped over his arm.\",watches as someone rushes off the tent and out of the closet and into the deserted suite.,0\n15082,lsmdc3041_JUST_GO_WITH_IT-18647,10554,\"The bed - headed boy drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees. He\",\"The bed - headed boy drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees.\",He,gold,washes over the floor on the side of the bed and snowboard along between the twisted hills.,\"slumps off a sofa, fully asleep in the comfortable bed.\",grabs a towel and wraps his arm.,takes his arm forward and find someone unconscious under the bed.,2\n15083,lsmdc3041_JUST_GO_WITH_IT-18647,10546,\"In the next room, someone tries on short white dresses while chatting on the phone. Elsewhere, someone\",\"In the next room, someone tries on short white dresses while chatting on the phone.\",\"Elsewhere, someone\",gold,lies awake in bed.,follows someone out of a new bedroom with a hole.,\"stands in a hallway, listens and moves toward the private hallway.\",stares at her who stands next to the bed as someone dances at her side.,0\n15084,lsmdc3041_JUST_GO_WITH_IT-18647,10544,\"Later, we drift over a bed, to find someone lying alone. Staring thoughtfully, he\",\"Later, we drift over a bed, to find someone lying alone.\",\"Staring thoughtfully, he\",gold,reaches down his bag and checks the charger for an hour.,props his lips together as someone listens.,eyes the dart from the platform.,fondles his wedding ring between his fingertips.,3\n15085,lsmdc3041_JUST_GO_WITH_IT-18647,10551,\"He remains awake, staring blankly across the room. Someone\",\"He remains awake, staring blankly across the room.\",Someone,gold,\"telecast, there's an explosion below the rushing currents.\",rolls her eyes from the toilet.,moves toward the distractedly baby on his bed.,lies awake in bed.,3\n15086,lsmdc3041_JUST_GO_WITH_IT-18647,10547,\"Elsewhere, someone lies awake in bed. She\",\"Elsewhere, someone lies awake in bed.\",She,gold,leans in the middle of the coach as the bird opens its wings.,\"nears a bookcase, which wafting.\",\"restlessly wipes her nose, and flips on her other side.\",lifted him by his arms.,2\n15087,lsmdc3041_JUST_GO_WITH_IT-18647,10556,\"Later, someone steps outside. Surrounded by tropical plants and lit candles, he\",\"Later, someone steps outside.\",\"Surrounded by tropical plants and lit candles, he\",gold,\"ambles with a warm, brown shawl.\",makes a call on a portable phone.,waits with a colored cleaner.,lays someone with the heart.,1\n15088,lsmdc3041_JUST_GO_WITH_IT-18647,10555,He grabs a towel and wraps his arm. He,He grabs a towel and wraps his arm.,He,gold,rubs it all back together.,sits at a table wrapping a newspaper.,storms out past the boy.,shows a plastic bag.,2\n15089,lsmdc3041_JUST_GO_WITH_IT-18647,10543,\"She shares a gaze with someone as the elevator doors close. Later, we\",She shares a gaze with someone as the elevator doors close.,\"Later, we\",gold,travel in class as someone sleeps in the street outside.,\"see someone pacing by on the lounge, both laughing.\",\"drift over a bed, to find someone lying alone.\",walk through a new bureau's offices.,2\n15090,lsmdc3041_JUST_GO_WITH_IT-18647,10552,\"The brown - haired girl takes her mother's hand and rests her head on someone's pillow. Half asleep, someone\",The brown - haired girl takes her mother's hand and rests her head on someone's pillow.,\"Half asleep, someone\",gold,stares forlornly at his aircraft.,sweeps an arm around someone as it shines through the windows.,\"ambles into the bathroom, where someone still sleeps with his hand in the toilet.\",\"notices richard parker on a canvas, staring at snowy writing.\",2\n15091,lsmdc3041_JUST_GO_WITH_IT-18647,10545,\"Staring thoughtfully, he fondles his wedding ring between his fingertips. In the next room, someone\",\"Staring thoughtfully, he fondles his wedding ring between his fingertips.\",\"In the next room, someone\",gold,takes a sheet of paper from his pocket and sits off.,wraps up an umbrella beneath the bottle and tosses it open on a reception desk.,stares at the screen as the pixie flicks his hand towards someone.,tries on short white dresses while chatting on the phone.,3\n15092,lsmdc3018_CINDERELLA_MAN-7987,5047,A note around the money lists the amount: $323. Someone,A note around the money lists the amount: $323.,Someone,gold,kisses the corner of her crotch under the scanner.,opens the door and follows someone's face.,curls a medal between her hands.,drops some coins on the form and slides it all to the clerk.,3\n15093,lsmdc3018_CINDERELLA_MAN-7987,5042,The bare chested champion faces someone. Someone,The bare chested champion faces someone.,Someone,gold,lifts his head with another and looks him straight.,shuts the door in his face.,gives grim nervous looks.,makes his way over to the soldier 'house.,1\n15094,lsmdc3018_CINDERELLA_MAN-7987,5046,\"He gives them a shy wave. Later, at the chestnut haired clerk's window, he\",He gives them a shy wave.,\"Later, at the chestnut haired clerk's window, he\",gold,crosses to a row - open door in their office.,places a form on the counter.,stares on a monitor.,steps around a grand sink with a brush and a left hook.,1\n15095,lsmdc3018_CINDERELLA_MAN-7987,5052,Someone stands hunched over the table. Shadows,Someone stands hunched over the table.,Shadows,gold,hold the grown man's head against his hand as he stands beside it.,45 bolts.,mask someone's troubled face.,\"taking cover, someone's grieving brother sits on a leather couch playing a keyboard.\",2\n15096,lsmdc3018_CINDERELLA_MAN-7987,5049,He enters with a bouquet of roses. He,He enters with a bouquet of roses.,He,gold,makes his way through the hotel and down the hall.,gazes at lord chickens.,holds the flowers out over the kitchen table.,spins a stack of garlic on manuscript.,2\n15097,lsmdc3018_CINDERELLA_MAN-7987,5044,\"Now at the relief office, someone stands in one of the many long lines. A few people\",\"Now at the relief office, someone stands in one of the many long lines.\",A few people,gold,raise their binoculars again at size up their face.,walk around the airport.,\"come in while weave, then an old man.\",\"notice him and crowd close, whispering.\",3\n15098,lsmdc3018_CINDERELLA_MAN-7987,5051,Someone reads the attached note and smiles. She,Someone reads the attached note and smiles.,She,gold,runs her hand over her husband's.,glares at him and glares at the sky.,\"takes someone's text, then gives it to someone.\",has her ear to a closed office door and knocks on an ornate - topped door.,0\n15099,lsmdc3018_CINDERELLA_MAN-7987,5043,\"Someone shuts the door in his face. Now at the relief office, someone\",Someone shuts the door in his face.,\"Now at the relief office, someone\",gold,stands in one of the many long lines.,faces someone as he leans in pew with a much makeup artist.,\"appears on the bed, briefly onscreen.\",holds on tightly as he moves on.,0\n15100,lsmdc3018_CINDERELLA_MAN-7987,5048,\"Now at home, someone peers through the front door's window at someone. He\",\"Now at home, someone peers through the front door's window at someone.\",He,gold,bangs on his radio.,enters with a bouquet of roses.,arrives at a photo of someone.,bends over to shoulder height.,1\n15101,lsmdc3018_CINDERELLA_MAN-7987,5050,He holds the flowers out over the kitchen table. Someone,He holds the flowers out over the kitchen table.,Someone,gold,reads the attached note and smiles.,\"is standing in an office office, listening.\",\"enormous dinner with someone, someone, stands on the edge, watching him and chews in a cream mask.\",wakes up and gazes at the shimmering weight.,0\n15102,anetv_9cxGx2BsKkM,6864,Several other clips from a robin hood movie show arrows being shot. It,Several other clips from a robin hood movie show arrows being shot.,It,gold,boys demonstrate technique while throwing a javelin at a target.,continues until the end of the clip.,'s walk through a car to an alley.,appear followed lot of men who are celebrating.,1\n15103,lsmdc0008_Fargo-49770,11873,\"Someone stands in wide shot, hands on hips, looking down at a telephone. After a motionless beat he\",\"Someone stands in wide shot, hands on hips, looking down at a telephone.\",After a motionless beat he,gold,picks up the phone and punches in a number.,\"smiles and glances down as someone struggles to finish someone in the act, all alone - like, embarrassed.\",drumming on drums.,drops between his knees and presses a button on his muddy bar.,0\n15104,lsmdc0008_Fargo-49770,11874,\"As we hear the rumble of an approaching car, the continuing tilt and boom down brings us down the woodsman's body to a pedestal. A sweep of headlights\",\"As we hear the rumble of an approaching car, the continuing tilt and boom down brings us down the woodsman's body to a pedestal.\",A sweep of headlights,gold,appears as he swims through the crowd.,illuminates a sign on the pedestal.,are scattered on the street to another angle.,\"meet, close by by the slight light of his left.\",1\n15105,lsmdc0008_Fargo-49770,11875,From the back seat we hear whimpering. Someone,From the back seat we hear whimpering.,Someone,gold,zooms up from the wall and flies.,\"backs away from the open doorway on the other side of the open walkway, leaning on a gun.\",does a back flip off the pavement.,smokes and gazes out the window.,3\n15106,lsmdc0008_Fargo-49770,11879,\"The trooper walks up the shoulder, one hand resting lightly on top of his holster, his breath steaming in the cold night air. Someone\",\"The trooper walks up the shoulder, one hand resting lightly on top of his holster, his breath steaming in the cold night air.\",Someone,gold,opens his window as the trooper draws up.,stands to a mic hovering above him.,looks on from the pen irritably as someone runs up.,starts to take off a cigarette.,0\n15107,lsmdc0008_Fargo-49770,11878,Fifty yards behind a state trooper has turned on his gumballs. Someone,Fifty yards behind a state trooper has turned on his gumballs.,Someone,gold,is pulling a rounded pistol from a plastic sheet.,flies out of the window.,looks up at the rear - view mirror.,swings himself upside down and disappears through the front door.,2\n15108,lsmdc0008_Fargo-49770,11876,\"Someone stares at him, then turns back to the window. At a loud whoop someone\",\"Someone stares at him, then turns back to the window.\",At a loud whoop someone,gold,smiles to himself and writes.,makes his way across another street holding telephone.,moves from the passenger seat.,starts and looks back out the rear window.,3\n15109,lsmdc0008_Fargo-49770,11880,Someone opens his window as the trooper draws up. Someone,Someone opens his window as the trooper draws up.,Someone,gold,walks into new philadelphia gym.,can not see the side window.,smokes and gazes calmly out his window.,takes a reel across a hanger and sticks it back into the vault.,2\n15110,anetv_z8lxaUC1Shk,1886,A man walks into a room playing his bagpipes. He,A man walks into a room playing his bagpipes.,He,gold,performs several capoeira moves with his arms up.,puts a couple of drums in front of him.,is seated down at a table.,stops playing his bagpipes.,3\n15111,anetv_yrf93aLQXBE,2650,An old video of people surfing is shown. People catch waves and the fat guy,An old video of people surfing is shown.,People catch waves and the fat guy,gold,walking back and forth waving.,drifts up with soap.,gives a thumbs up and heads.,does a pretty good job.,3\n15112,anetv_Y5VEl3e9Hbo,4469,\"Two boys are polishing shoes with brushes. Then, one boy\",Two boys are polishing shoes with brushes.,\"Then, one boy\",gold,goes off to work.,takes a shoe up to play.,grabs a wooden razor.,picks up a yellow shirt and put it in a black shoe.,1\n15113,anetv_Y5VEl3e9Hbo,4471,\"A little boy put his leg in a big shoe and polish with a brush. Then, the other boy\",A little boy put his leg in a big shoe and polish with a brush.,\"Then, the other boy\",gold,brush the painted left forearm and some other toe tips started to hit a flint.,form a tattoo and holds a towel in the boy's hand.,put a shoe on a bucket and put them on top.,put his hand in the shoe to polish it.,3\n15114,anetv_Y5VEl3e9Hbo,4470,\"Then, one boy takes a shoe up to play. A little boy\",\"Then, one boy takes a shoe up to play.\",A little boy,gold,put his leg in a big shoe and polish with a brush.,takes a white shoe and cuts it with an advertisement.,shows how to start a skate park down a sidewalk with a chubby kite while others watch them.,lifts off of balance cue.,0\n15115,anetv_fN2DiOswmOA,2749,Rachel Collin's trip to Chile. There,Rachel Collin's trip to Chile.,There,gold,reception have been converted with bug lawns and pools.,youtube video shows the someone being sliced.,stands under the bright lights.,are several people standing under a canopy at a food market.,3\n15116,anetv_fN2DiOswmOA,2757,\"The finished product is shown on screen, followed by a group of people sitting together and enjoying the salad. The end credits\",\"The finished product is shown on screen, followed by a group of people sitting together and enjoying the salad.\",The end credits,gold,\"appear on the screen, and we hear surfers on the street and pouring water in a blue bowl.\",show off with a bags in the end.,appears in the screen.,are displayed on the screen.,3\n15117,anetv_fN2DiOswmOA,2756,Then the chef places the ingredients in a salad bowl. The finished product,Then the chef places the ingredients in a salad bowl.,The finished product,gold,\"is displayed, then with adding fresh eggs.\",is shown and cooled.,\"is shown on screen, followed by a group of people sitting together and enjoying the salad.\",is laid on and then times sliced.,2\n15118,anetv_fN2DiOswmOA,2750,There are several people standing under a canopy at a food market. Two customers,There are several people standing under a canopy at a food market.,Two customers,gold,\"walk into the living room with te, some of them on their knees together.\",are passed by an elderly person who sits in a blue taxi talking.,are seen talking about how to make their castles.,make a purchase and give money to the seller and give the camera a thumbs up.,3\n15119,anetv_fN2DiOswmOA,2754,A woman eats the cut pieces of hulte. The chef,A woman eats the cut pieces of hulte.,The chef,gold,puts a potato and a piece of bread.,chops some cilantro on the kitchen counter.,is talking in front of the chef cut man.,points at the bearded man's pepper.,1\n15120,anetv_fN2DiOswmOA,2747,The screen shows the title of preparing a Chilean Hulte salad dish. A person,The screen shows the title of preparing a Chilean Hulte salad dish.,A person,gold,puts butter into glasses onto a counter and wraps the mixed ingredients to the bread.,is mixing salad ingredients in a large bowl.,is demonstrating how to use a large sandwich with a stick to spread food.,sticks a selfie stick in the kitchen and ingredients in a bowl.,1\n15121,anetv_fN2DiOswmOA,2752,The chef is showing hulte placed on a kitchen counter. The chef,The chef is showing hulte placed on a kitchen counter.,The chef,gold,\"has a piece of sharpener in the kitchen, showing how to sharpen it and toasting.\",is slicing the hulte in circular bite size pieces.,leads the sandwich into a strainer at various ingredient such as a recipe and place meat.,demonstrates how to make a tea big iron sandwich by lettuce and ham.,1\n15122,anetv_fN2DiOswmOA,2755,The chef chops some cilantro on the kitchen counter. Then the chef,The chef chops some cilantro on the kitchen counter.,Then the chef,gold,puts mayonnaise on a plate in a bowl and shows items on how to cut a surface.,places the ingredients in a salad bowl.,adds paste on the spaghetti and scrubs the remaining firewood.,with the bread to make the sandwich.,1\n15123,anetv_fN2DiOswmOA,2753,The chef is slicing the hulte in circular bite size pieces. A woman,The chef is slicing the hulte in circular bite size pieces.,A woman,gold,measures the egg with saran wrap on the plate.,uses a sautes to cut a tomato.,eats the cut pieces of hulte.,put the meat slices on the bread excitedly.,2\n15124,anetv_88Mt7VfUQBU,16518,A man is kneeling down on a blue mat. Another man,A man is kneeling down on a blue mat.,Another man,gold,is seen speaking to himself and leads into across a boat hitting the object and leads into the group performing aerobic karate exercise.,tries to perform the jump before landing on the mat.,is lifting weights over his head.,kneels down on the ground next to him.,3\n15125,anetv_88Mt7VfUQBU,16519,Another man kneels down on the ground next to him. The man,Another man kneels down on the ground next to him.,The man,gold,lifts up one end of a weight and lifts it over his head.,cuts his arm in a big bottle and how trimming it and shows it to slice it.,continues running down the wall and begins jumping over the building and up and down the stairs.,positions himself on a gravel bar using his foot stuck on the top of an bomb.,0\n15126,lsmdc3069_THE_BOUNTY_HUNTER-4525,3567,The bartender answers the phone. Someone,The bartender answers the phone.,Someone,gold,takes the key from the pocket of his vodka before repeatedly stepping forward.,jots on a coaster.,holds the bottle to her mouth and licks her thumb and thumb.,reluctantly scribbles the file into her pocket.,1\n15127,lsmdc3069_THE_BOUNTY_HUNTER-4525,3568,\"In a stall, someone hangs up. She\",\"In a stall, someone hangs up.\",She,gold,ties a string of her hard hair.,leans over richard parker.,turns to see the approaching branch bite someone.,claps her feet together.,3\n15128,lsmdc3069_THE_BOUNTY_HUNTER-4525,3569,\"She claps her feet together. As she bursts out of the stall, someone\",She claps her feet together.,\"As she bursts out of the stall, someone\",gold,glances back at someone striding.,comes over to look at someone.,lays on the side in bed and observes mr black.,exits a different one.,3\n15129,anetv_hGziyfXmotc,9556,\"The violinist press the strings with four fingers and move the bow. Then, the man stops a little bit and then continues playing, the young man\",The violinist press the strings with four fingers and move the bow.,\"Then, the man stops a little bit and then continues playing, the young man\",gold,stops playing and talks.,\"picks up a beer can, but slow it down.\",picks up the receiver and bows the scene.,makes his head pierced along the center of the ground.,0\n15130,anetv_hGziyfXmotc,9555,\"A young man holds a violin, then he plays violin. The violinist\",\"A young man holds a violin, then he plays violin.\",The violinist,gold,\"put a harmonica in his neck, and play the piano.\",lights the match in his hand and lights up a pass.,press the strings with four fingers and move the bow.,does n't even play the violin.,2\n15131,anetv_hGziyfXmotc,3661,A close up of a violin is seen with a person's hands moving all around. The man,A close up of a violin is seen with a person's hands moving all around.,The man,gold,pushes his feet on the guitar and continues to move back and fourth.,sits up and begins playing the instrument while the camera captures his movements.,begins playing the violin while moving his hands up and down.,finishes the machinery and ends by dropping the chair onto the stage.,2\n15132,anetv_OsrRpGbIpKA,9181,A man stands on a ladder holding wall paper on a wall. the man,A man stands on a ladder holding wall paper on a wall.,the man,gold,assembles a piece of wood and a sander.,takes one hand and scraps the wall paper to the wall.,lays down a pile of photos and adds paper to each other.,continues to paint the wall and the man blows it out into the paint.,1\n15133,anetv_OsrRpGbIpKA,4250,A man is hanging wall paper onto a wall in front of him. He,A man is hanging wall paper onto a wall in front of him.,He,gold,holds a pair of nail tools which he pierces in the section of the car.,has blood on his mouth.,\"walks into the roof, holding the long string with the stick.\",smooths out the wall paper with a scraper.,3\n15134,anetv_OsrRpGbIpKA,9183,The man then applies more wall paper until the wall is covered. The man then,The man then applies more wall paper until the wall is covered.,The man then,gold,\"shows off the vacuum cleaner and a piece of cloth to a closet, then uses it to trim it.\",removes the top of the pumpkin.,grabs a break wallpaper and wipes back up his nose.,cuts out excess wall paper out of the corners and edges.,3\n15135,anetv_OsrRpGbIpKA,9182,The man takes one hand and scraps the wall paper to the wall. the man then,The man takes one hand and scraps the wall paper to the wall.,the man then,gold,polishes the wall hard.,applies more wall paper until the wall is covered.,applies the paper paper over and off into the wall tape.,vacuums a carpet blanket using the sheet of wallpaper.,1\n15136,anetv_45AIj4-_RBw,19101,A young girl is seated in front of a piano. She,A young girl is seated in front of a piano.,She,gold,starts to play a violin by a violin.,talks to the camera for a while.,continues to do sit ups while another watches on the side.,begins playing an accordion.,1\n15137,anetv_45AIj4-_RBw,14110,The camera zooms in on her face as she continues to play. When she is done with the song she,The camera zooms in on her face as she continues to play.,When she is done with the song she,gold,turns and walks across the group.,smiles at the camera.,speaks softly with the camera.,speaks to the camera and smiles in the camera.,1\n15138,anetv_45AIj4-_RBw,14108,A little girl introduces a video where she will play the piano and sing a song. She,A little girl introduces a video where she will play the piano and sing a song.,She,gold,begins to play the song on the piano and sing along as she plays.,plays and takes the box to find a guitar.,is shown in chinese news.,finishes and claps for her.,0\n15139,anetv_45AIj4-_RBw,19102,She talks to the camera for a while. She then,She talks to the camera for a while.,She then,gold,shows back the irons the braid.,puts balaclava on a tree.,proceeds to toss the rods in the air.,\"plays the piano, giving a performance.\",3\n15140,anetv_45AIj4-_RBw,14109,She begins to play the song on the piano and sing along as she plays. The camera,She begins to play the song on the piano and sing along as she plays.,The camera,gold,zooms in on her face as she continues to play.,moves around someone and smiles as she plays a guitar.,pans all around her and moving her tongue up and down.,moves in on the sound of the music next to the musician.,0\n15141,lsmdc3064_SPARKLE_2012-4095,12287,\"Now in the daytime, someone hosts a dinner. Someone\",\"Now in the daytime, someone hosts a dinner.\",Someone,gold,removes her coat from her motel.,starts sorting clothes into a box.,takes a glass out of his case.,sits at the head of the table.,3\n15142,lsmdc3064_SPARKLE_2012-4095,12286,\"With his chin jutting forward, someone turns back. Someone\",\"With his chin jutting forward, someone turns back.\",Someone,gold,bats a hanging lamp and storms off.,pulls someone away from the departing position.,searches a book on a flannel shirt.,\"faces the statue, then turns to watch on the side.\",0\n15143,lsmdc3019_COLOMBIANA-8838,3578,\"The bodyguards file into the mansion. As someone supervises the men, someone\",The bodyguards file into the mansion.,\"As someone supervises the men, someone\",gold,scans an between lockers.,\"scrutinizes the egg uneasily, and takes a bite.\",rolls out from the under the van just before it pulls away.,looks at someone and a smile.,2\n15144,lsmdc3019_COLOMBIANA-8838,3602,He notices a flower resting three panels away on the pool's glass. His nervous eyes,He notices a flower resting three panels away on the pool's glass.,His nervous eyes,gold,stare at the diner as he swallows.,scan the area as he walks across the pool.,fades to someone as he gazes at him through more tearful eyes.,\"scan the walls, blonde paintings upwards.\",1\n15145,lsmdc3019_COLOMBIANA-8838,3597,\"Another guard lies dead beside him. Staring cautiously, someone\",Another guard lies dead beside him.,\"Staring cautiously, someone\",gold,grabs a gun resting in one of men's hands.,gets up and sniffs the air.,eyes someone and someone.,reaches forward and drinks from his son's shoulder.,0\n15146,lsmdc3019_COLOMBIANA-8838,3572,\"Lounging with two women, the someone laughs. That night, four women in their underwear\",\"Lounging with two women, the someone laughs.\",\"That night, four women in their underwear\",gold,comes out of an ivy - gray road and cross the sides of the large road.,accompany him to a bedroom.,helps maneuver a hospital table.,slide their squares on their shoulders.,1\n15147,lsmdc3019_COLOMBIANA-8838,3599,His bare legs tremble slightly as he moves down a dark corridor past another dead bodyguard. He,His bare legs tremble slightly as he moves down a dark corridor past another dead bodyguard.,He,gold,\"stands, puts his glasses on, and gestures to a row of desks.\",takes a deep breath as he rises to his knees.,follows a message as he comes over to her.,\"creeps down a flight of stairs, then presses his back to a wall as he reaches the bottom.\",3\n15148,lsmdc3019_COLOMBIANA-8838,3592,\"As she aims her weapon, a blonde snuggles up to the portly man in her sleep. Someone\",\"As she aims her weapon, a blonde snuggles up to the portly man in her sleep.\",Someone,gold,waves incense particular someone with the phone on a table and finds a woman staring at them.,\"follows from behind, raising his cell and heads off.\",bolts upright then looks down at his bare chest.,puts a curtain over his lips.,2\n15149,lsmdc3019_COLOMBIANA-8838,3569,Someone touches a wind chime made from tire rims as she enters the garage. She,Someone touches a wind chime made from tire rims as she enters the garage.,She,gold,kisses someone's cheek.,\"lies down on the table, looking down.\",takes off her jacket.,looks someone in the eye.,0\n15150,lsmdc3019_COLOMBIANA-8838,3604,\"Stopping in front of the cataleya orchid, he picks it up and squints as he examines it. He\",\"Stopping in front of the cataleya orchid, he picks it up and squints as he examines it.\",He,gold,\"lifts the flower to his nose, closes his eyes, and takes a sniff.\",rests his finger gently on his forehead then chews his fingers.,takes an eight - fold - sized stone from his own pocket as she hands it to him.,reaches for scissor and injects.,0\n15151,lsmdc3019_COLOMBIANA-8838,3575,\"Someone winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed. He\",\"Someone winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed.\",He,gold,frames his crotch with his hands then hurries over and belly flops onto the bed.,\"is back against a wall, peering out into the figure.\",is immediately searching for someone.,settles into his pants.,0\n15152,lsmdc3019_COLOMBIANA-8838,3614,\"His blood billows in the water. Walking onto the glass, someone\",His blood billows in the water.,\"Walking onto the glass, someone\",gold,moves the gun into someone's neck.,quickly turns someone's head.,directs it from his eyes and hurls him onto the cauldron.,picks up the orchid and drops it into the pool.,3\n15153,lsmdc3019_COLOMBIANA-8838,3595,\"With his brow creased worriedly, he tries to rub it off. In the hall, he\",\"With his brow creased worriedly, he tries to rub it off.\",\"In the hall, he\",gold,wears a t - shirt.,finds a bodyguard lying on the floor with a pool of blood by his head.,pauses and gazes intently at the iceberg.,finds someone's texting.,1\n15154,lsmdc3019_COLOMBIANA-8838,3565,\"A message appears, Access denied.. He\",\"A message appears, Access denied..\",He,gold,weaves the flaming destroyer.,sits back in his chair.,takes the bottle away and places the light out on a table.,writes documents on an envelope.,1\n15155,lsmdc3019_COLOMBIANA-8838,3589,\"She glances around as she screws a silencer onto its barrel. With her fingers curled around the gun's handle, she\",She glances around as she screws a silencer onto its barrel.,\"With her fingers curled around the gun's handle, she\",gold,sits on a waiting swing.,rests the brim aside.,does it a few inches.,hurries into the mansion.,3\n15156,lsmdc3019_COLOMBIANA-8838,3609,He fires one gun then the other but finds them both empty. She shoots him in his leg and he,He fires one gun then the other but finds them both empty.,She shoots him in his leg and he,gold,sinks to one knee.,pounds the chest button.,wrestles him up onto the floor.,pulls him onto a dark street.,0\n15157,lsmdc3019_COLOMBIANA-8838,3579,\"As someone supervises the men, someone rolls out from the under the van just before it pulls away. An oblivious bodyguard\",\"As someone supervises the men, someone rolls out from the under the van just before it pulls away.\",An oblivious bodyguard,gold,puts them on the stove.,stands at a window holding a handgun.,comes out and beams.,creeps down towards him.,1\n15158,lsmdc3019_COLOMBIANA-8838,3612,He glances at the sharks below him. Someone shoots him in the shoulder and he,He glances at the sharks below him.,Someone shoots him in the shoulder and he,gold,smashes down the street like an approaching grizzly.,tumbles into the uncovered gap in the panel.,looks for his hand.,tries to free him.,1\n15159,lsmdc3019_COLOMBIANA-8838,3594,\"He finds the words thief written in black lipstick above a drawing of the cataleya orchid. With his brow creased worriedly, he\",He finds the words thief written in black lipstick above a drawing of the cataleya orchid.,\"With his brow creased worriedly, he\",gold,glances over his shoulder.,takes an envelope and sorts through his hundred - ejects drawer.,tries to rub it off.,clutches his cheek on his sleeve.,2\n15160,lsmdc3019_COLOMBIANA-8838,3583,\"As it swims away, a hand appears under the glass. Wearing a black short sleeved leotard and a utility belt, someone\",\"As it swims away, a hand appears under the glass.\",\"Wearing a black short sleeved leotard and a utility belt, someone\",gold,lifts a lever down and sets it on on the patio bench.,pulls herself along the panels.,wears a wet black veil.,staggers dominating a cartwheel.,1\n15161,lsmdc3019_COLOMBIANA-8838,3606,\"Opening his eyes, he smirks as he lifts his face from the flower. Someone\",\"Opening his eyes, he smirks as he lifts his face from the flower.\",Someone,gold,rises from a chair in the portico behind him.,lowers his head and lowers his voice before continuing.,\"follows to stare after someone, then looks down.\",\"stares at someone, then shakes his head fondly.\",0\n15162,lsmdc3019_COLOMBIANA-8838,3605,\"He lifts the flower to his nose, closes his eyes, and takes a sniff. Opening his eyes, he\",\"He lifts the flower to his nose, closes his eyes, and takes a sniff.\",\"Opening his eyes, he\",gold,\"finds himself in a trance, blood on his back as he runs through a busy city.\",smirks as he lifts his face from the flower.,finds his wife sitting on a wooden bench with the manuscript.,stares into a mirror.,1\n15163,lsmdc3019_COLOMBIANA-8838,3568,\"Stepping out from the cage, she closes the door and gives them a firm look. The mastiffs\",\"Stepping out from the cage, she closes the door and gives them a firm look.\",The mastiffs,gold,\"descends to the bottom of the raft, grabs the rope, sways along the wooden bench.\",rush to their bowls.,\"lifts him off a fissure, someone rides straight back.\",barrels as someone struggles to reach it.,1\n15164,lsmdc3019_COLOMBIANA-8838,3563,Someone gives a weary shrug then leans forward and rests his elbows on his legs. Our focus,Someone gives a weary shrug then leans forward and rests his elbows on his legs.,Our focus,gold,\"lifts from his robes, revealing.\",shifts and someone glares.,shifts to his niece as she leans forward as well.,lingers on the frozen screen as his cursor returns to the subscribe page.,2\n15165,lsmdc3019_COLOMBIANA-8838,3577,Several bodyguards get out and someone approaches them. The bodyguards,Several bodyguards get out and someone approaches them.,The bodyguards,gold,quickly force the thugs to his left.,start up the run.,stop someone and starts firing.,file into the mansion.,3\n15166,lsmdc3019_COLOMBIANA-8838,3566,Now someone approaches two caged mastiffs. She,Now someone approaches two caged mastiffs.,She,gold,rolls down a staircase.,notices someone's syringe in the kitchen.,enters their fenced in area.,sings into a circle and turns off the tap.,2\n15167,lsmdc3019_COLOMBIANA-8838,3598,\"Staring cautiously, someone grabs a gun resting in one of men's hands. His bare legs\",\"Staring cautiously, someone grabs a gun resting in one of men's hands.\",His bare legs,gold,\"dangle sullenly from his armpit, its face scrubs deeply from his face.\",tremble slightly as he moves down a dark corridor past another dead bodyguard.,give her a solemn stare.,slowly spread across his davenport.,1\n15168,lsmdc3019_COLOMBIANA-8838,3610,She shoots him in his leg and he sinks to one knee. A shot to his other leg,She shoots him in his leg and he sinks to one knee.,A shot to his other leg,gold,sends him down on all fours.,\"hits the horizontal ledge, pulling his sword with his teeth.\",is shown on the wall.,shoots straight in the crotch.,0\n15169,lsmdc3019_COLOMBIANA-8838,3596,\"In the hall, he finds a bodyguard lying on the floor with a pool of blood by his head. Another guard\",\"In the hall, he finds a bodyguard lying on the floor with a pool of blood by his head.\",Another guard,gold,walking in with his arms extended.,lies dead beside him.,smashes the spear into someone's throat.,walks close to him.,1\n15170,lsmdc3019_COLOMBIANA-8838,3564,An image of the orchid appears. The agent,An image of the orchid appears.,The agent,gold,scans the legos uneasily.,holds up the drawing and finds that it matches perfectly.,\"lays, knocking over the glass warning replays he talks much about the chemical in the man - to - law.\",uses the watch gown and paces between the rohirrim overgrown enclosure.,1\n15171,lsmdc3019_COLOMBIANA-8838,3571,\"Taking out a stack of money, she fans through it. Sharks\",\"Taking out a stack of money, she fans through it.\",Sharks,gold,\"she drops her purse, she hurries over, resting her arms on her shoulders as they watch the woman.\",swim in the water beneath her.,\"in black eyelashes, someone returns her attention to her son, her face bruised.\",spin around the table.,1\n15172,lsmdc3019_COLOMBIANA-8838,3584,\"Wearing a black short sleeved leotard and a utility belt, someone pulls herself along the panels. Two sharks\",\"Wearing a black short sleeved leotard and a utility belt, someone pulls herself along the panels.\",Two sharks,gold,have spread across the surrounding ground.,are shown in red central pools as people gather work - a flashback comes out into a hall.,\"strut through the narrow windows, and lie down on them.\",swim nearby paying little attention to the graceful intruder.,3\n15173,lsmdc3019_COLOMBIANA-8838,3590,\"With her fingers curled around the gun's handle, she hurries into the mansion. In his bedroom, the portly scam artist\",\"With her fingers curled around the gun's handle, she hurries into the mansion.\",\"In his bedroom, the portly scam artist\",gold,shines a faint light tap on his ear.,sleeps amid his scantily clad companions.,grinds a poster on the table and looks around nervously.,sunken belly moves the offscreen hookah.,1\n15174,lsmdc3019_COLOMBIANA-8838,3591,\"In his bedroom, the portly scam artist sleeps amid his scantily clad companions. As she aims her weapon, a blonde\",\"In his bedroom, the portly scam artist sleeps amid his scantily clad companions.\",\"As she aims her weapon, a blonde\",gold,passes out to the driver's van and watches as it flies.,snuggles up to the portly man in her sleep.,appears in the doorway holding a pulled up strip and leads the rope in.,flapping the police draw latex gloves behind her.,1\n15175,lsmdc3019_COLOMBIANA-8838,3607,Someone rises from a chair in the portico behind him. Someone,Someone rises from a chair in the portico behind him.,Someone,gold,stands next to a servant.,walks up and sees someone reaching the church.,shakes his head as he turns to face her.,gets a drink from a nearby wall.,2\n15176,lsmdc3019_COLOMBIANA-8838,3588,\"Pushing herself out of the pool, she draws a gun at her hip. She\",\"Pushing herself out of the pool, she draws a gun at her hip.\",She,gold,tries to cover the contact.,\"hits the wall hard, smashing through the cab window.\",glances around as she screws a silencer onto its barrel.,sizes up her drink.,2\n15177,lsmdc3019_COLOMBIANA-8838,3573,\"That night, four women in their underwear accompany him to a bedroom. He\",\"That night, four women in their underwear accompany him to a bedroom.\",He,gold,carries a suitcase the other way.,raises his thumb sharply and reaches the top.,turns to a bodyguard.,steps back and glances at him.,2\n15178,lsmdc3019_COLOMBIANA-8838,3603,\"His nervous eyes scan the area as he walks across the pool. Stopping in front of the cataleya orchid, he\",His nervous eyes scan the area as he walks across the pool.,\"Stopping in front of the cataleya orchid, he\",gold,walks toward a row of rock gazing out from the bank below.,watches the film glide along through until it pauses in front of a marketing graphic.,sees the film pod opens up close.,picks it up and squints as he examines it.,3\n15179,lsmdc3019_COLOMBIANA-8838,3600,\"Bending over another dead bodyguard, he takes his gun. Armed with a pistol in each hand, he\",\"Bending over another dead bodyguard, he takes his gun.\",\"Armed with a pistol in each hand, he\",gold,abandons it as it lands up under its feet.,grinds a blade into his blood.,steps into the courtyard.,tries as flames jumps from the shells.,2\n15180,lsmdc3019_COLOMBIANA-8838,3613,\"As the sharks attack, he flails and grabs futily at the glass. His blood\",\"As the sharks attack, he flails and grabs futily at the glass.\",His blood,gold,proceeds to fall when it works.,billows in the water.,flowing all over his skin.,spurt from his face sharp and bloody.,1\n15181,lsmdc3019_COLOMBIANA-8838,3582,\"A view through the pool's glass panels shows a shark gliding through the pale blue water. As it swims away, a hand\",A view through the pool's glass panels shows a shark gliding through the pale blue water.,\"As it swims away, a hand\",gold,swims on someone's shoulder.,comes with a faces brush and someone's head is visible again and the boy grimaces at it.,appears under the glass.,\"reaches for his face, gently squeezes his body straight into hers.\",2\n15182,lsmdc3019_COLOMBIANA-8838,3574,He turns to a bodyguard. Someone,He turns to a bodyguard.,Someone,gold,regains her composure now and races over to the distracted someone.,\"winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed.\",bites her lover's thin hands.,takes off his glasses and sprays his shaven face.,1\n15183,lsmdc3019_COLOMBIANA-8838,3580,\"An oblivious bodyguard stands at a window holding a handgun. In the courtyard, a guard\",An oblivious bodyguard stands at a window holding a handgun.,\"In the courtyard, a guard\",gold,puffs on a cigarette then heads inside.,runs to someone's apartment door.,looks at the assembled students in the crowd.,extends a tense book.,0\n15184,lsmdc3019_COLOMBIANA-8838,3567,\"She places a steak in each of their bowls. Stepping out from the cage, she\",She places a steak in each of their bowls.,\"Stepping out from the cage, she\",gold,lands on top of him.,pets the kitten's cat.,stops on the curb and puts the card away.,closes the door and gives them a firm look.,3\n15185,lsmdc3019_COLOMBIANA-8838,3585,Two sharks swim nearby paying little attention to the graceful intruder. Someone,Two sharks swim nearby paying little attention to the graceful intruder.,Someone,gold,\"raises himself to the camera, open the water and cries.\",nears the opposite end of the pool and pushes up one of the thick glass panels.,shows an additional beautiful method of use.,whirls around while holding among the other players.,1\n15186,lsmdc3019_COLOMBIANA-8838,3593,Someone bolts upright then looks down at his bare chest. He,Someone bolts upright then looks down at his bare chest.,He,gold,finds the words thief written in black lipstick above a drawing of the cataleya orchid.,\"keeps his gaze fixed on the rapid - violent water, then rushes in the side opposite fires with someone.\",writes on the window and tosses it from his pocket.,are in a nearby smallest sack.,0\n15187,lsmdc3019_COLOMBIANA-8838,3611,A shot to his other leg sends him down on all fours. He,A shot to his other leg sends him down on all fours.,He,gold,leaps up and flies into the bird - face and back door.,yanks out the candle with his fingers.,kicks and ducks at the buzz.,glances at the sharks below him.,3\n15188,lsmdc3019_COLOMBIANA-8838,3615,\"Walking onto the glass, someone picks up the orchid and drops it into the pool. In his office, someone\",\"Walking onto the glass, someone picks up the orchid and drops it into the pool.\",\"In his office, someone\",gold,adjusts the photos of aglow's cube.,heads toward the concierge.,\"throws out a collection magazine, followed by newspaper cuttings.\",reads a newspaper's front page.,3\n15189,anetv_fUJ88Ir7Dgc,17381,A person is seen walking around a track in the middle of a large audience. The athlete then,A person is seen walking around a track in the middle of a large audience.,The athlete then,gold,sits down while another stands next to him and prepares.,jumps one several more times.,jumps into the pit and stands.,finds himself performing again in slow motion as well as pit a machine.,0\n15190,anetv_fUJ88Ir7Dgc,17382,The athlete then sits down while another stands next to him and prepares. The man,The athlete then sits down while another stands next to him and prepares.,The man,gold,moves across to grab him then begins balancing on the wall while swinging forwards and fourth while spinning himself back and fourth on his feet,keeps running and still finds himself in the water.,continues hitting the man with his hands up and down while not as well as him put down and finishes reading.,is then seen jumping over a bar followed by the same shot being shown again.,3\n15191,lsmdc0028_The_Crying_Game-63535,17205,She stretches up with her whole body over him. They,She stretches up with her whole body over him.,They,gold,spit bob balls down someone and grabs him in both arms.,grow suddenly and violently passionate.,start doing tricks on the bars.,and foreman are on ahead of the boat.,1\n15192,lsmdc0028_The_Crying_Game-63535,17191,\"His reverie is broken by the sound of a voice outside - - someone's. She opens the window door, and we\",His reverie is broken by the sound of a voice outside - - someone's.,\"She opens the window door, and we\",gold,\"see someone on the street, in a neck brace.\",\"see him beaming as his wife, beaming, keeps looking down at the locket.\",tilt to look undecided.,\"see offscreen as someone looks at it, then comes to shake it off again.\",0\n15193,lsmdc0028_The_Crying_Game-63535,17193,She goes back into the room and begins taking things up. She,She goes back into the room and begins taking things up.,She,gold,stands off the bar on the floor and starts to grab a cup.,starts by picking up the yoga and tossing it aside.,\"flings things down: men's clothes, leather trousers, a suitcase, a teddy bear.\",picks up a bucket of wood and holds it up against the wall.,2\n15194,lsmdc0028_The_Crying_Game-63535,17195,Someone grabs a large goldfish bowl and flings it down. The bowl,Someone grabs a large goldfish bowl and flings it down.,The bowl,gold,is turned upside in.,yanks the baked potato up to its position.,is filled as someone walks out from his room.,breaks to bits on the pavement.,3\n15195,lsmdc0028_The_Crying_Game-63535,17183,Someone pulls her into a doorway to avoid it. The car,Someone pulls her into a doorway to avoid it.,The car,gold,is still getting beat.,crashes alongside of the first car.,blows against her face.,\"continues down the road, stops, and then screeches off.\",3\n15196,lsmdc0028_The_Crying_Game-63535,17206,The photograph above them seems to smile. He,The photograph above them seems to smile.,He,gold,\"gets back to work with his new haircut, and to the chair high in the air.\",draws up her dress with his hands.,sees a hippie pinball under the machine.,jerks her hips to the center of her modern apartment ads.,1\n15197,lsmdc0028_The_Crying_Game-63535,17190,The camera tracks into the soldier's smiling face. His reverie,The camera tracks into the soldier's smiling face.,His reverie,gold,is broken by the sound of a voice outside - - someone's.,becomes crystalline and central.,is caught by a.,shows the attempt of someone!,0\n15198,lsmdc0028_The_Crying_Game-63535,17179,People looking at their menus. A waiter,People looking at their menus.,A waiter,gold,stands in front of the open door.,comes up from her.,spots the cafe at the entrance of the casserole dish counter followed by the middle - aged man.,\"places drinks on their table, then leaves.\",3\n15199,lsmdc0028_The_Crying_Game-63535,17177,\"The girls inside the salon pull back a curtain, and they all clap. She\",\"The girls inside the salon pull back a curtain, and they all clap.\",She,gold,drops the bottle of wine.,takes his arm and walks off with him.,sits nude in the wall.,smiles to the camera as it plays them with faced.,1\n15200,lsmdc0028_The_Crying_Game-63535,17182,\"And suddenly a car drives very fast toward them, headlights on. Someone\",\"And suddenly a car drives very fast toward them, headlights on.\",Someone,gold,moves out of the truck.,pulls her into a doorway to avoid it.,pulls up and runs up to her.,slows to a halt.,1\n15201,lsmdc0028_The_Crying_Game-63535,17200,Someone walks past the photograph and sits down. He,Someone walks past the photograph and sits down.,He,gold,looks from her to the picture.,pulls his essay from his pocket.,\"stands up and gives a few hectic sobs, then breaks away into tears.\",replaces the pages shot forward and dances on it.,0\n15202,lsmdc0028_The_Crying_Game-63535,17197,\"Goldfish thrash around in the street. Upstairs, someone\",Goldfish thrash around in the street.,\"Upstairs, someone\",gold,finds someone swigging a mug from a sitting table.,closes the window shut.,enters some paperwork with a notebook.,drives him toward an observation pole.,1\n15203,lsmdc0028_The_Crying_Game-63535,17180,\"A waiter places drinks on their table, then leaves. They\",\"A waiter places drinks on their table, then leaves.\",They,gold,are walking in an alleyway toward her house.,shoot through a glass door.,\"stop her, looking up at the dancing guests.\",\"are standing at the table behind him, watching the sink.\",0\n15204,lsmdc0028_The_Crying_Game-63535,17184,\"The car continues down the road, stops, and then screeches off. She\",\"The car continues down the road, stops, and then screeches off.\",She,gold,looks down toward where the car has pulled away.,checks the top of the curve and rides in the water.,\"travel up on the elliptical, showing a set of food at the center.\",turns and hobbles away in the dirt.,0\n15205,lsmdc0028_The_Crying_Game-63535,17186,Someone comes in in the darkness. Someone,Someone comes in in the darkness.,Someone,gold,puts his hand towards someone.,pounds his shirtless fist against hers.,talks about his cellphone as he watches about it.,stands like a shadow in the doorway.,3\n15206,lsmdc0028_The_Crying_Game-63535,17204,And they fall into one another's arms. She,And they fall into one another's arms.,She,gold,stretches up with her whole body over him.,backs them apart with one hand and her head pads up to another railing.,sinks to his knees.,collapses on the couch.,0\n15207,lsmdc0028_The_Crying_Game-63535,17181,They are walking in an alleyway toward her house. And suddenly a car,They are walking in an alleyway toward her house.,And suddenly a car,gold,flashes through the light.,\"drives very fast toward them, headlights on.\",is driven in her car with a personal leash.,flies into the battlements.,1\n15208,lsmdc0028_The_Crying_Game-63535,17201,He looks from her to the picture. He,He looks from her to the picture.,He,gold,reaches for her arm.,looks down at her briefly.,smiles as he finishes.,nods toward the picture.,3\n15209,lsmdc0028_The_Crying_Game-63535,17198,\"Upstairs, someone closes the window shut. Someone\",\"Upstairs, someone closes the window shut.\",Someone,gold,\"steps out, clutching his keys and listening.\",stands outside at the kitchen table.,reacts with a map.,stands as someone hands him a glass.,3\n15210,lsmdc0028_The_Crying_Game-63535,17175,\"Someone stands and looks down at someone, who turns to leave. Someone\",\"Someone stands and looks down at someone, who turns to leave.\",Someone,gold,stumbles up to her.,\"walks out of the salon, smiling, and walks toward someone.\",\"walks up to the piano and picks him up, backing up to him.\",stares at the marker.,1\n15211,lsmdc0028_The_Crying_Game-63535,17196,The bowl breaks to bits on the pavement. Goldfish,The bowl breaks to bits on the pavement.,Goldfish,gold,\"see people, at a shop bank on the projects.\",eyes metal as she steps away.,thrash around in the street.,return to the beat - faced man with the headlamps of the photo.,2\n15212,lsmdc0028_The_Crying_Game-63535,17188,He looks around the room; there is an exaggerated femininity about everything in it. Someone,He looks around the room; there is an exaggerated femininity about everything in it.,Someone,gold,\"puts the hat on, kicking the door shut, and goes past a set of pipes and depths of the narrow passage.\",\"is traveling in less than a minute, equally quick and annoyed.\",looks at the mantelpiece and sees a picture of someone.,goes into a library.,2\n15213,lsmdc0028_The_Crying_Game-63535,17176,\"Someone walks out of the salon, smiling, and walks toward someone. Someone\",\"Someone walks out of the salon, smiling, and walks toward someone.\",Someone,gold,'s on the swing next to the railings.,\"cautiously on his seat, leans in to the open door.\",\"faces someone, who shifts his uneasy gaze.\",takes a bunch of flowers from behind his back.,3\n15214,lsmdc0028_The_Crying_Game-63535,17194,\"Someone looks to the man down in the street, a parody of rejection with his things in his arms. Someone\",\"Someone looks to the man down in the street, a parody of rejection with his things in his arms.\",Someone,gold,looks out to him like the tabby from beneath him.,does n't just have his right arm on his arm.,uses a handheld device on the wooden floor.,grabs a large goldfish bowl and flings it down.,3\n15215,lsmdc0028_The_Crying_Game-63535,17203,She looks down into her drink. And they,She looks down into her drink.,And they,gold,look regard each other for a moment.,\"both stand forward, staring at one another.\",fall into one another's arms.,\"'re clean, tailored, tack - faced.\",2\n15216,lsmdc0028_The_Crying_Game-63535,17174,She goes in and closes the door. Someone,She goes in and closes the door.,Someone,gold,\"stands and looks down at someone, who turns to leave.\",throws through the scanner lab.,is in his raincoat at the airport.,flicks a lighter causing her to flash away.,0\n15217,lsmdc0028_The_Crying_Game-63535,17202,He nods toward the picture. She,He nods toward the picture.,She,gold,\"looks up, shifting his attention to the hospital, then looks at someone.\",looks down into her drink.,shifts his gaze to a hangar leaving someone.,lifts a helmet cap.,1\n15218,lsmdc0028_The_Crying_Game-63535,17189,Someone looks at the mantelpiece and sees a picture of someone. The camera,Someone looks at the mantelpiece and sees a picture of someone.,The camera,gold,tracks into the soldier's smiling face.,trained briefly shifts on the tv.,waddles away to the face.,\"turns to reveal someone, a handsome, naked dog, looks around.\",0\n15219,lsmdc0028_The_Crying_Game-63535,17192,\"She opens the window door, and we see someone on the street, in a neck brace. She\",\"She opens the window door, and we see someone on the street, in a neck brace.\",She,gold,goes back into the room and begins taking things up.,holds someone over her head and is just about to put her arm in the shoulder.,\"coolly raises his eyebrows and jerks his arms in higher, changing the call button.\",jerks up at the water draining from his skin to look at her chest.,0\n15220,lsmdc0028_The_Crying_Game-63535,17178,She takes his arm and walks off with him. People,She takes his arm and walks off with him.,People,gold,pull on the road.,help him up with the basketball.,looking at their menus.,read someone open the book.,2\n15221,anetv_2XOTxAZZhsQ,4916,A girl with a long pony tail is in the kitchen cleaning up the dishes and talking. She then,A girl with a long pony tail is in the kitchen cleaning up the dishes and talking.,She then,gold,\"tries it back olive and applies it to the woman's plate, only the camera pans over to show the smiling baking dish.\",puts them in the dogs eyes for a time as she running past.,grabs a pan and walks to throw something in the trash.,runs back to the table and places baking soap on her feet.,2\n15222,anetv_2XOTxAZZhsQ,19147,A woman is seen moving around a kitchen putting dishes away. She,A woman is seen moving around a kitchen putting dishes away.,She,gold,begins hanging something on the shirt while placing it down the drain.,dumps cleaning items into her basket and evening them out.,washes more dishes and speaks to other.,then begins with a baking pan and still mixing ingredients.,2\n15223,anetv_2XOTxAZZhsQ,19148,She washes more dishes and speaks to other. A close up of a boiling pot,She washes more dishes and speaks to other.,A close up of a boiling pot,gold,falls off a board and fires out.,appears followed by several more ingredients and food.,is shown as she continues to work.,is shown before mixes hard.,2\n15224,anetv_2XOTxAZZhsQ,4917,\"She then grabs a pan and walks to throw something in the trash. After, a stove is shown while something is boiling and several people\",She then grabs a pan and walks to throw something in the trash.,\"After, a stove is shown while something is boiling and several people\",gold,are putting it on a baby table.,are mixing and putting it down on buffet plates.,are sitting at the table doing homework.,are walking around a tree on the top of a pile.,2\n15225,lsmdc0001_American_Beauty-46173,10556,\": It's the photo we saw earlier of him, people, taken several years ago at an amusement park. It\",\": It's the photo we saw earlier of him, people, taken several years ago at an amusement park.\",It,gold,has missed a quiet town.,\"lifts his shirt, and then lowers it.\",'s startling how happy they look.,waves while numerous with mushroom - looking figures.,2\n15226,lsmdc0001_American_Beauty-46173,10558,\"He suddenly seems older, more mature. After a beat, the barrel of a gun\",\"He suddenly seems older, more mature.\",\"After a beat, the barrel of a gun\",gold,is pushed at someone's neck.,obscures the boys face.,is already around the back of his head.,\"rises up behind his head, aimed at the base of his skull.\",3\n15227,lsmdc0001_American_Beauty-46173,10561,\"Someone comes down the stairs, followed by someone. Someone\",\"Someone comes down the stairs, followed by someone.\",Someone,gold,slides out of the room to tend to others.,trails behind her as she runs her hand through her hair.,\"opens the door from the dining room, then stops.\",\"stands at the bar, still muttering to himself.\",2\n15228,lsmdc0001_American_Beauty-46173,10555,\"Someone crosses to the kitchen table, where he sits and studies the photo. : It\",\"Someone crosses to the kitchen table, where he sits and studies the photo.\",: It,gold,reads someone's letter.,\", the bearded old man hands a photo to someone.\",finds it unlocked.,\"'s the photo we saw earlier of him, people, taken several years ago at an amusement park.\",3\n15229,lsmdc0001_American_Beauty-46173,10557,It's startling how happy they look. He suddenly,It's startling how happy they look.,He suddenly,gold,comes to the gaps in the wondering what he is doing.,\"turns a look at him, disappointed and pushes it back into place.\",\"seems older, more mature.\",\"stops and looks round at his mother, who now looks very satisfied, as not much of her snowflake.\",2\n15230,lsmdc0001_American_Beauty-46173,10560,\"Instantly, the tile is sprayed with blood, the same deep crimson as the roses. Someone\",\"Instantly, the tile is sprayed with blood, the same deep crimson as the roses.\",Someone,gold,\"comes down the stairs, followed by someone.\",rips the nails out of the shadows as fran roll down the stairs.,sits in bed as someone tweaks the other's shoes.,raise their reptilian legs to take their positions forward.,0\n15231,lsmdc0001_American_Beauty-46173,10563,\"Someone comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid. Someone looks back at us; his eyes are lifeless, but he\",\"Someone comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid.\",\"Someone looks back at us; his eyes are lifeless, but he\",gold,sees no sign of what he sees.,keeps kneeling behind a brick of debris.,keeps his ear on a flow.,is smiling the same slight smile.,3\n15232,lsmdc0001_American_Beauty-46173,10562,A pool of blood is forming on the kitchen table. Someone,A pool of blood is forming on the kitchen table.,Someone,gold,\"puts the parts in the paper, and someone puts it away.\",takes the litter too.,places in her hand to uncover the face.,\"comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid.\",3\n15233,lsmdc0001_American_Beauty-46173,10559,\"After a beat, the barrel of a gun rises up behind his head, aimed at the base of his skull. Instantly, the tile\",\"After a beat, the barrel of a gun rises up behind his head, aimed at the base of his skull.\",\"Instantly, the tile\",gold,drops on the floor dead as he staggers out and lands the land far far away.,crashes into the bowl and bringing its head to someone's chest.,\"is sprayed with blood, the same deep crimson as the roses.\",spills down to another hole in the hotel room.,2\n15234,anetv_5sYPXv0RkiM,3950,A man stands next to a pile of wood holding tools on his shoulders. The man,A man stands next to a pile of wood holding tools on his shoulders.,The man,gold,logs and puts the nuts in the fire.,uses a large ax to chop logs standing upright in a grassy forested area area.,swings the swing around the man on the swing.,demonstrates how to remove wood from the christmas tree.,1\n15235,anetv_mFSdzT5gXQs,13788,\"A computer generated game of a man, he starts spinning. He turns around quickly and lets go of the frisbee and the refs\",\"A computer generated game of a man, he starts spinning.\",He turns around quickly and lets go of the frisbee and the refs,gold,is trying to get it to a picture.,sweeps off ice again.,run up to mark where it lands.,makes its way down the side of the hood.,2\n15236,anetv_mFSdzT5gXQs,13789,\"He turns around quickly and lets go of the frisbee and the refs run up to mark where it lands. The man starts to do it again, he\",He turns around quickly and lets go of the frisbee and the refs run up to mark where it lands.,\"The man starts to do it again, he\",gold,continues to once again demonstrate tricks.,spins and throws again.,stops turning towards the dog.,turns it off to demonstrate more of what he'll do.,1\n15237,anetv_GjjRDUirW7g,17762,A man is seen speaking to the camera while holding a box up to show an instrument inside. The man,A man is seen speaking to the camera while holding a box up to show an instrument inside.,The man,gold,picks up the ball and begins throwing it and pushing it all around him.,clips a white part in the paint while looking into the camera.,pulls out the harmonica and continues to show it off to the camera.,picks up the flute and begins playing the drums while speaking to the camera.,2\n15238,anetv_GjjRDUirW7g,17763,The man pulls out the harmonica and continues to show it off to the camera. The man,The man pulls out the harmonica and continues to show it off to the camera.,The man,gold,continues to push the accordion while looking back to the camera.,\"continues playing again and the man continues playing, demonstrating it around to speak to the camera.\",plays the harmonica and pauses to hold it up to the screen as well as a picture.,pauses to speak to the camera while the camera captures their movements.,2\n15239,anetv_OUfVZuWyqJQ,13975,The man in jump stilts runs from the cops on a city street. The man,The man in jump stilts runs from the cops on a city street.,The man,gold,stops running and stands up.,turns away while peeking through a window.,pushes through a market.,finishes skateboarding and kneels down behind a parking lot.,2\n15240,anetv_OUfVZuWyqJQ,13974,A man in jump stilts throws a bag over his shoulder and leaves a bank. The man in jump stilts,A man in jump stilts throws a bag over his shoulder and leaves a bank.,The man in jump stilts,gold,does a high jump while the crowd cheers on the screen.,does a handstand as he makes his way down to the right.,runs from the cops on a city street.,does a high flip to the jump.,2\n15241,anetv_OUfVZuWyqJQ,13980,The man opens the bag and counts his cash. We,The man opens the bag and counts his cash.,We,gold,see the lady in the water.,notes with his wallet on someone's license.,see a closing title screen.,\"the ticket on the wooden floor, the woman removes the lid and watches someone.\",2\n15242,anetv_OUfVZuWyqJQ,13978,The man jumps over a truck and over a fence losing the cops. The man,The man jumps over a truck and over a fence losing the cops.,The man,gold,bachelor a chalk paper attached to the rope.,\"goes back to beard with the griddle, but the man is shoveling the rider's long shot of the tree.\",runs through a skate park down a city street and up stairs.,\"turns and walks on, after another glistening rolls down another man at the bottom of the highway.\",2\n15243,anetv_OUfVZuWyqJQ,13973,We see the white opening screen. A man in jump stilts,We see the white opening screen.,A man in jump stilts,gold,throws a bag over his shoulder and leaves a bank.,is running and ending the video.,demonstrates an address while talking on a wooden ramp.,does a bungee jump.,0\n15244,anetv_OUfVZuWyqJQ,13977,The man jumps over a stroller being pushed by a lady. The man,The man jumps over a stroller being pushed by a lady.,The man,gold,finishes repeated his opponent while stopping.,hands bends up putting down his younger son.,jumps over a truck and over a fence losing the cops.,instructs his shoulders to bounce and push claps on the man in the bedroom.,2\n15245,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17799,\"A burly guy in a yellow baseball cap, grey jacket and jeans pushes a floor buffer past behind him. Someone\",\"A burly guy in a yellow baseball cap, grey jacket and jeans pushes a floor buffer past behind him.\",Someone,gold,shakes a bar and sips of water.,\"above, all the windows stop off, to create a path of fire.\",looks at the gold ring in his palm.,rubs back the dodge ball and goes to the other end.,2\n15246,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17797,A close - up shows them grappling on the floor. He,A close - up shows them grappling on the floor.,He,gold,\"glances up at us as she goes to the dresser, reading.\",smiles blankly at her.,steps onto the path and runs past them.,\"sways to the music, and strikes her face in her bubble hand.\",1\n15247,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17798,\"Looking bedraggled in his ruffled mess of a suit, someone sits alone in the departure lounge, impatiently tapping his hand with his mobile phone. A burly guy in a yellow baseball cap, grey jacket and jeans\",\"Looking bedraggled in his ruffled mess of a suit, someone sits alone in the departure lounge, impatiently tapping his hand with his mobile phone.\",\"A burly guy in a yellow baseball cap, grey jacket and jeans\",gold,makes his way up a meadow and toward a side entrance.,\"is sitting down in the hallway at his father in a easy, surprising club with sunglasses.\",walks out of the garage to the parked room.,pushes a floor buffer past behind him.,3\n15248,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17796,\"Onscreen, someone dives on someone, pinning him to a table. A close - up\",\"Onscreen, someone dives on someone, pinning him to a table.\",A close - up,gold,shows them grappling on the floor.,shows a soldier kicking up in the river.,shows people performing door - to - side.,shows a photo of someone.,0\n15249,lsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17795,\"He glares at his mobile then looks up to see himself on a tv mounted to a pillar nearby. Onscreen, someone\",He glares at his mobile then looks up to see himself on a tv mounted to a pillar nearby.,\"Onscreen, someone\",gold,comes over holding a bottle of lemon juice.,\"dives on someone, pinning him to a table.\",is watching the movie.,turns to shirts or clothing.,1\n15250,anetv_TakNLlCbjvw,9742,A child walks by a hopscotch pattern. The child,A child walks by a hopscotch pattern.,The child,gold,blindfolded and baby body have ears turned away from the little girl.,holds the bowling ball.,puts her palms on the hopscotch pattern.,falls to a boy in the roll on water.,2\n15251,anetv_TakNLlCbjvw,9743,The child puts her palms on the hopscotch pattern. The child,The child puts her palms on the hopscotch pattern.,The child,gold,pulls the red tube from her foot.,leans towards the pinata and cries.,hops on the hopscotch pattern.,works the baby brush again.,2\n15252,lsmdc3038_ITS_COMPLICATED-17174,13281,\"Someone and someone shake hands. In an office, they\",Someone and someone shake hands.,\"In an office, they\",gold,peer through the large helmeted windows.,roll out the blueprint.,shake each other's hands.,drink wine from a sink.,1\n15253,lsmdc3038_ITS_COMPLICATED-17174,13282,\"In an office, they roll out the blueprint. Someone\",\"In an office, they roll out the blueprint.\",Someone,gold,remembers the closing captions recording on his tv.,steps outside and pulls a kimono from the stage.,grind wallpaper to another as an individual.,dons her reading glasses.,3\n15254,lsmdc3038_ITS_COMPLICATED-17174,13278,She notices the line of customers. She,She notices the line of customers.,She,gold,\"watches as people walk to a colonial decorated mansion, decorated with colorful flowers surrounds the countryside.\",refills a water glass.,gyrates a little boy.,\"scurries away, carrying a worn book over their heads.\",1\n15255,lsmdc3038_ITS_COMPLICATED-17174,13280,Moving down the counter she pauses at a server. She,Moving down the counter she pauses at a server.,She,gold,peers in at the x - rays.,looks down the telephone and removes a sheet of papers from the door in a halloween dressing room.,aims the mixer at her.,stops in front of a white - haired man.,3\n15256,lsmdc3038_ITS_COMPLICATED-17174,13283,Someone dons her reading glasses. Peter,Someone dons her reading glasses.,Peter,gold,hawaiian highlights and being interviewed.,runs warmly beneath someone's coat.,trade an eyebrow raise.,reserved among the papers.,2\n15257,anetv_KyDcuYjDi_Y,14744,She engages in several different moves. She,She engages in several different moves.,She,gold,does forward and back flips and handsprings.,joins it again and continues competing.,reaches a goal and attempts to secure it.,serve in the ingredients.,0\n15258,anetv_uaIu2yDmhNU,7547,\"He does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd. He\",\"He does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd.\",He,gold,beats his chest and hugs people.,\"ends the leaves in his hand, stretching.\",is along a street rising.,sees he was standing in sandcastle off of a nearby wall.,0\n15259,anetv_uaIu2yDmhNU,7548,He beats his chest and hugs people. He then,He beats his chest and hugs people.,He then,gold,stands in his arms where he picked up head.,poses in front of a scoreboard while people take photographs.,pushes out of the ballroom with his arms.,walks the child while the baby lifts his hand.,1\n15260,anetv_uaIu2yDmhNU,7546,A jump runner warms up before going in for a long jump. He,A jump runner warms up before going in for a long jump.,He,gold,gathers for a match in a skateboarding competition.,continues to get down and balances this.,is shown running down a track with people running out from it.,\"does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd.\",3\n15261,anetv_rMWCaPh9UqE,17552,A person is pushing a lawn mower through the grass. A large brown dog,A person is pushing a lawn mower through the grass.,A large brown dog,gold,is walking behind it and pushing a lawn mower.,goes in to pick up something.,walks past behind him hanging the shovel with.,is walking next to the lawn mower.,3\n15262,anetv_rMWCaPh9UqE,15371,\"A lawnmower begins mowing a small grass covered lawn while a dog walks around the perimeter. The dog has a ball in its mouth, drops it in front of the lawn mower and a person off of the screen\",A lawnmower begins mowing a small grass covered lawn while a dog walks around the perimeter.,\"The dog has a ball in its mouth, drops it in front of the lawn mower and a person off of the screen\",gold,lies back and forth.,\", hitting the page.\",\"throws the ball to the dog, who runs after it.\",on the spot.,2\n15263,anetv_rMWCaPh9UqE,15370,A person mows the lawn while a dog and a person play catch with a ball on the same lawn at the same time. A lawnmower,A person mows the lawn while a dog and a person play catch with a ball on the same lawn at the same time.,A lawnmower,gold,encounters the child as he does and jumps in the next.,begins mowing a small grass covered lawn while a dog walks around the perimeter.,is sitting in opening dirt on the ground.,walks through the yard.,1\n15264,anetv_rMWCaPh9UqE,17553,A large brown dog is walking next to the lawn mower. The dog,A large brown dog is walking next to the lawn mower.,The dog,gold,walks up the monkey gets of a cat while is stretched out on the grass.,drops its ball in front of the lawn mower.,runs through the grass and rakes the grass in front of him.,is being pushed by the woman while black dog is sitting on the chair next to it.,1\n15265,anetv_G3xayqdY0TY,2937,A man on the dock hands a rope to a water skier. A person water skis and,A man on the dock hands a rope to a water skier.,A person water skis and,gold,stop him on a water raft.,pumps water on a canoe and shakes water on it.,puts a boat out of the boat.,does jumps over ramps in the water of a lake.,3\n15266,anetv_G3xayqdY0TY,2938,A person water skis and does jumps over ramps in the water of a lake. The water skier,A person water skis and does jumps over ramps in the water of a lake.,The water skier,gold,pumps skis and paddles past.,falls but recovers then lets go of the rope and drifts over to the shoreline.,is seen with the titanic rafting up the ski pool.,is in a city kayaking and paddling in the water.,1\n15267,anetv_zSOK9jmWE1E,2020,The Bahamas is overlaid on video of a boat on water. A shark,The Bahamas is overlaid on video of a boat on water.,A shark,gold,\"swims through oars from the banks, then stands right behind them.\",is swimming in the water as a man in diving suit jumps in.,is being led towards the shore.,is being watched by people diving and the people are seated for swimming.,1\n15268,anetv_zSOK9jmWE1E,5348,Shots of sea animals are shown as well as people under water scuba diving with the fish. All the people,Shots of sea animals are shown as well as people under water scuba diving with the fish.,All the people,gold,are then shown swimming around their paddles and speaking to the camera.,are then shown swimming as well as going along the water.,swim in the ice while laughing to the camera.,are seen floating on top of the water in the end.,3\n15269,anetv_zSOK9jmWE1E,2021,A shark is swimming in the water as a man in diving suit jumps in. Various fish and sharks,A shark is swimming in the water as a man in diving suit jumps in.,Various fish and sharks,gold,are shown exploring well in several places.,are captured in the upper part of the diving board.,creep across the water rapids.,are shown swimming in a frenzy in the water as the diver feeds them.,3\n15270,anetv_zSOK9jmWE1E,5347,An intro leads into several people on a boat and one speaking to another. Shots of sea animals,An intro leads into several people on a boat and one speaking to another.,Shots of sea animals,gold,themselves appear as well as other boats.,are shown while a boat begins putting objects around.,are shown as well as people under water scuba diving with the fish.,are seen as well as the people riding around canoes and many large boats that have sails behind them.,2\n15271,anetv_zSOK9jmWE1E,2019,A boat dock is shown with Stuart Cove's Dive Shop overlaid in graphics. The Bahamas,A boat dock is shown with Stuart Cove's Dive Shop overlaid in graphics.,The Bahamas,gold,is visible and skis without being windmill and plastic time.,speeds test rope to turn up rope from the water.,appears at the end of the dock with lift straps.,is overlaid on video of a boat on water.,3\n15272,anetv_2Voht8wf3dQ,16191,A woman stands at a counter. There,A woman stands at a counter.,There,gold,finish the sandwich and shake hands with the others.,and put peeler ingredients into a mixing bowl to put the sandwich on a plate.,\"enters the body, leads into a mug shot and pulls it out of her pocket.\",are several vegetables on a board.,3\n15273,anetv_2Voht8wf3dQ,16192,There are several vegetables on a board. She,There are several vegetables on a board.,She,gold,\"uncovers up the onions, food and vegetables.\",puts a bar to the glass bar before drinking spreading cup and balls at someone and talking to the camera.,cleans the lemonade with a spoon.,holds up a knife to cut them.,3\n15274,anetv_2Voht8wf3dQ,16193,She holds up a knife to cut them. She,She holds up a knife to cut them.,She,gold,jumps into the water.,grabs a knife and chops it.,uses a tool to sharpen the knife.,is then shown tattooing the referee before drying the hair with a cloth.,2\n15275,anetv_2Voht8wf3dQ,17962,\"Then, she takes a knife and put it on the cleft of the edge grip and continues talking. After, the woman\",\"Then, she takes a knife and put it on the cleft of the edge grip and continues talking.\",\"After, the woman\",gold,falls out on the table and a bread wipes her hand.,pass the knife on the edge grip from front to back while explaining.,continues to form a rod before taking a bite.,puts the egg on her back and continues putting marks onto her right shoe.,1\n15276,anetv_YAjqqbSsFTg,7367,\"A man shows bees and different breeds, including a tree. He\",\"A man shows bees and different breeds, including a tree.\",He,gold,is shown sleepily to the ground.,explains how different things should change.,uses a strip of tape with his shears.,teaches us how to mulch a tree properly.,3\n15277,anetv_4NSWcmO_u4I,18041,A man shows how to dip and apply stain to the siding. He then,A man shows how to dip and apply stain to the siding.,He then,gold,shows how to properly seal the buckets between uses.,takes several cans and roller the desk.,shows how to shave his hands and face at the camera as he talks.,cleans his jump with a tissue and he cleans the neighbors with paint.,0\n15278,anetv_4NSWcmO_u4I,18040,The siding outside a house is shown. A man,The siding outside a house is shown.,A man,gold,is standing beside his person carving fingernails on a paint liner.,shows how to dip and apply stain to the siding.,is smoking a hookah.,is doing capoeira moves.,1\n15279,anetv_Yxsw5nTf4Dg,8812,A girl in a bikini is doing hula hoop on a patio. She,A girl in a bikini is doing hula hoop on a patio.,She,gold,starts with blue hula hoops.,hops to the camera and starts to dance.,spins around several times and seems to be having a lot of fun.,stands dancing with the hula hoops.,2\n15280,anetv_Yxsw5nTf4Dg,8815,It then jumps to another girl only showing her bottom half as a hula hoop spins around her. Another girls,It then jumps to another girl only showing her bottom half as a hula hoop spins around her.,Another girls,gold,is shown dancing inside of a house several times.,showing by inverted arms and curly hair speaks while taking a kite over the back of the hair.,runs on the air while tossing darts down more turns.,takes off as they get down from the ground while waving to them as well.,0\n15281,anetv_Yxsw5nTf4Dg,8813,She spins around several times and seems to be having a lot of fun. The,She spins around several times and seems to be having a lot of fun.,The,gold,came moves up and down to keep her in the frame.,lifts her out of the bar and falls in her arms.,use the batons and use them to be a replacement check in a different location.,chases after the people in the bleachers nearby.,0\n15282,anetv_Yxsw5nTf4Dg,8814,The came moves up and down to keep her in the frame. It then,The came moves up and down to keep her in the frame.,It then,gold,jumps to another girl only showing her bottom half as a hula hoop spins around her.,restarts jumping on the ground.,follows several different flips and is popping back to the camera.,\"shows a blurred figure behind a long tunnel looking behind and flashlight on the pond, make sure its hidden watery completely submerged.\",0\n15283,lsmdc3067_THE_ART_OF_GETTING_BY-32189,6406,Someone musses up his own hair. Someone,Someone musses up his own hair.,Someone,gold,\"lowers his phone quickly, then hangs up again.\",sits back and folds his arms.,takes off his bank phone and spots a stereo.,\"shows down his wrist, and pulls it back to him.\",1\n15284,lsmdc3067_THE_ART_OF_GETTING_BY-32189,6405,\"Later, someone and someone sit on a boulder. Someone\",\"Later, someone and someone sit on a boulder.\",Someone,gold,grabs a star from the canvas cover.,gives him a high five.,musses up his own hair.,turns his hand away.,2\n15285,anetv_oq54_GlzK6A,4400,The first clip of the video shows the title sequence. A man,The first clip of the video shows the title sequence.,A man,gold,is shown on a horse in to store while talking to the camera.,talk to the camera in the room of the lures.,\"demonstrate tai chi, standing with a gun.\",is then shown in a bowling store speaking to the camera.,3\n15286,anetv_oq54_GlzK6A,4401,A man is then shown in a bowling store speaking to the camera. Another title slide,A man is then shown in a bowling store speaking to the camera.,Another title slide,gold,is shown and the men sits up in the background.,is shown for him to play.,introduces the next clip.,is shown on a table and then people are shown.,2\n15287,anetv_oq54_GlzK6A,4402,\"Another title slide introduces the next clip. As the man speaks to the camera, several clips\",Another title slide introduces the next clip.,\"As the man speaks to the camera, several clips\",gold,are shown of a man rolling a bowling ball down the lane.,walk down the background followed by the man swinging the leg up.,are shown of people walking and leads into a group of kids sitting on the side.,take turns spinning around people walking around glumly in front of them.,0\n15288,anetv_oq54_GlzK6A,4403,\"As the man speaks to the camera, several clips are shown of a man rolling a bowling ball down the lane. The video\",\"As the man speaks to the camera, several clips are shown of a man rolling a bowling ball down the lane.\",The video,gold,shows several shots of the table being played by the players.,ends with a clip showing the title logo and website information.,continues to show off person and closely close ups of the man giving hard time shot and being interviewed.,then cuts to a boy in blue throwing a match to the same person.,1\n15289,lsmdc1019_Confessions_Of_A_Shopaholic-80916,1765,Someone joins someone by the lake shore. She,Someone joins someone by the lake shore.,She,gold,heads back to the shore.,jumps into a wave.,\"steps on the bench, and spots himself shrugging his top.\",shoots him a look.,3\n15290,lsmdc1019_Confessions_Of_A_Shopaholic-80916,1762,\"Someone, wandering along a wintry lake shore, is a tiny dot in the distance. People\",\"Someone, wandering along a wintry lake shore, is a tiny dot in the distance.\",People,gold,\"startles him, then notices the battered churns animal.\",are by their mobile home.,\"are seen lounging on a beach outdoors on boards, outdoors.\",\"mill around the winding hedges in a nick, where there are shrubs and shrubs.\",1\n15291,lsmdc1019_Confessions_Of_A_Shopaholic-80916,1763,People are by their mobile home. Someone,People are by their mobile home.,Someone,gold,is standing at the piano.,pulls someone up by the shoulder with someone.,pulls open the door and reads.,brings out a book.,3\n15292,anetv_cHHVpBYfwdU,9969,\"The dog runs through different rooms of the house, then to the door and outside. They\",\"The dog runs through different rooms of the house, then to the door and outside.\",They,gold,jab square in the face.,starts walking for a little bit and then begins to float up again.,are working as they drag leaves.,go for a walk outside with the people and other dogs.,3\n15293,anetv_cHHVpBYfwdU,9968,A man leans over the camera he has placed on a dog. The dog,A man leans over the camera he has placed on a dog.,The dog,gold,continues cutting the rest of the dog.,runs away and opens the gate to catch the dog.,follows after his dog.,\"runs through different rooms of the house, then to the door and outside.\",3\n15294,anetv_cHHVpBYfwdU,9970,They go for a walk outside with the people and other dogs. He,They go for a walk outside with the people and other dogs.,He,gold,\"turns to the chocolates and gives it to the lovebirds, then she leaves up a car to go after the guy.\",\"returns home, and looks in his water bowl.\",takes a mower from the side of the board and begins vacuuming towards the other person that has between the wheels.,brushes them with newspapers.,1\n15295,lsmdc3013_BURLESQUE-5167,4171,Someone walks up a staircase to the top floor and its breathtaking view of the city. She,Someone walks up a staircase to the top floor and its breathtaking view of the city.,She,gold,\"looks at the pristine black dress, smiles and smiles.\",looks out a window and spots someone pacing outside on his phone.,crouches in front of someone.,guides her hand and she kiss.,1\n15296,lsmdc3013_BURLESQUE-5167,4172,She leaves the window and regards an architectural model of a city block set up on a table. Someone,She leaves the window and regards an architectural model of a city block set up on a table.,Someone,gold,watches the tray carefully then guides her back to the bedroom.,stands beneath his desk and regards it thoughtfully as he stares at the door.,is standing next to her desk; someone enters the museum and finds a chessboard from someone's hand.,notes an address on the model:.,3\n15297,lsmdc3013_BURLESQUE-5167,4173,Someone notes an address on the model:. Someone,Someone notes an address on the model:.,Someone,gold,catches someone's arm.,steps and slowly lifts her hands from the position of her waist and then slowly lifts it.,joins her and hands her a coffee mug.,takes someone's hand.,2\n15298,lsmdc3013_BURLESQUE-5167,4170,Someone heads for the door. Someone,Someone heads for the door.,Someone,gold,hesitates while he shuts the door in their open matching bag.,slams the door shut as the ambulance rushes up to her father's office.,walks up a staircase to the top floor and its breathtaking view of the city.,turns around and gazes out through a glass - fronted window.,2\n15299,lsmdc3019_COLOMBIANA-8962,11820,\"He glances toward the bedroom where someone lies asleep under rumpled covers. Grabbing his phone, he\",He glances toward the bedroom where someone lies asleep under rumpled covers.,\"Grabbing his phone, he\",gold,heads over and gazes down at the slumbering beauty.,turns off his tv.,searches through a bedside cabinet.,lowers his ear with a brush and dials on the number.,0\n15300,lsmdc3019_COLOMBIANA-8962,11812,She glances back at someone. Someone,She glances back at someone.,Someone,gold,breaks into a grin.,pulls out a lollipop.,holds his gaze for her.,\"lies on her back on her bed, laughing as someone's stares into her eyes.\",0\n15301,lsmdc3019_COLOMBIANA-8962,11823,He hurls the newspaper at her. She,He hurls the newspaper at her.,She,gold,lowers her gaze to a headline.,\"leaves, leaving the car turning.\",\"approaches someone, who also prepares to make a drink.\",shows on her laptop.,0\n15302,lsmdc3019_COLOMBIANA-8962,11824,She lowers her gaze to a headline. He,She lowers her gaze to a headline.,He,gold,lifts the phone off her ear and has had to move the steps to be sexy.,presses her against a shelf.,jabs the butt at the clippings.,drops her stunned sunglasses.,1\n15303,lsmdc3019_COLOMBIANA-8962,11822,Now someone strides down an aisle in a used book store. He,Now someone strides down an aisle in a used book store.,He,gold,strolls onto a street.,caresses the other woman's hair.,\"enters with the piano, reading, peeling movies, miserably.\",hurls the newspaper at her.,3\n15304,lsmdc3019_COLOMBIANA-8962,11815,\"Someone grabs her arms and holds her at bay. Under his steady gaze, she\",Someone grabs her arms and holds her at bay.,\"Under his steady gaze, she\",gold,gazes at the marauder's inscription.,holds her hands to her mouth.,gives a yielding look.,dives into his shock.,2\n15305,lsmdc3019_COLOMBIANA-8962,11819,\"Spotting the plush gift, someone picks it up. He\",\"Spotting the plush gift, someone picks it up.\",He,gold,tosses it in the trash can.,glances toward the bedroom where someone lies asleep under rumpled covers.,reads it.,drags her soundly up.,1\n15306,lsmdc3019_COLOMBIANA-8962,11817,\"With both hands, he brushes someone's hair away from her face. As he\",\"With both hands, he brushes someone's hair away from her face.\",As he,gold,\"regards her, she claps there with her mouth.\",sprinkles her with more kisses.,\"looks behind her, he turns away.\",\"caresses a portrait, she gazes at someone with an sad gaze.\",1\n15307,lsmdc3019_COLOMBIANA-8962,11811,\"Tilting her head, she rumples her lips then grazes them with her fingers as her eyes fill with tears. She\",\"Tilting her head, she rumples her lips then grazes them with her fingers as her eyes fill with tears.\",She,gold,meet nearby.,glances back at someone.,rushes up into the empty glass and peeks out.,turns to an assistant.,1\n15308,lsmdc3019_COLOMBIANA-8962,11816,\"Under his steady gaze, she gives a yielding look. She\",\"Under his steady gaze, she gives a yielding look.\",She,gold,raises her arms letting him lift off her shirt.,gets out of the car.,gives the wistful look and heads after the girl.,grins with a sneer.,0\n15309,lsmdc3019_COLOMBIANA-8962,11818,\"As he sprinkles her with more kisses. The next morning, the stuffed alligator\",As he sprinkles her with more kisses.,\"The next morning, the stuffed alligator\",gold,is with her leg flung through the venetian blinds by locking her bedroom door shut.,turns to someone and quickly hands him a bill.,\"rolls down, leaving its various men inside a restaurant.\",sits on a table in front of a tray holding glasses of orange juice.,3\n15310,lsmdc3019_COLOMBIANA-8962,11809,\"Blinking her woeful eyes, she opens her mouth to speak. She\",\"Blinking her woeful eyes, she opens her mouth to speak.\",She,gold,emerges from the flickering candle in the bed delicate strands of fluffy yellow stripes.,\"looks away, wrapping her arms around his waist and leads him away.\",lowers her enraptured gaze and nods.,leans her head on her hands.,3\n15311,lsmdc3019_COLOMBIANA-8962,11813,Someone breaks into a grin. She,Someone breaks into a grin.,She,gold,steps into the room.,leans closer and presses her lips to someone's.,stares at him close and he looks up to someone.,\"looks at him, confused.\",1\n15312,anetv_LChqFAESyCg,19278,She begins applying the lipstick on her lips. Then she,She begins applying the lipstick on her lips.,Then she,gold,puts a curler under the cat's toenails.,adds shaving cream and applies lotion to her face.,uses the same lipstick and dabs it on her cheeks.,takes a sharp bow to put the contact into her eye.,2\n15313,anetv_LChqFAESyCg,19277,She opens her mirror cabinet and takes her lipstick out. She,She opens her mirror cabinet and takes her lipstick out.,She,gold,begins applying the lipstick on her lips.,\"checks her reflection in another mirror, then lifts her mirror to the end.\",\"grasps the waistband of her jeans, gets up, and moves down the front step.\",continues talking to the camera.,0\n15314,anetv_LChqFAESyCg,19276,There's a young girl standing in her bathroom doing a tutorial on how to apply lipstick. she,There's a young girl standing in her bathroom doing a tutorial on how to apply lipstick.,she,gold,measures the product and wipes it off with her fingers.,points how to use the hose to look in the mirror.,finally brushes the lens.,opens her mirror cabinet and takes her lipstick out.,3\n15315,anetv_LChqFAESyCg,19279,She uses her fingers to smear the lipstick evenly on her cheek bones. Then she,She uses her fingers to smear the lipstick evenly on her cheek bones.,Then she,gold,\"goes back to the chair, brushing her fingers.\",\"turns banking and kisses him softly, stroking her long hair.\",puts out her cigarette and blow some suds on her hands.,\"pouts and smiles for the camera, striking a pose.\",3\n15316,lsmdc0014_Ist_das_Leben_nicht_schoen-54818,448,\"This is someone, the bank examiner, come for his annual audit of the books of the Building and Loan. He\",\"This is someone, the bank examiner, come for his annual audit of the books of the Building and Loan.\",He,gold,\"gives the phone to someone, puts down his wreath and goes over to someone.\",backs the ball across a field.,has run along someone's stairs into his hospital bedroom.,\"empties the shelves crammed in wooden cases, as well as people in room.\",0\n15317,lsmdc3021_DEATH_AT_A_FUNERAL-1373,864,\"They drop him, then lift the coffin's lid. They\",\"They drop him, then lift the coffin's lid.\",They,gold,wear fancy gold medal.,lay him face down in the casket.,catch two more cautiously.,fall just out of the window.,1\n15318,lsmdc3021_DEATH_AT_A_FUNERAL-1373,861,\"Just as Reverend Davis arrives. In the parlor, the brothers\",Just as Reverend Davis arrives.,\"In the parlor, the brothers\",gold,find oil full of corn colored hair.,look towards a breakfast table.,approach another built guest.,maneuver their way past rows of chairs.,3\n15319,lsmdc3021_DEATH_AT_A_FUNERAL-1373,860,\"Someone leads them to the deserted parlor. Standing in the hallway, someone\",Someone leads them to the deserted parlor.,\"Standing in the hallway, someone\",gold,slides the rooms ornate doors shut.,\"removes his mask, parked the clip from someone's registering and runs upstairs to answer it.\",\"walks towards someone with his arms folded out, hurries over the rail, and proceeds down an aisle.\",takes out a phone.,0\n15320,lsmdc3021_DEATH_AT_A_FUNERAL-1373,859,\"She makes her way toward someone. In the study, someone\",She makes her way toward someone.,\"In the study, someone\",gold,nudges someone's foot off his leg.,strikes a spider behind swings.,shuts the door and strides away to her apartment.,dons a silver silver robe with furry pink and a white sun - quality cut.,0\n15321,lsmdc3021_DEATH_AT_A_FUNERAL-1373,863,In the parlor the brothers struggle unsuccessfully to hold the dwarf and open the coffin at the same time. They,In the parlor the brothers struggle unsuccessfully to hold the dwarf and open the coffin at the same time.,They,gold,finish their breakfast and talk as they.,picks their way through a narrow hole within a huge wood metal hobbits as he sinks to his feet.,gaze towards a silver hoop through the empty pool.,\"drop him, then lift the coffin's lid.\",3\n15322,lsmdc3021_DEATH_AT_A_FUNERAL-1373,865,They lay him face down in the casket. Someone,They lay him face down in the casket.,Someone,gold,rises to her feet and moves hurriedly into the bedroom.,heads up the house towards the house of the school grounds.,\"tread out, aiming the wand angrily at the peg.\",regards the arrangement disapprovingly.,3\n15323,anetv_GHU3G24jFjI,6170,\"One of the boys walks over to a mat, and starts break dancing. When he is done, the other boy\",\"One of the boys walks over to a mat, and starts break dancing.\",\"When he is done, the other boy\",gold,walks to the wooden table where the potatoes are sitting.,gets on the bars and does a routine on the stage.,is gone as the kid finds the pair by backing away while holding a mallet and watch him swim there.,saunters over and break dances too.,3\n15324,anetv_GHU3G24jFjI,6171,\"When he is done, the other boy saunters over and break dances too. They\",\"When he is done, the other boy saunters over and break dances too.\",They,gold,move something on the other's arm and sit in the counter.,stop eating and continue some cocktail.,take turns dancing one more time before the crowd.,are after longer indoors.,2\n15325,anetv_GHU3G24jFjI,6169,A man with a microphone is talking with two boys. One of the boys,A man with a microphone is talking with two boys.,One of the boys,gold,\"walks over to a mat, and starts break dancing.\",is rolled around and is extremely serious.,is brushing his teeth and talking to the other guy.,jumps into a crane.,0\n15326,anetv_GHU3G24jFjI,10045,The camera pans left to show an audience watching the three men. The three individuals,The camera pans left to show an audience watching the three men.,The three individuals,gold,move randomly in a different direction.,continue jumping high and discuss slightly by raising their arms and feet in the air.,dance at the piano for a large audience watching for the performance.,take turns walking onto a floor covering and dancing in front of the audience.,3\n15327,anetv_GHU3G24jFjI,10044,Three men stand next to each other. The camera pans,Three men stand next to each other.,The camera pans,gold,\"to show a boy speaking to the camera with different dogs, and dogs dogs.\",left to show an audience watching the three men.,to a man riding down a ramp to water.,on the toddlers while people walk on.,1\n15328,anetv_fHEUdQY1cdc,18717,The people crowd around the bull waving sticks and follow the bull around as he gets angry. Another bull is shown and the two,The people crowd around the bull waving sticks and follow the bull around as he gets angry.,Another bull is shown and the two,gold,fight while the people stand and cheer on the sides.,get back in after others.,stop shooting their arrows each again.,gets whipped to follow the bull.,0\n15329,anetv_fHEUdQY1cdc,18716,Several people are seen running down the road around a bull with some holding sticks in their hands. The people,Several people are seen running down the road around a bull with some holding sticks in their hands.,The people,gold,are shown swimming along the field and shows people blowing leaves in the middle.,crowd around the bull waving sticks and follow the bull around as he gets angry.,hit the ball back and fourth as others watch from multiple angles.,start riding the horse and end by washing the horses off the field.,1\n15330,lsmdc1042_Up_In_The_Air-88454,4228,\"He bins a full - size pillow. At security, someone\",He bins a full - size pillow.,\"At security, someone\",gold,leads someone into two stairwell.,sees a group of businessmen.,shades a closed mirror with a table reading papers.,\"offers out a crone, then grabs him sitting on root before forcing him to eat everything.\",1\n15331,anetv_CXSoih6nFME,14845,She grabs some makeup and begins putting it all over her face. She,She grabs some makeup and begins putting it all over her face.,She,gold,shaves out the path.,\"lays out a toothbrush, wipes it out and wipes it off with it, then does a 360 flip on the water.\",then adds a bit of yarn into her makeup hair.,continues putting on more makeup and showing it off to the camera.,3\n15332,anetv_CXSoih6nFME,14844,A young child is seen adjusting the camera and showing off her face. She,A young child is seen adjusting the camera and showing off her face.,She,gold,grabs some makeup and begins putting it all over her face.,begins climbing in the back.,comes out of the shot and jumps over to a bike bar on her bike to adjust the bike.,continues to speak to the camera as well as talks to the camera and showing how people should listen.,0\n15333,lsmdc1015_27_Dresses-79908,12958,Groom someone sees someone smiling at his friend. He,Groom someone sees someone smiling at his friend.,He,gold,shoots him an inquiring glance.,hits a lamp on the pan.,shuts it and reads the window again.,sits on the floor by a door.,0\n15334,lsmdc1015_27_Dresses-79908,12959,He shoots him an inquiring glance. The answer,He shoots him an inquiring glance.,The answer,gold,seems not beginning to attract someone's attention.,is hopefully raised eyebrows.,crosses the platform for the golden markings on the chalkboard.,bounces on his feet.,1\n15335,lsmdc1015_27_Dresses-79908,12957,\"The wedding party is led in by people in figure - hugging cream dresses, carrying bouquets of yellow and white flowers. Groom someone\",\"The wedding party is led in by people in figure - hugging cream dresses, carrying bouquets of yellow and white flowers.\",Groom someone,gold,\"constantly, someone's father has bowed to the hairstylist.\",\"wearing a skirt and a white outfit, someone, the figure with a century veil, is speaking.\",\", surfing, now his wife on.\",sees someone smiling at his friend.,3\n15336,lsmdc1015_27_Dresses-79908,12961,People smile broadly at each other. The guests,People smile broadly at each other.,The guests,gold,\"begin to climb in and out of the train, as it races toward it among the gray - robed policemen.\",\"watch savage, belligerent.\",stare for a very long time.,\"stand as someone, in a simple white dress, is escorted in by her father.\",3\n15337,lsmdc1015_27_Dresses-79908,12960,The answer is hopefully raised eyebrows. People,The answer is hopefully raised eyebrows.,People,gold,\"someone approaches the class he stops, continues staring, and leans up in his seat, gazing back in her direction.\",someone walks ominously towards someone at the far edge of the clearing on the pavement.,\", someone tosses a container to someone who talks to the busy group who sneak around to the end.\",smile broadly at each other.,3\n15338,anetv_qsTCTQo-wI8,19701,He demonstrates how he alternates between three bongos. He later,He demonstrates how he alternates between three bongos.,He later,gold,takes the second one while looking at top.,demonstrates how to lift a machine balanced by vigorously.,switches to a much slower beat and rhythm by drumming on the bongos.,jumps up to the other drum that opens to the side and then focuses on it.,2\n15339,anetv_qsTCTQo-wI8,19700,A man is explaining how to play the drums on bongos. He,A man is explaining how to play the drums on bongos.,He,gold,pauses and puts his harmonica down.,is playing a number of drums and cymbals.,is playing the harmonica.,demonstrates how he alternates between three bongos.,3\n15340,anetv_qsTCTQo-wI8,19703,He explains how the beats on the drum changes as the rhythm changes. He then,He explains how the beats on the drum changes as the rhythm changes.,He then,gold,switches back to a faster beat and rhythm on the drums by alternating between two drums.,begins to play and stops playing the guitar.,starts to advertisements for the guitar.,strums the paddle again.,0\n15341,anetv_qsTCTQo-wI8,19702,He later switches to a much slower beat and rhythm by drumming on the bongos. He,He later switches to a much slower beat and rhythm by drumming on the bongos.,He,gold,is very little awake now.,leaves surreptitiously at the trunk.,explains how the beats on the drum changes as the rhythm changes.,may really hold a heart skipping out of his hand.,2\n15342,anetv_p3LvCbxC_ZE,7073,A camera pans around a large yard to show two people moving a wooden bar. One man then,A camera pans around a large yard to show two people moving a wooden bar.,One man then,gold,steps on the bar and begins using a tool to cut down hedges.,does a hand stand with each walk while the camera captures them from doing the same thing.,stretches out his foot and walks deeper into the pit.,lays down and continues by lifting the boy up and down before applauding the game on the side.,0\n15343,anetv_gl_0jjJBUkc,10335,He looks up to the camera while washing clothes. Another man,He looks up to the camera while washing clothes.,Another man,gold,enters and holds out a rag and washes a beach off under a sink.,walks into frame and begins washing clothes in a bucket.,raises the razor and begins shaving his neck while rubbing shaving cream into his mouth.,enters the office by hitting the dishes and wiping it away with a towel.,1\n15344,anetv_gl_0jjJBUkc,10334,A young man is seen kneeling down before a bucket. He,A young man is seen kneeling down before a bucket.,He,gold,looks up to the camera while washing clothes.,picks up a vacuum and mops the floor in the tub.,begins spraying it with a hose and bends down to brush his teeth.,sweeps up the plants into the sand.,0\n15345,anetv_gl_0jjJBUkc,9431,A man is seen kneeling over a bucket dipping clothes inside and washing. Another man,A man is seen kneeling over a bucket dipping clothes inside and washing.,Another man,gold,is dressed in a basket as he attempts to wash dishes as well.,washes dry leaves over a pile.,walks in frame with the camera laying on the floor while still speaking to the camera.,is seen standing in front of a hose and dipping clothes underneath as well.,3\n15346,anetv_cwhkG3LhZO8,13187,\"He then walked with both his elbows up towards the road. The boy is on stage playing a brown guitar, he is not wearing a shirt, there's a microphone in front of him, behind him\",He then walked with both his elbows up towards the road.,\"The boy is on stage playing a brown guitar, he is not wearing a shirt, there's a microphone in front of him, behind him\",gold,\"and the barbell is firmly placed on his chest with the violin, but the man is n't aware of the music.\",in an outdoor front.,warming up to be playing on his lap.,is a man playing a guitar too.,3\n15347,anetv_cwhkG3LhZO8,13186,\"A little boy is standing at the parking lot, he is not wearing a shirt, he talked to the camera. He then\",\"A little boy is standing at the parking lot, he is not wearing a shirt, he talked to the camera.\",He then,gold,goes back to holding ice sander and began shining it.,demonstrates how to work on a kayak.,walked with both his elbows up towards the road.,lifts a little shovel off a control ramp.,2\n15348,anetv_ObkyDlB5wvs,18687,More people are seen speaking to the camera as well as people fencing in between. Several shots,More people are seen speaking to the camera as well as people fencing in between.,Several shots,gold,are shown of people fencing one another while others still speak to the camera.,are shown of athletes throwing the flag while others watch themselves on the side.,are shown of people lifting disappointment on the sides while showing how to do drills are shown.,are shown of scoreboard hitting sticks on the ground while others watch on the sides.,0\n15349,anetv_ObkyDlB5wvs,6826,\"Several people are shown talking and a man begins dressing in a fencing uniform. Once all of his garments are on, they\",Several people are shown talking and a man begins dressing in a fencing uniform.,\"Once all of his garments are on, they\",gold,begin to run and finish to show make their hands and make bows.,go inside and salon them.,\"have given fingers, one of the contestants.\",are inside of a building and fighting on another.,3\n15350,anetv_ObkyDlB5wvs,6827,\"Once all of his garments are on, they are inside of a building and fighting on another. All of them\",\"Once all of his garments are on, they are inside of a building and fighting on another.\",All of them,gold,begin fencing and a screen shows with arrows on it.,or the mohawk are right.,have been ball in smaller cones.,\"are a black and old bar, one stucco and they get one piercing and go inside the car.\",0\n15351,anetv_ObkyDlB5wvs,18686,A person is seen putting fencing gear on while another man speaks to the camera. More people,A person is seen putting fencing gear on while another man speaks to the camera.,More people,gold,perform various instruments one by one while more people show one different partner and the other.,are seen speaking to the camera as well as people fencing in between.,are shown interspersed with shots of the equipment failing for not being shown.,are seen playing hockey while the audience watches.,1\n15352,anetv_C7rGK81C7SU,17341,The woman puts the decorations around the cake and continues decorating more objects on the side. She,The woman puts the decorations around the cake and continues decorating more objects on the side.,She,gold,finishes the cake by adding the final decorations and presenting it to the camera.,continues speaking to the camera while still speaking to the camera.,continues to dance around into the darkness and ends with more ornaments.,continues to torch the paint and carefully brushes it down to show her surroundings.,0\n15353,anetv_C7rGK81C7SU,17340,A persons hands are seen laying clay out onto a cake and begins painting objects on the side. The woman,A persons hands are seen laying clay out onto a cake and begins painting objects on the side.,The woman,gold,puts the decorations around the cake and continues decorating more objects on the side.,continues exercising while pausing to speak to the camera.,uses a large brush to wipe the wall surface.,continues painting while the camera zooms in on a piece of wallpaper.,0\n15354,anetv_9T1C2CW_P0A,2375,\"They have a singer, guitarist and even drummer all together trying to make some music. The signer is very passionate about his work, he\",\"They have a singer, guitarist and even drummer all together trying to make some music.\",\"The signer is very passionate about his work, he\",gold,gets very into the song.,asks the song for a song.,maneuvers around buckets and taunting it.,is about to be some sort of thing.,0\n15355,anetv_9T1C2CW_P0A,18365,\"As the song continues, the singer begins making several faces and grabbing the mic to evoke emotion into the song he is singing. While he is playing, the camera then\",\"As the song continues, the singer begins making several faces and grabbing the mic to evoke emotion into the song he is singing.\",\"While he is playing, the camera then\",gold,begins to jam and between his legs as he plays the drums using both hands.,stops to twirl his other finger off the setting screen.,\"begins to play, then heads to it around while laughing.\",moves to the rest of the guys and shows close ups of the men playing the drums and showing their enthusiasm.,3\n15356,anetv_9T1C2CW_P0A,2376,\"The signer is very passionate about his work, he gets very into the song. Dancing with the mic stand and all as his peers\",\"The signer is very passionate about his work, he gets very into the song.\",Dancing with the mic stand and all as his peers,gold,play along with him having a good time.,adjust him then slip from the seat and slide to the ground.,slow down and appear to be sedate.,go into the deep.,0\n15357,anetv_9T1C2CW_P0A,2374,A group of men have formed together a nice little band. They,A group of men have formed together a nice little band.,They,gold,are being positioned in a green field.,are in a backyard watching.,are two teams playing instruments.,\"have a singer, guitarist and even drummer all together trying to make some music.\",3\n15358,anetv_SmBEf-g82Ew,12174,A close up of tools and objects are shown laid out leading into several clips of a mean measuring a wall and laying plaster down on it. The man,A close up of tools and objects are shown laid out leading into several clips of a mean measuring a wall and laying plaster down on it.,The man,gold,shows how to make plaster while transitioning with him making plaster and continues to show more clips of him laying it down.,shows off the mans place and shows how to use different attachments.,is using a tool to cut the paper and cut kindling.,then demonstrates how to remove the shingles as well as looking at him.,0\n15359,anetv_9VGbtQrlcN4,19000,He sprays the door and wipes down the window while still speaking. He,He sprays the door and wipes down the window while still speaking.,He,gold,\"takes a cup, holds up several parts in the end and starts through the window.\",\"walks next to him and shows off the ingredients, scraping it, trying to spray the flower in a clear red cup.\",sprays the window again and wipes it down one more time.,continues to wash his hands while still speaking to the camera.,2\n15360,anetv_9VGbtQrlcN4,16631,\"First he rolls down the driver window and applies the soap and water solution to the glass. Then he scrapes the window using a triumph scraper and when it's scraped clean, he rolls the window back down and he sprays the glass again and he\",First he rolls down the driver window and applies the soap and water solution to the glass.,\"Then he scrapes the window using a triumph scraper and when it's scraped clean, he rolls the window back down and he sprays the glass again and he\",gold,makes it through the back door to the hole.,uses a paper towel to wipe anything left on the window.,\"lays it on, then tilting his head to show a ruin that it is onto.\",gets soap off in the driver's window then continues putting the blade into the wash he is wearing.,1\n15361,anetv_9VGbtQrlcN4,18999,A man is seen speaking to the camera while standing behind a car door. He,A man is seen speaking to the camera while standing behind a car door.,He,gold,sprays the door and wipes down the window while still speaking.,laughs into the radio as he talks to the camera.,\"puts a fence behind the truck and takes off grass, moving then pulling a car's goggles in place.\",puts his ring back on his belt.,0\n15362,anetv_9VGbtQrlcN4,16630,Lawrence is showing and telling viewers how to clean and prep your windows. First he,Lawrence is showing and telling viewers how to clean and prep your windows.,First he,gold,peeks through the partition blinds creating a window.,rolls down the driver window and applies the soap and water solution to the glass.,is showing what man will use to remove wallpaper from the top of that brick.,applies more such stamps without good pressure.,1\n15363,lsmdc3064_SPARKLE_2012-3951,14770,Someone turns to watch them. Someone,Someone turns to watch them.,Someone,gold,gazes down the equipment.,puts on his cap.,lies lying on the bed.,is following a little woman.,1\n15364,lsmdc3064_SPARKLE_2012-3951,14788,Someone shoots someone a look. She,Someone shoots someone a look.,She,gold,softens and leans forward.,peers through the champagne glass.,talks to the computer.,drops her guns and wanders off.,0\n15365,lsmdc3064_SPARKLE_2012-3951,14800,\"On stage, the lead singer holds her hand to her ear like a telephone. Someone\",\"On stage, the lead singer holds her hand to her ear like a telephone.\",Someone,gold,woman places the ring stylus of the box on the lower finger.,sits across the table to someone who's waving at someone.,turns and notices someone.,\"takes a flute, sets it down and closes the 20 between them.\",2\n15366,lsmdc3064_SPARKLE_2012-3951,14790,\"Later the sisters get in a white Sedan. The Sedan drives off, and our view\",Later the sisters get in a white Sedan.,\"The Sedan drives off, and our view\",gold,drifts over her shoulder.,leaves a window to find someone asleep on the couch.,continues to engulf someone.,rolls down the windshield.,1\n15367,lsmdc3064_SPARKLE_2012-3951,14802,\"Someone's eyes dart around the room as he sips his drink. From backstage, Sister\",Someone's eyes dart around the room as he sips his drink.,\"From backstage, Sister\",gold,notices the two girls women who don't notice.,applies makeup to the colleague who strides forward as sebastian is rotating him and his new chair.,spots someone among the crowd.,brushes her way down her ankles.,2\n15368,lsmdc3064_SPARKLE_2012-3951,14779,Someone grabs her pocket book. She,Someone grabs her pocket book.,She,gold,pinches her lips in an uncertain look.,stares at some drawings as she goes.,\"copies the winnings, she walks past major someone, who remains at a table with the woman with the women.\",waves goodbye to a saleswoman and steps out from behind the counter.,3\n15369,lsmdc3064_SPARKLE_2012-3951,14792,\"Outside, someone waits under an awning reading Cliff Bells. He\",\"Outside, someone waits under an awning reading Cliff Bells.\",He,gold,clings to the spokes.,lowers her hands onto her hips and lifts her head.,checks his wrist watch.,\"waves his hands away, then hops in.\",2\n15370,lsmdc3064_SPARKLE_2012-3951,14769,Someone walks back to his friends where someone holds his pretty date on his lap. someone,Someone walks back to his friends where someone holds his pretty date on his lap.,someone,gold,\"grins at them both, setting the fish back on the table.\",turns to watch them.,desperately reaches for his feet.,storms back staring past in front of him.,1\n15371,lsmdc3064_SPARKLE_2012-3951,14797,\"Sitting at the bar, someone spots someone enter with his entourage. a cameraman\",\"Sitting at the bar, someone spots someone enter with his entourage.\",a cameraman,gold,artist is examining his left eye.,pops up behind her.,faces the first man.,snaps a flash photo.,3\n15372,lsmdc3064_SPARKLE_2012-3951,14774,Someone slips the box and picture in his pocket. As someone,Someone slips the box and picture in his pocket.,As someone,gold,steps into the foyer.,pulls the boy away.,leans against the fireplace.,opens the door for her.,3\n15373,lsmdc3064_SPARKLE_2012-3951,14789,She softens and leans forward. Later the sisters,She softens and leans forward.,Later the sisters,gold,proceed down the hall on a clapboard carpet.,get in a white sedan.,switch into a sunlit road.,get up weeds from the lion 'enclosure.,1\n15374,lsmdc3064_SPARKLE_2012-3951,14778,Sara follows someone to the dressing room. Someone,Sara follows someone to the dressing room.,Someone,gold,greets the man and gives a cocky shrug.,takes a glass from him cabinet.,notes through identical identical holes in the wall.,grabs her pocket book.,3\n15375,lsmdc3064_SPARKLE_2012-3951,14785,\"He glances around, then talks through the glass. With her back to him, she\",\"He glances around, then talks through the glass.\",\"With her back to him, she\",gold,breaks into a smile.,eyes him with powder in his faces.,storms to the brunette's door.,nudges his elbow and slaps him on the cheek.,0\n15376,lsmdc3064_SPARKLE_2012-3951,14801,\"Someone crosses the room, smoking a cigarette. He\",\"Someone crosses the room, smoking a cigarette.\",He,gold,takes a seat at a booth with someone and their dates.,\"puts in a fedora, then checks at his watch.\",smiles at someone 'wall.,walks across the room toward the bedroom.,0\n15377,lsmdc3064_SPARKLE_2012-3951,14799,\"A bartender brings someone a drink. On stage, the lead singer\",A bartender brings someone a drink.,\"On stage, the lead singer\",gold,spins out of a newscast spot with his partner.,leans over the entrance of a tourist fondling the staff operator.,helps two from a four - tiered dance.,holds her hand to her ear like a telephone.,3\n15378,lsmdc3064_SPARKLE_2012-3951,14781,\"Inside, two girls dance in slow motion inside a glass listening booth. Someone\",\"Inside, two girls dance in slow motion inside a glass listening booth.\",Someone,gold,nervously watches someone as he walks to a podium.,sits alone in the next booth.,\"stares at his face, then covers his head.\",see someone down the hall past people.,1\n15379,lsmdc3064_SPARKLE_2012-3951,14773,She leaves the box and the little ring picture on the table with the half eaten food and drinks. Someone,She leaves the box and the little ring picture on the table with the half eaten food and drinks.,Someone,gold,watch as the thug accidentally hits someone in the arm.,\"steps into the kitchen, and looks into the room.\",slips the box and picture in his pocket.,\"leads the spaghetti over the table, and someone swigs from a bottle.\",2\n15380,lsmdc3064_SPARKLE_2012-3951,14776,Someone looks back at someone. He,Someone looks back at someone.,He,gold,throws away the edges of her sawed - duty shotgun.,\"takes a flash photo of her, then lowers his camera and smiles.\",stands behind someone and reaches down to grab him.,sits on the island.,1\n15381,lsmdc3064_SPARKLE_2012-3951,14803,\"From backstage, Sister spots someone among the crowd. The performers\",\"From backstage, Sister spots someone among the crowd.\",The performers,gold,face off with her reclined dancers.,struck a final pose.,pose as her performance.,take their seats back the other way.,1\n15382,lsmdc3064_SPARKLE_2012-3951,14771,Someone puts on his cap. She,Someone puts on his cap.,She,gold,walks slowly through a flight of stairs to the mansion which are mostly empty.,sniffs her wound.,\"collects her purse and jacket, and heads for the door.\",looks at the floor and finds him lying on the bed.,2\n15383,lsmdc3064_SPARKLE_2012-3951,14798,A cameraman snaps a flash photo. A bartender,A cameraman snaps a flash photo.,A bartender,gold,regards man in a soul bob.,brings someone a drink.,demonstrates the necessary honing file.,holds up a box.,1\n15384,lsmdc3064_SPARKLE_2012-3951,14793,He checks his wrist watch. He,He checks his wrist watch.,He,gold,casts specs into two panels brackets on the wall.,\"looks back, then clicks off the sheet.\",flings his beer on someone.,sees someone toss the white sedan's keys to the valet.,3\n15385,lsmdc3064_SPARKLE_2012-3951,14772,\"She collects her purse and jacket, and heads for the door. She\",\"She collects her purse and jacket, and heads for the door.\",She,gold,grabs her coat from one of the bags.,picks up the packet and walks over to her again.,\"picks score, runs down, and slides into stacks.\",leaves the box and the little ring picture on the table with the half eaten food and drinks.,3\n15386,lsmdc3064_SPARKLE_2012-3951,14783,\"She checks her watch, then examines a record album cover. Someone\",\"She checks her watch, then examines a record album cover.\",Someone,gold,catches it and shows it down.,gently caresses his face with his gloved hand.,knocks on the glass.,checks the impact gauge.,2\n15387,lsmdc3064_SPARKLE_2012-3951,14780,\"She waves goodbye to a saleswoman and steps out from behind the counter. Inside, two girls\",She waves goodbye to a saleswoman and steps out from behind the counter.,\"Inside, two girls\",gold,\"are on a building, chatting in an elegant cake.\",dance in slow motion inside a glass listening booth.,walk through a bungee rope hanging up shingles.,stroll along a hole in the shore.,1\n15388,lsmdc3064_SPARKLE_2012-3951,14794,He sees someone toss the white Sedan's keys to the valet. The Anderson sisters,He sees someone toss the white Sedan's keys to the valet.,The Anderson sisters,gold,spot the group on stage.,are now doing dancing in a packed gym.,dine downstairs in their pajamas.,makes their way along a narrow track.,0\n15389,lsmdc3064_SPARKLE_2012-3951,14786,\"With her back to him, she breaks into a smile. Now in the someone's bedroom, someone\",\"With her back to him, she breaks into a smile.\",\"Now in the someone's bedroom, someone\",gold,wears curlers and straightens someone's hair.,looks out through the hole in the ceiling.,opens the door to the backdoor.,drops plastic on a trash can.,0\n15390,lsmdc0016_O_Brother_Where_Art_Thou-55578,6430,\"He locks the nose onto someone's chain and levers the arms. As his hand chinks free, someone\",He locks the nose onto someone's chain and levers the arms.,\"As his hand chinks free, someone\",gold,arrives at someone's cell.,snatches out the shell.,grabs him away atop a lever.,does not react to his newfound liberty.,3\n15391,lsmdc0016_O_Brother_Where_Art_Thou-55578,6428,A moment later someone rises over the lip of his bed. His face is blacked and he,A moment later someone rises over the lip of his bed.,His face is blacked and he,gold,makes the barrel against the neck of his bobbing head.,presses his ear to the ring's rim.,reaches the flask in his find packet beside him.,sways as if standing on a boat.,3\n15392,lsmdc0016_O_Brother_Where_Art_Thou-55578,6429,\"He is raising a large, long - armed, short - nosed pincering tool. He\",\"He is raising a large, long - armed, short - nosed pincering tool.\",He,gold,\", the pan begins to blend with the two - fingered grimace with valuables.\",comes into the room and starts at the gate.,\"picks up his grocery bag, sets it aside.\",locks the nose onto someone's chain and levers the arms.,3\n15393,anetv_WqDep-4l0yc,14781,The man reaches to pet the dog as the dog walks around and then picks the dog up and holds the dog up by a strap on the top of the life jacket over the water and then sets the dog down back into the boat by the life jacket. The man,The man reaches to pet the dog as the dog walks around and then picks the dog up and holds the dog up by a strap on the top of the life jacket over the water and then sets the dog down back into the boat by the life jacket.,The man,gold,throws a newspaper to the ground while he throws the frisbee.,begins to paddle the boat out into the water as the dog watches on from the side of the boat.,throws up at the door again while still having a strange life.,\"stands after and then walks up to the dog, by the right kid occasionally whispering signs at him clad in a white dress.\",1\n15394,anetv_WqDep-4l0yc,981,\"He moves it onto the water, canoeing around with his dog. He\",\"He moves it onto the water, canoeing around with his dog.\",He,gold,moves in and out of the water and him towards the pool.,approaches the smaller area and ends by walking away.,abruptly pulls out his profile.,is shown paddling and turning in the lake.,3\n15395,anetv_WqDep-4l0yc,980,A man is talking while seated in a large canoe. He,A man is talking while seated in a large canoe.,He,gold,\"moves it onto the water, canoeing around with his dog.\",is smiling to the camera as he finishes and zooms in on the settings.,begins walking his kayak behind the boat.,dives in two directions and surround the area of the pool.,0\n15396,lsmdc3069_THE_BOUNTY_HUNTER-5204,16537,The officers place the couple in side - by - side cells. Someone,The officers place the couple in side - by - side cells.,Someone,gold,lies in his face.,takes a pack of cigarettes as a silver bullet rounds the trunk.,beams at him and shakes her head.,follows someone through the door.,2\n15397,lsmdc3069_THE_BOUNTY_HUNTER-5204,16534,\"As the bounty hunter descends the stoop, the arresting officer from the parade swaggers up. Someone\",\"As the bounty hunter descends the stoop, the arresting officer from the parade swaggers up.\",Someone,gold,eyes him with a half - smile.,\"swipes after him, then kicks the soldier away again.\",onto himself as the vehicle runs across the camp hut he dashes up a long tunnel into a narrow road.,\"hands over another cup, which someone drops them down.\",0\n15398,lsmdc3069_THE_BOUNTY_HUNTER-5204,16531,A female officer leads someone away as she glares at someone. The bounty hunter signs a form and the cop at the desk,A female officer leads someone away as she glares at someone.,The bounty hunter signs a form and the cop at the desk,gold,cruises up someone at his laptop.,shakes out of sight.,lowers his questioning gaze.,shakes his head incredulously.,3\n15399,lsmdc3069_THE_BOUNTY_HUNTER-5204,16540,\"Separating, they gaze into each other's eyes. Grinning, someone\",\"Separating, they gaze into each other's eyes.\",\"Grinning, someone\",gold,makes someone come in with his drink.,massages his neck then wraps her arms around him once again.,kisses someone's fist and takes a drag.,watches the blanket move into the room.,1\n15400,lsmdc3069_THE_BOUNTY_HUNTER-5204,16532,\"The bounty hunter signs a form and the cop at the desk shakes his head incredulously. Pursing his mouth regretfully, someone\",The bounty hunter signs a form and the cop at the desk shakes his head incredulously.,\"Pursing his mouth regretfully, someone\",gold,waves goodbye to the cop and ambles out.,\"puts up the cigarette, toward someone's vehicle.\",moves to the lunch table.,swallows the base full of cucumbers.,0\n15401,lsmdc3069_THE_BOUNTY_HUNTER-5204,16541,\"Grinning, someone massages his neck then wraps her arms around him once again. They\",\"Grinning, someone massages his neck then wraps her arms around him once again.\",They,gold,sticks the tongue out would not like she had never seen dinner.,hold onto the bar several times as they pull away.,picks up the handcuff.,embrace and share a deep kiss.,3\n15402,lsmdc3069_THE_BOUNTY_HUNTER-5204,16529,\"Someone skids around a corner, pulls into a curbside spot, and brakes hard. She\",\"Someone skids around a corner, pulls into a curbside spot, and brakes hard.\",She,gold,notices the police station across the street.,flings the biker off and attacks the dog.,stops in front of someone to someone 'phone.,\"swoops down the streets, following the next market as he passes.\",0\n15403,lsmdc3069_THE_BOUNTY_HUNTER-5204,16533,\"Pursing his mouth regretfully, someone waves goodbye to the cop and ambles out. Now, someone\",\"Pursing his mouth regretfully, someone waves goodbye to the cop and ambles out.\",\"Now, someone\",gold,skates using the glowing rubber lights.,is holding a radio unlocked from a hook.,strolls outside passing an officer and handcuffed teen on their way in.,sprints onto deck deck.,2\n15404,lsmdc3069_THE_BOUNTY_HUNTER-5204,16539,\"Someone strokes her ex - husband's hair then cups the back of his head in both her hands. Separating, they\",Someone strokes her ex - husband's hair then cups the back of his head in both her hands.,\"Separating, they\",gold,share a lingering kiss on the lips.,walk at the prow of the snitch.,gaze into each other's eyes.,relax into a passionate kiss.,2\n15405,lsmdc3069_THE_BOUNTY_HUNTER-5204,16530,\"In the station, someone wears handcuffs. A female officer\",\"In the station, someone wears handcuffs.\",A female officer,gold,leads someone away as she glares at someone.,leads her to an apartment building.,grabs the apartment phone and hurries out.,leads someone on a building to a temple.,0\n15406,lsmdc3069_THE_BOUNTY_HUNTER-5204,16536,Someone shoves a cuffed someone toward a holding cell. The officers,Someone shoves a cuffed someone toward a holding cell.,The officers,gold,place the couple in side - by - side cells.,\"follow the two women onward, removing a union jack, and surround a police car and towering quickly watching the men.\",scramble passed someone past an open door and peer through up the gate.,shoot his glasses down then point out some bow.,0\n15407,lsmdc3069_THE_BOUNTY_HUNTER-5204,16535,\"Inside, someone uses a phone. Someone\",\"Inside, someone uses a phone.\",Someone,gold,rushes in and hits the gate leading to someone.,squirts her from behind.,shoves a cuffed someone toward a holding cell.,grins in pain and self - consciously.,2\n15408,lsmdc3069_THE_BOUNTY_HUNTER-5204,16538,They step up to the bars. Someone,They step up to the bars.,Someone,gold,reaches through them and wraps her arms around someone's neck.,gathers matches from an ax.,\"holds the weight back, then straightens.\",grabs someone's arm as she takes the keys on the can.,0\n15409,lsmdc1045_An_education-90232,1704,\"Disappointedly, someone puts the bottle back in her satchel. The teacher\",\"Disappointedly, someone puts the bottle back in her satchel.\",The teacher,gold,waves after her as they share a look.,looks up as she leaves.,looks over one shoulder at the actress.,shrugs him over and pulls him into a hug.,1\n15410,anetv_aGu-FfGDdVI,4729,\"A man is in the murky waters, using a paddle. He\",\"A man is in the murky waters, using a paddle.\",He,gold,steps back and forth into the water.,is kayaking toward the camera and past other kayakers.,starts fishing through the coast.,contains some tools that he uses to work for man.,1\n15411,anetv_aGu-FfGDdVI,4730,He is kayaking toward the camera and past other kayakers. He,He is kayaking toward the camera and past other kayakers.,He,gold,is also shown paddling in canoes.,continues his journey down the track and walking to the border of the stairs.,\"beckons someone up to him, as he speaks.\",\"goes through the water faster, trying to keep up with the current.\",3\n15412,lsmdc1038_The_Great_Gatsby-87691,15653,People pay close attention to their exchange. Someone,People pay close attention to their exchange.,Someone,gold,\"glances at someone, who slows his fist down.\",\"pauses, looking at the orchestra.\",stands across the room from someone.,nods then shoves someone back towards him.,2\n15413,anetv_C26UfwZbHE0,11765,Woman is in front of a handwash cleaning his mouth with mouthwash. the woman is in the hall and talk to the boys and they,Woman is in front of a handwash cleaning his mouth with mouthwash.,the woman is in the hall and talk to the boys and they,gold,talk in the living room.,seem impressed by her fresh breath.,are thrashing while trying to make the food with their dogs in the background.,go on various tricks alone and having fun.,1\n15414,anetv_C26UfwZbHE0,11764,A woman walks in the hall holding a mouthwash and talking to the camera about it. woman,A woman walks in the hall holding a mouthwash and talking to the camera about it.,woman,gold,is in front of a handwash cleaning his mouth with mouthwash.,shows handled bows and drink wine.,continues to face her hands with liquid.,puts cups in the kitchen in the sink.,0\n15415,anetv_9JrRZ9i1sXo,12120,A person is shoveling snow from a driveway. They,A person is shoveling snow from a driveway.,They,gold,a snow ramp on a snow shovel.,push the snow to the side and pick it up and throw it into a pile.,climb into the tree and walk onto the lawn.,sit raking the snow down the hill.,1\n15416,anetv_9JrRZ9i1sXo,12121,They push the snow to the side and pick it up and throw it into a pile. Words,They push the snow to the side and pick it up and throw it into a pile.,Words,gold,around them come on as they push the camel along.,men are seen face to face and leads into the person attempting to grab snow but city breaks surrounding them.,\"wooden drill is shown, followed by several clips of people riding snowboards.\",come onto the screen at the end.,3\n15417,anetv_9JrRZ9i1sXo,13046,She moves around the driveway and demonstrates how to properly shovel snow. She,She moves around the driveway and demonstrates how to properly shovel snow.,She,gold,continues speaking while pushing the snow into a banking.,\"uses the car on the van and way,.\",then continues to walk along the sidewalk without a couple.,keeps talking to the camera again and a lady handing on the shovel and depositing a worker's garden materials on the ground.,0\n15418,anetv_9JrRZ9i1sXo,13045,A woman is seen shoveling snow in a walkway and speaking to the camera. She,A woman is seen shoveling snow in a walkway and speaking to the camera.,She,gold,\"dumps snow into the snow, blowing a toy search.\",continues speaking to her camera in the end.,speaks to her camera and films himself.,moves around the driveway and demonstrates how to properly shovel snow.,3\n15419,lsmdc3014_CAPTAIN_AMERICA-5845,513,Someone approaches from a connecting corridor and shoots her machine gun. The trooper's armored suit,Someone approaches from a connecting corridor and shoots her machine gun.,The trooper's armored suit,gold,is thrown on the ground.,explodes as he falls dead.,pours into the pirate's arms.,speeds away from someone's clean office window and then runs into someone.,1\n15420,lsmdc3014_CAPTAIN_AMERICA-5845,509,\"As Allied soldiers pour in, someone picks up a blaster and incinerates several of them before running off. A Hydra trooper\",\"As Allied soldiers pour in, someone picks up a blaster and incinerates several of them before running off.\",A Hydra trooper,gold,charges toward the entering soldiers with his blaster raised.,knocks over the hefty man in a hazmat floral shield.,is pursued as german officers steer their guns through the gates of someone's house.,blasts the calf up to the destroyer.,0\n15421,lsmdc3014_CAPTAIN_AMERICA-5845,514,The trooper's armored suit explodes as he falls dead. Someone,The trooper's armored suit explodes as he falls dead.,Someone,gold,runs up to someone.,wraps his arms around someone.,shoots himself away from the men.,strolls over and loosens his tie.,0\n15422,lsmdc3014_CAPTAIN_AMERICA-5845,503,More us soldiers emerge from the forest. Someone,More us soldiers emerge from the forest.,Someone,gold,\"runs down a street and approaches the bushes, trees and healthy creatures.\",carries a machine gun as she runs alongside the advancing soldiers.,\"peers round with horror, as the birders flash past someone, who whacks the dead man in the head.\",'s eyes widen.,1\n15423,lsmdc3014_CAPTAIN_AMERICA-5845,532,\"As the car pulls closer to the plane, someone stands and glances at someone. Someone\",\"As the car pulls closer to the plane, someone stands and glances at someone.\",Someone,gold,stands on the middle of the littered car with his spear in hand.,waits with a pipe gun.,\"grabs someone, pulls him close, and kisses him.\",grabs the handlebars as the kids pump.,2\n15424,lsmdc3014_CAPTAIN_AMERICA-5845,510,\"Meanwhile, someone chases someone while deflecting blasts with his shield. Someone\",\"Meanwhile, someone chases someone while deflecting blasts with his shield.\",Someone,gold,dashes between two closing doors.,shoots their bombs and kicks the drones.,are shakily in the air.,sprints to the door with a deadbolt.,0\n15425,lsmdc3014_CAPTAIN_AMERICA-5845,524,\"He sprints through the fray, knocking troopers down with his shield. Someone\",\"He sprints through the fray, knocking troopers down with his shield.\",Someone,gold,leads the forceps through a pile of debris.,\"leaps and grabs a cable, then swing over the heads of the battling soldiers.\",stands so units woman just did not know whose fists are convulsing.,eyes haul them out.,1\n15426,lsmdc3014_CAPTAIN_AMERICA-5845,508,\"Flames engulf the entrance to a corridor. As Allied soldiers pour in, someone\",Flames engulf the entrance to a corridor.,\"As Allied soldiers pour in, someone\",gold,picks up a blaster and incinerates several of them before running off.,rushes in to prop his hands and aim between.,remains huddled into the squad chair.,spots a squad car on the balcony.,0\n15427,lsmdc3014_CAPTAIN_AMERICA-5845,493,\"Someone punches someone, backhands him, and jabs him in the chest. Someone\",\"Someone punches someone, backhands him, and jabs him in the chest.\",Someone,gold,\"stares at him, distraught.\",\"slaps his face again, looking on his face.\",pauses at the doorway.,falls to his knees.,3\n15428,lsmdc3014_CAPTAIN_AMERICA-5845,525,\"Someone leaps and grabs a cable, then swing over the heads of the battling soldiers. He\",\"Someone leaps and grabs a cable, then swing over the heads of the battling soldiers.\",He,gold,\"sits on the ground, hanging his weapon and leaning on a brick post.\",leaps down onto the broomstick and then shakes its way down a large flight of stairs.,finds someone standing at the top of the lifeboat.,lands on the runway and chases after the plane.,3\n15429,lsmdc3014_CAPTAIN_AMERICA-5845,537,Someone stands and gazes up at someone clinging to the rising bomber. Someone,Someone stands and gazes up at someone clinging to the rising bomber.,Someone,gold,quickly moves down the narrow aisle between someone and someone.,looks just as someone climbs the stairs.,climbs up into the hold as the wheels retract.,crawls through a duct as the teller struggles struggles to reach desperately.,2\n15430,lsmdc3014_CAPTAIN_AMERICA-5845,533,Someone puts the shield on his back and climbs onto the hood of the car as someone maneuvers underneath the plane. Someone,Someone puts the shield on his back and climbs onto the hood of the car as someone maneuvers underneath the plane.,Someone,gold,shakes someone's hand dismissively then drains it.,checks the ending rear.,pulls his hood past someone.,drives past the propellers.,3\n15431,lsmdc3014_CAPTAIN_AMERICA-5845,521,\"He turns on the cockpit control panel. On a display screen, an image of North America\",He turns on the cockpit control panel.,\"On a display screen, an image of North America\",gold,sports cassettes lies on a runway in a black ring.,join a gathered crowd in front of an american in metropolitan stadium.,appears with a blinking bull's - eye over new york city.,tribe style action lessons appears on a map.,2\n15432,lsmdc3014_CAPTAIN_AMERICA-5845,530,\"Driving the car, someone glances down and pushes a button on the dashboard. Flames\",\"Driving the car, someone glances down and pushes a button on the dashboard.\",Flames,gold,banks out in the hotel.,curtains flap in the shadows.,pushes up his cuffed arm.,shoot out of the back of the car as it shoots forward.,3\n15433,lsmdc3014_CAPTAIN_AMERICA-5845,499,\"Sliding in on the cables, someone, someone, and someone burst through window and fire weapons while someone flees down a long corridor. Someone\",\"Sliding in on the cables, someone, someone, and someone burst through window and fire weapons while someone flees down a long corridor.\",Someone,gold,stops with a dirt broom outside someone house.,cautiously unleashes a glimpse of his fallen colleague.,tosses someone his shield.,slumps into the wall where the clock was lodged in the library.,2\n15434,lsmdc3014_CAPTAIN_AMERICA-5845,501,\"Someone runs down the corridor as dozens of armed Hydra troops run after him. In another corridor, metal doors\",Someone runs down the corridor as dozens of armed Hydra troops run after him.,\"In another corridor, metal doors\",gold,blow apart in a burst of flames.,extend out from an pulpit street and disappear inside.,roll down as someone's crane controls the circuit engulfing her.,ascend above a crate which flings open.,0\n15435,lsmdc3014_CAPTAIN_AMERICA-5845,519,\"Allied soldiers shoot three Hydra troopers trying to climb up behind him. In the cockpit, someone\",Allied soldiers shoot three Hydra troopers trying to climb up behind him.,\"In the cockpit, someone\",gold,sweeps the young mutant through the water.,\"inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat.\",draws someone's gun out of the control car.,watches on the ship.,1\n15436,lsmdc3014_CAPTAIN_AMERICA-5845,507,\"Someone 'men explode armored vehicles, killing nearby troopers and clearing a path into the base. Flames\",\"Someone 'men explode armored vehicles, killing nearby troopers and clearing a path into the base.\",Flames,gold,look over at someone with a smirk.,engulf the entrance to a corridor.,\"pulls down the back of someone's shirt, ammunition escort.\",lags behind.,1\n15437,lsmdc3014_CAPTAIN_AMERICA-5845,517,\"Someone runs to his shield and pulls it free, then dashes through the doors as they close. In a huge hangar, someone\",\"Someone runs to his shield and pulls it free, then dashes through the doors as they close.\",\"In a huge hangar, someone\",gold,climbs up a ladder into a bomber plane.,is standing upright facing a lower section.,sees someone holding his phone from someone's shoulder.,watches thin chinese women on the sidelines and observe after someone.,0\n15438,lsmdc3014_CAPTAIN_AMERICA-5845,505,A bullet takes out a Hydra trooper kneeling beside an armored vehicle. Other troopers,A bullet takes out a Hydra trooper kneeling beside an armored vehicle.,Other troopers,gold,fall back toward the base as they fire at approaching soldier.,pass the shot put.,run up the track.,smash off and pass them with someone's chained look.,0\n15439,lsmdc3014_CAPTAIN_AMERICA-5845,539,Several Hydra troopers enter the hold and run along the catwalk. Someone,Several Hydra troopers enter the hold and run along the catwalk.,Someone,gold,drops suit and drops.,\"is up immediately running, kicking off outward and jumping for jumping under the wall.\",jumps down and kicks the last trooper over the railing as he passes.,comes over the bar to ram out of harm's calves.,2\n15440,lsmdc3014_CAPTAIN_AMERICA-5845,506,Other troopers fall back toward the base as they fire at approaching soldier. Someone 'men,Other troopers fall back toward the base as they fire at approaching soldier.,Someone 'men,gold,move the tire and the soldier's rooftop chute.,hurry down the aisle to criminal.,\"explode armored vehicles, killing nearby troopers and clearing a path into the base.\",\"struggle off the bridge, mostly survivors.\",2\n15441,lsmdc3014_CAPTAIN_AMERICA-5845,528,\"In the cockpit, someone watches the car approach on a monitor. As he slides a lever forward, the plane\",\"In the cockpit, someone watches the car approach on a monitor.\",\"As he slides a lever forward, the plane\",gold,accelerates toward the hangar exit.,draws a row of icy water.,arrives beside the cabin.,begins to speed toward the rising cab where hundreds of workers support them.,0\n15442,lsmdc3014_CAPTAIN_AMERICA-5845,497,\"Outside, grappling hooks and cables shoot into the mountainside above the barred window. Someone\",\"Outside, grappling hooks and cables shoot into the mountainside above the barred window.\",Someone,gold,guides someone behind him with a rooster.,hurls a crystalline cannon aside and heads onto the object.,\"pulls a trooper in front of himself as someone fires, incinerating the trooper.\",\"lowers someone's hand, pulls the lever and waves.\",2\n15443,lsmdc3014_CAPTAIN_AMERICA-5845,535,\"Someone stands, then leaps onto the plane's back wheel mount as the bomber takes off. Someone\",\"Someone stands, then leaps onto the plane's back wheel mount as the bomber takes off.\",Someone,gold,takes a seat and tries to explore the car.,\"as the station helicopter approaches the ship, a speed launch will leave the building.\",turns the steering wheel and stomps on the brake pedal.,shoots a fire alarm.,2\n15444,lsmdc3014_CAPTAIN_AMERICA-5845,494,Someone falls to his knees. His chest,Someone falls to his knees.,His chest,gold,lies on the floor.,pounds the snake's chest.,\"heaving, someone holds up a hand.\",heaves as he gazes up at someone.,3\n15445,lsmdc3014_CAPTAIN_AMERICA-5845,511,Someone dashes between two closing doors. Someone,Someone dashes between two closing doors.,Someone,gold,sees a knob being labeled.,hops out and his clothes drift back into place.,throws a shield which wedges between the doors.,steps up to a cupboard at the base of his chair.,2\n15446,lsmdc3014_CAPTAIN_AMERICA-5845,502,\"In the forest, someone watches as someone and his men rush toward the base. More us soldiers\",\"In the forest, someone watches as someone and his men rush toward the base.\",More us soldiers,gold,gallop through a dusty house parked inside a building.,emerge from the forest.,are running down the rocky terrain as they descend the trees as an indian luxury train passes.,stand in a doorway and exit the courtyard.,1\n15447,lsmdc3014_CAPTAIN_AMERICA-5845,538,He hops onto a railed catwalk between two bombs with small cockpits and propellers labelled Chicago and New York. Several Hydra troopers,He hops onto a railed catwalk between two bombs with small cockpits and propellers labelled Chicago and New York.,Several Hydra troopers,gold,surround a rooftop with huge swords.,plummet through the gears and debris.,walk beside the lifeboats and trolls someone slides down the shaft through someone's reception desk.,enter the hold and run along the catwalk.,3\n15448,lsmdc3014_CAPTAIN_AMERICA-5845,518,\"In a huge hangar, someone climbs up a ladder into a bomber plane. Allied soldiers\",\"In a huge hangar, someone climbs up a ladder into a bomber plane.\",Allied soldiers,gold,shoot three hydra troopers trying to climb up behind him.,work out with tents as they use the coral cover.,dismount a trellis and rip up someone's apartment.,\"run tossing the hydra soldiers with instructions, then he stares at them through binoculars.\",0\n15449,lsmdc3014_CAPTAIN_AMERICA-5845,515,Someone runs up to someone. He,Someone runs up to someone.,He,gold,\"stands at his feet, pointing.\",hurls a bolt at him.,steps closer to her.,winces until someone hears the sound outside.,2\n15450,lsmdc3014_CAPTAIN_AMERICA-5845,527,\"Someone hops into the passenger seat and someone drives off after the plane. In the cockpit, someone\",Someone hops into the passenger seat and someone drives off after the plane.,\"In the cockpit, someone\",gold,stands inside a open trunk.,\"loses a storm with her sunglasses, then jumps over the edge of the cockpit and frantically flailing herself, toppling someone.\",watches the car approach on a monitor.,sits on his bed in the rain.,2\n15451,lsmdc3014_CAPTAIN_AMERICA-5845,504,Someone carries a machine gun as she runs alongside the advancing soldiers. A bullet,Someone carries a machine gun as she runs alongside the advancing soldiers.,A bullet,gold,point onto someone's backpack as she tests the snow out of the tank.,\"blocks someone 'bullets, ducks down past someone, and another knife and a crowbar.\",takes out a hydra trooper kneeling beside an armored vehicle.,squeezes into the 'neck.,2\n15452,lsmdc3014_CAPTAIN_AMERICA-5845,534,Someone drives past the propellers. Someone,Someone drives past the propellers.,Someone,gold,looks along the turbulent shoreline of the city's long bayou.,sees a truck someone falls off from the rooftop.,\"stands, then leaps onto the plane's back wheel mount as the bomber takes off.\",speeds on two mountains to each cobble.,2\n15453,lsmdc3014_CAPTAIN_AMERICA-5845,523,Someone runs into the hangar and glances around at the battling Hydra troopers and Allied soldiers. He,Someone runs into the hangar and glances around at the battling Hydra troopers and Allied soldiers.,He,gold,throws a bird with an animal costume.,\"sprints through the fray, knocking troopers down with his shield.\",shoots the flying plane into the night air.,sharpens his gun to the side.,1\n15454,lsmdc3014_CAPTAIN_AMERICA-5845,531,\"Flames shoot out of the back of the car as it shoots forward. As the car pulls closer to the plane, someone\",Flames shoot out of the back of the car as it shoots forward.,\"As the car pulls closer to the plane, someone\",gold,puts down his silky walkie - talkie and crosses back to his window.,\"looks down at his phone in a clown suit, who's awkwardly near someone.\",stands and glances at someone.,collapses drops onto the ground.,2\n15455,lsmdc3014_CAPTAIN_AMERICA-5845,520,\"In the cockpit, someone inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat. He\",\"In the cockpit, someone inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat.\",He,gold,brings him to his feet.,reaches into the elevator.,\"pours sleepily in his eyes and then reverses, knocking himself off.\",turns on the cockpit control panel.,3\n15456,lsmdc3014_CAPTAIN_AMERICA-5845,529,\"As he slides a lever forward, the plane accelerates toward the hangar exit. Driving the car, someone\",\"As he slides a lever forward, the plane accelerates toward the hangar exit.\",\"Driving the car, someone\",gold,wrenches the cable to a halt in front of someone.,climbs the boot into a certain - traffic area.,glances down and pushes a button on the dashboard.,looks up from his run.,2\n15457,lsmdc3014_CAPTAIN_AMERICA-5845,496,\"Someone pulls out a blue energy pistol. Outside, grappling hooks and cables\",Someone pulls out a blue energy pistol.,\"Outside, grappling hooks and cables\",gold,streak the half - open door.,fly up as it lifts up their dozen flag supports.,shoot into the mountainside above the barred window.,holding a door by one compartment grab someone.,2\n15458,lsmdc3014_CAPTAIN_AMERICA-5845,498,\"Someone pulls a trooper in front of himself as someone fires, incinerating the trooper. Sliding in on the cables, someone, someone, and someone\",\"Someone pulls a trooper in front of himself as someone fires, incinerating the trooper.\",\"Sliding in on the cables, someone, someone, and someone\",gold,spill out into the flying park.,follow him over as he turns above the surface of someone's bed.,emerge into a jungle past two levers and lowering swords to shoot a quaffle.,burst through window and fire weapons while someone flees down a long corridor.,3\n15459,lsmdc3014_CAPTAIN_AMERICA-5845,512,A Hydra trooper appears and shoots flamethrowers at someone who ducks into a doorway to avoid the streams of fire. Someone,A Hydra trooper appears and shoots flamethrowers at someone who ducks into a doorway to avoid the streams of fire.,Someone,gold,swigs from the bullwhip.,turns to all of the trainees from a long flight.,screeches out after him.,approaches from a connecting corridor and shoots her machine gun.,3\n15460,lsmdc1060_Yes_man-99568,10515,She smiles and looks at him. They,She smiles and looks at him.,They,gold,share a lingering kiss and wrap their arms around each other.,points their feet together.,turns on a crescent arrow curling.,moves rose from her.,0\n15461,lsmdc1060_Yes_man-99568,10517,\"Someone reaches round and grabs his gown to make sure he is not exposing himself. Outside the homeless shelter, someone\",Someone reaches round and grabs his gown to make sure he is not exposing himself.,\"Outside the homeless shelter, someone\",gold,swipes it with his coat and watch the light go.,picks up a handful of sugar and sighs.,\"'s with someone, who sorts through clothes.\",\"is looking inside the cafe, pointing out the whole size.\",2\n15462,lsmdc1060_Yes_man-99568,10514,They are at a viewpoint overlooking the city. She,They are at a viewpoint overlooking the city.,She,gold,\"produces something from the boat wall, smoking out from a bottle.\",finds them in the picturesque forest.,sits up and drags the baby to a doorway.,smiles and looks at him.,3\n15463,lsmdc1060_Yes_man-99568,10518,Someone and the vagrant guy both wear pleated trousers. Someone,Someone and the vagrant guy both wear pleated trousers.,Someone,gold,waves them out for home.,is on - stage.,grabs someone by the shoulder and starts chopping him.,hops off of the roof in an animated advertisement.,1\n15464,anetv_So4BX0I1VRI,13756,\"The person is shown knocking down 9 of the bowling pins, which means he has a spare. Next he\",\"The person is shown knocking down 9 of the bowling pins, which means he has a spare.\",Next he,gold,knocks all of the pins down and gets a strike.,gets the ball in half and hits pins to fall pins and head back into the opposite lane.,\"keeps one, but holds a ball and puts in a spiral bowl.\",starts walking around or bowling in another manner.,0\n15465,lsmdc0032_The_Princess_Bride-66380,14546,\"Someone enters, and kneels. He\",\"Someone enters, and kneels.\",He,gold,see another smaller variety of exposed shapes.,\"enters the room, lighting a candle, and looks around.\",takes another dish from himself.,\"shows the key, dangling from a chain around his neck.\",3\n15466,lsmdc0032_The_Princess_Bride-66380,14547,\"Just at that moment, someone enters. Someone\",\"Just at that moment, someone enters.\",Someone,gold,\"leaves the room with his gloved hand out, then sits beside someone.\",looks up suddenly up a moment to stop seeing someone.,\"can stand by her, drives past the oncoming stampede.\",looks at her blankly for a moment.,3\n15467,anetv_T3rh5gQVFKA,10530,Four boys on skateboards ride past. We,Four boys on skateboards ride past.,We,gold,are going across ramps to a man sitting in bed.,see a boy almost fall two times.,\"kicks the cars away, then people both jump off and stick and jump while running around.\",\"pull down, each of them holding a pair of gloves and leads them up the street.\",1\n15468,anetv_T3rh5gQVFKA,10531,We see a boy almost fall two times. We,We see a boy almost fall two times.,We,gold,see a closing screen ending in a man talking.,see the black emblem on the screen.,see an illustration on a camper.,see the board on the curb.,3\n15469,anetv_T3rh5gQVFKA,10528,We see a wolf fall in the title screen. We,We see a wolf fall in the title screen.,We,gold,see an image of the man.,see the gate and emblem flashing.,see the man drop the nozzle.,see the landscape of a small town.,3\n15470,anetv_T3rh5gQVFKA,10529,We see the landscape of a small town. A boy,We see the landscape of a small town.,A boy,gold,grabs a shovel and shovels snow off the snow.,rides a raft in a river and pulls on a string.,snowboards through a desert on a bluff property.,rides down a street on a skateboard.,3\n15471,anetv_T3rh5gQVFKA,10532,A group of boys walking up a hill. The end credits play and we,A group of boys walking up a hill.,The end credits play and we,gold,see a boy playing a guitar.,see a boy on a bus.,see sunglasses holding a brush.,see a bike march from a parking lot.,1\n15472,lsmdc0031_The_Lost_Weekend-65798,16623,Someone slips into someone's place in the doorway. She,Someone slips into someone's place in the doorway.,She,gold,raise it out and bend forward for a moment.,keeps the door proceeding quietly down the table.,stands waiting until people start downstairs.,enters a room where the familiar sports vision is wash.,2\n15473,lsmdc0031_The_Lost_Weekend-65798,16624,She stands waiting until people start downstairs. Someone,She stands waiting until people start downstairs.,Someone,gold,is still in the salon with a woman in his arms.,picks her up in the bucket and wheeled her unconscious inside.,\"enters, closing the door behind her.\",punches him right outside.,2\n15474,lsmdc0031_The_Lost_Weekend-65798,16626,A shaft of light comes from the corridor. Someone,A shaft of light comes from the corridor.,Someone,gold,spots someone hanging off his jacket.,holds one leg to the domed points.,crouches behind the door.,moves toward someone as he watches his mother pass.,2\n15475,lsmdc0031_The_Lost_Weekend-65798,16628,She kneels down beside someone. They,She kneels down beside someone.,They,gold,step away from her brother.,stand at the club.,are beside the light switch.,hop up to exit.,2\n15476,lsmdc0031_The_Lost_Weekend-65798,16620,\"With his last strength someone raises himself against the door, stretches out his hand, gets the door chain, tries to slip it in its notch, but misses. Someone, the janitor, a ring with labelled keys on it in his hand,\",\"With his last strength someone raises himself against the door, stretches out his hand, gets the door chain, tries to slip it in its notch, but misses.\",\"Someone, the janitor, a ring with labelled keys on it in his hand,\",gold,gets into town through the shrouded mouth of the historic school.,\"leaps forward, rummaging for the scarf.\",is holding a few red dollar bills.,leads people up the stairs.,3\n15477,lsmdc0031_The_Lost_Weekend-65798,16621,\"Someone, the janitor, a ring with labelled keys on it in his hand, leads people up the stairs. Someone\",\"Someone, the janitor, a ring with labelled keys on it in his hand, leads people up the stairs.\",Someone,gold,has opened the door and holds it open as far as he can.,is draped over the desk.,stands on either end of a narrow corridor opening.,grabs someone in the shoulder.,0\n15478,lsmdc0031_The_Lost_Weekend-65798,16625,\"Someone enters, closing the door behind her. A shaft of light\",\"Someone enters, closing the door behind her.\",A shaft of light,gold,comes from the corridor.,\"hits a fairly large window, which leads her towards the door.\",sweeps across the room.,glows on her face.,0\n15479,lsmdc0031_The_Lost_Weekend-65798,16622,Someone throws all his weight against the door but it is no use. Someone,Someone throws all his weight against the door but it is no use.,Someone,gold,slips into someone's place in the doorway.,stands for the squad as they walk home.,are thrown from the honks.,appears in the middle of the bar.,0\n15480,anetv_ZuuY0xffLYE,6587,\"The stylist uses a brush and a blow dryer to add volume, texture and curl to the client's hair. The stylist\",\"The stylist uses a brush and a blow dryer to add volume, texture and curl to the client's hair.\",The stylist,gold,trims the other stocking with the products then proceeds to cut the model's hair.,sprays the clients hair.,irons the side of the stylist with and finishes the hair style.,brushes her hair around the bald head and shows the hair dryer.,1\n15481,anetv_ZuuY0xffLYE,6582,The presenter styles a female client's hair. The presenter,The presenter styles a female client's hair.,The presenter,gold,places a pair of glasses on the table.,puts on a hat and sits on a microphone.,walks into a room.,speaks directly into the camera.,3\n15482,anetv_ZuuY0xffLYE,6589,The stylist uses his hand to position the bangs. The stylist,The stylist uses his hand to position the bangs.,The stylist,gold,blow the hair gel and apply the hair to her face.,trims the strings underneath the arm.,use his hand to add a gel product to the client hair.,adds products to his hair and works back and forth towards the camera.,2\n15483,anetv_ZuuY0xffLYE,6590,The stylist use his hand to add a gel product to the client hair. The client,The stylist use his hand to add a gel product to the client hair.,The client,gold,pays to make sure the wash is over.,spins slowly on the chair to show of her hair style.,holds a blue towel to the man's ear and presses it over his face.,finishes shaving and ends with a microphone.,1\n15484,anetv_ZuuY0xffLYE,6588,The stylist sprays the clients hair. The stylist,The stylist sprays the clients hair.,The stylist,gold,uses his hand to position the bangs.,brushes her hair from her hair.,trims excitedly from the womans hair.,joins him on cutting the hair.,0\n15485,anetv_ZuuY0xffLYE,6585,The stylist wets the client's hair. The stylist,The stylist wets the client's hair.,The stylist,gold,parts the clients hair.,points out several pictures with the shears.,brushes her hair away.,styled her former hair with hairspray.,0\n15486,anetv_ZuuY0xffLYE,6583,The presenter speaks directly into the camera. The client,The presenter speaks directly into the camera.,The client,gold,ends with a list of emergency text on the screen.,\"continues slowly dancing, roping her hands and warming her up.\",removes the tape and walks back into the living room waiting.,spins slowly on a chair to present her hair.,3\n15487,anetv_ZuuY0xffLYE,6581,The image and label of the presenter or stylist is shown. The presenter,The image and label of the presenter or stylist is shown.,The presenter,gold,is held by their instructor.,uses a mirror and holding the brush.,styles a female client's hair.,is a girl dancing with someone in her room.,2\n15488,anetv_ZuuY0xffLYE,6586,The stylist parts the clients hair. The stylist,The stylist parts the clients hair.,The stylist,gold,\"uses a brush and a blow dryer to add volume, texture and curl to the client's hair.\",\"walks off, with her face down and her eyes glistening.\",continues blow drying his hair.,demonstrates to comb the hair while graying hair and places her hand in the ground.,0\n15489,anetv_uiCkFmebAZs,2145,\"A young lady in a bathing suit and a shower cap is sitting at the side of the pool talking while clips of her swimming are shown, and her name is Keri - anne Payne and is the 10 km Open Water Silver Olympic Medalist. The outro appears and it\",\"A young lady in a bathing suit and a shower cap is sitting at the side of the pool talking while clips of her swimming are shown, and her name is Keri - anne Payne and is the 10 km Open Water Silver Olympic Medalist.\",The outro appears and it,gold,comes to the screen making several foot placement while she adds it around the video time.,'s a black screen with a speedo logo and the word speedo.,\"includes a lot of skiers clipped and flipping, smiling, and flipping through the water.\",appears up pink a second time is measured and cut.,1\n15490,anetv_P-04xkAdWSY,272,A fourth sumo wrestler points at the three racers. A different man,A fourth sumo wrestler points at the three racers.,A different man,gold,wearing maroon leather pants and three yellow gloves stand behind the desk.,talks to the camera with others working in the background.,bounces more weights on the kid bouncing first.,arrives and continue to play the croquet.,1\n15491,anetv_P-04xkAdWSY,271,Three sumo wrestlers race on a track. A fourth sumo wrestler,Three sumo wrestlers race on a track.,A fourth sumo wrestler,gold,is shown on a mountain in his head.,points at the three racers.,kicks the bottom of a rope.,is doing walks around high poles.,1\n15492,anetv_P-04xkAdWSY,11856,Three people are kneeling on a track. the three people,Three people are kneeling on a track.,the three people,gold,are shaking five tree sticks afterwards as they each cheers.,get into a game of curling kicking each other over the pucks.,move to lift their body by the legs.,begin running very slowly across the track and field.,3\n15493,lsmdc1048_Gran_Torino-92249,7517,He pats a child's head. Everyone,He pats a child's head.,Everyone,gold,aims a revolver at someone who stands up.,gives him disapproving looks.,shuts the door and glares at someone.,\"sets his clothing aside, and holds it up to a second memory as the figures pull someone into a new room.\",1\n15494,anetv_84g4J1rxkQc,16228,\"A man is in the woods, balancing on a tight rope. He\",\"A man is in the woods, balancing on a tight rope.\",He,gold,flies out the hand of the calf.,adjusts the straps and plants in the air as he paddles out.,\"walks back and forth on the rope, then jumps.\",is holding a rope on the rope and he rides them up the rope.,2\n15495,anetv_Uc0Z2tuIJVA,9228,Several people are shown playing beer pong as well as speaking to the camera. The people,Several people are shown playing beer pong as well as speaking to the camera.,The people,gold,take cigarettes and turn on the side while speaking to the camera.,continue to play and hit the ball back and fourth.,continue to play as others speak to the camera.,speak to one another while another laughing and smiling.,2\n15496,anetv_Uc0Z2tuIJVA,3189,Many clips are shown of people playing beer pong as well as speaking to the camera. People,Many clips are shown of people playing beer pong as well as speaking to the camera.,People,gold,continue to put down volleyball while men sit on the beach.,watch and celebrate on the sides while people continue to play and speak to the camera.,are seen surfing on the water as well as bubbles and speaking to the camera.,are seen in the camera when a person takes a shot and hits ping pong.,1\n15497,anetv_Uc0Z2tuIJVA,9227,Two men are seen playing ping pong and a man speaks to the camera. Several people,Two men are seen playing ping pong and a man speaks to the camera.,Several people,gold,are shown playing beer pong as well as speaking to the camera.,are then seen continue to play with one another.,countdown on a table in front of the camera.,stand around to help people.,0\n15498,anetv_Uc0Z2tuIJVA,3188,A large beer pong table is shown with cups laid out and people playing. Many clips,A large beer pong table is shown with cups laid out and people playing.,Many clips,gold,are shown of people laying in tennis game being pumped up and around a guitar.,are shown of people playing beer pong as well as speaking to the camera.,are shown of men playing tennis showing several regular component images.,are then shown of people playing beer pong and walking towards them.,1\n15499,anetv_EN63ldqfGsI,14972,A countdown from ten to zero is shown. We then,A countdown from ten to zero is shown.,We then,gold,see a group gathered in a gymnasium.,see the 4 explosive of bolts.,see a man twirling a man from behind a table.,see people playing pool with various guitars and scoring a iron line.,0\n15500,anetv_EN63ldqfGsI,14974,\"The instructor walks up, and everyone starts a zumba exercise. The people\",\"The instructor walks up, and everyone starts a zumba exercise.\",The people,gold,begin to cheer and clap.,stand on the platforms putting their hands around the weights.,go to the chaos.,dance and do aerobic exercise in unison as they are led by the man in front.,3\n15501,anetv_EN63ldqfGsI,14973,\"We then see a group gathered in a gymnasium. The instructor walks up, and everyone\",We then see a group gathered in a gymnasium.,\"The instructor walks up, and everyone\",gold,\"backstage, dancing and dancing.\",returns to the knitting.,claps for the people.,starts a zumba exercise.,3\n15502,anetv_EN63ldqfGsI,15319,People are on a wooden basket court practicing a choreography. little kid wearing a pink shirt,People are on a wooden basket court practicing a choreography.,little kid wearing a pink shirt,gold,is standing next to the group watching them.,prepares to play hopscotch in the court.,is dribbling each ball with both hands.,is talking to the camera talking to the camera.,0\n15503,anetv_EN63ldqfGsI,15318,Name of a song with a countdown is shown. people,Name of a song with a countdown is shown.,people,gold,are outside in a snow dome.,are on a wooden basket court practicing a choreography.,playing foosball with wide eyes.,are playing a game of shuffleboard.,1\n15504,lsmdc1014_2012-78953,16670,The whole house shakes violently. People and the kids,The whole house shakes violently.,People and the kids,gold,stop and make their way down the aisle.,come toward the door.,climb under the table.,dive up to their trucks.,2\n15505,anetv_sBx1HvNjs6s,1698,A bald man is talking and two pictures of a young male with nice hair flashes on the screen. The man then begins to work with a mannequin head that has a similar hairstyle as the boy in the pictures and he,A bald man is talking and two pictures of a young male with nice hair flashes on the screen.,The man then begins to work with a mannequin head that has a similar hairstyle as the boy in the pictures and he,gold,is holding a particular razor like abandoned pool comb and is shown on some other black styling hair.,rubs it with double extensions.,\"shows how the haircut was achieved while buzzing, cutting, combing and finger combing the hair.\",\"films it videos of scenes of paint bowling, or smoking and drinking coffee.\",2\n15506,anetv_mB0MeZjjCmU,13430,A vanilla sponge cake is shown on the title screen. A white plate,A vanilla sponge cake is shown on the title screen.,A white plate,gold,is shown with a kitchen knife partially covered in tools and products.,is shown in near - bathrooms.,is then placed on a brown table alongside four brown eggs.,is shown with an animation methods identified x scrolling dots.,2\n15507,anetv_mB0MeZjjCmU,13432,\"After, milk, butter, flour, banana pudding, salt and vanilla extract are shown on a table. The milk and butter\",\"After, milk, butter, flour, banana pudding, salt and vanilla extract are shown on a table.\",The milk and butter,gold,are added to the bowl together.,are wiped in the oven.,are heated up then added in a large bowl with the cake batter to be whisked.,is stirred and poured into the bowl.,2\n15508,anetv_mB0MeZjjCmU,13431,\"They are then put in a silver bowl and they are whisked at a rapid pace as sugar is gradually added it and the whipping continues. After, milk, butter, flour, banana pudding, salt and vanilla extract\",They are then put in a silver bowl and they are whisked at a rapid pace as sugar is gradually added it and the whipping continues.,\"After, milk, butter, flour, banana pudding, salt and vanilla extract\",gold,\"are added, and pour drink ingredients in the pan and are then placed with sugar, and rust cream techniques.\",are added in the pan.,are shown on a table.,are shown in them.,2\n15509,anetv_mB0MeZjjCmU,13433,The milk and butter are heated up then added in a large bowl with the cake batter to be whisked. The vanilla,The milk and butter are heated up then added in a large bowl with the cake batter to be whisked.,The vanilla,gold,\"is added and stirred, seed, and pepper ready to serve.\",is replayed itself on a plate.,is sprinkled with an egg shaped like nuts and four objects of tube on the chocolate ring.,is then added and poured into another bowl before the final product is shown.,3\n15510,lsmdc3058_RUBY_SPARKS-28252,1555,Someone opens the passenger door. He,Someone opens the passenger door.,He,gold,nonchalantly froth the poker in front of hers and he heads back down the yard.,holds his brother's gaze then pulls the door shut.,unlocks the door.,finds someone's little packet.,1\n15511,lsmdc3058_RUBY_SPARKS-28252,1554,Someone shifts his sympathetic gaze. Someone,Someone shifts his sympathetic gaze.,Someone,gold,walks forward with a wave.,snaps a picture of himself.,clicks on the radio.,opens the passenger door.,3\n15512,anetv_1aCwFDS0j2A,3080,A woman is seen kneeling on a mat in a back yard and leads into her bending backwards using her hands. She then,A woman is seen kneeling on a mat in a back yard and leads into her bending backwards using her hands.,She then,gold,stops using the exercise machine in full affection and messes main with a finger.,finally draws herself and shows a small hula hoop on her legs.,springs back and fourth climbing up the hoop while swinging the little rope around herself with her arms.,puts her hands all the way down on the ground while still continuing to look up.,3\n15513,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60379,15431,Someone realizes what her message is. The Ring,Someone realizes what her message is.,The Ring,gold,lies in the palm of someone's hand.,is measured for paradise.,is not able to regain her progression.,sinking down against the e - scan device for ships.,0\n15514,anetv_K4F8I74OM-Y,17958,A man appears training them and different marathoners in training take turns being interviewed while they continue to switch back and forth to everyone going through the training. The last clip is the view from the start of a marathon and hundreds of people,A man appears training them and different marathoners in training take turns being interviewed while they continue to switch back and forth to everyone going through the training.,The last clip is the view from the start of a marathon and hundreds of people,gold,start running as they leave the start line.,walk in all directions that keep this.,\"going in and out of it, one dressed in green and leotards then pictured.\",on not walking around the bases.,0\n15515,anetv_K4F8I74OM-Y,17957,\"A clip begins and it features people running and the words on the screen say they are novices who are training to run a marathon in Tel Aviv, Israel. A man appears training them and different marathoners in training\",\"A clip begins and it features people running and the words on the screen say they are novices who are training to run a marathon in Tel Aviv, Israel.\",A man appears training them and different marathoners in training,gold,should be called military uniforms.,appear with part police people.,take turns being interviewed while they continue to switch back and forth to everyone going through the training.,environments and biking ride together in circles.,2\n15516,anetv_W3ozAI2ozCs,7437,The young athlete jumped on the pole and began turning around the pole with his arms and hands. A young kid,The young athlete jumped on the pole and began turning around the pole with his arms and hands.,A young kid,gold,walked at the side of the mat as the young boy is doing his rounds.,is fighting in a red dress throwing a discuss.,jumped on the bar and jumped over the bar.,\"runs after the man in front of the pole, then it hurt.\",0\n15517,anetv_W3ozAI2ozCs,7087,\"He does hand stands, then lifts his legs into the air in a plethora of moves. The boy\",\"He does hand stands, then lifts his legs into the air in a plethora of moves.\",The boy,gold,slips back down with hand raised.,mounts an and bounces from the end of the line.,gets backwards and begins to wave and move in another direction.,\"dismounts, then bows to the crowd.\",3\n15518,anetv_W3ozAI2ozCs,7086,\"He jumps up, grabbing the bar as he flips numerous times. He\",\"He jumps up, grabbing the bar as he flips numerous times.\",He,gold,\"does hand stands, then lifts his legs into the air in a plethora of moves.\",catches himself with the water two times and falls off his board onto the mat.,builds speed as he falls off the boat.,continues to move up and multiple times.,0\n15519,anetv_wsc5GIgVwN8,6337,\"A man from the team then comes along and starts to skateboard down the road in a community environment. As he continues skating, he moves to a more rural area with large mountains and field in the open and points\",A man from the team then comes along and starts to skateboard down the road in a community environment.,\"As he continues skating, he moves to a more rural area with large mountains and field in the open and points\",gold,to both of the fence at the end.,eyes on the street.,begin to talk to the camera about how to complete the fitness.,begin to rack up in the corner of the screen.,3\n15520,lsmdc1004_Juno-6518,13807,\"Beneath it, a low - rise bungalow perched on a gentle slope looks out over an uneven lawn under a cloudy sky. In flashback, the girl\",\"Beneath it, a low - rise bungalow perched on a gentle slope looks out over an uneven lawn under a cloudy sky.\",\"In flashback, the girl\",gold,runs back across the double lake buildings.,steps out of the knickers and walks slowly across the room towards a skinny boy sitting bare - chested in the same armchair.,massages a catch with an adopted girl.,sits peering through the binoculars to watch someone clean off a moon.,1\n15521,lsmdc1004_Juno-6518,13808,\"Wearing just a T - shirt, the girl gives a tentative smile as she straddles the boy's lap and brings her rosebud lipped mouth close to his faith. The girl\",\"Wearing just a T - shirt, the girl gives a tentative smile as she straddles the boy's lap and brings her rosebud lipped mouth close to his faith.\",The girl,gold,stops the boy's mouth with a tender kiss.,rolls her eyes and someone kisses the girl's neck.,gets up and hustles when someone tries a better view of the zoo.,begins to take concerned bites.,0\n15522,lsmdc1004_Juno-6518,13809,The girl stops the boy's mouth with a tender kiss. The shaggy blond dog,The girl stops the boy's mouth with a tender kiss.,The shaggy blond dog,gold,gets briefly from behind.,does what he is told.,shows a picture of someone in a tuxedo.,is having a pretty good time.,1\n15523,lsmdc1004_Juno-6518,13810,The shaggy blond dog does what he is told. The girl,The shaggy blond dog does what he is told.,The girl,gold,takes a swig of juice and wags her mouth on the sleeve of her hoodie.,spins the dog around the dog and takes the frisbees and throws.,gets up and steps away to some other houses.,pulls a candy from house.,0\n15524,anetv_JoiZmVQCLCI,12868,A large audience is seen cheering while a man stands ready and runs down a track. The man,A large audience is seen cheering while a man stands ready and runs down a track.,The man,gold,then begins throwing and spinning the discus as well as flashes and others watching on the sidelines.,hops along a mat while moving around and leads the person jumping after the routine.,jumps over a pole and is followed by clips of more people jumping over a pole.,then brings end to the bottom and stands up and out tricks onto the stage.,2\n15525,anetv_JoiZmVQCLCI,15853,Many clips play one after the other of people using a pole to get over a bar. More people,Many clips play one after the other of people using a pole to get over a bar.,More people,gold,try the pole out of the way but move at the end.,come out of the gym and the camera is laughing.,take turns pole volting and reacting afterwards.,wearing suits are shown playing with demonstrating following the tasks and doing the various tricks to reach the end.,2\n15526,anetv_JoiZmVQCLCI,15852,An audience cheers as several men run down a track and pole volt. Many clips,An audience cheers as several men run down a track and pole volt.,Many clips,gold,play one after the other of people using a pole to get over a bar.,are able to play a soccer game while others watch and cheer.,are shown of the girls performing.,are shown of people playing volleyball while the crowd cheers for them.,0\n15527,anetv_JoiZmVQCLCI,12869,The man jumps over a pole and is followed by clips of more people jumping over a pole. Several clips,The man jumps over a pole and is followed by clips of more people jumping over a pole.,Several clips,gold,are shown of people making the jump as well as falling and raising their hands into the air.,are shown of people running down area scoring huge tricks in the end.,are shown of people jumping and jumping around while others watching.,are shown of him doing jumps and tricks on a mat olympic along with a young person helping him.,0\n15528,anetv_PUWg7fXnCf0,12910,A woman is jump roping on a street and doing flips. A man,A woman is jump roping on a street and doing flips.,A man,gold,\"runs to stand, and kneel in front of the sea.\",loses her and walks out of a rope and has 6 slung around her waist.,is jump roping next to a water fountain.,does pole vaults on several uneven bars while spectators watch behind him.,2\n15529,anetv_PUWg7fXnCf0,12909,People are jump roping together in a group. A woman,People are jump roping together in a group.,A woman,gold,\"talks to the camera while talking to young kids taller black, leaning back.\",is jump roping on a street and doing flips.,gets brushes and starts.,walks through the jungle dance.,1\n15530,anetv_sn1OtmEJxng,323,A long line of bikers are shown in the dark at an event. A man,A long line of bikers are shown in the dark at an event.,A man,gold,is shown standing before a slowed area.,is speaking onstage to the people as they prepare for the main event.,goes scores in slow motion.,is standing in a room in their cluttered living room and shows a man people outside.,1\n15531,anetv_HqGWA16ECWE,17498,A girl in a dress is crossing monkey bars. She,A girl in a dress is crossing monkey bars.,She,gold,gets to the end and steps on a rock.,climbs up and kneels on the ground.,does different flips and lands on a mat on top of a bar.,walks back and forth in a line of hopscotch.,0\n15532,lsmdc3024_EASY_A-11662,4568,\"He whirls her around, then sets her down. They\",\"He whirls her around, then sets her down.\",They,gold,share a sweet passionate kiss.,share a look.,reaches his feet straight as she steps back and disappears into the water.,perform a ballet dance.,0\n15533,lsmdc3024_EASY_A-11662,4564,Someone watches on a cellphone and a truck almost hits him. He,Someone watches on a cellphone and a truck almost hits him.,He,gold,grab catch of the hook and save the man in the back of the tower.,eagerly aims the gun's tip in his.,hurls ice cream at it.,\"other inspector pulls someone's head from the base of the panicking, but the petrol piglets are knocked over.\",2\n15534,lsmdc3024_EASY_A-11662,4566,\"His wife smiles at him, but he ignores her. She\",\"His wife smiles at him, but he ignores her.\",She,gold,\"leans forward, proud of his sympathy.\",\"sips her wine, then stands on her tiptoes.\",folds the napkin into someone's fork.,sheepishly sucks her lips and heads off.,3\n15535,lsmdc3024_EASY_A-11662,4570,She wraps her arm around his chest and they ride off. They,She wraps her arm around his chest and they ride off.,They,gold,wheel slowly across the lawn.,walk over to someone's house.,descend a flight of stairs.,drift down beside him.,0\n15536,lsmdc3024_EASY_A-11662,4565,\"He hurls ice cream at it. Now, someone\",He hurls ice cream at it.,\"Now, someone\",gold,stares steadily at his laptop.,shoots into the cell block and turns the phone toward someone.,arrives in someone's chauffeur car.,shows someone to a floor with a pizza.,0\n15537,lsmdc3024_EASY_A-11662,4567,\"Now outside, someone leaps into someone's arms. He\",\"Now outside, someone leaps into someone's arms.\",He,gold,\"crosses across a passage, a glass balcony above it.\",\"whirls her around, then sets her down.\",pauses to run up the side of the rooms.,thrusts it into someone's chest and knocks him out.,1\n15538,lsmdc3024_EASY_A-11662,4571,\"They drive onward, keeping their fists in the air. The mower\",\"They drive onward, keeping their fists in the air.\",The mower,gold,eases up 100 feet across its top parallel as he gazes at the man riding his car.,carries them up a tree - lined road on a hill.,watches them from the boys who duck beside him.,rolls over as several cars try to skateboard.,1\n15539,anetv_M7tUnCF9lU4,16663,She looked inside the tunnel and moved the little kid to show him and wave at the person. The lady,She looked inside the tunnel and moved the little kid to show him and wave at the person.,The lady,gold,went to help stalls and sat at the end of the slide.,fumbles with the brush and removes the harmonica to add to the pieces.,hold the child while she push him down the slide.,slows to adjust the ignition on her inner tube.,2\n15540,anetv_M7tUnCF9lU4,16664,The lady hold the child while she push him down the slide. The lady,The lady hold the child while she push him down the slide.,The lady,gold,on the left laughs and the girl falls out of the car.,irons the gray bare pajamas.,slide the kid up back to the top.,falls off the boat and stands on the hill.,2\n15541,anetv_M7tUnCF9lU4,16666,The lady hold the child and pushed him down the slide. The child,The lady hold the child and pushed him down the slide.,The child,gold,starts to slide and slide slide down the slide.,slides under the water on the river.,sat on the bottom of the slide while looking away.,swing all up and signal the fence.,2\n15542,anetv_M7tUnCF9lU4,16662,A lady standing beside the slide is holding a little child on top of the slide. She,A lady standing beside the slide is holding a little child on top of the slide.,She,gold,\"moves, her hand in the toilet like strap as she jumps to the edge.\",turns to filming them.,sit down and wipe her face with her hands.,looked inside the tunnel and moved the little kid to show him and wave at the person.,3\n15543,anetv_M7tUnCF9lU4,16665,The lady slide the kid up back to the top. The lady,The lady slide the kid up back to the top.,The lady,gold,falls and gets on the connected.,stops and gets that down too.,swings the mop up and down.,hold the child and pushed him down the slide.,3\n15544,anetv_dFsFL_WJasg,19323,The camels are carrying people. The camel in the back,The camels are carrying people.,The camel in the back,gold,as the group rides alongside the camels.,is riding the camels.,is wearing a sports outfit.,comes halfway alongside the front camel.,3\n15545,anetv_dFsFL_WJasg,9957,The back that is tied to the front camel leaves the rear. The back camel,The back that is tied to the front camel leaves the rear.,The back camel,gold,walks alongside the hump of the front camel.,continues drying in front of the path in circles.,helps the camel with where he is holding the camel's camel.,is pulled along at the top of the camels sits on the camel.,0\n15546,lsmdc0046_Chasing_Amy-68525,5565,\"We are at a Comic Book show, specifically at a book - signing. Someone\",\"We are at a Comic Book show, specifically at a book - signing.\",Someone,gold,busily assorted for someone.,stands looking at the clothing without a pencil.,sits at a table.,\"polishing line with numbers in front in the upper compartments, opening blue paint and drawers filled with yellow paper.\",2\n15547,lsmdc3007_A_THOUSAND_WORDS-3797,9850,\"Someone holds up his left hand, points to his wedding band then runs a finger across his own throat. Someone\",\"Someone holds up his left hand, points to his wedding band then runs a finger across his own throat.\",Someone,gold,\"goes back to someone, ripping his sausage and reaching into his shirt pocket, then edges the handcuffs at.\",rocks his arms then sweeps his fingers into the air.,peers across the street outside lion's enclosure.,picks someone's hand up to protect him.,1\n15548,lsmdc3007_A_THOUSAND_WORDS-3797,9846,Later someone shovels into a family restaurant. Someone,Later someone shovels into a family restaurant.,Someone,gold,waves to him from a booth.,reads someone's book in a strip of colored wallpaper.,sits with the two guys in the black limousine.,watches roasting debris on each roof.,0\n15549,lsmdc3007_A_THOUSAND_WORDS-3797,9847,\"Someone waves to him from a booth. Covering his mouth with one arm as he coughs, someone\",Someone waves to him from a booth.,\"Covering his mouth with one arm as he coughs, someone\",gold,sits across from someone.,looks someone straight in.,sheepishly meets the run over.,\"sits opposite, releasing her kiss.\",0\n15550,lsmdc3007_A_THOUSAND_WORDS-3797,9849,Someone slams his fists on the table. Someone,Someone slams his fists on the table.,Someone,gold,\"holds up his left hand, points to his wedding band then runs a finger across his own throat.\",leans over and kiss their hands beneath the shaft.,grabs several cans from the young man.,'s phone in it stands across the basket.,0\n15551,anetv_tyjUDi3uLd0,16403,\"He kneels onto the floor, measuring the tiles. He\",\"He kneels onto the floor, measuring the tiles.\",He,gold,applies it down to the carpet.,uses a leveler on the floor.,shows how to clean the tire.,lies heavily on carpet.,1\n15552,anetv_tyjUDi3uLd0,16402,\"A real man appears in a partially prepared room, and begins talking about the tiled floor. He\",\"A real man appears in a partially prepared room, and begins talking about the tiled floor.\",He,gold,is standing that is seen sitting on top of the tv holding a cup of coffee.,\"kneels onto the floor, measuring the tiles.\",\"is seeking the piano, but the fridge is ripped.\",\"is shown against the floor, and watching someone dive up showing the necessary steps.\",1\n15553,anetv_tyjUDi3uLd0,4456,And then comes on and talks about some key points to remember when doing a flooring project. He then,And then comes on and talks about some key points to remember when doing a flooring project.,He then,gold,proceeded to show a method of balancing tiles on my floor with a string.,jumps onto the lawn and takes the paper off the log and begins resolutely towards the table to finish and walk back to talk.,go about the mechanics by letting it out before making it some very high.,uses different designs to leftovers a drink into a part of town.,0\n15554,anetv_tyjUDi3uLd0,4455,An introduction comes onto the screen for a video about home improvement. And then comes on and,An introduction comes onto the screen for a video about home improvement.,And then comes on and,gold,puts a rock in the wallpaper.,begins putting several ingredients into the man's hand and opening the door.,starts talking about the cuts of potatoes and other plants.,talks about some key points to remember when doing a flooring project.,3\n15555,anetv_tb8KKdC7r-A,1932,\"People play shuffleboard in a gym. A woman throws a black puck, then she\",People play shuffleboard in a gym.,\"A woman throws a black puck, then she\",gold,gets control of an ice dispenser.,turns to throw the girl on the court.,talks and continue playing.,picks up the hammer.,2\n15556,anetv_uVcyJg_3Fj8,5153,\"They put lights on the tree and light them up. Next, they\",They put lights on the tree and light them up.,\"Next, they\",gold,begin to put several different ornaments on the tree.,put bulbs in a tree to decorate the tree in the beginning.,put a liquid hanging on trees bush.,put oil and ornaments onto the tree.,0\n15557,anetv_uVcyJg_3Fj8,5152,\"Later, they begin to put up a Christmas tree with two people involved in the process. They\",\"Later, they begin to put up a Christmas tree with two people involved in the process.\",They,gold,pull together and go down to step by step handed to the tree.,\"put on the curling list, and the they end it ranch a plate and another.\",put lights on the tree and light them up.,add silver flower on her piece of fabric.,2\n15558,anetv_uVcyJg_3Fj8,5154,\"Next, they begin to put several different ornaments on the tree. Lastly, they\",\"Next, they begin to put several different ornaments on the tree.\",\"Lastly, they\",gold,wrap the christmas tree a canvas and pour the mixture into halves and arrange it into a put dish.,add more ornaments to the tree.,\"continue to watch ornaments on the tree, pass the tree up on the picnic table.\",put the skirt under the tree and end the video with a kiss.,3\n15559,anetv_uVcyJg_3Fj8,5151,\"A time lapse video is shown of people walking around a house. Later, they\",A time lapse video is shown of people walking around a house.,\"Later, they\",gold,are working by the start.,use a tool to brush down the dock.,begin wearing tight bicycles and competing in the parts of the ring.,begin to put up a christmas tree with two people involved in the process.,3\n15560,anetv_IpFsz2xc3sY,12570,She begins to do the same process with the other side of her hair. The video,She begins to do the same process with the other side of her hair.,The video,gold,cuts to a competitor talking in front of a mirror.,shows her getting her cellphone done.,finishes by cutting a still image of the same girl and panning up and down.,moves outside and leads into more highlights of men wrestling.,2\n15561,anetv_IpFsz2xc3sY,12569,\"She criss crosses the braids, and places a rubberband on it. She\",\"She criss crosses the braids, and places a rubberband on it.\",She,gold,places the new braid in the end then moves the water into the braids.,begins to do the same process with the other side of her hair.,repeat the process between the skates.,takes it and puts it on the way.,1\n15562,anetv_IpFsz2xc3sY,12567,A woman is speaking to a webcam in her bedroom. She,A woman is speaking to a webcam in her bedroom.,She,gold,is talking to a woman who is in a room that uses some water to mop the floor using the mop.,is setting her mouth down.,\"begins to play with her hair, separating part of it and braiding it.\",is beginning to wash her hands wet and keep it under the faucet.,2\n15563,anetv_IpFsz2xc3sY,12568,\"She begins to play with her hair, separating part of it and braiding it. She\",\"She begins to play with her hair, separating part of it and braiding it.\",She,gold,rolls to her right and is still holding until her hands catch up immediately.,places the first braid into her mouth while creating another one.,twirls the baton and shoulders it.,finishes her hair and dabs it on the man's hair and pushes it back down.,1\n15564,anetv_ymJTN8aKZEw,7812,A man in a blue shirt walks away from the blindfolded man. We,A man in a blue shirt walks away from the blindfolded man.,We,gold,see a man in a yard with a stick and blindfold and swings the stick nowhere near the pinata.,filming the race as the man and a man play the boy.,are standing in a red shirt holding a trophy and talking.,two times in front of the christmas tree.,0\n15565,anetv_ymJTN8aKZEw,16608,An older gentleman has been blindfolded. He,An older gentleman has been blindfolded.,He,gold,is using a bat to swing at a pinata over and over.,climbs onto the roof of a parked car.,\"stands next to her, and sniffs in the taut green dessert filled with salami.\",spits something on his hand.,0\n15566,anetv_ymJTN8aKZEw,7814,A person runs from under a camera. A person in blue,A person runs from under a camera.,A person in blue,gold,runs across the yard.,runs their horses across the ice.,walks over the board.,kneels down in front of someone who does the same thing again.,0\n15567,anetv_ymJTN8aKZEw,7815,A person in blue runs across the yard. The man,A person in blue runs across the yard.,The man,gold,swings near the pinata.,kneels down and grabs an archery box.,scoops on the mop.,flies in the air and falls to their feet.,0\n15568,anetv_UgtzVS_oeq0,16928,A man approaches a table and places food on it. Two children,A man approaches a table and places food on it.,Two children,gold,\"point to food, with elderly men, fridge, bread, bread and a table container with large pieces.\",shake hands in an office bowling he carry in a single file.,eat under the table.,emerge from a cart and begin playing darts at him.,2\n15569,anetv_UgtzVS_oeq0,16927,A woman smokes and exhales black smoke. A man,A woman smokes and exhales black smoke.,A man,gold,walks on the roof of a marquis.,is walking slowly past him in the street carrying poles.,approaches a table and places food on it.,picks inside a container and sets it upright.,2\n15570,anetv_n0Th8ZqMeGk,927,A man is on a snowboard on a snowy hill. He,A man is on a snowboard on a snowy hill.,He,gold,rides up while rubbing his hands.,glides over the thickly packed snow.,rides down a hill on the other side of the desert.,is walking along the snow.,1\n15571,anetv_n0Th8ZqMeGk,928,He glides over the thickly packed snow. He,He glides over the thickly packed snow.,He,gold,reaches and abandons the door.,\"goes through a marker, and jumps over obstacles.\",lands and runs down the alley between the three.,smirks as he strolls down the seats on the asphalt.,1\n15572,anetv_nt9tMdFVQ1c,9118,\"A group of men are playing volleyball on the beach, 3 on one side, and 2 on the other side. One team attempts to serve and it\",\"A group of men are playing volleyball on the beach, 3 on one side, and 2 on the other side.\",One team attempts to serve and it,gold,splits off several times until a derby score is made.,fails to serve the ball.,crashes into the net.,is hard to continue hitting someone on the top as the others speak to the camera.,2\n15573,anetv_7Nj1Y-fyq_c,18551,\"A man dressed in business attire enters a kitchen with some children behind him, he shakes a woman's hand, rubs her shoulder and then introduces the children to the woman, and the whole time black text on the top of the screen reads' Lying 'Ryan has a few minutes to kill before a flight. More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him\",\"A man dressed in business attire enters a kitchen with some children behind him, he shakes a woman's hand, rubs her shoulder and then introduces the children to the woman, and the whole time black text on the top of the screen reads' Lying 'Ryan has a few minutes to kill before a flight.\",\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him\",gold,are appearing on the screen.,are used to be all of them doing showcases.,\"and baited cold - hued appear and then, he goes on the cut.\",shown and then the same car is seen moving.,0\n15574,anetv_7Nj1Y-fyq_c,18552,\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him are appearing on the screen. The man is out of the kitchen now and walking then stops to shake hands and talk to a man, but a negative message about him still\",\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him are appearing on the screen.\",\"The man is out of the kitchen now and walking then stops to shake hands and talk to a man, but a negative message about him still\",gold,is in his hand.,describes how to wash the water to wash and cuff him.,appears on the screen.,appears to explain what his kid was saying is the german homeless.,2\n15575,anetv__5VJcnrEgbg,4859,Another man joins him shortly after. Several different angles,Another man joins him shortly after.,Several different angles,gold,are shown with the implement being made while more people have become webbed.,are repeated in acrobatic motion across the screen.,\"are shown as the group of four play before an audience, hitting the ball back and forth quickly.\",are shown about the moves of the world and moving around on the side of the table until the picture fades.,2\n15576,anetv__5VJcnrEgbg,4860,\"Several different angles are shown as the group of four play before an audience, hitting the ball back and forth quickly. When they are done, the men\",\"Several different angles are shown as the group of four play before an audience, hitting the ball back and forth quickly.\",\"When they are done, the men\",gold,stop playing the bench and watch the ladies bowling with their ducks.,\"walk away, patting each other on the backs.\",throw balls off the mat to end by throwing the ball off into the distance.,continue to play basketball while there's a rope laying at the distance.,1\n15577,lsmdc3040_JULIE_AND_JULIA-17930,2451,\"She gets up, goes into the living room, and grabs a tissue. And someone\",\"She gets up, goes into the living room, and grabs a tissue.\",And someone,gold,leads her to the patio door.,waves him off with a tissue.,soaks up the clothes in the hall.,makes her way through the conference room.,1\n15578,lsmdc3040_JULIE_AND_JULIA-17930,2453,Now someone holds up a glass of wine. Someone and someone,Now someone holds up a glass of wine.,Someone and someone,gold,stand across from her in the child's kitchen.,get in the driver's seat at the other end of the rails and get out.,\"ride along the road through a museum of neighborhood, strolling through an upscale concourse of some houses.\",are having a glass of milk on.,0\n15579,lsmdc3040_JULIE_AND_JULIA-17930,2452,And someone waves him off with a tissue. Now someone,And someone waves him off with a tissue.,Now someone,gold,strolls with someone and drags someone onto a cigarette.,lies in a hammock.,drinks a waiter's reference.,holds up a glass of wine.,3\n15580,anetv_Tv3v-UpBJ2Y,13122,A small group of people are seen standing on a field holding onto a rope. A man,A small group of people are seen standing on a field holding onto a rope.,A man,gold,stands in front as the group begins pulling the rope to one side.,is then seen walking around on horses on the ground.,walks behind the person and helps him up.,lays down on a horse and throws their arms up in the air.,0\n15581,anetv_Tv3v-UpBJ2Y,13123,A man stands in front as the group begins pulling the rope to one side. The people,A man stands in front as the group begins pulling the rope to one side.,The people,gold,do forward flipping tricks while the rope is thrown.,continue pulling until one falls down afterwards.,ride towards the other rail and pull the tube between themselves.,walk away from the bars and one puts onto the side.,1\n15582,anetv_aivuk1LvDv8,18730,A woman is playing a classical song on the piano in a black and white film. She,A woman is playing a classical song on the piano in a black and white film.,She,gold,does video songs 101 as she demonstrates to dance her flute.,begins to speed up the pace of the music she is playing.,holds a wooden flute as she sings on the old stage.,adjusts the braid and smiles at the students teacher.,1\n15583,anetv_aivuk1LvDv8,18731,She begins to speed up the pace of the music she is playing. The camera,She begins to speed up the pace of the music she is playing.,The camera,gold,returns to the house at the end.,shows white information of the video that she is explaining.,shows her playing the piano from overhead.,zooms in on the young woman next to her on the boat.,2\n15584,lsmdc1039_The_Queen-88099,17493,\"Suddenly, she stops writing. The next day three Land Rovers\",\"Suddenly, she stops writing.\",The next day three Land Rovers,gold,are sitting earlier in a seated glass.,drive away from balmoral.,fade from a black.,sits on the icy side.,1\n15585,lsmdc1039_The_Queen-88099,17492,\"Someone leaves someone with her paperwork. Elsewhere, someone\",Someone leaves someone with her paperwork.,\"Elsewhere, someone\",gold,runs along a corridor and sprints away beyond the ministry of magic.,shares a gunman at the park.,strides into an elevator with his breath.,sits at a desk writing in a book.,3\n15586,lsmdc1039_The_Queen-88099,17494,\"The next day three Land Rovers drive away from Balmoral. Wednesday, someone\",The next day three Land Rovers drive away from Balmoral.,\"Wednesday, someone\",gold,plays his guitar on his cellphone.,grimaces as he reads the letter.,stares out of a window.,\"sits at a desk, camping out.\",2\n15587,anetv_WGpz-hV-Ejw,1383,A young girl is standing on a court with a jump rope. She,A young girl is standing on a court with a jump rope.,She,gold,begins jumping in front of a table of judges.,gets up and walks into his living room.,moves back and forth on the field with other people.,is jumping onto a seat in front of her.,0\n15588,anetv_WGpz-hV-Ejw,1384,She begins jumping in front of a table of judges. She,She begins jumping in front of a table of judges.,She,gold,continues playing with a baton and twirling her baton.,\"hops, spins, and flips with the rope.\",passes past scenes of the audience holding up the podium from the audience.,stops dancing and then finishes up.,1\n15589,anetv_1X4hgrBjw-U,8357,A woman is handed an ice cream cone. Two police officers,A woman is handed an ice cream cone.,Two police officers,gold,order ice cream and wait for it.,stand at the table.,shows how to trimmers it.,are carrying their bikes to their pedals.,0\n15590,anetv_1X4hgrBjw-U,2127,A person is see handing an officer an ice cream cone while a woman watches on the side. The woman then,A person is see handing an officer an ice cream cone while a woman watches on the side.,The woman then,gold,puts all the ingredients left on the pans to the mix.,walks away from the horse.,speaks to the officers while others watch on the side.,cleans the woman with a knife.,2\n15591,anetv_1X4hgrBjw-U,2128,The woman then speaks to the officers while others watch on the side. The man then,The woman then speaks to the officers while others watch on the side.,The man then,gold,kneels down next to the tokens and demonstrates how to slackline it.,points to the man performing impressive tricks performing many tricks and tricks on a machine.,grabs an ice cream and hands it to the woman.,begins to spread rocks several times then lands on a mat and several others stand around him.,2\n15592,anetv_1X4hgrBjw-U,8358,Two police officers order ice cream and wait for it. A customer,Two police officers order ice cream and wait for it.,A customer,gold,starts someone at the ball.,appears irritated by the officers.,enters the station and shows the rear part of the vehicle.,spots the money and throws it away.,1\n15593,anetv_1X4hgrBjw-U,8359,The police officers and woman converse. The police officer,The police officers and woman converse.,The police officer,gold,sits on a table.,gives a superior sign that the dealer knows.,offers the ice cream cone to the woman.,shows us the note through.,2\n15594,anetv_iZUwLKd5TTk,6790,\"As the camera turns, a woman appears ironing a blue shirt. She\",\"As the camera turns, a woman appears ironing a blue shirt.\",She,gold,gets up and moves her legs around.,begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either.,shows toothpaste flying from her mouth.,turns a back imitating as she holds her pants back above them.,1\n15595,anetv_iZUwLKd5TTk,6791,\"She begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either. During the process, a small white dog runs under the ironing bard and the lady\",She begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either.,\"During the process, a small white dog runs under the ironing bard and the lady\",gold,begins doing the sleeves.,grabs a plastic cat.,lifts her foot victoriously.,puts the product on her nostril.,0\n15596,anetv_iZUwLKd5TTk,6792,\"During the process, a small white dog runs under the ironing bard and the lady begins doing the sleeves. Once complete, the boy\",\"During the process, a small white dog runs under the ironing bard and the lady begins doing the sleeves.\",\"Once complete, the boy\",gold,walks away with a newspaper in her hand.,comes back and starts talking about something again.,is playing the violin.,spins her around on the shaving bars as the camera moves around.,1\n15597,anetv_iZUwLKd5TTk,1343,A man is seen speaking to a camera and leads into a woman ironing all along a shirt. The woman,A man is seen speaking to a camera and leads into a woman ironing all along a shirt.,The woman,gold,continues to put makeup on the other moving her arms and legs to hold off the camera in the end.,moves the rollers all around a paintbrush and removes her clothing and checks her reflection in the mirror.,continues flipping the shirt around to iron and leads back to the man speaking to the camera.,continues ironing some makeup to the camera while looking at the camera.,2\n15598,anetv_iZUwLKd5TTk,6789,\"A young boy with a short haircut is standing in a room talking into the camera. As the camera turns, a woman\",A young boy with a short haircut is standing in a room talking into the camera.,\"As the camera turns, a woman\",gold,is standing behind her.,does how to apply makeup to her face and help it back.,appears ironing a blue shirt.,\"is seen petting branches against the baby neck, making her cheek become a pulse.\",2\n15599,anetv_vPh9o_BuJaU,9389,The person then bends forward and begins putting shoes on. He,The person then bends forward and begins putting shoes on.,He,gold,watches as she brushes off.,takes his hands off and positions them on close again.,continues to take the items out of his body.,finishes putting shoes on and gets up to walk away.,3\n15600,anetv_vPh9o_BuJaU,9388,A close up of a person's feet are shown sitting in a chair. The person then,A close up of a person's feet are shown sitting in a chair.,The person then,gold,mixes the ingredients with a sponge using a spray brush and rubbing it all over the ice.,grabs the objects into small cups from the table before well them.,bends forward and begins putting shoes on.,begins moving up and down scrubbing the water.,2\n15601,lsmdc1058_The_Damned_united-98395,17141,People embrace as they follow the teams up the tunnel. Someone,People embrace as they follow the teams up the tunnel.,Someone,gold,\"enters from the rooftop, and slowly opens his eyes.\",is interviewed on tv.,\"is behind him, climbing across it.\",hikes up the trail behind the police car.,1\n15602,anetv_ZmUk9OQ1zfk,15579,Several team members from a volleyball games are interviewed. They,Several team members from a volleyball games are interviewed.,They,gold,perform a cricket game indoors in volley ball.,are shown on board and athletes silly while each other instructs.,\"are shown playing on the beach, kicking the ball.\",are playing lacrosse on a field playing a game of beach soccer.,2\n15603,anetv_-CEi03j4-Bw,18155,The boy begins to stomp on the sand mound. The boy,The boy begins to stomp on the sand mound.,The boy,gold,begins to try to climb the sand mound while people walk on the ocean front at the beach.,poses for a crowd of people who only move up and around the pole.,is showing only missing fishing posts and several clips of the group playing on the beach.,begins to push the tractor mower along while pausing to sniff.,0\n15604,anetv_-CEi03j4-Bw,18154,A young boy is standing in front of a mound of sand and hitting the mound with his hands. The boy,A young boy is standing in front of a mound of sand and hitting the mound with his hands.,The boy,gold,drops the hat on the ice with a crash and runs around and try to spray it.,solves the cube several times as he proceeds to solve the puzzle and turns away.,begins to stomp on the sand mound.,leaps onto the pyre and swims away.,2\n15605,anetv_-CEi03j4-Bw,9201,\"Then, he starts to try and climb onto the sand dune and he looks at the camera once. There\",\"Then, he starts to try and climb onto the sand dune and he looks at the camera once.\",There,gold,\", the men turn the skis and engaged in several clips talking to the camera on the slopes in competitions.\",at the audience is already watching him.,'s also people behind him a few feet away playing badminton with each other.,are no more cricketers than the steamer is attended in the sand.,2\n15606,anetv_-CEi03j4-Bw,18153,A young boy stands on and attempts to climb a mound of sand in the center of a line of sandcastles at the beach. A young boy,A young boy stands on and attempts to climb a mound of sand in the center of a line of sandcastles at the beach.,A young boy,gold,stands in an indoor pool surrounded by two men stalking in front of their buckets.,cleans his view with his hands.,is standing in front of a mound of sand and hitting the mound with his hands.,breaks the trap on the sand with a big shovel and continue hitting the ball over the lawn.,2\n15607,anetv_-CEi03j4-Bw,9200,\"This baby is standing up in the sand digging the sand off of the sand dune using his small hands. Then, he starts to try and climb onto the sand dune and he\",This baby is standing up in the sand digging the sand off of the sand dune using his small hands.,\"Then, he starts to try and climb onto the sand dune and he\",gold,is able to fly the board very high!,looks at the camera once.,\"lists the caption from final examples, as: people in the disappear as they gain back underwater and continue to their race.\",rushes under one of the bus supports and rolls really going on it.,1\n15608,anetv_zU6SnkNIdrw,2843,\"A white bowl is filled with sugar, eggs, and peanut butter, then blended. He\",\"A white bowl is filled with sugar, eggs, and peanut butter, then blended.\",He,gold,pours sugar into olives over stacks of vomit.,presses balls of cookie dough onto a pan and bakes them.,\"now serves, after clamps and cook it, then oil, the lemon, and oil and is added to the mix.\",mumbles into his hunting belt.,1\n15609,anetv_zU6SnkNIdrw,2844,He presses balls of cookie dough onto a pan and bakes them. He,He presses balls of cookie dough onto a pan and bakes them.,He,gold,edges a nuts in in a jar.,then adds the curry to his glasses and dips them into a sliced pan.,eats one of the cookies for the camera while he talks about them.,puts a paste on his palette.,2\n15610,anetv_zU6SnkNIdrw,2842,Several food items in bowls are shown. A white bowl,Several food items in bowls are shown.,A white bowl,gold,is added to the sink.,\"is filled with sugar, eggs, and peanut butter, then blended.\",is placed in front of a man and her and takes a bowl of garlic from a jar.,is added to ingredients in a silver bowl.,1\n15611,lsmdc3077_THE_VOW-35682,18235,\"He gestures cordially, and someone takes a seat in front of his desk. Sitting behind it, he\",\"He gestures cordially, and someone takes a seat in front of his desk.\",\"Sitting behind it, he\",gold,shoots her a quizzical look.,spots someone's reflection behind him in the mirror.,checks his watch on the deck.,notices a pregnant bride standing next to her.,0\n15612,lsmdc3077_THE_VOW-35682,18234,\"Facing his ex, he grins from ear to ear. He gestures cordially, and someone\",\"Facing his ex, he grins from ear to ear.\",\"He gestures cordially, and someone\",gold,whacks him with a towel.,try to stop her.,takes a seat in front of his desk.,munches cheese that holds a small fake knife.,2\n15613,anetv_9YYypM0JvUM,11924,A man is standing in a gym holding up a large bicycle wheel moving his hands along the tube inside the rubber. The man continuously,A man is standing in a gym holding up a large bicycle wheel moving his hands along the tube inside the rubber.,The man continuously,gold,skates around the corner and starts drumming on the bike's tire.,walks around the parking lot with a group of owners around in celebration.,smooths his hand back and the camera pauses and his shadow is watching his brother.,performs the action as he moves the circle around on his knee.,3\n15614,anetv_9YYypM0JvUM,11925,\"The man continuously performs the action as he moves the circle around on his knee. After, the man\",The man continuously performs the action as he moves the circle around on his knee.,\"After, the man\",gold,goes to the hand and lay a tennis on the ground.,cleans on his leg while it's also activating ammo on a second individual.,\"put applies golden plaster and a word representing stars on say the title area to the camera first and then we see him again,\",picks up a yellow object and starts to tighten the spokes on the wheel and sealing the lifting the rubber up.,3\n15615,anetv_eGW0rygfcrg,19774,We see the man and a woman ballroom dancing. The lady,We see the man and a woman ballroom dancing.,The lady,gold,leans forward in her chair.,kicks her leg out behind and in front of her.,stops his dance moves.,hops into her arm.,1\n15616,anetv_eGW0rygfcrg,19775,The lady kicks her leg out behind and in front of her. We,The lady kicks her leg out behind and in front of her.,We,gold,see her in turn bullfighting.,see the closing screen.,see a man throwing a spin in a parking lot.,zoom in on the legs of the dancers.,3\n15617,anetv_eGW0rygfcrg,19773,A man and a woman are standing in a bar. We,A man and a woman are standing in a bar.,We,gold,are in the water doing various part of working work.,are standing in a living room with giant red bowls and a lemon and and chocolate ice in a cocktail.,see the man and a woman ballroom dancing.,\"walks toward the edge of the ice pool, then walks into her shot and then throws some beer backwards.\",2\n15618,lsmdc0043_Thelma_and_Luise-68476,4361,The sun is coming higher in the sky now. They,The sun is coming higher in the sky now.,They,gold,climb back through the hotel and cliffs.,come to an intersection in the middle of nowhere.,are engaged in a game of polo.,\"go upstairs in the board, quickly walking out.\",1\n15619,anetv_yiFKPKXevOU,8530,A man puts a wood upright on a tree stump. A guy,A man puts a wood upright on a tree stump.,A guy,gold,hands an adult to measure.,struggles to get it.,put the mat on.,is splitting wood into halves.,3\n15620,anetv_yiFKPKXevOU,8531,A guy is splitting wood into halves. A guy repeatedly,A guy is splitting wood into halves.,A guy repeatedly,gold,tries to cut a wood.,\"pokes a hole into an arm, creating the enemy.\",rolls the side tiles.,chops the metal table with a green sharpener.,0\n15621,anetv_wS_T-RMSSCE,9737,Elephant is walking in a small water well playing with a ball. woman is talking in the camera and the elephant,Elephant is walking in a small water well playing with a ball.,woman is talking in the camera and the elephant,gold,starts riding down the hedges in the dirt field.,is holding a dog and talking to the camera.,moves in to the young boy eating ice cream.,is again in the water well playing with the ball.,3\n15622,anetv_wS_T-RMSSCE,9738,Woman is talking in the camera and the elephant is again in the water well playing with the ball. little elephant,Woman is talking in the camera and the elephant is again in the water well playing with the ball.,little elephant,gold,is playing with a big blue ball.,is riding a horse that is sitting in a wooden raft.,\"is sitting in the snow, ears up and talking.\",is standing behind a counter glancing and people close the barn watching.,0\n15623,anetv_SokK_O2s9tQ,8175,A man rides on a camel slowly. Two camel,A man rides on a camel slowly.,Two camel,gold,are sitting in a field.,pass on the other side of the forest.,gets in formation and walks a group of people pulling the motorbike together.,push people through the woods.,0\n15624,anetv_SokK_O2s9tQ,8176,Two camel are sitting in a field. We,Two camel are sitting in a field.,We,gold,woman is standing behind a horse and dressed.,see a rope from a row and slide it.,see people as the get on and off the camels.,see their hands and screens that were other on the floor.,2\n15625,anetv_SokK_O2s9tQ,3430,Two men are standing next to two camels that are resting. The women,Two men are standing next to two camels that are resting.,The women,gold,grab their legs and push their body.,get dirt under their armed arms as they ride the camels.,talks to the camera while showing the base of the back of his head.,are riding the camels while a man is holding the leash of the camel.,3\n15626,anetv_SokK_O2s9tQ,8177,We see people as the get on and off the camels. Four women,We see people as the get on and off the camels.,Four women,gold,ride two camels as a man holds the reins.,sing their dancing in unison.,bows with a hand knife and weapons on the animal.,surf on the boat and clap and kiss each other.,0\n15627,anetv_SokK_O2s9tQ,8178,Four women ride two camels as a man holds the reins. A man,Four women ride two camels as a man holds the reins.,A man,gold,jumps into the water riding the camel.,chases a woman with a dog.,removes a large surfboard.,is being interviewed in the field.,3\n15628,anetv_SokK_O2s9tQ,8179,A man is being interviewed in the field. We see the man with the camels again and the man,A man is being interviewed in the field.,We see the man with the camels again and the man,gold,stands on the horse.,spins the bull as the strings takes off.,is interviewed before we see the camels one more time.,\"joins his partner, and we see a man kick at one of the lanes.\",2\n15629,anetv_SokK_O2s9tQ,3429,The man is riding a camel. Two men,The man is riding a camel.,Two men,gold,are riding on the driveway without the dolly.,are standing next to two camels that are resting.,sit at the camel holding the other man going to the camel.,\"get out from the car as the man in grey stops and stands above the large, snow covered hill.\",1\n15630,lsmdc1047_Defiance-91954,16869,\"Shells explode to the right and left of someone, but miss their mark. Someone\",\"Shells explode to the right and left of someone, but miss their mark.\",Someone,gold,brings a crate of dynamite to the ground and swats so it can not find him.,brings one men onto the bridge and puts the barrel away.,touches his board in the garden.,is cowering behind a nearby tree.,3\n15631,lsmdc1047_Defiance-91954,16877,Someone drops a grenade into the tank. His men,Someone drops a grenade into the tank.,His men,gold,\"run up to people, but the orcs follow by.\",\"push open the trunk and stare at someone, who takes out a pair of mnu forceps.\",rip up the wreckage.,spread across the field in alarmed marching in step and fire on the remaining germans.,3\n15632,lsmdc1047_Defiance-91954,16896,\"Someone comes up behind him and shoves him playfully. The four brothers, walking side by side,\",Someone comes up behind him and shoves him playfully.,\"The four brothers, walking side by side,\",gold,lead the way along the woodland path.,follow a boy into the bedroom.,passes on how to escape.,jump side - by - side.,0\n15633,lsmdc1047_Defiance-91954,16887,And finds himself looking at someone's gaunt face. He,And finds himself looking at someone's gaunt face.,He,gold,gently lifts energy wristwatch.,\"opens his mouth and appears in the doorway, then opens the door.\",strokes her cheek and wraps an arm around her shoulder.,is wobbly someone and he does n't really believe what he is doing.,2\n15634,lsmdc1047_Defiance-91954,16864,\"More cannonballs explode someone lines, claiming more victims. Someone\",\"More cannonballs explode someone lines, claiming more victims.\",Someone,gold,\"arrives, poison, terraced airport, one - aircraft.\",stitch a joint into someone's eyes.,look toward them as they turn as they kiss.,\"fires his gun blind, the smoke obscuring his vision.\",3\n15635,lsmdc1047_Defiance-91954,16879,\"With not one left standing, someone gets to his feet on the side of the tank, his eyes anxiously searching the trees. His men\",\"With not one left standing, someone gets to his feet on the side of the tank, his eyes anxiously searching the trees.\",His men,gold,empty the rifle and his men enter off as the duct passes the bottom of a body into a rock.,\"pass by through the dry snow, his back to us.\",watch as the crowd give him high fives while someone runs and pumps his fists.,go through the dead soldiers' pockets.,3\n15636,lsmdc1047_Defiance-91954,16894,\"Someone looks at him, his rigid features softening slightly. They\",\"Someone looks at him, his rigid features softening slightly.\",They,gold,step into a chair.,glance at him with shaving gray eyes.,hold each other's gaze.,hurry to the shelves.,2\n15637,lsmdc1047_Defiance-91954,16866,\"The heavy tank gun is slowly turned in people's direction. As the black mouth of the big gun moves near, someone\",The heavy tank gun is slowly turned in people's direction.,\"As the black mouth of the big gun moves near, someone\",gold,put the money back in his pocket and leaps out.,leaps out of the way and dives behind a tree.,grimacing as he dangles.,puts up his right foot.,1\n15638,lsmdc1047_Defiance-91954,16881,\"Someone, lying on the side of the hill with their guns at the ready, raise their heads. Slowly, they\",\"Someone, lying on the side of the hill with their guns at the ready, raise their heads.\",\"Slowly, they\",gold,\"take backs to the bright lights, using their hands above the window sill.\",begin to scramble to their feet and walk to the top of the sunny slope.,stare into view ahead of the procession just as a long - haired biker rushes to someone.,drive toward the car.,1\n15639,lsmdc1047_Defiance-91954,16878,\"His men spread across the field in alarmed marching in step and fire on the remaining Germans. With not one left standing, someone\",His men spread across the field in alarmed marching in step and fire on the remaining Germans.,\"With not one left standing, someone\",gold,attempts to return and drops his guitar on the priest's hands.,holds up her own bad leg.,\"gets to his feet on the side of the tank, his eyes anxiously searching the trees.\",hands him someone hat.,2\n15640,lsmdc1047_Defiance-91954,16872,\"One soldier creeps nearer, but is shot in the back. His fellow troops\",\"One soldier creeps nearer, but is shot in the back.\",His fellow troops,gold,look behind them for a split second as guns fire at them from behind a wall of trees.,\", people, come out through the haze of light, rail down from the battle.\",\"flank the nurse, who shakes her head as she gets dragged toward the train.\",take cover as the guy tosses the invisibility cloak over someone 'limp body.,0\n15641,lsmdc1047_Defiance-91954,16882,\"Slowly, they begin to scramble to their feet and walk to the top of the sunny slope. Someone, standing on the smoking tank,\",\"Slowly, they begin to scramble to their feet and walk to the top of the sunny slope.\",\"Someone, standing on the smoking tank,\",gold,\"cliff, surprised at three or two metallic hand wheels on the right.\",sees his brother walking out of the trees.,climbs off the diving board.,someone looks uninterested and good - humored.,1\n15642,lsmdc1047_Defiance-91954,16874,\"The rest of his men follow him out of the trees and set about the rest. As the tank operator fires again, someone\",The rest of his men follow him out of the trees and set about the rest.,\"As the tank operator fires again, someone\",gold,suddenly connects with the bullet in his grenade pin.,stops at the stop sidewalk from a drifting snow until he fails again.,takes the capsule and lies back down.,clambers up onto the tank and draws his pistol.,3\n15643,lsmdc1047_Defiance-91954,16871,Shells ricochet off the trees around him. One soldier,Shells ricochet off the trees around him.,One soldier,gold,dives to a someone then hauls him onto the bed.,\"creeps nearer, but is shot in the back.\",holds it against the spokes of the tank.,takes off to a peaceful forest.,1\n15644,lsmdc1047_Defiance-91954,16875,\"As the tank operator fires again, someone clambers up onto the tank and draws his pistol. The tank operator\",\"As the tank operator fires again, someone clambers up onto the tank and draws his pistol.\",The tank operator,gold,flops to one side.,snaps her final door in.,rushes toward the mouth of a sliding van and ducks in.,rockets up from the wreck's tank.,0\n15645,lsmdc1047_Defiance-91954,16880,\"His men go through the dead soldiers' pockets. Someone emerges from out of the hazy smoke, his piercing blue eyes\",His men go through the dead soldiers' pockets.,\"Someone emerges from out of the hazy smoke, his piercing blue eyes\",gold,moving her face down the length of the blade.,darting from side to side.,protruding from its paws.,move to the bookshelves.,1\n15646,lsmdc1047_Defiance-91954,16867,\"As the black mouth of the big gun moves near, someone leaps out of the way and dives behind a tree. More Germans\",\"As the black mouth of the big gun moves near, someone leaps out of the way and dives behind a tree.\",More Germans,gold,zip across the field and take up positions just yards away from them.,shoot from someone's head and launches the green dust away.,send a ball flying through the air.,perform in the vault.,0\n15647,lsmdc1047_Defiance-91954,16870,\"With gritted teeth, someone urges from behind the tree and runs at the tank, but is shot. Shells\",\"With gritted teeth, someone urges from behind the tree and runs at the tank, but is shot.\",Shells,gold,are approaching the dirt arena relentlessly.,dashes through which hurtle with furious embers.,ricochet off the trees around him.,tumbles onto the bridge's gaping hole.,2\n15648,lsmdc1047_Defiance-91954,16865,\"The two of them dive into thick woodland, moving behind the nemy lines, with a view of the German soldiers and their tank ahead of them. They\",\"The two of them dive into thick woodland, moving behind the nemy lines, with a view of the German soldiers and their tank ahead of them.\",They,gold,get on top of the mountain causing a small group military veterans riding on a floating plane with goggles and gear.,treated as neatly to the metallic ivy in front.,\"crouch down, as half a dozen germans come past and set up a gun position in front of them.\",peer through the outside mob.,2\n15649,lsmdc1047_Defiance-91954,16863,Someone passes ammo to those with guns. The German infantry,Someone passes ammo to those with guns.,The German infantry,gold,kicks him full in the face.,are coming at them.,leans up and controls the medal.,picks up the books.,1\n15650,lsmdc1047_Defiance-91954,16892,\"Someone takes a few steps towards him, then stops. Someone steps nearer, but neither brother\",\"Someone takes a few steps towards him, then stops.\",\"Someone steps nearer, but neither brother\",gold,instantly reacts to this before someone is listening to someone.,follows him by the fire.,is a vamp of surprise.,looks at the other.,3\n15651,lsmdc1047_Defiance-91954,16873,\"Someone comes surging out of the trees, single - handedly decimating the Germans caught off guard. The rest of his men\",\"Someone comes surging out of the trees, single - handedly decimating the Germans caught off guard.\",The rest of his men,gold,are in full armor and trapped by a group in a storm of liners.,follow him out of the trees and set about the rest.,move out of the courtyard.,\"follow the policeman as they march down the small hill, doubtfully at the site of the world.\",1\n15652,lsmdc1047_Defiance-91954,16868,More Germans zip across the field and take up positions just yards away from them. Shells,More Germans zip across the field and take up positions just yards away from them.,Shells,gold,\"see diagonally, semi - slumped and silhouetted in the doorway.\",\"explode to the right and left of someone, but miss their mark.\",\", someone lies on his back to watch their father.\",\"search for someone's study, someone races past a row of parked pedestrians and opens the case.\",1\n15653,lsmdc1047_Defiance-91954,16895,Someone moves in a column beneath the birchwood trees. Someone,Someone moves in a column beneath the birchwood trees.,Someone,gold,slumps against the wall.,comes up behind him and shoves him playfully.,\"moves toward the sky, dutifully ben.\",\"stands, walks toward the sea, his face reflected uneasily with his shield.\",1\n15654,lsmdc1047_Defiance-91954,16885,Even old women bend over the dead bodies. He,Even old women bend over the dead bodies.,He,gold,\"are silent, listening, as the two are tracking the conversation.\",thrust his gun to someone.,show up from children.,grabs another girl who steps off another match.,1\n15655,lsmdc1047_Defiance-91954,16893,\"Someone steps nearer, but neither brother looks at the other. Someone\",\"Someone steps nearer, but neither brother looks at the other.\",Someone,gold,\"gets out of the car, dashes off of someone's tracks.\",\"turns, looking someone in the eye.\",'s running up and down - - face down.,\"looks at him, his rigid features softening slightly.\",3\n15656,lsmdc1047_Defiance-91954,16886,He thrust his gun to someone. Someone,He thrust his gun to someone.,Someone,gold,\"rushes toward someone, who's bulging with a baton.\",\"brings someone a gun, which he slings over his shoulder, patting the boy affectionately on the leg.\",\"falls off the barrel into the shack, knocking over the remaining troopers.\",squats beside someone who smiles hard.,1\n15657,lsmdc3071_THE_DESCENDANTS-5586,11586,Someone wanders over to the water to shake out the sand. Someone,Someone wanders over to the water to shake out the sand.,Someone,gold,sets the robe and drapes it onto the terrace of the sitting room.,drops the towel in the stands and heads to the kitchen.,\"juts behind his head, then grasps someone's hand.\",reaches behind her back and fastens her own top as her father takes a seat.,3\n15658,lsmdc3071_THE_DESCENDANTS-5586,11583,\"The jeep arrives at a hotel, driving past a fountain near the entrance. Later, at the front desk, someone\",\"The jeep arrives at a hotel, driving past a fountain near the entrance.\",\"Later, at the front desk, someone\",gold,seizes her own and hands her.,slides across a bench.,sits at the campaign bus passing someone.,folds up his wallet.,3\n15659,lsmdc3071_THE_DESCENDANTS-5586,11582,\"Riding in the passenger seat, someone holds his forehead as he absently gazes out his window. The jeep\",\"Riding in the passenger seat, someone holds his forehead as he absently gazes out his window.\",The jeep,gold,\"arrives at a hotel, driving past a fountain near the entrance.\",rolls into an empty street under the neutral looking houses as it continues on powdering against a facade and quickly wheels around.,rises high above the dirt stone building.,rises off the scene.,0\n15660,lsmdc3071_THE_DESCENDANTS-5586,11580,\"The tide rolls in gently on the distant beach. Hovering over the group, our view\",The tide rolls in gently on the distant beach.,\"Hovering over the group, our view\",gold,\"lingers in the sun, then sets down and walks forward.\",\"drifts in from view, for a long moment of front view of a christmas tree.\",\"turns away from the grassy ridge, for a final glimpse of the vast cove and its pristine surroundings.\",sweeps beneath the rows of seats.,2\n15661,lsmdc3071_THE_DESCENDANTS-5586,11585,\"Now, at the beach, he ambles over to a blanket where someone suns her back and someone lies with her head on someone's shoulder. Someone\",\"Now, at the beach, he ambles over to a blanket where someone suns her back and someone lies with her head on someone's shoulder.\",Someone,gold,wanders over to the water to shake out the sand.,lifts his arms up in his hands and twirls them away.,\"swings her head to the side, then sits nervously.\",smiles as the close to the smoke zooms in in their bedside where it's tracking with the shiner.,0\n15662,lsmdc3071_THE_DESCENDANTS-5586,11584,\"Later, at the front desk, someone folds up his wallet. A clerk\",\"Later, at the front desk, someone folds up his wallet.\",A clerk,gold,snatches an american pen from him.,pulls him up and pulls him toward his vehicle.,throws his poster around.,looks up the name on his computer.,3\n15663,lsmdc3071_THE_DESCENDANTS-5586,11581,\"We drive past a sign for Sandpiper Village, another for Paniolo, then a golf course abutting a housing community. Riding in the passenger seat, someone\",\"We drive past a sign for Sandpiper Village, another for Paniolo, then a golf course abutting a housing community.\",\"Riding in the passenger seat, someone\",gold,enters the apartment and exits the front door and heads down a sidewalk.,holds his forehead as he absently gazes out his window.,smiles and looks patiently along the ship expanse.,treads up front of a building on a head lower platform with snowboarding skills.,1\n15664,lsmdc3092_ZOOKEEPER-45444,5412,Someone's lifts the portly zookeeper up with one arm. They,Someone's lifts the portly zookeeper up with one arm.,They,gold,\"steps double - topped in the dark room, and leaves.\",\"aim at someone, who still whiskey over the side.\",move for the support beam.,start to partway someone 'hair.,2\n15665,anetv_50MmJszF2XM,14377,She then spots a little girl through a backflip. She,She then spots a little girl through a backflip.,She,gold,\"helps her do several different tasks, explaining the process as they go.\",does text on the screen.,climbs off a horse and rides around.,\"continues, balancing herself next to her horse as he travels up the slope.\",0\n15666,anetv_xwSHzGCP6iA,17469,A large metal tower is shown. A person bungee,A large metal tower is shown.,A person bungee,gold,jumps off the tower.,jumps and slides a ring in.,jumps onto the back of the boat.,jumps over a cliff.,0\n15667,anetv_xwSHzGCP6iA,16793,They fall onto a yellow mat and get their harness taken off. They,They fall onto a yellow mat and get their harness taken off.,They,gold,stand up and walk away.,watch from the side of the street and start trying to get the tiles.,scrub the snow down a slope.,paddle boards down the hill.,0\n15668,anetv_xwSHzGCP6iA,16792,A person is bungee jumps off of a tower. They,A person is bungee jumps off of a tower.,They,gold,tube down a hill.,go over the ramps.,fall onto a yellow mat and get their harness taken off.,perform high jumps in a big competition.,2\n15669,anetv_xwSHzGCP6iA,17470,A person bungee jumps off the tower. They,A person bungee jumps off the tower.,They,gold,fall over the rope.,continue going through the rapids and running and jumping at a pole.,land on a yellow mat and take their harness off.,run and jump off in the air.,2\n15670,lsmdc1018_Body_Of_Lies-80255,17085,\"Someone punches and kicks someone, and he tumbles down the slope. Someone\",\"Someone punches and kicks someone, and he tumbles down the slope.\",Someone,gold,spits at him and walks off.,\"rips off the window, sending him flying out.\",\"catches him, yanking him to the stern pole.\",finds himself fencing again.,0\n15671,lsmdc1018_Body_Of_Lies-80255,17089,The white dome of the Capitol building rises up amongst the ordered grid of streets. Someone,The white dome of the Capitol building rises up amongst the ordered grid of streets.,Someone,gold,shows someone entering an apartment with a framed photo at a bridge.,puts on his hat.,continues strapping with her rifle shot rifle in her hand.,sits alone at a cafe by a lake.,3\n15672,lsmdc1018_Body_Of_Lies-80255,17090,Someone sits alone at a cafe by a lake. He,Someone sits alone at a cafe by a lake.,He,gold,drinks from a take - away coffee cup.,slows to a pull on the subdues and flips through.,holds a case of strawberries and gives it a squeeze.,watches his barn procession across the terrace.,0\n15673,lsmdc1018_Body_Of_Lies-80255,17087,Someone heads off up the slope. Someone's hands,Someone heads off up the slope.,Someone's hands,gold,fall on top of him.,\"on the chair is wrapped tightly around his waist, and steely - eyed, someone leaves the room.\",are still tied behind his back.,find snowflakes underneath their open raft.,2\n15674,lsmdc1018_Body_Of_Lies-80255,17086,Someone spits at him and walks off. Someone,Someone spits at him and walks off.,Someone,gold,sees people walking towards someone.,dumps a 3d pane of glass.,heads off up the slope.,steps aside and drinks from his jacket.,2\n15675,lsmdc1018_Body_Of_Lies-80255,17088,Someone's hands are still tied behind his back. The white dome of the Capitol building,Someone's hands are still tied behind his back.,The white dome of the Capitol building,gold,\"is displayed, performers drawing off their fingernails.\",has been poured into its clean basin.,is thrown in his hands.,rises up amongst the ordered grid of streets.,3\n15676,lsmdc1018_Body_Of_Lies-80255,17084,\"Someone looks at someone with disdain, steps over and leans down to him. Someone punches and kicks someone, and he\",\"Someone looks at someone with disdain, steps over and leans down to him.\",\"Someone punches and kicks someone, and he\",gold,knocks on a corner of the window.,tumbles down the slope.,gently raises them at the fence.,slides the weight forward.,1\n15677,lsmdc1018_Body_Of_Lies-80255,17083,Someone watches someone and his men. Someone,Someone watches someone and his men.,Someone,gold,\"looks at someone with disdain, steps over and leans down to him.\",is heading up the grand tiers of hogwarts school.,and his friends hurry past someone to point their wands at someone.,gets a lighter and leaps off.,0\n15678,anetv_Re-SsHmajds,7542,Three people are seen standing around a closed in area and lead into the people hitting balls with a tennis racket. The people,Three people are seen standing around a closed in area and lead into the people hitting balls with a tennis racket.,The people,gold,continue to hit the ball back and fourth with one another hitting each other around the ice.,continue hitting balls on one side and end by walking around one another.,continue to play with one another in the small room hitting the ball and running after it.,hit two balls back and fourth while the camera captures themselves from moving back and fourth.,2\n15679,lsmdc1045_An_education-90246,721,Someone worriedly watches someone watching them. People,Someone worriedly watches someone watching them.,People,gold,dance with their eyes locked together.,comes toward someone with a grin then continues spinning and crossing her arms with a frown.,are shot away from the uniform as someone joins them at a neighboring staircase.,lies in a paddy hut.,0\n15680,anetv_IeTMYNbQSp0,4465,A woman is seen close up standing in front of a car. The woman,A woman is seen close up standing in front of a car.,The woman,gold,is seen sitting on the bike and moving both hands on the machine.,speaks to the camera while still speaking with class.,bends down in front of the car and dips a rag into a bucket.,then begins scraping the car away with a dryer and cleaning it in.,2\n15681,anetv_IeTMYNbQSp0,553,She begins scrubbing down the car with a rag. She,She begins scrubbing down the car with a rag.,She,gold,continues washing and stands up.,continues shoveling distance as she jumps around and cheers.,continues scrubbing out the sink and wipes it around clean.,continues taking crunches and clean a can with a sponge.,0\n15682,anetv_IeTMYNbQSp0,552,A girl is seen bending down before a car. She,A girl is seen bending down before a car.,She,gold,pulls up contact on the men and brushes the shoes.,continues throwing her arms in the air while smiling to the camera.,begins scrubbing down the car with a rag.,puts the girl down.,2\n15683,anetv_IeTMYNbQSp0,4466,The woman bends down in front of the car and dips a rag into a bucket. She,The woman bends down in front of the car and dips a rag into a bucket.,She,gold,pulls out the rag from the bucket which is full of water.,picks it up and starts the car while using it.,then uses the scraper to scrub the car clean with water.,continues wiping the wall with liquid and showing off the chemical products.,0\n15684,anetv_wN2XnDS0aGc,8409,When the woman lands she cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air. A replay of the woman's jump plays and the woman,When the woman lands she cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air.,A replay of the woman's jump plays and the woman,gold,comes back quickly running into exercise and holding her leg up in the air.,start spins her arms in the air.,has her two hands on her head and smiling in disbelief.,remains correctly ready to play her way on a stage on a mat to stands up.,2\n15685,anetv_wN2XnDS0aGc,8408,\"A very tall and lanky woman runs quickly and jumps over a very high horizontal pole, clears it and lands on the mat below it. When the woman lands she\",\"A very tall and lanky woman runs quickly and jumps over a very high horizontal pole, clears it and lands on the mat below it.\",When the woman lands she,gold,falls into the air while landing in the sand and the woman begins jumping jump in the air in circles.,performs mallet and runs down the track with the gymnastic discus on her arms.,throws the object off into the distance and jumps around gracefully and eventually end up up sliding down in the sand.,cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air.,3\n15686,anetv_wN2XnDS0aGc,14402,The action is repeated in slow motion twice. The athlete,The action is repeated in slow motion twice.,The athlete,gold,returns four times and shakes his head.,is briefly shown celebrating.,stares slack - jawed.,gets ready to go up the air and continue playing.,1\n15687,anetv_wN2XnDS0aGc,14401,A vintage shot of a female athlete successfully doing a high jump in a large stadium. The action,A vintage shot of a female athlete successfully doing a high jump in a large stadium.,The action,gold,is repeated in slow motion twice.,\"is replayed with wild angles, jumping from numerous angles.\",\"is replayed several times, several times.\",is overlaid and the video ends with the ambulance getting back to and home.,0\n15688,lsmdc0011_Gandhi-52899,3979,And he smiles a little wisely at her. His tone,And he smiles a little wisely at her.,His tone,gold,is no closer than they have been.,\"is diners and mean, not sexy yet.\",is not altogether patient.,does n't really matter.,2\n15689,lsmdc0011_Gandhi-52899,3978,\"He pivots around, moving beside her, and slowly demonstrates the process, taking her hands, guiding her. Someone\",\"He pivots around, moving beside her, and slowly demonstrates the process, taking her hands, guiding her.\",Someone,gold,watches him as much as the wheel.,continues brushing his teeth while walking in circles.,begins to move faster and faster slowly across the floor.,\"rises to her knees, finds him alone, lowers his gaze, then looks at her unhappily.\",0\n15690,lsmdc0049_Hannah_and_her_sisters-69759,19126,Someone walks into the movie house. He,Someone walks into the movie house.,He,gold,\"is seen through the glass doors, which still reflect the street and traffic outside.\",swings the remaining locked door.,raises a gun to reveal a hidden handgun in a corner.,gets onto a bed and steps out on a couch.,0\n15691,lsmdc0049_Hannah_and_her_sisters-69759,19116,\"The film abruptly cuts to someone's flashback, a visual counterpoint to the story he is telling someone. A close - up of a nervous, perspiring, and panting someone alone in his apartment\",\"The film abruptly cuts to someone's flashback, a visual counterpoint to the story he is telling someone.\",\"A close - up of a nervous, perspiring, and panting someone alone in his apartment\",gold,\"is shown with one account set with his brain, etc.\",is a tangle of record company.,\"is him, and is superimposed over the manager of his arm in a pretty deserted room, almost like a sophisticated military - style\",appears on the screen as his voice is heard.,3\n15692,lsmdc0049_Hannah_and_her_sisters-69759,19125,His reflection walks towards the theater entrance; he continues his story. Someone,His reflection walks towards the theater entrance; he continues his story.,Someone,gold,meets his doll and leaves.,passes the boy on his study knife - drawn.,walks into the movie house.,\"glances after her, not checking out.\",2\n15693,lsmdc0049_Hannah_and_her_sisters-69759,19113,\"The film then moves to the outside of a charming glass and stained wood caffe. Through the window, people\",The film then moves to the outside of a charming glass and stained wood caffe.,\"Through the window, people\",gold,crawl on the floor for a moment.,are staring in the atrium.,can be seen having lunch.,are all wearing stolen clothes.,2\n15694,lsmdc0049_Hannah_and_her_sisters-69759,19115,\"Next, the film cuts to an almost isolated path in Central Park, complete, with old - fashioned streetlamps and scattered leaves. People\",\"Next, the film cuts to an almost isolated path in Central Park, complete, with old - fashioned streetlamps and scattered leaves.\",People,gold,dance in the street.,\"drifts away from the attic window, a shaft of sunlight pouring from someone's office window.\",\"stroll into view, deep in conversation.\",sit by an hospital wall.,2\n15695,lsmdc0049_Hannah_and_her_sisters-69759,19122,\"Someone runs offscreen briefly to answer the door. He returns onscreen, panting; he\",Someone runs offscreen briefly to answer the door.,\"He returns onscreen, panting; he\",gold,is much happier than his classmates.,looks frantically once again around the living room.,is very aware of them having heard this before.,can not have heard the conversation.,1\n15696,lsmdc0049_Hannah_and_her_sisters-69759,19128,\"The film abruptly cuts to the theater's black - and - white screen, where the Marx Brothers, in Duck Soup, play the helmets of several soldiers standing in a line like a live xylophone. The film\",\"The film abruptly cuts to the theater's black - and - white screen, where the Marx Brothers, in Duck Soup, play the helmets of several soldiers standing in a line like a live xylophone.\",The film,gold,\"stops, and the camera pans to the advantage.\",cuts back to the black - and - white movie screen as someone continues to talk.,\"collapses, up to a crossbar and swings on its hind legs to make their way to a side of several kitchen table.\",falls out.,1\n15697,lsmdc0049_Hannah_and_her_sisters-69759,19117,\"A close - up of a nervous, perspiring, and panting someone alone in his apartment appears on the screen as his voice is heard. Someone\",\"A close - up of a nervous, perspiring, and panting someone alone in his apartment appears on the screen as his voice is heard.\",Someone,gold,\"stares wearily at his empty civilian, and looks concerned as someone removes his glass and takes a sip.\",raises the barrel of a rifle to his forehead.,\"draws them over to face him, then stands.\",\"speaks to someone, but does not say anything for a long moment.\",1\n15698,lsmdc0049_Hannah_and_her_sisters-69759,19120,\"The camera moves past the desperate someone to a mirror on the wall behind him. Someone, holding the rifle,\",The camera moves past the desperate someone to a mirror on the wall behind him.,\"Someone, holding the rifle,\",gold,takes himself a little evaluating.,extends a dime to someone.,sits in the puddle.,is seen running over to the shattered mirror.,3\n15699,lsmdc0049_Hannah_and_her_sisters-69759,19124,\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis go by as he talks over the scene. The movie\",\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis go by as he talks over the scene.\",The movie,gold,starts down slowly as he picks up a drink and drops it on the floor.,\"cuts to the exterior of the metro movie theater, with its smoked glass entrance doors and its art deco feel.\",is finally together followed by views of men demonstrating exercises and others motionless.,shows the image of someone bending tails and shaking his hips as he sits his grandma out of the hole still on his lap.,1\n15700,lsmdc0049_Hannah_and_her_sisters-69759,19111,\"Someone, thrilled with someone's overwhelming response, stands up, her hand on her head. Unable to contain herself, she\",\"Someone, thrilled with someone's overwhelming response, stands up, her hand on her head.\",\"Unable to contain herself, she\",gold,\"watches someone resolutely then looks down, without looking up at him.\",rests her hand on someone's shoulder.,\"begins to walk up and down the room, holding her script.\",crosses to the window blinds and spots someone sitting with someone.,2\n15701,lsmdc0049_Hannah_and_her_sisters-69759,19129,The film cuts back to the black - and - white movie screen as someone continues to talk. The movie,The film cuts back to the black - and - white movie screen as someone continues to talk.,The movie,gold,clears and someone continues to test out what the mess starts.,ends with someone in profile of someone.,rolls up and focuses on his eyes and goatee.,\"cuts back to someone, sitting almost obscured in the dark theater.\",3\n15702,lsmdc0049_Hannah_and_her_sisters-69759,19127,\"He is seen through the glass doors, which still reflect the street and traffic outside. He\",\"He is seen through the glass doors, which still reflect the street and traffic outside.\",He,gold,\"does n't like it, but is twisting from swirling and falling.\",sees his reflection in a mirror and looks intently into his crack.,zooms down the road before them and makes his way back to the back hesitantly.,makes his way through the lobby into the actual theater.,3\n15703,lsmdc0049_Hannah_and_her_sisters-69759,19118,Someone raises the barrel of a rifle to his forehead. He,Someone raises the barrel of a rifle to his forehead.,He,gold,shuts his eyes tightly.,reaches up and punches someone in the face.,\"fires a blaze, then fires out and elsewhere, sends away fresh fire and deeply.\",sees someone on a monitor.,0\n15704,lsmdc0049_Hannah_and_her_sisters-69759,19119,He shuts his eyes tightly. The camera,He shuts his eyes tightly.,The camera,gold,looks provocatively at his shirt worn and digitally.,moves past the desperate someone to a mirror on the wall behind him.,moves down a gallery of photos and even lonely neighbors.,lays back on his fallen chin.,1\n15705,lsmdc0049_Hannah_and_her_sisters-69759,19114,\"Through the window, people can be seen having lunch. Someone is talking animatedly; someone\",\"Through the window, people can be seen having lunch.\",Someone is talking animatedly; someone,gold,\"walks faster, faster in the mirrored chamber.\",has a good time to make it lovely.,takes a sip of coffee.,\"briefly nods, but does n't follow.\",2\n15706,lsmdc0049_Hannah_and_her_sisters-69759,19112,\"People emerge from the door and walk up the street, revealing a whole row of similar apartment buildings. They\",\"People emerge from the door and walk up the street, revealing a whole row of similar apartment buildings.\",They,gold,pass two - clad women holding bags and some work to work in the shelves.,are checking out in scenes of the police car together with the cover before tinkering.,pass a few other people as they walk.,pull up inside someone's house.,2\n15707,lsmdc0049_Hannah_and_her_sisters-69759,19123,\"He returns onscreen, panting; he looks frantically once again around the living room. Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis\",\"He returns onscreen, panting; he looks frantically once again around the living room.\",\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis\",gold,go by as he talks over the scene.,spill backwards over the side window.,are in disarray.,are sitting together for him.,0\n15708,lsmdc0049_Hannah_and_her_sisters-69759,19132,\"The Marx Brothers are sitting on a judge's bench, playing banjos and singing with the other cast members. They\",\"The Marx Brothers are sitting on a judge's bench, playing banjos and singing with the other cast members.\",They,gold,\"jump down from the bench, still singing.\",thinly appears on the ocean's backdrop and settles into their burning ashes.,wiggle their hands and smile into each other's eyes.,\"see a long slender man seated on the piano, reading a song on that looks as he has ended.\",0\n15709,lsmdc0049_Hannah_and_her_sisters-69759,19121,\"Someone, holding the rifle, is seen running over to the shattered mirror. Someone\",\"Someone, holding the rifle, is seen running over to the shattered mirror.\",Someone,gold,takes out his wand.,takes a clock hands and leans on it.,continues out of the way as it gives off.,runs offscreen briefly to answer the door.,3\n15710,lsmdc0049_Hannah_and_her_sisters-69759,19131,\"The film is back on someone's dark form in the audience. As someone continues, the film\",The film is back on someone's dark form in the audience.,\"As someone continues, the film\",gold,erupts outside the car before someone.,pulls away from the dj.,show one soul from someone.,cuts back to duck soup on the black - and - white screen.,3\n15711,lsmdc0049_Hannah_and_her_sisters-69759,19130,\"The four brothers are now swaying and singing and strutting, their voices indistinct over someone's narration. The film\",\"The four brothers are now swaying and singing and strutting, their voices indistinct over someone's narration.\",The film,gold,is back on someone's dark form in the audience.,cuts to someone who's attempting to bite his head.,finds a watery balloon and drops into the darkness below.,continues with the people dance and rec comfortable and relatively normal.,0\n15712,anetv_flneQOXwGxw,13043,A man kicks another man. That man,A man kicks another man.,That man,gold,swings a bat at him.,walks towards him with leg length.,claps into the camera.,runs to the ground.,0\n15713,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13487,Two black boars trot around in their pen. Grass,Two black boars trot around in their pen.,Grass,gold,eagerly cash from their.,sparkle its fur onto the side.,\"pull up beside a few children, stand and roll study to one another to help.\",sticks out from a tortoise's mouth as it crawls over the ground.,3\n15714,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13480,\"In the field, the family gathers in a group embrace around him. Later, someone reclines across his lap and someone\",\"In the field, the family gathers in a group embrace around him.\",\"Later, someone reclines across his lap and someone\",gold,stands on the veranda outside.,lies on his cheek.,leans against his side.,glides closer to the apartment.,2\n15715,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13490,A boxy older - style Mercedes pulls up nearby. Someone,A boxy older - style Mercedes pulls up nearby.,Someone,gold,\"gets out, wearing sunglasses.\",smiles and crouches down to someone and stares off.,runs past the president.,leans in the bar.,0\n15716,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13479,\"He wets his lips as he stares longingly at the passing vision of his wife. In the field, the family\",He wets his lips as he stares longingly at the passing vision of his wife.,\"In the field, the family\",gold,watches as more zombies come back up.,remains in a waiting area.,gathers in a group embrace around him.,arrive at the palace gate.,2\n15717,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13475,\"Later, they play a game of tag. Someone\",\"Later, they play a game of tag.\",Someone,gold,grins at the memory.,is throwing darts at a floor.,pays the the players.,takes a seat on a buffet desk.,0\n15718,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13451,Someone faces his father earnestly. Someone,Someone faces his father earnestly.,Someone,gold,\"punches someone, then punches him.\",faces his son with a furrowed brow.,grabs his thigh and pulls someone into a cramped position beside someone as he averts his gaze.,smiles as the kids remain.,1\n15719,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13459,\"At night, someone tucks a blanket around his sleeping son. He\",\"At night, someone tucks a blanket around his sleeping son.\",He,gold,covers the back of his trousers.,hands it to our son.,rips someone in his life coat.,strokes the teen's smooth hair.,3\n15720,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13489,The teen's eyes light up. Someone,The teen's eyes light up.,Someone,gold,spots someone's statue upstairs.,gulps in the gazebo.,shows a dozen packages waving in flags.,\"chuckles, overcome with joy.\",3\n15721,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13477,\"Back in the present, someone beams joyfully as he visualizes his wife and children playing before him in the dimly lit kitchen. In the kitchen, someone's glasses\",\"Back in the present, someone beams joyfully as he visualizes his wife and children playing before him in the dimly lit kitchen.\",\"In the kitchen, someone's glasses\",gold,takes a drink.,the someone drink from his mouth.,show their dancing reflections.,\"are hot cups in coffee table with a ceramic soda in her hand, she shoves the bottle behind her back.\",2\n15722,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13482,\"Later still, someone holds his wife in his arms as she reaches out to scratch someone's back. In the kitchen, the widower\",\"Later still, someone holds his wife in his arms as she reaches out to scratch someone's back.\",\"In the kitchen, the widower\",gold,cleans off her figure.,lowers his overwhelmed gaze.,studies lying on a bed.,falls onto the stairs and knocks it down.,1\n15723,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13483,\"In the kitchen, the widower lowers his overwhelmed gaze. He\",\"In the kitchen, the widower lowers his overwhelmed gaze.\",He,gold,checks the instructions on someone's youtube tv.,\"'s hand over his face, pressed down with his hands, and shrinks.\",walks out the window to the beach.,removes his reading glasses.,3\n15724,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13468,The next picture shows a black - and - white - photo print lying on a table. It,The next picture shows a black - and - white - photo print lying on a table.,It,gold,picks up a spray box and carries a purse where the salesman's items are placed in the back drawer.,takes it into a black bucket and searches.,features someone holding a glass of red wine.,crashes into the sphere.,2\n15725,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13454,\"Spar opens his eyes a slit and blinks heavily. Later, someone\",Spar opens his eyes a slit and blinks heavily.,\"Later, someone\",gold,bites his lip as he walks outside with someone.,reveals a shadow with a constant - drawn blade.,\"squats down beside himself, as he faces his older brothers.\",sleeps beside a doctor.,0\n15726,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13474,\"Looking up from the computer, he remembers taking photos in the field as his wife and children frolic around him. Later, they\",\"Looking up from the computer, he remembers taking photos in the field as his wife and children frolic around him.\",\"Later, they\",gold,\"arrive at a picnic with silver policemen lined up high, bewildered, embarrassed.\",lie outside through a bridge.,\"take a small - tube cake from the curbside lounge, spheres merge on top of another hill.\",play a game of tag.,3\n15727,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13470,Someone stares tearfully at the photo. Someone,Someone stares tearfully at the photo.,Someone,gold,looks up at the suit.,takes a deep breath and gives a faint smile.,\"imagines her opening her eyes, her chest rises and falls beneath the sheet.\",\"eyes him several times, then leans toward him.\",2\n15728,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13455,\"Later, someone bites his lip as he walks outside with someone. He\",\"Later, someone bites his lip as he walks outside with someone.\",He,gold,slips money into the envelope's box.,leans down and cradles his daughter.,approaches someone and gives a resigned nod.,\"stares at them both, then something catches them.\",2\n15729,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13472,\"In a field, someone stands on one leg, with her arms spread, as her children look on. Another tear\",\"In a field, someone stands on one leg, with her arms spread, as her children look on.\",Another tear,gold,flies across someone's cheek.,rolls down someone cheek.,rolls from her eye.,trails down her cheeks.,1\n15730,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13466,Someone sits cross - legged on the kitchen floor with the computer on his lap. He,Someone sits cross - legged on the kitchen floor with the computer on his lap.,He,gold,takes on the web seals a large stuffed animal lying beneath him.,hangs up the type of table in a basket.,drops a book on his lap and binds the outline with his right arm.,\"clicks to the next image, which shows him and someone sharing a kiss.\",3\n15731,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13486,A horned owl turns its head. Two black boars,A horned owl turns its head.,Two black boars,gold,\"fly out of its tree, leaving the wings in the big wind.\",trot around in their pen.,fly apart and opens onto the face of a girl.,hang from within the other branches.,1\n15732,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13460,\"The top sketch depicts a human figure with taloned hands and a spiraling worm - like head. Flipping through the drawings, someone next\",The top sketch depicts a human figure with taloned hands and a spiraling worm - like head.,\"Flipping through the drawings, someone next\",gold,wraps his body behind his body.,applies makeup to him someone.,strokes the front of her face.,finds a detailed illustration of a fly with pincers and a toothy maniacal grin.,3\n15733,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13485,\"It reads, Spar, 1993 to 2010, Our Unforgettable Friend and features a photo illustration of the Bengal tiger. As someone steps away, our view\",\"It reads, Spar, 1993 to 2010, Our Unforgettable Friend and features a photo illustration of the Bengal tiger.\",\"As someone steps away, our view\",gold,lifts to reveal the thin teeth of blond's anguished teeth.,drifts closer to the touching memorial passing through patches of flared sunlight.,circles across the floor where faces mounted on to a door near the open door.,transitions to panties from the treading water.,1\n15734,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13478,\"In the kitchen, someone's glasses show their dancing reflections. He\",\"In the kitchen, someone's glasses show their dancing reflections.\",He,gold,wets his lips as he stares longingly at the passing vision of his wife.,sets up in the kitchen on the kitchen counter and takes a drink.,unties the parts around someone's neck.,looks the actress looks.,0\n15735,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13465,\"Now at his laptop, he clicks an arrow on his iPhoto application. Someone\",\"Now at his laptop, he clicks an arrow on his iPhoto application.\",Someone,gold,sits cross - legged on the kitchen floor with the computer on his lap.,blinks back his tears and crosses the room.,grins at the rest of the young someone who resembles a beautiful asian.,\"leans on a sink, leans against the metal upside - up, then checks to someone one.\",0\n15736,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13456,\"She watches them walk off together down the sun - dabbled footpath. Seeing someone throw an arm around his son's shoulder, she\",She watches them walk off together down the sun - dabbled footpath.,\"Seeing someone throw an arm around his son's shoulder, she\",gold,takes a deep warm - hearted breath.,pulls his plate away from her.,goes straight to someone.,jogs through a doorway.,0\n15737,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13463,\"The minimalistic rendering captures the tiger's characteristically warm, intelligent gaze. He\",\"The minimalistic rendering captures the tiger's characteristically warm, intelligent gaze.\",He,gold,looks back at his sleeping son and beams proudly.,shifts her listless gaze as the teammate winds up behind the barricade toward the dumpster.,finds a outburst mounting longer above his doom.,\"stares 45 - eyed at the pain - forming letters, almost subdues a skeptical look.\",0\n15738,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13467,Someone's breath grows ragged and his chin quivers. The next picture,Someone's breath grows ragged and his chin quivers.,The next picture,gold,shows an empty table with a live bed.,is on the tv's interest.,is hit by multi - colored equipment.,shows a black - and - white - photo print lying on a table.,3\n15739,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13484,\"He removes his reading glasses. Now, a blurred image\",He removes his reading glasses.,\"Now, a blurred image\",gold,shifts down and finds a smirk.,shows a visual social flash puffy black russian.,sharpens into focus to reveal the gnarled branches of a california oak.,\"becomes a sergeant, a man in a victorian suit a distinguished man with a black cover beneath a radio cap.\",2\n15740,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13476,\"Someone grins at the memory. In the field, someone and someone\",Someone grins at the memory.,\"In the field, someone and someone\",gold,stand with a framed photo.,spread their arms like wings as they run circles around him.,toss bags into the back of the affluent constructed home.,watch him solemnly.,1\n15741,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13458,\"As they near a bend in the path, someone's father gives him a playful shove. At night, someone\",\"As they near a bend in the path, someone's father gives him a playful shove.\",\"At night, someone\",gold,tucks a blanket around his sleeping son.,searches through binoculars to find someone uppermost petrol in - zipping up a negligee.,\"faces his friend, then turns and walks over to the booth.\",sit and takes an envelope of the surplus documenting against a businessman.,0\n15742,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13481,\"Later, someone reclines across his lap and someone leans against his side. Later still, someone\",\"Later, someone reclines across his lap and someone leans against his side.\",\"Later still, someone\",gold,sleeps on the bed hard.,stops in his tracks.,holds his wife in his arms as she reaches out to scratch someone's back.,steps into the modern apartment building and hunches down.,2\n15743,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13449,\"Blinking thoughtfully, someone purses his lips tightly and nods. Someone\",\"Blinking thoughtfully, someone purses his lips tightly and nods.\",Someone,gold,regards his father with a faint understanding smile.,emerges from the living room and stares after him.,\"stares at someone, mouth open and eyes wide.\",pulls out her cell phone.,0\n15744,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13450,Someone regards his father with a faint understanding smile. Someone,Someone regards his father with a faint understanding smile.,Someone,gold,faces his father earnestly.,looks dazed from his roadster's view.,\"smiles at someone, then glances at him.\",weighs up his chips once more.,0\n15745,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13491,\"Someone gets out, wearing sunglasses. He\",\"Someone gets out, wearing sunglasses.\",He,gold,is more ragged and gasping for breath.,takes off his shades.,puts the meeting down.,smiles as he falls.,1\n15746,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13488,\"A peahen turns her head. Inside, someone\",A peahen turns her head.,\"Inside, someone\",gold,smokes the cigarette and smokes.,intercepts someone as he comes downstairs.,\"walks a crowded sidewalk, smoking a cigarette.\",lies on top of someone as her legs and chest vibrate.,1\n15747,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13471,\"In another picture, someone plays with Leon as a puppy. In a field, someone\",\"In another picture, someone plays with Leon as a puppy.\",\"In a field, someone\",gold,slams his dress angrily to the preacher.,jogs out of the dance.,lies awake in a relaxing rock room.,\"stands on one leg, with her arms spread, as her children look on.\",3\n15748,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13464,\"He looks back at his sleeping son and beams proudly. Taking a deep breath, someone\",He looks back at his sleeping son and beams proudly.,\"Taking a deep breath, someone\",gold,regards the tiger uncertainly.,combines the canvas to a crate.,sinks into the sea.,\"returns his gaze to the portrait, and blinks back tears.\",3\n15749,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13461,\"Flipping through the drawings, someone next finds a detailed illustration of a fly with pincers and a toothy maniacal grin. The father's brow knits and he\",\"Flipping through the drawings, someone next finds a detailed illustration of a fly with pincers and a toothy maniacal grin.\",The father's brow knits and he,gold,dabs his face with his brow.,gives his father his pleading look.,smiles as they hug.,glances at his son.,3\n15750,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13452,Someone faces his son with a furrowed brow. The boy,Someone faces his son with a furrowed brow.,The boy,gold,walks out another window.,considers dusting a smartphone.,gazes solemnly into the cage.,enters the bushy room.,2\n15751,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13469,\"It features someone holding a glass of red wine. In the next photo, the smiling beauty\",It features someone holding a glass of red wine.,\"In the next photo, the smiling beauty\",gold,holds a white trophy.,stands in the snow in an ankle - length coat.,sits in a slit of a man's coat.,pinata a decoration made of ashes into the first aisle.,1\n15752,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13473,\"Another tear rolls down someone cheek. Looking up from the computer, he\",Another tear rolls down someone cheek.,\"Looking up from the computer, he\",gold,remembers taking photos in the field as his wife and children frolic around him.,picks up a pair of sunglasses.,sees the boardwalk.,looks out at the dorm.,0\n15753,lsmdc3087_WE_BOUGHT_A_ZOO-41562,13457,\"Seeing someone throw an arm around his son's shoulder, she takes a deep warm - hearted breath. As they near a bend in the path, someone's father\",\"Seeing someone throw an arm around his son's shoulder, she takes a deep warm - hearted breath.\",\"As they near a bend in the path, someone's father\",gold,is leaning out of a window pane.,gives a longing look.,\"steps in behind her, putting his briefcase to the stomach.\",gives him a playful shove.,3\n15754,anetv_vrY1ZMqjMog,5231,The man rubs a section of the wall. The man,The man rubs a section of the wall.,The man,gold,picks up the brushed and dry it off to the finish line.,cuts then smooths cement on a tile.,walks away from the camera as he wipes the wall.,hesitates before the recreation area of hand pipes.,2\n15755,anetv_vrY1ZMqjMog,5232,The man walks away from the camera as he wipes the wall. The man then,The man walks away from the camera as he wipes the wall.,The man then,gold,walks towards the camera.,uses the paint solution to put his face in the water.,holds up a brush and begins rubbing it all around the area while the people speak to the camera.,zooms out and show his face and showing his commentary before finishing.,0\n15756,anetv_vrY1ZMqjMog,5230,A man is wiping plaster on a wall while walking towards the camera. The man,A man is wiping plaster on a wall while walking towards the camera.,The man,gold,rubs a section of the wall.,continues shoveling the instrument and lighting up the wood.,continues moving his chair up and down and singing.,turns up and switches on the car.,0\n15757,anetv_vrY1ZMqjMog,14241,Man is showing to the camera hot to mill a wall. man,Man is showing to the camera hot to mill a wall.,man,gold,is going back on a brush while cleaning his client's back and uses a hammer to put on his chest.,is standing in a kitchen talking to the camera to start fixing clothes outside.,is walking in a small room that have a plastic on the floor to not mess up the floor.,is demonstrating how to iron vampire armor.,2\n15758,anetv_vrY1ZMqjMog,14240,Man is standing in a room milling one of the wall. man,Man is standing in a room milling one of the wall.,man,gold,is in the boarding room in front of a dark room.,is running through a pile of grass.,is doing gymnastics in the field and sharpening the pole.,is showing to the camera hot to mill a wall.,3\n15759,lsmdc0031_The_Lost_Weekend-65406,8798,\"He takes a couple of steps towards the door, turns. He\",\"He takes a couple of steps towards the door, turns.\",He,gold,\"walks out, bewildered.\",speeds toward the club door.,\"takes it in, now fully dressed, few students dressed in casual outfits.\",sees the glowing ball disappearing into his mirror.,0\n15760,lsmdc0031_The_Lost_Weekend-65406,8797,\"With his thumb, someone indicates someone. He\",\"With his thumb, someone indicates someone.\",He,gold,sends a message then turns on someone.,transfers them to his own paw - like cheek instead.,\"takes a couple of steps towards the door, turns.\",\"looks dazed, aware that she's eating and enjoying it very much.\",2\n15761,lsmdc0031_The_Lost_Weekend-65406,8799,He downs the jigger of rye. Someone,He downs the jigger of rye.,Someone,gold,places a gentle hook on someone's finger.,watches her from an upper ceiling.,\"gets out of his car, watching.\",does break down and pours a drink.,3\n15762,lsmdc0003_CASABLANCA-47160,258,Someone walks out to the balcony railing. Someone,Someone walks out to the balcony railing.,Someone,gold,turns to see someone from the lantern.,grimaces calmly on the panel.,drops his other arm and runs to the center of the platform.,\"sees someone attending to someone, who appears to be injured.\",3\n15763,lsmdc0003_CASABLANCA-47160,254,Someone crosses to the door. He,Someone crosses to the door.,He,gold,climbs inside and stands at the railing.,\"pulls himself into view, swims to the bathroom, and sees someone smoking a cigarette.\",\"opens it just enough to see below, and turns off the light.\",closes it locking the door in behind them.,2\n15764,lsmdc0003_CASABLANCA-47160,253,\"People enter and cross toward the bar, out of breath from their exertion. Someone\",\"People enter and cross toward the bar, out of breath from their exertion.\",Someone,gold,turns to the window to steady waves at the patrons.,\"places three glasses on the table in the glass beside him, just to make herself think he holds someone else.\",goes behind the bar.,stands up as a slow silver tear rolls down someone's cheek.,2\n15765,lsmdc0003_CASABLANCA-47160,256,She makes a move as if to go out to the balcony but someone's pushes her back. She,She makes a move as if to go out to the balcony but someone's pushes her back.,She,gold,grabs his popcorn bag and checks it.,withdraws behind the door.,stands onto a platform and falls forward.,swerves into someone and pulling him to the other side of the road.,1\n15766,lsmdc0003_CASABLANCA-47160,248,Someone puts her head on someone's shoulder. She,Someone puts her head on someone's shoulder.,She,gold,blows the snow off him.,pauses as she massages the boy in her cheek.,rests her head on his shoulder.,snuggles closer to someone.,3\n15767,lsmdc0003_CASABLANCA-47160,251,They flatten themselves against a wall to avoid detection. People,They flatten themselves against a wall to avoid detection.,People,gold,sit at another passageway.,come around and demonstrate a motel a sculpting torch.,make their way through the darkness toward a side entrance of someone's.,in the camp is in chaos of the hydra soldiers.,2\n15768,lsmdc0003_CASABLANCA-47160,259,Someone enters someone's apartment and sees someone. He,Someone enters someone's apartment and sees someone.,He,gold,drops the fang and then doubles back.,looks at someone and says nothing.,\"stands, clinging to the tree until he's just going away.\",emerges from a nearby intersection and makes a call.,1\n15769,lsmdc0003_CASABLANCA-47160,255,\"He opens it just enough to see below, and turns off the light. Someone\",\"He opens it just enough to see below, and turns off the light.\",Someone,gold,tosses someone on a couch and comes after them.,stands just in back of him.,\"approaches him, then hide behind a pillar.\",looks down and sees something in the nurse's eyes.,1\n15770,lsmdc0003_CASABLANCA-47160,250,The lights move past them. They,The lights move past them.,They,gold,flatten themselves against a wall to avoid detection.,push the animals closer to the camera.,peer up at the satellite baring.,turn to the sinks.,0\n15771,lsmdc0003_CASABLANCA-47160,260,He looks at someone and says nothing. Someone,He looks at someone and says nothing.,Someone,gold,\", with his fists clenched, looks stunned.\",\"walks to the bar, picks up a bottle, and pours a drink.\",is turned to look if this is real.,slaps her glasses and shrugs.,1\n15772,lsmdc0003_CASABLANCA-47160,252,People make their way through the darkness toward a side entrance of someone's. People,People make their way through the darkness toward a side entrance of someone's.,People,gold,ride down the corridor in the wheelhouse.,stand by the line of camels.,\"enter and cross toward the bar, out of breath from their exertion.\",wait in a back room in the street.,2\n15773,lsmdc0001_American_Beauty-45722,1070,His eyes widen as he pulls a rose petal from his mouth right before we. Someone,His eyes widen as he pulls a rose petal from his mouth right before we.,Someone,gold,\"is back against the counter, drinking the root beer.\",pours lemonade into a glass cup and brings it to the mouth.,spins a knife at a shell display.,puts it in a sling.,0\n15774,lsmdc0001_American_Beauty-45722,1071,\"Someone is back against the counter, drinking the root beer. Someone\",\"Someone is back against the counter, drinking the root beer.\",Someone,gold,\"is a little shaken, and he plops himself on his bed, hands himself a cup of coffee.\",enters from the dining room.,is surprised of them so embarrassed.,chases him through the crowd.,1\n15775,lsmdc0001_American_Beauty-45722,1068,\"She seems shocked, but does n't resist as he pulls her toward him with surprising strength. He breaks the kiss, looking at her in awe, then he\",\"She seems shocked, but does n't resist as he pulls her toward him with surprising strength.\",\"He breaks the kiss, looking at her in awe, then he\",gold,turns her to go to someone.,reaches up and touches his lips.,sets his face face back in hers and gives her a kiss.,sets her down on the mat.,1\n15776,lsmdc0001_American_Beauty-45722,1064,She starts toward the kitchen. Someone,She starts toward the kitchen.,Someone,gold,leaps over someone back.,comes out of her.,enters and opens the refrigerator.,enters in the passenger side.,2\n15777,lsmdc0001_American_Beauty-45722,1067,\"Everything slows down, and all sound fades. Close on someone: his eyes narrow slightly, then: He\",\"Everything slows down, and all sound fades.\",\"Close on someone: his eyes narrow slightly, then: He\",gold,cups her face in his hands and kisses her.,\"concern his electrode, to sleep.\",slips through the mud and rolls over to a left.,is now in the beginning.,0\n15778,lsmdc0001_American_Beauty-45722,1073,\"He can't believe what he is hearing. Someone, still in his suit,\",He can't believe what he is hearing.,\"Someone, still in his suit,\",gold,is bent over his chair.,runs back to the great hall.,sits on a corner chair by himself.,\"stands outside someone's room, his ear up against the door.\",3\n15779,lsmdc0001_American_Beauty-45722,1065,Someone enters and opens the refrigerator. He,Someone enters and opens the refrigerator.,He,gold,\"turns, and is instantly transfixed by: someone leans against the counter, twirling her hair.\",pours out the restaurant shaker and rests it at a table over his son.,stands at a door sitting on the counter near the room.,adds a small bundle of candy into a aluminum pan.,0\n15780,lsmdc0001_American_Beauty-45722,1072,Someone enters from the dining room. He,Someone enters from the dining room.,He,gold,can't believe what he is hearing.,brings someone a fedora.,bowls at her of a ample exhausted friend.,watches someone who folds his arms.,0\n15781,lsmdc0001_American_Beauty-45722,1063,Someone switches off the tv. She,Someone switches off the tv.,She,gold,set faces out of the command module.,starts toward the kitchen.,takes out the surveillance cell.,hangs up and arches his brow.,1\n15782,lsmdc0001_American_Beauty-45722,1066,\"She reaches inside the refrigerator to grab a bottle. As she does, she\",She reaches inside the refrigerator to grab a bottle.,\"As she does, she\",gold,moves with a shrug to the side.,moves to place her other hand casually on someone's shoulder.,spits it into someone's cheeks.,finishes pouring a cup of tea to the sink.,1\n15783,anetv_omuYi2Vhgjo,3002,The boy plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing. He,The boy plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing.,He,gold,starts playing his guitar and speaking to the camera as well as playing and smiling to the side.,fixes a set of keys on the side of the piano and reading it then veers through the park and jumps into it.,bristles gets on the hood as he cruises streets in the weeds overgrown forest.,finishes by putting his body onto the piano and then smiling into the camera.,3\n15784,anetv_omuYi2Vhgjo,3001,A young boy is seen smiling and laughing into the camera and beginning to play piano. The boy,A young boy is seen smiling and laughing into the camera and beginning to play piano.,The boy,gold,continues to play and continues to explain how to do sit ups while smiling to the camera.,continues twirl on the floor around someone while still looking away from the camera.,continues moving back and fourth and stopping to speak to the camera.,plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing.,3\n15785,lsmdc3041_JUST_GO_WITH_IT-18448,17039,\"Someone and someone raise their hands. Now on a palm tree lined beach, someone\",Someone and someone raise their hands.,\"Now on a palm tree lined beach, someone\",gold,shares a computer with a bearded woman sitting at a booth with a telephone on her lap.,sits with one hand resting on a row lonely out on the pool's edge.,\"drapes a blanket around her shoulder, cupping her face in his hands.\",steps out of the water in a yellow string bikini.,3\n15786,lsmdc3041_JUST_GO_WITH_IT-18448,17040,\"Now on a palm tree lined beach, someone steps out of the water in a yellow string bikini. Someone and someone\",\"Now on a palm tree lined beach, someone steps out of the water in a yellow string bikini.\",Someone and someone,gold,arrive at the empty restaurant table.,dive in and taking it.,check her out as they cross the sand.,stroll on a balcony overlooking small town.,2\n15787,lsmdc3041_JUST_GO_WITH_IT-18448,17042,\"The voluptuous young woman brushes back her long blonde hair. Ogling her, someone\",The voluptuous young woman brushes back her long blonde hair.,\"Ogling her, someone\",gold,marches into a living room and grabs a duffle bag.,lifts his round glasses.,puts in his hysterical response.,ushers him out the door.,1\n15788,lsmdc3041_JUST_GO_WITH_IT-18448,17041,Someone and someone check her out as they cross the sand. The voluptuous young woman,Someone and someone check her out as they cross the sand.,The voluptuous young woman,gold,carrying a silky hostess at the dining table sits down and too with her head bowed.,carries tray on the dock and helps someone out of their booty.,steps to the soccer hut.,brushes back her long blonde hair.,3\n15789,anetv_AH4v5vqsUlc,15012,A second little boy is playing too. They both,A second little boy is playing too.,They both,gold,go down the slide together.,go back and forth in the tub.,\"stop jumping, running away from the ring.\",start dancing during the dance together.,0\n15790,anetv_AH4v5vqsUlc,15013,They both go down the slide together. The first little boy,They both go down the slide together.,The first little boy,gold,begins running down the slide.,jogs and helped with another boy who tries to peek strand off and lift it.,swings at the pinata pulled away from the bars.,walks along the playground and points at something.,3\n15791,anetv_AH4v5vqsUlc,3043,Once on the ground he walks around for a bit then turns around and points up. Then he,Once on the ground he walks around for a bit then turns around and points up.,Then he,gold,lays the stick under the water and begins playing the piano he just started to adjust it of himself.,goes back and starts up the stairs again.,takes off and goes back to playing on the grass.,begins riding around on his stomach and laying his arms.,1\n15792,anetv_AH4v5vqsUlc,3042,He gets to the red tube slide at the top and points to it and then slides down. Once on the ground he,He gets to the red tube slide at the top and points to it and then slides down.,Once on the ground he,gold,ends up pouring.,starts to wash and he clings to it.,walks around for a bit then turns around and points up.,stands up and looks to the camera.,2\n15793,anetv_AH4v5vqsUlc,15014,The first little boy walks along the playground and points at something. Then he,The first little boy walks along the playground and points at something.,Then he,gold,grabs his flute and resumes playing with his hands and then begins combing the conga.,comes off and goes back down the slide.,\"spins on his knees, raising his arm and setting on the ground.\",goes back to climbing.,3\n15794,anetv_AH4v5vqsUlc,3041,\"A little boy is climbing up the stairs of a play gym, he stops once and points at a red tube opening but passes it. He\",\"A little boy is climbing up the stairs of a play gym, he stops once and points at a red tube opening but passes it.\",He,gold,gets to the red tube slide at the top and points to it and then slides down.,hesitates with the man seated to place the stick in his hand.,beats him with it.,\"moves from the inside, using the hoop to remove the wall.\",0\n15795,anetv_AXw2bkQyRPo,13530,A man and a woman are dancing together in a room. They,A man and a woman are dancing together in a room.,They,gold,are twirling around on the floor.,are doing aerobic crunches on the ground.,are sitting on a couch together.,open a candle on a kettle.,0\n15796,anetv_AXw2bkQyRPo,10205,A man is seen standing in front of the camera when a woman walks next to him in frame. The two then,A man is seen standing in front of the camera when a woman walks next to him in frame.,The two then,gold,begin lacrosse on a beam followed by the same men passing by the camera while others watch on the side.,\"begin playing a game of crochet, one pushing each other along his bag.\",begin dancing around one another in the room with each other.,begin hitting the ball with one another and bumping each other.,2\n15797,anetv_AXw2bkQyRPo,10206,The two then begin dancing around one another in the room with each other. They,The two then begin dancing around one another in the room with each other.,They,gold,continue dancing with one other in the end and celebrating with one in the end.,continue to spin and twirl around and ends with the girl turning off the camera.,clap and both continue fencing with one another.,begin with one another and end by walking around to watch the website.,1\n15798,anetv_AXw2bkQyRPo,13531,They are twirling around on the floor. They finish dancing and the woman,They are twirling around on the floor.,They finish dancing and the woman,gold,climbs down the ladder.,walks to the camera.,appears to be standing away.,keeps walking around the fences while sitting with them in front of them.,1\n15799,lsmdc3086_UGLY_TRUTH-6439,11480,Someone forces a casual smile. Someone,Someone forces a casual smile.,Someone,gold,speaks to the dolphins look.,leads a waiter through the building.,nods disappointedly and tilts her head.,crosses the parking lot.,2\n15800,lsmdc3086_UGLY_TRUTH-6439,11488,He hands her a glass of champagne. She,He hands her a glass of champagne.,She,gold,looks disapprovingly at someone's belly and eyes.,cringes as she finishes the entire glass.,gazes into the window of the cabin as well.,tosses the card aside.,1\n15801,lsmdc3086_UGLY_TRUTH-6439,11481,Someone nods disappointedly and tilts her head. She,Someone nods disappointedly and tilts her head.,She,gold,leans back in his seat and hands her a towel.,gives a bitter smile.,hangs his head at her side.,wears a tiny smile.,1\n15802,lsmdc3086_UGLY_TRUTH-6439,11478,\"Someone sucks in a breath and steps closer, her eyes fixed on his face. She\",\"Someone sucks in a breath and steps closer, her eyes fixed on his face.\",She,gold,brings her lips to his and faces her tenderly.,gives him a pleading look.,lifts her jacket and all edges toward us.,showcases hands with a silver shield.,1\n15803,lsmdc3086_UGLY_TRUTH-6439,11482,\"She gives a bitter smile. As it fades, she\",She gives a bitter smile.,\"As it fades, she\",gold,becomes - - sobbing.,lifts her eyes to his.,lies sleeping beneath the bed.,sits up and clenches her jaw.,1\n15804,lsmdc3086_UGLY_TRUTH-6439,11484,Someone turns his back to her. Someone,Someone turns his back to her.,Someone,gold,shoves straight at the sword of gryffindor.,watches sadly as he strolls down the hallway with his hands in his pockets.,\"wheels toward the door, waiting, the bangs following her, and leaves and comes in with a nice planter.\",fearfully drives the blue engine plaza engulfed in a cloud.,1\n15805,lsmdc3086_UGLY_TRUTH-6439,11479,She gives him a pleading look. Someone,She gives him a pleading look.,Someone,gold,remains by the door.,forces a casual smile.,regards her.,notices someone right below him.,1\n15806,lsmdc3086_UGLY_TRUTH-6439,11487,\"She glances around the spacious suite and finds someone sitting at the edge of the bed, wearing a clean unbuttoned dress shirt. He\",\"She glances around the spacious suite and finds someone sitting at the edge of the bed, wearing a clean unbuttoned dress shirt.\",He,gold,\"stands standing before him from the table, making lid with two black glasses.\",\"hangs off, revealing her panties.\",hands her a glass of champagne.,\"steals around a desk, and moves up from his seat.\",2\n15807,lsmdc3086_UGLY_TRUTH-6439,11485,Someone watches sadly as he strolls down the hallway with his hands in his pockets. She,Someone watches sadly as he strolls down the hallway with his hands in his pockets.,She,gold,\"enters the apartment for a moment, then stands at the back door.\",takes a breath and heads back to her room.,\"is wearing a short waist sleeved shirt, jeans, pants on a brown slip.\",dabs her brow as he reaches for a small jewelry box.,1\n15808,lsmdc3086_UGLY_TRUTH-6439,11489,Someone pours herself another glass. She,Someone pours herself another glass.,She,gold,shows to his board.,turns away with the bottle.,pours her coffee and then goes inside.,leaves rain in the papers.,1\n15809,lsmdc3086_UGLY_TRUTH-6439,11486,She takes a breath and heads back to her room. The yellow hallway lights,She takes a breath and heads back to her room.,The yellow hallway lights,gold,\"turn up, brighter, and pulls face out.\",glow harshly above someone as he hangs his head for a moment.,flash in a bright pink and pink shape.,flash on as someone is on the dance floor.,1\n15810,anetv_BJGACTBaU_Y,7908,A man is seen walking closer to a pinata while a large group of people stand around him. The man,A man is seen walking closer to a pinata while a large group of people stand around him.,The man,gold,continues chasing the ball around a house and looking back to the camera.,continues playing the girls all along the set and ends with the man walking away.,\"misses the pinata and hits a person behind him, shown again in slow motion.\",returns a few of the clips finally with other people standing around in the middle.,2\n15811,anetv_OyV4eki18GE,3134,A baby in a hat is sitting on a chair. A man,A baby in a hat is sitting on a chair.,A man,gold,is holding his camel in front of him.,is holding the baby playing with a ball.,is laying something in the front of a trashcan.,sits on a chair made from a tray.,1\n15812,anetv_bMRx3vSVZUQ,3206,The men gear up on the sides while speaking to the camera and ride around on the water. The people,The men gear up on the sides while speaking to the camera and ride around on the water.,The people,gold,continuously ride past several people while surfing as well as surfing being shown.,grab exercises while people push pucks around the pool.,continue to ride around while others watch on the side.,are shown speaking to the camera while zooming in on a vehicle while speaking to one another.,2\n15813,anetv_FqiMsRnatP0,8437,\"A woman helps a small child to hold a blue rod, while other individuals walk around in the background. The small child\",\"A woman helps a small child to hold a blue rod, while other individuals walk around in the background.\",The small child,gold,begins doing some embroidery at the same time.,hits a pinata with the rod repeatedly.,leads the child onto the floor.,does a gymnastics routine on the monkey bar.,1\n15814,anetv_FqiMsRnatP0,8439,The small child walks to the front of the rod and pushes it. The child,The small child walks to the front of the rod and pushes it.,The child,gold,mows down the sand with it sweeping on the grass.,uses a pointed brush to steady the candy.,looks on and licks from the boy.,walks away as the pinata is lifted off the ground.,3\n15815,anetv_FqiMsRnatP0,8440,The child walks away as the pinata is lifted off the ground. The woman,The child walks away as the pinata is lifted off the ground.,The woman,gold,is seen leaning against the camera.,helps the small child with the rod again.,talks around the chair while the man cuts and does 3 ups.,\"swings the pinata in front of someone, and a replay in her hair appears in slow motion.\",1\n15816,anetv_FqiMsRnatP0,19471,\"After, the toddler hits the pinata several times, and then the toddler inspects the pinata. Next, the pinata is raised and lowered on front the toddler who is afraid, then the woman\",\"After, the toddler hits the pinata several times, and then the toddler inspects the pinata.\",\"Next, the pinata is raised and lowered on front the toddler who is afraid, then the woman\",gold,helps the toddler to hit again the pinata.,watches them go in after.,uses the bat to catch the child.,throws the ball and walks towards the girl.,0\n15817,anetv_O_IrzZbXiCc,6037,The child practices field hockey with obstacles on the ground. The child,The child practices field hockey with obstacles on the ground.,The child,gold,spins across the balance mat.,walks away from the camera.,takes the mallet as a puck pushes through a jungle.,falls off the hubcap for the other hands.,1\n15818,anetv_BQ_BJNFGmTg,7057,A man plays two drums while seated on a carpet. The man,A man plays two drums while seated on a carpet.,The man,gold,stops playing the drums and smiles.,squats out the arms and play on a stick recorder.,plays music on his board while playing with a bow.,bends over to pick the fishes on her hands and holds her on his side.,0\n15819,anetv_BQ_BJNFGmTg,6298,He is playing two drums with his hands in front of him. He,He is playing two drums with his hands in front of him.,He,gold,stops paying and puts his hands down.,is talking in front of the camera.,does n't play them.,looks all the way over and forth between them.,0\n15820,anetv_BQ_BJNFGmTg,6297,A man is sitting down on the floor. He,A man is sitting down on the floor.,He,gold,picks up a knife and throws it at him.,starts playing the drums.,is playing two drums with his hands in front of him.,has blood on his face.,2\n15821,anetv_P3_YQbHXEIs,10629,He is ornately applying an image to a man's shoulder. He,He is ornately applying an image to a man's shoulder.,He,gold,puts the leaves gently on the altar and begins to put the petals on.,continues inking and wiping as he goes.,takes a red rag over his eyes and began putting his shoe on.,\"with red hair is standing at the camera about him he is taking work, and holding the electric razor in front of him.\",1\n15822,anetv_P3_YQbHXEIs,10628,A tattoo artist is wearing gloves and holding a needle. He,A tattoo artist is wearing gloves and holding a needle.,He,gold,is talking about the vacuum.,is using a leaf technique that has cast his hold.,is ornately applying an image to a man's shoulder.,is walking in a gym carrying a pair of letters in the middle.,2\n15823,anetv_P3_YQbHXEIs,3650,A man is seen tattooing the back of a person while the person sits motionless. The artist,A man is seen tattooing the back of a person while the person sits motionless.,The artist,gold,holds the conga up and down.,continues moving back and fourth while pausing and then going back to tattooing.,begins shaving his palms.,wets the hair to show the hand tattoo.,1\n15824,anetv_wJOHmxQZPR4,10394,A woman is seen hosting a news segment speaking to the camera and transitions into a group of men walking in a straight line. The people then perform in front of a large group of people and one performer,A woman is seen hosting a news segment speaking to the camera and transitions into a group of men walking in a straight line.,The people then perform in front of a large group of people and one performer,gold,helps the girl dives and others come out.,kneeling on her wake goes around and gives her two thumbs up.,is interviewed in between.,is running in a bunker filled with people.,2\n15825,lsmdc3041_JUST_GO_WITH_IT-18638,6647,\"Rounding a corner, he breaks into a run. Someone\",\"Rounding a corner, he breaks into a run.\",Someone,gold,opens his eyes bleakly as he punches the air and leaves.,averts his doleful gaze.,jogs back to the elevators and presses the call button.,is filing against the wall with a book idly thrown right in front of him.,2\n15826,lsmdc3041_JUST_GO_WITH_IT-18638,6645,\"Now someone steps off of an elevator and crosses a hallway, with his hand shoved in his pockets. At the end of another hall, he\",\"Now someone steps off of an elevator and crosses a hallway, with his hand shoved in his pockets.\",\"At the end of another hall, he\",gold,watches as a group of students enter him coming through the dining room.,\"turns and crawls toward someone, who is on the stoop promptly.\",reaches the door to his own suite and stops.,turns a corner and turns on a lamp on the top of the vaulted stairs.,2\n15827,lsmdc3041_JUST_GO_WITH_IT-18638,6646,\"At the end of another hall, he reaches the door to his own suite and stops. Rounding a corner, he\",\"At the end of another hall, he reaches the door to his own suite and stops.\",\"Rounding a corner, he\",gold,breaks into a run.,\"sees someone standing in front of him, tossing down the surveillance side wall and grinning.\",stomps on his heels.,takes several huge breaths and stares at him.,0\n15828,lsmdc3041_JUST_GO_WITH_IT-18638,6644,\"As someone walks away, someone slowly shuts the door to her suite. Now someone\",\"As someone walks away, someone slowly shuts the door to her suite.\",Now someone,gold,\"steps off of an elevator and crosses a hallway, with his hand shoved in his pockets.\",stands and someone trails him through a door.,reaches out to sebastian.,runs up the hall in their basement apartment.,0\n15829,lsmdc1027_Les_Miserables-6367,17737,\"Someone sits clutching someone's handkerchief. Standing nearby, someone\",Someone sits clutching someone's handkerchief.,\"Standing nearby, someone\",gold,raises as more weapons on the oils gantry.,wears a fraught serious expression.,forces a smile and spins his left hand back.,faces at the tiger.,1\n15830,lsmdc1027_Les_Miserables-6367,17738,\"Standing nearby, someone wears a fraught serious expression. He\",\"Standing nearby, someone wears a fraught serious expression.\",He,gold,leans in a doorway.,robot genders in the street.,goes off the porch.,glances at his spectacles.,0\n15831,lsmdc3015_CHARLIE_ST_CLOUD-1163,2089,He weakly crawls up to the figure and sees that it's someone. Someone,He weakly crawls up to the figure and sees that it's someone.,Someone,gold,brushes banging on one step.,'s gaze is focused round the sparsely of the world.,\"dives back down someone's carpet, panting some more, and turns towards someone.\",\"hovers over her for a moment, then lies down beside her and feels her pulse.\",3\n15832,lsmdc3015_CHARLIE_ST_CLOUD-1163,2093,\"As he holds her tightly, the picture fades to black. He\",\"As he holds her tightly, the picture fades to black.\",He,gold,\"presses his lips to her forehead, breathing heavily against her.\",pulls away and watches it on his harness.,closes it and shakes her head.,\"stops, thumps his back, and finishes his song.\",0\n15833,lsmdc3015_CHARLIE_ST_CLOUD-1163,2088,\"In a crevice between the rocks, he sees a body. He\",\"In a crevice between the rocks, he sees a body.\",He,gold,picks it off as he continues to run around in the distance.,weakly crawls up to the figure and sees that it's someone.,makes the pranam and begins to close.,comes over to the bed and opens it.,1\n15834,lsmdc3015_CHARLIE_ST_CLOUD-1163,2094,\"He presses his lips to her forehead, breathing heavily against her. Now, the two sleep, a breeze ruffles Tess's hair and jacket and a brilliant light\",\"He presses his lips to her forehead, breathing heavily against her.\",\"Now, the two sleep, a breeze ruffles Tess's hair and jacket and a brilliant light\",gold,shines down on them.,spreads across his face.,shines out of the window.,spreads across the room.,0\n15835,lsmdc3015_CHARLIE_ST_CLOUD-1163,2090,\"Someone hovers over her for a moment, then lies down beside her and feels her pulse. He\",\"Someone hovers over her for a moment, then lies down beside her and feels her pulse.\",He,gold,pushes her jacket open.,brushes her long wet hair.,pushes it from his temple.,pushes back behind him.,0\n15836,lsmdc3015_CHARLIE_ST_CLOUD-1163,2092,\"He tries to open shirt beneath it. Working from inside her jacket, he\",He tries to open shirt beneath it.,\"Working from inside her jacket, he\",gold,wheels his chauffeur - driven limo down a highway.,turns to face the building with his gun drawn.,pulls her limp body toward his and cradles her head in the crook of his other arm.,slides the lid aside using a ruler while someone fires small pieces at his table.,2\n15837,lsmdc3015_CHARLIE_ST_CLOUD-1163,2091,He parts the bib of her wader shirt beneath it. He,He parts the bib of her wader shirt beneath it.,He,gold,crouches over the scar on his back.,tries to open shirt beneath it.,is bbq into the chandelier above her.,walks with the bathroom door making her flannel sweater.,1\n15838,anetv_YZJghuPmff8,5015,A woman holds the back section of a girls hair while she gets ready to style it. The woman,A woman holds the back section of a girls hair while she gets ready to style it.,The woman,gold,uses her hands to bring on a semicircle and she jumps.,\"retrieves the razor, then cuts her fingers and split them to pieces.\",looks up and shows the track at the box with her hands extended.,uses a single pick comb to separate strands of hair.,3\n15839,anetv_YZJghuPmff8,5018,The woman pulls on strands of hairs to get them straightened out. The woman,The woman pulls on strands of hairs to get them straightened out.,The woman,gold,lifts her hair to the side while cleaning off the muscles.,braids them the strands of hair together.,keeps doing so his head is around.,resumes moving and pruning the dryer.,1\n15840,anetv_YZJghuPmff8,5017,The woman clips back sections of hair. The woman,The woman clips back sections of hair.,The woman,gold,pulls on strands of hairs to get them straightened out.,dabs paint under her eyelids.,looks back and brushes the white persons hair in sections of her hair shear brush.,takes the sponge before clipping it with both hands and interviewing other boys as she talks.,0\n15841,anetv_YZJghuPmff8,5016,The woman uses a single pick comb to separate strands of hair. The woman,The woman uses a single pick comb to separate strands of hair.,The woman,gold,lets the ends of the braid talk.,\"puts the brush in her hair, then puts it back.\",appears with the baby in shadow.,clips back sections of hair.,3\n15842,anetv_QlTddnlIJpA,9536,\"A nice and lush field is shown and in the distance, a young man on a horse comes into the frame. The field is shown again and the same man\",\"A nice and lush field is shown and in the distance, a young man on a horse comes into the frame.\",The field is shown again and the same man,gold,steps to the table to be seen.,rides up on a different horse.,attempts to fall in slow motion.,stops to speak to the camera while continuing to talk.,1\n15843,anetv_QlTddnlIJpA,15637,He rides in on several clips on the horse mocing closer to the camera. He,He rides in on several clips on the horse mocing closer to the camera.,He,gold,continues riding in one more time on the horse.,makes leg work on string shots and shows how to sharpen.,'s band walks back to forth in the cement bars in the middle of the stage.,continues playing as he moves in the water as he tries to stay on the surface.,0\n15844,anetv_QlTddnlIJpA,9537,The field is shown again and the same man rides up on a different horse. The field,The field is shown again and the same man rides up on a different horse.,The field,gold,is shown again several times.,is shown again several times and is shown again in last.,being packed with more bushes are shown.,is then shown again with the same man riding up on yet another horse.,3\n15845,anetv_2gc5VDx2xY8,17645,He swings the tassel in the air a few times and throws it catching the cow and then tying him down. There is an audience in the stands watching the man do this and there,He swings the tassel in the air a few times and throws it catching the cow and then tying him down.,There is an audience in the stands watching the man do this and there,gold,is a picture in it.,is a man named beiber.,is so pride of him that he knows he was never caught his eye as they read.,is another man on a different horse at the side waiting.,3\n15846,anetv_DzdNjXensv0,15823,People walk by looking at all the wares. A dog,People walk by looking at all the wares.,A dog,gold,runs for the door and the dog chases after it.,\"appears, as people continue to bustle.\",practice between people and women in activities as they rags through rags.,\"staggers back laughing, as a boy flies and rushes in the alleyway.\",1\n15847,anetv_bH7ORYDcI7A,9880,The trainer continuously throws the Frisbee and dog jumps high up and grabs the Frisbee every time. There,The trainer continuously throws the Frisbee and dog jumps high up and grabs the Frisbee every time.,There,gold,from the crowd is shown.,the dog bumps the mouse.,are several different trainers shown training and teaching their dogs tricks.,\", the dog chases and pets the dog.\",2\n15848,anetv_bH7ORYDcI7A,9877,Then main door then opens and the dog steps back. There,Then main door then opens and the dog steps back.,There,gold,are the cascade into the buckets.,\", someone closes the door behind her.\",are two dog trainers in an enclosed room training a dog to jump and catch several frisbee.,is let down and she runs to the bottom of the stairs.,2\n15849,anetv_bH7ORYDcI7A,9879,The male trainer throws the Frisbee at the dog and the dog jumps and fetches it for him. The trainer continuously throws the Frisbee and dog jumps high up and,The male trainer throws the Frisbee at the dog and the dog jumps and fetches it for him.,The trainer continuously throws the Frisbee and dog jumps high up and,gold,catches it 2 handfuls.,a calf begins flying in the air.,grabs the frisbee every time.,lands on the track to hit it back.,2\n15850,anetv_bH7ORYDcI7A,9878,There are two dog trainers in an enclosed room training a dog to jump and catch several Frisbee. the male trainer throws the Frisbee at the dog and the dog,There are two dog trainers in an enclosed room training a dog to jump and catch several Frisbee.,the male trainer throws the Frisbee at the dog and the dog,gold,walks back across the lawn with the dogs.,is flying over the dog.,continues to leave the rod chases the ball.,jumps and fetches it for him.,3\n15851,lsmdc3026_FRIENDS_WITH_BENEFITS-1294,4803,Someone watches someone lip sync every word. Someone,Someone watches someone lip sync every word.,Someone,gold,strides onward through the hallway farther aisle of the keypad.,drops the flowers and kisses someone.,pushes his poker into the empty lot.,drift back into the alcove with a licked affirming gum.,1\n15852,anetv_iiQ6t0p9lik,1095,\"At one point, he is holding a camera while falling in. He also\",\"At one point, he is holding a camera while falling in.\",He also,gold,\"attempts to stand with one leg on the rope, as well as balancing.\",holds up the harmonica and starts to play play of it.,\"flips, crashing and spinning on the runway.\",shows how to reach jumps and hooping on water quickly.,0\n15853,anetv_iiQ6t0p9lik,1096,\"He also attempts to stand with one leg on the rope, as well as balancing. The video\",\"He also attempts to stand with one leg on the rope, as well as balancing.\",The video,gold,ends with the man painting the bottom all the way to the end.,ends showing him in a final fall into a tube.,mounts as he criss and moves back towards the camera.,continues doing the boy in the top while several more people are shown watching him perform.,1\n15854,anetv_iiQ6t0p9lik,1094,\"The video shows several clips of the man falling. At one point, he\",The video shows several clips of the man falling.,\"At one point, he\",gold,is holding a camera while falling in.,starts running on the field is shown again.,stands at the end of a line.,kneels his hammer on the ground.,0\n15855,anetv_iiQ6t0p9lik,1092,\"The last time she falls, the camera rewinds and shows her falling backwards. The video then\",\"The last time she falls, the camera rewinds and shows her falling backwards.\",The video then,gold,cuts to a man who is also using a tight rope to cross a pool.,has a roller time and she changes with the final spray of the video she boston each time.,\"shows several series of skateboarders racing in the sky, followed by her performance and more shots of her riding the horses in a disappearing\",hits and 1 with the curls and her eyes hanging on her windshield.,0\n15856,anetv_iiQ6t0p9lik,1093,The video then cuts to a man who is also using a tight rope to cross a pool. The video,The video then cuts to a man who is also using a tight rope to cross a pool.,The video,gold,ends with the ending appears and the screen changes again.,\"ends with a large blue podium showing hips ruffled in an air, then against the top back the row behind the hedge.\",ends to the man picking up an instrument and begins riding his skis to it.,shows several clips of the man falling.,3\n15857,anetv_-4VuHlphgL4,8989,\"A man is standing behind a couch, wearing a protective head covering. He\",\"A man is standing behind a couch, wearing a protective head covering.\",He,gold,is talking to the person in front of a high wall.,lifts a large barbell up to his chest.,\"is covering a couch with plastic, and tapes it in place.\",takes off his gloves and is showing how to properly hold the shoes.,2\n15858,anetv_-4VuHlphgL4,8990,\"He is covering a couch with plastic, and tapes it in place. He\",\"He is covering a couch with plastic, and tapes it in place.\",He,gold,pushes it back to the chair and then looks at something on the floor.,speaks to the camera about what he did a little longer.,\"uncovers someone, who grabs the lens case then grabs someone's hand.\",puts a cigarette in his mouth as he spits it out with another glass of beer.,1\n15859,anetv_ZH8hnmjRDsI,4972,A colorful towel is next to many small sand castles. The boy,A colorful towel is next to many small sand castles.,The boy,gold,continues to play in the sand.,rubs under a blue tub with white.,uses a gel comb along the hair.,brushes out the bottom and race it off.,0\n15860,anetv_ZH8hnmjRDsI,4970,A yellow plane is flying in the sky. A boy,A yellow plane is flying in the sky.,A boy,gold,is sitting on the sand of a beach.,throws her back onto the water.,is flying on a kite.,is shown riding and land on a kite.,0\n15861,anetv_ZH8hnmjRDsI,2318,A yellow helicopter is flying in a clear blue sky over the beach. A small toddler then,A yellow helicopter is flying in a clear blue sky over the beach.,A small toddler then,gold,falls from the board back onto a running board behind the car.,zooms in on a young boy who is surfing at the docks.,goes into higher courts.,appears in the dirt playing with his shovel and bucket making a circle of sand castles.,3\n15862,anetv_ZH8hnmjRDsI,4971,A boy is sitting on the sand of a beach. A colorful towel,A boy is sitting on the sand of a beach.,A colorful towel,gold,is sitting on the beach in front of him.,is next to many small sand castles.,shows him near a tent on a wooden board.,washes around a beach.,1\n15863,lsmdc0012_Get_Shorty-53427,4438,Someone stares at the phone. He,Someone stares at the phone.,He,gold,\"sits there a moment, also staring at the phone.\",holds it in her hand.,slips past every office and office.,pretends to scratch the cast.,0\n15864,anetv_KEJP4Uxa5m0,16926,A red ball hits a yellow ball in front of a woman. She,A red ball hits a yellow ball in front of a woman.,She,gold,is shown practicing with a hoop around it.,dives into several pool and also falls into a pool.,is talking as she is engaged in a game of croquette.,stands and shoots an appliance in the distance.,2\n15865,anetv_KEJP4Uxa5m0,16927,She is talking as she is engaged in a game of croquette. She,She is talking as she is engaged in a game of croquette.,She,gold,moves back and forth over the net and on a fishing board.,\"shows the different angles, moves, and positions for playing the game as she plays with another woman.\",does it and then leaves the wooden posts.,is using the hairstyle perfectly with a plastic cake rack.,1\n15866,anetv_KEJP4Uxa5m0,606,She hits a ball with a stick. A man in a red shirt,She hits a ball with a stick.,A man in a red shirt,gold,tosses it through the air.,swings a bat at a pinata.,is standing next to her.,talks to a camera.,2\n15867,anetv_KEJP4Uxa5m0,605,A woman is kneeling down onto the grass. She,A woman is kneeling down onto the grass.,She,gold,turns around the tub and has a close shot.,begins to show on the horse.,begins throwing darts on a board.,hits a ball with a stick.,3\n15868,lsmdc0008_Fargo-49884,3404,\"She has her hands tied behind her and a black hood over her head. With a cry, she\",She has her hands tied behind her and a black hood over her head.,\"With a cry, she\",gold,swings her elbow out of someone's grasp and lurches away across the front lawn.,runs into her bathroom.,works her way up the side of the building as the camera lifts.,turns the nozzle in the can and sets the bottle on top.,0\n15869,lsmdc0008_Fargo-49884,3400,It is a lakeside cabin surrounded by white. A brown Ciera with dealer plates,It is a lakeside cabin surrounded by white.,A brown Ciera with dealer plates,gold,is pulling into the drive.,\"are posted in the center aisle, and the tiny woman strides away from the cloister.\",\"follow for to the bank, which has flashlights close for a deposit box.\",blink from the last go of the reporters' throw.,0\n15870,lsmdc0008_Fargo-49884,3401,A brown Ciera with dealer plates is pulling into the drive. Someone,A brown Ciera with dealer plates is pulling into the drive.,Someone,gold,sits strolling the middle of the street.,comes by a large helicopter.,climbs out of the passenger seat as someone climbs out of the driver's.,\"turns to someone, causing surprised.\",2\n15871,lsmdc0008_Fargo-49884,3403,\"Someone opens the back door and, with an arm on her elbow, helps someone out. She\",\"Someone opens the back door and, with an arm on her elbow, helps someone out.\",She,gold,\"opens her window, then peers out in.\",watches as the apartment lies down on the bed so it is dark.,has her hands tied behind her and a black hood over her head.,takes off her sunglasses and takes a seat in the evening rain.,2\n15872,lsmdc0008_Fargo-49884,3402,Someone climbs out of the passenger seat as someone climbs out of the driver's. Someone,Someone climbs out of the passenger seat as someone climbs out of the driver's.,Someone,gold,\"opens the back door and, with an arm on her elbow, helps someone out.\",parks someone in a booth where someone stands at the bar.,turns on the car engine.,falls to a halt.,0\n15873,anetv_fUivipdikFU,14842,They are being led by an instructor. They,They are being led by an instructor.,They,gold,are doing zumba dances using steppers.,use a wooden platform for a passing video.,beat the cymbals from dancing.,paddle through the crowd.,0\n15874,anetv_fUivipdikFU,14841,A group of women are gathered in an indoor gym. They,A group of women are gathered in an indoor gym.,They,gold,are being led by an instructor.,\"are practicing kicking, punching and punching.\",take turns and begin practicing in different venues.,are engaged in a game of curling.,0\n15875,lsmdc1006_Slumdog_Millionaire-74069,16735,He looks at himself in the mirror and sighs. He,He looks at himself in the mirror and sighs.,He,gold,\"takes the coat, starts to put on a tv.\",notices at the bottom of the mirror the letter b has been written in the condensation.,raises his hand and swaps a stoic look with someone's food.,takes off his glasses and eyes them out for the lobby.,1\n15876,lsmdc1006_Slumdog_Millionaire-74069,16739,\"With a sly look, the host sees someone being led in by staff. Someone\",\"With a sly look, the host sees someone being led in by staff.\",Someone,gold,\", someone tries to sneak out to the bar as the attendant shuffles to a rope and joins the another.\",sits back in his chair and stares at the host.,grabs someone's alien arm and drags her down the hallway.,at the table spills an essay.,1\n15877,lsmdc1006_Slumdog_Millionaire-74069,16734,Someone exits the cubiclal and approaches the sink to wash his hands. He,Someone exits the cubiclal and approaches the sink to wash his hands.,He,gold,\"applies the line the store, shows him someone the address for the location.\",looks at himself in the mirror and sighs.,\"looks behind them, he frowns, his dead reflection in the water, looking around.\",browses some clothing and notices a reflection inside.,1\n15878,lsmdc1006_Slumdog_Millionaire-74069,16736,He notices at the bottom of the mirror the letter b has been written in the condensation. His jaw,He notices at the bottom of the mirror the letter b has been written in the condensation.,His jaw,gold,hovers for a moment as he switches to staring off into the distance.,trembling as he shakes hands with in the process.,drops as he looks through the door.,clenches as if in martial of himself.,2\n15879,anetv_VE9MAMmF1wc,5140,She steps up with another man on a platform while they smile and wave to the camera. The men,She steps up with another man on a platform while they smile and wave to the camera.,The men,gold,leave his room for another room.,demonstrate tennis with one foot then the other.,walk away from a door and begin with a person down on the sides.,push her off the side as she slides down the rope and the man waves.,3\n15880,anetv_VE9MAMmF1wc,1151,\"The woman sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera. Two men\",\"The woman sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera.\",Two men,gold,\"are capturing their body while standing at the edge of the diving board, performing stunts in a very short row.\",strap her in some more while she stands at the end of the jump off point and a spectator on the side watches.,are in the middle of a lake forcing a handshake and people diving in the water.,are shown performing a slow routine with a table with three gentlemen standing forward together.,1\n15881,anetv_VE9MAMmF1wc,1150,A woman prepares and finally bungee jumps over a paved ground with an inflated landing pod beneath her. The woman,A woman prepares and finally bungee jumps over a paved ground with an inflated landing pod beneath her.,The woman,gold,walks on the side of the ship with a sailor and uses a small flag at the railing at the end of the board.,\"sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera.\",\"climbs a long railing, and continues to ski down the slope until us.\",continues to tie the rope on her hips as the teammates saddle up in the abdomen.,1\n15882,anetv_VE9MAMmF1wc,5139,A close up of paper is seen followed by a woman speaking to the camera. She,A close up of paper is seen followed by a woman speaking to the camera.,She,gold,zooms in on a video of instructs followed by people looking at the camera.,steps up with another man on a platform while they smile and wave to the camera.,puts an iron on her leg and ties it up.,wearing a flower box stand in stretch down and presenting them.,1\n15883,lsmdc1046_Australia-90443,1332,\"She stomps furiously towards the house, as someone approaches a blazing funeral fire. He\",\"She stomps furiously towards the house, as someone approaches a blazing funeral fire.\",He,gold,\"sits under the high porch, strapped to an elven cage.\",\"leaps from the tree and judges civilian regards him with a coy smile, then moves away from their students.\",red just washed from the room.,examines it thoughtfully and looks around.,3\n15884,lsmdc1046_Australia-90443,1333,He examines it thoughtfully and looks around. The boy,He examines it thoughtfully and looks around.,The boy,gold,moves his bike around a neat flip while moving at a nearby board.,stretches out his hands.,\"takes it and glances at it, then holds his cape up inside the maroon highway.\",\"snatches the thermos, turns it over.\",1\n15885,lsmdc1046_Australia-90443,1336,\"She eyes the man, her hand poised near someone's face. The house\",\"She eyes the man, her hand poised near someone's face.\",The house,gold,\"is shrouded in a cloud of dust and smoke, its a big blaze but tiny in the vast landscape.\",\"rises up to rip off her hair, causing her to look up from the fallen tree.\",comes back to life.,\"is full of wild, rotting belligerent not bad.\",0\n15886,lsmdc1046_Australia-90443,1330,\"Someone, shrouded in smoke, walks past a dead cow. Someone, jaw set,\",\"Someone, shrouded in smoke, walks past a dead cow.\",\"Someone, jaw set,\",gold,steps out at the air frisks.,watches as someone fetches some from the scarf bag.,gets out of the truck.,hurries along the forest street.,2\n15887,lsmdc1046_Australia-90443,1329,Someone sits uncomfortably next to the drunk someone. The smoke,Someone sits uncomfortably next to the drunk someone.,The smoke,gold,gets out of the house.,shows a close up of a bird flying through the air and sails around its perimeter.,snaps to him as he plays the drums.,\"clears, revealing a large house.\",3\n15888,lsmdc1046_Australia-90443,1324,\"The boy runs through the gate to the house, and leaps over a fence. They just\",\"The boy runs through the gate to the house, and leaps over a fence.\",They just,gold,\"run back down the steps, shuffling back and forth across the street as they on their drawn.\",\"miss the horse, which rears up.\",separate ways to sell shoes.,\"meet in another part of the school, barred pass between two people.\",1\n15889,lsmdc1046_Australia-90443,1327,Someone walks through the smoke. The boy,Someone walks through the smoke.,The boy,gold,drops down inside the tower.,can near someone and cut out and smack himself.,wears a green blazer showing up outside the room full of monitors.,\"looks up, sees someone, looks from someone to the other, and is quite populated.\",0\n15890,lsmdc1046_Australia-90443,1335,\"She stares at the Chinese man and reaches out to close someone's eyes, but a man's hand does it for her. She eyes the man, her hand\",\"She stares at the Chinese man and reaches out to close someone's eyes, but a man's hand does it for her.\",\"She eyes the man, her hand\",gold,retracts under her arm - another monk pulls the ball between her fingers.,extends across her bony fingers.,\"longer tearful and awkwardly sways as if to speak, laughing.\",poised near someone's face.,3\n15891,lsmdc1046_Australia-90443,1325,\"Thick smoke obscures the house. As he loads, the boy\",Thick smoke obscures the house.,\"As he loads, the boy\",gold,climbs into the water tower.,nuzzles children looking at the floor.,leaves the hedge with the tree surrounding him.,takes out the rifle.,0\n15892,lsmdc1046_Australia-90443,1328,The boy drops down inside the tower. Someone,The boy drops down inside the tower.,Someone,gold,turns as someone finds the circus gathered in their tent.,kicks the hammer back apart.,\"holds up a flash, red sweater.\",sits uncomfortably next to the drunk someone.,3\n15893,lsmdc1046_Australia-90443,1326,\"As he loads, the boy climbs into the water tower. Someone\",\"As he loads, the boy climbs into the water tower.\",Someone,gold,river also works on the ruined roof.,leaps up a flight of steps to his feet from the student's deck.,walks through the smoke.,walks up before him.,2\n15894,lsmdc1046_Australia-90443,1331,\"Someone, jaw set, gets out of the truck. She\",\"Someone, jaw set, gets out of the truck.\",She,gold,\"stomps furiously towards the house, as someone approaches a blazing funeral fire.\",\"smiles to him, strides through the room.\",closes the car door filming him.,removes a pair of black leather pants.,0\n15895,lsmdc1027_Les_Miserables-6286,4575,A red flag is thrown to someone. Someone,A red flag is thrown to someone.,Someone,gold,stands then reach the deck.,climbs onto the top of the barricade and waves the flag.,watches her nightie disappear into the balcony.,\"and someone gather behind the barricade for someone, knocking him down on the floor.\",1\n15896,anetv_YNQphOFqDOA,15968,A man is seen standing inside an empty room. He,A man is seen standing inside an empty room.,He,gold,runs around and then walks backwards into a room.,\"looks at himself in the mirror, then engages in a fight.\",starts up and goes down a slide.,puts on his mask and begins pushing them in.,1\n15897,anetv_YNQphOFqDOA,17805,A person is trapped in a room. A news woman,A person is trapped in a room.,A news woman,gold,is screaming while holding a hookah.,lies next to them watching them.,is shown with unseen sharpening fighting.,speaks about the new movie.,3\n15898,anetv_YNQphOFqDOA,15969,\"He looks at himself in the mirror, then engages in a fight. The preview\",\"He looks at himself in the mirror, then engages in a fight.\",The preview,gold,shake hands with the catch.,reflected against a casket liner which lead into a vehicle left.,\"hangs on the counter, bowing to the vampire.\",is for a movie.,3\n15899,lsmdc0051_Men_in_black-70953,10755,Someone looks into the gallery. Most obvious in the frozen tableau of creatures,Someone looks into the gallery.,Most obvious in the frozen tableau of creatures,gold,\"is a lunging, snarling beast, which has three bullet holes in its chest.\",appear in front of them.,appear on the screen.,staring up from under him.,0\n15900,anetv__7XW-BFK_ZY,19244,A man is in a field with a dog with the words Practicamos Disc Dog on the screen. The man offers the dog the disc and he,A man is in a field with a dog with the words Practicamos Disc Dog on the screen.,The man offers the dog the disc and he,gold,is right with the frisbees.,puts it in him.,wraps it around it's neck.,performs a trick with it.,3\n15901,anetv__7XW-BFK_ZY,12581,A man sits with his dog in the grass and holds out discs in his hands. The man,A man sits with his dog in the grass and holds out discs in his hands.,The man,gold,\"focuses his face away, wipes his face then pulls a petite out of a long hair and begins cutting the boy's hair.\",balances his dog on his feet then throws frisbee discs for him.,looks on the ending pair.,\"bounces from the edge of the hose, uses it to move right up pretending to shake the body.\",1\n15902,anetv__7XW-BFK_ZY,12582,The man balances his dog on his feet then throws Frisbee discs for him. The man,The man balances his dog on his feet then throws Frisbee discs for him.,The man,gold,spins his dog and holds it in his arms.,places an garland on front of a fly on a board and sticks it in his mouth.,climbs down a lane and attacks the string.,jumps off the wall affectionately.,0\n15903,anetv__7XW-BFK_ZY,19245,The man offers the dog the disc and he performs a trick with it. Several people,The man offers the dog the disc and he performs a trick with it.,Several people,gold,are at the park with their dogs too and also perform.,catch the frisbee and throw it all the way back towards the man.,keep hold of the leash and are also doing tricks in the water.,sit before a room that show one patiently waits for a switch.,0\n15904,anetv__7XW-BFK_ZY,12584,A woman throws discs to her dog that jumps from her back. The woman,A woman throws discs to her dog that jumps from her back.,The woman,gold,throws multiple discs in a row for her dog to catch.,\"picks on her boots, picks up her dog and ties them up.\",spits the blue liquid in the sink.,explains before she hits a clip back and forth.,0\n15905,anetv__7XW-BFK_ZY,12583,The man spins his dog and holds it in his arms. A woman,The man spins his dog and holds it in his arms.,A woman,gold,\"plays with a dog in a room, while woman also performs hip hop kicks.\",grabs a man by the scruff and spins him around while holding his back in his hand.,throws discs to her dog that jumps from her back.,stands with a frisbee in his hand and another man with a hat on it.,2\n15906,anetv__7XW-BFK_ZY,12580,Different trainers throw Frisbee discs for the dogs to catch while performing tricks. A man,Different trainers throw Frisbee discs for the dogs to catch while performing tricks.,A man,gold,jumps over teens stand in a park with a man and their dogs.,finish the second frisbee.,sits with his dog in the grass and holds out discs in his hands.,runs and throws a frisbee around the dog while the dog catches the frisbee.,2\n15907,anetv_asWvAGhlbdQ,3446,He then glides the knife along the boxes and shows off the sharpened knife to the camera. He,He then glides the knife along the boxes and shows off the sharpened knife to the camera.,He,gold,decorates the thin ribbon on him and continues to cut his pie.,ends by holding the knife and smiling to the camera.,removes all the excess wood and attaches it astride the wood and eating the area.,shows someone how to use tape.,1\n15908,anetv_asWvAGhlbdQ,3445,A man is seen holding a sharp knife in his hands while the camera zooms in and the man points to two boxes. He then,A man is seen holding a sharp knife in his hands while the camera zooms in and the man points to two boxes.,He then,gold,shows off that shoe followed with a bucket and demonstrates how to make it to the camera.,picks up two slices and puts them in a plate with the one one in.,adds vegetables and trims the length of the knife together.,glides the knife along the boxes and shows off the sharpened knife to the camera.,3\n15909,anetv_gwpQuO5DPOA,6310,He is wearing a mask and welding something. He,He is wearing a mask and welding something.,He,gold,is leaning on snowy's.,uses a rod to apply a blade across the paint.,sets base supplies in a beautiful match.,stops welding and starts welding the back of it.,3\n15910,anetv_gwpQuO5DPOA,6309,A man in a brown shirt is standing in a room. He,A man in a brown shirt is standing in a room.,He,gold,is sitting on a chair in front of the camera.,begins running into a pole moving an ax the length of a pole.,is wearing a mask and welding something.,is dribbling a ball and throws a hit.,2\n15911,anetv_gwpQuO5DPOA,15377,A man is standing over a piece of large metal. the man,A man is standing over a piece of large metal.,the man,gold,begins welding pieces of metal together.,speaks to the camera side about about climbing science.,adds a wet towel carefully to the excess and even it stuff in the paint.,picks up the log and throws it back down.,0\n15912,anetv_gwpQuO5DPOA,15378,The man begins welding pieces of metal together. the man then,The man begins welding pieces of metal together.,the man then,gold,holds a thermos where he arc lights is displayed.,demonstrates the jack used to volley the machine in a box.,\"completes shaves and secures the iron in both hands, then starts welding again.\",adjusts his angle and continues welding.,3\n15913,lsmdc0010_Frau_Ohne_Gewissen-51617,17536,At last he remembers to replace the horn. Someone,At last he remembers to replace the horn.,Someone,gold,pulls off his jacket then glances up at him as he pulls away.,comes out of the kitchen.,has just come out of someone 'office.,comes off of the bank with one arm now serving from the fetal position.,2\n15914,lsmdc0010_Frau_Ohne_Gewissen-51617,17537,Someone has just come out of someone 'office. He,Someone has just come out of someone 'office.,He,gold,\"walks slowly back towards the reception room entrance, then stands there looking out through the glass doors.\",sits up in bed and dials at the phone.,\"is looking up at the general, the light toward the head.\",\"notices and looks over, wiping up the park.\",0\n15915,lsmdc0010_Frau_Ohne_Gewissen-51617,17535,\"The cylinder goes on revolving, but no more voice comes - - only the whir of the needle on the empty record. At last he\",\"The cylinder goes on revolving, but no more voice comes - - only the whir of the needle on the empty record.\",At last he,gold,remembers to replace the horn.,\"darts through a window, revealing someone watching periodically on its own avenue.\",hears voices and looks.,looks back at them.,0\n15916,lsmdc0010_Frau_Ohne_Gewissen-51617,17538,\"He moves as if to go out, then stops rigidly as his face lights up with excitement of a sudden idea. He\",\"He moves as if to go out, then stops rigidly as his face lights up with excitement of a sudden idea.\",He,gold,\"drags her away as he just stands there, waiting to let go of it.\",\"truly anger he sees the people in the corridor leave him as if they try to hit someone, who he keeps them reacting to\",reaches inside his pocket and carefully stack up books.,turns quickly and walks on to his own office and enters.,3\n15917,lsmdc0010_Frau_Ohne_Gewissen-51617,17539,He turns quickly and walks on to his own office and enters. Someone,He turns quickly and walks on to his own office and enters.,Someone,gold,\"scrutinizes his photo of others, peeking in over his son.\",\"walks across to his desk, lifts the telephone and dials a number.\",runs up on him and follows him closely by himself.,take a slow flip.,1\n15918,lsmdc0026_The_Big_Fish-62531,17662,He sits up to find. He,He sits up to find.,He,gold,\"rests it on someone's shoulder, then goes inside.\",\"crouches once more, and pulls a lantern across the goat.\",clutches his finger into his mouth and presses together on the eager line.,\"smiles, then pulls his knees up, making room for her in the tub.\",3\n15919,lsmdc0026_The_Big_Fish-62531,17664,\"Her dress is soaked, but she does n't mind. When they separate, she\",\"Her dress is soaked, but she does n't mind.\",\"When they separate, she\",gold,has tears hanging in her eyes.,does it the other way again.,finds someone at the tutor.,takes it to her hip and lights it.,0\n15920,lsmdc0026_The_Big_Fish-62531,17665,\"Perched awkwardly on a canoe, someone's made it through another file cabinet. He\",\"Perched awkwardly on a canoe, someone's made it through another file cabinet.\",He,gold,thrusts a green and blue hard.,\"goes through the folders page by page, but usually ends up tossing the whole thing in the trash.\",gives the other a curt look.,counts it with a fishing hook.,1\n15921,lsmdc0026_The_Big_Fish-62531,17663,\"He smiles, then pulls his knees up, making room for her in the tub. Someone\",\"He smiles, then pulls his knees up, making room for her in the tub.\",Someone,gold,pretends to kennel a zebra.,\"steps out of her sandals and climbs into the tub, facing him.\",backs out of a stall and crawls toward her.,gives him a bow as well.,1\n15922,lsmdc0026_The_Big_Fish-62531,17658,Norther leans in the driver's side window. Someone,Norther leans in the driver's side window.,Someone,gold,\"a hundred, command plates stands in the back of his hustling with another kind of union soldiers.\",stands in front of the gathering school.,takes a seat and sits on top of someone.,\"looks over at norther, the reality sinking in.\",3\n15923,lsmdc0026_The_Big_Fish-62531,17666,\"He goes through the folders page by page, but usually ends up tossing the whole thing in the trash. He\",\"He goes through the folders page by page, but usually ends up tossing the whole thing in the trash.\",He,gold,watch also more photos of the attack laying down and scanning the screen one more time.,is nothing he's not looking at.,hangs at the bottom and can wear it for some minutes.,is about to toss a file when he stops.,3\n15924,lsmdc0026_The_Big_Fish-62531,17659,\"Someone looks over at Norther, the reality sinking in. The two men\",\"Someone looks over at Norther, the reality sinking in.\",The two men,gold,bow their heads and stare.,share uneasy looks as he speaks and sings.,\"continue to sit opposite each other, unnerving her.\",wave at each other as someone drives off.,3\n15925,lsmdc0026_The_Big_Fish-62531,17661,\"We reveal the Bloom house, the nicest one in the neighborhood. Bubbles\",\"We reveal the Bloom house, the nicest one in the neighborhood.\",Bubbles,gold,\", someone sits on the stove, staring back and forth in the baby's seat.\",and someone approach the office building.,'s words douse the acolytes.,\"rise from his nose for a few beats, then stop.\",3\n15926,lsmdc0026_The_Big_Fish-62531,17660,\"At the last moment, Norther calls out. Someone\",\"At the last moment, Norther calls out.\",Someone,gold,is watering the garden.,\"dabs the bouquet, kissing her hand.\",throws a rag on the floor.,points the van in front of him.,0\n15927,lsmdc0033_Amadeus-67082,5826,Someone and her son alight with other passengers. Postillions,Someone and her son alight with other passengers.,Postillions,gold,gather at her aid.,studies her to meet someone without emotion.,rushes over to the lifeboat and holds the train.,attend to the horses.,3\n15928,lsmdc0033_Amadeus-67082,5827,Postillions attend to the horses. She,Postillions attend to the horses.,She,gold,gives him a lobster.,takes her boy's hand.,knocks a matching swatter from a shelf and runs for it.,looks up at the collapsible.,1\n15929,anetv_RVZprJDJz1U,733,The chemical is captured displayed on the sit of the wooden chair. The person,The chemical is captured displayed on the sit of the wooden chair.,The person,gold,puts on a coat shine and crosses to a wax board next to the wax.,sprays chemical on a cotton pads and whips the wooden chair.,holds all the window defensive tool to scrape storage things out.,places the wand along on a circular metal top across the tile.,1\n15930,anetv_RVZprJDJz1U,724,The sponsors and description of a chemical product is displayed as an introduction. Water from a garden hose,The sponsors and description of a chemical product is displayed as an introduction.,Water from a garden hose,gold,\"appears, as a person prepares to take hot water by a hose.\",displayed around the canvas of another cutting being set indoors.,is sprayed on a wooden chair.,is placed on the steps of a washing machine in a narrow alley.,2\n15931,anetv_RVZprJDJz1U,729,The chemical is placed at the sit of the wooden chair. The person,The chemical is placed at the sit of the wooden chair.,The person,gold,scrubs the wooden chair with a brush.,is then painting the black of the red.,put a coating down on the wall.,adjusts his own machine on the floor.,0\n15932,anetv_RVZprJDJz1U,730,The person scrubs the wooden chair with a brush. The person,The person scrubs the wooden chair with a brush.,The person,gold,steps in with the brushed and then the camera legs again.,cleans the windows on a pile of carpet in the kitchen.,washes the orange and generator on the sink.,shows the brush bristles now browned.,3\n15933,anetv_RVZprJDJz1U,734,The person sprays chemical on a cotton pads and whips the wooden chair. The chair,The person sprays chemical on a cotton pads and whips the wooden chair.,The chair,gold,is replaced by the text.,is left to dry.,pans to reveal the top of the pile of blackjack envelops with tools and two.,wears a pair of black boots and starts ice cream laying on a dresser.,1\n15934,anetv_RVZprJDJz1U,731,The person shows the brush bristles now browned. The person,The person shows the brush bristles now browned.,The person,gold,talks some more and next to the end.,rinses the wooden chair with the garden hose.,puts the tool in the end to make the dry.,squeezes the back juices by a square surface.,1\n15935,anetv_RVZprJDJz1U,727,The person rubs his hand on the wooden chair. The person,The person rubs his hand on the wooden chair.,The person,gold,reveals their palm is covered with dirt from the chair.,covers the large stable with his foot.,uses a knife on the piece of debris.,moves the shoe over and rubs the back of his head.,0\n15936,anetv_RVZprJDJz1U,726,The chemical product in a white bottle is sprayed on the wooden chair. The person,The chemical product in a white bottle is sprayed on the wooden chair.,The person,gold,lays the cloth onto the clean car and dries it with a rag.,rubs his hand on the wooden chair.,projects the individual's nails and then clean iron on the paintbrush.,individual puts paper and legs on a metal table.,1\n15937,anetv_RVZprJDJz1U,725,Water from a garden hose is sprayed on a wooden chair. The chemical product in a white bottle,Water from a garden hose is sprayed on a wooden chair.,The chemical product in a white bottle,gold,stands and screws up to the bottom and squeezes at a window handle.,is sprayed on the wooden chair.,is visible and show how to wash it.,smiles at the aloud middle - millennium evidence.,1\n15938,anetv_RVZprJDJz1U,7133,The person holds up a product and wipes their hands on the dirty chair. He,The person holds up a product and wipes their hands on the dirty chair.,He,gold,wipes down the shots and begins shoveling snow and putting on the shoes.,\"is smeared as the lady talks to the camera again, wet again.\",rubs down the chair with a rag as well as with a hose.,then puts the rag back in and sprays her rinse.,2\n15939,anetv_RVZprJDJz1U,732,The person rinses the wooden chair with the garden hose. The chemical,The person rinses the wooden chair with the garden hose.,The chemical,gold,is able in order in minutes.,starts to turn him off.,uses the vacuum to blow the carpet.,is captured displayed on the sit of the wooden chair.,3\n15940,anetv_7pcnWE7jpQY,9705,The first few attempts are good. The final attempt,The first few attempts are good.,The final attempt,gold,is shown and then a cup.,is at least ten ladies to raise their medals so happy to be over.,is not ever achieved.,goes down some five seconds.,2\n15941,lsmdc1027_Les_Miserables-6067,5069,Her hand is placed in a man's. He,Her hand is placed in a man's.,He,gold,drives it with her.,squints up at her.,is wearing a captain's hat.,rises to land on top of her.,2\n15942,anetv_GRGBMJG1Koc,4724,A man is seen kneeling over some equipment in the sand. More kites,A man is seen kneeling over some equipment in the sand.,More kites,gold,are shown for him all before the camera pans out to show the hosts speaking.,are seen blowing around the kite as well as jumping down and down.,are shown moving around on the bench as well as pulling them along.,\"fly as people watch the varied styles of kite, including one kite shaped like a dog.\",3\n15943,anetv_GRGBMJG1Koc,4723,\"Several kites fly in the air, in a bright blue sky, over a sandy area. A man\",\"Several kites fly in the air, in a bright blue sky, over a sandy area.\",A man,gold,is shown floating in a sand pit with him attached by his surfboard.,is talking to the camera outside a forest.,is seen in a shop with a band waiting for him.,is seen kneeling over some equipment in the sand.,3\n15944,anetv_GRGBMJG1Koc,4722,Several multi colored and shaped kites fly high in the air above a beach setting interspersed with images of people preparing to fly kites and onlookers. Several kites,Several multi colored and shaped kites fly high in the air above a beach setting interspersed with images of people preparing to fly kites and onlookers.,Several kites,gold,\"fly in the air, in a bright blue sky, over a sandy area.\",\"are shown as various times other kid is seen swimming around a large building, swimming fast by the person doing flips.\",are shown in a unique room.,\"fly in the sky including other cars and the mountains, including a man and case of plants.\",0\n15945,anetv_hxQhQsl-N1k,1525,A guy is half kneeing on a gym floor. The guy,A guy is half kneeing on a gym floor.,The guy,gold,walks up to the floor and sits on the flooring ceiling.,is sitting down hard.,starts pressing a weight in one hand.,bends to grab the dog and turns the pole off.,2\n15946,anetv_hxQhQsl-N1k,1524,The credits of the clip are shown. A guy,The credits of the clip are shown.,A guy,gold,gives surprised balloons to crouch repeatedly with one pole in a red background.,takes turns talking to the camera as they make ice cream.,talks about a paintball paintball gun.,is half kneeing on a gym floor.,3\n15947,lsmdc3018_CINDERELLA_MAN-8296,9110,Someone hits someone with left and right hooks followed by an uppercut. Someone,Someone hits someone with left and right hooks followed by an uppercut.,Someone,gold,steps inside and stands by his father's bed.,floats off with someone waving his hand towards people.,reels then resumes his stance.,pushes something into the shaft.,2\n15948,anetv_FlLDPameKGM,8159,She sits on the edge of her bed. She,She sits on the edge of her bed.,She,gold,uses a brush to brush her long hair.,watches along with sting.,\"carries him across the room, shutting the door behind him.\",proceeds over and folds her arms in front of a fireplace.,0\n15949,anetv_FlLDPameKGM,8158,A woman is wearing a green robe. She,A woman is wearing a green robe.,She,gold,walks on the stage to get her hair pierced.,sits on the edge of her bed.,is brushing her hair and hair.,is holding a ball at the string.,1\n15950,anetv_FlLDPameKGM,9455,She is using a large brush to brush her hair. She,She is using a large brush to brush her hair.,She,gold,sets her down and brushes her hair.,starts brushing the hair of the tooth comb with a comb herald.,uses it to brush the hair as the camera.,\"looks up, continuing to brush.\",3\n15951,anetv_FlLDPameKGM,9454,\"A woman is wearing a green robe, seated on a bed. She\",\"A woman is wearing a green robe, seated on a bed.\",She,gold,puts some of her foot into a piece and lays it down on the couch.,is using a large brush to brush her hair.,stuffs a dress in a belly area.,starts holding a violin and fills it with her.,1\n15952,lsmdc3014_CAPTAIN_AMERICA-5733,3325,\"While someone and someone work a radio, someone and someone stand under a cable stretching down to distant train tracks. Someone\",\"While someone and someone work a radio, someone and someone stand under a cable stretching down to distant train tracks.\",Someone,gold,lassos a shell - tinted robot.,leans forward and eyes the railing jutting out.,puts on his helmet.,laces her sleeve down with a razor.,2\n15953,lsmdc3014_CAPTAIN_AMERICA-5733,3318,\"Someone looks up at someone and salutes him. In the strategy room, someone\",Someone looks up at someone and salutes him.,\"In the strategy room, someone\",gold,\"has stepped out of a chair, and the middle haired guard gets to his feet.\",puts his cell phone into his back pocket and wanders back to the office.,comes out beside him.,removes another flag from a wall map.,3\n15954,lsmdc3014_CAPTAIN_AMERICA-5733,3317,\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone shoots the guard first. Someone\",\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone shoots the guard first.\",Someone,gold,trips and falls from the barricade.,looks up at someone and salutes him.,talks to someone as he walks off.,averts his aim as he grabs the sword out of the hole.,1\n15955,lsmdc3014_CAPTAIN_AMERICA-5733,3312,\"Later, someone and his team run through the forest while bombs explode around them. Someone\",\"Later, someone and his team run through the forest while bombs explode around them.\",Someone,gold,\"hurry after him, then the shape jumps into the dragon tower.\",\"is being driven, pushing at more people around them.\",signals as a hydra tank approaches on a forest road.,jumps the quilt onto them and carries them on long poles.,2\n15956,lsmdc3014_CAPTAIN_AMERICA-5733,3303,\"Later, wearing a new Captain America uniform and mask, someone picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands. Someone\",\"Later, wearing a new Captain America uniform and mask, someone picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands.\",Someone,gold,helps someone onto the bed and embraces her squarely.,is tattooing the cop's neck.,\"hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons.\",takes the pole beneath a map and sets it down on the ground beside him.,2\n15957,lsmdc3014_CAPTAIN_AMERICA-5733,3336,Someone watches the action on a monitor. Someone,Someone watches the action on a monitor.,Someone,gold,shoots him in the gut and the boat crashes hard over him.,searches the bag bag.,watches the monitor as someone and someone fight the hydra soldiers.,peers over his shoulder and people stare at the tiger.,2\n15958,lsmdc3014_CAPTAIN_AMERICA-5733,3331,\"One by one, they let go of the handles and land on top of the train. Someone and someone\",\"One by one, they let go of the handles and land on top of the train.\",Someone and someone,gold,follow someone over several train cars to a ladder.,stand in their leaves as the door swings open.,are in a four - by - four.,\"pick up large rocks towards the waves, and go walking in the water.\",0\n15959,lsmdc3014_CAPTAIN_AMERICA-5733,3335,\"Someone glances back at someone, then moves across a hallway into a connecting compartment. Someone\",\"Someone glances back at someone, then moves across a hallway into a connecting compartment.\",Someone,gold,smokes a cigar as the guests clap and clap.,follows someone up as someone lets someone come to his apartment in the dim hallway.,watches the action on a monitor.,pushes 20 feet out of view.,2\n15960,lsmdc3014_CAPTAIN_AMERICA-5733,3302,\"Someone pulls a piece of paper from his pocket and hands it to him. Later, wearing a new Captain America uniform and mask, someone\",Someone pulls a piece of paper from his pocket and hands it to him.,\"Later, wearing a new Captain America uniform and mask, someone\",gold,faces the chairman who stares at someone.,picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands.,approaches someone's house.,sees his coolly lighting the ax.,1\n15961,lsmdc3014_CAPTAIN_AMERICA-5733,3313,Someone signals as a Hydra tank approaches on a forest road. Someone,Someone signals as a Hydra tank approaches on a forest road.,Someone,gold,\"runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame.\",helps someone onto the ground.,wrestles off his cattle chain.,speeds towards another patch in her shed.,0\n15962,lsmdc3014_CAPTAIN_AMERICA-5733,3300,She picks up a handgun and fires at the shield. She,She picks up a handgun and fires at the shield.,She,gold,\"kicks both of the vehicles forward, narrowly missing the ball.\",down her stairway as someone glares in her windshield.,\"shoots through the window, flying out of the roof.\",lowers the gun and smiles.,3\n15963,lsmdc3014_CAPTAIN_AMERICA-5733,3322,\"Later, outside the ruins of a Hydra factory, someone scowls at someone. Hydra guards\",\"Later, outside the ruins of a Hydra factory, someone scowls at someone.\",Hydra guards,gold,surround the building as someone walks up to a train gate.,bring over a dark - haired factory manager.,stand on either side of the research garage.,\"scatter, looking down into the growing darkness.\",1\n15964,lsmdc3014_CAPTAIN_AMERICA-5733,3309,\"In a snowy forest, someone walks ahead of his men. He\",\"In a snowy forest, someone walks ahead of his men.\",He,gold,glances back and motions for them to follow.,\"hoists herself up after him, knocking him off the head and tackles him barrel to the rushing current.\",heads the zombie someone kicks someone with a crowbar.,\"kisses someone's neck, holding a lantern.\",0\n15965,lsmdc3014_CAPTAIN_AMERICA-5733,3308,\"In the strategy room, an assistant uses a long stick to remove a flag from the war map and pass it to someone. In a snowy forest, someone\",\"In the strategy room, an assistant uses a long stick to remove a flag from the war map and pass it to someone.\",\"In a snowy forest, someone\",gold,glances back as an figures aim a rifle at him.,holds someone draws an impatient flag.,guzzling canoes on a small island at a full of town.,walks ahead of his men.,3\n15966,lsmdc3014_CAPTAIN_AMERICA-5733,3310,\"Someone moves ahead into a small clearing, then turns and hurls the shield into a treetop. The shield\",\"Someone moves ahead into a small clearing, then turns and hurls the shield into a treetop.\",The shield,gold,\"circles the man on the road, then lands in a lifeboat beside the hull.\",glows on someone's face.,explode around nearby as someone leaps from the room.,strikes a hidden hydra soldier.,3\n15967,lsmdc3014_CAPTAIN_AMERICA-5733,3305,\"Someone smacks several Hydra soldiers with the shield. As his fellow soldiers run outside, someone\",Someone smacks several Hydra soldiers with the shield.,\"As his fellow soldiers run outside, someone\",gold,walks past someone and tosses up the rope.,flies out of the exploding building on a motorcycle.,\"jumps the armored someone, who passes through the window.\",readies his fingers and enthusiastically blows the whistle.,1\n15968,lsmdc3014_CAPTAIN_AMERICA-5733,3307,\"Approaching in his long, black convertible, someone stops and grimaces as he watches the Hydra factory burn. In the strategy room, an assistant\",\"Approaching in his long, black convertible, someone stops and grimaces as he watches the Hydra factory burn.\",\"In the strategy room, an assistant\",gold,pulls up a bird with a straw.,uses a long stick to remove a flag from the war map and pass it to someone.,\"pulls behind the news conference, and someone throws at his dead criminal.\",helps the soldier through a donut tank.,1\n15969,lsmdc3014_CAPTAIN_AMERICA-5733,3315,\"In a small movie theater, someone sits and watches a film of someone and his men riding in the back of a truck. Studying a map, someone\",\"In a small movie theater, someone sits and watches a film of someone and his men riding in the back of a truck.\",\"Studying a map, someone\",gold,works a fresh turn.,spots an arch above his name's letters.,faces his father someone.,holds a compass with a picture of her inside the lid.,3\n15970,lsmdc3014_CAPTAIN_AMERICA-5733,3329,Someone and someone grab handles and slide down the cable. They,Someone and someone grab handles and slide down the cable.,They,gold,glide over the train as it speeds beneath them along the snow - covered track.,climb in the wall and trying to keep control in themselves.,walk away from the drop.,stop at the cinema entrance of an office building.,0\n15971,lsmdc3014_CAPTAIN_AMERICA-5733,3323,Hydra guards bring over a dark - haired factory manager. Someone,Hydra guards bring over a dark - haired factory manager.,Someone,gold,\"narrows her eyes, then walks away.\",emerges from a restroom.,modest building pipes filled.,points a blaster gun at the man.,3\n15972,lsmdc3014_CAPTAIN_AMERICA-5733,3316,\"Studying a map, someone holds a compass with a picture of her inside the lid. Outside another destroyed factory, a Hydra guard aims a gun at someone but someone\",\"Studying a map, someone holds a compass with a picture of her inside the lid.\",\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone\",gold,shoots the guard first.,sprints out of the street.,aims the she gave him.,speeds toward a number - and aims at someone.,0\n15973,lsmdc3014_CAPTAIN_AMERICA-5733,3321,Someone pulls out the masked driver and hurls him through the air. Someone,Someone pulls out the masked driver and hurls him through the air.,Someone,gold,jumps off as it explodes.,shoots him a look.,runs up the street to the quarry.,lifts his wand over his head.,0\n15974,lsmdc3014_CAPTAIN_AMERICA-5733,3334,Someone follows someone as he moves through the empty compartment. Someone,Someone follows someone as he moves through the empty compartment.,Someone,gold,\"lowers his wand in front of him, watching blood from his nostrils.\",slips him into his aunt's mother's quarters.,\"notices someone half - framed photo of an old woman standing in his corner, watching her.\",\"glances back at someone, then moves across a hallway into a connecting compartment.\",3\n15975,lsmdc3014_CAPTAIN_AMERICA-5733,3333,Someone and someone climb down the ladder and enter a compartment while someone stands guard atop the train. Someone,Someone and someone climb down the ladder and enter a compartment while someone stands guard atop the train.,Someone,gold,\"steps up, adjusts his helmet, and stares at the armored trainers.\",flips to the passenger side of the ship and throws two boards into the water underneath.,pushes through a door dressed in fairy uniform.,follows someone as he moves through the empty compartment.,3\n15976,lsmdc3014_CAPTAIN_AMERICA-5733,3319,\"In the strategy room, someone removes another flag from a wall map. Outside a Hydra facility, someone\",\"In the strategy room, someone removes another flag from a wall map.\",\"Outside a Hydra facility, someone\",gold,sets someone's plane down on someone's deck.,leaps on to the top of a large armored tank and slices the hatch open with his shield.,\", someone, writes in his lab.\",\"sleeps a few paces the airport, as people stand in place in his indoor cavity.\",1\n15977,lsmdc3014_CAPTAIN_AMERICA-5733,3301,She lowers the gun and smiles. Someone,She lowers the gun and smiles.,Someone,gold,eyes someone icily as she walks out.,grabs her jacket and puts it on.,faces the old guy then steps forward while motioning that someone can't hold him.,carries off as she pulls up on a city street.,0\n15978,lsmdc3014_CAPTAIN_AMERICA-5733,3332,Someone and someone follow someone over several train cars to a ladder. Someone and someone,Someone and someone follow someone over several train cars to a ladder.,Someone and someone,gold,peer between the place making wands.,climb down the ladder and enter a compartment while someone stands guard atop the train.,disembark from the truck and into the vault and cooper landing in serving a window.,step out of the mechanical bodies onto construction paper.,1\n15979,lsmdc3014_CAPTAIN_AMERICA-5733,3320,\"Outside a Hydra facility, someone leaps on to the top of a large armored tank and slices the hatch open with his shield. Someone\",\"Outside a Hydra facility, someone leaps on to the top of a large armored tank and slices the hatch open with his shield.\",Someone,gold,shoves down the thread.,\"shoots him, wide - eyed.\",pulls out the masked driver and hurls him through the air.,\"swerves from his grasp and whacks it in the back of his head, then runs.\",2\n15980,lsmdc3014_CAPTAIN_AMERICA-5733,3328,Someone slides down the cable toward the tracks. Someone and someone,Someone slides down the cable toward the tracks.,Someone and someone,gold,pull on the ship's brake.,run through double doors and into the allowed ship chamber.,start to leave again.,grab handles and slide down the cable.,3\n15981,lsmdc3014_CAPTAIN_AMERICA-5733,3330,\"They glide over the train as it speeds beneath them along the snow - covered track. One by one, they\",They glide over the train as it speeds beneath them along the snow - covered track.,\"One by one, they\",gold,ride with someone out of town.,land in the dirt power room.,let go of the handles and land on top of the train.,turn down the misty river.,2\n15982,lsmdc3014_CAPTAIN_AMERICA-5733,3314,\"Someone runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame. Someone\",\"Someone runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame.\",Someone,gold,gets up to find a doll - arranged leather hanging out on a bedside table.,soars over the equipment tunnel coming in one out.,stands and plugs his ears as the tank rolls on.,leaps down the track - punched then stuck it in his rear pocket.,2\n15983,lsmdc3014_CAPTAIN_AMERICA-5733,3327,Someone grabs a handle attached to the cable. Someone,Someone grabs a handle attached to the cable.,Someone,gold,struggles to open his arms in amazement.,slides down the cable toward the tracks.,tries hard to get it back safely.,flies over while someone hands him the hat a few feet back.,1\n15984,lsmdc3014_CAPTAIN_AMERICA-5733,3311,\"The shield strikes a hidden Hydra soldier. Later, someone and his team\",The shield strikes a hidden Hydra soldier.,\"Later, someone and his team\",gold,meet backstage at a luxurious town.,enter through a pair of darkly decorated doors to a door in their theater living room.,run through the forest while bombs explode around them.,arrive at the base of a wall.,2\n15985,lsmdc3014_CAPTAIN_AMERICA-5733,3324,\"Someone points a blaster gun at the man. While someone and someone work a radio, someone and someone\",Someone points a blaster gun at the man.,\"While someone and someone work a radio, someone and someone\",gold,sit in their arms.,confer with ropes o. s..,push on both feet.,stand under a cable stretching down to distant train tracks.,3\n15986,lsmdc3014_CAPTAIN_AMERICA-5733,3337,\"Someone watches the monitor as someone and someone fight the Hydra soldiers. In his compartment, someone\",Someone watches the monitor as someone and someone fight the Hydra soldiers.,\"In his compartment, someone\",gold,quickly releases the cruiser.,carries the pack and carries him out of the course.,leans out from behind the crates and returns fire with a pistol.,sees someone's blood form from a dark club.,2\n15987,lsmdc3014_CAPTAIN_AMERICA-5733,3326,\"With the binoculars, Falsworth watches a train speed across a distant trestle. Someone\",\"With the binoculars, Falsworth watches a train speed across a distant trestle.\",Someone,gold,sets up a pair of binoculars.,grabs a handle attached to the cable.,awakens and shakes the boy's hand.,spots someone round his privates.,1\n15988,lsmdc3014_CAPTAIN_AMERICA-5733,3304,\"Someone hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons. Someone\",\"Someone hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons.\",Someone,gold,smacks several hydra soldiers with the shield.,whirls away his wrist.,takes quickly out of ammo.,watches to bungee duel.,0\n15989,lsmdc0004_Charade-47439,15128,As someone hauls off and kicks someone full in the shin. He,As someone hauls off and kicks someone full in the shin.,He,gold,grabs someone's collar and throws him down at the head of the bed.,poles hang over the gate toward someone.,stiffens as the pain registers.,smiles and steps to a nearby cabinet and starts to take it.,2\n15990,lsmdc0004_Charade-47439,15130,\"Someone stares at him for a moment. Slowly, his eyes open and tears stream from them,\",Someone stares at him for a moment.,\"Slowly, his eyes open and tears stream from them,\",gold,rolling down his cheeks.,tearing through someone's necklace.,causing him to slap at the table.,parted with a flow of letters.,0\n15991,lsmdc0004_Charade-47439,15131,\"Slowly, his eyes open and tears stream from them, rolling down his cheeks. He\",\"Slowly, his eyes open and tears stream from them, rolling down his cheeks.\",He,gold,\"bends forward, avoiding the vines.\",\"stumbles, leaving someone sprawling astride a small circle of doom.\",speaks while holding the orange.,ties him up and arms around a kid.,2\n15992,anetv_LrwBGQ9B0Vg,1267,A long yellow fish passes the camera. Scuba divers,A long yellow fish passes the camera.,Scuba divers,gold,fly into the sky before taking another.,prepare the swimming pool and sits in front of the people.,gather on a boat as a man speaks.,swim out of a swimming pool at a diving board and swimming through it.,2\n15993,anetv_LrwBGQ9B0Vg,1268,Scuba divers gather on a boat as a man speaks. We,Scuba divers gather on a boat as a man speaks.,We,gold,see several fish and a shark.,are canoeing in snowy lake.,see the pirate boat looking in the water.,raise their boats and pass from the water to a river on the beach.,0\n15994,anetv_LrwBGQ9B0Vg,1269,We see several fish and a shark. The scuba divers,We see several fish and a shark.,The scuba divers,gold,\"dive, looking at the fish and waving at the camera.\",\"are shown swimming up, then we see a lady face.\",swim and swim in a swimming pool behind the water.,go underwater and go into the water.,0\n15995,lsmdc1055_Marley_and_me-96535,5880,He sits with a blank expression. People,He sits with a blank expression.,People,gold,peers in on someone.,stroll in her room.,sit glumly side by side at the table as someone goes and sees to the baby.,lifts over an electronic device.,2\n15996,anetv_E9HbfcT1ZWM,15700,A camera pans around a large view and leads into a woman climbing on a rope an moving across. Several people,A camera pans around a large view and leads into a woman climbing on a rope an moving across.,Several people,gold,are seen holding onto poles as well as speaking to the camera while others riding around.,are seen walking into a section and grabbing ropes from a board as well as a person standing behind.,are shown walking on the wire while also speaking to the camera and attempting many tricks.,are seen riding on a track coach while people watch on the sides.,2\n15997,anetv_E9HbfcT1ZWM,2953,A man speaks to the camera and shows several clips of people walking on rope across a cliff. He,A man speaks to the camera and shows several clips of people walking on rope across a cliff.,He,gold,speaks to the camera and pointing to the camera pointing to some materials.,continues speaking as more people walk and bounce up on the rope.,takes out the people with a camera looking up under the equipment.,men begin to speak and speak into the camera and lead into them climbing a tree in a forest.,1\n15998,anetv_E9HbfcT1ZWM,2952,A camera pans all around landscapes and leads into a woman climbing onto a rope. A man,A camera pans all around landscapes and leads into a woman climbing onto a rope.,A man,gold,then up the slack and leads into several clips of people in a boat as well as walking around one another.,climbs into a tube and jumps into a pit on his shoulders with others riding behind him.,is seen jumping off a railing and performing several flips while moving to a man and jumping around him.,speaks to the camera and shows several clips of people walking on rope across a cliff.,3\n15999,anetv_O0KUnuhLwj0,9747,\"He shows a lighter, and lights a cigarette. He then\",\"He shows a lighter, and lights a cigarette.\",He then,gold,sits and smokes it quietly.,puts his shirt under a coat and smokes.,blows points onto the smoke jacket.,lays a few cars on the ground and takes the card.,0\n16000,anetv_O0KUnuhLwj0,16263,A sitting man holds a pack of cigarettes and a lighter to the camera. The man,A sitting man holds a pack of cigarettes and a lighter to the camera.,The man,gold,smokes around the hookah and talks to the camera.,puts the cigarette in the ashtray as people talks.,continues petting the dogs by performing shot with a cup and smokes.,puts a cigarette in his mouth and smokes the cigarette fast.,3\n16001,anetv_O0KUnuhLwj0,16265,The man removes the cigarette and puts it back. The man,The man removes the cigarette and puts it back.,The man,gold,shows the camera the end of the cigarette and smokes the rest.,cuts to the man with the clippers screws out by blowing smoke and speaking to the camera.,adds the pieces to this and spreads the pieces.,walks behind the man blows and leaves.,0\n16002,anetv_O0KUnuhLwj0,16266,The man shows the camera the end of the cigarette and smokes the rest. The man,The man shows the camera the end of the cigarette and smokes the rest.,The man,gold,prepares his cigarette from the hookah while the camera zooms in on his face.,takes on the harmonica and takes a drag with a liquid to bed.,turns the camera off and shows clips of him getting out.,removes the cigarette and shows it to the camera.,3\n16003,anetv_O0KUnuhLwj0,9746,A man is talking while holding a pack of cigarettes. He,A man is talking while holding a pack of cigarettes.,He,gold,is holding a table close to case.,uses a hookah to blows out smoke.,\"sets the billiard apart, then tells how it would be.\",\"shows a lighter, and lights a cigarette.\",3\n16004,anetv_O0KUnuhLwj0,16264,The man puts a cigarette in his mouth and smokes the cigarette fast. The man,The man puts a cigarette in his mouth and smokes the cigarette fast.,The man,gold,then blows smoking and holds his hands up.,stops welding and starts talking again.,removes the cigarette and puts it back.,stops as he talks.,2\n16005,anetv_9JMbahMzBjk,14823,Their father lights the christmas tree while his daughter pulls his shirt. He,Their father lights the christmas tree while his daughter pulls his shirt.,He,gold,\"is sitting on the lap, eating the ice cream cone with a plastic towel.\",\"stirs again, his hand still pinned to a wire bun.\",\"steps over to someone who sleeps in the lawn, dumping his cereal.\",continues decorating the tree in front of them.,3\n16006,anetv_9JMbahMzBjk,14822,A group of kids are dancing around a living room. Their father,A group of kids are dancing around a living room.,Their father,gold,\"gets up her batons and sticks her hands in it, then they continue doing dances and jumping on the floor.\",picks up a young girl in regions trousers and starts painting her leg.,lights the christmas tree while his daughter pulls his shirt.,\"is standing around in bed, tapping the floor in a rhythm.\",2\n16007,anetv_9JMbahMzBjk,2243,The man interacts with the girls while a little one tugs on his shirt and the others continue bounding and singing. Eventually the man and little girl,The man interacts with the girls while a little one tugs on his shirt and the others continue bounding and singing.,Eventually the man and little girl,gold,begin being interviewed by a man.,step out of frame.,win the fight in a chance squat.,manage to tag lift.,1\n16008,anetv_9JMbahMzBjk,2242,A group of people are seen sitting around a living room with a man lighting and decorating a tree and two girls singing. The man interacts with the girls while a little one tugs on his shirt and the others,A group of people are seen sitting around a living room with a man lighting and decorating a tree and two girls singing.,The man interacts with the girls while a little one tugs on his shirt and the others,gold,continue bounding and singing.,continue on teenagers to watch their movements.,continue to laugh and laugh.,begin to pull off his shoes to grab it.,0\n16009,anetv_M4DcibAnW_E,14189,The person is shown surfing all along the water while the camera films from behind. The man,The person is shown surfing all along the water while the camera films from behind.,The man,gold,continues surfing and paddles himself towards a boat.,continues to play along more while working in the end captures a fish from the sail box.,continues to answer and waves at the camera in the end.,is then seen on the water holding a skateboard and walking off and talking to the camera.,0\n16010,anetv_M4DcibAnW_E,14188,A large wave is shown followed by a person standing up on a surf board. The person,A large wave is shown followed by a person standing up on a surf board.,The person,gold,is then seen riding along the sand while the camera captures her movements.,is shown surfing all along the water while the camera films from behind.,then raises the sail over his hands while looking down in the water.,continues riding on waves when another person is seen riding around on the board.,1\n16011,anetv_hs81dVKvvdw,17728,A person is sitting down getting their arm tattooed. They,A person is sitting down getting their arm tattooed.,They,gold,begin working on bicycles in different ways.,ski on the rapidly ropes in a front of dirt bikes.,\"play the racquet, while people try to jump near the center.\",stand up and show the tattoo.,3\n16012,lsmdc0002_As_Good_As_It_Gets-46376,8614,Instead the dog goes to the door and scratches at it. Someone,Instead the dog goes to the door and scratches at it.,Someone,gold,goes up the stairs.,rips out the bottle of water from a freezer.,starts to pick the dog up.,pulls the portable horn from a carrier.,2\n16013,anetv_4HxmQpkryjA,7495,The kids hit a ball back and forth in the water. They,The kids hit a ball back and forth in the water.,They,gold,go on the field with the chasing a ball.,punch balls at one another as she speaks.,continue to hit the ball back and forth in a net while the polo continues.,\"fight over the ball, trying to get it into the goal.\",3\n16014,anetv_4HxmQpkryjA,7494,A group of children are seen swimming in a pool. The kids,A group of children are seen swimming in a pool.,The kids,gold,begin swimming in various clips.,films pool attempting to swim around in the pool.,spin down and drive back with a ball.,hit a ball back and forth in the water.,3\n16015,anetv_4HxmQpkryjA,16377,A group of kids are swimming in a pool. They,A group of kids are swimming in a pool.,They,gold,\"kick a ball back and forth, trying to do the dart.\",are shown tossing a ball back and forth in the water.,are engaged in a fight with headphones.,are swimming across the pool in front of a crowd of spectators calm over their moves.,1\n16016,anetv_4HxmQpkryjA,16378,They are shown tossing a ball back and forth in the water. They,They are shown tossing a ball back and forth in the water.,They,gold,are then shown riding in a crowd around various buildings.,kick the ball back and forth to the camera.,get the ball into the net as they swim.,are applauding themselves as they go into the water.,2\n16017,lsmdc3062_SORCERERS_APPRENTICE-31000,2536,She closes her dark - lashed eyes and raises both arms. Someone,She closes her dark - lashed eyes and raises both arms.,Someone,gold,creeps out near by and watches.,stares up at him through tearful eyes.,seethes as he sleeps beside her.,\"looks at someone, then goes back to the bedroom with his ladder.\",0\n16018,lsmdc3062_SORCERERS_APPRENTICE-31000,2535,Someone picks up the empty Grimhold. She,Someone picks up the empty Grimhold.,She,gold,closes her dark - lashed eyes and raises both arms.,has to smell the blanket and pocket its solo beans.,grabs her purse and raises it from low to its other side.,flowers are in the hall.,0\n16019,anetv_IQp6JF5v1qc,17880,The screen opens up with an acdc promo. A little boy,The screen opens up with an acdc promo.,A little boy,gold,spins a body of man.,is speaking to the camera.,emerges from a tank.,arranges a goatee on his nails.,1\n16020,anetv_IQp6JF5v1qc,17882,The little boy begins to break dance and does many flips. He,The little boy begins to break dance and does many flips.,He,gold,switch around and let him celebrate as the boy springs over his back.,stands up and begins to rap.,\", while on a street, the routine is replayed in slow motion.\",\"twist to the side, then flips back the boy in his other arms flip side to side and does it lands.\",1\n16021,anetv_IQp6JF5v1qc,17881,A little boy is speaking to the camera. The little boy,A little boy is speaking to the camera.,The little boy,gold,is shown inside a front lawn.,is taking their turn to start the game.,begins to break dance and does many flips.,is moving up to the other side of the house.,2\n16022,lsmdc1007_Spider-Man1-74500,2328,The gunman makes his escape. Someone,The gunman makes his escape.,Someone,gold,sighs then takes a deep breath.,stands aside as the robber escapes in the elevator.,wades through a shallow gully.,scrambles to his feet and hops across the room.,1\n16023,anetv_U0p4tW1LoPg,17206,They play a game of water polo and throw the ball around to each other. One,They play a game of water polo and throw the ball around to each other.,One,gold,throws the ball into the net and causes the people on the side to jump and cheer.,continues to play with close ups of their own shoes.,the yellow team are sitting on the sidelines watching.,is well enough to the audience.,0\n16024,anetv_U0p4tW1LoPg,17205,A group of people wearing swim caps move around a pool and toss a ball around with a man on the sides waving a flag. They,A group of people wearing swim caps move around a pool and toss a ball around with a man on the sides waving a flag.,They,gold,collide with each other and catch a wad of nuts in the game.,play a game of water polo and throw the ball around to each other.,practice in the room and wave their hands in the air while play beer pong while drinking.,talk to the microphone and observe.,1\n16025,anetv_U0p4tW1LoPg,17207,One throws the ball into the net and causes the people on the side to jump and cheer. A video of the event,One throws the ball into the net and causes the people on the side to jump and cheer.,A video of the event,gold,\"is falling off, then a replay that falls on and's first replay is shown again.\",is served and the toddler hits the ball back to water.,show is shown off as people continue to play volleyball.,shows in slow motion followed by men on the sidelines watching.,3\n16026,anetv_7xLL5okHSIU,12689,He gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves. Different people,He gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves.,Different people,gold,are shown snowboarding into a large patch of snow where the shovels continue.,are interviewed on camera while several others are shown raking up the leaves.,take turns trying to get the riding lawn cleaned above the ground.,are then seen bouncing on the rope together and falling.,1\n16027,anetv_7xLL5okHSIU,12688,A intro begins and shows a man holding a shovel and talking to the camera. He,A intro begins and shows a man holding a shovel and talking to the camera.,He,gold,move more groups and begin raking papers on fire.,is then shown from a house at a barber shop and shows them gesturing.,shows the proper use of a machine going down the mountain and riding.,gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves.,3\n16028,anetv_7xLL5okHSIU,12690,Different people are interviewed on camera while several others are shown raking up the leaves. A man is seen sitting in his car and another,Different people are interviewed on camera while several others are shown raking up the leaves.,A man is seen sitting in his car and another,gold,puts his gloves on.,walks along and shots into a man walking back to the camera.,watching the dog around with the man standing at the window as well as a lawn mower.,is standing around the two waves.,0\n16029,anetv_6dc-fQCzOiw,5594,\"Then, the person kicks the skateboard back. After the person jumps off it and the skateboard\",\"Then, the person kicks the skateboard back.\",After the person jumps off it and the skateboard,gold,\"falls from the left, the man falls on the board and throws the blindfold man.\",lands on his butt.,slides on the road.,goes down the board.,2\n16030,anetv_6dc-fQCzOiw,5593,\"A person talks in the street, then the person skateboard on the road. Then, the person\",\"A person talks in the street, then the person skateboard on the road.\",\"Then, the person\",gold,skateboard down the road and walk the road.,returns with a popular throw mower.,kicks the skateboard back.,\"skates over the slopes, after other bikers with olympic forms as the border skateboarders perform on a bumpy road.\",2\n16031,anetv_6dc-fQCzOiw,5595,\"After the person jumps off it and the skateboard slides on the road. Next, the person\",After the person jumps off it and the skateboard slides on the road.,\"Next, the person\",gold,snowboard on the parallel rails.,swings and jumps and shoulder in the air.,takes a drag on the bike and starts again.,\"practice skateboard dragging a foot, after the person use the grass to do tricks.\",3\n16032,anetv_Tzm6TEManmQ,6256,The man sits on the bleachers and drinks. The man,The man sits on the bleachers and drinks.,The man,gold,walks over to the fusion machine while holding his eyes.,approaches a pool as if to dive in.,does a handstand and boards the grass.,talks and attempts his successful haircut.,1\n16033,anetv_Tzm6TEManmQ,6252,A series of dark gym environments are shown. A man,A series of dark gym environments are shown.,A man,gold,stands up in the darkened environment.,stands there with his arms around his legs.,uses a plastic bar on a mat.,is standing in a field hitting a puddle.,0\n16034,anetv_Tzm6TEManmQ,6254,The man walks through the frame. The man,The man walks through the frame.,The man,gold,continues to push the leaves around.,moves up the box and points at the object near the sides.,walks towards a pool.,moves the bike away from the camera.,2\n16035,anetv_Tzm6TEManmQ,6253,A man stands up in the darkened environment. The man,A man stands up in the darkened environment.,The man,gold,walks through the frame.,talks in a location.,easily kicks racket ball and serves.,looks up and flips more times.,0\n16036,anetv_Tzm6TEManmQ,12491,Lights are turning on over a swimming pool. A man,Lights are turning on over a swimming pool.,A man,gold,is taking a small kite in a hula hoop.,stands on a diving board next to the pool.,is sitting on a stool in front of a white t - shirt.,pans out about sixty yards and grabs a man's arm.,1\n16037,anetv_Tzm6TEManmQ,6255,The man walks towards a pool. The man,The man walks towards a pool.,The man,gold,runs towards his teammates.,reaches for the water and does a handstand.,sits on the bleachers and drinks.,pass over a served tennis racket and picks up a ball.,2\n16038,lsmdc3087_WE_BOUGHT_A_ZOO-41270,699,\"As he activates the device, its tape extends over a moat separating lion's enclosure from the guard railing. Cocking an eyebrow, someone\",\"As he activates the device, its tape extends over a moat separating lion's enclosure from the guard railing.\",\"Cocking an eyebrow, someone\",gold,awakens on the sofa.,looks along the flowing a small structure filled with tall buildings.,\"faces someone, who cocks his head and gives a few perfunctory nods.\",sees a flashlight mounted at its window.,2\n16039,lsmdc3087_WE_BOUGHT_A_ZOO-41270,698,\"From a hip holster, someone whips out an electric tape measure. As he activates the device, its tape\",\"From a hip holster, someone whips out an electric tape measure.\",\"As he activates the device, its tape\",gold,seems like a storage item.,describes the tag that he wears.,extends over a moat separating lion's enclosure from the guard railing.,squeezes free while on.,2\n16040,lsmdc3087_WE_BOUGHT_A_ZOO-41270,695,He dramatically makes a fist. Someone,He dramatically makes a fist.,Someone,gold,elbows him in the thigh with both hands as he lowers his feet.,\"stares at his hand, which he wags slowly.\",\"smashes someone's head, and cuts him off.\",steps into the paddy field and shoots someone repeatedly at the back of a truck.,1\n16041,lsmdc3087_WE_BOUGHT_A_ZOO-41270,694,Someone looks her up and down. She,Someone looks her up and down.,She,gold,sits at a table.,goes into the kitchen.,glowers at his sly smile.,changes into the store.,2\n16042,lsmdc3087_WE_BOUGHT_A_ZOO-41270,697,\"Now at lion's enclosure, he scrutinizes a railing. From a hip holster, someone\",\"Now at lion's enclosure, he scrutinizes a railing.\",\"From a hip holster, someone\",gold,sits with someone and presses his hand to her chest.,\"turns the key to the windshield, and checks his clock.\",whips out an electric tape measure.,puts his back against a wall.,2\n16043,anetv_Qm-XTJ-uG5s,17686,\"Two men are in a room with three walls and a set of glass doors behind them hitting a ball back and fourth against the wall with tennis rackets. As they continue, one boy falls to the ground and they\",Two men are in a room with three walls and a set of glass doors behind them hitting a ball back and fourth against the wall with tennis rackets.,\"As they continue, one boy falls to the ground and they\",gold,have to start over.,sit back down and hit their feet.,don't move but they don't have to grab each other.,start to throw the ball.,0\n16044,anetv_Ht2gV7oaqbo,3206,One person then grabs the other person by the legs. The men then,One person then grabs the other person by the legs.,The men then,gold,flip each other down on the ground.,perform a long jump in the silver bobble.,shoot at one another and slow down.,start to shove down the snowy slope while grabbing the rope.,0\n16045,anetv_Ht2gV7oaqbo,3205,Two people are seen standing outside on a mat. One person then,Two people are seen standing outside on a mat.,One person then,gold,pushes a puck down the slope.,begins running down a pole while others sit in the audience watching.,grabs the other person by the legs.,bends down while jumping down into a large ball.,2\n16046,anetv_XM3SktXBbHU,9924,A person is seen in the middle of a large gymnasium jumping around with another man in the middle raising his arms up. The person on silts then,A person is seen in the middle of a large gymnasium jumping around with another man in the middle raising his arms up.,The person on silts then,gold,lands on his opponent while holding up his hands and looking for the camera.,jumps over the person with their arms up as well as another.,balances on the metal rope and continues by walking away down a path.,starts spinning the rope around their legs and cheering to the other.,1\n16047,anetv_XncWGxekE30,13336,Several people are outside in the snow in a line pulling a tube along with them. A boy,Several people are outside in the snow in a line pulling a tube along with them.,A boy,gold,is then shown talking to the camera and approaches the line as people begin going down hill.,is seen wearing a string costume with pictures of people standing on either side and racing onto his nods.,is skiing down a hill that is pinned to the surface of a lake.,is gently skiing and leaping through the snow past the soars.,0\n16048,anetv_wt-PGxOkL_s,4015,The woman continues uses the water and begins scrubbing down a shirt and stepping in the buckets. More shots,The woman continues uses the water and begins scrubbing down a shirt and stepping in the buckets.,More shots,gold,are shown of the man washing his hair while the camera captures her movements.,are shown of the man scoring his potato to off in the end.,are shown of people washing dishes and continuing to wipe the dishes while the camera captures their movements.,are shown of them cleaning the clothes and ends by hanging them up.,3\n16049,anetv_LZC9MLWo9bE,9539,The person shows a close up of the tool and continues to cut more pieces of wood. The person,The person shows a close up of the tool and continues to cut more pieces of wood.,The person,gold,sweeps out and attempts to brush all holding the pumpkin tool.,continues sharpening a fire and laying on the hole with the object across it.,finishes painting the floor and continues explaining and continues to cut the ribbons of the tree.,cuts up several more pieces of wood.,3\n16050,anetv_LZC9MLWo9bE,9538,A close up of wood is seen following by a person walking into frame and cutting the wood. The person,A close up of wood is seen following by a person walking into frame and cutting the wood.,The person,gold,continues to blow the leaves around a house while the camera pans around the room.,demonstrates how to properly cut the cat to make the fire.,shows a close up of the tool and continues to cut more pieces of wood.,demonstrates how to use more cleaner on the tool.,2\n16051,anetv_LZC9MLWo9bE,9245,A person then takes a long silver knife like utensil and cuts the trees down in half. He continues cutting the tree and several pieces,A person then takes a long silver knife like utensil and cuts the trees down in half.,He continues cutting the tree and several pieces,gold,are used in color.,end up on the ground.,of canvas out to cut and crushing them.,are seemingly lining up with hair products.,1\n16052,anetv_LZC9MLWo9bE,9244,A small log of wood is taken from the woods and placed in a back yard. A person then,A small log of wood is taken from the woods and placed in a back yard.,A person then,gold,grabs the pliers and begins cutting the axe handle with the ax.,takes a long silver knife like utensil and cuts the trees down in half.,takes carpet and begins mowing the yard.,climbs onto the top of a christmas tree with a big tire behind them.,1\n16053,anetv_KfzVxgHEyzI,7744,A ball rolls towards the crowd. one man,A ball rolls towards the crowd.,one man,gold,bounces the ball from his pockets.,arrives and then lands in the sand.,blows his three shots in return.,taps the ball with his foot.,3\n16054,anetv_KfzVxgHEyzI,7745,One man taps the ball with his foot. He then,One man taps the ball with his foot.,He then,gold,punctures the man with an iron pipe creating a fire behind his balls.,pushes the goalkeeper.,talks to the camera.,runs away from the crowd.,3\n16055,anetv_KfzVxgHEyzI,6120,A large group of players are seen standing and sitting around a field when a man kicks a ball and runs. Another person behind him attempts to grab the ball but misses and the man,A large group of players are seen standing and sitting around a field when a man kicks a ball and runs.,Another person behind him attempts to grab the ball but misses and the man,gold,kicks the ball out and runs across the field.,slammed the pin and throws his opponent into the field.,hits the body and hits the other.,runs to a base where another person calls him safe.,3\n16056,anetv_KfzVxgHEyzI,7743,People are standing on a football field. a ball,People are standing on a football field.,a ball,gold,poses for a bit.,emerges out of the cup.,rolls towards the crowd.,falls across the field.,2\n16057,anetv_P1gGM89_T2g,8748,A leaf is shown floating through the water and two scuba divers swimming around the water. Various shots of the ocean around them,A leaf is shown floating through the water and two scuba divers swimming around the water.,Various shots of the ocean around them,gold,are shown as well as seen people swimming around the castle.,are shown as well as people with kites.,are shown as they continue to ride their boat.,is shown as the divers looking into objects.,3\n16058,anetv_P1gGM89_T2g,18292,A group of scuba divers are exploring the bottom of the sea. They,A group of scuba divers are exploring the bottom of the sea.,They,gold,melt intertubes into the water.,float in a circle towards the water.,are working in rafts and themselves.,are using cameras as they look at the growth and animals.,3\n16059,anetv_P1gGM89_T2g,8749,Various shots of the ocean around them is shown as the divers looking into objects. Several fish,Various shots of the ocean around them is shown as the divers looking into objects.,Several fish,gold,are shown swimming around the divers move around sticks and the sand around.,are shown spinning the shown pace and ends with them riding around the carnival.,stop rafting and the boat continues riding down the river.,are shown surfing around the ocean while people watch on the side.,0\n16060,anetv_P1gGM89_T2g,18291,A leaf is floating through the murky ocean water. A group of scuba divers,A leaf is floating through the murky ocean water.,A group of scuba divers,gold,are shown riding bmx and cruising tubes in various locations and leads into another skateboard riding behind the back.,are exploring the bottom of the sea.,rides down the river.,are battling the waves.,1\n16061,lsmdc0020_Raising_Arizona-57762,18083,Both are staring wordlessly ahead at the road. Someone,Both are staring wordlessly ahead at the road.,Someone,gold,\"swerves, as he paddles his body like a surfboard.\",finds no sign that crosses as well.,is carried from work to searchlight.,\"looks over at someone, glum but trying to be kind.\",3\n16062,lsmdc0046_Chasing_Amy-68867,5699,\"Someone sits at a separate signing table, with a line in front of her. Someone\",\"Someone sits at a separate signing table, with a line in front of her.\",Someone,gold,grabs a glowing document across the table.,\"hands up one last guard, then drops the phone on the classroom.\",puts it on a plate and gives a big grin.,dashes off signatures in the copies of her comic.,3\n16063,anetv_1ErQKcUju8o,6965,\"A tutorial is presented on how to do simple ballet moves. After showing the materials, the teacher\",A tutorial is presented on how to do simple ballet moves.,\"After showing the materials, the teacher\",gold,begins to use the line and holds the first academy dancer.,instructs on how to do the braid and see the braids.,touches the student to show perfect form.,demonstrates winter routines hoops to show how to storage your board.,2\n16064,anetv_MbCAiWBhAjo,8699,\"The lemons are scraped back and forth against a metal food grater to get the zest off of them leaving the skin of the lemon in a bowl. Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder\",The lemons are scraped back and forth against a metal food grater to get the zest off of them leaving the skin of the lemon in a bowl.,\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder\",gold,is added to the water as well.,parmesan after toasting the little.,is off into it.,is on the top.,0\n16065,anetv_MbCAiWBhAjo,8700,\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder is added to the water as well. The lemons are cut and juiced over a glass bowl and then the juice\",\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder is added to the water as well.\",The lemons are cut and juiced over a glass bowl and then the juice,gold,surfs among the blender and scooped into a spoon.,is poured through a strainer along with the sugar water with zest that was previously mixed in the saucepan.,is rolled and prepared.,is added to the pitcher again and put the removed with the pitcher and cool it.,1\n16066,anetv_MbCAiWBhAjo,8698,Lemons are thrown onto a counter and glasses of lemon - aid appear with ice in mason jars on the counter as well. Lemons,Lemons are thrown onto a counter and glasses of lemon - aid appear with ice in mason jars on the counter as well.,Lemons,gold,\"of cake is poured into flat glass, followed by alcohol and lemons, text on the white words.\",comes in and shakes off the smoke.,are then rolled around against the counter back and forth evenly with the palm of a hand using firm pressure.,are added to all the ingredients.,2\n16067,anetv_FklvvNrpsUk,2266,She is holding a black hair dryer. She,She is holding a black hair dryer.,She,gold,is drying her hair with the hair dryer.,'s hugging a single ipod.,talks in agony that she is holding a child and sticking to her camera.,\"pulls up the wax, and brush her beard, and brushes it.\",0\n16068,anetv_FklvvNrpsUk,2265,A woman is standing in a bathroom. She,A woman is standing in a bathroom.,She,gold,begins placing soap on her dog as she eats.,is holding a black hair dryer.,is using a toothbrush and a toothpaste toothbrush.,wipes down the phone with a pink towel.,1\n16069,anetv_TbLBu2TDey8,13144,The woman begins throwing around the frisbee performing tricks with the dog. She,The woman begins throwing around the frisbee performing tricks with the dog.,She,gold,shows more shots of people hitting the frisbee as well.,runs back and fourth while the dog catches the frisbee.,continues to do tricks with the dog while others watch on the side.,continues walking around for the dog and stopping by her sides and following her over after the woman comes to a stop.,2\n16070,anetv_TbLBu2TDey8,13143,A woman is seen standing in a field holding frisbees with a dog. The woman,A woman is seen standing in a field holding frisbees with a dog.,The woman,gold,ties the dogs tail around the neck and continues kicking the horse like a dog.,then throws the frisbees while the frisbee catch around the dog continuing to be groomed.,then ties the horse's hair on the sides in front of her.,begins throwing around the frisbee performing tricks with the dog.,3\n16071,anetv_TbLBu2TDey8,17665,\"A woman in a pink jacket and her dog are outdoors and doing tricks wish discs as she throws them the dog catches, as well as the dog jumping over her, rolling over, dancing. A still shot\",\"A woman in a pink jacket and her dog are outdoors and doing tricks wish discs as she throws them the dog catches, as well as the dog jumping over her, rolling over, dancing.\",A still shot,gold,is shown of the dog as she moves around to the other part.,is shown of the woman playing again while talking and showing her exercise equipment by various detail describing her movements.,\"appears, wearing the blue garment.\",appears of the woman and her dog as the first place winners at the championship.,3\n16072,lsmdc0053_Rendezvous_mit_Joe_Black-71350,13175,\"Someone's face reveals a desperate searching for a last name, a furtive glance at someone. Someone's brow darkens and a name\",\"Someone's face reveals a desperate searching for a last name, a furtive glance at someone.\",Someone's brow darkens and a name,gold,appears on his cheek.,appears in the doorway.,tumbles from his lips.,marks the model's roughly six - foot high.,2\n16073,anetv_s_XdqaQj0uI,685,The pumpkin is buried in the ground. The man,The pumpkin is buried in the ground.,The man,gold,looks at the letters.,talks to the camera again as the two children walk near him.,is blow drying the dog with his own.,\"has fallen, falls, turns, and puts in his right hand.\",1\n16074,anetv_s_XdqaQj0uI,16975,The credits and the children giving two thumbs up are shown. The guy,The credits and the children giving two thumbs up are shown.,The guy,gold,sits and talks while holding a pumpkin with the two children sitting at each side on the grass.,\"rides on on a dirt bike, going back and fourth with others.\",finishes a routine on the park mat.,continues to film about the cake.,0\n16075,anetv_s_XdqaQj0uI,16977,A person removes the top of a pumpkin. A child,A person removes the top of a pumpkin.,A child,gold,uses a soldering tape on the cake.,grabs a white pot and rubs it on the table.,removes the seed and the squash inside.,washes pumpkin's side on the pumpkin.,2\n16076,anetv_s_XdqaQj0uI,16978,A child removes the seed and the squash inside. A person,A child removes the seed and the squash inside.,A person,gold,paints the painted metal with clear paint.,\"bowls a bowl, showing off the ice cream, then wipes the dish.\",puts a hole at the bottom of the pumpkin.,paints a second bell with a large metal object.,2\n16077,anetv_s_XdqaQj0uI,16982,\"A guy that is standing, talking, and gesturing in a lawn and is being circled by two children. The children\",\"A guy that is standing, talking, and gesturing in a lawn and is being circled by two children.\",The children,gold,are shown playing and posing with the products as they move about in the wet snow.,give a thumbs up.,sits at a classroom decorated with the banner on the bottom wall.,are on the sand.,1\n16078,anetv_s_XdqaQj0uI,16981,A person adds water to the pumpkin. The pumpkin,A person adds water to the pumpkin.,The pumpkin,gold,is giving someone the carving.,paints a red trail on the blue one.,is buried in black dirt.,zooms out of the direction of the pumpkin.,2\n16079,anetv_s_XdqaQj0uI,16980,A child adds soil to the inside of the pumpkin. A person,A child adds soil to the inside of the pumpkin.,A person,gold,carves a pumpkin into a carved pumpkin.,carves the pumpkin while carrying the tobacco.,rubs the candle on the pumpkin.,adds water to the pumpkin.,3\n16080,anetv_s_XdqaQj0uI,682,\"A still image of the two children are shown. The man, now seated,\",A still image of the two children are shown.,\"The man, now seated,\",gold,is a man putting together pack cookies.,begins dressed as a big green fabric sweater.,holds a carved pumpkin and talks to the camera while the two children idle nearby.,gets brief and starts shaving his beard.,2\n16081,anetv_s_XdqaQj0uI,16976,The guy sits and talks while holding a pumpkin with the two children sitting at each side on the grass. A person,The guy sits and talks while holding a pumpkin with the two children sitting at each side on the grass.,A person,gold,comes in front of the chair holding the cat.,shovels the snow from a yard in and drives down the driveway.,removes the top of a pumpkin.,takes the pacifier out of the dispenser.,2\n16082,anetv_s_XdqaQj0uI,16979,A person puts a hole at the bottom of the pumpkin. A child,A person puts a hole at the bottom of the pumpkin.,A child,gold,falls into a child's lap.,adds soil to the inside of the pumpkin.,places a substance on the man's eye.,pushes a person closer to the pumpkin.,1\n16083,anetv_s_XdqaQj0uI,683,\"The man, now seated, holds a carved pumpkin and talks to the camera while the two children idle nearby. Hands\",\"The man, now seated, holds a carved pumpkin and talks to the camera while the two children idle nearby.\",Hands,gold,closes his eyes as he finishes out more the cigarette.,listen to a guitar on the console.,are also shown decorating by close up video of two silent dogs on the beach when the video is shown.,are shown going through the process of emptying a pumpkin and adding dirt to it.,3\n16084,anetv_s_XdqaQj0uI,684,Hands are shown going through the process of emptying a pumpkin and adding dirt to it. The pumpkin,Hands are shown going through the process of emptying a pumpkin and adding dirt to it.,The pumpkin,gold,is buried in the ground.,is also drawn and is laid out with a large tool on the track.,is moving toward the window.,shows a close up of a cake as she watches.,0\n16085,anetv_s_XdqaQj0uI,681,A man holding some sort of fruit takes to the camera while two children walk around near him. The man's eye,A man holding some sort of fruit takes to the camera while two children walk around near him.,The man's eye,gold,moves down and he holds it up.,is briefly visible through some sort of tunnel.,is shown again in a filing motion.,is shown with a man who holds a cone in his hands.,1\n16086,anetv_CqscMsSNiNY,5436,Another man in a black wet suit stands in the water. A boat,Another man in a black wet suit stands in the water.,A boat,gold,pushes frantically behind him.,passed by behind him.,is being pulled at a high shore boat.,is shown sitting around an adidas classroom with shirts.,1\n16087,anetv_CqscMsSNiNY,3840,He balances on a boardd while holding up a sail. He,He balances on a boardd while holding up a sail.,He,gold,lifts the sail up out of the water.,talks while holding a penis.,uses some thread to walk to the end of his dock.,stops rope while the boat continues moving around wildly.,0\n16088,anetv_CqscMsSNiNY,5435,He holds onto the sail of the board. Another man in a black wet suit,He holds onto the sail of the board.,Another man in a black wet suit,gold,sits on a bench.,is captured and performs a long jump in the water.,stops the room on the border of the ship.,stands in the water.,3\n16089,anetv_CqscMsSNiNY,5434,A man is standing on a kite surf board. He,A man is standing on a kite surf board.,He,gold,skis and puts the equipment into the river.,does flips in the canoe and other tricks.,walks up in front of the camera.,holds onto the sail of the board.,3\n16090,anetv_b8ftOk8tKxg,5092,The lady washes her face with a powder from a box. The lady,The lady washes her face with a powder from a box.,The lady,gold,rinses off the soap and washes it in a sink.,rinses the dishes again and then picks up a glass of mouthwash and stops.,rinses her face and use a towel to dry up.,pours liquid in two paint and polishes the right shoe with the other.,2\n16091,anetv_b8ftOk8tKxg,5091,A lady discusses and folds a towel. The lady,A lady discusses and folds a towel.,The lady,gold,proceeds to shave 5 hairs with a painted brush.,grabs a piece of paper and assembles the paper.,washes her face with a powder from a box.,holds the arm of a woman and man leaves.,2\n16092,anetv_K9cQxJ37xzA,15403,She is back to riding the exercise bike. She,She is back to riding the exercise bike.,She,gold,does as backward gets off the bars.,is then shown seated in a oom going down the street.,is lifting weights up and down at her sides.,puts a towel on each side of the bed.,2\n16093,anetv_K9cQxJ37xzA,15402,She is doing push ups on a black mat. She,She is doing push ups on a black mat.,She,gold,sits heavily on a mat attaching the body.,is back to riding the exercise bike.,is demonstrating how to finish the jump as a woman rests a board.,is using the bents to raise her leg outside at her waist.,1\n16094,anetv_K9cQxJ37xzA,15401,A woman in a white tank top is riding an exercise bike in a room. She,A woman in a white tank top is riding an exercise bike in a room.,She,gold,takes a seat and is ready for use.,does the exercise in a karate session.,is riding the recumbent bike.,is doing push ups on a black mat.,3\n16095,anetv_K9cQxJ37xzA,15404,She is lifting weights up and down at her sides. She,She is lifting weights up and down at her sides.,She,gold,lies down and lifts it to her lips.,is riding on the exercise bike again.,begins showing how to make a sandwich.,is shown lifting the weights down and sitting down out.,1\n16096,lsmdc0030_The_Hustler-65052,1061,There is a long pause as he glares at her. He,There is a long pause as he glares at her.,He,gold,grabs her child and starts to lift her from the shoulder.,gazes up at her sleeping wife.,sees the chaos in the distance.,goes back into his room.,3\n16097,lsmdc0030_The_Hustler-65052,1066,\"He is tall and refined, with a pale, debauched, yet oddly youthful face that some men of forty or more sometimes have. Someone\",\"He is tall and refined, with a pale, debauched, yet oddly youthful face that some men of forty or more sometimes have.\",Someone,gold,\"elaborate mass, emerge from cuba and open the doors to their caller.\",seems very quite tall.,\"spots someone, takes a long drag on his cigarette, and saunters toward them.\",joins their dancing together.,2\n16098,lsmdc0030_The_Hustler-65052,1062,He goes back into his room. She,He goes back into his room.,She,gold,shakes her hair too.,sets down his bags and stands on the couch.,closes the door and leans against it.,goes up and grabs the mobile phone.,2\n16099,lsmdc0030_The_Hustler-65052,1065,\"As she puts the money in her purse, someone sits down. We\",\"As she puts the money in her purse, someone sits down.\",We,gold,\", someone walks with her to someone who's playing paperwork, looking at the card of the keyboard.\",\", someone faces the door.\",\"see someone, studying his program and holding a drink in his hand.\",are close on their mouths.,2\n16100,lsmdc0030_The_Hustler-65052,1063,She closes the door and leans against it. Screams,She closes the door and leans against it.,Screams,gold,\"down, someone stands in front of the mirror, aimed fast at her stomach.\",see his chest parted and his eyes two partially put back.,are heard as the horses jerk out of the starting gate to begin their runs.,lets the girls go.,2\n16101,lsmdc0030_The_Hustler-65052,1064,Someone cashes in a winning ticket. Someone,Someone cashes in a winning ticket.,Someone,gold,moves through the ornate racetrack bar to join someone at a table.,is holding in the wrong direction.,\"stands in front of him, a few feet behind him.\",is at a table to a chat with a state of eastern in front of it.,0\n16102,anetv_K7rfN2W0ts4,16978,The dealer continuously throws out cards while also putting chips in. The person playing,The dealer continuously throws out cards while also putting chips in.,The person playing,gold,sticks while the dealer continues along the lane and walks away from the audience.,does the same several times.,and types takes shots at a distance.,tennis and passing all around while the others cheer and laugh in the end.,1\n16103,anetv_K7rfN2W0ts4,16977,A person's hands are seen at a poker table grabbing cards while another deals. The dealer,A person's hands are seen at a poker table grabbing cards while another deals.,The dealer,gold,continues to play the harmonica while more shots are shown of him playing drums with many people walking around him.,continuously throws out cards while also putting chips in.,places chips to the other and begins hitting the mug around the table while people continue playing.,continues to roll the cards as the dealer deals them cards.,1\n16104,anetv_E2nAOID5DLM,10590,A man is jumping in the background. A Russian then,A man is jumping in the background.,A Russian then,gold,\"lays down on the ground, the dog falls to the ground and runs pass the team.\",\"rides to the bar, jumps up, jumps down onto a sand mat in the setting nursing his oar.\",speaks to his camera.,completes a long jump and gets his score then runs around with a flag.,3\n16105,anetv_E2nAOID5DLM,8140,The iaaf World Youth Championships logo appears. A young man,The iaaf World Youth Championships logo appears.,A young man,gold,talks the video you are demonstrating.,waits on a racetrack.,turns onto his skateboard.,set up his hands territory pills and snowboarding.,1\n16106,anetv_7hDCO9fJb90,11389,The man then coaches the girl on the gym bars in a gymnastic practice session as the girl swings on the bars in a gym filled with other children practicing gymnastics. The man then,The man then coaches the girl on the gym bars in a gymnastic practice session as the girl swings on the bars in a gym filled with other children practicing gymnastics.,The man then,gold,\"dismounts from the beam and spins and dips on the beam, as a large spectators watching her tumbling across the mat.\",closes standing next to the girl again and talking into the camera.,\"dismounts, throws several, and does a spin and jumps a rope again.\",goes back to the gymnast while a performer and student and female practice a routine on the foot of the mat.,1\n16107,anetv_RAluocUocdw,5882,An old building is seen on the edge of a cliff. Waves from the ocean,An old building is seen on the edge of a cliff.,Waves from the ocean,gold,come onto the shore of the lake.,\"are shown, including fishing boat.\",are reflected in the water below.,are crashing into the shore.,3\n16108,anetv_RAluocUocdw,11432,High ocean waves are shown from a coast. a man surfing,High ocean waves are shown from a coast.,a man surfing,gold,waves from the sea then walks towards the camera.,is shown with a new video.,is seen coming to his feet on his board.,is shown in the same location.,2\n16109,anetv_RAluocUocdw,5883,Waves from the ocean are crashing into the shore. A man,Waves from the ocean are crashing into the shore.,A man,gold,bowls with water as a surfer grips his board with surf spray.,is wakeboarding on a side of the shore and a whale wave from the shore below.,\"sprints down a deck holding no wharf, paddling a oars, continues walking.\",\"is surfing on the waves, holding on tight so he does n't lose his balance.\",3\n16110,anetv_RAluocUocdw,11433,A man surfing is seen coming to his feet on his board. the man,A man surfing is seen coming to his feet on his board.,the man,gold,continues to swing the ball while the camera captures him riding around on the diving board.,flips down and puts a ball in the water.,shows various angles of the water on a skateboard.,rides a large oncoming wave.,3\n16111,anetv_uqaSFllHrco,9979,Several shots of landscapes and people standing together are shown followed by people doing flips and tricks off a jump in the water. Dozens of people,Several shots of landscapes and people standing together are shown followed by people doing flips and tricks off a jump in the water.,Dozens of people,gold,sit on the side as well as many tumble drying their hands.,continue running as the others jump up and down.,are shown riding all along the beach as well as various clips of men playing in the water.,are shown performing tricks on a wakeboard along water with some in front of a large crowd in the end.,3\n16112,anetv_uqaSFllHrco,6876,Man is doing wakeboard on a calkm lake and doing jumps on slides on the water. people,Man is doing wakeboard on a calkm lake and doing jumps on slides on the water.,people,gold,are on the dock cheering the team up.,\"are on the ground, then camel behind the boys.\",are in a court with a lot of people sitting at the desk behind him sitting on the table.,\"are standing on stilts in the water, pulling on the skateboard.\",0\n16113,anetv_Bi3vlu17qp8,9279,People standing on the beach are tossing around an orange ball. There,People standing on the beach are tossing around an orange ball.,There,gold,are players on the court.,are of clips of horses playing the game around the pool.,create the people sitting excitedly talking to each other.,are people swimming in the water behind them.,3\n16114,anetv_Bi3vlu17qp8,9278,A person in a black shirt gets hit by a ball. People standing on the beach,A person in a black shirt gets hit by a ball.,People standing on the beach,gold,are trying jumping down.,celebrate a boy's face.,walks the process with the ball.,are tossing around an orange ball.,3\n16115,anetv_1UIhgxQXcfI,13281,\"Next he makes a ball of the grain and then flattens it out, he then puts a cup onto it to make little round shaped cookies. He puts them on a pan and into an oven, after they're done he\",\"Next he makes a ball of the grain and then flattens it out, he then puts a cup onto it to make little round shaped cookies.\",\"He puts them on a pan and into an oven, after they're done he\",gold,brushes the items as well as eating it.,eats them along with some beer.,cuts out of the cookies and adds more ingredients to the pot.,starts walking into the kitchen while one stranger also licks the ice.,1\n16116,anetv_1UIhgxQXcfI,13280,\"Then he adds an egg and salt to the grains, plus other ingredients too. Next he makes a ball of the grain and then flattens it out, he then\",\"Then he adds an egg and salt to the grains, plus other ingredients too.\",\"Next he makes a ball of the grain and then flattens it out, he then\",gold,puts a cup onto it to make little round shaped cookies.,spread it and read some more.,takes it immediately and then is done eating now eating.,adds some more and more baking.,0\n16117,anetv_1UIhgxQXcfI,13279,This person has dried grains and is now putting them into a small blender. Then he,This person has dried grains and is now putting them into a small blender.,Then he,gold,\"adds an egg and salt to the grains, plus other ingredients too.\",freezes for a board to make it down the sink.,\"adds some mix and fries something and mixes the egg, then, the man shows the drink cleaner and starts biking.\",\"adds the leash, forming, colorful.\",0\n16118,anetv_7xpkFhlxo2Q,4862,In the adjacent room men are playing volleyball. A guy,In the adjacent room men are playing volleyball.,A guy,gold,steps onto the wide rowing machine.,touches the white wall.,kicks his left hand.,stands in front of the table.,1\n16119,anetv_7xpkFhlxo2Q,18027,\"Two men are in a room with three white walls and a glass wall as the fourth. In the inside, they\",Two men are in a room with three white walls and a glass wall as the fourth.,\"In the inside, they\",gold,are doing various tricks with marley who are holding sticks one at a time in his canoes trying a addition.,stand in front of a mirror.,spot the backs of the men and both men spin and dance very close.,begin hitting a ball back and forth with a tennis racket.,3\n16120,anetv_rcqXzX-7ULg,14952,A woman is standing in front of a washer and dryer in a laundry room. Step by step instructions,A woman is standing in front of a washer and dryer in a laundry room.,Step by step instructions,gold,are on the screen on the right pink screen.,add on tools the packaging.,are given for ironing clothes.,\"are cleaning, painting the block with a brown tiled floor.\",2\n16121,anetv_rcqXzX-7ULg,14953,Step by step instructions are given for ironing clothes. She,Step by step instructions are given for ironing clothes.,She,gold,explains up to have some other eye contact representing ten advanced wrestling exercises.,shows how to prepare and iron clothing using a rag and steam.,steps off a bar line and dances.,throws a dry look followed by the crowd.,1\n16122,anetv_GwJ9DmiW8dk,4056,\"The woman begins her routine that includes, jumps, flips, and small dance moves. During the routine the woman\",\"The woman begins her routine that includes, jumps, flips, and small dance moves.\",During the routine the woman,gold,stops and the man begins to cheer in the bar doing an additional demonstration.,flips and slightly loses her balance but quickly recovers and remains on the balance beam.,begins to dance gracefully in a yoga pose before her performance.,plays about turning off the stage routine with the baton on the hips.,1\n16123,anetv_GwJ9DmiW8dk,4055,The woman jumps on the the balance beam and a man quickly grabs the ramp she used to jump onto the balance beam and removes it from the area. The woman,The woman jumps on the the balance beam and a man quickly grabs the ramp she used to jump onto the balance beam and removes it from the area.,The woman,gold,\"does a big flip and lands on the beam, with her arms out as she climbs up several times.\",\"flips several different times, and then grabs the barbell around her shoulders and lands on the floor springboard.\",\"begins her routine that includes, jumps, flips, and small dance moves.\",stands in the middle of the concrete and talks to the camera.,2\n16124,anetv_GwJ9DmiW8dk,4054,A woman in a purple bodysuit and wearing a bib on her back approaches a wooden balance beam in front of a large audience who is cheering her on. The woman jumps on the the balance beam and a man,A woman in a purple bodysuit and wearing a bib on her back approaches a wooden balance beam in front of a large audience who is cheering her on.,The woman jumps on the the balance beam and a man,gold,does somersaults and flips.,\"gets from the board, then make a flip.\",hops on his toes.,quickly grabs the ramp she used to jump onto the balance beam and removes it from the area.,3\n16125,lsmdc3004_500_DAYS_OF_SUMMER-1800,2860,\"A young woman is on a sofa also, waiting. She\",\"A young woman is on a sofa also, waiting.\",She,gold,sits on the floor with her hand stretched up for her cigarette.,has long dark hair.,wrings her hands with her hands and goes to the bathroom door.,wakes up and looks up.,1\n16126,lsmdc3004_500_DAYS_OF_SUMMER-1800,2859,Someone takes a seat on a balustraded balcony area. A young woman,Someone takes a seat on a balustraded balcony area.,A young woman,gold,\"is on a sofa also, waiting.\",looks with slicked hair as she approaches.,\"stands on the fireplace, gazing out at her rouged face, who sits in a green chair.\",hangs out a rear window.,0\n16127,lsmdc0027_The_Big_Lebowski-62877,4936,Someone absently licks his lips as we faintly hear a hall rumbling down the lane. In his outflung hand,Someone absently licks his lips as we faintly hear a hall rumbling down the lane.,In his outflung hand,gold,\", he turns all over and approaches him.\",\", someone clutches someone's chest.\",\", the contents charge down the lane.\",lies a cassette case labeled venice.,3\n16128,lsmdc0027_The_Big_Lebowski-62877,4937,\"From a high angle we see someone hurtling down toward the city, dragged by the ball. Led by the bowling ball, he\",\"From a high angle we see someone hurtling down toward the city, dragged by the ball.\",\"Led by the bowling ball, he\",gold,zooms past the camera leaving us in black.,\"swings the racket around him, then turns.\",turns at a limping woman and a british police avenue behind him.,repeats the same basketball to a goalie set it like a disassembled trolley.,0\n16129,lsmdc0027_The_Big_Lebowski-62877,4940,The black rolls away and we are spinning - - spinning down a bowling lane - - our point of view that of someone trapped in the thumbhole of the rolling ball. We,The black rolls away and we are spinning - - spinning down a bowling lane - - our point of view that of someone trapped in the thumbhole of the rolling ball.,We,gold,boys; the diner is closed.,\"crime, someone pops his head down as someone stares at someone, his gloved hand clutching someone roughly.\",see the receding bowler spinning away.,\"are in a plastic pickup, sipping a cup of coffee.\",2\n16130,lsmdc0027_The_Big_Lebowski-62877,4938,\"We pull back to reveal that the blackness was the inside of a ball return, and the gleaming bowling ball is being regurgitated up at us, overtaking us. Someone\",\"We pull back to reveal that the blackness was the inside of a ball return, and the gleaming bowling ball is being regurgitated up at us, overtaking us.\",Someone,gold,\"looks up, up, up at the looming ball, its mass rolling a huge shadow across his face.\",\"steps in at the change angle, reaches for the ball.\",feels better than liquor in her bag.,waves the film and is coming along to the balcony until we see him from far above.,0\n16131,lsmdc0027_The_Big_Lebowski-62877,4946,\"We are close on someone, upside down. His head\",\"We are close on someone, upside down.\",His head,gold,is fast and heavy.,\"is now resting against hardwood floor, not rug.\",rolls down on her.,is angled to his chest anew.,1\n16132,lsmdc0027_The_Big_Lebowski-62877,4942,Floor spins up at us and then away; ceiling spins up and away; the length of the alley with pins at the end; floor; ceiling; approaching pins; again and again. We,Floor spins up at us and then away; ceiling spins up and away; the length of the alley with pins at the end; floor; ceiling; approaching pins; again and again.,We,gold,throw a hammer down the hall.,hit the pins and clatter into blackness.,\"are very deliberately down, shattering both dutch.\",\"is smashed to a poster occupied by many feet, including a machine, with a sheer score flag, the collapsing one.\",1\n16133,lsmdc0027_The_Big_Lebowski-62877,4943,We hit the pins and clatter into blackness. We,We hit the pins and clatter into blackness.,We,gold,rush towards the vehicle.,\"pass someone, the cat that is lying on his bed.\",\"see pins spin, hit each other and drop.\",\", the man takes the camera in front of the baby, who is in the bathtub.\",2\n16134,lsmdc0027_The_Big_Lebowski-62877,4939,\"Someone looks up, up, up at the looming ball, its mass rolling a huge shadow across his face. The gleaming ball\",\"Someone looks up, up, up at the looming ball, its mass rolling a huge shadow across his face.\",The gleaming ball,gold,\"comes on, gun - which.\",shows three dead black holes rolling toward us - - finger holes.,'s wings propelled its way out of the pond.,of blood is rushed through someone's body towards the altar.,1\n16135,lsmdc0027_The_Big_Lebowski-62877,4941,We see the receding bowler spinning away. It,We see the receding bowler spinning away.,It,gold,been removed from the defiantly ruffled material.,\"wait on the stairs, giving his body to his position, and goes through her track.\",\"is the blonde woman, performing her follow - through.\",mounted on a street pass united.,2\n16136,anetv_WJfMz7joX4s,14306,An ice hockey player falters and almost falls. Then he,An ice hockey player falters and almost falls.,Then he,gold,does slip and fall.,gets up from the hook and slides to the ground.,runs across the field.,serves the congress and hugs a boy.,0\n16137,anetv_WJfMz7joX4s,1367,A hockey player is swinging around his stick on the ice. He,A hockey player is swinging around his stick on the ice.,He,gold,puts his side stick on.,trips and falls down on his knees.,releases a ball and shoots it against the wall.,pushes his target out of the basket.,1\n16138,anetv_WJfMz7joX4s,14307,Then he does slip and fall. His teammates,Then he does slip and fall.,His teammates,gold,run back into the sand and run for it.,race from the bush to the ground.,glide past as he continues to struggle to stay upright.,now seconds on the rope every time.,2\n16139,anetv_WJfMz7joX4s,1368,He trips and falls down on his knees. He,He trips and falls down on his knees.,He,gold,dismounts and swings his arms.,sits in an armchair next to someone.,picks up his money bouquet and hands it back to someone.,\"gets back up, looking disoriented as he rejoins his team, falling again.\",3\n16140,anetv_08wKlw4a_so,8702,\"The lady stops raking, turns around, and talks plus gestures. A white ball\",\"The lady stops raking, turns around, and talks plus gestures.\",A white ball,gold,rolls to a parked car.,is hovering above the log.,scarf is watching from the background.,is removed from the chair while several information cuts grass to a girl.,0\n16141,anetv_08wKlw4a_so,8701,A lady rakes leaves from the lawn onto the pavement sidewalk. The lady,A lady rakes leaves from the lawn onto the pavement sidewalk.,The lady,gold,picks up the leaves and gets in the snow with her hands.,pours another one and is cleaning the top of the lady when the painting is done.,\"stops raking, turns around, and talks plus gestures.\",at the front then shows the camera as he peers over the couch and we see the trees in its yard.,2\n16142,anetv_08wKlw4a_so,8700,A black dog walks on a lawn. A lady,A black dog walks on a lawn.,A lady,gold,bounces a tube down town on her stilts.,walks around the camel.,rakes leaves from the lawn onto the pavement sidewalk.,demonstrates tricks to handle grass on the croquet board.,2\n16143,lsmdc0021_Rear_Window-58714,933,\"He discusses each piece, apparently trying to make some decision. Someone\",\"He discusses each piece, apparently trying to make some decision.\",Someone,gold,matches his driver's license and points on the phone.,\"he and someone enter, wearing a lipstick.\",lowers his camera lens and edges his chair forward in an effort to hear what someone is saying.,allows himself to walk patiently on the edge of the finger.,2\n16144,lsmdc0021_Rear_Window-58714,942,\"The door opens, and someone stands silhouetted in the entrance, black - lighted by the corridor lights. Someone's head\",\"The door opens, and someone stands silhouetted in the entrance, black - lighted by the corridor lights.\",Someone's head,gold,\"is turned upside down on the school, where his eyes are drawn.\",is wrapped with scaly brown.,appears beside two palace supports.,\"is turned toward her, his back more toward the neighborhood.\",3\n16145,lsmdc0021_Rear_Window-58714,947,\"He comes to the window, glass in hand, and looks down into the garden, nonchalantly. He\",\"He comes to the window, glass in hand, and looks down into the garden, nonchalantly.\",He,gold,shifts his deathly gaze and looks off.,\"stops, turns to her quickly.\",aims his gun at someone.,takes his hand from someone's breast and draws a little.,1\n16146,lsmdc0021_Rear_Window-58714,932,\"As he talks, thoughtfully, he takes some jewelry from the handbag - - a couple of rings, diamond wristwatch, brooch, pearls, etc. He\",\"As he talks, thoughtfully, he takes some jewelry from the handbag - - a couple of rings, diamond wristwatch, brooch, pearls, etc.\",He,gold,\"discusses each piece, apparently trying to make some decision.\",pulls the screws up.,lets him up in the arms of his friends and leads him through the crowd.,plunges into an attic and pulls someone's bag out of his pocket pocket.,0\n16147,lsmdc0021_Rear_Window-58714,934,\"The first four of the song - writer's guests come through the door, admitted by the song - writer's girl friend. The song - writer\",\"The first four of the song - writer's guests come through the door, admitted by the song - writer's girl friend.\",The song - writer,gold,makes her way through the crowd.,continues to sing in slow motion while within her workout.,stops and furrows her lips as if searching.,\"dashes off a loud vamp of greeting on the piano, then gets up to offer drinks.\",3\n16148,lsmdc0021_Rear_Window-58714,940,\"He lifts the top two coats slightly, and slides the handbag under them and out of sight. He\",\"He lifts the top two coats slightly, and slides the handbag under them and out of sight.\",He,gold,\"heads off, leaving his room, including a boy in a white t - shirt and coat on a crowded street.\",returns to his contact questions sitting on his lap.,\"lowers the camera lens, and turns his attention to his door.\",drops the last stuffed baby into his coat pocket.,2\n16149,lsmdc0021_Rear_Window-58714,939,He goes to a pile of coats lying on the bed. He,He goes to a pile of coats lying on the bed.,He,gold,is shaving the floor with his hands.,comes around and sits down next to the young boy who looks through the bed and watches anxiously.,\"lifts the top two coats slightly, and slides the handbag under them and out of sight.\",aims a bullet into the boy's face and rises around his neck.,2\n16150,lsmdc0021_Rear_Window-58714,941,\"He lowers the camera lens, and turns his attention to his door. The door opens, and someone\",\"He lowers the camera lens, and turns his attention to his door.\",\"The door opens, and someone\",gold,walks into someone's room.,continues to form the story on him.,\"stands silhouetted in the entrance, black - lighted by the corridor lights.\",carefully climbs over the door to see someone changing down her skirt off to the side.,2\n16151,lsmdc0021_Rear_Window-58714,935,\"The song - writer dashes off a loud vamp of greeting on the piano, then gets up to offer drinks. Someone\",\"The song - writer dashes off a loud vamp of greeting on the piano, then gets up to offer drinks.\",Someone,gold,puts down the bottle of tea and assist his date.,\"turns his attention back to someone, but gives up any attempt at listening.\",skeleton starts by shaking his head and wing.,is hair across the side of a can.,1\n16152,lsmdc0021_Rear_Window-58714,945,\"Someone abruptly turns back to the window, as someone dashes into the picture behind him, and looks out. The lights are out in someone's bedroom, and someone\",\"Someone abruptly turns back to the window, as someone dashes into the picture behind him, and looks out.\",\"The lights are out in someone's bedroom, and someone\",gold,\"breaks the pints, putting someone into the back seat.\",\"lies at the side of the bed, covering his torn shirt.\",sprints from the front door.,is in the act of pouring himself out a drink in the living room.,3\n16153,lsmdc0021_Rear_Window-58714,938,\"Having completed his call, someone returns to the bedroom carrying the handbag. He\",\"Having completed his call, someone returns to the bedroom carrying the handbag.\",He,gold,lifts his ear to someone as he touches it.,rests his head on someone's shoulder and lightly rubs his left stomach with his foot.,\"splatters stones on the canvas, carrying pictures of children.\",goes to a pile of coats lying on the bed.,3\n16154,lsmdc0021_Rear_Window-58714,946,\"The lights are out in someone's bedroom, and someone is in the act of pouring himself out a drink in the living room. He\",\"The lights are out in someone's bedroom, and someone is in the act of pouring himself out a drink in the living room.\",He,gold,\"comes to the window, glass in hand, and looks down into the garden, nonchalantly.\",\"stares out of the window, clinging to his chin.\",decides to leave him.,\"is still staring admiring the windows as someone gazes between them, then he turns to face the reading of a german camper.\",0\n16155,lsmdc0021_Rear_Window-58714,937,\"He lift the long - focus lens up to his eyes again. Having completed his call, someone\",He lift the long - focus lens up to his eyes again.,\"Having completed his call, someone\",gold,lowers his cap as he caresses her face and takes a deep breath.,wears his expression as he grins at a security camera.,strides down into his coat.,returns to the bedroom carrying the handbag.,3\n16156,lsmdc0021_Rear_Window-58714,948,\"He stops, turns to her quickly. Someone\",\"He stops, turns to her quickly.\",Someone,gold,lies in bed watching her roommate.,turns back to the window.,stretches firmly in her hand.,remains by her captivated blades.,1\n16157,lsmdc0021_Rear_Window-58714,944,It's an attractive picture. Someone,It's an attractive picture.,Someone,gold,\"says it, and too, his leather - like sack falls from the back of the bike.\",\"abruptly turns back to the window, as someone dashes into the picture behind him, and looks out.\",\"pulls on a bench on the mat, facing her, on her knees doing various looks.\",returns to the bottom of the plant.,1\n16158,anetv_5rtrGkZNfLo,1274,A standing man talks to the camera with two women seated beside him. The camera pans,A standing man talks to the camera with two women seated beside him.,The camera pans,gold,to focus on the two women.,to show a person kneeling.,to show the man playing congas while several men in dark.,to show the woman with yarn.,0\n16159,lsmdc1023_Horrible_Bosses-81960,2213,Street lamps illuminate the darkened street as they drive on. They,Street lamps illuminate the darkened street as they drive on.,They,gold,the entirely team finds someone's less janitor in a poem recess.,search and exit the actual restaurant.,\"hop out of the grungy car, which he has just locked.\",pull up outside someone's palatial home and park in the shadows.,3\n16160,anetv_3YiGMRp-7B4,8158,The people move in several martial arts techniques. They,The people move in several martial arts techniques.,They,gold,kick and punch back and forth.,gather to a waiting area of movements.,are celebrating when an audience.,are playing the game with a bowling bin.,0\n16161,anetv_EzQL-i_MTdU,18638,\"A man wearing a usa shirt, or team uniform approaches a two sided weight as a woman watches from the side near a door. The man lifts the weight and the camera\",\"A man wearing a usa shirt, or team uniform approaches a two sided weight as a woman watches from the side near a door.\",The man lifts the weight and the camera,gold,shows the process in slow motion.,\"goes several times, then moving his hands up and down.\",\"raises the needle, his legs way before the wire.\",pans to his left lower level.,0\n16162,anetv_EzQL-i_MTdU,18637,\"A man at a professional sports event, lifts a large and heavy weight using knees, back and arm strength while a woman in a suit watches from the sidelines. A man wearing a usa shirt, or team uniform\",\"A man at a professional sports event, lifts a large and heavy weight using knees, back and arm strength while a woman in a suit watches from the sidelines.\",\"A man wearing a usa shirt, or team uniform\",gold,stand on and ottoman with the cones.,\"makes his way out while also holding on stilts, and show them by going off ramps.\",approaches a two sided weight as a woman watches from the side near a door.,gather on the curved platform swinging around.,2\n16163,anetv_cqgecSy943o,8874,The man then skateboards on a ramp. He,The man then skateboards on a ramp.,He,gold,rides up on the rope and jumps.,performs stunts in a field.,puts down another surfer's skateboard.,tries to run up the ramp without a skateboard.,3\n16164,anetv_cqgecSy943o,8875,He tries to run up the ramp without a skateboard. A child,He tries to run up the ramp without a skateboard.,A child,gold,rides on a bicycle on the streets of skateboarders.,strip down on a sidewalk and jumps into the water and juggle from the skateboard.,slides down the ramp on her butt.,is standing in the area watching him.,2\n16165,anetv_cqgecSy943o,8873,A man bends over to talk to the camera. The man then,A man bends over to talk to the camera.,The man then,gold,begins for a bicycle and starts assembling a pumpkin.,proceeds to prepare the vacuum.,begins talking about the shorts.,skateboards on a ramp.,3\n16166,anetv_cqgecSy943o,8877,The man chases his skareboard. The man,The man chases his skareboard.,The man,gold,pats the boy with a throwing towel.,talks to the camera.,runs the frisbee through a basket.,catches a cow and leaves the tree.,1\n16167,anetv_cqgecSy943o,8876,A child slides down the ramp on her butt. The man's skateboard,A child slides down the ramp on her butt.,The man's skateboard,gold,is in the air multiple times.,gets away from him.,is replayed in slow motion.,falls from a cruise and jumps high up onto the street and comes to a stop.,1\n16168,lsmdc3078_THE_WATCH-36147,3084,Someone writes something and hands it to someone. Someone,Someone writes something and hands it to someone.,Someone,gold,wraps her arm around someone's neck as someone gulps after his friend.,hurries up the stairs.,drops the letter in the typewriter.,snatches it and hands it back to someone.,3\n16169,anetv_p8tlnMtsTf8,17050,A helicopter is seen driving over an ocean where people are seen surfing. Several shots,A helicopter is seen driving over an ocean where people are seen surfing.,Several shots,gold,are shown of people riding down a river with kayaks as other as a rock.,are shown of people surfing on skis in several different locations.,are shown of people riding along the water and others sitting.,are shown of another person skiing.,2\n16170,anetv_p8tlnMtsTf8,17051,Several shots are shown of people riding along the water and others sitting. The people,Several shots are shown of people riding along the water and others sitting.,The people,gold,continues riding around on the camels while speaking to the camera while walking around.,continue riding along the water while the helicopter rides around.,continue in wandering around running and all laughing and smiling to one another.,continue jumping up and down in the water while smiling and laughing.,1\n16171,anetv_FOm0uKw7dXc,1823,Two people are seen standing on a stage and the man walks towards the woman. The two,Two people are seen standing on a stage and the man walks towards the woman.,The two,gold,continue walking around with their backs and kicking their legs around the room dancing and dancing around them and end.,continue to dance with one another while another sits in front of drums.,take their turns and begin dancing with one another.,begin performing a tango routine with one another.,3\n16172,anetv_FOm0uKw7dXc,14839,Two people are seen standing when the man walks over and begins dancing with the woman. The couple,Two people are seen standing when the man walks over and begins dancing with the woman.,The couple,gold,\"moves down and places her arms around the woman, while the others continue with her.\",continues dancing around and smoking.,perform a routine on the stage moving each other all around and ends with them standing together.,follows each other along to the dance routine.,2\n16173,anetv_FOm0uKw7dXc,1824,The two begin performing a tango routine with one another. They,The two begin performing a tango routine with one another.,They,gold,make a twirl as they comes and take a hit.,continue dancing around with one another and end by holding a pose.,continue to arm wrestle as they continue dancing.,enter the room and they continue to belly dance.,1\n16174,anetv_Xpb1Lup1GAU,16873,The woman continues her knitting. The woman,The woman continues her knitting.,The woman,gold,speaks to the camera once more.,talks and start talking.,holds a tape pink garment and two lines toy the it while the woman applies the paint at the camera.,shows off her work so far and continues knitting.,3\n16175,anetv_Xpb1Lup1GAU,16872,A woman sits by a window knitting a white piece. The woman,A woman sits by a window knitting a white piece.,The woman,gold,holds up a pattern book with an image of the piece she is working on.,helps the child reach the top of the bars without touching anther.,secures the gold piece in it and cuts it in half.,starts blow drys her hair.,0\n16176,anetv_BTUgRe4aSsg,4743,The woman twirls the stringed weight gathering momentum as she then begins to spin her whole body around. She,The woman twirls the stringed weight gathering momentum as she then begins to spin her whole body around.,She,gold,lifts the baton on her shoulders and stick.,slams the lid and starts wiping it and grabs a resistance as it travels scotch to her final landing.,lets go and tosses it as she lets out a loud scream.,jumps on the floor and finishes moving.,2\n16177,anetv_BTUgRe4aSsg,4745,The hammer then goes into the field as officials go to see where it lands. The cameras now,The hammer then goes into the field as officials go to see where it lands.,The cameras now,gold,show the man as the player off his serve.,shows the bomb driving back and forth.,and flags are displayed in the court.,show the emotional athlete walking around the event area.,3\n16178,anetv_BTUgRe4aSsg,19268,An athlete is seen stepping up to a circle with people watching on the sides and her spinning around. She,An athlete is seen stepping up to a circle with people watching on the sides and her spinning around.,She,gold,continues along the correct direction as well as slamming the fence and looking off into the distance.,bottles are seen behind the goal and leads into a young girl sitting on the saddle holding an object stuck to his hand.,throws the object off into the distance and is seen walking away crying.,people are shown taking picture and dancing on the field.,2\n16179,anetv_BTUgRe4aSsg,4744,She lets go and tosses it as she lets out a loud scream. The hammer then,She lets go and tosses it as she lets out a loud scream.,The hammer then,gold,knocks the puck aside and we descend toward someone to see someone on the quad.,goes into the field as officials go to see where it lands.,lift her hands but crash the position of the furnace.,\"incinerates her face, soaping down at both her neck and then talks to the camera.\",1\n16180,anetv_35Xzs3Bz1hQ,4876,Another entrepreneur talks with the the reporters about the coffee business. Then they,Another entrepreneur talks with the the reporters about the coffee business.,Then they,gold,are in the coffee shop them making coffee and working around.,go under and slow down on the bed.,show off the information for the first time.,use to spray a beer in the front of the car.,0\n16181,anetv_35Xzs3Bz1hQ,4875,Another man is talking to some reporters with the microphone. Another entrepreneur,Another man is talking to some reporters with the microphone.,Another entrepreneur,gold,is playing beach soccer.,talks with the the reporters about the coffee business.,speaks to the group.,of tattoos is shown.,1\n16182,anetv_QTfz_zprGcQ,527,\"A btrtv reporter visits a soul cycle studio and store, interviews a soul cycle instructor and takes a sample soul cycle class. A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and\",\"A btrtv reporter visits a soul cycle studio and store, interviews a soul cycle instructor and takes a sample soul cycle class.\",\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and\",gold,\"demonstrates with the paper changes and a different woman standing next to him, and speaks to the screen.\",throws it several more times.,then demonstrating a shot of basketball matches.,then enters the store and interviews a soul cycle instructor.,3\n16183,anetv_QTfz_zprGcQ,528,\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and then enters the store and interviews a soul cycle instructor. The reporter then\",\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and then enters the store and interviews a soul cycle instructor.\",The reporter then,gold,returns to talking to the camera in a flashback and the more cartoon credits show from a woman's perspective.,changes the channel and continues talking to the camera.,begins to take photos.,changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes.,3\n16184,anetv_QTfz_zprGcQ,529,The reporter then changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes. The reporter,The reporter then changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes.,The reporter,gold,prepares the cigarette in a brief motion as she counts and then says back.,\"watching hospital, journalist and to the front of one hilton and take photos of the man.\",returns to interviewing the soul cycle instructor with a final shot of rows of clothing hanging in the soul cycle store.,is shown and the special tentative sits both handed.,2\n16185,lsmdc3018_CINDERELLA_MAN-8110,19246,\"She slams the glass down and stomps off. Jaw tensed, someone\",She slams the glass down and stomps off.,\"Jaw tensed, someone\",gold,lifts his brow and gestures to the kids.,touches a makeup rack.,shifts on his feet.,rests her hands on the hanging wall just as someone tries to control the fiery cube.,2\n16186,anetv_Nn4sVR3__DQ,2371,She is contemplating going down for a while. She finally,She is contemplating going down for a while.,She finally,gold,slides down it with baby.,pulls off the string and continues lifting it up near the top.,opens down the slide.,makes a series of layered turns.,0\n16187,anetv_Nn4sVR3__DQ,2372,She finally slides down it with baby. When they reach the bottom she lets him go and he,She finally slides down it with baby.,When they reach the bottom she lets him go and he,gold,does the same thing.,starts to walk around.,slips a fist into her face.,slides on top of the slide.,1\n16188,anetv_Nn4sVR3__DQ,2370,A mom is sitting at the top of a slide with her little baby. She,A mom is sitting at the top of a slide with her little baby.,She,gold,pulls out the monkey handle.,\", the boy takes out a gift paper and puts the wrapping paper down in a pile.\",is standing at the pinata as she lays and picks up.,is contemplating going down for a while.,3\n16189,anetv_G9ynahMxUz8,13655,\"They continue kicking and throwing the ball to each other, and a man joins in. The little girl\",\"They continue kicking and throwing the ball to each other, and a man joins in.\",The little girl,gold,\"chases down the ball, bringing it back.\",\"wakes up while she serves herself, watching triumph when sight of the girl as well.\",hit the ball with the stick super the players slide the stick trying to hit it too.,\"lights the match and the girl puts her pants down and pauses, then she returns and smiles.\",0\n16190,lsmdc3079_THINK_LIKE_A_MAN-36612,12278,Now someone returns home to find bare walls and empty shelves. He,Now someone returns home to find bare walls and empty shelves.,He,gold,circles dangling from his lap.,hides himself amid the debris.,drops his pizza box.,\"swallows a few times, then frowns over at the pills in his hand.\",2\n16191,anetv_So3EfVyUP64,14592,A woman with short hair is seen talking to the camera then flipping a pair of paints inside out. She,A woman with short hair is seen talking to the camera then flipping a pair of paints inside out.,She,gold,starts painting the nails with a brush and painting the nails.,edges the icing over the drying machine and bends quickly.,folds the pants neatly on an ironing board and begins ironing the paints thoroughly.,shows off the balance smock.,2\n16192,lsmdc1047_Defiance-91223,16690,\"Someone, sitting with his legs drawn up in front of him, slowly gets up to his feet, and throws the cloth bundle over his shoulder. Dark green conifers\",\"Someone, sitting with his legs drawn up in front of him, slowly gets up to his feet, and throws the cloth bundle over his shoulder.\",Dark green conifers,gold,stretch as far as the eye can see.,\"tumbles on the floor, through the storeroom, back through the center of the room.\",\"hangs from his hand, creeps out on front a house's city, someone's trailer.\",started to head right to the right and head down.,0\n16193,lsmdc1047_Defiance-91223,16692,\"A man strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms. The stone - faced man in his late thirties, in a cloth cap and a brown leather jacket over heavy wool trousers,\",A man strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms.,\"The stone - faced man in his late thirties, in a cloth cap and a brown leather jacket over heavy wool trousers,\",gold,sits alone at the edge of a circular bar.,picks up a stone and tosses it onto the ground.,walks across the house towards the e - deck hall.,\"sits on the floor, his head covered with snow.\",1\n16194,lsmdc1047_Defiance-91223,16691,Dark green conifers stretch as far as the eye can see. A man,Dark green conifers stretch as far as the eye can see.,A man,gold,flies in the air again howling over the water.,strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms.,talks with a professional man and throws a pandemonium machine.,has a white price pattern on his hand looking at the phone.,1\n16195,lsmdc1047_Defiance-91223,16689,\"Someone pats someone's neck, and for a moment rests his head against his brother's brow. Someone, sitting with his legs drawn up in front of him,\",\"Someone pats someone's neck, and for a moment rests his head against his brother's brow.\",\"Someone, sitting with his legs drawn up in front of him,\",gold,\"makes his way toward the coat, collar to its rim.\",walks to the door and steps to the porch.,\"slowly gets up to his feet, and throws the cloth bundle over his shoulder.\",quickly moves around the table; dead model staring at him.,2\n16196,lsmdc1047_Defiance-91223,16688,Someone hold his brother to his Feet and leans him up against a tree. Someone,Someone hold his brother to his Feet and leans him up against a tree.,Someone,gold,'s name is projected on the engineer's head.,\"pats someone's neck, and for a moment rests his head against his brother's brow.\",stops eating and slows to scotty moment.,nudges the naked guy with his blanket.,1\n16197,lsmdc1047_Defiance-91687,3838,\"He smiles at her as he rubs his hands. He drapes his coat around her shoulders, and she\",He smiles at her as he rubs his hands.,\"He drapes his coat around her shoulders, and she\",gold,eyes the jagged glasses of his golden blonde hair.,slips on his back.,thanks him with a nod.,wraps a towel around his waist.,2\n16198,lsmdc1047_Defiance-91687,3837,He throws a small log into the stove. He,He throws a small log into the stove.,He,gold,overtakes it and our two friends hands.,stoically set in a pile as a collection of retired peace signs appear.,smiles at her as he rubs his hands.,\"field, someone guarded outside.\",2\n16199,lsmdc1047_Defiance-91687,3834,\"Zeus face turns to the side. At the camp someone in his heavy gray coat and hat, machine gun over his shoulder,\",Zeus face turns to the side.,\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder,\",gold,streams across the road.,steps into a dark cabin where someone is sitting by a stove.,\"shoots out - quietly, den like a trashcan in the demon.\",is two women and that one touch his gloves.,1\n16200,lsmdc1047_Defiance-91687,3839,\"He drapes his coat around her shoulders, and she thanks him with a nod. Reaching into his trouser pocket, he\",\"He drapes his coat around her shoulders, and she thanks him with a nod.\",\"Reaching into his trouser pocket, he\",gold,pauses his vest clutching the small revolver.,peeks out the rear side window.,picks up the book.,brings out his revolver.,3\n16201,lsmdc1047_Defiance-91687,3835,\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder, steps into a dark cabin where someone is sitting by a stove. He\",\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder, steps into a dark cabin where someone is sitting by a stove.\",He,gold,\"appears, carving the driver's hand and the keys once again.\",put the gun down.,staggers out from under a table and throws them something.,turns back to the display.,1\n16202,lsmdc1047_Defiance-91687,3836,He put the gun down. He,He put the gun down.,He,gold,stops the member again at the kids's table.,throws a small log into the stove.,leans over to kiss his face.,puts on another potato.,1\n16203,anetv_e_0bMJEFiN8,3349,The guy waves and later gives two thumbs up. The guy,The guy waves and later gives two thumbs up.,The guy,gold,uses the board to use skateboard as the dog paddles through the water.,uses a towel to soap and wash his hands.,sticks out his tongue and wags it.,leaves as the fly gathers.,2\n16204,anetv_e_0bMJEFiN8,3348,The guy blows his air on the faucet. The guy waves and,The guy blows his air on the faucet.,The guy waves and,gold,gives us the hour video.,later gives two thumbs up.,gives the first guy a cup of coffee.,pumps the handle of the saxophone.,1\n16205,anetv_e_0bMJEFiN8,3347,A guy whips a sink's faucet with paper towels. The guy,A guy whips a sink's faucet with paper towels.,The guy,gold,exits a bathroom spits water from the sink.,points a finger at the sink and regains dusting of water.,blows his air on the faucet.,puts a towel on someone's ass.,2\n16206,anetv_e_0bMJEFiN8,18747,A man is talking inside a bathroom. He,A man is talking inside a bathroom.,He,gold,is using a rag to clean a sink.,is putting makeup on his face.,uses steel brushes from the waist and then sprays the mop.,is wearing a pair of welding safety gloves.,0\n16207,anetv_e_0bMJEFiN8,18748,He is using a rag to clean a sink. He,He is using a rag to clean a sink.,He,gold,lathers up and wipes it all back down.,dries his shoes with a towel.,continues to polish the shoe.,quickly washes his legs from the dresser.,0\n16208,anetv_ZjvmWr5LoFw,1115,A group of children play bumper cars in an amusement park setting. A group of children,A group of children play bumper cars in an amusement park setting.,A group of children,gold,dry sidewalks and have a conversation as well as the crowd of the children off of sidelines.,drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines.,hold out words with colorful medals that the scrabbles enjoy as kids celebrate on city streets.,are elevated up as the children continue to work in the grass.,1\n16209,anetv_ZjvmWr5LoFw,1116,A group of children drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines. The cars are suddenly stopped from working and a worker,A group of children drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines.,The cars are suddenly stopped from working and a worker,gold,walks on the floor between the cars and then walks amount the children as if speaking to them.,is watching in the background of a bank.,stands and stretches a rope across the side of the roof.,sits waiting in front of the camera.,0\n16210,anetv_ZjvmWr5LoFw,13549,\"Kids drives bumper cars in a carnival while kids drive around. Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids\",Kids drives bumper cars in a carnival while kids drive around.,\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids\",gold,puts in the machine on their rails.,continue driving and bumping cars.,begin to run for back spinning wheels.,turn and walk away.,1\n16211,anetv_ZjvmWr5LoFw,13551,\"The kids continue driving, spinning the cars and bumping other cars. Then the cars top and kids\",\"The kids continue driving, spinning the cars and bumping other cars.\",Then the cars top and kids,gold,soar across a road.,pull out of the driveway.,come out and play across the road.,get out the cars.,3\n16212,anetv_ZjvmWr5LoFw,1117,The cars are suddenly stopped from working and a worker walks on the floor between the cars and then walks amount the children as if speaking to them. The cars start moving again and the children continue to drive until the cars are stopped again and the worker,The cars are suddenly stopped from working and a worker walks on the floor between the cars and then walks amount the children as if speaking to them.,The cars start moving again and the children continue to drive until the cars are stopped again and the worker,gold,returns to the floor among the children before the scene fades out and some of the kids get off of the bumper cars.,makes the way across the sensual spain.,does the wheel when the people is being driven on cars.,stops at a black wipers.,0\n16213,anetv_ZjvmWr5LoFw,13550,\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids continue driving and bumping cars. The kids\",\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids continue driving and bumping cars.\",The kids,gold,\"continue driving, spinning the cars and bumping other cars.\",walk through the area of the parking lot.,follow suit as they try to solve each other.,\"continue out and use the motorcycles, throwing the young, as the family urges it off.\",0\n16214,anetv_JKZ-3N1fYL8,3038,A woman is working outside in the yard. She,A woman is working outside in the yard.,She,gold,dumps snow out of the car.,is using a large rake to work.,takes the car back into the sink and grabs back to work on back the car.,uses focus equipment to mattress space tights for another round of drones.,1\n16215,anetv_JKZ-3N1fYL8,3039,She is using a large rake to work. She,She is using a large rake to work.,She,gold,puts on a lipstick as the girl dries her hair.,\"turns over, on car stunts as she falls.\",uses a comb to clean her hair.,is raking leaves out of the grass.,3\n16216,anetv_JKZ-3N1fYL8,16981,Woman is in a abandoned field raking dy leaves from the floor. old woman,Woman is in a abandoned field raking dy leaves from the floor.,old woman,gold,is holding an orange trimming pull in a brown basket.,in brown stands in front with the lawn mower.,is sweeping dry leaves from the floor.,is making castles in woman.,2\n16217,anetv_JKZ-3N1fYL8,16982,Old woman is sweeping dry leaves from the floor. woman,Old woman is sweeping dry leaves from the floor.,woman,gold,is wearing red pants playing with her shoes and playing.,is wearing a cap and is standing on the dusty path sweeping.,is walking around the room with a mop and also burning in clothes.,is holding two cat and brown blow dryer leaves.,1\n16218,anetv_xCedPpnP6Wg,2082,Man is wearing stilts and its ready to cross the street. two women are standing trying to cross the street and a bus,Man is wearing stilts and its ready to cross the street.,two women are standing trying to cross the street and a bus,gold,is crossing the street.,comes to help with two men.,is reaching his car.,is passing in sreet.,3\n16219,anetv_xCedPpnP6Wg,2083,Two women are standing trying to cross the street and a bus is passing in sreet. the green bus pass in the street anda lot of people,Two women are standing trying to cross the street and a bus is passing in sreet.,the green bus pass in the street anda lot of people,gold,wearing blue and standing on a sidewalk talking to the camera.,are sitting in bumper cars.,running in a marathon.,are sitting on top.,3\n16220,anetv_ATk8OkvNHHQ,9586,A camera pans all around a person sitting on a bike putting gloves on and leads into several clips of people riding tracks on bikes. The people,A camera pans all around a person sitting on a bike putting gloves on and leads into several clips of people riding tracks on bikes.,The people,gold,continue riding around on the tracks while performing various flips and tricks and cameras shown from many angles.,continue to ride around in snowboard while rubbing along on each side not stopping.,are shown as well as walking between cuts and flattening weights.,ride onward and continue driving around as well as walking on camels.,0\n16221,anetv_ATk8OkvNHHQ,10284,A young boy is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place. Various clips of different boys all dressed up in their protective bike gear,A young boy is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place.,Various clips of different boys all dressed up in their protective bike gear,gold,play as they are all shown riding their bikes very quickly around different tracks.,begin to pull together.,are packed with tires.,as welding in a field.,0\n16222,anetv_ATk8OkvNHHQ,10283,An intro screen appears and white words on the screen appear that say 100% bmx race 4. A young boy,An intro screen appears and white words on the screen appear that say 100% bmx race 4.,A young boy,gold,appears loudly unblinking for the camera.,is going over the bars going fast into the finish line.,is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place.,in a sweater is shown in the roller and striped in a traditional track in a competition.,2\n16223,lsmdc1047_Defiance-91434,12597,The brothers help someone out into the sunshine. Someone,The brothers help someone out into the sunshine.,Someone,gold,follows him by a denim digs.,gives him a bear hug.,overtakes the cafe with the flower and then shoots her a questioning look.,\"climbs off of the car, gets up, and goes.\",1\n16224,lsmdc1047_Defiance-91434,12595,\"Her long, black skirt trailing on the ground, she leads the three men to a haystack. They\",\"Her long, black skirt trailing on the ground, she leads the three men to a haystack.\",They,gold,hold the chopped general with an stamped steel ribbon.,\"approach her apartment, then undoes the belt of her dress and sets the cup down.\",peer down into a shelter and smile.,\"hobbit, a thin, elegant modern woman waves a brown raincoat up in a sixties and golf club.\",2\n16225,lsmdc1047_Defiance-91434,12590,Someone's wife is in the garden hanging up washing. The three partisans armed with rifles,Someone's wife is in the garden hanging up washing.,The three partisans armed with rifles,gold,aiming their torch at each other.,come past a flock of geese on their way to the barn.,\", a different shop, wooden stools, a few feet then, now terraced houses and piles of market.\",detach through their equipment.,1\n16226,lsmdc1047_Defiance-91434,12596,They peer down into a shelter and smile. The brothers,They peer down into a shelter and smile.,The brothers,gold,wears a wet frown.,rise their arm around his shoulders.,rub their noses together.,help someone out into the sunshine.,3\n16227,lsmdc1047_Defiance-91434,12591,\"The three partisans armed with rifles come past a flock of geese on their way to the barn. Nearing the door, they\",The three partisans armed with rifles come past a flock of geese on their way to the barn.,\"Nearing the door, they\",gold,notice a trapping bending out to secure a fallen partner's alien handbag.,turn back to look at her.,stop as a pair of legs comes into view.,move across to set past a german on horseback.,2\n16228,lsmdc1047_Defiance-91434,12598,Someone gives him a bear hug. Two women,Someone gives him a bear hug.,Two women,gold,help someone and another brother who stands in front of the mohawk.,\"hurry up, a chair trembling.\",\"climbed, one a teenager, the other in her 30s.\",lead someone into an apartment in the b. g..,2\n16229,lsmdc1047_Defiance-91434,12594,\"Someone bangs a cross into the ground. Someone, holding a shovel,\",Someone bangs a cross into the ground.,\"Someone, holding a shovel,\",gold,releases the blow and opening the glass.,\"strikes him with a crowbar, then heaves himself to run out into the street.\",steps away from someone's newly dug grave.,glides into a truck with someone's hand.,2\n16230,lsmdc1047_Defiance-91434,12593,\"Someone is hanging from a rafter, with a wooden sign around his neck. Someone\",\"Someone is hanging from a rafter, with a wooden sign around his neck.\",Someone,gold,bangs a cross into the ground.,has a wild journal.,pulls the hood back up to his chest.,clears their grip and discusses.,0\n16231,lsmdc1047_Defiance-91434,12589,The three of them step towards it. Someone's wife,The three of them step towards it.,Someone's wife,gold,is in the garden hanging up washing.,leaves the kitchen for a moment or she stops to look up at the map.,opens the front door to show her mouth lying open.,sits on a coffee table.,0\n16232,lsmdc1047_Defiance-91434,12587,He steps towards someone and cradles his head in his arms. Someone,He steps towards someone and cradles his head in his arms.,Someone,gold,\", someone snuggles up a wall in someone's bed.\",\"smiles at someone, who's someone but clerical.\",wraps his arms around his big brother.,looks at someone as she holds out his arm.,2\n16233,lsmdc1047_Defiance-91434,12592,\"Nearing the door, they stop as a pair of legs comes into view. Someone\",\"Nearing the door, they stop as a pair of legs comes into view.\",Someone,gold,finishes to touch her.,\"is hanging from a rafter, with a wooden sign around his neck.\",holds his convertible to his side and peers into the smoke.,ducks behind one of the carriages as the bar gets inside.,1\n16234,anetv_3kEAg-JtDBY,17026,A woman is wearing a white robe and a black belt. She,A woman is wearing a white robe and a black belt.,She,gold,does karate moves in her room.,shows the ragged arm of the baby.,is dressed in a black and bouncing gear.,uses a pair of hands to braid it.,0\n16235,anetv_3kEAg-JtDBY,17027,She does karate moves in her room. She,She does karate moves in her room.,She,gold,lifts the baby up to her feet.,kicks her legs up several times.,doing crunches over them.,continues flipping again and does n't move.,1\n16236,anetv_3kEAg-JtDBY,17028,She kicks her legs up several times. She,She kicks her legs up several times.,She,gold,moves to the railing and prepares the other bar.,finishes and stands up right with her arms by her side and bows.,jumps up proudly down the hill.,lands on her back and claps her hands.,1\n16237,lsmdc3058_RUBY_SPARKS-28165,4420,\"Someone lays her back on a pinball machine. As he nuzzles her between her breasts, she\",Someone lays her back on a pinball machine.,\"As he nuzzles her between her breasts, she\",gold,undoes the clasp of the zipper on his forehead.,finds his cell phone with a pump.,blissfully sweeps her arms past her head.,slaps someone's chest and begins to record the chairs on her desk.,2\n16238,lsmdc3058_RUBY_SPARKS-28165,4423,Now they bounce up and down on a crowded dance floor. Someone,Now they bounce up and down on a crowded dance floor.,Someone,gold,looks up as she watches them go.,\"stands by a curtain, then a one of her arms is pulled behind, reacting from the sight of him.\",poses as a woman steps over to him.,raises her arms and shakes her head.,3\n16239,lsmdc3058_RUBY_SPARKS-28165,4404,Someone makes the busboy touch someone. Someone,Someone makes the busboy touch someone.,Someone,gold,blocks his blow with his hand with his gloved hand.,notices her joining conviction on the screen.,throws a glass of water in his face.,smacks it along with it.,2\n16240,lsmdc3058_RUBY_SPARKS-28165,4427,\"From the top of her dress, someone pulls out panties and twirls them on her finger. Someone\",\"From the top of her dress, someone pulls out panties and twirls them on her finger.\",Someone,gold,sits alone in a red carriage.,stops dancing staring wide - eyed.,dozes beneath her crowded bar.,bends over to their slippers as she slams the front shelf.,1\n16241,lsmdc3058_RUBY_SPARKS-28165,4421,\"As he nuzzles her between her breasts, she blissfully sweeps her arms past her head. Later, someone\",\"As he nuzzles her between her breasts, she blissfully sweeps her arms past her head.\",\"Later, someone\",gold,walks someone through a packed living room where someone takes a book from the collection and tucks it into the cluttered sharpener table.,eagerly shuts a door as they remove wallpaper from the wall and polish it.,runs up to him and leaps into his arms.,passes someone as she glides through a passage.,2\n16242,lsmdc3058_RUBY_SPARKS-28165,4424,\"Later, he deeps dips her and they kiss. Straightening, she\",\"Later, he deeps dips her and they kiss.\",\"Straightening, she\",gold,joins her friend in her cubicle.,punches his chin then peers out.,stands up and faces her next husband.,slaps his chest to the music.,3\n16243,lsmdc3058_RUBY_SPARKS-28165,4413,\"Later, someone covers a laughing someone's eyes. A zombie\",\"Later, someone covers a laughing someone's eyes.\",A zombie,gold,tears a woman's head off.,pulls the lens away him.,gets out of the car as they head through open cabinets.,grabs someone's shirt and overcoat.,0\n16244,lsmdc3058_RUBY_SPARKS-28165,4425,\"Straightening, she slaps his chest to the music. Now, she\",\"Straightening, she slaps his chest to the music.\",\"Now, she\",gold,\"steals his speed from the vault, then hits it like a high stone.\",walks a tasseled puffed coffees to a counter.,jerks her head side - to - side.,holds a school book in her hand while someone sits beside her.,2\n16245,lsmdc3058_RUBY_SPARKS-28165,4426,\"Now, she jerks her head side - to - side. From the top of her dress, someone\",\"Now, she jerks her head side - to - side.\",\"From the top of her dress, someone\",gold,stares hard to her window.,pulls out panties and twirls them on her finger.,fidgets in her bathtub.,leads them into view.,1\n16246,lsmdc3058_RUBY_SPARKS-28165,4410,She shuts her eyes ecstatically as he leans his face toward hers. Their lips,She shuts her eyes ecstatically as he leans his face toward hers.,Their lips,gold,meet in a tender kiss and she gets up.,\"meet again, then meet in a slow kiss.\",meet in an ardent tender kiss.,meet in a resigned kiss.,2\n16247,lsmdc3058_RUBY_SPARKS-28165,4411,\"Someone pulls back, his brow knitted emotionally. They\",\"Someone pulls back, his brow knitted emotionally.\",They,gold,close the wide keyhole.,\", someone sleeps serenely.\",\"all hurry to his son's office, and the woman begins to face him.\",gaze into each other's eyes.,3\n16248,lsmdc3058_RUBY_SPARKS-28165,4408,\"Staring up at him tearfully, someone yields a smile. She\",\"Staring up at him tearfully, someone yields a smile.\",She,gold,opens the front door.,shakes her head and sighs.,throws the drawings off.,spots her and she lowers her gaze from the dance floor.,1\n16249,lsmdc3058_RUBY_SPARKS-28165,4417,They play a game with gun - shaped controllers. Someone,They play a game with gun - shaped controllers.,Someone,gold,steps up to his table and glares to a couple who is heavily shoved.,stands on a veranda illuminated by flickering lights.,coolly blows the end of her gun's barrel.,looks around at the grounds as the figure moves about in reverse.,2\n16250,lsmdc3058_RUBY_SPARKS-28165,4406,Someone brushes her long bangs aside. He,Someone brushes her long bangs aside.,He,gold,stares off with someone as she tears up.,caresses her lips with his thumb.,gazes into each other's eyes.,moves her brightens as well.,1\n16251,lsmdc3058_RUBY_SPARKS-28165,4414,A zombie tears a woman's head off. Someone,A zombie tears a woman's head off.,Someone,gold,\"lunges, playfully biting someone's neck.\",\"pulls into a fearfully, then reaches in his pocket and pulls up its second handle.\",pulls her bag through the shops fair - haired woman and shakes her head.,lands on the immaculately carbon - shaped driveway.,0\n16252,lsmdc3058_RUBY_SPARKS-28165,4412,\"Seated on the crowded lawn, someone and someone each take a shot. Later, someone\",\"Seated on the crowded lawn, someone and someone each take a shot.\",\"Later, someone\",gold,sneaks up of the farm and hugs her friends.,drives someone through the cemetery past a bookcase and up front doors.,passes to a welcome town restaurant.,covers a laughing someone's eyes.,3\n16253,lsmdc3058_RUBY_SPARKS-28165,4415,\"Someone lunges, playfully biting someone's neck. Now he catches up to her in an arcade and she\",\"Someone lunges, playfully biting someone's neck.\",Now he catches up to her in an arcade and she,gold,greets him with a kiss.,tosses it a handful of coins.,catches him in her arms.,regards him with a smirk.,0\n16254,lsmdc3058_RUBY_SPARKS-28165,4416,\"Now he catches up to her in an arcade and she greets him with a kiss. Later, she\",Now he catches up to her in an arcade and she greets him with a kiss.,\"Later, she\",gold,wraps her arms around his mother.,\"joins someone, a chicken tommy.\",returns the carton of cake.,peeks out of a video game booth and draws him in with her.,3\n16255,lsmdc3058_RUBY_SPARKS-28165,4405,She whacks him with her purse and he grabs her. Someone,She whacks him with her purse and he grabs her.,Someone,gold,lifts her over his shoulder and carries her down the sidewalk.,joins someone and eating.,hits one of the gypsies sex.,\"gives a dreamy shrug, then turns away from the window.\",0\n16256,lsmdc3058_RUBY_SPARKS-28165,4422,\"Later, someone runs up to him and leaps into his arms. Now they\",\"Later, someone runs up to him and leaps into his arms.\",Now they,gold,enter the hydra gas station.,land in the middle of a busy city street.,make love at the picnic ceremony.,bounce up and down on a crowded dance floor.,3\n16257,lsmdc3058_RUBY_SPARKS-28165,4419,They dance in the arcade. Someone,They dance in the arcade.,Someone,gold,lifts up his wrist then runs through the flap.,turns to see how dumb she is.,smiles and people dance together.,lays her back on a pinball machine.,3\n16258,lsmdc3058_RUBY_SPARKS-28165,4407,He caresses her lips with his thumb. Someone,He caresses her lips with his thumb.,Someone,gold,moves the pink closer to his chin.,dabs his own hair with her cotton glove.,cups her face in his hands.,lifts his wrist again as he rests his chin on his hand.,2\n16259,anetv_Mfk4bUp_ZC0,8215,A Traffic jam traps the little girls in the middle of cars. the little girl in the hat,A Traffic jam traps the little girls in the middle of cars.,the little girl in the hat,gold,smiles as she looks in her sisters face.,stops her car off and changes the tire.,kicks the door open.,climbs onto a stationary bike.,0\n16260,anetv_Mfk4bUp_ZC0,8214,Children are riding the bumper cars at an amusement park or carnival. A Traffic jam,Children are riding the bumper cars at an amusement park or carnival.,A Traffic jam,gold,sweeps their way to other side shops.,traps the little girls in the middle of cars.,is parked outside holding pamphlets.,leads into one of the houses and rolls toward the yard.,1\n16261,anetv_4hmJfJo6UI8,11066,A female athlete runs quickly down a track. She,A female athlete runs quickly down a track.,She,gold,is sprinting through a field.,plows into the sand before getting up and walking away.,\"raises his hands in the air in a competition, then jumps in a swing and crashes into a nearby mat.\",is doing tricks on parallel bars with other people.,1\n16262,anetv_gdyEfPbUEjw,12144,The man performs a trick near another windsurfer. The trick,The man performs a trick near another windsurfer.,The trick,gold,is repeated in slow motion.,is shown several times.,begins to slow down several times in slow motion.,starts with the man spins and back in slow motion motion.,0\n16263,anetv_gdyEfPbUEjw,12143,A man windsurfs on a lake with other windsurfers occasionally entering the frame. The man,A man windsurfs on a lake with other windsurfers occasionally entering the frame.,The man,gold,performs a trick near another windsurfer.,takes the travel back again.,continues talking while they pose a record to hold hands.,waves another bye and gives a thumbs up on the screen.,0\n16264,anetv_gdyEfPbUEjw,4300,\"He tilts, trying to stay up right on his board. Another man joins him temporarily, then he\",\"He tilts, trying to stay up right on his board.\",\"Another man joins him temporarily, then he\",gold,boards the top of the boat.,falls back on his knees to avoid the pit.,sails back to shore.,is able to speak.,2\n16265,anetv_gdyEfPbUEjw,4299,A man is shown parasailing away from the shore. He,A man is shown parasailing away from the shore.,He,gold,stops as he approaches the water skiing.,bounces on a sailboard and misses and land in a pit.,\"tilts, trying to stay up right on his board.\",stays at the canvas and begins floating on the rough waters.,2\n16266,lsmdc0041_The_Sixth_Sense-68035,19523,They slowly sag and then collapse. All the students,They slowly sag and then collapse.,All the students,gold,fall from the gym floor.,are trying to break it.,are laughing as they try to untangle themselves.,get on their feet and lift them high.,2\n16267,lsmdc0041_The_Sixth_Sense-68035,19520,\"Someone watches his client, standing unafraid in the spot light for the first time. The villagers\",\"Someone watches his client, standing unafraid in the spot light for the first time.\",The villagers,gold,\"are wild, furious.\",rise and rush to someone.,remain awake as his daughter cycles over to a marketplace.,reach someone who slowly lowers one foot further back to the door.,1\n16268,lsmdc0041_The_Sixth_Sense-68035,19522,They scoop him up and carry him around the stage in celebration. They,They scoop him up and carry him around the stage in celebration.,They,gold,watch someone others follow the path outside.,slowly sag and then collapse.,are carried for the game; going up to a kid at one.,rip up through the wall while they kiss.,1\n16269,lsmdc0041_The_Sixth_Sense-68035,19524,Someone watches with utter joy as someone becomes indistinguishable among of a group of twenty children giggling and enjoying themselves on stage. The rain,Someone watches with utter joy as someone becomes indistinguishable among of a group of twenty children giggling and enjoying themselves on stage.,The rain,gold,\"sails above their head, trying to hold with their noses.\",continues down as her curls just blows to them singing.,comes down a little stronger now on the stained glass window.,sits in the darkening sky.,2\n16270,lsmdc0041_The_Sixth_Sense-68035,19519,The sword starts to come out. Someone,The sword starts to come out.,Someone,gold,looks solemnly back at someone.,\"screams in pain, raises his arms and sobs.\",screams from the ceiling.,raises the shiny sword out of the stone and high above his head.,3\n16271,lsmdc0041_The_Sixth_Sense-68035,19517,Someone steps up to the stone. He,Someone steps up to the stone.,He,gold,seals the casket solemnly.,places his hand around the handle.,\"takes a covered coat, replaces it around the pensive, then walks toward the entrance.\",peers underneath the slats of the curtain and slides along the hall.,1\n16272,lsmdc0041_The_Sixth_Sense-68035,19518,He places his hand around the handle. The sword,He places his hand around the handle.,The sword,gold,starts to come out.,points at several sharp - legged motions.,lunges then raise their trembling hand in triumph.,blows steps from his arm and someone puts the knife on his palm.,0\n16273,lsmdc0041_The_Sixth_Sense-68035,19516,It takes him a moment before he steps forward. Someone,It takes him a moment before he steps forward.,Someone,gold,trots both past a pair of high leather varnish.,\"is just standing there, huge tipped over.\",reaches the door to someone room and her hand.,steps up to the stone.,3\n16274,anetv_QeVVKZhoFCg,10102,\"She colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on. She\",\"She colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on.\",She,gold,then dies down in a slinky day dress.,puts a bit of blush in her cheeks and then smiles and waves to the camera.,turns blinking and moves in the mirror with tears.,\"demonstrates various form movements that applies toothpaste to the red lens, then stops writing the lipstick and then more smoothing her hair.\",1\n16275,anetv_QeVVKZhoFCg,10101,She then puts eyeliner on followed by mascara and lip liner. She,She then puts eyeliner on followed by mascara and lip liner.,She,gold,sprays around also up and ends with painting her.,\"colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on.\",continues working and smiling as she talks to the camera.,pulls something out of her mouth and begins putting it down for some reason.,1\n16276,anetv_QeVVKZhoFCg,10100,A girl with several facial piercings his seen rubbing lotion all over her face and powdering her cheeks and face. She then,A girl with several facial piercings his seen rubbing lotion all over her face and powdering her cheeks and face.,She then,gold,blow dries her hair on the towel and moving up to her mouth.,\"bends down to do various dance moves, sometimes shaving all her hair.\",puts eyeliner on followed by mascara and lip liner.,applies lotion to her hair and clean it.,2\n16277,anetv_YAhMxt-3ciU,17256,A map of the world is shown. Trophies,A map of the world is shown.,Trophies,gold,and cannons are shown.,appears on screen with the boy's name and a website on his.,reader are then shown on the screen as a man and woman are talking.,are shown on the screen.,3\n16278,lsmdc3018_CINDERELLA_MAN-7855,17523,\"Nighttime, a sign reads: Primo Carnera versus Max Baer, World's Heavyweight Championship. Words\",\"Nighttime, a sign reads: Primo Carnera versus Max Baer, World's Heavyweight Championship.\",Words,gold,appear: madison square.,\", 20 angry gills, a man on large sidewalk, holds a microphone as he strolls out of the gloomy hall.\",\"are a valley estate, along with dozens of carriages, silver gates and jacket trees.\",shoot straight in mid - air.,0\n16279,anetv_32H1n87WgCM,17705,His coach is then interviewed as well as the young child and continues showing more shots of his moves. The male hosts,His coach is then interviewed as well as the young child and continues showing more shots of his moves.,The male hosts,gold,the male and begins playing the instrument while the orchestra watches.,finishes pouring food from a glass.,pans side windows to show a close up view of the most frightening rooms.,speaks to the camera smiling in the end.,3\n16280,anetv_32H1n87WgCM,14206,A boy in a karate outfit holds a trophy. People,A boy in a karate outfit holds a trophy.,People,gold,are practicing karate in a room.,are playing with the soldiers.,see the see the players.,squeeze the white mallet money.,0\n16281,anetv_32H1n87WgCM,17704,Several pictures of the karate boy are shown as well as him battling another child. His coach,Several pictures of the karate boy are shown as well as him battling another child.,His coach,gold,comes to after someone aiming.,uses the equipment to distract the bull by punching and kicking it up.,is then interviewed as well as the young child and continues showing more shots of his moves.,asks another man to play drums in a skate park.,2\n16282,anetv_xBtOxEIETtk,6172,A man is seen performing break dancing moves in the middle of a city square while people walk in and out of frame. The man,A man is seen performing break dancing moves in the middle of a city square while people walk in and out of frame.,The man,gold,continues to do tricks and ends by bouncing up and down on a side.,continues spins the object around and then ends with the man passing it.,continues to dance around and hold poses while looking back to the camera.,performs several tricks on times while the camera pans over to a man standing to the counter.,2\n16283,anetv_hHpcr5tYWso,1182,\"An Asian woman with black hair in beige jacket and printed blouse, is talking in front of the camera. Four black and white kites with blue and yellow diamond print on them are flying from the ground, a green octopus, dragons and other shapes of kites\",\"An Asian woman with black hair in beige jacket and printed blouse, is talking in front of the camera.\",\"Four black and white kites with blue and yellow diamond print on them are flying from the ground, a green octopus, dragons and other shapes of kites\",gold,are given to light the parachute.,begin to with different forms of the smoke and tires are pulled out of a pile of grass.,\"are flying in the sky, while men in red pull the kites.\",are shown around the screen.,2\n16284,lsmdc0032_The_Princess_Bride-66488,1045,\"And as his Warriors attack - - someone goes wild, and maybe the Warrior's are good, maybe they are even better than that - - but they never get a chance to show it because this is something now. For a moment he just\",\"And as his Warriors attack - - someone goes wild, and maybe the Warrior's are good, maybe they are even better than that - - but they never get a chance to show it because this is something now.\",For a moment he just,gold,can't see someone's face.,\"stands there, sword in hand.\",\"looks up at seeing someone, tries to keep a seductive expression to her right and sits.\",\"moved toward someone, kneeling down and in her long socks and some towels back from the half attached above his right leg.\",1\n16285,lsmdc0032_The_Princess_Bride-66488,1047,Then he does a most unexpected thing. He,Then he does a most unexpected thing.,He,gold,is little surprised by himself.,is being pulled across the field.,turns and runs the hell away.,\"launches, tosses away at the chain and flutters his arms over the screen.\",2\n16286,lsmdc0032_The_Princess_Bride-66488,1052,He is very surprised and pleased. And he,He is very surprised and pleased.,And he,gold,gets up and takes it in the sink.,wears a delicate blonde with short hair.,\"is running, dashing through corridors and as he glances back.\",sees something grow pleasantly and kisses quickly as he goes.,2\n16287,lsmdc0032_The_Princess_Bride-66488,1051,Someone gently stops the King and places a kiss on his forehead. He,Someone gently stops the King and places a kiss on his forehead.,He,gold,\"knocks a jacket umbrella over his head, throws it down.\",sits up and gently places someone's hair on his shoulder.,takes a cigarette from his top.,is very surprised and pleased.,3\n16288,lsmdc0032_The_Princess_Bride-66488,1046,\"For a moment he just stands there, sword in hand. Then he\",\"For a moment he just stands there, sword in hand.\",Then he,gold,does a most unexpected thing.,\"kicks himself up and moves to both feet and runs up, quickly.\",takes out the quill.,looks on someone toward the step lifeboat.,0\n16289,lsmdc0032_The_Princess_Bride-66488,1049,\"And someone flies through as someone heads back to someone. Someone, more sprightly,\",And someone flies through as someone heads back to someone.,\"Someone, more sprightly,\",gold,watch someone with someone.,is several paces ahead.,begins racing towards the camp.,comes in and climbs the bus while someone watches with tears in his eyes.,1\n16290,lsmdc0032_The_Princess_Bride-66488,1050,\"Someone, more sprightly, is several paces ahead. Someone\",\"Someone, more sprightly, is several paces ahead.\",Someone,gold,moves them to slide down the lip of the bar.,is approaching a tractor - wash.,gently stops the king and places a kiss on his forehead.,continues to gaze up at the water.,2\n16291,anetv_4gQpW3zR-Aw,4113,One man leads the camera around with the person on top and people recording them from the sides. The man lays the camel down for the person to climb off and the rider,One man leads the camera around with the person on top and people recording them from the sides.,The man lays the camel down for the person to climb off and the rider,gold,moves backwards while another man's shown running.,wheel again while standing on the camel.,rides the fence away in the end.,smiles and waves to the camera.,3\n16292,anetv_4gQpW3zR-Aw,4112,A group of men are seen leading a camel around while a person rides on top of the camel. One man,A group of men are seen leading a camel around while a person rides on top of the camel.,One man,gold,leads the camera around with the person on top and people recording them from the sides.,pets the dog as they continue to push the camel on the floor.,falls down and stretches as the people continue to walk through towards the yard.,rides on the horse while the camera pans around to the people.,0\n16293,anetv_lwqSz2Q2L-E,17306,A woman is seen sitting on a stool smoking a cigarette and looking off into the distance. The woman,A woman is seen sitting on a stool smoking a cigarette and looking off into the distance.,The woman,gold,blows smoke into the air as the camera captures her from several angles continuously smoking.,continues spinning herself around on the couch while speaking to the camera.,talks to the camera while rubbing a piece of paper around her.,continues speaking while slices on video and pointing it around.,0\n16294,anetv_m0u1kjhlHJ4,7490,\"He hits the ball, setting a game into motion. The players fight over the ball,\",\"He hits the ball, setting a game into motion.\",\"The players fight over the ball,\",gold,getting it into the goal and the audience cheers.,recovering the ball as someone goes backward into the net.,trying to win it soon.,trying to prevent the matador.,0\n16295,anetv_m0u1kjhlHJ4,7489,\"A man puts a ball on the ground, then throws a flag. He\",\"A man puts a ball on the ground, then throws a flag.\",He,gold,pass on front the goal.,\"hits the ball, setting a game into motion.\",\"jumps a hand in the air, and lands hard on the floor.\",imitates the man to the ice display bowl.,1\n16296,anetv_m0u1kjhlHJ4,7491,\"The players fight over the ball, getting it into the goal and the audience cheers. The game\",\"The players fight over the ball, getting it into the goal and the audience cheers.\",The game,gold,disappears in the end and the girl scores more lines.,is played and it runs away.,is being served while the spectators ready to play the game.,continues as the players compete.,3\n16297,anetv_p9hJmlWGvFI,18650,Two teams play a game of beach soccer. A goal,Two teams play a game of beach soccer.,A goal,gold,is scored for the player in the goal and celebrates.,is scored at the formation.,is scored from far away on the opposite side of the field.,is made for jumping.,2\n16298,anetv_p9hJmlWGvFI,7922,A small group of people are seen playing soccer and team mates cheering. A person,A small group of people are seen playing soccer and team mates cheering.,A person,gold,turns around walking away.,sits on the stands watching the players.,scores a goal several times and cheers with team mates.,\"jumps on front a goal, while the game continues, running and begins getting mixed and shown as well.\",2\n16299,anetv_p9hJmlWGvFI,18652,A man scores with a bicycle kick. A news anchor,A man scores with a bicycle kick.,A news anchor,gold,reports on a small screen.,holds up a trophy.,covers the events in a studio.,plays in the background.,2\n16300,anetv_p9hJmlWGvFI,18651,A goal is scored from far away on the opposite side of the field. A man,A goal is scored from far away on the opposite side of the field.,A man,gold,plays a cricket game with a shot of hockey player.,throws a disc across the field.,scores with a bicycle kick.,is throwing darts hit the net.,2\n16301,anetv_p9hJmlWGvFI,7923,A person scores a goal several times and cheers with team mates. The game,A person scores a goal several times and cheers with team mates.,The game,gold,\"ends and they celebrate stand by cheering and other team of mates, who play polo balls.\",ends with other people in the audience eat cheer and look at their team.,ends and the boy watches the boy play the game of soccer.,continues and leads into a woman speaking to the camera.,3\n16302,lsmdc3082_TITANIC1-38742,14469,\"Someone looks down and blinks and nods to himself. Lying on her stomach on the panel, someone\",Someone looks down and blinks and nods to himself.,\"Lying on her stomach on the panel, someone\",gold,stares toward her breasts as she groggily begins to kiss her back.,picks her purse and lifts her to her feet and places his hand over her mouth.,holds her head to his hands.,moves toward someone and leans her forehead against his.,3\n16303,lsmdc3082_TITANIC1-38742,14467,Tries to pull himself on to the panel as well but it tips under their combined weight. Someone,Tries to pull himself on to the panel as well but it tips under their combined weight.,Someone,gold,straightens a little.,holds on to the panel as he floats in the water beside her.,\"'s diving suit, the mac - plops still on it, moves slightly to the other side of the door.\",\"go out, though someone: and slips into a dotted with small wallpaper.\",1\n16304,lsmdc3082_TITANIC1-38742,14473,\"Sitting in a lifeboat beside someone, someone closes her eyes. Furrowing her brow, someone\",\"Sitting in a lifeboat beside someone, someone closes her eyes.\",\"Furrowing her brow, someone\",gold,looks down at someone.,looks around at the other people in the boat who avert their gaze.,\"smiles, then leans back on a ledge.\",allows an amused smile.,1\n16305,lsmdc3082_TITANIC1-38742,14463,Someone tows someone by her life vest. They,Someone tows someone by her life vest.,They,gold,tent behind their sailor's exam desk.,swim out of the mass of survivors.,avoids his gaze as the man gathers the clear supply.,light from the sunbeams.,1\n16306,lsmdc3082_TITANIC1-38742,14464,They swim out of the mass of survivors. Someone,They swim out of the mass of survivors.,Someone,gold,leads her to a flat piece of wood floating on the surface.,pushes the packard away to reveal the boards on the unicorn's rim.,lands on a haughty wind - swept beach.,\"follows, taking a pack of gallon serum.\",0\n16307,lsmdc3082_TITANIC1-38742,14465,Someone leads her to a flat piece of wood floating on the surface. Someone,Someone leads her to a flat piece of wood floating on the surface.,Someone,gold,pulls herself on to the elaborately carved panel.,emerges from the shaft.,turns and walks up to another row of fake shacks.,watches the ship up to the crewman as someone walks quickly towards someone's body and wakes up once more.,0\n16308,lsmdc3082_TITANIC1-38742,14461,Someone swims through the mass of people. One man,Someone swims through the mass of people.,One man,gold,grabs on to someone and shoves her underwater as he tries to climb on top of her.,sits against icy white wall.,chucks someone into the back car.,tumbles several stories up from a low tower.,0\n16309,lsmdc3082_TITANIC1-38742,14470,\"Lying on her stomach on the panel, someone moves toward someone and leans her forehead against his. Their breath\",\"Lying on her stomach on the panel, someone moves toward someone and leans her forehead against his.\",Their breath,gold,surrounds the tinted night sky.,trails behind them as he brushes her back with his teeth.,is visible in the cold air.,streams down one cheek.,2\n16310,lsmdc3082_TITANIC1-38742,14462,One man grabs on to someone and shoves her underwater as he tries to climb on top of her. Someone,One man grabs on to someone and shoves her underwater as he tries to climb on top of her.,Someone,gold,holds up the syringe.,punches the hysterical man in the face until he releases someone.,looks up from her forearm.,\"glares at someone, then eyed the tomato.\",1\n16311,lsmdc3082_TITANIC1-38742,14471,\"Their breath is visible in the cold air. Clinging to a nearby piece of debris, a crewman\",Their breath is visible in the cold air.,\"Clinging to a nearby piece of debris, a crewman\",gold,\"forces his way into the boat and fends of someone, knocking him over.\",blows into a whistle.,prods an enormous sideboard.,opens a document case to reveal a industrial towns screen.,1\n16312,lsmdc3082_TITANIC1-38742,14472,\"Clinging to a nearby piece of debris, a crewman blows into a whistle. Someone's blue lips\",\"Clinging to a nearby piece of debris, a crewman blows into a whistle.\",Someone's blue lips,gold,lock into a reload.,curl into a slight smile as she faces someone's daughter.,curl into a patient frown.,tremble as she smiles weakly.,3\n16313,lsmdc3082_TITANIC1-38742,14466,Someone pulls herself on to the elaborately carved panel. Tries to pull himself on to the panel as well but it,Someone pulls herself on to the elaborately carved panel.,Tries to pull himself on to the panel as well but it,gold,finally stops staying while talking.,tips under their combined weight.,is completely darkened at the end.,is disturbed by more ridges.,1\n16314,lsmdc3082_TITANIC1-38742,14460,Two men try to grab onto a bobbing barrel which spins out of their grasps. Someone,Two men try to grab onto a bobbing barrel which spins out of their grasps.,Someone,gold,\"then swims back as the flames increase to the right and turn fallen, save him.\",swims through the mass of people.,falls into the shimmering sky.,see the men crossing the water by gantry towards each other.,1\n16315,anetv_-LtQMRfj0eM,11010,The man trims a set of small palm trees. The camera,The man trims a set of small palm trees.,The camera,gold,captures the image of the man pushing the bag on the grass.,pans to show the people mowing the floor.,focuses on the finished palm trees and cut branches on the ground below.,moves the red and red plant around the family tree.,2\n16316,anetv_-LtQMRfj0eM,6446,He moves all along the tree cutting the sides all around. He,He moves all along the tree cutting the sides all around.,He,gold,continues cutting the tree while the camera watches him from several angles.,continues measuring and cutting up a strip of cake.,grabs all of the sauce and cuts it away on the end.,continues to apply some wheel as he progresses steadily.,0\n16317,anetv_-LtQMRfj0eM,6445,A man is seen walking into frame with a chainsaw and begins using it on a tree. He,A man is seen walking into frame with a chainsaw and begins using it on a tree.,He,gold,puts the paint down and continues climbing the object.,spins around a bit while putting down the clothes and finally lifting the branches off.,moves all along the tree cutting the sides all around.,begins to mop several toys around as he moves in circles and moves them all along the room.,2\n16318,anetv_-LtQMRfj0eM,11009,A man stands on a residential front lawn with a chain saw. The man,A man stands on a residential front lawn with a chain saw.,The man,gold,mounts the bicycle and then shows several multiple tricks on a nearby dirt bike.,\"stops three tools and sets up a hood to trim them, knocking them to the ground.\",trims a set of small palm trees.,is painting the fence with a cloth.,2\n16319,anetv_iDz8nKDpumY,16117,Two people are seen riding on skis behind a boat with one person having a child on their shoulders. The people all,Two people are seen riding on skis behind a boat with one person having a child on their shoulders.,The people all,gold,stand up and speak to one another.,jump their rafts and ride the canoe again.,hang onto one another while the young child climbs on top of them and falls off in the end.,sail moving the boat back and fourth with the person moving down from below.,2\n16320,anetv_Nosx28FNB5E,13816,People start to play a game of pool. A man,People start to play a game of pool.,A man,gold,falls in front of her.,helps a woman in the pool of water.,talks to the camera and laughs.,blows down the leaves.,2\n16321,anetv_Nosx28FNB5E,13817,A man talks to the camera and laughs. Words,A man talks to the camera and laughs.,Words,gold,are shown on the screen.,\", people try to hold the guitar playing.\",is walking of a wooden court.,are set up a top of paperwork.,0\n16322,anetv_lUk_dSjmIgM,19259,A young girl is cleaning the sink. The girl,A young girl is cleaning the sink.,The girl,gold,\"grabs a rag, places them on the sink, then walks back to the bathroom.\",spits lemon water into a bathroom bowl.,picks out her pink bucket and starts dries it for a while.,gets her shirt all wet.,3\n16323,anetv_lUk_dSjmIgM,19260,The girl gets her shirt all wet. The girl,The girl gets her shirt all wet.,The girl,gold,off and finishes her braid.,throws a dart at a person.,points to the drain of the sink.,presents the rod for brushing.,2\n16324,anetv_5TV-V6Cxero,12161,Another man lights the bonfire up to start the fire. The bonfire,Another man lights the bonfire up to start the fire.,The bonfire,gold,continues on taking more and after they pull the ax up.,pulls the bottom of a fish out of it and searches for the fire.,\"storms pours into a vast circular living room, a glowing white orb.\",continues burning as the fireworks crackle in the pit.,3\n16325,anetv_5TV-V6Cxero,12160,One of the men picks up a gasoline can and ours some of it into the campfire pit. Another man,One of the men picks up a gasoline can and ours some of it into the campfire pit.,Another man,gold,appears with a sail and a water tank.,\"is sitting and a dog, smoking and smoking in the field.\",lights the bonfire up to start the fire.,is seen sitting across his street looking to the camera from a different chair as well as the camera sitting behind it.,2\n16326,anetv_5TV-V6Cxero,12157,A shirtless man is standing on porch while instructing how to build a redneck fire. He,A shirtless man is standing on porch while instructing how to build a redneck fire.,He,gold,is put on ground carpet.,is talking and walking on the exercise stool in front of the camera.,shows a beer bottle and some other alcohol cans.,can tell he is n't finding the penguin to do several hand movements in the bathroom.,2\n16327,anetv_5TV-V6Cxero,12162,The bonfire continues burning as the fireworks crackle in the pit. One of the instructors,The bonfire continues burning as the fireworks crackle in the pit.,One of the instructors,gold,is on a very deep party among the crowd.,lighting off the flag and is carried past.,begins to clap after the movement crowd the next player.,comes back and point to the redneck campfire.,3\n16328,anetv_5TV-V6Cxero,12159,He demonstrates a campfire that he has set up in a pit. There,He demonstrates a campfire that he has set up in a pit.,There,gold,are three men standing near the campfire pit to demonstrate step three.,is another bow and he then adds a plastic bucket.,\"in air with a hose, he goes forward with his ax, using his hand to hit the wood.\",\", he uses a fire and moves to burn a fish in the grass.\",0\n16329,lsmdc3059_SALT-28834,3476,\"On a hallway, the housekeeping woman removes garments from a rack of laundered clothes and takes them into a guest's room. Passing the rack, someone\",\"On a hallway, the housekeeping woman removes garments from a rack of laundered clothes and takes them into a guest's room.\",\"Passing the rack, someone\",gold,strolls to more stacks.,finds an outdoor box loaded with wine and stacks of chips.,snatches a garment in each hand without breaking her stride.,\"finds two pens in a cabinet between her, someone, and someone sitting at the table in front of the laptop.\",2\n16330,lsmdc3059_SALT-28834,3484,\"Someone crosses to a window, pulls the drapes aside a few inches and peers out. St. Bartholomew's Cathedral\",\"Someone crosses to a window, pulls the drapes aside a few inches and peers out.\",St. Bartholomew's Cathedral,gold,\", someone allows her to scoot all over the floor.\",\", she stuffs her foot in the pockets of her wet pants.\",\"stands almost directly across the street, softly illuminated by outdoor flood lamps.\",\"he sits along with someone, and steals a swig.\",2\n16331,lsmdc3059_SALT-28834,3473,\"Someone holds her by the crook of her elbow. Taking his hand, she\",Someone holds her by the crook of her elbow.,\"Taking his hand, she\",gold,tries to hold himself.,puts his fingers in the seed of mouth.,\"shoves it against her neck, ending the call.\",presses her lips to it.,3\n16332,lsmdc3059_SALT-28834,3486,\"Back in the present, she dyes her hair dark. Daytime, rooftop secret service snipers\",\"Back in the present, she dyes her hair dark.\",\"Daytime, rooftop secret service snipers\",gold,bears a receding moustache.,is visits to a home.,monitor a funeral procession.,leads up to a packed offices.,2\n16333,lsmdc3059_SALT-28834,3480,She removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes. Now she,She removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes.,Now she,gold,\"lays out an assortment of handguns, ammunition and hardware on the bed.\",\"wears her hats as a couple knows the specifics of a group of older men with boots, and her mother.\",\"drives his car through the sunlit window - side window, looks over his shoulder at the lawyer who stares at him.\",packs a copy of the file from someone's aunt.,0\n16334,lsmdc3059_SALT-28834,3475,\"Someone leans close and kisses the top of her blonde head. Back in the present, someone\",Someone leans close and kisses the top of her blonde head.,\"Back in the present, someone\",gold,checks his gaze phone.,shifts her listless gaze.,scribbles on a sandwich as someone pulls off into the study.,lies un - naked before a dark - haired girl with his hands folded.,1\n16335,lsmdc3059_SALT-28834,3479,Someone retrieves a jewelry box from a plastic bag containing cash and passports. She,Someone retrieves a jewelry box from a plastic bag containing cash and passports.,She,gold,takes off her glasses and puts on a pair of glasses.,glances at her young son then plunges out of the frame.,\"walks over, and a little white cardigan is on top of it.\",removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes.,3\n16336,lsmdc3059_SALT-28834,3477,\"Depositing her backpack on the bed, she moves through the space, examining it with a keen perceptive gaze. She\",\"Depositing her backpack on the bed, she moves through the space, examining it with a keen perceptive gaze.\",She,gold,runs over to him and places her hand on his.,descend to the flat gate where seconds are lit.,returned the pace with his father at a nearby computer station.,peers into a bathroom then returns to the bedroom and removes her knit cap.,3\n16337,lsmdc3059_SALT-28834,3482,\"Later someone uses a needle to draw clear venom from the spider. By her open laptop, a printer\",Later someone uses a needle to draw clear venom from the spider.,\"By her open laptop, a printer\",gold,runs from his mouth and produces texts.,\"ejects a page headed, subway system access tunnels.\",shows the name a message that needs to read.,shows someone who folds up her sweater hanging on the cellphone.,1\n16338,lsmdc3059_SALT-28834,3474,\"Taking his hand, she presses her lips to it. Someone\",\"Taking his hand, she presses her lips to it.\",Someone,gold,holds her hands aside and lifts him over her lips.,leans close and kisses the top of her blonde head.,holds her closed as she heads into the daylight.,opens it and looks at it.,1\n16339,lsmdc3059_SALT-28834,3478,She peers into a bathroom then returns to the bedroom and removes her knit cap. Someone,She peers into a bathroom then returns to the bedroom and removes her knit cap.,Someone,gold,\"beams after someone, staying on to safety.\",retrieves a jewelry box from a plastic bag containing cash and passports.,\"through her arched round mirror, a adjacent bathroom shows the window panes allowing pastel chain mesh to the wall.\",stand before a bus.,1\n16340,lsmdc3059_SALT-28834,3483,\"By her open laptop, a printer ejects a page headed, Subway System Access Tunnels. Someone\",\"By her open laptop, a printer ejects a page headed, Subway System Access Tunnels.\",Someone,gold,steps from the train under a busy road.,hauls the praying removal logo toward them.,firmly removes a ironed shirt.,\"crosses to a window, pulls the drapes aside a few inches and peers out.\",3\n16341,anetv_0YQPGAsZPgY,8324,A man next to him begins to hit a stick against a metallic percussion instrument. The man playing the bongos,A man next to him begins to hit a stick against a metallic percussion instrument.,The man playing the bongos,gold,offers a song to the gymnast.,keeps one foot away.,knocks one of them over at which point the man next to him sets the bongo upright again.,stops the drum and then switches away to it.,2\n16342,anetv_0YQPGAsZPgY,8323,A man plays bongos in an animated fashion while a woman next to him plays the keyboard and a man behind him plays guitar. A man next to him,A man plays bongos in an animated fashion while a woman next to him plays the keyboard and a man behind him plays guitar.,A man next to him,gold,plays the bagpipes while singing and playing the drums.,demonstrates how to do gymnastics on the piano.,begins to hit a stick against a metallic percussion instrument.,drops the violin and shakes his hands in frustration and curtsies before they join him.,2\n16343,anetv_UYhKDweME3A,14201,\"Then, the man puts the spaghetti in the bowling pot. After, the man\",\"Then, the man puts the spaghetti in the bowling pot.\",\"After, the man\",gold,taste the spaghetti and drain it.,make lemonade into a blue cup.,puts salt on the glass of a blender.,adds garlic to a living bowl.,0\n16344,anetv_UYhKDweME3A,14202,\"After, the man taste the spaghetti and drain it. Next, the man\",\"After, the man taste the spaghetti and drain it.\",\"Next, the man\",gold,opens a large knife at the dish.,sets the plate and sink on the lower plate of well and goes to put the dishes in the oven.,adds sprinkles creating butter.,adds grated cheese and oil on the spaghetti.,3\n16345,anetv_FTmGHtBdWi0,11689,Two men meet in a booth and sit down. They,Two men meet in a booth and sit down.,They,gold,begin a game of arm wrestling.,\", glowers and employee traffic.\",are engaged in a game of ping pong.,\"are standing, talking to each other.\",0\n16346,anetv_FTmGHtBdWi0,18657,\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and then wins by pushing the man's hand down. A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they\",\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and then wins by pushing the man's hand down.\",A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they,gold,continue sliding and the others smile and clap their hands.,shake hands and shake hands.,\"'re both shaking, and once again the man on the right wins.\",are standing then stop.,2\n16347,anetv_FTmGHtBdWi0,11690,They begin a game of arm wrestling. They,They begin a game of arm wrestling.,They,gold,watch a game of lockers.,are shown in a boat.,see someone on the beam.,push and pull until there is a winner.,3\n16348,anetv_FTmGHtBdWi0,18656,\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they start to arm wrestle. Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and\",\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they start to arm wrestle.\",\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and\",gold,then wins by pushing the man's hand down.,misses them again to the kids.,spins before his back while still dancing and clapping with them.,there's a man talking to seeing his partner at seeing him.,0\n16349,anetv_FTmGHtBdWi0,18655,\"Two very muscular men wearing tanktops appear talking and the text on the screen say's that the name of the person is Alon Gabbay and the second man's name is Jeff Said. The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they\",Two very muscular men wearing tanktops appear talking and the text on the screen say's that the name of the person is Alon Gabbay and the second man's name is Jeff Said.,\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they\",gold,start to arm wrestle.,shake up a bottle on a fax machine while the host is facing them.,fly into the camera assisting them.,'re just cheering going to music beginning.,0\n16350,anetv_FTmGHtBdWi0,18658,\"A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they're both shaking, and once again the man on the right wins. The winner smiles, flexes his two arms, stands up, shows his arm muscles and he\",\"A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they're both shaking, and once again the man on the right wins.\",\"The winner smiles, flexes his two arms, stands up, shows his arm muscles and he\",gold,sits down on another table.,turns away and follows an others down.,drops his shirt before him to ride away.,goes into the floor.,0\n16351,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15148,The teen hides in the trunk of a car. Someone,The teen hides in the trunk of a car.,Someone,gold,imitates eating as someone gets up.,drives past a police car.,\"moves backward out front, landing in.\",grasps his shoulder and pushes him onward.,1\n16352,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15155,The older man wears a nasal breathing tube. Someone,The older man wears a nasal breathing tube.,Someone,gold,draws a bruised tooth and holds out the bloody logo.,looks down on three glasses of beer.,clutches the water tightly.,meets someone at the front door.,3\n16353,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15147,Someone hides in a storage tunnel. The teen,Someone hides in a storage tunnel.,The teen,gold,swivels his gun on his hand - held firearms.,gives a silencer which letters lining up from the window glass then heads off.,digs into a pumpkin.,hides in the trunk of a car.,3\n16354,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15153,He picks up a thick file. He,He picks up a thick file.,He,gold,takes it from his plate and picks up the broom.,\"turns and finds someone, standing behind them to let her read.\",\"breaks a few blank pages, dropping a thin and crumpled note.\",drops it on his desk.,3\n16355,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15145,Young someone ducks behind a boatshed. She strikes him with an oar and he,Young someone ducks behind a boatshed.,She strikes him with an oar and he,gold,pounds him through a canvas.,scrambles upon her with a cheery wave.,falls off the docks.,kicks it over to maximilian.,2\n16356,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15151,\"Now, someone, someone, and someone wait in someone's study. Someone\",\"Now, someone, someone, and someone wait in someone's study.\",Someone,gold,drives down a winding road.,meets his gaze on the floorboards as he drinks.,wheels someone into the room.,packs clothes into a closet.,2\n16357,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15150,\"Someone returns her gaze to someone. Now, someone, someone, and someone\",Someone returns her gaze to someone.,\"Now, someone, someone, and someone\",gold,hurry up a flight of stairs in a new deposit room.,wait into a clearing corridor.,climb a smoking tower in a decrepit - lined wall.,wait in someone's study.,3\n16358,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15157,\"Someone leaves someone who wheels himself toward her, his lips curled downward. Behind him, someone and someone\",\"Someone leaves someone who wheels himself toward her, his lips curled downward.\",\"Behind him, someone and someone\",gold,step off abruptly near someone.,step into the hall.,lie asleep in bed as the man leaves.,enter an empty room.,1\n16359,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15149,They look at someone who leans against a brick wall across the park. Someone,They look at someone who leans against a brick wall across the park.,Someone,gold,\"looks over to someone, then looks over.\",listens in with doleful eyes.,returns her gaze to someone.,turns away from the radio.,2\n16360,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15152,Someone wheels someone into the room. He,Someone wheels someone into the room.,He,gold,throws the pillow near him and pulls him out.,picks up a thick file.,dumps cash on his hands.,slides the phone on his shoulder.,1\n16361,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15158,\"Holding her uncle's gaze, someone caresses the lapel of her coat self - soothingly. He\",\"Holding her uncle's gaze, someone caresses the lapel of her coat self - soothingly.\",He,gold,reaches out its case and grabs a casual stole.,peers back his gaze crestfallen and disbelieving.,\"crosses her arms down the front of her dress and moves toward him, unloading his buckets by hand as they descends.\",presents her back to him.,1\n16362,anetv_jmmOBfS3JIg,11223,A man in dress shirt taps his cloth on the spout of a glass container to get it damp. The man,A man in dress shirt taps his cloth on the spout of a glass container to get it damp.,The man,gold,starts peeling and places a finger through his paint then has a sticky solution in his mouth.,uses his cloth wrapped around his index and middle finer to polish a shoe.,walks down the stairs to the pool next to his face.,carries the small dog under it then rolls it over it in his wake.,1\n16363,anetv_jmmOBfS3JIg,11225,The man rubs his cloth in a shoe polish tin for more of the substance. The man,The man rubs his cloth in a shoe polish tin for more of the substance.,The man,gold,lifts the towel and washes the smiling items.,uses a plastic pallet to cover the tiles.,continues to polish the show around the toe of the shoe.,removes a knife tucked beneath his chair revealing a sharp bowl with sticky sticks.,2\n16364,anetv_jmmOBfS3JIg,11224,The man uses his cloth wrapped around his index and middle finer to polish a shoe. The man,The man uses his cloth wrapped around his index and middle finer to polish a shoe.,The man,gold,is finally doing a hard shining mist on the top of a mixed body of wall table and wearing the clothes.,talks to the camera and shows off her muscles at the end of the show.,rubs his cloth in a shoe polish tin for more of the substance.,sprinkles them over the newly created strip of iron.,2\n16365,anetv_jmmOBfS3JIg,11226,The man again rubs his cloth in the tin for more polish. The man,The man again rubs his cloth in the tin for more polish.,The man,gold,applies a large can of paint to the plastic.,paints the boy and both begins spraying the fence with some different measuring designs.,continues to polish the show around the toe of the shoe near the toe in a circular motion.,\"uses a metal bowl to rub the back of it repeatedly, then wagging it off again.\",2\n16366,anetv_pzZ4TGcMK1k,19002,\"Swimmer stand on the diving boards, then they jump spinning in the air and diving in the water. Swimmers jump from the diving board, they\",\"Swimmer stand on the diving boards, then they jump spinning in the air and diving in the water.\",\"Swimmers jump from the diving board, they\",gold,are followed by a man in a black shirt and medieval gear.,spins three times in the air before to dive inn the water.,float all a bit and begin diving into the pool.,fall as the water swim around them.,1\n16367,anetv_pzZ4TGcMK1k,19001,\"People stand on the border of the diving boards and they dive while in the water. Swimmer stand on the diving boards, then they\",People stand on the border of the diving boards and they dive while in the water.,\"Swimmer stand on the diving boards, then they\",gold,continue on the surface.,run and flip a few times before everyone does stand before.,start to dive into a locomotive broad divers kicking humans.,jump spinning in the air and diving in the water.,3\n16368,lsmdc3044_KNOCKED_UP-20885,11913,Someone touches her throat and heaves forward. She,Someone touches her throat and heaves forward.,She,gold,\"closes her eyes, then turns to a purple - haired helper.\",\"lies in the sack, and pulls a bandage to her forehead.\",looks at someone and shakes her head.,claps a hand over her mouth.,3\n16369,anetv_k7MXH55q28U,18444,\"Once the rope is inside the hook, he begins moving up the wall but shortly after he stops and begins talking. The male then\",\"Once the rope is inside the hook, he begins moving up the wall but shortly after he stops and begins talking.\",The male then,gold,begins to clear all the way and places onto the floor.,takes a rock and bounces it on the ground.,begins talking about the clip again and goes back up the wall.,goes back to the wall and pauses and bows.,2\n16370,anetv_k7MXH55q28U,18443,\"As the man is still holding on, he describes how the hooks work and clips it on to the rope. Once the rope is inside the hook, he\",\"As the man is still holding on, he describes how the hooks work and clips it on to the rope.\",\"Once the rope is inside the hook, he\",gold,\"network down the line on a rope chain attached to the wire and tips the rope forward, filming it.\",grabs it into the wire and then walks back to the other rope and another flag that falls onto the wall.,\"is running back and forth, jumping into the water sitting.\",begins moving up the wall but shortly after he stops and begins talking.,3\n16371,anetv_k7MXH55q28U,18445,\"The male then begins talking about the clip again and goes back up the wall. As he progresses, there are hooks everywhere on the wall and when he gets near them, he\",The male then begins talking about the clip again and goes back up the wall.,\"As he progresses, there are hooks everywhere on the wall and when he gets near them, he\",gold,puts his rope inside of it for support and safety.,\"react to viewers, smiling, enjoying the film and showing on her dates square.\",uses the proper diagon against around some stepfather run and be building as obstacles on trims.,did all drills in elastic.,0\n16372,anetv_k7MXH55q28U,18442,\"A male is attached to a harness and has one of his hands on an indoor rock climbing wall. As the man is still holding on, he\",A male is attached to a harness and has one of his hands on an indoor rock climbing wall.,\"As the man is still holding on, he\",gold,dives off a rock and solves it while pushing it down and pulling the cord.,stands up and walks along the monkey bars.,describes how the hooks work and clips it on to the rope.,is down talking and making a hard jump in the water and jerking as he attempts to skip.,2\n16373,anetv_k7MXH55q28U,10772,Man clips the rope to the silver caribiner. Man,Man clips the rope to the silver caribiner.,Man,gold,begins pulling off the handle of the splits.,crawls up the white - colored wall.,loses the riding and passes it up the hill.,lifts the man's face and throws it on a blue mat.,1\n16374,anetv_TdAfqkmTrf0,1561,Players are running around playing lacrosse on a field of grass. The audience,Players are running around playing lacrosse on a field of grass.,The audience,gold,celebrate as two men win back and distract the ball and celebrate.,is cheering and cheering watching.,is watching and applauding for them.,is sitting on a net behind them watching.,2\n16375,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10488,Someone arrives at the foot of the Orthanc Stairs. Someone,Someone arrives at the foot of the Orthanc Stairs.,Someone,gold,notices soldiers entering the secured office.,grips his legs and thrusts his hips.,looks down at someone.,\"moves quickly towards him, grimy and weary from his long ride.\",3\n16376,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10487,\"Someone gallops through the gate, into the fortress of isengard. a great ring - wall of stone, a mile from rim to rim, encloses beautiful trees and gardens, watered by streams that flow down from the mountains. Someone\",\"Someone gallops through the gate, into the fortress of isengard. a great ring - wall of stone, a mile from rim to rim, encloses beautiful trees and gardens, watered by streams that flow down from the mountains.\",Someone,gold,giants run down the path amongst other adults and feet which are prune into a autumnal dust.,arrives at the foot of the orthanc stairs.,\"has a heart, falling.\",\"brought through, a window that illuminates the figure of a giant army, bands with skimmer.\",1\n16377,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10489,\"People walk slowly between the beautiful trees of Isengard, someone's clean, white robe contrasts with someone's dusty grey robes. People\",\"People walk slowly between the beautiful trees of Isengard, someone's clean, white robe contrasts with someone's dusty grey robes.\",People,gold,recover the girls from behind a fireplace at the same time.,\"are seated in a small, cluttered room to the side of the cavernous central chamber.\",get on either side as well.,turn to the mother.,1\n16378,anetv_DEEgoxzTvdk,7292,We see the vast ocean water around us. We then,We see the vast ocean water around us.,We then,gold,see two men swimming in a pool where people paddle toward the water.,see various tents secluded homes.,see people riding horses in the woods.,see several people as they relax on a boat.,3\n16379,anetv_DEEgoxzTvdk,7291,A group of tall trees is surrounded by water. We,A group of tall trees is surrounded by water.,We,gold,are standing and a group of people are pulling out the smoke and they just sound what is going on.,see the vast ocean water around us.,\"float when a sun appears, the water in full full sky scuba gear is shown.\",blows a circle of trees towards him.,1\n16380,anetv_u1VIetb75rs,5566,Weightlifters representing several countries are in a room. Many large men,Weightlifters representing several countries are in a room.,Many large men,gold,are in a large field trying to block colossus minutes and take.,engage the gymnast match in action.,\"are seen playing soccer with yoga, while flipping over and hugging each other.\",\"lift a heavy barbell in the competition, one after the other.\",3\n16381,anetv_u1VIetb75rs,5568,\"They hold the barbell over their head, and then receive a score on their efforts. When they are done and the victor has been declared, the top three men\",\"They hold the barbell over their head, and then receive a score on their efforts.\",\"When they are done and the victor has been declared, the top three men\",gold,stand and begin the dance.,shake their arms in one stunt.,begin to look for each other as they pull away.,pose with their medals.,3\n16382,anetv_u1VIetb75rs,5567,\"Many large men lift a heavy barbell in the competition, one after the other. They\",\"Many large men lift a heavy barbell in the competition, one after the other.\",They,gold,\"point, and then cheers as they celebrate with great forces.\",\"hold the barbell over their head, and then receive a score on their efforts.\",start building a new tilts up then get in when the coach talking is shown again.,run around one another while the others walk in and out of frame in their office.,1\n16383,anetv_u1VIetb75rs,6338,A man lifts a large weight over his head and drops it on the ground several times. The statistics,A man lifts a large weight over his head and drops it on the ground several times.,The statistics,gold,are shown on different parts.,are then shown again in slow motion.,are shown on the screen.,are shown on the same screen.,2\n16384,anetv_u1VIetb75rs,6339,The statistics are shown on the screen. Three men,The statistics are shown on the screen.,Three men,gold,running out mopping the area.,get medals and stand on a podium.,get into parallel shot.,throw a dart to the camera.,1\n16385,anetv_rXwSSTGmvb8,4229,The man squeezes a halved lemon into the measurer and then into the glass. The man,The man squeezes a halved lemon into the measurer and then into the glass.,The man,gold,\"pours the glass down, then adds a small straw into it.\",pours another drink and then strains a syrup into it.,fills the martini glass with a new straw.,adds ice to the glass.,3\n16386,anetv_rXwSSTGmvb8,4231,The man pours the shaken liquid into a smaller glass. The man,The man pours the shaken liquid into a smaller glass.,The man,gold,adds a vodka bottle and pours it into a glass.,adds salt and broth and adds juice.,pours drinks in the the glass.,picks up an orange and cuts its skin.,3\n16387,anetv_rXwSSTGmvb8,4225,A bald man stand behind a bar and talks and gestures. The man,A bald man stand behind a bar and talks and gestures.,The man,gold,claps and then serves another strike before making a drink.,touches and displays an alcohol bottle.,leans on the poles and holds his arms.,returns to the front and see several men.,1\n16388,anetv_rXwSSTGmvb8,4228,The man pours the alcohol into a small silver measurer and then into a the tall glass. The man,The man pours the alcohol into a small silver measurer and then into a the tall glass.,The man,gold,hands him a cordial lions as he screws the liquid around again.,pours the lemon into milk and pours it into the glass.,tosses her hair into the air and walks back each.,pours a liquid into the measurer and then into the glass.,3\n16389,anetv_rXwSSTGmvb8,129,Man is standing in front of a bar talking to the camera. man,Man is standing in front of a bar talking to the camera.,man,gold,is doing a karate wrestler in a competition.,\"plays a saxophone on stage, and another man interviews an people.\",is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it.,is sitting up holding the racket and is kicking the balls back and forth to the floor.,2\n16390,anetv_rXwSSTGmvb8,4227,The man takes out a tall glass cup. The man,The man takes out a tall glass cup.,The man,gold,pours the alcohol into a small silver measurer and then into a the tall glass.,puts a spare tire on the car and replace it.,talks and drinks the glass of the chips.,\"takes a drink from the man and holds a bar in his mouth, then holds up a martini glass.\",0\n16391,anetv_rXwSSTGmvb8,4224,The credits of the clip are shown. A bald man,The credits of the clip are shown.,A bald man,gold,is shown talking to his camera.,\"is demonstrating, showing how to ski.\",stand behind a bar and talks and gestures.,is riding in snow on a snowboard.,2\n16392,anetv_rXwSSTGmvb8,4232,The man picks up an orange and cuts its skin. The man,The man picks up an orange and cuts its skin.,The man,gold,puts on both glasses.,squeezes the skin above the glass and adds it to the drink.,faces the calf again.,drills a hole in the ice.,1\n16393,anetv_rXwSSTGmvb8,130,Man is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it. the man,Man is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it.,the man,gold,\"start talking to the camera, holding a long stick and shaped up hits.\",shakes the drink and serve it in a glass.,sizes the man up and put it in an old glass.,in the bar explains to alcohol in the mixture.,1\n16394,anetv_rXwSSTGmvb8,4230,The man shakes the liquid. The man,The man shakes the liquid.,The man,gold,pours the shaken liquid into a smaller glass.,adds powder to the glasses.,sprays sunscreen on both hand and applies powder into the handle.,pulls the leaves out of the bottle.,0\n16395,anetv_rXwSSTGmvb8,4226,The man touches and displays an alcohol bottle. The man,The man touches and displays an alcohol bottle.,The man,gold,finishes the drink of the cup and drink.,sips the mouthwash and gets up as he drinks from the cup.,takes out a tall glass cup.,mixes the rubbing bottles next to a mirror.,2\n16396,lsmdc3074_THE_ROOMMATE-3908,10237,\"Someone crosses back to her own bed. Flopping down with a slight pout, she\",Someone crosses back to her own bed.,\"Flopping down with a slight pout, she\",gold,nudges her foot off the finer.,steps back off and someone fixes her coat on to her blonde haired friend.,cringes at her knee.,puts in ear buds and picks on her stalls.,3\n16397,anetv_ix40OdQd7iE,11522,A large group of people are seen standing around a track with one holding a large pole and running down the track. The man pole volts over the bar and,A large group of people are seen standing around a track with one holding a large pole and running down the track.,The man pole volts over the bar and,gold,looks back to the camera while others watch him on the side.,spins around multiple times in the end.,lands on a bench.,is shown again in slow motion.,3\n16398,anetv_ix40OdQd7iE,11571,\"An athlete runs with a pole and jumps high over an horizontal pole successfully. Then, a shirtless person runs to jump high but he\",An athlete runs with a pole and jumps high over an horizontal pole successfully.,\"Then, a shirtless person runs to jump high but he\",gold,jumps onto the ground.,ropes up a successfully.,makes fall the horizontal bar.,gives the pick high pole to measure his team 'jump.,2\n16399,anetv_ix40OdQd7iE,11523,The man pole volts over the bar and is shown again in slow motion. Several more clips,The man pole volts over the bar and is shown again in slow motion.,Several more clips,gold,are shown of people winning and surfing them.,are shown of people being shown in their arms and fighting over the weights.,have shown of the people shown jumping off in the distance and laughing again.,are shown of people pole volting over a beam as well as again in slow motion.,3\n16400,anetv_2Ot4ZPYpNwI,9924,\"A man is seated on a couch, playing a harmonica. He\",\"A man is seated on a couch, playing a harmonica.\",He,gold,\"takes a couple of slow moves, looking to people.\",\"turns to the camera, playing the drum set.\",lowers it from his mouth when he is done.,is playing a guitar and singing into a microphone.,2\n16401,lsmdc1046_Australia-90877,15254,He sidles up and whispers to her. He,He sidles up and whispers to her.,He,gold,sets her back down.,gives a thumbs up.,points to a display of spears.,gives her a look.,2\n16402,anetv_G2soQTiGL10,13180,The people then assist one another putting ingredients into pans and flipping them around. The people,The people then assist one another putting ingredients into pans and flipping them around.,The people,gold,continue moving around and ends with the camera panning the game.,continue mixing the food together and finish by presenting it onto a plate.,then pan containers back into the camera.,continue washing the dishes while looking down and laughing to one another.,1\n16403,anetv_G2soQTiGL10,13179,A large group of people are seen standing around a table with one speaking to the camera. The people then,A large group of people are seen standing around a table with one speaking to the camera.,The people then,gold,begin running around one another while laughing to one another.,assist one another putting ingredients into pans and flipping them around.,begin playing lacrosse and hug one another.,\"demonstrate all around them being guided, while men watch and speak to one another.\",1\n16404,anetv_jIQFVSymHQs,3717,An inflatable ball bounces on the grass as kids watch playing a game. A young boy in blue shirt and jeans,An inflatable ball bounces on the grass as kids watch playing a game.,A young boy in blue shirt and jeans,gold,is on trying to get his score and died down.,stands in front of the pool and the weight shaking.,retrieves the ball and runs towards the group.,is doing orange bouncing in the air.,2\n16405,anetv_aAlbRFeu32E,2305,\"Next she is shown sitting at the restaurant eating fries and then she is shown in her room again, staring at the clothes on her bed and putting on her shoes. She\",\"Next she is shown sitting at the restaurant eating fries and then she is shown in her room again, staring at the clothes on her bed and putting on her shoes.\",She,gold,is standing in a room practicing shooting while a black wrestler is a longer cheap blue shirt is tambourine and saddles.,is also shown doing fun things in the video and other girls are too.,lays a little black hat around her sashays then places a cellphone wet and starts via the next christmas lights.,is then seen close with cups and waving the arms in her mouth and doing her success.,1\n16406,anetv_aAlbRFeu32E,2304,\"First the young woman is sleeping in her bed, but then she wakes up to say something. Next she is shown sitting at the restaurant eating fries and then she\",\"First the young woman is sleeping in her bed, but then she wakes up to say something.\",Next she is shown sitting at the restaurant eating fries and then she,gold,\"is shown in her room again, staring at the clothes on her bed and putting on her shoes.\",adds a lemonade into the shot.,stops to talk to the men in the mirror for a closeup of her or what she wants him already.,joins the girl who looks like she is talking to the camera.,0\n16407,anetv_nB50V0OBto0,14698,\"The little girl who was talking then goes outside and snowboards many times, sometimes with other people, in the backyard, often rolling or falling off of the board and losing balance. After the snowboarding ends the little girl\",\"The little girl who was talking then goes outside and snowboards many times, sometimes with other people, in the backyard, often rolling or falling off of the board and losing balance.\",After the snowboarding ends the little girl,gold,returns to talking to the camera while several frames of language invite watchers to join their channel.,comes to the bars at the top of the hill and fails to catch her.,shows a ski that is attached to a canoe and glittering.,gets ready to add a second level to the bottom of the ski and starts skiing.,0\n16408,anetv_nB50V0OBto0,5786,A girl is seen pulling on blinds and speaking to the camera. Another girl,A girl is seen pulling on blinds and speaking to the camera.,Another girl,gold,is seen playing a game and moving her arms back and fourth.,is seen rolling up the camera and begins applying makeup to the lotion.,spits a contact and has ice ice on it.,curls her hair and shows a man and girl speaking to the camera.,3\n16409,anetv_nB50V0OBto0,5787,Another girl curls her hair and shows a man and girl speaking to the camera. Several shots,Another girl curls her hair and shows a man and girl speaking to the camera.,Several shots,gold,of the girl perform are shown while a person skin her while rubbing.,are shown of people sitting around the pool holding up balls and laughing to the camera.,are shown of cut and blush on the ground.,are shown of people riding down a hill on sleds and playing with one another.,3\n16410,anetv_6pnabYJdqxc,18913,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website displays at the bottom in purple letters. The man is now holding a floral plant up with his left hand and with his right hand he,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website displays at the bottom in purple letters.,The man is now holding a floral plant up with his left hand and with his right hand he,gold,\"swivels his left finger, over his left ear, and snaps off a picture of the spot.\",\"cuts the flowers off, continues to talk the whole time, and then holds up the flower less plant with his right hand.\",\"sees some old letters with white words that say, recorded video of the girls riding horses toward gates.\",\"wipes it down back very step, he turns it down and ties his legs to a side at the side of the trees.\",1\n16411,anetv_6pnabYJdqxc,18912,Multiple white and purple flowers are shown in a large field. A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website,Multiple white and purple flowers are shown in a large field.,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website,gold,gives a crowd jowly face.,and archery is appearing on it.,displays at the bottom in purple letters.,is a bold monk in white letters that hangs just the distance.,2\n16412,anetv_6pnabYJdqxc,19411,A man is talking while standing amongst several purple flowers. He,A man is talking while standing amongst several purple flowers.,He,gold,is drawing on the floor!,takes a small block and begins to hit the target.,shows off several different kinds of flowers as he talks.,is wearing an animal cape and tubing in snow.,2\n16413,anetv_6pnabYJdqxc,19410,White flowers are being blown by a light wind. A man,White flowers are being blown by a light wind.,A man,gold,is talking while standing amongst several purple flowers.,and children are gathered between sand buckets.,describes the leafs as well as talking to the camera.,blows powder into the air.,0\n16414,anetv_TPsMocKBQU0,2912,We go back to the first lady bouncing. The lady,We go back to the first lady bouncing.,The lady,gold,jumps off the slack line and gets back on.,spins her baby tennis box.,raise a pose and put on a black australia hat.,goes into the correct positions for the event.,0\n16415,anetv_TPsMocKBQU0,2913,The lady spins while bouncing. The lady,The lady spins while bouncing.,The lady,gold,jumps off then is back on.,moves on the rope on.,dismounts and falls into the grass.,walks on a court but does n't stop by.,0\n16416,anetv_TPsMocKBQU0,2908,We see a lady bouncing on a slack line. The lady,We see a lady bouncing on a slack line.,The lady,gold,reaches and kicks the javelin.,does karate in the stands.,sits on her knees.,takes rocks in front of her.,2\n16417,anetv_TPsMocKBQU0,2910,The lady falls of the slack line. We,The lady falls of the slack line.,We,gold,see him jump down on the trampoline.,see the man in red top chair.,see a man bouncing on the slack line.,see the man working in the car.,2\n16418,anetv_TPsMocKBQU0,2911,We see a man bouncing on the slack line. We,We see a man bouncing on the slack line.,We,gold,see a website on a white television.,see black players and children talking in the studio.,see a print on a cowboy and we see a text logo intro screen.,go back to the first lady bouncing.,3\n16419,anetv_KzogfJrOqJE,15261,A woman is seen turning on a hose to pour water in and walks over to another bucket and sits down. The woman then,A woman is seen turning on a hose to pour water in and walks over to another bucket and sits down.,The woman then,gold,raises the bucket and it falls into a bucket and presents it to the camera.,begins wiping the hose with a rubber nozzle.,empties the wallpaper into a bucket and continues to mop the floor.,washes the clothes in the bucket while looking to the camera leading into her hanging up the clothes and speaking to the camera.,3\n16420,anetv_KzogfJrOqJE,7855,A woman is standing at a faucet and filling a metal bucket with water and the green word Laundry! quickly pops up on the screen. The woman walks out of view while the metal bucket is still filling and she,A woman is standing at a faucet and filling a metal bucket with water and the green word Laundry! quickly pops up on the screen.,The woman walks out of view while the metal bucket is still filling and she,gold,spits it out of the sink.,passes larger bucket on the grass.,begin talking in the mirror again.,continues the contents of the buckets into the hands of the mop.,1\n16421,anetv_KzogfJrOqJE,7856,The woman walks out of view while the metal bucket is still filling and she passes larger bucket on the grass. The woman returns and she,The woman walks out of view while the metal bucket is still filling and she passes larger bucket on the grass.,The woman returns and she,gold,moves the pinata instead.,washes it on the top.,has a small wooden stool that she places near the larger bucket.,\"lifts the mop's edge, while the child grabs more quick mops and continues washing it.\",2\n16422,anetv_OBfVj8mCVUw,10328,The woman begins knitting win the material. the camera,The woman begins knitting win the material.,the camera,gold,focuses on the images.,shows a 360 view of the woman knitting.,replays the girl uses tennis his collar and almost hits his chest.,finishes her looking up.,1\n16423,anetv_OBfVj8mCVUw,10371,We shift and see the puppy sitting next to her. We,We shift and see the puppy sitting next to her.,We,gold,bow to see the girl again.,see her phone on the chair arm.,make their way up the staircase to the candlelit hall.,recognize the baby's short paw.,1\n16424,anetv_OBfVj8mCVUw,10370,We see a lady knitting a blue item. We,We see a lady knitting a blue item.,We,gold,see a black screen title with a words on it.,shift and see the puppy sitting next to her.,see the ending title card.,see a lady and a vet go to the camera.,1\n16425,lsmdc1034_Super_8-7920,16873,\"Yellow Coupe with a black vinyl roof pulls up outside the house. From the swing, someone\",Yellow Coupe with a black vinyl roof pulls up outside the house.,\"From the swing, someone\",gold,feeds a sleek pearl necklace.,turns and puddle at a boy.,watches as a good - looking man with shoulder length blonde hair gets out of the car and walks towards the house.,rides a flight of headlights in to a home.,2\n16426,anetv_cDnJjAQtf-g,13080,Three men discuss the topic of playing water polo with kayaks. The scene,Three men discuss the topic of playing water polo with kayaks.,The scene,gold,\"clears, after floating off their boards with people.\",returns to a cooling rack and an ball room displays for olympic photography.,changes to show a display of water polo with kayaks.,is showing a blue park fluttering in the ocean.,2\n16427,anetv_cDnJjAQtf-g,13081,\"Two boats crash as two men try to paddle their way to the ball, The men commentate over the scene, they players look severely injured. The display changes back to the men talking about the water polo, they\",\"Two boats crash as two men try to paddle their way to the ball, The men commentate over the scene, they players look severely injured.\",\"The display changes back to the men talking about the water polo, they\",gold,go to many different positions.,change distances and meet up together.,are shown with apparent examples.,are very intrigued and shocked.,3\n16428,lsmdc3049_MORNING_GLORY-23643,7587,She sits in the back of a taxi and presses her hand to her forehead. Someone,She sits in the back of a taxi and presses her hand to her forehead.,Someone,gold,looks down at someone's motorcycle.,'s in his dressing room on the phone.,flashes her attention back to what's happening.,looks up from her headstone.,1\n16429,anetv_maE7PmL7Zjk,9775,What bowt it? logo appears on screen. a Serious Game of Pool,What bowt it? logo appears on screen.,a Serious Game of Pool,gold,is shown for an montage.,scrolls across the screen.,leads into people talking before walking away from the area.,appears presented with real amusement.,1\n16430,anetv_maE7PmL7Zjk,2752,An intro leads into two men holding pool sticks and one hitting the white ball. The other,An intro leads into two men holding pool sticks and one hitting the white ball.,The other,gold,is then seen running on the ice and ends dancing afterwards.,puts a piece of paper down and lines up his shot with the ball.,watch the ball to hit the leaves by first stuffs their back against each other.,one then walks over past an object again.,1\n16431,anetv_maE7PmL7Zjk,2753,The other puts a piece of paper down and lines up his shot with the ball. He,The other puts a piece of paper down and lines up his shot with the ball.,He,gold,then finishes it at person and demonstrates how to play it in the play the game.,\"hefts a weight in front of those they do, empties it out and converses as the two anticipating people play the game.\",walks around the table and looks at the other without pouring dressing.,\"writes on the paper, turns and walks around the pool table, and looks back towards the other man.\",3\n16432,anetv_maE7PmL7Zjk,9776,A Serious Game of Pool scrolls across the screen. Young men,A Serious Game of Pool scrolls across the screen.,Young men,gold,play ping pong all around.,are dancing together in a big group of people.,play pool in a dimly lit room.,are shown also riding an outdoor volleyball game on the beach.,2\n16433,anetv_DVXOr56dlKg,11059,A Frenchman pole vaults in hot weather. Renaud,A Frenchman pole vaults in hot weather.,Renaud,gold,leads a student walking across the street and prop himself up against the doorman's window.,goes for another exciting pole vault.,race on a durmstrang.,\"frowns at someone, quickly seething into white and slams his cars.\",1\n16434,anetv_DVXOr56dlKg,18413,A man runs down a track with a pole and leaps over a high bar. People in the stands,A man runs down a track with a pole and leaps over a high bar.,People in the stands,gold,watch the gymnast mount the pommel.,are watching the man.,perform the same as he completes his jump.,are watching the pose.,1\n16435,lsmdc0010_Frau_Ohne_Gewissen-51387,7943,Someone releases the hand brake and puts the car in reverse. Someone,Someone releases the hand brake and puts the car in reverse.,Someone,gold,is again busy unwrapping the tape from his leg.,gets out of the sedan and drives off.,plods to the broken door.,punches the gate and tries to launch the city which flips the rest of the way.,0\n16436,lsmdc0033_Amadeus-67033,8270,\"Warily, someone crosses and opens he door. Before him\",\"Warily, someone crosses and opens he door.\",Before him,gold,has a large map on the wooden rim surface which has just completed elliptical.,can wizard a statuesque fresh shades of his beard breathing through the veins.,stands the masked stranger.,\"is a sizes of drinks, which women are two staffer keypad.\",2\n16437,lsmdc0033_Amadeus-67033,8269,\"Instantly someone starts to dance to it, all alone: gleefully, like a child. He\",\"Instantly someone starts to dance to it, all alone: gleefully, like a child.\",He,gold,\"looks up at his father's portrait, and makes a silly, rude gesture at it.\",\"sits beside her on a worktop, facing the camera.\",trots around and attacks him.,has bowed his body on the floor when he stumbles.,0\n16438,lsmdc0033_Amadeus-67033,8268,Someone rises and returns to. Instantly someone,Someone rises and returns to.,Instantly someone,gold,\"starts to dance to it, all alone: gleefully, like a child.\",takes the cup out of his hand and barges someone towards the house.,lets him slip out of the car.,is up in her bed.,0\n16439,lsmdc3029_GREEN_ZONE-13513,17636,\"As someone makes his way around the pool, two guys in board shorts amble past, both casually toting semi - automatics. The soldier\",\"As someone makes his way around the pool, two guys in board shorts amble past, both casually toting semi - automatics.\",The soldier,gold,reaches back up and shoots the runs.,\"hugs the child, lets go of his hands and punches him.\",heads to someone's small patio table and takes a seat.,lowers his hand and holds up several bottles in front of him.,2\n16440,lsmdc3029_GREEN_ZONE-13513,17639,Someone eyes someone then returns his attention to the book. He,Someone eyes someone then returns his attention to the book.,He,gold,lifts his gaze to the soldier's face.,gazes thoughtfully at finds dark the revolving bowl.,goes from the van to the wrong store on the opposite side of the road.,\"closes his laptop and turns, and spots someone.\",0\n16441,lsmdc3029_GREEN_ZONE-13513,17643,She comes up behind him as he heads around the pool. Someone,She comes up behind him as he heads around the pool.,Someone,gold,looks imploringly at his father.,gives a bashful smile.,rests her head on her knee.,lands before someone with his arms wide.,1\n16442,lsmdc3029_GREEN_ZONE-13513,17635,\"Someone spots someone and a colleague at a table. As someone makes his way around the pool, two guys in board shorts\",Someone spots someone and a colleague at a table.,\"As someone makes his way around the pool, two guys in board shorts\",gold,come up diving into van and scramble over the red table with the individual getting into his arms.,can in a happy day.,sit in his car.,\"amble past, both casually toting semi - automatics.\",3\n16443,lsmdc3029_GREEN_ZONE-13513,17637,\"The soldier heads to someone's small patio table and takes a seat. Meanwhile, someone\",The soldier heads to someone's small patio table and takes a seat.,\"Meanwhile, someone\",gold,walks the couple to the driveway.,prods his coffee with his hands.,hurries out of the park.,strolls around the patio.,3\n16444,lsmdc3029_GREEN_ZONE-13513,17634,Now someone dons his sunglasses as he leads his men onto a patio surrounds a luxurious pool. Someone,Now someone dons his sunglasses as he leads his men onto a patio surrounds a luxurious pool.,Someone,gold,steps cross a staircase.,descends from the collapsible and gazes towards it.,spots someone and a colleague at a table.,lunges at him then dabs him with a dagger.,2\n16445,lsmdc3029_GREEN_ZONE-13513,17641,Someone tucks the book into his jacket pocket. Someone,Someone tucks the book into his jacket pocket.,Someone,gold,screws his head back.,rises from the table and trods off.,makes an effort to break an arm over the locket.,gets up as the man packs off a slip of paper.,1\n16446,lsmdc3029_GREEN_ZONE-13513,17638,\"Meanwhile, someone strolls around the patio. Back at the table, someone\",\"Meanwhile, someone strolls around the patio.\",\"Back at the table, someone\",gold,hands someone the little black book.,removes his own glasses.,leans forward to examine a tv dazed.,greets two blonde executives in a row.,0\n16447,lsmdc3029_GREEN_ZONE-13513,17642,\"As someone stands, someone weaves toward him. She\",\"As someone stands, someone weaves toward him.\",She,gold,holds out his arm.,closes off and presses his button on the lock.,leans on the wall with a wounded glare.,comes up behind him as he heads around the pool.,3\n16448,lsmdc3029_GREEN_ZONE-13513,17640,He lifts his gaze to the soldier's face. Someone,He lifts his gaze to the soldier's face.,Someone,gold,finds another pick at the end of the game.,sits in a makeshift armchair.,blinks and turns his head until his hand pan white and someone's.,tucks the book into his jacket pocket.,3\n16449,lsmdc1056_Rambo-97074,13667,More corpses lie at the edge of the field. Someone,More corpses lie at the edge of the field.,Someone,gold,leaps onto the bed roof and disappears in the water.,helps someone to a snowy ridge.,holds his shirt against his nose.,holds up a heavy stick.,2\n16450,lsmdc1056_Rambo-97074,13666,Someone and the mercenaries overlook the field. More corpses,Someone and the mercenaries overlook the field.,More corpses,gold,lie at the edge of the field.,come into their house and race down the rocky wooden deck.,form a fetal position as a cat is coming from the ensemble.,emerge from the back seats.,0\n16451,lsmdc1056_Rambo-97074,13668,Someone holds his shirt against his nose. A woman's severed head,Someone holds his shirt against his nose.,A woman's severed head,gold,shows someone's side.,bears the six trooper wearing a bills bag nobody pays the hold.,hangs from a post.,lies dead at the table.,2\n16452,lsmdc1056_Rambo-97074,13661,Someone solemnly watches them go. He,Someone solemnly watches them go.,He,gold,turns away and goes to someone.,patiently drags his cook outside.,turns away and walks back to the boat.,\"nods to someone, overcome with sadness.\",2\n16453,lsmdc1056_Rambo-97074,13662,He turns away and walks back to the boat. Someone and the boy,He turns away and walks back to the boat.,Someone and the boy,gold,play with the straps of the ankle.,lead the mercenaries through forest undergrowth.,go flying down a sand hill lined up to a waterfall.,have sunk resting in the hammock.,1\n16454,lsmdc1056_Rambo-97074,13663,Someone's rifle is particularly bulky. They,Someone's rifle is particularly bulky.,They,gold,\"stops in front of a grimy - haired man wearing a hood that reveals a form, west pillars and floppy - trimmed hair.\",gathers sitting room.,cross a small stream.,engage in a sizzling polo.,2\n16455,anetv_OBua42LRiF8,10350,A black screen with title text of team names and a date is shown. A number of people,A black screen with title text of team names and a date is shown.,A number of people,gold,play a lacrosse game in a stadium while watched by several referees and spectators.,are shown performing the own type of indoor style.,are skateboarding on a sporting street getting ready for race racing through cars.,are seen on a court as the team gets in and a ball gets scored.,0\n16456,anetv_OBua42LRiF8,10351,A number of people play a lacrosse game in a stadium while watched by several referees and spectators. One team,A number of people play a lacrosse game in a stadium while watched by several referees and spectators.,One team,gold,scores a prayer to begin hoisted it into the goal.,seems to successfully score and celebrates.,walks down the field.,throws a ball around.,1\n16457,anetv_OBua42LRiF8,14687,Players play lacrosse on a field. A guy next to the goal,Players play lacrosse on a field.,A guy next to the goal,gold,waves a green flag.,is made with minutes in front of a player.,is ice hockey holding a field hockey stick.,is to the men hug.,0\n16458,anetv_sO7ZGxFwbm8,17934,The video leads into several shots of javelin athletes throwing poles down a large track. Many people,The video leads into several shots of javelin athletes throwing poles down a large track.,Many people,gold,watch on the sides while they watch on the sides as team mates reappear.,\"are interviewed in the end, celebrating now more running along if performing tricks.\",are seen afterwards throwing around the track and walking away.,are shown running down the track throwing the javelin and watching where their pole lands.,3\n16459,anetv_VTbMcI6nw54,4296,A man talks about coaching gymnastics. A girl,A man talks about coaching gymnastics.,A girl,gold,makes a selfie while that dog dances behind him.,gets a hockey stick out to the goal during the competition.,sits on a shape doing a pole routine in the gym.,starts to do a routine on the uneven bars.,3\n16460,anetv_SfYJTxMRKDE,7354,\"The people get in boats and sail in the river while other people rest. People pass a small waterfall with choppy water, and then they\",The people get in boats and sail in the river while other people rest.,\"People pass a small waterfall with choppy water, and then they\",gold,go down the river.,go over mountains and sail away.,are digitally rafting down the river.,ski down the river.,0\n16461,anetv_SfYJTxMRKDE,7352,\"People play throwing balls on the ground. After, a band plays and people\",People play throwing balls on the ground.,\"After, a band plays and people\",gold,are seen running around a stage hitting the cymbals.,dance including a bride.,swirl in and out of the field.,come to continue navigating.,1\n16462,anetv_SfYJTxMRKDE,7355,\"People pass a small waterfall with choppy water, and then they go down the river. People\",\"People pass a small waterfall with choppy water, and then they go down the river.\",People,gold,\"go down the river, going along a bridge in the snow.\",gather around a green grassy mound.,are removing boats and animals in the river.,\"dive in the river, and then rest while drinking, then go sail in the river.\",3\n16463,anetv_6_XA3oKwwzU,4103,A woman standing next to her is dancing and twirling a baton. Words,A woman standing next to her is dancing and twirling a baton.,Words,gold,are then shown on the screen.,proceed all to dance at baton events.,hula hoop with a baton starts running across the floor and angles and takes the baton.,runs out of the room.,0\n16464,anetv_6_XA3oKwwzU,4102,A woman is playing an acoustic guitar. A woman standing next to her,A woman is playing an acoustic guitar.,A woman standing next to her,gold,is dancing and twirling a baton.,stands up and spins her hand.,play a violin and tie it.,is dancing as people walk on.,0\n16465,anetv_gVixuVE0-ek,10795,A man is seen boxing towards the camera as well as hitting a bag. He then,A man is seen boxing towards the camera as well as hitting a bag.,He then,gold,is shown speaking to the camera and demonstrating how to box.,lifts the racket and begins playing it several more times.,begins playing dart around the table.,leads his bull into a field while others gather around him and scoot the ball around.,0\n16466,anetv_gVixuVE0-ek,16297,\"First the man tells viewers to make the elbow sharp as possible and his hand stays inwards, elbow downwards, and his opposite hand is up. Next, he turns his legs and he\",\"First the man tells viewers to make the elbow sharp as possible and his hand stays inwards, elbow downwards, and his opposite hand is up.\",\"Next, he turns his legs and he\",gold,continues to do the same thing.,begins to undo the side of the cube.,kicks the ball back and forth.,walks off to the top and elbows his knees down on the railing.,0\n16467,anetv_gVixuVE0-ek,10796,He then is shown speaking to the camera and demonstrating how to box. He,He then is shown speaking to the camera and demonstrating how to box.,He,gold,continues moving his arms around and bowing.,is shown in something treacherous on marijuana in the back.,shows how to reach a precise jumps with a large rope attached to the bottom of a rope attached.,picks up a hair extension and shows it on his finger.,0\n16468,lsmdc3032_HOW_DO_YOU_KNOW-2698,8713,She uncurls the bag's crumpled top and reaches inside. Someone,She uncurls the bag's crumpled top and reaches inside.,Someone,gold,slips through a connecting transparent to a detonator with the splintering of barbed wire.,clamps his hand over a porcelain lid.,watches as she fishes out a present.,fasten it in between two young girls.,2\n16469,lsmdc3032_HOW_DO_YOU_KNOW-2698,8717,\"With a smile, he watches someone slide off the second bow. Unwrapping the gift, she\",\"With a smile, he watches someone slide off the second bow.\",\"Unwrapping the gift, she\",gold,removes a colorful envelope from the shelf.,tries to pin it with her own.,finds a child's tub of play - doh.,winks at someone as he puts a cell in his mouth.,2\n16470,lsmdc3032_HOW_DO_YOU_KNOW-2698,8716,Someone shifts his anxious eyes between her and the present. Someone,Someone shifts his anxious eyes between her and the present.,Someone,gold,looks from the camera as they talk about the kiss.,frowns shyly as someone sprays at his mother and slides a seat near to the front of the floor.,very patiently slides the ribbon off the end of the tube shaped gift.,goes around her wardrobe and pulls up some glasses of documents.,2\n16471,lsmdc3032_HOW_DO_YOU_KNOW-2698,8714,Someone watches as she fishes out a present. Someone,Someone watches as she fishes out a present.,Someone,gold,sketches the stone structure.,\"gives him a smile, then carefully unties one of the bows.\",leans against a wall.,pours a baking pan on the oven.,1\n16472,lsmdc3032_HOW_DO_YOU_KNOW-2698,8710,\"As a teammate leads someone away, someone snags someone. They walk out onto the vacant patio, and someone\",\"As a teammate leads someone away, someone snags someone.\",\"They walk out onto the vacant patio, and someone\",gold,leans over to inspect the underwater darts.,pounds against the front grill as someone fires the pistol into the building.,smiles at their supporters.,pulls out a chair for her.,3\n16473,lsmdc3032_HOW_DO_YOU_KNOW-2698,8712,He sits kitty corner from her and sets down the small paper bag. She,He sits kitty corner from her and sets down the small paper bag.,She,gold,\"finds it in the empty kitchen, with the butcher knife eating in front of someone.\",watches the torrential rain streaming from her mouth and nose.,sprays him with a desk lamp and gets to the stairs.,uncurls the bag's crumpled top and reaches inside.,3\n16474,lsmdc3032_HOW_DO_YOU_KNOW-2698,8715,\"Someone gives him a smile, then carefully unties one of the bows. Someone\",\"Someone gives him a smile, then carefully unties one of the bows.\",Someone,gold,\"regards her son with a delighted smile, then takes a few of pictures to the visitor's handsome face.\",smiles as he slices a limp sack filled with flowers and corpses.,shifts his anxious eyes between her and the present.,climbs away from the train and steps forward.,2\n16475,lsmdc3032_HOW_DO_YOU_KNOW-2698,8711,\"They walk out onto the vacant patio, and someone pulls out a chair for her. He\",\"They walk out onto the vacant patio, and someone pulls out a chair for her.\",He,gold,sits kitty corner from her and sets down the small paper bag.,\"notices his wine, with a low twinkle in his eyes.\",squeezes his eyes shut.,opens some more of an refrigerator.,0\n16476,anetv_NA8fCmbHwU8,11041,A man makes a bicycle kick in the sand. The winning team,A man makes a bicycle kick in the sand.,The winning team,gold,rides across a footbridge.,is demonstrated by another team.,runs into teammates and the yellow team scores.,holds up a trophy together and celebrates.,3\n16477,anetv_NA8fCmbHwU8,11042,The winning team holds up a trophy together and celebrates. Teammates,The winning team holds up a trophy together and celebrates.,Teammates,gold,\"cheering at the puck, slurps the ball and scores.\",change a story while the cheering crowd in the small football competition for kicking and kicking.,call from the bench and cheer.,happily then stand after whistling.,2\n16478,anetv_NA8fCmbHwU8,11039,A team rides together on a bus. Teams,A team rides together on a bus.,Teams,gold,play games of beach soccer.,\"groups of people are sitting at the locations of a motocross camel as they ride, some of the fight, holding.\",\"in street, on a river, they drive on and sit on side roads.\",crowd a bar crowded together.,0\n16479,lsmdc3034_IDES_OF_MARCH-2850,2523,He jots a note then looks at her. He,He jots a note then looks at her.,He,gold,shifts his gaze and shifts his gaze to the phone.,leans back a little closer.,smiles to himself as she leaves.,\"gives replacement a nod, as much as he can tell.\",2\n16480,lsmdc1017_Bad_Santa-7695,6098,The kid walks away still with his underpants up around his armpits. Someone,The kid walks away still with his underpants up around his armpits.,Someone,gold,walks into a workshop and pulls out a weathered scraps of paper.,pulls the cage's yard forward and tosses another over his shoulder.,watches him go with a doleful expression.,stands back down with a bag around his neck and spins in place.,2\n16481,lsmdc1017_Bad_Santa-7695,6100,\"Someone turns back to someone who, for an elf, is staring at him in a very deadpan way. Someone\",\"Someone turns back to someone who, for an elf, is staring at him in a very deadpan way.\",Someone,gold,\"pulled away, this expression becomes morphs and prayer.\",brings his lips together in a bitter smile as if a little more.,coming into someone 'apartment.,is the next in line.,3\n16482,lsmdc1041_This_is_40-9111,3773,\"As he approaches a private office, he sees someone coloring in squares along a chalkboard wall. Someone\",\"As he approaches a private office, he sees someone coloring in squares along a chalkboard wall.\",Someone,gold,rolls between his cards and cement.,receives a photo of her.,steps in with a scowl.,crosses the arms of a mirror and kicks a foot into a bin.,2\n16483,anetv_SLPD1U5iDjY,6772,A woman is seen outside playing a game of beach volley ball serving it over the net in slow motion. It makes it over the net and the other team of two balls,A woman is seen outside playing a game of beach volley ball serving it over the net in slow motion.,It makes it over the net and the other team of two balls,gold,is able to hit it back over the net.,continue to do a fourth.,turn alongside the ball while stopping with her score.,sit up on the deck and crash down each other.,0\n16484,anetv_a1ltYmbbBYI,9552,Two men are sumo wrestling on a ring. A man in a robe,Two men are sumo wrestling on a ring.,A man in a robe,gold,is standing behind him.,holding a handle's guns walks the skateboarders.,is standing at his feet.,is standing behind them.,3\n16485,anetv_a1ltYmbbBYI,9553,A man in a robe is standing behind them. A man,A man in a robe is standing behind them.,A man,gold,gets to the top and goes off.,trips and falls into the audience.,stands in the grass holding his stick.,is pouring a pile of empties onto a car.,1\n16486,anetv_HVD8N0bbPVo,9186,\"He is then seen inside an elevator, acting strangely as he punches the air with different people riding. He\",\"He is then seen inside an elevator, acting strangely as he punches the air with different people riding.\",He,gold,is intentionally trying to scare and worry them.,hops over the bar onto the ground.,pauses to finish his performance with a man who jumps below him.,begins with other workers playing using the instruments as they ride the horses.,0\n16487,anetv_HVD8N0bbPVo,9185,A man in sunglasses is standing outside a building. He,A man in sunglasses is standing outside a building.,He,gold,throws himself into the boy as he does.,is walking in an outdoor grassy field playing with field soccer gear.,\"is then seen inside an elevator, acting strangely as he punches the air with different people riding.\",is holding a plant hose by an electric w.,2\n16488,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14785,\"Now, our view spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through. As he draws near, we\",\"Now, our view spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through.\",\"As he draws near, we\",gold,find him aged and distinguished.,glimpse someone standing behind his modern clapboard house looking through the window pane.,see an empty urban scene scene.,glimpse someone riding looking in her early thirties.,0\n16489,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14784,\"Someone lays the ax in a chest. Now, our view\",Someone lays the ax in a chest.,\"Now, our view\",gold,cuts through furniture of tall cabinets.,tilts in beneath a balustrade with nothing picture of the reveal in the center.,\"spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through.\",loads from a chaises view of a glowing courtyard in front of someone's.,2\n16490,lsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14783,Someone comes in and greets the men with a crisp smile. Someone,Someone comes in and greets the men with a crisp smile.,Someone,gold,\"stacks of small plastic containers in a rural spot, as he rides the horses mount a platform onto a wheelie.\",\"starts to stroll away from the chair, bouncing his butt, and down his arms above his head.\",shoots a cutting look at someone who lowers his gaze.,steps back into his throne and smiles.,2\n16491,anetv_LvRP3c5n3P8,14966,\"Then, the man makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone. After the nurse enters to visit a a sick man as well two doctors who carry green sparkles on their hands that\",\"Then, the man makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone.\",After the nurse enters to visit a a sick man as well two doctors who carry green sparkles on their hands that,gold,\"move from each side and follow it around a rookie, where can we see the finished product.\",include several people on them.,leaves on the sick man.,have some sleep next to him.,2\n16492,anetv_LvRP3c5n3P8,14965,\"People walk in the hallways of a hospital, then a doctor reviews the injured leg of a man leaving green sparkles on the leg and a machine. Then, the man\",\"People walk in the hallways of a hospital, then a doctor reviews the injured leg of a man leaving green sparkles on the leg and a machine.\",\"Then, the man\",gold,in black puts a sock on the left leg of his hand and the man starts to mop.,\"shows a second in front of the amazon and puts the shoes on, then, the boy rubs his leg with a dryer.\",makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone.,uses a scraper to tattoo a man and hold him chin in a hand.,2\n16493,anetv_yeUuZ9vk5gE,15723,A person is seen placing dough balls onto a pan and then placing them into an oven. She then,A person is seen placing dough balls onto a pan and then placing them into an oven.,She then,gold,begins cleaning the other potato and places canister in the oven.,pours more food onto the cookie and bowls it with other ingredients while throwing her hands.,garnishes several different called cookie dough cookies in the hands.,takes them out of the oven and puts the cookies onto a plate.,3\n16494,lsmdc3029_GREEN_ZONE-13921,12687,\"Summoning a breath, someone smiles. Now, someone\",\"Summoning a breath, someone smiles.\",\"Now, someone\",gold,locks herself in his front then goes backwards searching his surroundings and sees him standing beside an elevator behind him.,\"sits glumly in the middle of the canal, propped under the banister, then peers into a wide vaulted chamber.\",strides outside through a doorway framed by stained glass panels.,strolls up to the registration desk and finds a computer reclined on a desk in the dark.,2\n16495,anetv_E9R1H8xRIW8,9558,He is using a push mower to mow the grass. He,He is using a push mower to mow the grass.,He,gold,gets from the pot and rakes it out in the grass.,lifts the mower and turns it at every corner.,continues playing with the camera.,bounces several leaves on a very tall grass road.,1\n16496,anetv_E9R1H8xRIW8,18234,A man is seen pushing a lawn mower across a lawn to cut the grass. The man,A man is seen pushing a lawn mower across a lawn to cut the grass.,The man,gold,continues raking dirt all around the table and moving a lawn mower around.,continues moving the machine all along the yard while the camera captures his movements.,continues rolling the lawn around while pushing the lawn mower by pushing the mower around.,pans around on the lawn with the mower and moves to the side.,1\n16497,anetv_E9R1H8xRIW8,9557,A man is outside in his front yard. He,A man is outside in his front yard.,He,gold,is using a leaf blower to pull up snow.,is using a push mower to mow the grass.,picks up a chainsaw and starts mowing the lawn.,is carrying a large pile in his hands.,1\n16498,anetv_tzbJ_CETeG8,127,A group of men are in a sandy desert. They,A group of men are in a sandy desert.,They,gold,ride around to ride horses in a park.,are using a scissors to lead into the bull.,climb on top of camels and ride them.,are playing tug of war over a bagpipe.,2\n16499,anetv_tzbJ_CETeG8,128,They climb on top of camels and ride them. They,They climb on top of camels and ride them.,They,gold,\", dance, and lie behind the bar as they try to do it sexy.\",go in and get ready to go.,ride the camels toward a set of pyramids.,ride down a slide in rocky waters.,2\n16500,anetv_jpvgI6bNO1g,15093,A person is seen tightening the rope followed by walking along the rope. Several people,A person is seen tightening the rope followed by walking along the rope.,Several people,gold,are shown working out on a rope in the end.,are shown lining up and down.,are seen walking on the rope as well as bouncing and performing tricks.,begin to run around trying to keep a hold on the rope.,2\n16501,anetv_jpvgI6bNO1g,15092,A camera pans all around a forest and leads into a rope tied to a tree. A person,A camera pans all around a forest and leads into a rope tied to a tree.,A person,gold,is then seen kneeling close beside a fish.,continues pushing rocks all along with the rope.,is sitting at the calf and sitting back on his horse.,is seen tightening the rope followed by walking along the rope.,3\n16502,lsmdc1035_The_Adjustment_Bureau-85463,12568,\"As someone faintly nods, the smiling woman shakes her head. Their amused smiles\",\"As someone faintly nods, the smiling woman shakes her head.\",Their amused smiles,gold,allows their bewildered group to return the glance.,\", they walk away from the camera.\",relax as their stare lingers.,look twinkling in the eyes.,2\n16503,anetv_oq8DE3Cbar0,4172,He is playing an accordian for the people passing by. A few,He is playing an accordian for the people passing by.,A few,gold,\"pause to listen, then continue on their way.\",gets up and walks to a table with a broom.,people behind him are dancing.,is gathered around playing bongos.,0\n16504,anetv_oq8DE3Cbar0,4171,A man in a movie mask is seated by a flight of stairs. He,A man in a movie mask is seated by a flight of stairs.,He,gold,is in the ribs making room.,attempts to flip and the engineers lock on him.,is playing an accordian for the people passing by.,is playing a tune and singing on a drum set.,2\n16505,anetv_uatIP3FGQXk,7608,A large group of kids are seen standing around a field playing a game with one another. One boy throws a ball to another and the other,A large group of kids are seen standing around a field playing a game with one another.,One boy throws a ball to another and the other,gold,kicks it off into the distance.,tries to help them.,children stand next to the net.,team shows in armor at the game.,0\n16506,anetv_uatIP3FGQXk,7609,One boy throws a ball to another and the other kicks it off into the distance. The kids,One boy throws a ball to another and the other kicks it off into the distance.,The kids,gold,try trying to twirl the ball on the field.,continue kicking around one another.,continue to play with one another as well as run along the field.,run and run and bounce feet on the ground.,2\n16507,anetv_zrwpgILg7VI,10377,A large group of people are in a mall and are watching people set up an area with a large black floor and a large black wall. Suddenly there are lit up people wearing light suits that are dancing on the black area and they,A large group of people are in a mall and are watching people set up an area with a large black floor and a large black wall.,Suddenly there are lit up people wearing light suits that are dancing on the black area and they,gold,have entered and start doing scene.,get all around and attempt to help the ball.,\"change from 1 - 7 people, and alternate suit colors from white, then to red and then back to white again.\",will rub it across.,2\n16508,anetv_bTlfN4vJkiY,2931,He walks away from the camera as he pushes the mower. He then suddenly,He walks away from the camera as he pushes the mower.,He then suddenly,gold,stops and eventually uses the mower to struggle in the snow.,\"stops, chasing the person with the camera and knocking them over.\",brushes away from her holding the horn of the bat.,hops out of the elephant and has n't really finished it until he goes back.,1\n16509,anetv_bTlfN4vJkiY,2930,A young boy is wearing a bandana and mowing a large yard. He,A young boy is wearing a bandana and mowing a large yard.,He,gold,walks away from the camera as he pushes the mower.,comes in porch on the lawn mower and starts to mow the lawn.,takes a puff and zooms out on the dog.,\"is standing in the retirement, sitting beside his brother in a conservative stripe yellow shorts.\",0\n16510,lsmdc0043_Thelma_and_Luise-68470,17662,Someone is surprised to be hearing this from someone. They,Someone is surprised to be hearing this from someone.,They,gold,people play the cards on the table across the table.,are both quiet for a moment.,\"glance down from the large table, followed by someone, who tries to escape.\",steals his hat and sorts through potatoes and carries a boogie board and looks over.,1\n16511,anetv_Y0G_wA38HkI,15244,\"We see the man ride the kitesurf and perform the same flip. The man performs another flip, the video rewinds, and we\",We see the man ride the kitesurf and perform the same flip.,\"The man performs another flip, the video rewinds, and we\",gold,see him falling the whole time.,see a man talking into two title screens.,see the scoreboard credits.,see the flip again.,3\n16512,anetv_Y0G_wA38HkI,19426,The people pushing along the ocean while the camera captures their movements. The men,The people pushing along the ocean while the camera captures their movements.,The men,gold,jump all along the water on the boards and continue to ride off.,continue playing with one another and leaving back and fourth afterwards several times.,flip turns and ends with the girls sitting and smiling to the camera.,continue to wind around and some speaks in the face while moving in a pit where people watch.,0\n16513,anetv_JyfelXz6GaA,13752,A large group of people are seen celebrating and shows two teams huddled up together. The teams,A large group of people are seen celebrating and shows two teams huddled up together.,The teams,gold,then begin playing a game of racquetball with one another until their goal is shown again.,play several shots at the same time while they speak to the camera or watch on the sidelines.,continue to volleyball with one another and smiling to the camera.,are then shown playing a game of soccer with one another.,3\n16514,anetv_JyfelXz6GaA,18096,Several shots are shown afterwards of people playing soccer against one another. People,Several shots are shown afterwards of people playing soccer against one another.,People,gold,continue playing against one another and end by cheering.,continue to laugh along the sidelines as the team spends well.,exercises around a gym and ends with a close up of trophies.,are shown bowling by one another while more watch on the sides.,0\n16515,anetv_JyfelXz6GaA,18095,A large group of people are seen cheering on the sides followed by team members standing together for pictures. Several shots,A large group of people are seen cheering on the sides followed by team members standing together for pictures.,Several shots,gold,are shown of people performing a game around field curling around a sand event while a ref watches them as well as the camera closer,of hockey are shown followed by a woman speaking into a microphone.,are shown afterwards of people playing soccer against one another.,are shown of people curling at a ball.,2\n16516,anetv_JyfelXz6GaA,13753,The teams are then shown playing a game of soccer with one another. The men,The teams are then shown playing a game of soccer with one another.,The men,gold,continue to play up and down the field.,continue playing tug of war with one another as well as play.,hit and several times and then shown solo two goals.,float off on the side and racquets the ball while little people watch on the side.,0\n16517,anetv_assDWZW6zTA,8576,A boy is seen speaking to the camera holding two basketballs and leads into him holding them up to his face. The boy then,A boy is seen speaking to the camera holding two basketballs and leads into him holding them up to his face.,The boy then,gold,swings back and fourth to the camera while still looking back to the camera.,demonstrates several jumping kicks and tricks as the camera pans around the boys.,moves up and down the court while dribbling the balls and shoots a basket off in the end.,points to his throws and spins one around and ends by walking away and smiling.,2\n16518,anetv_VWmSZPIoBlw,7246,He walks up to a car and starts scraping the snow off the windows. The snow,He walks up to a car and starts scraping the snow off the windows.,The snow,gold,pours on the car and the man looking at the camera and nodding.,falls off as the dust clears.,falls onto the ground in front of the car.,from the car is standing in the corner of the car.,2\n16519,anetv_VWmSZPIoBlw,7245,A man wearing a black coat is standing on the sidewalk. He,A man wearing a black coat is standing on the sidewalk.,He,gold,tries to sit ups on the bike while people are watching him from the sides.,braids the other boy's hair to make it a perfect bun.,grab some rope and zoom slowly.,walks up to a car and starts scraping the snow off the windows.,3\n16520,anetv_XxbuqeqOGaM,18492,He brings the knife to a sharpener and begins slowly to demonstrate. He,He brings the knife to a sharpener and begins slowly to demonstrate.,He,gold,removes the cutters point quickly and begins to wipe it over a knife.,types out the improvement beiber machine.,begins showing how to use the paint on the knife.,picks up the sharpening tool and talks about what he will do next and begins to sharpen again.,3\n16521,anetv_XxbuqeqOGaM,18491,A chef in the kitchen wearing a chef hat is giving instructions on how to sharpen a knife. He,A chef in the kitchen wearing a chef hat is giving instructions on how to sharpen a knife.,He,gold,folds the paper up from the bowl and skates on it down and back to the bowl.,brings the knife to a sharpener and begins slowly to demonstrate.,\"shows the ingredients in the pot and talking, the chef setting the eggs in a bowl on the table.\",\"keeps up and begins to eat with leaves, who then smile.\",1\n16522,anetv_XxbuqeqOGaM,18493,He picks up the sharpening tool and talks about what he will do next and begins to sharpen again. Then he,He picks up the sharpening tool and talks about what he will do next and begins to sharpen again.,Then he,gold,starts to run towards the tree.,goes to his knife pointing his sword and shoots.,adds more poisonous lines to it and only applies an examination to the skin.,shows all of the pieces that come with the kit and talks about it all.,3\n16523,lsmdc1009_Spider-Man3-76594,10182,\"Someone slams his fist down on someone's arm, breaking off the blades. Someone\",\"Someone slams his fist down on someone's arm, breaking off the blades.\",Someone,gold,brings his wand round to someone's face.,kicks him across the table.,\"slide down at his feet, yanking him from the top.\",stares off into the darkness.,1\n16524,lsmdc1009_Spider-Man3-76594,10183,Someone kicks someone through a glass partition. Someone,Someone kicks someone through a glass partition.,Someone,gold,tries to tear someone from her red paper mug.,wipes blood from his mouth.,drips juice into her own mouth.,holds up a check.,1\n16525,lsmdc1009_Spider-Man3-76594,10188,Someone pushes someone's head up into the path of the sky stick. Someone,Someone pushes someone's head up into the path of the sky stick.,Someone,gold,barely rotating back to the falcon he is floating backwards.,hands a heavy rope through a rotating gate into the water.,turns to see the limo cover someone and blackness.,'s thrown against the wall of glass shelves and crashes to the ground.,3\n16526,lsmdc1009_Spider-Man3-76594,10181,The blades get stuck in the pillar behind. Someone,The blades get stuck in the pillar behind.,Someone,gold,\"falls onto the shore, runs down the river, stripped down.\",\"slams his fist down on someone's arm, breaking off the blades.\",gets on her head and pulls back.,bears his wand then pulls it up.,1\n16527,lsmdc1009_Spider-Man3-76594,10186,\"They run at each other and crash through into the secret goblin lair. As someone chases him through the lair, someone\",They run at each other and crash through into the secret goblin lair.,\"As someone chases him through the lair, someone\",gold,runs to the front door and slices a web around its neck.,picks up the goblin sword and swings it at him.,notices a nearby young man struggling on someone cot and climbs over two steps.,runs to the suv.,1\n16528,lsmdc1009_Spider-Man3-76594,10185,He dives at someone who hauls him against another window. Someone,He dives at someone who hauls him against another window.,Someone,gold,irons the red shirt.,runs across the street with someone.,watches from around a children's platform.,throws someone across the room.,3\n16529,lsmdc1009_Spider-Man3-76594,10180,Someone smashes his arm at someone's head. The blades,Someone smashes his arm at someone's head.,The blades,gold,drop out to the ground.,hit someone and someone!,throw backwards toward it!,get stuck in the pillar behind.,3\n16530,lsmdc1009_Spider-Man3-76594,10184,Someone wipes blood from his mouth. He,Someone wipes blood from his mouth.,He,gold,dives at someone who hauls him against another window.,takes a deep breath then sinks down again again.,shuffles between the others out with the resistance stick.,slides the gun shut.,0\n16531,lsmdc1009_Spider-Man3-76594,10187,\"Someone accidentally cuts through the table, tethering the sky stick, sending it spinning out of control. Someone\",\"Someone accidentally cuts through the table, tethering the sky stick, sending it spinning out of control.\",Someone,gold,halts and grabs his gear blind.,\", zone balls, stalks in every direction.\",watches as the bridge slams.,pushes someone's head up into the path of the sky stick.,3\n16532,lsmdc0001_American_Beauty-45938,11475,\"His face is close to hers, and suddenly the atmosphere is charged. She pulls back automatically, but it\",\"His face is close to hers, and suddenly the atmosphere is charged.\",\"She pulls back automatically, but it\",gold,continues to glisten by the drunken light in someone's weak eyes.,kisses him on the lips.,is the busty tentacle.,'s clear she is drawn to him.,3\n16533,lsmdc0001_American_Beauty-45938,11474,\"She just stands there, staring at someone. He\",\"She just stands there, staring at someone.\",He,gold,turns and faces her.,turns without his stride satisfied.,\"comes out of her school sight, followed by someone.\",smiles at her playfully.,3\n16534,lsmdc1024_Identity_Thief-82275,18442,Someone reverses over her mailbox and into the neighbor's yard knocking over a sign. He,Someone reverses over her mailbox and into the neighbor's yard knocking over a sign.,He,gold,\"notices a person at the top of a tall, single man.\",grabs the ax and gets the fire.,cuffs their hands together.,is watched with german.,2\n16535,lsmdc1024_Identity_Thief-82275,18439,Two thugs stand at the door. Gunshot,Two thugs stand at the door.,Gunshot,gold,eyes his goateed son.,\"tosses them to a grill, then goes back in.\",wave at each other.,blasts off the door knob.,3\n16536,lsmdc1024_Identity_Thief-82275,18441,Someone pierces two of their tires with a knife and hurries into someone's car. Someone,Someone pierces two of their tires with a knife and hurries into someone's car.,Someone,gold,\"tugs someone's belt, then rolls down revealing himself.\",goes to leave someone and stand.,reverses over her mailbox and into the neighbor's yard knocking over a sign.,appears with a load in midair.,2\n16537,lsmdc1024_Identity_Thief-82275,18440,Gunshot blasts off the door knob. Someone,Gunshot blasts off the door knob.,Someone,gold,wipes his eyes with his own hammer.,pierces two of their tires with a knife and hurries into someone's car.,undoes it and takes the steps on a cross to a hotel countertop.,emerges from an wrist link.,1\n16538,anetv_azfkn6EsuJA,4080,A man is buffing down his skis in a garage. He,A man is buffing down his skis in a garage.,He,gold,changes position to give himself more leverage as he buffs.,is talking to the camera of young man in a riding car in a green area.,\"puts his weight down on the ground, then beats on the pedal.\",shows pressure on a gauge.,0\n16539,lsmdc1062_Day_the_Earth_stood_still-100531,15808,\"He frowns and checks his palm, too. He\",\"He frowns and checks his palm, too.\",He,gold,\"sits against the wall in front of the canvas, being stood right back.\",comes in the car and places a card on the glove then swishes up after it.,\"seats on the snow - covered rocky ground, and looks skywards through the swirling snow.\",\"reveals coming over a mark, twelve at eleven o'clock, pinning it to the surface.\",2\n16540,lsmdc1062_Day_the_Earth_stood_still-100531,15805,The climber looks at this right hand. The mitten,The climber looks at this right hand.,The mitten,gold,starts to unfold and the needles turn over.,has a hole in it.,moves closer to see if she is pointing to her own.,stops and turns around again.,1\n16541,lsmdc1062_Day_the_Earth_stood_still-100531,15800,\"He squints at the intensity, the swirling brilliance within. He\",\"He squints at the intensity, the swirling brilliance within.\",He,gold,holds it out that it's $100 30.,removes the tentacles from his body to bottom her.,keeps cheering on her computer.,is enveloped in a brilliant light of overwhelming intensity.,3\n16542,lsmdc1062_Day_the_Earth_stood_still-100531,15802,\"The climber lies next to it, his eyes closed. He\",\"The climber lies next to it, his eyes closed.\",He,gold,places his right hand on the man's ear.,sprints across the water.,awakens and rises slowly.,offers a pocket to pieces.,2\n16543,lsmdc1062_Day_the_Earth_stood_still-100531,15799,He raises the eye axe. Light,He raises the eye axe.,Light,gold,starts down the glass.,rounds the back of the vehicle.,light the cage forbidden from the trees.,shines out as he breaks the crystalline crust.,3\n16544,lsmdc1062_Day_the_Earth_stood_still-100531,15786,\"In 1928, a blizzard lashes the Karakoram mountains in India. In a tent, a candle glows in a lantern and a cup of snow\",\"In 1928, a blizzard lashes the Karakoram mountains in India.\",\"In a tent, a candle glows in a lantern and a cup of snow\",gold,is hanging from under his toes.,is placed on a gas burner.,sits at the edge of the pool.,stands on his feet.,1\n16545,lsmdc1062_Day_the_Earth_stood_still-100531,15801,He is enveloped in a brilliant light of overwhelming intensity. The eye sac,He is enveloped in a brilliant light of overwhelming intensity.,The eye sac,gold,lies on the snow.,is kept as trees landing in the grass.,seems to hold back as he circles the ship's empire white sand.,is poured on him like some embedded or the fish.,0\n16546,lsmdc1062_Day_the_Earth_stood_still-100531,15794,\"He moves on, steadying himself with the ice ax. The climber\",\"He moves on, steadying himself with the ice ax.\",The climber,gold,\"raises his goggles, and stares at a glowing ball embedded in the snowy rock.\",reaches out and cups his throat.,lifts the object forwards and walks away from the wood.,moves the ladder to the end.,0\n16547,lsmdc1062_Day_the_Earth_stood_still-100531,15807,\"He removes it, revealing a round coin - sized scar on the back of his hand. He\",\"He removes it, revealing a round coin - sized scar on the back of his hand.\",He,gold,sucks in the sandwich.,is puzzled by the sound.,takes off his dead twinkie simultaneously.,\"frowns and checks his palm, too.\",3\n16548,lsmdc1062_Day_the_Earth_stood_still-100531,15792,The climber inches up a near vertical cliff. He,The climber inches up a near vertical cliff.,He,gold,turns away from the scene.,sways as he increases in a slow style hug.,stands balanced in a helpless shrug.,plunges his ice ax into the rock and hauls himself up over the edge of the rock face.,3\n16549,lsmdc1062_Day_the_Earth_stood_still-100531,15795,\"The climber raises his goggles, and stares at a glowing ball embedded in the snowy rock. He\",\"The climber raises his goggles, and stares at a glowing ball embedded in the snowy rock.\",He,gold,slowly walks back to where someone lies at the top of the cliff.,thrusts it up and flies towards him from behind.,\"closes on the object, which is about 10 feet high.\",shoots the sun's summit as he hurls a cart towards the surrounding rotting area.,2\n16550,lsmdc1062_Day_the_Earth_stood_still-100531,15793,He moves forward as the wind howls around him. He,He moves forward as the wind howls around him.,He,gold,is watching tug of gulls.,\"dangles over his head, then crashes into someone.\",\"moves on, steadying himself with the ice ax.\",\"heads down the hall towards the sound, as the stairs go.\",2\n16551,lsmdc1062_Day_the_Earth_stood_still-100531,15806,The mitten has a hole in it. He,The mitten has a hole in it.,He,gold,\"removes it, revealing a round coin - sized scar on the back of his hand.\",knocks down some harm and finds the shoulders drop.,quickly takes a sharp piece of bark from a log.,\"drains the wood, but is n't secure.\",0\n16552,lsmdc1062_Day_the_Earth_stood_still-100531,15787,\"A light shines outside, then goes dark. He\",\"A light shines outside, then goes dark.\",He,gold,emerges from the tent in thick furs with a climbing ax and a rope wrapped around him.,hangs a telephone on the rail near the front.,nudges someone to find the entire apartment form at the sink.,moves down a hill of sky.,0\n16553,lsmdc1062_Day_the_Earth_stood_still-100531,15784,Stars drift slowly in the blackness of space. A moon,Stars drift slowly in the blackness of space.,A moon,gold,shows up above the city with an cloud of color.,glows silver in the darkness.,\"glows on a backdrop of slowly, glowing, wafting grunts.\",\"rises from the water, inside the vessel's steaming sheets.\",1\n16554,lsmdc1062_Day_the_Earth_stood_still-100531,15803,He awakens and rises slowly. He,He awakens and rises slowly.,He,gold,seats up and looks around.,opens it and brings it into a stop.,\"looks down at the air, surveys the height and has not been random the last time.\",stands over and sleeps with his hands down on his elbows.,0\n16555,lsmdc1062_Day_the_Earth_stood_still-100531,15790,Beams of light radiate skywards from behind a rocky ridge. The climber carefully,Beams of light radiate skywards from behind a rocky ridge.,The climber carefully,gold,ascends a snowy slope.,peers across a tall diamond on the door.,takes a row of feed from the first man.,pushes the cross into the water.,0\n16556,lsmdc1062_Day_the_Earth_stood_still-100531,15809,\"He seats on the snow - covered rocky ground, and looks skywards through the swirling snow. Object seen through an electron microscope,\",\"He seats on the snow - covered rocky ground, and looks skywards through the swirling snow.\",\"Object seen through an electron microscope,\",gold,quickly shrieking and scared.,moving toward a skyscrapers of towering statues covered in frosted stone windows.,appear on a screen.,creating a bead cloud.,2\n16557,lsmdc1062_Day_the_Earth_stood_still-100531,15785,A moon glows silver in the darkness. Letters,A moon glows silver in the darkness.,Letters,gold,flash in the moonlight.,blazes as it moves slowly toward the island.,\"fly out of the water, watching the daylight in manhattan.\",form around the moon.,3\n16558,lsmdc1062_Day_the_Earth_stood_still-100531,15788,He emerges from the tent in thick furs with a climbing ax and a rope wrapped around him. He,He emerges from the tent in thick furs with a climbing ax and a rope wrapped around him.,He,gold,gallops across the paths of the shire.,pulls on goggles to protect his eyes.,opens the door and steps outside.,\"looks at the house, her chest heaving.\",1\n16559,lsmdc1062_Day_the_Earth_stood_still-100531,15796,\"He closes on the object, which is about 10 feet high. Its surface\",\"He closes on the object, which is about 10 feet high.\",Its surface,gold,features a hatch above the tank top.,is empty and away from the camera.,\"is crystalline, with shadows and lights swirling inside.\",is open and starts to go down again.,2\n16560,lsmdc1062_Day_the_Earth_stood_still-100531,15791,The climber carefully ascends a snowy slope. The climber,The climber carefully ascends a snowy slope.,The climber,gold,gets dressed in a black and white horse climbing a mountain.,watches the plane dive off.,inches up a near vertical cliff.,continues to show proper left labored way.,2\n16561,anetv_oobYvNJU5ko,10826,\"A male stylist put rollers on the hair of a woman using a brush and a hair dryer. After, the male stylist\",A male stylist put rollers on the hair of a woman using a brush and a hair dryer.,\"After, the male stylist\",gold,combs the brush with a comb and blow blow obscuring her hair.,fix the hair of the woman using both hands.,sits in a chair in the background as a stylist ties a silver nightie over her head.,return the blow dryer while giving instructions and styling the braided.,1\n16562,anetv_oobYvNJU5ko,227,The man then begins fluffing a woman's hair. the man,The man then begins fluffing a woman's hair.,the man,gold,moves his hand around and cuts it.,pulls the hair out from behind her head with an blow dryer.,rubs lotion on his back and demonstrates doing sit ups.,holds a bottle to the camera and begins styling the woman's hair.,3\n16563,anetv_GsR4fagoV-Q,6403,One man makes a point and the other man beats on the ping pong table. this pattern,One man makes a point and the other man beats on the ping pong table.,this pattern,gold,spins and catches the child's progress as the boy demonstrates it to the ball.,is then shown on a close shot while the other man receives the text.,is moving behind the video played.,is repeated a few times.,3\n16564,anetv_GsR4fagoV-Q,6401,Two men stand across each other at a ping pong table. the men,Two men stand across each other at a ping pong table.,the men,gold,shake hands with each other.,begin playing ping pong.,pretend to arm wrestle.,perform a moves with a metal ball in a near racket.,1\n16565,anetv_GsR4fagoV-Q,6402,The men begin playing ping pong. one man makes a point and the other man,The men begin playing ping pong.,one man makes a point and the other man,gold,is hit and thrown back in.,on the right serves the ball.,beats on the ping pong table.,jumps off the mat and lands on a yellow mat but does n't bend down.,2\n16566,anetv_GsR4fagoV-Q,18572,Two men are seen playing a game of ping pong with each other hitting the ball back and fourth. One man,Two men are seen playing a game of ping pong with each other hitting the ball back and fourth.,One man,gold,serves the player in the end to hit four pins down.,spins and throws the ball at his opponent and another man hits and knocks him down afterwards.,is then shown in his running match moving around the rooms.,chases the other around and walks back into frame to play the game.,3\n16567,anetv_r4oAhRg4H14,9013,We see a man hop and deflect a ball from the net in slow motion. We,We see a man hop and deflect a ball from the net in slow motion.,We,gold,\"see the boy and referee lacrosse, throwing sticks into the air.\",see two men collide in slow motion.,see people in the crowd then shake hands.,see a man throw on the rake.,1\n16568,anetv_r4oAhRg4H14,9011,We see an opening title screen. We,We see an opening title screen.,We,gold,see a man in the room.,see shots of people playing soccer in an indoor arena.,see a white title screen.,see an image wearing different kinds and various pictures.,1\n16569,anetv_r4oAhRg4H14,9012,We see shots of people playing soccer in an indoor arena. We,We see shots of people playing soccer in an indoor arena.,We,gold,see a large sign.,see a man hop and deflect a ball from the net in slow motion.,see people playing croquet under the grass.,see a man in a blue shirt leading a bowler.,1\n16570,anetv_PBxI7l0AqAY,8466,A man is speaking about how things works while a woman works on a horse. As he speaks he,A man is speaking about how things works while a woman works on a horse.,As he speaks he,gold,\"speaks to the camera and walks away from the pole, with the camera while still helping from the machine.\",washes his hands with some hand sanitizer.,begins to demonstrate skating on the bike while looking further down.,ties the shoe and ties it up.,1\n16571,anetv_PBxI7l0AqAY,8467,Then he gets soap and starts to wash his hands very throughly. He,Then he gets soap and starts to wash his hands very throughly.,He,gold,is a color very sharp and bright at the top and after getting out of it.,grabs a napkin and dries his hands off still continuing to speak.,finishes washes the dishes and work the.,is sitting in a chair talking to the camera while his face speaks back to him.,1\n16572,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12882,He steps closer to someone. He,He steps closer to someone.,He,gold,\"makes a powerful splash, which shrinks back.\",hands her into a chair.,makes a swipe - - stick his head among the crowded court.,gives a longing look.,3\n16573,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12881,Someone emerges from a door right beside him. He,Someone emerges from a door right beside him.,He,gold,hits an fallen woman across the table.,steps closer to someone.,moves to someone's bedroom spot and wanders off in the opposite direction.,slides the orb across the slack line.,1\n16574,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12879,\"He sets his headphones by his turntables, then dances backward out of someone's view. As the fbi agent\",\"He sets his headphones by his turntables, then dances backward out of someone's view.\",As the fbi agent,gold,presses a button and addresses the car.,\"turns his kids away, someone spots her accomplice.\",shifts to another window trying to find the guard.,shuffles through a box.,2\n16575,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12884,\"Wearing a leather jacket and a loose scarf around his neck, he plucks a flower from a vase as he heads to someone's table. He\",\"Wearing a leather jacket and a loose scarf around his neck, he plucks a flower from a vase as he heads to someone's table.\",He,gold,gets his flask from it and takes a swig.,leans on the booth facing her and gives a smoldering look.,\"grins stiffly and steps toward the old lady, leaning against the door frame.\",picks up the lantern.,1\n16576,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12876,\"As they spin around again, someone crouches by the window and raises his binoculars. Someone\",\"As they spin around again, someone crouches by the window and raises his binoculars.\",Someone,gold,\"strides slowly through the duct, clutching his body.\",\"stands while flirting, smoking.\",hands over a bag.,rolls a tiny fish down from the floor and heads on down the alley blocked by a group of children.,2\n16577,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12880,As the fbi agent shifts to another window trying to find the guard. Someone,As the fbi agent shifts to another window trying to find the guard.,Someone,gold,\"stands up in the sky, watching.\",follows the other tuber toward the house.,emerges from a door right beside him.,leaps from a sub cart and propels the door outer of into the room.,2\n16578,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12878,\"Snapping his fingers, someone bobs his head. He\",\"Snapping his fingers, someone bobs his head.\",He,gold,\"winds around, knocking the monster's body out of his way.\",\"sets his headphones by his turntables, then dances backward out of someone's view.\",touches it to his palm and presses his fingers together.,\"looks with one palm, then bashfully steadily down someone's own own.\",1\n16579,lsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12885,She takes it and sets it aside. Someone,She takes it and sets it aside.,Someone,gold,\"stares into someone's eyes, but the mother wears a faint smile.\",notices someone's hand on the table wheel and she goes over to a cabinet near the door.,sits back with a smile.,tightens around as he kisses her.,2\n16580,anetv_4fEY6zIq8bQ,4136,The man bend over then continue to plaster the wall. The man,The man bend over then continue to plaster the wall.,The man,gold,cuts the plaster to the wall and add a brush to remove the wall drawer.,cover the wall with pink plaster until the whole wall is covered.,picks up the plaster and starts walking again.,picks up plaster and continues shoveling until he's finished.,1\n16581,anetv_4fEY6zIq8bQ,4135,The man is plastering the wall. The man,The man is plastering the wall.,The man,gold,bend over then continue to plaster the wall.,stands up and holds the bottom of his shoe.,throws all of shingles up using an orange tool.,continues cleaning the roof.,0\n16582,lsmdc1015_27_Dresses-79658,19141,\"As someone approaches, her face falls, realizing that people are making a beeline for each other. They\",\"As someone approaches, her face falls, realizing that people are making a beeline for each other.\",They,gold,don't have eyes dark.,smile as someone frowns.,\"keep packing their hand out, trying to pick them up again.\",\"turns it for a moment, crying gently.\",1\n16583,lsmdc1015_27_Dresses-79658,19140,\"Someone spots her and grins, then clocks someone. As someone approaches, her face\",\"Someone spots her and grins, then clocks someone.\",\"As someone approaches, her face\",gold,softens on someone's kisses.,\"is suddenly pale and skeletal, as a pretty, dark - haired woman by someone clutches his sword to see his searchlights.\",morphs to a sink.,\"falls, realizing that people are making a beeline for each other.\",3\n16584,lsmdc1015_27_Dresses-79658,19138,\"Someone walks breathlessly over to where someone is drinking beer and chatting with friends. Someone, in a shimmery dress,\",Someone walks breathlessly over to where someone is drinking beer and chatting with friends.,\"Someone, in a shimmery dress,\",gold,\"is carrying two women out,.\",approaches from the other direction.,\"stands in the doorway staring, her stomach on the floor, beside her.\",sits glumly on the stairs.,1\n16585,lsmdc1015_27_Dresses-79658,19139,\"Someone, in a shimmery dress, approaches from the other direction. Someone\",\"Someone, in a shimmery dress, approaches from the other direction.\",Someone,gold,sets up a few red flowers on the table and looks at him.,gets out of the elevator and waits on the back steps.,\"spots her and grins, then clocks someone.\",is slowly starting her weak build.,2\n16586,anetv_0K1SrDmREzs,11333,An athletic woman is seen standing in a circle moving in a slow motion holding a discuss. She then,An athletic woman is seen standing in a circle moving in a slow motion holding a discuss.,She then,gold,begins jumping up and down and ends by throwing a object off into the distance.,jumps into the air and throws a handful of smoke in the air.,turns to demonstrate how to split and twirl her arms on the mat while pausing to speak to the camera.,spins herself around while holding the object and then throwing it off the distance.,3\n16587,lsmdc0003_CASABLANCA-46980,7518,Someone's head slumps over the table. Someone,Someone's head slumps over the table.,Someone,gold,caresses his sleeping boy's parents's lap.,sits while someone attends to some paperwork.,takes the stiff coffee.,bends down to pick up the crying young polish weak to fall to the floor.,1\n16588,lsmdc0003_CASABLANCA-46980,7519,People make their way through the jam in the lobby of the Prefecture. People,People make their way through the jam in the lobby of the Prefecture.,People,gold,ride at the back door.,talk to an officer.,are in store with someone.,put on a roof and start moving their books.,1\n16589,lsmdc0003_CASABLANCA-46980,7517,Someone gets up and leaves. Someone's head,Someone gets up and leaves.,Someone's head,gold,rises to his feet.,slumps over the table.,snaps off.,hangs from the window behind him.,1\n16590,lsmdc0003_CASABLANCA-46980,7521,People enter someone's office. Someone,People enter someone's office.,Someone,gold,observe the goblin layout.,is seated at the wide console.,fiddles with a needle.,bows to them both.,3\n16591,anetv_2q_4I3ae0J4,447,Final out come is a great hit and steps on how to make a great hit. the guy,Final out come is a great hit and steps on how to make a great hit.,the guy,gold,kicks one of the men at each other and fires him across a floor which is mostly holding.,begins caressing the battery and still aiming into it.,\"waits on the edge of the snowslide, trying to steady his speed.\",\"shows you many good tips on how you step into the hit, the way up swing and the follow though for best performance.\",3\n16592,anetv_2q_4I3ae0J4,14216,The man throws the ball in the air and immediately hit the ball with the stick. The man,The man throws the ball in the air and immediately hit the ball with the stick.,The man,gold,leans to demonstrate how to win the puzzle to get them to win.,\"throws the ball in the air, then swing his body to hit the ball with the stick.\",throws the ball down and wrestles his pants onto the other side.,continues to watch with the other's racket and throw the javelin in all the throws.,1\n16593,anetv_2q_4I3ae0J4,14215,A man plays hurling and serves a ball with a stick. The man,A man plays hurling and serves a ball with a stick.,The man,gold,gives a 3d hurdle and runs over to his opponent.,finishes running and throw after the ball.,retrieves the hoop and throws the ball to the ground.,throws the ball in the air and immediately hit the ball with the stick.,3\n16594,anetv_2q_4I3ae0J4,446,He tossed the ball just a little in the air and steps into it as it's falling down and make a great connection with the stick he have in his hand. final out come,He tossed the ball just a little in the air and steps into it as it's falling down and make a great connection with the stick he have in his hand.,final out come,gold,\"to a attempt, and a man is able to grab a ball from a hook using a white stick to cross the ocean.\",is a great hit and steps on how to make a great hit.,stop in the mouth of another bowling game.,up cheers to make another fire.,1\n16595,lsmdc3052_NO_STRINGS_ATTACHED-25344,17390,\"At the hospital, someone runs to someone who's with someone. Someone\",\"At the hospital, someone runs to someone who's with someone.\",Someone,gold,leans over the kitchen counter.,lies on a bed.,consults the situation problems.,pours soda on his wounded colleague.,1\n16596,anetv_zCND0HJq6Iw,10752,\"After their interaction, the man begins to play the wind pipes on his back as he walks back and forth across the stage. The crowd is shown and the camera goes back to the stage and several lights\",\"After their interaction, the man begins to play the wind pipes on his back as he walks back and forth across the stage.\",The crowd is shown and the camera goes back to the stage and several lights,gold,wearing their helmets pitch in.,come on as the guitarist begins to play.,begin to go black and return to one then the audience and more people continue playing in different medals of victory.,are shown up around other people play tables in teams.,1\n16597,anetv_zCND0HJq6Iw,10751,\"A white man is on the stage with long dreads throwing up the piece sign to the audience. After their interaction, the man\",A white man is on the stage with long dreads throwing up the piece sign to the audience.,\"After their interaction, the man\",gold,in white falls away into the plastic shady carpet.,begins to play the wind pipes on his back as he walks back and forth across the stage.,raises one fist until the left wall breaks the man's man's hand free.,begins transfixed and disappointed.,1\n16598,anetv_3gQsAKZ71tU,6622,A man stands on a court. He,A man stands on a court.,He,gold,hits a ball with a racket.,starts in the act of hitting the ball against each other while he is standing.,jumps off his bike and goes.,hits a ball and the pins falls to the floor.,0\n16599,anetv_3gQsAKZ71tU,6624,Several different athletes are shown hitting balls. Some of them,Several different athletes are shown hitting balls.,Some of them,gold,are using tennis balls to hit the ball.,cheer at the end.,have won then they all begin jumping rope in a competition.,are cheering while they lob the ball back and forth for the players.,1\n16600,anetv_3gQsAKZ71tU,6623,He hits a ball with a racket. Several different athletes,He hits a ball with a racket.,Several different athletes,gold,are shown hitting balls.,\"have a goal in the court, so he throws his cue stick.\",perform with his racket.,walk around him while he lays down to serve.,0\n16601,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2215,Someone runs out after him. The boy,Someone runs out after him.,The boy,gold,washes toward an elderly lady at a dinner table.,\"charges the launcher and shoots someone in the head, then stirs against someone.\",snaps with thread.,turns around with a wounded glare.,3\n16602,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2203,\"The troubled teen runs out. Later, our view\",The troubled teen runs out.,\"Later, our view\",gold,cuts to the bridal gown.,jostles by someone's drunken executive.,chases after him as he races through the park.,\"sweeps to a high dressing room, where someone gets out to see someone room in bed.\",2\n16603,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2204,\"Later, our view chases after him as he races through the park. Night\",\"Later, our view chases after him as he races through the park.\",Night,gold,jumps into the basin a few times.,skateboards pass him through the airport.,falls as he bolts down someone's street and into her apartment building.,lets out a sigh.,2\n16604,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2207,She slips out shutting the door behind her. He,She slips out shutting the door behind her.,He,gold,presses her up against the door and kisses her.,drags someone across from the car.,runs along the bathroom and finds his light vest inside.,\"comes by, picks up a kettle bell and leaves.\",0\n16605,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2202,As someone gets back up his stepfather restrains him from behind. He backs someone into the doorframe and the older man,As someone gets back up his stepfather restrains him from behind.,He backs someone into the doorframe and the older man,gold,lips him to put his arms around the middle.,gets up and pitches to the ground.,slumps to the floor clutching his shoulder.,spots someone and races over.,2\n16606,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2209,\"She pushes him back and frowns uncomfortably. With a heavy blink, she\",She pushes him back and frowns uncomfortably.,\"With a heavy blink, she\",gold,lifts her brown eyes to meet his.,places her phone back in the sink.,reaches toward the back of her childhood friend's lifeless corpse.,steps away from someone and walks away.,0\n16607,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2211,Someone twists the doorknob behind her back. She pushes the door open a crack and someone,Someone twists the doorknob behind her back.,She pushes the door open a crack and someone,gold,starts to climb back on.,runs over to him.,takes a look inside.,appears to be awake.,2\n16608,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2213,\"Charlotte sits on the sofa near someone who guiltily leans forward in an armchair. Later, someone\",Charlotte sits on the sofa near someone who guiltily leans forward in an armchair.,\"Later, someone\",gold,stuffs a penguin in the bag.,sits at a bench in the basement.,leads them into the hangar.,marches away from the apartment building.,3\n16609,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2208,He presses her up against the door and kisses her. She,He presses her up against the door and kisses her.,She,gold,drives off and switches to the darkened room.,\"opens her eyes, then thrusts the check - case into his mother's hand.\",\"sits at an upright metal bar, pouring her drink.\",pushes him back and frowns uncomfortably.,3\n16610,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2201,Someone grabs him roughly and they wrestle to the floor. As someone gets back up his stepfather,Someone grabs him roughly and they wrestle to the floor.,As someone gets back up his stepfather,gold,\", two ladies step toward his mother, who destroying the two men's thoughtful eyes.\",restrains him from behind.,\", someone gets up and throws her arms at someone; she pushes him away.\",\", his eyes meet, his face sincere as if spinning a horse.\",1\n16611,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2216,The boy turns around with a wounded glare. Someone,The boy turns around with a wounded glare.,Someone,gold,pokes someone's head with a towel.,keeps looking at him intently.,gives him an occasional pat on his tail.,\"pouts, his eyes glistening.\",3\n16612,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2214,\"Later, someone marches away from the apartment building. Someone\",\"Later, someone marches away from the apartment building.\",Someone,gold,\"takes two coffees and climbs up the stairs, leading a group of survivors.\",stands at the reception desk and looks up.,is carrying a telephone pump on 57.,runs out after him.,3\n16613,lsmdc3067_THE_ART_OF_GETTING_BY-32454,2205,Night falls as he bolts down someone's street and into her apartment building. He,Night falls as he bolts down someone's street and into her apartment building.,He,gold,\"sees cars falling off the street and walks out of his parking garage, followed by someone once more.\",catches his breath as she answers.,are batting the crypt boy.,looks down into a large space and market it.,1\n16614,lsmdc1014_2012-78989,7022,\"Someone pilots the plane between tumbling sections of the freeway, then rolls to the right. Someone\",\"Someone pilots the plane between tumbling sections of the freeway, then rolls to the right.\",Someone,gold,reverses and puts it on.,comes back from the carton.,climbs the ladder and stands at the bottom.,struggles for height as the street rises.,3\n16615,lsmdc1014_2012-78989,7019,The runway starts to collapse. Someone,The runway starts to collapse.,Someone,gold,eyes the controls nervously.,'s snowslide grows once brighter.,bursts out to him fixing the trunk.,\"excitedly eats it over her plumed shoulder, and holds a brief look.\",0\n16616,lsmdc1014_2012-78989,7023,Someone struggles for height as the street rises. Someone,Someone struggles for height as the street rises.,Someone,gold,wash the concrete blast tower entrance.,struggles to balance a treelike bottled water.,sobs as people and cars are thrown into the doom below.,raises his arms to face the crowd.,2\n16617,lsmdc1014_2012-78989,7026,Someone pilots the plane straight through the gap as the building shattering all around them. Debris,Someone pilots the plane straight through the gap as the building shattering all around them.,Debris,gold,follows someone to a side door and looks through the blinds leading nearby.,slams a hard metal gate into the ship's hull.,fills the sky as the light plane rises.,appears into his mind.,2\n16618,lsmdc1014_2012-78989,7024,Someone sobs as people and cars are thrown into the doom below. As the plane,Someone sobs as people and cars are thrown into the doom below.,As the plane,gold,turns away from someone.,dips into the rising canyon.,\"rounds a corner, a green searchlight barrels through midair.\",\"drives down, it stops.\",1\n16619,lsmdc1014_2012-78989,7020,Someone pulls the controlls up. Someone,Someone pulls the controlls up.,Someone,gold,stares wide - eyed.,walks to the bedroom and picks up the bottle of milk.,rests her pistol on the foot of the seat and stares directly into the darkness behind her.,leans on it and squeezes like a missile.,0\n16620,lsmdc1014_2012-78989,7025,The plane clears the canyon. Someone,The plane clears the canyon.,Someone,gold,fills the front snow.,is the third general fleet.,pilots the plane straight through the gap as the building shattering all around them.,makes a call that the wharf's baker.,2\n16621,lsmdc1014_2012-78989,7021,Someone stares wide - eyed. Someone,Someone stares wide - eyed.,Someone,gold,drops his hats on his shoulders.,sweeps his sunglasses down with his dagger in a flowerbed.,nods and a churning wave crashes through the sky.,\"pilots the plane between tumbling sections of the freeway, then rolls to the right.\",3\n16622,lsmdc1014_2012-78989,7027,Debris fills the sky as the light plane rises. Someone,Debris fills the sky as the light plane rises.,Someone,gold,falls around someone's car.,poses for a smoke opening.,gives tearful someone a big hug.,sits safely on his bunk and sharing a smile.,2\n16623,anetv__HQTWGmXXsc,18562,\"A young woman with a black dress and red cardigan on is standing in the corner of a kitchen cutting fruits. After awhile, she\",A young woman with a black dress and red cardigan on is standing in the corner of a kitchen cutting fruits.,\"After awhile, she\",gold,grabs six strawberries and leaves them on the cutting board as she begins to cut grapes.,\"puts her hand on the christmas tree, and places her shaded mixture with a harnesses.\",has spoons to a large bowl of eggs and gives peppers to the dogs.,\"tastes the mixture from the powdered mix, cuts the candies, then she plays it.\",0\n16624,anetv__HQTWGmXXsc,18563,\"After awhile, she grabs six strawberries and leaves them on the cutting board as she begins to cut grapes. In front of her, there are two large white bowls full of fruit and she\",\"After awhile, she grabs six strawberries and leaves them on the cutting board as she begins to cut grapes.\",\"In front of her, there are two large white bowls full of fruit and she\",gold,places various in her top bag.,begins putting the cut up fruit in those bowls.,is putting them down and standing.,starts cooking a large pot that has hot coffee.,1\n16625,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2966,He hands her a drink and sits down on the bench beside her. They,He hands her a drink and sits down on the bench beside her.,They,gold,are cast in a warm glow as the sun rises.,sit down in bed.,look down at her.,holds her gaze for a moment then watches the surveillance screen.,0\n16626,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2969,Someone strolls across the varnished wooden floorboard and regards her reflection as she poses with one arm elevated. Someone,Someone strolls across the varnished wooden floorboard and regards her reflection as she poses with one arm elevated.,Someone,gold,smiles as the fold up and stands by her.,\"shaves her leg, then someone brushes again.\",stands with his hands in his pockets.,watches from a sparkly ticket.,2\n16627,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2965,\"He strolls past the lake house to the board walk and close by wooden railings, where someone sits staring down the length at the derelict jetty, the lake beyond. He\",\"He strolls past the lake house to the board walk and close by wooden railings, where someone sits staring down the length at the derelict jetty, the lake beyond.\",He,gold,pulls up on a platform in front of a life basket.,hands her a drink and sits down on the bench beside her.,\"glances toward the stairway racing block, then finds her first gazing.\",holds the spear in his hand before placing it onto the ground nearby.,1\n16628,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2968,She locks up and deposits her keys by a desk. Tall studio mirrors,She locks up and deposits her keys by a desk.,Tall studio mirrors,gold,show the winged logo.,run the length of the wall opposite the front windows.,flap at the end of the hall.,pass about bare hanging planks in the walls.,1\n16629,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2967,They are cast in a warm glow as the sun rises. Someone,They are cast in a warm glow as the sun rises.,Someone,gold,breezes through a dance studio.,enters his gloomy office.,moves deeper into the dock.,eyes raise the bow above their heads.,0\n16630,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2964,\"Wearing a headscarf, someone rides as someone half down the winding road on his motorcycle. Wearing a patchwork blanket around his shoulders and carrying two mugs, someone\",\"Wearing a headscarf, someone rides as someone half down the winding road on his motorcycle.\",\"Wearing a patchwork blanket around his shoulders and carrying two mugs, someone\",gold,walks up from behind the parked motorbike.,pauses at the end of a row without looking straight up.,\"scrambles up, knock on the window, and crawls around the door.\",pauses one particular car and goes to a basket of coins.,0\n16631,anetv_8tI9IsSpgeI,6991,A man lifts large weight off the ground. He,A man lifts large weight off the ground.,He,gold,pushes it over his head before dropping it on the ground.,pin takes the weight and the woman swings it to the man in the planetarium and she is lifted.,lifts a barbell to his chest.,lifts his knee up off the ground.,0\n16632,anetv_fGDVlbI90pw,18872,A young girl wearing a gray sweater with long red colored hair is brushing her hair. She,A young girl wearing a gray sweater with long red colored hair is brushing her hair.,She,gold,\"walks past the toddler, stands her and walks away.\",is using a silver paddle brush to remove the knots from her hair and de - tangle it as she brushes it through.,puts a green towel over her face and looks.,is then shown talking about how you can use the case to brush her hair.,1\n16633,lsmdc1023_Horrible_Bosses-82072,10426,They swerve wildly through traffic. Someone,They swerve wildly through traffic.,Someone,gold,\"turns to see the ghostly couples, vanishing from the bolts.\",hangs a sharp left into an empty street.,\"are in a field building, inspector, debonair someone who is standing in the crowded street.\",stands and squints at sarah's left foot and someone stirs.,1\n16634,lsmdc1023_Horrible_Bosses-82072,10425,Someone rams their back end side - on to spin them around. They,Someone rams their back end side - on to spin them around.,They,gold,roll someone to her fours.,tumble to the floor as the black thugs pedal their backs.,swerve wildly through traffic.,pull it up to reveal two boys bouncing it like guns.,2\n16635,anetv_sQwx_m8Vghw,13883,A person uses a bike chain pedals and a wheel to power a small generator. The camera,A person uses a bike chain pedals and a wheel to power a small generator.,The camera,gold,reveals a bright spark on the pedals behind the vehicle.,\"has a few more plants on the ground, and then pushes the key in the pedal.\",zooms in on the machine parts while it's moving.,follows the credits of a car.,2\n16636,anetv_sQwx_m8Vghw,17565,A person is then seen moving the wheel around and around as it moves faster. The camera,A person is then seen moving the wheel around and around as it moves faster.,The camera,gold,zooms in on the edges as the person shows as well as various pans and a area look on.,continues to be finished by the video as he and animals go on and out of people riding around its trail.,continues to follow several colored balls as the child walks up while kicking the waves in the air.,pans in closer to watch this person peddle and move around the room.,3\n16637,anetv_sQwx_m8Vghw,17564,A close up of a machine is seen with a chain around it. A person,A close up of a machine is seen with a chain around it.,A person,gold,smokes a cigarette and blows smoke out of a hookah.,is seen pushing a lawn along the side and leads into a girl walking into frame and leads into her speaking to the camera.,is then seen moving the wheel around and around as it moves faster.,is then seen working out on a machine attempting to fight off on the machine.,2\n16638,lsmdc1029_Pride_And_Prejudice_Disk_One-83610,18508,\"He clumsily climbs down from the carriage, causing someone to stifle a giggle. He\",\"He clumsily climbs down from the carriage, causing someone to stifle a giggle.\",He,gold,bows to them reverentially.,wraps her arms around her neck and kisses him.,flings him back off.,snags the purse and rises.,0\n16639,lsmdc1029_Pride_And_Prejudice_Disk_One-83610,18507,The obsequious someone pulls up. He,The obsequious someone pulls up.,He,gold,walks off into the room and rises.,re walking towards the black coffee shop and pats the top of the finished van.,spots someone on the ground and tosses a primed grenade at two women.,\"clumsily climbs down from the carriage, causing someone to stifle a giggle.\",3\n16640,anetv_qtOP38458F4,7397,He then spins and flips several times. He,He then spins and flips several times.,He,gold,then catches the gate while the crowd watches.,\"dismounts, throwing his arms up in the air.\",swings around.,jumps off the mat and watches.,1\n16641,anetv_qtOP38458F4,7395,A male gymast prepares to mount a beam. He,A male gymast prepares to mount a beam.,He,gold,runs across the boat and walk with a mop.,\"jumps up, doing an handstand on the bar.\",spins and does a gymnastics routine on the mat.,lands at the top of the diving board.,1\n16642,anetv_qtOP38458F4,7396,\"He jumps up, doing an handstand on the bar. He then\",\"He jumps up, doing an handstand on the bar.\",He then,gold,comes back to the rock as he continues to perform several more traditional maps.,spins and flips several times.,does his routine on tight hardwood.,repeats the bolt several times and jumps into the water.,1\n16643,lsmdc3081_THOR-37975,19668,\"The faceless guardian made of ribbed armor, the Destroyer, steps forward. With someone leading, the Asgardians\",\"The faceless guardian made of ribbed armor, the Destroyer, steps forward.\",\"With someone leading, the Asgardians\",gold,\"brings a pistol up to his gun, throwing them to the ground.\",takes a flight of last keys.,walk beneath two shield agents watching from a rooftop.,\"dash awkwardly to someone, who crawls along the scene, toward his companions.\",2\n16644,lsmdc3081_THOR-37975,19666,\"Someone sets the plates in front of someone and someone. On a rooftop across the street from the lab, shield agents\",Someone sets the plates in front of someone and someone.,\"On a rooftop across the street from the lab, shield agents\",gold,swarm around the vehicle gun - blazing.,use binoculars and listening equipment.,follow their easy bow.,enter a house as one opens uneasily.,1\n16645,lsmdc3081_THOR-37975,19667,\"On a rooftop across the street from the lab, shield agents use binoculars and listening equipment. In the vault beneath Asgard, someone\",\"On a rooftop across the street from the lab, shield agents use binoculars and listening equipment.\",\"In the vault beneath Asgard, someone\",gold,walks the rest of the water down the dark corridor.,strides up to the casket and taps his spear on the ground.,early answered radiomen heard.,raises his binoculars to the birds looking for windows.,1\n16646,lsmdc3081_THOR-37975,19665,\"Behind them, someone helps someone prepare plates of eggs and toast. Someone\",\"Behind them, someone helps someone prepare plates of eggs and toast.\",Someone,gold,sets the plates in front of someone and someone.,painfully taps his hand as he douses.,\"looks on slack - jawed, still amused.\",shakes someone's hand before putting it on.,0\n16647,lsmdc3081_THOR-37975,19661,He watches as a Bifrost bridge shoots from the distant observatory into the sky. He,He watches as a Bifrost bridge shoots from the distant observatory into the sky.,He,gold,climbs off the ship's roof.,turns and stalks off.,swims toward a stairwell.,lands a few feet away.,1\n16648,lsmdc3081_THOR-37975,19663,\"Someone, someone, someone and someone appear in a desert. Someone and several other agents\",\"Someone, someone, someone and someone appear in a desert.\",Someone and several other agents,gold,surround a parked car.,climb into vehicles and speed off.,wait on the pier.,start racing around an archways.,1\n16649,lsmdc3081_THOR-37975,19662,\"He turns and stalks off. Someone, someone, someone and someone\",He turns and stalks off.,\"Someone, someone, someone and someone\",gold,appear in a desert.,make her way across the porch.,stare at her cooker.,approach the vehicles cut past one.,0\n16650,lsmdc3081_THOR-37975,19669,Someone's mouth drops open as he turns toward his four friends standing outside the labs glass entrance. Someone,Someone's mouth drops open as he turns toward his four friends standing outside the labs glass entrance.,Someone,gold,appears in front of them.,drops a coffee mug.,arrives at the restaurant.,glares at the thinning young priest.,1\n16651,lsmdc3081_THOR-37975,19664,\"At a table, someone sits beside someone, who drops a digestive tablet into a glass of water. Behind them, someone\",\"At a table, someone sits beside someone, who drops a digestive tablet into a glass of water.\",\"Behind them, someone\",gold,helps someone prepare plates of eggs and toast.,\"puts the hat on the table, puts on the royal hand and heads vacantly to the utility booth.\",\"writes on a slip, then dances in place through the french windows.\",enjoys a cone - shaped coconut rest on his lips.,0\n16652,lsmdc3081_THOR-37975,19660,\"Elsewhere in the city, someone stands on a balcony. He\",\"Elsewhere in the city, someone stands on a balcony.\",He,gold,gets to his feet.,watches as a bifrost bridge shoots from the distant observatory into the sky.,stops to speak to the steward.,towers over a manhattan battlements.,1\n16653,anetv_XvFv0n2mJUk,13347,Two men stand at the end of a mat one kneeling over with his head between the other mans knees. The standing man,Two men stand at the end of a mat one kneeling over with his head between the other mans knees.,The standing man,gold,pushes his hands up and down the stage then stops motionless.,flips the kneeling man into the air and onto his shoulders.,instructs a man to move his leg and help them squat while holding his hips.,takes his suit off and sits back down.,1\n16654,anetv_XvFv0n2mJUk,13348,The standing man flips the kneeling man into the air and onto his shoulders. The standing man,The standing man flips the kneeling man into the air and onto his shoulders.,The standing man,gold,turns and throws the man on the mat behind them and backs up.,spins in circles under an parallel bar and put it on a black screen.,finishes up his kick and he lifts the weight as the man nods at the head.,raises his arms back up to try again the three times.,0\n16655,anetv_XvFv0n2mJUk,5029,He lifts up another person onto his shoulders. He then,He lifts up another person onto his shoulders.,He then,gold,jumps on the swing between the legs and does make flips.,slams the person down onto a mat.,lifts the parts back up and takes the weights.,drops the barbell down on his stomach.,1\n16656,anetv_XvFv0n2mJUk,5028,A man is bending down on a mat. He,A man is bending down on a mat.,He,gold,is instructing on elliptical equipment.,lifts up another person onto his shoulders.,spins and dives around the gym.,is holding a tennis racket.,1\n16657,anetv_pem8BpCspUM,2367,A girl is seen running into frame. She,A girl is seen running into frame.,She,gold,shoot at each other as well as people watching.,\"moves several fans forward, including a couple of the bar.\",attempts to jump over a jump before jumping out of the bottom.,slides into a plate where two other people are running.,3\n16658,anetv_pem8BpCspUM,9542,A woman catches a ball that was being thrown. Another woman,A woman catches a ball that was being thrown.,Another woman,gold,is shown following a woman in a black shirt and holding the ball dispenser while the woman holds basketball in her arms.,slides into a base and falls on the ground.,is shown aiming at various balls as well.,\"takes up, the runs to the piano and makes a shot.\",1\n16659,anetv_pem8BpCspUM,9543,Another woman slides into a base and falls on the ground. A person behind her,Another woman slides into a base and falls on the ground.,A person behind her,gold,gets up and walks down a street.,\"climbs over a high hill, jumps and jumps on.\",is almost guiding her on with the pen attached to her leg.,holds his arms up at his sides.,3\n16660,anetv_pem8BpCspUM,2368,She slides into a plate where two other people are running. A person in the back,She slides into a plate where two other people are running.,A person in the back,gold,pulls out the watch.,jumps a set of stairs.,spreads their arms out.,aims a pistol at them.,2\n16661,lsmdc3052_NO_STRINGS_ATTACHED-25373,3062,\"He glances at someone who stares ahead. Preoccupied, she\",He glances at someone who stares ahead.,\"Preoccupied, she\",gold,looks out at the window to her side.,picks up a shovel.,points to the bonnet as she looks around.,dashes toward the crowd.,0\n16662,lsmdc3052_NO_STRINGS_ATTACHED-25373,3058,Someone grabs a handful of straws and has a big slurp of the chocolate milkshake. She,Someone grabs a handful of straws and has a big slurp of the chocolate milkshake.,She,gold,jerks them to stand uncomfortably.,wipes his lip and licks her finger.,falls to the ground.,drops onto the postcard clasps it in someone's face.,1\n16663,lsmdc3052_NO_STRINGS_ATTACHED-25373,3057,\"In a diner, they both suck through straws. Someone\",\"In a diner, they both suck through straws.\",Someone,gold,draws the boy in a swinging roll.,steps out from out of the shadows.,gets an extra straw.,races up one of the lanes.,2\n16664,lsmdc3052_NO_STRINGS_ATTACHED-25373,3061,\"Later, someone drives along smiling. He\",\"Later, someone drives along smiling.\",He,gold,glances at someone who stares ahead.,finds a map of gorgoroth racing on its back.,fans as they go down a tunnel headed toward the sultry compound of an unlit estate house.,kicks himself around the dark keys in front of him.,0\n16665,lsmdc3052_NO_STRINGS_ATTACHED-25373,3060,They gaze at each other. Avoiding his gaze she,They gaze at each other.,Avoiding his gaze she,gold,leans forward and has a drink.,nudges her head closer to him.,considers him quickly.,places tender cream on his forehead.,0\n16666,lsmdc3052_NO_STRINGS_ATTACHED-25373,3059,She wipes his lip and licks her finger. They,She wipes his lip and licks her finger.,They,gold,gaze at each other.,\"scissor invisible kiss and now her father's face lights dimly, putting her face to the side.\",see her dip lower in the sink.,\"a grin, someone draws up the food sauce, summoning a hysterical gesture, then undoes his bite.\",0\n16667,anetv_sgPkVKPp1dU,12865,\"A man in black shirt lifted the barbel and started to carry it up and down for few times, while behind him, two men are removing the metal plates on another barbel. The man in black shirt\",\"A man in black shirt lifted the barbel and started to carry it up and down for few times, while behind him, two men are removing the metal plates on another barbel.\",The man in black shirt,gold,\"added more weight on the barbel by adding yellow plates on both side, then continue weight lifting.\",threw the shot put then did a flat shake.,lifts the weight drop to his chest and carries it before the boy had walked backwards by hard breasts - tripping his head up from,on the legs slides down the slide.,0\n16668,lsmdc3087_WE_BOUGHT_A_ZOO-41108,105,He looks to his left. He,He looks to his left.,He,gold,illuminated from the ground in the window's eye.,\"peers at herself in the mirror and finds her elephant, follows someone, leaning over his chair.\",\"looks at them lightly, then moves off.\",\"looks to the right, then back at the tree.\",3\n16669,lsmdc3087_WE_BOUGHT_A_ZOO-41108,108,\"He steps down from the porch. Meanwhile, someone\",He steps down from the porch.,\"Meanwhile, someone\",gold,\"passes a short model kids door leading outside someone's home, oblivious: a neighborhood bearded, with very short hair.\",lies in bed staring at a framed photo of himself with his mother.,\"gazes up the stairway gently at the felled ankle, which has blown into a long ravine.\",controls the train traffic.,1\n16670,lsmdc3087_WE_BOUGHT_A_ZOO-41108,96,He lowers his thoughtful gaze and purses his lips. Someone,He lowers his thoughtful gaze and purses his lips.,Someone,gold,sets down his glass.,waits for his reply.,takes a deep breath then twitches a tender smile.,tosses us a paper wad.,1\n16671,lsmdc3087_WE_BOUGHT_A_ZOO-41108,106,\"He looks to the right, then back at the tree. Soft moonlight\",\"He looks to the right, then back at the tree.\",Soft moonlight,gold,casts his reflection enviously from a blank bit.,shines on his curious face.,shines through the neighbor's eyes.,shines behind him as he floats towards him.,1\n16672,lsmdc3087_WE_BOUGHT_A_ZOO-41108,109,\"Meanwhile, someone lies in bed staring at a framed photo of himself with his mother. He\",\"Meanwhile, someone lies in bed staring at a framed photo of himself with his mother.\",He,gold,\"presses the picture to his chest, and wraps his arms around it, with tears in his eyes.\",smirks as she rests her head back over his chin; someone smiles.,runs into the warehouse and switches on the outside light.,takes a few steps forward.,0\n16673,lsmdc3087_WE_BOUGHT_A_ZOO-41108,103,He goes out onto the porch. He,He goes out onto the porch.,He,gold,watches the wispy branches of a tree sway in the gentle breeze.,goes to the window and looks around the fence.,appears at a window.,\"is looking down slowly, throwing the machine at the.\",0\n16674,lsmdc3087_WE_BOUGHT_A_ZOO-41108,97,Someone waits for his reply. He,Someone waits for his reply.,He,gold,\"hugs him, the devil jowly then walks away.\",lifts his eyes and earnestly meets her gaze.,cuts the barber's arm up.,tosses out dirt on someone's neck.,1\n16675,lsmdc3087_WE_BOUGHT_A_ZOO-41108,100,\"Someone stares after him with a pinched brow, then allows a faint smile as she jogs forward to catch up with him on a hill. Wearing reading glasses, he\",\"Someone stares after him with a pinched brow, then allows a faint smile as she jogs forward to catch up with him on a hill.\",\"Wearing reading glasses, he\",gold,watches the surfer as someone approaches him.,\"sits alone, at the end of the dining room table, in front of a laptop, and surrounded by bills.\",\"stands behind the chair, opens a bottle.\",takes a seemingly endless flight of stairs.,1\n16676,lsmdc3087_WE_BOUGHT_A_ZOO-41108,101,He touches his brow as he continues to review the expenses. His attention,He touches his brow as he continues to review the expenses.,His attention,gold,drifts to a window.,is now taped up on the cops.,shifts to a score point shot between someone and passing a worker surging around the water full in rapid pucks.,returns to the red one.,0\n16677,lsmdc3087_WE_BOUGHT_A_ZOO-41108,99,\"Someone smiles, then continues up the trail. He\",\"Someone smiles, then continues up the trail.\",He,gold,looks back with a grin.,points to the step before him.,does n't smile at all.,hurries someone down the sidewalk.,0\n16678,lsmdc3087_WE_BOUGHT_A_ZOO-41108,102,His attention drifts to a window. He,His attention drifts to a window.,He,gold,goes out onto the porch.,\"looks up at someone, who catches sand for a moment.\",awning of a building reads under a view of a stylized vanger kung stadium.,lowers her gaze and shifts her gaze to the saucer - like cloud.,0\n16679,lsmdc3087_WE_BOUGHT_A_ZOO-41108,98,The zookeeper's jaw goes slack. Someone,The zookeeper's jaw goes slack.,Someone,gold,\"smiles, then continues up the trail.\",takes a seat upon the desk.,stares at someone in then left alone.,makes her run to the recovery gate.,0\n16680,lsmdc3087_WE_BOUGHT_A_ZOO-41108,104,He watches the wispy branches of a tree sway in the gentle breeze. He,He watches the wispy branches of a tree sway in the gentle breeze.,He,gold,tosses the vase against his house as he turns out to watch.,looks to his left.,gobbles objects at his son.,leans down and touches the toy handle.,1\n16681,lsmdc3087_WE_BOUGHT_A_ZOO-41108,110,\"He presses the picture to his chest, and wraps his arms around it, with tears in his eyes. Now, someone\",\"He presses the picture to his chest, and wraps his arms around it, with tears in his eyes.\",\"Now, someone\",gold,\"hangs back, then pulls on his boots and leads them.\",enters the dim restaurant.,'s office is decorated.,lines up to her apartment.,1\n16682,lsmdc3087_WE_BOUGHT_A_ZOO-41108,107,Soft moonlight shines on his curious face. He,Soft moonlight shines on his curious face.,He,gold,\"glances at her, and leans back into the submarine.\",casts a hand down his cheek.,watches as he displays the leader's collar.,steps down from the porch.,3\n16683,anetv_kuPWb9E4aUQ,10304,\"A diver is swimming under the blue water. Two divers wearing their oxygen are under the water, they\",A diver is swimming under the blue water.,\"Two divers wearing their oxygen are under the water, they\",gold,do multiple flips and slides as forward to swim.,are holding onto the strong rope.,are displaying more fish and water.,are performs a huge splash on their hands before diving over the surface.,1\n16684,anetv_kuPWb9E4aUQ,10305,\"Two divers wearing their oxygen are under the water, they are holding onto the strong rope. The divers dive deeper to into the water, they\",\"Two divers wearing their oxygen are under the water, they are holding onto the strong rope.\",\"The divers dive deeper to into the water, they\",gold,\"walk through the water, their raft salsa with the other two.\",swim towards a coral bed under the water.,add their tips to a view of the whipping water.,come to the surface to grab one another.,1\n16685,anetv_kuPWb9E4aUQ,10306,\"The divers dive deeper to into the water, they swim towards a coral bed under the water. The people\",\"The divers dive deeper to into the water, they swim towards a coral bed under the water.\",The people,gold,dance alone on the waters of the river.,\"are lowered high on to the boat, then towards a rising screen.\",dive to grab the rag and swim so it tastes like one person and a water falls in the ocean.,are riding the white boat towards the ocean.,3\n16686,lsmdc3038_ITS_COMPLICATED-17448,3045,As someone lingers in the doorway she takes her place at the table. Someone,As someone lingers in the doorway she takes her place at the table.,Someone,gold,looks at her through a window.,walks upstairs to where someone is sitting in a chair.,gazes to each door then turns around to walk to class.,stares at his family glumly then gives a regretful look.,3\n16687,lsmdc3038_ITS_COMPLICATED-17448,3044,Someone eyes someone who pleadingly puts his hands up. As someone lingers in the doorway she,Someone eyes someone who pleadingly puts his hands up.,As someone lingers in the doorway she,gold,finds a red stairway lit with a single woman atop a erected tunnel.,notices three looming over him.,takes her place at the table.,starts right onto the walkway sofa.,2\n16688,anetv_aA6Bchzww4Y,18194,\"The man continues to slam at the ice on the car with the mallet as the ice chips off in chunks. The man tries to open his trunk again, this time the opening is easier and the man\",The man continues to slam at the ice on the car with the mallet as the ice chips off in chunks.,\"The man tries to open his trunk again, this time the opening is easier and the man\",gold,climbs into the trunk of the car to the front of the car to open the drivers door from the inside drivers seat.,\"takes it out, cleaning the end.\",tries to look at the man in the foreground flattens the card back in the line.,refills the glass and creates a liquid.,0\n16689,anetv_aA6Bchzww4Y,18192,A man uses a mallet to chip ice off of a car while it is snowing outside and a man videos him from behind. A man in a black winter coat and gloves,A man uses a mallet to chip ice off of a car while it is snowing outside and a man videos him from behind.,A man in a black winter coat and gloves,gold,is underneath a line of stilts.,is talking about him as he is from the camera he's standing in front of a number of red cocks.,begins bouncing pieces together.,uses a mallet to chip ice off of an ice covered car in the snow.,3\n16690,anetv_aA6Bchzww4Y,18193,The man then takes his car keys and tries to open the trunk which is frozen and requires tugging to open. The man,The man then takes his car keys and tries to open the trunk which is frozen and requires tugging to open.,The man,gold,\"climbs out of the lift and climbs down the shaft, pulling his old trunk from the trunk, crammed inside.\",\"pedal a little crane down after the bus, which he again yanks his foot off his lug nuts and punches up the keys.\",continues to slam at the ice on the car with the mallet as the ice chips off in chunks.,removes the bolts from the counter and grabs it again.,2\n16691,anetv_rMdojBVP-aM,18341,A camera pans around a woman standing in front of a dog balancing on a fence. The dog,A camera pans around a woman standing in front of a dog balancing on a fence.,The dog,gold,continues balancing on the fence while the camera pans around.,rides around on frisbees as a man on inflatable catches them.,is then seen pushing a dog around her while the camera captures her movements and zooms in on the man.,walks in and out of frame followed by more shots of vacuum cleaner and a shot put.,0\n16692,anetv_rMdojBVP-aM,18342,The dog continues balancing on the fence while the camera pans around. The dog then,The dog continues balancing on the fence while the camera pans around.,The dog then,gold,jumps off the fence in the end.,runs back with the dog as the dog follows.,does tricks with a frisbees while continuing to play with the dog.,runs around getting off the style as far as he can.,0\n16693,anetv_XxyTLG8B-Ns,12504,A man is talking to the camera as he gets ready to ride the bumper cars. The man,A man is talking to the camera as he gets ready to ride the bumper cars.,The man,gold,rides around in the bumper car bumping in to the other people while the camera watches.,continues skateboarding before he goes back onto the bike to speak to the camera.,is seen demonstrating a walk in time and the ring is shown on a hook.,is now shown playing back on a bike from his original skateboard playing normal.,0\n16694,anetv_XxyTLG8B-Ns,12505,The man rides around in the bumper car bumping in to the other people while the camera watches. The camera,The man rides around in the bumper car bumping in to the other people while the camera watches.,The camera,gold,zooms in on several shotguns as he drives down the road.,ornaments around to both cars and the two men in the limo lift over.,follows close to the camera followed by the boys in the man ring behind the other smiling.,zooms in on the people for a closer look.,3\n16695,anetv_XxyTLG8B-Ns,12506,The camera zooms in on the people for a closer look. The ride ends and the people,The camera zooms in on the people for a closer look.,The ride ends and the people,gold,continue paddling through the rapids.,get out of the bumper cars.,pause as the boats ride along.,continue riding on the raft.,1\n16696,lsmdc1058_The_Damned_united-98435,7664,Derby climb the table to the top. Crowds,Derby climb the table to the top.,Crowds,gold,washed as the singers revolve.,tilt down to the air.,mingle in a cooker.,welcome the derby team bus back with the cup.,3\n16697,anetv_tO1VJnsd8sg,13116,A person in a yellow shirt stands outside watching. A woman,A person in a yellow shirt stands outside watching.,A woman,gold,is sitting in a chair waiting to go to a sink.,is talking in a bathroom.,is washing in a restaurant.,opens the door and walks out.,3\n16698,anetv_QtiqvB4uw2Y,14775,\"A view of a top of a roof with pine straws shown strewn all over it appears and a banner at the bottom say's if you got pine straw on your roof, call us 678 - 887 - 9479. A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he\",\"A view of a top of a roof with pine straws shown strewn all over it appears and a banner at the bottom say's if you got pine straw on your roof, call us 678 - 887 - 9479.\",\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he\",gold,\"would n't jump much or bit because he finishes the last thing, while another worker leans.\",starts to get the lift from that man brings it down the middle.,'s walking along the roof blowing off all of the pine straws.,sweeps his lighter away in the yard and progresses the hammering wood into the other corner.,2\n16699,anetv_QtiqvB4uw2Y,14776,\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he's walking along the roof blowing off all of the pine straws. The last view is of the cleaned off roof and the website\",\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he's walking along the roof blowing off all of the pine straws.\",The last view is of the cleaned off roof and the website,gold,is shown at the bottom of the screen.,appears with a gold talking and to a half shaved man.,\"are making a few empty cloth words, the products also install and into a part of the car.\",\", and the man is standing on the road, yellow with grey and blue measuring the roof.\",0\n16700,anetv_a39_RoOBkX0,6125,A group is gathered closely together at sinks in a commercial kitchen. The camera,A group is gathered closely together at sinks in a commercial kitchen.,The camera,gold,\"goes around in a circle, recording them as they wash.\",pans to the bottom and the man is hoe the cookies methods.,\"is as another woman's guiding her elsewhere, looking around.\",glides on the man and the man talks to the camera.,0\n16701,anetv_a39_RoOBkX0,6126,\"The camera goes around in a circle, recording them as they wash. they\",\"The camera goes around in a circle, recording them as they wash.\",they,gold,are all wearing gloves and aprons as they wash the dishes.,use the vacuum to wave and swim to the water.,move together for a brief period.,\"make sharp turns with their hands, trying to take the prowler off.\",0\n16702,anetv_a39_RoOBkX0,17828,Several of the women are wearing pink rubber gloves. A woman on the end,Several of the women are wearing pink rubber gloves.,A woman on the end,gold,is making some faces in a mirror.,is adjusting the horse's handle.,is wearing a pink apron.,begins to make them clean.,2\n16703,anetv_a39_RoOBkX0,17827,People are standing around a sink washing dishes. Several of the women,People are standing around a sink washing dishes.,Several of the women,gold,are wearing pink rubber gloves.,are washed with soap.,are washing the dishes down a drain.,are washing dishes in the room.,0\n16704,anetv_krFle3KU4Ts,9303,He is playing an accordian. The accordian,He is playing an accordian.,The accordian,gold,is moving back to someone's hair.,is approaching with some males.,flies out of an stage.,has ivory keys he plays with his fingers.,3\n16705,anetv_krFle3KU4Ts,15316,A young man is seen playing an accordion while the camera captures him from the sides. The man,A young man is seen playing an accordion while the camera captures him from the sides.,The man,gold,continues to play while moving his hands up and down and looking down to see.,continues raps on the instrument while looking to the camera.,then begins playing in the water as he begins dancing up and down.,continues to play the instrument and leaves the screen.,0\n16706,anetv_krFle3KU4Ts,9302,A man is standing inside a house. He,A man is standing inside a house.,He,gold,is playing an accordian.,is holding a piece of wood with a shovel.,is throwing darts on a dart board.,is playing a game of croquette.,0\n16707,anetv_QU5R75IyQow,8532,A man is talking to a camera in his bathroom. He,A man is talking to a camera in his bathroom.,He,gold,\"is then shown brushing, spraying, and styling a woman's hair before braiding it.\",puts lipstick on top of the faucet.,rubs the man's face on a black towel.,picks up the canister and starts rubbing it on a red car.,0\n16708,anetv_QU5R75IyQow,8533,\"He is then shown brushing, spraying, and styling a woman's hair before braiding it. she\",\"He is then shown brushing, spraying, and styling a woman's hair before braiding it.\",she,gold,poses for the camera when he is finished.,finishes then twirls one shoe over the edge.,begins to shave his hair as she applies she shows different colors of the hair.,\"continues to blow wax around his hair with brushes, then brushes it's hair to the sides.\",0\n16709,anetv_70bS0DkAeDo,17003,\"A man bends on front a wight. Then, the man\",A man bends on front a wight.,\"Then, the man\",gold,raises the weight until the shoulders.,continue playing the guitar.,holds a ball into the dirt track.,reaches for the man.,0\n16710,anetv_70bS0DkAeDo,9316,\"A man is lifting weights in a weight room, pulling a large barbell up to his chest. He\",\"A man is lifting weights in a weight room, pulling a large barbell up to his chest.\",He,gold,lifts his legs in the air and flips him over the edge several times.,\"lifts his leg up to the side, rubbing it over his head.\",\"stands shaking before lifting it above his head, trying to hold it in place.\",\"lifts it to his chest and picks it up, then lowers it to his chest.\",2\n16711,anetv_70bS0DkAeDo,9317,\"He stands shaking before lifting it above his head, trying to hold it in place. He\",\"He stands shaking before lifting it above his head, trying to hold it in place.\",He,gold,\"throws the lasso over and drops it back, trying to throw the other side of the field.\",drops the barbell hard onto the ground.,pours his feet up the bar and spin it.,spins around himself and twists it and adjusts it for height and kicks it into the air.,1\n16712,anetv_70bS0DkAeDo,17004,\"Then, the man raises the weight until the shoulders. After, the man holds the weight above the head, and then he\",\"Then, the man raises the weight until the shoulders.\",\"After, the man holds the weight above the head, and then he\",gold,falls the weight to the floor.,begins running down the weight as the man runs out.,falls off the rope.,takes back back the weight.,0\n16713,lsmdc3009_BATTLE_LOS_ANGELES-246,2427,Jets soar through the sky. Someone and someone,Jets soar through the sky.,Someone and someone,gold,take position on the roof.,\"lean on the railing, pursued by an aerial.\",ride into a huge carriage filled with trees.,descend the inner shaft through the water which opens to reveal a large cargo jutting out from behind them.,0\n16714,anetv_VkRjs03YEjE,14236,A bunch of players and spectators run the court toward the melee. Men,A bunch of players and spectators run the court toward the melee.,Men,gold,is practicing cricket in a competition.,is throwing the ball and hitting the ball in the goal.,are running along the edge of the court.,\"gather under line, kicking and shooting balls.\",2\n16715,anetv_VkRjs03YEjE,14230,The man in the corner kicks the ball straight into the net. The team,The man in the corner kicks the ball straight into the net.,The team,gold,wrestles the puck on the blue as others try to hit them.,continue to run down the track while people cheer.,runs around the court celebrating.,dances around the table filled with freshly chucks and balls.,2\n16716,anetv_VkRjs03YEjE,14235,A few players are standing in the corner looking like they are arguing. A bunch of players and spectators,A few players are standing in the corner looking like they are arguing.,A bunch of players and spectators,gold,run the court toward the melee.,are standing to score from the ring.,is marching in the background.,are chasing to stand on large mats.,0\n16717,anetv_VkRjs03YEjE,14232,A man in the stands climbs over the railing and runs onto the court celebrating. The group,A man in the stands climbs over the railing and runs onto the court celebrating.,The group,gold,huddles on the side and ride faster.,is in a bunch celebrating on the court.,finishes their routine and walks to the end of the jump rope.,walks into the center and thin stand on the center and stare at the paper.,1\n16718,anetv_VkRjs03YEjE,14234,One of the players kicks the ball into the stands and walks off with his head down. A few players,One of the players kicks the ball into the stands and walks off with his head down.,A few players,gold,have collected their seats.,are shown over the winners of the court.,are standing in the corner looking like they are arguing.,sit in the grass near the line.,2\n16719,anetv_VkRjs03YEjE,14238,The small group is still arguing and holding back fights. A small group,The small group is still arguing and holding back fights.,A small group,gold,is expertly swinging using their arms and acting like one of the instructor.,enters a crowd cheering they jump to.,is having an animated discussion.,walks along behind the camera while a woman stands behind them.,2\n16720,anetv_VkRjs03YEjE,14231,The team runs around the court celebrating. A man in the stands,The team runs around the court celebrating.,A man in the stands,gold,climbs over the railing and runs onto the court celebrating.,walks a basket closer to his legs.,raises a ball and throws them into the net.,wins and holds the ball.,0\n16721,anetv_VkRjs03YEjE,14237,Men are running along the edge of the court. The small group,Men are running along the edge of the court.,The small group,gold,is still arguing and holding back fights.,\"starts standing round, jumping over the ball.\",rides spinning single on the sign.,is shown dancing in full swing.,0\n16722,anetv_VkRjs03YEjE,14239,A small group is having an animated discussion. The two men,A small group is having an animated discussion.,The two men,gold,laugh with each other to remove the shirts from their jackets.,walk back on to the court as the group starts talking again around the court floor and edge.,are playing the concert together.,start pushing the puck around.,1\n16723,anetv_VkRjs03YEjE,14233,The group is in a bunch celebrating on the court. One of the players,The group is in a bunch celebrating on the court.,One of the players,gold,in red walks to the girls and starts hitting something by someone hands.,falls out again and the man swings and throws the ball.,kicks the ball into the stands and walks off with his head down.,takes a hit to meet it with the referee.,2\n16724,anetv_cudeag10U7Q,11371,\"A woman is riding a bike down the street, then others are shown as well. The people\",\"A woman is riding a bike down the street, then others are shown as well.\",The people,gold,are riding camels through the jungle.,speak to the camera in between takes of riding their bikes on city roads.,take turns jumping and ends with the woman picking up the skateboard and walking away.,are seen working with knitted equipment while the woman talks to the camera.,1\n16725,anetv_y5j9TqTy9Xw,15872,A woman is walking along a track. She,A woman is walking along a track.,She,gold,takes off at a fast run.,is laughing while standing in the middle of the beach.,starts chasing a calf and a dog follows around she.,\"runs down a slope, holding a javelin, and left before tumbling down the road again.\",0\n16726,anetv_y5j9TqTy9Xw,15873,She takes off at a fast run. She,She takes off at a fast run.,She,gold,jumps over a bar and onto a mat.,sees someone and someone back on the floor.,smashes the dry sand off in the sand.,launches the ball and runs as fast as she can.,0\n16727,lsmdc1055_Marley_and_me-96612,907,\"Someone, the boys and Marley head back to the house. Marley's\",\"Someone, the boys and Marley head back to the house.\",Marley's,gold,\"passed around the tent by someone, who's sleeping on the couch.\",multicolored color appears in the background.,having difficulty getting up the steps.,sitting at the edge of the canvas heap.,2\n16728,anetv_WWip1_lFvGg,14345,They put a contact lens in the eye. They then,They put a contact lens in the eye.,They then,gold,adjust the lens on the right lens.,take the contact lens out of their eye.,dip the lens in their palm.,rub their eyes and dip the contact lens to their eye.,1\n16729,anetv_WWip1_lFvGg,14344,A person holds their eye open. They,A person holds their eye open.,They,gold,are adjusted swimming from behind.,and put it on a line!,put a contact lens in the eye.,now someone talks on a phone.,2\n16730,anetv_yOcWUk9cOws,2665,Several girls are outside in a large green field playing a game. The girl in front of the camera,Several girls are outside in a large green field playing a game.,The girl in front of the camera,gold,is dressed in a yellow shirt and black shorts hit the ball with the stick and begins jumping in the air.,shows several balls of the balls she continues trying.,continues to throw to the second woman holding sticks on the ground.,pans away to observe what they are talking about.,0\n16731,anetv_lUds16WLsHI,14354,Women are waxing the man's legs. We,Women are waxing the man's legs.,We,gold,\"awkwardly pull on small poles, in position, becoming aware of the tension.\",\", clothed, lights, and dry glasses are shown.\",see men working on a kneeling ground.,see a black screen with writing.,3\n16732,anetv_lUds16WLsHI,14351,We are in a school in a crowded student union seeing all the people and objects. The man,We are in a school in a crowded student union seeing all the people and objects.,The man,gold,murmurs bringing bursts and juggles balls and back again.,gets in an elevator.,holds his gun in his hand and lifts it in the air and then shoots it in the mouth.,is shown running down the dirt track.,1\n16733,anetv_lUds16WLsHI,14349,We see the man's hairy legs. The man,We see the man's hairy legs.,The man,gold,points at the camera.,stands on the horse's legs.,plants flat things on his back.,places his left hand on the shoulder.,0\n16734,anetv_lUds16WLsHI,14348,We see a man in a white room talking. We,We see a man in a white room talking.,We,gold,pan back to water balance and give instructions.,see scenes of a photo being handed.,see the man's hairy legs.,lead the man a black.,2\n16735,anetv_lUds16WLsHI,14350,The man points at the camera. We,The man points at the camera.,We,gold,see baked on a table.,see the landscape of the players.,are in a school in a crowded student union seeing all the people and objects.,see a harmonica and walk on a wooden canoe.,2\n16736,anetv_lUds16WLsHI,12777,The hallways of a school is shown. The man,The hallways of a school is shown.,The man,gold,gets into an elevator.,flies off the balcony and lands in a chair.,crouches behind a set of weights.,is filled with weights.,0\n16737,anetv_lUds16WLsHI,14353,He puts his leg on a table and has it waxed. Women,He puts his leg on a table and has it waxed.,Women,gold,are waxing the man's legs.,cuts diapers from his coat.,bow at the center of the elliptical whether ten or fifteen feet off.,are standing in the car.,0\n16738,anetv_lUds16WLsHI,14356,The man grimaces in pain. We,The man grimaces in pain.,We,gold,see another person dig in each cleans.,rushes someone to the hospital girl.,see the man in his room in front of a computer talking.,is struggling with a determination in it.,2\n16739,lsmdc3091_ZOMBIELAND-44507,13915,He hands over his rifle. Someone,He hands over his rifle.,Someone,gold,returns her eyes angrily.,picks up a thermos and takes a sip of bottled water.,emerges from behind a hay bale.,makes a call on his mobile.,2\n16740,lsmdc3091_ZOMBIELAND-44507,13906,\"He scans the surrounding fields and the cylindrical hay bales dotting them. Aiming the gun inside the vehicle, someone\",He scans the surrounding fields and the cylindrical hay bales dotting them.,\"Aiming the gun inside the vehicle, someone\",gold,stumbles into the next room.,knocks his jacket over a bank's hanger.,peeks through the escalade's open driver's window.,closes his eyes on someone.,2\n16741,lsmdc3091_ZOMBIELAND-44507,13913,Little someone aims her shotgun at him. She,Little someone aims her shotgun at him.,She,gold,takes the gun from a holster and fumbles.,stands by the steward in her hand.,shoots out the moon roof.,grabs someone's hand then rams him back on his arm.,2\n16742,lsmdc3091_ZOMBIELAND-44507,13909,\"A flannel shirt hangs from the hood, flapping in the breeze. He\",\"A flannel shirt hangs from the hood, flapping in the breeze.\",He,gold,streaks through its hair as he stares out the window.,unhooks it then tosses it on the steaming engine.,waves goodbye as the sun continues above.,tumbles up door and out back onto the curb.,1\n16743,lsmdc3091_ZOMBIELAND-44507,13914,She shoots out the moon roof. He,She shoots out the moon roof.,He,gold,swings it down beneath the rim.,narrowly winds her up again.,presses the slide to it.,hands over his rifle.,3\n16744,lsmdc3091_ZOMBIELAND-44507,13907,\"Aiming the gun inside the vehicle, someone peeks through the Escalade's open driver's window. He\",\"Aiming the gun inside the vehicle, someone peeks through the Escalade's open driver's window.\",He,gold,finds it empty and bends over to survey the undercarriage.,forces his way over to the van.,removes his jacket and gets out of his car.,picks up the phone and stomps off tiny panty trousers.,0\n16745,lsmdc3091_ZOMBIELAND-44507,13905,As someone nears the Escalade. He,As someone nears the Escalade.,He,gold,lifts the head man's hand.,scans the surrounding fields and the cylindrical hay bales dotting them.,prices down his computer.,pulls someone a few bit away.,1\n16746,lsmdc3091_ZOMBIELAND-44507,13912,The Hummer pulls forward and someone strides back to meet it. He,The Hummer pulls forward and someone strides back to meet it.,He,gold,opens the passenger door and gets in.,takes a big bite from the bookshelf.,glances at someone then frowns and slips down his hardcover's backpack.,holds the gas mask to his ear.,0\n16747,lsmdc3091_ZOMBIELAND-44507,13920,\"As he heads out of the station, she peeks under her red convertible. Her tight skirts\",\"As he heads out of the station, she peeks under her red convertible.\",Her tight skirts,gold,shows the curves of her toned rear.,\"agape, someone stares on thoughtfully, then shifts her gaze.\",are out in front of them.,raised by a ballerina walks to the door.,0\n16748,lsmdc3091_ZOMBIELAND-44507,13918,\"As she lowers the gun, he and someone climb out. Someone\",\"As she lowers the gun, he and someone climb out.\",Someone,gold,\"pulls a rounded mirror out of the cabinet, then raises a hand toward his waist.\",closes the garage door and holds his phone to his ear.,gets behind the wheel and swaps grins with her sister in back.,\"turns toward someone, who lies tensely in a row.\",2\n16749,lsmdc3091_ZOMBIELAND-44507,13908,He finds it empty and bends over to survey the undercarriage. A flannel shirt,He finds it empty and bends over to survey the undercarriage.,A flannel shirt,gold,pulls onto a camouflaged stand.,\"hangs from the hood, flapping in the breeze.\",hangs above an image of a man lying on the toilet.,is put in his pocket.,1\n16750,lsmdc3091_ZOMBIELAND-44507,13911,\"Grinning, he waves someone over. The Hummer pulls forward and someone\",\"Grinning, he waves someone over.\",The Hummer pulls forward and someone,gold,\"carves someone the dark, to!\",punches the battered tree.,sprints back into the hallway and stops by an ancient box.,strides back to meet it.,3\n16751,lsmdc3091_ZOMBIELAND-44507,13904,\"Now on a country highway, the Escalade sits parked with its hood up. Someone\",\"Now on a country highway, the Escalade sits parked with its hood up.\",Someone,gold,smiles from sight at someone.,glances up at the building.,shoots a look at someone's body in the car.,studies it through binoculars.,3\n16752,lsmdc3091_ZOMBIELAND-44507,13910,\"He unhooks it then tosses it on the steaming engine. Slinging the rifle over his shoulder with its strap, he\",He unhooks it then tosses it on the steaming engine.,\"Slinging the rifle over his shoulder with its strap, he\",gold,hits him with the back of the boat.,takes the gun from his holster and flops down on the rug.,cups his hands to his mouth.,drops the hammer and drops.,2\n16753,lsmdc3067_THE_ART_OF_GETTING_BY-32347,17126,Someone gazes at the piece of art. Someone,Someone gazes at the piece of art.,Someone,gold,\"stares at someone, who sullenly sips his brandy.\",puts its nails down again.,stays under the chair and studies him.,\"eyes him thoughtfully, then steps in front of the next piece.\",3\n16754,lsmdc3067_THE_ART_OF_GETTING_BY-32347,17127,\"Someone eyes him thoughtfully, then steps in front of the next piece. The sharp perspective canvas\",\"Someone eyes him thoughtfully, then steps in front of the next piece.\",The sharp perspective canvas,gold,fly through the heavy rain rain.,shovels for another film.,\"covers a silver sign on the wall for support, casting a gentle ripples on the ocean ocean.\",shows six rows of plates each holding a slice of cake or pie identical to the others in its row.,3\n16755,lsmdc3067_THE_ART_OF_GETTING_BY-32347,17125,He glances at someone then returns his gaze to the paintings. Someone,He glances at someone then returns his gaze to the paintings.,Someone,gold,moves closer and scans the surface.,\"shrugs, then moves to another painting.\",sinks to his knees beside the table and types calculations in the diary.,jumps over a wall and flops on board.,1\n16756,lsmdc3067_THE_ART_OF_GETTING_BY-32347,17128,The sharp perspective canvas shows six rows of plates each holding a slice of cake or pie identical to the others in its row. He,The sharp perspective canvas shows six rows of plates each holding a slice of cake or pie identical to the others in its row.,He,gold,gives an embarrassed shrug.,slashes a variety of raw powder into a dish plate.,chooses a swiffer cake.,presents a printout of his roast stick then sets it in front of it.,0\n16757,anetv_r5cjo7N6IEY,16002,\"A shadow is on the ground, caused by a designed shrub. A man\",\"A shadow is on the ground, caused by a designed shrub.\",A man,gold,\"is shown outdoors, showing off his multitude of decorative bushes in his yard.\",\"is shown on a piece of wood land, singing and spraying smoke.\",\"sits at a piano, beckoning uncomfortably.\",grabs a lady phone and holds it up.,0\n16758,anetv_r5cjo7N6IEY,16003,\"A man is shown outdoors, showing off his multitude of decorative bushes in his yard. He\",\"A man is shown outdoors, showing off his multitude of decorative bushes in his yard.\",He,gold,gazes down to the phone as he enters the main house.,clips and measures them to make sure they look their best.,is sitting with the shoe making cups with a stick while explaining the price.,is brushing through grass in a trees and showing mowing his lawn.,1\n16759,anetv_r5cjo7N6IEY,16004,He clips and measures them to make sure they look their best. He,He clips and measures them to make sure they look their best.,He,gold,jumps for a monument to remove it.,lays his brow on the top of the rope.,holds all the drinks out of the room.,\"finds two that look like boxers, and pretends to make them fight.\",3\n16760,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94860,19468,\"Sitting in her pink office, someone puts three spoonfuls of pale pink sugar into a china cup decorated with pink roses. Cats\",\"Sitting in her pink office, someone puts three spoonfuls of pale pink sugar into a china cup decorated with pink roses.\",Cats,gold,is wheeled on comp machines.,move around on the china plates on the wall.,sit on some empty plastic seats at home.,gift smiles: she is at the sort of view of a circular carriage and has to pretend it's sparkles.,1\n16761,anetv_Wzg4d-3ym1E,18516,She starts painting the dresser with a spray gun. She,She starts painting the dresser with a spray gun.,She,gold,\"puts the spare tire on, then shows a 30 message to the blackboard and the bag of papers.\",sets down the tire and dips the rag in the paint.,\"indicates the women, filing dresses in hangers.\",grabs a sponge out of a black bucket and starts wiping down the dresser.,3\n16762,anetv_Wzg4d-3ym1E,17844,The lady kneels on the ground talking next to the nightstand. We,The lady kneels on the ground talking next to the nightstand.,We,gold,see the woman put her arms on a bed.,see a green ending title screen.,see the lady run down the river to the pool at play.,see ending on screen putting soap on the bucket.,1\n16763,anetv_Wzg4d-3ym1E,17840,We see power tools on a green title screen. A lady,We see power tools on a green title screen.,A lady,gold,is seen photo of the young boys.,is shown standing in front of a window talking to the camera.,takes sunscreen to a client.,sits on a table with tools on it in a workshop and talks.,3\n16764,anetv_Wzg4d-3ym1E,17842,We see the lady spray paint the newly sanded nightstand white and wipe it off with water. We,We see the lady spray paint the newly sanded nightstand white and wipe it off with water.,We,gold,see the nightstand with no paint on it and see a recap of her process.,see the closing screen.,see a lady cooking in a bathtub.,see a caption screen.,0\n16765,anetv_Wzg4d-3ym1E,17843,We see the nightstand with no paint on it and see a recap of her process. The lady,We see the nightstand with no paint on it and see a recap of her process.,The lady,gold,swings a shirt bolt on a person in the pink shirt with it and starts twirling it out.,picks up a small brush and then fade into the dresser.,kneels on the ground talking next to the nightstand.,sits and talks to the camera while dancing.,2\n16766,anetv_Wzg4d-3ym1E,17841,A lady sits on a table with tools on it in a workshop and talks. She,A lady sits on a table with tools on it in a workshop and talks.,She,gold,cuts the screen on the screen with groping for shining.,throws to the wall and flips it.,touches in his mouth and shows the face of the man with the toppings while doing next.,grabs a tool ads the battery and a sanding disk while speaking.,3\n16767,anetv_Wzg4d-3ym1E,18515,She starts ironing a dresser in front of her. She,She starts ironing a dresser in front of her.,She,gold,begins ties the laces together.,starts painting the dresser with a spray gun.,bends to cut it and jewel it.,puts it on along bristle swimming the water.,1\n16768,anetv_iZk3PH8ghlI,13351,Holding their arms behind them or their hands outstretched helps to control their speed and direction. Patchy areas of snow,Holding their arms behind them or their hands outstretched helps to control their speed and direction.,Patchy areas of snow,gold,pass in two directions.,is spewing all the rocks spread at fire.,try to sky over the sides of the hill.,\"are present on the sides of the road, indicating the still - cool temperature.\",3\n16769,anetv_iZk3PH8ghlI,2973,A group of teens skateboarding on a road. The teens,A group of teens skateboarding on a road.,The teens,gold,struggle to catch their breath.,rides side by side with a yellow car.,\"talk each other, then spread and continues skateboarding.\",get out of their car.,2\n16770,anetv_iZk3PH8ghlI,2974,\"The teens talk each other, then spread and continues skateboarding. Some of the teens\",\"The teens talk each other, then spread and continues skateboarding.\",Some of the teens,gold,watch the hoops play the tam - tam.,playing in the snow.,holds hands behind their bodies while skating.,take their turn and faces.,2\n16771,anetv_iZk3PH8ghlI,2975,Some of the teens holds hands behind their bodies while skating. Teens,Some of the teens holds hands behind their bodies while skating.,Teens,gold,walks through the quiet living room with an umbrella and a phone.,perform their pace while knocking down balls.,holds hands while skateboarding.,walk between her and shake hands.,2\n16772,anetv_iZk3PH8ghlI,13349,\"Several skaters in helmets, pads, and hoodies are speeding down an empty road on their skateboards. They pass fields and houses, and one loan truck\",\"Several skaters in helmets, pads, and hoodies are speeding down an empty road on their skateboards.\",\"They pass fields and houses, and one loan truck\",gold,is seen over and away with their cars as the town happens.,speaks to each other.,follows close as she goes.,parked on the side of the road.,3\n16773,anetv_L1lXij7Fyvo,10698,\"A man is standing outside by a pool, talking as another man stands on the other side. The second man\",\"A man is standing outside by a pool, talking as another man stands on the other side.\",The second man,gold,is then shown wearing the helmet and holding the surf stick and begins going down the track and jumps up into the water again.,\"balances on a string and walks over the water, staying balanced by waving his arms at his sides.\",on the front dives behind the couch and removes his head and bat.,\"steps up off the side, then continues into another shot.\",1\n16774,anetv_L1lXij7Fyvo,7127,A picture then appears in the middle of the screen indicating that the guy's name is Billy Funk. Billy Funk then,A picture then appears in the middle of the screen indicating that the guy's name is Billy Funk.,Billy Funk then,gold,\"start to play a piece of indoor basketball sticks, while the dance is shown, from a man of alternately has a left.\",continue to harmonica ballerinas on the side of the court.,begins to tight rope the line over the pool and swaying from side to side while doing so.,the boy competing in the same spot from the competition.,2\n16775,anetv_L1lXij7Fyvo,7128,Billy Funk then begins to tight rope the line over the pool and swaying from side to side while doing so. Another angle is shown and other individuals,Billy Funk then begins to tight rope the line over the pool and swaying from side to side while doing so.,Another angle is shown and other individuals,gold,cheer him onto the white tips recede to capture control of the animal.,continue in the room while a young man talks to the camera between golden and black darts.,are shown doing the same thing but falling into the pool and creating a large splashes.,are practicing for wrestling lessons and switching all the best ways to prepare for a competition in the pool.,2\n16776,anetv_L1lXij7Fyvo,10699,\"The second man balances on a string and walks over the water, staying balanced by waving his arms at his sides. He\",\"The second man balances on a string and walks over the water, staying balanced by waving his arms at his sides.\",He,gold,\"makes it to the other side, where he stops to talk to the camera before walking away.\",grabs the man with one hand.,brushes off his hands quickly.,performs a wild jump position on the floor as the gymnast dive into the pool below.,0\n16777,anetv_L1lXij7Fyvo,7129,Another angle is shown and other individuals are shown doing the same thing but falling into the pool and creating a large splashes. The first guy,Another angle is shown and other individuals are shown doing the same thing but falling into the pool and creating a large splashes.,The first guy,gold,\"then reappears and finishes the task without falling, says something to the camera then walks away.\",\"holds a mallet while someone watches, looking at the surface.\",grabs parts of the giant sliding portion of the board while manipulating with the water.,\"takes off his glasses, and then continues to talk to the camera in the end.\",0\n16778,anetv_MiTTWddOuaM,10063,\"Two men walk in the street holding a box, then they assemble a soccer table. People\",\"Two men walk in the street holding a box, then they assemble a soccer table.\",People,gold,\"compete in a competition, then the coaches run into the pool and move their arms with high fives.\",follow some trips of passing people.,are on the side of the bridge holding the hammer.,plays soccer table in the street.,3\n16779,anetv_MiTTWddOuaM,10064,\"People plays soccer table in the street. After, the men\",People plays soccer table in the street.,\"After, the men\",gold,go in and high 1 fails to pass by.,carry the table and enters a train where they continue playing.,\"put in, their long poles, and play indoor soccer.\",hold and play polo.,1\n16780,anetv_MiTTWddOuaM,10065,\"After, the men carry the table and enters a train where they continue playing. After the man\",\"After, the men carry the table and enters a train where they continue playing.\",After the man,gold,add eggs to a bowl of lemons and put the tokens across them.,carry the soccer table to a park and other places where people play and paint it.,\"trots alongside the skateboarder, the man gets the balls on the board.\",come with the boy and signal the children.,1\n16781,anetv_5P-Xs2v6lis,7126,A technician walks along a roof and sprays it using a wand attached to a hose. The man,A technician walks along a roof and sprays it using a wand attached to a hose.,The man,gold,cuts the tiles at the end of the steam.,\"puts the vacuum down on the boot, lifts the metal squeegee and holds it to the floor.\",\"pushes plaster into the wall, while then leaning it into a wall.\",turns off his hose then walks along the peak of the roof.,3\n16782,anetv_5P-Xs2v6lis,7127,The man sprays around the gutters with the wand. The water,The man sprays around the gutters with the wand.,The water,gold,comes out of the gutter onto the cement below.,appears and shows several shots of the man washing the man's leg.,glows resting against the light.,is shot to wall several more times to the room.,0\n16783,anetv_eUCKEnKxG8w,17371,The girls hold up a product and measure it out followed by putting it into their mouths and swishing it around. The girls then,The girls hold up a product and measure it out followed by putting it into their mouths and swishing it around.,The girls then,gold,hold a black cloth and clean the brush and brush them all the way to speak to them.,spit out the liquid and continue to speak to the camera.,demonstrate the next moves in unison.,go back and fourth across the floor while pulling back a string of the string and resuming it thoroughly.,1\n16784,anetv_eUCKEnKxG8w,17370,Two young girls are seen kneeling before a tub while speaking to the camera. The girls,Two young girls are seen kneeling before a tub while speaking to the camera.,The girls,gold,continue speaking and leads into him speaking to the camera while a man speaks to a camera.,continue while the two girls continue to dance in their frame.,put an earring in her mouth while speaking to the camera.,hold up a product and measure it out followed by putting it into their mouths and swishing it around.,3\n16785,anetv_87hjft6OBiU,1159,There is a man shown lifting a weight that weighs over 90 pounds. There,There is a man shown lifting a weight that weighs over 90 pounds.,There,gold,whistle is added of the practicing.,is a woman who's running on the treadmill behind him.,ups are shown as they go to shave san.,is being shown by another bald man.,1\n16786,anetv_Y4IsLkxb5CI,15836,A woman in bikini is swimming under the sea. A reflection of a person on the water,A woman in bikini is swimming under the sea.,A reflection of a person on the water,gold,catches a fish underwater.,is pouring smoke onto the area.,fall down on the mountains.,is shown riding a surfboard.,3\n16787,anetv_Y4IsLkxb5CI,15837,A reflection of a person on the water is shown riding a surfboard. The woman swims in the water and she,A reflection of a person on the water is shown riding a surfboard.,The woman swims in the water and she,gold,\"'s holding the woman, laughing and brushing the dog's hair.\",is close to the corals and fishes.,continues swimming around in the water while the two cups are swimming.,runs up a wave and to her left.,1\n16788,anetv_Y4IsLkxb5CI,17918,The shadow of a person riding a surf board is captured. The lady,The shadow of a person riding a surf board is captured.,The lady,gold,puts her hands on the water.,proceeds to get a kite with someone and someone.,smiles and swims away.,walks over the board and waves.,2\n16789,lsmdc0030_The_Hustler-65222,13086,\"Someone unscrews his cue, thinking it over. Someone's bodyguards\",\"Someone unscrews his cue, thinking it over.\",Someone's bodyguards,gold,flips him head to the ground.,follow the shotgun inside.,turn around and sprint over to the right.,\"stand around, waiting for the word.\",3\n16790,lsmdc0030_The_Hustler-65222,13087,\"Someone's bodyguards stand around, waiting for the word. Someone\",\"Someone's bodyguards stand around, waiting for the word.\",Someone,gold,is sitting in a motel room bed and talking to someone.,does a lift off the corpse and continues to date someone.,speeds off down a highway.,\"listens, his head bowed.\",3\n16791,anetv_awag66wjX4k,10498,The person then shows off the finished product of a fully adjustable handle. The ending screen,The person then shows off the finished product of a fully adjustable handle.,The ending screen,gold,is cleaned with the closeups of a project.,drops showing the product.,shows the bike company's logo again.,is shown in half between 4.,2\n16792,anetv_awag66wjX4k,10497,A person with gloves then shows off some tools and paste. He then,A person with gloves then shows off some tools and paste.,He then,gold,takes some off and removes a shoe and lines up a shoe.,uses the tools and paste to fix the bike's handle.,puts all the pans on a bush and wipes it away.,talks and begins scissors on the side with scissors.,1\n16793,anetv_awag66wjX4k,10495,There is an intro of the bike company's logo. Then a man,There is an intro of the bike company's logo.,Then a man,gold,is using a lanes on the beanie.,takes wire from his bicycle.,gives a quick into talk about the bikes.,is holding a little snowboarding rope and city lights.,2\n16794,anetv_awag66wjX4k,10496,Then a man gives a quick into talk about the bikes. A person with gloves then,Then a man gives a quick into talk about the bikes.,A person with gloves then,gold,begins to dismount in different rooms and poses.,climbs up and out of the yard to start a boat.,shows off some tools and paste.,pick up pieces of the bike and begins climbing the fence.,2\n16795,anetv_awag66wjX4k,10494,A bike company is showing off their bikes and how to fix them. There,A bike company is showing off their bikes and how to fix them.,There,gold,is in a bicycle when watched by women in a tire wrestling in front of another bike and by ride them.,is an intro of the bike company's logo.,is a lever and the old words appear and a statue is of fair and the mountain.,\"three and a man get on their bike and come back to work on it, and then it is on a day.\",1\n16796,anetv_RiF_iAc0keQ,18988,Another boy lays down on his stomach. Another person,Another boy lays down on his stomach.,Another person,gold,comes to the end.,\"takes the boy, putting it in his hand as someone swings down over his head and bumps him with him.\",lifts his left arm while the other boy watches.,lifts him up and drops him on the bed.,3\n16797,anetv_RiF_iAc0keQ,12162,Four kids are seen jumping on a bed with one another. One child,Four kids are seen jumping on a bed with one another.,One child,gold,holds shoes on the ground.,grabs the other by the legs while the others jump down.,falls on the swing.,puts on top of the man's head.,1\n16798,anetv_RiF_iAc0keQ,12163,One child grabs the other by the legs while the others jump down. The child,One child grabs the other by the legs while the others jump down.,The child,gold,flips the other down onto the bed.,does tricks down a slack line while another child walks on the other side.,attaches a string pass around his neck.,steps off the floor and lands on the ground.,0\n16799,anetv_RiF_iAc0keQ,18987,A boy in a white shirt jumps off of a bed. Another boy,A boy in a white shirt jumps off of a bed.,Another boy,gold,goes down the slide.,hops on his board.,lays down on his stomach.,is helping him in and we.,2\n16800,anetv_rgrzN8ELIxI,9937,A surfer walks down towards the beach. Surfers,A surfer walks down towards the beach.,Surfers,gold,stands on the pier out in the water.,ride large waves in the ocean.,does the same as he surfs the small wave and falls back.,are going across the water above the waves.,1\n16801,anetv_rgrzN8ELIxI,9936,A beach is seen from the distance and houses are seen on a hillside in a small beach town. A surfer,A beach is seen from the distance and houses are seen on a hillside in a small beach town.,A surfer,gold,walks down towards the beach.,skis down the rapids and the man hops out on the board.,comes up and shows off a piece of colorful paintball pool.,uses a red tie to jump into a water in an indoor acoustic blue skier.,0\n16802,anetv_rgrzN8ELIxI,9935,A collage of drawings and logos are seen in black and white that make up a larger logo. A beach is seen from the distance and houses,A collage of drawings and logos are seen in black and white that make up a larger logo.,A beach is seen from the distance and houses,gold,are seen with white text on it.,land on the outdoor sidewalk.,are shown in several clips as a person climbing the sides of a cliff.,are seen on a hillside in a small beach town.,3\n16803,anetv_eil9mWGJB8E,2091,A crowd is gathered around two women who are arm wrestling. The women,A crowd is gathered around two women who are arm wrestling.,The women,gold,grab each others hands and push as hard as they can until one of them loses.,are barefoot and wearing a garment shine with the men.,are seen blocking up and down on one knee covered in round swords.,begin to dance back and forth as they ballroom dance.,0\n16804,anetv_eil9mWGJB8E,2092,They redo the arm wrestling. One of the girls lets her hand loose and the other girl,They redo the arm wrestling.,One of the girls lets her hand loose and the other girl,gold,slams her hands into a couple ducking her.,opens her mouth in shock.,raises an arm to protect her.,helps as they practice.,1\n16805,lsmdc0008_Fargo-49968,10797,Someone pulls to a halt next to someone's idling Cadillac. Someone,Someone pulls to a halt next to someone's idling Cadillac.,Someone,gold,is leaning toward a car rack.,approaches in the cadillac.,is standing in the corner of the drawn box at the top of the line.,looks at someone's mother behind her.,1\n16806,lsmdc0008_Fargo-49968,10798,Inside the booth we see the awkwardly angled leg of a prostrate body. The car,Inside the booth we see the awkwardly angled leg of a prostrate body.,The car,gold,rises to shore and someone's foot hits a window handle.,pulls into the driveway.,creeps away as she drives.,slumps as it slithers and grasps just the edge of the boat below.,1\n16807,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93560,5932,His hand shakes has he holds it out to someone. Someone,His hand shakes has he holds it out to someone.,Someone,gold,picks up the quill and gives it to little someone.,appears in the doorway and stops in her tracks.,walks away from him and gets out.,\"runs his fingers over it, then snaps off it's handle.\",3\n16808,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93560,5933,\"Someone runs his fingers over it, then snaps off it's handle. Someone\",\"Someone runs his fingers over it, then snaps off it's handle.\",Someone,gold,pulls back the door and races to the suv.,takes a seat on the ice.,\"watches keenly, as someone discards the handle.\",glances back at someone and loads the tower fists.,2\n16809,anetv_jwqotL-yNvE,2907,The guys takes off his track suit and continues to work out. He,The guys takes off his track suit and continues to work out.,He,gold,stands and touches his moped.,is on his blue white hat and is getting ready for shoes to walk up the snowy street.,ties up the calf and jumps fast.,flips himself over in the air and lands on a pile of sand.,3\n16810,anetv_jwqotL-yNvE,2908,He flips himself over in the air and lands on a pile of sand. He,He flips himself over in the air and lands on a pile of sand.,He,gold,sets his pockets and puts his third gloves on.,lifts a fish to keep it down afterwards.,proceeds to do some break dancing moves before the video ends.,walks to a dispenser table next to a red yellow light and blow the entire group of weeds towards the beach.,2\n16811,anetv_jwqotL-yNvE,2905,\"A video is shown of a first person view of someone exploring a large open field on the way to a track. Then, the person\",A video is shown of a first person view of someone exploring a large open field on the way to a track.,\"Then, the person\",gold,stands right in the center of the river and raise the stick to stand on top of it.,adds sand to the sand and then sit in a ski.,puts the camera down and begins working out on the track.,celebrates the chimney to the camera and takes the pure over the mountain.,2\n16812,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3516,\"Someone begins to fall forwards, as pieces of his skull break away. His mouth gaping in horror, he\",\"Someone begins to fall forwards, as pieces of his skull break away.\",\"His mouth gaping in horror, he\",gold,flashes a wicked grin.,\"closes his eyes, raises his wand smoke directly up to the ceiling and turns his light off.\",reaches up and draws mjolnir up to the boy's throat.,looks up as his body and clothes disintegrate into thousands of tiny pieces which float upwards.,3\n16813,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3508,\"On their knees, they fire them at each other. A burst of green energy from the Elder Wand\",\"On their knees, they fire them at each other.\",A burst of green energy from the Elder Wand,gold,\"brings someone closer to rotating the chicken arm, and he takes it for a time.\",\", earnestly chasm inside someone's throat, but a bone grabs its bodies.\",\"holds someone in his arms, so his assault wand cowers into the sphere.\",\"is met by a burst of red from someone, resulting in a bright white ball of light.\",3\n16814,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3511,\"In the courtyard, someone reels. Someone\",\"In the courtyard, someone reels.\",Someone,gold,runs to a right cliff.,slumps down from a railing.,turns to face him.,climbs into the figure's room.,2\n16815,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3528,Someone makes a vain attempt to sweep up a mountain of rubble. People,Someone makes a vain attempt to sweep up a mountain of rubble.,People,gold,walk into the hall.,struggle around the tiles.,\"remain stored in the darkness, briefly.\",use his power to pick it up.,0\n16816,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3526,\"The huge giant hugs someone, then studies him. Someone\",\"The huge giant hugs someone, then studies him.\",Someone,gold,touches pieces of the paper to someone.,\"winks at someone, then falls to the ground.\",gets back with his cue.,\"grins, as someone turns and walks away.\",3\n16817,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3529,He notices they are holding hands. Someone,He notices they are holding hands.,Someone,gold,looks down and sees someone.,escorts someone to where her mother had been concerned.,appears and fastens his helmet.,\"glances down, coyly.\",3\n16818,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3530,\"Outside in brilliant sunshine, the three friends stroll aimlessly along the ruined bridge, with its broken balustrades. Someone\",\"Outside in brilliant sunshine, the three friends stroll aimlessly along the ruined bridge, with its broken balustrades.\",Someone,gold,'s portrait sags its lips.,gazes through the carved crystal at the glass pane covering her window and adjusting the glass.,takes the beer and laughs at the glass.,steps up onto a broken stone support and looks out.,3\n16819,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3507,\"Someone reaches the Elder Wand, just before someone reaches his. On their knees, they\",\"Someone reaches the Elder Wand, just before someone reaches his.\",\"On their knees, they\",gold,race across their rotunda.,fire them at each other.,start to dance together.,dig into their gloved hands.,1\n16820,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3518,\"The morning sun shimmers through the mountains and someone, as they drift harmlessly upwards, like ashes from a paper fire. Inside, exhausted students\",\"The morning sun shimmers through the mountains and someone, as they drift harmlessly upwards, like ashes from a paper fire.\",\"Inside, exhausted students\",gold,start to run past someone.,sit on the stairs.,pull the fellowship out of hogwarts.,run through a small wooden door.,1\n16821,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3520,Someone holds the sword of Gryffindor. He,Someone holds the sword of Gryffindor.,He,gold,\"smiles, as someone sits down coyly beside him.\",is on the side of the court looking up at the ceiling.,looks up and sees the huge spider kneeling on the ground.,hurries towards a blind lying in the opposite direction.,0\n16822,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3522,He smiles when he sees someone family together. He,He smiles when he sees someone family together.,He,gold,walks past chattering students.,hikes up a board.,\"drives intently, and she sits down.\",sets her down and starts indoors.,0\n16823,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3523,He walks past chattering students. Someone,He walks past chattering students.,Someone,gold,gives him a weak smile.,\"stands at his door, watching them.\",regards him with a hardened look.,is still playing the piano.,0\n16824,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3503,\"The train of black smoke is sawed away, crashing through charred roof timbers. Struggling for supremacy, they\",\"The train of black smoke is sawed away, crashing through charred roof timbers.\",\"Struggling for supremacy, they\",gold,walk along a yard filled with planet like circus maps and streak over the horizon.,continue to pound the fence.,claw at each other's faces as they zoom above the school.,scuttle up behind someone.,2\n16825,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3505,\"They lie on the ground, some distance apart. Energy spent, each of them\",\"They lie on the ground, some distance apart.\",\"Energy spent, each of them\",gold,crawls towards his own wand.,is the only forces that wins.,seems as if roman and burning of the heavens.,works out by the moves.,0\n16826,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3504,\"Someone seems to split someone's head in two, revealing only the black smoke, as they land in the courtyard and roll away from each other across the cobbles. They\",\"Someone seems to split someone's head in two, revealing only the black smoke, as they land in the courtyard and roll away from each other across the cobbles.\",They,gold,resumes to heat the panel of partygoers and see a giant wave sending an ancient ball torchlight forward.,\"lie on the ground, some distance apart.\",remain astonished as the scatter squad follow themselves across the table.,\"continue down the hall, dancing to someone, catching them.\",1\n16827,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3525,Someone stops in front of someone. The huge giant,Someone stops in front of someone.,The huge giant,gold,rotates his once round room.,\"hugs someone, then studies him.\",flies from in the air.,is slowly forcing its shattered equipment across and inside the open door.,1\n16828,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3506,\"Energy spent, each of them crawls towards his own wand. Someone\",\"Energy spent, each of them crawls towards his own wand.\",Someone,gold,winces as she smugly jabs him.,stands and raises his glass into the air.,\"reaches the elder wand, just before someone reaches his.\",becomes a roaring fruit as someone runs out.,2\n16829,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3509,\"Inside, someone chases people downstairs. Inside, people\",\"Inside, someone chases people downstairs.\",\"Inside, people\",gold,walk in a car past to the curb.,hold an umbrella in him.,offers the company police friendly smiles.,\"fall, and someone raises her head, mouth open.\",3\n16830,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3501,\"High on the ramparts, someone flings his arms around someone's neck, and clinging onto him, jumps off the edge. They\",\"High on the ramparts, someone flings his arms around someone's neck, and clinging onto him, jumps off the edge.\",They,gold,\", the rider's rich body moves helplessly in the direction of the coach and pockets his arm in the air.\",\"plummet from the heights, someone trying to break free.\",drag him to their feet.,stop trying to get it.,1\n16831,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3512,Someone's face fills with fury. Red and green blasts,Someone's face fills with fury.,Red and green blasts,gold,meet again in a brilliant white and orange glow.,pump their fists and hit him with the swords.,\"appear in the palm of the spikey, and slowly into the top of the ski and back in the sky.\",run across the plains covered ground then scrambled from down the sides.,0\n16832,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3519,\"Inside, exhausted students sit on the stairs. Someone\",\"Inside, exhausted students sit on the stairs.\",Someone,gold,leaps across the wide bridge.,reads the newspaper as they run along a runway.,holds the sword of gryffindor.,backs up cautiously to the front of the house.,2\n16833,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3514,\"Someone is forced back, as the energy from the Elder Wand dissipates and dies. Someone flicks his wand, and the Elder Wand\",\"Someone is forced back, as the energy from the Elder Wand dissipates and dies.\",\"Someone flicks his wand, and the Elder Wand\",gold,grabs someone into the air.,smashes into a tree.,cartwheels through the air across the courtyard.,slams into a door.,2\n16834,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3524,Someone gives him a weak smile. Someone,Someone gives him a weak smile.,Someone,gold,\"drives off with his briefcase, and sweat glistening on his cheek.\",ends the call and answers his mobile.,\"salutes, goes to someone's office, takes out his phone.\",stops in front of someone.,3\n16835,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3510,\"Inside, people fall, and someone raises her head, mouth open. Someone\",\"Inside, people fall, and someone raises her head, mouth open.\",Someone,gold,\"yanks the massive frenchman off the ground, at top speed.\",\"flicks the smoke - o - lantern, someone faces the witch with someone carrying his stick.\",saunters into his apartment.,swings the sword of gryffindor.,3\n16836,anetv_n--fgqwuTTI,18261,They use a blue tool to take the chain apart. They,They use a blue tool to take the chain apart.,They,gold,see the outline of the tire and then pick up axes.,criss - jig a little pipe and put it into the center of the mouth of the tiny graphic.,put it back together using a tool.,get around the driver and open them for a few seconds.,2\n16837,anetv_n--fgqwuTTI,18260,A person is putting something on a chain of a bike. They,A person is putting something on a chain of a bike.,They,gold,use the machine to use it on a machine.,go to an awning on it.,climb the rope and throw it to the ground.,use a blue tool to take the chain apart.,3\n16838,anetv_CCL8kqQMCRw,262,A young boy attempts to break open a pinata at his birthday party inside a garage. Another boy,A young boy attempts to break open a pinata at his birthday party inside a garage.,Another boy,gold,watches from a door frame.,climbs onto some bars.,nearly walks into the range of the boy's stick but is saved by an adult.,walks up to the camera.,2\n16839,anetv_saShR7NwjMg,130,A close up of a person leads into the person watching their hands and scrubbing it with soap. A man,A close up of a person leads into the person watching their hands and scrubbing it with soap.,A man,gold,wipes up a shirt on the sink and pans off to the man's feet.,is seen afterwards running in frame while a person focuses on a figurine's picture.,is then seen panning around the area while speaking to the camera.,is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water.,3\n16840,anetv_saShR7NwjMg,131,A man is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water. The man,A man is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water.,The man,gold,pushes in and out of the way while rinsing the dish off him.,turns the pumpkin over with a smile and speaks to the camera.,\"continues brushing and finishes to wash dishes, and continues to laugh.\",dries it off with a rag in the end.,3\n16841,anetv_jYU215e-dKg,6800,\"A young man sitting on a stage with a guitar and a towel over his head, dries his hair with the towel and places it on the stage as a crowd cheers in the background. The young man\",\"A young man sitting on a stage with a guitar and a towel over his head, dries his hair with the towel and places it on the stage as a crowd cheers in the background.\",The young man,gold,sits up and puts all its supplies down in the background.,opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd.,releases the weights and lifts her up in his arms.,jumped down and started playing the arts.,1\n16842,anetv_jYU215e-dKg,6801,The young man opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd. The young man then,The young man opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd.,The young man then,gold,pours the drink into a glass while still pouring liquids into an orange container.,\"turns back around, tosses the can into the crowd and prepares to play his guitar.\",wears a white hat as he walks to the front room of a the and a man in a grey jacket and black pants.,grabs the guitar from around the head of his body and walks back to the bridge room.,1\n16843,anetv_jYU215e-dKg,1998,Man hold a bottle and drinks from it standing in stage. the man,Man hold a bottle and drinks from it standing in stage.,the man,gold,is walking in the stage drinking from the bottle and throw it to the public.,is playing the racket.,puts on a glass and helps with the drink in their hands.,takes a turn and then drinks when it's in a cup.,0\n16844,anetv_jYU215e-dKg,1997,Man is sitting in stage drying her hair with a cloth and holding a guitar. man,Man is sitting in stage drying her hair with a cloth and holding a guitar.,man,gold,\"is in a saxophone playing the piano, then a man talks to the band.\",is dancing in a kitchen with two motorized dogs.,hold a bottle and drinks from it standing in stage.,\"is skateboarding in the studio with the carpet and he stop near her, playing congas.\",2\n16845,anetv_m5YvKrjGtPM,16937,\"A person lift a weight on back. Then, the man\",A person lift a weight on back.,\"Then, the man\",gold,\"lifts the weight, after he drops the weight to the floor.\",loads a weight and then holds it.,\"picks up the weight, lifts it over his head.\",\"lifts a weight on the shoulder, then lifts it to his chest.\",0\n16846,anetv_m5YvKrjGtPM,16936,A topless fat man practice weight lift behind the man. A person,A topless fat man practice weight lift behind the man.,A person,gold,lift a weight on back.,introduces someone to cover the spot.,lifts weights and does some lifting across the air.,starts his jump on the pommel horse slowly.,0\n16847,anetv_m5YvKrjGtPM,16938,\"Then, the man lifts the weight, after he drops the weight to the floor. Again, the man\",\"Then, the man lifts the weight, after he drops the weight to the floor.\",\"Again, the man\",gold,kneels again and lift the weight above his head and then drop it.,\"lifts the weight over his head, leaving several times on his shoulders.\",lifts the weight off the bar onto the ground.,lifts the weight and the man begin to lift the weight over his head.,0\n16848,lsmdc0001_American_Beauty-45946,6868,He stands and gestures toward all the things in the room. Someone,He stands and gestures toward all the things in the room.,Someone,gold,is cutting the wall.,\"points in front of him, then looks directly at him.\",\"is there, kicking her chair out of the way.\",\"stares at him, on the verge of tears, then turns and walks out of the room before he can see her cry.\",3\n16849,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15813,Red someone descends into a low ceilinged room filled with treasure. Red someone,Red someone descends into a low ceilinged room filled with treasure.,Red someone,gold,hefts a heavy rifle into the air.,throws himself onto a beam and mops.,finds the boy in bed.,inspects a string of pearls.,3\n16850,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15814,\"Red someone inspects a string of pearls. Standing he swings his sword, then\",Red someone inspects a string of pearls.,\"Standing he swings his sword, then\",gold,points the weapon toward sir someone.,\"flips off the vampire's throat, then ignites its spikes.\",steps around the side of the ballroom.,reappears on his coat for a split second.,0\n16851,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15819,A feather attached to a knife blade flies upward from his hat. He,A feather attached to a knife blade flies upward from his hat.,He,gold,fires at a pile of wood on the wood table.,catches the feather in his mouth then drops it to his hand.,pins the chain on the back of his pants.,\"catches a baton, and does a somersault.\",1\n16852,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15816,\"Using flaming torches the pirates prod sailors into the sea. Sharks converge around the bound sailors, bubbles\",Using flaming torches the pirates prod sailors into the sea.,\"Sharks converge around the bound sailors, bubbles\",gold,rains down into the debris.,float down her nostrils.,float to the surface.,catch up beneath his wings.,2\n16853,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15811,Someone steps to a bookcase and touches the top of a book. Inside the ship Sir someone,Someone steps to a bookcase and touches the top of a book.,Inside the ship Sir someone,gold,takes out celebrating and kicks a quaffle into the air.,is kneeling a charge of the falls across the ship.,\"tilts a book in a bookcase, opening a secret compartment in the floor.\",hits a bell over the cliff railing.,2\n16854,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15818,\"On the ship, Sir someone tied to the mast jerks back his head. A feather attached to a knife blade\",\"On the ship, Sir someone tied to the mast jerks back his head.\",A feather attached to a knife blade,gold,dashes out of a crate and grabs the men.,flies upward from his hat.,\"is sprayed onto someone's neck, sending him writhing overboard.\",leads him out into the pool.,1\n16855,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15812,\"Inside the ship Sir someone tilts a book in a bookcase, opening a secret compartment in the floor. Red someone\",\"Inside the ship Sir someone tilts a book in a bookcase, opening a secret compartment in the floor.\",Red someone,gold,\"sits on a sofa facing him, and faces a mirror.\",\"steps over to someone, who sits down in a wounded seat on the far desk.\",picks up the tin and pushes past the engineer through the streets.,descends into a low ceilinged room filled with treasure.,3\n16856,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15815,\"Standing he swings his sword, then points the weapon toward Sir someone. Using flaming torches the pirates\",\"Standing he swings his sword, then points the weapon toward Sir someone.\",Using flaming torches the pirates,gold,\"appear on either side, blocking the corpses, which explode far behind.\",release to dozens hydra soldiers.,soar sideways in the distance.,prod sailors into the sea.,3\n16857,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15810,\"Face covered by a red bandana, Red someone raises his sword. Someone\",\"Face covered by a red bandana, Red someone raises his sword.\",Someone,gold,lies on someone's hands.,slams the door shut.,\"rises, places the coat's lens on his cheek, and walks away.\",steps to a bookcase and touches the top of a book.,3\n16858,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15820,\"He catches the feather in his mouth then drops it to his hand. Grasping the blade firmly, Sir someone\",He catches the feather in his mouth then drops it to his hand.,\"Grasping the blade firmly, Sir someone\",gold,cuts through his ropes.,braces himself against the still underneath ropes of harness.,jumps as he swoops upward.,removes its false spikes.,0\n16859,lsmdc3039_JACK_AND_JILL-2427,8223,Someone goes to the window and sees someone on a riding lawn mower. The cut grass,Someone goes to the window and sees someone on a riding lawn mower.,The cut grass,gold,is pushed by white.,moves to someone's front yard.,blows at someone as he chases her.,is used to go into a hole in the grass.,2\n16860,lsmdc1039_The_Queen-88119,1217,Someone puts down the phone and pauses for a moment. Someone,Someone puts down the phone and pauses for a moment.,Someone,gold,stops a few feet across the street and looks about.,\"stops beside a female secretary, who sits behind a desk.\",\"speaks for a moment, then turns to a tourist on the street.\",\"pauses, scans the room, then snaps out more new notes.\",1\n16861,anetv_gxuere-ofCU,6844,The man then begins playing several songs while pausing in between. He,The man then begins playing several songs while pausing in between.,He,gold,pauses on his hands and begins playing after the fourth rope.,shows a rabbit lying on its back.,continues playing the instrument while looking off into the distance.,finishes the song and continues speaking as fireworks occur movements throughout the area while playing.,2\n16862,anetv_gxuere-ofCU,6843,A man is seen sitting in front of a camera holding a harmonica in his hands. The man then,A man is seen sitting in front of a camera holding a harmonica in his hands.,The man then,gold,puts one arm around his neck as they play.,lays down and begins playing the instrument while looking at a camera.,begins playing several songs while pausing in between.,begins playing several drums and begins looking into the camera.,2\n16863,anetv_sahQxLbmM0U,16632,A woman is bent over holding a weight bar. She,A woman is bent over holding a weight bar.,She,gold,continues to lift weights off her head.,performs a gymnastic routine on the parallel bars.,picks the weight up and holds it at her shoulders.,continues applying a stone bar over the bar.,2\n16864,anetv_sahQxLbmM0U,8459,A woman is seen bending forward grabbing onto a set of weights. She then,A woman is seen bending forward grabbing onto a set of weights.,She then,gold,lifts the weights up and baby bends as she continues lifting.,stands up several times and walks off in the end.,lifts the weights over her head.,twirling herself around while moving her arms up and down and dancing around.,2\n16865,anetv_sahQxLbmM0U,16633,She picks the weight up and holds it at her shoulders. She then,She picks the weight up and holds it at her shoulders.,She then,gold,does several more flips and flips.,lifts the weight over her head.,shows a piece of equipment and throws it to one person at a moving lifeboat.,throws inside the bag and goes back to him.,1\n16866,lsmdc0019_Pulp_Fiction-56620,17377,\"We fade up on someone, a white, 26 - year - old prizefighter. Someone\",\"We fade up on someone, a white, 26 - year - old prizefighter.\",Someone,gold,sits at a table wearing a red and blue high school athletic jacket.,whisks money into a fishbowl.,is just playing with her.,\"disarms someone, who punches him in the head.\",0\n16867,lsmdc3080_THIS_MEANS_WAR-37425,4959,\"Now someone and someone stand at their desks. As someone takes a clip from his gun, someone\",Now someone and someone stand at their desks.,\"As someone takes a clip from his gun, someone\",gold,packs up his belongings in a file box.,takes a charge and punches the curve.,marches out into central park.,walks down the aisle past someone.,0\n16868,lsmdc3080_THIS_MEANS_WAR-37425,4960,\"As someone takes a clip from his gun, someone packs up his belongings in a file box. Someone\",\"As someone takes a clip from his gun, someone packs up his belongings in a file box.\",Someone,gold,takes his cellphone from his pocket.,shares an office with someone and is waiting with her.,ties the top of an oblong box.,pulls him through a gate to his room.,0\n16869,lsmdc3080_THIS_MEANS_WAR-37425,4958,She lifts her son onto her lap. Now someone and someone,She lifts her son onto her lap.,Now someone and someone,gold,stand at their desks.,pose at a lectern.,enter an elevator next to a woman.,arrive at a pet hotel.,0\n16870,anetv_Fp_uU-qMDSc,8693,A man dressed in all white is shown fighting different men outdoors and hitting them very hard. Tai Chi Combat along with his website and various other website icons,A man dressed in all white is shown fighting different men outdoors and hitting them very hard.,Tai Chi Combat along with his website and various other website icons,gold,win from both countries.,are shown as company's attention is riding.,are located on the bottom right.,\", he give the instructions.\",2\n16871,anetv_Fp_uU-qMDSc,8694,The man is then standing alone outdoors where he's still wearing the same white outfit and is talking very passionately using hand motions and lots of facial expressions. The man is once again shown to be fighting different men outdoors and he,The man is then standing alone outdoors where he's still wearing the same white outfit and is talking very passionately using hand motions and lots of facial expressions.,The man is once again shown to be fighting different men outdoors and he,gold,is shown on the phone.,seems to be winning each fight.,is talking extensively about how the shaving and leave other package.,is then seen riding for in the environments.,1\n16872,anetv_Fp_uU-qMDSc,8696,\"After this round of fights, the man is once again talking very passionately with a lot of hand movements and facial expressions. The man then\",\"After this round of fights, the man is once again talking very passionately with a lot of hand movements and facial expressions.\",The man then,gold,goes back to more fighting with different men somewhere outdoors where he continues to win the fights by hitting and occasionally kicking.,shows two hands on how to use the shears and demonstrate how to size them like what is going to happen.,takes onto a close defense game demonstrating how to place the potato on his lips.,cuts up his eyes and most likely also resumes doing karate with him.,0\n16873,anetv_Fp_uU-qMDSc,8695,\"The man is once again shown to be fighting different men outdoors and he seems to be winning each fight. After this round of fights, the man\",The man is once again shown to be fighting different men outdoors and he seems to be winning each fight.,\"After this round of fights, the man\",gold,is captured giving him a tattoo in his right bow in the end.,contorted on the wheel explaining in various ways.,stops wrestling again and walks him hitting the ball across the court.,is once again talking very passionately with a lot of hand movements and facial expressions.,3\n16874,anetv_DOONG5zq1Yg,12907,A woman is seen kneeling down on a yoga mat while bending forward. The woman then,A woman is seen kneeling down on a yoga mat while bending forward.,The woman then,gold,moves her leg out in front of her and bends down further creating a stretch.,flips across the weight and pushes herself sideways into the mat.,moves the beam up and down while smiling while moving her arms and speaking to the camera.,lifts up the shoes and displays how to properly secure the mat.,0\n16875,anetv_37pwbUp8t1I,9154,Hiphop dancers perform in front of a crowd. They,Hiphop dancers perform in front of a crowd.,They,gold,take pictures of the ballerina burlesque poses.,are joined by other dancers and a large crowd.,are all doing the same basic dance and having pictures taken of them.,pose as they do karate dance on the stage.,2\n16876,anetv_1gradpCDbPU,2625,A woman is seen bending over a sink with a small child next to her. The woman and child,A woman is seen bending over a sink with a small child next to her.,The woman and child,gold,swim in more ballet while still speaking to the camera.,begin to pull a bunch of soap from her in a sink and grab things.,play on the floor while many watch on the side.,stick their hands under a sink to wash them off.,3\n16877,anetv_1gradpCDbPU,2626,The woman and child stick their hands under a sink to wash them off. The woman,The woman and child stick their hands under a sink to wash them off.,The woman,gold,puts the girl in a bowl and plays with the man.,stops again and sprays the dishwasher.,puts soap in his hands and rubs them on her legs and rubbing them on.,dries the girls hands in the end and shows her putting lotion on.,3\n16878,anetv_BdKxwCdax_w,19335,He gets down on his knees and stands on his head. He,He gets down on his knees and stands on his head.,He,gold,mounts his toothbrush and picks up a large wooden shaft.,plunges his sword into the pod's mouth.,throws the shovel.,moves around in a circle on his head and spins.,3\n16879,anetv_wFmczV8lv-I,1617,Several other teams approach the bar and they too begin doing the same tricks in their competition. The winner then,Several other teams approach the bar and they too begin doing the same tricks in their competition.,The winner then,gold,appears to win more groups afterwards and starts seated.,begins waving his flag and waving his hand to the crowd.,shows and wins javelin dressing.,does the same and fun in the match.,1\n16880,anetv_wFmczV8lv-I,1616,\"Another man is shown doing various tricks and flips but instead of being above the bar, he starts out below the bar and comes on the top to do a hand stand before finally flipping off. Several other teams approach the bar and they too\",\"Another man is shown doing various tricks and flips but instead of being above the bar, he starts out below the bar and comes on the top to do a hand stand before finally flipping off.\",Several other teams approach the bar and they too,gold,begin doing the same tricks in their competition.,are able to finish the explains he does this what it's won.,tread small red - colored green balls on their feet.,jumped back and flip backwards onto the mat.,0\n16881,anetv_wFmczV8lv-I,1614,\"A group of gymnast enter front a side of a stadium. Next, a gymnast\",A group of gymnast enter front a side of a stadium.,\"Next, a gymnast\",gold,jumps across an enclosed log with ramps and tips.,presses his horse in several correct positions and jumps on the pommel horse.,is shown on the bar and does multiple tricks consisting of flips and handstands then flips off to land and walks off.,mounts a beam as she holds up a trampoline for a routine.,2\n16882,anetv_wFmczV8lv-I,1615,\"As a man runs near him, a replay is shown of the instances where he messed up and then his score is shown. Another man is shown doing various tricks and flips but instead of being above the bar, he\",\"As a man runs near him, a replay is shown of the instances where he messed up and then his score is shown.\",\"Another man is shown doing various tricks and flips but instead of being above the bar, he\",gold,moves back and forth between his legs and legs while bend over with the hammer in hand with him another.,starts out below the bar and comes on the top to do a hand stand before finally flipping off.,does this several more times and throws it over the street.,\"stumbles down onto the end, but does not jump off the set.\",1\n16883,anetv_igwT-3gprOI,1153,A woman is shown talking to the camera with her hands and the camera pointing to a building. She,A woman is shown talking to the camera with her hands and the camera pointing to a building.,She,gold,stands in front of the building doing a several little dances and continues this in front of several buildings and locations.,pours ingredients onto a counter as well as vinegar.,comments about how to fix the castle by mixing the ingredients.,arm then shown installed on a small table in a red chair and a low ceiling behind it is shown.,0\n16884,lsmdc1031_Quantum_of_Solace-84061,17391,\"He fires towards someone, hitting a woman, then scrambles over a barrier onto the racetrack. The chase\",\"He fires towards someone, hitting a woman, then scrambles over a barrier onto the racetrack.\",The chase,gold,looms at the railing as lightning crashes.,\"moves through a courtyard, then through a door and upstairs.\",\"circles around someone's body, as the goat backhands him.\",\"stares off as he struggles, his breathing intensifies.\",1\n16885,lsmdc1031_Quantum_of_Solace-84061,17402,\"Face set grimly, he is now on the same roof as his target. Someone\",\"Face set grimly, he is now on the same roof as his target.\",Someone,gold,arrives at the top of an empty tower.,\"spars with someone, following him through a web site.\",glances back up the aisle toward someone.,\"hides a bracelet on someone's left breast, and tries to pull the trigger.\",0\n16886,lsmdc1031_Quantum_of_Solace-84061,17393,Someone barges into an elderly woman lifting a crate of fruit on a rope. The crate,Someone barges into an elderly woman lifting a crate of fruit on a rope.,The crate,gold,flips as the woman rinses her hands in both her gloved hands.,bats a bird away as she tosses it across the water.,secures people with their crewmembers blaster.,crashes to the ground.,3\n16887,lsmdc1031_Quantum_of_Solace-84061,17389,Someone crashes through some supports. The roof,Someone crashes through some supports.,The roof,gold,covers the mouth of the truck.,is cracked by the thugs.,starts to cave in on someone.,is covered in cobwebs.,2\n16888,lsmdc1031_Quantum_of_Solace-84061,17399,\"He jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings. He\",\"He jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings.\",He,gold,is able runs over landing face one of the back.,\"bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away.\",\"mutant on a rock wall, several can hit the figure together.\",flips time in the air.,1\n16889,lsmdc1031_Quantum_of_Solace-84061,17398,His quarry is on a roof across from and above him. He,His quarry is on a roof across from and above him.,He,gold,moves his hand with electric juicer.,hops out of bed and gazes into space.,throws a swipe card out of the metal keys.,\"jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings.\",3\n16890,lsmdc1031_Quantum_of_Solace-84061,17411,Someone also grabs a rope. The two men,Someone also grabs a rope.,The two men,gold,look at their four - smooth - evenly books.,\"end up facing each other, dangling on ropes at either end of the steel gantry.\",manage to get the herd up at the expo.,\"remain stock still, then gets back to him behind the boat.\",1\n16891,lsmdc1031_Quantum_of_Solace-84061,17406,Someone grabs his arm and hits out with an elbow. Both,Someone grabs his arm and hits out with an elbow.,Both,gold,girls rush up their arms first into the stage.,the doors and his teammates run forward to the violent storm.,follow together with their staff.,fall through a glass roof and onto a scaffold beneath.,3\n16892,lsmdc1031_Quantum_of_Solace-84061,17410,\"It swings, knocking over a pane of glass which shatters, sending vicious shards raining down. The rope gantry swings and the crate of bricks\",\"It swings, knocking over a pane of glass which shatters, sending vicious shards raining down.\",The rope gantry swings and the crate of bricks,gold,plummet as one slips from the sarcophagus.,strikes someone's chest that are severed deafening.,\"running down the staircase, almost into a house of red, cauldron sprinklers.\",falls from the other end.,3\n16893,lsmdc1031_Quantum_of_Solace-84061,17388,The underground chase is as furious as the race above. Someone,The underground chase is as furious as the race above.,Someone,gold,splashes blood on his face while clutching his head.,crashes through some supports.,\"hobbles through, hiding someone's viewpoint.\",keeps his stare fixed down on the three gunmen.,1\n16894,lsmdc1031_Quantum_of_Solace-84061,17395,\"Someone leaps across tiled rooftops, his pursuer following relentlessly. He\",\"Someone leaps across tiled rooftops, his pursuer following relentlessly.\",He,gold,follows the unconscious body into the shadows behind the glider.,kicks him open as they tour the closed door until someone lands next to her.,takes a massive leap between buildings.,snaps off the light and runs away.,2\n16895,lsmdc1031_Quantum_of_Solace-84061,17419,The crowds are dispersing in the Town Square. Police car,The crowds are dispersing in the Town Square.,Police car,gold,is being driven past with people and doubt.,makes its way down a crowded.,is in privet drive passing the palace.,speeds past the plaza of towering ruins detailing painted o. bears.,1\n16896,lsmdc1031_Quantum_of_Solace-84061,17423,M stands looking out from one of the balconies. Someone,M stands looking out from one of the balconies.,Someone,gold,sees someone reach the stage and addresses him.,\", they strut out a door.\",emerges from the range rover and enters through through the building's glass door.,talks to the camera woman.,2\n16897,lsmdc1031_Quantum_of_Solace-84061,17385,\"Someone disarms someone and kicks the gun away, then gets booted to the ground. Someone\",\"Someone disarms someone and kicks the gun away, then gets booted to the ground.\",Someone,gold,lets up off the fire and hurls him into the sky.,goes for the gun and runs off.,pins his handcuffs against a pillar.,\"kicks his palms together again, then stops charging.\",1\n16898,lsmdc1031_Quantum_of_Solace-84061,17408,\"Hanging by one hand, someone tries to pull down the scaffolding beneath his adversary. Someone\",\"Hanging by one hand, someone tries to pull down the scaffolding beneath his adversary.\",Someone,gold,tapes him up with an oar.,falls but grabs onto a rope.,feels his way down his chin.,emerges from the back of a white plane model.,1\n16899,lsmdc1031_Quantum_of_Solace-84061,17415,\"Leg caught in a rope, someone plummets, but is stopped just before hitting the ground near the gun. The gantry\",\"Leg caught in a rope, someone plummets, but is stopped just before hitting the ground near the gun.\",The gantry,gold,is hauled into someone 'back.,is submerged and lands on a passing rope on the back of the ship.,\"turns, moving someone away from the gun, and pulling someone off the scaffold.\",brings a slight smile.,2\n16900,lsmdc1031_Quantum_of_Solace-84061,17397,\"He lands, slides down the tiles, then jumps again, landing heavily on a ledge. His quarry\",\"He lands, slides down the tiles, then jumps again, landing heavily on a ledge.\",His quarry,gold,focused on their back and face!,is on a roof across from and above him.,focuses on a file pipes as someone fires.,catches a glimpse of the rat someone.,1\n16901,lsmdc1031_Quantum_of_Solace-84061,17422,A black Range Rover arrives at a high - rise block of flats. M,A black Range Rover arrives at a high - rise block of flats.,M,gold,swings the car skyward and falls.,\"sign reads, muslim meat, a servant mark a bar over three tables.\",stands looking out from one of the balconies.,\"bus adjusts the altitude, revealing a celebrated district, which is pinned to the front of the race track.\",2\n16902,lsmdc1031_Quantum_of_Solace-84061,17387,\"Someone pounds down spiral stairs and into water at the base of a tower, then dives through an iron gate. Someone\",\"Someone pounds down spiral stairs and into water at the base of a tower, then dives through an iron gate.\",Someone,gold,storms over a railing then activates a handle.,fills a little brass cup with someone and surrounds it.,gazes off in a bright light.,ignores the stairs and takes a flying leap after him.,3\n16903,lsmdc1031_Quantum_of_Solace-84061,17390,\"Amidst the tears and celebrations, someone emerges from a manhole. Someone\",\"Amidst the tears and celebrations, someone emerges from a manhole.\",Someone,gold,\"stops outside and sees someone running across the street military - green, paces.\",barges his way through the throng.,\"flies out of the fireplace and rolls over, clinging to him, still keeping him on his hands.\",removes his vision and crouches to remove his hood.,1\n16904,lsmdc1031_Quantum_of_Solace-84061,17421,\"Blood stains the cellar floor, but the prisoner, someone, is gone. Someone\",\"Blood stains the cellar floor, but the prisoner, someone, is gone.\",Someone,gold,responds with effort to raise his hopes.,\"opens the present, revealing someone.\",stares dispassionately at the scene.,wipes his tray with a towel.,2\n16905,lsmdc1031_Quantum_of_Solace-84061,17417,\"The rogue agent lands on a scaffold tower, as someone pulls at the rope around his leg. He\",\"The rogue agent lands on a scaffold tower, as someone pulls at the rope around his leg.\",He,gold,pulls the curtain aside.,holds his wrists at his side for the first time.,climbs for a gun on the scaffold.,passes to a female officer sprinting up the ramp to the freeway.,2\n16906,lsmdc1031_Quantum_of_Solace-84061,17416,\"The gantry turns, moving someone away from the gun, and pulling someone off the scaffold. The rogue agent\",\"The gantry turns, moving someone away from the gun, and pulling someone off the scaffold.\",The rogue agent,gold,is holding a bag of weapons as he bends slammed.,screws his face into his hands and starts to run away.,\"lands on a scaffold tower, as someone pulls at the rope around his leg.\",\"directs someone to the ground, firing as she staggers forward.\",2\n16907,lsmdc1031_Quantum_of_Solace-84061,17412,\"The two men end up facing each other, dangling on ropes at either end of the steel gantry. They\",\"The two men end up facing each other, dangling on ropes at either end of the steel gantry.\",They,gold,\"trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof.\",walk down onto a ledge and suddenly fall from the retreating figures.,\"stand in a line, cut - dumbly by a emotion.\",run through people bouncing nearby.,0\n16908,lsmdc1031_Quantum_of_Solace-84061,17404,He leaps for a flight of steps dislodging recently. Someone,He leaps for a flight of steps dislodging recently.,Someone,gold,follows and fires as the double agent runs out of sight.,runs to open the planks.,grins at the alien as he huddles over someone.,turns the bolt upside down.,0\n16909,lsmdc1031_Quantum_of_Solace-84061,17407,Both fall through a glass roof and onto a scaffold beneath. Someone's gun,Both fall through a glass roof and onto a scaffold beneath.,Someone's gun,gold,\"remains fixed on it, then turns back to the caboose.\",trails into his side as an older man leaps around him.,steps off the floor as bullets explode around him.,falls to the floor far below.,3\n16910,lsmdc1031_Quantum_of_Solace-84061,17409,Someone falls but grabs onto a rope. It,Someone falls but grabs onto a rope.,It,gold,\"swings, knocking over a pane of glass which shatters, sending vicious shards raining down.\",pulls up outside the pier and pulls into the royal harbor.,sneaks up back to a wounded someone.,sails in the sky.,0\n16911,lsmdc1031_Quantum_of_Solace-84061,17413,\"They trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof. Someone\",\"They trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof.\",Someone,gold,leans amongst the rocks.,falls onto the scaffold.,steps onto a stone bridge then slips under a invisibility cloak.,see his approaching flushing camera.,1\n16912,lsmdc1031_Quantum_of_Solace-84061,17414,\"Someone falls onto the scaffold. Leg caught in a rope, someone\",Someone falls onto the scaffold.,\"Leg caught in a rope, someone\",gold,flies down the ladder to the airlock.,approaches someone in a treading full of white lines.,jumps and aims his rifle.,\"plummets, but is stopped just before hitting the ground near the gun.\",3\n16913,lsmdc1031_Quantum_of_Solace-84061,17396,He takes a massive leap between buildings. He,He takes a massive leap between buildings.,He,gold,\"lands, slides down the tiles, then jumps again, landing heavily on a ledge.\",launches into a larger forest.,\"looks down at the ceiling, mesmerized by the spectators.\",skipping along a walkway overlooking a small suburban pool.,0\n16914,lsmdc1031_Quantum_of_Solace-84061,17401,\"He gets to his feet and jumps from the vehicle onto another ledge, then shins off a drainpipe. Face set grimly, he\",\"He gets to his feet and jumps from the vehicle onto another ledge, then shins off a drainpipe.\",\"Face set grimly, he\",gold,struggles to find himself down by the lowering hatch and grinds up the spout of the blades.,kicks someone over his back and she knocks his abdomen.,steps back into the clearing.,is now on the same roof as his target.,3\n16915,lsmdc1031_Quantum_of_Solace-84061,17405,\"Someone pulls on the bell ropes, then heads up to the belfry, gun up and ready. Someone\",\"Someone pulls on the bell ropes, then heads up to the belfry, gun up and ready.\",Someone,gold,skulks through the streets and shows off where he comes back.,grabs his arm and hits out with an elbow.,\"talks to our mother; several people stand around him, putting each arms in a line.\",\"takes out his hand, sets it down the box and checks someone's stall.\",1\n16916,lsmdc1031_Quantum_of_Solace-84061,17420,\"Police car makes its way down a crowded. Covered in dust, someone\",Police car makes its way down a crowded.,\"Covered in dust, someone\",gold,emerges from the steel breastplate.,strides through the crowds towards the wooden gate in the tunnel.,\"looks around, blinking images of people.\",seems irritated and walks out of the room.,1\n16917,lsmdc1031_Quantum_of_Solace-84061,17400,\"He bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away. He\",\"He bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away.\",He,gold,reflects on him as he enters.,shows three clearance names on the wall.,jumps from a window onto the roof of a bus.,\"pours in the figure of someone, and smokes the joint.\",2\n16918,lsmdc1031_Quantum_of_Solace-84061,17418,He climbs for a gun on the scaffold. Someone,He climbs for a gun on the scaffold.,Someone,gold,bashes back at the dead boy and moves away from his canvas.,leaps closer and leaps onto the back of the plane.,\"turns to see someone walking on the ladder, his head off.\",'s trying to reach the one on the ground.,3\n16919,lsmdc1031_Quantum_of_Solace-84061,17384,\"As m goes down, the horse race starts. Someone\",\"As m goes down, the horse race starts.\",Someone,gold,leaps on the man and grabs the gun.,leans her fist over the back of the huge ark.,brings out its hand.,stops clearing the tops of the bushes beneath the sign.,0\n16920,lsmdc1031_Quantum_of_Solace-84061,17394,The crate crashes to the ground. Someone,The crate crashes to the ground.,Someone,gold,hurls it into a gas tank from the corner of it.,\"leaps across tiled rooftops, his pursuer following relentlessly.\",is dragged free from a cart.,sets up bird finger and shakes it in.,1\n16921,lsmdc1031_Quantum_of_Solace-84061,17392,\"The chase moves through a courtyard, then through a door and upstairs. Someone\",\"The chase moves through a courtyard, then through a door and upstairs.\",Someone,gold,hurries into a cozy living room and grabs a blanket off the sofa.,places the phone on the handcuffs of his wand.,barges into an elderly woman lifting a crate of fruit on a rope.,lands back in his cage.,2\n16922,anetv_wHRHS7_4J_s,17605,A young girl is seen standing ready looking down at a violin. The girl,A young girl is seen standing ready looking down at a violin.,The girl,gold,is then seen playing the violin while moving her hands up and down.,waves her hands around then begins playing a flute.,kicks one out and raises it into the blindfold and then kicks it on the crowd.,continues playing while speaking to the camera.,0\n16923,anetv_wHRHS7_4J_s,17606,The girl is then seen playing the violin while moving her hands up and down. The girl,The girl is then seen playing the violin while moving her hands up and down.,The girl,gold,continues playing and ending with her.,continues playing the instrument and ends by looking to the camera.,ends and continues to play the guitar on her hands to end the music.,continues spinning around and finishes moving while holding up the drumsticks.,1\n16924,anetv_71vVRQ4l8OI,3376,Several older men man runs into frame to check on the gymnast in back while the man on the bars continues his routine. The athlete,Several older men man runs into frame to check on the gymnast in back while the man on the bars continues his routine.,The athlete,gold,does a back flip and finishes his routine while several others run into frame.,\"lassos of the trainer ropes, misses and lands on one knee before jumping up.\",\"continues playing, practicing - stilts in and out of frame.\",\"dismounts, jump on the bar, and drops the rope all over the mat.\",0\n16925,anetv_71vVRQ4l8OI,3375,A gymnist is seen pushing himself up onto a set of uneven bars while several other people watch on the sidelines as well as perform. Several older men man,A gymnist is seen pushing himself up onto a set of uneven bars while several other people watch on the sidelines as well as perform.,Several older men man,gold,runs into frame to check on the gymnast in back while the man on the bars continues his routine.,are shown pounding the wood doing tricks and jumping off their arms and hanging free cloaks.,shown hitting the ma and bouncing by swinging around tuning one another.,jumps and kicks several times as well as watching on the side.,0\n16926,anetv_qPZwXF1Xcpw,13593,\"The camera pans over a grass field surrounded by a track, with people doing indistinct things in the background. A man\",\"The camera pans over a grass field surrounded by a track, with people doing indistinct things in the background.\",A man,gold,is shown engaging in shot put.,stands with the man in red and shows the skateboard.,is demonstrating features to put an instruction website on his laptop.,is shown walking in front of a large bookshelf and showing how to edge it up.,0\n16927,anetv_qPZwXF1Xcpw,13594,A man is shown engaging in shot put. Judges,A man is shown engaging in shot put.,Judges,gold,measure the man's throw.,are shown practicing to demonstrate but hit the ball directly and do it again.,file down on papers.,move hoop up another ceiling of the room.,0\n16928,anetv_qPZwXF1Xcpw,13595,Judges measure the man's throw. The audience,Judges measure the man's throw.,The audience,gold,crazily waits for her together and breaks to dance quite several times.,closes and claps while moving on a swing set.,holds the trophy ring as the camera spins around.,is shown clapping as the man receives congratulations from people nearby.,3\n16929,anetv_L0QdLXym4F4,15772,The jumps down at the end of the monkey bars and then jumps up and down and gives a high five to the excited woman filming her. The lady behind the camera then,The jumps down at the end of the monkey bars and then jumps up and down and gives a high five to the excited woman filming her.,The lady behind the camera then,gold,jumps back in her arms and throws the pinata.,climbs out of her car to jump from the open onto the balcony and goes down the sidewalk.,walks over and pans to the little boy who is now at the monkey bars and holds a conversation with him.,\"performs many routine, and shows while finishing her routine.\",2\n16930,anetv_L0QdLXym4F4,15771,A lady is filming a girl and a boy who are outdoors at a park playground. The young girl,A lady is filming a girl and a boy who are outdoors at a park playground.,The young girl,gold,hangs an goes across the monkey bars using her arms while the young boy stands behind rails and watches.,\"stretches, trying to prevent the boy from kicking her swinging.\",is on the rake at the playground.,is holding up the camera and dancing her little girl with her finger in the air.,0\n16931,anetv_5R3h6lxne90,13854,Another news anchor also talks about the same lenses and how it has become a dangerous trend among teenagers. The lady news anchor,Another news anchor also talks about the same lenses and how it has become a dangerous trend among teenagers.,The lady news anchor,gold,reports on how to prepare the camera.,talks and the woman shows how she folded a part of the braiding.,comes back with the male news anchor to continue the program.,talks how to talk about what you will need.,2\n16932,anetv_5R3h6lxne90,13849,\"There are two news anchors, a lady and a gentleman both dressed in black presenting a news section. The lady\",\"There are two news anchors, a lady and a gentleman both dressed in black presenting a news section.\",The lady,gold,is holding two small cards in her hands as she talks about the product to the viewers.,continues dancing and begins how to tear off the ice from the mans feet.,teaches the person to guide her.,stands in a short cage while talking and then across to the audience dressed in a red shirt.,0\n16933,anetv_5R3h6lxne90,13853,There's a commercial shown where the same lenses are worn by several people to show how it can be used. a doctor in a lab coat,There's a commercial shown where the same lenses are worn by several people to show how it can be used.,a doctor in a lab coat,gold,\"talks about the lenses too, while people are showing how to use them.\",uses a cloth to cleans the cheeks of the dog.,is entering a shop and gardening in front of a large door.,is talking in front of a washing machine while a woman is sitting beside him.,0\n16934,anetv_5R3h6lxne90,13851,\"There is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes. They\",\"There is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes.\",They,gold,are now applying resistance for being in a construction site.,is also shown in a table sitting on black contacts.,are talking and discussing about the lenses and how it works.,are placed around each and take off some contact makeup.,2\n16935,anetv_5R3h6lxne90,13852,They are talking and discussing about the lenses and how it works. There,They are talking and discussing about the lenses and how it works.,There,gold,injury are listed at time's time.,'s a commercial shown where the same lenses are worn by several people to show how it can be used.,has been numerous memories of times in different places.,are various exercises about their actions and flooding back thoroughly.,1\n16936,anetv_5R3h6lxne90,13850,The lady is holding two small cards in her hands as she talks about the product to the viewers. There,The lady is holding two small cards in her hands as she talks about the product to the viewers.,There,gold,in the middle the video begins to make.,sits on a bike with fronts.,laughs and holds the camera.,\"is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes.\",3\n16937,anetv_vw065HaGq3I,16606,A friend combs the woman's long hair. A friend,A friend combs the woman's long hair.,A friend,gold,attempts to tear hair.,swigs from iron woman's hair.,braids the woman's hair while she sits.,braids the braids with her hair like a stick.,2\n16938,anetv_vw065HaGq3I,16603,A woman stands in front of a vanity mirror and brushes her hair. The woman stands up from a chair and her hair,A woman stands in front of a vanity mirror and brushes her hair.,The woman stands up from a chair and her hair,gold,flows over the backrest.,has become poured on the camera.,begins to tap into wall.,is shown in one hand.,0\n16939,anetv_vw065HaGq3I,5586,A woman with a very long black hair is combing her hair in front of the mirror. She,A woman with a very long black hair is combing her hair in front of the mirror.,She,gold,continues brushing her hair using a long razor.,finishes with the ball before her ball and a woman runs over.,holds her and tight on her hair.,stands up from a orange chair showing her very long hair and put something on the window.,3\n16940,anetv_vw065HaGq3I,16604,The woman stands up from a chair and her hair flows over the backrest. The long hair,The woman stands up from a chair and her hair flows over the backrest.,The long hair,gold,\"shows a bun of red, haircut and bangs.\",is tied up into a bun.,is presented with a pink comb attached to a man's hair.,has straggly blonde hair from her top standing in front of the camera.,1\n16941,anetv_vw065HaGq3I,16605,The long hair is tied up into a bun. A friend,The long hair is tied up into a bun.,A friend,gold,combs the woman's long hair.,grabs a board and tosses it into a boat.,is now at a table resting along the edge of the car with other people come out.,is wears flags in seated major.,0\n16942,anetv_vw065HaGq3I,5587,She stands up from a orange chair showing her very long hair and put something on the window. Another person,She stands up from a orange chair showing her very long hair and put something on the window.,Another person,gold,\"starts to fix, comb and braid her very long hair.\",is shown driving down a table using the pedals as she sprawls across.,is seen standing in a lit line while looking around with a really pretty pose.,is seen painting it on a hair holder that is applying itself to the man's hair.,0\n16943,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18797,\"Near a lake, he stops and quickly dismounts. He\",\"Near a lake, he stops and quickly dismounts.\",He,gold,forms a forearm over a veteran's uniform.,takes off his top hat and starts to undo his coat.,\"stares at this, then realizes he is going to move in toward it.\",lifts the wooden man hands up beneath times onto the ground as he swings around the dial.,1\n16944,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18796,\"Then suddenly, he sets the horse in motion again and gallops onwards. Near a lake, he\",\"Then suddenly, he sets the horse in motion again and gallops onwards.\",\"Near a lake, he\",gold,cuts through small pieces of abandoned plants.,stops and quickly dismounts.,springs out of the beat as he is spinning.,finds someone's suv.,1\n16945,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18813,She turns to see someone striding out of the woods towards her. Someone,She turns to see someone striding out of the woods towards her.,Someone,gold,kisses the horses legs and leads her into the carriage.,touches someone's jaw and backs away.,\", someone gets her purse, grinding a blade into her belly, then hands it to her.\",stops dead in his tracks.,3\n16946,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18810,His groom leads the horse behind him. The groom,His groom leads the horse behind him.,The groom,gold,cups his hands in his hands.,\"walks toward his birthday party, beside the family members going back on etc in bunches of geese.\",looks out a mirror as a small nurse hurriedly exits the water with ease.,\"goes off in one direction, someone in the other.\",3\n16947,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18802,\"It's a likeness of someone, staring proudly out at them. Outside, someone\",\"It's a likeness of someone, staring proudly out at them.\",\"Outside, someone\",gold,notices another lying leaning against a roof.,stands on a site.,has now taken off his frock coat.,runs a finger along his nose.,2\n16948,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18798,\"Inside, the tour of someone continues. The housekeeper\",\"Inside, the tour of someone continues.\",The housekeeper,gold,\"leads them into a magnificent long hall, lined with paintings on one side and windows on the other.\",closes in throughout the reverend.,navy letters and the bus runs into scene.,opens a pair of.,0\n16949,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18800,She stops in front of one of the paintings. Someone,She stops in front of one of the paintings.,Someone,gold,gazes up at the portrait.,demonstrates how to study the letter.,sings in the mirror before her.,eyes the pole and flaps her fingers like a bug.,0\n16950,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18804,\"Then he unbuttons his waistcoat and slips it off. Inside, someone\",Then he unbuttons his waistcoat and slips it off.,\"Inside, someone\",gold,\"places the alien in the chest, blown out the last piece of the cheroot, and bats it along with the probe.\",lies prone on the rope with his head hung painfully.,shuffles down a barbell with blood on his hands.,is still gazing up at his portrait.,3\n16951,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18803,\"He lays it on the grass, sits on it, and undoes his cravat. Then he\",\"He lays it on the grass, sits on it, and undoes his cravat.\",Then he,gold,unbuttons his waistcoat and slips it off.,dabs the wax onto his face to protect his face.,grabs the rake again and leaves the yard raking the lawn into it.,starts after the doors of the pursuing drawn.,0\n16952,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18812,\"Someone is also making her way down to the lake, lost in thought. She\",\"Someone is also making her way down to the lake, lost in thought.\",She,gold,walks down the back of the cafe.,\"falls out suddenly night at night, is a deep pale and flannel orange dress.\",turns to see someone striding out of the woods towards her.,\"approaches a smartly dressed man, who stands in a sitting room of a drawing room.\",2\n16953,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18794,\"Astride it is someone, dressed elegantly in top hat and frock coat. Bringing the horse to a halt, he\",\"Astride it is someone, dressed elegantly in top hat and frock coat.\",\"Bringing the horse to a halt, he\",gold,\"stares from the hilltop, over at someone, which can just be glimpsed through the trees.\",\"takes off her pale green dress, revealing no coat.\",goes down the aisle and approaches the row of men home in wrought - iron bar.,\"speaks to the steward as his hand gently crunches the barge, holding them untouched.\",0\n16954,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18811,\"He makes his way down the hill, towards the large lake fronting someone, its classic lines reflected in the still waters. Someone\",\"He makes his way down the hill, towards the large lake fronting someone, its classic lines reflected in the still waters.\",Someone,gold,reaches up and grabs something inside as someone falls back across his board.,'s friends exit the gallery.,looks at someone as he sneezes softly.,\"is also making her way down to the lake, lost in thought.\",3\n16955,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18799,\"The housekeeper leads them into a magnificent long hall, lined with paintings on one side and windows on the other. She\",\"The housekeeper leads them into a magnificent long hall, lined with paintings on one side and windows on the other.\",She,gold,picks up the phone and looks at someone's letter.,stops in front of one of the paintings.,peeks through the anteroom to the other team.,crouches up to someone.,1\n16956,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18806,\"Steeling himself, he dives in. He\",\"Steeling himself, he dives in.\",He,gold,goes to the window.,\"plunges down into the murky, green waters, then begins to swim with long, effortless strokes.\",leaps over the railing and runs.,\"hears, screams, gets rough.\",1\n16957,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18809,\"Someone is striding towards someone, his wet shirt clinging to his broad chest. His groom\",\"Someone is striding towards someone, his wet shirt clinging to his broad chest.\",His groom,gold,turns a handful of bugs off stares.,now is neatly trimmed of dogs grooming their seats.,leads the horse behind him.,is standing at prince beach.,2\n16958,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18801,Someone gazes up at the portrait. It,Someone gazes up at the portrait.,It,gold,wedges her wand into her father's stomach.,\"'s a likeness of someone, staring proudly out at them.\",sees two guards mounted in the panels of someone empire.,is now changed into starting state.,1\n16959,lsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18795,\"Bringing the horse to a halt, he stares from the hilltop, over at someone, which can just be glimpsed through the trees. He\",\"Bringing the horse to a halt, he stares from the hilltop, over at someone, which can just be glimpsed through the trees.\",He,gold,can not see someone and not see her.,\"breathes deeply, as if trying to come to a decision.\",\"has climbed and someone, carry their baby and carry him away as someone continues to the cottage.\",reluctantly lowers the ball and stands as he holds it to the back of the boat.,1\n16960,lsmdc0033_Amadeus-66973,2237,They tug and pat him. But he has eyes for only one man - he,They tug and pat him.,But he has eyes for only one man - he,gold,can barely stand up.,points at his feet.,\"looks about him, searching for him and then finds him.\",\"gathers himself pack, and leans back with his hands and aims.\",2\n16961,lsmdc0033_Amadeus-66973,2232,\"Someone, in a mythological Persian costume, is bowing to the rapturous throng; below her is someone. We\",\"Someone, in a mythological Persian costume, is bowing to the rapturous throng; below her is someone.\",We,gold,\"join a close - up stone, in spanish.\",are a dancer concentrating on he's defiant.,spots the oriental boy entering out of a door in a spanish marching suit in a dimly lit plaza.,\"see people, all applauding.\",3\n16962,lsmdc0033_Amadeus-66973,2235,\"Someone, smiling adoringly, gives him a deep curtsey, and he raises her up. All\",\"Someone, smiling adoringly, gives him a deep curtsey, and he raises her up.\",All,gold,\"lowers his stare, lowers his eyes, and retreats.\",\"lowers his head and looks at someone, then stares up at her as she kisses him.\",has to make up.,want to shake his hand.,3\n16963,lsmdc0033_Amadeus-66973,2233,\"We see people, all applauding. Behind him, seated,\",\"We see people, all applauding.\",\"Behind him, seated,\",gold,see a marching band and run from the field.,are someone and the three girls we saw before in someone's apartment.,\"is on the table next to someone conference - old cellophane paper, open - talking about something meeting outdoors.\",play with his father's lap.,1\n16964,lsmdc0033_Amadeus-66973,2234,\"Someone places the chain around his neck. Someone makes to kiss his hand, but someone\",Someone places the chain around his neck.,\"Someone makes to kiss his hand, but someone\",gold,does not draw him back.,fights back so she starts to strap the gun and chains at his neck.,\"restrains him, and passes on.\",cups his head on someone's shoulder.,2\n16965,lsmdc0033_Amadeus-66973,2236,All want to shake his hand. They,All want to shake his hand.,They,gold,take her coins from each other and embrace each other.,tentatively get down two stairs and begin to leave the bar.,tug and pat him.,go to claim cliff top.,2\n16966,anetv_aFdYbgmbOeY,15050,\"Someone grabs a rubix cube off of their desk and begin to solve it. They are moving so fast, they\",Someone grabs a rubix cube off of their desk and begin to solve it.,\"They are moving so fast, they\",gold,put it down for a split second.,\"trudge at the opposite side, on either side in filing wallpaper that bounce under the water.\",zoom out from the chair over the end.,joust the whole time as they proceed into the living room.,0\n16967,anetv_aFdYbgmbOeY,15051,\"They are moving so fast, they put it down for a split second. They\",\"They are moving so fast, they put it down for a split second.\",They,gold,\"pick it back up quickly and get back to it, moving so fast again.\",and then they pull back.,returns to its starting position to celebrate.,jumps out of the bus line.,0\n16968,anetv_CSDApI2nHPU,4156,A camera pans around a room and leads into a woman washing dishes in a sink. She,A camera pans around a room and leads into a woman washing dishes in a sink.,She,gold,continues washing the dishes and laughing to the camera.,\"is also showing high dishes, riding dishes and pans over to the girl as he speaks.\",uses a wiper to wash her face while speaking to the camera and continuing to wash the dishes.,continues taking out the rag and shows pictures as well as her.,0\n16969,anetv_MHo5kioyrFM,18570,A person walks into frame speaking to the camera and holding up a box and various tools. She then,A person walks into frame speaking to the camera and holding up a box and various tools.,She then,gold,cuts parts of the bush with the tool and wipes them down.,lays down on the machine and continues ironing.,begins wrapping the box with a bow.,begins to cut small pieces with black tape.,2\n16970,anetv_MHo5kioyrFM,18571,She then begins wrapping the box with a bow. She,She then begins wrapping the box with a bow.,She,gold,swings the parchment adorned holding the spoon and then cuts the wood with a nice size.,slips the wrapping paper into the pumpkin and cuts the paper.,moves the end of a house paper and starts to take it from her hands.,continues wrapping and speaking to the camera.,3\n16971,anetv_MHo5kioyrFM,17013,Several baskets are seen sitting on the followed by a woman stepping into frame and holding up the boxes while speaking to the camera. She,Several baskets are seen sitting on the followed by a woman stepping into frame and holding up the boxes while speaking to the camera.,She,gold,pushes the mop through and yells to the woman and continues to speak to the camera.,see the girl talking while climbing the horse speaking in the end as well as shots of her climbing out while riding on bulls.,holds up several more objects and then wraps a bow around the box and presents it in the end.,points to the floor as well as close ups of her crunches and continues spinning.,2\n16972,lsmdc3056_PUBLIC_ENEMIES-2961,844,\"Someone stands and holds her chair as she gets up. Now, they\",Someone stands and holds her chair as she gets up.,\"Now, they\",gold,face a coat check counter.,\"approach a building, drinks about a dozen among the beautiful, arched hillside.\",join his daughter while the blonde sleeps on a sofa.,ride in the passenger compartment.,0\n16973,anetv_NfjeG6AsoJA,13360,Kids are swingin in the swing on a side. little kid,Kids are swingin in the swing on a side.,little kid,gold,takes the rod from the monkey bars and collects them on the playground.,is holding two cats.,stands on the edge of the slide.,is standing in front of the couch talking in front of a jump track.,2\n16974,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11563,\"The thug collapses and someone finishes him off. Inside, someone\",The thug collapses and someone finishes him off.,\"Inside, someone\",gold,turns to his friend.,\"reaches the top and hurries on to the roof, with his pistol aimed.\",finds someone amid the rubble.,scans his apartment with a sad smile.,1\n16975,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11547,\"Inside, the hoses continue releasing gas. As the bald thug fires, someone\",\"Inside, the hoses continue releasing gas.\",\"As the bald thug fires, someone\",gold,presses her knuckles to the control panel.,reaches for his wand.,tosses a grenade to his dad.,sneaks up at his fallen mother.,2\n16976,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11560,\"Someone continues sprinting up the stairs, as someone climbs into the cargo hold. He\",\"Someone continues sprinting up the stairs, as someone climbs into the cargo hold.\",He,gold,\"stands on his escape, breathless.\",puts his sailboat through another wave.,crawls forward with a pistol in his hand.,pauses to join the graveyard owner.,2\n16977,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11545,\"Someone waves a hand signal to his son. Outside, someone\",Someone waves a hand signal to his son.,\"Outside, someone\",gold,spots a boy in a suit.,hurries up the helicopter's loading ramp.,holds a palm chart show a card on a desk and a uniformed guard guard squats down and enters a suv.,sees someone dance on people's gathered swimming ground.,1\n16978,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11541,The gunfire pins them down and someone scampers across the room. Someone,The gunfire pins them down and someone scampers across the room.,Someone,gold,falls into the water.,tries to bellows poison under him.,\"quickly fires, then retracts behind a cement pillar.\",throws blood for someone!,2\n16979,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11544,Someone runs off as someone fires. Someone,Someone runs off as someone fires.,Someone,gold,leaps from the elevator's roof and races into the office.,grabs her wand with both hands and strikes a tree.,waves a hand signal to his son.,walks up and touches it.,2\n16980,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11555,Someone sprints up the stairs as his father exits the building. Someone,Someone sprints up the stairs as his father exits the building.,Someone,gold,listens to the phone and drives his sword above his head.,sees the helicopter still on the ground.,watches someone advance then comes to his stop.,leads a porter onto the street and grabs someone's jacket.,1\n16981,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11540,They take cover as the bald thug pops out. The gunfire pins them down and someone,They take cover as the bald thug pops out.,The gunfire pins them down and someone,gold,bounces heavily before dropping the rocket landing on her arm.,tumbles out of his car.,speeds up after them.,scampers across the room.,3\n16982,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11543,\"Someone shoots quick bursts around the pillar and his father joins in. Emptying his clip, someone\",Someone shoots quick bursts around the pillar and his father joins in.,\"Emptying his clip, someone\",gold,grabs someone's wand from its position.,pushes the calendar on them.,tosses his rifle aside.,cuts to sir someone who blocks them.,2\n16983,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11552,He grabs a weapon beside one of his dead men. Someone,He grabs a weapon beside one of his dead men.,Someone,gold,\"looks alarmed, as someone drives and runs through a meadow area.\",rides up to the tree in the sleeping quarters.,rips off his jacket and pulls a pistol from his waistband.,watch with his deaf ear.,2\n16984,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11536,\"Someone head - butts someone, then quickly pulls him back in. He\",\"Someone head - butts someone, then quickly pulls him back in.\",He,gold,juggles a rope suspended around his neck.,shoves the old man toward the entrance.,glances at someone who stares at someone's posts.,pierces his armpit off someone's neck.,1\n16985,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11565,\"He grabs the steel handle and tugs. Stepping back, someone\",He grabs the steel handle and tugs.,\"Stepping back, someone\",gold,struggles to free the bags car.,takes an step out and pulls off his stick.,aims at the door.,puts his lips on the door of the tank.,2\n16986,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11556,\"Someone sees the helicopter still on the ground. Shielding his face, he\",Someone sees the helicopter still on the ground.,\"Shielding his face, he\",gold,rushes toward the loading ramp as the rotor intensifies.,goes to her and starts down the stairs.,looks at someone's stoic features and nods his head.,turns to watch someone and his agents run for the boat.,0\n16987,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11551,\"Bullets ricochet off the forklift, as it creeps toward the bald thug. Someone\",\"Bullets ricochet off the forklift, as it creeps toward the bald thug.\",Someone,gold,returns fire from behind the pillar.,tosses it on the fallen guard.,\"swings faster, knocking someone onto a swirls below.\",steps to the water plane.,0\n16988,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11557,\"Shielding his face, he rushes toward the loading ramp as the rotor intensifies. Leaping up, someone\",\"Shielding his face, he rushes toward the loading ramp as the rotor intensifies.\",\"Leaping up, someone\",gold,dodges easily as sparks fly away from the sky's windscreen.,grabs on to the open ramp door as the chopper slowly lifts off.,finds a huge soccer ball which can be seen in the distance.,finds himself silhouetted against the fractured egg around the car.,1\n16989,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11553,Someone rips off his jacket and pulls a pistol from his waistband. He,Someone rips off his jacket and pulls a pistol from his waistband.,He,gold,\"takes out a covered cut jacket, holds it between the support canvas.\",takes two styrofoam glass and sinks to the floor.,\"dons it, a video shows someone a dead or smoking cell with.\",runs through the flaming room in his dirty and bloodstained white t - shirt.,3\n16990,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11538,\"Outside, someone yanks the bald thug's weapon away and runs toward the building. Someone\",\"Outside, someone yanks the bald thug's weapon away and runs toward the building.\",Someone,gold,\"forces someone forward at gunpoint, as they proceed on the illuminated path from the vault.\",picks the other offstage back.,steals the ball and lands on his feet.,\"slides the van down onto the landing, followed by him trying to reach his mobile.\",0\n16991,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11537,\"He shoves the old man toward the entrance. Outside, someone\",He shoves the old man toward the entrance.,\"Outside, someone\",gold,crouches before the oar and pulls out a gold chamber of wooden tether.,cradles his son's grim face as he listlessly obscured by a hooded hooded hummer.,yanks the bald thug's weapon away and runs toward the building.,steps up behind someone and rips off their designer clothes.,2\n16992,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11542,\"Someone quickly fires, then retracts behind a cement pillar. As the bald shirtless thug fires wildly, bullets\",\"Someone quickly fires, then retracts behind a cement pillar.\",\"As the bald shirtless thug fires wildly, bullets\",gold,rips from the skin burns in the hot guys.,\"pierce the hoses, spraying chemicals into the air.\",discards his friend's ankle.,\"rip through the skin of black, white balloons and cable car.\",1\n16993,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11550,Someone sits in the chopper's cockpit. Bullets,Someone sits in the chopper's cockpit.,Bullets,gold,\"ricochet off the forklift, as it creeps toward the bald thug.\",pounces over him as he staggers.,\"steps cautiously past one of the lower decks, then turns a corner and peers between the warehouses at a window leading ahead.\",wait out of the right window.,0\n16994,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11564,\"Through a small window, someone peers into the cockpit at someone and the pilot. He\",\"Through a small window, someone peers into the cockpit at someone and the pilot.\",He,gold,sees someone blinking the smoke.,swipes the sheriff furiously.,spots people sprawled out of the dock.,grabs the steel handle and tugs.,3\n16995,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11539,\"Stepping through the rounded vault entrance, someone readies his weapon. His eyes\",\"Stepping through the rounded vault entrance, someone readies his weapon.\",His eyes,gold,find zombies in the lobby.,scan the large cluttered room.,widen and he lifts its head slightly.,fall on the monitor.,1\n16996,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11558,\"Leaping up, someone grabs on to the open ramp door as the chopper slowly lifts off. The aging detective\",\"Leaping up, someone grabs on to the open ramp door as the chopper slowly lifts off.\",The aging detective,gold,\"leans against the wall, manipulates his wrists, offering the phone to the ear he shuts it.\",appears in someone's office window.,strides his suitcase through two vendors.,struggles to pull himself up.,3\n16997,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11562,\"As someone army - crawls beneath the truck, a thug enters by the front end. Someone\",\"As someone army - crawls beneath the truck, a thug enters by the front end.\",Someone,gold,rush down to a black puddle from the tree and post it on the garbage with enormous prop - waggling graffiti.,knocks the jigger of beer away at his side as he reaches out to see the apple.,stands up as he half rises.,aims at his legs.,3\n16998,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11554,He runs through the flaming room in his dirty and bloodstained white T - shirt. Someone,He runs through the flaming room in his dirty and bloodstained white T - shirt.,Someone,gold,\"makes their way down the passageway, someone steps inside as the robber skates out.\",walks closer to a chair with his knees on a rail between the two supports.,weaves through traffic past a highway near an neat line lining the sidewalk.,sprints up the stairs as his father exits the building.,3\n16999,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11549,\"Peeking out, someone notices the small forklift. Someone\",\"Peeking out, someone notices the small forklift.\",Someone,gold,takes off his doctors hat and rubs it over his cardigan as he sits in the doorway.,switches the monitor down.,spies someone's picture on tv.,sits in the chopper's cockpit.,3\n17000,lsmdc0021_Rear_Window-58140,18540,The camera pans her over to him. She,The camera pans her over to him.,She,gold,shakes the ice off her hand and walks away.,indicates a croquet ball.,continues dancing while looking back and forth.,\"takes out the thermometer, looks at it.\",3\n17001,lsmdc0021_Rear_Window-58140,18542,She gets down the thermometer. She,She gets down the thermometer.,She,gold,presses into the elevator and leans closer to him.,helps him stand on one foot.,rinses the soap off with long squeegee.,opens the front door of her car.,1\n17002,lsmdc0021_Rear_Window-58140,18537,\"She opens the bag, takes out some medical supplies: a thermometer, a stop watch, a bottle of rubbing oil, a can of powder, a towel. Defeated, he\",\"She opens the bag, takes out some medical supplies: a thermometer, a stop watch, a bottle of rubbing oil, a can of powder, a towel.\",\"Defeated, he\",gold,reaches for his gun.,moves it in front of her behind the desk and pours it into the office bowl.,\"gets out of the car, heading.\",puts the thermometer back into his mouth.,3\n17003,lsmdc0021_Rear_Window-58140,18543,She helps him stand on one foot. Then she,She helps him stand on one foot.,Then she,gold,strolls closer to someone.,helps him off with his pajama top.,swishes him in half.,\"stands, her head hit the ground.\",1\n17004,lsmdc0021_Rear_Window-58140,18539,Someone goes on with her work. The camera,Someone goes on with her work.,The camera,gold,moves across the station as she stares at the beauty.,pans her over to him.,looks down toward the camera.,\"follows someone's driveway, holding her panties, and looks about it.\",1\n17005,lsmdc0021_Rear_Window-58140,18547,\"Someone's head, half - buried in the sheet, is large in the fore - ground. Beyond him someone\",\"Someone's head, half - buried in the sheet, is large in the fore - ground.\",Beyond him someone,gold,\"has been watching, watching out.\",has brought someone into his room.,looms large and powerful - looking.,\"is with someone's boss, someone, pointing the package to the door.\",2\n17006,lsmdc0021_Rear_Window-58140,18538,\"Defeated, he puts the thermometer back into his mouth. Someone\",\"Defeated, he puts the thermometer back into his mouth.\",Someone,gold,goes on with her work.,puts the raft down over his back.,holds his hood down onto the rail of the train.,lurches to a halt in the gravel.,0\n17007,lsmdc0021_Rear_Window-58140,18544,\"Then she helps him off with his pajama top. He hops one step, then she\",Then she helps him off with his pajama top.,\"He hops one step, then she\",gold,performs a brief tap website.,pinches his backside in the polished right.,\"lowers him, face down, on the divan.\",ends taking off off the tv.,2\n17008,anetv_F7u4kpwhs5g,12292,A group of people are seen riding around on horses swinging sticks. The people,A group of people are seen riding around on horses swinging sticks.,The people,gold,speak to one another and lead into a performing fencing routine and others leading along.,walk back and fourth while others watch on the side.,continue performing stunts with one another and jumping into the distance.,ride back and fourth playing the game with one another.,3\n17009,anetv_F7u4kpwhs5g,9390,Some men are playing polo while riding horses. They,Some men are playing polo while riding horses.,They,gold,ride on a bumpy road on riverside roads.,walk on nearly dead.,begin taking turns and jumping in celebration.,are riding horses on an open field.,3\n17010,anetv_F7u4kpwhs5g,9391,They are riding horses on an open field. They,They are riding horses on an open field.,They,gold,move up onto their elbows and go down down in circles.,chase the ball with their sticks and hit them back and forth.,throw three kites in the ledger.,are trying to build a sand castle.,1\n17011,anetv_F7u4kpwhs5g,12293,The people ride back and fourth playing the game with one another. One scores a goal and they,The people ride back and fourth playing the game with one another.,One scores a goal and they,gold,continue to hold the ball with one another.,perform a spin around when the outcome is shown again still shots.,ride together and wave sticks in the air.,seem to be able to hit the ball.,2\n17012,lsmdc1057_Seven_pounds-98178,4190,Someone walks out into the night. The rain,Someone walks out into the night.,The rain,gold,cascades as a grief - stricken someone strides away from the hospital.,\"is above us, except for his wind clothes.\",wakes with a start.,sets the evening down.,0\n17013,lsmdc1057_Seven_pounds-98178,4201,He presses a button on a digital clock beside his bed. He,He presses a button on a digital clock beside his bed.,He,gold,stays at hers and presses with her back thumb drawing palm.,shines a flash to the kitchen window.,bites his lip as he works his way through to the door ajar.,picks up the phone.,3\n17014,lsmdc1057_Seven_pounds-98178,4189,\"Someone raises a hand helplessly, marches back along the corridor and pushes through the double doors. Someone\",\"Someone raises a hand helplessly, marches back along the corridor and pushes through the double doors.\",Someone,gold,dashes off into a layer of silk netting.,\"is moving through some french doors into the hall at the clinic, massaging her legs.\",has seen a police van in house.,walks out into the night.,3\n17015,lsmdc1057_Seven_pounds-98178,4199,\"Regaining his composure slightly, someone reaches for the phone on his bedside cabinet and makes a call. Someone\",\"Regaining his composure slightly, someone reaches for the phone on his bedside cabinet and makes a call.\",Someone,gold,is woken by the ringing.,unlocks the door then halts.,lifts up her backpack.,\"gets up, and gets the doors closed.\",0\n17016,lsmdc1057_Seven_pounds-98178,4193,People lie asleep in each other's arms. Someone,People lie asleep in each other's arms.,Someone,gold,reaches for the phone on his bedside cabinet.,covers his body with a coy smile.,is draped around the cable.,\"notices someone, still in the barber jacket.\",0\n17017,lsmdc1057_Seven_pounds-98178,4200,Someone is woken by the ringing. He,Someone is woken by the ringing.,He,gold,kicks the journals out of the corner.,\"peels out, and slams a door to the dining room tv, then talks to someone.\",presses a button on a digital clock beside his bed.,watches sean rolling his collar.,2\n17018,lsmdc1057_Seven_pounds-98178,4191,\"The rain cascades as a grief - stricken someone strides away from the hospital. As he walks, he\",The rain cascades as a grief - stricken someone strides away from the hospital.,\"As he walks, he\",gold,recovers and follows with their dogs.,rushes through the galley breezeway.,takes his mobile phone from his jeans' pocket and taps in a number.,\"shuts the driver door, then pauses.\",2\n17019,lsmdc1057_Seven_pounds-98178,4198,\"Someone sits on the edge of his bed, panting. Regaining his composure slightly, someone\",\"Someone sits on the edge of his bed, panting.\",\"Regaining his composure slightly, someone\",gold,turns in a circle to create a severe expression.,settles back into the pantry from a masked classes with potatoes on his hands.,reaches for the phone on his bedside cabinet and makes a call.,\"thinks for a moment, then holds up his own wand.\",2\n17020,lsmdc1057_Seven_pounds-98178,4196,\"His expression is slightly glazed, as if consumed by his own sad thoughts. He\",\"His expression is slightly glazed, as if consumed by his own sad thoughts.\",He,gold,looks at it and gazes down into his eyes.,begins making its way up the wooden steps to his desk.,slams the door shut and is suddenly staring blankly in the distance.,\"turns and stares outside, then closes the door.\",3\n17021,lsmdc1057_Seven_pounds-98178,4192,\"As he walks, he takes his mobile phone from his jeans' pocket and taps in a number. People\",\"As he walks, he takes his mobile phone from his jeans' pocket and taps in a number.\",People,gold,lie asleep in each other's arms.,\"recalls in a whistle at the end when she faces him lightly, covering herself again.\",'s team skateboarding and leaves are in a city stands where a guy emerges in the middle of a circular pool.,and someone are framed by the eyes of the big sunlit building where art students sit on the throne - table.,0\n17022,lsmdc1057_Seven_pounds-98178,4195,Someone returns to his motel room and pauses in the doorway. His expression,Someone returns to his motel room and pauses in the doorway.,His expression,gold,hardens as he watches the runway.,\"is slightly glazed, as if consumed by his own sad thoughts.\",is sharp and stiff as he beings at a kitchen stool.,stiff and he calls his hand to the window at the side of the room.,1\n17023,lsmdc1057_Seven_pounds-98178,4194,\"Someone, now sitting up in bed, remains with the phone to his ear and drops his head. Someone\",\"Someone, now sitting up in bed, remains with the phone to his ear and drops his head.\",Someone,gold,returns to his motel room and pauses in the doorway.,sits down in a bed and watches someone rise and alone in the room.,\"freezes and stares, breathing heavily as he slowly faces the house in confusion.\",leaps up onto the floor and eases someone like another hug.,0\n17024,lsmdc1057_Seven_pounds-98178,4197,\"He turns and stares outside, then closes the door. Someone\",\"He turns and stares outside, then closes the door.\",Someone,gold,turns on the bell and hurries over to the road through the rear door.,\"sits on the edge of his bed, panting.\",slides the door closed and steps inside.,\"is silently staring at someone, who shakes his hand as he reaches a table where someone lies on his shoulder.\",1\n17025,anetv_hkpYSfc5Ewc,15726,A gymnast is seen jumping onto a set of uneven bars and performs a gymnastics routine in front of a large crowd. The man,A gymnast is seen jumping onto a set of uneven bars and performs a gymnastics routine in front of a large crowd.,The man,gold,begins spinning around and ends with a gymnasts on the mat.,flips around the beams and ends with him jumping down with his arms up and waving to the crowd.,continues moving along with several hands and leads into the audience up close and others watching.,is seen moving again to the next and ends with his arms up.,1\n17026,lsmdc0009_Forrest_Gump-50356,7417,She sets it down on a table in front of a wealthy white man. Someone's grandmother,She sets it down on a table in front of a wealthy white man.,Someone's grandmother,gold,carries a bowl of shrimp into a dining room.,reaches up and pulls the money from someone's pocket.,watches ahead and drains the remaining wine.,\"sits down, takes his own tablet and begins to decorate the tree.\",0\n17027,lsmdc0009_Forrest_Gump-50356,7418,Someone's grandmother carries a bowl of shrimp into a dining room. She,Someone's grandmother carries a bowl of shrimp into a dining room.,She,gold,skates out of the water to her bra.,stomps the remainder of the meal on the prom table as tears roll down her face.,sets it down on a table in front of a wealthy white man.,\"moves for another, studying the modest girl.\",2\n17028,lsmdc0009_Forrest_Gump-50356,7416,\"Someone's mother, a robust woman in a cook's uniform, carries a bowl of shrimp into a dining room. She\",\"Someone's mother, a robust woman in a cook's uniform, carries a bowl of shrimp into a dining room.\",She,gold,attend her family.,sets it down on a table in front of a wealthy white man.,puts a glass on another table and shakes it.,is being taken by a sheriff.,1\n17029,anetv_8WFB_LUOx4k,190,A camera captures several shots of sites as well as people standing outside drinking and celebrating. One man pulls out a weed and a drone,A camera captures several shots of sites as well as people standing outside drinking and celebrating.,One man pulls out a weed and a drone,gold,appears behind him and gives an eager kiss to the cap.,is shown as well as a can of paint and flips him back over.,is seen flying in the distance.,is then seen grabbing the camera.,2\n17030,anetv_8WFB_LUOx4k,191,One man pulls out a weed and a drone is seen flying in the distance. The people,One man pulls out a weed and a drone is seen flying in the distance.,The people,gold,\"swing with one another holding the rings, just trying to keep the board into.\",attempt to hit the drone and then are seen driving around on a golf cart around other people.,continue to compete with the large group performing occurs on front interior credits.,continue performing various items with waterfall while speaking to the camera.,1\n17031,anetv_8WFB_LUOx4k,192,The people attempt to hit the drone and then are seen driving around on a golf cart around other people. A man shows up in a guerrilla suit and the drone,The people attempt to hit the drone and then are seen driving around on a golf cart around other people.,A man shows up in a guerrilla suit and the drone,gold,is still with with several other people afterwards.,to hit the surf water 4 times and the man runs into the arms on the sand and times at the end.,cuts to a recap of movements.,flies over people playing games and riding around.,3\n17032,lsmdc0004_Charade-47794,15394,\"All the delegates and their aides suddenly turn, surprised, and look at camera. Inside the booth, people\",\"All the delegates and their aides suddenly turn, surprised, and look at camera.\",\"Inside the booth, people\",gold,flood along so the guests dance.,veer off of the well.,can be seen heading for the door in a hurry.,are in scene of a red car.,2\n17033,lsmdc0004_Charade-47794,15393,\"She turns back to the conference, flips a switch and starts speaking into her headset. All the delegates and their aides\",\"She turns back to the conference, flips a switch and starts speaking into her headset.\",All the delegates and their aides,gold,are completely full of plaster.,are alight as the loafers seem quite drunk out.,\"suddenly turn, surprised, and look at camera.\",are brought out a computer.,2\n17034,anetv_aa-bFJZmcko,1527,Various shots of a close up of a bike and a person pointing to the bike in various spots. The person,Various shots of a close up of a bike and a person pointing to the bike in various spots.,The person,gold,moves down and shoveling the driveway.,holds the walls present when looking to the camera and shows more shots of scenes.,continuously adjusts the bike and pans the camera all around it in the end.,continues moving around and ends by looking off into the distance and moving his hands on and continuing to solve it.,2\n17035,lsmdc0053_Rendezvous_mit_Joe_Black-71490,7272,\"He kisses her, they fall into a deep embrace. Someone is struggling with a response, finally, inevitably, he\",\"He kisses her, they fall into a deep embrace.\",\"Someone is struggling with a response, finally, inevitably, he\",gold,tosses someone rigidly and looks away.,drifts into a long silence.,\"grits his teeth with a deep, bony jaw.\",comes out of his room and smiles at someone.,1\n17036,anetv_AoRk69eieek,15811,A man stands by a pole vault rig while a series of vaulters is shown attempting the vault with varying degrees of success. A group of people wearing white uniforms,A man stands by a pole vault rig while a series of vaulters is shown attempting the vault with varying degrees of success.,A group of people wearing white uniforms,gold,are shown to a track from different participation as a woman by the media with spectators.,walk by in the background.,\"are interviewed on camera, who in stilts running in a blue circle to perform an interview by team members.\",are on an official of a shot white jerk and padded stilts.,1\n17037,anetv_AoRk69eieek,15812,A group of people wearing white uniforms walk by in the background. Two people,A group of people wearing white uniforms walk by in the background.,Two people,gold,are static on a stage with some young audience.,enter the building and have suction elbow over a glass.,are playing instruments together.,walk by in the background.,3\n17038,anetv_FtbrPGaINt0,2222,Two women are preparing to do dives into a large pool. They,Two women are preparing to do dives into a large pool.,They,gold,land on the lakeside sitting in the stands.,are throwing ball around a pool table.,are standing beside a curricle watching on the sides.,\"walk forward, pose, then backflip into the pool.\",3\n17039,anetv_FtbrPGaINt0,2223,\"They walk forward, pose, then backflip into the pool. They then\",\"They walk forward, pose, then backflip into the pool.\",They then,gold,perform several martial arts moves.,eat more fish and fish.,\"get out and stand to the side, smiling and hugging at their good scores.\",stop facing each other and smiling.,2\n17040,anetv_FtbrPGaINt0,18405,They stand at the end of the boards in position. They,They stand at the end of the boards in position.,They,gold,backflip into the water while people clap.,pull on the ropes of their new jacket.,line bump into a brick wall.,stand in the magnificent structure.,0\n17041,anetv_FtbrPGaINt0,18404,A female swimmer walks across the diving board alongside another swimmer. They,A female swimmer walks across the diving board alongside another swimmer.,They,gold,swim along to the first tuber.,stand at the end of the boards in position.,swim in the pool and they splash backwards over the diving board.,swim next to the water's surface.,1\n17042,anetv_mqUJEX9qk8E,15316,Men and a woman wearing Kufiyyas on their heads are standing on dessert next to horses. dessert with mountains in the distance is shown and the men,Men and a woman wearing Kufiyyas on their heads are standing on dessert next to horses.,dessert with mountains in the distance is shown and the men,gold,\"are shown walking around the country residence, sharpening the flower.\",are standing next to a kids ride the horses adn are going in the desert.,is shown up before gesturing.,are making sand castles in the sand.,1\n17043,anetv_bf3ac4bkIIo,15552,Various pictures of ingredients are shown with text across the screen and leads into a woman washing and peeling lemons. She,Various pictures of ingredients are shown with text across the screen and leads into a woman washing and peeling lemons.,She,gold,rolls the lemons on a table and cut them into halves.,mixes up all along the noodles as well as supplies.,turns around and pouring water all over the table while looking at the camera.,uses a set of cookies to cut into a blender.,0\n17044,anetv_bf3ac4bkIIo,15554,Then she juices the lemon and pours the mixture into a large pot with sugar. She,Then she juices the lemon and pours the mixture into a large pot with sugar.,She,gold,\"pours various juice into a large glass, then pours the lemonade in a shaker.\",\"takes off the bottle and shakes it, puts the cake onto her lap and adds five tongs.\",\"stirs stirs, then stirs the egg mixture in and puts the baking spoon in the oven.\",\"boils the pot and pours the final result into several glasses, enjoying a sip in the end.\",3\n17045,anetv_bf3ac4bkIIo,15553,She rolls the lemons on a table and cut them into halves. Then she,She rolls the lemons on a table and cut them into halves.,Then she,gold,wipes it down with the vinegar and garnishes it to the right side where the cake is completed.,juices the lemon and pours the mixture into a large pot with sugar.,can brush the cut with a knife she then cuts up bread to cut them in half and cuts the tomato.,places a nail on her left arm and puts it in a purple bag.,1\n17046,lsmdc3035_INSIDE_MAN-1710,8716,\"Esu member is toting a bunker. Meanwhile, more esu guys\",Esu member is toting a bunker.,\"Meanwhile, more esu guys\",gold,use orange tape to cordon off a perimeter.,walk upside down a plastic seats and shoot across the atrium at end.,enter on a cell.,drag a penguins out of the calmer office.,0\n17047,lsmdc3035_INSIDE_MAN-1710,8717,\"Meanwhile, more esu guys use orange tape to cordon off a perimeter. Someone\",\"Meanwhile, more esu guys use orange tape to cordon off a perimeter.\",Someone,gold,approaches the oldest friend.,waves the vehicle forward.,notices someone's eight fifteen finger in.,throws someone into a crate.,1\n17048,lsmdc0032_The_Princess_Bride-66527,17426,\"Again, someone does n't seem to mind, does n't even feel it. Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he\",\"Again, someone does n't seem to mind, does n't even feel it.\",\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he\",gold,\"rips his broomstick from the clouds, crashing the grandmaster sending out a line.\",\"ca not see the things that someone's doing as he walks towards her, or hitting him.\",\"forces someone easily back, drives him easily into the wall.\",is alone that way to keep up on it.,2\n17049,lsmdc0032_The_Princess_Bride-66527,17430,\"But none of his blows get through and, slowly, someone, again moves forward. Someone\",\"But none of his blows get through and, slowly, someone, again moves forward.\",Someone,gold,\"stops halfway to them, although neither has one good eye.\",moves cautiously backward toward the archway.,props it up a wall and can not move from it.,\"drives for someone's left shoulder now, thrusts home where someone had gotten him.\",3\n17050,lsmdc0032_The_Princess_Bride-66527,17428,None of someone's blows get home. As someone,None of someone's blows get home.,As someone,gold,\"leaves the forest, and removes his jacket.\",stops between the hearse and twin children.,steps back a moment.,goes right back past someone.,2\n17051,lsmdc0032_The_Princess_Bride-66527,17429,\"And again he attacks, slashing with wondrous skill. But none of his blows\",\"And again he attacks, slashing with wondrous skill.\",But none of his blows,gold,are wagging as he picks up more basketballs.,are shown in the profile.,\"is broken the shot, two books.\",\"get through and, slowly, someone, again moves forward.\",3\n17052,lsmdc0032_The_Princess_Bride-66527,17431,\"Someone drives for someone's left shoulder now, thrusts home where someone had gotten him. Then another move and his blade\",\"Someone drives for someone's left shoulder now, thrusts home where someone had gotten him.\",Then another move and his blade,gold,\"enters someone's right shoulder, the same spot someone was wounded.\",moves past its protecting - covered display as the passage roars in the strung - out room.,knocks someone down the sidewalk until he finds them midway to the parallel bar.,hits the cut - out of one falls down the wooden floor.,0\n17053,lsmdc0032_The_Princess_Bride-66527,17434,Then someone withdraws his sword and as someone pitches down. His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes,Then someone withdraws his sword and as someone pitches down.,His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes,gold,start to dance.,darting out from his wrist.,dart up and down.,\"are bulging wide, full of fear.\",3\n17054,lsmdc0032_The_Princess_Bride-66527,17424,\"Someone watches someone approach, and someone flicks his sword at someone's heart, and there's not much someone can do, just kind of vaguely parry the thrust with the six - fingered sword and someone's blade sinks deeply into someone's left shoulder. And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he\",\"Someone watches someone approach, and someone flicks his sword at someone's heart, and there's not much someone can do, just kind of vaguely parry the thrust with the six - fingered sword and someone's blade sinks deeply into someone's left shoulder.\",\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he\",gold,would n't snaggletooth it as he swings the gun at the bear.,\"manages to parry the thrust, as this time someone's sword runs through his right arm.\",head towards the center of he sinks to the ground.,didn't hold back the blast.,1\n17055,lsmdc0032_The_Princess_Bride-66527,17427,\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he forces someone easily back, drives him easily into the wall. But he\",\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he forces someone easily back, drives him easily into the wall.\",But he,gold,\"lifts the cigarette rapidly and the other jabs his fists in passionate, as the same men's feet move in an alley.\",has n't easily turned to someone.,\"can not see the stranger hurrying up to his own, trying to wrinkle his limb.\",does not penetrate someone's defense.,3\n17056,lsmdc0032_The_Princess_Bride-66527,17432,\"Then another move and his blade enters someone's right shoulder, the same spot someone was wounded. They\",\"Then another move and his blade enters someone's right shoulder, the same spot someone was wounded.\",They,gold,are on both bed.,are almost frozen like that for a moment.,move to the cliff in the hit spot.,got a wound to his skin.,1\n17057,lsmdc0032_The_Princess_Bride-66527,17435,\"His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes are bulging wide, full of fear. Someone lies as before, not a muscle has moved, his head\",\"His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes are bulging wide, full of fear.\",\"Someone lies as before, not a muscle has moved, his head\",gold,half miserable and aghast.,\"leaning towards a lectern, held by position in a dark, nun style room.\",\"is still on the headboard, someone's sword at his side.\",bowed and keeps his steadily on himself.,2\n17058,lsmdc0032_The_Princess_Bride-66527,17425,\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he manages to parry the thrust, as this time someone's sword runs through his right arm. Again, someone\",\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he manages to parry the thrust, as this time someone's sword runs through his right arm.\",\"Again, someone\",gold,\"does n't seem to mind, does n't even feel it.\",\"writes o. ka - addressed as he pulls himself up to his feet, beckons to his aide.\",\"lands in the sand, who manages to hold himself back down.\",makes a wands with one finger and an explosion floats towards them.,0\n17059,lsmdc0032_The_Princess_Bride-66527,17433,They are almost frozen like that for a moment. Then someone,They are almost frozen like that for a moment.,Then someone,gold,changes his face into someone's sunroof.,\"walks into home bedroom, packing a bucket and starts cleaning out the wall.\",\"lets out, watching from an oncoming spot on the road.\",withdraws his sword and as someone pitches down.,3\n17060,anetv_tMheZSxPl3Q,9060,Pieces of furniture are seen including cabinets and tables. A person,Pieces of furniture are seen including cabinets and tables.,A person,gold,rolls her nails all along a beach with a scraper solution.,sands down a piece of wood with an electric sander.,shows the paint cutting paper with a foam sheen.,is mopping a floor without a soap waxing down on his back.,1\n17061,anetv_tMheZSxPl3Q,9061,A person sands down a piece of wood with an electric sander. A person,A person sands down a piece of wood with an electric sander.,A person,gold,is seen snow down on the roof of the house.,sands down a piece of wood by hand.,rounds the stone floor and trims the bushes.,is fishing on ice in front of and grabbing the wood and talking about the top.,1\n17062,anetv_X095EDl0-eU,5010,We see two men fencing in a stadium. A man,We see two men fencing in a stadium.,A man,gold,is hitting the ball something far.,splits in the stands.,watches a practice art workshop while soldiers watch them.,throws his arms in the air.,3\n17063,anetv_X095EDl0-eU,5012,The left man falls to the ground. The left man,The left man falls to the ground.,The left man,gold,mounts the pommel horse.,tickles the ball and scores.,throws his hand in the air.,bends down and pretends to fall.,2\n17064,anetv_X095EDl0-eU,5013,The left man throws his hand in the air. We,The left man throws his hand in the air.,We,gold,see the ending title screen.,\", the man spins with us and the credits of the clip are shown.\",see the man back when finishes.,do the same as a teen shows up boy and drink and clap.,0\n17065,anetv_X095EDl0-eU,5011,A man throws his arms in the air. The left man,A man throws his arms in the air.,The left man,gold,falls to the ground.,does the same split.,lays his shingle down on the spot.,collapses to her knees.,0\n17066,anetv_eQc-8npRq18,13750,A person is seen standing before a large track holding a pole. The person,A person is seen standing before a large track holding a pole.,The person,gold,is then seen flipping on the track around a gym and several avoids lifting up a pole.,runs over to get the string out on the track and jumps back to the end.,then begins spinning around around a track several times.,begins to run down the track while still holding the pole.,3\n17067,anetv_eQc-8npRq18,13751,The person begins to run down the track while still holding the pole. The man then,The person begins to run down the track while still holding the pole.,The man then,gold,opens and flips the child over.,jumps over a beam and onto a mat.,turns to the man and throws the disk on the board.,runs around the track and drags her down and down the lane.,1\n17068,anetv_Q6KyDc24uSk,4164,\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person appears with a pool stick and hits the white ball. A blue screen appears and it\",\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person appears with a pool stick and hits the white ball.\",A blue screen appears and it,gold,shoots off the air really far.,includes the same black and yellow wording from the intro screen.,\"includes two colored people, a beach reflection is then measure of several small pucks being repeated, with a few more highlights.\",\"'s a car that includes white text, putting how it on how it just did.\",1\n17069,anetv_Q6KyDc24uSk,4163,\"It then switches to another blue screen that include more words in black and yellow and it's referring to a Disc iii. A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person\",It then switches to another blue screen that include more words in black and yellow and it's referring to a Disc iii.,\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person\",gold,puts a bottle of water on the table try where the ball goes up.,begins to play it for a different time.,comes in between them standing in a pose and flames burst on their back and gradually.,appears with a pool stick and hits the white ball.,3\n17070,anetv_Q6KyDc24uSk,4588,A man takes a pool stick and shoots the que ball towards the colored balls. the man,A man takes a pool stick and shoots the que ball towards the colored balls.,the man,gold,demonstrates several shots and angles.,runs into the center of the hockey rink.,throws the ball to one of the teachers.,dives and hits the ball into the goal.,0\n17071,anetv_NiQaDgj8Z10,3863,A lady hula hoop with five hula hoops and one by one she takes on off of her and tosses it until she tossed away all five hula hoops she was hula hooping with. the lady then,A lady hula hoop with five hula hoops and one by one she takes on off of her and tosses it until she tossed away all five hula hoops she was hula hooping with.,the lady then,gold,appears in the hoop many times and the baby takes pictures of the woman's point.,shows herself doing a flip dish with a hoop and indoor vigorously.,dismounts the slinky performance to the side once again and is threatening her black visor.,hula hoops with 300 hula hoops with will be a world record.,3\n17072,anetv_NiQaDgj8Z10,3864,\"The lady then hula hoops with 300 hula hoops with will be a world record. the lady starts by putting the 300 hula hoops around her body as she bend over to get a good grip on them, she then\",The lady then hula hoops with 300 hula hoops with will be a world record.,\"the lady starts by putting the 300 hula hoops around her body as she bend over to get a good grip on them, she then\",gold,picks her camera up and moves in.,stands straight up and starts to twirl all 300 hula hoops around her body.,glides across to another girl and attempts to walk faster.,flips some times and grabs more objects with both hands.,1\n17073,anetv_tIAdhrfT70I,9793,\"A group of people are in a building, playing a game called beer pong. The news reporters\",\"A group of people are in a building, playing a game called beer pong.\",The news reporters,gold,is excited about her game game.,are swimming toward the reporters.,gather in their studio to play beer pong.,\"are talking on front the taking hands, when they're finished their drink is shown.\",2\n17074,anetv_tIAdhrfT70I,9794,The news reporters gather in their studio to play beer pong. A male and female reporter,The news reporters gather in their studio to play beer pong.,A male and female reporter,gold,attempt to throw the balls at the cups.,play a ping pong pool.,are on the beach.,are playing on tv.,0\n17075,anetv_tIAdhrfT70I,9796,The woman walks away laughing as the other reporters continue to talk. They,The woman walks away laughing as the other reporters continue to talk.,They,gold,resume playing before the fox news icon again appears onscreen.,do signals to shake it off.,rest at tables are shown in the continue to mow her empty room.,ends and the woman is talking and leads into him speaking and showing items out on the table.,0\n17076,anetv_tIAdhrfT70I,9795,A male and female reporter attempt to throw the balls at the cups. The woman,A male and female reporter attempt to throw the balls at the cups.,The woman,gold,grabs another cup and pours the ice into a glass.,makes a batch of sand on the ice and harmonica.,nudges the ball while licking her other hand.,walks away laughing as the other reporters continue to talk.,3\n17077,anetv_LB2P_KH0W2I,17756,Two women are washing dishes in the kitchen. They,Two women are washing dishes in the kitchen.,They,gold,are working their head.,go back and forth over the kitchen.,are washing dishes serving back and forth.,\"are sucked in, drifting.\",1\n17078,anetv_LB2P_KH0W2I,17757,They go back and forth over the kitchen. The scene,They go back and forth over the kitchen.,The scene,gold,transitions to a person mowing the lawn.,switches to several people playing the sport.,shows the french windows filled with guests.,is in very fast motion.,3\n17079,anetv_BII4aKnegaU,13814,A small group of people are seen taking a spin class together that leads into a man speaking to the camera. Shots of the gym,A small group of people are seen taking a spin class together that leads into a man speaking to the camera.,Shots of the gym,gold,are shown as more shots are shown of them jumping out of a shot.,performing are shown followed by more people stepping into sandy.,are shown on many goals.,are shown that lead into another cycling class with the man leading the group and still speaking to the camera.,3\n17080,anetv_OqLUp37WKMA,17873,One scores a goal and is shown several more times again. The men,One scores a goal and is shown several more times again.,The men,gold,continue cheering while cheering to one another.,smile to one another and continue playing the sport.,go back and forth numerous times and almost being disappointed in slow motion.,jump ropes high with each other to different moves.,1\n17081,anetv_OqLUp37WKMA,12741,\"A soccer player is held back from kicking a soccer ball on a field by a referee on the field. two teams play soccer in an outdoor field in front of an audience, the black and white team\",A soccer player is held back from kicking a soccer ball on a field by a referee on the field.,\"two teams play soccer in an outdoor field in front of an audience, the black and white team\",gold,makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience.,pink team anda the players are running to see one person kick a ball past the players.,moving through an orange field consisting of the yellow ball thrown towards the team.,run behind corner to get to the ball followed by the player in a red shirt explaining again to the court.,0\n17082,anetv_OqLUp37WKMA,12742,\"Two teams play soccer in an outdoor field in front of an audience, the black and white team makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience. Several more goals\",\"Two teams play soccer in an outdoor field in front of an audience, the black and white team makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience.\",Several more goals,gold,are shown of the contestants start in their pull until the event appears and explains the score.,are shown as the group walk by as some of the players continue to play.,are made by the black and white team on the soccer field before the scene fades.,are shown as well as a group of people around in sides turn and play shuffle hitting the ice.,2\n17083,anetv_OqLUp37WKMA,17872,A small group of men are seen running around a field playing soccer. One,A small group of men are seen running around a field playing soccer.,One,gold,is then shown in several clips playing tennis.,scores a goal and is shown several more times again.,continue dancing around the studio while people watch and watch.,throws the ball back and fourth while still speaking.,1\n17084,anetv_Srpn1NaBueI,16477,\"A man sits on a horse holding a rope with a loop while a group of men stand on his side. Suddenly, a calf runs and the man\",A man sits on a horse holding a rope with a loop while a group of men stand on his side.,\"Suddenly, a calf runs and the man\",gold,runs flipping after the calf.,catch the calf with the loop of the rope.,grabs it and walks.,rides up the horse with the rope attached with the rope tight to the calf.,1\n17085,anetv_Srpn1NaBueI,15590,The gate opens and he ropes a small animal and throws it on the ground and ties its back lets. He,The gate opens and he ropes a small animal and throws it on the ground and ties its back lets.,He,gold,stands up and runs to get back on the horse.,turns back to the grass and walks back to the road.,runs to the next horse and grabs the ropes that looks like an open exercise.,stands behind a top fence and peers out the twigs of the camera.,0\n17086,anetv_Srpn1NaBueI,16478,\"Suddenly, a calf runs and the man catch the calf with the loop of the rope. Then, the man\",\"Suddenly, a calf runs and the man catch the calf with the loop of the rope.\",\"Then, the man\",gold,lassos and ties to the person again then slides down the rope to few left.,rises the calf and throw on the ground and tie tie the calf.,takes a t hose and runs jumps and holds a high rope.,bounce back and down on the ground wearing a snowboard.,1\n17087,anetv_Srpn1NaBueI,15589,A man is sitting on top of a horse. The gate,A man is sitting on top of a horse.,The gate,gold,is opened and the man is in the water doing tricks with the rope.,is released as he rolls over.,\"is released, a red horse is standing in the stands by the side.\",opens and he ropes a small animal and throws it on the ground and ties its back lets.,3\n17088,lsmdc1035_The_Adjustment_Bureau-85435,14600,A lovely woman in a silk spaghetti - strap dress with a black lace bodice emerges bashfully. She,A lovely woman in a silk spaghetti - strap dress with a black lace bodice emerges bashfully.,She,gold,eats an ice cream chocolate cone as they see the movements.,\"grips two high heels, a coat, and an open champagne bottle which she sets on the counter.\",\"lifts the curious egg on her leg, while it sweeps the make up as she goes.\",\"nibbles his lips, and kisses her cheek passionately.\",1\n17089,lsmdc1035_The_Adjustment_Bureau-85435,14593,\"Later, people hang their heads. A woman\",\"Later, people hang their heads.\",A woman,gold,leads a group of higher graves.,hands off a slip of paper.,sets down a tea bag on a toilets.,jog past the window.,1\n17090,lsmdc1035_The_Adjustment_Bureau-85435,14595,Someone leaves the Elegant Function Room. Then a newscast,Someone leaves the Elegant Function Room.,Then a newscast,gold,shows someone at a conference room.,shows a storeroom far.,shows on a tv.,shows someone standing inside a large spacious room.,2\n17091,lsmdc1035_The_Adjustment_Bureau-85435,14596,Then a newscast shows on a tv. Now someone,Then a newscast shows on a tv.,Now someone,gold,sits at the front of the mirrored room.,eyes someone's photo on the dingy boxed machine.,bears their tipsily at each other.,stands alone in a grand formal hallway.,3\n17092,lsmdc1035_The_Adjustment_Bureau-85435,14599,Someone straightens his New York shaped lapel pin. Someone,Someone straightens his New York shaped lapel pin.,Someone,gold,slackline charges other dancers and hurdles onto a parked riverside.,spreads his lips wide.,looks to the row of closed stall doors.,holds it against her face.,2\n17093,lsmdc1035_The_Adjustment_Bureau-85435,14589,\"Now on a downtown rooftop, four gentlemanly figures cross to the guard rail, each in a fedora, overcoat and necktie. One\",\"Now on a downtown rooftop, four gentlemanly figures cross to the guard rail, each in a fedora, overcoat and necktie.\",One,gold,\", iron girl holds a jar as its tray is spread down to reveal the fake meat.\",\", his father watches him pass and takes out the pair of scissors and puts them in the pocket.\",ranking troops young students hover nearby.,is the mustached young man.,3\n17094,lsmdc1035_The_Adjustment_Bureau-85435,14590,\"In the suite, someone joins someone. Someone\",\"In the suite, someone joins someone.\",Someone,gold,picks up his bag and points it at someone.,reaches up and takes a note.,carries a tray of hors d'oeuvres while one watches him go.,aims the remote at the tv.,3\n17095,lsmdc1035_The_Adjustment_Bureau-85435,14592,Someone tosses a tie at someone. He,Someone tosses a tie at someone.,He,gold,eagerly reaches for his shoe.,grins and washes his face in his own hand.,grins as someone watches the video.,eyes its blue and red stripes.,3\n17096,lsmdc1035_The_Adjustment_Bureau-85435,14591,Someone aims the remote at the tv. Someone,Someone aims the remote at the tv.,Someone,gold,\"turns around the living room table, lights blinds.\",is wearing sodden caped.,tosses a tie at someone.,\"stares at someone, then lifts his head and drags his chest toward himself.\",2\n17097,lsmdc1035_The_Adjustment_Bureau-85435,14597,\"Now someone stands alone in a grand formal hallway. Head bowed, he\",Now someone stands alone in a grand formal hallway.,\"Head bowed, he\",gold,holds his hands in his pockets.,joins people.,jogs down a hallway.,peers into a microphone.,0\n17098,anetv_CMTiL1ctmDs,1425,The man removes the hookah from his mouth and blows out rings of smoke. The man,The man removes the hookah from his mouth and blows out rings of smoke.,The man,gold,exhales smoke throws the smoke into the air.,continues to blow smoke tattered puffs on his cigarette pipe.,\"sucks on the hookah again, blows out smoke, sucks it back in and this time just blows out smoke.\",hits the nose of the dog and walks away.,2\n17099,anetv_CMTiL1ctmDs,9080,The boy blows smoke rings through the air. The man,The boy blows smoke rings through the air.,The man,gold,hides and sits on the floor.,looks at himself in the mirror.,walks up to fence around the child.,sucks back in the smoke ring floating in the air.,3\n17100,anetv_CMTiL1ctmDs,1424,\"A young man wearing a hat, shirt and jeans is standing in a kitchen and sucking on a hookah. The man\",\"A young man wearing a hat, shirt and jeans is standing in a kitchen and sucking on a hookah.\",The man,gold,flaps the orange hookah float over his mouth and falls one.,is then shown drinking a glass of water and begins pouring it all over the man's body.,removes the hookah from his mouth and blows out rings of smoke.,is then shown smoking a cigarette as he demonstrates how to use them.,2\n17101,anetv_CMTiL1ctmDs,9079,A young man sucks smoke through a hookah pipe. The boy,A young man sucks smoke through a hookah pipe.,The boy,gold,blows his nose and inhales the smoke.,blows smoke rings through the air.,walks up to walkway and continues smoking.,blows out smoke.,1\n17102,lsmdc1023_Horrible_Bosses-82095,756,She pulls the patient's trousers down. She,She pulls the patient's trousers down.,She,gold,leans in towards the patient's crotch.,pulls her into an airy embrace and drags the door closed.,kisses someone on the lips.,\"runs up to the elevator, which snaps upside and lowers.\",0\n17103,lsmdc1023_Horrible_Bosses-82095,757,She leans in towards the patient's crotch. The patient,She leans in towards the patient's crotch.,The patient,gold,cuts someone's face.,is younger than someone.,\"sits up, laughing.\",hangs up and hurries toward her.,2\n17104,lsmdc3089_XMEN_FIRST_CLASS-43449,6117,Someone touches his finger to his temple and closes his eye. He,Someone touches his finger to his temple and closes his eye.,He,gold,\"turns to someone, who gazes at the golden egg.\",envisions the cargo ship.,puts on his coat.,sees a sign hanging from a safe.,1\n17105,lsmdc3089_XMEN_FIRST_CLASS-43449,6114,\"Above, the mutants' sleek jet arrives. It\",\"Above, the mutants' sleek jet arrives.\",It,gold,\"glides further out, bumping along the pitch, through the surrounding sea.\",lands on a purple pillow.,soars low over the american fleet.,punches someone in the crotch bar 3 above someone.,2\n17106,lsmdc3089_XMEN_FIRST_CLASS-43449,6118,\"He envisions the cargo ship. Inside, a crew member\",He envisions the cargo ship.,\"Inside, a crew member\",gold,lies on the floor.,leads them into the tent.,chases into the swarm.,\"rushes into the lifeboat and fires, forcing his body into the water.\",0\n17107,lsmdc3089_XMEN_FIRST_CLASS-43449,6112,The admiral grimly lowers his binocular. The officers,The admiral grimly lowers his binocular.,The officers,gold,take off their hats and put on helmets and life vests.,meet his foot gaze and descend slowly.,surround the flare with fall.,heaped someone adverts the vet.,0\n17108,lsmdc3089_XMEN_FIRST_CLASS-43449,6116,\"In the cockpit, someone eyes the ships. The others\",\"In the cockpit, someone eyes the ships.\",The others,gold,catch her from behind.,drag someone a sheet through the side of the chamber.,\"celebrate, then falls into the water on impact.\",ride in the cabin.,3\n17109,lsmdc3089_XMEN_FIRST_CLASS-43449,6113,\"On the US - naval bridge, two triple - barreled cannons take aim. Fleet\",\"On the US - naval bridge, two triple - barreled cannons take aim.\",Fleet,gold,knock the attacking companion down the alley.,kicks across the cracked concrete floor.,find a man on a deck fort.,reports all weapons ready.,3\n17110,lsmdc3089_XMEN_FIRST_CLASS-43449,6115,It soars low over the American fleet. The admiral and his men,It soars low over the American fleet.,The admiral and his men,gold,race along the field.,follow their prisoners into the blaze of traveling members of the city.,watch the unique aircraft pass by.,roll their families in a skillet.,2\n17111,lsmdc3089_XMEN_FIRST_CLASS-43449,6111,Someone grabs someone's throat and snarls. Someone,Someone grabs someone's throat and snarls.,Someone,gold,picks up a bottle of honey.,manipulates his books toward someone.,drops someone to the floor.,struts forward the stage.,2\n17112,anetv_6rG5dBgwBDc,9359,\"A woman is talking before she starts preparing and decorating the tree. She applies a plethora of ornaments and lights, and the tree\",A woman is talking before she starts preparing and decorating the tree.,\"She applies a plethora of ornaments and lights, and the tree\",gold,wraps sand around the pile of flowers.,continues to cook christmas tree.,is shown several different states of decoration.,in a bowl and scoops them down.,2\n17113,anetv_6rG5dBgwBDc,9358,Snowflakes are shown falling down the screen before we see a christmas tree. A woman,Snowflakes are shown falling down the screen before we see a christmas tree.,A woman,gold,stands wrapped in the black skies over falling.,is seen mowing the lawn with an arm.,is talking before she starts preparing and decorating the tree.,sits on top of the lit tree and can be seen kneeling back.,2\n17114,anetv_BxyOAXTWkzk,3753,A man helps a woman mount a horse in the woods. She,A man helps a woman mount a horse in the woods.,She,gold,spots the push horses and jumps off the horse and ties it up.,jumps into the water to a slope.,feeds the horse apples as they ride through the wooded paths.,jumps towards the horse while a woman watches.,2\n17115,anetv_BxyOAXTWkzk,3752,\"Several people are seen in different scenes, walking in public. A man\",\"Several people are seen in different scenes, walking in public.\",A man,gold,starts up the part of a mountain on the street.,pushes a few bongo balls in a desert trolley.,is seen putting on logs and is sitting down.,helps a woman mount a horse in the woods.,3\n17116,anetv_pjF6uBZHVRE,11270,The camera cuts to four other competitors watching. The camera,The camera cuts to four other competitors watching.,The camera,gold,\"returns to them playing retrieved various things, but still buttoning them.\",zooms in and their shots boys head over.,shows two men putting their wet swords away one fourth.,cuts to a man in white and blue celebrating while holding a flag against his black.,3\n17117,anetv_pjF6uBZHVRE,11269,Another man in white and blue vaults and is successful. The camera,Another man in white and blue vaults and is successful.,The camera,gold,is half - aimed.,gives two athletes meeting in front of a team where they start to watch the video as it turns away.,spins while a man holding a shovel looks along a hole he is wearing.,cuts to four other competitors watching.,3\n17118,anetv_pjF6uBZHVRE,11268,The starting list for the men's pole vault event is displayed over the background of the competition area. Multiple vaulters,The starting list for the men's pole vault event is displayed over the background of the competition area.,Multiple vaulters,gold,\"attempt to vault, one after another, some successfully and some not.\",\"practicing lifting the pro lift and weightlifting, heading.\",vaulters about some high jump.,are shown pulling the border of the pit.,0\n17119,anetv_N2zoVF76Pgg,1215,Several ball players enter an indoor court. They,Several ball players enter an indoor court.,They,gold,are getting ready for race.,engage in a game of soccer together.,pick up the ball and throw it in a goal.,taunt the ball with tennis rackets.,1\n17120,anetv_N2zoVF76Pgg,11656,A crowd of people are watching a game and cheering. Players,A crowd of people are watching a game and cheering.,Players,gold,stands in a square on a football field.,are playing a game of indoor soccer.,run into the goal and applaud for cheering for a game.,throw their flags in bronze marathon and another individual hits them.,1\n17121,anetv_N2zoVF76Pgg,1216,They engage in a game of soccer together. They,They engage in a game of soccer together.,They,gold,practice hockey and evaluating supplies.,kick the ball back and forth to each other.,boxer demonstrates kicking the ball.,play a game of curling.,1\n17122,anetv_Ue90f5r-2Qw,9219,He is holding a violin and string in his hands. He,He is holding a violin and string in his hands.,He,gold,is playing an accordian on the stage.,talks about how to play it and a harmonica.,picks up a small curling tool and begins talking.,continues to play the guitar too.,1\n17123,anetv_Ue90f5r-2Qw,9218,A man is talking inside a room. He,A man is talking inside a room.,He,gold,blows on an iron and using a tool to iron it.,is playing the flute.,shows how to disorder the nails.,is holding a violin and string in his hands.,3\n17124,anetv_Ue90f5r-2Qw,4463,A man is seen speaking to the camera while holding up a violin. He,A man is seen speaking to the camera while holding up a violin.,He,gold,begins playing the instrument all around the room while still speaking to the camera.,continues to spin himself around to play the bongos to his friend.,plays the instrument on his shoulders and continues to demonstrate how to play.,puts down his hat and keys and walks away.,2\n17125,anetv_Ue90f5r-2Qw,4464,He plays the instrument on his shoulders and continues to demonstrate how to play. He,He plays the instrument on his shoulders and continues to demonstrate how to play.,He,gold,ends the gesture and walks away.,moves the instrument around over and over again while still stopping to speak to the camera.,beats a rhythm then lines the music.,stops struggling and continues explaining.,1\n17126,lsmdc3018_CINDERELLA_MAN-7912,14261,\"Suspended off her feet, someone blinks thoughtfully as she eyes him. Someone\",\"Suspended off her feet, someone blinks thoughtfully as she eyes him.\",Someone,gold,grins and kisses her.,\"drops lower, her features set in a faint bashful smile as he watches her.\",sits down and slowly lifts his leg.,scratches his own hand.,0\n17127,lsmdc3018_CINDERELLA_MAN-7912,14264,\"Pouting slightly, someone resolutely juts out her chin. Now, someone\",\"Pouting slightly, someone resolutely juts out her chin.\",\"Now, someone\",gold,marches across a busy street.,drives past a tall bridge building.,walks through a gate into a waterfront.,leads someone back to a shelter in a courtyard several inches of tall.,0\n17128,lsmdc3018_CINDERELLA_MAN-7912,14265,\"Behind her, two vendors sit at a folding table and men in business suits and fedoras follow different paths. Someone\",\"Behind her, two vendors sit at a folding table and men in business suits and fedoras follow different paths.\",Someone,gold,arrives in a black room with two huge windows and appears with smoke replacing them.,looks up at the solitary expanse of helpless children lying on the hospital bed painting a bloody grizzly.,\"skims the garden paper as she runs up the field, his breath cast in the shadows.\",crosses a carpet to a residential building's posh entry.,3\n17129,lsmdc3018_CINDERELLA_MAN-7912,14263,\"He slings someone over his shoulder. Pouting slightly, someone\",He slings someone over his shoulder.,\"Pouting slightly, someone\",gold,notices in his rear view mirror.,resolutely juts out her chin.,hops up onto the settee.,follows his dog to the open train and notices his cruiser slack.,1\n17130,lsmdc3018_CINDERELLA_MAN-7912,14268,\"Someone lifts her knuckles to the wood again. Inside, someone\",Someone lifts her knuckles to the wood again.,\"Inside, someone\",gold,walks to the door and checks the peephole.,rummages across the bed and grasps it and puts it in her mouth.,reads through the pages.,scans his room then ducks down toward the extending tower.,0\n17131,lsmdc3018_CINDERELLA_MAN-7912,14266,\"Someone crosses a carpet to a residential building's posh entry. Inside, she\",Someone crosses a carpet to a residential building's posh entry.,\"Inside, she\",gold,rides the car down a street.,\"jumps off, suggestively stopping.\",peeks inside and climbs out.,faces an apartment door.,3\n17132,lsmdc3018_CINDERELLA_MAN-7912,14267,\"Inside, she faces an apartment door. Someone\",\"Inside, she faces an apartment door.\",Someone,gold,lifts her knuckles to the wood again.,flinches as they separate.,does a small drop of knob.,takes it in her arms.,0\n17133,anetv_ZoKZTceDTLA,14550,We see another man working on the floor. We,We see another man working on the floor.,We,gold,see a man laying tile in another room.,see a man and a boy laying on the bars.,see an animated opening screen followed by people in preparation for shot.,is then shown as the man is talking and gesturing as he removes his paintball job.,0\n17134,anetv_ZoKZTceDTLA,14551,We see a man laying tile in another room. Two men,We see a man laying tile in another room.,Two men,gold,stand on the floor together.,throw weights and run off the bar.,give plaster to another wall.,are in the same room working on different projects.,3\n17135,anetv_ZoKZTceDTLA,14549,We see a man talking while walking through a house. We,We see a man talking while walking through a house.,We,gold,see another man working on the floor.,see people playing tricks inside a yellow helicopter.,see a man taking the ball gear and hitting balls for a goal.,see the man raking snowboards really quickly and holds up the shovel at a really old.,0\n17136,anetv_ZoKZTceDTLA,14552,Two men are in the same room working on different projects. We,Two men are in the same room working on different projects.,We,gold,are being held by five different obstacles on the wall.,see the man talking to the camera again.,\"are in the vault with paintball, matadors fighting experience.\",watch the body and briefly enter an office followed by continuing to plaster the wall.,1\n17137,anetv_F559bkkKSp8,646,A group of children are riding the camels as they walk. A woman,A group of children are riding the camels as they walk.,A woman,gold,\"follows behind, watching.\",continues surfing over and over in several shots.,stands while doing rollerblading stunts.,helps people keep the poles in their enclosure.,0\n17138,anetv_F559bkkKSp8,645,A man walks a couple of camels along the ocean front. A group of children,A man walks a couple of camels along the ocean front.,A group of children,gold,\"ride a hot boat in the water, there are people sailing in sea.\",talk to the camera as they walk on and down the river.,are riding the camels as they walk.,walk across a stage in a concert room.,2\n17139,anetv_F559bkkKSp8,3795,A person is seen riding a camel long a beach lead by a man in front. More camels,A person is seen riding a camel long a beach lead by a man in front.,More camels,gold,are seen all over them and continuing to ride around the water.,is seen riding the camels as well as them walking around cheese and walking along a gravel path.,appear from behind and follow one another as a woman watches.,come down and bump the calf on a plate in the end.,2\n17140,lsmdc0011_Gandhi-52349,6395,\"Someone meets his eyes - - a smile that shelters someone's vulnerability, returns his love. The very English, very steadfast someone\",\"Someone meets his eyes - - a smile that shelters someone's vulnerability, returns his love.\",\"The very English, very steadfast someone\",gold,is at the stake camp for the funeral.,has never been happening.,is blowing the surprise to his friend.,fights to contain his emotions.,3\n17141,anetv_D1E_KJRxGvQ,16571,\"An athlete performs on the horse pommel jumping and doing front flippings. Then, the athlete stand on the border of the pommel horse and\",An athlete performs on the horse pommel jumping and doing front flippings.,\"Then, the athlete stand on the border of the pommel horse and\",gold,receive another triple jump and flip back to form somersaults.,perform a long jump roping in front of a crowd by a group of the spectators in the background.,moving just a few steps away.,performs a double backflip.,3\n17142,anetv_D1E_KJRxGvQ,6738,A girl jumps onto a balance beam. She,A girl jumps onto a balance beam.,She,gold,\"jumps and performs, to the cheers up of the beam.\",does a gymnastics routine on the balance beam.,does a gymnastics routine on the balance beam and catches on.,performs a routine against the balance beam.,1\n17143,anetv_D1E_KJRxGvQ,16572,\"The, the athlete continues jumping a doing frontflip and backflip. Then, the athlete\",\"The, the athlete continues jumping a doing frontflip and backflip.\",\"Then, the athlete\",gold,successfully hammer the base of the high bar.,\"does a cartwheel, flip three times and land stand on the mat.\",stops and takes the jump for himself.,\"jump, and jump vaults repeatedly.\",1\n17144,anetv_D1E_KJRxGvQ,6739,She does a gymnastics routine on the balance beam. She,She does a gymnastics routine on the balance beam.,She,gold,do jumping on the balance beam and her feet from her seat.,dismounts and lands on a mat.,\"is on a beam of a indoor gymnasium, where she is doing gymnastics on a mat.\",jumps back and lands on the edge of the pool.,1\n17145,anetv_8NRv-75RlPI,10558,\"An elliptical trainer is shown, as well as its components. A woman\",\"An elliptical trainer is shown, as well as its components.\",A woman,gold,takes puffs from a wall of spray in the bottom of the mat.,rafting in the water using the oars as they play another river.,is shown working out on the elliptical.,puts in a storage room and vacuum.,2\n17146,anetv_YamDoDK71Ds,5238,She talks about her love for belly dancing and stuff. Then you,She talks about her love for belly dancing and stuff.,Then you,gold,see her a different purple belly dancing outfit dancing outside.,wash the belly in the sink and put the shampoo in the mouth and take seen.,engage in the guitar and silky demonstrations.,\"rove, your dance split and people outdoors.\",0\n17147,anetv_YamDoDK71Ds,5236,A woman in a belly dancing outfit is dancing moving her body very strategically. She,A woman in a belly dancing outfit is dancing moving her body very strategically.,She,gold,moves gracefully into the room and walks around to crack him.,does another man playing and doing yet again and again.,\"sings and does several different moves, the woman in blue outfit.\",has her hands up in the air moving as she moves her hips very quickly.,3\n17148,anetv_YamDoDK71Ds,5237,She has her hands up in the air moving as she moves her hips very quickly. She,She has her hands up in the air moving as she moves her hips very quickly.,She,gold,knits her fingers briefly as someone comes up above her and gives her an examination.,talks about her love for belly dancing and stuff.,puts her hands up and lifts the frame to watch as she uses the hula hoop.,weigh on the ground then finishes and smiles down until the head is tossed into strips to move a tiny bundle.,1\n17149,anetv_4XavNhCs-Do,12199,He is also showing tight rope walking from one end to another. Then the person in black also,He is also showing tight rope walking from one end to another.,Then the person in black also,gold,plows through the trees behind him onto the grass.,demonstrates how to use the machine.,pull the kite up in place.,walks on a tight rope.,3\n17150,anetv_4XavNhCs-Do,12198,The person in blue is demonstrating how the rope is fastened from the rocks. He,The person in blue is demonstrating how the rope is fastened from the rocks.,He,gold,demonstrates how to use the machine to cut carpet out of the main sub.,spikes the rock against the wall.,turns to the camera and lights some toilet paper on the client's wheels.,is also showing tight rope walking from one end to another.,3\n17151,anetv_4XavNhCs-Do,12197,They are seated at a very high altitude in the mountains. The person in blue,They are seated at a very high altitude in the mountains.,The person in blue,gold,is demonstrating how the rope is fastened from the rocks.,walks to the bottom all the skis.,completes their work out with their new hands.,walks to the shore above an uneven mountain.,0\n17152,anetv_4XavNhCs-Do,12196,\"There is man wearing a blue shirt and another man in black seated on a rock, talking about rock climbing. They\",\"There is man wearing a blue shirt and another man in black seated on a rock, talking about rock climbing.\",They,gold,check and fun department and resumes in several rooms to do it to the back.,are seated at a very high altitude in the mountains.,pull the ball off of yellow inflated pieces but start to fall.,are painting the wall with a piece of wood.,1\n17153,lsmdc3047_LIFE_OF_PI-21935,586,Now young someone sits beside a glimmering river. He,Now young someone sits beside a glimmering river.,He,gold,stands and stumbles into the water.,puts his hand on the beams of a hangar.,drops the glass into a bin.,\"jumps from its dangles in the water, and offers her the life jacket.\",0\n17154,anetv_1scjpxusQx0,8395,A montage of still shots shows up. A collection of clips,A montage of still shots shows up.,A collection of clips,gold,are shown of different costumes being taken out onto a volkswagen utility boat.,of captured on the figure is shown in white up in profile.,show people jumping rope and performing on a stage in a contest.,are shown on the screen followed by a man in a striped shirt and waiting.,2\n17155,anetv_1scjpxusQx0,8396,A collection of clips show people jumping rope and performing on a stage in a contest. The end title credits,A collection of clips show people jumping rope and performing on a stage in a contest.,The end title credits,gold,appears on the screen as they dance.,are shown with people walking on it and trying to bow to the camera.,are shown on the screen and two words appear.,show on a black screen.,3\n17156,anetv_1scjpxusQx0,18053,A large group of people are seen standing around and speaking to one another. Several clips,A large group of people are seen standing around and speaking to one another.,Several clips,gold,are shown of people losing big throws and crashing into one another.,are shown of people hitting balls and hitting balls in front of each other.,are shown of people afterwards jumping rope with one another.,are shown of people playing beer pong while an audience watches on the side.,2\n17157,anetv_1scjpxusQx0,18054,Several clips are shown of people afterwards jumping rope with one another. The people,Several clips are shown of people afterwards jumping rope with one another.,The people,gold,continue running around with one another and stacking different items and moving around together.,continue riding around the boat and ends with several people passing over the waves.,compete against one another performing jump roping tricks and routines one after the other.,continue to ride around in the sides and sail around in an end.,2\n17158,anetv_8ZjUZbykp4U,16232,A man is seen sitting behind a drum set playing on the drums. The camera,A man is seen sitting behind a drum set playing on the drums.,The camera,gold,pans around another people playing instruments in hand enthusiastically playing drums.,pans all around his movements while he speaks to the camera.,continues to speak as well as smiling to the camera.,pans around to many other people playing instruments in the arena.,1\n17159,anetv_8ZjUZbykp4U,16233,The camera pans all around his movements while he speaks to the camera. More shots,The camera pans all around his movements while he speaks to the camera.,More shots,gold,are shown of him tapping a button with his hair still speaking to the camera.,are shown of him performing as well and approaches followed by this barbell man leading in close.,are shown of him playing as well as singing and other people playing instruments around him.,are shown of people brushing and hitting them without back to his camera.,2\n17160,lsmdc3008_BAD_TEACHER-4082,9739,She opens her mouth to receive his approaching lips but he detours upwards and plants a kiss on her forehead. Someone,She opens her mouth to receive his approaching lips but he detours upwards and plants a kiss on her forehead.,Someone,gold,forces a demure smile.,stares at the cluttered windows center.,looks at someone and nods.,reaches out to punch someone out.,0\n17161,lsmdc0028_The_Crying_Game-63772,7485,He begins to undo the buttons. He,He begins to undo the buttons.,He,gold,\"goes into frame a third time, which contains the camera.\",lighted titles appear on the screen.,straps on the seat blazer worn.,raises her to her feet and leads her toward the bed.,3\n17162,lsmdc0028_The_Crying_Game-63772,7469,\"Then the door closing and the Daimler pulling off. When the Daimler has passed someone, he\",Then the door closing and the Daimler pulling off.,\"When the Daimler has passed someone, he\",gold,takes the central photo book from someone.,has completely disturbed the darkness of the iron note to both.,seems to become aware of the kayak rider.,turns around and walks back.,3\n17163,lsmdc0028_The_Crying_Game-63772,7484,His hands travel up to her blouse. He,His hands travel up to her blouse.,He,gold,shuts his laptop at his bedside.,begins to undo the buttons.,switches on the tap.,holds it up as he gazes at the closing.,1\n17164,lsmdc0028_The_Crying_Game-63772,7468,\"A burly security man emerging from the car, walking toward the old gent. Someone\",\"A burly security man emerging from the car, walking toward the old gent.\",Someone,gold,throws someone in the street.,leads someone onto a grave where the shuffleboard has been removed.,wears a boyish wig.,\"reaches the car just before he does, and passes between him and the open door.\",3\n17165,lsmdc0028_The_Crying_Game-63772,7463,Someone turns around to look at him. People,Someone turns around to look at him.,People,gold,get out of the car.,jumps to the bottom of the stairs and stands up.,are in someone's hall.,split out of the booth.,0\n17166,lsmdc0028_The_Crying_Game-63772,7470,\"When the Daimler has passed someone, he turns around and walks back. Someone\",\"When the Daimler has passed someone, he turns around and walks back.\",Someone,gold,has his hands on his knees.,is dragged it out of the room.,picks up his cue and leaves.,smiles and leaps up as he approaches.,3\n17167,lsmdc0028_The_Crying_Game-63772,7489,\"We see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark. Someone\",\"We see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark.\",Someone,gold,people stand in the doorway.,shuffles across the busy street.,glares nowhere in a state of shock.,draws her slowly up to a standing position.,3\n17168,lsmdc0028_The_Crying_Game-63772,7464,\"They walk down the street, down from the brothel - cum - club, where there is a cafe - bar with some tables outside. They\",\"They walk down the street, down from the brothel - cum - club, where there is a cafe - bar with some tables outside.\",They,gold,\"are sitting in the chairs behind what we're on, a young lady is sitting at the desk.\",take their seats by the tables.,\"stand stock cars, panic.\",go over the shelves and with the nuns sitting on close.,1\n17169,lsmdc0028_The_Crying_Game-63772,7475,She sits down; he joins her. He,She sits down; he joins her.,He,gold,starts to put grass on someone's back and holds her back.,holds one hand on one of his candlesticks.,wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more.,turns his attention to the chuckle girl at the table.,2\n17170,lsmdc0028_The_Crying_Game-63772,7480,\"Someone enters, with her new haircut. She\",\"Someone enters, with her new haircut.\",She,gold,goes to turn on the light.,\"gets out in the sunshine, walk over to the bed.\",grins straight at him and walks out of the room.,walks to the street and find her fiddling with a hair dryer.,0\n17171,lsmdc0028_The_Crying_Game-63772,7466,\"Down by the brothel, the door swings open. Someone\",\"Down by the brothel, the door swings open.\",Someone,gold,falls out of the ring.,watches him give someone a wide kiss.,walks like any pedestrian down toward the brothel.,turns cautiously out of view.,2\n17172,lsmdc0028_The_Crying_Game-63772,7476,He wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more. She,He wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more.,She,gold,glares at the boy and shakes his head.,reads a bible and shows it to someone.,continues to brush leaves and finishes her nails.,allows herself to be led out.,3\n17173,lsmdc0028_The_Crying_Game-63772,7479,She looks in the mirror at it in the dark. Someone,She looks in the mirror at it in the dark.,Someone,gold,\"enters, with her new haircut.\",is wearing the wig of an ornate white dress.,lifts a long plank and walks across the room to the inside door.,\"stares at people, who opens the flask to someone.\",0\n17174,lsmdc0028_The_Crying_Game-63772,7481,Her fingers close around his. She,Her fingers close around his.,She,gold,brings her lips to his neck.,\"strokes his shirt, and they remain upright.\",keeps up her hands.,\"and someone skirt over, the small of her shoulders unsteady and the shape moves her eyes.\",0\n17175,lsmdc0028_The_Crying_Game-63772,7483,He lets them stay there. His hands,He lets them stay there.,His hands,gold,travel up to her blouse.,\"filled with tears, someone heads over the cliff edge.\",are puting the tank.,fall from his throat.,0\n17176,lsmdc0028_The_Crying_Game-63772,7465,They take their seats by the tables. We,They take their seats by the tables.,We,gold,sniffs a guy coffee.,can see the brothel down the way.,joins the corpses dead in prayer.,- fake rock papered is being shown from one of them.,1\n17177,lsmdc0028_The_Crying_Game-63772,7490,Someone draws her slowly up to a standing position. He,Someone draws her slowly up to a standing position.,He,gold,wraps the shirt around her.,\"looks up at her, then glances aside.\",\"stares at her for a moment, then shrugs.\",lets go of her hand and stands and walks away.,0\n17178,lsmdc0028_The_Crying_Game-63772,7467,\"The gent makes his way, with gout - ridden slowness, across the pavement, through the passersby, toward the car. A burly security man\",\"The gent makes his way, with gout - ridden slowness, across the pavement, through the passersby, toward the car.\",A burly security man,gold,\"emerging from the car, walking toward the old gent.\",pulls out a glass of vodka.,reaches inside the register pocket and opens it.,is checking his steering seat.,0\n17179,lsmdc0028_The_Crying_Game-63772,7472,Someone begins to walk away. Someone,Someone begins to walk away.,Someone,gold,dials the phone and dials some more.,turns around to see someone in front of the cafe.,holds his wand in his hand and grips it.,whispers the boy open hawaii.,1\n17180,lsmdc0028_The_Crying_Game-63772,7486,She stretches languorously down on it. She,She stretches languorously down on it.,She,gold,sees the bottom of the cave then cycles back towards a lit fish that explode at the vessel quivering.,\"hesitates, then lets her mouth wander over her sandwich.\",beats him into the thigh then sits on the bed.,\"turns on the bed sexily, her face to the mattress.\",3\n17181,lsmdc0028_The_Crying_Game-63772,7488,\"Someone on the bed, slowly turns. We\",\"Someone on the bed, slowly turns.\",We,gold,spots the coat outside her cabin.,\"see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark.\",glimpse around his father.,spots a battered sedan next to her.,1\n17182,lsmdc0028_The_Crying_Game-63772,7477,People standing in the darkness. He,People standing in the darkness.,He,gold,sits her down in one of the chairs.,\"rides down, holding someone as a blanket.\",gets fallen and is among the shot.,goes over and into someone's bedroom.,0\n17183,lsmdc0028_The_Crying_Game-63772,7491,\"From above, we see the figures of people, sleeping on a double bed, both fully clothed. Someone\",\"From above, we see the figures of people, sleeping on a double bed, both fully clothed.\",Someone,gold,raises the large object into her hand.,hangs up as he rejoins the others.,\"smokes, then puts out the cigarette.\",backs up to the boy.,2\n17184,lsmdc0028_The_Crying_Game-63772,7473,She goes inside; he follows. She,She goes inside; he follows.,She,gold,opens the door and goes inside.,\"gives him a warm hug, then follows.\",downs a drink and motions for another.,\"storms over the zoomed corridors, where couples are two drums.\",2\n17185,anetv_weKPXw4nxKA,5153,A man is seen standing on a porch speaking to the camera in front of a set of drums. The man then,A man is seen standing on a porch speaking to the camera in front of a set of drums.,The man then,gold,begins playing the instrument while pointing to his movements.,begins smoking a cigarette while looking off into the distance.,begins shaving the shoes again and presenting them to the camera.,begins playing the drums while looking to the camera.,3\n17186,anetv_weKPXw4nxKA,5154,The man then begins playing the drums while looking to the camera. The man,The man then begins playing the drums while looking to the camera.,The man,gold,\"continues digging around and continues playing, then continues playing with the instrument and singing.\",continues playing the instrument while continuing to play.,continues playing the drums and ends with looking off.,continues to drum and smiles to the camera.,3\n17187,anetv_AlLg4ZaxDoQ,3937,Young men unpack a car and then carry raft boats in the jungle and pass a rope bridge. Young men,Young men unpack a car and then carry raft boats in the jungle and pass a rope bridge.,Young men,gold,play and resumes the game.,end up in the snow of a snowboarding land boat.,raft in a narrow choppy river on individual boats.,are with people under a bridge outside a river.,2\n17188,anetv_AlLg4ZaxDoQ,3938,Young men raft in a narrow choppy river on individual boats. The young men,Young men raft in a narrow choppy river on individual boats.,The young men,gold,and red teens are crossing the river facing after another.,do water sailing through one of the rafters.,falls from small cascades in the rocky river.,\"pass a river, also, and tie paddle to swim places as they canoeing.\",2\n17189,anetv_oDZlW0OgEgg,13660,A man is standing behind a table. He,A man is standing behind a table.,He,gold,starts throwing darts on a table.,begins to polish the table in front of him with a rag.,dances with a round machine.,puts the bucket waxed onto the table.,1\n17190,anetv_oDZlW0OgEgg,6872,\"He shows a piece of wood, and begins to strip it with fluid. He then\",\"He shows a piece of wood, and begins to strip it with fluid.\",He then,gold,polishes it to a deep sheen.,goes down a ski and paints a wood fence.,cuts cut shapes into two pieces.,uses a wand to create a white piece.,0\n17191,anetv_oDZlW0OgEgg,6871,A man is seen in a workshop standing at a table. He,A man is seen in a workshop standing at a table.,He,gold,\"shows a piece of wood, and begins to strip it with fluid.\",holds an umbrella and starts washing him clean with a towel.,retrieves a blow smoke from the floor.,looks down at the table and ends up peeling looking with him.,0\n17192,anetv_9uZoTZsTwv0,13965,The cow is running and the boy throws the rope around its neck. It,The cow is running and the boy throws the rope around its neck.,It,gold,kicks his legs down and jumps onto the rope.,is different and wild as he continue to talk.,causes the cow to fall over after being pulled back by the rope.,'s back to someone.,2\n17193,anetv_9uZoTZsTwv0,13966,It causes the cow to fall over after being pulled back by the rope. The boy,It causes the cow to fall over after being pulled back by the rope.,The boy,gold,jumps off the bridge and runs a pass on this intersection multiple times.,comes the kite again and gives the instruction with the camera on it.,goes running off the horse after it and pins the little cow down.,starts talking as someone jumps on.,2\n17194,anetv_9uZoTZsTwv0,13964,A teenage boy on a horse spinning a rope in the air chases after a little cow. The cow is running and the boy,A teenage boy on a horse spinning a rope in the air chases after a little cow.,The cow is running and the boy,gold,loses the large calf.,walks in next to the cow.,throws the rope around its neck.,immediately gets up and jumps off his horse.,2\n17195,anetv_Ym_hy49DaS4,18615,\"Then, the person takes a blade to shave her legs while washing the blade under the faucet. After, the person, takes off the underwear and\",\"Then, the person takes a blade to shave her legs while washing the blade under the faucet.\",\"After, the person, takes off the underwear and\",gold,put it on the bathtub.,continues scrubbing the new shoe.,lets the towel dry.,spits water in the sink.,0\n17196,anetv_Ym_hy49DaS4,18614,\"A person is covering her legs with soap while she is standing on the bathtub. Then, the person\",A person is covering her legs with soap while she is standing on the bathtub.,\"Then, the person\",gold,clean the wet cloth.,takes a blade to shave her legs while washing the blade under the faucet.,rinses off the lotion and spray it with the towel.,squeezes a needle into the iron then rinse the ski.,1\n17197,anetv_ZIBWRRBft8g,2206,Man is showing a place without the wooden floor and its putting the wooden pole in the floor measuring the space. the man,Man is showing a place without the wooden floor and its putting the wooden pole in the floor measuring the space.,the man,gold,put her left side so and put the wall stairs again.,is talking to people on purpose in stilts while a man is in doing the bag pipes.,tells his first man in and so to club how comfortable it is in the dinning room.,puts a wood sheet in space and put floor tiles.,3\n17198,anetv_x86YIU9TIPw,17288,The white team is playing defense while the blue team has the ball and is playing offense. The blue team,The white team is playing defense while the blue team has the ball and is playing offense.,The blue team,gold,takes a shot at the goal and is blocked by the goalie.,circle a ball to the center and lands the mark to the side and go to the soccer.,threw the ball with the players that was lying in the other.,\"returns to talking about the game, trying to score some goals.\",0\n17199,anetv_x86YIU9TIPw,17289,The blue team takes a shot at the goal and is blocked by the goalie. The goalie,The blue team takes a shot at the goal and is blocked by the goalie.,The goalie,gold,takes a big puck back and forth across the net.,makes several turns while all students talk to the camera and hold up a flag.,places the ball on the ground for his team to now go to offense and attack the blue team goalie.,begins to run on the field after the referee joins him trying to take a shot running to prepare himself.,2\n17200,anetv_x86YIU9TIPw,17287,Two lacrosse teams compete in a tournament. The white team,Two lacrosse teams compete in a tournament.,The white team,gold,starts making a goal on the net.,is playing defense while the blue team has the ball and is playing offense.,disappears down the aisle.,sets their runs to the base and returns to the center.,1\n17201,anetv_x86YIU9TIPw,12071,Men are on a field playing lacrosse. We,Men are on a field playing lacrosse.,We,gold,start a race with the bulls.,are playing a game of lacrosse.,see number 17 blocking and following number 26.,are walking of the track backstage.,2\n17202,anetv_x86YIU9TIPw,12072,A green cart drives by. We,A green cart drives by.,We,gold,go flight to the mountain.,see a small screen.,see an alien man flying in his pine tree.,see the men and the coaches on the sideline.,3\n17203,anetv_PJgB6h-fImY,13971,Two men are crouched on the ground outside a bike path. They,Two men are crouched on the ground outside a bike path.,They,gold,are pulling cars outside to a parking lot.,\"use their pointer, while looking at the water one by one.\",are working on a broken down bike.,are also hit one side of the mountain.,2\n17204,anetv_PJgB6h-fImY,14726,A couple of men are on the side of a bike path. They,A couple of men are on the side of a bike path.,They,gold,come to color on the shoes.,are trying to work on fixing a bent tire.,are working out on their roof.,are painting their lines.,1\n17205,anetv_u-X4YO91V78,5955,A man's face is seen close up speaking and shows more clips of people riding in tubes. A man,A man's face is seen close up speaking and shows more clips of people riding in tubes.,A man,gold,is swimming in the water and shows people jumping in tubes and riding down together.,is seen speaking to the camera and presents people walking on a horse's frame.,speaks to the camera while others move and help people off with snowy and passing the camera down the slope.,walks around the waves and speaks to the camera while still checking out camera.,0\n17206,anetv_u-X4YO91V78,9220,\"Water droplets have sprayed onto the camera lens. The rapids increase, and the people\",Water droplets have sprayed onto the camera lens.,\"The rapids increase, and the people\",gold,have to stop one after hanging out.,fall safely off the raft.,begin pawing at each other.,get out of the water to jump back in.,3\n17207,anetv_u-X4YO91V78,9219,Some people are intertubing in river rapids. Water droplets,Some people are intertubing in river rapids.,Water droplets,gold,are on the rapids and some slides down a waterfall.,have sprayed onto the camera lens.,carry piles of wooden skis and the camera pans to several kayakers.,are shown their progress that are going at several different angles.,1\n17208,anetv_u-X4YO91V78,5954,A person is seen riding down the river on a tube with people following from behind. A man's face,A person is seen riding down the river on a tube with people following from behind.,A man's face,gold,is shown again on the grass followed by the man pushing away a rope.,is briefly shown with a light spraying down the frame and looking into the camera.,is shown followed by a car taking around and leads into more clips of people riding waves.,is seen close up speaking and shows more clips of people riding in tubes.,3\n17209,lsmdc3053_PARENTAL_GUIDANCE-25540,12916,\"Inside, someone listens to the iPod. Someone\",\"Inside, someone listens to the iPod.\",Someone,gold,stares at the old man with a shuts expression.,scoops up his upper hand.,slides the phone into a dock.,carries her on the module.,2\n17210,anetv_5N-PfYLyCpI,11429,Two men do flips in front of each other. Several more groups of people,Two men do flips in front of each other.,Several more groups of people,gold,crashes into the pool below them.,appear to be doing some kind of martial arts dance.,are seen walking on the flat rope together as well as hands in front.,are shown speaking to one another holding sticks or are seen moving around a distance.,1\n17211,anetv_5N-PfYLyCpI,11428,Several people are hitting an instrument with sticks. Two men,Several people are hitting an instrument with sticks.,Two men,gold,play scissors with one another play ice paper ball.,kick balls at each other in white numbers.,do flips in front of each other.,play ping pong with each other while moving to the ground.,2\n17212,anetv_sxf0x55Cvb4,10411,\"As he approaches, his kayak flips upside - down. As the view follows him, we\",\"As he approaches, his kayak flips upside - down.\",\"As the view follows him, we\",gold,notice another man seated on the rocks to the right in red with a white helmet.,\"see silhouetted black clouds making him zoom out of the trees, catching smoke.\",find someone climbing into a tawny grave atop a road drawn among german soldiers.,\"drift over a busy city street, like down buildings on the tarmac.\",0\n17213,anetv_sxf0x55Cvb4,10410,\"We notice a man in a kayak and a yellow helmet coming in from the left. As he approaches, his kayak\",We notice a man in a kayak and a yellow helmet coming in from the left.,\"As he approaches, his kayak\",gold,has a frozen body of water and begins to flood water.,flips upside - down.,is reflected in the bucket in a narrow choppy river.,slides down the ski slope towards another section of the city.,1\n17214,anetv_sxf0x55Cvb4,10409,A man in blue rafting equipment and a helmet is watching from a bed of rocks. We,A man in blue rafting equipment and a helmet is watching from a bed of rocks.,We,gold,notice a man in a kayak and a yellow helmet coming in from the left.,see the boy on a blue board talking.,are bobbing on the slope.,are then shown with people in tubes as people start snowboarding.,0\n17215,anetv_sxf0x55Cvb4,10408,\"We see a swiftly - moving, white water stream. A man in blue rafting equipment and a helmet\",\"We see a swiftly - moving, white water stream.\",A man in blue rafting equipment and a helmet,gold,is overlaid control in the pool.,hugs a child someone.,is watching from a bed of rocks.,comes in from behind kneeling measure.,2\n17216,anetv_IOmzDJjVUoQ,18904,A little in a pink shirt is going across the monkey bars. She,A little in a pink shirt is going across the monkey bars.,She,gold,is hitting a pinata with a bat.,lays down on the exercise machine.,hangs upside down from the bars.,covers the blood up.,2\n17217,anetv_IOmzDJjVUoQ,18905,She hangs upside down from the bars. She,She hangs upside down from the bars.,She,gold,awakens to her knees.,\"throws the javelin down the lane, pinning her hands on the ground.\",falls on the room's bars.,smiles at the camera.,3\n17218,lsmdc1007_Spider-Man1-75039,12881,\"Sometimes using one hand, sometimes both, like a gymnast, he flies through the air. He\",\"Sometimes using one hand, sometimes both, like a gymnast, he flies through the air.\",He,gold,\"flips up and somersaults, landing on a rooftop flagpole by the fluttering stars and stripes.\",does this several times to object this time.,stand over them in a outcrop.,\"walks, quickly back to the bongos, repeats in slow motion as fast as he can.\",0\n17219,anetv_lO2Y1vkpyNc,3163,A person hits a ball and teammates cheer followed by more people playing the game. The sport,A person hits a ball and teammates cheer followed by more people playing the game.,The sport,gold,is seen in the end and returns to wrestling in a person scoring.,continues on with people throwing balls an hitting them as well as teammates cheering and the host finishes speaking.,happens twice as they continue to play.,is played in a couple of shots in several shots followed by people riding in the marathon.,1\n17220,anetv_lO2Y1vkpyNc,3162,A man is seen hosting a news segment that leads into a player standing on a field. A person hits a ball and teammates cheer,A man is seen hosting a news segment that leads into a player standing on a field.,A person hits a ball and teammates cheer,gold,holding the opposing goal.,followed by more people playing the game.,stepping around the pool while others watch on the side.,left on the side.,1\n17221,anetv_zzE2VrQMvbc,5256,A gun is making shots in a open area. person with his face cover,A gun is making shots in a open area.,person with his face cover,gold,is spraying someone with the tool.,is shooting a few pins.,appears walking holding something on his hand.,puts the bottle into his hand.,2\n17222,anetv_zzE2VrQMvbc,5873,\"A black pistol is shown on the bottom middle of the camera aiming out into a grassy field with barricades. Shortly after, the person\",A black pistol is shown on the bottom middle of the camera aiming out into a grassy field with barricades.,\"Shortly after, the person\",gold,begins to move in the field looking for targets to fire his paint balls at.,is seen bending over a ladder cleaning the corner of the tent where the object dripping down at the ends.,continuing with the vacuum and walking through a small wooden structure.,begins demonstrating how to use the cabin on the measurements while sitting in snow.,0\n17223,anetv_zzE2VrQMvbc,5258,Person is walking in the open field by abandoned houses. paintball tactics,Person is walking in the open field by abandoned houses.,paintball tactics,gold,are shown and other rooms to practice.,appears on the screen while a person is walking with the gun staying up.,are being walking toward the mountain and traveling down a steep slope.,start a skate swamp.,1\n17224,anetv_zzE2VrQMvbc,5257,Person with his face cover appears walking holding something on his hand. person,Person with his face cover appears walking holding something on his hand.,person,gold,is holding a selfie stick while holding a green hose.,is taking a drink and put it on the table in front of the table.,takes the things up and hides in a wall.,is walking in the open field by abandoned houses.,3\n17225,anetv_zzE2VrQMvbc,5259,Paintball tactics appears on the screen while a person is walking with the gun staying up. other person appears in the field and the person,Paintball tactics appears on the screen while a person is walking with the gun staying up.,other person appears in the field and the person,gold,pivots the man on the platform.,prepares to shot them.,is running paintball in a field.,moves the man away.,1\n17226,anetv_zzE2VrQMvbc,5875,The person moves from one wooden house to another without being seen and sets up to fire at a target. Three people appear and circles,The person moves from one wooden house to another without being seen and sets up to fire at a target.,Three people appear and circles,gold,drinking fish while generally watching.,appear around them while tips come across the screen.,one another while people watch and ride down the slope.,snarling and never really at each other.,1\n17227,anetv_zzE2VrQMvbc,5874,\"Shortly after, the person begins to move in the field looking for targets to fire his paint balls at. The person\",\"Shortly after, the person begins to move in the field looking for targets to fire his paint balls at.\",The person,gold,hits the object on the wall while still standing around holding the object.,walks to the left of the platform and the man starts to play the ball.,moves back to showing the woman talking with the man to shoot on the camera.,moves from one wooden house to another without being seen and sets up to fire at a target.,3\n17228,lsmdc3007_A_THOUSAND_WORDS-3738,10505,Someone mimes a corpse and spreads his arms wide. He,Someone mimes a corpse and spreads his arms wide.,He,gold,mimes a corpse again.,slides down an incline toward the vault.,tends to american children as he follows the young woman to a tv.,imitates off then shoos the food away.,0\n17229,lsmdc3007_A_THOUSAND_WORDS-3738,10502,Later someone draws on a chalk board as someone watches. Someone,Later someone draws on a chalk board as someone watches.,Someone,gold,circles a stickman on the chalkboard.,puts his nephew in a hand.,cuts each others dance moves.,looks around photographs and wildlife on a sunny cabin.,0\n17230,lsmdc3007_A_THOUSAND_WORDS-3738,10501,Smiling he holds out a breadstick to Samantha. She,Smiling he holds out a breadstick to Samantha.,She,gold,\"hesitates, looking down at the envelope.\",looks at the young woman.,pushes out the details.,snaps it in half.,3\n17231,lsmdc3007_A_THOUSAND_WORDS-3738,10499,\"Someone leans close to the blond woman, picks up a French fry from her plate, places it halfway into his mouth, then smiles at her. The two executives\",\"Someone leans close to the blond woman, picks up a French fry from her plate, places it halfway into his mouth, then smiles at her.\",The two executives,gold,\"stare at someone, who picks up another breadstick and runs it across samantha's cheek, then taps her nose with it.\",\"remain composed as they gaze at each other, then answers one more time.\",\"stare out at the starry sky, then faces someone.\",pause in a parched pan in the opposite direction.,0\n17232,lsmdc3007_A_THOUSAND_WORDS-3738,10508,Someone grabs someone by his collar. Someone,Someone grabs someone by his collar.,Someone,gold,pulls someone into the backyard.,\"steps out, smiling.\",grabs someone by the collar.,jumps back to the demon.,0\n17233,lsmdc3007_A_THOUSAND_WORDS-3738,10509,Someone pulls someone into the backyard. Someone,Someone pulls someone into the backyard.,Someone,gold,\"steps up to the bodhi tree, then holds up one finger.\",lifts up an empty deck near his twin.,strides through and the woman in her blue shirt follows him.,\"opens the door, and brings on a bottle of whiskey.\",0\n17234,lsmdc3007_A_THOUSAND_WORDS-3738,10506,He mimes a corpse again. Someone,He mimes a corpse again.,Someone,gold,jumps up and down.,\"tries to drop, but someone rushes into the house and grabs her mouth.\",emerge in his wide smile.,jerks it down and slings someone over his shoulder.,0\n17235,lsmdc3007_A_THOUSAND_WORDS-3738,10504,Someone draws a slash through the stickman. Someone,Someone draws a slash through the stickman.,Someone,gold,\"runs after someone, who chases him.\",mimes a corpse and spreads his arms wide.,stands at around a counter with a tray.,stares back up at the old girl.,1\n17236,lsmdc3007_A_THOUSAND_WORDS-3738,10503,Someone crosses his hands over his chest. Someone,Someone crosses his hands over his chest.,Someone,gold,hands over the old chair.,smiles warmly as he examines his tools and pistol.,walks past the net.,draws a slash through the stickman.,3\n17237,lsmdc3079_THINK_LIKE_A_MAN-36854,13450,\"Later, in his bedroom, someone strips off someone's vest. Kissing her, he\",\"Later, in his bedroom, someone strips off someone's vest.\",\"Kissing her, he\",gold,licks her dry lips.,presents her apartment with new print.,returns her gaze to his wife who sits at his desk.,backs her up against a dresser and knocks over a lamp.,3\n17238,lsmdc3079_THINK_LIKE_A_MAN-36854,13454,\"Someone lies asleep in someone's bed. Waking up, she\",Someone lies asleep in someone's bed.,\"Waking up, she\",gold,shimmies in the air with his arms folded.,has a phone call on the kitchen phone.,finds a note in the vacant spot beside her.,\"gingerly arranges a silver pencil into her vanity, and at the clock on the wall again on the bed.\",2\n17239,lsmdc3079_THINK_LIKE_A_MAN-36854,13461,\"She opens it to a bookmarked chapter with its heading circled: The 90 - day Rule. Later, she\",She opens it to a bookmarked chapter with its heading circled: The 90 - day Rule.,\"Later, she\",gold,lands to demonstrate herself.,sits in the car at hotel's store.,sits on the steps with the book.,\"talks, unsure of how to get comic wine from a scantily wiggle.\",2\n17240,lsmdc3079_THINK_LIKE_A_MAN-36854,13455,\"Waking up, she finds a note in the vacant spot beside her. With a dejected look, she\",\"Waking up, she finds a note in the vacant spot beside her.\",\"With a dejected look, she\",gold,stares off down the hallway toward another tag drawer.,\"opens it and reads, someone, ran out for breakfast, be right back, someone.\",\"sinks to her knees at the panel, turning to someone who lies asleep.\",\"walks up the staircase, and makes her way across the room.\",1\n17241,lsmdc3079_THINK_LIKE_A_MAN-36854,13449,\"Pulling away, someone gazes into his eyes. Later, in his bedroom, someone\",\"Pulling away, someone gazes into his eyes.\",\"Later, in his bedroom, someone\",gold,strips off someone's vest.,sees someone drinking a cup of coffee.,is asleep on the davenport.,puts his hands in a folder.,0\n17242,lsmdc3079_THINK_LIKE_A_MAN-36854,13459,\"Finding a photo of someone as a boy, dressed in a football uniform and posing on one knee, she picks it up. Returning it, she\",\"Finding a photo of someone as a boy, dressed in a football uniform and posing on one knee, she picks it up.\",\"Returning it, she\",gold,slides the drawer open farther.,sees her mother walking someone.,watches someone get on backwards and stretches to her feet.,knocks on a lamp against the far wall.,0\n17243,lsmdc3079_THINK_LIKE_A_MAN-36854,13453,\"On the wall behind her, a framed painting shows a boxer with both gloves raised triumphantly in the air. Someone\",\"On the wall behind her, a framed painting shows a boxer with both gloves raised triumphantly in the air.\",Someone,gold,has spilled a book.,takes the sword from someone's.,\"picks up up - someone and a broom, then approaches the mansion.\",lies asleep in someone's bed.,3\n17244,lsmdc3079_THINK_LIKE_A_MAN-36854,13457,\"She shifts her thoughtful eyes, then gives a pleased look. Sitting up, she\",\"She shifts her thoughtful eyes, then gives a pleased look.\",\"Sitting up, she\",gold,gazes at the scratch - o - matic.,takes out her purse and smiles.,scoots to the edge of the bed.,crosses out the open window and turns to face him.,2\n17245,lsmdc3079_THINK_LIKE_A_MAN-36854,13448,\"As she embraces her, a horrified look crosses his face. Pulling away, someone\",\"As she embraces her, a horrified look crosses his face.\",\"Pulling away, someone\",gold,slumps down into the chair.,gazes into his eyes.,motions for someone to follow her.,presses her face to the side of his arms.,1\n17246,lsmdc3079_THINK_LIKE_A_MAN-36854,13463,\"Someone enters, clutching a bag in his mouth. He\",\"Someone enters, clutching a bag in his mouth.\",He,gold,frantically tries a bite.,bursts into the room open and someone.,holds a box in one hand and a drink carrier in the other.,\"raises the tap boy's head, causing for a brief time as he sees him.\",2\n17247,lsmdc3079_THINK_LIKE_A_MAN-36854,13451,\"Kissing her, he backs her up against a dresser and knocks over a lamp. He\",\"Kissing her, he backs her up against a dresser and knocks over a lamp.\",He,gold,\"gazes up at her as she slides her silky tank top over her head, then lowers herself over him.\",rubs his shoulders as he approaches someone's father on the back.,\"glances between his shoulders, and brings it out for a wink.\",\", someone leaves the kitchen.\",0\n17248,lsmdc3079_THINK_LIKE_A_MAN-36854,13462,\"Later, she sits on the steps with the book. Someone\",\"Later, she sits on the steps with the book.\",Someone,gold,'s dresses fit someone's glaring windows.,lowers the carriage to a shape in her doorway.,\"enters, clutching a bag in his mouth.\",shuts the phone case at someone and's manager.,2\n17249,lsmdc3079_THINK_LIKE_A_MAN-36854,13464,He holds a box in one hand and a drink carrier in the other. He,He holds a box in one hand and a drink carrier in the other.,He,gold,shakes an energy drink.,glances back at her principal album.,fills the sack with cash.,sets the food down.,3\n17250,lsmdc3079_THINK_LIKE_A_MAN-36854,13458,\"Sitting up, she scoots to the edge of the bed. She\",\"Sitting up, she scoots to the edge of the bed.\",She,gold,moves his hand apart to record another one.,paces nervously beneath the small curved floorboards.,sinks to her feet.,opens a drawer in a bedside table.,3\n17251,lsmdc3079_THINK_LIKE_A_MAN-36854,13456,\"With a dejected look, she opens it and reads, someone, ran out for breakfast, Be right back, someone. She\",\"With a dejected look, she opens it and reads, someone, ran out for breakfast, Be right back, someone.\",She,gold,\"shifts her thoughtful eyes, then gives a pleased look.\",\"suddenly springs up and leaves the room, then dances with her and goes to hug someone.\",is gently on her reading.,compares it as someone plays with a bottle of cigarette smoking.,0\n17252,lsmdc0002_As_Good_As_It_Gets-46570,14383,He is been talking to the bartender. He,He is been talking to the bartender.,He,gold,\"has no hands, and notices.\",\"sits there, just another someone on a bar stool with his heart breaking.\",shows the last strip of information on the canvas.,\"picks her up, drinks something, and shakes them again.\",1\n17253,lsmdc0006_Clerks-48739,5223,Someone makes a metal face. Someone,Someone makes a metal face.,Someone,gold,shows a reaction from her bag.,laughs and shakes his head.,flips the wheel to one side.,\"enters the kitchen, wearing a hint of a smile.\",1\n17254,lsmdc0006_Clerks-48739,5226,\"Someone leans back in his chair, staring up at the tv. He\",\"Someone leans back in his chair, staring up at the tv.\",He,gold,\"stands, points the remote, clicks the tv off, and ponders.\",sees someone handing someone to the sofa with a wistful expression.,\"is slightly oblivious, taps a cue at the end of the club.\",quickly cuts the hair out of his eye in a frown.,0\n17255,lsmdc0006_Clerks-48739,5225,The theme to Star Wars plays. Someone,The theme to Star Wars plays.,Someone,gold,arranged a high table.,squeezed around one of two tight boxes and stopped.,\"leans back in his chair, staring up at the tv.\",lays on the plain - wall paper.,2\n17256,lsmdc0006_Clerks-48739,5228,\"Someone locks the door and walks away, while someone sings for the small crowd. The can pops off and someone\",\"Someone locks the door and walks away, while someone sings for the small crowd.\",The can pops off and someone,gold,staggers back a few steps.,takes his muscular anchors to free them.,gives the camera to a person who slips out landing on the rope from the van in the barn.,plods in next to two rows of double doors.,0\n17257,lsmdc0006_Clerks-48739,5227,\"He stands, points the remote, clicks the tv off, and ponders. Someone\",\"He stands, points the remote, clicks the tv off, and ponders.\",Someone,gold,does a menacing pretty waddles and holds a bus over her head.,\"locks the door and walks away, while someone sings for the small crowd.\",\"tackles someone, and kills little people outside.\",\"gives him a small amount of notes, then leaves.\",1\n17258,anetv_2fndjkCHsEY,5721,A close up of a fooseball table is shown with a group of children and an adult playing. The kids,A close up of a fooseball table is shown with a group of children and an adult playing.,The kids,gold,start spinning around the pool and end by looking around the area.,move the poles all around while laughing with one another.,continue eating everything and talking to the camera and hands on the table.,continue playing with one another in a close house.,1\n17259,anetv_2fndjkCHsEY,17031,Children play a game of table soccer in teams of two. A goal,Children play a game of table soccer in teams of two.,A goal,gold,is in the beach.,is scored across the table by a defensive figurine player.,is scored in a turn and a player hits the ball with a yellow ball.,has bleakly the game where right stands of the center goal.,1\n17260,anetv_2fndjkCHsEY,5722,The kids move the poles all around while laughing with one another. The kids,The kids move the poles all around while laughing with one another.,The kids,gold,continue to play on the table.,continue painting along the fence and looking back and front.,continue to jive as people failing and then their moves.,continue playing on the bikes around a course.,0\n17261,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3132,He strides at a breathtaking pace. A winged blue Pixie,He strides at a breathtaking pace.,A winged blue Pixie,gold,formations appears beside him.,lies at the bottom of the stairs.,appears at his feet.,watches him from high up on the top of a gold picture frame.,3\n17262,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3134,It's piled high with bric - a - brac. Someone,It's piled high with bric - a - brac.,Someone,gold,is been turned on a piglet.,starts a pastry with a new piercing.,finds a plain wooden casket.,\"serves over, his eyes wide.\",2\n17263,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3135,Someone finds a plain wooden casket. He,Someone finds a plain wooden casket.,He,gold,mashes someone 'ice cream.,makes someone a handful of notebook.,steps up to the tile bars and grabs the collar of his top.,\"pulls the casket forward, unfastens it, and opens the lid.\",3\n17264,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3129,\"He makes his way deeper in to the room, along the aisles between the stacks. He\",\"He makes his way deeper in to the room, along the aisles between the stacks.\",He,gold,slaps someone's chest.,is finally the door to her bed.,roves around as he continues searching the vast space.,nods while looking at someone.,2\n17265,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3136,Another stone hangs from it in the shape of a tear. Someone,Another stone hangs from it in the shape of a tear.,Someone,gold,glances across at someone.,reaches for his gun.,checks his pocket watch.,sits at a table.,0\n17266,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3133,He turns round and gazes back the way he came. He,He turns round and gazes back the way he came.,He,gold,hears the sound of shining footsteps on the apartment floor.,sees a dead figure in the head.,steps closer to someone.,\"walks very slowly and deliberately, drawn towards a clothed table.\",3\n17267,lsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3131,\"He passes books, statues, gold, and silver ornaments. He\",\"He passes books, statues, gold, and silver ornaments.\",He,gold,strides at a breathtaking pace.,gets under the canvas cover.,sets his wooden pouch at the railing.,links a map of someone's western - un - bound casket as he rides along into the sunny snowfall.,0\n17268,anetv_AbzyaqyFI0Y,7438,A person is seen riding a kayak along a rough river and spinning himself around. More shots of him riding around shown and he,A person is seen riding a kayak along a rough river and spinning himself around.,More shots of him riding around shown and he,gold,gets back down with his shots on the board.,rides himself back down in the water while still water skiing.,continues to perform the flips.,continues to flip in the water.,3\n17269,lsmdc1041_This_is_40-8952,15586,\"Now, a laptop shows a young someone performing in his heyday. Someone\",\"Now, a laptop shows a young someone performing in his heyday.\",Someone,gold,\"watches with a mustached 30 - something and a hip, young woman.\",watch from the passive blinds.,\", someone works at his computer while he processes an iv on one leg.\",approaches a brotherly embrace.,0\n17270,lsmdc0043_Thelma_and_Luise-68499,16927,\"It does look like an Army. More police cars have joined, and from every direction, police cars\",It does look like an Army.,\"More police cars have joined, and from every direction, police cars\",gold,\"are swarming across the desert, although none are in front of them.\",are pulling at the wrecked car.,bend across the street with someone.,join up to a dusty clapboard part.,0\n17271,lsmdc0043_Thelma_and_Luise-68499,16929,Someone is looking way up ahead in the distance. Behind them,Someone is looking way up ahead in the distance.,Behind them,gold,is a swarm of thunder as frost eaters appear and fall out.,\", the camera moves back down the aisle of them.\",\"is a car mounted with stainless steel mirrors, large mobiles pipes.\",is a huge wall of dust created by all the police cars following them.,3\n17272,lsmdc0043_Thelma_and_Luise-68499,16928,\"More police cars have joined, and from every direction, police cars are swarming across the desert, although none are in front of them. Someone\",\"More police cars have joined, and from every direction, police cars are swarming across the desert, although none are in front of them.\",Someone,gold,is looking way up ahead in the distance.,searches the top of someone's rear door.,wipes a cloth across her eye then rises.,\"sprawls across the road, if even a sign - blown tree.\",0\n17273,lsmdc0043_Thelma_and_Luise-68499,16930,Behind them is a huge wall of dust created by all the police cars following them. Someone,Behind them is a huge wall of dust created by all the police cars following them.,Someone,gold,has tears streaming down her face as she realizes there is absolutely no escape.,\"looks across at someone, who is still standing in the doorway.\",moves up and down on the lanes shedding the chairs.,holds up the launcher.,0\n17274,lsmdc0043_Thelma_and_Luise-68499,16935,\"Finally, they get about twenty yards from the edge and someone slams on the brakes. People\",\"Finally, they get about twenty yards from the edge and someone slams on the brakes.\",People,gold,\"turn out to see people driving in their boat, checking their dresses in several directions.\",are just waiting for the cars to catch up.,\"go toward the restaurant, the crowd of people dig in in her direction as someone stands on the porch of a building.\",\"force someone get up, and we see the group of men approaching the room.\",1\n17275,lsmdc0043_Thelma_and_Luise-68499,16931,Someone has tears streaming down her face as she realizes there is absolutely no escape. She,Someone has tears streaming down her face as she realizes there is absolutely no escape.,She,gold,puts an arm around her and kisses her easily.,continues barreling towards it without slowing down.,moves off the porch and into the main house at the street of the countryside.,watches as someone gently shakes someone's hand.,1\n17276,lsmdc0043_Thelma_and_Luise-68499,16934,\"The car is bouncing and flying across the desert. Finally, they get about twenty yards from the edge and someone\",The car is bouncing and flying across the desert.,\"Finally, they get about twenty yards from the edge and someone\",gold,fom her boot breathing on with her hand on their knees.,slams on the brakes.,people get ready.,jumps off the counter.,1\n17277,lsmdc0043_Thelma_and_Luise-68499,16926,A steady stream of state police cars pulls out of the parking lot with lights flashing while other policemen are running to their cars still parked in the lot. It,A steady stream of state police cars pulls out of the parking lot with lights flashing while other policemen are running to their cars still parked in the lot.,It,gold,see two men in hotel reception making shots that of the bikers.,\", she is someone.\",does look like an army.,run as one possibly agents barricade being wheeled down.,2\n17278,lsmdc0043_Thelma_and_Luise-68499,16932,She continues barreling towards it without slowing down. All the police cars,She continues barreling towards it without slowing down.,All the police cars,gold,are all silent as the woman sits near the backseat and driving.,stripe them as she goes through swinging rounds of a subway drawn dirt path.,are still following about a half a mile behind.,continue to curb a light blur across the walls of the plaza.,2\n17279,anetv_I9kOPQ3J5HA,5538,A man clips a rope to the front of the woman's harness. He,A man clips a rope to the front of the woman's harness.,He,gold,continues braiding the vine.,speaks to the loop over the rock.,moves to it and shows a bronze flag.,ties the rope into a knot.,3\n17280,anetv_I9kOPQ3J5HA,5537,A woman puts a harness on. A man,A woman puts a harness on.,A man,gold,struggles with the ropes.,kicks a tire outside.,clips a rope to the front of the woman's harness.,ties a black belt.,2\n17281,anetv_PKYg6_rs3LQ,17302,They begin to rapidly chop stumps of wood on the ground. They then,They begin to rapidly chop stumps of wood on the ground.,They then,gold,continue to run and hit a field.,kick each other in a certain way.,stop chopping the wood.,pile flips other other person who went near the pinata.,2\n17282,anetv_PKYg6_rs3LQ,17301,They are holding up axes. They,They are holding up axes.,They,gold,\"are swinging on a rope, then rushes towards the end of the field.\",begin to rapidly chop stumps of wood on the ground.,continue dancing on the sand.,have landed in sand.,1\n17283,anetv_PKYg6_rs3LQ,17300,Two men are standing in a forest. They,Two men are standing in a forest.,They,gold,are using batons at the practice.,are playing a style of croquet.,are holding up axes.,are trying to decorate a christmas tree.,2\n17284,anetv_PKYg6_rs3LQ,16962,\"Two young men holds axes in the woods. Then, the young men\",Two young men holds axes in the woods.,\"Then, the young men\",gold,pile away on a wooden roof to begin.,splits logs in the woods.,play cricket in the circle in a game of campsite.,practice martial performing martial arts moves in different venue.,1\n17285,lsmdc3053_PARENTAL_GUIDANCE-25535,2901,He holds out a phone. She hesitantly,He holds out a phone.,She hesitantly,gold,takes out the phone.,eyes him suspiciously as she steps away.,meets his friend's gaze.,takes it and dials.,3\n17286,lsmdc3053_PARENTAL_GUIDANCE-25535,2902,She hesitantly takes it and dials. She,She hesitantly takes it and dials.,She,gold,does a dance using her to a room.,listens for a moment then drops it.,looks at her ipod and recoils.,\"breathes from its breath, and stares at the pickle.\",1\n17287,anetv_9XyrLUWZl40,7907,A boy puts together a rubix cube and excitedly drops it. He,A boy puts together a rubix cube and excitedly drops it.,He,gold,jumps up and claps his hands together so happy about it.,puts the wax out and starts chest removal.,\"the line, a timer is stopped and he looks over the clock.\",the camera shows off his flat knife.,0\n17288,anetv_9XyrLUWZl40,7909,\"Another boy is doing it with only his feet. It's a competition, the audience\",Another boy is doing it with only his feet.,\"It's a competition, the audience\",gold,\"toy as students go over the pole, high up and lands to the side.\",is watching as the people competing are being timed.,is walking back and forth between them lifting muscles.,ties up at the end of it.,1\n17289,anetv_UYe6JGaUZzg,20076,A little girl is performing on a stage. She,A little girl is performing on a stage.,She,gold,begins to perform a ballet routine.,is tossing and spinning a baton.,sets down a picture on the sand.,turns around and applauds her.,1\n17290,anetv_UYe6JGaUZzg,20077,She is tossing and spinning a baton. She also,She is tossing and spinning a baton.,She also,gold,\"switches a spot, then sweeps her hair down that one time.\",does a handstand on the knees.,hula hoops to the back of her head.,does several dance moves.,3\n17291,anetv_UYe6JGaUZzg,16568,A young girl in a pink tutu twirls a baton on stage. The girl,A young girl in a pink tutu twirls a baton on stage.,The girl,gold,does a flip and split on stage.,stairs practicing her routine and performing with a baton on its chest.,throw her baton in the air and spits on her body.,comes down and goes up on a beam.,0\n17292,anetv_r8qq4rU0tPE,19136,The person continues skiing and then two males appear talking to one another. The person skiing then,The person continues skiing and then two males appear talking to one another.,The person skiing then,gold,surfs throughout the rough waters before a native.,goes from the top of the mountain to the bottom and then hides behind a boulder of ice.,finishes on the side and ends with a close up of the horses.,shows several detail throughout the video.,1\n17293,anetv_r8qq4rU0tPE,19135,Someone begins skiing and then a man in an orange snow suit begins talking. The person continues skiing and then two males,Someone begins skiing and then a man in an orange snow suit begins talking.,The person continues skiing and then two males,gold,appear talking to one another.,begin to build a tender castle.,are rollerblading down a shrubbery and passing on sidewalks.,and wearing a rope then looking over a ski machine.,0\n17294,anetv_VcQHv5PHb-M,4203,The men play darts as well as show their faces close up and take off their shirts. They,The men play darts as well as show their faces close up and take off their shirts.,They,gold,begin to show how their fencing tools are seen.,play more games as well as dress up as characters while still zooming in on a dart.,referees around and then move closer to one another.,continue to play the balls and begin making them and waving to the camera.,1\n17295,anetv_VcQHv5PHb-M,3350,One is talking to the camera while the other is playing darts. They,One is talking to the camera while the other is playing darts.,They,gold,\"demonstrate how to do different throws, showing the names of the moves between throws.\",shake with their hand and hitting a ball back and forth on the waves.,stand on one side of the room on the equipment.,are then seen playing dodge ball.,0\n17296,anetv_VcQHv5PHb-M,4202,A young boy is seen speaking to the camera while another walks around him from behind. The men,A young boy is seen speaking to the camera while another walks around him from behind.,The men,gold,play darts as well as show their faces close up and take off their shirts.,continue on one another while two to the camera and move around a carnival and watch girls skate around the people in the end.,perform tricks together while still speaking to one another and end by with another.,continues to play with one another while various shots are shown of other animals that come onto the canvas.,0\n17297,anetv_VcQHv5PHb-M,3349,Two boys are in a room. One,Two boys are in a room.,One,gold,is to open a large knife.,is talking to the camera while the other is playing darts.,is two men playing cricket in a dimly lit room.,dips a toothbrush in the sink and rip off the wall.,1\n17298,anetv_VcQHv5PHb-M,3351,\"They demonstrate how to do different throws, showing the names of the moves between throws. One boy\",\"They demonstrate how to do different throws, showing the names of the moves between throws.\",One boy,gold,goes across the desert throwing a ball that eventually posed him in a circle over wall ball over the net building.,does the splits then split a bit.,notices the other about and does a flip since he takes his shirt off while sitting on some tubes.,\"lies on the ground next to a dart as the video ends, pretending to be dead.\",3\n17299,anetv_M96TST6CN4M,4754,A large man is seen bending down on his knees moving his arms around and looking off into the distance. The man,A large man is seen bending down on his knees moving his arms around and looking off into the distance.,The man,gold,finishes his routine with others laying down and grabs the boy sitting out.,continues to show several moves in the drinking on the floor and zooming out of frame.,bends down and speaks to the camera as the customers fall down.,continues moving all around on the mat performing various martial arts moves and moving back and fourth to the camera.,3\n17300,anetv_qp3OfC0dCOs,4277,The dad comes and throws the ball over and the boys run after it. They continue to play and one of the little boys gets it in his net and trows it and when it lands they both,The dad comes and throws the ball over and the boys run after it.,They continue to play and one of the little boys gets it in his net and trows it and when it lands they both,gold,jump backwards to hit it.,watch then the boy scores times in the same kayak.,\"get the ball into the sand balls too, make participating, get the ball different the motorcycle.\",go after it again.,3\n17301,anetv_qp3OfC0dCOs,4276,Outside in the backyard two little boys in matching swim suits are playing with nets trying to catch a ball. They,Outside in the backyard two little boys in matching swim suits are playing with nets trying to catch a ball.,They,gold,play pool with someone.,are both trying to get the ball in their own net basically playfully fighting over whose going to get it.,is now engaged in a game of ping pong with a group of men with red ball around them.,play for the handstands and trying to hit them.,1\n17302,anetv_WoB4lSNBDww,19451,They use a plastic tool to smooth it out. They,They use a plastic tool to smooth it out.,They,gold,see the gangsters on the divan's edge of a metal structure.,see a tennis team in white.,add metal hooks to the wall.,use a blue paint to wipe down the fence.,2\n17303,anetv_WoB4lSNBDww,19449,They roll up paper and dip it in water. They,They roll up paper and dip it in water.,They,gold,fall into a bucket of water.,stick the paper to the wall.,keep each other's eyes.,each multi her fingernail clean.,1\n17304,anetv_WoB4lSNBDww,6662,A woman is hanging wall paper on a wall. She,A woman is hanging wall paper on a wall.,She,gold,unrolls wallpaper from her wall.,smooths it out with a plastic tool.,stands in circles with her peers at the peeling paper.,picks up a small brush.,1\n17305,anetv_WoB4lSNBDww,19450,They stick the paper to the wall. They,They stick the paper to the wall.,They,gold,use a plastic tool to smooth it out.,wander in and leading them.,run out of the vault and continue playing.,do not barricade themselves.,0\n17306,anetv_WoB4lSNBDww,19448,A woman is wiping a wall with a rag. They,A woman is wiping a wall with a rag.,They,gold,put clothes into a box.,are laying on the floor next to the tiles.,roll up paper and dip it in water.,wipe up the mop off with a rag.,2\n17307,anetv_Xueo66Jb8T4,6065,\"A quick picture of a red and black tool is shown, then a man is talking and clips of people removing shingles play in between moments shown when the man talks. The tool is now shown on its own and the brand and logo\",\"A quick picture of a red and black tool is shown, then a man is talking and clips of people removing shingles play in between moments shown when the man talks.\",The tool is now shown on its own and the brand and logo,gold,is displayed on an outdoor field with the finished part of the roof.,appear on screen and several clips and scenes of the is shown.,appears on a computer screen.,is displayed on the screen to the upper right.,3\n17308,anetv_Xueo66Jb8T4,6066,The tool is now shown on its own and the brand and logo is displayed on the screen to the upper right. Now there,The tool is now shown on its own and the brand and logo is displayed on the screen to the upper right.,Now there,gold,is white video of a crowd of people gathered in the dark.,are various people seated in a sidewalk on the sidewalk.,are clips of people on the roof using the tool to remove shingles and once again the man appears talking in between clips.,is a countdown from the screen shown as some headlights and decree displays.,2\n17309,anetv_Xueo66Jb8T4,6068,A black screen appears and it has a list with a lot of white words on it and the title is Shingle Hog Savings. The man talking and the clips of the man using the shingle machine,A black screen appears and it has a list with a lot of white words on it and the title is Shingle Hog Savings.,The man talking and the clips of the man using the shingle machine,gold,is shown close up in the tire of the truck using an electric tool to cut products screen.,jack leather is talking and the same man demonstrates the same technique that the top is taking and how it welds.,are shown again on two fence.,\"play until a white outro screen appears that include the brand name, logo, product info and website.\",3\n17310,anetv_Xueo66Jb8T4,6064,\"A white screen appears with a black brand name that say's the shingle hog and it has a picture of a hog in the o of the word hog. A quick picture of a red and black tool is shown, then a man is talking and clips of people\",A white screen appears with a black brand name that say's the shingle hog and it has a picture of a hog in the o of the word hog.,\"A quick picture of a red and black tool is shown, then a man is talking and clips of people\",gold,\"riding metal and walking on the snowy, or, down into the rolling snow of a gren grassy area.\",riding it in fellowship to an inner yard and the small trees are upwards.,are shown on a long road at the end.,removing shingles play in between moments shown when the man talks.,3\n17311,anetv_mRgS35iyhYE,13273,The people crash into one another back and fourth. They,The people crash into one another back and fourth.,They,gold,continue to drive around and hit one another.,do not acknowledge cars again.,continue to perform and swing to others while the others gather around the audience.,continue sailing through the water while people watch in the end.,0\n17312,anetv_mRgS35iyhYE,16023,A man is seen sitting in a bumper car and begins driving around. Several people,A man is seen sitting in a bumper car and begins driving around.,Several people,gold,are riding around in the cars bumping into one another.,are seen driving around in bumper cars and riding around on the sand.,\"walk around the ring and begin driving, speaking to one another.\",swarm around the cars and run down the street waving to camera.,0\n17313,anetv_mRgS35iyhYE,13272,A large group of people are seen playing bumper cars with one another. The people,A large group of people are seen playing bumper cars with one another.,The people,gold,skate all over a course while others watch on the side.,continues moving around one another in the background.,continue to dance with one another and end by sliding a pinata.,crash into one another back and fourth.,3\n17314,lsmdc3071_THE_DESCENDANTS-5521,17191,\"Later, someone sits next to someone, while someone reads in a chair facing the foot of the bed. Someone\",\"Later, someone sits next to someone, while someone reads in a chair facing the foot of the bed.\",Someone,gold,holds his mobile to his ear.,leads a taller girl into the room.,holds his cellphone to his ear.,gazes curiously at someone as she goes by.,1\n17315,lsmdc3071_THE_DESCENDANTS-5521,17192,Someone gives a halfhearted wave. Someone,Someone gives a halfhearted wave.,Someone,gold,covers his eyes with his shaking hand.,\"rises, looking at his sign window.\",\"brings - a nyc of indian style, then passes tucked into her arms.\",\"glances around, then joins her friend at someone's bedside.\",3\n17316,lsmdc0011_Gandhi-52802,12703,\"In the chaos an old man calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet. Someone\",\"In the chaos an old man calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet.\",Someone,gold,is on the back of a big open truck that is stationary in the street.,smiles as he kills two men.,'s bed lies on a table.,tosses off his typewriter.,0\n17317,lsmdc0011_Gandhi-52802,12702,\"A group of policemen barge into the room, knocking tables and salt and paper in every direction with their lathis, seizing some of the volunteers for arrest. In the chaos an old man\",\"A group of policemen barge into the room, knocking tables and salt and paper in every direction with their lathis, seizing some of the volunteers for arrest.\",In the chaos an old man,gold,finishes chopping the barbecue.,\"calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet.\",appears behind a table with mayor ask motions for the burmese flag.,\"is just emerging from the bar, peeling and knocking his balls.\",1\n17318,anetv_wQHMoyzJx_w,8038,We see a lady in a kitchen talking and cooking. The lady,We see a lady in a kitchen talking and cooking.,The lady,gold,cuts a potato and puts it in the water.,cooks lettuce on a cake in the adjacent room.,adds the ingredients in the pan for the lemonade.,adds pasta to a pan and talks to the camera.,0\n17319,anetv_wQHMoyzJx_w,8041,The lady peels the skin off the potato easily. We,The lady peels the skin off the potato easily.,We,gold,see the tool sheet the finished product.,see the shoe sharpener and put the knife on top.,see the closing screen.,see the floor and the lady add more information for the lady.,2\n17320,anetv_wQHMoyzJx_w,8037,We see a white opening scene. We,We see a white opening scene.,We,gold,see an individual getting a wheelchair when the lady breathes.,see a lady in a kitchen talking and cooking.,see the men sitting high as and somewhere else.,see something on the wall outside a studio and see the trainer dancing in a chair in the gym.,1\n17321,anetv_wQHMoyzJx_w,8039,The lady cuts a potato and puts it in the water. The lady,The lady cuts a potato and puts it in the water.,The lady,gold,puts the potato in cold water.,\"cut the potato to the lady, then dips the egg and stirs the vegetable and eats it.\",wipes a paste using some rectangular ingredient.,\"shows us a new piece of chocolate, and serves the potatoes, then it won't make a big sandwich.\",0\n17322,anetv_wQHMoyzJx_w,8040,The lady puts the potato in cold water. The lady,The lady puts the potato in cold water.,The lady,gold,puts the tool into the mug.,peels the skin off the potato easily.,adds various liquids to the jug.,uses the wood to groom the dog.,1\n17323,lsmdc3012_BRUNO-4204,881,She tentatively sits on one man's back. He,She tentatively sits on one man's back.,He,gold,puts his mouth to hers.,stares solemnly at a lantern.,holds out his microphone.,offers him a drink.,2\n17324,anetv_PjcTk1hcf4k,12364,A girl is shown speaking to the camera and begins pointing to a tree. She,A girl is shown speaking to the camera and begins pointing to a tree.,She,gold,continues scrubbing the bowl while looking up to the camera.,than hangs ornaments on the tree and leads back into the women speaking.,begins to polish the objects while speaking to the camera.,begins showing her products as well as a bulldog on her finger.,1\n17325,anetv_PjcTk1hcf4k,10624,Two women talk to the camera from a stage in front of a large sign before cutting away to a young woman standing in front of and demonstrating the use of an upside down Christmas tree. Two women,Two women talk to the camera from a stage in front of a large sign before cutting away to a young woman standing in front of and demonstrating the use of an upside down Christmas tree.,Two women,gold,\"stand doing a hard dance in the street, ends by moving back and forth as they walk.\",clink to the interior of an airplane.,\"sit on stage, one holding an electronic tablet, while talking to each other and then to the camera.\",begin paint a table with a paper and cutting them paper.,2\n17326,anetv_PjcTk1hcf4k,10625,\"Two women sit on stage, one holding an electronic tablet, while talking to each other and then to the camera. The scene\",\"Two women sit on stage, one holding an electronic tablet, while talking to each other and then to the camera.\",The scene,gold,cuts away to one young woman talking to the camera and then kneeling in front of an upside down christmas tree.,shows a series of women standing in the street playing a paved track and in the streets of the gym while the crowd watches.,\"ends with a man laying on a table, then puts a rim onto her leg.\",changes and then again with people enjoying the music and doing a weird gesture while we along with some music hanging in stage.,0\n17327,anetv_PjcTk1hcf4k,12363,Two women are seen speaking to the camera while various decorations are sitting inbetween them. A girl,Two women are seen speaking to the camera while various decorations are sitting inbetween them.,A girl,gold,is shown speaking to the camera and begins pointing to a tree.,drinks from a bottle and holds a bottle washing it.,is shown walking in the sledgehammer followed by a woman hosting a news segment describing the two of them.,seated with a string at the end.,0\n17328,lsmdc0053_Rendezvous_mit_Joe_Black-71457,6573,\"The Board meeting has broken up, clusters of members have lingered, exchanging post - mortems. And enraged Quince\",\"The Board meeting has broken up, clusters of members have lingered, exchanging post - mortems.\",And enraged Quince,gold,is too much for someone at the end of death.,comes in and someone gets up without up at someone.,flicks at the sheer roots and almost instantly actually comes to a halt in the end of the board.,\"has cornered someone, out of earshot of the others.\",3\n17329,lsmdc0009_Forrest_Gump-50577,3692,Someone raises his fist into the air. Someone,Someone raises his fist into the air.,Someone,gold,steps away from someone.,\"watches in horror, scratching his hands.\",grabs someone's throat.,gets up from the couch.,0\n17330,lsmdc0009_Forrest_Gump-50577,3696,Someone smiles as she tries to run through the water. The crowd,Someone smiles as she tries to run through the water.,The crowd,gold,moves slowly towards the goal.,\"is wild, choking her to the prow.\",parts as someone runs into the pool.,\"moves wide with her, applauding and graceful movements.\",2\n17331,lsmdc0009_Forrest_Gump-50577,3683,A policeman looks around as he sneaks over to the audio circuit board. The policeman,A policeman looks around as he sneaks over to the audio circuit board.,The policeman,gold,pulls the patch cords out of the audio board.,proudly shows the flag on the photo of the patrolman.,steps back to show someone's.,gets to his feet behind short - waving dark - haired soldiers.,0\n17332,lsmdc0009_Forrest_Gump-50577,3685,\"Someone continues to speak into the microphone, even though no one can hear what he is saying. Someone\",\"Someone continues to speak into the microphone, even though no one can hear what he is saying.\",Someone,gold,\"enters the classroom, happy and bear, keeping never from him.\",slurps his fork of food and looks down.,looks over and notices the policeman.,hides a silent steward then glances to someone.,2\n17333,lsmdc0009_Forrest_Gump-50577,3699,\"A Black Panther, named someone, steps over and pulls the shades down. Another Black Panther named masai\",\"A Black Panther, named someone, steps over and pulls the shades down.\",Another Black Panther named masai,gold,grabs someone and pats him down.,wears a pearl necklace.,lies in a gold chair with a hand on his finger.,welds a golden pin.,0\n17334,lsmdc0009_Forrest_Gump-50577,3686,Someone looks over and notices the policeman. Someone,Someone looks over and notices the policeman.,Someone,gold,remains alone at the court.,\"rushes over toward the audio board, pushes the policeman away and grabs his night stick.\",laughs and is suddenly alerted.,\", then leans close, lights a cigarette in the rain.\",1\n17335,lsmdc0009_Forrest_Gump-50577,3687,\"Someone rushes over toward the audio board, pushes the policeman away and grabs his night stick. Another protester\",\"Someone rushes over toward the audio board, pushes the policeman away and grabs his night stick.\",Another protester,gold,fires down the roof with his crutches.,\"regains the wheels, wrestles them off, races over an obstacle and crashes down heavily.\",grabs the policeman and pulls him away.,falls to his shoulders and strides out of the garage.,2\n17336,lsmdc0009_Forrest_Gump-50577,3691,Someone steps over to someone and pats him on the shoulder. Someone,Someone steps over to someone and pats him on the shoulder.,Someone,gold,smiles he yanks off his pants.,pushes a button off the couch.,watches him and carries the board across the room.,raises his fist into the air.,3\n17337,lsmdc0009_Forrest_Gump-50577,3698,\"Someone stands at an open window and looks at the White House. A Black Panther, named someone,\",Someone stands at an open window and looks at the White House.,\"A Black Panther, named someone,\",gold,is lying in bed bed smoking a cigarette.,is standing by the apartment that.,\"approaches a green van, runs out of the top.\",steps over and pulls the shades down.,3\n17338,lsmdc0009_Forrest_Gump-50577,3684,The policeman pulls the patch cords out of the audio board. Someone,The policeman pulls the patch cords out of the audio board.,Someone,gold,walks off for a long run.,\"continues to speak into the microphone, even though no one can hear what he is saying.\",reaches out and grabs the front heart.,frantically pulls the final card up and finds it toward an empty cabin.,1\n17339,lsmdc0009_Forrest_Gump-50577,3689,\"Isabel, someone and another protester try to plug the tangled mess of wires back into the audio board. Someone\",\"Isabel, someone and another protester try to plug the tangled mess of wires back into the audio board.\",Someone,gold,\"rolls into his walkie, then stares straight.\",continues to speak into the microphone.,tosses the police out of a closet as loads of equipment stored in the snare men.,grabs it as he eyes his corridor.,1\n17340,lsmdc0009_Forrest_Gump-50577,3682,Someone looks at the crowd as he speaks. A policeman,Someone looks at the crowd as he speaks.,A policeman,gold,emerges from the helicopter as the two men in a seat seemingly walk along the sidewalk.,has a dark stain on his brow and down at a cafe.,stands over the field facing the troops.,looks around as he sneaks over to the audio circuit board.,3\n17341,lsmdc0009_Forrest_Gump-50577,3695,Someone jumps down into the crowd and runs. Someone,Someone jumps down into the crowd and runs.,Someone,gold,\"lands on top of someone, who gets out of the shadows and leaps down to the remains of his horse.\",smiles as she tries to run through the water.,kicks his opponent side across.,\"puts on the headscarf, filling someone with his.\",1\n17342,lsmdc0009_Forrest_Gump-50577,3694,Someone rushes off the stage as someone makes her way out into the pool. Someone,Someone rushes off the stage as someone makes her way out into the pool.,Someone,gold,jumps down into the crowd and runs.,\"parched with its glassy teeth and excitedly ripped back, painted tanned on the railing.\",carefully enters her berth and spots the dead mother.,\"ceases onward, eyeing the keys and waiting to try to get it.\",0\n17343,lsmdc0009_Forrest_Gump-50577,3690,Someone plugs in the right patch cord. Someone,Someone plugs in the right patch cord.,Someone,gold,\"lies on her belly, the hyena adjusts the strap.\",looks at the massive crowd.,leaps underneath the elephant finger.,sneaks between two heavily - fronted windows.,1\n17344,lsmdc0009_Forrest_Gump-50577,3697,People walk past the protesters who are camping out on the lawn. Someone,People walk past the protesters who are camping out on the lawn.,Someone,gold,tosses the cards to someone and follows it out from the open door.,stands at an open window and looks at the white house.,observes together a little boy with his eyes cast in a frown.,\"accompanies people, who is clearly still mid sprint to himself.\",1\n17345,anetv_14AnvDNV5BI,1313,\"Then, the man grans the handle of the machine. After, the man\",\"Then, the man grans the handle of the machine.\",\"After, the man\",gold,pulls the handle of la machine to do abs.,holds a tool on the screw table.,takes the key from someone's bicycle.,shows a hammer with the first finished tool and then drags lower it.,0\n17346,lsmdc1015_27_Dresses-79726,8347,Someone is in the kitchen. She,Someone is in the kitchen.,She,gold,\"pulls through the doorway into the dining room, where the children are having breakfast.\",puts down the cup she is washing and goes to the door and sees someone through the peephole.,spots a doll and makes a u - turn.,\"ignores him, nods slightly.\",1\n17347,lsmdc1015_27_Dresses-79726,8345,Someone looks down a street past a shop and up the steps to someone's building. He,Someone looks down a street past a shop and up the steps to someone's building.,He,gold,slips in as another resident comes out.,scribbles with a kayaker pattern but stops for the hint of a cross.,has been asleep on a sofa.,smiles at the camera.,0\n17348,lsmdc1015_27_Dresses-79726,8346,He slips in as another resident comes out. Someone,He slips in as another resident comes out.,Someone,gold,follows him to the bar.,is in the kitchen.,meets someone by the elbow with the slaps at someone's shoulder.,stares at the recruits.,1\n17349,lsmdc1015_27_Dresses-79726,8348,\"Someone, eyes closed, hopes he has n't gone too far. He\",\"Someone, eyes closed, hopes he has n't gone too far.\",He,gold,sniffs someone's wrist.,talks into a dictaphone.,starts to go with the other dogs.,blow off the boy's long sleeve and smells it.,1\n17350,lsmdc1015_27_Dresses-79726,8344,\"Someone looks tearful, but pulls herself together. Someone\",\"Someone looks tearful, but pulls herself together.\",Someone,gold,\"picks up her baby's brown red coat, takes it in her right hand, reads it.\",crouches behind someone as people watch a gramophone dance.,walk down to a band out of a low corridor.,looks down a street past a shop and up the steps to someone's building.,3\n17351,anetv_uj0UBMgR2gk,1284,We see a man in an orchestra making faces. The man then,We see a man in an orchestra making faces.,The man then,gold,stands and plays the violin.,\"stops playing and has his ear pierced, watched by two men and players.\",wipes wiping his face before leaving a shoe on his right.,stands up and talks again.,0\n17352,anetv_EavcvmrlVLQ,16822,We see men playing a game of soccer and scoring repeatedly indoors. We,We see men playing a game of soccer and scoring repeatedly indoors.,We,gold,see the man hug the other man.,see a player being interviewed at the soccer practice.,see a goalie jumping around and a man shoot and score.,see title screens and white screens.,2\n17353,anetv_EavcvmrlVLQ,16823,We see a goalie jumping around and a man shoot and score. We,We see a goalie jumping around and a man shoot and score.,We,gold,see a happy young man fanning his shirt.,see the score of basketball players and show the results.,see an ending title screen.,see targets on the screen.,0\n17354,anetv_pniQHSjY7dc,8480,A man bends down and lifts the side of a weight. He then beings,A man bends down and lifts the side of a weight.,He then beings,gold,lifting another ball in the air duct.,ironing it down.,to push the weight up and down.,rollerblading until another is over in a shop.,2\n17355,anetv_pniQHSjY7dc,5698,He lifts a weight with his knees. He then,He lifts a weight with his knees.,He then,gold,pauses at his chest before lifting it over his head and dropping it to the ground again.,lifts the weight over his head before setting it down.,grips a barbell around his head and drops the barbell then flips one.,demonstrates how to play ups over long.,0\n17356,lsmdc1044_Pride_And_Prejudice_Disk_Two-89572,10951,Someone cringes as she remembers her family's improper behavior. Then she,Someone cringes as she remembers her family's improper behavior.,Then she,gold,\"looks at someone as the shape holds up her anxiety, screaming.\",pushes herself back next to someone and helps her into the crib.,\"remains beneath an elevated highway, gripping his steering wheel as the express increases.\",looks down at the letter once more.,3\n17357,anetv_lgXtDr9pNAk,18150,He talks about it a little bit jokingly. Then he,He talks about it a little bit jokingly.,Then he,gold,shows us how to make small little grain balls with a umbrella.,comes up as a worker gives slap his pictures.,\"begins playing them, trying to keep the ball, and trying to get it.\",tried to adjust it a little more.,3\n17358,anetv_lgXtDr9pNAk,18149,He's putting little metal pieces on the metal to keep them held. He,He's putting little metal pieces on the metal to keep them held.,He,gold,spreads the bagpipes on a show box and removing.,wets it into bag and begins scraping some of the melted and back cleaning.,talks about it a little bit jokingly.,parts and hammers tiles into the mechanism.,2\n17359,anetv_lgXtDr9pNAk,18148,A man up on the roof putting up some metal pieces through the shingles. He,A man up on the roof putting up some metal pieces through the shingles.,He,gold,stretches on a wall and drags them along.,scrapes the shingles off of the roof.,cleans a window down in front of a glass roof.,'s putting little metal pieces on the metal to keep them held.,3\n17360,anetv_6Z4Qg_fNo0Q,14522,Several fish move pass the man. the man then,Several fish move pass the man.,the man then,gold,swims closer to the pool.,reaches around his friend.,begins swimming in place.,blows a carton of fruit.,2\n17361,anetv_6Z4Qg_fNo0Q,14334,Many fish swim around the man while he moves his hands around and another person swims into frame. The men,Many fish swim around the man while he moves his hands around and another person swims into frame.,The men,gold,continues moving their legs around and looking to the camera as well as chuckles and hugging the person.,continue swimming around the fish and the camera pans around the area.,continue blowing and motion in the water.,continue surfing and smiling to the camera.,1\n17362,anetv_6Z4Qg_fNo0Q,14521,A man is under water wearing snorkeling gear. several fish,A man is under water wearing snorkeling gear.,several fish,gold,are sitting against the wall behind him.,get into the raft.,move pass the man.,poke across a bar.,2\n17363,anetv_3j2d27w3x5Q,3511,\"As he begins to cook, he grabs the ingredients and puts them in to the pan and starts to cook. The chef then\",\"As he begins to cook, he grabs the ingredients and puts them in to the pan and starts to cook.\",The chef then,gold,comes back holding a sandwich and now ingredients to it to walk the other on the package.,adds spaghetti in a pot and stirs the sauce until he test the noodles.,places a pan on the plate and cruises some counter broth to the tops of a grated swiss cheese.,takes a bite and turns it in a plant pot.,1\n17364,anetv_3j2d27w3x5Q,3512,The chef then adds spaghetti in a pot and stirs the sauce until he test the noodles. Once the noodles are done he,The chef then adds spaghetti in a pot and stirs the sauce until he test the noodles.,Once the noodles are done he,gold,tastes them and drains them.,puts the noodles in a cup to put some more vinegar on a strainer.,comes in and shows the packaged salad.,explains and rolls the omelet of salt out.,0\n17365,anetv_3j2d27w3x5Q,7195,A man is seen speaking to the camera and mixing ingredients into a pan. He,A man is seen speaking to the camera and mixing ingredients into a pan.,He,gold,continues mixing the ingredients together in a bowl then spreading icing over the camera.,continues eating the mix while continuing to use a mixer to wash dishes in his hands.,stirs around the ingredients while adding more as well as putting noodles in a pot.,pours the ingredients into glass and mixes them all together into a cloudy shaker.,2\n17366,anetv_3j2d27w3x5Q,7196,He stirs around the ingredients while adding more as well as putting noodles in a pot. He,He stirs around the ingredients while adding more as well as putting noodles in a pot.,He,gold,puts the noodles into the pan stirring it around and presenting it on a plate.,continues adding more ingredients into the container as he describes another egg mixture.,puts the chicken up as well as putting it to the counter and pours it out with a plate and baking tray.,add eggs and puts it on the cake.,0\n17367,anetv_3j2d27w3x5Q,3510,\"The man is then shown again and various ingredients that he's about to use are featured. As he begins to cook, he\",The man is then shown again and various ingredients that he's about to use are featured.,\"As he begins to cook, he\",gold,\"talks eating the remainder of the food, bearing friend's name and a name of the coach.\",rest a mix of utensils and vinegar while toast on the front of the dish.,is back down the street very fast and then goes.,grabs the ingredients and puts them in to the pan and starts to cook.,3\n17368,anetv_3j2d27w3x5Q,3513,Once the noodles are done he tastes them and drains them. Once the meal is completed he then,Once the noodles are done he tastes them and drains them.,Once the meal is completed he then,gold,continues in detail to be good food.,pours it into a bowl.,takes the indicated out of an ross containers and the dish.,cuts the dough and starts to wrangle a large red cookie into it.,1\n17369,anetv_RNAUncQEASo,5896,She begins to clip the dogs hair while it is standing on top of a grooming table. She,She begins to clip the dogs hair while it is standing on top of a grooming table.,She,gold,stands the dog up and continues to clip the dog's hair.,change into the women and begin brushing the dogs hair with their food.,takes a red coat and she hangs it in a knapsack and shampoo.,shows the other smile of the camera.,0\n17370,anetv_RNAUncQEASo,3982,A woman begins shaving the dog. She,A woman begins shaving the dog.,She,gold,starts a drink onto the filter.,sprays soft brown hair.,puts the cream over her legs.,picks up a brush and brushes the dogs hair.,3\n17371,anetv_RNAUncQEASo,5895,A woman comes onto the screen to introduce a video about dog grooming and show the tools that she uses to clip the dog's hair. She,A woman comes onto the screen to introduce a video about dog grooming and show the tools that she uses to clip the dog's hair.,She,gold,begins to clip the dogs hair while it is standing on top of a grooming table.,\"then shows the hands tied back up the person mans dog, she is dusts it back.\",pets her paw with a small razor and electric comb and styling gel from different angles.,is on how to use the fur coat and brushed on a black paw.,0\n17372,anetv_RNAUncQEASo,3981,A small white dog is standing on a table. A woman,A small white dog is standing on a table.,A woman,gold,holds out a wooden table and uses a large brush to cut down the woman's hair.,is blow drying her hair.,begins shaving the dog.,is lifting weight up to her chest.,2\n17373,anetv_IkXuooaGnCc,2751,Letters are shown on a screen. A blue bucket,Letters are shown on a screen.,A blue bucket,gold,is being sprayed with wax.,is placed onto a canvas.,is gathered next to it.,is put into a sink.,3\n17374,anetv_IkXuooaGnCc,2752,A blue bucket is put into a sink. A man,A blue bucket is put into a sink.,A man,gold,is in a bathroom with a toilet.,starts mopping the hardwood floors.,is scrubbing a horse using a sprayer.,is sitting by a display of bikes talking.,1\n17375,anetv_IkXuooaGnCc,2753,A man starts mopping the hardwood floors. He,A man starts mopping the hardwood floors.,He,gold,starts washing the shoes and use the surface to clean the windows.,uses a vacuum to crawl down the walls of the room.,mops the tile in the bathroom.,moves his hands up and down on the bed.,2\n17376,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2225,\"Someone suddenly stands. he speaks in a strong, clear voice. Sudden silence. someone\",\"Someone suddenly stands. he speaks in a strong, clear voice.\",Sudden silence. someone,gold,kneels back by the horseless carriage.,looks around the room at the astounded faces.,\"stands there, close, staring his torso.\",\"stands still, quince gaze frozen.\",1\n17377,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2224,\"With a huge effort or will, someone tears his gaze upon the ring. Someone suddenly stands. he\",\"With a huge effort or will, someone tears his gaze upon the ring.\",Someone suddenly stands. he,gold,\"speaks in a strong, clear voice.\",shoots his shotgun at the blazing skiptracer.,has a lot of balls determination anything along both them because his bat is just missing the windshield.,\"pauses at the threshold, then leans toward someone and presses the web on someone's back.\",0\n17378,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2223,\"The ring fills the screen. streams of blood flow across the surface. With a huge effort or will, someone\",The ring fills the screen. streams of blood flow across the surface.,\"With a huge effort or will, someone\",gold,streaks around and wrings out the contents.,sits on the tabletop with her.,tears his gaze upon the ring.,climbs into the goblin tent pedestal.,2\n17379,anetv_DCyLmohIwkQ,4919,He sets up the bow and gets his arrows. Next we,He sets up the bow and gets his arrows.,Next we,gold,see the players get ready to jump.,see the goal being retrieved.,see a couple of arrows with a wing of stone arrows.,see him outdoors as he walks across some grass towards a target.,3\n17380,anetv_DCyLmohIwkQ,4922,After a few tries he gets a bulls - eye. He,After a few tries he gets a bulls - eye.,He,gold,goes back to the point.,sets his bow and his arrows down onto a wooden platform.,puts on a white shirt and colored tie.,pretends to someone himself.,1\n17381,anetv_DCyLmohIwkQ,4921,He pulls out an arrow and and sets it in his bow. After a few tries he,He pulls out an arrow and and sets it in his bow.,After a few tries he,gold,touches it and darts in shot.,gets a bulls - eye.,stops messing and holds it up.,tries the secured hilton.,1\n17382,anetv_DCyLmohIwkQ,4920,Next we see him outdoors as he walks across some grass towards a target. He,Next we see him outdoors as he walks across some grass towards a target.,He,gold,holds up a man's arm as he shoots her from the air.,walks towards the camera.,starts picking the croquet ball and throws it across the yard.,pulls out an arrow and and sets it in his bow.,3\n17383,anetv_DCyLmohIwkQ,4918,A man slowly walks over and takes some equipment off of the wall as some dramatic music plays. He,A man slowly walks over and takes some equipment off of the wall as some dramatic music plays.,He,gold,laughs and laughs into the camera.,\"talks to a camera about the cave neck, mouthing his youtube video video speaking to the microphone.\",sets up the bow and gets his arrows.,does n't like what he is doing.,2\n17384,anetv_mTtBz5d83C4,10037,There are several people sledding down a snowy slope in round snow tubes. They,There are several people sledding down a snowy slope in round snow tubes.,They,gold,ride them in the water.,are going down the steep snowy slope at high speed.,ride around and are shown riding down a hill together.,flutter either side also move.,1\n17385,anetv_mTtBz5d83C4,10038,They are going down the steep snowy slope at high speed. One of the people going down the slope,They are going down the steep snowy slope at high speed.,One of the people going down the slope,gold,\"is flipping in the end of the line, smiling.\",is making them way down a hill.,raises his hand to his friend as he goes downhill.,has a decent thought.,2\n17386,lsmdc0022_Reservoir_Dogs-59293,17688,\"Someone brings his hands up to his face, screaming, and falls to the ground. Someone\",\"Someone brings his hands up to his face, screaming, and falls to the ground.\",Someone,gold,gazes solemnly into his mother's eyes.,moves towards her as she sinks out onto the water.,comes up to him and gives him a gun.,\"lies perfectly still, except for his chest heaving.\",3\n17387,lsmdc0022_Reservoir_Dogs-59293,17685,\"Someone fires three times, hitting someone with every one. The two men\",\"Someone fires three times, hitting someone with every one.\",The two men,gold,\"plummet to the ground, gun aimed.\",\"split, then turn away.\",\"fall to their knees, firing at each other.\",shoot back over the gaping hole.,2\n17388,lsmdc0022_Reservoir_Dogs-59293,17689,\"Someone lies perfectly still, except for his chest heaving. Someone\",\"Someone lies perfectly still, except for his chest heaving.\",Someone,gold,\"is shot full of holes, but still on his knees, not moving.\",hangs up the feather.,rolls the stomach down.,reacts to his cold strain.,0\n17389,lsmdc0022_Reservoir_Dogs-59293,17686,\"The two men fall to their knees, firing at each other. Someone\",\"The two men fall to their knees, firing at each other.\",Someone,gold,brings his gun around on someone and shoots him.,of the men are warriors as they clap and shoot.,falls on his broomstick near deck.,\"take the mat to the table, hit them on the back, and then sit on their knees.\",0\n17390,lsmdc0022_Reservoir_Dogs-59293,17684,\"Someone scared shitless for his father, gun locked on someone. Someone\",\"Someone scared shitless for his father, gun locked on someone.\",Someone,gold,\"fires three times, hitting someone with every one.\",descends into the packed empty grill.,has drops someone's bag!,seizes someone in a choke hold.,0\n17391,lsmdc0022_Reservoir_Dogs-59293,17690,Finally he grabs the satchel of diamonds and runs out the door. Someone,Finally he grabs the satchel of diamonds and runs out the door.,Someone,gold,tries to stand but falls down.,\"holds a nazi coin, horrified.\",shoots the tire around and grins.,realizes he won't notice it.,0\n17392,lsmdc0022_Reservoir_Dogs-59293,17687,Someone brings his gun around on someone and shoots him. Someone,Someone brings his gun around on someone and shoots him.,Someone,gold,catches his hand and picks him up.,shoots someone twice in the face.,casts through the window blinds and finds the army's cockpit.,screws up a third device.,1\n17393,lsmdc0022_Reservoir_Dogs-59293,17691,Someone tries to stand but falls down. He somehow,Someone tries to stand but falls down.,He somehow,gold,continues kicking the left and ends swinging his arms up and leaves to clean him.,makes it to where someone lies.,fights them forward with a stick and falls away on his own.,manages to shield his inert.,1\n17394,anetv_QaNQrUpmmgo,2446,A woman in an orange shirt is sitting on an exercise machine. She,A woman in an orange shirt is sitting on an exercise machine.,She,gold,flips the kid down on a mat.,begins working out on the exercise machine.,begins to do a routine on a boxing machine.,does a gymnastics routine on the balance beam and does multiple flips.,1\n17395,anetv_QaNQrUpmmgo,2447,She begins working out on the exercise machine. People,She begins working out on the exercise machine.,People,gold,continues talking as she sits outside the room again and looks around.,are walking past a window behind her.,begins exercising using a recorder on his lap.,are at the end of their encounter and shown walking through the room.,1\n17396,lsmdc3046_LARRY_CROWNE-21840,12477,\"As someone heads away, someone turns back to her friend. Someone\",\"As someone heads away, someone turns back to her friend.\",Someone,gold,shuts the passenger door and makes his way down the long steps.,glances out the window.,gently caresses her daughter's cheek's an open palm.,nods sadly and stares at her mother then nods.,1\n17397,anetv_WxlJBRUU1A0,18974,A woman remains seated as she speaks and knits. The woman,A woman remains seated as she speaks and knits.,The woman,gold,stops knitting and points to some of the patterns on the knitted piece as she speaks.,goes down the stairs to the doors to hop out.,is arriving lightly to the chair.,is shown speaking to the camera and showing her hair as well as wave to the camera.,0\n17398,anetv_WxlJBRUU1A0,4027,A woman is seated and talking. She,A woman is seated and talking.,She,gold,is showing how to knit an item.,tunes up a hair dryer and begins to play.,is playing an accordian.,lifts up a male baby and throws it down while she watches.,0\n17399,anetv_WxlJBRUU1A0,4028,She is showing how to knit an item. She,She is showing how to knit an item.,She,gold,demonstrates how to use gifts to trim a tree.,rubs glitter on her finger.,gives it to him and speaks to him with a final eye.,is using a needle and yarn to knit.,3\n17400,anetv_IjULOynkK5I,6502,A woman is seen speaking to the camera and leads into her clapping and hosting various exercise classes. The woman,A woman is seen speaking to the camera and leads into her clapping and hosting various exercise classes.,The woman,gold,is seen spinning on bikes with others as well as performing squats and other exercises with her class.,then begins reading a five on the wall while speaking to the camera.,continues dancing all around and showing off her plate and leads out walking on grass.,finishes by holding up the violin then grips her arms by pulling her close.,0\n17401,anetv_IjULOynkK5I,14129,She is instructing a class. They then,She is instructing a class.,They then,gold,do several other exercises.,begin to interact with each other with a teacher.,bend down and dance while laughing.,add each other for the class and march forward.,0\n17402,anetv_IjULOynkK5I,14128,She then gets on a bike. She,She then gets on a bike.,She,gold,is instructing a class.,continues flipping on the low aisle.,are walking down the road and doing.,gets handed a bike.,0\n17403,anetv_IjULOynkK5I,14127,A woman stands in a small gym. She then,A woman stands in a small gym.,She then,gold,\"holds a rubik's cube, and run.\",demonstrates the exercise machine.,gets on a bike.,picks up a baton.,2\n17404,anetv_vGKdr_au240,10232,She slides across a floor with some curling equipment. This,She slides across a floor with some curling equipment.,This,gold,is shown over a fence.,group is wearing a plaid and waterproof ballet outfit.,sprays the box.,is followed by two men in speedos using their curling equipment.,3\n17405,anetv_vGKdr_au240,13862,She throws a curling ball down the ice. Two people,She throws a curling ball down the ice.,Two people,gold,talk about the players.,begin swimming and throwing the ball back and forth.,are in front of the ball brushing the ice.,\"join in on the grass, and the girl watches as the other team scores and teammates runs.\",2\n17406,anetv_vGKdr_au240,13863,Two people are in front of the ball brushing the ice. Two men in bathing suits,Two people are in front of the ball brushing the ice.,Two men in bathing suits,gold,stand up and continues big polo.,swim in the water and holding the camera.,talks to the camera.,are tossing a beach ball around.,3\n17407,anetv_vGKdr_au240,10233,\"Even with bikinis involved, curling is still boring. Next these same two men, still in Speedos and sneakers\",\"Even with bikinis involved, curling is still boring.\",\"Next these same two men, still in Speedos and sneakers\",gold,stroking another shadow and candid white as the group cameraman films them.,are on the video a title and picture of a young woman.,are seen playing catch with a beach ball on the same slick floor.,being instructed in the face of leading it.,2\n17408,anetv_vcCwvRYqU2I,15431,The man chooses a rake from four. The man,The man chooses a rake from four.,The man,gold,kneels and slides one of them down a slide.,releases the other and raps for the ball with the second axe.,grabs a lift from the shingle and speaks.,throws some grass in the garbage.,3\n17409,anetv_vcCwvRYqU2I,15435,The man sprinkles leaves into the yard and rakes them up. We then,The man sprinkles leaves into the yard and rakes them up.,We then,gold,see the finished screen.,see a dried flower.,see the twigs and leaves again.,see the person pushing the knife.,2\n17410,anetv_vcCwvRYqU2I,15430,A man rakes his yard and talks to the camera. The man,A man rakes his yard and talks to the camera.,The man,gold,chooses a rake from four.,jumps off and jumps up to shovel in the snow.,continues to mow the lawn with his family around.,uses roller brush to clean leaves on a sidewalk in a playground.,0\n17411,anetv_vcCwvRYqU2I,15434,The man throws his rake into the yard. The man,The man throws his rake into the yard.,The man,gold,bends forward and puts his hands up and ending with the jump up on the screen.,sprinkles leaves into the yard and rakes them up.,falls off the tree and lands on the ground.,places the brush in the blower and continues to scraping the hair extremely quickly.,1\n17412,anetv_vcCwvRYqU2I,15429,We see a tree with leaves blowing int he wind. A man,We see a tree with leaves blowing int he wind.,A man,gold,mows a lawn while a lady sits on the sidewalk.,uses a leaf blower to show the leaves.,is mowing a lawn in a home.,rakes his yard and talks to the camera.,3\n17413,anetv_vcCwvRYqU2I,15432,The man throws some grass in the garbage. The man,The man throws some grass in the garbage.,The man,gold,waves and cuts off his green trunk.,picks up and smells a twig with leaves.,uses a rake to apply paint off the wall.,swings off the board onto the grass.,1\n17414,anetv_vcCwvRYqU2I,15433,The man picks up and smells a twig with leaves. The man,The man picks up and smells a twig with leaves.,The man,gold,releases the harmonica and enters the room.,dumps the wallpaper in the trash.,throws his rake into the yard.,removes the wooden bench and ducks a canopy tree.,2\n17415,lsmdc0041_The_Sixth_Sense-67906,13804,Someone's fingers move to the volume dial. He,Someone's fingers move to the volume dial.,He,gold,pours a five pills into each of the contents.,drops the box and chases someone outside.,turns it way up.,arrives and places the chain around the alien.,2\n17416,lsmdc3045_LAND_OF_THE_LOST-21366,4268,Someone hops on someone for a piggyback. Someone,Someone hops on someone for a piggyback.,Someone,gold,\"gets out of the car, destroying the drive.\",carries the primate to the top of a dune.,gradually settles from under her breath.,returns to his date.,1\n17417,anetv_a42c_maArv4,3086,A woman races back from the net to hit the incoming volleyball. A fellow team member also,A woman races back from the net to hit the incoming volleyball.,A fellow team member also,gold,watches a game of soccer games.,comes to high fives during the games these times.,hits the ball and sends it across the net.,run to prevent them from getting hit.,2\n17418,anetv_a42c_maArv4,3085,The camera shakes on an image of an indoor volleyball court. A woman,The camera shakes on an image of an indoor volleyball court.,A woman,gold,is then seen posing with yarn and demonstrating how to use the hula hoop.,sits on the dirt fom table.,races back from the net to hit the incoming volleyball.,leads an orange team aiming a beam of judges.,2\n17419,anetv_jEN2smSwZ-o,8055,She lays down on a black medical chair and the man pierces her ear's tragus with medical tools. The lady,She lays down on a black medical chair and the man pierces her ear's tragus with medical tools.,The lady,gold,grabs a pink toothbrush and wash his face after brushing it and taking the orange off her face.,places a bottle on the desk where the person plugs in another book.,\"looks at herself and her new piercing in the mirror, smiles and gives two thumbs up.\",\"bends, picks up two bottle of soap and puts them back on and wipes them, then buffs, continues the floor clothes.\",2\n17420,anetv_jEN2smSwZ-o,8054,A man with tattoed arms swabs the ear of young lady with an ear swab. The lady,A man with tattoed arms swabs the ear of young lady with an ear swab.,The lady,gold,talks while pointing to several bowls set as the man prepares a cup.,stand up and looks at herself in the mirror.,is seated outside a window.,peels the hair from her face.,1\n17421,lsmdc3084_TOOTH_FAIRY-40115,3433,\"Someone hesitates, his stick raised and the puck at his feet. An arrow\",\"Someone hesitates, his stick raised and the puck at his feet.\",An arrow,gold,continues through the ring.,\"bashes him away from the puck, knocking him down.\",makes his way through the waters.,reaches someone's disfigured mouth.,1\n17422,lsmdc3084_TOOTH_FAIRY-40115,3435,\"Behind the Ice Wolves bench, the coach angrily chews his gum and glares at someone. The burly player\",\"Behind the Ice Wolves bench, the coach angrily chews his gum and glares at someone.\",The burly player,gold,lifts a little over and throws the ball at someone's feet.,\"returns to the bench and takes a seat, his gaze downcast.\",takes a swig of his martini martini.,smashes a gold bar into the player's belt.,1\n17423,lsmdc3084_TOOTH_FAIRY-40115,3437,He finds someone and the kids waiting in the parking lot. He,He finds someone and the kids waiting in the parking lot.,He,gold,pauses and walks to the door.,musters a curt wave and pulls into a parking space.,shoots a glance at the window and blows out smoke.,turns to the window.,1\n17424,lsmdc3084_TOOTH_FAIRY-40115,3434,As someone irritably shakes his head. Someone,As someone irritably shakes his head.,Someone,gold,sweeps his hand off a makeshift ledge to watch the chef's body series.,curls into the bed and sits with a phone.,steps up to him raise his arms.,pushes himself onto his hands and knees.,3\n17425,lsmdc3084_TOOTH_FAIRY-40115,3436,\"Later, someone drives home. He\",\"Later, someone drives home.\",He,gold,holds a gun and holds it against the handle.,\"runs across the bedroom, his paces away and faces the woman.\",finds someone and the kids waiting in the parking lot.,races toward the back of the van near the house.,2\n17426,lsmdc3015_CHARLIE_ST_CLOUD-780,3578,\"Now, someone strolls into a hobby and toy shop. Three teen girls\",\"Now, someone strolls into a hobby and toy shop.\",Three teen girls,gold,lie on the bed.,creep over on cliff.,dance in unison as the someone run off.,stand behind the counter.,3\n17427,anetv_soGmSXFO7wI,713,\"A woman and several others follow, doing the same. The winners\",\"A woman and several others follow, doing the same.\",The winners,gold,\"celebrate, holding up flags and hugging joyfully.\",show on the gq map.,bow to him and cheer him on.,are opened then the game continues rolling.,0\n17428,anetv_soGmSXFO7wI,712,\"He spins, then throws the ball as far as he can. A woman and several others\",\"He spins, then throws the ball as far as he can.\",A woman and several others,gold,pass at a bar.,interviewed cheer each other.,\"follow, doing the same.\",remain back on the stage.,2\n17429,anetv_soGmSXFO7wI,711,\"A man walks onto a field before a crowd, holding a heavy ball into the air. He\",\"A man walks onto a field before a crowd, holding a heavy ball into the air.\",He,gold,changes to the camera and continues doing tricks.,takes off his lacrosse pole.,\"spins, then throws the ball as far as he can.\",climbs onto the bicycle and pulls the rope away.,2\n17430,anetv_whwserG3XGc,16050,Team wearing yellow uniform are running in a field. photographers,Team wearing yellow uniform are running in a field.,photographers,gold,wheat preparing to dance together in various positions.,are standing in he ield taking pictures of the yellow and blue team.,dance routines with great signs as people celebrate.,are playing a game.,1\n17431,lsmdc3064_SPARKLE_2012-4282,1818,\"Someone enters, followed by someone. She\",\"Someone enters, followed by someone.\",She,gold,posts someone's arm.,holds up a small umbrella and pours whisky into the glass.,looks at needle marks in someone's arm.,looks straight up and see a rusty metal box with rifles lid on it.,2\n17432,lsmdc3064_SPARKLE_2012-4282,1817,She fiddles with her tangled hair. Someone,She fiddles with her tangled hair.,Someone,gold,shakes her head ecstatically.,paints the base of her bedspread.,\"enters, followed by someone.\",laughs at the phone as she reads.,2\n17433,lsmdc3024_EASY_A-11337,13383,\"Saturday morning, someone opens the card again. Painting her toenails, she\",\"Saturday morning, someone opens the card again.\",\"Painting her toenails, she\",gold,\"uses a sign for a scissor, and lights it on.\",gardener back and falls about half an inch ahead.,\"sings to a dog on her bed, then paints the dog's nails.\",thoughtfully slips her finger under her friend's eye.,2\n17434,lsmdc3024_EASY_A-11337,13381,\"Friday afternoon, someone opens a greeting card that reads, to my granddaughter, you're my pocket full of sunshine.. She\",\"Friday afternoon, someone opens a greeting card that reads, to my granddaughter, you're my pocket full of sunshine..\",She,gold,having really bad experience.,shows colorful photos criquet about her.,see someone walks through the hobbit house while someone continues over and stands up.,finds a $5 someone inside.,3\n17435,lsmdc3024_EASY_A-11337,13385,\"Sunday morning, someone repeatedly opens and shuts the card. She\",\"Sunday morning, someone repeatedly opens and shuts the card.\",She,gold,\"glances about, then shuts the card and joins the dog on her bed.\",holds up her purse.,enters and shuts the door behind him.,holds out a tissue.,0\n17436,anetv_4kbtdUz2M3M,6901,\"Various people are seen wandering around a beach, followed by waves moving along the water and people sitting in the water. Several people\",\"Various people are seen wandering around a beach, followed by waves moving along the water and people sitting in the water.\",Several people,gold,are seen riding a roller along the water while others watch on the side.,follow to the sides and the continue to walk in the water.,are shown driving around while many getting into various areas as well as using the kite into the water.,surfing the waves while people on the sidelines watch the athletes move.,3\n17437,anetv_RTnNxbG2V5o,7477,A young boy is seen sitting in a bumper car as well as several shots of a carnival being shown. The people then,A young boy is seen sitting in a bumper car as well as several shots of a carnival being shown.,The people then,gold,drive around the game bumping into one another constantly and end by stopping the car.,rotate on another track and the man waving at the camera as well as walking away skateboards down a street.,ride around a bumper car riding down the road while bumping and speaking to the camera.,begin riding in bumper cars riding around in bumper cars with one another and moving in circles as well.,0\n17438,anetv_RTnNxbG2V5o,15468,They ride the cars around the plateform. Several others,They ride the cars around the plateform.,Several others,gold,run as the boards hit the water.,are on a train going in circles.,are riding the other rides at the carnival.,follow as they skate on the road.,2\n17439,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12906,\"He turns into a wide corridor licked by flaming torches, and hurries along until he reaches the top of a narrow flight of stone steps. Someone\",\"He turns into a wide corridor licked by flaming torches, and hurries along until he reaches the top of a narrow flight of stone steps.\",Someone,gold,\"looks puzzled, suddenly the manager comes up and flies outside.\",follows him down the steps into a gloomy corridor with rough stone walls.,\"rolls up his hand, runs off, and runs down into the water.\",halts from the tracks on the right of a balcony through the glass window.,1\n17440,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12907,Someone follows him down the steps into a gloomy corridor with rough stone walls. Riddle,Someone follows him down the steps into a gloomy corridor with rough stone walls.,Riddle,gold,approaches a heavy wooden door.,strides to the edge and knocks the piece of broken tile from the head on.,appears across the earth in a group filled with white devices.,addresses out the message pages.,0\n17441,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12908,Riddle approaches a heavy wooden door. He,Riddle approaches a heavy wooden door.,He,gold,takes out his wand and looks around warily before throwing open the door to reveal a shadowy figure bending over a large wooden box.,steps forward with a flashlight in his hand.,arrives with a cold smile at the bottom of the door.,\"wedges it into the grate, and then opens it.\",0\n17442,anetv_0cscG-qOaQY,16850,The woman cut paper and wrap a small box into a christmas paper. woman,The woman cut paper and wrap a small box into a christmas paper.,woman,gold,gets a basket with tissue paper and put some ornaments onto the tree.,cuts all the christmas tree covered with cellophane.,put a third on the cellophane for a jack sign.,grab a red and golden paper and wraps a whiskey box.,3\n17443,anetv_0cscG-qOaQY,134,\"A person puts gift paper on top a cactus in a pot. Then, the person\",A person puts gift paper on top a cactus in a pot.,\"Then, the person\",gold,shows to wrap a cylinder gift and puts an ornament on top.,puts the sandwich into a hole and mix ingredients into a bowl.,\"puts pasta on the plate, helps the person put ingredients on a piece.\",\"takes the dough and puts dry ingredients in a bowl, after they person mix it in a yellow bowl.\",0\n17444,anetv_0cscG-qOaQY,16849,Woman grabs a box and a wrap a box on blue paper. the woman,Woman grabs a box and a wrap a box on blue paper.,the woman,gold,places some pieces of metal in the table.,cuts the paste pieces off the wrapping paper onto pieces.,cut paper and wrap a small box into a christmas paper.,flips the shoe and put it on the wrapping paper.,2\n17445,anetv_0cscG-qOaQY,136,\"Then, the person shows to wrap a square gift and made a paper flower. After, the person\",\"Then, the person shows to wrap a square gift and made a paper flower.\",\"After, the person\",gold,makes the perfect contact and moves the pumpkin towards the ground.,shows the penny and baking paper and takes different colors.,shows to make a rectangle wrapping using a red cube.,\"cuts the woman's toenails, and the news shows how to wrap a red ribbon around pieces.\",2\n17446,lsmdc0016_O_Brother_Where_Art_Thou-55367,18649,Someone waves his hat at the radio building as singers in faux hillbilly outfits with various musical instrument cases get out of the second car. Someone,Someone waves his hat at the radio building as singers in faux hillbilly outfits with various musical instrument cases get out of the second car.,Someone,gold,\"sits in the background, playing and singing a slow blues.\",peer out a stack of seats while stroking one of the large men.,swoops upstairs then completely steer between the men in which disappears.,comes up to a cigarette in his hand.,0\n17447,lsmdc0016_O_Brother_Where_Art_Thou-55367,18650,\"Someone sits in the background, playing and singing a slow blues. The three convicts, holding coffee cups,\",\"Someone sits in the background, playing and singing a slow blues.\",\"The three convicts, holding coffee cups,\",gold,gaze into the fire.,move slowly toward the ladies.,have their room gathered up the front of the table.,are watching the gramophone as someone looks uncomfortable.,0\n17448,anetv_I_6Ok72DnJA,12003,He peels the sticky side from the backing paper. He,He peels the sticky side from the backing paper.,He,gold,draws out his finger and checks for out much g..,sees some crumpled papers on his desk.,is now applying the sticky side of the paper to the wall.,\"glances up at someone and reads it, then turns a page.\",2\n17449,anetv_I_6Ok72DnJA,12002,A man is hanging wallpaper on a wall. He,A man is hanging wallpaper on a wall.,He,gold,is demonstrating how to wash the walls beige.,is applying tiles to the ceiling in his room.,peels the sticky side from the backing paper.,spreads down a white carpet to the carpet.,2\n17450,anetv_I_6Ok72DnJA,12004,He is now applying the sticky side of the paper to the wall. He,He is now applying the sticky side of the paper to the wall.,He,gold,wipe his face.,adds another juice to a lime while his legs are undone.,repeats this several more times on different parts of the wall.,finds mayo on the paper and puts it on.,2\n17451,anetv_7QvvqWJRwNo,18416,A child stands in the tire and jumps for joy. An adult,A child stands in the tire and jumps for joy.,An adult,gold,is running with a baby in a swing.,walks through the angel holding a stick in his hand while shaking hands with a couple.,gets up and pulls both tires.,walks out on the left side of the slide.,2\n17452,anetv_7QvvqWJRwNo,18415,People are sliding down a snowy slope with inflated tires. A child,People are sliding down a snowy slope with inflated tires.,A child,gold,is riding on a pier.,holds an orange bottle attached to a ankle wash and is washing buckets.,stands in the tire and jumps for joy.,is sitting on a back wheel on a skateboard.,2\n17453,lsmdc0011_Gandhi-52278,5394,He glances at someone again. He,He glances at someone again.,He,gold,\"stares out of his window, and his broken eyes lift.\",\"disappears into space, unaware that someone is at the table.\",\"makes an envelope fly around his lap, then drops the covers.\",\"looks around, then turns and marches off briskly shoving his way through the crowd.\",3\n17454,lsmdc0011_Gandhi-52278,5389,\"Most of the faces are gaunt and lean. And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain\",Most of the faces are gaunt and lean.,\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain\",gold,\"wanders forward, revealing a intense view of his name on the screen.\",is quick no sound.,starts back onto the platform.,shoves his way through to confront someone down the little aisle that was being made for him.,3\n17455,lsmdc0011_Gandhi-52278,5391,\"Then he looks around at the crowd, suspiciously, a touch of inner fear, then back to someone. It has the cold assurance of a lawyer, and the Captain\",\"Then he looks around at the crowd, suspiciously, a touch of inner fear, then back to someone.\",\"It has the cold assurance of a lawyer, and the Captain\",gold,is a very attractive man exhibition.,is going on with a book that says keep some money and has her too.,comes to his left and a look of applause on his friends.,is a little shaken by it.,3\n17456,lsmdc0011_Gandhi-52278,5388,\"Someone moves through the silent crowd, his hands in the pranam, bowing a little to either side. As he advances, the crowd parts - - it\",\"Someone moves through the silent crowd, his hands in the pranam, bowing a little to either side.\",\"As he advances, the crowd parts - - it\",gold,is almost eerily silent.,becomes the deagol of independence.,is too big for him.,slips by a club.,0\n17457,lsmdc0011_Gandhi-52278,5397,He lies on a straw mat. Someone,He lies on a straw mat.,Someone,gold,pockets the hem of her dress and holds the shoe under the bar no dress so her hand.,\"sits cross - legged, listening.\",spots him by the window.,rolls his eyes as the sun shines on them.,1\n17458,lsmdc0011_Gandhi-52278,5398,\"Someone sits cross - legged, listening. It\",\"Someone sits cross - legged, listening.\",It,gold,smiles and walks away.,bursts in the opposite direction.,is the kind of listening that opens the heart.,'s gone from someone's expression.,2\n17459,lsmdc0011_Gandhi-52278,5390,\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain shoves his way through to confront someone down the little aisle that was being made for him. Then he\",\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain shoves his way through to confront someone down the little aisle that was being made for him.\",Then he,gold,\"looks around at the crowd, suspiciously, a touch of inner fear, then back to someone.\",\"lies down, looking out as he steps past from the can, walking out of his house and holding his pocket.\",gets a place on the back to crack the door.,\"places books on his chair by the slides, and hears a cold expression offscreen and nods to people looking shocked and tense.\",0\n17460,lsmdc0011_Gandhi-52278,5395,\"He looks around, then turns and marches off briskly shoving his way through the crowd. Where all was silence before there\",\"He looks around, then turns and marches off briskly shoving his way through the crowd.\",Where all was silence before there,gold,are hundreds of people in the doorway.,is a soft - - applause.,is now the hum of excitement.,can be seen footsteps and by the young marching dancer waving their wand to him.,2\n17461,lsmdc0011_Gandhi-52278,5392,\"It has the cold assurance of a lawyer, and the Captain is a little shaken by it. He glances at someone who stands behind someone now, and it\",\"It has the cold assurance of a lawyer, and the Captain is a little shaken by it.\",\"He glances at someone who stands behind someone now, and it\",gold,'s the reporter who steps up to the bus.,\"'s two men, people and boys walking into the office.\",is an assistant with him in the back.,makes him all the more uncertain.,3\n17462,lsmdc0011_Gandhi-52278,5393,\"It is firm and there is an edge of assertiveness to it that the Captain does n't like, but someone's unrelenting stare unnerves him. He\",\"It is firm and there is an edge of assertiveness to it that the Captain does n't like, but someone's unrelenting stare unnerves him.\",He,gold,see a sun countdown at headquarters.,looks someone directly in the eye.,glances at someone again.,adds the accent of the sauce to it's wound.,2\n17463,lsmdc0011_Gandhi-52278,5396,\"Where all was silence before there is now the hum of excitement. Already he has scored a victory - - and as he moves forward again, making the pranam, they\",Where all was silence before there is now the hum of excitement.,\"Already he has scored a victory - - and as he moves forward again, making the pranam, they\",gold,\"make a rude, chevrolet dash for the club.\",backs into someone as well.,return it with flushed greetings.,'ve just seen against one another.,2\n17464,lsmdc0011_Gandhi-52278,5399,It is the kind of listening that opens the heart. Behind him a mass of villagers,It is the kind of listening that opens the heart.,Behind him a mass of villagers,gold,\"sits stoically, outside the dwelling, waiting while their case is heard.\",is in his cage talking.,\"is brought in by, where tired of the team are so sweet etched in their spandex.\",is broken through from the thames.,0\n17465,lsmdc0008_Fargo-49977,3474,He is staring down at something in the front seat next to him. It,He is staring down at something in the front seat next to him.,It,gold,has money inside - a lot of money.,lies in a low branch.,'s talking to all the students.,\"into someone's face, he finds something attractive!\",0\n17466,lsmdc3002_30_MINUTES_OR_LESS-910,9264,He and someone get in. Someone,He and someone get in.,Someone,gold,walks over to someone.,plays on the horn.,takes out his cell phone.,climbs into someone 'arms.,2\n17467,anetv_0EDEA8dZeGo,2383,\"Next he stands up while holding onto something and he starts water skiing as he gets pulled by the boat. But, he eventually falls off and\",Next he stands up while holding onto something and he starts water skiing as he gets pulled by the boat.,\"But, he eventually falls off and\",gold,lands on the boat of the water.,falls down a few people than he can pass.,is seen standing in the water.,blows wind by than a hook to the ground.,2\n17468,anetv_0EDEA8dZeGo,2382,First the man sets his timer that's attached to his chest and he sits down and puts his leg onto the ski. Next he stands up while holding onto something and he,First the man sets his timer that's attached to his chest and he sits down and puts his leg onto the ski.,Next he stands up while holding onto something and he,gold,garnishes it and then uses a towel to clean him some time.,starts water skiing as he gets pulled by the boat.,swirls back a bit and starts to cut with words until the entire time he flat goes down the hill.,falls to the weight.,1\n17469,anetv_w8kVVzMOC98,8166,A bowling ball and its measurements are shown. A man,A bowling ball and its measurements are shown.,A man,gold,walks on the court dressed as a referee.,\"runs down the path, then throws the ball.\",is painting on the ceiling.,has a dog in his pocket.,1\n17470,anetv_w8kVVzMOC98,3266,A row of bowling pins are shown at the end of a lane. A ball,A row of bowling pins are shown at the end of a lane.,A ball,gold,falls on a team we just missed.,is then shown hitting the pins.,is shown followed by an ice thrower skate down the beach on a beach.,rolls off the table and throws it for more pins.,1\n17471,anetv_w8kVVzMOC98,8167,\"A man runs down the path, then throws the ball. The ball\",\"A man runs down the path, then throws the ball.\",The ball,gold,\"slides into the far side of the pool, and he quickly jumps out of the pool.\",drives down the track.,falls between the goals in slow motion.,\"is shown hitting the pins, creating a strike.\",3\n17472,anetv_oZa-yum3mcU,15917,\"The Duggar mom and a little girl walks up to another woman at a horse ranch and the words on the bottom left say the woman's name is Morgan Brown and she's the Equestrian Instructor. The woman leads them into the barn and she puts a helmet on the little girls head, they walk to get horses and at some point the Duggar mom\",The Duggar mom and a little girl walks up to another woman at a horse ranch and the words on the bottom left say the woman's name is Morgan Brown and she's the Equestrian Instructor.,\"The woman leads them into the barn and she puts a helmet on the little girls head, they walk to get horses and at some point the Duggar mom\",gold,begins leading the horses and racing around the stage.,a table to get on a fence.,grabs her foot and places a dog inside the horse.,put a helmet on as well.,3\n17473,anetv_oZa-yum3mcU,15918,In between interviews they show the Duggar mom and the little girl getting instructions about their horse and then getting on their horses and riding on them in an enclosed area. The red and white tlc logo,In between interviews they show the Duggar mom and the little girl getting instructions about their horse and then getting on their horses and riding on them in an enclosed area.,The red and white tlc logo,gold,is seen in a direction held by two small men in the background.,appears with colorful letters that say used from fish and paddling down the river.,remains on the bottom right area of the screen the whole time.,are shown and the woman rides on the bike on front a crowd.,2\n17474,anetv_hg8WbkmC2nU,836,Several shots of food are shown on tables as well as racks and the chef continues to speak to the staff behind. The man,Several shots of food are shown on tables as well as racks and the chef continues to speak to the staff behind.,The man,gold,walks into the camera.,puts bowls of beer on a plate and mixes it in a bowl.,walks out front and speaks with the customers that are coming in and finished by speaking to the camera.,serves and lifts the construction pin.,2\n17475,anetv_hg8WbkmC2nU,835,A man is seen speaking to the camera while walking around a kitchen and checking on food. Several shots of food are shown on tables as well as racks and the chef,A man is seen speaking to the camera while walking around a kitchen and checking on food.,Several shots of food are shown on tables as well as racks and the chef,gold,leads into his wife being careful.,finishes decorating camels talking and shows how to move with in newspapers.,continues to speak to the staff behind.,pouring ingredients in a cup followed by a man backrest rowing with several ingredients.,2\n17476,anetv_VOGF4tBFEuw,17703,A first person view is seen of a man riding a riding lawn mower. He,A first person view is seen of a man riding a riding lawn mower.,He,gold,shows a tree boat warming up while the camera pans back to show one of the riders pulled down by a horse.,uses various gloved hands to bend to the landing.,\"takes turns quickly, mowing the lawn.\",rides with a family and speaks to the camera.,2\n17477,lsmdc3071_THE_DESCENDANTS-5886,7784,\"Remaining fixed on her, someone draws and expels a deep breath. The middle - aged man's weary gaze\",\"Remaining fixed on her, someone draws and expels a deep breath.\",The middle - aged man's weary gaze,gold,drifts on his curves.,sprawls overhead interspersed with the boys above.,grows affectionate as he reaches out to her.,hangs on the students.,2\n17478,lsmdc3071_THE_DESCENDANTS-5886,7813,\"Someone watches the ashes mix with the water, then glances at his daughters. He\",\"Someone watches the ashes mix with the water, then glances at his daughters.\",He,gold,takes off his lei and sets it on the water.,\"relaxes his eyes, then ventures in out of the window.\",adds food to the mess hall.,pumps his hips with a smile.,0\n17479,lsmdc3071_THE_DESCENDANTS-5886,7796,She wraps her arm around the girl and they head off together. Someone and someone,She wraps her arm around the girl and they head off together.,Someone and someone,gold,stop chatting and gazes up at someone on their feet.,approach someone as as he heated.,watch someone lead someone across the hallway.,show someone when they have sex.,2\n17480,lsmdc3071_THE_DESCENDANTS-5886,7809,\"They younger girl tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone. A skyward view from the ashes\",\"They younger girl tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone.\",A skyward view from the ashes,gold,of the sun and festive lame styles the sky.,shows a breeze blowing through his grey hair.,shows the body wrapped around a bundle.,is sprayed on the table with the addressing figure of the man running his index down.,1\n17481,lsmdc3071_THE_DESCENDANTS-5886,7790,The door to someone's room opens. Someone,The door to someone's room opens.,Someone,gold,crosses the hallway toward her family.,\"eyes are open and there is dark, slender tips nearby.\",obediently come to someone's waiting anew.,\"stares toward the hall then at someone, slowly.\",0\n17482,lsmdc3071_THE_DESCENDANTS-5886,7821,\"Arms folded, she halts behind the ice cream eating pair. Someone\",\"Arms folded, she halts behind the ice cream eating pair.\",Someone,gold,\"turns uneasily, then turns his attention back to the stove.\",raises salt to her lips and starts her first lesson.,\"drops her arms to her sides, then steps around the couch and takes a seat.\",is in her mind.,2\n17483,lsmdc3071_THE_DESCENDANTS-5886,7807,\"Sitting in the middle of the boat, someone watches her sister pour the scoop of ashes into the water. Someone\",\"Sitting in the middle of the boat, someone watches her sister pour the scoop of ashes into the water.\",Someone,gold,sits with the boat's wheel over the water.,desperately stabs the butcher.,is entranced by a sudden surge of applause.,hands the container to her.,3\n17484,lsmdc3071_THE_DESCENDANTS-5886,7811,The girls watch as he holds the container over the side of the boat. He,The girls watch as he holds the container over the side of the boat.,He,gold,begins to pull away from the top.,taps the container against the side of the canoe to empty it completely.,points to the passengers on the bench and faces the motor sunlit logo monitor.,stands motionless at a railing over the u - boat.,1\n17485,lsmdc3071_THE_DESCENDANTS-5886,7780,\"Someone gently takes her arm, guides her to the door, then stops and meets her gaze. With a nod, someone\",\"Someone gently takes her arm, guides her to the door, then stops and meets her gaze.\",\"With a nod, someone\",gold,lowers her ear to his ear.,steps into the tank.,opens the door for her.,peers over and holds her close.,2\n17486,lsmdc3071_THE_DESCENDANTS-5886,7793,\"He kisses her temple, then stands aside as she crosses to someone. She\",\"He kisses her temple, then stands aside as she crosses to someone.\",She,gold,\"punches her, then slaps her on the shoulder and turns her off.\",\"steps off and gives the crowd a nervous half - hug, someone gives someone a warm, remorseful look.\",lowers her eyes and looks at the girl's then back briefly quickly.,gives her shaggy - haired friend a hug.,3\n17487,lsmdc3071_THE_DESCENDANTS-5886,7801,She wears a pink and white lei around her neck. Someone,She wears a pink and white lei around her neck.,Someone,gold,tucks her hair into her face.,strolls through a line in at her depot.,\"watches his daughter from across the boat, wearing a lei of autumn colors.\",slides open a brick wall.,2\n17488,lsmdc3071_THE_DESCENDANTS-5886,7806,\"The peaceful young woman looks at the ashes and purses her lips. Sitting in the middle of the boat, someone\",The peaceful young woman looks at the ashes and purses her lips.,\"Sitting in the middle of the boat, someone\",gold,\"stands by a window gazing out at someone's small bottle, and turns away.\",watches her sister pour the scoop of ashes into the water.,gazes at him and cups her face in her hands.,takes her middle wand off of the beach and peers over it.,1\n17489,lsmdc3071_THE_DESCENDANTS-5886,7782,Someone shuts it and sighs. He,Someone shuts it and sighs.,He,gold,topples a faint light on a window above.,turns and takes someone by the head.,leaves boxing with a plastic bag.,turns his back to the door and stares across the room at someone in her bed.,3\n17490,lsmdc3071_THE_DESCENDANTS-5886,7804,Someone draws a scoop of ashes from the container and looks at her father. He,Someone draws a scoop of ashes from the container and looks at her father.,He,gold,leans forward and sniffs it.,keeps his eyes fixed on the menacing crowd.,gives his mother some high - fives sculpting.,\"shifts his serene gaze, then gives her a soft nod.\",3\n17491,lsmdc3071_THE_DESCENDANTS-5886,7802,\"Someone watches his daughter from across the boat, wearing a lei of autumn colors. They\",\"Someone watches his daughter from across the boat, wearing a lei of autumn colors.\",They,gold,float about a mile from the urban coastline.,link to it when they're afraid of the collision.,put towards a gold - colored bridal taped in the back of a black bus.,\", someone young stand short and tanned with long hair and gray hair.\",0\n17492,lsmdc3071_THE_DESCENDANTS-5886,7781,\"With a nod, someone opens the door for her. Someone\",\"With a nod, someone opens the door for her.\",Someone,gold,shuts it and sighs.,strides upstairs and hurries to a door which opens slowly.,\"looks out the window, but does n't budge.\",looks into her daughter's eyes.,0\n17493,lsmdc3071_THE_DESCENDANTS-5886,7822,\"Someone drops her arms to her sides, then steps around the couch and takes a seat. As they remain focused on their movie, someone\",\"Someone drops her arms to her sides, then steps around the couch and takes a seat.\",\"As they remain focused on their movie, someone\",gold,\"stands, watching the car approach.\",helps someone lay the blanket over her legs.,spins her around while she speaks.,lowers her gaze briefly and heads towards the room.,1\n17494,lsmdc3071_THE_DESCENDANTS-5886,7816,\"Beyond the couch, someone steps out from an arched doorway with two bowls. In shorts and a Hawaiian shirt, someone\",\"Beyond the couch, someone steps out from an arched doorway with two bowls.\",\"In shorts and a Hawaiian shirt, someone\",gold,\"maneuvers across a cramped, floor pool.\",\"looks up and sees two offscreen women standing in front, playing a traditional stair brush.\",joins someone and hands her one of the bowls.,chucks a nazi serving ax into a bag of his jars.,2\n17495,lsmdc3071_THE_DESCENDANTS-5886,7797,Someone and someone watch someone lead someone across the hallway. Someone,Someone and someone watch someone lead someone across the hallway.,Someone,gold,enters a tech house with its trunk in a plastic bin.,lead someone into someone's room.,climbs to the edge of the platform and approaches a convention.,pulls her to the curb for the door to a holder.,1\n17496,lsmdc3071_THE_DESCENDANTS-5886,7785,\"Looking over her frail form, he breathes softly. His fingers\",\"Looking over her frail form, he breathes softly.\",His fingers,gold,graze to the sides.,caress the pale woman's hair just above her forehead.,hang on the loose sheets the wall of a bed.,\"are cast on her chin, as to her gaze.\",1\n17497,lsmdc3071_THE_DESCENDANTS-5886,7808,Someone hands the container to her. They younger girl,Someone hands the container to her.,They younger girl,gold,admires the redhead smiles.,puts down her whiskey and bow.,\"tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone.\",tilts her head into the street.,2\n17498,lsmdc3071_THE_DESCENDANTS-5886,7820,\"Someone notices them from the dining room and strides observantly through an archway. Arms folded, she\",Someone notices them from the dining room and strides observantly through an archway.,\"Arms folded, she\",gold,peers out peek at her elder first then steps inside.,\"looks into the picture, then glides back to a front set of food line.\",\"unwraps a piece of strawberries, then removes the sandwich.\",halts behind the ice cream eating pair.,3\n17499,lsmdc3071_THE_DESCENDANTS-5886,7810,A skyward view from the ashes shows a breeze blowing through his grey hair. The girls,A skyward view from the ashes shows a breeze blowing through his grey hair.,The girls,gold,watch as he holds the container over the side of the boat.,\"stare down at them, then gaze down at the colorful swaying ground.\",stop and attack him.,cross the street and look behind them.,0\n17500,lsmdc3071_THE_DESCENDANTS-5886,7783,\"He turns his back to the door and stares across the room at someone in her bed. Remaining fixed on her, someone\",He turns his back to the door and stares across the room at someone in her bed.,\"Remaining fixed on her, someone\",gold,brings someone a striped article.,touches his hand and stops her.,draws and expels a deep breath.,hauls himself back up off his feet.,2\n17501,lsmdc3071_THE_DESCENDANTS-5886,7787,\"He bends down and leans over her, his fingers lingering on her brow. He\",\"He bends down and leans over her, his fingers lingering on her brow.\",He,gold,puts his head in her lap and kisses her.,\"takes a step closer for a kiss, then kisses her.\",rests her chin on his shoulder and steps close.,\"gives her a long, gentle kiss on the lips.\",3\n17502,lsmdc3071_THE_DESCENDANTS-5886,7812,He taps the container against the side of the canoe to empty it completely. Someone,He taps the container against the side of the canoe to empty it completely.,Someone,gold,\"comes to check on it, then sets it back down.\",\"watches the ashes mix with the water, then glances at his daughters.\",sets the drink in thick bubbles.,reaches over and drops it.,1\n17503,lsmdc3071_THE_DESCENDANTS-5886,7789,\"In a waiting area, someone sits beside her father with tears in her eyes. Our view\",\"In a waiting area, someone sits beside her father with tears in her eyes.\",Our view,gold,drifts up to someone who's seated in a carriage.,draws back to someone who stares up at the flag.,meets someone at someone and looks up.,drifts to someone's weary face as he stares across the room.,3\n17504,lsmdc3071_THE_DESCENDANTS-5886,7819,\"As they eat their ice cream, someone enters the distant dining room and digs through a bag on the table. Someone\",\"As they eat their ice cream, someone enters the distant dining room and digs through a bag on the table.\",Someone,gold,looks down at someone in the mirror.,\"jerks forward, and faces his shadow with a smile.\",adjusts the end of someone's blanket and covers his legs.,dismounts and smiles to himself at a bar.,2\n17505,lsmdc3071_THE_DESCENDANTS-5886,7798,\"Someone lead someone into someone's room. Now, a puffy cumulus cloud\",Someone lead someone into someone's room.,\"Now, a puffy cumulus cloud\",gold,dominates the lower half of a sky view.,hangs under the massive flashes of someone's head.,stands upon the top of a flight of flapping rocks.,\"passes her bearded caretaker as she is amongst the gunmen, skulls and bloated pledges strewn around them.\",0\n17506,lsmdc3071_THE_DESCENDANTS-5886,7818,\"Someone sits on the couch and rests his feet on an ottoman. As they eat their ice cream, someone\",Someone sits on the couch and rests his feet on an ottoman.,\"As they eat their ice cream, someone\",gold,ushers his mother in her skimpy pants.,enters the distant dining room and digs through a bag on the table.,watches as two large products roll along the counter.,sits by her dressing table and smiles at her friend.,1\n17507,lsmdc3071_THE_DESCENDANTS-5886,7791,Someone crosses the hallway toward her family. Someone,Someone crosses the hallway toward her family.,Someone,gold,rises from his chair and faces her.,pulls her book book from her coat pocket.,grasps her son's shoulder.,sees her headstone written in white letters softly hanging in the corner.,0\n17508,lsmdc3071_THE_DESCENDANTS-5886,7786,His fingers caress the pale woman's hair just above her forehead. He,His fingers caress the pale woman's hair just above her forehead.,He,gold,\"gives her an awkward hug, then leaves.\",meets her doe gaze and faces his camouflaged friend.,\"bends down and leans over her, his fingers lingering on her brow.\",looks her up and down in shock.,2\n17509,lsmdc3071_THE_DESCENDANTS-5886,7799,\"On the yet unsold land, the overlook offers a majestic view of the cove and the meadows and wild groves inland of it. Now, sitting aboard an outrigger canoe, someone\",\"On the yet unsold land, the overlook offers a majestic view of the cove and the meadows and wild groves inland of it.\",\"Now, sitting aboard an outrigger canoe, someone\",gold,nods and accepts a container.,wanders past the river through the harbor.,studies one of someone's broken wands.,lowers a gaze toward the automaton.,0\n17510,lsmdc3071_THE_DESCENDANTS-5886,7815,\"Someone lies on the couch under a blanket. Beyond the couch, someone\",Someone lies on the couch under a blanket.,\"Beyond the couch, someone\",gold,stands at a table facing his coworker.,\"sleeps with someone's sleeping someone, deep in thought.\",steps out from an arched doorway with two bowls.,\"walks up the bus, and down a street full of forty police cruisers.\",2\n17511,lsmdc3071_THE_DESCENDANTS-5886,7792,\"Resting her chin on his shoulder, she gazes upward. He\",\"Resting her chin on his shoulder, she gazes upward.\",He,gold,spies someone stealing food outside.,takes up the phone.,\"kisses her temple, then stands aside as she crosses to someone.\",retreats on her tiptoes and kisses him.,2\n17512,lsmdc3071_THE_DESCENDANTS-5886,7800,\"Now, sitting aboard an outrigger canoe, someone nods and accepts a container. She\",\"Now, sitting aboard an outrigger canoe, someone nods and accepts a container.\",She,gold,gyrates her flushed cheeks.,wears a pink and white lei around her neck.,sets it in the passenger seat.,announces to someone's team.,1\n17513,lsmdc3071_THE_DESCENDANTS-5886,7788,\"A tear rolls down his nose. In a waiting area, someone\",A tear rolls down his nose.,\"In a waiting area, someone\",gold,answers his cell phone.,minimizes a phone then unrolls his jacket on the desk then hurries right off the bed.,sits beside her father with tears in her eyes.,has him addressed with champion someone.,2\n17514,lsmdc3071_THE_DESCENDANTS-5886,7817,\"In shorts and a Hawaiian shirt, someone joins someone and hands her one of the bowls. Someone\",\"In shorts and a Hawaiian shirt, someone joins someone and hands her one of the bowls.\",Someone,gold,\"sets one hand on the scissor, massages one of one easily, then raises it above his head.\",sits on the couch and rests his feet on an ottoman.,kicks a stack of cards then kicks a large bite.,lowers her handgun and leaves.,1\n17515,lsmdc3071_THE_DESCENDANTS-5886,7824,He hands her his bowl of ice cream and she rests it on her lap. As the trio,He hands her his bowl of ice cream and she rests it on her lap.,As the trio,gold,proceed to the top door.,\"storms away, two men approach her.\",\"follow close behind, people claw their feet with their heels.\",watch the movie together.,3\n17516,lsmdc3071_THE_DESCENDANTS-5886,7823,\"As they remain focused on their movie, someone helps someone lay the blanket over her legs. He hands her his bowl of ice cream and she\",\"As they remain focused on their movie, someone helps someone lay the blanket over her legs.\",He hands her his bowl of ice cream and she,gold,sets him on the bed.,rests it on her lap.,holds out her fingers.,runs in the same direction for a second time.,1\n17517,lsmdc3071_THE_DESCENDANTS-5886,7805,\"He shifts his serene gaze, then gives her a soft nod. The peaceful young woman\",\"He shifts his serene gaze, then gives her a soft nod.\",The peaceful young woman,gold,sleeps on a bed with her bed folded.,\"looks at someone, then reaches down.\",looks at the ashes and purses her lips.,forces her peace smile.,2\n17518,lsmdc3071_THE_DESCENDANTS-5886,7794,She gives her shaggy - haired friend a hug. Someone,She gives her shaggy - haired friend a hug.,Someone,gold,looks down towards her mother.,faces her younger sister.,plays a g. - horse on a balcony.,enters and walks down the dining hall onto the terrace.,1\n17519,lsmdc3071_THE_DESCENDANTS-5886,7795,\"Gazing up from her chair, someone purses her lips. Someone\",\"Gazing up from her chair, someone purses her lips.\",Someone,gold,sips a martini with a well - tiered manner.,\"offers her hands, then guides her sister up from her seat.\",holds the phone back.,frowns and looks away.,1\n17520,anetv_6B3qNzgqnpc,14947,A person sitting in a canoe is slowly streaming down a river. A shot of a bird,A person sitting in a canoe is slowly streaming down a river.,A shot of a bird,gold,is shown followed by a group of people kneeling near tubes.,\"is seen off in the distance, as well as another bird.\",focuses on the ocean.,is in a large green field.,1\n17521,anetv_6B3qNzgqnpc,14948,\"A shot of a bird is seen off in the distance, as well as another bird. The canoe\",\"A shot of a bird is seen off in the distance, as well as another bird.\",The canoe,gold,is maneuvering electric mower back and forth.,keeps floating while various bird are shown sitting in the water as well as the trees.,walks by the end and we see the mower.,goes flying around the water and stops to point at a surfer.,1\n17522,anetv_vlwOSDuiKQA,6305,A man is seen standing in a large room holding up a tennis racket. Two more people,A man is seen standing in a large room holding up a tennis racket.,Two more people,gold,are seen holding tennis rackets back and fourth around the pool.,play indoor hugging and smiling while others stand around them and look on.,kick a ball onto the field and lead up a large audience and crowd to them.,walk into frame and begin hitting the ball around the area.,3\n17523,anetv_vlwOSDuiKQA,6306,Two more people walk into frame and begin hitting the ball around the area. The men,Two more people walk into frame and begin hitting the ball around the area.,The men,gold,crash and dance all around the ground.,continue playing with one another while the person continues behind him while continuing to play.,continue to hit the ball around with tennis rackets and chase it around the room.,continue spinning around the game and ends by turning around and circle one another.,2\n17524,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16255,\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people leap over the treads and are swarming all over someone. Someone\",\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people leap over the treads and are swarming all over someone.\",Someone,gold,has luggage and sits in the rock formations that are perched high above him.,\"curl their fingers in circles, glaring resentfully watching them.\",gives the hospital a thick signature reclined coat.,presses someone against his assailant and forces the nazi to squeeze off a shot into himself.,3\n17525,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16265,\"Someone lifts his feet, lunging toward the periscope and pulling someone with him. Someone's face\",\"Someone lifts his feet, lunging toward the periscope and pulling someone with him.\",Someone's face,gold,is pressed up against the lens of the periscope.,beams as he leaps and steers someone into the sky.,drops as he flips the hand through.,\"is now visible in a new swirl, and he taps his magnificent leader.\",0\n17526,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16258,Someone sits up to see someone standing over him. Someone,Someone sits up to see someone standing over him.,Someone,gold,is lying out of the toilet and throws the silverware into a bathtub.,follows someone into the apartment to get out.,\"hangs his head, gazing at the groves around her.\",wraps a chain around someone's neck.,3\n17527,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16264,We see people struggling atop the tank. Someone,We see people struggling atop the tank.,Someone,gold,retreats from a doorway.,hangs up on his helmet and beyond the man with dark eyes.,\"lifts his feet, lunging toward the periscope and pulling someone with him.\",gets up and sees a security at the back.,2\n17528,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16251,Smoke pours from the top of the tank as the turret pops open. Someone,Smoke pours from the top of the tank as the turret pops open.,Someone,gold,emerges and aims his gun at someone.,notices someone by her window.,\"quickly scrambles, snatches the wire from the lifeboat and spots the flaming rocket heading up the ocean.\",follows his cousins to a maintenance metal canopy.,0\n17529,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16260,\"Someone appears at the entrance, the chain still wrapped about his neck and held by someone. Someone\",\"Someone appears at the entrance, the chain still wrapped about his neck and held by someone.\",Someone,gold,is seen flying in mid - air through impressive balloons.,sees and turns to someone.,\"pulls someone from the tank entrance, yanking on the chain wrapped around his neck.\",hurls her through the window as she steps away from the pit.,2\n17530,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16269,Someone pulls away from the periscope again. A troop truck,Someone pulls away from the periscope again.,A troop truck,gold,arrives to the dirt.,bears the ships beacon lights flashing through the sky.,arrives at the border of the caravan.,pulls near the tank.,3\n17531,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16253,\"He moves out of the saddle and leaps from the speeding horse onto the trundling tank. Suddenly, from nowhere a German soldier\",He moves out of the saddle and leaps from the speeding horse onto the trundling tank.,\"Suddenly, from nowhere a German soldier\",gold,is casually glancing at a dog.,swings himself around and vomits.,walks out of the circle and comes for the searching.,\"flies into frame, tackling someone.\",3\n17532,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16256,\"Someone presses someone against his assailant and forces the Nazi to squeeze off a shot into himself. The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away,\",Someone presses someone against his assailant and forces the Nazi to squeeze off a shot into himself.,\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away,\",gold,handcuffs into the kid's black vest.,illuminating someone as he lies up on the floor.,leaving someone to stare at the gun in disbelief.,\"smashing them to the ground as a stunned someone films them, him breaking.\",2\n17533,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16259,Someone wraps a chain around someone's neck. Someone,Someone wraps a chain around someone's neck.,Someone,gold,plugs him back on and pulls away.,fits it against her mouth.,draws it and presses pull on the top of the chain.,\"appears at the entrance, the chain still wrapped about his neck and held by someone.\",3\n17534,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16261,\"Someone hits him, knocking him onto the tank tread. Someone\",\"Someone hits him, knocking him onto the tank tread.\",Someone,gold,screams as he is dragged under the rolling tank.,leads him around the stage door and steps up behind them.,\"whizzes the wheel and drives away, his face dripping with sweat.\",\"hangs his head, then releases his attachment and dials a number.\",0\n17535,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16257,\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away, leaving someone to stare at the gun in disbelief. Another Soldier\",\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away, leaving someone to stare at the gun in disbelief.\",Another Soldier,gold,leaps from the truck onto the tank and raises his knife as he grabs someone.,causes for one while shaking his head and we sweep on the gunmen as the flame of the boxed fires.,shoots a woman down a duct wall - rustling it down and hits it.,joins someone and the crouched people next mistake each other and watched through the sky.,0\n17536,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16250,\"Someone swings his fist, knocking someone off his seat. Smoke\",\"Someone swings his fist, knocking someone off his seat.\",Smoke,gold,takes a drink out of a large bowling bag.,\"someone as tiles, he tries to pull himself out the paper.\",hangs furrowing his brow.,pours from the top of the tank as the turret pops open.,3\n17537,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16262,\"Someone screams as he is dragged under the rolling tank. Now people struggle with one another, the chain still\",Someone screams as he is dragged under the rolling tank.,\"Now people struggle with one another, the chain still\",gold,squeeze through the coffin's driver side door.,fails to lead into men pushing themselves toward him.,wrapped around someone's neck.,\"emits two jai - tic, like a huge clutching snitch.\",2\n17538,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16263,\"Now people struggle with one another, the chain still wrapped around someone's neck. We\",\"Now people struggle with one another, the chain still wrapped around someone's neck.\",We,gold,see people struggling atop the tank.,falls unto the other's skull.,\"part of him just as he turns away from him, and stops turning.\",\", the man grabs someone and follows him out onto the street.\",0\n17539,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16249,People still held at gunpoint by the Nazi Soldier. Someone,People still held at gunpoint by the Nazi Soldier.,Someone,gold,\"swings his fist, knocking someone off his seat.\",moves a board from the lights and goes toward a staircase.,walks forward with his arm spread across the back of the general's hat.,\"is standing alone, unable to break someone army without flash up.\",0\n17540,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16268,Someone pulls someone from the periscope. Someone,Someone pulls someone from the periscope.,Someone,gold,can't tear down.,leaps out after her.,hands the shield to someone.,pulls away from the periscope again.,3\n17541,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16267,\"Someone's face, still pressed against the lens. Someone\",\"Someone's face, still pressed against the lens.\",Someone,gold,\"suddenly jerks slightly, full of hurt.\",moves so quickly as someone is hit.,pulls someone from the periscope.,pats him on the shoulder and hurries off.,2\n17542,lsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16254,\"Suddenly, from nowhere a German soldier flies into frame, tackling someone. One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people\",\"Suddenly, from nowhere a German soldier flies into frame, tackling someone.\",\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people\",gold,leap over the treads and are swarming all over someone.,take a lifeboat from in the rim.,stay casually down and around.,are in the midst of the conversation.,0\n17543,anetv_v-dxQNxdMrU,19880,More clips are seen of people performing tricks on the bike while hundreds watch on the sidelines. More people,More clips are seen of people performing tricks on the bike while hundreds watch on the sidelines.,More people,gold,are seen riding around and waving their hands up in the end.,are seen riding around a street as well as skiers running and doing tricks.,are seen riding around on horse blades performing tricks while others cheer on the side.,are seen riding in their tubes in the water.,0\n17544,anetv_v-dxQNxdMrU,19879,A camera pans around large city buildings and leads into people riding motocross bikes. More clips,A camera pans around large city buildings and leads into people riding motocross bikes.,More clips,gold,are shown of people riding bikes down a road followed by people spotting their cars.,are shown of people riding around and moving around the top of a track.,are shown of people riding riding horses while others watch on fire.,are seen of people performing tricks on the bike while hundreds watch on the sidelines.,3\n17545,anetv_lgWH94ea3-U,8280,A man is using a hookah inside a room. He,A man is using a hookah inside a room.,He,gold,turns and blows a pillar of smoke.,is holding a vacuum cleaner and smoking.,does several different circles in place from the floor.,begins hammering the vacuum on fire.,0\n17546,anetv_lgWH94ea3-U,8281,He turns and blows a pillar of smoke. Another man,He turns and blows a pillar of smoke.,Another man,gold,comes up behind him and follows him in.,takes the hookah and takes a hit as well.,pours in a large armory of croquette cans.,speaks into the mic.,1\n17547,anetv_kCD0iQFnHA4,12186,She puts the pastry onto the cake and continues putting frosting all around the cake. The camera,She puts the pastry onto the cake and continues putting frosting all around the cake.,The camera,gold,shows us spread out in a row as she pretends to sing.,pans slowly to a records area where people are gathered on the floor.,zooms around the cake and shows the woman putting a face on the cake and showing off the finished result.,is then added in the chocolate appreciatively.,2\n17548,anetv_kCD0iQFnHA4,12185,A close up of a dough is shown and leads into a person spreading frosting on a pastry. She,A close up of a dough is shown and leads into a person spreading frosting on a pastry.,She,gold,are shown using the tongue so that all of the cake is on the floor.,with frosting are shown as well as pictures of them sitting.,continues cutting down the ice as well as the cake and presenting them to the camera.,puts the pastry onto the cake and continues putting frosting all around the cake.,3\n17549,anetv_cyXWvxVt8qE,280,A player opposite of him hits the ball with his racket. the two men,A player opposite of him hits the ball with his racket.,the two men,gold,continuously play tennis until a point is scored.,stare at their own slanted foreheads.,go up and down the slide until the next shot hits the ball.,run down the track to throw the ball side to side while he serves to score.,0\n17550,anetv_cyXWvxVt8qE,17311,The right man serves again. They,The right man serves again.,They,gold,go back and forth till the ball drops again 1: 10.,are lying on the ground and a man talks to the camera.,watch the black students briskly leave the room.,stop and turn to face each other.,0\n17551,anetv_cyXWvxVt8qE,17309,The man on the right serves the ball. The two men,The man on the right serves the ball.,The two men,gold,hug each other while with a ref hug.,hit the ball back and forth.,put run at the same time and pause for a moment.,talk and shake hands as the players talk.,1\n17552,anetv_cyXWvxVt8qE,17313,\"1: 14 we see the crowd before the left man serves and the go back and forth. 124 The right man misses, the left\",1: 14 we see the crowd before the left man serves and the go back and forth.,\"124 The right man misses, the left\",gold,\"gets into the towel, slides over and strikes flips by the cheerleader in the gym.\",fall in the billiard can.,throws his hands in the air and walks off.,mark in his left hand tries to clip the other records.,2\n17553,anetv_cyXWvxVt8qE,279,A man serves a tennis ball on a tennis court. a player opposite of him,A man serves a tennis ball on a tennis court.,a player opposite of him,gold,ever pats his serve.,hits the ball with his racket.,hits the ball with his racket and knock them backward.,serves the ball with a tennis racket.,1\n17554,anetv_cyXWvxVt8qE,17312,They go back and forth till the ball drops again 1: 10. 1: 14 we,They go back and forth till the ball drops again 1: 10.,1: 14 we,gold,can hold looks as the older young emerging chases him off the raft.,see the hopping mark of the first clip.,see a rod of 5 holes.,see the crowd before the left man serves and the go back and forth.,3\n17555,anetv_cyXWvxVt8qE,17310,The two men hit the ball back and forth. The right man misses the ball and we,The two men hit the ball back and forth.,The right man misses the ball and we,gold,see the goalie on the ice.,see a website screen.,see the people on the sidelines.,see the ring all ready.,2\n17556,lsmdc1001_Flight-72009,17618,Someone studies someone's smiling face with pressed lips. He,Someone studies someone's smiling face with pressed lips.,He,gold,backs away from someone.,takes a sip of water.,takes his head from the bank.,looks toward his retreating path with his brow furrowed.,1\n17557,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6118,\"On her way out, someone tosses wire cutters down beside him. She\",\"On her way out, someone tosses wire cutters down beside him.\",She,gold,steps up beside her and notices someone on the side of the room.,\"goes to the rescued boxes, clinging to the sign.\",\"goes out with a kitchen cloth, and stares out the window at the weather.\",leaves the apartment without looking back.,3\n17558,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6104,\"She throws down a pillow. Crouching, she\",She throws down a pillow.,\"Crouching, she\",gold,unpacks a wrapped artfully rucksack on a single rack outside a family center.,turns on an electric tattoo needle.,looks up at the pair of mirrors which ogles her and she stares vacantly ahead.,blinks down at her bedside.,1\n17559,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6123,\"Inside, someone studies someone's list on the wall. Someone\",\"Inside, someone studies someone's list on the wall.\",Someone,gold,stares at her with a shocked expression.,\"grabs a red liquid from her file, then joins them.\",\"pulls out a service key from a box, and presses it into his pocket.\",sets two plates on the table.,3\n17560,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6105,\"Crouching, she turns on an electric tattoo needle. Someone\",\"Crouching, she turns on an electric tattoo needle.\",Someone,gold,combs her bangs from her hair.,\"plugs it, revealing retro straws and symbols on the wall.\",uncaps a jar of ink then dips the needle in it.,\"throws darts at the gangster, flexing her hips and spreads it upward.\",2\n17561,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6112,\"Someone leans back in his chair, his gaze chilled. The computer\",\"Someone leans back in his chair, his gaze chilled.\",The computer,gold,searches someone 'pet schematic of the medal shop doors.,replays the ghostly sequence of someone reacting and her smile becoming a frightened stare.,blocks a movie and floats anyone around.,brushes off the top wall on the field.,1\n17562,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6125,He starts to cut into his sandwich before noticing his daughter's head bowed in prayer. His daughter,He starts to cut into his sandwich before noticing his daughter's head bowed in prayer.,His daughter,gold,wanders towards the valet's four - story window.,finishes her silent prayer and gives him a look.,steps onto the table and holds a beer glass.,returns a stunned smile.,1\n17563,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6111,She lays a hand on a friend's shoulder and backs away from the group. Someone,She lays a hand on a friend's shoulder and backs away from the group.,Someone,gold,\"turns, and tightens her tightly tie.\",strides off in his direction as he gazes back to his horse.,strides away as he climbs into the cabin's passenger seat.,\"leans back in his chair, his gaze chilled.\",3\n17564,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6113,The computer replays the ghostly sequence of someone reacting and her smile becoming a frightened stare. Watching the slideshow someone,The computer replays the ghostly sequence of someone reacting and her smile becoming a frightened stare.,Watching the slideshow someone,gold,gives her a roll and heads back into the parlor.,studies her own smooth head again.,sends up a wad of keys.,slowly removes his glasses.,3\n17565,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6114,Watching the slideshow someone slowly removes his glasses. He,Watching the slideshow someone slowly removes his glasses.,He,gold,looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby.,reaches into his pocket at someone and runs his hands across the folded line of her wings.,\"raises his hands, and legs over.\",\"hands someone a letter, steps out to the lion, and unfolds the letter.\",0\n17566,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6122,\"He picks up her suitcase. Inside, someone\",He picks up her suitcase.,\"Inside, someone\",gold,studies someone's list on the wall.,stands on the porch in her car.,arrives using both hands.,crosses to the window as someone's panels pop open.,0\n17567,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6120,Now someone walks the grounds of the Vanger estate. He,Now someone walks the grounds of the Vanger estate.,He,gold,leads someone into the house.,slows to a stop then smiles.,glances around to find someone sitting on chair watching them.,\"tries the door and enters quickly, his father carrying two apples.\",1\n17568,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6124,Someone sets two plates on the table. He,Someone sets two plates on the table.,He,gold,reclines in his chair.,starts to cut into his sandwich before noticing his daughter's head bowed in prayer.,follows her through a glass door.,turns off the chair on the dressing table.,1\n17569,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6108,\"Someone leans forward, her eyes wide. She\",\"Someone leans forward, her eyes wide.\",She,gold,braces herself against the bed's footboard as she brings the tattoo needle to his chest.,\"stares blankly at her, then sits down in front of her.\",fires at the sky as clouds rise up into the sky.,lowers her head and tenderly lowers the camera.,0\n17570,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6107,She crouches astride someone who struggles beneath her. Someone,She crouches astride someone who struggles beneath her.,Someone,gold,watches her hurl.,turns briefly to the skier's tearful beauty.,climbs in and lies on her side.,\"leans forward, her eyes wide.\",3\n17571,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6121,Someone gives her a big hug and kisses her cheek. He,Someone gives her a big hug and kisses her cheek.,He,gold,sings and they hug again.,picks up her suitcase.,pushes the door shut.,\"nibbles her lips, then crouches higher and reaches over her back.\",1\n17572,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6115,\"He looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby. Back in someone's apartment, someone\",He looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby.,\"Back in someone's apartment, someone\",gold,\"walks behind someone, his shoulders straining.\",finds the alsatian descending the ladder.,finishes a drink of water and sets the cup in the bathroom.,finds someone working out in a tv.,2\n17573,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6110,\"She turns, her gaze following something in the parade. She\",\"She turns, her gaze following something in the parade.\",She,gold,lays a hand on a friend's shoulder and backs away from the group.,takes out a suitcase and looks back at it.,\"sprints through the window, bumping into the shirtless zombie.\",smiles as she makes her way past the rest of the falls.,0\n17574,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6109,\"The images crossfade as they change, creating a disjointed animated effect. She\",\"The images crossfade as they change, creating a disjointed animated effect.\",She,gold,turns and faces someone's in.,spies on the screen as he joins more resumes.,\"turns, her gaze following something in the parade.\",flashes on her face.,2\n17575,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6116,\"Back in someone's apartment, someone finishes a drink of water and sets the cup in the bathroom. She\",\"Back in someone's apartment, someone finishes a drink of water and sets the cup in the bathroom.\",She,gold,flips her over to someone's side.,glances up at the boy.,lowers his gaze and gives a cordial smile.,goes to a chair.,3\n17576,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6119,She leaves the apartment without looking back. Now someone,She leaves the apartment without looking back.,Now someone,gold,\"enters from the bedroom, clutching her bed.\",glares at her spell.,leans against someone's car.,walks the grounds of the vanger estate.,3\n17577,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6106,Someone uncaps a jar of ink then dips the needle in it. She,Someone uncaps a jar of ink then dips the needle in it.,She,gold,crouches astride someone who struggles beneath her.,picks up a picture of inferno bands and pushes it to someone's forearm.,covers the center with both hands and rubs it with a gold web.,removes it from her eye socket.,0\n17578,lsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6126,His daughter finishes her silent prayer and gives him a look. She,His daughter finishes her silent prayer and gives him a look.,She,gold,slides off her panties.,shrugs a hand and leans close to someone.,gives water a grungy look.,takes a bite of her sandwich.,3\n17579,lsmdc3035_INSIDE_MAN-2246,1932,\"Someone heads up toward the first floor, crossing paths with the woman. She\",\"Someone heads up toward the first floor, crossing paths with the woman.\",She,gold,places him in a mirror.,pulls on someone's collar.,and her friends leave her alone.,glances back at him.,3\n17580,lsmdc3035_INSIDE_MAN-2246,1927,\"Someone, someone, and the lanky robber sit in the back seat. Someone\",\"Someone, someone, and the lanky robber sit in the back seat.\",Someone,gold,sits at the wheel.,spots a young boy with someone behind him in the back of his booth.,grabs a chair beside someone.,nears an rows of parked vehicles facing the cafe.,0\n17581,lsmdc3035_INSIDE_MAN-2246,1926,\"Across the street and around the corner, a black suv sits parked at the curb. Someone, someone, and the lanky robber\",\"Across the street and around the corner, a black suv sits parked at the curb.\",\"Someone, someone, and the lanky robber\",gold,walk along the street with their hostages.,climb the bank.,sit in the back seat.,come through a wonder road.,2\n17582,lsmdc3035_INSIDE_MAN-2246,1928,\"Back in the supply room, someone answers his. Now, the mastermind\",\"Back in the supply room, someone answers his.\",\"Now, the mastermind\",gold,marches down a narrow corridor.,\"opens the door of the small room which reads, storage of old house.\",slips out into the basement hall.,shoves his sheet around an alleyway.,2\n17583,lsmdc3035_INSIDE_MAN-2246,1922,\"Back in the supply room, the Dell computer boxes shift. As a panel\",\"Back in the supply room, the Dell computer boxes shift.\",As a panel,gold,unveils an egg clock reads 7: 8: 30.,\"falls, someone's lips flops back to a cordial posture.\",\"shows thick rows of steps, a large ship titled the name of the hologram.\",gets removed from the wall.,3\n17584,lsmdc3035_INSIDE_MAN-2246,1931,As someone approaches the basement stairs. Someone,As someone approaches the basement stairs.,Someone,gold,\"heads up toward the first floor, crossing paths with the woman.\",removes her backpack and pulls out a pair of yellow - earrings.,bends to retrieve the key.,falls over standing in bed.,0\n17585,lsmdc3035_INSIDE_MAN-2246,1925,\"He crawls out through the secret opening. Across the street and around the corner, a black suv\",He crawls out through the secret opening.,\"Across the street and around the corner, a black suv\",gold,slips beneath the wheels.,sits parked at the curb.,begins with a brightly shambling white.,sits on a safari - washers road riding its way.,1\n17586,lsmdc3035_INSIDE_MAN-2246,1936,\"Now, someone approaches the black suv. He\",\"Now, someone approaches the black suv.\",He,gold,walks along a sidewalk.,goes out in fast motion.,steps to the edge.,opens the front passenger door.,3\n17587,lsmdc3035_INSIDE_MAN-2246,1933,\"Now, someone and someone enter the bank. Coming in the other direction, someone\",\"Now, someone and someone enter the bank.\",\"Coming in the other direction, someone\",gold,bumps into the middle - aged detective.,glances up at the rear - view mirror.,grabs a ledge and hurries over to the car.,stirs in a military uniform.,0\n17588,lsmdc3035_INSIDE_MAN-2246,1940,\"Next to it, he finds the Cartier box and the huge diamond ring inside it. He\",\"Next to it, he finds the Cartier box and the huge diamond ring inside it.\",He,gold,sweeps up the necklace and breaks it into pieces.,sets it aside and uses a plant.,opens it and points at a snake.,opens up a note and reads.,3\n17589,lsmdc3035_INSIDE_MAN-2246,1923,As a panel gets removed from the wall. Someone,As a panel gets removed from the wall.,Someone,gold,\"sparks around in the side, and the glasses it into the sketch with it.\",eyes his weapon coolly.,sits on her new pebble.,pushes the stack of boxes out of his way.,3\n17590,lsmdc3035_INSIDE_MAN-2246,1941,He opens up a note and reads. He,He opens up a note and reads.,He,gold,\"looks down at her blanket, then closes the diary and reads up again.\",forgetting many more and more together.,bags the note with the other items.,displays the damp label.,2\n17591,lsmdc3035_INSIDE_MAN-2246,1942,\"He bags the note with the other items. Now, a valet\",He bags the note with the other items.,\"Now, a valet\",gold,reappears on a grill.,holds open a door for mr.,pulls up to martina swap waves.,pulls the handlebars onto a tricycle.,1\n17592,lsmdc3035_INSIDE_MAN-2246,1929,\"Now, the mastermind slips out into the basement hall. He\",\"Now, the mastermind slips out into the basement hall.\",He,gold,sits down on the coat beside someone.,shuts his eyes and glares.,lands on his bed then puts the shelves down.,steps warily past the secured office where a man uses the phone.,3\n17593,lsmdc3035_INSIDE_MAN-2246,1934,\"Coming in the other direction, someone bumps into the middle - aged detective. The mastermind\",\"Coming in the other direction, someone bumps into the middle - aged detective.\",The mastermind,gold,gets into a car and struggles to a halt.,leaves as someone and someone approach a desk.,dumps his suitcase in his luggage.,closes the door and walks towards the door.,1\n17594,lsmdc3035_INSIDE_MAN-2246,1937,He opens the front passenger door. Someone,He opens the front passenger door.,Someone,gold,sneaks up to his son.,moves on his hands.,looks up at the new bedding on the street above.,grips hands with his muscular accomplice.,3\n17595,lsmdc3035_INSIDE_MAN-2246,1935,\"The mastermind leaves as someone and someone approach a desk. Outside, someone\",The mastermind leaves as someone and someone approach a desk.,\"Outside, someone\",gold,\"looks up anxiously, then places the pants on a deadbolt.\",walks out through the front door.,runs to the entrance and halts.,lies bound behind his back.,1\n17596,lsmdc3035_INSIDE_MAN-2246,1924,Someone pushes the stack of boxes out of his way. He,Someone pushes the stack of boxes out of his way.,He,gold,approaches the gambling room.,jumps through the arched.,crawls out through the secret opening.,smiles up at someone loudly on time.,2\n17597,anetv_FcfoTk3UK5g,9003,Close up shots are shown of people fencing back and fourth. People,Close up shots are shown of people fencing back and fourth.,People,gold,walk alongside and continues the fence as they continue moving.,continue to fence with one another as people watch on the sides.,are moving together on stage welds.,continue to speak to each other and ends with him pushed down and smiling.,1\n17598,anetv_FcfoTk3UK5g,16751,A large group of people are seen standing around a gymnasium with many performing fencing matches on the side. The camera,A large group of people are seen standing around a gymnasium with many performing fencing matches on the side.,The camera,gold,moves together around one another while a gymnastics coach jumps.,continuously spins around one another while a man walks out into frame using equipment to move in and out of frame.,transitions into several shows of people fencing back and fourth while many watch on the sidelines.,pulls up to a large group of people and clips jumping rope on the bars.,2\n17599,anetv_FcfoTk3UK5g,9002,A large group of people are seen standing around a gymnasium with people fencing in between. Close up shots,A large group of people are seen standing around a gymnasium with people fencing in between.,Close up shots,gold,are shown of people playing the game while people cheering.,are shown of people performing against one another throwing a pong ball.,are shown of people fencing back and fourth.,are shown of people fencing together and leads into a woman putting three pictures on to the side.,2\n17600,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5606,Horseless carriages take the students up to Hogwarts Castle. They,Horseless carriages take the students up to Hogwarts Castle.,They,gold,glimpse a sailboat sitting with a woman wearing a blue suit.,assemble in the great hall for the welcoming feast.,are getting ready to start the race.,see four hasty silhouette of a huge building in front of the building.,1\n17601,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5607,They assemble in the Great Hall for the welcoming feast. Lighted candles,They assemble in the Great Hall for the welcoming feast.,Lighted candles,gold,illuminate the walls of the dimly lit dance hut.,hang above their heads as they sit at the long tables listening to the choir.,\"lie on a shirt, topped with huge rocks.\",adorn an endless expanse of colorful sky.,1\n17602,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5605,He stares at his own worried face reflected in the glass. Horseless carriages,He stares at his own worried face reflected in the glass.,Horseless carriages,gold,coasts through someone's cluttered door into the room.,take the students up to hogwarts castle.,in the garden peer at someone through their eyes.,rush out of the front door.,1\n17603,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5604,Someone looks at the rain teeming down outside the window. He,Someone looks at the rain teeming down outside the window.,He,gold,\"rocks her and spars with someone, who pulls to the main room, followed by someone.\",walks back to the vent and looks up at the molding.,edges the floor.,stares at his own worried face reflected in the glass.,3\n17604,anetv_cT4EquMmRiw,8774,They duck down as they go under a low clearance bridge. Then they,They duck down as they go under a low clearance bridge.,Then they,gold,\"climb a rope further down the river past the human, right, a tow rope high up and down the hills.\",rise up again and continue sailing till they have to duck down again to avoid another bridge.,go down the rail high to the house.,\"get up and fly upstairs, leaving someone alone with someone.\",1\n17605,anetv_cT4EquMmRiw,8771,There's a group of adults and kids kayaking through the river. The ladies and children,There's a group of adults and kids kayaking through the river.,The ladies and children,gold,are shown getting rafts down the river.,sit at the park table as kids sit on front the fence.,are getting ready to enter the kayak with the oars in their hands.,are applauding for the audience.,2\n17606,anetv_cT4EquMmRiw,2723,Empty boats are seen in water. a girl,Empty boats are seen in water.,a girl,gold,leans against the rowing machine.,walks with a paddle in her hand.,holds up a yellow paddle.,falls into the water.,1\n17607,anetv_cT4EquMmRiw,2724,A girl walks with a paddle in her hand. a boy,A girl walks with a paddle in her hand.,a boy,gold,\"wipes the side of her face, then wipes down on the surface.\",holds a shot put trophy in her hands.,gets on and scoops up the bucket.,walks with a paddle in his hand.,3\n17608,anetv_cT4EquMmRiw,8773,They begin kayaking through the water as every member uses their oars to sail the boat. They,They begin kayaking through the water as every member uses their oars to sail the boat.,They,gold,rushes to hold paddles to the right as they pass.,duck down as they go under a low clearance bridge.,\"come to one side of the river, which is very rough on the river.\",walk down the sides of the river.,1\n17609,anetv_cT4EquMmRiw,8775,Then they rise up again and continue sailing till they have to duck down again to avoid another bridge. They,Then they rise up again and continue sailing till they have to duck down again to avoid another bridge.,They,gold,turn their hands over and bow.,\"reach the high, but the man approaches and moves their boards on.\",are then measuring the wooden posts alongside the encounter.,pass by other people on kayaks as they sail along.,3\n17610,anetv_cT4EquMmRiw,8776,They pass by other people on kayaks as they sail along. Then they,They pass by other people on kayaks as they sail along.,Then they,gold,wash in the water.,get off the kayaks and stand on the river banks to look over the river.,float down the river in a choppy water before running over the river.,pull through a boat holding the sail.,1\n17611,anetv_cT4EquMmRiw,2725,A boy walks with a paddle in his hand. a few kids,A boy walks with a paddle in his hand.,a few kids,gold,gather into a boat.,walk on the whole.,run across the stairs.,begin playing in the water playing.,0\n17612,anetv_cT4EquMmRiw,8777,Then they get off the kayaks and stand on the river banks to look over the river. A little girl,Then they get off the kayaks and stand on the river banks to look over the river.,A little girl,gold,\"jumps on the rope, and watches a woman carries a child down a snowy slope.\",use binoculars to get a better view of the river.,appears at the end of the lawn almost laughing.,is pulling a van and bear on the boat to begin a part.,1\n17613,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1229,\"As he grabs a book and flops onto the bed. Reaching inside, he\",As he grabs a book and flops onto the bed.,\"Reaching inside, he\",gold,thrusts the pizzas on the door.,unwraps it and drops it.,finds a receipt for a safe deposit box bearing someone's name.,strokes someone's head with the back of his hand.,2\n17614,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1231,\"He looks at the framed photo of her. Shot from the waist up during one of her pregnancies, she\",He looks at the framed photo of her.,\"Shot from the waist up during one of her pregnancies, she\",gold,seems a bit surprised and gently places the pillow under the top.,stands nude with one arm across her chest.,looks around the sushi table before putting her tray down to the sofa.,turns and returns toward the house.,1\n17615,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1227,\"Now in his bedroom, he wears an undershirt and sweatpants as he stands at his dresser, his hair damp. He\",\"Now in his bedroom, he wears an undershirt and sweatpants as he stands at his dresser, his hair damp.\",He,gold,sees someone sleeping on his back.,slides out a view of his thick helmet.,\"lifts someone's to a glass face, then quickly bumps for a haircut.\",finds the old faded sweatshirt in the top drawer and takes it out.,3\n17616,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1230,\"Reaching inside, he finds a receipt for a safe deposit box bearing someone's name. He\",\"Reaching inside, he finds a receipt for a safe deposit box bearing someone's name.\",He,gold,matches a lighter in a charger and a sweatshirt and a small handgun in a jewelry box.,\"jumps over the raised phone, toward the door of the church.\",slots a card into a tube record.,looks at the framed photo of her.,3\n17617,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1226,\"Someone meets her friendly gaze and gives a thoughtful look. Now in his bedroom, he\",Someone meets her friendly gaze and gives a thoughtful look.,\"Now in his bedroom, he\",gold,finds someone alone at a hospital.,greets a young man with a mailbag.,\"puts his lipstick on his lips, before they lean against the glass.\",\"wears an undershirt and sweatpants as he stands at his dresser, his hair damp.\",3\n17618,lsmdc3087_WE_BOUGHT_A_ZOO-41367,1228,\"Putting it on, he lifts his eyes to a framed black - and - white photo of his wife on the dresser. As he\",\"Putting it on, he lifts his eyes to a framed black - and - white photo of his wife on the dresser.\",As he,gold,scuttles down the monkey bars.,\"swirls the thread in the shirt box, all of the building has been made too fast.\",grabs a book and flops onto the bed.,\"stands the checked, someone jogs back in her original uniform.\",2\n17619,lsmdc1055_Marley_and_me-96430,15566,\"It's a tough one, and he grimaces. Grinning, she\",\"It's a tough one, and he grimaces.\",\"Grinning, she\",gold,pats him sympathetically on the back.,lifts him through the air and runs down the street.,hangs her head with a thoughtful look.,takes off his glasses and presses it to her ear.,0\n17620,anetv_Z4yZr5dIMec,6172,\"It's an extremely sunny day out and a picture of a red flower and dandelion becomes present. After, several scenes of a farm\",It's an extremely sunny day out and a picture of a red flower and dandelion becomes present.,\"After, several scenes of a farm\",gold,\"are shown packed by a game of croquet, while a man appears on a rodeo track outside of a beach.\",are filled with children moving around and throwing baskets.,\"are then recorded ranging from horses, cabins, and windmills.\",appears with a logo discusses over screen.,2\n17621,anetv_Z4yZr5dIMec,4582,Horses are on a barn in a club with pools. men,Horses are on a barn in a club with pools.,men,gold,are standing in a tight line on camels and waiting for them.,are playing polo on a green grassy field riding horses.,are inspects boxes and some small tables.,are riding horses in a green grassy with horses behind him and are being kayaks for the video.,1\n17622,anetv_Z4yZr5dIMec,6173,\"After, several scenes of a farm are then recorded ranging from horses, cabins, and windmills. Along the other features, a table is shown set up for an exquisite lunch and then several men\",\"After, several scenes of a farm are then recorded ranging from horses, cabins, and windmills.\",\"Along the other features, a table is shown set up for an exquisite lunch and then several men\",gold,are shown playing polo.,dance together in front of the small camera.,are snowboarding down the slopes.,begin fencing in various the swords.,0\n17623,anetv_Z4yZr5dIMec,6174,\"Along the other features, a table is shown set up for an exquisite lunch and then several men are shown playing polo. After the game, the people come back to the table to eat the bbq that was just cooked and the players\",\"Along the other features, a table is shown set up for an exquisite lunch and then several men are shown playing polo.\",\"After the game, the people come back to the table to eat the bbq that was just cooked and the players\",gold,continue riding around the farm.,give the information on the cover and get it to the meat.,have been individually shown in just the serve in you.,are dealing it on and dancing together.,0\n17624,anetv_3zMCxmdkcRY,10355,A man and woman are dancing on a roof top of a building in a city. He,A man and woman are dancing on a roof top of a building in a city.,He,gold,chats with a group of men well on strings as sitting on bicycles on watch.,sits nearby and crosses to the curb.,lifts the woman up into the air.,takes a the steps of the followed by some soldiers.,2\n17625,anetv_3zMCxmdkcRY,10356,He lifts the woman up into the air. The camera,He lifts the woman up into the air.,The camera,gold,captures her from above.,\"peels off, revealing the dog to the one girl coming in.\",pans up to a tall building in the background.,\"pans all around her, depositing the handle on the carpet.\",2\n17626,lsmdc3022_DINNER_FOR_SCHMUCKS-10442,19179,Someone sees a car pull up. Someone,Someone sees a car pull up.,Someone,gold,lies back and splattering blood on someone's nose.,\"opens the van and pulls out the empty detonator, then breaks on a gas valve.\",hides behind the porsche as martha gets out of her car and waves to someone as he comes out of the building.,sits on a chair with a mohawk girl beside him.,2\n17627,lsmdc3022_DINNER_FOR_SCHMUCKS-10442,19180,Someone hides behind the Porsche as Martha gets out of her car and waves to someone as he comes out of the building. Hefty Martha,Someone hides behind the Porsche as Martha gets out of her car and waves to someone as he comes out of the building.,Hefty Martha,gold,stands on the streets and parks.,\"is jogging wearing his coat, now clad in a form with a crease and a black t - shirt in bar.\",goes over to someone who crouches down in front of her and runs his hands all over her.,picks up a sawed off shotgun from the garbage bag.,2\n17628,lsmdc3022_DINNER_FOR_SCHMUCKS-10442,19181,\"Someone notes someone's reaction. As someone gets in the car, he\",Someone notes someone's reaction.,\"As someone gets in the car, he\",gold,enters the smoking hallway.,passes her worried friend.,collapses into the bag.,shoots a superior look in someone's direction.,3\n17629,lsmdc0038_Psycho-67425,16884,\"She smiles brightly, as if having invited them over to discuss this year's charity fandango, takes the Sheriff's arm, starts away. The Sheriff\",\"She smiles brightly, as if having invited them over to discuss this year's charity fandango, takes the Sheriff's arm, starts away.\",The Sheriff,gold,nods as he goes.,\"stand inhaling and lift people, then retrieve all their cigarettes.\",strides towards them earlier.,looks away and shades at someone.,0\n17630,lsmdc0038_Psycho-67425,16885,The Sheriff nods as he goes. People,The Sheriff nods as he goes.,People,gold,\"are alone now, at the curb, before the deserted chapel.\",arrive at the cabin.,\"another page, someone lifts someone's phone and answers.\",are cleaning the house.,0\n17631,anetv_ke3R1rOeQzE,7559,A player spikes a volley ball across a court of awaiting players. the opposite team,A player spikes a volley ball across a court of awaiting players.,the opposite team,gold,knocks off a bag and goes up the meeting.,returns the basketball players to their goal and scores a goal.,aims out the referee and walks around with the players.,runs for the ball and hits it on the other side of the net.,3\n17632,anetv_ke3R1rOeQzE,14900,Two teams play indoor volley ball as marketing signs bordering the playing floor change suddenly and morph in more signs. A coach in a black suit,Two teams play indoor volley ball as marketing signs bordering the playing floor change suddenly and morph in more signs.,A coach in a black suit,gold,walks across the sidelines as the game continues and one player in a blue uniform throws an arm up in victory.,holds up his ping pong racket while watching the judges watch.,runs and tries to hit the ball.,leads out of a beaded dress by a reporter on the court.,0\n17633,anetv_-NM-0NZXRNw,18153,\"While they are hitting each other, the concession stand is shown as well as many people entering and buying snacks. Multiple games are taking place and throughout it, teams begin to win\",\"While they are hitting each other, the concession stand is shown as well as many people entering and buying snacks.\",\"Multiple games are taking place and throughout it, teams begin to win\",gold,several consecutive erupts for the camera.,are shown holding their flags up.,and move and turn wrestling with great silence.,their clothing.,1\n17634,anetv_-NM-0NZXRNw,10303,\"A group of men jumps and celebrates, then people continue shooting. After, the winners\",\"A group of men jumps and celebrates, then people continue shooting.\",\"After, the winners\",gold,cheers and speak to each other during the game.,make the baskets and they celebrate.,receive a trophy in the podium.,see the triple jump and give themselves a hug.,2\n17635,anetv_-NM-0NZXRNw,10302,The teams compete shooting while covered behind inflated protectors. Men,The teams compete shooting while covered behind inflated protectors.,Men,gold,lie on the ground railings trying to tug by.,run to cover behind the protectors while shooting.,are serving or teach the white team and make jump dodgeball.,close a goal and get a trophy before the competition.,1\n17636,anetv_-NM-0NZXRNw,10301,Teams compete shooting using plastic guns. The teams,Teams compete shooting using plastic guns.,The teams,gold,compete shooting while covered behind inflated protectors.,talk to each other for a moment have moved the final bits and chips.,are then shown preparing to run with hitting ball one at a time.,head to an outdoor field where the team of the swimmers take turns hit and shows a ball and opposing times a goal.,0\n17637,anetv_-NM-0NZXRNw,18152,\"Next, a group of paint ballers begin to take off and shoot one another. While they are hitting each other, the concession stand\",\"Next, a group of paint ballers begin to take off and shoot one another.\",\"While they are hitting each other, the concession stand\",gold,is shown as well as many people entering and buying snacks.,is arguing in two.,raise their hands to celebrate.,is only seen running through an house in the middle of the track.,0\n17638,anetv_-NM-0NZXRNw,18151,\"Several people are shown before a crowd of people begin to stand up in the bleachers to support them. Next, a group of paint ballers\",Several people are shown before a crowd of people begin to stand up in the bleachers to support them.,\"Next, a group of paint ballers\",gold,begin to take off and shoot one another.,unties to themselves as they talk and slide them on bikes.,appear on the screen as the young team is over in uniform.,are seen in snowboards.,0\n17639,anetv_lcUtnIptSjM,15375,A woman in a lab coat is in a hospital recovery room. She,A woman in a lab coat is in a hospital recovery room.,She,gold,is in chair with a bunch of people.,is the first woman who jumps on the bed at work.,puts out a spare.,soaps up her hands well with soap.,3\n17640,anetv_lcUtnIptSjM,15376,She soaps up her hands well with soap. She then,She soaps up her hands well with soap.,She then,gold,applies lipstick over her ears and neck and head.,rinses and dries them thoroughly.,combs the clients hair as she finishes.,takes the drain off and sprays into the sink.,1\n17641,anetv_OsB_uEj1PRM,12120,A man is seen laying on the ground holding onto his stomach. He,A man is seen laying on the ground holding onto his stomach.,He,gold,begins swinging several more times while walking around and throwing him down.,begins moving himself up and down on the ground while holding onto his waist.,falls laying down while standing in front of the camera.,swings back and fourth on the machine while another man watches to the camera.,1\n17642,anetv_OsB_uEj1PRM,12121,He begins moving himself up and down on the ground while holding onto his waist. He,He begins moving himself up and down on the ground while holding onto his waist.,He,gold,throws graciously and twists his arms up.,continues moving up and down while the camera captures his movements.,continues going and going right to slower in turn.,picks up the weights and spins them again several times.,1\n17643,anetv_cr9VTwfM_2w,6121,A person is seen riding around a skateboard attempting several jumps and tricks while the camera watches his movements. The boy,A person is seen riding around a skateboard attempting several jumps and tricks while the camera watches his movements.,The boy,gold,is shown jumping as he skis and bumps his stick on the water while he is riding.,\"continues attempting tricks wile falling off on the side and trying again, landing the moves the last try.\",continues riding around on the bike while a child watches this time.,continues throwing himself around while falling and falling off the sides and looking around.,1\n17644,anetv_cr9VTwfM_2w,13939,\"Sometimes, he fails and other times he can perform a kickflip. He\",\"Sometimes, he fails and other times he can perform a kickflip.\",He,gold,stands for several seconds while then begins dancing.,falls down and then has to run after the board.,\"tricks while he swings, turns and the skates stops and he jumps in front of it.\",puts a better look on his face and looks very good at the surface.,1\n17645,lsmdc3025_FLIGHT-12070,13711,Someone's eyes dart up and down. He,Someone's eyes dart up and down.,He,gold,rips up the knife.,takes someone's hand.,lays down on the bed.,brushes into a bunch.,1\n17646,lsmdc3025_FLIGHT-12070,13713,Someone sees the lights on in the hangar. Someone,Someone sees the lights on in the hangar.,Someone,gold,laughs as a steward slides the escalade's door shut.,\"stands up on the window at the face of the combo, and is utterly confused.\",steps back to the cafe beyond the track which are deserted.,leans over the cessna.,3\n17647,lsmdc3025_FLIGHT-12070,13712,He takes someone's hand. Someone,He takes someone's hand.,Someone,gold,signs the book from under a young mutant in the corner of the bed.,looks away from someone as he closes the gap between the doors and closes out beyond it.,pulls the gate away and drives them with his arms.,sees the lights on in the hangar.,3\n17648,lsmdc3025_FLIGHT-12070,13714,Someone leans over the Cessna. He,Someone leans over the Cessna.,He,gold,\"pauses briefly, then lowers his dance gaze.\",\"stands, smiles, and starts her dance.\",carries it out by someone.,jumps off the ladder and hustles over to someone.,3\n17649,anetv_i-LI4TpJNQ8,16565,Man is sitting in a kayak next to the sidewalk. man,Man is sitting in a kayak next to the sidewalk.,man,gold,is taking out the kayak from the water.,is mowing the grass in a backyard.,is sitting in a tube holding an empty rag.,is standing on the sidewalk holding a cigarette.,0\n17650,lsmdc0016_O_Brother_Where_Art_Thou-55434,9379,The three hold their coats pinched shut at the neck as they look forlornly up at the weather. - The three men,The three hold their coats pinched shut at the neck as they look forlornly up at the weather.,- The three men,gold,are knocked out with someone as the kids step up to him.,walk along a red dirt road elevated through a bayou.,\"bring up their daughter slumped over the rock with their pom poms, their young backs together.\",\"climbs on the high balcony and floats, tenderly, but harry appears in the doorway.\",1\n17651,lsmdc0016_O_Brother_Where_Art_Thou-55434,9378,The crude black label identifies it as' Man of Constant Sorrow 'by the Soggy Bottom Boys. The three,The crude black label identifies it as' Man of Constant Sorrow 'by the Soggy Bottom Boys.,The three,gold,begin to walk up some stairs to the middle of the hall drinking.,quiets down as they took out his turquoise blue coat.,\"take crates and pick some snow off the garbage, disappearing into the pool.\",hold their coats pinched shut at the neck as they look forlornly up at the weather.,3\n17652,lsmdc0050_Indiana_Jones_and_the_last_crusade-70466,16322,\"Someone gets to his knees as the huge Zeppelin rises into the sky above him, revealing an airplane attached to the belly of the airship. Someone\",\"Someone gets to his knees as the huge Zeppelin rises into the sky above him, revealing an airplane attached to the belly of the airship.\",Someone,gold,can't see easter.,shakes his fist at the rising zeppelin.,works upside down to a station.,drops down and falls on the astronomy tower.,1\n17653,lsmdc3004_500_DAYS_OF_SUMMER-1637,4426,Someone leaps up and chases the young lad. The singer,Someone leaps up and chases the young lad.,The singer,gold,slashes the chest with his thumb.,gives a lad to a man's directions to him.,stops and lifts someone's jaw.,sports a massive afro.,3\n17654,lsmdc3004_500_DAYS_OF_SUMMER-1637,4427,The singer sports a massive afro. Someone,The singer sports a massive afro.,Someone,gold,runs through a branch.,looks casually at its apparent money.,writes a note in a detail.,throws her bouquet over her head.,3\n17655,anetv_-uR5-jYe0Ag,6718,A woman is standing in front of a mirror. the woman then,A woman is standing in front of a mirror.,the woman then,gold,grabs a bottle of paper in from a wooden bowl.,starts punching her head with a stick.,begins shaving the bar intermittently.,begins applying eye liner.,3\n17656,anetv_-uR5-jYe0Ag,6719,The woman then begins applying eye liner. the woman,The woman then begins applying eye liner.,the woman,gold,talks to the camera then returns to applying makeup.,trims her hair and parts.,brushes her hair and continues painting on the brush then braids up with a brush.,begins to move the cat.,0\n17657,anetv_-uR5-jYe0Ag,15867,First she makes her eyes up and winks at the camera. Then she,First she makes her eyes up and winks at the camera.,Then she,gold,smiles and puffs again.,shows how it would look like her pet model.,squeezes her coffee brown under her hands.,says something and turns back around to do what she was doing.,3\n17658,anetv_-uR5-jYe0Ag,15866,This woman is shown putting on her makeup while looking in the mirror. First she,This woman is shown putting on her makeup while looking in the mirror.,First she,gold,takes her lipstick out and continues brushing her breasts.,uses an eyeliner on then climbs on to remove her eyelids.,makes her eyes up and winks at the camera.,gets two soap for her and dry her hair.,2\n17659,lsmdc0050_Indiana_Jones_and_the_last_crusade-70761,13027,Someone reaches forward and fingers someone's clothing. Someone,Someone reaches forward and fingers someone's clothing.,Someone,gold,holds his sword out to someone.,\"slithers past some women, posing, tracking after him.\",rolls over to him reassuringly and grimly off.,stands in front of leather.,0\n17660,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5328,\"Someone wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror. Someone's features suddenly\",\"Someone wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror.\",Someone's features suddenly,gold,belongs to a chubby light at her son's side.,draw away from the scene.,rapping around a large oak complex beside the cliff.,transform into the malevolent face of someone.,3\n17661,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5330,Someone casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock. Someone,Someone casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock.,Someone,gold,gapes as she runs into someone's mends.,charges - drags someone off the stage.,stops for a moment to scream who hears the noise.,stares into the murky depths of the water.,3\n17662,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5326,People lie asleep amidst scrubby bushes near a stagnant pool. Someone,People lie asleep amidst scrubby bushes near a stagnant pool.,Someone,gold,shows someone to a typewriter.,\"sees the waitress, pulls out a woman's chair.\",sleeps on the other side of a sofa.,\"lies nearby, muttering in his sleep.\",3\n17663,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5327,\"Someone lies nearby, muttering in his sleep. Someone\",\"Someone lies nearby, muttering in his sleep.\",Someone,gold,rips the tiny vampire off its head.,\"wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror.\",gapes as the ice drops right into someone's face.,peers on the lower section of the canvas cover.,1\n17664,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5329,Someone's features suddenly transform into the malevolent face of someone. Someone,Someone's features suddenly transform into the malevolent face of someone.,Someone,gold,wraps his arms around him and pulls him back and moves away.,casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock.,leans back through a window and spots something on the ground.,takes it from someone.,1\n17665,anetv_2DvMNOas7jY,10802,The person continues riding down the hill with the camera capturing scenery and cars as well as placing his hand on the boarder in front of him. In the end he,The person continues riding down the hill with the camera capturing scenery and cars as well as placing his hand on the boarder in front of him.,In the end he,gold,performs tricks with another man behind him going into a circle.,continues to snowboard and eventually eats the water and sits on the bike.,passes by the boarder and makes a stop by the car.,takes his turn and goes back to throw his hands up as well as one turning the tire from under the boot.,2\n17666,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15508,Someone autographs a picture of himself. Someone,Someone autographs a picture of himself.,Someone,gold,sets down the keys.,looks up as he hears a strange voice.,jumps out clinging to the grass.,appears to open the bottle's panel.,1\n17667,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15506,\"He takes someone's hand. Her eyes full of tears, she\",He takes someone's hand.,\"Her eyes full of tears, she\",gold,\"presses her lips together, then releases her hand and her long dark hair.\",gives him a faint smile.,gazes down a spiral staircase and peers down the spiral.,lowers her disappointed gaze and slumps back.,1\n17668,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15507,\"Her eyes full of tears, she gives him a faint smile. Someone\",\"Her eyes full of tears, she gives him a faint smile.\",Someone,gold,autographs a picture of himself.,looks confident and rather focused.,hands someone back a lunch tray.,ends with her beaming beaming at the audience.,0\n17669,anetv_2qcdjyT7nDY,3635,Four girls are lifted and they hold one girl in between them laying down. Ladies,Four girls are lifted and they hold one girl in between them laying down.,Ladies,gold,are doing a way while the boys hug and drink.,watch from the rope and continue landing on the bottom.,hold ladies who hold and shake their pom poms.,climbs out of the water as they go to her.,2\n17670,anetv_2qcdjyT7nDY,3638,We see ending credits and still shots. A quote and website,We see ending credits and still shots.,A quote and website,gold,appear on the instruction screen.,appears at the end of the screen.,appear on the heart of a screen.,appears on the screen.,3\n17671,anetv_2qcdjyT7nDY,3637,The team finishes and hugs. We,The team finishes and hugs.,We,gold,see ending credits and still shots.,see some caution games of soccer.,see people playing dance on the large table.,see the title screen clapping.,0\n17672,anetv_2qcdjyT7nDY,3636,Ladies hold ladies who hold and shake their pom poms. Four ladies,Ladies hold ladies who hold and shake their pom poms.,Four ladies,gold,step apart and add a set of pumps.,are lifted and hold two other ladies then a seventh lady.,kneel before a lady in stage.,\"walk look behind the men, tango, then stand on the machines and clap and twirl.\",1\n17673,anetv_smfBAiFujmE,5350,A person is seen sitting in the water with a pair of skis attached to his feet. The man then,A person is seen sitting in the water with a pair of skis attached to his feet.,The man then,gold,gets up on the skis and rides along the water behind a boat.,begins spinning his body over the metal as the man sits down and speaks to the camera pointing to the machine.,walks back and fourth skiing through the water.,begins moving the pole up and down as well as holding it over and moving it.,0\n17674,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19027,\"Someone, followed by the still - silent people, comes in. Someone\",\"Someone, followed by the still - silent people, comes in.\",Someone,gold,\"stands on the stairs, clutching her arms.\",\"glances up at someone, who points to a line outside the classroom barriers.\",stares tearfully at someone.,\"is standing in the doorway to his private office, taking a drink from a bottle.\",3\n17675,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19028,\"Someone is standing in the doorway to his private office, taking a drink from a bottle. He\",\"Someone is standing in the doorway to his private office, taking a drink from a bottle.\",He,gold,stands up and closes his fingers.,boys stare at him.,motions to someone to join him.,is sitting in a booth in the rear - view mirror.,2\n17676,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19031,They all have their passbooks out. Someone,They all have their passbooks out.,Someone,gold,sees someone through the window.,measures someone on her drawing.,hurries into his office where someone is waiting for him.,rushes over to help and stares at them.,2\n17677,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19023,\"Someone runs off up the street, toward the Building and Loan. They\",\"Someone runs off up the street, toward the Building and Loan.\",They,gold,\"are simply - dressed people, to whom their savings are a matter of life and death.\",run out of rooms fighting.,are stacked against him.,walks him to the upstairs door.,0\n17678,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19019,Panic is in the air. Attendants,Panic is in the air.,Attendants,gold,\"continues coming towards him, someone does, deeper into the forest.\",\"impatiently, she takes a low pan.\",surround the gates of the urns and catapult to a hut onto the track.,are trying to close down.,3\n17679,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19021,Several people come running past the cab. Someone,Several people come running past the cab.,Someone,gold,\", someone passing heavy keys.\",sits and presses the phone to her room.,drives on stage to watch someone.,gets out of the cab and looks down the street.,3\n17680,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19024,\"The people look at him silently, half shamefaced, but grimly determined on their rights. An iron grill\",\"The people look at him silently, half shamefaced, but grimly determined on their rights.\",An iron grill,gold,is overturned in nearer along the canal.,spills down the slope.,hangs in the mirrored window.,blocks the street entrance to the building and loan.,3\n17681,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19026,\"He quickly unlocks the grill door and pushes it open. Followed by the crowd, someone\",He quickly unlocks the grill door and pushes it open.,\"Followed by the crowd, someone\",gold,finds a man asleep on the couch.,runs upstairs and into the outer offices of the building and loan.,takes his cell phone from his ear.,returns with him.,1\n17682,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19029,He motions to someone to join him. Someone,He motions to someone to join him.,Someone,gold,turns back cheerfully to the crowd.,\"jerks his thumb at the snitch, then quickly glances back at someone.\",marches toward the delightedly keeper.,drops dead in his eye.,0\n17683,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19020,Attendants are trying to close down. Several people,Attendants are trying to close down.,Several people,gold,begin to blow their spears.,are seen sitting on a machine in shorts and pulling an exercise octave.,come running past the cab.,are to various leaves.,2\n17684,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19030,Someone turns back cheerfully to the crowd. The people,Someone turns back cheerfully to the crowd.,The people,gold,are stopped to stare at someone as he pins the camera on someone's head.,exit someone's tent.,walk into the living room.,ignore someone and remain standing in front of the teller's window.,3\n17685,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19032,Someone hurries into his office where someone is waiting for him. He,Someone hurries into his office where someone is waiting for him.,He,gold,pushes him off the sofa as he sits by a car.,points to someone's office.,stops and turns as someone steps outside.,abruptly stops when he sees and grabs his folded arms.,1\n17686,lsmdc0014_Ist_das_Leben_nicht_schoen-54646,19025,An iron grill blocks the street entrance to the Building and Loan. A crowd of men and women,An iron grill blocks the street entrance to the Building and Loan.,A crowd of men and women,gold,stand and crowd to a crosswalk.,stand holding a rotunda at her side.,\"are parked behind, watching him.\",are waiting around the grill.,3\n17687,lsmdc1017_Bad_Santa-7874,8198,\"A cop spots him and takes a shot, which blows the trunk of the wall. The statues in the nativity stable scene\",\"A cop spots him and takes a shot, which blows the trunk of the wall.\",The statues in the nativity stable scene,gold,\"are smashed, which gets in the way.\",gives him a change and wipe the mud and the road.,are knocked to the ground by the look of white they were torn away.,are removed from the ground.,0\n17688,lsmdc1017_Bad_Santa-7874,8196,Someone runs holding the pink elephant which gets its head blowed off. He,Someone runs holding the pink elephant which gets its head blowed off.,He,gold,hides around a corner and catches his breath.,finds a penguin sitting on a handwritten patch and faces his companion.,\"looks around, trying not to look pleased.\",deflects the white rounds.,0\n17689,lsmdc1017_Bad_Santa-7874,8209,\"Still clutching the elephant, someone crawls towards someone's front door. Someone reaches the front step, but he\",\"Still clutching the elephant, someone crawls towards someone's front door.\",\"Someone reaches the front step, but he\",gold,pulls out one silver bin.,is too badly injured to go any further.,walks out through our view.,does not take the flagpole from someone's hand.,1\n17690,lsmdc1017_Bad_Santa-7874,8210,\"Someone reaches the front step, but he is too badly injured to go any further. He\",\"Someone reaches the front step, but he is too badly injured to go any further.\",He,gold,\"steps onward, taking a breath.\",is clearing the driveway in the bright sunshine.,walks up to an abandoned stairway.,collapses and lies motionless.,3\n17691,lsmdc1017_Bad_Santa-7874,8211,He collapses and lies motionless. The posse of cops,He collapses and lies motionless.,The posse of cops,gold,stare as several drawings of jagged boards surrounds the screen.,haul someone into the backseat someone nearly elbows him around.,kicks the men and then back.,\"surround him, keeping him covered as the screen fades slowly.\",3\n17692,lsmdc1017_Bad_Santa-7874,8203,He glances back at the pursuing cruisers. The bmw,He glances back at the pursuing cruisers.,The bmw,gold,speeds to the driver's side of the highway and explodes.,mustang drive through intense traffic.,\"rounds the corner onto someone's street, raising smoke from its tires in the process.\",drives off of the battlefield and up at his motorcycle.,2\n17693,lsmdc1017_Bad_Santa-7874,8197,He hides around a corner and catches his breath. A cop,He hides around a corner and catches his breath.,A cop,gold,\"spots him and takes a shot, which blows the trunk of the wall.\",gives them a kiss as the cop wraps his arm around him and smirks.,throws him a yellow ball.,\"leads someone up a stairway which leads by a man in armor, hauling him into the truck.\",0\n17694,lsmdc1017_Bad_Santa-7874,8204,\"The bmw rounds the corner onto someone's street, raising smoke from its tires in the process. It\",\"The bmw rounds the corner onto someone's street, raising smoke from its tires in the process.\",It,gold,can tell what she is saying or just keeps looking for him.,see someone down the road in a dark neighborhood.,turns and blocks the fire.,races on down the street with the cruisers in hot pursuit.,3\n17695,lsmdc1017_Bad_Santa-7874,8208,Some children at a neighboring house come out to see what the commotion is all about. They,Some children at a neighboring house come out to see what the commotion is all about.,They,gold,in the white room is preparing to complete the routine by lifting him up and throwing him down from the side of the table.,coach while seated at their restaurant seller has questions their students at the student team.,watch as the cops cut someone down in a hail of hot blood.,shut the bedroom door.,2\n17696,lsmdc1017_Bad_Santa-7874,8207,\"Unable to get the car door open, he scrambles out of the driver's window clutching the pink elephant. Some children at a neighboring house\",\"Unable to get the car door open, he scrambles out of the driver's window clutching the pink elephant.\",Some children at a neighboring house,gold,are waiting on the other side of the cab landing.,holds a pair of lights holding a chicken piece.,\", someone stands at the top of the hill.\",come out to see what the commotion is all about.,3\n17697,lsmdc1017_Bad_Santa-7874,8199,\"The statues in the nativity stable scene are smashed, which gets in the way. Later, he\",\"The statues in the nativity stable scene are smashed, which gets in the way.\",\"Later, he\",gold,\"jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw.\",\"removes goggles, mask over his stainless steel stove, and uses a plastic bag for a fully fitted long.\",\"lingers by a victorian house with thick steel supports, wearing a winter coat and a khaki jacket.\",walks to the gateway house and leaves the tree to a second school.,0\n17698,lsmdc1017_Bad_Santa-7874,8202,\"The cop shattered the bmw's back window. someone drives on, and the cops speed after him. He\",\"The cop shattered the bmw's back window. someone drives on, and the cops speed after him.\",He,gold,\"stares at the explosion, at a slush - lined street with lush flowering shrubs.\",dashes over to the boy who's trying to get someone from someone.,hops toward the skateboard and pins him on the pavement.,glances back at the pursuing cruisers.,3\n17699,lsmdc1017_Bad_Santa-7874,8206,\"Someone pulls up outside someone's house. Unable to get the car door open, he\",Someone pulls up outside someone's house.,\"Unable to get the car door open, he\",gold,scrambles out of the driver's window clutching the pink elephant.,strolls down a walkway past the cross shooting pool.,stumbles stands over the bush and shuts the doors behind him.,runs up the corridor and stops.,0\n17700,lsmdc1017_Bad_Santa-7874,8205,It races on down the street with the cruisers in hot pursuit. Someone,It races on down the street with the cruisers in hot pursuit.,Someone,gold,hangs up his rifle.,stops waiting for her.,steps up and rejoins her.,pulls up outside someone's house.,3\n17701,lsmdc1017_Bad_Santa-7874,8201,He starts it up and speeds off. A police reaches out his way and the bmw,He starts it up and speeds off.,A police reaches out his way and the bmw,gold,drives away after him.,smashes the door off a squad car as someone makes his escape.,is stuck on under the windshield.,grinds down the deck.,1\n17702,lsmdc1017_Bad_Santa-7874,8200,\"Later, he jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw. He\",\"Later, he jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw.\",He,gold,starts it up and speeds off.,\"watches tensely through the doorway, then walks over to a vanity chair adjust a register.\",gets out of the car.,opens the front door and steps inside.,0\n17703,anetv_FbvTQ1-FCag,13883,The dart board that they are shooting at is shown. People,The dart board that they are shooting at is shown.,People,gold,are in the court playing cassettes.,are celebrating and clapping hands.,are interacting around the alley.,are hiding behind the wall talking.,1\n17704,anetv_Ld2a5ogu9k8,298,They put their socks on their feet. They then,They put their socks on their feet.,They then,gold,head a wrapped in small tubs.,put brush on their toe nails.,slide off the monkey.,put their shoes on their feet.,3\n17705,anetv_Ld2a5ogu9k8,10069,Woman is siting in a bed and its putting white socks. woman,Woman is siting in a bed and its putting white socks.,woman,gold,is sitting in front of a tattoo chair with a laptop in her lap.,is in a red shirt doing sit ups.,is using a small red saddle to do a flip.,grab the shoes from the floor and wear them.,3\n17706,anetv_Ld2a5ogu9k8,297,A person is sitting on a bed. They,A person is sitting on a bed.,They,gold,switch from people dancing stacks on top a deep carpet.,is shown knitting various faded photographs.,are playing a bowl of sandy on a table.,put their socks on their feet.,3\n17707,anetv_Ld2a5ogu9k8,10070,Woman grab the shoes from the floor and wear them. when the shoes are in the feet the camera,Woman grab the shoes from the floor and wear them.,when the shoes are in the feet the camera,gold,goes out of the pink front.,puts them all over a ballerina.,make a zoom on them.,begins to look on from the directions.,2\n17708,lsmdc3068_THE_BIG_YEAR-3616,10958,\"Later, he hurries outside. A cab\",\"Later, he hurries outside.\",A cab,gold,drives to a window.,pulls up at the intersection.,pulls to a stop.,stops at a corner.,2\n17709,lsmdc3068_THE_BIG_YEAR-3616,10959,A cab pulls to a stop. He,A cab pulls to a stop.,He,gold,holds up all computers.,holds up a bureau and leafs over it.,points as he vaults a police bike over.,\"loads his bags into the backseat, then turns to his son's apartment and waves good - bye.\",3\n17710,lsmdc3068_THE_BIG_YEAR-3616,10956,She watches lovingly from the background. Someone,She watches lovingly from the background.,Someone,gold,moves at the same side and offers her hand.,looks at someone who looks up to reach behind someone.,notices her and smiles.,runs in the bathroom.,2\n17711,lsmdc3068_THE_BIG_YEAR-3616,10955,\"Stepping inside, someone hugs him. The white haired grandfather\",\"Stepping inside, someone hugs him.\",The white haired grandfather,gold,rises out of the car and looks around.,looks at the surveillance camera cruising.,hurries briskly toward the door.,gives a touched look.,3\n17712,lsmdc3068_THE_BIG_YEAR-3616,10957,Someone notices her and smiles. He,Someone notices her and smiles.,He,gold,looks off to the side of the hotel and can see that he looks and dances.,snags her dursleys jacket.,jiggles little someone's hips like a dancer.,glances down at her and tries to hoist her shoulders as she steps toward someone and smiles at the girls.,2\n17713,lsmdc3036_IN_TIME-15600,16156,\"On her left arm, she wears an evening glove with its fingers cut off. Gazing at herself in a small mirror, she\",\"On her left arm, she wears an evening glove with its fingers cut off.\",\"Gazing at herself in a small mirror, she\",gold,faces a mirror and points to the light.,adjusts her straight auburn hair.,\"picks up a duffel bag, and takes a large plastic bag from her bag.\",brings out her smoky vodka.,1\n17714,lsmdc3036_IN_TIME-15600,16150,\"With his gun at her back, he shuffles her past a timed out woman lying in the street. Someone\",\"With his gun at her back, he shuffles her past a timed out woman lying in the street.\",Someone,gold,follows someone up a fire escape to a balcony.,writhes in air as he lowers the pool grate in front of someone.,comes along the compound and follows a metal - ordered trolley across the steps.,\"appears, sits on the grass, talking to someone.\",0\n17715,lsmdc3036_IN_TIME-15600,16180,\"Now, someone holds someone's arm as he escorts her down a sidewalk. She\",\"Now, someone holds someone's arm as he escorts her down a sidewalk.\",She,gold,heads up a spiral staircase.,walks over to someone and shambles back to the back.,takes off a blue bed sweatshirt and places it on his belly.,holds his gaze with solemn eyes.,3\n17716,lsmdc3036_IN_TIME-15600,16163,He sets the gun on a table. Someone,He sets the gun on a table.,Someone,gold,leads the girl into a glass of water.,example friends bounce around.,places the colt's needle on top of the stack.,sits on the edge of the couch.,3\n17717,lsmdc3036_IN_TIME-15600,16173,Someone gives a surprised look. He,Someone gives a surprised look.,He,gold,grabs two guns off the table.,steps toward the door and leans close.,comes outside.,\"pockets his walkie, snapping his fingers and shoots a window as he scans the area.\",0\n17718,lsmdc3036_IN_TIME-15600,16149,The blond timekeeper traces the call. He,The blond timekeeper traces the call.,He,gold,smashes through the window window just to where their pursuers fall.,watches from the window as she anxiously reaches out.,kicks the bag shut.,returns the phone to someone.,3\n17719,lsmdc3036_IN_TIME-15600,16143,\"As a timekeeper's car passes, someone transfers half his time to someone. They\",\"As a timekeeper's car passes, someone transfers half his time to someone.\",They,gold,stare against the window again.,\"watch their own clocks, then release each other.\",see a car escorting the car above a white ditch.,stand up round their necks.,1\n17720,lsmdc3036_IN_TIME-15600,16178,\"The neon letters on the sign flicker, then glow steadily. Someone\",\"The neon letters on the sign flicker, then glow steadily.\",Someone,gold,lowers his gaze and clenches his jaw.,\"looks up as someone pounds the bathroom door again, then a second movie.\",drives down a suburban street down the street.,retreats through the trees and water covers his boots.,0\n17721,lsmdc3036_IN_TIME-15600,16118,\"It backs up quickly and lurches to a halt. At the wheel, someone\",It backs up quickly and lurches to a halt.,\"At the wheel, someone\",gold,steps through a doorway and heads inside.,is dragged onto the floor.,moves to the window and starts the car.,gazes down at the wrecked roadster.,3\n17722,lsmdc3036_IN_TIME-15600,16108,Someone leans forward and protectively pushes someone's head down. The car,Someone leans forward and protectively pushes someone's head down.,The car,gold,careens off the road and tumbles end over end into the basin.,arrives with the dealer outside.,\"parks up close, stuck up behind the driver's seat.\",comes into rest regions it.,0\n17723,lsmdc3036_IN_TIME-15600,16158,\"In the adjacent room, someone puts on a long - sleeved shirt. Later, he\",\"In the adjacent room, someone puts on a long - sleeved shirt.\",\"Later, he\",gold,lights an match while someone scans about an austin park area.,sets three o'clock on the stove and takes a juice out of his cup.,passes the busty woman to a woman in a dark suit.,gazes out a window at the mission's neon sign.,3\n17724,lsmdc3036_IN_TIME-15600,16145,Someone gives a nod and someone answers. Someone,Someone gives a nod and someone answers.,Someone,gold,\"stares back, her jaw hanging slack as she looks at the doorway.\",shoves his weapon downward.,holds out the phone.,struggles to come out of his front door.,2\n17725,lsmdc3036_IN_TIME-15600,16177,As the Mission's door opens and a man emerges. The neon letters on the sign,As the Mission's door opens and a man emerges.,The neon letters on the sign,gold,reveals a green light stole from a brown cloth.,\"flicker, then glow steadily.\",bears a new snug - me - starting sign.,\"reads, if that is the last time.\",1\n17726,lsmdc3036_IN_TIME-15600,16157,\"Gazing at herself in a small mirror, she adjusts her straight auburn hair. In the adjacent room, someone\",\"Gazing at herself in a small mirror, she adjusts her straight auburn hair.\",\"In the adjacent room, someone\",gold,scratches his foot down a crowded chart.,flips open a laptop and lights a laptop.,puts on a long - sleeved shirt.,collapses taking a seat as the bar line groping for the office.,2\n17727,lsmdc3036_IN_TIME-15600,16121,\"Someone, someone, and their blond colleague surround the mangled Roadster. Someone\",\"Someone, someone, and their blond colleague surround the mangled Roadster.\",Someone,gold,sits on a sign on deck.,laughs as she goes out.,lowers the shapeless fish.,perches serenely on the roadster's hood.,3\n17728,lsmdc3036_IN_TIME-15600,16132,\"Someone paces, then faces someone. Brushing her hair back, he\",\"Someone paces, then faces someone.\",\"Brushing her hair back, he\",gold,smirks as she extends her hand to a bald mannequin.,looks aside as someone gets a immersion chip.,finds a sizable diamond stud on her earlobe.,steps closer and presses the water to his face.,2\n17729,lsmdc3036_IN_TIME-15600,16115,He grabs her forearm and gives her a few minutes. She,He grabs her forearm and gives her a few minutes.,She,gold,drops the jug of water and jumps over the toilet.,slams the door and walks inside.,tosses her hat away.,flings his hand away.,3\n17730,lsmdc3036_IN_TIME-15600,16123,\"Now, someone and someone run hand in hand through the ghetto. Reaching someone's apartment complex, they\",\"Now, someone and someone run hand in hand through the ghetto.\",\"Reaching someone's apartment complex, they\",gold,dash up the steps to his unit.,open the clock inside.,approach a lot and part simply by the equipment.,find the joe on someone's phone.,0\n17731,lsmdc3036_IN_TIME-15600,16164,Someone sits on the edge of the couch. She,Someone sits on the edge of the couch.,She,gold,grasps someone's leg and kisses his belly.,sits down at the piano.,backs up and stumbles first.,gazes up at him.,3\n17732,lsmdc3036_IN_TIME-15600,16130,As someone beats the screen door. Someone,As someone beats the screen door.,Someone,gold,notes two and a half minutes left on her clock.,opens the bar and laughs.,swings on on the stilts.,runs his stick through the open door but does n't catch his air.,0\n17733,lsmdc3036_IN_TIME-15600,16111,\"Someone's head twitches groggily. In the Roadster, someone\",Someone's head twitches groggily.,\"In the Roadster, someone\",gold,gets to his feet and hauls someone on his chest.,stirs weakly then wakes.,forces his way beneath the jammed mask.,bursts onto someone's car steps.,1\n17734,lsmdc3036_IN_TIME-15600,16129,\"She withdraws into the apartment, shutting the doors. As someone\",\"She withdraws into the apartment, shutting the doors.\",As someone,gold,\"trudges past, men up.\",rolls over to find another white in the drawers on the floor.,beats the screen door.,\"lingers, unlocking the door.\",2\n17735,lsmdc3036_IN_TIME-15600,16154,\"Someone drinks from the tap, wipes his mouth, then shuts off the faucet. Now, in the bathroom, someone\",\"Someone drinks from the tap, wipes his mouth, then shuts off the faucet.\",\"Now, in the bathroom, someone\",gold,zips herself into a modest short - sleeved dress.,finds him fully leg artillery.,\"stands at a toilet stall, opens the door door but finds only the usual six of them.\",opens her eyes and looks at his replacement.,0\n17736,lsmdc3036_IN_TIME-15600,16140,He notices less than a minute on someone's clock. Someone,He notices less than a minute on someone's clock.,Someone,gold,sticks his hand through the gate.,\"sits alone in bed, with her feet - up with her new strap.\",walks from a table to the entrance to the crafts front the piano.,peers after his fellow drones.,0\n17737,lsmdc3036_IN_TIME-15600,16124,\"Reaching someone's apartment complex, they dash up the steps to his unit. Someone\",\"Reaching someone's apartment complex, they dash up the steps to his unit.\",Someone,gold,\"'s dark alley is parked near the station garage, lights are out on the delegates, recorded conversation as views run outside.\",stands by as someone raises a fist to a screen door fitted with protective iron bars.,takes them a moment.,hops down onto the curved deck and perches on the edge of the platform.,1\n17738,lsmdc3036_IN_TIME-15600,16125,Someone stands by as someone raises a fist to a screen door fitted with protective iron bars. Someone's clock,Someone stands by as someone raises a fist to a screen door fitted with protective iron bars.,Someone's clock,gold,is taken on a clock hill.,\"plays in an upright courtyard and the majority in the pub collide, cringing and shaking.\",stands above the mast pile.,shows three and a half minutes left.,3\n17739,lsmdc3036_IN_TIME-15600,16131,Someone notes two and a half minutes left on her clock. Someone,Someone notes two and a half minutes left on her clock.,Someone,gold,bangs her body she beckons him to follow.,takes her daughter's hands and releases him.,puts a cigarette inside her mouth.,\"paces, then faces someone.\",3\n17740,lsmdc3036_IN_TIME-15600,16168,\"She gives him an uneasy look, then extends her arm. They\",\"She gives him an uneasy look, then extends her arm.\",They,gold,hug and races out of the room.,clasp each other's wrists.,takes a seat in the coffee table.,are in the living room across the table.,1\n17741,lsmdc3036_IN_TIME-15600,16174,He grabs two guns off the table. Someone,He grabs two guns off the table.,Someone,gold,looks down at someone.,stares off with woeful eyes.,restrains people as they warm up.,stands with someone in his arms.,1\n17742,lsmdc3036_IN_TIME-15600,16152,\"Opening a window, he climbs into the building where he lived with his mother. Someone\",\"Opening a window, he climbs into the building where he lived with his mother.\",Someone,gold,looks up at him as he reaches the vessel in the dwarf's ranks.,climbs in after him.,walks out of the ward then stops.,hurries down an aisle between forming stacks of tables.,1\n17743,lsmdc3036_IN_TIME-15600,16147,\"Someone gazes at a building's neon sign which reads Mission Out of Time. Shaking his head, someone\",Someone gazes at a building's neon sign which reads Mission Out of Time.,\"Shaking his head, someone\",gold,enters a living room.,moves away from someone.,gives his son a grim look as the writer bounds off.,discovers someone come out of the bedroom.,1\n17744,lsmdc3036_IN_TIME-15600,16107,It blows out the car's tires. Someone,It blows out the car's tires.,Someone,gold,sinks to the ground.,wears people's constructed beds.,sets his cap and hairspray case.,leans forward and protectively pushes someone's head down.,3\n17745,lsmdc3036_IN_TIME-15600,16119,\"At the wheel, someone gazes down at the wrecked Roadster. Later, he\",\"At the wheel, someone gazes down at the wrecked Roadster.\",\"Later, he\",gold,arrives at a hummer's corrugated high ceiling.,raises a scanner by his seat and sticks his wrist through it.,tosses on a gate handle.,looks back to a drawing of burning fires on the water polo.,1\n17746,lsmdc3036_IN_TIME-15600,16139,\"From the other side, a woman trains a shotgun on the pair while a man with long bangs examines the earrings. He\",\"From the other side, a woman trains a shotgun on the pair while a man with long bangs examines the earrings.\",He,gold,lifts up his jacket.,notices less than a minute on someone's clock.,\"sits still, staring off in horror.\",checks more text from back up as the shots take place.,1\n17747,lsmdc3036_IN_TIME-15600,16155,\"Now, in the bathroom, someone zips herself into a modest short - sleeved dress. On her left arm, she\",\"Now, in the bathroom, someone zips herself into a modest short - sleeved dress.\",\"On her left arm, she\",gold,sets off a few plastic bags and flops on her bed.,sees two mice lying climbing a bed.,looks up at someone.,wears an evening glove with its fingers cut off.,3\n17748,lsmdc3036_IN_TIME-15600,16138,\"It rises, revealing an additional grated gate behind it. From the other side, a woman\",\"It rises, revealing an additional grated gate behind it.\",\"From the other side, a woman\",gold,trains a shotgun on the pair while a man with long bangs examines the earrings.,approaches the cabinet canyon.,spins around a few three.,slings cellophane over her shoulder.,0\n17749,lsmdc3036_IN_TIME-15600,16105,\"At the wheel, someone looks up at a posted video camera trained on the road. As he\",\"At the wheel, someone looks up at a posted video camera trained on the road.\",As he,gold,turns his head to stare at it.,skids to ride pass.,slides to a stop.,\"gets out, looking back.\",0\n17750,lsmdc3036_IN_TIME-15600,16117,Someone takes someone's gloved hand and they run off down the basin. It,Someone takes someone's gloved hand and they run off down the basin.,It,gold,stops and hits one of the chairs to the side holding the bride.,ties a strand of thread up to her thigh.,'s surrounded by bare drovers as someone arrives.,backs up quickly and lurches to a halt.,3\n17751,lsmdc3036_IN_TIME-15600,16142,\"The broker transfers the time to him, then yanks his hand back. Someone\",\"The broker transfers the time to him, then yanks his hand back.\",Someone,gold,\"moves his back to the house, mystified.\",clamps a hand over someone's mouth.,\"pours him a drink, then gives the levitates a shake.\",pulls the shower cap out desperately as he walks down the street to the garage.,1\n17752,lsmdc3036_IN_TIME-15600,16128,Someone averts her tearful gaze. She,Someone averts her tearful gaze.,She,gold,\"withdraws into the apartment, shutting the doors.\",puts the cellphone back in her purse.,\"nods, then slaps the table.\",breaks off a grin.,0\n17753,lsmdc3036_IN_TIME-15600,16170,Someone looks at someone's clock which counts down from seven seconds. He,Someone looks at someone's clock which counts down from seven seconds.,He,gold,\"turns toward someone, who walks towards someone.\",doctors appear on the phone and watch.,shifts his troubled gaze and taps a large supporting staircase.,gently twists her arm until his hand is on top.,3\n17754,lsmdc3036_IN_TIME-15600,16141,Someone sticks his hand through the gate. The broker,Someone sticks his hand through the gate.,The broker,gold,\"transfers the time to him, then yanks his hand back.\",fires a circle and intercepts another outside.,look at the sword.,manages to step at it.,0\n17755,lsmdc3036_IN_TIME-15600,16104,\"She pulls up her long glove. At the wheel, someone\",She pulls up her long glove.,\"At the wheel, someone\",gold,takes the bike wheel and slips inside.,sees the fbi officers to the hangar.,looks up at a posted video camera trained on the road.,takes out her cellphone.,2\n17756,lsmdc3036_IN_TIME-15600,16120,\"His body clock indicates a transfer of time into his body and he leaves the car. Someone, someone, and their blond colleague\",His body clock indicates a transfer of time into his body and he leaves the car.,\"Someone, someone, and their blond colleague\",gold,surround the mangled roadster.,eat in a table next.,\"smile at the reflection, now slightly shakes in his uncertain eyes.\",find on the porch by the roadside.,0\n17757,lsmdc3036_IN_TIME-15600,16165,She gazes up at him. Someone,She gazes up at him.,Someone,gold,looks over and watches her in the mirror.,looks at the new york skyline.,sits on the couch and faces her.,looks a little startled and waits for his answer.,2\n17758,lsmdc3036_IN_TIME-15600,16109,A young thug checks her. Someone,A young thug checks her.,Someone,gold,pushes past his men and grabs someone's arm.,blinks in amazement and then gets up.,runs up as someone plows into the limo.,bumps someone's hand.,0\n17759,lsmdc3036_IN_TIME-15600,16153,Someone climbs in after him. He,Someone climbs in after him.,He,gold,crosses the room and someone kicks his legs.,skates up the alley towards the second floor.,swings down from the carriage and makes a run towards someone toward the center of the storm.,turns on a light over a sink and runs water over his bloody knuckles.,3\n17760,lsmdc3036_IN_TIME-15600,16144,They pass a Weis Time Lenders. He,They pass a Weis Time Lenders.,He,gold,unbuckles his seat belt and folds all of his arms for straightening.,guides her to a bank of pay phones and picks up a receiver.,passes in his driveway as he drives past l - o - stopping.,\"drops his hands, lets it spring up as he sits.\",1\n17761,lsmdc3036_IN_TIME-15600,16169,They clasp each other's wrists. Someone,They clasp each other's wrists.,Someone,gold,\"studies him and someone wraps a hand on her forearm, then moves downwards.\",gently kisses the boy's foot tenderly.,wears a proud stare.,looks at someone's clock which counts down from seven seconds.,3\n17762,lsmdc3036_IN_TIME-15600,16126,The inner door opens and someone's wife stares out. She vacantly,The inner door opens and someone's wife stares out.,She vacantly,gold,shifts her weight then bows her head.,opens the screen door.,holds a leafless saw up through a window before it crashes down.,heads toward the well - toting bus driver.,1\n17763,lsmdc3036_IN_TIME-15600,16133,\"Brushing her hair back, he finds a sizable diamond stud on her earlobe. He\",\"Brushing her hair back, he finds a sizable diamond stud on her earlobe.\",He,gold,grabs her hand and leads her down the steps.,pats it on his shoulder and then takes off.,taps his crotch on the belt and tweaks her ankle.,eyes down to the clock chatting by his childhood hobbits.,0\n17764,lsmdc3036_IN_TIME-15600,16167,\"As he rolls up his sleeve, someone puts her drink on the floor. She\",\"As he rolls up his sleeve, someone puts her drink on the floor.\",She,gold,places her hand on the arm of the chair.,\"lays on the desk, moving toward someone.\",\"stares after her, as she came into the room.\",\"gives him an uneasy look, then extends her arm.\",3\n17765,lsmdc3036_IN_TIME-15600,16161,He turns from the window. Someone,He turns from the window.,Someone,gold,drops her gaze to her outfit.,\"comes back, past the old storefront with the art within.\",puts the phone in her jacket.,puts his cigarette on the side of the river.,0\n17766,lsmdc3036_IN_TIME-15600,16151,\"Someone follows someone up a fire escape to a balcony. Opening a window, he\",Someone follows someone up a fire escape to a balcony.,\"Opening a window, he\",gold,\"sees a policeman sitting on the front door of the boat, trying to break through the crowd crowd.\",sees an enormous splash to the floor and a wall of floating.,finds another someone sized webs hovering on the floor in front of him.,climbs into the building where he lived with his mother.,3\n17767,lsmdc3036_IN_TIME-15600,16127,She vacantly opens the screen door. Someone,She vacantly opens the screen door.,Someone,gold,pretends to catch her surprise.,sees someone sitting back table speaking.,throws a gun in someone's direction and shows the wooden shelves.,averts her tearful gaze.,3\n17768,lsmdc3036_IN_TIME-15600,16113,\"Beside her, someone sits up clutching his head painfully. He\",\"Beside her, someone sits up clutching his head painfully.\",He,gold,faces his companion and gently turns her face with his hand.,massages someone's nose with hers.,stands and presses his tail to his brow.,\"hands him a high five, and runs to the bridge.\",0\n17769,lsmdc3036_IN_TIME-15600,16146,\"Taking it, someone casually leans against someone's desk. Someone\",\"Taking it, someone casually leans against someone's desk.\",Someone,gold,looks to the departing floor.,puts the office chair half - closed.,gazes at a building's neon sign which reads mission out of time.,switches off her lamp wristwatch.,2\n17770,anetv_IeqBzYDyHGQ,18690,The video begins with shots of people cheering as well as several shots of players standing on a sand pit. The crowd,The video begins with shots of people cheering as well as several shots of players standing on a sand pit.,The crowd,gold,\"cheers and the track celebrates, and they pass as behind the pucks.\",is seen doing the wave and continues to cheer as the camera shows various clips of a soccer match going on.,cheers up and cheers as well as several people running around the field and falling off.,claps and ends with the kids getting up and moving their strings around.,1\n17771,anetv_5JVHUcOW0GE,4546,He puts the sandwich into a plastic bag. He,He puts the sandwich into a plastic bag.,He,gold,dumps the paste onto the bread.,picks up a package of soda and pours it onto a bread paper.,puts the sandwich into a plastic tupperware box.,takes the paper and spits it out.,2\n17772,anetv_5JVHUcOW0GE,14799,He speaks to the camera while showing a sandwich he is making. He,He speaks to the camera while showing a sandwich he is making.,He,gold,puts the sandwich in a bag and finally into a container and walks out.,picks up the bottle and empties it into a plastic container.,is shown showing how to make the cake bow and show how to pan a raft.,takes the patterned nuts off of a bowl and cuts it in strips.,0\n17773,anetv_5JVHUcOW0GE,4545,A man is standing in a kitchen making a sandwich. He,A man is standing in a kitchen making a sandwich.,He,gold,shows how he washes his dish in the sink.,is holding a piece of bacon and tin meat on it.,puts the sandwich into a plastic bag.,is with his hands covered in ice cream.,2\n17774,anetv_5JVHUcOW0GE,4547,He puts the sandwich into a plastic Tupperware box. He,He puts the sandwich into a plastic Tupperware box.,He,gold,puts cheese on his knees and tosses it to the stove.,picks up the food and walks out a door.,starts to wipe a splinter of the palm from his hand.,unwraps it and the two continues.,1\n17775,anetv_5JVHUcOW0GE,14798,A man is seen standing behind a counter with two slices of bread. He,A man is seen standing behind a counter with two slices of bread.,He,gold,cuts some vegetables and cuts out small pieces of paper.,puts the cat on the counter and spins it on.,puts cheese on top of the top of salt and stirs it.,speaks to the camera while showing a sandwich he is making.,3\n17776,anetv_kPbae85fofk,3698,People including security guards are standing behind a fence in a mall. We,People including security guards are standing behind a fence in a mall.,We,gold,suddenly immediately close up driving someone.,also riders getting a cut and security parody ranks in the building.,see a young man in a fancy jacket talk and throw darts across the room.,fill the walls of central night.,2\n17777,anetv_kPbae85fofk,3699,We see a young man in a fancy jacket talk and throw darts across the room. The man,We see a young man in a fancy jacket talk and throw darts across the room.,The man,gold,is then shown again being interviewed about the accident.,returns with the stands next to two other basketball players.,stops throwing and ducks down for a moment then continues to throw.,speaks to a camera near the hand.,2\n17778,lsmdc0003_CASABLANCA-46692,17106,\"There are Europeans in their dinner jackets, their women beautifully begowned and bejeweled. Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels,\",\"There are Europeans in their dinner jackets, their women beautifully begowned and bejeweled.\",\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels,\",gold,playing and singing while accompanied by a small orchestra.,resting a hand on his shoulder and loosens his tie with his fingers.,hands in the council.,peers at all the photos.,0\n17779,lsmdc0003_CASABLANCA-46692,17108,At another table a very well - dressed woman talks to a moor. She,At another table a very well - dressed woman talks to a moor.,She,gold,lies on the ground.,has a bracelet on her wrist.,holds up a digital card as she struggles with the crowded class.,turns up the contest.,1\n17780,lsmdc0003_CASABLANCA-46692,17111,\"He walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard. Someone opens the door and someone\",\"He walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard.\",Someone opens the door and someone,gold,glares at the typewriter doors.,opens her eyes as she makes a note across the marble floor outside the apartment.,goes into the gambling room.,points off the building.,2\n17781,lsmdc0003_CASABLANCA-46692,17110,\"Someone, the waiter, is a fat, jovial German refugee with spectacles. He\",\"Someone, the waiter, is a fat, jovial German refugee with spectacles.\",He,gold,\"walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard.\",cuts a chair from the stained - glass entrance window.,has a toned copy of an elderly pas - up article graphic.,is in a dusty room and parked in the middle of a square.,0\n17782,lsmdc0003_CASABLANCA-46692,17112,Someone opens the door and someone goes into the gambling room. Their,Someone opens the door and someone goes into the gambling room.,Their,gold,\"runs into the principal's office, his hands on them.\",shake the shoulders of the customer to the customers.,crosses a long plastic bag on a desk and carefully removes his reading glasses.,is much activity at the various tables.,3\n17783,lsmdc0003_CASABLANCA-46692,17104,The neon sign above the door is brightly lit. Customers,The neon sign above the door is brightly lit.,Customers,gold,hurry down the steps and run at the back of a church.,have a white briefcase and a door.,arrive and go in through the front door.,are mounted on a base of the fence post buildings.,2\n17784,lsmdc0003_CASABLANCA-46692,17105,Again we isolate on the neon sign. We,Again we isolate on the neon sign.,We,gold,see the screen of the car police machine.,follow a group of customers inside.,can not make any signal missing to her voice.,man and the soldier walk to the door of the house.,1\n17785,lsmdc0003_CASABLANCA-46692,17113,Their is much activity at the various tables. They,Their is much activity at the various tables.,They,gold,glance at another table.,stop for a split and walk into the lounge.,has french hair ties.,do a cool tricks by pushing it on the block out after draining the cup and screaming there is a person waching them both.,0\n17786,lsmdc0003_CASABLANCA-46692,17107,\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels, playing and singing while accompanied by a small orchestra. Two men\",\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels, playing and singing while accompanied by a small orchestra.\",Two men,gold,\"shuffle hard out on a stage, their overalls ready to play.\",sit at a table.,play instruments in the central sink.,toting identification appear from the drones which stop him approach several tables and file before.,1\n17787,lsmdc0003_CASABLANCA-46692,17109,She has a bracelet on her wrist. He,She has a bracelet on her wrist.,He,gold,flips her over with a pair of tin provocatively.,leaves the door and rises excitedly as she enters the upstairs room.,puts it to her eye and holds it to his own hand.,stops abruptly as two german officers walk by.,3\n17788,anetv_R586XlFT7Go,2168,A woman is seen speaking to the camera and leads into a woman running and interviewing other runners. She interviews two twins while running and the news,A woman is seen speaking to the camera and leads into a woman running and interviewing other runners.,She interviews two twins while running and the news,gold,casters are seen speaking in stage with their arms followed around her over the side.,speaks together showing the camera.,holds more objects and tips.,shows off other runners in the area.,3\n17789,lsmdc3064_SPARKLE_2012-4175,2900,\"Now on the dark stage, someone lets a wrap with a voluminous high collar, drop to her feet. The trio\",\"Now on the dark stage, someone lets a wrap with a voluminous high collar, drop to her feet.\",The trio,gold,\"moves forward, provocatively swaying their hips with each snap.\",slide over each other and replays.,follow her into a dark hall.,pass the principal to someone.,0\n17790,lsmdc3064_SPARKLE_2012-4175,2899,\"As someone leans down, someone's mouth hangs open and her brow furrows. The compact's mirror\",\"As someone leans down, someone's mouth hangs open and her brow furrows.\",The compact's mirror,gold,reflects sister bruised eye.,shows a loaded piercing.,transforms into a second man's eyes.,shows the same man before her.,0\n17791,anetv_bXJMw4gLmGM,17785,A man is talking inside a shop. He,A man is talking inside a shop.,He,gold,\"shows off an iron, then uses it to melt a piece of plastic.\",is spraying a car with a hose.,\"is put three bottles in the ready, and drink a liquor drink.\",is talking and inside that.,0\n17792,anetv_bXJMw4gLmGM,17786,\"He shows off an iron, then uses it to melt a piece of plastic. The man irons then\",\"He shows off an iron, then uses it to melt a piece of plastic.\",The man irons then,gold,uses it's hand to melt the wax on an ironing board for long seconds.,brushes a long piece of metal.,uses tools to flip the board all around while doing tai grind and and backward maneuvers.,picks up iron self and dabs the cloth on some clothes.,1\n17793,anetv_2lUqeOw61QY,5612,Another male then begins shuffling and playing defense as the kids practice their layups. They,Another male then begins shuffling and playing defense as the kids practice their layups.,They,gold,continue hit the ball back and fourth as the ball hits the boys.,continue running down the scoreboard and patting each other on the guiding teens.,stand with their arms cut down to talk to the camera.,stay in their two lines and starts making passes to one another to make a goal.,3\n17794,anetv_2lUqeOw61QY,1290,People are playing basketball on a court. They,People are playing basketball on a court.,They,gold,are engaged in a game of volleyball on the ice.,throw the balls at the goal.,see a person making a small ball and shot into a pit.,shoot the balls into the net.,3\n17795,anetv_2lUqeOw61QY,1291,They shoot the balls into the net. A man in a white shirt,They shoot the balls into the net.,A man in a white shirt,gold,is thrown outside with a wooden swing.,keeps showing the ball.,is standing up behind them.,is standing on the court watching.,3\n17796,anetv_2lUqeOw61QY,5611,An elderly man is standing in a basketball gym watching a young team of athletes practice. Another male then,An elderly man is standing in a basketball gym watching a young team of athletes practice.,Another male then,gold,draws buttons motorbikes on a red mat that includes playing a wrestler who is wearing smaller sumo.,bowls the ball and throws it to the ground.,holds colorful ropes and put them in his stands.,begins shuffling and playing defense as the kids practice their layups.,3\n17797,lsmdc0011_Gandhi-52261,6864,The sergeant is on the low sloping roof of the station. The captain,The sergeant is on the low sloping roof of the station.,The captain,gold,moves alongside of the track - and table.,is worried to behind him.,takes down from the secretary's desk.,turns briskly to two of his detail.,3\n17798,lsmdc0011_Gandhi-52261,6863,\"From its distant glow we can see that people line the platform of the small station, waiting, but we can not tell how thick the crowd may be. The sergeant\",\"From its distant glow we can see that people line the platform of the small station, waiting, but we can not tell how thick the crowd may be.\",The sergeant,gold,studies the converted man's hand.,climbs a support directly into the air.,has up and falls.,is on the low sloping roof of the station.,3\n17799,lsmdc0011_Gandhi-52261,6865,The captain turns briskly to two of his detail. The whole of the obscurely lit platform,The captain turns briskly to two of his detail.,The whole of the obscurely lit platform,gold,is covered thick with waiting crowds.,stands outside shipping the finished nibbling intervene.,is full of isengard buildings.,shows a mechanical tabletop was poufy inside.,0\n17800,lsmdc0011_Gandhi-52261,6859,\"He looks at someone nervously for a moment, then puts the food to his mouth like a man who is starving, and trying desperately not to show it. The solemn intensity of her gaze\",\"He looks at someone nervously for a moment, then puts the food to his mouth like a man who is starving, and trying desperately not to show it.\",The solemn intensity of her gaze,gold,glisten across closed mouth and down his pale face.,\"growing up through the spoken respectful, blue waters.\",reflects her identification with the man's agony.,is strange and delicate.,2\n17801,lsmdc0011_Gandhi-52261,6857,\"The fingers are thin, half - starved, like the man himself. He\",\"The fingers are thin, half - starved, like the man himself.\",He,gold,pauses and quickly snatches the horn.,looks up at someone almost sheepishly.,takes in the new v position.,\"flips, gawking, is interrupted by the holster or gun window.\",1\n17802,lsmdc0011_Gandhi-52261,6860,The solemn intensity of her gaze reflects her identification with the man's agony. She,The solemn intensity of her gaze reflects her identification with the man's agony.,She,gold,slaps it open of the other from the mouth with someone's thumbs.,slides the phone down and looks inside.,glances up at someone.,smiles and turns back to the firing alien.,2\n17803,lsmdc0011_Gandhi-52261,6862,\"The camera is low, shooting along the track toward the light of an approaching train. From its distant glow we can see that people line the platform of the small station, waiting, but we\",\"The camera is low, shooting along the track toward the light of an approaching train.\",\"From its distant glow we can see that people line the platform of the small station, waiting, but we\",gold,can completely see where the sphere is.,can't see people.,can not tell how thick the crowd may be.,go down the last day to see.,2\n17804,lsmdc0011_Gandhi-52261,6861,She glances up at someone. The camera,She glances up at someone.,The camera,gold,\"is low, shooting along the track toward the light of an approaching train.\",broken glass of the museum shows someone at the kitchen time due to someone.,\"moves across the screen toward someone, a sinister sigh blaring through the light.\",\"view over his shoulder, reacting.\",0\n17805,lsmdc0011_Gandhi-52261,6858,He looks up at someone almost sheepishly. Someone,He looks up at someone almost sheepishly.,Someone,gold,puts his hand against her hair.,reaches in and pulls a gun from someone's shoulders.,sits at one side in the shadows watching him as intently as someone.,pulls a paper addressed to him.,2\n17806,anetv_-DphPPTybSY,14213,The man makes his fourth shot. The man,The man makes his fourth shot.,The man,gold,makes his final shot.,raises the cigarette again.,stops him off and gives it a merry shrug.,goes behind several wire and throws his water back.,0\n17807,anetv_-DphPPTybSY,14212,The man takes his third shot. The man,The man takes his third shot.,The man,gold,puts on his helmet.,stops on the floor and gives smoke rings.,lowers the handle and then walks away.,makes his fourth shot.,3\n17808,anetv_-DphPPTybSY,14210,The man in the blue shirt approaches to shoot. The man,The man in the blue shirt approaches to shoot.,The man,gold,walks away to exchange his pool stick.,reaches the box and stretches it out to protect himself.,lands from hit off the top and onto the field.,backs up and leans around the urn.,0\n17809,anetv_-DphPPTybSY,14211,The man then takes another shot. The man,The man then takes another shot.,The man,gold,points and shoots the arrow and finishes by shooting.,takes his third shot.,hits the ball again and landed in slow motion.,then hits balls and ends by hitting one another.,1\n17810,anetv_I637SOXSbHY,16355,A man bends down and picks up two kettle bells. He,A man bends down and picks up two kettle bells.,He,gold,raises and lowers the kettle bells.,shoots onto the chain on the floor.,begins cutting the cake around normal.,is instructions on how to assemble the car burn.,0\n17811,anetv_I637SOXSbHY,16356,He raises and lowers the kettle bells. He,He raises and lowers the kettle bells.,He,gold,removes his spectacles and starts polishing.,perches on the floor in front of a grand building fanning it.,delightedly is running back to the tree.,puts them down on the grass in front of him.,3\n17812,anetv_92fD8Cy2zL0,15002,A cartoon of a stand up comic is shown and she is telling jokes. It cuts to her speaking to someone wearing a surgical mask in a room and it,A cartoon of a stand up comic is shown and she is telling jokes.,It cuts to her speaking to someone wearing a surgical mask in a room and it,gold,onto a motionless other hand.,works with a apple.,looks like she is getting her nails done.,has a little pointed pink with a covered brush.,2\n17813,anetv_92fD8Cy2zL0,15575,There is an intro with a woman's name. Then we,There is an intro with a woman's name.,Then we,gold,see her clipping on a white cloth cloth.,see an animated woman wearing a blue shirt and hoop earrings on stage with a microphone.,see two different athletes playing a bow together on the expanse while the sumo are shooting with arrows.,see the clip of the lady soaping her finished hands and put her nails in one and leash where it was brushes.,1\n17814,anetv_92fD8Cy2zL0,15003,It cuts to her speaking to someone wearing a surgical mask in a room and it looks like she is getting her nails done. They both,It cuts to her speaking to someone wearing a surgical mask in a room and it looks like she is getting her nails done.,They both,gold,do a calming choreography in the middle of the narrow ground.,bristle and pull the rear door and lip brush to create an pattern using cylinders.,talk back and forth for a bit about something.,try to do a maintenance unit with elongated handles while speaking to the camera.,2\n17815,anetv_92fD8Cy2zL0,15005,The video cuts to her sitting and getting her nails done from another woman wearing a surgical mask. They go back and forth for a bit and she,The video cuts to her sitting and getting her nails done from another woman wearing a surgical mask.,They go back and forth for a bit and she,gold,poses to the camera while singing.,talks about the victory.,begins with a method of using the left frame not to be secure.,has a very annoyed look on her face.,3\n17816,anetv_92fD8Cy2zL0,15004,They both talk back and forth for a bit about something. The video,They both talk back and forth for a bit about something.,The video,gold,ends with the person kids posing for the camera.,ends with people working in with a man.,cuts to her sitting and getting her nails done from another woman wearing a surgical mask.,shows several shots of some of the men talking as well as shoot their arrows.,2\n17817,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8419,\"His cocky smirk gone, someone stares fearfully through glistening bloodshot eyes. The rider's flames\",\"His cocky smirk gone, someone stares fearfully through glistening bloodshot eyes.\",The rider's flames,gold,catch on his long stringy hair.,shrewdly winding harshly at someone's wife.,make up as sunlight shines down the face.,flit from his companion's sad eyes as someone tries a vain to escape the power drill.,0\n17818,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8399,\"She weaves around it without breaking speed. From below, someone\",She weaves around it without breaking speed.,\"From below, someone\",gold,manages some clear midair.,climbs up on her hood.,tugs her arm back but someone too manages to remove the weapon from someone's rod belt.,drags someone across the front yard and shoots a garbage zombie.,1\n17819,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8338,Now a half moon shines in the night sky. Someone's black robed acolytes,Now a half moon shines in the night sky.,Someone's black robed acolytes,gold,stays close to one side.,opens the petticoat attached.,lifts from the water ground as he gently strokes his upturned hand.,sway as they chant.,3\n17820,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8383,\"Falling back, someone lies motionless on the gravel. The surrounding acolytes\",\"Falling back, someone lies motionless on the gravel.\",The surrounding acolytes,gold,float along the edge of the treetops.,\"recoil as he draws near, his face a swirl of flames.\",arrives beside the gran torino.,find their brooms in front of each other.,1\n17821,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8415,The demon rolls over on top of him but the angel throws him into the air. Someone,The demon rolls over on top of him but the angel throws him into the air.,Someone,gold,\"grabs the ball, which falls from the ceiling.\",looks up and shakes his hand.,\"rides along another tractor, looking back to the tractor.\",climbs up the suvs rear and over the roof.,3\n17822,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8401,\"Crouching playfully, he touches a fingertip to her windshield. A web - like network of cracks\",\"Crouching playfully, he touches a fingertip to her windshield.\",A web - like network of cracks,gold,appear on the other side rim.,flies across the journey.,come into the sky.,spreads across the glass.,3\n17823,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8347,He grabs his bag and leaves. Someone,He grabs his bag and leaves.,Someone,gold,heads off as well.,smashes into another cop.,wakes up and walks up to someone.,returns to someone's car and gets into the next container on his bed.,0\n17824,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8356,\"Gazing down on the stage, we find a shadow extending from someone's body as if reaching for someone. Someone\",\"Gazing down on the stage, we find a shadow extending from someone's body as if reaching for someone.\",Someone,gold,\"comes out, toting a stick on carpet.\",ignites a candle and headbutts her.,runs out in the stands.,flies towards someone and grips himself behind the bar.,2\n17825,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8389,\"It skids to a half before and he climbs on. The rider speeds off, his chopper\",It skids to a half before and he climbs on.,\"The rider speeds off, his chopper\",gold,seethes as it levitates on air.,uncovered strained in the light site.,trailing thick plumes of black smoke.,tilted as someone swerves to the passenger side.,2\n17826,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8414,Someone head butts the rider who punches him. The demon rolls over on top of him but the angel,Someone head butts the rider who punches him.,The demon rolls over on top of him but the angel,gold,\"looks at the top of the beast, which drains the flame which he extinguishes until he is broken.\",throws him into the air.,runs out through the hole after.,drags him back to the tide.,1\n17827,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8349,Two guards trade a look. He,Two guards trade a look.,He,gold,turns to the bedroom bureau.,takes his own wand and gazes away.,tosses the bottle and shoots them both down.,\"stares thoughtfully at the floor, then lifts the stairway off.\",2\n17828,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8343,She glances up once more then recognizes someone and someone as they leave their fallen enemies behind. Now someone,She glances up once more then recognizes someone and someone as they leave their fallen enemies behind.,Now someone,gold,joins someone in the convertible car.,clutches her hospital stage and presses her knuckles against the door.,leads someone past a wall.,turns on a five sofa with a picnic against one side.,2\n17829,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8441,\"The creature's skull turns toward the wreckage. As someone watches, someone\",The creature's skull turns toward the wreckage.,\"As someone watches, someone\",gold,swings his head to turn away.,\"circles the vehicle, looking down.\",stares forward through his window.,studies the map across the bar.,1\n17830,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8387,\"In the gravel pit, someone jerks his head side to side. He\",\"In the gravel pit, someone jerks his head side to side.\",He,gold,mounts someone back up and faces the bird.,stares at his own gloved hands.,rides off into the glade.,waves the gun out of his mouth and ripples down the water.,1\n17831,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8339,\"Someone's black robed acolytes sway as they chant. On stage, someone\",Someone's black robed acolytes sway as they chant.,\"On stage, someone\",gold,sits on his lap and stares down at the ground.,gets involved in a jousting race.,talks in an interrogation room.,kneels a few feet away from someone.,3\n17832,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8337,She glances down then heads off and he turns to watch her go. Now a half moon,She glances down then heads off and he turns to watch her go.,Now a half moon,gold,rises through the night sky.,\"shines in a green sky illuminated with trees, birds, green, bright lights.\",shines in the night sky.,shows thick piles scattered in the air.,2\n17833,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8395,Someone leaps onto the driver's seat and takes the wheel. Flames,Someone leaps onto the driver's seat and takes the wheel.,Flames,gold,\"in back on him, someone helps him pull it off upstairs into the chestnut room.\",\"kicks, pressing her fists against the door.\",sit with them when someone comes back.,erupt throughout the engine and blaze around the tires.,3\n17834,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8430,\"He finds someone crawling laboriously from the wreck. His aging wounded vessel limp from the chest down, the devil\",He finds someone crawling laboriously from the wreck.,\"His aging wounded vessel limp from the chest down, the devil\",gold,backs away from his brothers.,digs into someone's supply vest pocket.,drags himself across the sand.,'s mission nears a village of white pillars.,2\n17835,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8427,The suv swerves off the road then flips end over end. It,The suv swerves off the road then flips end over end.,It,gold,lands on its roof in a flaming wreck.,swoops close as someone rocks to face her.,jumps over a diving stick and soars to the edge of the pool block.,\"falls, which lands raining heavily.\",0\n17836,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8403,\"He drives his fist through the cracks, shattering the windshield. Someone\",\"He drives his fist through the cracks, shattering the windshield.\",Someone,gold,flips through the bottle.,gets to his feet and presses his brow at her.,locks him into a park amid burning destroying on the far side of the street.,shields her face from the flying glass shards.,3\n17837,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8435,\"Following the chain, we find someone plunging into a sea of fire. His limbs flailing, he\",\"Following the chain, we find someone plunging into a sea of fire.\",\"His limbs flailing, he\",gold,steers helplessly as the flames eat away at his flesh.,\"attaches his arms over his back, speeds up with the can being locked on the shelf above them.\",sucks his balloon moped toward the gigantic aircraft which crashes through.,idly holds his taut stand motionless.,0\n17838,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8445,\"She steps forward as someone stands, cradling someone's limp form in his arms. Someone\",\"She steps forward as someone stands, cradling someone's limp form in his arms.\",Someone,gold,rests his head on his knees.,pulls down his pants.,carries the boy to his mother.,\"sits in his chair, the shirt in a scarf.\",2\n17839,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8436,\"His limbs flailing, he steers helplessly as the flames eat away at his flesh. The hell fires\",\"His limbs flailing, he steers helplessly as the flames eat away at his flesh.\",The hell fires,gold,\"strikes someone in the glass of fire, sending sparks flying from his grasp.\",causing people to go heavily.,\"flare, their light overwhelming our view.\",\"shoot, coming his way through his jacket's patch.\",2\n17840,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8385,\"Someone rises, taking out the acolytes with a circular sweep of his red hot chain. Outside, someone\",\"Someone rises, taking out the acolytes with a circular sweep of his red hot chain.\",\"Outside, someone\",gold,loads a limp someone into an suv.,\"slides with a mortar - shaped tips, as his head is pressed back against.\",draws in the sunlight and hides a weapon inside.,hangs high above only mattress.,0\n17841,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8358,He shoots down a guard. Someone,He shoots down a guard.,Someone,gold,draws the sword closer to someone.,\"runs out, his arms outstretched, as someone grips the tire from the left seat.\",grabs someone by the leg and hides behind the escape from his seat.,\"turns and looks up, his eyes returning to normal.\",3\n17842,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8364,\"With a swipe of his hand, he sends someone flying off the stage. He\",\"With a swipe of his hand, he sends someone flying off the stage.\",He,gold,lands hard in a gravel pit below.,\"takes off his sock, startling the dancers.\",lands back and staggers again toward the far side of the clearing.,tosses himself onto a wall in front of him.,0\n17843,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8388,\"In someone's suv, someone's head slumps forward. His father\",\"In someone's suv, someone's head slumps forward.\",His father,gold,regards him with a bitter scowl as he leads the convoy at high speed away from ruins.,pulls himself up on his elbows.,slams his suv to the brakes as the tired farm boy jogs down the front steps.,sits by a dilapidated tree with a branch sticking out in front of him.,0\n17844,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8426,Someone lurches and the auto part flies past the rider. The suv,Someone lurches and the auto part flies past the rider.,The suv,gold,steers the hazy bus away from him.,swerves off the road then flips end over end.,knocks the taxis runner down into several pavement.,\"roars past them, gaining on us, some staggering, and rising.\",1\n17845,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8396,\"Flames erupt throughout the engine and blaze around the tires. Meanwhile, someone drives after the convoy in a dusty suv, her chin\",Flames erupt throughout the engine and blaze around the tires.,\"Meanwhile, someone drives after the convoy in a dusty suv, her chin\",gold,studded in a scrapyard.,lowered in a determined stare.,resting on a large handgun.,resting on an empty bench.,1\n17846,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8397,Someone rear ends it and it explodes. The suv ahead of it,Someone rear ends it and it explodes.,The suv ahead of it,gold,\"looks ahead, its pursuer swishing through the water.\",\"crashes into the cops, twisting its body out loud.\",\"spins out of control, threatening to cut off someone.\",swivels into the mall.,2\n17847,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8371,The devil turns and his minion looks up. The demon,The devil turns and his minion looks up.,The demon,gold,wrenches his victim's head to face the boy then grins at someone.,cuts the hilt of a older boot with a knife plank.,tosses the mug snapshot then hands it to the lady.,glances as she watches in the finishing hall.,0\n17848,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8367,\"His face a mess of rotten flesh, someone smashes his head against someone's. Someone\",\"His face a mess of rotten flesh, someone smashes his head against someone's.\",Someone,gold,flings him to the tabletop and lands on the bed next to someone.,intercepts him and kneels in front of him.,looks on as someone shakes the rot off his face and out of his hair and mouth.,\"plays dismissively and wand, gripping the ax handle with his right hand.\",2\n17849,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8433,Someone's twisted features scowl bitterly as the rider shrieks in his face. Someone,Someone's twisted features scowl bitterly as the rider shrieks in his face.,Someone,gold,\"has been thrown past his mustached brother, but the man spots fire in the darkness.\",throws him down then slings him skyward with a chain around his chest.,and someone make their way down the hall to the ruins.,\"runs along the track towards an distant pursuer, which is still on her head.\",1\n17850,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8412,Twin lights flare below them. They,Twin lights flare below them.,They,gold,'re someone's headlights.,warily shoot a hole at the top of the door.,emerge from the scattering humans.,fling another single cigarette.,0\n17851,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8424,It lashes around the undercarriage's central rod. Someone,It lashes around the undercarriage's central rod.,Someone,gold,shifts his pained woeful eyes.,gives his chain a tug.,\"concentrates, baring its fangs.\",lands in the lift at high speed.,1\n17852,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8361,\"He pauses, spreading his arms exultantly. Someone\",\"He pauses, spreading his arms exultantly.\",Someone,gold,considers for a moment to beat looking up from his board.,\"looks down with more signs, and walks away and covers his head.\",sprawled on the right.,reaches a gloved hand out to someone.,3\n17853,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8342,She glances up from her green tinted night vision scope then spots four men in a brawl. She,She glances up from her green tinted night vision scope then spots four men in a brawl.,She,gold,back onto the road.,torched on jamming his boys.,glances up once more then recognizes someone and someone as they leave their fallen enemies behind.,gives the back to them.,2\n17854,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8365,The right side of someone's head decomposes as he swings his left fist at the demon. Someone,The right side of someone's head decomposes as he swings his left fist at the demon.,Someone,gold,\"hits the parallel bars and spins his body around legs, flipping him across his chest.\",catches it easily and forces it down.,leaps over him and strikes a pose.,gape at his morosely colleague.,1\n17855,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8431,\"His aging wounded vessel limp from the chest down, the devil drags himself across the sand. Someone's gloved hand\",\"His aging wounded vessel limp from the chest down, the devil drags himself across the sand.\",Someone's gloved hand,gold,\"reaches up to him, his pants loosely.\",\"reaches the mouth of the cockpit, revealing a spear in the torso.\",snatches him by the shoulder then hauls him to his feet.,lies beside them in the bright sun.,2\n17856,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8368,Someone looks on as someone shakes the rot off his face and out of his hair and mouth. Someone and someone,Someone looks on as someone shakes the rot off his face and out of his hair and mouth.,Someone and someone,gold,\"enter the chamber wearing a balding, yellow jacket.\",\"casually stand nearby at the far side of the room, holding signs.\",trot off the hall and into the living room from someone.,watch the acolytes surround someone who struggles to stand in the gravel pit.,3\n17857,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8344,Now someone leads someone past a wall. He,Now someone leads someone past a wall.,He,gold,stops reading and looks at the book.,hops over a column and comes over the massive metal doors.,peeks around a corner then crouches with his partner.,\"wakes, turns on an ipod, and marches down the corridors, keeping her body trained on the road.\",2\n17858,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8447,\"The rider bends down, laying someone in her arms. She\",\"The rider bends down, laying someone in her arms.\",She,gold,closes his teeth in fear.,\"faces for someone, who lies alone on a bench at the far edge of a pond in the sea.\",heave with her wrist.,tilts the boy's head back gently.,3\n17859,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8416,The foes reconverge in a wrestling grasp on the hood. Someone,The foes reconverge in a wrestling grasp on the hood.,Someone,gold,sees someone taking two bullets from a second carton.,sits stiffly in front of his father.,bends the rider over the side of the hood.,\"goes dead, the lawyer shaking his head.\",2\n17860,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8434,\"The rider snaps the chains, slinging the devil into the ground. Following the chain, we\",\"The rider snaps the chains, slinging the devil into the ground.\",\"Following the chain, we\",gold,can see the operator pushing him down.,find someone plunging into a sea of fire.,hear a lot of old voices through the distant.,see someone break a gate down.,1\n17861,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8407,Someone grabs the chains which start to rot in his grasp. The rider,Someone grabs the chains which start to rot in his grasp.,The rider,gold,\"tugs the chain, pulling him down and leaps over him.\",jumps off the ship and approaches the japanese security of people's white team on class.,picks up a weight then casts a drop to the chest.,drops to the crest.,0\n17862,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8423,\"As he draws closer, he slings his glowing chain forward. It\",\"As he draws closer, he slings his glowing chain forward.\",It,gold,strides bolts up the aisle and into the night tree of vito island.,lashes around the undercarriage's central rod.,lifts someone up and back down.,fall into the large domed floor.,1\n17863,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8359,\"Someone turns and looks up, his eyes returning to normal. As he watches someone shooting his guards and acolytes, someone\",\"Someone turns and looks up, his eyes returning to normal.\",\"As he watches someone shooting his guards and acolytes, someone\",gold,runs onto the stage and punches him out.,spots a silver pistol bales on the back of his head.,chops him again.,\"lies on casts above the roof, his face stoic and dazed, he speaks.\",0\n17864,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8421,His flaming motorcycle pulls up alongside someone's vehicle then creeps ahead. Someone,His flaming motorcycle pulls up alongside someone's vehicle then creeps ahead.,Someone,gold,\"leaps from her hood, landing on his motorcycle.\",slips along the others deck.,\"runs through the store, rubbing his heels and swearing.\",smiles at him on the wooden deck.,0\n17865,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8398,\"The suv ahead of it spins out of control, threatening to cut off someone. She\",\"The suv ahead of it spins out of control, threatening to cut off someone.\",She,gold,weaves around it without breaking speed.,turns apprehensively toward him and watches him pace sideways.,takes her hand and comes out of the house.,turns surrounded and engulfs him.,0\n17866,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8346,He takes a swig of 2000 year old wine. He,He takes a swig of 2000 year old wine.,He,gold,absently show a cave over the grill of someone's naked body.,\"pople some some paint good, bursting in the mirror, like a flaming brand.\",puts clothes tea and open the doors to his room.,hands the bottle to someone who takes a sip as well.,3\n17867,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8386,\"Outside, someone loads a limp someone into an suv. In the gravel pit, someone\",\"Outside, someone loads a limp someone into an suv.\",\"In the gravel pit, someone\",gold,throws another tire over the squad car's seat.,\"hurries after it, a pen, document seller, its raincoats, with lines of sepoys.\",\"runs across the deck, dodging panicking sailors as he flees.\",jerks his head side to side.,3\n17868,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8355,\"His acolytes tilt their heads back. Gazing down on the stage, we\",His acolytes tilt their heads back.,\"Gazing down on the stage, we\",gold,\"peer close as the manager directs his circle, cluttered toward someone.\",\"see the musician smoothing, then briefly pats someone's forehead.\",recognize the two screens which move towards someone.,find a shadow extending from someone's body as if reaching for someone.,3\n17869,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8362,Someone reaches a gloved hand out to someone. Someone,Someone reaches a gloved hand out to someone.,Someone,gold,stares coldly at someone through blackened eyes.,waves a handful of money from the valet.,takes a cake case from the pool and throws it at someone.,knocks over weight markers.,0\n17870,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8405,\"Ahead, an suv carrying gunmen pulls up beside someone's truck. The flaming vehicle\",\"Ahead, an suv carrying gunmen pulls up beside someone's truck.\",The flaming vehicle,gold,knocks it off the road.,blocks the view from side to side.,jumps out of the brilliant.,indicates a vast occupants of the farm house that lies outside.,0\n17871,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8348,Someone heads off as well. Now someone,Someone heads off as well.,Now someone,gold,ducks beneath a unbuttoned shirt with a big green towel covering him.,paces against a glass wall and eyes her.,stands on a traffic wire and looks a village.,reaches an entryway and chugs his wine.,3\n17872,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8350,He reloads then runs up a staircase. Now someone,He reloads then runs up a staircase.,Now someone,gold,finds an empty attache case.,darts furtively through a passage in the amphitheater.,trains himself across a single - riverbed desert bridge.,finds another cell in the surveillance room.,1\n17873,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8408,\"The rider tugs the chain, pulling him down and leaps over him. Recovering, someone\",\"The rider tugs the chain, pulling him down and leaps over him.\",\"Recovering, someone\",gold,pulls the puck toward the rim.,pulls his pants down and urges him up toward the stables.,grabs him from behind.,opens the gnn carriage as the flatbed truck drives into the main road.,2\n17874,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8444,\"Someone wavers on her feet, her breath coming in ragged gasps. She\",\"Someone wavers on her feet, her breath coming in ragged gasps.\",She,gold,\"sits on the ground, hand freed her hand.\",\"steps forward as someone stands, cradling someone's limp form in his arms.\",\"stares at her steadily, then faces the young boy.\",flutters a mechanical drill washer in.,1\n17875,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8354,Someone opens his black bloodshot eyes. Someone,Someone opens his black bloodshot eyes.,Someone,gold,takes a deep breath.,creeps closer and shakes his head wrathfully.,spots someone's popcorn.,stares down his anxiety.,1\n17876,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8417,His flames reignite in a wild blaze as he lifts his skull. He,His flames reignite in a wild blaze as he lifts his skull.,He,gold,helps someone out of his way and sits at the back of his corvette's bus travels.,\"stand in someone's backroom, which nearly hits him.\",\"seizes someone by the head and brings his face close, his jaw opening wide.\",parker handgun up the lantern.,2\n17877,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8380,\"Someone runs up to him, seizes him by the shoulders and spews a jet of fire at him. Someone\",\"Someone runs up to him, seizes him by the shoulders and spews a jet of fire at him.\",Someone,gold,holds his captive out of their side as he leaves.,\"releases his victim and staggers back, looking on.\",treads slowly toward him and kicks him through the shoulder.,looks at someone's determination as he acknowledges the duel.,1\n17878,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8438,\"He sways side to side, his fleshless mouth working in a growing roar. Someone\",\"He sways side to side, his fleshless mouth working in a growing roar.\",Someone,gold,'s face is coming down hers.,doubles over then arches back triumphantly.,\", the letters hurtle around him as he winds up with the final hook for the motorboat.\",edelweiss gradual strokes statuette away.,1\n17879,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8402,A web - like network of cracks spreads across the glass. He,A web - like network of cracks spreads across the glass.,He,gold,controls them and operates a steel cage.,shakes the hunter on the face.,\"drives his fist through the cracks, shattering the windshield.\",notices what all of the bulging sacks are wheeled away.,2\n17880,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8341,Someone reloads and takes aim at a third. She,Someone reloads and takes aim at a third.,She,gold,fires a building full of other items and the shooting.,glances up from her green tinted night vision scope then spots four men in a brawl.,proceeds to the surface and grimly drops them at the station.,\"quickly back into the shot, and startles him with a big smile.\",1\n17881,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8420,The rider's flames catch on his long stringy hair. His flaming motorcycle,The rider's flames catch on his long stringy hair.,His flaming motorcycle,gold,pulls up alongside someone's vehicle then creeps ahead.,sends the creatures flying like wings keeping feet apart.,sends the vault soaring as someone trips someone flying over the battlefield.,shows a new contraption on the bonnet.,0\n17882,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8360,\"As he watches someone shooting his guards and acolytes, someone runs onto the stage and punches him out. Someone\",\"As he watches someone shooting his guards and acolytes, someone runs onto the stage and punches him out.\",Someone,gold,runs through the stands shooting more acolytes.,flops down on the giant holding his father.,rests his hands behind someone's head and squints.,flies past a giant with a solid wand.,0\n17883,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8379,Someone bares his gritted teeth. Someone,Someone bares his gritted teeth.,Someone,gold,\"runs up to him, seizes him by the shoulders and spews a jet of fire at him.\",lulls from the tongue in someone's hands as if holding a chopped snake.,bursts into a powerful shake of his head.,rises to his feet and has a spider open under his eyes.,0\n17884,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8404,\"Someone shields her face from the flying glass shards. Ahead, an suv carrying gunmen\",Someone shields her face from the flying glass shards.,\"Ahead, an suv carrying gunmen\",gold,pulls up beside someone's truck.,leads a large party diner.,shuffle through a parking lot.,are at the bank's hilltop doors.,0\n17885,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8409,\"Recovering, someone grabs him from behind. The rider\",\"Recovering, someone grabs him from behind.\",The rider,gold,elbows him then knocks him back.,\"flies aside, then lifts off the falcon and his bike slides down into the darkness.\",'s takes him to the ground.,ticks up into the air.,0\n17886,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8446,Someone carries the boy to his mother. The rider,Someone carries the boy to his mother.,The rider,gold,\"rises to go below, his chest heaving.\",\"bends down, laying someone in her arms.\",\"runs down the stairs into the store, reaching past her arms and knees.\",\"backs away, pushing a lawn and hurtling backwards into the form surrounding the farm structures.\",1\n17887,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8382,\"The cursed man accepts the fire with a wide open mouth. Falling back, someone\",The cursed man accepts the fire with a wide open mouth.,\"Falling back, someone\",gold,grabs a taser from the shell.,lifts his brow and rises.,lies motionless on the gravel.,stares at the girl.,2\n17888,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8400,\"From below, someone climbs up on her hood. Crouching playfully, he\",\"From below, someone climbs up on her hood.\",\"Crouching playfully, he\",gold,scatters his fingers into her foam mouth.,peers his brow at a tiger.,touches a fingertip to her windshield.,wanders toward the city.,2\n17889,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8375,He looks back and forth between the boy and his evil father. He,He looks back and forth between the boy and his evil father.,He,gold,smacks its motorcycle against a pipe.,remember smashing the bottle with his fist and the contract pages flipping by themselves.,drifts across the field of the tugboat at a rapid attempt leading up from the slope.,\"smiles, then shakes his head as he sits on the sofa with his hands draped over his stomach.\",1\n17890,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8351,Now someone darts furtively through a passage in the amphitheater. He,Now someone darts furtively through a passage in the amphitheater.,He,gold,\"finds the six, one trying to cross the guards with someone, and pillar.\",clicks a rubix cube and prepares a new cube.,\"stop to pepper, rubbing protect shoes from behind and slamming against a corn one.\",hurdles the low edge of a stone window and peers around a column.,3\n17891,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8392,Someone pulls up beside a ruthless truck as its driver barks into a radio. He,Someone pulls up beside a ruthless truck as its driver barks into a radio.,He,gold,peeks outside the shoulder and security street.,leaps from his motorcycle onto to the driver's side of the cab and shrieks in his face.,climbs against the rim of the van as the deusenberg race up its rickety shore.,spots him and pulls his face close to hers.,1\n17892,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8432,Someone's gloved hand snatches him by the shoulder then hauls him to his feet. Someone's twisted features,Someone's gloved hand snatches him by the shoulder then hauls him to his feet.,Someone's twisted features,gold,are glowing in raven fang as light falls from someone's hmong eyes.,scowl bitterly as the rider shrieks in his face.,cast the light of lightning.,cast tight as he tries to suppress the means of someone's lackey.,1\n17893,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8391,\"They blast holes in the asphalt around the flaming motorcycle but fail to impede it. At the lead, someone\",They blast holes in the asphalt around the flaming motorcycle but fail to impede it.,\"At the lead, someone\",gold,watches helplessly as the movie continues through the city join the forcing ramps to new york.,spies the rider in his side mirror and snarls resentfully.,\"looks a cool style of an, besides a shop crammed barefoot from a watch screen.\",recoils as the flaming powerfully pelt someone with flaming oar.,1\n17894,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8425,Someone gives his chain a tug. Someone lurches and the auto part,Someone gives his chain a tug.,Someone lurches and the auto part,gold,begins to flood down the fire.,flies past the rider.,expand then forms by someone.,narrow to reappears in the puddle.,1\n17895,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8377,Someone gives a defeated nod as he recalls signing the contract with his blood. He,Someone gives a defeated nod as he recalls signing the contract with his blood.,He,gold,looks up at someone.,throws it down at someone.,slices a knife at someone 'cheek.,unbuttons someone's hands.,0\n17896,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8352,He hurdles the low edge of a stone window and peers around a column. He,He hurdles the low edge of a stone window and peers around a column.,He,gold,\"gallops through, counting - - looking up at the foliage.\",joins a wealthy man standing by a police station.,finds someone and someone swaying on their knees before the chanting acolytes.,\"stands still at his cabin, watches the game of tug just past the sky and cautiously across the courtyard.\",2\n17897,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8410,The rider elbows him then knocks him back. His chain,The rider elbows him then knocks him back.,His chain,gold,hangs open and a herd of the commentators starts to cross someone.,collapses over his parent's face.,\"rises by itself, winding around the demon.\",cuts free of his gun.,2\n17898,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8429,\"Someone pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait. He\",\"Someone pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait.\",He,gold,aims his pistol at the trunk's edge and leaps away.,blinks even more and hits the door stifling a smile.,finds someone crawling laboriously from the wreck.,jumps on his stomach.,2\n17899,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8381,\"Someone releases his victim and staggers back, looking on. The cursed man\",\"Someone releases his victim and staggers back, looking on.\",The cursed man,gold,moves stiffly out from the boy's frame.,\"now swings in front of someone, also easily dumps more blood.\",hangs upside down around his chair before holding a pen.,accepts the fire with a wide open mouth.,3\n17900,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8413,They're someone's headlights. Someone head,They're someone's headlights.,Someone head,gold,morris dance in a little way.,shoots someone with a smile.,to all a window and gets the cigarettes.,butts the rider who punches him.,3\n17901,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8336,He rests his hand on her shoulder. She glances down then heads off and he,He rests his hand on her shoulder.,She glances down then heads off and he,gold,looks down at her.,turns to watch her go.,continues walking toward the house as if pretending to sing.,gives her the address.,1\n17902,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8374,Someone returns his somber gaze to someone. He,Someone returns his somber gaze to someone.,He,gold,deposits their comrade - down wounded side the shoulder together.,\"move on, lush and red, and covered in stains.\",looks back and forth between the boy and his evil father.,flare shoots down the dark sky and tips up beside the covered sailboat.,2\n17903,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8353,\"The boy raises his head, his eyes bloodshot with black irises. Someone\",\"The boy raises his head, his eyes bloodshot with black irises.\",Someone,gold,opens his black bloodshot eyes.,spots a bloody object duct on the scar in his forehead.,eyes fill with tiny lids.,\"gazes off thoughtfully, then takes a deep breath, then steps out of the church.\",0\n17904,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8376,He remember smashing the bottle with his fist and the contract pages flipping by themselves. Someone,He remember smashing the bottle with his fist and the contract pages flipping by themselves.,Someone,gold,gives a defeated nod as he recalls signing the contract with his blood.,watches him get out of the car and runs off to stop the car as she gets on the car.,\", someone sits in her room, a coffee cup in her lap.\",puppies accost him as he rips up his oxygen mask.,0\n17905,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8428,It lands on its roof in a flaming wreck. Someone,It lands on its roof in a flaming wreck.,Someone,gold,releases a thin pincer and falls into the water.,\"pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait.\",catches sight of someone.,\"bursts up as the snowy tunnel closes, unzips its coat, and unscrews a lens.\",1\n17906,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8394,\"The driver flies from the truck, landing in the dirt. Someone\",\"The driver flies from the truck, landing in the dirt.\",Someone,gold,holds it up under the truck's tires.,aims down and paddles out wildly.,leaps onto the driver's seat and takes the wheel.,lays his hands over his side.,2\n17907,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8366,\"Darkness closes in around the priest as someone's grasp decomposes him. His face a mess of rotten flesh, someone\",Darkness closes in around the priest as someone's grasp decomposes him.,\"His face a mess of rotten flesh, someone\",gold,irritably sips his iced wine.,smashes his head against someone's.,eavesdrops on his play.,stares fixedly at someone.,1\n17908,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8345,He peeks around a corner then crouches with his partner. He,He peeks around a corner then crouches with his partner.,He,gold,\"sneaks up, up in the air above the fireplace and follow his unsettled look.\",looks out to mid sweep.,takes a swig of 2000 year old wine.,\"rushes over to the boy with the baby, smashes it on a wall.\",2\n17909,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8418,\"He seizes someone by the head and brings his face close, his jaw opening wide. His cocky smirk gone, someone\",\"He seizes someone by the head and brings his face close, his jaw opening wide.\",\"His cocky smirk gone, someone\",gold,works on his knuckles.,stares fearfully through glistening bloodshot eyes.,rips off the shirt with parked stubble.,stumbles and runs toward the woman.,1\n17910,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8440,She lurches to halt at the sight of someone standing beside the overturned flaming suv. The creature's skull,She lurches to halt at the sight of someone standing beside the overturned flaming suv.,The creature's skull,gold,bears a flying foam.,turns toward the wreckage.,\"is ripped, but someone struggles to free her body.\",disappears and tightens itself.,1\n17911,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8422,\"Someone's side mirrors show someone gaining. As he draws closer, he\",Someone's side mirrors show someone gaining.,\"As he draws closer, he\",gold,\"sees people watching, while others walk in places.\",regains stands and heads towards the automaton.,slings his glowing chain forward.,observes the producer cousin's 2011 hair.,2\n17912,lsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8390,\"The rider speeds off, his chopper trailing thick plumes of black smoke. Now someone's convoy\",\"The rider speeds off, his chopper trailing thick plumes of black smoke.\",Now someone's convoy,gold,arrives in a clearing in front of a van's saucer - shaped parking space.,travels up another snow side where several animals are laid on the ground beneath the citadel.,travels through a desert on an isolated two - lane highway.,pulls up outside someone's house.,2\n17913,anetv_ZMopjyYvcqw,15660,The bow is shown in detail. Another man,The bow is shown in detail.,Another man,gold,is shown outdoors using the hunting bow to shoot a target.,rubs a smooth body but is clearly kicked by harry.,\"shows the sharpening a knife, cut a blade, and uses the knife as a knife to prepare it.\",instructs before taking the piercing and showing some assigned proper shots of the man.,0\n17914,anetv_ZMopjyYvcqw,15658,A man is showing a crossbow and a knife and other hunting gear. The man,A man is showing a crossbow and a knife and other hunting gear.,The man,gold,is talking to the camera showing a hunting bow.,is swooping the left.,sharpens the knife into a ski and sharpens the pliers on the sharpener.,continues sharpening the knife from a target the whole time.,0\n17915,anetv_ZMopjyYvcqw,15661,Another man is shown outdoors using the hunting bow to shoot a target. The man,Another man is shown outdoors using the hunting bow to shoot a target.,The man,gold,is mowing the lawn on two brown grass playing a lawn mower next to the tree.,is talking to the camera again indoors showing the hunting bow.,meets to a corner grill and chop a wood with aluminum equipment.,carries several large polo between his hands.,1\n17916,anetv_ZMopjyYvcqw,15659,The man is talking to the camera showing a hunting bow. The bow,The man is talking to the camera showing a hunting bow.,The bow,gold,shows the right hurt.,is shown fighting in a ring.,is shown in detail.,is served on the table.,2\n17917,anetv_WPK5VeqNSh8,13751,Two man holds special shoes and are ready to play in the court holding the rings. man,Two man holds special shoes and are ready to play in the court holding the rings.,man,gold,is outside in the white suit and a small roofed gym.,lift the small cloth up and down at the ground.,stops in the floor and begin to ball.,throw the rings to the court playing.,3\n17918,anetv_WPK5VeqNSh8,13750,A man and a woman holds the rings and put them in the curling court. two man,A man and a woman holds the rings and put them in the curling court.,two man,gold,turn the accordian to create a ounce of whiskey.,holds special shoes and are ready to play in the court holding the rings.,applies additional basketball to each other as everyone talk to many other men.,holds a ball and wrap ring around the smokes of the ring.,1\n17919,anetv_WPK5VeqNSh8,18872,It dissipates and two people on a tv show grab a large circular object with a handle on it and places it at the end of the mat and comes back to talk to the other two people. One of the men then,It dissipates and two people on a tv show grab a large circular object with a handle on it and places it at the end of the mat and comes back to talk to the other two people.,One of the men then,gold,lays down on the floor and begins throwing a stick to the sticks.,jumps and does the other one.,grab their shoes and begins asking questions about it.,places his face on the ground.,2\n17920,lsmdc3071_THE_DESCENDANTS-5247,8177,Someone gives a shrug of the hand. The mother,Someone gives a shrug of the hand.,The mother,gold,gives an awkward nod.,laughs and a comment to herself continues evaluating her.,watches someone with an inquiring glance.,faces her daughter inquiringly.,3\n17921,lsmdc3009_BATTLE_LOS_ANGELES-568,13627,He watches two more Marines descend from the chopper. Someone,He watches two more Marines descend from the chopper.,Someone,gold,burst down through the rough - hewn road.,shields his face from the blast and flies into an airplane.,lands then trots past his staff sergeant and nods.,tugs someone as he climbs down the back.,2\n17922,lsmdc3009_BATTLE_LOS_ANGELES-568,13628,Someone lands then trots past his staff sergeant and nods. Someone,Someone lands then trots past his staff sergeant and nods.,Someone,gold,sets the phone aside.,holds up another corpse as someone follows someone into the closed office.,slides down a rope.,hands someone another personal item.,2\n17923,lsmdc3009_BATTLE_LOS_ANGELES-568,13631,The helicopter rises overhead into the night sky. Now someone,The helicopter rises overhead into the night sky.,Now someone,gold,glances around as he leads his unit below an overpass.,strolls down a city street.,follows someone as they take down the dunes.,\"is aimed pursuit, searchlight and alert.\",0\n17924,lsmdc3009_BATTLE_LOS_ANGELES-568,13626,\"As someone heads off, someone slides to the ground and catches his attention. He\",\"As someone heads off, someone slides to the ground and catches his attention.\",He,gold,unbuttons his shirt.,climbs from his wooden edge and checks his watch.,watches two more marines descend from the chopper.,\"walks away, revealing someone.\",2\n17925,lsmdc3009_BATTLE_LOS_ANGELES-568,13630,Someone looks over his team and leads them across the lot. The helicopter,Someone looks over his team and leads them across the lot.,The helicopter,gold,sits at the building.,rises overhead into the night sky.,approaches a massive jet with eight rocks.,\"heads down the street, passing zombies.\",1\n17926,lsmdc3009_BATTLE_LOS_ANGELES-568,13625,\"A second rope drops from above. As someone heads off, someone\",A second rope drops from above.,\"As someone heads off, someone\",gold,takes two lines and helps them from its tight.,spots someone crossing to window.,produces the bald heads headed toward the temple.,slides to the ground and catches his attention.,3\n17927,lsmdc3009_BATTLE_LOS_ANGELES-568,13629,Someone slides down a rope. Someone,Someone slides down a rope.,Someone,gold,watches him go and raises it.,looks over his team and leads them across the lot.,looks over his shoulder as he races.,sees logs in two.,1\n17928,lsmdc3009_BATTLE_LOS_ANGELES-568,13624,He drops a long rope from the side door then faces Hector. He,He drops a long rope from the side door then faces Hector.,He,gold,falls out of the helicopter and slides down the rope to a deserted lot.,\"tapes the stump of the boy first, snapping it into web.\",report turns away.,sees the bottle ring in the middle of the surrounding.,0\n17929,anetv_gh5di42-RJo,6661,A small boy wearing a black and red striped shirt is sitting with a drum set and playing drums. A man wearing a pink shirt and black trousers,A small boy wearing a black and red striped shirt is sitting with a drum set and playing drums.,A man wearing a pink shirt and black trousers,gold,goes down a set of stairs and picks up his instrument.,is dancing with the hairdresser.,watch on the other side.,is standing next to him.,3\n17930,anetv_gh5di42-RJo,6662,A man wearing a pink shirt and black trousers is standing next to him. Another person wearing a denim shirt,A man wearing a pink shirt and black trousers is standing next to him.,Another person wearing a denim shirt,gold,walks past the boy.,is shaving his legs.,begins shaving his tattoo with an electric razor.,is sitting next to a cup.,0\n17931,anetv_gh5di42-RJo,6665,He alternately hits the cymbals and the snare drums with the sticks. He,He alternately hits the cymbals and the snare drums with the sticks.,He,gold,\"stands on the metal ladder, bounces from the floor, trying to hit it away.\",then spins the hammer and moves his body once more.,ends by hitting the cymbals.,continues to play pong tam - tam while playing on him and taking a different take playing it to record the play.,2\n17932,anetv_gh5di42-RJo,6664,The boy continues to drum the cymbals and the hi - hat in a rhythmic way as the people cheer for him. He alternately,The boy continues to drum the cymbals and the hi - hat in a rhythmic way as the people cheer for him.,He alternately,gold,addresses the dog leaving the stage and gives it a high wave.,helps someone out of the room as he moves around to throw a drum.,comes toward the microphone and stops in front of him.,hits the cymbals and the snare drums with the sticks.,3\n17933,anetv_0gwhdJGq2eg,7122,They hit a ball back and forth in the water. they,They hit a ball back and forth in the water.,they,gold,hit the birdie back and forth together.,\"swim after the ball, trying to catch it or hit it.\",kick it around as they hit the ball.,kick the ball back and forth against the camera.,1\n17934,anetv_0gwhdJGq2eg,7121,A group of people are swimming in a public pool. They,A group of people are swimming in a public pool.,They,gold,\", teams watch in a pool.\",hit a ball back and forth in the water.,women are sitting on edge of the pool.,are sitting on a raft.,1\n17935,anetv_0gwhdJGq2eg,5590,The ball lands outside of pool and a little girl gives it back. The ball,The ball lands outside of pool and a little girl gives it back.,The ball,gold,lets the ball slip and she falls into the water.,is down on the grass in front of her.,gets thrown back and forth across the water.,dives again when another player climbs a stone.,2\n17936,lsmdc1053_Harry_Potter_and_the_philosophers_stone-96103,8453,Someone comes out of his cottage. Someone,Someone comes out of his cottage.,Someone,gold,stands alone beside one cage.,picks up a crossbow.,\"runs toward him, through a school of pearls.\",watches someone climb off.,1\n17937,anetv_Tcf9sOzU-7M,4463,Then the men run throughout the field and attack each other with paintball guns. They,Then the men run throughout the field and attack each other with paintball guns.,They,gold,make discs for the man to shoot where a rider is.,see the product in the motion.,ducks and they hit the wall into the field before kicking civilian away.,run through the field quickly and attack one another using the paint gun.,3\n17938,anetv_Tcf9sOzU-7M,4462,Several different intros eventually leads into two men pointing on a field and getting ready for paintball. Then the men,Several different intros eventually leads into two men pointing on a field and getting ready for paintball.,Then the men,gold,throw two scores of arrows and measure the distance with an arrow.,run throughout the field and attack each other with paintball guns.,speak to one another and lead into throwing their dodgeball against each other and smiling to the camera.,continue torching the croquette balls and aiming at one other.,1\n17939,anetv_q8c_0JTe5r8,17737,A screen shows the batter for a marble cake. First the white batter,A screen shows the batter for a marble cake.,First the white batter,gold,begins to hit the cups before making the pranam and making the pranam and showing it.,demonstrates hurling in a field while the man looks at his ball.,is a big field that is the same shot of the game.,\"is placed in the bundt pan, followed by chocolate, then alternating between the two.\",3\n17940,anetv_q8c_0JTe5r8,17738,\"A knife is run through the batter to create a marbling effect, and the batter is lightly shaken. A fully baked cake\",\"A knife is run through the batter to create a marbling effect, and the batter is lightly shaken.\",A fully baked cake,gold,is then shown and sliced.,is placed in cakes and placed into a small bowl.,appears into the pouring glass.,appears on top of the cake once more.,0\n17941,anetv_q8c_0JTe5r8,4008,Batter is placed into a baking dish. different kinds of batter,Batter is placed into a baking dish.,different kinds of batter,gold,is entered in layers.,is placed on a plate.,\"are juiced, adding ingredients to the fry pan.\",are poured on the salad.,0\n17942,anetv_q8c_0JTe5r8,4009,Different kinds of batter is entered in layers. the batter,Different kinds of batter is entered in layers.,the batter,gold,uses them on utensil logos and thanks to the guy.,points out very proudly and is drinking.,is spread with a butter knife.,fixes the cue and serves.,2\n17943,lsmdc0014_Ist_das_Leben_nicht_schoen-54567,6466,\"He takes some travel folders from his pocket, looks at them and throws them away. His mother\",\"He takes some travel folders from his pocket, looks at them and throws them away.\",His mother,gold,\"'s name appears on which someone says, making no response.\",\"steps back, then hurries up to the couch.\",\"looks at someone, then looks back over his shoulder.\",comes out of the house and kisses him.,3\n17944,lsmdc0014_Ist_das_Leben_nicht_schoen-54567,6465,He is obviously disturbed about the latest turn of events. He,He is obviously disturbed about the latest turn of events.,He,gold,seems to float into the scene then pours more water.,\"takes some travel folders from his pocket, looks at them and throws them away.\",shows journalists to karate the great length of the arena.,would want to beam into someone's apartment.,1\n17945,lsmdc0014_Ist_das_Leben_nicht_schoen-54567,6464,Someone is standing at the garden gate. He,Someone is standing at the garden gate.,He,gold,is taking out the a room where a man puts his own equipment to play on the dirt and before javelin high.,is obviously disturbed about the latest turn of events.,is engrossed in the large.,takes his left hand free.,1\n17946,lsmdc1015_27_Dresses-79858,10648,\"He waits for a reaction, turns to walk away, then stops and comes back again. He\",\"He waits for a reaction, turns to walk away, then stops and comes back again.\",He,gold,holds up a pda phone with a ribbon on it.,puts down his cue to talk to the audience.,is making the wrong turn.,drops as he gets in the car and turns in his direction.,0\n17947,lsmdc1015_27_Dresses-79858,10652,She looks down at the gift in her hand and chokes back more tears. She,She looks down at the gift in her hand and chokes back more tears.,She,gold,the shape senses advertising super moving.,arrives back at her apartment and places her bag and keys on the hall table.,sets her gunmen in its compartment.,is seen sitting beside her and continue - sweets.,1\n17948,lsmdc1015_27_Dresses-79858,10651,Someone watches him go with a sad half smile. She,Someone watches him go with a sad half smile.,She,gold,beams at the waist floor repeatedly as she runs up through the crowd of students.,looks down at the gift in her hand and chokes back more tears.,walks onto the bench and sits next to him.,\"looks tenderly at the baby, who wraps a passionate kiss around his neck.\",1\n17949,lsmdc1015_27_Dresses-79858,10655,Someone is at his desk staring gloomily into space as someone walks up. He,Someone is at his desk staring gloomily into space as someone walks up.,He,gold,puts up his hat.,limps up the aisle and closes the door.,gives a rueful smile and sinks back thoughtfully into his chair.,leans on the chair on the other side of the table.,2\n17950,lsmdc1015_27_Dresses-79858,10657,Someone is at her father's store. Someone,Someone is at her father's store.,Someone,gold,starts to.,\"eyes someone, then picks up a bag.\",opens them to look if she could think.,freezes as she notices someone.,3\n17951,lsmdc1015_27_Dresses-79858,10647,\"She looks at him with wide, tear - filled eyes. He\",\"She looks at him with wide, tear - filled eyes.\",He,gold,wears a torn cape in a red vest over her throat.,\"waits for a reaction, turns to walk away, then stops and comes back again.\",retreats to one side of his house and stares at the city.,\"gives a slight nod, then snatches the shotgun and stuffs it in her pocket.\",1\n17952,lsmdc1015_27_Dresses-79858,10653,She arrives back at her apartment and places her bag and keys on the hall table. She idly,She arrives back at her apartment and places her bag and keys on the hall table.,She idly,gold,toys with a flower in one of the many vases which occupy every available surface.,\"crosses the kitchen, reading her book, then scoots into the kitchen.\",walks toward the door with someone who leans her head against a door.,picks up her purse and places the rug on her feet.,0\n17953,lsmdc1015_27_Dresses-79858,10649,He holds up a pda phone with a ribbon on it. He,He holds up a pda phone with a ribbon on it.,He,gold,\"tries to blow dry the zips, and hopefully his eyes are open shut.\",fills the passengers with the menacing lift.,\"tries to build the hedges, then finds the edge structure he has.\",\"places it in her hand, gives her a lingering look, then walks away.\",3\n17954,lsmdc1015_27_Dresses-79858,10656,He gives a rueful smile and sinks back thoughtfully into his chair. Someone,He gives a rueful smile and sinks back thoughtfully into his chair.,Someone,gold,drives and hits in.,is a person wearing a string pin.,is decked out through the plans of day.,is at her father's store.,3\n17955,lsmdc1015_27_Dresses-79858,10654,She idly toys with a flower in one of the many vases which occupy every available surface. Someone,She idly toys with a flower in one of the many vases which occupy every available surface.,Someone,gold,puts his feet on his shoulder and knits his brow.,is at his desk staring gloomily into space as someone walks up.,\"stands in the darkness, her head bowed, her eyes wide.\",begins to put makeup on the makeup woman.,1\n17956,lsmdc3014_CAPTAIN_AMERICA-5336,5820,\"Someone hands someone a newspaper ad. At the World's Fair, someone\",Someone hands someone a newspaper ad.,\"At the World's Fair, someone\",gold,aims at the bodybuilder athletic man.,waves to a pair of young women.,is cooking in the dining position doing a simple pyramid on a forest lawn.,lets her gaze steadily at her father and fiancee.,1\n17957,lsmdc3014_CAPTAIN_AMERICA-5336,5821,\"At the World's Fair, someone waves to a pair of young women. Someone, someone, and their dates\",\"At the World's Fair, someone waves to a pair of young women.\",\"Someone, someone, and their dates\",gold,\", are looking to a laptop.\",gaze up the floor.,stroll past futuristic displays.,are standing ready a snowboarding.,2\n17958,lsmdc3014_CAPTAIN_AMERICA-5336,5823,They push through the crowd toward a stage. Female models,They push through the crowd toward a stage.,Female models,gold,take on a black and brown sweater.,shoot through the great air.,watch the dancers as they gawk at the dancers and flash.,lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage.,3\n17959,lsmdc3014_CAPTAIN_AMERICA-5336,5825,\"He hands his top hat to one of the models, then kisses her on the lips. Taking a microphone, someone\",\"He hands his top hat to one of the models, then kisses her on the lips.\",\"Taking a microphone, someone\",gold,dabs his mouth with a handkerchief.,sets the drums at his feet.,backs her backward into a present.,plays in the music.,0\n17960,lsmdc3014_CAPTAIN_AMERICA-5336,5822,\"Someone, someone, and their dates stroll past futuristic displays. They\",\"Someone, someone, and their dates stroll past futuristic displays.\",They,gold,need weapons from someone.,are carried newspapers across the corridor to the mountains.,writhe in strong winds.,push through the crowd toward a stage.,3\n17961,lsmdc3014_CAPTAIN_AMERICA-5336,5824,Female models lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage. He,Female models lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage.,He,gold,races pass the circling girls.,\"hands his top hat to one of the models, then kisses her on the lips.\",stands at the ladies possibly dining and admires.,glances over to someone.,1\n17962,anetv_bjKd--KFl0E,3658,A woman is surfing on a large wave. There,A woman is surfing on a large wave.,There,gold,is a straw explaining how to play it.,are buildings behind her.,are a bunch of sand at the top of the pool.,are people talking in a stadium.,1\n17963,anetv_bjKd--KFl0E,15124,A still image is seen of a woman riding a wave on a surfboard. She,A still image is seen of a woman riding a wave on a surfboard.,She,gold,is wearing a white headband around her head.,jumps surfing and hugs a camera girl in the end.,ends with one holding his helmet and an orchestra outdoors.,takes a selfie and cheers as well as surfing in it.,0\n17964,anetv_bjKd--KFl0E,3659,There are buildings behind her. People,There are buildings behind her.,People,gold,are watched on camera.,are standing on the beach in front of the buildings.,take flight as friends stairs into the church.,come to her including a third then slaps her face down the floor.,1\n17965,lsmdc0005_Chinatown-48019,14971,In two of the photos a gnarled cane is visible. Someone,In two of the photos a gnarled cane is visible.,Someone,gold,looks all the way to the sun.,sits in their driving seat.,tosses down the photos in disgust.,touches the intercom and picks papers for the desk.,2\n17966,anetv_vvoqG7UQsdc,129,\"There are two students, a boy and a girl in a pole vault runway. One of the students, a boy\",\"There are two students, a boy and a girl in a pole vault runway.\",\"One of the students, a boy\",gold,performs complete balance bars while running and interacts with two men in public.,pulls a wrench on the chain passing them in strides until they finish an grate under the line and take rope.,does a spin routine as people in the stadium perform forward vaults and landing above a pole.,sprints with the pole on the runway while a person in blue the other student watch him perform.,3\n17967,anetv_vvoqG7UQsdc,130,\"One of the students, a boy sprints with the pole on the runway while a person in blue the other student watch him perform. Then he\",\"One of the students, a boy sprints with the pole on the runway while a person in blue the other student watch him perform.\",Then he,gold,\"jumps, jumps down on the board and falls down onto his mat.\",swings and others remain on his feet as an athlete signal and his physical go very high.,\"walks away, the stilts is on the step and the routine is mostly, chased by other other athletes behind the car watching.\",jumps up high and lands a few feet away on the landing area.,3\n17968,anetv_vvoqG7UQsdc,131,Then he jumps up high and lands a few feet away on the landing area. His actions,Then he jumps up high and lands a few feet away on the landing area.,His actions,gold,are repeated in slow motion and he begins to do tricks.,are repeated at the same time.,are replayed in slow motion to capture his jump and landing.,are shown in slow motion so he does n't exercise in the studio.,2\n17969,anetv_pCEg_GoXoU4,4658,More people are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them. In the end they,More people are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them.,In the end they,gold,show more clips of the city and fades of only one trees in the background.,reach all the distance and fall various bow and objects to one another.,ride around the streets using shovel and go along the rough waters.,'re seen riding a boat together and waving to the camera.,3\n17970,anetv_pCEg_GoXoU4,4657,Several shots are shown of scuba divers moving along the water and fish moving around them. More people,Several shots are shown of scuba divers moving along the water and fish moving around them.,More people,gold,are shown swimming around the area and leads around a very large crowd of landscapes.,are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them.,are shown decorating the board and showing off people swimming.,\"ride by on the water on the water as well as people, surfing and doing tricks surfing.\",1\n17971,lsmdc0011_Gandhi-52353,12068,Someone reacts - - with surprise and caution. Again someone,Someone reacts - - with surprise and caution.,Again someone,gold,is surprised - - but even more cautious.,is aware that someone wants a girl to pull out on the smoke under the covers.,looks tough on someone.,gently shoves her hand into the doll's head.,0\n17972,lsmdc0011_Gandhi-52353,12061,The magistrate receives that news with some alarm. He,The magistrate receives that news with some alarm.,He,gold,snatches his case of the unseen woman.,\"rides in slow motion, doing numerous flips and tricks.\",looks impatient in a case lined with kit.,indicates that the clerk take his place.,3\n17973,lsmdc0011_Gandhi-52353,12063,The clerk lowers his eyes to his pad. The magistrate,The clerk lowers his eyes to his pad.,The magistrate,gold,man works his jaw.,with his own bustier straightens on her shoulders.,\"searches the distant wall, the top of his desk, his twitching hands for an answer.\",man fumbles with the heavy sunglasses and proceeds to lay his cane on the table.,2\n17974,lsmdc0011_Gandhi-52353,12064,\"The magistrate wets his lips. In the chaos of cheering and delight, the magistrate\",The magistrate wets his lips.,\"In the chaos of cheering and delight, the magistrate\",gold,\"sniff the ground, urging a layup.\",turns to drinking again.,begins spinning his own way around.,\"rises, looks around the room and heads for his chambers.\",3\n17975,lsmdc0011_Gandhi-52353,12069,\"Again someone is surprised - - but even more cautious. It sounds casually ironic, but they\",Again someone is surprised - - but even more cautious.,\"It sounds casually ironic, but they\",gold,'re not entirely enjoying the music.,\"look determined, even angry.\",hit it lower towards the corner.,are twice more defiant to hear the sound.,1\n17976,lsmdc0011_Gandhi-52353,12067,\"As he smiles down at them, he is turned by. Someone\",\"As he smiles down at them, he is turned by.\",Someone,gold,reacts - - with surprise and caution.,slips on a swing towards the boys.,is suddenly shy towards someone.,lifts up his head to see the astonishment rolling forth from the goblet.,0\n17977,lsmdc0011_Gandhi-52353,12062,The magistrate looks around the courtroom and is only too aware of the mob outside. The clerk,The magistrate looks around the courtroom and is only too aware of the mob outside.,The clerk,gold,leans her dead uncle's head close to someone.,\"gets back at the door, starts thrown swiftly against the refrigerator and comes in beside her.\",\"shop, then he walks onto the company images.\",lowers his eyes to his pad.,3\n17978,lsmdc0011_Gandhi-52353,12066,Someone turns and starts out of the courtroom. Someone,Someone turns and starts out of the courtroom.,Someone,gold,approaches the mother - in - law and pulls open a chair.,tries to crawl onto the pillow.,steps down from the courtroom to the balcony.,runs into the kitchen and pours him a cup of spaghetti.,2\n17979,lsmdc0011_Gandhi-52353,12065,The journalists are scribbling furiously. Someone,The journalists are scribbling furiously.,Someone,gold,turns and starts out of the courtroom.,emerges wearily as he follows someone's gaze.,sets down the thermos.,\"is interrupted by someone, who stands at the front desk and is looking at someone, set down to his desk.\",0\n17980,lsmdc0011_Gandhi-52353,12060,We see the front row from his point of view. The magistrate,We see the front row from his point of view.,The magistrate,gold,receives that news with some alarm.,mows a snowy village.,is then shown shaving the guy's leg.,is reflected across the asphalt.,0\n17981,anetv_F30odTEdsxo,12192,People are playing cards around a table. People,People are playing cards around a table.,People,gold,are standing up behind them.,are playing a game of tennis.,are laying out cards on a rocky field.,are walking at the court sewing their robes.,0\n17982,anetv_F30odTEdsxo,12193,People are standing up behind them. A man,People are standing up behind them.,A man,gold,is seen sitting behind hanging axes using pliers to clean a large onto the roof.,stands up from the table.,is held up in front of a plant.,is watching the men while people run and talk.,1\n17983,lsmdc0033_Amadeus-66715,14971,\"He is an intelligent, dapper man of forty, wearing a military uniform. Around him but standing,\",\"He is an intelligent, dapper man of forty, wearing a military uniform.\",\"Around him but standing,\",gold,\"are his someone, someone: stiff and highly correct.\",leads him across the city.,\"relaxed in his arms, ready to compete, then fades to people.\",directing towards a humvee with a tailor weights.,0\n17984,lsmdc0010_Frau_Ohne_Gewissen-51053,5253,Someone takes his hat and briefcase. They both,Someone takes his hat and briefcase.,They both,gold,look around as it picks up the magnificent statue and flashes.,move toward the archway.,step out of the hall.,\"seem to rise, sitting seated at the edge of the bed.\",1\n17985,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1558,She gets a text from someone. Someone,She gets a text from someone.,Someone,gold,gets a photo message showing someone with someone.,is reading her course from her office.,curls in over her face.,leans back on her chair.,0\n17986,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1561,\"She falls back and smiles at him, meaningfully. He\",\"She falls back and smiles at him, meaningfully.\",He,gold,moves in for another kiss.,gets up and goes to the stage.,\"jumps on, seeing someone's blood retreating from the moon.\",looks down and finds her hypnotized by the water.,0\n17987,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1571,\"Clad in a T - shirt and panties, she digs behind a sofa cushion, pulls out her cellphone. The display\",\"Clad in a T - shirt and panties, she digs behind a sofa cushion, pulls out her cellphone.\",The display,gold,shows an employee clerk.,shows someone's photo.,is filled with silver letters.,shows a $100 bill.,1\n17988,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1562,Someone lies back and he leans over her. She,Someone lies back and he leans over her.,She,gold,switches off a lamp.,grabs the cat's arm and shuts him down.,gently closes her mouth and lays down on her stomach.,jerks someone down - - right.,0\n17989,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1565,\"She grins, licks her fingertip, and strokes his ear. The woman\",\"She grins, licks her fingertip, and strokes his ear.\",The woman,gold,peers down into the tiled room with bare feet.,reads off more paper with a pen titled it.,walks toward the slytherin arena.,kisses down his lifted arms toward his armpit.,3\n17990,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1570,\"She wakes and gets up groggily. Clad in a T - shirt and panties, she\",She wakes and gets up groggily.,\"Clad in a T - shirt and panties, she\",gold,manages to support him out of the bedroom door.,\"digs behind a sofa cushion, pulls out her cellphone.\",takes off his blindfold sunglasses.,\"sits on his bed, giving photos of him.\",1\n17991,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1569,\"Now sunlight shines on someone's hair as she sleeps, spooning with someone on her sofa. She\",\"Now sunlight shines on someone's hair as she sleeps, spooning with someone on her sofa.\",She,gold,crashes at her front belly and grimaces.,wakes and gets up groggily.,sets off her headphones and briefly shakes her hips.,looks up at two pins on her car and arms.,1\n17992,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1567,She exhales in someone's face. He,She exhales in someone's face.,He,gold,draws someone's face and kisses him passionately.,\"raises a finger, gesturing for her to pause.\",watches the smiling woman watches.,sits on her shoulders.,1\n17993,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1563,\"As someone picks up his cell phone, his date lifts his arm, smells his armpit and licks his tricep. Someone\",\"As someone picks up his cell phone, his date lifts his arm, smells his armpit and licks his tricep.\",Someone,gold,glances back at the young guy who wears the mask occasionally.,puts the phone to his ear.,sell crash for a cafe inside a private lounge.,shifts his eyes as he peruses his son's interrogator.,1\n17994,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1560,Now someone makes out with someone on her couch. She,Now someone makes out with someone on her couch.,She,gold,\"falls back and smiles at him, meaningfully.\",looks her in the eye.,\"nudges him, he lifts her.\",hands a note to someone.,0\n17995,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1564,Someone puts the phone to his ear. She,Someone puts the phone to his ear.,She,gold,looks from him warily.,hurries curtly to meet him.,\"grins, licks her fingertip, and strokes his ear.\",\"turns from his purse, pulls him to his seat belt, and taps his arm.\",2\n17996,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1559,Someone gets a photo message showing someone with someone. Now someone,Someone gets a photo message showing someone with someone.,Now someone,gold,\"leaps, explode sparks.\",reads an essay through the page.,makes out with someone on her couch.,comes in through a box of toiletries.,2\n17997,lsmdc3026_FRIENDS_WITH_BENEFITS-1399,1566,Moving his sleeve aside she sniffs deeply. She,Moving his sleeve aside she sniffs deeply.,She,gold,exhales in someone's face.,looks down at his bloody.,pours the powder into her clothes.,strolls through the marketplace.,0\n17998,anetv_ZGsYV0KDB-4,16917,A dog is seen lying down on the floor. The dog,A dog is seen lying down on the floor.,The dog,gold,is being dragged to its high feet.,takes the drink out of hand.,is dreaming in his sleep.,gets pierced and leads into one dog throwing off the dog.,2\n17999,anetv_ZGsYV0KDB-4,16918,The dog is dreaming in his sleep. He,The dog is dreaming in his sleep.,He,gold,\"starts running very fast, then jumps up and runs face first into the wall.\",puts it in someone's ears.,opens the funny every night.,puts with the lotion on his guitar and picks it up.,0\n18000,anetv_ZGsYV0KDB-4,8070,A dog is sitting on the ground next to the words Dog Training. A dog,A dog is sitting on the ground next to the words Dog Training.,A dog,gold,runs out and comes onto several stairs.,hops up and grabs her dog off while a woman right behind her.,is walking in a large dog.,\"is seen lying on the living room floor, running in his sleep.\",3\n18001,anetv_ZGsYV0KDB-4,8071,\"A dog is seen lying on the living room floor, running in his sleep. He suddenly\",\"A dog is seen lying on the living room floor, running in his sleep.\",He suddenly,gold,whacks the rolling ball in his hand and pushes the desk away.,stays then his hand until it end.,\"approaches a bag of food in his lap, as he talks to the camera.\",\"jumps up, running face first into the wall.\",3\n18002,lsmdc1011_The_Help-78370,13900,She invites someone to follow her to the sitting room of her spotless little house. Someone,She invites someone to follow her to the sitting room of her spotless little house.,Someone,gold,sits down on the sofa and unties the headscarf she is wearing.,sits at a table that read mostly packed.,steps out onto a balcony and stares into a dark space.,\"arrives at a snowy construction after the entering, has moved slowly through the dusty office.\",0\n18003,lsmdc1011_The_Help-78370,13899,Someone thinks on his words. Later at home someone,Someone thinks on his words.,Later at home someone,gold,hurries to the door.,\"sits in the backyard, watching her.\",rushes to his mom and opens the door.,\"lies on his bed, staring in a toilet.\",0\n18004,lsmdc3068_THE_BIG_YEAR-3333,7548,\"Leaving the mustached birder in the passenger seat, someone lowers his window, then climbs out of the car through it. He\",\"Leaving the mustached birder in the passenger seat, someone lowers his window, then climbs out of the car through it.\",He,gold,stands motionless at the rear of the ship.,\"nudges someone's hand on the security panel as he steps out, as a car pulls away.\",skids to a stop and glances at someone.,\"faces the tree, grimly inspecting the damage to the car's back door.\",3\n18005,lsmdc3068_THE_BIG_YEAR-3333,7547,\"He wrenches the wheel, waking his companion. Leaving the mustached birder in the passenger seat, someone\",\"He wrenches the wheel, waking his companion.\",\"Leaving the mustached birder in the passenger seat, someone\",gold,slips down a short flight of steps.,\"lowers his window, then climbs out of the car through it.\",glances back and runs toward the youth.,squints across the scene.,1\n18006,lsmdc3068_THE_BIG_YEAR-3333,7546,\"At the wheel of a car, someone wakes to find himself in the path of an 18 - wheeler. He\",\"At the wheel of a car, someone wakes to find himself in the path of an 18 - wheeler.\",He,gold,\"wrenches the wheel, waking his companion.\",jumps off his van's hood.,notices some foam on her hands.,sees someone as someone spins him out.,0\n18007,lsmdc3068_THE_BIG_YEAR-3333,7545,\"It comes to life and flies at us. At the wheel of a car, someone\",It comes to life and flies at us.,\"At the wheel of a car, someone\",gold,faces the giant ocean.,appears as a shield and drives the ignition.,wakes to find himself in the path of an 18 - wheeler.,climbs and turns to someone's accomplice.,2\n18008,lsmdc3068_THE_BIG_YEAR-3333,7551,\"In the passenger seat, the mustached birder keeps one arm at his side as he starts to turn in his seat. He\",\"In the passenger seat, the mustached birder keeps one arm at his side as he starts to turn in his seat.\",He,gold,\"gazes down at the street, then back at him three times and stares up at us.\",whizzes by the hydra's open doors as an elderly man comes up to the gate and opens the door.,\"speeds down the sidewalk, as someone pulls the detonator on its side, then leaps from the truck.\",\"winces and unbuckles his seat belt, then reaches into the back.\",3\n18009,lsmdc3068_THE_BIG_YEAR-3333,7544,Our view contracts around an owl in a nearby tapestry. It,Our view contracts around an owl in a nearby tapestry.,It,gold,pulls onto a runway with the archers over it.,enters the village carrying mounds of crutches.,comes to life and flies at us.,crumbles before a crowd of people.,2\n18010,lsmdc3068_THE_BIG_YEAR-3333,7549,\"He faces the tree, grimly inspecting the damage to the car's back door. Someone\",\"He faces the tree, grimly inspecting the damage to the car's back door.\",Someone,gold,turns wide - eyed.,enters the large cell house.,appears at the window.,steps into a silver sedan.,0\n18011,lsmdc3068_THE_BIG_YEAR-3333,7550,\"Someone turns wide - eyed. In the passenger seat, the mustached birder\",Someone turns wide - eyed.,\"In the passenger seat, the mustached birder\",gold,walks between them in a huff.,keeps one arm at his side as he starts to turn in his seat.,presses his head on the brakes.,walks in and hands her a pot of milk.,1\n18012,lsmdc3009_BATTLE_LOS_ANGELES-374,18172,\"Brick of c - 4 to a tire, someone stands. They\",\"Brick of c - 4 to a tire, someone stands.\",They,gold,sit alone in the open.,make their way down the dark street.,sit on the dirt inside.,move behind another car and add explosives.,3\n18013,lsmdc3008_BAD_TEACHER-3944,9825,Now the principal holds a nudie magazine. He,Now the principal holds a nudie magazine.,He,gold,peers out from an upper window.,lowers its silent prayer and smiles.,sprinkles a final stack of the bills.,shifts his baffled gaze.,3\n18014,lsmdc3008_BAD_TEACHER-3944,9827,The boy passes someone on his way out and she covers her nose. Someone,The boy passes someone on his way out and she covers her nose.,Someone,gold,\"lifts another man, then she aims her rifle aside.\",\"recalls who sits on her bed, watching in bed.\",notices dolphin figurines all around the office and photos of the principal swimming with dolphins.,glows on the night sky.,2\n18015,lsmdc3008_BAD_TEACHER-3944,9826,He shifts his baffled gaze. He,He shifts his baffled gaze.,He,gold,licks his spread lips and shakes his head.,\"breaks off, then lowers his gaze then shrugs.\",picks up a green page.,reaches for his magazine.,3\n18016,anetv_3CeZS6-0NfU,16544,A guy is in his garage. The guy,A guy is in his garage.,The guy,gold,is using a tool to paint something.,uses a welding tool.,climbs to a lower fence.,removes a tube from his neck.,1\n18017,anetv_3CeZS6-0NfU,7934,\"A guy is welding a brown, flat object. The guy\",\"A guy is welding a brown, flat object.\",The guy,gold,uses the power hose off the table.,holds his feet up and begins welding.,lifts his black helmet.,uses a rake to rip grass off.,2\n18018,anetv_3CeZS6-0NfU,16545,The guy uses a welding tool. The guy,The guy uses a welding tool.,The guy,gold,smokes before looking off.,goes to the audio top of the ski using a tool.,sticks the welding metal.,stops using the welding tool.,3\n18019,anetv_3CeZS6-0NfU,7933,A guy is indoors working in his garage. A guy,A guy is indoors working in his garage.,A guy,gold,\"is welding a brown, flat object.\",drives a car at a large park.,picks up someone's hand from the table on his computer.,takes off his cigarette and blows smoke.,0\n18020,anetv_3CeZS6-0NfU,7935,The guy lifts his black helmet. The guy,The guy lifts his black helmet.,The guy,gold,talks and lifts the barbell to the ground.,releases the yellow van.,speaks and smiles slightly.,lifts the dog off the mat.,2\n18021,anetv_3CeZS6-0NfU,16546,The guy stops using the welding tool. The guy,The guy stops using the welding tool.,The guy,gold,walks up to the table and picks on to his legs.,drops to the ground with another tool.,stops welding and lowers his coat.,moves the welding helmet from his face.,3\n18022,anetv_gYARGADLcmQ,1522,We see an aerial view of a beach with people all over. We,We see an aerial view of a beach with people all over.,We,gold,\"see bmx warehouses, then a man in the talking behind and we see a game in the distance.\",\", and fishes and native bean, is getting teenaged in the snow, and a highlight photo of his boy being shown.\",see people building sand castles.,see a title screen and we see a lady sitting on a boat as the lady waves.,2\n18023,anetv_gYARGADLcmQ,1524,\"We interview a judge, who then walks among the people. We\",\"We interview a judge, who then walks among the people.\",We,gold,see a screen and about that with a team doing on each other.,circle and hold the ball on both hands.,see two men interviewed.,see people through the water and back in it.,2\n18024,anetv_gYARGADLcmQ,1521,We see an animated opening screen. We,We see an animated opening screen.,We,gold,see an aerial view of a beach with people all over.,see a man throwing a ball to the camera.,see a person ride a small kite.,see an colorful screen.,0\n18025,anetv_gYARGADLcmQ,1523,We see people building sand castles. We,We see people building sand castles.,We,gold,see two boys with defenders.,see people in clouds talking.,\"interview a judge, who then walks among the people.\",see the kids riding a raft on a mountains.,2\n18026,anetv_NPt1niJMbvE,10591,\"After, the gymnast jumps happily. People\",\"After, the gymnast jumps happily.\",People,gold,turn to the right then finish on jumping.,take pictures of the gymnast.,go down high and steep on another day in front of the audience.,perform several jumps as a coach.,1\n18027,anetv_BAgUUUOGaxI,14722,A man is seen sitting in a busy city square playing an accordion while others watch. The man,A man is seen sitting in a busy city square playing an accordion while others watch.,The man,gold,continues playing with the saxophone and smiling to the camera.,continues playing as people walk around and notice.,continuously throws a man off and over while others play on the sides.,continues to dance around the ground while looking off into the distance.,1\n18028,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7480,The battered car starts itself. It,The battered car starts itself.,It,gold,passes over a magazine seller's empty vent.,bounces into the seat.,leaps off the roof.,\"reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest.\",3\n18029,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7473,The spiders scuttle close behind the car as it jolts away between the trees. The floor of the forest,The spiders scuttle close behind the car as it jolts away between the trees.,The floor of the forest,gold,is a seething mass of spiders.,slides up through the hole in the ground.,is broken by the path's track streams.,is unstuck as coal stacked over the dirt vehicle avoiding frolic items.,0\n18030,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7483,\"In the hospital wing, someone puts some fresh flowers on the table by someone's bed. He and someone\",\"In the hospital wing, someone puts some fresh flowers on the table by someone's bed.\",He and someone,gold,sit on maximilian's shoulders and clips him from behind.,move timidly into the house where someone works.,enter a motel room.,sit sadly beside their petrified friend.,3\n18031,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7467,The car hits the ground and comes to a halt dislodging the lost spider. The spider,The car hits the ground and comes to a halt dislodging the lost spider.,The spider,gold,\"leaps through it, its head swinging with its strap.\",releases its grip at him.,pokes its face like a web as a skull.,grabs someone through the open window.,3\n18032,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7479,\"Steadying itself, the car flies high over the tops of the tall trees. It\",\"Steadying itself, the car flies high over the tops of the tall trees.\",It,gold,falls close with a stylus as the serpent rings.,'s four paddles to banks into the water toward the ship.,\"bounces off its white and blue scanner, which spreads around the plane into the sky.\",zooms over the forest and lands heavily on the grass beside someone's cottage.,3\n18033,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7482,\"The sun rises behind the towers and turrets of Hogwarts School. In the hospital wing, someone\",The sun rises behind the towers and turrets of Hogwarts School.,\"In the hospital wing, someone\",gold,drops her book and looks down at the operating carpet just making up her friend's office.,sits on a sofa.,puts some fresh flowers on the table by someone's bed.,studies the face and extends his chin.,2\n18034,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7484,He and someone sit sadly beside their petrified friend. Someone,He and someone sit sadly beside their petrified friend.,Someone,gold,hurries away with someone and a young boy with a third and someone slytherins.,\"join their routine, the boys cheer for the others.\",gently strokes her hand.,touches a girl's forehead.,2\n18035,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7463,It stops and the doors fly open. Fang,It stops and the doors fly open.,Fang,gold,hits the rooster's door.,\"jumps into the back seat, someone into the front.\",takes someone's mask and puts it back in its holder.,lands with smoke in the air as it goes out.,1\n18036,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7462,They pull out their wands. It,They pull out their wands.,It,gold,'s the ford anglia.,picks up two weapons from the inside of the tank which begins to move and deflected again.,'s with the balloon around him.,'s fire opens up.,0\n18037,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7465,\"Someone dives for the passenger seat as the spiders attack. Scattering spiders, someone\",Someone dives for the passenger seat as the spiders attack.,\"Scattering spiders, someone\",gold,reaches someone and takes out his wand.,notices the lit shape underneath the bed.,looks up.,backs the car out around the tree roots and back along the narrow tunnel.,3\n18038,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7481,\"It reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest. The sun\",\"It reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest.\",The sun,gold,rises behind the towers and turrets of hogwarts school.,is an inches low across the outside.,\"is low on a sky trail, with a line of moonlit trees.\",\"hops from the warm glow of the cottage, crosses the kitchen, and waves throughout the room.\",0\n18039,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7476,Someone grabs the gear stick. They both,Someone grabs the gear stick.,They both,gold,heave on the gear stick.,stare down at the animal.,take an inspection - as someone load into sparking glasses.,grimace as a tiered.,0\n18040,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7474,The floor of the forest is a seething mass of spiders. Someone,The floor of the forest is a seething mass of spiders.,Someone,gold,turns to someone in desperation.,\"chugs the square liquor over his butt from the hose, still holding the hose.\",pulls the torch back into the unlit flames.,checks the rearview mirror.,0\n18041,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7477,They both heave on the gear stick. The car,They both heave on the gear stick.,The car,gold,pulls away from someone's motel.,flies right up towards them.,rises into the air smashing into a branch and scattering spiders.,pulls up in a dark unlit street.,2\n18042,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7464,\"Fang jumps into the back seat, someone into the front. Someone\",\"Fang jumps into the back seat, someone into the front.\",Someone,gold,races onto the bridge and takes out his hand.,dives for the passenger seat as the spiders attack.,stumbles and becomes aware of someone's pacing and body hanging beneath the ledge.,goes just out of the building door.,1\n18043,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7471,Someone starts the car and puts it into reverse. Someone,Someone starts the car and puts it into reverse.,Someone,gold,\"takes a seat on the bench, and waves to his left hand, diner, and crouches over his work.\",barely has n't stopped her.,turns the car and accelerates.,walks out of the booth.,2\n18044,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7478,\"The car rises into the air smashing into a branch and scattering spiders. Steadying itself, the car\",The car rises into the air smashing into a branch and scattering spiders.,\"Steadying itself, the car\",gold,flies high over the tops of the tall trees.,\"crashes against the wall, moving into a stealthy swirl of debris.\",blows a clatter to the ground.,grinds on a branch.,0\n18045,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7472,Someone turns the car and accelerates. The spiders,Someone turns the car and accelerates.,The spiders,gold,\"climb the pavement back to the locker room, where a guy carries a shop and a helmet into a backpack.\",scuttle close behind the car as it jolts away between the trees.,are instructed of what tries the video.,\"start to break into a line, ready to go out.\",1\n18046,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7469,\"Someone's eyes suddenly open wide. As he looks through the cracked windscreen, hundreds of huge spiders\",Someone's eyes suddenly open wide.,\"As he looks through the cracked windscreen, hundreds of huge spiders\",gold,\"leap on the far end, racing around him.\",\"appear from amongst the shadowy trees and move towards the car, ready to attack again.\",lie in its wings.,hover over his head.,1\n18047,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7470,\"As he looks through the cracked windscreen, hundreds of huge spiders appear from amongst the shadowy trees and move towards the car, ready to attack again. Someone\",\"As he looks through the cracked windscreen, hundreds of huge spiders appear from amongst the shadowy trees and move towards the car, ready to attack again.\",Someone,gold,starts the car and puts it into reverse.,jumps into the water and looks up the mess.,falls from the boxcar.,holds his arm of the path and gazes down a path of green.,0\n18048,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7485,Someone gently strokes her hand. He,Someone gently strokes her hand.,He,gold,lays the ink gently on the glass.,continues to dance with the dancers.,places one hand on someone's cheek.,notices something clutched in her clenched fingers.,3\n18049,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7468,The spider is hurled backwards. Someone,The spider is hurled backwards.,Someone,gold,looks at someone with relief.,pokes his mace out through the glassy water.,\"turns on his make - up, aiming a torch.\",\"raises the flamethrower head, striking someone in the face.\",0\n18050,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7466,\"Scattering spiders, someone backs the car out around the tree roots and back along the narrow tunnel. The car\",\"Scattering spiders, someone backs the car out around the tree roots and back along the narrow tunnel.\",The car,gold,drops out the form and see bullets in the driver's rear door.,hits the ground and comes to a halt dislodging the lost spider.,glides open as someone turns.,stays ahead roof and pinches the handle with his fingers.,1\n18051,anetv_CTWo9EfQ4Hc,8594,An elderly woman wearing a one piece suit is standing on a ramp in an indoor gym. The woman,An elderly woman wearing a one piece suit is standing on a ramp in an indoor gym.,The woman,gold,walks down a set of steps to see a place to leave if a woman is swimming.,\"is hula hooping in a living room with a small audience, a man in a white skirt is talking.\",jumps up and down on a bar.,\"bends down and moves the ramp, stands on it, then mounts the double parallel bars.\",3\n18052,anetv_CTWo9EfQ4Hc,7481,She performs a routine on the double bars. She,She performs a routine on the double bars.,She,gold,balances held on her belly as she performs.,does a gymnastics routine on the bars.,\"spins and does flips, baton in the air.\",walks off to the applause of the audience.,3\n18053,anetv_CTWo9EfQ4Hc,7480,An older woman prepares to take the bars at a professional athletic venue with an audience. She,An older woman prepares to take the bars at a professional athletic venue with an audience.,She,gold,performs a routine on the double bars.,see teams playing a football as a baseball.,\"runs past the fence, then sets a javelin with her free hand.\",resume being mounted throughout.,0\n18054,anetv_cd_-gvb82Bs,7292,A man is seen speaking to the camera holding a window washer and begins getting the windows wet. He then,A man is seen speaking to the camera holding a window washer and begins getting the windows wet.,He then,gold,shows how to reach the car in the end and motions to pumpkins to set it down.,points to the window while wiping it down over and over again with various tools.,finishes and pushes in the car while still looking back to the camera.,turns back and then uses a cleaner to sweep up his wet hair.,1\n18055,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7573,He smiles when he recognizes someone house. He,He smiles when he recognizes someone house.,He,gold,sends a mound of luggage flying down the hall accompanied by a group of nuns in black.,sees someone in an upstairs window.,puts both his hands.,\"to an attendant, someone comes up with veiled robe and swinging a shotgun.\",1\n18056,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7570,\"Dust rises as they apparate. Alone, someone\",Dust rises as they apparate.,\"Alone, someone\",gold,follows some miles away.,\"stands among the pie, standing in their midst with a dinner with red, beautiful, small openings v. much eastern.\",lands in a stream.,slips into a barrier which crashes between the steering wheel and bends away.,2\n18057,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7571,\"Alone, someone lands in a stream. Shaking water from his trainers, he\",\"Alone, someone lands in a stream.\",\"Shaking water from his trainers, he\",gold,trudges through a reed bed.,wheels into the yearbook room and spots two russians then reach for a phone.,trots up to the beach.,slips with treasure in his stomach.,0\n18058,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7574,\"He sees someone in an upstairs window. Coming downstairs, someone\",He sees someone in an upstairs window.,\"Coming downstairs, someone\",gold,heads to another china worker.,glares in at him.,attaches a pillow to someone behind him.,spots someone's trunk and white owl.,3\n18059,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7572,\"Shaking water from his trainers, he trudges through a reed bed. He\",\"Shaking water from his trainers, he trudges through a reed bed.\",He,gold,kicks down the sneakers.,smiles when he recognizes someone house.,lands heavily on the vehicle.,tosses the remote into the table and fumbles with his broken egg.,1\n18060,anetv_AZx_lm2XLHk,14604,A large outdoor arena is show from a view above and a display screen shows the stats for women's team standings and then the words high jump appear. A man named bryan mcbride,A large outdoor arena is show from a view above and a display screen shows the stats for women's team standings and then the words high jump appear.,A man named bryan mcbride,gold,pulls a sizable girl down and above try to put her on parallel bars to get in the balance.,is shown snowboarding through a stair wall of ice using some techniques.,prepares to avoid so handsome.,\"is standing and then begins his high jump where he clears it, lands and vigorously cheers as he runs off.\",3\n18061,anetv_AZx_lm2XLHk,12015,A large track is shown with a man standing ready. The man,A large track is shown with a man standing ready.,The man,gold,hops in the sand as the woman continues to throw the object.,performs the same jump.,continues walking down the street holding a disc.,jumps over a bar and celebrates.,3\n18062,anetv_AZx_lm2XLHk,12016,The man jumps over a bar and celebrates. His jump,The man jumps over a bar and celebrates.,His jump,gold,falls as the crowd cheers him in cheers.,is shown again at high speed.,is shown again as well as him walking away.,releases the long pole and approaches by the pole.,2\n18063,lsmdc1024_Identity_Thief-82187,3259,\"A police car pulls up behind him. Now, officers\",A police car pulls up behind him.,\"Now, officers\",gold,steer the procession down a dark street.,emerge from the cruiser.,surround the records room where a co - officer lands on a covered raised platform.,dash into a police car.,1\n18064,lsmdc1024_Identity_Thief-82187,3260,\"Now, officers emerge from the cruiser. Someone\",\"Now, officers emerge from the cruiser.\",Someone,gold,beckons the other steward as someone walks into the room.,peeks out the window as one of the officers approaches.,stares dragging a photo to the window into a dark.,climbs out of the helipad and copies colleague.,1\n18065,anetv_jG1kgKJkf8c,16856,A street performer is sitting down on a crate and drumming on buckets and pans with drum sticks. He,A street performer is sitting down on a crate and drumming on buckets and pans with drum sticks.,He,gold,\"busts on of the buckets and in frustration, stabs it with the stick.\",is standing on the side of a beach playing step wearing stilts.,\"is doing skateboard on a short bar, followed by group of people playing cheers.\",goes into the middle of the sand and pauses and watch the horses away.,0\n18066,anetv_jG1kgKJkf8c,16857,\"He busts on of the buckets and in frustration, stabs it with the stick. He\",\"He busts on of the buckets and in frustration, stabs it with the stick.\",He,gold,continues to try to struggle to the ends.,replaces the bucket and starts over in his beat as a crowd gathers.,sprinkles salt onto the outside of his hand.,catches up to does it for her.,1\n18067,anetv_jG1kgKJkf8c,16858,He replaces the bucket and starts over in his beat as a crowd gathers. He,He replaces the bucket and starts over in his beat as a crowd gathers.,He,gold,rearranges the buckets once again and continues drumming.,puts his pipe in line and continues hammering down the walls.,runs past the bull and knocks over no more and throws to the ground.,spread outside as he is wrapped in a dressing environment.,0\n18068,anetv_nxyENrsY4mo,4134,\"Finally, the people then get on their horses and they all begin competing with one another playing a game of Polo. As they play, a woman\",\"Finally, the people then get on their horses and they all begin competing with one another playing a game of Polo.\",\"As they play, a woman\",gold,is shown on the side of the field taking pictures and a small logo for the photography shows on the end of the screen.,hugs the stuffed youth.,holds the diplomas up to one girl and begin running along with the group.,stands in front of them and children.,0\n18069,anetv_nxyENrsY4mo,4133,\"After, several people are pictured outside in a field grooming their horses. Finally, the people then get on their horses and they all\",\"After, several people are pictured outside in a field grooming their horses.\",\"Finally, the people then get on their horses and they all\",gold,run up the stairs with an lasso.,begin competing with one another playing a game of polo.,continue bouncing and flipping in a circle till the animals disperse.,turn in unison forward to one who falls to the ground unseen.,1\n18070,anetv_nxyENrsY4mo,4132,\"A small quote comes across the screen and the title pages follows. After, several people\",A small quote comes across the screen and the title pages follows.,\"After, several people\",gold,puts wallpaper on the wall and a woman with dumbbells behind it.,paddling down on the scuba gear.,are gathered outside a painted building in a crowded.,are pictured outside in a field grooming their horses.,3\n18071,lsmdc0011_Gandhi-51873,3824,It lands at someone's feet. He,It lands at someone's feet.,He,gold,\"smirks as he turns to a dull, slimy - like rubber.\",\"pauses, looking at the youth.\",sweeps the rubble into the left and catches someone.,holds the axe over his head.,1\n18072,lsmdc0011_Gandhi-51873,3829,\"Someone steps back on the pavement, addressing the first youth. And he\",\"Someone steps back on the pavement, addressing the first youth.\",And he,gold,continues to let into a group's story.,groans in from the descending truck.,stood and kicks someone away.,\"steps around him, someone trailing, as the first youth stares at them sullenly.\",3\n18073,lsmdc0011_Gandhi-51873,3818,\"They have come to a turning, nearer to town, the area poorer, run - down. They\",\"They have come to a turning, nearer to town, the area poorer, run - down.\",They,gold,react to the sight of someone - - fun.,are both skidding around the arizona brick car.,\"hang on, over discarded hedges in town.\",ogle someone's head and shoulders.,0\n18074,lsmdc0011_Gandhi-51873,3819,They react to the sight of someone - - fun. One of them,They react to the sight of someone - - fun.,One of them,gold,\"sees a huge, spherical strip in the cot of a naked marble floor.\",\"strikes a gun in someone's hand, knocking him to his feet.\",tosses aside his cigarette.,\"is on her bed, not looking at her else.\",2\n18075,lsmdc0011_Gandhi-51873,3827,\"A woman is leaning out of an upstairs window, looking down at the fracas disconcertedly. It is the first youth's mother and her presence\",\"A woman is leaning out of an upstairs window, looking down at the fracas disconcertedly.\",It is the first youth's mother and her presence,gold,reduces the pitch of his hostility considerably.,seems to be coming all over now.,\"partly shut, so she can see from the ship.\",lapse by the blonde slowly as she stares at him.,0\n18076,lsmdc0011_Gandhi-51873,3830,\"As they stride on, someone glancing back. Someone\",\"As they stride on, someone glancing back.\",Someone,gold,buys fancy hot pizza.,laughs as they turn the corner.,\"rears at his feet, knocking him at the wooden stairs.\",waits her for the glow across the street.,1\n18077,lsmdc0011_Gandhi-51873,3828,It is the first youth's mother and her presence reduces the pitch of his hostility considerably. Someone,It is the first youth's mother and her presence reduces the pitch of his hostility considerably.,Someone,gold,\"turns his ear off obliviously, then suddenly turns up the photo before putting it back on.\",\"steps back on the pavement, addressing the first youth.\",\"takes her plate off the wall and leaves her back to the cherry - drugstore, twisting it.\",brings out two cars through the mob between them.,1\n18078,lsmdc0011_Gandhi-51873,3822,He starts to move forward. Someone,He starts to move forward.,Someone,gold,\"stops at the perimeter of the cliff, looking down at the roof.\",\"hesitates, then follows nervously, more nervous for someone than himself.\",approaches as a partition smashes his back and disappears.,\"comes back out, surprised by someone.\",1\n18079,lsmdc0011_Gandhi-51873,3820,One of them tosses aside his cigarette. Someone,One of them tosses aside his cigarette.,Someone,gold,\"glances up, then notices a paper shot.\",joins the people after him.,restrains him and shakes his head.,flips someone foggy glasses across his nose.,2\n18080,lsmdc0011_Gandhi-51873,3831,Someone laughs as they turn the corner. People,Someone laughs as they turn the corner.,People,gold,come to the gumballs.,slide to the top of its train.,come around the corner into it.,\"are at a bar, watched by people in a dressing setting.\",2\n18081,lsmdc0011_Gandhi-51873,3825,\"He pauses, looking at the youth. He starts forward again, he\",\"He pauses, looking at the youth.\",\"He starts forward again, he\",gold,continues eyeing the water as his car comes to life.,\"goes, then looks up again and shakes his head in embarrassment.\",trails after his sound with control.,\"is almost on the youths - - clearly frightened, but.\",3\n18082,lsmdc0011_Gandhi-51873,3821,Someone restrains him and shakes his head. He,Someone restrains him and shakes his head.,He,gold,starts to move forward.,kisses the top of someone's head.,grabs someone's head and glowers.,squeezes his mitt shut.,0\n18083,lsmdc0011_Gandhi-51873,3823,One youth has flicked his cigarette - - hard. It,One youth has flicked his cigarette - - hard.,It,gold,lands at someone's feet.,walks over the make - up wall with both hands basket downs.,has a fire lighter.,slings to someone who misses the second.,0\n18084,anetv_6F9C3dIU4kU,9290,The child smiles to the camera while still moving back and fourth. He,The child smiles to the camera while still moving back and fourth.,He,gold,continues shaving around more buckets while looking back to the camera.,goes back and fourth on the back.,continues having the drink while still working out and looking down the road.,continues to move around in the swing.,3\n18085,anetv_6F9C3dIU4kU,9289,A young child is seen sitting in a swing moving back and fourth. The child,A young child is seen sitting in a swing moving back and fourth.,The child,gold,smiles to the camera while still moving back and fourth.,is helping the child swing the monkey hoop.,continues walking around the legs and smiling at the camera.,moves up and down the bars as well as walking and looking away from the camera.,0\n18086,anetv_6F9C3dIU4kU,11388,Someone pushes him to speed up the swinging. He,Someone pushes him to speed up the swinging.,He,gold,leans his head against the back door as it swerves past the building.,lifts someone over to it.,\"continues laughing, swinging back and forth.\",\", surfers float round the shore into the farmhouse where two men, one pulled out of the water.\",2\n18087,anetv_6F9C3dIU4kU,11387,A baby is laughing as he swings in a swing set. Someone,A baby is laughing as he swings in a swing set.,Someone,gold,closes the swing as someone swings on top.,pushes him to speed up the swinging.,ride on a swing as he is pushed into the water.,does the splits and flips on his back as he attacks.,1\n18088,anetv_r4iurK3kOe8,14577,\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog walked with his two front paws up. The girl\",\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog walked with his two front paws up.\",The girl,gold,threw the frisbee and the dog chase of it and placed it on the ground.,started smiling and started by as the other dog is behind it helping.,wiped the frisbee and went away.,started to move the blow dryer until the pedal then went back to the machine and put her dry hair to the side.,0\n18089,anetv_r4iurK3kOe8,14576,\"A girl and a dog is in the field. The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog\",A girl and a dog is in the field.,\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog\",gold,to the other side waved her gun.,walked with his two front paws up.,started to slide the green butt over her hair.,started n.,1\n18090,anetv_A0R3KFXD_BU,12233,The woman continues talking to the men while the camera pans around various groups of people nearby the bar. The woman,The woman continues talking to the men while the camera pans around various groups of people nearby the bar.,The woman,gold,uses a long dance to demonstrate several exercises of aerobic workout workout and holding up weights onto their legs.,sparks with her hands while also dealing cards for people at the bar.,takes a meal from a hole in the ice and pours ice into cups and obstacles.,continues to eat on the ice while demonstrating how to properly play.,1\n18091,anetv_A0R3KFXD_BU,12232,A group of men sit around a bar flirting with a bartender behind the bar. The woman,A group of men sit around a bar flirting with a bartender behind the bar.,The woman,gold,speaks to the camera beside the girl talking while holding up a drink.,pours ice into a cocktail glass and poured into the glass.,continues talking to the men while the camera pans around various groups of people nearby the bar.,sips some of the drink from a tap cup.,2\n18092,anetv_1_PiNdPt6RU,6358,\"Woman is eating bran flakes and putting some mascara, washing her teeth and cleaning her mouth with mouthwash. journalists\",\"Woman is eating bran flakes and putting some mascara, washing her teeth and cleaning her mouth with mouthwash.\",journalists,gold,are talking in the news.,are now in his hands.,is watching her make out texts showing as she talks.,are scattered in the corridors like a tango face in a studio.,0\n18093,anetv_Ch_qHjUtOpE,10190,Two women are standing on others' shoulders. They,Two women are standing on others' shoulders.,They,gold,are cracking brooms at the base of each other.,\"lift another woman into the air, balancing her between them before dropping her to be caught.\",pull on the rope and let it fall onto the ground.,use the objects to demonstrate use.,1\n18094,anetv_Ch_qHjUtOpE,10191,\"They lift another woman into the air, balancing her between them before dropping her to be caught. However, the girls below\",\"They lift another woman into the air, balancing her between them before dropping her to be caught.\",\"However, the girls below\",gold,falls and her lands perfectly with her arms.,jumps as her final opponent is clapping and the sixth female lands.,skates down numerous stands but then a replay of the routine is over.,are knocked to the ground.,3\n18095,anetv_QZCBVJHF81w,16704,A man is seen walking forward speaking to the camera and begins washing a car. The man,A man is seen walking forward speaking to the camera and begins washing a car.,The man,gold,uses water squeegees and uses above his head while washing and falling down on the hands.,dumps several parts of the bike and cleans off together.,speaks to the camera and demonstrates to give snowballs and irons the shirt together using a can.,scrubs all around the car while still speaking to the camera.,3\n18096,anetv_QZCBVJHF81w,16705,The man scrubs all around the car while still speaking to the camera. He,The man scrubs all around the car while still speaking to the camera.,He,gold,takes several wets and rides away.,continues to wash the car and stops for a moment to speak to the camera.,puts the camera under a scrubbing board in front of the sink and then pours additional sand into the sink.,ties his arms around and then begins running down the road with a different trimmer.,1\n18097,lsmdc1048_Gran_Torino-92301,2728,Someone mows his front lawn with a push mower. He,Someone mows his front lawn with a push mower.,He,gold,\"strokes the path, and stirs.\",looks up and sees two of his hmong neighbors bringing flowers to his house.,continues with the rake and leaves to the fence.,sharpens a blossoming tree with some white twigs.,1\n18098,lsmdc1048_Gran_Torino-92301,2730,\"He stops and looks back at them. Later, he\",He stops and looks back at them.,\"Later, he\",gold,opens a large outdoor grated topped stone panels topped by the fountain.,wears two ties tied underneath his shirt.,opens his door to more of the neighbors bearing food.,takes of his time awkwardly sipping from a dessert bottle.,2\n18099,lsmdc1048_Gran_Torino-92301,2729,\"As the neighbors leave the flowers, someone carries on mowing. He\",\"As the neighbors leave the flowers, someone carries on mowing.\",He,gold,carries the bags down the road.,stops and looks back at them.,trots through parked shots.,holds up the umbrella over the tree.,1\n18100,lsmdc1038_The_Great_Gatsby-87181,6492,He frowns at the sound of someone and Myrtle upstairs. Someone tentatively,He frowns at the sound of someone and Myrtle upstairs.,Someone tentatively,gold,unties her bra and leaves.,swings his arms as they do a flip at oncoming pushups.,walks to the door.,glances around them and spots someone.,2\n18101,lsmdc1038_The_Great_Gatsby-87181,6490,\"The living room is extremely gaudy, with red walls and furnishings and chintzy flower prints everywhere. Someone\",\"The living room is extremely gaudy, with red walls and furnishings and chintzy flower prints everywhere.\",Someone,gold,\"lies on a couch, flops onto a couch, as the music continues.\",\"sits on the edge of the couch, glancing at the ceiling.\",\"comes and drops the remote in the bucket, then stops with his feet bent on the bar, then moves down a ramp.\",shadows moat to a wall in their entryway.,1\n18102,lsmdc1038_The_Great_Gatsby-87181,6493,Someone tentatively walks to the door. He,Someone tentatively walks to the door.,He,gold,twitches an aging smile.,\"runs over to someone, and gently helps his daughter away.\",puts on his straw boater and opens the door.,has a shawl wrapped around her shoulders and hip.,2\n18103,lsmdc1038_The_Great_Gatsby-87181,6491,\"Someone sits on the edge of the couch, glancing at the ceiling. He\",\"Someone sits on the edge of the couch, glancing at the ceiling.\",He,gold,frowns at the sound of someone and myrtle upstairs.,\"glares down at them, then heads away from the study doorway.\",\"dances backward, then hurries up some stairs from the second floor, and a third class.\",\"remains facing her laotong, staring back at him.\",0\n18104,lsmdc3058_RUBY_SPARKS-28041,2450,\"The typewriter hammers out the words, in front of him, backlit by the sun. Someone\",\"The typewriter hammers out the words, in front of him, backlit by the sun.\",Someone,gold,slides the typewriter's carriage repeatedly.,talks and points to his brothers some mentally.,flashes a bright grin as it carries him to a sand town.,looks at a building then turns to face two wall guards.,0\n18105,lsmdc3058_RUBY_SPARKS-28041,2448,\"On the sofa, someone wakes with a start. He\",\"On the sofa, someone wakes with a start.\",He,gold,looks at the bubbles.,shoves the comforter aside.,\"strikes someone, who falls down going toward him.\",hands her a lotus candle.,1\n18106,lsmdc3058_RUBY_SPARKS-28041,2447,Someone closes his book and gets up. The young woman,Someone closes his book and gets up.,The young woman,gold,holds her hand to her other breast.,tears a page from his sketch book and hands it to him.,looks down at her watch as a waiter placed the food in a large bowl.,slides out of her sunglasses.,1\n18107,lsmdc3058_RUBY_SPARKS-28041,2453,Then notices Scotty sitting on the floor with a woman's sandal in his mouth. Someone,Then notices Scotty sitting on the floor with a woman's sandal in his mouth.,Someone,gold,takes the shoe and drops it on the desk.,talks quietly in his cell.,\"looks back at the mannequin, as the winds advances towards them.\",picks her up and leaves.,0\n18108,lsmdc3058_RUBY_SPARKS-28041,2451,\"Someone slides the typewriter's carriage repeatedly. In the daytime, he\",Someone slides the typewriter's carriage repeatedly.,\"In the daytime, he\",gold,closes the door behind him.,shines a flashlight on a board near the corridor shoulder.,\"sits with his feet up, reading over his pages.\",\"places a bag of cattle on a bench next to his father, who's eating a bottle of vodka.\",2\n18109,lsmdc3058_RUBY_SPARKS-28041,2449,His eyes open wide and his jaw hanging slack. The typewriter,His eyes open wide and his jaw hanging slack.,The typewriter,gold,looks away from the diner.,are strewn in on the balcony.,\"hammers out the words, in front of him, backlit by the sun.\",wearily sits beside a large truck and has a large box of budweiser in it.,2\n18110,lsmdc3058_RUBY_SPARKS-28041,2452,\"In the daytime, he sits with his feet up, reading over his pages. He\",\"In the daytime, he sits with his feet up, reading over his pages.\",He,gold,stares as he activates the objects with coins.,has to move his arm from the harmonica as he turns and takes his hand.,\"types out another line, slides the carriage.\",picks at a cordless and guides phone in his hands.,2\n18111,anetv_QvP8tPp8Wog,14497,\"He strums the guitar using his pick and moves his fingers along the chords. After he is done playing, he\",He strums the guitar using his pick and moves his fingers along the chords.,\"After he is done playing, he\",gold,looks up and smiles.,\"zooms in taking turning off all the applause and singing, running his tongue to his lips.\",\"gets up, puts the harmonica in the pocket and plays it for himself.\",finishes playing the congas and continues unable to smile.,0\n18112,anetv_QvP8tPp8Wog,14496,There's a young man in a red shirt playing an acoustic guitar. He,There's a young man in a red shirt playing an acoustic guitar.,He,gold,moves it in front of the song and pushes it on the side.,plays an electric guitar.,strums the guitar using his pick and moves his fingers along the chords.,plays his saxophone that is connected to the percussion teacher and takes his hand.,2\n18113,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,434,\"Someone watches, transfixed as someone dances. Legs crossed, she\",\"Someone watches, transfixed as someone dances.\",\"Legs crossed, she\",gold,watches someone's wedding ring on her finger.,\"arches her body back, her arms out stretched.\",sticks a tongue in her mouth.,lifts her glass a few inches and presses her lips to his.,1\n18114,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,438,She twists her body then arcs her leg in the air. She,She twists her body then arcs her leg in the air.,She,gold,drops limp as she approaches.,goes to the other and jumps across a tower.,looks slowly around at someone then sinks to her knees.,knocks it off onto the ground.,2\n18115,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,436,\"She straightens up then moves gracefully towards him, her arms waving above her head. Someone\",\"She straightens up then moves gracefully towards him, her arms waving above her head.\",Someone,gold,is at the door.,watches as she leans to her left then slowly raises her right leg into the air.,gazes after her with a curious glance.,drops a guard after her.,1\n18116,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,442,She plants a lingering kiss on his lips. They,She plants a lingering kiss on his lips.,They,gold,eyes slide down to someone's calendar.,\"part, their faces remaining close.\",brush deeper into his eyes.,has briefly taken to reveal her argument at the front of a number boasts well more discreetly.,1\n18117,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,435,\"Legs crossed, she arches her body back, her arms out stretched. She\",\"Legs crossed, she arches her body back, her arms out stretched.\",She,gold,takes her cigarette from her cigarette and starts it.,rests her elbows on her knees and looks at a ceiling.,\"straightens up then moves gracefully towards him, her arms waving above her head.\",heads later.,2\n18118,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,439,She looks slowly around at someone then sinks to her knees. Her back,She looks slowly around at someone then sinks to her knees.,Her back,gold,flips for a glamorous photograph lying in the sunshine.,spins and she lifts them.,falls to the floor.,arched until she lies on the floor.,3\n18119,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,437,Her legs and arms are almost parallel. She,Her legs and arms are almost parallel.,She,gold,bends at the dip as a mascot rotates between them.,\"starts flipping again, sending a few feet away as she tries to climb off.\",moves quickly through her rakes and lands on the ground by a gate.,twists her body then arcs her leg in the air.,3\n18120,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,431,Someone watches as she removes her shoes. Light reflecting off water,Someone watches as she removes her shoes.,Light reflecting off water,gold,rocks off the rocks left behind.,\"reaches its bottom, and pulls down a worn arched railing at the far end.\",casts over a dog and twirls itself.,revolves across the ceiling of the band stand.,3\n18121,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,430,\"Outside, she walks onto a band stand. Someone\",\"Outside, she walks onto a band stand.\",Someone,gold,slips the key into the lock and closes the locker's panel.,takes a sip of her drink and puts her back to him.,\"leaps then grabs her door, which spins open.\",watches as she removes her shoes.,3\n18122,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,429,\"She turns her head and blows out the smoke. Outside, she\",She turns her head and blows out the smoke.,\"Outside, she\",gold,walks onto a band stand.,uses someone's window to climb out of the car's way.,hangs up and looks up.,flies up through large leafy loom.,0\n18123,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,441,She crouches on the edge of the band stand beside him. She,She crouches on the edge of the band stand beside him.,She,gold,\"takes a breath, then kneels off a piece and sits.\",plants a lingering kiss on his lips.,\"smiles to her, then ambles past her and enters the lobby.\",covers her mouth and chews a cracker.,1\n18124,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,432,Light reflecting off water revolves across the ceiling of the band stand. She,Light reflecting off water revolves across the ceiling of the band stand.,She,gold,takes off her jacket.,moves through the smoke at the room and beyond.,\"shoulders someone straight, covering her ears.\",horse lies on a hillside nearby as people try to wade over the waterfall.,0\n18125,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,433,She takes off her jacket. Someone,She takes off her jacket.,Someone,gold,\"watches, transfixed as someone dances.\",leans on the top of the strolls.,returns to her chair for her.,\"looks at someone, bemused and listening.\",0\n18126,lsmdc3013_BURLESQUE-5248,16627,\"He clutches her shoulders, returning the embrace. He\",\"He clutches her shoulders, returning the embrace.\",He,gold,blows out and plants their lips right in their mouths.,\"moves in to kiss her again, then pulls back with a smile.\",\"slams the window shut, then smiles back at someone.\",crouches in front of someone's head and tights her.,1\n18127,lsmdc3013_BURLESQUE-5248,16626,Someone presses her hands to his toned chest. He,Someone presses her hands to his toned chest.,He,gold,\"gazes on directly from her face, then punches someone in the waist.\",\"clutches her shoulders, returning the embrace.\",\"straightens his shoes and twirls her around, then back to someone.\",stops at the foot of the tiled platform.,1\n18128,lsmdc3013_BURLESQUE-5248,16629,\"The title reads, Show Me. Now on a dark stage, a spotlight\",\"The title reads, Show Me.\",\"Now on a dark stage, a spotlight\",gold,shows off the score of someone.,\"shines on the silhouettes, and we see a bright pink light moving across the floor.\",\"shines down on someone, who wears a sparkling outfit and her platinum wig.\",plays on a long panel in a wardrobe.,2\n18129,lsmdc3013_BURLESQUE-5248,16628,\"Heading for the door, he pauses. He\",\"Heading for the door, he pauses.\",He,gold,walks back to her and hands her some sheet music.,takes a card from his jacket pocket.,\"pushes someone over, and grabs a plastic bag placed around his head.\",does a few cluttered malibu moves underneath down the outer walls of the research station to find herself staring at menu.,0\n18130,lsmdc3013_BURLESQUE-5248,16630,\"Now on a dark stage, a spotlight shines down on someone, who wears a sparkling outfit and her platinum wig. As the other dancers grind against the letters, someone\",\"Now on a dark stage, a spotlight shines down on someone, who wears a sparkling outfit and her platinum wig.\",\"As the other dancers grind against the letters, someone\",gold,sits atop the e at the center.,pushes a disk on the wall.,approaches a skeleton panel and raises her arms.,claps herself on both hands.,0\n18131,lsmdc3013_BURLESQUE-5248,16625,He leans in and they kiss. Someone,He leans in and they kiss.,Someone,gold,tears off his pistol as he strides near.,\"strides off, looks at a magazine on the screen and stares at him.\",turns her back and kisses fall.,presses her hands to his toned chest.,3\n18132,anetv_UkZiyYfO57g,4020,The camera follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera. Several more shots of her skiing,The camera follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera.,Several more shots of her skiing,gold,are shown followed by a woman speaking to the camera and talking with a dog camera.,are shown and ends with her waving to the camera and various pictures of skiers.,are shown as well as people walking in the ocean as well as speaking to the camera.,are shown followed by several clips of her jumping.,1\n18133,anetv_UkZiyYfO57g,4019,An intro leads into a woman speaking to the camera while several skiiers ride around her. The camera,An intro leads into a woman speaking to the camera while several skiiers ride around her.,The camera,gold,pans around and shows several people holding up their cigarettes.,pans up to the audience explaining process.,follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera.,pans out to the dog and shows a dog performing tricks and tricks with a dog other to her.,2\n18134,anetv_KpmdpL5btYo,8450,A baby is shown floating in water. He,A baby is shown floating in water.,He,gold,kisses a cup and begins to ski through the water.,poses up before a set of water using a sail.,\"sinks below the surface, looking around.\",caresses the river's face and bring out something in the body.,2\n18135,anetv_KpmdpL5btYo,1214,A woman is shown leading him under the water and he smiles and swims. They,A woman is shown leading him under the water and he smiles and swims.,They,gold,are seen on a kayak and pulling a rope as well as jumping onto a white rope.,\"stand around, swirling and bounce.\",see his blades in the water and the bottle on his hands.,lift up out of the water to get air.,3\n18136,anetv_KpmdpL5btYo,1215,\"They lift up out of the water to get air. Mothers grab their babies to come up for air, and a baby\",They lift up out of the water to get air.,\"Mothers grab their babies to come up for air, and a baby\",gold,appears off of a rescue vehicle.,breathes as he looks at the camera.,throws one of them while raising them up in the air.,gets in her car.,1\n18137,anetv_KpmdpL5btYo,8451,\"He sinks below the surface, looking around. A woman\",\"He sinks below the surface, looking around.\",A woman,gold,swings the wrecked glass paned at a portrait of a woman in a room dress.,watches him as he kayaks closer.,\"appears, holding him as he swims.\",stands next to him.,2\n18138,anetv_KpmdpL5btYo,1213,A baby boy's head floats up from water. He,A baby boy's head floats up from water.,He,gold,plays with a heart of television screen.,\"eyes someone briefly, then turns to peer down at her.\",reaches for the bathroom door.,\"goes back under, looking around in amazement.\",3\n18139,anetv_UZPSbNS1LU0,19133,They are moving slowly and there are a lot of them as some of them look into the camera as they pass. The procession,They are moving slowly and there are a lot of them as some of them look into the camera as they pass.,The procession,gold,continues as spectators look onward.,continues until they drop their backs to the ground as they finish.,drives through the large city.,continues to dance and jumps where the boat is stopped from the castle.,0\n18140,anetv_UZPSbNS1LU0,19134,The video cuts to a side angle of the rollerbladers passing by. Another side shot is shown and a cop car and several escort vehicles,The video cuts to a side angle of the rollerbladers passing by.,Another side shot is shown and a cop car and several escort vehicles,gold,fly around on the dusty path.,come into view as the video fades to black.,beginning to fix and tug on a lacrosse field on.,continues to ride across the dirt path and to the end of the drive along a logo on the street to the tallest hills.,1\n18141,anetv_UZPSbNS1LU0,19132,A group of people are shown rollerblading in Paris. They are moving slowly and there,A group of people are shown rollerblading in Paris.,They are moving slowly and there,gold,together at the bottom of the slope.,down the street to help a steep man push in around.,are a lot of them as some of them look into the camera as they pass.,'s a group of people gathered in the front places.,2\n18142,anetv_lt--z8nFIT0,1821,A large group of people are seen playing hockey on the ice and a man speaking to the camera. More shots,A large group of people are seen playing hockey on the ice and a man speaking to the camera.,More shots,gold,are shown of more players playing soccer with one another.,are shown of the players skating on the ice and a coach speaking to the camera.,are shown of people walking around and walking around and speaking to one another.,are shown of people playing beer pong.,1\n18143,anetv_lt--z8nFIT0,2114,A large group of people are seen skating around the ice playing hockey. Several people,A large group of people are seen skating around the ice playing hockey.,Several people,gold,play in their field hugging and text on the sides.,speak to the camera as the men continue to play.,walk to the goal and enjoy one game.,are sitting in the side with others watching on the sides.,1\n18144,anetv_lt--z8nFIT0,1822,More shots are shown of the players skating on the ice and a coach speaking to the camera. More players,More shots are shown of the players skating on the ice and a coach speaking to the camera.,More players,gold,are shown speaking to the camera while others push a puck along the ice and celebrate.,play crazy waving at the camera.,are seen hitting the ball around while others play along the side.,line up to begin ice where they hit the birdie all over the net.,0\n18145,anetv_lt--z8nFIT0,2115,Several people speak to the camera as the men continue to play. The men,Several people speak to the camera as the men continue to play.,The men,gold,push the puck all along the ice while still speaking to the camera.,push at the ceiling while doing the measurements.,move and play the drums with their hands.,move continuously into the frame and continue dancing with one another.,0\n18146,lsmdc3044_KNOCKED_UP-21017,11244,Someone stares after him with a wounded gaze. Then he,Someone stares after him with a wounded gaze.,Then he,gold,holds out his bag.,jerks his head sideways upward.,pauses as someone shifts his gaze.,walks out to the backyard.,3\n18147,anetv_rnhtmtW_a8o,4114,Two teams are playing volleyball in a indoor court. Two teams wearing dark uniforms,Two teams are playing volleyball in a indoor court.,Two teams wearing dark uniforms,gold,play tug of war on the sea of white.,are in different sides throwing the ball in a field.,\"are doing a volleyball competition, then appears a team with yellow t - shirts.\",are playing a beer pong match inside a cafe squash.,2\n18148,anetv_rnhtmtW_a8o,4305,A couple of teams are playing inside a gym. They,A couple of teams are playing inside a gym.,They,gold,do several stunts on their skis in the snow.,are serving a volleyball back and forth over a net.,play volleyball against the wall.,are engaged in a game of games.,1\n18149,anetv_rnhtmtW_a8o,4115,\"Then, a boy with a red t - shirt serves the ball and the teams start to hit and running to pass the ball, then another team wearing green shorts enters the court. After, team wearing blue uniform\",\"Then, a boy with a red t - shirt serves the ball and the teams start to hit and running to pass the ball, then another team wearing green shorts enters the court.\",\"After, team wearing blue uniform\",gold,scores and after explaining an interview about the players.,wrestle him for afterwards the players hit the ball.,sticks out the fishing stick and hopped and went to the border of it.,competes with teams wearing white and red uniforms.,3\n18150,anetv_rnhtmtW_a8o,4306,They are serving a volleyball back and forth over a net. They,They are serving a volleyball back and forth over a net.,They,gold,\"continue playing, trying to keep the ball from their opponents.\",are hitting the ball on one side of the tennis court.,get ready to get one ball into a net.,are taking turns hitting the puck back and forth.,0\n18151,anetv_dpS_S4Zi2Po,12151,A young girl is seen holding up makeup and smiling to the camera. The girl,A young girl is seen holding up makeup and smiling to the camera.,The girl,gold,locks the girl's hair and pins it against her neck while.,looks into the camera while still playing with makeup.,begins seen cutting her hair and looking to the camera.,continues curling her hair while others watch on the side.,1\n18152,anetv_dpS_S4Zi2Po,7366,The camera man pans towards the young Asian girl for a closeup and the Asian girl smiles and falls back away from the camera. The young Asian girl,The camera man pans towards the young Asian girl for a closeup and the Asian girl smiles and falls back away from the camera.,The young Asian girl,gold,talks before camera standing in the pool.,moves into the camera for a closeup and then continues applying the makeup.,show the asian girl and throws someone into the camera.,gives a serious clip and takes a drink for the woman before dancing side to side.,1\n18153,anetv_dpS_S4Zi2Po,7365,A young Asian girl smiles at the camera and applies eye shadow while holding a makeup kit. the camera man pans towards the young Asian girl for a closeup and the Asian girl,A young Asian girl smiles at the camera and applies eye shadow while holding a makeup kit.,the camera man pans towards the young Asian girl for a closeup and the Asian girl,gold,is also brushing the violin around with a towel in front of her.,with red hair runs into the camera and begins displays her hair for her team as a recap and after hula.,smiles and falls back away from the camera.,has a slip of paper out onto her cheeks.,2\n18154,anetv_dpS_S4Zi2Po,12152,The girl looks into the camera while still playing with makeup. She,The girl looks into the camera while still playing with makeup.,She,gold,continues speaking to the camera while showing her video to the camera.,\"then briefly brushes her teeth, then returns and back to brushing her hair and legs.\",continues playing with the makeup over and over again.,continues to speak to the camera while throwing the ball back and forth and smiling to the camera.,2\n18155,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13325,Someone pours the contents of the vial into the basin. Someone,Someone pours the contents of the vial into the basin.,Someone,gold,\"heads off, but his gaze remains steady.\",\"has poured into the cakes, green wine.\",flicks his hand in the air and the lights dim.,pulls her face out to the sink.,2\n18156,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13323,\"He goes to a pensive, a hovering shallow metal basin. He\",\"He goes to a pensive, a hovering shallow metal basin.\",He,gold,glances at the elderly professor who nods.,\"drops into someone, spins it, puts it down, is now on the way, waiting for someone at the door.\",has sunk back within the top of the urn.,spacers the upper level support while filling the toilet.,0\n18157,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13326,Someone flicks his hand in the air and the lights dim. Someone,Someone flicks his hand in the air and the lights dim.,Someone,gold,sees a street with a large building straight ahead.,\"speeds across the deck, lights illuminate the scene, with their lights and light.\",\"leans against the wall, hitting the slight button on his head.\",works through the chaos.,0\n18158,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13322,Someone gingerly takes the vial. He,Someone gingerly takes the vial.,He,gold,finds a key hanging from its trunk.,\"opens it, revealing an easy vest.\",\"goes to a pensive, a hovering shallow metal basin.\",\"has a blonde, four - inch blonde, shiny sideburns and gray hair.\",2\n18159,lsmdc0032_The_Princess_Bride-65980,15308,\"She is scared, sure, petrified, who would n't be, but she makes no reply - - - - and now a shrieking eel has zeroed in on her - - - - and now she sees it, a short distance away, circling, starting to close - - - - and someone is frozen, trying not to make a movement of any kind - - - - and. The Kid looks the same, pale and weak, but maybe he\",\"She is scared, sure, petrified, who would n't be, but she makes no reply - - - - and now a shrieking eel has zeroed in on her - - - - and now she sees it, a short distance away, circling, starting to close - - - - and someone is frozen, trying not to make a movement of any kind - - - - and.\",\"The Kid looks the same, pale and weak, but maybe he\",gold,is - - only does not see the improvement but does not allow her to say no.,\"won't let do, that she gets the jamming out again, but it's gone.\",can't put it in any different success of it.,is gripping the sheets a little too tightly with his hands.,3\n18160,lsmdc0032_The_Princess_Bride-65980,15309,\"The Kid looks the same, pale and weak, but maybe he is gripping the sheets a little too tightly with his hands. His Grandfather\",\"The Kid looks the same, pale and weak, but maybe he is gripping the sheets a little too tightly with his hands.\",His Grandfather,gold,\"says nothing, just waits.\",\"is standing on the sofa, clutching his glass of water.\",\"is shown in the streets on top of a tree, dragging along.\",moving all around one of the audience is another artist doing three hand motions.,0\n18161,lsmdc0032_The_Princess_Bride-65980,15313,\"The boat at dawn, being followed closely by the black sailboat, which we can see for the first time is being sailed by someone, and his boat almost seems to be flying. They\",\"The boat at dawn, being followed closely by the black sailboat, which we can see for the first time is being sailed by someone, and his boat almost seems to be flying.\",They,gold,\"sit at the edge of the lake, interspersed with rocks.\",\"rise straight up, sheer from the water, impossibly high.\",\"ride their hands through town at a standstill starting hill, bobbing back in the current.\",run in we come towards a pile of flowers.,1\n18162,lsmdc0032_The_Princess_Bride-65980,15312,\"And we are back where we were at the last moment. A giant arm,\",And we are back where we were at the last moment.,\"A giant arm,\",gold,\"toppling, is very twisted.\",\"pounding the eel unconscious in one move, then easily lifting someone.\",\"isabel, is blurred across.\",\"blind - shaped, heads toward someone.\",1\n18163,lsmdc0032_The_Princess_Bride-65980,15310,\"His Grandfather says nothing, just waits. We\",\"His Grandfather says nothing, just waits.\",We,gold,\"is n't, but it does n't start.\",are back in the boat.,are by the desk in a small basket.,and someone continue to ear the little voices as the sergeant turns.,1\n18164,anetv_xATeffo_kP4,2863,A close up of a fooseball table is shown as well as people playing on the table. The game,A close up of a fooseball table is shown as well as people playing on the table.,The game,gold,continues on with the man playing his music and looking around.,continues on as the people use the bars to move the game as the ball moves back and fourth.,continues all around the people as they continue to play and leads into another woman helping.,continues with others hitting the ball and hitting it along the ground and finally pushing the puck.,1\n18165,anetv_ral5Oaib_vk,2138,He begins playing the harmonica. The man,He begins playing the harmonica.,The man,gold,stops playing and dances in place.,plays the instrument back and fourth.,finishes and changes his playing.,finishes his song really well and talks wildly.,0\n18166,anetv_ral5Oaib_vk,2137,A man in plaid is standing at a microphone acknowledging the crowd. He,A man in plaid is standing at a microphone acknowledging the crowd.,He,gold,lays him back on the ground as he plays again.,begins playing the harmonica.,\"steps on a karate exercise, hung with hammers.\",spins and racked his hands.,1\n18167,anetv_ral5Oaib_vk,2139,The man stops playing and dances in place. The man,The man stops playing and dances in place.,The man,gold,\"finishes, stops playing the salesman, and walks into the room.\",comments to play drums near the camera.,finishes his instrument and holds on while he speaks to him.,continues to play his harmonica.,3\n18168,anetv_ral5Oaib_vk,2136,Opening credits show the upcoming activities. A man in plaid,Opening credits show the upcoming activities.,A man in plaid,gold,is standing at a microphone acknowledging the crowd.,rolls down a lane and throws a dart.,hat hugs them.,dumps a cup of coffee in front of two men and makes a thumbs gesture.,0\n18169,anetv_8xYzQMbI5fM,5863,\"He then wipes down the area, measures out more area, and then rolling the paper down over a tool. Finally he\",\"He then wipes down the area, measures out more area, and then rolling the paper down over a tool.\",Finally he,gold,takes a sharp object and runs it all along the paper.,sprays the top of the board again and sinks inside.,uses sharpening glue and flushes the wall surface and polishing it with a welding tool.,finishes the paper and pauses to speak clumsily.,0\n18170,anetv_8xYzQMbI5fM,5861,A person is seen making marks on a paper using a tool as well as a pencil. He then screws the tools in place of the holes and the camera,A person is seen making marks on a paper using a tool as well as a pencil.,He then screws the tools in place of the holes and the camera,gold,captures it from around the end.,zooms back on the cards.,pans down the finished area.,is still traced.,2\n18171,anetv_8xYzQMbI5fM,5862,He then screws the tools in place of the holes and the camera pans down the finished area. He then,He then screws the tools in place of the holes and the camera pans down the finished area.,He then,gold,\"wipes down the area, measures out more area, and then rolling the paper down over a tool.\",wipes his face and several services are shown themselves in the car.,solves the wall paper and scrawled the names on it on the paper.,\"shows to a different soaping up, and uses the sandwich parchment to arm all the log and places it on a rubber floor.\",0\n18172,anetv_1hB5jVAhSDE,8848,A woman is seen sitting before the drums and hitting them as hard as she can. She,A woman is seen sitting before the drums and hitting them as hard as she can.,She,gold,takes it down with the baton and continues speaking to the camera.,continues hitting the drums and then stops in the end to breathe heavy.,continues playing and ends into her playing the flute and smiling to the camera.,continues speaking and speaking while holding up the guitar.,1\n18173,anetv_1hB5jVAhSDE,2718,The woman mimes playing the drums with her palms in the air. The woman,The woman mimes playing the drums with her palms in the air.,The woman,gold,waves her hands into a black mug.,stops playing and breathes in an exaggerated manner.,\"pauses to look up and speaks, then walks herself.\",places a big umbrella over the sifter and continuing to press it to the woman then up beside something.,1\n18174,anetv_1hB5jVAhSDE,2717,A woman plays drums with her palms while seated. The woman,A woman plays drums with her palms while seated.,The woman,gold,mimes playing the drums with her palms in the air.,plays the drums and sings on the the piano.,speaks to the camera and moves across the stage.,dances back and forth between the music.,0\n18175,anetv_DDZFQKi1v2U,10242,The girl is then shown piercing the nipple of the girl laying down. She,The girl is then shown piercing the nipple of the girl laying down.,She,gold,finishes the piercing and ends by smiling to the camera.,takes the piece out again and wipes it off her mouth.,takes out the toothbrush and wipes it off with a towel.,finishes her braid to the camera.,0\n18176,anetv_DDZFQKi1v2U,10241,A woman is seen laying on the couch with another girl sitting above her. The girl,A woman is seen laying on the couch with another girl sitting above her.,The girl,gold,throws a razor and cuts her leg in the end.,dips a towel over the green paper and begins drying her hair.,is then shown piercing the nipple of the girl laying down.,puts makeup onto more items in set on the end.,2\n18177,lsmdc3013_BURLESQUE-4762,11997,Now someone reaches out of the shower and finds bras and stockings hanging on a hook. He,Now someone reaches out of the shower and finds bras and stockings hanging on a hook.,He,gold,wipes as blood from his mouth and gets up on his knees as he flees.,\"stabs someone with a heavy needle, which slowly engulf someone's scarred face.\",\"stretches one leg along a far side, only to cut the rear backside.\",turns to a towel rack where more undergarments hang.,3\n18178,lsmdc3013_BURLESQUE-4762,11994,\"She playfully taps someone's nose with the bristles. Holding someone 'gaze, someone\",She playfully taps someone's nose with the bristles.,\"Holding someone 'gaze, someone\",gold,picks the slytherin case up to her feet.,steps out of the kitchen.,offers a broad shrug.,gives a mild shrug.,3\n18179,lsmdc3013_BURLESQUE-4762,11996,\"As she stares off, someone skillfully finishes painting her lips. Someone\",\"As she stares off, someone skillfully finishes painting her lips.\",Someone,gold,turns to the mirror and sees her red lips and painted eyelids.,looks down and stares down at the bed someone.,\"looks at sister, his face obscured with sweat.\",\"tilts her head, idly tilting her thumb, then turns her head and sadly faces the restaurant.\",0\n18180,lsmdc3013_BURLESQUE-4762,12002,Someone watches as someone grabs his phone off the bed. He,Someone watches as someone grabs his phone off the bed.,He,gold,swings the bedroom door shut.,sees someone's shoes.,takes someone's hand and starts pulling herself out of her grip.,places it on his computer.,0\n18181,lsmdc3013_BURLESQUE-4762,12000,Someone sleeps in the living room. He,Someone sleeps in the living room.,He,gold,carefully wipes their bedroom.,sits down wearing a helmet then pats his own head.,sits with another girl.,picks up a newspaper.,3\n18182,lsmdc3013_BURLESQUE-4762,11993,Someone uses a large soft brush to apply rouge to someone's cheeks. She,Someone uses a large soft brush to apply rouge to someone's cheeks.,She,gold,aside then kisses his brow and smiles.,tenderly faces the handsome man.,playfully taps someone's nose with the bristles.,grasps the back of her hand and places it in someone's hand.,2\n18183,lsmdc3013_BURLESQUE-4762,11998,He turns to a towel rack where more undergarments hang. He,He turns to a towel rack where more undergarments hang.,He,gold,shakes out the broken bottle.,looks at the pump's action then drops it on the floor.,spots his towel on the floor.,steps down to a chair as he works against a wall.,2\n18184,lsmdc3013_BURLESQUE-4762,12001,He picks up a newspaper. Someone,He picks up a newspaper.,Someone,gold,watches as someone grabs his phone off the bed.,puts down the vacuum.,grabs pictures and well.,dabs the pocket with a cloth.,0\n18185,anetv_G_kJ-Af89ew,14437,\"The man in gray sweater lean on the table and look at the ball, he then hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair. The man in gray sweater\",\"The man in gray sweater lean on the table and look at the ball, he then hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair.\",The man in gray sweater,gold,looks at the blue ball and takes a few longer knees before coming out to chop the wall up of 15 lands.,\"continue to play the billiard, making the balls shoot in the holes.\",started running and landed on the other side of the gym.,begins to run another way all over the field.,1\n18186,anetv_G_kJ-Af89ew,14436,\"A man in plaid shirt hit the ball with stick, the ball scattered on the table. The man in gray sweater lean on the table and look at the ball, he then\",\"A man in plaid shirt hit the ball with stick, the ball scattered on the table.\",\"The man in gray sweater lean on the table and look at the ball, he then\",gold,landed on the ground.,follows the man on the other leg and then hands to the camera on the ball post.,\"hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair.\",demonstrates how to hit the ball all over the field.,2\n18187,anetv_RsHk6sq_9IY,17078,\"The men run after the ball, attempting to capture it from the opposing team. A yellow circle\",\"The men run after the ball, attempting to capture it from the opposing team.\",A yellow circle,gold,is shown around a particular player.,runs to get the ball off the team.,is being dealt by a man.,has made a black and white film.,0\n18188,anetv_RsHk6sq_9IY,17076,An advertising screen appears momentarily as the video begins. A group of men,An advertising screen appears momentarily as the video begins.,A group of men,gold,raft down a snowy river in a choppy river going down a river.,run fast from different environments on a dirt road.,appear near a steel bar drinking drinks from a hot kitchen inside the center of the arena.,are shown kicking a ball back and forth in a stadium.,3\n18189,anetv_RsHk6sq_9IY,17077,A group of men are shown kicking a ball back and forth in a stadium. The men,A group of men are shown kicking a ball back and forth in a stadium.,The men,gold,begin throwing the balls through the net stopping to catch the ball and scores.,\"run after the ball, attempting to capture it from the opposing team.\",are then shown playing a game of sport another trying to hit the ball.,engage in multiple beats trying to hit the ball back and forth against each other.,1\n18190,lsmdc3069_THE_BOUNTY_HUNTER-4617,14723,\"A billboard, featuring someone's mother, reads, Kitty Borgata. Now, we\",\"A billboard, featuring someone's mother, reads, Kitty Borgata.\",\"Now, we\",gold,glimpse lavish buildings housing atlantic city's hotel casinos.,pan across to a living room filled with soft fruit.,see someone assembling a small cellphone to the room.,film an elderly couple playing.,0\n18191,lsmdc3069_THE_BOUNTY_HUNTER-4617,14720,\"Now, someone leaves someone's building. As he gets into his car, someone\",\"Now, someone leaves someone's building.\",\"As he gets into his car, someone\",gold,steps through an ornate tunnel.,creeps outside and scurries over to a red mini cooper.,wears jeans and a t - shirt.,meets him tresses sidelong gaze.,1\n18192,lsmdc3069_THE_BOUNTY_HUNTER-4617,14724,\"Now, we glimpse lavish buildings housing Atlantic City's hotel casinos. In a lounge, Kitty\",\"Now, we glimpse lavish buildings housing Atlantic City's hotel casinos.\",\"In a lounge, Kitty\",gold,stands in the spotlight on a stage.,fly from the overhead ceiling and share a smile.,sits with her face down and peers earnestly at someone.,oversees the music with television music.,0\n18193,lsmdc3069_THE_BOUNTY_HUNTER-4617,14722,\"Later, the baby blue ragtop crosses the bridge. Later still, it\",\"Later, the baby blue ragtop crosses the bridge.\",\"Later still, it\",gold,\"'s a large mural of four tall suited women, tall, with thick hair, and long muscles heave.\",\"drives beneath an overpass sign reading, welcome to atlantic city.\",slices deeper under a deck.,leads four different boats into length of a large river on the river below them as a news van approaches.,1\n18194,lsmdc3069_THE_BOUNTY_HUNTER-4617,14721,\"As he gets into his car, someone creeps outside and scurries over to a red mini Cooper. Now, a bird's - eye view\",\"As he gets into his car, someone creeps outside and scurries over to a red mini Cooper.\",\"Now, a bird's - eye view\",gold,crosses a narrow road where a ruffled - haired man watches nearby.,shows someone's car exiting a tunnel and approaching a toll plaza.,sweeps up and sees a furry biker holding a key on the phone.,shows him blowing smoking on a steam pipe.,1\n18195,lsmdc1004_Juno-6583,5117,Someone hands pipe smoking someone an ad. Someone,Someone hands pipe smoking someone an ad.,Someone,gold,\"is lying on his bed, looking at the photo of someone in his yearbook.\",deals them to each other.,waves him from behind.,takes a page and slides on the trail.,0\n18196,lsmdc1004_Juno-6583,5118,\"Someone is lying on his bed, looking at the photo of someone in his yearbook. His other hand\",\"Someone is lying on his bed, looking at the photo of someone in his yearbook.\",His other hand,gold,\"is draped over a arm, walking over his ankle and who is stopped by the foot of the bed.\",\"leans against the toilet, with tears running down someone's face.\",\"is looking to the shaver, groping for the shades from the actor.\",is clasped around a piece of cloth.,3\n18197,lsmdc0014_Ist_das_Leben_nicht_schoen-54558,2279,\"He looks around for his hat, which is on his head. Someone\",\"He looks around for his hat, which is on his head.\",Someone,gold,takes the hat from someone's head and hands it to him.,\"holds back a shade of someone, staring at the building, then shifts his attention to another window.\",is now disguised in a kind of fire.,stands in someone's bedroom with his limbs wrapped around him and someone.,0\n18198,anetv_O8vPTn6Ho7w,12293,People are paddling in kayaks in a body of water. A man,People are paddling in kayaks in a body of water.,A man,gold,is holding a camera.,plays a large boat on a lakeside.,stands in the water watching a person skiing and running at the water.,takes off in a green kayak.,3\n18199,anetv_O8vPTn6Ho7w,12294,A man takes off in a green kayak. A man in a red jacket,A man takes off in a green kayak.,A man in a red jacket,gold,falls onto the red surfboard.,is on the border of a small water pool.,is talking to the camera.,falls onto the ice.,2\n18200,anetv_7ftCKS5SCCk,9164,Girl is on skateboard in the living room and to the room again. little girl,Girl is on skateboard in the living room and to the room again.,little girl,gold,is in library and grab something and then starts dancing in the room.,is sitting in a coffee shop watching the kid.,is sitting in a room doing red laundry onto the floor.,is standing in the yard doing karate moves in someone with adult children.,0\n18201,lsmdc3068_THE_BIG_YEAR-3246,2647,\"Now, he and his wife and their party guests raise glasses. A man with boyish features\",\"Now, he and his wife and their party guests raise glasses.\",A man with boyish features,gold,holds up a hand.,feeds his children.,leads someone through several different museum's weightlifting locations.,set the big little wad onto the table with a large stack of newspapers.,0\n18202,anetv_3zPoB-_JxEc,9968,The man lights the cigarette. The man,The man lights the cigarette.,The man,gold,focuses on one section of his guitar at another.,blows the smoke off of the hookah.,removes the cigarette from his mouth and holds it in his hand.,stops to sign rubbing smoke.,2\n18203,anetv_3zPoB-_JxEc,9967,A man talks on a telephone. The man,A man talks on a telephone.,The man,gold,puts a cigarette in his mouth.,plays a white guitar.,put a black and gold helmet.,plays a harmonica and describes instruments.,0\n18204,anetv_5_M10vevgJg,15384,A man is waxing the bottom of a ski. A woman in a pink jacket,A man is waxing the bottom of a ski.,A woman in a pink jacket,gold,is flying in the same direction.,is skiing down a hill.,is standing on the beach.,moves the camera lens toward the lens.,1\n18205,anetv_5_M10vevgJg,9240,A woman is skiing and a man from behind skis quickly and ends up in front of her. An older man is now in a a store and he,A woman is skiing and a man from behind skis quickly and ends up in front of her.,An older man is now in a a store and he,gold,'s talking to a girl and working on some skis.,starts running down the court with the stilts.,pushes her the cement on the front windows and describes how blow illuminate the wall.,is dressed up in a boat.,0\n18206,anetv_5_M10vevgJg,15383,People are skiing down a hill of snow. A man,People are skiing down a hill of snow.,A man,gold,is snowboarding down the slope.,is waxing the bottom of a ski.,snowboard down the hill.,waves to start snow.,1\n18207,anetv_5_M10vevgJg,9243,\"The focus goes back to the older man who is back in the shop, holding the ski and he's working on it while talking about it which include an object that looks like a hot iron, and what looks like some sanding. The last clip goes back to the woman and now she\",\"The focus goes back to the older man who is back in the shop, holding the ski and he's working on it while talking about it which include an object that looks like a hot iron, and what looks like some sanding.\",The last clip goes back to the woman and now she,gold,'s skiing with her poles again and with her legs remaining together and not moving separately.,'s shown doing a perfect stance for the ground times.,\"'s caught in another pause, everything moves and announce to the end for the video.\",'s old and in stands as a person is slowly laying down on the ground through trees.,0\n18208,anetv_5_M10vevgJg,9241,An older man is now in a a store and he's talking to a girl and working on some skis. The older man is holding skis talking and the words on the screen say that his name is alan cranston and he,An older man is now in a a store and he's talking to a girl and working on some skis.,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he,gold,takes a lot of rigorous mouthwash in his hands and take a few steps.,'s the manager of fresh air experience.,'s getting a tattoo.,hangs his hand to eventually repair the snow in the fallen cleaned car.,1\n18209,anetv_5_M10vevgJg,9242,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he's the manager of fresh air experience. A quick shot of the skiing woman from earlier appears and she is skiing again but this time it,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he's the manager of fresh air experience.,A quick shot of the skiing woman from earlier appears and she is skiing again but this time it,gold,is an finished dirt with a lot of speed.,has set off named a black cooler.,'s without poles in her arms.,begins through a different hill walking over the hill of front and also the climber.,2\n18210,anetv_ygkcjkVqxAA,4556,A woman is seen playing Frisbee out in a back yard with a dog and performs several tricks with the dog. She continuously,A woman is seen playing Frisbee out in a back yard with a dog and performs several tricks with the dog.,She continuously,gold,plays with several toys with the dog when another person watches on the side.,continues from various angles as she plays with the dog.,bumps the dog while others watch on the side.,holds up the dog and screams to the camera while her dog walks all around.,0\n18211,anetv_2SMmL6kIx-w,16998,Several performers walk out of a box and it ends up being one male and one female. The lady then,Several performers walk out of a box and it ends up being one male and one female.,The lady then,gold,\"stands up and backs away, their hearts on the ladies hands.\",begins moving in strange ways and continuing telling a story in ballerina form.,goes back to the camel and stands with her and giving a thumbs up.,drops the harmonica to the other and begins making text on the laptop.,1\n18212,anetv_2SMmL6kIx-w,16999,\"The lady then begins moving in strange ways and continuing telling a story in ballerina form. After a few minutes, the male joins them and they\",The lady then begins moving in strange ways and continuing telling a story in ballerina form.,\"After a few minutes, the male joins them and they\",gold,pose in unison and give each other a high five as the girl steps away.,continue dancing together with strong legs and firm arms.,stand up switching out and show how to hop and show around her on ends.,join the instructor in the background.,1\n18213,anetv_6YmZNDXap64,3571,A man is seen spinning a rubix cube into his hands followed by more people attempting to solve the puzzle and speak to the camera. More people,A man is seen spinning a rubix cube into his hands followed by more people attempting to solve the puzzle and speak to the camera.,More people,gold,are shown attempting to solve the puzzle as well as speaking to the camera and smiling.,are shown in various areas on clothes and another man putting cubes into a bowl.,listen to him and speak to the camera while a man lifts a lemon into his pocket.,are seen flipping around on the bench in various locations as well as laughing behind the camera and the camera panning around them.,0\n18214,anetv_PWriIL3pTWY,6369,A man in a black suit comes out from the bushes. He,A man in a black suit comes out from the bushes.,He,gold,hears him getting out.,fights the man in the red suit.,grabs a bag of bottles.,grabs his hat and throws them on a nearby counter.,1\n18215,anetv_PWriIL3pTWY,6366,The man in the pink suit celebrates. The man not wearing a shirt,The man in the pink suit celebrates.,The man not wearing a shirt,gold,chases the man in the pink suit.,falls over and falls to the ground.,\"slip and collapses, bends back and swings his arms down.\",yell off the screen.,0\n18216,anetv_PWriIL3pTWY,6370,He fights the man in the red suit. The man with out a shirt,He fights the man in the red suit.,The man with out a shirt,gold,is flying the kite.,is pouring it over the sink.,throws a barrel on the man in the black suit.,misses the rest of his hair and head his face.,2\n18217,anetv_PWriIL3pTWY,6365,A man in a pink suit talks to a man in a red suit and man not wearing a shirt. They,A man in a pink suit talks to a man in a red suit and man not wearing a shirt.,They,gold,play rock paper scissors.,pass a few boys in circles while of him off onto the board and lands on his shirt.,gives a dealer to a female and they hop across the rope and rush into the streets.,dimly ride around the building as the men transfers it.,0\n18218,anetv_PWriIL3pTWY,6367,The man in the pink suit falls down. The man not wearing a shirt,The man in the pink suit falls down.,The man not wearing a shirt,gold,is talking and two men run to his front door.,bear by the man who is watching the actions.,throws a white barrel at the man on the ground.,help protect the boy's sunburn.,2\n18219,anetv_PWriIL3pTWY,6368,The man not wearing a shirt throws a white barrel at the man on the ground. A man in a black suit,The man not wearing a shirt throws a white barrel at the man on the ground.,A man in a black suit,gold,comes out from the bushes.,is sitting on it.,is walking to toss the conductor over.,is preparing from a table.,0\n18220,anetv_-zZJmRT9udU,732,A man is seen walking into frame and sits down behind a drum. He,A man is seen walking into frame and sits down behind a drum.,He,gold,begins hitting a brick around the drums while pausing to speak.,continues playing the drums while more people go away to play drum adverts.,speaks to the camera and begins playing the drums with hands.,begins to play the equipment back and fourth at the outdoor drum set.,2\n18221,anetv_-zZJmRT9udU,6585,He is talking from behind a set of bongo drums. He then,He is talking from behind a set of bongo drums.,He then,gold,starts near the drums.,plays and cymbals while sitting on the large drum set.,begins moving his feet back and forth.,\"shows how to play the drums, hitting them to a beat with his hands.\",3\n18222,anetv_-zZJmRT9udU,733,He speaks to the camera and begins playing the drums with hands. He,He speaks to the camera and begins playing the drums with hands.,He,gold,continues playing the drum while looking off into the distance.,continues playing while pausing to speak and demonstrate how to use drums.,begins moving up and down an instrument.,continues playing the drum while the camera pans around him playing in the end.,1\n18223,anetv_-zZJmRT9udU,6584,A man is seated in a building in front of a curtain. He,A man is seated in a building in front of a curtain.,He,gold,is talking from behind a set of bongo drums.,starts running down to top and turning around it.,gets a weight in place.,does a hand stand leaning against the side of a house.,0\n18224,anetv_nc4twXSueZo,12913,A boy practices boxing with a kneeling adult. The kneeling adult,A boy practices boxing with a kneeling adult.,The kneeling adult,gold,grabs the mans arm in times.,pats the boy on the back.,lays down on his knees and give the rest.,lifts a barbell to his chest.,1\n18225,anetv_nc4twXSueZo,4658,There is a man wearing a white shirt kneeling down in front of him. He,There is a man wearing a white shirt kneeling down in front of him.,He,gold,is running up and down the sidewalk moving his legs.,is practicing boxing with the man.,takes a bow back up and begins to play.,\"has a black jacket, his shoes and shoulder trousers in the other person's arms.\",1\n18226,anetv_nc4twXSueZo,12914,The kneeling adult pats the boy on the back. The kneeling adult,The kneeling adult pats the boy on the back.,The kneeling adult,gold,rises and stands in place.,walks closer to another boy.,goes down with a cane and then some balls.,opens its eyes and sinks down.,0\n18227,anetv_nc4twXSueZo,4657,A kid is wearing boxing gloves. There,A kid is wearing boxing gloves.,There,gold,is talking onto a cell phone.,is a man wearing a white shirt kneeling down in front of him.,are playing a saxophone together.,are people sitting and playing.,1\n18228,anetv_nKn2uQTVo-U,1606,People perform acrobatic like tricks on the floor of a public space with people gathered around watching. A man wearing orange red,People perform acrobatic like tricks on the floor of a public space with people gathered around watching.,A man wearing orange red,gold,finishes the video spinning on the ground upside down.,talks to a young girl about a bass band and perform on a stage.,\"runs men, talks and stabs the person in the large hat.\",stilts on stage outside.,0\n18229,anetv_nKn2uQTVo-U,19021,A man is seen yelling to a crowd and leads into clips of people break dancing. Several clips,A man is seen yelling to a crowd and leads into clips of people break dancing.,Several clips,gold,are shown of people playing in the crowd while laughing with one another.,are shown of people performing dance together as another group of people helps.,are shown of people playing as well as walking away.,are seen of people taking turns in the middle of a circle performing flips and tricks.,3\n18230,anetv_nKn2uQTVo-U,1605,A man is performing in front of a crowd and the words a Handy Andy Trailer appear on screen with fire in the background. People,A man is performing in front of a crowd and the words a Handy Andy Trailer appear on screen with fire in the background.,People,gold,are in a boat in the water below for the boat.,perform acrobatic like tricks on the floor of a public space with people gathered around watching.,walks along the sidewalk holding a basketball.,\"wearing purple is explaining how he practices with the pair for himself, very fast and skillfully in more environments.\",1\n18231,anetv_nKn2uQTVo-U,19022,Several clips are seen of people taking turns in the middle of a circle performing flips and tricks. People,Several clips are seen of people taking turns in the middle of a circle performing flips and tricks.,People,gold,are shown dancing together as well as apart while others watch on the side.,perform dancing around the people in front of the audience.,walk down the track and jump into a circle with others watching.,roll around in the distance as the camera pans over their movements.,0\n18232,anetv_-ypKYhjrlXw,5398,A medical worker is sitting at a table with a woman and talking to the camera. He,A medical worker is sitting at a table with a woman and talking to the camera.,He,gold,rubs his hands and peddling it around.,moves a can and touches two other cans.,the screen is shown sitting inside a kitchen from video flashes with various person working and drinking it.,cuts her clean eye with an electric knife.,1\n18233,anetv_-ypKYhjrlXw,5402,He picks up a third container and puts it on her arm and rubs it in as well. He,He picks up a third container and puts it on her arm and rubs it in as well.,He,gold,picks up a fourth tube and puts the cream on her hand and rubs it in.,continues hitting the bottom with the container and then holding it to his hands.,walks past it and flings the lock lobby door open.,takes the cube and begins sharpening the floor.,0\n18234,anetv_-ypKYhjrlXw,5401,He picks up another can and talks about it then sprays her arm again and rubs the cream in. He,He picks up another can and talks about it then sprays her arm again and rubs the cream in.,He,gold,\"rinses his face into his hands and shows another to the camera while speaking, getting up and looking into a mirror.\",picks up a third container and puts it on her arm and rubs it in as well.,then shaves the bottom with the brush by his fingers.,puts it extremely hard in the end and strides away from the porch of his yard.,1\n18235,anetv_-ypKYhjrlXw,5400,He picks up a can and sprays it on the woman's arm and rubs it. He,He picks up a can and sprays it on the woman's arm and rubs it.,He,gold,picks up another can and talks about it then sprays her arm again and rubs the cream in.,\"then shows some more snow to shovel, then shows it to the camera and then throws it in different directions.\",shows off the brushes and clips of her cutting board.,begins to strip the saw roll paper and clean it to the floor.,0\n18236,anetv_-ypKYhjrlXw,5403,He picks up a fourth tube and puts the cream on her hand and rubs it in. He,He picks up a fourth tube and puts the cream on her hand and rubs it in.,He,gold,gets goes a few more times until then stops the front door.,looks around and adjusts the back of his head.,holds up towel and demonstrating the procedure on doing it.,does this again with a fifth cream.,3\n18237,anetv_-ypKYhjrlXw,5404,He does this again with a fifth cream. He then,He does this again with a fifth cream.,He then,gold,moves off and makes it very hard.,uses a camera to create a piercing.,explains what he will be done using his hands and then his teeth.,\"takes a compact of brown powder, presents it to the camera and puts it back down.\",3\n18238,anetv_-ypKYhjrlXw,5399,He moves a can and touches two other cans. He,He moves a can and touches two other cans.,He,gold,swats the ice with his hand.,picks up a can and sprays it on the woman's arm and rubs it.,marks down a nearby chute.,tries to wash the machine and wipe them over.,1\n18239,anetv_aj1ole7T9hc,14740,\"A woman is mowing a lawn, pushing the mower back and forth. She\",\"A woman is mowing a lawn, pushing the mower back and forth.\",She,gold,continues mowing the lawn backwards.,covers half the lawn and driveway before the video ends.,continues using the mower to groom the lawn.,continues playing while the women continues to dirt around the woman.,1\n18240,lsmdc3001_21_JUMP_STREET-96,882,Behind him someone bites his fist and doubles over with laughter. The Captain,Behind him someone bites his fist and doubles over with laughter.,The Captain,gold,opens his office window.,finishes the host introduces someone's response.,stash bounds the stairs.,spits out another slug.,0\n18241,lsmdc1047_Defiance-91340,4060,\"Someone hands back the gun. Sharpening a spear, someone\",Someone hands back the gun.,\"Sharpening a spear, someone\",gold,flips the last sack toward a small metal signet.,\"staggers away, desperately reaching for his hand.\",looks up in surprise as someone comes back to the camp with more refugees.,eyes a small attache case.,2\n18242,anetv_H1bmoIihWwo,5940,A young girl is seen climbing up a ladder onto a diving board. She,A young girl is seen climbing up a ladder onto a diving board.,She,gold,walks down the end while others watch her from below.,jumps up and down on the ice.,demonstrates how to dive in rafts and flip through the water.,is seen bending down on a board as well as paddling himself along the water.,0\n18243,anetv_H1bmoIihWwo,15786,She then dives backwards into the indoor pool. Judges,She then dives backwards into the indoor pool.,Judges,gold,scurry around and lets go of the dive.,sweeps her feet in the water.,score her performance from the sidelines.,come back up and three girls get into the pool.,2\n18244,anetv_H1bmoIihWwo,5941,She walks down the end while others watch her from below. She,She walks down the end while others watch her from below.,She,gold,jumps off the side and climbs back up from the pool.,\"shakes her head out, sighs, then blows out the fan.\",takes many steps using her as she dances as the others walk outside.,comes and goes to the mirror and takes a drink.,0\n18245,anetv_H1bmoIihWwo,15785,A young girl climbs a tall diving board and adjusts it. She then,A young girl climbs a tall diving board and adjusts it.,She then,gold,does a flip and the crowd starts to swim around her.,rides around.,dives backwards into the indoor pool.,does several throws in the pool and falls her balance.,2\n18246,anetv_S5bjFaZUnOM,7706,An image of a wild cat appears on the screen. Men,An image of a wild cat appears on the screen.,Men,gold,are standing in a rodeo field.,are sitting down behind a table on a lounge couch.,are shown inside a gym in fencing gear.,\"draw horses over the water, fly up rolling hills and next to them.\",2\n18247,anetv_S5bjFaZUnOM,7708,\"They take turns training, and fencing with each other. Women\",\"They take turns training, and fencing with each other.\",Women,gold,are shown practicing various martial arts matches.,bow each other then engage in a game of tug of war.,\"shake hands between matches, before facing another opponent.\",talk to them as they dance along.,2\n18248,anetv_S5bjFaZUnOM,7707,Men are shown inside a gym in fencing gear. They,Men are shown inside a gym in fencing gear.,They,gold,\"take turns training, and fencing with each other.\",use a gun to cover a basket of rocks as they speak to each other.,are practicing standing on the sideline.,are showing how to lifting a set of weights.,0\n18249,anetv_S5bjFaZUnOM,5433,They are engaged in fencing together. They,They are engaged in fencing together.,They,gold,are engaging in fencing.,poke and jab at each other as they pretend to fight.,are engaged in a game of curling.,are engaged in a fierce game of kickboxing.,1\n18250,anetv_S5bjFaZUnOM,7709,\"Women shake hands between matches, before facing another opponent. A man\",\"Women shake hands between matches, before facing another opponent.\",A man,gold,from one of the aisles wins and then scores different speaks.,dives into the ring and throws another giant ball in the air.,speaks to the camera with the fencers behind him before cutting back to the image of the wild cat.,and a woman are shown playing a game of field with the camera wearing waist with the ball.,2\n18251,anetv_S5bjFaZUnOM,5432,A group of people are gathered in a gym. They,A group of people are gathered in a gym.,They,gold,start a race in a competition.,are demonstrating how to bounce a heighten hurdle in the sand net.,engage in various karate dancing.,are engaged in fencing together.,3\n18252,anetv_ibWb6iRQiD4,11277,She takes the towel off and shows us her tools. After brushing her hair and adding products she,She takes the towel off and shows us her tools.,After brushing her hair and adding products she,gold,sections her hair off.,\"has washed and proceeds to paint in her hair, including when she has a hair cut and shows her hair up to her face\",uses her toothbrush up on demonstrating how to brush the polished shoe.,uses to towel on her hair.,0\n18253,anetv_ibWb6iRQiD4,11275,We see a title card about hairstyles. We,We see a title card about hairstyles.,We,gold,see two people on a boat as well.,see a lady with a towel on her hair.,see people riding bikes on side of a ramp.,see people playing a piano.,1\n18254,anetv_ibWb6iRQiD4,3774,A woman walks into frame and speaks to the camera followed by pulling a towel off her hair. She,A woman walks into frame and speaks to the camera followed by pulling a towel off her hair.,She,gold,begins pushing face clothes.,combs her hair and sprays product into it and brushes her hair afterwards.,places her hands in a bucket and then dries the hair.,moves the monkey bar all over them and ends by smiling to the camera.,1\n18255,anetv_ibWb6iRQiD4,3775,She combs her hair and sprays product into it and brushes her hair afterwards. She,She combs her hair and sprays product into it and brushes her hair afterwards.,She,gold,continues to sings in front of the mirror while holding her braids.,puts up her hair and begins blow drying it with a brush.,continues braiding her hair with a bow and smiling to the camera.,scrubs her hair again while still looking to the camera.,1\n18256,anetv_ibWb6iRQiD4,11278,After brushing her hair and adding products she sections her hair off. She then,After brushing her hair and adding products she sections her hair off.,She then,gold,ties a piece of hair dried and neatly cuts to the dress.,blow drys the bottom of her hair while turning it on a brush.,puts the hair in a ponytail and trims the woman's hair.,begins by smoothing the client's hair with a mans hair.,1\n18257,anetv_ibWb6iRQiD4,11276,We see a lady with a towel on her hair. She,We see a lady with a towel on her hair.,She,gold,puts towel on the towel and washes it with soap.,adds soap and brush the top of her hair.,rinse the note of the sink using a hose to catch it.,takes the towel off and shows us her tools.,3\n18258,anetv_rBGdFwbG118,17198,A man wearing glasses is talking in a parking lot. He,A man wearing glasses is talking in a parking lot.,He,gold,uses her flashlight on the light of a square shows single woman.,are playing a game of beer.,stands at the microphone then gets up and walks away.,\"walks into a car wash, where a green substance is being sprayed on the cars.\",3\n18259,anetv_rBGdFwbG118,17199,\"He walks into a car wash, where a green substance is being sprayed on the cars. The soap\",\"He walks into a car wash, where a green substance is being sprayed on the cars.\",The soap,gold,quickly sprays the car as the car drives slowly along.,\"spills with a hose, and comes in through the window.\",sprays a larger spray product and dry it at the interior of the cars.,is then rinsed away with hoses.,3\n18260,anetv_3S7EwcX-Rd0,4567,A bicycling competition is about to begin and the crowd is ready. The riders,A bicycling competition is about to begin and the crowd is ready.,The riders,gold,jump around multiple times doing flips in the large sand pit.,start and already many fall during the first big jump.,take turns as people line up on the fake grass.,turn as the canoe passes on other side.,1\n18261,anetv_3S7EwcX-Rd0,4568,The riders start and already many fall during the first big jump. Various highlights,The riders start and already many fall during the first big jump.,Various highlights,gold,are shown as well as them and they are seen walking off.,are shown followed by alabama carrying spectators.,are shown of the riders attempting the large jumps.,are shown of people and people talking as they are in the water.,2\n18262,anetv_3S7EwcX-Rd0,4569,Various highlights are shown of the riders attempting the large jumps. Three winners,Various highlights are shown of the riders attempting the large jumps.,Three winners,gold,join after signs on the field.,are crowned at the end in a ceremony.,wins shotput and shown together.,dismount the photos then ride and gallop around.,1\n18263,anetv_8KPk9pH4wWw,7497,An athlete is seen waving his hands to the crowd and clapping followed by him running over a beam. His same shot is shown again in slow motion and he,An athlete is seen waving his hands to the crowd and clapping followed by him running over a beam.,His same shot is shown again in slow motion and he,gold,is seen standing on the platform watching the game set up.,continues to run past various tricks as well as walking away.,s seen speaking to a man.,jumping up the rock in slow motion.,2\n18264,anetv_7iuU-zsauOY,315,\"In the midst, he begins playing with a small fish before continuing on his search. The man continues traveling through the water at a slow pace but he\",\"In the midst, he begins playing with a small fish before continuing on his search.\",The man continues traveling through the water at a slow pace but he,gold,is just puffing and falling.,is n't finding anything.,is got unaware of him who's running.,does push on the top five.,1\n18265,anetv_7iuU-zsauOY,314,\"A man is deep water scuba diving with some type of machine as if he is searching for something. In the midst, he\",A man is deep water scuba diving with some type of machine as if he is searching for something.,\"In the midst, he\",gold,begins playing with a small fish before continuing on his search.,\"is struggling to keep his balance, watching the man.\",uses the flame to turn in the water and begins to fire it from the hole.,snatches the measuring paper over a cabinet with a scoop of his long clothes.,0\n18266,anetv_F54PZypvzCc,9162,He is throwing darts at a target. He,He is throwing darts at a target.,He,gold,walks over and removes the darts before trying again.,shoots holding a stick and shooting out several shots.,is shown several times with a knife.,stops to shoot her silver throw button behind a green stick.,0\n18267,anetv_F54PZypvzCc,9161,A little boy is standing in a living room. He,A little boy is standing in a living room.,He,gold,walks to the bathroom and stands up and begins talking to the camera.,is standing behind a girl holding a fork in front of him.,is throwing darts at a target.,is reading a patch of bushes in front of the yard.,2\n18268,anetv__kG3DxvGnnQ,12890,A girl is seen sitting in a chair with another person wiping her face and handing her a mirror to look in. He then pierces the girl's cheeks and the camera,A girl is seen sitting in a chair with another person wiping her face and handing her a mirror to look in.,He then pierces the girl's cheeks and the camera,gold,pans behind to show her mouth.,zooms in on the girl's face when he's done.,pans around with all man tools on her and finally cutting them in.,pans around to show her failing to make sure she loses now.,1\n18269,anetv_GejFc4J2mfc,13345,He shows off his legs and then runs an electric razor down his legs shaving off the hair. He then,He shows off his legs and then runs an electric razor down his legs shaving off the hair.,He then,gold,\"puts shaving cream on his legs and shaves them, finally showing off his bare legs in the end and speaking to the camera.\",removes his shirt and cleans up the sleeve on his right leg at a mirror in the end.,dries his face with a shaver and shaving his head and neck.,finishes and looks in the mirror.,0\n18270,anetv_GejFc4J2mfc,13344,A young man wearing a tie die shirt is seen speaking to the camera and then shows him picking out some clothes. He,A young man wearing a tie die shirt is seen speaking to the camera and then shows him picking out some clothes.,He,gold,shows off his legs and then runs an electric razor down his legs shaving off the hair.,demonstrates how to clean the bottle while others wear properly.,grabs the drums with a waving flag and quickly approaches.,\"bats the ball, cuts it out of the mouth and lays it on his head.\",0\n18271,anetv_SymvoBsqt3Y,1570,They begin to march in place and play the drums. There,They begin to march in place and play the drums.,There,gold,are dressed in all the star and holding their instruments holding the violin.,\", with the uneven work, stand up the sides of the row, spinning the game towards each other.\",are red water coolers on the curb behind them.,\"woman turns and they go down the steps, then begin to dance in the venue.\",2\n18272,anetv_SymvoBsqt3Y,1569,People are standing in a line holding bass drums. They,People are standing in a line holding bass drums.,They,gold,start dancing and dancing in unison.,\"start playing instruments as the journalists are cheering, the person continuing playing the harmonica, walking away and clapping to the music.\",pick up some instruments and start fighting for a crowd of people.,begin to march in place and play the drums.,3\n18273,anetv_SymvoBsqt3Y,4398,\"Five people, four men and one woman, in baseball hats and shorts are standing in row in a parking lot holding large drums, bouncing and playing them. All of the people are holding up their drumsticks and then they all\",\"Five people, four men and one woman, in baseball hats and shorts are standing in row in a parking lot holding large drums, bouncing and playing them.\",All of the people are holding up their drumsticks and then they all,gold,cheered then started skateboarding all the way to the bikes.,start hitting birds with red shirts.,begin playing and bouncing in rhythm each drumming to their own beat.,begin curling around the hula hoop.,2\n18274,anetv_SymvoBsqt3Y,4399,All of the people are holding up their drumsticks and then they all begin playing and bouncing in rhythm each drumming to their own beat. All of the drummers,All of the people are holding up their drumsticks and then they all begin playing and bouncing in rhythm each drumming to their own beat.,All of the drummers,gold,begin to play around after the game ends.,stop and hold their drumsticks in the air.,started dancing kicking their instruments as they while pulling down the rope.,spins and bounce while the band around them several keep rhythm by doing the same.,1\n18275,anetv_3oS_28utt2Y,13792,A person is surfing on a large wave in the water. The wave,A person is surfing on a large wave in the water.,The wave,gold,speeds off the waves and waves.,crashes over the surfer.,is shown again in slow motion over ski with some tips.,crashes people on the water.,1\n18276,anetv_3oS_28utt2Y,13791,A man is sitting on a wave runner in the water. A person,A man is sitting on a wave runner in the water.,A person,gold,jumps on on the side of the tube.,is surfing on a large wave in the water.,\"is carrying the ball, gracefully getting ready to jump.\",stands in front of him with an umbrella.,1\n18277,anetv_zQ4HbFGX7t0,8787,He gets some boards and starts sanding them down smoothing them out. When the day is over he,He gets some boards and starts sanding them down smoothing them out.,When the day is over he,gold,begins painting a stone in front with a still picture of a canvas.,turns the lights off and gets ready for work.,sets down and uses an electric scissor to cut the top wall before getting down.,switches and does a lot of more and more bumps.,1\n18278,anetv_zQ4HbFGX7t0,8785,A man closing his house door and then opening his car door. He,A man closing his house door and then opening his car door.,He,gold,enters the hotel room and sits down in a chair.,lets them fall and grabs a shirt.,\"walks through, but stops short.\",gets in the car and puts the keys in the ignition and starts driving down the highway to his shop.,3\n18279,lsmdc0029_The_Graduate-64148,7369,Someone looks toward a passing waiter and raises his hand. Someone,Someone looks toward a passing waiter and raises his hand.,Someone,gold,looks back at someone apologetically.,lifts it grimly with greetings and glancing at someone.,\"hides his hand in a spread, then faces the map and reads a note.\",comes from a bungalow walkway and leaps onto the big row of where someone and police soldier are.,0\n18280,lsmdc0029_The_Graduate-64148,7368,\"Someone tries to smile then looks out the window, then down at the center of the table. Someone\",\"Someone tries to smile then looks out the window, then down at the center of the table.\",Someone,gold,looks toward a passing waiter and raises his hand.,picks up her own twirling wig and disappears.,reaches into his pocket and takes out snapshots of a cartoon boy.,'s attention is at hers.,0\n18281,lsmdc0029_The_Graduate-64148,7371,\"The waiter stops in his tracks, turns toward them. The waiter\",\"The waiter stops in his tracks, turns toward them.\",The waiter,gold,moves to their table.,is on the table with a bill in his hand.,goes head to arm.,blows out a pink gas flute.,0\n18282,lsmdc0029_The_Graduate-64148,7370,Someone looks back at someone apologetically. The waiter,Someone looks back at someone apologetically.,The waiter,gold,takes a swig and goes to return.,shoves her hand into the water.,lifts the mug of him briefly to join someone in his wife's.,\"stops in his tracks, turns toward them.\",3\n18283,anetv_2pJTak2Qz8Q,11947,Lots of people are seen walking by in the beginning of the video. Then different people,Lots of people are seen walking by in the beginning of the video.,Then different people,gold,are also soccer on a field while people are mostly intruder.,\"are shown engaging in harness and taking turns to race,.\",are shown skiing up ramps to do cool tricks.,begin doing tricks and roping together in a dirt competition when they are all lined around.,2\n18284,anetv_TBeZXLchito,11674,People take picture to the skateboarders. A skateboarder,People take picture to the skateboarders.,A skateboarder,gold,fells on the road.,shows a view of the tire.,is adjusting his bike.,gets down on a shovels slope.,0\n18285,anetv_TBeZXLchito,11673,\"Then, the skateboarders pass on front spectators watching on side the road. People\",\"Then, the skateboarders pass on front spectators watching on side the road.\",People,gold,do flips on a blue mat on the ground.,ride on a dirt road approach on top of her cars to begin skating.,\"continues walking around, after the man hopped and flip on one of them.\",take picture to the skateboarders.,3\n18286,anetv_TBeZXLchito,11672,\"Then, a skateboarder opens his arms and signal others to advance. Then, the skateboarders\",\"Then, a skateboarder opens his arms and signal others to advance.\",\"Then, the skateboarders\",gold,turn the gas on a low street.,pass on front spectators watching on side the road.,\"ride past, doing tricks and stunts on the stilts together.\",take on skateboards and tumbles onto the street.,1\n18287,anetv_TBeZXLchito,11671,\"People skateboard in a competition on the road while bending and holding his arms back. Then, a skateboarder\",People skateboard in a competition on the road while bending and holding his arms back.,\"Then, a skateboarder\",gold,stands in front of the stalls to finish exercising.,pulls the bike down the ramp.,taking a colored beanie and talking about the racers below.,opens his arms and signal others to advance.,3\n18288,anetv_TBeZXLchito,11675,A skateboarder fells on the road. People,A skateboarder fells on the road.,People,gold,are in their tracks.,continues skateboarding in the road.,are in a track arena.,hurdles ramps of the resort.,1\n18289,anetv_m1aF1CVo-s8,7714,Exercise bikes stand in the corner of a carpeted room. Two women in black workout pants,Exercise bikes stand in the corner of a carpeted room.,Two women in black workout pants,gold,are doing a cardio workout in front of an inhale gallery.,stand in the parking lot.,uses boxing simultaneously on the lounge chair.,run on the stationary elliptical machines.,3\n18290,anetv_m1aF1CVo-s8,11723,Woman is alone in a oom doing exercise in the ellipical. another woman,Woman is alone in a oom doing exercise in the ellipical.,another woman,gold,start in the eliptical trainer in the back.,is jumping on the white tubes holding the bumper and falling back.,is jumping on the bars at the exercise behind her.,is standing on her side and fanny her exercising.,0\n18291,lsmdc1010_TITANIC-77316,13468,The sunken Titanic sits on the bottom of the ocean. The elderly someone,The sunken Titanic sits on the bottom of the ocean.,The elderly someone,gold,is lying back in the water.,stares intently at the words written down on an unmoving bridge.,turns from a monitor and addresses the crew of the salvage vessel.,looks around it and waves as passengers step out of the french doors into the long high waters.,2\n18292,lsmdc1010_TITANIC-77316,13463,He places his hands around her waist as she open her eyes. Black smoke,He places his hands around her waist as she open her eyes.,Black smoke,gold,appears outside the opening.,rises out of the wood slat cabinet.,trails from the ship's funnels as people stand at the rail high above the water.,trails over someone's view as he pulls it close to the surface.,2\n18293,lsmdc1010_TITANIC-77316,13459,Someone steps across the deck toward him. He,Someone steps across the deck toward him.,He,gold,whips a liquid over someone's leg.,\"yanks the weights off the man's head, step beside someone and someone.\",takes his hand out of someone's backpack.,turns and faces her.,3\n18294,lsmdc1010_TITANIC-77316,13457,Someone gazes toward another table where a woman pulls a slouching young girl upright. Someone,Someone gazes toward another table where a woman pulls a slouching young girl upright.,Someone,gold,watches the girl places a napkin on her lap with her small gloved hands.,cleans her face in a pen as he sits down on the ground in front of someone.,\"walks to the icy front doors, futilely in the back of a hall, as a woman comes out of a bathroom.\",raise her legs back observing.,0\n18295,lsmdc1010_TITANIC-77316,13464,Black smoke trails from the ship's funnels as people stand at the rail high above the water. Someone,Black smoke trails from the ship's funnels as people stand at the rail high above the water.,Someone,gold,'s gaze reveals someone.,reaches out and grasps someone's hands and leans his face close to hers.,see someone takes off to the car in the supply shop.,watches the robot curl in one position.,1\n18296,lsmdc1010_TITANIC-77316,13467,Someone places her hand on the back of someone's neck. The sunken Titanic,Someone places her hand on the back of someone's neck.,The sunken Titanic,gold,mounts someone and escorts him to the staircase.,sits on the bottom of the ocean.,looks up and someone's hair wipes off the sweat.,sits on a blue stage and lies down with a banner below and the scoreboard fades to spirals.,1\n18297,lsmdc1010_TITANIC-77316,13455,Someone places his hand on someone's cheek. Someone,Someone places his hand on someone's cheek.,Someone,gold,places her gloved hand over his.,\"steps down, snatches the ball away from her and exits to her apartment.\",lowers the door toward someone who looks down at her.,rubs her bangs against his nose and smiles deeply.,0\n18298,lsmdc1010_TITANIC-77316,13456,\"Later, in the first class lounge, someone, someone, the Countess, and another woman drink tea. Someone\",\"Later, in the first class lounge, someone, someone, the Countess, and another woman drink tea.\",Someone,gold,\"hurries through the hotel, across his wide apartment.\",dances on a stage dressed in slinky costumes.,gazes toward another table where a woman pulls a slouching young girl upright.,appears on the laptop.,2\n18299,lsmdc1010_TITANIC-77316,13462,The wind blows her shawl back on her outstretched arms. He,The wind blows her shawl back on her outstretched arms.,He,gold,blows out her cheeks as she swings her fist down at breaking speed.,\"winces, almost dropping.\",places his hands around her waist as she open her eyes.,stops her and shakes her baton again.,2\n18300,lsmdc1010_TITANIC-77316,13460,\"Grasping her hand, someone helps someone onto the bow, rail platform. They both\",\"Grasping her hand, someone helps someone onto the bow, rail platform.\",They both,gold,snap the tugs and release their branches and rush onto the oc!,\"relax hard in their grips, wrapping their arms around them, wrapping their arms around them.\",stoop a commuter board with camouflaged umbrella.,step onto the lowest rung of the railing.,3\n18301,lsmdc1010_TITANIC-77316,13465,Someone reaches out and grasps someone's hands and leans his face close to hers. Someone,Someone reaches out and grasps someone's hands and leans his face close to hers.,Someone,gold,pushes her along the room's floor with chairs empty.,strolls unsteadily in his chair.,folds someone's arms around her waist.,\"returns to the cabin, followed by someone.\",2\n18302,lsmdc1010_TITANIC-77316,13466,\"She turns his face to him, and they kiss. Someone\",\"She turns his face to him, and they kiss.\",Someone,gold,thrusts his finger at the taller man who misses then pushes off the vehicle.,explode all around him.,places her hand on the back of someone's neck.,goes into his room.,2\n18303,lsmdc1010_TITANIC-77316,13461,They both step onto the lowest rung of the railing. The wind,They both step onto the lowest rung of the railing.,The wind,gold,continues to rise while the coach prepares.,starts to collapse.,blows her shawl back on her outstretched arms.,carries the water between the buildings beneath the towers and turrets of hogwarts castle.,2\n18304,anetv_shLUZZS9oYc,16451,\"As he finishes the side, he moves to the front of the plant and continues cutting the plant down. Once a small portion is shown, he\",\"As he finishes the side, he moves to the front of the plant and continues cutting the plant down.\",\"Once a small portion is shown, he\",gold,climbs up to his feet and continues following when he came nearer.,stops to play four foot and crosses it into its curving gaze between the trees.,shows how to paint the kitchen through nestling hedges.,looks at the plant and then cuts off the item in his hand.,3\n18305,anetv_shLUZZS9oYc,16450,\"A man is standing outside by the sidewalk cutting down a set of hedges. As he finishes the side, he\",A man is standing outside by the sidewalk cutting down a set of hedges.,\"As he finishes the side, he\",gold,trims some snow off.,stands up and talks to the camera of the man as he speaks.,begins to put his street above the tree.,moves to the front of the plant and continues cutting the plant down.,3\n18306,anetv_EfjzkyLrnDg,13946,A group of people are together in a room. A man,A group of people are together in a room.,A man,gold,\"is dancing next to her, including their legs and a ball.\",punctures several beer cans.,is seated on a couch talking in a microphone.,is in a room separating a couple of young people that are twirling in their seats.,1\n18307,anetv_EfjzkyLrnDg,2961,A close up of a person is seen grabbing cans and poking holes into them. The man then,A close up of a person is seen grabbing cans and poking holes into them.,The man then,gold,sharpens while the camera follows his movements.,applies wax all over the top.,begins drinking out of the beers all at once.,drills into the pot and cuts up the potatoes.,2\n18308,anetv_EfjzkyLrnDg,2962,The man then begins drinking out of the beers all at once. He,The man then begins drinking out of the beers all at once.,He,gold,pulls his leg up while the man tickles with him.,drops the beers down at the end while people watch him.,continues to continue playing and ends by tapping his hands back to the cups.,breaks sugar apart and puts it against his skin and drinks.,1\n18309,anetv_EfjzkyLrnDg,13947,A man punctures several beer cans. He then,A man punctures several beer cans.,He then,gold,\"uses various liquors, forcing them into the open electric bites.\",cleans a leg area and scrub.,drinks the beer from the sides of the cans.,throws into bowling balls and sip more water as he walks along.,2\n18310,anetv_DXu_aHrZaUs,18654,A heavy weight roller is rolled over the newly placed tiles. The finished floor,A heavy weight roller is rolled over the newly placed tiles.,The finished floor,gold,shows a dessert is made.,is seen after the job is done.,under a carpet is done.,is cleaned up and placed on the couch.,1\n18311,anetv_DXu_aHrZaUs,18653,A worker places tiles onto the floor and uses plastic cross spacers in the groves. A heavy weight roller,A worker places tiles onto the floor and uses plastic cross spacers in the groves.,A heavy weight roller,gold,is rolled over the newly placed tiles.,takes them down two marble steps.,is shown above a two course with an digital razor on an upper right.,is so exhausted that it is demonstrated on the floors.,0\n18312,anetv_DXu_aHrZaUs,18652,A construction worker uses a handheld scraper to apply plaster to the bare floor. A worker,A construction worker uses a handheld scraper to apply plaster to the bare floor.,A worker,gold,places tiles onto the floor and uses plastic cross spacers in the groves.,grips a chocolate bar and shakes her head.,\"does there, art, and big shovel.\",uses the edge of the open roof.,0\n18313,anetv_DXu_aHrZaUs,18650,A sign board is seen with a company logo and contact information. A construction worker,A sign board is seen with a company logo and contact information.,A construction worker,gold,enters the news shop and comes along with a manual.,screws down floor baseboards.,cuts up a window with a white orange paint.,writes at a apply job.,1\n18314,anetv_DXu_aHrZaUs,18651,A construction worker screws down floor baseboards. A construction worker,A construction worker screws down floor baseboards.,A construction worker,gold,vacuums a concrete passing by summit and interior parts.,sits in a snow blue tool and gets new shingles on a hood.,uses a handheld scraper to apply plaster to the bare floor.,uses a concrete inching tool on carpeted street and ground to a shield.,2\n18315,lsmdc3069_THE_BOUNTY_HUNTER-4684,18946,Someone checks his cell display. Someone,Someone checks his cell display.,Someone,gold,\"rapidly checks the clock tick up to it, almost just stopping when the clock score.\",takes the incoming call.,rips a cellphone off his feet.,brings out a revolver.,1\n18316,anetv_Fi2Al65EH0g,10339,We see a number of opening scenes. we,We see a number of opening scenes.,we,gold,\"see a black conviction on his left hand, again.\",see a new one and the ending credits.,see ladies on a bench by the inside of the city.,see a person in a yard playing with a dog.,3\n18317,anetv_Fi2Al65EH0g,10342,We see title screen and the lady throws Frisbee to the dog. We see a title screen and the dog,We see title screen and the lady throws Frisbee to the dog.,We see a title screen and the dog,gold,jumps on the camel.,lights it in the yard.,walks past the dog.,runs around the lady.,3\n18318,anetv_Fi2Al65EH0g,10341,We see a title scree and the person rolls the Frisbee for the dog. We see title screen and the lady,We see a title scree and the person rolls the Frisbee for the dog.,We see title screen and the lady,gold,laugh with her dogs mouth.,throws frisbee to the dog.,hikes on the ground in front of the field.,windsurfing on the back of a cabin in a large raft.,1\n18319,anetv_Fi2Al65EH0g,10340,We see a person in a yard playing with a dog. We see a title scree and the person,We see a person in a yard playing with a dog.,We see a title scree and the person,gold,plays an electric mower.,pushing and sitting from one tree down.,blowing the dog go in.,rolls the frisbee for the dog.,3\n18320,anetv_Fi2Al65EH0g,1985,A woman is seen kneeling in the grass and playing with a dog. The woman,A woman is seen kneeling in the grass and playing with a dog.,The woman,gold,throws the frisbee back her dog while jumping and jumping around the neck.,then begins laying her body on the rug while still speaking to the camera.,attempts to play the piano several times and shows on off.,lays down with the dog on top and leads into her performing tricks.,3\n18321,anetv_Fi2Al65EH0g,1986,The woman lays down with the dog on top and leads into her performing tricks. Another woman,The woman lays down with the dog on top and leads into her performing tricks.,Another woman,gold,is seen playing hop scotch followed by people sitting on the ground.,is performing tricks with her dog that is shown in several shots.,walk in frame while throwing off into a distance and another person laughing.,walks in behind and starts pulling the ball.,1\n18322,lsmdc3049_MORNING_GLORY-23335,7746,\"Inside, someone waits on a bench in the wood - paneled reception area. The attendant\",\"Inside, someone waits on a bench in the wood - paneled reception area.\",The attendant,gold,opens a door to his face.,is watching a small tv.,takes a cigarette out from a balloon and puts playing.,looks down and closes her eyes.,1\n18323,lsmdc3049_MORNING_GLORY-23335,7741,She packs up her apartment until it's completely empty. She,She packs up her apartment until it's completely empty.,She,gold,steps over a backyard and slumps down into a dirt vehicle.,\"leans in again, ready to pace.\",lifts up his window facing the rainy.,carries the last things into the removal truck and closes the door.,3\n18324,lsmdc3049_MORNING_GLORY-23335,7744,She runs across a busy road towards ibs. The skyscraper,She runs across a busy road towards ibs.,The skyscraper,gold,\"is white with large, dark windows.\",bears a deep shaft in her hand.,is seen with chrome and pipes.,is driven up the mountain.,0\n18325,lsmdc3049_MORNING_GLORY-23335,7745,\"The skyscraper is white with large, dark windows. Inside, someone\",\"The skyscraper is white with large, dark windows.\",\"Inside, someone\",gold,holds a bowl with fire books.,lies frozen in a huge flowing sea.,waits on a bench in the wood - paneled reception area.,gets up and punches the keys inside without dropping hangs from the roof and sucking in the chair by someone.,2\n18326,lsmdc3049_MORNING_GLORY-23335,7743,She jogs out of a subway in New York. She,She jogs out of a subway in New York.,She,gold,runs across a busy road towards ibs.,\"sits on a board, reading her name by a headline.\",pops a dingy trunk inside.,closes a sketchbook and clicks through tv.,0\n18327,anetv_Vvi0HQ6Pu7c,4003,One stands over the other and flips him into the ring. The other man,One stands over the other and flips him into the ring.,The other man,gold,continues to move from arm wrestling.,jerks his head and walks across the dance floor.,jump over the air.,stands up in the end.,3\n18328,anetv_Vvi0HQ6Pu7c,4002,A claymation video shows wrestlers standing in a ring. One,A claymation video shows wrestlers standing in a ring.,One,gold,stands over the other and flips him into the ring.,practices the final drills.,is shown at the side of people head with a referee at the head of a gym.,woman is seen sitting on a table and fencing.,0\n18329,anetv_Vvi0HQ6Pu7c,7896,\"A wrestler action figure takes hold, with his legs, of another wrestling action figure and swings him up in the air. The action figure in the air\",\"A wrestler action figure takes hold, with his legs, of another wrestling action figure and swings him up in the air.\",The action figure in the air,gold,watches the young man lift his hands and fall.,is fed up with a boom and the child struggles to push on it.,above furiously pulls a weight over a padlocked bar.,takes hold of another action figure standing by.,3\n18330,anetv_Vvi0HQ6Pu7c,7897,The action figure in the air takes hold of another action figure standing by. The action figure taking hold,The action figure in the air takes hold of another action figure standing by.,The action figure taking hold,gold,of the women's hand.,is able to drop the action figure to the ground.,and brief minutes away.,constantly overtakes the scene.,1\n18331,lsmdc3015_CHARLIE_ST_CLOUD-912,14841,He throws the ball fast. He,He throws the ball fast.,He,gold,holds his glove chest high.,takes to measure the distance when he runs into the field.,does a front flip as he follows.,is down the stairs.,0\n18332,lsmdc3015_CHARLIE_ST_CLOUD-912,14843,\"Someone pitches the ball into someone's crotch. As rain pours down on the brothers, a smile\",Someone pitches the ball into someone's crotch.,\"As rain pours down on the brothers, a smile\",gold,begins to shine on someone's lips.,spreads across someone's face.,plays on someone's lips.,leaps onto the corners of his lips and fades to black.,1\n18333,lsmdc3015_CHARLIE_ST_CLOUD-912,14842,\"As someone winds up, someone closes his eyes. Someone\",\"As someone winds up, someone closes his eyes.\",Someone,gold,pitches the ball into someone's crotch.,spots someone holding a self - talkie.,pats him in the face.,peers through a window to the upper wall.,0\n18334,anetv_SqEHpHNuy-w,57,Several people walk around and sit watching the men battle when they both stand up and laugh at one another. They shake hands and the camera,Several people walk around and sit watching the men battle when they both stand up and laugh at one another.,They shake hands and the camera,gold,pans around their movements as they wave their hips.,pans to someone talking to the camera and show various pictures of him.,pans around the room with one man giving a thumbs up.,comes to go in.,2\n18335,anetv_SqEHpHNuy-w,4248,\"Two military men wearing glasses are leaned over a cot smiling, talking, and looking like they are getting ready to arm wrestle while a few people around them are watching, filming them or doing their own thing. Instead of arm wrestling the man on the left\",\"Two military men wearing glasses are leaned over a cot smiling, talking, and looking like they are getting ready to arm wrestle while a few people around them are watching, filming them or doing their own thing.\",Instead of arm wrestling the man on the left,gold,shake and start wrestling faster and walking around each other.,\"goes forward, raises his hand to the male then gets back followed by the winning man and the end begins.\",uses his two hands to pull down the one fist of the man on the right.,falls into the microphone and the young men in blue continue to talk.,2\n18336,anetv_SqEHpHNuy-w,4249,\"Instead of arm wrestling the man on the left uses his two hands to pull down the one fist of the man on the right. They struggle for a short while, and as soon as the guy on the right is using all his might the man on the left let's his fist go and the man on the left\",Instead of arm wrestling the man on the left uses his two hands to pull down the one fist of the man on the right.,\"They struggle for a short while, and as soon as the guy on the right is using all his might the man on the left let's his fist go and the man on the left\",gold,does a cartwheel and misses the lift several time.,hits the pins with the racket.,accidentally punches his own face and knocks his glasses off.,comes down to not all the other people win.,2\n18337,anetv_SqEHpHNuy-w,56,A close up of army gear is shown leading into two men having an arm wrestling match. Several people,A close up of army gear is shown leading into two men having an arm wrestling match.,Several people,gold,have shown performing their tricks.,walk around and sit watching the men battle when they both stand up and laugh at one another.,are seen at tiling and adding strength to their nails.,play foosball together while kicking their legs in the air and end by killing a man smiling.,1\n18338,anetv_5Y4YkCkgShc,11476,A pancake is shown with syrup being poured on it. Ingredients,A pancake is shown with syrup being poured on it.,Ingredients,gold,is being added into a pot.,are placed in a bowl.,are poured into the blender.,are then poured into baking dough.,1\n18339,anetv_5Y4YkCkgShc,11475,A man in a chef's coat is standing in a kitchen talking to the camera. A pancake,A man in a chef's coat is standing in a kitchen talking to the camera.,A pancake,gold,is played in a kitchen sink.,appears in a pan next to the dog.,is covered with candles in front of a large kitchen.,is shown with syrup being poured on it.,3\n18340,anetv_5Y4YkCkgShc,11479,A ladle is shown next to the bowl. The man,A ladle is shown next to the bowl.,The man,gold,\"shakes the bowl of blue flour, picks him up, and places hands over the sink.\",is peeling himself into a bowl.,ladles the pancake batter onto the griddle.,tells us the potato.,2\n18341,anetv_5Y4YkCkgShc,11482,The man is shown eating a piece of the pancake. The man,The man is shown eating a piece of the pancake.,The man,gold,starts slicing little pieces of wood at the end.,\"is in making an orange bowl, then the man added the lime.\",continues talking to the camera while holding a piece of pancake.,demonstrates holding a dish and showing how to shave.,2\n18342,anetv_5Y4YkCkgShc,11478,The man cracks an egg and whisks the ingredients in a bowl. A ladle,The man cracks an egg and whisks the ingredients in a bowl.,A ladle,gold,cooks the mix and adds the ingredients.,is shown next to the bowl.,is stirred in a pan.,pours into the pot with the new mixture.,1\n18343,anetv_5Y4YkCkgShc,11477,Ingredients are placed in a bowl. The man,Ingredients are placed in a bowl.,The man,gold,adds chocolate with ingredients then adds the ingredients to a shot counter.,cracks an egg and whisks the ingredients in a bowl.,takes the pasta and placed it in the oven.,put butter on a cooked pasta in the pan.,1\n18344,anetv_5Y4YkCkgShc,11480,The man flips the pancakes. The pancake is placed on a plate and syrup,The man flips the pancakes.,The pancake is placed on a plate and syrup,gold,is poured on it.,is added to the sauce.,pours both begins rolling the cookies into some dough.,are chopped with utensils and tomatoes.,0\n18345,anetv_5Y4YkCkgShc,11481,The pancake is placed on a plate and syrup is poured on it. The man,The pancake is placed on a plate and syrup is poured on it.,The man,gold,is shown eating a piece of the pancake.,fills the pot with salt and chopped.,ads the cooked ingredients together in a bowl and adds it.,gets in and presents the plate to the glass mix.,0\n18346,anetv_5Y4YkCkgShc,11474,A nighttime view of a city is shown through a window. A man in a chef's coat,A nighttime view of a city is shown through a window.,A man in a chef's coat,gold,is talking in front of the tv.,is standing by a tree.,is standing in a kitchen talking to the camera.,holds a small cake in front of her.,2\n18347,lsmdc3015_CHARLIE_ST_CLOUD-730,17012,It shows wrecked station wagon. A flashlight,It shows wrecked station wagon.,A flashlight,gold,zooms from the timekeeper's cars.,speeds through to the hangar.,shows people looking toward chairs.,sweeps over someone's baseball cap.,3\n18348,anetv_NpBZn7OHUKo,14359,The man in blue kneels and pulls the handle on a exercise machine from above as the standing man gives directions he finishes and stands. There is a title screen and we,The man in blue kneels and pulls the handle on a exercise machine from above as the standing man gives directions he finishes and stands.,There is a title screen and we,gold,see the man pull from the ground up n the same machine.,see the male dealer in military shorts and tech stand on a bar demonstrate.,see a man's younger man who is being pulled with a pair of training arms.,return to a man getting up for his sunscreen bottle.,0\n18349,anetv_NpBZn7OHUKo,18891,One man speaks the camera. the two men then,One man speaks the camera.,the two men then,gold,walk over to an exercise machine.,display a group of still images of pro sunscreen.,engage in martial aerobics.,begin to zoom around the wall growth.,0\n18350,anetv_NpBZn7OHUKo,14360,There is a title screen and we see the man pull from the ground up n the same machine. We,There is a title screen and we see the man pull from the ground up n the same machine.,We,gold,see a closing title screen.,see a gift dealing door.,are then shown standing on an exercise bike and picks up a tool.,see the title screen for the patrol.,0\n18351,anetv_NpBZn7OHUKo,14357,We see an opening title screen. Two men,We see an opening title screen.,Two men,gold,are talking inside a building.,\"play paintball with a rapid, pointed target.\",stand in a room talking to the camera.,are inside a room talking.,2\n18352,anetv_NpBZn7OHUKo,18892,The two men then walk over to an exercise machine. the talking man,The two men then walk over to an exercise machine.,the talking man,gold,stops and demonstrates various movements of the former pedal.,continues to talk with the other man demonstrates exercises.,sets up and comes again with the horse and starts to do the exercises.,attaches his screwdriver between the bars.,1\n18353,anetv_NpBZn7OHUKo,14358,Two men stand in a room talking to the camera. the man in blue kneels and pulls the handle on a exercise machine from above as the standing man,Two men stand in a room talking to the camera.,the man in blue kneels and pulls the handle on a exercise machine from above as the standing man,gold,holds the weights while also walking pensively on the floor.,sits in the corner and picks up a microphone.,gives directions he finishes and stands.,walks up and lets the car start inside.,2\n18354,anetv_OUIS4bnEhU0,4017,\"A woman is in a gym, sitting on a ball. She\",\"A woman is in a gym, sitting on a ball.\",She,gold,poses on a exercise.,is doing several sit ups on the ball.,lifts the barbells over her head before dropping it.,is standing in front of a tv and at the piano and talking.,1\n18355,anetv_OUIS4bnEhU0,4018,She is doing several sit ups on the ball. She,She is doing several sit ups on the ball.,She,gold,hits the ball around with the racket.,continues doing sit ups propping her feet up.,is starting to pull down of the entire bar together.,sits there and sits in a chair.,1\n18356,anetv_OUIS4bnEhU0,3474,She then begins performing a set of sit ups on a ball. She,She then begins performing a set of sit ups on a ball.,She,gold,then shows several other gymnasts and coaches several shots of them dancing and dancing around.,continues doing sit ups and stops to smile to the camera.,pink text is shown.,continues down the set and faces herself while moving.,1\n18357,anetv_OUIS4bnEhU0,3473,A woman is seen close up to the camera. She then,A woman is seen close up to the camera.,She then,gold,begins piercing the sin's ear.,begins performing a set of sit ups on a ball.,rides on with another girl doing flips and tricks.,continues dancing around the water and passing the windows in her movements.,1\n18358,anetv_tJ2xOG_EWOg,13197,Men is peeling a pumpkin on top of a white table. man,Men is peeling a pumpkin on top of a white table.,man,gold,pours liquid for them and pours them along the fence of the grass.,is showing a piece of bread in the pumpkin and put the knife on the pumpkin.,is doing a face with a knife on the pumpkin.,\"is talking in a kitchen, cutting the cut with a tomato and decorating the tree to a jack table.\",2\n18359,anetv_tJ2xOG_EWOg,13198,The man grabs a brush and paints the pumkin with black and red paint. the man,The man grabs a brush and paints the pumkin with black and red paint.,the man,gold,walks and connect lights inside a pumpkin.,talks as the boy continues to paint the fence.,covers the canvas with ink while still talking.,put cement on the seats before walking away.,0\n18360,anetv_tJ2xOG_EWOg,3959,Someone is seen peeling the outside of a pumpkin. They then,Someone is seen peeling the outside of a pumpkin.,They then,gold,put more clips into a pumpkin on the other side of the pumpkin.,chop up a paper and put the insides into the pumpkin.,take some twigs from the sink and look at the camera.,carve a face into the pumpkin.,3\n18361,anetv_-yOwB5rvMAo,17428,The woman is hallucinating this and is then doing an interview. A group of people in a classroom,The woman is hallucinating this and is then doing an interview.,A group of people in a classroom,gold,walks into a kitchen and hands the cookies to a man in a karate uniform.,\"are in a gym, talking in the background.\",cheerfully knit away and play with yarn.,are gathered in an arena.,2\n18362,lsmdc1018_Body_Of_Lies-80001,8074,Someone creeps up behind some rocks. He,Someone creeps up behind some rocks.,He,gold,jumps high onto his back.,drops the locket under a sheet.,carries the hearing aid.,takes out his binoculars and looks down at a collection of stone houses.,3\n18363,lsmdc1018_Body_Of_Lies-80001,8105,\"In a yard outside, soldiers are playing basketball. Using tweezers, the doctor\",\"In a yard outside, soldiers are playing basketball.\",\"Using tweezers, the doctor\",gold,cuts a knife and shows how to use a knife.,picks a sharp fragment from an open wound in someone 'arm.,constantly studies each other.,strides out on to her dismount.,1\n18364,lsmdc1018_Body_Of_Lies-80001,8077,\"Wearing traditional robes, a jacket and skull cap, someone walks down the hill, towards the Iraqi by the fire. Someone\",\"Wearing traditional robes, a jacket and skull cap, someone walks down the hill, towards the Iraqi by the fire.\",Someone,gold,'s head rolls away from the window.,gets down by some rocks and pulls out the rifle's stand.,stands nearby before wakeboarding.,and the zombies are still after he falls.,1\n18365,lsmdc1018_Body_Of_Lies-80001,8094,Someone shoots at the other vehicles as they approach. They,Someone shoots at the other vehicles as they approach.,They,gold,fires a red fire.,collide on a bend and ram into a rock.,\", someone presses his hands against the coffin's rim of the vault.\",\"notice someone, an older man in a baggy white suit and black dress and breeches, sits.\",1\n18366,lsmdc1018_Body_Of_Lies-80001,8082,Someone throws a grenade into a courtyard and runs in shooting. He,Someone throws a grenade into a courtyard and runs in shooting.,He,gold,\"bumps on a wall, knocking them over.\",glances at the family of actors.,\"plunges into a clearing, missing a bright torch.\",exchanges fire with the young man.,3\n18367,lsmdc1018_Body_Of_Lies-80001,8106,\"Using tweezers, the doctor picks a sharp fragment from an open wound in someone 'arm. He\",\"Using tweezers, the doctor picks a sharp fragment from an open wound in someone 'arm.\",He,gold,takes another nut to emerge with a big shaft of blood.,finds a poster of blood on his father's forehead.,peers into the corner and spies the witch in the rear.,puts it with many other fragments in a kidney bowl.,3\n18368,lsmdc1018_Body_Of_Lies-80001,8101,A soldier knocks someone out with an injection and the chopper takes off. Someone,A soldier knocks someone out with an injection and the chopper takes off.,Someone,gold,throws down the weapon's rifle.,disappears from beneath the crater.,hooks the car with a crumpled rag.,lies by the open hatch.,3\n18369,lsmdc1018_Body_Of_Lies-80001,8097,Someone leans out of the window and shoots at them. The rpg grazes a chopper and the chopper,Someone leans out of the window and shoots at them.,The rpg grazes a chopper and the chopper,gold,head over.,destroys one of the four - by - fours.,\"gets closer, shoving the cell flying.\",arrives at the van's rear end.,1\n18370,lsmdc1018_Body_Of_Lies-80001,8095,They collide on a bend and ram into a rock. Someone,They collide on a bend and ram into a rock.,Someone,gold,climbs into the driver's seat.,\"runs through the gate, falling out of the ring.\",drives off along a dirt road.,topples over and takes off firing.,2\n18371,lsmdc1018_Body_Of_Lies-80001,8073,Someone reverses the vehicle a few feet. Someone,Someone reverses the vehicle a few feet.,Someone,gold,shows the informant away.,shoves the other pigs.,screech together in his office frame.,creeps up behind some rocks.,3\n18372,lsmdc1018_Body_Of_Lies-80001,8075,He takes out his binoculars and looks down at a collection of stone houses. A man,He takes out his binoculars and looks down at a collection of stone houses.,A man,gold,walks out a bright welcome to the corner.,sets down the slide on a leather rock as the gray settles.,\"jumps down the stairs, then does a steadying flip over the rope.\",stands by a fire on which a pile of cds and cassettes is burning.,3\n18373,lsmdc1018_Body_Of_Lies-80001,8072,People drive along a dirt road and stop at the top of a hill. Someone,People drive along a dirt road and stop at the top of a hill.,Someone,gold,turns on to a line through the yard.,leads the way up the hill towards a wooded path.,reverses the vehicle a few feet.,punches in the rough window before driving along the river.,2\n18374,lsmdc1018_Body_Of_Lies-80001,8084,Two choppers fly towards the scene. The young man,Two choppers fly towards the scene.,The young man,gold,\"returns, knocking the pins aside.\",finds off in a plane.,struggles to kick it off.,peers out from behind a wall.,3\n18375,lsmdc1018_Body_Of_Lies-80001,8078,Someone gets down by some rocks and pulls out the rifle's stand. The man at the fire,Someone gets down by some rocks and pulls out the rifle's stand.,The man at the fire,gold,picks up the overcoat.,dug out the window.,draws the soldier's boot.,sees someone and frowns.,3\n18376,lsmdc1018_Body_Of_Lies-80001,8088,\"Someone shoots him and runs out. As the house blows up, someone\",Someone shoots him and runs out.,\"As the house blows up, someone\",gold,is thrown off his feet.,sits upside down on his bed.,climbs up in cheering of someone.,sees the doctor on the table.,0\n18377,lsmdc1018_Body_Of_Lies-80001,8102,\"His face splattered with blood. Lying in a hospital, someone\",His face splattered with blood.,\"Lying in a hospital, someone\",gold,remembers being with someone and his family.,picks up his daughter.,sits alone in a narrow ditch.,backs up from a chair and unrolls off his cuff.,0\n18378,lsmdc1018_Body_Of_Lies-80001,8096,Someone drives off along a dirt road. The two choppers,Someone drives off along a dirt road.,The two choppers,gold,ride on recumbent bicycles.,stare at a group of zombies holding surfboards.,turn to look at him.,fly over the desert.,3\n18379,lsmdc1018_Body_Of_Lies-80001,8087,He turns a corner and sees a man holding a detonator with wires attached. Someone,He turns a corner and sees a man holding a detonator with wires attached.,Someone,gold,wears a cap that shows someone's timers farther away.,has someone up and out of view.,shoots him and runs out.,ghostly suddenly emerge and grabs an entryway.,2\n18380,lsmdc1018_Body_Of_Lies-80001,8083,He exchanges fire with the young man. Two choppers,He exchanges fire with the young man.,Two choppers,gold,knock him up in the air.,fly towards the scene.,stand on top of him.,fly out at the temple.,1\n18381,lsmdc1018_Body_Of_Lies-80001,8098,The rpg grazes a chopper and the chopper destroys one of the four - by - fours. The chopper,The rpg grazes a chopper and the chopper destroys one of the four - by - fours.,The chopper,gold,fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof.,gets to the edge.,fires and careens toward one's vehicle.,\"flies in as a huge jet flies just above the airport, which hovers on its side.\",0\n18382,lsmdc1018_Body_Of_Lies-80001,8089,\"As the house blows up, someone is thrown off his feet. The black choppers\",\"As the house blows up, someone is thrown off his feet.\",The black choppers,gold,swirls up and lift their heads.,flash in the second direction.,\"fly above a winding river, then a forest.\",rise from the pile.,2\n18383,lsmdc1018_Body_Of_Lies-80001,8085,Someone runs to the house. Someone,Someone runs to the house.,Someone,gold,follows someone to his house.,starts using - act fitness clothes.,enters the house with his gun held out in front.,enters with his phone slung in his shoulder.,2\n18384,lsmdc1018_Body_Of_Lies-80001,8104,The Iraqi prisoner being beaten to death. A doctor,The Iraqi prisoner being beaten to death.,A doctor,gold,walks out of the studio.,'s guards appear.,\"leans over someone, who wakes.\",scratches his beard.,2\n18385,lsmdc1018_Body_Of_Lies-80001,8103,\"Lying in a hospital, someone remembers being with someone and his family. The Iraqi prisoner\",\"Lying in a hospital, someone remembers being with someone and his family.\",The Iraqi prisoner,gold,being beaten to death.,is in his suits.,has dropped his people.,\"has entered in a quaint, battered file shop.\",0\n18386,lsmdc1018_Body_Of_Lies-80001,8090,\"The black choppers fly above a winding river, then a forest. Someone\",\"The black choppers fly above a winding river, then a forest.\",Someone,gold,drags someone to the four - by - four.,'s eyes follow someone of people standing against a row of marble pillars.,shines on gunpowder from a laundromat in his cupped hand.,treads from the humanoid courtyard.,0\n18387,lsmdc1018_Body_Of_Lies-80001,8086,Someone enters the house with his gun held out in front. He,Someone enters the house with his gun held out in front.,He,gold,puts his own hands around.,turns a corner and sees a man holding a detonator with wires attached.,checks a slat for twenty minutes and sweeps it way down the street in front of its open village of sparking funeral embers.,phone is crashing down the windscreen.,1\n18388,lsmdc1018_Body_Of_Lies-80001,8092,Someone burns his hand as he grabs cds and cassettes from the fire. Someone,Someone burns his hand as he grabs cds and cassettes from the fire.,Someone,gold,slides off a rock barrier onto a wooden jetty lined with vast medieval guests.,stuffs the mop back in his pocket.,\"glances over to someone, holding his wand, feeling his strength.\",\"drags him to the four - by - four, throws him in the back and drives off.\",3\n18389,lsmdc1018_Body_Of_Lies-80001,8099,The chopper fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof. It,The chopper fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof.,It,gold,paned flat on the roof above a building's rooftop overpass.,\"slides to a stop in the dirt, throwing someone about in the back.\",shows someone's glinting.,lies in the water.,1\n18390,lsmdc1018_Body_Of_Lies-80001,8093,\"Someone drags him to the four - by - four, throws him in the back and drives off. Explosions\",\"Someone drags him to the four - by - four, throws him in the back and drives off.\",Explosions,gold,\"one of the window, someone continues the reactor, exposing its water.\",rip through the buildings.,steps into the driveway and someone is lurking in the shadows on the other side of a house.,scatter on the ground a tear spills along the ground.,1\n18391,lsmdc0020_Raising_Arizona-57508,19456,Someone's feet leave the ground. He,Someone's feet leave the ground.,He,gold,gapes as it slams into the ground.,sniffs around and throws someone at the ground.,flies back and lands in a heap.,starts the locket and finds the canvas clinging to the canvas abdomen.,2\n18392,lsmdc0020_Raising_Arizona-57508,19458,Someone is looking back over his shoulder to shout at someone as he runs. - someone,Someone is looking back over his shoulder to shout at someone as he runs.,- someone,gold,runs smack into a tree and drops like a sack of cement.,flips slowly to the side of the lifeboat.,stops by the head - gun table.,climbs up the staircase to his street and starts the hangar door.,0\n18393,lsmdc0020_Raising_Arizona-57508,19457,\"With someone still advancing, someone starts to run. Someone\",\"With someone still advancing, someone starts to run.\",Someone,gold,\"strokes the unconscious driver's arm, body lowered and carrying the high knee above back to the crowd.\",\"flies, a tall thin man in a grey suit, tries to cart the treated men off the last railcar.\",is looking back over his shoulder to shout at someone as he runs.,\"spots something and flips back on, stumbling over again, meeting up in the end zone.\",2\n18394,anetv_pqVWGi0d4RU,19912,A series of scenes from hockey games are shown. An overhead view of one of the hockey team's benches,A series of scenes from hockey games are shown.,An overhead view of one of the hockey team's benches,gold,and several men speaking and hiding are shown.,is shown and now a referees arrow is balanced across the court.,is shown with seated players.,and is shown in the background.,2\n18395,anetv_pqVWGi0d4RU,3189,\"Other teams play ice jockey and a man get injured, then the team play and win. A man\",\"Other teams play ice jockey and a man get injured, then the team play and win.\",A man,gold,\"chases a boy, trying to carry the patch that the crowd congratulate the male.\",exits the high country that makes a run toddler run very fast.,talks on front a microphone.,addresses the players on the table.,2\n18396,anetv_41LaEr0i2Dc,12980,People are being pulled behind the boat. Waves,People are being pulled behind the boat.,Waves,gold,ripple behind the boats.,in the coaches are staying on.,are being carried by a boats.,jump onto the track.,0\n18397,anetv_41LaEr0i2Dc,8912,Boats are seen floating on the water. We then,Boats are seen floating on the water.,We then,gold,see the green waters on the water.,see a person next to people begin kayaking through an ocean.,see canoes sitting on the ride.,\"see people on the boat, and pulling people on water skis.\",3\n18398,anetv_41LaEr0i2Dc,12978,A large river runs through a canyon. Several boats,A large river runs through a canyon.,Several boats,gold,are shown being overturned.,stand together along and down the river.,ride through the water.,fly from a standing raft.,2\n18399,anetv_41LaEr0i2Dc,8911,A view is shown of a vast and long canyon. Boats,A view is shown of a vast and long canyon.,Boats,gold,is being put rafting in the sand in the water.,propel from a viewpoint in the sea and scorched land.,are seen floating on the water.,are shown racing onto the bridge.,2\n18400,anetv_41LaEr0i2Dc,12979,Several boats ride through the water. People,Several boats ride through the water.,People,gold,are being pulled behind the boat.,are rafters in a small boat.,are floating on inflated tires.,ride a canoe through large trees.,0\n18401,anetv_ETHVjrG7S4k,5843,The men then hop on a set of bars. The,The men then hop on a set of bars.,The,gold,climb across the bars and cheer with other people.,flip each other on the wall.,two men get the slide and dance when they arrive.,competition and falling over the obstacles and others watch.,0\n18402,anetv_ETHVjrG7S4k,706,People walks on a field equipped with large monkey bars. Then people,People walks on a field equipped with large monkey bars.,Then people,gold,climbs the monkey bars and advance until reach the other side of the bars.,shoot and climb up the fence and does a hand stand.,sit in front of another group of bikers before taking off under a huge tree.,are shown in other groups.,0\n18403,anetv_ETHVjrG7S4k,707,\"Then people climbs the monkey bars and advance until reach the other side of the bars. After, people\",Then people climbs the monkey bars and advance until reach the other side of the bars.,\"After, people\",gold,are in a gym doing a very stiff dance and doing pretty varying everything.,steps to the wall as a tile step comes.,walks to a stand where people serves water.,are swimming around and pick up papers.,2\n18404,anetv_C4QrTmNDADY,13362,A man is seen laying on the floor and begins demonstrating how to properly perform dance moves as well as the wrong way to perform them. The man,A man is seen laying on the floor and begins demonstrating how to properly perform dance moves as well as the wrong way to perform them.,The man,gold,continues jumping up and raising the legs up while showing the side of his back to watch him dance.,moves his hands up and down while grabbing one of his hands and holding his arms up in the air.,continues to play the guitar while the camera switches up to showing the girls warming up.,continues moving all around the floor and leads into several clips of people performing the move.,3\n18405,anetv_8l7SuE4_lCk,9065,The man then begins brushing his teeth in several shots. He,The man then begins brushing his teeth in several shots.,He,gold,moves his tongue around showing the teeth while speaking to himself.,smiles and the camera switches to video of himself.,continues brushing his teeth and showing off his mouth in the end.,continues to speak to the camera while speaking.,2\n18406,anetv_8l7SuE4_lCk,9064,A young man is seen looking into the camera holding a toothbrush. The man then,A young man is seen looking into the camera holding a toothbrush.,The man then,gold,begins brushing his teeth with the rag and moving his hands around.,begins brushing his teeth in several shots.,begins shaving the bottom of his eyes and begins to shave.,\"wets the cut, then puts again the plastic on the surface.\",1\n18407,anetv_wott7JRSkOk,18917,Two men plays soccer table moving the players on the rods. A man,Two men plays soccer table moving the players on the rods.,A man,gold,throws a green ball in a field and another player chases him.,wearing yellow shirt stroke the rod strong to hit the white ball.,moves chairs to a starts and falls in the yard.,bends down to watch their.,1\n18408,lsmdc3073_THE_GUILT_TRIP-34835,14597,She carefully closes the door and tiptoes in. Someone,She carefully closes the door and tiptoes in.,Someone,gold,opens the door and turns to someone.,looks at the log for a moment.,lies in bed as daylight shines through the windows.,\"runs forward as it passes, hanging from sinuous roots.\",2\n18409,lsmdc3073_THE_GUILT_TRIP-34835,14596,\"Later, someone enters their hotel room, holding a half - finished drink. She\",\"Later, someone enters their hotel room, holding a half - finished drink.\",She,gold,grabs it from her dress and shuffles it behind the shopping bag.,approaches the bar and approaches the counter.,carefully closes the door and tiptoes in.,leaves the room then hurries back in.,2\n18410,lsmdc0017_Pianist-55770,14997,The table groans with the remains of the dinner. They all,The table groans with the remains of the dinner.,They all,gold,try to read off the ball up again.,talk with savagely grabbing the phone.,take their seats facing the statue of the instructor and aim their chests.,clink glasses and drink.,3\n18411,lsmdc0017_Pianist-55770,14995,Someone pours liqueur into glasses. The family,Someone pours liqueur into glasses.,The family,gold,sits with people there.,accepts their bulging sacks.,\"are seated around the dining table, having just finished a meal.\",turns round and smiles.,2\n18412,lsmdc0017_Pianist-55770,15001,\"Someone is opening and closing the window, examining the frame with her fingers. At the other end, someone\",\"Someone is opening and closing the window, examining the frame with her fingers.\",\"At the other end, someone\",gold,sits counting a small stack of notes and coins.,aims the wand at someone.,finds a lawn coat and the scars paste from the old window.,\"looks in an evidence poker, and resumes shaving.\",0\n18413,lsmdc0017_Pianist-55770,14999,\"On the sidewalk of the street, with its buildings in ruins, smoke still rising, stand onlookers, including people, and a little behind them, someone, craning to see. They\",\"On the sidewalk of the street, with its buildings in ruins, smoke still rising, stand onlookers, including people, and a little behind them, someone, craning to see.\",They,gold,have their cannon pointed in their own.,\"put their horns in the court, then describes their billy in a club called a night - pong experience.\",\"watch, expressionless, as the germans march past.\",arrive at the hedestad halt.,2\n18414,lsmdc0017_Pianist-55770,15000,\"They watch, expressionless, as the Germans march past. Someone\",\"They watch, expressionless, as the Germans march past.\",Someone,gold,\"goes frantically, circling in the direction of the cliff.\",frowns as someone's finger is plucked at her lip.,\"is opening and closing the window, examining the frame with her fingers.\",drops down at her alien.,2\n18415,lsmdc0017_Pianist-55770,14998,\"A column of German Soldiers, led by an officer on horseback, march into view. On the sidewalk of the street, with its buildings in ruins, smoke still\",\"A column of German Soldiers, led by an officer on horseback, march into view.\",\"On the sidewalk of the street, with its buildings in ruins, smoke still\",gold,\"rising, stand onlookers, including people, and a little behind them, someone, craning to see.\",smoke from behind another helicopter.,form around someone's face.,tangled in the windshield and past the plane.,0\n18416,lsmdc0017_Pianist-55770,14996,\"The family are seated around the dining table, having just finished a meal. The table\",\"The family are seated around the dining table, having just finished a meal.\",The table,gold,groans with the remains of the dinner.,\"is a child, pieces of food, oily papers.\",is taken from him.,looks with turbulent voices.,0\n18417,lsmdc1040_The_Ugly_Truth-8811,15337,\"Someone goes into the room, then quickly reemerges and runs down the corridor after someone. He\",\"Someone goes into the room, then quickly reemerges and runs down the corridor after someone.\",He,gold,lies on his hands in a transparent cot.,stops and turns to face her.,climbs up to pick something up.,\"turns to people, and sits alone in the lounge.\",1\n18418,anetv_QHF28_yGOV8,15501,\"A man in a black wet suit and carrying a surfboard is talking to the camera man, about to get in the water. Dramatic music\",\"A man in a black wet suit and carrying a surfboard is talking to the camera man, about to get in the water.\",Dramatic music,gold,\"plays while showing various clips of surfers in the water, riding waves.\",comes onto the shore.,plays as the man then starts drumming on a drum set next to smoking.,plays is shown of the buzzing forming it - - the audience today practice.,0\n18419,anetv_QHF28_yGOV8,15502,\"Dramatic music plays while showing various clips of surfers in the water, riding waves. The video\",\"Dramatic music plays while showing various clips of surfers in the water, riding waves.\",The video,gold,ends as the man in the black wet suit comes on shore after riding a wave and smiling.,leads into people throwing suits and jumping off board another as they continue on.,cuts to a cheerleader team in a a news segment that is being interviewed for the upcoming soccer event.,ends with the camera panning back to the woman who is showing off her jacket.,0\n18420,anetv_hmb86jpgWfE,11499,\"The woman continues talking while measures off coffee display the time in time in the screen. Then,\",The woman continues talking while measures off coffee display the time in time in the screen.,\"Then,\",gold,the girl put liquid in the machine and the person is seen mixing the liquid with an iron.,\"creates a cooks and stack the video, adds juice and mixes it soaking it, then sprays a liquid on it.\",the dog performs another octave the town was finished.,\"appears a picture of a cup of coffee writing red eye, after the woman continues talking.\",3\n18421,anetv_hmb86jpgWfE,11498,\"A woman talks holding an empty cup, and coffee fills in cups. The woman\",\"A woman talks holding an empty cup, and coffee fills in cups.\",The woman,gold,gets the drink out of the cup and puts it on the floor.,heats the yellow paper in coffee to completion.,continues talking while measures off coffee display the time in time in the screen.,puts dealer cans and silverware paned glass while the man gives some liquid.,2\n18422,anetv_hmb86jpgWfE,3927,A lady talks while holding a red coffee mug. A coffee machine,A lady talks while holding a red coffee mug.,A coffee machine,gold,holds the foot of the table.,\"fills two, glasses with coffee simultaneously.\",is displayed on the floor.,sits in front of her.,1\n18423,anetv_hmb86jpgWfE,3926,The credits of the clip are shown. A lady,The credits of the clip are shown.,A lady,gold,laughing and puts on.,paints a contact lens with a solution.,puts contacts into her eye.,talks while holding a red coffee mug.,3\n18424,lsmdc3063_SOUL_SURFER-31374,6631,Someone beams proudly and cups her cheek in his hand. He,Someone beams proudly and cups her cheek in his hand.,He,gold,talks alone at a fair.,gently rubs on someone's shoulder.,plants a kiss on her forehead.,accepts his vest gun for someone.,2\n18425,lsmdc3063_SOUL_SURFER-31374,6632,\"Two guys carry someone on their shoulders, someone joins her mother. Someone\",\"Two guys carry someone on their shoulders, someone joins her mother.\",Someone,gold,put a pink spot in the sport bra.,rises and walks back toward someone's room.,chugs his whiskey at tall plastic cup.,smiles and shakes her head.,3\n18426,lsmdc3063_SOUL_SURFER-31374,6630,She gives a satisfied grin. Someone,She gives a satisfied grin.,Someone,gold,beams proudly and cups her cheek in his hand.,\"stares at him, then removes his pajama bottoms.\",stares at the company television.,yawns at someone's farmhouse.,0\n18427,anetv_reEjJfSUGa8,7517,\"The biker jumps in the ramp with his bike in front up. Four bikers raced and jumped over the ramps, the biker in white\",The biker jumps in the ramp with his bike in front up.,\"Four bikers raced and jumped over the ramps, the biker in white\",gold,is leading in the race.,trunks jumps into the air.,kicked it once and then back gets going.,drops the fallen man on the ground.,0\n18428,anetv_reEjJfSUGa8,7516,The biker is cycling and jumping over the big ramps. The biker,The biker is cycling and jumping over the big ramps.,The biker,gold,falls into the sand.,holding red jacket picks up his score.,jumps in the ramp with his bike in front up.,jumps on a concrete barrier and falls in the snow.,2\n18429,anetv_-npRRmY2wBs,12720,The bull charges at the people. They,The bull charges at the people.,They,gold,wrestle with the bull.,take off her swinging.,start to chase him from the bull.,walk through the woods around a large pile of wood.,0\n18430,anetv_-npRRmY2wBs,12719,Several people stand in an arena. There,Several people stand in an arena.,There,gold,band blows ruler.,picks up a photo of a faint pink band.,person plays their fight back and forth.,is a small bull inside of it.,3\n18431,anetv_-npRRmY2wBs,17126,A bull is chasing them around. A man,A bull is chasing them around.,A man,gold,is then holding a farmer's belt.,is outside in rings and trying to open a clown kite.,grabs after darts and begins spraying the dogs with the other one.,drinks beer from a plastic cup.,3\n18432,anetv_-npRRmY2wBs,17125,People are standing in a pen. A bull,People are standing in a pen.,A bull,gold,pushed him down a narrow slope.,throws a frisbee to a bull.,is chasing them around.,is trying to make a meal.,2\n18433,lsmdc3069_THE_BOUNTY_HUNTER-4783,13169,She turns her back to him and punches her pillow. He,She turns her back to him and punches her pillow.,He,gold,\"taps her with her foot, his brow soft.\",\"eyes her, smiling.\",shoves her through her open door.,kicks his beard in half.,1\n18434,lsmdc3069_THE_BOUNTY_HUNTER-4783,13170,\"He eyes her, smiling. A mural on a slim, brick building\",\"He eyes her, smiling.\",\"A mural on a slim, brick building\",gold,bears someone's name.,shows someone in the woods.,passes one of the aisles.,walks through a neighborhood.,0\n18435,lsmdc3069_THE_BOUNTY_HUNTER-4783,13173,Someone raises a golf club to let someone pass. He,Someone raises a golf club to let someone pass.,He,gold,steps into a bathroom block and pads against a police car.,\"sprints in the street, fast and almost very shabby.\",grasps someone's sword.,leads someone into a grungy bathroom where someone sits handcuffed to a pipe.,3\n18436,lsmdc3069_THE_BOUNTY_HUNTER-4783,13172,Someone enters the back room with a pizza. Someone,Someone enters the back room with a pizza.,Someone,gold,removes the unopened envelope from the bedside table and flips it open.,raises a golf club to let someone pass.,picks up a newspaper.,gets out and sighs.,1\n18437,lsmdc3069_THE_BOUNTY_HUNTER-4783,13174,He leads someone into a grungy bathroom where someone sits handcuffed to a pipe. Someone,He leads someone into a grungy bathroom where someone sits handcuffed to a pipe.,Someone,gold,swings an orange camouflage belt over someone's shoulders as the guard claps his hands while his poses.,shields his lighted eyes as someone looks at his mother.,stands up and covers someone's face with the towel.,hands someone the golf club.,3\n18438,anetv_FnrvqpjHe6I,18395,The female players walked as they kicked the ball from one side to the next. The players,The female players walked as they kicked the ball from one side to the next.,The players,gold,\"fell in the floor as the other players legs, while a coach speak.\",scores a goal and continue to push it over the net while other players react to the score.,kicked the ball to the next person on the opposite side of the court.,paint the puck around each other trying to score on the goal.,2\n18439,anetv_FnrvqpjHe6I,18393,\"The young female players are running around the court throwing ball to on each other. Some of the players are avoiding the ball, so they\",The young female players are running around the court throwing ball to on each other.,\"Some of the players are avoiding the ball, so they\",gold,don't knock them.,run along the field.,continue to run around.,\"continue to hit the ball to their teammate, trying to jump the balls or get up and continue avoided.\",2\n18440,anetv_FnrvqpjHe6I,18394,\"Some of the players are avoiding the ball, so they continue to run around. The female players\",\"Some of the players are avoiding the ball, so they continue to run around.\",The female players,gold,walked as they kicked the ball from one side to the next.,show on a start.,continue taking bullets and hitting hitting pins.,begin again hitting each other with the sticks when one tries others.,0\n18441,lsmdc0029_The_Graduate-64485,11060,They stop eating and turn toward him. He,They stop eating and turn toward him.,He,gold,goes back to his breakfast.,\"pats someone's hand, which now touches the tutor to someone's.\",is inside the garage.,finds his watch ring taped on his belt.,0\n18442,lsmdc0029_The_Graduate-64485,11059,He jams on the brakes and stops the car in the middle of the street. They,He jams on the brakes and stops the car in the middle of the street.,They,gold,\", the man runs off through a busy street, looking around where he consists of people get out.\",stop eating and turn toward him.,hurry through the gathering room.,quickly opens all the windows up and sees the gq panel of himself on the wall.,1\n18443,lsmdc0032_The_Princess_Bride-65895,16740,\"She leaves; his eyes stay on her. She stops, turns - - he\",She leaves; his eyes stay on her.,\"She stops, turns - - he\",gold,manages to look away as now her eyes stay on him.,has nothing to her.,\"wrenches the wheel, forcing them to the drop of a coffee.\",gives someone a tight smile.,0\n18444,lsmdc0032_The_Princess_Bride-65895,16738,Someone is perhaps half a dozen years older than someone. He,Someone is perhaps half a dozen years older than someone.,He,gold,has a snatcher who is spotless and even with pain.,gazes at her as she walks away.,\"him in the face as the teller looks up at someone blurry, his eyes fill with tears, and looks slowly to bed.\",washes his upper body with his hands.,1\n18445,lsmdc0032_The_Princess_Bride-65895,16741,\"She stops, turns - - he manages to look away as now her eyes stay on him. Someone\",\"She stops, turns - - he manages to look away as now her eyes stay on him.\",Someone,gold,enters with an armload of firewood.,walks slowly to a comfy cat.,\"turns her head, and someone lays her head back and strokes her head.\",\"tends to someone, then pinches her lips.\",0\n18446,lsmdc0032_The_Princess_Bride-65895,16739,He gazes at her as she walks away. Someone,He gazes at her as she walks away.,Someone,gold,trudges back from the dining room.,drops two large buckets near him.,peers over the counter at another time.,whips off someone's hair.,1\n18447,lsmdc0032_The_Princess_Bride-65895,16735,\"The two of them as the Grandfather sits in a chair by the bed. The story he is reading about, as the monochromatic look of the bedroom\",The two of them as the Grandfather sits in a chair by the bed.,\"The story he is reading about, as the monochromatic look of the bedroom\",gold,\"has faded, dusty fingers.\",\"is drawn to book, shifting back and forth to one side of the window with his eyes focused melancholy on the painting.\",is shown and his fear is to brief the unknown sketch of the grail.,is replaced by the dazzling color of the english countryside.,3\n18448,lsmdc0032_The_Princess_Bride-65895,16736,\"Someone is standing, holding the reins of her horse, while in the background, someone, in the stable doorway, looks at her. Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she\",\"Someone is standing, holding the reins of her horse, while in the background, someone, in the stable doorway, looks at her.\",\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she\",gold,is very well - - and puts her face up on the grass beside a tree.,is still probably the most beautiful woman in the world.,bear keeps a snowflake in her hand that tries to make her life.,is shorter and somewhat sexy.,1\n18449,lsmdc0032_The_Princess_Bride-65895,16737,\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she is still probably the most beautiful woman in the world. Someone\",\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she is still probably the most beautiful woman in the world.\",Someone,gold,is perhaps half a dozen years older than someone.,\"gasps from someone - - and continues to do some stunts, but sometimes it too does n't change.\",\"pulls up on the steps, heads us to the bedroom.\",\"pushing her away on so tight, he leans forward and closes the bathroom door behind her eye.\",0\n18450,lsmdc3079_THINK_LIKE_A_MAN-36577,2767,Someone counts down on his fingers. He,Someone counts down on his fingers.,He,gold,\"is lying on a roof, a fire all around them.\",\"cocks his head at someone, then turns back to the pretty woman.\",lays a steak on top of a server.,folds chips with scissors as others pass.,1\n18451,anetv_ShiBZnuxlmc,3635,\"The girl rubs her hands together a few times, the audience claps, she smiles and raises her two arms in the air, smiles, turns to the horse and runs and jumps until she lands on the balance beam. The girl immediately begins her routine and it\",\"The girl rubs her hands together a few times, the audience claps, she smiles and raises her two arms in the air, smiles, turns to the horse and runs and jumps until she lands on the balance beam.\",The girl immediately begins her routine and it,gold,\"includes a lot of flips, walking, twirls, hand movements, spins and etcetera.\",'s ready to do very long jumps and again the girl ends perfectly and dancing behind poses with her arms to assist her.,begins to move over to the end of the mat where the trainer shows the rest high - cartwheels and location backflips.,is too difficult for her hardwood goals and jumping up and lands on a stool as the group gathers to clap.,0\n18452,anetv_VUlsdTzaKV4,9158,\"The snowboarder is doing tricks on the snow. Then, the snowboarder\",The snowboarder is doing tricks on the snow.,\"Then, the snowboarder\",gold,sands also in the mountain before returning.,begins to help the festive skateboard down a mountain environment.,\"explains the technique how to jump and turn with the board, and shows the turns on the snow.\",stands in the road going over three waves.,2\n18453,anetv_VUlsdTzaKV4,9157,\"An advertisement presents a snowboarder in a sky station, who holds a snowboard. The snowboarder\",\"An advertisement presents a snowboarder in a sky station, who holds a snowboard.\",The snowboarder,gold,is going down the rocky slope and speaks.,is doing a balance on a snowy mountain.,is doing tricks on the snow.,slows down for a while.,2\n18454,anetv_VUlsdTzaKV4,25,The credits of the clip are shown. A guy,The credits of the clip are shown.,A guy,gold,does a gymnastic exercise in a gym.,talks while standing on a snowy slope.,flips off a court with his arms up.,is running around on a yellow wire.,1\n18455,anetv_-ntEh6HpeX0,14935,A woman wearing gloves is in front of a sink. She,A woman wearing gloves is in front of a sink.,She,gold,sprays water all over the dog's fur.,drops a broom on the ground.,starts soaping them up with a soap brush.,sprays it down with a cleaning solution.,3\n18456,anetv_-ntEh6HpeX0,14936,She sprays it down with a cleaning solution. She then,She sprays it down with a cleaning solution.,She then,gold,brushes it with a spray bottle.,scrubs the sink until it is clean.,jumps into a boat and other teammates in a boat.,uses a final wipe on the painting.,1\n18457,anetv_ZvVnXvKlKbQ,15060,A crowd cheers sitting behind the bowling alley. A man,A crowd cheers sitting behind the bowling alley.,A man,gold,kisses a trophy in his hands.,shoots a basketball while other people watch.,pops up in the basement.,falls into the lift on a tennis court.,0\n18458,anetv_ZvVnXvKlKbQ,15059,Bowling pins are getting hit with bowling ball. A crowd cheers,Bowling pins are getting hit with bowling ball.,A crowd cheers,gold,furious as fans fight and cheer for celebration of the jury.,beats the balls back from the climbers.,sitting behind the bowling alley.,wrestling on the side.,2\n18459,anetv_uHLEUps_ahs,7325,He is talking about the saxophone in his hands and showing the proper hand positions. He,He is talking about the saxophone in his hands and showing the proper hand positions.,He,gold,demonstrates how to play the instrument.,\"leans forward, dances, holding the bongos as he talks.\",is on this drum surface and is drawn to the words machine while doing the elliptical.,\"ends by setting the jump off of a trampoline and grabbing the far right point and diving, trying over the last time.\",0\n18460,anetv_uHLEUps_ahs,7324,A man is standing in front of a white screen. He,A man is standing in front of a white screen.,He,gold,nods and walks towards the camera.,is using a piece of exercise equipment to clean a metal.,is talking about the saxophone in his hands and showing the proper hand positions.,is playing a saxophone.,2\n18461,anetv_yINX46xPRf0,6947,The people are wearing oxygen thanks while in the pool. The people,The people are wearing oxygen thanks while in the pool.,The people,gold,rinse wearing each other under the water while a woman paddles.,are in a tank.,walked to the car that was going through other side seats.,are training on how to dive and swim under water with their oxygen on.,3\n18462,anetv_yINX46xPRf0,16778,They are next shown swimming around the water and gesturing to the camera. More kids,They are next shown swimming around the water and gesturing to the camera.,More kids,gold,are watching on the side when they are done.,are seen flipping around under the water.,are seen riding under the water.,are seen swimming in the pool and showing off its moves.,1\n18463,anetv_yINX46xPRf0,16777,Several pictures are shown of people sitting together as well as video of them sitting in a stand. They,Several pictures are shown of people sitting together as well as video of them sitting in a stand.,They,gold,hold up and walk away.,people are seen laid out and laying down a set of mats and moving their hands in the machine.,ride back to the camera angrily.,are next shown swimming around the water and gesturing to the camera.,3\n18464,lsmdc0051_Men_in_black-71019,850,\"Someone, the jewelry store owner, steps out of a cab in the meat - packing district, still carrying the ornate box and his beloved cat. A moment later, someone van\",\"Someone, the jewelry store owner, steps out of a cab in the meat - packing district, still carrying the ornate box and his beloved cat.\",\"A moment later, someone van\",gold,pulls to a stop across the street.,swerves through the porch window.,\"approaches the crowded carriage; with, she carries the vase with his briefcase.\",comes to a stop and heads down a sidewalk.,0\n18465,lsmdc0051_Men_in_black-71019,856,\"They hold on, long and hard, and both seemed choked with emotion. Finally, they\",\"They hold on, long and hard, and both seemed choked with emotion.\",\"Finally, they\",gold,break apart and take their seats.,break apart and sit around shaking their hips.,\"stop playing, then faces boys after back at the motocross riders.\",twirl steady at their feet and begins several dogs on horses tricks.,0\n18466,lsmdc0051_Men_in_black-71019,853,\"At a table in the middle, he sees a man eating alone - - an enormous, dignified, yet profoundly strange - looking man in his mid fifties. Someone\",\"At a table in the middle, he sees a man eating alone - - an enormous, dignified, yet profoundly strange - looking man in his mid fifties.\",Someone,gold,\"looks like a last man in the beginning, remove weird poker from even bats, to instructions viewers about what they do.\",is on someone who has a telephone in front of the watch on the table.,\"grins at her, nervously.\",\"walks carefully over to the table, but does not sit down.\",3\n18467,lsmdc0051_Men_in_black-71019,855,\"The embrace has an odd, formal quality to it, like mafiosi coming to a sitdown. They hold on, long and hard, and both\",\"The embrace has an odd, formal quality to it, like mafiosi coming to a sitdown.\",\"They hold on, long and hard, and both\",gold,make love trying to secure.,are simple losing their names with one of them.,are small earrings and thowing bobble and humanity including prizes in the front.,seemed choked with emotion.,3\n18468,lsmdc0051_Men_in_black-71019,854,\"Someone walks carefully over to the table, but does not sit down. He\",\"Someone walks carefully over to the table, but does not sit down.\",He,gold,\"steps forward, to face someone, who sets the ornate box on the table.\",goes back out the window.,sits up awkwardly with his hand horizontally against his neck.,pushes herself down onto her lap and stops smiling.,0\n18469,lsmdc0051_Men_in_black-71019,852,\"He heads into someone's, a Russian diner. Someone\",\"He heads into someone's, a Russian diner.\",Someone,gold,\"comes into the tiny restaurant, squinting in the relative darkness.\",starts b. the stone hall.,dives into the stolen paradise in the other room.,\"hurriedly directs riding the procession, leaving the windows.\",0\n18470,anetv_-XCESzrIWXA,9755,Two of the men hug on the court. A person,Two of the men hug on the court.,A person,gold,hits the ball with the mallet.,puts the grail cards inside a bag.,kicks a ball into the goal.,puts a hand on the fire cone.,2\n18471,lsmdc0005_Chinatown-48002,8280,\"Someone looks to his right where the bay is a long, clear crescent. Someone\",\"Someone looks to his right where the bay is a long, clear crescent.\",Someone,gold,\"glances across at him as his father gets in the truck, looking embarrassed, and almost laugh when he finally walks along.\",the momentum; it clatters down.,\"hesitates, then moves in that direction but climbs along the promontory in order to be above someone.\",\"kneel in the hospital, staring at people.\",2\n18472,lsmdc0005_Chinatown-48002,8281,Someone picks up a starfish. Someone,Someone picks up a starfish.,Someone,gold,\"stands and stares at the water, apparently fascinated.\",puts his wrist at the shoulders.,\"watches the horizon with an assault rifle, and holds a rifle to his head with an wounded rifle.\",\"is laden with someone, and several other guys, and boom in.\",0\n18473,anetv_bOp6pObPeZ4,10351,A woman and a man are dancing on a stage. There,A woman and a man are dancing on a stage.,There,gold,are other cheerleaders in talking to the crowd in front of an audience watching them.,\"are walking behind them, a hanging weighted bar.\",is a band playing behind them.,are playing beer pong.,2\n18474,anetv_bOp6pObPeZ4,10352,There is a band playing behind them. There,There is a band playing behind them.,There,gold,\", blue warriors are gathered in the green for the song in their huge tent.\",welder are shown exercising in a field.,is an audience sitting in chairs clapping for them.,girl with a yellow shirt gives a harmonica to the musician and begins to be and some music is about to start up.,2\n18475,anetv_bY0vSkxH0PE,14106,A child watches at a window while a man outdoors is shoveling snow. He,A child watches at a window while a man outdoors is shoveling snow.,He,gold,\"moves back and forth, picking up snow and moving it away from the door.\",is talking on the edge of the house and he is snowboarding at snow with only the snow covered fence.,is then shown walking outside with snow while talking to a cameraman shovel.,backs over and starts to frame by laying the bike down on a table.,0\n18476,anetv_hHMqyl_Dugs,9825,A man is creating a hole in the ice. He,A man is creating a hole in the ice.,He,gold,appears behind him as he is peeling a fish.,pulls a line from the waters beneath the hole.,puts a spoon into a pot into the water.,is walking in a boat to the side.,1\n18477,anetv_hHMqyl_Dugs,13812,Man is holding the fish by the mouth. a small piece of wood is on hole pulling the thread and a man,Man is holding the fish by the mouth.,a small piece of wood is on hole pulling the thread and a man,gold,keeps holding it with his hands.,is kneeling under the fire.,holds it and begins welding it.,begins to tape the stump.,0\n18478,anetv_hHMqyl_Dugs,13811,Man is doing snow fishing in a hole pulling a thread and holding a fish. man,Man is doing snow fishing in a hole pulling a thread and holding a fish.,man,gold,is in the water making a covered raft in a open.,is holding the fish by the mouth.,is doing wakeboarding while holding his dry ring.,is underwater with his feet spinning taking out the fish and swimming.,1\n18479,lsmdc0028_The_Crying_Game-63907,15411,She ties the other and is drawing it upward when he wakes. She,She ties the other and is drawing it upward when he wakes.,She,gold,eats some crumpled paper up so a stamp is touched someone's name.,jerks the silk stocking so it is secure.,bends down to watch this color coming from the next color.,is wearing a leafy robe.,1\n18480,lsmdc0028_The_Crying_Game-63907,15413,He tries to pull on the bindings. She,He tries to pull on the bindings.,She,gold,\"stands up, still pointing the gun at someone.\",grabs him by pushing him away.,unwraps a prescription bottle and holds it under the cotton sheet.,sits down and stares into her eyes.,0\n18481,lsmdc0028_The_Crying_Game-63907,15412,She takes a gun from under the bed and slips it in her handbag. He,She takes a gun from under the bed and slips it in her handbag.,He,gold,tosses the spilled drink into his bag.,tries to pull on the bindings.,pulls the pin from her purse.,glances back and begins rubbing his hands on someone's muscle figure.,1\n18482,lsmdc0006_Clerks-48729,9380,A customer comes to the counter and waits. He,A customer comes to the counter and waits.,He,gold,\"opens, baking soda and milk and placed a finger in the oven.\",puts the shoe down in front of the toilet bag cabinet.,\"turns around rummages, picks it up, and waits wildly.\",looks at the litter box.,3\n18483,lsmdc0006_Clerks-48729,9381,He looks at the litter box. A black cat,He looks at the litter box.,A black cat,gold,flies up in front of him.,fairy mounts her fridge with a box of $stubby baby bolts.,walks down the stairs leading to the new living room.,suddenly jumps into it and starts pawing around.,3\n18484,lsmdc0006_Clerks-48729,9382,Someone looks quizzically at someone. Someone,Someone looks quizzically at someone.,Someone,gold,releases someone and starts to walk away.,stares in the room at her eyes.,frowns and heads toward the shot.,looks the girls up and down.,3\n18485,lsmdc0017_Pianist-56411,18305,\"Someone produces a quarter bottle of vodka, thumps the back of the bottle so that the cork flies out. He\",\"Someone produces a quarter bottle of vodka, thumps the back of the bottle so that the cork flies out.\",He,gold,finds glasses and pours.,\"takes another drink, then makes his way past the bar on casually.\",is smaller than her base.,pushes the sticks as far as it can.,0\n18486,lsmdc0017_Pianist-56411,18306,He finds glasses and pours. He,He finds glasses and pours.,He,gold,fills a grill with soda.,shows a note card to one of them.,smashes a piece of paper into the glass.,gives the others their vodka.,3\n18487,anetv_aIwFZCRFHx8,17531,Then the cars get powered on and they are able to get driven. After the people are done driving they all,Then the cars get powered on and they are able to get driven.,After the people are done driving they all,gold,get out of the cars.,take their seats on tubes.,watch the game out of hand.,begin driving down more cars and bumping into one another.,0\n18488,anetv_aIwFZCRFHx8,17530,First the people are all shown sitting in their cars in one long line. Then the cars get powered on and they,First the people are all shown sitting in their cars in one long line.,Then the cars get powered on and they,gold,continue to move away around their own cars.,are able to get driven.,leave the ring all together.,fold on the rails of a track.,1\n18489,anetv_3OcAjx8e4LU,11596,A woman gives a thumbs up as she goes rafting in a river. They,A woman gives a thumbs up as she goes rafting in a river.,They,gold,take turns throwing the stick to the water.,start skiing down speed together intertubes a river.,\"go through small waterfalls, trying to stay upright.\",see a woman standing over the snow with a splash.,2\n18490,anetv_3OcAjx8e4LU,2337,They begin going down the river with red helmets on. They,They begin going down the river with red helmets on.,They,gold,go down hills and wrestle together.,are joined by a man in white ski.,perform different tricks towards the track.,are all standing under a waterfall.,3\n18491,anetv_3OcAjx8e4LU,11597,\"They go through small waterfalls, trying to stay upright. They\",\"They go through small waterfalls, trying to stay upright.\",They,gold,scramble to their feet.,hold their paddles until they float off.,clap towards their feet.,continue along the raging waters.,3\n18492,anetv_3OcAjx8e4LU,2336,People are standing on a beach wearing red helmets. They,People are standing on a beach wearing red helmets.,They,gold,begin going down the river with red helmets on.,are playing a game of beaches in front of people.,begin to solve it to make a pyramid.,ride the boat up and down the repeat.,0\n18493,anetv_U9b8U-EymNw,16269,A boat is floating on the water. A tube has water running through it and there,A boat is floating on the water.,A tube has water running through it and there,gold,is a person riding the buckets.,is floating in the water.,is tearing down the boat.,are floats on the water.,3\n18494,anetv_U9b8U-EymNw,16270,A tube has water running through it and there are floats on the water. The camera,A tube has water running through it and there are floats on the water.,The camera,gold,zooms in through the water into the larger water.,is scanning the boat.,cuts back to the person as people climb out of the rafts down waterfall.,is covered in black lines.,1\n18495,anetv_U9b8U-EymNw,16268,A company log is on the screen. A boat,A company log is on the screen.,A boat,gold,gets dried in the water.,shows water and uses to talk to another person.,crashes through the lake.,is floating on the water.,3\n18496,anetv_U9b8U-EymNw,16276,A woman is taking a selfie while on the boat. The woman,A woman is taking a selfie while on the boat.,The woman,gold,looks into a microphone.,is doing tricks with the board on the water.,is blindfolded and swinging in the water.,is seen sitting behind a large crane and taking off her paddle.,1\n18497,anetv_U9b8U-EymNw,16272,\"Two women are sitting on the boat, one is poking the other. A plastic seat is inflated then a board\",\"Two women are sitting on the boat, one is poking the other.\",A plastic seat is inflated then a board,gold,fly side to side.,starts sailing in and out on the ocean.,is put into the water.,is placed on the spikes.,2\n18498,anetv_U9b8U-EymNw,16277,The woman is doing tricks with the board on the water. She,The woman is doing tricks with the board on the water.,She,gold,says as people are led away.,let go of the line and floated freely.,stands on the hill with a start.,drinks for a few times and tries to run.,1\n18499,anetv_U9b8U-EymNw,16271,\"The camera is scanning the boat. Two women are sitting on the boat, one\",The camera is scanning the boat.,\"Two women are sitting on the boat, one\",gold,has a trophy on it.,in a raft on a raft nearby.,is playing the water and talking.,is poking the other.,3\n18500,anetv_U9b8U-EymNw,16275,A woman is driving the boat while the other woman is boarding behind her. A woman,A woman is driving the boat while the other woman is boarding behind her.,A woman,gold,is interviewed and gets out of a helicopter.,is standing at the edge of the slope watching.,is taking a selfie while on the boat.,runs towards the camera and shakes her hand.,2\n18501,anetv_U9b8U-EymNw,16273,A plastic seat is inflated then a board is put into the water. A woman,A plastic seat is inflated then a board is put into the water.,A woman,gold,is on the board and holding on to a line attached to the boat.,places a blue area on top of water.,speaks to the camera and fights out a smaller chair with her.,is putting on how to boat the ocean wheel.,0\n18502,anetv_U9b8U-EymNw,16274,A woman is on the board and holding on to a line attached to the boat. A woman,A woman is on the board and holding on to a line attached to the boat.,A woman,gold,is seen throwing clothes on the beach as they continue to ride on the surfboard while the camera captures them from the side.,removes a tire from a hook and drops it in the water.,is drinking a coffee cup.,is driving the boat while the other woman is boarding behind her.,3\n18503,lsmdc3079_THINK_LIKE_A_MAN-36704,4171,\"With a cool look, she opens the door. She\",\"With a cool look, she opens the door.\",She,gold,looks at him from the lamp.,enters the restroom and leaves.,\"flashes a smile, then closes it.\",beams and glances at the sink.,2\n18504,lsmdc3079_THINK_LIKE_A_MAN-36704,4179,He crawls onto the bed. He,He crawls onto the bed.,He,gold,\"kisses her, then lowers himself on top of her.\",face him.,runs his fingers over the grail diary.,returns to the bed.,0\n18505,lsmdc3079_THINK_LIKE_A_MAN-36704,4172,\"Inside, someone places a red x beside another on a monthly calendar. Our view\",\"Inside, someone places a red x beside another on a monthly calendar.\",Our view,gold,drifts to the bathroom with a turtle face on the tv.,drifts to a drawing with the ruffles in the wind - blowing dust.,\"drifts around the area, a short curtain dividing the street behind a view through a side garden.\",\"drifts toward downtown los angeles where pale, pink light lines the horizon.\",3\n18506,lsmdc3079_THINK_LIKE_A_MAN-36704,4176,\"He hands her the glass. Averting her gaze, she\",He hands her the glass.,\"Averting her gaze, she\",gold,bows over and kisses someone's cheek as she gives him a friendly look.,rolls her gaze.,\"takes a sip, then returns the drink.\",slinks uncomfortably down her side as the other sits in the chair next to her.,2\n18507,lsmdc3079_THINK_LIKE_A_MAN-36704,4173,\"Our view drifts toward downtown Los Angeles where pale, pink light lines the horizon. In her apartment, someone\",\"Our view drifts toward downtown Los Angeles where pale, pink light lines the horizon.\",\"In her apartment, someone\",gold,lies down on a bed.,lingers quizzically on wiping her tears.,barrels through bottles on the floor.,stretches her arm across the bed as she awakes.,3\n18508,lsmdc3079_THINK_LIKE_A_MAN-36704,4175,She forks up a bite. He,She forks up a bite.,He,gold,keeps walking with short a crack.,finds someone leaning over her refrigerator.,\"eyes him, shaking her head.\",hands her the glass.,3\n18509,lsmdc3079_THINK_LIKE_A_MAN-36704,4174,\"Shirtless, someone enters the room. He\",\"Shirtless, someone enters the room.\",He,gold,reaches into his grimacing leather pants.,offers a glass of orange juice.,\"opens the lid of a tank, and removes a drawer in a drawer.\",strolls across a casket.,1\n18510,lsmdc3079_THINK_LIKE_A_MAN-36704,4180,\"He kisses her, then lowers himself on top of her. Now, at his loft apartment, someone\",\"He kisses her, then lowers himself on top of her.\",\"Now, at his loft apartment, someone\",gold,takes a drink vigorously.,pads into the kitchen wearing only pajama pants.,finds a sheet of junk food chips in the jukebox.,finds more in the locker room.,1\n18511,lsmdc3079_THINK_LIKE_A_MAN-36704,4178,He spots a framed photo with someone in it. He,He spots a framed photo with someone in it.,He,gold,valley engraved ink has blood over the breaking shield.,crawls onto the bed.,gets out of the car.,finds the box of rock and pulls up in his notebook.,1\n18512,anetv_mQCFphhDFw8,12176,\"The man in yellow shirt took out his tools from his pocket, he took off the bike wheel from the bike, pull out a yellow tool, insert it between the rubber and metal, removed the rubber inside the tire, tried to find the hole, took a square cloth, wipe the tire, then put the sticker, he pumped the rubber then put it back in the tire. The person\",\"The man in yellow shirt took out his tools from his pocket, he took off the bike wheel from the bike, pull out a yellow tool, insert it between the rubber and metal, removed the rubber inside the tire, tried to find the hole, took a square cloth, wipe the tire, then put the sticker, he pumped the rubber then put it back in the tire.\",The person,gold,stood in the circle and given the railing he was able to cut it and barely removed the tire and stood up.,screw the wheel back to the bike.,put the tire down and hangs the rubber stick to his chest.,uses the rubber stick to loosen the bolt by counting at the harness sticking the corner of the wheel and then originally pushed the mechanism,1\n18513,anetv_FAPMunnTNsE,2769,Two people are seen riding in a canoe pushing a paddle along the water and looking into the camera. More clips,Two people are seen riding in a canoe pushing a paddle along the water and looking into the camera.,More clips,gold,are shown of people riding continuously tricks with one another as well as others riding on the lake.,are shown of people helping people out on water skis and ending to speaking to one another.,are shown of the scenery as well as the people riding around and meeting up with others.,are shown of people riding along the water while still riding.,2\n18514,anetv_vuXsKQKbAfE,10126,The man in red puts the breather in his mouth then floats backward on his back. We,The man in red puts the breather in his mouth then floats backward on his back.,We,gold,pause and the woman take the long diving view into the pool.,looking at the girl in his standing board while talking to the camera.,zoom past the swing in the back seat.,see the man in red and blue putting a solution on their goggles before trying them on.,3\n18515,anetv_vuXsKQKbAfE,10127,We see the man in red and blue putting a solution on their goggles before trying them on. The man in red,We see the man in red and blue putting a solution on their goggles before trying them on.,The man in red,gold,picks up a shot glass and shakes it.,puts the tube in his mouth then the breather before going under water.,turns on the camera and starts dancing.,turns and a metal appears on the ground.,1\n18516,anetv_vuXsKQKbAfE,10125,Two men are in a pool putting on diving gear. The man in red,Two men are in a pool putting on diving gear.,The man in red,gold,starts doing a trick with the camera.,puts the breather in his mouth then floats backward on his back.,jumps off the diving board onto a diving board.,is throwing the disc to wave to the camera.,1\n18517,anetv_vuXsKQKbAfE,10128,The man in red puts the tube in his mouth then the breather before going under water. We then,The man in red puts the tube in his mouth then the breather before going under water.,We then,gold,\"see the people in inflatable boats, riding inflated boats.\",see a sign upside down floating in the water.,see the ending and front flips that look happy.,\"see the close photographs of an adult boy, also, the child on the mountain.\",1\n18518,anetv_Ti1ZaH0VGfg,9914,People making a circle play pipes in an event ma. Persons,People making a circle play pipes in an event ma.,Persons,gold,see two individuals competing in an arena.,are then siting in cover to talk on the flags.,stand next a drum and other instruments.,is in have a long conversation when to practice snowboard on white streets.,2\n18519,anetv_Ti1ZaH0VGfg,9915,Persons stand next a drum and other instruments. A woman,Persons stand next a drum and other instruments.,A woman,gold,is practicing the guitar inside a house.,takes pictures of people playing pipes.,walks by with a large seal.,places an invisible ball in a paper bag.,1\n18520,anetv_ZcgahXg_ELw,13321,People wave to the camera underwater. We,People wave to the camera underwater.,We,gold,two men sits near and hit people and then a group of people walk down dark street.,have seen a step below as she goes through the swim quite quickly.,are at the top of a cliff path and stopped at a boy wake.,see the ending title screen.,3\n18521,anetv_ZcgahXg_ELw,13317,A boat floats in the ocean and we see divers underwater and sealife. A diver waves and gives a thumbs up and,A boat floats in the ocean and we see divers underwater and sealife.,A diver waves and gives a thumbs up and,gold,swims out and the surfer bounces with the oar.,then straddles a boat.,dives then the water flips shows then he becomes team.,another waves to the camera.,3\n18522,anetv_ZcgahXg_ELw,13316,We see an opening title screen. A boat floats in the ocean and we,We see an opening title screen.,A boat floats in the ocean and we,gold,see divers underwater and sealife.,see a lady ironing a shirt.,see the man putting a boat under the water.,see people surfing on the lake.,0\n18523,anetv_ZcgahXg_ELw,15166,There is a large boat carrying some divers into the ocean. The divers,There is a large boat carrying some divers into the ocean.,The divers,gold,are in boats canoeing and start to fall behind the boat.,are swimming near the sea bed along with sea life and several sea creatures.,are enjoying a fish show where they are enjoying themselves.,\"are talking to each other, pointing to see that they were at outdoor.\",1\n18524,anetv_ZcgahXg_ELw,15167,There are sea turtles and sea urchins swimming across the ocean. One of the divers,There are sea turtles and sea urchins swimming across the ocean.,One of the divers,gold,goes near a some sort of a man made structure that has sunk into the ocean.,is surfing in the city performing a variety of waves.,glides down to the bottom of the diving board.,are featured in a rapid coastline.,0\n18525,anetv_ZcgahXg_ELw,15171,Several scuba divers are seen swimming with a sea turtle. The scuba divers,Several scuba divers are seen swimming with a sea turtle.,The scuba divers,gold,open the air using their hands to cover their extended wings.,wave as they finish their journey and swim back up to the surface of the ocean to get back into their boats.,are shown flying sophisticated with water and capturing by while on the stage.,are siting in fish underwater.,1\n18526,anetv_ZcgahXg_ELw,13320,We see a series of diver shots and a manta ray swims on the ocean floor. People,We see a series of diver shots and a manta ray swims on the ocean floor.,People,gold,are in a surfing pool.,wave to the camera underwater.,begin walking around the stage.,are walking the boats and get in the water.,1\n18527,anetv_ZcgahXg_ELw,13319,A baby shark swims along the ocean floor. We,A baby shark swims along the ocean floor.,We,gold,see a series of diver shots and a manta ray swims on the ocean floor.,see its doors and the lady.,see a man holding a kid on his shoulders.,demonstrate how to roll the first and boat and end it.,0\n18528,anetv_ZcgahXg_ELw,15169,The other divers wave as the continue swimming in the ocean. A large stingray,The other divers wave as the continue swimming in the ocean.,A large stingray,gold,is swimming alongside some small fish.,is shown with several teenage kids.,enters the pool beside them.,appears in the sky as people play one another.,0\n18529,anetv_ZcgahXg_ELw,13318,A diver waves and gives a thumbs up and another waves to the camera. A baby shark,A diver waves and gives a thumbs up and another waves to the camera.,A baby shark,gold,rides across waterfalls in his riding terrain.,is shown in person posing while sitting on a lake.,is seen holding a surfboard and holding up the end of the rope.,swims along the ocean floor.,3\n18530,anetv_74AJ-1e1qGA,739,One lifts another and then throws him into the water. The man,One lifts another and then throws him into the water.,The man,gold,pushes his lips forward and smiles proudly again.,falls back and lifts his arms off into a goal.,rises up and shakes his head.,sweeps around and then shovel up the sink.,2\n18531,anetv_74AJ-1e1qGA,738,Two men are standing outside a swimming pool. One,Two men are standing outside a swimming pool.,One,gold,small fish is attached to a string.,shows two men in the pool.,see a tattoo and a person talking to the camera.,lifts another and then throws him into the water.,3\n18532,anetv_74AJ-1e1qGA,15264,Two young men are standing around next to a swimming pool. A man,Two young men are standing around next to a swimming pool.,A man,gold,is seen swimming in the water off the scuba divers.,is swimming in the pool with a swim in the background.,dressed in football gear stands on the side of the man.,\"reached for an item in the pool, and tosses the item at someone in the pool who is not shown in the picture.\",3\n18533,anetv_74AJ-1e1qGA,15265,\"The two men then begin poolside horseplay, one of them throwing the other one into the pool. The man who was thrown into the pool\",\"The two men then begin poolside horseplay, one of them throwing the other one into the pool.\",The man who was thrown into the pool,gold,ends his hand by walking away and back and forth.,comes up for air.,kicks a ball over the net with several more cheer shots.,begins to applaud while leads off the point on a man getting slapped across the table.,1\n18534,lsmdc0051_Men_in_black-71124,15741,\"He rants, livid, thinking hard. As he passes a newsstand, he\",\"He rants, livid, thinking hard.\",\"As he passes a newsstand, he\",gold,twitches his own eyes.,passes a winged witch.,flings his bottle down on the tarpaulin.,grabs the news vendor by the collar.,3\n18535,lsmdc0051_Men_in_black-71124,15740,Someone looks down to the vast floor below and sees the four worm guys with suitcases walking across the floor. He,Someone looks down to the vast floor below and sees the four worm guys with suitcases walking across the floor.,He,gold,\"adjusts his feet and darts past his back, waiting to close the door.\",\"pass a pedestrian to the bar, which holds a bottle of gold on a man's head.\",walks past the detector and glances at his watch.,looks up at the screen.,3\n18536,lsmdc0051_Men_in_black-71124,15739,\"After gesturing to the back of someone van, where someone's spaceship is neatly stowed, someone pulls out his cell phone. Someone\",\"After gesturing to the back of someone van, where someone's spaceship is neatly stowed, someone pulls out his cell phone.\",Someone,gold,is in his office.,removes the lens from under his finger.,hangs up her phone.,cycles up to the next table and roars as he slowly helps his feet unsteadily between the seat.,0\n18537,lsmdc0023_THE_BUTTERFLY_EFFECT-59442,15951,\"Someone, beautiful, wears ripped jeans, no make up. Someone\",\"Someone, beautiful, wears ripped jeans, no make up.\",Someone,gold,seems oblivious to their taunts as someone knocks the three - ball in the side.,carries her bloody hand down the stairwell to the front garden.,\"leaps for herself, but she won't look back.\",takes someone as a good stance and grinning broadly and kisses her.,0\n18538,lsmdc0023_THE_BUTTERFLY_EFFECT-59442,15950,\"People play pool against two young women. Someone, beautiful,\",People play pool against two young women.,\"Someone, beautiful,\",gold,talks about her and watch as someone.,\"wears ripped jeans, no make up.\",licks his lips and goes.,has 60 white hair.,1\n18539,lsmdc0023_THE_BUTTERFLY_EFFECT-59442,15952,Someone seems oblivious to their taunts as someone knocks the three - ball in the side. Another barrage of popcorn,Someone seems oblivious to their taunts as someone knocks the three - ball in the side.,Another barrage of popcorn,gold,is interrupted by the bartender out of the shot.,hits someone and knocks someone out of once.,hits someone's jacket.,rolls back before him and then explodes again.,2\n18540,lsmdc3043_KATY_PERRY_PART_OF_ME-20835,9862,Furrowing her brow she places one hand over her face then brushes back her hair and blinks away tears. She,Furrowing her brow she places one hand over her face then brushes back her hair and blinks away tears.,She,gold,wipes her eyes with a tissue.,holds the slack - jawed gaze and shakes her head.,checks her hands then jaw.,waves her hand all the way to the glass.,0\n18541,anetv_UZ9D6DhrmDI,16555,A person solves a cube puzzle flipping the pieces around. The person,A person solves a cube puzzle flipping the pieces around.,The person,gold,cards the cube to complete their rotation.,continues using the knife to put cheese onto the board.,plays a cool cube.,solves the puzzle and show a chronometer.,3\n18542,lsmdc0019_Pulp_Fiction-56974,2339,\"Someone, looking down at his whimpering rapist, ejects the used shotgun shell. Someone\",\"Someone, looking down at his whimpering rapist, ejects the used shotgun shell.\",Someone,gold,switches on his walkie - talkie.,runs the drill glaring down at someone.,searches through shelves of clothes on hangers.,lowers the sword and hangs back.,3\n18543,lsmdc0019_Pulp_Fiction-56974,2337,\"Someone steps aside, revealing someone standing behind him, holding someone's pump - action shotgun. Someone\",\"Someone steps aside, revealing someone standing behind him, holding someone's pump - action shotgun.\",Someone,gold,gives chase and beams after him.,is blasted in the groin.,removes the scarf from someone's neck.,aims both the train at him.,1\n18544,lsmdc0019_Pulp_Fiction-56974,2338,\"Down he goes, screaming in agony. Someone, looking down at his whimpering rapist,\",\"Down he goes, screaming in agony.\",\"Someone, looking down at his whimpering rapist,\",gold,ejects the used shotgun shell.,looks up at someone.,gets up into the sewer and crouches on the muddy ground.,is staring at a crowd through the deserted horror woods.,0\n18545,anetv_1DvNkSGk-JA,17606,A man is holding onto a bar as he is standing on a water ski. He,A man is holding onto a bar as he is standing on a water ski.,He,gold,\"moves around doing several stunts several times out of his boarding, then going to dive behind a pool.\",are shown driving his hands down the river while clips are sitting on sandy boards.,continues talking about the experience and decides to do a good job.,is being pulled through the water by a motor boat.,3\n18546,anetv_1DvNkSGk-JA,17607,He is being pulled through the water by a motor boat. He,He is being pulled through the water by a motor boat.,He,gold,\"is water skiing over a long lake, trying to remain upright.\",is swinging on the lake.,is very ready to go straight to the trampoline.,\"is on the bicycle, showing a white and white sail on the boat.\",0\n18547,lsmdc3007_A_THOUSAND_WORDS-3642,17386,\"Back at someone's house, Gaudencio sprays water up and down the Bodhi tree's trunk with a hose. Back at the restaurant, someone\",\"Back at someone's house, Gaudencio sprays water up and down the Bodhi tree's trunk with a hose.\",\"Back at the restaurant, someone\",gold,holds it up as they gallop ahead.,notices the sticky - looking man and attempts to get under the machine when nothing goes off.,fidgets as he sweats profusely.,follows someone through his bedroom toward a collapsible.,2\n18548,lsmdc3007_A_THOUSAND_WORDS-3642,17387,\"Back at the restaurant, someone fidgets as he sweats profusely. Someone\",\"Back at the restaurant, someone fidgets as he sweats profusely.\",Someone,gold,leans forward in his seat.,\"flinches, then glances at someone.\",sits on the deck beside him.,gets out of his seat.,1\n18549,lsmdc3007_A_THOUSAND_WORDS-3642,17388,\"Someone flinches, then glances at someone. Someone\",\"Someone flinches, then glances at someone.\",Someone,gold,is on her son's side.,stares wide - eyed at someone.,turns on her mobile.,watches out of the window as they peel away together.,1\n18550,anetv_RkhSR7pz9qc,5663,We see two teams of men playing soccer indoors. Two men,We see two teams of men playing soccer indoors.,Two men,gold,collide and fall to the ground.,gather to play soccer in a field.,are on a field near the counter.,hit the ball from the room with the goalie.,0\n18551,anetv_RkhSR7pz9qc,5665,Two sets of people n the crowd are interviewed. We,Two sets of people n the crowd are interviewed.,We,gold,see the crowd and a man interviewed and see some scoring shots.,put a box on the boat.,see a man on the field by side talking.,are underwater in a bridge.,0\n18552,anetv_RkhSR7pz9qc,5666,We see the crowd and a man interviewed and see some scoring shots. We see three men stand and pose for a photo and a man,We see the crowd and a man interviewed and see some scoring shots.,We see three men stand and pose for a photo and a man,gold,hurls some kind of ducks.,puts his decoration in the bow.,is interviewed before we return to the game.,presents ice blue on the ice.,2\n18553,anetv_RkhSR7pz9qc,5664,Three men high five and hug each other. A man,Three men high five and hug each other.,A man,gold,has dark brown hair to his left.,throws the ball clear across the room to the other goal.,in a windsurfing ocean begins surfing.,rings up a ladder and drops it.,1\n18554,anetv_ZWzPz-LX9Qg,18084,A man is seen wearing scrubs and standing in front of a sink. The man,A man is seen wearing scrubs and standing in front of a sink.,The man,gold,takes a sponge and mixes various ingredients into it.,begins mopping the floor thoroughly and rubbing the sink.,holds a rag in front of him from several angles.,washes his hands and turns to face the camera.,3\n18555,anetv_ZWzPz-LX9Qg,6307,He throws his hands in the air. Someone,He throws his hands in the air.,Someone,gold,comes out of a closet behind him.,flings his arms behind him.,climbs the top of the stairs.,arches back to face someone.,0\n18556,anetv_ZWzPz-LX9Qg,6305,A man is wearing blue scrubs and a fanny pack. He,A man is wearing blue scrubs and a fanny pack.,He,gold,\"sprays his face, then a person towels him outside.\",is washing his hands in the sink.,grabs a hose from a spray can and sprays the windshield.,ties the laces of his shoes.,1\n18557,anetv_ZWzPz-LX9Qg,6306,He is washing his hands in the sink. He,He is washing his hands in the sink.,He,gold,is talking about how to wash the shoes remover to shining them.,is holding a light glinting on the area while he is done brushing at the light.,throws his hands in the air.,dishes a cup of water in a sink.,2\n18558,anetv_VZ2CPdIPa30,11952,Several shots of the scenery are shown interspersed with the woman waiting. The man,Several shots of the scenery are shown interspersed with the woman waiting.,The man,gold,is directing and pulling away.,finishes with the equipment.,continues riding down the sail while the camera continues to play.,gets up a skateboard in the road and downhill.,1\n18559,anetv_VZ2CPdIPa30,11953,The man finishes with the equipment. The woman,The man finishes with the equipment.,The woman,gold,continues pulling off the carpet attachment and places the tool over the handle.,speaks again and starts recumbent.,carefully walks out to the jumping platform while one of the men stands behind her and an audience watches.,walks to the lake and runs under it.,2\n18560,anetv_VZ2CPdIPa30,11950,A man secures a seated woman in a bungee harness while others stand by. The woman,A man secures a seated woman in a bungee harness while others stand by.,The woman,gold,\"talks about her workout, performing flips and doing the same thing.\",talks to the camera in a close up view.,dismounts from the side of the swing.,performs different tricks as he demonstrates.,1\n18561,anetv_VZ2CPdIPa30,11951,The woman talks to the camera in a close up view. Several shots of the scenery,The woman talks to the camera in a close up view.,Several shots of the scenery,gold,are shown from other angles following them.,are shown close up against the woman.,are shown as well as two men swimming upwards.,are shown interspersed with the woman waiting.,3\n18562,lsmdc1012_Unbreakable-7054,3432,\"After a moment, he pushes himself off the wall and moves to the center of the walkway and stands there with his head down and his hands in his pockets. The crowd\",\"After a moment, he pushes himself off the wall and moves to the center of the walkway and stands there with his head down and his hands in his pockets.\",The crowd,gold,flinches as someone watches the young woman behind the boat at the rising.,\"streams past him, laughing and smiling.\",dances wildly as he plays and bends kids to sit up.,\"is hugging, swaying on his feet, dancing in the living room.\",1\n18563,lsmdc1012_Unbreakable-7054,3430,\"The street outside the stadium is empty. Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall,\",The street outside the stadium is empty.,\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall,\",gold,studies a book volunteer up at the counter.,prepping to untie his rucksack for a minute.,casually watching spectators as they crowd in through a gate.,stops his turn and looks in as he understands.,2\n18564,lsmdc1012_Unbreakable-7054,3433,\"Some almost pushing him aside, but he does n't react. Someone\",\"Some almost pushing him aside, but he does n't react.\",Someone,gold,turns slowly and looks after her.,\"hunches forward, burying a face in his leg with the burning sword.\",\"gets hung and walks out of the door, oblivious to the activity.\",watches at the balcony in the hallway.,0\n18565,lsmdc1012_Unbreakable-7054,3431,\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall, casually watching spectators as they crowd in through a gate. He\",\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall, casually watching spectators as they crowd in through a gate.\",He,gold,is holding a large bottle glass wrapped up and a bottle of red soda.,reaches a staircase and pulls someone back to a post.,casts a quick glance at the tugboat.,looks away and stares at the ground.,3\n18566,lsmdc0001_American_Beauty-45674,12874,\"Someone stares at someone, then her mouth widens into a smile. Someone suddenly\",\"Someone stares at someone, then her mouth widens into a smile.\",Someone suddenly,gold,finds someone standing in front of her.,lets go and raises her shot.,lifts his fedora and noticing someone who's leaning on an empire line.,\"imitates her suma, but eventually fails again.\",0\n18567,anetv_IB068eD8A7Y,5890,We see the man shoot three arrows and see the target. We,We see the man shoot three arrows and see the target.,We,gold,see people riding ahead.,see seventeen slow motion.,see a man dive off his board in a motion.,see the boy as he tries to shoot balloons on the target and misses them all.,3\n18568,anetv_IB068eD8A7Y,5889,The boy shoots the arrow stretches and shoots more arrows. We,The boy shoots the arrow stretches and shoots more arrows.,We,gold,see the mohawk screen.,cuts back over balls - sized boxes.,see the man shoot three arrows and see the target.,man runs with the stick and moves off his lawn and people give it small balls.,2\n18569,anetv_IB068eD8A7Y,5888,We see a man and a small boy holding a bow and arrow in a field. The boy,We see a man and a small boy holding a bow and arrow in a field.,The boy,gold,spins the dart fish on the kite as they swim upright.,teaches a tune in a row against a bow.,shoots the arrow stretches and shoots more arrows.,waves his arms and throws the discus.,2\n18570,lsmdc1038_The_Great_Gatsby-87484,12701,Someone flops onto the pile of brightly colored shirts on the bed. Someone,Someone flops onto the pile of brightly colored shirts on the bed.,Someone,gold,lifts the news towel to the ceiling then picks up the box then moves his shoe.,bounce his heels and disappears into black.,looks down from the balcony in the opulent bedroom.,is in the crowd.,2\n18571,lsmdc1038_The_Great_Gatsby-87484,12702,\"Someone looks down from the balcony in the opulent bedroom. Noticing the change in someone's mood, someone\",Someone looks down from the balcony in the opulent bedroom.,\"Noticing the change in someone's mood, someone\",gold,gets to his feet and blinks at his shadow.,watches the stride slowly.,goes down to the bed where she sits.,\"walks towards a quaint earpiece that two vases in either hand, one of which is walkways upward directions.\",2\n18572,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17213,\"At the end of the table, a woman hangs horizontally in mid - air. Someone\",\"At the end of the table, a woman hangs horizontally in mid - air.\",Someone,gold,sits close to someone.,dispatches his lips with the strap of a rifle.,blows a big fedora of someone's head.,aims a gun at someone.,0\n18573,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17211,\"Someone enters a bare store room, and climbs a flight of stairs. People\",\"Someone enters a bare store room, and climbs a flight of stairs.\",People,gold,are slowly sliding down the stairs in the dark.,are seated at a long table in front of a blazing fire.,run down the passageway towards the quarry.,\"come out of the bedroom, reaches for a plastic bottle and holds it open.\",1\n18574,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17210,\"His face is sombre, his dark hair lank and shoulder length. Someone\",\"His face is sombre, his dark hair lank and shoulder length.\",Someone,gold,follows her as he walks past.,\"enters a bare store room, and climbs a flight of stairs.\",has a shawl with some highlights which she is strikes.,looks at a chair for someone.,1\n18575,anetv_kGvs0Nv5zJo,19025,First the news reporter tells viewers what horrible event is going on. Then we,First the news reporter tells viewers what horrible event is going on.,Then we,gold,see the dealer with the score pin.,get a small glimpse of people sitting outside at the candle vigil.,see to the messenger.,see a lady talk again doing karate moves in a gym.,1\n18576,anetv_173d8EtsIpE,14263,\"Two men demonstrate fencing in a fencing gym, The man In a black fencing uniform pushes the man wearing a white shirt back and off balance. The men\",\"Two men demonstrate fencing in a fencing gym, The man In a black fencing uniform pushes the man wearing a white shirt back and off balance.\",The men,gold,are then seen fencing passionately and then many men in all armor gear.,put their hands in several shots simultaneously take positions.,walk back into position to the center of the court and begin another session.,\"tug and stab each other, then people come together to start fencing.\",2\n18577,anetv_173d8EtsIpE,10349,Two people are standing in a room on a green court fencing with one another. The two people move across the ring and they,Two people are standing in a room on a green court fencing with one another.,The two people move across the ring and they,gold,put on a powder tile.,lock their hands up and begin wrestle.,stop and begin plenty of times.,\"begin punching, spinning and kicking.\",2\n18578,anetv_173d8EtsIpE,14264,The men walk back into position to the center of the court and begin another session. The man wearing black once again,The men walk back into position to the center of the court and begin another session.,The man wearing black once again,gold,forces the man wearing white off balance and scores.,fixes his weight and walks on a pair of nunchucks to make some for him.,speaking and the players begins knitting on a racket or playing the game.,takes a picture wearing the mask posing before turning to go.,0\n18579,anetv_173d8EtsIpE,10350,\"The two people move across the ring and they stop and begin plenty of times. Finally, the game is finished and they\",The two people move across the ring and they stop and begin plenty of times.,\"Finally, the game is finished and they\",gold,begin to walk off.,are playing the sport.,finish to begin with people style.,both arm wrestle to each other.,0\n18580,lsmdc3007_A_THOUSAND_WORDS-3521,7776,\"Someone slides his hands up the trunk, then steps back and gazes up at the tall tree. As someone walks away, two leaves\",\"Someone slides his hands up the trunk, then steps back and gazes up at the tall tree.\",\"As someone walks away, two leaves\",gold,lie side - by - side with marley dangling from the rail.,\"fall from his grasp, rubbing it together in the yard.\",are parked on the other side of the school.,\"break away from the top of the tree, then drift to the ground.\",3\n18581,lsmdc3007_A_THOUSAND_WORDS-3521,7777,\"As someone walks away, two leaves break away from the top of the tree, then drift to the ground. Someone\",\"As someone walks away, two leaves break away from the top of the tree, then drift to the ground.\",Someone,gold,dances slowly through someone's face.,follows someone into his office.,\"looks up at someone, who turns to cross back at someone and over her head.\",\"'s head is dragged across someone, towards her.\",1\n18582,anetv_Z4OyG8ZzUpg,18505,Another boy comes in with a wig and the boys start wrestling each other. The boys then,Another boy comes in with a wig and the boys start wrestling each other.,The boys then,gold,\"resume flipping and flipping on the road, showing the drawing.\",pretend the beat the boy with the wig up.,begin competing with their bowls.,shake arm wrestling with one another.,1\n18583,anetv_Z4OyG8ZzUpg,18506,The boys then pretend the beat the boy with the wig up. The boys all,The boys then pretend the beat the boy with the wig up.,The boys all,gold,slide their rafts to the wood locker and pass a man on the ground.,crosses and waves to the other two.,continue wrestling each other while grabbing the objects and running away.,sit up and speak to one another while the camera lays on the side.,2\n18584,anetv_Z4OyG8ZzUpg,18502,One stands in front of the net and passes to the other with lacrosse sticks. The boys,One stands in front of the net and passes to the other with lacrosse sticks.,The boys,gold,play on the rope in front of one another while players continue to play.,\"flip him to the side, and two of his feet are watching the men.\",continue passing the ball bath and fourth to each other.,continue kicking the ball around while several others watch on the sides.,2\n18585,anetv_Z4OyG8ZzUpg,18503,The boys continue passing the ball bath and fourth to each other. One boy,The boys continue passing the ball bath and fourth to each other.,One boy,gold,splashes the boy in the swings his other boy around.,grabs and comes to help on the edge.,pushes the other in the head.,throws the ball out into the road while the other runs after it.,3\n18586,anetv_Z4OyG8ZzUpg,18504,One boy throws the ball out into the road while the other runs after it. Another boy comes in with a wig and the boys,One boy throws the ball out into the road while the other runs after it.,Another boy comes in with a wig and the boys,gold,rollerblading along a narrow road.,drinking his beer.,start wrestling each other.,begins falling and kicking it off the side.,2\n18587,lsmdc0026_The_Big_Fish-62044,15993,\"Pissed, someone throws his crappy lima bean plants in the trash. As two farmers shake their heads, we\",\"Pissed, someone throws his crappy lima bean plants in the trash.\",\"As two farmers shake their heads, we\",gold,see two excited boys stand at the collapsible.,pan a patient over to look at the name.,reverse to a show a massive hole punched through the side of a barn.,\"glimpse someone's goateed father with a grey, sunny smile on her face.\",2\n18588,lsmdc0026_The_Big_Fish-62044,15996,We still have n't seen the full stranger. A mob of about 50,We still have n't seen the full stranger.,A mob of about 50,gold,\"yards away, from a tunnel.\",explode from the mansion.,sees someone chatting while the camera lowers his hand.,\"have gathered, many of them with shotguns.\",3\n18589,lsmdc0026_The_Big_Fish-62044,15994,\"As two farmers shake their heads, we reverse to a show a massive hole punched through the side of a barn. It's roughly the shape of man, but no human\",\"As two farmers shake their heads, we reverse to a show a massive hole punched through the side of a barn.\",\"It's roughly the shape of man, but no human\",gold,can have in its top.,fair as the face sits on it behind him so it can be week seven.,could be that large.,can fragments with that piglet on the other side.,2\n18590,lsmdc0026_The_Big_Fish-62044,15997,Amid the crowd we see someone. Everyone,Amid the crowd we see someone.,Everyone,gold,turns to see who said that.,collects his hat and places it.,watches the horsemen approach by lowering.,\"sits and nods to the bride, shaking alone in the pews.\",0\n18591,lsmdc0026_The_Big_Fish-62044,15995,\"It's roughly the shape of man, but no human could be that large. We still\",\"It's roughly the shape of man, but no human could be that large.\",We still,gold,have a giant energy shot.,have boys all of the face using their raincoat.,have n't seen the full stranger.,wonders one side they pass daughter as she holds the suitcase straight to the marines.,2\n18592,anetv_IjdTjpaPPNg,11673,They are crossing a river of water on the horses. They,They are crossing a river of water on the horses.,They,gold,continue on their ride on the horses.,ski over mountains while people in tubes.,sit down in place by pulling off the kayaks.,\"go down the water, flipping and measuring the area.\",0\n18593,anetv_IjdTjpaPPNg,11672,People are riding horses along a dirt trail. They,People are riding horses along a dirt trail.,They,gold,get the bmx camels and ride it up the hills.,stand on a tube near the horses.,are crossing a river of water on the horses.,use tubing supplies to sled on a line of rocks.,2\n18594,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9795,\"Someone flops miserably on the bottom step, takes off her party shoes, and rubs her feet. Someone\",\"Someone flops miserably on the bottom step, takes off her party shoes, and rubs her feet.\",Someone,gold,drives out after the reptile world.,runs out of dingy houses in the middle of a quiet recreation room.,is still dancing with someone.,sits in a chair watching the room.,2\n18595,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9799,\"They swoop between the tall towers past one or two lighted windows. Asleep in bed, someone\",They swoop between the tall towers past one or two lighted windows.,\"Asleep in bed, someone\",gold,studies an odd mush plant.,conclude with the children.,is having a nightmare.,wears the model elephant.,2\n18596,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9796,Someone is still dancing with someone. Someone,Someone is still dancing with someone.,Someone,gold,has her down the sidewalk.,rests his head on someone's chest.,\"shoots him a moment, then stops.\",catches someone's attention and pushes her back down to her feet.,1\n18597,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9801,\"He sees the dark cemetery with the winged stone statue. Along the dusty paneled corridor, light\",He sees the dark cemetery with the winged stone statue.,\"Along the dusty paneled corridor, light\",gold,shines through a sizable.,of light glows on someone.,shines from all the deeper depths of the nighttime parts of the wall.,shines from the open door.,3\n18598,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9800,\"Asleep in bed, someone is having a nightmare. He\",\"Asleep in bed, someone is having a nightmare.\",He,gold,is trying to face the crowd loosely.,darts down the lane before those.,sees the dark cemetery with the winged stone statue.,faces the three boys reached for the door.,2\n18599,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9802,\"Along the dusty paneled corridor, light shines from the open door. Inside the room, someone hovers as the young man kneels beside the armchair,\",\"Along the dusty paneled corridor, light shines from the open door.\",\"Inside the room, someone hovers as the young man kneels beside the armchair,\",gold,unaware of its two bare eyes.,\"reaches out to his own two - bothering lover, then hands them over.\",revealing the dark mark tattooed on his arm.,sketching on the lead clipping.,2\n18600,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9791,\"Someone gets up and stalks off. Later, someone\",Someone gets up and stalks off.,\"Later, someone\",gold,pulls up through a bustling casino covering the room area.,\"sits by a secretary, waiting for him.\",tries to reason with someone.,sleeps on someone's lap.,2\n18601,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9792,\"Later, someone tries to reason with someone. She\",\"Later, someone tries to reason with someone.\",She,gold,abruptly keeps her staring fixed.,leads him to the front door where the curricle follows.,wipes away a tear.,notes her into watching tv as someone puts money upstairs.,2\n18602,lsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9794,The boys escape up the stairs. Someone,The boys escape up the stairs.,Someone,gold,eyes him from the balcony.,bends over and hears a fire explosion.,\"stops at the gates, turns and starts away.\",\"flops miserably on the bottom step, takes off her party shoes, and rubs her feet.\",3\n18603,anetv_LITdMW0xh7o,118,\"A man is outside in the good with an ax attempting to cut down a tree. Finally, the tree comes down and the man\",A man is outside in the good with an ax attempting to cut down a tree.,\"Finally, the tree comes down and the man\",gold,\"ropes the leafs around the tree, and holds the snow down the top of the tree.\",begins to hit the tree with the ax.,goes to the tree.,walks on to the stage.,1\n18604,anetv_gLfIPN_WM48,1580,A tabletop with food ingredients appear on a wooden slat surface and fancy white wording appears in a special effect way on the left of the screen and it reads Home Cooking adventure and the website is displayed at the bottom left. A batch of brown cooked cookies on a pan appear and white wording appear on the middle of the screen and it,A tabletop with food ingredients appear on a wooden slat surface and fancy white wording appears in a special effect way on the left of the screen and it reads Home Cooking adventure and the website is displayed at the bottom left.,A batch of brown cooked cookies on a pan appear and white wording appear on the middle of the screen and it,gold,begins the red omelette from the mix.,\"'s a few different vegetables while walking, sitting on the table with slightly cold liquid and say's again.\",is for both of them who include earring deep and deeper the quiet other room at different angles.,reads double chocolate chunk cookies.,3\n18605,anetv_gLfIPN_WM48,17678,She continues mixing in more chocolate and puts them on a pan in the oven. She,She continues mixing in more chocolate and puts them on a pan in the oven.,She,gold,is now put in the oven and taking out dough in all pieces.,mixes up the ice with a spoon and begins chocolate chips as well as alcohol.,is shown as she cooks more ingredients and then rides past microwave cookies.,lays them out next to a glass of milk and breaks off a piece.,3\n18606,anetv_gLfIPN_WM48,1581,\"Instructions appear on how to bake it and the woman puts the pan in the oven, the pan is shown taken out and put on a cooling rack, then the cookies are shown being put on a white plate with a cup of milk. The cookie is picked up and broken in half, the screen goes to an outro screen that has the words Home Cooking adventure,\",\"Instructions appear on how to bake it and the woman puts the pan in the oven, the pan is shown taken out and put on a cooling rack, then the cookies are shown being put on a white plate with a cup of milk.\",\"The cookie is picked up and broken in half, the screen goes to an outro screen that has the words Home Cooking adventure,\",gold,\"is then shown and grilled vegetables, down and everywhere at the top do shredded salt, and core the front part.\",includes 3 small videos in the middle of the screen and a youtube icon that has a flashing word subscribe next to it.,\"rules, basics and website information about lemonade and a triple lotion salad and finally of that out card is seen.\",showing it to the man who is talking in front of the camera.,1\n18607,anetv_gLfIPN_WM48,17676,A close up of foo is seen followed by a woman mixing ingredients. She,A close up of foo is seen followed by a woman mixing ingredients.,She,gold,boils some water and begins mixing eggs and other various ingredients.,shows off the mixer into the stove and puts the tomatoes around the bush.,then begins decorating the tree with her dog in it.,then pours out ingredients into a bowl and mixes ingredients together into a blender.,0\n18608,anetv_EVfTWz5GRGw,707,\"A woman holds up the bottle, Then is shown using several different solutions that she lines up together on the counter. She\",\"A woman holds up the bottle, Then is shown using several different solutions that she lines up together on the counter.\",She,gold,has then various tutorial on how to make an drink.,teaches a woman how to place a tattoo using a tape too.,shows us the lemonade and drinks it.,\"uses each on her face, then rinses them off.\",3\n18609,anetv_EVfTWz5GRGw,706,A bottle of deep cleansing gel is shown. A woman,A bottle of deep cleansing gel is shown.,A woman,gold,talks and talks about hair a real style environments.,uses water to put water to water over a scuba liner.,\"holds up the bottle, then is shown using several different solutions that she lines up together on the counter.\",is in a cavity talking about the components of the game.,2\n18610,anetv_0lzqfDIWXtw,753,Several players are shown on an ice rink. They,Several players are shown on an ice rink.,They,gold,are engaged in a game of indoor soccer.,\"are holding tennis rackets, also hitting the ball.\",are playing a game of polo.,are engaged in different games of curling.,3\n18611,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6493,\"Someone runs into the meeting. The smart, silver - haired woman\",Someone runs into the meeting.,\"The smart, silver - haired woman\",gold,\"sits down, and looks round at the group.\",turns on her makeup and smiles tearfully.,stands with her boss over her arm.,rounds a corner and studies a long white haired woman in a curtain.,0\n18612,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6496,The group come to a thrift shop. Ryuichi,The group come to a thrift shop.,Ryuichi,gold,pulls up outside with a mowing - lawn sculptor uncertainty some clothes.,are rafting together into a deep rapid black waters.,puts up his hand.,\"get a cab, and walk closer.\",2\n18613,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6497,Ryuichi puts up his hand. The basketball player,Ryuichi puts up his hand.,The basketball player,gold,runs on on a paintball field.,picks her up and shakes her.,lies on someone's back.,dives off the diving board.,1\n18614,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6495,She holds up someone's shopping bag. The group,She holds up someone's shopping bag.,The group,gold,come to a thrift shop.,has up their bags.,crosses to a rusty wooden door marked rocky spiral staircase.,enters a hospital cathedral.,0\n18615,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6498,The basketball player picks her up and shakes her. She,The basketball player picks her up and shakes her.,She,gold,\"tosses the cue, and walks off.\",spins to a green bar.,hits another ball on a brush sponge.,runs back to the thrift shop.,3\n18616,lsmdc1019_Confessions_Of_A_Shopaholic-80885,6492,\"A tall, silver - haired woman in a beret gets out. Someone\",\"A tall, silver - haired woman in a beret gets out.\",Someone,gold,limps up behind him.,runs into the meeting.,\"taps her x - humored bottle, then addresses someone.\",leans over to the river leading to the courtyard.,1\n18617,lsmdc0003_CASABLANCA-47123,14202,Someone is now noticeably uncomfortable. Someone,Someone is now noticeably uncomfortable.,Someone,gold,walks over to the couch and sits down.,has stopped taking another customer off.,has then all mail out.,takes his own cue and holds onto the bow out painted and metal.,0\n18618,lsmdc0003_CASABLANCA-47123,14211,The figure in the archway is gone. Someone,The figure in the archway is gone.,Someone,gold,\"gets a cloak from the bedroom, and leaves the hotel room.\",climbs off the camera at someone's apartment.,strides along the corridor with a staring mustache.,comes out of the tent and stares at someone.,0\n18619,lsmdc0003_CASABLANCA-47123,14207,Someone finally turns to look at someone. He,Someone finally turns to look at someone.,He,gold,bends down and kisses her cheek.,approaches; he is n't completely covered in fear of his crisis.,turns to look at the sound escaping his own jeans.,loses his balance and hobbles to a window across the room.,0\n18620,lsmdc0003_CASABLANCA-47123,14204,Someone turns off the light. He,Someone turns off the light.,He,gold,\"turns a bright light on the white man, who sits before him.\",pulls off a nearby ridge and can see someone from a distance.,looks out in the windows.,sits down on the couch next to her.,3\n18621,lsmdc0003_CASABLANCA-47123,14210,\"She stands there for a few seconds, then crosses to look out of the window. She\",\"She stands there for a few seconds, then crosses to look out of the window.\",She,gold,steps back and closes her eyes as someone blinks and looks away.,\"moves toward it, still feeling directly in the doorway.\",hears someone pulling back above his vehicle.,sees someone walking down the street and closes the blind again.,3\n18622,lsmdc0003_CASABLANCA-47123,14206,Someone still can not look at him. Someone finally,Someone still can not look at him.,Someone finally,gold,turns to look at someone.,does the same when she was conducting.,looks thoughtfully at someone.,\"comes around the bar, where the goateed girls gathered.\",0\n18623,lsmdc0003_CASABLANCA-47123,14205,A silence falls between them. Someone still,A silence falls between them.,Someone still,gold,lays his head on someone's shoulder.,struggles to stay afloat.,can not look at him.,holds his wand aloft.,2\n18624,lsmdc0003_CASABLANCA-47123,14212,People sit by the bar and look over ledgers. He,People sit by the bar and look over ledgers.,He,gold,smacks someone else's cheek.,sets his head.,looks up at someone.,\"looks at his drunken grin, and has a brow.\",2\n18625,lsmdc0003_CASABLANCA-47123,14209,He kisses her on the cheek and goes out the door. She,He kisses her on the cheek and goes out the door.,She,gold,\"lifts her throat, rushes into the room.\",opens the door and calls back to the counter as he giggles the silence.,\"stands there for a few seconds, then crosses to look out of the window.\",offers someone an order and follows her to the elevator.,2\n18626,lsmdc0003_CASABLANCA-47123,14203,Someone walks over to the couch and sits down. Someone,Someone walks over to the couch and sits down.,Someone,gold,turns off the light.,collects his clothes in a hip bag.,goes upstairs and peers over his shoulder.,\"looks nervously at someone blankly, then looks up.\",0\n18627,lsmdc0003_CASABLANCA-47123,14208,He bends down and kisses her cheek. He,He bends down and kisses her cheek.,He,gold,runs and kisses her passionately.,slaps his butt and heads off after his car.,kisses her hand then leans back against his chest.,kisses her on the cheek and goes out the door.,3\n18628,anetv_tnavaGow7BI,2378,Two people are standing behind a counter. One person,Two people are standing behind a counter.,One person,gold,holds up a sandwich.,is wake boarding a boat.,shoots a ball into holes.,is adding peppers to a salad.,3\n18629,anetv_tnavaGow7BI,2379,One person is adding peppers to a salad. Another person,One person is adding peppers to a salad.,Another person,gold,is chopping the pepper on a board.,joins them downstairs in the cat.,mixes ice in a pot in a stove.,reluctantly stirring the ingredients in the pot.,0\n18630,lsmdc3013_BURLESQUE-5075,16294,He shuts the bedroom doors. She,He shuts the bedroom doors.,She,gold,stares right up with him.,sips his tea with a stack of scrambled eggs.,walks right past him and takes his arm as they walk away.,flings a pillow at a lamp.,3\n18631,anetv_iqe_HmjojQ8,93,The player runs past the first base. The player then,The player runs past the first base.,The player then,gold,serves the ball with the invite.,comes back to the first base and puts his foot on it.,shows on it for a second and then throws it on the field.,hits one and turns back with the shield.,1\n18632,anetv_iqe_HmjojQ8,92,A kickball player kicks the ball at home plate in a large arena. The player,A kickball player kicks the ball at home plate in a large arena.,The player,gold,throws the ball and celebrates.,comes down a log holding a black ball that throws it away.,falls between them trying to hit the ball.,runs past the first base.,3\n18633,anetv_IjBMVPd2Rcs,4053,There's a person dressed in a blue track suit demonstrating how to use a rowing machine. He,There's a person dressed in a blue track suit demonstrating how to use a rowing machine.,He,gold,\"is putting ice on a ski, creating an ice fishing line which is suspended in the air.\",begins playing the drums.,begins by demonstrating how to use pliers while holding a knife.,sits on the bar of the machine and secures his feet into the foot rest.,3\n18634,anetv_IjBMVPd2Rcs,4055,Then he begins by pulling the rope towards his chest while straightening his legs. Then he,Then he begins by pulling the rope towards his chest while straightening his legs.,Then he,gold,continues to use the machine in back and forth motion.,gets a rock and throws off the rope to jump down a pit when he is done.,takes a pick of the rope and ties it on the rope for a long moment.,bends down and puts his legs.,0\n18635,anetv_IjBMVPd2Rcs,4056,Then he continues to use the machine in back and forth motion. Then,Then he continues to use the machine in back and forth motion.,Then,gold,he finishes the carpet and walks away in force.,comes to a rest by releasing the rope and leaning backwards.,move to the picture to the tunnel.,\"continues runners, going on, going up and down.\",1\n18636,anetv_IjBMVPd2Rcs,4054,He sits on the bar of the machine and secures his feet into the foot rest. Then he,He sits on the bar of the machine and secures his feet into the foot rest.,Then he,gold,begins by pulling the rope towards his chest while straightening his legs.,begins to solve some buttons and continues on talking.,straightens several hurdles hurdle while he steps on the camel.,takes her off the mat and scoots her legs along the wall.,0\n18637,anetv_n18TxTWnbFI,10356,He falls backward into the water. Someone,He falls backward into the water.,Someone,gold,drops to his knees and disappears into a shape.,kicks up at someone.,is jumping into the water off the diving board.,\"stares at someone, who looks anxiously at someone.\",2\n18638,anetv_n18TxTWnbFI,10355,They jump off the diving board into the pool. He,They jump off the diving board into the pool.,He,gold,falls backward into the water.,walks on the rope and start to pull a couple.,stands on the bench next to someone.,\"go swiftly, jumping and dancing.\",0\n18639,anetv_n18TxTWnbFI,10357,Someone is jumping into the water off the diving board. A person,Someone is jumping into the water off the diving board.,A person,gold,is seen pulling up against a skateboard using a stick while kneeling down.,jumps and goes under the water.,is on wooden boards cubes in the water.,explores on the beach with an ice blue diving board.,1\n18640,anetv_n18TxTWnbFI,10358,A person jumps and goes under the water. A man,A person jumps and goes under the water.,A man,gold,runs to grab the baby and holds out a hand and squeeze it into his mouth as he grabs it.,\"is swimming in the water below, and is water skiing.\",is jumping high and does a flip into the water off of the diving board.,jump out of the mountain.,2\n18641,anetv_n18TxTWnbFI,10359,A man is jumping high and does a flip into the water off of the diving board. A person,A man is jumping high and does a flip into the water off of the diving board.,A person,gold,jumps onto the balance beam while the girls take.,comes out of the room and around for a begin.,comes onto the collide ball boards and begins to go faster.,does a black flip into the water off the diving board.,3\n18642,anetv_n18TxTWnbFI,10354,A person is standing on a diving board. They,A person is standing on a diving board.,They,gold,dive into the water.,add a blue to the bottom of the pool.,exercise on the camera.,jump off the diving board into the pool.,3\n18643,lsmdc1008_Spider-Man2-75108,13042,\"Someone takes a few paces past someone, stops, then turns. The brow of the thin - faced someone\",\"Someone takes a few paces past someone, stops, then turns.\",The brow of the thin - faced someone,gold,furrows as he walks away.,takes his cigarette out of his pocket.,collapses on the ground in his corner.,turns and faces a boat.,0\n18644,anetv_1-nEQf-TJPE,1725,A woman stands behind a bar with bottles and ingredients. She,A woman stands behind a bar with bottles and ingredients.,She,gold,puts the contacts into the glass.,drops the glass into a coffee mug.,\"mixes the ingredients together and pours the juice on a battery, then adds some more liquids to the mixture to create her drink.\",\"mixes the alcohols into a glass, then shakes them up before decorating and displaying the drink.\",3\n18645,anetv_1-nEQf-TJPE,1724,A video of vodka being poured into a martini glass is shown. A woman,A video of vodka being poured into a martini glass is shown.,A woman,gold,stands behind a bar with bottles and ingredients.,is seen speaking to the camera and pouring lemonade into glasses.,takes a drink and pours it around a coffee table.,sits at a counter on a coffee table.,0\n18646,anetv_jLykQW_-IVw,12544,People continue to walk behind her and in front. She,People continue to walk behind her and in front.,She,gold,continues to smoke and stare straight ahead.,thank the dog doorways for the camera.,then bends forward and gives each person a steady hug.,slides off the bench and begins to ride around.,0\n18647,anetv_jLykQW_-IVw,12543,She continues to hold cigarette in one arm. People,She continues to hold cigarette in one arm.,People,gold,walk into the sides of her backyard.,straighten her back away and continue the bar.,kisses him then takes hold of the duke's beer.,continue to walk behind her and in front.,3\n18648,anetv_jLykQW_-IVw,12541,A woman is smoking a cigarette. She is sitting down and people,A woman is smoking a cigarette.,She is sitting down and people,gold,blowing smoke out of her mouth.,are walking behind her.,\"continue smoking cigarettes, smoking them.\",stream under a drink.,1\n18649,anetv_jLykQW_-IVw,12542,She is sitting down and people are walking behind her. She,She is sitting down and people are walking behind her.,She,gold,continues to hold cigarette in one arm.,turns to other people in the water and then cuts her legs and takes the exercise - thigh.,grabs her bag off from her purse and lights it.,picks up a stick and starts brushing the pogo stick.,0\n18650,anetv_m7cHlmcFk9Y,11585,A cat is in a woman's lap in the bathroom. She,A cat is in a woman's lap in the bathroom.,She,gold,pulls a towel over the cat's head.,talks to a man on a back.,sees a nail and cuts its nails.,\"blinks the back of her head once, and then moves over again.\",0\n18651,anetv_m7cHlmcFk9Y,11586,She pulls a towel over the cat's head. She then,She pulls a towel over the cat's head.,She then,gold,gently tries to clip his claws one at a time.,walks her head away.,picks up several nails the makeup one is then shown on her back and shows off her sides.,decides right to blow it away from the camera.,0\n18652,lsmdc3080_THIS_MEANS_WAR-37128,11800,\"Someone takes an escalator down to a lower floor, observing a variety of single women. He\",\"Someone takes an escalator down to a lower floor, observing a variety of single women.\",He,gold,walks around a large mass of dolphins.,quickly printed her dressing gown and sits up and grabs her talk to her.,points to the window.,smiles at a dark - haired woman strolling by.,3\n18653,lsmdc3080_THIS_MEANS_WAR-37128,11799,A movie plays on a tv at a video store. Someone,A movie plays on a tv at a video store.,Someone,gold,dismisses camera as she dances with one baton on the bars.,\"goes around the apartment, holding her hands up.\",\"takes an escalator down to a lower floor, observing a variety of single women.\",\"is sitting on a table, his head covered in gauze.\",2\n18654,lsmdc3011_BLIND_DATING-975,15224,She grips a shelving unit. She,She grips a shelving unit.,She,gold,throws it across the room to find someone destroying the car.,\"prowls toward someone, reaches for his crotch.\",climbs onto the bars.,takes it off and tosses it against the wall.,1\n18655,anetv__Mz7KEe_mz0,6480,Groups of skateboarders race each other down a forested road and are pulled by trolley cars back to the top. Skateboarders,Groups of skateboarders race each other down a forested road and are pulled by trolley cars back to the top.,Skateboarders,gold,ride down a forested street one after the other doing skids and hard turns as friends watch along the side.,hold and flip into a pit of dirt falling at different buildings.,pass a row of bikes and passing rest people during the cross.,take more turns and sees now few people wearing black suits female keys on a horse and boy.,0\n18656,anetv__Mz7KEe_mz0,6479,A forested area is seen and young men walk up the street. Groups of skateboarders,A forested area is seen and young men walk up the street.,Groups of skateboarders,gold,are led down onto a progress set of bicycles.,roll to the new style room.,race each other down a forested road and are pulled by trolley cars back to the top.,appear as fast as they get the house.,2\n18657,anetv_g_Cz69Q5bKM,1130,The men hold tennis rackets and continue hitting the ball. The men,The men hold tennis rackets and continue hitting the ball.,The men,gold,continue playing and hitting the game around with ball pucks.,continue hitting the tennis ball against the wall.,hit one another and hit the ball hard.,run around hitting the ball.,3\n18658,anetv_g_Cz69Q5bKM,15246,The man on the left lobs the ball. The man from the right,The man on the left lobs the ball.,The man from the right,gold,get straight to the ball.,lobs the ball and wins the point.,grabs his height and runs to the field.,finds the missing shot from a goal.,1\n18659,anetv_g_Cz69Q5bKM,1129,Two people are seen are hitting a ball around in a room. The men,Two people are seen are hitting a ball around in a room.,The men,gold,hold tennis rackets and continue hitting the ball.,hold paintball and begin hugging one another.,grab and move around in either direction.,continue to hit a ball back and fourth as the man in really strikes him on the side.,0\n18660,anetv_AT_pPlJTiyE,12317,She puts a brick under the tire of the car. She,She puts a brick under the tire of the car.,She,gold,rubs a path over it again and replaces it.,pulls out the fender and holds it out and waves it over.,begins changing the tire on the car.,pulls up and puts the hatchback in the water then drives his car down the road.,2\n18661,anetv_AT_pPlJTiyE,12316,A woman is standing in front of a car. She,A woman is standing in front of a car.,She,gold,holds up a vacuum hose and begins putting it on her fingers.,puts a brick under the tire of the car.,is talking and begins blow drying her hair with a shampoo.,is wearing an underwater mask and nods to the camera.,1\n18662,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13028,\"To someone's relief, someone backs off. Someone\",\"To someone's relief, someone backs off.\",Someone,gold,\"slumps against the couch, watching her.\",\", someone lays the guard for a bus while a crowd watches.\",pulls someone to the back of her tie.,looks at someone with surprise.,3\n18663,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13029,Someone looks at someone with surprise. He,Someone looks at someone with surprise.,He,gold,picks up a small parcel.,smiles as he takes off his apron and coat.,shakes his head and points to the guards.,swings his legs back in frustration.,0\n18664,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13027,\"Someone gives him a withering look. In the Slytherin common room, he\",Someone gives him a withering look.,\"In the Slytherin common room, he\",gold,makes his way across the wasteland.,slumps onto a leather sofa.,leans out of a window to pretend something citrus is being cooked.,joins her on a narrow ledge.,1\n18665,anetv_1fF1OQtpctg,17334,They then begin to do a routine and some of the girls run with streamers as the rest of them hold up the girls for their stunt. The stunt is finished and the retreat back to their original position and,They then begin to do a routine and some of the girls run with streamers as the rest of them hold up the girls for their stunt.,The stunt is finished and the retreat back to their original position and,gold,it goes from the range of the jump squeegees first one by one.,undoes her performance on the stage to go over.,begin doing cartwheels and other tricks and stunts along with their mascot.,strike the final time to the start.,2\n18666,anetv_1fF1OQtpctg,17333,A cheer - leading team begins to hold up posters as their mascot runs behind them. They then begin to do a routine and some of the girls,A cheer - leading team begins to hold up posters as their mascot runs behind them.,They then begin to do a routine and some of the girls,gold,in yellow try to cheer.,start doing sync on the bars.,kick silently as the coach helps and keep their beam up and cheers them on.,run with streamers as the rest of them hold up the girls for their stunt.,3\n18667,anetv_1fF1OQtpctg,17335,\"The stunt is finished and the retreat back to their original position and begin doing cartwheels and other tricks and stunts along with their mascot. As the routine continues, more stunts are performed and the Tiger mascot\",The stunt is finished and the retreat back to their original position and begin doing cartwheels and other tricks and stunts along with their mascot.,\"As the routine continues, more stunts are performed and the Tiger mascot\",gold,jumps after the camel while laying on the floor watching him.,continues to cheer with the girls.,gets out of the way and wraps up early in the rink.,lands on the snow towards right the teens diving together.,1\n18668,anetv_HtuDZLsOK6M,18821,Various shots of scenery are shown and leads to a person scratching a dog and pulling a rope. More shots of people riding a boat,Various shots of scenery are shown and leads to a person scratching a dog and pulling a rope.,More shots of people riding a boat,gold,is shown followed by a girl riding in her sled.,\"are shown, seagulls flying, and people playing music.\",are shown as well as people jumping up and down and performing tricks.,captures the clips and performing tricks in the end.,1\n18669,anetv_HtuDZLsOK6M,18822,\"More shots of people riding a boat are shown, seagulls flying, and people playing music. Next a person\",\"More shots of people riding a boat are shown, seagulls flying, and people playing music.\",Next a person,gold,is seen drawing on a map and ends with an anchor and pictures of people.,washes their hands and shows pictures of him to go back to playing guitar.,\"surfing is shown in an ocean bucket, people are shown on a large boat once.\",greets a young girl playing the game with a game of soccer.,0\n18670,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59958,15240,People hiking over the gentle Shire Countryside. wading through a shallow stream. Someone,People hiking over the gentle Shire Countryside. wading through a shallow stream.,Someone,gold,slowly crosses up the boat.,reclines in his seat.,stops short.,surfaces with her reflection.,2\n18671,anetv_GbykXyc8LA8,12950,She lays down on her back and gets her belly button pierced. She,She lays down on her back and gets her belly button pierced.,She,gold,stands up and smiles.,ends a second call on the screen to see if she could be talking.,continues talking as she walks away from him and finishes her hair.,continues to talk while holding the heimlich hoop closer to the woman's body.,0\n18672,anetv_GbykXyc8LA8,12949,A woman takes off her jacket. She,A woman takes off her jacket.,She,gold,takes the mans coat after hand comes over and walks away.,and someone step out.,lays down on her back and gets her belly button pierced.,points it for the mirror.,2\n18673,anetv_GbykXyc8LA8,9719,A woman is seen taking her jacket off and close up of a table. The girl is seen laying on a table and a man,A woman is seen taking her jacket off and close up of a table.,The girl is seen laying on a table and a man,gold,walks in and piercing her stomach.,stands up to her posing on the bowl.,gives her a tattoo cutter.,begins putting tape on one finger.,0\n18674,anetv_GbykXyc8LA8,9720,The girl is seen laying on a table and a man walks in and piercing her stomach. He puts a piece of jewelry in and the girl,The girl is seen laying on a table and a man walks in and piercing her stomach.,He puts a piece of jewelry in and the girl,gold,begins to close the object around arm.,sits up to show.,continues cutting his hair.,begins speaking and presenting more of the sunscreen to the camera.,1\n18675,lsmdc1062_Day_the_Earth_stood_still-100988,393,\"Someone kneels down dejectedly in front of his father's grave. As he kneels crying, someone\",Someone kneels down dejectedly in front of his father's grave.,\"As he kneels crying, someone\",gold,stares into his eyes.,stops and faces him with wide eyes.,\"turns, staring afterwards into her eyes.\",\"rushes up to him, kneels down, puts her arms around him, and hugs him tightly.\",3\n18676,lsmdc1062_Day_the_Earth_stood_still-100988,392,Someone studies him and walks away. Someone,Someone studies him and walks away.,Someone,gold,kneels down dejectedly in front of his father's grave.,watches grimly as someone puffs at a grin.,follows down the hall from the front of the great hall.,arrives behind him and shows the words diamond engagement ring in someone's hand.,0\n18677,anetv_74MEdLMrXAQ,8874,\"Then, the referee puts the ball on the goal area and a boy kick the ball, but the goalkeeper stop the ball. The boys\",\"Then, the referee puts the ball on the goal area and a boy kick the ball, but the goalkeeper stop the ball.\",The boys,gold,play shooting the ball to the goalkeeper stops the ball.,stick the stick to the president and a player in red t the shirt celebrates by punching the ball afterwards.,clink balls and bowls and celebrates.,bounce and spin on each other without clapping helmets making a high turn and scoring.,0\n18678,anetv_afL6f_pwgMs,8636,A person is seen sitting in a tube drinking a beer while other people are seen siting off in the distance. More shots,A person is seen sitting in a tube drinking a beer while other people are seen siting off in the distance.,More shots,gold,are shown of the people riding along in tubes while drinking beers and speaking to one another.,are shown of people moving through the city as a bird climbs into the boat.,are shown of people pushing their boards into the canyon and ending their movements.,are shown of people sitting in various locations doing tricks afterwards on their bodies.,0\n18679,anetv_hKa9wV1orM8,3247,\"Then, people spin without hitting and then continue riding and bumping cars. A boy wearing white shirt\",\"Then, people spin without hitting and then continue riding and bumping cars.\",A boy wearing white shirt,gold,is bowling while people sit next to each other.,spins around and get hit by several cars.,gives a cactus to his friend.,is trying to walk to the bar.,1\n18680,anetv_hKa9wV1orM8,3244,People rides bumper cars in a carnival. A teen wearing red cup,People rides bumper cars in a carnival.,A teen wearing red cup,gold,performs a a twirl on a lamp someone looking off into the distance.,gets hit by other cars.,stomps his feet and crushes them to a garbage can.,swings on a pavement and runs across a slack line with numerous sports and people in front.,1\n18681,anetv_hKa9wV1orM8,3246,\"People spin around and then continue riding and bumping. Then, people\",People spin around and then continue riding and bumping.,\"Then, people\",gold,stand combed at the end and start after the woman landing in a canoe with occasionally on hands.,splash while others watch on the side.,spin without hitting and then continue riding and bumping cars.,all watch to the sides as the girl continues to play.,2\n18682,anetv_hKa9wV1orM8,3245,A teen wearing red cup gets hit by other cars. People,A teen wearing red cup gets hit by other cars.,People,gold,drives a little small dog on the ground.,see the instructor on the gym.,spin around and then continue riding and bumping.,takes a shot from a pool and runs away from the sidelines.,2\n18683,anetv_fwqDDFkOaCc,10898,\"A violinist, Lindsay Stirling is performing live with some other participants on a stage in front of an audience. She\",\"A violinist, Lindsay Stirling is performing live with some other participants on a stage in front of an audience.\",She,gold,begins by playing the violin while the other performers dance in a choreographed fashion.,are plays on their laughs.,\"chases a high drum in a small environment, singing in an china plaza.\",\", a very pale band named singer in pink is gestures and tune, watching the man talk.\",0\n18684,anetv_fwqDDFkOaCc,10904,Then the entire dance team comes on stage and continues dancing in coordinated steps as the violinist plays and dances along with them. Then they,Then the entire dance team comes on stage and continues dancing in coordinated steps as the violinist plays and dances along with them.,Then they,gold,\"perform the part, then dance, while the french dancers follow their right movements in front.\",finish by performing to other tricks and smiling fans and waving their hands.,\"raise their hands when the two continue talking and posing, followed by more people.\",leave the stage with only the violinist performing as she continues to dance and play the instrument.,3\n18685,anetv_fwqDDFkOaCc,10900,The violinist dances as she plays the instrument along with five other dancers. They,The violinist dances as she plays the instrument along with five other dancers.,They,gold,dance in a modern and hip hop style of dancing.,return to the stage and walks back to the table.,are shown sitting in the same way.,continue cartwheels and kicking.,0\n18686,anetv_fwqDDFkOaCc,10899,She begins by playing the violin while the other performers dance in a choreographed fashion. The violinist,She begins by playing the violin while the other performers dance in a choreographed fashion.,The violinist,gold,puts the winner after her and continues talking to each other.,sands all around on the stage as they release the combined weight.,dances as she plays the instrument along with five other dancers.,walked to the band playing the violin plays a second time.,2\n18687,anetv_fwqDDFkOaCc,10902,\"Then only two of the dancers stay on the stage with the violinist and dance in a Salsa style. After they leave the stage, one of the male dancers\",Then only two of the dancers stay on the stage with the violinist and dance in a Salsa style.,\"After they leave the stage, one of the male dancers\",gold,continue to do flips on various ground and show close up of the beard venue.,does some modern style of dancing as he rotates on his knees.,raise their hand high and indicate the tips of the dancers.,twists her body to indicate the skies where someone has then secures the muscles and intervenes.,1\n18688,anetv_fwqDDFkOaCc,10901,They dance in a modern and hip hop style of dancing. Then only two of the dancers,They dance in a modern and hip hop style of dancing.,Then only two of the dancers,gold,begin arm wrestling surrounded by occurring on the floor.,stay on the stage with the violinist and dance in a salsa style.,walks back to their band and brush.,out of the pastry box near one.,1\n18689,lsmdc1020_Crazy_Stupid_Love-81192,19460,\"Someone regards her boyfriend, who is playing with his phone and sitting next to another guy doing the same thing. Someone\",\"Someone regards her boyfriend, who is playing with his phone and sitting next to another guy doing the same thing.\",Someone,gold,stands by a glass barrier on the roof terrace of the mall.,lifts his hold up above his mouth and tilts his head.,\"goes down the aisle, taking the coin from him.\",moves his hand around for his hat but someone tries to stand up for the phone.,0\n18690,lsmdc1020_Crazy_Stupid_Love-81192,19466,\"Someone wears a baggy striped polo shirt, blue jeans and running trainers. Someone\",\"Someone wears a baggy striped polo shirt, blue jeans and running trainers.\",Someone,gold,tries to help her.,checks his watch and shrugs.,\"walk on and on street in an office, to beckons.\",\"stands, gasping for breath.\",1\n18691,lsmdc1020_Crazy_Stupid_Love-81192,19465,He looks up and chews slowly as someone approaches. Someone,He looks up and chews slowly as someone approaches.,Someone,gold,hurries out the door.,finds a true marker and continues talking.,\"wears a baggy striped polo shirt, blue jeans and running trainers.\",looks out from behind some piles of debris dunes among a tin of grain.,2\n18692,lsmdc1020_Crazy_Stupid_Love-81192,19459,\"They all raise their glasses. The guy, who is dark - haired and a bit gawky looking,\",They all raise their glasses.,\"The guy, who is dark - haired and a bit gawky looking,\",gold,stops to look at the cash tire.,looks him up and down.,is walking with someone alone on the opposite sidewalk.,kisses someone on the lips.,3\n18693,lsmdc1020_Crazy_Stupid_Love-81192,19461,Someone stands by a glass barrier on the roof terrace of the mall. He,Someone stands by a glass barrier on the roof terrace of the mall.,He,gold,treated her most assassination attempt at listening.,bites into a piece of folded up pizza.,\"walks through the club de his family, sipping a glass.\",opens a large tea box at the top of the tables.,1\n18694,lsmdc1020_Crazy_Stupid_Love-81192,19463,\"He is dressed smartly in a dark suit, brown shoes, and sunglasses. He\",\"He is dressed smartly in a dark suit, brown shoes, and sunglasses.\",He,gold,is more detailed than featured.,removes the seat beside one of the clerks.,leans on the barrier and peers over.,nods and puts down the white jacket.,2\n18695,lsmdc1020_Crazy_Stupid_Love-81192,19462,He bites into a piece of folded up pizza. He,He bites into a piece of folded up pizza.,He,gold,drops a substance onto his mouth before keeping it on his head.,rubs a pan in the pan over the stove.,\"is dressed smartly in a dark suit, brown shoes, and sunglasses.\",opens the front door and grabs someone.,2\n18696,anetv_E15Q3Z9J-Zg,5072,\"The second woman talks to and instructs the first woman while the first woman exercises on the machine, interspersed with quick cuts of the woman exercising alone. The two women\",\"The second woman talks to and instructs the first woman while the first woman exercises on the machine, interspersed with quick cuts of the woman exercising alone.\",The two women,gold,demonstrate different fencing moves while demonstrating how to arm wrestling on an elliptical.,stop and grab both hands.,shake hands as the person walk behind the class.,stand next to the machine and talk to each other and the camera.,3\n18697,anetv_E15Q3Z9J-Zg,5396,A woman is seen riding on a piece of exercise equipment with another person standing next to her and motivating her. The woman,A woman is seen riding on a piece of exercise equipment with another person standing next to her and motivating her.,The woman,gold,continues flipping and moving in slow motion several times while moving her body movements.,stands up and looks off into the distance.,continues riding and then is seen again next to the machine speaking to the woman and smiling to the camera.,continues performing the routine on the exercise machine and sitting back up into the air and speaking to the camera.,2\n18698,anetv_E15Q3Z9J-Zg,5071,A woman exercises on a stepping sort of machine. The woman,A woman exercises on a stepping sort of machine.,The woman,gold,sits upright with a woman laying on the machine.,\"pushes the building, as the person caresses multiple more as she approaches.\",stands next to the machine and another woman while talking to the camera.,spins round and places it into a panel of a woman.,2\n18699,lsmdc1020_Crazy_Stupid_Love-81716,4908,Someone plods over to the podium. Someone,Someone plods over to the podium.,Someone,gold,sees someone's contempt for someone.,sticks his fingers around his napkin and rubs his forehead.,\"joins them, and the blonde curls around his shoulder.\",smiles and glances at someone.,3\n18700,lsmdc3042_KARATE_KID-18708,14867,\"They drive past urban apartment buildings and parks. Now, the taxi\",They drive past urban apartment buildings and parks.,\"Now, the taxi\",gold,arrives at the theater with new york night sky.,drives past tall warehouses and over a set of train tracks.,whizzes through the streets of many choked up buildings and sports roofs.,faces the parked station entrance as someone rides up entering the town.,1\n18701,lsmdc3042_KARATE_KID-18708,14881,They pass a courtyard featuring a Mao statue. The stadium,They pass a courtyard featuring a Mao statue.,The stadium,gold,positioned at an entry point to the church.,lights outside the clothesline under the arch.,opens and the officer seats their cabin.,resembles a sleek - steel bird's nest.,3\n18702,lsmdc3042_KARATE_KID-18708,14885,A man gardens in the hallway. Someone,A man gardens in the hallway.,Someone,gold,peeks out a window at a park across the street.,adjusts the camera's knob.,glances down at her.,walks by the cliff.,0\n18703,lsmdc3042_KARATE_KID-18708,14874,\"In the dim cabin, someone plays a handheld video game. Later, he\",\"In the dim cabin, someone plays a handheld video game.\",\"Later, he\",gold,sleeps on his mother's shoulder.,feeds a stray woman.,plays the accordion on a small portable television.,sets two bottles on a panel.,0\n18704,lsmdc3042_KARATE_KID-18708,14875,\"Later, he sleeps on his mother's shoulder. Now, sunlight\",\"Later, he sleeps on his mother's shoulder.\",\"Now, sunlight\",gold,shines through an endless strip of light of light.,shines through through the windows as the atmosphere becomes luxurious packed.,bathes someone's face as he blinks awake.,bathes the figure of someone as she crosses the driveway.,2\n18705,lsmdc3042_KARATE_KID-18708,14871,His mother watches as he struggles to close it. He,His mother watches as he struggles to close it.,He,gold,leaps out of the window and gallops away into the barley.,sprays up the baby's hair.,yanks off the pair and puts it on.,doffs his jacket and takes a seat.,3\n18706,lsmdc3042_KARATE_KID-18708,14882,\"The boy eyes his mother. Now in a park, men and women\",The boy eyes his mother.,\"Now in a park, men and women\",gold,stare at a huge ring together.,relax in and around a small pavilion.,ride the flower on blossoms lights.,light a cigarette in a potion covered alley.,1\n18707,lsmdc3042_KARATE_KID-18708,14873,\"On - board, passengers sip tea and uniformed flight attendants work the aisles. In the dim cabin, someone\",\"On - board, passengers sip tea and uniformed flight attendants work the aisles.\",\"In the dim cabin, someone\",gold,finds someone working on an open carriage and passes to someone.,faces a underway crack.,plays a handheld video game.,skillfully pegs apprehensively with a wild expression.,2\n18708,lsmdc3042_KARATE_KID-18708,14884,\"Someone gives the sign a skeptical look. A tall, blond, Caucasian boy\",Someone gives the sign a skeptical look.,\"A tall, blond, Caucasian boy\",gold,enters two men.,jogs up to them.,stands in a high neon railing.,has gathered with someone.,1\n18709,lsmdc3042_KARATE_KID-18708,14876,\"In an airport, a statue shows four serpentine dragons holding up a globe. Someone and his mother\",\"In an airport, a statue shows four serpentine dragons holding up a globe.\",Someone and his mother,gold,have climbed from someone's new fridge.,rest on their inner arm.,roll two heaped luggage carts.,share a look with it.,2\n18710,lsmdc3042_KARATE_KID-18708,14883,\"A golden sign reads, Beverly Hills Luxury Apartment.. Someone\",\"A golden sign reads, Beverly Hills Luxury Apartment..\",Someone,gold,gives the sign a skeptical look.,stares down through the chalkboard wall and desk.,is smoking a cigarette in the parking lot.,peers down at the encasement.,0\n18711,lsmdc3042_KARATE_KID-18708,14878,A nearby sign shows a Chinese character. A woman,A nearby sign shows a Chinese character.,A woman,gold,\"marches into the jungle, stopping from the entrance to school.\",performs piano amid a video of the participant.,observes a black lady with photos to another mannequin as she observes.,holds a sign in english.,3\n18712,lsmdc3042_KARATE_KID-18708,14865,\"Vanishing from view, as the van continues onward. Someone\",\"Vanishing from view, as the van continues onward.\",Someone,gold,frowns and leans his head against the seat.,tweaks some supports against the wall.,runs the sail through the doctors work cockpit with a hole so he can reach the river.,makes a call from his weather radio.,0\n18713,lsmdc3042_KARATE_KID-18708,14868,\"Now, the taxi drives past tall warehouses and over a set of train tracks. Downtown, the windshield wipers\",\"Now, the taxi drives past tall warehouses and over a set of train tracks.\",\"Downtown, the windshield wipers\",gold,follow her down the narrow path.,clear a rainy view of towering high - rises.,shine on the mnu vehicles.,shine under doors in her apartment.,1\n18714,lsmdc3042_KARATE_KID-18708,14879,\"A woman holds a sign in English. From a van on a highway, someone\",A woman holds a sign in English.,\"From a van on a highway, someone\",gold,\"sees guests making out, dangling and cold, as they enter a conference room together.\",looks out at china's central tv headquarters.,enters with a mercedes - and - bikini girl standing in a chokehold.,\"loosens his long tie, her shoulders extended as she stares into the emt's flow.\",1\n18715,lsmdc3042_KARATE_KID-18708,14877,Someone and his mother roll two heaped luggage carts. A nearby sign,Someone and his mother roll two heaped luggage carts.,A nearby sign,gold,is broken from the cia.,examines the sheet of paper.,\"reads, hours earlier.\",shows a chinese character.,3\n18716,lsmdc3042_KARATE_KID-18708,14872,She looks across the aisle. Someone,She looks across the aisle.,Someone,gold,leans toward a stocky asian man with a pierced ear.,\"makes the rookie gesture to the boy in the other car, then moves back to him.\",\"steps into his room, sets down the phone without missing a note, then answers and bends over and resumes the call.\",prods her way and starts into a set of books as she shows up the drawings on them.,0\n18717,anetv_j4EFi_NoEbQ,7295,Boy is skateboarding in a sidewalk with peopl walking by. man,Boy is skateboarding in a sidewalk with peopl walking by.,man,gold,is walking to a yard and he is vacuuming the grass.,is standing in street holding a shovel and mean something else.,is skateboarding in street and a car almost run over.,is holding the vacuum and stands mowing.,2\n18718,lsmdc0010_Frau_Ohne_Gewissen-51695,3268,\"They stare at each other for a long moment, then, with intense effort someone gets up on his feet and stands there swaying a little. His face\",\"They stare at each other for a long moment, then, with intense effort someone gets up on his feet and stands there swaying a little.\",His face,gold,is rapt and peaceful.,falls back as he watches the sun looking down at him.,\"is set, a nervous expression in his eyes.\",is covered with sweat.,3\n18719,anetv_orwTrxIwCpo,4272,The man speaks to the camera while spraying down the car. The man,The man speaks to the camera while spraying down the car.,The man,gold,continues to clean the car while speaking to the camera.,wipes the car clean with the red scraper followed by clean shoes.,continues laughing while people continue on leaves playing.,hops up and waves the dogs cars away.,0\n18720,anetv_orwTrxIwCpo,13806,\"Then, the man wash the side windows and the roof of the car. After, the man\",\"Then, the man wash the side windows and the roof of the car.\",\"After, the man\",gold,talks and wash the back of the car.,holds a jack near the gates of the car.,\"peels his tire, pick up the scraper, push it up and then add a fluid.\",puts a washer in the car and begins cleaning off the cleaning.,0\n18721,anetv_orwTrxIwCpo,13805,\"A man holding crutches wash a car with a hose in the street. Then, the man\",A man holding crutches wash a car with a hose in the street.,\"Then, the man\",gold,wash the side windows and the roof of the car.,makes a square shaped throw.,kneel and shovels shingles out of a parking lot.,arrives with a large ammunition press.,0\n18722,anetv_orwTrxIwCpo,4271,A man is seen standing behind a car holding a hose. The man,A man is seen standing behind a car holding a hose.,The man,gold,inhales one time and grabs his other hand.,continues riding down the street while the camera pans around.,speaks to the camera while spraying down the car.,hangs up various items from the bike cleaning the side.,2\n18723,anetv_sCCJpFKVV8g,5677,A woman is seen bending over a table with a tattoo artist rubbing her back from behind and grabbing a tattoo needle. The woman then,A woman is seen bending over a table with a tattoo artist rubbing her back from behind and grabbing a tattoo needle.,The woman then,gold,begins to tattoo her face while looking to the camera while pointing to the tattoo and showing her the tattoo.,begins tattooing the back of the woman while the camera pans around from various angles.,rips off the cats nails and continues tattooing while the woman responds by speaking to her and putting on a human arm.,drops the feathers and shows the moves wide until she finally sits down and continues painting her nails.,1\n18724,lsmdc3046_LARRY_CROWNE-21415,2162,Someone follows his neighbor into a garage filled with secondhand goods. He,Someone follows his neighbor into a garage filled with secondhand goods.,He,gold,wears a baggy plaid red jacket.,checks a photograph of an envelope.,ends the call and staggers over to someone.,hands someone a booklet.,3\n18725,anetv_R0YS8JS_0rk,13070,The gymnast dismounts from the platform. The gymnast,The gymnast dismounts from the platform.,The gymnast,gold,does a choreographed routine and dismounts.,jumps off the mat and does push flips and drops to his knees.,shakes hands with coaches and other athletes.,jumps and dismounts and lands on the mat.,2\n18726,anetv_R0YS8JS_0rk,1035,He then begins performing a gymnastics routine on a beam. He,He then begins performing a gymnastics routine on a beam.,He,gold,begins performing on the rope while others watch him on the side.,spins himself around continuously and ends by jumping down the side and walking away.,moves around around the beam while jumping the beam and performing a routine.,increases the beam.,1\n18727,anetv_R0YS8JS_0rk,13067,A gymnast stretches and waves to the crowd before a competition. The gymnast,A gymnast stretches and waves to the crowd before a competition.,The gymnast,gold,\"performs several flips and spins, flips and performs multiple flips.\",stretches and waves her hands once.,flips backwards in the air while bows and dives.,hops up onto a platform using his hands.,3\n18728,anetv_R0YS8JS_0rk,13068,The gymnast hops up onto a platform using his hands. The gymnast,The gymnast hops up onto a platform using his hands.,The gymnast,gold,dismounts to dismount and dismounts several times before jumping off into the water.,spins around the platform using he s hands to hold his weight.,\"does a routine on the balance beam, then lifts the beam up in the air and launches into the parallel bar.\",training before leading mid performance in the distance without his slapping!,1\n18729,anetv_R0YS8JS_0rk,1034,A man is shown raising his arm up in the middle of a large crowd. He then,A man is shown raising his arm up in the middle of a large crowd.,He then,gold,continues riding while others watch on the sidelines.,goes back to his horse and gives the audience a hug.,begins to break apart several times while several other people watch from behind.,begins performing a gymnastics routine on a beam.,3\n18730,lsmdc1040_The_Ugly_Truth-8748,1031,The colorful restaurant is decorated with palms. Someone,The colorful restaurant is decorated with palms.,Someone,gold,has the gun set on one board.,\"sits in a booth overlooking the dance floor, where couples salsa.\",gets places from the fridge.,bagged candlelight with lighted candles while men swim across the decks.,1\n18731,lsmdc1040_The_Ugly_Truth-8748,1030,\"Someone looks uncomfortable, then forces a smile. Someone\",\"Someone looks uncomfortable, then forces a smile.\",Someone,gold,returns with a warm smile.,scraps his teeth and calls out of someone's office.,walks up to a hostess.,\"laughs, then give a thumbs up.\",2\n18732,lsmdc1040_The_Ugly_Truth-8748,1032,\"Someone sits in a booth overlooking the dance floor, where couples salsa. She\",\"Someone sits in a booth overlooking the dance floor, where couples salsa.\",She,gold,turns to discover someone walking apart.,clutches his head with his hands.,waiting on pools of candles on players's leg.,is on the phone to someone.,3\n18733,lsmdc0051_Men_in_black-71099,16754,He points up at the screen with a laser pencil. He,He points up at the screen with a laser pencil.,He,gold,\"glances at his mid - colleague, then makes his way around the tall bushes.\",indicates the three stars that make up the belt.,\"sticks it out through a sheet of wood, then lifts his head.\",draws another gun out of hand and throws it away.,1\n18734,lsmdc3059_SALT-29152,2049,\"Leaning briefly against a tree trunk, she glances over her shoulder. She\",\"Leaning briefly against a tree trunk, she glances over her shoulder.\",She,gold,is covered in a golden shield and completely made out its tail.,turns on her back and climbs back into the leather seat.,hits a cart beside her lifeboat.,breathes hard through her parted lips.,3\n18735,lsmdc3059_SALT-29152,2034,\"As he looks up at her blood stained face, her eyes glisten and she displays a big smile. Someone\",\"As he looks up at her blood stained face, her eyes glisten and she displays a big smile.\",Someone,gold,takes a i d. someone is worn out.,studies her resolute expression.,glares from his plate.,leans into into the chair.,1\n18736,lsmdc3059_SALT-29152,2036,\"Craning his neck, he looks pass her to the fbi agents. He\",\"Craning his neck, he looks pass her to the fbi agents.\",He,gold,glances down again at someone's restraints then eyes the bald man.,takes his phone out to someone.,does her rear window in the opposite direction.,steps into a crate.,0\n18737,lsmdc3059_SALT-29152,2039,A window shows their approach over the Potomac River. Someone,A window shows their approach over the Potomac River.,Someone,gold,gives someone a meaningful look which she registers coldly.,fills her view.,vaults on a boat near blue.,\"seats at the center of the procession, which casts a swell of dust towards the gates.\",0\n18738,lsmdc3059_SALT-29152,2035,\"Someone studies her resolute expression. Craning his neck, he\",Someone studies her resolute expression.,\"Craning his neck, he\",gold,covers his mouth as he leaves.,allows someone to nod.,looks pass her to the fbi agents.,sways upwards towards a environment.,2\n18739,lsmdc3059_SALT-29152,2041,He glances out of the Potomac then directs her gaze to the door. It,He glances out of the Potomac then directs her gaze to the door.,It,gold,starts to go out and a woman creeps through above her.,take a step apart from sealing behind a row full of remaining targets.,\"starts toward her and she picks up the feather, hops off the beam, and hands it to someone.\",bears a semi - circular emergency release handle.,3\n18740,lsmdc3059_SALT-29152,2048,\"Someone rushes a shore and dashes through the woods, pumping her shackled arms. Leaning briefly against a tree trunk, she\",\"Someone rushes a shore and dashes through the woods, pumping her shackled arms.\",\"Leaning briefly against a tree trunk, she\",gold,glances over her shoulder.,hears her friends coming and the mother wincing happily.,sticks her fingers through the knife.,wears a simple veil.,0\n18741,lsmdc3059_SALT-29152,2045,He stares into the water. It,He stares into the water.,It,gold,is parked around the room.,follows someone's side.,continues to dangle off a cow.,shows no sign of the mysterious woman.,3\n18742,lsmdc3059_SALT-29152,2044,\"She steals herself with a deep breath. As someone's hand closes into a fist, she\",She steals herself with a deep breath.,\"As someone's hand closes into a fist, she\",gold,\"shakes out her gun, then flings a pillow at someone.\",guides a wounded someone.,forces herself to squat.,lunges for the emergency release.,3\n18743,lsmdc3059_SALT-29152,2050,She breathes hard through her parted lips. Her wet short hair,She breathes hard through her parted lips.,Her wet short hair,gold,clinging to her head.,trails away from his scar.,form a lingering spot.,\"dangles in her graceful, white polo.\",0\n18744,lsmdc3059_SALT-29152,2038,He talks on a headset. A window,He talks on a headset.,A window,gold,is in a room where there is a tv set up on the furniture.,is seen on the tv.,shows their approach over the potomac river.,shows the station someone's car parked in front of the building.,2\n18745,lsmdc3059_SALT-29152,2042,\"It bears a semi - circular emergency release handle. Swallowing, someone\",It bears a semi - circular emergency release handle.,\"Swallowing, someone\",gold,watches someone's finger tap deliberately against his leg.,moves around a basin and removes concrete.,bolts her head up and swings on.,takes out his own wing.,0\n18746,lsmdc3059_SALT-29152,2046,\"It shows no sign of the mysterious woman. Searching fruitlessly for someone, someone\",It shows no sign of the mysterious woman.,\"Searching fruitlessly for someone, someone\",gold,sends the tallest team all down.,allows a smile and gives a satisfied nod.,stands talking to the full members of the band.,reinserts himself onto a back.,1\n18747,lsmdc3059_SALT-29152,2043,\"Swallowing, someone watches someone's finger tap deliberately against his leg. She\",\"Swallowing, someone watches someone's finger tap deliberately against his leg.\",She,gold,\", someone turns to see someone holding a covered jug with one hand.\",\"avoids his gaze, then rubs his eyes.\",\"bears a forefinger, cascades towards the glittering metal of iron bridge.\",steals herself with a deep breath.,3\n18748,lsmdc3059_SALT-29152,2040,Someone gives someone a meaningful look which she registers coldly. Someone stares at him and he,Someone gives someone a meaningful look which she registers coldly.,Someone stares at him and he,gold,bites his lip with a weary scowl.,wears a dreamy grin.,directs her gaze toward the window.,adjusts his grip on her shoulder beer.,2\n18749,lsmdc3059_SALT-29152,2051,Her wet short hair clinging to her head. Her feet,Her wet short hair clinging to her head.,Her feet,gold,\"return across the sand as someone cuts off, and where is the team.\",carry her over the forest snowy ground.,\"cling on the mirror, planets hair one sign of someone.\",nip at his crest.,1\n18750,anetv_fDPNV463JuE,2857,Two men are standing holding paintball huns in a field with obstacles. man,Two men are standing holding paintball huns in a field with obstacles.,man,gold,is skating around the field while the other hit the ball back and forth.,is showing how to holds the gun in a paintball field.,is throwing the javelin.,begin to play the games of tug of war with other players.,1\n18751,anetv_fDPNV463JuE,2876,\"A quick black screen appears with white words that say tips para back central. Two men dressed in protective gear and helmets are standing closely to one another talking, and one of the men has a paint gun in his hands and he\",A quick black screen appears with white words that say tips para back central.,\"Two men dressed in protective gear and helmets are standing closely to one another talking, and one of the men has a paint gun in his hands and he\",gold,blends them all together.,'s showing how he holds the gun as he talks and points to the paint gun area with all of the large cushions.,can demonstrate circles that exercises with his technique using a hockey stick between their legs and the credits of the clip are shown.,is recording to the camera.,1\n18752,anetv_fDPNV463JuE,2875,A man wearing protective gear and a helmet is standing and talking to the camera in a paint gun area with a lot of large cushions of different shapes. A man,A man wearing protective gear and a helmet is standing and talking to the camera in a paint gun area with a lot of large cushions of different shapes.,A man,gold,is in front of the screen showing his commentator explaining how he welds the red lens.,quickly walks in front of the guy talking then reappears in the view and talks to the man.,takes a selfie while sitting in a kayak on a snowboard.,is shown that he is using gear to replace the tools.,1\n18753,anetv_T7Mg-Owb14Y,4946,He is holding a large pole as he talks. He,He is holding a large pole as he talks.,He,gold,stands on a hill.,vaults back onto the diving board to join it.,shows the camera the different positions necessary for using the pole.,uses a lasso to balance it backward.,2\n18754,anetv_T7Mg-Owb14Y,13304,Man in a gym room and kneels on his knee to make exercise holding the pole. man,Man in a gym room and kneels on his knee to make exercise holding the pole.,man,gold,gets up and talks about the guy and points to a room top.,is in a gym performing an exercise in gunner bars.,is making exercise kneeling on the floor showing how to make exercise.,is doing karate moves in a weightlifting competition.,2\n18755,anetv_dxvKVBrNMDw,7151,A woman is seen speaking to the camera while holding a hula hoop and then proceeds to spin the object around her. She,A woman is seen speaking to the camera while holding a hula hoop and then proceeds to spin the object around her.,She,gold,begins hitting a hula hoop with her foot while looking off into the distance.,continues putting a hoop by the batons and ends by walking back and speaking to herself while sitting and looking.,moves along the ends and spins her around while the camera captures her movements.,continues hula hooping over and over again and leads into pictures of people hula hooping in the end.,3\n18756,anetv_APuN4vwgKJ4,17533,She combines and mixes the ingredients with a hand mixer. She then,She combines and mixes the ingredients with a hand mixer.,She then,gold,places flour into a bowl after she measures it along with baking soda.,\"places the other mixture on a plate and puts it on, scooping a sandwich in place.\",demonstrates how to stuff out a pan with a slice of ingredients.,adds the ingredients required to the spoons and bag dishes on the counter.,0\n18757,anetv_APuN4vwgKJ4,17535,She adds it to the cookies dough and mixes it by hand then adds in the chocolate chips. She then,She adds it to the cookies dough and mixes it by hand then adds in the chocolate chips.,She then,gold,measures out dough that is on a baking sheet for cooking.,\"spreads and cuts the dough into dough, adds frosting, and chocolate.\",rubs the dough into balls and mixes them together.,places some dough onto the oven and blends them all together in the same time.,0\n18758,anetv_APuN4vwgKJ4,17534,She then places flour into a bowl after she measures it along with baking soda. She,She then places flour into a bowl after she measures it along with baking soda.,She,gold,rolls up the aid piece on the plate and puts ingredients in the baking pan.,adds it to the cookies dough and mixes it by hand then adds in the chocolate chips.,puts the cream in her pan and brings it to the baking.,uses to make another before sprinkling it on the olive craft.,1\n18759,anetv_APuN4vwgKJ4,17532,A woman standing at a counter speaking about making chocolate chip cookies. She,A woman standing at a counter speaking about making chocolate chip cookies.,She,gold,stirs a plastic slice and stirs the ingredients into a bowl.,combines and mixes the ingredients with a hand mixer.,shows flyers to see the finished marketing setting and woman walks in in a square area using a listing ad.,takes a lid off of a hookah and begins to boil it.,1\n18760,lsmdc3032_HOW_DO_YOU_KNOW-2092,8817,Someone looks around the huge bathroom. She,Someone looks around the huge bathroom.,She,gold,\"surveys the room with a grin, then follows a smile to her rooms as she walks away.\",bursts down a hill into the cloud of silt.,starts to remove her slippers.,opens the drawer and finds it filled with unopened toothbrushes of every color and pattern.,3\n18761,lsmdc3032_HOW_DO_YOU_KNOW-2092,8816,She grabs her dress and steps out. Someone,She grabs her dress and steps out.,Someone,gold,\"walks to the door, carrying someone's briefcase.\",looks around the huge bathroom.,\"crosses to the door, sipping a glass.\",watches her hourglass touch her right shoulder.,1\n18762,lsmdc3032_HOW_DO_YOU_KNOW-2092,8818,\"Someone takes a brush, then puts her bright red dress on over her matching slip. He\",\"Someone takes a brush, then puts her bright red dress on over her matching slip.\",He,gold,hands her her space case and looks at someone again.,opens a cabinet filled with women's pink sweat suits.,\"hands someone a handkerchief, and someone snatches the weapon on the cabinet.\",\"batons skyward, checking his watch.\",1\n18763,anetv_jVC3DZdphYM,8672,\"After, the person continues playing while marking the compass of the music with his hands. Next, the person\",\"After, the person continues playing while marking the compass of the music with his hands.\",\"Next, the person\",gold,plays the drums and starts to take a good break.,grabs the accordion and takes his breath off and plays in his dining competition.,stops playing and talks.,plays a part of the violin and laugh while smoking.,2\n18764,anetv_jVC3DZdphYM,3201,\"The man stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times. The man then\",\"The man stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times.\",The man then,gold,flips the wooden stick upside down and lays it back on the table.,begins playing again using his hands to indicate the type of note he is hitting.,claps his hands back and goes.,goes to a small interact where they play their drum solo.,1\n18765,anetv_jVC3DZdphYM,3200,\"The man continues to play the harmonica, moving back and forth and side to side and emoting with his eyebrows while playing. The man\",\"The man continues to play the harmonica, moving back and forth and side to side and emoting with his eyebrows while playing.\",The man,gold,continues doing various flips and tricks while speaking to the camera and making more shots for the camera.,continues playing and seems to show his notes and body and the cream can surface.,\"stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times.\",continues spinning up at the camera and ends by giving a thumbs up and riding.,2\n18766,anetv_jVC3DZdphYM,8670,\"A person plays the harmonica holding it with both hands inside a room. Then, the person\",A person plays the harmonica holding it with both hands inside a room.,\"Then, the person\",gold,stops playing and talks.,start playing a harmonica.,stands ready to set the instrument behind the pedal of the swing as the man holding the camera in hand talks on the microphone.,behind the cross has lit a candle on the stage.,0\n18767,anetv_jVC3DZdphYM,3202,The man then begins playing again using his hands to indicate the type of note he is hitting. The man then,The man then begins playing again using his hands to indicate the type of note he is hitting.,The man then,gold,bites a shower and peers out all more names then laughs some more.,gets hold of the bongo and begins singing faster.,flips back and forth while the talks.,begins playing again before stopping and talking to the camera one last time.,3\n18768,anetv_jVC3DZdphYM,8671,\"Then, the person stops playing and talks. After, the person\",\"Then, the person stops playing and talks.\",\"After, the person\",gold,puts paint paint on the paint object and travel the shakes along the canvas.,\"puts their ring on their feet and begins using their hands, clothes talking.\",throws the angel with three more two.,continues playing while marking the compass of the music with his hands.,3\n18769,lsmdc3030_GROWN_UPS-13942,11420,\"Outside, a husky guy plays with two kids in an above ground pool. As his busty wife brings the phone, he\",\"Outside, a husky guy plays with two kids in an above ground pool.\",\"As his busty wife brings the phone, he\",gold,lifts his gaze to the ceiling.,tries to climb out.,points it at the man.,has to paddle his way to the machine.,1\n18770,lsmdc3030_GROWN_UPS-13942,11419,\"At another house a photo shows the five boys with their coach. Outside, a husky guy\",At another house a photo shows the five boys with their coach.,\"Outside, a husky guy\",gold,opens the front door with a pen.,plays with two kids in an above ground pool.,carries a shoebox past an upcoming sweeping player.,rises on a stand sized dog.,1\n18771,anetv_g0vAi9iuVPA,1463,A gymnast prepares to run at the end of a mat. He then,A gymnast prepares to run at the end of a mat.,He then,gold,dismounts and turns the beam several times before dismounting.,dives in on the track and does several flips and moves.,\"runs at top speed, spinning and flipping foward down the mat.\",performs several tricks on the parallel bars while hundreds of judges hold each other.,2\n18772,anetv_g0vAi9iuVPA,1464,\"He then runs at top speed, spinning and flipping foward down the mat. He\",\"He then runs at top speed, spinning and flipping foward down the mat.\",He,gold,mounts a silver beam in an incantus setting.,dismounts to his feet.,lands with his arms out at the end.,beings to finish the salad.,2\n18773,anetv_g0vAi9iuVPA,5325,The man then begins flipping down the track while others watch on the side. He,The man then begins flipping down the track while others watch on the side.,He,gold,continues flipping and ends with his arms out.,stops playing the routine and ends by jumping off of an equipment bench.,jumps over ending bikes and looking up at the camera.,continues hitting all around the track as the match continues to slow as up and replay come to end.,0\n18774,lsmdc3039_JACK_AND_JILL-2500,14699,\"As everyone around her jumps up and cheers, someone gives an unimpressed look. She\",\"As everyone around her jumps up and cheers, someone gives an unimpressed look.\",She,gold,\"walks away, revealing a penguin hanging on his arm.\",runs her fingers around the obviously colored owl which flies off someone's single finger.,notices someone watching her from across the court and furrows her brow in a quizzical expression.,\"reaches up, sniffs the family hysterically.\",2\n18775,lsmdc3039_JACK_AND_JILL-2500,14700,She notices someone watching her from across the court and furrows her brow in a quizzical expression. The older man,She notices someone watching her from across the court and furrows her brow in a quizzical expression.,The older man,gold,gives her comment to someone.,notes his opponent's lip rate.,backs into a street area and shuts board while her surfs sobs while passengers jump off in a wave.,lowers his fake beard and gives her a smile.,3\n18776,anetv_CBckvP5FR4A,14717,\"First a screen is shown, showing what song the man will be playing using the guitar. Then the man is shown sitting down playing the guitar and he never\",\"First a screen is shown, showing what song the man will be playing using the guitar.\",Then the man is shown sitting down playing the guitar and he never,gold,looks up at the camera.,turns and gives a thumbs up.,acknowledges the use of his hands.,plays the harmonica while he's wearing a black hoodie.,0\n18777,anetv_YmhbwAv0Xbc,755,\"More people begin sliding but this time it is with a small sled, not a tube. A man\",\"More people begin sliding but this time it is with a small sled, not a tube.\",A man,gold,is standing in the corner holding a surfboard attached to it and throws it in the water.,pushes his teeth on the back of the truck as he drives the motorcycle and skis up the slope.,lets go of the rope and hits an embankment of snow.,walks up a hill while holding onto the rope that continues then appears.,2\n18778,anetv_YmhbwAv0Xbc,754,A man goes up a snow hill in the tube. More people begin sliding but this time it,A man goes up a snow hill in the tube.,More people begin sliding but this time it,gold,comes back again want focus for hairdo.,'s hard to be a foot away from the snow.,\"is with a small sled, not a tube.\",falls on the ground.,2\n18779,anetv_YmhbwAv0Xbc,753,A man in a grey hat hits a snow embankment with the tube. A man,A man in a grey hat hits a snow embankment with the tube.,A man,gold,jumps down a metal tube using his skateboard.,kneels in the pool.,goes up a snow hill in the tube.,walks up to the top of a building.,2\n18780,anetv_L4ZhAK04yjg,4965,The screen turns a blue shade. A person,The screen turns a blue shade.,A person,gold,enter the room then leaves.,interlaces hands with the left.,stand on front of a pile of balls and feed it to someone.,begins trimming a small ladder.,0\n18781,anetv_L4ZhAK04yjg,4962,The man spins the woman back and forth. The screen,The man spins the woman back and forth.,The screen,gold,shows a 360 in the air.,displays a different fashion website.,turns a green shade.,displays the spinning completely revolves to it.,2\n18782,anetv_L4ZhAK04yjg,4964,The lady takes her hair out of a pony tail. The screen,The lady takes her hair out of a pony tail.,The screen,gold,cuts to black and quickly kids.,pans to several other pebble on the shore.,turns a blue shade.,try to brush its black hair.,2\n18783,anetv_L4ZhAK04yjg,4961,We see a man and a a woman dancing together. The man,We see a man and a a woman dancing together.,The man,gold,gets the hair back on the bench and embrace.,spins the woman back and forth.,falls on the street.,holds a large stick pierced.,1\n18784,anetv_L4ZhAK04yjg,4963,The screen turns a green shade. The lady,The screen turns a green shade.,The lady,gold,takes her hair out of a pony tail.,finishes painting the easel and stands in the top.,\"appears briefly, as the machine moves on.\",changes the title paper.,0\n18785,anetv_L4ZhAK04yjg,4966,The people start spining again. The person,The people start spining again.,The person,gold,drops their legs on the ground.,goes in the pumpkin to cut them.,returns and moves to the left.,changes to someone again with more resolute demeanor.,2\n18786,anetv_v_UmAH95xls,18102,Two girls are sitting on the porch of a house while shaving their legs. A boy,Two girls are sitting on the porch of a house while shaving their legs.,A boy,gold,walks to another man and begins caressing his beard.,walks over and hugs the boy.,is in the barber shop while two girls hold on and point sleds.,walks out and looks before walking away.,3\n18787,anetv_baSx0q9LKg0,5108,Then the mix is pour in cupcake liners. when ready the cake is in a tray and the woma,Then the mix is pour in cupcake liners.,when ready the cake is in a tray and the woma,gold,is up on the top of the oven.,comes to measure to make the mixture with fashion behind it.,continues start to cook green salad.,put chocolate syrup on the cake and freeze.,3\n18788,anetv_baSx0q9LKg0,16649,\"A person puts three eggs and sugar in bowl an mix. Then, the person\",A person puts three eggs and sugar in bowl an mix.,\"Then, the person\",gold,adds eggs and purple eggs and soda and then mix the spatula for another spatula.,grabs the pasta and begins cutting peanut butter from the cup.,stirs the eggs and put the sugar and a cup.,measures flower and add to the dough.,3\n18789,anetv_baSx0q9LKg0,5107,When ready the mix is put in a recipient in chocolate shape. then the mix,When ready the mix is put in a recipient in chocolate shape.,then the mix,gold,begins with a cloud of white cotton.,is pour in cupcake liners.,is a gift demonstrated by mix.,is dried and overlaid the stick.,1\n18790,anetv_baSx0q9LKg0,5109,When ready the cake is in a tray and the woma put chocolate syrup on the cake and freeze. when ready the cake,When ready the cake is in a tray and the woma put chocolate syrup on the cake and freeze.,when ready the cake,gold,is added on a mini cup and hot layers that put the floor is placed on top.,\"is added, the cheese is placed full of butter on the oven.\",its put in white plate and cut in a piece.,has rolled into the oven and turned around and cake is removed.,2\n18791,anetv_baSx0q9LKg0,16650,\"Then, the person measures flower and add to the dough. After, the person\",\"Then, the person measures flower and add to the dough.\",\"After, the person\",gold,gets a fry in a large bowl and mix them up.,shows the empty squares.,add ice to the glass and share a douse.,puts the dough in a baking pan and in a muffin pan and bake.,3\n18792,anetv_baSx0q9LKg0,5106,A cake with a hershey shape is in a white plate. someone,A cake with a hershey shape is in a white plate.,someone,gold,puts strawberries into a blender.,is peeling a green potato.,enters the market and looks at the wedding footage underneath him.,is mixing eggs and flour and other ingredients in a bowl.,3\n18793,anetv_baSx0q9LKg0,16648,A cake chocolate is served on a dish. A person,A cake chocolate is served on a dish.,A person,gold,shakes hands with food.,\"speaks to the camera, showing how to make cooks sandwiches.\",puts three eggs and sugar in bowl an mix.,is making some lemonade on cake.,2\n18794,anetv_baSx0q9LKg0,16651,\"After, the person puts the dough in a baking pan and in a muffin pan and bake. Next, the woman\",\"After, the person puts the dough in a baking pan and in a muffin pan and bake.\",\"Next, the woman\",gold,puts lipstick on her lips then finish credits and bake.,\"add melted chocolate to the baking pan and puts on the cake, after cover the cake with melted chocolate.\",\"uses materials to bake the cookies, remove chocolate cookies from the oven.\",labeled cheese salad and adds several ingredients on the pan.,1\n18795,anetv_YU0DjX7wvRA,8615,The owner picks him up and sits down with him and begins to clip his nails. The cat,The owner picks him up and sits down with him and begins to clip his nails.,The cat,gold,suddenly stops the child and holds the amount of strength on his desk.,peels the woman's leg out from under him and covers him with it.,falls back with a button and the two continue to talk.,is moving his head around wagging its tail around but not giving a hard time.,3\n18796,anetv_YU0DjX7wvRA,8616,The cat is moving his head around wagging its tail around but not giving a hard time. The owner then,The cat is moving his head around wagging its tail around but not giving a hard time.,The owner then,gold,\"begins to rub its belly and play with it's feet, before putting the cat back on the ground.\",finish out of the mower and pulls the person off the side of the road then approaches the camera.,makes his way to the press and opens the binoculars to a person coming out behind the mower.,comes back to speak to the owner then stands in do the same and looks up at it.,0\n18797,anetv_YU0DjX7wvRA,8614,A cat is sitting on the floor looking up as his owner tried to grab him. The owner,A cat is sitting on the floor looking up as his owner tried to grab him.,The owner,gold,puts down his pipe and begins blowing smoke.,takes the key out of his hand and wraps it around his neck.,throws a small piece of paper in a trash bin then tosses it aside.,picks him up and sits down with him and begins to clip his nails.,3\n18798,anetv_VWpRBfhoFVg,14316,Everyone cheers and there is some clapping. The little girl,Everyone cheers and there is some clapping.,The little girl,gold,turns around and returns her stick to the woman.,is swinging her legs and stockings tries flipped behind.,is surrounded calmly.,operator began to play.,0\n18799,anetv_VWpRBfhoFVg,17711,A little girl is holding a stick. She,A little girl is holding a stick.,She,gold,puts the dough cupcake in a bowl and puts it in a bowl.,\"jumps into the air to make the big jump, but jumps another.\",is trying to hit a pinata in front of her.,puts a fishing drill into a sack in front of a bunch of stone boxes before running away.,2\n18800,anetv_VWpRBfhoFVg,17712,She is trying to hit a pinata in front of her. She,She is trying to hit a pinata in front of her.,She,gold,does several flips and releases.,walks back and gives the stick to a woman.,\"does a little claus, trying to turn her head out of the wire.\",is going on front.,1\n18801,lsmdc0017_Pianist-56192,17973,\"Enraged, someone grabs him by the hair and presses his head hard between his thighs and then beats him mercilessly. After a dozen or so strokes, someone\",\"Enraged, someone grabs him by the hair and presses his head hard between his thighs and then beats him mercilessly.\",\"After a dozen or so strokes, someone\",gold,drills the boy inside the stiff bucket onto the floor.,\"falls into the ballroom, bouncing up and down in a heap.\",falls forward and lies in the dirt.,grabs his jacket viciously and drops the zipper on the swings.,2\n18802,anetv_NOXPH0_y4Ww,7536,\"The girl starts walking an sit in fronts of a counter with a bowl of fruits and talk to the camera, walks again in the kitchen and keep aqueezing lemons in the water bowl, woman starts helping her. woman clean her hands in the sink and the girl\",\"The girl starts walking an sit in fronts of a counter with a bowl of fruits and talk to the camera, walks again in the kitchen and keep aqueezing lemons in the water bowl, woman starts helping her.\",woman clean her hands in the sink and the girl,gold,unclasps her hands and puts them in her mouth.,is scrubbing her side with a towel.,shakes and cleans up the green and pours water.,walks in the kitchen and keep squeezing the lemons.,3\n18803,anetv_NOXPH0_y4Ww,7535,Lttle girl suck her finger and smile while a woman walks throug kitchen and puts something in the counter. little girl,Lttle girl suck her finger and smile while a woman walks throug kitchen and puts something in the counter.,little girl,gold,is walking in a little cooler talking to the camera in a kitchen where she dishes.,looks into the pockets and wipes her face and scrubs it off with a towel.,is sitting in a booth in a sink.,is standing in the kitchen with her mouth open and play with her hair.,3\n18804,lsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3138,11732,Someone plucks a piece of glass from the wound in his knee. Someone,Someone plucks a piece of glass from the wound in his knee.,Someone,gold,dives under the hoop and lands neatly in a reverentially halloween mask.,leaps his hand.,'s head flies back over someone's head and someone signals to him with a gun.,\"stares thoughtfully ahead, his young face caked with blood.\",3\n18805,anetv_Y1f_NXMfD98,3497,\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog begins to walk away. The women then\",\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog begins to walk away.\",The women then,gold,move at the bar over and over again with the trainer going on to show more of the exercise.,has to grab the dog and hold him to finish her task.,relax and flip in the air.,kicks him back and help well as a person dressed in an orange shirt is standing behind him.,1\n18806,anetv_Y1f_NXMfD98,3498,\"The women then has to grab the dog and hold him to finish her task. Once complete, she\",The women then has to grab the dog and hold him to finish her task.,\"Once complete, she\",gold,shakes her hand to the camera and brushes the woman's hair.,\"lays down on the ground and bends back casually with the dolls, but she grabs the bush and begins braiding the hair.\",\"makes two swift brushes and slides down the container of the woman, rubs into the ground and clips her hair.\",takes the hair out of the vacuum and dumps it into a big black trash bag.,3\n18807,anetv_Y1f_NXMfD98,3496,\"A black and brown down is standing up against the wall as a person moves a vacuum like machine back and forth over his fur. After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog\",A black and brown down is standing up against the wall as a person moves a vacuum like machine back and forth over his fur.,\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog\",gold,jumps in the first position while very nervous and fly around.,reaches on top of the man as the person's hand walks on.,begins to walk away.,keeps all the more and hits the part of the board with the paint.,2\n18808,anetv_U8m-9nmAfGU,16074,The guy moves closer to the edge. Two men,The guy moves closer to the edge.,Two men,gold,stand in a circle together in microphones.,\"push with their backs up, now at sister who struggles in between the two rocks and slow to a halt, looking straight up\",places hooks on the guy.,are wearing boxing gloves and performing sharpened gestures within a machine into the middle.,2\n18809,anetv_U8m-9nmAfGU,16073,A person fixes a strap on a guy. The guy,A person fixes a strap on a guy.,The guy,gold,picks up a straw and lifts it up.,moves closer to the edge.,removes two cats bolt from the floor.,points to the camera.,1\n18810,anetv_U8m-9nmAfGU,16075,A man release a rope. The guy,A man release a rope.,The guy,gold,is wearing red foil and long blue wrapping paper.,runs her hand on the front backs to turn a cup at him.,jumps of the edge or bungee jumps.,balances on a needle in a drill drill.,2\n18811,lsmdc1035_The_Adjustment_Bureau-85702,12317,\"He follows a covered walkway alongside a commercially refurbished warehouse. Finding a studio door chain - locked, he\",He follows a covered walkway alongside a commercially refurbished warehouse.,\"Finding a studio door chain - locked, he\",gold,makes a call on his cell.,turns and starts to stride out of the front bedroom.,climbs the way to the stairs.,makes his way around the wide road.,0\n18812,lsmdc1035_The_Adjustment_Bureau-85702,12344,They enter a wood paneled room through a door framed in green marble. The wall,They enter a wood paneled room through a door framed in green marble.,The wall,gold,\"clears from the main pedestal, which reaches out from the ceiling.\",slides out of the room.,suggests an octagonal perimeter.,shows a young neon in the background's light red glow.,2\n18813,lsmdc1035_The_Adjustment_Bureau-85702,12326,\"As the cabbie waves and slows, a sedan crashes into his passenger side. Someone\",\"As the cabbie waves and slows, a sedan crashes into his passenger side.\",Someone,gold,waves back to someone.,notices a bulky ring of cheese on a seafront junk.,transfers it the boat to his seat where the wheel reads but so that one of the brakes already fallen open.,runs over to the damaged cars.,3\n18814,lsmdc1035_The_Adjustment_Bureau-85702,12339,She partners with a man who holds her waist in one hand. Someone,She partners with a man who holds her waist in one hand.,Someone,gold,\"balances on one foot, bends over, and briefly flutters her other foot high behind her.\",smiles for fun while she stands at the audience letters.,lets him take a high bar.,messes with the carnival's hair.,0\n18815,lsmdc1035_The_Adjustment_Bureau-85702,12343,\"Later, he stands before double doors marked someone. They\",\"Later, he stands before double doors marked someone.\",They,gold,stand on the roof.,respond from the kind of lie.,enter a wood paneled room through a door framed in green marble.,are full of mice in china.,2\n18816,lsmdc1035_The_Adjustment_Bureau-85702,12348,\"As they stroll through a park in the early evening, someone throws her head back and laughs. Now, in the Adjustment Bureau reading room, someone\",\"As they stroll through a park in the early evening, someone throws her head back and laughs.\",\"Now, in the Adjustment Bureau reading room, someone\",gold,finds someone studying at one of the large tables.,\"sits on a sitting and stands chatting, smiling as she works on the model.\",prepares a flight of stairs.,sits on a pool chair watching her smitten date.,0\n18817,lsmdc1035_The_Adjustment_Bureau-85702,12327,Someone runs over to the damaged cars. Someone,Someone runs over to the damaged cars.,Someone,gold,peers through his scope.,checks on the other driver.,gets out from his bike.,turns to someone's mom.,1\n18818,lsmdc1035_The_Adjustment_Bureau-85702,12316,Someone rides aboard it as the skipper pilots it to the pier. Someone,Someone rides aboard it as the skipper pilots it to the pier.,Someone,gold,steps aboard the missile and arriving at the factory.,hurries onto the platform and up some stairs.,\"see upright, jolting the ship, for the long row.\",\"jumps, narrowly missing the stage.\",1\n18819,lsmdc1035_The_Adjustment_Bureau-85702,12335,\"They race up the steps of a townhouse. As someone's cab cruises through another intersection, the Bureau officers\",They race up the steps of a townhouse.,\"As someone's cab cruises through another intersection, the Bureau officers\",gold,run through an art gallery bumping a bystander.,grab someone and grab him.,find it empty on the road and retrieve their guns.,throws a third ball out the window window catching it.,0\n18820,lsmdc1035_The_Adjustment_Bureau-85702,12308,Someone takes the podium before a crowd of hundreds. The gathering,Someone takes the podium before a crowd of hundreds.,The gathering,gold,overlooks the east river.,is among waving instruments and crew.,mill in the intricate positions of work.,applauds the real audience.,0\n18821,lsmdc1035_The_Adjustment_Bureau-85702,12347,\"Meanwhile, people walk together. As they stroll through a park in the early evening, someone\",\"Meanwhile, people walk together.\",\"As they stroll through a park in the early evening, someone\",gold,rises from a chair and watches her performance.,puts on a piece of luggage.,comes with someone outside the house.,throws her head back and laughs.,3\n18822,lsmdc1035_The_Adjustment_Bureau-85702,12338,He makes eye contact with someone. The boyish aide,He makes eye contact with someone.,The boyish aide,gold,comes up outside into the tunnel.,steps up and ushers her down the hall.,hands him a cellphone.,enters holding another piece of clothing.,2\n18823,lsmdc1035_The_Adjustment_Bureau-85702,12321,The boyish aide checks his book. The Adjustment officers,The boyish aide checks his book.,The Adjustment officers,gold,shifts his contemplative gaze.,watch someone stride briskly outside.,takes someone into his office.,hands him a key.,1\n18824,lsmdc1035_The_Adjustment_Bureau-85702,12324,\"Someone and his aide swap a thoughtful look. In his dress shoes, someone\",Someone and his aide swap a thoughtful look.,\"In his dress shoes, someone\",gold,takes a calming puff and exhales.,sprints after a cab.,tend to her apartment.,slips out of the ring.,1\n18825,lsmdc1035_The_Adjustment_Bureau-85702,12311,\"Someone peers across the river to Pier 17. In a quaint eclectic apartment, someone\",Someone peers across the river to Pier 17.,\"In a quaint eclectic apartment, someone\",gold,leans on someone's side.,puts on a hoodie and picks up her cell.,totes out the painting.,shows a telegram titled a label.,1\n18826,lsmdc1035_The_Adjustment_Bureau-85702,12310,We just moved the rehearsal back to Cedar Lake. Someone,We just moved the rehearsal back to Cedar Lake.,Someone,gold,peers across the river to pier 17.,sits in a chair.,\"huddle up, continue up suggestively, and talk to one another or do.\",looks up from her shot table.,0\n18827,lsmdc1035_The_Adjustment_Bureau-85702,12307,Someone exits a Town Car and shakes many hands. Someone,Someone exits a Town Car and shakes many hands.,Someone,gold,\"races into a street, lined with photographers.\",sits with him.,swings the kid on his guard's pole.,takes the podium before a crowd of hundreds.,3\n18828,lsmdc1035_The_Adjustment_Bureau-85702,12346,They enter a records archive. They,They enter a records archive.,They,gold,face off in the water.,pass a lake's palace outside.,stop by a reference desk.,swim around and find the shaving cream.,2\n18829,lsmdc1035_The_Adjustment_Bureau-85702,12328,Someone goes to another cop. The rebuffed cop,Someone goes to another cop.,The rebuffed cop,gold,\"goes off, stumbling towards the others.\",\"opens the front door, someone gets in the car.\",hops across someone's leg.,\"looks to someone, then walks away.\",3\n18830,lsmdc1035_The_Adjustment_Bureau-85702,12331,\"Someone strides off, leaving an ambulance and a squad car behind. He\",\"Someone strides off, leaving an ambulance and a squad car behind.\",He,gold,leans back into an ice car as he arrives beside someone.,\"checks his watch, takes a few more brisk steps, then breaks into a run.\",sees a man walking alongside of the vehicle house.,\"peer through a dark house, as the grief - stricken thug runs.\",1\n18831,lsmdc1035_The_Adjustment_Bureau-85702,12345,The wall suggests an octagonal perimeter. They,The wall suggests an octagonal perimeter.,They,gold,enter a records archive.,rams into the wall.,stand arming the tree.,run in dainty - roller and bounce together.,0\n18832,lsmdc1035_The_Adjustment_Bureau-85702,12332,\"He checks his watch, takes a few more brisk steps, then breaks into a run. As they near a traffic light, it\",\"He checks his watch, takes a few more brisk steps, then breaks into a run.\",\"As they near a traffic light, it\",gold,soars through the air for someone.,lands on a camper's skylight which falls off below the waters below.,changes from green to red.,falls into a grimy carousel beneath it.,2\n18833,lsmdc1035_The_Adjustment_Bureau-85702,12320,\"The officers follow someone in the map book. Now, someone\",The officers follow someone in the map book.,\"Now, someone\",gold,clutches a slip of paper.,\"rounds a corner, coming face to face with the two officers.\",\"leads someone to the hallway of a dark, collared chamber.\",marches outside the underground hall where the red iraqi family stories covering the floor from deserted baseboards.,1\n18834,lsmdc1035_The_Adjustment_Bureau-85702,12325,\"In his dress shoes, someone sprints after a cab. As the cabbie waves and slows, a sedan\",\"In his dress shoes, someone sprints after a cab.\",\"As the cabbie waves and slows, a sedan\",gold,pulls up to a set of curb.,passes in the right driver's window.,crosses the other end of a sidewalk.,crashes into his passenger side.,3\n18835,lsmdc1035_The_Adjustment_Bureau-85702,12322,\"The Adjustment officers watch someone stride briskly outside. Now, someone\",The Adjustment officers watch someone stride briskly outside.,\"Now, someone\",gold,sidles across the veranda lit observatory.,stands by the curb and hails an approaching cab.,sits alone at a square lincoln highway above an orange booth.,rolls a bandage out from the man's mouth.,1\n18836,lsmdc1035_The_Adjustment_Bureau-85702,12340,\"Someone balances on one foot, bends over, and briefly flutters her other foot high behind her. As the male dancer dips in a far stepping lunge, someone\",\"Someone balances on one foot, bends over, and briefly flutters her other foot high behind her.\",\"As the male dancer dips in a far stepping lunge, someone\",gold,\"grabs it from someone's parachute, leading him on the way to more ground.\",turns off the camera's edge and bows.,flips her leg back on the uneven beam.,rolls fluidly over his back.,3\n18837,lsmdc1035_The_Adjustment_Bureau-85702,12315,\"Now, a large water taxi crosses the river. Someone\",\"Now, a large water taxi crosses the river.\",Someone,gold,rides aboard it as the skipper pilots it to the pier.,rubs someone's shoulder against a bus by the rear of the plane.,\"follows the kitchen, shaken to her own, sits down.\",rises and stairs on a thick six feet.,0\n18838,lsmdc1035_The_Adjustment_Bureau-85702,12323,A mini - van taxi ignores him. Someone,A mini - van taxi ignores him.,Someone,gold,hands her the book card.,\"jogs out into the opposite lane, waving high for another cab that passes him up.\",turns into an suv.,notices vehicles carrying dollar markers.,1\n18839,lsmdc1035_The_Adjustment_Bureau-85702,12330,\"They both look aside, but find no one. Someone\",\"They both look aside, but find no one.\",Someone,gold,\"gets in the car, holding the tv behind him.\",nods to someone as they walk down the street.,stands by the key with the weapons ready.,\"strides off, leaving an ambulance and a squad car behind.\",3\n18840,lsmdc1035_The_Adjustment_Bureau-85702,12313,Someone spies someone in a window. Both Adjustment officers,Someone spies someone in a window.,Both Adjustment officers,gold,dangle over the hotel.,follow someone down the hallway.,duck out of sight.,stand with their hands round their partners.,2\n18841,lsmdc1035_The_Adjustment_Bureau-85702,12336,\"As someone's cab cruises through another intersection, the Bureau officers run through an art gallery bumping a bystander. Heading outside, they\",\"As someone's cab cruises through another intersection, the Bureau officers run through an art gallery bumping a bystander.\",\"Heading outside, they\",gold,run down to remove a route highway.,see someone exit the cab and enter a building.,jump and rotate among the trees.,eye a brick of paint the doors of the house through the glass.,1\n18842,lsmdc1035_The_Adjustment_Bureau-85702,12341,\"He pulls open a brass lobby door, and disappears into a midcentury high - rise, its window's number in the hundreds ascending into the sky, story after story after story. Inside, he\",\"He pulls open a brass lobby door, and disappears into a midcentury high - rise, its window's number in the hundreds ascending into the sky, story after story after story.\",\"Inside, he\",gold,\"strolls the street outside the shop, which returns open and offers the tray of bottles.\",transfers his ankles to the device as the train doors open.,\"crosses a huge marble lobby striped with shadows, then plods up a dark staircase.\",\"lies motionless on the floor and stares down at the dark from below, stifling tears from his horror.\",2\n18843,lsmdc1035_The_Adjustment_Bureau-85702,12342,\"Inside, he crosses a huge marble lobby striped with shadows, then plods up a dark staircase. Later, he\",\"Inside, he crosses a huge marble lobby striped with shadows, then plods up a dark staircase.\",\"Later, he\",gold,presents his colorful computerized partner settings while he stares into a half title suit.,stands before double doors marked someone.,steps to an elevator and glares at a vengeful woman on a bookshelf.,opens his plan office.,1\n18844,lsmdc1035_The_Adjustment_Bureau-85702,12333,Someone sees someone and his aide emerge from a door. The taxi,Someone sees someone and his aide emerge from a door.,The taxi,gold,\"moves up a hospital hall, so the blowtorch has fallen.\",goes through the town stone as the magical cloud's flames rise higher.,leaves the adjustment bureau servants behind.,pulls up and a pistol - waits chief still slams.,2\n18845,lsmdc1035_The_Adjustment_Bureau-85702,12306,His interjection prevents the kiss. Someone,His interjection prevents the kiss.,Someone,gold,kicked the limo over.,to the back exchange.,\"nods amiably, then gives someone a long kiss on the cheek.\",continues to the shower curtain.,2\n18846,lsmdc1035_The_Adjustment_Bureau-85702,12312,Someone's senate race gathering wraps up. Someone,Someone's senate race gathering wraps up.,Someone,gold,wiggles the boys as night runs.,spies someone in a window.,puts a jacket onto another's thick backpack.,speeds over on the bridge.,1\n18847,lsmdc1035_The_Adjustment_Bureau-85702,12329,\"The rebuffed cop looks to someone, then walks away. They both\",\"The rebuffed cop looks to someone, then walks away.\",They both,gold,walk into the kitchen and slap someone's arm together.,go to and rain for a beat.,\"look aside, but find no one.\",stare up at a metal computer.,2\n18848,lsmdc1035_The_Adjustment_Bureau-85702,12309,Someone's aide gets a text. We just,Someone's aide gets a text.,We just,gold,moved the rehearsal back to cedar lake.,wait to find an opening up.,see the girl someone.,make the scuff mark on the car.,0\n18849,anetv_jDeBuorU4hY,3027,\"Lights are on on a hockey court, disks are on the floor and players are watching them. men\",\"Lights are on on a hockey court, disks are on the floor and players are watching them.\",men,gold,kneel on the floor of a room.,are standing on the court holding a ball.,starts playing on the court trying to score.,are twirling a ball in a studio.,2\n18850,anetv_jDeBuorU4hY,4439,The interior of an ice rink is shown. It,The interior of an ice rink is shown.,It,gold,ends with the goalie hitting the ball over water at the goalie.,is shown from several angles with silhouettes.,lies on the ground.,licks the ice cream cone as he pushes his teeth.,1\n18851,anetv_jDeBuorU4hY,4440,It is shown from several angles with silhouettes. People,It is shown from several angles with silhouettes.,People,gold,\"walk in slow motion, then in motion the people getting ready for truck.\",are shown gathered to play a game of curling.,\"appear, in between shots of the shark.\",measure the distance of a person doing an arm throw.,1\n18852,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17187,He pushes himself back and forth along a porch in his wheelchair. An elderly resident,He pushes himself back and forth along a porch in his wheelchair.,An elderly resident,gold,\"wedges his walking stick between someone's wooden spokes, stopping him.\",pulls himself up from a balcony and climbs over the door.,remains awkwardly across from the picnic table to reveal the appearance of his father.,\"walks into someone's building, sits down with a mustachioed man.\",0\n18853,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17186,\"He wears round glasses and has wispy, white hair around the sides of his shiny, bald head. He\",\"He wears round glasses and has wispy, white hair around the sides of his shiny, bald head.\",He,gold,\"passes by the counter, leaning against the rocking railing with its legs spinning between his arms and chest.\",\"passes over a passing bench beyond, passing a few paces under the trees.\",pushes himself back and forth along a porch in his wheelchair.,\"picks it up on top of a tree, and catches it.\",2\n18854,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17184,\"As a child, someone resembles a bald, old man. At a dining table, someone\",\"As a child, someone resembles a bald, old man.\",\"At a dining table, someone\",gold,sits at the stereo orchid and pushes her phone strings.,uses an ear trumpet.,scans the clerks at the stylists.,arrives at the kitchen table.,1\n18855,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17188,\"An elderly resident wedges his walking stick between someone's wooden spokes, stopping him. The old man retracts the stick, and someone\",\"An elderly resident wedges his walking stick between someone's wooden spokes, stopping him.\",\"The old man retracts the stick, and someone\",gold,crawls into the seventh floor.,falls to the floor.,\"wheels himself to the top of the front steps, where he watches children playing in the street.\",\"sinks to the ground, wearing a pair of black leather gloves.\",2\n18856,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17189,\"The old man retracts the stick, and someone wheels himself to the top of the front steps, where he watches children playing in the street. His wheels\",\"The old man retracts the stick, and someone wheels himself to the top of the front steps, where he watches children playing in the street.\",His wheels,gold,move on someone who climbs in a trash bin.,draw closer to the top step.,turn violently at a speed down a narrow river.,pulls up as the apartment commences.,1\n18857,lsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17185,\"At a dining table, someone uses an ear trumpet. He\",\"At a dining table, someone uses an ear trumpet.\",He,gold,adds a soda to a star then sets down a box.,furiously at his faces.,\"wears round glasses and has wispy, white hair around the sides of his shiny, bald head.\",sleeps wrapped in a blanket.,2\n18858,anetv_zmaDLAZu4kA,5406,A cowboy rides his horse out of a gate. He,A cowboy rides his horse out of a gate.,He,gold,ropes a calf with a lasso.,stands in front of the horse bar and turns to another cow.,swings onto the back where a guy is riding the pommel horse.,lassos a calf at the pole and rolls it away.,0\n18859,anetv_zmaDLAZu4kA,11979,\"There's a man in a white shirt and hat riding a horse in a large stable, chasing a calf to catch it by a rope. The man\",\"There's a man in a white shirt and hat riding a horse in a large stable, chasing a calf to catch it by a rope.\",The man,gold,begins chasing the calf on horseback as the calf runs fast.,\"is then seen running into the middle of the field, throwing dirt into the pit repeatedly.\",\"runs for the handle, continues to teach a horse to catch jumps on the horse.\",help the horse and knocks him over with the horse twice as he finishes and ties it to the other side.,0\n18860,anetv_zmaDLAZu4kA,5407,He ropes a calf with a lasso. He,He ropes a calf with a lasso.,He,gold,throw it back to the school band.,moves back and forth as he makes his way along the hedge.,pulls a rope for the calf which he uses.,\"dismounts, tying the calf and getting back on his horse.\",3\n18861,lsmdc1005_Signs-4876,5827,The shadow under the pantry door stops moving. Someone,The shadow under the pantry door stops moving.,Someone,gold,\"eyes the door anxiously, then, swallows.\",walks up to the window and looks up.,watches skeptically as he tries a pound of the soggy bottom.,does n't acknowledge her.,0\n18862,lsmdc1005_Signs-4876,5833,\"Glancing up, he reaches forward and positions the knife at a downward sloping angle at the base of the door. Someone\",\"Glancing up, he reaches forward and positions the knife at a downward sloping angle at the base of the door.\",Someone,gold,wears down and thanks him across the face.,gets up from her purse.,withdraws the knife and puts it down on the floor beside him.,lowers his own hand.,2\n18863,lsmdc1005_Signs-4876,5844,\"He stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats. Without flinching, someone\",\"He stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats.\",\"Without flinching, someone\",gold,draws his wife photo of one of someone.,turns stiffly and goes to sit on the stairs.,walks to the bar and turns to her mother.,dabs someone's penis.,1\n18864,lsmdc1005_Signs-4876,5845,\"Without flinching, someone turns stiffly and goes to sit on the stairs. Someone\",\"Without flinching, someone turns stiffly and goes to sit on the stairs.\",Someone,gold,is striding through.,walks toward the kitchen door.,sits still with his hands on his knees.,stumbles out of the test chair and inspects the rest of the manuscript.,2\n18865,lsmdc1005_Signs-4876,5840,\"Startled, someone bangs his head and drops the knife. Retrieving the knife, someone\",\"Startled, someone bangs his head and drops the knife.\",\"Retrieving the knife, someone\",gold,slashes his knife and brings it back.,slices off the creature's fingers.,steps forward and knocks the observation off out of the window.,yanks himself up from his grasp and smashes its table.,1\n18866,lsmdc1005_Signs-4876,5831,\"Someone contemplates the knife for a moment the reaches out and grabs it. Holding the knife at belly level, he\",Someone contemplates the knife for a moment the reaches out and grabs it.,\"Holding the knife at belly level, he\",gold,hastily removes the workroom.,turns the wheel of a pan and moves to the other side of the structure.,passes in cautious look.,twists the long wide blade until he is looking at his own reflection in the polished steel.,3\n18867,lsmdc1005_Signs-4876,5846,Someone sits still with his hands on his knees. Someone,Someone sits still with his hands on his knees.,Someone,gold,links his hands together.,leans into the bathroom mirror.,kicks out the kitchen door and crosses his arms.,continues playing the song and looking at someone.,0\n18868,lsmdc1005_Signs-4876,5820,\"The camera focuses on tall bench bushes at the back of the yard, then, returns to the interior. It\",\"The camera focuses on tall bench bushes at the back of the yard, then, returns to the interior.\",It,gold,seats next door for someone.,follows the children as they swarm to another window.,lands on the grass.,shows a walked through the burning house.,1\n18869,lsmdc1005_Signs-4876,5821,A boy looks out on a narrow passageway. The camera,A boy looks out on a narrow passageway.,The camera,gold,zooms into a black photo.,focuses on the passage.,\"returns to climb the stairs, not at all.\",moves as a brunette emerges from the hallway over someone.,1\n18870,lsmdc1005_Signs-4876,5835,\"Then frustrating himself on his belly, he makes to look under the door again. Having second thoughts, he\",\"Then frustrating himself on his belly, he makes to look under the door again.\",\"Having second thoughts, he\",gold,grabs the knife and kneels up.,searches into the command station.,opens it and makes his way to the door.,removes his sunglasses and whips them around.,0\n18871,lsmdc1005_Signs-4876,5824,\"He steps timidly into the room, where chairs lie turned on the floor and the tables being wedged against the door leading into the pantry. A shadow\",\"He steps timidly into the room, where chairs lie turned on the floor and the tables being wedged against the door leading into the pantry.\",A shadow,gold,\"falls across a stone floor, held low by someone.\",is repeated at the same of the apartment and the whole area is shadowy.,passes under the door as someone treads hesitantly towards it.,is in this frame as the boy then paints a face of dust and stares whimpering up the wood.,2\n18872,lsmdc1005_Signs-4876,5828,\"Then, with his head turned wearily to one side, and ticked defensively back a little drops delicately to a kneeling position. He\",\"Then, with his head turned wearily to one side, and ticked defensively back a little drops delicately to a kneeling position.\",He,gold,sprays the maize into the clear gloomy sky across the beach and around the town functions.,finds nothing but shards of glass.,continues talking to the mirror and begins braiding the fabric shoes.,looks over a sick magic book.,1\n18873,lsmdc1005_Signs-4876,5837,\"He rises to his feet and head bowed strides determinedly out into the hallway. Stopping in his tracks, someone\",He rises to his feet and head bowed strides determinedly out into the hallway.,\"Stopping in his tracks, someone\",gold,clutches the whistle between his fingers as he takes the long drink of whiskey.,bares his grits teeth and his lips wide wide.,\"turns and marches back in, seizing the knife.\",watches his father on the doorway behind him.,2\n18874,lsmdc1005_Signs-4876,5838,\"Stopping in his tracks, someone turns and marches back in, seizing the knife. He\",\"Stopping in his tracks, someone turns and marches back in, seizing the knife.\",He,gold,descends one corridors then turns and launches himself into a long row.,lies on his stomach by the pantry door.,takes it in the light of his torch and hands it back to normal.,\"arrives at the bar, lifting the legs of people.\",1\n18875,lsmdc1005_Signs-4876,5841,\"Retrieving the knife, someone slices off the creature's fingers. Later, someone\",\"Retrieving the knife, someone slices off the creature's fingers.\",\"Later, someone\",gold,stirs in the egg.,returns to the farm house.,spoons the knife away.,tosses a sneering creature.,1\n18876,lsmdc1005_Signs-4876,5839,\"He lies on his stomach by the pantry door. Startled, someone\",He lies on his stomach by the pantry door.,\"Startled, someone\",gold,forces himself to keep his eyes on the walls.,finds a toy popping from the bottom.,bangs his head and drops the knife.,freezes and eyes his head toward someone.,2\n18877,lsmdc1005_Signs-4876,5825,A shadow passes under the door as someone treads hesitantly towards it. The movement,A shadow passes under the door as someone treads hesitantly towards it.,The movement,gold,shows the other two outside and someone's back on his face.,is then accompanied by a sound.,writhes under the surface.,reflects the three graves.,1\n18878,lsmdc1005_Signs-4876,5818,\"Someone moves his chair right up to the television, and watches the cam coder footage of his hysterical young children inside the house. The kids\",\"Someone moves his chair right up to the television, and watches the cam coder footage of his hysterical young children inside the house.\",The kids,gold,squeeze through the wave of frost and hold each other as a bowl.,\"sit at his cubicle, switching hands.\",try to carry his luggage out.,\"gathered by french windows and point to the backyard, where tables laden with party food lie abandoned.\",3\n18879,lsmdc1005_Signs-4876,5823,\"Someone recoils, cupping a hand to his face in shock as he backs away from the tv. Someone\",\"Someone recoils, cupping a hand to his face in shock as he backs away from the tv.\",Someone,gold,lies across his chest.,sits back down in front of the tv and watches mouth gaping as the picture freezes on the creature.,push in his glasses with the stripes that falls on someone's arm and gently straightens someone's arm and hugs him close.,watches someone disappear into the bathroom.,1\n18880,lsmdc1005_Signs-4876,5842,\"Later, someone returns to the farm house. Locking the door behind him, he hurriedly checks the handle, then,\",\"Later, someone returns to the farm house.\",\"Locking the door behind him, he hurriedly checks the handle, then,\",gold,gets out his car and speeds after it.,walks off past the open living room door.,\"sees a pair of steps, passes through.\",goes to the door and picks up the car.,1\n18881,lsmdc1005_Signs-4876,5829,He finds nothing but shards of glass. He,He finds nothing but shards of glass.,He,gold,\"carries the boat, someone.\",\"spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife.\",returns his muddy eyes to the goateed executive.,pushes someone between two doors and sinks towards the inside.,1\n18882,lsmdc1005_Signs-4876,5832,\"Holding the knife at belly level, he twists the long wide blade until he is looking at his own reflection in the polished steel. Glancing up, he\",\"Holding the knife at belly level, he twists the long wide blade until he is looking at his own reflection in the polished steel.\",\"Glancing up, he\",gold,flexes his knife and loops the cord through the handle.,takes out the grimhold.,\"shows the muzzle of the gun jutting from his wrist, taking it from the hand.\",reaches forward and positions the knife at a downward sloping angle at the base of the door.,3\n18883,lsmdc1005_Signs-4876,5843,\"Locking the door behind him, he hurriedly checks the handle, then, walks off past the open living room door. He\",\"Locking the door behind him, he hurriedly checks the handle, then, walks off past the open living room door.\",He,gold,\"stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats.\",\"limps across the room, picks up the march, and, still precisely, aims his gun at either side of her.\",grabs a piece of ticker from its shelf.,\"runs in, his candle soaking dark.\",0\n18884,lsmdc1005_Signs-4876,5822,The camera focuses on the passage. Someone,The camera focuses on the passage.,Someone,gold,knocks three men out.,\"recoils, cupping a hand to his face in shock as he backs away from the tv.\",closes the door and resumes the ballet.,is tiny halfway down the staircase.,1\n18885,lsmdc1005_Signs-4876,5830,\"He spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife. Someone\",\"He spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife.\",Someone,gold,appears on the screen.,contemplates the knife for a moment the reaches out and grabs it.,is changing out of the car.,orange potatoes have dropped in a large mess.,1\n18886,lsmdc1005_Signs-4876,5836,\"Having second thoughts, he grabs the knife and kneels up. He\",\"Having second thoughts, he grabs the knife and kneels up.\",He,gold,is licking his lips because it is a vast effort for him to come far.,barges into the dark.,stretches his way to his forehead.,rises to his feet and head bowed strides determinedly out into the hallway.,3\n18887,anetv_V2ltLccVh_Q,7056,Several shots are shown of paintball gear as well as a man smoking a cigarette. This,Several shots are shown of paintball gear as well as a man smoking a cigarette.,This,gold,man speaks to play with text with other customers.,people speak to the camera as well as the men playing sunscreen and ends with a cigarette.,leads into people playing paintball with one another and running around.,is shown followed by people sitting on a chair speaking to him.,2\n18888,anetv_V2ltLccVh_Q,7057,This leads into people playing paintball with one another and running around. More shots,This leads into people playing paintball with one another and running around.,More shots,gold,are shown of several people riding along a rope and waving to one another.,are shown of people spinning after catching a ball and jumping after it in slow motion.,are shown of people playing and speaking to one another.,are shown of people riding on the ice close together.,2\n18889,anetv_srXhWAGzd-s,2981,He spray paints parts of the car. He,He spray paints parts of the car.,He,gold,shows a piece of the product.,sprays cleaner on the inside and outside of the car.,swings the gun slowly.,starts to take the front tire.,1\n18890,anetv_srXhWAGzd-s,2982,He sprays cleaner on the inside and outside of the car. He,He sprays cleaner on the inside and outside of the car.,He,gold,continues to take to the floor rug until he stops.,cleans off the sponge and continues wiping it to the side.,wipes down all surfaces from inside and outside the car.,shows us the image and a rock painting.,2\n18891,anetv_srXhWAGzd-s,2978,A person is shown cleaning off the outside of a car. The car,A person is shown cleaning off the outside of a car.,The car,gold,is taking a path away.,has not seen soapy water.,is then driven inside of a shop.,is then shown hanging out against the glass wall.,2\n18892,anetv_srXhWAGzd-s,2979,The car is then driven inside of a shop. Inside a man,The car is then driven inside of a shop.,Inside a man,gold,starts detailing the car once again and cleaning off the outside.,\"is using the sprayer sander, waxing trees.\",is skating in front of a bowling mall.,rises at a square shop going up and down.,0\n18893,anetv_pq2xsK79FcQ,14556,The Florida Gator long jumper jumps and flies through the air and lands in the sand. The camera,The Florida Gator long jumper jumps and flies through the air and lands in the sand.,The camera,gold,focuses on showing small victory and victory.,is darting across the floor and shows a man in black steady on his feet.,changes to four people in the pool trying different stunts that they will win as they go around and run.,pans to the score board showing the long jumpers results.,3\n18894,anetv_pq2xsK79FcQ,14554,\"A track and field long jumper from the Florida Gators dressed in blue and orange prepares to make his run while other participants, coaches and officials congregate around the track and field course. The Florida Gator long jumper\",\"A track and field long jumper from the Florida Gators dressed in blue and orange prepares to make his run while other participants, coaches and officials congregate around the track and field course.\",The Florida Gator long jumper,gold,appears in white benefit with the javelin a flock sculpting pushed through the sand.,appears to show the players armored with other information and a several discus performances in balmoral appear in the end.,\"is in a crowd, looks.\",begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker.,3\n18895,anetv_pq2xsK79FcQ,14555,The Florida Gator long jumper begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker. The Florida Gator long jumper,The Florida Gator long jumper begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker.,The Florida Gator long jumper,gold,\"jumps into the inflatable's triangular circle, then an number of outdoors website appear.\",appears with numbers where it has giant ice yellow sand.,is shown sucked into a large city surrounding a skyscrapers under their sustained climbs and flashing marquee up their cliffs.,jumps and flies through the air and lands in the sand.,3\n18896,lsmdc3016_CHASING_MAVERICKS-6237,7105,\"Someone stares as his wife with a furrowed brow, then concedes a small nod. Later in his shed, he\",\"Someone stares as his wife with a furrowed brow, then concedes a small nod.\",\"Later in his shed, he\",gold,peeks into the store and spots someone.,deposits a letter from the quill.,leads the girls down a crowded set of stairs.,tends to his cherry red surfboard.,3\n18897,lsmdc3016_CHASING_MAVERICKS-6237,7108,\"Taking a break, someone thoughtfully wipes his hands off with a rag. Putting the order in, Blond\",\"Taking a break, someone thoughtfully wipes his hands off with a rag.\",\"Putting the order in, Blond\",gold,retrieves a thermometer and sighs.,returns to the front door.,notices someone's handiwork.,takes a large bite.,2\n18898,lsmdc3016_CHASING_MAVERICKS-6237,7107,\"Other boards rest in a rack at the back of the shed. Taking a break, someone\",Other boards rest in a rack at the back of the shed.,\"Taking a break, someone\",gold,throws her arms around his waist.,grins and gazes morosely at the surf.,holds the open locker to him.,thoughtfully wipes his hands off with a rag.,3\n18899,lsmdc3016_CHASING_MAVERICKS-6237,7106,\"Later in his shed, he tends to his cherry red surfboard. Other boards\",\"Later in his shed, he tends to his cherry red surfboard.\",Other boards,gold,manage to emerge from the boat.,skate past: people narrow seats beside the vast structure.,rest in a rack at the back of the shed.,hang up as someone shows their sun bulbs at an china kiosk.,2\n18900,lsmdc3038_ITS_COMPLICATED-17313,4517,He points his spoon at the dish. She,He points his spoon at the dish.,She,gold,smiles at the show.,fills his drink with water and pours the contents through the glass.,\"grabs it, snags it and starts baking.\",drapes the cloth over her chest.,3\n18901,anetv_z7zj8stU-kw,10755,A boy is brushing his teeth with a pink toothbrush. He,A boy is brushing his teeth with a pink toothbrush.,He,gold,holds up a razor to shave his teeth.,looks at the camera and makes a face.,\"laughs, which gets out of the shot, happy at his flexibility.\",is brushing his teeth with his teeth.,1\n18902,anetv_z7zj8stU-kw,15716,A man is brushing his teeth in front of the camera. He then,A man is brushing his teeth in front of the camera.,He then,gold,rinses the pink toothbrush under sink water.,starts shaving the beard of a man with a heavy razor.,picks it up out of a brown brush and begins brushing something.,pulls an ironing board and talks about how to properly use the brush.,0\n18903,anetv_z7zj8stU-kw,10757,There is a closeup of the brush getting rinsed in the water. Then the camera,There is a closeup of the brush getting rinsed in the water.,Then the camera,gold,\"zooms in on the boy, then the man gets angry and goes to wash the boat.\",shows the floor for a second and cuts off.,is showing the dishes unboxing the surroundings.,pans in on his face and shows the brushing brush with a red towel.,1\n18904,anetv_z7zj8stU-kw,10756,He looks at the camera and makes a face. There,He looks at the camera and makes a face.,There,gold,sits alone.,this is the different player he took from the left of the man while the video was played in several pictures.,are both hard watching.,is a closeup of the brush getting rinsed in the water.,3\n18905,anetv_2rHsoF35eQw,6658,A large raft filled with people appears. The people,A large raft filled with people appears.,The people,gold,\"point to one team, throwing people on the river while the others watch.\",\"suffering are shown canoeing very quickly, with indistinctly of pictures and techniques.\",struggle to stay upright as they go through the rapids and over falls.,look up on and talk to the camera.,2\n18906,anetv_2rHsoF35eQw,2654,People are sitting inside of a raft going over large bumps in the water. The raft tips over and the people,People are sitting inside of a raft going over large bumps in the water.,The raft tips over and the people,gold,begin to raft down the river.,put their feet in coat of water and climb on the raft.,go through the rapids a few times and then onto the sail.,fall out several times.,3\n18907,lsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9992,\"The people are with her. Beaming, she\",The people are with her.,\"Beaming, she\",gold,poses for a group of practice outside the gym.,starts down the bank.,takes someone's hand and heads up the steps.,sashays away and looks down.,2\n18908,lsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9993,\"Beaming, she takes someone's hand and heads up the steps. Inside, someone\",\"Beaming, she takes someone's hand and heads up the steps.\",\"Inside, someone\",gold,\"pays out and throws a glass in the door, then disappears again.\",looks on gravely as people wander through the compound.,\"stands up, ready to receive his bride.\",folds someone's arm and holds it up with his mouth.,2\n18909,lsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9996,\"Someone walks down the aisle, grinning, and takes her place beside someone at the altar. The vicar\",\"Someone walks down the aisle, grinning, and takes her place beside someone at the altar.\",The vicar,gold,sparkles all around someone's face.,comes to stand before them.,tent glows on the tents.,pours two stones into glasses and sets them in a pile.,1\n18910,lsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9994,\"Inside, someone stands up, ready to receive his bride. Someone\",\"Inside, someone stands up, ready to receive his bride.\",Someone,gold,\"goes over to the other trolley, places it in the red chair and starts walking back around.\",\"appears beside him, his face taut with anger.\",steps out of the window and halts slightly mad.,disheveled young male with neatly hair and black hair shows his close.,1\n18911,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4577,\"As someone winds up to punch someone he catches someone in the face on the backswing, then completes the movement and knocks someone down. Before someone can answer, someone\",\"As someone winds up to punch someone he catches someone in the face on the backswing, then completes the movement and knocks someone down.\",\"Before someone can answer, someone\",gold,is up and swinging with the shovel.,shields him from him for an approaching match.,becomes someone with his pounces on him.,nods and looks into the left eye.,0\n18912,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4586,We see his hat blow off and sail over the cliff's edge. The tank,We see his hat blow off and sail over the cliff's edge.,The tank,gold,\"waves his arms overhead, leaving someone flying off.\",trundles over the cliff and plummets to the bottom.,lifts his head again and walks into a parking lot on a runway in a pond and its help.,jolts backwards by knocking people to the ground.,1\n18913,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4576,Someone pulls people from the tank. Someone,Someone pulls people from the tank.,Someone,gold,drops into the elevator and fumbles into his jacket's pockets.,puts his body down and steps towards the door halfway in.,watches as the pilot places someone's helmet on the bifrost control panel.,\"pulls himself back atop the tank armed again with the shovel which he swings at someone, who ducks and grabs someone's arm.\",3\n18914,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4579,\"Someone grabs his whip, knocking someone aside. As someone speeds toward the front of the tank to certain doom, someone, with lightning speed,\",\"Someone grabs his whip, knocking someone aside.\",\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed,\",gold,\"whips out his bullwhip, wrapping the end of the whip around someone's right ankle.\",splashes it into the night sky.,is steering while spinning into the pup.,\"turns his shower head all on and gets out followed by someone, breathing serenely.\",0\n18915,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4584,Someone reaches out to someone. Someone,Someone reaches out to someone.,Someone,gold,supports someone's vodka.,manages to hold onto someone as he brings his horse to a stop just at the cliff's edge.,takes stock and lowers the man into the truck.,\"points off his gun, selects his attention, then answers to someone.\",1\n18916,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4574,\"Blood flows from under the hat as the Tank Driver slumps forward, his body depressing the levers. Someone still\",\"Blood flows from under the hat as the Tank Driver slumps forward, his body depressing the levers.\",Someone still,gold,\"hangs from the strap of his leather pouch as the tank swerves, barely missing the rocks and causing someone to fall.\",tumbles free to the chopper.,speaks to his son.,\"remains motionless, the limousine comes slowly away from the general's neck.\",0\n18917,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4575,\"Someone finally manages to pull himself atop the tank once more where he punches someone over the side, then peers down to someone, still inside the tank. Someone\",\"Someone finally manages to pull himself atop the tank once more where he punches someone over the side, then peers down to someone, still inside the tank.\",Someone,gold,\"wavers on the shoreline, whose eyes are wide with terror in the snow gray venturing through the raging dust.\",pulls people from the tank.,travels across track beneath someone and smiles as they rub inflated pistons.,takes a small pedestrian path and slips inside.,1\n18918,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4585,\"Looks down at the fast - approaching cliff, his face filled with horror. We\",\"Looks down at the fast - approaching cliff, his face filled with horror.\",We,gold,\"in the water, people are suddenly able to see him as if he is wide enough for a moment.\",\"is watching him stand up slightly until he falls back, onto his feet.\",see his hat blow off and sail over the cliff's edge.,\", coming from the cellar, someone looks up at someone, then rolls his head and does it.\",2\n18919,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4583,\"Still, someone refuses to let go of the whip. Someone\",\"Still, someone refuses to let go of the whip.\",Someone,gold,opens the door to someone.,turns and gets out of bed.,reaches out to someone.,is pulled away by someone.,2\n18920,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4581,He tips his fez to someone. Someone now,He tips his fez to someone.,Someone now,gold,stands before the pristine replica of a massive pounds of molten collapsible.,punches someone in the back and grabs him around the neck.,sits in a booth where two partners sit at a table with the wedding planner.,peels up the lower part of the cigarette.,1\n18921,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4580,\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed, whips out his bullwhip, wrapping the end of the whip around someone's right ankle. Someone\",\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed, whips out his bullwhip, wrapping the end of the whip around someone's right ankle.\",Someone,gold,\"plucks it out of his pocket, rolling his eyes.\",\"shoots at someone with a unexpected swing, dropping his hand into the air.\",draws his horse next to the treads.,pulls his hair up to remove the web labeled outward.,2\n18922,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4582,\"Someone now punches someone in the back and grabs him around the neck. Still, someone\",Someone now punches someone in the back and grabs him around the neck.,\"Still, someone\",gold,walks in the diner.,refuses to let go of the whip.,runs up behind someone.,finds his grappling hand atop the wire as he runs.,1\n18923,lsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4578,\"Before someone can answer, someone is up and swinging with the shovel. Someone\",\"Before someone can answer, someone is up and swinging with the shovel.\",Someone,gold,walks his trunk so he can lean on a cane.,\"sighs, sipping from the covers, occasionally an sound.\",\"grabs his whip, knocking someone aside.\",\"is swinging in horror at a fish hole, then falls in.\",2\n18924,anetv_uA3dbKjT9rM,692,A girl sitting int eh driver seat of a car is talking on her phone on speaker. She hangs up and starts talking out loud and then her and her friend,A girl sitting int eh driver seat of a car is talking on her phone on speaker.,She hangs up and starts talking out loud and then her and her friend,gold,gets up and clips her work.,are walking through a parking garage.,begins playing the piano.,she continues talking to the camera.,1\n18925,anetv_uA3dbKjT9rM,693,\"The girls are walking and talking through the mall, then they go to Claires to get ears pierced. They\",\"The girls are walking and talking through the mall, then they go to Claires to get ears pierced.\",They,gold,continue walking around the mall for a while.,sails camels outside the monkey park.,\"get whole slow, after taking a pose, are a really passionate about easter.\",are running in a bulls on the ground and rotating their legs because they are holding the ankles of two shoes.,0\n18926,anetv_Fdjw9ld-hbA,1250,\"The man in the red, picks him up and drops him down on the wrestling match. After, the referee\",\"The man in the red, picks him up and drops him down on the wrestling match.\",\"After, the referee\",gold,waits for a second of talking and speaks to the first girls!,does more scrapes on the ground while spinning over the leather wrestling ring.,takes a kick to where defenders in the next stop area and stand until they finish.,drops down and pounds the mat counting down the end of the match.,3\n18927,anetv_Fdjw9ld-hbA,1249,\"A man dressed in a blue uniform is fighting against a male dressed in an all red uniform. The man in the red,\",A man dressed in a blue uniform is fighting against a male dressed in an all red uniform.,\"The man in the red,\",gold,\"young forces wrestling outfit, throw various tricks on the rink when a person wearing a hat.\",black shirt is showing the fighting.,is dressed for the end.,picks him up and drops him down on the wrestling match.,3\n18928,anetv_U0HiAZCgmd8,17527,A woman is seen speaking to the camera and leads into her pouring ice into a glass followed by various liquids. She,A woman is seen speaking to the camera and leads into her pouring ice into a glass followed by various liquids.,She,gold,continues drinking the drink while poured into the glass.,mixes the liquids back and fourth and ends by presenting the drink and putting in a lemon with straw.,holds up a box of alcohol and puts it into glasses in the end.,tomatoes in a container and ads a sandwich into a container.,1\n18929,anetv_ibjvKk93__g,3040,\"An AFrican American male wearing a blue muscle shirt and Under Armour sweat shorts is standing on an elliptical talking. Although he is the only one in the gym, there\",An AFrican American male wearing a blue muscle shirt and Under Armour sweat shorts is standing on an elliptical talking.,\"Although he is the only one in the gym, there\",gold,are make signs in the body of the pilot by three men standing around the sides as he talks.,is a synchronized charge in between the press.,are several men preparing to exercise.,are two people standing behind him at the reception desk.,3\n18930,anetv_ibjvKk93__g,18000,Man is standing in a elliptical machine showing how to make exercise. people,Man is standing in a elliptical machine showing how to make exercise.,people,gold,are then shown riding bikes in the lake.,\"are in the living room, talking.\",are at a desk after a woman gives the interview.,are standing in the counter.,3\n18931,anetv_656VWQU5dgE,1772,\"Kids jump up and down, and people shake hands. We then\",\"Kids jump up and down, and people shake hands.\",We then,gold,see a couple of men jump rope they encourage hanging over the pole.,see the closing screen.,see several other men in rafts.,see the ending closing screen.,1\n18932,anetv_656VWQU5dgE,1770,A Red light on the left turns on. We,A Red light on the left turns on.,We,gold,shoots into the water.,old pink is seen calls from a child through the camera.,see a person filming the match.,\"a perfect embrace, someone removes a quill pen from a box and begins drawing lines of white letters on the marble.\",2\n18933,anetv_656VWQU5dgE,1769,We see a crowd running and various sports images. We,We see a crowd running and various sports images.,We,gold,see a bunch of young people fencing.,see people in the field tossing an arrow over the net.,see the ending title screen.,\"see several metal wrestlers, walking on the rope.\",0\n18934,anetv_656VWQU5dgE,1771,We see a person filming the match. We,We see a person filming the match.,We,gold,see the man mowing his lawn.,see a chinese male shot in the building.,\"see table tennis, tennis, and archery.\",see the man swim up and off the white board.,2\n18935,lsmdc3058_RUBY_SPARKS-28621,7026,A large audience surrounds a single tree standing in the middle of the store. Someone,A large audience surrounds a single tree standing in the middle of the store.,Someone,gold,shifts his humble gaze.,is standing outside the room talking animatedly.,does a belly routine.,hangs his hat over his head and creeps around.,0\n18936,lsmdc3058_RUBY_SPARKS-28621,7024,Someone's family are among the crowd. Someone,Someone's family are among the crowd.,Someone,gold,looks up from his book.,\"and children stand behind the tree, but he reveals a plow.\",turns to someone who leaves.,remembers taking the glass from the pool from a busy street.,0\n18937,anetv_3osNjmYjTGg,14607,A man pole vaults over a rope on a track of a sporting field. The man just barely,A man pole vaults over a rope on a track of a sporting field.,The man just barely,gold,leaps into the water and jumps and performs several tricks.,makes his body over the rope.,kicks from the platform's position.,perform the hammer throw on the pole.,1\n18938,anetv_gA7GpvB10UY,2320,The woman wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye. then,The woman wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye.,then,gold,put the contact lens on her left eye and put it around.,grab the other contac and do the same with the other eye and show the liquid.,\"she pushes them skyward, raising and gritting her teeth.\",the person removes their separate glasses and show them on the black lipstick.,1\n18939,anetv_gA7GpvB10UY,2319,Man is holding a contact lenses case in front of a mirror and open it. the woman,Man is holding a contact lenses case in front of a mirror and open it.,the woman,gold,is looking out at the camera the woman put the lens of the eye.,places the paper around her eye and holds it to her nose.,\"put his eye in the bun, and put the contact lens in his eye while speaking.\",wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye.,3\n18940,anetv_b5GJUtjiWkQ,12843,Three kids are seen standing out in front of a house when one plays hop scotch to a person coming in frame. The camera,Three kids are seen standing out in front of a house when one plays hop scotch to a person coming in frame.,The camera,gold,follows the same girl hopping down a long path and continuing her way back to where she started.,pans left and the street's cuddle with people in the background.,pans around while the camera captures her movements.,moves back and fourth while the camera pans around their movements.,0\n18941,anetv_fO8b3U8fuGo,18520,A woman is seen riding around on a horse and smiling to the camera. She,A woman is seen riding around on a horse and smiling to the camera.,She,gold,moves forward with the horse.,continues knitting her body and rotating her arms.,continues speaking to the camera while others watch on the sides.,talks to the camera and continues brushing the dog and beginning to look.,0\n18942,anetv_fO8b3U8fuGo,11226,\"The horse begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle. As they return to their original spot, you can see the water washing up against the land and they\",The horse begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle.,\"As they return to their original spot, you can see the water washing up against the land and they\",gold,go into the boat on the ground.,continue back up the hill.,take a fifth glance at the carriage off the end.,struggle to get them in the water.,1\n18943,anetv_fO8b3U8fuGo,11225,A young woman in a black shirt and jean pants is sitting on the back of a grey horse with a long grey mane in the middle of a large grassy field with hills behind them. The horse,A young woman in a black shirt and jean pants is sitting on the back of a grey horse with a long grey mane in the middle of a large grassy field with hills behind them.,The horse,gold,walks up next to a dog and balances on a horse near a blond on the right side of the horse.,begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle.,spins in circles to move the dog.,aggressively rides the horse and lets in a path of water and watches the horse retreating and gets passive.,1\n18944,anetv_fO8b3U8fuGo,18521,She moves forward with the horse. She,She moves forward with the horse.,She,gold,\"chops up more ingredients, then mounts it.\",\"is, brushing her teeth, and saunters away as she bends to shoot.\",turns around and walks back to the camera.,\"chases after the cow, letting her jump in flames.\",2\n18945,anetv_MMB5Cn3JCGI,7991,A woman runs down a field. She,A woman runs down a field.,She,gold,jumps backwards over a bar and lands on a blue mat.,spins around trying to dial and prepare.,runs several times on a pole.,hits a ball with sand.,0\n18946,anetv_MMB5Cn3JCGI,10564,A young girl is standing in an open grassy field. The girl,A young girl is standing in an open grassy field.,The girl,gold,mows the lawn behind her.,is sprinting to the other side of the club.,\"runs towards a low beam and jumps over it, landing on a blue pad.\",is jumping down and trying to hit a ball back and forth underneath a high bar.,2\n18947,anetv_MMB5Cn3JCGI,7992,She jumps backwards over a bar and lands on a blue mat. They,She jumps backwards over a bar and lands on a blue mat.,They,gold,throw the ball back and forth with each other.,sit on top of a blue water pool.,show the jump in slow motion again.,are on the other side getting ready to jump.,2\n18948,anetv_MMB5Cn3JCGI,10565,\"The girl runs towards a low beam and jumps over it, landing on a blue pad. Video of the girl jumping\",\"The girl runs towards a low beam and jumps over it, landing on a blue pad.\",Video of the girl jumping,gold,is shown again when he stands up.,come from the shore doing a lightning skip.,takes off her board.,is replayed in slow motion.,3\n18949,anetv_8J_erRJya-k,6199,The skateboarders ride along a sidewalk going somewhere. The boys,The skateboarders ride along a sidewalk going somewhere.,The boys,gold,play tricks with a drove white cake.,are shown sitting around.,walk around and go into a transportation station.,continue to race and make after up pile of snow.,2\n18950,anetv_8J_erRJya-k,6198,The skateboarder does a wheelie. The skateboarders,The skateboarder does a wheelie.,The skateboarders,gold,ride along a sidewalk going somewhere.,are flipping on treadmill disclaimer.,continues past the foursome.,backs into the parking lot and he goes on.,0\n18951,anetv_YonmpJvwmKM,12754,\"He stands on a platform, continuing the graceful movements. We then\",\"He stands on a platform, continuing the graceful movements.\",We then,gold,see the whole time stepping.,\"see him again in the woods, still performing yoga quietly.\",see the man as best gyrates until the stands.,see two people taking their turn and leap up area in the middle below one stage.,1\n18952,anetv_YonmpJvwmKM,12752,A man is pictured next to an ad for yoga. He,A man is pictured next to an ad for yoga.,He,gold,announce the video quickly to ski.,talks to a woman in front of the tv.,rides in the driver's seat of the bike and continues talking.,\"is standing in a forest, making slow and graceful yoga moves.\",3\n18953,anetv_YonmpJvwmKM,12753,\"He is standing in a forest, making slow and graceful yoga moves. He\",\"He is standing in a forest, making slow and graceful yoga moves.\",He,gold,stops and turns toward the entrance.,completes the long jump before he does it and gets down.,kicks in the air and lands on his feet.,\"stands on a platform, continuing the graceful movements.\",3\n18954,anetv_Lfj9JC7uWmE,12658,Man are playing war of a tug in an open field in font of a lake. men,Man are playing war of a tug in an open field in font of a lake.,men,gold,are standing in front of a river on special horses.,are standing in sidewalk watching the men playing and taking pictures.,are tumbling down on the ground and taking a piece of the rope that plays on the ground in an arena.,are getting ready to hit each other on an ice field and are involved in the rock board.,1\n18955,anetv_o00AfbAIOlA,11187,He is assembling the bike. We,He is assembling the bike.,We,gold,the wheel only a small enough night.,\"on the bike, he slides the key down the front steps of the bike.\",pulls a bike downhill on the other side of the bike.,see images of the bike.,3\n18956,anetv_o00AfbAIOlA,11185,He then removes the bike. He,He then removes the bike.,He,gold,begins to lift a large weight on it.,is removing the packaging.,adjusts the screws and talks to sign.,rolls the tire on the handlebars to start cutting out.,1\n18957,anetv_o00AfbAIOlA,11186,He is removing the packaging. He,He is removing the packaging.,He,gold,is assembling the bike.,opens a third mixing table.,takes his hands and jumps in the air.,completes the palm and places on it.,0\n18958,lsmdc3009_BATTLE_LOS_ANGELES-463,392,He continues past his fellow Marines. Someone,He continues past his fellow Marines.,Someone,gold,stops and looks back at someone.,\"holds the flees to the end, as the kids drive into town.\",moves to the bathroom.,catches a bobby kick.,0\n18959,lsmdc3009_BATTLE_LOS_ANGELES-463,370,\"Someone steps forward, breathing heavily. Later someone\",\"Someone steps forward, breathing heavily.\",Later someone,gold,salutes him and holds him easily.,drives through an intersection.,shines a flashlight across the abandoned hangar.,arrives in the basement.,2\n18960,lsmdc3009_BATTLE_LOS_ANGELES-463,391,He wipes his face then stands up and marches around a media station with a charred map tacked on a board. He,He wipes his face then stands up and marches around a media station with a charred map tacked on a board.,He,gold,continues past his fellow marines.,drives off in green with sunset gear.,spreads the letters card onto a cookie sheet.,plays along with the girl rising.,0\n18961,lsmdc3009_BATTLE_LOS_ANGELES-463,373,Someone points to a location. Someone,Someone points to a location.,Someone,gold,dives through the wall and fires down it.,shoots out a flashlight.,fearfully slaps someone's face.,enters and takes off his helmet.,3\n18962,lsmdc3009_BATTLE_LOS_ANGELES-463,393,Someone stops and looks back at someone. Someone,Someone stops and looks back at someone.,Someone,gold,swaps a concerned look with someone.,stops as another door comes in.,stands with blood on his chest.,opens herself a deep and thinks about what she is saying to someone.,0\n18963,lsmdc3009_BATTLE_LOS_ANGELES-463,385,\"Someone wanders pass them, holding his helmet. The vet\",\"Someone wanders pass them, holding his helmet.\",The vet,gold,pulls someone out quickly.,looks back into his tv house.,holds up a pencil and starts to scratch it.,gives someone an encouraging nod.,3\n18964,lsmdc3009_BATTLE_LOS_ANGELES-463,386,The vet gives someone an encouraging nod. He,The vet gives someone an encouraging nod.,He,gold,leaves the timekeeper's desk.,\"glances at someone, who sits nearby with a somber gaze.\",\"licks the cupcake someone puts a towel on her face, then rubs his forehead.\",smiles the three musicians as they walk down the hall to the kitchen area.,1\n18965,lsmdc3009_BATTLE_LOS_ANGELES-463,377,\"Reaching the walkway, he watches someone and Hector through an open flap on the side of the tent. Hector\",\"Reaching the walkway, he watches someone and Hector through an open flap on the side of the tent.\",Hector,gold,clinks his hand with his.,\"swims toward it, revealing arrows tattooed between the wading carriages leading across the lake near the bay.\",\"looks at the visitors, then propping them on the branch.\",sits over his father.,3\n18966,lsmdc3009_BATTLE_LOS_ANGELES-463,395,\"Someone walks up to the disgruntled Marine and faces him squarely. On watch duty, someone and someone each\",Someone walks up to the disgruntled Marine and faces him squarely.,\"On watch duty, someone and someone each\",gold,walk the coatcheck chamber smoking a cigarette.,climb the ladder to the barren then rust metal house.,watch the colossus pass for an american woman.,look back at the hangar.,3\n18967,lsmdc3009_BATTLE_LOS_ANGELES-463,389,Someone remains on one knee. He,Someone remains on one knee.,He,gold,extends his hand to survey the sky.,holds his hand to someone's face as he plays the sax.,draws a tense breath then looks at someone and the other marines.,points down to the next room.,2\n18968,lsmdc3009_BATTLE_LOS_ANGELES-463,380,\"Grimacing, he grabs someone's shirt. She\",\"Grimacing, he grabs someone's shirt.\",She,gold,takes some tissues off someone's shirt.,gently lays a hand on someone's forehead and caresses the back of the boy's head with the other.,\"offers a shake of appreciation, while someone holds it.\",pulls under the covers.,1\n18969,lsmdc3009_BATTLE_LOS_ANGELES-463,367,Someone hurriedly ushers everyone out. Now black smoke,Someone hurriedly ushers everyone out.,Now black smoke,gold,fills the night sky.,drifts from someone's trunk.,rises from a crowded party.,fills the hot air.,0\n18970,lsmdc3009_BATTLE_LOS_ANGELES-463,378,Hector sits over his father. He,Hector sits over his father.,He,gold,takes his wallet from someone.,lays his head on his father's chest.,removes a original peanut paste from a calendar on the kitchen counter.,leaves the room and grabs a leafy bamboo.,1\n18971,lsmdc3009_BATTLE_LOS_ANGELES-463,375,Someone drops his head to his hands then pounds on the table. The frustrated staff sergeant,Someone drops his head to his hands then pounds on the table.,The frustrated staff sergeant,gold,carries their front fists through the corridor towards the house.,\"lies motionless in his chair staring off the porch, watching as someone gets out.\",leaves the map and ambles across the office.,\"looks up as someone, two fists, the rest at their necks, points over to the building.\",2\n18972,lsmdc3009_BATTLE_LOS_ANGELES-463,371,\"Checking someone's pulse, someone looks at Hector. Left alone, Hector\",\"Checking someone's pulse, someone looks at Hector.\",\"Left alone, Hector\",gold,holds his father's limp hand.,keeps watching his two men.,roll in her mouth.,fires his rifle at the mercenaries.,0\n18973,lsmdc3009_BATTLE_LOS_ANGELES-463,381,Hector runs out of the tent. He,Hector runs out of the tent.,He,gold,closes the door and enters wearing a new overcoat.,\"crouches on the edge of his desk, his arms tensed.\",faces the staff sergeant then hugs him.,rests his head on her shoulder.,2\n18974,lsmdc3009_BATTLE_LOS_ANGELES-463,374,Someone and someone look up from the map and gape at the Marine. Someone,Someone and someone look up from the map and gape at the Marine.,Someone,gold,gives someone a thumbs up as it explodes.,rolls someone's boobs out onto the back of a boat.,drops his head to his hands then pounds on the table.,pushes the vet down the art by section.,2\n18975,lsmdc3009_BATTLE_LOS_ANGELES-463,394,Someone swaps a concerned look with someone. Someone,Someone swaps a concerned look with someone.,Someone,gold,walks up to the disgruntled marine and faces him squarely.,\"stands with him, leaning against the wall.\",pauses a few paces ahead of someone.,\"glances across the room at the heavyset robber, who rubs his knee and rests his head on his chin.\",0\n18976,lsmdc3009_BATTLE_LOS_ANGELES-463,387,\"Someone, someone, and someone look on. Someone\",\"Someone, someone, and someone look on.\",Someone,gold,\", now, pulls up a telegraph gate and assembles a metal crate.\",\"smiles, the rest of the women are off.\",gazes into the boy's eyes.,\"dances around the table, bearing his coffee.\",2\n18977,lsmdc3009_BATTLE_LOS_ANGELES-463,383,\"Someone looks to someone and the vet. As the boy clings to him, he\",Someone looks to someone and the vet.,\"As the boy clings to him, he\",gold,waves someone across it.,notices a and peers into the wall.,glances uncomfortably at the brunette.,bounces off the ground as people run while his back paws around him.,2\n18978,lsmdc3009_BATTLE_LOS_ANGELES-463,388,\"She leads Hector to the girls, who sit nearby. Someone\",\"She leads Hector to the girls, who sit nearby.\",Someone,gold,helps her off the horse.,watches his home with a puzzled frown.,looks away at someone in the stern.,remains on one knee.,3\n18979,lsmdc3009_BATTLE_LOS_ANGELES-463,368,\"Flames rise from the burning wreckage, a various aircraft and vehicles littering the runway. The group\",\"Flames rise from the burning wreckage, a various aircraft and vehicles littering the runway.\",The group,gold,stares from a chain - link fence.,climbs out of the train as they drift over a goblet of soldiers.,walks after the party.,drags the kayak as debris rocks deeper into the valley.,0\n18980,anetv_i4yQ54eWfy4,3459,The man holds a knife and cut a lettuce and put it on a bowl. the man,The man holds a knife and cut a lettuce and put it on a bowl.,the man,gold,put the knife all in a pan and put it in a bowl.,presents a kitchen knife to sharpen it.,holds small croutons on a plate and show the lettuce.,\"melts a piece of bread, then adds chicken broth to the meat.\",2\n18981,anetv_i4yQ54eWfy4,3458,Man is standing in a kitchen talking to the camera. the man,Man is standing in a kitchen talking to the camera.,the man,gold,sets the white plate on the table.,is shown mopping the carpet while working with a bicycle.,holds a knife and cut a lettuce and put it on a bowl.,is showing how to hold a blue umbrella.,2\n18982,anetv_i4yQ54eWfy4,71,A chef is seen speaking to the camera behind a kitchen counter and leads into him cutting up lettuce and pouring ingredients out into a bowl. The man,A chef is seen speaking to the camera behind a kitchen counter and leads into him cutting up lettuce and pouring ingredients out into a bowl.,The man,gold,\"pulls the cutting all around the kitchen, presenting it and mix the ingredients into a bowl and finally spreads it against a plate.\",has finally seen all the ingredients in the pan and ends by presenting them in front of the camera.,pours various all ingredients into a blender and shows off several more served and ingredients and presenting them out on an oven.,presents more food items on a plate as well as a bowl sitting next to it.,3\n18983,lsmdc1039_The_Queen-88180,9528,\"Someone emerges, accompanied by people. They\",\"Someone emerges, accompanied by people.\",They,gold,wrap their arms around one another and point their wands at someone whose hand is missing his throat.,\"walk joyfully in union, which adds the still in candles.\",\"walk up to the huge collection of flowers, which are arranged outside the gate.\",ram the gate again.,2\n18984,lsmdc1039_The_Queen-88180,9531,\"Someone smiles, walks to the kitchen table and playfully messes up the hair of one of his sons. The Royal Family\",\"Someone smiles, walks to the kitchen table and playfully messes up the hair of one of his sons.\",The Royal Family,gold,puts his hand on his mother's hand.,stands with both arms raised and looks at the lifted figure.,rests and now at a desk with a girl's eye open.,\"continue to look at the flowers outside balmoral, and are watched by a large crowd of onlookers.\",3\n18985,lsmdc1039_The_Queen-88180,9536,Someone studies her reflection with a fixed stare. Someone descends some stairs and someone,Someone studies her reflection with a fixed stare.,Someone descends some stairs and someone,gold,turns over to meet her.,emerges from a room nearby.,hands open the door.,sees down through a small case.,1\n18986,lsmdc1039_The_Queen-88180,9524,Someone has her back to someone. Someone,Someone has her back to someone.,Someone,gold,sits down from a chair and pours into a bag.,turns and leaves the study.,holds up a round stick too.,takes out another locked gate and cuts a photo.,1\n18987,lsmdc1039_The_Queen-88180,9527,Flash photography is taken as the doors to the Range Rovers open. Someone,Flash photography is taken as the doors to the Range Rovers open.,Someone,gold,grabs her beak and tries to pull it off.,hands them bring the scenes of the video.,walks cautiously down the street to vault.,\"emerges, accompanied by people.\",3\n18988,lsmdc1039_The_Queen-88180,9530,Someone sits reading some paperwork and glances up to watch the tv. Someone,Someone sits reading some paperwork and glances up to watch the tv.,Someone,gold,sits in a gray - haired chair.,\"smiles, walks to the kitchen table and playfully messes up the hair of one of his sons.\",\"takes the alcohol bottle from the order bag where someone had been drinking, flirting.\",\"storms out, shutting the door and looks around.\",1\n18989,lsmdc1039_The_Queen-88180,9534,\"Friday, a female servant zips up the back of someone's black dress, then, hands her a pearl necklace. Someone\",\"Friday, a female servant zips up the back of someone's black dress, then, hands her a pearl necklace.\",Someone,gold,\"approaches someone, who is on a spotlight with them.\",clears it with her hand.,\"takes it, looks into the full - length mirror, and fastens the necklace around her neck.\",struts down on a pink - satin deck railing.,2\n18990,lsmdc1039_The_Queen-88180,9535,\"Someone takes it, looks into the full - length mirror, and fastens the necklace around her neck. Someone\",\"Someone takes it, looks into the full - length mirror, and fastens the necklace around her neck.\",Someone,gold,\"leaves the room, without enthusiasm.\",studies her reflection with a fixed stare.,\"walks towards him, then walks back towards someone and squeezes his lips against her finger.\",sits in the room where someone has been arranging.,1\n18991,lsmdc1039_The_Queen-88180,9525,The gates of Balmoral are all opened by two men. Range Rovers slowly,The gates of Balmoral are all opened by two men.,Range Rovers slowly,gold,descend from the hiding place.,lift past a dark - square hotel.,tumble out of someone's suv and letters scrolling through them.,\"emerge, flanked by four bodyguards.\",3\n18992,lsmdc1039_The_Queen-88180,9526,\"Range Rovers slowly emerge, flanked by four bodyguards. Flash photography\",\"Range Rovers slowly emerge, flanked by four bodyguards.\",Flash photography,gold,illuminate the group whose vampires escape from the sphere.,zooms out past a of ships lining the artwork.,expands inside the shack.,is taken as the doors to the range rovers open.,3\n18993,lsmdc1039_The_Queen-88180,9532,\"The Royal Family continue to look at the flowers outside Balmoral, and are watched by a large crowd of onlookers. Someone\",\"The Royal Family continue to look at the flowers outside Balmoral, and are watched by a large crowd of onlookers.\",Someone,gold,struggles to allow tread to escape.,'s free huddle in someone's viewfinder.,reacts to the exhaust bank.,sees all of them then leaps from a lifeboat onto a lake in dense motion.,2\n18994,lsmdc1039_The_Queen-88180,9533,\"Someone reacts to the exhaust bank. Friday, a female servant\",Someone reacts to the exhaust bank.,\"Friday, a female servant\",gold,holds up a vial of plastic liquor.,sits over a ammo box.,helps him organize someone's life wrists.,\"zips up the back of someone's black dress, then, hands her a pearl necklace.\",3\n18995,lsmdc1039_The_Queen-88180,9523,Someone enters the study while someone sits on the sofa. Someone,Someone enters the study while someone sits on the sofa.,Someone,gold,has her back to someone.,nods and flies at someone.,on it contains his foot and notes.,walks down the hall.,0\n18996,lsmdc0038_Psycho-67354,12818,\"Someone has reached him, the picture extended. Someone\",\"Someone has reached him, the picture extended.\",Someone,gold,descends to the room at the face of the statue.,is hidden behind the card.,looks dutifully at it.,opens his car door nervously.,2\n18997,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9739,5667,\"A powerful silver mist flows from someone's wand, shielding him from the terrifying power of the threatening Dementor. With determination and willpower, he gradually\",\"A powerful silver mist flows from someone's wand, shielding him from the terrifying power of the threatening Dementor.\",\"With determination and willpower, he gradually\",gold,pours himself over his face - - then the with his moves.,switches the a fire from the gymnasium.,forces it to retreat inside the open trunk.,pushes himself up onto his shoulders and crashes into the rear of the package - beak.,2\n18998,lsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9739,5668,\"With determination and willpower, he gradually forces it to retreat inside the open trunk. Laughing with delight, someone\",\"With determination and willpower, he gradually forces it to retreat inside the open trunk.\",\"Laughing with delight, someone\",gold,circles through dense foliage.,shoves someone in his back pocket.,grabs someone's sword and sends him sprawling towards someone.,slams down the lid.,3\n18999,anetv_U_ZW0tTvf0k,15253,A girl is seen laying on a table with a man piercing her belly button below her. The girl screams in pain and the man,A girl is seen laying on a table with a man piercing her belly button below her.,The girl screams in pain and the man,gold,begins to put her hands away.,spreads all over his face as she continues to talk.,finishes her piercing while she looks to the camera.,holds her in her arms.,2\n19000,anetv_ffUtqOyJ7fM,4047,\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she begins to rub it all over her face using her fingers. The woman\",\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she begins to rub it all over her face using her fingers.\",The woman,gold,speaks and then rinses her face off and then dries her face with a towel.,cleans her beau and looks to the camera.,\"talks to the camera, smiling, and with a reservoir office where her son can't be so basically working.\",is with the pencil in one hand.,0\n19001,anetv_ffUtqOyJ7fM,12237,A woman speaks to the camera while turning her face back and fourth. She,A woman speaks to the camera while turning her face back and fourth.,She,gold,grabs a lifeboat and walks away to the camera.,continues to speak as well as text behind her phone.,holds up a product and wipes it all along her face.,continues to speak at the camera while pointing and walks out of frame.,2\n19002,anetv_ffUtqOyJ7fM,12238,She holds up a product and wipes it all along her face. She,She holds up a product and wipes it all along her face.,She,gold,continues to show off her hair and continuing on.,washes her faces and wipes it down with a rag still speaking to the camera.,uses a tool to clip a clear dart off in the end.,\"turns down and operates different liquids into a small glass, then walks with the machine.\",1\n19003,anetv_ffUtqOyJ7fM,4046,\"A woman wearing black clothes is talking in front of an all white screen, she tilts her head from side to side then holds up a small bottle. The woman then applies water to her face, then pours contents from the little bottle onto her hands and she\",\"A woman wearing black clothes is talking in front of an all white screen, she tilts her head from side to side then holds up a small bottle.\",\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she\",gold,begins to rub it all over her face using her fingers.,wipes swigs from the cup again and continues.,shows around the mouth then wipes it away and shows it on a piece of dishrag.,\"loses, then puts the bottle in another cupboard, without combs, all the adhesive tape moves over her face.\",0\n19004,anetv__roK9m9UOvM,10692,The woman ties her laces. The woman,The woman ties her laces.,The woman,gold,puts the ribbon on top the ribbon.,gives a thumbs up.,puts down her shoes.,begins to use her hands to keep socks.,1\n19005,anetv__roK9m9UOvM,11716,She is putting a shoe on. She,She is putting a shoe on.,She,gold,uses an eyeliner to keep combing the hair.,is using a big brush and toothbrush.,picks up a brush and begins scrubbing the floor.,is talking to a person holding a camera.,3\n19006,anetv__roK9m9UOvM,11715,A woman is laying in a bed. She,A woman is laying in a bed.,She,gold,talks while and cleans a leg.,puts on blue sheets carved across her legs.,is putting a shoe on.,is clipping onto a laptop.,2\n19007,anetv_gXVjjjvjVf4,14162,He uses a long pointed brush to create an image. He then,He uses a long pointed brush to create an image.,He then,gold,switches on the wall trying to clean the floor.,uses a brush to apply it to his eye.,lifts the vacuum all by himself and twisting it with a hand.,fills the image with paints.,3\n19008,anetv_gXVjjjvjVf4,14161,A man is seated in front of a small canvas. He,A man is seated in front of a small canvas.,He,gold,boards two sections along the water.,uses a long pointed brush to create an image.,is holding a canvas.,is puts on a canvas.,1\n19009,anetv_YuCMWTdK_DY,266,The man stretches a bit and begins spinning himself around. He,The man stretches a bit and begins spinning himself around.,He,gold,continues to spin and ends by walking away.,continues to climb back and end by lowering the camera.,moves around and continues scrubbing while coming to the camera.,sucks on the pipe and begins rubbing it together while along with him.,0\n19010,anetv_fWD0rL_72nw,1999,The man keeps moving backward and the woman follows. The woman,The man keeps moving backward and the woman follows.,The woman,gold,walks to the edge of threshold.,turns back and shoulders her.,starts kicking at the man.,returns and talks into dartboard.,2\n19011,anetv_fWD0rL_72nw,8706,A man and woman face off inside a gym. They,A man and woman face off inside a gym.,They,gold,women of kids clap and clips more make on and announces: stuff.,pull some darts and the cut.,are both wearing boxing gloves.,run in and show jesse in a gym.,2\n19012,anetv_fWD0rL_72nw,8707,They are both wearing boxing gloves. The woman,They are both wearing boxing gloves.,The woman,gold,moves across some table.,looks around and excitedly.,punches as the man blocks.,puts on a bra.,2\n19013,lsmdc1009_Spider-Man3-76427,4215,\"Swinging from a thread, he sweeps low between the line of cars and up to a high roof adorned with lanterns. He\",\"Swinging from a thread, he sweeps low between the line of cars and up to a high roof adorned with lanterns.\",He,gold,\"clings to one huge lantern, looks out over the city and pulls off his black hood.\",\"twisted wall parts to the wall and covers a gap in the shutter, which lights cast across its nearby wooden roof.\",explodes over a wave and grabs the clerk.,snow casts his evening light from a window as he vanishes from her rippling water.,0\n19014,lsmdc1009_Spider-Man3-76427,4213,He drops onto his feet on a ledge. He,He drops onto his feet on a ledge.,He,gold,looks down at his hands as he is holding himself.,meets someone's gaze then blinks nervously.,takes a close look at his reflection.,closes the cover of the horse and rises.,2\n19015,lsmdc1009_Spider-Man3-76427,4211,\"His eyes opened in horror. Someone, his someone suit completely black,\",His eyes opened in horror.,\"Someone, his someone suit completely black,\",gold,is looking down at the wall knife then drops the gun into his hand and studies it closely.,sits on the emergency table in a series of coats along the story.,stands beside him and watches someone train him from deep breaths.,\"hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window.\",3\n19016,lsmdc1009_Spider-Man3-76427,4214,\"He flips up the side of the building and leaps into the air. Swinging from a thread, he\",He flips up the side of the building and leaps into the air.,\"Swinging from a thread, he\",gold,sweeps low between the line of cars and up to a high roof adorned with lanterns.,swings the cage down toward a ceiling.,\"marches through the crowd and follows someone, who now rests in his brace on the nearby safety.\",leaps down on his belly with his stick.,0\n19017,lsmdc1009_Spider-Man3-76427,4212,\"Someone, his someone suit completely black, hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window. He\",\"Someone, his someone suit completely black, hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window.\",He,gold,spots someone pacing outside and takes a huge leap.,comes in with a black and puzzled someone.,drops onto his feet on a ledge.,gives her a tight stomp and works the seat on back and forth over the wheel.,2\n19018,lsmdc3056_PUBLIC_ENEMIES-3392,3608,\"Now in a forest road, two motorcars douse their headlights as they creep forward and park on the dirt shoulder. Someone, someone, and several others in trench coats\",\"Now in a forest road, two motorcars douse their headlights as they creep forward and park on the dirt shoulder.\",\"Someone, someone, and several others in trench coats\",gold,ride an escalator at a camp.,climb out of the vehicles.,hang in a branch in the back.,draw small boats out of the cottage.,1\n19019,lsmdc3056_PUBLIC_ENEMIES-3392,3610,\"Someone closes his door most of the way, but leaves it cracked open. Armed with their rifles and sub machine guns, the g - men\",\"Someone closes his door most of the way, but leaves it cracked open.\",\"Armed with their rifles and sub machine guns, the g - men\",gold,cross the shadowy woods.,put the spire across the car.,\"keep watch about 10 a., high five the corner of the vehicle.\",put his powder into the plastic handgun.,0\n19020,lsmdc3056_PUBLIC_ENEMIES-3392,3611,\"Armed with their rifles and sub machine guns, the g - men cross the shadowy woods. Someone and someone\",\"Armed with their rifles and sub machine guns, the g - men cross the shadowy woods.\",Someone and someone,gold,walk in on one of the lifts.,stand shoulder - to - shoulder.,\"run along the hall, steps, and races under the base of the atrium.\",line their work in front of a giant white doors which sits close to her.,1\n19021,lsmdc3056_PUBLIC_ENEMIES-3392,3607,\"Someone's profile grows blurry as the view focuses on the radio beyond. Now in a forest road, two motorcars\",Someone's profile grows blurry as the view focuses on the radio beyond.,\"Now in a forest road, two motorcars\",gold,mustang draw an arch similar to a large waist - high bench and a window talking about someone.,douse their headlights as they creep forward and park on the dirt shoulder.,sizes ascend a single wooden sedan.,peel off of the ash - covered forest into the forest.,1\n19022,lsmdc3056_PUBLIC_ENEMIES-3392,3603,The stern - faced g - man turns gravely toward someone and nods. Someone 'beady eyes,The stern - faced g - man turns gravely toward someone and nods.,Someone 'beady eyes,gold,glaze up after someone.,widen as someone swaggers away from him.,\"peer downward, deep in thought.\",remain fixed on someone as he leans forward and glances at him.,2\n19023,lsmdc3056_PUBLIC_ENEMIES-3392,3606,Someone picks up his pocket watch off the nightstand. Someone's profile,Someone picks up his pocket watch off the nightstand.,Someone's profile,gold,is reflected in the palm wooden table.,is otherwise view as she spreads his arms wide.,grows blurry as the view focuses on the radio beyond.,is on his rear view.,2\n19024,lsmdc3056_PUBLIC_ENEMIES-3392,3609,\"Someone, someone, and several others in trench coats climb out of the vehicles. Someone\",\"Someone, someone, and several others in trench coats climb out of the vehicles.\",Someone,gold,shares some of her photos on windows and leaves.,strides past a guy following close behind.,\"closes his door most of the way, but leaves it cracked open.\",watches in horror as someone turns hurriedly to sword her mace.,2\n19025,lsmdc3056_PUBLIC_ENEMIES-3392,3605,He lies down on a modest twin bed. Someone,He lies down on a modest twin bed.,Someone,gold,wakes with the mattress in her bed.,picks up his pocket watch off the nightstand.,is asleep inside his bed.,is with her mother.,1\n19026,lsmdc3060_SANCTUM-29399,12018,\"As someone whispers to himself eyes closed, someone comes to him. Someone\",\"As someone whispers to himself eyes closed, someone comes to him.\",Someone,gold,breaks off muttering and opens his eyes.,\"peers in, his face obscured by the blood.\",\"turns to someone, scowling.\",stands with his lifeless kid.,0\n19027,lsmdc3060_SANCTUM-29399,12016,\"Stepping away, someone reaches into his supply pack and pulls out a knife with a six inch blade. Someone\",\"Stepping away, someone reaches into his supply pack and pulls out a knife with a six inch blade.\",Someone,gold,\"rubs his hand back away, then unzips his pink shirt, clutching the map wistfully.\",\"grimly switches off his helmet lamp, so does someone.\",pulls up his knife and holds his new chain for him.,grudgingly imagines the torch.,1\n19028,lsmdc3060_SANCTUM-29399,12019,Someone breaks off muttering and opens his eyes. She,Someone breaks off muttering and opens his eyes.,She,gold,enters to pick up a phone.,puts her hair around him.,flashes a meek smile.,inserts the key in the lock.,2\n19029,lsmdc3060_SANCTUM-29399,12014,He sits him down and hands him a rebreather. Someone,He sits him down and hands him a rebreather.,Someone,gold,steps towards the white door.,rests his hand in it.,\"trails her, an understands sinking.\",puts it to his mouth.,3\n19030,lsmdc3069_THE_BOUNTY_HUNTER-4610,4149,\"He hits the disconnect button. Now, in someone's pink - tiled bathroom, someone searches a vanity then\",He hits the disconnect button.,\"Now, in someone's pink - tiled bathroom, someone searches a vanity then\",gold,picks through dirty laundry strewn around the tub.,resumes playing her partially elmo bag.,sketches an exam chair to clean her naked leg in a mirror.,\"twirls around the present, then turns away and finds someone comforting him.\",0\n19031,lsmdc3069_THE_BOUNTY_HUNTER-4610,4150,\"Now, in someone's pink - tiled bathroom, someone searches a vanity then picks through dirty laundry strewn around the tub. She\",\"Now, in someone's pink - tiled bathroom, someone searches a vanity then picks through dirty laundry strewn around the tub.\",She,gold,brushes her hair out.,tosses phial at the driver on the dresser.,finds a bar coaster in a pair of jeans.,dips the cloth in the glossy bag and brings the cloth out of someone's chair.,2\n19032,anetv_0_-Q1zOC3Kw,5151,A small group of people are seen sitting around a classroom with one playing the harmonica. One woman,A small group of people are seen sitting around a classroom with one playing the harmonica.,One woman,gold,is speaking while speaking to the band then wraps his arm around the audience.,stops playing and pushes the men around.,is seen dancing around behind him as he continues to play the instrument.,plays hop scotch while several others watch the match.,2\n19033,anetv_0_-Q1zOC3Kw,8100,A woman in the back of a classroom dances away to the music of the harmonica. Kids around the man,A woman in the back of a classroom dances away to the music of the harmonica.,Kids around the man,gold,is strumming the guitar on the table.,listen to his performance.,get into their car.,clap and run in the end.,1\n19034,anetv_0_-Q1zOC3Kw,8099,A student plays the harmonica in a classroom. A woman in the back of a classroom,A student plays the harmonica in a classroom.,A woman in the back of a classroom,gold,runs down and helps with the boys.,is strumming a guitar.,dances away to the music of the harmonica.,dances forward on the ground.,2\n19035,anetv_KNLGluuewIU,16799,A little girl is dancing and singing while seated. they,A little girl is dancing and singing while seated.,they,gold,\"go back and forth between them, singing.\",are engaged in a game of curling.,sit up and start talking.,start dancing down the floor with batons.,0\n19036,anetv_KNLGluuewIU,16798,A woman is in a bedroom talking to the camera. A little girl,A woman is in a bedroom talking to the camera.,A little girl,gold,is twirling and dancing in front of a crowd.,is dancing and singing while seated.,is running along a pile of steps in the middle.,is demonstrating how to use the floor.,1\n19037,anetv_KNLGluuewIU,11129,A girl is seen speaking to the camera and leads into shots of her and young girl singing to the camera. The girls,A girl is seen speaking to the camera and leads into shots of her and young girl singing to the camera.,The girls,gold,\"thumbs through up in the ends and cuts it, forming the shapes and pointing to the camera.\",continue to record themselves and leads into the girl brushing her hair from behind.,continue riding along the water performing various jump and tricks back and fourth on the street.,continue moving their legs and moving up and down.,1\n19038,anetv_Qf6gZtm9BIg,17395,He gets onto a slack line and starts to cross it. He,He gets onto a slack line and starts to cross it.,He,gold,scrambles on the board down some stairs and goes along.,stops spraying and lowers the camera.,falls off onto the grass.,holds an elastic trophy.,2\n19039,anetv_Qf6gZtm9BIg,17394,A man is standing outside talking. He,A man is standing outside talking.,He,gold,gets onto a slack line and starts to cross it.,picks up a tree and begins talking.,starts talking to the camera while holding a racket.,uses a tutorial on how to make a sandwich.,0\n19040,lsmdc0003_CASABLANCA-46924,16220,\"They buy a newspaper and begin to read it. Nearby, a group of frightened French people\",They buy a newspaper and begin to read it.,\"Nearby, a group of frightened French people\",gold,appear outside on the ship.,cluster around a loudspeaker on a wagon.,pile a paper in a traditional window.,take costumes and walk women having a drink.,1\n19041,lsmdc0003_CASABLANCA-46924,16217,Tanks rolling down the road toward Paris. A man,Tanks rolling down the road toward Paris.,A man,gold,gives a 08 - doubtfully blonde a pink rucksack.,sells newspapers to people crowded around him.,finds a rifle and a trainer straddles a car wreck.,wearing a civilian's punches pushes someone into the car.,1\n19042,lsmdc0003_CASABLANCA-46924,16219,People sit at a table. They,People sit at a table.,They,gold,sit on chairs behind a coats terrace painted before them.,are playing a game of soccer in a jungle.,buy a newspaper and begin to read it.,are chopping several sticks on a cutting board.,2\n19043,lsmdc0003_CASABLANCA-46924,16218,A man sells newspapers to people crowded around him. People,A man sells newspapers to people crowded around him.,People,gold,are on a pair of inner tubes.,see every class turning on the digital garage camera and looking on.,shown all around an office and others smiles.,sit at a table.,3\n19044,anetv_xMuC8lmVX3A,18165,She then begins cutting wrapping paper and wrapping it around a box. The woman,She then begins cutting wrapping paper and wrapping it around a box.,The woman,gold,continues cutting the dough and ends by showing her work.,wipes down another cart and then placed it on the table.,throws the cut cellophane and places it in front of her.,wraps the present with her feet and shows it to the camera.,3\n19045,anetv_xMuC8lmVX3A,18164,A woman with no arms is seen speaking to the camera and holding up tools with her feet. She then,A woman with no arms is seen speaking to the camera and holding up tools with her feet.,She then,gold,pulls up a large log and puts it into the scissors.,turns around and walks back along the hill while kicking down the camera.,begins cutting wrapping paper and wrapping it around a box.,begins doing sit ups in the chair while swinging at cat equipment again.,2\n19046,anetv_xMuC8lmVX3A,10128,The lady demonstrates wrapping gifts using her feet. The lady,The lady demonstrates wrapping gifts using her feet.,The lady,gold,cuts the paper with scissors.,shows us the different shapes of the ornaments.,takes the desserts from the box and continues talking to the camera.,continues playing when the lady talks to the camera.,0\n19047,anetv_xMuC8lmVX3A,10132,The lady presents the wrapped gift to us and puts the gift under the tree. We,The lady presents the wrapped gift to us and puts the gift under the tree.,We,gold,unraveling the bush and adds a few of the amber petals.,\"the lady shows us the proper way to iron it, and then they rub the pictures together.\",see the closing screens and titles.,\"view the windows, the lady takes several coats, lipstick, and a duffle bag of a fan.\",2\n19048,anetv_xMuC8lmVX3A,10127,A lady with no arms sits on the floor in front of a Christmas tree. The lady,A lady with no arms sits on the floor in front of a Christmas tree.,The lady,gold,walks towards the camera.,demonstrates wrapping gifts using her feet.,removes strips of painting from the pumpkin.,shows the reading tree.,1\n19049,anetv_xMuC8lmVX3A,10130,The lady puts the box on the paper. The lady,The lady puts the box on the paper.,The lady,gold,puts the deed onto the bike.,shows the filmed card.,\"lifts her hands up, craning her neck.\",wraps the paper around the box and adds tape.,3\n19050,anetv_xMuC8lmVX3A,10131,The lady wraps the paper around the box and adds tape. The lady,The lady wraps the paper around the box and adds tape.,The lady,gold,presents the wrapped gift to us and puts the gift under the tree.,takes a flash screen.,tapes the wrapping paper with the tissue.,puts gel and gift wrapping paper over a present.,0\n19051,anetv_xMuC8lmVX3A,10129,The lady cuts the paper with scissors. The lady,The lady cuts the paper with scissors.,The lady,gold,puts the box on the paper.,puts oil to a pink tier and has some water and paints a bit in paint.,presents the liquor again.,rinses the rag and shows off the pumpkin.,0\n19052,anetv_xMuC8lmVX3A,10126,We see the opening screen on black. A lady with no arms,We see the opening screen on black.,A lady with no arms,gold,appear to start singing in the set.,enters and does head lifts.,sits on the floor in front of a christmas tree.,holds a picture in front of her.,2\n19053,anetv_Nj_rPQwzllA,7769,He seems to be pretty good at it because it continues to play for quite a while. The host,He seems to be pretty good at it because it continues to play for quite a while.,The host,gold,\"brings him, on one knee a pillow with a new harmonica on it.\",\"begins talking about getting a good cool ball stroke, while the video clearly shown and suddenly fades.\",is in tv walking with several images of people and talking about the world.,looks over and gives the joke more man.,0\n19054,anetv_Nj_rPQwzllA,200,A man is seated behind a large desk. Another man,A man is seated behind a large desk.,Another man,gold,walks across the room while a woman lays a hand on his arm.,is sitting in a red chair talking with him.,is doing the machine and cleaning.,starts playing a bass drum.,1\n19055,anetv_Nj_rPQwzllA,7768,Once they sit back down they talk for a while and then Neil starts playing the harmonica. He,Once they sit back down they talk for a while and then Neil starts playing the harmonica.,He,gold,draws back from the camera and demonstrates more himself on how to get off the board.,listens to the music and pulls him to him and share a kiss.,seems to be pretty good at it because it continues to play for quite a while.,places an arm on her hip and begins to play the drums.,2\n19056,anetv_Nj_rPQwzllA,7767,\"On the late night show the guest is Neil Patrick Harris, he is very excited to see a horse come out on stage and jumps up and down very happily. Once they sit back down they talk for a while and then Neil\",\"On the late night show the guest is Neil Patrick Harris, he is very excited to see a horse come out on stage and jumps up and down very happily.\",Once they sit back down they talk for a while and then Neil,gold,lets go of the skateboard and continues in every clip.,on the coach's tail.,flips backwards and landed on the deck.,starts playing the harmonica.,3\n19057,lsmdc0006_Clerks-48851,17208,The old man walks off. Someone,The old man walks off.,Someone,gold,rushes over and knocks someone's foot away.,steps out of the minibus.,punches someone in the face.,heads back to the counter.,3\n19058,lsmdc3037_IRON_MAN2-16730,11041,\"Someone takes the control unit from someone. In the hangar, someone\",Someone takes the control unit from someone.,\"In the hangar, someone\",gold,puts her brow against his shivering chest.,opens a storage room door.,sits down the back of his fishing cage.,retrieves a scanner and lets himself in.,1\n19059,lsmdc3037_IRON_MAN2-16730,11043,\"The men exchange salutes and someone walks away. Elsewhere, someone and someone\",The men exchange salutes and someone walks away.,\"Elsewhere, someone and someone\",gold,drive along a plain platform.,run to a large truck which someone shows to an outdoor one.,sit on a patio overlooking the ocean.,sit on a bench nearby waves.,2\n19060,anetv_fxEcsM0EaA4,1389,They switch places and a different person starts jumping. A man,They switch places and a different person starts jumping.,A man,gold,practices a hockey in discussing.,lets the jump rope from the floor into the pool.,is shown in a chair with other people standing behind it.,stands and holds the jump rope.,3\n19061,anetv_yw1IZdbEzck,2659,A woman sits as a man is piercing her nose. He,A woman sits as a man is piercing her nose.,He,gold,punctures her nose with a long thin rod.,puts the contact lens into his eyes.,starts cutting the carpet using a wooden pad.,removes a button pierced child wearing grey brown skin.,0\n19062,anetv_yw1IZdbEzck,7383,She is being still as he clamps her nose. He then,She is being still as he clamps her nose.,He then,gold,gets a piercing and plays a replay of her front arm.,puts the jug into her mouth and scrapes the blood.,uses a tool to escort her from it.,\"inserts a piercing, making her eyes water.\",3\n19063,anetv_yw1IZdbEzck,2660,\"He pulls the rod through to insert the jewelry and she begins to bleed. After the jewelry is in, he\",He pulls the rod through to insert the jewelry and she begins to bleed.,\"After the jewelry is in, he\",gold,puts it into his own mouth.,grabs her folded foil and starts wrapping it seductively under her suspicious gaze.,begins to clean off the blood.,plays an electric fishing rod.,2\n19064,anetv_yw1IZdbEzck,7382,A man is wearing gloves while working with a woman. She,A man is wearing gloves while working with a woman.,She,gold,uses the needle to adjust the seat in front of her.,is being still as he clamps her nose.,starts cutting a rope attached to an oar.,uses a flare to lay it down as she talks.,1\n19065,lsmdc3084_TOOTH_FAIRY-39967,16232,The cagey fairy waves him over. Someone,The cagey fairy waves him over.,Someone,gold,points quizzically at himself and the fairy nods.,\"smiles faintly at the youth, then takes off his sunglasses.\",continues eating and staring at the young man.,gawks at his young couple.,0\n19066,lsmdc3084_TOOTH_FAIRY-39967,16233,Someone points quizzically at himself and the fairy nods. He,Someone points quizzically at himself and the fairy nods.,He,gold,gives an appreciative nod and pulls his jacket closed.,opens a display pouch and shows magic supplies.,says nothing and slowly lowers his head.,steers off towards another part of the bank's main walkway.,1\n19067,lsmdc3084_TOOTH_FAIRY-39967,16235,He turns see through but does n't disappear. A woman,He turns see through but does n't disappear.,A woman,gold,marches away to a tunnel.,smashes into a beautiful man.,is crying as she comes face to face with someone.,sees his ghostly form on her way out.,3\n19068,lsmdc3084_TOOTH_FAIRY-39967,16231,He storms out into a corridor. A cagey fairy,He storms out into a corridor.,A cagey fairy,gold,waits for him as he passes through a doorway.,\"topples the door, then turns back to start in the corridor.\",subsides someone stares open - mouthed.,appears at the bar.,0\n19069,lsmdc3084_TOOTH_FAIRY-39967,16239,\"Smacking his lips, he goes back to normal. Instead of shrinking, someone's head\",\"Smacking his lips, he goes back to normal.\",\"Instead of shrinking, someone's head\",gold,rolls down on top of the sink.,stretches like a balloon.,drops in front of him and opens his mouth to speak.,flies toward the mattress.,1\n19070,lsmdc3084_TOOTH_FAIRY-39967,16243,Someone appears in front of him. The others,Someone appears in front of him.,The others,gold,are tied up in the cab.,\"gather in the tents, amid the dead horns.\",stride towards releasing a gust of wind coming up behind him down his back window.,can't see someone.,3\n19071,lsmdc3084_TOOTH_FAIRY-39967,16236,A woman sees his ghostly form on her way out. Someone,A woman sees his ghostly form on her way out.,Someone,gold,examines his transparent hands.,\"sits leaning against a wall, watching someone cross a journal.\",skiptracer takes a seat presenting someone to the driver and pulls off her jacket.,\"sequence of dead men's various members, moving strongly.\",0\n19072,lsmdc3084_TOOTH_FAIRY-39967,16238,\"Someone eats some shrinking paste. Smacking his lips, he\",Someone eats some shrinking paste.,\"Smacking his lips, he\",gold,screws up his entire hand.,sucks down a straw.,takes off his skeleton helmet.,goes back to normal.,3\n19073,lsmdc3084_TOOTH_FAIRY-39967,16241,His ears spring out as his head grows too big for his body. The fairy's head,His ears spring out as his head grows too big for his body.,The fairy's head,gold,drops to almost every swing.,shows punch powder darkness filling the streets with arrival and authority.,looms almost unopened against the door.,returns to the right size.,3\n19074,lsmdc3084_TOOTH_FAIRY-39967,16234,\"In front of a house, someone sprays himself down. He\",\"In front of a house, someone sprays himself down.\",He,gold,pauses around then makes his way toward the stage.,turns see through but does n't disappear.,rides down in a cab and lies on his back.,sprays a patio window into a mask.,1\n19075,lsmdc3084_TOOTH_FAIRY-39967,16240,\"Instead of shrinking, someone's head stretches like a balloon. His ears\",\"Instead of shrinking, someone's head stretches like a balloon.\",His ears,gold,move towards an ornate barrel shaped clamp and container with two gear on it.,spring out as his head grows too big for his body.,\"are dirty and the old white collar, his hair hanging from the sides, pulls up.\",unmistakably gets close to the other man.,1\n19076,lsmdc3084_TOOTH_FAIRY-39967,16242,\"Now, someone sits in a police department holding cell with four other detainees. Someone\",\"Now, someone sits in a police department holding cell with four other detainees.\",Someone,gold,appears in front of him.,gives a smile of realization then leaves.,runs over to him.,pulls into an apartment room and studies someone.,0\n19077,anetv_q4M7SsGjFro,18987,The girls finishes and throws her arms in the air. The girl,The girls finishes and throws her arms in the air.,The girl,gold,performs removing her gloves.,finishes the routine and kisses the people.,throws her arms through the air and cheers the people.,walks over and hugs her dad.,3\n19078,anetv_q4M7SsGjFro,18986,The girl kneels down and picks up a baton. The girls,The girl kneels down and picks up a baton.,The girls,gold,is practicing stealing toys.,performs a series of flips and flips while the first girl of the studio fall.,finishes and throws her arms in the air.,\"run to the girl, twirling her gazes at her audience.\",2\n19079,anetv_q4M7SsGjFro,18984,We see a girl performing with batons. The girl,We see a girl performing with batons.,The girl,gold,kicks some more people in the audience as the team moves back and forth.,performs a long jump.,continues to dance after the frisbees.,throws her leg in the air and spins.,3\n19080,anetv_8v2ewQE-QK0,1556,People are sitting on large benches inside the church. a wooden urn,People are sitting on large benches inside the church.,a wooden urn,gold,is sitting on a bench in the middle of the room while a ceiling of a long courtroom is shown.,hangs scattered on the ground.,is in the middle of the church with a flag on top.,\"appears, facing up to the ceiling.\",2\n19081,anetv_8v2ewQE-QK0,1555,A marching band is standing in front of a church. people,A marching band is standing in front of a church.,people,gold,drag the girl indoors.,are sitting on large benches inside the church.,'s outside playing progress and another man.,are standing on a large court playing a game of croquette.,1\n19082,anetv_8v2ewQE-QK0,4070,A funeral is in progress inside a building. A band,A funeral is in progress inside a building.,A band,gold,is playing croquet in the field.,is gathered around a fence.,marches in and plays music.,stands on the outside of the street.,2\n19083,anetv_Tk3zk2pJ9KA,7454,The sun rises and more shots of landscapes are shown as well as animals in the area. People,The sun rises and more shots of landscapes are shown as well as animals in the area.,People,gold,\"are shown performing on the tables, or no one speaking to them.\",are then seen riding around on a boat through a tough river and end with a plane flying over the area.,are then seen walking amid traditional landscapes and clip pumpkins.,look from the ornaments.,1\n19084,anetv_Tk3zk2pJ9KA,7453,A camera pans over several landscapes located in the desert as well as the night sky moving around. The sun rises and more shots of landscapes,A camera pans over several landscapes located in the desert as well as the night sky moving around.,The sun rises and more shots of landscapes,gold,are shown as well as people clapping and the camera pans all around the field.,are shown as well as several more clips of people in skiing gear shooting through the water.,are shown as well as animals in the area.,are shown of people riding on the beach as well as paddles and cheering.,2\n19085,lsmdc1014_2012-79558,34,He makes to move away. She,He makes to move away.,She,gold,turns to his approach.,puts her arms around his neck and kisses him more intensely.,has a clear feeling for the reptilian legs under wing over his heads.,\"does, but his place is n't there.\",1\n19086,lsmdc1014_2012-79558,32,They are both on their feet. He,They are both on their feet.,He,gold,position their hands hands as they dance.,walks over to her.,\"are hiding, screaming at each other.\",nudges and makes his way to the next gap.,1\n19087,lsmdc1014_2012-79558,33,He walks over to her. He,He walks over to her.,He,gold,lifts his shoulder and pats her head.,makes to move away.,bends even as his photographer snaps his view and sees someone talking.,\"stops the car, then stares ahead.\",1\n19088,anetv_K6Tm5xHkJ5c,13802,A woman is standing on a lit stage. She,A woman is standing on a lit stage.,She,gold,is standing next to him.,is holding an accordian as she talks.,begins dancing with a new set.,is playing small flute with her hands held up to her lips.,1\n19089,anetv_K6Tm5xHkJ5c,2082,A woman is seen speaking to the camera while holding an accordion and and moving her hands around. She,A woman is seen speaking to the camera while holding an accordion and and moving her hands around.,She,gold,stops playing and shows it to the camera and describes the hilt soda.,demonstrates how to play the instrument while still speaking to the camera and moving all around.,continues playing the flute while moving her hands in the air and laughing.,continues to play with strings with her fingers while smiling while looking off into the distance.,1\n19090,anetv_aF0gDTbcOxE,12844,Several clips are shown of robots fighting one another as well as the inside and outside of a building. More robots,Several clips are shown of robots fighting one another as well as the inside and outside of a building.,More robots,gold,are shown close up as well as people adjusting the robots and setting them down to fight.,are seen followed by people dancing as well as people helping themselves.,are shown as well as jumping up and down as the groups continue play together.,pans around the men and begin fencing with one another.,0\n19091,anetv_aF0gDTbcOxE,12845,More robots are shown close up as well as people adjusting the robots and setting them down to fight. The people,More robots are shown close up as well as people adjusting the robots and setting them down to fight.,The people,gold,continue using the robots and end by shaking hands and bowing with another man.,throw the stick into the air and hit pins.,continue to compete again while the camera captures their movements.,continue turning around in the water while the camera captures his movements.,0\n19092,anetv_CQXhtaNkhrw,19503,A man with white hair plays an accordion on a stage. The man,A man with white hair plays an accordion on a stage.,The man,gold,raises his head and waves his arms in it silently.,points to the microphone.,smiles and talks about the harmonica.,smiles and looks around while performing.,3\n19093,anetv_CQXhtaNkhrw,19504,The man smiles and looks around while performing. The man,The man smiles and looks around while performing.,The man,gold,moves to the music while playing and grabs the microphone and speaks into the microphone as he completes his performance.,\"dismounts and uses the disk to push, who flips the closing box to give people.\",continues cooking as the camera pans around to some other people sitting around the table.,holds up the man's legs while the other smiling it in front is discussing.,0\n19094,anetv_CQXhtaNkhrw,10300,A man is seen sitting on stage holding an accordion in his hands. The man then,A man is seen sitting on stage holding an accordion in his hands.,The man then,gold,begins playing several drums while looking off into the distance.,begins playing the instrument while looking off into the distance.,begins smoking a piece of paper speaking to the camera.,begins playing a harmonica while speaking to the camera while still smiling to the camera.,1\n19095,anetv_CQXhtaNkhrw,10301,The man then begins playing the instrument while looking off into the distance. The man,The man then begins playing the instrument while looking off into the distance.,The man,gold,continues moving his arms by the camera while looking off into the distance.,continues to play along with the cat and ends by grabbing a guitar.,plays the instrument in slow motion.,continues playing while smiling to the camera and stops playing in the end.,3\n19096,anetv__tPDUYSu1IQ,1407,There are two men elbow wrestling on a table. There,There are two men elbow wrestling on a table.,There,gold,are several people are watching them wrestle.,is holding two papers on the side and the guy steps up to the cards.,crowd in front of a tv set is shown.,as small make and feet for the rest.,0\n19097,lsmdc1014_2012-79071,8802,Someone pulls up behind the plane. Someone,Someone pulls up behind the plane.,Someone,gold,rushes over as someone emerges.,watches the bomb burn at his room.,\"gets into the water, staring back at the window.\",pauses and faces the surveillance monitor.,0\n19098,lsmdc1014_2012-79071,8807,\"At the plane's controls, someone looks over his shoulder. Someone\",\"At the plane's controls, someone looks over his shoulder.\",Someone,gold,sets the plane moving.,gets into the mercedes.,takes off his helmet.,opens a cheesecake box.,0\n19099,lsmdc1014_2012-79071,8803,Someone rushes over as someone emerges. Someone,Someone rushes over as someone emerges.,Someone,gold,falls face down on the table and haggard.,hurries back to the plane with someone.,stands at the end of the staircase ladder.,\"nods, turns around and smiles warmly at her.\",1\n19100,lsmdc1014_2012-79071,8806,\"Someone falls along the center aisle. At the plane's controls, someone\",Someone falls along the center aisle.,\"At the plane's controls, someone\",gold,stands with her laptop covered on her armpits.,looks over his shoulder.,wheels the boat recede between front of the sedan.,glares at the board.,1\n19101,lsmdc1014_2012-79071,8805,Someone finds a london tube map. Someone,Someone finds a london tube map.,Someone,gold,follows someone two quick steps.,checks for his clock and puts it down.,\"tosses the white heart over, then sips by a big shot with coffee.\",falls along the center aisle.,3\n19102,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95652,14638,Someone looks at the solid brick wall. He,Someone looks at the solid brick wall.,He,gold,\"aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side.\",moves on to the screen in his side view mirror.,removes a white bronze helmet.,saunters over and lands of a rocky storm.,0\n19103,lsmdc1053_Harry_Potter_and_the_philosophers_stone-95652,14639,\"He aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side. He\",\"He aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side.\",He,gold,takes the ankle for someone.,pushes his trolley on to platform 9 and three - quarters.,\"hesitates through the open door, waiting for his order.\",follows someone as antonio moves past a high stairs.,1\n19104,anetv_lwXIgNoLGhM,2138,We see the people in the woods in paint ball gear. We,We see the people in the woods in paint ball gear.,We,gold,see an empty metal tank.,see the title and tongue out.,see the ladies cutting the teens getting ready to carry off.,see a man playing foosball sports.,0\n19105,anetv_lwXIgNoLGhM,2139,We see an empty metal tank. We,We see an empty metal tank.,We,gold,see a name on a skateboard in the door.,see the people in the woods again.,see a track on the screen.,see the pink opening screen.,1\n19106,anetv_lwXIgNoLGhM,2135,We see people in a field holding flags. We,We see people in a field holding flags.,We,gold,see a child looking in the middle of the room clapping.,see a girl sitting on a blue mat on the left and the man charges and slap the boy.,see people playing paintball in the woods.,see the ladies perform arm wrestling and a man in a red coat talks to another lady.,2\n19107,anetv_lwXIgNoLGhM,2136,We see people playing paintball in the woods. We,We see people playing paintball in the woods.,We,gold,see people in lines like soldiers.,see them flying in the dirt.,see a yellow handle getting ready.,see people riding horses in an arena.,0\n19108,anetv_lwXIgNoLGhM,2137,We see people in lines like soldiers. We,We see people in lines like soldiers.,We,gold,juggling rifles almost rounds the corner of the building.,\"they are throwing, man at the base of the mound also looks up to hit the man.\",see the people in the woods in paint ball gear.,see a car asking a man and a friend wearing a ring.,2\n19109,anetv_3UOWHwwxczI,6277,A man is seen speaking to the camera and leads into clips of him climbing along a wall. The man,A man is seen speaking to the camera and leads into clips of him climbing along a wall.,The man,gold,walks quickly along the grass while the camera pans around and shows shots of people working out.,continues speaking to the camera and showing the end of her cigarette.,continues to ride around back and fourth while others watch on the side.,continues climbing along the rock wall and ends by looking back to the camera.,3\n19110,lsmdc1001_Flight-71891,18584,Someone sits on the bed. She,Someone sits on the bed.,She,gold,rides among the texts from a family.,eyes green from her.,ends a call and continues packing her things in the bedroom.,stands forward and begins with dresses.,2\n19111,anetv_whJ6ESGNoyY,8081,There is someone walking two small dogs on the pavement. The dogs,There is someone walking two small dogs on the pavement.,The dogs,gold,approaches with their dogs.,cut up and begin cleaning dogs with a leaf dog.,walk into the grass to bark at something and keep walking.,play and the judge gives the boy money.,2\n19112,anetv_whJ6ESGNoyY,8083,\"While they're walking, they bump their heads together. The woman walking them\",\"While they're walking, they bump their heads together.\",The woman walking them,gold,pulls down chocolate table of red lights.,tries to get the out of the grass.,runs and picks supplies.,\"ends, leaving someone alone in his room.\",1\n19113,anetv_whJ6ESGNoyY,13891,Two dogs are walking on leashes on a trail. A woman,Two dogs are walking on leashes on a trail.,A woman,gold,is walking next to them holding their leashes.,is walking out of the stands outside a building.,walks over to the hummer and drives.,is sitting in a nearby pot.,0\n19114,anetv_whJ6ESGNoyY,8082,\"The dogs walk into the grass to bark at something and keep walking. While they're walking, they\",The dogs walk into the grass to bark at something and keep walking.,\"While they're walking, they\",gold,bump their heads together.,have the fence following behind them.,are watching a log talking.,bejeweled disbelievingly and put it back on the table.,0\n19115,anetv_whJ6ESGNoyY,13892,A woman is walking next to them holding their leashes. They,A woman is walking next to them holding their leashes.,They,gold,are getting ready to slide down a snowy slope.,pour puddles in the water.,walk next to a trash can in the grass.,draw the snow into an enclosed green field.,2\n19116,anetv_JHHHuKeA-WQ,2836,A man spins a blindfold woman holding a stick who is on front a pinata. A man,A man spins a blindfold woman holding a stick who is on front a pinata.,A man,gold,takes picture to the blindfold woman.,\"holds up a person that becomes only four legs, and starts whining like kids.\",is shown throwing off the other side of the table.,\"walks behind the men, play a set of drums and then begins to play the drums.\",0\n19117,anetv_JHHHuKeA-WQ,2839,\"Unexpectedly, the body of the pinata falls while the head is still hung. After, the girl hit the head of the pinata, then she\",\"Unexpectedly, the body of the pinata falls while the head is still hung.\",\"After, the girl hit the head of the pinata, then she\",gold,went back into the swing.,takes off the cloth on his eyes and hit the pinata on the floor.,danced on the ground.,receives a ball for the little boy.,1\n19118,anetv_JHHHuKeA-WQ,2838,\"The girl try to hit the pinata that is moving around without success. Unexpectedly, the body of the pinata\",The girl try to hit the pinata that is moving around without success.,\"Unexpectedly, the body of the pinata\",gold,is seen in the corner of the room.,spins itself over and over to two other girls.,come around and ripped the pinata.,falls while the head is still hung.,3\n19119,anetv_JHHHuKeA-WQ,2837,A man takes picture to the blindfold woman. The girl,A man takes picture to the blindfold woman.,The girl,gold,picks up an ice cream and eats it.,try to hit the pinata that is moving around without success.,sits up and begins to dance.,finishes her fiddle with her doll.,1\n19120,anetv_JHHHuKeA-WQ,6659,She moves around to disorient herself. She then,She moves around to disorient herself.,She then,gold,picks out the material and starts working out.,\"swings the stick, trying to hit a pinata that gets pulled out of her way.\",offers it a beer.,grabs the iron off a hanger and throws it onto the board.,1\n19121,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9141,People stride through Orthanc toward a stone plinth on which a sphere like shape is draped with a cloth. Someone,People stride through Orthanc toward a stone plinth on which a sphere like shape is draped with a cloth.,Someone,gold,fires at the inn.,wears a mirthfully with green capes.,is on the lapel.,lifts the cloth to reveal the palantir.,3\n19122,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9143,Someone sits upon his throne. Someone,Someone sits upon his throne.,Someone,gold,leans over the rail and plants a tender kiss on his lips.,\"stretches his arm out, stands up, and strikes a pose before the picture.\",is putting dinner in a pot.,backs away and turns to run to the door.,3\n19123,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9142,Someone lifts the cloth to reveal the Palantir. Someone,Someone lifts the cloth to reveal the Palantir.,Someone,gold,remain asleep as someone rolls over to see at the animal where someone was lying just and lies awake.,sits upon his throne.,watches someone as the memory resumes.,yanks the bottle close to the female manager.,1\n19124,anetv_zDBpa2miW8A,18287,A man walks out wearing funny attire and showing off to the camera with a lawn mower. The man then,A man walks out wearing funny attire and showing off to the camera with a lawn mower.,The man then,gold,walks around and blows the leaves off still wearing the funny outfit.,leaves the mower and places his hands on.,begins hitting the birdie around until it is done.,goes down the lawn.,0\n19125,anetv_zDBpa2miW8A,18286,An intro starts entitled how to cut the grass. A man,An intro starts entitled how to cut the grass.,A man,gold,puts a handful of potatoes onto the table.,gives the trimmer to fence on the side.,walks out wearing funny attire and showing off to the camera with a lawn mower.,began cutting the grass using an electric blower.,2\n19126,lsmdc1026_Legion-5559,17319,\"Someone glances down at someone, who is crouched low, leaning against a ledge. Someone\",\"Someone glances down at someone, who is crouched low, leaning against a ledge.\",Someone,gold,looks around at someone.,\"follows someone through the glass, smoking a cigarette.\",defensively taps on his bonds and points to an opposing number.,pulls a plastic case over its rim.,0\n19127,lsmdc1026_Legion-5559,17317,\"Outside, intermittent bright flashes illuminate the horizon. Someone\",\"Outside, intermittent bright flashes illuminate the horizon.\",Someone,gold,stands alone in the tiny cave.,is on the roof with someone.,checks out the wedding ring.,walking down a medieval staircase.,1\n19128,lsmdc1026_Legion-5559,17318,Someone is on the roof with someone. Someone,Someone is on the roof with someone.,Someone,gold,is looking out of the windows watching the race.,\"glances down at someone, who is crouched low, leaning against a ledge.\",\", with an nco, is silhouetted and engrossed in his sleep.\",'s head dangles from his shadows on the stairs.,1\n19129,lsmdc3089_XMEN_FIRST_CLASS-43353,1560,Someone's face falls and he glances away. She,Someone's face falls and he glances away.,She,gold,puts her fingers and counts the document.,gives a nod and say goodbye.,smiles towards her table.,stares into his eye.,3\n19130,lsmdc3089_XMEN_FIRST_CLASS-43353,1559,\"He taps the syringe's barrel, then prepares to inject. He\",\"He taps the syringe's barrel, then prepares to inject.\",He,gold,throws the knife correctly.,gets out of bed.,gives her a puzzled look.,sits on top of the stove.,2\n19131,lsmdc3089_XMEN_FIRST_CLASS-43353,1557,\"Grinning, someone opens it and finds two syringes with needles inside. Someone\",\"Grinning, someone opens it and finds two syringes with needles inside.\",Someone,gold,collects another note from the barrel and sets it down.,reaches for someone's crotch.,sits across from her.,pauses outside in their driver's seat.,2\n19132,lsmdc3089_XMEN_FIRST_CLASS-43353,1561,\"She averts her outraged gaze. Holding up the shot, he\",She averts her outraged gaze.,\"Holding up the shot, he\",gold,\"gives a firm nod, then stands and heads out of the room.\",\"sets down poles, bumping into some boulder undergrowth.\",steps up and follows her feet.,\"stands up onto an elevated platform, shifting as he launches himself onto his feet then marches out on the set.\",0\n19133,lsmdc3089_XMEN_FIRST_CLASS-43353,1558,Someone sits across from her. Someone,Someone sits across from her.,Someone,gold,is stiffly next to the newspaper.,holds up a bottle of gryffindor.,whips down her golf.,stares with a conflicted gaze.,3\n19134,anetv_lHy_OZ8GygM,2530,\"The woman cuts the hair of a young man using first a machine, and then a comb and scissors. Then, the woman\",\"The woman cuts the hair of a young man using first a machine, and then a comb and scissors.\",\"Then, the woman\",gold,put a stencil on the polish and begins to pick up the leaves and using her hands.,wets the pacifier and puts her hair near the man's dryer.,demonstrates how the rake with the hair of the dog.,dry the hair with a dryer and brush the head.,3\n19135,anetv_lHy_OZ8GygM,2531,\"Then, the woman dry the hair with a dryer and brush the head. After, the woman\",\"Then, the woman dry the hair with a dryer and brush the head.\",\"After, the woman\",gold,put the ribbon on the cloth and adds the final look to the man's stern head or brush.,puts the leaves in a glass and put the hair on the scarf and moisturizer the hair into a healthy pile.,takes cream on her hands and comb the head of the man with her fingers to gives form to the hair.,makes the braid and puts on the seafood.,2\n19136,anetv_lHy_OZ8GygM,2529,\"A woman wash the head of a man and cuts his hair, then the woman stands next two man an touch the head of the young man. The woman\",\"A woman wash the head of a man and cuts his hair, then the woman stands next two man an touch the head of the young man.\",The woman,gold,removes shaving gel from his skin to see multiple fingernail tires on her leg.,puts cream on the neck of his hair to make the two curlers put their glasses and tie them.,starts cutting past the living room and down a living room to another man working with curlers.,\"cuts the hair of a young man using first a machine, and then a comb and scissors.\",3\n19137,anetv_biyf6Q-xF0M,13099,The man then unloads more pumpkins from a truck. the man then,The man then unloads more pumpkins from a truck.,the man then,gold,carves the pumpkins and puts them on display.,adjusts the washer and adjusts the handle.,carves an object with a tool and shows a tree covered with a paintbrush.,begins swimming with other skiers.,0\n19138,anetv_biyf6Q-xF0M,13098,A man is standing over a row of pumpkins. the man then,A man is standing over a row of pumpkins.,the man then,gold,begins mowing the lawn.,begins painting the three piece of wood together.,washes them in handing the wooden board a brush.,unloads more pumpkins from a truck.,3\n19139,anetv_biyf6Q-xF0M,5025,\"A woman talks about him as he carves the pumpkins and people watch. At the end, a pumpkin with the words we miss you edgar\",A woman talks about him as he carves the pumpkins and people watch.,\"At the end, a pumpkin with the words we miss you edgar\",gold,use before then create a design on a brick wall.,\"are shown, indicating the man had passed away.\",is talking to the camera in a red court and a man wearing a t shirt who is cutting the red tams.,see the examined light on polishes are shown.,1\n19140,anetv_biyf6Q-xF0M,5023,\"There is a building made of bricks, and a man with an array of predecorated pumpkins. He\",\"There is a building made of bricks, and a man with an array of predecorated pumpkins.\",He,gold,have a tie all around it.,is also showing professionals with images of video of the very detailed detail.,continue rubbing the pumpkin to the pumpkin.,\"talks to the camera, then is shown handing and stacking the pumpkins for the public.\",3\n19141,anetv_biyf6Q-xF0M,5024,\"He talks to the camera, then is shown handing and stacking the pumpkins for the public. A woman\",\"He talks to the camera, then is shown handing and stacking the pumpkins for the public.\",A woman,gold,looks over at all the criquet clear paint on the quad.,gets to the end of the box with the items on someone's lap and scratches the left.,talks about him as he carves the pumpkins and people watch.,walks across the room while adjusting her bike.,2\n19142,anetv_zc7_D9RiOY0,11006,A scuba diver is under the water wearing oxygen in he mouth. The diver,A scuba diver is under the water wearing oxygen in he mouth.,The diver,gold,talks to the goers from the workout in slow motion.,begins snowboarding along a red hill with a boy doing a jump in the water.,\"is holding his eye mask, and put it on.\",flips an individual in s rear view backwards.,2\n19143,anetv_o8qR72Ymru8,15328,A close up of trees are shown followed by a person kicking leaves and laying down objects. A man,A close up of trees are shown followed by a person kicking leaves and laying down objects.,A man,gold,\"is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire.\",\"is then shown raking leaves in the yard, then continues skateboarding around an area of grass.\",is seen speaking to the camera in a pile of shots bowling into a pile of balls while gets off to work them.,brushes the cat's nails followed by clips of the tattoo and pictures of them on various cats and nail drawers.,0\n19144,anetv_o8qR72Ymru8,15330,The man has trouble lighting the fire when another person comes in and also attempts to light a fire. The men,The man has trouble lighting the fire when another person comes in and also attempts to light a fire.,The men,gold,continue trying and eventually get the fire going with another boy walking into frame and leaving unimpressed.,continue to play the sand plant quickly as well as separate them from another shot.,begin to move in the same pit while their patients are moving.,play several logs in the road throwing the tray while ending the bow up and smiling.,0\n19145,anetv_o8qR72Ymru8,15329,\"A man is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire. The man\",\"A man is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire.\",The man,gold,is seen looking out the window again.,shows the it individually how to put a wax seal on the end and the person applies it into a protective container.,has trouble lighting the fire when another person comes in and also attempts to light a fire.,\"then cleans a person holding doors and a pool of red all past several men, and they begin playing outdoor against one another.\",2\n19146,anetv_o8qR72Ymru8,10931,The boy begins kicking leaves. the boy,The boy begins kicking leaves.,the boy,gold,continues to gaze on the floor.,then warms his hands and builds a tent.,falls back and tries on the ground.,walk on the boy and continue to scurry away.,1\n19147,anetv_HwRiUpC5mf4,1469,A family stands around a sitting camel while the little boy pats his head. The camel,A family stands around a sitting camel while the little boy pats his head.,The camel,gold,blows away with a frown.,continues cleaning clothes while banging with a wooden camel in front of him.,stands up and walks off with the family riding on its back.,rides another camel around the camel.,2\n19148,anetv_HwRiUpC5mf4,9303,There are 3 people in the desert. a boy,There are 3 people in the desert.,a boy,gold,is doing tricks in a large sand pit while people watch the surf.,is shown petting the camel.,runs on top of a tree in a green grassy field.,holding a mace is seen squeezing some nuts and swinging on the front seat.,1\n19149,anetv_HwRiUpC5mf4,1470,A group of military men riding horses in a line approaches. A young boys,A group of military men riding horses in a line approaches.,A young boys,gold,filters sand in his hand.,rakes out of a wooden fence as others speedily shoot their single fenced in the distance.,face a shot in the blue back and smaller an object.,catch across the sidewalk.,0\n19150,anetv_HwRiUpC5mf4,9304,A boy is shown petting the camel. There,A boy is shown petting the camel.,There,gold,shots are shown of frisbees and a patch.,are around the people that are riding along the bench.,is there fax broadcast on a screen.,is also a mother holding her child while standing next to the camel.,3\n19151,anetv_HwRiUpC5mf4,9305,There is also a mother holding her child while standing next to the camel. Two people are riding the camel and someone,There is also a mother holding her child while standing next to the camel.,Two people are riding the camel and someone,gold,knit magazines appears on the side.,is in front guiding the camel by holding the rope.,returns to the camera winks at the camera.,gets to her feet.,1\n19152,anetv_HwRiUpC5mf4,1472,The video is reversed showing the horses and camel walking backward. The camel sits and the people,The video is reversed showing the horses and camel walking backward.,The camel sits and the people,gold,are suddenly journey towards the docks.,go off the camel with the kids.,get off his back.,ride off together in the tub.,2\n19153,anetv_HwRiUpC5mf4,1468,A camel ride - desrt of doha - Qatar is shown on screen. A family,A camel ride - desrt of doha - Qatar is shown on screen.,A family,gold,is walking in a kitchen park doing a bungee jump at the hut.,walks past a packed skis where people are performing in a shallow event.,stands around a sitting camel while the little boy pats his head.,is standing in the woods wearing rafting gear for sea climbing.,2\n19154,anetv_HwRiUpC5mf4,1471,A young boys filters sand in his hand. The video,A young boys filters sand in his hand.,The video,gold,shows instant trophies being played.,is being mowed and waves in the distance.,begin with people walking on stilts as other teammates play nearby.,is reversed showing the horses and camel walking backward.,3\n19155,anetv_FkWlzk8CrxA,13557,A woman in a white shirt is talking to the camera. A man and the woman,A woman in a white shirt is talking to the camera.,A man and the woman,gold,start to dance together.,are playing in a restaurant.,are playing a game of ice hockey.,are standing outside a square.,0\n19156,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92698,3643,A boy with very fair hair tears a page from a book. He,A boy with very fair hair tears a page from a book.,He,gold,passes through dozens of blank pages.,steps in front of someone.,wears a look of shock.,yanks his hand up.,1\n19157,lsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92698,3642,They head for the door. A boy with very fair hair,They head for the door.,A boy with very fair hair,gold,\"quickens his teeth, sees someone, smiles at her, and steps backwards.\",is hunched and telling him to do.,\"passes someone, but then hauling mass pictures fells her.\",tears a page from a book.,3\n19158,anetv_FOlMVTmAeaQ,16250,\"A male athlete is shown and he spins around and throws the discus. Once complete, two people\",A male athlete is shown and he spins around and throws the discus.,\"Once complete, two people\",gold,watch and dance for their previous position.,rush out to measure the distance.,are shown introducing the wrestling match.,throw down an orange ball while other people are watching leave.,1\n19159,anetv_FOlMVTmAeaQ,16251,\"Once complete, two people rush out to measure the distance. The sequence is then continued and other men\",\"Once complete, two people rush out to measure the distance.\",The sequence is then continued and other men,gold,demonstrate stepping for their purpose.,are shown throwing the discus.,make their final jump into the forest.,reach towards the finish line.,1\n19160,anetv_8cbHNUbu3Tk,11439,A woman is dancing on a court. She,A woman is dancing on a court.,She,gold,then shows off a pin.,picks up a iron and pans it to the girl who tie her shoes in the end.,is throwing several batons in the air.,is holding and doing balance on a rope.,2\n19161,anetv_8cbHNUbu3Tk,11440,She is throwing several batons in the air. She,She is throwing several batons in the air.,She,gold,drops her baton before throwing a baton into the air.,celebrates her pace as they jump into the water.,falls off and lands in a mat of sand.,drops the batons and does flips on the ground.,3\n19162,anetv_8cbHNUbu3Tk,13506,She begins dancing on the floor. She,She begins dancing on the floor.,She,gold,spins batons around as she dances.,continues to play using the hula hoop while moving her hands in circles.,walks wearing a bow while standing ready.,walks back to the camera.,0\n19163,anetv_8cbHNUbu3Tk,13507,She spins batons around as she dances. She,She spins batons around as she dances.,She,gold,is shown running on the field up her steps.,continues running while playing with her baton.,does a cart wheel on the ground.,\"gets closer to her, who also tosses the baton.\",2\n19164,anetv_8cbHNUbu3Tk,13505,A woman is standing in a gym. She,A woman is standing in a gym.,She,gold,is sharpening a knife and sharpening the sharpener.,takes off and pins herself in the same position.,begins dancing on the floor.,starts jumping up and down on a parallel bar.,2\n19165,anetv_HxJnPUqF9i8,5164,The man throws a weighted ball. Athletes,The man throws a weighted ball.,Athletes,gold,train in a gym doing throwing motions on weighted cable machines.,play brazilian in the competition.,blow up the tile.,jump onto the stands and make more jumps.,0\n19166,anetv_rVqeQ9D7EWo,5930,He begins to shovel snow in front of the trailer. He,He begins to shovel snow in front of the trailer.,He,gold,puts the snow shovel in the snow and continues talking.,is snowboarding on a sidewalk.,\"sprays the fence, takes a final time, and continues with the snow.\",throws the strip on the sign and leaves.,0\n19167,anetv_rVqeQ9D7EWo,5929,A man is standing outside a trailer. He,A man is standing outside a trailer.,He,gold,begins to shovel snow in front of the trailer.,is wiping a car with a pressure washer.,is laying down shorts on sidewalks on a platform.,\"uses tools to catch a tire, then takes the tire off the floor.\",0\n19168,lsmdc0028_The_Crying_Game-63239,6658,He can see her blond head vanishing among the fields. He,He can see her blond head vanishing among the fields.,He,gold,is the last of them able to approach professor's lips.,\"goes over to someone, who pulls out a bloody bow and starts to trudge away from the advancing circling.\",looks up and sees a group of men around him.,sees her back then shoots for tools to hide.,2\n19169,lsmdc3016_CHASING_MAVERICKS-6402,5780,Someone shifts his weight anxiously and someone stares. They both,Someone shifts his weight anxiously and someone stares.,They both,gold,stare slack - jawed.,get to their feet.,take seats at the table.,look at their sleeping companions.,2\n19170,lsmdc3016_CHASING_MAVERICKS-6402,5778,They hurry out of the room to find someone holding the baby. Someone,They hurry out of the room to find someone holding the baby.,Someone,gold,\"kisses someone, and kisses her.\",opens the front door.,picks up the baby and does it.,hands baby to her.,3\n19171,lsmdc3016_CHASING_MAVERICKS-6402,5776,\"Rubbing his arms, she lovingly gazes into his eyes. She\",\"Rubbing his arms, she lovingly gazes into his eyes.\",She,gold,glances toward the kitchen.,hands stare solemnly at someone.,\"sobs glinting on their clambering, two children, their family from a family tree.\",scoots toward the floor.,0\n19172,lsmdc3016_CHASING_MAVERICKS-6402,5777,She glances toward the kitchen. They,She glances toward the kitchen.,They,gold,open the refrigerator and takes a bite.,stagger back from the boat.,buy a restaurant.,hurry out of the room to find someone holding the baby.,3\n19173,lsmdc3088_WHATS_YOUR_NUMBER-42424,10015,The father looks from him to someone. Mr. Darling,The father looks from him to someone.,Mr. Darling,gold,swings his arm at someone.,sits on someone's face.,gazes wistfully after his daughter.,shines down his right eye.,2\n19174,lsmdc3088_WHATS_YOUR_NUMBER-42424,10013,Darling pulls someone into a fatherly embrace and slow dances with her. Someone,Darling pulls someone into a fatherly embrace and slow dances with her.,Someone,gold,accepts a hug and climbs out of bed.,works his way over to them.,stares into the space above.,jogs up two at a time with his lips up over his mouth.,1\n19175,anetv_SI0GumzxYt4,12830,A camera follows around a small boat that is moving along the water as well as landscapes. The camera,A camera follows around a small boat that is moving along the water as well as landscapes.,The camera,gold,zooms in on the boat and shows people riding inside.,pans over a woman standing on a board holding a selfie stick while a couple watches by.,pans back and shows more people riding and close ups of the class.,switches to several clips of the man paddling and pulling on the kayak.,0\n19176,anetv_iN1DEIADG9o,8980,A man trains his dog how to catch frisbees and perform tricks and stunts on a large grass covered field by himself. A man throws a red frisbee at a white and brown dog and the dog,A man trains his dog how to catch frisbees and perform tricks and stunts on a large grass covered field by himself.,A man throws a red frisbee at a white and brown dog and the dog,gold,has stuffed dog on a doing ladder.,jumps over a bull in a yard.,catches it and brings it back.,frisbees for the dog to catch up.,2\n19177,anetv_iN1DEIADG9o,8981,A man throws a red frisbee at a white and brown dog and the dog catches it and brings it back. The man,A man throws a red frisbee at a white and brown dog and the dog catches it and brings it back.,The man,gold,\"throws more frisbees and has the dog run between his legs, jump high and low to catch the frisbee.\",ropes the calf and ties around the calf.,demonstrates how to push a calf on a leash.,strum the dog on the mans side of the dog foil and throws the frisbee.,0\n19178,anetv_iN1DEIADG9o,9089,A man and is dog are seen in a large back yard before several tricks with a frisbee. The two,A man and is dog are seen in a large back yard before several tricks with a frisbee.,The two,gold,men jump and ends by in the end.,continue to get around.,continue to move all around the yard performing various flips and tricks and ends with the man carrying the dog.,then begins performing tricks with the frisbee following the dog.,2\n19179,anetv_FtAQcl1h7O8,6333,People are riding spin bikes in a gym. Two women,People are riding spin bikes in a gym.,Two women,gold,are working out on exercise bikes.,talk about different conflicted and methods of ways they will get love to throw a weight.,\"are in the bathroom, but swerving as people watch.\",are standing on an elliptical bike doing tricks.,0\n19180,anetv_K4cNyYu2LLg,6018,A set of toddler boys are standing up against the wall talking and playing with toothbrushes. They both,A set of toddler boys are standing up against the wall talking and playing with toothbrushes.,They both,gold,begin to brush their teeth ferociously without any toothpaste or water.,take up the ax and begin kicking each other doing leg kicks.,part laughing they have no ones to do anything to make them very happy.,\"is up and run towards each other, trying to grab sticks.\",0\n19181,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26286,4042,\"As someone continues across the lawn, more students pat his back. Blood\",\"As someone continues across the lawn, more students pat his back.\",Blood,gold,on the guy are their bottoms.,wears a shotgun in his uniform.,caked on her shoulder.,holds his father and shoulders.,2\n19182,lsmdc0031_The_Lost_Weekend-65666,2960,The two men stand grinning. He,The two men stand grinning.,He,gold,watches someone enter the room and rocks his brother's arm.,holds his hand back.,carries them to the door.,\"picks up the typewriter, turns and starts walking back.\",3\n19183,lsmdc0031_The_Lost_Weekend-65666,2963,It says five minutes of four. Someone,It says five minutes of four.,Someone,gold,looks at someone pleadingly.,is at the bar.,pours a backup - pane.,takes off their glasses and progresses.,1\n19184,lsmdc0031_The_Lost_Weekend-65666,2965,He and two or three customers are listening to race results on a little radio. Someone,He and two or three customers are listening to race results on a little radio.,Someone,gold,takes a look at the get chili's neck.,rushes over to find someone watching her on the hallway whittling.,\"moves cautiously in the woods, his long ears skeletal.\",\"drags himself in, drenched in sweat, his breath as short and agonized as that of a dying man.\",3\n19185,lsmdc0031_The_Lost_Weekend-65666,2961,\"The camera goes slowly up to a sidewalk clock with a diadem of three balls, which stands outside the hock shop. The time\",\"The camera goes slowly up to a sidewalk clock with a diadem of three balls, which stands outside the hock shop.\",The time,gold,passes to the top of it.,goes to a charming glass window.,comes out of the window.,is twenty minutes of one.,3\n19186,lsmdc0031_The_Lost_Weekend-65666,2962,The time is twenty minutes of one. It,The time is twenty minutes of one.,It,gold,seems surprised with the word for them.,says five minutes of four.,\"reaches the door, and teddy's holding of it.\",collapsed on the ground and watch lazily.,1\n19187,lsmdc0031_The_Lost_Weekend-65666,2964,Someone is at the bar. He and two or three customers,Someone is at the bar.,He and two or three customers,gold,are listening to race results on a little radio.,are in the alley as people hurry into their pivot - living room.,are all wearing black dress.,miss a tall small line of guards.,0\n19188,lsmdc1046_Australia-90722,6364,He gives a tight smile and walks off. She,He gives a tight smile and walks off.,She,gold,strides to the station and hands her phone.,\"moves goodbye to the house, then exits.\",glances at a clock too.,\"hesitates, then wanders through the long grass.\",3\n19189,lsmdc1046_Australia-90722,6363,She smiles and looks downs at the ground. He,She smiles and looks downs at the ground.,He,gold,reluctantly backs away as a couple opens the upper window.,gives a tight smile and walks off.,\"picks the mic up and drinks it, then shakes it around again.\",\"kicks the sailors away, shifting his sober gaze.\",1\n19190,lsmdc1046_Australia-90722,6365,\"She hesitates, then wanders through the long grass. In daylight, a steer\",\"She hesitates, then wanders through the long grass.\",\"In daylight, a steer\",gold,blinks off from the pizza park.,is then killed with two dogs.,lies dead next to a watering hole.,rips a piece of broken handle.,2\n19191,lsmdc1046_Australia-90722,6362,\"He draws near her, and she looks up at him. She\",\"He draws near her, and she looks up at him.\",She,gold,\"nods, and closes the door.\",smiles and looks downs at the ground.,\"leans forward in an embrace, and stares tensely at him.\",saunters off while he pulls her to the window.,1\n19192,anetv_UmU8dx36O9w,17277,A woman is seen sitting in front of the camera and begins putting a contact lens in her eyes. The woman,A woman is seen sitting in front of the camera and begins putting a contact lens in her eyes.,The woman,gold,keeps attempting to put the lens in her eye while looking around trying again.,continues burning a liquid on her nose and moving her hair around on her head and continuing to look down.,then rides the horses through the water while another woman speaks to the camera and leads into another razor shot.,then continues speaking to the camera while holding up her hand and the camera pans all side to a woman around her eye.,0\n19193,anetv_UmU8dx36O9w,17278,The woman keeps attempting to put the lens in her eye while looking around trying again. She,The woman keeps attempting to put the lens in her eye while looking around trying again.,She,gold,talks to the camera and hold up some more tape.,walks up with her makeup while waving hands with the dog.,gets up from the horse and begins cutting various parts of her hair.,succeeds the last time and is seen cheering to the camera.,3\n19194,anetv_5RLeo8LymY4,160,They use paddles to move their kayaks along the water. The pair,They use paddles to move their kayaks along the water.,The pair,gold,\"flips gracefully, then walk around the boat.\",continue pulling the beach while paddling and paddling himself.,\"looks toward each other, as if talking.\",jumps into the water rivers while others watch.,2\n19195,anetv_5RLeo8LymY4,159,A pair is rowing on kayaks down a lazy river stream. They,A pair is rowing on kayaks down a lazy river stream.,They,gold,use paddles to move their kayaks along the water.,have a sudden air hovering over the or the river surface.,are paddling canoes on the boats with their oars.,\"jump from the water and move across the bridge, using their hands.\",0\n19196,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17009,People are now dressed in foul - looking orc gear. People,People are now dressed in foul - looking orc gear.,People,gold,turn east and walk over the summit of cirith ungol into mordor.,are playing drums to new york city.,continues taking boats down a winding river through the rough steadily waters.,bear a badge up over his chest.,0\n19197,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17020,\"Someone looks up sharply at someone. At this, someone\",Someone looks up sharply at someone.,\"At this, someone\",gold,chokes on his pipe.,clutches her head and standing frantically about.,observes from a group of other photos.,sits out on the sidewalk and calls.,0\n19198,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17010,People turn east and walk over the summit of cirith ungol into mordor. 50 miles away - - across the barren gorgoroth plateau - - the mountain,People turn east and walk over the summit of cirith ungol into mordor.,50 miles away - - across the barren gorgoroth plateau - - the mountain,gold,\"track, skiers, orcs assigned groomers are removed.\",\"riders grubby city, packed of english.\",\"is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash.\",has a o. u. army parade together smartly covered in thick weeds.,2\n19199,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17005,Someone pulls the ring from his pocket. Someone,Someone pulls the ring from his pocket.,Someone,gold,looks at someone amazed.,turns toward the sorting powder at his thighs and looks over until it dissolves with pouring soldiers.,unbuckles his belt and runs straight over his.,drives his bat away.,0\n19200,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17011,\"50 miles away - - across the barren gorgoroth plateau - - the mountain is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash. With immense trepidation, people\",\"50 miles away - - across the barren gorgoroth plateau - - the mountain is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash.\",\"With immense trepidation, people\",gold,pass someone knelled over and over over cliffs.,head down the steep path into the dark kingdom.,shake their heads in with their trays of food.,look stony and wizened in the giant at sea.,1\n19201,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17013,Before them lies the plain of gorgoroth. Their eyes,Before them lies the plain of gorgoroth.,Their eyes,gold,are drawn to the ominous silhouette of mount doom.,\"locked tightly, and its head almost looms face becomes a lost color.\",grow listless as to eat from their invisible skin.,linger out from the print similar to a woman's.,0\n19202,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17012,\"With immense trepidation, people head down the steep path into the dark kingdom. Before them\",\"With immense trepidation, people head down the steep path into the dark kingdom.\",Before them,gold,\"reaches for the other sustained, as the driven approaches, a disappear from flowers into the truck.\",lies the plain of gorgoroth.,\"can respond, all of the well - trees moved away.\",\", someone hands sharpening some keys.\",1\n19203,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17002,Someone runs into the tower. Someone,Someone runs into the tower.,Someone,gold,\"lies on his knee, his wrists held loosely behind his back.\",\"grabs someone's hair and pulls his head back, exposing his neck.\",\"runs down the stairwell and races toward the classroom below, halfway down.\",receives a torn package from a man beside him.,1\n19204,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17006,He puts the ring back around his neck. Someone,He puts the ring back around his neck.,Someone,gold,reaches down and seizes the gun.,walks away from his dog.,\"looks at someone, pain in his eyes.\",drops his head and clasps his hands.,2\n19205,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17003,\"Someone grabs someone's hair and pulls his head back, exposing his neck. He\",\"Someone grabs someone's hair and pulls his head back, exposing his neck.\",He,gold,is overcome with grief as it falls from his grasp.,opens the front door and closes the door behind him.,\"pulls out his sword, ready to cut someone's throat.\",leans in and kisses her hand.,2\n19206,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17018,Someone stands in the tower hall. He,Someone stands in the tower hall.,He,gold,puts his hand on the clock on his lap.,\"steps to a glass cooler, opens it and looks down to the roof where the lights are building.\",\"walks down a protective walkway, into the destroyer and steps up the side of the transparent tower.\",turns and crosses the hall to reveal the presence of people.,3\n19207,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17014,Someone's eyes travel down towards the hundreds of fires which glow on the plains beneath them thousands upon thousands of orcs are encamped there. Their eyes,Someone's eyes travel down towards the hundreds of fires which glow on the plains beneath them thousands upon thousands of orcs are encamped there.,Their eyes,gold,are parted and bony as they claw their way inside.,are desperately down as they talk horizontally.,are drawn to a dark looming shape.,fill with horror as everyone panels pirouettes with life.,2\n19208,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17015,Their eyes are drawn to a dark looming shape. A red light,Their eyes are drawn to a dark looming shape.,A red light,gold,seems to sweep across the plain.,from another bush almost disappears.,holds out her hand.,lays on someone's clock.,0\n19209,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17007,\"Someone looks at someone, pain in his eyes. Someone\",\"Someone looks at someone, pain in his eyes.\",Someone,gold,\"listens, smirking to sobs.\",slams his eyes shut.,looks down at someone.,leans in against his shoulder as he casts the buzz.,2\n19210,lsmdc1015_27_Dresses-79616,17372,\"As someone comes hazily to, the dark - haired guy is looking down at her. She\",\"As someone comes hazily to, the dark - haired guy is looking down at her.\",She,gold,blinks up at him and touches a hand to her sore head as two other guests arrive.,takes a deep breath and walks it over towards her.,\"moves beside her, slightly pinned to her lipstick in the corner.\",\"is inevitable open - featured someone, includes the pale red lips toward his pockets.\",0\n19211,lsmdc0031_The_Lost_Weekend-65709,2009,However he manages to make the swinging glass door. Along the walls,However he manages to make the swinging glass door.,Along the walls,gold,of the bedroom he sprays himself in.,are benches and a collection of wheel - chairs.,is a wooden pedestal which begins to crumble.,\"is someone, another giant six - foot building.\",1\n19212,lsmdc0031_The_Lost_Weekend-65709,2014,\"Someone tries to take advantage of the opening of the door to get out, but the guard pulls him by the arm, while the entering nurse locks the door with his own key. Someone\",\"Someone tries to take advantage of the opening of the door to get out, but the guard pulls him by the arm, while the entering nurse locks the door with his own key.\",Someone,gold,stops his chopper's steel detector with his fingers flat on the wheel.,\"turns, at the bend of the corridor stands someone, with a tumbler of medicine in his hand.\",takes his rube in the oven and hurries off down the alley.,flies up to the empty window as its sails off.,1\n19213,lsmdc0031_The_Lost_Weekend-65709,2007,He is wearing flannel pajamas like all the rest of the patients. Someone,He is wearing flannel pajamas like all the rest of the patients.,Someone,gold,admires a rolled - up photo of his collar.,\"stands quietly watching him, a great big grin on his face.\",sits in an easy chair.,stands a few inches apart looking him up and down.,1\n19214,lsmdc0031_The_Lost_Weekend-65709,2013,\"At this moment the door is opened by another male nurse, carrying a pile of clean sheets and pillow cases. Someone tries to take advantage of the opening of the door to get out, but the guard\",\"At this moment the door is opened by another male nurse, carrying a pile of clean sheets and pillow cases.\",\"Someone tries to take advantage of the opening of the door to get out, but the guard\",gold,dressed in european clothes comes out of his room and peers down at us.,makes a round - step and shoves him repeatedly back under.,\"pulls him by the arm, while the entering nurse locks the door with his own key.\",doodles in the desks and peeps into it.,2\n19215,lsmdc0031_The_Lost_Weekend-65709,2010,\"They wear terry - cloth bathrobes over their pajamas, canvas slippers on their feet. In the listless, burned - out collection, someone\",\"They wear terry - cloth bathrobes over their pajamas, canvas slippers on their feet.\",\"In the listless, burned - out collection, someone\",gold,takes in his notebook and bible.,is the only person who moves with purpose.,looks in on her daughter and sad eyes.,plastered her eyes on her son lying in the hotel room.,1\n19216,lsmdc0031_The_Lost_Weekend-65709,2012,\"Someone goes to the door, tries to open it. At this moment the door\",\"Someone goes to the door, tries to open it.\",At this moment the door,gold,\"is opened by another male nurse, carrying a pile of clean sheets and pillow cases.\",swings open and is fitted in.,\"stops, but someone pushes his way through the double doors into the corridor.\",rolls onto the floor.,0\n19217,lsmdc0031_The_Lost_Weekend-65709,2011,\"He goes around the bend of the ell and there is the door, a heavy wooden one with a grated peep - hole and beside it a uniformed guard. Someone\",\"He goes around the bend of the ell and there is the door, a heavy wooden one with a grated peep - hole and beside it a uniformed guard.\",Someone,gold,turns to the boys past the kitchen front door.,\"runs down the street, carrying a bouquet of flowers, comes down the stairs and stops.\",glares down from boston research course.,\"goes to the door, tries to open it.\",3\n19218,lsmdc0031_The_Lost_Weekend-65709,2008,\"Someone stands quietly watching him, a great big grin on his face. However he\",\"Someone stands quietly watching him, a great big grin on his face.\",However he,gold,\"looks at him the moment, he hits the door.\",manages to make the swinging glass door.,\"is now gone, replies.\",dips his hand into someone's mouth.,1\n19219,lsmdc3057_ROBIN_HOOD-27366,18021,He dashes towards the stocks. Someone,He dashes towards the stocks.,Someone,gold,spins circles on a huge wave.,cuts the dead man's clothes.,\"hammers pegs out of the stocks, freeing the man.\",stops waiting for his reaction.,2\n19220,lsmdc3057_ROBIN_HOOD-27366,18020,\"Someone stares slack jawed, then turns and breaks into a run. He\",\"Someone stares slack jawed, then turns and breaks into a run.\",He,gold,folds up the cabinet.,grabs the smiling soldier.,dashes towards the stocks.,grins up at his father.,2\n19221,lsmdc3057_ROBIN_HOOD-27366,18019,Someone mournfully bows his head. Someone,Someone mournfully bows his head.,Someone,gold,looks up in surprise.,\"stares slack jawed, then turns and breaks into a run.\",gives an uncertain nod and glares.,rolls his eyes and checks the diary.,1\n19222,anetv_LNK_yYs6UOA,19514,A man walks into a circle on a field. He,A man walks into a circle on a field.,He,gold,spins the boy over the net.,lifts the ax to the head of the tree.,shoots a number inside a ring.,spins while holding a disc.,3\n19223,anetv_LNK_yYs6UOA,19515,He spins while holding a disc. He,He spins while holding a disc.,He,gold,puts it in his hands and put the stick into hand.,staggers into the platform as the band claps.,jumps off and lands in the air on the skateboard.,\"lets go of the disc, letting it fly through the air.\",3\n19224,anetv_zxzBoK5t0XY,7678,A horse is seen off in the distance followed by a man speaking to the camera in front of a large group of horses. Various people,A horse is seen off in the distance followed by a man speaking to the camera in front of a large group of horses.,Various people,gold,are then seen riding around on horses through different landscapes and being led by people.,are then shown laying in the grass while others watches on the side.,are then seen celebrating with one another as well as hitting a stick with them at the end.,are seen running around the wooded area and leads into the blindfolded man speaking to the camera.,0\n19225,anetv_zxzBoK5t0XY,7679,Various people are then seen riding around on horses through different landscapes and being led by people. The men,Various people are then seen riding around on horses through different landscapes and being led by people.,The men,gold,continue their way along the streets: waterfalls and choppy water.,continue kayaking and jump boarding after their long boarding to the lift.,continue to lead people around on the horses through a large body of water.,continue moving around the boat and ends by looking at the camera.,2\n19226,anetv_J6ScF5n_Cug,10367,A young girl plays the clarinet. The girl,A young girl plays the clarinet.,The girl,gold,\"starts the flute again, still tapping.\",pauses for a second to flip her music sheet standing in front of her.,wanders in front of the man.,completes another blow and still plays the instrument.,1\n19227,anetv_J6ScF5n_Cug,10369,The young girl resumes playing her clarinet. The girl,The young girl resumes playing her clarinet.,The girl,gold,finally pulls her violin to be uniform on her performance.,exercise as some girl.,stops and looking pleased with her performance.,is being interviewed by the gymnast audience.,2\n19228,anetv_J6ScF5n_Cug,10368,The girl pauses for a second to flip her music sheet standing in front of her. The young girl,The girl pauses for a second to flip her music sheet standing in front of her.,The young girl,gold,resumes playing her clarinet.,puts her hand off of her hair like a cat.,performs karate flips.,\"marches into the stage, introduces herself.\",0\n19229,anetv_MmYNcmba_Ps,3355,An athlete is seen walking forward while shaking her arms and legs around and adjusting her swim suit. The girl,An athlete is seen walking forward while shaking her arms and legs around and adjusting her swim suit.,The girl,gold,grabs a pink sweater from around the area and then begins running the choreographed swipes and throwing one over at a time.,does flips off the bar while jumping up and down with the girl adding water to her face.,bends forward and performs a dive into the pool while the camera pans back to a scoreboard.,continues to play quickly and end by looking up and pointing to the camera and her walking backwards.,2\n19230,anetv_oj6czGQ830c,1427,A groups men and woman dressed in cold water diving gear arrive in a van. The divers,A groups men and woman dressed in cold water diving gear arrive in a van.,The divers,gold,dive from the high beam in the base of the kite.,\"move faster and faster down the banks, deeper into the water and to their personal stills.\",march in single file on a dock to the water and pose with their diving gear on.,walk adjacent to the sea terrace and sail on each other and fall onto a large boat.,2\n19231,anetv_oj6czGQ830c,1428,The divers march in single file on a dock to the water and pose with their diving gear on. The divers,The divers march in single file on a dock to the water and pose with their diving gear on.,The divers,gold,are under water performing different sunken vehicles and playing around and posing.,dive and underwater to jump and dive towards the edge of the pool.,watch after her and does several flips.,dismounts from the beam and dive in.,0\n19232,anetv_oj6czGQ830c,1426,Men and woman posing and smiling at the camera. A groups men and woman dressed in cold water diving gear,Men and woman posing and smiling at the camera.,A groups men and woman dressed in cold water diving gear,gold,and runners arrive in the ballroom.,arrive in a van.,play a game at night.,together in the pool.,1\n19233,anetv_oj6czGQ830c,1429,The divers are under water performing different sunken vehicles and playing around and posing. The divers,The divers are under water performing different sunken vehicles and playing around and posing.,The divers,gold,are featured in some trick photography.,are shown playing soccer while people thumbs the shown and ends with an orchestra afterwards.,start at the back rafts and the beach with water falls after them as the hula.,dive in and enter the kayak as if the raft almost did people in the water.,0\n19234,anetv_buBtMl9SUNk,7230,The diver kneel on the sea floor waving their hands. Manta fish and a big fish,The diver kneel on the sea floor waving their hands.,Manta fish and a big fish,gold,are shot in a pool.,are next to the pool.,run out of the water.,swim in the water.,3\n19235,anetv_buBtMl9SUNk,7229,\"People dive in the water wearing diving suit, small and big fishes swim near the divers. The diver\",\"People dive in the water wearing diving suit, small and big fishes swim near the divers.\",The diver,gold,does not stand upright as the tank continues to surf.,kneel on the sea floor waving their hands.,gets up from the very water pool and is shown off in fast motion.,swim up until the bottom of the diving board and mace.,1\n19236,anetv_buBtMl9SUNk,7231,Manta fish and a big fish swim in the water. The divers,Manta fish and a big fish swim in the water.,The divers,gold,pour and swim in circles.,\"dive through a hole up ahead, then one adjusted to another.\",stands and continue swimming in the water.,\"are shown swimming at a lake, playing against the boat.\",2\n19237,lsmdc1029_Pride_And_Prejudice_Disk_One-83897,17852,\"Later, someone is sitting reading in her room. Someone\",\"Later, someone is sitting reading in her room.\",Someone,gold,places the lighted device onto the telephone holder.,rushes to look out to the window at a carriage that's arrived.,is seated at the table with rows of clusters of pianos.,sits at the coffee table halfway up the aisle.,1\n19238,anetv_8btD4-N4stM,6850,We see scene of a bullfighting with matadors in the ring and see them stabbing the bulls. We,We see scene of a bullfighting with matadors in the ring and see them stabbing the bulls.,We,gold,see the missed boot on the ground.,then see people running with the base in hand.,\", the bull uses an cutter and the leader attaches the bull to the bull, and washes off the bull.\",see images of bloody bulls and carcasses being dragged on the ground.,3\n19239,lsmdc1028_No_Reservations-83127,13612,Someone walks into her apartment with a smile. She,Someone walks into her apartment with a smile.,She,gold,\"peers down the hall, taking in her surroundings.\",talks on her phone.,\"hangs her bag on a hook by the door, drops her keys into the bowl and begins to remove her coat.\",shows the letter drawing and shows a table wedged by a typewriter.,2\n19240,lsmdc1028_No_Reservations-83127,13614,Someone jumps out of the taxi and hurries towards the school. Someone's,Someone jumps out of the taxi and hurries towards the school.,Someone's,gold,mom runs up the stairs.,eyes get closer as they head out of the beach.,father hugs her son.,sitting on the steps.,3\n19241,lsmdc1028_No_Reservations-83127,13611,\"He conducts someone, as she breathes deeply. Someone\",\"He conducts someone, as she breathes deeply.\",Someone,gold,walks into her apartment with a smile.,sits up and smiles.,grabs the ankle blanket.,\"lies on the grass, her back to him.\",0\n19242,lsmdc3090_YOUNG_ADULT-44044,15674,\"Inside, someone rocks her child in a baby seat. Someone\",\"Inside, someone rocks her child in a baby seat.\",Someone,gold,hurriedly grabs her sister and walks towards the party with her thermos wait.,\"stops by the door, cross, walks back into the apartment and continues to slide down the monkey.\",crouches near someone and the baby on the living room floor.,\"solemnly puts his hand on the automaton's arm, then stalks off to the house.\",2\n19243,lsmdc3090_YOUNG_ADULT-44044,15673,\"Someone smiles and furrows her brow. Inside, someone\",Someone smiles and furrows her brow.,\"Inside, someone\",gold,sets a clock down on her therapist's tabletop.,rocks her child in a baby seat.,pins someone against a wall nearby.,sits at a table as she approaches an empty spot.,1\n19244,lsmdc3090_YOUNG_ADULT-44044,15672,Someone shakes someone's hand. Someone,Someone shakes someone's hand.,Someone,gold,gets out of the car and joins someone sitting underneath the bike.,stands in bed next to a flame.,\"stands, look at her.\",smiles and furrows her brow.,3\n19245,lsmdc3090_YOUNG_ADULT-44044,15677,Someone gazes around the room. Someone,Someone gazes around the room.,Someone,gold,\"'s coming from library, flashlights in the air to them then points upwards.\",kicks out the energy from overhead.,taps someone with her foot.,lies in a wheelchair.,2\n19246,lsmdc3090_YOUNG_ADULT-44044,15676,Someone hands a beer to someone and a bottled water to someone. Someone,Someone hands a beer to someone and a bottled water to someone.,Someone,gold,gazes around the room.,carries a bottle to her mouth.,react in foreground with a dashing someone.,sets a door shut behind him and steps out.,0\n19247,anetv_1rf7t4sYtIA,17112,A boy is standing outside his house. He,A boy is standing outside his house.,He,gold,is tapping a gun in his hand.,\"turns on a leaf blower, using it on the driveway.\",is using a lawn mower to have his hair shaved.,picks up tools and puts them on the machine.,1\n19248,anetv_1rf7t4sYtIA,17113,\"He turns on a leaf blower, using it on the driveway. He\",\"He turns on a leaf blower, using it on the driveway.\",He,gold,is lightly blowing leaves on the field as he continues to write.,comes out at work with hose and brushes as he approaches.,\"walks around, blowing around the hedges and driveway.\",starts to mow the lawn with the mower.,2\n19249,anetv_1rf7t4sYtIA,4436,A guy is holding a leaf blower. The guy,A guy is holding a leaf blower.,The guy,gold,walks on the sidewalk with the leaf blower.,is raking the leaves in his yard.,takes the leaf blower.,blows out the smoke.,0\n19250,anetv_1rf7t4sYtIA,4437,The guy walks on the sidewalk with the leaf blower. The guy,The guy walks on the sidewalk with the leaf blower.,The guy,gold,adjusts the position on the mower and turns around.,stops raking and leaves.,picks up the orange cord and moves it.,rakes the mower and moves its lawn mower.,2\n19251,anetv_1rf7t4sYtIA,4438,The guy picks up the orange cord and moves it. The guy,The guy picks up the orange cord and moves it.,The guy,gold,stops in the driveway.,puts his leg up using a wire.,pulls back from the tube.,uses the wheel to remove the handlebars.,0\n19252,anetv_u6FTTLK6GUg,16809,People are playing dodge ball in a gym. They,People are playing dodge ball in a gym.,They,gold,start throwing the balls at each other.,walk around and watch as men play.,hit the ball back and forth.,hit the ball into a net.,0\n19253,anetv_wq4H7L15NMA,8667,A woman pulls on a rowing machine in a gym while others exercise or walk by in the background. The woman,A woman pulls on a rowing machine in a gym while others exercise or walk by in the background.,The woman,gold,continues spins move for the machine a bit as well as jumping up and down.,pulls on the machine a second time.,touches the row of settings on the machine while the vacuum continues.,\"walks on the rowing machine and moves them together, failing to the other twisting, and vacuuming the body.\",1\n19254,anetv_wq4H7L15NMA,8668,The woman pulls on the machine a second time. The woman,The woman pulls on the machine a second time.,The woman,gold,talks to the camera again.,speed downhill without saying anything.,climbs off the bike and throws it in the air.,pulls on the machine a third time.,3\n19255,anetv_wq4H7L15NMA,8669,The woman pulls on the machine a third time. The woman,The woman pulls on the machine a third time.,The woman,gold,helps the camel play to the sitting back on the boat.,\"stops stretching and looks down a few times, then back and stopped.\",pulls on the machine a fourth time.,removes the wheel and screws it from the machine.,2\n19256,anetv_wq4H7L15NMA,17908,A woman is seated on a piece of workout equipment. She,A woman is seated on a piece of workout equipment.,She,gold,uses a long string to pull back and forth.,is in a large room doing exercise exercises in an exercise class.,\"appears onto a stage, holding out the exercise machine for lifting.\",holds a set of boots on a set of exercise machines and flips it down.,0\n19257,anetv_wq4H7L15NMA,8670,The woman pulls on the machine a fourth time. The woman,The woman pulls on the machine a fourth time.,The woman,gold,continues on a stool to show off the body with precise motion.,releases the disk and prepares to help the child.,then begins spraying the sides thoroughly and brushing her hair in the side.,pulls on the machine a fifth time.,3\n19258,anetv_wq4H7L15NMA,17909,She uses a long string to pull back and forth. Her seat,She uses a long string to pull back and forth.,Her seat,gold,\"rides in to a rickshaw of people in the wagon, bearing the flower of the state of friends.\",is testing with a dissatisfied.,slides forward and backward as she pulls.,is given to someone while driving around and paddles a few times.,2\n19259,anetv_1iP5k9jHBRU,10674,\"He pointed the wall and started to spread the brown clay on the wall, she spread it by rubbing it smoothly and in half circle way. He\",\"He pointed the wall and started to spread the brown clay on the wall, she spread it by rubbing it smoothly and in half circle way.\",He,gold,managed to remove the wires and tape and show more tools and then pierce around the walls.,shows how to use the homemade slices to fit under the carpet.,\"went near the ceiling, knocked on the ceiling, pushed it, knocked on it again, smoothen it using his fingers.\",pans back and forth to take the reactor.,2\n19260,lsmdc0010_Frau_Ohne_Gewissen-51095,1499,\"By this time, he has hold of her wrist. He\",\"By this time, he has hold of her wrist.\",He,gold,\"goes down, then clasps his hands behind her head.\",\"gets out of his car, and rides away.\",glances directly at someone.,draws her to him slowly and kisses her.,3\n19261,lsmdc0010_Frau_Ohne_Gewissen-51095,1491,\"He turns away impatiently, paces up and down past a caddy bag with golf clubs in it, pulls one out at random, makes a couple of short swings, throws the club on the couch, paces again. Someone\",\"He turns away impatiently, paces up and down past a caddy bag with golf clubs in it, pulls one out at random, makes a couple of short swings, throws the club on the couch, paces again.\",Someone,gold,\"walks past him, tugs the hat, then examines the photos.\",watches as someone flies up into his air.,see in someone's apartment.,goes to the door and opens it.,3\n19262,lsmdc0010_Frau_Ohne_Gewissen-51095,1494,Someone switches on the standing lamp. She,Someone switches on the standing lamp.,She,gold,\"takes the phone from her bag, but finds her nightstand.\",slides the grate shut and puts it in the someone.,starts to take off her coat.,shifts to reveal features creeping up into the position.,2\n19263,lsmdc0010_Frau_Ohne_Gewissen-51095,1488,\"Someone bangs the front door shut, walks quickly to his car and drives away. The car hop\",\"Someone bangs the front door shut, walks quickly to his car and drives away.\",The car hop,gold,hangs a tray on the door and serves him a bottle of beer.,quickly miserably as someone runs later through the rain as he exits quickly.,across a road to robot.,back up the parking lot.,0\n19264,lsmdc0010_Frau_Ohne_Gewissen-51095,1496,He takes her coat and lays it across the back of a chair. Someone,He takes her coat and lays it across the back of a chair.,Someone,gold,gives a hopeful smile and heads out.,has moved over to the window.,stands on the counter with her hand on someone's head.,covers him fully with her hands and drives.,1\n19265,lsmdc0010_Frau_Ohne_Gewissen-51095,1495,She starts to take off her coat. He,She starts to take off her coat.,He,gold,takes her coat and lays it across the back of a chair.,hands them to someone.,lets someone into the room.,stares at her expectantly.,0\n19266,lsmdc0010_Frau_Ohne_Gewissen-51095,1490,\"The camera pans up the front of the building to the top floor windows, as a little rain starts to fall. Someone\",\"The camera pans up the front of the building to the top floor windows, as a little rain starts to fall.\",Someone,gold,is blown to pieces.,breaks water away from someone's car.,looks up at someone from underneath.,stands by the window with his coat off and his tie loose.,3\n19267,lsmdc0010_Frau_Ohne_Gewissen-51095,1500,Her arms tighten around him. After a moment he,Her arms tighten around him.,After a moment he,gold,takes her counterpart off.,\"tumbles onto the pavement, throwing herself over the terror and fierce waves.\",grabs hers and goes back down the stairs.,\"pulls his head back, still holding her close.\",3\n19268,lsmdc0010_Frau_Ohne_Gewissen-51095,1489,\"It is a six - story building in the Normandie - Wilshire district, with a basement garage. The camera\",\"It is a six - story building in the Normandie - Wilshire district, with a basement garage.\",The camera,gold,drifts directly toward us on a sunken street.,\"fixes, showing tiny lights swirling in the night and smoke drift past the two children parked nearby.\",pans finished to illuminate the column of people lounging with crates and strewn on the ground.,\"pans up the front of the building to the top floor windows, as a little rain starts to fall.\",3\n19269,lsmdc0010_Frau_Ohne_Gewissen-51095,1497,Someone has moved over to the window. She,Someone has moved over to the window.,She,gold,\"looks around, then turns back to someone.\",stares out through the wet window - pane.,eats a morsel as well.,\"sniffs and leans along the ladder, towards him.\",1\n19270,lsmdc0010_Frau_Ohne_Gewissen-51095,1492,Someone just looks at her. She,Someone just looks at her.,She,gold,\"quickly more major fish into the water, holding a large carton close to her.\",does go with a shrug and he starts to key the door again.,\", who's at someone's lingerie, watches as he stares at a picture.\",has nothing in her hands but her bag.,3\n19271,anetv_YzyCFfrX_4I,7061,The person jumps up on a skateboard and grinds a rail. He,The person jumps up on a skateboard and grinds a rail.,He,gold,grinds his way back and walks towards the camera.,repeats on the face.,rides down one side road with cattle and jumps in.,continues to move and ski up as he skis.,0\n19272,anetv_YzyCFfrX_4I,13712,\"Two large houses with nicely manicured lawns are pictured. All of a sudden, a young boy\",Two large houses with nicely manicured lawns are pictured.,\"All of a sudden, a young boy\",gold,is college walking on the path surrounded by obstacles talking to the visitors.,appears and starts skateboarding across the sidewalk that has a basketball goal on it.,are shown playing the violin.,\"moves on a car room, and also an interview for the video.\",1\n19273,anetv_YzyCFfrX_4I,13713,\"All of a sudden, a young boy appears and starts skateboarding across the sidewalk that has a basketball goal on it. He\",\"All of a sudden, a young boy appears and starts skateboarding across the sidewalk that has a basketball goal on it.\",He,gold,comes out with the racket disc and there is a bongo player and some shorts replayed nearly in the video.,runs to man has a chair and is pasting the entire ice - gas shuffleboard back in the dark room.,\"is a little later, holding a mallet and a stick on his arm.\",finally comes back and starts to skateboard across a silver pole on on a bench.,3\n19274,anetv_YzyCFfrX_4I,7060,A close up of a house is seen with a person coming into frame. The person,A close up of a house is seen with a person coming into frame.,The person,gold,scrapes off the lawn and shows off the top.,jumps up on a skateboard and grinds a rail.,continues peeling and pushing the mangos on the walk.,extends the tool all along the roof while covering it.,1\n19275,anetv_PsddM2OmOGo,8618,A woman is standing with a roll of wall paper. the woman then,A woman is standing with a roll of wall paper.,the woman then,gold,pulls the bottle around and starts to put it on the top of a wall.,begins painting the carpet.,begins wrapping the gift paper around.,unrolls the wall paper.,3\n19276,anetv_PsddM2OmOGo,8619,The woman then unrolls the wall paper. the woman then,The woman then unrolls the wall paper.,the woman then,gold,shows the chef how to put on ribbons in the pumpkin and beams.,hands the ends to the woman making the planks away.,uses the tool to hang it from the hedge and ends cover it.,applies the wall paper to the wall.,3\n19277,anetv_PsddM2OmOGo,16745,Various text is shown is steps across the video as well as a woman unrolling some paper and placing it along the wall. She,Various text is shown is steps across the video as well as a woman unrolling some paper and placing it along the wall.,She,gold,looks a bit while talking and ends by leaning backwards and smiling into the camera.,places the paper along the wall and cuts the bottoms off.,continues to speak to the camera about the image of the girl's hair and showing more parts.,actual video is shown by an individual teaching a ballet class demonstrating of proper ballet before jumping up and down the doors.,1\n19278,anetv_PsddM2OmOGo,16746,She places the paper along the wall and cuts the bottoms off. She,She places the paper along the wall and cuts the bottoms off.,She,gold,sits comfortably in a chair and is seen holding several different wallpapers against the wall.,ends by putting down more paper.,climbs back on the ladder and yawns while climbing onto a door.,takes it and adds discs to the seam where the results ends.,0\n19279,anetv_OPqqbxGKp6E,8599,The eggs are poured into a plate and salt and pepper are added. The person,The eggs are poured into a plate and salt and pepper are added.,The person,gold,puts all the ingredients into a glass.,walks away from the stove.,chops them in the pot along with the cheese holding up noodles and sprayed with plastic.,adds more waxes into the pan.,1\n19280,anetv_OPqqbxGKp6E,8598,A fire starts on the eye the person blow it out. The person,A fire starts on the eye the person blow it out.,The person,gold,flips the eggs with a spatula.,adds down the vase of nail and head close up.,inhales and coats through the mask.,stops and cuts the wallpaper.,0\n19281,anetv_OPqqbxGKp6E,8596,We see a person in a kitchen cooking on the stove. The person,We see a person in a kitchen cooking on the stove.,The person,gold,has skillet with butter they add eggs to.,pours pasta and adds oil on.,adds bowls to the bowl around the stove to give a thumbs up.,patrols the salad and adds to the mixture and sanding some broth into it with a clipper.,0\n19282,lsmdc3071_THE_DESCENDANTS-5252,15721,\"Later, he searches stacks of documents. Someone\",\"Later, he searches stacks of documents.\",Someone,gold,\"sulks to the table and watches her softly, then puts on a pair of cloth.\",hurries into someone's house.,reads one of the limbs of a line.,views two portraits on a wall.,3\n19283,lsmdc3071_THE_DESCENDANTS-5252,15720,\"Someone wears a nonplussed smile, then walks his daughter to their car. Later, he\",\"Someone wears a nonplussed smile, then walks his daughter to their car.\",\"Later, he\",gold,comes back into the store.,searches stacks of documents.,rides a scaffold through the back door of a hefty truck.,knocks down the full window.,1\n19284,anetv_2xQVZorob1Q,4548,\"An individual shovels snow, but only the lower legs and shovel are visible on camera. The individual\",\"An individual shovels snow, but only the lower legs and shovel are visible on camera.\",The individual,gold,uses the electric chair to wipe off the end of the ski.,uses a tool to navigate the deluminator.,sets aside the shovel and walks towards the camera.,uses a small tool to caring on the snow.,2\n19285,anetv_2xQVZorob1Q,4549,The individual sets aside the shovel and walks towards the camera. The camera once again,The individual sets aside the shovel and walks towards the camera.,The camera once again,gold,shows us the paint dog.,shows the individual shoveling.,show a masked man sitting on the floor.,grooms itself and her hair is pointed brushed.,1\n19286,anetv_AHXcJCpvkAQ,734,A title screen leads into two women stepping up and down on a block. They,A title screen leads into two women stepping up and down on a block.,They,gold,instructor twists around in the middle.,begin alone with one another and moving her foot relentlessly.,then begins walking around them.,perform several different exercises on the beam and move together in a synchronized motion.,3\n19287,anetv_gLfvk2SSj1c,12366,A man is shown climbing the wall while strapped into a protective harness. The man,A man is shown climbing the wall while strapped into a protective harness.,The man,gold,climbs into the back of the motorcycle and jacks the car up.,returns to the wall and shows taped markers on the walls with numbers on them.,is then shown up on the ski and begins to ride the rope and a rope rope with a large rope.,moves the stick around and hits it on small a wall.,1\n19288,anetv_gLfvk2SSj1c,11476,A young man wearing a green shirt is talking about the techniques involved in rock climbing. Two young men,A young man wearing a green shirt is talking about the techniques involved in rock climbing.,Two young men,gold,jump through the trapdoor and hang on the uneven bars before getting in by and flipping.,are seen climbing the wall while being suspended on ropes.,are rollerblading outdoors the street two bikers as they walk towards a club.,wearing red skiing are shown and they one individual taping the bulls's feet.,1\n19289,anetv_gLfvk2SSj1c,11479,The man in the green shirt explain the technique as he points to the wall to show the significance of each rock and its height. He,The man in the green shirt explain the technique as he points to the wall to show the significance of each rock and its height.,He,gold,begins a video of the man and a child ride a jack down a sreet.,squeezes down some of the paper and creating a sandwich stand from the end.,shows various rocks that are named differently and as assigned different numbers.,is reading his president of the competition.,2\n19290,anetv_gLfvk2SSj1c,11477,Two young men are seen climbing the wall while being suspended on ropes. There,Two young men are seen climbing the wall while being suspended on ropes.,There,gold,people climb over the kayak to break at one another.,get up from a small hole when a man walks after the board.,group are shown moving the flags and arrows in the back.,'s another young man who is demonstrating how to climb up the wall while holding onto the wall mounts.,3\n19291,anetv_gLfvk2SSj1c,11478,There's another young man who is demonstrating how to climb up the wall while holding onto the wall mounts. The man in the green shirt,There's another young man who is demonstrating how to climb up the wall while holding onto the wall mounts.,The man in the green shirt,gold,explain the technique as he points to the wall to show the significance of each rock and its height.,\"does a same backwards, las hand, with all of his right moves and climbs up onto the climbing wall.\",then lifts the beam and begins jumping all around the room while standing to his back.,is measuring it with water soap before he begins to push it when he is done.,0\n19292,lsmdc0019_Pulp_Fiction-56944,7211,Someone walks in and stands in front of the two captives. He,Someone walks in and stands in front of the two captives.,He,gold,has the star in his hair.,does n't even hit when she has returned.,faces the dripping shards.,\"inspects them for a long time, then says.\",3\n19293,lsmdc0019_Pulp_Fiction-56944,7209,\"After taking in their predicament, people look at each other, all traces of hostility gone, replaced by a terror they both share at what they've gotten themselves into. People\",\"After taking in their predicament, people look at each other, all traces of hostility gone, replaced by a terror they both share at what they've gotten themselves into.\",People,gold,\"just paddles and turns to him, as though it is involved in the plant.\",continue to walk and walk in the silence.,can't hear what they are saying.,come through the curtains.,3\n19294,lsmdc0019_Pulp_Fiction-56944,7208,\"Without saying another word, someone climbs up the stairs. People\",\"Without saying another word, someone climbs up the stairs.\",People,gold,leap into the courtroom to crowds someone.,\"back, someone spots a light falling off someone's face.\",look around the room.,stops by people.,2\n19295,lsmdc0019_Pulp_Fiction-56944,7210,The two hillbillys are brothers. Someone,The two hillbillys are brothers.,Someone,gold,looks at the guests as he walks onward.,bends down and faces a portrait.,walks in and stands in front of the two captives.,looks across at someone who nods at his sheepish son.,2\n19296,anetv_W80KSM1I47Q,18678,Video from the 1980's is shown. Celebrities,Video from the 1980's is shown.,Celebrities,gold,start to ride the bike which ends with a man shocked and long.,see a woman holding a tight iron over her hair.,\"turn to deep in the sky, trying to get somewhat naked.\",play a game of tug of war outdoors.,3\n19297,anetv_JRr3BruqS2Y,8126,The girl is bent over on roller blades pulling something out of a bench. She,The girl is bent over on roller blades pulling something out of a bench.,She,gold,gets out of the raft.,does tricks on the bench.,gets her back up on the ground.,is rubbing her neck.,1\n19298,anetv_JRr3BruqS2Y,8123,A man in a black shirt is sitting down and talking. It,A man in a black shirt is sitting down and talking.,It,gold,see a boy making a grooming casket in front of a tree followed by a group of people gathered in a large street.,goes back to the man in a black hat talking.,is sitting in the scuba diving diving board.,return to the game.,1\n19299,anetv_JRr3BruqS2Y,8121,A woman in a grey sweater talks to the camera on the sidewalk. A man in a black hat,A woman in a grey sweater talks to the camera on the sidewalk.,A man in a black hat,gold,is talking to a woman in a white t shirt.,records next stage and is a basket up a high exercise.,sits there at a table in a large environment covered with snow.,talks to the camera in front of a blue building.,3\n19300,anetv_JRr3BruqS2Y,8124,It goes back to the man in a black hat talking. It,It goes back to the man in a black hat talking.,It,gold,goes back to the man in the black shirt talking.,has an great deal about what they do.,is wearing a black costume.,are to shake flags using the selfie stick.,0\n19301,anetv_JRr3BruqS2Y,8120,She goes back across the street alone. A woman in a grey sweater,She goes back across the street alone.,A woman in a grey sweater,gold,goes over and shoulders him.,talks to the camera on the sidewalk.,is standing in front of them talking.,is still speaking with her dropped on her right hand.,1\n19302,anetv_JRr3BruqS2Y,8129,The girl on roller blades does another trick. An older woman,The girl on roller blades does another trick.,An older woman,gold,sits on a cardio machine.,is talking to the camera.,is standing up on the wall.,walks out of the restaurant.,1\n19303,anetv_JRr3BruqS2Y,8128,A woman in a pink shirt is talking. Three kids,A woman in a pink shirt is talking.,Three kids,gold,are sitting in a hopscotch together.,are taking down the stairs and laying clothes.,start playing racquetball on the sand.,are sitting on a bench in roller skates talking.,3\n19304,anetv_JRr3BruqS2Y,8119,A woman is rollerskating across a street with people crossing behind her. She,A woman is rollerskating across a street with people crossing behind her.,She,gold,stops by a women in a pink leotard.,kneels down on the ground.,watches the van fall on a clothesline.,goes back across the street alone.,3\n19305,anetv_JRr3BruqS2Y,8127,A man with a mohawk talks. The girl,A man with a mohawk talks.,The girl,gold,nail her eye several times while braiding the dogs hair.,does more tricks on her roller blades.,stops playing and then her hair.,walks with a man in a circle and thumbs the lady's legs.,1\n19306,lsmdc1018_Body_Of_Lies-79958,1604,Someone picks up his bag and his coffee and gets in the four - by - four. Someone,Someone picks up his bag and his coffee and gets in the four - by - four.,Someone,gold,enters the van martina reappears in her hands.,takes up the phone to someone's car.,sips his coffee as someone drives.,\"has him working, then, through the door, to the next door to the stairs.\",2\n19307,lsmdc1018_Body_Of_Lies-79958,1603,\"Someone, wearing jeans, shirt, casual top, and a baseball cap, sits at an Iraqi street cafe, sipping coffee. The driver, someone,\",\"Someone, wearing jeans, shirt, casual top, and a baseball cap, sits at an Iraqi street cafe, sipping coffee.\",\"The driver, someone,\",gold,takes the package wrapped in chocolate.,has long black hair and a ponytail.,\"sits with a large lot of red car hunches, looking down at the intersection behind her.\",walks toward her car and slams the door shut.,1\n19308,lsmdc3032_HOW_DO_YOU_KNOW-2391,15565,\"Someone gives a comprehending nod, then smiles at him. Someone\",\"Someone gives a comprehending nod, then smiles at him.\",Someone,gold,picks up a small bundle.,wears a disgruntled look.,\"turns and steps away, staying his feet towards them.\",\"drives, followed by an electric fan.\",1\n19309,lsmdc3032_HOW_DO_YOU_KNOW-2391,15564,\"Entering, someone frowns at seeing someone. Someone\",\"Entering, someone frowns at seeing someone.\",Someone,gold,picks up the card from his pocket and searches through the room.,stands at their table.,stares at his reflection taking down smoke.,\"gives a comprehending nod, then smiles at him.\",3\n19310,lsmdc3032_HOW_DO_YOU_KNOW-2391,15568,Someone follows with a long sigh. Someone,Someone follows with a long sigh.,Someone,gold,\"crosses the floor, then leans on its shade against a wall and stares into the curtains.\",peers after them as they enter another room.,detail himself builders and wears his new piece.,turns to greet someone.,1\n19311,lsmdc3032_HOW_DO_YOU_KNOW-2391,15567,\"Smiling tightly, she jerks her to the side, then moves off. Someone\",\"Smiling tightly, she jerks her to the side, then moves off.\",Someone,gold,follows with a long sigh.,stands and takes a picture in front of her.,slides down across the paper on the keys.,stares through the back door.,0\n19312,lsmdc3032_HOW_DO_YOU_KNOW-2391,15569,Someone peers after them as they enter another room. Someone,Someone peers after them as they enter another room.,Someone,gold,stares with disbelieving eyes.,'s on his way as two thugs tap him through a door.,watches as someone making soup on her food list.,looks down at them.,0\n19313,lsmdc3032_HOW_DO_YOU_KNOW-2391,15571,\"She blinks up at him. Following her into the hall, he\",She blinks up at him.,\"Following her into the hall, he\",gold,finds his wrists gone.,glances approaching a passing someone.,finds her over her bed in her bed.,\"glances at someone, who looks away.\",3\n19314,lsmdc3032_HOW_DO_YOU_KNOW-2391,15570,Someone stares with disbelieving eyes. She,Someone stares with disbelieving eyes.,She,gold,\"shakes his head, then looks down at his fingers.\",hooks her hands around the monk's neck.,smiles and raises the phone to his ear.,blinks up at him.,3\n19315,anetv_yZLwR5EJ7Wc,20031,A man plays bagpipes in a city square while nobody pays attention. A cop,A man plays bagpipes in a city square while nobody pays attention.,A cop,gold,drives the bumper cars with an ice scraper.,tells him to stop.,\"appears in a line, some in black and pink.\",\"falls down the street, mouth and bloody, and the men talk to the camera man step on the sticks.\",1\n19316,anetv_zAr9k1-umvY,5824,They lay down a pink paper onto the floor. They,They lay down a pink paper onto the floor.,They,gold,begin to play in a beautifully ornamental ground.,begin dancing and handing them to the camera.,put tile on top of the paper.,are engaged in a game of soccer.,2\n19317,anetv_zAr9k1-umvY,5823,Another man stands behind them helping them. They,Another man stands behind them helping them.,They,gold,take his turn and finally go to another raft.,take their stilts out on a pole and walk with the dolls.,turn on the horses routine.,lay down a pink paper onto the floor.,3\n19318,anetv_zAr9k1-umvY,5822,A person is kneeling down putting tile onto the wall. Another man,A person is kneeling down putting tile onto the wall.,Another man,gold,lays out the floor and sets the rug down on the wood floor next to it.,is putting a layer of plaster on the roof.,stands behind them helping them.,lays down on the floor.,2\n19319,anetv_zAr9k1-umvY,11700,Next he starts to put tiles onto the wall and another man comes to help. Then the man,Next he starts to put tiles onto the wall and another man comes to help.,Then the man,gold,gets to the top of the roof and balances it.,cuts out the bottom of the wall to clean it's tumbled with a stick and continues to rub it on the wall again.,covers the small floor with cement and puts brown tiles onto the floor.,reaches the top of the wall and links the box in and shoves them back in the back room again.,2\n19320,lsmdc1044_Pride_And_Prejudice_Disk_Two-89907,2561,Someone checks her reflection in the mirror. She,Someone checks her reflection in the mirror.,She,gold,\"gazes up at her collar, then boogies.\",quickly takes a seat as the housekeeper shows their guests in.,\"brushes his hair, smiling and stokes her hair.\",grimaces as she finds someone laces up.,1\n19321,lsmdc1044_Pride_And_Prejudice_Disk_Two-89907,2562,She quickly takes a seat as the housekeeper shows their guests in. People,She quickly takes a seat as the housekeeper shows their guests in.,People,gold,\"lie on top of each other, as people look away.\",are loading through in the basin for shelter.,'s aide grabs two people.,look nervous as the two gentlemen enter and bow.,3\n19322,lsmdc1041_This_is_40-8903,8533,\"Someone gives an earnest nod. Now, in an suv, he\",Someone gives an earnest nod.,\"Now, in an suv, he\",gold,sings to his wife.,hurries toward the handicapped bar.,extends the orange glove over someone.,downs the two glasses after it before himself.,0\n19323,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14286,\"He takes the flag on its wooden pole. Beside him, someone\",He takes the flag on its wooden pole.,\"Beside him, someone\",gold,watches a vast lake across the brightly lit ocean.,glides into the carriage after a brisk strut.,gives a nod and raises his staff in congratulations.,stands on a deep landing and gazes pensive.,2\n19324,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14284,As someone saunters away he twirls his sword like a propeller blade at his side. He,As someone saunters away he twirls his sword like a propeller blade at his side.,He,gold,\"stands, clutching his foot.\",makes his way through a crowd of red soldiers who part to let him by.,wields it lorries - face - in its horn as he snaps.,\"backs away from the zookeeper, switching his hand over the barred seals.\",1\n19325,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14281,\"The son of Poseidon blocks his opponent's sword with his own, then elbows him in the back. Someone\",\"The son of Poseidon blocks his opponent's sword with his own, then elbows him in the back.\",Someone,gold,takes a disappointed drag.,\"aims his weapon at her, its tip stopping within inches of her throat.\",aims him at the spear.,\"shakes his head, then bites his lip.\",1\n19326,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14283,Someone pulls someone's sword from her grasp and turns its blade against the back of her neck. As someone saunters away he,Someone pulls someone's sword from her grasp and turns its blade against the back of her neck.,As someone saunters away he,gold,leans her head against the jewel and looks around.,twirls his sword like a propeller blade at his side.,sees a long limb pinning them down a cliff.,picks up his mitt.,1\n19327,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14279,\"He glances from the sword in his hand, the healed cut on his palm. She\",\"He glances from the sword in his hand, the healed cut on his palm.\",She,gold,snatches the gun from him then runs to someone.,stares with wide eyes.,nuzzles towards his mother.,glances up at the figure of dolphins waves vanishing in the water.,1\n19328,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14282,\"Someone aims his weapon at her, its tip stopping within inches of her throat. Someone\",\"Someone aims his weapon at her, its tip stopping within inches of her throat.\",Someone,gold,\"spots someone lying on the ground in front of someone, surrounding him.\",pulls someone's sword from her grasp and turns its blade against the back of her neck.,\"clenches his hold, considers.\",spots the freight driver.,1\n19329,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14287,\"Beside him, someone gives a nod and raises his staff in congratulations. Someone\",\"Beside him, someone gives a nod and raises his staff in congratulations.\",Someone,gold,\"sucked his way out, staying at his heels.\",takes someone's hand and inserts it into her breast pocket.,holds up someone's arm like a boxing champion as they push through the crowd toward a refreshment table.,lumbers out as he plants the carved stone.,2\n19330,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14285,He makes his way through a crowd of red soldiers who part to let him by. He,He makes his way through a crowd of red soldiers who part to let him by.,He,gold,takes the flag on its wooden pole.,\"a cool grin, everyone turns to look at the trotting someone's flat like bench.\",\"shows himself against a building, which signs off side to side.\",gets out and doubles over.,0\n19331,lsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14280,She stares with wide eyes. Someone,She stares with wide eyes.,Someone,gold,picks up her breakfast and writes someone off.,heads through a window in a large airport area.,treads six pressing down on hers.,hurriedly joins the gathered warriors on the banks to watch.,3\n19332,anetv_ERGoTBC8NkA,11815,A woman is standing in a bathroom. She,A woman is standing in a bathroom.,She,gold,is shaving a white dog with an electric toothbrush.,is wiping a sink in a shower.,lays down a glass and gets a pull of the fridge.,is holding an electric toothbrush in her hand.,3\n19333,anetv_ERGoTBC8NkA,11817,She pushes the button and puts toothpaste on the toothbrush. She,She pushes the button and puts toothpaste on the toothbrush.,She,gold,strolls in front of her and repeats the process when she is done.,folds her clothes and stops to speak into the microphone.,tries to release her.,wets the toothbrush in the sink and begins to brush her teeth.,3\n19334,anetv_ERGoTBC8NkA,8051,A girl is standing inside her bathroom. She,A girl is standing inside her bathroom.,She,gold,is followed by a music on a podium.,is using a battery operated toothbrush.,is underwater and starts washing the dog's fur.,is getting her nails wet with a powder.,1\n19335,anetv_ERGoTBC8NkA,11816,She is holding an electric toothbrush in her hand. She,She is holding an electric toothbrush in her hand.,She,gold,continues to brush the sink and puts toothpaste on her toothbrush.,pushes the button and puts toothpaste on the toothbrush.,begins shaving her legs under her.,wipes her hand off the sneakers faucet.,1\n19336,lsmdc1009_Spider-Man3-76084,16421,He makes his way to his seat. As he sits down in the center of the front row a couple of large men,He makes his way to his seat.,As he sits down in the center of the front row a couple of large men,gold,sit on either side of him.,\"look up at someone, and smiles.\",arranged around a procession surrounds and walked off.,are bouncing up and down in the gravel.,0\n19337,lsmdc1009_Spider-Man3-76084,16422,\"Someone descends a staircase wearing a glamorous, long, white dress. Someone\",\"Someone descends a staircase wearing a glamorous, long, white dress.\",Someone,gold,tweaks his locket on the key.,brushes someone's hair.,sits beside an bridesmaid coat on the beach.,grins proudly and mouths the lyrics.,3\n19338,lsmdc1009_Spider-Man3-76084,16420,Someone steps up to the ticket window. He,Someone steps up to the ticket window.,He,gold,comes to a halt and climbs into a car.,grabs a lovely sign.,makes his way to his seat.,touches someone's son.,2\n19339,lsmdc3052_NO_STRINGS_ATTACHED-25239,3254,He goes to stand but stops himself. He,He goes to stand but stops himself.,He,gold,clutches the towel over his penis.,starts to move again.,looks up to see richard parker at his window.,puts his briefcase on the chair casually.,0\n19340,lsmdc1009_Spider-Man3-76910,8437,He stops in front of the stage and looks up at someone. She,He stops in front of the stage and looks up at someone.,She,gold,pulls her into a hug.,hands someone to him.,heads down the staircase after past several patrons.,looks at him equally cautiously.,3\n19341,lsmdc1009_Spider-Man3-76910,8436,\"Someone spots him, and he comes towards her with a tentative expression. He\",\"Someone spots him, and he comes towards her with a tentative expression.\",He,gold,staggers over to the side and punches his throat.,stops in front of the stage and looks up at someone.,\"gazes at her, then rests her chin on his shoulder.\",\"runs down one of them, takes someone by the hand, and drags him aside.\",1\n19342,lsmdc1009_Spider-Man3-76910,8441,\"With neither of them quite venturing a smile, someone steps down off the stage and slowly leans into him laying her head on his shoulder. They put their arms around each other and someone's eyes\",\"With neither of them quite venturing a smile, someone steps down off the stage and slowly leans into him laying her head on his shoulder.\",They put their arms around each other and someone's eyes,gold,move up and down her lips.,follow her through the length of the corridor.,\"pop up behind her, stroking her small white matching nightie, inside.\",fill with tears as she rests her hand on the back of his neck.,3\n19343,lsmdc1009_Spider-Man3-76910,8438,She looks at him equally cautiously. He,She looks at him equally cautiously.,He,gold,squints throughout the shop.,holds out his hand.,studies her some more.,is nowhere to be heard.,1\n19344,lsmdc1009_Spider-Man3-76910,8439,\"He holds out his hand. Tilting her head to one side, she\",He holds out his hand.,\"Tilting her head to one side, she\",gold,sinks a finger aside.,\"lowers her eyes and then runs her fingertips over her brow, then pulls her long zipper around her shoulders.\",meets someone's gaze.,steps to the edge of the stage and puts her hand in his.,3\n19345,lsmdc1009_Spider-Man3-76910,8442,They put their arms around each other and someone's eyes fill with tears as she rests her hand on the back of his neck. Slowly they,They put their arms around each other and someone's eyes fill with tears as she rests her hand on the back of his neck.,Slowly they,gold,dance around and around.,\"sit beneath an arched bridge, waking and looking in their direction.\",do back back and forth to the right side of the kissing profile of the end.,are on a table as though to push her against one of the machines.,0\n19346,lsmdc1009_Spider-Man3-76910,8440,\"Tilting her head to one side, she steps to the edge of the stage and puts her hand in his. With neither of them quite venturing a smile, someone\",\"Tilting her head to one side, she steps to the edge of the stage and puts her hand in his.\",\"With neither of them quite venturing a smile, someone\",gold,turns away and tossing music together.,walks inside the arena of someone.,looks up at someone.,steps down off the stage and slowly leans into him laying her head on his shoulder.,3\n19347,lsmdc1009_Spider-Man3-76910,8443,\"Slowly they dance around and around. Someone, his face calm and steady,\",Slowly they dance around and around.,\"Someone, his face calm and steady,\",gold,is carved out of the leaves.,is slightly ahead of someone.,\"holds his cheek against her long, auburn hair.\",turns toward work at a snowy palace.,2\n19348,anetv_mB90PudOrnU,15555,A girl is giving a small dog a bath. She,A girl is giving a small dog a bath.,She,gold,has an orange bottle in her hand.,is using a brush to clean her hair.,starts to brush her teeth.,walks to the sink and washes it.,0\n19349,lsmdc1060_Yes_man-99407,12375,\"People walk through the small Lincoln, Nebraska airport. At the museum\",\"People walk through the small Lincoln, Nebraska airport.\",At the museum,gold,we see the hobbit's hedestad black shirt.,is a mock - up of an early telephone switchboard.,\", a great view below shows with some other silver aging skipping.\",\"looked over doors mounted in the fine, plum - like room locates a private area which is beneath the closed double bed.\",1\n19350,lsmdc1060_Yes_man-99407,12382,\"Jumping up and down amongst the crowd, someone's wearing giant yellow corncobs on his head and arms. Someone\",\"Jumping up and down amongst the crowd, someone's wearing giant yellow corncobs on his head and arms.\",Someone,gold,wears a massive red stetson.,is standing just above a bar.,cleans the thick glass window.,pulls someone out of the broomstick and carries him up.,0\n19351,lsmdc1060_Yes_man-99407,12381,\"The football team, Big Red, in a red - and - white stripe, run onto the field. In someone's apartment, people\",\"The football team, Big Red, in a red - and - white stripe, run onto the field.\",\"In someone's apartment, people\",gold,pull off street clothes from gambling.,watch the game on tv.,stand in the same doorway.,stand among the shacks.,1\n19352,lsmdc1060_Yes_man-99407,12373,\"Someone walks up to someone, who's wearing a dark blue coat with red piping. He\",\"Someone walks up to someone, who's wearing a dark blue coat with red piping.\",He,gold,turns and looks up expectantly.,looks at them gravely.,boulder that has narrow corridor and stands orange.,picks her up around her waist with one arm and carries her to a check - in desk.,3\n19353,lsmdc1060_Yes_man-99407,12379,A uniformed band plays at the packed Nebraska Cornhuskers Memorial Stadium. A mascot,A uniformed band plays at the packed Nebraska Cornhuskers Memorial Stadium.,A mascot,gold,\"gets into a thug's ring, pumping him onto the curb.\",leads the hostess pleasure overlays video of everyone practicing with others and others.,kicks a ball for him during his performance.,jumps up and down.,3\n19354,lsmdc1060_Yes_man-99407,12374,He picks her up around her waist with one arm and carries her to a check - in desk. The woman,He picks her up around her waist with one arm and carries her to a check - in desk.,The woman,gold,punches someone's ragged socks.,looks at a computer screen.,\"adjusts the chair, kissing a corner.\",keeps her head bowed.,1\n19355,lsmdc1060_Yes_man-99407,12378,\"On a shooting range, someone shoots the ground. An instructor\",\"On a shooting range, someone shoots the ground.\",An instructor,gold,lies on the back wearing a black tank top.,calmly scans some mezzanine and places the ring behind an approaching woman.,poses with bunches of four razor rows.,raises the gun barrel.,3\n19356,lsmdc1060_Yes_man-99407,12377,A mannequin holds a modern mobile phone. He,A mannequin holds a modern mobile phone.,He,gold,tosses someone the note.,\"holds up the real vintage phone, which is massive.\",finds someone standing there with her arms raised shaking her hips and her hands over her heart.,examines it with one finger.,1\n19357,lsmdc1060_Yes_man-99407,12376,At the museum is a mock - up of an early telephone switchboard. A mannequin,At the museum is a mock - up of an early telephone switchboard.,A mannequin,gold,watch a green muscled guy with a tie waist hold.,is putting man out of an old - up tent.,disturbs a straight white embroidered powder.,holds a modern mobile phone.,3\n19358,lsmdc1060_Yes_man-99407,12380,\"A mascot jumps up and down. The football team, Big Red, in a red - and - white stripe,\",A mascot jumps up and down.,\"The football team, Big Red, in a red - and - white stripe,\",gold,run onto the field.,catches him wearing a suit and twirls.,makes the third jump and runs toward the players.,falls to the ground.,0\n19359,anetv_GySHt3Z6Lt4,16388,\"Then, a man blow the fire, while the person puts sticks on the nascent fire. After, the fire\",\"Then, a man blow the fire, while the person puts sticks on the nascent fire.\",\"After, the fire\",gold,add several pieces with red and after.,is shown in the chamber after the fire consumes the finish man.,starts to growth bigger and bigger while the men put sticks on top.,spreads slowly up a little and steam it across the inside of a cabinet.,2\n19360,anetv_5BYayNkmlBo,8713,\"A man is inside of a barn and is let out on a horse to catch a cow attached to the horse. As he throws his lasso, he\",A man is inside of a barn and is let out on a horse to catch a cow attached to the horse.,\"As he throws his lasso, he\",gold,misses the cow and runs to get something before going back to the cow.,pushes the other man by the horse and runs to it and catches one thing.,lets go of the rope like it contained and lands on the ground.,jumps into a pit while the fish is dragged around.,0\n19361,anetv_5BYayNkmlBo,8714,\"As he throws his lasso, he misses the cow and runs to get something before going back to the cow. The man finally approaches the calf and another man comes out to assist him and he\",\"As he throws his lasso, he misses the cow and runs to get something before going back to the cow.\",The man finally approaches the calf and another man comes out to assist him and he,gold,cuts the cow before tying them into the air.,engages in a bowl.,causes it to be blocked by one another.,returns back to the horse.,3\n19362,lsmdc0011_Gandhi-52496,13691,\"The British are stunned almost to speechlessness - - the audacity, the impossibility of it - - and from someone of all people. The senior civil servant, someone,\",\"The British are stunned almost to speechlessness - - the audacity, the impossibility of it - - and from someone of all people.\",\"The senior civil servant, someone,\",gold,\"stands with someone, holding a bottle of champagne.\",is walking up a gangplank.,is the first to recover.,opens the door and walks off with a cloth.,2\n19363,lsmdc0011_Gandhi-52496,13688,This time someone is in the middle and speaks with the full authority of a leader. The Indian side,This time someone is in the middle and speaks with the full authority of a leader.,The Indian side,gold,\"acknowledges chelmsford's disclaimer - - coolly, but accepting it.\",is not giving the students.,is still back to someone and the laughs and speaks trying to keep her subject of this area.,comes on as he sits with his matching bag bag draped on his chest and hip.,0\n19364,lsmdc0011_Gandhi-52496,13687,Chelmsford is pacing along one side of a large conference table. This time someone,Chelmsford is pacing along one side of a large conference table.,This time someone,gold,is in the middle and speaks with the full authority of a leader.,works another bowl as an audience yells into fans.,begins to drag someone away.,has his neck pulled over his head.,0\n19365,anetv_0ufZs4e24Xs,7775,They are engaged in a martial art called kickboxing. The two men,They are engaged in a martial art called kickboxing.,The two men,gold,kick and alternate blows with punches.,stop glances at each other.,turn the hammer across the floor to jab at each other in place.,smile and parry over the bow.,0\n19366,anetv_0ufZs4e24Xs,7774,Two men are boxing inside a gym. They,Two men are boxing inside a gym.,They,gold,are engaged in a martial art called kickboxing.,bend over to put onto the trampoline and bow them on.,stand around to try to exercise.,are playing a game of table tennis.,0\n19367,anetv_2zvN1cL1uik,14694,An intro starts with music player and foreign letter are presented across the screen. A man,An intro starts with music player and foreign letter are presented across the screen.,A man,gold,plays a saxophone talking.,is shown a close up explaining how to play while another man talks.,sits down in front of a hookah and begins talking to the camera.,in a yellow shirt is talking to it.,2\n19368,anetv_2zvN1cL1uik,14698,He sits down and takes another puff off the hookah. He then,He sits down and takes another puff off the hookah.,He then,gold,shows how to set the plastic into a water.,continues taking puffs off the device and talking about how to get clear hits.,grabs the hookah and sucks the fish up into the air.,drills several hard pieces into trains with another piece passed out.,1\n19369,anetv_2zvN1cL1uik,14696,The man takes a hit of the hookah and coughs a bit. The man,The man takes a hit of the hookah and coughs a bit.,The man,gold,speaks to the camera then walks back across the room and holds eye contact.,shows how to avoid coughing with a hookah by moving the tobacco around on the bowl.,goes to his laptop and tries to play the accordian.,takes the hookah out pipe and continues talking.,1\n19370,anetv_2zvN1cL1uik,14695,A man sits down in front of a hookah and begins talking to the camera. The man,A man sits down in front of a hookah and begins talking to the camera.,The man,gold,continues spraying the camera with the smoke.,stands and bowls the drums off into the distance.,takes a cigarette and lights it.,takes a hit of the hookah and coughs a bit.,3\n19371,anetv_2zvN1cL1uik,14697,The man shows how to avoid coughing with a hookah by moving the tobacco around on the bowl. He,The man shows how to avoid coughing with a hookah by moving the tobacco around on the bowl.,He,gold,begins putting the cigarette in the hookah and looking to the camera.,motions in the background with a tune and arm brush as he talks to the camera.,sits down and takes another puff off the hookah.,throws the salt on the wood and dumps it in the trash.,2\n19372,lsmdc0041_The_Sixth_Sense-68052,8366,Someone walks back and forth in front of him. Someone still,Someone walks back and forth in front of him.,Someone still,gold,holds the sword from the play.,has been decapitated and piled up.,can't find her.,looks at the silver mark on his hand.,0\n19373,anetv_sIzcPVbn0lg,9024,The girl rubs her nose with her right hand and continues to jump and dance. The girl,The girl rubs her nose with her right hand and continues to jump and dance.,The girl,gold,\"stops dancing, looks at the camera, and then continues to dance again and spins once.\",continues to do tricks with the stick while digging out for the camera.,jumps onto a stool and moves her arms to grab the legs.,stops and stops laughing.,0\n19374,anetv_sIzcPVbn0lg,11211,Little kid is dancing waring a pink dress in a room. kid,Little kid is dancing waring a pink dress in a room.,kid,gold,wrap a nightie and shoe and walks inside.,is sitting in front of a christmas tree.,is jumping in the kitchen going side to side like dancing.,puts pink shirts on and standing in a wagon.,2\n19375,anetv_sIzcPVbn0lg,9023,A young blonde girl is jumping and dancing in the kitchen. The girl,A young blonde girl is jumping and dancing in the kitchen.,The girl,gold,pauses to dance in a circle jumping on toes on the mat stretching back and forth.,has her leg in unnerved ice cream and shakes it with a stick.,walk in with a brush.,rubs her nose with her right hand and continues to jump and dance.,3\n19376,lsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60790,11170,Someone as the beacons burst into flames. His eyes,Someone as the beacons burst into flames.,His eyes,gold,\"roll, while someone lowers, with his solidly - - toothed teeth, licks his fingers, eyes glistening with rage.\",are fixed on a tree inside the building.,flash briefly with triumph before he hurries off.,\"go back to the clown, blinks rapidly and drops his pistol again.\",2\n19377,anetv_WsHzMciP5X8,19943,The audience cheers more and leads into people throwing a ball and others hitting it. More shots of the game being played,The audience cheers more and leads into people throwing a ball and others hitting it.,More shots of the game being played,gold,are shown as well as people standing around the table and taking a shot.,are shown as well as people staring off into the distance.,are shown as well as others watching on the sides.,are shown in slow motion.,2\n19378,anetv_WsHzMciP5X8,19942,A large audience is seen watching a sports game and leads into a coin toss. The audience,A large audience is seen watching a sports game and leads into a coin toss.,The audience,gold,cheers and holding his feet up as the other team joins him.,dances around while one ends the game before returning to the camera and moving to his drink.,\"signals to him and returns with his feet, while playing the harmonica, a large wind charges below.\",cheers more and leads into people throwing a ball and others hitting it.,3\n19379,anetv_dE1NAofn3ks,10103,\"Another shot is made, and team members proceed to follow the shot and sweep the ice. A third shot is then made and the curlers\",\"Another shot is made, and team members proceed to follow the shot and sweep the ice.\",A third shot is then made and the curlers,gold,does some martial arts moves.,continue to lay down in front of the goal.,bothering to begin kicking a ball featuring the camera.,allow the shot to knock out another puck.,3\n19380,anetv_dE1NAofn3ks,10102,\"She makes the shot and lets go of the puck as the other team members chase it and sweep the ice. Another shot is made, and team members\",She makes the shot and lets go of the puck as the other team members chase it and sweep the ice.,\"Another shot is made, and team members\",gold,watch them run and run back and forth.,speak to each other and trade long angles.,proceed to follow the shot and sweep the ice.,look to play.,2\n19381,anetv_dE1NAofn3ks,10101,A curler prepares to make a curling shot while being watch be other people in the arena. She,A curler prepares to make a curling shot while being watch be other people in the arena.,She,gold,makes the shot and lets go of the puck as the other team members chase it and sweep the ice.,throws the splits into the sand.,is playing the violin in the room as she bobs.,fight shows the stage and the crowd wins.,0\n19382,lsmdc0049_Hannah_and_her_sisters-69383,300,\"The camera follows her, leaving someone briefly. As someone continues to talk offscreen, someone\",\"The camera follows her, leaving someone briefly.\",\"As someone continues to talk offscreen, someone\",gold,closes the cabinet drawer and walks to a file cabinet behind someone's desk.,looks at a menacing shape in a line of maize.,reaches for the syringe.,\"walks down a deserted wharf, then turns and sees him sitting.\",0\n19383,lsmdc0049_Hannah_and_her_sisters-69383,297,Someone gets up from her chair. She,Someone gets up from her chair.,She,gold,walks past someone to a nearby cabinet.,looks at him.,gets up from the computer and puts her on as she points across a tiny balcony.,looks sheepishly at someone's mother and hugs her then wraps her arms around someone's shoulder.,0\n19384,lsmdc0049_Hannah_and_her_sisters-69383,302,Someone opens the file cabinet and takes out a pack of gum. She,Someone opens the file cabinet and takes out a pack of gum.,She,gold,digs her sandwich away and salutes someone with a frown.,opens a final album.,puts them open as someone gets out of bed.,\"slams it closed, distracted.\",3\n19385,lsmdc0049_Hannah_and_her_sisters-69383,301,\"As someone continues to talk offscreen, someone closes the cabinet drawer and walks to a file cabinet behind someone's desk. Someone\",\"As someone continues to talk offscreen, someone closes the cabinet drawer and walks to a file cabinet behind someone's desk.\",Someone,gold,consults the gramophone card.,raises a glass of champagne and taps the waitress's hand.,is him again.,opens the file cabinet and takes out a pack of gum.,3\n19386,lsmdc0049_Hannah_and_her_sisters-69383,299,\"She opens a drawer, rummaging around for something. The camera\",\"She opens a drawer, rummaging around for something.\",The camera,gold,tracks her little sister gulp down.,moves to a flap beneath the bed door.,stops automatically and starts to flicker in a glimpse of nicely bandage the bottom of the gun.,\"follows her, leaving someone briefly.\",3\n19387,lsmdc0049_Hannah_and_her_sisters-69383,298,She walks past someone to a nearby cabinet. She,She walks past someone to a nearby cabinet.,She,gold,\"opens a drawer, rummaging around for something.\",fills out the bottle.,offers a loaf and bowler cards.,mimes it from the pane and lays it on the floor.,0\n19388,lsmdc0051_Men_in_black-71079,4384,\"Though not quite dead, the Tiny Little Green Man is gravely wounded. Someone pulls again, and someone's entire face pushes out with a mechanical hum, then hinges open, the whole face\",\"Though not quite dead, the Tiny Little Green Man is gravely wounded.\",\"Someone pulls again, and someone's entire face pushes out with a mechanical hum, then hinges open, the whole face\",gold,rotating out away from the rest of the artificial skull.,lies with the murder which they almost burst from.,grows resemble out of character.,breaks down as the song settles on him.,0\n19389,lsmdc0051_Men_in_black-71079,4383,\"He reaches out, touches the ear, then he actually turns it. - - it\",\"He reaches out, touches the ear, then he actually turns it.\",- - it,gold,\"is the characters, upholstery and herald, their surprising increases.\",'s a blue and pink planet.,looks like he's practicing for his ninety composure.,pulls away from the head.,3\n19390,anetv_Z_YXWLkRmjQ,3000,The boy begins kicking his legs around. He,The boy begins kicking his legs around.,He,gold,hop down on the mat.,connects hands with and walks away.,climbs him on and the.,continues kicking his legs while others laugh in the distance.,3\n19391,anetv_Z_YXWLkRmjQ,2999,A boy is seen standing in a locker room with others. The boy,A boy is seen standing in a locker room with others.,The boy,gold,\"moves around all to one of the tools and pulls a small plank against the wall, showing proper color to cut.\",picks up a stone journal and begins playing the flute.,takes several puffs and begins to play the drums and begins to speak.,begins kicking his legs around.,3\n19392,anetv_Z_YXWLkRmjQ,13459,A few boys stand around doing different things in a locker room. One boy,A few boys stand around doing different things in a locker room.,One boy,gold,kicks and spins around showing off his martial art skills.,rolls the other on as someone looks to the camera.,uses a hammer to hold a pair of croquet poles.,is riding the back with the kids and not too close.,0\n19393,anetv_3Vj0GcB_qh4,4619,Two young girls stand in front of a fireplace holding violins. The girls,Two young girls stand in front of a fireplace holding violins.,The girls,gold,look at one another and point an eyebrow.,play the tug of war and floats in the air.,demonstrates how to use a batons before putting it on the ground.,begin playing a piece of music on the violins and then bow at the end.,3\n19394,anetv_LE05u6TR9MI,17026,A large group of people are seen standing in a crowd yelling and playing a game of volleyball. The group of girls,A large group of people are seen standing in a crowd yelling and playing a game of volleyball.,The group of girls,gold,practice and move around the area while the camera zooms in on them.,continue to play while people cheer on the sides as well as cheerleaders.,practice in between as they continue running around.,continue stunts while jumping up and down.,1\n19395,lsmdc3087_WE_BOUGHT_A_ZOO-41025,16720,\"Outside, a male lion walks up to a chain - link fence. Someone, someone, and the real estate agent\",\"Outside, a male lion walks up to a chain - link fence.\",\"Someone, someone, and the real estate agent\",gold,watch him from the other side.,descend the steps to the porch.,rolls up the stairs.,walk past a lunch desk.,0\n19396,lsmdc3087_WE_BOUGHT_A_ZOO-41025,16721,\"Someone, someone, and the real estate agent watch him from the other side. Someone\",\"Someone, someone, and the real estate agent watch him from the other side.\",Someone,gold,looks up at her dad.,sees someone handing someone paperwork.,pulls a gun from someone's breast pocket and pulls a trigger.,glances up at the glass section.,0\n19397,lsmdc3087_WE_BOUGHT_A_ZOO-41025,16719,\"Startled by the sound of a roar, someone and someone look around. Outside, a male lion\",\"Startled by the sound of a roar, someone and someone look around.\",\"Outside, a male lion\",gold,walks up to a chain - link fence.,wiggles his cape at a bull magic sitting at the end of the stairs.,gives someone a high five and takes a bite from his last skin.,strokes its head and shimmies along the sidewalk.,0\n19398,anetv_rWQz-EwA4EA,6476,\"A man is shown putting plaster on the sides of a small, enclosed area. He\",\"A man is shown putting plaster on the sides of a small, enclosed area.\",He,gold,takes the tool neatly and begins stretching the knife on the wall.,bagged part of the roof again and and buffing it for a prod.,is pulled back around the table using the tool and picks up tarp before the person comes to search it again.,holds an object in his hands and finally looks back towards the camera.,3\n19399,anetv_rWQz-EwA4EA,10865,He is throwing putty onto a wall in front of him. He,He is throwing putty onto a wall in front of him.,He,gold,throws the rod in the air and runs away from the wall.,puts a ball on the device on the timing cards.,is holding a board with putty on it.,are venom about a ring.,2\n19400,anetv_rWQz-EwA4EA,10864,A man is standing in a room. He,A man is standing in a room.,He,gold,demonstrates how to make exercise.,holds up a piece of exercise machine.,is throwing putty onto a wall in front of him.,is playing an electric guitar in the background.,2\n19401,lsmdc3047_LIFE_OF_PI-21901,6191,\"In a flashback, two stylish blondes ride bicycles down a street. They\",\"In a flashback, two stylish blondes ride bicycles down a street.\",They,gold,get out and walk out of a gallery.,lead to the supermarket floor.,\"follow the charming, colorful street toward the sea.\",pass parked across a white house.,2\n19402,lsmdc3047_LIFE_OF_PI-21901,6189,He helps his host bring food to a table and they sit down to lunch. He,He helps his host bring food to a table and they sit down to lunch.,He,gold,\"offers fans a much money, then digs the table into the order.\",lifts his jacket and presents it to someone.,graciously serves his guest.,calls to get customers.,2\n19403,lsmdc3047_LIFE_OF_PI-21901,6190,\"He graciously serves his guest. In a flashback, two stylish blondes\",He graciously serves his guest.,\"In a flashback, two stylish blondes\",gold,\"walk by, salsa.\",puppets themselves at one foot.,throw poster on his desk.,ride bicycles down a street.,3\n19404,anetv_ct3uprBbPHw,7771,\"A man stands in front of the camera, then starts combing his hair forward. He then\",\"A man stands in front of the camera, then starts combing his hair forward.\",He then,gold,\"focuses on the sides and back of his hair, again combing down.\",\"proceeds to remove the hair, once he's done, and sprays the case on a third.\",\"puts the clippers on, touches the back of the head of the other man.\",takes his hair several times and then dries the back of his head.,0\n19405,anetv_ct3uprBbPHw,7772,\"He then focuses on the sides and back of his hair, again combing down. He\",\"He then focuses on the sides and back of his hair, again combing down.\",He,gold,places a piano on the frame.,continues rubbing his neck and neck with the properly.,appears again and shows more lense while looking into the camera.,\"brings the brush all around his hair, adding his left hand to swipe along.\",3\n19406,lsmdc0005_Chinatown-48434,7084,Someone starts to get out of the car. Someone,Someone starts to get out of the car.,Someone,gold,gets up and runs along the road.,gives a guilty look.,\"grabs his arm, nearly screaming.\",reaches over and bumps someone at the door.,2\n19407,lsmdc0005_Chinatown-48434,7086,Her intensity actually rips someone 'already partially torn jacket. He,Her intensity actually rips someone 'already partially torn jacket.,He,gold,looks at it and her.,brings her hand round to someone's face.,blocks a staircase with masonry falling with a metal grate.,wields the walkie - talkie.,0\n19408,lsmdc0005_Chinatown-48434,7085,\"Someone grabs his arm, nearly screaming. Her intensity actually\",\"Someone grabs his arm, nearly screaming.\",Her intensity actually,gold,gets louder as they rush so fast until they are separated.,rips someone 'already partially torn jacket.,returns to his face.,pushes away into the machine filling the room.,1\n19409,anetv_x1wy8QmHZL8,3638,Judges at a table watch her the whole time while they also write on a piece of paper. The girl,Judges at a table watch her the whole time while they also write on a piece of paper.,The girl,gold,\"drops her baton, picks it up and then continues on with her routine.\",walks to the desk and holds it for the camera.,looks at a message in her own palm and has a transparent package together.,takes a photo pose for her client.,0\n19410,anetv_x1wy8QmHZL8,3637,The girl begins her baton routine and starts her routine and twirls the batons and her body. Judges at a table,The girl begins her baton routine and starts her routine and twirls the batons and her body.,Judges at a table,gold,watch her the whole time while they also write on a piece of paper.,is shown walking the stage doing a cheerleading dance routine during the dance.,are shown giving instructions on how to play the baton routine.,are laid from behind and watching them take pictures.,0\n19411,anetv_x1wy8QmHZL8,3636,A girl in a blue and sparkly costume is standing on a court while holding two batons. The girl,A girl in a blue and sparkly costume is standing on a court while holding two batons.,The girl,gold,begins her baton routine and starts her routine and twirls the batons and her body.,spins and does a flip in the air.,dances back and forth outside.,puts her gloved hand up and folds her hands.,0\n19412,anetv_thgW2RT30qQ,8794,An intro leads into several clips of a person lifting heavy weights over their shoulders as well as their arms all around. More shots,An intro leads into several clips of a person lifting heavy weights over their shoulders as well as their arms all around.,More shots,gold,are show of athletes performing impressive stunts while looking off into the distance and people measuring their throws.,are shown of people playing hockey with one another as well as shown swimming around.,are shown of them playing a game as well as others with one person pushing the pucks.,are seen of the men climbing off the wall.,0\n19413,anetv_aQulBdlcGNU,10149,She then lays by a fountain. She,She then lays by a fountain.,She,gold,has worked her way to the exercise machine.,kicks her feet forward.,begins to blow dry food onto the board.,picks up the gift and sets the box aside.,1\n19414,anetv_aQulBdlcGNU,10147,A woman lays on the ground. She then,A woman lays on the ground.,She then,gold,reaches for her toes.,notices another scroll across the screen.,gets up in the middle of her belly.,runs onto the mat.,0\n19415,anetv_aQulBdlcGNU,12438,The woman is doing static bike laying on the floor. the woman,The woman is doing static bike laying on the floor.,the woman,gold,is then sitting on a sled.,is wearing a bicycle.,gets down in the dirt.,is next to a waterfall doing abs.,3\n19416,anetv_aQulBdlcGNU,12437,Woman is laying on the floor doing abs. the woman,Woman is laying on the floor doing abs.,the woman,gold,is in a guitar with her dog.,smiles and stands in front of a car.,looks around and wraps her baton around the neck.,is doing static bike laying on the floor.,3\n19417,anetv_u3nOmvgcs84,7081,A girl stands by a counter with various food items placed out on the counter. She,A girl stands by a counter with various food items placed out on the counter.,She,gold,holds up the ingredients and instructs what you'll need to make a sandwich.,is thrown on the rack and placed on top.,points to her email.,feeds her parsley and then cleans off a pie.,0\n19418,anetv_u3nOmvgcs84,7083,She begins chopping the vegetables and putting the dressing on the bread. She,She begins chopping the vegetables and putting the dressing on the bread.,She,gold,places the sauce onto the list beside the mixture and puts it back on the plate.,is then seen pouring the seeds on the bread while smiling to the camera.,begins mixing the sandwich in the pan.,spreads around the dressing and puts the other ingredients on the sandwich to finish.,3\n19419,anetv_u3nOmvgcs84,7082,She holds up the ingredients and instructs what you'll need to make a sandwich. She,She holds up the ingredients and instructs what you'll need to make a sandwich.,She,gold,stirs the noodles and some of that.,begins chopping the vegetables and putting the dressing on the bread.,slices off the salad and tomato and brings it up.,puts a yolks of mushrooms in a pan and puts it in the oven.,1\n19420,anetv_KmhzUY2ooCw,17588,A backyard seen appears with several people outside. The people,A backyard seen appears with several people outside.,The people,gold,\"are playing a game of croquette, taking turns with the bat and hitting the balls.\",go up a slide part of a stroller.,move inside in a bumper car driving around and side by side.,are then shown inside front in a restaurant.,0\n19421,anetv_8fqxUtHLyoE,10934,Two women are on a court with jump ropes. They,Two women are on a court with jump ropes.,They,gold,are sitting in a sunny court practicing to hold up their pom poms.,compete to hold the rope.,do a gymnastics routine on the balance beam.,do several stunts while jumping the ropes.,3\n19422,anetv_8fqxUtHLyoE,10935,They do several stunts while jumping the ropes. They,They do several stunts while jumping the ropes.,They,gold,have a good time swinging it down into the air.,\"flip forward, backward and sideways in unison.\",jump as they come around.,goes off into the area and finishes the breakdancing process with.,1\n19423,anetv_JRg3W4xKvJI,749,\"The outro appears and it's the video clip of the workers working on the wood pieces, and text appear on the screen that include the shops address, email, website and phone number, the exterior shop is shown again. The last screen\",\"The outro appears and it's the video clip of the workers working on the wood pieces, and text appear on the screen that include the shops address, email, website and phone number, the exterior shop is shown again.\",The last screen,gold,appears various prints of tools and flowers.,switches of an alarm listed shown for a trainer in a day.,shows two blue screens including restaurants and youtube information.,\"is the light gray screen first shown and include the company name, number and the website.\",3\n19424,anetv_BiIIco4EC2U,1456,A blindfolded man is seen sitting at a table with a timer coming on next to him attempting to solve a rubix cube. The man,A blindfolded man is seen sitting at a table with a timer coming on next to him attempting to solve a rubix cube.,The man,gold,\"continues strumming the guitar continuously and then stops playing and continues to play, ending by speaking to the camera then pointing.\",finishes the cube and timer stops while a person standing next to him records his time.,stands with the camera back and look.,pushes the cube and sits down in front of the cube and gets up and walks about the cube.,1\n19425,anetv_BiIIco4EC2U,1457,The man finishes the cube and timer stops while a person standing next to him records his time. Another man,The man finishes the cube and timer stops while a person standing next to him records his time.,Another man,gold,walks on front the timer on a round wheel with a tube on it.,is going over to the host of the wall to collect some ice and jam them and make a face.,is then shown playing the piano monitor at the end as another boy appears and watches him walk to the boy as he goes.,is seen walking around in the background while the camera pans around to more people solving cubes.,3\n19426,lsmdc3040_JULIE_AND_JULIA-17773,11417,\"Setting the book aside, someone kisses her. Someone\",\"Setting the book aside, someone kisses her.\",Someone,gold,takes the piece of paper.,\"nibbles her neck, then pulls her in for another passionate kiss.\",steps over to someone.,strokes him with broad waves.,1\n19427,lsmdc3040_JULIE_AND_JULIA-17773,11422,Now an alarm clock reads 5: 30. Someone,Now an alarm clock reads 5: 30.,Someone,gold,\"approaches someone, who holds a tablet over his ear.\",slips the packet of condoms open.,\"find several infected germans, streaming down it with massive devours of double doors.\",rises then types at her laptop.,3\n19428,lsmdc3040_JULIE_AND_JULIA-17773,11418,\"Someone nibbles her neck, then pulls her in for another passionate kiss. Someone\",\"Someone nibbles her neck, then pulls her in for another passionate kiss.\",Someone,gold,smiles and kisses his cheek.,puts her hand on her breast and holds tight over her crotch.,\"strokes his stomach, then eyes him adoringly as he removes his glasses.\",\"frowns and purses her lips, then nods back her head.\",2\n19429,lsmdc3040_JULIE_AND_JULIA-17773,11423,Five pounds of it sit in her fridge. She,Five pounds of it sit in her fridge.,She,gold,nudges a friend who brushes her nose against a mirror and lifts her over her ears.,climbs her staircase to the art room with a stick tucked under her leg.,melts a chunk in her pan.,turns to his walkie - talkie.,2\n19430,lsmdc3040_JULIE_AND_JULIA-17773,11419,\"Their embrace grows more intense, and they lie back together. Someone\",\"Their embrace grows more intense, and they lie back together.\",Someone,gold,\"hesitates for a moment, then returns.\",looks up and down.,switches off his bedside lamp.,gives someone a cordial hug.,2\n19431,lsmdc3040_JULIE_AND_JULIA-17773,11420,Someone switches off his bedside lamp. Someone,Someone switches off his bedside lamp.,Someone,gold,stares at someone as they struggle.,switches off her lamp.,pokes his secretary - lined hand with his hand.,sits as someone rubs her leg on the chair.,1\n19432,anetv_q8TBL7DBgXY,11464,\"She skates and we see bikes, people riding them, palm trees, and ferris wheels. We\",\"She skates and we see bikes, people riding them, palm trees, and ferris wheels.\",We,gold,follow the woman as she skates alongside surfboards and other people.,replays a player just getting there with them.,can over her eyes as she jumps.,\"follow the dress through a narrow, then crossing into an alley.\",0\n19433,anetv_q8TBL7DBgXY,11462,\"A pier is shown at a beach, with people walking alongside it. Many pictures\",\"A pier is shown at a beach, with people walking alongside it.\",Many pictures,gold,are shown of a woman tying up a pair of skates.,are shown of people riding boats as well as running a board into one another and falling in water.,are shown of people riding along a river looking through clothes on as well as divers and swimming in the water.,are featured on a screens and talking about them in the sky.,0\n19434,anetv_q8TBL7DBgXY,11463,Many pictures are shown of a woman tying up a pair of skates. She skates and we,Many pictures are shown of a woman tying up a pair of skates.,She skates and we,gold,\"see bikes, people riding them, palm trees, and ferris wheels.\",see her cutting and performing a series of dancing and twirling bikes.,see the house match.,see the sneaker in reverse.,0\n19435,anetv_-lJS58hyo1c,19600,The lady stands and lifts the weight over her head. The lady,The lady stands and lifts the weight over her head.,The lady,gold,swings the stick around and glances at the camera.,lets go of the weight.,drops the barbell and smiles.,throws the sheet on the water.,2\n19436,anetv_-lJS58hyo1c,19599,She bends down and grabs the pole. The lady,She bends down and grabs the pole.,The lady,gold,holds onto the rope in front of her.,moves and runs a stroke down the dog.,stands and lifts the weight over her head.,swings her arms and lands on the mat.,2\n19437,anetv_t6FuJ4L8sHY,14697,The same shot is shown again in slow motion and leads into one scoring a goal with others not paying attention. The same shot,The same shot is shown again in slow motion and leads into one scoring a goal with others not paying attention.,The same shot,gold,is repeated in slow motion one times while the other speaks to the other.,is shown again in slow motion several times and pans back to all the players.,is repeated several times.,\"is shown again, followed by more shots of the man scoring interviewed followed by shots of shots of them celebrating and dribbling balls.\",1\n19438,anetv_t6FuJ4L8sHY,14696,A group of people are seen standing on a soccer field and leads into one falling down and being helped back up. The same shot,A group of people are seen standing on a soccer field and leads into one falling down and being helped back up.,The same shot,gold,is show jumping over one another as well as many young men hard to watch.,shows more people throwing tricks down the snowy hill continues others watch on the side.,is shown again in slow motion and leads into one scoring a goal with others not paying attention.,is shown of people splashing and moving dodgeball toward the people cheering for an audience.,2\n19439,anetv_DFOoFr2H-24,968,A man is seen playing an instrument while another watches in the background. He,A man is seen playing an instrument while another watches in the background.,He,gold,continues playing and leads into several shots of the dog playing.,\"pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke.\",continues to speak to the camera and continues to play games.,continues tennis and leads into several shots of him playing.,1\n19440,anetv_DFOoFr2H-24,969,\"He pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke. The boys\",\"He pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke.\",The boys,gold,continue playing along drum drums as well as people running away.,continue playing after playing ball with the man.,continue playing to the camera and continuing to speak to the camera.,watch in amazement and bends down closely to another boy.,3\n19441,lsmdc3037_IRON_MAN2-16708,167,\"Wearing his suit without the helmet, someone eats a donut as he sits inside a giant donut perched atop a building's roof. Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye,\",\"Wearing his suit without the helmet, someone eats a donut as he sits inside a giant donut perched atop a building's roof.\",\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye,\",gold,stops and readies the utility wire he an drying itself.,climbs the first man in the coffee shop.,whirls around behind someone's neck and rests his head on his palm.,gazes up at someone.,3\n19442,lsmdc3037_IRON_MAN2-16708,165,Major someone and someone shake hands. The onlookers,Major someone and someone shake hands.,The onlookers,gold,grab someone from the judges.,hold up the kneads of their instructor.,\"disperse as someone, major someone, and a small group of men walk toward the hangar.\",clap as someone snaps him up.,2\n19443,lsmdc3037_IRON_MAN2-16708,166,\"The onlookers disperse as someone, Major someone, and a small group of men walk toward the hangar. Wearing his suit without the helmet, someone\",\"The onlookers disperse as someone, Major someone, and a small group of men walk toward the hangar.\",\"Wearing his suit without the helmet, someone\",gold,turns on the alex logo outside the police station.,looks down toward the busy daytime.,eats a donut as he sits inside a giant donut perched atop a building's roof.,peers out from behind a pillar as the young man climb over the sorcerer's shoulder and quill back.,2\n19444,lsmdc3037_IRON_MAN2-16708,168,\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye, gazes up at someone. Lowering his sunglasses, someone\",\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye, gazes up at someone.\",\"Lowering his sunglasses, someone\",gold,stares with a blank expression.,hides his face in a nearby cupboard.,peers down at someone.,stands and faces someone.,2\n19445,lsmdc3037_IRON_MAN2-16708,169,\"Lowering his sunglasses, someone peers down at someone. Later, someone and someone\",\"Lowering his sunglasses, someone peers down at someone.\",\"Later, someone and someone\",gold,muscle a waiting room.,enter the main dimly.,sit in a booth inside someone's shop.,enter a panel gathering water.,2\n19446,anetv_G4O_Ar7EO4Y,4229,The man is very proud of his throw as he cheers and other competitors as well as people in the stands clap and cheer for him as well as he walks away from the area he was standing in and continues to cheer himself on a little more while giving a thumbs up to a group of camera men taking his picture. A replay of his throw starts again and then it,The man is very proud of his throw as he cheers and other competitors as well as people in the stands clap and cheer for him as well as he walks away from the area he was standing in and continues to cheer himself on a little more while giving a thumbs up to a group of camera men taking his picture.,A replay of his throw starts again and then it,gold,flashes back to the man differently and gets the better of it.,shows a boy who also wins and smiles at him.,cheers for the lady until they play so nice.,ends with a wide angled shot of the entire arena.,3\n19447,anetv_wUsmKmxxHYQ,17279,A woman is seen speaking to the camera while a woman swims back and fourth in the pool behind her. Clips,A woman is seen speaking to the camera while a woman swims back and fourth in the pool behind her.,Clips,gold,slides into a hole off into a glass board with another solution.,ride back and fourth while others watch on the side.,closing in on the screen and shown well as ending a drink.,are then shown close up on how to perform proper swimming techniques while the camera interments with the woman speaking.,3\n19448,lsmdc1014_2012-79576,11439,\"Clouds fill the screen and give way to the image of a globe. As it slowly spins, the African continent\",Clouds fill the screen and give way to the image of a globe.,\"As it slowly spins, the African continent\",gold,becomes more and more prominent.,moves up towards it.,puts back down on the road.,rises to the feet.,0\n19449,lsmdc1014_2012-79576,11438,\"The three arks, leaving a wide wake behind them, move across the calm ocean under a sky of a few mottled clouds. Clouds\",\"The three arks, leaving a wide wake behind them, move across the calm ocean under a sky of a few mottled clouds.\",Clouds,gold,fill the screen and give way to the image of a globe.,swarm inside the ship.,soar through a clear green sea.,continues to wake up from seeing a large cloud of birds.,0\n19450,lsmdc1027_Les_Miserables-6107,13809,They stare at him as the court usher escorts him out. At the hospital a nurse,They stare at him as the court usher escorts him out.,At the hospital a nurse,gold,sucks a gurney down on a corridor.,removes a ceramic cup with a clean paper bottle.,holds her up as the judge acknowledges them.,\"tends to someone, who lies on her back.\",3\n19451,anetv_iwMXYbYyJy4,15467,A man walks up and starts pushing them higher. They,A man walks up and starts pushing them higher.,They,gold,are shown playing a game of rock scissors.,smile and laugh as they swing.,are moving along a field.,are using two pens to lift the tree.,1\n19452,anetv_iwMXYbYyJy4,13980,\"Their father walks by, pushing the baby. The baby\",\"Their father walks by, pushing the baby.\",The baby,gold,\"is still seated, watching someone from someone's side.\",places as other children try to help him.,reaches for him as he again shows up and gives him a push.,is now fully dressed.,2\n19453,anetv_iwMXYbYyJy4,13979,\"Two children, a boy and girl, are swinging gently on a swing set. Their father\",\"Two children, a boy and girl, are swinging gently on a swing set.\",Their father,gold,turns to greet the older woman as they steer.,lets him swing away.,\"walks by, pushing the baby.\",demonstrates his balance technique.,2\n19454,anetv_iwMXYbYyJy4,15466,A little boy and girl are on swings on a playground. A man,A little boy and girl are on swings on a playground.,A man,gold,swing a slide and arm and fell on the monkey bars.,walks up and starts pushing them higher.,swings to a stop and pulls it open.,catches a frisbee with a golf club.,1\n19455,anetv_3iLo6lxAarc,1272,A woman is seen speaking to the camera while holding up a box. She,A woman is seen speaking to the camera while holding up a box.,She,gold,puts it back into an oven and talks about something.,lays down on the roof and puts bulbs to the tree.,opens the box and pulls out a pair of shoes.,grabs a set of cigarettes and begins playing the instrument with her hand.,2\n19456,anetv_3iLo6lxAarc,1273,She opens the box and pulls out a pair of shoes. She then,She opens the box and pulls out a pair of shoes.,She then,gold,\"puts on the shoes and ties them, walking away in the end.\",pulls out a jacket and shows how to iron it.,slides her shoes into the camera her jacket and shows her standing hands.,shows how to use the machine and put the tires using a brush.,0\n19457,anetv_3iLo6lxAarc,9574,\"Woman is wearing a black cap and its talking and showing a box of diesel shoes, she opens the box unwrapped them and shoes the black and white shoes in all the angles. woman\",\"Woman is wearing a black cap and its talking and showing a box of diesel shoes, she opens the box unwrapped them and shoes the black and white shoes in all the angles.\",woman,gold,holds an orange football slide and unicycle in the dark lot while the woman demonstrates toe shoes.,removes the white shoes from a pair of shoes swishing the soaking with both hands.,puts the shoes on her feet stands and start walking showing the shoes.,cleans the shoe to get it some keys and barks into the the red marker.,2\n19458,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19206,Someone steps closer to someone. The two friends' eyes,Someone steps closer to someone.,The two friends' eyes,gold,follow their gaze to the port guy who wears a white cloth.,are fixed on each other.,go down on someone as he kisses someone.,shine into their sunken sockets.,1\n19459,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19208,Someone takes off his rucksack. He,Someone takes off his rucksack.,He,gold,finds someone who hurries away wearing a doll's headband.,drops it on the ground.,puts a folder under his arm and opens it.,spots his soul cycle bike jumping in the sand.,1\n19460,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19207,The two friends' eyes are fixed on each other. Someone,The two friends' eyes are fixed on each other.,Someone,gold,continues to examine it.,\"looks up at someone, who smiles at it.\",takes off his rucksack.,leads them away from the house.,2\n19461,lsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19209,Someone picks it up and slings it over his shoulder. They,Someone picks it up and slings it over his shoulder.,They,gold,wave hits the false windows.,slows his pace as he leaves.,look through the pockets then find someone walking along the corridor.,head back towards the house.,3\n19462,anetv_goLVOzKw4U8,5036,A man wearing gloves holds a pair of pliers and putting an object in between. He,A man wearing gloves holds a pair of pliers and putting an object in between.,He,gold,finishes the reach and moves on to the edge of the roof.,sparks the object to create a flame and puts his mask on to protect himself.,continues with a bike in front of the wall.,then speaks and shows how to open the shirt and twisting pieces around.,1\n19463,anetv_goLVOzKw4U8,5037,He sparks the object to create a flame and puts his mask on to protect himself. He,He sparks the object to create a flame and puts his mask on to protect himself.,He,gold,\"throws the harness with his back turned, which is got gone.\",continues flaming the object and shows off what he has burned.,begins using two slices of white to into the surface.,goes over to the tree of the fire and the fire spreads around him.,1\n19464,anetv_6EN1q4TmPtI,15024,\"Then, the young people lie face down on the boats and sail in the river. After, the men\",\"Then, the young people lie face down on the boats and sail in the river.\",\"After, the men\",gold,ski down hill holding cars.,jumps over the mountains on the side of the river and ride across boat.,ride camels in the river in the rafts slowly.,advance in the water moving the hand to help advance.,3\n19465,lsmdc0019_Pulp_Fiction-56663,6164,Someone's Malibu pulls up to the restaurant. Someone,Someone's Malibu pulls up to the restaurant.,Someone,gold,presents a candy sign.,draws a square with her hands.,sits in the toilet with a twisted gaze.,sets down a glass of food under an awning.,1\n19466,anetv_hryx3zm06U8,11966,We see two men tiling the wall and floor in two different room. The man tiling the floor cuts the tile and lays it and the man on the wall cuts a half circle in a tile and we,We see two men tiling the wall and floor in two different room.,The man tiling the floor cuts the tile and lays it and the man on the wall cuts a half circle in a tile and we,gold,see an exercise machine shot.,see the men measuring hose.,see him tile the wall more.,see men working in logs on the wall.,2\n19467,anetv_hryx3zm06U8,4768,A man wearing a hat is seen speaking to the camera and leads into him cutting a piece of wood on a table. More shots,A man wearing a hat is seen speaking to the camera and leads into him cutting a piece of wood on a table.,More shots,gold,are shown of him using a tool to brush the paint while the camera captures him from behind.,are shown of the man laying food on a table during the process.,are shown of men laying down boards in various areas as well as layer plaster on the walls.,are shown of him using the weights on the ground and ends by speaking to the camera.,2\n19468,anetv_hryx3zm06U8,4769,More shots are shown of men laying down boards in various areas as well as layer plaster on the walls. Then men,More shots are shown of men laying down boards in various areas as well as layer plaster on the walls.,Then men,gold,are shown using a ski while standing to the top looking off with the camera.,continue putting tiles down over the plaster while measuring it out and putting the objects back down.,continues to speak with another moving and leads into a martial arts sequence and ends with large videos of the people snowboarding.,are shown doing more tricks and plaster on a wall as well as pictures while the crowd cheering and interviews them.,1\n19469,anetv_Iwgbi95VjXU,6128,She is putting sand into a cup and building a sand castle. Another girl,She is putting sand into a cup and building a sand castle.,Another girl,gold,walks up and talks to her.,is still flying around the room.,pulled off her red cigarette do a lady beside her.,is holding the pole next to a house down next to a sand pile.,0\n19470,anetv_Iwgbi95VjXU,6127,A girl in a bathing suit is sitting on the beach. She,A girl in a bathing suit is sitting on the beach.,She,gold,is putting sand into a cup and building a sand castle.,starts to scrape a tire off with a small water hose.,is talking to the group of people who are talking to the camera while many on the pool have it on him.,is playing a violin.,0\n19471,anetv_XnrQRuchl7E,16904,This young woman is in the studio playing the piano. No one else is in there with her and she,This young woman is in the studio playing the piano.,No one else is in there with her and she,gold,seems about to make a drink of it while dancing.,plays and plays with the sticks.,looks very serious about what she's doing.,dances as if she's with a blue serve in underwear.,2\n19472,anetv_WpQHQeY43zo,14529,Vernon appears seated on a stage playing the accordian. He,Vernon appears seated on a stage playing the accordian.,He,gold,\"demonstrates several ways to play the harmonica while pausing at the camera, continuing to play again.\",\"finishes the song, speaks briefly and leaves the stage.\",does the violin and plays the violin song on the bar.,brings the violin to the woman on the belly as she plays the guitar.,1\n19473,anetv_WpQHQeY43zo,14528,David Vernon Playing Jacqueline Waltz and Leyland Accordian Club appears on screen. Vernon,David Vernon Playing Jacqueline Waltz and Leyland Accordian Club appears on screen.,Vernon,gold,squeezes the handle into the gym.,sits on top of the floating band on top of the floor and is right up to congas the piano.,\"see a man playing a guitar tattoo on a counter with his hand, still holding phone and talking.\",appears seated on a stage playing the accordian.,3\n19474,anetv_WpQHQeY43zo,14530,\"He finishes the song, speaks briefly and leaves the stage. Website addresses\",\"He finishes the song, speaks briefly and leaves the stage.\",Website addresses,gold,for the event.,as he heads off.,are shown on screen followed by a copyright notice.,the archbishop's applauds silently appreciatively.,2\n19475,anetv_WpQHQeY43zo,2226,A man is seen sitting on a stage in front of a microphone and begins playing an accordion. The man,A man is seen sitting on a stage in front of a microphone and begins playing an accordion.,The man,gold,continues performing various martial arts moves while speaking to the camera.,continues playing and ends with the closing credits.,returns and sits down and begins playing the instrument while stopping to keep playing.,plays the instrument while moving his hands up and down.,3\n19476,anetv_WpQHQeY43zo,2227,The man plays the instrument while moving his hands up and down. The man,The man plays the instrument while moving his hands up and down.,The man,gold,continues dancing and ends with his hands on his hips.,continues to play the instrument and ends by bowing and nodding to the camera.,continues playing various instruments together while speaking to the camera.,continues playing the guitar while waving to the audience.,1\n19477,lsmdc0019_Pulp_Fiction-56985,2926,\"He throws himself against the back wall, gun outstretched in front of him, a look of yellow fear on his face, ready to blow in half anybody fool enough to stick their head through that door. Then he\",\"He throws himself against the back wall, gun outstretched in front of him, a look of yellow fear on his face, ready to blow in half anybody fool enough to stick their head through that door.\",Then he,gold,goes to take him off.,\"steps closer, peers into the room and slaps a window.\",listens to them talk.,stays to his feet.,2\n19478,lsmdc0019_Pulp_Fiction-56985,2927,Then he listens to them talk. Bursting out the door and blowing them all away while they are fuckin 'around,Then he listens to them talk.,Bursting out the door and blowing them all away while they are fuckin 'around,gold,\", he enters with a beer.\",\", the light gets closer.\",\"and hear, someone waves humbly.\",is the way to go.,3\n19479,lsmdc0019_Pulp_Fiction-56985,2925,\"And with that, the two lovebirds peel away. We\",\"And with that, the two lovebirds peel away.\",We,gold,removes the sheet with his hands and rubs them together.,glide through the underside of the car.,are passed around from the back.,are in the bathroom of the hollywood apartment we were in earlier.,3\n19480,anetv_QFxe74w7aNc,13352,A group of martial artists and drummers perform in a street competition. The martial artists in red pants and black shirts,A group of martial artists and drummers perform in a street competition.,The martial artists in red pants and black shirts,gold,do kicks and flips.,hold up karate moves and resistance.,appear on stage wearing a black karate outfit.,begin skateboarding down the street.,0\n19481,anetv_Igpy_o0h3Cs,6086,A woman wear curls shows how to wrap pieces of fabric on a roller. The woman,A woman wear curls shows how to wrap pieces of fabric on a roller.,The woman,gold,tapes all of her hands to pieces.,unrolls the curls from her hair.,is doing this taking different picture.,shows some some clothes how mixed ribbon in folds.,1\n19482,anetv_Igpy_o0h3Cs,6087,The woman unrolls the curls from her hair. The woman,The woman unrolls the curls from her hair.,The woman,gold,finishes her hair to make a single braid.,combs out her hair using her hands.,braids the hair sharply.,has lipstick outside sectioned out of her hair as she eats it.,1\n19483,anetv_KRGiJIHSd9E,19320,The tattoo artist is setting up her inks and papers for the session she is about to have. She,The tattoo artist is setting up her inks and papers for the session she is about to have.,She,gold,\"continues painting client, as she continues the sequence of the doing artist.\",rubbing a better look in tissue paper on the back parasails we see the soap clutch to her bra master again.,pauses to talk to the camera before returning it.,peels the transfer paper off the client's back revealing the art.,3\n19484,anetv_KRGiJIHSd9E,2277,The man leans forward the woman begins tattooing him while several shots are shown of sessions. The woman,The man leans forward the woman begins tattooing him while several shots are shown of sessions.,The woman,gold,continues speaking and leads into her riding in a lifeboat on the border of a river.,changes back to focus and clip her hair behind her ear.,continues running along the head while moving camera walk by a mirror and ends by waving to the camera.,continues tattooing the man and shows off the tattoo in the end.,3\n19485,anetv_KRGiJIHSd9E,19321,In a progression of 12 sessions shows a visual timeline of how the entire back piece for the client comes out as it shows her inking the clients entire back with artwork. There,In a progression of 12 sessions shows a visual timeline of how the entire back piece for the client comes out as it shows her inking the clients entire back with artwork.,There,gold,\"young she decorates her hair, and then from her eyes to knitting.\",\"are several still pictures of the client, the tattoo artists and others posing as the client shows the complete tattoo on his back.\",\"they talk and pass water wearing helmets and braces, techniques, and then both men run towards the camera filled with customers on tents\",shows her number's information just how to secure that bowl to clean it with pressed bun.,1\n19486,anetv_KRGiJIHSd9E,19319,A female tattoo artist is doing a tattoo back piece for a man at a shop. A title screen,A female tattoo artist is doing a tattoo back piece for a man at a shop.,A title screen,gold,sharpens on a man's cutting claw.,appears in black with white letters explaining the video and the tattoo artists name.,appears with a website and a subscribe address.,is shown and a man leads a drawing of a design.,1\n19487,lsmdc3037_IRON_MAN2-16413,9460,Someone and someone rush outside. Someone,Someone and someone rush outside.,Someone,gold,charges to signal him from them to see him spring to their feet.,emerges from a stage and slips past onlookers.,jumps into the driver's seat and speeds off.,rakes them along behind someone.,2\n19488,lsmdc3037_IRON_MAN2-16413,9472,\"The cars explode, bounce along the road, then crash into walls on both sides of the course. While restaurant patrons\",\"The cars explode, bounce along the road, then crash into walls on both sides of the course.\",While restaurant patrons,gold,stare open - mouthed at the towering flames.,are being served hitting a beer and deep shots of people carrying boats are seen walking into a large long parking lot area.,watch them as they drive along a sunny road.,\"scatter off, someone tosses it back down.\",0\n19489,lsmdc3037_IRON_MAN2-16413,9452,\"The racecars speed through the city, passing through a tunnel and by tall buildings. As the cars approach, someone\",\"The racecars speed through the city, passing through a tunnel and by tall buildings.\",\"As the cars approach, someone\",gold,steps through the fence and onto the road.,steps closer to the open.,takes a deep breath.,keeps her eyes fixed on her roommate's position on the pavement.,0\n19490,lsmdc3037_IRON_MAN2-16413,9511,\"Someone lands face - up on the asphalt. Reaching down toward someone's chest, Iron Man\",Someone lands face - up on the asphalt.,\"Reaching down toward someone's chest, Iron Man\",gold,yanks out a giant sword and hauls it from his grasp.,uses his arms and his eyes remain fixed on the figure.,pulls the arc reactor out of someone's body frame.,wraps his leg against someone's neck.,2\n19491,lsmdc3037_IRON_MAN2-16413,9510,\"Lengthening the whips, Iron Man hurls someone through the air. Someone\",\"Lengthening the whips, Iron Man hurls someone through the air.\",Someone,gold,lands face - up on the asphalt.,grabs his gun pistol.,takes hold of her large black recruit.,jams his ax into the tub.,0\n19492,lsmdc3037_IRON_MAN2-16413,9463,Someone maneuvers the car down the street and toward a tall barricade. The car,Someone maneuvers the car down the street and toward a tall barricade.,The car,gold,slides up the road as cars and other vehicles pass by.,\"crashes through the barricade, skids sideways, and turns right onto the racing course.\",hits a man over in its tracks.,pulls away as the four agents stroll out of the house in pursuit.,1\n19493,lsmdc3037_IRON_MAN2-16413,9496,\"The case opens, converting into a condensed Iron Man suit. Someone\",\"The case opens, converting into a condensed Iron Man suit.\",Someone,gold,peers suspiciously at her reflection.,cooks meat in front of the spaghetti.,\"stares unblinkingly at the sleeping man, only half behind.\",bends over and puts his hands into two gloves inside the suit.,3\n19494,lsmdc3037_IRON_MAN2-16413,9462,Someone climbs into the back seat of a dark blue limousine. Someone,Someone climbs into the back seat of a dark blue limousine.,Someone,gold,\"is slowly up and down on the sidewalk, waiting for the next to come.\",opens his menu and leans toward a seat.,yields a smile as someone walks up to someone who smiles behind him.,maneuvers the car down the street and toward a tall barricade.,3\n19495,lsmdc3037_IRON_MAN2-16413,9478,Someone falls back onto the ground. Someone,Someone falls back onto the ground.,Someone,gold,flaps his wings and flies backward over the ship.,and someone are walking along the train track.,\"strikes the ground with his whips, as someone rolls out of the way.\",checks her rear view mirror.,2\n19496,lsmdc3037_IRON_MAN2-16413,9500,\"With his foot, someone - or Iron Man - pushes the limousine yards away with one foot. Iron Man\",\"With his foot, someone - or Iron Man - pushes the limousine yards away with one foot.\",Iron Man,gold,hangs from behind the night sky.,is rolled up on a hanger above the bar.,lay down on the roof and padlocked window.,turns and raises his left hand toward someone.,3\n19497,lsmdc3037_IRON_MAN2-16413,9485,Someone leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence. Someone,Someone leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence.,Someone,gold,smashes the stone with a pitchfork.,runs up and flips with the wheel as someone crashes through the doors of the cab.,shoots him in the ribs and follows his opponent.,slumps onto the limo's hood.,3\n19498,lsmdc3037_IRON_MAN2-16413,9504,\"Iron Man lifts his right hand and fires two blasts at someone, who ducks. Someone\",\"Iron Man lifts his right hand and fires two blasts at someone, who ducks.\",Someone,gold,\"flings one whip at iron man, who catches it.\",\", someone plays the violin.\",\"backs to the ceiling, knocking the men down to find him nonplussed.\",\"'s eyes are fixed on the counter, someone stares after him.\",0\n19499,lsmdc3037_IRON_MAN2-16413,9506,\"Someone flings a second whip, which wraps around Iron Man and jerks him through the air. Someone\",\"Someone flings a second whip, which wraps around Iron Man and jerks him through the air.\",Someone,gold,dashes up the cell door with his hand.,pulls the teen's back toting a pair of sneakers.,aims his wand at the stranger.,slings iron man onto the hood of the limousine.,3\n19500,lsmdc3037_IRON_MAN2-16413,9449,\"Someone and other men wearing helmets and orange coveralls walk alongside a chain - link fence by the roadway. In the restaurant, someone\",Someone and other men wearing helmets and orange coveralls walk alongside a chain - link fence by the roadway.,\"In the restaurant, someone\",gold,sees someone bumping a tiled wall across the pedestal professionally.,watches the cars race on tv.,slots some framed framed wedding photos with a cutting line in front of the growing group of young children.,is giving instructions for fixing the keys.,1\n19501,lsmdc3037_IRON_MAN2-16413,9493,\"Someone smashes the windshield, then slices the car's roof with a whip. He\",\"Someone smashes the windshield, then slices the car's roof with a whip.\",He,gold,see a white car parked in his driveway.,gets an burning brick from his car.,slices the left side of the car away.,hits a van near the border of the van.,2\n19502,lsmdc3037_IRON_MAN2-16413,9457,\"The car explodes into sparks and gray smoke as it spins in the air. In the restaurant, someone\",The car explodes into sparks and gray smoke as it spins in the air.,\"In the restaurant, someone\",gold,uses trailer to prevent a completely moped man from tv.,watches with a furrowed brow.,puffs on a portable pipe.,and someone sit up slowly.,1\n19503,lsmdc3037_IRON_MAN2-16413,9503,\"With his whip, someone slaps Iron Man's hand downward. Iron Man\",\"With his whip, someone slaps Iron Man's hand downward.\",Iron Man,gold,has finished some nodes.,\"lifts his right hand and fires two blasts at someone, who ducks.\",bang his bangs on the pavement.,watches washboard machine and a tee.,1\n19504,lsmdc3037_IRON_MAN2-16413,9492,\"As someone drives forward and back, crushing someone, someone reaches for the red case in the back seat. Someone\",\"As someone drives forward and back, crushing someone, someone reaches for the red case in the back seat.\",Someone,gold,picks up the barrel.,is in a small town with his cell phone round in front of his face.,\"smashes the windshield, then slices the car's roof with a whip.\",weeps over someone's head.,2\n19505,lsmdc3037_IRON_MAN2-16413,9481,\"Nearing someone, someone slings his whips in circles, and criss - crosses them faster and faster. Someone\",\"Nearing someone, someone slings his whips in circles, and criss - crosses them faster and faster.\",Someone,gold,leaps out of the way as someone's whips strike gasoline pooling around the car.,dodges the kicks of someone's rear.,move on the wheels toward the mansion and the road.,feels level between the straps of the truck's arc.,0\n19506,lsmdc3037_IRON_MAN2-16413,9512,\"Reaching down toward someone's chest, Iron Man pulls the arc reactor out of someone's body frame. The electricity\",\"Reaching down toward someone's chest, Iron Man pulls the arc reactor out of someone's body frame.\",The electricity,gold,glows as the balloon levels downward.,hits him in privet speed as she retreats.,fires higher with the patch of someone and hits.,ceases to flow through the frame and whips.,3\n19507,lsmdc3037_IRON_MAN2-16413,9451,She turns and glances out a window behind her as the cars speed past. The racecars,She turns and glances out a window behind her as the cars speed past.,The racecars,gold,\"speed through the city, passing through a tunnel and by tall buildings.\",\"sprays out after her, then runs to him.\",\"shows its horn, stops and looks down at it.\",float up from the others.,0\n19508,lsmdc3037_IRON_MAN2-16413,9482,\"Someone leaps out of the way as someone's whips strike gasoline pooling around the car. With his jacket's left sleeve on fire, someone\",Someone leaps out of the way as someone's whips strike gasoline pooling around the car.,\"With his jacket's left sleeve on fire, someone\",gold,\"stands and pats the flames, extinguishing them.\",strikes his body several times as a seeing.,checks his fishing recoiling.,turns it into the bath.,0\n19509,lsmdc3037_IRON_MAN2-16413,9446,\"The car's tail light glows red. As two rows of racecars speed off, smoke\",The car's tail light glows red.,\"As two rows of racecars speed off, smoke\",gold,flies its massive chamber.,rises from someone's nose.,rises from their wheels.,rises onto the back of the ship.,2\n19510,lsmdc3037_IRON_MAN2-16413,9466,\"Someone speeds around a curve and faces someone, who swings the whips. As someone drives past, someone\",\"Someone speeds around a curve and faces someone, who swings the whips.\",\"As someone drives past, someone\",gold,\"reaches a pole, past a police and white kid at the head of his own sweating knocked side.\",holds his pointed jaw.,swings the whip in his left hand and slices off the front of someone's car.,holds his mother's arm.,2\n19511,lsmdc3037_IRON_MAN2-16413,9458,\"In the restaurant, someone watches with a furrowed brow. Someone\",\"In the restaurant, someone watches with a furrowed brow.\",Someone,gold,\"shifts his gaze to his stomach as recovering, the one captures his movements with his foot, approaches an immaculately appointed portrait.\",\"sets their hat on the table and lays a cloth over her, and folds a military face.\",\"and someone step into their army headquarters, someone turns to someone.\",stares open - mouthed.,3\n19512,lsmdc3037_IRON_MAN2-16413,9464,\"The car crashes through the barricade, skids sideways, and turns right onto the racing course. Approaching racecars\",\"The car crashes through the barricade, skids sideways, and turns right onto the racing course.\",Approaching racecars,gold,are men running along the path and veers towards the site of someone's unaware area.,\"transport, a burly stout guy gives the driver a thumbs up and races the mustang along a country road.\",zoom around the limousine as someone drives faster.,\"is intermittent sprinklers, shadows, and barren, surrounded by only shadows.\",2\n19513,lsmdc3037_IRON_MAN2-16413,9467,\"As someone drives past, someone swings the whip in his left hand and slices off the front of someone's car. The car\",\"As someone drives past, someone swings the whip in his left hand and slices off the front of someone's car.\",The car,gold,\"backs onto the road, which bounces off and lands above the snow, the bars flying.\",backs up and he tries to catch it with the bolts.,\"flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence.\",screech to a halt and then falls back in on the bridge.,2\n19514,lsmdc3037_IRON_MAN2-16413,9490,Someone puts the car in reverse and backs up. He,Someone puts the car in reverse and backs up.,He,gold,recoils as flames run in.,\"stands close to the front, burning.\",indicates someone by doing it.,\"changes gears and drives forward, slamming someone against the guardrail.\",3\n19515,lsmdc3037_IRON_MAN2-16413,9474,Someone strolls over to someone's upside - down car and slices it in half with a whip. As someone,Someone strolls over to someone's upside - down car and slices it in half with a whip.,As someone,gold,steps into her limo.,\"eyeballs someone, still using her blonde right lens.\",peers into the debris.,\"watches, the bus stands upright for the moment.\",2\n19516,lsmdc3037_IRON_MAN2-16413,9450,\"In the restaurant, someone watches the cars race on tv. She\",\"In the restaurant, someone watches the cars race on tv.\",She,gold,turns and glances out a window behind her as the cars speed past.,\"run along a narrow ramp, then up the mountainside, winding sleepily through the sea gate at the top of the bikers.\",faces her brother with a boyish gaze and a smile.,takes off her shirt.,0\n19517,lsmdc3037_IRON_MAN2-16413,9461,Someone jumps into the driver's seat and speeds off. Someone,Someone jumps into the driver's seat and speeds off.,Someone,gold,continues to work on the papers under the wheels.,takes a dump in the forest.,climbs into the back seat of a dark blue limousine.,rides doggedly through some trees.,2\n19518,lsmdc3037_IRON_MAN2-16413,9479,\"Someone, with a bloody gash under his left eye, shakes his head. Glancing into the racecar's side mirror, he\",\"Someone, with a bloody gash under his left eye, shakes his head.\",\"Glancing into the racecar's side mirror, he\",gold,glances down and someone looks over his shoulder.,sees someone's young weight raise.,watches someone approach from behind.,stabs the back of the bottle.,2\n19519,lsmdc3037_IRON_MAN2-16413,9508,\"Iron Man stands and wraps the whip around his right arm. Approaching someone, Iron Man\",Iron Man stands and wraps the whip around his right arm.,\"Approaching someone, Iron Man\",gold,\"wraps the whip around his own suit several times, and punches someone's stomach and face.\",closes hands as he catches the hold.,takes off his belt and dangles the leg out.,rips the door open.,0\n19520,lsmdc3037_IRON_MAN2-16413,9501,Iron Man turns and raises his left hand toward someone. A glowing circle,Iron Man turns and raises his left hand toward someone.,A glowing circle,gold,spreads around the soldiers.,appears on his index finger and rib - like white suds.,appears in iron man's hand.,watches the two men in armor.,2\n19521,lsmdc3037_IRON_MAN2-16413,9471,Two other racecars speed around the curve and crash by someone. The cars,Two other racecars speed around the curve and crash by someone.,The cars,gold,\"rip down other sidewalks, knocking someone over his shoulder.\",\"explode, bounce along the road, then crash into walls on both sides of the course.\",\"turn in semi - circle, offering each other his outstretched hand.\",roll up behind him as they disintegrates off.,1\n19522,lsmdc3037_IRON_MAN2-16413,9475,As someone peers into the debris. Someone,As someone peers into the debris.,Someone,gold,grabs the flooded buildings and looks down.,\"plucks a grenade from the sheriff, speeds around the man who is shooting it.\",sneaks up behind him and hits the back of his head with a piece of metal from the red car.,shows one of his men by his armour.,2\n19523,lsmdc3037_IRON_MAN2-16413,9489,Someone stands and slices the car door in half with a whip. Someone,Someone stands and slices the car door in half with a whip.,Someone,gold,jerks his hand away.,\"struggles to stand rooted to the spot, both eyes gleaming as the bullet imitates the oncoming car.\",puts the car in reverse and backs up.,tosses his toy gun into the basket.,2\n19524,lsmdc3037_IRON_MAN2-16413,9505,\"Someone flings one whip at Iron Man, who catches it. Someone\",\"Someone flings one whip at Iron Man, who catches it.\",Someone,gold,\"flings a second whip, which wraps around iron man and jerks him through the air.\",places cleaning powder in a skillet.,faces the boyish worker then steps off.,grabs the rope and ties the loose elastic.,0\n19525,lsmdc3037_IRON_MAN2-16413,9495,Someone tosses the red case onto the ground. Someone,Someone tosses the red case onto the ground.,Someone,gold,taps the case with his foot.,gets on her knees and stands.,lies on his back.,stops and takes his wand.,0\n19526,lsmdc3037_IRON_MAN2-16413,9470,\"Someone pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side. Two other racecars\",\"Someone pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side.\",Two other racecars,gold,pull out their guns.,leaps from side to side and the others loads.,speed around the curve and crash by someone.,dangle from his feet as the car cruises along a country road.,2\n19527,lsmdc3037_IRON_MAN2-16413,9509,\"Approaching someone, Iron Man wraps the whip around his own suit several times, and punches someone's stomach and face. Lengthening the whips, Iron Man\",\"Approaching someone, Iron Man wraps the whip around his own suit several times, and punches someone's stomach and face.\",\"Lengthening the whips, Iron Man\",gold,draws up and starts to pull the men's shoes into place.,hurls someone through the air.,\"crosses his naked legs, and the back drops.\",dances a muscle in his thrusting right hand and stabs with someone's crotch.,1\n19528,lsmdc3037_IRON_MAN2-16413,9468,\"The car flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence. Upside down, with his right shoulder touching the ground, someone\",\"The car flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence.\",\"Upside down, with his right shoulder touching the ground, someone\",gold,holds out the expect gun.,\"lets go of his shovel and walks down a narrow road to another gate, reluctantly cracking open.\",places his left hand on the road as he tries to wiggle free.,suddenly tightens the loop of his body and crouches tight and looks around helplessly.,2\n19529,lsmdc3037_IRON_MAN2-16413,9498,\"As he stands, the suit expands, covering someone's entire body. Small armored plates\",\"As he stands, the suit expands, covering someone's entire body.\",Small armored plates,gold,swoop down and fire at someone.,glow in a giant's face that never represents king's.,\"pop vertically out of the suit, then fold down to form a layer of protective metal.\",are dropped in big siege towers.,2\n19530,lsmdc3037_IRON_MAN2-16413,9469,\"Upside down, with his right shoulder touching the ground, someone places his left hand on the road as he tries to wiggle free. Someone\",\"Upside down, with his right shoulder touching the ground, someone places his left hand on the road as he tries to wiggle free.\",Someone,gold,\"is pushed off the swing, and he falls to the ground again.\",advance to the left and ramp up again.,holds it tighter as he struggles to the control.,\"pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side.\",3\n19531,lsmdc3037_IRON_MAN2-16413,9459,Someone stares open - mouthed. She,Someone stares open - mouthed.,She,gold,glances at his mother.,\"glances back, then raises his glass to her.\",turns to face the entrance where someone stands holding a red case containing someone's iron man suit.,gives a delighted look and turns on the tap.,2\n19532,lsmdc3037_IRON_MAN2-16413,9447,\"As two rows of racecars speed off, smoke rises from their wheels. Someone and the other driver\",\"As two rows of racecars speed off, smoke rises from their wheels.\",Someone and the other driver,gold,have a blue eye at one another.,get out of lift and pass someone with his back to bubbles.,\"snap their eyes shut, punch, and air.\",steer their racecars along the course's winding road.,3\n19533,lsmdc3037_IRON_MAN2-16413,9483,\"With his jacket's left sleeve on fire, someone stands and pats the flames, extinguishing them. Smiling, someone\",\"With his jacket's left sleeve on fire, someone stands and pats the flames, extinguishing them.\",\"Smiling, someone\",gold,steps through the fiery car debris and creeps toward someone.,\"takes on his hat and peers around the men who are already sitting, covered in life.\",\"stares past the black now and finds the mask of a cape, heavier than he'd ever seen.\",lunges around the tattoo artist.,0\n19534,lsmdc3037_IRON_MAN2-16413,9454,\"Watching from bleachers above the road, race fans lean over the fence and gawk. Inside the restaurant, someone, someone, and other patrons\",\"Watching from bleachers above the road, race fans lean over the fence and gawk.\",\"Inside the restaurant, someone, someone, and other patrons\",gold,\"stand out, patrons watching the girls dance together.\",\"take their seats, acknowledge their instructor for someone's group.\",walk away as someone gets up.,stand and watch someone on television.,3\n19535,lsmdc3037_IRON_MAN2-16413,9513,The electricity ceases to flow through the frame and whips. Officers in black uniforms and helmets,The electricity ceases to flow through the frame and whips.,Officers in black uniforms and helmets,gold,rush over and grab someone by the shoulders.,show tents sign to surrounding the room.,are standing and smiling at the policeman standing behind them.,eat by as a bunch of flags swoop through a other event.,0\n19536,lsmdc3037_IRON_MAN2-16413,9518,Someone nods to the man. An officer opens a door and someone,Someone nods to the man.,An officer opens a door and someone,gold,rushes out in the car.,appears through a doorway.,enters a dim room.,steps into the elevator.,2\n19537,lsmdc3037_IRON_MAN2-16413,9497,\"Someone bends over and puts his hands into two gloves inside the suit. As he stands, the suit\",Someone bends over and puts his hands into two gloves inside the suit.,\"As he stands, the suit\",gold,slowly bare from cross and shines up.,stops sponging on his own body.,dances along the floor.,\"expands, covering someone's entire body.\",3\n19538,lsmdc3037_IRON_MAN2-16413,9491,\"He changes gears and drives forward, slamming someone against the guardrail. As someone drives forward and back, crushing someone, someone\",\"He changes gears and drives forward, slamming someone against the guardrail.\",\"As someone drives forward and back, crushing someone, someone\",gold,\"rushes down a wall and pulls up and speaks to the camera, hearing the siren going quickly.\",reaches for the red case in the back seat.,takes the stone.,rolls down the brakes.,1\n19539,lsmdc3037_IRON_MAN2-16413,9507,Someone slings Iron Man onto the hood of the limousine. Iron Man,Someone slings Iron Man onto the hood of the limousine.,Iron Man,gold,stands and wraps the whip around his right arm.,\"official leads the way into the gas foliage, whining a bit on the luxury bike.\",\", he trots to the house with a briefcase in one hand, someone stands behind the counter.\",drilled a piece of metal in the ribbon of the entire jungle.,0\n19540,lsmdc3037_IRON_MAN2-16413,9502,\"A glowing circle appears in Iron Man's hand. With his whip, someone\",A glowing circle appears in Iron Man's hand.,\"With his whip, someone\",gold,leans on his sword driver.,wears a large yellow neatly trimmed coat.,slaps iron man's hand downward.,runs into the crowd with his friends.,2\n19541,lsmdc3037_IRON_MAN2-16413,9448,Someone and the other driver steer their racecars along the course's winding road. Someone and other men wearing helmets and orange coveralls,Someone and the other driver steer their racecars along the course's winding road.,Someone and other men wearing helmets and orange coveralls,gold,drive up to the destroyed brick building.,walk alongside a chain - link fence by the roadway.,slam down a bridge over a hill a beating.,cross the onto a country road.,1\n19542,lsmdc3037_IRON_MAN2-16413,9519,An officer opens a door and someone enters a dim room. The officer,An officer opens a door and someone enters a dim room.,The officer,gold,slides a tray out of his pocket and looks around the kung fu master.,steps up against a large window on the landing.,\"continues to open his notes on the keyboard, reaches out and opens his bags.\",\"closes the door behind someone who walks into the room where a handcuffed someone, wearing only underwear, sits on a bench.\",3\n19543,lsmdc3037_IRON_MAN2-16413,9476,Someone sneaks up behind him and hits the back of his head with a piece of metal from the red car. Someone,Someone sneaks up behind him and hits the back of his head with a piece of metal from the red car.,Someone,gold,glances at the door and folds his hands as the stony faced and mouth open.,presses the last button and the pedal slides up.,turns and knocks the metal from someone's hand with a whip.,\"watches himself from his reverie and waggles his elbow, trying to control himself.\",2\n19544,lsmdc3037_IRON_MAN2-16413,9515,\"As they lift him and drag him away, someone spits blood at Iron Man. Through a computer screen in his mask, Iron Man\",\"As they lift him and drag him away, someone spits blood at Iron Man.\",\"Through a computer screen in his mask, Iron Man\",gold,\"flies across from a cold, winged glare.\",shows an old cigar lying with a man's brace.,shoots a demon in the chest.,studies the arc reactor.,3\n19545,lsmdc3037_IRON_MAN2-16413,9499,\"Other metal plates pop up from behind someone's neck, and cover his head, to form a red helmet and a silver mask with glowing eyes. With his foot, someone - or Iron Man -\",\"Other metal plates pop up from behind someone's neck, and cover his head, to form a red helmet and a silver mask with glowing eyes.\",\"With his foot, someone - or Iron Man -\",gold,- in a mess.,pushes the limousine yards away with one foot.,\"lying on his knees across his chest, takes a discreet breath and limps back.\",someone is the image of the sizes reflected in the golden congo.,1\n19546,lsmdc3037_IRON_MAN2-16413,9456,Someone's orange shirt ignites and falls in tatters around his hips. The car,Someone's orange shirt ignites and falls in tatters around his hips.,The car,gold,accelerates out of the cab.,is now blocked by two people approach the front of the building and they fall in place.,explodes into sparks and gray smoke as it spins in the air.,roars in the wind.,2\n19547,lsmdc3037_IRON_MAN2-16413,9517,\"Inside the restaurant, someone smiles as he watches tv with the other customers. Later, a balding mustached man and several police officers\",\"Inside the restaurant, someone smiles as he watches tv with the other customers.\",\"Later, a balding mustached man and several police officers\",gold,sit in a retirement courtyard at school.,follow someone through a dark corridor.,stand excitedly with a photo of someone in the street.,march down along the city's rooftops.,1\n19548,lsmdc3037_IRON_MAN2-16413,9480,\"Glancing into the racecar's side mirror, he watches someone approach from behind. Nearing someone, someone\",\"Glancing into the racecar's side mirror, he watches someone approach from behind.\",\"Nearing someone, someone\",gold,pats the trunk with ramp.,'s riding wears a knit cap.,\"slings his whips in circles, and criss - crosses them faster and faster.\",climbs to the parallel bars where kitty mechanical arms on the floor out with the graceful bows.,2\n19549,lsmdc3037_IRON_MAN2-16413,9455,\"Inside the restaurant, someone, someone, and other patrons stand and watch someone on television. On the road, a car\",\"Inside the restaurant, someone, someone, and other patrons stand and watch someone on television.\",\"On the road, a car\",gold,pulls up to a parking lot in front of two petrol stalls.,\"zooms past someone as he rips open his orange shirt, revealing the arc reactor attached to his body frame.\",stops in front of town.,employees jumps blocked by several shopping casters.,1\n19550,lsmdc3037_IRON_MAN2-16413,9453,\"As the cars approach, someone steps through the fence and onto the road. Watching from bleachers above the road, race fans\",\"As the cars approach, someone steps through the fence and onto the road.\",\"Watching from bleachers above the road, race fans\",gold,stand on the wall near one.,run to make wide surfaces on over and for carbon - stoned offices.,tweed into the undulating luxurious air pit approaching the plaza.,lean over the fence and gawk.,3\n19551,lsmdc3037_IRON_MAN2-16413,9484,\"Smiling, someone steps through the fiery car debris and creeps toward someone. Someone\",\"Smiling, someone steps through the fiery car debris and creeps toward someone.\",Someone,gold,\"passes someone, who is waiting on top of a wall of chained road.\",leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence.,backs away and a ghost shoves him in the mouth.,\"peers around the spacious cargo vessel, still clutching the twin from a rack of flowers.\",1\n19552,lsmdc3037_IRON_MAN2-16413,9477,Someone turns and knocks the metal from someone's hand with a whip. Someone,Someone turns and knocks the metal from someone's hand with a whip.,Someone,gold,arrives at her room.,grabs it and swings it open.,falls back onto the ground.,follows someone down the corridor.,2\n19553,lsmdc3037_IRON_MAN2-16413,9516,\"Through a computer screen in his mask, Iron Man studies the arc reactor. Inside the restaurant, someone\",\"Through a computer screen in his mask, Iron Man studies the arc reactor.\",\"Inside the restaurant, someone\",gold,returns with a small silver cylinders and tapes it with his own whistle.,smiles as he watches tv with the other customers.,enters with a half - eaten crushes of water.,sits in a white car reading a sleek sleek terminal range shrouded in waiting teams.,1\n19554,lsmdc3037_IRON_MAN2-16413,9445,\"Someone again turns toward the tv. Someone, wearing a helmet,\",Someone again turns toward the tv.,\"Someone, wearing a helmet,\",gold,stares at a ring on someone's finger.,\"stands tall, pendulum - slings against a branch.\",sits in the racecar driver's seat and points toward the camera.,walks up to the kitchen and begins to shower up.,2\n19555,anetv_b0QGh__f7lU,81,An older man is seen laughing to the camera and playing a large set of bongo drums. He,An older man is seen laughing to the camera and playing a large set of bongo drums.,He,gold,comes into the instrument and continues playing a instrument while the man plays.,shows various points on him while looking back to the camera and ends by finishing his song on his room.,clips over the drums while stopping several other runners.,continues playing along faster and faster and finishes by slapping the drum one final time.,3\n19556,anetv_8TDYCXqSHCw,3909,\"A gymnast lift a weight until his shoulders, then lift it above his head. The man\",\"A gymnast lift a weight until his shoulders, then lift it above his head.\",The man,gold,\"lifts it with his head, then lifts it to his chest, then wraps the legs down.\",left the weight fall on the floor.,slips on the ground.,does a routine on the parallel bars.,1\n19557,anetv_vSAHWgFjQAY,698,The man and woman then begin dancing around each other in the middle of the club. They,The man and woman then begin dancing around each other in the middle of the club.,They,gold,continue dancing around one another while other people dance beside them.,walk away and walk to a circle with one another.,\", in the background, eventually seem to stop and the men dance and dance around in unison.\",walk back and fourth to each other on the sides.,0\n19558,anetv_vSAHWgFjQAY,697,A man is seen dancing in a club and grabs onto a woman. The man and woman then,A man is seen dancing in a club and grabs onto a woman.,The man and woman then,gold,begin to dance on a stage and perform a dance.,begin dancing together in a circle.,begin dancing around each other in the middle of the club.,begin dancing down in a circle.,2\n19559,anetv_MdrK2uQ-GvA,6740,A person does a hand stand on a diving board. They,A person does a hand stand on a diving board.,They,gold,dive into the swimming pool below them.,continue to paddle back and forth.,continue rafting on a beach.,go until dive below.,0\n19560,anetv_MdrK2uQ-GvA,12218,The audience cheers and claps at the results of the dive. Then another man in a speedo facing backwards,The audience cheers and claps at the results of the dive.,Then another man in a speedo facing backwards,gold,mounts the high wave to chop them over.,dives in to the pool.,makes to wave water candies onto his cheeks.,does a fellow disoriented and flips while the audience cheers him on.,1\n19561,anetv_MdrK2uQ-GvA,12217,He dives in and his score is displayed on the score board above. The audience,He dives in and his score is displayed on the score board above.,The audience,gold,walks before talking and throwing his arms in the air holding the pole.,gather to relax together and then it weighs.,demonstrates a replay of flips and test that board.,cheers and claps at the results of the dive.,3\n19562,anetv_MdrK2uQ-GvA,12216,A man is on the diving board preparing to dive standing on his head. He dives in and his score,A man is on the diving board preparing to dive standing on his head.,He dives in and his score,gold,is displayed on the score board above.,comes for the third time.,point across the board.,comes in from the end area.,0\n19563,lsmdc3086_UGLY_TRUTH-6224,10719,Later someone puts on lipstick at a mirror. She,Later someone puts on lipstick at a mirror.,She,gold,buries her head low on someone's.,steps to the control panel.,wears a white v - neck dress.,puts glue on either side of the canvas.,2\n19564,lsmdc3086_UGLY_TRUTH-6224,10724,\"Someone picks up the lacy, black, vibrating panties and carefully works them over her black high heels. Reaching underneath her dress once again, she\",\"Someone picks up the lacy, black, vibrating panties and carefully works them over her black high heels.\",\"Reaching underneath her dress once again, she\",gold,shimmies them up to her waist.,folds her hands towards the back of the tub the sight of the space too.,takes a news sealed and puts it in her glass bag.,rubs the toe of her shoe.,0\n19565,lsmdc3086_UGLY_TRUTH-6224,10725,\"Reaching underneath her dress once again, she shimmies them up to her waist. The producer\",\"Reaching underneath her dress once again, she shimmies them up to her waist.\",The producer,gold,returns to the dancer's ear!,is out of the window.,\"adjusts her skirt, then picks up a remote control.\",\"enters, grabs the sponge bolt, and starts to move, having just accomplished something.\",2\n19566,lsmdc3086_UGLY_TRUTH-6224,10716,\"Now someone finds a blank gift bag, stuffed with purple tissue paper, on her welcome mat. She\",\"Now someone finds a blank gift bag, stuffed with purple tissue paper, on her welcome mat.\",She,gold,picks up the gift and peeks around.,reappears in the shadows as she watches a news report movie.,snaps a picture as she picks up a half - lit pillow.,covers her mouth using her jacket to read the letter.,0\n19567,lsmdc3086_UGLY_TRUTH-6224,10720,She wears a white v - neck dress. A loose bun of her blonde curls,She wears a white v - neck dress.,A loose bun of her blonde curls,gold,rests at the back of her neck.,smiling at a floor of hers.,is trimmed by an crowd of monks.,\"in front of the blue top, covering the tears.\",0\n19568,lsmdc3086_UGLY_TRUTH-6224,10727,\"Someone hides her white panties in the gift box, then rushes to the front door with her purse. Stowing the remote inside, she\",\"Someone hides her white panties in the gift box, then rushes to the front door with her purse.\",\"Stowing the remote inside, she\",gold,opens up and finds someone and someone.,spies the closing title screen.,sets her iron on a towel then picks up a white chalkboard and scans the driveway.,puts the card sticks out of the jewelry box.,0\n19569,lsmdc3086_UGLY_TRUTH-6224,10717,Someone finds a purple box in the gift bag. She,Someone finds a purple box in the gift bag.,She,gold,opens an information flap on the box.,eyes him as she sits on the bench in front of the canvas.,folds down a tree of the boxes lie as she brings out the purse.,\"walks around the table, walking towards a valet, smiling and catching it.\",0\n19570,lsmdc3086_UGLY_TRUTH-6224,10723,\"She thoughtfully rumples her mouth. Reaching up underneath her flowing ramp dress, she\",She thoughtfully rumples her mouth.,\"Reaching up underneath her flowing ramp dress, she\",gold,crosses to the bar and peers around her trolley.,waves to the fan as she walks toward the plane's rear door.,hauls up her sweater.,slips off her white panties.,3\n19571,lsmdc3086_UGLY_TRUTH-6224,10722,\"The producer caps her lipstick and picks up her cell phone. Irritably pursing her lips, she\",The producer caps her lipstick and picks up her cell phone.,\"Irritably pursing her lips, she\",gold,watches her friend expectantly.,looks at her clock.,\"shifts his eyes disapprovingly, and shifting her gaze to a receipt book.\",picks up a glass of white wine and takes a seat.,3\n19572,lsmdc3086_UGLY_TRUTH-6224,10718,She opens an information flap on the box. Later someone,She opens an information flap on the box.,Later someone,gold,enters someone's apartment.,puts on lipstick at a mirror.,displays a photograph in her closet.,keeps petting someone from the shelter.,1\n19573,lsmdc3086_UGLY_TRUTH-6224,10721,A loose bun of her blonde curls rests at the back of her neck. The producer,A loose bun of her blonde curls rests at the back of her neck.,The producer,gold,returns her gaze to her gaunt colleague then shakes it.,caps her lipstick and picks up her cell phone.,snaps the last mugshot of the women.,follows suit for the peaceful back back.,1\n19574,anetv_V-Yz865cbn4,4187,A young child is seen smiling to the camera and then begins dancing around. The boy,A young child is seen smiling to the camera and then begins dancing around.,The boy,gold,continues dancing while the camera captures him moving up and down.,is then seen standing on the back and pushing and screaming to the camera.,continues holding it up while stopping to speak to the camera.,continues to kick her around while looking up to the camera.,0\n19575,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13297,It disintegrates into a pile of dust. She,It disintegrates into a pile of dust.,She,gold,is amazed at her own skill.,catches it by the blanket.,rips it open and offers it.,turns back to the old woman.,0\n19576,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13301,People exchange a smile when they notice that someone is watching someone. She,People exchange a smile when they notice that someone is watching someone.,She,gold,sets it and hands the ingredients to someone.,uses his hat to take one.,gives the assistant a red look and cries.,is lingering beside a mirror covered with photographs.,3\n19577,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13298,She is amazed at her own skill. Her three brothers,She is amazed at her own skill.,Her three brothers,gold,stand with the word returning over their heads.,look rather put out.,\"walk in the hall, chased by the others.\",\"walk ahead - someone looks at someone, stunned and sags.\",1\n19578,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13295,They fall into a broom cupboard. Someone's spell,They fall into a broom cupboard.,Someone's spell,gold,sends three copies giddily.,destroys the metal dementor.,catches the man under their taser.,knocks over a huge fire.,1\n19579,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13299,Someone is determined to succeed. The wand,Someone is determined to succeed.,The wand,gold,is pummeled over someone's shoulder.,reaches him again and picks it up the fruit slithers.,spins out of a girl's hand.,comes off an arch.,2\n19580,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13296,Someone's spell destroys the metal Dementor. It,Someone's spell destroys the metal Dementor.,It,gold,hits someone's head.,\"rohirrim earth topples to the left as someone lies, trying to hide underneath it.\",splits with a split.,disintegrates into a pile of dust.,3\n19581,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13294,Someone skips along the corridor. The inquisitorial squad,Someone skips along the corridor.,The inquisitorial squad,gold,watch her go through the large wooden doors.,joins the bloated biker.,\"comes into sight, obviously wearing a fiery costume.\",\"runs out the door, covers his face with his hands.\",0\n19582,lsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13302,She is lingering beside a mirror covered with photographs. Someone,She is lingering beside a mirror covered with photographs.,Someone,gold,laughs as he continues to talk to the camera.,can't take his eyes off her.,hangs his head from her.,glares at someone and feels her bottom lip.,1\n19583,anetv_D4wcmmQsPng,3377,A child is shown skating on the ice. He,A child is shown skating on the ice.,He,gold,is then shown climbing snow ski.,\"jumps onto a board, falling down trying to keep from falling.\",hits a sand ball into the ice.,is holding hockey stick.,3\n19584,anetv_D4wcmmQsPng,18655,A kid in a yellow shirt is skating around a hockey rink. He,A kid in a yellow shirt is skating around a hockey rink.,He,gold,is holding a hockey stick.,is jumping on the railing on the other side of the bar.,leads the three men on two lanes after two other.,is re pointing a shot on a pole and is shown on the field.,0\n19585,anetv_D4wcmmQsPng,18656,He is holding a hockey stick. He,He is holding a hockey stick.,He,gold,runs around and throws the pins in the water.,is dribbling the ball into a goal.,begins to walk out of frame in mud.,shoots at the net and scores.,3\n19586,anetv_D4wcmmQsPng,3378,He is holding hockey stick. He,He is holding hockey stick.,He,gold,serves on the goal with a plastic bat.,throws a potato at the sink.,hits every other ball on the field.,skates backward through obstacles.,3\n19587,anetv_D4wcmmQsPng,3379,He skates backward through obstacles. He then,He skates backward through obstacles.,He then,gold,hits as a rider returns.,hits a puck around and shoots it.,balances on a back stroke across a mat.,jumps over a rubbish line for shore.,1\n19588,anetv_2mAKLFVhV9Y,3601,The camera follows around this woman as they play a game of field hockey with one another while running up and own the field. The girls,The camera follows around this woman as they play a game of field hockey with one another while running up and own the field.,The girls,gold,continue kicking around and looking at each other as well as others watching on the sides.,continue to play the game and end by sticking their sticks up.,begin arena dancing with one another and ends with her laughing.,continue playing the game while the players continuously pans around and the sides are shown again with the game.,1\n19589,anetv_2mAKLFVhV9Y,11224,The girls run back and fourth past one another while still throwing around the ball. They,The girls run back and fourth past one another while still throwing around the ball.,They,gold,continue to play against the other team and run across the field.,is leading one into a game as well as running around her puck.,continue tricks on one another and people continue to struggle.,throw a girl and finishes out of the inflatable shots in the end.,0\n19590,anetv_2mAKLFVhV9Y,3600,A woman is seen holding up a stick that leads into her running around a field. The camera,A woman is seen holding up a stick that leads into her running around a field.,The camera,gold,follows around this woman as they play a game of field hockey with one another while running up and own the field.,pans up and grabs a pair of shoes walking around.,follows her movements around the pool in the end as she then jumps back and walks into the pit.,woman continues to speak to the camera while moving her hands and scoring a point.,0\n19591,anetv_2mAKLFVhV9Y,11223,A woman is seen running around on the field playing a game of field hockey with others. The girls,A woman is seen running around on the field playing a game of field hockey with others.,The girls,gold,run back and fourth past one another while still throwing around the ball.,continue moving around while the players continue kicking and flipping around the net and watching over obstacles partying.,continue playing with one another and end by speaking and watching her.,continue moving around and laughing with one another while others clean.,0\n19592,lsmdc3086_UGLY_TRUTH-6334,2091,\"Someone shakes her head, slack - jawed. Now an aerial view\",\"Someone shakes her head, slack - jawed.\",Now an aerial view,gold,shows the la skyline.,shows three of someone pushing in a wheelbarrow in the large marble dumpster.,shows the party bundled beyond.,shows the people stretching out awkwardly.,0\n19593,anetv_TmA7xnrULME,2819,A small group of kids are seen playing with two adults on a beach pushing sand into a pile. The kids,A small group of kids are seen playing with two adults on a beach pushing sand into a pile.,The kids,gold,continue grabbing water while the camera pans around the other people swimming in the area.,speak to one another as a child rides the others out of the living area.,walk to the end and begin playing out one another in a large field and throw them into the pile.,continue playing with one another while running away across the grass and holding each other money.,0\n19594,anetv_He7CDkVm_aE,6182,A woman stands with a child that is seated next to a counter. The woman,A woman stands with a child that is seated next to a counter.,The woman,gold,uses several different screwdriver to wash the clean cloth.,applies a dry powder to the back of the girls hair and brushes in through.,then bowl and silverware and the man picks up the bowl and tastes it.,lifts a wooden piece of tissue wrapping paper and removes a package.,1\n19595,anetv_He7CDkVm_aE,6183,The woman applies a dry powder to the back of the girls hair and brushes in through. The woman,The woman applies a dry powder to the back of the girls hair and brushes in through.,The woman,gold,shows off the braid with the right eye first and then presents the comb one finger.,get s a blow dryer and uses it while she brushes the girls hair to straighten it.,looks at the dryer before putting the roller in the hair and places the strings up on her arm.,puts soap and brushes and cleans the strands of her hair while talking to the camera.,1\n19596,anetv_aWnpbk007cE,2083,The camera pans back and we can see the people who are below the dragon kite. Then the camera,The camera pans back and we can see the people who are below the dragon kite.,Then the camera,gold,zooms back in on the dragon again.,zooms in on a prowl of the camera.,shows closer view of the surfers as the camera zooms in the kite.,takes back to the girl screaming over the safety.,0\n19597,anetv_aWnpbk007cE,2081,There are a couple of kites in the sky above a green field with a few people scattered. One of the kites,There are a couple of kites in the sky above a green field with a few people scattered.,One of the kites,gold,falls from his mouth beside catches a ball with a baseball cord.,is an orange and black dragon kite that is shown from far away and then up close.,is running in a field on the wrong side of the ship.,covers on a green sand in front of someone.,1\n19598,anetv_aWnpbk007cE,10962,A large dragon kite is flying in the air. People,A large dragon kite is flying in the air.,People,gold,are standing under the kite on the ground looking at it.,are being blown down some stairs.,are in a jungle.,are still climbing on the flight.,0\n19599,anetv_aWnpbk007cE,10963,People are standing under the kite on the ground looking at it. The kite,People are standing under the kite on the ground looking at it.,The kite,gold,is carried across the boat.,continues to fly in the sky.,is swimming around with.,is lying in shore.,1\n19600,anetv_aWnpbk007cE,2082,One of the kites is an orange and black dragon kite that is shown from far away and then up close. The camera pans back and we,One of the kites is an orange and black dragon kite that is shown from far away and then up close.,The camera pans back and we,gold,show a camera operator and we see the light in the bikini.,see the surfer and surfers.,can see the people who are below the dragon kite.,see a replay of the throw.,2\n19601,anetv_PxGggNnMGtQ,9467,The man starts talking to the camera. the man then,The man starts talking to the camera.,the man then,gold,puts out a new place of the silver.,begins creating and mixing a cocktail.,caps them to play the piano.,starts to play the piano on the table floor.,1\n19602,anetv_PxGggNnMGtQ,9466,A man stands behind a bar. the man,A man stands behind a bar.,the man,gold,throws a potato repeatedly.,puts a mug in his hand.,holds an ice cream in front of it.,starts talking to the camera.,3\n19603,anetv_H7k8ATbTjzs,3084,She pets one of the dogs. Another woman,She pets one of the dogs.,Another woman,gold,walks in the hallway looking around.,adds seasonings to the pan.,is sitting behind the woman that pets the dog.,walks in a electric chair and begins brushing the hair of the dog.,2\n19604,anetv_H7k8ATbTjzs,3085,The woman with the dog walks over and takes the leash of the second dog from the young girl and walks away with both dogs and the young girl still holding part of a leash. A man,The woman with the dog walks over and takes the leash of the second dog from the young girl and walks away with both dogs and the young girl still holding part of a leash.,A man,gold,is talking while holding a frisbee then jumping into the water as the young dog comes into the room.,is now walking on the sidewalk is a small white dog with a frisbee.,is standing off to the side watching.,hits the pinata while using a frisbee to chop the dogs hair.,2\n19605,anetv_H7k8ATbTjzs,3086,\"A man is standing off to the side watching. The woman and the young girl, each with a dog again,\",A man is standing off to the side watching.,\"The woman and the young girl, each with a dog again,\",gold,are dancing the end with another woman sitting in front.,\"stop in the grassy area, talk and then continue walking.\",talks to the group while a red barrel and some of his hands.,have their nail cut as they perform several tricks.,1\n19606,anetv_H7k8ATbTjzs,3082,A woman and a young girl are each walking a dog in a grassy area. They,A woman and a young girl are each walking a dog in a grassy area.,They,gold,approach another woman sitting in a chair.,begin from holding a dog with the tooth comb and brush.,put frisbees for the dogs in pots and sticks around the dog approaches.,are in some suds and are running back and forth through the snow.,0\n19607,anetv_H7k8ATbTjzs,3083,They approach another woman sitting in a chair. She,They approach another woman sitting in a chair.,She,gold,is heavily on his facial hair.,addresses a man lying in a unshaven chair.,cheerfully stands in the kitchen with his nose pierced.,pets one of the dogs.,3\n19608,anetv_pZxteNqdweM,5566,A man is seen speaking to the camera and leads into him pouring ice into a glass as well as various liquids. He then,A man is seen speaking to the camera and leads into him pouring ice into a glass as well as various liquids.,He then,gold,shows several shots of a mixer in front of him.,\"cuts out various ingredients and ingredients, also mixing them in the dull shaker while explaining how to properly cut the piece.\",demonstrates how to rotate a large silver pucks onto the ice and serve it in the mug while he continues to talk.,mixes up the drink while still speaking to the camera and then presenting it in a glass.,3\n19609,anetv_pZxteNqdweM,17612,The man mixes the liquor in a shaker. the man then,The man mixes the liquor in a shaker.,the man then,gold,squeezes the glass and pours some time into the martini glass.,plays a flute and talks.,pours the contents into a martini glass.,bowls the second one.,2\n19610,anetv_pZxteNqdweM,17609,A man stands behind a bar. the man,A man stands behind a bar.,the man,gold,begins talking to the camera.,drops the barbell and drops it.,does a handstand while flipping.,spins around a wooden plate.,0\n19611,anetv_pZxteNqdweM,17611,The man takes a glass and fills the glass with various liquors. the man,The man takes a glass and fills the glass with various liquors.,the man,gold,applauds his glass while he drains it.,hands the cup to hers before they do several sets.,takes a drink and pours it in paper.,mixes the liquor in a shaker.,3\n19612,anetv_pZxteNqdweM,17610,The man begins talking to the camera. the man,The man begins talking to the camera.,the man,gold,runs up a track and jumps onto the rope in slow motion.,continues fishing and blowing the leaves in the mud.,takes a glass and fills the glass with various liquors.,continues washing the dog's hair for various times.,2\n19613,anetv_xmSN6La-2vQ,9188,A young woman is seen speaking to the camera while holding up contact lens. She,A young woman is seen speaking to the camera while holding up contact lens.,She,gold,grabs alcohol to interact with her and still speaking to the camera.,moves the finger off her face while she speaks to the camera.,takes one out of her eyes and then puts it back in.,pours various shots into her own lens while she speaks into the camera.,2\n19614,anetv_xmSN6La-2vQ,5487,She then takes out a pair of contacts and puts it in a container. She then,She then takes out a pair of contacts and puts it in a container.,She then,gold,dries her hair while looking into a mirror.,\"rubs most of her lenses her eyes, then brushes her lips with left foot.\",uses it to turn around then puts something into her eye.,puts the contact back in and continues speaking to the camera.,3\n19615,anetv_xmSN6La-2vQ,9189,She takes one out of her eyes and then puts it back in. She,She takes one out of her eyes and then puts it back in.,She,gold,continues to make her way along the cut.,takes a step back and over the edge of the high platform.,shines a scanner on her finger.,continues speaking to the camera while making hand gestures and pointing to the contacts.,3\n19616,anetv_xmSN6La-2vQ,5486,A young girl is seen speaking to the camera and pointing to her eyes. She then,A young girl is seen speaking to the camera and pointing to her eyes.,She then,gold,begins bending down on the bars and eventually begins shaving her legs.,clips off her hair and leads into her shaving her face.,begins pushing the woman's hair all over her face and pointing to the screen.,takes out a pair of contacts and puts it in a container.,3\n19617,lsmdc0003_CASABLANCA-47212,9722,He takes out the letters. He,He takes out the letters.,He,gold,looks at the screen.,\"hands them to someone, who takes them gratefully.\",takes a step forward as someone touches his hips.,strips off the dresser.,1\n19618,lsmdc0003_CASABLANCA-47212,9723,\"He hands them to someone, who takes them gratefully. People\",\"He hands them to someone, who takes them gratefully.\",People,gold,sit in a public table filled with framed photos of her.,\"happily and struggle together, then face one other.\",are both caught completely off guard.,decorate the christmas tree.,2\n19619,lsmdc0003_CASABLANCA-47212,9735,Someone gets out while the orderly stands at attention. He,Someone gets out while the orderly stands at attention.,He,gold,\"drives up to someone's feet as people drive along the streets running through the long, wooden streets.\",\"is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun.\",is driving on the parked hummer.,\"sprays his lips with the back of his hand, then whips the hair out with a wry smirk.\",1\n19620,lsmdc0003_CASABLANCA-47212,9717,\"Someone pauses and looks at someone, unsure for a moment. Someone\",\"Someone pauses and looks at someone, unsure for a moment.\",Someone,gold,\"swings up his leg, but someone yanks him away.\",reverses to the opposite.,comes in and closes the door behind himself.,pulls out a darkened card.,2\n19621,lsmdc0003_CASABLANCA-47212,9732,On the airfield a transport plane is being readied. A uniformed orderly,On the airfield a transport plane is being readied.,A uniformed orderly,gold,dozes away from the beach in pre - dawn.,\"joins a control car, then returns into the work room.\",uses a telephone near the hangar door.,narrows its eyes.,2\n19622,lsmdc0003_CASABLANCA-47212,9719,Someone opens the office door and peers down at the proceedings. They all,Someone opens the office door and peers down at the proceedings.,They all,gold,have to get out of the train with the love heart.,walk towards the bar.,gaze up at someone.,push herself out of the library.,1\n19623,lsmdc0003_CASABLANCA-47212,9738,\"Someone takes the letters of transit out of his pocket and hands them to someone, who turns and walks toward the hangar. Someone\",\"Someone takes the letters of transit out of his pocket and hands them to someone, who turns and walks toward the hangar.\",Someone,gold,feels his way along the ladder but didn't say anything.,\"stops dead in his tracks, and turns around.\",\"looks across at someone, who looks exactly like someone, who he is wearing douglas.\",opens the passenger side door.,1\n19624,lsmdc0003_CASABLANCA-47212,9731,\"He hangs up the receiver and, grabbing for his cap, hurriedly exits. The entire airport\",\"He hangs up the receiver and, grabbing for his cap, hurriedly exits.\",The entire airport,gold,is surrounded by a heavy fog.,is covered in a large party in one of them.,is empty as the bus - rails thud quietly.,is tied up by the receiver.,0\n19625,lsmdc0003_CASABLANCA-47212,9713,They hear the crunch of tires as a car pull up. Someone,They hear the crunch of tires as a car pull up.,Someone,gold,walks up the stairs to someone's office.,removes his pamphlets and reverses the building entrance.,holds out a roll of towels.,watches the skiptracer step back.,0\n19626,lsmdc0003_CASABLANCA-47212,9724,People are both caught completely off guard. Horror,People are both caught completely off guard.,Horror,gold,is in someone's eyes.,watches as the continue and try to shoot someone pass over.,catches up with him.,steers off.,0\n19627,lsmdc0003_CASABLANCA-47212,9716,Someone pays the cab driver. Someone,Someone pays the cab driver.,Someone,gold,drives him out of the car with a firm glare.,\"pauses and looks at someone, unsure for a moment.\",\"stands in the street, followed by the policemen.\",\"runs away from someone, followed by someone, who eyeballs him, coolly reflecting.\",1\n19628,lsmdc0003_CASABLANCA-47212,9721,Someone deposits his hat on a a nearby table. He,Someone deposits his hat on a a nearby table.,He,gold,has a bag of triumph.,takes out the letters.,\"smiles at someone, then kisses it back.\",continues puppy the items out of his venetian.,1\n19629,lsmdc0003_CASABLANCA-47212,9729,\"As someone picks up the phone and dials, someone takes back the letters. Someone\",\"As someone picks up the phone and dials, someone takes back the letters.\",Someone,gold,waits at the driver's window and listens intently.,passes him a photo book with his pencil.,stares at his sweatshirt.,is on the phone.,3\n19630,lsmdc0003_CASABLANCA-47212,9715,Someone quickly walks toward the entrance. Someone,Someone quickly walks toward the entrance.,Someone,gold,makes his call and someone leaves.,shakes himself off the front of the cars.,pays the cab driver.,has another monk standing before the open.,2\n19631,lsmdc0003_CASABLANCA-47212,9712,Someone points at his breast pocket. They,Someone points at his breast pocket.,They,gold,watch someone make it to his right.,carry a slice of cake.,fly across the gleaming water towards the diner.,hear the crunch of tires as a car pull up.,3\n19632,lsmdc0003_CASABLANCA-47212,9720,They all walk towards the bar. Someone,They all walk towards the bar.,Someone,gold,does n't next and pounds his shoulder.,deposits his hat on a a nearby table.,looks up as the chauffeur sees them.,\"watching them, someone releases her coyly, looks over her shoulder.\",1\n19633,lsmdc0003_CASABLANCA-47212,9730,Someone is on the phone. He,Someone is on the phone.,He,gold,\"looks up as someone watches, slack - jawed.\",hangs up the receiver and presses a buzzer on his desk.,looks at her.,is still listening to the offscreen someone.,1\n19634,lsmdc0003_CASABLANCA-47212,9726,He smiles as he turns toward someone. In someone's hand,He smiles as he turns toward someone.,In someone's hand,gold,\"is a gun, which he levels at someone.\",unit someone taps someone's steward.,is a bullet - eye shadow of a stag.,is propped up against a talking agent.,0\n19635,lsmdc0003_CASABLANCA-47212,9739,\"Someone stops dead in his tracks, and turns around. Both people\",\"Someone stops dead in his tracks, and turns around.\",Both people,gold,look at someone with astonishment.,follow the others to watch someone walk down the stairs.,rise to their feet.,watch still as they are dragged away by another fire.,0\n19636,lsmdc0003_CASABLANCA-47212,9725,Obviously the situation delights someone. He,Obviously the situation delights someone.,He,gold,has placed a mauve ostrich scrawled on the top of the tape.,smiles as he turns toward someone.,hands some money to someone.,\"strides up to her, then stops with a car behind her.\",1\n19637,lsmdc0003_CASABLANCA-47212,9734,He hangs up and moves to a car that has just pulled up outside the hangar. Someone,He hangs up and moves to a car that has just pulled up outside the hangar.,Someone,gold,comes out of the building and places some papers casually on his desk.,\"glances at the man, who has no sign of a approaching.\",\"is shown in her office, when she adjusts the wall that he was reading to.\",gets out while the orderly stands at attention.,3\n19638,lsmdc0003_CASABLANCA-47212,9718,Someone comes in and closes the door behind himself. Someone,Someone comes in and closes the door behind himself.,Someone,gold,opens the office door and peers down at the proceedings.,stands with his back to the crowd someone faces the man.,and the others come in with a hooded object through the door.,\"falls into the street, knocking a blue door open.\",0\n19639,lsmdc0003_CASABLANCA-47212,9727,\"In someone's hand is a gun, which he levels at someone. He\",\"In someone's hand is a gun, which he levels at someone.\",He,gold,seems to be getting far away from him.,walks to a table and sits.,\"draws a gun, trying desperately to better find contact information.\",grow louder when someone gets close in.,1\n19640,lsmdc0003_CASABLANCA-47212,9728,\"He walks to a table and sits. As someone picks up the phone and dials, someone\",He walks to a table and sits.,\"As someone picks up the phone and dials, someone\",gold,lifts it up to the hookah and puts it in his lap.,clutches someone's brow.,pulls one book from cocaine to paper.,takes back the letters.,3\n19641,lsmdc0003_CASABLANCA-47212,9736,\"He is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun. People\",\"He is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun.\",People,gold,emerge from the rear of the car.,\"are not entering the ring that the recruits prepare for, across the room.\",approaches in front of the parked benches of the two - story house with a flatcar cut up lens.,\"follow after the people and duck, smoke disappearing, then begin to bang in the nose at their bindings.\",0\n19642,lsmdc0003_CASABLANCA-47212,9733,A uniformed orderly uses a telephone near the hangar door. He,A uniformed orderly uses a telephone near the hangar door.,He,gold,hangs up and moves to a car that has just pulled up outside the hangar.,and someone step through a hallway where she hides as she descends a train.,\"looks at someone, his arm shaking.\",\"jumps off of his deck, runs around the railing lower line, and faces the ship.\",0\n19643,lsmdc0003_CASABLANCA-47212,9711,Someone looks around the empty cafe. Someone,Someone looks around the empty cafe.,Someone,gold,chases a man in sedan.,\"hurries up the stairs, kissing him on the face.\",gains in the pool of light.,points at his breast pocket.,3\n19644,anetv_k9VKFjPYT3o,3964,He is wearing a rock climbing harness. He,He is wearing a rock climbing harness.,He,gold,is doing handstands a free variety.,uses hooks to jump rope and does tricks.,begins climbing up the rock.,is learning how to do sit ups.,2\n19645,anetv_k9VKFjPYT3o,3965,He begins climbing up the rock. He,He begins climbing up the rock.,He,gold,flings it into a pile in the sand and sprays it.,moves on a ladder while going on top and reaching.,has a rope around his neck with different rock climbing tools.,comes up to the wall and takes a bow.,2\n19646,anetv_k9VKFjPYT3o,3966,He has a rope around his neck with different rock climbing tools. He,He has a rope around his neck with different rock climbing tools.,He,gold,\"uses his knee to protect him, then starts shaving.\",loads the rope that is in the water.,talks how to do sit ups on wood bars.,gives another person a high five.,3\n19647,anetv_k9VKFjPYT3o,3963,A man in a blue coat is talking outside by a rock. He,A man in a blue coat is talking outside by a rock.,He,gold,is wearing a rock climbing harness.,does a long jump in a beam into a sand pit.,is filming himself from protective clothes or something for another man.,has to start working in a red block.,0\n19648,lsmdc0051_Men_in_black-70946,15378,Someone takes the remaining chair. Someone,Someone takes the remaining chair.,Someone,gold,continues addressing the recruits.,chokes on her pair.,paints an old pencil to the gong.,already holding her finger.,0\n19649,lsmdc0051_Men_in_black-70946,15380,They all turn and regard someone a little smugly. Someone's hand,They all turn and regard someone a little smugly.,Someone's hand,gold,\"goes in her ear, sprinkle on her evenly, rubbing her rain - length hair over her cheeks.\",breaks out in a gently frown.,stands on someone's left shoulder.,\"is, indeed, up.\",3\n19650,anetv_IhuwmiSPx0w,18041,\"Then, the cheerleaders make a tower and then jump, then they do cartwheels. Two cheerleaders\",\"Then, the cheerleaders make a tower and then jump, then they do cartwheels.\",Two cheerleaders,gold,continue jumping and bouncing across the street in quiet residential positions.,walk on the street one after the other.,get up in a tower and then flips and fall on the arms of people.,appear in a gym showing.,2\n19651,anetv_IhuwmiSPx0w,18042,Two cheerleaders get up in a tower and then flips and fall on the arms of people. The girls,Two cheerleaders get up in a tower and then flips and fall on the arms of people.,The girls,gold,do again a tower and then spin and jump.,start fighting a hard throw and kayaking.,begin playing in a large line.,are batting one another.,0\n19652,anetv_2WwWzzO6rZQ,2218,A female gymnast jumps onto a balance beam and do many tricks and flips and lands back on her feet. the gymnast,A female gymnast jumps onto a balance beam and do many tricks and flips and lands back on her feet.,the gymnast,gold,starts dive backwards down the hoop.,performs batons on the bars.,does two nice back flips back to back while keeping her balance and landing prefect on her feet.,jumps on the balance beam and stomach jumps on the mat and lands on the mat.,2\n19653,anetv_2WwWzzO6rZQ,2219,The gymnast does two nice back flips back to back while keeping her balance and landing prefect on her feet. finally the female gymnast,The gymnast does two nice back flips back to back while keeping her balance and landing prefect on her feet.,finally the female gymnast,gold,makes her way to the beam and jumps across her monkey bars onto the platform.,\"walks to the barbell, grabbing onto her ankles.\",finishes with a high twice flip off the balance beam in the air and lands on the mat prefect.,stands in front of the bar doing gymnastics and flips on the rope to her feet.,2\n19654,lsmdc0017_Pianist-55841,6756,\"He smiles and runs to catch up with his family. He looks back, but someone is lost to sight and the procession\",He smiles and runs to catch up with his family.,\"He looks back, but someone is lost to sight and the procession\",gold,begins in a circle of gravel.,goes towards the far end.,continues on its way.,creeps to the open door in the doorway.,2\n19655,lsmdc1044_Pride_And_Prejudice_Disk_Two-89673,459,\"When they stop to look at the view, someone hangs back. Someone\",\"When they stop to look at the view, someone hangs back.\",Someone,gold,is seated as he sits in her seat.,punches into someone's face so that she can not cover their face.,draws a cigar and draws his gun.,\"comes over to her, leaving the people to their admiration of the countryside.\",3\n19656,lsmdc1044_Pride_And_Prejudice_Disk_Two-89673,458,He walks off and someone takes someone's arm. They,He walks off and someone takes someone's arm.,They,gold,\"set off after people, who are walking a few paces ahead.\",wording animates on screen and screen and silly with it.,gun drops from his grasp.,\"him, his throat gets dead.\",0\n19657,lsmdc3022_DINNER_FOR_SCHMUCKS-10571,16712,He takes out a case containing stuffed mice in Evolution of Man style poses. The final mouse,He takes out a case containing stuffed mice in Evolution of Man style poses.,The final mouse,gold,holds a sheet of paper.,stops to look the fish all back on the young then licks his fingers.,looks quizzically in a combed veet belt out of his shirt.,walks past the flower's left side to tip his board.,0\n19658,lsmdc3022_DINNER_FOR_SCHMUCKS-10571,16711,\"Unsettled, everyone pushes their plates away except someone, who tucks in. Someone\",\"Unsettled, everyone pushes their plates away except someone, who tucks in.\",Someone,gold,walks over to the chest from his workshop.,plots through further money.,leans back in pain and waits on his crawling towards the ground.,books someone grabs someone.,0\n19659,anetv_eAFFf5cSX5c,11417,A man and a woman perform various dance moves back and fourth in an empty room. The couple,A man and a woman perform various dance moves back and fourth in an empty room.,The couple,gold,continue to spin and perform the tango routine while the man spins her around behind him.,jumps across from the mat.,climbs inside and performs a routine in unison.,walks away while laughing and putting out their arms and around their backs.,0\n19660,anetv_GrACpo7aonA,15059,Edrum attic logo and title card appear. A man in a black polo shirt,Edrum attic logo and title card appear.,A man in a black polo shirt,gold,is sitting in front of an electronic drum set.,walks with the transparent disc that plays on the ice.,does a big spin.,grabs clothes with headphones.,0\n19661,anetv_GrACpo7aonA,16285,Several close ups are shown of various equipment. The photos,Several close ups are shown of various equipment.,The photos,gold,show their officials doing the exercises and ropes.,are shown of the weight instructor.,are shown and every one across them talks.,flash by very fast.,3\n19662,anetv_GrACpo7aonA,15060,A man in a black polo shirt is sitting in front of an electronic drum set. The tutorial,A man in a black polo shirt is sitting in front of an electronic drum set.,The tutorial,gold,starts by showing each part of the drum set up close.,is replayed in slow motion.,is showing the man house playing and turns around for the camera.,moves to stop a panel of people from lifting any show the correct way for him to move.,0\n19663,anetv_GrACpo7aonA,15061,The tutorial starts by showing each part of the drum set up close. The man,The tutorial starts by showing each part of the drum set up close.,The man,gold,\"sets his guitar down in front of her, and laughs into her.\",starts every additional simple moving room and asks a woman how to return the bow.,begins to play the violin.,demonstrates each feature for the rest of the instructional video.,3\n19664,anetv_GrACpo7aonA,16286,The photos flash by very fast. A man,The photos flash by very fast.,A man,gold,wearing red someone lifts the card in the air.,blocks for another ornament.,is up over a white razor on his chest and runs to his left.,is seen playing an elaborate drum set.,3\n19665,lsmdc3051_NANNY_MCPHEE_RETURNS-24786,14764,\"Outside, the five children return with the piglets. Someone\",\"Outside, the five children return with the piglets.\",Someone,gold,\"dashes through the barn, someone trailing closely behind.\",sees her and frowns.,wheels a suitcase while someone finds his wallet.,reaches for the attendant.,0\n19666,lsmdc3051_NANNY_MCPHEE_RETURNS-24786,14767,\"Smiling, the farmer opens the cart. Someone\",\"Smiling, the farmer opens the cart.\",Someone,gold,joins the children at the cart.,\"'s clock show half, zero.\",strolls down the hall towards his brother.,still flies a joint across the table across the body of someone.,0\n19667,lsmdc3051_NANNY_MCPHEE_RETURNS-24786,14769,\"He jerks his feet lose from the deep mud, runs through the barn and dashes out of sight. Someone\",\"He jerks his feet lose from the deep mud, runs through the barn and dashes out of sight.\",Someone,gold,scowls at the money.,\"heads toward a fence, some cases torn from loose panties from someone's briefcase.\",digs out someone's gun and ventures on from it.,points to a check and sees it wearing a black suit.,0\n19668,lsmdc3051_NANNY_MCPHEE_RETURNS-24786,14765,\"Someone dashes through the barn, someone trailing closely behind. He\",\"Someone dashes through the barn, someone trailing closely behind.\",He,gold,walks through heavy snow.,sways to a short patch of grass bordering the tree.,stares wide - eyed.,sees someone running through the house.,2\n19669,anetv_cau489T9DLE,17512,Men are running on a side of the woman. women,Men are running on a side of the woman.,women,gold,are turning the cake in ornaments.,enter to a room.,hit a red ball to hit the pool.,walk to the camera leading the class.,1\n19670,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9677,Someone talks to Snowy as they walk. A burly man,Someone talks to Snowy as they walk.,A burly man,gold,enters the back desk to begin out.,\"presses a rag over someone's face, then shoves him into a crate.\",peers through the computer surveillance screen at his onesie.,remains dead keeping his face grim.,1\n19671,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9679,Snowy bites the man's bottom. He,Snowy bites the man's bottom.,He,gold,shuts snowy in the apartment building.,hurls his regretful gaze at someone who gently pins him against his back.,picks up the remote and puts on a headset.,closes his eyes and wipes his face in an ultrasound expression.,0\n19672,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9692,He locates the van which sits parked with its back doors flung open. The crane,He locates the van which sits parked with its back doors flung open.,The crane,gold,\"lifts the crate, which is stamped karaboudjan, onto a cargo ship baring the same name.\",drives the shaft through the grand cemetery.,touches the milling train and parks in the middle of the entrance marked the hotel.,looks over at the play.,0\n19673,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9680,He shuts Snowy in the apartment building. Snowy,He shuts Snowy in the apartment building.,Snowy,gold,steps toward someone's mansion.,steps out of the garage.,raises his hand to the radio.,bounds upstairs and runs into someone's apartment.,3\n19674,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9673,The thief hurries up the foggy street. Someone,The thief hurries up the foggy street.,Someone,gold,streaks past the damaged ankle.,sees a small man standing in his tracks as he stands silhouetted in the sun.,has the gun dangling from.,\"runs into the road as a car emerges from the mist, narrowly missing him.\",3\n19675,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9671,\"The other inspector grabs the thief's coat, but runs into a lamp post. Someone\",\"The other inspector grabs the thief's coat, but runs into a lamp post.\",Someone,gold,sets out into the thick fog and bumps into the thief coming the other way.,they spin around him again as it explodes all.,ushers someone in as people enter his way.,\"leaps into the automaton and pulls himself onto a railing, pulling to stifle a deep sigh.\",0\n19676,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9691,Several cows lift their heads and widened their eyes as Snowy races under them. He,Several cows lift their heads and widened their eyes as Snowy races under them.,He,gold,locates the van which sits parked with its back doors flung open.,ducks and springs to move back into her trailer.,pulls hoses onto their front lapels and pulls the gate.,gives another pig a thumbs up.,0\n19677,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9690,Snowy raises his head and hits it on the cows utters. Several cows,Snowy raises his head and hits it on the cows utters.,Several cows,gold,fall into the abyss and the explosion smashes into the water.,are thrown by the gates.,lie at all behind him.,lift their heads and widened their eyes as snowy races under them.,3\n19678,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9678,\"A burly man presses a rag over someone's face, then shoves him into a crate. Snowy\",\"A burly man presses a rag over someone's face, then shoves him into a crate.\",Snowy,gold,gets to the ground and runs back.,lifts the weight from his head.,bites the man's bottom.,plods into the living room and sets down his slippers.,2\n19679,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9681,Snowy bounds upstairs and runs into someone's apartment. He,Snowy bounds upstairs and runs into someone's apartment.,He,gold,is at that pretty colonel's photo set.,watches from outside onto the paddy field of guard guards.,grabs her bag and tucking her into a hug.,\"hops over a pair of chairs, then leaps onto a window sill.\",3\n19680,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9666,Someone takes one of the inspectors' wallets. It,Someone takes one of the inspectors' wallets.,It,gold,thumping the raft aboard the water makes it trip through two more groups and down a chimney trapdoor.,overflows and someone grows forced.,is watching the beach openly unpleasantly.,'s attached to a string.,3\n19681,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9688,\"Snowy chases after the van then jumps into a small wagon, towed by a bicyclist. They\",\"Snowy chases after the van then jumps into a small wagon, towed by a bicyclist.\",They,gold,walk into the kitchen.,stop as officers surrounding it.,tread along the dining room to avoid the sultan.,pass a street sign.,3\n19682,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9665,The inspectors leave without the newspaper. Someone,The inspectors leave without the newspaper.,Someone,gold,holds up someone's wrist and smiles.,'s dark hair does n't solve fumbling.,leans into the wealthy wall and whispers through his shoulder.,takes one of the inspectors' wallets.,3\n19683,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9674,\"Someone runs into the road as a car emerges from the mist, narrowly missing him. Other cars\",\"Someone runs into the road as a car emerges from the mist, narrowly missing him.\",Other cars,gold,pass him in mid - air.,speed up beneath him as the tank driver staggers out of the corner.,swerve on all sides.,arrive at the owner of the retirement home.,2\n19684,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9676,\"Using their hooked canes, the inspectors pull Snowy and someone off the road. Someone\",\"Using their hooked canes, the inspectors pull Snowy and someone off the road.\",Someone,gold,scrambles to meet someone in the doorway.,talks to snowy as they walk.,leaps out of the plane and peers after them.,brings his finger up and down.,1\n19685,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9670,The wallet snaps back and smacks him in the face. The other inspector,The wallet snaps back and smacks him in the face.,The other inspector,gold,\"grabs the thief's coat, but runs into a lamp post.\",peers over his shoulder.,hands the receiver to someone's mouth.,pinches his nose and exhales.,0\n19686,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9693,\"The crane lifts the crate, which is stamped Karaboudjan, onto a cargo ship baring the same name. Later the ship\",\"The crane lifts the crate, which is stamped Karaboudjan, onto a cargo ship baring the same name.\",Later the ship,gold,leads someone and someone out into a floating flowing stream.,\"lies in two, chained, treelike a brass, yawning after one.\",glides down onto the smooth edge of the board.,steams out of the harbor and into the ocean.,3\n19687,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9672,Someone sets out into the thick fog and bumps into the thief coming the other way. The thief,Someone sets out into the thick fog and bumps into the thief coming the other way.,The thief,gold,\"carries her pistol, then mouth open so she can find something above her.\",pauses and style the inside of the hunter.,hurries up the foggy street.,slides the car up open and cries out in relief.,2\n19688,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9685,Snowy's legs dangle in front of the van's windshield. He,Snowy's legs dangle in front of the van's windshield.,He,gold,shoots the helicopter in the air.,drops onto the hood.,presses his lips together as he eyes the pan of potatoes.,swings at his brother.,1\n19689,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9682,\"He hops over a pair of chairs, then leaps onto a window sill. Snowy\",\"He hops over a pair of chairs, then leaps onto a window sill.\",Snowy,gold,\"arrives, catching a glimpse of someone passing in handed to the hole who waits next to someone.\",stuck backward in his chest.,\", someone holds someone's hand over his mouth.\",leaps on top of a passing fire truck.,3\n19690,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9687,Snowy slides on the hood as the van veers through traffic. Snowy,Snowy slides on the hood as the van veers through traffic.,Snowy,gold,tumbles onto the street as the van turns sharply.,\"runs with his gun, clinging by someone's flapping.\",runs across the street where someone follow her.,runs across the barn.,0\n19691,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9683,Snowy leaps on top of a passing fire truck. As the fire truck behind it skids to a halt its ladder,Snowy leaps on top of a passing fire truck.,As the fire truck behind it skids to a halt its ladder,gold,extends out over the van.,collapses over a fallen tree.,has been taken out by a few troopers and flying axes.,lies along the gravel.,0\n19692,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9689,\"As the van makes another sharp turn, Snowy leaps out of the wagon and onto the fence of a livestock pen. Snowy\",\"As the van makes another sharp turn, Snowy leaps out of the wagon and onto the fence of a livestock pen.\",Snowy,gold,fires his car device as he regains his footing and roars out from behind the other cars.,fires his radio as it rolls on its tail and falls out onto the ground.,runs down the holes while being chased by an explosion.,\"jumps onto the back of a cow, which kicks him beneath another cow.\",3\n19693,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9667,It's attached to a string. The inspectors,It's attached to a string.,The inspectors,gold,trade blank posts as he closes in.,\"tip their bowlers, then walk off.\",\"stand outside under the beam, smiling.\",stare around and drive between the rows of inflatable sofas.,1\n19694,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9668,A man follows the inspectors. The goateed pickpocket,A man follows the inspectors.,The goateed pickpocket,gold,\"ushers someone away, then makes his way to the dock.\",steals the inspector's wallet and runs off dragging him by the elastic cord.,puts his piece of someone's clothing on the floor.,picks up a phone in a certificate.,1\n19695,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9675,\"Other cars swerve on all sides. Using their hooked canes, the inspectors\",Other cars swerve on all sides.,\"Using their hooked canes, the inspectors\",gold,burst through the hole to sneak out.,slide shut and glimmer on red.,pull snowy and someone off the road.,turn to watch in her wake.,2\n19696,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9669,The goateed pickpocket steals the inspector's wallet and runs off dragging him by the elastic cord. The wallet,The goateed pickpocket steals the inspector's wallet and runs off dragging him by the elastic cord.,The wallet,gold,\"softens after it, then hands for his drink.\",snaps back and smacks him in the face.,flicks on a cloth and reads.,lands in side of desk with a hard expression.,1\n19697,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9684,As the fire truck behind it skids to a halt its ladder extends out over the van. Snowy's legs,As the fire truck behind it skids to a halt its ladder extends out over the van.,Snowy's legs,gold,dangle in front of the van's windshield.,heave as he slides down on his knees.,fly as it cruises alongside the willow.,move around from the stream of animals on the ground.,0\n19698,lsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9686,He drops onto the hood. Snowy,He drops onto the hood.,Snowy,gold,slides on the hood as the van veers through traffic.,turns on his check - shaped pickup.,puts it off on both feet.,lies on the floor.,0\n19699,lsmdc1015_27_Dresses-79807,17986,\"Later, he strides into the newspaper offices and approaches someone. He\",\"Later, he strides into the newspaper offices and approaches someone.\",He,gold,\"leaves, angry and frustrated.\",holds up his glasses and a beer.,opens the door on his steps and strides through the front door.,\"cover the note with a paper, and he removes the radio.\",0\n19700,lsmdc1015_27_Dresses-79807,17983,\"Someone crumples up the paper, throws it at someone, and leaves. She\",\"Someone crumples up the paper, throws it at someone, and leaves.\",She,gold,\"stares at him with bitter disappointment, then turns on her heel and leaves.\",\"pulls back onto a wall, pins its up to its door, and disappears in time to the chamber.\",does it pretty good.,\"looks over toward the car, then goes out the door, looking for a second youth.\",0\n19701,lsmdc1015_27_Dresses-79807,17987,\"He leaves, angry and frustrated. Someone\",\"He leaves, angry and frustrated.\",Someone,gold,arrives at her apartment.,kicks a bed between them.,\"sits behind him first, then glances over the courtyard.\",rips through the lateral floorboards.,0\n19702,lsmdc1015_27_Dresses-79807,17984,\"She stares at him with bitter disappointment, then turns on her heel and leaves. He\",\"She stares at him with bitter disappointment, then turns on her heel and leaves.\",He,gold,takes someone by the hand and hugs him tightly.,\"removes his shades and peers back at the lone rider as he starts past, smiling.\",\"glances at someone, then gets closer.\",\"walks back to the diner, his face in his hands.\",3\n19703,lsmdc1015_27_Dresses-79807,17985,\"He walks back to the diner, his face in his hands. Later, he\",\"He walks back to the diner, his face in his hands.\",\"Later, he\",gold,lies someone down on the bed with a light covering his face with pierced streaks.,drives off with someone at an amusement park.,strides into the newspaper offices and approaches someone.,walks up past his new friends.,2\n19704,anetv_GyBIC-DBoss,11429,The woman picked up the barbell pause at her chest and then push the barbell up. The woman,The woman picked up the barbell pause at her chest and then push the barbell up.,The woman,gold,does a hand stand.,put down the barbell on the floor.,positions the weights in the end.,turns to to her feet and walks along the machine.,1\n19705,anetv_GyBIC-DBoss,6226,She bends down and picks up a large weight over her head several times. She,She bends down and picks up a large weight over her head several times.,She,gold,picks up a ball and uses it to get it in slow motion.,continues to move her body around and end by lifting her arms to her sides.,drops the weight onto the mat.,\"picks up weights, ends the weight to the middle of the floor and slams it over her stomach.\",2\n19706,anetv_GyBIC-DBoss,6225,A woman in a pink shirt is standing on a mat. She,A woman in a pink shirt is standing on a mat.,She,gold,bends down and picks up a large weight over her head several times.,sits on a mat holding a microphone in front of her.,takes off a black dress and runs back to a jump on the horse.,lays down in front of the camera.,0\n19707,anetv_GyBIC-DBoss,11430,The woman put down the barbell on the floor. The woman,The woman put down the barbell on the floor.,The woman,gold,put the weight weight over it.,slowly solves the cube.,lifted the weight up on her head and put the weight on it but spread it and take it.,\"picked up the barbell, pushed the barbell up, put the barbell down and let it go then do it again.\",3\n19708,anetv_Sk1RSHPavBU,2358,We see men playing soccer in the sand. The ball enters and everyone,We see men playing soccer in the sand.,The ball enters and everyone,gold,holds the ball while standing in its arms.,is measured to adults.,runs towards the ball.,seems to be very excited.,2\n19709,anetv_Sk1RSHPavBU,2359,The ball enters and everyone runs towards the ball. A man on the right,The ball enters and everyone runs towards the ball.,A man on the right,gold,puts a red ball on the ground.,jumps off the pool board and walks across the lane.,kicks the ball into the goal.,makes the same shot shown volleyball over the net again.,2\n19710,anetv_DguywhRJ7ds,13019,A person walks up to the side of a pool. They,A person walks up to the side of a pool.,They,gold,\"ride the sail fish into a lake, paddling slowly.\",walk in a dark room with their hands in hand pockets.,hit a ball back and forth.,dive off the diving board into the water.,3\n19711,anetv_DguywhRJ7ds,1958,A girl springs forward on a diving board. The girl,A girl springs forward on a diving board.,The girl,gold,jumps on the diving board on the water.,dismounts and lands on a chair in front of the diver.,bounces on the edge of the diving board.,jumps off balance as she dives into the pool.,2\n19712,anetv_DguywhRJ7ds,1959,The girl bounces on the edge of the diving board. The girl,The girl bounces on the edge of the diving board.,The girl,gold,dives into the water to catch the air ball.,dives off the water and falls backwards right into the pool.,dives on the diving board under the water.,dives into the pool in front of her.,3\n19713,anetv_DguywhRJ7ds,13020,They dive off the diving board into the water. They,They dive off the diving board into the water.,They,gold,sail over here and rub the boat.,spins the puck quickly from the competition while it's covered in water.,get out of the pool and swim to swim around.,make a splash as they hit the water below.,3\n19714,anetv_uMAjCPUZfp0,3838,Several clips are shown of various people fencing with one another. The people,Several clips are shown of various people fencing with one another.,The people,gold,continue to move around the object while others watch on the side.,continue moving back and fourth while the camera zooms in on the people playing.,walk around on the playground steps and end.,continue riding around on dirt bikes as well as running away as well as women attempting to ride the lift.,1\n19715,anetv_TkNCytAQ5cw,9068,A woman is hosting a news segment that leads into clips of people working on the streets and protesting. Several women,A woman is hosting a news segment that leads into clips of people working on the streets and protesting.,Several women,gold,are also interviewed in the news area and leads into various areas of people being ins and performing tricks in an area.,are seen attempting to the camera at different angles.,are shown in a public cubicle and also parts being shown in the same location.,are interviewed by the camera and shows more clips of people working and protesting.,3\n19716,lsmdc3088_WHATS_YOUR_NUMBER-42311,1889,\"She uses her cell phone. Now, a magazine clipping\",She uses her cell phone.,\"Now, a magazine clipping\",gold,features a model with a poufy updo.,hits the haul 'computer.,\"mirror shows her exiting a cafe as someone reads, missed call.\",shows a sketch of two attractive people watching her from the wall.,0\n19717,lsmdc3088_WHATS_YOUR_NUMBER-42311,1892,\"A hand pulls a suit jacket from a rack. At someone's, another magazine photo\",A hand pulls a suit jacket from a rack.,\"At someone's, another magazine photo\",gold,shows a halfway live brief look.,shows a sleek ponytail.,is the insurance warrior.,appears on someone's bosom.,1\n19718,lsmdc3088_WHATS_YOUR_NUMBER-42311,1891,\"In a closet, our view sweeps over a selection of expensive men's clothes. A hand\",\"In a closet, our view sweeps over a selection of expensive men's clothes.\",A hand,gold,shows the back of someone's shoulders.,reaches for the flower.,pulls a suit jacket from a rack.,\"falls to the floor, a massive drop of blood dancing across the face.\",2\n19719,lsmdc3088_WHATS_YOUR_NUMBER-42311,1887,Someone paints a sculpture of a bride and groom standing at a wedding. Someone,Someone paints a sculpture of a bride and groom standing at a wedding.,Someone,gold,crouches over her and takes it.,pauses and shifts her gaze.,jogs up to the second woman.,meets someone's disapproving gaze.,1\n19720,lsmdc3088_WHATS_YOUR_NUMBER-42311,1902,She reaches back and pulls off the hairpiece. She,She reaches back and pulls off the hairpiece.,She,gold,throws it into the fountain.,eyes turn round and kiss her shoulder.,looks down as he gazes down.,bites someone's shoulder.,0\n19721,lsmdc3088_WHATS_YOUR_NUMBER-42311,1890,\"At a dressing table, someone faces a mirror as she backcombs her hair. In a closet, our view\",\"At a dressing table, someone faces a mirror as she backcombs her hair.\",\"In a closet, our view\",gold,\"finds briefly change the view, regarding her with an identical former model.\",caresses a mother's shoulder.,finds a girlish dancer in blonde bikini standing inside a blanket crossing.,sweeps over a selection of expensive men's clothes.,3\n19722,lsmdc3088_WHATS_YOUR_NUMBER-42311,1895,\"Someone picks up a blonde hair extension and brushes it out. Later, she\",Someone picks up a blonde hair extension and brushes it out.,\"Later, she\",gold,withdraws the banquette from the fridge and places it down.,sits in a sticky position by his wing holding uniform stand and considers.,smiles at the reflection of her long smooth ponytail and flounces it against her back.,runs alone.,2\n19723,lsmdc3088_WHATS_YOUR_NUMBER-42311,1893,\"Facing her mirror, the young woman copies the hairstyle. She\",\"Facing her mirror, the young woman copies the hairstyle.\",She,gold,checks her profile and gives a dissatisfied grimace.,takes off the square blouse.,sits there watching a doctor have his hands crying.,caresses the contact with her auburn hair.,0\n19724,lsmdc3088_WHATS_YOUR_NUMBER-42311,1897,\"In a rich man's closet, a hand pulls out a small drawer displaying a selection of expensive watches. He\",\"In a rich man's closet, a hand pulls out a small drawer displaying a selection of expensive watches.\",He,gold,smiles at someone then gives a thoughtful look.,catches it and places it on a desk.,picks one with a gold face.,delivers a towel to someone and notices them staring.,2\n19725,lsmdc3088_WHATS_YOUR_NUMBER-42311,1888,Someone pauses and shifts her gaze. She,Someone pauses and shifts her gaze.,She,gold,uses her cell phone.,takes her cell phone.,shakes her head and someone smiles.,sucks out of its smoke.,0\n19726,lsmdc3088_WHATS_YOUR_NUMBER-42311,1898,\"He picks one with a gold face. Scrutinizing her reflection, someone\",He picks one with a gold face.,\"Scrutinizing her reflection, someone\",gold,leans back against the lip of his desk and heads down the front steps.,tucks a price tag into the back of her slinky black dress.,mimes hitting it with his right hand.,clutches a repels condom.,1\n19727,lsmdc3088_WHATS_YOUR_NUMBER-42311,1899,\"Scrutinizing her reflection, someone tucks a price tag into the back of her slinky black dress. Now at an upscale restaurant, a fountain\",\"Scrutinizing her reflection, someone tucks a price tag into the back of her slinky black dress.\",\"Now at an upscale restaurant, a fountain\",gold,stands amid softly lit tables.,puts chocolate on her face.,eats at the curb as a manager comes out.,is hovering among the encampment.,0\n19728,lsmdc3088_WHATS_YOUR_NUMBER-42311,1900,\"Now at an upscale restaurant, a fountain stands amid softly lit tables. Someone\",\"Now at an upscale restaurant, a fountain stands amid softly lit tables.\",Someone,gold,\"sits alone at one of them, nibbling on a dinner roll.\",sits on a sofa.,takes pictures in the kitchen displays her other cards.,smacks her in the living area as she mutters feverishly.,0\n19729,lsmdc3088_WHATS_YOUR_NUMBER-42311,1901,Someone pauses and turns to greet an acquaintance. Someone,Someone pauses and turns to greet an acquaintance.,Someone,gold,\"frowns, sniffing the air, and looks around.\",\"is a calm, elderly couple.\",contemplates the place but with different formations.,'s two begin to ring.,0\n19730,lsmdc0005_Chinatown-48127,10136,One of the men turns and sees someone. He,One of the men turns and sees someone.,He,gold,\"leaps into the air, falling backwards with his free hand.\",looks at his bottom and nods.,attacks him repeatedly with their legs wrapped around his while his lips stop in front of his flesh.,recognizes someone and is visibly shocked.,3\n19731,lsmdc0005_Chinatown-48127,10139,The men around them are extremely uneasy. They,The men around them are extremely uneasy.,They,gold,are going back and forth in the cars.,talk to each other for a match.,walk a couple of steps.,are holding a discus in front of each other.,2\n19732,lsmdc0005_Chinatown-48127,10138,\"At the sound of his raised voice, a man standing at the edge of the channel, talking to two boys in swimming trunks, turns around. Both people\",\"At the sound of his raised voice, a man standing at the edge of the channel, talking to two boys in swimming trunks, turns around.\",Both people,gold,do both glances back with concern.,are still staring out at one of the rose trees.,are camping in the midst of the desert.,register considerable surprise at seeing one another.,3\n19733,lsmdc0005_Chinatown-48127,10132,\"He fishes out one of someone's cards from his handkerchief pocket, hands it to the Guard. Someone\",\"He fishes out one of someone's cards from his handkerchief pocket, hands it to the Guard.\",Someone,gold,finds him on cash.,\"drives past the guards, through the gate, along the reservoir.\",drinks from a wooden shaft.,parries his blows and strikes again.,1\n19734,lsmdc0005_Chinatown-48127,10133,\"Someone drives past the Guards, through the gate, along the reservoir. Someone\",\"Someone drives past the Guards, through the gate, along the reservoir.\",Someone,gold,\"looms over them as it opens a gate, peers across the gate.\",stops and gets out of the car.,stops at the gate landing in the trunk.,wears toting a key over his bag.,1\n19735,lsmdc0005_Chinatown-48127,10130,\"One a rescue truck, are at the entrance to the reservoir. The chain link fence with its keep out sign is open and there\",\"One a rescue truck, are at the entrance to the reservoir.\",The chain link fence with its keep out sign is open and there,gold,is the squad car lying on it.,are a sticks stacked on a yellow mound.,are people milling around.,are several spectators staring out of them as if wincing with emotion.,2\n19736,lsmdc0005_Chinatown-48127,10129,\"Someone drives up a winding road, following a flood channel up into the parched hills. One a rescue truck,\",\"Someone drives up a winding road, following a flood channel up into the parched hills.\",\"One a rescue truck,\",gold,are at the entrance to the reservoir.,slows down as the car travels up a hill.,someone hurries up to a control van and struts to the air vehicle.,a huge human hand follows the hunter out and bowls floats and recoils.,0\n19737,lsmdc0005_Chinatown-48127,10137,He recognizes someone and is visibly shocked. Someone,He recognizes someone and is visibly shocked.,Someone,gold,\"looks to horrified, is empty of space.\",tries to ease him down the path.,pretends to touch him.,is clearly forced to answer.,1\n19738,lsmdc0005_Chinatown-48127,10135,\"Several men with their backs turned, one talking quietly, staring down into the reservoir where other men in small skiffs are apparently dredging for something. One of the men\",\"Several men with their backs turned, one talking quietly, staring down into the reservoir where other men in small skiffs are apparently dredging for something.\",One of the men,gold,turns and sees someone.,\"slowly takes off, followed by someone, who of the huge rock.\",gets off the mountain to get in.,kills a man and walks out the front of the roof.,0\n19739,lsmdc0005_Chinatown-48127,10131,Someone 'car is stopped by a couple of uniformed police. He,Someone 'car is stopped by a couple of uniformed police.,He,gold,dribbles around crooked phone of bugs.,pulls up a broom and pulls him out on a dirt road.,is still staring at the door as he goes into the lobby and stops to look up as someone walks up the front steps.,\"fishes out one of someone's cards from his handkerchief pocket, hands it to the guard.\",3\n19740,lsmdc0005_Chinatown-48127,10134,Someone stops and gets out of the car. He,Someone stops and gets out of the car.,He,gold,\"runs contemptuously in the road and reacts, swooping over to the other window, and reveals his broomstick hundreds of float debris.\",\"drives back down the road, weaving in and out of nothing but burning brows and shabby trunk.\",walks past her and takes a seat.,spots a police car and an unmarked one as well.,3\n19741,lsmdc3038_ITS_COMPLICATED-17620,3395,He paces away from her as she gives a fleeting smile. He gives a gentle grin and she,He paces away from her as she gives a fleeting smile.,He gives a gentle grin and she,gold,rubs his supplies out.,share a sweet kiss.,sucks on her mouth.,gazes at him earnestly.,3\n19742,lsmdc3038_ITS_COMPLICATED-17620,3393,Someone locks eyes with him and he regretfully tightens his lips. She,Someone locks eyes with him and he regretfully tightens his lips.,She,gold,\"extracts a bulge in his wrist, then looks back.\",drops her eyes and shifts uncomfortably.,hands him a folder.,\"looks to someone, then drops his hat and rushes off.\",1\n19743,lsmdc3038_ITS_COMPLICATED-17620,3397,She sees his car parked across the front yard. She,She sees his car parked across the front yard.,She,gold,\"gets up, turns around, and does more.\",studies him through the window.,climbs a ladder and looks beside him.,\"throws his journals inside, then strides off.\",1\n19744,lsmdc3038_ITS_COMPLICATED-17620,3399,\"Someone climbs out of the suv and shuts the door keeping her eyes fixed. Someone treads closer, someone\",Someone climbs out of the suv and shuts the door keeping her eyes fixed.,\"Someone treads closer, someone\",gold,starts the hell away.,catches the figure affectionately.,scoots over inviting her to sit beside him.,reaches up and points her wand at them.,2\n19745,lsmdc3038_ITS_COMPLICATED-17620,3394,She drops her eyes and shifts uncomfortably. He,She drops her eyes and shifts uncomfortably.,He,gold,\"meets someone's gaze, then gives her a playful smile.\",\"meets her gaze then puts it down, and looks at them incredulously.\",\"tilts his head and stares at his boss, then shifts his weary gaze to someone as she finishes.\",paces away from her as she gives a fleeting smile.,3\n19746,lsmdc3038_ITS_COMPLICATED-17620,3398,She studies him through the window. Someone,She studies him through the window.,Someone,gold,\"models someone's front viewfinder before dancing, then back to someone.\",pulls a gun out of a wooden case and carries a flashlight.,\"sees the pamphlet, then turns on a vent area at the island.\",climbs out of the suv and shuts the door keeping her eyes fixed.,3\n19747,lsmdc3038_ITS_COMPLICATED-17620,3400,\"Someone treads closer, someone scoots over inviting her to sit beside him. Someone\",\"Someone treads closer, someone scoots over inviting her to sit beside him.\",Someone,gold,takes off her ticket and nods.,\"crosses the walkway, sets down her purse.\",\"faces the glass and rubs away the martini glass, as he studies ahead blankly.\",strides away from the goblet as she leads them down white - colored streets.,1\n19748,anetv_5Q8ltS84BBg,3933,The kid grabs a guitar and start playing it and singing. kid,The kid grabs a guitar and start playing it and singing.,kid,gold,is playing the guitar and talking to the camera in a small room.,hear a guitar and climber playing a song on the violin table and talking to the camera as the kids continue playing the piano.,\"is standing on the sideline watching, some of the men are watching.\",\"is hanging out a large black box, laughing.\",0\n19749,anetv_5Q8ltS84BBg,3932,Kid is sitting in a red room talkin to the camera. the kid,Kid is sitting in a red room talkin to the camera.,the kid,gold,swings back and forth from a slide.,grabs a black colored blue shirt from the floor and picks it up.,approaches with the other boys behind them.,grabs a guitar and start playing it and singing.,3\n19750,anetv_AuS32BoK0Bg,15221,He grabs his skies and boards a lift. He,He grabs his skies and boards a lift.,He,gold,\"climbs all the way to the top, they race ashore and sees him coming around the vehicle.\",hangs up and someone puts it down by his friend.,is then shown skiing down various hills and mountains.,smiles in excitement as he slips into the waters.,2\n19751,lsmdc3082_TITANIC1-38710,3960,People slide and topple down the slanting deck. Someone,People slide and topple down the slanting deck.,Someone,gold,shoots someone on the upper deck.,climbs over the railing at the back of the ship as it tips skyward rapidly.,\", someone holds her hand.\",screeches to a stop.,1\n19752,lsmdc3082_TITANIC1-38710,3976,Someone grabs on to someone's life vest but is swept away by the turbulence. Someone,Someone grabs on to someone's life vest but is swept away by the turbulence.,Someone,gold,\"holds onto a blanket, straightens a tiny, cia agent's bedside watch.\",throws up his jacket.,reverses down the stairs.,kicks to the surface and emerges amid other flailing survivors.,3\n19753,lsmdc3082_TITANIC1-38710,3963,Someone and a few other passengers manage to scramble over the railing as the ship tips completely vertical. Someone and someone,Someone and a few other passengers manage to scramble over the railing as the ship tips completely vertical.,Someone and someone,gold,watch as four more passengers leap into the water toward someone's house.,lie on their stomachs and stare straight down the deck.,joyfully give a big wave.,\"lift his heads aside to reveal an army of warrior children walking on the floor as barren, and ships.\",1\n19754,lsmdc3082_TITANIC1-38710,3969,Dozens of passenger still dangle from poles or lie against railings and staircases on the vertical deck. Someone,Dozens of passenger still dangle from poles or lie against railings and staircases on the vertical deck.,Someone,gold,\"rises from his chair, squats down as he looks out over the plane.\",inspects the frosted metal.,hangs off his sullen glasses.,keeps one arm wrapped around someone as they descend toward the water.,3\n19755,lsmdc3082_TITANIC1-38710,3959,\"As the front half of the Titanic rapidly fills with water and sinks, it pulls the back half into the air again. People\",\"As the front half of the Titanic rapidly fills with water and sinks, it pulls the back half into the air again.\",People,gold,had been caught with the frenchman's dropped shoes and he walks away respectfully and releases the boat around the pirate group.,is hearing the rumble of the the drill.,is stepping forward and perform a twirl.,slide and topple down the slanting deck.,3\n19756,lsmdc3082_TITANIC1-38710,3964,\"Someone and someone lie on their stomachs and stare straight down the deck. People dangling from railings,\",Someone and someone lie on their stomachs and stare straight down the deck.,\"People dangling from railings,\",gold,look wistfully in the distance.,lose their grips and fall.,\"fetal position, wait.\",\"arrive at a high cliff, and walks across the quad.\",1\n19757,lsmdc3082_TITANIC1-38710,3962,Someone pulls someone up to him. Someone and a few other passengers,Someone pulls someone up to him.,Someone and a few other passengers,gold,\"rush out to distract him, ride his arms to one side, engulfs him.\",notice the ruins then continue for second race.,climb on the lift and bend down to the top of a river.,manage to scramble over the railing as the ship tips completely vertical.,3\n19758,lsmdc3082_TITANIC1-38710,3967,He returns her silent gaze. Rising air pressure,He returns her silent gaze.,Rising air pressure,gold,\"lifts her hips, which features emotionally, and his face twists.\",washes her half metal sign.,blows out a view in the sky.,blows water out of compartments and windows as they become submerged.,3\n19759,lsmdc3082_TITANIC1-38710,3966,\"Her breath visible in the cold air, someone turns to the baker who crouches on the railing beside her. He\",\"Her breath visible in the cold air, someone turns to the baker who crouches on the railing beside her.\",He,gold,holds the phone to his ear.,returns her silent gaze.,turns her onto her side and inspects the nurses derby dress silk bridal gown.,duck ahead a grow a bit.,1\n19760,lsmdc3082_TITANIC1-38710,3968,The ocean roils around the ship as it sinks deeper. Dozens of passenger still,The ocean roils around the ship as it sinks deeper.,Dozens of passenger still,gold,spheres lie outside the ship.,block sailors tell competitively their orders.,dangle from poles or lie against railings and staircases on the vertical deck.,appears on computer screens.,2\n19761,lsmdc3082_TITANIC1-38710,3961,Someone climbs over the railing at the back of the ship as it tips skyward rapidly. Someone,Someone climbs over the railing at the back of the ship as it tips skyward rapidly.,Someone,gold,pulls someone up to him.,watches the ship as the arena of will smash onto the ship.,\"watches someone, then snaps it shut and rides forward.\",presses a pair of shears across the woman's lips.,0\n19762,lsmdc3082_TITANIC1-38710,3970,Someone keeps one arm wrapped around someone as they descend toward the water. One man,Someone keeps one arm wrapped around someone as they descend toward the water.,One man,gold,starts shove towards the roof.,\"is on a boat, surrounded by photos of his other companions.\",draws a deep breath and turns around to adjust his transparent hands.,slips off a pole and spins as he bounces off a railing.,3\n19763,lsmdc3082_TITANIC1-38710,3973,Waves swirl around the name. Someone and someone,Waves swirl around the name.,Someone and someone,gold,hold shoulder.,take deep gulps of air as the tail end of the ship sinks beneath the surface.,assemble as a practice with martial arts.,enter and two policemen stroll closer to her.,1\n19764,lsmdc3082_TITANIC1-38710,3971,One man slips off a pole and spins as he bounces off a railing. Some people behind the ship,One man slips off a pole and spins as he bounces off a railing.,Some people behind the ship,gold,enters forward and celebrates.,swing back to the dock.,try to swim clear as the massive propellers sink below the surface.,stand and pose in momentum.,2\n19765,lsmdc3082_TITANIC1-38710,3975,\"Underwater, someone and someone hold hands as they tumble in the jostling currents. Someone\",\"Underwater, someone and someone hold hands as they tumble in the jostling currents.\",Someone,gold,grabs on to someone's life vest but is swept away by the turbulence.,hikes away into the crowd.,\"'s surfboard hands drift back to her laotong as she steps out, clutching the boy with her hands.\",comes down the hall.,0\n19766,lsmdc3082_TITANIC1-38710,3972,Some people behind the ship try to swim clear as the massive propellers sink below the surface. Someone and someone,Some people behind the ship try to swim clear as the massive propellers sink below the surface.,Someone and someone,gold,shoot out of the unisphere.,hold hands as they kneel beside one another.,make his way to more feet from the edge.,\"fly over the tiles, landing on a fake boulder at one end.\",1\n19767,lsmdc3082_TITANIC1-38710,3974,\"Someone and someone take deep gulps of air as the tail end of the ship sinks beneath the surface. Underwater, someone and someone\",Someone and someone take deep gulps of air as the tail end of the ship sinks beneath the surface.,\"Underwater, someone and someone\",gold,jump into a silk section.,gather in under a chair water.,step through a doorway.,hold hands as they tumble in the jostling currents.,3\n19768,lsmdc3082_TITANIC1-38710,3965,\"One man bounces off a capstan before slamming into other people hanging on below. Her breath visible in the cold air, someone\",One man bounces off a capstan before slamming into other people hanging on below.,\"Her breath visible in the cold air, someone\",gold,catches a smile trick standing at the end of a highway.,turns to the baker who crouches on the railing beside her.,\", someone and someone ride in the flames by the house.\",descends into her abandoned classroom.,1\n19769,lsmdc3082_TITANIC1-38710,3958,\"The last of the funnels topples over. As the front half of the Titanic rapidly fills with water and sinks, it\",The last of the funnels topples over.,\"As the front half of the Titanic rapidly fills with water and sinks, it\",gold,hurtle through the air toward the helipad.,grabs the space under someone's feet.,\"passes him, along the river - deep shore.\",pulls the back half into the air again.,3\n19770,anetv_uG_G4g6ixms,13641,A man is riding on a horse. He,A man is riding on a horse.,He,gold,runs after a calf and ties its legs.,\"talks about the parallel bars, does several flips and tricks with jumps.\",grabs a calf in the air.,is paddling down a slope off of the water.,0\n19771,anetv_uG_G4g6ixms,13172,A man is on a horse on a farm next to a farmer. The horse,A man is on a horse on a farm next to a farmer.,The horse,gold,is holding a clipboard.,is attached to an string around his calf.,runs out of the gate.,gets too tied to the bull.,2\n19772,anetv_uG_G4g6ixms,13642,He runs after a calf and ties its legs. He then,He runs after a calf and ties its legs.,He then,gold,gets back up onto his horse.,jumps off the horse and walks away.,returns to the gate and ties it up.,jumps from the edge and lands on the bottom.,0\n19773,anetv_uG_G4g6ixms,13643,He then gets back up onto his horse. Another man,He then gets back up onto his horse.,Another man,gold,is seen doing black with the shaver and shaving his head with a rag.,sits on the floor.,unties the legs of the calf.,walks up to a skateboard on his shirt for the second time.,2\n19774,anetv_uG_G4g6ixms,13174,It stops and throws the man onto the ground. The small calf,It stops and throws the man onto the ground.,The small calf,gold,runs after the tug and keep going.,is seen running towards the person jumping off the beam.,lies on the ground as another man goes to help.,is released and lands in a sand pit.,2\n19775,anetv_uG_G4g6ixms,13173,The horse runs out of the gate. It,The horse runs out of the gate.,It,gold,falls on the rope platform.,'s in her hotel.,grabs the climbing rope.,stops and throws the man onto the ground.,3\n19776,lsmdc0030_The_Hustler-65126,3927,\"Defeated, someone turns and goes up the stairs. The men\",\"Defeated, someone turns and goes up the stairs.\",The men,gold,find themselves at the campsite.,leave and enter the office.,return to the table to continue their game.,pose outside a building's front window.,2\n19777,lsmdc0030_The_Hustler-65126,3928,\"The men return to the table to continue their game. Someone, deeply satisfied,\",The men return to the table to continue their game.,\"Someone, deeply satisfied,\",gold,takes the check facing him.,puts on his coat and sits to watch the action.,stares at them as they leave the church.,turns to someone and gives their uncle a loaded glance.,1\n19778,lsmdc0030_The_Hustler-65126,3926,\"A stunned someone moves to the billiard table. Defeated, someone\",A stunned someone moves to the billiard table.,\"Defeated, someone\",gold,\"with a shotgun subtle, someone drops rises and finds her sparse audience.\",turns and goes up the stairs.,turns and presses his wand towards the glass.,gets to his feet.,1\n19779,lsmdc0030_The_Hustler-65126,3929,\"Someone, deeply satisfied, puts on his coat and sits to watch the action. A shaken someone\",\"Someone, deeply satisfied, puts on his coat and sits to watch the action.\",A shaken someone,gold,flops into a leather swivel chair.,\"lowers the receiver to his ear while people talk on a street, as the music plays.\",points to the mob then claps as hands come out.,lifts his eyes to reveal someone faces.,0\n19780,lsmdc0030_The_Hustler-65126,3930,A shaken someone flops into a leather swivel chair. A bucket of iced champagne,A shaken someone flops into a leather swivel chair.,A bucket of iced champagne,gold,leads through a busy house.,falls against the side of a closed fire.,is crawling on the boot.,\"sits on the desk, ready to be emptied.\",3\n19781,lsmdc0030_The_Hustler-65126,3932,\"Someone puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him. Someone\",\"Someone puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him.\",Someone,gold,leans against a wall nearby.,\"gets up and looks down in the dark, right trunk of his forearm.\",\", someone cuddles her and they are up a lit ladder.\",claps and keeps taking his tea to the way to him.,0\n19782,lsmdc0030_The_Hustler-65126,3933,Someone leans against a wall nearby. He,Someone leans against a wall nearby.,He,gold,makes him a doll.,lies in his rear seat.,listens to the distant thud of the lake.,\"is quiet, morose.\",3\n19783,lsmdc0030_The_Hustler-65126,3931,\"A bucket of iced champagne sits on the desk, ready to be emptied. Someone\",\"A bucket of iced champagne sits on the desk, ready to be emptied.\",Someone,gold,shoves the smoking floor out of the running driver side door.,puts the glove on her.,is on an alarm board.,\"puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him.\",3\n19784,anetv_2OEa00knM9E,460,He then rides in on a horse and ropes up a calf with the rope. Several people,He then rides in on a horse and ropes up a calf with the rope.,Several people,gold,are shown performing tricks with the trainers as well as pictures jumping.,are shown riding in and roping up cattle while others watch on the side.,watch on his sides as the man tries to push him off.,ride around a bull while others watch on.,1\n19785,anetv_2OEa00knM9E,459,A man is seen sitting on a horse with a rope in his hands. He then,A man is seen sitting on a horse with a rope in his hands.,He then,gold,ties up another calf.,rides in on a horse and ropes up a calf with the rope.,ties the calf while walking around and hitting their calf and posing around.,holds up the calf and begins riding the horse while looking to the camera.,1\n19786,lsmdc3032_HOW_DO_YOU_KNOW-2139,13412,\"Later in an apartment, someone makes a call. His girlfriend\",\"Later in an apartment, someone makes a call.\",His girlfriend,gold,pulls out the phone.,picks up her hand.,mows open a stair rail by a laptop.,eyes him from behind a desk.,3\n19787,anetv_nPTq63WtemI,4848,An older man is seen kneeling in the middle of a gym with several people around him. The man,An older man is seen kneeling in the middle of a gym with several people around him.,The man,gold,begins cutting another boy down as well as walking around around the lawn.,lowers a bow and shows the class falling himself in his hands.,slides back and fourth while others watch on the side and continuing to play.,pulls on a piece of exercise equipment working his upper arms back and fourth.,3\n19788,lsmdc0026_The_Big_Fish-62274,14209,Someone leans over so someone can sign a contract on his back. He,Someone leans over so someone can sign a contract on his back.,He,gold,shakes his head as if he is dying.,grabs a bouquet of golden roses.,spots someone walking back into the tent.,grabs his jacket and takes a bite.,2\n19789,anetv_UgsqMLsPG0k,3416,The man walks back and forth smoothing the applied plaster. The man,The man walks back and forth smoothing the applied plaster.,The man,gold,walks to and turns off the camera.,grabs the rubber section of the carpet and pushes it.,twists his legs and kneels up to a stage.,makes a long jump back to the first class.,0\n19790,anetv_UgsqMLsPG0k,3415,The man then puts plaster on a base and applies it to the ceiling while on stilts. The man,The man then puts plaster on a base and applies it to the ceiling while on stilts.,The man,gold,uses an electric removal tool to wipe his shoe with a paper towel.,walks back and forth smoothing the applied plaster.,continues working on the tile while a man works on a wall.,walks on the tiles and sits back and talks before panning back to the screen.,1\n19791,anetv_UgsqMLsPG0k,3417,The man walks to and turns off the camera. We,The man walks to and turns off the camera.,We,gold,see the ending title screen.,to the side of still holding the cat on his hand.,shoot over the side in one of the houses alone.,see see in the screen.,0\n19792,anetv_yu1XjQUctiM,6513,A little boy is holding a tube of toothpaste. His mom,A little boy is holding a tube of toothpaste.,His mom,gold,holds out a rag in front of him and his leg.,holds the finger up to the machine.,helps him put it on his toothbrush.,sits down and shakes his hand.,2\n19793,anetv_yu1XjQUctiM,7644,A boy is standing next to a sink in a bathroom. He,A boy is standing next to a sink in a bathroom.,He,gold,is standing down under the sink with a rag.,\"shows another baby washing dishes, and pauses to put them in the sink.\",is holding a camera while talking to the camera.,puts toothpaste on a toothbrush and begins brushing his teeth.,3\n19794,anetv_yu1XjQUctiM,6514,His mom helps him put it on his toothbrush. The boy then,His mom helps him put it on his toothbrush.,The boy then,gold,begins shaving his bangs then.,uses the brush to brush his teeth.,gives a group of kids playing in the playground.,pours some food out of the table.,1\n19795,anetv_yu1XjQUctiM,7645,He puts toothpaste on a toothbrush and begins brushing his teeth. He,He puts toothpaste on a toothbrush and begins brushing his teeth.,He,gold,speaks to the camera while he continues to speak to the camera.,shows how to use it and wash it off next to him soap negative.,spits into the sink in front of him.,continues playing instruments while others watch on the side.,2\n19796,anetv_IcfWEKjl_AY,14037,Other kids slide on another slide in the playground. A toddler,Other kids slide on another slide in the playground.,A toddler,gold,slide down the ramp with the jump of their bike.,slide down the slide again and slide down the slide.,\"climbs a jungle gym, and then go down the slide.\",walks through the playground doing their routines.,2\n19797,anetv_IcfWEKjl_AY,14036,A boy stands from the bottom of a slide and walk away. Other kids,A boy stands from the bottom of a slide and walk away.,Other kids,gold,slide on another slide in the playground.,\"pull back, then the boy stands up and.\",are standing and wearing canoes in the water watching baby face on the beach.,and the kids are sliding going down the slide.,0\n19798,anetv_v7o9uSu9AVI,4311,He swings his legs and leaps with his arms across the parallel bars. A man,He swings his legs and leaps with his arms across the parallel bars.,A man,gold,\"spins and spins himself around, jumping onto the air.\",is pushed from a pole.,grabs it and does his routine.,does dips on the parallel bars.,3\n19799,anetv_v7o9uSu9AVI,4315,A man does dips with his body in front of the bar and legs swoops underneath the bar. He then,A man does dips with his body in front of the bar and legs swoops underneath the bar.,He then,gold,\"does a slow rise from every floor, then does the stands before dropping the bars of a video location which he seems.\",stands up and spins to celebrate the tips.,\"does pushups on the parallel bars, by going down, pushing forward, then up.\",mounts him on the ground and continues to get the daze back with the camera.,2\n19800,anetv_v7o9uSu9AVI,4325,He switches to doing a head stand and holds. A different man,He switches to doing a head stand and holds.,A different man,gold,shakes the object multiple times.,stands on stage showing how to remove your abdomen.,starts to swing his body from under the bars and presses himself up and over the bars.,explains to the man how to pull of the bike and take on tire and special jack.,2\n19801,anetv_v7o9uSu9AVI,4323,He then rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars. He,He then rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars.,He,gold,begins to do shoulder stands on the bars.,makes a split with the fellow punch and begins moving back with the two before going out.,steps onto his own shoulders and walks away.,\"falls sideways on the ground, dropping past his shoulders like the spring aid on top step.\",0\n19802,anetv_v7o9uSu9AVI,4314,\"He then starts to do dips down to his armpits on the parallel bars called Russian Dips, while keeping his legs in the air. A man\",\"He then starts to do dips down to his armpits on the parallel bars called Russian Dips, while keeping his legs in the air.\",A man,gold,does dips with his body in front of the bar and legs swoops underneath the bar.,\"is explaining his deck called the camera after he comes, doing the exercises.\",\"is seen wearing a red, top scarf and reading a corn white tool.\",is only underwater shooting wide eyes to make sure that he does not see the glider.,0\n19803,anetv_v7o9uSu9AVI,4316,\"He then does pushups on the parallel bars, by going down, pushing forward, then up. He\",\"He then does pushups on the parallel bars, by going down, pushing forward, then up.\",He,gold,\"begins to do pushups, with his knees tucked, with the parallel bars.\",continue to enter into the walls.,alternates up and down the track before a small bar.,hands leisurely jumping.,0\n19804,anetv_v7o9uSu9AVI,4322,A different man brings his legs straight up into a V - shape on the bars. He then,A different man brings his legs straight up into a V - shape on the bars.,He then,gold,uses a knob to shoot the darts at a skate board.,jumps up and threw the bar into the air.,rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars.,begins brushing a stuffed thing and wriggles it correctly over to continue.,2\n19805,anetv_v7o9uSu9AVI,4313,Another man does dips down to his elbows on the parallel bars. He then,Another man does dips down to his elbows on the parallel bars.,He then,gold,\"starts to do dips down to his armpits on the parallel bars called russian dips, while keeping his legs in the air.\",sits up and performs long jumps from break landing.,flips the puck and lands at the mat while his mom stands up.,takes the ball up swinging himself around.,0\n19806,anetv_v7o9uSu9AVI,4307,A strong man is lifting his legs up and down across parallel bars. He,A strong man is lifting his legs up and down across parallel bars.,He,gold,is legged on the rope stretching on the ground.,gets up and moves back to the bars.,begins to do shrugs on the bars.,is suspended on the ropes as he swinging onto the beam.,2\n19807,anetv_v7o9uSu9AVI,4317,\"He begins to do pushups, with his knees tucked, with the parallel bars. A different man\",\"He begins to do pushups, with his knees tucked, with the parallel bars.\",A different man,gold,sits on the murky white mat on his feet.,is shown sitting on a stool to adjust the man's leg.,\"does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars.\",is giving a tutorial on how to play it properly and wrapping.,2\n19808,anetv_v7o9uSu9AVI,4321,A different man keeps his legs straight out and moves them across each bar. A different man,A different man keeps his legs straight out and moves them across each bar.,A different man,gold,brings his legs straight up into a v - shape on the bars.,introduces from the next time that man introduces the practice.,walks on the ground with weights in his hand and squatting again doing a very high jump.,is seen close to the camera and points throwing knives.,0\n19809,anetv_v7o9uSu9AVI,4310,He circles around on the edge of the bars with his arms. He,He circles around on the edge of the bars with his arms.,He,gold,repeats it many times.,\"lifts the mop to the ground, and kneels down.\",\"walks back and forth, kicking and catching.\",swings his legs and leaps with his arms across the parallel bars.,3\n19810,anetv_v7o9uSu9AVI,4319,\"When he reaches the end, he tucks in his knees and lifts his body up and perpendicular to the bars. He then\",\"When he reaches the end, he tucks in his knees and lifts his body up and perpendicular to the bars.\",He then,gold,grabs the hoop of his and drops the hoop of his foot before briefly cupping the table.,lowers the key and slowly starts it down the tower.,gets on his knees to push aside his weight.,does knee and leg raises.,3\n19811,anetv_v7o9uSu9AVI,4324,He begins to do shoulder stands on the bars. He,He begins to do shoulder stands on the bars.,He,gold,does a handstand and jumps on the bar using his arms.,swings on parallel bars while talking.,picks up the board and starts doing different springs.,switches to doing a head stand and holds.,3\n19812,anetv_v7o9uSu9AVI,4309,He starts to walk his body across with his hands. He,He starts to walk his body across with his hands.,He,gold,uses his hand to scratch her right eye.,\"brushes his hair, and looks up to see the man bouncing.\",circles around on the edge of the bars with his arms.,heads forward and dropping himself onto the piece of stuff.,2\n19813,anetv_v7o9uSu9AVI,4312,A man does dips on the parallel bars. Another man,A man does dips on the parallel bars.,Another man,gold,stands ready to see who jumps in the lift.,does dips down to his elbows on the parallel bars.,hugs a man and extends his arms.,jumps again and throws another follow and misses.,1\n19814,anetv_v7o9uSu9AVI,4318,\"A different man does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars. When he reaches the end, he\",\"A different man does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars.\",\"When he reaches the end, he\",gold,\"falls back, slamming his partner down into the ground.\",inhales as he dives backwards off the seats.,tucks in his knees and lifts his body up and perpendicular to the bars.,lands on a male mat and balances on his skates.,2\n19815,anetv_v7o9uSu9AVI,4320,He then does knee and leg raises. A different man,He then does knee and leg raises.,A different man,gold,keeps his legs straight out and moves them across each bar.,is seen speaking to the camera and softly begins to speak with the other.,sits in disarray and styles his arms.,does the spins in times before going backwards with his feet up.,0\n19816,anetv_-qtdjw3MYcY,2440,A girl is sitting down in a chair. Another person,A girl is sitting down in a chair.,Another person,gold,begins chopping them down.,is standing behind her.,is standing outside shorts playing her boards.,is holding her help.,1\n19817,anetv_-qtdjw3MYcY,2441,Another person is standing behind her. The woman behind her,Another person is standing behind her.,The woman behind her,gold,begins braiding her hair.,grabs his waist and bends them at his neck.,is playing the guitar.,turned away to the camera.,0\n19818,anetv_4XTJzFjjFp0,5411,The person then begins using the tools on the tire to create bars going around it. He,The person then begins using the tools on the tire to create bars going around it.,He,gold,begins to jack the bicycle foot while moving the car back into the process while spinning it around with the hands up.,continues speaking the while and shows how the energy works and then takes a seat for people.,shows pictures of made and puts them out on the side.,continues gluing down the sides on the wheel as well as flipping it over on the side.,3\n19819,anetv_4XTJzFjjFp0,13058,A man is at a table inside a shop. He,A man is at a table inside a shop.,He,gold,is showing the components of a bike wheel.,is then seen playing a game of poker.,is involved in a game of indoor soccer.,holds up a steel ingredient.,0\n19820,anetv_4XTJzFjjFp0,5410,A bike wheel is seen on a table as well as various objects and tools. The person then,A bike wheel is seen on a table as well as various objects and tools.,The person then,gold,continues cutting and putting the paint in and giving out views as well as products and scotch.,shows the bike wheel continuously and uses a tool to help to rip the tire off the roof.,mixes up the white ink ingredients and shows off several shots of the machine.,begins using the tools on the tire to create bars going around it.,3\n19821,anetv_4XTJzFjjFp0,13059,He is showing the components of a bike wheel. He,He is showing the components of a bike wheel.,He,gold,attaches the screws to the roof of the blades.,pretends to straighten the shingles.,takes some parts off and puts them back on again.,circles over and along the water with a rope.,2\n19822,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72738,7133,Someone walks up a grassy hillock. Someone,Someone walks up a grassy hillock.,Someone,gold,\"holds out a hand to someone's trouser leg, then gestures to someone and her mother.\",lags a little way behind.,drags the lift from his hand and dashes toward his body!,sits nearby glancing fondly at someone's four - shaped palm.,1\n19823,lsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72738,7134,\"Someone lags a little way behind. Ahead, he\",Someone lags a little way behind.,\"Ahead, he\",gold,glances up and sees a wide grassy underside.,spots the human someone place someone.,\"sees someone, his dog, and someone by the corpse of a colossal spider.\",lifts the hood over the top.,2\n19824,lsmdc1008_Spider-Man2-75055,1820,A taxi stops in front of someone and he swings round in front of it. He,A taxi stops in front of someone and he swings round in front of it.,He,gold,stands in getting out of his way.,\"climbs inside, then breaks into a run.\",sees the lights change and a bus passes in front.,picks up his hat from the floor and leaves the room.,2\n19825,lsmdc1008_Spider-Man2-75055,1825,He tosses the pizzas and swings down to pluck kids away from truck. He,He tosses the pizzas and swings down to pluck kids away from truck.,He,gold,nimbly knocks the dish to pieces.,sets them gently on the ground.,climbs through the outside rock - walled hallway in a kids yard where a skylight lies on the street.,is now at home.,1\n19826,lsmdc1008_Spider-Man2-75055,1831,\"Inside the building someone landed on, a receptionist sits at a desk in a hallway with black - and - white checkered flooring. She\",\"Inside the building someone landed on, a receptionist sits at a desk in a hallway with black - and - white checkered flooring.\",She,gold,\"looks down at the floor, rises a little from the floor.\",\"glasses patterned old nail torches, the bare - chested policeman approaches someone and throws him past the neon line window.\",\"plaques and social company includes an electronic panel, where a sign reads, library, papers, company class forces, website.\",looks round on hearing the noise and sees a cupboard door opening.,3\n19827,lsmdc1008_Spider-Man2-75055,1837,\"The receptionist eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans. He\",\"The receptionist eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans.\",He,gold,\"climbs the chain, trying to contain the machine as he unties someone's bag.\",runs out of the upstairs compartment.,lifts it down the counter and stows it in his mouth.,strides up to the desk and lays the pizzas on it.,3\n19828,lsmdc1008_Spider-Man2-75055,1836,It's some spider's web. The receptionist,It's some spider's web.,The receptionist,gold,takes out a casino card.,looks at someone.,is as much disgusted as someone.,\"eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans.\",3\n19829,lsmdc1008_Spider-Man2-75055,1833,\"Chewing her gum intently she watches as he struggles to push the mops and brushes back inside. With one final thrust, someone\",Chewing her gum intently she watches as he struggles to push the mops and brushes back inside.,\"With one final thrust, someone\",gold,marches into the sunroom.,looks up onto the lock.,slides up one of the dolls.,pushes back the brooms and slams the door.,3\n19830,lsmdc1008_Spider-Man2-75055,1840,\"He presses another button, gives the receptionist a friendly smile and a wave. Someone\",\"He presses another button, gives the receptionist a friendly smile and a wave.\",Someone,gold,drifts toward the adjacent office building where a soldier opens a windowed door.,whizzes past with someone.,watches with listless expressions.,\"stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet.\",3\n19831,lsmdc1008_Spider-Man2-75055,1834,\"With one final thrust, someone pushes back the brooms and slams the door. He\",\"With one final thrust, someone pushes back the brooms and slams the door.\",He,gold,\"makes a massive leap to the ground, a cab pulls up and he kneels down.\",makes a sound on the sound.,\"picks up the pizza boxes, then notices something stuck to the top.\",finds the grail and throws it towards the building.,2\n19832,lsmdc1008_Spider-Man2-75055,1823,\"A guy watches the alley entrance. Soaring his way through the skyscrapers, the costumed character\",A guy watches the alley entrance.,\"Soaring his way through the skyscrapers, the costumed character\",gold,carries the entire town along past one a thick jungle of town.,has an washington emblem.,is far above land.,holds someone and a footman over to someone as someone and a bystander pass.,2\n19833,lsmdc1008_Spider-Man2-75055,1827,\"A man steps out onto a balcony and turns to see the pizzas on the balustrade. As the man on the balcony teases out a slice of pizza, someone\",A man steps out onto a balcony and turns to see the pizzas on the balustrade.,\"As the man on the balcony teases out a slice of pizza, someone\",gold,\"swishes past, grabbing the pizzas.\",\"stands on his hind legs, checking his clear drink.\",storms back for captain.,pulls beneath the iron roof shirt.,0\n19834,lsmdc1008_Spider-Man2-75055,1817,\"Traffic is at a standstill. Someone, on his moped,\",Traffic is at a standstill.,\"Someone, on his moped,\",gold,weaves his way through cars and yellow cabs.,is being knocked on an woods.,ends up welding a few sheets.,\"turns around and crashes towards front bars, spins his way.\",0\n19835,lsmdc1008_Spider-Man2-75055,1841,\"Someone stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet. He\",\"Someone stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet.\",He,gold,lifts the creature's hand in the air and someone stalks towards it.,takes stands and walks out of the class.,\"glares at someone, who ignites a fire.\",rips the joe's pizza sticker from it.,3\n19836,lsmdc1008_Spider-Man2-75055,1822,\"Now, on foot, someone runs into an alley, ripping off his crash helmet as he does so. A guy\",\"Now, on foot, someone runs into an alley, ripping off his crash helmet as he does so.\",A guy,gold,transfers iron medal over his head then presses a freight elevator.,ducks laying on a scaffold between himself and a woman.,watches the alley entrance.,pulls someone up as someone pumps his clocks off the rooftop.,2\n19837,lsmdc1008_Spider-Man2-75055,1821,He sees the lights change and a bus passes in front. He,He sees the lights change and a bus passes in front.,He,gold,looks up at the clock.,glances across the bay.,has someone resting on his hands and knee with the glowing equipment.,touches his restrained wrist.,0\n19838,lsmdc1008_Spider-Man2-75055,1839,He steps into an elevator. He,He steps into an elevator.,He,gold,holds out his cell phone.,drops down onto a ramp.,steps into the door.,\"presses another button, gives the receptionist a friendly smile and a wave.\",3\n19839,lsmdc1008_Spider-Man2-75055,1838,\"His face unflinching, someone unties the two fasteners keeping the pizzas together, one after the other. He\",\"His face unflinching, someone unties the two fasteners keeping the pizzas together, one after the other.\",He,gold,\"turn the knob, someone stops by metal strands.\",removes a potato from a brown bag and finds a third time.,\"glances up at the receptionist, then walks back towards the janitor's cupboard he emerged from.\",\"stops the car door and hangs back the grenade in the clown, passing another wooden rail of the quad.\",2\n19840,lsmdc1008_Spider-Man2-75055,1830,\"The man goes to eat the pizza slice as it's whipped from his hand by a web. Inside the building someone landed on, a receptionist\",The man goes to eat the pizza slice as it's whipped from his hand by a web.,\"Inside the building someone landed on, a receptionist\",gold,and pets a cat.,sits at a desk in a hallway with black - and - white checkered flooring.,gathers up his things and walks towards him.,confronts someone as someone sprints someone.,1\n19841,lsmdc1008_Spider-Man2-75055,1832,She looks round on hearing the noise and sees a cupboard door opening. Chewing her gum intently she,She looks round on hearing the noise and sees a cupboard door opening.,Chewing her gum intently she,gold,watches as he struggles to push the mops and brushes back inside.,drops her phone down and answers it.,glances at someone standing on an upstairs bed.,finds someone still lurking in the shadows.,0\n19842,lsmdc1008_Spider-Man2-75055,1826,He sets them gently on the ground. A man,He sets them gently on the ground.,A man,gold,steps out onto a balcony and turns to see the pizzas on the balustrade.,stares at a poster.,pulls him across the street to his small boy who moves his arms and lets him go.,is seen rubbing the roof of a building with a hose.,0\n19843,lsmdc1008_Spider-Man2-75055,1835,\"He picks up the pizza boxes, then notices something stuck to the top. It\",\"He picks up the pizza boxes, then notices something stuck to the top.\",It,gold,\"stops from the curb, taking a picture of him.\",ambles along a sofa in front of the colonial house house.,comes to an end.,'s some spider's web.,3\n19844,lsmdc1008_Spider-Man2-75055,1818,\"Someone, on his moped, weaves his way through cars and yellow cabs. A taxi\",\"Someone, on his moped, weaves his way through cars and yellow cabs.\",A taxi,gold,makes him way out.,pulls out in front of someone.,lands in a walkway overlooking the street.,crosses a drop road into the building and off the road.,1\n19845,lsmdc3047_LIFE_OF_PI-22864,19757,\"Later, someone tumbles off the side and grabs onto a rope connected to the bow. Someone\",\"Later, someone tumbles off the side and grabs onto a rope connected to the bow.\",Someone,gold,pushes it up into someone's neck before it lands on his face.,struggles with the boat.,reaches to pull the plug in the pestle.,remains armed as someone arrives.,1\n19846,lsmdc3047_LIFE_OF_PI-22864,19759,\"Beyond the shore line, a jungle looms in the distance. Someone\",\"Beyond the shore line, a jungle looms in the distance.\",Someone,gold,chases people across the desert.,pulls someone to a stop tread.,collapses onto the sand as the boat sways with the waves.,pats someone on the shoulder.,2\n19847,lsmdc3047_LIFE_OF_PI-22864,19760,\"Someone collapses onto the sand as the boat sways with the waves. Later, someone lies prone on the beach, his arms out\",Someone collapses onto the sand as the boat sways with the waves.,\"Later, someone lies prone on the beach, his arms out\",gold,to legs.,stretched from his sides.,tightly draped around his waist.,propped by the cold clouds.,1\n19848,lsmdc3047_LIFE_OF_PI-22864,19756,\"The boat floats into the distance. Later, someone\",The boat floats into the distance.,\"Later, someone\",gold,tosses the ship over the shore and sinks into wheelbarrow life below.,plays on paddling boards.,moves through the farm gate and climbs a wide pathway spanning the open double peer.,tumbles off the side and grabs onto a rope connected to the bow.,3\n19849,lsmdc3047_LIFE_OF_PI-22864,19767,He stares into the jungle. He,He stares into the jungle.,He,gold,stares and cries as they carry him away.,runs up and down on the surfboard as another boat comes from the scene.,shakes his head back and stands his frozen.,peers down into the watery hole.,0\n19850,lsmdc3047_LIFE_OF_PI-22864,19762,Someone looks up as Richard Parker hops over him from the lifeboat. The tide,Someone looks up as Richard Parker hops over him from the lifeboat.,The tide,gold,washes over the tiger's claws.,walks past the man and traveling through the water toward a rocky swell.,gets turned pulling towards the long dock.,is lying next to him.,0\n19851,lsmdc3047_LIFE_OF_PI-22864,19765,\"He takes a long breath and blinks. On the beach, someone\",He takes a long breath and blinks.,\"On the beach, someone\",gold,'s wind - father is standing beside him.,glances down rides the carriage.,sits on a flat canvas and someone looks over his shoulder.,struggles to keep his head up but collapses.,3\n19852,lsmdc3047_LIFE_OF_PI-22864,19758,\"Someone struggles with the boat. Beyond the shore line, a jungle\",Someone struggles with the boat.,\"Beyond the shore line, a jungle\",gold,dissipates old vials from a lagoon.,\"is blocked and: see is someone, floating under the water.\",\"is ripped from the water, a blue raft tracks up from its crest.\",looms in the distance.,3\n19853,lsmdc3047_LIFE_OF_PI-22864,19763,The tiger awkwardly ambles across the sand. Sand,The tiger awkwardly ambles across the sand.,Sand,gold,crawls onto the field.,\"scales the steps, swoops behind it, then sees the boy in his oversized suit.\",covers someone's face as he peers at the beast.,\"his temple, he finds a smile in his features.\",2\n19854,lsmdc0007_DIE_NACHT_DES_JAEGERS-49130,18396,\"Someone takes someone, with her doll, onto his lap. He\",\"Someone takes someone, with her doll, onto his lap.\",He,gold,stands close to him.,brings him a case of liquor.,does a little take.,yank it from her neck and try to suppress it.,2\n19855,lsmdc0007_DIE_NACHT_DES_JAEGERS-49130,18395,Someone holds up both hands to someone. Someone,Someone holds up both hands to someone.,Someone,gold,\"stumbles, march slowly towards the black and white gates.\",looks back at his hands.,puts back shaking hands.,blows her fingers towards someone's coat so that it blows out.,1\n19856,anetv_JI5_cMwgnxI,10478,He then used a liquid fertilizer on the trees and plants to fortify them. He finally,He then used a liquid fertilizer on the trees and plants to fortify them.,He finally,gold,takes a deep measuring drum to describe what he is saying about his actions.,grabs several more roots to wrap in the ends.,waters the trees and plants with a hose to complete the process.,starts cutting out sand and sanding up into a series of sections.,2\n19857,anetv_N1JcXEim40g,12174,\"She mounts the beam, then does several flips and hand springs over the bar. She\",\"She mounts the beam, then does several flips and hand springs over the bar.\",She,gold,\"dismounts, raising her arms in the air.\",dismounts by jumping up and flipping times before dismounting.,faces her the rigorous as the crowd claps.,is running in the chair that is standing in the air.,0\n19858,anetv_N1JcXEim40g,12173,A woman is standing outside a beam. She,A woman is standing outside a beam.,She,gold,begins hopping to the sink while holding the cat.,\"is jumping around a beam, attempting to measure the throw.\",is doing gymnastics in front of the ball.,\"mounts the beam, then does several flips and hand springs over the bar.\",3\n19859,anetv_ZGnnFIDJjaY,13327,The sitting man gets up and puts lotion on the man who approached. Five guys,The sitting man gets up and puts lotion on the man who approached.,Five guys,gold,stand on the floor on stilts.,ride on a stop playing.,are laying on the beach when a woman approaches them.,shine their eyes on catamarans.,2\n19860,anetv_ZGnnFIDJjaY,13326,A woman and a man are sitting on a towel at the beach and a man approaches. The sitting man,A woman and a man are sitting on a towel at the beach and a man approaches.,The sitting man,gold,proceeds to surf on the boy's face with water.,lifts a hanging layer on his facial hair.,gets up and puts lotion on the man who approached.,pulls a rock from his raft while into the camera.,2\n19861,anetv_ZGnnFIDJjaY,13328,Five guys are laying on the beach when a woman approaches them. One man,Five guys are laying on the beach when a woman approaches them.,One man,gold,is sitting in the dance stands.,begins to go wearing an yoga kit.,gets up and applies lotion to the womans back.,onlooker the person watching wave moves through in the foreground.,2\n19862,anetv_7RDn5qTQquE,8237,He is showing different stances and swings with his racquet. He,He is showing different stances and swings with his racquet.,He,gold,gets up and throws the wall.,is pretending to hit a ball against the wall.,throws the ball up and down while dancing.,puts the harmonica in his indoor hand.,1\n19863,anetv_7RDn5qTQquE,8771,A man in an orange shirt is playing wall ball. A person,A man in an orange shirt is playing wall ball.,A person,gold,is talking on a table.,stands to the corner.,is kneeling on the ice.,is sitting on a bench behind him.,3\n19864,anetv_7RDn5qTQquE,8236,A man is inside a racquetball court. He,A man is inside a racquetball court.,He,gold,is using the ice to throw the ball.,is showing different stances and swings with his racquet.,uses a large hammer to hit the ball.,throws the ball over a net.,1\n19865,lsmdc3063_SOUL_SURFER-31216,18521,\"The girl flops down on her bed, her head at its foot. She\",\"The girl flops down on her bed, her head at its foot.\",She,gold,awakens off her bed.,bends over and snuggles down on top of her.,holds up a barbie doll.,tosses the towel over someone's shoulder.,2\n19866,lsmdc3063_SOUL_SURFER-31216,18522,\"She holds up a Barbie doll. Bracing it between her legs, she\",She holds up a Barbie doll.,\"Bracing it between her legs, she\",gold,morphs into a imitate stance.,shoves her back to the doll's face and stares at it.,brushes the doll's hair back then snaps off the left arm.,douses her face then circles all around herself.,2\n19867,lsmdc3063_SOUL_SURFER-31216,18525,Someone keeps her gaze fixed on the modified doll as her mother looks down at her. She,Someone keeps her gaze fixed on the modified doll as her mother looks down at her.,She,gold,leans back from their dormitory and notices someone dipping him out of the frame.,shifts her place in the kitchen then takes out an album before leaves the room.,lets it drop to her chest and blinks back tears.,\"gut - opens someone's enters in the doctor's office, and then seals the cup of tea with both hands.\",2\n19868,lsmdc3063_SOUL_SURFER-31216,18524,Someone turns her head and finds her mother watching compassionately from a few feet away. Someone,Someone turns her head and finds her mother watching compassionately from a few feet away.,Someone,gold,keeps her gaze fixed on the modified doll as her mother looks down at her.,drags someone out of an alley.,\"gives a smug nod, picks up her unopened stub to reveal someone's face, and lifts her apron.\",looks around nervously as he sees his ambulance landing in the corner of the house.,0\n19869,lsmdc3063_SOUL_SURFER-31216,18523,\"Bracing it between her legs, she brushes the doll's hair back then snaps off the left arm. Someone\",\"Bracing it between her legs, she brushes the doll's hair back then snaps off the left arm.\",Someone,gold,holds out colorful balls and reads.,turns her head and finds her mother watching compassionately from a few feet away.,\"eyes something over her face, then looks down, her jaw slack.\",spins and brushes her bangs.,1\n19870,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11075,Someone has aged significantly since we last saw him. Someone,Someone has aged significantly since we last saw him.,Someone,gold,collides with the bottles.,start walking up the stairs.,is turning the neatly inscribed title page of a red leather bound journal.,hurries to the monkey platform.,2\n19871,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11076,\"Someone looks at Page after page of beautiful Handwriting, with intricate Maps and Drawings. He\",\"Someone looks at Page after page of beautiful Handwriting, with intricate Maps and Drawings.\",He,gold,sways as someone holds his bulky brush as he prepares to leave.,becomes skeletal and curled.,begins to describe how to attach a unconscious knife.,is sitting with someone on a terrace overlooking a waterfall.,3\n19872,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11074,He breaks in to a broad grin as someone rushes forward to embrace him. Someone,He breaks in to a broad grin as someone rushes forward to embrace him.,Someone,gold,has aged significantly since we last saw him.,dashes down out of the shadows.,receives the planner partner his coach.,glares instead and punches him through the shoulder.,0\n19873,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11073,Someone looks past someone smiling. He,Someone looks past someone smiling.,He,gold,locomotive drags hard towards the vessel.,\"looks to his right, pointing it.\",ushered drives against the river.,breaks in to a broad grin as someone rushes forward to embrace him.,3\n19874,lsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11077,He is sitting with someone on a terrace overlooking a Waterfall. Someone,He is sitting with someone on a terrace overlooking a Waterfall.,Someone,gold,turns a page.,topples on the beach.,is on a display shelf above the coffee store.,streams down the sidewalk behind him.,0\n19875,anetv_vdTisVMhW7I,12834,A box is taken out and several tools are laid out on the desk. The man then,A box is taken out and several tools are laid out on the desk.,The man then,gold,uses a tool to screw the shingles onto the metal lock.,cleans it up and showing off a finished result.,demonstrates how to move the car and shakes the tire on the tree in the end.,takes the necessary tools and begins to assemble the bike.,3\n19876,anetv_vdTisVMhW7I,12835,The man then takes the necessary tools and begins to assemble the bike. The finish product,The man then takes the necessary tools and begins to assemble the bike.,The finish product,gold,nudges with a towel to the camera.,\"is then shown, and complete together.\",is then shown on the bike is presented on hardwood floor.,begins putting it on as he washes the card.,2\n19877,anetv_vdTisVMhW7I,15321,The man unboxes parts and shows them off to the camera. He then,The man unboxes parts and shows them off to the camera.,He then,gold,rides the bicycle down the bar.,throws a handful of twigs on the beach.,puts the parts on the bike and screws them in tightly.,looks back to the camera and looks happy in slow motion.,2\n19878,anetv_vdTisVMhW7I,12833,A man is standing in a shed talking and then begins putting together a bike. A box is taken out and several tools,A man is standing in a shed talking and then begins putting together a bike.,A box is taken out and several tools,gold,are laid on a christmas table.,are laid out on the desk.,are shown the next.,are needed for wrapping paper.,1\n19879,anetv_eOmL8f-yB40,4261,He sits down at the piano and he and the band play. A large audience,He sits down at the piano and he and the band play.,A large audience,gold,comes up and announcers help the team.,follows them and leads into a woman playing instruments together.,is seen film and falls.,watches from near by.,3\n19880,anetv_eOmL8f-yB40,4263,The man throws the stick behind the band. The man,The man throws the stick behind the band.,The man,gold,dismounts from the hookah.,continues playing the saxophone.,cheers on the end.,plays standing for a moment and then bows.,3\n19881,anetv_eOmL8f-yB40,4262,A large audience watches from near by. The man,A large audience watches from near by.,The man,gold,bars a second or two times on the parallel bar.,swerves to the end of the smoke.,uses to film a group of showcased and shows it to the camera.,throws the stick behind the band.,3\n19882,anetv_1mksQqxFtv4,17414,He is jumping rope in there. He,He is jumping rope in there.,He,gold,\"runs, jumping and spinning the beam.\",needs to be eaten!,jumps around the trampoline.,speeds up his jumping.,3\n19883,anetv_1mksQqxFtv4,17413,A man in shorts is in a gym. He,A man in shorts is in a gym.,He,gold,is doing a flip in the air.,is jumping rope in there.,is doing tricks indoors in a competition of spectators.,talks while a man is now standing in front of an audience.,1\n19884,lsmdc3057_ROBIN_HOOD-27742,15274,He slices open its wax seals with a knife and unfolds the pages. His brow,He slices open its wax seals with a knife and unfolds the pages.,His brow,gold,is knitted as he types.,lifts in shock as he reads.,\"is covered with sweat, at the bottom of the package, ironed and pointed.\",finds a handwritten b note written on it.,1\n19885,lsmdc3057_ROBIN_HOOD-27742,15268,\"He pauses briefly, glancing over his shoulder. Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood\",\"He pauses briefly, glancing over his shoulder.\",\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood\",gold,covers someone's dark eye.,removes his helmet eye.,reveals him as someone's goateed accomplice.,draws on its hinged sloping tooth.,2\n19886,lsmdc3057_ROBIN_HOOD-27742,15263,\"Later, someone faces someone. He\",\"Later, someone faces someone.\",He,gold,carries someone to a waist - high - rise walkway.,gazes at her through a window.,\"moves in close to her face, seething.\",bows at a lectern.,2\n19887,lsmdc3057_ROBIN_HOOD-27742,15265,\"With glistening eyes, someone looks down to find someone holding a dagger to her own heart. He\",\"With glistening eyes, someone looks down to find someone holding a dagger to her own heart.\",He,gold,\"closes his hand over hers and stares into her eyes, taking in her earnest gaze.\",reels in the conga light.,\"stops from the dream, looking out thoughtfully, and sets it aside.\",pulls him tight and and kisses passionately.,0\n19888,lsmdc3057_ROBIN_HOOD-27742,15271,\"The Frenchman advances, pulling his hood back. He\",\"The Frenchman advances, pulling his hood back.\",He,gold,takes out a letter and offers it to the sheriff.,waves her visor.,hustles someone towards the border of the train.,notices three assembly of boards suspended nearby.,0\n19889,lsmdc3057_ROBIN_HOOD-27742,15270,\"The sheriff's male servants depart, but a crone dressed in black remains at the table. The Frenchman\",\"The sheriff's male servants depart, but a crone dressed in black remains at the table.\",The Frenchman,gold,\"swishes itself in the mouth of someone's mouth, holding out his drink and moves it in the car.\",\"rises to the camera, pointing its middle paws around the man's.\",\"advances, pulling his hood back.\",is getting someone a better view with his ice glass.,2\n19890,lsmdc3057_ROBIN_HOOD-27742,15267,\"Now, a hooded rider arrives at the edge of Nottingham. He\",\"Now, a hooded rider arrives at the edge of Nottingham.\",He,gold,aims the dog as a man and leads him away.,lumbers them through narrowed eyes.,opens the low door and steps out to the tiled floor.,\"pauses briefly, glancing over his shoulder.\",3\n19891,lsmdc3057_ROBIN_HOOD-27742,15272,He takes out a letter and offers it to the sheriff. The lawman,He takes out a letter and offers it to the sheriff.,The lawman,gold,is torn in and glue.,walks back and forth across the lawn.,\"does n't, but overtakes him.\",\"hesitates, then snatches it from his hand.\",3\n19892,lsmdc3057_ROBIN_HOOD-27742,15269,\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood reveals him as someone's goateed accomplice. The sheriff's male servants depart, but a crone dressed in black\",\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood reveals him as someone's goateed accomplice.\",\"The sheriff's male servants depart, but a crone dressed in black\",gold,remains at the table.,dozes behind a negligee.,lies on his back.,uniforms hits on a computer and the bullets swoop between the peasants.,0\n19893,lsmdc3057_ROBIN_HOOD-27742,15264,\"He moves in close to her face, seething. With glistening eyes, someone\",\"He moves in close to her face, seething.\",\"With glistening eyes, someone\",gold,runs her hand over her sister's ribs.,fixes her kiss on his face and kisses him hard on the cheek.,looks down to find someone holding a dagger to her own heart.,takes a long love heart and gently strokes her hair.,2\n19894,anetv_aljYWkDQzN8,5156,A person is seen wearing underwear and riding around on skis while pulling his shorts up. The man then,A person is seen wearing underwear and riding around on skis while pulling his shorts up.,The man then,gold,begins rubbing down goggles while others watch on the side.,jumps down and grabs his snowboard helmet.,begins riding down a snowy hill on skis.,begins riding on the bike and continues moving to the side.,2\n19895,anetv_aljYWkDQzN8,344,A man is standing on skis wearing only underwear. He then,A man is standing on skis wearing only underwear.,He then,gold,casually channels to the camera as he skis.,rides up and down on a row of skis.,races into a water tank.,starts skiing down a hill of snow.,3\n19896,anetv_aljYWkDQzN8,345,He then starts skiing down a hill of snow. He,He then starts skiing down a hill of snow.,He,gold,brushes on a disc on his skis and attempts to jump off the rock.,climbs a hill on the board and skis.,pulls out snow off of a school and jumps off the hatchback.,goes off of a jump and crashes at the bottom.,3\n19897,anetv_aljYWkDQzN8,5157,The man then begins riding down a snowy hill on skis. He,The man then begins riding down a snowy hill on skis.,He,gold,jumps over a jump and falls in the end by stands back up.,continues walking across the board and then moving slightly again.,continues riding through the snow while still speaking to the camera.,continues riding along the water while he ski.,0\n19898,anetv_b1uGF3c3Vz4,18366,\"She then takes clothes pins, grabs the nape of the hair and clips the cats nails. After awhile, the cats tries to bite her hands, once the girl is done, she\",\"She then takes clothes pins, grabs the nape of the hair and clips the cats nails.\",\"After awhile, the cats tries to bite her hands, once the girl is done, she\",gold,removes the pins and waves at the camera.,begins to hammer her hair again.,curls the nails of the cat's claws.,takes her shot and dips it in her mouth.,0\n19899,anetv_b1uGF3c3Vz4,18365,A young woman is sitting in a chair playing with a cat. She then,A young woman is sitting in a chair playing with a cat.,She then,gold,plays the violin with her.,walks past her horses or is following.,\"takes clothes pins, grabs the nape of the hair and clips the cats nails.\",begins talking and showing how her face works properly.,2\n19900,anetv_a1WhnMcTbrY,10172,The man pushes the shoveling along the snow. The man,The man pushes the shoveling along the snow.,The man,gold,adjusts the hubcap together.,holds the dog up and blow branches around the sides.,continues to shovel the snow over and over.,continues doing snow moves by passing snow down the scooter.,2\n19901,anetv_a1WhnMcTbrY,16624,The guy use the shovel to clean the snow of the top of his bushes. finally the guy,The guy use the shovel to clean the snow of the top of his bushes.,finally the guy,gold,tosses his last snow he scooped up.,demonstrates a hopping use snowboard and finished and q conveyor tube.,stops to adjust a section.,picks up the shovel and takes the seeds out from the truck.,0\n19902,anetv_a1WhnMcTbrY,10171,A man is seen looking to the camera holding a shovel. The man,A man is seen looking to the camera holding a shovel.,The man,gold,moves away around the house.,puts the tool down and starts carving tool in the ice.,pushes the shoveling along the snow.,speaks to the camera moving to his opposite movements while another man walks behind him.,2\n19903,anetv_a1WhnMcTbrY,16623,The guy now scoops up some snow in the shovel picks it up then dumps it a couple of times. the guy,The guy now scoops up some snow in the shovel picks it up then dumps it a couple of times.,the guy,gold,proceeds to polish the bottom of the nails.,use the shovel to clean the snow of the top of his bushes.,shakes the windshield again.,grabbing the shovel with a yellow scraper and a little stick.,1\n19904,anetv_a1WhnMcTbrY,16621,A guy hold a shovel over his shoulder while recording himself. the camera then,A guy hold a shovel over his shoulder while recording himself.,the camera then,gold,shows the skier to the camera.,shows several people skating in a roof.,shows the remains of the beer.,spins in a circle.,3\n19905,anetv_a1WhnMcTbrY,16622,The camera then spins in a circle. the guy now scoops up some snow in the shovel picks it up then,The camera then spins in a circle.,the guy now scoops up some snow in the shovel picks it up then,gold,throws it over the windshield and curves towards it.,grabs a mess.,dumps it a couple of times.,puts on his blank white screen.,2\n19906,anetv_RZ8r5B69CLY,10270,The girls volley the ball back and forth over the net. They,The girls volley the ball back and forth over the net.,They,gold,volleys the puck at the opposing team and sends the puck back into the vault.,\"hold hands, then stand in the background as the game continues.\",try to keep the ball from their opponents as the game truly begins.,are shown in the end.,2\n19907,anetv_RZ8r5B69CLY,10269,People are shown on a volleyball court as they warm up. The girls,People are shown on a volleyball court as they warm up.,The girls,gold,\"are practicing in the water, trying to go forth further.\",take turns bouncing the ball on the bullseye.,are shown using their tubes to play the game.,volley the ball back and forth over the net.,3\n19908,anetv_ho8cKYrtufU,17466,The man shoots the bow while showing it to the camera several times and shooting more. He finally,The man shoots the bow while showing it to the camera several times and shooting more.,He finally,gold,hands the man several thumbs up and then leaves the group running up to the camera.,demonstrates what and shows the target how to move the material on the target.,finishes by speaking to the camera.,\"demonstrates the game of the ball up, then takes it to his team who was just playing.\",2\n19909,anetv_ho8cKYrtufU,17465,A man is seen speaking to the camera while showing various tools to the camera as well as a close up of a bow and arrow. The man,A man is seen speaking to the camera while showing various tools to the camera as well as a close up of a bow and arrow.,The man,gold,demonstrates how to properly hit the ball while the camera zooms in.,then lays down the instrument and shows dust through the areas while speaking to the camera.,shows by holding the camera close and washing his face while looking off into the distance.,shoots the bow while showing it to the camera several times and shooting more.,3\n19910,anetv_ho8cKYrtufU,10475,A man is seen outside in the snow as he shoots. He,A man is seen outside in the snow as he shoots.,He,gold,begins to stop and run backwards over a track jumping and demonstrating tricks.,see the old set from across the screen to block the rocks.,moves around with the frisbees as the camera leads his movements all around.,takes several shots with the bow and arrow.,3\n19911,anetv_ho8cKYrtufU,10474,Several views are shown of an archery set. A man,Several views are shown of an archery set.,A man,gold,throws a bow and arrow in it before one hits the pucks.,is demonstrating how to use tools and demonstrates the techniques.,is seen outside in the snow as he shoots.,is wearing a white shirt and dressed in blue croquet.,2\n19912,anetv_F6BJoTLozoc,8809,An empty stage with four lights are shown as a crowd of people stand waiting for something to happen. A lady with a orange and yellow cape and skirt,An empty stage with four lights are shown as a crowd of people stand waiting for something to happen.,A lady with a orange and yellow cape and skirt,gold,claps with the other for her parted showing the arc of a black eye and a match that includes a wild graceful style.,is seen inside it she sees someone sitting un - dressed and determined to happen it's no longer at a camera.,stands in the crowd looking on and applaud.,then comes out from the side and starts to belly dance.,3\n19913,anetv_F6BJoTLozoc,8810,A lady with a orange and yellow cape and skirt then comes out from the side and starts to belly dance. The woman,A lady with a orange and yellow cape and skirt then comes out from the side and starts to belly dance.,The woman,gold,seems to be playing the instrument she continues.,stops dancing and smiles as she sees the same woman and group of other playing music for her.,stands on a beam ring holding the baton.,then drops the cape and begins walking towards the crowd moving her chest and smiling at the people.,3\n19914,anetv_qfCqVXhNPE8,15289,The woman pulls out a container with hair rolls. The woman,The woman pulls out a container with hair rolls.,The woman,gold,pretend to lower the window down.,continues to discuss her problems.,pulls out a bottle of shampoo.,shows some upholstery shampoo and the baby.,2\n19915,anetv_qfCqVXhNPE8,15288,A woman with black hair is explaining something. The woman,A woman with black hair is explaining something.,The woman,gold,is shown her name on the paper.,finishes their pink work and puts a pink coat on.,pulls out a container with hair rolls.,gestures she lifter and smirks.,2\n19916,anetv_qfCqVXhNPE8,15290,The woman pulls out a bottle of shampoo. The woman,The woman pulls out a bottle of shampoo.,The woman,gold,dries her hair and points it to the camera.,then dries the coat and others around.,takes the glasses to wash the shower.,rolls her hair and pins it in place and leaves it for ten minutes.,3\n19917,anetv_qfCqVXhNPE8,15291,The woman rolls her hair and pins it in place and leaves it for ten minutes. The women,The woman rolls her hair and pins it in place and leaves it for ten minutes.,The women,gold,cut on the spider's claws.,removes the rolls from her hair.,brush down the table.,move closer to the police and exchange smiles.,1\n19918,anetv_qfCqVXhNPE8,15292,The women removes the rolls from her hair. The woman,The women removes the rolls from her hair.,The woman,gold,\"is brushing the area and showing beach flowers and brushes, and how the same curls are demonstrated.\",takes out hair spray and sprays it on her hair.,applies someone's boot and it's more from over someone's.,adjusts her legs together and beams.,1\n19919,anetv_qVqlImNflY8,11250,A person starts filling a large blue bucket with water. They,A person starts filling a large blue bucket with water.,They,gold,help each other out of the water.,water spray on the bottom of the sink and the adds some and then focuses it to them.,dip it into a buckets.,put the dog into the water.,3\n19920,anetv_qVqlImNflY8,6189,The dog leans over a tub and jumps into the bucket of water. The dog,The dog leans over a tub and jumps into the bucket of water.,The dog,gold,scratches the bin around while the camera captures his movements.,is patting the dog on the dog's tail.,runs under water from the vacuum.,laughs at the sink as the woman moves on.,0\n19921,anetv_qVqlImNflY8,6188,A dog is seen laying on the ground and leads into a person turning water on. The dog,A dog is seen laying on the ground and leads into a person turning water on.,The dog,gold,leans over a tub and jumps into the bucket of water.,walks around the dog and performing around him turning around to the dog.,rolls all around the dog.,continues running around the dog as well as speaking to the camera.,0\n19922,anetv_qVqlImNflY8,11249,A small brown and white dog is laying on a rug. A person,A small brown and white dog is laying on a rug.,A person,gold,is mowing the grass through a wooden yard behind them.,is spraying and spraying the dog with the hose.,starts filling a large blue bucket with water.,is spraying the person with shampoo.,2\n19923,anetv_dbLtukGqkhI,14253,A man in a blue shirt is pointing to the sky and moving his hand in circles. There,A man in a blue shirt is pointing to the sky and moving his hand in circles.,There,gold,is solar lather on his hand.,\"touch his left arm, and the men of a girl hug him on the side of the canoe along with the toddler in.\",is shown falling snow over and over again several times.,are many kites in the sky around them.,3\n19924,anetv_dbLtukGqkhI,14252,A woman in a green shirt eats chips. A man in a blue shirt,A woman in a green shirt eats chips.,A man in a blue shirt,gold,stands up on a court floor with an iron.,picks up the balls and hits them again.,puts ice in her mouth.,is pointing to the sky and moving his hand in circles.,3\n19925,lsmdc3013_BURLESQUE-4463,3401,\"Later as the blonde packs a suitcase, the sexy dancers pump their hips. The blonde\",\"Later as the blonde packs a suitcase, the sexy dancers pump their hips.\",The blonde,gold,notices her naked body pinning her arms to her chest.,puts her shades in the back.,regards a framed photo of a woman.,lifts her right arm.,2\n19926,anetv_HaGLPOqibaM,12903,We see the man adding plaster to his base. We,We see the man adding plaster to his base.,We,gold,follow the man as he gets more plaster.,see the man dunk the gear and throw his hand after the guy.,see the images on the screen.,see the gymnast rope the base and another team attempts to wipe off the craggy face.,0\n19927,anetv_HaGLPOqibaM,12904,We follow the man as he gets more plaster. The man,We follow the man as he gets more plaster.,The man,gold,points and shows another guy involved with the orchestra.,tosses the fries back into the air.,walks away from the wall.,stands and backs no and starts for the broom.,2\n19928,anetv_HaGLPOqibaM,6742,A wall is shown with the camera tilted sideways. A man,A wall is shown with the camera tilted sideways.,A man,gold,walks across the scene.,is shown speaking to the camera before pouring on a pair of sunglasses.,stands in front of a wooden fence to dry the snow.,is seen sitting behind a wall standing by a lake with a wheel attached to it.,0\n19929,anetv_HaGLPOqibaM,12902,We then focus on the wall the man works on. We,We then focus on the wall the man works on.,We,gold,see a black screen with a picture on it.,see different teams of men and their teammates as the players talk and talk.,\"and the man uses his arms moves, then back again with us and welding swiftly on the gymnastics machine.\",see the man adding plaster to his base.,3\n19930,anetv_HaGLPOqibaM,12900,The man begins to smooth plaster on the wall. We,The man begins to smooth plaster on the wall.,We,gold,\", the second man shows a woman in arm standing over spins putting cement on the wall.\",see the ceiling in the room.,then removes the old wallpaper from the forest and vacuum it in the pan.,see a wall then see for a process to cut the floor.,1\n19931,anetv_HaGLPOqibaM,12899,A man walks into a room. The man,A man walks into a room.,The man,gold,throws his darts in the field with precision as a man watches.,begins to smooth plaster on the wall.,takes a glass box from the floor and demonstrates how to make it properly.,begins bringing up tiles above a desk.,1\n19932,anetv_HaGLPOqibaM,12901,We see the ceiling in the room. We then,We see the ceiling in the room.,We then,gold,see a red shoe polishing match.,see a woman in dark shorts performing money sews.,focus on the wall the man works on.,see the man cleaning a shoe with polish and scissors.,2\n19933,anetv_HaGLPOqibaM,6743,A man walks across the scene. The man,A man walks across the scene.,The man,gold,points to cars in a park.,applies plaster to the wall.,switches on a table.,throws and throws down a ball.,1\n19934,anetv_9YxgMsdO9GE,695,Two people are seen riding down a road with a dog. One person,Two people are seen riding down a road with a dog.,One person,gold,falls into the water while others watch on the side of the boat.,is riding a bike and the other a skateboard while the camera follows close behind.,\"is walking with one another, halfway down a hill.\",jumps off and falls off.,1\n19935,anetv_9YxgMsdO9GE,696,One person is riding a bike and the other a skateboard while the camera follows close behind. Several other dogs run by and the people,One person is riding a bike and the other a skateboard while the camera follows close behind.,Several other dogs run by and the people,gold,continue riding down the road path.,continues running down the mountain on the 30 day.,walking down the ramp while a security loads into the coworker and people ride on the bikes in the dirt's occupants.,begin to fight back and forth on one another one is trying to help.,0\n19936,lsmdc1048_Gran_Torino-92019,4265,\"Someone watches the kids, tight - lipped, eyes narrowed. His middle - aged sons, people,\",\"Someone watches the kids, tight - lipped, eyes narrowed.\",\"His middle - aged sons, people,\",gold,sits in a restaurant washroom.,stand bearing someone's embrace.,sit in front of someone's office.,turn to each other.,3\n19937,lsmdc1048_Gran_Torino-92019,4259,\"A small congregation sits in pews towards the front of the grand church. An older man, someone,\",A small congregation sits in pews towards the front of the grand church.,\"An older man, someone,\",gold,watch himself smiling and waiting for someone to ale.,gets up from his pew and walks past a coffin draped in a white sheet.,gazes after him into the water.,stands beside a row of white lockers.,1\n19938,lsmdc1048_Gran_Torino-92019,4263,\"Seeing this, someone grimaces. Someone, a thin boy with fair hair,\",\"Seeing this, someone grimaces.\",\"Someone, a thin boy with fair hair,\",gold,\"is last to kneel, bow and make the sign of the cross.\",tumbles up the end of a trough.,runs along a field and attacks a beach stealing clothes.,kisses himself as someone sits down.,0\n19939,lsmdc1048_Gran_Torino-92019,4258,A balding man plays the organ. A small congregation,A balding man plays the organ.,A small congregation,gold,\"stands nearby, amused to hear and cut through the crowd.\",sits in pews towards the front of the grand church.,stands with flags around him.,sits at the base of a hookah pipe.,1\n19940,lsmdc1048_Gran_Torino-92019,4264,\"Someone, a thin boy with fair hair, is last to kneel, bow and make the sign of the cross. Someone\",\"Someone, a thin boy with fair hair, is last to kneel, bow and make the sign of the cross.\",Someone,gold,\"watches the kids, tight - lipped, eyes narrowed.\",\"catch for his order, and then he quickly reaches for his own briefcase as they get out all the money.\",looks at him.,gives a resolute shake of the head.,0\n19941,lsmdc1048_Gran_Torino-92019,4262,Someone shakes someone's hand and goes back to his pew. Four casually - dressed teenage kids - - people - -,Someone shakes someone's hand and goes back to his pew.,Four casually - dressed teenage kids - - people - -,gold,\"butler, very about, senses his presence.\",do standing behind a farm.,\"go through the gate into blue and white students, wearing french hats.\",walk up the aisle.,3\n19942,lsmdc1048_Gran_Torino-92019,4260,\"An older man, someone, gets up from his pew and walks past a coffin draped in a white sheet. Someone\",\"An older man, someone, gets up from his pew and walks past a coffin draped in a white sheet.\",Someone,gold,stretches his legs off outside.,is parked in a stately flight to a drizzled brown balcony.,walks up to him.,holds the rope tightly to his son.,2\n19943,lsmdc1048_Gran_Torino-92019,4261,Someone walks up to him. Someone,Someone walks up to him.,Someone,gold,takes a deep breath and shakes his head.,shakes someone's hand and goes back to his pew.,is staring at boxes in the back of someone's car.,gazes off dreamily at the glass doorway.,1\n19944,anetv_UOkpGU7NAag,6647,A girl is going across a set of monkey bars. She,A girl is going across a set of monkey bars.,She,gold,jumps up and does a back flips.,gets to the end and stands on a wooden plank.,struggles onto the monkey bars to grab her head.,jumps up across the monkey bars.,1\n19945,anetv_UOkpGU7NAag,6649,She then goes back across the monkey bars in the other direction. She,She then goes back across the monkey bars in the other direction.,She,gold,\"stops and turns her head, creeping in and out of frame.\",rears up and jumps into the end.,goes to cross the monkey bars area.,goes to another part of the playground and jumps up and down.,3\n19946,anetv_UOkpGU7NAag,6648,She gets to the end and stands on a wooden plank. She then,She gets to the end and stands on a wooden plank.,She then,gold,goes back across the monkey bars in the other direction.,walks in and out of the window.,walks away on the dance floor.,jumps off of the fence and goes to the front of the door.,0\n19947,anetv_yL7tvoBkkkI,9125,Various people are seen from a bird's eye view working in rough conditions out in the open. They,Various people are seen from a bird's eye view working in rough conditions out in the open.,They,gold,are scrubbing clothes and hanging them up while the camera pans around and watches.,continue slowly performing various tricks and tricks and interviewing one another.,are seen running through a set of stairs and with a brush.,\"sit beyond the boat, sleeping on their hands.\",0\n19948,anetv_olBh9KMAHMQ,5867,A man walks out into the snow. He,A man walks out into the snow.,He,gold,comes into the station and continues to wipe the snow off the car.,is holding a shovel in his hands.,is skateboarding between the trees.,is then sitting on skis in the road doing a flip.,1\n19949,anetv_olBh9KMAHMQ,9921,We see the blue opening screen. A man,We see the blue opening screen.,A man,gold,is giving a drink in a cup talking to the camera.,stands near a wheel and sails through some equipment.,shows how to use a mop on a roof.,walks out into his yard carrying a shovel.,3\n19950,anetv_olBh9KMAHMQ,9924,The man spins the shovel again and words appear on the screen and he shovels more snow. The man,The man spins the shovel again and words appear on the screen and he shovels more snow.,The man,gold,cuts the snow off then spots tools and brushes.,runs away from the shop and picks up the shovel and cleans the snow.,walks back into his garage.,takes out a shovel than walks to it and looks up.,2\n19951,anetv_olBh9KMAHMQ,9923,The man shovels the snow. The man,The man shovels the snow.,The man,gold,walks away from the chair and moves up a towel.,continues to mow the lawn.,continues to blow the snow away from the camera.,spins the shovel in the air dances and shovels again.,3\n19952,anetv_olBh9KMAHMQ,9922,A man walks out into his yard carrying a shovel. The man then,A man walks out into his yard carrying a shovel.,The man then,gold,puts on his gloves and dances a bit in the yard.,paints a roof of a truck and shows a man in a pistol.,takes a blow stick on and jumps into a snow blower.,begins dipping the mower and leading into several others.,0\n19953,anetv_olBh9KMAHMQ,5866,A car is shown covered in snow. A man,A car is shown covered in snow.,A man,gold,walks out into the snow.,is washing the car.,is trimming a bush.,is shoveling snow in a bad town car.,0\n19954,anetv_olBh9KMAHMQ,9925,The man walks back into his garage. We,The man walks back into his garage.,We,gold,\"boy walks by holding a picture of his desk, sitting with the man on the machine.\",construction is shown up and he begins trimming it several different ways.,see the blue ending title screen.,\", people watch him.\",2\n19955,anetv_olBh9KMAHMQ,5868,He is holding a shovel in his hands. He,He is holding a shovel in his hands.,He,gold,is wiping the windshield.,is showing how to cut the shirt over the box.,begins to wipe down the car.,dances as he shovels the snow around.,3\n19956,anetv_AQQT21DBT_E,15021,People are grooming and brushing dogs in a public facility. Women,People are grooming and brushing dogs in a public facility.,Women,gold,count the dogs for molds.,take cares of dogs that have long hair.,are shown using the flute.,\"are standing in a pony carrier, then, riding a horse and moving happier.\",1\n19957,anetv_AQQT21DBT_E,15023,\"A woman take cares of a poodle, while other woman pets a big dog. A woman\",\"A woman take cares of a poodle, while other woman pets a big dog.\",A woman,gold,\"skates on her belly, leaving the dog bands around her shoulders.\",puts the leash on her tail.,takes in a woman's fur.,talks on front a dog while petting.,3\n19958,anetv_AQQT21DBT_E,15022,Women take cares of dogs that have long hair. A woman,Women take cares of dogs that have long hair.,A woman,gold,starts rafting on a field decorated with costumes.,\"picks up a red navigation stick, while using a highly hairspray wrench for no brief cut post in interviews.\",\"leaps onto the horse, and a woman on the right is talking on the horse.\",\"take cares of a poodle, while other woman pets a big dog.\",3\n19959,lsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1534,11809,The girl shoots her crossbow and beheads a witch flying on a broomstick. A silhouette standing in the flames,The girl shoots her crossbow and beheads a witch flying on a broomstick.,A silhouette standing in the flames,gold,shoots a burning arrow past some towns people.,is right along the tree building by against the blinding maize.,overlooks a burned - out truck's cage.,\"grazing in the distance, next to the cliff face, fast asleep with her face buried in blood.\",0\n19960,lsmdc0009_Forrest_Gump-50693,11568,Someone speaks on the phone. Someone,Someone speaks on the phone.,Someone,gold,'s on his cellphone.,follows someone as the blond mother makes a call.,hangs up the phone.,turns around and duct brushes with a bag on him.,2\n19961,lsmdc0009_Forrest_Gump-50693,11567,An anchorman reports in front of the White House. Someone,An anchorman reports in front of the White House.,Someone,gold,looks at the fat man on the bus bench.,and someone are standing by the lining of the people.,smiles at the tiger then turns back to someone.,runs over to the lake with a wounded stalk.,0\n19962,anetv_Ci9WKE6wkOQ,4907,A man and woman are talking to a camera on exercises. The girl,A man and woman are talking to a camera on exercises.,The girl,gold,shows the climbing rock paper that was playing.,is then seen interviewed.,talks about equipment and how to use it.,dances as she does everything.,2\n19963,anetv_Ci9WKE6wkOQ,4908,The girl talks about equipment and how to use it. She,The girl talks about equipment and how to use it.,She,gold,lifts it up and begins talking to the camera showing the moving object on the field.,talks to the camera as she uses the screwdriver to vacuum a lamp.,prepares the equipment and helps the man perform the exercise.,is showing the materials she needs to do.,2\n19964,anetv_rze0k4LklN4,7842,He moves two tires off a box. He,He moves two tires off a box.,He,gold,flicks some tasseled holes.,hands off the handlebars on the bike.,starts assembling the bike and putting the tires on the bike.,slams another man on the bike.,2\n19965,anetv_rze0k4LklN4,8362,He is talking next to a bike on a stand. He,He is talking next to a bike on a stand.,He,gold,shows how to disassemble and assemble the bike.,begins to talk about bungee.,is holding a large knife knob and begins varnish it.,is standing on top of the bike in front of him as he is taping the bike he is using.,0\n19966,anetv_rze0k4LklN4,7841,A man is standing next to a bicycle on a pole. He,A man is standing next to a bicycle on a pole.,He,gold,is walking on the treadmill.,moves two tires off a box.,starts sailing down from the fence.,flips several times while quickly lifts her to the ground.,1\n19967,anetv_dZMMhVx7yY4,15052,A man is seen speaking to the camera followed by him talking to random women on the beach. They play a game together and when he wins the girl,A man is seen speaking to the camera followed by him talking to random women on the beach.,They play a game together and when he wins the girl,gold,finishes break its picture.,gives him a kiss.,starts hitting the ball at the same time in slow motion.,stops and walk away with the polo.,1\n19968,anetv_dZMMhVx7yY4,15053,When they lose the girl smacks him. Several girls,When they lose the girl smacks him.,Several girls,gold,get into their arms and begin dancing with the girl when one girl falls into the water.,laugh and play along while getting a kiss or slapping the man.,are sitting next to him watching.,\"are walking back down to the table, still laughing, enjoying the laugh.\",1\n19969,lsmdc3062_SORCERERS_APPRENTICE-30888,8525,\"She turns to find him walking away, then excuses herself from her friends. On the lofty observation ledge, a service light\",\"She turns to find him walking away, then excuses herself from her friends.\",\"On the lofty observation ledge, a service light\",gold,\"reads, as a woman near someone 'chair crosses her designated body.\",glows amber in contrast to a row of stark floodlights.,rises beneath the mounting satin arena.,casts a glow hippie her body.,1\n19970,lsmdc3062_SORCERERS_APPRENTICE-30888,8524,Someone spots him in a mirror. She,Someone spots him in a mirror.,She,gold,\"turns to find him walking away, then excuses herself from her friends.\",\"turns slowly to someone, then, closes his eyes, joins someone and nods, and raises her brows.\",smells a pitcher of wine.,wraps a long cord around someone's neck.,0\n19971,lsmdc3062_SORCERERS_APPRENTICE-30888,8522,\"He spies someone inside, conversing cheerfully with a group of girlfriends. Someone\",\"He spies someone inside, conversing cheerfully with a group of girlfriends.\",Someone,gold,\"stares off in a motivational needle, then touches her own.\",turns away sadly and leaves.,sits as another gentleman.,gives him a enemies look and someone gazes out of his window.,1\n19972,lsmdc3062_SORCERERS_APPRENTICE-30888,8526,\"On the lofty observation ledge, a service light glows amber in contrast to a row of stark floodlights. Someone\",\"On the lofty observation ledge, a service light glows amber in contrast to a row of stark floodlights.\",Someone,gold,uses an individual's gurney to create an encouraging gesture.,\"steps out to the handrail, smirks sadly, and removes someone's ring.\",gazes intently at the video locker.,pops a cigar vial into his pocket and peers in through his scope.,1\n19973,lsmdc3062_SORCERERS_APPRENTICE-30888,8523,Someone turns away sadly and leaves. Someone,Someone turns away sadly and leaves.,Someone,gold,spots him in a mirror.,picks up the money.,avoids her arm and staggers.,\"heads away, leaving the atv which stares at a magnificent array of beautiful ocean.\",0\n19974,lsmdc3062_SORCERERS_APPRENTICE-30888,8521,He changes out of his pointy footwear. Someone,He changes out of his pointy footwear.,Someone,gold,\"turns her back, admiring the boy who is taking the rug and leaves.\",retrieves a cookie cord.,follows a sidewalk by himself.,is a bright green marble rink where people can crush and kiss.,2\n19975,lsmdc1017_Bad_Santa-7583,16436,He sits up and takes the glass. He,He sits up and takes the glass.,He,gold,gives the kid a look and puts the glass down.,takes it and smooths it for him.,uses his ax to put the egg on the table.,speaks up to a middle of aged.,0\n19976,lsmdc1017_Bad_Santa-7583,16433,\"The next morning, someone is still asleep in bed. The kid\",\"The next morning, someone is still asleep in bed.\",The kid,gold,is leaning from the window.,\"sits up, is trying to rub her face in the fear of humor.\",lies on his back under his bed.,\"comes in, clutching a glass of orange juice and an advent calendar.\",3\n19977,lsmdc1017_Bad_Santa-7583,16435,\"Gradually, someone surfaces from his slumber. He\",\"Gradually, someone surfaces from his slumber.\",He,gold,starts to light his cigarette.,sits up and takes the glass.,clutches his ankles to his chest.,\"takes off the spectacles and collapses, then leaps onto the sofa.\",1\n19978,lsmdc1017_Bad_Santa-7583,16443,\"At lunchtime, he is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall. Someone\",\"At lunchtime, he is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall.\",Someone,gold,regards him with thinly - veiled contempt.,sits away with mr.,is frozen in the pizza.,sit out on the sidewalk in front of a sweet shop.,0\n19979,lsmdc1017_Bad_Santa-7583,16437,He gives the kid a look and puts the glass down. The kid,He gives the kid a look and puts the glass down.,The kid,gold,\"adds sugar, salt, then boil.\",turns the page in.,climbs on to the bed.,sets bread into the kitchen sink.,2\n19980,lsmdc1017_Bad_Santa-7583,16442,\"Someone looks dubiously at the door off the calendar. At lunchtime, he\",Someone looks dubiously at the door off the calendar.,\"At lunchtime, he\",gold,\"is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall.\",\"turns and gazes into the hallway of the car, waiting for the decision to pay.\",leans on a chair hunched on the floor of the shop.,calls out to the gravestones just outside.,0\n19981,lsmdc1017_Bad_Santa-7583,16434,\"The kid comes in, clutching a glass of orange juice and an advent calendar. Gradually, someone\",\"The kid comes in, clutching a glass of orange juice and an advent calendar.\",\"Gradually, someone\",gold,finds the young dots written in the darkness of chaises's dark lines.,\"stares back, advancing from the ceiling.\",surfaces from his slumber.,elbows to his knees.,2\n19982,anetv_sLtQvJXnrOE,4996,There's a guy wearing yellow rubber gloves demonstrating how to fix a tire on a car wheel. He,There's a guy wearing yellow rubber gloves demonstrating how to fix a tire on a car wheel.,He,gold,\"secures the bike in the trunk, taking off a piece of potatoes.\",demonstrates how to do a tire tire in the car's windshield.,is unscrewing the screws that hold the plates of the wheel.,drives a tire down and places the bubbles on the drivers seat of the metal grill of his car to place it.,2\n19983,anetv_sLtQvJXnrOE,4997,He is unscrewing the screws that hold the plates of the wheel. He,He is unscrewing the screws that hold the plates of the wheel.,He,gold,loosens the screws to remove the tire.,flips the bike and straightens at the same time.,can not wipe out.,sets the bicycle down on the other sides of the bike.,0\n19984,anetv_0Bd8Js6Pf6E,4537,\"Two tam tams are in a living room. Then, a man\",Two tam tams are in a living room.,\"Then, a man\",gold,picks up a costume and throws a denim shirt.,is playing flute grinning at the camera.,comes and talks on front the tam tams.,gets back and plays volleyball in two while playing.,2\n19985,anetv_0Bd8Js6Pf6E,4538,\"Then, a man comes and talks on front the tam tams. After, the man\",\"Then, a man comes and talks on front the tam tams.\",\"After, the man\",gold,plays the tam tam in a living room.,spin one hand and puts his violin back and then spins several times in the air and then throw the disc.,play paintball and bow and play and smacking.,\"adds ingredients and rings, 2 all adds bars.\",0\n19986,anetv_5XiBb9XGsg8,6970,A young man is seen speaking to the camera and leads into him trying to solve a rubix cube. The boy then,A young man is seen speaking to the camera and leads into him trying to solve a rubix cube.,The boy then,gold,uses the cube to show another while the timer is paused.,sets a rubik's cube down followed by showing off across the screen.,solves the cube and pans the camera back to show his time.,cuts out a rubik's cube while still speaking to the camera.,2\n19987,lsmdc3090_YOUNG_ADULT-43925,10183,Someone pulls into the parking lot of Champion O'Malley's. She,Someone pulls into the parking lot of Champion O'Malley's.,She,gold,rides away beyond the clinic's windows.,commander sits atop the local bench.,walks into the sports bar and scans the patrons as she slowly makes her way toward the front.,\"are arriving, lining up, but young men have called someone at a quiet neighborhood.\",2\n19988,lsmdc3090_YOUNG_ADULT-43925,10189,The screen displays a string of nonsense letters. She,The screen displays a string of nonsense letters.,She,gold,tries to change the braid.,go on the phone.,gives the girl a straighten up as she walks.,\"slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar.\",3\n19989,lsmdc3090_YOUNG_ADULT-43925,10186,A server sets down a napkin and silverware. Someone,A server sets down a napkin and silverware.,Someone,gold,glances at two men drinking beers at the bar.,pours a plastic shot on bread.,looks down at a cartoon on a counter.,brings a plastic straw from the bottle's container.,0\n19990,lsmdc3090_YOUNG_ADULT-43925,10171,\"Someone gets into the back of a taxi cab. The next morning, someone\",Someone gets into the back of a taxi cab.,\"The next morning, someone\",gold,\"is in her early thirties, who sits in her chair in an art book.\",plays pinball in the newspaper's office.,lies face down on her hotel bed still wearing the clothes from the previous night.,sprints through a grocery store and uncomfortably smirks.,2\n19991,lsmdc3090_YOUNG_ADULT-43925,10173,\"Wearing her sweatshirt and sweatpants, she walks up a side walk. Sitting on a public bench, she\",\"Wearing her sweatshirt and sweatpants, she walks up a side walk.\",\"Sitting on a public bench, she\",gold,mounts a pair of double sided drawers.,types on her laptop.,\"finds herself on a television set, her back to her ex, who stands on an upper floor.\",looks at a photo pit window on the walls of her dining room where an image of a wall is shown.,1\n19992,lsmdc3090_YOUNG_ADULT-43925,10190,\"She slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar. He\",\"She slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar.\",He,gold,works at top speed.,crumples the book closer to the table.,smiles at her and approaches her table.,sits at his desk holding a big book and a dish along with his fingers.,2\n19993,lsmdc3090_YOUNG_ADULT-43925,10175,A pedicurist removes the nail polish from her toes. Someone,A pedicurist removes the nail polish from her toes.,Someone,gold,stares at the prone image.,brushes more of the spare from the shoe and sits.,rummages for the blue card.,soaks her feet in bubbling water.,3\n19994,lsmdc3090_YOUNG_ADULT-43925,10174,\"Sitting on a public bench, she types on her laptop. A pedicurist\",\"Sitting on a public bench, she types on her laptop.\",A pedicurist,gold,removes the nail polish from her toes.,rises on his headset.,'s magnet is on tv.,lies on top of the blank paper with its conductor's tick - ray crosses.,0\n19995,lsmdc3090_YOUNG_ADULT-43925,10176,Someone soaks her feet in bubbling water. The pedicurist,Someone soaks her feet in bubbling water.,The pedicurist,gold,buffs her nails and rubs lotion over her feet and legs.,photo ends while someone lies in bed.,returns to the edge of the cot and smiles triumphantly.,\"emerges, landing on top of a white super doll.\",0\n19996,lsmdc3090_YOUNG_ADULT-43925,10181,She puts on eye shadow. Someone,She puts on eye shadow.,Someone,gold,\"comes and throws back her spectacles, tying up his scarf.\",\"takes another photograph, then turns away.\",examines herself in the mirror and smiles.,goes back with his shoes and supplies.,2\n19997,lsmdc3090_YOUNG_ADULT-43925,10177,She drips oil unto her cuticles and trims them. Someone,She drips oil unto her cuticles and trims them.,Someone,gold,peers down at her feet and frowns.,watches the mail from her father's box.,clutches the children's muscles.,lowers her sad eyes.,0\n19998,lsmdc3090_YOUNG_ADULT-43925,10178,\"Someone peers down at her feet and frowns. Back at the hotel, she\",Someone peers down at her feet and frowns.,\"Back at the hotel, she\",gold,shaves her legs in the bath tub.,\"glances toward the rooms, then jumps in.\",finds the entrance written on it.,\"pauses, her jaw hanging slack.\",0\n19999,lsmdc3090_YOUNG_ADULT-43925,10180,\"Standing in a mirror, she rubs foundation onto her face. She\",\"Standing in a mirror, she rubs foundation onto her face.\",She,gold,peeks in through the windows.,picks up her long ponytail and hands it to the blonde woman.,grins as multiple fingers curl into her hair.,puts on eye shadow.,3\n20000,lsmdc3090_YOUNG_ADULT-43925,10172,\"She opens a bottle of diet soda and clutches it with both hands as she drinks. Wearing her sweatshirt and sweatpants, she\",She opens a bottle of diet soda and clutches it with both hands as she drinks.,\"Wearing her sweatshirt and sweatpants, she\",gold,walks up a side walk.,strides into the bathroom.,crosses to a laundry room.,\"leans down, her arms folded.\",0\n20001,lsmdc3090_YOUNG_ADULT-43925,10182,\"Someone examines herself in the mirror and smiles. Sitting on her bed, she\",Someone examines herself in the mirror and smiles.,\"Sitting on her bed, she\",gold,glances at the alarm clock.,stuffs her chair under the sink and looks through it.,pours as the heroes even lighter.,tugs out her bonds.,0\n20002,lsmdc3090_YOUNG_ADULT-43925,10179,\"Back at the hotel, she shaves her legs in the bath tub. Standing in a mirror, she\",\"Back at the hotel, she shaves her legs in the bath tub.\",\"Standing in a mirror, she\",gold,takes place in a trailer.,returns to her pajama and herself.,blinks her green hair and then dries herself.,rubs foundation onto her face.,3\n20003,lsmdc3090_YOUNG_ADULT-43925,10191,He smiles at her and approaches her table. Someone,He smiles at her and approaches her table.,Someone,gold,absently shakes her head and walks away.,perches in the passenger seat.,stands as someone hugs her.,leans on someone grill.,2\n20004,lsmdc3090_YOUNG_ADULT-43925,10187,Someone glances at two men drinking beers at the bar. She,Someone glances at two men drinking beers at the bar.,She,gold,\"rises, apparently quite a bit of vodka.\",gets out of their volkswagen carriage.,gives back to someone.,looks down and pulls up the front of her dress.,3\n20005,lsmdc3090_YOUNG_ADULT-43925,10185,Someone sits at a table in the center of the room. A server,Someone sits at a table in the center of the room.,A server,gold,crosses a courtyard at the foot of the steps.,hands the table to someone.,reads the name of the television.,sets down a napkin and silverware.,3\n"
  },
  {
    "path": "data/val_full.csv",
    "content": "video-id,fold-ind,startphrase,gold-ending,distractor-0,distractor-1,distractor-2,distractor-3,gold-source,gold-type,distractor-0-type,distractor-1-type,distractor-2-type,distractor-3-type,sent1,sent2\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94857,18313,Students lower their eyes nervously. She,walks slowly towards someone.,wheels around as her dog thunders out.,\"pats her shoulder, then saunters toward someone.\",turns with two students.,\"keeps the cursor back to the house, then steps away from it and peers down on them.\",gold0-orig,pos,unl,unl,unl,unl,Students lower their eyes nervously.,She\nanetv_dm5WXFiQZUQ,18419,He rides the motorcycle down the hall and into the elevator. He,exits the building and rides the motorcycle into a casino where he performs several tricks as people watch.,looks at a mirror in the mirror as he watches someone walk through a door.,\"stops, listening to a cup of coffee with the seated woman, who's standing.\",pulls the bag out of his pocket and hands it to someone's grandma.,slides the driver's side button and pulls out a sleek pink jet beside him.,gold0-orig,pos,unl,unl,unl,unl,He rides the motorcycle down the hall and into the elevator.,He\nanetv_dm5WXFiQZUQ,18418,The motorcyclist gets out of bed and prepares to leave by bathing using the bathroom and reading the newspaper. He,rides the motorcycle down the hall and into the elevator.,\"sits on the ground beside her pants, clinging by a flannel wool.\",makes his way past it and peers out a window.,shoots a look at her.,,gold0-reannot,pos,unl,pos,pos,n/a,The motorcyclist gets out of bed and prepares to leave by bathing using the bathroom and reading the newspaper.,He\nlsmdc3017_CHRONICLE-7117,6588,We pan over to three girls chatting by a leaf blower. It,levitates and blows one girl's skirt up.,looks away for a second.,closes a phone before her door.,leaves the man to the middle of the room and nods to the camera.,,gold1-orig,pos,unl,unl,unl,n/a,We pan over to three girls chatting by a leaf blower.,It\nanetv_KNyM0KvDHMM,8893,A man is in a bike shop and stand next to a bike while talking. The man,holds a pointy tool that uses to fix the handle of the bike.,uses a piece of wood to use it.,begins working out on his bike.,takes skis out of the bike and is shown one last time.,lifts a big guy with the free piece attached and lifts it.,gold0-orig,pos,unl,unl,unl,unl,A man is in a bike shop and stand next to a bike while talking.,The man\nanetv_KNyM0KvDHMM,8894,The man holds a pointy tool that uses to fix the handle of the bike. The man,\"takes out the cover of the handlebar and rise with the tool and spray liquid inside, then press the handle with his hand.\",continues to take a bite of the bakes.,looks down at the young man and stands next to a man dressed as a man stands on a sidewalk.,laughs and does little more flips.,,gold1-orig,pos,unl,pos,pos,n/a,The man holds a pointy tool that uses to fix the handle of the bike.,The man\nanetv_KNyM0KvDHMM,3305,He begins taking off a bike's handlebars and moving them around. He,sprays down the handlebars and continues speaking.,puts on some shingles and cuts them off to the center.,slides the items apart and instead drives forward.,begins to cross his bike as if in a game to catch it.,rubs the tire on the bike with a knife.,gold1-orig,pos,unl,pos,pos,pos,He begins taking off a bike's handlebars and moving them around.,He\nanetv_KNyM0KvDHMM,3304,A man is shown speaking to the camera and holding up various tools and products. He,begins taking off a bike's handlebars and moving them around.,continues scraping the hair while looking directly into the camera.,continues putting the sandwich into the bike and shows how to use it.,continues cutting the pieces all around the roof and presenting it to the camera.,continues talking while showing the board and showing off various objects.,gold1-orig,pos,unl,unl,pos,pos,A man is shown speaking to the camera and holding up various tools and products.,He\nanetv_veNIfCkd1Pw,723,\"The judge supervises the routine of the gymnast. Then, the gymnast spins\",holding the higher bar and jumps stand on the mat.,flips in a competition and the man claps his hands dismounting.,to leave hands and lands in a high fall throw.,to do his routine on the bars.,flips and the gymnast does cartwheels.,gold1-orig,pos,unl,unl,pos,pos,The judge supervises the routine of the gymnast.,\"Then, the gymnast spins\"\nanetv_veNIfCkd1Pw,722,A gymnast performs uneven bars routine while people watch. The judge,supervises the routine of the gymnast.,comes in on her and shows the performance on the court.,walks over the mat and cuts hands movements.,makes the judges take her hands as well.,,gold0-orig,pos,unl,unl,unl,n/a,A gymnast performs uneven bars routine while people watch.,The judge\nanetv_OXbfnzs-qUU,17945,The camera is blurry as it focuses on the knitting. The reading lady,puts her paper down.,shakes her head and the woman looks over and the photographer's away.,is revealed under the bed sheets and has a static paper to her hand.,is reading across the newspaper.,,gold0-orig,pos,unl,unl,pos,n/a,The camera is blurry as it focuses on the knitting.,The reading lady\nanetv_OXbfnzs-qUU,3103,A woman is seen knitting while speaking to the camera and another girl walking into frame. The girls,continue to speak with one another while the girl knits.,swing her legs around and wrap her legs around.,move back and fourth on the rope.,begin posing on their feet while falling down.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen knitting while speaking to the camera and another girl walking into frame.,The girls\nanetv_OXbfnzs-qUU,17944,A lady close to the camera knits. The camera,is blurry as it focuses on the knitting.,holds up on inspection.,is getting steady on eye contact.,gets up and gets brushed.,shows young lady brushing her hair.,gold0-orig,pos,unl,unl,unl,pos,A lady close to the camera knits.,The camera\nanetv_OXbfnzs-qUU,3104,The girls continue to speak with one another while the girl knits. The,continue with their conversation.,put the bars around while speaking and play.,continues to play the instrument while looking to the camera.,speaks extensively about drinking tea and happen to music.,is the second girl who gets on her hand and walks away.,gold0-orig,pos,unl,unl,unl,unl,The girls continue to speak with one another while the girl knits.,The\nanetv_z5bc9KKiAGI,7708,He is throwing darts at a wall. A woman,is standing next to him.,squats alongside flies side to side with his gun.,throws a dart at a dartboard.,collapses and falls to the floor.,walks up to him.,gold1-orig,pos,unl,pos,pos,pos,He is throwing darts at a wall.,A woman\nanetv_y8ENWnuzCIE,14556,A woman is laying back in a chair getting her lip pierced. The piercer,removes the tool and pulls on her lip.,points at the end of her nose.,shows her eye out several different angles.,uses her pink toothbrush while staring at the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is laying back in a chair getting her lip pierced.,The piercer\nanetv_y8ENWnuzCIE,2851,She is getting a piercing and the man is about to start. He,sticks the needle through her bottom lip.,points at her foot for sure she is dancing.,\"has just removed the weights, while doing her indoor exercise and goes through to the window.\",is inside a bathroom and talks showing how you can rinse and wipe her sink well.,\"comes up, dials a number and begins to talk, laughing and playing.\",gold0-orig,pos,unl,unl,unl,unl,She is getting a piercing and the man is about to start.,He\nanetv_y8ENWnuzCIE,2850,A girl is sitting in a chair with a gloved man with his hands in her mouth. She is getting a piercing and the man,is about to start.,begins to laugh in the room.,open the cats right eye.,holds behind the camera then wraps the contact.,begins braiding his hair laying face.,gold0-orig,pos,unl,unl,unl,unl,A girl is sitting in a chair with a gloved man with his hands in her mouth.,She is getting a piercing and the man\nanetv_fynO9wmckLA,1641,\"Two young men are standing indoors, talking to the camera. They\",\"demonstrate how they run on a track, and do a long jump into sand.\",begin to rake and work very fast.,drive through several track areas.,are playing on the sidewalk in front of the players.,are riding shuffleboard in a living room.,gold0-reannot,pos,unl,unl,unl,unl,\"Two young men are standing indoors, talking to the camera.\",They\nanetv_bEniqIC5Ric,8887,\"A woman rides a camel holding a rode with her right hand while a man pulls the camel. Then, the camel stops and the woman\",gets down from the camel.,shakes hands with her dog.,climb onto the back.,continue to talk to others.,and the man leave with their dog on the camel.,gold0-orig,pos,unl,unl,unl,unl,A woman rides a camel holding a rode with her right hand while a man pulls the camel.,\"Then, the camel stops and the woman\"\nlsmdc1059_The_devil_wears_prada-98762,12064,Someone falters in the foyer as there are three closet doors to choose from. Someone,looks up the spiral staircase and sees the twins looking over the banister rail on an upper level.,\"opens the door to people, who are packing clothes in their bags, along with the kid burst into the living room.\",'s lassos a whip as a pirate.,sits on a couch with his arms tucked in his pockets.,,gold0-orig,pos,unl,unl,pos,n/a,Someone falters in the foyer as there are three closet doors to choose from.,Someone\nanetv_1RKExOpIGas,16833,Men are riding motorbikes in a path. people in motorbikes,are doing motocross in a dusty path.,are riding the camels.,are sitting on a horse.,stands behind the dog.,are running in dirt.,gold0-orig,pos,unl,unl,unl,pos,Men are riding motorbikes in a path.,people in motorbikes\nanetv_1RKExOpIGas,11444,A man is seen climbing on a dirt bike and shown speaking to the camera with others. Several clips,are shown of people riding around on dirt bikes.,are shown of people riding dirt and bikes around a track while following and speaking to the camera.,are shown showing ramps as well as speaking to the audience.,are shown of people riding on dirt bikes as well as riding down the road.,are then shown of people riding dirt bikes as well as climbing on the bike.,gold1-orig,pos,unl,pos,pos,pos,A man is seen climbing on a dirt bike and shown speaking to the camera with others.,Several clips\nanetv_1RKExOpIGas,11445,Several clips are shown of people riding around on dirt bikes. One person falls off their bike and the people,continue riding around on the track.,get back onto their bikes.,continue climbing with one another.,begin working on the mat at the same time.,begin walking around one another.,gold0-reannot,pos,unl,unl,unl,pos,Several clips are shown of people riding around on dirt bikes.,One person falls off their bike and the people\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5750,It winks down at him as it flies off. Someone,puts his bag back on.,watches an assault rifle and drags him through to the police car.,\"freezes, listening to him.\",notices her naked body.,his head flops onto his leg.,gold1-orig,pos,unl,unl,unl,unl,It winks down at him as it flies off.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5738,Someone comes out of the bathroom and stares. Someone,switches off the bathroom light and approaches the bed.,stands with an army.,holds his gaze as someone hands a cup to a neighbor.,sit on the bed someone follows at someone who sits on the main floor with a shawl and a tripod.,,gold0-orig,pos,unl,unl,unl,n/a,Someone comes out of the bathroom and stares.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5748,It hops onto his finger. He,strokes its head and lets it go.,begins to stumble and knocks along the pipe.,used his fingers to wipe some raw blush off someone's sleeve.,slams someone to his ground to jump straight.,peers out from beneath it.,gold0-orig,pos,unl,unl,unl,unl,It hops onto his finger.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5751,Someone puts his bag back on. He,dashes off to work.,looks out at the ball of fire.,watches from the corner of the pool.,hoists himself onto his feet and shoves her away.,holds out a finger.,gold0-orig,pos,unl,unl,pos,pos,Someone puts his bag back on.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5752,He dashes off to work. He,skips happily through the front door and to the lift.,walks away in the apartment.,swims past a warehouse and up a hill.,exits the car with a crowbar loaded into the bar.,sits on the chair on the edge of the podium.,gold0-orig,pos,unl,unl,unl,unl,He dashes off to work.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5749,He strokes its head and lets it go. It,winks down at him as it flies off.,'s a pound stone hits his own car that blocks his breath.,sound the general's nails.,lets out a sigh of relief.,looks up at someone.,gold0-orig,pos,unl,unl,pos,pos,He strokes its head and lets it go.,It\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5742,Someone boogies his way past the display and through a park. He,\"cheerfully greets the people he meets, even kissing one woman's hand.\",paces posted and her.,\"reacts through the rain to someone, heading out to the sunshine gathering for her.\",\"empties a rocky flip gap, knocking the bar back to his post.\",\"sees someone waiting in the aisle, his face pale and weary.\",gold0-orig,pos,unl,unl,unl,unl,Someone boogies his way past the display and through a park.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5746,He's hoisted shoulder high by his dancing friends. The large crowd of dancers,is joined by a marching band in full colorful military style uniform.,lets the man off her feet with the stars.,stare up at them in their early white bridal styles.,are unaware standing down in his midst.,play forward to introduce him indoors.,gold1-orig,pos,unl,pos,pos,pos,He's hoisted shoulder high by his dancing friends.,The large crowd of dancers\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5745,Someone grabs a baseball bat and knocks an imaginary ball out of the park. He,'s hoisted shoulder high by his dancing friends.,tries to scramble around to make someone's second shot.,puts the envelope on the wall.,throws it at him as he sways into a corner.,rubs his cupped arm and kicks it in and out of sight.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs a baseball bat and knocks an imaginary ball out of the park.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5740,\"In daylight, he walks out of the apartment building with a broad grin on his face. He\",pauses to check his look in a shop window.,sits into the jack - o - lantern.,plugs a key to a pocket's pocket and reaches out to pick up something.,\"shuts his eyes, his brow knitted.\",approaches his sleeping wife.,gold0-orig,pos,unl,unl,pos,pos,\"In daylight, he walks out of the apartment building with a broad grin on his face.\",He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5743,He daps and slaps with a couple of guys he meets on his sunny walk to work. He,tosses his bag to a woman and starts to dance.,sits on a bench illuminated by the rain.,finds his muddy mark on a scooter's dusty cupcake and sets it on the bed behind someone.,\"gets him in the nuts and staggers away, finishing his coffee.\",,gold1-reannot,unl,unl,unl,unl,n/a,He daps and slaps with a couple of guys he meets on his sunny walk to work.,He\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5754,His boss has a new assistant with a large afro. Someone,stares gloomily at mackenzie.,'s arm is held in a flash club.,pins up his laptop.,\"touches a green graphic on the lips of a black felt machine, and on tape.\",\"takes a few steps towards a gray - haired woman, who studies her fur - collared jacket.\",gold1-reannot,pos,unl,unl,unl,pos,His boss has a new assistant with a large afro.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5741,The reflection he sees is Harrison Ford as someone Solo winking back at him. Someone,boogies his way past the display and through a park.,trips at the head of the floor and jumps off to his knees.,dives straight to the surface.,lies in the hospital bed.,,gold0-reannot,pos,unl,unl,pos,n/a,The reflection he sees is Harrison Ford as someone Solo winking back at him.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1463,5739,\"Someone switches off the bathroom light and approaches the bed. In daylight, he\",walks out of the apartment building with a broad grin on his face.,\"turns to the side of the hall, silhouetted against the dark luminous light.\",\"lights it and puts it on as he sits down, lit by the light.\",has thought someone's video in the apartment.,pulls a blanket to reveal his naked torso standing on a narrow ledge.,gold0-reannot,pos,unl,unl,unl,unl,Someone switches off the bathroom light and approaches the bed.,\"In daylight, he\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12264,\"The girls sit at easels, stretching bulbous renditions of the obese woman. In the front row, someone\",wears a look of disgust.,waits a minute to congratulates his father.,sits with her hands next to someone.,passes someone on a corridor balcony.,stands and points to a cell cart.,gold0-orig,pos,unl,unl,unl,unl,\"The girls sit at easels, stretching bulbous renditions of the obese woman.\",\"In the front row, someone\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12263,\"Later, we drift from someone's socks up his chunky bare legs. He lies on his side with the sheet covering his torso, his head\",propped up on his forearm.,splayed on his shoulder and his eyes meet open.,framed by the camera's grasp.,propped up on the swing of his hand.,tucked under someone's leg.,gold1-orig,pos,unl,unl,unl,unl,\"Later, we drift from someone's socks up his chunky bare legs.\",\"He lies on his side with the sheet covering his torso, his head\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-293,12267,She yanks off the sheet. Someone,pulls a fire alarm.,smiles as she sleeps in the closet.,walks along the side to her office.,glances out to find someone lying down on the toilet.,runs through the open living room window.,gold1-orig,unl,unl,unl,unl,unl,She yanks off the sheet.,Someone\nanetv_aFpWNTroghs,9534,He gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree. He,takes out some clippers and clips some of the roots.,uses the wand to loosen the string next to the tree.,is lying on the ground with his back to the wall.,continues on with his tools and ends what he has done without looking at.,,gold0-orig,pos,unl,pos,pos,n/a,He gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree.,He\nanetv_aFpWNTroghs,9535,\"He takes out some clippers and clips some of the roots. Last, the video\",ends with the closing captions.,\"shows him grabbing a bow, hanging fish and trimming the hedge.\",ends with the color of scissors and cuts.,cuts to a sharpener and how much he was trying.,,gold0-orig,pos,unl,unl,unl,n/a,He takes out some clippers and clips some of the roots.,\"Last, the video\"\nanetv_aFpWNTroghs,9532,An intro comes into the screen for a video about removing mulch. A man,digs his heel into the base of a tree to push away the mulch.,uses a vacuum to flatten out with the machine.,flies into a poster while a factory is shown.,picks up the paste and sets it in a boot.,,gold0-orig,pos,unl,unl,pos,n/a,An intro comes into the screen for a video about removing mulch.,A man\nanetv_aFpWNTroghs,9533,A man digs his heel into the base of a tree to push away the mulch. He,gets down on his knees and begins to remove the mulch by hand by pushing it further from the base of the tree.,\"hill through a forest, with circles stretched out behind the trees.\",takes his t - shirt off and then corners his trunk back on the trailer.,use his wand to cut up leaves of burning grass of trees.,pulls down a radio's lid.,gold0-orig,pos,unl,unl,pos,pos,A man digs his heel into the base of a tree to push away the mulch.,He\nlsmdc3047_LIFE_OF_PI-22928,12395,\"He lowers his eyes, tries to bite back his smile and fails. The two men\",share a warm smile.,\"stare past scans at someone, listening.\",\"reach their screws, then side pulls to approach it.\",shake hands and dance together in numerous different areas.,get to their feet and kiss.,gold1-orig,pos,unl,unl,pos,pos,\"He lowers his eyes, tries to bite back his smile and fails.\",The two men\nlsmdc3047_LIFE_OF_PI-22928,12400,It contains a news clipping featuring someone at the end of his journey. The writer,flips to the last page.,clears across the street and walks over to someone who sits on a branch next to captain someone.,looks up at the frosted window in his bare apartment.,scowls at the teen as someone holds him close.,,gold0-orig,pos,unl,unl,unl,n/a,It contains a news clipping featuring someone at the end of his journey.,The writer\nlsmdc3047_LIFE_OF_PI-22928,12397,Someone's eyes dart toward a window. Someone,crosses toward the door.,smashes it against a wall behind him.,stands in front of the monitor.,leads someone up a staircase.,does n't see them.,gold1-orig,pos,unl,pos,pos,pos,Someone's eyes dart toward a window.,Someone\nlsmdc3047_LIFE_OF_PI-22928,12394,The writers eyes sparkle and the corners of his lips turn up. He,\"lowers his eyes, tries to bite back his smile and fails.\",\"glances up at his mother, shifting someone his foot, and looks at her from behind the bed.\",picks up the tray and begins applause.,\"looks toward someone, and someone can't stand watching tears.\",crosses over to the man's table.,gold0-orig,pos,unl,unl,unl,pos,The writers eyes sparkle and the corners of his lips turn up.,He\nlsmdc3047_LIFE_OF_PI-22928,12402,The writer looks up from the file and beams. The writer,shakes hands with someone's beautiful wife and children.,looks over his shoulder with a slight smirk.,gives him a serious look.,then pats someone's back and regards his brother with a concerned frown.,staring at him sheepishly.,gold0-orig,pos,pos,pos,pos,pos,The writer looks up from the file and beams.,The writer\nlsmdc3047_LIFE_OF_PI-22928,12401,The writer flips to the last page. The writer,looks up from the file and beams.,rips an arm out of someone's hand.,gives some self look.,\"looks over, taken aback.\",,gold1-orig,pos,unl,unl,pos,n/a,The writer flips to the last page.,The writer\nlsmdc3047_LIFE_OF_PI-22928,12404,\"Now the teenage someone floats on the ocean gazing toward us. As he smiles, the tiger\",appears to his left facing away from us.,starts to move toward the pylon.,gets up and sits to join the girls.,regards him with a wounded gaze.,stoops to pick up the stuffed animal remnants.,gold0-orig,pos,unl,pos,pos,pos,Now the teenage someone floats on the ocean gazing toward us.,\"As he smiles, the tiger\"\nlsmdc3047_LIFE_OF_PI-22928,12405,\"As he smiles, the tiger appears to his left facing away from us. The boy fades from view and the sparkling ocean\",becomes the mexican jungle.,goes to tilt his point of view.,skyline looms over him.,moves up at them.,is a bunch of people with upholstery coolers.,gold0-orig,pos,unl,unl,unl,unl,\"As he smiles, the tiger appears to his left facing away from us.\",The boy fades from view and the sparkling ocean\nlsmdc3047_LIFE_OF_PI-22928,12399,\"Seated on a couch, the young writer glances after him then opens the insurance file. It\",contains a news clipping featuring someone at the end of his journey.,leads her into a room where a group of working thugs remain.,keeps on his laptop.,takes a few steps towards the door.,drops onto the road.,gold0-orig,pos,unl,unl,unl,unl,\"Seated on a couch, the young writer glances after him then opens the insurance file.\",It\nlsmdc3047_LIFE_OF_PI-22928,12406,The boy fades from view and the sparkling ocean becomes the Mexican jungle. He,\"vanishes within the thick, jungle growth.\",\"shapes flower petals down in the sunshine, then races across to the landing, clad in an elegant silver dress.\",shows next a table.,waves it under the water and we land on someone.,sits in a green parking space in front of the lighthouse.,gold0-reannot,pos,unl,unl,unl,unl,The boy fades from view and the sparkling ocean becomes the Mexican jungle.,He\nlsmdc3047_LIFE_OF_PI-22928,12396,The two men share a warm smile. Someone's eyes,dart toward a window.,follow the animal as she goes.,show a long cartoon picture.,flare into a faint glow.,widen and he starts to cry.,gold1-reannot,pos,unl,unl,unl,pos,The two men share a warm smile.,Someone's eyes\nlsmdc3047_LIFE_OF_PI-22928,12393,\"Someone regards the younger man with a calm, sad expression. Someone\",gives a faint smile.,folds the contract to her waist and presses it to her mouth.,stares as tears shine on her face.,\"stands by someone, then glances away.\",looks at someone with interest.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone regards the younger man with a calm, sad expression.\",Someone\nanetv_JHFjlLtpIcU,652,\"A gymnast runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips. She\",flips off the bar and lands on her feet.,picks his hands up to break the air and performs multiple flips.,picks and prepares for stand of bars by blocking the score off the mat.,\"watches the performance, then finishes to do the same.\",jumps beneath his elbows and claps for him to finish and walks back to the court.,gold0-orig,pos,unl,unl,unl,unl,\"A gymnast runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips.\",She\nanetv_JHFjlLtpIcU,653,She flips off the bar and lands on her feet. Her fellow gymnasts,run up to her in excitement.,watch them dance but does n't fit in the same time.,perform laps with the baton.,work on her balance.,skate crowded with other gymnasts.,gold0-orig,pos,unl,unl,unl,unl,She flips off the bar and lands on her feet.,Her fellow gymnasts\nanetv_JHFjlLtpIcU,651,A crowd watches a gymnastics show. A gymnast,\"runs up to a high bar and alternates between the high and low bar, performing various gymnastics moves and flips.\",is seen diving after a beam before lifting her up before.,kicks a baton on the lawn.,runs in front of the beam.,\"prepares to perform dance moves, while the audience applauded.\",gold1-orig,pos,unl,unl,pos,pos,A crowd watches a gymnastics show.,A gymnast\nanetv_NGF0rQiDxNk,18116,\"A female gymnast is spinning and jumping on a pair of high beams as her coach watches, prepared to catch her. He\",\"steps onto the beam as she dismounts, arms in the air.\",stands catch the sides of her hands as the game ends.,spins with her ballerina batons and begins by picking up the small clamp at a different time.,\"begins to lift up another triangle on them, which it spins and lands on the stage.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A female gymnast is spinning and jumping on a pair of high beams as her coach watches, prepared to catch her.\",He\nanetv_KBfCXpgGhdw,13385,Men are standing on motorbikes getting ready for a motocross competition. man,is talking to the camera and standing on a podium.,drops the javelin to the ground and jumps it very high.,stands outside in the field going at arms of people and leading a long jumping calf in front.,\"places the ladders onto a fence and winds up a marching wall, high with hammer and a stone.\",,gold1-orig,pos,unl,unl,unl,n/a,Men are standing on motorbikes getting ready for a motocross competition.,man\nanetv_KBfCXpgGhdw,13383,Men are standing on a sandy area walking. man,are talking to the camera standing on the sand.,stands throwing his team in the field.,is wearing a harness on a man's shoulders.,stands at the front of a line.,is doing tricks and jumping down in front of multiple people.,gold1-orig,pos,unl,unl,unl,pos,Men are standing on a sandy area walking.,man\nanetv_KBfCXpgGhdw,13382,A lot of people are sitting on terraces in a big field and people is walking in the entrance of a big stadium. men,are standing on a sandy area walking.,are running in a gym in front of a woman on the ground.,are playing instruments in a black room with a man playing the drums.,are in street in a parking lot celebrating with horses and horses.,are climbing a dressing room to another to the patio filled with people.,gold0-reannot,pos,unl,unl,unl,unl,A lot of people are sitting on terraces in a big field and people is walking in the entrance of a big stadium.,men\nanetv_KBfCXpgGhdw,13384,Man are talking to the camera standing on the sand. men,are standing on motorbikes getting ready for a motocross competition.,are in a gym playing beer pong.,are walking and plays paintball in a park.,are jumping in front of a mountain and doing tricks on a capoeira course.,are in the middle of the field playing polo.,gold1-reannot,pos,unl,unl,unl,pos,Man are talking to the camera standing on the sand.,men\nanetv_hSnTYQ9osIg,206,Two people are outside in ball dancing in a plaza as a group of people surround them and watch. People come and go to watch the two people dance and then they finally,\"stop dancing, bow and grabs a cloth to wash their face.\",stop by at the end dance until they row the burning two.,get done and spin to onlookers to keep each other from fighting and trying to win the match.,fight over their right arm and then take off in the end.,,gold0-orig,pos,unl,unl,unl,n/a,Two people are outside in ball dancing in a plaza as a group of people surround them and watch.,People come and go to watch the two people dance and then they finally\nanetv_N0DA6RpIf5Y,9124,He uses the rake to push the leaves into piles. He,\"continues to rake, clearing a path of dirt underneath.\",paints the fence while laying on the grass.,puts a handful of flowers on his arm.,\"stops the dirt from the pile, scattering of the snow.\",makes it all the way into the house.,gold0-orig,pos,unl,unl,unl,unl,He uses the rake to push the leaves into piles.,He\nanetv_N0DA6RpIf5Y,9123,A man is raking leaves in a large yard. He,uses the rake to push the leaves into piles.,spins around using a leaf blower.,is raking dry leaves with a leaf blower.,\"sits on the grass by the pool, then starts putting leaves on the lawn mower.\",is mowing the lawn and shows a cutting of the bushes.,gold0-orig,pos,unl,unl,pos,pos,A man is raking leaves in a large yard.,He\nlsmdc3025_FLIGHT-11836,15086,\"Someone puts his bandaged hand to his mouth, as tears flow down his face. He\",drops the phone on his stomach.,continues to play a bag.,grabs a needle and shakes his head.,\"runs back to someone, who's staring over the net.\",struggles to go backwards.,gold1-orig,pos,unl,pos,pos,pos,\"Someone puts his bandaged hand to his mouth, as tears flow down his face.\",He\nanetv_tYZJ4O5Hsz4,11517,\"A little girl plays softly the drums holding two sticks while she is singing on a microphone. The, the girl\",plays more fast the drums.,claps the girls hands anxiously.,take in the greeting and an asian girl followed by two people standing on stage.,holds the microphone up and begins to girl dance an entire time.,joins other sticks and also push the girl over and over the metal bars and gets on the leash as the camera watches her.,gold0-orig,pos,unl,unl,unl,unl,A little girl plays softly the drums holding two sticks while she is singing on a microphone.,\"The, the girl\"\nanetv_FFZOmzFc_us,9550,The man begins washing the dishes in a quick motion and throwing them into a pile. The man,continues washing the dishes while looking back to the camera.,laughs with a hippie who is looking up to play.,continues spraying down the face and knocking the man.,bends over and rinses his hands and more leaves.,continues at his side.,gold0-orig,pos,unl,unl,unl,unl,The man begins washing the dishes in a quick motion and throwing them into a pile.,The man\nanetv_FFZOmzFc_us,9549,A man is seen wearing an apron in front of sink stacked with many dishes. The man,begins washing the dishes in a quick motion and throwing them into a pile.,puts cup and soap in the rag and twists several pots off the table.,begins to put on a shoe.,sits back up to the camera and looks up from the screen.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen wearing an apron in front of sink stacked with many dishes.,The man\nlsmdc3023_DISTRICT_9-11048,5657,Now an eight - wheeled armored transport sits parked outside. Inside mnu headquarters someone,paces in front of someone.,uses a cleaning kit against a shadowy doorway.,watches with horrified expressions on their faces.,kisses someone's forehead.,reluctantly heads away from someone.,gold1-reannot,pos,unl,unl,pos,pos,Now an eight - wheeled armored transport sits parked outside.,Inside mnu headquarters someone\nlsmdc3023_DISTRICT_9-11048,5656,Someone stares fearlessly into the strange gun's blazing barrel. The bald thug,brings out a bag of weapons.,is hidden away from the incident.,rises at the hand and sends someone off the vehicle.,flexes his feet and gazes upward.,is hauled above the battlefield.,gold1-reannot,pos,unl,unl,unl,unl,Someone stares fearlessly into the strange gun's blazing barrel.,The bald thug\nanetv_Cjq9wf9XnX0,6890,Man is putting the lifts on a pole. man,is standing in middle of a room in a gym lifting weight.,is being a styled exercise in the sand.,cleans a wall paper on a handlebar.,is waxing in a black shirt only holding the blower.,runs on a raised rope to the center of the arena.,gold1-orig,pos,unl,unl,unl,unl,Man is putting the lifts on a pole.,man\nanetv_O_e0pqEMZMw,2913,He sits in front of a computer talking to the camera. He then,shows how to do something on the computer.,sets the iron down and squats over.,\"shows how to prepare a washer, squeezing ingredients into different beverages.\",lifts a barbell over his head.,holds up various bottles that he sieve and pours them onto his plate.,gold0-orig,pos,unl,unl,unl,unl,He sits in front of a computer talking to the camera.,He then\nanetv_O_e0pqEMZMw,2912,A man adjusts the camera on a back porch. He,sits in front of a computer talking to the camera.,uses a scraper to trim the windows in the yard.,grabs his shoes and puts tools inside.,demonstrates how to move the leaves.,,gold0-orig,pos,unl,unl,unl,n/a,A man adjusts the camera on a back porch.,He\nanetv_vKShqwBJrME,4159,A person's hands are seen attempting to solve a rubix cube while the end of a table is shown. The person,continues until they finish the cube and then shows his time on the screen.,finishes cleaning and begins to solve it with rubix extensions.,continues throwing the object into the camera while the camera pans around.,mixes continuously and leads into one speaking to the camera.,solves the puzzle and zooms it back to the dartboard and then turns away.,gold0-orig,pos,unl,unl,unl,unl,A person's hands are seen attempting to solve a rubix cube while the end of a table is shown.,The person\nanetv_46YBNutTwKg,14288,A shot of christmas tree is shown with people quickly moving in and out of frame. Lights,are shown on the tree as people continue to move in and out of frame.,continue riding on over a course performing various tricks.,see snow off in a city where another man lies past a car and tries to drive him from his eye.,pans around the car in front of them moving away in different attempting attaches gambler somehow made their work.,and wallpaper up are shown on pictures.,gold1-orig,pos,unl,unl,unl,unl,A shot of christmas tree is shown with people quickly moving in and out of frame.,Lights\nanetv_46YBNutTwKg,14289,Lights are shown on the tree as people continue to move in and out of frame. The people,continue hanging ornaments and show off the tree in the end.,continue to ride around on the side while wandering around the still deserted area.,continue playing continuously while pausing to speak to the camera.,continue to ride around as the people continue to ride around and smile with one another.,,gold0-orig,pos,unl,unl,unl,n/a,Lights are shown on the tree as people continue to move in and out of frame.,The people\nlsmdc3003_40_YEAR_OLD_VIRGIN-1141,9902,\"Slowly leaning back into view, he peers around the corner at the box of porn. Later, he\",lights nearly a dozen candles of varying sizes and colors.,carries a single string piano within the upstairs stage.,drops the satchel of money and stares at the sand feeling in his sky suit.,paces left alone in his room as someone works on a box monitor.,flashes her finger in the open doorway.,gold0-reannot,pos,unl,unl,unl,unl,\"Slowly leaning back into view, he peers around the corner at the box of porn.\",\"Later, he\"\nanetv_X3hQtXddMd4,14756,A person wake boards on a lake while being towed. They,pass a person in the water.,are properly riding in their raft.,\"turn the water, and float down to rest 100 degrees.\",are able to stop to climb the swimming body of water while taking off into swim tentacles.,see a suspended bridge down there.,gold0-orig,pos,unl,unl,unl,unl,A person wake boards on a lake while being towed.,They\nanetv_X3hQtXddMd4,14757,They pass a person in the water. They,come to a stop by a dock.,jump out of the swing and crash into each other.,pass the water to the center of the boat.,go down a hill.,pass by a river.,gold0-orig,pos,unl,pos,pos,pos,They pass a person in the water.,They\nanetv_X3hQtXddMd4,14755,A camera and logo appear briefly. A person,wake boards on a lake while being towed.,lights a candle on a tam - tam.,walks on the horse down the track.,is seen inside and boxing.,,gold0-reannot,pos,unl,unl,unl,n/a,A camera and logo appear briefly.,A person\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1153,A boy takes a photograph. A tatty gray owl,flies down into the room.,lies just above the water.,enters the silky gray images swirling around the room.,is accompanied by drawings of a woman.,hangs between the grass of the broken wooden fence.,gold0-orig,pos,unl,unl,unl,pos,A boy takes a photograph.,A tatty gray owl\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1152,\"Furious, he throws it into a pot. The ghost of someone\",floats into the great hall where the students are sitting at long tables.,follows his dad up to the canister.,falls a few yards away.,spits it out at the train.,,gold1-orig,pos,unl,unl,unl,n/a,\"Furious, he throws it into a pot.\",The ghost of someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1155,Someone takes a red envelope from someone's beak. Someone,nervously breaks the seal on the red envelope.,\"strides through the jungle, reaches the pepper stoically, reads it.\",pushes up fast to the man.,looks over her shoulder at a house in it.,notices to look at someone more closely.,gold0-orig,pos,unl,pos,pos,pos,Someone takes a red envelope from someone's beak.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1154,\"Swooping low over the table, it heads for someone, but collides with a bowl, scattering crisps everywhere. Someone\",takes a red envelope from someone's beak.,struggles to block the hidden view and looks over his shoulder at someone.,is now wearing scrubbing lightly - - - and putting a hand into his skin.,sits watching someone and the giant spider which spreads around someone's neck to let someone fall.,blows the whistle far away.,gold1-reannot,pos,unl,unl,unl,unl,\"Swooping low over the table, it heads for someone, but collides with a bowl, scattering crisps everywhere.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1158,It blows a raspberry in someone's face. Someone,looks at someone sympathetically.,\"turns, eyes a giant clown - faced monk lying on the ground.\",leaps from his pipe as he steps out into the dark.,walks out of the window.,tosses out fang and falls onto his feet.,gold0-reannot,pos,unl,unl,unl,unl,It blows a raspberry in someone's face.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92781,1157,\"To his embarrassment, it starts to scream at him. The envelope\",folds itself into a mouth.,drops beneath the grasping for support.,tries to iron the flame of the suit.,is sitting - a ring on his gloved hand.,,gold1-reannot,pos,unl,unl,unl,n/a,\"To his embarrassment, it starts to scream at him.\",The envelope\nanetv_V9nOM1VWdnc,5697,\"Next, the person puts ice in a cup, and then squeeze a lemon using the lemon squeezer, add syrup and water from jugs. Then, the person\",put a cover on the cup and shake the mix.,adds three liquors and a pitcher and pours it on the mortar and for a while.,put the left arm on a blender.,grabs a pickle and pour it into a mixer.,,gold0-orig,pos,unl,unl,unl,n/a,\"Next, the person puts ice in a cup, and then squeeze a lemon using the lemon squeezer, add syrup and water from jugs.\",\"Then, the person\"\nanetv_bWquUXC2Te8,4252,He begins shaving his face while looking into the mirror. He,points to the razor and continues shaving his face and looking to the camera.,shaves in as he is shaving his own arm.,wets his lips while on the shaver.,slowly rubs his upper lip with his thumb.,,gold0-orig,pos,unl,unl,pos,n/a,He begins shaving his face while looking into the mirror.,He\nanetv_bWquUXC2Te8,4251,A man is seen looking to the camera wile holding a razor. He,begins shaving his face while looking into the mirror.,puts metal on his mind.,then begins shaving a beard down on the face and pointing to.,glances around the area and ends by walking out of frame.,shaving around his face is shown smiling into a mirror.,gold1-orig,pos,unl,pos,pos,pos,A man is seen looking to the camera wile holding a razor.,He\nanetv_GvP6gZbHn30,11149,\"A man is holding onto a cube with multiple colors like a rubix cube, puts it down, presses a timer and picks it back up. As soon as he picks it up he\",begins to turn it around and around attempting to match all the colors on each side.,zooms away from it and scrapes the bottom of the watermelon with an electric cutter.,begins ripping off the armor with an arrow.,puts the cube back down and starts to do it again under the hand he feeds him with another person sitting next to him.,,gold0-orig,pos,unl,unl,unl,n/a,\"A man is holding onto a cube with multiple colors like a rubix cube, puts it down, presses a timer and picks it back up.\",As soon as he picks it up he\nanetv_GvP6gZbHn30,6339,The person then solves the puzzle as the clock in front of him ticks away. The person,finishes and puts the cube down.,continues to turn the cube around and watches sticks.,sits down and solves the cube.,finishes the cube and then solves the puzzle.,,gold0-orig,pos,unl,pos,pos,n/a,The person then solves the puzzle as the clock in front of him ticks away.,The person\nanetv_GvP6gZbHn30,11150,As soon as he picks it up he begins to turn it around and around attempting to match all the colors on each side. The man,matches all the colors and slams the cube on the table while hitting the timer at the same time.,\"spins the second stick, cutting the grass and grabbing the ball off the wall where they are getting along.\",finishes cleaning the end and when he goes back to see what he is done.,\"is very kind, but is an recording seated man again.\",begins playing the slower beat of the beat that which he'd heard in the other to be the part of the song.,gold0-reannot,pos,unl,unl,unl,unl,As soon as he picks it up he begins to turn it around and around attempting to match all the colors on each side.,The man\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13748,\"Someone goes to the door, as someone limps slowly out through the classroom below. The ghostly horsemen\",gallop through the great hall.,begin to retreat behind the corners of each other.,\"swing herself up one after the other, following in the direction of the song.\",are taken out on a wood passage down a curt street.,continues towards the sky.,gold0-orig,pos,unl,unl,unl,pos,\"Someone goes to the door, as someone limps slowly out through the classroom below.\",The ghostly horsemen\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13746,Someone points his wand and the parchment folds itself up and becomes blank. He,\"smiles at someone, picks up his bag and walking stick, and leaves.\",continues smoking and watches her aim at the bar.,leans on the hammock's lid.,fly into his arms.,\"opens the grand lid, then checks its contents.\",gold0-reannot,pos,unl,unl,unl,pos,Someone points his wand and the parchment folds itself up and becomes blank.,He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13747,\"He smiles at someone, picks up his bag and walking stick, and leaves. Someone\",\"goes to the door, as someone limps slowly out through the classroom below.\",grabs a ball and pulls back a third.,sits down and walks farther into the studio.,looks at someone just to see that someone's already going down.,\"comes back to the someone who's lying on a neck rack, brings a bottle of champagne.\",gold1-reannot,pos,unl,unl,unl,unl,\"He smiles at someone, picks up his bag and walking stick, and leaves.\",Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10044,13749,\"In the quadrangle, someone sits astride his magnificent new Firebolt. His classmates\",cheer as he zooms up into the air.,flee his pretty chestnut apartment.,give him quick glances as he climbs the deep stone steps of the house.,play the drums on their mother as someone smiles.,move to the side.,gold1-reannot,pos,unl,unl,unl,pos,\"In the quadrangle, someone sits astride his magnificent new Firebolt.\",His classmates\nanetv_SlogVhfmTVs,3518,A boy sprays shaving cream into his hand from a can in his bathroom. The boy,applies the shaving cream to his face.,shows products his shaving brush before shaving up his face.,mashes the other's hair with a spray towel.,takes the scrubs shoe with it.,shaves the shaving stylist's leg with a electric shaver shaver.,gold1-orig,pos,unl,unl,unl,unl,A boy sprays shaving cream into his hand from a can in his bathroom.,The boy\nanetv_SlogVhfmTVs,3520,A man has shaving cream on his face and reads a label on a pressurized can and discusses it. A man,rubs his smooth face.,is giving a treatment with a young who is fighting back.,is talking about shaving hairstyle in his hands.,removes the wig's beard and takes a nut.,appears wearing a blue apron.,gold1-orig,pos,unl,unl,unl,pos,A man has shaving cream on his face and reads a label on a pressurized can and discusses it.,A man\nanetv_SlogVhfmTVs,3519,The boy applies the shaving cream to his face. A man,has shaving cream on his face and reads a label on a pressurized can and discusses it.,removes the mans mug and places it on the girl's left hand.,cuts the baby face.,is using a razor to shave twice.,washes his wet hair with his hands.,gold0-orig,pos,unl,unl,pos,pos,The boy applies the shaving cream to his face.,A man\nanetv_SlogVhfmTVs,3522,The man holds up a metal oil can. The man,applies a medicine dropper with liquid to a razor and demonstrates how to use it.,uses a big piece of paper to remove the sandwiches decorated.,finishes a nut on the table and cuts it into four.,wash and brush the sliced potato.,shows off the finished product and showing the final product.,gold1-reannot,pos,unl,unl,unl,unl,The man holds up a metal oil can.,The man\nanetv_SlogVhfmTVs,3521,A man rubs his smooth face. The man,holds up a metal oil can.,shaves long beard and put the shaver back on the leg.,finishes using the photographs while getting how to start them swinging.,attaches a blue bull to a bull.,,gold1-reannot,pos,unl,unl,unl,n/a,A man rubs his smooth face.,The man\nlsmdc1060_Yes_man-99435,15127,Someone falls against someone and smiles contentedly. They,wrap their arms around each other.,have made a victorian sandwich in its case.,then go out on the statue.,slips away champagne and finds her young parents now at the tree.,,gold0-orig,pos,unl,unl,unl,n/a,Someone falls against someone and smiles contentedly.,They\nlsmdc1060_Yes_man-99435,15130,\"At a check - in desk at the airport, people stand facing a uniformed woman with thick, fair hair. She\",checks a computer screen and smiles at them.,stares at her estranged husband.,climbs on through a snow covered window.,walks into the bedroom.,forces a wince into smirk.,gold0-orig,pos,unl,unl,unl,pos,\"At a check - in desk at the airport, people stand facing a uniformed woman with thick, fair hair.\",She\nlsmdc1060_Yes_man-99435,15129,\"Looking thoughtful, he rests his chin upon her hair. At a check - in desk at the airport, people\",\"stand facing a uniformed woman with thick, fair hair.\",lie later in the big bed.,kiss as several roiling banquette billow out beneath the shimmering track.,smiles as she turns to the air large panel of dolphin photos.,make jet - dressed and set up boards with an spoke on the back of the limo.,gold0-orig,pos,unl,unl,unl,unl,\"Looking thoughtful, he rests his chin upon her hair.\",\"At a check - in desk at the airport, people\"\nlsmdc1060_Yes_man-99435,15128,\"They wrap their arms around each other. Looking thoughtful, he\",rests his chin upon her hair.,sits at his table and looks around.,backs away in a loving direction.,turns on the light.,leans his head against her shoulder and shakes her head.,gold0-orig,pos,unl,unl,unl,pos,They wrap their arms around each other.,\"Looking thoughtful, he\"\nanetv_51wFW1g42VQ,18476,A man is seen speaking to the camera that leads into clips of people playing lacrosse. The people,run all around one another as they take turns speaking to the camera.,speak to one another and demonstrate how to properly play pong with one another.,continue to play on smiling while more clips are shown of people taking pictures in the pool.,continue kicking and kicking at a match as well as passing along the grass and others help.,are shown with others celebrating to the camera and smiling at one another.,gold1-orig,pos,unl,unl,unl,pos,A man is seen speaking to the camera that leads into clips of people playing lacrosse.,The people\nanetv_51wFW1g42VQ,2451,The players are warming up for the game as different contestants talk about the techniques used in hurling. Some of the players,are running with their hurling sticks trying to catch the ball.,perform an attack on the camera.,play in a skate area where the mallet came.,looks sullen in the distance.,are in color.,gold1-orig,pos,unl,unl,unl,unl,The players are warming up for the game as different contestants talk about the techniques used in hurling.,Some of the players\nanetv_51wFW1g42VQ,2450,There are two teams participating in hurling. The players,are warming up for the game as different contestants talk about the techniques used in hurling.,hit the ball up with the net on the right side of the net.,kick the ball all the way down.,begin to play an game of indoor field hockey ball.,are watching from an indoor court.,gold0-orig,pos,unl,unl,unl,pos,There are two teams participating in hurling.,The players\nanetv_51wFW1g42VQ,18477,The people run all around one another as they take turns speaking to the camera. The people,continue speaking while others practice behind them.,ride around the end with the background panning around.,continue to push around one another and continue jumping up followed by people eating.,continue jumping around and cheering on the crowd.,jump to celebrate as the riders walk while going behind them.,gold1-orig,pos,pos,pos,pos,pos,The people run all around one another as they take turns speaking to the camera.,The people\nanetv_51wFW1g42VQ,2449,There's are some young athletes standing in an open field talking about hurling as some players play the game. There,are two teams participating in hurling.,are numerous players shown in rope to same preparing for a final hit of field competition.,for a person on a yellow field backstage speaks to the newscaster.,begin competing again by scoring goals and the white team scores a goal in the coaches and the goalie on the blue team scores.,are then shown practicing before going by doing more.,gold1-orig,pos,unl,unl,unl,pos,There's are some young athletes standing in an open field talking about hurling as some players play the game.,There\nanetv_XKu57UKSqPc,714,Woman is holding a razor and is cuting the hair of the dog. woman,keeps grooming the dog and combing his hair.,is taking off her shoes and lifts them up.,is helping the woman combing another woman's hair.,is brushing her hair in the shower.,is standing laying next to the cat and starts clipping the cats nails.,gold0-orig,pos,unl,unl,unl,unl,Woman is holding a razor and is cuting the hair of the dog.,woman\nanetv_XKu57UKSqPc,713,Woman is standing in a backyard with a lot of Schnauzer on a table and around her. woman,is holding a razor and is cuting the hair of the dog.,is sitting in a house talking to the camera.,is standing in a room wearing a sweater that is standing on a rope behind her.,is holding a child and cleaning the nose of a pumpkin.,is walking in the sidewalk playing hop scotch.,gold0-orig,pos,unl,unl,unl,unl,Woman is standing in a backyard with a lot of Schnauzer on a table and around her.,woman\nanetv_XKu57UKSqPc,18253,She starts to cut the hair of a dog that is sitting on a table. She,stands the dog up and continues to cut its hair.,starts drinking a beer in front of the camera.,looks at the camera and we see the address book.,starts brushing her hair with a razor.,holds up the mess of the silicone and puts it in her mouth.,gold0-orig,pos,unl,unl,unl,unl,She starts to cut the hair of a dog that is sitting on a table.,She\nanetv_XKu57UKSqPc,18254,\"She stands the dog up and continues to cut its hair. Next, she\",moves on and start to cut the hair on its ears.,proceeds to blow dry a woman's hair.,digs a shovel in nail polish and sets the items on the table.,finishes the hair and tapes them together.,shaves the shoes clean with the comb and continues and mimes combing it.,gold0-orig,pos,unl,unl,unl,unl,She stands the dog up and continues to cut its hair.,\"Next, she\"\nanetv_XKu57UKSqPc,18252,An introduction comes onto the screen for a video about grooming dogs and she talks about what she will be doing. She,starts to cut the hair of a dog that is sitting on a table.,is belly dancing as someone leaves.,\"is showing and how to clean a tube soaked clothes slack, next, once she helps do the back of the small sneakers and\",shows how to dry the dogs hair and brushing the dogs with the dogs.,is talking about how to make groomed.,gold0-reannot,pos,unl,unl,unl,unl,An introduction comes onto the screen for a video about grooming dogs and she talks about what she will be doing.,She\nanetv_dTZZq23pYFY,12211,Two reporters report on a story about drinking too much coffee on a live news telecast. A dark haired woman reporter,talks on camera before the camera cuts to a blonde haired reporter also talking on camera.,sits nearby talking to the camera while taking a drink off of a cup.,appears wearing red shades covered by microphone examples.,talks in a room while a woman is sitting and talking at the bar.,,gold0-orig,pos,unl,unl,pos,n/a,Two reporters report on a story about drinking too much coffee on a live news telecast.,A dark haired woman reporter\nanetv_dTZZq23pYFY,12212,The camera cuts to video of a coffee cup being filled with coffee while a written template explaining what the story is about appears beneath the cup. The camera then,cuts to a four person news panel of people talking on camera.,begins to look around for her glasses once more.,cuts to a man with various other items needed materials to sit.,shows the white man in and talking about a drink of wine.,,gold0-orig,pos,unl,unl,pos,n/a,The camera cuts to video of a coffee cup being filled with coffee while a written template explaining what the story is about appears beneath the cup.,The camera then\nanetv_LkA7hS3FBkQ,5622,A man uses an electric drill to wind up the floor jack and lift the car tire off the ground. The man,uses the electric drill again to mind down the floor jack and lower the car.,stops adjusting and demonstrates how to clean the front gate with a large shovel.,\"points the ornate receiver back, then climbs to the car.\",falls to the ground and rise to his feet.,,gold0-orig,pos,unl,unl,pos,n/a,A man uses an electric drill to wind up the floor jack and lift the car tire off the ground.,The man\nanetv_LkA7hS3FBkQ,5621,A rests underneath a car in place but not lifting it off the ground. A man,uses an electric drill to wind up the floor jack and lift the car tire off the ground.,lifts his head in a black pan.,stands inside a skiing steam faucet.,prepares to adjust the piece of the bicycle on top the lock with three pieces attached to his plows and the tire.,in a gray shirt is standing by a table and shaving his leg.,gold0-reannot,pos,unl,unl,unl,unl,A rests underneath a car in place but not lifting it off the ground.,A man\nanetv_f6NpnKJZJE0,6873,A woman is working out an elliptical machine. A man,is working out on an elliptical machine.,is wearing a utility belt in the tube room.,heaves a machine onto a machine that is on the top of a pole.,\"has gloves, a makeup case, then is shown using the driver's license with a man.\",approaches with a bottle of mouth wash.,gold0-reannot,pos,unl,unl,unl,pos,A woman is working out an elliptical machine.,A man\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15894,\"As the pretty girl grins, someone sneaks a look at her. Someone\",wears a khaki safari - style vest over his suit.,\"propped on her knee, she chats with a cat, and the troubled man in trench coat approaches her with him.\",smiles at them.,\"smiles at her, then gives someone a close look.\",slaps someone's face.,gold1-orig,pos,unl,unl,unl,unl,\"As the pretty girl grins, someone sneaks a look at her.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15913,\"At Buster's enclosure, someone makes notes. Someone\",turns off his walkie - talkie.,\"meets with someone, enjoying someone, and gives him a friendly nod.\",flips the binder off.,runs a hand on someone's head.,meets someone's earnest stare.,gold0-orig,pos,unl,unl,pos,pos,\"At Buster's enclosure, someone makes notes.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15941,Someone spits out his scotch bottle's cork and holds up a glass. He,\"fills someone's and someone's whisky glasses, then steps away.\",studies the dealer's phone for a moment.,\"cocks his head, then drops it.\",takes out a vodka bottle.,,gold0-orig,pos,unl,pos,pos,n/a,Someone spits out his scotch bottle's cork and holds up a glass.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15915,\"The lion gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside. Meanwhile, someone\",leads someone and his kids through a grove.,\"stands on the rug, staring lovingly at someone.\",heads in towards the cheerleaders king at his associates.,laboriously climbs on to his bunk with someone.,is outside with the scary pictures of someone.,gold1-orig,pos,unl,unl,unl,unl,\"The lion gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside.\",\"Meanwhile, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15904,\"He bounces lightly, then tries another spot. Now, he\",peers closely at a surface and sets a miniature level on it.,clutches a small straw with a red substance bear on it in a backseat.,plays a game of polo.,lays the merely bear dreaming on his hands.,\"recovers young girls, tosses a small, upward egg at the other end of the board.\",gold0-orig,pos,unl,unl,unl,unl,\"He bounces lightly, then tries another spot.\",\"Now, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15917,Someone dashes off to the far side of the enclosure. Someone,takes off his jacket.,peers over to someone's backpack.,leaps in through the closed door.,topples over her face and winces.,,gold1-orig,pos,unl,unl,unl,n/a,Someone dashes off to the far side of the enclosure.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15930,\"Someone, his kids, and the zoo staff stand before him as he considers. A smirk\",plays on ferris' lips as he regards the staff.,drops onto someone's face as he marches down the wharf.,falls down someone's face.,illuminates his face and his face unable to wiggle away.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, his kids, and the zoo staff stand before him as he considers.\",A smirk\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15927,\"He takes out his electric measuring tape. With a scowl at someone and someone, he\",extends it over the moat.,smooths it up with a hostile expression.,lifts the martini in one.,puts an arm around someone's arm and rests them on their knee.,holds someone's desperate gaze.,gold0-orig,pos,unl,unl,unl,unl,He takes out his electric measuring tape.,\"With a scowl at someone and someone, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15892,\"Ferris' truck pulls up nearby. Beaming, someone\",pats someone's back.,prods his mentor with his right hand.,flips open his phone and looks around the room.,digs into his wad of pockets and sits down.,embraces a cop.,gold1-orig,pos,unl,unl,unl,unl,Ferris' truck pulls up nearby.,\"Beaming, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15949,\"The pretty teen puts down her work, kneels at the window, and lifts the sash. Someone\",\"solemnly shakes her head, then yields a smile.\",strides slightly to someone's jacket and flicks his fingers around it.,\"hesitates for a moment, then, remains returning to stare at his doorway.\",sits on the dock carving some of the sacks.,,gold1-orig,unl,unl,unl,unl,n/a,\"The pretty teen puts down her work, kneels at the window, and lifts the sash.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15910,\"Someone turns the key back, and tries closing the gate, but the extended deadbolt prevents it from latching shut. Someone\",\"turns the key persistently, but finds the deadbolt stuck.\",unfolds the drawer as he holds the gift card.,stares at someone through his eyes.,opens a newspaper and reads a journal.,walks down the corridor flooded in airy jeans.,gold0-orig,pos,unl,unl,unl,unl,\"Someone turns the key back, and tries closing the gate, but the extended deadbolt prevents it from latching shut.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15900,\"Scrutinizing it, he turns it in the light, then gives it a sniff. He\",\"eyes his host disapprovingly, flicks the straw away, and moves on.\",rips the stack of groceries out of her way and he grabs from her home.,lifts someone's to her feet.,crouches down.,,gold0-orig,pos,unl,unl,unl,n/a,\"Scrutinizing it, he turns it in the light, then gives it a sniff.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15909,\"Opening the gate again, she turns the key extending a deadbolt. Someone turns the key back, and tries closing the gate, but the extended deadbolt\",prevents it from latching shut.,takes a few steps away.,seal all the masked pieces.,go there a third time.,is too big for someone.,gold0-orig,pos,unl,unl,unl,pos,\"Opening the gate again, she turns the key extending a deadbolt.\",\"Someone turns the key back, and tries closing the gate, but the extended deadbolt\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15920,\"In the lion enclosure, someone shakily removes the gate's knob - shaped handle. Safely outside it, someone\",jumps up and down.,turns on a canister.,\"clutches the hammer boy on their right arm, sliding stunned back into the back seat.\",watches a colleague leave.,crawls onto a step.,gold1-orig,pos,unl,unl,pos,pos,\"In the lion enclosure, someone shakily removes the gate's knob - shaped handle.\",\"Safely outside it, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15946,\"Now wearing a hooded raincoat, someone walks on the dirt road. Passing the restaurant, he\",doubles back and reads a new illuminated sign in the window.,sees a framed mirror in the door.,brings out a large golf tray.,grins - - embarrassed.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now wearing a hooded raincoat, someone walks on the dirt road.\",\"Passing the restaurant, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15895,\"His long hair in a ponytail, someone shakes his hand. They\",grip each other's hands.,\"wave his fingers, gliding to the surface of an oncoming body.\",faces him as he pouts the ranks of someone's other students.,\"disguise, someone paces, his wrists tied together.\",\", someone spots someone hand on someone's neck.\",gold0-orig,pos,unl,unl,unl,unl,\"His long hair in a ponytail, someone shakes his hand.\",They\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15945,\"At the ground's entrance, an archway reading Rosemoor Wildlife Park stands in the heavy downpour. Now wearing a hooded raincoat, someone\",walks on the dirt road.,watches his father across the bedroom.,stands at a gallery overlooking the vast documenting flooded hallway.,walks away from on seated comrade.,,gold0-orig,pos,unl,unl,pos,n/a,\"At the ground's entrance, an archway reading Rosemoor Wildlife Park stands in the heavy downpour.\",\"Now wearing a hooded raincoat, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15929,\"Someone holds a pen between two checkboxes labeled, Denied and Approved. Someone, his kids, and the zoo staff\",stand before him as he considers.,watch him from the woods into new mexico.,listen for his turn.,go for their cards.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone holds a pen between two checkboxes labeled, Denied and Approved.\",\"Someone, his kids, and the zoo staff\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15943,Someone turns and someone looks up. The storm quickly,\"picks up, turning the dirt into mud.\",follows her and its fissure blank.,slides across the rubble.,hurls him back and hangs off the ladder.,shifts from his land.,gold0-orig,pos,unl,unl,pos,pos,Someone turns and someone looks up.,The storm quickly\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15934,\"Someone looks down at the report, then holds it up to the others. Someone\",shakes someone's hand.,tries to copy herself.,\"it, minas delta, with his century bands and flying gloves, lies beside him with books, clutching their papers.\",leans close to her.,watches with a recoiling smirk.,gold1-orig,pos,unl,unl,unl,pos,\"Someone looks down at the report, then holds it up to the others.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15937,\"Among them, someone embraces someone and someone. Someone\",scoops up someone and hugs someone.,is brought back to the trunk beside him.,waits for someone someone and the clerk at the dance wall.,\"looks at her, utterly miserable.\",goes to the bedroom of someone's apartment.,gold1-orig,pos,unl,pos,pos,pos,\"Among them, someone embraces someone and someone.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15919,\"He takes out his tools. In the lion enclosure, someone\",shakily removes the gate's knob - shaped handle.,\"uses a pair of twin backflips, knocking it down on his knees.\",wears a small fang in his hands.,opens the front door and slowly opens the door to reveal a collection of chinese writing.,stretches wide someone's shield.,gold1-orig,unl,unl,unl,unl,unl,He takes out his tools.,\"In the lion enclosure, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15907,\"Later, he taps on the enclosure's glass. Now, someone\",arrives at lion's enclosure and opens the gate.,brings him his drive.,finds the wearily furnished inside.,stands up gravely as they enter enter a lift.,'s mother's host surround her family to their sisters.,gold0-orig,pos,unl,unl,unl,unl,\"Later, he taps on the enclosure's glass.\",\"Now, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15911,\"Someone turns the key persistently, but finds the deadbolt stuck. Lying on a rock, lion\",stands and faces her.,\"peers at the huge claw, listening.\",gazes at him sadly.,chases the dead man.,stands with his eyes held shut.,gold0-orig,pos,unl,unl,unl,unl,\"Someone turns the key persistently, but finds the deadbolt stuck.\",\"Lying on a rock, lion\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15948,\"Someone smiles wistfully at the words, nods, and dashes off. Now a rain - drenched window\",shows someone working leather in her room.,shows a red car set by suitcases.,reads: an article with pools of flowers in it.,pours down a medium 12 - lane highway and a car approaches.,\"is heard outside, as he lets go of the telephone.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone smiles wistfully at the words, nods, and dashes off.\",Now a rain - drenched window\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15916,\"Meanwhile, someone leads someone and his kids through a grove. Someone\",dashes off to the far side of the enclosure.,follows a trail of torn hair and two piles of leaves.,run into scene of his - family hanging and now his children blow with bubbles.,spears around another gate with his eyes fixed onto the horses.,puts his hands to the collar of his leather vest.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone leads someone and his kids through a grove.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15928,\"With a scowl at someone and someone, he extends it over the moat. Now, a clipboard\",\"bears a document headed, final inspection report.\",is covered in an expensive sweatshirt.,stops a gate down a bustling roadway.,shows black boats jutting up over the stone landing.,reaches over a gold member of her honor.,gold0-orig,pos,unl,unl,unl,unl,\"With a scowl at someone and someone, he extends it over the moat.\",\"Now, a clipboard\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15944,\"The storm quickly picks up, turning the dirt into mud. At the ground's entrance, an archway reading Rosemoor Wildlife Park\",stands in the heavy downpour.,appears in the air beneath the pulling band.,appear in the enormous sketching lanterns.,appear on the small hangar.,,gold0-orig,pos,unl,unl,unl,n/a,\"The storm quickly picks up, turning the dirt into mud.\",\"At the ground's entrance, an archway reading Rosemoor Wildlife Park\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15899,\"Later, as someone and someone look on, someone picks up a single piece of straw. Scrutinizing it, he\",\"turns it in the light, then gives it a sniff.\",taps her finger over someone's mouth.,downs his glasses at the rest of the group.,looks outside his cabin mirror.,glances at his reflection.,gold1-orig,pos,unl,unl,pos,pos,\"Later, as someone and someone look on, someone picks up a single piece of straw.\",\"Scrutinizing it, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15921,\"Safely outside it, someone jumps up and down. Someone\",peeks over his shoulder.,runs onto a narrow cover.,rips off his skirt.,bashes him on another train door then swings it open.,slams someone's right hand against the chauffeur's car.,gold1-orig,pos,unl,unl,unl,pos,\"Safely outside it, someone jumps up and down.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15931,A smirk plays on Ferris' lips as he regards the staff. He,shakes his head and aims his pen.,\"drinks his drink to someone, unseen.\",\"kicks a man uniform through the spear, then trips and leap onto the stage.\",looks round in front of a mirror.,,gold0-orig,pos,unl,unl,pos,n/a,A smirk plays on Ferris' lips as he regards the staff.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15908,\"Glancing around, she pulls the gate shut and hurriedly takes a key from a ring on her belt. Opening the gate again, she\",turns the key extending a deadbolt.,pops the rider back into a trunk.,shoots her shoulder several times.,\"holds out focus, as if loading a shell.\",heads toward an elevator.,gold0-orig,pos,unl,unl,unl,pos,\"Glancing around, she pulls the gate shut and hurriedly takes a key from a ring on her belt.\",\"Opening the gate again, she\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15935,\"He offers a terse professional nod to the inspector, who reciprocates. Someone\",\"heads off, then stops to look back at the jubilant group.\",answers his cell phone for the pay phone.,flashes him a warm smile.,watches with a grin.,,gold1-orig,pos,unl,pos,pos,n/a,\"He offers a terse professional nod to the inspector, who reciprocates.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15938,Someone scoops up someone and hugs someone. Someone,shakes his head and leaves.,pulls her toward the house and holds the baby's money back.,puts a pan on the urn and the lid drops.,\"turns on her horse, grabs her bag, heads over to someone.\",does a sniffling and crazy version.,gold0-orig,pos,unl,unl,unl,unl,Someone scoops up someone and hugs someone.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15939,\"Someone shakes his head and leaves. Now, at the Jaguar Restaurant, someone\",joins his brother at the bar.,\"hurries down a spiral corridor where a blue man is sitting over the railing, where the bug stands by him.\",\"sits in her cubicle, his face drenched in sweat.\",joins someone in his front seat.,,gold0-orig,pos,unl,unl,pos,n/a,Someone shakes his head and leaves.,\"Now, at the Jaguar Restaurant, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15926,\"Someone peers into the enclosure, then turns his suspicious gaze on the others. He\",takes out his electric measuring tape.,\"in a clear peaceful, middle - length room, people desperately search their spots, watching a documentary in chinese photos and fencing.\",picks up a glass of cabs and follows someone down a sidewalk.,puts his clothes down.,places his other hand on his shoulder.,gold1-orig,pos,unl,unl,unl,unl,\"Someone peers into the enclosure, then turns his suspicious gaze on the others.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15902,\"Now, someone extends his electric measuring tape along a railing. Later, he\",stands on a building's corrugated metal roof.,\"looks at the pair of coordinates: a man, who is busy with a rifle.\",crosses someone's side in a framed street.,uses the edge to trim the hedges.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, someone extends his electric measuring tape along a railing.\",\"Later, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15905,\"Later, as someone pushes a measuring wheel over the footpath, a camel walks beside him. Now, he\",stands at an ankle - deep pool as otters swim around him.,emerges from an unfinished camp in an oxygen tank and musters a funnel.,\"rides up a city street, taking off his hood and chugs some shots with food.\",rides down a carpeted street lined with umbrellas.,,gold1-orig,pos,unl,unl,unl,n/a,\"Later, as someone pushes a measuring wheel over the footpath, a camel walks beside him.\",\"Now, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15914,\"At the malfunctioning gate, someone struggles with the key and the lock. The lion\",\"gets down off his rock and takes a few steps towards someone, holding the gate shut from the outside.\",\"depicting an american with a black, dusty fur hat, wearing the white fur coat and hat.\",gives a disgruntled stares.,'s mouth hangs open and he blinks a huge tear and the woman faints.,,gold0-orig,pos,unl,pos,pos,n/a,\"At the malfunctioning gate, someone struggles with the key and the lock.\",The lion\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15936,\"Someone heads off, then stops to look back at the jubilant group. Among them, someone\",embraces someone and someone.,goes to the waiter's table and puts it in his coat pocket.,finds someone waiting for them in a spiral notebook.,watches a computer screen photo of him.,faces someone with narrowed eyes.,gold0-orig,pos,unl,unl,unl,pos,\"Someone heads off, then stops to look back at the jubilant group.\",\"Among them, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15918,\"As he takes a step toward someone, someone enters the enclosure behind him. He\",takes out his tools.,\"returns his attention to the sleeping someone, who stands nearby.\",opens the door and walks inside.,sets out more matches on the table's side.,\"speaks in spanish, wearing a blue apron.\",gold0-reannot,pos,unl,unl,pos,pos,\"As he takes a step toward someone, someone enters the enclosure behind him.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15906,\"Now, he stands at an ankle - deep pool as otters swim around him. Later, he\",taps on the enclosure's glass.,watches the bathroom door open.,steps on the lounge bench.,retrieves the change from his wrist and slides it to someone's side.,sits alone at a booth holding a drink in her hand.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, he stands at an ankle - deep pool as otters swim around him.\",\"Later, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15933,\"As someone holds out the report, someone hangs her head. Someone\",\"looks down at the report, then holds it up to the others.\",looks to her son.,scowls at someone.,\"stands next to someone, who adds a newspaper.\",,gold0-reannot,pos,pos,pos,pos,n/a,\"As someone holds out the report, someone hangs her head.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15893,\"Beaming, someone pats someone's back. As the pretty girl grins, someone\",sneaks a look at her.,grins and regards him with a solemn envelope.,points and bows his head.,gives him a sultry smile.,stares apprehensively at someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Beaming, someone pats someone's back.\",\"As the pretty girl grins, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15896,They grip each other's hands. Someone,smiles at someone and nods.,is spinning wildly in the new arrivals.,hands someone a goblet.,rests a bloody hand on his arm and crouches at arm's side.,spies on the open doorway.,gold0-reannot,pos,unl,unl,unl,unl,They grip each other's hands.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15925,\"Someone finishes the lock, slips out, and bolts the gate. Someone\",\"primps her hair, then wheels around to meet someone with a big smile.\",stands with someone nearby while heading toward the building.,\"starts turning the key on the door, tossing it down, and smiling.\",\"chase the young man back, breaking down the door.\",\"disappears into the garage, leaving the bald man charred in his jacket.\",gold1-reannot,pos,unl,pos,pos,pos,\"Someone finishes the lock, slips out, and bolts the gate.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15940,\"Now, at the Jaguar Restaurant, someone joins his brother at the bar. Someone\",spits out his scotch bottle's cork and holds up a glass.,hands over the item in alternate editor to display him curtains before everyone moves through scenes of men and some guests.,steps close to someone and she unbuckles.,'s mom gives up.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Now, at the Jaguar Restaurant, someone joins his brother at the bar.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15922,Someone peeks over his shoulder. He,slams the gate on his fingers.,dashes to the lower door gawking out.,gets a modest drunk.,overhead someone lets them out and sit down on the bed.,takes out the terrifying silver axes.,gold1-reannot,pos,unl,unl,unl,unl,Someone peeks over his shoulder.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15912,\"Lying on a rock, lion stands and faces her. She\",takes out her walkie.,scowls and stares at the sky.,waves at the crowd.,looks at the chair.,looks up at us with words sparkling smirk.,gold1-reannot,pos,unl,unl,unl,unl,\"Lying on a rock, lion stands and faces her.\",She\nlsmdc3087_WE_BOUGHT_A_ZOO-41661,15903,\"Later, he stands on a building's corrugated metal roof. He\",\"bounces lightly, then tries another spot.\",puts red jacket on someone a hanger.,grabs her coat and exits.,holds it at gunpoint.,rushes to a window along a roadway.,gold0-reannot,pos,unl,unl,unl,pos,\"Later, he stands on a building's corrugated metal roof.\",He\nanetv_nXVNITiaaTQ,18921,The rider accelerates out of a turn on his motorcycle. The rider,goes over a jump on his motorcycle.,tumbles from the rooftop above the city.,plows through a track in front.,swerves to pick after the ball.,,gold0-orig,pos,unl,unl,pos,n/a,The rider accelerates out of a turn on his motorcycle.,The rider\nanetv_nXVNITiaaTQ,18920,A rider goes around a turn and plants his foot in the dirt to stabilize. The rider,accelerates out of a turn on his motorcycle.,turns the light from several angles into his drive.,gets off his horse and walks away.,tilts a paw and studies his ears and overlooks his body.,walks up to the hill and rides ahead down the track.,gold0-orig,pos,unl,unl,unl,pos,A rider goes around a turn and plants his foot in the dirt to stabilize.,The rider\nanetv_nXVNITiaaTQ,18919,A man stands in front of a business logo and discusses. A rider,goes around a turn and plants his foot in the dirt to stabilize.,stands in the middle of the field.,talks to the camera while standing on the street holding a little skateboard.,watches the screen with some angry on.,skiing down a slope.,gold0-orig,pos,unl,unl,unl,unl,A man stands in front of a business logo and discusses.,A rider\nanetv_--1DO2V4K74,17590,A man is then shown climbing a rock wall. He,pulls himself up with his hands.,does a series of stunts on stilts.,does a side down and begins climbing up a wooden and climbing area.,uses a ruler to adjust several boxes on the floor.,crawls around and looking around.,gold0-orig,pos,unl,unl,unl,pos,A man is then shown climbing a rock wall.,He\nanetv_--1DO2V4K74,17589,A cat is shown climbing a wall. A man,is then shown climbing a rock wall.,is doing stomach tricks happily.,grabs the ax and begins walking upward.,is talking to the camera and lighting it.,,gold1-orig,pos,unl,unl,unl,n/a,A cat is shown climbing a wall.,A man\nanetv_--1DO2V4K74,2934,\"Several title screens appear and shows the word Crackbabies along with fiver point one pounds. When the video does eventually start, a man\",is outside of a large mountain climbing the wall.,is shown having a good time and rubs it out.,stands up and takes a separate cube.,gives interviews with a warm ups between basketball shots.,is shown with a throw machine showing alternate angles.,gold1-orig,unl,unl,unl,unl,unl,Several title screens appear and shows the word Crackbabies along with fiver point one pounds.,\"When the video does eventually start, a man\"\nanetv_--1DO2V4K74,2935,\"When the video does eventually start, a man is outside of a large mountain climbing the wall. As he progresses up the rock, there are several hooks along the way and he\",takes the clips from around his harness and clips them to the next hook on the rocks.,is running going across a large ramp being yellow.,continues to take two cables pole and slides safely out of the ceiling.,ducks to bottom 180.,is able to trick up a jump several times.,gold0-orig,pos,unl,unl,unl,pos,\"When the video does eventually start, a man is outside of a large mountain climbing the wall.\",\"As he progresses up the rock, there are several hooks along the way and he\"\nanetv_dWBnXy2nauU,8922,A man starts throwing a shot - put several different times as names scroll at the bottom. A group,can be seen behind watch him.,is at the top of the lift then falls on a ramp while people and weight lift go on them as he goes sailing on,is in the same room in reception with a short man with a her arm and a hat and shorts and black top hats.,of people run around a building.,is seen chasing around a ball performing another competition and using one arm and time.,gold1-orig,pos,unl,unl,unl,unl,A man starts throwing a shot - put several different times as names scroll at the bottom.,A group\nanetv_dWBnXy2nauU,8921,The tile screen shows up with some names. A man,starts throwing a shot - put several different times as names scroll at the bottom.,hits the ball with someone on the wall when it's done.,continues dribbling the photo.,walks into a bathroom and begins demonstrating how to shave your legs.,,gold1-orig,pos,unl,unl,unl,n/a,The tile screen shows up with some names.,A man\nanetv_k1aFJ-F8xTs,13054,He partially shaves his face and shows off to the camera. He,finishes shaving his face while making funny faces.,solves the puzzle and grabs another stocking from his hold.,\"continues to spray with soap and mascara, and wipes away from him.\",raises his hands in the air.,,gold0-orig,pos,unl,unl,unl,n/a,He partially shaves his face and shows off to the camera.,He\nanetv_k1aFJ-F8xTs,15360,In fast motion a man is shaving his full beard with an electric hair cutter and leaves a very small part in the middle under his bottom lip. The man then moves onto shaving his mustache but,leaves most of it and begins to curl the edges upwards.,it is flail on his legs.,is all completed shortly afterwards.,\"ends with a razor, very close and braided hair from all angles.\",,gold0-reannot,pos,unl,unl,unl,n/a,In fast motion a man is shaving his full beard with an electric hair cutter and leaves a very small part in the middle under his bottom lip.,The man then moves onto shaving his mustache but\nanetv_k1aFJ-F8xTs,13053,A man is shown looking at the camera while holding a razor. He,partially shaves his face and shows off to the camera.,puts down the razor on the head while looking away.,is shown working out as well as a product and rubbing it back up.,brushes it across his face while still looking down at the dog.,removes a razor and puts the shaver on his lap.,gold0-reannot,pos,unl,unl,pos,pos,A man is shown looking at the camera while holding a razor.,He\nlsmdc3001_21_JUMP_STREET-422,11781,\"As the Beetle rides up alongside a tanker truck, one of the bikers gains on them. The vehicles\",reach the center of the bridge over a river.,spin and turn to another.,pull into semi - groups of the steed in turn flying out of the trucks.,pull onto a rings as the soldiers enter the building.,,gold1-orig,pos,unl,unl,unl,n/a,\"As the Beetle rides up alongside a tanker truck, one of the bikers gains on them.\",The vehicles\nlsmdc3001_21_JUMP_STREET-422,11780,He pulls the driver out. They,drive off in her pink volkswagen beetle toward a bridge.,pulls himself out to join him and starts a hill of people having really great advantage of seeing that they were in there.,steadies the skiptracer by the shed.,toilet cap lies on its hood.,\"turn off the unit and it jerks up, only at the end of the traffic!\",gold0-orig,pos,unl,unl,unl,unl,He pulls the driver out.,They\nlsmdc3001_21_JUMP_STREET-422,11793,The gang leader takes aim. Someone,grabs someone's pistol and pulls the trigger himself.,\"watches someone fall to the ground as chase swaggers off him, gun in hand.\",dodges the aircraft and crosses to the remaining sedans.,studies the obediently tattooed warrior.,fires the bullet at someone and who desperately left for the fire.,gold0-orig,pos,unl,unl,unl,unl,The gang leader takes aim.,Someone\nlsmdc3001_21_JUMP_STREET-422,11790,Someone finds a four - shot pistol. He,glances at his partner.,\"opens a large, long, wooden plank awning.\",\"flings it onto someone's shoulder, and tosses him onto the land rovers.\",rides a train as it tips over.,\"shoots a look in her direction, then appears.\",gold0-orig,pos,unl,unl,unl,unl,Someone finds a four - shot pistol.,He\nlsmdc3001_21_JUMP_STREET-422,11786,The tanker slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle. We,dramatically zoom back from the tanker ad glide above the truss bridge.,lands on someone's boat.,\"stands in the middle of the street, and panic in the air.\",play with the auto wriggling.,\"approach with a heel as a soldier, leaving someone in the room.\",gold1-orig,pos,unl,unl,unl,unl,The tanker slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle.,We\nlsmdc3001_21_JUMP_STREET-422,11779,Someone leaps over the top of a stopped car. He,pulls the driver out.,reverses from a military car as it rolls along the top.,kicks it away from it.,is been busy but used to be knocked over only three cars.,falls down the street.,gold0-orig,pos,unl,unl,unl,pos,Someone leaps over the top of a stopped car.,He\nlsmdc3001_21_JUMP_STREET-422,11784,He overtakes the rig and falls off his bike. The truck,runs over his legs.,backs up in a line.,roars over as he wrenches control of another car.,\"crashes through the chain, crashes by an suv.\",,gold0-orig,pos,unl,unl,unl,n/a,He overtakes the rig and falls off his bike.,The truck\nlsmdc3001_21_JUMP_STREET-422,11794,\"As the gang leader swerves, a truck hauling chickens blocks his path. He wipes out and his bike\",slides underneath the vehicle.,reach the pier - lined road.,follows them as he shoots.,blows on the street.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the gang leader swerves, a truck hauling chickens blocks his path.\",He wipes out and his bike\nlsmdc3001_21_JUMP_STREET-422,11787,\"We dramatically zoom back from the tanker ad glide above the truss bridge. Yielding a silver revolver, the gang leader\",pulls up alongside the beetle and shoots out the driver side window.,faces a spot - men seated at the base of a police car.,raises the armored gloves to his chin and slides over his body with his gun.,brings a luxurious clipboard to someone and holds him with it.,takes a few steps forward.,gold0-orig,pos,unl,unl,unl,pos,We dramatically zoom back from the tanker ad glide above the truss bridge.,\"Yielding a silver revolver, the gang leader\"\nlsmdc3001_21_JUMP_STREET-422,11788,\"Yielding a silver revolver, the gang leader pulls up alongside the Beetle and shoots out the driver side window. Someone\",swerves into another traffic lane.,sits across from someone and wears a uniform around his son.,pulls a small sword from his pocket and aims it behind his back.,gaze at each other with shocked eyes.,glances up at the highway passing away.,gold1-orig,pos,unl,pos,pos,pos,\"Yielding a silver revolver, the gang leader pulls up alongside the Beetle and shoots out the driver side window.\",Someone\nlsmdc3001_21_JUMP_STREET-422,11782,Someone tosses out a sunshade which wraps around the biker's face. Firing wildly he,shoots holes through the tanker.,\"tries and launches someone pulls the lever, heart flying.\",kicks someone's head forward.,aims his gun at the cop.,\"glances at someone, oblivious, which runs toward him.\",gold0-orig,pos,unl,unl,unl,unl,Someone tosses out a sunshade which wraps around the biker's face.,Firing wildly he\nlsmdc3001_21_JUMP_STREET-422,11791,He glances at his partner. The gang leader,cuts off a sedan and rides up alongside them again.,takes a gun from his pocket and removed his helmet.,lifts a burgundy ben grenade.,sweeps a puck toward the models curl.,addresses a truck grazing along a residential street.,gold1-orig,pos,unl,unl,unl,unl,He glances at his partner.,The gang leader\nlsmdc3001_21_JUMP_STREET-422,11792,The gang leader cuts off a sedan and rides up alongside them again. Someone,aims out the driver side window.,raises his arms.,checks his clock which reads four hours.,rides into an suv on a bluff wielding a barbecue.,\", someone goes down into a river on the snowy slope below.\",gold0-orig,pos,unl,unl,unl,unl,The gang leader cuts off a sedan and rides up alongside them again.,Someone\nlsmdc3001_21_JUMP_STREET-422,11785,The truck runs over his legs. The tanker,slows to a stop gushing oil and fuel as sparks fly from the tumbling motorcycle.,is hurled towards the ground.,\"flies far below the backboard, then swerves between the bars.\",\"lies on the ground, carrying his drink.\",,gold0-orig,pos,unl,unl,unl,n/a,The truck runs over his legs.,The tanker\nlsmdc3001_21_JUMP_STREET-422,11783,Firing wildly he shoots holes through the tanker. He,overtakes the rig and falls off his bike.,squeezes relentlessly on the peanut jelly as well.,scrambles behind himself and comes in other directions.,sweeps a explodes and knocks someone off.,\"trots across the street, walking on their way.\",gold1-reannot,pos,unl,unl,unl,pos,Firing wildly he shoots holes through the tanker.,He\nlsmdc0001_American_Beauty-45991,10977,He puts his spatula down. The Mercedes,pulls around to the drive - thru window.,fly open and drinks.,walks off followed driveway again.,slots them into a separate green.,,gold0-orig,pos,unl,unl,pos,n/a,He puts his spatula down.,The Mercedes\nlsmdc0001_American_Beauty-45991,10970,\"He stands and looks around, his eyes finally landing on: The digicam and a stack of cassettes on a shelf. Someone\",\"sits at the kitchen table, staring off into space.\",looks at someone's papers.,sprints back from the wreck and drops onto his back.,feels around it and falls in the seat once more.,,gold0-orig,pos,unl,unl,pos,n/a,\"He stands and looks around, his eyes finally landing on: The digicam and a stack of cassettes on a shelf.\",Someone\nlsmdc0001_American_Beauty-45991,10968,\"He starts going through someone's bureau. He opens the drawer in which we know someone keeps his marijuana, but he\",does n't discover its false bottom.,cuts the mangled parts.,hides it under his hat to watch.,stops one down and rubs a piece of the gift out.,is not so much.,gold0-orig,pos,unl,unl,unl,pos,He starts going through someone's bureau.,\"He opens the drawer in which we know someone keeps his marijuana, but he\"\nlsmdc0001_American_Beauty-45991,10980,\"Someone leans out of the drive - thru window, grinning at her, holding bags filled with fast food. The Counter Girl\",\"stands next to him, staring blankly.\",\"with auditorium, filmed, singers the club.\",attempts to block her ransacked.,is eating solid and stinky.,\"takes out the glass, followed by someone's colorful monthly video.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone leans out of the drive - thru window, grinning at her, holding bags filled with fast food.\",The Counter Girl\nlsmdc0001_American_Beauty-45991,10976,Someone looks up suddenly when he hears. He,puts his spatula down.,talks using the phone and walks away for a few seconds.,bumps into a revolver and drops surreptitiously into his weapon.,bundles the flaxen powder beneath the car.,,gold1-orig,pos,unl,unl,unl,n/a,Someone looks up suddenly when he hears.,He\nlsmdc0001_American_Beauty-45991,10978,Someone drives; someone sits beside her. They,are too involved with each other to notice someone watching them from the drive - thru window.,sit at a table with a beer from a table.,lift her and they are alarmed.,rise someone's feet up.,sees someone's van on the road opposite but does n't get enough.,gold0-orig,pos,unl,unl,unl,unl,Someone drives; someone sits beside her.,They\nlsmdc0001_American_Beauty-45991,10969,\"He opens the drawer in which we know someone keeps his marijuana, but he does n't discover its false bottom. He stands and looks around, his eyes\",finally landing on: the digicam and a stack of cassettes on a shelf.,\"deep and continuing, its bleed - length sideburns pressing on him.\",\"moving to the side, the houses rapidly stained.\",focused as the sight of someone making his way down a trail.,,gold1-orig,pos,unl,unl,unl,n/a,\"He opens the drawer in which we know someone keeps his marijuana, but he does n't discover its false bottom.\",\"He stands and looks around, his eyes\"\nlsmdc0001_American_Beauty-45991,10973,\"Someone sinks slowly onto someone's bed, mesmerized. Then, naked except for his black socks, he\",\"grabs the dumbbells and starts lifting them, watching his reflection in the window as he does.\",zips her panties down with a wounded slug.,rests his knee on the narrow ledge of the corner.,talks to the servant and glances inside.,attempts to comfort them.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sinks slowly onto someone's bed, mesmerized.\",\"Then, naked except for his black socks, he\"\nlsmdc0001_American_Beauty-45991,10979,They are too involved with each other to notice someone watching them from the drive - thru window. Someone,\"leans out of the drive - thru window, grinning at her, holding bags filled with fast food.\",spins and slaps the back.,and the someone wipe after the child's fingerprints.,smashes the man's head.,,gold0-orig,pos,unl,unl,pos,n/a,They are too involved with each other to notice someone watching them from the drive - thru window.,Someone\nlsmdc0001_American_Beauty-45991,10960,\"We are outside someone's room, moving slowly toward the open door, through which we can see someone, standing at his bureau mirror, combing his hair. The scars on his face\",are almost gone now.,lies at the ends of the bed.,is dark and weary.,is clean and shiny.,give tight to each other.,gold0-orig,pos,unl,unl,unl,unl,\"We are outside someone's room, moving slowly toward the open door, through which we can see someone, standing at his bureau mirror, combing his hair.\",The scars on his face\nlsmdc0001_American_Beauty-45991,10975,\"Smiley's uniform, is happily flipping burgers on a grill. Someone\",looks up suddenly when he hears.,stalking back for a spa.,is tucked behind his legs.,practice fencing and someone.,'s supporters are titled allowing the cruise.,gold1-orig,pos,unl,unl,unl,unl,\"Smiley's uniform, is happily flipping burgers on a grill.\",Someone\nlsmdc0001_American_Beauty-45991,10962,\"A reverse angle reveals someone standing outside the door looking in, watching someone with great tenderness. Then someone looks up at him, and someone\",is suddenly self - conscious.,lets him go with instinctively addressed.,has come to his feet on the balustrade.,aims his gaze at the way and stops a few yards from someone.,takes a long drag.,gold0-orig,pos,unl,unl,unl,unl,\"A reverse angle reveals someone standing outside the door looking in, watching someone with great tenderness.\",\"Then someone looks up at him, and someone\"\nlsmdc0001_American_Beauty-45991,10982,Someone almost jumps out of her skin. Someone,struggles to appear nonchalant.,walks revealing a young woman standing in the kitchen sink.,\"kicks the city forward, hitting someone with his fists.\",heads over to meet his entourage.,talks to the producer.,gold1-orig,pos,unl,unl,pos,pos,Someone almost jumps out of her skin.,Someone\nlsmdc0001_American_Beauty-45991,10965,\"Someone leans forward from the passenger seat and glares at us. As someone starts to get in the car, someone\",emerges from the house in his sweatpants.,grabs leggings thug and walks in through the gates.,gets into his car and comes back to school.,heaves a sigh.,picks up a bottle and offers it to someone.,gold1-orig,pos,unl,unl,pos,pos,Someone leans forward from the passenger seat and glares at us.,\"As someone starts to get in the car, someone\"\nlsmdc0001_American_Beauty-45991,10966,\"As someone starts to get in the car, someone emerges from the house in his sweatpants. Someone\",\"watches, at first baffled, then impatient.\",props himself up on his elbow and nudges his fist.,\"gets a dark, white car.\",\"sits, drinking his beer as he steps in.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As someone starts to get in the car, someone emerges from the house in his sweatpants.\",Someone\nlsmdc0001_American_Beauty-45991,10964,\"Someone emerges from the house, followed by someone, who watches his son as he heads toward the Burnham house. Someone\",leans forward from the passenger seat and glares at us.,arrives at a dock at an outdoor entrance.,hauls back his car and makes his way to the bedroom.,turns the wheel away.,snarls at someone then runs out of the bedroom.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone emerges from the house, followed by someone, who watches his son as he heads toward the Burnham house.\",Someone\nlsmdc0001_American_Beauty-45991,10961,The scars on his face are almost gone now. A reverse angle,\"reveals someone standing outside the door looking in, watching someone with great tenderness.\",rises over the beautiful rose colored car.,appears with a flashing red laser at match.,\"and the mercenaries wait a little speed, on their boards.\",changes to a speedboat spinning.,gold0-reannot,pos,unl,unl,unl,unl,The scars on his face are almost gone now.,A reverse angle\nlsmdc0001_American_Beauty-45991,10963,\"Then someone looks up at him, and someone is suddenly self - conscious. Someone\",\"emerges from the house, followed by someone, who watches his son as he heads toward the burnham house.\",stops at the pit of someone's arm.,\"begins to catch two, but someone keeps his hair close as he does so.\",\"leans back, releasing a second punch from both of his hands.\",\"sits with someone and the others, for a little bit of time.\",gold0-reannot,pos,unl,unl,unl,unl,\"Then someone looks up at him, and someone is suddenly self - conscious.\",Someone\nlsmdc0001_American_Beauty-45991,10967,The door swings open silently and someone enters. He,starts going through someone's bureau.,\"goes to the bed, goes downstairs on clothes, and drives back to the kitchen.\",\"starts forward, finding the door open.\",raises the classroom door.,grabs someone's face but manages to shield himself.,gold0-reannot,pos,unl,unl,unl,pos,The door swings open silently and someone enters.,He\nlsmdc0001_American_Beauty-45991,10971,\"Someone sits at the kitchen table, staring off into space. He\",takes the cassette out of the digicam and inserts another.,stuffs his face in the blender.,switches off the lights.,takes off the cake.,sees a sleeping man in a cellphone.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone sits at the kitchen table, staring off into space.\",He\nanetv_A8NAj6NQ5vM,7468,A group of men are playing volleyball in front of a crowd. They lob the ball back and forth and a cameraman,tries to keep up.,knocks over once.,looks up to see a performance with extensions.,appears on the screen.,,gold1-orig,pos,unl,unl,pos,n/a,A group of men are playing volleyball in front of a crowd.,They lob the ball back and forth and a cameraman\nanetv_OhydQlKoSUw,11363,A person is seen getting out of a car and walking around to the trunk to grab a surf board. The person,is then seen wearing a suit and running down a boardwalk followed by him surfing.,holds up a hole and turns around so they are then get out of the water.,continuously works around a dirt bike while turning and cleaning the clothes.,continuously spins around the waves while the camera captures all of them from several angles.,,gold1-orig,pos,unl,unl,pos,n/a,A person is seen getting out of a car and walking around to the trunk to grab a surf board.,The person\nanetv_OhydQlKoSUw,11364,The person is then seen wearing a suit and running down a boardwalk followed by him surfing. The man,glides along the water in slow motion and is then seen speaking to the camera.,stops performing lifts his bar and does stunts and spins.,pulls a large board and land his large pack of water in the distance.,begins to throw and do the same.,,gold0-reannot,pos,unl,unl,unl,n/a,The person is then seen wearing a suit and running down a boardwalk followed by him surfing.,The man\nanetv_2YeImloBCA8,17188,We see people working out on exercise steps in an aerobics class. The leader,puts her hand in the air.,uses a timer to move off.,mounts then walks back to the gym.,finishes his routine and stands and smiles.,crosses the stage and sits on bars.,gold1-orig,pos,unl,unl,unl,unl,We see people working out on exercise steps in an aerobics class.,The leader\nanetv_2YeImloBCA8,17190,The lady in back left gets lost and stops. Rear right,gets lost and throws out her arms.,turn a red bend to the left.,lady mixes her things together and rolls the leaves.,\"move cautiously and sideways, ending her dance and head with other people.\",see her belly in the locker.,gold0-orig,pos,unl,unl,unl,unl,The lady in back left gets lost and stops.,Rear right\nanetv_2YeImloBCA8,17191,Rear right gets lost and throws out her arms. The instructors arm,is in the air again.,raises her body and demonstrates the same way as she encased in the discus.,hugs and grabs in her entire summer suit.,goes and begin doing another routine.,,gold0-orig,pos,unl,unl,unl,n/a,Rear right gets lost and throws out her arms.,The instructors arm\nanetv_2YeImloBCA8,17189,The leader puts her hand in the air. The lady in back left,gets lost and stops.,looks into a lake at station.,flips off then runs as other people try to stop her.,\"falls to the ground, closing with her upper hand three times.\",springs to the floor.,gold1-reannot,pos,unl,unl,unl,pos,The leader puts her hand in the air.,The lady in back left\nanetv_ooWk0EL6I7o,9976,They talk to each other and a broom enters the scene. they,start to move forwards.,are bigger into a fire trucks and draws back.,turn to the smiling group while with a quick glimpse of the ladder.,hold hands as they continue dancing with each other.,reach their side of the room.,gold0-orig,pos,unl,unl,unl,unl,They talk to each other and a broom enters the scene.,they\nanetv_LXHc1X1pKEM,8567,There's a young man sitting on the bath tub along with the woman. He,washes his legs with baby soap and water and begins shaving his legs.,is rolling a puppy out on a small sofa.,is there with a toothbrush.,stirs a steaming metal bucket with water.,,gold1-orig,pos,unl,unl,unl,n/a,There's a young man sitting on the bath tub along with the woman.,He\nanetv_LXHc1X1pKEM,8566,She shows the viewers the type of razor she will be using. There,'s a young man sitting on the bath tub along with the woman.,\", she demonstrates how the process as to get the defense done donuts and then uses all the needle on her teeth to talk.\",rotating the head of a hip weightlifter.,is talking to the camera.,clips are shown of combs and show shown.,gold0-orig,pos,unl,unl,unl,unl,She shows the viewers the type of razor she will be using.,There\nanetv_LXHc1X1pKEM,8568,He washes his legs with baby soap and water and begins shaving his legs. Then the woman,takes the razor and helps her husband shave his legs.,stops scraping a brush bubbles to the camera the little girl looks up to see more the warm animated credits.,stands next to the kitchen counter.,puts a white mousse on her legs.,does a little twirl around and hops off the bench and continues grating the dog.,gold0-orig,pos,unl,unl,unl,unl,He washes his legs with baby soap and water and begins shaving his legs.,Then the woman\nanetv_LXHc1X1pKEM,8565,She stands up and shows the cycling team printed on her tank top. She,shows the viewers the type of razor she will be using.,bend down and she does the top bodybuilder on someone.,slides the cord back into the tire.,dips her foot in the water.,,gold0-reannot,pos,unl,unl,pos,n/a,She stands up and shows the cycling team printed on her tank top.,She\nanetv_LXHc1X1pKEM,8564,A woman with short hair and a white tank top is sitting in her bathroom talking about a cyclist who is going to shave his legs. She,stands up and shows the cycling team printed on her tank top.,are hand on a small table.,put her arms over the woman's neck and give her a push several times.,brings the needle fingernail a thick layer over the body and rubs it down over them.,\"takes fish from his charred bottle once he is ready to grab it, then grabs it and starts it and lifts it.\",gold0-reannot,pos,unl,unl,unl,unl,A woman with short hair and a white tank top is sitting in her bathroom talking about a cyclist who is going to shave his legs.,She\nanetv_a7FNzxXWvgU,19091,The man then gets a container of Genoa Salami from the fridge and piles slices onto the bread slices. He then,puts the bread slices on top of each other and completes the sandwich.,puts slices of tomato lettuce on a small piece of bread and smooths them together.,takes a knife from a plate and takes a mouthful of the pasta.,brings an axe up to plate.,,gold0-orig,pos,unl,unl,unl,n/a,The man then gets a container of Genoa Salami from the fridge and piles slices onto the bread slices.,He then\nanetv_a7FNzxXWvgU,19090,He then uses a knife to scoop out the miracle whip on to the bread slices. The man then,opens a bag of swiss cheese and places a slice on each bread slice.,engages in a game of curling and he starts to cut the bread.,begins to cut out wood pieces with a cut smaller pieces.,takes the piece of ingredient and rubs it in half with the other lemon and shredded it all in into the gift bag.,,gold0-orig,pos,unl,unl,unl,n/a,He then uses a knife to scoop out the miracle whip on to the bread slices.,The man then\nanetv_a7FNzxXWvgU,19089,The man then opens the refrigerator and pulls out a new bottle of Miracle Whip. He then,uses a knife to scoop out the miracle whip on to the bread slices.,takes a cup and stirs his ale in the bowl.,grabs the drink and puts it on a cup.,uses a knife to sharpen the ankle.,,gold0-orig,pos,unl,unl,unl,n/a,The man then opens the refrigerator and pulls out a new bottle of Miracle Whip.,He then\nanetv_a7FNzxXWvgU,19088,The man raises an empty bottle of Miracle Whip and tosses it backhanded. The man then,opens the refrigerator and pulls out a new bottle of miracle whip.,\"pours a liquid into the glass, cleaning it with a lime.\",puts the cast on the counter into a wall and ads a tomato.,lifts the axe and lifts the circle.,rubs the child's face with a toothbrush in his hand.,gold0-reannot,pos,unl,unl,unl,unl,The man raises an empty bottle of Miracle Whip and tosses it backhanded.,The man then\nanetv_BxEnhkx2srY,19401,A boy prepares to do a high jump in a gym. He,takes off running with the high jump stick.,jumps down and moves into a whirlwind of sand.,slides on the ground as he rides away several times.,walks up and twirls a hula hoop with a winner.,raises his racket and balances a few times.,gold0-orig,pos,unl,unl,unl,unl,A boy prepares to do a high jump in a gym.,He\nanetv_BxEnhkx2srY,19402,He takes off running with the high jump stick. he,makes the jump and lands on the safety pads.,goes to catch the front tire.,throws more pins while singing and laughing as he spins in the air.,\"completes the skateboard, then more goes up and hits the far bar pretty quickly.\",,gold0-orig,pos,unl,unl,unl,n/a,He takes off running with the high jump stick.,he\nanetv_OaG9uH7BgjI,17162,\"The cat begins to pull away slightly, out of fear of being hurt. The vet then clips the cat nails carefully, and the cat\",feels much better after all is done.,continues to take care of the cat's nails.,is crouching down in front of it.,stops on the door.,,gold0-orig,pos,unl,unl,unl,n/a,\"The cat begins to pull away slightly, out of fear of being hurt.\",\"The vet then clips the cat nails carefully, and the cat\"\nanetv_OaG9uH7BgjI,16952,A close up of a person holding a cat is shown followed by a vet speaking to the camera and holding up a cat claw. The vet them,demonstrates how to properly cut a cat's claws by using scissors and speaking to the camera with the other woman petting the cat.,shows several shots while rolling out a box and rubbing it on a pair of scissors.,continues cutting some nail clippers while looking around and ends by showing a bag of nail scissors.,adds a mallet to the eye and begins cutting its claws.,rubs the cat cat nails against their nails while speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A close up of a person holding a cat is shown followed by a vet speaking to the camera and holding up a cat claw.,The vet them\nanetv_OaG9uH7BgjI,17160,Two women from the veterinarian clinic are giving a demonstration on how to clip cat nails. One woman,\"holds the cat, while the other starts holding up a paw.\",is to an open cutting floor.,picks up a sandwich.,hands her another cat to a talk.,is cutting the top nails of some intervention in teenage step and cats now.,gold0-orig,pos,unl,unl,unl,unl,Two women from the veterinarian clinic are giving a demonstration on how to clip cat nails.,One woman\nanetv_OaG9uH7BgjI,17161,\"One woman holds the cat, while the other starts holding up a paw. The cat\",\"begins to pull away slightly, out of fear of being hurt.\",\"is dancing on the floor, carving it on the cat.\",brushes the man's nails while a man behind him removes leaves.,\"continues cutting and knocks a cat while he goes, clear it's just an bigger potato.\",,gold0-orig,pos,unl,unl,unl,n/a,\"One woman holds the cat, while the other starts holding up a paw.\",The cat\nlsmdc3079_THINK_LIKE_A_MAN-37000,5003,Leslie keeps her hand up as he fakes repeatedly. He goes up and she,slaps the ball away.,\"runs at him, smiling.\",shoves her head away.,stops her with a sideways kick.,stops as someone comes out.,gold0-orig,pos,unl,unl,unl,unl,Leslie keeps her hand up as he fakes repeatedly.,He goes up and she\nlsmdc3079_THINK_LIKE_A_MAN-37000,5002,\"As he shoots, Ron Artest smacks the ball away. Leslie\",keeps her hand up as he fakes repeatedly.,reaches into his pocket and pulls out a handful of red tic.,checks his watch as he obeys the broken strips across the wooden floor.,\"aims at the team player, which rips off someone's opponent.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As he shoots, Ron Artest smacks the ball away.\",Leslie\nlsmdc3079_THINK_LIKE_A_MAN-37000,5001,\"Someone sets a pick and someone dribbles around him. As he shoots, Ron Artest\",smacks the ball away.,opens his door to someone.,shoots a series of cannons at his winnings.,lands on the winning position.,hops out of the helicopter in front of him.,gold0-orig,pos,unl,unl,unl,unl,Someone sets a pick and someone dribbles around him.,\"As he shoots, Ron Artest\"\nlsmdc3079_THINK_LIKE_A_MAN-37000,5000,Someone gazes up at someone Leslie. Now Leslie,checks the ball to someone who raises an arm in a signal to his team.,splash - the hockey team practice technique.,falls off his broomstick as someone watches the hydra whiz away.,beads long suit is sent into the omelette.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gazes up at someone Leslie.,Now Leslie\nanetv_1hiyhNqakMI,9117,The man uses a lawn mower up and down the yard. He,continues moving around the yard.,spreads flat paper onto the ground.,moves the lawn mower around while the man finishes the cut.,cuts the grass with the white tractor.,continues cutting up and down in the grass.,gold0-orig,pos,unl,pos,pos,pos,The man uses a lawn mower up and down the yard.,He\nanetv_1hiyhNqakMI,17957,The person uses a tool all along the yard while the camera captures their movements. They,pull out another object after a day and continue moving around the yard.,see them going right and rides off one another along the sidewalk.,show different logos in a paper school.,see a large group of machinery.,,gold1-orig,pos,unl,unl,pos,n/a,The person uses a tool all along the yard while the camera captures their movements.,They\nanetv_1hiyhNqakMI,17956,A bucket is seen sitting in a yard followed by a person moving up and down the yard. The person,uses a tool all along the yard while the camera captures their movements.,dumps the child back in the bucket as another person comes out of frame to help the bucket down.,continues vacuuming while the person continue to scrape tools and rakes it along the tree.,moves the mop all around the area as well as brushes it all along.,stands up holding the camera as well as other people riding around him.,gold0-orig,pos,unl,unl,unl,pos,A bucket is seen sitting in a yard followed by a person moving up and down the yard.,The person\nanetv_1hiyhNqakMI,9116,A large yard is seen followed by a man moving in and out of frame. The man,uses a lawn mower up and down the yard.,continues using the machine and pans around the room to put his shoes on.,finishes the hookah and talks to the camera.,continues to swing and move around while the camera captures the movements.,walks to a chair and begins talking to the camera following around.,gold0-reannot,pos,unl,unl,pos,pos,A large yard is seen followed by a man moving in and out of frame.,The man\nlsmdc0022_Reservoir_Dogs-59138,7564,Someone is the Somebody Else. He,is behind the wheel of the getaway car.,goes into the house and puts down the situation.,slips into the coat lounge.,grabs it and peers down at its chimes.,turns back toward the yard.,gold0-orig,pos,unl,unl,unl,pos,Someone is the Somebody Else.,He\nlsmdc0022_Reservoir_Dogs-59138,7561,He lies in the backseat. He,is been shot in the stomach.,starts to climb up a bearded porch ladder.,covers someone from his hands.,\"presses a button on a nearby desk, sucking up his teeth.\",,gold1-orig,pos,unl,unl,unl,n/a,He lies in the backseat.,He\nlsmdc0022_Reservoir_Dogs-59138,7562,He is been shot in the stomach. Blood,covers both him and the backseat.,comes violently across a large screen.,pulls a revolver out of his mouth and dashes to his feet.,bounce up a balls than being caught on the empty one.,picks up the carpet and mixes its contents.,gold0-orig,pos,unl,unl,unl,unl,He is been shot in the stomach.,Blood\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17454,They climb a grassy slope. The faint glow of dawn,appears in the sky.,is drawn along the rocky horizon.,approaches a dark flowerbed.,is visible in the sky.,,gold1-orig,pos,unl,unl,pos,n/a,They climb a grassy slope.,The faint glow of dawn\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17456,\"People, and the twins let go, and land heavily. Someone\",looks up and sees people hiking sedately down to earth.,shakes desperately with the car.,surfaces in supply bag.,ii appears with scattered blood.,,gold1-orig,unl,unl,unl,unl,n/a,\"People, and the twins let go, and land heavily.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17461,\"The spectators take their seats in the stands, many of them wearing colorful national costumes. He\",stops someone with his walking stick.,hugs the penguins beauties.,\"and someone, the zoo, are posed in they movie as they follow.\",\"watches a young girl being flattened, then runs into an offices about some high - askew, children.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The spectators take their seats in the stands, many of them wearing colorful national costumes.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17465,He hovers in front of a waving flag proclaming the name someone. Someone,raises his fist confidently.,is worriedly drawing a framed photo of himself in his office.,stands just as the plane fires massive engines.,watches the coin play on someone's lips.,,gold0-orig,pos,unl,unl,unl,n/a,He hovers in front of a waving flag proclaming the name someone.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17462,Spotlight beams illuminate the packed stands. Someone and the twins,wear green and white scarves.,get out after someone.,arrive and rush to the main dish.,look on as someone glides past ancient steel - paneled hall.,,gold0-orig,pos,unl,unl,unl,n/a,Spotlight beams illuminate the packed stands.,Someone and the twins\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17458,\"The sun rises, as they look down on a gigantic campsite. Jugglers\",\"entertain the crowd, as even more tents are erected.\",move through a river.,jumps at the end of it and slips on the mountainside.,mist streams across the desert.,,gold0-orig,pos,unl,unl,unl,n/a,\"The sun rises, as they look down on a gigantic campsite.\",Jugglers\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17460,\"As evening falls, they join the excited crowds in the magnificent Quidditch stadium. The spectators\",\"take their seats in the stands, many of them wearing colorful national costumes.\",join the school and march back a crowd with gifts.,listen against the ballroom as members of the band are conducting.,\"stare up from the train at which point birds retreating towards the pavements, which has risen falling off people.\",\"mill about, kicking and kicking someone.\",gold0-orig,pos,unl,unl,unl,unl,\"As evening falls, they join the excited crowds in the magnificent Quidditch stadium.\",The spectators\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17455,They all touch the boot which begins to spin like a Catherine wheel. They,\"are pulled with it, spinning faster and faster, into a bright light.\",gaze along the track at a map of skills.,are hard working.,see the cuffs make its tank go down.,take out the elevator.,gold0-orig,pos,unl,unl,unl,unl,They all touch the boot which begins to spin like a Catherine wheel.,They\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17459,\"People on broomsticks, fly dangerously low. Someone\",leads them to a shabby two - man tent.,\"holds someone, who jumps down, seemingly in front of his son.\",shows the biker himself.,\", sitting by concrete, seems to see fallen on the ground.\",,gold1-orig,pos,unl,unl,unl,n/a,\"People on broomsticks, fly dangerously low.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17457,\"They follow the others, along a cliff top, overlooking the sea. The sun\",\"rises, as they look down on a gigantic campsite.\",\"is drenched in the rain, passing its warmly blowing trees and starting to move farther into the scene.\",rises ominous in the darkness.,\"stretches up, casting long lines across the spacious structure, burning parts splashed across the rock walls.\",,gold1-orig,pos,unl,pos,pos,n/a,\"They follow the others, along a cliff top, overlooking the sea.\",The sun\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17464,Someone takes them to the highest level of the stadium. The seven Irish players,zoom out in formation.,continue to pass each other a bit in the row.,rush up behind the crouches.,stretch through the air toward the crane terminal.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone takes them to the highest level of the stadium.,The seven Irish players\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6530,17463,Someone and the twins wear green and white scarves. Someone,takes them to the highest level of the stadium.,handing a teacup to someone.,holds his watch as the two commander appear for the funeral and allows group to begin walking nearby.,clicks the turn starting.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone and the twins wear green and white scarves.,Someone\nlsmdc1015_27_Dresses-79589,16573,\"Carrying the bulky dress in a bag, adult someone, in a formal purple dress, hurries out of the shop onto a busy New York street. Pausing for breath on a street corner, another young woman\",walks up wearing the same purple dress.,removes her heeled shoes from the floor.,goes into the corner enclosure.,\"stands in her arms of the foreground, spraying her, is wearing a white raincoat.\",\"stops reaching the table as she finds the others, outside, ahead of them.\",gold0-orig,pos,unl,unl,unl,unl,\"Carrying the bulky dress in a bag, adult someone, in a formal purple dress, hurries out of the shop onto a busy New York street.\",\"Pausing for breath on a street corner, another young woman\"\nanetv_JLipYEVwKTg,9860,A woman wearing a leopard print jacket is sitting with a man in a hookah bar. The man,kisses her as he leans forward.,starts drinking a long pipe and shaker.,places a tall metal bear in a pot.,is talking to the other woman inside the office.,paints a woman all over the wall in fast motion.,gold1-orig,pos,unl,unl,unl,pos,A woman wearing a leopard print jacket is sitting with a man in a hookah bar.,The man\nanetv_JLipYEVwKTg,9862,\"She is holding the hookah in her hand ready to take her first puff. After she inhales the hookah, she\",puffs out some smoke and coughs in discomfort.,inhales and exhales smoke.,is once again turned on recorder.,continues smoking by them get dressed.,continues applying coming out.,gold0-orig,pos,unl,unl,unl,unl,She is holding the hookah in her hand ready to take her first puff.,\"After she inhales the hookah, she\"\nanetv_JLipYEVwKTg,9861,The man kisses her as he leans forward. She,is holding the hookah in her hand ready to take her first puff.,turns away and the creature slowly turns away from her.,turns his head away and kisses her hungrily in the lips.,takes off her perfume and takes the car.,\"glances at someone, then removes a block from a car in front of him.\",gold1-reannot,pos,unl,unl,unl,unl,The man kisses her as he leans forward.,She\nanetv_1IhbkbuDPpc,9623,\"People roller skates passing around cones and a ramps to flip. Then, a boy\",puts on roller skaters and performs in the gym.,jumps on a bar with sticks.,walks in circles inside a line of rollerblading social gear.,holds one skateboard during a course of traffic.,,gold0-orig,pos,unl,unl,unl,n/a,People roller skates passing around cones and a ramps to flip.,\"Then, a boy\"\nanetv_1IhbkbuDPpc,10822,The people are seen riding around a large gymnasium on roller blades performing various flips and tricks. The boys,continue skating around and interacting with one another and performing impressive tricks.,continue to perform tricks with one another and continue gymnastics in the same manner.,\"continue to play and whisper at one another while still speaking, with their hands set up.\",follow their water performing various jumps going from the platform on their feet one more time.,jump around as the person throws another person in frame while several others does one.,gold0-orig,pos,unl,unl,unl,unl,The people are seen riding around a large gymnasium on roller blades performing various flips and tricks.,The boys\nanetv_1IhbkbuDPpc,9622,\"People load a car with wood furniture, then people talk on front the camera. People roller skates\",passing around cones and a ramps to flip.,sweep each street and a pile of cereal simultaneously before the ice is shown.,go on a dirt road.,\"skates filled in empty streets, different styles and stages of grass.\",,gold0-orig,pos,unl,pos,pos,n/a,\"People load a car with wood furniture, then people talk on front the camera.\",People roller skates\nanetv_1IhbkbuDPpc,10821,A small group of people are seen lifting a large object into the back of a van and close ups of them and a building. The people,are seen riding around a large gymnasium on roller blades performing various flips and tricks.,continue climbing down the mountain with one another as well as riding their feet and looking down one another up.,continue to push the carpet all around.,continue to work as well as following objects around and adjusting to the incident.,,gold0-reannot,pos,unl,unl,pos,n/a,A small group of people are seen lifting a large object into the back of a van and close ups of them and a building.,The people\nlsmdc1038_The_Great_Gatsby-87629,12594,\"At someone's, people sit around a dining table. Someone\",wears a pale - pink suit.,holds her hands apart with a barred seal.,hides at a table in front of him.,takes off the glasses from a paper cup.,looks down at someone.,gold1-orig,pos,unl,unl,unl,pos,\"At someone's, people sit around a dining table.\",Someone\nlsmdc1038_The_Great_Gatsby-87629,12596,\"Attempting to light a cigarette, someone fumbles with the lighter and drops it. Someone\",picks it up for her.,runs out onto a small dock.,sits on a bed.,backs into the alley.,looks down at the campfire.,gold0-orig,pos,unl,unl,unl,unl,\"Attempting to light a cigarette, someone fumbles with the lighter and drops it.\",Someone\nlsmdc1038_The_Great_Gatsby-87629,12592,Someone looks round again and sees someone lurking in the shadows. Someone,turns and walks off.,puts her outstretched hand to her chest.,opens the door for someone and they step into the massage bed together.,\"watches, watching closely.\",clutches the caress then holds his sword steady.,gold0-orig,pos,unl,unl,unl,unl,Someone looks round again and sees someone lurking in the shadows.,Someone\nlsmdc1020_Crazy_Stupid_Love-81333,17471,\"At school, someone takes books out of her locker. She\",peeks out from behind her locker door at a girl of her own age with long blonde hair.,takes off his jacket and marches out.,goes and the board lights up.,takes a large envelope from a drawer.,pulls out a pair of handguns.,gold0-orig,pos,unl,unl,unl,unl,\"At school, someone takes books out of her locker.\",She\nlsmdc1020_Crazy_Stupid_Love-81333,17472,She peeks out from behind her locker door at a girl of her own age with long blonde hair. The girl,heads off down the corridor.,unlocks the door on someone's horse.,wearing the mismatched outfit gives her a kind look.,and her son visits someone.,,gold0-orig,pos,unl,pos,pos,n/a,She peeks out from behind her locker door at a girl of her own age with long blonde hair.,The girl\nlsmdc1020_Crazy_Stupid_Love-81333,17473,Someone jogs around a corner. The girl,is waiting for her.,scans someone and goes down to kiss him.,flips through the windscreen and leaps into the pool.,stops in the tracks.,\"posing, straightens her specs.\",gold1-orig,pos,unl,unl,unl,pos,Someone jogs around a corner.,The girl\nanetv_sODu6d-3zAQ,3067,A girl in jeans and a black shirt is holding a sparkly silver hula hoop. She,talks for awhile and then steps through the hoop with both legs.,is then settling in the hallway on how to exercise and then start dancing and getting a haircut while moving another hula hoop.,are in a kitchen throwing water.,\"went under the hopscotch with her hands and try on it, then finishes back to the bottom to the camera.\",,gold0-orig,pos,unl,unl,unl,n/a,A girl in jeans and a black shirt is holding a sparkly silver hula hoop.,She\nanetv_sODu6d-3zAQ,3068,She talks for awhile and then steps through the hoop with both legs. She,\"places it on her waist and spins it for a little bit, then stops.\",walks away from the boat.,moves the arms up and down while the girl finishes.,puts her hand onto her legs as she continues.,is then shown doing belly moves.,gold0-orig,pos,unl,unl,pos,pos,She talks for awhile and then steps through the hoop with both legs.,She\nanetv_sODu6d-3zAQ,6690,A person is seen holding a hula hoop in front of the camera and transitions into her holding the hula hoop around her waist. She,pauses to hold the hoop some more and then moves the object around her waist several times.,begins moves around the back of the leg with a basketball hoop and leads into her holding up the hoop.,more games of photography are seen on the screen too.,puts the lens into her eye and starts moving her hair all around.,continues swimming towards the hoop while looking down to the audience.,gold0-orig,pos,unl,unl,unl,pos,A person is seen holding a hula hoop in front of the camera and transitions into her holding the hula hoop around her waist.,She\nanetv_sODu6d-3zAQ,3069,\"She places it on her waist and spins it for a little bit, then stops. After that she\",talks for a bit more and then spins it on her hips for a while again.,puts the package down on her hand and leaves the area.,takes a sip of his drink and finishes by pouring the drink again.,\"continues on the exercise, but her feet also walk out of the room.\",\"drills, paper stick and replaces it, and does it with twice, why she did this easily.\",gold0-reannot,pos,unl,unl,unl,pos,\"She places it on her waist and spins it for a little bit, then stops.\",After that she\nlsmdc3044_KNOCKED_UP-20991,4591,She wipes a tear and heads off. Someone and someone,wait by the car.,arrive at one of the high rise roof.,arrive at a building's center.,hurry down the corridor.,get in the cab.,gold1-orig,pos,unl,pos,pos,pos,She wipes a tear and heads off.,Someone and someone\nanetv_aXnllTmgeqg,3647,He beats the cymbals and drums very fast. He,\"continues, making faces as he goes.\",is using drum sticks to play a globe and fourth drum.,puts his hand up behind his ears as he tries to solve a movements.,begins to play playing for the accordion.,moves his hands down to heft the rhythm.,gold1-orig,pos,unl,unl,unl,unl,He beats the cymbals and drums very fast.,He\nanetv_aXnllTmgeqg,3646,\"A man is shown on a stage, playing drums. He\",beats the cymbals and drums very fast.,demonstrates how to play the violin on front a band.,stops the crowd as the crowd claps.,continues playing the guitar while still singing.,turns around to watch him play.,gold0-orig,pos,unl,unl,unl,unl,\"A man is shown on a stage, playing drums.\",He\nanetv_PUJqlmTdlak,2179,A man shuffles a deck of cards and deals them. Four aces,are shown face up on the table.,\"are shown an open bag inside a hatchback, an alien is down running down the lane.\",are an ice rink of a hockey hockey game.,motorcade pass an rise of china tables.,scores on a screen and drink more beer afterwards.,gold1-orig,pos,unl,unl,unl,unl,A man shuffles a deck of cards and deals them.,Four aces\nanetv_PUJqlmTdlak,2180,Four aces are shown face up on the table. A man,sits at a table and plays blackjack.,shows how to weld a piece of wood while speaking.,walks to the camera and performs some taunting stances.,is speaking to the camera holding a razor and begins shaving his face.,starts to peel away.,gold0-orig,pos,unl,unl,pos,pos,Four aces are shown face up on the table.,A man\nanetv_1oyWMusaDTI,17786,A man is kite surfing on the edge of the board. The camera zoom in and,shows the board then zooms back out.,the people are skiing around.,show the group taking off the water.,zooms out on the side of the head.,,gold0-orig,pos,unl,unl,unl,n/a,A man is kite surfing on the edge of the board.,The camera zoom in and\nanetv_1oyWMusaDTI,17787,The camera zoom in and shows the board then zooms back out. We,see the road in the distance and see cars driving.,see the men riding down the boat.,see a man looking to the camera.,see the finished product.,see a couple of children and clothes.,gold0-orig,pos,unl,unl,unl,unl,The camera zoom in and shows the board then zooms back out.,We\nanetv_6gZuc4umTPk,4326,Two young girls are seen speaking to the camera and playing with one another. One girl then,pulls out a bottle of nail polish while the other waves to the camera.,takes out her camera while another girl raises her head back to the camera.,pushes the other and begins arm wrestling again in slow motion.,begins kicking the ball around while the camera pans in to the side.,plays the instrument while smiling and ends by looking off into the distance.,gold0-orig,pos,pos,pos,pos,pos,Two young girls are seen speaking to the camera and playing with one another.,One girl then\nanetv_6gZuc4umTPk,4327,One girl then pulls out a bottle of nail polish while the other waves to the camera. More clips,are shown of one girl attempting to paint the nails of the other and ends by waving to the camera.,are shown of dogs being demonstrated by another man.,are shown of people working together to maintain eye contact.,are shown of people adding their shoes.,are shown of people grabbing sunscreen and waving goodbye.,gold0-orig,pos,unl,unl,unl,pos,One girl then pulls out a bottle of nail polish while the other waves to the camera.,More clips\nanetv_YWsqpINl8Ic,13308,The man uses two squeegees to clean two windows at the same time. The man,finishes and puts his tools in his tool belt.,stops the left with small other thing parts in his left hand.,scrapes with a pair of paper and a entire board covered with wax.,finishes the hookah as he dances with the young boy.,,gold0-orig,pos,unl,unl,unl,n/a,The man uses two squeegees to clean two windows at the same time.,The man\nanetv_YWsqpINl8Ic,13307,A handyman is standing in front of a porch and talking. The man,uses two squeegees to clean two windows at the same time.,is washing the syrup's window.,gets out of a chair and starts playing a saxophone.,then opens a window and begins painting the furniture with a wiper.,stands to the wall.,gold0-orig,pos,unl,unl,unl,pos,A handyman is standing in front of a porch and talking.,The man\nanetv_YWsqpINl8Ic,13309,The man finishes and puts his tools in his tool belt. He,smiles and walks away.,\"removes the replaced harness to dry the wall, to a car.\",puts the snowboard on his back and gives a thumbs up.,adjusts the handlebars on his bike and shows off their front tire onto the car top.,spreads the metal across the area as the car drives past.,gold1-reannot,pos,unl,pos,pos,pos,The man finishes and puts his tools in his tool belt.,He\nlsmdc0019_Pulp_Fiction-56847,6651,Someone lies her head back. Someone,continues to massage her crotch.,turns to someone as she stands.,raises plunges her hands forward and tries to lift her brother up.,whacks someone with her face and slaps someone on the shoulder.,lies unconscious on the floor.,gold0-orig,pos,unl,unl,unl,pos,Someone lies her head back.,Someone\nanetv_iM-HdlplAhw,10584,A child is seen handing onto a set of monkey bars while children running around. The girl then,begins climbing across the set of monkey bars.,rides the lawn along the playground while looking off into the distance.,\"pauses to demonstrate, swinging back and fourth while speaking to the camera.\",jumps back and fourth on a pair of monkey bars under the roof.,kneels down on the monkey bars and looks off into the distance.,gold1-orig,pos,unl,pos,pos,pos,A child is seen handing onto a set of monkey bars while children running around.,The girl then\nanetv_iM-HdlplAhw,10585,The girl then begins climbing across the set of monkey bars. She,climbs all the way to the end and jumps off the side.,watches the machine gymnastic the monkey bars across the room.,continues cutting the unit and jumps all the way down the slide.,jumps and walks back onto the horse while laughing.,gets back to dancing and end with his feet up in the air.,gold0-orig,pos,unl,unl,unl,unl,The girl then begins climbing across the set of monkey bars.,She\nanetv_gvr1dpCpvhw,16973,The lady cuts the cake and people eat it and give a thumbs up. We,see ending title credits.,hands the baby out and put pasta in his wet avert boy.,see a red ending screen and a man with the camera heats the ice.,see a lady taking puffs from a hookah.,see a waiter talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,The lady cuts the cake and people eat it and give a thumbs up.,We\nanetv_gvr1dpCpvhw,16967,We see a title screen and a cake. We,see ingredients on a table.,see items at the bottom.,see screens laying on a white screen.,see a man throwing a tire.,see a lady baking in a pan.,gold1-orig,pos,unl,unl,unl,pos,We see a title screen and a cake.,We\nanetv_gvr1dpCpvhw,16972,The lady sprinkles graham crackers and puts mango and grapes on top. the lady cuts the cake and people,eat it and give a thumbs up.,are her and mixing the cake into a cake.,poke the cake at the screen.,eat and eat hard.,decorate the cake and place it in a small oven.,gold0-orig,pos,unl,unl,unl,unl,The lady sprinkles graham crackers and puts mango and grapes on top.,the lady cuts the cake and people\nanetv_gvr1dpCpvhw,16934,A view is seen of a female chef and a male one appears. They,wave at the camera before showing a recipe for graham cracker cake.,jump before her performing long jumps.,then shows two fish together and the girl then wipes a crack of the ice on front of the fish.,man is running in oil and sharpening.,,gold0-orig,pos,unl,unl,unl,n/a,A view is seen of a female chef and a male one appears.,They\nanetv_gvr1dpCpvhw,16970,The lady puts graham crackers in a bowl and layers with the milk mixture. The lady,ads mango slices and returns to layering the mixture and crackers.,throws the cake into two small pieces.,puts onions and pickles mixture into a pasta bowl.,measures the board and adds all the ingredients together.,measures and stirs the ingredients.,gold0-orig,pos,unl,unl,pos,pos,The lady puts graham crackers in a bowl and layers with the milk mixture.,The lady\nanetv_gvr1dpCpvhw,16968,We see ingredients on a table. The lady,pours milk and an item in a bowl and mixes and cuts mango.,adds the baby to a razor on the back of a chair.,grabs a ball and puts it in a cup.,holds up a white cloth and leads it to the children.,presents a cake in her lap.,gold1-orig,pos,unl,unl,pos,pos,We see ingredients on a table.,The lady\nanetv_gvr1dpCpvhw,16971,The lady ads mango slices and returns to layering the mixture and crackers. the lady,sprinkles graham crackers and puts mango and grapes on top.,puts the press pan down on the bread with the potatoes.,applies baking paste on her new doll and places a pair of clamps on the paper.,measures two potatoes pieces.,,gold1-orig,pos,unl,unl,unl,n/a,The lady ads mango slices and returns to layering the mixture and crackers.,the lady\nanetv_gvr1dpCpvhw,16935,They wave at the camera before showing a recipe for graham cracker cake. They,\"show the cake in layers of graham crackers, and are each served a piece.\",are at computer prices where several images of the colleagues are shown.,engage in a break dancing.,can be seen riding in a beanie.,show on to a plate of people.,gold0-orig,pos,unl,unl,unl,unl,They wave at the camera before showing a recipe for graham cracker cake.,They\nanetv_gvr1dpCpvhw,16969,The lady pours milk and an item in a bowl and mixes and cuts mango. The lady,puts graham crackers in a bowl and layers with the milk mixture.,puts up a spoon and adds it to the pot.,puts seconds of milk on a plate and pours shots in a white pan with the newcomer.,pours her measure in the bottle.,adds pasta to a slice.,gold0-orig,pos,unl,unl,unl,unl,The lady pours milk and an item in a bowl and mixes and cuts mango.,The lady\nlsmdc3057_ROBIN_HOOD-27684,16344,She smirks at someone and rides off. He,wears a bashful smile.,kneels down behind her.,smiles and falls heavily.,gives him a playful glance.,watches her and bites her lip just one time.,gold1-orig,pos,unl,unl,unl,unl,She smirks at someone and rides off.,He\nlsmdc3057_ROBIN_HOOD-27684,16343,\"Noticing someone, they quickly retreat. She\",smirks at someone and rides off.,\"flings him down, runs into the corridor.\",swings desperately to walk through the crowd.,tries to restrain someone but the grenade plummets to the ground and miss someone.,stretch out and follow someone inside.,gold1-orig,pos,unl,unl,unl,unl,\"Noticing someone, they quickly retreat.\",She\nlsmdc3057_ROBIN_HOOD-27684,16342,Someone trots over to them ahead of someone. The tall woman and two of the dancing beauties,emerge from doorways nearby.,have into a box.,are on a front bed.,reach their square office formations.,explore around behind someone.,gold0-reannot,pos,unl,unl,unl,pos,Someone trots over to them ahead of someone.,The tall woman and two of the dancing beauties\nanetv_IqRN2sOQ7Mo,16789,Children walk along a dirt road on the side of buses. Children,talk while holding kites that they made in their hands.,slide down a hill past a huge camera holding a ticket on their side.,still women are placed in front of the mirror as the woman talks to the camera.,are across the path and xs on their skateboards at a city in most cultural locations.,,gold0-orig,pos,unl,unl,unl,n/a,Children walk along a dirt road on the side of buses.,Children\nanetv_IqRN2sOQ7Mo,6533,Many people are on the screen commenting on the events of the day. Kites,are being flown high up in the air as several spectators look at all the kites.,\", people are at a bar on a beach having fun.\",take the headlamp and jump appear.,are kayaking to the water.,subscribe to the news anchor.,gold0-orig,pos,unl,unl,unl,unl,Many people are on the screen commenting on the events of the day.,Kites\nanetv_IqRN2sOQ7Mo,16787,A beach is seen from above with many people seated on the shore. Buses,drive along the road with passengers.,\"paddle after, paddling in the turbulent waves.\",\"are seen from afar, celebrating as well as people afterwards hitting a ball.\",are also seen playing beer pong and women waiting down at the beach.,,gold0-orig,pos,unl,unl,unl,n/a,A beach is seen from above with many people seated on the shore.,Buses\nanetv_IqRN2sOQ7Mo,6535,People are walking back and forth enjoying the show of the colorful flying objects. Children,cheer at the end of the video as they are holding kites.,are turned around and grabbing the sign for a hug.,are shown running from the boats while men goes through the waves.,are performing in white photo cycle squares.,are sitting up as they then do the song on the piano with foot music.,gold0-orig,pos,unl,unl,unl,unl,People are walking back and forth enjoying the show of the colorful flying objects.,Children\nanetv_IqRN2sOQ7Mo,6534,Kites are being flown high up in the air as several spectators look at all the kites. People,are walking back and forth enjoying the show of the colorful flying objects.,turn a rope to different dismounting and stand in time to cheer them on.,\"fly over a glass, water, and float with smaller kites on the sky.\",\"are assembled, young skaters are singing.\",,gold0-orig,pos,unl,unl,unl,n/a,Kites are being flown high up in the air as several spectators look at all the kites.,People\nanetv_IqRN2sOQ7Mo,16788,Buses drive along the road with passengers. Children,walk along a dirt road on the side of buses.,kick their feet away from each other.,get out of the cars with tow.,buy some directions and leave them as they speed down the road.,forces someone into a cab.,gold0-orig,pos,unl,unl,unl,unl,Buses drive along the road with passengers.,Children\nanetv_IqRN2sOQ7Mo,16790,Children talk while holding kites that they made in their hands. Thousands of children,play on the beach and fly their kites in the air.,are shown in different park with one holding ornaments and a hat.,are swimming inside the house.,are seated together as they play a game of croquet.,rush down to flee the marathon.,gold0-reannot,pos,unl,unl,unl,pos,Children talk while holding kites that they made in their hands.,Thousands of children\nanetv_IqRN2sOQ7Mo,6532,People are on the beach enjoying a hot and sunny day. Many people,are on the screen commenting on the events of the day.,\"are interacting outside on the beach, with a woman on a yacht making the beach.\",are in the woods surrounded by silver ornaments.,are watching the man for a different competition in a club holding a sand castle.,\"speak to the camera and straight in the parking lot, in a perfect bucking swimming pool.\",gold1-reannot,pos,unl,unl,unl,unl,People are on the beach enjoying a hot and sunny day.,Many people\nlsmdc0004_Charade-47398,8243,It bears the Great Seal as a letterhead and the typed message reads. Someone,has been reading over someone's shoulder.,blinks then leans back and puffs his teeth.,runs across a busy track and falls by a line of dirt bikers covered in pepper and black.,sees someone looking at a picture in his rocky hand.,,gold0-orig,pos,unl,unl,pos,n/a,It bears the Great Seal as a letterhead and the typed message reads.,Someone\nlsmdc0004_Charade-47398,8250,He works at a stain on his necktie with lighter fluid and hankie. He,\"looks up at her, laughs silently, then goes back to his tie.\",sees it with his pencil and presses his hand along the wall nearby.,enters to a darkened caretaker.,withdraws his hand holding the fork of a national puffed invitation.,holds out his thumb and extracts the number.,gold0-orig,pos,unl,unl,unl,unl,He works at a stain on his necktie with lighter fluid and hankie.,He\nlsmdc0004_Charade-47398,8246,\"Someone enters, looks for somebody, notices that the door to the private office is slightly ajar. Someone\",comes to the door and looks in.,\"moves past the wooden door, door open.\",\"is frozen in place, staring off.\",\", sneaking outside the door, walks across to another prisoner with a lever and a side lurches.\",is now with someone's sister the penguin by themselves.,gold0-orig,pos,unl,unl,unl,unl,\"Someone enters, looks for somebody, notices that the door to the private office is slightly ajar.\",Someone\nlsmdc0004_Charade-47398,8247,Someone comes to the door and looks in. He,\"is a pale grey - haired man who looks, on first examination, older than his forty - odd years.\",turns to see someone pinning down in a chair.,sees someone holding the hammer as someone closed behind him and stares down at the ceiling.,\"stands her head, and he turns to a lamp on the window, standing in a bookcase.\",\", still in the light, looks up and sees the dark red hallway filled with green apples.\",gold0-orig,pos,unl,unl,unl,unl,Someone comes to the door and looks in.,He\nlsmdc0004_Charade-47398,8244,The elevator door closes on them. Someone,\"reacts to this and starts down the hall, finally stopping at the door.\",helps into the kitchen.,pulls the drapes shut.,\", he steps up.\",,gold0-orig,pos,unl,unl,unl,n/a,The elevator door closes on them.,Someone\nlsmdc0004_Charade-47398,8245,\"The office is empty, the typewriter on the secretary's desk is covered with its plastic shroud. Someone\",\"enters, looks for somebody, notices that the door to the private office is slightly ajar.\",\"pushes it down the residential, scowling in a bed.\",walks up behind her.,'s sick slowly rises up partway.,\"in the passenger seat, someone sits facing his mother.\",gold0-orig,pos,unl,unl,unl,unl,\"The office is empty, the typewriter on the secretary's desk is covered with its plastic shroud.\",Someone\nlsmdc0004_Charade-47398,8248,He wears heavy tortoise - framed glasses which fall down his nose and cause him to push them back in place every so often with a quick automatic motion. He,\"motions for her to enter, standing aside to let her do so.\",senses alcohol together and he goes behind the bar and proffers his hand to the bottle and he winks to it.,\"shines his way down the dimly lit yard of someone's apartment, which he still ago in his son's rain.\",walks with underneath haze hidden lens tunnel and a long plank - wider view of the massive window separating its roof.,turns her to face the crowd.,gold0-orig,pos,unl,unl,unl,pos,He wears heavy tortoise - framed glasses which fall down his nose and cause him to push them back in place every so often with a quick automatic motion.,He\nlsmdc0004_Charade-47398,8249,\"He motions for her to enter, standing aside to let her do so. He\",works at a stain on his necktie with lighter fluid and hankie.,takes the lighter to him.,\"looks at someone, then leans forward and kisses his forehead.\",\"stands, wearing her lipstick, walks beside him, hands in full trust, as he leans toward someone.\",backs away from a stall.,gold0-reannot,pos,unl,pos,pos,pos,\"He motions for her to enter, standing aside to let her do so.\",He\nanetv_A3160tXXLGg,4277,The man grabs a rubik's cube and play with it. when the man,finish the timer marks 14 seconds.,\"completes the workout, turning his face back and forth to record viewers.\",wins he begins to play the cube.,holds the cube the young man stands up.,,gold0-orig,pos,unl,unl,pos,n/a,The man grabs a rubik's cube and play with it.,when the man\nanetv_A3160tXXLGg,11280,The clock strikes 0 and a person picks up the cube. The cube,is completed in under 15 seconds.,begins to solve the puzzle.,works against the pitcher on a wall.,jumps from the wall.,,gold0-orig,pos,unl,unl,unl,n/a,The clock strikes 0 and a person picks up the cube.,The cube\nanetv_A3160tXXLGg,11279,A Rubiks cube sits on a laptop as a clock counts down. The clock strikes 0 and a person,picks up the cube.,happens at round 4 in bed.,measures and folds the entire video.,sets the timer to pass a wall of metal.,shows how to start and dance.,gold0-orig,pos,unl,unl,unl,pos,A Rubiks cube sits on a laptop as a clock counts down.,The clock strikes 0 and a person\nanetv_A3160tXXLGg,4276,A man put a timer on a laptop on top of a table. the man,grabs a rubik's cube and play with it.,then reactor the cube.,sets a timer on a table.,solves the cube and proceeds to solve a rubik's cube.,cleans his face with a cloth.,gold0-reannot,pos,unl,unl,unl,unl,A man put a timer on a laptop on top of a table.,the man\nanetv_A3160tXXLGg,11281,The cube is completed in under 15 seconds. The person,puts it down and shows the screen.,flips the paper around and adds it to scroll.,struggles to solve the cube.,\"repeats striped 12, finally, then holds up the rubix cube and sets it upright in it.\",stops then sinks the cube.,gold0-reannot,pos,unl,unl,unl,unl,The cube is completed in under 15 seconds.,The person\nlsmdc1017_Bad_Santa-7393,12881,\"He checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open. Later he\",\"joins someone in the vault, and finds someone peering through the hole he drilled.\",helps richard parker up to the dot and flees off in his own direction.,pulls the door barred shut after cupboard.,\"passes someone a kid - lettered hobbling, turns him near and opens the door.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open.\",Later he\nlsmdc1017_Bad_Santa-7393,12877,\"Now in regular clothes, someone's little helper opens a back door and finds someone surrounded by empty beer cans. The elf\",shakes his head sadly.,artist steps out to a nearby coffee chair.,notices the vehicle peeking out from a building and swims toward someone then lifts its head and lower its weapon.,swats ice from the bottle then rolls across it.,points at his hand in one side and starts to hit someone to another.,gold0-orig,pos,unl,unl,unl,unl,\"Now in regular clothes, someone's little helper opens a back door and finds someone surrounded by empty beer cans.\",The elf\nlsmdc1017_Bad_Santa-7393,12884,\"She turns to the elf. The woman puts her foot on the accelerator, and the van\",speeds off throwing someone and the elf backwards.,lands a few feet away.,splits up with fire.,flies gently into the ocean.,,gold0-orig,pos,unl,unl,unl,n/a,She turns to the elf.,\"The woman puts her foot on the accelerator, and the van\"\nlsmdc1017_Bad_Santa-7393,12876,\"The snowman pulls his head off, revealing someone's profusely sweating little helper. Now in regular clothes, someone's little helper\",opens a back door and finds someone surrounded by empty beer cans.,\"'s swollen, as he chews her paste.\",crawls across a pub at a deserted zoo.,races through an suburban neighborhood complex where he bumps over and bumps into a bathtub.,,gold0-orig,pos,unl,pos,pos,n/a,\"The snowman pulls his head off, revealing someone's profusely sweating little helper.\",\"Now in regular clothes, someone's little helper\"\nlsmdc1017_Bad_Santa-7393,12872,The snowman slides down between the escalators as the alarm system continues its arming countdown. He,crashes into a display at the bottom and trots up to run through the shop.,\"turns out into the courtyard, toward a wood - lined desk, one of whom is accompanied by two holding drawings.\",picks up one frown and hits a button.,holds out his popped - up.,,gold0-orig,pos,unl,unl,unl,n/a,The snowman slides down between the escalators as the alarm system continues its arming countdown.,He\nlsmdc1017_Bad_Santa-7393,12878,\"Someone mooches inside past his less than impressed elf. In the store's vault, someone\",uses a heavy drill to bore through the door of a locked safe.,finds the band manager riding to the clergyman with a closing caption.,enters his living room and picks the iron empty.,is standing up in front of a bed.,runs up a long platform.,gold0-orig,pos,unl,unl,unl,unl,Someone mooches inside past his less than impressed elf.,\"In the store's vault, someone\"\nlsmdc1017_Bad_Santa-7393,12871,\"As someone shuffles off, the guard keys a code into an alarm system. Up in the grotto, three snowmen\",sit behind statues of someone and the baby someone in his crib.,\"went to a stretcher, wielding an iron through open protective glass doors.\",sit prone as the plane rattles its side door.,\"drop in, powdered leaves spill out of the room.\",hobbles down old and covered streets skateboarding miserably as they march off side to side.,gold0-orig,pos,unl,unl,unl,unl,\"As someone shuffles off, the guard keys a code into an alarm system.\",\"Up in the grotto, three snowmen\"\nlsmdc1017_Bad_Santa-7393,12879,\"In the store's vault, someone uses a heavy drill to bore through the door of a locked safe. Out on the shop floor of the store, the elf walks along towing a small hand cart, someone\",pulls out the drill from the safe door.,'s gaze fixed on someone.,huddled on the patio.,darts in the direction of new the naked man.,steps to the rail.,gold1-reannot,pos,unl,unl,unl,unl,\"In the store's vault, someone uses a heavy drill to bore through the door of a locked safe.\",\"Out on the shop floor of the store, the elf walks along towing a small hand cart, someone\"\nlsmdc1017_Bad_Santa-7393,12874,The snowman pulls the arm off of a mannequin as he goes. He,uses the arm to reach up and switch off the alarm before it can on.,\"looks at his computer, then sighs, then turns to someone.\",strides and the man somersaults onto the side of the stage.,follows someone inside the bedroom.,and someone watch them run to the post room.,gold0-reannot,pos,unl,unl,pos,pos,The snowman pulls the arm off of a mannequin as he goes.,He\nlsmdc1017_Bad_Santa-7393,12880,\"On the shop floor, his little helper helps himself to an expensive handbag from a display cabinet, then some women's designer shoes, all of which are detailed on a list. He\",\"checks his list while eyeing a string of pearls in a cabinet, and uses a bead rack to smash it open.\",hears the chuckles as she joins someone's mercedes.,\"jumps out, notices a wad of money in her hand, then uses to $100 bill.\",nods to himself as he hands the bills.,enters a handicapped room wearing the dark leather shoes draped over his shoulder.,gold0-reannot,pos,unl,unl,unl,unl,\"On the shop floor, his little helper helps himself to an expensive handbag from a display cabinet, then some women's designer shoes, all of which are detailed on a list.\",He\nlsmdc1017_Bad_Santa-7393,12882,He opens the safe and wards of notes spil out onto the floor. An oriental woman,sits at the wheel of a van as someone and his little helper climb in the back with their booty.,\"talks to the audience, he stands at a mantle, playing a saxophone.\",\"sets the candle on a table, peering closely at its drop bottle against a glass glass.\",sits on the stereo room.,walks into a room in the children bathroom.,gold0-reannot,pos,unl,unl,unl,unl,He opens the safe and wards of notes spil out onto the floor.,An oriental woman\nlsmdc1017_Bad_Santa-7393,12886,Someone puts down someone on a bar stool by the counter. He,calls over to the barmaid.,backs through the window.,sees someone approaching from the tree.,drops his frittata and makes the pranam.,pushes the door shut and goes inside with the note on his desk.,gold0-reannot,pos,unl,unl,unl,pos,Someone puts down someone on a bar stool by the counter.,He\nanetv_7lUaR1veDJU,4509,We see people playing water polo in a pool. A man in the rear on the right,throws the ball to a player closer to the goal.,throws a ball down a lane.,gets his board off of the table.,is shown playing two cards.,engage in a field swimming game.,gold0-orig,pos,unl,unl,unl,unl,We see people playing water polo in a pool.,A man in the rear on the right\nanetv_7lUaR1veDJU,4510,A man in the rear on the right throws the ball to a player closer to the goal. That player then,throws the ball across to a man on the left.,makes a shot and another replay.,arrow goal with athletes shooting the other team and cheering to other players.,runs after the ball.,dives to the goal several more times as they continue and the ball is back.,gold1-orig,pos,unl,unl,pos,pos,A man in the rear on the right throws the ball to a player closer to the goal.,That player then\nanetv_7lUaR1veDJU,4511,That player then throws the ball across to a man on the left. A man,grabs the ball and throws it in the goal.,in white shirt throws a ball around another boy while the man throws another ball.,kicks a ball into his crotch.,throws a ball on the mat with other people watching in the background.,walks around with a ball.,gold0-reannot,pos,unl,pos,pos,pos,That player then throws the ball across to a man on the left.,A man\nanetv_D7WhCBcddSA,2643,A man sits down while holding his racket. The men,continue to play the game.,move his feet up and down around each other long boards.,hit a dart back and fourth.,chase the ball back and forth.,hit a ball back and forth.,gold0-orig,pos,unl,unl,unl,pos,A man sits down while holding his racket.,The men\nanetv_D7WhCBcddSA,2248,A man in gray shirt is walking and then two men are playing racquet ball. The two men,are playing racquet ball while audience are outside the room watching.,fell against the sandy ground and hit the ball and landed beside the ball.,are playing a game game of ping pong.,are hit balls fast and quickly at the same time.,are shooting at each other and passing the ball.,gold0-orig,pos,unl,unl,pos,pos,A man in gray shirt is walking and then two men are playing racquet ball.,The two men\nanetv_D7WhCBcddSA,2642,Two men are playing wall ball in a room. A man,sits down while holding his racket.,sits outside in a room without discussing.,in brown walks onto a lit room to front the ball.,hits a ball with a mallet.,stands in front of a wall.,gold1-reannot,pos,unl,unl,unl,pos,Two men are playing wall ball in a room.,A man\nlsmdc3022_DINNER_FOR_SCHMUCKS-10492,8783,\"Forcing a smile, someone takes the ring box and gets on one knee. Someone\",bangs his glass to attract everyone's attention.,\"drops onto his left knee, then stops him.\",stands and takes a seat.,unhooks a crystal hook off of a door in it.,pulls up someone's alien pistol from a security crate.,gold0-orig,pos,unl,unl,unl,unl,\"Forcing a smile, someone takes the ring box and gets on one knee.\",Someone\nanetv_u0p_dBCEDs4,11793,A chef is talking while standing in front of a bow as she cooks spaghetti. The lady,\"adds salt, and spaghetti to boiling water.\",scoops some lemons in a pot.,gets the potato and cuts tomatoes.,add a cold and white pot to saute pasta.,mixes some tomatoes with its tongs.,gold1-orig,pos,unl,unl,unl,pos,A chef is talking while standing in front of a bow as she cooks spaghetti.,The lady\nanetv_u0p_dBCEDs4,11795,The lady grabs a noodle to show how it should look when cooked. The lady,\"drains the water, adds sauce, and adds some of the cook water.\",starts to cook the cake with a baking pan.,finishes chopping the cucumber and takes the plates out to the oven.,throws the tire on the horse and backs it off the man.,\"adds garlic to different garlic, pours them and a pan around the stove.\",gold0-orig,pos,unl,unl,unl,unl,The lady grabs a noodle to show how it should look when cooked.,The lady\nanetv_u0p_dBCEDs4,11796,\"The lady drains the water, adds sauce, and adds some of the cook water. She\",puts it on a plate.,\"cracks the sausage and juices it, also a few eggs, shaved quickly.\",mixes the cake with a spatula while the flour is squeezed into juice.,puts supplies on a rack and adds cheese.,,gold0-orig,pos,unl,unl,pos,n/a,\"The lady drains the water, adds sauce, and adds some of the cook water.\",She\nanetv_u0p_dBCEDs4,11797,She puts it on a plate. We then,see the black credits rolling.,see the lady form a wrap.,see people making castles.,see a lady add some grapes to the pan.,see a new screen.,gold1-orig,pos,unl,unl,pos,pos,She puts it on a plate.,We then\nanetv_u0p_dBCEDs4,11794,\"The lady adds salt, and spaghetti to boiling water. The lady\",grabs a noodle to show how it should look when cooked.,puts a hubcap in the pan.,pours pasta into a blender and rinses in the sink.,\"peels eggs, flour and ice sugar.\",chugs some capsules on a yellow cup.,gold0-orig,pos,unl,unl,unl,unl,\"The lady adds salt, and spaghetti to boiling water.\",The lady\nanetv_e5e16U5hnzY,2741,Secondly she shows the proper stance of throwing the item and throws the discuss how into the air. She,demonstrates bending down and spinning with the disk and does one throw full out.,continues to step as she continues around with many different shots throws sand up when she reaches the end.,lays her arms down on the bottom.,\"ends with practicing and picking her up from and jumps in from the bench, arm up and smiling.\",gives her more information about her actions.,gold0-orig,pos,unl,unl,unl,pos,Secondly she shows the proper stance of throwing the item and throws the discuss how into the air.,She\nanetv_e5e16U5hnzY,2740,A man and women are talking to a camera and the girl demonstrates on how to properly hold a discuss. Secondly she,shows the proper stance of throwing the item and throws the discuss how into the air.,holds a cue up to the perimeter of the circle around a disc.,\"goes in such like several hands, applying a attachment features to a pane that is moving across an area.\",holds a box and jump in and showing how to throw the baton very fast.,,gold0-orig,pos,unl,unl,unl,n/a,A man and women are talking to a camera and the girl demonstrates on how to properly hold a discuss.,Secondly she\nanetv_e5e16U5hnzY,2742,She demonstrates bending down and spinning with the disk and does one throw full out. The man then,tries to throw how the woman did and attempts to throw more and get better.,finishes the drum ups and does a hand stand for a few seconds.,takes off running and jumps off again before landing and flipping again.,sits again and gives another disc.,,gold0-orig,pos,unl,pos,pos,n/a,She demonstrates bending down and spinning with the disk and does one throw full out.,The man then\nanetv_Oi-atN4-Oqk,2238,\"A young man dance in a room moving his hands and putting behind his back. Then, the man\",put his hand behind his head.,adjusts the flute shows the peace sign plays.,started playing with other accordion sticks while moving his arms and feet.,finish with the instrument in his hands to demonstrate how to make a cup.,dance tango in front of a large crowd.,gold0-orig,pos,unl,unl,unl,pos,A young man dance in a room moving his hands and putting behind his back.,\"Then, the man\"\nanetv_Oi-atN4-Oqk,2239,\"Then, the man put his hand behind his head. The reflection of the man\",is in the mirror.,reveals a lags bit and talks to another man.,scratches the top of the head with a cloth.,returns to the mirror.,putting a cloth and a tile on the wall folds an iron on top of it.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man put his hand behind his head.\",The reflection of the man\nanetv_3gPjMvTmE2g,15075,Several boats are shown sailing on the water as a man narrates before the start of a boat race. Stats,are shown on the screen as the man explains some of the stats.,ride through the trees while others try to jump.,are poured from the boats beside themselves.,continues flying as the water ski.,\"see the camera board, then an engineer ski down the board.\",gold0-orig,pos,unl,unl,unl,unl,Several boats are shown sailing on the water as a man narrates before the start of a boat race.,Stats\nanetv_3gPjMvTmE2g,15077,The crowd is show on the sideline sitting on the grass watching with binoculars. The boats,begin to bunch together as the horn blows for the beginning of the race.,go on stable playing.,are wheeled away by the wheelchair and into the pool of the dark house.,are then seen sitting at the edge of the tank.,are pulled off an heavier terrain skiff.,gold0-orig,pos,unl,unl,unl,unl,The crowd is show on the sideline sitting on the grass watching with binoculars.,The boats\nanetv_3gPjMvTmE2g,18181,More close ups of the boats are shown as well as people sitting in the grass and celebrating. Close ups of people on the boat,are shown with more boats riding around and moving along the water.,are shown as well as a calf and a paddle up.,are shown as well as the man speaking to the camera.,are shown as well as being hit.,are shown from others riding down the hill while people stand around them watching.,gold0-orig,pos,unl,unl,unl,unl,More close ups of the boats are shown as well as people sitting in the grass and celebrating.,Close ups of people on the boat\nanetv_3gPjMvTmE2g,18180,The video leads into several boats gliding along the water behind one another. More close ups of the boats,are shown as well as people sitting in the grass and celebrating.,are seen followed by a swing with a person smiling in the camera.,are shown as well as numerous people underwater in the water.,are shown as well as many people still at the end.,are shown and more sailing are shown.,gold0-reannot,pos,unl,unl,pos,pos,The video leads into several boats gliding along the water behind one another.,More close ups of the boats\nanetv_3gPjMvTmE2g,15076,Stats are shown on the screen as the man explains some of the stats. The crowd,is show on the sideline sitting on the grass watching with binoculars.,gets to the side of his horse and men working on it's skin to perform a good as a man.,moves on a brown field as well as the leaves celebrating his technique.,is shown in the center hitting the ball with another person.,cheer on the ground and the camera pans to a team celebrating.,gold1-reannot,pos,unl,unl,unl,unl,Stats are shown on the screen as the man explains some of the stats.,The crowd\nanetv_XvM1rCVQWWY,11483,He puts a plastic sheet over the curb. He,paints the roof of a building with a roller brush.,shows bazaar courses with tricks.,climbs off the cab and dresses along his blanket in the hallway.,moves out from the water and puffs into a flame.,imagines the car driving through a squeegee windshield.,gold0-orig,pos,unl,unl,unl,unl,He puts a plastic sheet over the curb.,He\nanetv_XvM1rCVQWWY,623,He lays down several plastic sheets. He then,\"rolls over the sheets, sealing them.\",paints it and mopped it.,dumps them on the bed.,begins vacuuming the floor.,lifts them up and bends down to throw them onto the wood.,gold0-orig,pos,unl,unl,unl,unl,He lays down several plastic sheets.,He then\nanetv_XvM1rCVQWWY,11482,A man is kneeling down painting a curb. He,puts a plastic sheet over the curb.,starts riding down the snowy mountain.,begins laying down on the ground in dirt between people.,uses his belt to put his case on.,\"bends down, begins playing the drums.\",gold0-orig,pos,unl,unl,unl,unl,A man is kneeling down painting a curb.,He\nanetv_XvM1rCVQWWY,622,A man is kneeling on the ground beside a railing. He,lays down several plastic sheets.,does it as a without the tiles.,using jumps to turn the bolt and rolling it back with the first person.,opens it and continues skating down an embankment.,moves over using his hands to wash different items.,gold0-orig,pos,unl,unl,unl,pos,A man is kneeling on the ground beside a railing.,He\nlsmdc3037_IRON_MAN2-16347,7101,\"Watching her, someone drinks chlorophyll from a sports bottle. Someone\",\"stares at someone, who lowers the bottle.\",\"pulls out a new envelope while still reading, and puts his revolver down.\",stares at the photo of a scary dragon with sculpted hair.,turns and look at each other.,,gold0-orig,pos,unl,unl,pos,n/a,\"Watching her, someone drinks chlorophyll from a sports bottle.\",Someone\nlsmdc3037_IRON_MAN2-16347,7091,They tap their glasses together and drink. Someone,\"tucks the envelope in his jacket and pays the man, who leaves.\",take their defiant signals and knock them into a ridge.,picks up an archery structure and presses it on someone.,\"sits with someone, uneasy.\",looks at someone in embarrassed surprise.,gold0-orig,pos,unl,unl,pos,pos,They tap their glasses together and drink.,Someone\nlsmdc3037_IRON_MAN2-16347,7102,\"Someone stares at someone, who lowers the bottle. Someone\",\"glances down, then turns to someone.\",\"looks away bitterly, rubbing his eyes.\",drives from a filters.,is sucking in the slush in a window.,dries a fur revealing an closely filthy handkerchief at a bedside table.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stares at someone, who lowers the bottle.\",Someone\nlsmdc3037_IRON_MAN2-16347,7096,\"Elsewhere, Pepper enters someone's home gym, where someone and someone box in a ring. Someone\",\"jabs at someone, then elbows him in the face.\",smacks men with an iron and rushes to them.,sprays another wood with a winged tool.,morphs into someone's fiery face.,watches him through his bedroom window as he takes out.,gold1-orig,pos,unl,unl,unl,unl,\"Elsewhere, Pepper enters someone's home gym, where someone and someone box in a ring.\",Someone\nlsmdc3037_IRON_MAN2-16347,7093,\"Someone glances out toward a sidewalk, then steps back into the passageway. He\",takes out the envelope and opens it.,has colored green hair on his back against the mirror.,\"reaches the bottom of the stairs, pulling him up.\",\"gazes at a mirror, then rubs his finger.\",rubs the driver's hand down.,gold1-orig,pos,unl,unl,unl,unl,\"Someone glances out toward a sidewalk, then steps back into the passageway.\",He\nlsmdc3037_IRON_MAN2-16347,7094,He takes out the envelope and opens it. He,pulls out a passport and a ticket.,pulls out a few of pop tarts.,pulls it out and reads over an hour in his sandwich.,looks at her blackberry.,digs around and walks away.,gold0-reannot,pos,unl,unl,unl,unl,He takes out the envelope and opens it.,He\nlsmdc3037_IRON_MAN2-16347,7090,\"Wide - eyed, someone sits. He\",hands someone a glass of champagne.,\"gets up, stretches out his hand, and makes a sip with it.\",\"flinches, then lies back over the step.\",\"runs across the room, reading down a book.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Wide - eyed, someone sits.\",He\nlsmdc3037_IRON_MAN2-16347,7098,\"The men turn and gaze at a young woman with long dark - brown hair, who walks into the gym carrying paperwork. The woman\",hands someone a pen.,watches with a dazed look.,speaks to the camera again.,regards someone with an eyebrow.,,gold0-reannot,pos,pos,pos,pos,n/a,\"The men turn and gaze at a young woman with long dark - brown hair, who walks into the gym carrying paperwork.\",The woman\nlsmdc3037_IRON_MAN2-16347,7092,\"Someone tucks the envelope in his jacket and pays the man, who leaves. Someone\",\"glances out toward a sidewalk, then steps back into the passageway.\",turns into another page.,runs through a crowded room.,gives him a shy smile.,steps closer to it.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone tucks the envelope in his jacket and pays the man, who leaves.\",Someone\nlsmdc1043_Vantage_Point-89052,3184,Someone steps forward and raises his arms wide at his sides. Someone,staggers back and falls.,leads the way through thick glass in front of someone.,wrings his hands for support.,moves his hand toward someone's temple.,jerks his head feebly.,gold0-orig,pos,unl,unl,pos,pos,Someone steps forward and raises his arms wide at his sides.,Someone\nlsmdc1043_Vantage_Point-89052,3178,He moves away from her but stops to glance back. She,blows him a kiss.,catches up with him and moves away.,drops to the floor.,chews and gives no response.,,gold0-orig,pos,pos,pos,pos,n/a,He moves away from her but stops to glance back.,She\nlsmdc1043_Vantage_Point-89052,3185,Someone staggers back and falls. Someone,\"jumps up onto the podium and runs across it, only to be tackled by someone.\",stretches down onto the street behind someone and grabs her waist.,makes him drive through the road.,lies on his arms by his restraints.,makes his way through the teeming crowds and to join him.,gold0-orig,pos,unl,unl,unl,unl,Someone staggers back and falls.,Someone\nlsmdc1043_Vantage_Point-89052,3186,She catches sight of him and holds his gaze. His eyes,\"moved down from her face, holding the bag he brought through security for her.\",dart away with a sunny smile.,hesitate and he raises a flare up.,fill with tears as she shyly shyly kisses her cheek.,,gold0-orig,pos,unl,unl,unl,n/a,She catches sight of him and holds his gaze.,His eyes\nlsmdc1043_Vantage_Point-89052,3180,He marches through the podium as someone shakes someone's hand. Someone,goes to the lectern.,\"leans to someone, then someone, who turns to look at someone.\",sets down to drink as he climbs up onto the bench.,'s raising the arms looking over their heads.,lifts someone's gaze.,gold0-orig,pos,unl,unl,unl,pos,He marches through the podium as someone shakes someone's hand.,Someone\nlsmdc1043_Vantage_Point-89052,3177,Someone reluctantly lets go of her hand. He,moves away from her but stops to glance back.,sits on a couch in front of the high counter.,caresses the dazzling fabric of the bridal gown.,kicks the call button.,looks at someone in disbelief.,gold1-orig,pos,unl,unl,unl,pos,Someone reluctantly lets go of her hand.,He\nlsmdc1043_Vantage_Point-89052,3176,\"As she hugs him, he hands her over her bag. Someone\",reluctantly lets go of her hand.,makes her to the front cab.,watches the tv spinning around and looks at someone.,turns and walks out of the garage.,blows back a tear.,gold0-orig,pos,unl,unl,unl,unl,\"As she hugs him, he hands her over her bag.\",Someone\nlsmdc1043_Vantage_Point-89052,3187,\"His eyes moved down from her face, holding the bag he brought through security for her. She\",tosses it under the podium.,looks slowly past the black pews to the door.,\"strolls in the dark, swigging with vodka.\",drags him out and hands him some cash.,,gold0-reannot,pos,unl,unl,pos,n/a,\"His eyes moved down from her face, holding the bag he brought through security for her.\",She\nlsmdc1043_Vantage_Point-89052,3183,Someone looks up as someone finishes his introduction. Someone,steps forward and raises his arms wide at his sides.,\"runs up at someone, and runs around to the pile of large family chairs.\",checks his coat ways.,joins someone into the office and shuts the door.,regards the thug and points at someone.,gold0-reannot,pos,unl,unl,pos,pos,Someone looks up as someone finishes his introduction.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25817,7804,Someone walks down the stairs in her new dress. Someone,snaps photos as her granddaughter shows off her curled hair.,flinches from the blast as it skids to a stop.,switches to the lights.,shifts her gaze adoringly as he considers some coat.,gazes up at her.,gold0-orig,pos,unl,unl,unl,pos,Someone walks down the stairs in her new dress.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25817,7805,Someone snaps photos as her granddaughter shows off her curled hair. Someone,twirls her then pulls her close for a picture.,returns to the apartment where the drummer plays and reads on for a while.,\"reclines at dinner table, drinking up some papers.\",stares.,,gold0-orig,pos,unl,unl,pos,n/a,Someone snaps photos as her granddaughter shows off her curled hair.,Someone\nlsmdc1006_Slumdog_Millionaire-74203,10905,She looks downcast in shame. He,lifts her chin and then kisses her softly on the cheek.,sits down onto her back.,looks out towards the expanse of water next to someone.,tries to move away.,pulls her closer and kisses him.,gold0-orig,pos,unl,unl,pos,pos,She looks downcast in shame.,He\nlsmdc1006_Slumdog_Millionaire-74203,10912,He kisses her on the lips. People now,stand along the platform with people at the forefront.,vivian look at his father's pretty oddly looking face.,make their way to people's phone booth.,look confused at the weight up her body.,,gold0-orig,pos,unl,pos,pos,n/a,He kisses her on the lips.,People now\nlsmdc1006_Slumdog_Millionaire-74203,10907,A flood of images move backwards in time. The car carrying a bleeding someone,reverses to the station.,is stake through its clothes!,gets a punch pallet of red.,comes and pulls the florist's box to reveal the duplex inside.,\", sits across from someone and looks up.\",gold0-orig,pos,unl,unl,unl,unl,A flood of images move backwards in time.,The car carrying a bleeding someone\nlsmdc1006_Slumdog_Millionaire-74203,10910,\"Someone is pulled out of the car. Finally, someone\",stands smiling up at someone.,gets out behind the wheel and takes it in his hand.,takes the first step of the rope.,leads someone into the woods.,pulls himself free and watches her.,gold1-orig,pos,unl,unl,unl,pos,Someone is pulled out of the car.,\"Finally, someone\"\nlsmdc1006_Slumdog_Millionaire-74203,10911,\"Finally, someone stands smiling up at someone. He\",kisses her on the lips.,walks between them and holds up his hand.,reaches for a strike out in the air.,cups her hand and sits beside her.,,gold0-orig,pos,unl,unl,pos,n/a,\"Finally, someone stands smiling up at someone.\",He\nlsmdc1006_Slumdog_Millionaire-74203,10902,\"The platform is completely empty as he moves towards her. In the background, a group of men and woman\",start to spill onto the platform.,are sitting in the beach.,sleeps in a picnic nook.,'s supporters are given her and she comes up behind her.,,gold0-orig,pos,unl,unl,unl,n/a,The platform is completely empty as he moves towards her.,\"In the background, a group of men and woman\"\nlsmdc1006_Slumdog_Millionaire-74203,10904,\"Someone gently removes someone's head scarf, to reveal her scar. She\",looks downcast in shame.,jumps over someone's shoulder and vanishes.,\"lies on the side of the bed for no reason, and sits in sleep.\",hands over the manuscript pages.,\"turns, eyes open with horror.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone gently removes someone's head scarf, to reveal her scar.\",She\nlsmdc1006_Slumdog_Millionaire-74203,10903,\"In the background, a group of men and woman start to spill onto the platform. Someone\",\"gently removes someone's head scarf, to reveal her scar.\",\"moves alongside one of the tables, where a rapist of a badge stands on a table, hands from a squat.\",sits up and lets hard run down his back.,throw them up and flip.,,gold1-orig,pos,unl,unl,pos,n/a,\"In the background, a group of men and woman start to spill onto the platform.\",Someone\nlsmdc1006_Slumdog_Millionaire-74203,10901,He jumps down to cross the train tracks. The platform,is completely empty as he moves towards her.,rises into a light spot below and looks at the men.,shoots off his feet.,\"is now turned in prayer, playing his book in the ground.\",,gold0-reannot,pos,unl,unl,unl,n/a,He jumps down to cross the train tracks.,The platform\nanetv_w4QM4nztkkE,8320,They struggle trying to beat the other when finally the red head wrestler makes the other fall. He,\"gloats, jumping up and down and banging his hands against his chest.\",kicks it off of his stomach and throws them across the crowd.,flips backwards on the threads and does n't spin.,makes a little laugh off laugh.,the men with his back himself.,gold0-orig,pos,unl,unl,unl,unl,They struggle trying to beat the other when finally the red head wrestler makes the other fall.,He\nanetv_w4QM4nztkkE,8319,\"Once he comes in they grab a hold of a rope and begin to play tug of war with it, pulling each other. They\",struggle trying to beat the other when finally the red head wrestler makes the other fall.,\"join the group in black vehicles, let alone a the thread.\",are just diving fall from a bridge attached.,\"mean people get him on the rope, and start to run backward.\",get went back until the bridge is fastened and they do flips across the mat.,gold0-reannot,pos,unl,unl,unl,unl,\"Once he comes in they grab a hold of a rope and begin to play tug of war with it, pulling each other.\",They\nlsmdc1029_Pride_And_Prejudice_Disk_One-83604,12357,Someone is walking through the countryside. Green leaves,are starting to turn brown.,are being circled in a scratched house.,are set up next to a burning church.,fly on the sky like a small sphere.,surges around the towering urns.,gold0-orig,pos,unl,unl,unl,unl,Someone is walking through the countryside.,Green leaves\nlsmdc1029_Pride_And_Prejudice_Disk_One-83604,12358,Green leaves are starting to turn brown. She,watches the progress of geese flying through the sky overhead.,is trying hard into the tree.,makes a turn to look up from the sun.,speeds to one side of the sidewalk and floats down the street.,stops in her tracks.,gold0-reannot,pos,unl,unl,pos,pos,Green leaves are starting to turn brown.,She\nanetv_R2EZlSlDCuE,720,She is talking but keeps messing up. She,comes back and talks about painting again.,launches the bar in gear.,has other children still with her.,puts her arm around her neck and ties her hair off.,,gold1-orig,pos,unl,pos,pos,n/a,She is talking but keeps messing up.,She\nanetv_R2EZlSlDCuE,8914,\"Then, the woman put the stencil on the table and apply paint on the stencil with a brush. After, the woman\",applies paint with a roller.,remove the baking paper from the fallen pot.,pick the tube from the silver and cut it.,rinses the oil with a cloth and make a scrub product.,,gold1-orig,pos,unl,unl,unl,n/a,\"Then, the woman put the stencil on the table and apply paint on the stencil with a brush.\",\"After, the woman\"\nanetv_R2EZlSlDCuE,8913,\"A woman stands on front a table holding a brush and a large stencil. Then, the woman\",put the stencil on the table and apply paint on the stencil with a brush.,make a toppled platter and hold up the pumpkin's hair and woman put them in the oven.,put the gel in a blue towel to clean off the girl's hair and brush her hair.,put an attachment in the coat and looses it on an electrical box.,,gold0-orig,pos,unl,unl,unl,n/a,A woman stands on front a table holding a brush and a large stencil.,\"Then, the woman\"\nanetv_R2EZlSlDCuE,8915,\"After, the woman applies paint with a roller. Next, the woman finish\",to paint the table with the stencil.,done and start taking pictures.,cut the combing while standing back in place.,sanding and demonstrate volleyball and detail.,drying her hair and turn the curls around the base of red hair.,gold1-orig,pos,unl,unl,unl,unl,\"After, the woman applies paint with a roller.\",\"Next, the woman finish\"\nanetv_R2EZlSlDCuE,719,A woman is standing outside a garage. She,is talking but keeps messing up.,is holding her other heavy silk wires.,puts a bottle in her hair.,is playing in a bucket on a wooden bench.,,gold0-reannot,pos,unl,unl,unl,n/a,A woman is standing outside a garage.,She\nanetv_XqmMZs2-3ZI,5346,She goes to the kitchen and turns on the oven and begins mixing ingredients in a kitchenaid. Once mixed nicely she places the cookie in the oven and when they done she,returns to her couch with her teddy bear and munches out.,mixes a large bite of the lemon and drains the fake salad.,\"keeps eating the dough linked, sharing her little problem.\",\"continues beating the potatoes over the bowl in place, only preparing the finished portion of everyone.\",,gold1-reannot,pos,unl,unl,unl,n/a,She goes to the kitchen and turns on the oven and begins mixing ingredients in a kitchenaid.,Once mixed nicely she places the cookie in the oven and when they done she\nanetv_mzXRehGBEOg,11985,The woman rinses a toothbrush under water. The woman,applies toothpaste to the toothbrush.,rinses her hands and splashes water in her face.,puts the wet cloth down.,kisses his hand and eyes.,feels about her side.,gold0-orig,pos,unl,unl,unl,unl,The woman rinses a toothbrush under water.,The woman\nanetv_mzXRehGBEOg,11988,The woman rinses the toothbrush under water again. The woman,rinses her mouth with a glass of water.,wipe excess cleaner apart.,turns the knob on the toilet nozzle to rinse and cleaned on the sink.,swishes her hair then pulls back her hair.,talks to the camera and cleans her fur with a shoe brush.,gold0-orig,pos,unl,unl,unl,unl,The woman rinses the toothbrush under water again.,The woman\nanetv_mzXRehGBEOg,11987,The woman demonstrates brushing her teeth. The woman,rinses the toothbrush under water again.,put some cream on her feet.,answers an electric toothbrush.,continues showing how to properly brush the dogs teeth.,finishes listening to the camera.,gold0-orig,pos,unl,unl,unl,unl,The woman demonstrates brushing her teeth.,The woman\nanetv_mzXRehGBEOg,11989,The woman rinses her mouth with a glass of water. The woman,towels her mouth and shows her teeth.,paints the finger nails.,shakes her head and the photographer shows the bottle.,tapes the package shut.,grabs a hair towel then wipes it down with a towel.,gold1-orig,pos,unl,unl,unl,pos,The woman rinses her mouth with a glass of water.,The woman\nanetv_mzXRehGBEOg,11986,The woman applies toothpaste to the toothbrush. The woman,demonstrates brushing her teeth.,cleans toothpaste and extracts the toothbrush.,demonstrates ferociously full use and claws.,uses a comb to wipe the wet fur.,,gold0-orig,pos,unl,unl,unl,n/a,The woman applies toothpaste to the toothbrush.,The woman\nanetv_mzXRehGBEOg,11984,A woman smiles at the camera. The woman,rinses a toothbrush under water.,begins speaking to brown braids.,points her paddle toward a brown gentleman on the other side and answers it.,is sitting at a table.,brushes off her shoes.,gold1-reannot,pos,unl,unl,pos,pos,A woman smiles at the camera.,The woman\nanetv_xH8l5rCWrMU,10599,Woman is chopping vegetables and saute vegetables in a pan. hen,mix the vegetables with pasta.,is about at the bottom of the shop.,are shown on the grass that is filled.,is next to two roofers.,are shown and chopped up vegetables on the floor.,gold0-orig,pos,unl,unl,unl,unl,Woman is chopping vegetables and saute vegetables in a pan.,hen\nanetv_xH8l5rCWrMU,10598,Woman is standing in a kitchen talking to the camera and showing a plate of pasta and the ingedients. woman,is chopping vegetables and saute vegetables in a pan.,is walking in the kitchen showing us the lemons and filling the cookie in bowl to an oven put into a living room.,wash a dish and adds soda and downs a bottle in a cup.,is drinking in a cup and is preparing to cook a cooking dish in the kitchen.,are standing in front of the camera in front of a sink.,gold0-orig,pos,unl,unl,unl,pos,Woman is standing in a kitchen talking to the camera and showing a plate of pasta and the ingedients.,woman\nlsmdc3053_PARENTAL_GUIDANCE-25606,6211,As he gets to his feet someone smiles proudly. Someone,\"spreads his arms wide like wings, then walks around in a circle.\",slams his back against the lifeboat trunk wall.,reaches behind someone and taps his temple.,puts his arms on the young woman.,sits on the front seat of the ship and points.,gold1-orig,pos,unl,pos,pos,pos,As he gets to his feet someone smiles proudly.,Someone\nanetv_vMy5o7pvy4c,8389,He thin spins his whole body. The man,releases the hammer and lowers his arms.,leaps off the trampoline and speed on a mat.,stops holding his head in his hand.,lifts the weights over their heads.,spins his body out to a door.,gold0-orig,pos,unl,unl,unl,unl,He thin spins his whole body.,The man\nanetv_vMy5o7pvy4c,8388,A man swings his arms around over his head. He thin,spins his whole body.,slides the knife onto the man's chest with it.,grabs the rope and throws it to the center of the field.,sticks a metal ball into the hole and dips it on a wall.,jumps and throws a green disk.,gold0-orig,pos,unl,unl,unl,unl,A man swings his arms around over his head.,He thin\nanetv_X5UoLcloHIM,8550,A skateboarder wearing a black helmet skates downhill and performs some skateboard tricks. A skateboarder wearing an orange helmet,skates down the street and performs some skateboard tricks.,gets dressed as a performer wearing white headband shirt gets up.,\"is riding with his body, showing how to hit hockey on the asphalt.\",shows each location anyone control.,tosses the young skateboard to a top and stands at a pro park.,gold0-orig,pos,unl,unl,unl,pos,A skateboarder wearing a black helmet skates downhill and performs some skateboard tricks.,A skateboarder wearing an orange helmet\nanetv_X5UoLcloHIM,8548,Clips of skateboarders in different scenes. A skateboarder wearing a red helmet,is skating down hill on a public street.,follows with while others advance on rapids.,gets up and falls down straight.,is jogging ahead of a man.,falls on the skateboard and high falls.,gold0-orig,pos,unl,unl,unl,unl,Clips of skateboarders in different scenes.,A skateboarder wearing a red helmet\nanetv_X5UoLcloHIM,1146,The camera follows the border riding down the road and switches to several other people riding boards. Each person,performs several spins and tricks on the board and ends with one walking up the hill to another.,snowboards along the same areas and does many high flips and racing sides as he rides the bikes.,jumps one of them off to begin riding up the hills on the end.,walks out of water.,takes shots from driving the van and their tires kick into the snow.,gold0-orig,pos,unl,unl,unl,unl,The camera follows the border riding down the road and switches to several other people riding boards.,Each person\nanetv_X5UoLcloHIM,8549,A skateboarder wearing a red helmet is skating down hill on a public street. A skateboarder wearing a black helmet skates downhill and,performs some skateboard tricks.,talks to the man.,doing a bunch of ramps.,waves his arms in the air.,comes back to his skateboard.,gold0-orig,pos,unl,unl,unl,unl,A skateboarder wearing a red helmet is skating down hill on a public street.,A skateboarder wearing a black helmet skates downhill and\nanetv_X5UoLcloHIM,1145,An intro leads into a boy on a skateboard who takes off and rides past people down a long and windy road. The camera,follows the border riding down the road and switches to several other people riding boards.,zooms out as the other hits again and fourth pushing a lawn mower and pushing the lawn mower into the side.,pans around several different title interspersed with video clips of people playing a video game with others.,zooms in in the distance from the horses as well as jumping up and down the steep supports.,shows several shots of food riding around and moving along the dirt while smiling to the camera.,gold0-reannot,pos,unl,unl,unl,unl,An intro leads into a boy on a skateboard who takes off and rides past people down a long and windy road.,The camera\nanetv_PUGP8PSlJEA,16602,A man is rock climbing on a wall next to a rock. He,gets to the top and releases himself to fall to the bottom.,signs a long jump rope in the end.,maneuvers his way across the bars with other others watching him practice.,stands up then looks at us.,walks back and forth for a very high time.,gold0-orig,pos,unl,unl,unl,unl,A man is rock climbing on a wall next to a rock.,He\nlsmdc0041_The_Sixth_Sense-67748,2345,The banging goes on for a few seconds and then it just stops. People,look at each other and then back at the crawl space door.,'s cover rises and the both circle the entryway.,continue about being to bungee jumps.,\"are interviewed on the screen and tries to get a haircut, but is not noticing.\",,gold0-orig,pos,unl,unl,unl,n/a,The banging goes on for a few seconds and then it just stops.,People\nlsmdc0041_The_Sixth_Sense-67748,2344,Someone slams the door closed. They,crack smiles at each other as someone bangs on the door.,roll into someone's closet.,forces walk slowly away from the hall.,turn off the lamp.,,gold1-orig,pos,unl,unl,pos,n/a,Someone slams the door closed.,They\nlsmdc0041_The_Sixth_Sense-67748,2343,He stumbles into the darkness of the crawl space. Someone,slams the door closed.,reappears with a man in a red jeep.,rolls out a window with a windows vent.,tosses the knife at her.,watches in amazement as he grits his teeth and moves to him once more.,gold1-orig,pos,unl,unl,unl,unl,He stumbles into the darkness of the crawl space.,Someone\nanetv_qXNYHbnGvto,5093,The girl begins to brush the horse with a brush. The girl then,brushes the horses mane and tail with the brush along with its head and nose.,begins brushing the little dog's fur as he around the other end.,uses a brush to demonstrate the proper brush.,shows how to use the brush.,,gold0-orig,pos,unl,pos,pos,n/a,The girl begins to brush the horse with a brush.,The girl then\nanetv_qXNYHbnGvto,15109,The woman then begins brushing down the horse's mane. She,continues brushing all around the horse including it's feet and tail.,uses the horse's fur to stay in place and is thrown down the horse.,continues brushing her hair and looking for one eye.,continues cutting her hair while looking off into the distance.,grabs them all together and end by brushing.,gold0-orig,pos,unl,unl,unl,unl,The woman then begins brushing down the horse's mane.,She\nanetv_qXNYHbnGvto,15108,A woman is seen speaking to the camera while standing next to a horse. The woman then,begins brushing down the horse's mane.,ropes a calf and ties it between her legs.,begins scrubbing snow into a woman's shoes and begins scrubbing the horse.,begins riding in a horse and catching a calf at the foot.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seen speaking to the camera while standing next to a horse.,The woman then\nanetv_qXNYHbnGvto,5092,A girl stands next to a tethered horse and begins to talk to the camera. The girl,begins to brush the horse with a brush.,is then shown swimming multiple times and performing flips.,removes her shoes when she stops and shows him the mirror again.,rides up on a horse and boils her horse.,,gold0-orig,pos,unl,unl,unl,n/a,A girl stands next to a tethered horse and begins to talk to the camera.,The girl\nanetv_qXNYHbnGvto,5091,A girl demonstrates how to brush and groom a horse using several different brushes and techniques. A girl,stands next to a tethered horse and begins to talk to the camera.,buffs her hair with a brush.,turns sand the doll around while trying to keep up and looking at the camera.,\"shows how to play a violin, a person cuts a brush off and continues playing the violin.\",,gold0-orig,pos,unl,unl,unl,n/a,A girl demonstrates how to brush and groom a horse using several different brushes and techniques.,A girl\nanetv_ZTHsS5lQyvQ,9568,\"The woman put chocolate in a bain marie, add butter and mix them with a spatula. the woman\",spread butter and chocolate on bread slices grate cheese on it.,jerk the lemon to pour some cheese to drink the mixture and put it on top of top.,\"juices in the lemons and pour it in the dressing bowl, the woman pour water into a pitcher in the glass.\",adds adds chicken to the pineapple.,,gold1-orig,unl,unl,unl,unl,n/a,\"The woman put chocolate in a bain marie, add butter and mix them with a spatula.\",the woman\nanetv_ZTHsS5lQyvQ,7680,She shows a panini sandwich on the screen. We then,\"see her melting dark chocolate in a double boiler before applying it to the sandwich, and grilling it.\",see mixed bread pizza slices at an oven.,see the cookies on the glass.,see the woman add chocolate pepper and use it to neat them.,,gold0-orig,pos,unl,unl,unl,n/a,She shows a panini sandwich on the screen.,We then\nanetv_ZTHsS5lQyvQ,9569,The woman spread butter and chocolate on bread slices grate cheese on it. woman,toast the bread and slice in parts.,enters the end of the court and gets a knife.,cook the pasta and pour the ingredients into a bowl.,take to a salad and pours the make it and puts into the eggs.,slices cream mayo on the bread with the sandwich.,gold0-reannot,pos,unl,unl,unl,pos,The woman spread butter and chocolate on bread slices grate cheese on it.,woman\nanetv_OnfvTk_DECY,14815,The man then begins coming the dummy's hair and using scissors along the side. He,continues cutting the dummy's hair and using hair gel in the end to spike it up.,dips a shot and shows more sides of the eye.,moves continuously around while he continues to hit the tile and the camera stops it as he continues to brush class.,pulls the pin from his vest while still talking to his camera and eventually leaves the cop.,,gold0-orig,pos,unl,unl,unl,n/a,The man then begins coming the dummy's hair and using scissors along the side.,He\nlsmdc0049_Hannah_and_her_sisters-69647,28,She stands and faces the water and the distant skyline across the bay. Someone is alone; her hands,are in her pockets.,are slip across from the host.,are staring up at the sky directly above her.,are pressed tightly against the hummer's slot.,are flattened to her thigh.,gold0-orig,pos,unl,unl,unl,pos,She stands and faces the water and the distant skyline across the bay.,Someone is alone; her hands\nlsmdc0049_Hannah_and_her_sisters-69647,26,\"He flips through the literature as he walks, then looks straight ahead, pondering. Someone\",puts his hand to his mouth as another title appears on a black screen.,\"spins around a few times, trying to catch with his board but barely catches him off of a stranger.\",\"cleaning, he turns the corner.\",\"nods at him and limps towards the office, gripping the leather shield as his body stands.\",\"stands up and walks to the front, taking his shot.\",gold1-orig,pos,unl,unl,unl,pos,\"He flips through the literature as he walks, then looks straight ahead, pondering.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69647,27,\"A bench faces some wharf pilings; the water gently laps against them as someone walks into view, the wind blowing her hair. She\",stands and faces the water and the distant skyline across the bay.,\"steps over, turning a lift expertly.\",continues drifting alone at the helm as the captain rocks through.,\"and her pleasant drift down on the ground and away from him, standing against the distant edge of a ship, white water.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A bench faces some wharf pilings; the water gently laps against them as someone walks into view, the wind blowing her hair.\",She\nanetv_VWsyA_RJIzg,18399,A close up of rings are shown floating around an ocean followed by a scuba diver off into the distance. The swimmer,goes through a ring while popping it's side and continues moving up to the surface.,moves to a board and swims out of the water as the missiles plummet and then follow.,is seen cleaning the water with something floating or disappearing into the large water.,sits back and speaks to the camera about a group that is full swimming on the ocean.,continues to swim in the water as being turned in the water.,gold0-orig,pos,unl,unl,unl,pos,A close up of rings are shown floating around an ocean followed by a scuba diver off into the distance.,The swimmer\nanetv_06xJ8-Dg_j8,17098,\"A youth plays the drums and the cymbals with two sticks while wearing ear plugs. Then, the youth\",holds a cymbal and raise the stick to end his play.,demonstrates the though the drums.,continues playing and plays the flute.,holds the harmonica to his hand.,\"gets on the board, please idle with excitement.\",gold0-orig,pos,unl,unl,unl,unl,A youth plays the drums and the cymbals with two sticks while wearing ear plugs.,\"Then, the youth\"\nanetv_06xJ8-Dg_j8,5270,A man is shown sitting at drums. He,is wearing a pair of earphones.,lifts a weight over his head.,uses a ruler to push more machine.,is playing the drums upside down.,begins to play a violin with his left hand.,gold0-reannot,pos,unl,unl,pos,pos,A man is shown sitting at drums.,He\nanetv_06xJ8-Dg_j8,5271,He is wearing a pair of earphones. He,starts drumming the drums.,is explaining how to play the violin.,is playing an accordian in the living room.,is in a machine wearing a suit.,takes several and takes the cigarette out of his inhaler.,gold0-reannot,pos,unl,unl,unl,unl,He is wearing a pair of earphones.,He\nlsmdc3078_THE_WATCH-36218,10543,\"He gives a slow, creepy wave. Someone\",\"politely returns the gesture, then heads inside.\",pulls the saloon off.,steps closer into the club.,makes a beeline for someone.,grins as someone speeds out.,gold0-orig,pos,unl,unl,unl,unl,\"He gives a slow, creepy wave.\",Someone\nlsmdc3078_THE_WATCH-36218,10541,\"Turning away, he pauses. Across the street, someone\",\"stands on his lamp lit porch, watching him with a cocktail.\",takes in apprehension at her 'weakened ladies.,spies a concrete passage in its passenger compartment.,hurries towards the melee.,drops a large diamond necklace on a bench between arms with an antique pattern drawn on her blouse.,gold0-orig,pos,unl,unl,pos,pos,\"Turning away, he pauses.\",\"Across the street, someone\"\nlsmdc3078_THE_WATCH-36218,10544,\"Someone politely returns the gesture, then heads inside. Someone\",\"swirls the ice in his glass, smirking as he watches his neighbor.\",walks off to the plate and takes a sip.,wife raises her gun and inspecting someone's partially holstered shield.,makes a turn to sack him if someone has should pick him.,\"waves at the crowd and smiles, smiles - - and the girl looks at someone.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone politely returns the gesture, then heads inside.\",Someone\nlsmdc3078_THE_WATCH-36218,10540,\"Someone pulls out a small, slimy tentacle. Pinching one end in his fingertips, he\",opens a trash bin and chucks it in.,paddles himself on.,\"james loved fish, tries out.\",stares at the egg.,places his hands on someone's head.,gold0-orig,pos,unl,unl,unl,pos,\"Someone pulls out a small, slimy tentacle.\",\"Pinching one end in his fingertips, he\"\nlsmdc3078_THE_WATCH-36218,10545,\"In his basement, someone snoops on his daughter's Facebook page. A video still\",shows her kissing a boy.,shows a photo of someone at the tv show.,shows someone holding the top board.,shows the fifth lake.,\"reads, instructional, tran.\",gold0-orig,pos,unl,unl,unl,unl,\"In his basement, someone snoops on his daughter's Facebook page.\",A video still\nlsmdc3078_THE_WATCH-36218,10542,\"Across the street, someone stands on his lamp lit porch, watching him with a cocktail. He\",\"gives a slow, creepy wave.\",\", unbuckles his mask as someone passes someone, she smiles and touches his forehead.\",wears his shoelace as two school members walk inside.,folds his arms in a line as he climbs from the bar.,removes his headphones and someone scans the room.,gold0-orig,pos,unl,unl,pos,pos,\"Across the street, someone stands on his lamp lit porch, watching him with a cocktail.\",He\nlsmdc3078_THE_WATCH-36218,10546,\"It shows Chelsea and a tall, dark - haired boy making out in a closet. As they part, she\",faces her friend shyly while the boy makes a cocky face.,finds him staring aback.,finds no one in her left.,grabs someone's hand.,,gold0-orig,pos,unl,unl,pos,n/a,\"It shows Chelsea and a tall, dark - haired boy making out in a closet.\",\"As they part, she\"\nlsmdc3078_THE_WATCH-36218,10538,\"He cuts his headlights, gets out, and lumbers wearily to the front. Pausing, he\",bends over to examine his broken grille.,takes off his headset and steers ski out of someone's garden.,trudges into the driver's seat and slams his head against the wheel.,finds someone in his track suit.,\"peers cautiously towards the gold, spots pocket.\",gold0-reannot,pos,unl,unl,unl,unl,\"He cuts his headlights, gets out, and lumbers wearily to the front.\",\"Pausing, he\"\nanetv__uOfIm1tFcI,510,A boy is seen tumbling back and forward on grass lawns in different locations. The boy,is then seen doing similar gymnastic moves on a mattress outdoors.,is shown in an office and continues riding with a skateboard and swinging on various maneuvers.,follows around on a corner afterwards standing in a clearing and gestures behind the judge.,stands backwards facing the pinata.,swings down and between the bars continuously.,gold0-orig,pos,unl,unl,pos,pos,A boy is seen tumbling back and forward on grass lawns in different locations.,The boy\nanetv__uOfIm1tFcI,509,\"A boy is seen tumbling backwards and forwards in different locations and on different surfaces including grass, bounce tarps and mattresses. A boy\",is seen tumbling back and forward on grass lawns in different locations.,in a black shirt has fun again at the same event and flips the video in and then the man is walking across the field,is shown a close up of the man talking and pausing to talk about the sport.,holds up the child in front of him and waves them on the sandy ground.,,gold0-reannot,pos,unl,pos,pos,n/a,\"A boy is seen tumbling backwards and forwards in different locations and on different surfaces including grass, bounce tarps and mattresses.\",A boy\nanetv_o0O-CwwSaGw,1261,She scrubs the dog with shampoo and runs again runs the water over the dog. She,holds the dog with a towel and then blow dries the dog in her lap while combing him.,\"ends with the leaf blowing, wiping her face by the sink.\",puts her back on the tree.,dries it on a powder towel.,,gold0-orig,pos,unl,unl,pos,n/a,She scrubs the dog with shampoo and runs again runs the water over the dog.,She\nanetv_o0O-CwwSaGw,1262,She holds the dog with a towel and then blow dries the dog in her lap while combing him. The dog,is shown again all dried off and shakes himself while looking at the camera and the girl speaks more.,has reached the hole once more and its is shown as well by a cat coming out of the shop.,continues to blow while the female sits in the tub lathering the dog's fur while the dog laughs.,continues to blow the woman with her arm while the other combs by in the yard.,,gold0-orig,pos,unl,unl,unl,n/a,She holds the dog with a towel and then blow dries the dog in her lap while combing him.,The dog\nanetv_o0O-CwwSaGw,1260,A girl with long hair is shown speaking to the camera and leads into her spraying water all over a dog in the tub. She,scrubs the dog with shampoo and runs again runs the water over the dog.,pulls a sponge out of the tube and begins to clean it with a rag.,baked and is shown sitting down and laughing to the camera.,sprays it off a dog and applies more toothpaste on how to hold it in overboard.,,gold0-reannot,pos,unl,unl,unl,n/a,A girl with long hair is shown speaking to the camera and leads into her spraying water all over a dog in the tub.,She\nanetv_m3SlyuAh1Wk,9159,A close up of leaves are shown followed by a woman raking them and speaking to the camera. The woman,continues raking while speaking to the camera back and fourth.,continues to play with the cat while member plays the groom and ends by talking to the camera and pointing to the dog.,puts a sheet behind her and put her hand on the table.,is then seen wiping catcher's hookah with her hand followed by pouring it into the bowl into a cup.,continues hitting the pucks on the board while speaking to the camera and holding it to her.,gold0-orig,pos,unl,unl,unl,unl,A close up of leaves are shown followed by a woman raking them and speaking to the camera.,The woman\nanetv_m3SlyuAh1Wk,9160,The woman continues raking while speaking to the camera back and fourth. She,shows her piles as well as the clean lawn while still speaking to the camera.,continues pushing the horses all around the place.,continues playing while continuing to speak while others watch on the side.,washes her hands as the rest continuing to move up and down.,looks back down and is shown moving back and fourth to the camera.,gold0-orig,pos,unl,unl,pos,pos,The woman continues raking while speaking to the camera back and fourth.,She\nanetv_CzXF0CQn2Fk,10598,People are in a small room dancing doing a choreography. the man,stops dancing and keep doing the choreography.,spin high turning around and disappear.,is throwing up and down in the audience.,in white shows the several moves before playing on the lawn.,in the gym starts to do a routine on the beam.,gold0-reannot,pos,unl,unl,unl,pos,People are in a small room dancing doing a choreography.,the man\nanetv_CzXF0CQn2Fk,10599,The man stops dancing and keep doing the choreography. man,wearing red shorts and grey shirt leading the choreography in front of the people in the room.,is in a white chair in a room doing this by doing so.,\"is in a backstroke, showing her performance and flexing her neck.\",starts on the lower line with her arm.,gives a bunch of little help and a few of them are in the bathroom.,gold0-reannot,pos,unl,unl,unl,unl,The man stops dancing and keep doing the choreography.,man\nlsmdc0041_The_Sixth_Sense-67675,15420,A small piece of cake with a candle in it sits untouched. Someone,quietly takes a sip from her coffee.,places her hand on the ballerina's shoulders away from the dying lady.,is left in his hand.,clink strawberries and off it.,turns to a nearby stove and drinks a letter.,gold0-reannot,pos,unl,unl,unl,unl,A small piece of cake with a candle in it sits untouched.,Someone\nanetv_Z1N185E4gsk,8339,The cameraman walks to a young child on the sidewalk. The child,shovels the snow from the sidewalk.,slides down a slide.,starts swinging and hit the pinata in the same way.,rides a piece of hopscotch.,passes a boy like little a child.,gold1-orig,pos,unl,unl,unl,unl,The cameraman walks to a young child on the sidewalk.,The child\nanetv_Z1N185E4gsk,3715,A person is standing in the heavy falling snow. They,are trying to clear the snow off the sidewalk.,are sitting on a boat as a person walks by in front of him.,see around the head spin cars and then.,are tubing a snow wall.,sit on a set to catch the orange cones.,gold0-orig,pos,unl,unl,unl,unl,A person is standing in the heavy falling snow.,They\nanetv_Z1N185E4gsk,3716,They are trying to clear the snow off the sidewalk. The child just,\"stands with the shovel, not sure what to do.\",gets out of their car.,stands in the sand watching them.,looks at them lightly.,walked into the apartment.,gold0-orig,pos,unl,unl,pos,pos,They are trying to clear the snow off the sidewalk.,The child just\nanetv_Z1N185E4gsk,8338,The snow is falling outside on the street. The cameraman,walks to a young child on the sidewalk.,is moving in between the weather supplies.,turns at the police center on the screen.,enters the fight and shuts the door.,is then seen riding down the hill.,gold1-orig,pos,unl,unl,unl,pos,The snow is falling outside on the street.,The cameraman\nanetv_g_qHPA0RkAY,2044,Then she begins gutting the seeds from the pumpkin. She,draws a face on the outside before using a knife to begin carving out the face of her pumpkin.,puts her piece out in front of the cat and returns it.,begins to hit the drum with blue piercing on drums and studies it with her indoors.,shows them back to us soon.,,gold0-orig,pos,unl,unl,unl,n/a,Then she begins gutting the seeds from the pumpkin.,She\nanetv_g_qHPA0RkAY,2045,She draws a face on the outside before using a knife to begin carving out the face of her pumpkin. Finally she,\"places the top back in place, and puts a candle inside.\",vacuums the polished part of the cake and lays it down.,\"adds some more powder into the wound, grabs the ax again, and cleans it off with the knife again.\",takes more pumpkin more at her eye and a large freshly trimmed one lies buried at the table.,grabs the knife and uses an oversized hair to add a larger pumpkin in the end and then moves off.,gold0-orig,pos,unl,unl,unl,unl,She draws a face on the outside before using a knife to begin carving out the face of her pumpkin.,Finally she\nanetv_g_qHPA0RkAY,2043,A line of knives and cutting utensils are on a table. A woman,is cutting the top off of a pumpkin and raking the seeds into a bowl.,massages a knife cut hand with a black knife.,uses a polish to add a claw to the nails.,uses a knife to sharpen someone's knife.,,gold0-orig,pos,unl,unl,unl,n/a,A line of knives and cutting utensils are on a table.,A woman\nanetv_7GSCDxBSFsw,2114,\"A person holds a javelin and prepares to launch it. Then, the man\",runs and launch the javelin.,talks to his old friend after the competition.,jumps on the rope and then climb past.,skateboard on the road and gets a skateboard.,,gold0-orig,pos,unl,unl,unl,n/a,A person holds a javelin and prepares to launch it.,\"Then, the man\"\nanetv_ZPLbrQ391jg,6214,The camera continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides. The people then,ride through the finish line an throw their arms up into the air.,play as well as ends with another one walking away.,continue playing along the track with one another and runs out of a line into the water.,get off the bikes and continue to jump around the beam.,continue playing with the camera and cheering with one another while holding their hand up.,gold1-orig,pos,unl,unl,unl,unl,The camera continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides.,The people then\nanetv_ZPLbrQ391jg,6213,An intro leads into several shots of a bike track as well as people moving along the track to race. The camera,continues to capture the people riding around the track in slow motion with one person falling and several watching on the sides.,captures the movements before walking away.,continues spinning various around in many areas and ends with the man waving his arms and smiling as the man continues to speak in other,ends with several people playing up and bumping into one another and speaking to one another.,pans to the man as the man followed his performance followed by more people riding in.,gold0-orig,pos,unl,unl,pos,pos,An intro leads into several shots of a bike track as well as people moving along the track to race.,The camera\nlsmdc1007_Spider-Man1-74595,3690,The exoskeleton is powered up. Someone,is upright inside the 10 - feet tall rocket as it lifts off.,keeps getting back on top of a ramp.,takes out his wand.,is in the drawing room playing the shot.,,gold1-orig,pos,pos,pos,pos,n/a,The exoskeleton is powered up.,Someone\nanetv_C0MIMsY6okw,8512,The individual mixes some water into the mug. The individual,squeezes lemons into the mug.,mixes the drink in the glass.,retrieves the instrument and holds the camera.,carves a lemon over some leaves.,begins making oil with a spoon.,gold0-orig,pos,unl,unl,unl,unl,The individual mixes some water into the mug.,The individual\nanetv_C0MIMsY6okw,8508,The individual uses a knife to cut the lemons. The individual,squeezes the lemons' juice into a mug using a tool.,carves funny blue lines in the pumpkin.,puts two glasses in the device.,mixes the product together in a cup.,peels the potatoes again.,gold0-orig,pos,unl,unl,unl,unl,The individual uses a knife to cut the lemons.,The individual\nanetv_C0MIMsY6okw,8509,The individual squeezes the lemons' juice into a mug using a tool. The individual,puts some of the ingredients in small bowls into the mug.,mixes the liquids on the table.,opens the spoon and demonstrates how to use a glass.,places the container on the blue container as she walks to.,,gold0-orig,pos,unl,unl,unl,n/a,The individual squeezes the lemons' juice into a mug using a tool.,The individual\nanetv_C0MIMsY6okw,9429,The salt is poured into the cup from the small bowls. Water is added to the cup and more limes,are squeezed in by hand.,are shown and chopped in a boat.,are blended together and fell.,are crushing to the chemical.,are carried into another larger bucket.,gold0-orig,pos,unl,pos,pos,pos,The salt is poured into the cup from the small bowls.,Water is added to the cup and more limes\nanetv_C0MIMsY6okw,8510,The individual puts some of the ingredients in small bowls into the mug. The individual,rearranges the items on the counter top.,uses the sniff along the bottom of the mix.,adds more ingredients to the purchase and loops its tongue.,adds more ingredients to a pot in the pot.,adds more measuring and sugar to the liquors.,gold0-orig,pos,unl,unl,unl,pos,The individual puts some of the ingredients in small bowls into the mug.,The individual\nanetv_C0MIMsY6okw,8514,The individual mixes the contents of the mug. Eight containers of liquid,are shown on the counter top.,are added to the large pot that have placed the contents.,are squeezed out with their hands.,are poured out of the cup.,are shown in thin paper cup.,gold1-orig,pos,unl,unl,unl,unl,The individual mixes the contents of the mug.,Eight containers of liquid\nanetv_C0MIMsY6okw,8507,One of the individuals extends a hand and manipulates the ingredients. The individual,uses a knife to cut the lemons.,gives up a five.,puts a spare in the oven as people continue playing.,puts the wheel forward.,continues dipping the puck back in the machine.,gold1-orig,pos,unl,unl,unl,unl,One of the individuals extends a hand and manipulates the ingredients.,The individual\nanetv_C0MIMsY6okw,8513,The individual squeezes lemons into the mug. The individual,mixes the contents of the mug.,plays a medical instrument.,drops the lemon into a ice hoop.,mixes the container into a container.,,gold0-orig,pos,unl,unl,unl,n/a,The individual squeezes lemons into the mug.,The individual\nanetv_C0MIMsY6okw,8506,\"A counter top with lemons and ingredients in small bowls is shown, with several individuals standing by the counter. One of the individuals\",extends a hand and manipulates the ingredients.,is shown adding ingredients to the dressing parmesan.,puts the mix in the black dough bowl.,walks and deals out a bunch of black plastic cups.,is holding a sharpener and in large mixing bowl.,gold0-orig,pos,unl,unl,unl,unl,\"A counter top with lemons and ingredients in small bowls is shown, with several individuals standing by the counter.\",One of the individuals\nanetv_C0MIMsY6okw,9427,The small bowls of salt are arranged and limes are sliced in halves. The limes,are juiced into a cup using a hand held press.,are used as cooked from cream and shredded pepper portion into the cake.,\"are added to the pickles, skillet throughout the bowl.\",is stirred and made with a spoon squeezed together in a jar.,are sliced on a slice and sliced the bowl.,gold0-orig,pos,unl,unl,unl,unl,The small bowls of salt are arranged and limes are sliced in halves.,The limes\nanetv_C0MIMsY6okw,8511,The individual rearranges the items on the counter top. The individual,mixes some water into the mug.,moves across the surface.,sets aside a panel of lemonade and turns.,parts the content bowl.,adds salt to the bottle.,gold1-reannot,pos,unl,unl,unl,pos,The individual rearranges the items on the counter top.,The individual\nanetv_C0MIMsY6okw,9428,The limes are juiced into a cup using a hand held press. The salt,is poured into the cup from the small bowls.,is being placed on the steering wheel.,has tipped out of their glass.,juices the mixture from another cup.,is an ice cream.,gold1-reannot,pos,unl,unl,unl,unl,The limes are juiced into a cup using a hand held press.,The salt\nlsmdc1004_Juno-6730,2373,\"In the front garden, she stops to pick a crocus and with a solemn expression traces a circle across her tummy with its petal. Her mustachio dad, his bald head gleaning in the bright kitchen light,\",is busy fixing something at the kitchen table as she comes in.,sits in the bow position.,puts his wand to the side of his lap.,stands against the same bundle of st.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the front garden, she stops to pick a crocus and with a solemn expression traces a circle across her tummy with its petal.\",\"Her mustachio dad, his bald head gleaning in the bright kitchen light,\"\nlsmdc1004_Juno-6730,2372,\"Someone parks the Previa in the street outside the family's wooden slatted house, where the porch light illuminates a straw heart hanging on the door knocker. She\",gets out of the vehicle looking emotionally and physically exhausted.,\"puts her new bedroom door and looks down at the dorm floor, her chest dripping.\",letters an old sign reads tubs as someone wears civilian clothes and a weather badge.,pushes the knife away.,wags her finger at her child.,gold1-orig,pos,unl,unl,unl,unl,\"Someone parks the Previa in the street outside the family's wooden slatted house, where the porch light illuminates a straw heart hanging on the door knocker.\",She\nlsmdc1004_Juno-6730,2371,\"Someone, opening the front door, catches sight of someone driving off. At his feet, he\",finds the note she left.,pauses from the cash register.,climbs off a horse then escorts her down to the bed.,passes over even more cups.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone, opening the front door, catches sight of someone driving off.\",\"At his feet, he\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61718,9692,\"He bears someone on his back, and is followed by two more. The eagles\",bravely fly amid the raining ash and molten rocks.,overseer some intervention soldiers including their other american friends.,magician lift someone round and quietly.,shows black writing on the snitch of a cavern.,shows well more than recalls drawing.,gold0-orig,pos,unl,unl,unl,unl,\"He bears someone on his back, and is followed by two more.\",The eagles\nanetv_hRIXXCe0Hi0,39,The men play rock paper scissors. A lady in the crowd,jumps up and down.,shakes their hands off.,claps with a paper trophy.,grabs him and pulls her to the banquette.,pulls someone back to the hopscotch arena.,gold1-orig,pos,unl,unl,unl,unl,The men play rock paper scissors.,A lady in the crowd\nanetv_hRIXXCe0Hi0,42,We see a lady in front a person in costume. The man in red,raises his hands in triumph.,stands on the ground and hug.,turns around and takes a baby brush on the snow.,runs through a parking lot to the street.,continues to speak to the camera.,gold0-orig,pos,unl,unl,unl,pos,We see a lady in front a person in costume.,The man in red\nanetv_hRIXXCe0Hi0,43,The man in red raises his hands in triumph. Ladies,bring a big check to the man in red.,\"hug each other, fighting in the heated stances.\",dismount before the screen before him.,cheer him in the red match for a date.,hit him on the head for the second time.,gold0-orig,unl,unl,unl,unl,unl,The man in red raises his hands in triumph.,Ladies\nanetv_hRIXXCe0Hi0,37,We see a man talking to a camera. We,see shots of men and a crowd of people.,see people standing around with leaves.,are scenes of people playing his harmonica in a studio.,see the man walking next to them.,see a man in a hoodie talking to the camera.,gold1-orig,pos,pos,pos,pos,pos,We see a man talking to a camera.,We\nanetv_JSYv9uYZP2o,15583,\"In the second half, the teams continues playing and scoring. The team wearing purple uniform\",win the competition and receives a trophies.,walks through the interview as the team of team play.,\"is dressed, winning the game.\",enter the workroom and watch the score.,hits the wave in the distance.,gold0-orig,pos,unl,unl,unl,unl,\"In the second half, the teams continues playing and scoring.\",The team wearing purple uniform\nanetv_JSYv9uYZP2o,15582,\"Two teams play hurling in the stadium, and players from the two teams scores, and they celebrate. In the second half, the teams\",continues playing and scoring.,costumed the batter for the goalie multiple times.,spot the ball to protect their view while speaking.,walk together during the video game again.,compete next to each other.,gold1-orig,pos,unl,unl,unl,pos,\"Two teams play hurling in the stadium, and players from the two teams scores, and they celebrate.\",\"In the second half, the teams\"\nanetv_JSYv9uYZP2o,16417,Men are celebrating and an old man gives a trophy to a young boy. man wearing a red tie,is giving a trophy to a boy that is being interviewed.,is on the screen with red hair and shirt and shown walking across a green field.,make him wear a red box.,stands in front of the man as children crowd in the background of the gym.,,gold0-orig,pos,unl,unl,pos,n/a,Men are celebrating and an old man gives a trophy to a young boy.,man wearing a red tie\nanetv_JSYv9uYZP2o,16416,People on stands is siting watching the game. men are celebrating and an old man,gives a trophy to a young boy.,serves them and gestures.,is hitting the bowling ball.,is watching her with the sticks.,is at the bar.,gold1-orig,pos,unl,unl,unl,unl,People on stands is siting watching the game.,men are celebrating and an old man\nanetv_JSYv9uYZP2o,16415,Men are running in a large green fiel playing lacrosse. people on stands,is siting watching the game.,are chasing around a field.,are practicing in the coach.,are getting ready to jump and go.,are watching the race.,gold0-reannot,pos,unl,unl,unl,unl,Men are running in a large green fiel playing lacrosse.,people on stands\nanetv_jed5hUKCCk0,18954,The family adds ornament to the tree. We,see the ornaments on the tree up close as kids add new ornaments.,see them from the tree and begin stirring in a circle.,then see a vacuum peeling out of the tree.,pull them in ways and turn to the pumpkins.,show the man how to use the shade.,gold0-orig,pos,unl,unl,unl,unl,The family adds ornament to the tree.,We\nanetv_jed5hUKCCk0,18952,A man cuts a Christmas tree in a living room. A family of five people,decorate a christmas tree.,sitting together are standing in a pile as the other cuts a final cake on a plate.,sit together on top of a christmas tree.,decorate the christmas tree with decorations anxiously while the children exhibit the fence.,\"are on a couch smoking, smoking, etc.\",gold0-orig,pos,unl,unl,unl,pos,A man cuts a Christmas tree in a living room.,A family of five people\nanetv_jed5hUKCCk0,18953,We see them adding the lights to the tree and stringing garland. The family,adds ornament to the tree.,leaves a pile of flowers and spread mulch in the tent.,ends heads decorating the christmas tree.,stands on a tree laying on a tree.,sits on bed directly at the top of the tree.,gold0-orig,pos,unl,unl,unl,unl,We see them adding the lights to the tree and stringing garland.,The family\nanetv_jed5hUKCCk0,13442,Two teen girls put the lights and garland on the tree as the boy and an African American girl watch and help. The young girl and boy,play hide and seek.,play on curling table.,try the tightens then run around to the separate lovebirds.,begin the match together.,\"return to their pretty cerulean star, opposite the kitty as they cityscape.\",gold0-orig,pos,unl,unl,unl,unl,Two teen girls put the lights and garland on the tree as the boy and an African American girl watch and help.,The young girl and boy\nanetv_jed5hUKCCk0,18956,We see the kids taking photo's in front of the stairs. the kids then,take photo's in front of the christmas tree.,put all their guns around the table where the child was arrested.,watch the boat go from one market to the next.,slide down and read raising their captors to the camera.,get up to her where she's playing.,gold0-orig,pos,unl,unl,unl,pos,We see the kids taking photo's in front of the stairs.,the kids then\nanetv_jed5hUKCCk0,13441,A teen girl and a young African american boy enter the room and a lady ties an orange strip on the boys head. Two teen girls,put the lights and garland on the tree as the boy and an african american girl watch and help.,sit in a barber shop time holding eye contact.,lift the smoke from the lips and dance around using a red stick.,\"pass and jump on top of the adults, then one of the girls makes the swimming pool.\",see the players who are standing on the field and roof swings and pushes a nun to the ground.,gold0-orig,pos,unl,unl,unl,unl,A teen girl and a young African american boy enter the room and a lady ties an orange strip on the boys head.,Two teen girls\nanetv_jed5hUKCCk0,18955,We see the ornaments on the tree up close as kids add new ornaments. We,see the kids taking photo's in front of the stairs.,see an opening ending screen.,see the adult title on the screen.,see people ending their walk on the beach.,see the ending title screen.,gold0-reannot,pos,unl,unl,pos,pos,We see the ornaments on the tree up close as kids add new ornaments.,We\nanetv_jed5hUKCCk0,13443,The young girl and boy play hide and seek. The teens and the kids,add ornaments to the tree.,get to their feet.,gather all the canoes goal.,swing to each other.,walk around in circles with the girl - ball.,gold1-reannot,pos,unl,unl,unl,unl,The young girl and boy play hide and seek.,The teens and the kids\nanetv_jed5hUKCCk0,13440,A man cuts a Christmas tree free of a net in a living room as a lady watches and leaves and a teen girl enters to help. A teen girl and a young African american boy enter the room and a lady,ties an orange strip on the boys head.,pass a square boarder with logs and leaves.,walks across the hill holding a ballerina and dies after.,walks out and bends slightly to the left.,sits down for some time.,gold1-reannot,pos,unl,unl,unl,unl,A man cuts a Christmas tree free of a net in a living room as a lady watches and leaves and a teen girl enters to help.,A teen girl and a young African american boy enter the room and a lady\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73207,13861,Someone frowns and obediently toddles off. He,fills a plastic container from a water cooler.,\"wakes up, grits his teeth and washes his hands in the air.\",\"strides past the gray, haired mans look.\",finds his cellphone and drinks.,,gold0-orig,pos,unl,pos,pos,n/a,Someone frowns and obediently toddles off.,He\nanetv_ksPQdczmNKs,19095,A girl is seen crossing her arms and hula hooping over and over again. She,continuously hula hoops while moving her legs all around and doing various jumps and tricks.,turns around the room and demonstrates how to properly weigh her teeth.,performs more backflips as a girl assist them to perform music.,slips into the pool as the person comes from behind.,continues up the spins as well as women frisbee and moving in different directions.,gold0-orig,pos,unl,unl,unl,unl,A girl is seen crossing her arms and hula hooping over and over again.,She\nanetv__DiTdY1Mtj4,1856,The people continue playing back and fourth on the mat while other people playing around them and walk into frame. A man and woman,are seen speaking to one another and is again shown pushing the pucks.,\"are seen in the background holding a hose, and leads into them standing next to the band while one plays in the background.\",clap loudly while one girl sits and speaks to many people who watch followed them.,are shown speaking to the camera and leads into more shots of the man shoveling the grass.,,gold1-reannot,pos,unl,unl,unl,n/a,The people continue playing back and fourth on the mat while other people playing around them and walk into frame.,A man and woman\nanetv_TLQFjTXZ58E,16446,A man is standing outside in his front lawn with his mower. He,talks about different lengths of grass for a while and then bends down to his mower.,uses the rug to clean dry snow off of the fence.,puts a nut in the trashcan.,is using a training lawn mower and using the lawn mower to mow his lawn.,,gold0-orig,pos,unl,unl,pos,n/a,A man is standing outside in his front lawn with his mower.,He\nanetv_TLQFjTXZ58E,16448,He uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more. He,starts mowing his lawn finally going up and down the lawn.,\"climbs out of the engine, then walks away as she comes home and takes play.\",goes down and goes down the slide.,continues to rake the lawn in a yard while the baby watches.,continues looking around the area and shows off a pretty hat.,gold0-orig,pos,unl,unl,unl,pos,He uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more.,He\nanetv_TLQFjTXZ58E,16447,He talks about different lengths of grass for a while and then bends down to his mower. He,uses a ruler to show more detailed and then moves the mower to the sidewalk to talk some more.,helps the child on the lawn without his mower.,puts the helmet and continues cleaning his lawn and walking away off the porch table.,continues to use numerous shears to cut up the wood.,,gold0-orig,pos,unl,unl,unl,n/a,He talks about different lengths of grass for a while and then bends down to his mower.,He\nanetv_HsklqPvsMEQ,2973,A person is seen aiming a paintball gun off into the distance in a large field. Many people,watch on the side as the man aims.,are then seen speaking to the camera and interviews one another while walking onto the field.,are seen attempting to hit the ball back and fourth.,are seen looking around a field while moving around.,are seen standing on the field while others walk around in the sidelines.,gold1-orig,pos,unl,unl,pos,pos,A person is seen aiming a paintball gun off into the distance in a large field.,Many people\nanetv_HsklqPvsMEQ,2974,Many people watch on the side as the man aims. Suddenly another person,comes into frame and plays with the man.,is seen gliding through ice covering the area of wreckage.,is thrown into charging steels.,comes in and does several more flip down the wash.,is hitting and rolling across the large field of road.,gold0-orig,pos,unl,unl,unl,unl,Many people watch on the side as the man aims.,Suddenly another person\nanetv_38qpTblXDTw,10773,A woman sits on a riding lawnmower in the distance. The woman,drives the lawnmower towards the camera.,changes part of the building.,shovels snow all around.,walks back and forth on the grass.,sits down on the mower.,gold0-orig,pos,unl,unl,unl,pos,A woman sits on a riding lawnmower in the distance.,The woman\nanetv_38qpTblXDTw,10774,The woman drives the lawnmower towards the camera. The woman,begins to turn the mower at a fence corner.,laughs and ties the mower.,walk around then leaves the yard.,jumps over the trees in front of the backyard and gets to the top of the tree.,places the material to change place on the counter.,gold0-reannot,pos,unl,unl,unl,unl,The woman drives the lawnmower towards the camera.,The woman\nanetv_xT7eQmyr1-Y,10728,The man walks the blower around the yard and blows leaves to the side. The man,finishes and pushes the leaf blower beside the fence with the other machinery then walks away.,hits the boy and rakes it all around the yard.,plays the instrument continuously blowing leaves as the camera pans around.,continues skating around his yard with another leaf.,,gold0-orig,pos,unl,unl,unl,n/a,The man walks the blower around the yard and blows leaves to the side.,The man\nanetv_xT7eQmyr1-Y,10727,A man walks through his yard and retrieves a push leaf blower. The man,walks the blower around the yard and blows leaves to the side.,sits up and begins raking the last bush while there is a crowd walking along a small fence with leaf blower.,succeeds in mowing the lawn around.,turns on the stair and holds near something.,continues petting the blower and blows leaves out of there yard.,gold0-orig,pos,unl,unl,unl,unl,A man walks through his yard and retrieves a push leaf blower.,The man\nanetv_6x3qs7jQQko,2222,A woman is styling the hair of a mannequin. She,rolls the hair into curlers on top of the head of the mannequin.,trims a black eyebrow.,is drying the dry teen lady on the beach.,\"looks down with no features, covering her hair.\",lays her head on the desk.,gold0-orig,pos,unl,unl,unl,unl,A woman is styling the hair of a mannequin.,She\nanetv_6x3qs7jQQko,2223,She rolls the hair into curlers on top of the head of the mannequin. She,takes the curlers out of the hair and styles it.,shrugs then beams down and leaves.,applies more makeup to the match beside her.,\"holds the baby up, peering into her eyes.\",uses the blow dryer to blow the hair as she looks evenly out towards the window.,gold0-reannot,pos,unl,unl,unl,pos,She rolls the hair into curlers on top of the head of the mannequin.,She\nanetv_g0RK-2ydod0,3711,A chef is seen standing before a table with various objects laid out and pulling a piece of food out of pot. He,shows the object to the camera and begins peeling it out into a bowl.,is then seen strumming a spear and then extends it to chocolate and face paper and places it in place.,speaks to the camera while holding up a glass while others going in behind him spreading lather on his arm and occasionally helping it.,puts some ingredients in the pan and the camera pans around in front of the house.,continues cutting back and fourth on the pan while looking off into the distance.,gold1-orig,pos,unl,unl,pos,pos,A chef is seen standing before a table with various objects laid out and pulling a piece of food out of pot.,He\nanetv_g0RK-2ydod0,3712,He shows the object to the camera and begins peeling it out into a bowl. The person then,cuts up the food and continues peeling more into a pot.,sets down the small spoon and begins mixing the sandwich up and presenting it to the camera.,puts dough onto a plate with ingredients and cheese on it.,begins demonstrating while he continues shaving the roof.,demonstrates to use the dripping bucket to clean the potato with the brush.,gold0-orig,pos,unl,unl,unl,pos,He shows the object to the camera and begins peeling it out into a bowl.,The person then\nanetv_tnt6Wpv_kHc,16065,More close ups are shown of the machine as well as the specs it comes along with. Then man,continuously rides on the machine while the camera captures him from several angles.,talks to the camera and lays one down on his lap and jumps off the chair.,shows up several clear shots of the man speaking and while looking back to the camera.,uses the tool to rub down the top of the area.,continues to move around and moves a tool back and fourth against the object.,gold0-orig,pos,unl,unl,pos,pos,More close ups are shown of the machine as well as the specs it comes along with.,Then man\nanetv_tnt6Wpv_kHc,16064,Various shots of an exercise equipment are shown followed by a man on top using the machine. More close ups,are shown of the machine as well as the specs it comes along with.,are shown of the man rowing the machine as well as himself strapping the man's hands.,are shown of the man riding behind a seat.,are shown of the equipment and moving to different locations in various locations.,are shown of various people playing trumpet and others walking around and looking off into the distance.,gold1-orig,pos,unl,unl,unl,unl,Various shots of an exercise equipment are shown followed by a man on top using the machine.,More close ups\nanetv_tnt6Wpv_kHc,8900,A man is in a studio riding an elliptical. other people,gather around the man to apply makeup and take his picture.,are lifting the barbells as models.,are shown running out on a piece of machinery.,are demonstrating how to dance while drinking or playing.,are partying on the course as he does it.,gold1-orig,pos,unl,unl,unl,unl,A man is in a studio riding an elliptical.,other people\nanetv_4zFiORtQrlA,8032,The man takes out a tool and makes an adjustment to the wheel sprocket then turns the wheel before adjusting more. The man,adjusts a shifter on the handlebars.,is then shown again in its air yard.,dips the liquid into a piece of metal.,reaches out and takes a piece of hot steel.,,gold0-orig,pos,unl,unl,unl,n/a,The man takes out a tool and makes an adjustment to the wheel sprocket then turns the wheel before adjusting more.,The man\nanetv_KRfdZgxLZPY,9757,A young man in a black outfit performs a double trick by grinding down one railing and jumping down a staircase. A man in a purple sweatshirt,grinds down a staircase railing.,walks to the bottom and spots a car now next to him.,skates across a dartboard and falls off the bridge onto a mat.,performs his parallel push ups on the bars and does several gymnastics momentum.,,gold1-orig,pos,unl,unl,pos,n/a,A young man in a black outfit performs a double trick by grinding down one railing and jumping down a staircase.,A man in a purple sweatshirt\nanetv_KRfdZgxLZPY,9758,A man in a purple sweatshirt grinds down a staircase railing. A man in a purple and black striped sweatshirt,jumps down a staircase.,walks around a dirt race.,jumps into a medieval building.,tries to play her drums.,walks in front to him.,gold1-orig,pos,unl,unl,unl,pos,A man in a purple sweatshirt grinds down a staircase railing.,A man in a purple and black striped sweatshirt\nanetv_KRfdZgxLZPY,9755,\"In the snow, various young men perform snowboard tricks before the camera. A man in a blue sweatshirt\",jumps down a staircase.,rolls into the ice of a parking lot.,walks slowly towards the car and uses passes.,throws the frisbee like a frisbee in the woods.,begins skateboarding together around the disassembled bike.,gold1-reannot,unl,unl,unl,unl,unl,\"In the snow, various young men perform snowboard tricks before the camera.\",A man in a blue sweatshirt\nanetv_S-8ogZOLiWU,12043,We see a man putting on gear and then hockey player walking to the rink. We,see the crowd clapping.,a game of croquet we see a circle of two people sitting on the table and court less observes.,see 4 three racers.,see the ball being held by onlookers.,\"fencing handle and a team closer, then we see him in on the screen with the man throwing his balls.\",gold0-orig,pos,unl,unl,unl,unl,We see a man putting on gear and then hockey player walking to the rink.,We\nanetv_S-8ogZOLiWU,12045,We see a game of hockey being played. We,see people clapping in the crowd.,we see several people walking down the road and holding a ball.,\"person throw the ball to the goal, and we see a replay of the game.\",and players play hockey.,see the game going back and forth.,gold1-orig,pos,unl,unl,pos,pos,We see a game of hockey being played.,We\nanetv_S-8ogZOLiWU,12044,We see the crowd clapping. We,see a game of hockey being played.,see the lacrosse stick to a player.,see the man finish and flip a pose.,see a boy running into the crowd.,see the lady in black.,gold1-orig,pos,unl,unl,unl,unl,We see the crowd clapping.,We\nlsmdc0004_Charade-47943,18848,A secretary sits behind a desk. She,looks up as someone enters.,uncorks a set of drums.,inserts a needle through the shelf rim.,\"puts her coat on, then eyes a security table.\",,gold0-orig,pos,unl,unl,unl,n/a,A secretary sits behind a desk.,She\nlsmdc0004_Charade-47943,18849,She looks up as someone enters. The secretary,picks up her phone and presses a button.,holds the line for a moment before she opens her door.,reaches for the second greeting.,holds out his hand.,\"puts her suitcase down and returns to the same table, which looks had across the floor.\",gold0-orig,pos,unl,unl,unl,unl,She looks up as someone enters.,The secretary\nlsmdc0004_Charade-47943,18850,The secretary picks up her phone and presses a button. Someone,goes to the door leading to the private office.,\"slides down a handheld panel, her phone cradled in her ear.\",picks up her record case and dials a number.,\"dials a number, then gets up and runs back up the stairs.\",,gold0-orig,pos,unl,unl,pos,n/a,The secretary picks up her phone and presses a button.,Someone\nanetv_HEw5wIWVpWE,19172,The man sucks up the roach in a vacuum as the kids watch. The man,dumps out the bug and flips it over on the floor as the kids watch.,takes two cigarettes and digs another in the pumpkin.,is using the axe to watch dog in the pile on goal.,looks out of the car in ruins and puffs away the smoke as the smoke swirls along.,,gold0-orig,pos,unl,unl,unl,n/a,The man sucks up the roach in a vacuum as the kids watch.,The man\nanetv_HEw5wIWVpWE,19173,The man dumps out the bug and flips it over on the floor as the kids watch. The kids,talk about be bug and wrestle on the floor.,ride back a fourth barefoot.,continue his ride forward over people riding down the street again.,jumps off the couch as the kids listen to someone.,lay the plaster down on the wall.,gold0-orig,pos,unl,unl,unl,unl,The man dumps out the bug and flips it over on the floor as the kids watch.,The kids\nanetv_HEw5wIWVpWE,19169,We see a girl on the floor with a toddler playing. The girl,gets up and walks into another room.,holds the boy up and yells at the camera.,throws a fan towards the girl.,places three sticks in her mouth.,does a flip and falls on the ground.,gold0-orig,pos,unl,unl,unl,unl,We see a girl on the floor with a toddler playing.,The girl\nanetv_HEw5wIWVpWE,19171,The girls shines a light on a roach on he wall and she dances with the flashlight. The man,sucks up the roach in a vacuum as the kids watch.,mounts the metal beam and begins climbing the shaft.,performs a ballet jump in the room.,stands and faces the couple on the horses.,,gold0-orig,pos,unl,unl,unl,n/a,The girls shines a light on a roach on he wall and she dances with the flashlight.,The man\nanetv_HEw5wIWVpWE,19168,A man is walking through the house. We,see a girl on the floor with a toddler playing.,have climbed the wooden sheets.,see the kids shining green lawn and field.,using the shears again.,watching to land and laugh.,gold0-orig,pos,unl,unl,unl,unl,A man is walking through the house.,We\nanetv_HEw5wIWVpWE,5345,The camera focuses on two children interact with each other in a cluttered room. The camera,follows the children walking into a different room.,shows a close up of his own fist being seen.,captures the section of the clip moving their legs slowly.,pans up to the broken tree which has already missing many pictures of the person walking in the locked yard.,,gold0-orig,pos,unl,pos,pos,n/a,The camera focuses on two children interact with each other in a cluttered room.,The camera\nanetv_HEw5wIWVpWE,5349,A closeup of the floor is shown with the man occasionally interacting with bugs on the floor or the machine. The two children,talk to the camera.,play various instruments while trying to match the match.,face one another while the other speaks.,rush to the table and address them with instructions to get it into new base.,,gold1-orig,pos,unl,unl,unl,n/a,A closeup of the floor is shown with the man occasionally interacting with bugs on the floor or the machine.,The two children\nanetv_HEw5wIWVpWE,5347,The two children dance together. A close up of some sort of machinery,is shown with the man or the children occasionally interacting with it.,is shown with a website on them.,is shown as well as speaking to the camera.,is seen next to a volleyball group mates.,is seen in front of a screen.,gold1-orig,pos,unl,unl,unl,unl,The two children dance together.,A close up of some sort of machinery\nanetv_HEw5wIWVpWE,5350,The two children talk to the camera. The two children,interact with each other again.,talk together while a group of children fall down the stairs.,wrestle by the window with railings and kids help it.,chained together and begin surfing.,play a game of foosball are going on front the wall.,gold0-orig,pos,unl,unl,pos,pos,The two children talk to the camera.,The two children\nanetv_HEw5wIWVpWE,5344,The camera focuses on an older man's face. The camera,focuses on two children interact with each other in a cluttered room.,is then seen surfing out of screen.,focuses on the boy.,begins to move into the man's perspective.,dips deep to the mug while holding the stick close to us.,gold1-reannot,pos,unl,unl,unl,unl,The camera focuses on an older man's face.,The camera\nanetv_HEw5wIWVpWE,5346,The camera follows the children walking into a different room. The camera,focuses on a bug on the wall.,is cut up with glimpses of people on the screen.,zooms in on the house on the right.,continues to follow the area while many pictures you to help are shown.,pans to the people including sitting down in chairs.,gold1-reannot,pos,unl,unl,unl,pos,The camera follows the children walking into a different room.,The camera\nanetv_HEw5wIWVpWE,19170,The girl gets up and walks into another room. The girls shines a light on a roach on he wall and she,dances with the flashlight.,adds a piercing to another girl.,dawns down as well.,begins to fight herself.,rolls off to another table.,gold1-reannot,pos,unl,unl,unl,unl,The girl gets up and walks into another room.,The girls shines a light on a roach on he wall and she\nanetv_pouxwDABDrg,19263,\"A group of women are working out in a building. The instructor appears, and they\",continue dancing up and down and side to side on steppers.,demonstrate ballet and showing how to play and fix one another.,begin dancing in unison as they break and moving forwards.,are demonstrating how to do ballet moves.,,gold0-orig,pos,unl,unl,unl,n/a,A group of women are working out in a building.,\"The instructor appears, and they\"\nanetv_pouxwDABDrg,19264,\"The instructor appears, and they continue dancing up and down and side to side on steppers. The instructor\",walks away as the others continue.,has a conversation for the first time.,stops and gives some more darts.,stops short and turns back to the camera.,does little flips and kicks the board off the platform.,gold0-orig,pos,unl,unl,unl,unl,\"The instructor appears, and they continue dancing up and down and side to side on steppers.\",The instructor\nanetv_pouxwDABDrg,6076,The trainer and class step in a circle and up on the platform. The trainer and class,kick up their legs forward on the platform.,are leading the other.,ride in unison by lifting their arms up on the air as they sit.,instructor are standing back at the end of the dance routine.,stop and demonstrate performing moves.,gold0-orig,pos,unl,unl,pos,pos,The trainer and class step in a circle and up on the platform.,The trainer and class\nanetv_pouxwDABDrg,6078,The trainer and class step up sideways on the platform. The trainer and class,walk over then in reverse over the platform.,does a routine on the level.,swing another trembling hand.,move on the platform post.,spin the woman at the head end of the bar.,gold1-reannot,pos,unl,unl,unl,unl,The trainer and class step up sideways on the platform.,The trainer and class\nanetv_pouxwDABDrg,6077,The trainer and class kick up their legs forward on the platform. The trainer and class,step up sideways on the platform.,continue talking on the hands again.,continue in synchronized moves on table as the three aerobics continue to turn.,is supposed to dance.,stops at the end of the tracks.,gold1-reannot,pos,unl,unl,unl,unl,The trainer and class kick up their legs forward on the platform.,The trainer and class\nanetv_x2FfKHiN_3s,8278,\"A man is sitting on a frozen lake, fishing through a hole and surrounded by fishing gear. He walks away from his stuff, and a fish\",\"pulls his pole into the water, disappearing with it.\",shows off of the shattered glass.,catches it as he tries to browse the fish.,is caught in the water.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is sitting on a frozen lake, fishing through a hole and surrounded by fishing gear.\",\"He walks away from his stuff, and a fish\"\nanetv_x2FfKHiN_3s,8279,\"He walks away from his stuff, and a fish pulls his pole into the water, disappearing with it. He\",\"stands angrily with his hands on his hips, then gets another pole to try to get it back.\",rolls into the hole and just waits to let losing.,goes around with someone and someone.,throws his arms in the air.,,gold0-orig,pos,unl,unl,pos,n/a,\"He walks away from his stuff, and a fish pulls his pole into the water, disappearing with it.\",He\nanetv_hThdSxhMhDo,11047,\"A grey bunny is standing on a bed on a black towel eating something in his hand. As he eats, the bunny\",begins to grabs his ears and shakes its head.,is wearing black and white and his eyes are caked with frost.,lifts its black paw and goes back to his horse.,is trying to catch the dog's attention.,,gold0-orig,pos,unl,unl,unl,n/a,A grey bunny is standing on a bed on a black towel eating something in his hand.,\"As he eats, the bunny\"\nanetv_hThdSxhMhDo,11048,\"As he eats, the bunny begins to grabs his ears and shakes its head. Struggling more, the bunny\",bends down and keeps eating something before looking out.,jumps around super high up and then flips throughout the story.,pins himself to beer.,slams someone across the mouth.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As he eats, the bunny begins to grabs his ears and shakes its head.\",\"Struggling more, the bunny\"\nlsmdc1039_The_Queen-88318,4293,Someone look pensively to one side. Someone,returns from her reverie and faces someone.,cheer and leads people into the cafe.,lowers the indeed's gaze.,and someone onstage gather around someone's room.,wears the uniform that they had earlier.,gold0-orig,pos,unl,unl,unl,pos,Someone look pensively to one side.,Someone\nlsmdc1039_The_Queen-88318,4295,\"People descend the stairs with a corgi scuttling ahead. Nearby, someone\",smiles as they pass by.,climbs onto a mat bag as he exits his office.,\"faces a windowed door for madison square, as he leans forward a few steps in front of him.\",slumps on a throne as a group of students step up to the impressive display of the statue house.,finds someone face a baby in midair.,gold1-orig,pos,unl,unl,unl,unl,People descend the stairs with a corgi scuttling ahead.,\"Nearby, someone\"\nlsmdc1039_The_Queen-88318,4294,Someone returns from her reverie and faces someone. They,walk off down the corridor side - by - side.,turn the car over and the finished bell has placed at the bottom of the screen.,look around with to mushrooms.,follow her off in a meeting room.,step out of the corridor.,gold0-orig,pos,unl,unl,unl,pos,Someone returns from her reverie and faces someone.,They\nanetv_5HqegO_ayw8,5186,The people continuously hit the ball around the sandy field as the camera pans around them playing. The camera,pans around the group as they keep playing.,zooms back in behind the men playing the drums with their hands.,pans back to the people playing the game.,pans to show the others on the sidewalk speaking to one another.,,gold0-orig,unl,unl,pos,pos,n/a,The people continuously hit the ball around the sandy field as the camera pans around them playing.,The camera\nanetv_eeD2_hKG7zE,16014,She then carries herself along the set of monkey bars and moves back and fourth on the play set. She,makes her way back to the start and climbs down the ladder finally looking at the camera.,unwraps the gift to her family and puts a sandwich into a small bowl.,walks on and picks up the little.,continues playing in the hole while the camera captures her.,continues dancing around and ends by speaking to the camera about her instrument.,gold0-orig,pos,unl,unl,unl,unl,She then carries herself along the set of monkey bars and moves back and fourth on the play set.,She\nanetv_eeD2_hKG7zE,16013,A young girl is seen standing before a set of monkey bars and smiling while speaking to the camera. She then,carries herself along the set of monkey bars and moves back and fourth on the play set.,grabs the bar and begins pulling on the rope and looking to the camera.,swings the monkey around over the slide while the girl watches the frame.,\"interviews the woman beside a large brush, and she continues dancing as well as the girl playing to push down her fence.\",begins playing a soft instrument while an older girl watches.,gold0-reannot,pos,unl,unl,unl,unl,A young girl is seen standing before a set of monkey bars and smiling while speaking to the camera.,She then\nlsmdc1006_Slumdog_Millionaire-73908,15744,\"The three children flee the scene. On the game show, someone\",looks deep in thought.,gets in her car and comes to a halt.,stands with the young guy in bed.,sits on a bench with one exhausted someone.,steps near his wife.,gold0-orig,pos,unl,unl,unl,pos,The three children flee the scene.,\"On the game show, someone\"\nlsmdc1006_Slumdog_Millionaire-73908,15745,\"On the game show, someone looks deep in thought. The host\",points his hand at someone mimicking holding a gun.,clinks glasses on his head and arches his brow.,walks in to his.,\"watches them go, and writes behind a desk.\",,gold0-orig,pos,unl,unl,pos,n/a,\"On the game show, someone looks deep in thought.\",The host\nlsmdc1006_Slumdog_Millionaire-73908,15743,Someone rushes to take someone's money from the floor. Someone,is rooted to the spot.,turns off the lamp and flips it open.,steps back from the wheel.,takes out his gun from the bed.,goes back into the room.,gold1-orig,pos,unl,unl,unl,unl,Someone rushes to take someone's money from the floor.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41091,14680,Someone leads the group down a trail lined with tall bushes. One of the tigers,steps past two others lounging in the grass.,is talking to the stagehands.,is bathing a couple of birds and feathers.,is an excited child.,,gold0-orig,pos,unl,unl,unl,n/a,Someone leads the group down a trail lined with tall bushes.,One of the tigers\nanetv_YaHTgeeDs7s,18086,The crash into each other over and over and seem to be a bit confused as to what to do. They,have smiles on their faces as they continue to go around the track.,goes back to on the bikes and eventually they help do jump.,continue dancing at the end together and talking to the camera while still speaking.,are swimming while flipping on the sand.,do again with the closing screen in the newspaper.,gold1-orig,pos,unl,unl,unl,unl,The crash into each other over and over and seem to be a bit confused as to what to do.,They\nanetv_YaHTgeeDs7s,18085,A bunch of kids are playing on the bumpers cars at an amusement park. The crash into each other over and over and,seem to be a bit confused as to what to do.,raise a single lingering coffee.,get into the car and a man in a blue shirt claps them with it being a big deal.,fell into the arena.,advertising a last set of soccer effectively.,gold0-orig,pos,unl,unl,unl,unl,A bunch of kids are playing on the bumpers cars at an amusement park.,The crash into each other over and over and\nanetv_8UyB9XigBXM,15568,A young girl is seen brushing her hair as well as spraying product into her hair. She,takes her hair in parts and begins braiding her hair.,pauses to brush her hair while still laughing to the camera.,moves herself back and fourth while continuing to speak to the camera.,continues speaking and looking to the camera and smiling as she leaves.,,gold0-orig,pos,unl,unl,unl,n/a,A young girl is seen brushing her hair as well as spraying product into her hair.,She\nanetv_8UyB9XigBXM,15569,She takes her hair in parts and begins braiding her hair. She,finishes braiding her hair and ends by a picture of the braid.,picks up puffs off the braid and puts it back in her hair.,then brushes the hair back and styles it until the end.,then rises to the end of her bow and curls her hair.,\"twists her hair correctly in place, and clips the curls to her hair.\",gold0-reannot,pos,unl,unl,unl,pos,She takes her hair in parts and begins braiding her hair.,She\nanetv_vijDPbwU6vA,7085,A man in a hat stands up and chops wood. He,gives a thumbs up and puts the ax over his shoulder.,holds open a knife and removes a wood they are holding.,moves inside the wire including an orange frame.,see five men assembling each other and talking into a microphone.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a hat stands up and chops wood.,He\nanetv_vijDPbwU6vA,7084,People are sitting around a campfire. A man in a hat,stands up and chops wood.,is talking to the camera next to a black.,is holding a coffee pot.,is playing in a gray man.,is speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,People are sitting around a campfire.,A man in a hat\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9257,He fishes the someone Mouse out of the bin. He,puts on a magnifying glass headband with small working lights.,comes downstairs as someone enters with his pet elephant.,lies in his arms.,drives his white car across the grass with a dirt edge.,,gold0-orig,pos,unl,unl,unl,n/a,He fishes the someone Mouse out of the bin.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9258,He puts on a magnifying glass headband with small working lights. He,picks up a mouse - sized top hat.,reverses away from the save he seems to be struggling to stay upright.,hands the thin magic volume to a small cam pan outside.,index the nose and injects new hundred - sized holes in a rubik's made mirror.,closes the eyes of the man - - huge in someone's basement office.,gold0-orig,pos,unl,unl,unl,unl,He puts on a magnifying glass headband with small working lights.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9249,Someone frowns and looks contrite. Someone,turns and wades out of the pond.,punches someone's chest then scrolls down his throat and breaks free.,turns and spots her applying someone details.,walks down onto the stage.,takes her glasses off.,gold1-orig,pos,unl,unl,pos,pos,Someone frowns and looks contrite.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9259,He picks up a mouse - sized top hat. He,gets up and goes over to a wooden chest.,shoves into the pocket of the dog's perfume.,\"bends down and picks up the grail, as someone climbs up.\",idly takes a puff.,,gold0-orig,pos,unl,pos,pos,n/a,He picks up a mouse - sized top hat.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9251,\"Someone stays put, staring at the water. That evening, someone\",returns to his modest bungalow.,water down the bar.,enters the waiting station.,hurries over to someone and hugs her.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone stays put, staring at the water.\",\"That evening, someone\"\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9260,He gets up and goes over to a wooden chest. He,pulls a cloth cover off it and undoes the catches.,picks up the receiver.,goes down to the landing and looks around expectantly.,looks round while people start to play.,,gold0-orig,pos,unl,pos,pos,n/a,He gets up and goes over to a wooden chest.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9254,He begins sweeping everything off his bench into the bin. He,turns around and switches on another light.,glances back at himself and starts to shave the long wooden slat.,continues separating the rakes and empties the tires on the table.,sticks the rake in a park and continues running.,,gold0-reannot,pos,unl,unl,unl,n/a,He begins sweeping everything off his bench into the bin.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9253,He takes the someone Mouse from his shirt pocket and stares at it. He,begins sweeping everything off his bench into the bin.,walks the hands up to his straight sweater.,starts contemplative again and nor continues to sing.,finds the beautiful man with a cold stare.,\"takes it, turns quickly and inspects the damage.\",gold0-reannot,pos,unl,unl,pos,pos,He takes the someone Mouse from his shirt pocket and stares at it.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9263,He stands in the middle of the living room. Someone,hands someone the phone.,walks back out of view and looks down.,gives someone a photo.,lies staring at him as he types on a laptop.,lifts his jaw in a grin.,gold1-reannot,pos,unl,unl,unl,unl,He stands in the middle of the living room.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10530,9262,Someone returns home to his apartment. He,stands in the middle of the living room.,leans into someone's bedroom.,puts his cellphone to someone's ear.,holds up poufy bottle.,grabs the gun from the case and hurls it.,gold0-reannot,pos,unl,unl,unl,unl,Someone returns home to his apartment.,He\nanetv_tZzse87ICr8,3917,A young girl plays hopscotch in the sand on the beach. There,is a finger on the edge of the camera.,are bewildered as they go.,with a horse in a chaise behind her little dog walks by the feeds.,girl are interviewed on several other girls watching a performance in a competition.,,gold0-orig,pos,unl,unl,pos,n/a,A young girl plays hopscotch in the sand on the beach.,There\nanetv_tZzse87ICr8,1761,The girl begins jumping down the beach as well as back. She,goes back to where she started and looks at the camera.,\"hands, begins flipping on clothes and bending down while holding herself up at the same time as well.\",continues bouncing on stage with the rope and ends by walking away.,leads into close ups of her from the end and jumping onto the rope.,continues riding along on the grass as well as people blowing drink out.,gold0-orig,pos,unl,unl,unl,unl,The girl begins jumping down the beach as well as back.,She\nanetv_tZzse87ICr8,3916,The girl looks at the camera and prepares to jump. A young girl,plays hopscotch in the sand on the beach.,in blue goes to do.,on an outdoor field is seen running over a court and walking with her ball.,\"sits down on the ground, playing with a stick as she turns to race on the side to speak.\",,gold0-orig,pos,unl,unl,unl,n/a,The girl looks at the camera and prepares to jump.,A young girl\nanetv_tZzse87ICr8,1760,A young girl is seen standing on the beach looking at the camera. The girl,begins jumping down the beach as well as back.,continues playing around in the room and ends by shooting and waving to the camera.,then on the side ride a horse onto the mat in front of her.,is then seen moving down tubes and pushing along the playground from the water.,gets all the way while almost speaking to the camera with her arms around his neck.,gold0-reannot,pos,unl,unl,unl,unl,A young girl is seen standing on the beach looking at the camera.,The girl\nanetv_tZzse87ICr8,3918,There is a finger on the edge of the camera. The girl,hops on the board back the other direction.,tries to wash a fish better.,begins to squeeze the pedals faster and faster.,glances at a dancing hula.,takes a little scoop from the add plant.,gold1-reannot,unl,unl,unl,unl,unl,There is a finger on the edge of the camera.,The girl\nlsmdc0002_As_Good_As_It_Gets-46319,10430,A mass of official people clutter the hall as a gurney is whisked down to the elevator. Someone,\"is standing against the wall near his door a cop, someone, interviewing him.\",shakes the pleasantly's head and walks up to them.,slowly descends further into the vault.,\"closes the door behind them, just seeing it locked, the boy gets to his feet.\",\"sits inside, hurries across the room and picks up a newspaper.\",gold0-orig,pos,unl,unl,unl,unl,A mass of official people clutter the hall as a gurney is whisked down to the elevator.,Someone\nlsmdc0053_Rendezvous_mit_Joe_Black-71495,4075,The silence is broken by a knock on the door. Quince,\"appears, flushed with excitement.\",shakes someone's hand.,\"is a loud drunk, as he shoves past someone.\",sit next to an old oak tree that is now crowded.,screams as rage and excited horror as the hell is terrible.,gold0-orig,pos,unl,unl,unl,unl,The silence is broken by a knock on the door.,Quince\nlsmdc0053_Rendezvous_mit_Joe_Black-71495,4076,\"Quince appears, flushed with excitement. Someone\",weighs the information for a moment.,\"marches astride, and he flies up.\",hides the note with a pen.,looks to the crowd and watches him yell to the dismay.,joins the defending kids.,gold1-orig,pos,unl,unl,pos,pos,\"Quince appears, flushed with excitement.\",Someone\nanetv_8GxWehFZVRE,16438,She is playing an accordian for the baby. The baby,\"rocks back and forth, dancing to the music.\",flips the ball back and forth.,moves to with her hands on her hips.,turns around and gets up.,,gold1-orig,pos,unl,pos,pos,n/a,She is playing an accordian for the baby.,The baby\nanetv_8GxWehFZVRE,16437,A woman is sitting next to a baby in a high chair. She,is playing an accordian for the baby.,lays out a cookie sheet on a tray.,walks around on a living room couch.,lays her head on the dry ground.,puts some glasses on the table and puts one on.,gold0-orig,pos,unl,unl,unl,pos,A woman is sitting next to a baby in a high chair.,She\nanetv_z-_snl6eaPE,13168,One of the players falls as he gets into a fight. A referee,attempts to break up the fight.,gets up while arriving and shooting a successful hit.,stands by the keeper.,watches one of the men.,leans against the wall.,gold0-orig,pos,unl,unl,pos,pos,One of the players falls as he gets into a fight.,A referee\nanetv_z-_snl6eaPE,13167,Two teams of ice hockey players are on a rink. One of the players,falls as he gets into a fight.,shoots a ball straight into the net.,\"takes another drink, punches the rake.\",\"draws himself up, stands them with air.\",throws the ball inside the players.,gold0-orig,pos,unl,unl,unl,unl,Two teams of ice hockey players are on a rink.,One of the players\nanetv_z-_snl6eaPE,18175,A hockey game is in progress. two hockey players,ram into each other and begin fighting.,sit around a rope watching the other team.,walk past with a goal.,walked together in the middle of a field.,,gold1-reannot,pos,unl,unl,unl,n/a,A hockey game is in progress.,two hockey players\nanetv_z-_snl6eaPE,18176,Two hockey players ram into each other and begin fighting. the referee,skates over and breaks up the fight.,has a stick and several sumo wrestlers present the cover with one rope.,jumps backward to get one run.,bounces the astonished someone.,explains as they practice basketball skills.,gold0-reannot,pos,unl,unl,unl,unl,Two hockey players ram into each other and begin fighting.,the referee\nanetv_jxAZc0VgG4w,9003,Her jump is then shown again several times in slow motion and another runner takes a turn at the jump. Her jump is shown again in slow motion and she,waves to the audience while smiling.,continues to walk and jump and roping the ball then has moved back to the camera.,jumps off the bar and covers herself back afterwards.,practice several replays of her throw in slow motion.,,gold0-orig,pos,unl,unl,unl,n/a,Her jump is then shown again several times in slow motion and another runner takes a turn at the jump.,Her jump is shown again in slow motion and she\nanetv_jxAZc0VgG4w,9002,An athletic woman is shown running down a track and jumping into a large sand pit. Her jump is then shown again several times in slow motion and another runner,takes a turn at the jump.,rides off the stage while she runs.,seems to move to find her.,launches herself into a pole again.,,gold0-reannot,pos,unl,pos,pos,n/a,An athletic woman is shown running down a track and jumping into a large sand pit.,Her jump is then shown again several times in slow motion and another runner\nanetv_jXZ6WVxXgLA,2086,A man is using a large broom in a parking lot. He,spins the broom in circles around him.,\"reaches the shovel, puts it in the trashcan.\",uses both hands and spills the joint off the machine.,puts something in his eye.,,gold0-orig,pos,unl,unl,pos,n/a,A man is using a large broom in a parking lot.,He\nanetv_jXZ6WVxXgLA,2087,He spins the broom in circles around him. The spinning,brushes the piles of leaves out of the parking lot.,rocks someone and punches him on the cheek.,put the ball and it destroys the fire.,does the hammer throw.,is also to the loop of the attack.,gold0-reannot,pos,unl,unl,unl,unl,He spins the broom in circles around him.,The spinning\nanetv_seScyTd2XSc,1075,The person sprays down the stainless steel sink with detergent in a spray bottle. A sponge,is used to scrub the sing with the cleaning solution.,shaves the rim of the sponge?,is cleaned by a sponge and a cloth.,is clean and scraped.,is sprayed with water and dark solution.,gold0-orig,pos,unl,unl,unl,pos,The person sprays down the stainless steel sink with detergent in a spray bottle.,A sponge\nanetv_seScyTd2XSc,1074,A person holds out cleaning product and a spray bottle with the mixture over a kitchen sink. The person,sprays down the stainless steel sink with detergent in a spray bottle.,holds a spray bottle and then cleans the counter on the floor.,pours the cheese bar first onto the stove.,takes shoe polish and puts glasses on.,,gold1-orig,pos,unl,unl,unl,n/a,A person holds out cleaning product and a spray bottle with the mixture over a kitchen sink.,The person\nanetv_seScyTd2XSc,1076,A sponge is used to scrub the sing with the cleaning solution. The faucet,is turned on and is used to rinse out the sink.,is shown once again that it is clean again.,water is shown around the tub until it is clean.,\"is watched by someone, a third bucket and water rubbing a bandage on the back of his hand.\",is then rinsed clean and rinsed.,gold0-orig,pos,unl,unl,unl,pos,A sponge is used to scrub the sing with the cleaning solution.,The faucet\nanetv_x0cSfzhQRAs,11049,\"A man walks across a suspended rope high in the air, losing balance at one point and holding on to the rope with his hands and feet wrapped around the rope. The man then\",is able to hoist himself back enough on the rope to sit on it with the rope between his legs.,stands and jumps off a low kick and steps.,stands in front of the blue speaking to people and watches at the end as they are seen floating below the rock spinning quickly.,bows and shows off a low angle towards the calf.,finishes and does back flips.,gold0-orig,pos,unl,unl,unl,unl,\"A man walks across a suspended rope high in the air, losing balance at one point and holding on to the rope with his hands and feet wrapped around the rope.\",The man then\nanetv_68oJj9QktGg,72,Several shots are shown of bulls running into people in busy streets and people becoming hurt by the bulls. Many more shots,are shown of bulls hurting people in various locations while others try to help them on the side.,are shown of people sitting in the circle without one another.,are shown of men riding around while another is being interviewed and text in the distance.,\"are shown of people riding the camels and doing various tricks, laughing and fighting.\",are shown of people pushing a bulls and posing while the camera zooms in on the wrestlers.,gold0-orig,pos,unl,unl,unl,unl,Several shots are shown of bulls running into people in busy streets and people becoming hurt by the bulls.,Many more shots\nlsmdc1001_Flight-71847,2424,\"At a church, a large framed picture of someone stands surrounded by flowers as a coffin is carried out. Someone\",stands in a dark suit and watches the procession pass.,pushes someone's hair back into a long and thick chain and sits on a fan in the next window.,\"stares at the red man, warmly.\",steps up to it and looks her in the eyes.,is lying on the ground.,gold1-orig,pos,unl,pos,pos,pos,\"At a church, a large framed picture of someone stands surrounded by flowers as a coffin is carried out.\",Someone\nlsmdc1001_Flight-71847,2426,A young boy touches someone's arm. Someone,turns around and sees someone.,throws her woman in the shoulder.,\"topples someone's turning back, then glances around.\",falls on his painful tight.,throws his arms over the tree.,gold0-orig,pos,unl,unl,unl,unl,A young boy touches someone's arm.,Someone\nlsmdc1001_Flight-71847,2423,\"Someone points the camera at her. At a church, a large framed picture of someone\",stands surrounded by flowers as a coffin is carried out.,battered his desk parked in the street of the garage.,raises an eyebrow at someone.,addresses someone's belongings in a magazine.,,gold1-orig,pos,unl,unl,unl,n/a,Someone points the camera at her.,\"At a church, a large framed picture of someone\"\nlsmdc1001_Flight-71847,2427,He goes to her and they hug. Someone,reaches for her son and pulls him close.,\"gets out of bed, presses the door open.\",scrambles back and grabs her lip.,\"wins, then turns.\",slaps her back then leans back in her bed and then grabs her lower lip.,gold0-reannot,pos,unl,unl,unl,unl,He goes to her and they hug.,Someone\nlsmdc0027_The_Big_Lebowski-62987,12532,\"Someone, frowning, untucks its flap, takes out some cotton wadding and unrolls it. The wadding, undone,\",reveals a smaller wad of gauze taped up inside.,\"adds more polish in the anteroom, nearly kicks it apart.\",\"sliced in the, opened the karaboudjan to someone.\",\"has only hand tags by the wrist sheet, revealing the back of the clothing with his pajama sleeves.\",unlocks it and grabs it.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, frowning, untucks its flap, takes out some cotton wadding and unrolls it.\",\"The wadding, undone,\"\nlsmdc0027_The_Big_Lebowski-62987,12534,Someone undoes the tape with his fingernails and starts to unroll the inner package. Between thumb and forefinger someone,\"holds up the contents of the package - - a little toe, with emerald green nail polish.\",is already at his tongue.,folds her feet around the automaton and peers into his eyes.,pushes the other colonel away from the elderly.,straddles one of someone's disconnects.,gold0-orig,pos,unl,unl,unl,unl,Someone undoes the tape with his fingernails and starts to unroll the inner package.,Between thumb and forefinger someone\nlsmdc0027_The_Big_Lebowski-62987,12533,\"The wadding, undone, reveals a smaller wad of gauze taped up inside. Someone\",undoes the tape with his fingernails and starts to unroll the inner package.,lays out a coin with his cash and hanging it.,is played on his coat.,walks quickly back into work with them behind him and aglow him with someone.,closes the door and slams on the top without turning.,gold0-orig,pos,unl,unl,unl,pos,\"The wadding, undone, reveals a smaller wad of gauze taped up inside.\",Someone\nlsmdc0041_The_Sixth_Sense-67896,17959,Someone leans his head back against the chair. Someone's eyes,scan the room and come to a stop on a box marked with the label.,remain unmistakably composed as he stares at the floor.,climb up as he opens the door marked the parlor.,remain pinched and tight.,,gold1-orig,unl,unl,unl,unl,n/a,Someone leans his head back against the chair.,Someone's eyes\nlsmdc0041_The_Sixth_Sense-67896,17957,\"Someone gazes at it, then looks up at someone's pained eyes. Someone\",sits stoically at his desk in his basement.,\"leans forward, trapping someone.\",gazes at her from the porch.,glance at each other.,walks over to someone's desk and whispers something on her ear - close not to be amused.,gold1-orig,pos,pos,pos,pos,pos,\"Someone gazes at it, then looks up at someone's pained eyes.\",Someone\nlsmdc0041_The_Sixth_Sense-67896,17961,A tape slides into the tape player seated on someone's desk. Someone's eyes,are locked on the spool of audio tape as it spins in the player.,travel slowly around the table by pulling out some bills.,morphs to black as note notes then put down on the blueprint.,\"pump up, staring helplessly.\",,gold0-orig,pos,unl,unl,pos,n/a,A tape slides into the tape player seated on someone's desk.,Someone's eyes\nlsmdc0041_The_Sixth_Sense-67896,17956,Someone pushes it across the table. Someone,\"gazes at it, then looks up at someone's pained eyes.\",\"sits by someone's shoulder at a table, smoking a hookah.\",grabs someone's wrist.,smiles a few times.,,gold0-orig,pos,unl,pos,pos,n/a,Someone pushes it across the table.,Someone\nlsmdc0041_The_Sixth_Sense-67896,17958,Someone sits stoically at his desk in his basement. Someone,leans his head back against the chair.,grips the doctors wih his eyes.,\"flashes a smug smile, then steps out of the offices and looks up to join confused on the floor.\",\"silence to the next room, goes to the hotel office, sits down in the chair, and watches the weather.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone sits stoically at his desk in his basement.,Someone\nlsmdc0041_The_Sixth_Sense-67896,17960,Someone's eyes scan the room and come to a stop on a box marked with the label. A tape,slides into the tape player seated on someone's desk.,technician holds the ornate handle of the machine gun forward.,produces a handful of junk on it.,- man appears to write in the letter.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone's eyes scan the room and come to a stop on a box marked with the label.,A tape\nlsmdc0012_Get_Shorty-53374,10187,\"Someone watches as the movie star hunches over, narrows his shoulders. But someone\",keeps looking at someone.,\"is serving, hitting him.\",seizes back once more.,\"settles for the first one, dropping the passport.\",is throwing around his blades.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone watches as the movie star hunches over, narrows his shoulders.\",But someone\nanetv_oD5lGBt7U7g,10726,Several shots are shown of the inside of a shop followed by a person unboxing a bike. The man then brings out tools and tightens them along the bike and,is shown peddling the bike with his hands and showing off the finished bike.,gets up and begins to attach.,rolls out a cutting machine.,ends by unscrewing it.,sprays down the window while still speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,Several shots are shown of the inside of a shop followed by a person unboxing a bike.,The man then brings out tools and tightens them along the bike and\nanetv_u6f9COsww0w,14065,\"A young man is talking, then the young men in the pool played soccer by swimming towards the ball, while they play, their coach is giving them lectures at the side of the pool. The team in green uniforms are having photoshoot and showing their medals, then other teams\",were shown for their photos.,are in the starting field making flippers and hitting the ball around one goal.,are beating a hockey ball against a wall and playing.,are shown making a shot with their mallets.,make hip hop scotch.,gold1-orig,pos,unl,unl,unl,unl,\"A young man is talking, then the young men in the pool played soccer by swimming towards the ball, while they play, their coach is giving them lectures at the side of the pool.\",\"The team in green uniforms are having photoshoot and showing their medals, then other teams\"\nanetv_u6f9COsww0w,6724,Several shots are shown of people swimming around a pool as well as playing a game. Many people,speak to the camera while more shots are shown of water polo being played.,watch off the sidelines as well as well a pool on their feet.,camera seen walk around in volleyball as well as people playing.,are shown laughing with one another and ends by shaking hands with others.,are seen wandering about and throwing the ball as well as a ball and diving off the pool.,gold1-orig,pos,unl,unl,pos,pos,Several shots are shown of people swimming around a pool as well as playing a game.,Many people\nanetv_u6f9COsww0w,14064,\"The kids are swimming at the same time in a blue pool, they pushed themselves off the wall of the pool then did a butterfly strokes. An old man in white shirt was talking, then the young men played a yellow ball in the pool, they also\",\"played soccer in the pool, then swim.\",did it and walked in each attempt at the lake.,turn around and start quickly towards each other and holding people around.,\"met another at a time, washing the game madly.\",drink the water over the water and swim back to the water.,gold0-orig,pos,unl,unl,unl,pos,\"The kids are swimming at the same time in a blue pool, they pushed themselves off the wall of the pool then did a butterfly strokes.\",\"An old man in white shirt was talking, then the young men played a yellow ball in the pool, they also\"\nanetv_u6f9COsww0w,6725,Many people speak to the camera while more shots are shown of water polo being played. A coach,speaks to his team and shows them all huddled up together and playing more.,move away and leads into more shots of people playing pool.,talks as well to the sidelines and continues to move all around the rink.,is seen sitting down to the camera with a canoe helped out as well as multiple shots various shots of the pool down in person,is speaking to the camera while the footage ends by another man being interviewed.,gold1-orig,pos,unl,unl,unl,unl,Many people speak to the camera while more shots are shown of water polo being played.,A coach\nanetv_5vlGKyxl22M,16236,A cameraman films on front the finish line while people is arriving. A woman,raise her arms when cross the finish line.,in a black shirt stands on the mat.,talks in front of her.,hug the student.,,gold0-orig,pos,unl,unl,unl,n/a,A cameraman films on front the finish line while people is arriving.,A woman\nanetv_ZU4Mgdd3omA,18399,A woman is seen sitting in a chair playing an instrument while reading off a book of notes. She,continues playing along and pauses to look back at the camera and laugh.,then picks up the remote and looks at it up for her waving.,places her hands on the back of the man looking into the camera.,laughs into a microphone and gives her a thumbs up.,continues playing and ends by showing off her accordion.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen sitting in a chair playing an instrument while reading off a book of notes.,She\nanetv_ZU4Mgdd3omA,16602,The lady watching turns her head to the right. The girl,finishes playing and lowers her flute.,continues to apply the surface of dresser lotion and tries shooting a contact into her eye.,cuts something and drops.,walks back to the first aid individual and returns.,plays to play again.,gold0-orig,pos,unl,pos,pos,pos,The lady watching turns her head to the right.,The girl\nanetv_ZU4Mgdd3omA,16601,A girl is playing the flute with a lady watching on the webcam and visible on the monitor. The lady watching,turns her head to the right.,moves and puts her arms up.,are holding the flute spinning.,is the man again and the camera walks in and out of frame.,orchestra plays a blow - sax tune.,gold1-orig,pos,unl,unl,unl,unl,A girl is playing the flute with a lady watching on the webcam and visible on the monitor.,The lady watching\nlsmdc3023_DISTRICT_9-10929,15297,\"Someone steals garments off a clothesline. Later, someone\",wears the stolen clothes with a blanket over them like a hooded cloak.,narrates a reception scene at the front end of the barn.,tastes golf more with his hands and chuckles with someone.,rises from the bed and scurries onto a subway staffer.,faces someone and leads his family away.,gold1-orig,pos,unl,unl,unl,unl,Someone steals garments off a clothesline.,\"Later, someone\"\nlsmdc3023_DISTRICT_9-10929,15296,\"The tall grass behind him, a German shepherd leads a group of soldiers. Someone\",steals garments off a clothesline.,\"is riding a wheels, walks down the street and joins the others.\",is robed to people as they study him.,gardens in one of the crags and heads through verdant trees.,,gold1-reannot,pos,unl,unl,unl,n/a,\"The tall grass behind him, a German shepherd leads a group of soldiers.\",Someone\nanetv_bxRZ-Lvjgzk,10974,An intro leads into a close up of a painting and a paintbrush swirling around and around. The hand holding the brush,begins painting grass into the painting slowly down the picture.,tries to paint the more and color into a brush.,is shown as well as the painting it and leads into a woman painting painting on a fence.,brushes various people around the room demonstrating back at work.,glows with a rag and painting by someone's back of the tree.,gold0-orig,pos,unl,unl,unl,unl,An intro leads into a close up of a painting and a paintbrush swirling around and around.,The hand holding the brush\nanetv_ydJsJgdaEq4,17112,A man wearing a hat is seen speaking to the camera and holding up various cleaning products. He then,holds up a bottle and rag and begins wiping down a class door.,cleans a piece of wax while anh while speaking to the camera.,begins to clean up the shoes and scrubbing down smooth black ice.,wipes it and shows most of his hands laid out in scrubs.,,gold0-orig,pos,unl,unl,unl,n/a,A man wearing a hat is seen speaking to the camera and holding up various cleaning products.,He then\nanetv_ydJsJgdaEq4,17113,He then holds up a bottle and rag and begins wiping down a class door. He,continues wiping down a door and speaking to the camera.,continues painting his face while still speaking to the camera.,proceeds to place her back on the sofa while walks away from the camera.,continuously zooms into the window and continues looking up and adjusting his hands and smiling to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,He then holds up a bottle and rag and begins wiping down a class door.,He\nlsmdc1062_Day_the_Earth_stood_still-100643,15698,An intense beam of white light sweeps across the ground. She,looks around in alarm as the military arrive in hummers with heavy machine guns.,\"stumbles into the huge gear and flies backwards, stumbling butt over the water.\",comforts them at a slow pace.,wanders along a table beside someone.,,gold0-orig,pos,unl,unl,unl,n/a,An intense beam of white light sweeps across the ground.,She\nlsmdc1062_Day_the_Earth_stood_still-100643,15696,The gathered crowds stare up at the pulsating sphere which is hundreds of feet high. Someone,gapes with her mouth open behind her visor.,and someone are watching the spiders get.,\"finally takes off, wide - eyed, flipping on the way outside the station.\",are rooted to the floor.,\"'s friends cling to someone, someone is afraid.\",gold0-orig,pos,unl,unl,unl,unl,The gathered crowds stare up at the pulsating sphere which is hundreds of feet high.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100643,15699,She looks around in alarm as the military arrive in Hummers with heavy machine guns. Police vehicles,draw up in convoy.,are parked hard above their parked suv.,\"march in, county houses with weapons blazing, a building.\",\"turn on as he leans in them, smoking at the pulley of a microphone.\",look into the opposite direction of one of the buses.,gold1-orig,pos,unl,unl,unl,unl,She looks around in alarm as the military arrive in Hummers with heavy machine guns.,Police vehicles\nlsmdc1062_Day_the_Earth_stood_still-100643,15697,Someone gapes with her mouth open behind her visor. An intense beam of white light,sweeps across the ground.,illuminates an old steel clock.,is streaming across the sun toward her cottage.,shines on her face.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone gapes with her mouth open behind her visor.,An intense beam of white light\nanetv_y47RXYfefvQ,6875,He is using a brush to wipe snow off the back windshielf of his car. He,\"glances at the camera, then keeps wiping.\",\"wheels over his car board, toward a strainer with a sponge and a tube of oil.\",\"shows how to apply sunscreen to a sitting boy, standing next to the floor and paving his car.\",is washed along and talking to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,He is using a brush to wipe snow off the back windshielf of his car.,He\nanetv_EhxFw5Eb1VE,3747,\"The male athlete is standing by the two poles, raised his arms up, then jumped on the poles with his arms, while under him, a man pull out a red beam. The athlete perform his exhibition on the poles, he stand on his arms while his feet and legs are extended straight up in the air, he\",\"turns around, swirl, jumped and twist around then jumped on the mat, standing straight.\",dismounts and jumped over the bar and threw the jump and landed on the mat with his arms and legs as a black pose moving,claps his hands up.,performs he poses for a while.,,gold0-orig,pos,unl,unl,pos,n/a,\"The male athlete is standing by the two poles, raised his arms up, then jumped on the poles with his arms, while under him, a man pull out a red beam.\",\"The athlete perform his exhibition on the poles, he stand on his arms while his feet and legs are extended straight up in the air, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6526,5448,The snake appears and slithers through the doorway towards a figure hidden in an armchair. The old man,is engulfed in a flash of green light.,\"leans against a wall, chisel against the wall sheet.\",is auburn - haired as though broken.,cries out wide as flames shoot through through the opening.,\"sleeps on the tiger's lap, staring into the hole.\",gold1-reannot,pos,unl,unl,unl,unl,The snake appears and slithers through the doorway towards a figure hidden in an armchair.,The old man\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72250,18040,\"People stand by the wall, laughing. He\",leaves someone and goes to someone.,walks up and starts to talk.,\"hits the guy in front of someone, coming after them.\",\"stops, blinking and his eyes open.\",grabs his hand and starts running to the door.,gold0-orig,pos,unl,unl,unl,unl,\"People stand by the wall, laughing.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72250,18039,Someone is in the corridor. People,\"stand by the wall, laughing.\",pause for a moment without silence.,are in the room with them.,are walking in the street.,start to come out.,gold1-reannot,pos,unl,pos,pos,pos,Someone is in the corridor.,People\nlsmdc3023_DISTRICT_9-11106,11247,\"As someone struggles on his back, someone loads his gun and steps on the alien's throat. Next to each of his knees, he\",finds two angled cylinders filled with greenish jelly.,\"stays motionless, his hands pulling together between the two boys.\",chases the inspector higher strength faster.,leans wearily back against the tank.,ignites the sword and holds a welding device.,gold0-orig,pos,unl,unl,pos,pos,\"As someone struggles on his back, someone loads his gun and steps on the alien's throat.\",\"Next to each of his knees, he\"\nlsmdc3023_DISTRICT_9-11106,11248,\"Next to each of his knees, he finds two angled cylinders filled with greenish jelly. He inserts his alien hand into one, and a holographic screen\",appears before his eyes.,appears on the quad.,appears with number 9.,appears over the wall.,appears with its patterns above his right eye.,gold0-orig,pos,unl,pos,pos,pos,\"Next to each of his knees, he finds two angled cylinders filled with greenish jelly.\",\"He inserts his alien hand into one, and a holographic screen\"\nlsmdc3023_DISTRICT_9-11106,11246,He takes off his jacket. Someone,sits in the chair.,turns around and aims.,finds his wedding ring.,hurries from the truck.,sets down the queue and goes outside.,gold0-orig,pos,unl,unl,unl,pos,He takes off his jacket.,Someone\nlsmdc3023_DISTRICT_9-11106,11245,\"In the ship, someone approaches a chamber where a pilot seat pops out. He\",takes off his jacket.,applies powder to his lips.,stares at his mother's fluttering wings.,catches something deep in the hole.,\"glances at someone's retreating form, and disappears.\",gold1-orig,pos,unl,unl,unl,pos,\"In the ship, someone approaches a chamber where a pilot seat pops out.\",He\nlsmdc0027_The_Big_Lebowski-63012,3081,\"Someone looks sadly through his window at the policeman rocking back on his heels, his raucous laughter muffled by the glass. People\",\"sit at the bar, someone with a white russian, someone with a beer, and someone eating beer nuts.\",\"can be seen, saying scene to think.\",\"pass someone, who peers up at the house.\",slaps on the other side.,leans precariously on the boat's railing.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks sadly through his window at the policeman rocking back on his heels, his raucous laughter muffled by the glass.\",People\nanetv_k_z03d9w_Mk,16443,The man spins his partner during the dance. The dancers,kick up there feet while dancing.,pose for two violinist - action sports.,are applauding again as the crowd cheers.,hug each other and clap.,,gold1-orig,pos,unl,unl,unl,n/a,The man spins his partner during the dance.,The dancers\nanetv_k_z03d9w_Mk,16442,A woman and man wearing matching green color dance on stage during a performance. The man,spins his partner during the dance.,finish playing - pong and an audience is watching watching him.,sings to a stage and displays.,\"throws three large finish arms, while the crowd claps for them.\",,gold0-orig,pos,unl,unl,unl,n/a,A woman and man wearing matching green color dance on stage during a performance.,The man\nlsmdc0005_Chinatown-48461,12672,\"Her eyes are open, a stream of ants is moving across the ice cream and into her mouth. She\",is recognizable as the woman who posed as someone.,falls asleep on the narrow bed beside her.,leans over and kisses her woman.,speaks to someone who looks at her defiantly.,,gold0-orig,pos,unl,unl,pos,n/a,\"Her eyes are open, a stream of ants is moving across the ice cream and into her mouth.\",She\nlsmdc0005_Chinatown-48461,12669,\"Someone walks on into the kitchen. Clearing the kitchen counter, someone\",\"sees someone lying on her back on the floor, surrounded by the groceries from a broken bag.\",walks around to the counter ignoring a few inner stirring fruit.,takes two haggard drying soap from his hands.,finds someone sitting beside a customer.,looks toward a large kitchen towards it.,gold0-orig,pos,unl,unl,unl,pos,Someone walks on into the kitchen.,\"Clearing the kitchen counter, someone\"\nlsmdc0005_Chinatown-48461,12668,Just inside the kitchen some radishes and onions lie on the linoleum. Someone,walks on into the kitchen.,seizes a ranch - sized bowl and collides with some potatoes and dropping it flat on the tabletop.,is getting his hand into his mouth with a mouthful of mouthwash.,keeps drawing to his face as he totes some food out of the pot.,pulls out someone's pronged gun and hits someone.,gold0-orig,pos,unl,unl,unl,pos,Just inside the kitchen some radishes and onions lie on the linoleum.,Someone\nlsmdc0005_Chinatown-48461,12666,He opens it and enters. It,'s still and empty.,'s blanketed with dirty hands.,shows its taken out.,\"is nearby, looking around with the parcel in his hand.\",closes his eyes as someone returns to his bedroom.,gold0-orig,pos,unl,unl,unl,unl,He opens it and enters.,It\nlsmdc0005_Chinatown-48461,12670,\"Clearing the kitchen counter, someone sees someone lying on her back on the floor, surrounded by the groceries from a broken bag. Ice cream\",has melted around her.,squeezes her arm and waves.,drips down from her hand into the towel and its dotting her feet.,spills out of her case.,sloshes from her palm.,gold0-orig,pos,unl,unl,unl,unl,\"Clearing the kitchen counter, someone sees someone lying on her back on the floor, surrounded by the groceries from a broken bag.\",Ice cream\nlsmdc0005_Chinatown-48461,12671,\"Ice cream has melted around her. Her eyes are open, a stream of ants\",is moving across the ice cream and into her mouth.,chunks out lemons out onto the plate.,fighters on someone's cheeks.,spread across her face as she hurries out.,\"spills out, making them pasty.\",gold0-orig,pos,unl,unl,unl,unl,Ice cream has melted around her.,\"Her eyes are open, a stream of ants\"\nlsmdc0005_Chinatown-48461,12667,It's still and empty. Someone,\"sees something down the hall, under the legs of a telephone table.\",drives aside of someone.,\"crosses a threshold, taking it with the handle.\",\"speaks to the camera, his arm hanging right in front of them.\",,gold1-reannot,pos,unl,unl,pos,n/a,It's still and empty.,Someone\nanetv_CNH37tJNzFE,3425,A close up of a gear shaft is seen following by someone opening a trunk and pulling a tire out. The person,puts a jack under the car and begins unscrewing the tire and taking it off.,holds up a rag used to scrape from his inner bucket while still speaking to him.,then loops around several pucks on the side while the camera captures her movements.,puts the tire on the tire and begins using more rowing.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a gear shaft is seen following by someone opening a trunk and pulling a tire out.,The person\nanetv_CNH37tJNzFE,3426,The person puts a jack under the car and begins unscrewing the tire and taking it off. The person,puts a new tire on and screws it in place while taking off the jack and putting the hubcap back on.,then grabs the shovel and starts jumping onto the bars of the bike.,continues putting the handlebars on the bike and rides off while still speaking.,takes the paintbrush and holds the pieces up to show suits off.,,gold0-orig,pos,unl,unl,unl,n/a,The person puts a jack under the car and begins unscrewing the tire and taking it off.,The person\nanetv_FiJi18WpPe8,8841,A girl in a blue and plaid school uniform stands in a school bathroom brushing her teeth and primping in the mirror. The girl,\"begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth.\",asks the teenage girl to join the natural dancer attempts to rub the back of her head.,is wearing a pink drier with her left hand and he uses a brush to melt the surface of her brush.,\"frowns to herself and shows a toddler and then gives her a thumbs up, and then demonstrates how to do the razor.\",continues to dry her clothes and showing how to talk to the camera before continuing.,gold0-orig,pos,unl,unl,unl,unl,A girl in a blue and plaid school uniform stands in a school bathroom brushing her teeth and primping in the mirror.,The girl\nanetv_FiJi18WpPe8,8842,\"The girl begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth. The girl then\",\"turns towards the bathroom mirror and spits into the bathroom sink, then returns to brushing teeth and facing the camera again.\",begins brushing the girl's teeth.,pushes the brush along a dog and zooms off to him.,comes at a bar for the closing door and a friend who amused will be being drilled with his coach on the ice.,begins wiping her mouth as she tries to comedy a smile and continues going with her leg in the end.,gold0-reannot,pos,unl,unl,unl,unl,\"The girl begins facing the camera and brushing her teeth, leaning in to the camera at one point before leaning back to continue brushing teeth.\",The girl then\nanetv_GG_Bi89pNlg,8335,A person walks forward to a circle while many people stand around her and watch. The woman,spins around and throws the disk while two people measure out her throw.,puts a object around the woman who continues talking to the camera as the camera captures her movements.,gets back on her arms.,continues taking pictures of her mother taking up his picture and looking off into the distance.,continues spinning around and ends by closing pictures.,gold0-orig,pos,unl,unl,unl,pos,A person walks forward to a circle while many people stand around her and watch.,The woman\nanetv_GG_Bi89pNlg,9648,One walks to the circle in the center. She,\"spins in circles, then lets go of the ball before the others join in to measure the distance.\",dives on top of one metal box.,turns over and focuses in the climbing ropes.,turns around and walks up to them.,,gold1-orig,pos,unl,unl,pos,n/a,One walks to the circle in the center.,She\nanetv_GG_Bi89pNlg,9647,Several athletes are gathered inside a fenced area. One,walks to the circle in the center.,walks to the top of a game and talks about the game.,is highly vulnerable in the competition while talking.,is also playing the drums.,uses a lasso to pull out toys.,gold0-reannot,pos,unl,unl,unl,unl,Several athletes are gathered inside a fenced area.,One\nanetv_xlPpP0eVL9A,7907,A woman is talking inside an office. She,is shown giving a facial treatment to an older woman.,is laying on a woman's hair with alcohol and weights.,is cleaning a table on a table.,is drinking from a mug.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is talking inside an office.,She\nlsmdc3048_LITTLE_FOCKERS-23219,16164,\"In the grass, Arthur faces Jinx, who stares at him. The cat\",licks its lips then advances.,stares down at him pergola.,flies past his tail.,looks back at someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the grass, Arthur faces Jinx, who stares at him.\",The cat\nlsmdc3048_LITTLE_FOCKERS-23219,16166,\"As someone races past him after the cat, someone stops. He\",stretches his shoulders back.,holds some brown and white letters to the garden.,stares at the television then tosses the stick aside.,jumps into a large swing on his witches stand.,turns back to his mugger.,gold0-orig,pos,unl,unl,unl,pos,\"As someone races past him after the cat, someone stops.\",He\nlsmdc3048_LITTLE_FOCKERS-23219,16163,\"Meanwhile, someone looks in the shoebox. In the grass, Arthur\",\"faces jinx, who stares at him.\",has two rows of seats.,emt picks up the flare stick.,is on wind twin.,watches someone working off on the lounge roof.,gold0-reannot,pos,unl,unl,unl,unl,\"Meanwhile, someone looks in the shoebox.\",\"In the grass, Arthur\"\nlsmdc3048_LITTLE_FOCKERS-23219,16161,\"Doubled over, someone kicks his leg back and hits someone with it. Someone\",hurls someone to a bouncy castle.,collects it from the helipad.,goes grab a chair to open it.,falls in his chair.,peers into the window.,gold1-reannot,pos,unl,unl,pos,pos,\"Doubled over, someone kicks his leg back and hits someone with it.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5991,12274,\"Lying in a brightly lit hospital room, someone flickers open his eyes. He\",slides his feet to the floor and sits up.,brushes his spikes away and leaves.,\"fidgets, now on the toilet and struggling to control himself.\",pulls the door shut behind him.,,gold0-orig,pos,unl,unl,unl,n/a,\"Lying in a brightly lit hospital room, someone flickers open his eyes.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,412,Looking desperate he turns and faces them. They,stare at him blankly.,find the finished teen wound on their dark head.,walk through a gallery with pedestrians.,move and dive in face - down.,go into the parlor.,gold0-orig,pos,unl,unl,unl,pos,Looking desperate he turns and faces them.,They\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,409,He scuttles down the spiral staircase. Someone,picks up his rucksack.,\"turns to him, then storms through the urban rooms of new york.\",throws the pebble through the first.,\"grabs the shard, grabs him by the collar.\",,gold0-orig,pos,unl,unl,pos,n/a,He scuttles down the spiral staircase.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,425,A Snatcher leaps down in front of him. He,recovers and runs on.,knocks him out and drops the spear with a stick.,\"wiggles, yanks his head close, and now gives someone a kiss.\",knocks against a glass and handrail heavily on the floor.,\"takes his box out, then easily manages to weave it back into his grasp.\",gold0-orig,pos,unl,unl,unl,unl,A Snatcher leaps down in front of him.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,421,A Snatcher aims his wand at someone. It,\"extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together.\",crashes toward the water.,grabs him from the back of the boat and hurls him onto a rooftop.,blows out the rain of minas.,,gold0-orig,pos,unl,unl,unl,n/a,A Snatcher aims his wand at someone.,It\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,420,\"Someone glances behind, trips and falls. He\",scrambles to his feet.,knocks over the tea.,\"walks down the street, then loses his balance.\",towels off the tuxedo.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone glances behind, trips and falls.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,424,Someone ducks under a fallen tree. A Snatcher,leaps down in front of him.,climbs out of the other way.,has a white string in his hand.,reapplies someone's head which floats into the air.,holds a comic in its hands as he positioned themselves.,gold0-orig,pos,unl,unl,unl,unl,Someone ducks under a fallen tree.,A Snatcher\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,426,He recovers and runs on. She,\"fires an explosive from her wand, sending a snatcher to the forest floor.\",kiss off the bench.,lies with a quill.,runs across a squeezing board where people are waiting for him.,,gold0-orig,pos,unl,unl,unl,n/a,He recovers and runs on.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,417,People throw themselves to the floor. Flashes,ricochet off the building as someone runs outside.,merge in the bullpen.,wade downward and an elevator pulls him.,follow the man around to household reload.,are sitting in front of them holding a sax.,gold0-orig,pos,unl,unl,unl,unl,People throw themselves to the floor.,Flashes\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,423,A young Snatcher is in close pursuit of someone. Someone,ducks under a fallen tree.,\"goes to the window, across the road with extreme relief and pain into someone's face.\",\"unharmed, a mist glows brighter.\",is a president.,pulls him back and flips him an good look.,gold0-orig,pos,unl,unl,unl,unl,A young Snatcher is in close pursuit of someone.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,422,\"It extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together. A young Snatcher\",is in close pursuit of someone.,leans to him and sticks his braces on the other side frame.,carries in the city streets.,\"comes from his flesh, forcing his daughter to choke him.\",grabs a folded iron pendant.,gold1-orig,pos,unl,unl,unl,pos,\"It extends with a chain which winds itself around someone's legs, tripping him up and binding his ankles together.\",A young Snatcher\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,416,Death eaters hurtle through the sky towards the house. People,throw themselves to the floor.,run through the solid corridor.,look into their cabin.,gather around the camp.,run from their own gates and surround people.,gold0-orig,pos,unl,unl,pos,pos,Death eaters hurtle through the sky towards the house.,People\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,411,\"They find someone by a window, muttering to himself. He\",rushes to the front door.,puts it into someone's face.,creeps towards a door and sees a light whiz past.,joins snacks on his bed and presses a button.,\"turns round, catching his breath.\",gold1-orig,pos,unl,unl,unl,pos,\"They find someone by a window, muttering to himself.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,415,He fixes his eyes on someone. Death eaters,hurtle through the sky towards the house.,sits on a chair.,watches two men chatting.,stands in his car.,appears on the tracks.,gold1-orig,pos,unl,unl,unl,pos,He fixes his eyes on someone.,Death eaters\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,419,\"Leaving their bags behind, people follow her. Half a dozen Snatchers\",set off in pursuit.,come out of the cab and locks it with a wry stare.,\"cycles up on someone, who sits on a sheet of pink trolley.\",have shoulder - length hair.,reward with sacks and snacks.,gold0-orig,pos,unl,unl,unl,unl,\"Leaving their bags behind, people follow her.\",Half a dozen Snatchers\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,418,Flashes ricochet off the building as someone runs outside. Someone,is hit and falls to the ground.,opens a path podium with a body and put his boys down.,finds someone in his issue office.,witnesses storm bullets on colored asphalt in the opposite area.,,gold0-orig,pos,unl,pos,pos,n/a,Flashes ricochet off the building as someone runs outside.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,428,Another appears in front of her. She,turns and aims her wand at someone.,walks back to his playing several rows of drums and speaking while striding away.,raises her hand and hauls out a line.,is getting out in the bathroom.,,gold1-reannot,unl,unl,unl,unl,n/a,Another appears in front of her.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94439,427,\"She fires an explosive from her wand, sending a Snatcher to the forest floor. Another\",appears in front of her.,pours a shopping bag which is filled with sand.,\"fight again and move through the canvas, legs in front of someone.\",\"taking a flame, someone walks up to the grimhold.\",throws some ball to someone.,gold0-reannot,pos,unl,unl,unl,unl,\"She fires an explosive from her wand, sending a Snatcher to the forest floor.\",Another\nanetv_vgXU0u-rN9c,19353,A man is standing behind a bar with several bottles. He,adds one ingredient at a time to a glass.,sprays with liquor and other ingredients on the table.,pours alcohol out of a glass of water.,begins to use his tools to spray a metal container cover.,drops them on the mat to clean the dishes.,gold0-orig,pos,unl,unl,pos,pos,A man is standing behind a bar with several bottles.,He\nanetv_vgXU0u-rN9c,18318,An alcohol commercial exhibits a waiter preparing mixed drinks at a portable bar at a beach party. A bartender,prepares a mixed drink at a bar using a tumbler and lemon wedge.,holds a cotton ball with a compact of baking water and hits the other glass.,talks to the camera while holding up a machine.,appears while he gathers liquor and rinses at a table without being a sour and pleased customer.,\"raises a drink to his face, then snaps snapshots of the video.\",gold0-reannot,pos,unl,unl,unl,unl,An alcohol commercial exhibits a waiter preparing mixed drinks at a portable bar at a beach party.,A bartender\nanetv_vgXU0u-rN9c,18320,\"The camera pans out and one can now see that the man is wearing the bar platform around his neck, and that the bar is portable. People\",surround him dancing and smiling at a beach party.,is talking to the camera and takes a other hand and stands on the boy's knee and the man lifts it forward successfully.,'s is working for a little bit.,barbell sits up even until it seems candy whose manner is wrong.,walking in the walkway doing some white bikes are going down a ramp of rocks.,gold0-reannot,pos,unl,unl,unl,unl,\"The camera pans out and one can now see that the man is wearing the bar platform around his neck, and that the bar is portable.\",People\nanetv_vgXU0u-rN9c,18319,A bartender prepares a mixed drink at a bar using a tumbler and lemon wedge. The camera pans out and one,\"can now see that the man is wearing the bar platform around his neck, and that the bar is portable.\",pushes a liquor flask and presents the rails of his arm and tastes the drink.,of the ingredients mixes and takes a sip.,takes a drink from a pot of ice and begins to drink it.,shows how to reset presents to the plate.,gold0-reannot,pos,unl,unl,unl,unl,A bartender prepares a mixed drink at a bar using a tumbler and lemon wedge.,The camera pans out and one\nanetv_4r0qYLCucEI,13961,He takes the rubber tire and sprays it with a liquid. Then he,fits the inner rim of the wheel into the tire.,\"smokes his lighter, while he is rubbing it too.\",replaces the tire over the roof.,adds the spray on the board to show how it can be.,,gold0-orig,pos,unl,unl,unl,n/a,He takes the rubber tire and sprays it with a liquid.,Then he\nanetv_4r0qYLCucEI,13959,A man dressed inn a black shirt and camouflage print shorts is demonstrating how to fix the rubber tires on a car wheel rim. He,shows all the tools that are required to do the process.,places a bike out onto the bicycle and pulls into a driveway.,types and uses the tires to dance with the customers.,welds both sides of the bike paper with a wooden stick.,,gold0-orig,pos,unl,unl,unl,n/a,A man dressed inn a black shirt and camouflage print shorts is demonstrating how to fix the rubber tires on a car wheel rim.,He\nanetv_4r0qYLCucEI,13962,Then he fits the inner rim of the wheel into the tire. He,uses a mallet to secure it in tightly.,is placed over putting it.,flips off the bike and grills the bike.,put a new tire on and releases the jump and turns it to finish the rest.,takes the time wrench and hands it to someone.,gold0-orig,pos,unl,unl,unl,unl,Then he fits the inner rim of the wheel into the tire.,He\nanetv_4r0qYLCucEI,13963,Then he uses a torque wrench to tighten the screws further. He,fills in air and checks the tire pressure.,is shown walking up in a circle on the stilts.,uses a lever up to force his left lapel of iron tire to pieces.,steps out to show a somersault.,,gold0-orig,pos,unl,unl,unl,n/a,Then he uses a torque wrench to tighten the screws further.,He\nanetv_4r0qYLCucEI,13960,He shows all the tools that are required to do the process. He,takes the rubber tire and sprays it with a liquid.,sits with his friend sitting on a bench at the end and stares at his sneakers.,can not go after gas he is using the proper way to apply this evenly.,is in pretty careful equipment going across the table.,,gold0-reannot,pos,unl,unl,unl,n/a,He shows all the tools that are required to do the process.,He\nlsmdc3090_YOUNG_ADULT-44052,3174,Someone sprinkles salt onto the side of someone's hand. They each,lick the salt off their own hands then drink the tequila shots.,kneel at their raft.,\"go for one last look, then uncurls a second sack.\",make a huge sandwich.,\"have the combination, full of milk, chocolate, and sugar.\",gold0-orig,pos,unl,unl,unl,unl,Someone sprinkles salt onto the side of someone's hand.,They each\nlsmdc3090_YOUNG_ADULT-44052,3175,They each lick the salt off their own hands then drink the tequila shots. Someone,works at a nearby table.,laughs and walking away.,\"turns and round, slowly moves back to a part of the bookshelf and leans close to the killer.\",lays stiffly joking with her hand.,sits beside her on the upper north the third time.,gold1-orig,pos,unl,unl,unl,unl,They each lick the salt off their own hands then drink the tequila shots.,Someone\nanetv_539ByIcbUPs,3833,\"She places the ice into a glass and adds the lemonade. Lastly, she\",takes a sip of the lemonade she just made.,adds sugar to the dough while finally insert out the lights.,adds the juice into the container and pours sugar into it and breaks the glass mixture onto the table.,pours the spoon out to the cup and fills a hole in water.,\"takes one peppers, and adds the sliced lemons to the bowl.\",gold0-orig,pos,unl,unl,unl,unl,She places the ice into a glass and adds the lemonade.,\"Lastly, she\"\nanetv_539ByIcbUPs,3822,A woman speaks to the camera. Many lemons,fall onto a counter.,are shown on stage.,are seen standing on a table mixing more ingredients.,are shown in a boat.,,gold0-orig,pos,unl,unl,pos,n/a,A woman speaks to the camera.,Many lemons\nanetv_539ByIcbUPs,3830,She pours boiling water into the bowl with brown sugar in it. She,s pours the watered brown sugar into the pitcher and stirs.,pours the pasta into the shaker.,finish cutting the ingredients and mix it together in a hot baking pan.,swirls in sugar into a bowl while jerking the omelette.,takes the potato into the bin.,gold1-orig,pos,unl,unl,unl,unl,She pours boiling water into the bowl with brown sugar in it.,She\nanetv_539ByIcbUPs,3824,The woman grabs a wooden bowl and pours brown sugar into it. She,grabs a lemon and rubs brown sugar all over the lemon.,pours it onto the table and pours it into the bowl.,pours it into the sink as it sets onto the plate.,lays two more cheese on the shredded bread.,\"raises her finger with the glock, shakes it in the clear bottle, then pours it on a blue soda.\",gold0-orig,pos,unl,unl,unl,unl,The woman grabs a wooden bowl and pours brown sugar into it.,She\nanetv_539ByIcbUPs,3831,She s pours the watered brown sugar into the pitcher and stirs. She,breaks ice cubes by hitting them with a spoon.,she hits the ice in the stick and sweeping it around the water.,is with a title filled with a same batch of vanilla and mixing and sugar.,\"pours the spoon into a shaker, grabs the shaker and adds it to the counter.\",goes to a counter with a cup in her aid to make pasta.,gold0-orig,pos,unl,unl,unl,unl,She s pours the watered brown sugar into the pitcher and stirs.,She\nanetv_539ByIcbUPs,3826,\"She proceeds to rub two lemons onto the counter. With a knife, she\",cuts a lemon in half.,puts the napkin on top of the sandwich.,tosses it aside.,applies shredded polish in the corner of her eye.,\"puts paste on her pressurized bowl across fitting wooden toast, lifting the trunk with her hand.\",gold0-orig,pos,unl,unl,unl,unl,She proceeds to rub two lemons onto the counter.,\"With a knife, she\"\nanetv_539ByIcbUPs,3828,She squeezes lemon juice into a bowl. She,pours the squeezed lemon juice into a pitcher.,picks up a juice box.,adds coats and sugar into a juicer.,stirs the powder in a shaker.,puts the mixture on the glass.,gold0-orig,pos,unl,pos,pos,pos,She squeezes lemon juice into a bowl.,She\nanetv_539ByIcbUPs,3832,She breaks ice cubes by hitting them with a spoon. She,places the ice into a glass and adds the lemonade.,is a small half - eaten cake.,candies down on the floor.,drives one finger up liquors into the cup and spits it out.,adds oil and baking soda into a glass on the floor.,gold0-orig,pos,unl,unl,unl,unl,She breaks ice cubes by hitting them with a spoon.,She\nanetv_539ByIcbUPs,3827,\"With a knife, she cuts a lemon in half. She\",squeezes lemon juice into a bowl.,places the knife in the oven and advances.,\"shifts, then lifts her brow and blinks.\",slices through a bowl of lettuce.,then quickly removes the glass.,gold0-orig,pos,unl,pos,pos,pos,\"With a knife, she cuts a lemon in half.\",She\nanetv_539ByIcbUPs,3823,Many lemons fall onto a counter. The woman,grabs a wooden bowl and pours brown sugar into it.,holds a sponge to turn the molder of ingredients together.,scoops a raw vanilla egg into the plate and tilts it forward.,pours syrup into a fruit filled with water.,is talking about the finished product.,gold0-orig,pos,unl,unl,unl,pos,Many lemons fall onto a counter.,The woman\nanetv_539ByIcbUPs,3829,She pours the squeezed lemon juice into a pitcher. She,pours boiling water into the bowl with brown sugar in it.,finishes the drink and hands it to the vet.,takes out the layers quizzically and pours the contents into a cup.,pours more deeply into a glass.,,gold1-reannot,pos,unl,unl,unl,n/a,She pours the squeezed lemon juice into a pitcher.,She\nlsmdc1020_Crazy_Stupid_Love-81483,17169,\"He surveys it, studying the bar and various men and women chatting and flirting with one another. Wet from the rain, he\",steps further into the bar.,leaves the bar to take in her drink.,turns to the mirror again.,holds his briefcase under her arm.,stares down at the pool table as a wave transforms into clouds.,gold0-orig,pos,unl,unl,unl,unl,\"He surveys it, studying the bar and various men and women chatting and flirting with one another.\",\"Wet from the rain, he\"\nlsmdc1020_Crazy_Stupid_Love-81483,17170,\"Wet from the rain, he steps further into the bar. In his bedroom, someone\",\"leans over someone, who lies back on the bed.\",shuts his legs and sneaks out to reach a hallway where someone enters.,sits at the head of the couch then opens the door and looks away from someone.,steps through the rain as water passes above the spacious room.,stares at his reflection in a mirror.,gold1-orig,pos,unl,unl,unl,pos,\"Wet from the rain, he steps further into the bar.\",\"In his bedroom, someone\"\nlsmdc1020_Crazy_Stupid_Love-81483,17167,\"Clearly hypnotized by his move and his good looks, she forces herself to take a step back. Someone\",hurries into the bar.,has stopped the prison agents working.,goes to the far door.,\"bites her lower lip, staring down coyly.\",\"closes the door, then cautiously crosses the hall.\",gold1-orig,pos,unl,pos,pos,pos,\"Clearly hypnotized by his move and his good looks, she forces herself to take a step back.\",Someone\nlsmdc1020_Crazy_Stupid_Love-81483,17163,\"Then she lifts them up. Slowly, he\",\"spins around, then stops.\",takes the paper and spits it.,purses his lips then listens gravely.,flips it under his arm.,,gold0-orig,pos,unl,unl,unl,n/a,Then she lifts them up.,\"Slowly, he\"\nlsmdc1020_Crazy_Stupid_Love-81483,17168,Someone hurries into the bar. He,\"surveys it, studying the bar and various men and women chatting and flirting with one another.\",\"glances at someone, who smiles soberly.\",takes off his glasses and puts it to someone's mouth.,takes out his earpiece.,smiles at a girl standing behind her.,gold0-orig,pos,unl,unl,pos,pos,Someone hurries into the bar.,He\nlsmdc1020_Crazy_Stupid_Love-81483,17164,He lets her fall into his arms so she is pressed up against his body. He,lets her slide gently down until her feet touch the floor.,flicks his arms.,\", a little someone pulling toward him and she rubs her chest.\",\", someone comes around a desk.\",,gold1-orig,pos,unl,unl,unl,n/a,He lets her fall into his arms so she is pressed up against his body.,He\nlsmdc1020_Crazy_Stupid_Love-81483,17165,He lets her slide gently down until her feet touch the floor. He,presses his forehead against hers.,unrolls from a safe.,straightens the book's invitation.,\"lets her wet hair over the top of her head, mouths, and does a double take.\",\"looks out toward the window, smiling faintly, then looks at someone and satisfied.\",gold0-orig,pos,unl,unl,unl,unl,He lets her slide gently down until her feet touch the floor.,He\nlsmdc1020_Crazy_Stupid_Love-81483,17166,\"He presses his forehead against hers. Clearly hypnotized by his move and his good looks, she\",forces herself to take a step back.,\"continues to stare straight into space to see herself, golden, new etcetera and among which people flash for her.\",\"circles the instrument, raising her head too close.\",turns to face the center of the room and looks from the door.,touches his hand and pulls upward.,gold0-orig,pos,unl,unl,unl,unl,He presses his forehead against hers.,\"Clearly hypnotized by his move and his good looks, she\"\nanetv_P1Ve5WrfTb8,14382,A boy in blue does an extraordinary flip in the air after catching the ball and lands. He,throws the ball back at the other kid after landing.,continues to try to hit the ball on the wall.,kicks his legs out of the frame.,gathers the decorations using a toy bat.,,gold0-orig,pos,unl,unl,unl,n/a,A boy in blue does an extraordinary flip in the air after catching the ball and lands.,He\nanetv_P1Ve5WrfTb8,14383,He throws the ball back at the other kid after landing. They,are being watched by a group of kids standing behind them.,fly from the wall again.,fly out of the arena opposite them.,get out of the waiting limo.,\"watches him, then shoots.\",gold0-orig,pos,unl,unl,unl,unl,He throws the ball back at the other kid after landing.,They\nanetv_Z0eBz6QsI-c,5752,A small group of men are seen wandering around a close room hitting a ball around. The men,walk around the room holding tennis rackets and hitting a ball.,continue playing until the people grab arms up as well as speaking to one another.,play playing balls and hitting a ball on another.,walk up and down the field while others watch on the side while the kids continue to play.,hit the ball back and fourth around the area with others watching on the side.,gold0-orig,pos,unl,unl,unl,pos,A small group of men are seen wandering around a close room hitting a ball around.,The men\nanetv_Z0eBz6QsI-c,16720,Four men are in a racquetball court walking around. the four men,stop walking as one man serves the ball.,hammer the ball to the referee to the left and they hit each other.,shake hands and end on a mat wearing boxing shoes.,have prepared to perform a game in the court before running out.,jump up and down.,gold0-orig,pos,unl,unl,pos,pos,Four men are in a racquetball court walking around.,the four men\nanetv_Z0eBz6QsI-c,5753,The men walk around the room holding tennis rackets and hitting a ball. The men,continue walking around the room and hitting the ball.,continue throwing after one another after another hitting the ball.,talk to each other again about the game.,push the ball back and fourth against one another.,hit the ball back and fourth at each other.,gold1-reannot,pos,unl,unl,unl,pos,The men walk around the room holding tennis rackets and hitting a ball.,The men\nanetv_WdX_4wwtkGg,19301,A man wearing a hat is seen holding up a harmonica and begins playing with his hands. He,continues playing the instrument to the camera and ends with him putting the instrument down then holding it up again.,moves the object all around the room and holds himself up.,slowly dances himself together and continues to talk to the camera.,continues to sit around the stage and ends by bending across the stage and looks back again and smiles to the camera.,stops playing and begins playing the drum set.,gold1-orig,pos,unl,unl,unl,unl,A man wearing a hat is seen holding up a harmonica and begins playing with his hands.,He\nlsmdc1062_Day_the_Earth_stood_still-100943,3185,\"As the agent watches, the window glass is attacked. A massive jet of flame\",roars up a chamber.,appears on the tinted silver of steel.,approaches a lit club.,bounces close to rocks and sinks.,appears on a white sky.,gold0-orig,pos,unl,unl,unl,unl,\"As the agent watches, the window glass is attacked.\",A massive jet of flame\nlsmdc1062_Day_the_Earth_stood_still-100943,3189,But it rose inexorably down the hill side towards them. Men,start to run as the cloud reaches them.,in the sprinkled back orange singing listens as they march down the street together.,are seated on a dining table and campfire.,\"in through the obstacle in the water, people crazily in the tunnel as someone runs down a steep track.\",\"the gun to someone in his hands, he limps toward the hall and runs out of the room.\",gold1-orig,unl,unl,unl,unl,unl,But it rose inexorably down the hill side towards them.,Men\nlsmdc1062_Day_the_Earth_stood_still-100943,3188,Vast pressure is straining the massive steel doors of the facility. They burst open and one,is hurled high in the air.,climbs into the low boat.,avail peeks through his flowing eyelashes.,fall into a barbershop.,,gold0-orig,pos,unl,unl,unl,n/a,Vast pressure is straining the massive steel doors of the facility.,They burst open and one\nlsmdc1062_Day_the_Earth_stood_still-100943,3187,Huge array of men in vehicles has assembled nearby. Vast pressure,is straining the massive steel doors of the facility.,moves a cigarette in front of someone.,is laid out on a small spf painted in veins.,is being prepared on various shelves.,rises on a rocky hill - fom roofs.,gold0-orig,pos,unl,unl,unl,unl,Huge array of men in vehicles has assembled nearby.,Vast pressure\nlsmdc1062_Day_the_Earth_stood_still-100943,3186,The agent stares in fear as gort raises his massive hands to show he is free. Gort,dissolves becoming a cloud of bugs which fills the flash chamber.,takes the gold sword from his pocket.,takes a single drag and plods to a manner of oak trees near new york.,remains on the cot with his gloved hands.,appear to be grecian.,gold0-orig,pos,unl,unl,unl,unl,The agent stares in fear as gort raises his massive hands to show he is free.,Gort\nlsmdc1062_Day_the_Earth_stood_still-100943,3184,\"The man's suit, air canister, and body are being eaten away. The massive steel bands holding gort\",are also being eaten away.,are streaming away as a ringed owl signs into a delivered.,\"continues the violent attack, revealing someone as a hooded figure steps down slowly on the sidelines.\",unloaded into desks and cover - barrels and filing them into the cabin.,'s canvases are pushed up amongst them.,gold0-reannot,pos,unl,unl,unl,pos,\"The man's suit, air canister, and body are being eaten away.\",The massive steel bands holding gort\nlsmdc3029_GREEN_ZONE-13423,13559,A white suv charges up the street then breaks by the man in the taupe suit. The bystander,gets in his dusty car.,tries to get the supervising match to fight and shakes it again.,watches as raindrops fall from the rocks in the armored car and pant legs rise out from the ground.,\"holds the boy up to him, aiming his gun gun.\",wee the onlooker approaching and looks at his wrist.,gold0-orig,pos,unl,unl,unl,unl,A white suv charges up the street then breaks by the man in the taupe suit.,The bystander\nlsmdc3029_GREEN_ZONE-13423,13560,An older bald gentleman respectfully kisses someone cheeks. Another older man,offers him the same greeting.,surround the other man hair and sits up at a desk.,rubs the mustache and widens someone.,\"steps forward, accompanied by his fellow students as well.\",,gold0-orig,pos,unl,unl,unl,n/a,An older bald gentleman respectfully kisses someone cheeks.,Another older man\nlsmdc3029_GREEN_ZONE-13423,13558,\"Someone coldly shuffles his paperwork. Now in a quiet residential neighborhood, an Iraqi man in a taupe suit\",patrols the sidewalk with an assault rifle.,approaches a pair of exposed glass frame.,walks back against a truck.,approaches a wooden timer in the corner.,walks through a utility facility.,gold1-orig,pos,unl,unl,unl,unl,Someone coldly shuffles his paperwork.,\"Now in a quiet residential neighborhood, an Iraqi man in a taupe suit\"\nanetv_dsYLNeumBig,3219,She is using a small vacuum cleaner. She,demonstrates how to use the vacuum as she talks.,soaks the vacuum using the mop.,starts to vacuum the vacuum with a brush.,sizes up her clothes and then walks up a wooden tier.,takes a cleaner hair over the brush.,gold0-orig,pos,unl,unl,unl,unl,She is using a small vacuum cleaner.,She\nanetv_nTsXn3oHf_8,17810,A small boy plays on a stair stepper in a store. We,back up and see the boys legs.,of little foreign player throws balls to a sand space in front of them and then come back.,\"goes on, are shown riding on some of the rafts.\",the young man is sitting in the front canoe.,on a balcony and rolls the camera kid up and down it down again.,gold0-orig,pos,unl,unl,unl,unl,A small boy plays on a stair stepper in a store.,We\nanetv_nTsXn3oHf_8,17811,We back up and see the boys legs. The camera,zooms in on the boy again.,changes back to the angle of the moves as the second skiier goes from between the bars.,shows the two dogs tied up to her lap.,returns to the next person knitting.,,gold0-reannot,pos,pos,pos,pos,n/a,We back up and see the boys legs.,The camera\nanetv_fVBXRUWEyoA,19255,A woman sits on a couch and clips the front and back paws of an orange and a black and white cat as they sit in her lap. An orange cat,stands on a couch and sniffs the cushions.,is sitting on the ground next to her knitting.,begins recording the woman about how it's easy to paint.,is seen sitting at its far end and mounted the front paws.,spreads her legs as she continues clipping her nails.,gold0-orig,pos,unl,unl,unl,pos,A woman sits on a couch and clips the front and back paws of an orange and a black and white cat as they sit in her lap.,An orange cat\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70551,15057,\"People's party - - consisting of a supply truck, tank and various other vehicles - - all moving along through the ramble of this box canyon. People\",travel in the open car.,checks another rule control which someone reads into it without to be any audio.,\"doors leap the ends of the roof, which leads to the ss lieutenant.\",load their boards up.,,gold0-reannot,pos,unl,unl,pos,n/a,\"People's party - - consisting of a supply truck, tank and various other vehicles - - all moving along through the ramble of this box canyon.\",People\nlsmdc1020_Crazy_Stupid_Love-81504,12378,\"In the garage, someone sits in the massage chair, wrapped in a sheet. They\",lie on the bed laughing.,pull on the step.,are standing facing the girls.,gives someone the bottle an down again.,are all stuffed bags in their bag.,gold0-reannot,pos,unl,unl,unl,unl,\"In the garage, someone sits in the massage chair, wrapped in a sheet.\",They\nlsmdc0011_Gandhi-53096,13357,\"We see surly knots of belligerent rowdies, mostly young, but not all, hanging on the fringes as we move over the heads of the mass of listening people to a platform where someone speaks. People and others\",sit on the floor behind him.,\"run in and out all the snow, each noticing a twisted rail car.\",\"come apart, where two of them are arriving with cleaning supplies.\",\"try to stand, surprise for the americans tend to their table.\",\"and other people, someone, are watching them.\",gold1-reannot,pos,unl,unl,unl,unl,\"We see surly knots of belligerent rowdies, mostly young, but not all, hanging on the fringes as we move over the heads of the mass of listening people to a platform where someone speaks.\",People and others\nanetv_GldxuTsExZM,9000,He scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side. He,cuts around the marker lines and puts a candle inside to make a jack o lantern.,puts the screwdriver onto the jack and adds ice from tissue to a hard attached.,zooms the hedge on a stump and begins cutting the grass with a stick.,continues pushing the painting and ends by smiling to the camera.,spreads out the jack and puts it onto the wall and falls away from the letter pile.,gold0-orig,pos,unl,unl,unl,unl,He scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side.,He\nanetv_GldxuTsExZM,8998,A person holding a moose moves the puppet and leads into someone opening a box. The person,pulls pumpkins out of the box and cuts a circle around the top.,\"walks over the tire, and puts a piece of wooden around the floor.\",takes out several equipment and hops off the roof.,continues smooth paint and paints up.,,gold0-reannot,pos,unl,unl,unl,n/a,A person holding a moose moves the puppet and leads into someone opening a box.,The person\nanetv_GldxuTsExZM,8999,The person pulls pumpkins out of the box and cuts a circle around the top. He,scoops the seeds out of the pumpkin while using the moose and uses a marker to draw on its side.,captures the tools and shows a more near out of the area.,get the halves and sticks them into a hole.,goes in the dresser.,squeezed out dough and rolling nails into it.,gold0-reannot,unl,unl,unl,unl,unl,The person pulls pumpkins out of the box and cuts a circle around the top.,He\nanetv_dVcnkTR5EBE,11450,A man wearing a blue sweater walks from a warehouse to the camera. The man,explains how to use an remove ice from a car windshield.,uses a paintball gun on a table to hit him.,uses a very long razor to shave his leg.,dives and knocks the man over and along the roof.,\"opens a pool and pulls a rod, then another.\",gold1-orig,pos,unl,unl,unl,unl,A man wearing a blue sweater walks from a warehouse to the camera.,The man\nanetv_dVcnkTR5EBE,11451,The man explains how to use an remove ice from a car windshield. The man,brushes snow from the windshield.,sticks the jack ready.,watches the woman strip close to a young piece of debris.,paints the exterior of the shop device.,,gold0-orig,pos,unl,unl,unl,n/a,The man explains how to use an remove ice from a car windshield.,The man\nanetv_dVcnkTR5EBE,2503,\"He shows a water bottle he has along with a brush, and uses the brush to remove snow from the dash window of a car and the water to remove any excess snow left on the windshield. Once finished, he\",speaks to the camera.,stops and talks to the camera again.,picks the board down and positions the contents for the camera.,\"turns, and proceeds to make the show two times for a better view of the maintenance.\",,gold1-orig,unl,unl,unl,unl,n/a,\"He shows a water bottle he has along with a brush, and uses the brush to remove snow from the dash window of a car and the water to remove any excess snow left on the windshield.\",\"Once finished, he\"\nanetv_dVcnkTR5EBE,11452,The man brushes snow from the windshield. The man,pours water directly onto the windshield that has ice on it.,exits the vehicle using a hose to rub to the ski.,moves back and then switches to another light close.,walks out of the tile.,peels an old tire and dips the other brush into a pale object.,gold0-reannot,pos,unl,unl,unl,unl,The man brushes snow from the windshield.,The man\nanetv_CUJJViubZ9c,4248,Wrestlers are fighting in a ring. A man,is picked up and thrown down by other men.,throws the ball in a field and the men start wrestling with each other.,is getting ready to start bullfighting.,is standing in a ring.,,gold1-orig,pos,unl,unl,pos,n/a,Wrestlers are fighting in a ring.,A man\nanetv_CUJJViubZ9c,4249,A man is picked up and thrown down by other men. A man,falls on a table and breaks it.,pulls a shirt out of a garage.,is seen falling off onto the side of a track and drops a rope behind him.,is walking around the table talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A man is picked up and thrown down by other men.,A man\nanetv_x2uByejBIiY,9972,She fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts. She,mixes them all together and shows off several plates in the end.,mixes the cooking ingredients together and cutting into the cheese.,begins giving some noodles and then continues talking about how to make a cocoa dish.,makes the rest of the pasta out of the oven as well as speaking and gobs out the cookies.,\"just added malibu as well as the young woman, stirs the pasta in the pan and starts stirring it around in the pot.\",gold1-orig,pos,unl,unl,unl,unl,She fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts.,She\nanetv_x2uByejBIiY,9971,A woman is seen holding ingredients in their hands while speaking to the camera and boiling water. She,fries nuts on a pan and pours them on a plate while mixing more ingredients into a pan and pouring it over the nuts.,is seen looking to the camera and working out in a room.,continues walking into a room followed by washing skis and others watch them.,dips the limes into a bowl before beginning to put the potatoes into a cup and snatches by a large piece of food.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seen holding ingredients in their hands while speaking to the camera and boiling water.,She\nanetv_3vVhq-v5-wM,14521,A person is seen grabbing a bowling ball and winding his arm while other people bowl around him. The man,throws the ball and hits several pins while running back and cheering to the camera.,picks the ball up with his hands and continues drinking up and kicking it around.,continues throwing the other down and then gets hit by the ball.,continues punching the object with the tennis mallet.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen grabbing a bowling ball and winding his arm while other people bowl around him.,The man\nlsmdc3046_LARRY_CROWNE-21453,2739,\"The instructor gazes out at their expectant faces, then gives an indifferent shrug. She\",writes on a chalkboard in front of them.,sets her hat tightly on a spear.,holds it up to greet her as she watches.,looks into her sister's anguished eyes.,watches as someone hides a menacing look in the mournful face of robot.,gold0-orig,pos,unl,unl,unl,unl,\"The instructor gazes out at their expectant faces, then gives an indifferent shrug.\",She\nlsmdc3046_LARRY_CROWNE-21453,2737,She strides to the front of the class. He,watches from a front desk off to one side.,steps back to foot behind his desk and joins his officer.,passes over and pulls someone aside.,grins politely as his wife returns with a bouquet.,hands out a box of papers.,gold0-orig,pos,unl,unl,unl,pos,She strides to the front of the class.,He\nlsmdc3046_LARRY_CROWNE-21453,2735,Someone bursts in through another door. The students,follow his gaze to their professor.,haul someone towards a customer.,face the water tower.,stop and listen to a policeman squatting.,,gold0-orig,pos,unl,pos,pos,n/a,Someone bursts in through another door.,The students\nlsmdc3046_LARRY_CROWNE-21453,2738,He watches from a front desk off to one side. The instructor,\"gazes out at their expectant faces, then gives an indifferent shrug.\",sets the drummers violin.,is now seated on the davenport.,watches him walk into a pose.,,gold0-orig,pos,unl,unl,pos,n/a,He watches from a front desk off to one side.,The instructor\nlsmdc3046_LARRY_CROWNE-21453,2734,The students stare at her. Someone,bursts in through another door.,lowers her phone and listens at the women.,snuggles up beside the bed.,\"smiles at someone, who turns on her side, facing up.\",looks up at the noise behind the boy.,gold0-orig,pos,unl,unl,unl,unl,The students stare at her.,Someone\nlsmdc3046_LARRY_CROWNE-21453,2733,She enters and looks around. She,counts the meager number of students.,leaps from her table and picks up a alcohol bottle.,sets a pedestal bag over towel and hurries out.,picks up her wand and ignites a chicken.,turns the corner and looks in through the window.,gold0-orig,pos,unl,unl,unl,pos,She enters and looks around.,She\nlsmdc3046_LARRY_CROWNE-21453,2736,The students follow his gaze to their professor. She,strides to the front of the class.,ducks as behind him reading.,leans forward to remove his mustache.,leans forward and hands a can of flowers to her own.,turns round and looks to the door behind him.,gold0-orig,pos,unl,unl,unl,pos,The students follow his gaze to their professor.,She\nlsmdc3046_LARRY_CROWNE-21453,2732,Someone eyes his belted khakis. She,enters and looks around.,\"averts his eyes, then spots someone in his backpack.\",sits up and digs in someone's pocket.,crouches and puts on his pants.,stares at someone's wide - eyed gaze.,gold1-reannot,pos,unl,unl,unl,unl,Someone eyes his belted khakis.,She\nlsmdc3055_PROMETHEUS-26944,3892,\"As she gets down from the table, she falls briefly, clutching her abdomen. Someone\",races from the room but almost immediately collapses against the wall in pain.,offers someone a knife.,rolls over his legs.,listens down with a look.,struggles to free herself.,gold0-orig,pos,unl,unl,unl,pos,\"As she gets down from the table, she falls briefly, clutching her abdomen.\",Someone\nlsmdc3055_PROMETHEUS-26944,3910,\"Someone scoots down, flattening her head to one side it passes under the flailing alien. Reaching the end of the table she quickly\",rushes around to the outer control panel.,produces dozens of victims's children.,releases the dragon and forces it upward.,\"grabs the diary, overtakes it, then grabs out a lamp.\",pushes a way to one of the rooms.,gold0-orig,pos,unl,unl,unl,pos,\"Someone scoots down, flattening her head to one side it passes under the flailing alien.\",Reaching the end of the table she quickly\nlsmdc3055_PROMETHEUS-26944,3894,\"Someone quickly removes her white hospital gown, revealing her bandage - like underwear, and grabs two auto - injectors. She\",holds one in her mouth as she stabs her thigh with the other.,is floating on a weakly glass chair.,notices the big check on the monitor.,\"takes off her shoe, picks it up and looks at the floor.\",appears in a aerosol laden and ripped fabric.,gold0-orig,pos,unl,pos,pos,pos,\"Someone quickly removes her white hospital gown, revealing her bandage - like underwear, and grabs two auto - injectors.\",She\nlsmdc3055_PROMETHEUS-26944,3905,\"Her head relaxes back, then tenses again as the forceps dip into her open abdomen. The forceps\",slowly pull the creature out.,lifts her leg up as she trims her hair.,\"attacks someone's former, incredulous someone.\",continues to explode in circles with the foliage.,jams the car into falls.,gold0-orig,pos,unl,unl,unl,unl,\"Her head relaxes back, then tenses again as the forceps dip into her open abdomen.\",The forceps\nlsmdc3055_PROMETHEUS-26944,3887,Taking a few deep breaths she drifts off to sleep. She,lies asleep on her side.,gets in and watches him fall.,looks at someone's foot clock.,moves through the living room and down a hallway.,freezes with her mouth agape.,gold0-orig,pos,unl,pos,pos,pos,Taking a few deep breaths she drifts off to sleep.,She\nlsmdc3055_PROMETHEUS-26944,3888,She lies asleep on her side. A hand in an oversized yellow glove,gives her cheek a few brisk taps.,talks on the cigarette screen.,is leaning against the door her way.,pushes an infant against her red hand.,starts busily in her cell phone.,gold0-orig,pos,unl,unl,unl,unl,She lies asleep on her side.,A hand in an oversized yellow glove\nlsmdc3055_PROMETHEUS-26944,3897,\"As the two bottom sections of the lid come together like a set of doors, the upper section lowers down over the patient. As the med pod lowers back down, someone\",scoots herself into position.,lifts three treads overhead.,\"'s in the flow of carriage, having picked up the carpet but does n't manage it, then plays it out of it with\",\"swims up the shaft of the cropped - haired zebra, hair out through it while binoculars.\",\"types again, then lifts his arms, one at a time.\",gold0-orig,pos,unl,unl,unl,unl,\"As the two bottom sections of the lid come together like a set of doors, the upper section lowers down over the patient.\",\"As the med pod lowers back down, someone\"\nlsmdc3055_PROMETHEUS-26944,3889,\"As a crewman in a containment suit approaches, someone whacks him with a metal object, then heads forward. As the crewman forces her down, someone\",presses up on the plastic covering his face.,bows for the girls.,hooks her feet behind her back.,crashes her against the railing.,,gold0-orig,pos,unl,pos,pos,n/a,\"As a crewman in a containment suit approaches, someone whacks him with a metal object, then heads forward.\",\"As the crewman forces her down, someone\"\nlsmdc3055_PROMETHEUS-26944,3891,\"She kicks him off of her. As she gets down from the table, she\",\"falls briefly, clutching her abdomen.\",walks into a wooden hut and tosses through the field.,slips him away and flings them into a cup.,dips to take off her helmet.,\"hits a back, and she bounces off painfully.\",gold0-orig,pos,unl,unl,unl,unl,She kicks him off of her.,\"As she gets down from the table, she\"\nlsmdc3055_PROMETHEUS-26944,3900,A robotic arm equipped for surgical tools sprays anesthetics across her stomach below her belly button. One of the arms,performs a precision cut with a laser.,lifts to their knees in slow sections and the thanks do the moves.,holds a hand gestures to the man.,drop unsteadily from the floor.,zooms up while the other comes over and fades.,gold0-orig,pos,unl,unl,unl,unl,A robotic arm equipped for surgical tools sprays anesthetics across her stomach below her belly button.,One of the arms\nlsmdc3055_PROMETHEUS-26944,3890,\"As the crewman forces her down, someone presses up on the plastic covering his face. She\",kicks him off of her.,stands on her toes and grips the wheel.,walks out of the mastermind's study and walks out.,punches someone in the face and tucks his lips behind his back.,walks back to conclude.,gold0-orig,pos,unl,unl,unl,unl,\"As the crewman forces her down, someone presses up on the plastic covering his face.\",She\nlsmdc3055_PROMETHEUS-26944,3903,\"Someone's mouth opens wide in a pained someone. As they lower toward her, someone\",gives herself another injection.,\"returns for the door, looks at her and sighs.\",looks to someone first then looks on with a welcoming look.,and someone step inside and they touch the ground.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's mouth opens wide in a pained someone.,\"As they lower toward her, someone\"\nlsmdc3055_PROMETHEUS-26944,3882,Her mouth opens wide and she doubles over. Someone,injects her in the back of the shoulder.,picks up a card of money displaying fallen newspaper and shoves the clerk into the drawer.,\"presses his mouth to his right hand, wagging his back, as they enter.\",runs to the bar where a penguin approaches her and knocks.,\"wears her as he walks toward her door, his gun held tightly.\",gold0-orig,pos,unl,unl,unl,unl,Her mouth opens wide and she doubles over.,Someone\nlsmdc3055_PROMETHEUS-26944,3893,Someone arrives in the room housing Vickers' med pod. She,uses its touchscreen panel.,lets out a peace sign.,stops and briefly muted her stare.,crashes through a hole in the floor.,,gold1-orig,pos,unl,unl,unl,n/a,Someone arrives in the room housing Vickers' med pod.,She\nlsmdc3055_PROMETHEUS-26944,3911,\"The doors close back up, trapping the baby alien inside, and a white mist fills the chamber. Someone\",sinks to her knees and catches her breath.,stretches close and display her crotch.,turns off the lamp on a thick rug.,frees a goblet out of her eye.,gulps down some of the fireballs.,gold0-orig,pos,unl,unl,unl,unl,\"The doors close back up, trapping the baby alien inside, and a white mist fills the chamber.\",Someone\nlsmdc3055_PROMETHEUS-26944,3909,Flailing its tentacles it tries to free itself from the forceps' grip. The med pot starts to tilt upright and someone,slams a button beside her.,lifts it up with a cloth.,careens forward in any flash.,ducks into the dark.,gets up to go.,gold1-orig,pos,unl,unl,unl,pos,Flailing its tentacles it tries to free itself from the forceps' grip.,The med pot starts to tilt upright and someone\nlsmdc3055_PROMETHEUS-26944,3884,\"He lifts her limp body back on to the table. As someone shifts to lie on her back, someone\",gazes down at her.,runs up to her.,politely opens the card.,dozes on a choke brace.,sits back in bed.,gold0-orig,pos,unl,unl,unl,pos,He lifts her limp body back on to the table.,\"As someone shifts to lie on her back, someone\"\nlsmdc3055_PROMETHEUS-26944,3904,\"As they lower toward her, someone gives herself another injection. Her head\",\"relaxes back, then tenses again as the forceps dip into her open abdomen.\",offers a camcorder as she glances across at the road.,peers back and forth between the water.,breaks from a choke hold.,drops to one side as the lift crewman steadies her.,gold0-orig,pos,unl,unl,pos,pos,\"As they lower toward her, someone gives herself another injection.\",Her head\nlsmdc3055_PROMETHEUS-26944,3899,\"She makes a few selections from a touch screen, projected over her head. As her stomach bulges up normally an image of the alien fetus\",appears on the screen before her.,\"bears her chest, tutorial.\",frozen with foam about the wall history.,commands the overhead aircraft.,her from the death someone crawls to him.,gold0-orig,pos,unl,unl,unl,unl,\"She makes a few selections from a touch screen, projected over her head.\",As her stomach bulges up normally an image of the alien fetus\nlsmdc3055_PROMETHEUS-26944,3881,She scoots off the table. She,taps buttons on the exam table's panel.,sleeps with a pillow beneath his chin.,sits at the end of the pen.,is now cutting a pair of metal cupcakes.,bends at her hips for a moment to pick off the last letter.,gold0-orig,pos,unl,unl,unl,unl,She scoots off the table.,She\nlsmdc3055_PROMETHEUS-26944,3895,She holds one in her mouth as she stabs her thigh with the other. She,limps over to the med pod and positions herself on the upright table under a curved scanner.,withdraws a gun into the top of someone's head and playfully snuggles someone in.,rips it off and wipes it with a towel.,pours it into the mug glass then puts the contact into her eye.,\"takes off the makeup and looks at each section over her slim shoulder, then comes to look at the tiny puppy tattooed nearby.\",gold0-orig,pos,unl,unl,unl,unl,She holds one in her mouth as she stabs her thigh with the other.,She\nlsmdc3055_PROMETHEUS-26944,3885,\"As someone shifts to lie on her back, someone gazes down at her. A tear falls from someone's eye and she\",shakes her head in confusion.,falls back into her seat and puts out the bag.,shakes her head at someone.,leans back against it.,walks into the salon.,gold1-orig,pos,pos,pos,pos,pos,\"As someone shifts to lie on her back, someone gazes down at her.\",A tear falls from someone's eye and she\nlsmdc3055_PROMETHEUS-26944,3883,Someone injects her in the back of the shoulder. He,lifts her limp body back on to the table.,gently strokes behind her.,brings hers down and caresses her arm.,stabs her into his chest and smiles to herself.,lifts her free to someone and tosses him away.,gold0-orig,pos,unl,unl,unl,unl,Someone injects her in the back of the shoulder.,He\nlsmdc3055_PROMETHEUS-26944,3898,\"As the med pod lowers back down, someone scoots herself into position. She\",\"makes a few selections from a touch screen, projected over her head.\",finds himself staring ahead with a furrowed brow as she leaves his side.,\"lifts her left hand, over her chin, and dips her silver through her hair.\",slaps the back of someone's neck.,,gold0-orig,pos,unl,unl,pos,n/a,\"As the med pod lowers back down, someone scoots herself into position.\",She\nlsmdc3055_PROMETHEUS-26944,3908,Above her the alien baby wriggles more vigorously. Flailing its tentacles it,tries to free itself from the forceps' grip.,smashes the windshield with a fire extinguisher.,hefts itself together while someone crawls beneath.,grinds the stick and mossy onto someone's tongue.,,gold1-orig,pos,unl,unl,unl,n/a,Above her the alien baby wriggles more vigorously.,Flailing its tentacles it\nlsmdc3055_PROMETHEUS-26944,3907,Relaxing a bit someone lifts her head of the table and stares slack - jawed. The sac brakes,open splattering her with bloody fluid and revealing the squid - like alien.,show more empty have placed in the foreground.,are tracking with the scissor.,\"is vain, and dank and staircases go backstage, going down her dealers.\",,gold0-orig,pos,unl,unl,unl,n/a,Relaxing a bit someone lifts her head of the table and stares slack - jawed.,The sac brakes\nlsmdc3055_PROMETHEUS-26944,3906,The forceps slowly pull the creature out. Relaxing a bit someone lifts her head of the table and,stares slack - jawed.,runs to the curtained windows.,\"takes a third stance, then suddenly stunned.\",gently tilts it toward her.,takes off his hood.,gold1-orig,pos,unl,unl,unl,unl,The forceps slowly pull the creature out.,Relaxing a bit someone lifts her head of the table and\nlsmdc3055_PROMETHEUS-26944,3896,\"She limps over to the med pod and positions herself on the upright table under a curved scanner. As the two bottom sections of the lid come together like a set of doors, the upper section\",lowers down over the patient.,fills the circuit landing shaft.,hangs above a thick black coconut.,opens with the rows of ankle bones bare on it.,dips beneath the excess water.,gold0-reannot,pos,unl,unl,unl,unl,She limps over to the med pod and positions herself on the upright table under a curved scanner.,\"As the two bottom sections of the lid come together like a set of doors, the upper section\"\nlsmdc3055_PROMETHEUS-26944,3901,One of the arms performs a precision cut with a laser. Someone,arches her head way back.,appear to play with a woman in the hair.,proudly's doing a short routine of his routine.,points the pistol at the guard's office.,,gold0-reannot,pos,unl,unl,pos,n/a,One of the arms performs a precision cut with a laser.,Someone\nanetv_E4yf1mz4ij0,10841,An athlete is seen walking into a circle and preparing himself to throw a shot put. The man,throws the object several times after spinning around and several people watching on the sidelines.,spins his body around in slow motion while continuing to kick the ball.,continues running around and throwing another javelin.,then ties a ball away and throws an object off into the distance.,begins teetering on the board while he gets stuck and claps for the audience.,gold0-reannot,pos,unl,unl,unl,unl,An athlete is seen walking into a circle and preparing himself to throw a shot put.,The man\nanetv_VRRLOIP6EmA,16618,A group of surfers are riding the waves in the ocean. A large wave,knocks some of them over.,is running on the waves.,bounces over the water wave.,falls under the water.,is shown on the screen.,gold0-orig,pos,unl,unl,pos,pos,A group of surfers are riding the waves in the ocean.,A large wave\nanetv_VRRLOIP6EmA,9657,\"A surfer goes through the waves of an ocean, riding a wave. The wave\",\"crashes over the surfers, knocking them off their boards.\",crashes rising water under the trees as he plays.,is shown again jumping over the surface of the water.,drives into the top of a waterfall.,arrives at a great speed and the wave passes through it to wash the surf with their sails.,gold0-orig,pos,unl,unl,unl,unl,\"A surfer goes through the waves of an ocean, riding a wave.\",The wave\nanetv_VRRLOIP6EmA,16619,A large wave knocks some of them over. They,\"continue surfing, trying to stay on their boards.\",then falls on crashing around a tree.,are shown running through the water before a wave flies into the air by a wave of water.,shake and members of the crowd cheer the cheers.,are full of people.,gold0-orig,pos,unl,unl,unl,unl,A large wave knocks some of them over.,They\nanetv_VRRLOIP6EmA,9658,\"The wave crashes over the surfers, knocking them off their boards. One surfer\",manages to stay upright.,spins the divers in to waves.,scores a high wave as the titanic trails close behind him.,slides down between buildings.,,gold0-orig,pos,unl,unl,unl,n/a,\"The wave crashes over the surfers, knocking them off their boards.\",One surfer\nlsmdc1024_Identity_Thief-82472,9790,\"Later, he drives the beat - up van along a narrow dirt road. In an office, someone\",sits across from people.,swigs from a hand pistol.,peers over a row of lockers.,shuffles down a corridor and gazes into the clean room windows.,,gold1-orig,pos,unl,unl,unl,n/a,\"Later, he drives the beat - up van along a narrow dirt road.\",\"In an office, someone\"\nlsmdc1024_Identity_Thief-82472,9788,Someone stands motionless with his gaze fixed on the wreckage. Someone,looks at her and softly nods.,\"'s face is bruised and bruised, his grip taped all over it.\",\"looks at his desk, unsure for what he sees.\",dons someone's jacket.,rests in her rear on tracks.,gold0-orig,pos,unl,unl,unl,unl,Someone stands motionless with his gaze fixed on the wreckage.,Someone\nlsmdc1018_Body_Of_Lies-80362,18854,A troop carrier drives up. Soldiers,lift bodies in body bags from the chopper and load them onto the troop carrier.,groceries on them is turned from the bed.,\"that he came from impressed, he puts his purse into a bag and rushes at the door.\",ride over their trainers.,,gold0-orig,pos,unl,unl,unl,n/a,A troop carrier drives up.,Soldiers\nlsmdc1018_Body_Of_Lies-80362,18853,Someone stretches his arms above his head. Pale light,glows in the windows of the hangar and casts a sheen across the tarmac.,beads on his back chamber.,\"glows across the ocean, then turns to someone, who's sitting in the snitch.\",touches someone's face as someone reaches for another swell.,pours from holes through the reef.,gold1-orig,pos,unl,unl,pos,pos,Someone stretches his arms above his head.,Pale light\nlsmdc1018_Body_Of_Lies-80362,18856,\"Someone walks along past an airport terminal building, talking on his phone. Someone\",'s by an suv.,turns on the phone.,dials a button on the front door.,watches from behind the wheel.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone walks along past an airport terminal building, talking on his phone.\",Someone\nlsmdc1018_Body_Of_Lies-80362,18855,Soldiers lift bodies in body bags from the chopper and load them onto the troop carrier. Someone,\"walks along past an airport terminal building, talking on his phone.\",opens a gift for someone.,settles himself on one of the workers as the tarpaulin flies from its roofs and lands on the scaffold.,\"stands wearily in a metal office, then glances at the vehicle wearing a frown as he looks on.\",,gold0-reannot,pos,unl,unl,pos,n/a,Soldiers lift bodies in body bags from the chopper and load them onto the troop carrier.,Someone\nanetv_F-jZv4hqYds,4321,A large group of people are sitting on horses near gated areas. The people,are looking around in amazement as one horse riding catches a calf almost instantly.,pass the dog on the tail and ride off continuously.,begin to run around a sandy area.,is happy for a style of a child's head.,approach a horse climbing a fence while a horse runs behind them.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are sitting on horses near gated areas.,The people\nanetv_F-jZv4hqYds,4322,The people are looking around in amazement as one horse riding catches a calf almost instantly. The man ropes of the calf and the crowd,cheers him on as the announcer gives him his time.,begins to walk preparing to bungee jump.,stop to watch someone after it.,watches as the men go around the calf as the dog gets back and more shots of the horse pulling man.,holds at the front of the horse lift with the sight of a man on a horse.,gold0-orig,pos,unl,unl,unl,unl,The people are looking around in amazement as one horse riding catches a calf almost instantly.,The man ropes of the calf and the crowd\nlsmdc0017_Pianist-56244,7054,\"He puts aside the cushion and blanket, then starts to push at the shelves. Slowly, the shelves\",move to reveal a secret compartment.,are filled with books and hurtles.,\"occupy his size, camped on a dresser he piles them in wet champagne.\",do not seem to flop over.,\"unsteadily give way to the darkness, moving back and forth across the windows.\",gold0-orig,pos,unl,unl,unl,unl,\"He puts aside the cushion and blanket, then starts to push at the shelves.\",\"Slowly, the shelves\"\nlsmdc0017_Pianist-56244,7056,\"He helps someone into the compartment. He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he\",pushes the shelves back into place so that someone is now hidden.,gives the bloody hand to the boy and takes him footprints into the bathtub as been leaning on a sleeping boy.,backs down until the floor and briefs.,\"puts it down, finding that he is completely drunk, and hops away.\",\"sees the trapped man, but only his feet in attention.\",gold0-orig,pos,unl,unl,unl,unl,He helps someone into the compartment.,\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he\"\nlsmdc0017_Pianist-56244,7044,\"Someone's ghetto clothes, torn into strips, are being stuffed into it and burned. Someone\",shoves the strips of clothes into the stove.,swirls through the crowd.,smokes in a mood.,\"rushes into the rows of families, close in and out of the chimney.\",\"christ, is able to clean.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone's ghetto clothes, torn into strips, are being stuffed into it and burned.\",Someone\nlsmdc0017_Pianist-56244,7060,Someone tries to appear as inconspicuous as possible. The tram,rumbles on its way.,recoils as he scrawled notes on the tower.,suddenly drops up to the floor.,crosses the girls arms.,flows into his room.,gold0-orig,pos,unl,unl,unl,unl,Someone tries to appear as inconspicuous as possible.,The tram\nlsmdc0017_Pianist-56244,7047,Someone adds the last strip of clothing. A rickshaw carrying people,travels along the dark streets.,sit on the grass.,seizes him and helps him from the counter.,covers a man's groin.,rides behind a cart.,gold0-orig,pos,unl,unl,unl,pos,Someone adds the last strip of clothing.,A rickshaw carrying people\nlsmdc0017_Pianist-56244,7050,\"The moment it stops the shutters of the store are raised and someone escorts someone to the door, then quickly returns to the rickshaw, which moves off fast. Gebcznyski\",\"shakes hands with someone, ushers him in and then pulls down the shutter.\",see a green's map up on a clear portable screen of its red light spreading at them.,beckons his daughter around and swishes her around.,flies van for someone to duck through the front door.,in its heat and trolley start to move.,gold1-orig,pos,unl,unl,unl,unl,\"The moment it stops the shutters of the store are raised and someone escorts someone to the door, then quickly returns to the rickshaw, which moves off fast.\",Gebcznyski\nlsmdc0017_Pianist-56244,7063,Someone leads the way in. Someone,\"glances around, goes to the window, looks out.\",holds a glass stool in front of him.,spots the brunette haired young someone.,leaps down some stairs to a balcony.,,gold1-orig,pos,unl,unl,pos,n/a,Someone leads the way in.,Someone\nlsmdc0017_Pianist-56244,7061,The tram rumbles on its way. People,come up the stairs to the landing and to a door.,hold the door open and look at them with amused amazement.,river rises up the raft.,comes forward and we see someone holding the barrel of his shotgun.,ride in front of the marching band.,gold0-orig,pos,unl,unl,unl,unl,The tram rumbles on its way.,People\nlsmdc0017_Pianist-56244,7065,He can see a section of ghetto wall below. Someone,comes up behind him.,takes off his helmet and taps a board on a shelf.,hustles up behind him.,remains with his back to the wall and looks down.,,gold0-orig,pos,unl,pos,pos,n/a,He can see a section of ghetto wall below.,Someone\nlsmdc0017_Pianist-56244,7045,\"Someone shoves the strips of clothes into the stove. Someone, now wearing someone's suit and clean - shaven,\",watches the clothes burn while he spoons hot soup into his mouth.,leads up through the parlor toward the tall white entrance.,enters a front yard.,leads someone through the lobby then seems irritated.,steps into someone's study area as she passes.,gold0-orig,pos,unl,unl,pos,pos,Someone shoves the strips of clothes into the stove.,\"Someone, now wearing someone's suit and clean - shaven,\"\nlsmdc0017_Pianist-56244,7043,\"Someone lifts himself out of the bath and dries himself. Someone's ghetto clothes, torn into strips,\",are being stuffed into it and burned.,tumbles out of the ring.,\"tied to a cot, opens up.\",are tiny rosy tiled shimmering blue.,finds a dollop standing onto the counter.,gold0-orig,pos,unl,unl,unl,unl,Someone lifts himself out of the bath and dries himself.,\"Someone's ghetto clothes, torn into strips,\"\nlsmdc0017_Pianist-56244,7042,Someone holds up a towel. Someone,lifts himself out of the bath and dries himself.,takes a few bills from her purse and hands them the cash.,works a joystick.,keeps off his fur.,sags out of the sidecar.,gold0-orig,pos,unl,unl,unl,unl,Someone holds up a towel.,Someone\nlsmdc0017_Pianist-56244,7055,\"Slowly, the shelves move to reveal a secret compartment. He\",helps someone into the compartment.,minimizes a backpack that he is wearing.,crumples it over onto his stomach.,shoots an arrow at the edge of the passage.,eyes the mirrored factory.,gold0-orig,pos,unl,unl,unl,unl,\"Slowly, the shelves move to reveal a secret compartment.\",He\nlsmdc0017_Pianist-56244,7068,\"Alone, someone stands, lost for a moment. Then, he\",takes off his shoe and stuffs the scrap of paper into it.,\"repeats the same, before grateful for his drink.\",\"licks his lips, almost to himself.\",puts one hand up on his waist and looks into the lake.,looks back toward the door and finds the binoculars.,gold1-orig,pos,unl,unl,unl,unl,\"Alone, someone stands, lost for a moment.\",\"Then, he\"\nlsmdc0017_Pianist-56244,7057,\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he pushes the shelves back into place so that someone is now hidden. In the cramped space, someone\",is not quite able to stretch full out.,\"slides to his knees along the bottom and looks on, pretending to parry.\",\"forms an emerging of the cobbled courtyard, looking for the fish and mountain scenery.\",lies in the back behind him and starts to sob.,sits with his head slumped beside the balding actor's panel.,gold0-orig,pos,unl,unl,unl,unl,\"He hands over the cushion and the blanket to someone; then, putting his back to the shelves and his feet against the wall, he pushes the shelves back into place so that someone is now hidden.\",\"In the cramped space, someone\"\nlsmdc0017_Pianist-56244,7051,\"Someone's store is for sanitary furnishings and supplies: lavatories, basins, baths, taps etc. He leads the way and as he goes he\",picks up a cushion from a chair and a blanket.,reaches for his mouth to break which he can open.,takes his folded hands and hurries behind.,stands in front of the door for an orchestra.,goes to the door.,gold0-orig,pos,unl,unl,pos,pos,\"Someone's store is for sanitary furnishings and supplies: lavatories, basins, baths, taps etc.\",He leads the way and as he goes he\nlsmdc0017_Pianist-56244,7048,A rickshaw carrying people travels along the dark streets. The rickshaw,comes to a halt outside a store.,spins to attack of the city.,cuts a partially made tune from a clothesline before day.,shows a photo on their bridge is in california size.,,gold0-orig,pos,unl,unl,unl,n/a,A rickshaw carrying people travels along the dark streets.,The rickshaw\nlsmdc0017_Pianist-56244,7046,\"Someone, now wearing someone's suit and clean - shaven, watches the clothes burn while he spoons hot soup into his mouth. Someone\",adds the last strip of clothing.,\"sits in a dirty bowl of pickles, someone trying to open the eye.\",carries home to a kitchen where someone sits on the porch.,is gripping a pair of gun gun from a coil.,\"brackets in a cupboard in the tube forms the trial, silently scanning the race circuit.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, now wearing someone's suit and clean - shaven, watches the clothes burn while he spoons hot soup into his mouth.\",Someone\nlsmdc0017_Pianist-56244,7053,Someone leads the may to a particular set of shelves. He,\"puts aside the cushion and blanket, then starts to push at the shelves.\",manages to get the door.,\"takes some great effort, pulls his shirt off and puts his arm around her shoulders, sending his side upward.\",puts another piece of paper on the patio.,swings back and forth.,gold0-orig,pos,unl,unl,unl,unl,Someone leads the may to a particular set of shelves.,He\nlsmdc0017_Pianist-56244,7066,\"Someone makes for the front door, stops. He\",\"hands over a scrap of paper, shakes someone's hand and goes quickly.\",goes down the steps.,\"can't see anyone, finds his jacket, then shuffles frantically into the bedroom.\",looks up at the redhead.,goes over to someone.,gold1-orig,pos,unl,unl,unl,unl,\"Someone makes for the front door, stops.\",He\nlsmdc0017_Pianist-56244,7062,Someone unlocks the door and they go in. Someone,leads the way in.,walks next to someone and sits on a pew.,opens the door and walks out.,walks out of the driveway.,closes the door to his room.,gold0-orig,pos,unl,pos,pos,pos,Someone unlocks the door and they go in.,Someone\nlsmdc0017_Pianist-56244,7069,\"Then, he takes off his shoe and stuffs the scrap of paper into it. While he does so, his eyes\",light on the divan bed.,roll back into a wet metal puddle at the table beneath him.,remain to see her horrified eyes.,are dries and shaved.,dart back and forth as its white cue.,gold0-orig,pos,unl,unl,unl,unl,\"Then, he takes off his shoe and stuffs the scrap of paper into it.\",\"While he does so, his eyes\"\nlsmdc0017_Pianist-56244,7040,\"Someone lies in a steaming bath, eyes closed, as though he is in a trance. He\",\"gazes at someone, whose eyes remain closed.\",is now in his blue shorts and dragging his weight over her.,grabs the timekeeper from the man holding him and blows him.,\"lies down on the tee, staring dazed.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone lies in a steaming bath, eyes closed, as though he is in a trance.\",He\nlsmdc0017_Pianist-56244,7064,\"Someone glances around, goes to the window, looks out. He\",can see a section of ghetto wall below.,turns and looks at the top of the crowds.,has reached the hook of the door of a car door.,puts on a blank piece of paper then walks out.,picks up his champagne bottle and passes it to someone.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone glances around, goes to the window, looks out.\",He\nlsmdc0017_Pianist-56244,7052,Someone leads someone down the stairs. Someone,leads the may to a particular set of shelves.,\"sets it carefully, at the end of a corridor, a small screen with framed letters shown.\",looks out from a page to see someone running up of him.,\"arrive as the dark - haired someone, someone with his friends.\",,gold0-reannot,pos,unl,unl,pos,n/a,Someone leads someone down the stairs.,Someone\nlsmdc0017_Pianist-56244,7041,\"He gazes at someone, whose eyes remain closed. Someone\",holds up a towel.,\"takes his hand in as he gives it a final salute, his hat flying.\",\"meets the cage, quickly approaches.\",sets his head back.,looks at him sheepishly.,gold1-reannot,pos,unl,unl,pos,pos,\"He gazes at someone, whose eyes remain closed.\",Someone\nlsmdc0017_Pianist-56244,7067,\"He hands over a scrap of paper, shakes someone's hand and goes quickly. Alone, someone\",\"stands, lost for a moment.\",sits on the sofa facing someone.,\"turns a corner, then spots someone.\",\"lies on the lounge log, holding his jack - o - lantern in his hands.\",,gold1-reannot,pos,unl,pos,pos,n/a,\"He hands over a scrap of paper, shakes someone's hand and goes quickly.\",\"Alone, someone\"\nlsmdc0017_Pianist-56244,7059,\"With difficulty, he puts the cushion behind his head, starts to cover himself with the blanket but stops, seeing something. People\",wait with others at the stop as the tram trundles towards them and comes to a halt.,\"have hitch, and he puts on goggles.\",\"see as the faucet, the dressing, lies on one side, lying against the wall.\",is a fireman on the background.,dissolve through the house.,gold0-reannot,pos,unl,unl,unl,unl,\"With difficulty, he puts the cushion behind his head, starts to cover himself with the blanket but stops, seeing something.\",People\nlsmdc0017_Pianist-56244,7070,He is not certain where he is for a moment. He,\"hears the voices again, coming from the adjoining flat.\",knows what he'll need to happen.,listen to him staggering.,is next to him.,slows and raises his eyebrows.,gold1-reannot,pos,unl,unl,unl,pos,He is not certain where he is for a moment.,He\nlsmdc0017_Pianist-56244,7049,The rickshaw comes to a halt outside a store. The moment it stops the shutters of the store are raised and someone,\"escorts someone to the door, then quickly returns to the rickshaw, which moves off fast.\",tries to step forward.,sees someone mirthfully look at someone.,becomes closer to blaze.,looks around the yard with a doleful expression.,gold0-reannot,pos,unl,unl,unl,pos,The rickshaw comes to a halt outside a store.,The moment it stops the shutters of the store are raised and someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7158,4346,Someone sees a black hat lying on the ground. He,clutches the scar in his forehead.,turns to the crowd and coughs.,glances at him and smiles.,advances off the inner beam as someone take the room.,looks closely at the evil evil magician.,gold1-orig,pos,unl,unl,unl,unl,Someone sees a black hat lying on the ground.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7158,4347,He clutches the scar in his forehead. A man,lies on his back among the fallen leaves heaped - in and lifeless.,\"gets up and grabs a piece of hair by his hand, another burst of fire.\",\"enter his yard, peers over the castle courtyard and paces thoughtfully.\",hits outside surrounding a lorry.,fight their way through.,gold1-orig,pos,unl,unl,unl,pos,He clutches the scar in his forehead.,A man\nlsmdc3004_500_DAYS_OF_SUMMER-1808,17668,The sun shines on the line drawing city. Blossoms bloom on the tree and birds,fly in the sky.,swoop down off the ground to move food to their head.,fly through bare branches.,gather around the circle and settle a pot with corn.,fly from the sky.,gold0-orig,pos,unl,unl,unl,unl,The sun shines on the line drawing city.,Blossoms bloom on the tree and birds\nlsmdc3004_500_DAYS_OF_SUMMER-1808,17667,Day 500 becomes day 1. The sun,shines on the line drawing city.,breaks over people just in a state incline.,starts the instructor of the second pot.,reaches a aisle almost transparent for the exhausted sand.,stops at the entrance.,gold1-reannot,pos,unl,unl,unl,unl,Day 500 becomes day 1.,The sun\nanetv_ejzgfj6QKB8,12529,A man is in a yard with a cricket bat. He,flips the bat over and over again.,throws the dart back and forth on the grass.,is blindfolded to hit them.,has a large pile of money on the ground.,stops to toss chocolate balls into a trash can.,gold0-orig,pos,unl,unl,unl,unl,A man is in a yard with a cricket bat.,He\nanetv_ejzgfj6QKB8,12530,He flips the bat over and over again. He,\"trips, then kicks the ball into the air, hitting it.\",rolls down the hill to see his way out.,tosses the disk off.,throws - face the kid who drops the mop!,lands and falls back down again.,gold0-orig,pos,unl,unl,unl,unl,He flips the bat over and over again.,He\nanetv_LkwkGj27pP8,10600,A man is seen leaning onto a fence and continuously bending down to dip paint into a bucket. The woman,brushes the fence continuously in front of her while the camera captures her from behind.,continues down the fence and talks at the top and the woman scrubs the snow.,then blew the snow off of rock face by the man speaking to the camera.,continues wiping while the camera pans around.,,gold0-reannot,pos,unl,unl,pos,n/a,A man is seen leaning onto a fence and continuously bending down to dip paint into a bucket.,The woman\nlsmdc1042_Up_In_The_Air-88434,12711,She stoops slightly as she drags a large unwieldy suitcase. She,has a large black bag slung over her shoulder and a coat over.,is seven years old.,gets down on stationary bikes and starts to get off.,passes a row of medicine items.,,gold0-orig,pos,unl,unl,pos,n/a,She stoops slightly as she drags a large unwieldy suitcase.,She\nlsmdc1042_Up_In_The_Air-88434,12709,\"Someone slides his swipe card through the slot on the self - service check - in machine, then collects his boarding pass. Someone\",steps away with case in tow.,forces into several pieces and shoots their load for each others.,taps his 3d glasses.,approaches several armed men slumped reversed while laughing.,sees a doleful looking escalade.,gold1-orig,pos,unl,unl,unl,unl,\"Someone slides his swipe card through the slot on the self - service check - in machine, then collects his boarding pass.\",Someone\nlsmdc1042_Up_In_The_Air-88434,12712,She has a large black bag slung over her shoulder and a coat over. Someone,looks at her and sighs.,is in a closet and is putting down a box he takes at the lease place he is doing.,shoots aside her coat onto a hanger.,crosses the street to where he was kneeling.,walks out and sits down beside her.,gold0-orig,pos,unl,unl,unl,pos,She has a large black bag slung over her shoulder and a coat over.,Someone\nlsmdc1042_Up_In_The_Air-88434,12704,\"At home, he takes pristine white T - shirts off a shelf and lays them in his suitcase with the rest of his clothes. He\",\"packs his tie pouch, straightens up and sees the cardboard cut - out.\",takes his wallet off the floor and peers down at the ice - covered gold.,eats the guitar.,holds a razor at her neck with his preppy tallest butt and points with his victim.,\"paces to the top of the pool, brushing his shirt side and upper hand.\",gold0-orig,pos,unl,unl,unl,pos,\"At home, he takes pristine white T - shirts off a shelf and lays them in his suitcase with the rest of his clothes.\",He\nlsmdc1042_Up_In_The_Air-88434,12703,\"Someone screws up the piece of paper and throws it in the bin. At home, he\",takes pristine white t - shirts off a shelf and lays them in his suitcase with the rest of his clothes.,loads three cans of dirt from a box.,throws down scooping out chocolate and casts it into a wall.,lies asleep clutching his marijuana while someone listens to the speaker.,,gold1-orig,pos,unl,unl,pos,n/a,Someone screws up the piece of paper and throws it in the bin.,\"At home, he\"\nlsmdc1042_Up_In_The_Air-88434,12710,Someone steps away with case in tow. He,wearily raises his eyebrows as he watches someone come in.,draws out a pack of poison.,leans over to a waitress with a poker wheel on the table as someone looks toward the thick double doors.,sees the boy inside.,watches the chopper fire.,gold0-reannot,pos,unl,pos,pos,pos,Someone steps away with case in tow.,He\nlsmdc1042_Up_In_The_Air-88434,12706,\"He picks up the photo and holds it over his case length - wise and cross - wise. Wearing a sharp charcoal gray suit, someone\",\"walks trough the airport, dragging the case.\",works his way up towards the upright tower.,approaches him carrying a clipboard spoke with the diary.,stands up spins cautiously past him with arms trimmed by spears.,,gold0-reannot,pos,unl,unl,unl,n/a,He picks up the photo and holds it over his case length - wise and cross - wise.,\"Wearing a sharp charcoal gray suit, someone\"\nanetv_k2vkwy2vdP4,13361,Beside him appears a man on a surfboard. The man on the surfboard,\"speeds past, leaving him in his wake.\",leans on the boat and waves as he pulls up in front of him.,flips to the end and lands on his raft.,crashes back onto the swim helmet.,starts effortlessly through rough waters before an off stage.,gold0-orig,pos,unl,unl,pos,pos,Beside him appears a man on a surfboard.,The man on the surfboard\nanetv_k2vkwy2vdP4,13360,A man is riding a water motorboat in the ocean. Beside him,appears a man on a surfboard.,is a surf board rowing in an ocean.,are several climbing waves of motorcycles.,is a man in the ocean.,is the man back in the water.,gold0-orig,pos,unl,unl,pos,pos,A man is riding a water motorboat in the ocean.,Beside him\nanetv_8sTJGmY-SGQ,15407,The man then hopes up on the bars and begins spinning himself around. He,continues spinning on the bars and ends by jumping down on the sides.,continues moving himself around a bit while still moving his legs and arms.,holds their hands then spins himself around on a yellow mat and ends by grabbing himself on the arms.,continues flipping and playing another and some hanging images and tools.,begins to belly flip while moving his hands and lifting his weights up.,gold1-orig,pos,unl,unl,unl,unl,The man then hopes up on the bars and begins spinning himself around.,He\nanetv_8sTJGmY-SGQ,15406,A man is seen standing with his arms up and walks in between a set of uneven bars. The man then,hopes up on the bars and begins spinning himself around.,bends down and picks up the weight as he sings around it.,\"bends forward while moving his hand and gesturing to the camera while pushing himself around, and finishes the object.\",moves the disc and walks closer to the mat.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen standing with his arms up and walks in between a set of uneven bars.,The man then\nanetv_sy-xNiKnfBU,19805,A line of people are standing and waving on the beach. A man,is surfing in the water with a sail.,walks past the hockey players.,interviews with a man.,does a dance on a field field in front of a camera.,is seated in a chair.,gold1-orig,pos,unl,unl,unl,unl,A line of people are standing and waving on the beach.,A man\nanetv_sy-xNiKnfBU,19806,A man is surfing in the water with a sail. He,\"falls off the board a few times, trying to stay upright.\",welds as he flies at the front of a pit.,drives his hand along the beach along with a iron.,is water talking to the camera while attached to a boat.,\"pulls off an old winter hat, a red bag, and a wheel.\",gold1-orig,pos,unl,unl,unl,pos,A man is surfing in the water with a sail.,He\nanetv_sy-xNiKnfBU,690,A group is standing on the sand and waves at the camera. They,are shown parasailing in the ocean water.,are in a bowling field talking about a game sport.,are shown jumping around preparing to prevent soccer.,are walking across the beach under a boat.,are skating down doing a rope on the mat.,gold0-orig,pos,unl,unl,unl,unl,A group is standing on the sand and waves at the camera.,They\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1814,2338,\"As someone's mother and father help the boys to their feet, a pipe smoking man steps out. He\",wears a top hat and sunglasses.,eyes a shabby sack containing blood.,\"wakes, his arm draped over the man's shoulders.\",\"'s gold, dark - eyed woman is wearing candy costume.\",reaches for the broom and grabs it insistently and vanishes under the water.,gold1-orig,pos,unl,unl,unl,pos,\"As someone's mother and father help the boys to their feet, a pipe smoking man steps out.\",He\nanetv_rrKGM5hck1A,15540,Two people are seen dancing as well as close up of a musical instrument. Two people then,begins performing a tango routine in front of a large audience.,play a song with one another while the woman continues to play in her hands.,begin to dance and look up at long tables.,begin playing the game while speaking to one another.,play lacrosse the individual speaking.,gold1-orig,pos,unl,unl,unl,unl,Two people are seen dancing as well as close up of a musical instrument.,Two people then\nanetv_rrKGM5hck1A,493,A man and woman are dancing inside a gym. Then we,\"see them on a professional stage, dancing while dressed up.\",see the three men dancing in unison.,see a man perform a belly dance routine.,see a girl do a gymnastic routine on the wooden platform.,see a cheerleading team routine.,gold0-orig,pos,unl,unl,pos,pos,A man and woman are dancing inside a gym.,Then we\nanetv_rrKGM5hck1A,494,\"Then we see them on a professional stage, dancing while dressed up. They\",spin and twirl together across the stage.,are standing erect and they the last for it to finish.,come up to talk about how to drink beer and make five drinks.,begin to look at each other.,teens walk to the camera in front of building two formation.,gold0-orig,pos,unl,unl,unl,unl,\"Then we see them on a professional stage, dancing while dressed up.\",They\nanetv_rrKGM5hck1A,15541,Two people then begins performing a tango routine in front of a large audience. The two,continue dance around on the stage with one another.,continue moving their arms and legs around and cheering in the end.,continue to speak with one another while spinning one after the other.,continue dancing all around one another and end by embracing her.,,gold0-orig,pos,unl,pos,pos,n/a,Two people then begins performing a tango routine in front of a large audience.,The two\nanetv_GfiqDJA-qqU,6442,\"The man performs a routine with a baton. The man sticks the a baton in the back of his shirt the bows, he\",pulls it out then begins to dance.,watches the man perform the routine.,enjoys as the man finishes the dancing.,walks back and fourth.,runs and spins her the hoop.,gold1-orig,pos,unl,unl,unl,unl,The man performs a routine with a baton.,\"The man sticks the a baton in the back of his shirt the bows, he\"\nanetv_GfiqDJA-qqU,6441,A man walks on the gym floor. the man,performs a routine with a baton.,lands on the floor.,joins a weight on the floor.,does a routine on a bar outside.,kicks the mat sideways dances.,gold0-orig,pos,unl,unl,unl,pos,A man walks on the gym floor.,the man\nanetv_GfiqDJA-qqU,11358,A person is seen walking out onto a large stage. The man,looks off into the distance and begins dancing around with a sword.,pushes the man up and leads into a man continuously wrestling on a board.,rides up and walks towards frame.,continues playing a dance routine while spinning and performing a routine.,continues dancing around and ends with her laying on the ground.,gold0-orig,pos,unl,unl,unl,unl,A person is seen walking out onto a large stage.,The man\nanetv_GfiqDJA-qqU,11359,The man looks off into the distance and begins dancing around with a sword. He,continues moving around and ends by walking off stage.,continues to speak to the camera and end by walking away from there still climbing.,woman continues to speak continuing to play.,\"begins the man to the drums and back up, smiling to the camera.\",continues to blow the hair down using one towel while still speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The man looks off into the distance and begins dancing around with a sword.,He\nanetv_GfiqDJA-qqU,6443,The man flips two times and tries to catch the baton but it falls. The man,\"moves the baton on his neck, and does a spin then moves the baton on his neck.\",bends down and raises his arms into the water of his pool.,\"catches from another angle to disappear, along with a line.\",drops down and waves into the cup.,stands and stands up.,gold1-orig,pos,unl,unl,unl,pos,The man flips two times and tries to catch the baton but it falls.,The man\nanetv_GfiqDJA-qqU,6444,\"The man moves the baton on his neck, and does a spin then moves the baton on his neck. The man\",finishes and takes a bow before walking away.,finishes punching and smiles.,spins while looking back stroke his wand.,finishes the flute poses and resumes dancing.,finishes the air hoop and walks off.,gold0-orig,pos,unl,unl,pos,pos,\"The man moves the baton on his neck, and does a spin then moves the baton on his neck.\",The man\nanetv_HGy8UgabFMw,6377,\"He climbed the blue - green ladder to trim the top of the hedge, he moved the ladder to do the middle top of the hedge. The man\",\"trimmed the round low bush, used the ladder to trim the top of the round hedge.\",then is enveloped in a trance and forced himself on the tree.,'s bedroom features relax.,starts moving forward and rolls.,,gold0-orig,pos,unl,unl,pos,n/a,\"He climbed the blue - green ladder to trim the top of the hedge, he moved the ladder to do the middle top of the hedge.\",The man\nanetv_HGy8UgabFMw,6376,\"A man in blue shirt and jeans is wearing black gloves and trimming the hedge with an orange trimming machine, doing the side first then the front and then the other side. He climbed the blue - green ladder to trim the top of the hedge, he\",moved the ladder to do the middle top of the hedge.,threw the wallpaper and went else in the grass as he tries to cut the hedges and began trimming the hedges.,was cutting the toothpick in little sections and then what the white rug is put to the front continue the precious.,lived out the ax and using the shears as the hedge outside different sewerage.,then started to paint its edges on top of wood to remove the melon and lit that on the floor.,gold0-orig,pos,unl,unl,unl,unl,\"A man in blue shirt and jeans is wearing black gloves and trimming the hedge with an orange trimming machine, doing the side first then the front and then the other side.\",\"He climbed the blue - green ladder to trim the top of the hedge, he\"\nlsmdc3053_PARENTAL_GUIDANCE-25736,14324,We ride a half pipe sharing the perspective of a skateboard's wheels. Someone,carries him off under his arm.,enters the store cityscape where stock jars are with a colt.,pulls away from us another man in the garage.,\"allows footage to throw guns, new someone.\",\"resolutely lurches away from the big man, then writhes backpacks in his pockets.\",gold1-orig,unl,unl,unl,unl,unl,We ride a half pipe sharing the perspective of a skateboard's wheels.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25736,14320,He marches toward the huddle of bullies. He,gives a taunting lunge.,\"aims one finger at him, but both lift his hands.\",stops by a window.,\"touches his own mashed, and tosses the sheet aside.\",glances at the rat and checks.,gold0-orig,pos,unl,unl,unl,unl,He marches toward the huddle of bullies.,He\nlsmdc3053_PARENTAL_GUIDANCE-25736,14323,Someone wears baggy track pants. We,ride a half pipe sharing the perspective of a skateboard's wheels.,head for in the liquor store.,rolls over on the road.,man is holding a cloth in his hand.,,gold1-orig,pos,unl,unl,unl,n/a,Someone wears baggy track pants.,We\nlsmdc3053_PARENTAL_GUIDANCE-25736,14319,\"Now in front of the school, someone wears a determined glare. He\",marches toward the huddle of bullies.,\"backs the boys into an alley, holding an umbrella for them.\",\"looks up to see someone, surprised, and offers him his things.\",strides through a modern window overlooking the very beautiful landscape.,grabs her by the leg.,gold0-orig,pos,unl,unl,unl,unl,\"Now in front of the school, someone wears a determined glare.\",He\nlsmdc3053_PARENTAL_GUIDANCE-25736,14322,\"Now a banner bears a logo, The x Games. A skater\",rides his board across a half pipe.,conceals a news report.,enters a nightclub wearing a steely gray.,spots as fans prepare.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Now a banner bears a logo, The x Games.\",A skater\nlsmdc3053_PARENTAL_GUIDANCE-25736,14321,He gives a taunting lunge. Now a banner,\"bears a logo, the x games.\",pops up into the body.,reads a parade and spirit.,is revealed in an officer in a suit.,\"is embroidered, a japanese style cover.\",gold0-reannot,pos,unl,unl,unl,pos,He gives a taunting lunge.,Now a banner\nanetv_omLZQlz1PAo,192,\"An elderly couple are dancing alone on a gymnasium floor while a line of people at a table watch. They spin and dance happily, and the crowd\",claps as they finish and walk away.,cheers as he claps and claps.,claps as cheerleaders go up the stairs.,applauds for her.,,gold0-orig,pos,unl,unl,pos,n/a,An elderly couple are dancing alone on a gymnasium floor while a line of people at a table watch.,\"They spin and dance happily, and the crowd\"\nlsmdc1034_Super_8-8317,16600,\"As it does so, one of its tires blows out. The driver\",brings the bus to a grinding halt on a remote road.,gets out and hops out of the car and closing in on his body.,is not able to get it through and then begins to cover his eye with force.,is crushed into a balloon.,gets off and braces himself on his car.,gold0-orig,pos,unl,unl,unl,unl,\"As it does so, one of its tires blows out.\",The driver\nlsmdc1034_Super_8-8317,16598,The boys watch anxiously from a holding cell at the rear of the bus. Something,\"hit the side of the bus, jolting it over onto two wheels.\",looks at someone and he avoids his gaze.,steps over to greet someone.,\"at the curb, she exits it.\",hands someone a blanket.,gold0-orig,pos,unl,unl,unl,pos,The boys watch anxiously from a holding cell at the rear of the bus.,Something\nlsmdc1034_Super_8-8317,16599,\"Something hit the side of the bus, jolting it over onto two wheels. It\",continues along the road a short way like this before righting itself.,\"his thumb across the steering wheel, someone is crashing darts out of his car, sending someone right under the water.\",drives through the city and down towards the stop.,struggles to get out as the cab comes to a stop.,swing down to land.,gold1-orig,pos,unl,unl,unl,unl,\"Something hit the side of the bus, jolting it over onto two wheels.\",It\nlsmdc1034_Super_8-8317,16597,\"On the bus the boys are in, someone hands someone some paperwork. The boys\",watch anxiously from a holding cell at the rear of the bus.,\"drag their heads away, leaving someone on his legs straight up.\",rush to the counter with a magazine cover as the clerk reads it.,file the anonymous student into the auditorium.,wade through the e weigh bridge.,gold0-orig,pos,unl,unl,unl,unl,\"On the bus the boys are in, someone hands someone some paperwork.\",The boys\nanetv_YbEX3klOS3Q,4253,A male athlete prepares himself to run. He,runs with a javelin over his shoulder.,comes down the stairs in two of the parallel bars.,chalks a ballerina in his hands and then is shown again in the middle of the crowd before it is played.,runs the bases over a long line.,begins running while he lifts slightly up to his knees then middle of the crowd.,gold0-orig,pos,unl,unl,pos,pos,A male athlete prepares himself to run.,He\nanetv_YbEX3klOS3Q,4254,He runs with a javelin over his shoulder. He,throws it as hard as he can.,do it together across a mat.,\", handcuffed, one hoof reaches up and chases him down a flight of flight.\",then jumps extremely high stairs and lands three times on the ground.,,gold1-orig,pos,unl,unl,unl,n/a,He runs with a javelin over his shoulder.,He\nanetv_YbEX3klOS3Q,4255,He throws it as hard as he can. Then others,do the same shortly after.,poses with picture to right.,\"hit again, almost shooting seeing people.\",listen to camera for a moment.,,gold0-orig,pos,unl,unl,unl,n/a,He throws it as hard as he can.,Then others\nanetv_6URUyopL8qM,2460,\"After, a man appears tubing in a trail of water underneath the bridge. As he continues down the river, he\",hits a few rocks along the way and begins to bobble up and down before returning back in front of the red van.,readies himself on the back of the cabin and climbs on the water and dumps the bucket into the water.,begins to smooths the snow with his hands as he skis.,\"goes down off the snow again, grabbing the tight rope, sitting down and swinging the rope behind him.\",\"checks his body and height, as he walks from them to the raft.\",gold0-reannot,pos,unl,unl,unl,pos,\"After, a man appears tubing in a trail of water underneath the bridge.\",\"As he continues down the river, he\"\nlsmdc0030_The_Hustler-65033,17936,Someone reaches across to light someone's cigarette with the lighter someone gave him. Someone's own lighter,\"is on the table, before him.\",is rewind on the screen.,shines through the windows.,is pressed by it.,\"is very lightly on someone's hand, flings him over the back of the platform.\",gold0-orig,pos,unl,unl,unl,unl,Someone reaches across to light someone's cigarette with the lighter someone gave him.,Someone's own lighter\nlsmdc0030_The_Hustler-65033,17937,\"Someone's own lighter is on the table, before him. Someone\",\"sees it, picks it up, and sparks it into flame.\",bends down and shine checkout someone's wrists.,\"removes the pen, drags a painting boot over it, and creeping up.\",leaps to the operating room.,smashes more germans into a burning chess mechanism.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's own lighter is on the table, before him.\",Someone\nanetv_0UR4hXxt68E,2400,The remaining group stands back up and does a second dance routine together. The group of cheerleader,end their routine and jump up and down before bowing to the crowd.,\"perform their flip in a circle then at the end, the man who turns to do the same spins all jumping behind.\",\"leaps across a city,.\",lesson shown almost successfully pictures each other.,\"twirls the bows in another routine, then leaves.\",gold0-orig,pos,unl,unl,unl,unl,The remaining group stands back up and does a second dance routine together.,The group of cheerleader\nanetv_0UR4hXxt68E,2397,A group of cheerleaders stand in a line in a large auditorium in preparation. The group of cheerleaders,does a dance routine in all dancing in unison.,perform in the middle of the stadium before a cheerleader routine is performing on a long platform.,perform a gymnastic routine that involves a split bar ranging in competition.,\"take a break dance, preparing to return to the team with the mat.\",stand around to perform track participants and do somersaults on the field in times.,gold1-orig,unl,unl,unl,unl,unl,A group of cheerleaders stand in a line in a large auditorium in preparation.,The group of cheerleaders\nanetv_0UR4hXxt68E,2399,Half of the group kneels on the floor and the other standing group exits to the sides. The remaining group,stands back up and does a second dance routine together.,takes out their positions and helmets dance on.,walks down the road along with them and while with the camera pans.,prepares to do twirls while holding a stick and trying to keep their left hand behind another referee while the other player in blue pants,are gathered around the man as others.,gold0-orig,pos,unl,unl,unl,unl,Half of the group kneels on the floor and the other standing group exits to the sides.,The remaining group\nanetv_0UR4hXxt68E,2398,The group of cheerleaders does a dance routine in all dancing in unison. Half of the group kneels on the floor and the other,standing group exits to the sides.,lifts the flagpole up and begins standing.,touches a platform on the dance platform.,go out.,,gold1-orig,pos,unl,pos,pos,n/a,The group of cheerleaders does a dance routine in all dancing in unison.,Half of the group kneels on the floor and the other\nanetv_ODx-nocNBos,5893,The person gives a demonstration on how to use the toys. Next the person,does several demonstrations of the sumo wrestling toy set using toys that they have made as well as toys from the set.,\"uses a liquid to rub his face, then he wipes it down with a hand.\",takes off excess shirts and cleans the bottom of the place to fold it in a shirt for a bit.,\"continues with the mower, his wife and woman a pushing the mower.\",adds soft wallpaper to the wall as the ferryman holds it.,gold0-orig,pos,unl,unl,unl,unl,The person gives a demonstration on how to use the toys.,Next the person\nanetv_ODx-nocNBos,5892,A person on the screen is showing a box containing sumo wrestling toys. The person,gives a demonstration on how to use the toys.,goes on the journalist.,nudges the ball from with bedside fish.,puts up tape over the handles of the body and lets.,removes the head of his cabin.,gold0-orig,pos,unl,unl,unl,unl,A person on the screen is showing a box containing sumo wrestling toys.,The person\nanetv_pleP5-tuJ_Q,1037,A little girl is sitting on the floor knitting as well. She,talks to the camera as she learns to knit.,sands a stone corkscrew.,end in a dirty suit and hardwood floors with a wooden hoop over her head.,shows the cats nails down each nail and also continues blinking an image of the cat.,,gold0-orig,pos,unl,unl,unl,n/a,A little girl is sitting on the floor knitting as well.,She\nanetv_pleP5-tuJ_Q,1036,An old woman is knitting on a bed. A little girl,is sitting on the floor knitting as well.,is sitting back in her chair while trying to walk in the saddle.,smokes on two tables and sits on a sofa.,on a fence liner begins climbing nails.,,gold0-orig,pos,unl,unl,unl,n/a,An old woman is knitting on a bed.,A little girl\nanetv_kTBEGydNpgg,4652,We see a man on the crew. The camera,zooms in on a lady in a ponytail.,switches position to speak to the man outside.,lifts his arms and pushes off equipment.,unlocks the building and starts working.,drops to the floor.,gold1-orig,pos,unl,unl,unl,pos,We see a man on the crew.,The camera\nanetv_kTBEGydNpgg,4651,We see a group of people and two hosts on stage at a game show in Asia. We,see a man on the crew.,see players play a game of sunscreen on the beach.,see the crowd charge and start the competition.,see the animated black screen.,\"see as they run, each shot, cue, over the back of the throw.\",gold1-orig,pos,unl,unl,unl,unl,We see a group of people and two hosts on stage at a game show in Asia.,We\nanetv_kTBEGydNpgg,4653,We see the hosts convince the lady to join them. We,see the cameraman again.,\"see jet boarding, high five individual groups.\",see two women doing drinks and show hanger girl's nails.,see several pictures of 101 and girl riding.,see the brow of the woman in her dressing gown.,gold1-orig,pos,unl,unl,unl,pos,We see the hosts convince the lady to join them.,We\nanetv_kTBEGydNpgg,14903,\"The presenter calls a lady to pass on front, while the cameraman laugh. After the camera point to a young girl\",\"looks surprised and laugh, as well the presenter and people.\",sitting in the tattoo chair.,\"paint the long fence, talks to the camera and measure it.\",poses and speaks in front of a mirror.,stand and closes her name.,gold0-orig,pos,pos,pos,pos,pos,\"The presenter calls a lady to pass on front, while the cameraman laugh.\",After the camera point to a young girl\nanetv_kTBEGydNpgg,14904,\"After the camera point to a young girl looks surprised and laugh, as well the presenter and people. A cameraman points\",to give directions while the young girl walk to join the presenter who is talking.,left to the floor.,overlay shown of a record that appears.,using the lawn object as she talks with the girl on the sidewalk.,to a group of gymnast running across the floor in her studio.,gold0-reannot,pos,unl,unl,unl,pos,\"After the camera point to a young girl looks surprised and laugh, as well the presenter and people.\",A cameraman points\nanetv_kTBEGydNpgg,4654,We see the cameraman again. The lady,throws darts at a dartboard on a hosts chest.,dressed next to white talks.,\"goes down the hill again, enjoying the time.\",puts the tam - tam on.,tilts his head back.,gold1-reannot,pos,unl,unl,unl,unl,We see the cameraman again.,The lady\nanetv_kTBEGydNpgg,14902,\"A presenter stands next to a boy and a girl on front an audience, then the girl applaud, raise one hand and walk to sit with the audience. The presenter\",\"calls a lady to pass on front, while the cameraman laugh.\",wins the mascot give the other a hug.,takes the violin from her hand and chops the violin.,dances away by explaining.,,gold1-reannot,unl,unl,unl,unl,n/a,\"A presenter stands next to a boy and a girl on front an audience, then the girl applaud, raise one hand and walk to sit with the audience.\",The presenter\nanetv_AHd87Cn-NkU,6974,A close up of a sink is seen with cleaner on top while the camera zooms in on the sink. A woman,is then seen rubbing down the sink with a rag and shows off the sink in the end.,is seen putting soap into a container followed by cleaning the clothes and cleaning out the window.,is seen sitting in front of a sink and putting a rag over her face.,is seen putting tiles down one side and stopping to be away and speak to the camera.,,gold1-orig,pos,unl,pos,pos,n/a,A close up of a sink is seen with cleaner on top while the camera zooms in on the sink.,A woman\nlsmdc3001_21_JUMP_STREET-568,10803,He thrusts it at someone. Someone,leans out from behind the couch and shoots expertly.,smirks and winks to him.,puts down her blindfold.,\"looks over, sees the crack of someone's face again, puts his hand up.\",watches him with a faint smile.,gold1-orig,pos,unl,unl,unl,unl,He thrusts it at someone.,Someone\nlsmdc3001_21_JUMP_STREET-568,10799,Someone scrambles into the kitchen. The bikers riddle the dea agents with bullet holes and they,collapse side by side.,go back into the village.,go into the girder and swoop outside.,have moved back down the high bridge excavator.,\"blasts him open, gun out.\",gold0-orig,pos,unl,unl,unl,unl,Someone scrambles into the kitchen.,The bikers riddle the dea agents with bullet holes and they\nlsmdc3001_21_JUMP_STREET-568,10798,\"As the bikers and dea agents launch into a gunfight, someone takes more bullets. Someone\",dives behind a couch.,descends toward the top of a large staircase.,tries to regain his composure.,\"slips off, dragging his leg and coming off his horse.\",,gold0-orig,pos,unl,pos,pos,n/a,\"As the bikers and dea agents launch into a gunfight, someone takes more bullets.\",Someone\nlsmdc3001_21_JUMP_STREET-568,10802,He grabs the biker's bag. He,thrusts it at someone.,puts it back in someone's coat pocket.,reaches to answer it.,marches down to the track and down the back of the truck.,punches him in the stomach.,gold0-orig,pos,unl,unl,unl,pos,He grabs the biker's bag.,He\nlsmdc3001_21_JUMP_STREET-568,10801,Someone peeks out from the kitchen. He,grabs the biker's bag.,runs across his yard and looks to someone beside him.,pulls the robe off his shoulders.,starts to remove ice from the turret sack.,\"look down, and sees the balding man outside.\",gold0-reannot,pos,pos,pos,pos,pos,Someone peeks out from the kitchen.,He\nlsmdc3001_21_JUMP_STREET-568,10800,\"As the bikers reload, someone opens fire. Someone\",peeks out from the kitchen.,strides past someone.,swerves and grabs the hammer.,looks across at him.,,gold1-reannot,pos,unl,unl,pos,n/a,\"As the bikers reload, someone opens fire.\",Someone\nlsmdc1026_Legion-5335,2621,Someone holds his thumb and forefinger close together. He,sees static on the television screen.,smiles briefly as he re - jumps in a chair.,jerks up from the flames as he paddles toward the front of his boat.,strides toward the officer who stands on.,,gold0-orig,pos,unl,unl,unl,n/a,Someone holds his thumb and forefinger close together.,He\nlsmdc1026_Legion-5335,2623,\"Outside, someone's attention is drawn to something down the road. He\",steps forward and glances at the horizon.,stops and looks back at the fireplace.,moves into the clearing and leaps across the pit towards him.,runs and runs along a ridge before it progresses.,,gold0-orig,pos,unl,pos,pos,n/a,\"Outside, someone's attention is drawn to something down the road.\",He\nlsmdc1026_Legion-5335,2626,Someone looks in the opposite direction. Encroaching black cloud,dominates the horizon there.,illuminate the vast expanse of pelennor fields.,gradually still stands in two of the windows.,creates a huge cloud high up within.,leads the mob down to town.,gold1-orig,pos,unl,unl,unl,pos,Someone looks in the opposite direction.,Encroaching black cloud\nlsmdc1026_Legion-5335,2619,Someone pats him affectionately on the cheek. Someone,watches his father go.,picks up his glasses and applies makeup.,takes in his sunglasses.,watches as they approach someone.,waves her hand helplessly as she does.,gold1-orig,pos,unl,unl,pos,pos,Someone pats him affectionately on the cheek.,Someone\nlsmdc1026_Legion-5335,2622,\"He sees static on the television screen. Outside, someone's attention\",is drawn to something down the road.,is drawn around the sleeping kids.,is back on tv.,sits on one of women's drawers.,is sent to a man wearing a bandanna.,gold0-orig,pos,unl,unl,unl,pos,He sees static on the television screen.,\"Outside, someone's attention\"\nlsmdc1026_Legion-5335,2625,\"Inside, someone steps up on a chair to examine the tv set. Someone\",looks in the opposite direction.,comes out of bed.,sits in the control seat.,sits busy with colleagues.,removes a picture from a shelf.,gold1-orig,pos,unl,unl,unl,unl,\"Inside, someone steps up on a chair to examine the tv set.\",Someone\nlsmdc1026_Legion-5335,2620,\"As someone enters the diner, someone turns to him. Someone\",holds his thumb and forefinger close together.,\"he mugs and he gives an smug nod, then proceeds away.\",\"stares up at someone, who is lying on clothed.\",thrusts it down to the deck where someone holds his personal flute.,,gold0-reannot,pos,unl,unl,pos,n/a,\"As someone enters the diner, someone turns to him.\",Someone\nanetv_f3Mse2A5edA,5014,A man is sitting behind a table completing a Rubik's cube. A person in a blue shirt,is standing next to the table holding a stop watch.,applauding for him.,is mixing using a rubix cube.,is shaving the other mans eyes.,is sitting down next to the desktop.,gold0-orig,pos,unl,unl,unl,unl,A man is sitting behind a table completing a Rubik's cube.,A person in a blue shirt\nanetv_f3Mse2A5edA,5016,The man completes the Rubik's cube and sets it down. He,hugs a person that walks up next to him.,picks up a rubiks cube and begins to solve.,unwraps the cube and pulls it up with two designs.,dials a number on the phone to the table.,,gold0-orig,pos,unl,unl,unl,n/a,The man completes the Rubik's cube and sets it down.,He\nanetv_f3Mse2A5edA,5015,A person in a blue shirt is standing next to the table holding a stop watch. The man,completes the rubik's cube and sets it down.,is talking while wearing a blue belt and wearing a helmet and helmet.,jumps from the trampoline and falls to the floor.,picks down the flower.,,gold0-reannot,pos,unl,unl,unl,n/a,A person in a blue shirt is standing next to the table holding a stop watch.,The man\nlsmdc0023_THE_BUTTERFLY_EFFECT-59610,2352,Four inches of Plexiglas separate the two and they talk on monitored phones. Someone,\"nods, holding up two comp books.\",is walking throughout the street and pausing from his lamp.,puts his fingers on his temple and now takes several more strides.,is also eating at an old building.,,gold1-orig,unl,unl,unl,unl,n/a,Four inches of Plexiglas separate the two and they talk on monitored phones.,Someone\nanetv_fE3j74_s4KY,9510,We see a blue opening screen and a photo of a man. We see men playing soccer in an indoor gymnasium and the goalie,blocks shot after shot.,runs to help well.,\"hits the net, serving from us to the player, then the spiked team serves the ball while he celebrates.\",move their arms around while passing to the camera.,drills the soccer followed by several players and using him.,gold0-orig,pos,unl,unl,unl,unl,We see a blue opening screen and a photo of a man.,We see men playing soccer in an indoor gymnasium and the goalie\nanetv_fE3j74_s4KY,11681,A man is seen kicking a soccer ball into a goal followed by another man doing the same. Several more people,step up to kick a goal with the goalie standing in front.,are seen riding around a pool while the camera captures their movements.,are seen grabbing the balls themselves together and speaking to a camera.,are shown watching soberly and looking off into the distance.,,gold0-orig,pos,unl,pos,pos,n/a,A man is seen kicking a soccer ball into a goal followed by another man doing the same.,Several more people\nanetv_fE3j74_s4KY,9511,We see men playing soccer in an indoor gymnasium and the goalie blocks shot after shot. The goalie,spins on the ground.,away from the ball shows the player celebrating by the goalie.,force kicks his feet into a opposing net after the puck hits the ball and lands far offers in the shot.,starts to fight in a gathering force.,hits a shot in the ice.,gold1-orig,pos,unl,unl,pos,pos,We see men playing soccer in an indoor gymnasium and the goalie blocks shot after shot.,The goalie\nanetv_fE3j74_s4KY,9514,We see still of men in soccer gear. We then,see boys of around 10 in soccer gear.,see smoke in several bowling clips.,see again on an professional volleyball game.,see 6 men playing polo.,see a man standing in a field on a field.,gold1-orig,pos,unl,unl,unl,pos,We see still of men in soccer gear.,We then\nanetv_fE3j74_s4KY,9515,We then see boys of around 10 in soccer gear. We then,see the ending credits.,see the end screen.,see the man getting fitted for the finish line.,see several rocks in the dirt.,see a close ups of a woman in the yard.,gold0-orig,unl,unl,unl,unl,unl,We then see boys of around 10 in soccer gear.,We then\nanetv_fE3j74_s4KY,9512,The goalie spins on the ground. We,see the goalie spin again.,or one man make the ball land across the field and walks or the length of the court.,hit the ball back and forth.,see the score into the goal post jump.,throws up repeatedly before returning to a second plate.,gold0-orig,pos,unl,unl,unl,unl,The goalie spins on the ground.,We\nanetv_fE3j74_s4KY,11682,Several more people step up to kick a goal with the goalie standing in front. The men,continue to kick balls while walking in and out frame.,begin wrestling by one another as well as shooting the discus and celebrates.,finally hit the board back and fourth back and fourth.,\"engage in a game of volley ball, playing and cheering with one another as well.\",throw several other balls all around the area while the camera pans around the people in front.,gold1-orig,pos,unl,unl,unl,unl,Several more people step up to kick a goal with the goalie standing in front.,The men\nlsmdc0038_Psycho-67356,11574,\"Someone becomes apprehensive, starts to someone, forcing himself to remain calm and cheerful. Someone\",\"turns, gazes seriously at him.\",looks up from the dazzling light and moves slowly towards his friend - toward - harness.,\"drops dead air on the table, sweat dripping from his face.\",with his wife at one side.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone becomes apprehensive, starts to someone, forcing himself to remain calm and cheerful.\",Someone\nanetv_mgmwdQixDXY,11721,Woman is showing her nails with a cute manicure and some polishes behind her hand. woman,is holding a pink polish and start painting her nail.,is standing in the kitchen showing the proper way to peel the grass from the kitchen.,holds by the wipes and is standing to adjust the handlebars with a razor.,begins to talk to the camera while showing the parking window of an instructor.,,gold1-orig,pos,unl,unl,unl,n/a,Woman is showing her nails with a cute manicure and some polishes behind her hand.,woman\nanetv_EWlt9TTOw30,6963,The man points to the tree. the man then,takes the cut fabric and tucks in in the tree.,begins instruments front of the town.,uses his finger to light on a red tree.,shows how to tie the sides of the block.,plays his instrument as the young man turns around.,gold0-orig,pos,unl,unl,unl,unl,The man points to the tree.,the man then\nanetv_EWlt9TTOw30,18183,We see a title screen on a decorative background. We then,see a man decorating a christmas tree.,see the man playing in his room at a table.,see a man mowing the lawn from behind the bushes.,see the ending screen.,see a lady working by a man.,gold1-orig,pos,pos,pos,pos,pos,We see a title screen on a decorative background.,We then\nanetv_EWlt9TTOw30,6961,A christmas tree is shown. a man then,takes fabric and wraps it around the tree.,begins to mulch with mulch on a buckets.,pulls the child to pass the pinata.,pushes the pumpkin from inside.,goes into a christmas tree.,gold0-orig,pos,unl,unl,unl,unl,A christmas tree is shown.,a man then\nanetv_EWlt9TTOw30,18184,We then see a man decorating a Christmas tree. The man,cuts tulle and sticks it in the tree.,starts removing the wood leaves of the tree.,\"put the jack, next to the tree in his place.\",lays a christmas tree on the tree.,,gold1-orig,pos,unl,unl,unl,n/a,We then see a man decorating a Christmas tree.,The man\nanetv_EWlt9TTOw30,18185,The man cuts tulle and sticks it in the tree. We then,see the ending credits.,see glasses wih the color of the tree.,see the ending logo screen.,see the white ending credits.,,gold0-reannot,pos,unl,pos,pos,n/a,The man cuts tulle and sticks it in the tree.,We then\nanetv_BD7txKlwoj8,4008,There is a net around a circle. A man,is standing inside the net.,then jumps on the ground to grab a fish.,rolls rock sheet onto the ground.,is standing next to them.,holds a ball for the other.,gold0-orig,pos,unl,unl,pos,pos,There is a net around a circle.,A man\nanetv_BD7txKlwoj8,2753,A man in a blue shirt holds a ball on a chain. He,swings it around his body several times.,runs with the harness and pole together.,is playing drums on a small covered field.,is jumping on the floor and going back quickly.,gets into a pit and pumps his arms.,gold0-orig,pos,unl,unl,unl,pos,A man in a blue shirt holds a ball on a chain.,He\nanetv_BD7txKlwoj8,4010,He spins and swings a ball on a rope. He,tosses the ball and throws his hands in the air.,bounces out without it.,flips several times as he does it.,falls on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,He spins and swings a ball on a rope.,He\nanetv_BD7txKlwoj8,2754,He swings it around his body several times. He then,launches it onto the field.,lands his footing on a large hedge.,pierces the batsman control with a pole.,keeps inching around and bumps on the wood.,speaks to a crowd of people.,gold0-reannot,pos,unl,unl,unl,pos,He swings it around his body several times.,He then\nanetv_fdd5ixvEXOE,12668,They are protestors carrying various signs. The people,\"dance down the sidewalk, wearing strange costumes.\",are also working with the floor in glasses and enjoy a product sport.,continue fencing and tubes backwards.,are looking at their hands and the slowly.,\"move the blue down toward someone, stick in hand.\",gold0-reannot,pos,unl,unl,unl,unl,They are protestors carrying various signs.,The people\nanetv_fdd5ixvEXOE,17599,A large group of people are seen walking down a sidewalk holding various signs and objects and skipping down the street. More people,appear hoping down the street and ends with one final man looking at the camera.,are seen jumping around and throwing the ball around.,watch as the band plays instruments in the background as everything finishes from a band.,are seen speaking to the camera and leads into several people walking near the ocean.,walk back and fourth while two more play behind them.,gold0-reannot,pos,unl,unl,unl,pos,A large group of people are seen walking down a sidewalk holding various signs and objects and skipping down the street.,More people\nlsmdc3092_ZOOKEEPER-45086,15716,Someone strides over to someone. He,catches someone eyeing someone.,is focused on the ice.,sits on his lap and plants a kiss on the top of her head.,turns to his temple.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone strides over to someone.,He\nanetv_BWKKwqX62Y4,16298,A boy wearing jeans and a red and black jacket is swinging on a swing as he moves his legs back and forth. The boy begins to go a little higher and the camera person,walks a little closer to get a better view.,gets closer to the grave.,walks him to off the side.,moves back to face the pinata.,,gold0-orig,pos,unl,unl,unl,n/a,A boy wearing jeans and a red and black jacket is swinging on a swing as he moves his legs back and forth.,The boy begins to go a little higher and the camera person\nanetv_BWKKwqX62Y4,1795,Finally he jumps off the swing and lands at the edge of the play area. He,turns and walks towards the camera.,\"looks down in the bikini, revealing underwater and shows the small town in the floor below.\",inches down the frame and comes back to see him ring.,finishes the routine and walks away while wearing concentration.,leans in on a love seat opposite him.,gold0-orig,pos,unl,unl,unl,unl,Finally he jumps off the swing and lands at the edge of the play area.,He\nanetv_BWKKwqX62Y4,1793,A boy in a red jacket swings on a swing set with trees in the background. He,swings higher and higher.,swings the ax.,then sets off a couple shadows onto his front lawn.,continues swinging his arms and legs.,gets on and starts skateboarding.,gold0-orig,pos,unl,unl,unl,unl,A boy in a red jacket swings on a swing set with trees in the background.,He\nanetv_BWKKwqX62Y4,1794,He swings higher and higher. Finally he,jumps off the swing and lands at the edge of the play area.,swings a few closest toward the man.,rolls off the mountain and pushes the tellers ahead.,jumps across the bars.,lands on his knees on the stone platform.,gold0-orig,pos,unl,unl,unl,pos,He swings higher and higher.,Finally he\nlsmdc3091_ZOMBIELAND-44543,16395,\"She strolls out, leaving the manager grinning. Now on a suburban street, Little someone\",strides up to the convertible and gets in.,opens a screen door.,sits behind a distantly nosed open stereo.,crosses a gym tavern on a water mall.,parks a pole against a wall.,gold0-orig,pos,unl,unl,unl,unl,\"She strolls out, leaving the manager grinning.\",\"Now on a suburban street, Little someone\"\nlsmdc3091_ZOMBIELAND-44543,16399,Someone steals his gun back and aims at Little someone. Someone,stops then aims at him.,lays his handing pipe down.,\"breaks into a run, then drops her and guns to a road.\",takes the phone out with his weapon.,turns off the alarm beam.,gold0-orig,pos,unl,unl,unl,unl,Someone steals his gun back and aims at Little someone.,Someone\nlsmdc3091_ZOMBIELAND-44543,16392,Now he hands her cash. Little someone,stares at the ring then hands it over.,joins the girl carrying the drawings.,crosses to the podium and press out her name.,takes the bag out of her bag.,\"sits parked, terrace and ill.\",gold0-orig,pos,unl,unl,unl,unl,Now he hands her cash.,Little someone\nlsmdc3091_ZOMBIELAND-44543,16396,\"Now on a suburban street, Little someone strides up to the convertible and gets in. She\",opens the glove box.,\"presses a ridge across the sky and crosses to the bed, yawning.\",puts down his hand.,\"leaves, then climbs in.\",turns the wheel away.,gold1-orig,pos,unl,unl,unl,pos,\"Now on a suburban street, Little someone strides up to the convertible and gets in.\",She\nlsmdc3091_ZOMBIELAND-44543,16390,\"Behind the wheel, someone gives a disarming smile. As the convertible pulls toward the street, the manager\",scans the ground by the pump.,gets up and runs to the floor corner.,ushers the couple into the elevator.,plays alone and pass the president and briefcase.,\"takes someone, spilling his wine.\",gold1-orig,pos,unl,unl,unl,unl,\"Behind the wheel, someone gives a disarming smile.\",\"As the convertible pulls toward the street, the manager\"\nlsmdc3091_ZOMBIELAND-44543,16394,She eats a candy bar. She,\"strolls out, leaving the manager grinning.\",mix a chicken covered cookie in a pan.,lets the head down.,walks and completes the omelette.,wipes the lemon off with a towel.,gold0-orig,pos,unl,unl,unl,pos,She eats a candy bar.,She\nlsmdc3091_ZOMBIELAND-44543,16397,She opens the glove box. The young con artist,pours a handful of rings out of an envelope.,looks wistfully at the photo.,picks up her purse.,regards her with a furrowed brow.,,gold0-reannot,pos,pos,pos,pos,n/a,She opens the glove box.,The young con artist\nlsmdc3091_ZOMBIELAND-44543,16391,\"Later, he uses a phone. Little someone\",finds the ring outside.,\"sits on a bench, squinting at the parade.\",loads in the cellphone.,places cards on an envelope.,watches his wife from under the headstone.,gold1-reannot,pos,unl,unl,pos,pos,\"Later, he uses a phone.\",Little someone\nanetv_RfchfRzuV8I,3296,A close up of a person's hands are seen followed by a man walking into frame. The man,is seen holding an instrument and begins to play.,begins playing his instrument while moving his hands up against his face and showing more shots of him stopping.,moves back and fourth on the water while continuing to speak.,rubs the man up and looking to the camera.,continues rubbing his legs while still speaking on the camera.,gold0-orig,pos,unl,unl,pos,pos,A close up of a person's hands are seen followed by a man walking into frame.,The man\nanetv_RfchfRzuV8I,3693,A man is seen walking into frame holding onto a set of bag pipes. The man then,begins playing the bag pipes in front of the camera.,\"moves the living some on the floor in front of them, holding up a few flowers.\",jumps up and down and stand around in front.,begins pushing himself back and fourth on the fourth set.,walks down a set of logs with various objects and ends by putting down water.,gold0-orig,pos,unl,unl,unl,unl,A man is seen walking into frame holding onto a set of bag pipes.,The man then\nanetv_RfchfRzuV8I,3297,The man is seen holding an instrument and begins to play. The man,continues playing the bagpipes and ends by turning off the camera.,finishes by playing a game as well as belongs and returns using his hands.,continues speaking while others play in the background.,takes it and continues talking before the other returns to the casino.,continues playing and ends by holding the instrument back and fourth.,gold1-orig,pos,unl,unl,unl,pos,The man is seen holding an instrument and begins to play.,The man\nanetv_RfchfRzuV8I,3694,The man then begins playing the bag pipes in front of the camera. He,continues to play and then walks out of frame.,begins to play an accordion while pausing to speak to the camera.,continues playing the piano and continuously moving while gesturing to other people.,continues to talk to the camera and moves it around.,continues playing while moving his body around while speaking to the camera.,gold1-reannot,pos,unl,unl,pos,pos,The man then begins playing the bag pipes in front of the camera.,He\nanetv_iaqFvTpoceI,14608,They hold up signs in the air. They,finish their routine and wave at the audience.,manage a few feet away.,lift its legs in front of each other and begin dancing.,hit hurling hard in the balls.,engage in different positions.,gold1-orig,pos,unl,unl,unl,pos,They hold up signs in the air.,They\nanetv_iaqFvTpoceI,14606,Cheerleaders are standing on a blue mat. They,start doing a routine on the mat.,jump on the beam and perform a routine with one another.,are engaged in a game of dodgeball.,\"are jumping across the platform, high above the stage.\",stand in the gymnastics beam and raises her arms in the air.,gold0-orig,pos,unl,unl,unl,unl,Cheerleaders are standing on a blue mat.,They\nanetv_Ye6_xb7h7jc,11835,The kids are pointing out the balls and the ornamens. the kids,stands next to the three and say goodbye to the camera.,are holding up the candy and fixing it on a fake end.,continue playing to take different shots of the midget around rackets and hit dogs behind.,stand on the other side and grab the poles.,are rolling down a court to orange cones.,gold0-orig,pos,unl,unl,unl,unl,The kids are pointing out the balls and the ornamens.,the kids\nanetv_y20J3BbydOk,16597,Kids are gathered around a wooden table in a kitchen. woman,is cutting oranges and showing it to kids and squeezing it in a glass in the table.,is doing the dishes on the sidewalk with a bowl of food.,is wearing a wooden apron and laying boots on the ground of a big yard.,is standing in front of a sink and wash a stack of water.,is holding a top sandwich and pointing to her sandwich.,gold1-orig,pos,unl,unl,unl,unl,Kids are gathered around a wooden table in a kitchen.,woman\nanetv_pGKTRM1vcfw,10686,Lacrosse team is in a large green grassy field playing. coach wearing black clothes,is watching the game walking on sides.,is running in the same number.,walks preparing to soccer.,demonstrates how to place the grass and end by doing a goal.,on a roofed court is playing lacrosse with the cheers.,gold0-orig,pos,unl,unl,unl,pos,Lacrosse team is in a large green grassy field playing.,coach wearing black clothes\nanetv_pGKTRM1vcfw,1524,The coaches are standing on the side of the field and walked. The players,walked towards their benches.,kicked the puck and then one score is shown.,hit the ball across the base and form the swarm from it beside the target.,interview another coach in a gym.,are pointing to the horses again.,gold0-orig,pos,unl,unl,unl,pos,The coaches are standing on the side of the field and walked.,The players\nanetv_pGKTRM1vcfw,10687,Coach wearing black clothes is watching the game walking on sides. women,runs to the benches and gathered around the coach.,are playing paintball in the green field playing the game.,are wearing white shorts playing hurling in a roofed court.,are twirling and walking on the field where people are bouncing up and down.,,gold1-orig,pos,unl,unl,unl,n/a,Coach wearing black clothes is watching the game walking on sides.,women\nanetv_MVzypK0eMKc,19472,A young boy is seen speaking to the camera and pouring ingredients into a blender. He,squeezes juice and mixes up the blender.,begins mixing the ingredients in a pan while pushing on the camera.,grates a liquid into the steel pitcher and mixes ingredients into a bowl.,pours the other rum into a glasses and pours a drink into a lime.,pours ice in a pan then adds another drink to a glass of water.,gold1-orig,pos,unl,unl,unl,unl,A young boy is seen speaking to the camera and pouring ingredients into a blender.,He\nanetv_MVzypK0eMKc,13971,He blends them up together and takes a drink afterwards. He,shows off the drink and speaks to the camera.,chugs his harmonica and starts to laugh to the camera.,dances with a lesson.,holds up a lens device and puts it in a cup.,,gold0-orig,pos,unl,unl,pos,n/a,He blends them up together and takes a drink afterwards.,He\nanetv_MVzypK0eMKc,19473,He squeezes juice and mixes up the blender. He,pours it out and takes a sip while speaking to the camera.,\"holds up the glass lemon and added, on the lemon and the juice.\",puts on a steel juicer for lemonade.,moves a coffee spoon from a small cup.,pours the liquids on the man's coffee cup.,gold0-orig,pos,unl,unl,unl,unl,He squeezes juice and mixes up the blender.,He\nanetv_MVzypK0eMKc,13970,A young man is seen speaking to the camera and begins putting ingredients into a blender. He,blends them up together and takes a drink afterwards.,puts a various mop into the pot and holds up a bowl and pours it into another pan.,pours it into the end and puts more on and drains it into the pan.,washes the sandwich into a cheap salad as well as puts it up and slices it on open.,continues then mixes up a pan and pours more into the glass with a plastic glass.,gold0-orig,pos,unl,unl,unl,unl,A young man is seen speaking to the camera and begins putting ingredients into a blender.,He\nanetv_6g80a1NnftU,16761,The woman then waves her arms carelessly under the water and rubs her hands on her shirt to dry. She,finally opens the door with holding a rag and then throws a rag away in the trash.,begins to walk out in front of a girl who has to get off the board.,continues with several people on the sideline on the beach laughing and watching.,shakes the bottle while letting off while the camera pans her movements.,,gold0-orig,pos,unl,unl,unl,n/a,The woman then waves her arms carelessly under the water and rubs her hands on her shirt to dry.,She\nanetv_6g80a1NnftU,7894,A person is washing their hands as the words Tutorial: How to Wash Your Hands appears on screen. A continuous scroll of instructions,crawls across the bottom of the screen.,is dropped with a product.,plays to the large arcs of water and the front are brushed and fly.,appears until it to the bottom.,,gold1-orig,pos,unl,unl,pos,n/a,A person is washing their hands as the words Tutorial: How to Wash Your Hands appears on screen.,A continuous scroll of instructions\nlsmdc3057_ROBIN_HOOD-27631,55,Someone obliviously sips his watered down wine. Someone,\"watches, then glances at someone and leans back in his chair.\",picks up a tiny nose syringe.,goes to along and mixes debris into the bucket as the customer is drunk.,sits with a plate of popcorn.,stands with his mouth hanging open and looking bowed.,gold1-orig,pos,unl,unl,unl,unl,Someone obliviously sips his watered down wine.,Someone\nanetv_F1MKU9-yXg0,1635,A young man in a green jacket is standing in front of a mound of dirt and is talking about his maintenance tasks. The man then,comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard.,goes down the alley around wearing something in its underwear.,grabs an orange tool to clean the top of the soaping paper using the knife.,begins getting up and cleaning some cement.,,gold0-orig,pos,unl,unl,pos,n/a,A young man in a green jacket is standing in front of a mound of dirt and is talking about his maintenance tasks.,The man then\nanetv_F1MKU9-yXg0,1637,\"He then takes his rake and moves the dirt back and forth around the house evening it out. When complete, he disappears and a path of mulch\",is seen along the garage.,is seen laid out on the grassy counter.,is listed to cut the snow.,comes towards the camera.,is shown and begins chopping and switching from juice to heal.,gold0-orig,pos,unl,unl,unl,unl,He then takes his rake and moves the dirt back and forth around the house evening it out.,\"When complete, he disappears and a path of mulch\"\nanetv_F1MKU9-yXg0,1636,The man then comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard. He then,takes his rake and moves the dirt back and forth around the house evening it out.,walks around and walks off further and continues running at the end.,leaves the sunroom to assist his snowboarding.,\"picks up the shovel and continues skateboarding on the lawn, back and forth until finally coming back to the camera's camera.\",runs off and runs the lawn mower away from the lawn.,gold0-reannot,pos,unl,unl,unl,unl,The man then comes in the back yard with a green wheelbarrow and dumps the dirt in the back yard.,He then\nanetv_DFAodsf1dWk,14049,\"He sits by a table, then sets up a game of beer pong. The men\",\"play the game casually, taking turns.\",are then seen refills a cup with beers as well as the beer shots.,play and take shots of each other and flash as they engage in a game of ping pong balls.,holds a bucket up pool as well as balls hitting it into a triangle.,,gold0-orig,pos,unl,unl,unl,n/a,\"He sits by a table, then sets up a game of beer pong.\",The men\nanetv_DFAodsf1dWk,18100,A man is sleeping in a bedroom. He,reaches out and turns off an alarm clock.,is standing next to a tub on the counter.,starts to iron the shirt.,lies in the chair clutching his stomach.,is playing the poker while he playing.,gold0-orig,pos,unl,unl,unl,unl,A man is sleeping in a bedroom.,He\nanetv_RZqM8Z0ocjE,18497,Two groups of girls run out to the middle of a court to grab volleyballs. They,throw the balls at each other.,stand up and down an area while their team close by.,unroll the ball and throw it into the field.,take turns jumping up and down above their knees.,\"run and kick the ball and hit it, miss it.\",gold1-orig,pos,unl,unl,unl,pos,Two groups of girls run out to the middle of a court to grab volleyballs.,They\nanetv_RZqM8Z0ocjE,18498,They throw the balls at each other. The coach,is seen giving instructions.,speaks to them with swords.,kicks a woman in one shoulder after other.,dodges as they crane a strike and crash into each other.,turns and head to her shot.,gold0-orig,pos,unl,unl,unl,unl,They throw the balls at each other.,The coach\nanetv_RZqM8Z0ocjE,18499,The coach is seen giving instructions. The girls,continue to throw the balls at each other.,struggle through the bar together.,pause when one passes the stage.,finish to show off while posing for camera on the field.,,gold1-orig,pos,unl,unl,pos,n/a,The coach is seen giving instructions.,The girls\nanetv_RZqM8Z0ocjE,18496,A volleyball coach stands by a net holding a ball and speaks. Two groups of girls,run out to the middle of a court to grab volleyballs.,take turns diving compete in a competition.,play soccer and enjoy leaves on a sandy beach.,stand together on the beach playing hockey.,stand by jars and perform the hockey to show more pieces of ice.,gold0-orig,pos,unl,unl,unl,unl,A volleyball coach stands by a net holding a ball and speaks.,Two groups of girls\nlsmdc0003_CASABLANCA-47142,13972,He walks over to the window and someone follows. Someone,\"walks over to a table and opens a cigarette box, but finds it empty.\",notices someone watching her.,\"spies someone striding down the sidewalk, past the open sign, sunglasses.\",grabs the cat as the door closes and someone resumes rinsing.,\"shines his flashlight at the night sky, lacrosse.\",gold1-orig,pos,unl,unl,unl,unl,He walks over to the window and someone follows.,Someone\nanetv_jFZRNe7xFY8,9370,A man jumps onto a balance beam. He,does a hand stand on the balance beam.,jumps from the beam onto his mat.,does the splits of a mat and lands on the mat.,does a yellow routine on the balance beam.,jumps onto the balance beam.,gold0-orig,pos,unl,unl,unl,unl,A man jumps onto a balance beam.,He\nanetv_jFZRNe7xFY8,18390,A shirtless man stands in an auditorium. He then,lifts himself on the beam.,walks down the mat to show people stepping before him.,spin around in unison.,takes a barbell up and hits the handlebars with a metal cones.,spins a boulder during a practice.,gold0-orig,pos,unl,unl,unl,unl,A shirtless man stands in an auditorium.,He then\nanetv_jFZRNe7xFY8,18391,He then lifts himself on the beam. He then,stands on his hands.,\"does in front of the bars, having shown posing for it.\",spins and turns away.,\"runs toward another board, performs the couple, and gets back to mount the bars.\",jumps around the bars and grabs the bars.,gold1-orig,pos,unl,pos,pos,pos,He then lifts himself on the beam.,He then\nanetv_jFZRNe7xFY8,9371,He does a hand stand on the balance beam. He,jumps off and lands on the mat.,lands on the mat and dives for a high in the air.,balances on the balance.,does many flips off the balance beam.,is doing a routine on the mat.,gold1-reannot,pos,unl,unl,pos,pos,He does a hand stand on the balance beam.,He\nanetv_IGXq7a7Jl7s,15072,Several athletes compete for the javelin world championships. The Russia Dimitri,is third bronze medal in the competition.,shoot all around the room.,continue in the brotherly letters.,separate and prepared to serve.,,gold0-orig,pos,unl,unl,unl,n/a,Several athletes compete for the javelin world championships.,The Russia Dimitri\nanetv_IGXq7a7Jl7s,15073,The Japanese Jenki is silver medal. Till from Germany,won the gold medal.,\"put, put the two in duck bags before him.\",passes a chinese lady on other orange stuffing the key.,end the star glows as he floats and leans against the fence.,\"in the middle, someone cheers the steward for them.\",gold0-reannot,pos,unl,unl,unl,unl,The Japanese Jenki is silver medal.,Till from Germany\nlsmdc0027_The_Big_Lebowski-63185,12053,Someone runs into the lanes. Someone,lays a reassuring hand on someone's shoulder.,\"puts on the lifebelt, falls onto the deserted road.\",\"avoids players deals aside, then sets it aside.\",steps onto the helipad and falls with his arms up.,,gold1-orig,pos,unl,unl,unl,n/a,Someone runs into the lanes.,Someone\nlsmdc0027_The_Big_Lebowski-63185,12054,A tall thin man in a conservative black suit enters. He,\"eyes someone's bowling attire and sunglasses and someone's army surplus, but does n't make an issue of it.\",\"pours himself in the stained glass window, and steps away towards the opened doorway.\",sits back on the bench.,turns to avoid the archway.,,gold0-orig,pos,unl,unl,pos,n/a,A tall thin man in a conservative black suit enters.,He\nlsmdc3056_PUBLIC_ENEMIES-3757,9773,\"As someone lies dying, his lips move. Someone\",\"removes his hat, crouches, and leans his ear close to someone.\",\"seems to be asleep in bed, his face buried in someone's.\",and someone push the cover off the wall.,looks behind them and they become seated.,\"eats half of the whip, unwraps it, and carefully evades it.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone lies dying, his lips move.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3757,9775,\"The agent narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare. Someone\",\"gets to his feet, his sober gaze locked on the dead man.\",'s men conducting a little dance with someone and someone.,squirts someone's face with his towel.,\"turns, as the uruk - hai swarm through the fields around them.\",turns off the light and both look away.,gold0-orig,pos,unl,unl,unl,pos,\"The agent narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3757,9778,Someone eyes him long and steady. Someone,\"glances away, then looks someone in the eye.\",notices the settings from her window.,\"winces, then hangs up in the middle of the small chest and tastes a sound.\",\"exhibits a shoe lighter, a one - size pillow at a corner.\",gazes up at the truck in the fallen tree.,gold0-orig,pos,unl,unl,unl,unl,Someone eyes him long and steady.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3757,9777,The older man faces him. Someone,eyes him long and steady.,is plugged in.,magically slices him with a high armchair.,continues down the hall.,places his hand on someone's arm.,gold0-orig,pos,unl,unl,unl,unl,The older man faces him.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3757,9776,\"He holsters his gun and someone joins his side. As the younger g - man eyes the body, someone\",\"dons his hat, his stare stoic and grim.\",aims his gun through the hole in the chamber.,brings his raven glass toward hands.,aims his right nine at his target.,pushes someone off the bed.,gold0-orig,pos,unl,unl,unl,unl,He holsters his gun and someone joins his side.,\"As the younger g - man eyes the body, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3757,9772,\"Someone falls face down, eyes staring off as blood streams from his ruptured cheek. Someone\",\"stares, then ventures forward.\",takes a piece of tape out of his hand.,sits beside the stove.,stares at its reflection then faces someone broodingly.,looks up from her face and drops the lamp.,gold0-orig,pos,unl,unl,unl,unl,\"Someone falls face down, eyes staring off as blood streams from his ruptured cheek.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3757,9774,\"Someone removes his hat, crouches, and leans his ear close to someone. The agent\",\"narrows his eye, glances at the fallen man, and withdraws, revealing someone's lifeless stare.\",steps out of the theater and continues walking his paint on a bridge of grass.,flips through a narrow gap and briefly gets him to go in.,\"manages to reach his sixth room, is alone on the edge of the control line.\",takes another drag on his cigarette and stares at the ground.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone removes his hat, crouches, and leans his ear close to someone.\",The agent\nlsmdc3056_PUBLIC_ENEMIES-3757,9779,\"Someone glances away, then looks someone in the eye. Someone\",\"leans in for a good look at someone's body, then heads off.\",sits down in a chair and eats a few minutes.,shakes his thumb and his eyes widen.,doubles apologetically and raises a fist.,touches someone's head.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone glances away, then looks someone in the eye.\",Someone\nanetv_mr2wnh2GwL8,9280,\"A white bridge appears along with the front of the Hyatt hotel before a bunch of people appear walking on the beach. As the camera travels across the beach, a group of boys\",begin putting buckets on top of the trash can upside down and filling them with dirt and water.,begin walking on a motor boat.,\"are in a busy court playing soccer in a stadium, especially with other teammates, while they are trying to play waves.\",playing activities are replayed doing some progress in the sand.,harness over and jumps backwards.,gold1-orig,pos,unl,unl,unl,unl,A white bridge appears along with the front of the Hyatt hotel before a bunch of people appear walking on the beach.,\"As the camera travels across the beach, a group of boys\"\nanetv_mr2wnh2GwL8,9281,\"The men the surround the dirt with shovels and lift the trash cans up to unveil the sand. After, the men\",begin carving into the sand and creating designs in the sand castle.,fish their run and pass.,resort their boards on ripping the firewood and preparing to stuff them through the hole.,demonstrate clipped sticks for a girl to explain how to install a log.,stops eating and stares at a truck.,gold0-orig,pos,unl,unl,unl,unl,The men the surround the dirt with shovels and lift the trash cans up to unveil the sand.,\"After, the men\"\nanetv_mr2wnh2GwL8,6359,A camera is seen moving quickly all around a beach passing by several objects and people and lead into several people laying down buckets and shoveling sand. The men,continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle.,continue riding all around the sand with one another and continuing to show various images in the end.,continue cleaning on the side in the kitchen while others watch and lead into a group of kids sitting down next to a fence.,continue to crash around each another and stand along the water and end by showing getting worked up.,is then seen speaking with people as well as several kids performing tricks and bumping into the camera.,gold0-orig,pos,unl,unl,unl,unl,A camera is seen moving quickly all around a beach passing by several objects and people and lead into several people laying down buckets and shoveling sand.,The men\nanetv_mr2wnh2GwL8,6360,The men continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle. In the end they,are seen speaking to the camera and their words being washed away.,make the presents and start dancing in a different room.,continue shoveling inside the desert as well as walking fancy.,return to the dock to further crowded.,see more scenery of the man running in the other direction from the looking.,gold1-reannot,unl,unl,unl,unl,unl,The men continue shoveling sand into the buckets and lead into them taking off the bucket and sculpting the sand into a castle.,In the end they\nanetv_OqLrsVv44MY,18998,A woman smiling at the camera is shown scraping off her car with a scraper. She,talks to the camera man while smiling at the camera and continuing to scrape.,pours around the wheel and continues to talk to the camera.,uses a rag cleaner in a street while still speaking to the camera.,pulls the tail off the bike then uses a tool to make it properly.,,gold0-orig,pos,unl,unl,unl,n/a,A woman smiling at the camera is shown scraping off her car with a scraper.,She\nanetv_bqA-WmqF19E,11457,People are playing pool in a room. A man,shoots at the ball and makes it into the pocket.,is standing outside front of an audience watching him.,spins a ball in a circle of water.,is fighting on a large stage.,is smiling at him.,gold0-orig,pos,unl,unl,unl,pos,People are playing pool in a room.,A man\nanetv_bqA-WmqF19E,11458,A man shoots at the ball and makes it into the pocket. People,are standing behind him playing pool on another table.,throw the shot put.,stick and pull themselves.,are 3 across the jar.,\"in slow motion, as the man runs, the ball slides down some lines.\",gold0-orig,pos,unl,unl,unl,unl,A man shoots at the ball and makes it into the pocket.,People\nlsmdc1006_Slumdog_Millionaire-74024,10997,\"He goes back to the cricket, swearing under his breath. Someone\",pushes someone toward the door.,shines a tool on someone's right foot.,blows over the engine.,turns face to face with someone.,,gold0-orig,pos,unl,unl,unl,n/a,\"He goes back to the cricket, swearing under his breath.\",Someone\nlsmdc1006_Slumdog_Millionaire-74024,10999,She pushes him out of the door. He,remains in the courtyard looking back at her.,\"lowers her resistance and gazes at someone, then leans closer.\",\"turns to someone, who stares at the horn.\",\"uses the key in an accordian on the side of it, then leaves and stands next to another person.\",\"scampers away into another corridor, down the street in a corridor.\",gold0-orig,pos,unl,unl,unl,pos,She pushes him out of the door.,He\nlsmdc1006_Slumdog_Millionaire-74024,10994,\"Someone looks pleadingly at someone. Someone, still transfixed by the cricket game,\",takes a bite of his sandwich.,jumps up to get a slap repeatedly over his mouth.,steps back in a window and stands up behind an archway with the policemen 'graffiti.,slowly shakes his hand with triumph.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks pleadingly at someone.,\"Someone, still transfixed by the cricket game,\"\nlsmdc1006_Slumdog_Millionaire-74024,10996,He looks disgusted and spits it out onto the plate. He,walks into the kitchen.,picks up a piece of bread.,passes someone to the bald guy.,slides both hands around the crack.,\"comes past someone, holding his gun close.\",gold1-orig,pos,unl,unl,unl,unl,He looks disgusted and spits it out onto the plate.,He\nlsmdc1006_Slumdog_Millionaire-74024,10995,\"Someone, still transfixed by the cricket game, takes a bite of his sandwich. He\",looks disgusted and spits it out onto the plate.,puts his arm around the cello player.,\"moves away from him, eyeing the different food.\",\"roars sculpting on the gaping crowd, raising a handful of shrimp over an array of fire and along the street, ready.\",takes a few deep breaths.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone, still transfixed by the cricket game, takes a bite of his sandwich.\",He\nlsmdc1006_Slumdog_Millionaire-74024,10998,She slowly shakes her head. She,pushes him out of the door.,looks away in the mirror.,reluctantly closes her laptop again and leans her head back against a button.,is completely staring up at the ceiling.,climbs out the window.,gold0-reannot,pos,unl,unl,unl,pos,She slowly shakes her head.,She\nanetv_F79Tzy2i7bI,579,A person puts something in the baby's eyes. A person,messes with the baby's hair.,puts a paper under the ear.,holds the pink towel attached to it.,puts the cat on top of the table.,carves the pumpkin with small paper scissors.,gold0-orig,pos,unl,unl,unl,unl,A person puts something in the baby's eyes.,A person\nanetv_F79Tzy2i7bI,578,A baby eats bread in a high chair. A person,puts something in the baby's eyes.,sets up a pair of hand towels.,stirs an egg in a pot.,begins to eat the cake.,,gold0-orig,pos,pos,pos,pos,n/a,A baby eats bread in a high chair.,A person\nlsmdc0012_Get_Shorty-53241,4326,\"He is motioning to her for another, when we see a plane taxi past the window in the b. g.. We\",see a big fireball in the b. g. ,where someone falls and feels in time to face someone.,move to the front of the car.,looks at a seat as someone rises from it.,\"is the driver window, standing wearing a railing, and waves beneath the long line.\",gold1-orig,pos,unl,unl,unl,unl,\"He is motioning to her for another, when we see a plane taxi past the window in the b. g..\",We\nlsmdc3045_LAND_OF_THE_LOST-21171,15354,The spiders crawl out of the fruit and up someone. He,\"eats it, then smiles.\",stands out side - by - side by the invisible creature.,yanks someone out shrugs her hands.,aims them at the inspector.,,gold0-orig,pos,unl,unl,pos,n/a,The spiders crawl out of the fruit and up someone.,He\nlsmdc3045_LAND_OF_THE_LOST-21171,15353,Someone breaks open a melon - like fruit. The spiders,crawl out of the fruit and up someone.,are tugging circles at their feet.,trail the mixture around the ankles of someone's unconscious body.,are now surrounded by the plastic!,,gold0-orig,pos,unl,unl,unl,n/a,Someone breaks open a melon - like fruit.,The spiders\nlsmdc1059_The_devil_wears_prada-98749,10744,\"She is wearing a crisp black suit and her shock of grey - white hair is expertly coiffured. In the anteroom, someone\",\"points at someone, who hurries into the office in a smart black mini dress with white colors and cuffs.\",looks into the private room.,\"opens her eyes and peers into the amber haze, shrugging her wand cane in her hand.\",\"is holding a picture of an old lady, her hair long to her hair.\",hurries away and disappears into two smoke smoking political's deserted garage.,gold1-orig,pos,unl,unl,unl,unl,She is wearing a crisp black suit and her shock of grey - white hair is expertly coiffured.,\"In the anteroom, someone\"\nanetv_5g7bqiT7Y3c,3262,He is standing on a circle. He,is behind a net.,is just talking about guns.,stands up holding a stick.,is very worried about it.,pumps his hands in the air.,gold1-orig,pos,unl,pos,pos,pos,He is standing on a circle.,He\nanetv_5g7bqiT7Y3c,17324,A man is standing on a field behind a fence. He,holds a ball in his hand and spins around several times.,swings back and forth over the net.,bull athlete is mowing a grass overgrown forest.,starts fighting roller blades towards the center.,allows him to throw a javelin.,gold0-orig,pos,unl,unl,unl,unl,A man is standing on a field behind a fence.,He\nanetv_5g7bqiT7Y3c,17325,He holds a ball in his hand and spins around several times. He,releases the ball and throws it onto a field in front of him.,then stands up again and raises people hand to his mouth.,tries to pull the puck away from the score board.,\"grabs hit ball and submerges it, trying to solve the ball.\",\", he dismounts and ropes a basketball.\",gold0-orig,pos,unl,unl,unl,unl,He holds a ball in his hand and spins around several times.,He\nanetv_5g7bqiT7Y3c,3261,He spins around on the ground. He,is standing on a circle.,spins his body around with the ball.,walks up a ramp in slow motion.,throws the ball back across the table.,demonstrates the score to play.,gold1-orig,pos,pos,pos,pos,pos,He spins around on the ground.,He\nanetv_5g7bqiT7Y3c,3260,A man stands in a field. He,spins around on the ground.,\"throws a disc up the beach, hurtling it into the air.\",spins the hammer with the hammer.,blows some leaves from a hookah and smokes it.,jumps off a rope and pulls up onto a field of grass.,gold1-reannot,pos,unl,unl,unl,unl,A man stands in a field.,He\nanetv_MZQmJZ_31O0,17764,We see a ladies eye and noes up close. We,see the lady in the desert spinning hula hoops and performing tricks.,see people on stage camera shaving the center of a floor.,see men taking contact lenses and contact lenses.,see the image with people.,see a man diving and see flashes of his arms.,gold1-orig,pos,unl,unl,unl,pos,We see a ladies eye and noes up close.,We\nanetv_MZQmJZ_31O0,17767,She is in the gold hoops as they fall to the ground she then spins many pink hoops from her hands to her feet and as a skirt. We,see the ending credits.,\"off, she sets her baton into the air, then does several tricks in the air as they surf into the water.\",ballet begins to start her routine.,\"hops in line and the girl turns, and twirls every few times as she tries to take the legs by the hula hoop.\",,gold0-orig,pos,unl,unl,unl,n/a,She is in the gold hoops as they fall to the ground she then spins many pink hoops from her hands to her feet and as a skirt.,We\nanetv_MZQmJZ_31O0,17766,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we see her in the gold hoops again. The lady spins her body in and out of the hoops and we,see her in a handstand with the hula hoop on her feet.,see her smiling around the area.,see her score again.,watch her using a stick in the split of the hoop and the camera drops again.,,gold0-orig,pos,pos,pos,pos,n/a,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we see her in the gold hoops again.,The lady spins her body in and out of the hoops and we\nanetv_MZQmJZ_31O0,17765,The lady hula hoops with 10 or so golden hula hoops. The lady spins the hoop on her hand then transfers it to her leg stretched upward and we,see her in the gold hoops again.,continue to twirl the hair together.,see the anchor's still image.,see the cameraman of the platform.,see the lady holding wings and loosens her hair.,gold0-reannot,pos,unl,unl,unl,unl,The lady hula hoops with 10 or so golden hula hoops.,The lady spins the hoop on her hand then transfers it to her leg stretched upward and we\nanetv_PAF5AIQNXhs,1530,\"A baby is seated in a swing, rocking gently. A little girl\",is seen swinging herself back and forth.,\"is playing with her hair, while people watch in horror.\",is swinging herself and blindfolded at a pinata.,waves and does a trick towards the family camera.,,gold0-orig,pos,unl,unl,pos,n/a,\"A baby is seated in a swing, rocking gently.\",A little girl\nanetv_PAF5AIQNXhs,1531,A little girl is seen swinging herself back and forth. Then a toddler and baby,look at each other as they continue to lightly swing.,\"watch on the side, she continues playing the piano as she washes again.\",start to dance together.,skateboard down the pictures.,enters out of the room while she makes with her hand.,gold0-reannot,pos,unl,unl,unl,unl,A little girl is seen swinging herself back and forth.,Then a toddler and baby\nlsmdc0033_Amadeus-66901,10841,A hand comes into frame offering a plate of sugared biscuits. On its finger we,see the gold signet ring belonging to someone.,see someone dip it in a frost - sized plastic container.,\"see white, green staff.\",hear faintly bulge in through the jam.,see a adult grooming a little yellow dog and stirring a fish.,gold0-orig,pos,unl,unl,unl,unl,A hand comes into frame offering a plate of sugared biscuits.,On its finger we\nanetv_09MaNbzc2TA,14286,Several clips are shown of a soccer match going on as well as fans celebrating to the camera. In the end the team all,celebrates together while confetti falls from the sky.,run toward a lacrosse match.,hold brooms and clap with one another and speak to the camera.,come into a run and jump together.,celebrate more before the game celebrate.,gold1-orig,pos,unl,unl,pos,pos,Several clips are shown of a soccer match going on as well as fans celebrating to the camera.,In the end the team all\nanetv_P17kaxPrbdc,2123,A boy is seen holding a stick while other people watch and clap on the sidelines. The boy holding the stick,performs a martial arts routine in front of the people and ends with a pose while everyone around him claps.,is seen attempting to swim all around him while the man flip the running water and celebrates with one another.,is seen holding the disc breaks around and begins running around hitting a ball to a bat.,runs up to a box and hits it several times and still dancing around him.,,gold0-orig,pos,unl,unl,unl,n/a,A boy is seen holding a stick while other people watch and clap on the sidelines.,The boy holding the stick\nlsmdc3037_IRON_MAN2-16739,11056,\"Someone turns and glances down at the crate. In the hanger, the someone ii suit\",lies on a table.,is still reading at an open hole empty.,approaches the high - skinned building.,sits down and someone's strap falls to his chest.,lies on her side.,gold0-orig,pos,unl,unl,unl,unl,Someone turns and glances down at the crate.,\"In the hanger, the someone ii suit\"\nlsmdc3037_IRON_MAN2-16739,11057,\"In the hanger, the someone ii suit lies on a table. Standing beside someone, Major someone and another man\",watch as someone removes the chest plate from the suit.,call out a filing wall.,start a fight of a nazi a hunting match.,pushes a creeping case on the support beam.,pass with a figure on either side.,gold0-reannot,pos,unl,unl,unl,pos,\"In the hanger, the someone ii suit lies on a table.\",\"Standing beside someone, Major someone and another man\"\nanetv_4o7Abew2ExY,6240,He stands up and pulls a fish out of the hole. He,cuts the hook out of the fish and throws the fish on the ice.,walks over and points to the camera again.,shows a photo of one woman sitting with her.,puts something out of the hole in the sheet.,picks up a flint and writes something on the ground.,gold0-orig,pos,unl,unl,unl,unl,He stands up and pulls a fish out of the hole.,He\nanetv_4o7Abew2ExY,6239,A man is sitting on a bucket ice fishing. He,stands up and pulls a fish out of the hole.,picks up the acolytes and walks ahead.,start doing her stunts on a very grassy mound.,moves over the end of the rope to perform a bungee jump.,,gold0-orig,pos,unl,unl,unl,n/a,A man is sitting on a bucket ice fishing.,He\nanetv_4o7Abew2ExY,6241,He cuts the hook out of the fish and throws the fish on the ice. He,sits back down on the bucket.,spits the tank right into the hole next to the ice.,shoots some fish suspiciously.,picks up the fish and lets himself off the water.,picks up the fish and starts licking it.,gold0-reannot,pos,unl,unl,unl,pos,He cuts the hook out of the fish and throws the fish on the ice.,He\nlsmdc3090_YOUNG_ADULT-43906,1858,Someone sets her purse at the end of the bar and sits beside a short brown - haired man. He,sets it in front of someone as she checks her phone.,gets up from his chair and spots someone as she exits the studio.,applies makeup to his mouth and kisses it on the forehead.,jogs outside one of the jammed seats to where someone's duct was listening.,\"glances beside someone, smirks, fixes her arm by his shoulders.\",gold0-orig,pos,unl,unl,unl,unl,Someone sets her purse at the end of the bar and sits beside a short brown - haired man.,He\nlsmdc3090_YOUNG_ADULT-43906,1856,\"Someone smiles as she ends the call. Inside, Christmas lights and neon signs\",illuminate a short bar and pool table.,emerge from her window as she turns a sketch of a young woman in an apartment.,form a house nearby with bare patches.,\"fill the operating room, building her van, someone stops her.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone smiles as she ends the call.,\"Inside, Christmas lights and neon signs\"\nlsmdc3090_YOUNG_ADULT-43906,1859,The short man stares at her. She,glances sideways at him then sips her drink.,\"smiles wordlessly at his grand park godfather, now.\",pulls up and banks her hair to another side.,\"places her hand on his shoulder, then looks up at the sky.\",,gold0-orig,pos,unl,pos,pos,n/a,The short man stares at her.,She\nlsmdc3090_YOUNG_ADULT-43906,1857,\"Inside, Christmas lights and neon signs illuminate a short bar and pool table. Someone\",sets her purse at the end of the bar and sits beside a short brown - haired man.,someone holds him someone in a cheap dress coat.,sets the table past.,fans out of view inside a suit.,,gold0-orig,pos,unl,unl,unl,n/a,\"Inside, Christmas lights and neon signs illuminate a short bar and pool table.\",Someone\nlsmdc3090_YOUNG_ADULT-43906,1860,She glances sideways at him then sips her drink. She,sets down her glass and studies her phone and turns to the short man.,\"stops short, looks away, and nods.\",holds up her hands.,tilts his head and licks it.,shrugs and raises his arm.,gold0-orig,pos,unl,unl,unl,unl,She glances sideways at him then sips her drink.,She\nanetv_nDJgThY8zi8,13610,A woman went down from the stairs walked towards the cycling machine then started to pedal. The woman,adjusted the chair by twisting the screw and then she pedals again.,s inside the desk and talked to the camera.,started taking a fourth sideways shot while the person still stands aside.,is now dancing and at exercise.,,gold0-orig,pos,unl,unl,pos,n/a,A woman went down from the stairs walked towards the cycling machine then started to pedal.,The woman\nanetv_nDJgThY8zi8,3931,She gets on a cycle bike exercise machine and starts working out. She,adjusts the seat on the cycle bike.,slides the snow out of her feet using the exercise machine.,picks up another bottle and drinks it.,turns on the right.,leans on a shoulder machine and shows the area.,gold1-orig,pos,unl,unl,unl,unl,She gets on a cycle bike exercise machine and starts working out.,She\nanetv_nDJgThY8zi8,3930,A woman is walking down stairs. She,gets on a cycle bike exercise machine and starts working out.,\"and an exercise are added and then, the man with her jacket is getting a bit working at the same time, but by\",are dancing in a parking.,stops dancing and smiles at them.,is doing dance tricks on the water.,gold0-orig,pos,unl,unl,unl,unl,A woman is walking down stairs.,She\nanetv_euF5okzyaaA,11810,A group of people are seen riding horses down a beach as well as riding in a cart. They,'re shown riding all around the beach in many shots as well as kissing the horses and speaking to one another.,push the horses down into the water.,go turn as people play volleyball.,\"see jumps again constantly, having seen the riders playing and holds up grass.\",perform several tricks with the horses planted on a leash.,gold0-orig,pos,unl,unl,unl,pos,A group of people are seen riding horses down a beach as well as riding in a cart.,They\nanetv_euF5okzyaaA,11811,They're shown riding all around the beach in many shots as well as kissing the horses and speaking to one another. The,continue riding around and laughing with one another.,more people dive into their side while the camera pans around their movements as they surf.,speak to another several bit afterwards and shows a proper way to deal.,people are shown kicking a curling ball with one another and occasionally laughing.,walks over and puts her leg over her lips.,gold0-orig,pos,unl,unl,unl,unl,They're shown riding all around the beach in many shots as well as kissing the horses and speaking to one another.,The\nanetv_euF5okzyaaA,455,The horses are shown against a tree. Several riders,ride along the beach again.,are gathered to mount a sand area.,are being shown by the funeral.,are also standing around the field watching them.,are about to get on and riding horses.,gold1-reannot,pos,unl,unl,pos,pos,The horses are shown against a tree.,Several riders\nanetv_euF5okzyaaA,453,Four horse riders ride along the beach. Several horse riders,ride through a village.,push three feet one.,are seen walking down an aisle.,follow them down an ice dune.,pass by while others with horses.,gold0-reannot,pos,unl,unl,unl,pos,Four horse riders ride along the beach.,Several horse riders\nlsmdc3037_IRON_MAN2-16887,14617,The arc reactor glows brighter and brighter. A crowd,gathers inside the expo's glass - ribbed arena.,gathers around the factory has a drill facade around another room.,fills the great steel area before the tritium.,passes glowing blueprint and unwraps its chamber.,watches as breathing heavily.,gold0-orig,pos,unl,unl,unl,unl,The arc reactor glows brighter and brighter.,A crowd\nlsmdc3037_IRON_MAN2-16887,14616,Someone studies a web page on a computer monitor. Someone,grabs the reactor containing the new element and pops it into his chest.,has a bag over her head.,drives double into a street.,touches someone's chin.,,gold0-orig,pos,unl,unl,pos,n/a,Someone studies a web page on a computer monitor.,Someone\nlsmdc3037_IRON_MAN2-16887,14620,Someone and someone ascend a flight of steps into the arena. Spotlights,shine on someone as he dances onto the stage.,\"fly into the water, slipping through a huge glass of water.\",\"their way up imposing, someone paddles a large aerobic ring of fire at them.\",watch as they walk to a side mirror.,fills the room with silver sticks.,gold0-orig,pos,unl,unl,unl,unl,Someone and someone ascend a flight of steps into the arena.,Spotlights\nlsmdc3037_IRON_MAN2-16887,14618,\"A crowd gathers inside the Expo's glass - ribbed arena. Outside, someone, someone, and someone\",step out of a silver car.,walk along the sidewalk towards the taj.,stand on top of someone.,plummet into the courtyard.,move among the tables.,gold0-orig,pos,unl,unl,unl,unl,A crowd gathers inside the Expo's glass - ribbed arena.,\"Outside, someone, someone, and someone\"\nanetv_t0YXK4W_L7o,19903,A close up of a horse is seen followed by several people riding on a horses on a beach. One person is seen standing on the horse and the camera,continues to follow the people riding along on the horses.,pans back over the area while the other rides along in horse care.,zooms in on the man playing on horse.,watches her closely followed by several more shots of people riding in the back.,follows her riding on the track.,gold0-orig,pos,unl,unl,pos,pos,A close up of a horse is seen followed by several people riding on a horses on a beach.,One person is seen standing on the horse and the camera\nanetv_Yh6xzcNlAjo,15971,A person closes an oven door in a kitchen. There,is a pan covered in cookies inside the oven.,neon sugar jumps from a jar.,are sitting on the couch at a wooden table in front of them.,is a dignified - looking woman in a gym.,\"come balls, tray wrapping.\",gold0-orig,pos,unl,unl,unl,unl,A person closes an oven door in a kitchen.,There\nanetv_Yh6xzcNlAjo,12052,A oven is open and two cookie trays are shown as the contents begin to bake. The people then,take the cookies out of the oven and starts to talk to their customers.,discuss ingredients around a table with one putting cooking on the table and pans around to the camera.,continue playing all along the kitchen with the person pushing them while taking a huge bite of bread.,sit down and talk to each other behind the set.,,gold0-orig,pos,unl,unl,pos,n/a,A oven is open and two cookie trays are shown as the contents begin to bake.,The people then\nanetv_BKRKHkkZq6g,4983,A man wearing a black shirt holds an exercise ball over another man wearing a light blue shirt performs sit - ups on an inclined bench. The man wearing the black shirt,drops the ball on the floor and crouches down and high fives the man performing the sit - ups.,starts doing arm moves in a gym with the weight around his arm and the point is muscle and movements.,demonstrates how to do anything too high.,gives a tug and tightens his leg walks the length of the braid as the man removes him to give the okay sign.,bends towards her watching.,gold0-reannot,pos,unl,unl,unl,pos,A man wearing a black shirt holds an exercise ball over another man wearing a light blue shirt performs sit - ups on an inclined bench.,The man wearing the black shirt\nanetv_pZzTMUJG9Rk,3507,Another trick is performed and later shown in slow motion. Two more tricks,are demonstrated by the duo and finally showed at a slowed down pace.,pop down on fire and begin to stop.,are shown again covered ends and barely running websites.,\"are shown while one man jumps in the back and continues doing some tricks along the road, then continue to watch a bit.\",are shown by a toddler running over and then running into a large log pole.,gold0-orig,pos,unl,unl,unl,unl,Another trick is performed and later shown in slow motion.,Two more tricks\nanetv_pZzTMUJG9Rk,3504,A man is playing soccer with another across a field. He,performs a quick turn around move with the other following close behind.,hits the ball on his right and throws the ball again.,'s words show his world how the participants are playing.,is playing the game with his hands.,puts a running ball down on the sand.,gold1-orig,pos,unl,unl,unl,pos,A man is playing soccer with another across a field.,He\nanetv_pZzTMUJG9Rk,3505,He performs a quick turn around move with the other following close behind. The same clip,is replayed over and over at slower speeds to better understand the trick.,ends with the ref clapping.,is shown from several jumping pairs on the balcony.,is shown and his video of players quickly becoming.,is shown with in slow motion.,gold0-orig,pos,unl,unl,unl,unl,He performs a quick turn around move with the other following close behind.,The same clip\nanetv_pZzTMUJG9Rk,3506,The same clip is replayed over and over at slower speeds to better understand the trick. Another trick,is performed and later shown in slow motion.,with all chestnut begins and a young girl steps up to perform shanghai firmly with others.,is shown in the sand and then several pictures of shirtless girls playing are shown.,is shown with 5 gallon clicks and different clips at the end.,is repeated during the throw.,gold1-reannot,pos,unl,unl,unl,pos,The same clip is replayed over and over at slower speeds to better understand the trick.,Another trick\nanetv_nUoN18FTeug,12636,There is a brown guitar bag behind her. She,stops playing and sets the guitar in her lap.,removes her guitar in the right way to get it in her ear.,are on a tennis court.,is hitting the drums with the ball.,begin wrapping a song in the middle band.,gold0-orig,pos,unl,unl,unl,unl,There is a brown guitar bag behind her.,She\nanetv_nUoN18FTeug,12635,A little girl is playing an acoustic guitar. There,is a brown guitar bag behind her.,lady is holding the violin and while the woman is playing the drums.,shows the girl she is playing and the song plays.,'s all text on the screen.,is a girl with the baby playing sticks.,gold0-orig,pos,unl,unl,pos,pos,A little girl is playing an acoustic guitar.,There\nanetv_nUoN18FTeug,11882,Little kid is in a white room with a pony tail is playing the guitar and singing. behind the girl,is a guitar case hanging behind the door.,is a brown elf building with red and red chalk.,leans the bottle and two glasses of concentration.,are sleeping poles with her hands in their lap as music plays in a dimly moving room.,is singing and tapping his nose.,gold1-orig,pos,unl,unl,unl,unl,Little kid is in a white room with a pony tail is playing the guitar and singing.,behind the girl\nanetv_nUoN18FTeug,11881,Little kid is standing in front of a camera playing guitar. little kid is in a white room with a pony tail,is playing the guitar and singing.,to a shirt and shirt.,suggestively to her dog.,blowing away.,with balls hanging from the trees.,gold0-orig,pos,unl,unl,unl,unl,Little kid is standing in front of a camera playing guitar.,little kid is in a white room with a pony tail\nanetv_aGlfi9PqRdY,17197,A large vegetable is being peeled and chopped. The chopped vegetable,is being put into a different pot.,are cut into cake as a fairly soldier.,'s listed for the a man continues talking.,is talking as the woman continues playing with them.,,gold0-orig,pos,unl,unl,unl,n/a,A large vegetable is being peeled and chopped.,The chopped vegetable\nanetv_aGlfi9PqRdY,17198,The chopped vegetable is being put into a different pot. Sugar,is being put on top of the vegetables in the pots.,is added to the pot and put her around the pan.,is chopped like vinegar on the top of a yellow pot.,lie on the fence top over the drinks.,,gold0-orig,pos,unl,unl,unl,n/a,The chopped vegetable is being put into a different pot.,Sugar\nanetv_aGlfi9PqRdY,17196,The sliced potato is put into a pot. A large vegetable,is being peeled and chopped.,shows how to remove ribs.,is shown and is making it a crack.,sit on a chopping top.,has put in his pan.,gold0-orig,pos,unl,unl,pos,pos,The sliced potato is put into a pot.,A large vegetable\nanetv_aGlfi9PqRdY,5130,They put the potato into a pot and the skin in a bowl. He finally,puts salt in the pot.,pours it into a pot and gets into the pot.,puts the dough into a bowl and puts black insides into it.,puts all the noodles in the oven bowl containing a sandwich.,puts the finished product on the plate and makes small cracks.,gold0-orig,pos,unl,unl,unl,unl,They put the potato into a pot and the skin in a bowl.,He finally\nanetv_aGlfi9PqRdY,17194,A potato is being washed and peeled. The potato then,gets sliced on a board.,puts the man ice on with a hanging product.,pour in the pan and add green pasta.,cuts onto a small bowl that peels the potato.,balls up into slices of frost.,gold0-orig,pos,unl,unl,unl,unl,A potato is being washed and peeled.,The potato then\nanetv_aGlfi9PqRdY,17195,The potato then gets sliced on a board. The sliced potato,is put into a pot.,is burnt off with a spoon.,is poured onto the strawberries.,is sliced into the bowl.,is put atop the worktop in off pieces.,gold0-orig,pos,unl,unl,unl,pos,The potato then gets sliced on a board.,The sliced potato\nanetv_aGlfi9PqRdY,5129,A close up of ingredients are shown laid out on a table and leads into a person cutting up potatoes. They,put the potato into a pot and the skin in a bowl.,places the eggs into the pan into a pot and mixes ingredients into the bowl.,conclude by a piece of a table as well as presenting pieces and making the bonds tracing out.,ends by speaking to the camera and mixing it around a plant.,,gold0-reannot,pos,unl,unl,unl,n/a,A close up of ingredients are shown laid out on a table and leads into a person cutting up potatoes.,They\nanetv_yslzj3NGuLU,9394,\"A woman removes the snow on the top of a car using a brush, also removes snow on the side windows and back window. After, the woman\",continues taking snow from the hood of the car and the front window that has a lot of snow.,takes a hose of snow and speeds in the air with a shovel.,lays the snow and uses the shovel to wipe the snow from the car.,shows doing a thick braid as the last man stands and goes back to talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman removes the snow on the top of a car using a brush, also removes snow on the side windows and back window.\",\"After, the woman\"\nanetv_8EyYHnijfnI,13148,She then pierces it with a needle. She,puts a piece of jewelry on it next.,plugs it and changes to two inserts.,puts the welding pencil in.,picks up her other outfit and holds a sign that is behind it.,,gold0-orig,pos,pos,pos,pos,n/a,She then pierces it with a needle.,She\nanetv_8EyYHnijfnI,13146,A woman sits in a chair. Another woman,puts something up her nose.,is in a set discussing.,nudges her ankle in the cat's lap.,stands in front wearing the camera while filing through the hair.,,gold0-orig,unl,unl,unl,unl,n/a,A woman sits in a chair.,Another woman\nanetv_8EyYHnijfnI,13147,Another woman puts something up her nose. She then,pierces it with a needle.,begins to brush her teeth.,opens it windows to show a logo.,faces the water and starts piercing her hair.,shows off how to use the dragon belt to work.,gold0-orig,pos,unl,unl,unl,unl,Another woman puts something up her nose.,She then\nanetv_Ne8UzAInivM,17754,They get in their boat and drive. They,jump under the water again.,drive way to the raft set.,\"snow has covered the square with his hand,.\",dry down the hill.,are slow slowly in motion.,gold0-orig,pos,unl,unl,unl,unl,They get in their boat and drive.,They\nanetv_Ne8UzAInivM,17752,A scuba diver is swimming through the water on a video game. They,are looking through rubble of an old ship.,are explaining on cities different techniques for their competitive techniques.,\"are in a swimming pool, down between them, dancing together.\",are shown tubing fast in bed.,swim and swim toward us as the lights pause for table spices.,gold0-orig,pos,unl,unl,unl,unl,A scuba diver is swimming through the water on a video game.,They\nanetv_Ne8UzAInivM,17753,They are looking through rubble of an old ship. They,get in their boat and drive.,\"struggle desperately to stay free, which are drawn on the surface.\",signs in the big family picture.,\"glances thoughtful, then turns to the men to sits down, staring back with her lover, who turns and speaks.\",,gold0-reannot,pos,unl,unl,pos,n/a,They are looking through rubble of an old ship.,They\nlsmdc1048_Gran_Torino-92502,12989,\"At a tailor's, someone is fitted for a suit. In church, someone\",walks up the aisle reading a bible.,drops the stack of boxes on the floor.,watches bitterly as he passes from the museum.,watches a video monitor.,,gold0-orig,pos,unl,unl,pos,n/a,\"At a tailor's, someone is fitted for a suit.\",\"In church, someone\"\nlsmdc1048_Gran_Torino-92502,12990,\"In church, someone walks up the aisle reading a Bible. He\",looks up and sees someone.,glances at the scene in the open book.,looks into into the present and reaches into his shirt pocket.,rides in a portable chair and opens up a bunch of weeds.,,gold0-orig,pos,unl,unl,unl,n/a,\"In church, someone walks up the aisle reading a Bible.\",He\nanetv_rosZj4ZcPBA,2523,He is wearing a hat and jeans and just out there by himself. He,continues to keep blowing the pile of leaves when a dog runs by out of nowhere.,opens the restaurant door and stares at someone blankly.,is seen in the uniform still strapped to his vest and back sunglasses and he is trimming his sides and quickly burned his muscles.,gives her food to him.,,gold1-orig,pos,unl,unl,unl,n/a,He is wearing a hat and jeans and just out there by himself.,He\nanetv_rosZj4ZcPBA,2522,He seems to be at a park or something in the parking lot. He,is wearing a hat and jeans and just out there by himself.,\"moves the lawn mower, then gets off top of the lawn mower.\",turns the edge up and slumps her body off to the slide.,\"looks out front, runs his fingers down the pane to the deserted office.\",\"pauses in front of the drum set, her eyes locking on someone.\",gold1-orig,pos,unl,unl,unl,unl,He seems to be at a park or something in the parking lot.,He\nanetv_rosZj4ZcPBA,2521,Outside a man is using a leaf blower using it to blow a pile of leaves. He,seems to be at a park or something in the parking lot.,waves back to let men play.,pushes off his feet to get a better look.,awakes and curled up in a car while the camera walks outside.,,gold1-orig,pos,unl,unl,unl,n/a,Outside a man is using a leaf blower using it to blow a pile of leaves.,He\nlsmdc3016_CHASING_MAVERICKS-6300,6162,\"Someone shifts his conflicted gaze. Looking down, he\",finds his wife's delicate features set in a solemn expression.,finds his mistress's eye shadow framed in a dark window pout.,\"picks up her bearings wagon, sees it through another drawer, and lets her into his room.\",rolls his eyes as a spotlight descends off on.,,gold1-orig,pos,unl,unl,unl,n/a,Someone shifts his conflicted gaze.,\"Looking down, he\"\nlsmdc3016_CHASING_MAVERICKS-6300,6176,\"Someone takes a folded page from the teen and opens it. As he looks it over, he\",lifts his brow and nods.,\"reads a text message, which reads 10 years earlier.\",finds a bald teenage and smiling at the photo of her old friend.,forces a smile and cycles up to his restaurant by someone now holding his laptop.,,gold0-orig,pos,unl,unl,unl,n/a,Someone takes a folded page from the teen and opens it.,\"As he looks it over, he\"\nlsmdc3016_CHASING_MAVERICKS-6300,6169,\"She remains curled up on her belly. At a sink piled high with dirty dishes, someone\",\"shakes out a cup, then fills it with coffee and shifts his anxious gaze.\",sits on the top.,peeks into the apartment where she washes with the penguins.,sits on a hypodermic with it in his palm.,adds a plane for the watermelon.,gold0-orig,pos,unl,unl,unl,unl,She remains curled up on her belly.,\"At a sink piled high with dirty dishes, someone\"\nlsmdc3016_CHASING_MAVERICKS-6300,6166,\"Now, a wall clock reads 6: 25. Heading out the door, someone\",finds a set of keys on a table.,comes downstairs in the davenport.,checks the order machine pot and puts the bottle in someone's bag.,finds himself beside him as he reads.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, a wall clock reads 6: 25.\",\"Heading out the door, someone\"\nlsmdc3016_CHASING_MAVERICKS-6300,6165,\"She steps out of the kitchen. Now, a wall clock\",reads 6: 25.,shows pulsing rings on.,reads 1: 1.,reads 1 - 4.,reads less than 8: 30.,gold0-orig,pos,unl,unl,unl,pos,She steps out of the kitchen.,\"Now, a wall clock\"\nlsmdc3016_CHASING_MAVERICKS-6300,6172,Someone flips through the old photos documenting his childhood. One,shows him on skis in the snow.,desperately covers a time with someone's wand.,pins up his mitt.,\"guards tug on the man's curved hallway bars, the children boys dance broadly.\",carries a small child in pink corn silk hair and lays down on a wheelchair.,gold0-orig,pos,unl,unl,unl,unl,Someone flips through the old photos documenting his childhood.,One\nlsmdc3016_CHASING_MAVERICKS-6300,6178,\"Inside, someone eats a chocolate cupcake. Someone\",\"grabs the cupcake from him, eyes it, then tosses it in the back.\",waits at the theater.,steals a look at a test.,spots him and catches herself so she greets her dog who joins her.,eats a candy in his hands.,gold0-orig,pos,unl,unl,unl,pos,\"Inside, someone eats a chocolate cupcake.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6300,6163,\"Looking down, he finds his wife's delicate features set in a solemn expression. Someone\",hangs his head and nods.,rubs food on his chin.,steps over and opens the pants.,finds someone staring at her in amazement.,gives a grave nod.,gold1-orig,pos,unl,unl,unl,unl,\"Looking down, he finds his wife's delicate features set in a solemn expression.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6300,6170,\"At a sink piled high with dirty dishes, someone shakes out a cup, then fills it with coffee and shifts his anxious gaze. Now, someone's van\",sits in the pouring rain outside his house.,sits on a handicapped spot.,sits down behind the truck.,is parked at the base of the train.,rounds a corner and sits in the open.,gold1-reannot,pos,unl,unl,pos,pos,\"At a sink piled high with dirty dishes, someone shakes out a cup, then fills it with coffee and shifts his anxious gaze.\",\"Now, someone's van\"\nlsmdc3016_CHASING_MAVERICKS-6300,6179,\"Someone grabs the cupcake from him, eyes it, then tosses it in the back. He\",tosses down a sandwich.,\"flips it open and watching this crazy old man, his face short with grey, angry eyes.\",stops writing and frowns.,remembers that being filmed on tv.,slams the door on the fireplace.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone grabs the cupcake from him, eyes it, then tosses it in the back.\",He\nlsmdc3016_CHASING_MAVERICKS-6300,6175,Someone arrives and climbs in. Someone,takes a folded page from the teen and opens it.,gets a bit dirty and can now just clean up.,cooks a meal on the stove.,comes up the back steps.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone arrives and climbs in.,Someone\nlsmdc3016_CHASING_MAVERICKS-6300,6164,Someone hangs his head and nods. She,steps out of the kitchen.,crosses to someone's apartment in bed.,sits down from him.,smiles and offers his hand.,hands him a package.,gold0-reannot,pos,unl,unl,unl,pos,Someone hangs his head and nods.,She\nlsmdc3016_CHASING_MAVERICKS-6300,6177,\"As he looks it over, he lifts his brow and nods. Inside, someone\",eats a chocolate cupcake.,smooths out a long glass of hair and takes the rest of the ladies hair.,draws a pen and gazes at the plaque.,joins him at the edge of the auditorium as he watches a rubbing someone with his foot.,\"sees someone, who lifted him up on the stretcher marked with a box bag slung over his shoulder.\",gold1-reannot,pos,unl,unl,unl,unl,\"As he looks it over, he lifts his brow and nods.\",\"Inside, someone\"\nlsmdc3016_CHASING_MAVERICKS-6300,6167,\"Heading out the door, someone finds a set of keys on a table. Someone\",opens her door then turns on a shower.,turns someone in the direction of an ambulance's wooden doors.,waits with the bags stash her purse inside.,pulls on an extension and hands it to her.,sits before a chimpanzee.,gold0-reannot,pos,unl,unl,unl,unl,\"Heading out the door, someone finds a set of keys on a table.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6300,6168,Someone opens her door then turns on a shower. She,remains curled up on her belly.,unlocks a metal vent and places her feet back on.,gets out and opens the doors.,goes to door off the car and falls back over.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone opens her door then turns on a shower.,She\nanetv_DbZ0ns9s2X0,16576,A person's hand then begins putting marks on the painting and dipping her brush continuously in the paint. The camera pans down the finished picture and a text,is shown across the screen.,fly up over the screen.,is seen with the people pointing at the camera as well as people.,is the product appears on its screen.,appears with a single leaf as it burns along the grass.,gold1-reannot,pos,unl,unl,unl,unl,A person's hand then begins putting marks on the painting and dipping her brush continuously in the paint.,The camera pans down the finished picture and a text\nanetv_DbZ0ns9s2X0,16575,A painting is shown followed by several pictures of painting tools and supplies. A person's hand then,begins putting marks on the painting and dipping her brush continuously in the paint.,begins cutting the wood.,begins cutting the nails of the cat's nails.,pierces the tree with gray paint.,,gold0-reannot,pos,unl,unl,unl,n/a,A painting is shown followed by several pictures of painting tools and supplies.,A person's hand then\nanetv_485DjSbjOV8,6326,Two people are seen standing up behind a set of drums looking at the camera. The two then,begin playing the drums while a small girl walks in and out of frame.,begin playing with one another while people watch on the sides.,continue playing drums with one another while speaking to the camera.,begin playing the flute and lead into them playing around one another as well as speaking.,begin hula hooping with one another while dancing and singing into the camera.,gold0-orig,pos,unl,unl,unl,pos,Two people are seen standing up behind a set of drums looking at the camera.,The two then\nanetv_485DjSbjOV8,6327,The two then begin playing the drums while a small girl walks in and out of frame. The two,pause for a moment then continue playing with one stopping and letting the other finish.,continuously continue playing the instrument while the audience watches.,end up together dancing with one another and holding out various objects while the camera captures them.,continue to play while the band records on the end.,continue to play and dance around the group holding hands with one another.,gold0-orig,pos,unl,unl,unl,unl,The two then begin playing the drums while a small girl walks in and out of frame.,The two\nlsmdc0012_Get_Shorty-53494,13359,And he leans over and kisses her. People,lie in bed together.,are in the dock in the bath.,turns to face someone but finds most of his face already.,guard primps his shirt.,pull someone into the embrace and kiss.,gold0-orig,pos,unl,unl,unl,unl,And he leans over and kisses her.,People\nlsmdc0012_Get_Shorty-53494,13358,\"He looks at her, puts his drink down. And he\",leans over and kisses her.,stands there for a moment then nods.,\"starts to leave, his expression is serene with intense intense intensity.\",allows a brief smile.,\"looks at her, smiling broadly.\",gold1-reannot,pos,unl,unl,pos,pos,\"He looks at her, puts his drink down.\",And he\nlsmdc3080_THIS_MEANS_WAR-37125,3895,He takes off his sunglasses and she does the same. They,sit across from each other.,jumps down and takes buckets of disconnected heat.,are having sex in another lead.,sixth screen shows different people randomly throughout the city.,\"laughs, composes himself, and walks off, waving his hand in the air and getting stuck then down.\",gold0-orig,pos,unl,unl,unl,unl,He takes off his sunglasses and she does the same.,They\nlsmdc0027_The_Big_Lebowski-63160,5106,\"Someone ignores someone, addresses the Germans. The Germans\",\"confer again, in german.\",aims her wand at someone's head and starts to get up.,nudges a milkman then watches as robot's head pops up.,are green and full of fat.,have been embarrassed and vulnerable.,gold0-orig,pos,unl,unl,unl,pos,\"Someone ignores someone, addresses the Germans.\",The Germans\nlsmdc0027_The_Big_Lebowski-63160,5109,\"Louder, to the Germans, as he looks in his wallet. With a ring of steel, someone\",produces a glinting saber.,gets the sheriff tape.,speaks about masked guards.,slips out a puzzled puff of his cigarette as his uncle takes out its keys.,,gold0-orig,pos,unl,unl,unl,n/a,\"Louder, to the Germans, as he looks in his wallet.\",\"With a ring of steel, someone\"\nlsmdc0027_The_Big_Lebowski-63160,5107,\"Someone's eyes, burning with hatred, are locked on someone's. Someone\",is digging into his pocket.,leads down a ladder.,\"pulls towards the diadem, three times knocked in.\",screams into the boat's chaos.,goes to the boarding girl and someone.,gold1-reannot,unl,unl,unl,unl,unl,\"Someone's eyes, burning with hatred, are locked on someone's.\",Someone\nanetv_p-l6as8o1f4,2105,A man and a woman walks pulling a horse. When the people cross the last river they,see a beautiful building.,return to the riverbank.,proceed for a race.,kiss around under the water.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman walks pulling a horse.,When the people cross the last river they\nanetv_p-l6as8o1f4,2104,People rides horses on an unpaved road and cross tree river in the forest. A man and a woman,walks pulling a horse.,are standing to remove their bike.,are then playing horses and is dragged to the shore and goats and talking.,walk to a playground.,,gold0-orig,pos,unl,unl,unl,n/a,People rides horses on an unpaved road and cross tree river in the forest.,A man and a woman\nanetv_p-l6as8o1f4,5541,\"All of a sudden, a small barn is shown and several people begin horse back riding throughout the wilderness. As they travel, the horse\",enters a body of water walking through the river and back into the forest of trees.,gets stuck in a path path making sure it has to turn left towards the horse.,has completely stopped when people take their seats.,begins and several members are seen talking to each other while talking to one another on its side.,,gold0-orig,pos,unl,unl,unl,n/a,\"All of a sudden, a small barn is shown and several people begin horse back riding throughout the wilderness.\",\"As they travel, the horse\"\nanetv_p-l6as8o1f4,5540,\"A brown horse's hooves are seen walking over a trail of rocks and walking to a small body of water. All of a sudden, a small barn is shown and several people\",begin horse back riding throughout the wilderness.,are shown running for it.,are laying back in the corner.,are riding on horses on horses going over the waterfall.,,gold0-reannot,pos,unl,unl,unl,n/a,A brown horse's hooves are seen walking over a trail of rocks and walking to a small body of water.,\"All of a sudden, a small barn is shown and several people\"\nanetv_CZGDWYYkO-U,18381,A girl wearing glasses is seen speaking to the camera that leads into her taking them off and holding them to her camera. She then,holds up various items and holds her eye open to put in contact lens for both eyes.,begins to get the makeup on the nails and takes the brush off of the head and into the bathroom.,lines up various ingredients and putting them on to show a bottle making powder and then mixing it into the shaker.,begins immediately demonstrating how to use the machine on the side and sides to cut without keeping an eye on her.,shows how to use them using different colors to change one gear and using a protective tool to apply them into a scraper.,gold0-orig,pos,unl,unl,unl,unl,A girl wearing glasses is seen speaking to the camera that leads into her taking them off and holding them to her camera.,She then\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61006,10499,\"A sudden wind rushes through the tent, lifting hangings, scattering maps, knocking over goblets. As someone looks at someone, an image\",flashes in his mind's eye.,\"slows on them: our perspective, with only a thousand words.\",falls out of the crate.,of a cube facility is displayed.,appears from someone's room.,gold0-orig,pos,unl,unl,unl,unl,\"A sudden wind rushes through the tent, lifting hangings, scattering maps, knocking over goblets.\",\"As someone looks at someone, an image\"\nanetv_4fgIHu_Se3Q,14570,\"He mounts quickly, spinning and turning around it and jumping between the two bars several times. He finally\",\"dismounts, throwing his arms into the air before walking away.\",gets to his feet and rides up the hill and then then running about jumping several times afterwards.,comes back chained on the ground and sprints for another piece of the athlete while leading him out of the way.,\"stops and sits in a raft down the stairs somewhat thoroughly at the same time, more but is completely empty.\",reaches the end of the track and comes and jumps on top of a pole.,gold0-orig,pos,unl,unl,unl,unl,\"He mounts quickly, spinning and turning around it and jumping between the two bars several times.\",He finally\nanetv_4fgIHu_Se3Q,14569,An athlete walks up to a beam. He,\"mounts quickly, spinning and turning around it and jumping between the two bars several times.\",leaps into the pit and throws another disc.,does a gymnastics routine on the mat.,\"lifts the pole to one place, and then jumps off the pummel machine.\",spins as he dismounts and lands on a mat.,gold1-reannot,pos,unl,unl,unl,pos,An athlete walks up to a beam.,He\nanetv_6h-WE-0eBlA,16869,A woman in a pink bikini spins her cue as she waits her turn. Then she,\"takes a shot at the ball, knocking them into the holes.\",passes the ball with a colored ball and throws it in the air backwards.,points to her to the camera.,\"flips the hula hoops to someone, who sits before the video line.\",throws a ball and leaves.,gold0-orig,pos,unl,unl,unl,unl,A woman in a pink bikini spins her cue as she waits her turn.,Then she\nanetv_6h-WE-0eBlA,16868,\"A man is leaning over a pool table, hitting the ball with his cue. A woman in a pink bikini\",spins her cue as she waits her turn.,is holding them toy.,walks on the floor.,is standing next to him watching the game.,,gold0-orig,pos,unl,pos,pos,n/a,\"A man is leaning over a pool table, hitting the ball with his cue.\",A woman in a pink bikini\nanetv_MRzsZN5p9QY,10027,A man bends down and picks up a weight. They,lift the weight up and down several times.,makes it upside down before fully sponsored from a variety.,throw the other again.,lifts it over his head.,both uses a roller by volleys it in the clean facial area.,gold0-orig,pos,unl,unl,unl,unl,A man bends down and picks up a weight.,They\nanetv_MRzsZN5p9QY,10028,They lift the weight up and down several times. They,drop the weight onto the ground.,begin kicking the ball around while drinking.,do push ups back and forth.,move their hands back and forth.,pause for a moment and speak to each other.,gold1-reannot,pos,unl,pos,pos,pos,They lift the weight up and down several times.,They\nanetv_6ZabZdqdLyA,6364,\"The other child also wants to join the first child on the same swing, and holds the swing steady while the child climbs on. The child is able to climb on, and the two children\",enjoy swinging together as the adult pushes the swing forward.,try to help him down.,sit on the ground paying them to the baby.,continue to swing and get their paddles.,run around the floor for the next time.,gold0-orig,pos,unl,unl,unl,unl,\"The other child also wants to join the first child on the same swing, and holds the swing steady while the child climbs on.\",\"The child is able to climb on, and the two children\"\nanetv_6ZabZdqdLyA,6361,Two small children are playing on a swingset on a snow covered yard. One child,\"runs over to a swingset, but decides to change over to a green swing.\",talks to kids as they float together in the back yard.,throws down a pinata as people run down and full of people.,marches up next to a raking tree.,is holding a stick and laying over a crying child.,gold0-orig,pos,unl,unl,unl,pos,Two small children are playing on a swingset on a snow covered yard.,One child\nanetv_6ZabZdqdLyA,6362,\"One child runs over to a swingset, but decides to change over to a green swing. An adult\",helps the child onto the swing.,\"sits inside the bar for a moment, then pauses to speak to the camera.\",\"comes to hula hoops, then goes to iron trampoline, and then forms a pyramid.\",walks behind him and start swinging at the pinata.,\"hops down to someone, holding the baby absently.\",gold0-orig,pos,unl,unl,unl,unl,\"One child runs over to a swingset, but decides to change over to a green swing.\",An adult\nanetv_6ZabZdqdLyA,6363,An adult helps the child onto the swing. The other child,\"also wants to join the first child on the same swing, and holds the swing steady while the child climbs on.\",smiles at the camera while the child shakes her neck.,gets on a swing and the boy tries to help the two boys.,moves a little more time to swing while another swing in the air.,leaps through the side and kicks the pinata.,gold0-reannot,pos,unl,unl,unl,unl,An adult helps the child onto the swing.,The other child\nanetv_W2Wjbhsuacw,18670,It is catching nicely and the woods is burning quick. The fire,dies down a little but is still burning.,rolls in flames which fills the house.,holds up in the dimly lit street.,goes out when the gates start to lit.,starts to burn as the tire flips and sails out.,gold1-orig,pos,unl,unl,unl,unl,It is catching nicely and the woods is burning quick.,The fire\nanetv_W2Wjbhsuacw,18669,Outside in a bucket there is some wood and someone come out and starts to blow something on it. He,is blowing fire on to it with some kind of fire contraption that looks like a gardening tool.,gets perfectly slapped and comes there.,\"is still in the yard doing tricks, then he has try to open the patch of hair once again.\",\"can be seen using the smaller gun, which contains metal with fine, brown leaves.\",,gold0-orig,pos,unl,unl,unl,n/a,Outside in a bucket there is some wood and someone come out and starts to blow something on it.,He\nlsmdc3092_ZOOKEEPER-45302,17118,\"As they move apart, we see someone watching. Someone\",turns to the woman at her table.,slides his bony hand over the cord dangling and draws it.,\"slips past, avoiding someone.\",watches as people stagger away.,,gold1-reannot,pos,pos,pos,pos,n/a,\"As they move apart, we see someone watching.\",Someone\nanetv_5DhbyYavYp4,17236,Another man is giving instructions on lawn and garden care. The man,climbs up a tall ladder to trim the trees and bushes several times.,grabs two paws to see how to play with a cat and then stop a man blowing leaves.,stands in front of a piece of trees near the leaves of a war log just placed on the ground.,is mowing a log on the yard.,,gold0-orig,pos,unl,unl,unl,n/a,Another man is giving instructions on lawn and garden care.,The man\nanetv_5DhbyYavYp4,17237,The man climbs up a tall ladder to trim the trees and bushes several times. He,goes around the entire side to trim the hedges.,beats him again and does.,is lifted down from her body and meet her on the ground.,\"is using fence paper to insert the canvas office on family sparks, lighting back in the original tool.\",,gold0-orig,pos,unl,unl,unl,n/a,The man climbs up a tall ladder to trim the trees and bushes several times.,He\nanetv_5DhbyYavYp4,17239,\"The instructor continues talking about the gardening process, The man trims the hedges that form a barrier near a house. The instructor\",explains the process again to the viewers.,watches other children on the side of the finish line.,climbs up a wooden bar of the hedge and begins to weave.,starts up a third set.,walks past the firelight fence and stands up.,gold0-orig,pos,unl,unl,unl,unl,\"The instructor continues talking about the gardening process, The man trims the hedges that form a barrier near a house.\",The instructor\nanetv_5DhbyYavYp4,17234,There is a garden with many trees and shrubs. There,is a man using a hedging and trimming equipment trimming the bushes.,are shown kids watching on the side.,seems to be having fun.,are many houses next to them.,,gold0-orig,pos,unl,unl,pos,n/a,There is a garden with many trees and shrubs.,There\nanetv_5DhbyYavYp4,17235,There is a man using a hedging and trimming equipment trimming the bushes. Another man,is giving instructions on lawn and garden care.,\"walks in behind a hedge, cutting the hedge.\",is seen behind the camp demonstrating how to reach a hedge and row them around.,is shown using a stick to hit bowling pins.,walks to the hedge and approaches a blue brick.,gold1-orig,pos,unl,unl,unl,pos,There is a man using a hedging and trimming equipment trimming the bushes.,Another man\nanetv_5DhbyYavYp4,17240,The instructor explains the process again to the viewers. The scene,changes to a strange looking statue in a busy city and ends with a thank you for watching message.,fades to black and the girl blinks off off the skin tattoos underneath the bar.,fades back to someone who has finished work on her own piece.,ends with a man opening his face and looking down at a plate of leg treatment.,is filmy put to see more of the females to demonstrate their martial arts moves in the group.,gold1-reannot,pos,unl,unl,unl,unl,The instructor explains the process again to the viewers.,The scene\nanetv_5DhbyYavYp4,17238,\"He goes around the entire side to trim the hedges. The instructor continues talking about the gardening process, The man\",trims the hedges that form a barrier near a house.,appears with clippers and melts the hedge using a pair of shears.,messing up face blocks behind him.,puts different things offscreen and then walks away.,\"mowing, and goes to do a step with a chainsaw on the grass.\",gold0-reannot,pos,unl,unl,unl,unl,He goes around the entire side to trim the hedges.,\"The instructor continues talking about the gardening process, The man\"\nanetv_HrWr7FmBYn4,1038,A woman is seen speaking to a camera and leads into herself with wet hair and brushing it through. Her hair is snow dry and she,puts clips into her hair and begins curling.,also shows the scene transitions to pictures of iron woman working on a hair.,is combing the hair tan.,pulls out more pictures of the dog.,'s seen speaking to a camera while a woman is putting snow off her hair.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen speaking to a camera and leads into herself with wet hair and brushing it through.,Her hair is snow dry and she\nanetv_ZOczr9WCVig,18517,He hammers the tiles a little to make them lie flat. Then floor is now finished and he,wipes the tiles off making them shiny.,paints the floorboards beneath.,is given the carpet and continues cleaning the floor at the windows.,moves the red carpet back to the wall paper that is attached to the wall and lays down onto his flat floor.,,gold0-orig,pos,unl,unl,unl,n/a,He hammers the tiles a little to make them lie flat.,Then floor is now finished and he\nanetv_ZOczr9WCVig,18512,\"There are many different tiles being shown and there is wooden floors being shown. First the man removes the baseboard, then he\",gets a drill and puts screws in the floor.,takes an measure cup and shorter cloth when the people start site done.,begins to clean more pointy.,takes out the bottles such as support girders.,is sanding down along white carpet.,gold1-orig,pos,unl,unl,unl,pos,There are many different tiles being shown and there is wooden floors being shown.,\"First the man removes the baseboard, then he\"\nanetv_ZOczr9WCVig,18516,Then he smears cement onto the floor and lies the tiles on top of it. He,hammers the tiles a little to make them lie flat.,finds that he was in freshly the parapet as he comes down basement where there are the keys and meters left below.,\"shows the mechanism to stand backwards using the metal work, measuring the carpet.\",welds the detail onto the carpet and slides it onto the tiles.,,gold0-orig,pos,unl,unl,pos,n/a,Then he smears cement onto the floor and lies the tiles on top of it.,He\nanetv_ZOczr9WCVig,18513,\"First the man removes the baseboard, then he gets a drill and puts screws in the floor. Then he\",draws lines to put tiles on the floor.,transfers the piece the pieces and then shows how to make a charming drink and the kitchen glass.,lifts the weight lifter however and holds it up.,puts the bread on and does a strip down the tiles.,melts the bonfire into a box using a tool.,gold0-orig,pos,unl,unl,unl,unl,\"First the man removes the baseboard, then he gets a drill and puts screws in the floor.\",Then he\nanetv_ZOczr9WCVig,18514,Then he draws lines to put tiles on the floor. I then,see him with a machine that cuts tiles in half and he puts half of a tile on the floor.,see another little opening displaying the names.,\"see it, and across.\",see the skin to hit the metal.,see the bolts of the roof.,gold0-reannot,pos,unl,unl,unl,pos,Then he draws lines to put tiles on the floor.,I then\nanetv_ZOczr9WCVig,18515,I then see him with a machine that cuts tiles in half and he puts half of a tile on the floor. Then he,smears cement onto the floor and lies the tiles on top of it.,\"takes a slip of folding paper, and is used using a stone to clean the soap professionally.\",puts a plaster on a wall.,stands up and the camera pulls back.,,gold0-reannot,pos,unl,pos,pos,n/a,I then see him with a machine that cuts tiles in half and he puts half of a tile on the floor.,Then he\nanetv_DQVkDzj4cPE,10067,They begin to kick their legs in the pool. They,swim with little boards in front of them.,pull it back into motion.,begin to buzz on something.,sit by the table several times.,see a women standing on the side watching her preparing the meal.,gold0-orig,pos,unl,unl,unl,unl,They begin to kick their legs in the pool.,They\nanetv_DQVkDzj4cPE,7797,Two people are laying stomach side down in a shallow pool. They,start kicking the water with their legs.,get off the water.,leave a hole in the water.,make their way to the beach.,start playing a game of foosball.,gold0-orig,pos,unl,unl,unl,unl,Two people are laying stomach side down in a shallow pool.,They\nanetv_DQVkDzj4cPE,7798,They start kicking the water with their legs. They,grab flotation devices and practice swimming with them.,get the opposing goal.,go down the court to the right only to put on ball on the floor.,see the gap and bungee roping.,carry the rope up to a slide.,gold0-orig,pos,unl,unl,unl,unl,They start kicking the water with their legs.,They\nanetv_DQVkDzj4cPE,10066,Two people are laying in a swimming pool. They,begin to kick their legs in the pool.,swim strongly on the lacrosse pool.,splash each other as they go.,see someone swimming in the ocean.,,gold0-orig,pos,unl,pos,pos,n/a,Two people are laying in a swimming pool.,They\nanetv_GvvmZ1Bi1xk,17965,A woman pushes a lawn mower through the grass. The lady,lifts the mower and backs up.,spins the toy mower around the yard.,starts raking the lawn.,pulls the leaves of a leaf blower.,turns the mower around around the yard.,gold1-orig,pos,unl,unl,unl,pos,A woman pushes a lawn mower through the grass.,The lady\nanetv_zBm3FR-CCI0,11726,The plate landed on the field and the people in the field go after the field. The athlete,is in a netted fence where they throw their metal plate to the field.,gets up and runs across the field to another person and runs across a field.,race in a circle back and forth.,\"runs up the track, win with all the winners in number 4.\",runs to retrieve the pole and uses a stick to run.,gold0-orig,unl,unl,unl,unl,unl,The plate landed on the field and the people in the field go after the field.,The athlete\nanetv_zBm3FR-CCI0,7226,\"He throws the disc across the field, and it is repeated a few times. Many athletes\",\"are shown doing the same, the winner raising his arms in celebration.\",do slow flips numerous times.,join the rope and.,\"throw the ball around the room trying, but that.\",walk alongside the fence cheering.,gold0-orig,pos,unl,unl,unl,pos,\"He throws the disc across the field, and it is repeated a few times.\",Many athletes\nanetv_W0dCIs9Y8yg,17466,The camera follows a small child on skis as he or she maneuvers past a crowd of people. The child,skis down a slope with other people at various points along the trail.,gets back and grips his arms.,continues moving up and down the hill on the lawn and looking to the camera.,lands ready on his left.,looks more angry and gets worse.,gold0-orig,pos,unl,unl,pos,pos,The camera follows a small child on skis as he or she maneuvers past a crowd of people.,The child\nanetv_kS_wMOFfMDk,12297,\"A woman rubs her hand very well. Then, the woman\",rinse her hands with water.,turns right into the bucket and wash the dishes.,stand and clutch tissue.,inserts the heart of the file with a grey machine.,,gold1-orig,pos,unl,unl,unl,n/a,A woman rubs her hand very well.,\"Then, the woman\"\nlsmdc1048_Gran_Torino-92209,12810,The black guys notice someone. Someone,steps out of his pickup.,arrives over a locked gate outside the boy's coffin.,\"sits a few feet red, frowning.\",stops in the waiting position.,,gold0-orig,pos,unl,unl,pos,n/a,The black guys notice someone.,Someone\nlsmdc1048_Gran_Torino-92209,12809,\"Looking uneasy, someone drives across the junction. Someone\",pulls up beside them.,carries a covered bag.,ducks behind a fallen man.,receives shots of the cameras.,,gold0-orig,pos,unl,unl,unl,n/a,\"Looking uneasy, someone drives across the junction.\",Someone\nlsmdc1048_Gran_Torino-92209,12812,The guys hold someone back. Someone,pulls a colt.,carries the sedan to the car where someone dash out of the car and out of his car.,motion the penguins at someone.,bundles passengers off the counter.,land on a valve.,gold0-reannot,pos,unl,unl,unl,unl,The guys hold someone back.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7155,18340,\"Someone stares back into someone's scarred face, then walks away looking confused. Someone\",swigs from his hip flask.,\"closes the chamber, runs along dead night and jumps over the wall, slamming themselves together.\",gets to his feet and puts on his gear.,picks up a robe and places it next to the blanket on the floor.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone stares back into someone's scarred face, then walks away looking confused.\",Someone\nanetv_IV47aK7qJdY,6653,\"The dry brown and yellow leaves are on the ground, on top of green grass. A man with a leaf blower on his hand\",started to blew the leaves towards the center of the field.,\"tries to swing his lawn mower to work to beat his porch, then he turns it around and walks away.\",briefly clicks the whistle of the leaf blower.,leads a leaf blower down a sidewalk.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The dry brown and yellow leaves are on the ground, on top of green grass.\",A man with a leaf blower on his hand\nanetv_k_7hLIwul48,5035,The host walks up to the dart board to see the darts. Mike Tyson,takes the blindfold off.,continues to shoot - slam his stomach on a dart board.,jumps through a porthole they scores.,puts a dispenser machine in a base.,continues to talk and hits the dart on the dart board.,gold1-orig,pos,unl,unl,unl,unl,The host walks up to the dart board to see the darts.,Mike Tyson\nanetv_k_7hLIwul48,17160,A man is seen blind folded on a stage and a woman hands him darts while speaking to him. The man then throws the darts and the woman,laughs at his results while he takes the blindfold off.,continues to run in circles on the plates.,looks hard at the cups.,stands and runs looking out of the window.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen blind folded on a stage and a woman hands him darts while speaking to him.,The man then throws the darts and the woman\nanetv_k_7hLIwul48,5032,Mike Tyson is on a show blindfolded as he throws darts. The host of the show,gives him darts as she stands beside him.,speaks into several different various videos of decorating a blue.,is shown in the background as man throws street balls with his stick.,employees interviews him in several different games.,,gold0-orig,pos,unl,unl,pos,n/a,Mike Tyson is on a show blindfolded as he throws darts.,The host of the show\nanetv_k_7hLIwul48,5033,The host of the show gives him darts as she stands beside him. He throws three darts and the last two,get a bulls eye as the host and audience gasp in excitement at what happened.,take a third prisoner by the nose.,guys scowl down at a bowling ball.,throws the clown to the track.,,gold0-reannot,pos,unl,unl,unl,n/a,The host of the show gives him darts as she stands beside him.,He throws three darts and the last two\nanetv_k_7hLIwul48,5034,He throws three darts and the last two get a bulls eye as the host and audience gasp in excitement at what happened. The host,walks up to the dart board to see the darts.,demonstrates different games of break dancing matches.,lowers himself and begins talking before the man drinks face first from one drink.,shows off her diapers up.,looks astonished and sips another drink using his hands as they return up to the right and talk about the game.,gold0-reannot,pos,unl,unl,unl,pos,He throws three darts and the last two get a bulls eye as the host and audience gasp in excitement at what happened.,The host\nanetv_2yjRePOzYq4,9189,\"A man skips on a truck signed with white lines, when he arrives to the third line jumps high and lands in the sandbox. The playback of a man performing long jump\",is show several times.,splits and standing on a dock while the man worktable immediately jumps around as the fencers reach behind him.,has a long jump.,takes a pole and then bungee ties hold it.,walks with a pole.,gold1-orig,pos,unl,unl,unl,pos,\"A man skips on a truck signed with white lines, when he arrives to the third line jumps high and lands in the sandbox.\",The playback of a man performing long jump\nlsmdc0043_Thelma_and_Luise-68203,8320,\"He holds both of her arms with one hand. With his free hand, he\",reaches down and starts to pull her dress up.,swings her over a shoulder.,backs away from his frame and swings down at his sides.,strikes the shaft with his fist.,twirls her hand like a conductor.,gold1-orig,pos,unl,unl,unl,pos,He holds both of her arms with one hand.,\"With his free hand, he\"\nlsmdc0043_Thelma_and_Luise-68203,8309,She goes over to the table and sees someone's stuff there. She,picks up the check and looks at it.,\"suddenly crosses a street, clutching a bottle that looks shocked.\",someone is sitting lightly on the floor in front of him.,turns towards the waiter and offers a fork for someone.,\"glinting on it in a cheap blue stripper tower, sits chapel for a very long design and slowly dies.\",gold0-orig,pos,unl,unl,unl,unl,She goes over to the table and sees someone's stuff there.,She\nlsmdc0043_Thelma_and_Luise-68203,8325,\"Someone starts to back away, but the gun is still close to his face. His pants\",are undone in the front.,falls under the blade.,moved up to light someone's menacing face.,are trapped on the door attached to them.,flies open behind him.,gold0-orig,pos,unl,unl,unl,unl,\"Someone starts to back away, but the gun is still close to his face.\",His pants\nlsmdc0043_Thelma_and_Luise-68203,8318,He looks mean and dangerous. He,lets go of her face and pins her arms behind her.,is in a horse.,hurries through a sports market and models cars.,\"runs forward, keeping his hot dog.\",,gold0-orig,pos,unl,pos,pos,n/a,He looks mean and dangerous.,He\nlsmdc0043_Thelma_and_Luise-68203,8331,\"Someone takes two long strides back towards him, raises the gun and fires a bullet into his face. The car behind him\",is splattered with blood.,explodes into someone 'grasp.,\"lies face down and killing him, flying away in an agonized expression.\",is closed.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone takes two long strides back towards him, raises the gun and fires a bullet into his face.\",The car behind him\nlsmdc0043_Thelma_and_Luise-68203,8321,\"With his free hand, he reaches down and starts to pull her dress up. Someone is still struggling and there\",are tears running down her face.,is a huge grin on her face.,is also a large branch that is flung aside.,is then a stack of his hands as he is about to fight.,is only one left behind him.,gold0-orig,pos,unl,unl,unl,unl,\"With his free hand, he reaches down and starts to pull her dress up.\",Someone is still struggling and there\nlsmdc0043_Thelma_and_Luise-68203,8327,She is still backing away with the gun raised. Someone,is inching away as well.,gets watching with a grin.,reaches forward and watches someone go.,\"stoops down carefully, gripping on his pistol and stabs it at her.\",\"looks to someone, saying nothing.\",gold1-orig,pos,unl,unl,unl,pos,She is still backing away with the gun raised.,Someone\nlsmdc0043_Thelma_and_Luise-68203,8333,Someone comes careening up in reverse. Someone hops in and someone,\"peels out, spraying gravel.\",leaps out of the house.,rushes down the staircase.,drops him into his lap.,,gold0-orig,pos,unl,unl,unl,n/a,Someone comes careening up in reverse.,Someone hops in and someone\nlsmdc0043_Thelma_and_Luise-68203,8335,\"As they speed out of the parking lot back to the road, we hear music blaring from the nightclub. They\",hit the main road with tires squealing.,slips out through the stalls that surreptitiously problems through the newspaper.,is lying in front of only enough to reach a gauge.,\"switch and say goodbye and get out, there a word for someone.\",drop to the rooftop as the car glides over.,gold0-orig,pos,unl,unl,unl,unl,\"As they speed out of the parking lot back to the road, we hear music blaring from the nightclub.\",They\nlsmdc0043_Thelma_and_Luise-68203,8334,\"Someone hops in and someone peels out, spraying gravel. As they speed out of the parking lot back to the road, we\",hear music blaring from the nightclub.,spy crews by the road.,zoom past someone as his date steps on a pavement near the street.,peer down on the departing tourist.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone hops in and someone peels out, spraying gravel.\",\"As they speed out of the parking lot back to the road, we\"\nlsmdc0043_Thelma_and_Luise-68203,8323,\"Someone's thumb pulls back the hammer. Someone slowly raises his hands in the air, and someone\",\"darts out, pulling her dress down.\",picks up the receiver.,draws his feet across his apartment wall.,twists someone from behind the upper head.,points his mug forward.,gold0-orig,pos,unl,unl,unl,unl,Someone's thumb pulls back the hammer.,\"Someone slowly raises his hands in the air, and someone\"\nlsmdc0043_Thelma_and_Luise-68203,8307,Someone comes out of the bathroom as the next woman goes in. She,scans the room looking for someone.,wakes up and looks at someone.,walks over to the counter and pours something in her glass.,looks back at the party.,has her hands on a handle.,gold0-orig,pos,unl,unl,unl,pos,Someone comes out of the bathroom as the next woman goes in.,She\nlsmdc0043_Thelma_and_Luise-68203,8315,Someone has now pinned someone against the back of a car and is kissing her neck. He,has her ass in his hands.,puts on his back to the camera.,steps back from his bike.,\"grins and looks at someone, who crumples to his arms.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone has now pinned someone against the back of a car and is kissing her neck.,He\nlsmdc0043_Thelma_and_Luise-68203,8326,His pants are undone in the front. She,is still backing away with the gun raised.,\"touches position and slip, then awkwardly scans her body before entering.\",moves onstage and dances in a living room with a wicker pictures.,\"pauses for a moment, then turns and snaps his headlights.\",,gold0-orig,pos,unl,unl,unl,n/a,His pants are undone in the front.,She\nlsmdc0043_Thelma_and_Luise-68203,8308,She scans the room looking for someone. She,goes over to the table and sees someone's stuff there.,\"is being rushed through a room located from earlier, along the walls of bloodstained floor.\",shakes her head from the look she claps for.,shrugs his arm.,,gold0-orig,pos,unl,unl,pos,n/a,She scans the room looking for someone.,She\nlsmdc0043_Thelma_and_Luise-68203,8329,Someone lowers the gun and stares at him for a second. Then she,turns and walks away.,climbs sideways and gazes sadly at someone.,steps up to the front of her chevy.,turns away and limps toward an office.,watches her eyes as she steps forward with the knife in her left hand.,gold1-orig,pos,unl,unl,pos,pos,Someone lowers the gun and stares at him for a second.,Then she\nlsmdc0043_Thelma_and_Luise-68203,8332,Someone runs to get the car. Someone,comes careening up in reverse.,\"grabs the suitcase, makes a call.\",unzips the back of the pants.,opens the door and enters the hall.,nods and turns slowly.,gold1-orig,pos,unl,unl,unl,unl,Someone runs to get the car.,Someone\nlsmdc0043_Thelma_and_Luise-68203,8316,He has her ass in his hands. He,is beginning to hump her.,bends down to take it from someone.,do in a front grassy area making repairs.,is gymnastics on the side.,pulls himself out of his canvas.,gold0-orig,pos,unl,unl,unl,pos,He has her ass in his hands.,He\nlsmdc0043_Thelma_and_Luise-68203,8306,\"Someone is leaning close to someone's head, and she pulls her head away. He\",pulls her to him and tries to put his arms around her.,\"looks slightly younger, maybe a little sad.\",lowers her head back.,looks around and smiles at him.,leans toward someone.,gold0-orig,pos,unl,unl,unl,pos,\"Someone is leaning close to someone's head, and she pulls her head away.\",He\nlsmdc0043_Thelma_and_Luise-68203,8311,Someone has led someone off to the far end of the parking lot. He,is trying to kiss her now.,finds someone seated at the front of the house.,\"steps out, hands his his wallet and finds it empty.\",takes someone from her lap.,\"opens the door, and backs into a tarpaulin.\",gold0-orig,pos,unl,unl,unl,unl,Someone has led someone off to the far end of the parking lot.,He\nlsmdc0043_Thelma_and_Luise-68203,8328,Someone is inching away as well. Someone,lowers the gun and stares at him for a second.,shoots a smiling look.,watches him race into the house.,\"approaches, leaving people.\",is in the next room.,gold1-orig,pos,unl,unl,unl,pos,Someone is inching away as well.,Someone\nlsmdc0043_Thelma_and_Luise-68203,8324,\"Someone slowly raises his hands in the air, and someone darts out, pulling her dress down. Someone starts to back away, but the gun\",is still close to his face.,falls on the back of her head.,does n't look at him.,is so loud that someone can't hear him on pas.,is jammed in his face.,gold0-orig,pos,unl,unl,unl,pos,\"Someone slowly raises his hands in the air, and someone darts out, pulling her dress down.\",\"Someone starts to back away, but the gun\"\nlsmdc0043_Thelma_and_Luise-68203,8319,He lets go of her face and pins her arms behind her. He,holds both of her arms with one hand.,\", an adult tremendous, and sits slumped in the middle of each other on the glider.\",lays her head on her hands and marches away barefoot.,climbs on her bed as he carries her down the hallway.,wraps her arms around his neck and touches his neck and he places her seductively under the sheets.,gold0-orig,pos,unl,unl,unl,unl,He lets go of her face and pins her arms behind her.,He\nlsmdc0043_Thelma_and_Luise-68203,8314,\"Someone is pushing himself on her now, and she is beginning to push him away harder. Someone\",has now pinned someone against the back of a car and is kissing her neck.,seems really at peace as she touches the affection for his squeeze - mavericks celebrate in celebration and brings his hand.,climbs into the back of the carriage and pulls the plank in the window.,remains on her feet and another appears in the door.,\"watches him, grasping for the beer and kisses her instead.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone is pushing himself on her now, and she is beginning to push him away harder.\",Someone\nlsmdc0043_Thelma_and_Luise-68203,8313,\"He is pushing her arms down and turning her head away. Someone is pushing himself on her now, and she\",is beginning to push him away harder.,starts to wipe the floor in her clothes.,does n't slam his leg down.,is about to be sick.,seems to be looking at his scalp.,gold0-orig,pos,unl,unl,pos,pos,He is pushing her arms down and turning her head away.,\"Someone is pushing himself on her now, and she\"\nlsmdc0043_Thelma_and_Luise-68203,8312,He is trying to kiss her now. He,is pushing her arms down and turning her head away.,\"lays someone gently on someone's hands, whose mouth is open.\",is quickly for her car.,looks at the devastation.,,gold1-orig,unl,unl,unl,unl,n/a,He is trying to kiss her now.,He\nlsmdc0043_Thelma_and_Luise-68203,8317,\"She is pushing him away as hard as she can, but he is relentless. He\",looks mean and dangerous.,\"joins her, trying to stab her claws.\",\"grabs onto someone's window, clutching her the pod.\",is at a toy store.,throws the forceps in his crane down.,gold0-reannot,pos,unl,unl,unl,unl,\"She is pushing him away as hard as she can, but he is relentless.\",He\nlsmdc0043_Thelma_and_Luise-68203,8322,Tight shot of the barrel of someone's gun being pressed into the nape of someone's neck. Someone's thumb,pulls back the hammer.,swims through the scar and illuminates someone's face.,lifts his arm toward the floor.,means police.,\"hit someone, who holds his arm straight.\",gold0-reannot,pos,unl,unl,unl,unl,Tight shot of the barrel of someone's gun being pressed into the nape of someone's neck.,Someone's thumb\nanetv_2aw1pVJsnKs,14845,Several clips are shown afterwards of people riding around on bikes crashing onto the side. More people,crash their bikes as others watch on the side.,ride the camels onto the horse while others watch on the side.,continue riding along one of the mountain waves and eventually going back and other.,are shown wandering around on dirt skateboards as well as jumping boards followed by other people in costumes.,are seen riding the snowboards around as well as speaking to themselves.,gold1-orig,pos,unl,unl,unl,unl,Several clips are shown afterwards of people riding around on bikes crashing onto the side.,More people\nanetv_2aw1pVJsnKs,2821,A group of people are seen riding around a track and leads into several clips of people falling off their bikes. The video,continues on with many clips of people crashing dirt bikes on a track racing others.,ends with the black balls more more and more people continue riding horses on the field.,continues as several people run out of the car as well as attempting to roll down the track.,continues with more people down the hill as well as the person is being pulled onto the bumper.,ends and the people continue the dance away and performing with the people speaking to one another.,gold0-orig,pos,unl,unl,unl,unl,A group of people are seen riding around a track and leads into several clips of people falling off their bikes.,The video\nanetv_2aw1pVJsnKs,14844,A person is seen riding along on a dirt bike and crashes onto the side. Several clips,are shown afterwards of people riding around on bikes crashing onto the side.,are shown of people riding down a river in front of one another while others watch on.,are then shown of women riding around on a skateboard.,are shown of people riding on dirt bikes.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen riding along on a dirt bike and crashes onto the side.,Several clips\nanetv_IjwOh2YmT9U,1355,A man is engaged in skateboarding outdoors. He,takes several ramps and skate parks.,walks into a sand pit in front of a crowd.,stops on a green outdoor dirt.,talks to the camera inside a roofed radio stand.,puts down his coat.,gold0-orig,pos,unl,unl,unl,unl,A man is engaged in skateboarding outdoors.,He\nanetv_IjwOh2YmT9U,1356,He takes several ramps and skate parks. He,flips and turns through the city streets.,ramps up five rocks as fast as he can.,waters on the tap as he rides past his men.,throws himself into the pool and pineapple punctures into a tree.,is a bit proud of the work.,gold0-orig,pos,unl,unl,unl,pos,He takes several ramps and skate parks.,He\nlsmdc3057_ROBIN_HOOD-27734,5917,\"We watch someone and his men terrorize. On the floor, he\",rolls onto his back.,backs into the meeting room.,packs his things into the quietly.,pins a tower balcony high on the brick walls.,stops and inspects the remaining clock.,gold0-reannot,pos,unl,unl,unl,pos,We watch someone and his men terrorize.,\"On the floor, he\"\nanetv_cxxiokwoVgg,13448,Two young men sled on the road pulled by a car. Splashes of snow,falls on the young men who are covered with snow.,shoots pull up ahead of them.,falls the white pool as they fight.,is filled with snow.,are shown and a man wipes the snow and wall dust.,gold1-orig,pos,unl,unl,unl,unl,Two young men sled on the road pulled by a car.,Splashes of snow\nanetv_cxxiokwoVgg,13449,Splashes of snow falls on the young men who are covered with snow. A young man stands from the sled and enters the car and other person,takes his place on the sled.,stands up and close the shore.,crashes and goes up the hill.,walks on and shuts the front door to the path.,drives previous behind the boat.,gold0-orig,pos,unl,unl,unl,unl,Splashes of snow falls on the young men who are covered with snow.,A young man stands from the sled and enters the car and other person\nanetv_cxxiokwoVgg,13447,People in a home get ready to go sled on the street covered with snow. Two young men,sled on the road pulled by a car.,end up kissing on a bridge.,skateboard down the steep slopes with snowy buildings in the small house.,run down a slope with a hostage approach and start riding down the chain of doom above every tracks.,stand behind where he has to arm wrestle.,gold0-orig,pos,unl,unl,unl,unl,People in a home get ready to go sled on the street covered with snow.,Two young men\nlsmdc0031_The_Lost_Weekend-65376,6795,\"He points to the empty glass for someone to fill it. Without a change of expression, someone\",pours the second drink.,smirks as she pours through the glass.,\"picks someone up and moves to the next door, locking the door behind him.\",gets the mug passed past the bookcase.,is twisted up to see where it is.,gold0-orig,pos,unl,unl,unl,unl,He points to the empty glass for someone to fill it.,\"Without a change of expression, someone\"\nanetv_ORL5yMppl8E,8970,He adds salt and pasta to the pot. He,puts the lid back on the pot.,goes to untie the pieces of beef.,then puts the ingredients on him again.,is mixing the spaghetti.,,gold0-orig,pos,unl,unl,pos,n/a,He adds salt and pasta to the pot.,He\nanetv_ORL5yMppl8E,8969,He puts the pot on a stove and puts a lid on it. He,adds salt and pasta to the pot.,lifts the piece of netting off of the plate.,holds onto a large pot and begins putting the pasta into the pot.,brings the omelette in the pan.,takes a vent out of the metal block.,gold0-orig,pos,unl,unl,unl,unl,He puts the pot on a stove and puts a lid on it.,He\nanetv_ORL5yMppl8E,8973,He pours the pasta back into the pan. He,adds sauce and stirs it together.,has defends and takes a bite.,boils the pasta back into the bowl.,\"fills the mixture, making the save.\",,gold0-orig,pos,unl,unl,unl,n/a,He pours the pasta back into the pan.,He\nanetv_ORL5yMppl8E,8968,A kid fills a pot with water. He,puts the pot on a stove and puts a lid on it.,puts the pan in a pot.,pours a bowl in the trash cans with boiling water and puts it in the pot.,pours sugar into the pitcher of vodka.,is sitting on the dirt wood next to the stove.,gold0-orig,pos,unl,unl,unl,unl,A kid fills a pot with water.,He\nanetv_ORL5yMppl8E,8971,He puts the lid back on the pot. He,stirs the pot and pours the pasta into a strainer.,pours oil and pulls the pan into the pan and pours it into the twinkie glasses.,opens it with some cool cupcakes.,places the lamp down.,pours it across the table.,gold1-reannot,pos,unl,unl,unl,unl,He puts the lid back on the pot.,He\nanetv_ORL5yMppl8E,8972,He stirs the pot and pours the pasta into a strainer. He,pours the pasta back into the pan.,presents it and the cooker pours the heated mixture into the jug.,then pours the remainder of the bowl into a silicone strainer.,adds salt to the bowl and adjusts it in the pan.,adds them into the pan and holds them out in front of the camera.,gold0-reannot,pos,unl,pos,pos,pos,He stirs the pot and pours the pasta into a strainer.,He\nlsmdc3091_ZOMBIELAND-44480,11982,\"Rule Number 31 appears over a large canvas bag, Check the Back Seat. Opening the sack, the guys\",find it loaded with guns.,get back in the mud.,disappear into the common room.,peer over a vehicle's flatbed.,,gold0-orig,pos,unl,unl,unl,n/a,\"Rule Number 31 appears over a large canvas bag, Check the Back Seat.\",\"Opening the sack, the guys\"\nlsmdc3091_ZOMBIELAND-44480,11975,\"Rule Number 18 appears on the bumper, Limber up. The words\",\"topple over, landing on the pavement.\",signet - american stand and keep fencing.,needs to be the tire.,surf on a block by the stolen team.,companies occur at 6: george comment.,gold1-orig,pos,unl,unl,unl,unl,\"Rule Number 18 appears on the bumper, Limber up.\",The words\nlsmdc3091_ZOMBIELAND-44480,11985,\"Now someone stands behind the Hummer, firing an automatic into the air. As someone\",waits patiently in the passenger seat.,\"peers down from the water's surface, water streams against someone's brick.\",lets out a deep breath and takes a quick look at the back of the sedan.,slams on the brakes.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now someone stands behind the Hummer, firing an automatic into the air.\",As someone\nlsmdc3091_ZOMBIELAND-44480,11979,The older man slows wearily as he nears the vehicle which has crashed near a house. The driver's side window,shows hands gripping the steering wheel.,lifts with a six turn of sawdust.,is buffeted by a small breeze.,shows a younger someone scraping it off.,is smashed against the movie set.,gold1-orig,pos,unl,unl,unl,unl,The older man slows wearily as he nears the vehicle which has crashed near a house.,The driver's side window\nlsmdc3091_ZOMBIELAND-44480,11974,\"He attacks it with a crowbar. From the minivan's roof, someone\",tosses the crowbar aside.,\"pushes his seat back onto the street, gathers his broken body around someone.\",and someone strut toward a stairwell.,watches from the porch.,wraps the feeling in a mirror.,gold1-orig,pos,unl,unl,unl,unl,He attacks it with a crowbar.,\"From the minivan's roof, someone\"\nlsmdc3091_ZOMBIELAND-44480,11983,\"Opening the sack, the guys find it loaded with guns. He\",picks up a rifle.,shoots them every time.,pours them into the black containers.,\"sneers, then flings it upwards.\",knocks over someone's computer.,gold0-orig,pos,unl,pos,pos,pos,\"Opening the sack, the guys find it loaded with guns.\",He\nlsmdc3091_ZOMBIELAND-44480,11986,\"As someone waits patiently in the passenger seat. Later, the older man\",paints a black 3 on the driver's side door.,watches the balding young man make his way across the tiny sand rink.,hoists his fallen case to a cabinet and passes someone.,is cleaning the sedan in the back of one of her striped cardigan and taped down - inch hub near the door.,\"brings up a churning, skipper tea fun.\",gold0-orig,pos,unl,unl,unl,unl,As someone waits patiently in the passenger seat.,\"Later, the older man\"\nlsmdc3091_ZOMBIELAND-44480,11987,\"Later, the older man paints a black 3 on the driver's side door. As the wide bodied vehicle backs away from the house, it\",takes out a beam supporting an overhang.,shows the paces above someone and yanks him from the frame.,flips off onto the wall of balcony.,floats from a tightrope in a tree.,moves in kind of riding down the winding road.,gold0-orig,pos,unl,unl,unl,unl,\"Later, the older man paints a black 3 on the driver's side door.\",\"As the wide bodied vehicle backs away from the house, it\"\nlsmdc3091_ZOMBIELAND-44480,11973,He throws rock through its windows. He,attacks it with a crowbar.,\"soars down after it, and knocks perfectly with a hollow - below hand.\",strikes the man with a heavy job.,takes out his earphones.,,gold0-orig,pos,unl,unl,unl,n/a,He throws rock through its windows.,He\nlsmdc3091_ZOMBIELAND-44480,11984,He picks up a rifle. Now someone,\"stands behind the hummer, firing an automatic into the air.\",\"peers through a gap in the dark, propelling ceiling.\",\"slides open a gate, aiming a gun into his bag.\",swivels the dusty machine.,rolls a wooden hamper.,gold0-orig,pos,unl,unl,unl,unl,He picks up a rifle.,Now someone\nlsmdc3091_ZOMBIELAND-44480,11977,He jogs to a yellow Hummer. Someone,\"follows, toting their bags.\",\"sweeps his hood over the hood of his hood, making sure that someone would cause him to address.\",\"sits up at the roof, looking dazed.\",lays her legs across the necks of someone's sandals.,uses both windows to look around the tiled building.,gold1-orig,pos,unl,unl,unl,pos,He jogs to a yellow Hummer.,Someone\nlsmdc3091_ZOMBIELAND-44480,11988,\"As the wide bodied vehicle backs away from the house, it takes out a beam supporting an overhang. The roof\",collapses as the hummer speeds off.,flies up and soars beneath the awning.,is filled with closeups of different vacuum equipment.,is just completely pristine.,falls into a blaze.,gold0-orig,pos,unl,unl,unl,pos,\"As the wide bodied vehicle backs away from the house, it takes out a beam supporting an overhang.\",The roof\nlsmdc3091_ZOMBIELAND-44480,11978,\"Someone follows, toting their bags. The older man\",slows wearily as he nears the vehicle which has crashed near a house.,spots someone like a coach as an instructor watch them stop.,glances up with his gaze fixed on the now highlighted urban scene.,reaches inside someone's jacket.,\"points at a window, then knocks out a display of barbed wire shards.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone follows, toting their bags.\",The older man\nlsmdc3091_ZOMBIELAND-44480,11981,Someone checks the back as someone hot wires the engine. Rule Number 31,\"appears over a large canvas bag, check the back seat.\",can no longer find.,and makes his way along the roman rink.,\", he tumbles back along behind main roof.\",\", inches from three eleventh slices in the sore.\",gold0-reannot,pos,unl,unl,unl,unl,Someone checks the back as someone hot wires the engine.,Rule Number 31\nlsmdc3091_ZOMBIELAND-44480,11976,\"The words topple over, landing on the pavement. He\",jogs to a yellow hummer.,wakes up and stands at tornado loss.,gazes into the dazed look.,glimpse her crescent shaped figure approaching through verdant hills.,takes on the slip!,gold1-reannot,unl,unl,unl,unl,unl,\"The words topple over, landing on the pavement.\",He\nlsmdc3091_ZOMBIELAND-44480,11980,\"Facing someone, he extends the middle finger. Someone\",checks the back as someone hot wires the engine.,puts a bill in the dry slot.,smiles at the redhead.,\"leans over, takes his father's hand and hands it over.\",grabs someone's purse.,gold0-reannot,pos,unl,unl,unl,unl,\"Facing someone, he extends the middle finger.\",Someone\nanetv_PLek2e8NlKc,11691,Two women sits in front of a small class of people on a mat on the floor. One woman,uses the other woman to demonstrate how to get up from the floor using one knee.,jumps in a rock and falls of the water where ski jumps.,puts behind the chair and she turns around and walks away.,\"kicks a puck into the gym, while another woman around the platform hugs her.\",hands a girl to her team.,gold0-orig,pos,unl,unl,unl,unl,Two women sits in front of a small class of people on a mat on the floor.,One woman\nanetv_PLek2e8NlKc,11692,One woman uses the other woman to demonstrate how to get up from the floor using one knee. The woman in the blue sweater,is then seen talking to the class.,kicks the ball again and stands indoors then swing in a little restaurant going home.,repeats the same process in several flights of yoga while the entire body cheers.,wins while shrugging a friend with her muscles.,speaks to the man while speaking to another asian girl.,gold0-orig,pos,unl,unl,unl,pos,One woman uses the other woman to demonstrate how to get up from the floor using one knee.,The woman in the blue sweater\nanetv_PLek2e8NlKc,18666,The lady gets up from the floor slowly with instructions on the screen. The lady,\"is sitting on a table and shoes how to sit, and stand slowly holding your abdomen.\",walks away and shows her parents and bends her arm by a switch place.,reaches back to the camera again.,turns on the right and continues dancing to the left.,stops taking her shoes off and ties another pair of shoes at the end.,gold0-orig,pos,unl,unl,unl,unl,The lady gets up from the floor slowly with instructions on the screen.,The lady\nanetv_PLek2e8NlKc,11690,\"A woman leads a class held in a medical equipment classroom, in demonstrating different ways for a person to move or get up from the floor. Two women\",sits in front of a small class of people on a mat on the floor.,walk to a chair on the floor.,put down the platform ready to sit down and play with their rope and bow.,bend to sit down to pick themselves up up and down before.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman leads a class held in a medical equipment classroom, in demonstrating different ways for a person to move or get up from the floor.\",Two women\nanetv_PLek2e8NlKc,18662,We see the blue opening screen. A lady,is guiding a young lady through an exercise.,lays down a coffee table.,pours water over the kite.,gets up and eyes a dart from a ready.,,gold0-orig,unl,unl,unl,unl,n/a,We see the blue opening screen.,A lady\nanetv_PLek2e8NlKc,18664,\"The girl sits down, then gets on one knee and sits back down. We\",see a title screen on beige.,helps pull her rope from another rod.,both shrink all with her and end with the woman in the crowd laughing.,\", they turn off the other woman and the woman gives an interview.\",\"see the camera protruding from the rack, we see her dance down a bit while looking at their movements.\",gold0-orig,pos,unl,unl,unl,unl,\"The girl sits down, then gets on one knee and sits back down.\",We\nanetv_PLek2e8NlKc,18665,We see a title screen on beige. The lady,gets up from the floor slowly with instructions on the screen.,puts the left darts into a rocketing column.,picks up a bar and lifts it over a lady.,is jumping off in a room.,sprays a lady's hair.,gold1-orig,pos,unl,unl,unl,pos,We see a title screen on beige.,The lady\nanetv_PLek2e8NlKc,18663,A lady is guiding a young lady through an exercise. The girl,\"sits down, then gets on one knee and sits back down.\",gets on her toes and brushes the blades back and forth under a truck.,is pushing herself along a tunnel in the center.,uses a payphone and begins to clip her fingers fur and blowing a hair cut.,jumps and jumps on the clean horse.,gold0-reannot,pos,unl,unl,unl,unl,A lady is guiding a young lady through an exercise.,The girl\nanetv_WXMb7XF6k8o,19467,A stylist is standing beside a girl seated in his chair. He,gives instructions on how to style her hair.,is standing on some sort of cement dryer.,is posing and showing the name in the hair.,begins to ease the client's hair.,,gold0-orig,pos,unl,unl,unl,n/a,A stylist is standing beside a girl seated in his chair.,He\nanetv_WXMb7XF6k8o,19466,A series of women are shown in close up of their faces. A stylist,is standing beside a girl seated in his chair.,takes photos on their shoulders.,of hair is shown and an introduction is shown on the screen.,sprays the soap in the water.,is seen speaking to the camera while performing various moves and then talking.,gold1-orig,unl,unl,unl,unl,unl,A series of women are shown in close up of their faces.,A stylist\nanetv_WXMb7XF6k8o,19468,He gives instructions on how to style her hair. He,\"uses a dryer to blow her hair, then clips it.\",shows the process from blond to create some news headquarters.,is working with the hair products.,moves the braid back and forth to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,He gives instructions on how to style her hair.,He\nlsmdc3014_CAPTAIN_AMERICA-5400,2599,\"He pulls the pin and rolls the grenade onto the field full of recruits. As the other men scatter, someone\",leaps onto the grenade as someone approaches him.,steps toward the office and her glance blinks at him as he comes in.,finds his team outside and collects his flippers.,throws his arms flapping the gap.,,gold0-orig,pos,unl,unl,unl,n/a,He pulls the pin and rolls the grenade onto the field full of recruits.,\"As the other men scatter, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5400,2604,Someone walks in carrying a liquor bottle. The doctor,turns the bottle in his hand.,stops wearing two dark glasses.,goes to the kitchen wile someone enters the kitchen.,is revolving as he drinks.,,gold0-orig,pos,unl,unl,unl,n/a,Someone walks in carrying a liquor bottle.,The doctor\nlsmdc3014_CAPTAIN_AMERICA-5400,2601,\"He hugs the grenade to his torso as he lies in a fetal position. Slowly, someone\",opens his eyes and sits up.,wears a cloth and cuts the wings.,bends over and thrusts his face down with his raised hand.,struggles to cut into someone's leg.,rises from his knees.,gold0-orig,pos,unl,unl,unl,pos,He hugs the grenade to his torso as he lies in a fetal position.,\"Slowly, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5400,2600,\"As the other men scatter, someone leaps onto the grenade as someone approaches him. He\",hugs the grenade to his torso as he lies in a fetal position.,shows the phone removed.,sits in the swivel chair for someone.,\"pulls away, jerks his leather head back and looks down at her.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As the other men scatter, someone leaps onto the grenade as someone approaches him.\",He\nlsmdc3014_CAPTAIN_AMERICA-5400,2598,Someone walks to the back of an ammo truck and picks up a grenade. He,pulls the pin and rolls the grenade onto the field full of recruits.,joins the fallen soldier riding past the grizzly.,\"reaches down and hesitantly takes it off behind the woman, and cocks it.\",\"sniffs it through his fingers, then gives it to her.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone walks to the back of an ammo truck and picks up a grenade.,He\nlsmdc3014_CAPTAIN_AMERICA-5400,2603,\"Later, someone sits in an empty bunkhouse and reads. Someone\",walks in carrying a liquor bottle.,stands on the couch and looks at.,hurries toward the bus.,waves a folded piece of paper at them.,sits at her back in sketches.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone sits in an empty bunkhouse and reads.\",Someone\nanetv_Uot4XZns2b4,11464,The man add tar to the pipe base and nails shingles down around it. The man then,puts tar under the top shingle.,pass and drain the clean wood.,uses the climb up paint wall.,cooks a piece again tiles using a metal piece of wood to cover the tiles with the roof.,begins cutting the piece of paper down the carpet.,gold0-orig,pos,unl,unl,unl,unl,The man add tar to the pipe base and nails shingles down around it.,The man then\nanetv_Uot4XZns2b4,11463,The man then pushes the pipe down and nails it. The man,add tar to the pipe base and nails shingles down around it.,injects the cats paw thoroughly then returns it to the cat.,\"draws the ball towards the object wrapped around it, spins it around and puts it on.\",cuts the man's hair and ears up to hit him on the top of its head.,is talking to the camera and continues drying it.,gold0-orig,pos,unl,unl,unl,pos,The man then pushes the pipe down and nails it.,The man\nanetv_Uot4XZns2b4,11465,The man then puts tar under the top shingle. We,see the house and a truck parked in the driveway.,\", he turns to remove the tools from the sides of the snow and then proceeds several more mountains.\",then solves the sculpture.,\", people surf.\",,gold0-orig,pos,unl,unl,unl,n/a,The man then puts tar under the top shingle.,We\nanetv_Uot4XZns2b4,11462,We see a man prying shingles up around a pipe. The man then,pushes the pipe down and nails it.,finishes the vacuum and picks up the tiles.,places his left foot on the carpet.,pretends to start roofing off the sidewalk.,,gold0-orig,pos,unl,unl,unl,n/a,We see a man prying shingles up around a pipe.,The man then\nanetv_Hj_YKQiU-8Y,16303,A young girl is seen speaking to the camera while playing with her hair. She,points to her shirt and leads into her brushing her hair while speaking to the camera.,finishes her hair and accordion her to her camera.,speaks and then shows the girl how to put her hair down.,jumps into the water and brushing her hair off of her face.,puts a garment over her hair while talking to the camera.,gold0-orig,pos,unl,pos,pos,pos,A young girl is seen speaking to the camera while playing with her hair.,She\nlsmdc3083_TITANIC2-39181,932,The waiter refills someone's glass. Someone,tosses a box of matches to someone.,points proudly into a full - length mirror.,looks away from someone who nods uneasily.,is pummeled by a pixie - shaped black lady.,\"walks outside, scanning the very slumped frenchman.\",gold1-orig,pos,unl,unl,unl,unl,The waiter refills someone's glass.,Someone\nlsmdc3083_TITANIC2-39181,933,Someone raises his glass to someone. Someone,\"lifts his glass, frowns, and then sips.\",holds up his drink.,comes out into the hall towards the cups.,\"glance at his teacher, who lies back down, his mouth hanging open as he watches.\",fixes a cool look in someone's direction.,gold0-orig,pos,unl,unl,unl,pos,Someone raises his glass to someone.,Someone\nlsmdc3083_TITANIC2-39181,934,\"Someone lifts his glass, frowns, and then sips. Later, a waiter\",pushes a cart laden with desserts.,brings a tray of frock food.,pours the beverage into a large white.,\"sets off a tray with sugar in a black bucket, and soda on one table beside him.\",brings two plates together.,gold1-orig,pos,unl,unl,pos,pos,\"Someone lifts his glass, frowns, and then sips.\",\"Later, a waiter\"\nanetv_cHSGL-OcMak,1107,Two people are seen walking around on stilts in the middle of a street and sidewalk. The walk,continue walking up and down the streets on stilts passing by people and speaking.,through a street by a building while blowing shingles in various areas.,is then seen with the people fighting outside and standing between them when one moves his foot up in frame.,closes and hands down the sidewalk.,continues along with a man riding up the road.,gold0-orig,pos,unl,unl,unl,pos,Two people are seen walking around on stilts in the middle of a street and sidewalk.,The walk\nanetv_l3EBfLkfAX8,6183,A few people take turns at varying heights and all are successful. Others,are running for other events in the background.,takes back someone loan to their.,leave the camera pans back to the video including various sunscreen products.,teammates hungrily pray the jury's in before walking.,in a circle in the crowd.,gold0-orig,pos,unl,unl,unl,pos,A few people take turns at varying heights and all are successful.,Others\nanetv_l3EBfLkfAX8,10882,A man jumps over a low bar onto a mat. We then,see other track athletes doing the same moves and their measurements.,see a man performs gymnastics on parallel bars on a mat.,see the gymnast over a close up performing the routine.,see the boy doing jumps while two other girls are juggling.,see men skateboarding on the street in a crowded area.,gold0-orig,pos,pos,pos,pos,pos,A man jumps over a low bar onto a mat.,We then\nanetv_l3EBfLkfAX8,10881,A track team is shown on a field. A man,jumps over a low bar onto a mat.,talks to the camera on a field while gestures and hockey.,throws a dodge ball into the water.,walks in circles holding a disc disc.,bowls a ball over the net.,gold0-reannot,pos,unl,unl,unl,unl,A track team is shown on a field.,A man\nanetv_Vnj0j648Emw,17038,He is holding up a sharpener and a knife. He,demonstrates how to sharpen a knife against the blade.,\"cuts a log in half, using asparagus spikes.\",cuts a knife using the knife and cuts it in two.,begins cutting the tomato and tomato with the knife.,,gold0-orig,pos,unl,unl,pos,n/a,He is holding up a sharpener and a knife.,He\nanetv_Vnj0j648Emw,346,He is holding a knife sharpener in his hand. He,starts sharpening his knife on the sharpener.,rips up the stone with a new knife.,steps forward and throws his arms straight at the camera.,stands the horse up and starts sharpening the knife.,picks up a sharpener and sharpens the blade.,gold1-orig,pos,unl,unl,unl,pos,He is holding a knife sharpener in his hand.,He\nanetv_Vnj0j648Emw,345,A man in a chef uniform is standing up talking. He,is holding a knife sharpener in his hand.,sprints down a ramp jumping the stilts.,\"artist, he turns a shave and explains how she shaves the leg with a razor.\",uses a cord to put on his legs.,instructs on the diagram.,gold0-orig,pos,unl,unl,unl,unl,A man in a chef uniform is standing up talking.,He\nanetv_Vnj0j648Emw,17037,A man is dressed as a chef in a classroom. He,is holding up a sharpener and a knife.,wipes her face with champagne.,is bending over a table in various ages.,sits in a wheelchair with a box of equipment.,,gold0-orig,pos,unl,unl,pos,n/a,A man is dressed as a chef in a classroom.,He\nlsmdc3068_THE_BIG_YEAR-3324,7884,\"The older man vomits over the deck railing. Later, someone\",rests on an indoor bench piled with luggage.,runs down a dark road filled with narrow ornamental pipes.,hikes past a campsite in the ocean.,plow the russian someone into the trunk tank.,maintains the rocks as large as a can.,gold1-orig,pos,unl,unl,pos,pos,The older man vomits over the deck railing.,\"Later, someone\"\nlsmdc3068_THE_BIG_YEAR-3324,7885,\"Later, someone rests on an indoor bench piled with luggage. He feebly\",gives someone the so - so gesture.,plucks his breast up toward the flap.,taps one of the other dangling feet with padded measuring tape.,swings out of the chair several times with small tubes.,rolls around then slumps down and touches something on his neck.,gold0-orig,pos,unl,unl,unl,pos,\"Later, someone rests on an indoor bench piled with luggage.\",He feebly\nlsmdc3068_THE_BIG_YEAR-3324,7883,\"Someone queasily eyes the cutting board, then faces someone. The older man\",vomits over the deck railing.,faces her model'll.,\"stands beside someone, who approaches his troubled shopkeeper.\",shakes silverware and envelopes.,checks the cash as he takes the boxing ring out of the right pocket and puts it into his pocket.,gold1-reannot,unl,unl,unl,unl,unl,\"Someone queasily eyes the cutting board, then faces someone.\",The older man\nanetv_S6t9Lq1xKJk,11407,It is covered in ingredients and pans on burners. The man,\"creates a giant omelette, finally flipping it onto a plate and handing it to a patron.\",sprays the ice over.,puts his head to the bowl.,presses a base onto the egg while gesturing.,keeps talking to the camera.,gold0-orig,pos,unl,unl,unl,unl,It is covered in ingredients and pans on burners.,The man\nlsmdc3035_INSIDE_MAN-1665,9928,Someone aims a second unlit work light at another camera -. A customer,opens the door for the arriving painters.,comes up to him in the sob.,breathes out at slapped maize.,walks over an electrical control panel and shuts the door.,passes through a guy's t - shirts.,gold1-orig,pos,unl,unl,unl,unl,Someone aims a second unlit work light at another camera -.,A customer\nlsmdc3035_INSIDE_MAN-1665,9922,A banker in a turban sportingly bumps fist with a hefty co - worker. The painters,close up the van.,pray into a bag below someone.,are knocked off the train.,watch and gaze at the soldiers.,,gold1-orig,pos,unl,unl,unl,n/a,A banker in a turban sportingly bumps fist with a hefty co - worker.,The painters\nlsmdc3035_INSIDE_MAN-1665,9925,A potbellied security guard watches him pass. The painter,wears a dark cap and sunglasses.,leans over to the emergency sign and leans back in his seat.,\"moves his paws back and forth, toward someone.\",shows the apartment and moving slightly congratulating the spot.,stops and speaks to the journalists.,gold1-orig,pos,unl,unl,unl,pos,A potbellied security guard watches him pass.,The painter\nlsmdc3035_INSIDE_MAN-1665,9918,\"On marble bank lobby, customers wait in line. In the alley, the people in coveralls\",unload a dolly from the van.,make their way through a car.,\"pull out, slap down carts.\",struggle her hands.,pull his shoes on top of him.,gold0-orig,pos,unl,unl,unl,unl,\"On marble bank lobby, customers wait in line.\",\"In the alley, the people in coveralls\"\nlsmdc3035_INSIDE_MAN-1665,9929,A customer opens the door for the arriving painters. As they,\"wheel in the hand truck, at street level.\",\"continue sailing, someone starts steering the boat.\",\"move on it, the iraqi man stays on the garbage and sticks it in his briefcase.\",dash out to the front doors.,cross to the military airfield.,gold1-orig,pos,unl,unl,pos,pos,A customer opens the door for the arriving painters.,As they\nlsmdc3035_INSIDE_MAN-1665,9930,\"As they wheel in the hand truck, at street level. Two painters\",fasten the doors shut.,take out running between them as a look between the passersby and someone.,\"are moving toward the fair, waiting for them.\",are disturbed down by.,do so - it's almost torrential rain.,gold0-orig,pos,unl,unl,unl,unl,\"As they wheel in the hand truck, at street level.\",Two painters\nlsmdc3035_INSIDE_MAN-1665,9931,Two painters fasten the doors shut. Someone,holds a gun to a guard's side.,appears on top wooden veranda.,was knocking virtual the container.,opens as they apparate into the gravel driveway.,,gold1-orig,pos,unl,unl,unl,n/a,Two painters fasten the doors shut.,Someone\nlsmdc3035_INSIDE_MAN-1665,9920,A narrow eyed man waits patiently behind her. As the painters,load a flat of one gallon paint cans onto a hand truck.,continue his clone attack.,\"stare, their mother stamp.\",\"are wrapped, someone helps.\",,gold0-orig,pos,unl,unl,unl,n/a,A narrow eyed man waits patiently behind her.,As the painters\nlsmdc3035_INSIDE_MAN-1665,9923,\"As he looks away, she glares. Now, the painters\",wheel their supplies to the curb.,are piled with riffles.,haul their grocer to the island.,scrutinizes a few tense legs in the tunnel.,,gold0-orig,pos,unl,unl,pos,n/a,\"As he looks away, she glares.\",\"Now, the painters\"\nlsmdc3035_INSIDE_MAN-1665,9924,\"Now, the painters wheel their supplies to the curb. One\",enters the bank carrying two work lights and a white canvas duffel.,fix the walls of a california fort in an otherwise narrow atrium.,grab the bikini and add call.,offers a hand to the security hub.,lifts her hood up.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, the painters wheel their supplies to the curb.\",One\nlsmdc3035_INSIDE_MAN-1665,9919,\"Back inside, a woman listens to music. A narrow eyed man\",waits patiently behind her.,shows her wide eyes.,meets her stay built.,shows the top button.,comes out at the sight board and shifts his gaze to spar.,gold0-reannot,pos,unl,unl,unl,unl,\"Back inside, a woman listens to music.\",A narrow eyed man\nlsmdc3035_INSIDE_MAN-1665,9927,\"In a monitoring room, one screen goes dark. Someone\",aims a second unlit work light at another camera -.,pulls up a snowy album and shows to the photos.,vomits as she hears a series of voice messages.,frantically searches the photos of the company.,,gold0-reannot,pos,unl,unl,unl,n/a,\"In a monitoring room, one screen goes dark.\",Someone\nanetv_2Iakg-Z-iXM,16504,The video starts with a lady walking to the center of a court. The lady,starts doing a rendition and spinning a stick around while doing fancy tricks with it.,demonstrates techniques on her left.,swings up a jumping platform off the ground.,gets up and walks away as she hurries behind her.,,gold1-orig,pos,unl,unl,unl,n/a,The video starts with a lady walking to the center of a court.,The lady\nanetv_2Iakg-Z-iXM,16506,The lady continues her rendition and spins the stick using her neck. The lady,throws the stick into the air and catches it.,puts her arms straight up and sinks slightly in front of her.,run all the way up and down the track and ends by walking down.,continues to play the drum while looking around at the carnival.,,gold0-orig,pos,unl,unl,pos,n/a,The lady continues her rendition and spins the stick using her neck.,The lady\nanetv_2Iakg-Z-iXM,16505,The lady starts doing a rendition and spinning a stick around while doing fancy tricks with it. The lady,continues her rendition and spins the stick using her neck.,smiles as someone runs taking her foot down the chalk.,moves her hand to a mans leg and and twists her shoulders.,runs hairspray and pins down to the pavement.,\"stops and blows, falling back and blowing smoke.\",gold0-orig,pos,unl,unl,unl,unl,The lady starts doing a rendition and spinning a stick around while doing fancy tricks with it.,The lady\nanetv_2Iakg-Z-iXM,16507,The lady throws the stick into the air and catches it. The lady,ends the rendition on the floor.,releases the ball of someone while standing on the side.,tosses the violin to the woman.,hits two balls with her hands.,falls off the ground and ties the lady on her back.,gold0-orig,unl,unl,unl,unl,unl,The lady throws the stick into the air and catches it.,The lady\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13118,Someone slams the door shut. Someone,races down the steep streets.,rolls the bathroom and shuts the door.,walks into his office.,\"goes through vivian and living room, decorated with flowers.\",climbs away as he tumbles to avoid his motorcycle.,gold1-orig,pos,unl,unl,unl,unl,Someone slams the door shut.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13121,Someone desperately pushes against the tide of soldiers retreating from the fighting. Someone,turns to his second lieutenant.,demonstrations on the side as if reeling and scrambling to death.,stands - - someone feebly kicks him over the head.,holds a woman's neck which aimed at him.,,gold0-orig,pos,unl,unl,unl,n/a,Someone desperately pushes against the tide of soldiers retreating from the fighting.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13117,\"Someone, rushes forward, desperately pulling the. Someone\",grabs someone by the collar!,\"jumps at the door, then holds it upright and takes a few steps up to the steward, one of his limbs.\",follow her to the plane and throw her head away.,pans him around a saucer's pot as she lobs the plates with it.,\"forces clear echoing panic, as her pulse moves faster.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone, rushes forward, desperately pulling the.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13124,\"Minas tirith lies less than a mile away, down a gentle slope. Over 50, 000 orcs\",are swarming around the base of the city.,are climb up and down the cliffs.,\"orcs are lined up on their way in the roadway, beckoning people - - themselves.\",march down the grand driveway from the structures ghetto.,rise up from the banks of the titanic.,gold1-orig,pos,unl,unl,unl,unl,\"Minas tirith lies less than a mile away, down a gentle slope.\",\"Over 50, 000 orcs\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13119,Someone races down the steep streets. Great balls of fire,are hurtling through the air.,spreads out over the stair.,soar through shattered panels smashed into boulders.,engulf him as someone drives.,blocks their path of water.,gold0-orig,pos,unl,unl,unl,unl,Someone races down the steep streets.,Great balls of fire\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13127,Someone rides to the front of his army. He,\"rises in his stirrups, tall and proud, yelling in a clear, loud.\",turns to look at the dead man.,drives out on the road.,supports someone to someone's chest as he angles a flight of lifting.,\"steps on the ice, then turns back and walks on.\",gold0-orig,pos,unl,unl,unl,unl,Someone rides to the front of his army.,He\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13115,\"Someone kisses someone's sweating, fevered brow. Bundles of dried firewood\",are being stacked around.,are sucked from the first sticks in his hand.,are strewn with both of them.,twist on the grass beside his mouth.,dangles from someone's blanketed legs.,gold0-orig,pos,unl,unl,unl,unl,\"Someone kisses someone's sweating, fevered brow.\",Bundles of dried firewood\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13125,Someone puts a comforting hand on his shoulder. On the battle field someone,walks among his troops.,walks towards a machine lodge office.,puts something dot his face.,sidesteps his brother number 1.,\"takes a long step back and forth, pushes the knife.\",gold0-orig,pos,unl,unl,pos,pos,Someone puts a comforting hand on his shoulder.,On the battle field someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13113,The orcs grunt as they lift someone. Someone,is carried up the steep stairs.,blinks on tears with his free hands.,steps into the room in its missing flash.,\"lifts his heels, then runs upward as someone mounts a beam.\",faces her with a wounded glare.,gold0-orig,pos,unl,unl,pos,pos,The orcs grunt as they lift someone.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13120,The city is in chaos. Someone,desperately pushes against the tide of soldiers retreating from the fighting.,\"videotapes in grief on the police, most of the time.\",watches the news on the tv.,fires like a storm cloud.,,gold1-orig,pos,unl,unl,unl,n/a,The city is in chaos.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13122,\"Someone turns at the sound of the distant horns. 6000 horsemen, lead by people,\",step up to the skyline.,lead into a den.,come on in someone's room.,hover behind the double lorries.,\"lie down the stairs, eating hard in the distance of the buildings.\",gold0-orig,pos,unl,unl,unl,unl,Someone turns at the sound of the distant horns.,\"6000 horsemen, lead by people,\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13114,\"From the shadows someone watches, aghast, as someone is lain on a funeral pyre. Someone\",\"kisses someone's sweating, fevered brow.\",takes a bottle and drinks from a crate.,drops the weapon in the giant's grasp as well.,takes a sparkler out for himself.,\"stands whimpering, looking around his empty room.\",gold1-orig,pos,unl,unl,unl,pos,\"From the shadows someone watches, aghast, as someone is lain on a funeral pyre.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13116,\"Bundles of dried firewood are being stacked around. Someone,\",\"rushes forward, desperately pulling the.\",\"aiming a wand, watches, in terror.\",\"eyeing someone's lifeless body, gently lifts his glass window.\",\"pleasantly shaking, ingredients, hesitates.\",facing someone who can't prevent her from crying.,gold1-orig,pos,unl,unl,unl,unl,Bundles of dried firewood are being stacked around.,\"Someone,\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13123,\"6000 horsemen, lead by people, step up to the skyline. Minas tirith\",\"lies less than a mile away, down a gentle slope.\",\"is deserted with a sumo in white, welding the sun above a tall low rise.\",\"prominent with the palace compound, flames, and cannons.\",lies low in the hydraulic chamber.,,gold0-reannot,pos,unl,unl,pos,n/a,\"6000 horsemen, lead by people, step up to the skyline.\",Minas tirith\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61310,13126,\"Someone gallops in front of his army, issuing urgent orders to his captains. Someone\",rides to the front of his army.,stalks behind him as someone retreats into view by the apartment house.,\"points at the trucks, but someone has to follow.\",serves a few more beers out.,struggles out of the bay and chops a glass.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone gallops in front of his army, issuing urgent orders to his captains.\",Someone\nanetv_2VvCuSFicyA,17979,A person is seen riding on a bicycle down a street with a dog tied next to him. The camera,is shown in various angles the man riding the bike with the dog.,is then shown driving down and shows people driving around stacks of microphones.,transitions into a person riding down tubes down a steep hill.,transitions to a closeup of a man and spraying on a snowboard.,pans around and cheering with one of the men crossing his arms and hugging the man.,gold0-orig,pos,unl,unl,unl,unl,A person is seen riding on a bicycle down a street with a dog tied next to him.,The camera\nanetv_2VvCuSFicyA,17980,The camera is shown in various angles the man riding the bike with the dog. The man,continues riding around with the dog.,is seen in slow motion while smiling underwater.,is seen speaking to the camera and smiling while she still talks to the camera.,is shown riding the bike over the course on his leash as well as his bike.,continues to ride the bike and then returns to the camera again.,gold0-orig,pos,unl,unl,unl,pos,The camera is shown in various angles the man riding the bike with the dog.,The man\nlsmdc0011_Gandhi-52692,5963,\"Two young girls in ragged saris walk with her, and a boy of eight leads a smaller camel behind them. They\",are staring off at the car.,move across the pole with the ball as they skateboard on the stilts.,\"'s the lady's yacht la mars the other, parking in motor and on a marketing din.\",are walking in the middle of a room with dancing to the other.,\"a cry of fences, they walk through the trees for the station; the other family branches have been torn down.\",gold0-orig,pos,unl,unl,unl,unl,\"Two young girls in ragged saris walk with her, and a boy of eight leads a smaller camel behind them.\",They\nlsmdc0011_Gandhi-52692,5962,\"We see from someone's point of view an Indian woman walking along the road, leading a tall camel that carries sacks of produce. Two young girls in ragged saris walk with her, and a boy of eight\",leads a smaller camel behind them.,is dressed as an officer bound in another.,caresses his nose and talks.,steps in with the horse.,,gold0-orig,pos,unl,unl,pos,n/a,\"We see from someone's point of view an Indian woman walking along the road, leading a tall camel that carries sacks of produce.\",\"Two young girls in ragged saris walk with her, and a boy of eight\"\nlsmdc0011_Gandhi-52692,5957,\"The court rises and he walks stiffly to his chambers. He stands, staring at someone, and now it\",is his face that shows the respect.,is stocked with cologne.,is thrown off far.,\"floats across the square, right between him with the horses icon in the center of the green sky which he is holding.\",'s time to focus.,gold1-orig,pos,unl,unl,unl,pos,The court rises and he walks stiffly to his chambers.,\"He stands, staring at someone, and now it\"\nlsmdc0011_Gandhi-52692,5959,From far above the hills we see a car traveling along the road. Its style,tells us some years have passed.,has replayed cut and descent.,grows the quarter shiny.,\"is straining against the boot, beaming.\",\"freezes, the man still smoking the cigarette as the sun turns toward the flashing in the sky.\",gold0-orig,pos,unl,unl,unl,unl,From far above the hills we see a car traveling along the road.,Its style\nlsmdc0011_Gandhi-52692,5961,\"He is in an open car, turning back to look at something, his face intrigued by what he sees. We\",\"see from someone's point of view an indian woman walking along the road, leading a tall camel that carries sacks of produce.\",\"switch from the diner, igniting a campfire.\",then take turns running around a house in snow.,notices from the straps onto an automatic truck.,,gold0-orig,pos,unl,unl,unl,n/a,\"He is in an open car, turning back to look at something, his face intrigued by what he sees.\",We\nlsmdc0011_Gandhi-52692,5958,\"He stands, staring at someone, and now it is his face that shows the respect. From far above the hills we\",see a car traveling along the road.,see a skull being blown at night.,see exactly this of him.,\"see a row of bound feet in several frames, palm trees.\",see from someone as he strides up the sidewalk - - his arms unsure of what to do.,gold1-orig,pos,unl,pos,pos,pos,\"He stands, staring at someone, and now it is his face that shows the respect.\",From far above the hills we\nlsmdc0011_Gandhi-52692,5956,\"He folds, and refolds his glasses and then without looking at anyone he rises. The court rises and he\",walks stiffly to his chambers.,holds someone to his feet.,lets out a breath.,shoots at the man with a horrified look.,,gold0-orig,pos,unl,unl,unl,n/a,\"He folds, and refolds his glasses and then without looking at anyone he rises.\",The court rises and he\nlsmdc0011_Gandhi-52692,5960,Its style tells us some years have passed. He,\"is in an open car, turning back to look at something, his face intrigued by what he sees.\",is already going to clutch the rope until someone is pulled back.,\"watches it, celebratory shots outside him.\",\"walks around, followed by someone.\",is hen helpful awesome and more amnesia itself.,gold0-reannot,pos,unl,unl,pos,pos,Its style tells us some years have passed.,He\nanetv_fk_hkHmnmJo,17272,A person's hands are seen opening a cap of sunscreen followed by rubbing it along their arm and rubbing it in. The person then,puts more sunscreen on the other arm and continues to rub both of his arms in.,shows a brush on the skateboard and holds it up to a camera.,pours liquid into a tool and leads into a person drinking water and drinking water.,zooms the contact into his eye and then brushes them along while speaking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A person's hands are seen opening a cap of sunscreen followed by rubbing it along their arm and rubbing it in.,The person then\nanetv_fk_hkHmnmJo,18636,Then he applies the cream on his right hand and spreads it evenly all over his arm. He,spreads the cream on both hands to evenly apply it on his skin for protection from the sun.,is swinging table tennis with some fan on it in one hand.,continues cutting the distance to ensure that the man is able to throw his subdues off.,points up at the symbols and the spider.,do the same multiple times before still waking.,gold0-orig,pos,unl,unl,unl,unl,Then he applies the cream on his right hand and spreads it evenly all over his arm.,He\nanetv_fk_hkHmnmJo,18635,Then he smears it to spread it evenly on his entire hand. Then he,applies the cream on his right hand and spreads it evenly all over his arm.,\"applies it to the wall, and sets down the empty tiles.\",goes to work on it quickly then picks it up and pulls off blue material.,shows his up to sharpen it.,,gold1-orig,pos,unl,unl,unl,n/a,Then he smears it to spread it evenly on his entire hand.,Then he\nanetv_fk_hkHmnmJo,18634,The swimmer opens the stick of sunscreen and rolls it on his left hand first. Then he,smears it to spread it evenly on his entire hand.,fills the jar with a sponge and uses it to serve it in the mason.,uses the other tool to brush it a few more inches.,strokes the smooth metal of a soccer shot end.,,gold0-orig,pos,unl,unl,unl,n/a,The swimmer opens the stick of sunscreen and rolls it on his left hand first.,Then he\nanetv_fk_hkHmnmJo,18633,There's a swimmer standing in the pool showing how to apply sunscreen on the body using a stick. The swimmer,opens the stick of sunscreen and rolls it on his left hand first.,reach for her again.,\"runs from the water through the water, then chases after it.\",holds two and aides as well as hands him the blah.,drops at a high back waterfall as the kid passes and stands high.,gold0-orig,pos,unl,unl,unl,unl,There's a swimmer standing in the pool showing how to apply sunscreen on the body using a stick.,The swimmer\nanetv_iAwNYgA6mkc,10447,A man walks up to him with his back turned as they talk. The man,\"stands, and engages in fencing with an opponent, both attached to cables behind them.\",chases after the dog and nimbly keeps him up.,is sitting on the stage talking and talking to himself.,moving back to the first man.,flips a cord and bungee jumps.,gold0-orig,pos,unl,unl,unl,pos,A man walks up to him with his back turned as they talk.,The man\nanetv_iAwNYgA6mkc,10446,A man kneels in his fencing gear. A man,walks up to him with his back turned as they talk.,climbs down the monkey bars in front of another.,lifts a barbell up to his head.,is wandering up a heighten hurdle.,,gold1-reannot,pos,pos,pos,pos,n/a,A man kneels in his fencing gear.,A man\nlsmdc0011_Gandhi-52167,16943,\"Some small children stand near them. Their ritual of washing goes on, but they\",are all watching the passengers of the train.,have not seen head any other way.,do not quite meet her.,\"can more mossy, divided by branch.\",'re stop it and look under the blanket.,gold0-orig,pos,unl,unl,unl,unl,Some small children stand near them.,\"Their ritual of washing goes on, but they\"\nanetv_DcoHV4WiHQk,3581,The woman looks away from the camera and looks down at the sand. The girl and woman then,begin digging in the sand.,walks placed in front of it.,give each other a last hug.,faces each other and they begin their game.,,gold1-orig,pos,unl,unl,unl,n/a,The woman looks away from the camera and looks down at the sand.,The girl and woman then\nanetv_DcoHV4WiHQk,3580,A woman is seen sitting on sand next to a girl. The woman,looks away from the camera and looks down at the sand.,continues playing the orange with the ball and enters the frame while walking to the other.,is then seen shaving her legs and sitting down with her arms out the sides.,turns around a bit in the water while continuing to talk to the camera.,rides the unicycle on a leash and begins riding the horses one at a time.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen sitting on sand next to a girl.,The woman\nlsmdc0013_Halloween-53861,12484,Someone races across the room and picks it up. Someone,sets down the receiver and walks out of the kitchen.,\"tumbles down some stairs, then flings someone launch on wall wall.\",\"ducks the car holograph, then hurls a reptile around the city.\",crawls around the bed and peers into the kidnapper's eyes.,appears as he reaches the hall.,gold0-orig,pos,unl,unl,unl,pos,Someone races across the room and picks it up.,Someone\nlsmdc0013_Halloween-53861,12483,From the house someone hears the phone ring. Someone,races across the room and picks it up.,drives someone's convertible.,marches down pavement with the dursleys.,plays the guitar in his hands.,,gold0-orig,pos,unl,unl,unl,n/a,From the house someone hears the phone ring.,Someone\nlsmdc0013_Halloween-53861,12485,Someone sets down the receiver and walks out of the kitchen. Someone,gives someone a dirty look and picks it up.,sprays the dog full of shampoo and her dog joins her.,stands up on his elbows and smiles at someone.,watches the radio coverage surveillance.,remains in the darkness.,gold0-reannot,pos,unl,unl,unl,unl,Someone sets down the receiver and walks out of the kitchen.,Someone\nlsmdc0005_Chinatown-48268,11441,He lights up and begins to hum 'The Way. Here he,\"spots several photos of a much younger someone, along with someone.\",holds up one tattoo tool and starts painting again.,\"begins to raise it up, onions in them.\",gets off the stage like he is trying to play and can't watch them.,shakes his hands as though to prayer.,gold1-orig,pos,unl,unl,unl,pos,He lights up and begins to hum 'The Way.,Here he\nlsmdc0005_Chinatown-48268,11442,\"Here he spots several photos of a much younger someone, along with someone. Someone, still humming,\",turns to the secretary.,\"leans forward trying, bouncing.\",is tracking with someone.,\"turns blankly in the doorway, watching someone with his binoculars.\",walks beside someone on the porch and listens with a numb expression.,gold1-reannot,pos,unl,unl,pos,pos,\"Here he spots several photos of a much younger someone, along with someone.\",\"Someone, still humming,\"\nanetv_I2Ctmi7C56k,12921,Two little boys rake leaves in a backyard while a little girl watches and walks with them as they rake. The two little boys rake leaves with red handled rakes and a little girl,watches them and hangs around while they rake.,in a swimsuit walks across the lawn waves.,leaves a house sitting off the side of the house and girl starts to paint the leaves.,catches something up flying it out of the way.,is huddled beneath a hedge.,gold0-reannot,pos,unl,unl,unl,unl,Two little boys rake leaves in a backyard while a little girl watches and walks with them as they rake.,The two little boys rake leaves with red handled rakes and a little girl\nanetv_d44RiNHK6KA,3125,Two people are working out on exercise bikes. The one wearing a blue wig,puts their hands in the air.,is down in the crane.,is sitting on.,and the bazaar the arm keep it.,tries to pass the wrestler.,gold0-orig,pos,unl,unl,unl,unl,Two people are working out on exercise bikes.,The one wearing a blue wig\nlsmdc3022_DINNER_FOR_SCHMUCKS-10519,9412,He gives someone a pointed look. Someone,looks at some goats in front of them then turns back to someone.,slides the pages onto a spoon.,\"storms the reactor with a packet in the van, then walks out of the church.\",\"strikes a pillar against the rock, which then rises off the ground.\",,gold1-orig,pos,unl,unl,unl,n/a,He gives someone a pointed look.,Someone\nanetv_Z7zc7zs5Zj8,14768,A woman is seen walking down a set of stairs and begins performing a routine in front of a large audience. The woman,continues dancing around the stage while a group of people play instruments behind her.,continues down the procession while moving her hips while moving her hands up and down.,cheers and leads into several clips of the gymnast performing down a baton on the stage as well as spinning around it and bowing.,begins by walking around and speaking to the camera and leads into several clips of her walking around stage.,continues performing tricks while others watch on the side.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen walking down a set of stairs and begins performing a routine in front of a large audience.,The woman\nanetv_BLTOTjVYiuE,12465,Man with a usa identification on his chest is running in a racetrack and make a long jump. mena,re sitting on chairs on sides of he race track.,is shown playing the running field.,are doing motocross in a arena.,is standing in a green boxing ring and shows people showcases exercise in a gym.,is running playing a game of field hockey.,gold0-orig,pos,unl,unl,unl,unl,Man with a usa identification on his chest is running in a racetrack and make a long jump.,mena\nanetv_BLTOTjVYiuE,16937,A man runs quickly across a track. the man,jumps several hurdles on the track.,runs up the track runs down the track.,throws a javelin throw as well as running to the field.,throws a ball across the field filled with spectators.,scoops the dirt with plastic.,gold0-orig,pos,unl,unl,unl,unl,A man runs quickly across a track.,the man\nanetv_BLTOTjVYiuE,16938,The man jumps several hurdles on the track. the man then,leaps into a sandbox.,joins and wraps a throw in a saddle.,gets down and dismounts.,lands fire by falling.,jumps and dives into the sand pit.,gold1-orig,pos,unl,unl,unl,pos,The man jumps several hurdles on the track.,the man then\nanetv_BLTOTjVYiuE,12466,Mena re sitting on chairs on sides of he race track. people,are on stands around the field.,are gathered on football field.,are fighting down a snowy slope.,run onto the field and distract the bull.,,gold1-reannot,pos,unl,unl,pos,n/a,Mena re sitting on chairs on sides of he race track.,people\nlsmdc3045_LAND_OF_THE_LOST-21252,12900,\"Someone looks to someone, who grins and gives an encouraging nod. He points up and they\",climb to the top.,run off past a relay audience.,enter the photo compartment.,run to the side of the room.,smile up at her.,gold0-orig,pos,unl,unl,pos,pos,\"Someone looks to someone, who grins and gives an encouraging nod.\",He points up and they\nlsmdc3045_LAND_OF_THE_LOST-21252,12899,\"As they climb, someone lags far behind. Someone\",\"looks to someone, who grins and gives an encouraging nod.\",\"floats up towards him, knocking him down the long metal beams.\",\"heads off across the yard, knocking someone into his arms.\",straightens with his gun.,\"stretches the cable victoriously, weaving behind him, tearing down his street.\",gold0-reannot,pos,unl,unl,unl,unl,\"As they climb, someone lags far behind.\",Someone\nanetv_V9xuy-rVj9w,1118,\"They lob snowballs and ride the cars, then they ski down the hill. They\",\"are shown skiing and performing many tricks, spinning and flipping as they go.\",\"come to the ice and pose for a man, then waves the flag.\",throw the intertubes down hills going down various hills.,go and drive up the hill in tubes.,go back and forth as they surf.,gold0-orig,pos,unl,unl,unl,unl,\"They lob snowballs and ride the cars, then they ski down the hill.\",They\nanetv_V9xuy-rVj9w,1117,\"A group of men and boys are on a snow capped hill. They lob snowballs and ride the cars, then they\",ski down the hill.,begin rollerblading in a parking lot.,drive through the rapids.,pull them out onto the snowy mountain.,,gold0-reannot,pos,unl,unl,pos,n/a,A group of men and boys are on a snow capped hill.,\"They lob snowballs and ride the cars, then they\"\nlsmdc0020_Raising_Arizona-57092,13703,As his picture is taken. It,is mounted on a tripod.,\"'s fallen, came toward him.\",backs toward the cottage and gets to her feet.,is a flood of store.,,gold0-orig,pos,unl,unl,unl,n/a,As his picture is taken.,It\nlsmdc0020_Raising_Arizona-57092,13705,\"Someone obliges, but still looks at someone out of the corner of his eye. As someone\",is escorted away from the camera toward his cell.,\"turns back, a voice shouts returned to his words.\",\"sits down at the wheel, her gaze flies open as she heads out of the kitchen.\",\"gazes back at someone, who is watching someone.\",reaches the open door and shuts the door.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone obliges, but still looks at someone out of the corner of his eye.\",As someone\nlsmdc0020_Raising_Arizona-57092,13704,It is mounted on a tripod. Someone,\"obliges, but still looks at someone out of the corner of his eye.\",gropes around and climbs it out.,gently taps his temple.,calmly turns as the helicopter arrives.,,gold1-reannot,pos,unl,unl,unl,n/a,It is mounted on a tripod.,Someone\nlsmdc3038_ITS_COMPLICATED-17633,4677,Someone gives a broad shrug then drops his hands into his lap. She,reaches across the space between them and rubs his shoulder.,blinks and inquisitively tricks.,\"his lips, she steps across the room for a little klimt stand.\",someone grabs his orange pants.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gives a broad shrug then drops his hands into his lap.,She\nlsmdc3038_ITS_COMPLICATED-17633,4678,She reaches across the space between them and rubs his shoulder. She,looks away from him then leans one elbow on the armrest and gazes off thoughtfully.,rubs his hand against the back of her pants and pulls the handle and he slumps against the massage table.,keeps her feet apart as she smiles at her sister and swivels away.,nods and shakes her head.,,gold0-orig,pos,unl,unl,pos,n/a,She reaches across the space between them and rubs his shoulder.,She\nlsmdc3038_ITS_COMPLICATED-17633,4681,\"Someone steps outside and opens an umbrella. Someone halts,\",gives a long nod.,spotting a tall man in a suit.,gets up and goes to the door.,stares after her then frowns thoughtfully.,tie a calf to someone's shoulder.,gold1-orig,pos,unl,unl,unl,unl,Someone steps outside and opens an umbrella.,\"Someone halts,\"\nlsmdc3038_ITS_COMPLICATED-17633,4675,She smiles and shakes her head. She,bites her bottom lip and blinks at him sheepishly as the wind tousles her honey blonde hair.,lifts her arm to her chest and on his head.,strokes her cheek.,embraces her purse and gets up.,\"folds her hands in her hands and smiles, she tugs her hands out.\",gold0-orig,pos,unl,unl,unl,unl,She smiles and shakes her head.,She\nlsmdc3038_ITS_COMPLICATED-17633,4680,A view from the front door shows a flatbed truck carry timber past an excavator. Someone,steps outside and opens an umbrella.,\"stands up, holding his hand on the grass.\",pulls off his hood.,looks as they bloom stoically.,,gold1-orig,pos,unl,unl,unl,n/a,A view from the front door shows a flatbed truck carry timber past an excavator.,Someone\nlsmdc3038_ITS_COMPLICATED-17633,4683,Someone's eyes widened and her jaw drops open. Someone smiles and she,looks to the other men.,wags her finger in her air.,turns his head to face behind.,holds her doll in both hands.,opens the door to the nurse.,gold1-reannot,pos,unl,unl,unl,unl,Someone's eyes widened and her jaw drops open.,Someone smiles and she\nlsmdc3038_ITS_COMPLICATED-17633,4679,As our view slowly orbits the ex - lovers someone's distanced stare drifts. A view from the front door,shows a flatbed truck carry timber past an excavator.,shows the family lifting the pond that was perched on a picnic table.,shows a collection of people held out by water.,shows an enormous spilling of liquor.,shows a view of several agents and unrolls smoke.,gold0-reannot,pos,unl,unl,unl,unl,As our view slowly orbits the ex - lovers someone's distanced stare drifts.,A view from the front door\nlsmdc3038_ITS_COMPLICATED-17633,4682,\"Someone halts, gives a long nod. She\",trudges toward a construction crew huddled around a table collapsible canopy.,closes his eyes and shakes her head.,sets the packages up.,\"chases her uncle down the staircase, then sits down, finds her firmly at the station.\",\"stands motionless, his eyes glistening with dark - rimmed eyes.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone halts, gives a long nod.\",She\nlsmdc3073_THE_GUILT_TRIP-34873,11640,Someone's expression freezes and she looks to the floor. She turns aside and someone,places a hand on her shoulder.,takes out her phone.,looks at her glistening blue eyes.,turns her back to someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's expression freezes and she looks to the floor.,She turns aside and someone\nlsmdc0026_The_Big_Fish-62631,8058,\"Finished with his work, he takes his hat off the chair and hangs it on the rack. With that last job done, there\",'s no reason for him to be staying any longer.,has been caught in his eyes with a gloved hand.,has a terrible head in his rights.,is a hole at the door of the next room.,is a advertisement for the video.,gold0-orig,pos,unl,unl,pos,pos,\"Finished with his work, he takes his hat off the chair and hangs it on the rack.\",\"With that last job done, there\"\nlsmdc0026_The_Big_Fish-62631,8054,\"Someone pushes against the side of the house until it fits. Holding nails between his lips, someone\",puts in new windows himself.,sways with his knees.,heaves forward as he keeps her coat out.,heaves another of the bloody webs for himself to start to pull back down.,is light and style of face mask in color.,gold0-orig,pos,unl,unl,unl,unl,Someone pushes against the side of the house until it fits.,\"Holding nails between his lips, someone\"\nlsmdc0026_The_Big_Fish-62631,8060,She is very close - - just a half - inch from kissing him when - - - - someone gently holds her back. She,\"freezes, stunned and humiliated.\",tiptoes into the bathroom.,\"swallows, moves and consists, leaving someone in a disassembled garden.\",\"stops, then lowers her gaze and stares ahead, taking a cord from her handle.\",\"whispers to him, as she walks around.\",gold0-orig,pos,unl,unl,unl,pos,She is very close - - just a half - inch from kissing him when - - - - someone gently holds her back.,She\nlsmdc0026_The_Big_Fish-62631,8057,\"Someone leans against the doorframe listening to his story. Finished with his work, he\",takes his hat off the chair and hangs it on the rack.,listens on his cellphone and taps his mobile on the set.,drops the knife on the table and leans in him.,\"spots his car, revealing on the naked men.\",returns to the phone to look at its messages.,gold1-orig,pos,unl,unl,unl,pos,Someone leans against the doorframe listening to his story.,\"Finished with his work, he\"\nlsmdc0026_The_Big_Fish-62631,8059,\"She takes his hand, lifting his hat up to the peg. She\",is very close - - just a half - inch from kissing him when - - - - someone gently holds her back.,bends down to touch her face.,picks up her; someone steps away from him.,strikes someone's finger.,turns and walks toward the door.,gold1-orig,pos,unl,unl,unl,pos,\"She takes his hand, lifting his hat up to the peg.\",She\nlsmdc0026_The_Big_Fish-62631,8056,Someone is screwing a hat rack into the wall in the foyer. Someone,leans against the doorframe listening to his story.,roll his head out the floor and backside in the strange u - room.,\"the bunk, someone drops on the sofa and takes a seat.\",is blasting off the roof of the car and begins to ram the garage.,is mowing him.,gold0-reannot,pos,unl,unl,unl,unl,Someone is screwing a hat rack into the wall in the foyer.,Someone\nlsmdc0026_The_Big_Fish-62631,8055,In every detail it is impossibly charming. Someone,is screwing a hat rack into the wall in the foyer.,are on the wrong side.,leans through glasses to his left.,takes a photo of his guest and a wounded pout.,,gold0-reannot,pos,unl,unl,pos,n/a,In every detail it is impossibly charming.,Someone\nanetv_mdJHGKABLhU,14962,The man continues shaving his beard. He,wipes his face with a towel and smiles.,bends down and rubs lotion onto his legs while he walks to the camera.,shifts his uneasy around for a moment.,continues to shave his bare legs.,approaches and sitting on the towel as the first man sits over the net and the motioning that the man did is wash him.,gold0-orig,pos,unl,unl,unl,unl,The man continues shaving his beard.,He\nanetv_mdJHGKABLhU,14961,Words are written on the screen. The man,continues shaving his beard.,blows the fire evenly and then takes out the match.,is holding the horn congas in front of them and stomping to the camera.,explains and demonstrates how to use the inside of a sink to during paint.,sets the tie on the finger of a woman.,gold1-orig,pos,unl,unl,unl,unl,Words are written on the screen.,The man\nanetv_mdJHGKABLhU,14960,A man with shaving cream on his beard starts shaving. Words,are written on the screen.,drinks and rubs thoroughly.,over the shaving cream dot his nose.,is shaving the back of a man's head in shaving gel and then sits across from him.,drops the rubik's cube and puts the solution down.,gold0-orig,pos,unl,unl,unl,unl,A man with shaving cream on his beard starts shaving.,Words\nanetv_V3ZDyR7mVpc,6558,We see waterski and the side of a boat. We,\"see a boy standing on a dock, people gas their boat then board.\",see a man watching the ski.,see the man skiing and roller high jumps.,see the name of a brown polo.,see two people walking in the river.,gold1-orig,pos,unl,unl,unl,unl,We see waterski and the side of a boat.,We\nanetv_V3ZDyR7mVpc,6563,\"A person jumps into the water and we see the water skier again. A boy on a trampoline in a shop, people on a raft and a boy\",jumps in the water.,goes down a hill.,is being pushed from the twisted water.,throws a ball on the side of the yard as he fell on the ground.,jumps and waves onto a lake.,gold0-orig,pos,unl,unl,unl,unl,A person jumps into the water and we see the water skier again.,\"A boy on a trampoline in a shop, people on a raft and a boy\"\nanetv_V3ZDyR7mVpc,6562,We see a shop then a person paddling on a kayak. A person jumps into the water and we,see the water skier again.,see a boat with the sea wet.,see the people riding then a raft.,see various waves in the water.,see the person floating a canoe.,gold0-orig,pos,unl,unl,pos,pos,We see a shop then a person paddling on a kayak.,A person jumps into the water and we\nanetv_V3ZDyR7mVpc,6559,\"We see a boy standing on a dock, people gas their boat then board. We\",see two boys playing.,see a lion swimming in the lake.,see people skiing down a hill.,then see the water on a path.,,gold1-orig,pos,unl,pos,pos,n/a,\"We see a boy standing on a dock, people gas their boat then board.\",We\nanetv_V3ZDyR7mVpc,6560,We see two boys playing. We,see a person water skiing on a lake.,see cars on a dartboard.,\"notes, leaves, and the other words players.\",\"dance, then four men talk.\",see a red game indoors.,gold1-reannot,pos,unl,unl,unl,unl,We see two boys playing.,We\nanetv_V3ZDyR7mVpc,6561,We see the cars in the parking lot near the lake and a dog sniffs the camera. We,see a shop then a person paddling on a kayak.,see tension and cars bouncing down our shots.,\"see the lady hanging towels and children dryer, high and orange and white, on the lady.\",see a lady and a man kneeling to stop the vehicle.,see the lady then turn around and throw the shotput.,gold1-reannot,pos,unl,unl,unl,unl,We see the cars in the parking lot near the lake and a dog sniffs the camera.,We\nlsmdc3057_ROBIN_HOOD-27565,2641,\"Someone glances up a hill. Holding someone's sword, someone\",\"shifts his eyes thoughtfully, then gives a nod.\",crouches against the prow.,pulls out the smaller fish.,hides the probe boot over a giant diamond.,shoots as someone attempts to attack someone's wrist.,gold0-orig,pos,unl,unl,unl,unl,Someone glances up a hill.,\"Holding someone's sword, someone\"\nlsmdc0005_Chinatown-48410,17548,\"He brings the car a few yards further down the street, parking it near someone's. Someone\",gets out of the car and goes up the walkway.,\"pauses and turns deeply, looking at the main building's perimeter window.\",sits across the outer preps not more.,tilts his head to look at someone with pleasure.,someone gets out of the car.,gold1-orig,pos,unl,unl,unl,unl,\"He brings the car a few yards further down the street, parking it near someone's.\",Someone\nlsmdc0005_Chinatown-48410,17549,Someone gets out of the car and goes up the walkway. The curtains,are drawn except for one of the small windows on the side of the house.,\"sprays the window on the side, reading it.\",get dark and look shabby.,are captured as he leaves the car.,,gold0-orig,pos,unl,pos,pos,n/a,Someone gets out of the car and goes up the walkway.,The curtains\nlsmdc0005_Chinatown-48410,17550,The curtains are drawn except for one of the small windows on the side of the house. He,\"goes to it and looks, balancing on the edge of the porch.\",looks awkward as she can get out her car.,fills the chamber from the a canister and pulls out when it's coming out the case.,stops blows a burst of smoke and flames shoot out of the window.,,gold0-orig,pos,unl,unl,unl,n/a,The curtains are drawn except for one of the small windows on the side of the house.,He\nlsmdc0043_Thelma_and_Luise-68160,14455,It's already pretty crowded. The long bar,is filled with customers.,is towering by submerged glass.,shows the class entranceway.,shows up; we was showing about her survival - related scarf.,,gold0-orig,pos,unl,unl,unl,n/a,It's already pretty crowded.,The long bar\nlsmdc0043_Thelma_and_Luise-68160,14452,They pull off at a place down on the right all lit up with neon. It,'s called the silver bullet.,is at their goal in an area sidewalk covered by a strip of red dirt and one standing in the middle of the trail.,shows different angles of them going into the water.,\"sweeps off towards the city, followed by images of an restaurants.\",,gold0-orig,pos,unl,unl,pos,n/a,They pull off at a place down on the right all lit up with neon.,It\nlsmdc0043_Thelma_and_Luise-68160,14453,\"It's called the silver bullet. Even though it's early, you\",can tell this place is a real night spot.,keep watching for falling.,can see it sweat primitive badly along two sides.,can see a little smudge of street bones jowly from a windshield.,,gold0-orig,pos,unl,unl,unl,n/a,It's called the silver bullet.,\"Even though it's early, you\"\nlsmdc0043_Thelma_and_Luise-68160,14456,The long bar is filled with customers. The room,is dense with smoke.,is quickly between them.,is slack and stiff.,is packed with mist.,,gold0-orig,pos,unl,unl,unl,n/a,The long bar is filled with customers.,The room\nlsmdc0043_Thelma_and_Luise-68160,14459,Many heads turn and follow people to an empty table. A waitress,comes over and drops two menus on the table.,\"is tied around the dining table, crying.\",\"hides a troubled watch, and a small quaffle conducts the young woman.\",steps up to the black two to put out the window.,\"picks up a box, spilling an entry and pours a shot.\",gold0-orig,pos,unl,unl,unl,pos,Many heads turn and follow people to an empty table.,A waitress\nlsmdc0043_Thelma_and_Luise-68160,14458,\"There is a dance floor, but no one is dancing yet because the band is still setting up. Many heads\",turn and follow people to an empty table.,jump as if doing some sort of karate.,back to the stage they sit to talk to the camera.,walk through the forest.,come in and out of the stage while the other dancers stretch their hands.,gold0-orig,pos,unl,unl,unl,unl,\"There is a dance floor, but no one is dancing yet because the band is still setting up.\",Many heads\nlsmdc0043_Thelma_and_Luise-68160,14457,The room is dense with smoke. There,\"is a dance floor, but no one is dancing yet because the band is still setting up.\",opens the passenger door.,is an oxygen flicker.,is lit inside slowly.,sits on the beach.,gold0-reannot,pos,unl,unl,unl,unl,The room is dense with smoke.,There\nlsmdc0043_Thelma_and_Luise-68160,14454,\"Even though it's early, you can tell this place is a real night spot. It\",'s already pretty crowded.,\"see someone on the pavement, ten feet away.\",\"heads through the bathroom, out to the bed of the door.\",\"as a big set of bills, the whale shrink to the underside of the disk.\",\"starts up the kitchen stairs and sits on the couch, looking every bit pensive.\",gold0-reannot,pos,unl,unl,unl,unl,\"Even though it's early, you can tell this place is a real night spot.\",It\nlsmdc0043_Thelma_and_Luise-68160,14451,Someone realizes that someone is going to revert to a teenager and continue whining unless she gives in. They,pull off at a place down on the right all lit up with neon.,follows someone into the kitchen and gets up.,are hitting containers at the kids.,maintain a nonchalant - until someone is desperate to leave.,stop on to the road and are coming toward the entrance.,gold1-reannot,pos,unl,unl,unl,pos,Someone realizes that someone is going to revert to a teenager and continue whining unless she gives in.,They\nlsmdc0027_The_Big_Lebowski-63063,924,Someone is looking around at the '60's modern decor. He,hands him the drink.,listens to somebody whispering and nods to later in the backyard of the shop.,\"reaches a entranceway, maneuvering over the area as though to suck it from a dream.\",cuts a syringe and throws it straight down on the ground.,\"takes off his own apron and adds dressing, showing it to us, making sure he can't look like the woman.\",gold0-orig,pos,unl,unl,unl,unl,Someone is looking around at the '60's modern decor.,He\nlsmdc3068_THE_BIG_YEAR-3593,740,\"On board, someone reaches across the aisle and taps someone's shoulder. As he turns, she\",hands him a slip of paper.,stares out upright behind the bus.,gives him a hug.,kisses him tenderly on the cheek.,,gold0-orig,pos,unl,pos,pos,n/a,\"On board, someone reaches across the aisle and taps someone's shoulder.\",\"As he turns, she\"\nlsmdc3068_THE_BIG_YEAR-3593,738,\"Staying behind, someone jogs away joyfully. Beneath the cloudy sky, the plane\",lifts off from the runway.,sails back and forth over a traffic.,blows in to scratches.,misses a drop on its support and falls.,passes two rows of teens upon a sea bed.,gold0-orig,pos,unl,unl,unl,unl,\"Staying behind, someone jogs away joyfully.\",\"Beneath the cloudy sky, the plane\"\nlsmdc3068_THE_BIG_YEAR-3593,741,\"As he turns, she hands him a slip of paper. He\",\"reads it, lifts his brow and glances back at her with a hopeful smile.\",dons a coat and holds it at his heart.,watches as he shuffles off in the opposite direction.,walks off and he rushes off.,puts the money back on the shelf.,gold0-orig,pos,unl,unl,unl,unl,\"As he turns, she hands him a slip of paper.\",He\nlsmdc3068_THE_BIG_YEAR-3593,745,\"On the other end of the line, someone strolls through a desert. In a swamp, someone\",fights his way past a low branch as he rows a small boat.,stands at the patio door and unwraps an apple.,signals someone to mordor with a book with blue hair.,joins someone amid an empty slot on the sidewalk.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the other end of the line, someone strolls through a desert.\",\"In a swamp, someone\"\nlsmdc3068_THE_BIG_YEAR-3593,747,\"Now, words appear beneath the speeding train. Someone\",arrives at boston south station.,perches on a railing overlooking.,turns to the durmstrang officer building and makes a private gesture.,runs over to his vests and snatches the cellphone from his chest.,gets up and carries someone to the pool.,gold0-orig,pos,unl,unl,unl,unl,\"Now, words appear beneath the speeding train.\",Someone\nlsmdc3068_THE_BIG_YEAR-3593,748,Someone arrives at Boston South Station. He,spies someone on the platform.,raises the crowned flag.,treads down a sidewalk.,misses a sign on the corner.,holds up some paperwork.,gold0-orig,pos,unl,unl,unl,unl,Someone arrives at Boston South Station.,He\nlsmdc3068_THE_BIG_YEAR-3593,739,\"Beneath the cloudy sky, the plane lifts off from the runway. On board, someone\",reaches across the aisle and taps someone's shoulder.,taps the young lad's head on his knees.,moves across the ice with the crewman in a building.,runs into an elevator.,,gold1-orig,pos,unl,unl,unl,n/a,\"Beneath the cloudy sky, the plane lifts off from the runway.\",\"On board, someone\"\nlsmdc3068_THE_BIG_YEAR-3593,746,\"He spies a flamingo ahead. At sunset, he\",watches circling gulls from a sand bar.,finds a female focused.,holds the shotgun at someone who uses a determined gaze to try to pick it free.,switches off the tap and turns as he glides across the valley.,flips through grave tears.,gold0-orig,pos,unl,unl,unl,unl,He spies a flamingo ahead.,\"At sunset, he\"\nlsmdc3068_THE_BIG_YEAR-3593,742,A series of scenes highlights his travels. Someone,hikes up to a waterfall where a bird soars among the mist.,loops ball in his alley.,\"is reading, throwing poses at a mannequin.\",lifts someone's hat off and someone regards a young presenter.,abruptly cast soft light across his bedroom.,gold0-orig,pos,unl,unl,unl,unl,A series of scenes highlights his travels.,Someone\nanetv_w6Avae5on_0,11312,\"A man stands on the other side, lobbing the ball back to him. They\",continue hitting the ball back and forth.,throw the ball around a few times in another setting.,walk on the gaps between their apartments.,straps on and pump their cheers.,continue to hit the ball against the racket shortly after.,gold1-orig,pos,unl,unl,unl,pos,\"A man stands on the other side, lobbing the ball back to him.\",They\nanetv_w6Avae5on_0,11311,A child is hitting a ball over a net in a gym. A man,\"stands on the other side, lobbing the ball back to him.\",\"grabs the ball and hits it against the goal, right reaching forward to hit the ball.\",is amongst the ice on the ice.,falls down a field.,is trying to keep the basketball.,gold0-orig,pos,unl,unl,unl,pos,A child is hitting a ball over a net in a gym.,A man\nanetv_r5oPTDuHhoE,1861,A group of girls are shown standing around a field huddled up together. The next shots,are of the girls running around the field passing the ball back and fourth.,are shown of people playing colored times.,of a game are shown shows the girls rolling and zooming around them.,are shown of people cheering with one another and skipping around.,are shown of the fences with one another.,gold0-orig,pos,unl,pos,pos,pos,A group of girls are shown standing around a field huddled up together.,The next shots\nanetv_r5oPTDuHhoE,1862,A girl shoots the ball into the goal and achieves a point. Another later,tries to shoot a goal but is blocked by the goalie.,\"walks on the court, her foot on side on the field.\",- shaped goal is created by a blue screen.,comes before the man serves another horse.,,gold0-orig,pos,unl,unl,unl,n/a,A girl shoots the ball into the goal and achieves a point.,Another later\nanetv_9nh_6Hzg_aw,11944,A person is shown looking around a city and begins washing windows with his tools. He,goes up and down the windows at a rapid pace and continues filming himself through the glass.,still speaks to the camera while continuing scanning the items.,takes two more cans along the roof and smooths them out.,continues painting a piece of paper and rubbing them down the side.,serve the vacuum back and fourth while stopping to speak to the camera.,gold0-orig,pos,unl,unl,unl,pos,A person is shown looking around a city and begins washing windows with his tools.,He\nanetv_9nh_6Hzg_aw,11945,He goes up and down the windows at a rapid pace and continues filming himself through the glass. He,finishes the glass in record time and turns off the camera.,props his turn on the remote and peers through to another seat.,looks left and right at the beach.,falls when they where it stops and students seemed to drill.,hosts with his eyes and faces the camera.,gold0-reannot,pos,unl,unl,unl,unl,He goes up and down the windows at a rapid pace and continues filming himself through the glass.,He\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18275,\"She kisses her sister on the cheek, then leaves the room. When she is gone, someone's broad smile\",turns to an expression of contented relief.,spreads on her face as the snake tenses someone's face.,is briefly plastered on her face.,spreads over his face as she heads toward him and her eyes drift off.,grows on someone 'face.,gold0-orig,pos,unl,pos,pos,pos,\"She kisses her sister on the cheek, then leaves the room.\",\"When she is gone, someone's broad smile\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18277,\"A little later, someone and the rest of the family are seeing someone out. Someone\",\"smiles briefly at someone, then climbs up onto his white horse.\",\"pushes his way up from it, non - casual and startles as the car approaches - - - gives a tiny smile.\",trots up the rest of the steps into a doorway then stops with his eyes still closed.,is sober.,stares resignedly off the dark window overlooking the ascending ramp and the bus last.,gold1-orig,pos,unl,unl,unl,unl,\"A little later, someone and the rest of the family are seeing someone out.\",Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18279,Someone waves her handkerchief at him as someone sets off. Someone,stands next to someone.,steps over to him.,takes off his mask.,gives someone a look with a book in his hands.,frowns and faces him.,gold1-orig,pos,unl,unl,pos,pos,Someone waves her handkerchief at him as someone sets off.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89936,18278,\"Someone smiles briefly at someone, then climbs up onto his white horse. Someone\",waves her handkerchief at him as someone sets off.,walks away from the chopper and leaps in place.,puts his box on a plate as he takes a seat.,crosses his way wearing a catching skirt white and white feather.,hangs his head and leans in with his hands on his knees.,gold1-orig,pos,unl,unl,unl,unl,\"Someone smiles briefly at someone, then climbs up onto his white horse.\",Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5839,Someone puts her face down to the pillow and moans. Someone,snaps on a harsh bare bulb at center of room.,\"holds down a sheet of paper as rushes for the last of someone to get the renovation out of her bag, then quickly dries\",sits at another desk.,picks up someone's rolled up half starts to appear back and more closed.,appears to see her clearly.,gold1-orig,pos,unl,unl,unl,unl,Someone puts her face down to the pillow and moans.,Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5842,\"Someone, in the darkness, does not move. She\",folds her hands in prayer and lifts her eyes.,\"walks up the low staircase, disappearing into the bushes.\",walks back from the apartment.,does not go over so he can touch.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone, in the darkness, does not move.\",She\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5838,His voice is quiet and cold. Someone,puts her face down to the pillow and moans.,\"comes upon, bleeding.\",passes stetson few bushes evacuating the town.,\"peels out over the canvas, leaving an adjoining path of grappling hooks adorned the ceiling.\",,gold0-orig,pos,unl,unl,unl,n/a,His voice is quiet and cold.,Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49221,5840,Someone walks to meet her image in the mirror; her eyes on. Her head,\"drops, facing the mirror.\",\"lolls, his face softening.\",lolls back and cocks her head.,hangs to the side.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone walks to meet her image in the mirror; her eyes on.,Her head\nanetv_fljxcvQe_Mo,10049,The top shingle of a roof dangles unsecured. A man on a roof,\"hammers a nail into the shingle, securing the shingle.\",breaks into a gym.,\", jump into a small hole.\",falls out onto the ground.,uses a ladder to scrape snow off the dust.,gold0-orig,pos,unl,unl,unl,unl,The top shingle of a roof dangles unsecured.,A man on a roof\nlsmdc3029_GREEN_ZONE-13832,901,The general and his aide cross a dim alcove and disappear through a bead curtain doorway. Someone,\"follows, only steps behind.\",descends the stairs and sits up on the tracks to the bottom.,\"regards him, then thrusts back directly into the stranger's hand and scowls.\",shows a doctor talking to him as he demonstrates how to sharpen his knife.,places the back of his deploy headlock around his left head translucent fits through the curved glass of inspection.,gold0-orig,pos,unl,unl,unl,unl,The general and his aide cross a dim alcove and disappear through a bead curtain doorway.,Someone\nanetv_ZdgWC6Jk2Nk,10477,A camera pans out of a dirt hole and shows a man placing it down next to a tree. The camera,pans around the tree and shows the man checking up on the dirt.,shows on another tool on the street.,shows a person applying neck tattoos on the person's final hair.,follows the man riding through some plates of the areas.,pans around to the woman being held and showing the children trimming the hedges.,gold1-orig,pos,unl,unl,unl,pos,A camera pans out of a dirt hole and shows a man placing it down next to a tree.,The camera\nanetv_SsW-IeF0bzE,2985,The kids all go down the stairs and back to the fair area. There,are lots of people of all ages around doing different things at the fair.,into the open area where another studio two people are eating together.,\"get up, and someone charges in and she - charges.\",melodrama sneezes overturns back in the present.,see two children from a world story with no holding of this: amusement and baby.,gold0-orig,pos,unl,unl,unl,unl,The kids all go down the stairs and back to the fair area.,There\nanetv_SsW-IeF0bzE,2982,Several kids are driving bumper cars in a group at a fair. A younger girl gets stuck and a man,walks over to help her.,is seen sitting in a tire frame.,falls into a chair.,falls to the ground.,is then seen from behind.,gold0-orig,pos,unl,pos,pos,pos,Several kids are driving bumper cars in a group at a fair.,A younger girl gets stuck and a man\nanetv_SsW-IeF0bzE,2983,A younger girl gets stuck and a man walks over to help her. The groups time runs out and all of the kids,stand up and exit the bumper car area.,play again and continue cheering and waving a screw and her left to the side.,starts twirling around and laughing and laughing to each other.,slide back then hug both kids.,get up to reach the rope.,gold0-orig,pos,unl,unl,unl,unl,A younger girl gets stuck and a man walks over to help her.,The groups time runs out and all of the kids\nanetv_SsW-IeF0bzE,2984,The groups time runs out and all of the kids stand up and exit the bumper car area. The kids all,go down the stairs and back to the fair area.,get in the building and begin playing a game of arm wrestling.,begin to joke and do quick punches and text on the side of the screen.,go over with the car followed by light from the car wash.,start pedaling on the sidewalk and touching a bump.,gold0-orig,pos,unl,unl,unl,unl,The groups time runs out and all of the kids stand up and exit the bumper car area.,The kids all\nlsmdc0043_Thelma_and_Luise-68195,6092,\"She holds a beer bottle in one hand. She is laughing a lot about nothing, and someone\",is studying her closely.,won't take her eyes off someone.,starts to toss her her cake.,pushes the ball back and forth.,tries on her shirt.,gold1-orig,pos,unl,unl,unl,pos,She holds a beer bottle in one hand.,\"She is laughing a lot about nothing, and someone\"\nlsmdc0043_Thelma_and_Luise-68195,6091,\"Someone is breathless, drunk and giggly. She\",holds a beer bottle in one hand.,\"stares reluctantly, then intercepts her middle finger.\",is being restrained.,watches as her mother sleeps on the porch.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone is breathless, drunk and giggly.\",She\nlsmdc0043_Thelma_and_Luise-68195,6093,Someone heads off to the bathroom. She,stumbles a step and drops her beer bottle.,shows some books from a closet.,meets her wounded gaze.,\"runs to her bed, laughing, and hauls herself up.\",turns and walks down the stairs.,gold0-reannot,pos,unl,unl,unl,unl,Someone heads off to the bathroom.,She\nlsmdc1018_Body_Of_Lies-80188,13788,Two suvs drive through gates and stop in front of the Jordanian General Intelligence Directorate. People,get out of the vehicles.,stop and look around the bridge.,stand at an open courtyard painting a parked car.,crane around the room in trailers and they caress the corner.,are standing on the field.,gold0-orig,pos,unl,unl,unl,unl,Two suvs drive through gates and stop in front of the Jordanian General Intelligence Directorate.,People\nlsmdc3090_YOUNG_ADULT-44142,5051,\"Later, someone pulls a small red car into someone's driveway. Working with his distilling equipment, someone\",slips his arm into his crutch then limps toward the driveway.,thrusts way through the traffic.,paces past them and finds his climbing masked son.,approaches a pair of kids.,\"wipes off the from his car's window, the accomplice runs up the street.\",gold0-reannot,pos,unl,pos,pos,pos,\"Later, someone pulls a small red car into someone's driveway.\",\"Working with his distilling equipment, someone\"\nanetv_len7R78v5NY,18445,One gets on the equipment and begins moving his arms back and fourth. The other man,uses the machine while the other speaks to the camera.,drops dancing all around while the man follows him and moving the rope around him.,pushes the person down on the ground while looking off into the distance.,walks around continuously while the camera captures all of him in time.,,gold0-orig,pos,unl,unl,pos,n/a,One gets on the equipment and begins moving his arms back and fourth.,The other man\nanetv_len7R78v5NY,13519,Two men are seen speaking to the camera in front of an exercise equipment. One man,gets on and begins demonstrating how to use it.,appears and leads into the people exercising on the board.,starts speaking to the camera in the bathroom.,uses another enclosed tool on the pan as well as more buttons.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are seen speaking to the camera in front of an exercise equipment.,One man\nanetv_len7R78v5NY,18444,Two men are seen standing in front of a piece of exercise equipment speaking to the camera. One,gets on the equipment and begins moving his arms back and fourth.,leads the class on sides as well as a man speaking to the camera.,lays down high on his knees with one arm put which the woman does.,puts close up behind and picks up a piece of equipment.,,gold0-orig,pos,unl,unl,pos,n/a,Two men are seen standing in front of a piece of exercise equipment speaking to the camera.,One\nanetv_len7R78v5NY,13520,One man gets on and begins demonstrating how to use it. The other man,uses the machine while the first speaks to the camera.,cuts the hedge in circles to detail until it finishes.,takes the shot but shows it off in slow motion.,continues to speak to the camera and ends by lifting up another weight in various moves.,,gold0-orig,pos,unl,unl,pos,n/a,One man gets on and begins demonstrating how to use it.,The other man\nanetv_cKHdMUfKsQ8,13333,A woman is seen speaking to the camera while holding up a paintbrush and bucket. She,paints a piece of furniture next to her while also holding up a brush.,uses her hair to wipe it out of the water and onto her face.,picks up a piece of hair and puts it down.,puts the objects around the paint and paints it.,pours the liquid into a bucket and scrubs all over her dog.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding up a paintbrush and bucket.,She\nanetv_cKHdMUfKsQ8,13334,She paints a piece of furniture next to her while also holding up a brush. She,holds up more objects while dipping the brushes into them as well as uses it on the furniture.,then stops sanding crumble blue onto her foot boot.,then shows how to use ski materials and submerged.,shows several photos on the wall as well as out in front of a mermaid.,\", then going down the cord, trimming her.\",gold0-orig,pos,unl,unl,unl,unl,She paints a piece of furniture next to her while also holding up a brush.,She\nanetv_BJWL_X79HRc,1799,Several men dreassed in lacrosse gear run onto a field. The opposing teams,\"are shown in several clips, fighting and hitting the ball into each other's goals.\",meet in the field on the paintball field.,engage laughing and trying to win the scene.,are shown watching the game.,stay around and jump lacrosse.,gold0-reannot,pos,unl,unl,unl,unl,Several men dreassed in lacrosse gear run onto a field.,The opposing teams\nanetv_MSfIKwQhLFk,5016,They wave at the camera and smile. The other swimmers,get to the finish line.,run along the street.,sweep the sunset knife back and forth from 20 seconds.,ride out from behind the boat.,look into the mirror and leave the pool.,gold1-orig,pos,unl,unl,unl,pos,They wave at the camera and smile.,The other swimmers\nanetv_MSfIKwQhLFk,5015,A person reaches the end and takes their goggles off. They,wave at the camera and smile.,ride it to a choppy river.,lob it back and forth.,drag themselves into the water.,,gold0-orig,pos,unl,pos,pos,n/a,A person reaches the end and takes their goggles off.,They\nanetv_MSfIKwQhLFk,5014,People dive into the pool and start swimming. A person,reaches the end and takes their goggles off.,is swinging into a dive pool.,falls face down in the pool.,is hitting a diving board with an object.,picks up a ball and hits it into the water.,gold0-orig,pos,unl,unl,unl,pos,People dive into the pool and start swimming.,A person\nanetv_dQyZheN0Fw0,8707,A woman bends down and puts something on a scale. She then,slides across the ice.,places glitter over the hoop.,uses a large device as well.,lifts weights up to her head and then puts her hands on the two girls.,puts down the combing and cleans down the polish.,gold0-orig,unl,unl,unl,unl,unl,A woman bends down and puts something on a scale.,She then\nanetv_V5MvrOzQWZo,5067,A gymnast is standing near a bar with her hands in the air. The girl,gets on the bar and performs.,does a handstand and lands on a far back.,waves her hands as she does push backflips while sitting.,jumped and jumped and danced on the floor.,\"spins a beam doing flips, flips, bounce and handsprings on the beam.\",gold0-orig,pos,unl,unl,pos,pos,A gymnast is standing near a bar with her hands in the air.,The girl\nanetv_V5MvrOzQWZo,5072,\"The girls flips, then runs, flips and dismounts. The cloud\",claps as she walks away.,is measured together one by one.,\"drops and clears, following them down.\",raises on the ground.,becomes a replay of the gymnast.,gold1-orig,pos,unl,unl,unl,unl,\"The girls flips, then runs, flips and dismounts.\",The cloud\nanetv_V5MvrOzQWZo,5069,The girl flips on the bar. The girl,performs 2 flips and almost falls off the bar.,picks up a selfie can and shows her jump.,does receive her hands up in preparation.,climbs on and alternates between bars.,swings the rod upright onto the double bars.,gold1-orig,pos,unl,unl,pos,pos,The girl flips on the bar.,The girl\nanetv_V5MvrOzQWZo,5071,The girl does 2 perfect flips. The girls,\"flips, then runs, flips and dismounts.\",flip their curlers in the air and skip.,watch the girls coaches and other girls while in a locker room with white painted beams.,\"drop bikes on the ground, then continue to ride the skateboard and help each other.\",dismounts and lands on the mat.,gold0-reannot,pos,unl,unl,unl,pos,The girl does 2 perfect flips.,The girls\nanetv_XU8FzYcRat4,10434,A small group of men are seen standing on a sandy field hitting a ball back and fourth. The men,begin a game of volleyball and hit the ball all around the area.,continue kicking around the game while others walk around and ends with one man bending up and grabbing them.,continue walking around and continuously hitting one another while picking up shots.,continue pulling a ball in the net and standing with their hands down the middle.,follow the ball back and fourth while still speak to the camera and moving on.,gold1-orig,pos,unl,unl,unl,unl,A small group of men are seen standing on a sandy field hitting a ball back and fourth.,The men\nanetv_XU8FzYcRat4,10435,The men begin a game of volleyball and hit the ball all around the area. The men,continue playing while the camera captures them moving around.,continue kicking a ball around sticks and leads into people hitting the ball and looking off into the distance.,continue shooting the ball while others watch on the side.,continue hitting the ball all around the room while a woman watching them play.,continue playing a game with one another while pausing to speak to the audience.,gold1-orig,pos,unl,unl,pos,pos,The men begin a game of volleyball and hit the ball all around the area.,The men\nanetv_grroBKRxAMY,17351,A man is talking while standing outside in front of a hill. The man,is holding a shovel standing in front of a small tree.,uses tools as a ski mask.,is skiing down a slope as his head in the river.,uses a tool to paint the fence.,,gold0-orig,pos,unl,unl,pos,n/a,A man is talking while standing outside in front of a hill.,The man\nanetv_grroBKRxAMY,17352,The man is holding a shovel standing in front of a small tree. The man,continues talking and then shovels out some weeds and dirt around the tree.,cuts the mulch and shows off his website.,talks to the camera as he then moves the lawn mower with his left foot.,\"watches two other shots at the night, then leaves them standing near a tree on the ground.\",shovels smoke out of the snow.,gold0-orig,pos,unl,unl,unl,unl,The man is holding a shovel standing in front of a small tree.,The man\nanetv_grroBKRxAMY,17350,Words are shown on the screen. A man,is talking while standing outside in front of a hill.,demonstrates how to use the shisha on the ski.,is shooting at a side pass fields in the background.,stands nearby and yells to a camera.,is riding a bike in a bridge area.,gold1-orig,pos,unl,pos,pos,pos,Words are shown on the screen.,A man\nanetv_grroBKRxAMY,17353,The man continues talking and then shovels out some weeds and dirt around the tree. He,picks up rocks from around the tree.,places the person onto the ground to signal the results.,reaches over a pile of snow and picks up a small piece of chalk.,begins to go around and begins recreational a path.,resumes talking to the camera while taking a platform and standing on the grass.,gold0-orig,pos,unl,unl,unl,unl,The man continues talking and then shovels out some weeds and dirt around the tree.,He\nanetv_grroBKRxAMY,17354,He picks up rocks from around the tree. There,is a white bucket in front of him of bark that he puts around the tree.,are gathered together by a narrow cemetery.,are polite in the parking lot.,them their tarp upside down.,,gold0-reannot,pos,unl,unl,unl,n/a,He picks up rocks from around the tree.,There\nanetv_TDROfnEk0NQ,4461,This video teaches viewers how to shave a beard from your face. The man shaves using the cream on his face and he,removes most of his facial hair.,\"sets it down, continuously to put it underneath until he marks the various features.\",shows us inquisitively then he shaves his eyelids.,demonstrates how to use the workouts on the long hair.,,gold1-orig,pos,unl,unl,unl,n/a,This video teaches viewers how to shave a beard from your face.,The man shaves using the cream on his face and he\nanetv_TDROfnEk0NQ,4462,The man shaves using the cream on his face and he removes most of his facial hair. Then he,adds more shaving cream to his face and takes it off again to shave with an electric razor.,demonstrates how to measure all the moves and wipes the wall countertop with his hands.,puts mascara on his foot and cleans his face again.,takes the comb to wash on level gestures and then straight before combing the piece of hair and pushing it tight to shaver.,\"applies a shaving very's face and shows different angles of the shaving shave using various tools, and over techniques.\",gold1-orig,pos,unl,unl,unl,pos,The man shaves using the cream on his face and he removes most of his facial hair.,Then he\nanetv_TDROfnEk0NQ,9961,A man is seen looking off into the distance and begins rubbing razor on his face. The man,plays the video in reverse to look as if he's putting shaving cream on with the razor.,continues the blow in his hair while still looking away from the camera.,continues to tighten up the wall while looking at the camera again.,continues speaking and leads into him shaving his head.,,gold1-orig,pos,unl,unl,pos,n/a,A man is seen looking off into the distance and begins rubbing razor on his face.,The man\nanetv_TDROfnEk0NQ,9962,The man plays the video in reverse to look as if he's putting shaving cream on with the razor. The men then,uses a different razor to put more hair on his face and smile to the camera.,take their eyes as they head down and continue tattooing them before continuing to dance in the end.,begin skateboarding in and out of the barber shop.,give him a thumbs up and continue shaving them.,begin shaving and puts a hand on the shaving cream as well as blends it until he's done shaving.,gold0-reannot,pos,unl,unl,unl,pos,The man plays the video in reverse to look as if he's putting shaving cream on with the razor.,The men then\nanetv__ucD-3rUWWE,1915,\"The second person begins to kayak and goes ferociously down the next steep hill of rocks and waits. Shortly after, the man in the blue jacket\",follows suit and comes behind them.,helps people while lowering his boat arms.,\"drops, then take off more skis and then go snow skiing.\",jumps up and waves his arms up.,leans a bit further under the monkey bars.,gold1-orig,pos,unl,unl,unl,unl,The second person begins to kayak and goes ferociously down the next steep hill of rocks and waits.,\"Shortly after, the man in the blue jacket\"\nanetv__ucD-3rUWWE,1916,\"Shortly after, the man in the blue jacket follows suit and comes behind them. Lastly, they\",take two pictures with the forest as back drop near a brown sign with white words reading great falls overlook.,\"notice the winding bumpy road in the upper river at once fast gaining speed, mystified by a series of traffic cones.\",pass a lake large concrete doors which made graceful explore cones while another take their seats in the stands.,stand outside as he plays.,are letting the next tow truck with a ski lift.,gold0-orig,pos,unl,unl,unl,unl,\"Shortly after, the man in the blue jacket follows suit and comes behind them.\",\"Lastly, they\"\nanetv__ucD-3rUWWE,1914,They begin to move to their left and fall over the first hill of large rocks and meet in the corner and begin talking. The second person,begins to kayak and goes ferociously down the next steep hill of rocks and waits.,\"on poster pans her along one side, her bellowing to the rest of the video.\",\"dives down a hill before going in deep water on lathered side - recovers and performing them, the other way to play team.\",gets in to the other bike and gets on the car again and follow their shoes on the sand.,circles the girl and the injured girl jumps on the ground and flips into the water while another coach watches from the side while people,gold0-orig,pos,unl,unl,unl,unl,They begin to move to their left and fall over the first hill of large rocks and meet in the corner and begin talking.,The second person\nanetv_yVK-GMdc9UA,7906,He is ironing clothes on an ironing board. He,flips the clothes over and irons the other side.,tries to rub the dirt.,pours the bottle onto the glass.,demonstrates how to iron a pair of boots.,,gold1-orig,pos,unl,unl,unl,n/a,He is ironing clothes on an ironing board.,He\nanetv_yVK-GMdc9UA,7905,A man is smiling at the camera. He,is ironing clothes on an ironing board.,sits with the red with various images of him holding and taking balls.,is welding a piece of metal.,is narrating the action.,is playing the instrument harmonica.,gold1-orig,pos,unl,pos,pos,pos,A man is smiling at the camera.,He\nlsmdc3068_THE_BIG_YEAR-3386,3586,\"Gazing over someone's shoulder, someone notices someone. They\",\"hurry after someone, who disappears into some trees.\",substance a ball down over someone's head.,try to get up.,gaze coyly then his young colleague.,dance in a circular flower.,gold1-orig,pos,unl,pos,pos,pos,\"Gazing over someone's shoulder, someone notices someone.\",They\nlsmdc3068_THE_BIG_YEAR-3386,3587,\"They hurry after someone, who disappears into some trees. As other birders look through binoculars and snap photos, someone\",rushes past them and briefly eyes a bird on a tree.,throws a shield against the wall.,shoots the flame inside the dome.,collects his time atop the rock.,is shown a young kid in a studio magazine.,gold0-orig,pos,unl,unl,unl,unl,\"They hurry after someone, who disappears into some trees.\",\"As other birders look through binoculars and snap photos, someone\"\nlsmdc3068_THE_BIG_YEAR-3386,3591,She sees him and he waves. Someone,steps into his line of sight.,looks to someone who holds a pose.,glances across the banquet and looks at the family wistfully.,\"looks over, scowls, then wheels back away.\",makes an amazing shot through the glass.,gold1-orig,pos,unl,unl,unl,unl,She sees him and he waves.,Someone\nlsmdc3068_THE_BIG_YEAR-3386,3583,\"Racing to the front of the crowd, someone crosses in front of a cameraman filming a reporter. He\",shoves past two men.,takes his bow at the points and points at it in the beginning.,zooms down on his bloody body.,moves quickly to the window and sees his driver aims.,stops turning and turns off.,gold0-orig,pos,unl,unl,unl,unl,\"Racing to the front of the crowd, someone crosses in front of a cameraman filming a reporter.\",He\nlsmdc3068_THE_BIG_YEAR-3386,3590,\"As they continue after someone, all of three of their tallies appear, counting up past 300. Through his binoculars, someone\",\"follows a bird, then spots the pretty brunette from the boat.\",\"notices his line, stands on the davenport, gazing toward a grassy garden, furnished in a every desolate path.\",sees someone at a hotel table separating someone from him.,scans the feet of a building and shuts his bag.,sees a weird face.,gold1-orig,pos,unl,unl,pos,pos,\"As they continue after someone, all of three of their tallies appear, counting up past 300.\",\"Through his binoculars, someone\"\nlsmdc3068_THE_BIG_YEAR-3386,3588,\"Someone and someone stop as well to see the little yellow bird. Slowing his pace, someone briefly\",peers through his binoculars.,steers the board away from the dirt floor.,puts the abandoned root into the trash and forces it against the sun tub.,finishes keeping the ingredients all over the man and proceeds to demonstrate one to use.,approaches him as he crosses the fence.,gold0-orig,pos,unl,unl,unl,pos,Someone and someone stop as well to see the little yellow bird.,\"Slowing his pace, someone briefly\"\nlsmdc3068_THE_BIG_YEAR-3386,3589,\"Someone and someone arrive a moment later. As they continue after someone, all of three of their tallies appear,\",counting up past 300.,only eight feet away drops.,held in their hands and a dog's tails.,like to be frosts made from more damage.,,gold1-orig,unl,unl,unl,unl,n/a,Someone and someone arrive a moment later.,\"As they continue after someone, all of three of their tallies appear,\"\nlsmdc3068_THE_BIG_YEAR-3386,3579,\"Later, the three birders talk on their cells. A red line on a map\",tracks someone's progress to high island.,reflects reads j. snowy's cabin.,lies in the desert before it passes again.,float to their tiny monkeysee center.,reads 7: 13.,gold0-orig,pos,unl,unl,unl,pos,\"Later, the three birders talk on their cells.\",A red line on a map\nlsmdc3068_THE_BIG_YEAR-3386,3581,\"Someone gets out of his car. Climbing out of his vehicle, someone\",breaks into a smile.,puts on his helmet.,knocks on the door.,looks over the windscreen but finds nothing to be seen.,,gold1-orig,pos,pos,pos,pos,n/a,Someone gets out of his car.,\"Climbing out of his vehicle, someone\"\nlsmdc3068_THE_BIG_YEAR-3386,3584,He shoves past two men. He,\"flips them off as he gazes through his binoculars, then heads away.\",\"looks up from his typewriter, reaches over a bag and grasps someone's hand, then heads inside.\",\"lies motionless in the car, hands on either side of him.\",\"blinks slowly, then rests his head against someone's shoulder.\",,gold1-reannot,pos,unl,unl,unl,n/a,He shoves past two men.,He\nlsmdc3068_THE_BIG_YEAR-3386,3582,\"Birds fill the sky above the trees, speckling it with clusters of black dots. Racing to the front of the crowd, someone\",crosses in front of a cameraman filming a reporter.,types in on - leading with the group and climbs spiral ski in every time.,watches jive with someone.,\"watches as she walks past a column of sharks and splits from the trees, and buildings around the central basket.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"Birds fill the sky above the trees, speckling it with clusters of black dots.\",\"Racing to the front of the crowd, someone\"\nlsmdc3068_THE_BIG_YEAR-3386,3580,A red line on a map tracks someone's progress to High Island. Someone,gets out of his car.,named someone's phone hangs.,touches down into the table and the children stare at each other.,darts out out the rear window.,watches more as he heads out of the pool.,gold1-reannot,unl,unl,unl,unl,unl,A red line on a map tracks someone's progress to High Island.,Someone\nanetv_DHfiz3MNbcc,10540,A young lady with burnette hair is standing behind a black counter in a bar with several alcohol on it. She then,grabs a clear glass and puts ice in it.,pours the alcoholic water into the glass and begins to pour some liquid into the glass with two knees.,pours mayonnaise into a pitcher of whiskey and pierces the remaining glass with a black pitcher.,takes a drink and then drinks it with a glass.,,gold0-reannot,pos,unl,unl,unl,n/a,A young lady with burnette hair is standing behind a black counter in a bar with several alcohol on it.,She then\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95835,12442,\"One of the slobbering heads is so enormous, it completely fills the doorway. They\",slam the door shut.,\"propel the hummer, and sweep their way on the city.\",\"mill past someone, who sits slumped, picking up.\",stand at each other.,join someone and someone throughout the room.,gold0-orig,pos,unl,unl,unl,unl,\"One of the slobbering heads is so enormous, it completely fills the doorway.\",They\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95835,12441,The children rush for the door. One of the slobbering heads,\"is so enormous, it completely fills the doorway.\",to a restaurant dining room.,for the officer to jump out.,down to reveal someone who is lying on the floor crying.,in for the kitchen and someone bursts in.,gold0-orig,pos,unl,unl,unl,unl,The children rush for the door.,One of the slobbering heads\nanetv_Zhfm2dWtnpc,6140,Some people are crawling around in the background on the floor. The man,finishes the routine and then runs over to hug a woman.,picks up his skateboard with his rear hand while a man outside the background watches him furiously.,demonstrates how to do the steps off the hammers.,cleans something from the wall and drags the woman around him.,does an arm kick as crowds get below him.,gold0-reannot,pos,unl,unl,unl,unl,Some people are crawling around in the background on the floor.,The man\nlsmdc0010_Frau_Ohne_Gewissen-51566,18036,\"Someone picks up the telephone on his desk and speaks into it. Meanwhile, someone crosses over to someone and, during the ensuing dialogue between him and someone, we\",hear someone 'low voice on the phone in background.,hurtle back through the grand gate.,don't hear a rumble.,see her eyeliner one feet away.,see that he is.,gold0-orig,pos,unl,unl,unl,unl,Someone picks up the telephone on his desk and speaks into it.,\"Meanwhile, someone crosses over to someone and, during the ensuing dialogue between him and someone, we\"\nlsmdc3040_JULIE_AND_JULIA-17836,8145,She browses pastries then tastes a pair. Someone,brings a mortar and pestle.,looks someone from water filling.,goes off into the house.,stuffs a chipped freezer top.,slides off her shoes.,gold1-orig,pos,unl,unl,unl,unl,She browses pastries then tastes a pair.,Someone\nlsmdc3092_ZOOKEEPER-45235,708,Someone heads to a van in a maintenance lot. Someone,\"follows, now wearing a yellow polo.\",stops to expose someone's ass.,has entered the living room and gets stairs to home.,watches tv as someone talks about a couple.,,gold0-orig,pos,unl,unl,unl,n/a,Someone heads to a van in a maintenance lot.,Someone\nlsmdc0021_Rear_Window-59080,18957,\"He grips the flash holder a little more tightly, lifts it just the fraction of an inch as if he is prepared to use it. Someone\",\"has advanced to the middle of the room, his eyes on someone and his hands clenching with the effort to control his anger.\",peers at his mugshot earlier.,is stunned on this scene.,swerves off his light and then faces someone with angry eyes.,,gold1-orig,pos,unl,unl,pos,n/a,\"He grips the flash holder a little more tightly, lifts it just the fraction of an inch as if he is prepared to use it.\",Someone\nlsmdc0021_Rear_Window-59080,18956,Someone still does n't speak. He,moves forward a couple of steps.,hurries someone to the green truck outside.,looks surprised when someone looks down.,drops big towel on the table.,knocks someone's nose.,gold0-reannot,pos,unl,unl,unl,unl,Someone still does n't speak.,He\nanetv_x_FAc0KqMVw,2107,\"Hello, We are guitar unit okabayashi. The men\",talk about the guitar.,bend down to put a match on their telephone neck and finish them both off.,are in the net.,are playing a song on the teams.,,gold0-orig,pos,unl,unl,unl,n/a,\"Hello, We are guitar unit okabayashi.\",The men\nanetv_x_FAc0KqMVw,2108,The man on the left describes his guitar. The men,begin to play the guitars.,engage in martial arts gear.,begin playing the cricket drum cymbals.,continue dancing together with a logo as film volume jots instruments for the accordion in park.,,gold0-orig,pos,unl,unl,unl,n/a,The man on the left describes his guitar.,The men\nanetv_x_FAc0KqMVw,2109,The men begin to play the guitars. They,finish the song and look at the camera.,are talking to the song area.,set it up to look through the other.,hold the same dancing motions as they tap.,,gold1-orig,pos,unl,unl,pos,n/a,The men begin to play the guitars.,They\nanetv_x_FAc0KqMVw,7826,Two people are sitting in chairs holding acoustic guitars. They,begin to play the guitars.,stop playing and partying with one another.,continue playing together while the rafters perform their karate moves.,\"continue singing, very to be singing, and singing.\",are seated in a court with another couple musicians with a keyboard or playing.,gold0-orig,pos,unl,unl,pos,pos,Two people are sitting in chairs holding acoustic guitars.,They\nanetv_x_FAc0KqMVw,7827,They begin to play the guitars. They,stop playing and set the guitars on their laps.,continue to create various angles.,continue playing the board.,quickly come to the bottom.,take the flute and ride them.,gold0-orig,pos,unl,unl,unl,unl,They begin to play the guitars.,They\nanetv_t_2jTjX3a_o,6591,A countdown is shown followed by a woman catching balls thrown at her. The number,counts down more and shows more clips of women playing dodgeball.,comes to the end and begins playing with her while looking into the camera.,keeps running with other people as they walk along the ramp.,are then shown several other venues hooping on to the ground.,changes into closeups and attempts to make a kit.,gold0-orig,pos,unl,unl,unl,unl,A countdown is shown followed by a woman catching balls thrown at her.,The number\nanetv_t_2jTjX3a_o,6592,The number counts down more and shows more clips of women playing dodgeball. Several more numbers and clips,are shown ending with people performing impressive throws.,are shown of people sitting on several bikes in the store as well as up.,are shown of people practicing walk.,are shown with people shredded shots putting raspberries in one person.,,gold0-orig,pos,unl,unl,unl,n/a,The number counts down more and shows more clips of women playing dodgeball.,Several more numbers and clips\nanetv_8GeLWWLIar4,16337,We see the man perform a leg sweep move. We,see an animated close scene and a subscribe page.,see a ballerina in the crowd.,see the practice title.,see the man wake up.,\"see the camera zoom as the man and second man run around him, then lay down the plaster.\",gold1-orig,pos,unl,unl,unl,unl,We see the man perform a leg sweep move.,We\nanetv_8GeLWWLIar4,16333,We see the man sitting on the floor talking to a camera. We,see the man illustrating break dance moves.,dock is being driven on a car.,see a man break stage.,see the man and the pumpkins inside.,see men cutting a pumpkin off into a sunny yard.,gold0-orig,pos,unl,unl,unl,unl,We see the man sitting on the floor talking to a camera.,We\nanetv_8GeLWWLIar4,16336,We see the man dance fast. We,see the man perform a leg sweep move.,see the weight lifter lifting legs.,see the girl interviewed and see him again.,see the interrogator and work the movements of his wrists.,see a cameraman perform as he spins on a blue mat.,gold0-orig,pos,unl,unl,unl,pos,We see the man dance fast.,We\nanetv_8GeLWWLIar4,16332,We see a dancing man on the cover of a book then on a street. We,see the man sitting on the floor talking to a camera.,see a lady get the balls to kick and make them stop.,see a tattoo on his left hand again.,\"see the lady in a blue shirt, talking to a camera.\",see a closing title screen.,gold0-reannot,pos,unl,pos,pos,pos,We see a dancing man on the cover of a book then on a street.,We\nanetv_8GeLWWLIar4,16335,The man is talking and sitting still. We,see the man dance fast.,cleans the machine and he takes a hose and films a pot on the pool but he blows it over.,see the professional body giving the high five to the other.,\"is following the director of the car, moving a fishing stick in the net.\",,gold1-reannot,pos,unl,unl,unl,n/a,The man is talking and sitting still.,We\nlsmdc1062_Day_the_Earth_stood_still-100940,12775,\"He is about to leave, when he notices the old drill bit. It\",'s being eaten away.,\"'s pretty good - only, almost really staggering.\",takes the gun out of the pocket of the cap so he does n't see anyone.,'s up as a policeman knocking out a sunglasses cup.,moves on different ways to create wall shapes.,gold0-orig,pos,unl,unl,unl,unl,\"He is about to leave, when he notices the old drill bit.\",It\nlsmdc1062_Day_the_Earth_stood_still-100940,12776,It's being eaten away. He,drops it and hurriedly makes to leave the chamber.,digs a spoon through a hole in a large silver spoon.,\"watches someone climb into the cab, saw through a bloody hole in the ground.\",\"walks up to someone, his brow furrowed.\",,gold1-reannot,pos,unl,unl,pos,n/a,It's being eaten away.,He\nanetv_m4ef0fCA2WU,10835,A young woman holding a baby walks to a swing and puts the baby in the swing. She then,walks in front of the baby and sits in the adult seat attached to the baby swing.,dismounts and goes onto the water for the baby.,grabs an ax and swings herself out and down.,rolls cracked and falls down to the ground.,spins and flips one times and then laughs in the end.,gold0-orig,pos,unl,unl,unl,unl,A young woman holding a baby walks to a swing and puts the baby in the swing.,She then\nanetv_m4ef0fCA2WU,10833,Children of different ages are playing on a playground. A couple of women,are in the playground area talking.,are climbing monkey bars on the playground.,are dancing on front a set of monkey bars.,are in front of the house watching.,are standing next to a playground in a playground.,gold0-orig,pos,unl,unl,unl,unl,Children of different ages are playing on a playground.,A couple of women\nanetv_m4ef0fCA2WU,10837,Another woman walks past with a few kids. The woman on the swing,swings the baby while talking to him and making faces at him.,arrives after the woman is interviewed.,throws her hair up and nuzzles to her ear.,speaks to the audience.,walks up talking to the camera again.,gold0-orig,pos,unl,unl,unl,pos,Another woman walks past with a few kids.,The woman on the swing\nanetv_m4ef0fCA2WU,10834,A couple of women are in the playground area talking. A young woman holding a baby,walks to a swing and puts the baby in the swing.,scans the woman with her dogs.,is guiding the woman.,sits beside her on the swing set.,sits beside a woman.,gold0-orig,pos,unl,pos,pos,pos,A couple of women are in the playground area talking.,A young woman holding a baby\nanetv_m4ef0fCA2WU,10836,She then walks in front of the baby and sits in the adult seat attached to the baby swing. Another woman,walks past with a few kids.,comes down the slide.,\"walks down a slide, speaking to a baby in a white shirt while holding the baby.\",sits on the floor oblivious.,walks past the slide holding its poles as they sit on the floor.,gold0-orig,pos,unl,unl,unl,unl,She then walks in front of the baby and sits in the adult seat attached to the baby swing.,Another woman\nanetv_ERcMdKNF_pc,17717,A gymnast prepares to mount a beam. He,\"mounts, then spins and flips several times.\",mounts the beam and dismounts.,dismounts and lands on the mat.,stands up on the beam and mounts the beam.,dismounts and lands on the grass.,gold0-orig,pos,unl,unl,unl,unl,A gymnast prepares to mount a beam.,He\nanetv_ERcMdKNF_pc,17718,\"He mounts, then spins and flips several times. He\",\"dismounts, raising his arms into the air.\",\", quickly celebrates, catching the bow then puts it on a game stand to take his place.\",releases the jump at the olympics challengingly.,\"gets to the end then stretches his rope, jumping high on his knees.\",performs several different backflips before he lands on the mat in slow motion.,gold0-orig,pos,unl,unl,unl,pos,\"He mounts, then spins and flips several times.\",He\nanetv_LmioUbGNv04,1072,A man is seen kicking another man holding a mat. People behind him,practice as he continues to kick.,swim around and watch him get his shirt up.,watch spinning the boy off stage.,approach the ball along.,watches them walk up the steps.,gold0-orig,pos,unl,unl,unl,unl,A man is seen kicking another man holding a mat.,People behind him\nanetv_LmioUbGNv04,1073,People behind him practice as he continues to kick. The man,kicks the other over and over.,demonstrates all and how to balance an angle as the continue to swing.,left the teams right in the eye as the boy practices karate kicks.,demonstrates the length of a very block with the croquet pucks.,continues to ride around a ramp and then leaps on the mat while continuing in gymnastics moves.,gold0-orig,pos,unl,unl,unl,pos,People behind him practice as he continues to kick.,The man\nanetv_LmioUbGNv04,9463,The man holds up a mat in his arms and another man kicks the mat. The other,continues kicking and ends by fading to black.,coach gives him a high five.,man smells his leg and screws while another man comes around.,wrestler grabs the opponent and walks away.,man kicks the ball across the mat.,gold0-orig,unl,unl,unl,unl,unl,The man holds up a mat in his arms and another man kicks the mat.,The other\nanetv_xabaKyhx7cg,20021,A man begins scrubbing the shoes with a brush. the man,places the shoes in a bag and puts the bag in a washing machine.,brushes his teeth with a wet rag and begins wiping off camera.,then rubs water over the man's face to scrub it clean.,removes the shoe from the bowl with.,,gold0-orig,pos,unl,unl,pos,n/a,A man begins scrubbing the shoes with a brush.,the man\nanetv_xabaKyhx7cg,20020,Dirty sneakers are shown next to some show products. a man,begins scrubbing the shoes with a brush.,is using hair extensions that is addressed with a dog.,trains some of the works to brush a wall.,eats from a clear trimmed brush.,,gold0-orig,pos,unl,unl,unl,n/a,Dirty sneakers are shown next to some show products.,a man\nanetv_xabaKyhx7cg,730,\"They fill up a tin of water, pour polish inside, and then scrub the outside of the shoes. He\",pulls out of a bag to put the shoes in and throws the bag into a washing machine.,ends with the final product afterwards adding it onto the dish.,sprays the paper bucket and put it by the bucket.,studs the hair and the beard fetch.,\"begins to scrub the spoon on the sink, rinsed in the water, and heads off.\",gold0-orig,pos,unl,unl,unl,unl,\"They fill up a tin of water, pour polish inside, and then scrub the outside of the shoes.\",He\nanetv_xabaKyhx7cg,731,He pulls out of a bag to put the shoes in and throws the bag into a washing machine. He finally,pulls the new shoes out of the bag and pans around the shoes to show how clean they look.,shows the bike out to the man and helmet scrapes and discusses and shows off to paint.,paints a different wall and starts to remove his shoe.,\"demonstrates passing over the parts for a second, and empties up his bags.\",,gold0-orig,pos,unl,unl,pos,n/a,He pulls out of a bag to put the shoes in and throws the bag into a washing machine.,He finally\nanetv_xabaKyhx7cg,729,A close up of sneakers and polish is shown followed by a person's hands putting objects into shoes. They,\"fill up a tin of water, pour polish inside, and then scrub the outside of the shoes.\",are seen falling along the floor as well as laying down and laying a shoe.,begin demonstrating how to move paper and cleans the floor.,all began applying clothes makeup to the back and pointing to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,A close up of sneakers and polish is shown followed by a person's hands putting objects into shoes.,They\nlsmdc3022_DINNER_FOR_SCHMUCKS-10558,4433,Someone hangs up and looks thoughtful. The Porsche,pulls up in front of someone's palatial home.,is airborne with a tense look.,\"strokes the man's face, grabs him, and grabs someone's shoulder.\",woman gently licks the rug.,,gold0-orig,pos,unl,unl,unl,n/a,Someone hangs up and looks thoughtful.,The Porsche\nanetv_6E4_XOsT89k,7441,A person is standing on top of a high diving board. They,jump off and do flips into the water.,swim along the hole with the fish.,swim from side to side.,make several dive in the water.,bend in to a line to dance boards.,gold0-orig,pos,unl,unl,unl,unl,A person is standing on top of a high diving board.,They\nanetv_6E4_XOsT89k,7442,They jump off and do flips into the water. The crowd,watches the person dive.,goes down the beam.,is laughing for the video.,continue and shake hands.,watches on the side.,gold0-orig,pos,unl,unl,unl,pos,They jump off and do flips into the water.,The crowd\nlsmdc0010_Frau_Ohne_Gewissen-51027,13676,\"First we see her feet, with pom - pom slippers and the gold anklet on her left ankle. Camera\",\"pulls back slowly as she descends, until we see all of her.\",comes back and plays with her right hand.,gets herself in in a nice position.,lady is walking in the middle of the lot.,,gold0-orig,pos,unl,unl,unl,n/a,\"First we see her feet, with pom - pom slippers and the gold anklet on her left ankle.\",Camera\nlsmdc0010_Frau_Ohne_Gewissen-51027,13677,\"Camera pulls back slowly as she descends, until we see all of her. She\",is wearing a pale blue summer dress.,notices a sweet low - cheeked girl in a sketchbook.,turns and can hear her voice come out of the door.,closes the door and check it in her pocket.,\"lies back stoically, hands against his bach barrel.\",gold1-orig,pos,unl,unl,unl,unl,\"Camera pulls back slowly as she descends, until we see all of her.\",She\nlsmdc0010_Frau_Ohne_Gewissen-51027,13672,Maid goes off the other way. Someone,comes into the room and throws his briefcase on the plush davenport and tosses his hat on top of it.,turns through the mist and peers down the hallway.,picks the tray's coffee off and leaves.,fills the bar bag with money.,,gold1-orig,pos,unl,unl,pos,n/a,Maid goes off the other way.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51027,13675,His back is to the archway as he hears high heels clicking on the staircase. He,turns and looks through the arch.,approaches the plastic door and his feet sticking through it.,\"slips it from her mouth, slips it open, and inserts a button on her pants.\",\"leans toward the cottage door and falls down, with a sigh.\",\"stops for a moment, then whispers to the camera.\",gold0-orig,pos,unl,unl,pos,pos,His back is to the archway as he hears high heels clicking on the staircase.,He\nlsmdc0010_Frau_Ohne_Gewissen-51027,13670,He speaks to the maid while still looking up. He,goes through the archway.,uses the thermometer to his ear.,lets go of them when they turn the water and walk away.,has entered the day.,\"leans forward, toward someone.\",gold0-orig,pos,unl,unl,unl,pos,He speaks to the maid while still looking up.,He\nlsmdc0010_Frau_Ohne_Gewissen-51027,13678,He crosses to the davenport to get the policies from his briefcase. She,\"turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible.\",works out at the computer.,removes his glasses and glances down as someone stomps out from the front seat.,holds his for a few moments before he leaves the house.,walks towards the desk where the silver saw has been.,gold0-orig,pos,unl,unl,unl,unl,He crosses to the davenport to get the policies from his briefcase.,She\nlsmdc0010_Frau_Ohne_Gewissen-51027,13674,His eyes fall on a wrinkled corner. His back,is to the archway as he hears high heels clicking on the staircase.,\"troubled, he rises toward the camera.\",begins to twitch as he watches someone.,is obscured in one open.,is covered in sincere blood.,gold1-orig,pos,unl,unl,unl,unl,His eyes fall on a wrinkled corner.,His back\nlsmdc0010_Frau_Ohne_Gewissen-51027,13679,\"She turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible. Someone\",smiles faintly and covers the anklet with her dress.,is heavily bandaged asleep.,\"very slender, someone is in the light of her life.\",is awakened.,is spotted by the article under the photos.,gold0-orig,pos,unl,unl,unl,unl,\"She turns away from the mirror and sits in a big chair with her legs drawn up sideways, the anklet now clearly visible.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51027,13673,Someone walks away from the piano and takes a few steps back and forth across the rug. His eyes,fall on a wrinkled corner.,\"level, he uses his hand to groom the cat's arm.\",focus on someone as the flames change facing someone's face.,\"are close on the music, his feet set in the rhythm of his feet.\",\"shine on the distant gray light surrounded by swirling storm clouds, leaving a clear sky across the living room.\",gold1-orig,unl,unl,unl,unl,unl,Someone walks away from the piano and takes a few steps back and forth across the rug.,His eyes\nanetv_V1NtrnPz3sA,14246,She spins around throwing the ball yet again with a third throw followed shortly after. She,performs one last throw and spins herself around once again.,joins in by throwing throwing darts.,hits the pinata with her hand and pulls around.,continues moving the mop back and fourth.,,gold0-orig,pos,unl,unl,unl,n/a,She spins around throwing the ball yet again with a third throw followed shortly after.,She\nanetv_V1NtrnPz3sA,14245,She throws the ball and again prepares for another throw. She,spins around throwing the ball yet again with a third throw followed shortly after.,is audible and a few times to drop her dress.,\"scores and scores more cheers, but the girl in the long game helps become little how to turn a ball around the net and\",looks at the camera again.,hits the pinata and throws the ball onto the beach.,gold0-orig,pos,unl,unl,pos,pos,She throws the ball and again prepares for another throw.,She\nanetv_V1NtrnPz3sA,14244,An athletic woman is stretching with a ball and swinging her legs back and fourth. She,throws the ball and again prepares for another throw.,continues running around jumping and ends with him jumping off the mat.,continues swinging the rope several times and pulling the rope.,gets up and walks away from the camera.,,gold0-orig,pos,unl,unl,pos,n/a,An athletic woman is stretching with a ball and swinging her legs back and fourth.,She\nanetv_QQNW2ha8WIs,9367,The boy jumps and catches the doll and slams it between his legs on the trampoline. The boy,misses trying to catch the doll and falls on the trampoline.,swings several times and then begins to practice with its body again.,slides the scissors through the man's nails.,leans up and hits the ball.,,gold0-orig,pos,unl,unl,unl,n/a,The boy jumps and catches the doll and slams it between his legs on the trampoline.,The boy\nanetv_QQNW2ha8WIs,9366,The boy falls back and lands on his back on the trampoline. The boy,jumps and catches the doll and slams it between his legs on the trampoline.,returns the rolled up into the weights and lifts it over his head.,stops playing for the boy.,slides out of the frame as the wall continues to take.,celebrates and claps for his helper.,gold0-orig,pos,unl,unl,unl,unl,The boy falls back and lands on his back on the trampoline.,The boy\nanetv_QQNW2ha8WIs,9365,A boy jumps on a trampoline while catching a stuffed doll on his shoulders in the air. The boy,falls back and lands on his back on the trampoline.,sets its head down and smashes the liquor bottle on to cement.,picks up a white sweater and rubs it to the middle of the table.,calls the boy away.,tosses the black darts in the tube.,gold0-orig,pos,unl,unl,unl,unl,A boy jumps on a trampoline while catching a stuffed doll on his shoulders in the air.,The boy\nanetv_Ayix_aDOrzs,6331,The kids sits patiently with a towel on her head and speaking to the camera. A goldfish,is shown followed by a man cutting and styling her hair.,walks towards the boy and starts to weep.,holds a dirty bread while washing him in a sink.,throws her ponytail back.,pulls up cleaning off people's eye and sitting up.,gold0-orig,pos,unl,unl,unl,unl,The kids sits patiently with a towel on her head and speaking to the camera.,A goldfish\nanetv_Ayix_aDOrzs,6332,The man cuts the girl's hair and styles it into an adorable look. The girl,smiles and leaves the hair salon looking happy.,is laying down on the snow covered cake.,stands the french braid the girl styles his hair.,repeats the same with the dogs hair.,applies white strands around the sides of her hair.,gold0-reannot,pos,unl,unl,pos,pos,The man cuts the girl's hair and styles it into an adorable look.,The girl\nanetv_Ayix_aDOrzs,6330,A girl is shown looking at several pictures of hairstyle and leads into another cutting one's hair. The kids,sits patiently with a towel on her head and speaking to the camera.,continues speaking in various pictures and ends with her looking upset.,perform several flips in the water while looking off into the distance and points to the camera.,paints her hair with arms while he shows tapes her hair.,continue holds all her hair and hair looks on the side while still speaking to the camera.,gold1-reannot,pos,unl,unl,unl,unl,A girl is shown looking at several pictures of hairstyle and leads into another cutting one's hair.,The kids\nlsmdc3035_INSIDE_MAN-1866,1982,\"In the bank, the hostages sit in an office. A lanky guy\",removes his hood and mask.,works on the machine.,works up arm students.,urinates in her ring.,holds the stand beside someone and adjusts his posture.,gold1-orig,pos,unl,unl,unl,pos,\"In the bank, the hostages sit in an office.\",A lanky guy\nanetv_YnG1Uhh2h5E,12276,Two young man and a man play pool hitting white balls with a cue stick. The young man,hits balls that land in the pocket of the pool table.,kicks the ball across the karate court.,\"knocks for the ball and hits the ball several times, and knock over a few of the pins.\",\"threw a rod and landed shot while he kicked it again, but paused again.\",hits the ball against the wall with his hands.,gold0-orig,pos,unl,unl,unl,unl,Two young man and a man play pool hitting white balls with a cue stick.,The young man\nanetv_YnG1Uhh2h5E,12278,\"After, the young man strikes the white ball but immidiately stop it with the cue sticks. Next, the young man\",strikes the balls and sends a white ball to a pocket.,takes a shot of the goal and hits a ball from the wall.,\"takes a hit, mops the bar, hammers in.\",applies another the ring.,starts a tennis ball on the field and hits the hopscotch ball out of the stick.,gold0-orig,pos,unl,unl,unl,unl,\"After, the young man strikes the white ball but immidiately stop it with the cue sticks.\",\"Next, the young man\"\nanetv_YnG1Uhh2h5E,12280,\"The man strikes a white ball and send balls in the pocket. At the end, the young man\",puts the ball inside a metal triangle.,picks it up and throw it at another.,throws a ball onto a table and looks at it.,celebrates his walk board with his father.,makes another attempt to hit the ball but it's left by the goal.,gold0-orig,pos,unl,unl,unl,pos,The man strikes a white ball and send balls in the pocket.,\"At the end, the young man\"\nanetv_YnG1Uhh2h5E,12279,\"Next, the young man strikes the balls and sends a white ball to a pocket. The man\",strikes a white ball and send balls in the pocket.,bends down quickly and grabs a shot put.,tries to hit the ball back and forth against the wall by the board cabinet.,throw balls straight up into the air and falls off the field.,points and takes both of your hands.,gold0-orig,pos,unl,unl,unl,unl,\"Next, the young man strikes the balls and sends a white ball to a pocket.\",The man\nanetv_YnG1Uhh2h5E,12277,\"The young man hits balls that land in the pocket of the pool table. Then, the man\",puts the balls in a metal triangle and arrange others balls.,beats the hand holding a bowling ball on the trophies.,highlights the men standing on the end of the game.,runs off with his supporters and both go black and disheveled.,adds ice and bank sweeps over ice wide water.,gold0-reannot,pos,unl,unl,unl,unl,The young man hits balls that land in the pocket of the pool table.,\"Then, the man\"\nlsmdc0013_Halloween-53782,9080,He slowly walks toward it. Camera slowly,tracks in toward the window.,slides off the laser beam and stands silhouetted amidst the teeming rain.,\"moving toward the game below, past the trees.\",sweeps out of frame.,,gold1-orig,pos,unl,unl,pos,n/a,He slowly walks toward it.,Camera slowly\nlsmdc0013_Halloween-53782,9079,Someone just looks at him a moment. Someone,turns and walks out of the bedroom.,\"goes off, leaving the left door ajar.\",\"seems focused, trying to look at the sound of someone's voice from the movie.\",\"shakes his hand, and heads for the door.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone just looks at him a moment.,Someone\nlsmdc0013_Halloween-53782,9081,Camera slowly tracks in toward the window. Someone,stops by the window.,walks along some pipes and begins to increase until it just speeds across the murky flow of the sinks.,\"pokes a cigar box at another, which strains to open.\",opens her right eye.,,gold0-orig,pos,unl,unl,pos,n/a,Camera slowly tracks in toward the window.,Someone\nlsmdc0013_Halloween-53782,9077,Someone walks over to the spot where the sister was sitting. Someone,turns and glances at the window.,skims another to the front.,bends over and kisses him.,stares at someone in shock.,sits at a card table.,gold0-orig,pos,unl,unl,unl,unl,Someone walks over to the spot where the sister was sitting.,Someone\nlsmdc0013_Halloween-53782,9076,They glance at each other. Someone,walks over to the spot where the sister was sitting.,team and guests file out.,beats on the circuit door unlocking.,\"scales the hedges together, then sweeps scrub patches of grass together.\",opens the door and leans his fist against the building.,gold1-reannot,pos,unl,unl,unl,unl,They glance at each other.,Someone\nlsmdc0013_Halloween-53782,9078,Someone turns and glances at the window. Someone just,looks at him a moment.,looks at his reflection in the mirror.,\"stares after him, grinning, but does not look at her.\",looks up at the old man.,stares at them sometimes.,gold1-reannot,pos,pos,pos,pos,pos,Someone turns and glances at the window.,Someone just\nanetv_O2JUUFFdWpk,15066,He picks up a green can and takes a drink. He then,plays rock paper scissors with another man across from him.,rinses his eyes and blends this throughout.,puts soda into the glass and drinks some of the beer in front of him and fixes the drink.,fumbles over his drum contents to finish.,,gold0-reannot,pos,unl,unl,unl,n/a,He picks up a green can and takes a drink.,He then\nanetv_O2JUUFFdWpk,15065,A man in a blue costume throws something into the audience. He,picks up a green can and takes a drink.,\"shoots the ball into the pool, balls down, and drops out of the pool.\",drinks a small beer while someone serves his drink in a fast manner.,struggles off the monitor.,grabs them and starts marching across a hall.,gold1-reannot,pos,unl,unl,pos,pos,A man in a blue costume throws something into the audience.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2172,5814,\"Hanging her head, someone squeezes her eyes shut. They\",tear up as she opens them.,pigtails form a teenager's ponytail.,settles to her knees and her upper part fades.,fire for a decision.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Hanging her head, someone squeezes her eyes shut.\",They\nanetv_9hPFweZeIWs,9403,They release a calf from a box. A man on a horse,runs after the calf.,performs horse with a black rope attached to a string.,does a handstand while the other man gets on and back.,ties a calf on a horse.,runs and catches a calf.,gold1-orig,pos,unl,unl,unl,pos,They release a calf from a box.,A man on a horse\nanetv_9hPFweZeIWs,9404,A man on a horse runs after the calf. He,ties the legs of the calf and gets up and walks away.,does the dog.,then stuffs it with soap.,applies dried leaves to his tail.,man twirls his rope to the crowd and continues to teach his horse.,gold0-reannot,pos,unl,unl,unl,unl,A man on a horse runs after the calf.,He\nanetv_9hPFweZeIWs,9402,People are standing around an arena wearing cowboy hats. They,release a calf from a box.,go with heavy ropes.,are riding on stilts outside.,are then talking to the camera in front of them.,,gold0-reannot,pos,unl,unl,pos,n/a,People are standing around an arena wearing cowboy hats.,They\nlsmdc0008_Fargo-49939,209,\"His features are broad, friendly, Asian - American. A waitress\",meets them at the table.,wears a black jacket with a mustache and a mustache.,appears on the line to take a swig of the flask.,passes him and their ball starts.,leads someone into a campus office.,gold0-orig,pos,unl,unl,unl,unl,\"His features are broad, friendly, Asian - American.\",A waitress\nlsmdc0008_Fargo-49939,208,\"It is a bald, paunching man of about someone's age, rising from a booth halfway back. His features\",\"are broad, friendly, asian - american.\",are close and controlled.,are turned to the monitors as he tosses in toward the door.,\"etched and dull, he is stopped, and brandish his sword as but not blow his coat.\",are tight and slightly overlaid in rhythm.,gold0-reannot,pos,unl,unl,unl,unl,\"It is a bald, paunching man of about someone's age, rising from a booth halfway back.\",His features\nlsmdc1048_Gran_Torino-92242,16428,\"Someone puts away a photo of his wife. Sitting on his porch, he\",looks over at the road.,looks down at dark water from the upstairs window.,gazes at his work and peeks out at a negative swell across the sidewalk.,turns to the bathroom.,pouts and stares steadily at his lifeless face.,gold1-orig,pos,unl,unl,unl,unl,Someone puts away a photo of his wife.,\"Sitting on his porch, he\"\nlsmdc1048_Gran_Torino-92242,16429,\"Sitting on his porch, he looks over at the road. She\",walks over towards him as he sips from a beer can.,is drawing of himself thrown from a window.,\"his eyes shut, he slips her coat from behind his back and looks him in the eye.\",is outside on his porch with the lens in his hand.,,gold0-orig,pos,unl,unl,pos,n/a,\"Sitting on his porch, he looks over at the road.\",She\nanetv_x6E92fGgdH4,13884,\"A blue screen appears with the word Ansell on it followed by the words Hand Scrubbing. After, a young lady dressed in scrubs,\",walks into a room and peels off paper from a scrub brush.,\"stops and talks about ingredients on how to make a sandwich, then cook a cake on the dish counter.\",takes a product and dries it off with the bench.,wash dishes while explaining what she is doing.,,gold0-orig,pos,unl,unl,pos,n/a,A blue screen appears with the word Ansell on it followed by the words Hand Scrubbing.,\"After, a young lady dressed in scrubs,\"\nanetv_x6E92fGgdH4,13887,\"Next she applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off. For her last step, she\",uses her arms to turn the water off and walks out of the room making sure to not touch anything.,turns her finger down and moves in fully until she is completely clean.,walks to the sink holding some smoothing and continuing mopping the floor.,moves it a bit at the end from various angles holding the camera behind her.,begins to clean it and come a bit in the process.,gold0-orig,pos,unl,unl,unl,unl,Next she applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off.,\"For her last step, she\"\nanetv_x6E92fGgdH4,13885,\"After, a young lady dressed in scrubs, walks into a room and peels off paper from a scrub brush. Once she turns the water on, she\",begins scrubbing her arms and under her nails for 15 minutes.,adds her oil and solution.,grabs an orange bag and grabs the yellow jacket.,rubs her hands with hose bottle and smiles and waves to the camera.,,gold1-orig,pos,unl,unl,unl,n/a,\"After, a young lady dressed in scrubs, walks into a room and peels off paper from a scrub brush.\",\"Once she turns the water on, she\"\nanetv_x6E92fGgdH4,11641,The doctor uses a brush to scrub nails and hands. A doctor,washes their hands in a large stainless steel sink with hand soap multiple times.,applies plaster to the boot and applies them to a paint wall.,picks up a stone chart to start the process as she speaks.,wipes the rag all over the knife and pours it in another man.,directs the arc across the canvas.,gold0-orig,pos,unl,unl,unl,unl,The doctor uses a brush to scrub nails and hands.,A doctor\nanetv_x6E92fGgdH4,13886,\"Once she turns the water on, she begins scrubbing her arms and under her nails for 15 minutes. Next she\",applies the soap and follows the same motions making sure to clean all the way up to her elbows before washing it off.,\"spreads the ballerina vegetables, puts it to the sink and flips the lotion over.\",shaves her skate board when she has hold of her leg while still speaking to the camera.,does someone's hand on her back and they fall to the floor and ends up scratching her forehead.,rinses dive in medical times.,gold0-orig,pos,unl,unl,unl,unl,\"Once she turns the water on, she begins scrubbing her arms and under her nails for 15 minutes.\",Next she\nanetv_x6E92fGgdH4,11642,A doctor washes their hands in a large stainless steel sink with hand soap multiple times. The doctor,completely rinses their hands then clasps together and walks out of the room without touching anything.,sits together and talks to the trainer on a body and also type camera materials with overlaid paraphernalia explaining the process.,then introduces the friend to wennerstrom before the game is shown.,shows how to wash the sink with a sponge and continue to wipe it in a sink with the paste rag.,places medical instructions on the ground where people needs to dry their hands.,gold0-orig,pos,unl,unl,unl,unl,A doctor washes their hands in a large stainless steel sink with hand soap multiple times.,The doctor\nanetv_XztphLXwZjU,12391,\"A man is indoors, quickly placing wood tiles onto a floor as the camera plays extremely fast. He\",uses a leveler and cutter and completes the room with grout before walking out.,returns to the room where he shows how to play the bagpipes.,\"practice kicks, then the man in the black suit appears again and the crowd is shown in a a white light lit shot.\",begins vacuuming the floor with a curling iron and putting it into place.,warming the end shows the final product channel was begun before the screen highlights the man's apartment.,gold0-orig,pos,unl,unl,unl,unl,\"A man is indoors, quickly placing wood tiles onto a floor as the camera plays extremely fast.\",He\nanetv_y4Y8gD1mpTw,19949,Then she dips her nail into that paint. She,cleans off any excess nail polish that has smeared on the side of the nails with a paint brush and q - tip.,paints each section of the christmas with the glitter brush.,teases and dips the needle on browned.,goes brush on the wood and add polish to the nails.,continues nail polish on her fingernails.,gold1-orig,pos,unl,unl,unl,pos,Then she dips her nail into that paint.,She\nanetv_y4Y8gD1mpTw,19948,Then she puts drops of different colored nail polish on the water surface. Then she,dips her nail into that paint.,shaves her hair back and continues talking.,cleans the screen end the spray to make sure it is applied.,\"puts the object on the floor, then iron the other side.\",,gold0-orig,pos,unl,unl,pos,n/a,Then she puts drops of different colored nail polish on the water surface.,Then she\nanetv_y4Y8gD1mpTw,19946,She uses a nail polish brush and dips it in water. She,gives the instructions on how to start with a base coat of nail polish.,stands on a mower in the grass in the yard.,lights up a solution on a small cabinet.,finishes her braid before one of the laughing girls smiles and opens another brush onto her fingers.,shows the sleeves and other container of the brush.,gold0-orig,pos,unl,unl,unl,pos,She uses a nail polish brush and dips it in water.,She\nanetv_y4Y8gD1mpTw,19947,She gives the instructions on how to start with a base coat of nail polish. Then she,puts drops of different colored nail polish on the water surface.,holds an iron up over her nose to use the first straw of the wallpapers.,uses a piece of ribbon to apply a press present after she use prayer next on cup then braid it.,uses how to put the adhesive strip on one shoe then brush it further.,puts her shoes on and face away from a camera.,gold0-reannot,pos,unl,unl,unl,unl,She gives the instructions on how to start with a base coat of nail polish.,Then she\nanetv_y4Y8gD1mpTw,19945,A woman is doing a tutorial on how to do water marble nails using water. She,uses a nail polish brush and dips it in water.,keeps making moves with the paddle.,shows several different steps showing how to braid the skirt.,takes down the wallpaper and begins about the process until the process is finished.,,gold0-reannot,pos,unl,unl,pos,n/a,A woman is doing a tutorial on how to do water marble nails using water.,She\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7514,\"Now in a tavern, they stand at a bar. A mirror\",shows someone a shadow with no one before it.,shows the cycling - class man carefully entering her car.,blocking someone's attention.,reflects his reflection in the mirror.,shows someone in a cap and hair as she brushes a model's hair.,gold1-orig,pos,unl,unl,unl,pos,\"Now in a tavern, they stand at a bar.\",A mirror\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7508,\"He finishes with a mighty upward swing. Now balanced on logs, someone\",spars with an unarmed someone.,places his finger on a handle.,climbs off in the knee.,\"walks down the stairs but returns to the front door, with the straps at his back.\",twirls his judges face in both directions.,gold0-orig,pos,unl,unl,unl,unl,He finishes with a mighty upward swing.,\"Now balanced on logs, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7512,\"Someone writes in his journal. At a forge, someone\",pours silver on the ax.,lets someone run into the present.,sits near the built plaster.,uses a name on mjolnir.,folds the mayor's paper from his fingers.,gold0-orig,pos,unl,unl,unl,pos,Someone writes in his journal.,\"At a forge, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7502,\"Twisting his whole body, someone slices through the massive trunk. Woodchips fly from the cut and the tree\",topples to the ground.,flaps out at side.,'s hands tumbling up a mountain on a bright breastplate.,goes to the tree.,\"extends towards him, sending him blown to pieces.\",gold0-orig,pos,unl,unl,unl,unl,\"Twisting his whole body, someone slices through the massive trunk.\",Woodchips fly from the cut and the tree\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7509,\"Now balanced on logs, someone spars with an unarmed someone. The protege\",falls then springs to his feet.,pushes someone up and grabs the zebra.,and her baby run on stage a help.,sign at a stairwell and smoke bordering the air and steaming on a lawn.,shakes his head at his father.,gold0-orig,pos,unl,unl,unl,pos,\"Now balanced on logs, someone spars with an unarmed someone.\",The protege\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7510,\"The protege falls then springs to his feet. Later, someone throws the ax, someone\",catches it and splits a tree trunk.,takes one after it.,uses it on the table.,sails off the back step and steals it on the nearby shelf.,laying on his back as two pilots.,gold0-orig,pos,unl,unl,unl,unl,The protege falls then springs to his feet.,\"Later, someone throws the ax, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7504,Someone enters with his ax. Someone,kicks the door shut rendering the room pitch black.,\"opens the cage, and amiably catches it.\",slips top of his window frame.,catches something as he whacks it aside.,is about him throws his arms and takes his post.,gold0-orig,pos,unl,unl,unl,unl,Someone enters with his ax.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7505,Someone kicks the door shut rendering the room pitch black. Someone,holds the ax while someone crawls toward the door his face beaten and bloody.,laughs and falls out of view.,connects with the door.,takes off her fedora.,looks up with his wand intent.,gold0-orig,pos,unl,unl,unl,unl,Someone kicks the door shut rendering the room pitch black.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7513,\"At a forge, someone pours silver on the ax. Now in a tavern, they\",stand at a bar.,haul someone over a rocky ledge.,enter a reception room and find three upper offices.,arrive at his house.,put down a litter and leave a public car.,gold0-orig,pos,unl,unl,unl,unl,\"At a forge, someone pours silver on the ax.\",\"Now in a tavern, they\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7507,\"Practicing later, someone swings the ax in swirling patterns around his tall, lean frame, gaining speed with proficiency. He\",finishes with a mighty upward swing.,looks up and turns still in the harsh young man.,adjusts his tie and embraces his bearded daughter.,\"types, magically fades.\",allows a brief smile.,gold0-orig,pos,unl,unl,unl,unl,\"Practicing later, someone swings the ax in swirling patterns around his tall, lean frame, gaining speed with proficiency.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7511,\"Later, someone throws the ax, someone catches it and splits a tree trunk. Someone\",writes in his journal.,\"slides to the ground again, the boy in prop, one wheel swing.\",joins the jewish gardeners in his own path by cracking them.,\"follows someone across the kitchen, knocking him into food.\",,gold0-reannot,unl,unl,unl,unl,n/a,\"Later, someone throws the ax, someone catches it and splits a tree trunk.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7506,Someone holds the ax while someone crawls toward the door his face beaten and bloody. He,pauses at the threshold.,throws himself back at the flowers and runs across the parlor.,goes hesitantly as he takes it from someone.,closes his eyes curiously.,reaches out and closes it for him.,gold1-reannot,pos,unl,unl,unl,pos,Someone holds the ax while someone crawls toward the door his face beaten and bloody.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1924,7515,\"Someone slams him down on the bar. Later, he\",shows a gallery of images.,presses the bell to the surface.,hugs a pizza and walks up to the windows.,lets wrench someone in his office.,knocks the dad's head off of the table.,gold1-reannot,unl,unl,unl,unl,unl,Someone slams him down on the bar.,\"Later, he\"\nlsmdc1009_Spider-Man3-76066,17288,A spinning war vortex of blue light becomes a silver blue spider's web which scatters the words the opening credits. More splinted images,reveal earlier moments in the story.,\"appear in their purple skull, orange words come from jars on a rocky, hollow blade hitting the ceiling pins unlaced.\",\"are shown of someone, white life climbing in drive an faster float.\",\"look with agents desk victims, dressed together.\",fly through the scene page.,gold0-reannot,pos,unl,unl,unl,unl,A spinning war vortex of blue light becomes a silver blue spider's web which scatters the words the opening credits.,More splinted images\nanetv_iOnlcEk50CM,13095,\"After, he picks up the skateboard and moves a few feet back and starts skateboarding. Once done, he\",picks up the skateboard and holds it back down to his side.,throws the man in tshirt and gets on the skateboard bike.,gets one archery and starts doing walk in the yard.,stands around and goes back and forth on a mat.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, he picks up the skateboard and moves a few feet back and starts skateboarding.\",\"Once done, he\"\nanetv_iOnlcEk50CM,13094,\"The male then gets on the skateboard and start balancing himself on it. After, he\",picks up the skateboard and moves a few feet back and starts skateboarding.,lands on the trampoline and flips on the skis.,gets off the board and trains the bike in place.,mounts the bars onto the street that on the skateboard in front of him.,jumps up the road unable to be successful but also comes back and starts to give it some fun.,gold1-orig,pos,unl,unl,unl,unl,The male then gets on the skateboard and start balancing himself on it.,\"After, he\"\nanetv_iOnlcEk50CM,13093,A male is standing on side on a road in front of a forest with his foot on a skateboard. The male,then gets on the skateboard and start balancing himself on it.,skis down the line then smiles and the continue driving down the hill.,drives on an accordion entering a public spot.,\"skating behind the second track is doing tricks, going down the track.\",,gold0-reannot,pos,unl,unl,pos,n/a,A male is standing on side on a road in front of a forest with his foot on a skateboard.,The male\nanetv_lVMMPkvnid8,145,Garafulic starts to explain clinics and the medals they have won breaking perfect games. The bowlers,are shown practicing once again.,pull up another towel.,\"play a game, serving and doing the viewer to get them around at area.\",knocks on the youtube computer.,,gold0-orig,pos,unl,unl,unl,n/a,Garafulic starts to explain clinics and the medals they have won breaking perfect games.,The bowlers\nanetv_lVMMPkvnid8,144,Team of Bolivian bowlers get ready to start bowling by practicing a technique taught by Jason Belmont by putting two fingers in the holes and using two hands to spin the ball. The young amateur players,begin to bowl using the two handed technique.,fell over the soccer player who has finally shown the wrestlers throw at each other.,grab the beer and hit with and catch each other in the green team playing hockey.,are boxing in the same position with one media hog and a yellow rope ride itself over.,hug the players from the audience and step off to a good.,gold0-orig,pos,unl,unl,unl,unl,Team of Bolivian bowlers get ready to start bowling by practicing a technique taught by Jason Belmont by putting two fingers in the holes and using two hands to spin the ball.,The young amateur players\nanetv_sVeC5VlDsjk,375,Several pictures are shown of a beach and landscapes as well as people walking on the beach. Several clips,are then shown of people riding along the water and surfing the waves.,are shown of people jump roping by riding down a river.,are shown of people riding.,are shown of people riding around on tubes as well as boats glides along the water.,are shown of people skiing as well as people pulling up to the beach in front of the crowd.,gold1-orig,pos,unl,unl,pos,pos,Several pictures are shown of a beach and landscapes as well as people walking on the beach.,Several clips\nanetv_sVeC5VlDsjk,376,Several clips are then shown of people riding along the water and surfing the waves. More shots,are shown of people surfing in the water.,are shown of men playing an instrument while the women watch on the sides.,are shown of people surfing and fall into the water.,are shown of people surfing on the water as well as surfing around the water.,are shown of them riding through the water while others interact on their side.,gold1-orig,pos,unl,unl,unl,unl,Several clips are then shown of people riding along the water and surfing the waves.,More shots\nlsmdc3089_XMEN_FIRST_CLASS-42828,7612,\"Completely submerged, he bares his gritted teeth, and keeps a stubborn hold on the submarine. On the ship, someone\",\"runs along the deck, then dives from the edge.\",loads his key into a chain - like road.,\"trains a fire projector, the factory sun falling off.\",\"is wrapped, scope on his makeshift binoculars, as they are talking.\",helps someone safely out to the train.,gold0-orig,pos,unl,unl,unl,unl,\"Completely submerged, he bares his gritted teeth, and keeps a stubborn hold on the submarine.\",\"On the ship, someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7605,\"It rises high as someone, someone, and the man in black stare. Someone\",whips the anchor chain around the yacht's corridors.,turns the russian someone and waves back.,\"joins gathered around, demonstrating the correct way to leave the taxicab, someone nods and runs his arms.\",is passed out.,,gold0-orig,pos,unl,unl,pos,n/a,\"It rises high as someone, someone, and the man in black stare.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42828,7610,\"On the ship, sailors gather on the decks. The submarine\",drags someone beneath the water.,runs along a cliff of main deck.,dangle from the hold.,follows someone into the aircraft.,glides through the air on the ship.,gold0-orig,pos,unl,unl,unl,unl,\"On the ship, sailors gather on the decks.\",The submarine\nlsmdc3089_XMEN_FIRST_CLASS-42828,7611,\"The submarine drags someone beneath the water. Completely submerged, he\",\"bares his gritted teeth, and keeps a stubborn hold on the submarine.\",stands up around his wrist in the front of the river.,stretches up on them and raises its tip to his fingers.,lands at a full gallop.,lounges on a rumbling spurts surface to a pool of water below.,gold0-orig,pos,unl,unl,unl,unl,The submarine drags someone beneath the water.,\"Completely submerged, he\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7613,\"On the ship, someone runs along the deck, then dives from the edge. He\",plunges into the water behind someone and wraps his arms around him.,holds at someone's outstretched hand.,peers into the water and waves him in a wave.,skis into the water trying to hide.,stands on the edge of the boat and lies back on the prow.,gold0-orig,pos,unl,unl,unl,pos,\"On the ship, someone runs along the deck, then dives from the edge.\",He\nlsmdc3089_XMEN_FIRST_CLASS-42828,7603,One of the yacht's anchors rises high above its deck. Someone,thrusts a hand forward.,steps down toward a sea of floating rock and shakes the sea.,quickly slides over a cable as passengers plummet down adjacent windows.,gazes at a nearby pointing glass.,,gold0-orig,pos,unl,unl,unl,n/a,One of the yacht's anchors rises high above its deck.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42828,7601,\"The yacht's anchor chains rise all around him. Recovering, someone\",marches back out on the deck and points.,parks the van in the truck and turns away.,tearfully glares at the motorcyclist.,runs through the back of the road and collides with all cars.,hops on their stool.,gold0-orig,pos,unl,unl,unl,pos,The yacht's anchor chains rise all around him.,\"Recovering, someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7606,\"Someone whips the anchor chain around the yacht's corridors. Inside, someone and someone\",flee down a hallway as the chain slices through the walls.,stride through the courtyard.,follow someone down a stairwell.,hurry through the offices.,arrive in their doorway in a short black suit.,gold0-orig,pos,unl,pos,pos,pos,Someone whips the anchor chain around the yacht's corridors.,\"Inside, someone and someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7609,\"Water surges around someone's head. On the ship, sailors\",gather on the decks.,sail a boat in smooth water.,drift down in scattered robes and kayaks on the bay.,hold several vampires as someone runs in their midst of a crowd.,remain still ahead together.,gold0-orig,pos,unl,unl,unl,unl,Water surges around someone's head.,\"On the ship, sailors\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7599,\"On the ship's deck, someone gawks. The whirlwind\",knocks the boats high in the air.,grabs someone and hugs him.,crashes into the toilet.,bolts out of the huge storm forest.,leaves a huge figure who runs ahead with her own weapon caught in the water.,gold0-orig,pos,unl,unl,unl,unl,\"On the ship's deck, someone gawks.\",The whirlwind\nlsmdc3089_XMEN_FIRST_CLASS-42828,7617,\"As we drift over a sprawling complex, words appear: Covert cia Research Base.. On a lawn, a sphere\",\"stands on a pedestal, resembling a giant golf ball on a tee.\",lands in the blackness.,has lots of mulch in the middle of the road.,pulls into two masked sculptures blaring.,circles on the side of a vehicle with a small sign in its trunk material.,gold0-orig,pos,unl,unl,unl,unl,\"As we drift over a sprawling complex, words appear: Covert cia Research Base..\",\"On a lawn, a sphere\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7607,\"Treading water, someone turns. As the underwater vessel pulls away, he\",grits his teeth and stretches his hands after it.,swims to the edge of a diving board.,extends his hand and slips under the fountain.,eyes his open body again.,pinches himself out of someone's eyes.,gold0-orig,pos,unl,unl,unl,unl,\"Treading water, someone turns.\",\"As the underwater vessel pulls away, he\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7614,\"Two veins throb in someone's forehead as someone drags him toward the surface. In the escaping submarine, someone\",shifts his smug gaze.,gets up in flight.,squeezes into the bottom of the clock's clock handle.,sits on the edge of the boat.,arrives in the woods.,gold0-orig,pos,unl,unl,unl,unl,Two veins throb in someone's forehead as someone drags him toward the surface.,\"In the escaping submarine, someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42828,7602,\"Recovering, someone marches back out on the deck and points. One of the yacht's anchors\",rises high above its deck.,hangs on safety railing behind the camels.,opens down off the dome towards the hotel.,remain from his record.,drifts off into a large cloud of snowy trees.,gold1-reannot,pos,unl,unl,unl,unl,\"Recovering, someone marches back out on the deck and points.\",One of the yacht's anchors\nlsmdc3089_XMEN_FIRST_CLASS-42828,7616,Someone smiles warmly at him. The haunted man,regards him with a furrowed brow.,\"pounds on his head, his face grim and eyed with tears.\",gives him trashcan nod and heads to the bus window where they resume cleaning.,takes the small butcher knife from his boot.,gives someone a harsh look.,gold0-reannot,pos,unl,unl,unl,pos,Someone smiles warmly at him.,The haunted man\nlsmdc3089_XMEN_FIRST_CLASS-42828,7615,\"In the escaping submarine, someone shifts his smug gaze. Someone\",smiles warmly at him.,turns from a window up to see the timer leading to two on the opposite side of the room.,\"picks up more alcohol, then peers through the vault.\",faces his son.,\"stares at someone, someone.\",gold1-reannot,pos,unl,unl,pos,pos,\"In the escaping submarine, someone shifts his smug gaze.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42828,7608,\"As the underwater vessel pulls away, he grits his teeth and stretches his hands after it. Water\",surges around someone's head.,looks up at the party.,fly him around several times.,show his face with suntan lotion.,\", he thrusts the massive knife first into each hole, then drags someone to safety.\",gold1-reannot,pos,unl,unl,unl,unl,\"As the underwater vessel pulls away, he grits his teeth and stretches his hands after it.\",Water\nanetv_OoyoTLkSOuY,14840,A woman is wearing a towel and standing next to a bath tub. She,puts shaving cream on her leg and shaves her leg.,\"is carrying a large mop of bucket, the woman puts her clothes on.\",then cuts clothes and spray water onto the back of the tub.,rinses off the towel and places the bottom down.,sprays the wet cloth over the wet towel then begins to know how to clean her clothes.,gold0-orig,pos,unl,unl,unl,unl,A woman is wearing a towel and standing next to a bath tub.,She\nanetv_Ib3XqmBqy10,5570,Various shots of people are shown followed by several shots of kids jumping rope. A man then speakers to various kids on a court and,shows more shots of the kids jumping rope together.,ends by jumping off celebrating.,then does the tricks on the beam and ends by lifting weights on the ground.,shows a man get into.,ends by jumping up and down onto the ground.,gold0-orig,pos,unl,unl,unl,pos,Various shots of people are shown followed by several shots of kids jumping rope.,A man then speakers to various kids on a court and\nanetv_Ib3XqmBqy10,5571,A man then speakers to various kids on a court and shows more shots of the kids jumping rope together. The man,then jumps rope while more kids perform tricks with their jump ropes and ends with the man speaking to one more jumper.,continues talking while applaud the well as pausing and talk to them.,runs in and finishes the video on how he is on stage.,is even more and gets ready to continue doing a game.,performs a routine with the girls while he cheers them on a hallway.,gold1-orig,pos,unl,unl,unl,unl,A man then speakers to various kids on a court and shows more shots of the kids jumping rope together.,The man\nanetv_Rvsc5eymWIg,17389,Man is holding a impact drill pulling out a car wheel. man is holding the wheel in a table and taking out the rubber from the rim and he,changes it for another.,is using to the water mark the board.,is walking inside the hole.,holds the pot to his mouth.,has to hit it.,gold1-orig,pos,unl,unl,unl,pos,Man is holding a impact drill pulling out a car wheel.,man is holding the wheel in a table and taking out the rubber from the rim and he\nanetv_Rvsc5eymWIg,17390,Man is holding the wheel in a table and taking out the rubber from the rim and he changes it for another. car,is in street next to a mountain.,is knocking out the rope noose the animal is in the tire.,trashed - cars are using the wheel's board.,is on the bottom of a ski.,,gold0-reannot,pos,unl,pos,pos,n/a,Man is holding the wheel in a table and taking out the rubber from the rim and he changes it for another.,car\nanetv_yBjsQN4fzVY,8948,The woman in the bathroom is brushing her teeth and is attacked by a man with a knife. There,is blood splattered all over the bathroom.,\", woman is talking to the camera next to a stand by a fence.\",opens a small canvas towel and lays it on her crotch.,is stunning the black cloth with purple spices.,is writing on the bottom.,gold0-orig,pos,unl,unl,unl,unl,The woman in the bathroom is brushing her teeth and is attacked by a man with a knife.,There\nanetv_yBjsQN4fzVY,8945,The man has a script in his hand that he's reading. A man in folded pants,is walking on the beach.,is laying on a cat.,is sitting on a table.,walks down a sidewalk and peels up a beaded straw.,walks down a ladder and is pushed up.,gold1-orig,pos,unl,unl,unl,unl,The man has a script in his hand that he's reading.,A man in folded pants\nanetv_yBjsQN4fzVY,8950,The injured woman gets up and looks in the mirror only find out that she has the face of the man from the beach. The same man,\"is now back on the beach, walking along the shore.\",holds out the safe.,crawls across the screen.,is been talking to the camera about a pair of scissors cut out of a set of scissors.,is shown in the haircut and role out to get some teeth to do up some fruit project and begins on counting.,gold1-orig,pos,unl,unl,unl,unl,The injured woman gets up and looks in the mirror only find out that she has the face of the man from the beach.,The same man\nanetv_yBjsQN4fzVY,8944,They are talking about brushing teeth in underwear and how it is banned by Metacafe. The man,has a script in his hand that he's reading.,continues shaving the dog's hair and brush.,uses the toothbrush to brush teeth and clean to speak.,is dressed in black to a dressed room and turns to the girl.,,gold1-reannot,pos,unl,unl,unl,n/a,They are talking about brushing teeth in underwear and how it is banned by Metacafe.,The man\nanetv_yBjsQN4fzVY,8946,A man in folded pants is walking on the beach. He,picks up a toothbrush from the sand and begins brushing his teeth.,is riding back and forth in front of them.,is snowboarding toward a pile of food.,are standing next the camera.,is giving a great time with soap.,gold0-reannot,unl,unl,unl,unl,unl,A man in folded pants is walking on the beach.,He\nanetv_yBjsQN4fzVY,8947,He picks up a toothbrush from the sand and begins brushing his teeth. The woman in the bathroom,is brushing her teeth and is attacked by a man with a knife.,has small red shoes and skirt cut with a wide camera.,go to play her toothbrush with toothpaste.,is then paddling with more hair and a curlers.,begins brushing and scrubbing soap.,gold0-reannot,pos,unl,unl,unl,unl,He picks up a toothbrush from the sand and begins brushing his teeth.,The woman in the bathroom\nlsmdc3032_HOW_DO_YOU_KNOW-2473,14900,She self - consciously stands up. She,tugs the hem of her shirt and rubs her nose.,lifts down the kettle.,notices as if he is about to say something.,goes to kiss her.,lets out a warm sigh.,gold0-orig,pos,unl,pos,pos,pos,She self - consciously stands up.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2473,14901,She tugs the hem of her shirt and rubs her nose. Someone,watches her pace across the room and take a seat on a cushioned chair.,chucks the stole toward the floor and gazes upward.,brings blood from her wounds.,writes into the gold ring.,gets up and runs to his car.,gold1-orig,pos,unl,unl,unl,pos,She tugs the hem of her shirt and rubs her nose.,Someone\nanetv_ZW46Rcuhqac,3749,A man takes a pitcher of beer and begins talking to the camera. The man,proceeds to drink the entire pitcher of beer.,is then shown playing tennis on the ice.,adjusts the bottles and begins talking to the camera.,talks to the camera person while eating ice cream.,finishes and puts ice in a strainer.,gold0-orig,pos,unl,unl,unl,unl,A man takes a pitcher of beer and begins talking to the camera.,The man\nanetv_ZW46Rcuhqac,3748,Beer and other alcohol is shown on a counter in a kitchen. A man,takes a pitcher of beer and begins talking to the camera.,adds juice and lemon juice.,eats ice cream while other people bowl and laugh and frankly shaken.,demonstrates how to hit the ball against the wall.,crosses the kitchen talking up and gives something to the dog.,gold0-orig,pos,unl,unl,unl,pos,Beer and other alcohol is shown on a counter in a kitchen.,A man\nanetv_q0buJ1CKj-Y,3392,A person is seen sitting in front of a desk holding a guitar in his hands. The man then,begins playing the instrument moving his hands up and down.,begins playing drum sticks back in his hands while pausing.,begins playing a violin and back to himself as he finishes.,grabs the camera up to continue playing and leads into him hitting the buttons.,begins playing the instrument continuously over and over again.,gold1-orig,pos,unl,unl,pos,pos,A person is seen sitting in front of a desk holding a guitar in his hands.,The man then\nanetv_q0buJ1CKj-Y,3393,The man then begins playing the instrument moving his hands up and down. The person,continues playing on the guitar and looking off into the distance.,\"continues moving his body around, continuing to play the song.\",continues throwing the frisbee all around while looking to the camera while still sitting by the camera.,continues moving around kicking the ball up and down while a speak to his camera again.,continues playing the instrument while the camera watches on the side.,gold1-orig,pos,unl,unl,unl,pos,The man then begins playing the instrument moving his hands up and down.,The person\nanetv_zGT6EplIOHY,16971,A player kicks a ball over a guy's head. Players,kick a ball that knocks down a yellow cone which they pick up.,tie a fist onto a pole.,run up to run.,extend it on his left shoulder.,jumps on the court and erupts within the net.,gold0-orig,pos,unl,unl,unl,unl,A player kicks a ball over a guy's head.,Players\nanetv_zGT6EplIOHY,16970,People kick a ball indoor between yellow cones on fake grass. A player,kicks a ball over a guy's head.,send a puck down the lane and its net.,swings his tennis racket back and forth.,throws the big stick into the crowd.,,gold0-orig,pos,unl,unl,unl,n/a,People kick a ball indoor between yellow cones on fake grass.,A player\nanetv_tgPjcWP7Vig,9107,A woman speaks to the camera while more shots are shown of people riding. A woman,leads the class as well as speaks to the camera and others riding around.,speaks to the camera and pictures of the jump in the car.,rides by on a set of exercise bikes and driving all along the road.,speaks to the camera as well as various settings and performing several tricks and tricks.,leads into several people riding on tubes down the river and pulling on tubes.,gold1-orig,pos,unl,unl,pos,pos,A woman speaks to the camera while more shots are shown of people riding.,A woman\nanetv_tgPjcWP7Vig,9106,A large group of people are seen sitting on bicycles exercising with one another. A woman,speaks to the camera while more shots are shown of people riding.,is seen hosting a news segment that leads into several people driving around.,adjusts the camera as she continues down.,cuts an exercise against a mat and moves it in a machine.,is seen walking into frame with a stick in her hands while the camera zooms in on them.,gold0-reannot,pos,unl,unl,unl,pos,A large group of people are seen sitting on bicycles exercising with one another.,A woman\nanetv_k67UWfSt-iE,9437,A small group of people are seen playing a game of volleyball while people watch along the sidelines. The players,hit the ball several times over the net as well as chasing after the ball.,continue hitting the ball around and around in a throw with one another.,continue to play with one another before hitting off one another.,continue to play with the other and stand up while still speaking to the camera.,continue hitting the ball back and fourth to one another while several audience watch on the sides.,gold0-orig,pos,unl,unl,pos,pos,A small group of people are seen playing a game of volleyball while people watch along the sidelines.,The players\nanetv_k67UWfSt-iE,9438,The players hit the ball several times over the net as well as chasing after the ball. The,continue to play the game while others cheer and high five one another after.,girls are shown scoring a goal but also continue to push the puck to play the goal.,opposing players are standing on the sidelines and the right goal is scored.,grabs and talks to other team mates.,,gold0-orig,pos,unl,pos,pos,n/a,The players hit the ball several times over the net as well as chasing after the ball.,The\nlsmdc1015_27_Dresses-79826,15695,\"Someone pouts and flounces back to her fitting room, tripping over her hem as she goes. As lights begin to decorate the evening cityscape, a taxi\",drops someone off at the restaurant where guests are gathering for the engagement party.,sets the principal's order.,crosses a sidewalk on freight cars.,crosses a narrow foyer with a sleek bird - shaped bird perched on the center of it's brightly embroidered building.,pulls someone to under the station.,gold0-orig,pos,unl,unl,unl,unl,\"Someone pouts and flounces back to her fitting room, tripping over her hem as she goes.\",\"As lights begin to decorate the evening cityscape, a taxi\"\nlsmdc1015_27_Dresses-79826,15696,She is accosted by a smartly dressed older lady. The woman,\"is puzzled, not sure what she just heard.\",spots the young man lying first and takes his human hands.,is standing in someone's bathroom.,\"swans over, into someone 'dressing room.\",,gold0-orig,pos,unl,unl,unl,n/a,She is accosted by a smartly dressed older lady.,The woman\nanetv_6QbIJ2pnXXo,3364,\"A round piece of styrofoam is on a cake platter, strips of the dough are placed on the foam. The person\",works with purple dough and cuts it into strips.,displays her scoop up the third nails and uses the chopsticks.,plays the flute as they continue to play.,put the sheet that filled clear dough and put it on the baking sheet.,,gold1-orig,pos,unl,unl,pos,n/a,\"A round piece of styrofoam is on a cake platter, strips of the dough are placed on the foam.\",The person\nanetv_6QbIJ2pnXXo,325,She uses a stick to measure the iceing. She then,uses it for frosting a cake.,does it again for how to jump.,uses the snare when she finishes on.,does back flips in a hoop.,takes the pasta in the bowl and blends it into place.,gold0-orig,pos,unl,unl,unl,pos,She uses a stick to measure the iceing.,She then\nanetv_6QbIJ2pnXXo,3366,The purple strips are overlaid onto the styrofoam. Francesca Sugar Art,is shown on screen with video links.,drug an automatic to the disk.,is on the cellophane.,are situated between the table and a canopy of a packet's covered paper to notice their daily professional reactor.,in orange appears and eat.,gold0-orig,pos,unl,unl,unl,unl,The purple strips are overlaid onto the styrofoam.,Francesca Sugar Art\nanetv_6QbIJ2pnXXo,3365,The person works with purple dough and cuts it into strips. The purple strips,are overlaid onto the styrofoam.,are given to strip with a fan.,peels the sandwich with two fingers.,removes the floral sheet.,are used to loosen the nail.,gold1-orig,pos,unl,unl,unl,pos,The person works with purple dough and cuts it into strips.,The purple strips\nanetv_6QbIJ2pnXXo,3363,\"A persons hands are working with pink dough. A round piece of styrofoam is on a cake platter, strips of the dough\",are placed on the foam.,\"is removed, showing off the man package.\",are removed from the oven.,is placed inside a square.,is removed from the oven.,gold1-reannot,pos,unl,pos,pos,pos,A persons hands are working with pink dough.,\"A round piece of styrofoam is on a cake platter, strips of the dough\"\nlsmdc0004_Charade-47603,3436,\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw rips through both, a wound extending from the center of someone's back to his shoulder. Both men\",\"look around for the gun, spot it simultaneously and leap for it, both landing short of the mark.\",wrestle when he is finished.,race the open door to vessel to someone who staggers inside the plane and slams the door and snags the water with it.,break into the room.,,gold0-orig,pos,unl,unl,pos,n/a,\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw rips through both, a wound extending from the center of someone's back to his shoulder.\",Both men\nlsmdc0004_Charade-47603,3441,\"As it slides across the slate, making a hideous scratching sound and causing sparks to fly. As he\",slides over the edge and disappears.,\"does so, someone is laughing awake.\",\"leaves the parking lot, the men fly out.\",gets in again and pulls away.,,gold0-orig,pos,unl,unl,unl,n/a,\"As it slides across the slate, making a hideous scratching sound and causing sparks to fly.\",As he\nlsmdc0004_Charade-47603,3435,\"Then, to his amazement, someone is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof. Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw\",\"rips through both, a wound extending from the center of someone's back to his shoulder.\",ripple and a metal grate opens for him.,pushes him out so that he much preparation of his strength.,\"appear at someone's sharp, tipped blade.\",\"keeps gasping for short punches as he unloads the grail, forcing tiny pieces over of pocket.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, to his amazement, someone is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof.\",\"Working his arms between their two bodies, someone suddenly flails them out with all his strength and the hold is broken, but at the price of his coat and the flesh on his back as someone's metal claw\"\nlsmdc0004_Charade-47603,3438,\"The battle is going to someone whose weight and strength are beginning to tire someone, who is now on his back, trying to stop someone from crawling over him. He\",has the large man by both lapels of the raincoat in a last - ditch effort to hold him.,\", someone runs back inside the transport car, flips through the gray air onto the pyre, and stops beside the trio.\",\"is like a wooden tank multiple times, and the hot man is getting someone's head out of the back.\",\"reaches into one line, draws this gun upward, picks up his rifle, and flings the weapon inside a black bag.\",quickly turns and continues his routine.,gold0-orig,pos,unl,unl,unl,unl,\"The battle is going to someone whose weight and strength are beginning to tire someone, who is now on his back, trying to stop someone from crawling over him.\",He\nlsmdc0004_Charade-47603,3437,\"Both men look around for the gun, spot it simultaneously and leap for it, both landing short of the mark. Now they\",\"grapple with one another, each trying to break free and reach for the gun.\",\"reach straight for her solid, locked each, which plots out of the same door just before it crashes to us.\",maneuver someone into the water.,\"see someone as the pull someone first down from the bloodied cab, then faces him.\",take their turns and leap into the lake in spectators as someone is performing various sparks particles in a skyscraper.,gold0-orig,pos,unl,unl,unl,unl,\"Both men look around for the gun, spot it simultaneously and leap for it, both landing short of the mark.\",Now they\nlsmdc0004_Charade-47603,3439,\"He has the large man by both lapels of the raincoat in a last - ditch effort to hold him. But someone, his face horribly distorted from the strain,\",continues to inch forward toward the gun.,puts his head on a battered tire driving away as someone falls.,turns his lamp back before peering back into his truck.,is not seeing the turn and scratched up the front of the car.,is hear the terrible noises as he screams.,gold0-orig,pos,unl,unl,unl,pos,He has the large man by both lapels of the raincoat in a last - ditch effort to hold him.,\"But someone, his face horribly distorted from the strain,\"\nlsmdc0004_Charade-47603,3434,\"Following through, someone punches the large man full in the jaw, but instead of falling, someone wraps his arm around someone, holding on tightly until his head clears. Then, to his amazement, someone\",\"is lifted into the air and, unable to break the bear - hold, carried toward the edge of the roof.\",backhands herself back onto the boat.,catches himself on the creature as he lands on the floor.,\"walks down the street carrying only his boots, lies half with half on his back.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Following through, someone punches the large man full in the jaw, but instead of falling, someone wraps his arm around someone, holding on tightly until his head clears.\",\"Then, to his amazement, someone\"\nlsmdc0004_Charade-47603,3440,\"Someone beats wildly at the the slate with his claw, trying to gouge a grip. As it\",\"slides across the slate, making a hideous scratching sound and causing sparks to fly.\",crashes to the roof!,\"moves past him, a chainsaw seems to be laid out once more.\",leaps into the ankle - deep water.,returns to the shot.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone beats wildly at the the slate with his claw, trying to gouge a grip.\",As it\nlsmdc0005_Chinatown-48516,10199,\"Someone stares back at him. The blow has forced tears from her eyes, but she\",\"makes no move, not even to defend herself.\",enraged stares as though there.,is not able to catch her breath.,is for sale.,\"rolls on, awaiting any reaction from someone.\",gold0-orig,pos,unl,unl,unl,pos,Someone stares back at him.,\"The blow has forced tears from her eyes, but she\"\nlsmdc0005_Chinatown-48516,10198,He hits her full in the face. Someone,stares back at him.,stumbles with their fists.,\"produces a long, bony finger.\",stares down at the toilet.,bends over and kisses him.,gold0-orig,pos,unl,unl,unl,pos,He hits her full in the face.,Someone\nlsmdc0005_Chinatown-48516,10200,\"He belts her finally, knocking her into a cheap Chinese vase which shatters and she collapses on the sofa, sobbing. Someone\",comes running down the stairs.,remains at the unicorn check.,swallows then searches notes on someone's handbag.,moves around and falls to the floor someone walks toward him.,,gold1-orig,pos,unl,unl,pos,n/a,\"He belts her finally, knocking her into a cheap Chinese vase which shatters and she collapses on the sofa, sobbing.\",Someone\nlsmdc0005_Chinatown-48516,10201,Someone comes running down the stairs. Someone,turns after staring at someone for a moment then goes back upstairs.,\"lifts his head, his eyes fixed.\",wrestles buttoning her pants.,puts a dish in his someone fridge.,forces herself to walk on.,gold0-reannot,pos,unl,unl,unl,pos,Someone comes running down the stairs.,Someone\nanetv_mzVJHw9Jrb4,3529,A shirtless man roller blades through a busy path. A man in a black tank top,does several roller blade tricks.,is standing on a balance beam with a long pole in the background.,\"jumps on the slackline, jumps onto a wakeboard as his truck speeds across ground.\",is leading a section of stairs.,,gold0-orig,pos,unl,unl,unl,n/a,A shirtless man roller blades through a busy path.,A man in a black tank top\nanetv_mzVJHw9Jrb4,3530,A man in a blue shirt switches of doing tricks. They,continue to trade off showing their skills.,\"approach a bartender, then start dance.\",flip off the water onto the surfboard in the foreground.,\", his talks is shown forming a row of kayakers as he passes a person on the right.\",are bumping into pockets.,gold0-orig,pos,unl,unl,unl,unl,A man in a blue shirt switches of doing tricks.,They\nanetv_mzVJHw9Jrb4,7483,People are interacting outside later in the day. A guy,skates around colorful cups place on the pavement as cones.,is singing outside hollywood.,shown saved icons into some of the sides.,is laying snow on front of a car with skinny latex gloves.,is giving a demonstration about to wash a hand.,gold1-reannot,pos,unl,unl,unl,unl,People are interacting outside later in the day.,A guy\nanetv_mzVJHw9Jrb4,7484,\"A guy in a black, sleeveless undershirt squats and skates. The guy in a black, sleeveless undershirt\",stand on his tip toe with skates on.,has a plastic stick attached.,\"climbs the staircase landing, landing on high mat.\",sashays up next to him from behind.,sits on cushions at the foot of the bed.,gold0-reannot,pos,unl,unl,unl,pos,\"A guy in a black, sleeveless undershirt squats and skates.\",\"The guy in a black, sleeveless undershirt\"\nlsmdc3056_PUBLIC_ENEMIES-3286,11262,\"Someone removes the receiver from her ear and clutches it against the base of her neck. Outside her apartment, two men\",watch from inside a car concealed underneath a bridge.,emerge into a cabin and securely hurtles through the tunnel.,stand asleep on a wall.,walk to a brick bridge.,,gold0-orig,pos,unl,unl,pos,n/a,Someone removes the receiver from her ear and clutches it against the base of her neck.,\"Outside her apartment, two men\"\nlsmdc3056_PUBLIC_ENEMIES-3286,11268,Someone emerges from the house behind someone. Someone,narrows his eyes and tilts his head.,sits across from someone.,watches as the bath starts to collapse.,hides by the window with the camera to reveal its face.,and the others walk over to a tent.,gold0-orig,pos,unl,unl,unl,unl,Someone emerges from the house behind someone.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11264,\"A tan car pulls to a stop, and someone and someone climb out. As someone\",heads around the corner down an icy walkway.,\"leads the girls away, the alien follows someone anxiously.\",\"strides out, she wrings her hands and hauls herself up.\",tries to stop her.,,gold1-orig,pos,unl,pos,pos,n/a,\"A tan car pulls to a stop, and someone and someone climb out.\",As someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11258,\"At the telephone exchange, someone listens. Someone\",clutches the phone despondently.,\"leads him down the aisle, lifting up his arm.\",is in the office room.,turns to the giggling someone.,,gold0-orig,pos,unl,pos,pos,n/a,\"At the telephone exchange, someone listens.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11263,\"Outside her apartment, two men watch from inside a car concealed underneath a bridge. Later, someone\",sits in a car outside the apartment.,awakes against small high sleeping boards with his back to his son.,lies on her side.,holds out a door for her.,leads the way into the conference room.,gold0-orig,pos,unl,unl,pos,pos,\"Outside her apartment, two men watch from inside a car concealed underneath a bridge.\",\"Later, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3286,11259,Someone clutches the phone despondently. She,\"lowers her sad, resigned eyes.\",fidgets and gives a conviction loud.,\"looks at his workbench, then takes a seat at the kid.\",\"moves forward, muttering as someone's life out of the window.\",\"aggressively lies beside someone, then the microphone and the man gets pregnant.\",gold0-orig,pos,unl,unl,unl,unl,Someone clutches the phone despondently.,She\nlsmdc3056_PUBLIC_ENEMIES-3286,11260,\"She lowers her sad, resigned eyes. Someone\",\"stands inside a phone booth with a faint, tender smile.\",sits on the edge and unfolds the pamphlet.,nods to her laotong.,stares at the wound under her shoulder.,watches her warily as the guitar crew sleeps with under her bed.,gold0-reannot,pos,unl,unl,unl,unl,\"She lowers her sad, resigned eyes.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11269,Someone narrows his eyes and tilts his head. He,pulls out his machine gun.,clenches his gun in fists.,notices a brown - haired man sitting in front of a laptop screen.,spits the gulps of air.,glances over his shoulder.,gold0-reannot,pos,unl,unl,unl,pos,Someone narrows his eyes and tilts his head.,He\nlsmdc3056_PUBLIC_ENEMIES-3286,11267,Someone perches on the side of the car. Someone,emerges from the house behind someone.,\"lashes out toward the railing, following the frame, zooming through a small tunnel similar to another perspective.\",shoots him in the window.,comes in in the walkway.,speaks on his cell phone.,gold1-reannot,pos,unl,pos,pos,pos,Someone perches on the side of the car.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11265,As someone heads around the corner down an icy walkway. Someone,steps out of the safe house.,is on a patio and tables.,runs to the center of the platform and starts outside.,hurries down a craggy shaft.,is then seen in a diner.,gold1-reannot,pos,unl,unl,pos,pos,As someone heads around the corner down an icy walkway.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3286,11261,\"Someone stands inside a phone booth with a faint, tender smile. Someone\",removes the receiver from her ear and clutches it against the base of her neck.,\"claps, allowing someone to fold it back in his pocket.\",\"walk down the corridor, only the small sound of the man coming out from the door.\",looks at her parents and looks away.,\"enters and approaches the elevator door which is open, before him holding someone.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone stands inside a phone booth with a faint, tender smile.\",Someone\nanetv_iF9jetQ7OTE,1778,A boy in a hat is talking. He,smokes something and blows the smoke into the air.,looks at a camera in people.,is shown shaking the stick.,opens a bottle of mouthwash to the camera.,starts cleaning the wall with a metal tool.,gold1-orig,pos,unl,unl,unl,unl,A boy in a hat is talking.,He\nanetv_iF9jetQ7OTE,1780,He continues talking to the camera. He,smokes from the pipe again and blows the smoke out a few more times.,points at the cellphone in it.,use the stilts on recumbent bikes.,picks up a line on the car and continues mowing.,\"points up towards the raft, playing with a hanging string.\",gold0-orig,pos,unl,unl,unl,pos,He continues talking to the camera.,He\nanetv_iF9jetQ7OTE,1779,He smokes something and blows the smoke into the air. He,continues talking to the camera.,gets off the lights and walks away while they talk.,adds to a little on another cigarette.,boxes and shoots some tea in a yellow bucket.,continues to walk in and out of frame.,gold0-reannot,pos,unl,unl,unl,pos,He smokes something and blows the smoke into the air.,He\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8520,Someone stares back at her fondly. She,covers his mouth with her hand and shakes her head.,looks down at her love and adjusts someone's shoulders.,glances over his shoulder and meets her gaze.,glances over his shoulder.,,gold1-orig,pos,unl,unl,pos,n/a,Someone stares back at her fondly.,She\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8524,Our view pulls back from the couple to reveal more of their romantic surroundings. The four - pillared fountain,\"cascades into a circular pool, under a plethora of globe lights dangling from the surrounding tree branches.\",sits at the edge of the garden and peer out of the open window of the white house.,sits side - by - side.,stands beside the urinal and read an envelope.,,gold0-orig,pos,unl,unl,unl,n/a,Our view pulls back from the couple to reveal more of their romantic surroundings.,The four - pillared fountain\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8523,\"Behind them, several boys run out to watch, while the wedding guests raise their glasses to the bride and groom. Our view\",pulls back from the couple to reveal more of their romantic surroundings.,\"uncorks at the concentration studio, gazing approvingly as he gazes up at the older campaign.\",\"drifts toward the school, as someone and son jump ropes with him.\",follows over the lower part of the store's door into the arabian city and a corral root.,,gold0-orig,pos,unl,unl,unl,n/a,\"Behind them, several boys run out to watch, while the wedding guests raise their glasses to the bride and groom.\",Our view\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8522,\"Someone leans in and gives her a kiss. Behind them, several boys\",\"run out to watch, while the wedding guests raise their glasses to the bride and groom.\",walk out of the bank of a building and are driven outside.,hurry from an property gravely.,walk into the bank.,,gold0-orig,pos,unl,unl,unl,n/a,Someone leans in and gives her a kiss.,\"Behind them, several boys\"\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8521,She covers his mouth with her hand and shakes her head. Someone,leans in and gives her a kiss.,gives him a peck on the cheek.,\"flies away, leaving the track hanging out on his phone.\",\"hangs her head ecstatically, then pours liquor into a cup of tea.\",\"sits quietly, desperately taking deep breaths.\",gold0-orig,pos,unl,unl,unl,pos,She covers his mouth with her hand and shakes her head.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42521,8519,\"As she gazes into his eyes, her glossy lips curl into a tight smile. Someone\",stares back at her fondly.,notices someone still staring ahead.,waves on his hand like a sail.,glares at him then follows.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As she gazes into his eyes, her glossy lips curl into a tight smile.\",Someone\nanetv_980U7SiE0Nk,1932,Two girls are seen standing on a gymnasium floor in front of a large crowd. The girls then,begin dancing around the area while twirling batons in their hands.,throw the balls down and throw the ball around one another.,perform a routine and leads into them performing an elaborate routine.,begin dancing with one another while another man walks into frame.,,gold0-orig,pos,unl,pos,pos,n/a,Two girls are seen standing on a gymnasium floor in front of a large crowd.,The girls then\nanetv_980U7SiE0Nk,1933,The girls then begin dancing around the area while twirling batons in their hands. They,continue to spin around one another and end by holding a pose.,watch and move their bow as the style finishes.,are seen performing her baton routine on the stage while dancing to the audience and dancing around her as she walks.,end their routine and pose by looking off in the distance.,,gold1-reannot,pos,unl,pos,pos,n/a,The girls then begin dancing around the area while twirling batons in their hands.,They\nanetv_5qh_gx81Bd8,10594,A man stands in a dance studio and shows how he sets up for different dance postures. The man in white tshirt,does a spins while break dancing.,throws the ball back and forth and it does really cool.,steps out of a vacuum and works his way up to the rod and spins.,cuts the man in a yellow striped suit.,moves forward while doing tattoo moves.,gold0-orig,pos,unl,unl,unl,pos,A man stands in a dance studio and shows how he sets up for different dance postures.,The man in white tshirt\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5821,\"The bus arrives, eclipsing them from view. The bus\",\"pulls away, leaving the bench inside the quaint shelter empty.\",rushes in and sets off near the river.,crosses to a stop in the middle of a river.,is overturned with long rows of seats.,stops a few yards ahead.,gold0-orig,pos,unl,unl,unl,pos,\"The bus arrives, eclipsing them from view.\",The bus\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5817,\"Reaching over, she places her hand on top of his hand. Someone\",closes his fingers around hers.,hooks her leg shakily around someone's neck.,\"appears, then places her hands around her naked body.\",slides the paper draped over it and cranes her neck to the seated woman.,watches woozily then grimly shakes her head.,gold0-orig,pos,unl,unl,unl,pos,\"Reaching over, she places her hand on top of his hand.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5802,Someone watches from the balcony. His lips,spreading into a grin.,parting with an amused stare.,stopped nervously as someone watches the cat.,spread open onto the boater.,move into a smile.,gold1-orig,pos,unl,unl,unl,pos,Someone watches from the balcony.,His lips\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5793,\"On a balcony above, someone talks on a phone. He\",hangs up then pockets his cell.,takes turns and sip as the boxers approach them.,walks through a busy window with his reading stare.,shows a piano cigarette between the weightlifting legs.,\"sprints down a staircase, then closes the bathroom door and lines of bugs legs.\",gold0-orig,pos,unl,unl,unl,unl,\"On a balcony above, someone talks on a phone.\",He\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5806,\"As she starts for the bus stop, someone grabs her by the shoulders and presses his lips to hers. Her brow\",lifts as he kisses her.,furrows as he stares at the camera smiling.,\"furrows, then faces a sinking lieutenant.\",knits tensely and her eyes widen as she crosses her legs body as she stares tearfully at their crotch.,furrows sadly as she drops the newspaper.,gold0-orig,pos,unl,unl,unl,pos,\"As she starts for the bus stop, someone grabs her by the shoulders and presses his lips to hers.\",Her brow\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5811,She gives him an amused look. She,\"holds his gaze for a moment, then walks to the bus stop.\",\"tries to walk over to the bar, a bell in his hand.\",speeds into an open shower with a baby angel shattering on the frame.,closes her eyes and avoids a hug.,allows a faint smile then heads off.,gold0-orig,pos,unl,unl,pos,pos,She gives him an amused look.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5792,\"Someone continues to trudge back and forth by the bus stop. On a balcony above, someone\",talks on a phone.,\"enters, takes a newspaper from a set of beer magazines and takes a few quarters off a pitchfork.\",watches from the activity on a skyscraper.,smiling at him with passion.,sits beside someone in a leather chair.,gold0-orig,pos,unl,unl,pos,pos,Someone continues to trudge back and forth by the bus stop.,\"On a balcony above, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5801,\"Shaking his head, someone shrugs his hands and smiles. Someone\",quirks a smile and replies in kind.,eats bitterly and picks up a large carton of candy.,sees a group of stars flashing across a statue.,returns his gaze to the judges.,pulls up on an onlooker behind the seats of the church.,gold1-orig,unl,unl,unl,unl,unl,\"Shaking his head, someone shrugs his hands and smiles.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5818,\"Someone closes his fingers around hers. With a tender expression, someone\",watches as she shakes her head.,shuffles away over his desk.,leans forward and kisses him.,leans away from her and presses her lips to his.,\"walks away, watching the rear end of the truck sharing their route.\",gold1-orig,pos,unl,unl,unl,unl,Someone closes his fingers around hers.,\"With a tender expression, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5796,\"The lofty view shows someone fold his arms, bow his head, and stamp his feet. With a concerned look, he\",thrusts his hand on the balcony railing.,drapes the necklace around someone's waist.,\"meets the couple again, then moves closer.\",opens the room thoughtfully then looks at the young man transitioning to the tattoo company.,turns his head to the boy as he crosses to his temple and makes his way through jousting.,gold0-orig,pos,unl,unl,unl,unl,\"The lofty view shows someone fold his arms, bow his head, and stamp his feet.\",\"With a concerned look, he\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5815,As she returns her gaze to his. She,\"eyes him for a moment, then turns away.\",looks up at security.,has a beaming blue smile and they look awkward.,puts her thumb - gloss on his lips and grins.,\"watches her go, awkwardly giving him a look.\",gold1-orig,pos,unl,unl,unl,unl,As she returns her gaze to his.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5805,\"By the bus stop someone gazes at someone. As she starts for the bus stop, someone\",grabs her by the shoulders and presses his lips to hers.,shakes his head appreciatively.,crashes into a wave - filled water.,runs behind her back and sits her down.,lets her go and fiddles at her phone.,gold1-orig,pos,unl,unl,unl,unl,By the bus stop someone gazes at someone.,\"As she starts for the bus stop, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5808,\"Then her shoulders relax and she wraps her arms around him, pulling him close. With her eyes closed, someone\",rests her face against his shoulder.,lowers her wounded gaze.,stares into her eyes.,lowers his eyes to hers.,reaches out and kisses her passionately.,gold0-orig,pos,unl,unl,unl,pos,\"Then her shoulders relax and she wraps her arms around him, pulling him close.\",\"With her eyes closed, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5797,\"Down below, someone exits the building. She\",stops just outside the door as she sees someone.,\"glances at his watch and smiles, then turns as he taps across the shoulder.\",\"jumps towards the balustrade, gazing blindly.\",pulls out from under the cotton sheet.,\"gives him a sweet, cool smile.\",gold0-orig,pos,unl,unl,unl,pos,\"Down below, someone exits the building.\",She\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5799,He gives her a relieved grin. Someone,takes a few steps toward him then pauses.,gives him a club and heads to the bride's shoulder.,nods back and leaves.,lifts her brow to someone who smiles and rests her cheek against his shoulder.,\"pushes the cup harder into someone's hand, and continues to cry.\",gold1-orig,pos,unl,pos,pos,pos,He gives her a relieved grin.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5790,\"He nods, his eyes saddened. Someone\",rushes over and hugs him.,finds a bite of a pie.,puts the glass in the slot.,gently slams someone against the wall.,makes the door close.,gold0-orig,pos,unl,unl,unl,pos,\"He nods, his eyes saddened.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5789,She turns to the door. He,\"nods, his eyes saddened.\",takes her into the backyard.,takes it from her.,stops in front of her desk.,offers her a friendly smile.,gold0-orig,pos,unl,pos,pos,pos,She turns to the door.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5810,\"She rolls them, then slides out of someone's embrace. She\",gives him an amused look.,wraps her arm around his waist.,knocks him to the side.,reaches over and grabs someone's arm.,\"strokes his arm, then touches his throat.\",gold1-orig,pos,unl,pos,pos,pos,\"She rolls them, then slides out of someone's embrace.\",She\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5804,His mouth suddenly drops into a knowing. He,heads back into his apartment.,shakes it and put his face up to touch it.,nods and closes the fan.,seizes it and makes applause.,looks off with a mounted scowl.,gold1-orig,pos,unl,unl,unl,unl,His mouth suddenly drops into a knowing.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5816,\"She eyes him for a moment, then turns away. Reaching over, she\",places her hand on top of his hand.,\"holds her head under her chin, shielding her mouth with her thumb.\",finds him in her swivel chair.,pushes him along.,,gold0-orig,pos,unl,unl,unl,n/a,\"She eyes him for a moment, then turns away.\",\"Reaching over, she\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5798,She stops just outside the door as she sees someone. He,gives her a relieved grin.,taps her on the door.,paces behind her as someone enters.,pauses for a moment.,races back to the building.,gold0-orig,pos,unl,pos,pos,pos,She stops just outside the door as she sees someone.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5812,\"She holds his gaze for a moment, Then walks to the bus stop. Someone\",\"smiles, then follows.\",leans in and someone kisses it.,\"looks at her, broken by his attitude.\",is leaning against him.,comes out to the car.,gold1-orig,pos,unl,unl,pos,pos,\"She holds his gaze for a moment, Then walks to the bus stop.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5820,As they sit side by side holding hands. He,turns to someone and gives her a nod.,watches they eat some cataleya vials from descent.,starts to get out of the way.,\"runs off, his arms fuzzy carrying the body of a man.\",looks behind the bar.,gold0-orig,pos,unl,unl,unl,unl,As they sit side by side holding hands.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5819,\"With a tender expression, someone watches as she shakes her head. She\",meets his gaze with a smile.,shows the soldiers's indian body an express rifle.,sets the ball down and sits down with her back against the fireplace.,leans her head into one of the windows.,,gold0-orig,pos,unl,pos,pos,n/a,\"With a tender expression, someone watches as she shakes her head.\",She\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5809,\"With her eyes closed, someone rests her face against his shoulder. Someone\",leans his head against hers.,closes her eyes and heaves a sigh.,lifts her to his feet and glides across the room's edge.,smiles tenderly as she stares into his eyes.,wraps her arms around him.,gold0-orig,pos,unl,unl,unl,pos,\"With her eyes closed, someone rests her face against his shoulder.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5807,Her brow lifts as he kisses her. Then her shoulders relax and she,\"wraps her arms around him, pulling him close.\",watches someone steadily as she struggles to the door.,peers patiently at the folder.,hands him a handgun.,grips him.,gold0-orig,pos,unl,pos,pos,pos,Her brow lifts as he kisses her.,Then her shoulders relax and she\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5795,Looking down he sees his son on the sidewalk. The lofty view,\"shows someone fold his arms, bow his head, and stamp his feet.\",drags down the stone jetty.,rises once again as he gets to his feet.,shows trees low inside pieces of wood surrounded by small dark buildings on the street.,,gold0-reannot,pos,unl,pos,pos,n/a,Looking down he sees his son on the sidewalk.,The lofty view\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5814,\"Someone blinks, then looks away, her brow furrowing. As she\",returns her gaze to his.,\"steps away, a frown of light rises into her face as someone takes the parcel from someone.\",leaves someone he steps along.,\"watches, trade long look at his lips.\",\"descends, she touches her hand.\",gold1-reannot,pos,unl,pos,pos,pos,\"Someone blinks, then looks away, her brow furrowing.\",As she\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5794,He hangs up then pockets his cell. Looking down he,sees his son on the sidewalk.,finds a bite on screen.,looks across the hall.,\"watches, revealing an shifty look.\",sees only empty rooms.,gold1-reannot,pos,unl,unl,unl,unl,He hangs up then pockets his cell.,Looking down he\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5800,\"Someone takes a few steps toward him then pauses. Shaking his head, someone\",shrugs his hands and smiles.,extends his scalp to someone.,places the ottoman to one side as he stares at the empty one.,averts his gaze and wipes his face.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone takes a few steps toward him then pauses.,\"Shaking his head, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2752,5803,His lips spreading into a grin. His mouth suddenly,drops into a knowing.,moves as if to choke him.,learn from a heated discussion.,sticks around his torso.,steadies half a little.,gold0-reannot,pos,unl,unl,unl,unl,His lips spreading into a grin.,His mouth suddenly\nanetv_6Ke30NtYOC0,3274,The man plays the guitar in front of the camera. The man,finishes and hands the guitar to his friend.,\"continues playing the instrument, take off his chair, and smile to the camera.\",plays a bagpipe in the parking lot while the man finishes and resumes playing.,works on the drummer in the end of the song.,continue to play the piano with his hands in the air.,gold0-orig,pos,unl,unl,unl,unl,The man plays the guitar in front of the camera.,The man\nanetv_6Ke30NtYOC0,3921,A close up of a computer and shown and switch to a man playing the guitar with another man in the background. He,continues playing the guitar to the camera and moves the camera back towards the computer.,sees the ending card and smiles.,continues playing on the floor while looking off into the distance.,ends by speaking to the camera and ends by moving out of the room.,continues playing the guitar while continuing to play and he ends up playing a replay of his routine.,gold0-orig,pos,unl,unl,pos,pos,A close up of a computer and shown and switch to a man playing the guitar with another man in the background.,He\nanetv_6Ke30NtYOC0,3273,The man adjusts the monitor on himself. The man,plays the guitar in front of the camera.,blows his legs in the air.,continues working out the entire room as rocks move up and down.,rolls from a chair and pushes himself up.,stops and speaks into the microphone.,gold1-orig,pos,unl,unl,unl,pos,The man adjusts the monitor on himself.,The man\nanetv_6Ke30NtYOC0,3272,We see a monitor on a computer. The man,adjusts the monitor on himself.,uses red marker to polish the piece of canvas.,replaces an empty lens on it.,places the pincer on the man's head and shows us working - - - additional metal.,shows a star and flower speed throughout.,gold0-orig,pos,unl,unl,unl,unl,We see a monitor on a computer.,The man\nanetv_6LLDsbc8XMM,5928,The video leads into clips of two people performing martial arts to one another while a group of people watch and clap. The men,continue spinning around one another and ends with a picture and a man walking away.,take turns break dancing around the side as well as dancing together.,then throw a ball down while people in the distance do more tricks down the ball in slow motion.,continue playing with one another and ends with another man speaking to the camera.,,gold1-orig,pos,unl,unl,unl,n/a,The video leads into clips of two people performing martial arts to one another while a group of people watch and clap.,The men\nanetv_6LLDsbc8XMM,3082,People perform a form of acrobatic non - combat kick fighting while a small group of people watch. Two of them,pose together for a photo followed by a copyright.,are fencing the singers from onlookers.,\"hold each other with their arms to cheer, and spin around.\",go over to land on him holding a pose.,,gold1-orig,pos,unl,unl,unl,n/a,People perform a form of acrobatic non - combat kick fighting while a small group of people watch.,Two of them\nanetv_6LLDsbc8XMM,3083,Two of them pose together for a photo followed by a copyright. A man,walks and picks the petals of a flower off.,is swimming in a sunlit pool full of pool.,stands at the railing to demonstrate how to slip into a building.,continues speaking and leads into a man clapping a flag.,,gold0-reannot,pos,unl,unl,unl,n/a,Two of them pose together for a photo followed by a copyright.,A man\nlsmdc1057_Seven_pounds-97909,5674,Someone tentatively enters the house with the children. They,\"stand in the doorway for a moment, then the girl sets off to look about.\",sit up in bed.,drive off and racing up a rough road.,apparate in an airport stadium with someone and someone's friends.,add their horses to the country.,gold0-orig,pos,unl,unl,unl,unl,Someone tentatively enters the house with the children.,They\nlsmdc1057_Seven_pounds-97909,5681,\"Someone escorts someone, as a nurse pushes her out of the hospital in a wheelchair. They go to his car and he\",opens the door for someone to get in.,tries to the phone.,\"looks outside, charges the man before giving his son a weary self, and his throw is shown again in slow motion.\",escorts him out of the car.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone escorts someone, as a nurse pushes her out of the hospital in a wheelchair.\",They go to his car and he\nlsmdc1057_Seven_pounds-97909,5673,\"She heads down the leafy drive to someone's beach house, pulls up and looks awestruck. Someone\",tentatively enters the house with the children.,\"reads it, a smile across her face.\",runs towards the bathroom.,rushes to the garage.,sits back and kisses her chin.,gold1-orig,pos,unl,unl,unl,unl,\"She heads down the leafy drive to someone's beach house, pulls up and looks awestruck.\",Someone\nlsmdc1057_Seven_pounds-97909,5678,\"Someone, her long, dark hair tied back, considers. Looking overwhelmed, someone\",puts her hands to her mouth.,runs across the track and runs.,approaches a square stack of papers and finds it empty.,smiles across at him.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone, her long, dark hair tied back, considers.\",\"Looking overwhelmed, someone\"\nlsmdc1057_Seven_pounds-97909,5679,\"Her hand hovers over a document, then she signs it. Someone\",looks out over the ocean.,goes to the door.,looks over his shoulder.,falls out of view.,stands on the stairs.,gold0-orig,unl,unl,unl,unl,unl,\"Her hand hovers over a document, then she signs it.\",Someone\nlsmdc1057_Seven_pounds-97909,5683,Someone's in the back. He,fastens her seat belt.,sits up and faces the crowd.,passes the front desk.,watches with his jaw dropping when he remembers someone's.,,gold0-orig,pos,unl,unl,pos,n/a,Someone's in the back.,He\nlsmdc1057_Seven_pounds-97909,5676,Someone and the kids enter a bedroom and look about in wonder. They all,jump up and down on the bed.,get out of the room in front of the mirror.,peek from the closet as the boys help.,walk through a house into a room.,,gold1-orig,pos,unl,unl,pos,n/a,Someone and the kids enter a bedroom and look about in wonder.,They all\nlsmdc1057_Seven_pounds-97909,5682,They go to his car and he opens the door for someone to get in. Someone,'s in the back.,slides off the platform.,steps out into the rain.,empties his fridge then leaves new york cream.,,gold0-reannot,pos,unl,unl,unl,n/a,They go to his car and he opens the door for someone to get in.,Someone\nanetv_FmDGejzydo8,12414,A person is seen riding on a skateboard and falling down. Several more people,are shown riding on skateboards attempting tricks and occasionally falling.,are shown standing around the object watching the person in the distance.,are shown laying down on bikes while struggling.,are shown speaking to the camera and people are exercising in a playground.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen riding on a skateboard and falling down.,Several more people\nanetv_FmDGejzydo8,5731,Several shots are shown of people riding around on skateboards as well as falling down and laughing. More clips,are shown of kids performing tricks on skateboards and riding past the camera.,are shown of people riding bumper cars as well as shaking hands.,are shown of people doing tricks and tricks around them.,are shown of people performing long jump as well as water skiing on the waves.,are shown of people watching while speaking to the camera and moving back and fourth with another man protesting.,gold0-orig,pos,unl,unl,unl,unl,Several shots are shown of people riding around on skateboards as well as falling down and laughing.,More clips\nanetv_FmDGejzydo8,5730,A camera pans around a boy sitting on the ground and leads into him riding a skateboard. Several shots,are shown of people riding around on skateboards as well as falling down and laughing.,are shown of people riding around on the waters as well as surfing.,are shown of people riding on dirt bikes and riding out on snowboards.,are shown of people riding around on tubes while panning themselves into sides.,are shown of scenery as well as him walking and walking around the area talking to the camera.,gold1-orig,pos,unl,unl,pos,pos,A camera pans around a boy sitting on the ground and leads into him riding a skateboard.,Several shots\nanetv_FmDGejzydo8,12415,Several more people are shown riding on skateboards attempting tricks and occasionally falling. Some successful tricks,are shown as they move all around several different areas.,are shown as well as speaking to the camera.,are shown with the same people in sumo suits riding and celebrating.,are shown staying close up as well as winning and riding on board.,are shown as well as performing tricks on the side.,gold0-reannot,pos,unl,unl,unl,pos,Several more people are shown riding on skateboards attempting tricks and occasionally falling.,Some successful tricks\nanetv_sYpC9oPhmY4,6542,A band is gathered outside a building. A leader,is using a baton to instruct them.,swings an ax near a ladder to another log.,uses the shovel to close his performance.,throws a ball at a soccer event.,swings two women in his arms in a group.,gold0-orig,pos,unl,unl,unl,pos,A band is gathered outside a building.,A leader\nanetv_sYpC9oPhmY4,6543,A leader is using a baton to instruct them. They,are playing the drums for a small audience.,break dancing on the floor in front of the audience.,begin dancing around the stage for the ballet.,engage in a game of tug of war.,\"move on, then clap.\",gold0-reannot,pos,unl,unl,unl,pos,A leader is using a baton to instruct them.,They\nanetv_KGIDKn3t2Qk,13976,\"She tops it off with a bit of sour mix and cherries, as well as a straw. The video\",ends with the closing caption.,ends with someone looking at it.,continues as the video transitions into several more clips of people skiing on the mountain and addressed to each other.,then shows several clips of different teams as well as them in a pool pool at the same time.,ends with the video closing captions shown on a stage.,gold1-orig,pos,unl,unl,unl,unl,\"She tops it off with a bit of sour mix and cherries, as well as a straw.\",The video\nanetv_KGIDKn3t2Qk,13975,\"She adds in the rum, triple sec, syrup, sour mix, and puts the lid on the shaker. She\",shakes the shaker for a bit until it gets cold and pours the drink into the glass over the ice.,placed it on her board is several text has highlights.,starts a timer and she now half rises.,fills it with strawberries and a green can and swishes some more juice and adds it to the blends.,adds sugar out of the pot.,gold0-orig,pos,unl,unl,pos,pos,\"She adds in the rum, triple sec, syrup, sour mix, and puts the lid on the shaker.\",She\nanetv_KGIDKn3t2Qk,13974,She takes out all the things she will need to make the drink. She,gets some ice into a glass and into the shaker.,pushes a newspaper to the rear of the lounge and makes a call.,\"pauses, walks away.\",takes a sip of coffee.,continues for a long time.,gold0-orig,pos,unl,unl,unl,pos,She takes out all the things she will need to make the drink.,She\nanetv_KGIDKn3t2Qk,13973,A girl begins to make a drink called a Mai Tai. She,takes out all the things she will need to make the drink.,starts walking on the stage in front of judges.,returns a tap on the right side.,explains how to cut the pieces out with a spoon.,,gold0-orig,pos,unl,unl,pos,n/a,A girl begins to make a drink called a Mai Tai.,She\nanetv_inFPa4wxOwQ,8952,The man then walks down to the end and jumps off the board performing an impressive dive. In the end his score,is shown across a large screen.,is shown all over the channel.,is shown afterwards young man stands near him.,is shown again several times in slow motion.,is shown again while the crowd watches.,gold0-orig,pos,unl,unl,unl,unl,The man then walks down to the end and jumps off the board performing an impressive dive.,In the end his score\nanetv_inFPa4wxOwQ,16018,\"A young man dressed in a small colorful Speedo is standing at the end of a diving board. After several seconds, the man\",walks towards the end of the board and does several flips into the pool.,dives onto the board.,\"jumps a swinging bar passing the bar on multiple times before, standing, still talking, jump to a jump.\",demonstrates the long dive.,,gold0-orig,pos,unl,unl,pos,n/a,A young man dressed in a small colorful Speedo is standing at the end of a diving board.,\"After several seconds, the man\"\nanetv_inFPa4wxOwQ,16019,\"After several seconds, the man walks towards the end of the board and does several flips into the pool. When it is complete, the scoreboard is shown and a score of sixty three\",is shown in the bottom right corner of the board.,taken hits into one too.,times in slow motion to arm throw.,dimensional appear appears on a stage.,,gold0-orig,pos,unl,unl,unl,n/a,\"After several seconds, the man walks towards the end of the board and does several flips into the pool.\",\"When it is complete, the scoreboard is shown and a score of sixty three\"\nanetv_inFPa4wxOwQ,8951,A man is seen standing at the back of a diving board rubbing his hands together and standing up straight. The man then,walks down to the end and jumps off the board performing an impressive dive.,gets a drink gliding to the bottom and then pours the contents of the water.,puts the knife on his foot and continues to do the main thing.,walks around the beach while others watch on the side.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is seen standing at the back of a diving board rubbing his hands together and standing up straight.,The man then\nanetv_ew7XlNRrKyM,10836,A group of teams are gathered on an outdoor field. They,are running and trying to hit a ball with a bat.,are engaged in a game of lacrosse.,take turns trying to hit the ball.,are engaged in a game of curling play.,are drinking from a large glass of water.,gold0-orig,pos,pos,pos,pos,pos,A group of teams are gathered on an outdoor field.,They\nanetv_ew7XlNRrKyM,10837,They are running and trying to hit a ball with a bat. They,\"try to win the game, hitting the ball toward the opponent's goal.\",roll around the court and run out of the car.,kick the ball around and hit it back and forth.,measure the goal and throws it into the goal.,continue to throw the ball in and out of it.,gold0-orig,pos,unl,unl,unl,pos,They are running and trying to hit a ball with a bat.,They\nanetv_ew7XlNRrKyM,5671,A number of individuals play field hockey on a field. A man,dressed in yellow gestures left and right with his arms.,is watching on a blue field wearing white polo.,sweeps his foot before a burly man in the red suit plays to a circular sequence.,runs toward a field on the hockey rink.,jumps off the ice and runs down a track.,gold0-orig,pos,unl,unl,unl,pos,A number of individuals play field hockey on a field.,A man\nanetv_81w6SClSFMU,2426,People are working on cameras in a workshop. We,see them mount it to a tube.,see the man from tattoo.,man wearing a blue practicing sits on a square bench.,are showing how to repair the part of the bike.,,gold0-orig,pos,unl,unl,pos,n/a,People are working on cameras in a workshop.,We\nanetv_81w6SClSFMU,2429,We see a blonde man making adjustments to the tube. We,see the closing end screen.,then grabs a photo of her near his head and kisses it on the cheek.,see the man ski skiing showing a tall paddy field.,see a man standing on water skiing.,see the title outro appear in his shadow.,gold1-orig,pos,unl,unl,unl,pos,We see a blonde man making adjustments to the tube.,We\nanetv_81w6SClSFMU,2425,We see an opening title screens. People,are working on cameras in a workshop.,walk into a racetrack and practice.,see people riding rafts in a river.,are standing on a large field wearing a mask.,are going down the slope.,gold1-orig,pos,unl,unl,unl,pos,We see an opening title screens.,People\nanetv_81w6SClSFMU,2428,The lady then dances the hula hoop with the tube. We,see a blonde man making adjustments to the tube.,to the beach performance.,woman uses hula hula simultaneously.,\", finally the ladies take a backward step and shows how to properly wrap the toy tip by braid it on their mark.\",see the two positions and hula hoops.,gold0-reannot,pos,unl,unl,unl,unl,The lady then dances the hula hoop with the tube.,We\nlsmdc1010_TITANIC-77216,2329,Someone raises his glass to someone. Someone,\"lifts his glass, frowns and then sips.\",appears and steps into the testing chamber.,smiles and pushes out of the chair.,\"pulls a strand of hair from her hand, hangs it in its mouth.\",\"looks off, obscuring people with all glow.\",gold1-orig,pos,unl,unl,unl,unl,Someone raises his glass to someone.,Someone\nlsmdc1010_TITANIC-77216,2330,\"Someone lifts his glass, frowns and then sips. Later, a waiter\",pushes a cart laden with desserts.,brings him a long - upholstered table.,brings someone to a roman mixing bowl.,drinks at a table.,sets someone's cubes on a tray.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone lifts his glass, frowns and then sips.\",\"Later, a waiter\"\nlsmdc0022_Reservoir_Dogs-59196,7816,People walk out of the warehouse talking amongst themselves. He then,slowly turns his head towards the cop.,strokes the turquoise larger paint while the audience cheers.,enters through the gloom.,returns to talking through a window.,lights a cigarette and walks past to hold out the fire.,gold1-orig,pos,unl,pos,pos,pos,People walk out of the warehouse talking amongst themselves.,He then\nlsmdc0022_Reservoir_Dogs-59196,7817,He then slowly turns his head towards the cop. Someone slowly,walks toward the cop.,picks up the phone.,walks to the door of her room.,makes his way back to the ground.,moves towards the couch.,gold0-orig,pos,pos,pos,pos,pos,He then slowly turns his head towards the cop.,Someone slowly\nanetv_ni6VySdH0XY,8416,A person is sharpening a knife behind a table. People,are standing in front of the table watching.,\"are cutting the borders and glues, and a man is out on a table.\",are chopping something on them.,are engaged in a game of arm wrestling.,,gold0-orig,pos,unl,unl,pos,n/a,A person is sharpening a knife behind a table.,People\nanetv_ni6VySdH0XY,8417,People are standing in front of the table watching. He,picks up the knife sharpener and uses it to sharpen the knife.,climbs his cards together.,drops his beard with a pair of tongs.,gets in a blue shirt water and is showing how to make the drink.,falls off the shelf and pumps a fist.,gold0-orig,pos,unl,unl,unl,unl,People are standing in front of the table watching.,He\nanetv_chMp_uvII5g,11796,A man at the top pushes them. The group,rides down hill with the camera pointed up the hill.,takes their equipment out of the water.,fly slowly across the sky.,of people comes in to hug the person down on the ground and another young man sees them.,drives into the kids.,gold0-orig,pos,unl,unl,unl,unl,A man at the top pushes them.,The group\nlsmdc3003_40_YEAR_OLD_VIRGIN-1149,17176,Someone approaches the stock room. Someone and someone,sign in at the registration.,step into the lead agent.,\"get to a table at the second movement, where someone takes one.\",step in to the bow.,sit face - in.,gold1-reannot,pos,unl,unl,unl,pos,Someone approaches the stock room.,Someone and someone\nanetv_DEVD2oszH48,3380,A replay shows the gymnasts performance in slow motion. The gymnast,sits with her coach and is congratulated.,stands up above her and jumps over the balance beam while talking.,performs a gymnastic dive while jumping around in circles in the melee.,\"cheers her leap, dismounts, gets up, and flips over.\",does a flip and lands on the mat.,gold1-orig,pos,unl,unl,unl,pos,A replay shows the gymnasts performance in slow motion.,The gymnast\nanetv_DEVD2oszH48,3379,Other gymnast look on and nod with approval. A replay,shows the gymnasts performance in slow motion.,to a story appears on the screen.,of a violin then is shown.,shows the credits of the video as he plays the accordion and finishes.,,gold0-orig,pos,unl,unl,unl,n/a,Other gymnast look on and nod with approval.,A replay\nanetv_DEVD2oszH48,3378,A large crowd applauds the performance. Other gymnast,look on and nod with approval.,make out in the gym.,perform a song and performance on the stage.,perform dancing cartwheel at a performance.,prepares to lift weights over his head.,gold0-orig,pos,unl,unl,unl,unl,A large crowd applauds the performance.,Other gymnast\nanetv_DEVD2oszH48,3377,A gymnast gets ready and stretches out before an event. The gymnast runs then,tumbles down a platform during an olympic game finally landing on a padded mat.,does several more flips and lifts flips and high kicks.,spins around as the crowd cheers.,jumps from the floor onto the bike.,lets go of the surfboard.,gold1-orig,unl,unl,unl,unl,unl,A gymnast gets ready and stretches out before an event.,The gymnast runs then\nanetv_hXGE1GGTHzM,2347,\"This man is trying to shoot the white ball on the pool table backwards. He keeps trying to shoot it backwards, but he just can't so he\",decided to do it the regular way and shoot forwards.,can see the corner of his mouth and continues to do several rounds.,is able to run.,is able to get over the ice until it falls out.,,gold0-orig,pos,unl,unl,unl,n/a,This man is trying to shoot the white ball on the pool table backwards.,\"He keeps trying to shoot it backwards, but he just can't so he\"\nanetv_hXGE1GGTHzM,2348,\"He keeps trying to shoot it backwards, but he just can't so he decided to do it the regular way and shoot forwards. When he does it, he\",puts the cue stick down and walks away.,\"is withdrawing, it's startling how charming it is.\",completes the timer really well because he can't.,\"does a good job where he does n't realize it's multiple name, only the cover partially turned from his radiator.\",\"throws it open and looks again at the third, scares the young girl.\",gold0-orig,pos,unl,unl,unl,unl,\"He keeps trying to shoot it backwards, but he just can't so he decided to do it the regular way and shoot forwards.\",\"When he does it, he\"\nlsmdc1058_The_Damned_united-98596,13295,Someone throws his arms around someone and hugs him close. Someone,screws his eyes up and returns the embrace.,licks himself very much for looking at someone.,hangs up someone and whispers in his ear.,strokes his hair and drops it into someone's big crotch.,rides the long path forward and down the corridor.,gold1-orig,pos,unl,unl,unl,pos,Someone throws his arms around someone and hugs him close.,Someone\nlsmdc1058_The_Damned_united-98596,13301,The boys scamper to someone. Someone,smiles as his sons hug someone.,plots unfold for an iv.,\", she holds the door open for the redcap who holds the door open.\",catches his breath and puts in his eyes.,wrenches the blossoming girl from chains.,gold0-orig,pos,unl,unl,unl,unl,The boys scamper to someone.,Someone\nlsmdc1058_The_Damned_united-98596,13289,\"Someone strolls towards his house, then turns back. Someone\",\"fixes someone with a sincere, imploring look.\",refills his initial glasses.,\"looks over at him, lying on the couch, or waking him.\",leans into the passenger seat and regards the cash.,fixes his image on his face.,gold1-orig,pos,unl,unl,pos,pos,\"Someone strolls towards his house, then turns back.\",Someone\nlsmdc1058_The_Damned_united-98596,13293,\"Then, he raises his open hands out towards someone. Someone\",stands and walks towards his old friend.,runs to the silver paned gate.,bows at the forefront.,runs around in the royal family.,\"leaves the room, opens the circular appointed desk and scurries into the library.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, he raises his open hands out towards someone.\",Someone\nlsmdc1058_The_Damned_united-98596,13297,Someone blinks slowly and shakes his head. A tender smile,spreads across someone's face.,spreads across someone's forehead.,spreads across her smooth skin.,\"extends over her laotong's gym face, then holds his gaze, his lips parting.\",spreads across his eyes.,gold1-orig,pos,unl,unl,unl,pos,Someone blinks slowly and shakes his head.,A tender smile\nlsmdc1058_The_Damned_united-98596,13288,Someone walks closer and stops. Someone,\"strolls towards his house, then turns back.\",grab at him as she stands in his way.,kisses her gently and gives his hand a squeeze.,looks at his family once.,dashes down the stairs.,gold1-orig,pos,unl,unl,pos,pos,Someone walks closer and stops.,Someone\nlsmdc1058_The_Damned_united-98596,13296,Someone is wide eyed as he speaks into someone's ear. Someone,blinks slowly and shakes his head.,\"are fog - set as the young someone, wearing uniform, sits with his coach.\",stares at the birds.,\"is less than relaxing, although the jacket is still close.\",wraps his arms around him.,gold0-orig,pos,unl,unl,pos,pos,Someone is wide eyed as he speaks into someone's ear.,Someone\nlsmdc1058_The_Damned_united-98596,13299,He tightens his embrace and closes his eyes. They,step back and look at each other.,\"them, people lean into each other.\",\"the fan, someone draws someone back over his shoulders like a powerful - bodied teacher.\",break his hold and pulls the bed across his chest.,\"his sorting over, he addresses a statue.\",gold0-orig,pos,unl,unl,unl,unl,He tightens his embrace and closes his eyes.,They\nlsmdc1058_The_Damned_united-98596,13292,\"He rubs the finger of his clenched fists together. Then, he\",raises his open hands out towards someone.,offers a cracker and talks about it.,sweeps the student sideways and grabs a machine - sized object toward the neck.,spikes the final bow.,\"steps forward, pleads by the moment.\",gold0-orig,pos,unl,unl,unl,unl,He rubs the finger of his clenched fists together.,\"Then, he\"\nlsmdc1058_The_Damned_united-98596,13294,Someone stands and walks towards his old friend. Someone,throws his arms around someone and hugs him close.,comes down the stairs at the throw as someone and someone enter.,both cowers beneath the.,\"leaves someone, who stands behind a statue by her window.\",watches as someone kisses someone and struggles against it.,gold0-reannot,pos,unl,unl,pos,pos,Someone stands and walks towards his old friend.,Someone\nlsmdc1058_The_Damned_united-98596,13298,A tender smile spreads across someone's face. He,tightens his embrace and closes his eyes.,is unaware of his honor in his hand as his wife grins.,\"hobbles closer to someone's smiling father, separating the boys from the village.\",obediently pushes him back and climbs down at the foot of the platform.,peers down through a window and peers out at a inlet with green gray clouds.,gold0-reannot,pos,unl,unl,unl,unl,A tender smile spreads across someone's face.,He\nlsmdc1058_The_Damned_united-98596,13290,\"Someone fixes someone with a sincere, imploring look. Someone\",\"looks at someone, then hangs his head and shakes it.\",turns and walks away with his back clasped behind him.,rushes to the office while someone spots a woman seated by the podium.,kisses the shapely section of his body.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Someone fixes someone with a sincere, imploring look.\",Someone\nlsmdc1058_The_Damned_united-98596,13291,\"Someone looks at someone, then hangs his head and shakes it. He\",rubs the finger of his clenched fists together.,sits on the couch and bares his teeth.,\"gives a thumbs up to someone, then bows.\",looks into his eyes and shrugs.,holds up his hand to lead someone down.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone looks at someone, then hangs his head and shakes it.\",He\nanetv_c7HroaL0WDc,14815,\"A special effect screen appears and it's mainly orange and brown with white thin lines, logos, words and numbers. Men are now sitting in a black and yellow speedboat that is going very first, and a man\",\"is shown wake boarding, flipping and spinning in the air.\",jumps holding his belly on the ski side and he.,stands in front of them doing exercise.,is shown getting ready to do a tutorial on a hockey man.,,gold0-orig,pos,unl,unl,unl,n/a,\"A special effect screen appears and it's mainly orange and brown with white thin lines, logos, words and numbers.\",\"Men are now sitting in a black and yellow speedboat that is going very first, and a man\"\nanetv_c7HroaL0WDc,14816,\"A man is wake boarding again, large wakes in the water is shown, and the speedboat is shown driving. A very elaborate outro begins and it\",\"includes logos, company names, special thanks, clips of boats and people on the water, then ends with the website.\",is 2 white screen and a different color that has been done before being kissed by people.,makes a large screen that has just read.,appears to be several riders rafting during a race.,,gold0-orig,pos,unl,unl,unl,n/a,\"A man is wake boarding again, large wakes in the water is shown, and the speedboat is shown driving.\",A very elaborate outro begins and it\nanetv_c7HroaL0WDc,18729,An intro leads into several shots of a boat sitting on the water as well as people riding behind the boat and a man speaking to the camera. A person,demonstrates how to use the boat while the camera pans around the inside and outside and showing more clips of people wakeboarding and moving.,is seen performing various games and penguins from different places as well as the yacht stuck in the ocean.,follows close ups of the shoes as well as sitting on water and looking back into the camera.,is seen riding up a large kite followed by more people as well as by the water running down and out onto the side.,walks over the raft as well as the water around a friend and bowing along the water while looking back at the camera.,gold0-orig,pos,unl,unl,pos,pos,An intro leads into several shots of a boat sitting on the water as well as people riding behind the boat and a man speaking to the camera.,A person\nlsmdc3081_THOR-37813,16770,Someone slowly sets the caskets back down again. Someone,turns and faces someone.,dances with someone and his men.,\"perches on the window at the back room a first set, smoking as the dancer begins.\",\"or her bearded mother is downcast for a moment, then head to his feet below the sun on the wall.\",dominates a intense search of someone.,gold0-orig,pos,unl,unl,unl,unl,Someone slowly sets the caskets back down again.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18312,He takes a red book from his pocket. Someone,\"opens the photo album and sees a magic moving photograph of his parents, holding a child.\",draws the captain from a backpack.,studying image of familiar face appear.,closes his eyes then peers down into someone's sleep.,preparing to throw the tokens someone serves.,gold0-orig,pos,unl,unl,unl,unl,He takes a red book from his pocket.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18314,His mother kisses the child's hand. Someone,looks up at his friend.,reaches someone's hand and offers his wife a hug.,tearfully turns around to greet the boy with two coffees.,\"looks at him and sighs, her face under someone's pain.\",,gold1-orig,pos,unl,unl,unl,n/a,His mother kisses the child's hand.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18305,\"As the Gryffindors celebrate, someone looks excited. Someone\",can't believe it.,addresses someone's other coaches.,looks at his coach.,puts a arm around him.,leans forward and rubs his hands together.,gold1-orig,pos,unl,pos,pos,pos,\"As the Gryffindors celebrate, someone looks excited.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18307,The triumphant Gryffindors celebrate their victory. Someone,\"beams at someone, who raises his bushy eyebrows, nods and smiles.\",takes their break dancing.,grabs the man on his knees and sprints around the platform.,spars with the two men below.,,gold0-orig,pos,unl,unl,pos,n/a,The triumphant Gryffindors celebrate their victory.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18309,A porter puts the snowy owl carefully into the guard's van. Someone,sees someone waving goodbye.,'s folded in an ashtray.,\"gets off his snowboards, and goes back out the back door.\",is playing the audio on a tarmac.,check the adjoining trashcan.,gold0-orig,pos,unl,unl,unl,pos,A porter puts the snowy owl carefully into the guard's van.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18311,He runs along the crowded platform till he reaches someone. He,takes a red book from his pocket.,follows him and suddenly impulse at the rope someone climbs past him.,stops on the well - looking sequence and starts to swim in the direction of the sailboat.,glances up from up into the night sky and starts driving.,mounts a passengers' deck.,gold0-orig,pos,unl,unl,unl,pos,He runs along the crowded platform till he reaches someone.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18310,Someone sees someone waving goodbye. He,runs along the crowded platform till he reaches someone.,stares down heavily.,gives him a drink.,drapes an arm around someone.,wears a broad - back smile.,gold1-orig,pos,unl,unl,unl,unl,Someone sees someone waving goodbye.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18306,\"As the Gryffindors congratulate him, someone and his cronies sit stony - faced. The green and white banners above their heads\",change to scarlet and gold.,begin to make their way outside.,make them across the length of the building.,are clipped in mid - air and closer look.,are pulled into the forcing.,gold0-reannot,pos,unl,unl,unl,unl,\"As the Gryffindors congratulate him, someone and his cronies sit stony - faced.\",The green and white banners above their heads\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18308,\"Someone beams at someone, who raises his bushy eyebrows, nods and smiles. A porter\",puts the snowy owl carefully into the guard's van.,stands on his boarding platform and joins a hard roll.,pushes his trolley past a crack - lined stone corridor.,leads him to a sporting field: a very decent brick wall of bonnet.,,gold0-reannot,unl,unl,unl,unl,n/a,\"Someone beams at someone, who raises his bushy eyebrows, nods and smiles.\",A porter\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96311,18315,Someone looks up at his friend. He,shakes his huge hand and gives the giant a hug.,shakes up her autograph.,washes him and slaps his face away.,are not volcanic rock.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone looks up at his friend.,He\nlsmdc3027_GET_HIM_TO_THE_GREEK-12436,6834,Someone exits the bathroom wearing her scrubs. A view from behind someone,shows his bare chubby rear.,shaves her shiny hair sew - over.,'s house shows someone.,shows her identical dresses.,,gold0-orig,pos,unl,unl,unl,n/a,Someone exits the bathroom wearing her scrubs.,A view from behind someone\nlsmdc3027_GET_HIM_TO_THE_GREEK-12436,6835,\"A view from behind someone shows his bare chubby rear. In a park overlooking the Pacific, someone\",talks on the phone with his mother.,turns over and puts someone's phone down.,\"stands by his window, looking in.\",faces a crevasse stocked with an adidas.,uses his radio.,gold1-orig,pos,unl,unl,unl,pos,A view from behind someone shows his bare chubby rear.,\"In a park overlooking the Pacific, someone\"\nlsmdc3009_BATTLE_LOS_ANGELES-281,16596,Someone stabs it and clear liquid spurts from a mechanical vent. He,\"stabs again, water spurts from tissue.\",\"pulls the drapes tight, and spies someone into an office.\",takes a knife off then sweeps the room into the operating room.,brings out a bottle of milk and creeps closer to someone.,goes to the window and moves it on fire.,gold0-orig,pos,unl,unl,unl,unl,Someone stabs it and clear liquid spurts from a mechanical vent.,He\nanetv_Xc70KHd4zhI,6476,\"He then taunts the customer with the cup, keeping it out of reach. He then\",slides it down the counter where she can retrieve it.,adds a plume with soda and two liquors and bottle liquid.,puts the finished ashtray and picks up some tomatoes.,\"draws it away from his neck, finally the one who eventually continues, sticking his tongue into the microphone with a start.\",walks to the house of the long line until they reach home.,gold0-orig,pos,unl,unl,unl,unl,\"He then taunts the customer with the cup, keeping it out of reach.\",He then\nanetv_Xc70KHd4zhI,6475,A man stands behind a food counter and places food in a cup with a stick. He then,\"taunts the customer with the cup, keeping it out of reach.\",takes a bite and peels it together while taking the fork.,\"demonstrates with frisbees and takes off of the snacks, looking keep going in tricks.\",serves scotty noodles then cooks meat.,pours some eggs into the bowl and adds ingredients out of a pan of eggs and blended.,gold0-orig,pos,unl,unl,pos,pos,A man stands behind a food counter and places food in a cup with a stick.,He then\nanetv_Xc70KHd4zhI,17736,The man fills a white bowl with food. The man,slides the bowl towards the lady.,adds browned kit and lemonade and lands in the bowl marked walker.,is drained the food making cake.,then pours many clean the cart leaves.,,gold0-orig,pos,unl,unl,unl,n/a,The man fills a white bowl with food.,The man\nanetv_Xc70KHd4zhI,17735,A lady gives a man a piece of paper. The man,fills a white bowl with food.,slides the knife out of the table.,pierces his nose with the electric clippers.,applies wax paper to wax the ski.,turns talking and talks to the camera for spreading portions of her hand.,gold1-reannot,unl,unl,unl,unl,unl,A lady gives a man a piece of paper.,The man\nanetv_Gg8Ha8OPtZ0,12191,The boy in the red shirt bowls with a large green ball and hits a strike. He,is ecstatic after his win and begins jumping with joy.,'s away as the goalie has crowded the people to put the hammer back on their hitting table.,tosses the ball to the camera and in the other into the yard.,stuffs the balls into the hoop and runs it into the wood.,enters a shot on the boat.,gold0-orig,pos,unl,unl,unl,unl,The boy in the red shirt bowls with a large green ball and hits a strike.,He\nanetv_Gg8Ha8OPtZ0,12190,\"There are two young boys, one dressed in a red shirt and the other in a striped shirt at a bowling alley. The boy in the red shirt\",bowls with a large green ball and hits a strike.,watches the boys and the loser tells the murmur to be one bit.,goes to the sink and starts to pound it open without dropping it.,rolls the ball back over his book and tries to pull a red ball over his head.,,gold0-orig,pos,unl,unl,pos,n/a,\"There are two young boys, one dressed in a red shirt and the other in a striped shirt at a bowling alley.\",The boy in the red shirt\nlsmdc0030_The_Hustler-64618,12557,\"Someone allows a perfunctory bow of his head, a courtly gesture, to someone's manager. Someone\",\"looks away, avoiding his eyes.\",pulls out a large revolver and a rifle.,watches as he backs groggily into a pilot in an electrical boat.,arrives with also spectators.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone allows a perfunctory bow of his head, a courtly gesture, to someone's manager.\",Someone\nlsmdc0030_The_Hustler-64618,12558,\"Someone looks away, avoiding his eyes. Now it\",'s someone's voice we hear calling out the shots.,breaks from someone's windshield and winces.,is a welcoming wrinkle.,passes a vast domed paneled floor adorned with marble panes of wood and ocean chandeliers.,'s blocked once they reach the dome of downtown avenue.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone looks away, avoiding his eyes.\",Now it\nlsmdc0030_The_Hustler-64618,12559,\"Now it's someone's voice we hear calling out the shots. He circles the table, a proud, cocky smile on his face, and superimposed over his movements we\",\"see the spectators, hunched up in their chairs, and someone 'face, glowering, hostile.\",see the bonnet dorm low over him again.,can not see him again.,recognize someone then answering him braiding himself.,look slightly towards the second man's hoverboard and wide yellowstone.,gold0-reannot,pos,unl,unl,unl,unl,Now it's someone's voice we hear calling out the shots.,\"He circles the table, a proud, cocky smile on his face, and superimposed over his movements we\"\nanetv_6RdkwoTi-98,3707,\"The man spins a ball, attached to a rope, around and around. The man\",lets the ball goes and watches as it lands off screen.,performs with a hula rod and starts to decorate the suit's handle.,lifts the javelin down the girl to two border skiing.,spins on the small board and uses several hand grips to get it free.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man spins a ball, attached to a rope, around and around.\",The man\nanetv_6RdkwoTi-98,3705,\"A man performs a hammer throw in an outdoor area, caged in, surrounded by crowds of people watching. A man in a red t - shirt\",approaches a players circle on the ground inside of an enclosed metal fence area.,poses with black flags.,follows the first boy down the diving board replays the two jumps gracefully.,talks before a video showing replays in progress.,is seen holding the tennis ball.,gold0-reannot,pos,unl,unl,unl,unl,\"A man performs a hammer throw in an outdoor area, caged in, surrounded by crowds of people watching.\",A man in a red t - shirt\nanetv_6RdkwoTi-98,3706,A man in a red t - shirt approaches a players circle on the ground inside of an enclosed metal fence area. The man,\"spins a ball, attached to a rope, around and around.\",holds a picture and holds his hand across the garbage to put his gun on.,turns the racquet quickly around and begin to weld.,dips down with batons as he spins them.,stands on the stage holding a pose and a musician dances in front of a stage.,gold0-reannot,pos,unl,unl,unl,unl,A man in a red t - shirt approaches a players circle on the ground inside of an enclosed metal fence area.,The man\nanetv_1YGz5CQBflM,5429,The man prepares his arm as the other grabs his hand and he pretends to kick his head. More people step up to arm wrestle this man while food is being shown and the loser,gets food all over him.,gets on him and grabs him to his feet.,helps him into rubbing his hands.,is the last big shot.,walks back and hits the ball away.,gold1-orig,pos,unl,unl,unl,unl,The man prepares his arm as the other grabs his hand and he pretends to kick his head.,More people step up to arm wrestle this man while food is being shown and the loser\nanetv_aBdrTqSnWbw,16241,A person in military style clothing runs through a course and takes cover wooden logs stacked up. A person in military style clothing stands,aiming his gun over a concrete wall before ducking behind it for cover.,ready standing before them.,stock pieces of debris from the top of a wooden gate.,shuffle down over the water.,ready for them to come around.,gold0-orig,pos,unl,unl,unl,unl,A person in military style clothing runs through a course and takes cover wooden logs stacked up.,A person in military style clothing stands\nanetv_aBdrTqSnWbw,162,The outside of a paintball store is shown. A man,\"talks to the camera from inside the store, interspersed by scenes of people engaging in paintball.\",sits on a dirt bike holding a pole.,\"stands behind a flat screen, talking and showing how to play rowing machine.\",is sanding materials on a log.,shows a title lens.,gold0-orig,pos,unl,unl,unl,unl,The outside of a paintball store is shown.,A man\nanetv_aBdrTqSnWbw,16243,A man runs out from a house onto a grass field with a paintball gun. A man,runs around a houses then dives behind a wall for cover.,stands up as a dog chases after him.,walks to a trailer frame and leaps across the bike.,throws a green dart on the ground.,runs and throws a dart across a bridge.,gold0-orig,pos,unl,unl,unl,unl,A man runs out from a house onto a grass field with a paintball gun.,A man\nanetv_aBdrTqSnWbw,16242,A person in military style clothing stands aiming his gun over a concrete wall before ducking behind it for cover. A man,runs out from a house onto a grass field with a paintball gun.,shines off different backs and uses holes while the pins on the walls are shown.,in a suit uniform the boot and twists it towards the suit.,\"grabs a knife in his hand and walks through the scope, attached to a bottle with red and green colored holes.\",\"opens his right eye, revealing the guard and passes to his friends.\",gold0-reannot,pos,unl,unl,unl,pos,A person in military style clothing stands aiming his gun over a concrete wall before ducking behind it for cover.,A man\nanetv_Z6WJ0A9VvxQ,898,Peolpe are running in street under a bridge. people,are standing and running through the bridge and street.,are shown wearing tubes down a dirt hill.,ride off the the hot water inside the boat.,are running through a river as the matadors try to work.,,gold0-reannot,pos,unl,unl,unl,n/a,Peolpe are running in street under a bridge.,people\nlsmdc3025_FLIGHT-12021,13558,\"Someone sits in a chair on the veranda, taking pictures. Someone\",steps out in a bathrobe.,goes through a wall with nervous glances as he walks away.,shows the packet the painted polish.,\"makes his way up the bed, which stands by him.\",,gold1-orig,pos,unl,unl,pos,n/a,\"Someone sits in a chair on the veranda, taking pictures.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70540,6903,\"The Sultan is seated in his royal chair, flanked by people and surrounded by his minions. Someone\",holds the missing grail diary pages.,uncorks a cigarette stuck to his mouth.,stands in the basement in a wheelchair.,sees the guards and sees him.,has a great effort that he is making a loving - tenderness sound.,gold0-reannot,pos,unl,unl,unl,unl,\"The Sultan is seated in his royal chair, flanked by people and surrounded by his minions.\",Someone\nanetv_jWzLhOqcGtE,6203,They run on the court and continue to dribble the ball. They,jump up and make a basket.,perform quickly with the balls that they are trying to hit the ball.,throw the ball farther back into the net.,send the red team together into a goal.,,gold0-orig,pos,unl,pos,pos,n/a,They run on the court and continue to dribble the ball.,They\nanetv_jWzLhOqcGtE,6202,A man is dribbling a basketball. They,run on the court and continue to dribble the ball.,are hitting a football.,are playing on a field.,are playing a game of indoor soccer.,are sitting around the people play squash.,gold0-orig,pos,unl,unl,unl,unl,A man is dribbling a basketball.,They\nanetv_Mmdcsw_SEzc,12388,A boy is building a sandcastle near the edge of the ocean. He,forms huge circles and stands up.,pours water onto a kayak board.,does her first jump before moving again and raising her arms.,sits on top of the surfers.,raises an elbow to speaks to the camera.,gold0-orig,pos,unl,unl,unl,pos,A boy is building a sandcastle near the edge of the ocean.,He\nanetv_YBrcJxnXuVU,13314,A woman sits at a table and shrugs her arms. The woman,picks up the glass with her mouth and drinks the entire glass of beer.,stands on top of the auditorium.,holds her waist high up.,kneels back and begins lifting weights.,takes a seat before arbor.,gold1-reannot,pos,unl,unl,unl,unl,A woman sits at a table and shrugs her arms.,The woman\nanetv_YBrcJxnXuVU,13315,The woman picks up the glass with her mouth and drinks the entire glass of beer. The woman,sets the glass back on the table with her hand.,puts it on the counter and pops it in her mouth.,drinks the beer and begin to drink and then sips.,takes a glass and finishes the drink in the glass frame.,continues taking the drink out of her glass.,gold0-reannot,pos,unl,unl,unl,unl,The woman picks up the glass with her mouth and drinks the entire glass of beer.,The woman\nanetv_YBrcJxnXuVU,5122,The woman grab the cup with her mouth and drinks all the beer buttons up. woman wearing white shirt and white blazer,is in a bar and drinks a beer glass.,and football uniform stepped out onto the balcony.,is charged with an emery.,is in the middle of the court holding a metal bar talking to the camera.,,gold1-reannot,pos,unl,unl,unl,n/a,The woman grab the cup with her mouth and drinks all the beer buttons up.,woman wearing white shirt and white blazer\nanetv_m34BYRanODU,12029,A woman talks in a backyard wearing loose clothes. The woman exercise,stepping on the mat.,and plays with a book.,and washes the ladies face.,pulling a cable on another woman's lap knitting.,on the working screen.,gold1-reannot,pos,unl,unl,unl,unl,A woman talks in a backyard wearing loose clothes.,The woman exercise\nanetv_LZ1142kuCnI,11205,A person is seen walking around a room carrying a broom. She,pushes it along the wall beside her.,continue to swing down while others watch.,touches a window of water and throws a rag to wipe them.,is then seen swinging around.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen walking around a room carrying a broom.,She\nanetv_LZ1142kuCnI,11206,She pushes it along the wall beside her. In the end she,turns around and pushes it back.,throws up her streamers and takes a picture off of a wall.,hits the series of balls and walks away from the camera.,\"lays on her board, so she paints the bottom of her long, shiny red hair hopscotch.\",,gold0-reannot,pos,unl,unl,unl,n/a,She pushes it along the wall beside her.,In the end she\nanetv_9-U2WOLIqB8,17342,A shot of pins are shown sitting on a lane followed by a man walking into frame. The man,spins a ball to go around the pins to hit more in the end.,spins all around several objects while speaking to the camera and jumps down to the end.,waves the camera out of frame and then walks back to the camera followed by a basketball.,balances and shoots another dart and throws it up.,leads into several clips of the bicycle bicycle around as well as being gored and followed by the man with black hair.,gold1-orig,pos,unl,unl,unl,unl,A shot of pins are shown sitting on a lane followed by a man walking into frame.,The man\nanetv_9-U2WOLIqB8,17343,The man spins a ball to go around the pins to hit more in the end. The person,spins another ball that is followed shortly afterwards.,misses the ball all times and chases after the men.,walks into the lane and blows into a path behind the camera.,scores in more clips of the group celebrating.,,gold0-orig,pos,unl,unl,pos,n/a,The man spins a ball to go around the pins to hit more in the end.,The person\nanetv_yN3e-giBxns,10352,It's a nighttime outside at a horse ranch and a lot of people are standing around. Suddenly a horse with a man riding on him quickly starts running and there,'s a calf roped to the horse who is running in front of them.,is a person sitting behind him mowing.,are people jogging the other side of the horse chasing the other.,is a man holding pan standing on a horse.,,gold1-orig,pos,unl,unl,unl,n/a,It's a nighttime outside at a horse ranch and a lot of people are standing around.,Suddenly a horse with a man riding on him quickly starts running and there\nanetv_yN3e-giBxns,10354,\"The man lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up. The man gets up, walks back to his horse, jumps back on and the horse\",slowly begins to walk as the calf is trying to stand up.,claps for him as the entire boy descends into frame.,falls and walks away.,runs into the backyard swing a small calf.,comes and walks back to his kids as they walk to have a jump.,gold0-orig,pos,unl,unl,unl,unl,\"The man lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up.\",\"The man gets up, walks back to his horse, jumps back on and the horse\"\nanetv_yN3e-giBxns,10353,Suddenly a horse with a man riding on him quickly starts running and there's a calf roped to the horse who is running in front of them. The man,\"lassos the calf, jumps off the horse, throws the calf on its side and quickly ties it up.\",\"dismounts from the horse, jumps over and sits up in bed, this time not moving his left foot.\",continues turning in the sped up mode and moves back and forth back to doing that leg out.,is talking to a cattle who is on the horse running back and forth along with other matadors.,,gold0-orig,pos,unl,unl,unl,n/a,Suddenly a horse with a man riding on him quickly starts running and there's a calf roped to the horse who is running in front of them.,The man\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9667,6633,Someone enters the classroom and closes the shutters with his wand. He,pulls down a screen.,takes his rifle and looks around.,\"stares at him, overcome with emotion, someone faces himself.\",finds the watch outside and starts it in.,hangs down against the door of his woman.,gold1-orig,pos,unl,unl,unl,unl,Someone enters the classroom and closes the shutters with his wand.,He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9667,6632,\"A single autumn leaf flutters down from the Whomping Willow, then all the leaves fall at once and the tree shakes its bare branches. Someone\",enters the classroom and closes the shutters with his wand.,\"blinks at the current, then shuts his light and switches back on.\",picks up the bonfire and takes a pencil from the hand of her father.,looks up at the dancers.,\"takes the bird's pass, and reaches for the letter box.\",gold0-reannot,pos,unl,unl,unl,unl,\"A single autumn leaf flutters down from the Whomping Willow, then all the leaves fall at once and the tree shakes its bare branches.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85653,19154,Someone lies on his back in bed and gazes out a window with a faraway look. Sunlight,bathes his face as he rests his hands on his stomach.,disappears amid the silhouettes of men watching the house.,\"comes to a stop at a window, and someone has onto the couch.\",\"plates with him, someone, now on a bed.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone lies on his back in bed and gazes out a window with a faraway look.,Sunlight\nlsmdc1035_The_Adjustment_Bureau-85653,19157,\"Now, our view sweeps down the front of his towering apartment building. Someone\",\"makes his way across, then waits at his bus stop.\",\"clenches his jaw, shakes his head in frustration and strolls up on his cell block.\",drives an fluidly lined street.,topples his kids in bed.,comes coming out over the garage toward the house.,gold0-orig,pos,unl,unl,unl,pos,\"Now, our view sweeps down the front of his towering apartment building.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85653,19163,\"Someone gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site. A short distance ahead, he\",notices a dark - haired woman striding down the sidewalk.,sees a young woman looking in a mirror.,\"skids around an corner, passes under traffic traffic and tumbles.\",finds a scope on a sculpture.,\"sees a beautiful woman with long, brown hair, with a worn collar jacket over her bare shoulder.\",gold0-orig,pos,unl,unl,unl,pos,Someone gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site.,\"A short distance ahead, he\"\nlsmdc1035_The_Adjustment_Bureau-85653,19167,\"Someone hurries off and races back up the sidewalk after her. Turning the corner, he\",runs down another street and catches up to someone as she makes as another turn on foot.,blows a hasty retreat.,drifts toward the corridor filled with pale light and flotation devices.,creeps closer and draws closer.,sees someone asking yet another look.,gold0-orig,pos,unl,unl,unl,unl,Someone hurries off and races back up the sidewalk after her.,\"Turning the corner, he\"\nlsmdc1035_The_Adjustment_Bureau-85653,19162,The bus pulls away from the curb. Someone,gazes out his window at a passing scaffold creating a canopied sidewalk by a construction site.,steps onto the front passenger seat and touches it up to the portly passenger seat as he swerves.,waits for them to arrive.,swerves off the road and stops.,leads the scene around his hotel apartment building.,gold1-orig,pos,unl,pos,pos,pos,The bus pulls away from the curb.,Someone\nlsmdc1035_The_Adjustment_Bureau-85653,19164,\"A short distance ahead, he notices a dark - haired woman striding down the sidewalk. As the bus cruises past, he\",sees that it's someone.,gazes at the laptop then glances back at the sound of the lower deck.,lingers down from his motel office mirror.,stares up at the adjustment bureau siting parked nearby.,,gold1-orig,pos,unl,unl,unl,n/a,\"A short distance ahead, he notices a dark - haired woman striding down the sidewalk.\",\"As the bus cruises past, he\"\nlsmdc1035_The_Adjustment_Bureau-85653,19165,\"As the bus cruises past, he sees that it's someone. Someone\",turns down a street behind the bus as it pulls over.,leaps from the ceiling and jumps into the swimming pool.,\"notices a huge, stout boot on the desk.\",takes off the lid and hands it to the sheriff.,,gold1-orig,pos,unl,unl,unl,n/a,\"As the bus cruises past, he sees that it's someone.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85653,19160,His hopeful eyes find the empty pair of seats occupied three years earlier by someone. He,heads to them and sits.,looks up from his uncle.,kneels beside the table facing someone.,sits on the piano and starts talking.,,gold0-orig,pos,unl,unl,unl,n/a,His hopeful eyes find the empty pair of seats occupied three years earlier by someone.,He\nlsmdc1035_The_Adjustment_Bureau-85653,19161,He heads to them and sits. The bus,pulls away from the curb.,keeps pulling in their underwear.,'s stays outside front building.,pulls up outside a smart apartment building.,pulls up as someone approaches.,gold0-reannot,pos,unl,unl,pos,pos,He heads to them and sits.,The bus\nlsmdc1035_The_Adjustment_Bureau-85653,19158,\"An m6 pulls up and he climbs aboard. Sliding his pass through the reader, he\",pauses in the aisle.,sees a score flag beside him.,removes out a hyperemic cartridge.,drops onto the ledge.,stares down at the desert.,gold0-reannot,pos,unl,unl,unl,unl,An m6 pulls up and he climbs aboard.,\"Sliding his pass through the reader, he\"\nlsmdc1035_The_Adjustment_Bureau-85653,19152,Someone gazes at the city. Now someone,heads down a crowded sidewalk.,sits at a small table in front of the tiny birds - lit section.,drives a big gas hatchback.,trips over a pillar then sweeps confetti over a city.,turns on the tv.,gold0-reannot,pos,unl,unl,unl,pos,Someone gazes at the city.,Now someone\nlsmdc1035_The_Adjustment_Bureau-85653,19159,\"Sliding his pass through the reader, he pauses in the aisle. His hopeful eyes\",find the empty pair of seats occupied three years earlier by someone.,\"find another lead, one of the singers snapping open.\",scan the simple sheep with illustrations of his victims.,relax as he takes in descriptive technique then folds up his french fries.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Sliding his pass through the reader, he pauses in the aisle.\",His hopeful eyes\nlsmdc1035_The_Adjustment_Bureau-85653,19155,\"Sunlight bathes his face as he rests his hands on his stomach. Shifting his gaze to the clock on his bedside table, he\",reaches over and turns off the alarm.,finds someone's egg laptop in his lap.,tries to rub his foot to find heated impact.,gives a unopened collection of boyish artwork.,notices an empty pendant on someone's bedside cabinet.,gold1-reannot,pos,unl,unl,unl,pos,Sunlight bathes his face as he rests his hands on his stomach.,\"Shifting his gaze to the clock on his bedside table, he\"\nlsmdc1035_The_Adjustment_Bureau-85653,19166,Someone turns down a street behind the bus as it pulls over. Someone,hurries off and races back up the sidewalk after her.,stares out from the small window in the cream fountain.,let her into a luxurious bath.,keeps after the recruiters.,falls off some balcony onto the cracked pavement.,gold0-reannot,pos,unl,unl,unl,pos,Someone turns down a street behind the bus as it pulls over.,Someone\nlsmdc1035_The_Adjustment_Bureau-85653,19153,\"As he walks amid the flowing pedestrians, the screen fades to black. Someone\",lies on his back in bed and gazes out a window with a faraway look.,\"puts his back right on his outstretched fan, then stands up in bed, with the crowd escorted by him.\",\"glows through her skin, making sure it's okay.\",is by a puddle in a downpour.,\"takes her big, back stemmed cake and pours.\",gold0-reannot,pos,unl,unl,unl,unl,\"As he walks amid the flowing pedestrians, the screen fades to black.\",Someone\nanetv_FKphYO14qhw,13508,He uses a cue to shoot the ball toward the pocket. He,tries again and again until they go into the pockets.,\"gets back, delivering a tuxedo.\",dodges his mitt and misses it.,looks up then shoots at someone.,throws it to someone.,gold0-orig,pos,unl,unl,unl,unl,He uses a cue to shoot the ball toward the pocket.,He\nanetv_FKphYO14qhw,13507,A man is leaning over a large pool table. He,uses a cue to shoot the ball toward the pocket.,is playing a drum set.,gets onto his back and begins doing the crunches.,holds a bottle when his father struggles to make it up.,,gold0-orig,pos,unl,unl,unl,n/a,A man is leaning over a large pool table.,He\nlsmdc0003_CASABLANCA-47027,13402,She indicates with her hand where she wants them. A french officer at the bar,makes a remark to someone.,approach a kung fu master.,reflects bright amber on her beauty.,puts the bottle on someone.,,gold0-orig,pos,unl,unl,pos,n/a,She indicates with her hand where she wants them.,A french officer at the bar\nlsmdc0003_CASABLANCA-47027,13401,Someone gets up and strolls away. She,indicates with her hand where she wants them.,stands up and kicks his trunk.,strides over to the racquets and digs up the key.,hurries across the veranda then back to the living room.,drops a shopping bag on top of her couch and storms off as she peeks in an open window.,gold0-orig,pos,unl,unl,unl,unl,Someone gets up and strolls away.,She\nlsmdc1012_Unbreakable-6851,9812,\"Then the boy takes the woman's hand and puts it in his father's before setting off down the corridor. As his parents follow, they\",let go of each others hands.,begin to climb up the stairs.,continue to smoke all past the venetian wall.,see someone walking away through the office and the bloodstained floor.,,gold0-orig,pos,unl,unl,pos,n/a,Then the boy takes the woman's hand and puts it in his father's before setting off down the corridor.,\"As his parents follow, they\"\nlsmdc1012_Unbreakable-6851,9819,\"He walks down the hall past an open doorway and starts to go upstairs. From inside the room, his wife\",looks up at him.,stands on the center of the clock.,is hanging boxes from waist up.,is taking someone's arm.,sprints under the toilet door.,gold0-orig,pos,unl,unl,unl,unl,He walks down the hall past an open doorway and starts to go upstairs.,\"From inside the room, his wife\"\nlsmdc1012_Unbreakable-6851,9811,The three of them stand silently for a moment. Then the boy,takes the woman's hand and puts it in his father's before setting off down the corridor.,stops playing and darts out of the slum narrowing with his other still leading down.,\"folds his arms, putting stepping back across his face.\",stops short.,becomes fast at his feet; his snowy hill cast beside him.,gold0-orig,pos,unl,unl,unl,unl,The three of them stand silently for a moment.,Then the boy\nlsmdc1012_Unbreakable-6851,9814,\"A gaggle of reporters and photographers, one holding a long boom microphone, are standing inside the big double doors at the end of the corridor. Flashlights\",go off as someone's family steps out in the open air.,continues to pace across the station bed.,draw each stop in front of a luxury station cinema and exit with a small flags out behind it.,make out of the church and jumps off a steep wall before walking on and down the stairs.,\"clamber directly into the water, broken by the bubbling, and all the arms.\",gold1-orig,pos,unl,unl,unl,unl,\"A gaggle of reporters and photographers, one holding a long boom microphone, are standing inside the big double doors at the end of the corridor.\",Flashlights\nlsmdc1012_Unbreakable-6851,9813,\"As his parents follow, they let go of each others hands. A gaggle of reporters and photographers, one holding a long boom microphone,\",are standing inside the big double doors at the end of the corridor.,gives onto a sunny break.,\"one's agent in a coat, watches them with an alarmed glare.\",are made situps on the ground.,,gold1-orig,pos,unl,unl,unl,n/a,\"As his parents follow, they let go of each others hands.\",\"A gaggle of reporters and photographers, one holding a long boom microphone,\"\nlsmdc1012_Unbreakable-6851,9817,He is staring down at the spoon he is holding against the rim of a cereal bowl. He,nods slightly as he brings the spoon under control.,\", he begins to write.\",\"turns and sees someone, who has obviously nursing a drink or something.\",\"holds his wand, his mouth open, as the last straw floats off his ear towards someone.\",\"is chewing on a piece of bread, chewing on two patch of paper.\",gold0-orig,pos,unl,unl,unl,unl,He is staring down at the spoon he is holding against the rim of a cereal bowl.,He\nlsmdc1012_Unbreakable-6851,9805,\"Someone walks stiffly down a hospital corridor lined with silent people standing, sitting, leaning against walls, many of them watching him and smiling. His son\",\"sees him, jumps up from the bench, and runs to him.\",\"towers over the document, then reaches for his pocket.\",lies motionless with his son on the ceiling.,peers through the peephole.,leans out of the window and leans close to him.,gold0-orig,pos,unl,unl,pos,pos,\"Someone walks stiffly down a hospital corridor lined with silent people standing, sitting, leaning against walls, many of them watching him and smiling.\",His son\nlsmdc1012_Unbreakable-6851,9815,Flashlights go off as someone's family steps out in the open air. Someone,'s sitting alone at the table in a small dimly lit kitchen.,pushes a key through a door in the den.,flies through the air as a chain kicks the door open.,peeks out someone's hooded helmet.,,gold0-orig,pos,unl,unl,unl,n/a,Flashlights go off as someone's family steps out in the open air.,Someone\nlsmdc1012_Unbreakable-6851,9806,\"Someone hugs his son to his chest, gives him a slight smile, and looks over his head at the slim fair - haired woman who has followed the boy. They\",stare at each other.,kick one hot in an rear - view mirror and shoots another final glance before smiling.,drive toward the ground top.,look down at the jagged rocks below.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone hugs his son to his chest, gives him a slight smile, and looks over his head at the slim fair - haired woman who has followed the boy.\",They\nlsmdc1012_Unbreakable-6851,9808,\"She moves forward and puts her head on his shoulder, his cheek against her hair. He\",\"puts his arm around her, gazing past her.\",flips a few times and exhales in agony.,\"turns it back to us both, expertly watching her, and smiles down at him.\",lets go of her.,kisses her long fingers.,gold0-orig,pos,unl,unl,pos,pos,\"She moves forward and puts her head on his shoulder, his cheek against her hair.\",He\nlsmdc1012_Unbreakable-6851,9821,He stops and looks down at her. She,is standing in front of open drawer.,notices one and looks at someone.,is nowhere to be seen.,goes to a small collection of runners.,pulls his side to reveal her slight movements.,gold0-orig,pos,unl,unl,unl,unl,He stops and looks down at her.,She\nlsmdc1012_Unbreakable-6851,9807,They stare at each other. She,\"moves forward and puts her head on his shoulder, his cheek against her hair.\",sees someone retreating up the corridor.,\"touches her father's nose, then kisses the side of her mouth.\",hangs her head as she leans close.,\"applies the misty lotion to her hair, as someone maintains her contacts up.\",gold0-orig,pos,unl,unl,unl,unl,They stare at each other.,She\nlsmdc1012_Unbreakable-6851,9816,Someone's sitting alone at the table in a small dimly lit kitchen. He,is staring down at the spoon he is holding against the rim of a cereal bowl.,scans from inside on his work as they wait a few steps.,\"covers the lid with a long, plastic container.\",enters the house's apartment.,enters the kitchen.,gold0-orig,pos,unl,unl,unl,unl,Someone's sitting alone at the table in a small dimly lit kitchen.,He\nlsmdc1012_Unbreakable-6851,9810,The boy's lips move. The three of them,stand silently for a moment.,smile on as the comatose agent puts on his earpiece.,stretch upwards before playing instruments while a camp fire is now at the bottom of the camp.,trade a tight - toothed grin.,,gold1-reannot,pos,unl,unl,pos,n/a,The boy's lips move.,The three of them\nlsmdc1012_Unbreakable-6851,9820,\"From inside the room, his wife looks up at him. He\",stops and looks down at her.,rises from the bed.,is on his knees with his arms around someone.,dries his face with his sleeve.,starts mixing eggs and the mushrooms in the pan and stirring them all together with baking foil.,gold0-reannot,pos,unl,unl,unl,unl,\"From inside the room, his wife looks up at him.\",He\nlsmdc1012_Unbreakable-6851,9809,\"He puts his arm around her, gazing past her. She\",\"steps back, looks at someone, then at the boy, her head on one side.\",is unaware of someone's presence.,maintains a crank on her wrist watch.,leaves its two sides distantly.,shuts the clock then hurries through the anteroom in the stairs.,gold1-reannot,pos,unl,unl,unl,unl,\"He puts his arm around her, gazing past her.\",She\nanetv_r97vYbzloD8,13661,A lady stand outside with her hands in the air. The lady,is looking up at the sky.,dips the lady in the water.,lets the hair into her face and talks to the camera.,folds his arms and talks while holding the guitar.,,gold0-orig,pos,unl,unl,unl,n/a,A lady stand outside with her hands in the air.,The lady\nanetv_r97vYbzloD8,13662,The lady approaches a male who is holding a hallow stick. The lady,moves forward and waves her hands.,adds a drink to a blender glass.,\"curls her leg, and holds up a small cutter.\",is seated on the ground.,removes the jacket lens.,gold0-orig,pos,unl,unl,unl,unl,The lady approaches a male who is holding a hallow stick.,The lady\nanetv_r97vYbzloD8,16047,A woman is standing on a roof top with a man. He,is playing a flute while she moves around.,is chopping something in a trowel.,is lying on a ladder on the ground.,is watching her while doing tricks.,,gold1-orig,unl,unl,unl,unl,n/a,A woman is standing on a roof top with a man.,He\nanetv_r97vYbzloD8,13663,The lady moves forward and waves her hands. The lady,turns toward the man with her hand extended and smiles.,lays her leg under the faucet.,closes and brushes foundation all over the horses face.,puts her braids and messy hair in sections.,demonstrates how to play the drums.,gold1-orig,pos,unl,unl,pos,pos,The lady moves forward and waves her hands.,The lady\nanetv_s82_J03bqwQ,4550,A man is seen riding in on a skateboard followed by a man drinking a beer through a hose and a man sitting in a car flipping off the camera man. More random shots,\"are show of landscapes, dogs, people standing around, and moving along the water.\",are shown of people driving on a skateboard as well as another trick on a tube and turning in the same.,are shown of the person sitting and how to properly jack your tire together.,are shown of people moving around the car and performing on one adjacent to the lanes.,,gold1-reannot,pos,unl,unl,unl,n/a,A man is seen riding in on a skateboard followed by a man drinking a beer through a hose and a man sitting in a car flipping off the camera man.,More random shots\nanetv_s82_J03bqwQ,4551,\"More random shots are show of landscapes, dogs, people standing around, and moving along the water. The video\",leads into people riding along on the water kite surfing and leads into a man speaking to others outside while smoking a cigarette.,transitions into a group of children performing tricks using the twirled rope.,ends with people riding around and leads into shots of people riding around.,continues with the man smiling as well as a man on the beach.,ends with a boy riding a horse with a frisbee and jumping off onto a rope.,gold0-reannot,pos,unl,unl,unl,unl,\"More random shots are show of landscapes, dogs, people standing around, and moving along the water.\",The video\nlsmdc1015_27_Dresses-79880,8098,\"She moves off through the guests, searching for someone. The bride and groom\",are dancing when the bride spots someone.,scatter from their hiding spot.,are sitting on the long grass estate.,are at a nearby cafe.,are happy with food.,gold0-orig,pos,unl,unl,unl,pos,\"She moves off through the guests, searching for someone.\",The bride and groom\nlsmdc1015_27_Dresses-79880,8089,It's the ringtone of her pda phone. She,gets it out of her handbag and looks at someone.,\"takes a four tickets from her purse, shakes them.\",\"enters the living room, with someone lying on the floor.\",offers it to play as she rounds the corner.,nods and waves off.,gold1-orig,pos,unl,unl,unl,pos,It's the ringtone of her pda phone.,She\nlsmdc1015_27_Dresses-79880,8093,She smiles as they join the nighttime traffic. They,pull up beside an illuminated sign announcing the wedding reception.,blow up the car.,get to the driver.,clap their hands as she watches them in their rearview mirror.,racing across the town.,gold1-orig,pos,unl,unl,pos,pos,She smiles as they join the nighttime traffic.,They\nlsmdc1015_27_Dresses-79880,8099,The bride and groom are dancing when the bride spots someone. Someone,looks around in surprise.,stands in her seat with her head turned to the judge's side.,hands passionately in her glassy eyes.,smiles and hands the ring to someone.,waves his hand in front of him and shakes his head.,gold1-orig,pos,unl,unl,pos,pos,The bride and groom are dancing when the bride spots someone.,Someone\nlsmdc1015_27_Dresses-79880,8090,She gets it out of her handbag and looks at someone. She,smiles and hurries away to the offices at the new york journal.,has the most eaten plate in front of her.,drops to her knees.,hangs it around her neck.,turns back to someone.,gold1-orig,pos,unl,unl,pos,pos,She gets it out of her handbag and looks at someone.,She\nlsmdc1015_27_Dresses-79880,8092,\"She hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings. She\",smiles as they join the nighttime traffic.,is also on the hood of the van.,switches back and then moves off.,continues her way down a flight of stairs.,is quite out from rain.,gold0-orig,pos,unl,unl,unl,unl,\"She hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings.\",She\nlsmdc1015_27_Dresses-79880,8094,\"They pull up beside an illuminated sign announcing the wedding reception. On the brightly decorated peer, someone\",is among the guests.,climbs behind the desk and put on a coat.,listens softly as the sisters films the doors through the windows.,hangs from a branch in the yard.,,gold1-orig,pos,unl,unl,unl,n/a,They pull up beside an illuminated sign announcing the wedding reception.,\"On the brightly decorated peer, someone\"\nlsmdc1015_27_Dresses-79880,8091,She smiles and hurries away to the offices at The New York Journal. She,\"hurriedly jumps into the cab, then notices it's the same driver as the night of the two weddings.\",\"stretches her own violin to her waist, and grins.\",steps across the classroom.,retrieves someone's box and drives.,goes after the freeway.,gold1-orig,pos,unl,unl,pos,pos,She smiles and hurries away to the offices at The New York Journal.,She\nlsmdc1015_27_Dresses-79880,8096,\"She takes a flying leap onto the deck, just managing to stay upright. Pleased with herself, she\",walks off but misses a step.,watches as she caught the broomstick in water.,crumples to the padded seats and swings her arms.,leans straight behind her.,kicks a bulletin board into the water.,gold1-orig,pos,unl,unl,unl,unl,\"She takes a flying leap onto the deck, just managing to stay upright.\",\"Pleased with herself, she\"\nlsmdc1015_27_Dresses-79880,8095,\"On the brightly decorated peer, someone is among the guests. Someone\",\"runs down the pier, arriving at the end just as the gangplank is being removed from the party boat.\",follows the kids into the room.,\"picks up a pink line, collects a piece of papers and sets it aside.\",has her arms strapped to her waist.,,gold0-reannot,pos,unl,unl,unl,n/a,\"On the brightly decorated peer, someone is among the guests.\",Someone\nanetv_Xf0c2abFH3Y,4713,We see the person paint on a canvas. We,see the finished painting and a line of paints.,see a marker title.,see another person with a process.,paint a fence.,\"see glasses, etc, then, colorful fish and plum rings.\",gold1-orig,pos,unl,unl,unl,unl,We see the person paint on a canvas.,We\nanetv_Xf0c2abFH3Y,4714,We see the finished painting and a line of paints. We then,see the ending scene.,see the completed painting.,see the people on the fence.,see the paper with the finished product.,show images of the names in the school.,gold1-orig,pos,pos,pos,pos,pos,We see the finished painting and a line of paints.,We then\nanetv_Xf0c2abFH3Y,14538,A person is mixing paint in a jar. They,begin to paint on a canvas.,put drinks into a mug.,maintain the liquid inside the box.,see a green liquid.,,gold0-orig,pos,unl,unl,pos,n/a,A person is mixing paint in a jar.,They\nanetv_Xf0c2abFH3Y,4712,We see a person mixing oil paints. We,see the person paint on a canvas.,see a man laying in couches and puts the shoes on.,see a marine covered in pink.,see people standing in a house up a hill in front of the dog environment.,see a lady sit at the kitchen counter.,gold0-orig,pos,unl,unl,unl,unl,We see a person mixing oil paints.,We\nanetv_Xf0c2abFH3Y,4710,We see a couple of opening scenes. We,see paint on a pallet.,see a man and give shots.,see the ladies shoveling off the lawnmower.,see a guide mopping the stairs.,see the lady holding up the cloth.,gold0-reannot,pos,unl,unl,unl,pos,We see a couple of opening scenes.,We\nanetv_Xf0c2abFH3Y,4711,We see paint on a pallet. We,see a person mixing oil paints.,see whom run in red here - hand with a house racquet.,see a person descending the pole and we see a green title screen.,use a paint dropper to paint the nails.,,gold0-reannot,pos,unl,pos,pos,n/a,We see paint on a pallet.,We\nanetv_Xf0c2abFH3Y,14537,Paint is shown on an easel. A person,is mixing paint in a jar.,picks up a bow lens and after she scratches it.,uses the paint to cut the leaves.,starts painting their fingernails.,is painting the plant.,gold0-reannot,pos,unl,unl,unl,unl,Paint is shown on an easel.,A person\nlsmdc3090_YOUNG_ADULT-43835,8869,Someone lies on a sofa as reality program plays on the television. Her white dog,sits on the couch at her feet.,lies sits on his lap.,is laying on the back of the van.,catches a glimpse of someone in a grocery store.,wraps around a blanket at a night back end.,gold0-orig,pos,unl,unl,unl,unl,Someone lies on a sofa as reality program plays on the television.,Her white dog\nlsmdc0053_Rendezvous_mit_Joe_Black-71523,12183,\"His eyes are on people, he watches them admiringly yet ruefully. Someone\",regards the waiter for a moment.,falls face into the bathroom.,grabs a photo from someone.,holds up a bamboo object.,goes to the closet.,gold0-orig,pos,unl,unl,unl,unl,\"His eyes are on people, he watches them admiringly yet ruefully.\",Someone\nlsmdc0053_Rendezvous_mit_Joe_Black-71523,12182,\"On a distant fringe of the party, a grass terrace that still commands a view of the dance floor, is someone. His eyes are on people, he\",watches them admiringly yet ruefully.,is playing rope guided by his own father.,turns and pretends a book control a vase.,lies looking a little scared behind.,,gold0-orig,pos,unl,unl,pos,n/a,\"On a distant fringe of the party, a grass terrace that still commands a view of the dance floor, is someone.\",\"His eyes are on people, he\"\nanetv_79FMLEeVp7Q,2455,They join a crowd alone a lake. Three people,ride a canoe near the base of the mountains.,load the instruments and trip them.,are playing rock crossing.,stand behind a rail truck making a presentation.,,gold0-orig,pos,unl,unl,unl,n/a,They join a crowd alone a lake.,Three people\nanetv_79FMLEeVp7Q,6656,A man is seen walking down a wooded path. He,walks across a bridge wearing a backpack.,jumps into a pit.,uses a paddle and repeats several more times.,lays on his lawn and spreads his hand around the lawn.,walks around the area and looks back to the camera.,gold0-orig,pos,unl,unl,unl,pos,A man is seen walking down a wooded path.,He\nanetv_79FMLEeVp7Q,2452,A man walks alone through a forest. A woman joins the man and they,\"walk together, past more trees.\",race off to slide down a mountain for a period of time.,throw a ball over.,perform numerous competitive arts moves.,,gold0-orig,pos,unl,unl,unl,n/a,A man walks alone through a forest.,A woman joins the man and they\nanetv_79FMLEeVp7Q,2454,They pass more people near mountains. They,join a crowd alone a lake.,\"use cameras to take everything from their fight, forming a brick to achieve the same place.\",watch the concert on tv.,give each other a high five.,,gold0-orig,pos,unl,unl,pos,n/a,They pass more people near mountains.,They\nanetv_79FMLEeVp7Q,6657,He walks across a bridge wearing a backpack. We,\"see him from several angles, always from behind and walking.\",are speeding up the ramp.,ride a horse in pursuit.,is glued to the screen.,,gold0-orig,pos,pos,pos,pos,n/a,He walks across a bridge wearing a backpack.,We\nanetv_79FMLEeVp7Q,2456,Three people ride a canoe near the base of the mountains. The cameraman,explores again behind following the couple.,tilt their legs back up and see the right boys fall.,rides down through kayak following the tiger.,pauses while riding on tubes.,,gold1-orig,pos,unl,pos,pos,n/a,Three people ride a canoe near the base of the mountains.,The cameraman\nlsmdc3022_DINNER_FOR_SCHMUCKS-10659,5506,Someone pushes the door open. Someone,steps over to him.,collects pages then walks away.,crawls by as he starts into it.,pulls someone's eyes closed.,takes a few steps back from someone.,gold1-orig,pos,unl,unl,unl,pos,Someone pushes the door open.,Someone\nanetv_90LkAH4tZC4,8888,The person in black shirt is playing drums. The camera,zoomed in to the drums as the person continue to play.,is moving in the arcade.,pans to rest on someone movements on the small screen.,focuses on the boys climbing over the wall.,moves back and forth between the feet of the drums.,gold1-orig,pos,unl,pos,pos,pos,The person in black shirt is playing drums.,The camera\nlsmdc0049_Hannah_and_her_sisters-69490,10848,People sit at one of the tables; a candle burns in its holder on the tabletop. Someone,\"takes a cigarette from her purse as she holds her hand to her nose, sniffing.\",creeps toward the factory.,has taken a scrap of paper from someone.,puts one shot beside her.,,gold1-orig,pos,unl,unl,unl,n/a,People sit at one of the tables; a candle burns in its holder on the tabletop.,Someone\nlsmdc0049_Hannah_and_her_sisters-69490,10855,\"People pass by as someone walks back and forth from the curb to someone, growing angrier and angrier. A taxi\",pulls up to the curb.,pulls up outside the shore to the surf.,pulls up to the curb near deserted.,arrives at the store entrance.,crosses another street and down a road bordered by tall buildings.,gold1-orig,pos,unl,unl,pos,pos,\"People pass by as someone walks back and forth from the curb to someone, growing angrier and angrier.\",A taxi\nlsmdc0049_Hannah_and_her_sisters-69490,10860,\"They embrace tightly, continuing to dance. People and the twins\",sit at the dining room table.,\"wait on the other side of the stand, shooting more blasts of scenery.\",move into a state of shock.,help each other with their feet.,,gold0-orig,pos,unl,unl,pos,n/a,\"They embrace tightly, continuing to dance.\",People and the twins\nlsmdc0049_Hannah_and_her_sisters-69490,10864,\"The child takes the camera from someone, as well as picking up a second identical one from the table. The adopted children\",\"leave, the twins going off with them.\",are dwarfed by the tree.,are walking on in their green and white pants.,continue to walk the block.,\"follow someone, smiling and slamming together through a door.\",gold0-orig,pos,pos,pos,pos,pos,\"The child takes the camera from someone, as well as picking up a second identical one from the table.\",The adopted children\nlsmdc0049_Hannah_and_her_sisters-69490,10863,He stares blankly at the table. The child,\"takes the camera from someone, as well as picking up a second identical one from the table.\",\"comes to him, and people head into the yard.\",bites on the towel and puts it back as someone pours from his glasses.,\"inches away, just as dumbly to crack her crack.\",lifts someone lifted and flops it over his head.,gold0-orig,pos,unl,unl,unl,unl,He stares blankly at the table.,The child\nlsmdc0049_Hannah_and_her_sisters-69490,10865,\"The adopted children leave, the twins going off with them. When they are gone, someone\",takes a sip of her coffee and looks at someone.,stops the knife paper and eyes it to the slightest brown haired man.,\"has a skeletal hand stretched out at his side, one of the children from his fingertips.\",lifts a boy from the opposite end of the ring.,\"drops her pants, grabs her cell and turns toward the wooden house.\",gold1-orig,pos,unl,unl,pos,pos,\"The adopted children leave, the twins going off with them.\",\"When they are gone, someone\"\nlsmdc0049_Hannah_and_her_sisters-69490,10854,A taxi pulls away from the curb as people walk out of the hotel through its revolving doors. Someone stays under the awning; someone,walks to the curb and looks angrily back at her.,\"is on his back, turning his back around an ornate rotors.\",opens the gate and stares down at the floor of the hall.,takes off his headphones.,lands in the car's front seat.,gold1-orig,pos,unl,pos,pos,pos,A taxi pulls away from the curb as people walk out of the hotel through its revolving doors.,Someone stays under the awning; someone\nlsmdc0049_Hannah_and_her_sisters-69490,10846,\"The audience at their tables watch him, some with smiles of pleasure. A man\",has his arm around a woman.,in a red hat gives the gymnast a small shake of his head and walks off.,'s festive red hair is shown in a red and axle it is in powdered amount.,walks towards him with a finger.,drinks their reflections in a gulp.,gold0-orig,pos,unl,unl,unl,unl,\"The audience at their tables watch him, some with smiles of pleasure.\",A man\nlsmdc0049_Hannah_and_her_sisters-69490,10856,A taxi pulls up to the curb. People,walk up to its rear door.,\"look at him from behind someone the truck, as someone flattens himself against the traffic light.\",peers through hard thumps into a protective glass of cracked cliffs.,are looking behind them.,arrive at a parked car.,gold0-orig,pos,unl,unl,unl,pos,A taxi pulls up to the curb.,People\nlsmdc0049_Hannah_and_her_sisters-69490,10850,\"Someone lights her cigarette, dropping her matchbook on the floor. She\",\"bends down to pick it up, then starts to fidget in her chair.\",turns over and thinks.,runs some fingers along her thighs before dancing.,is covered in the card part of her sloop.,removes her hand from the mirror and forces herself by.,gold1-orig,pos,unl,unl,unl,unl,\"Someone lights her cigarette, dropping her matchbook on the floor.\",She\nlsmdc0049_Hannah_and_her_sisters-69490,10866,\"When they are gone, someone takes a sip of her coffee and looks at someone. She\",\"puts down her cup, still watching him.\",enters to his room and begins to touch his face.,\"continues to cross down, listening at the crash.\",leans back in the chair and someone bounces her brow.,frowns and takes a seat in front of someone.,gold0-orig,pos,unl,unl,unl,pos,\"When they are gone, someone takes a sip of her coffee and looks at someone.\",She\nlsmdc0049_Hannah_and_her_sisters-69490,10861,People and the twins sit at the dining room table. Someone's two adopted children stand by her chair; she,is showing them how a small camera works.,glowers and points at the phone.,is entering a magnificent dark room in ames compartment.,don't be much attention.,is barely looking at them knitting.,gold1-orig,pos,unl,unl,unl,unl,People and the twins sit at the dining room table.,Someone's two adopted children stand by her chair; she\nlsmdc0049_Hannah_and_her_sisters-69490,10857,People walk up to its rear door. He,holds the door open for someone.,crosses his arms and lets his hands turn slightly as he stares into space.,pulls back hard and kicks someone against the trunk.,\"leans forward, holds the anew scrawled in the gray garment, and picks up a can of candy.\",,gold0-orig,pos,unl,unl,unl,n/a,People walk up to its rear door.,He\nlsmdc0049_Hannah_and_her_sisters-69490,10853,The film cuts back briefly to someone playing the piano. A taxi,pulls away from the curb as people walk out of the hotel through its revolving doors.,\"reacts to someone as he glances up at someone, consulting outside his grounds.\",crosses a downtown area alone in a private room.,slides rapidly down the side of the store.,walks towards the mountain gorgoroth planted in the chill wind.,gold0-orig,pos,unl,unl,unl,unl,The film cuts back briefly to someone playing the piano.,A taxi\nlsmdc0049_Hannah_and_her_sisters-69490,10847,A man has his arm around a woman. People sit at one of the tables; a candle,burns in its holder on the tabletop.,blazes in the attendant's jacket.,has poured on the table.,is lit with candles on his finger.,shines candles to a chatting room.,gold1-orig,pos,unl,unl,unl,pos,A man has his arm around a woman.,People sit at one of the tables; a candle\nlsmdc0049_Hannah_and_her_sisters-69490,10851,She gulps her wine; she sniffs. Someone tries to watch the offscreen someone; he,crosses his arms across his chest.,\"bearded rose - looking man stands, taps her behind, frowns, then looks round at someone.\",sings as she watches her.,watches as she goes.,joins an offscreen someone.,gold1-orig,pos,unl,unl,pos,pos,She gulps her wine; she sniffs.,Someone tries to watch the offscreen someone; he\nlsmdc0049_Hannah_and_her_sisters-69490,10862,Someone's two adopted children stand by her chair; she is showing them how a small camera works. The children,\"watch her, fascinated, muttering among themselves.\",are enjoying this chuckle process.,mill around the change shops.,drizzles colorful rocks around the table encampment.,on the teams are being up at speed about dirt.,gold0-orig,pos,unl,unl,unl,unl,Someone's two adopted children stand by her chair; she is showing them how a small camera works.,The children\nlsmdc0049_Hannah_and_her_sisters-69490,10849,\"Someone takes a cigarette from her purse as she holds her hand to her nose, sniffing. Someone keeps shooting glances at someone; she\",can't sit still.,waits as she pulls down a pen.,does n't know what to say.,is awake for a moment.,looks away and darts up the stairs but stops to let him go.,gold1-orig,pos,unl,unl,unl,pos,\"Someone takes a cigarette from her purse as she holds her hand to her nose, sniffing.\",Someone keeps shooting glances at someone; she\nlsmdc0049_Hannah_and_her_sisters-69490,10859,\"Someone sips, then puts it back down on the dresser. They\",\"embrace tightly, continuing to dance.\",unlatches his seat belt and creeps towards the bar.,straightens he glances up at someone.,\", someone looks at someone.\",moves down the aisle.,gold1-reannot,unl,unl,unl,unl,unl,\"Someone sips, then puts it back down on the dresser.\",They\nlsmdc0049_Hannah_and_her_sisters-69490,10852,Someone tries to watch the offscreen someone; he crosses his arms across his chest. The film,cuts back briefly to someone playing the piano.,cuts to the professionally chef's home.,\"cuts to someone, a partial, pounds of someone seated at the end of a street.\",moves to the dressing room and back.,cuts back to the church outside the church.,gold0-reannot,pos,unl,unl,pos,pos,Someone tries to watch the offscreen someone; he crosses his arms across his chest.,The film\nanetv_JNBWPj42n-g,2379,\"He begins to wrap the box, demonstrating how to properly wrap a present. He\",tapes the wrapping paper around the box.,empties the ribbon out in a case.,\"frowns, then holds up a brush.\",\"ties her wrapping, then clips it and wraps them around.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He begins to wrap the box, demonstrating how to properly wrap a present.\",He\nanetv_JNBWPj42n-g,2380,He tapes the wrapping paper around the box. The man,ties a bow around the box as the camera slows down the motion.,finishes then puts the man on the wall.,cuts the wrapping paper of the wrapping paper.,puts the box and begins to cut the paper to light the jewelry.,takes the contact out of the present and looks into the i.,gold0-orig,pos,unl,unl,unl,unl,He tapes the wrapping paper around the box.,The man\nanetv_JNBWPj42n-g,2377,A man's hands are shown at a table. He,places a cardboard box over wrapping paper.,goes back and forth between the boy and an others.,begins brushing his teeth.,put the ball down in front of the fence.,is wearing a black hoodie and jeans.,gold1-orig,pos,unl,unl,unl,pos,A man's hands are shown at a table.,He\nanetv_JNBWPj42n-g,2378,He places a cardboard box over wrapping paper. He,\"begins to wrap the box, demonstrating how to properly wrap a present.\",hangs his folded hand on the railing.,unfastens the pouch and puts its back in the bag.,picks up the intercom and dusts it off.,breaks off the pages in the dirt.,gold0-orig,pos,unl,unl,unl,unl,He places a cardboard box over wrapping paper.,He\nanetv_JNBWPj42n-g,2381,\"The man ties a bow around the box as the camera slows down the motion. He cuts the excess bow away, and we\",see a sticker with a woman's face.,see the ending pad.,see him once again and again again.,return to his bellies.,see him as full show on her face and hauling.,gold1-reannot,pos,unl,unl,unl,unl,The man ties a bow around the box as the camera slows down the motion.,\"He cuts the excess bow away, and we\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19097,\"Someone watches from her window opposite. In his bedroom, someone\",thumps the wardrobe in anger and frustration.,finds his gps.,digs into an armchair and offers a wad.,comes mid - swing.,joins her in someone's seat as she looks distraught.,gold1-orig,pos,unl,unl,unl,unl,Someone watches from her window opposite.,\"In his bedroom, someone\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19101,\"Someone relives his terror as a flash of green light engulfs someone, who falls lifeless. Someone blank eyes\",stare out from his bony snake - like skull.,turn up to face.,watch with wide eyes as the film cuts away until its still silhouette is becoming a demonic moving appreciative sheet.,move on someone as someone takes someone's hand.,stare at him taking big - the root almost seizes him.,gold0-orig,pos,unl,unl,unl,unl,\"Someone relives his terror as a flash of green light engulfs someone, who falls lifeless.\",Someone blank eyes\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19118,\"Oblivious, the people next door continue watching television. The patterned tiles underfoot\",are cracked and dirty.,carried on the floor.,put the wax onto the music's foundation.,are being consumed with flames inside.,are cleaned once - made.,gold0-orig,pos,unl,unl,unl,unl,\"Oblivious, the people next door continue watching television.\",The patterned tiles underfoot\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19113,They swoop by hms Belfast and head upriver towards Westminster. Someone,flies close besides someone.,sees a redhead from the accomplice.,\"hands over someone, who walks away.\",snaps a hammer round.,sits glumly in the stands.,gold0-orig,pos,unl,unl,unl,pos,They swoop by hms Belfast and head upriver towards Westminster.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19110,Someone recognizes one of them. Someone,leads them all outside.,takes the knife from his hand stuffed in a large package.,stands but someone pulls in front of him.,wears a tight wire with a torch on.,stops for another lock.,gold0-orig,pos,unl,unl,unl,unl,Someone recognizes one of them.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19108,\"With a dazzling flash, the door flies open. Lit by a wand, five people\",stand in the doorway.,are dragging across the valley.,appear and twirl on someone's motionless fingers.,appear in the same room almost at cup.,run through the hallway of a cafe.,gold0-orig,pos,unl,unl,pos,pos,\"With a dazzling flash, the door flies open.\",\"Lit by a wand, five people\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19112,Following the line of the River Thames as it winds through the city. They,\"fly low, cloaks flying, like a flight of huge bats skimming the surface of the shimmering water.\",run up a steep barrier and land on a carpet before spinning away.,clamber the rocks of the chunky vacuuming to ever the bucket and carrying the motorcycle.,push the jagged snow out of the back of a car.,,gold0-orig,pos,unl,unl,unl,n/a,Following the line of the River Thames as it winds through the city.,They\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19116,A refuse lorry passes a garden in the middle of the London square. Someone,leads them from the garden into the street.,opens a gate and his escort emerges from the woods.,is down a grassy hill on a many stone and other mourners.,\"avoids a satisfied glance, as someone moves towards the sight of still village horseman lying beside him.\",,gold0-orig,pos,unl,unl,unl,n/a,A refuse lorry passes a garden in the middle of the London square.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19102,Someone blank eyes stare out from his bony snake - like skull. He,lies as if in a trance.,\"shakes his head, then shakes his head sadly as someone sprinkles it into dry boy's mouth.\",stares at someone for a moment then stops beside the couple.,rests his right arm on someone's shoulder and pulls someone onto his shoulders.,starts toward the dog.,gold1-orig,pos,unl,pos,pos,pos,Someone blank eyes stare out from his bony snake - like skull.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19098,\"In his bedroom, someone thumps the wardrobe in anger and frustration. A photograph standing beside his owl's cage\",falls onto the carpet.,\"reads, posters pull duct cuts.\",sits on the steps.,\"reads, absently above his manuscript.\",opens with two children.,gold1-orig,pos,unl,unl,unl,unl,\"In his bedroom, someone thumps the wardrobe in anger and frustration.\",A photograph standing beside his owl's cage\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19121,\"Through the open door, someone spots people. She\",comes out closing the door.,turns and runs to him.,limps around the garden and spots someone entering the dining area.,speeds up as she crashes through their apartment.,,gold0-orig,pos,pos,pos,pos,n/a,\"Through the open door, someone spots people.\",She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19111,Someone watches as they soar away high above Privet Drive. The twinkling lights of central London,are spread out below.,fly through the trees as the slim dark - haired man gazes out at the conductor as she goes past him.,walk across the them.,stretch to drive on.,,gold0-orig,pos,unl,unl,pos,n/a,Someone watches as they soar away high above Privet Drive.,The twinkling lights of central London\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19109,\"Lit by a wand, five people stand in the doorway. Someone\",recognizes one of them.,\"walk behind him, a hallway behind them.\",someone lies in one of him doors.,studies his sword as he sits alone on the wooden veranda.,\"has been knocked down, and so does someone.\",gold0-orig,pos,unl,unl,unl,unl,\"Lit by a wand, five people stand in the doorway.\",Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19100,Someone places it carefully on his bedside table beside a half - eaten plate of food. Someone's face,looms out of the darkness sweating with fear.,transforms into the bottle as a penguin appears in front of him.,is bleeding and bandages.,appears with a hard surface.,\"drops as a middle - aged man in a chair is, talking.\",gold0-orig,pos,unl,unl,unl,unl,Someone places it carefully on his bedside table beside a half - eaten plate of food.,Someone's face\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19105,He looks towards the door. The key,is slowly turning in the lock.,seems like 101 - operated.,is just being open.,\"goes from close to someone, trying to pay the attention in the way for what he sees them.\",is to open the door as he leads the subtly.,gold1-orig,pos,unl,unl,unl,pos,He looks towards the door.,The key\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19107,The key continues to turn. The key,falls to the floor.,falls from the latch and opens it again.,\"is the key, started to lock.\",is pressed up against his neck.,is inserted into the dark lock.,gold0-orig,pos,unl,unl,unl,pos,The key continues to turn.,The key\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19106,The key is slowly turning in the lock. Someone,grabs his wand and sits up.,seems focused by the sight of someone sticking up again and striding out.,\"sits on the bed, eyeing her.\",points to his wrist and soberly.,notices a third room and two homes stacked on the inside.,gold1-orig,pos,unl,unl,unl,unl,The key is slowly turning in the lock.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19120,Someone turns and winks at someone. She,trips over an umbrella stand.,\"looks on, as someone awakes.\",accepts the next cards.,looks at someone questioningly.,swivels her hair in and rubs her face.,gold1-orig,pos,unl,pos,pos,pos,Someone turns and winks at someone.,She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19119,The others follow him towards an open door at the end of the gloomy passage. Someone,turns and winks at someone.,levitates down onto a tv ship.,\"reels, his father and son stare down below.\",\"leans down against the door, looks on and on.\",sees a curious of shit for distance.,gold1-orig,pos,unl,unl,unl,unl,The others follow him towards an open door at the end of the gloomy passage.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19104,\"Still fully dressed, someone reaches for his glasses and puts them on. He\",looks towards the door.,\"caps to the vine and flops onto the bed, her feet on the floor of her closet.\",looks to his father.,slaps him off then gives a dispirited glance.,looks up at her.,gold1-orig,pos,unl,unl,unl,unl,\"Still fully dressed, someone reaches for his glasses and puts them on.\",He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19103,\"He turns his head as he hears a scraping sound. Still fully dressed, someone\",reaches for his glasses and puts them on.,turns on the rear tv and turns off the tv.,\"bends down, he pushes someone's hand.\",smiles back at someone.,\"puts his hand on his chest, clutching his left fist in his chest.\",gold1-orig,pos,unl,unl,unl,pos,He turns his head as he hears a scraping sound.,\"Still fully dressed, someone\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19099,He sits on his bed and looks at his parents dancing together in the moving photograph. Someone,places it carefully on his bedside table beside a half - eaten plate of food.,points up a set of hash.,lies on his bed.,lays again on his bed.,\"gets out of the taxi, looks nervously around someone; then moves down to the porch.\",gold1-orig,pos,unl,unl,unl,unl,He sits on his bed and looks at his parents dancing together in the moving photograph.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19096,\"Under cover of darkness, the Dursleys smuggle someone into the car with a blanket over his head. Someone\",watches from her window opposite.,\"opens the window to find someone, who rejoins her son from the bus in the classroom.\",headlamps from its head smoothly.,obeys and drops into a sand pit.,finds a sleeping infant with his right hand.,gold0-reannot,pos,unl,unl,unl,unl,\"Under cover of darkness, the Dursleys smuggle someone into the car with a blanket over his head.\",Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94658,19114,Someone flies close besides someone. Someone,steers to the right of it.,hangs up the phone and is back in his wheelchair.,strides up to someone.,rolls over the bed and grazes his nose.,grabs someone by the throat.,gold0-reannot,pos,unl,unl,unl,pos,Someone flies close besides someone.,Someone\nlsmdc3049_MORNING_GLORY-23396,5944,They change the name on someone's dressing room. They,walk through the office.,go through it to find it ajar.,\"are busy playing a song, as they struggle.\",come out into a living room.,exchange a glance at each other.,gold0-orig,pos,unl,unl,unl,unl,They change the name on someone's dressing room.,They\nlsmdc3049_MORNING_GLORY-23396,5952,\"Someone marches from one end of the corridor to the other, then finds the central point. Someone and someone\",meet in the middle.,share a cool - eyed look.,take off their headsets.,rush into the bathroom.,enter the gryffindor center.,gold0-orig,pos,pos,pos,pos,pos,\"Someone marches from one end of the corridor to the other, then finds the central point.\",Someone and someone\nlsmdc3049_MORNING_GLORY-23396,5948,Someone takes the orchid to someone's dressing room and knocks. Someone,sets down the flower.,is removing our head from someone brush.,glances nervously to the safe.,accelerates through the traffic.,bursts from an apartment building.,gold1-orig,pos,unl,unl,unl,unl,Someone takes the orchid to someone's dressing room and knocks.,Someone\nlsmdc3049_MORNING_GLORY-23396,5953,Someone and someone meet in the middle. Someone,stares at her blankly.,looks at the back of the high school.,\"turns up, and the family members share a wink and hug to fight as one of them hangs up.\",\"slouches, then approaches.\",,gold1-orig,pos,unl,unl,pos,n/a,Someone and someone meet in the middle.,Someone\nlsmdc3049_MORNING_GLORY-23396,5950,Someone tosses a card aside. Someone,goes from one dressing room to the other.,tour new apartment harbor where someone high wearing a victorian suit.,takes off her shoes.,looks closely along someone's wrist.,heads off to the control room.,gold1-orig,pos,unl,pos,pos,pos,Someone tosses a card aside.,Someone\nlsmdc3049_MORNING_GLORY-23396,5946,He hands her an orchid. He,picks up a newspaper and sits down.,meets the weakened boy's hair.,offers someone a pen.,eyes the empty man's hand.,,gold1-orig,pos,unl,pos,pos,n/a,He hands her an orchid.,He\nlsmdc3049_MORNING_GLORY-23396,5951,Someone goes from one dressing room to the other. Someone,\"marches from one end of the corridor to the other, then finds the central point.\",grab the ball from the table and continue to go around.,speaks as a young girl with pink hair and large glasses watches as they look into each other piling the dance.,\"leans back from the bed, touching her.\",turns and sees someone.,gold0-reannot,pos,unl,unl,pos,pos,Someone goes from one dressing room to the other.,Someone\nlsmdc3049_MORNING_GLORY-23396,5947,He picks up a newspaper and sits down. Someone,takes the orchid to someone's dressing room and knocks.,keeps pacing on the couch.,\"looks to a little jinx and stares at the piano, then stops, turns around and begins smoking.\",finishes someone 'gray wings.,withdraws some shipping from the bottom of the file.,gold0-reannot,pos,unl,unl,unl,pos,He picks up a newspaper and sits down.,Someone\nanetv_ayDqRzRN8_M,632,The curls are taken out of the woman's hair after the makeover. The news anchors,close out the story.,begins speaking as a woman points to the seashell then at the pin looking out over her hands.,have several hair pin pictures with a picture in a complete newsroom.,appear excited for the marketing.,,gold1-orig,pos,unl,unl,unl,n/a,The curls are taken out of the woman's hair after the makeover.,The news anchors\nanetv_ayDqRzRN8_M,628,News hosts present a story seated at a desk in a news room. A news reporter,interviews a man on an ice skating rink.,\"reading the news, records shown on screen with scenes of casino dealing.\",is talking to makeup young reporter at a news conference.,explains the instrument and demonstrates how to properly perform a set on a large doing scuba gear.,,gold0-orig,pos,unl,unl,unl,n/a,News hosts present a story seated at a desk in a news room.,A news reporter\nanetv_ayDqRzRN8_M,629,A news reporter interviews a man on an ice skating rink. An athlete,glides a stone across the ice.,stands with the receive flag.,talks in the stadium at night.,does the same to each other.,perform mirthfully where players walk in the goal.,gold0-orig,pos,unl,unl,unl,unl,A news reporter interviews a man on an ice skating rink.,An athlete\nanetv_ayDqRzRN8_M,630,An athlete glides a stone across the ice. The reporter and the man,practice brushing the ice with brooms.,sit on the jumping table.,meet engaging in a lacrosse court.,raise their grips from the position.,continue competing in the batter.,gold0-reannot,pos,unl,unl,unl,unl,An athlete glides a stone across the ice.,The reporter and the man\nanetv_ayDqRzRN8_M,631,The reporter and the man practice brushing the ice with brooms. A woman,sits in a salon and has her hair curled.,is talking to the camera on people high someone.,\"wash the top of a snow horse, talking.\",is talking off handing a sunscreen.,dumps ingredients at a table in a large auditorium.,gold0-reannot,pos,unl,unl,unl,unl,The reporter and the man practice brushing the ice with brooms.,A woman\nanetv_CgWVpLVd16o,19949,He sits up there for a few before finally letting himself go down the slide. He is sitting on a skate board and he is holding it so he does n't move but once he lets go he,builds up a lot of speed.,slides down it that he is going to be ready for a drink.,\"walks on, he is standing against the wall.\",spins around on the dirt and runs away.,,gold0-orig,pos,unl,unl,unl,n/a,He sits up there for a few before finally letting himself go down the slide.,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he\nanetv_CgWVpLVd16o,19948,A older boy is at the park on the top of a slide just sitting and waiting. He,sits up there for a few before finally letting himself go down the slide.,is cut how to victor your jump.,is leaning and eating a little toy.,continues to play the set of monkey bars while he is just going to go on the monkey bars.,is talking in a sparkly uneven driveway.,gold1-orig,pos,unl,unl,unl,unl,A older boy is at the park on the top of a slide just sitting and waiting.,He\nanetv_CgWVpLVd16o,19950,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he builds up a lot of speed. Once he does he,goes down fast and hurts his butt a little when he lands.,puts his feet in the air and suddenly reappears at the end with his gesture.,flips on the water and runs away from the end of the parking lot where a few springs speed up.,is successful but enough to glide down a piece of rope as he goes back and comes back.,,gold0-orig,pos,unl,unl,unl,n/a,He is sitting on a skate board and he is holding it so he does n't move but once he lets go he builds up a lot of speed.,Once he does he\nanetv_CgWVpLVd16o,12684,The man then rolls down the slide on his skateboard and when he reaches the end he flies off of the skateboard and fells very hard onto the ground. A little boy,runs in and grabs the skateboard and walks away with it while the young man is still writhing in pain.,watches the hatchback happily.,is running down and doing flips on the ski while swinging the rope.,\"is then modest stops in front of him that a girl jumps, but instead he runs.\",,gold0-orig,pos,unl,unl,unl,n/a,The man then rolls down the slide on his skateboard and when he reaches the end he flies off of the skateboard and fells very hard onto the ground.,A little boy\nanetv_CgWVpLVd16o,12683,A young man is sitting on a skateboard on the left side of a blue double sided children's slide. The man then rolls down the slide on his skateboard and when he reaches the end he,flies off of the skateboard and fells very hard onto the ground.,is sighing and zooms off.,jumps on a slope while still swinging.,'s take his stunt down.,,gold0-orig,pos,unl,unl,pos,n/a,A young man is sitting on a skateboard on the left side of a blue double sided children's slide.,The man then rolls down the slide on his skateboard and when he reaches the end he\nanetv_f-uRpjoKGLQ,16071,Two people are seen riding along on skis while speaking to one another and leads into them riding down a snowy hill. The people continuously,push themselves quickly down a hill moving past several people and ending by stopping at the end.,ride around while others watch on the side as people pass by in the background.,go down the mountain while laughing to one another while riding around.,ride near the tubes in the river while they ride around and trip up to the camera.,skate around the water with a machine as well as more people pushing rafts around the area.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen riding along on skis while speaking to one another and leads into them riding down a snowy hill.,The people continuously\nlsmdc3018_CINDERELLA_MAN-7865,1370,\"As the boxer walks out, the chuckling reporter puffs a cigarette. Now, someone and someone\",walk side by side down a hallway leading to the arena.,pull out the sheet to their feet.,wear music as someone chats with her friends.,rush outside in slow snow.,arrive at the buses.,gold0-reannot,pos,unl,unl,unl,pos,\"As the boxer walks out, the chuckling reporter puffs a cigarette.\",\"Now, someone and someone\"\nanetv_ZKo3_ifK2tQ,10368,A toy bear wearing red and white overalls pours a cup of coffee into a yellow coffee cup. The camera man,zooms in on the toy bear from a side view to a front view.,\"demonstrates how to paint an office window at an abstract point, and peers in a fenced area.\",holds a ball in a sling then he puts it into the trash.,\"pours a liquid in the top of a cup, and then a straw.\",,gold0-orig,pos,unl,unl,pos,n/a,A toy bear wearing red and white overalls pours a cup of coffee into a yellow coffee cup.,The camera man\nanetv_ZKo3_ifK2tQ,10369,The camera man zooms in on the toy bear from a side view to a front view. The camera man,pans out and moves to a side view of the toy bear and zooms out.,lowers the high car window towards the side.,paints price tags while balancing by a skateboarder.,focuses on an old woman painting her fingernails.,,gold0-orig,pos,unl,unl,pos,n/a,The camera man zooms in on the toy bear from a side view to a front view.,The camera man\nanetv_mglEC2-MH14,2620,It is now the next day and she has on a face full of make up and starts to take the rollers out of her head. All of the girls are fluffed out by her hand and she,takes a can of spray and runs it through her head once more.,is doing off parts then good enough to keep her feet going as they go water.,is surprised by the process.,puts it back on the hair dryer to blow it while putting it into her hair.,moves and fixes her hair so that that the braid falls neatly and not in press.,gold1-orig,pos,unl,unl,pos,pos,It is now the next day and she has on a face full of make up and starts to take the rollers out of her head.,All of the girls are fluffed out by her hand and she\nanetv_mglEC2-MH14,2618,\"A set of rollers are shown and a bottle of mousse, the lady then applies some to her hand and starts to roll her hair. The process is finished, and she\",begins talking about what she just did.,speaks to the camera and is seen taking a painting attached to the edges.,shows the video to the girls and tips the hedge thoroughly.,finishes again and puts it back on the display table to talk about it.,is then blow drying her hair once she is finished.,gold0-orig,pos,unl,unl,unl,pos,\"A set of rollers are shown and a bottle of mousse, the lady then applies some to her hand and starts to roll her hair.\",\"The process is finished, and she\"\nanetv_mglEC2-MH14,19070,She puts her hair up in pink rollers. She then,takes them down and styles her hair.,takes a thumbs up and hands back the braid.,brushes her bangs at the end of her braid.,adds the napkin to her hair and then put her face out for the camera.,begins to shave her hair using a red towel.,gold0-orig,pos,unl,unl,unl,unl,She puts her hair up in pink rollers.,She then\nanetv_mglEC2-MH14,2617,\"A young lady is sitting in a chair running her fingers through her long black curly hair. A set of rollers are shown and a bottle of mousse, the lady\",then applies some to her hand and starts to roll her hair.,'s operate back on her head.,\"spray and talked, and then for the girl smiling.\",stepping at one ends of the hair and then is on her legs.,,gold0-orig,pos,unl,unl,pos,n/a,A young lady is sitting in a chair running her fingers through her long black curly hair.,\"A set of rollers are shown and a bottle of mousse, the lady\"\nanetv_mglEC2-MH14,19069,\"A woman is seated in front of the camera, talking. She\",puts her hair up in pink rollers.,\"is talking about a dimly - room wash outdoors, as well as a woman shaving the floor.\",walks over to a pile of kindling that has red flowers on top.,holds two long rings and puts the glass down.,holds up a pencil and begins clipping it with her pencil.,gold0-reannot,pos,unl,pos,pos,pos,\"A woman is seated in front of the camera, talking.\",She\nanetv_R0dqEWnDC7k,16576,The batsmen is batting while the bowler is doing an overhand throw. The next scene,shows a team of cricketers wearing white uniforms getting ready to play as they gather in a circle with their captain.,is the coach 2 hours.,plays with the increase state of the jumps.,is loaded with gore.,ends with the same logo s of the park behind the wagon.,gold0-orig,pos,unl,pos,pos,pos,The batsmen is batting while the bowler is doing an overhand throw.,The next scene\nanetv_R0dqEWnDC7k,16575,The video shows two countries represented by blue and green uniforms playing the game of cricket professionally. The batsmen,is batting while the bowler is doing an overhand throw.,continue hitting the ball with the ball attempting to show it off again.,has a knock over the player's head.,\"continues a tug of sundae, talking over the camera.\",,gold0-reannot,pos,unl,unl,unl,n/a,The video shows two countries represented by blue and green uniforms playing the game of cricket professionally.,The batsmen\nlsmdc1041_This_is_40-9216,3230,A fat woman approaches with someone. Someone,stands a dozen feet away.,guides a row of passengers from the second rope.,\"turns onto the terrace and jumps from the wall a few feet down, then falls backwards onto the covers, clutching his neck.\",watches as she sits bicycles with her cat.,shifts his gaze while someone nudges someone.,gold0-orig,pos,unl,unl,unl,pos,A fat woman approaches with someone.,Someone\nanetv_6DXH6kwMe-Q,12107,A woman uses a canvas to paint the images in various colors. She,\"perfectly creates a painting of the evening sky, complete with trees.\",stands at a desk and looks at the camera with her book.,lifts up hair supplies and flips.,shows off the woman's nails on the finished cloths with a woman.,,gold0-orig,pos,unl,unl,unl,n/a,A woman uses a canvas to paint the images in various colors.,She\nanetv_6DXH6kwMe-Q,18074,There are two still pictures that appear with bold white letters on the screen. A woman then prepares the oil paints then she,paints a picture on canvas with a paint brush.,talks into the screen.,cleans a different product then demonstrates how to use it inside.,shows the prep for the paper painting.,,gold0-orig,pos,unl,unl,pos,n/a,There are two still pictures that appear with bold white letters on the screen.,A woman then prepares the oil paints then she\nanetv_6DXH6kwMe-Q,12106,A view of islands and the evening sky are shown. A woman,uses a canvas to paint the images in various colors.,gives a instruction of the children getting a tattoo.,is showing sand flying in the sky while spinning five kites.,is hit and flips and misses.,is outside in a surf board doing tricks on a board in a beach.,gold0-orig,pos,unl,unl,unl,pos,A view of islands and the evening sky are shown.,A woman\nanetv_6DXH6kwMe-Q,18075,A woman then prepares the oil paints then she paints a picture on canvas with a paint brush. The camera then,zooms out of the sunset painting of hills and a small island during sunset.,paints on the wall while laying on the painting.,pans to him painting from outside.,shows a smiling painting and then looking at the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A woman then prepares the oil paints then she paints a picture on canvas with a paint brush.,The camera then\nanetv_6DXH6kwMe-Q,18073,Two screens appear with black background and white text showing the title of the video and what the video is about and a website address. There,are two still pictures that appear with bold white letters on the screen.,is shown in a pumpkin.,\"then gives the website and the names, and the cut sign is badge, which is homemade.\",and the man in the white shirt is talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,Two screens appear with black background and white text showing the title of the video and what the video is about and a website address.,There\nanetv_6DXH6kwMe-Q,18076,The camera then zooms out of the sunset painting of hills and a small island during sunset. A black screen,appears with the woman's website in white letters and then fades to black.,\"appears with the people talking while leading to the front, and a car is on the street.\",\"appears on the black background, then a map of the ocean is shown as men are on a roof and playing together.\",appears with black writing on it before it is shown.,,gold0-reannot,pos,unl,pos,pos,n/a,The camera then zooms out of the sunset painting of hills and a small island during sunset.,A black screen\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26139,16586,\"He reaches a crowded video game arcade and pauses, gazing about. He\",\"stops at a pinball machine played by a thin young man with long, corn silk hair.\",\"follows, as he get out of the cab and drive back toward his house.\",\"pauses after sewing, and someone hurries outside with her bag's slippers.\",\"hobbles to another car, and walks onto the porch.\",looks out of a window and watches as someone gets up through an ornate bedroom.,gold0-orig,pos,unl,unl,unl,unl,\"He reaches a crowded video game arcade and pauses, gazing about.\",He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26139,16585,As he moves through the casino a waitress intercepts him. He,\"reaches a crowded video game arcade and pauses, gazing about.\",returns his attention to the scrapbook of moves.,\"glances over someone's shoulder, unbuttons his shirt then walks over.\",\"flashes it to his head, but someone continues to react to disappointed someone.\",notices someone's computer screen.,gold0-reannot,pos,unl,unl,unl,pos,As he moves through the casino a waitress intercepts him.,He\nlsmdc3074_THE_ROOMMATE-4313,15667,Someone glances back and sees the person walking away. Now someone,enters the frat house and shuts the door.,walks through the woods followed by the mailbag.,heads downstairs down an escalator.,\"clutches his bruised, unshaven leg.\",\"retreats in the middle of a long, crooked bed with the pair of open door which she lies curled around.\",gold1-orig,pos,unl,unl,unl,unl,Someone glances back and sees the person walking away.,Now someone\nlsmdc3074_THE_ROOMMATE-4313,15665,\"She averts her gaze as they pass each other. As someone continues on, the hooded figure\",stops and watches her go.,assembles his surroundings.,lies out steps behind him.,stops in front of someone.,crouches down by the woman.,gold1-orig,pos,unl,unl,unl,pos,She averts her gaze as they pass each other.,\"As someone continues on, the hooded figure\"\nlsmdc3074_THE_ROOMMATE-4313,15661,\"Halfway down, she halts and scans the entire area before continuing on. Someone\",steps out of the coffee shop.,moves her gaze downward.,walks out of her room as someone enters.,spots someone being led by the alien.,\"waits for a moment, some stare ahead of a weary gaze.\",gold0-orig,pos,unl,unl,unl,unl,\"Halfway down, she halts and scans the entire area before continuing on.\",Someone\nlsmdc3074_THE_ROOMMATE-4313,15659,Now we drift high over the intersecting pathways on the quad. Someone,nervously glances about as she walks alone down a set of steps.,heaves himself into a jog.,wearily draws a squirming chested dead bodies and faces him.,raises her arms and leads her away by the older black civilian.,limps outside and presses the partition between one pillar.,gold1-orig,pos,unl,unl,pos,pos,Now we drift high over the intersecting pathways on the quad.,Someone\nlsmdc3074_THE_ROOMMATE-4313,15662,Someone steps out of the coffee shop. She,walks home alone on the dark deserted street.,stares at a piece of gift paper on a counter.,\"scoots a candy on its table, then rifles through a billboard of snapshots.\",looks all the way to the diner.,,gold1-orig,pos,unl,pos,pos,n/a,Someone steps out of the coffee shop.,She\nlsmdc3074_THE_ROOMMATE-4313,15660,\"Someone nervously glances about as she walks alone down a set of steps. Halfway down, she\",halts and scans the entire area before continuing on.,peers through the hanging trees of her general's but silently merge into us.,\"takes a few relaxing step, then turns and walks away.\",leans back against a wall and leans against a pillar behind a doorway.,keeps quiet and quietly begins to file out.,gold0-orig,pos,unl,unl,unl,unl,Someone nervously glances about as she walks alone down a set of steps.,\"Halfway down, she\"\nlsmdc3074_THE_ROOMMATE-4313,15663,She walks home alone on the dark deserted street. She,notices someone walking in her direction.,picks it up and finds someone smiling at her.,walks out of the room as a thin flowing feather approaches.,looks down from the litter on someone.,sits along kissing someone.,gold0-orig,pos,unl,unl,unl,unl,She walks home alone on the dark deserted street.,She\nlsmdc3074_THE_ROOMMATE-4313,15668,Now someone enters the frat house and shuts the door. She,finds a group of frat guys playing video games and allows a smile.,\"stands against the grate, glancing in at him.\",picks on a pillow and picks up the manuscript in the apartment.,drops out a long coffee filter.,\"hangs up the phone, and checks herself over the alarm clock.\",gold0-orig,pos,unl,unl,unl,unl,Now someone enters the frat house and shuts the door.,She\nlsmdc3074_THE_ROOMMATE-4313,15666,\"As someone continues on, the hooded figure stops and watches her go. Someone\",glances back and sees the person walking away.,remains in his room.,turns as someone brushes her hands from her wide black skirt.,lingers in pain and reappears beside her.,\"closes her eyes, feeling for the key.\",gold1-orig,pos,unl,unl,unl,pos,\"As someone continues on, the hooded figure stops and watches her go.\",Someone\nlsmdc3074_THE_ROOMMATE-4313,15669,\"Outside the dorm building, a guy holds a cellphone to his ear. Two students step outside, and someone\",hurries over to catch the open door before it shuts.,gives someone a look.,\"slaps him a few times, then starts down the steps.\",shifts his gaze as someone walks away.,,gold0-orig,pos,unl,pos,pos,n/a,\"Outside the dorm building, a guy holds a cellphone to his ear.\",\"Two students step outside, and someone\"\nlsmdc3074_THE_ROOMMATE-4313,15657,\"She finds an unfinished drawing of herself. Flipping through the subsequent pages, she\",\"finds more and more portraits, each more detailed than the last.\",finds a birthday.,notices the butterfly spread evenly on her lips.,glances thoughtfully at the turkish agent who lies on her next to him.,,gold0-orig,pos,unl,unl,unl,n/a,She finds an unfinished drawing of herself.,\"Flipping through the subsequent pages, she\"\nlsmdc3074_THE_ROOMMATE-4313,15656,She finds someone's brown spiral notebook inside. She,finds an unfinished drawing of herself.,\"starts to have a good time, but gets up.\",picks up a tequila bottle.,shows up her blonde hair.,sits on the bed with her arms folded.,gold0-orig,pos,unl,unl,unl,pos,She finds someone's brown spiral notebook inside.,She\nlsmdc3074_THE_ROOMMATE-4313,15664,She notices someone walking in her direction. She,averts her gaze as they pass each other.,holds out his hand and stroking it.,bib up a cigarette and covers some of the photos of her magazines.,sinks to her knees and grimaces.,,gold0-orig,pos,unl,unl,pos,n/a,She notices someone walking in her direction.,She\nlsmdc3074_THE_ROOMMATE-4313,15658,\"Flipping through the subsequent pages, she finds more and more portraits, each more detailed than the last. Now we\",drift high over the intersecting pathways on the quad.,allow photos and see that she has reached the surface.,\"drive through a park in the sun's house, opening clouds across the sky.\",get to the top of a teeming day.,glimpse brown orange snakes.,gold0-reannot,unl,unl,unl,unl,unl,\"Flipping through the subsequent pages, she finds more and more portraits, each more detailed than the last.\",Now we\nlsmdc3074_THE_ROOMMATE-4313,15670,\"Two students step outside, and someone hurries over to catch the open door before it shuts. In someone's room, someone\",looks up from her books.,follows someone to the door.,runs out some stairs.,slides the doors open.,looks over at someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Two students step outside, and someone hurries over to catch the open door before it shuts.\",\"In someone's room, someone\"\nanetv_IoiDAHNryTk,18042,A girl is seen climbing across a set of monkey bars followed by her waving to the camera. She,climbs her way back on the bars and jumps down mid way through.,is seen handing out parts as she climbs at the end of a slide.,pans down out at the end and showing one man talking into the camera.,leaps all times and jumps in a large pool and eventually lands on the horse.,,gold0-orig,pos,unl,unl,unl,n/a,A girl is seen climbing across a set of monkey bars followed by her waving to the camera.,She\nanetv_PlAVnu-ueM4,11621,\"Ms Smith is giving an interview talking about weight lifting, she speaks about how she started around 12. The coach briefly\",speaks about how gives them rest before every competition.,is highly skilled and measure to first correct stance.,talks about what she needs to do with the strap of her hand.,assist her with different facial sports and begins lifting and incorporates by again.,explains how to use the hoop.,gold1-orig,pos,unl,unl,unl,unl,\"Ms Smith is giving an interview talking about weight lifting, she speaks about how she started around 12.\",The coach briefly\nanetv_PlAVnu-ueM4,11623,\"She lifts the weight way above her head and drops it wearing her uniform. Everyone claps for her, and then you\",hear from her and the coach again before the interview is over.,don't seem to notice her.,reach the clap of the teams.,let it drop and exaggerated walks backwards in line across the stage.,,gold0-orig,unl,unl,unl,unl,n/a,She lifts the weight way above her head and drops it wearing her uniform.,\"Everyone claps for her, and then you\"\nanetv_H2l7GraYFhI,18898,A band plays on a stage. A man in a suit,plays the saxophone up front wearing sunglasses.,pretends to watch through the black screen.,plays a tam - tam on stage.,plays on the screen.,joins him outside playing with the girls.,gold0-reannot,pos,unl,unl,unl,unl,A band plays on a stage.,A man in a suit\nanetv_u3uYs6SZFKo,13794,The little boy talks and a girl starts pushing the boy on the swing. We,see the girl swinging and a girl pushing the boy on the swing.,stops to wave goodbye when the woman rises and follows his husband.,repeat the jump once again.,see the dogs performing tricks and the small child watches it.,see a swimming bowl in the living room.,gold0-orig,pos,unl,unl,unl,unl,The little boy talks and a girl starts pushing the boy on the swing.,We\nanetv_u3uYs6SZFKo,13793,Two kids walk to and sit in swings. The little boy talks and a girl,starts pushing the boy on the swing.,holds a rake on his shoulder.,makes multiple flips over the yard on the girl's shoulders.,starts to swing on a inflatable.,,gold0-orig,pos,unl,unl,pos,n/a,Two kids walk to and sit in swings.,The little boy talks and a girl\nanetv_u3uYs6SZFKo,10846,Two kids are talking at the playground. The two kids,walked to the swing and sat.,begin to blow up.,begin climbing down a slide.,trot around the monkey.,are playing on the playground.,gold1-orig,pos,unl,pos,pos,pos,Two kids are talking at the playground.,The two kids\nanetv_sz0GhFkkXYI,7550,A man leans forward as a baby in a swing tries to grab and chew on his hair. The baby,\"laughs, swinging back and forth, then tries to grab the camera.\",throws it to the man while a guest is facing speaking to the camera.,performs first again with the baby's head.,strains to swing in and then bounce back resolutely forward and lands on the pinata in front of him.,takes in a swing at the auditorium as the man continues to swing.,gold1-orig,unl,unl,unl,unl,unl,A man leans forward as a baby in a swing tries to grab and chew on his hair.,The baby\nanetv_gaILpaBa7M8,6592,\"A electric machine is attached to the end of a ping pong table and is moving with the motion senses of a person's hand. After, several balls\",are then thrown towards the paddle and returned by the machine.,are scored while they sit with the man still wearing his shirt and shorts.,\"are featured, after the man puts his hand on gort and is shown to the camera.\",are shown being played play against each other.,are shown with a person's hands over under a curling costumes and winning of them.,gold1-reannot,unl,unl,unl,unl,unl,A electric machine is attached to the end of a ping pong table and is moving with the motion senses of a person's hand.,\"After, several balls\"\nanetv_Q5qIsUsM_-A,14938,A young man solves a rubix cube quickly in a digitally timed session. A man in a yellow shirt with a graphic of a man's face on it,talks to the camera and holds up an unsolved rubix cube.,gets up and takes two minutes.,has fades to black.,is shown with the same two men pinning the old boy to the fence.,seems to reason with it.,gold0-orig,pos,unl,unl,unl,unl,A young man solves a rubix cube quickly in a digitally timed session.,A man in a yellow shirt with a graphic of a man's face on it\nanetv_Q5qIsUsM_-A,14939,A man in a yellow shirt with a graphic of a man's face on it talks to the camera and holds up an unsolved rubix cube. A black digital timer,appears on the screen in the lower right hand corner and begins to run time.,shows a scuff mark along with a red and artistic orange cube hopscotch down on the parallel bar.,is on the nightstand with a long seconds in it.,goes on a square screen while the man tries to solve the puzzle.,presents the table and the various ingredients for the recipe are.,gold0-reannot,pos,unl,unl,unl,unl,A man in a yellow shirt with a graphic of a man's face on it talks to the camera and holds up an unsolved rubix cube.,A black digital timer\nanetv_2tf414bkudE,9037,The person is shaving using a knife. The person,easily cuts a piece of newspaper paper.,rubs shaving cream on the dog's head.,uses a tool with the shaver.,peels a small towel from the boot.,holds an electric tool.,gold1-orig,pos,unl,unl,unl,unl,The person is shaving using a knife.,The person\nanetv_2tf414bkudE,9034,The person sharpens the knife. The person,runs the knife through a piece of white paper.,demonstrates the bottom hand.,sharpens the knife slices.,continues cutting the grass.,cuts the bar with a knife and cuts the tomato cutting away.,gold0-orig,pos,unl,unl,unl,unl,The person sharpens the knife.,The person\nanetv_2tf414bkudE,12297,A man touches a knife on a table. He,picks up a sharpener and sharpens the blade of the knife on the sharpener.,blows out the candles in the garden.,takes a drill from him.,cleans one of his arms with a sharpening iron.,throws the paper onto the counter.,gold0-orig,pos,unl,unl,unl,unl,A man touches a knife on a table.,He\nanetv_8jyqeivzs2M,18332,The pasta is pour in the pot with the sauce and cheese. when ready the pasta,is serve in a white plate.,is cooked in the salad.,\"is placed and spaghetti is placed in the pan, bag is put in a pot.\",is cooked with several onion possession and the syrup is added into it.,,gold0-orig,pos,unl,unl,unl,n/a,The pasta is pour in the pot with the sauce and cheese.,when ready the pasta\nanetv_8jyqeivzs2M,3456,A close up of a pot is seen followed by a person mixing various ingredients into the pot. The person,continues mixing around ingredients while the water boils as well as pouring in noodles.,adds liquids into a can and puts a plastic plate to the top.,blends the ingredients into the bowl and places the pasta together along a plate and stirs it in.,tapes the pan and continues adding eggs to the pan and pours it back into the pan.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a pot is seen followed by a person mixing various ingredients into the pot.,The person\nanetv_8jyqeivzs2M,18331,Green paste is in a pot and is mixed with milk. the pasta,is pour in the pot with the sauce and cheese.,is added to the tray as well.,is mixed in the mixture and poured into a martini glass.,is placed on the rack next to a drying rack.,is placed in a pan of oil.,gold0-orig,pos,unl,unl,pos,pos,Green paste is in a pot and is mixed with milk.,the pasta\nanetv_8jyqeivzs2M,3457,The person continues mixing around ingredients while the water boils as well as pouring in noodles. The man,stirs around the noodles and shows a close up of the plate served.,proceeds to mixing the ingredients together using the cutter and leaves and showing out of the drink.,continues mixing ingredients together and looking to the camera while the camera pans down the end.,goes back while the camera watches on the stove as well as pointing all around the fruit.,mixes the eggs into a bowl and mixes the ingredients to the glass.,gold0-orig,pos,unl,pos,pos,pos,The person continues mixing around ingredients while the water boils as well as pouring in noodles.,The man\nanetv_ti3EHJLR2mU,10020,She then strains the pasta out in a bowl by throwing out the excess water. Then she,takes a stick of butter and cuts it and adds to a saucepan.,puts the baking product in his oven.,adds the mixture and pours more oil into the oil.,puts the ingredients into a mixer and puts them on a plate.,,gold0-orig,pos,unl,pos,pos,n/a,She then strains the pasta out in a bowl by throwing out the excess water.,Then she\nanetv_ti3EHJLR2mU,10025,She serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it. She,is happy with the way it turned out.,walks the class in her and says what she wants.,\"is again mixing the sauce, showing with her bag.\",takes his plate into a pitcher of chocolate.,pours the noodles onto the plate and back up too.,gold0-orig,pos,unl,unl,unl,unl,She serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it.,She\nanetv_ti3EHJLR2mU,10024,She continues stirring the pasta in the saucepan. She,serves the pasta in a square brown plate and takes a spoonful of the pasta to taste it.,\"walks away, sets the stereo down on the stove and continues talking to some proper knitting.\",repeats the specifics of the peel.,\"sits with someone now patiently, making pasta sauce.\",grabs the pan again and then puts it to the mixture.,gold0-orig,pos,unl,unl,unl,unl,She continues stirring the pasta in the saucepan.,She\nanetv_ti3EHJLR2mU,10022,Then she adds some milk and cheese to it and stirs it in with the cooked pasta. She,adds some more milk and cheese to the pasta to make the sauce.,starts to peel the potatoes and sprinkles it on.,ends with a little group of images.,demonstrates how to cook ice cream and puts the pan together.,,gold0-orig,pos,unl,unl,unl,n/a,Then she adds some milk and cheese to it and stirs it in with the cooked pasta.,She\nanetv_ti3EHJLR2mU,10023,She adds some more milk and cheese to the pasta to make the sauce. She,continues stirring the pasta in the saucepan.,\"pours the ounce of mortar into her small cup, then shakes the liquid from the pan.\",reads the cut on the end and puts the pan in a sugar sitting spot.,is then washed and rinsed and arranges next to the oven.,,gold0-orig,pos,unl,unl,unl,n/a,She adds some more milk and cheese to the pasta to make the sauce.,She\nanetv_ti3EHJLR2mU,10018,The video is a tutorial on how to make Alfredo sauce pasta. A lady with blond hair wearing a maroon tank top,is demonstrating how to boil water to make bow - tie pasta.,is getting ready to catch it with a dryer.,is holding a shield on her elbow.,is cutting the room with a trimmer.,,gold0-orig,pos,unl,unl,unl,n/a,The video is a tutorial on how to make Alfredo sauce pasta.,A lady with blond hair wearing a maroon tank top\nanetv_ti3EHJLR2mU,10019,A lady with blond hair wearing a maroon tank top is demonstrating how to boil water to make bow - tie pasta. She then,strains the pasta out in a bowl by throwing out the excess water.,leads the pair attempts to heroin over cake.,takes the large pot of pasta she hardens with the mix.,\"puts instructions on the bread, squeezing your lemon cookies onto a nook of apples.\",shows eye cleaner and continues talking about chunky leftovers.,gold0-orig,pos,unl,unl,unl,unl,A lady with blond hair wearing a maroon tank top is demonstrating how to boil water to make bow - tie pasta.,She then\nanetv_ti3EHJLR2mU,10021,Then she takes a stick of butter and cuts it and adds to a saucepan. then she,adds some milk and cheese to it and stirs it in with the cooked pasta.,rinses the baked pasta and puts the cake on a white tray along with flour in the sink.,\"throws the cookies in a plastic pot, then garnishes it and pours some bundt orange liquids into slices.\",\"takes a bite and adds chopsticks, collecting her share.\",goes for a bun and gets engaged in quick tapes.,gold0-orig,pos,unl,unl,unl,unl,Then she takes a stick of butter and cuts it and adds to a saucepan.,then she\nanetv_dXONZBWOKHk,8085,A little girl is wearing hair curlers. She,starts jumping on a bed.,puts a braid around her hair.,proceeds to braids up her hair.,goes to play the bagpipes.,demonstrates a different angle of lipstick using a brush and begins stretching a line of hair behind her hair.,gold0-orig,pos,unl,unl,unl,pos,A little girl is wearing hair curlers.,She\nanetv_dXONZBWOKHk,8086,She starts jumping on a bed. She,falls over onto a pillow on the bed.,runs backwards out of the snow that are hanging from a wall.,gets up and begins rings replay from the stairs.,stands in a room with her legs off.,runs over to see that she is jump as far as possible.,gold0-orig,pos,unl,unl,unl,pos,She starts jumping on a bed.,She\nanetv_dXONZBWOKHk,6057,A small child is seen jumping on the bed smiling at the camera. She,jumps down and then back up again.,begins to move before climbing into the pool.,picks up and wipes her face with the paper.,walks closer to the sink and shows off the jug while speaking to the camera.,walks back and forth to help washing his hands while the woman smiles.,gold0-reannot,pos,unl,unl,unl,unl,A small child is seen jumping on the bed smiling at the camera.,She\nanetv_dXONZBWOKHk,6058,She jumps down and then back up again. She,continues to jump over and over again on the bed.,follows her while spinning and spinning around several times.,does red flips and flips across the mat twice.,stops and stares down at her father.,lets go of the rope and gets stuck on the rope.,gold1-reannot,pos,unl,unl,unl,unl,She jumps down and then back up again.,She\nanetv_L6Uf3epn3zA,5098,Several canoes are sen laid out that leads into shots of people riding in the canoes. A man,is seen speaking to the camera as well as riding in a canoe with another woman.,is seen sitting on the back of the camels as well as various riding in kayaks across the water.,is shown sitting on his kayak together while paddling in the water.,begins riding down a slide with several rafts down the boat.,,gold0-orig,pos,unl,unl,unl,n/a,Several canoes are sen laid out that leads into shots of people riding in the canoes.,A man\nanetv_L6Uf3epn3zA,5099,A man is seen speaking to the camera as well as riding in a canoe with another woman. More people,are seen riding down the river in canoes while the man continues to speak.,are then seen riding down a river rafting as well as tricks and stunts on the area.,are seen riding waves in the river as well as a jet crashing in the water.,are seen riding around in the area outside a pit and a one still riding down the hill.,are seen riding in a bull that leads into several clips of people riding down tubes down the mountain.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera as well as riding in a canoe with another woman.,More people\nanetv_yyUmEgvq3B0,4041,A man is seen walking with a chair and puts it in the middle of a bowling lane. He high fives the audience and,throws the ball over the chair and hits all the pins.,starts jumping through the air and speaking to the field.,pushes several cars in the end.,leads into them speaking to the other.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen walking with a chair and puts it in the middle of a bowling lane.,He high fives the audience and\nanetv_yyUmEgvq3B0,4042,He high fives the audience and throws the ball over the chair and hits all the pins. He same shot is shown several times and he,sits down in his chair laughing.,ends the chasing throw.,does more wall again.,is then shown in numerous locations.,,gold0-orig,pos,unl,unl,unl,n/a,He high fives the audience and throws the ball over the chair and hits all the pins.,He same shot is shown several times and he\nanetv_43hQNmW-6_k,10477,He talks to the camera about the procedure. He,\"leans forward, stretching his legs.\",moves back and forth to fix the hanging bar.,begins going down the hill and talking to the camera.,leans on the counter.,\"picks up a metal cube, then puts it down.\",gold1-orig,pos,unl,unl,unl,unl,He talks to the camera about the procedure.,He\nanetv_43hQNmW-6_k,10476,A man is doing the splits inside a gym. He,talks to the camera about the procedure.,wipes his ironed clothes.,is holding a bunch of supplies in his hand.,is almost hurling and likes dancing.,is a regular man with a metal ball attached to the rod.,gold0-reannot,pos,unl,unl,unl,unl,A man is doing the splits inside a gym.,He\nlsmdc1042_Up_In_The_Air-88754,13833,Someone walks along the hall and lets himself into his apartment. Someone,stops for a moment and looks at the sparse white room.,turns to see someone leaping up the stairs.,sits down with the stereo awake.,carries the briefcase over to the cash register.,comes down the stairs to a broken - filled lobby.,gold1-orig,pos,unl,unl,unl,unl,Someone walks along the hall and lets himself into his apartment.,Someone\nlsmdc1042_Up_In_The_Air-88754,13835,\"He opens the door to a closet and hangs up some shirts. In the bathroom, he\",puts his toothbrush in a glass.,\"adds a piece of clothing in a freezer, and lays down a coat.\",steps out and opens the door for someone.,puts a bucket into a trash can and slumps down on the bed.,glances down at his sneakers.,gold0-orig,pos,unl,unl,unl,pos,He opens the door to a closet and hangs up some shirts.,\"In the bathroom, he\"\nlsmdc1042_Up_In_The_Air-88754,13822,\"At the reception, people dance together. Guests\",wave tiny little wedding bells.,\"is looking at the throng of wringing the poles, then turns to someone's brown - haired woman.\",bring in the hallway filled with guests together.,walk up to someone.,\"listen to a sound, watching live music sing amongst the trees.\",gold0-orig,pos,unl,unl,unl,unl,\"At the reception, people dance together.\",Guests\nlsmdc1042_Up_In_The_Air-88754,13843,\"Lost in his thoughts, he hangs his head then shakes it slightly. Someone\",looks up and smiles to himself.,licks his mouth and chews in his breath.,inserts the viewer into someone's eye.,\"takes someone's cigarette in her hand, and rides back toward the boot.\",\"flicks water at his brother, then turns to face him.\",gold0-orig,pos,unl,unl,pos,pos,\"Lost in his thoughts, he hangs his head then shakes it slightly.\",Someone\nlsmdc1042_Up_In_The_Air-88754,13845,He taps his thumb on the lectern. He,walks off past a backstage guy.,rips free her sunglasses and slaps him.,is seen at home invitation on his desk and lying on his bed.,picks it up off his hand.,lays it back on the ragged posture.,gold1-orig,pos,unl,unl,unl,unl,He taps his thumb on the lectern.,He\nlsmdc1042_Up_In_The_Air-88754,13841,Computer - generated backpacks revolve on the screens behind him. Someone,looks out across the room full of seated delegates.,\"good eyes turn towards the car and fires, switching the gun trembling.\",lets see someone of a man on a ski board as the water increases.,presents the pursed sumo to a box passport and turns.,,gold0-orig,pos,unl,unl,unl,n/a,Computer - generated backpacks revolve on the screens behind him.,Someone\nlsmdc1042_Up_In_The_Air-88754,13839,\"Someone waits in the wings of a packed conference hall. Smartly suited, someone\",puts his backpack on a table and steps up to a lectern.,makes the remaining vending on the floor.,opens a suitcase and takes a seat.,introduces someone through a magazine ad on a cluttered table.,watches the film thug stare.,gold0-orig,pos,unl,unl,unl,pos,Someone waits in the wings of a packed conference hall.,\"Smartly suited, someone\"\nlsmdc1042_Up_In_The_Air-88754,13815,\"She ushers someone into the room, where someone sits being consoled by the other bridesmaids. Someone\",\"walks over to someone, kneels down and takes her hands in his.\",struggles on his desk and signs drawings of someone.,finds the plate of a comic book.,watches in horror as she reflects and photographs several people on the ground.,\"holds the bar and sit, staring straight ahead.\",gold0-orig,pos,unl,unl,unl,pos,\"She ushers someone into the room, where someone sits being consoled by the other bridesmaids.\",Someone\nlsmdc1042_Up_In_The_Air-88754,13834,Someone stops for a moment and looks at the sparse white room. He,opens the door to a closet and hangs up some shirts.,reaches out his hand for his money.,\"tips it, but carries it through the window, and goes in the kitchen.\",runs over to someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone stops for a moment and looks at the sparse white room.,He\nlsmdc1042_Up_In_The_Air-88754,13825,He pulls a goofy face and falls back into her arms. They,play pat - a - cake.,struggle to make control.,jerks out a corner and heads farther out.,sit up the sidewalk.,,gold1-orig,unl,unl,unl,unl,n/a,He pulls a goofy face and falls back into her arms.,They\nlsmdc1042_Up_In_The_Air-88754,13831,\"Holding their wheelie cases, they face each other smiling. Someone's smile\",drops for a moment.,\"fades, for an amber smile.\",vanishes by the spotlight.,fades to her features.,fades and someone smells his face as people stroll inside.,gold0-orig,pos,unl,unl,unl,unl,\"Holding their wheelie cases, they face each other smiling.\",Someone's smile\nlsmdc1042_Up_In_The_Air-88754,13828,Someone shimmies from side to side. Someone,tosses her bouquet over her shoulder.,adorn a full height of someone.,leans forward and puts an arm around her white shoulders.,\"approaches with his mother, smiling warmly.\",stares incredulously at him.,gold0-orig,pos,unl,pos,pos,pos,Someone shimmies from side to side.,Someone\nlsmdc1042_Up_In_The_Air-88754,13837,\"At home, he takes a couple of whiskey miniatures from his fridge. He\",stands looking out of a window with a drink in his hand.,\"sees them, puts it in the dark living room.\",'s busy with the tv show.,uses cars to looking light at the computers.,collects three bags out of the drawer and leaves.,gold0-orig,pos,unl,unl,unl,pos,\"At home, he takes a couple of whiskey miniatures from his fridge.\",He\nlsmdc1042_Up_In_The_Air-88754,13847,\"He reaches a Departure gate, gets the pass checked and goes through. On a jet, someone\",gazes out of the window.,appears and runs to the soup house.,strolls down a dark street and shelves of tobacco drawn by staff.,stops stoic as someone stares.,sits up as he listens.,gold0-orig,pos,unl,unl,unl,pos,\"He reaches a Departure gate, gets the pass checked and goes through.\",\"On a jet, someone\"\nlsmdc1042_Up_In_The_Air-88754,13849,Someone gets in and drives away. Someone,\"drives along slush - covered roads, glancing at a piece of paper in his hand and scanning the streets.\",automaton reaches down and pulls out the handle.,is smiling to himself as he is no longer under the water.,stops as he can as someone gets outside the rain.,\"stares after someone, who removes his helmet.\",gold0-orig,pos,unl,unl,unl,pos,Someone gets in and drives away.,Someone\nlsmdc1042_Up_In_The_Air-88754,13852,Someone arrives at the airport. He,drags his case through the busy terminal building.,\"enters a small office, locks lights up.\",gives someone a pat on the back.,steps out from the golf store and pulls up a golf bag.,,gold0-orig,pos,unl,pos,pos,n/a,Someone arrives at the airport.,He\nlsmdc1042_Up_In_The_Air-88754,13816,\"They take their seats in the church. In the vestry, someone\",helps someone get into his suit.,puts a piece of paper in the ground and holds it wearily to the old lady.,puts down his bouquet and strolls about.,joins a.,uses their wand and grind.,gold0-orig,pos,unl,unl,unl,unl,They take their seats in the church.,\"In the vestry, someone\"\nlsmdc1042_Up_In_The_Air-88754,13840,\"Smartly suited, someone puts his backpack on a table and steps up to a lectern. Computer - generated backpacks\",revolve on the screens behind him.,soar across the lawn.,take on their headsets.,topple onto a fence for a businessman and stand on the corner.,draped over his leg.,gold0-orig,pos,unl,unl,unl,pos,\"Smartly suited, someone puts his backpack on a table and steps up to a lectern.\",Computer - generated backpacks\nlsmdc1042_Up_In_The_Air-88754,13846,\"He runs through the airport, dragging his case with one hand, with a boarding pass flapping in the other. He\",\"reaches a departure gate, gets the pass checked and goes through.\",\"approaches, then grabs someone's phone and yank it back to their music.\",fires at the boy and steps down into the balustrade.,peeks over someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"He runs through the airport, dragging his case with one hand, with a boarding pass flapping in the other.\",He\nlsmdc1042_Up_In_The_Air-88754,13832,Someone watches her head to her Departure gate. Someone,walks along the hall and lets himself into his apartment.,opens a suitcase and cleans the bucket behind her ear.,\"wheels her coat around the tree, then shoves it back.\",nods hard against his tree.,,gold1-orig,unl,unl,unl,unl,n/a,Someone watches her head to her Departure gate.,Someone\nlsmdc1042_Up_In_The_Air-88754,13820,\"Everyone looks around as someone walks down the aisle, arm - in - arm with someone's uncle. People\",\"walk up to the priest, who conducts the ceremony.\",look up from someone's anguished face.,\"puts in the drink case, putting them on their shoulders, smoke rises as it goes at the end.\",smile follows someone.,,gold0-orig,pos,unl,unl,unl,n/a,\"Everyone looks around as someone walks down the aisle, arm - in - arm with someone's uncle.\",People\nlsmdc1042_Up_In_The_Air-88754,13848,\"In a flurry of snow, someone picks up a Hertz rental car. Someone\",gets in and drives away.,\"looks again from the mirror, rising to his feet and raising his huge cane and rising above their heads.\",flies back onto their perch.,leaves with the rest of it to the fat guy.,,gold0-orig,pos,unl,unl,unl,n/a,\"In a flurry of snow, someone picks up a Hertz rental car.\",Someone\nlsmdc1042_Up_In_The_Air-88754,13842,\"Someone looks out across the room full of seated delegates. Lost in his thoughts, he\",hangs his head then shakes it slightly.,tries to spoon himself in front of himself.,presses his hand against the door handle.,turns to find himself at the helm.,reaches up towards someone.,gold0-orig,pos,unl,unl,unl,unl,Someone looks out across the room full of seated delegates.,\"Lost in his thoughts, he\"\nlsmdc1042_Up_In_The_Air-88754,13821,\"People walk up to the priest, who conducts the ceremony. Everyone\",stands watching as someone slips the wedding ring onto someone's finger.,\"smiles, prepared a little anxious to follow someone in her doorway.\",\"calls into the preacher, as someone sits beside people.\",is oblivious in the silence.,turns to stare.,gold0-orig,pos,unl,unl,unl,pos,\"People walk up to the priest, who conducts the ceremony.\",Everyone\nlsmdc1042_Up_In_The_Air-88754,13817,\"In the vestry, someone helps someone get into his suit. People\",sit watching as flower girls walk down the aisle.,follow someone across the station.,rise from the podium.,drag the judge away.,carry the horses away.,gold0-orig,pos,unl,unl,unl,unl,\"In the vestry, someone helps someone get into his suit.\",People\nlsmdc1042_Up_In_The_Air-88754,13823,Guests wave tiny little wedding bells. People,smile and laugh together.,flash decorations while a magnificent giant bell stick from the railings.,run down her marley and kneels her.,comes towards the safety.,,gold0-orig,pos,unl,unl,unl,n/a,Guests wave tiny little wedding bells.,People\nlsmdc1042_Up_In_The_Air-88754,13853,He drags his case through the busy terminal building. He,swipes his card at the self - service check - in and takes the shuttle train to his gate.,leaves the valet gate and in stock cafe.,steps into the cockpit and sits between the dizzying man on the quay side by the bulldog chief.,moves around the corner and descends the flight from the platform.,\"puts the supply case on the desk and settles inside, finds themselves inside and opens it.\",gold0-orig,pos,unl,unl,unl,unl,He drags his case through the busy terminal building.,He\nlsmdc1042_Up_In_The_Air-88754,13830,\"In the hotel lift, people kiss. Holding their wheelie cases, they\",face each other smiling.,move through the building towards a blazing sign.,\"go through the crowd of passengers, then clear the sky.\",exit into the cafe's lid.,gaze into a room in another.,gold0-orig,pos,unl,unl,unl,unl,\"In the hotel lift, people kiss.\",\"Holding their wheelie cases, they\"\nlsmdc1042_Up_In_The_Air-88754,13819,Someone stands waiting with the bridesmaids. Everyone,\"looks around as someone walks down the aisle, arm - in - arm with someone's uncle.\",holds someone's eyebrow.,seems to be ecstatic.,looks at her anxiously as someone walks and sits in his seat.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stands waiting with the bridesmaids.,Everyone\nlsmdc1042_Up_In_The_Air-88754,13818,People sit watching as flower girls walk down the aisle. Someone,stands waiting with the bridesmaids.,looks surprised at these defending journalists.,nods and watches her reading.,grabs a harvey - truffle to cook.,,gold0-orig,pos,unl,unl,unl,n/a,People sit watching as flower girls walk down the aisle.,Someone\nlsmdc1042_Up_In_The_Air-88754,13850,\"In a hotel room, he sits staring out of the window into the night. He\",sips a large whiskey.,sits and stares at his typewriter.,tosses some medicine balls at the boy.,hurries out of the room.,emerges from the pier into the gallery.,gold0-orig,pos,unl,unl,unl,unl,\"In a hotel room, he sits staring out of the window into the night.\",He\nlsmdc1042_Up_In_The_Air-88754,13824,People smile and laugh together. People,dance cheek - to - cheek.,\"sit on the lounge, people in the study of dark eight - year - old.\",laugh while laughing and laughing to one another.,rush over and take the seat between each rib cage and head on the floor together.,go to their rooms as someone prepares on touching the floral table.,gold0-orig,pos,unl,unl,unl,unl,People smile and laugh together.,People\nlsmdc1042_Up_In_The_Air-88754,13829,\"As the guests start to leave, people sit together. He\",grabs a bouquet of flowers and hands it to her.,\"touches his son's butterfly knife, as he holds it round to someone's face.\",\"swings a spoon at someone, then zips back out.\",tensely faces her.,stares at the camera.,gold0-orig,pos,unl,unl,pos,pos,\"As the guests start to leave, people sit together.\",He\nlsmdc1042_Up_In_The_Air-88754,13855,\"He perches on the edge of a seat, looking morose. Someone\",calls him from her car.,'s agents lean against the pillar.,plants his thumb at someone.,lays it on a small panel.,stares holding her son's toys.,gold1-orig,pos,unl,unl,unl,unl,\"He perches on the edge of a seat, looking morose.\",Someone\nlsmdc1042_Up_In_The_Air-88754,13854,He swipes his card at the self - service check - in and takes the shuttle train to his gate. He,\"perches on the edge of a seat, looking morose.\",runs up again and gets off spinning behind the wheel.,opens the door and puts the notice in the candlelit bags.,takes off his cuff and gets out of the car.,follow someone down the alley.,gold0-orig,pos,unl,unl,unl,pos,He swipes his card at the self - service check - in and takes the shuttle train to his gate.,He\nlsmdc1042_Up_In_The_Air-88754,13826,They play pat - a - cake. Someone,looks serious and waggles his arms.,beams as they loom near a tram.,has the refrigerator open for him.,\"joins the young man, making some paper when someone grabs it, then drops the shrimp on his lap.\",,gold1-reannot,pos,unl,unl,unl,n/a,They play pat - a - cake.,Someone\nlsmdc1042_Up_In_The_Air-88754,13838,A large video screen outside a Las Vegas hotel displays a caption. Someone,waits in the wings of a packed conference hall.,'s brief smile spreads across someone's face as he stares toward the passenger side.,\", the lobby is deserted.\",paints a horn from the ceiling.,drizzles a poker mustache.,gold1-reannot,pos,unl,unl,unl,unl,A large video screen outside a Las Vegas hotel displays a caption.,Someone\nlsmdc1042_Up_In_The_Air-88754,13827,Someone looks serious and waggles his arms. Someone,shimmies from side to side.,stares at his unlaced boots as someone takes off his glasses.,stretches outside someone's and his mouth open.,nods to his associate and holds with his hand to his mouth.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone looks serious and waggles his arms.,Someone\nlsmdc3091_ZOMBIELAND-44272,648,\"The zombie topples off the car. Staggering over, the narrator\",plugs him once more.,grabs someone's knee and hugs him down.,finds a parking meter at a first powdering.,transforms into his life duke and steers it toward him.,stares after him skeptically then gets on the bed.,gold0-orig,pos,unl,unl,unl,unl,The zombie topples off the car.,\"Staggering over, the narrator\"\nlsmdc3091_ZOMBIELAND-44272,647,The narrator turns on his wipers to keep him at bay. The zombie,topples off the car.,move halfway up under the bridge and peers at it through a ribbon on her scooter.,\"sinks, speeding up and out into an intersection.\",blocks his way through the beach when someone crashes into his volvo with the big man.,scoops him out of someone's grasp.,gold0-orig,pos,unl,unl,unl,unl,The narrator turns on his wipers to keep him at bay.,The zombie\nlsmdc3091_ZOMBIELAND-44272,641,The rear view mirror shows another one in the back seat. The car,weaves as the narrator fends him off.,walks between the two trees where they have hidden to the next car.,pulls into the hatchback at the end of the alley.,reaches into someone's apartment.,maneuvers up as the motorcycle speeds through another city.,gold0-orig,pos,unl,unl,unl,unl,The rear view mirror shows another one in the back seat.,The car\nlsmdc3091_ZOMBIELAND-44272,644,\"Words lock together, Rule Number 4, Seat belts. The zombie\",reappears spitting out a mouthful of flowers.,approaches the mark with its badge.,\"fires the ball to the thug, then looks down at the rustic alley floor.\",urges the steering wheel up.,\"lies side - by - side, faces a suit, wearing pajamas.\",gold1-orig,pos,unl,unl,unl,unl,\"Words lock together, Rule Number 4, Seat belts.\",The zombie\nlsmdc3091_ZOMBIELAND-44272,643,He crashes into a planter sending the zombie flying out the windshield and into a building. Words,\"lock together, rule number 4, seat belts.\",\"cross the finish line, tenderly.\",\"removes a car's hood, lather up his baby, and leaves.\",pass up him and hippie him back in polished soda.,,gold1-orig,pos,unl,unl,unl,n/a,He crashes into a planter sending the zombie flying out the windshield and into a building.,Words\nlsmdc3091_ZOMBIELAND-44272,634,\"With toilet paper trailing from his shoe, the infected man chases him toward his car. A female zombie\",emerges from behind the pumps.,shows his way outside.,extending a dough slice to an kung tortoise lying on the back of a well groomed teen.,corpses comes into the pool.,,gold0-orig,pos,unl,unl,unl,n/a,\"With toilet paper trailing from his shoe, the infected man chases him toward his car.\",A female zombie\nlsmdc3091_ZOMBIELAND-44272,637,\"He ditches them and leads the zombies in another lap around the parking lot. Rule Number 1, Cardio,\",blinks on the asphalt.,is 1: 20.,\"purposeful and verdant, with normal motion.\",\"is someone, five children in tourists campaign stolen.\",\"park, and twelve heroes rise fountains.\",gold0-orig,pos,unl,unl,unl,unl,He ditches them and leads the zombies in another lap around the parking lot.,\"Rule Number 1, Cardio,\"\nlsmdc3091_ZOMBIELAND-44272,645,The zombie reappears spitting out a mouthful of flowers. As the narrators,opens his shotgun's chamber.,finishes itself out a winner.,\"pick a dessert fork, someone flourishes it.\",\"clutches someone, his quaffle obscures it.\",hurries down the stream.,gold1-orig,pos,unl,unl,unl,unl,The zombie reappears spitting out a mouthful of flowers.,As the narrators\nlsmdc3091_ZOMBIELAND-44272,649,\"Staggering over, the narrator plugs him once more. He\",slides down onto his butt with a small grimace.,\"loose his sweaty coat, brown pants hands and beats him away every single piece.\",\"wears a compact wig and runs over to him, holding the leather tablecloth.\",\"follows someone inside, smiling broadly.\",\"nosed someone listens in with an attractive parting glance, then turns away and don her gaze.\",gold1-orig,pos,unl,unl,pos,pos,\"Staggering over, the narrator plugs him once more.\",He\nlsmdc3091_ZOMBIELAND-44272,650,The picture fades to black. Now a suitcase,gets wheeled down a highway.,shows someone overlooking the room.,wipes d'artagnan out of it.,settles about pulling edges.,pours through a store.,gold1-orig,pos,unl,unl,unl,unl,The picture fades to black.,Now a suitcase\nlsmdc3091_ZOMBIELAND-44272,638,\"Rule Number 1, Cardio, blinks on the asphalt. Reaching his car again, the narrator\",grabs his keys and notices that the door is already unlocked.,stays down to face the steering wheel.,trods over and pushes him open.,continues on with the landscape.,catches a glimpse of a male crashing in the chair.,gold0-reannot,pos,unl,unl,unl,unl,\"Rule Number 1, Cardio, blinks on the asphalt.\",\"Reaching his car again, the narrator\"\nlsmdc3091_ZOMBIELAND-44272,646,As the narrators opens his shotgun's chamber. The narrator,turns on his wipers to keep him at bay.,edges it out of the hole.,edges his way up from behind the cliff.,crouches into his arms.,spins away killing another hourglass.,gold0-reannot,unl,unl,unl,unl,unl,As the narrators opens his shotgun's chamber.,The narrator\nlsmdc3091_ZOMBIELAND-44272,639,\"Reaching his car again, the narrator grabs his keys and notices that the door is already unlocked. He\",climbs in and locks it just as the zombies arrive.,goes to the desk and waits for some attention.,does the same as someone's car door opens.,crosses over to a leather bench with the stuffed open checked posted apologetically.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Reaching his car again, the narrator grabs his keys and notices that the door is already unlocked.\",He\nlsmdc3091_ZOMBIELAND-44272,640,\"Fastening his seat belt, he speeds off. The rear view mirror\",shows another one in the back seat.,shows the entire tenement onward.,shows as the truck screeches forward.,shows an angled platform.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Fastening his seat belt, he speeds off.\",The rear view mirror\nanetv_a6lCnOqNaMY,5197,A man is running down the track. He,throws a javelin onto the field.,\"jumps onto a bull, chasing him down.\",is run around a corner.,lifts his feet up in front of other people.,are shown celebrating after him.,gold1-orig,pos,unl,unl,unl,unl,A man is running down the track.,He\nanetv_a6lCnOqNaMY,5198,He throws a javelin onto the field. The audience,is behind him in the stands watching.,applauds and claps him on the porch.,jumps as he jumps over a large hay project.,cheering and springs with several other passengers them.,is struggling to catch the ball.,gold0-orig,pos,unl,unl,unl,unl,He throws a javelin onto the field.,The audience\nanetv_EWSMeiZqUHQ,1350,\"Suddenly, a group of boys begin to run around the classroom smiling, marching in place, and doing some dancing and exercises while the rest of the sitting class look on. The boys spread apart and end their routine then they\",walk towards one another while smiling.,continue playing for the remainder of the video and going back and forth.,show the proper way to do the moving platform move.,stop to smile at each other.,,gold1-orig,pos,unl,pos,pos,n/a,\"Suddenly, a group of boys begin to run around the classroom smiling, marching in place, and doing some dancing and exercises while the rest of the sitting class look on.\",The boys spread apart and end their routine then they\nlsmdc0013_Halloween-53893,2504,He is scared out of his mind. Someone,spins around and stares in horror at the talking hedge.,raises her ear to the bed and eats.,moves toward his desk sergeant.,barely hears what he is saying.,,gold1-orig,pos,unl,pos,pos,n/a,He is scared out of his mind.,Someone\nlsmdc0013_Halloween-53893,2495,\"Almost instantly, someone stops crying and follows him. Someone\",sits up next to someone and hugs him.,stands on three lines on the door.,scowls and takes a phone call from his hand.,walks out and claps his hands.,,gold0-orig,pos,unl,unl,pos,n/a,\"Almost instantly, someone stops crying and follows him.\",Someone\nlsmdc0013_Halloween-53893,2510,\"Suddenly, two hands enter frame and grab someone 'shoulders. Someone\",jumps and spins around.,is repeated for a moment.,\"hangs onto the pocket's barrier and, throughout the lot one shocked and motionless begins to sag.\",\"laughs at someone's breasts, and can't stop someone.\",\"swivels serving, then kicks him in the groin.\",gold0-orig,pos,unl,unl,pos,pos,\"Suddenly, two hands enter frame and grab someone 'shoulders.\",Someone\nlsmdc0013_Halloween-53893,2506,\"Moving like the wind, someone barrels off the porch and races back to his friends. The boys\",hurtle off down the street in utter terror.,rush forward to stop.,watch someone walking out of the front yard.,begin to look up: from above.,int someone walk across the pavement below as someone creeps out.,gold0-orig,pos,unl,unl,unl,unl,\"Moving like the wind, someone barrels off the porch and races back to his friends.\",The boys\nlsmdc0013_Halloween-53893,2488,\"Someone turns around and looks for someone. For a moment, he\",glances out the window.,does n't think would be wrong.,dabs his cheek some more.,goes back to his seat.,puts a cigarette to his lips.,gold0-orig,pos,unl,unl,pos,pos,Someone turns around and looks for someone.,\"For a moment, he\"\nlsmdc0013_Halloween-53893,2486,\"Someone hides, preparing to jump out and scare someone. Someone\",gets up from the couch to search for someone.,takes the keys and presses the button.,\"sets her hands up to the bar, presses her knuckles to the armoire.\",reaches for his gun and walks at it.,\"continues after him, joining the boys.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone hides, preparing to jump out and scare someone.\",Someone\nlsmdc0013_Halloween-53893,2487,Someone gets up from the couch to search for someone. Someone,turns around and looks for someone.,drapes his arm over the back of his chair and holds him close.,is looking to someone at the phone.,shoots more darts and throws it.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gets up from the couch to search for someone.,Someone\nlsmdc0013_Halloween-53893,2499,Someone parts the hedge in front of him and stares. For a moment someone,\"hesitates, then slowly moves through the front gate up toward the porch.\",opens the window to remove the deed from the bedroom.,stands up as he stares up at some peaks.,follows him out a window.,,gold0-orig,pos,unl,unl,unl,n/a,Someone parts the hedge in front of him and stares.,For a moment someone\nlsmdc0013_Halloween-53893,2505,\"Someone spins around and stares in horror at the talking hedge. Moving like the wind, someone\",barrels off the porch and races back to his friends.,looks up at someone's reflection.,has been illuminated in her narrows eyes.,leans back and forth swinging the gun in the distance between them as someone detaches.,,gold0-orig,pos,unl,unl,unl,n/a,Someone spins around and stares in horror at the talking hedge.,\"Moving like the wind, someone\"\nlsmdc0013_Halloween-53893,2509,\"He watches them race away, smiling to himself. Suddenly, two hands\",enter frame and grab someone 'shoulders.,approach someone wearing a firm fifth manner.,clutch their heads to the door.,bend over the other.,run out into the street and knock.,gold0-orig,pos,unl,unl,unl,unl,\"He watches them race away, smiling to himself.\",\"Suddenly, two hands\"\nlsmdc0013_Halloween-53893,2490,\"Someone screams and jumps out from the curtain, scaring the hell out of someone, who also screams and begins crying. Someone\",rushes in from the kitchen finding the children in tears.,comes up around hands holding the toad.,\"stops smiling, hopelessly in pain, trying to get away.\",runs over and starts along the roof.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone screams and jumps out from the curtain, scaring the hell out of someone, who also screams and begins crying.\",Someone\nlsmdc0013_Halloween-53893,2493,Someone bends down to comfort her. Someone,turns away from people and walks over to the couch in front of the tv set.,places his hand on the limb and closes his eyes again.,\"yanks her hand from around someone's neck, and he holds her over.\",closes her eyes and kisses her.,'s face slackens as she watches the tv.,gold1-orig,pos,unl,unl,pos,pos,Someone bends down to comfort her.,Someone\nlsmdc0013_Halloween-53893,2489,\"For a moment, he glances out the window. The figure of a man\",carries what seems to be a body across someone's back yard.,holding tyler - whips with his long sword.,\"lowers his massive, floating outward.\",\"lies on his bed, leaning back against it.\",wearing a gray workout suit is sitting waiting for him.,gold0-orig,pos,unl,unl,pos,pos,\"For a moment, he glances out the window.\",The figure of a man\nlsmdc0013_Halloween-53893,2502,He glances back to his friends in the street. The boy,turns to open the door.,swallows and leaves the apartment with a numb expression.,lies in the snow underneath the car of honor.,attacks a rat broom and shuts it.,looks back computers at them.,gold0-orig,pos,unl,unl,unl,unl,He glances back to his friends in the street.,The boy\nlsmdc0013_Halloween-53893,2503,The boy turns to open the door. He,is scared out of his mind.,\"turns to someone, who smiles for someone, who return the kitchen food.\",\"walks slowly down the hallway, up the stairs.\",slides down the stairs and enters the hall as a go.,\"comes out of behind, pulls a shaft drawer back open.\",gold0-orig,pos,unl,unl,unl,unl,The boy turns to open the door.,He\nlsmdc0013_Halloween-53893,2492,Someone points out the window. Someone,bends down to comfort her.,collapses back inside the dressing room.,adjusts the bike hood and throws it onto the bed.,winks at his victim.,finishes the shot and exits.,gold1-orig,unl,unl,unl,unl,unl,Someone points out the window.,Someone\nlsmdc0013_Halloween-53893,2500,\"He watches the young boy walk toward the house, unsure whether he should interfere or just watch. Someone\",makes it to the front porch and tentatively steps up to the door.,sits in the crush of the car and he speaks without saying some.,\"pushes off its board, revealing a charred fish on its tail.\",\"now, stock still, still staring, is the red truck, holding him in front of the barricade and running out.\",turns to the newspaper and heads into his room tv.,gold0-orig,pos,unl,unl,unl,pos,\"He watches the young boy walk toward the house, unsure whether he should interfere or just watch.\",Someone\nlsmdc0013_Halloween-53893,2507,The boys hurtle off down the street in utter terror. Someone quietly,stands up behind the hedge.,wets his broomstick and swings himself towards the car.,pulls his way to the upper deck.,stands nearby with the sword of sword sword.,looks up at the camera.,gold0-orig,pos,unl,unl,pos,pos,The boys hurtle off down the street in utter terror.,Someone quietly\nlsmdc0013_Halloween-53893,2501,Someone makes it to the front porch and tentatively steps up to the door. He,glances back to his friends in the street.,\"tries to put his boot on the headlights, and step back.\",\"walks up from the window, sits down, and smooths his coat.\",returns to his door and switches on the back.,follows her.,gold0-reannot,pos,unl,pos,pos,pos,Someone makes it to the front porch and tentatively steps up to the door.,He\nlsmdc0013_Halloween-53893,2494,\"Someone turns away from people and walks over to the couch in front of the tv set. Almost instantly, someone\",stops crying and follows him.,stops dancing and sits quietly.,rushes in and clutches her hands.,turns to a surveillance book and turns to face the others.,\"leaps up to help climb up on the sofa, smiling at his associates.\",gold0-reannot,pos,unl,unl,unl,pos,Someone turns away from people and walks over to the couch in front of the tv set.,\"Almost instantly, someone\"\nlsmdc0013_Halloween-53893,2508,Someone quietly stands up behind the hedge. He,\"watches them race away, smiling to himself.\",watches the old citadel slip along a sidewalk in the courtyard.,plants a barbecue on cover of wood.,\"is cut inside of the loose hedge, tall, red, deep where the scarf is loose.\",\"someone, looks out across the message in the dark, sees the departing pull up at the station.\",gold0-reannot,pos,unl,unl,unl,unl,Someone quietly stands up behind the hedge.,He\nanetv_AXyRIyXqnzI,13021,Still photos are featured between multiple men practicing their shot put throw. A series of shot put throws,are featured in consecutive tosses.,of a game in slow motion.,down text is shown again in a video.,are shown by spinning more men.,shown again in slow motion.,gold0-orig,pos,unl,unl,unl,pos,Still photos are featured between multiple men practicing their shot put throw.,A series of shot put throws\nanetv_AXyRIyXqnzI,13019,A man in a grey warm up suit practices shot put behind a net. Another man in a green sweatshirt,practices a shot put throw in a field behind a net gate.,is shown lifting the bar and then leave the room and try to hit a ball.,falls on the side with a red eye holding his score.,throws a shot put.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a grey warm up suit practices shot put behind a net.,Another man in a green sweatshirt\nanetv_AXyRIyXqnzI,13020,Another man in a green sweatshirt practices a shot put throw in a field behind a net gate. still photos,are featured between multiple men practicing their shot put throw.,and numbers continue to teach him as he runs.,play several times competing are shown playing the game with soccer players.,show the players blocked by defenders parked in front of the audience.,,gold0-orig,pos,unl,unl,pos,n/a,Another man in a green sweatshirt practices a shot put throw in a field behind a net gate.,still photos\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18596,\"In the kitchen someone fills a bowl with cereal, then glances around. He\",pours in the last few drops of milk from a carton.,falls off a piece of paper from his shore.,is being woken by the crash.,\"turns to look at someone, also eating a vodka bowl.\",retrieves a pen and gives it to himself.,gold0-orig,pos,unl,unl,unl,unl,\"In the kitchen someone fills a bowl with cereal, then glances around.\",He\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18588,\"Later in his room, he lies on his bed with an art book. He\",flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building.,crooked text from a book print sketches was neatly laid down and a sign school snack.,arrives at a couple of framed photos in front of him.,and someone watch from the doorway.,\"jams his head against a portable machine, span completely rickety, carrying a machine set between various wires.\",gold0-orig,pos,unl,unl,unl,unl,\"Later in his room, he lies on his bed with an art book.\",He\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18594,\"Now he awakes in bed. On a busy city street, traffic lights\",turn from green to red.,a curve off the curb.,up on the town club.,a form illuminates a nightclub.,up over a city sky.,gold0-orig,pos,unl,unl,unl,unl,Now he awakes in bed.,\"On a busy city street, traffic lights\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18590,Turning to the next page he studies an oil painting of a woman in a ruffled dress facing a mirror. He,turns the page again and studies a portrait of a sickly somber faced boy.,wipes her nose and gazes at him innocently.,wears a fitting blue dress.,brings pizza onto a car.,plops down on a nearby bench.,gold1-orig,pos,unl,unl,unl,pos,Turning to the next page he studies an oil painting of a woman in a ruffled dress facing a mirror.,He\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18595,\"On a busy city street, traffic lights turn from green to red. In the kitchen someone\",\"fills a bowl with cereal, then glances around.\",sits alone at a table for sustengo.,tries to get out the end of the bar.,lies asleep in bed.,,gold0-orig,pos,unl,unl,unl,n/a,\"On a busy city street, traffic lights turn from green to red.\",In the kitchen someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18591,He turns the page again and studies a portrait of a sickly somber faced boy. The transfixed teen,\"focuses on the boy's dark eyes, which seem to stair back at him.\",\"shifts around, smoothing out his graying hair.\",stands near the window.,someone raises his arm and storms his bed.,walks towards the house.,gold0-orig,pos,unl,unl,unl,pos,He turns the page again and studies a portrait of a sickly somber faced boy.,The transfixed teen\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18600,Now he knocks on a door. Someone,answers it wearing a shiny lame dress.,joins into a cocktail party.,\"enters the glass, then grabs the empty metal bottles in the can.\",enters a room.,pauses at the open door for her.,gold0-orig,pos,unl,unl,pos,pos,Now he knocks on a door.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18597,\"He pours in the last few drops of milk from a carton. Stepping into a doorway, he\",sees someone hunched over paperwork in an office across the hall.,looks up at a small brass bell.,finds a ladle full of dead food.,glances gunman's wristwatch and sees the doctor on a phone.,flourishes his hands and limps himself.,gold1-orig,pos,pos,pos,pos,pos,He pours in the last few drops of milk from a carton.,\"Stepping into a doorway, he\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18601,She leads him downstairs to a chic living room where they join someone and a girlfriend. A blond guy,sits across from them.,marches her from an upper arched ceiling and drags her to his table.,arranges a beer from a desk labeled for a girls fish event.,carries a boy in a white fur coat.,stands and uses a mic.,gold0-orig,pos,unl,unl,unl,pos,She leads him downstairs to a chic living room where they join someone and a girlfriend.,A blond guy\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18589,He flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building. Turning to the next page he,studies an oil painting of a woman in a ruffled dress facing a mirror.,finds someone standing by the vehicle to find someone looking for an information called address book.,watches the arc of a mumbai drawing with a flip - assignment and he takes a single slip of paper and shows it to someone,\"spots a bird resting on a pair of mirrored doors, then heads for the open compartment.\",sees an old shape standing ahead of him with a stony face.,gold0-orig,pos,unl,unl,unl,unl,He flips back several pages and studies a red hued painting of a figure standing under bare trees before a distant building.,Turning to the next page he\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18587,\"She and someone each look out their windows. Later in his room, he\",lies on his bed with an art book.,\"carefully inserts a garment around the box revealing, then removes a leather pouch in his hands.\",sets the bag next to someone on the sofa.,picks up a typewriter and slowly brushes it back.,unpacks his list at the front desk.,gold0-orig,pos,unl,unl,unl,unl,She and someone each look out their windows.,\"Later in his room, he\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18585,That night he and someone ride back in a cab. Someone,rolls her eyes curiously then folds her legs.,enters from his office in a small classroom.,steps out through the open window and gets out.,gets off and kicks his partner over.,sips from a flask with a pink sheet.,gold0-reannot,pos,unl,unl,unl,pos,That night he and someone ride back in a cab.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18586,Someone rolls her eyes curiously then folds her legs. She and someone each,look out their windows.,take off their regular clothes.,carry a meal past the stage.,take a seat and stares with crossed mouths.,lean a few more steps.,gold1-reannot,pos,unl,unl,unl,unl,Someone rolls her eyes curiously then folds her legs.,She and someone each\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18598,\"Stepping into a doorway, he sees someone hunched over paperwork in an office across the hall. Someone\",watches his frustrated stepfather set one page aside and grab another.,steps over an examining door newspaper.,sleeps beside him in her cot.,crouches with a gun.,stacks crates the blueprint.,gold0-reannot,pos,unl,unl,unl,unl,\"Stepping into a doorway, he sees someone hunched over paperwork in an office across the hall.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18593,Someone stares past someone and frowns. He,turns around and sees only blank canvases adorning the walls.,grins and turns to someone.,puts her hand over her mouth.,stands with his nod.,slams the butcher's wand across the crate.,gold1-reannot,pos,unl,unl,unl,pos,Someone stares past someone and frowns.,He\nlsmdc3067_THE_ART_OF_GETTING_BY-32220,18592,A photographer snaps a picture. Someone,stares past someone and frowns.,walks back to the lectern.,watches screens take off in softening cameras.,spits out the fighters.,\"strolls over to someone, who is leading the team.\",gold0-reannot,pos,unl,unl,unl,unl,A photographer snaps a picture.,Someone\nanetv_HI_lWd3JhII,15924,He lays the items out and runs a board across a ski. He,finally rubs the ski again and places the cap on the bar.,looks around and the man continues to speak to the camera.,grabs the brush and rubs it into a bag.,puts his foot on the shoe as he rides the bike.,shaves the sides of his face with the same object.,gold0-orig,pos,unl,unl,unl,unl,He lays the items out and runs a board across a ski.,He\nanetv_HI_lWd3JhII,15923,A close up of a person holding a bag is shown and follows with the person taking out the items. He,lays the items out and runs a board across a ski.,wets the bike and drives around.,continues stirring butter in the pan and pours it into a blender and pushes it back to the left of the bottom.,wander the dirt on terrain to water and a house.,goes into the front car and then picks up how to make a timer onto a third block.,gold1-reannot,pos,unl,unl,unl,unl,A close up of a person holding a bag is shown and follows with the person taking out the items.,He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3439,\"Someone embraces someone or waltzes her around; someone looks on, pleased. He\",hurries away from us towards home.,gets up from the pew and finishes facing her.,\"remembers another woman beating her father, pulling someone to her feet.\",has a incredible strength to hold someone's wand in her hand.,hands her a pitchfork.,gold0-orig,pos,unl,unl,unl,unl,\"Someone embraces someone or waltzes her around; someone looks on, pleased.\",He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3441,\"Seeing the lighted window, he hesitates. Silent pause, listening; then he\",walks cautiously towards us.,\"lowers his head, looking at it, as if to say something else.\",sees the lights come out.,turns to face someone's apartment.,turns toward the door.,gold1-orig,pos,unl,pos,pos,pos,\"Seeing the lighted window, he hesitates.\",\"Silent pause, listening; then he\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3438,\"As he runs past spoon's, looking in, he is curious. Someone embraces someone or waltzes her around; someone\",\"looks on, pleased.\",is then coastline aware of the treasure.,takes her drink from a cup of coffee.,maintains his arm with her gloved hand.,emerges from the vehicle.,gold0-orig,pos,unl,pos,pos,pos,\"As he runs past spoon's, looking in, he is curious.\",Someone embraces someone or waltzes her around; someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3444,\"Relieved, but puzzled, he tiptoes along towards the rear of the hallway in close - up as we pull away. We\",bring in the bottom of the stairs.,struggle on his feet and peer down the line with veins in their forehead.,\"sits at a bar, casually laughing.\",\"tilt to someone's shoulders and looks very now, bewildered.\",\"emerges behind the archer, above the gate as he makes his way along the track.\",gold1-reannot,pos,unl,unl,unl,unl,\"Relieved, but puzzled, he tiptoes along towards the rear of the hallway in close - up as we pull away.\",We\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49196,3440,\"In the otherwise dark house, one window is lighted. Someone\",\"enters the shot, his back to us.\",drags out the fast - fashionable dish of furniture.,stoops descends to a crawl on the floor and then whisks a pick.,\"runs through the party, chasing someone.\",turns on the homestead and stares at her.,gold0-reannot,pos,unl,unl,unl,pos,\"In the otherwise dark house, one window is lighted.\",Someone\nlsmdc1048_Gran_Torino-92492,14714,\"Later, someone is busy mowing his front lawn. Now, he\",relaxes in the bath.,notices the glamorous young hotel.,stumbles by the roadside.,shifts in the light between the trees.,,gold0-orig,pos,unl,unl,pos,n/a,\"Later, someone is busy mowing his front lawn.\",\"Now, he\"\nlsmdc1048_Gran_Torino-92492,14715,\"Now, he relaxes in the bath. He\",lights a cigarette and looks over at someone.,comes out just as a boy wash off his face.,turns away from his captor and grabs his with long long hair.,\"rings a dot in alarm, but does n't answer it.\",jerks his hard as he was sober.,gold1-orig,unl,unl,unl,unl,unl,\"Now, he relaxes in the bath.\",He\nanetv_PLWeVDUH_Cw,15063,Two businessmen play on a team against the table tennis pro. The match ends and the business men,shake hands with the athlete.,are embarrassed and shake hands as they continue digging.,try to win the match.,engage in a game together with it.,,gold1-orig,pos,unl,unl,pos,n/a,Two businessmen play on a team against the table tennis pro.,The match ends and the business men\nanetv_KuAVv3uS4zc,13072,One crashes hard while the others pass and continue the race. All men,continue to ride through the track until one eventually wins while one chases him.,fight with people on the sides and many people have helped him away the end.,are shown in front of the jump and pointing the bikes off into the distance.,walk from the yard to the ground as the second woman pulled away out of a hanger and shown using a toy.,see the game and take turns flying the kite then making multiple points on the field.,gold0-orig,pos,unl,unl,unl,unl,One crashes hard while the others pass and continue the race.,All men\nanetv_KuAVv3uS4zc,13071,Several intros lead into a bike race between 3 men on bikes. One,crashes hard while the others pass and continue the race.,it is n't a race and a man walks back!,walks up to through a set of uneven bars.,shows the end of the bike and rides off.,,gold0-orig,pos,unl,unl,pos,n/a,Several intros lead into a bike race between 3 men on bikes.,One\nlsmdc3091_ZOMBIELAND-44415,7279,Someone takes out a pick ax. He,returns it to a weapon stash.,cuts the dummy's pages loose.,continues to blow five three.,falls onto the kitchen floor of a building.,examines the fluffy scarves stuck to her wrists.,gold0-orig,pos,unl,unl,unl,unl,Someone takes out a pick ax.,He\nlsmdc3091_ZOMBIELAND-44415,7280,He returns it to a weapon stash. He,considers a ground tiller.,picks up the receiver and hits it over the fire with difficulty.,lights on the floor.,continues to carry photos in the diner.,,gold1-reannot,unl,unl,unl,unl,n/a,He returns it to a weapon stash.,He\nanetv_IIAaKRUze8A,1835,He holds out a piece of metal. He,places metal along side the roof.,twists the mace between his hands.,sticks a bullet into the grill.,uses a small tool to create a similar pattern.,scrapes and puts it out.,gold1-orig,pos,unl,unl,unl,pos,He holds out a piece of metal.,He\nanetv_IIAaKRUze8A,1834,A man stands next to a small roof. He,holds out a piece of metal.,then jumps up and hits his leg.,is using the welding equipment.,picks up a fire and rolls it.,,gold0-orig,pos,unl,unl,unl,n/a,A man stands next to a small roof.,He\nanetv_IIAaKRUze8A,1836,He places metal along side the roof. He,attaches the pieces securely.,continues prepping the pumpkin while using the snow to dry.,grabs it from behind.,sprays blood on the windshield.,spits the windows with a powerful blow which zips.,gold0-reannot,pos,unl,unl,unl,unl,He places metal along side the roof.,He\nanetv_VvD2fdPNWEg,11434,\"Just like the first man, another man is now shown running, skipping and jumping, and he's wearing a red outfit. Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he\",'s wearing a blue outfit that has long sleeves and shorts.,gets to his feet and begins doing the same thing with it who continues to do the same moves.,is unnerved and standing there while it's already started dancing with a circle of people.,is also a surprised in doing this again in slow motion.,,gold0-orig,pos,unl,unl,unl,n/a,\"Just like the first man, another man is now shown running, skipping and jumping, and he's wearing a red outfit.\",\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he\"\nanetv_VvD2fdPNWEg,4804,An indoor track meet is shown with the triple jump. Several men,complete a triple jump and get their scores.,are shown and a man blows a ball over his head.,on side cheer as he make the goal.,begin running toward them as they part.,,gold0-orig,pos,unl,unl,unl,n/a,An indoor track meet is shown with the triple jump.,Several men\nanetv_VvD2fdPNWEg,11432,\"A blurry still shot of what looks like an indoor track is shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him. The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he\",\"'s running very fast, skips, and then does his jump.\",snaps this lineup.,falls back in a different stance to advance on the mirror.,is not successful before he drops the weights and continues playing again.,then begins doing the sport by grey on his board and two is shown doing a series of nervous steps.,gold0-orig,pos,unl,unl,unl,pos,\"A blurry still shot of what looks like an indoor track is shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him.\",\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he\"\nanetv_VvD2fdPNWEg,11433,\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he's running very fast, skips, and then does his jump. Just like the first man, another man is now shown running, skipping and jumping, and he\",'s wearing a red outfit.,raised his arms up and begins his jump again.,grabs his javelin while holding him to his sides.,continues to get out.,,gold0-orig,pos,unl,unl,unl,n/a,\"The screenshot is unpaused and the man finally starts to move while the video is in slow motion, but he's running very fast, skips, and then does his jump.\",\"Just like the first man, another man is now shown running, skipping and jumping, and he\"\nanetv_VvD2fdPNWEg,11435,\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he's wearing a blue outfit that has long sleeves and shorts. All men\",\"are shown running, skipping and jumping in a slow motion effect.\",\"are still shown very easy, jogging and having fun before going back into the sitting of the rock on team.\",\"are playing hopscotch, kicking and kicking cars.\",are dressed in black shorts with a blue wig or possibly getting ready in a small pool that the improve end competitor.,\"start the runs and they begin to jump, shuffle, kick and walking.\",gold0-reannot,pos,unl,unl,unl,pos,\"Now the last man shown running, skipping and jumping is doing the same as the previous two men, and he's wearing a blue outfit that has long sleeves and shorts.\",All men\nanetv_VvD2fdPNWEg,11431,Black screens appear and different screens have numbers and letters that read 2014 World Indoor Championships Triple Jump Review Part 1 and by Keinan Briggs. A blurry still shot of what looks like an indoor track is,\"shown with a man wearing blue short sleeves and shorts is in a running position, and 2 other people standing near him.\",seen and followed by a man standing up to him.,shown followed by a guy playing a rubik with long pole.,seen with people in green snow around the yellow recording of the people around the area.,shown with the chapman dealers sucking up smoothly.,gold0-reannot,pos,unl,unl,unl,unl,Black screens appear and different screens have numbers and letters that read 2014 World Indoor Championships Triple Jump Review Part 1 and by Keinan Briggs.,A blurry still shot of what looks like an indoor track is\nanetv_LtQTtCplKz0,9972,Another man is now kneeling and applying tape next to the sandy area of the jump while he talks. The man is now standing at a bar bell with very heavy weights and he,\"slowly starts to lift it, then drops it.\",begins demonstrating how to do the survival project.,begins trimming the leg of his jump leg.,begins to practice the game.,is also standing on his toes during the contest.,gold0-orig,pos,unl,unl,unl,pos,Another man is now kneeling and applying tape next to the sandy area of the jump while he talks.,The man is now standing at a bar bell with very heavy weights and he\nanetv_LtQTtCplKz0,9968,A man by the name of alex al - ameen is smiling and talking and the words below his name say that he has been selected for commonwealth games 2014 110 metre hurdles. A man,is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot.,is shown giving tips on how to do a workout type of haircut.,appears while describing where to do it.,\"paces near the crowd, saying.\",introduces the cartoon on the screen.,gold0-orig,pos,unl,unl,unl,unl,A man by the name of alex al - ameen is smiling and talking and the words below his name say that he has been selected for commonwealth games 2014 110 metre hurdles.,A man\nanetv_LtQTtCplKz0,9969,A man is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot. Three men,\"are now walking to a track where various people are running and taking turns doing hop, skip and jumps.\",are seen riding along a dirt road to one another as they walk on the stilts.,are dancing then playing on the ground with a calf on their feet.,are walking in front of him talking and materials are shown and a woman standing on front the horse.,,gold0-orig,pos,unl,unl,unl,n/a,A man is then shown on the track sitting on the ground prepping his feet for his shoes as he wraps tape around his foot.,Three men\nanetv_LtQTtCplKz0,9970,\"Three men are now walking to a track where various people are running and taking turns doing hop, skip and jumps. A man\",briefly stops and talks to the camera while he appears a little out of breath.,is shown moving his arm while the other watches and his host stops and licks his sides.,turns around and most schools of slow bull.,walks in front of the chubby coaches all along the way.,comes down the jump and runs over the mat and a routine appears for only when a crowd arrives.,gold0-orig,pos,unl,unl,unl,unl,\"Three men are now walking to a track where various people are running and taking turns doing hop, skip and jumps.\",A man\nanetv_LtQTtCplKz0,9974,\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he's pulling on an exercise equipment. The white outro screen\",appears with their logo and the words saying to subscribe to their youtube channel.,appears onscreen that include an electrical d platform on the main panel.,is shown at several angles of the video skateboarders with a large scrapbook of an indoor formation.,appears with white words on the screen for the main of the video.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he's pulling on an exercise equipment.\",The white outro screen\nanetv_LtQTtCplKz0,9973,\"The man is now standing at a bar bell with very heavy weights and he slowly starts to lift it, then drops it. A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he\",'s pulling on an exercise equipment.,throws up while speaking to the camera.,gets as though he does.,picks up those things that he dressed like in security.,is using a gym racket to curl himself up looking on.,gold0-reannot,pos,unl,unl,unl,unl,\"The man is now standing at a bar bell with very heavy weights and he slowly starts to lift it, then drops it.\",\"A woman is now holding dumbbells while she steps on some stairs, and the man is show again but this time he\"\nlsmdc0033_Amadeus-66886,5705,\"Framed in the doorway from outside stands someone, the maid we noticed in someone's house. From his bedroom someone\",peeps out to watch.,spots two guards as he stuffs someone in his pockets.,moves his dash into the room.,\"awakes on the couch with his outstretched hand, seeing a broken mirror and a wall, slate red.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Framed in the doorway from outside stands someone, the maid we noticed in someone's house.\",From his bedroom someone\nlsmdc0033_Amadeus-66886,5706,From his bedroom someone peeps out to watch. Someone,goes to the girl.,\"opens his door to reveal someone, old, precious, etc.\",\"enters his room, leaving the two boy bags.\",faces his agents.,,gold1-orig,pos,unl,unl,unl,n/a,From his bedroom someone peeps out to watch.,Someone\nlsmdc0033_Amadeus-66886,5704,From time to time he drifts over to a piece of manuscript paper and jots down notes. He is very much in his own world of composition and the billiard balls,are an aid to creation.,probably too much for someone.,screenshot long enough for someone to know it - performed.,catch him as he makes his way to the front of the parade.,are trying to create a series and every week.,gold0-orig,pos,unl,unl,unl,unl,From time to time he drifts over to a piece of manuscript paper and jots down notes.,He is very much in his own world of composition and the billiard balls\nlsmdc0033_Amadeus-66886,5702,\"The beautiful closing ensemble from Act iv of someone: ah, Tutti contenti! Standing at the billiard table, someone\",is dreamily hearing the music and playing shots on the table.,lifts the glass in expressionless.,\"lies slumped on the futuristic table, staring at the knife.\",\"paces with the penguins body of drinks, completely engrossed.\",studies a sobbing soldier with the hood of his gun.,gold0-orig,pos,unl,unl,unl,pos,\"The beautiful closing ensemble from Act iv of someone: ah, Tutti contenti!\",\"Standing at the billiard table, someone\"\nlsmdc0033_Amadeus-66886,5703,\"Standing at the billiard table, someone is dreamily hearing the music and playing shots on the table. From time to time he\",drifts over to a piece of manuscript paper and jots down notes.,\"displays up showing dates and website at a document shop, under several cellphones places.\",\"turns with singing, pulled out a flask and wagon lone as sitting in a chair on the small corner below.\",\"remembers his royal hand, wearing a white felt hat, a blue shirt, and a dressing shirt, trendy - pink letters.\",\"sits on the station, and plays ping - pong in an empty room a bar.\",gold1-reannot,unl,unl,unl,unl,unl,\"Standing at the billiard table, someone is dreamily hearing the music and playing shots on the table.\",From time to time he\nanetv_c2VcfB3YTBo,9234,\"She enters a room with kids in it, takes off her coat and starts dancing. A man enters and the lady and man\",perform a fancy dance as the kids watch.,walk back up as she mops windows.,arrive at the head of the class.,ride in the shower.,enter the store sitting by the classroom and start decorating a pair of scissors to pick up pink objects.,gold0-orig,pos,unl,unl,unl,unl,\"She enters a room with kids in it, takes off her coat and starts dancing.\",A man enters and the lady and man\nanetv_c2VcfB3YTBo,9236,The man throws his coat across the room. The lady,hugs the man from behind.,pats the boy's blistered hand.,changes the frisbee repeatedly like a heart puppet.,runs up and picks himself up.,massages his body then adjusts his neck.,gold0-orig,pos,unl,unl,pos,pos,The man throws his coat across the room.,The lady\nanetv_c2VcfB3YTBo,9239,They finish and the man shakes the hands of the kids. The lady,puts on her coat as a girl talks to her and leaves the room.,turns to the band and then the man in front of her successfully tilt his face and the woman drives away.,started to dance from the pile and continue to dance in time to the music.,shakes the ladies head.,continues playing with the child.,gold0-orig,pos,unl,unl,unl,pos,They finish and the man shakes the hands of the kids.,The lady\nanetv_c2VcfB3YTBo,9237,The lady hugs the man from behind. The lady tries to leave and the man,grabs her and pulls her back.,talks to the camera again.,begins to wash the dog in the sink.,pins him against the boat.,laughs and claps his hands.,gold0-orig,pos,unl,unl,unl,pos,The lady hugs the man from behind.,The lady tries to leave and the man\nanetv_c2VcfB3YTBo,9233,We see a lady walking down stairs. She,\"enters a room with kids in it, takes off her coat and starts dancing.\",picks up their instruments and begins to play again.,lifts her legs so she can stand while she is on the floor.,rises a second to the back of the ring and gently rubs her hand.,,gold1-orig,unl,unl,unl,unl,n/a,We see a lady walking down stairs.,She\nanetv_c2VcfB3YTBo,9235,A man enters and the lady and man perform a fancy dance as the kids watch. The man,throws his coat across the room.,accepts the bill and claps the car.,falls and we see the other ladies play with their hands.,smiles and claps hands and gestures.,dance while also performing a baton routine with one another.,gold1-orig,pos,unl,unl,pos,pos,A man enters and the lady and man perform a fancy dance as the kids watch.,The man\nanetv_c2VcfB3YTBo,9238,The lady tries to leave and the man grabs her and pulls her back. They finish and the man,shakes the hands of the kids.,adjusts everything as the lunging yells on her.,puts the board on the floor and the woman hands the lady her to him.,rides her into the bike.,falls to the table.,gold1-reannot,pos,unl,unl,unl,pos,The lady tries to leave and the man grabs her and pulls her back.,They finish and the man\nanetv_9yktj7NCdFI,65,The girl is then seen play hop scotch jumping down the chalk while the boy watches from behind. A woman then,helps the boy jump followed by the young girl helping.,kisses a girl's arm while the man follows her to the camera.,lifts the camel back and sits down on the playground.,is seen playing a set of bongo drums while looking off into the distance.,,gold0-orig,pos,unl,unl,unl,n/a,The girl is then seen play hop scotch jumping down the chalk while the boy watches from behind.,A woman then\nanetv_9yktj7NCdFI,64,Two small children are seen drawing with chalk on a side walk while they occasionally looking back to the camera. The girl,is then seen play hop scotch jumping down the chalk while the boy watches from behind.,continues painting the fence while the camera captures the movements.,stops and looks back on her copying.,continues with needles genders speaking while the camera shows the others ponytail.,stand pressing items over the rope and ends with a rub's mom again.,gold1-orig,pos,unl,unl,unl,unl,Two small children are seen drawing with chalk on a side walk while they occasionally looking back to the camera.,The girl\nanetv_ucR3VztMyeE,15920,She has difficulties in the middle of the bars. A woman,appears looking to help.,stands on the monkey bars and spins her many times.,is wearing and swimming trunks in a scuba.,in blue shirt is talking about her.,is lifted up into the air.,gold0-orig,pos,unl,unl,pos,pos,She has difficulties in the middle of the bars.,A woman\nanetv_ucR3VztMyeE,15919,A girl starts to climb the monkey bars. She,starts climbing forward to the end.,is hit the pinata on the ground several times.,plays tug on the volley ball.,balances herself on the border of the beam.,continues with the other bars swinging around.,gold0-reannot,pos,unl,unl,pos,pos,A girl starts to climb the monkey bars.,She\nanetv_L1XpfS1RCzE,5734,The man is paddling through the strong current of water. The man,fell in the small falls.,pushes it back gently and limes the canvas surrounding the boat.,drops underwater the head of the ocean.,reaches water and water on the propellers.,gets hold of the rope as finally puts.,gold0-orig,pos,unl,unl,unl,unl,The man is paddling through the strong current of water.,The man\nanetv_L1XpfS1RCzE,5733,The person is riding a blue single raft. The man,is paddling through the strong current of water.,throws hard on the surfboard with a paddle and the man juggles the shovel.,raises the camera briefly.,continues to walk and clap his hand while the camera captures the same man to pull the surf away.,rides on the inflatable in the boat.,gold0-orig,pos,unl,unl,unl,unl,The person is riding a blue single raft.,The man\nlsmdc0013_Halloween-53653,5555,Camera slowly tracks over to a phone booth. Someone,is inside on the telephone.,looks at the skyline.,is starting to spot someone's family.,is standing in the middle of a posh street.,picks up the post and calls out.,gold0-orig,pos,unl,unl,unl,unl,Camera slowly tracks over to a phone booth.,Someone\nlsmdc0009_Forrest_Gump-50379,13761,\"Someone climbs up onto the stage and picks someone up, guitar and all, and carries her. Someone\",struggles and frees herself from someone.,pins the band with his hand.,strolls into the room.,opens the large cabinet and lets out a large whoop.,raises his arms above his head.,gold0-orig,pos,unl,pos,pos,pos,\"Someone climbs up onto the stage and picks someone up, guitar and all, and carries her.\",Someone\nlsmdc0009_Forrest_Gump-50379,13759,\"Someone walks up to Man and grabs him and tosses him down on the ground. Man tries to grab someone, but someone\",shoves him down too.,grabs it from beneath someone's grip.,almost throws him off.,follows him and punches him in the chest.,,gold1-orig,pos,unl,unl,pos,n/a,Someone walks up to Man and grabs him and tosses him down on the ground.,\"Man tries to grab someone, but someone\"\nlsmdc0009_Forrest_Gump-50379,13762,Someone struggles and frees herself from someone. Someone,steps back in surprise.,opens the crack of doom.,falls from the floor and slowly walks up a flight.,reaches over his metal plate.,sidles close to someone.,gold1-orig,pos,unl,unl,unl,pos,Someone struggles and frees herself from someone.,Someone\nlsmdc0009_Forrest_Gump-50379,13758,\"He yells angrily as he sits back down, then tosses his drink on her. Someone\",walks up to man and grabs him and tosses him down on the ground.,gives him a shake of the head as someone holds her pose.,\"licks the cream from his cheek, glances around.\",slams off through the partition doors.,,gold0-orig,pos,unl,unl,pos,n/a,\"He yells angrily as he sits back down, then tosses his drink on her.\",Someone\nlsmdc0009_Forrest_Gump-50379,13764,Someone shoves the guitar at someone. Someone,walks off as someone holds the guitar.,takes the ball into someone's hand and pushes him out to the pool.,allows an amused smile.,shakes his head and it covers his cheeks as it scrolls through the page.,\"squeezes his wrist, then moves quickly on.\",gold0-orig,pos,unl,unl,unl,pos,Someone shoves the guitar at someone.,Someone\nlsmdc0009_Forrest_Gump-50379,13760,\"Man tries to grab someone, but someone shoves him down too. Someone\",\"climbs up onto the stage and picks someone up, guitar and all, and carries her.\",straightens his coat nearly!,takes off in someone the chevy.,\"pulls up to the apartment door, still in someone's direction as someone tries to look at his intersection.\",\"hurries away, not seeing his own door.\",gold1-orig,pos,pos,pos,pos,pos,\"Man tries to grab someone, but someone shoves him down too.\",Someone\nlsmdc0009_Forrest_Gump-50379,13765,Someone follows someone over a bridge outside the night club. Someone,turns and looks over the bridge.,raging atmosphere seems quite full.,\"leads a funeral of packed people, children and umbrellas across the compound.\",sits at a restaurant.,\"lies on the sidewalk, waiting for sight.\",gold0-reannot,pos,unl,unl,pos,pos,Someone follows someone over a bridge outside the night club.,Someone\nlsmdc0009_Forrest_Gump-50379,13763,Someone steps back in surprise. Someone,shoves the guitar at someone.,hurries after him and gets back into his chair.,'s brow knit and drops her gaze.,looks self - consciously.,looks around as someone drags someone into the bedroom.,gold0-reannot,pos,unl,unl,unl,pos,Someone steps back in surprise.,Someone\nanetv_gN27GB5txG8,13493,A black screen with three rows of Arabic writing is shown. A young girl then,comes into the bathroom and begins to wash her hands.,\"appears, written in a white dressing room with trainers, playing with stick, and twirling.\",gets down the mouth of the stage and walks to the camera and picked up her hair.,\"photographs the man in tattoos, a mask and mask.\",,gold0-reannot,pos,unl,unl,unl,n/a,A black screen with three rows of Arabic writing is shown.,A young girl then\nlsmdc3012_BRUNO-4161,16961,He talks on his cell. He,\"steps away, gesturing for us to stay back.\",repeats this time with a product.,hangs his father anxiously as he gallops past the boys.,puts a pair of shoes in his shirt.,,gold0-orig,pos,unl,unl,unl,n/a,He talks on his cell.,He\nlsmdc3012_BRUNO-4161,16960,The guards easily shove him back. He,talks on his cell.,pulls a flotation device out of them.,\"bursts in, wielding the flamethrower.\",blocks his opponent's exit.,sees a boy with yellow sunglasses.,gold1-reannot,pos,unl,pos,pos,pos,The guards easily shove him back.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,603,Someone stretches out his hand. And someone,is reluctantly drawn towards him.,waves to the group.,falls to his knees.,looks at her friend expectantly.,wraps his arm around his torso.,gold1-orig,pos,unl,unl,unl,pos,Someone stretches out his hand.,And someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,604,Someone looks into the Mirror of Erised. Someone,stares at his reflection.,is wrapped in someone's arms as she continues to iron stone understand with someone.,scratches the back of his head.,\"uses the bottle to support himself, then finds a gold cover on the door.\",wrestles it in the digicam.,gold0-orig,pos,unl,unl,unl,unl,Someone looks into the Mirror of Erised.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,606,\"His reflection stares back at someone, then puts its hand in its pocket and takes out a red stone. His reflection\",\"winks at someone, shows him the stone, and put it back in its pocket.\",is by tiny moonlight spreading across the tiny face.,shows someone's shadow cast across the clothes.,shows someone's face.,\"examines his reflection in the mirror, and spots him facing the mirror.\",gold1-orig,pos,unl,pos,pos,pos,\"His reflection stares back at someone, then puts its hand in its pocket and takes out a red stone.\",His reflection\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,607,\"His reflection winks at someone, shows him the stone, and put it back in its pocket. Secretly, someone\",feels in his own pocket.,smiles as he watches the dance with the last.,rides his horse in garden.,\"lies on his bed, then points to a dresser.\",holds up the pendant.,gold1-orig,pos,unl,unl,pos,pos,\"His reflection winks at someone, shows him the stone, and put it back in its pocket.\",\"Secretly, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,605,Someone stares at his reflection. His reflection,\"stares back at someone, then puts its hand in its pocket and takes out a red stone.\",darkens the sediment 'rhythm.,\"is large and handsome, slight green and gay with his color.\",appears into an icy over then snaps his lips gaze.,sharpens turns on someone's face.,gold1-reannot,pos,unl,unl,unl,pos,Someone stares at his reflection.,His reflection\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,608,Someone unwinds the turban from his head. A horrible face,\"appears, growing out of the back of someone's head.\",sees from the darkness and throws herself at him.,is shown as he uses its hand to line through the vines.,starts to look and it writhes.,appears at the table and his hands ripple in a extension whip.,gold1-reannot,unl,unl,unl,unl,unl,Someone unwinds the turban from his head.,A horrible face\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96242,609,\"A horrible face appears, growing out of the back of someone's head. The eyes sunk in dark sockets, and the skin\",stretched over the bony skull.,fall out to green.,moving bitter shot sends orange sparks flying about the sky.,becomes a wrinkled face.,is washed over bulging sharks.,gold0-reannot,pos,unl,unl,unl,unl,\"A horrible face appears, growing out of the back of someone's head.\",\"The eyes sunk in dark sockets, and the skin\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100337,18824,Someone gets to his feet. Someone,glances back the way they came.,leaps almost from the platform as someone contemplates the ground with the strong wind.,goes back to normal.,goes over his shoulder towards a factory where the body builder dunks him.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gets to his feet.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100337,18825,Someone glances back the way they came. Someone,is a little way beyond someone with his back to him.,\"leaves his seat, and someone can get into the car.\",sits closer to someone as he takes a seat across from him.,has his face turned to face someone.,,gold1-orig,pos,unl,unl,pos,n/a,Someone glances back the way they came.,Someone\nlsmdc1007_Spider-Man1-74225,12195,Muscular arm and a clenched hand have entwined in the web. The hand,stretches up and catches hold of more silk threads.,any rope is displayed on the lines of other items.,holds on the spiked blue.,\"points to their missing reflection in a jamie lined, embossed valley.\",,gold0-orig,pos,unl,unl,unl,n/a,Muscular arm and a clenched hand have entwined in the web.,The hand\nlsmdc1007_Spider-Man1-74225,12194,\"Then it's as if ones punching through a red, smoky tunnel like the inside of an archery, but always the spider's web is there. Muscular arm and a clenched hand\",have entwined in the web.,\"is an cia doctor with a gun around his neck, someone sits in the cafe with the guards.\",stand on the stairs beside the altar.,play beat like the cameraman.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then it's as if ones punching through a red, smoky tunnel like the inside of an archery, but always the spider's web is there.\",Muscular arm and a clenched hand\nlsmdc1011_The_Help-78391,2407,\"Sometime later someone puts her notes in her briefcase. At the Holbrooks', someone with her hair in curling clips\",is scowling at the newspaper.,sprinting after a grand sidewalk.,\", she stares through the door.\",goes through the reading house.,,gold0-orig,pos,unl,unl,unl,n/a,Sometime later someone puts her notes in her briefcase.,\"At the Holbrooks', someone with her hair in curling clips\"\nlsmdc1011_The_Help-78391,2409,Her eyes shoot up at someone who is clearing away some dishes. Someone,\"goes towards the kitchen, then stops and puts the plates back down.\",gets up and puts his hands in the mud.,appears and faces her apologetically.,\"tries himself, stumbling.\",is a first little girl who gets her popsicle bowed and approaches the bow.,gold0-orig,pos,unl,unl,unl,unl,Her eyes shoot up at someone who is clearing away some dishes.,Someone\nlsmdc1011_The_Help-78391,2408,\"At the Holbrooks', someone with her hair in curling clips is scowling at the newspaper. Her eyes\",shoot up at someone who is clearing away some dishes.,take to the two jars of red light.,meet each holding a tight stare at her.,are filled with tears as someone gets in a coffee cup.,,gold0-orig,pos,unl,unl,pos,n/a,\"At the Holbrooks', someone with her hair in curling clips is scowling at the newspaper.\",Her eyes\nlsmdc1011_The_Help-78391,2410,People both lower their newspapers. He,pecks his wife on the cheek and goes.,glances inside and releases his coffee.,walks out the car window.,gives more expectant faces and laugh.,hands the book to the twins.,gold0-orig,pos,unl,unl,unl,pos,People both lower their newspapers.,He\nanetv_AyYpsQ4xOo8,13104,The woman peeks out from behind a wall. The woman,looks at a laptop screen with a man.,turns open the window.,removes the pink laces.,sets something in front of the lowest portion of the trampoline.,lines up the outline of the snow to her shirt.,gold0-orig,pos,unl,unl,unl,unl,The woman peeks out from behind a wall.,The woman\nanetv_AyYpsQ4xOo8,13106,\"The man applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time. The woman\",shows the completed tattoo while talking to the camera.,then continues to shave her hair and arm.,stops in the tattoo parlor and continues talking.,resumes knitting while she talks.,begins picking up a mark full in images and shows an animated names.,gold0-reannot,pos,unl,unl,unl,unl,\"The man applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time.\",The woman\nanetv_AyYpsQ4xOo8,13105,The woman looks at a laptop screen with a man. The man,\"applies a tattoo pattern to the woman's upper arm, with the video sometimes passing in accelerated time.\",puts the tools up and continues sanding the services.,lays on the end down talking to a young man standing.,throws a second dart as he bike.,assembles a bowling ball on the ground.,gold0-reannot,pos,unl,unl,unl,unl,The woman looks at a laptop screen with a man.,The man\nanetv_uqzy1FAUpPM,6082,He is running down the lane and the he jumps 3 times into the sand. He,runs out of the pit happily.,is alone until an inch further into shot.,gets four blocks apart by fast traffic.,keeps walking along the cliff into the camera.,does a high kick on the field.,gold0-orig,pos,unl,unl,pos,pos,He is running down the lane and the he jumps 3 times into the sand.,He\nanetv_uqzy1FAUpPM,6080,A man gets ready to to preform an event. He,begins to start running fast.,is turning the pole and spinning in circles.,mounts the beam and swings it backward.,puts the ring on his finger.,goes having a meeting during the race.,gold1-orig,pos,unl,unl,unl,unl,A man gets ready to to preform an event.,He\nanetv_uqzy1FAUpPM,6085,He blows a kiss to the crowd. He,goes and starts hugging fans.,sits inside the kitchen carrying a tray of food.,\"jump back, stand.\",leads the way back into the apartment against the modest clapboard house.,,gold1-orig,pos,unl,unl,pos,n/a,He blows a kiss to the crowd.,He\nanetv_uqzy1FAUpPM,6081,He begins to start running fast. He is running down the lane and the he,jumps 3 times into the sand.,can not stop hitting it instead.,is holding onto people.,\"adds thanks, nails and trees have melted.\",is jumping on the fence several times.,gold1-orig,pos,unl,unl,unl,pos,He begins to start running fast.,He is running down the lane and the he\nanetv_uqzy1FAUpPM,6083,He runs out of the pit happily. He,continues to walk around cheering as it cuts to the crowd and announcers.,is seen climbing on a plane and stomping down onto a machine and snowy jumps on top of him.,\"touches someone's neck but as he looks at the street, someone stops and grabs the newspaper from his locket.\",\"throws the long run to a pool set, playing a game.\",points to the gym.,gold0-reannot,pos,unl,unl,unl,unl,He runs out of the pit happily.,He\nanetv_uqzy1FAUpPM,6084,He continues to walk around cheering as it cuts to the crowd and announcers. He,blows a kiss to the crowd.,bends forward and starts moving back and forth in the woods.,then close up to the dean with some smile.,slaps the wall in front of other men and cuts them off with everyone on their hands.,,gold0-reannot,pos,unl,unl,unl,n/a,He continues to walk around cheering as it cuts to the crowd and announcers.,He\nanetv_gXffXyAkcHM,7229,A young girl in a white sports uniform is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool. The girl,swings herself beneath around the bar.,appears to finish the task over toothpaste while looking up at the camera.,stands on the balance beam and stands by the goalie again.,turns a sharp and punctures her right hand mounts the pommel hips.,\"is playing and getting a terrible grip on her feet, often able to lower moves.\",gold0-orig,pos,unl,unl,unl,pos,A young girl in a white sports uniform is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool.,The girl\nanetv_gXffXyAkcHM,7228,A girl performs gymnastics on uneven bars at a professional sports event. A young girl in a white sports uniform,is holding her entire body above her while standing upside down on the uneven bars using her hands as a balance tool.,starts doing flip flips in a club.,stands next to them.,shimmies her slim foot.,routine on an open field with a trainer in a somersault.,gold1-orig,pos,unl,unl,unl,unl,A girl performs gymnastics on uneven bars at a professional sports event.,A young girl in a white sports uniform\nanetv_gXffXyAkcHM,7230,The girl swings herself beneath around the bar. The girl,turns around and does the same move in the opposite direction on the bars.,dismounts and lands on a mat on a large mat on the ground.,\"grabs someone, throws her down, and flings him against the wall.\",spins and sinks to the ground.,flips back and fourth and ends by shaking back down.,gold1-reannot,pos,unl,unl,pos,pos,The girl swings herself beneath around the bar.,The girl\nanetv_gXffXyAkcHM,11265,A gymnast flips around a bar numerous times. She,continues flipping over and over.,is seen break dancing and dancing.,spins and does several flips on the balance beam.,\"puts on the bar, flips and dismounts.\",prepares her routine and lands on a mat in front of her.,gold1-reannot,pos,unl,unl,unl,pos,A gymnast flips around a bar numerous times.,She\nanetv_CZveW9zX0s8,2128,A man is shown speaking to the camera and leads into a woman trimming the fur on a dog. The,speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs.,piglets out on the high wall.,hold up the snow while talking to a camera and raking it in.,shows how to shave the dog's shovel as well as a dog.,is more seen speaking to the camera while riding around.,gold0-orig,pos,unl,unl,unl,unl,A man is shown speaking to the camera and leads into a woman trimming the fur on a dog.,The\nanetv_CZveW9zX0s8,2129,The speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs. More shots of dogs held,are shown while the man speaks and the camera pans around the building.,are shown as well as frisbees and groups on for a bit while she starts to laugh.,are shown with shots shots of people and bumps press dogs.,are shown throughout the floor and equipment seen catching them.,hanging out are shown followed by people eating and chewing on the cone.,gold1-orig,pos,unl,unl,unl,unl,The speaks more to the camera while other dogs are shown groomed and one woman walks away holding two excited dogs.,More shots of dogs held\nlsmdc1060_Yes_man-99130,2300,She gets off and undoes the strap on her blue helmet that has eyes painted on it. She,looks at someone with a suspicious frown.,pauses on the street on a front row against a row of hundreds of silver cases.,continues exercising holds the buttons up for a brief angle.,grabs a few touches on lense and responds to work.,\"pauses, looking to someone's head with amazement.\",gold1-orig,pos,unl,unl,unl,pos,She gets off and undoes the strap on her blue helmet that has eyes painted on it.,She\nlsmdc1060_Yes_man-99130,2297,He saunters over to a pump and swipes a card in it. He,takes it out and rubs it on his arm agitatedly.,shoots it from his jacket pocket.,turns off his headlights.,\"stares thoughtfully with a solemn gaze, then blinks a moment.\",,gold1-orig,pos,unl,unl,pos,n/a,He saunters over to a pump and swipes a card in it.,He\nlsmdc1060_Yes_man-99130,2296,\"He glances over at the garage shop, which is closed. He\",saunters over to a pump and swipes a card in it.,looks into the bird's space.,\"walks over to him, shutting the door and walks across the room.\",\"creeps out, looks out, the window, and then rises and walks on the platform landing.\",\"stands thoughtful for a moment, then gets back from his car.\",gold0-orig,pos,unl,unl,unl,unl,\"He glances over at the garage shop, which is closed.\",He\nlsmdc1060_Yes_man-99130,2299,Someone turns to look at the pretty dark - haired woman on the scooter. She,gets off and undoes the strap on her blue helmet that has eyes painted on it.,looks around the half - filled car by several large buildings that looks similar.,watches someone from the kitchen window.,pulls out her book.,looks up from the garage.,gold0-orig,pos,unl,unl,unl,pos,Someone turns to look at the pretty dark - haired woman on the scooter.,She\nlsmdc1060_Yes_man-99130,2298,It asks if he wants credit. Someone,turns to look at the pretty dark - haired woman on the scooter.,hides maintenance hard to be smart and draws out a dresser.,holds two tries last jump.,knees him in her big hug.,continues the name - sport salesman.,gold0-orig,pos,unl,unl,unl,unl,It asks if he wants credit.,Someone\nlsmdc1060_Yes_man-99130,2295,\"Carrying a jerrycan, he reaches a garage. He\",\"glances over at the garage shop, which is closed.\",rolls his trousers down onto the bed of a same stain.,lifts up the bottle and a bottle of pepsi.,departed and crashes down with a cloth.,lets him football the grass after it.,gold0-reannot,pos,unl,unl,unl,unl,\"Carrying a jerrycan, he reaches a garage.\",He\nanetv_2VTEseqA5SA,1158,A man is standing inside a workshop. He,\"leans over, welding a piece of metal.\",uses a broom to start the arm down.,is using a welder using a metal welding device.,is smoking a hookah up talking.,is demonstrating how to play a harmonica.,gold0-orig,pos,unl,unl,unl,unl,A man is standing inside a workshop.,He\nanetv_2VTEseqA5SA,1159,\"He leans over, welding a piece of metal. Sparks\",fly as he welds.,\"- someone comes to someone in a short box swivel, laughs, and raises a glass.\",\"his rifle, he stares.\",\"he battle it, the stranger leans over and inspects the wall.\",\"a different angle, he disappears round a corner.\",gold0-orig,pos,unl,unl,unl,unl,\"He leans over, welding a piece of metal.\",Sparks\nanetv_2VTEseqA5SA,790,A man in a welding facility prepares to weld two pieces of metal together. He,begins to the two pieces of metal together with a welding tool.,\"is using an ax, while the fire begins to burn.\",demonstrates how to wax the surface with the hoses.,continues water skiing on a machine located on skis top.,is wearing black coat and white pants.,gold0-orig,pos,unl,unl,unl,pos,A man in a welding facility prepares to weld two pieces of metal together.,He\nanetv_2VTEseqA5SA,791,He begins to the two pieces of metal together with a welding tool. Another man,walks into the video as they are recording and walked out of the screen just as the man is finishing the welding job.,talks about off ever.,runs up a frame and leaves with out walking into the room and start working out.,picks up a metal box with the wheel.,,gold0-reannot,pos,unl,unl,unl,n/a,He begins to the two pieces of metal together with a welding tool.,Another man\nanetv_JAZu9CWEVbQ,11363,The surfer who is in front is happy to riding the wave for so long that he raises his two arms up in the air and then lowers it back down. The surfer in the back,begins to lose balance and falls off of his board while the man in the front is still standing up.,\"then ends the video around a boy who is then pushed down on the waves back across him, up in the air.\",holds a large red rope with his hand.,looks out back under the water and begins of volleyball on the sand until the coast is shown to end on a shore.,,gold0-orig,pos,unl,unl,unl,n/a,The surfer who is in front is happy to riding the wave for so long that he raises his two arms up in the air and then lowers it back down.,The surfer in the back\nlsmdc3015_CHARLIE_ST_CLOUD-968,10403,\"He turns, then crosses to the door and opens it. Finding no one there, he\",hurries back to the table.,continues by holding the remote.,continues to peel away.,gets up and answers his cell.,closes the door and leaves.,gold0-orig,pos,unl,unl,pos,pos,\"He turns, then crosses to the door and opens it.\",\"Finding no one there, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-968,10408,Someone waits for him in a clearing between grave plots. She,lays her hands on his chest.,is hugging her the prowler.,\"holds him to her feet, and gently raises her enormous arms.\",\"exchanges a glance, then turns to the window and peers uncomfortably.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone waits for him in a clearing between grave plots.,She\nlsmdc3015_CHARLIE_ST_CLOUD-968,10405,\"He grabs a jar containing a burning candle, then ventures out into the darkness. He\",shuts the door behind him and looks around.,\"stares down on him, unsure for a meal while looking slightly lost in thought.\",puts her lips against his neck and they share into a kiss.,opens a torch and shines his flashlight into the boat.,,gold0-orig,pos,unl,unl,pos,n/a,\"He grabs a jar containing a burning candle, then ventures out into the darkness.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-968,10407,She blows out the candle and runs off. Someone,waits for him in a clearing between grave plots.,turns the baby to a sideboard.,fires the grenade into the back of the dolls.,\"pauses, cradling the baby, over her mouth.\",looks pointedly at someone who's gone.,gold1-orig,pos,unl,unl,unl,unl,She blows out the candle and runs off.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-968,10404,\"Finding no one there, he hurries back to the table. He\",\"grabs a jar containing a burning candle, then ventures out into the darkness.\",\"enters the clock, mounted on the back room.\",\"is wearing a silver jacket and white pajamas, with black hair, white hair, worn, and tie while advertised.\",gets off the podium and stands up.,,gold0-orig,pos,unl,pos,pos,n/a,\"Finding no one there, he hurries back to the table.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-968,10406,He shuts the door behind him and looks around. He,proceeds against pale mist.,shoots his sword through the maize.,whacks his reflection on a window.,\"is asleep beside him, sitting on top of her and pulls someone into the washroom.\",,gold1-reannot,pos,unl,unl,unl,n/a,He shuts the door behind him and looks around.,He\nanetv_FoPNGc6Lg8k,11868,She jumps up and down gracefully and then falls for a bit of a point deduction. She,finishes her routine and gets a hug from her coach.,parallels him high fives as they run off of the dance floor.,has it backward and is in step when she comes and looks behind it.,takes a turn slow before he returns and continues walking on the distance.,spins around a bit and looks off into the distance.,gold0-orig,pos,unl,unl,unl,pos,She jumps up and down gracefully and then falls for a bit of a point deduction.,She\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59891,15561,\"Someone is sitting in front of the fire, with his pipe. staring into the flickering flames. Someone rushes into Bag End. he\",stops and picks up the ring at his feet.,\"takes down the torch, but stops.\",grabs to brace himself and gets to his feet.,opens and holds up books.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone is sitting in front of the fire, with his pipe. staring into the flickering flames.\",Someone rushes into Bag End. he\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59891,15560,Someone slowly reaches for the ring. Someone,\"is sitting in front of the fire, with his pipe.\",aims her wand in the holes.,\"brings both hands over the painted rim, cupping the finger with his thumb.\",stares at the bears.,steps back into the church.,gold0-reannot,pos,unl,unl,pos,pos,Someone slowly reaches for the ring.,Someone\nanetv_VoQ2VhCqir0,11261,Men is holding a bucket and is standing in the oof of a house and its working on it. man,is doing the mix in a bucket in a floor and in the roof again.,is in a room stretching and talking to the camera.,is on the side of the bridge drinking and doing how to perform the the inside.,is chopping a piece of wood from a grassy table to stand with a little stir.,is standing in a stroller behind a shovel near the fence near the ground.,gold0-orig,pos,unl,unl,unl,unl,Men is holding a bucket and is standing in the oof of a house and its working on it.,man\nanetv_BetFWvm92nM,13766,\"After, the young lady spits the liquid and then she pock the cheek of the girl who spits. Next, the girl\",\"turns on the faucet of the bathtub and bend, after the girl turns off the faucet and clean her hands while speaking.\",throws the toothbrush up.,shakes her paw again.,grabs the girl and they continue fighting.,takes her beauty and tries to wash the girl's face.,gold1-reannot,pos,unl,unl,unl,unl,\"After, the young lady spits the liquid and then she pock the cheek of the girl who spits.\",\"Next, the girl\"\nanetv_CSsilC4QbB4,3396,He dives in his scuba gear. He,\"explores the depths of the bay, looking at coral and fish.\",bounces the ball into the water.,does a high dive in the water.,stands on the edge of the pool.,,gold0-orig,pos,unl,unl,unl,n/a,He dives in his scuba gear.,He\nanetv_CSsilC4QbB4,9803,We see a person pushed in the water come up under the boat. We,see the ending title screen.,see a person sitting on the wave.,watch as the man swims.,see the people diving into the water.,,gold0-orig,pos,unl,pos,pos,n/a,We see a person pushed in the water come up under the boat.,We\nanetv_CSsilC4QbB4,3395,A man climbs out of a boat to the water. He,dives in his scuba gear.,flies and throws the kite off into the water.,lifts his water rafts and sail down the slope in his raft.,goes in with someone and high fives a man riding along the water.,jumps off out of the way to wave more down onto a wave.,gold0-orig,pos,unl,unl,unl,unl,A man climbs out of a boat to the water.,He\nanetv_CSsilC4QbB4,9800,\"A man in scuba gear steps off a boat into the ocean, rewinds and repeats. We\",see other people diving into the water and rewind and repeat.,shows two women with goats while several people are around.,something on the dock below.,are trying to maintain the body of water.,are 3 other rafters to overcome the water.,gold0-orig,pos,unl,unl,unl,unl,\"A man in scuba gear steps off a boat into the ocean, rewinds and repeats.\",We\nanetv_cGNkR-JvaJs,15636,The woman is sitting in a chair next to the pool table talking into the microphone. A Maxim logo,flashes on the screen.,is shown in associated clips of the reporter talking to the camera.,is being shown on the screen.,appears onto a black screen.,,gold1-orig,pos,unl,pos,pos,n/a,The woman is sitting in a chair next to the pool table talking into the microphone.,A Maxim logo\nanetv_cGNkR-JvaJs,15630,The man is now teaching the woman how to shoot the pool ball while standing behind her. The woman makes the shot and they,celebrate with a high five.,hit the ball back and forth over the net.,cut it and see that split second shot.,swim while the camera goes to celebrate.,,gold0-orig,pos,unl,unl,unl,n/a,The man is now teaching the woman how to shoot the pool ball while standing behind her.,The woman makes the shot and they\nanetv_cGNkR-JvaJs,15631,The woman makes the shot and they celebrate with a high five. The man,is telling the woman how to make another shot.,executes a roll as he passes the cup.,demonstrates in the lady's key and the man playing.,dives for the board and talks to the camera.,joins the first players on the court where a team shoots hand authority with their wives and poses.,gold0-orig,pos,unl,unl,unl,unl,The woman makes the shot and they celebrate with a high five.,The man\nanetv_cGNkR-JvaJs,15623,A man is playing pool behind a blue pool table. The woman,continues talking in front of the pool table.,is attempting to hit the ball out of the net.,walks alongside the pool holding legs.,takes two large cups of water.,,gold0-orig,pos,unl,unl,unl,n/a,A man is playing pool behind a blue pool table.,The woman\nanetv_cGNkR-JvaJs,15628,It flashes back to the pool table. The man and woman continue talking and the woman,laughs at what the man is saying.,holds a white towel to see the boy and his left.,starts separating her feet from the table.,is a first person starting a cake.,,gold0-orig,pos,unl,pos,pos,n/a,It flashes back to the pool table.,The man and woman continue talking and the woman\nanetv_cGNkR-JvaJs,15627,The man and woman continue talking to each other. It,flashes back to the pool table.,see a credit card on screen.,'s the ball making a crazy scene.,\"continues eating a knife on the table, then the woman walk towards her rooms and start to talk about the new act.\",starts showing the various bulls at the end of a video.,gold0-orig,pos,unl,unl,unl,unl,The man and woman continue talking to each other.,It\nanetv_cGNkR-JvaJs,15622,A woman talking into a microphone wearing a white shirt. A man,is playing pool behind a blue pool table.,\"is shown, playing cards and checking her on a table.\",taps the other side on a table and lifts it over their head.,is then shown gesturing with a pair of sharpening steel.,plays a guitar of a woman holding the flute.,gold1-orig,pos,unl,unl,unl,unl,A woman talking into a microphone wearing a white shirt.,A man\nanetv_cGNkR-JvaJs,15633,She attempts the shot and makes it and they high five again. They,continue talking and laughing.,climb off the wall and lay her down.,\"some time doing various springs and flips, one of the students bowling moves back and forth.\",dive backward along the ledge without walking rush around and jumping when they reach the middle of the hoop.,continue walking around obstacles and shooting an ball around the net.,gold1-orig,pos,unl,unl,unl,pos,She attempts the shot and makes it and they high five again.,They\nanetv_cGNkR-JvaJs,15629,The man and woman continue talking and the woman laughs at what the man is saying. The man,is now teaching the woman how to shoot the pool ball while standing behind her.,continues to talk to the camera as he talks.,bends and does the same thing the whole time.,points the woman she is doing and then talks to the camera.,holds the knife and displays more contact lenses.,gold0-orig,pos,unl,unl,unl,unl,The man and woman continue talking and the woman laughs at what the man is saying.,The man\nanetv_cGNkR-JvaJs,15632,The man is telling the woman how to make another shot. She,attempts the shot and makes it and they high five again.,pass on a man who tries to get drinks from the car one last time.,is shown with a series of ingredients and location different types.,\"stand, shoveling the entire subject out with a mascot, which she has not assembling.\",puts the process first on the table.,gold0-orig,pos,unl,unl,unl,pos,The man is telling the woman how to make another shot.,She\nanetv_cGNkR-JvaJs,15626,The man plays pool again. The man and woman,continue talking to each other.,hit the ball back and forth restlessly.,fall in a semi circle.,were speaking to the camera showing the movements each time the three are being a black screen.,look at each other as they fire and wave.,gold1-orig,pos,unl,unl,unl,unl,The man plays pool again.,The man and woman\nanetv_cGNkR-JvaJs,15625,The woman and the man talk to each other. A trophy,flashes on the screen.,goes on the woman cuts a tree and catches the toy in the house.,touches a female on stage again.,comes to the man while a woman is playing a game of hop scotch.,hangs at the bow.,gold0-orig,pos,unl,unl,unl,unl,The woman and the man talk to each other.,A trophy\nanetv_cGNkR-JvaJs,15621,A sports logo flashes on the screen. A woman,talking into a microphone wearing a white shirt.,is shown putting the mask onto it.,walks in an indoor field doing a jump over a pool field.,stands outside holding a horn in her hand.,stands combing her hair.,gold0-orig,pos,unl,unl,pos,pos,A sports logo flashes on the screen.,A woman\nanetv_cGNkR-JvaJs,15624,The woman continues talking in front of the pool table. The woman and the man,talk to each other.,\"she begins playing with a small arm in the air, swinging and doing various acrobatic moves.\",play rock paper scissors.,play with the woman.,,gold1-reannot,pos,unl,pos,pos,n/a,The woman continues talking in front of the pool table.,The woman and the man\nanetv_cGNkR-JvaJs,15635,The woman lays down on the pool table and he shoots a ball out of her mouth. The woman,is sitting in a chair next to the pool table talking into the microphone.,is shown again playing the scissors.,comes up again and brushes the dough around the board.,poses with herself while laughing and drinking.,cups a hand round the glass while laughing.,gold1-reannot,pos,unl,unl,pos,pos,The woman lays down on the pool table and he shoots a ball out of her mouth.,The woman\nanetv_YwUW6Qh_5TA,5640,A gymnast is seen standing with his arms out and hops on a board. He then,begins spinning himself around while judges watch on the sides.,looks off into the distance before jumping into a pit of people.,begins performing bungee spinning around a area while others watch on the side.,begins to climb up and down from the mat.,jumps off the beam and dives off into the water.,gold0-orig,pos,unl,unl,unl,unl,A gymnast is seen standing with his arms out and hops on a board.,He then\nanetv_YwUW6Qh_5TA,5641,He then begins spinning himself around while judges watch on the sides. He,continues his routine and jumps down with his arms up.,continues playing and ends by lighting onto the sand.,continues doing low acts.,goes back and begins spinning around around in the end and performing several tricks on.,,gold0-orig,unl,unl,unl,pos,n/a,He then begins spinning himself around while judges watch on the sides.,He\nlsmdc3045_LAND_OF_THE_LOST-21274,17161,\"Someone shoots someone a look of concern. Later in the pool, someone\",looks at someone with bloodshot eyes.,lays his hand on someone's leg.,takes off his sunglasses.,lights a cigarette and puts a cigarette on his mouth.,\"lies prone on the ground, eyes glistening.\",gold1-orig,pos,unl,unl,unl,unl,Someone shoots someone a look of concern.,\"Later in the pool, someone\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17168,\"Someone, someone, and someone all turn their heads in unison. It\",\"'s a giant crab, snapping two huge claws.\",\"at the picture, someone enters through the front, disappears from the rooms, lingers on the few steps of passing within.\",\", they arrive at the bridge where someone is sitting there, using her plainly.\",sits.,rises graceful soldiers illuminate beers.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, someone, and someone all turn their heads in unison.\",It\nlsmdc3045_LAND_OF_THE_LOST-21274,17167,\"On the distant horizon, a huge creature crawls toward them. Someone, someone, and someone all\",turn their heads in unison.,clamber down from the deck below.,emerge from the hot muck.,are taking a big place breaths.,walk past the car.,gold1-orig,pos,unl,unl,unl,pos,\"On the distant horizon, a huge creature crawls toward them.\",\"Someone, someone, and someone all\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17163,\"Before her, a triangle rises from the ground. From a distance, the crystalline pylon\",almost disappears against the cloudy sky.,appear on the sea as the ship disappears.,seems to rise fifteen in the distance.,throws a faint credit of who cue.,appears in the water.,gold1-orig,pos,unl,unl,unl,pos,\"Before her, a triangle rises from the ground.\",\"From a distance, the crystalline pylon\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17165,\"Now, clumps of vines hang from the rough - hewn walls of the cavern. Entering, someone\",\"finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow.\",looks over at the finely - carved vase under the green girder and covers light.,\"spots the android climbing her long, dark tunnel.\",finds someone locked in a pickup with his arms around him.,\"creeps through a doorway, brushing lips and breathing rapidly.\",gold1-orig,pos,unl,unl,unl,unl,\"Now, clumps of vines hang from the rough - hewn walls of the cavern.\",\"Entering, someone\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17164,\"Someone approaches it, her hand still on the Tachyon Amplifier. Now, clumps of vines\",hang from the rough - hewn walls of the cavern.,spot a clear bath.,hang low in the hearth and sheets.,flap on the other side of the towering sun.,concludes in the corners.,gold0-orig,pos,unl,unl,unl,unl,\"Someone approaches it, her hand still on the Tachyon Amplifier.\",\"Now, clumps of vines\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17166,\"Entering, someone finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow. Meanwhile, someone, someone, and someone\",lie on their backs on a dune.,step down a corridor.,enter into the alley passage.,restrain someone from his truck.,,gold1-orig,pos,unl,unl,unl,n/a,\"Entering, someone finds two massive crystals jutting out at opposite angles, and each emitting a bluish glow.\",\"Meanwhile, someone, someone, and someone\"\nlsmdc3045_LAND_OF_THE_LOST-21274,17162,\"Gazing across the desert, she grins. Stepping over the pristine white sand, someone\",carries the device about 100 yards from the pool.,tosses a rusty chain link to its trailer.,\"snaps up the circuit light, and swings at.\",bumps someone's car.,backs away from the scrambled fish like a small fishing fish.,gold0-reannot,pos,unl,unl,unl,unl,\"Gazing across the desert, she grins.\",\"Stepping over the pristine white sand, someone\"\nanetv_7_5VT6QCqNI,2896,The man hands the woman the brush and blow dryer. The woman,proceeds to dry her own hair.,places her hand away while the brush blow dries the woman's hair.,brushes the hair of the woman with the comb.,dries the hand and sprays the hair.,makes the hair with the sweeping dryer.,gold0-orig,pos,unl,unl,unl,unl,The man hands the woman the brush and blow dryer.,The woman\nanetv_7_5VT6QCqNI,2898,The man resumes blow drying the woman's hair. The man,sprays the woman's hair with hairspray.,hazel her back with products.,'s fingers begin to all the stairs and rotate before the man and puts the cats on the table.,waves in the mirror.,stands up and taps hair on a other side of the table.,gold1-orig,pos,unl,unl,pos,pos,The man resumes blow drying the woman's hair.,The man\nanetv_7_5VT6QCqNI,2892,A man is talking to the camera while styling a woman's hair. The man,is showing various hair care products.,then sits up and picks up the lotion on his hair.,ties the hair up while he ends.,uses scissors to hold her hair down and shows various angles of the finished hair.,demonstrates how to cut the hair.,gold1-orig,pos,unl,pos,pos,pos,A man is talking to the camera while styling a woman's hair.,The man\nanetv_7_5VT6QCqNI,2894,The man is drying the woman's hair with a blow dryer. The man,shows a hair brush.,grabs the shoe and sprays it with the hair dryer.,irons the arm with a hair dryer.,washes the hair with a hair dryer.,is holding an orange comb combing her hair.,gold1-orig,pos,unl,unl,unl,pos,The man is drying the woman's hair with a blow dryer.,The man\nanetv_7_5VT6QCqNI,2897,The woman proceeds to dry her own hair. The man,resumes blow drying the woman's hair.,continues speaking to the camera and continues washing her hair in the end.,tends to the man ties the sheet while still having her.,rinses gel and begins polishing the corner of the shoe.,goes on more white while sitting on the cardio machine.,gold0-orig,pos,unl,unl,unl,unl,The woman proceeds to dry her own hair.,The man\nanetv_7_5VT6QCqNI,2893,The man is showing various hair care products. The man,is drying the woman's hair with a blow dryer.,continues painting the fence.,is brushing his dogs hair.,\"walks out of the room, mopping the floor.\",is mopping the floor.,gold0-orig,pos,unl,unl,unl,unl,The man is showing various hair care products.,The man\nanetv_7_5VT6QCqNI,2895,The man shows a hair brush. The man,hands the woman the brush and blow dryer.,begins brushing his hair and shows the back to the horse.,cuts the hair and styles it with shampoo.,smooths the shoe with a large brush.,\"pumps the toothpaste on the flat brush, then pets it.\",gold0-reannot,pos,unl,unl,unl,unl,The man shows a hair brush.,The man\nlsmdc3022_DINNER_FOR_SCHMUCKS-10304,18080,Someone gives him the finger and goes. Someone,arrives home and finds someone already there.,ball rubs someone on.,\"on the stool, someone is with someone.\",kid stands with her shift and puts on her glove.,swerves toward a web.,gold1-reannot,unl,unl,unl,unl,unl,Someone gives him the finger and goes.,Someone\nanetv_h67ctuwV-Nw,14522,A man is on a canoe in the river holding a paddle. man,is standing on the canoe and start paddling in the river going down rapids.,is pushed in front of the screen to get the canoe out of the water.,is walking next to a man sitting on the boat board.,sits in a kayak near the river holding sea objects.,is a pushing a boat in the water.,gold0-orig,pos,unl,unl,pos,pos,A man is on a canoe in the river holding a paddle.,man\nanetv_h67ctuwV-Nw,12550,A man in red jacket rode his canoe and started paddling through the water. The man,slide down the rocks and waves in the water.,narrates the water and cross - in towards the sea of water and dive.,in the backyard begins looking down into the water.,hold at the end and turn to the side of the river.,waves the man in the water and flips back to the kayak on the river.,gold0-orig,pos,unl,unl,pos,pos,A man in red jacket rode his canoe and started paddling through the water.,The man\nanetv_f07eWOCKLI8,9030,Another person walks into frame showing off a coffee cup and leads into the girls decorating a tree. The girls,continuously put ornaments on the tree and end holding their arms up.,speak to one another and begin raking the ingredients into each other.,hands are seen mixing food into a bowl.,give instructions to the girl at the end and walks back and speaks to the camera.,are then seen walking around each other as well as knitting ornaments.,gold1-orig,pos,unl,unl,pos,pos,Another person walks into frame showing off a coffee cup and leads into the girls decorating a tree.,The girls\nanetv_f07eWOCKLI8,9029,Two people are seen dancing in front of the camera in front of a christmas tree. Another person,walks into frame showing off a coffee cup and leads into the girls decorating a tree.,is seen walking behind the tree and begins laying in front of the tree.,picks up her paddle towards the camera and walks away.,helps the other on a horse.,walks by and shows ornaments high up the bush.,gold1-orig,pos,unl,unl,unl,pos,Two people are seen dancing in front of the camera in front of a christmas tree.,Another person\nanetv_f07eWOCKLI8,2577,Women are decorating a Christmas tree. A woman,is holding a coffee mug in her hand.,on black jeans and a colorful robe is grooming the horse.,stands in the front of a christmas tree and begins kite taking her batons in the air in front of the leafs.,is wearing a red bob.,is outside on the grass.,gold1-reannot,pos,unl,unl,unl,unl,Women are decorating a Christmas tree.,A woman\nanetv_4E8rMLHIpag,15415,A man in a black hat is talking to the camera. He,starts playing a violin on his shoulder.,begins practicing on snow in a park.,is a man in a room wearing shoes.,begins looking around while he talks.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a black hat is talking to the camera.,He\nanetv_4E8rMLHIpag,15416,He starts playing a violin on his shoulder. He,stops playing and puts the violin down to his side.,uses two fingers to cut the bagpipes.,twirls the violin in his right hand and presses the buttons of his accordion.,shows the camera to camera.,continues playing the accordion on the field.,gold1-orig,pos,unl,unl,unl,unl,He starts playing a violin on his shoulder.,He\nanetv_RRFC2NrZSf4,16624,The man stops hitting the bongos and rests his left hand on the lighter colored bongo. Then the man,moves his right leg as if he is going to stand up and the bongo moves without his leg support.,plays the shuffleboard while the first woman covers the back of the chair.,flips to a drum stand and begins to twirl by the song.,play drums continuously and stops to look at the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The man stops hitting the bongos and rests his left hand on the lighter colored bongo.,Then the man\nanetv_RRFC2NrZSf4,16623,\"A man wearing a black shirt that has white words that say Plays well with self is sitting in a home and playing on two different bongos that are different in size, design and color. The man\",stops hitting the bongos and rests his left hand on the lighter colored bongo.,\"and reporter then begin fencing, swirls up and down on one buff step, performs serious tennis in the background.\",picks up the guitar and gets the guitar on his feet while he goes and begins to dance.,begins playing the sax and pauses by talking to the camera where he's all speak to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,\"A man wearing a black shirt that has white words that say Plays well with self is sitting in a home and playing on two different bongos that are different in size, design and color.\",The man\nanetv_Ay6oxBYCSnU,17669,One team scores a goal. Everyone,cheers about the goal.,runs off when another player joins them.,dives for their scoring.,is no more ecstatic.,,gold0-orig,pos,unl,unl,pos,n/a,One team scores a goal.,Everyone\nanetv_Ay6oxBYCSnU,17668,Several players are on an ice rink. They,are playing hockey against each other.,take up to hit a ball with a stick.,take autographs of the game.,kick the ball into the field.,,gold0-orig,pos,unl,unl,unl,n/a,Several players are on an ice rink.,They\nanetv_yOFIXQCbSqc,3052,The group begin throwing the ball around while swimming around each other. The group,continues swimming and playing ball with each other.,celebrates with others celebrating.,continues to cheer while people cheer against the sidelines.,continues playing basketball while all of them continue to celebrate.,,gold0-orig,pos,unl,unl,unl,n/a,The group begin throwing the ball around while swimming around each other.,The group\nanetv_yOFIXQCbSqc,3051,A large group of people are seen swimming around a pool with a man talking on the side. The group,begin throwing the ball around while swimming around each other.,continue to play more volleyball while performing high jumps.,continues to throw the ball back and fourth to one another as well as giving it a go.,continues to play and continue to jump as well as watch people sitting on the side.,,gold0-orig,pos,unl,pos,pos,n/a,A large group of people are seen swimming around a pool with a man talking on the side.,The group\nanetv_RX8YG2zlyUo,10807,\"There are horses, and they are getting off a trailer. They\",\"go to ride through the desert, through different portions of the desert.\",arrange many flowers in the yard.,ride the camels and ride them on the camels.,hit the mower back and forth in the water.,are engaged in a fencing match.,gold0-reannot,pos,unl,unl,unl,unl,\"There are horses, and they are getting off a trailer.\",They\nanetv_8XxsgEw49p0,4618,Bob Ross is seen speaking to the camera while reading off a piece of paper in his hands. Another man,is seen standing next to him and begins painting while a computer also paints on the side.,is shown flipping on the board while sitting on the bench and looking off into the distance.,plays paintball in front of him.,comes down the counter showing off the ice to the camera.,tries several puffs then talks to the camera and then pierces the bottom of the glass with both hands.,gold1-orig,pos,unl,unl,unl,unl,Bob Ross is seen speaking to the camera while reading off a piece of paper in his hands.,Another man\nanetv_8XxsgEw49p0,15241,The video is now skipped around as the person talks about the video. White text,is seen on the screen.,is seen coming up the screen.,is shown in the bottom of the screen.,is displayed across the screen.,,gold0-orig,pos,unl,pos,pos,n/a,The video is now skipped around as the person talks about the video.,White text\nanetv_8XxsgEw49p0,15240,A video of a painter and his son as the painter is asked questions on painting techniques and his son demonstrates how to do them on a canvas while in the corner of the screen a digital paint program is being shown from a computer screen. The screen changes and a voice comes over about an art piece he was doing and the video,is paused showing a home screen of a computer.,gains the holes cast on an color highlighting pumpkin.,comes with the other room graphics for the video.,ends with it fall into a finish line.,\"glides along a pedals, hills, words, la calendar, random ranking, includes video scenes.\",gold0-orig,pos,unl,unl,unl,unl,A video of a painter and his son as the painter is asked questions on painting techniques and his son demonstrates how to do them on a canvas while in the corner of the screen a digital paint program is being shown from a computer screen.,The screen changes and a voice comes over about an art piece he was doing and the video\nanetv_8XxsgEw49p0,4619,Another man is seen standing next to him and begins painting while a computer also paints on the side. The man,continues painting as bob watches and leads into him painting and showing off a picture as well as the computer.,continues rubbing down all the plaster and back down the same while the camera pans in around their movements.,vacuums the floor while moving back and fourth.,continuously moves his hand into the bucket and wipes.,continues painting up the fence as fast as he can and applies it in place.,gold0-orig,pos,unl,unl,unl,unl,Another man is seen standing next to him and begins painting while a computer also paints on the side.,The man\nanetv_8XxsgEw49p0,15242,A still picture of the artwork is shown as credits in yellow test roll. A computer made paining,is shown as people are heard laughing and talking about the work.,appears around a tree where pallet found up all the colors.,is lathers up and cleaned off several courses.,snaps picture of a great boy playing hockey.,puts it on a set of emergency boards.,gold0-reannot,pos,unl,unl,unl,unl,A still picture of the artwork is shown as credits in yellow test roll.,A computer made paining\nanetv_tl2hDYGBfqU,13287,Men play professional soccer on a beach near the water. Players on the field,celebrate a victory and pose for a photo.,are red and black all some sky helmets.,surrounded in deadly locations using the jump and touching obstacles.,cheer in the other play.,watch them playing taking off their polo.,gold0-orig,pos,unl,unl,unl,unl,Men play professional soccer on a beach near the water.,Players on the field\nanetv_tl2hDYGBfqU,13286,A Finale Coppa Italia beach soccer title screen appears featuring Sambenedettese and Catania. Men,play professional soccer on a beach near the water.,sits around a bar.,appear over the screen.,is dealing cards to a woman while standing in front of the images of old women.,,gold0-orig,pos,unl,unl,unl,n/a,A Finale Coppa Italia beach soccer title screen appears featuring Sambenedettese and Catania.,Men\nlsmdc3011_BLIND_DATING-657,8176,\"She holds her blouse closed over her chest. Now outside, They\",\"watch him as he goes, finishing an apple.\",get into a swimming pool beneath a bridge.,\"leans against the vehicle, peering out the shelf and finds a handgun.\",fight over one of the towers surrounding the titanic.,\"steps down, among others sitting in a line post.\",gold1-orig,pos,unl,unl,unl,pos,She holds her blouse closed over her chest.,\"Now outside, They\"\nlsmdc3011_BLIND_DATING-657,8178,Someone's mother gravely leads them into the living room. Someone,\"stands in front of it, facing his parents.\",\"stop outside a house with someone, while someone sits at the table with the bearded owner on a tray.\",\"stops by the door, to the moment.\",takes the folded envelope out of someone's hands.,adjusts a martial arts hammer in his hands.,gold0-orig,unl,unl,unl,unl,unl,Someone's mother gravely leads them into the living room.,Someone\nlsmdc1057_Seven_pounds-97554,4396,\"Someone slams the phone down. Looking disturbed by his own actions, someone\",claps his hands to his mouth and stares down.,drives the limo through toward balmoral.,steps away from the house irritably on his hind legs.,\"steps up frame, gazing up sadly at his rescuer.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone slams the phone down.,\"Looking disturbed by his own actions, someone\"\nlsmdc1057_Seven_pounds-97554,4399,\"Pacing, someone stabs the air with a finger each time he calls out a name. Someone\",smashes a chair against a coffee table.,comes out of it.,grabs his bag and goes to investigate.,'s tone is ringing.,,gold1-orig,pos,unl,unl,unl,n/a,\"Pacing, someone stabs the air with a finger each time he calls out a name.\",Someone\nlsmdc1057_Seven_pounds-97554,4397,\"Looking disturbed by his own actions, someone claps his hands to his mouth and stares down. He\",\"blinks, composes himself and lowers his hands.\",pushes a cock of food to his penis.,hurries out of the vessel.,\"leans in his face, his nose pressed up against the deep shade of the music.\",\"peers at someone, then shrugs and shakes his head.\",gold0-orig,pos,unl,unl,unl,pos,\"Looking disturbed by his own actions, someone claps his hands to his mouth and stares down.\",He\nanetv_vAzTt06gpgE,7398,A group of people are running down a road with various people cheering and clapping on the sides. A woman,is high fiving the people as well other runners.,is shown speaking around while using a pole and spinning a string around with a conductor.,is playing with the parking card in sprinkles company that is on the beach.,is seen removing off with her stick around others and waving to the group.,is shown speaking to the camera while clapping with a person speaking.,gold0-orig,pos,unl,unl,unl,pos,A group of people are running down a road with various people cheering and clapping on the sides.,A woman\nanetv_vAzTt06gpgE,7399,A woman is high fiving the people as well other runners. More shots of people on the sides,are shown while the runners continue running.,are shown with tourists riding around on a line.,walk into action are shown end by people crashing into the camera and continuing all around the field.,are interviewed as well as cheering and text is seen.,,gold0-orig,pos,unl,pos,pos,n/a,A woman is high fiving the people as well other runners.,More shots of people on the sides\nanetv_G6FhQuR3_88,10181,The man in front grabs the microphone. The band,finishes playing their instruments.,plays the saxophone in front of them.,speaks to people in the audience while dancing.,turns off and comes next to an advertisement.,stops playing and looks at the instrument.,gold1-orig,pos,unl,unl,unl,pos,The man in front grabs the microphone.,The band\nanetv_G6FhQuR3_88,10180,We see men playing instruments in a plaza. The front man,turns around to the men behind him.,is talking while the band plays and the band moves the rope to military base.,sits on the bench between drums.,playing sets the circle close to the music.,,gold0-orig,pos,pos,pos,pos,n/a,We see men playing instruments in a plaza.,The front man\nlsmdc0032_The_Princess_Bride-66231,1565,\"Someone is clearly panicked and maybe someone is too, but he moves jauntily along, sword in hand. The giant trees, thick and black - green, look ominous as hell and they\",shield all but intermittent stripes of sun.,\"are there, dancing together, waiting.\",\"shoot down, zooming in an wall and shooting targets.\",\"are tall, long and dark: and changed.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone is clearly panicked and maybe someone is too, but he moves jauntily along, sword in hand.\",\"The giant trees, thick and black - green, look ominous as hell and they\"\nlsmdc0032_The_Princess_Bride-66231,1564,\"Great trees block the sun. Someone is clearly panicked and maybe someone is too, but he\",\"moves jauntily along, sword in hand.\",is bear if annoyed.,has n't mind her on.,\"looks down to someone, a fancy barren, and track, grimy, dark valley overgrown with dead vegetation.\",hears it for a few.,gold1-orig,pos,unl,unl,unl,unl,Great trees block the sun.,\"Someone is clearly panicked and maybe someone is too, but he\"\nanetv_MysxDDxgHNo,2786,A boy releases a curling stone. Three boys,walk together across on the ice.,fall on several blocks.,walk in front of a bull in a competition.,fight off the roof.,ride a canoe back home.,gold0-orig,pos,unl,unl,unl,unl,A boy releases a curling stone.,Three boys\nanetv_MysxDDxgHNo,2785,Two boys that are sliding on their knees towards each other collide and fall back. A boy,releases a curling stone.,spits off her hand with the slam!,lifts himself up from his temple.,moves their head towards their movements.,picks up a tennis ball and hits the pinata.,gold1-reannot,pos,unl,unl,unl,unl,Two boys that are sliding on their knees towards each other collide and fall back.,A boy\nanetv_6SHSstpZN1I,6517,The kids take off and start down the dirk track. The kids,have a hard time turning to come up the dirt track.,are lifted down with rags.,run onto the riding man hood.,do jump and cheers the candy mats.,\"skateboard hard, cars and go.\",gold1-orig,pos,unl,unl,unl,pos,The kids take off and start down the dirk track.,The kids\nanetv_6SHSstpZN1I,6518,The kids have a hard time turning to come up the dirt track. One of the boys,has fallen and dropped his bike.,jumps down three on a stack of dirt.,slows and swaggers up with other adults.,is playing the drums with the same time as they do to catch him off.,puts the skateboard around the slope.,gold0-orig,pos,unl,unl,unl,pos,The kids have a hard time turning to come up the dirt track.,One of the boys\nanetv_g5BPyMdlurg,7362,Then someone else does a cartwheel and that same person does a round off. next someone does a front walkover and another girl,does a standing back handspring along with other people who are doing gymnastic moves.,makes the final routine upright.,spins again and the tiny dog does jump.,\"walks up to her, and spins a wheel several times.\",,gold0-orig,pos,unl,unl,unl,n/a,Then someone else does a cartwheel and that same person does a round off.,next someone does a front walkover and another girl\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73195,11697,Someone reads as models pick outfits from a rack. Someone,plunks himself down beside her and sighs.,stops and opens the large cage inches across the foyer.,\"runs through a parking store followed by some tourist, who stands with photographs behind a cash register.\",turns around and faces a bespectacled waitress.,'s lap as she looks inside.,gold0-orig,pos,unl,unl,unl,unl,Someone reads as models pick outfits from a rack.,Someone\nanetv_3qkNnr1_78I,13465,A view of an old world European city is seen. The man,sits on a the tight rope high up in the air.,is seen surfing into an airplane along surfing massive waves.,enjoys a patio light while reading and watching playing at the fountain.,climbs off the bike and demonstrates how to talk talk while the staff listen to him.,screams the ball and holds several 6 bottles.,gold1-orig,pos,unl,unl,unl,unl,A view of an old world European city is seen.,The man\nanetv_3qkNnr1_78I,773,A person is slacklining reach the mountain summit near a town. People,slack to pass from a mountain to another mountain.,are riding on a screen going down a hill.,searches his own chamber.,flip onto the ground in the sunset place.,come by the boat are not limping.,gold0-orig,pos,unl,unl,unl,unl,A person is slacklining reach the mountain summit near a town.,People\nanetv_3qkNnr1_78I,774,People slack to pass from a mountain to another mountain. A man slacks,to pass from a summit to another summit.,is seen standing in a pool hitting the javelin.,huddles against a wall with his facial hair.,begins skateboarding on the road.,holding a small shovel and then walking over a hill cleaning a house.,gold1-orig,pos,unl,unl,unl,unl,People slack to pass from a mountain to another mountain.,A man slacks\nanetv_q92zSoMudWU,2157,A group of men are seen looking off into the distance that leads into a soccer match. One man,scores a goal and celebrates on the side.,throws rope and runs to the camera while the camera captures his movements.,hit the ball back and fourth while another watch in the distance.,is seen playing soccer around a large pool table while another man stands behind him and continues the ball.,tries to take it from the help of a team and turns around to watch the game.,gold0-orig,pos,unl,unl,unl,unl,A group of men are seen looking off into the distance that leads into a soccer match.,One man\nanetv_q92zSoMudWU,15161,People are standing on sand wearing red shirts. They,are playing a game of soccer in the sand.,laugh with the yellow men talking to the camera.,are serving sand castles through the sand.,are lots of nailing hawaiian shirts.,begin to dive into a pool of sand.,gold0-orig,pos,unl,unl,unl,pos,People are standing on sand wearing red shirts.,They\nanetv_q92zSoMudWU,15162,They are playing a game of soccer in the sand. People,are watching them in the stands.,are playing volleyball in the sand.,are left watching the game.,are watching on the sides as they celebrate.,are in the ocean watching them.,gold0-orig,pos,unl,pos,pos,pos,They are playing a game of soccer in the sand.,People\nlsmdc3057_ROBIN_HOOD-27395,7226,But the Frenchman rides out. Someone,\"sets off in fast pursuit, leading his peers along a winding trail.\",is encased in the dirt.,someone stabbed him with his left hand.,backs out of the building.,edges his way through the crowd toward the house.,gold0-orig,pos,unl,unl,pos,pos,But the Frenchman rides out.,Someone\nlsmdc0005_Chinatown-48122,725,Someone smiles a little sheepishly. Again he,laughs a little nervously.,holds the two bracelet.,\"swallows, then leaves someone's apartment.\",pulls his head out of his coat.,notices the ring on his finger.,gold0-orig,pos,unl,unl,unl,pos,Someone smiles a little sheepishly.,Again he\nanetv_dXTfrVz9A9o,16035,A man cleans the snow with a self lifted shovel that has a rod to impulse up the shovel. The man puts the shovel in the snow and it,lifts and throws snow.,runs off in a pile.,splits from the cabinet.,walks across a hedge.,,gold0-orig,pos,unl,unl,unl,n/a,A man cleans the snow with a self lifted shovel that has a rod to impulse up the shovel.,The man puts the shovel in the snow and it\nanetv_dXTfrVz9A9o,16037,The man shovel heavy hardened snow from the ground effortlessly. The person,shows the shovel that has behind a weight lifter.,puts his hand on the paw and starts to peel it on.,shows trash to two.,moves around to head and arms and adds various markers.,is chalk on concrete next to a fence.,gold0-reannot,pos,unl,unl,unl,unl,The man shovel heavy hardened snow from the ground effortlessly.,The person\nanetv_dXTfrVz9A9o,16036,The man puts the shovel in the snow and it lifts and throws snow. The man,shovel heavy hardened snow from the ground effortlessly.,changes back to the camera.,pulls the hose up to the fence.,washes the back of his car in the courtyard.,,gold0-reannot,pos,unl,unl,unl,n/a,The man puts the shovel in the snow and it lifts and throws snow.,The man\nanetv_kuyuhXuMPX4,19430,After putting down sand he drinks a warm beverage. We,see the ending credits screen.,zoom away from the time of a sailboat littered with broken glass.,reps renovation as before gets on the edge and serves the water.,of then speeds up.,save the man throwing another aluminum man into the building.,gold1-orig,pos,unl,unl,unl,unl,After putting down sand he drinks a warm beverage.,We\nanetv_kuyuhXuMPX4,19429,The man lays down and had a hard time breathing. After putting down sand he,drinks a warm beverage.,turns around and continues it.,begins to ride with his new body until the men stop.,lands with a miniature orange in the left arm.,leans back and speaks to the camera.,gold0-orig,pos,unl,unl,unl,pos,The man lays down and had a hard time breathing.,After putting down sand he\nanetv_kuyuhXuMPX4,19426,A man stands in a garage with two shovels. We then,see his shoveling supplies.,see a man snowboarding down the slope.,see young men in a black box with two sticks pointing at a contact plant like he can.,see two trees from the riverbed from the camera.,see snowy or skiing on a mountain.,gold0-orig,pos,unl,unl,unl,unl,A man stands in a garage with two shovels.,We then\nanetv_kuyuhXuMPX4,19425,We see the intro and intro scenes. A man,stands in a garage with two shovels.,is then seen roller skates outside a bar.,cleans a guy with a christmas toy.,rides on a stationary rider.,,gold1-orig,pos,unl,unl,pos,n/a,We see the intro and intro scenes.,A man\nanetv_kuyuhXuMPX4,19427,We then see his shoveling supplies. The man,stretches and puts on his winter clothes.,picks up a bag and takes a seat next to the man in the house.,shows us his product and brushes a mower.,shows us campfire arrows.,shovels food with a plant.,gold0-orig,pos,unl,unl,unl,unl,We then see his shoveling supplies.,The man\nanetv_kuyuhXuMPX4,19428,He sprays his shovel with nonstick spray and shovels his driveway. The man,lays down and had a hard time breathing.,peels the slack sander on the farm piece.,uses a shovel peeler to remove snow from a bushes and then hammers the roof in perfect pieces.,removes all of the snow from his car as the car continues.,grabs the snow and leaves a driveway and runs up a side parking lot area.,gold1-reannot,pos,unl,unl,unl,unl,He sprays his shovel with nonstick spray and shovels his driveway.,The man\nlsmdc3008_BAD_TEACHER-4129,11074,\"With a smile she brushes past him. Now in the gym, someone\",collects scattered dodge balls and sets them in a bag.,throws a light on someone.,notices someone forward on a wave.,opens the front door to a dark poufy outfit that shows someone's black t - and - white skirt.,throws clothes into a trash can.,gold0-orig,pos,unl,unl,unl,unl,With a smile she brushes past him.,\"Now in the gym, someone\"\nlsmdc3008_BAD_TEACHER-4129,11075,\"A ball smacks him in the back. Turning, he\",finds someone striding over to him.,throws out an instrument.,watches a glow play in the smart bathroom.,spits on a table.,,gold0-orig,pos,unl,unl,unl,n/a,A ball smacks him in the back.,\"Turning, he\"\nanetv_GJDl-whUpq4,2376,A woman is seen sitting in a chair knitting the hat. A cat,is seen standing next to the woman stepping on her while another cat sits behind.,is holding a brush and then clip the polish all around her nails.,sits in a chair next to the camera while smiling.,is seen holding up a cat.,is seen seated on a table followed by the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen sitting in a chair knitting the hat.,A cat\nanetv_GJDl-whUpq4,13913,The black cat is sitting right next to her and playing with the yarn while the brown cat is watching them. The black cat,grabs the yarn ball and start playing with it.,begins to wake up and starts a little dance as she goes back to the naturedly with her hands.,walks along the sideline playing a keyboard drum while then straight and faster to sit on it.,is moving a small cat while a cat stands in front on them and licks the string and gave herself.,is seen as the cat places its paws on the cat's lap.,gold0-orig,pos,unl,unl,unl,unl,The black cat is sitting right next to her and playing with the yarn while the brown cat is watching them.,The black cat\nanetv_GJDl-whUpq4,2377,A cat is seen standing next to the woman stepping on her while another cat sits behind. The other cat,jumps up to the other and runs away.,faces down while the artist watch nails from the back.,steps in to the side and pets the cat carefully.,continues cutting the cat's claws and cutting the claws of the cat.,takes a seat on the bench and plants the ground next to the seats.,gold0-orig,pos,unl,unl,unl,unl,A cat is seen standing next to the woman stepping on her while another cat sits behind.,The other cat\nanetv_GJDl-whUpq4,13912,\"There's a woman sitting on a cozy chair with her two cats next to her, knitting a black yarn hat. The black cat\",is sitting right next to her and playing with the yarn while the brown cat is watching them.,emerges from the hole with the polish and pets the cat.,is moving his legs together to show how to properly brush your teeth.,is then going on the cat nails.,is about to engage in her moves while various demonstrations of her moves are shown interspersed by political strips and silly features.,gold0-orig,pos,unl,unl,unl,unl,\"There's a woman sitting on a cozy chair with her two cats next to her, knitting a black yarn hat.\",The black cat\nanetv_GJDl-whUpq4,13914,The black cat grabs the yarn ball and start playing with it. Then the brown cat,goes under the chair and jumps up to grab the yarn and pulls it away.,is to play and help her make a bunch.,is on his lap and holds a white ball that stands at the end and turns around it and eats it from the cat.,rubs the left paw off of the cat's lap and uses it on the cat's back.,jumps in front of the cat and gets on the bench.,gold1-reannot,pos,unl,unl,unl,pos,The black cat grabs the yarn ball and start playing with it.,Then the brown cat\nanetv_OD7lx6blG9M,2479,\"A woman is in a kitching, flipping a pancake in a small skillet. She\",\"flips the pancake several times, almost dropping it.\",is also chopped vegetables and sliced in a foil bowl.,uses a flat brush to brush her chin.,\"places the ingredients into spoon and lemons, then put it into a mixing bowl.\",pours some red sauce over the pan.,gold0-orig,pos,unl,unl,unl,pos,\"A woman is in a kitching, flipping a pancake in a small skillet.\",She\nanetv_OD7lx6blG9M,2480,\"She flips the pancake several times, almost dropping it. We\",\"see a broken egg, and a dirty counter.\",is thrown around her.,cool the scrapyard have placed on the cake.,lower the glass and.,more do the same.,gold0-orig,pos,unl,unl,unl,unl,\"She flips the pancake several times, almost dropping it.\",We\nanetv_OD7lx6blG9M,8296,A woman takes a pan off of a stove. She,flips the food in the pan in the air a few times.,pushes the man back and forth on the stove.,holds up a stack of paper and cheese.,\"soaks the food in a pan, then adds the cooked pasta to a pot.\",sprays the water and begins helping it with baking soda.,gold0-orig,pos,unl,pos,pos,pos,A woman takes a pan off of a stove.,She\nanetv_OD7lx6blG9M,8297,She flips the food in the pan in the air a few times. She,sets the pan back on the stove.,talks to the girl as she swings the rope.,begins to tell her what to do.,\"runs at the end, making sure not to go to it.\",gets up and walks away.,gold0-orig,pos,unl,unl,unl,pos,She flips the food in the pan in the air a few times.,She\nanetv_OD7lx6blG9M,8298,She sets the pan back on the stove. An egg,is shown on the counter.,is in a stove.,hangs above her shoulders as she watches them.,sits in a cage on a table.,appears on top of a plate.,gold0-reannot,pos,unl,unl,pos,pos,She sets the pan back on the stove.,An egg\nanetv_ui_CNb4FUtQ,5709,A security guard accosts him and escorts him away. The man,stands up and walks away while playing.,lowers his child to more tv.,followed someone passes right the window.,writes his cell on the top bed.,,gold0-orig,pos,unl,unl,unl,n/a,A security guard accosts him and escorts him away.,The man\nanetv_ui_CNb4FUtQ,5708,A man plays the saxophone in various public settings while the audiences watch. The man,plays while laying on the ground.,continues showing the streets and showing the brasil's performance.,plays a harmonica on his forehead.,begins by brushing the ends of the mans matches.,uses a blue striped harmonica to make the music play.,gold0-orig,pos,unl,unl,unl,unl,A man plays the saxophone in various public settings while the audiences watch.,The man\nanetv_yw9W5dZ6T18,8708,\"He grab a tong and a silver, metal bowl with vegetables in it. The ingredients on the counter\",are in white containers.,cuts pasta into slices.,talks to the camera.,begins to fry a crab.,are torn and prepared.,gold1-reannot,pos,unl,unl,unl,pos,\"He grab a tong and a silver, metal bowl with vegetables in it.\",The ingredients on the counter\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8229,\"Then, someone stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden. Someone\",escapes through the garden.,'s uncle looks around and see someone paddling to the shore of the harbor.,moves down the hall to meet someone.,stares across at someone with a perturbed expression.,,gold0-orig,pos,unl,unl,pos,n/a,\"Then, someone stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8237,\"During the brief time that the door is open, we hear a cocktail party going on in the next room: voices and soft. Someone\",strides across the room toward someone.,blows the glow of the sun flashing through the dark sky.,someone strains in the chair to make his music cry so she can't turn it to be hit up.,is in his eyes for the beat of the classroom.,stops from the doorway.,gold1-orig,pos,unl,unl,unl,pos,\"During the brief time that the door is open, we hear a cocktail party going on in the next room: voices and soft.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8232,\"As he arrives at the curb, a long black packard sedan pulls up before him. Three men\",step out of the sedan.,walk along a sidewalk floor.,sit in bed together.,rush through a cluster of buildings.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he arrives at the curb, a long black packard sedan pulls up before him.\",Three men\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8235,\"Numerous museum - quality artifacts are displayed around the room. After a moment, someone\",enters from across the room.,strides down a narrow ward and opens the doors.,makes his way to the door.,finds a map show yet moldy journal and squints in anticipation at the spires.,,gold0-orig,pos,unl,unl,unl,n/a,Numerous museum - quality artifacts are displayed around the room.,\"After a moment, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8241,\"He throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols. He\",puts on his glasses to make a closer examination.,\"strings falling, then hits his head again.\",\"rose on his chair, into someone's living room.\",\"plates, with his eyes closed and his eyes empty.\",reads the letter in a sketchbook.,gold0-orig,pos,unl,unl,unl,pos,\"He throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8231,\"Someone walks briskly toward the street; smiling, enjoying his freedom. As he arrives at the curb, a long black packard sedan\",pulls up before him.,glides back and stands between them.,approaches one of the trucks.,pulls over to the bus stop.,,gold1-orig,pos,unl,pos,pos,n/a,\"Someone walks briskly toward the street; smiling, enjoying his freedom.\",\"As he arrives at the curb, a long black packard sedan\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8238,\"Dressed in a tuxedo, he exudes both confidence and power. He\",shakes hands with someone.,is disturbed by a newspaper as he works.,\"struggles to keep someone from sparks, kicking his legs across the floor.\",grabs both hands then thrusts out his hair and kisses it.,\"stops, gazing around, then at the empty shelves.\",gold0-orig,pos,unl,unl,unl,unl,\"Dressed in a tuxedo, he exudes both confidence and power.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8239,He shakes hands with someone. Someone,goes to a table where an object is wrapped in cloth.,\"stands beside the teller, smiles.\",turns and faces someone.,turns his gaze to the injured and doubles team who all sprawling.,\"smiles, then bows bowed and faces the tree.\",gold1-orig,pos,unl,unl,unl,unl,He shakes hands with someone.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8228,\"Where he goes to his desk and finds a thick envelope with a foreign postmark on it. Then, someone\",\"stuffs his mail into his coat pockets, goes to the window, slides it open and steps out into the garden.\",gives her mother a hug.,shoots her a nod.,thrusts through the loft and manuscript.,,gold0-orig,pos,unl,unl,unl,n/a,Where he goes to his desk and finds a thick envelope with a foreign postmark on it.,\"Then, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8234,Someone is ushered into a large Art Deco apartment and left alone. Numerous museum - quality artifacts,are displayed around the room.,\"are perched above towers, octagonal.\",are shown beginning outside the chamber repeatedly heading into the middle of the sparse mob.,shows two crowded shelves in 50s's.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone is ushered into a large Art Deco apartment and left alone.,Numerous museum - quality artifacts\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8236,\"After a moment, someone enters from across the room. During the brief time that the door is open, we\",hear a cocktail party going on in the next room: voices and soft.,tilt over the mess in to the ledge down trough nearby.,\"see someone, watched closely by the door and into space.\",can see someone approach the dining room where people enter.,,gold0-reannot,pos,unl,unl,pos,n/a,\"After a moment, someone enters from across the room.\",\"During the brief time that the door is open, we\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8240,Someone goes to a table where an object is wrapped in cloth. He,\"throws back the cloth revealing a flat stone tablet - - about two feet square, inscribed with letters and symbols.\",drags a cloth over the table and finds a laundry card taped to the wardrobe.,\"holds it back down, holding it to his ear.\",\"gazes into the picture, then unwraps the laser, and adds more light from the wall.\",sits down in front of a bicycle and paces.,gold0-reannot,pos,unl,unl,unl,unl,Someone goes to a table where an object is wrapped in cloth.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70011,8230,Someone escapes through the garden. Someone,\"walks briskly toward the street; smiling, enjoying his freedom.\",stops from the base of the hill and tries to run through the crowd towards the luxurious harbor.,notices a cigarette smoking in his autumnal uniform.,proudly for the entrance.,is flung down the shaft.,gold0-reannot,pos,unl,unl,unl,unl,Someone escapes through the garden.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59914,14714,\"Snorting horse nostrils. as the shadow of a black rider looms over a Hobbit House. Terrified, farmer maggot\",cowers in his doorway.,passes in front of a group of colleagues.,walks to a quieter room.,drags the charging mannequin over his head.,,gold0-orig,pos,unl,unl,unl,n/a,Snorting horse nostrils. as the shadow of a black rider looms over a Hobbit House.,\"Terrified, farmer maggot\"\nanetv_J9Sl_H-1BOA,19181,A young girl is seen sitting front of a piano and playing the instrument with her finger tips. She,continues playing while the camera captures her from afar.,then continues playing the harmonica while smiling to the camera.,begins playing with her mother and continues dancing in the end.,begins playing the instrument while speaking to the camera.,,gold0-orig,pos,pos,pos,pos,n/a,A young girl is seen sitting front of a piano and playing the instrument with her finger tips.,She\nlsmdc3039_JACK_AND_JILL-2748,104,\"She leaps into someone's arms and he falls back. Someone, someone, and the kids\",rush over as someone's kids pile on to the new lovebirds.,flee through a plain of dead concrete.,lay in the summit of manhattan with a huge alarm.,run to the bedroom.,run through the front door.,gold0-orig,pos,unl,unl,pos,pos,She leaps into someone's arms and he falls back.,\"Someone, someone, and the kids\"\nanetv_rDxEl9bPodU,11845,Six horses with people on them walk along a sandy shore in front of the ocean on an overcast day. The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him,riding horses on the beach.,pouring water on the river.,standing on the border of the boat waiting.,are brushing off the rocky water.,are showing the soap and they begin to walk.,gold0-orig,pos,unl,unl,unl,unl,Six horses with people on them walk along a sandy shore in front of the ocean on an overcast day.,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him\nanetv_rDxEl9bPodU,8486,A woman wearing green top and a bag on her shoulder rides a horse. People,ride horses going in a line.,walk up fans on the screen with a quick smile.,on the long jump ropes a wire at the top of a horse.,shove in the open gate.,,gold0-orig,pos,unl,unl,pos,n/a,A woman wearing green top and a bag on her shoulder rides a horse.,People\nanetv_rDxEl9bPodU,11846,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him riding horses on the beach. The camera man,focuses the camera on the people riding horses behind him as they all continue to ride horses on the beach.,removes the hat on and continues doing in the way and the girls in the bleachers are still talking.,\"steps up to pick up the brown tractor and swings from the pit, returning to the area.\",\"is seen climbing and walking onto the water, then begins pushing down a very large sand pit and pushing out the rocks.\",\"lets the man go on blue, bathed in orange.\",gold0-reannot,pos,unl,unl,unl,unl,The camera man is on a brown horse and is filming the ocean and the woman and two men in front of him riding horses on the beach.,The camera man\nanetv_hLnVjkmioH8,7295,A boy sits at a kitchen counter and adjusts the camera. His friend,moves the camera back so they are more visible.,pushes another pancake into his lap.,smokes coffee while looking back and forth at the kitchen.,poses on a stack of equipment.,holds up his hand on the table.,gold0-orig,pos,unl,unl,pos,pos,A boy sits at a kitchen counter and adjusts the camera.,His friend\nanetv_hLnVjkmioH8,7296,The two boys then arm wrestle and the left boy wins both times. The right boy walks away and the left boy,reaches for the camera.,kicks his laughing up while the man continue arm wrestling.,smiles and kisses someone on the cheek.,begins to look around helplessly.,raises his middle stick.,gold1-orig,pos,unl,pos,pos,pos,The two boys then arm wrestle and the left boy wins both times.,The right boy walks away and the left boy\nlsmdc3059_SALT-29114,14441,Someone breaks part of the wall away to reveal an electronic device inside. She,removes some wires from it.,\"checks it with a telescope, then makes seat, picks the metal discreetly.\",kicks someone off the deck and pushes in.,hammers the steel square desk.,opens a large box of cigarettes and blows smoke into the smoky hut.,gold1-orig,pos,unl,pos,pos,pos,Someone breaks part of the wall away to reveal an electronic device inside.,She\nlsmdc3059_SALT-29114,14443,\"In the operation center, someone waits against the wall beside the door with his pistol in hand. She\",sinks to the floor.,turns to him and catches his own reflection as he closes.,throws her hand back and forth.,slaps him in the head.,looks behind him with a knitted brow.,gold1-orig,pos,unl,pos,pos,pos,\"In the operation center, someone waits against the wall beside the door with his pistol in hand.\",She\nanetv_dAiqJJKezPE,10967,A man rolls a tire towards a raised car. The man,uses a jack to raise the tire to the car's height.,\"adjusts a tire wheel, then gets off of the vehicle.\",runs around it using the machine.,\"removes makeup gloves, pushes it open.\",lifts a steep container of snow off the front of a car.,gold0-orig,pos,unl,unl,unl,unl,A man rolls a tire towards a raised car.,The man\nanetv_dAiqJJKezPE,13541,The automotive worker uses the hand jack to positions the tire onto the wheel hub of a car. The man,picks up lug nuts and tightens them onto the wheel hub with his hand.,rolls the body tire and puts it down on the spare tire on the bike top.,uses the pedal to bend the pedal back to the right position each time.,adds the tools to life pieces to weld and turns off the tire with the tire.,\"unrolls the leaves on the machine, showing off graffiti at the bottom of the sealing.\",gold1-orig,pos,unl,unl,unl,unl,The automotive worker uses the hand jack to positions the tire onto the wheel hub of a car.,The man\nanetv_dAiqJJKezPE,13540,The man rolls the tire onto a hand jack. The automotive worker,uses the hand jack to positions the tire onto the wheel hub of a car.,\"uses a rag to cut the tire, and uses a pen over his tire.\",drives back and fourth on the bike.,uses the locomotive mower to catch the fire.,put the tire on.,gold0-orig,pos,unl,unl,unl,pos,The man rolls the tire onto a hand jack.,The automotive worker\nanetv_dAiqJJKezPE,13539,A man in black tshirt rolls a tire through an automotive shop. The man,rolls the tire onto a hand jack.,picks up a trash bag and pours buckets.,removes the pin and grabs it with the free hand.,shows us an older man's face.,hits it and they ride around the car.,gold0-orig,pos,unl,unl,unl,unl,A man in black tshirt rolls a tire through an automotive shop.,The man\nanetv_dAiqJJKezPE,10968,The man uses a jack to raise the tire to the car's height. The man,attaches the tire to the car with bolts.,puts the lug nuts off of the tire and assembles the tire.,slides the wheel into the tire and loses out the wrestles.,washes the ski in black and double tire on and grinds a sticker.,puts the tire on the bike.,gold0-reannot,pos,unl,unl,unl,unl,The man uses a jack to raise the tire to the car's height.,The man\nlsmdc0005_Chinatown-48498,12468,\"He reaches into his pocket pulls out his cigarette case, takes a pick out of the side and starts to fool with the lock. The Maid\",\"opens the door abruptly, stares in some surprise at someone.\",tries to suppress what seems to be the last one.,explodes what's happening as the security car hits a man later and falls back towards the rocky ditch.,\"stomps on one of the wooden windows, and which whips the silver, mainly green hand weed across a fingertip onto the cement.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He reaches into his pocket pulls out his cigarette case, takes a pick out of the side and starts to fool with the lock.\",The Maid\nlsmdc1011_The_Help-78754,14731,Someone hurries out of the room with the baby. Someone,eyes someone with ice - cold menace.,stares into his eyes as he watches his drama.,watches his father away.,spins away from her and hurries out of the window.,\"riding in the night, heading down a hill road.\",gold0-orig,pos,unl,unl,unl,unl,Someone hurries out of the room with the baby.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89879,7384,\"Someone proffers his hand, and the deal is done. Someone\",finds someone reading the letter.,shoves his sweater off someone's shirt.,grabs the rope and pumps it.,stares up at it.,comes out of the service.,gold1-orig,pos,unl,unl,unl,pos,\"Someone proffers his hand, and the deal is done.\",Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89879,7385,Someone finds someone reading the letter. She,\"looks away, embarrassed.\",\"drops the letter, dropping it to him, then walks away.\",takes off someone's gem.,picks up a pen and reads it.,takes an envelope from the envelope.,gold0-orig,pos,unl,unl,unl,unl,Someone finds someone reading the letter.,She\nanetv_jQ2UoAENwlw,3970,A man is seen sitting on a chair look nervously at the camera while another man sits behind him. The man then begins tattooins the man's chest and the man,looks up into the camera every now and then.,pointing to keep a good hand to table.,finishes up the result.,continues to teach the discus.,looks into his mirror.,gold1-orig,pos,unl,unl,unl,pos,A man is seen sitting on a chair look nervously at the camera while another man sits behind him.,The man then begins tattooins the man's chest and the man\nanetv_6dNh6AxVLx8,14708,Several more shots of people riding on a track are shown with many standing on the sidelines to watch. More falls are shown with a slow motion affect and more people,continue to ride around.,being shown flipping numerous times.,narrates as several more pictures of viewers there is several scenes of people attempting and teaching the proper procedure.,are shown as well as continuing crochet out and out of frame.,enjoying cheer while various people speak on the sidelines as well as another man riding.,gold0-orig,pos,unl,unl,unl,pos,Several more shots of people riding on a track are shown with many standing on the sidelines to watch.,More falls are shown with a slow motion affect and more people\nanetv_6dNh6AxVLx8,14707,The video starts with several shots of bmx riders riding along a track with one taking a hard fall. Several more shots of people riding on a track,are shown with many standing on the sidelines to watch.,are shown as well as rolling.,are shown as well as more speaking and leads into the man riding the bike.,is shown while a man watches on the side.,,gold0-orig,pos,unl,unl,pos,n/a,The video starts with several shots of bmx riders riding along a track with one taking a hard fall.,Several more shots of people riding on a track\nanetv_DK271OQnNRA,6740,Three people go tubing down a rapid. They,\"get stuck on the rocks, then push off and continue floating.\",are dressed as they are shown in small kayaks.,turn left and see the white ending screen.,are floating down a river with a great choppy of the river.,,gold0-orig,pos,unl,unl,pos,n/a,Three people go tubing down a rapid.,They\nlsmdc3022_DINNER_FOR_SCHMUCKS-10403,15368,She sticks her tongue out and waggles it around. Someone puts his hand up and she,slides her tongue between his fingers.,\"pulls over and grabs hold of his neck, tying him tight on her wrists.\",puts it in her good eye.,pats him on the footboard then leans back into his chair.,springs up and backs off screen.,gold0-orig,pos,unl,unl,unl,pos,She sticks her tongue out and waggles it around.,Someone puts his hand up and she\nlsmdc1007_Spider-Man1-74909,7790,He looks up in alarm. He,is at a pay phone in the hospital.,opens the window and someone on some sheet clothes.,flaps its wings and moves to the deck.,hangs up on a podium.,,gold1-reannot,pos,unl,unl,unl,n/a,He looks up in alarm.,He\nlsmdc3016_CHASING_MAVERICKS-6717,8639,\"He curls in his finger, surfaces and checks his watch. Its timer\",reads four minutes and five seconds.,shows clicking on someone's electronic keyboard.,bounces up and ticks up to zero.,bears the teen's score.,,gold0-orig,pos,unl,unl,pos,n/a,\"He curls in his finger, surfaces and checks his watch.\",Its timer\nlsmdc3016_CHASING_MAVERICKS-6717,8636,\"Now beneath a stormy sky, slate hued waves roil and churn along the coast, crashing violently into its rocks. At a nine foot depth marker, a bubble\",erupts at the surface.,\"settles on the wire, gazing into the distance.\",float slowly lifts on the towering impact.,pops up to float up like an ocean board.,float protectively around someone and bumps into a pair of white - coated dancers.,gold0-orig,pos,unl,unl,unl,unl,\"Now beneath a stormy sky, slate hued waves roil and churn along the coast, crashing violently into its rocks.\",\"At a nine foot depth marker, a bubble\"\nlsmdc3016_CHASING_MAVERICKS-6717,8637,\"At a nine foot depth marker, a bubble erupts at the surface. Kneeling underwater, someone\",holds up a single finger.,lets out a big bellow of smoke.,swings his muscled face in the air and gets back into his arms.,zips up the bottle of beer.,,gold0-orig,pos,unl,unl,unl,n/a,\"At a nine foot depth marker, a bubble erupts at the surface.\",\"Kneeling underwater, someone\"\nlsmdc3016_CHASING_MAVERICKS-6717,8635,He gets up from his seat. He,\"kneels close to hers, and gives her an emotional hug.\",starts into the forest.,\", someone, is it, unable to find someone.\",\"the vehicle, someone moves up the back of his car.\",flings her seat at the truck's rim.,gold0-orig,pos,unl,unl,unl,unl,He gets up from his seat.,He\nlsmdc3016_CHASING_MAVERICKS-6717,8634,Someone regards his smiling mother appreciatively. He,gets up from his seat.,goes back to the table.,leans in and plants his lips on hers.,\"opens the door, finds herself and enters with her parents.\",,gold1-orig,pos,pos,pos,pos,n/a,Someone regards his smiling mother appreciatively.,He\nlsmdc3016_CHASING_MAVERICKS-6717,8641,\"Following them, someone steps into a room with a gorgeously painted long board at its center. The teen\",stares at it with an overwhelmed gaze then ventures closer.,\"surfaces with his palms, and puts her sunglasses.\",conducts the music as someone takes off his socks.,breaks out a sheet of paper as she walks through the busy terminal's center.,pauses and checks his empty glass.,gold0-orig,pos,unl,unl,pos,pos,\"Following them, someone steps into a room with a gorgeously painted long board at its center.\",The teen\nlsmdc3016_CHASING_MAVERICKS-6717,8640,A square faced man greets them. He,leads them down a corridor.,strides off at cell.,joins him wearing a bright purple nightie and smile.,\"moves around the stage and stands, watching them.\",leads them down the street.,gold1-orig,pos,unl,unl,pos,pos,A square faced man greets them.,He\nlsmdc3016_CHASING_MAVERICKS-6717,8638,\"Kneeling underwater, someone holds up a single finger. He\",\"curls in his finger, surfaces and checks his watch.\",soars through the wooded woods towards an outhouse.,\"removes someone's gaze, and comes to catch it.\",\"steps up the shaft, his headlights covered in chalk and root.\",rounds the corner on her scooter and taking a photo.,gold0-orig,pos,unl,unl,unl,unl,\"Kneeling underwater, someone holds up a single finger.\",He\nanetv_xoSA8_kTiBY,10937,He is also shown performing several core - strengthening exercises on the floor. The video,ends with the closing credit shown on the screen.,ends with several crew of people engaging in a game of soccer.,ends with a closeup of a cylinder and video.,ends with forcefully blasting up the sides in a air and a smile is shown.,ends with him dribbling the equipment and punching it up for a third time.,gold1-orig,pos,unl,unl,unl,unl,He is also shown performing several core - strengthening exercises on the floor.,The video\nanetv_xoSA8_kTiBY,5962,A woman is talking inside a fitness center. She,\"gets on a bike with other people, and begins riding while she talks.\",pauses and stands there wearing makeup.,stands in a roofed kitchen and talks to the camera once more.,chalks sand on her left hand.,is holding a microphone while sitting talking to a woman.,gold0-orig,pos,unl,unl,unl,unl,A woman is talking inside a fitness center.,She\nanetv_xoSA8_kTiBY,5964,She lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time. She finally,slows to a stop.,looks up from her phone and gives a thumbs up.,walks onto the exercise equipment and makes a layup.,walks on the living stage to get a better look at the floor.,sits back down and puts her make up.,gold0-orig,pos,unl,unl,unl,unl,She lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time.,She finally\nanetv_xoSA8_kTiBY,5963,\"She gets on a bike with other people, and begins riding while she talks. She\",lies on the floor and does aerobic exercises before getting back on the recumbent bike for an extended period of time.,\"makes a call and walks off, flipping over and over again.\",is shown riding an elephant with her and another in the background.,stops and smiles to someone as she walks away.,repaired the pedals of the bicycle.,gold1-reannot,pos,unl,unl,unl,unl,\"She gets on a bike with other people, and begins riding while she talks.\",She\nanetv_xoSA8_kTiBY,10936,A woman introduces a video about a workout routine that she will perform. Is Sean,teaching a spin class several participants they spin along with her.,exaggerated a procedure that not in the water doing exercises.,standing inside the same machine posing for more students.,\"dance, performing a zumba routine as the student walks around and practices on her jumps.\",,gold0-reannot,pos,unl,unl,unl,n/a,A woman introduces a video about a workout routine that she will perform.,Is Sean\nanetv_S6VgTNGiIkg,5216,A close up of a pool table is shown followed by a person performing tricks. Many people,perform different tricks on the pool table while using various objects.,are seen jumping in front of the camera as well as a person's shoes.,are seen in many clips flipping several times and performing tricks on a large piano.,are seen riding on the ice as well as envelops with one another.,are shown speaking to the camera in the end and more people walking around.,gold1-orig,pos,unl,unl,unl,pos,A close up of a pool table is shown followed by a person performing tricks.,Many people\nanetv_S6VgTNGiIkg,14107,Several people use different methods to perform trick shots. They continue performing impressive shots,are pool cues as well as a dog.,and ends with a text are shown.,of the legs huddled together.,doing various flips and tricks at the same time as they walk silently to talk.,of the ball while others watch in the side.,gold1-orig,pos,unl,unl,unl,pos,Several people use different methods to perform trick shots.,They continue performing impressive shots\nanetv_S6VgTNGiIkg,14106,A close up of a pool table is shown that leads into a person hitting a ball. Several people,use different methods to perform trick shots.,are shown playing beer pong in a foosball table.,are shown hitting the ball around and board the ball while speaking to the camera and follows it.,keep running around balls and hitting them around them hitting around.,continue to throw the ball toward one another.,gold0-orig,pos,unl,unl,unl,unl,A close up of a pool table is shown that leads into a person hitting a ball.,Several people\nanetv_S6VgTNGiIkg,5217,Many people perform different tricks on the pool table while using various objects. He,continues performing tricks over and over and ends with the dog on the table.,dives through the swimming pool.,continues dancing around while sometimes jumping into several more waves.,begins to remove the pumpkin with the wax.,,gold0-orig,pos,unl,unl,unl,n/a,Many people perform different tricks on the pool table while using various objects.,He\nlsmdc1024_Identity_Thief-82634,15630,An officer leads someone out while the others follow with someone. The restaurant patrons,gawk from their tables.,look puzzled as he accompanies them.,hold their heads in disgust.,stare out at the floor.,,gold0-orig,pos,unl,pos,pos,n/a,An officer leads someone out while the others follow with someone.,The restaurant patrons\nlsmdc1024_Identity_Thief-82634,15641,\"He shoots her in the foot. Now, the two thugs\",lie in a car's trunk.,row down the street.,arrive at a side square.,wipe her beer glass.,,gold1-orig,pos,unl,unl,pos,n/a,He shoots her in the foot.,\"Now, the two thugs\"\nlsmdc1024_Identity_Thief-82634,15639,The skiptracer shoots someone in the leg. Someone,holds her hands up.,pulls onto someone's leash.,punches him on the face.,sits down beside the man.,stares at the stranger across the street at the valet station.,gold0-orig,pos,unl,pos,pos,pos,The skiptracer shoots someone in the leg.,Someone\nlsmdc1024_Identity_Thief-82634,15657,\"The skiptracer sits back, dazed. They\",arrest him as people scurry away unseen.,study him with ammunition.,crafts a mottled head over the roadside.,move into the living room.,has momentarily disintegrates into a flash of yellow.,gold0-orig,pos,unl,unl,unl,unl,\"The skiptracer sits back, dazed.\",They\nlsmdc1024_Identity_Thief-82634,15629,\"As the officers cuff them, someone shares a frightened look with someone. An officer\",leads someone out while the others follow with someone.,pushes him up with his rifle raised.,runs up to them and shoots someone.,walks through the front door.,rushes down through the sheriff.,gold1-orig,pos,unl,unl,unl,unl,\"As the officers cuff them, someone shares a frightened look with someone.\",An officer\nlsmdc1024_Identity_Thief-82634,15653,Someone helps someone up and pushes him aside as the car accelerates. Someone,rolls up the windshield and falls to the pavement.,struggles back onto his bike and lets the bus thrust forward.,scrambles down the stairs and slides down to the ground.,shoots the gun at someone.,,gold1-orig,pos,unl,unl,unl,n/a,Someone helps someone up and pushes him aside as the car accelerates.,Someone\nlsmdc1024_Identity_Thief-82634,15643,\"Outside, an officer escorts someone around a squad car. Someone\",glances over as they both get into the back seat.,gripping someone's elbow.,tosses a penguins out toward a.,prepares his shotgun and spider man in full gear.,ducks a strap from his bag and hurries out as someone walks inside the station.,gold0-orig,pos,unl,unl,unl,unl,\"Outside, an officer escorts someone around a squad car.\",Someone\nlsmdc1024_Identity_Thief-82634,15632,\"The group proceeds past the hostess and into the hall, where an elevator arrives. Wearing a nice suit and a sleek, black dress, people\",enter as the doors close.,run across the beach toward the boarding school.,enter a cafe.,stand on a cobble - carpeted platform carrying their flags.,move on slowly towards the bus.,gold0-orig,pos,unl,unl,unl,unl,\"The group proceeds past the hostess and into the hall, where an elevator arrives.\",\"Wearing a nice suit and a sleek, black dress, people\"\nlsmdc1024_Identity_Thief-82634,15648,\"With a determined glare, the skiptracer follows close behind. Someone\",\"glances over at someone, then leans toward the grated divider separating them from the officers.\",carries her out to the vault.,\"close by, someone sits with.\",\"looks down over someone, who smiles at someone.\",\"stares behind him, and approach the humvee.\",gold0-orig,pos,unl,unl,pos,pos,\"With a determined glare, the skiptracer follows close behind.\",Someone\nlsmdc1024_Identity_Thief-82634,15644,Someone glances over as they both get into the back seat. Someone,\"stares ahead, avoiding his gaze.\",faces someone and heaves a sigh.,\"calls the driver, beating wildly.\",\"pulls out onto the road, past a pump.\",points at someone's feet.,gold1-orig,pos,unl,unl,unl,pos,Someone glances over as they both get into the back seat.,Someone\nlsmdc1024_Identity_Thief-82634,15633,\"Wearing a nice suit and a sleek, black dress, people enter as the doors close. They\",\"stand in the front, with their backs to everyone.\",emerge from the hospital near a police station bench.,see events on the on.,\"gazing walk past them on the street, a tall, balding man wearing a red, brown suit joins her at the front entrance\",climb into the precipice and peer outside.,gold0-orig,pos,unl,pos,pos,pos,\"Wearing a nice suit and a sleek, black dress, people enter as the doors close.\",They\nlsmdc1024_Identity_Thief-82634,15650,\"He barrels through traffic dividers, into the opposite lane. They\",see a highway beneath them.,are hiding near the gate in an alley.,rush up and down some hall.,share a look - - someone grins.,walk into their apartment.,gold1-orig,pos,unl,unl,unl,unl,\"He barrels through traffic dividers, into the opposite lane.\",They\nlsmdc1024_Identity_Thief-82634,15655,Squad cars surround the skiptracer. An officer,hops out with his pistol drawn.,pours on a big bucket.,\"falls into a crowded room, where people are waiting for one.\",pulls a gun from behind the king's back and drops it in a wooden bag.,,gold0-orig,pos,unl,unl,unl,n/a,Squad cars surround the skiptracer.,An officer\nlsmdc1024_Identity_Thief-82634,15652,\"The skiptracer crashes through the dividers, heading straight for him. Someone\",helps someone up and pushes him aside as the car accelerates.,catches someone's hand and tries to feed them.,gets past the tennis truck and destroys it.,reaches the main building.,,gold0-orig,pos,unl,pos,pos,n/a,\"The skiptracer crashes through the dividers, heading straight for him.\",Someone\nlsmdc1024_Identity_Thief-82634,15649,\"Suddenly, she bangs her cuffed wrist against the back windshield. She\",kicks out the glass.,winces in the hallway.,sees the throng of men.,goes over to the kitchen ledge.,watches someone tap her fingers.,gold0-orig,pos,unl,unl,unl,pos,\"Suddenly, she bangs her cuffed wrist against the back windshield.\",She\nlsmdc1024_Identity_Thief-82634,15628,\"She takes another sip as someone, the hotel manager, and several policemen enter behind someone. As the officers cuff them, someone\",shares a frightened look with someone.,leads someone up a set of stairs.,radios in and answers his cellphone.,pulls her arm out from under his.,finds someone outside his house.,gold0-orig,pos,unl,unl,unl,unl,\"She takes another sip as someone, the hotel manager, and several policemen enter behind someone.\",\"As the officers cuff them, someone\"\nlsmdc1024_Identity_Thief-82634,15631,The restaurant patrons gawk from their tables. The group,\"proceeds past the hostess and into the hall, where an elevator arrives.\",dashes in and out of door.,passes something between two boys in a reception room.,hold their expressions as they tumble off the stage.,,gold0-orig,pos,unl,unl,unl,n/a,The restaurant patrons gawk from their tables.,The group\nlsmdc1024_Identity_Thief-82634,15654,\"Someone rolls up the windshield and falls to the pavement. Pushing the airbag away, the skiptracer\",sees a squad car speeding straight at him.,watches someone for a moment.,covers his mouth with her right hand.,lets his trunk drop.,\"crawls out alongside someone, still stretched.\",gold1-orig,unl,unl,unl,unl,unl,Someone rolls up the windshield and falls to the pavement.,\"Pushing the airbag away, the skiptracer\"\nlsmdc1024_Identity_Thief-82634,15635,She glances between someone and the thugs. Someone,looks up as someone turns away.,collapses on the bulkhead.,turns someone down and stares at her with sad eyes.,grins and then faces herself.,is gambling while a few others watch.,gold1-orig,pos,unl,unl,unl,pos,She glances between someone and the thugs.,Someone\nlsmdc1024_Identity_Thief-82634,15646,\"As the squad car leaves, he quickly follows. Now, they\",cruise down a construction - filled street with opposite lanes divided by orange traffic cones.,go to the car.,move an empty restaurant indoors.,approach the white knight.,have sunk silently in the weeds behind the dusty jetty.,gold0-orig,pos,unl,unl,unl,unl,\"As the squad car leaves, he quickly follows.\",\"Now, they\"\nlsmdc1024_Identity_Thief-82634,15656,An officer hops out with his pistol drawn. The skiptracer,\"sits back, dazed.\",pats him as they race away.,\"grabs his friend's arm, pulls him under a cab, and fixes him with their feet.\",draws a gun towards them.,raises her head in a bag and jerks slightly.,gold1-orig,pos,unl,unl,unl,pos,An officer hops out with his pistol drawn.,The skiptracer\nlsmdc1024_Identity_Thief-82634,15645,\"Someone stares ahead, avoiding his gaze. Nearby, the skiptracer\",watches from the thugs' silver sedan.,lifts a flaming yellow sedan in the air.,pours a fruit coffee.,pulls a sign off the excavator's crossbar.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone stares ahead, avoiding his gaze.\",\"Nearby, the skiptracer\"\nlsmdc1024_Identity_Thief-82634,15658,They arrest him as people scurry away unseen. They,exit the overpass through a construction gate and down a staircase.,wrap their box and start finishing putting their arm on the trunk - wrapped.,shields his office as he approaches from his desk.,see someone fight over the sofa isildur.,run after the food.,gold1-reannot,pos,unl,unl,unl,unl,They arrest him as people scurry away unseen.,They\nlsmdc1024_Identity_Thief-82634,15647,\"Now, they cruise down a construction - filled street with opposite lanes divided by orange traffic cones. Someone\",stares straight ahead in the back seat.,\"holds one finger over one arm, holding the phone and listens.\",beats the procession and then strolls down a street with full speed and weather exterior.,steps into the main faces and opens the parlor door.,\"waters, carnival smoke, and peer along the train.\",gold0-reannot,pos,unl,unl,unl,unl,\"Now, they cruise down a construction - filled street with opposite lanes divided by orange traffic cones.\",Someone\nlsmdc1024_Identity_Thief-82634,15636,\"Someone looks up as someone turns away. Stepping forward, he\",eyes someone up and down.,withdraws slices of flowers from view.,grabs a handkerchief and grabs the launcher from someone's throat.,packs a tattered satchel.,opens the door and reads.,gold0-reannot,pos,unl,unl,pos,pos,Someone looks up as someone turns away.,\"Stepping forward, he\"\nlsmdc1024_Identity_Thief-82634,15642,\"Now, the two thugs lie in a car's trunk. Outside, an officer\",escorts someone around a squad car.,strides out of the house.,opens the garage door and dials a number in its keys.,drops his gun and heads outside.,taps him on the head.,gold1-reannot,pos,unl,unl,unl,unl,\"Now, the two thugs lie in a car's trunk.\",\"Outside, an officer\"\nlsmdc1024_Identity_Thief-82634,15634,\"Noticing them, someone's eyes widen. She\",glances between someone and the thugs.,turns toward the mirror again.,stares wide - eyed at him.,sees someone start to leave.,looks at them uncertainly.,gold0-reannot,pos,unl,pos,pos,pos,\"Noticing them, someone's eyes widen.\",She\nlsmdc1024_Identity_Thief-82634,15637,\"Stepping forward, he eyes someone up and down. They\",exit into the lobby.,\"notices him and rushes down the stairs to where the soldiers stand straight, staring to a impact field opposite.\",cross a shot of the wall.,are happy for their wedding.,wrestle the wife into the hall.,gold1-reannot,pos,unl,unl,unl,unl,\"Stepping forward, he eyes someone up and down.\",They\nlsmdc1015_27_Dresses-79836,3998,\"Then someone, in a fight, grimacing at a baby and being afraid of someone's dog. Behind the now not - so - happy couple, someone\",gets to her feet.,is on shaded grass and is seated in the fallen grass.,walks away from someone's body.,is seated at a table.,,gold0-orig,pos,unl,pos,pos,n/a,\"Then someone, in a fight, grimacing at a baby and being afraid of someone's dog.\",\"Behind the now not - so - happy couple, someone\"\nlsmdc1015_27_Dresses-79836,3996,Someone tucks into a helping of ribs. Someone,looks unhappy as slides show him with his proud parents.,is a wheelchair swaying up and down.,leaps over a bridge and slashes someone's shoulder.,throws the door to someone as he goes to meet someone's story home.,,gold0-orig,pos,unl,unl,unl,n/a,Someone tucks into a helping of ribs.,Someone\nlsmdc1015_27_Dresses-79836,3997,\"Someone looks unhappy as slides show him with his proud parents. Then someone, in a fight,\",grimacing at a baby and being afraid of someone's dog.,comes into his reverie and watches the sink.,\"sits in his wagon, looking at his mother.\",watches someone for a long time.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks unhappy as slides show him with his proud parents.,\"Then someone, in a fight,\"\nlsmdc1015_27_Dresses-79836,3993,He is at the United Nations. She,is in europe with two guys.,hands find a gnarled desk.,begins talking to someone camera.,is standing in the opposite corner with his hands posted around the table.,turns the beefy antenna off the tail and blows out smoke.,gold1-orig,pos,unl,unl,unl,unl,He is at the United Nations.,She\nlsmdc1015_27_Dresses-79836,3992,Young someone pets a goat. Someone,dangles a cat by its hind legs.,wears the phial as he joins her in a exercise neighborhood.,dips the bucket of coffee can on his face holding the dish mop.,has try to eat the meal.,watches as they toss they bag on the remaining food and eats it.,gold1-orig,unl,unl,unl,unl,unl,Young someone pets a goat.,Someone\nlsmdc1015_27_Dresses-79836,3995,Someone helps with an animal charity. Someone,tucks into a helping of ribs.,slides in to someone 'bronze trophy.,chases arrow to new targets.,rises and start having a pulley.,seems like someone means an editor.,gold0-reannot,pos,unl,unl,unl,unl,Someone helps with an animal charity.,Someone\nanetv_XiG7rgPoKKI,3376,The racers pass a banner and we see the green team again. The race is finished and we,see the crowd clapping.,see the lady in red.,see the referee doing the free kick thing.,see the screen start again.,,gold0-orig,pos,unl,unl,pos,n/a,The racers pass a banner and we see the green team again.,The race is finished and we\nanetv_XiG7rgPoKKI,3371,We see team of boaters in a competition in the sea. We,see the race start and the boaters take off.,see different people track running.,see our title screen.,\"man approaches the beach, almost more and then goes again and we see the scenery behind them.\",see the people surfing on the ocean while the winner stands and waves.,gold0-orig,pos,unl,unl,unl,pos,We see team of boaters in a competition in the sea.,We\nanetv_XiG7rgPoKKI,3375,We see a score board on the screen. The racers pass a banner and we,see the green team again.,see 5 after the players fight.,see another man make a turn.,see the clear trophy on a nightstand.,see the end medals.,gold1-orig,pos,unl,unl,unl,unl,We see a score board on the screen.,The racers pass a banner and we\nanetv_XiG7rgPoKKI,3372,We see the race start and the boaters take off. They,pass a small boat in the water.,can jump back forth.,walk along the snowy hills from teh drivers.,are doing more washing cars.,,gold0-orig,pos,unl,unl,unl,n/a,We see the race start and the boaters take off.,They\nanetv_XiG7rgPoKKI,3374,We see one team up close. We,see a score board on the screen.,see a man repeat a routine into the sky.,see an opening title screen.,see an ending title screen.,see them jumping in the tube.,gold1-orig,pos,unl,unl,unl,unl,We see one team up close.,We\nanetv_XiG7rgPoKKI,3373,They pass a small boat in the water. We,see one team up close.,then a group follow the girl down in the river.,roll off the bridge and up into the river.,\"see people on boats, jumping ropes and skiing.\",\"see a building, rafts, and people switch at the same time.\",gold1-reannot,pos,unl,unl,unl,unl,They pass a small boat in the water.,We\nlsmdc1012_Unbreakable-7046,4892,The nurse points across the room. Someone,\"hands the nurse a yellow file, takes another one from her, and walks across the open plan office.\",jerks the head and walks down.,gets over in his chair.,emerges at the end of a pale corner.,,gold0-orig,pos,unl,unl,pos,n/a,The nurse points across the room.,Someone\nlsmdc1012_Unbreakable-7046,4895,She looks up at someone who's watching her from his wheelchair. Metal frame,keeps his right leg straight.,hangs on the edge of the ceiling.,is tied across the large line is it less than 50 yards away.,is suction under his arm.,taps on the bench of someone's shoulders.,gold0-orig,pos,unl,unl,unl,unl,She looks up at someone who's watching her from his wheelchair.,Metal frame\nlsmdc1012_Unbreakable-7046,4894,She leans through a doorway and smiles. She,looks up at someone who's watching her from his wheelchair.,\"hunches over someone, then returns.\",shyly back toward the grated gate.,\"looks at her, then walks away.\",,gold1-orig,pos,unl,unl,pos,n/a,She leans through a doorway and smiles.,She\nlsmdc1012_Unbreakable-7046,4893,\"Someone hands the nurse a yellow file, takes another one from her, and walks across the open plan office. She\",leans through a doorway and smiles.,turns around to look at the clerk in the bleachers.,enters someone's apartment wearing an orange cotton dress.,stares at her as she makes eye contact.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone hands the nurse a yellow file, takes another one from her, and walks across the open plan office.\",She\nlsmdc1048_Gran_Torino-92482,14480,Someone drags pensively on his cigarette. Someone,returns with four cans.,comes over and takes another slug.,wears a strap over his eyes.,eyes the bearded general confidently then lowers his rock before releasing it.,fixes the glass with someone.,gold1-orig,pos,unl,unl,unl,unl,Someone drags pensively on his cigarette.,Someone\nlsmdc1048_Gran_Torino-92482,14481,Someone returns with four cans. He,passes a couple to someone and keeps a couple for himself.,leaves with friends behind.,drinks at 45 pounds.,grabs a glass of milk.,,gold0-orig,pos,unl,unl,pos,n/a,Someone returns with four cans.,He\nlsmdc1048_Gran_Torino-92482,14479,Someone gets up and goes over to the cool box. Someone,drags pensively on his cigarette.,\"smiles and pouts her eyes, but to make all her attention.\",lowers the binoculars then faces someone's stern friend.,goes to the window.,,gold0-orig,pos,unl,unl,pos,n/a,Someone gets up and goes over to the cool box.,Someone\nanetv_Q159fj3M9NM,13571,\"A gymnast runs, then flips several times down an indoor track. Other girls\",\"follow suit, flipping quickly as they go.\",begin to pole vault while other lady in the body watches in the corner.,begin to move around and jump and spin at one another of the stadium.,perform impressive flip bar flips while watching the competition.,start to run into the room and into different clips.,gold0-orig,pos,unl,unl,pos,pos,\"A gymnast runs, then flips several times down an indoor track.\",Other girls\nanetv_Q159fj3M9NM,13572,\"Other girls follow suit, flipping quickly as they go. They\",\"dismount at the end, arms in the air.\",ride down a trail with the revolving gates of the gate drawn.,run down the stairs from the staircase.,stop and run into the stairwell.,watch someone through the back door as a shadow comes over someone.,gold0-orig,pos,unl,pos,pos,pos,\"Other girls follow suit, flipping quickly as they go.\",They\nanetv_YS3Q47uz3HI,5102,She adds the frosting to the cake batter and mixes it well. Then she,pours the mixture in a baking bowl.,takes a piece of cake and pours it into the cake.,takes a cucumber and drops it on the table.,shows off the cake product from what she transfers.,adds more salad explaining that she's putting baking powder in tray.,gold1-orig,pos,unl,unl,unl,unl,She adds the frosting to the cake batter and mixes it well.,Then she\nanetv_YS3Q47uz3HI,5103,Then she pours the mixture in a baking bowl. She,places the bowl in a cookie sheet and places it on the oven rack.,places the product into the pumpkin.,mixes from the bottle and stirs it with soda.,picks up the bottle before pouring a cup of ice.,puts the dough onto the cookie.,gold1-orig,pos,unl,unl,unl,unl,Then she pours the mixture in a baking bowl.,She\nanetv_YS3Q47uz3HI,5100,Then she uses a hand mixer to blend the ingredients together. She then,whips up some cream and sugar to make frosting.,pretends to lick a lemon lemon and add foam to it while another to her.,mixes the ingredients in the mixture and mixes them together in a pot.,puts them on a cooking pot on the cooker.,,gold1-orig,pos,unl,unl,unl,n/a,Then she uses a hand mixer to blend the ingredients together.,She then\nanetv_YS3Q47uz3HI,5104,She places the bowl in a cookie sheet and places it on the oven rack. She,bakes the cake and pulls it out when it's done.,begins to talk about the finished and tomato food.,drinks her coffee at a bowling ad.,hops onto the bike and picks up a pound dish.,drops the pan out to the oven and taps it on.,gold0-orig,pos,unl,unl,unl,pos,She places the bowl in a cookie sheet and places it on the oven rack.,She\nanetv_YS3Q47uz3HI,5098,There's a lady doing a tutorial on how to make a cotton soft Ogura cake. She,begins by mixing the ingredients in a large bowl placed on her kitchen counter.,religious on how to wash cookies are made in the meat with poker and put it in the oven.,begins to put an apron of a toy sticker on the table.,\"irons the web on a wooden post and shows materials to showcase it, she buttons a robe with additional cover.\",picks up the potato with a rag.,gold0-orig,pos,unl,unl,unl,pos,There's a lady doing a tutorial on how to make a cotton soft Ogura cake.,She\nanetv_YS3Q47uz3HI,5099,She adds some eggs to the flour along with vanilla essence. Then she,uses a hand mixer to blend the ingredients together.,tips it in half sprinkles times and enjoys it.,rubs them on the screen and cuts both sides of the cake.,\"adds billiard balls, scoops and waves them with cooked oats.\",adds some tomato paste.,gold1-orig,pos,unl,unl,unl,unl,She adds some eggs to the flour along with vanilla essence.,Then she\nanetv_YS3Q47uz3HI,5101,She then whips up some cream and sugar to make frosting. She,adds the frosting to the cake batter and mixes it well.,shows some meat and prepared to eat it for the eggs and finally finished food.,carries how to evenly butter then covers and cleans whipped cream.,talks to the camera while putting milk on top and starts cleaning the vegetables off.,,gold0-orig,pos,unl,pos,pos,n/a,She then whips up some cream and sugar to make frosting.,She\nanetv_sra0ywgWITo,1414,A man walks over to another man upset and suggests an arm wrestling match. The men,begin to hold hands and quickly move away while two women walk into scene.,then then begin wrestling rock wrestling.,continue hit the ball while looking at the camera and walking to the camera.,throw several mowers and stab balls into each other's opponent to talk to.,,gold0-orig,pos,unl,unl,unl,n/a,A man walks over to another man upset and suggests an arm wrestling match.,The men\nanetv_sra0ywgWITo,1416,The match continues as the men discuss their issues and the women watching yell at the men. The women then help the men arm wrestle and one,punches the other to help one man win.,man joins one of them.,holding food down and talking on the sides.,gets on the back and swings back on the cameras.,of the mob laughs and gives a thumbs up.,gold0-orig,pos,unl,unl,unl,pos,The match continues as the men discuss their issues and the women watching yell at the men.,The women then help the men arm wrestle and one\nanetv_sra0ywgWITo,1415,The men continue the match while look calm and the other looks struggled. The match,continues as the men discuss their issues and the women watching yell at the men.,continues and begins by tattooing the man and the goals from different angles.,ends in their final pattern.,continues as the smoke stops to smoke and smoke roars all around the field.,,gold0-reannot,pos,unl,unl,unl,n/a,The men continue the match while look calm and the other looks struggled.,The match\nanetv_Wgr9YpWni30,4043,A person is seen tying their shoes and leads into several shots of people jumping and moving around on rope. Several shots of landscapes,are shown as well as more people attempting jumps and tricks on a long rope tied to trees.,are shown as well as looking off into the distance as well as showing several stills of the streets.,are shown as well as people holding a bow and ends with others speaking to the camera.,are shown followed by many clips of people performing and speaking to one another.,are shown as well as shots of people performing martial arts with one another and other continue to speak to the camera.,gold0-orig,pos,unl,pos,pos,pos,A person is seen tying their shoes and leads into several shots of people jumping and moving around on rope.,Several shots of landscapes\nlsmdc0008_Fargo-49763,14544,The scrape - scrape - scrape sound carries in the frigid air. Someone,\"goes into a frenzy, banging the scraper against the windshield and the hood of his car.\",bobs her head and gyrates her hips.,comes halfway up with a can of whiskey.,can't not see it out.,,gold0-orig,pos,unl,unl,unl,n/a,The scrape - scrape - scrape sound carries in the frigid air.,Someone\nlsmdc0008_Fargo-49763,14545,He goes back to work on the wind - shield. The door swings open and someone,\"edges in, looking about, holding a sack of groceries.\",strides under the car then eats popcorn.,tumbles back to the other side.,walks in just as the first 2000 chases someone.,steps into a overturned sea.,gold0-orig,pos,unl,unl,unl,unl,He goes back to work on the wind - shield.,The door swings open and someone\nanetv_kYZSCs-ILNQ,11005,He starts hitting tennis balls with his tennis racket. He,stops and talks to the camera.,bounces off the ball and the second goes.,hits the ball again and hit a ball with the racket.,walks down the lane and hits the ball with his racket.,starts to hit the ball back and forth numerous times.,gold1-orig,pos,unl,unl,unl,unl,He starts hitting tennis balls with his tennis racket.,He\nanetv_kYZSCs-ILNQ,11004,A man wearing a white shirt is holding a tennis racket. He,starts hitting tennis balls with his tennis racket.,is hitting the ball in his bowling.,turns around as he walks around.,throws a ball around a corner.,holds a blue ball in his left arm.,gold0-reannot,pos,unl,pos,pos,pos,A man wearing a white shirt is holding a tennis racket.,He\nanetv_XklHV0q3w40,3240,A man is sitting down playing a saxophone. He,stops playing the saxophone and talks.,is playing a harmonica.,is holding onto his violin.,picks up his flute and plays the drums.,jumps up onto his feet and turns around.,gold0-orig,pos,unl,unl,unl,unl,A man is sitting down playing a saxophone.,He\nanetv_XklHV0q3w40,3241,He stops playing the saxophone and talks. He,stands up and continues playing the saxophone.,puts the glass down and pours the drink into the glass.,\"picks one of the cans fully up in the end, cowers his body against the other.\",looks disappointed and does several hand springs.,is wearing a black and a little bullhorn which is attached to the keyboard and does a hand stand.,gold0-orig,pos,unl,unl,unl,unl,He stops playing the saxophone and talks.,He\nlsmdc1047_Defiance-91512,19648,\"He leads them into a military camp past a soldier on horseback. A middle - aged man with bags under his eyes, a black fur hat and a black leather coat over his coffee uniform,\",emerges from a tent.,\"strides over to the lounge beside a young man, who's seated a deck chair in a nearby room.\",approaches the young man.,stands staring at it.,walks down the sidewalk toward the mounds and outdoor market.,gold0-orig,pos,unl,unl,unl,unl,He leads them into a military camp past a soldier on horseback.,\"A middle - aged man with bags under his eyes, a black fur hat and a black leather coat over his coffee uniform,\"\nlsmdc1047_Defiance-91512,19646,\"Someone nods, and the two of them set off, both wearing caps and scarves wrapped around their necks. A Russian in a gray army coat and fur hat\",steps out from behind a tree.,leans close for their grasping fingers.,is waiting for orcs with guns at longbourn.,enters the house and goes to his bank.,becomes more gloomy.,gold0-orig,pos,unl,unl,unl,pos,\"Someone nods, and the two of them set off, both wearing caps and scarves wrapped around their necks.\",A Russian in a gray army coat and fur hat\nlsmdc1047_Defiance-91512,19642,\"Many of the women with shawls on their heads tramp through the forest, dwarfed by the tall, thin, bare trees. They\",come out onto a meadow of tall grasses wafting in the breeze.,turns to the archway.,\"continue to trudge down the grassy aisle, all are disguised by cars and woods, and others practice with someone.\",\"are some of their faces tossing as trees with big shelves of advanced stone wizards, dozens of trolls and snare signs.\",\"are knocked into the crowd of people, with blocked his way, as someone dodges the flames and the flash mob.\",gold0-reannot,pos,unl,unl,unl,unl,\"Many of the women with shawls on their heads tramp through the forest, dwarfed by the tall, thin, bare trees.\",They\nlsmdc1047_Defiance-91512,19644,\"People, Behind them someone with someone by his side, Lead the way out of the wood. A man\",bites into an apple.,leans into his crystal thick face.,\"holds someone close to him, holding someone's handcuffs arm out on someone's neck.\",fires carpet one back.,runs down the sidewalk.,gold1-reannot,pos,unl,unl,unl,unl,\"People, Behind them someone with someone by his side, Lead the way out of the wood.\",A man\nlsmdc1047_Defiance-91512,19645,\"People huddled on the ground look up at someone, but only someone stands up, draping his machine gun over his shoulder. Someone nods, and the two of them\",\"set off, both wearing caps and scarves wrapped around their necks.\",move happily to their admiration.,sweep the canoe over.,get on their own leg.,,gold0-reannot,pos,unl,unl,unl,n/a,\"People huddled on the ground look up at someone, but only someone stands up, draping his machine gun over his shoulder.\",\"Someone nods, and the two of them\"\nanetv_mnMmGnnbvSk,7296,\"A shoe shine demonstration takes place with a man kneeling in front of a group of students and using a sample shoe as an example. Several people in aprons, then\",kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish.,a band practice the competition.,begin each eating with the sympathetically laugh and admire the medal.,trimmed with a black pumpkin and a table capoeira is shown.,win the ball and begin playing level with each other wearing a hockey setting.,gold0-orig,pos,unl,unl,unl,unl,A shoe shine demonstration takes place with a man kneeling in front of a group of students and using a sample shoe as an example.,\"Several people in aprons, then\"\nanetv_mnMmGnnbvSk,7295,A group of adult students sit in a classroom style room and look to the front of the class as if attending a class and listening intensely. A shoe shine demonstration,takes place with a man kneeling in front of a group of students and using a sample shoe as an example.,is on the screen featured one of the white doors that is striking the desk.,shows how to ward with a ball.,on the fitness electric dangers.,,gold0-orig,pos,unl,unl,unl,n/a,A group of adult students sit in a classroom style room and look to the front of the class as if attending a class and listening intensely.,A shoe shine demonstration\nanetv_mnMmGnnbvSk,7297,\"Several people in aprons, then kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish. The shoes shiners then\",\"stand in unison, with their aprons, and bow and shake hands.\",cleaning the bed and padding with the dirt floor.,both men and the ball are shown with alternating feet using the rags and a man turns softly and gesture to his wife.,the man begins polishing shoes and shoes and shoes.,\"surface motion for a brief dance before they both are shown polishing a red shoe, while the woman says the same.\",gold0-orig,pos,unl,unl,unl,unl,\"Several people in aprons, then kneel before people wearing shoes and shine the people's shoes on red buckets with polishing clothes and polish.\",The shoes shiners then\nlsmdc3015_CHARLIE_ST_CLOUD-684,19911,In town a few pedestrians laze along a sidewalk. Someone,waits on the porch of a modest house with a baseball mitt.,pulls on his radio and all the children arrive at the mall.,\"finds the table and a lock, which rolls as he enters in his doorway.\",\"finds herself on a staircase, then shifts a few times and the curtain dissipates.\",wanders off with his gaze wide away from her.,gold0-reannot,pos,unl,unl,unl,unl,In town a few pedestrians laze along a sidewalk.,Someone\nanetv_mdv8UW_871g,7154,We see the skier without the boat. We,see the boat from above again.,see water and the water skiing.,see the ticker again.,see the starting sequence down the hill.,see the man on the rock face.,gold1-orig,pos,unl,unl,unl,unl,We see the skier without the boat.,We\nanetv_mdv8UW_871g,7153,We see the boat driving as a person jet skis behind it. We,see the skier without the boat.,see the helicopter rolling paris.,see a man riding a plane and using going stick to sled.,see people on the arena with boys riding behind them.,see a lady go down the river and gets her boat and guide her through the water.,gold0-orig,pos,unl,unl,unl,pos,We see the boat driving as a person jet skis behind it.,We\nanetv_mdv8UW_871g,7156,The skier falls into the water. We,see the skier ski and perform 4 flips.,see the person come forward and stand at the bottom.,see the title screen.,also an jet skiing down the river over.,,gold0-orig,pos,unl,unl,pos,n/a,The skier falls into the water.,We\nanetv_mdv8UW_871g,7157,We see the skier ski and perform 4 flips. We,see the skier ski.,see a man seated on a couch holding the receiver together.,see the boy sprinting down the road.,see two men riding on the river in rafts.,see rafts from the river on the mountains.,gold1-orig,pos,unl,unl,unl,unl,We see the skier ski and perform 4 flips.,We\nanetv_mdv8UW_871g,7155,We see the boat from above again. The skier,falls into the water.,runs around with the pole.,is putting a green blue ball in the water and picks the ax.,falls off the boat.,,gold1-orig,pos,unl,unl,unl,n/a,We see the boat from above again.,The skier\nanetv_mdv8UW_871g,7152,We see a boat pulling out of the dock. We,see the boat driving as a person jet skis behind it.,see the lady sail paper in the opening.,see people wearing rafts on a raft and a man in yellow walks through the waters.,see the people kayaking on the water.,see the ending credits for the clip.,gold1-reannot,pos,unl,unl,pos,pos,We see a boat pulling out of the dock.,We\nanetv_mdv8UW_871g,7159,We see the skier swim towards the boat. A person in the boat,raises their hands in the air.,\"gets right to the shore, right next to him.\",brings a sharp board to a stop on a diving board in the pool.,sail safely towards the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,We see the skier swim towards the boat.,A person in the boat\nanetv_drVqGhjI558,16004,A man is seen sitting at several tables and peeling potatoes while the camera looks around in fast motion. Another person is seen peeling potatoes and the man,walks back over to the table to continue peeling.,sharpens his knife with the blades as well as speaking to the camera and shows commentary about the next.,puts ice cubes into the plates.,rubs up their leg.,peeling potatoes and pushing the cat around.,gold0-orig,pos,unl,unl,unl,unl,A man is seen sitting at several tables and peeling potatoes while the camera looks around in fast motion.,Another person is seen peeling potatoes and the man\nlsmdc1046_Australia-90777,2940,\"They down the powerful brew, gasping at the strength. They\",\"laugh, staring into each other's eyes.\",\"surround the germans, staying under someone's watchful gaze.\",\"must be tall and heavy, as the bushy man dives into a smaller cabinet.\",hide in the prison offices.,use a rope to catch them.,gold0-orig,pos,unl,pos,pos,pos,\"They down the powerful brew, gasping at the strength.\",They\nlsmdc1046_Australia-90777,2939,\"She smiles with pride as two glasses are placed on the bar, and filled with Poor Fella Rum. They down the powerful brew,\",gasping at the strength.,\"too, adding more buildings.\",revealing them in formation.,\"sit across the chair, swing, and applauding.\",,gold0-orig,pos,unl,unl,pos,n/a,\"She smiles with pride as two glasses are placed on the bar, and filled with Poor Fella Rum.\",\"They down the powerful brew,\"\nlsmdc1046_Australia-90777,2944,\"Someone stands, shoulders slumped, by the phone. Someone, with tears of joy in her eyes,\",throws her arms around someone.,starts to open her arms.,gets up to walk away.,returns to her room.,gets up.,gold1-orig,pos,pos,pos,pos,pos,\"Someone stands, shoulders slumped, by the phone.\",\"Someone, with tears of joy in her eyes,\"\nanetv_UVxXr_mh5BM,16550,A picture of a young lady's bun is shown and then the lady then appears. She,begins by braiding one side of her hair and then twists it down and does the same thing on the other side.,\"tickles the boy, combing her hair with a wrap.\",begin to make various places in paper.,begins eating the peanut butter along with her right hand.,,gold0-orig,pos,unl,unl,pos,n/a,A picture of a young lady's bun is shown and then the lady then appears.,She\nanetv_UVxXr_mh5BM,16552,\"With one twist, she pulls it up and bobby pins it together with the other side following. The hair style is then complete and she more pictures\",are shown again of the finish product.,take her out at the end.,are shown of the clip in different clips.,are also shown in slow motion.,,gold0-orig,pos,unl,unl,unl,n/a,\"With one twist, she pulls it up and bobby pins it together with the other side following.\",The hair style is then complete and she more pictures\nanetv_UVxXr_mh5BM,16551,\"She begins by braiding one side of her hair and then twists it down and does the same thing on the other side. With one twist, she pulls it up and\",bobby pins it together with the other side following.,picks up the stunning smile and takes it down.,adds it down to her final combs.,looks off in the end.,,gold1-orig,pos,unl,unl,unl,n/a,She begins by braiding one side of her hair and then twists it down and does the same thing on the other side.,\"With one twist, she pulls it up and\"\nanetv_iuVi8QAWfCI,18057,\"A woman introduces her home decor video, standing next to a chair. She first\",scrubs the dirt from the chair with a sponge.,places a white shoe on the side of her fingernails.,takes several shots from the horse.,applies more fencers explaining and showing how to alternate clothes.,talks about how to blow it out into a young woman's hair.,gold0-orig,pos,unl,unl,unl,unl,\"A woman introduces her home decor video, standing next to a chair.\",She first\nanetv_iuVi8QAWfCI,18058,\"She first scrubs the dirt from the chair with a sponge. Next, she\",applies a silver paint to the chair.,\"puts a cup of a man wearing yellow cloth on it, cleaning eyeliner on the clean blots with a counter.\",takes off a pair of shoes and puts them down.,vacuums it and returns to the stands and testing with the paper.,,gold0-orig,pos,unl,unl,unl,n/a,She first scrubs the dirt from the chair with a sponge.,\"Next, she\"\nlsmdc3040_JULIE_AND_JULIA-17810,3547,\"A chef with a snowy mustache looks up, and his male students turn. Later, we\",\"move down a long table, watching masculine hands rapidly chop onions.\",see some movements being caught.,peer up at a window through the foyer in the hallway.,\"pass the farm woman, younger into the dining room area.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A chef with a snowy mustache looks up, and his male students turn.\",\"Later, we\"\nlsmdc3040_JULIE_AND_JULIA-17810,3548,\"Later, we move down a long table, watching masculine hands rapidly chop onions. Someone's hands\",tentatively saw with her knife into an onion.,\"drops, leaving her daughters outside.\",\"drifts in the water, but stops level and peeks around the glowers until he can.\",secures the box to make a hopeless skip.,,gold1-orig,pos,unl,unl,unl,n/a,\"Later, we move down a long table, watching masculine hands rapidly chop onions.\",Someone's hands\nlsmdc3040_JULIE_AND_JULIA-17810,3553,Someone adds beaten eggs and shakes her pan back and forth over a gas flame. Her fellow students,add their eggs too.,steps cross behind her and lounge in a seat.,cheer nervously with some score.,take cover behind the cave.,,gold1-orig,pos,unl,unl,unl,n/a,Someone adds beaten eggs and shakes her pan back and forth over a gas flame.,Her fellow students\nlsmdc3040_JULIE_AND_JULIA-17810,3552,\"Now in class, she finishes chopping first. Someone\",adds beaten eggs and shakes her pan back and forth over a gas flame.,stroll toward home class.,\"joins her father, woman.\",turns and pauses before backing off.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now in class, she finishes chopping first.\",Someone\nlsmdc3040_JULIE_AND_JULIA-17810,3555,\"Straightening, the aspiring chef lifts her pan. She\",\"gives it a small upward jerk, and flips the omelet.\",feeds the balls and grocer.,\"guides some visitors to their table, reaches for her clothing.\",\"cocks her head low, her face hardens, her mouth filling out a corpse.\",kisses someone on his cheek.,gold0-orig,pos,unl,unl,unl,unl,\"Straightening, the aspiring chef lifts her pan.\",She\nlsmdc3040_JULIE_AND_JULIA-17810,3556,\"She gives it a small upward jerk, and flips the omelet. Madame someone\",leaves with an indignant huff.,completes a bite of her mayonnaise.,turns the mic down and removes his shoes.,returns the blank stare and bites.,steps away and faces a chocolate egg.,gold1-orig,pos,unl,unl,unl,unl,\"She gives it a small upward jerk, and flips the omelet.\",Madame someone\nlsmdc3040_JULIE_AND_JULIA-17810,3550,Someone notices the others watching. Someone,\"appears in the doorway, recoils and rubs his eyes.\",looks alongside his barn.,\"shrugs her hands, then walks toward the stands.\",pulls up to the table.,looks after him with his earpiece in his hands.,gold0-orig,pos,unl,unl,pos,pos,Someone notices the others watching.,Someone\nlsmdc3040_JULIE_AND_JULIA-17810,3551,\"Someone appears in the doorway, recoils and rubs his eyes. With an amused smile, someone\",shakes his head and leaves.,approaches someone and smiles.,looks over as the picture turns in its head and pointed gently.,rises in the seat in the glass.,tucks the hat back on his shoulder and hurries off.,gold1-orig,pos,unl,unl,unl,pos,\"Someone appears in the doorway, recoils and rubs his eyes.\",\"With an amused smile, someone\"\nlsmdc3040_JULIE_AND_JULIA-17810,3554,Her fellow students add their eggs too. Madame someone,\"enters, folds her arms and watches someone with a sour glare.\",uses the phone to reveal a pink pot next to an electric recorder drummer.,moves to the others who office scratch on process.,looks at someone who snatches his hat.,steps out of the store and observes someone.,gold0-orig,pos,unl,unl,pos,pos,Her fellow students add their eggs too.,Madame someone\nlsmdc3040_JULIE_AND_JULIA-17810,3549,\"Her classmates stare, and the chef approaches. Someone\",notices the others watching.,sits at the front seat of a chair.,wiggles her arm to capture the clerk's glasses.,lights the cigarette as someone blasts away.,puts her ponytail back and turns.,gold1-reannot,pos,unl,unl,unl,pos,\"Her classmates stare, and the chef approaches.\",Someone\nlsmdc3048_LITTLE_FOCKERS-23026,6163,\"Now, a handful of children play in the courtyard of a glass - paneled building. Inside an auditorium, a blonde woman\",grins at the audience as she strolls on stage.,holds a sign for a statue in the clock tower.,pushed a large group of kids in the background.,brings dinner plates on a table.,opens the door for someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, a handful of children play in the courtyard of a glass - paneled building.\",\"Inside an auditorium, a blonde woman\"\nanetv_01_BrVxYsE0,8633,He then puts ingredients into a glass. He,pours alcohol into the mix.,continues talking before holding it down while stepping it with a plate.,mixes more ingredients mixed together in her bowl.,clinks the jack around the glass and pours them into a glass.,opens the door and begins to demonstrate.,gold0-orig,pos,unl,pos,pos,pos,He then puts ingredients into a glass.,He\nanetv_01_BrVxYsE0,13231,A man is seen speaking to the camera and leads into him putting out a glass. The man,mixes several ingredients together into the glass and presents a drink in the end.,pours water into the glass and begins pouring the contents into a glass.,puts it all into water continuously and continues speaking.,holds up the paint and begins cutting the half of the wood.,continues to speak while he demonstrates how to properly applying plaster on the mantelpiece and using it to fit in the end.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and leads into him putting out a glass.,The man\nanetv_01_BrVxYsE0,8631,A man is shown at a bar. He,is then talking to a camera.,is preparing to throw in several times in a field.,\"is being interviewed, and shows the time of skiing.\",is showing how to shaker off food.,is shown again lifting weights.,gold1-reannot,pos,unl,unl,unl,pos,A man is shown at a bar.,He\nanetv_VRiUhsafjRM,1051,A boy washes the dishes. The cookies,are put in an oven.,cover his bowls of cookies.,are open and bottles are laid out in the fridge.,is displaying a title card.,are then served and the men dodge shredded sandwich.,gold0-orig,pos,unl,unl,unl,unl,A boy washes the dishes.,The cookies\nanetv_VRiUhsafjRM,1050,Someone stirs the cookie dough in a bowl. The dough,is put on a sheet.,is put on a baking sheet.,is put in the oven.,is placed in a set dough over a bowl of cake.,is placed into the oven.,gold1-orig,pos,pos,pos,pos,pos,Someone stirs the cookie dough in a bowl.,The dough\nanetv_VRiUhsafjRM,1054,A poked cookie breaks apart. A boy,shakes his head yes and plays with a big black dog.,talks and we see delightedly animated screen.,is hurled high into the air as it sails towards the fire.,enters frame on the op throne.,,gold1-orig,pos,unl,unl,unl,n/a,A poked cookie breaks apart.,A boy\nanetv_VRiUhsafjRM,1052,The cookies are put in an oven. A boy,plays a guitar the other boy sings.,brings cake while salt in the tray.,sits in the doll while chewing and petting his cattle.,adds supplies to a bowl bowl.,,gold0-orig,pos,unl,unl,pos,n/a,The cookies are put in an oven.,A boy\nanetv_VRiUhsafjRM,1046,A white screen then two boys in the kitchen. We,see a counter with ingredient.,see people playing while the camera speaks.,see the girls knitting volleyball.,see two men playing the harmonica.,see a circular change of the machine.,gold0-orig,pos,unl,unl,unl,unl,A white screen then two boys in the kitchen.,We\nanetv_VRiUhsafjRM,1047,We see a counter with ingredient. The boys then,mix ingredients in a bowl.,mixes detergent and soda together.,add glue to the mix.,mixes cubes into them.,,gold1-orig,pos,unl,unl,unl,n/a,We see a counter with ingredient.,The boys then\nanetv_VRiUhsafjRM,1049,We see a person shift flour in a bowl. Someone,stirs the cookie dough in a bowl.,adds chicken to the pot and cuts the face of the pumpkin.,\", the boy gives the swimmer and a man diving.\",paste on the pumpkin.,starts cooking and finishes the garlic.,gold0-reannot,pos,unl,unl,unl,pos,We see a person shift flour in a bowl.,Someone\nanetv_VRiUhsafjRM,1053,A boy plays a guitar the other boy sings. Each boy eats a cookie and we,see them come out of the oven.,see a mountain of spiders.,see a band on the ground.,see the camera in the.,sees the kids laying down youths.,gold0-reannot,pos,unl,unl,unl,unl,A boy plays a guitar the other boy sings.,Each boy eats a cookie and we\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17867,\"Someone battles the uruk - hai, amongst the pillars and blocks of Amon Hen. Someone\",\"scrambles down the hillside, away from the fight.\",selects someone 'cage.,sprints down the an - gloomy staircase.,\"glides down the corridor corridors, accompanied by someone.\",is slumped behind someone.,gold1-orig,pos,unl,unl,unl,pos,\"Someone battles the uruk - hai, amongst the pillars and blocks of Amon Hen.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17865,Someone backs away into the trees. as 200 uruk - hai swarm onto Amon Hen behind someone! Someone,looks around for someone.,\"looks around about at a wide tower of the covered warriors, containing two giant, enormous warriors - like twin engines.\",\"bursts through the murky the desert ramp, running and clearing it across its land.\",glances up at the chasing guards.,bravely to the ground with someone in his red - back robes.,gold1-orig,pos,unl,unl,unl,unl,Someone backs away into the trees. as 200 uruk - hai swarm onto Amon Hen behind someone!,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17873,Someone stumbles and falls. quickly he crawls behind a tree. above Someone,\"turns to see people hidden in a hollow, a few feet away.\",lies a man in a white tank top and irons a white sweater.,\", roofers dangle by a tree carving huge orcs.\",falls to a tree.,\"'s house, a hooded figure looms out of the newly open window.\",gold0-orig,pos,unl,unl,unl,unl,Someone stumbles and falls. quickly he crawls behind a tree. above,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17875,Someone's eyes meet someone's. Someone,stands and makes a move toward someone.,picks up the bodhi receiver.,sees the photos on a computer.,blinks and looks back over his shoulder.,twitches his sad eyes.,gold0-orig,pos,unl,unl,pos,pos,Someone's eyes meet someone's.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17870,Elven arrows smash into the uruk - hai. Someone,\"races out of the woods, firing his bow.\",\"come right alongside the car, smiling.\",knocks someone's 200 into the goal.,turns to a baseball who draws up and holds another duck.,stops shielding the area and looks up at the towering iraqi.,gold0-orig,pos,unl,unl,unl,pos,Elven arrows smash into the uruk - hai.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17868,\"Someone scrambles down the hillside, away from the fight. Someone\",is darting down the steep hillside as heave feet thunder down behind him.,kisses the boy with his mouth quivering.,hovers on the head of the mohawked vintage.,brings someone and someone in.,smashes on the ground almost from the front.,gold1-orig,pos,unl,unl,unl,unl,\"Someone scrambles down the hillside, away from the fight.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17874,\"Someone turns to see people hidden in a hollow, a few feet away. Someone\",looks at his friends.,\"ambles into the study, where someone enters.\",glances back at someone as he moves toward the door.,glances over his shoulder at the wounded pig.,sits and aims his wand.,gold0-orig,pos,unl,unl,unl,pos,\"Someone turns to see people hidden in a hollow, a few feet away.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17872,\"Someone leaps into the battle, wielding his might axe. Someone stumbles and falls. quickly he\",crawls behind a tree.,grabs someone in the throat.,sweeps his hand upward.,tries to get free.,\"hurries toward a chain ridden body, where someone shines his spear.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone leaps into the battle, wielding his might axe.\",Someone stumbles and falls. quickly he\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60433,17871,\"Someone races out of the woods, firing his bow. Someone\",\"leaps into the battle, wielding his might axe.\",comes away and snatches his wand.,grabs someone's arm as they blow.,turns from the hole and fires.,glows from his sunglasses and spreads his cape wide.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone races out of the woods, firing his bow.\",Someone\nanetv_MfFM_a26bR8,17688,A person is seen riding around on the horse in a closed in area. The camera,continues to follow him riding around the area galloping around.,pans all around the man while people walk around him in various area while being interviewed on the camel.,pans up to the woman smiling as she paddles back.,pans around the machine and shows around as well as people standing on the horse.,is then seen moving up and down as well as the mounting.,gold1-orig,pos,unl,unl,unl,unl,A person is seen riding around on the horse in a closed in area.,The camera\nlsmdc3081_THOR-37579,18404,Snow blows around a city of towering crystalline structures. A warrior,picks up the glowing box.,\"lies on top of a rocky rim covered hill, clutching old metal casing.\",rode with a construction guide.,lies on the floor.,,gold1-orig,pos,unl,unl,unl,n/a,Snow blows around a city of towering crystalline structures.,A warrior\nlsmdc3081_THOR-37579,18401,\"Smoke clears to reveal a vast army of armored warriors wearing capes and holding spears. Separated by a few dozen yards, the leader of the warriors, a grey bearded man wearing a helmet with twisting horns,\",\"faces the red eyed, blue skinned leader of the frost giants.\",\"looks into a green courtyard, passing through the trees over a low stone head.\",runs into the library and stares at the iraqi man.,\"leads the three men in the car onto a road, moving slowly towards the flood sign.\",stares in the giant's direction as it rocks around the side of the hanged man with an maximilian rifle on its elbows.,gold0-orig,pos,unl,unl,unl,pos,Smoke clears to reveal a vast army of armored warriors wearing capes and holding spears.,\"Separated by a few dozen yards, the leader of the warriors, a grey bearded man wearing a helmet with twisting horns,\"\nlsmdc3081_THOR-37579,18399,Swirling winds sweep across the village splintering homes and extinguishing fires. A woman,clutches a child to herself as they freeze solid.,accepts an emergency foam slices with her life belt.,\"stands on a glamorous hanger, pulling a shawl.\",\"surrounds a street with dark, an armored suit, and i glimpse camouflage and hypodermic francisco.\",quickens the rims of her sleeve silver and red wine.,gold0-orig,pos,unl,unl,unl,unl,Swirling winds sweep across the village splintering homes and extinguishing fires.,A woman\nlsmdc3081_THOR-37579,18403,\"The giant's leader opens his box freezing two warriors solid, and then smashes them to pieces. Snow\",blows around a city of towering crystalline structures.,is searching on the mound.,see someone's nose.,peers into the ship.,crouches to the roof.,gold0-orig,pos,unl,unl,unl,pos,\"The giant's leader opens his box freezing two warriors solid, and then smashes them to pieces.\",Snow\nlsmdc3081_THOR-37579,18396,Villagers stare up at the night sky. Flashes of white light,shoot down beside a distant mountain.,flashes across the sky as the ship balustrade sails into a clearing.,filters out from the sky and hits the streets of manhattan.,rise into the sky.,shines over the slopes of mount doom.,gold0-orig,pos,unl,unl,pos,pos,Villagers stare up at the night sky.,Flashes of white light\nlsmdc3081_THOR-37579,18398,\"At the head of an army of bare chested humanoids, one frost giant opens a box which emits an icy blue light. Swirling winds\",sweep across the village splintering homes and extinguishing fires.,spell as he crashes over the dead bodies.,steaming in the benignly modern light.,draw the straw to his lips.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the head of an army of bare chested humanoids, one frost giant opens a box which emits an icy blue light.\",Swirling winds\nlsmdc3081_THOR-37579,18397,\"Flashes of white light shoot down beside a distant mountain. At the head of an army of bare chested humanoids, one frost giant\",opens a box which emits an icy blue light.,hangs from a branch over the tattered landscape.,comes down from the reptilian tentacles as it floats closer.,sends metal pieces over someone's head and nearly someone who disappears.,,gold0-orig,pos,unl,unl,pos,n/a,Flashes of white light shoot down beside a distant mountain.,\"At the head of an army of bare chested humanoids, one frost giant\"\nlsmdc3081_THOR-37579,18400,A woman clutches a child to herself as they freeze solid. Smoke,clears to reveal a vast army of armored warriors wearing capes and holding spears.,\", we see.\",swing the saucepan after she turns away.,\"trapped by a chain, the breeze blows her hair.\",,gold0-reannot,pos,unl,unl,unl,n/a,A woman clutches a child to herself as they freeze solid.,Smoke\nlsmdc3081_THOR-37579,18402,The warrior leader skewers a giant nearly twice his own height and flings him away. The giant's leader,\"opens his box freezing two warriors solid, and then smashes them to pieces.\",\"hurries out of the lake, sitting on a boulder and rolls him back on the ground and pretends to participate.\",forces the women into near empty alcove.,whirls in the air like a high hammer throw.,,gold1-reannot,pos,unl,unl,pos,n/a,The warrior leader skewers a giant nearly twice his own height and flings him away.,The giant's leader\nanetv_x0HMqVvqHJE,11853,Two referees runs about and down the field with the players. Other players,watch from the sideline near a fence.,are close shot to spread that you can go.,are shown wearing blue uniforms in need of scoring.,walk through the woods.,dressed in cowboy shirts throws four tennis balls.,gold0-orig,pos,unl,unl,unl,unl,Two referees runs about and down the field with the players.,Other players\nanetv_x0HMqVvqHJE,11854,Other players watch from the sideline near a fence. A group of people keeping score,sit at a table on the sideline.,vaults onto the great runway.,at his curling area as the group hitting player score over to opponents.,grabs each other and snowboards while one scores a final run through goal circles.,in the field by jumping onto a rope.,gold0-orig,pos,unl,unl,unl,unl,Other players watch from the sideline near a fence.,A group of people keeping score\nanetv_x0HMqVvqHJE,11851,\"Many females, some in blue shirts and some in white shirts, run around on a field playing a game. A few people\",watch from the bleachers in the background.,\"get out and end up to the throw, continue traveling.\",are shooting from the turn before it starts.,run toward anything in the field very well.,\"lead a person, then push a person down toward the left.\",gold0-orig,pos,unl,unl,unl,unl,\"Many females, some in blue shirts and some in white shirts, run around on a field playing a game.\",A few people\nanetv_x0HMqVvqHJE,11852,A few people watch from the bleachers in the background. Two referees,runs about and down the field with the players.,are trying to hit a large straight ball.,walk back to the group to dance.,are in a room and practicing two sumo boxing.,run out and kick the team up.,gold0-reannot,pos,unl,unl,unl,unl,A few people watch from the bleachers in the background.,Two referees\nanetv_x0HMqVvqHJE,11855,Some of the people watching from the bleachers are standing now. A man in a blue sweatshirt,walks on the sideline.,sits down and starts to break up the bars and then he drops his sticks and they suddenly bonds.,begins surfing along several waves.,picks up a coat and begins grooming the dogs for the dog.,jumps wearing a fencing uniform.,gold0-reannot,pos,unl,unl,unl,unl,Some of the people watching from the bleachers are standing now.,A man in a blue sweatshirt\nanetv_PEpfA3L4m20,17686,\"The spark belongs to a man with a torch in his hand and firing away at an object. Although the room is extremely dark, when the fire ignites you\",can see that the building is a silver warehouse and a small fan hanging from the ceiling.,can create a sense of shape and push it on until it stops.,\", someone makes a break.\",\"the whole way, the young smoke suddenly comes out of them.\",can see the man in the fight taking it over.,gold0-orig,pos,unl,unl,unl,unl,The spark belongs to a man with a torch in his hand and firing away at an object.,\"Although the room is extremely dark, when the fire ignites you\"\nanetv_PEpfA3L4m20,17685,A dark video is visible before all of a sudden a big spark appears in a room. The spark,belongs to a man with a torch in his hand and firing away at an object.,is used by leaving the object behind.,is all brighter now.,changes and another person appears behind him and the crowd begin to gather around his body.,fades from the bottom of the surface where the person goes.,gold0-orig,pos,unl,pos,pos,pos,A dark video is visible before all of a sudden a big spark appears in a room.,The spark\nanetv_PEpfA3L4m20,10655,Man is wearing a helmet welding in a suface. welder,is holding a welding machine.,is talking to the camera in a metal gym room.,is a welding tool on a field.,is showing a picture of a student.,is standing over a christmas tree outside a blue road.,gold1-reannot,pos,unl,unl,unl,unl,Man is wearing a helmet welding in a suface.,welder\nanetv_uDqnGmLJyao,15427,A woman is talking to the camera. She,shows how to hang a border along a wall in a living room.,starts playing a game on stage.,has a coat on and is smoking something on her cigarette.,takes a cigarette out of a bottle and holds it to her ear.,is standing in front of a bookshelf watching people from the sides.,gold1-orig,pos,unl,unl,unl,pos,A woman is talking to the camera.,She\nanetv_uDqnGmLJyao,15428,She shows how to hang a border along a wall in a living room. She then,goes back to talking to the camera.,demonstrates how to play an accordian.,removes a piece of wallpaper.,irons the wallpaper in the room.,uses the equipment to scratch the wallpaper and puts it in the drawer.,gold0-orig,pos,unl,unl,unl,unl,She shows how to hang a border along a wall in a living room.,She then\nlsmdc3061_SNOW_FLOWER-30292,13204,\"Someone sighs gravely, her face still bruised. Someone\",faces her and takes her hand.,kisses his wife shoulder twice.,picks up the parcel.,sits on a chair.,\"gazes at him, then drops her gaze.\",gold0-orig,pos,pos,pos,pos,pos,\"Someone sighs gravely, her face still bruised.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13208,\"Someone gives a solemn, understanding nod, then looks down at their clasped hands. Someone\",shuffles around to face her.,\"smiles fondly, his eyes brown with sweat.\",begins to show photos as he talked to her.,\"locks away, smiling.\",,gold0-orig,pos,pos,pos,pos,n/a,\"Someone gives a solemn, understanding nod, then looks down at their clasped hands.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13206,\"Someone's eyes blink heavily. Someone listens with a gentle gaze, her head\",tilted to one side.,\"slack, her eyes wide.\",resting against the wall.,cast against her shoulder.,,gold0-orig,pos,unl,pos,pos,n/a,Someone's eyes blink heavily.,\"Someone listens with a gentle gaze, her head\"\nlsmdc3061_SNOW_FLOWER-30292,13207,\"Someone listens with a gentle gaze, her head tilted to one side. Someone\",\"gives a solemn, understanding nod, then looks down at their clasped hands.\",finds a pair of shiny lame fabric.,'s inviting hand gives a satisfied smile.,\"rests a hand on someone's shoulder as someone's gaze sweeps along the tile, barely angled half.\",tears stream down her cheeks.,gold0-orig,pos,unl,unl,unl,unl,\"Someone listens with a gentle gaze, her head tilted to one side.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13209,\"Hand in hand, they leave the doorway. Someone\",displays a wounded scowl.,'s assistant reaches for the egg and pushes it across the floor.,gets up from the desk and checks his notebook.,\"lands in a cling elevator, then collapses.\",trots across the room towards someone before noticing someone.,gold1-orig,pos,unl,pos,pos,pos,\"Hand in hand, they leave the doorway.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13200,\"Someone stares at her with disbelief, then shakes her head. Someone\",\"withdraws gently, her gaze softening.\",flips through her file and quickly takes off her shirt.,tapes her left hand off her arm and looks away from the camera.,watches awkwardly as she notices his robe.,avoids a stunned gaze.,gold0-orig,pos,unl,unl,pos,pos,\"Someone stares at her with disbelief, then shakes her head.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13203,\"Back at the butcher's house in the 19th century, someone opens a heavy pair of wooden doors, then accompanies someone as she shuffles out with a somber expression. Someone\",\"sighs gravely, her face still bruised.\",puts his left hand on his wand and proceeds to pick someone up.,sets the sketch down and looks at a photo screen.,licks his lips then turns to someone.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Back at the butcher's house in the 19th century, someone opens a heavy pair of wooden doors, then accompanies someone as she shuffles out with a somber expression.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13201,\"Someone withdraws gently, her gaze softening. Someone\",\"marches down the hallway, her head bowed.\",approaches a place apart and take a brush from a woman.,\"returns her gaze to someone, who sits back and closes her fists.\",\"leans backward, his head resting on the table.\",\"lifts her head to him, then give a shrug and cries.\",gold0-reannot,pos,unl,pos,pos,pos,\"Someone withdraws gently, her gaze softening.\",Someone\nlsmdc3061_SNOW_FLOWER-30292,13210,\"Someone halts, her brow knitted. Someone\",\"stares at her, then timidly works her full lips.\",\"shifts someone and smiles at the passing train, who reaches back to someone.\",\"begins to blow open her hair, revealing her face.\",switches to the light and starts backing away.,removes his stud hat.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone halts, her brow knitted.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42793,226,Someone and someone swap looks. She,smiles at the staring slack - jawed agent with his face.,spots him full in the mouth.,presents a picture of someone and someone.,\"nods, then smiles.\",walks back to the door.,gold1-orig,pos,unl,pos,pos,pos,Someone and someone swap looks.,She\nanetv_j8lH0saRXl4,14585,\"A hand holding an object touch the ear of the boy. The boy stand and leave, then a naked man\",appears holding a rod.,stands in front of him.,appears at a sink.,begins talking to the camera.,helps him pull on the rope.,gold0-orig,pos,unl,unl,unl,unl,A hand holding an object touch the ear of the boy.,\"The boy stand and leave, then a naked man\"\nanetv_j8lH0saRXl4,14584,A child solves a cube puzzle while holding a basketball. A hand,holding an object touch the ear of the boy.,stands before attempting to solve the cube with a pencil.,walks with the girl and looks around.,flies out and speaks into the solo cup.,gestures with a disk of black screen.,gold0-orig,pos,unl,unl,unl,pos,A child solves a cube puzzle while holding a basketball.,A hand\nanetv_j8lH0saRXl4,3285,A boy is shown holding a rubix cube and smiling to the camera. The boy then,begins solving the rubix cube.,shows the piece of paper and presenting it to the camera.,puts the cube onto the large man who also drops the cube on a desk while the other swipes the shoes on the table.,begins to solve the cube and end by speaking to the camera.,begins attempting to solve rubik's cube while looking to the camera.,gold0-orig,pos,unl,unl,pos,pos,A boy is shown holding a rubix cube and smiling to the camera.,The boy then\nanetv_j8lH0saRXl4,3286,The boy then begins solving the rubix cube. He,continues attempting to solve when a person hits him in the face.,pours an energy dip into a container of blue and then places it to the drain to add more water to make it spill.,puts them on a board and puts it into two friends.,goes to gray before he finishes.,lifts the cube and stands down on top of it.,gold1-orig,pos,unl,unl,unl,pos,The boy then begins solving the rubix cube.,He\nanetv_XKA2W2735WM,14825,A man cross the street holding a small flag and extend his hand. A group of soldiers,holds rifles and flags on front a black car.,hold a rope at a pole and bend in front of the man.,explode adn people standing at the gate with medals march down on grass.,sit in the snow on a man walking past the black and white roof.,gather in a erupt showing the locations of the people and countries for dance.,gold1-orig,pos,unl,unl,unl,unl,A man cross the street holding a small flag and extend his hand.,A group of soldiers\nanetv_XKA2W2735WM,14824,People watch a parade where people walk on front a marching band holding a banner and waving the viewers. A man,cross the street holding a small flag and extend his hand.,speaks in front of a piano and turns around on the side and is diving about him in tai chi.,\"is shown, dressed in a panama hat and outfit.\",takes a selfie while on video footage of the sun playing in the building.,is shown on the podium.,gold1-orig,pos,unl,unl,unl,pos,People watch a parade where people walk on front a marching band holding a banner and waving the viewers.,A man\nanetv_XKA2W2735WM,14826,A group of soldiers holds rifles and flags on front a black car. A veteran,make the military salute.,raps on the brick wall.,and one man pump skulls from a hot rifle and shaped holes.,officer holds two duty tickets.,,gold0-orig,pos,unl,unl,pos,n/a,A group of soldiers holds rifles and flags on front a black car.,A veteran\nanetv_0GpNcvAVWVg,6052,The boy gets off the swing and we follow him to the slide. The boy,finishes sliding and goes to a different part of the park and plays around.,swing at a pinata with his hands and head as he rakes the other boy away.,\"continues eating and talking, smiling happily.\",sneaks on and tries to keep his face upright.,puts his back on the dog as he swings on the swings.,gold1-orig,pos,unl,unl,unl,unl,The boy gets off the swing and we follow him to the slide.,The boy\nanetv_0GpNcvAVWVg,6053,The boy finishes sliding and goes to a different part of the park and plays around. The boy,slides and falls on the bridge before sliding down.,\"finishes diving, and a series of dark divers appear running around him.\",does a few flips and falls off the grass.,looks very happy as some group of young rafters ride around as spectators drive to the fence.,,gold0-orig,pos,unl,unl,unl,n/a,The boy finishes sliding and goes to a different part of the park and plays around.,The boy\nanetv_0GpNcvAVWVg,6055,He plays with the large swing with another kid. We,see the end screen.,leave the sand on windows on a building.,\"a kid hits the swing in the playground, flipping using the bars to find one end of the swing.\",\"play barbecue again for awhile, then he is playing again making fast progress.\",,gold0-orig,pos,unl,unl,unl,n/a,He plays with the large swing with another kid.,We\nanetv_0GpNcvAVWVg,6054,The boy slides and falls on the bridge before sliding down. He,plays with the large swing with another kid.,get and fall across a bridge.,gets in the ring and talks to someone in the crowd.,\"stands just beneath his suit, and gently lifts his back.\",drives on another slope with a baby in tow.,gold0-orig,pos,unl,unl,unl,unl,The boy slides and falls on the bridge before sliding down.,He\nanetv_0GpNcvAVWVg,6051,We see kids playing at the playground. The boy gets off the swing and we,follow him to the slide.,see the boy watching the boy from.,hear a little kid at work.,talk to the boy sitting on the floor.,return to the man.,gold1-orig,pos,unl,unl,unl,unl,We see kids playing at the playground.,The boy gets off the swing and we\nlsmdc1006_Slumdog_Millionaire-73551,2264,\"The host turns to someone, standing in the wings of the studio. Someone and the host\",walk to their chairs positioned at the center of the studio stage.,step out of the dining room.,\"move away and place their glasses beneath him, then clasps their hands together.\",return with a smile.,,gold0-orig,pos,unl,unl,pos,n/a,\"The host turns to someone, standing in the wings of the studio.\",Someone and the host\nlsmdc1006_Slumdog_Millionaire-73551,2259,\"In an interrogation room, a corpulent policeman blows cigarette smoke across the table, into the face of a terrified, sweating, young, male prisoner. The prisoner, someone,\",blinks rapidly as the smoke stings his eyes.,is asked to see the action.,is to dance with someone.,looks skywards through the binoculars at the sound of the lightning.,sits alone down the staircase to where the flaming barrel approaches.,gold0-orig,pos,unl,unl,unl,unl,\"In an interrogation room, a corpulent policeman blows cigarette smoke across the table, into the face of a terrified, sweating, young, male prisoner.\",\"The prisoner, someone,\"\nlsmdc1006_Slumdog_Millionaire-73551,2263,Hands scatter Rupee notes onto the floor. The host,\"turns to someone, standing in the wings of the studio.\",records a graphic of the appropriate space and withdraws a copy of the newspaper.,stops playing the ensemble.,faces the faces of someone and the germans.,,gold1-orig,pos,unl,unl,pos,n/a,Hands scatter Rupee notes onto the floor.,The host\nlsmdc1006_Slumdog_Millionaire-73551,2260,\"The prisoner, someone, blinks rapidly as the smoke stings his eyes. The policeman suddenly\",lunges across the table.,\"turns, suspended in the air with someone fallen over and unconscious.\",turns and hugs her.,looks through someone.,becomes clouded and stops to speak.,gold0-orig,pos,unl,unl,unl,unl,\"The prisoner, someone, blinks rapidly as the smoke stings his eyes.\",The policeman suddenly\nlsmdc1006_Slumdog_Millionaire-73551,2261,The policeman suddenly lunges across the table. A question,appears on the screen.,emerges from a guard.,struck him in the arm.,come from the woman's hand.,appears on the screens behind them.,gold0-orig,pos,unl,unl,unl,pos,The policeman suddenly lunges across the table.,A question\nlsmdc1006_Slumdog_Millionaire-73551,2262,A question appears on the screen. Hands,scatter rupee notes onto the floor.,sit on the other side of the room.,read the half - photos.,look back at him.,towering over the page.,gold0-reannot,pos,unl,unl,unl,unl,A question appears on the screen.,Hands\nanetv_d6uMS_ZgMg4,10589,A person is seen adjusting the settings of the bike as well as riding around and drinking water. More shots,are shown of the woman adjusting the machine as well as rolling it away and continuing to ride.,are shown of people riding on camels and is shown taking them out afterwards.,are shown of people riding around and end by taking the tire and getting him into the pool.,are shown of the people riding on top of the camera and riding out soaked again.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen adjusting the settings of the bike as well as riding around and drinking water.,More shots\nanetv_d6uMS_ZgMg4,10588,A camera pans all around a piece of exercise equipment followed by a woman riding on it. A person,is seen adjusting the settings of the bike as well as riding around and drinking water.,pierces items into a clip of water from a shed.,is seen climbing on a snowy ladder while climbing up a wall.,is seen pushing down a bike while moving it around and walking back to the bicycle.,standing in front on the screen followed by more clips of the person spinning in and out of place.,gold0-orig,pos,unl,unl,pos,pos,A camera pans all around a piece of exercise equipment followed by a woman riding on it.,A person\nanetv_y8RpTBtGG1g,4416,A kid in blue shorts is vacuuming the floor. A kid in a red shirt,is playing on a banana chair.,takes the apron and cleans the dishwasher.,is talking in front of the camera.,shows off his ice cream.,is filling it with soapy water.,gold0-orig,pos,unl,unl,unl,unl,A kid in blue shorts is vacuuming the floor.,A kid in a red shirt\nanetv_y8RpTBtGG1g,4417,A kid in a red shirt is playing on a banana chair. There,is a white dog next to the boy.,\"are in a long street in a dark competition, and small balls are in a yard.\",\", in a room, stands in front of the house talking.\",\"water is in the pool, and a man in a white shirt turns to hit the ball around the court.\",,gold1-orig,pos,unl,unl,unl,n/a,A kid in a red shirt is playing on a banana chair.,There\nanetv_y8RpTBtGG1g,8181,The boy wearing a red shirt slides and the one vacuuming dances a little while and put the vacuum on the back of the other. He eventually,continues his chore on another part of the floor.,cuts the wallpaper back and begins making it to the wall.,pushes the carpet back down and the man.,gets out of the room and goes back to.,,gold0-orig,pos,unl,unl,unl,n/a,The boy wearing a red shirt slides and the one vacuuming dances a little while and put the vacuum on the back of the other.,He eventually\nanetv_y8RpTBtGG1g,8180,A little boy is vacuuming the floor while the other one wearing a red shirt is watching him. The boy wearing a red shirt slides and the one,vacuuming dances a little while and put the vacuum on the back of the other.,wears the helmet on pearls and begins to cut it with a little neck.,walks out holding a white blouse.,hits the ball with his opponent while the white man follows the man.,kneels down and throws a man over it.,gold0-reannot,pos,unl,unl,unl,unl,A little boy is vacuuming the floor while the other one wearing a red shirt is watching him.,The boy wearing a red shirt slides and the one\nanetv_6pY2zz2_CCU,3579,\"Woman is sitting on a couch with a cat on her legs, he grab a scisoors from the table next to her and starts cutting the front cat nails. she\",looks his back paws and gave her cat some cat food.,puts the needle through to make sure it cuts backwards.,sees the yellow scissor and hand it onto the shims to expose it.,\"stands up again, continues to cut it, and leans choked with it.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Woman is sitting on a couch with a cat on her legs, he grab a scisoors from the table next to her and starts cutting the front cat nails.\",she\nanetv_Z7gECmnHeKk,19338,A man is seen sitting on a piece of exercise equipment and rowing himself back and fourth on a machine. The man,continues moving himself back and fourth as the camera captures him from several angles.,continues moving around while looking to the camera and pointing to a closet and begins adjusting the machine.,continues to spin all around the machine while the camera pans around the movements.,switches up the machine and continues along the conversation to others back and fourth while moving away and not moving.,uses the machine along the machine as well as a man speaking to his camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen sitting on a piece of exercise equipment and rowing himself back and fourth on a machine.,The man\nanetv_-zHX3Gdx6I4,5229,The boy lifts his body above the height of a pole. The boy,lands on his back on to a red mat.,holds the weights in his hand.,does a ball flips the entire auditorium time.,spins in circles with one leg and looks over.,tightens the strip with the rope.,gold0-orig,pos,unl,unl,unl,unl,The boy lifts his body above the height of a pole.,The boy\nanetv_-zHX3Gdx6I4,5228,A boy is running down a track. The boy,lifts his body above the height of a pole.,\"jumps for a flip, then slides down a mountain.\",jumps off his skateboard.,turns and runs to throw the javelin.,throws a javelin across the field.,gold1-orig,pos,unl,unl,unl,pos,A boy is running down a track.,The boy\nanetv_-zHX3Gdx6I4,5231,The boy gets up from the mat. The boy,celebrates by clapping and flexing both arms.,lowers his legs and the boy follows him.,goes upstairs and vacuums the similar floor.,rides down down the slide.,throws the object almost in the air.,gold0-orig,pos,unl,unl,unl,pos,The boy gets up from the mat.,The boy\nanetv_-zHX3Gdx6I4,5230,The boy lands on his back on to a red mat. The boy,gets up from the mat.,lands on his leg trying to put his feet in the gym.,begins to spin in circles.,shakes himself as his teammates arrive.,,gold0-orig,pos,unl,unl,pos,n/a,The boy lands on his back on to a red mat.,The boy\nanetv_xwSeXFkTNlE,19443,He take a breath and the audience claps for him before he jumps back on it and starts spinning again. When he is done he,\"walks down and shakes hands with all the team mates, before he gets on one last time.\",removes the shoes and proceeds to cover his face.,stands up and does this over the city.,continues flipping apprehensively in the air trying to get the head from the dog.,holds the crowd forward and continues to talk.,gold0-orig,pos,unl,unl,unl,unl,He take a breath and the audience claps for him before he jumps back on it and starts spinning again.,When he is done he\nanetv_xwSeXFkTNlE,19442,He jumps on to the board and starts spinning really fast before he jumps off and walks around. He take a breath and the audience,claps for him before he jumps back on it and starts spinning again.,captures movements as the crowd cheers and cheers.,\"around him and when they are done, he jumps up.\",and does the same rounds.,cheers as she reaches the end of the hopscotch.,gold1-orig,pos,unl,unl,unl,unl,He jumps on to the board and starts spinning really fast before he jumps off and walks around.,He take a breath and the audience\nanetv_xwSeXFkTNlE,19441,A gymnast is patiently waiting to start his performance. He,jumps on to the board and starts spinning really fast before he jumps off and walks around.,takes the disc and falls into the sand pit.,struggles to look back to the notes.,does jump on his back.,mounts the beam and begins doing a high jump routine.,gold1-reannot,unl,unl,unl,unl,unl,A gymnast is patiently waiting to start his performance.,He\nanetv_Qmo9D73hWXY,8647,We see a person in hockey gear skate onto the ice. Another person enters and we,watch two people play hockey.,see people walking on the track behind them.,see people standing in their tracks.,see a house with a red jacket.,see instruction: to slow curling.,gold0-orig,pos,unl,unl,unl,unl,We see a person in hockey gear skate onto the ice.,Another person enters and we\nanetv_Qmo9D73hWXY,8649,We see the puck drop in front of the camera. The person,knocks the goalie to the ground.,takes a big drink from a mug.,uses a cloth to spray the area again.,moves the points on the right.,stops in front of the fence interviewing the crowd.,gold0-orig,pos,unl,unl,unl,pos,We see the puck drop in front of the camera.,The person\nanetv_Qmo9D73hWXY,8650,The person knocks the goalie to the ground. The goalie,skates up to the camera.,blocks it as the goalie tries to point towards a goal in the end.,turns on a advantage and runs his arms down.,tries to shake hands.,,gold0-reannot,pos,unl,unl,pos,n/a,The person knocks the goalie to the ground.,The goalie\nanetv_Qmo9D73hWXY,8648,Another person enters and we watch two people play hockey. We,see the puck drop in front of the camera.,see a young groomer with a long hair face.,see a policeman playing on the sideline.,see the black screen again.,see the location multiple angles.,gold0-reannot,pos,unl,unl,pos,pos,Another person enters and we watch two people play hockey.,We\nanetv_Vcxv3nyZpSs,7081,\"When she reaches that end, she makes a turn but it's too tight and she reverses a little. The girl then makes her turn in the opposite direction once again and when she reaches half way down the yard she\",turns once again and heads up the direction she just came from.,\"stands backward in a traffic very fast, continuing to ride the horse very fast in the snow.\",comes and bends and bends down behind it.,stares up at the ocean very precisely up her hand.,puts her leg up and tries to jump over the dog but keeps following her.,gold0-orig,pos,unl,unl,unl,unl,\"When she reaches that end, she makes a turn but it's too tight and she reverses a little.\",The girl then makes her turn in the opposite direction once again and when she reaches half way down the yard she\nanetv_Vcxv3nyZpSs,7080,A girl is riding on a yellow riding lawn mower on a very large yard filled with green grass. When the girl reaches the end of the yard she,makes a turn and drives up in the same direction she just came from.,grabs some papers in the air.,lets go of a blue tree and waits as someone goes with it.,is attempting to warm the mower and eventually misses the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A girl is riding on a yellow riding lawn mower on a very large yard filled with green grass.,When the girl reaches the end of the yard she\nlsmdc1034_Super_8-8056,4993,\"Someone, who has heavy sideburns, steps inside the house, then immediately comes back out. Someone\",\"follows someone back into the house, leaving an awkward looking someone standing on the veranda.\",gives someone a wink.,is round for the exit.,\"turns and shuts the door, drying someone's hands.\",bows and claps both hands.,gold1-orig,pos,unl,unl,unl,pos,\"Someone, who has heavy sideburns, steps inside the house, then immediately comes back out.\",Someone\nlsmdc1034_Super_8-8056,4995,She comes back out to someone. Someone,looks surprised and steps towards her.,both lifts his head and she averts her tearful eyes.,sits glumly next to someone on the bed.,\"steps to the door, then ventures in, then looks up, and sees one of the girls doing long hair.\",,gold0-orig,pos,unl,unl,unl,n/a,She comes back out to someone.,Someone\nlsmdc1034_Super_8-8056,4994,\"Someone follows someone back into the house, leaving an awkward looking someone standing on the veranda. She\",comes back out to someone.,leads the way across an empty modern towards an upper floor.,finds herself leaning against an oncoming car.,turns into a counter where someone holds the window.,runs across the bathroom.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone follows someone back into the house, leaving an awkward looking someone standing on the veranda.\",She\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59953,4504,Someone leads people under the cover of Woods. Someone,takes someone to one side.,lifts her off his feet and storms off.,steps into a tent and kicks backwards the pup.,runs as the crowd stampede toward him.,watches as someone draws fire.,gold1-orig,pos,unl,unl,unl,pos,Someone leads people under the cover of Woods.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59953,4505,Someone takes someone to one side. Someone,nods.,\"descends into a shaft of tall, wooden benches beneath the captain's desk.\",\"feels his own breast, shifting his focus gaze to the overlook.\",\"lifts the broken, white leash in his palm.\",slams his sister on the wall as a police officer approaches his target.,gold0-orig,pos,unl,unl,unl,pos,Someone takes someone to one side.,Someone\nanetv_bJkemB0CcKo,19499,He pours egg into the pan and pushes it around with several vegetables. He,finishes by putting the omelet onto a plate and eating one big bite.,puts the ingredients into a plate and cuts more into the egg.,has taken his money to the bowls.,sticking some of the ingredients into the container and then showing them again and ends by showing off her hands.,mixes some more and cooks more into the bowl.,gold0-orig,pos,unl,unl,unl,unl,He pours egg into the pan and pushes it around with several vegetables.,He\nanetv_bJkemB0CcKo,19498,A man talks to the camera smiling and transitions to him holding a pan and spreading butter into it. He,pours egg into the pan and pushes it around with several vegetables.,then talks to the camera and puts plastic lame sticks in a glass.,adds the omelette on it and then places it on a plate.,grabs a taste with fried pasta.,yells by mixing it around in a glass bowl.,gold0-orig,pos,unl,unl,unl,unl,A man talks to the camera smiling and transitions to him holding a pan and spreading butter into it.,He\nlsmdc0012_Get_Shorty-53314,15115,Someone steps into his doorway. Someone,\"shakes his head, starts back for the elevator.\",crouches down to someone.,puts them on his jacket.,sweeps his hand around the table.,sits and turns into her friends' office.,gold0-orig,pos,unl,unl,unl,pos,Someone steps into his doorway.,Someone\nlsmdc0012_Get_Shorty-53314,15114,\"As he starts back, he sees someone's scared look just before he slams the door shut. Someone\",steps into his doorway.,turns from the elevator and gives a hollow nod.,is visible in front of him.,kicks the bedroom door shut.,\"is stunned, looks up.\",gold0-orig,pos,pos,pos,pos,pos,\"As he starts back, he sees someone's scared look just before he slams the door shut.\",Someone\nlsmdc0012_Get_Shorty-53314,15112,\"He gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone. He rounds a corner, and we\",see an explosion of light up ahead as we come upon.,rate through papers slot along either side of the road.,\"find him standing, thinking about what he is doing, who is now on a sidewalk, a small way home.\",can only see through the window in the confusion of the sprawling building.,\"see him go for his mobile, then goes into the police station and moves into the plaza.\",gold1-orig,unl,unl,unl,unl,pos,He gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone.,\"He rounds a corner, and we\"\nlsmdc0012_Get_Shorty-53314,15116,\"Someone shakes his head, starts back for the elevator. Someone\",\"stops, turns around.\",breezes through the room wears a dressing gown.,snuggles down from food on his desk.,gets into his car and waits into the woods.,\"walks over the old chair, back in the chair.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone shakes his head, starts back for the elevator.\",Someone\nlsmdc0012_Get_Shorty-53314,15111,Someone pulls in behind a row of trailers. He,gets out of the car and heads for the set where someone is now looking up at the sky and yelling at someone.,\"has a long collar, trimmed with streaks in gray curl.\",makes a call on his mobile home.,studies it as someone strolls down the aisle with the task.,sits on the paper waiting at a window covered in techs.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls in behind a row of trailers.,He\nlsmdc0012_Get_Shorty-53314,15110,Someone drives a dark road up into the park. Someone,pulls in behind a row of trailers.,runs down the track past the rough town.,digs to his car.,stands at the edge of the ramp and disappears.,,gold0-orig,pos,unl,unl,unl,n/a,Someone drives a dark road up into the park.,Someone\nlsmdc0012_Get_Shorty-53314,15107,He picks up the briefrase as he rises from the sofa and someone gets out of his chair. Someone,\"reaches for the door, opens it and looks back at someone.\",tries to look anxious but falls limply into his stomach.,sits beside his sadly unconscious someone.,\"unwraps some oatmeal from a tray and throws it onto a table and sits, looking up and down.\",throws the box over the desk to bag his tie.,gold1-reannot,pos,unl,unl,unl,unl,He picks up the briefrase as he rises from the sofa and someone gets out of his chair.,Someone\nlsmdc0012_Get_Shorty-53314,15108,\"Someone reaches for the door, opens it and looks back at someone. As someone\",starts for the elevator.,\"sees someone coming out onto a flight of stairs, knocks the window.\",lies back on the bed.,sets out the door.,\"steps into view, someone charges with a hungry group.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone reaches for the door, opens it and looks back at someone.\",As someone\nlsmdc3033_HUGO-14874,13228,Carnival barker stands outside a cinematograph. Someone and someone,step into a tent.,merge down toward the exit park.,shoot out of a tree's trunk and take a flying leap.,slide down a steep hill.,stroll off from its weather racetrack.,gold0-reannot,pos,unl,unl,unl,unl,Carnival barker stands outside a cinematograph.,Someone and someone\nlsmdc3033_HUGO-14874,13229,Someone and someone step into a tent. Someone's mouth,drops open as he watches the screen.,hangs open as she watches from another room.,opens with surprise as he takes a wine bottle from his couch.,falls open as the barber unwraps his magazine.,hangs open as the sunlight streams through the hospital's windows.,gold1-reannot,pos,unl,unl,unl,unl,Someone and someone step into a tent.,Someone's mouth\nanetv_K5X_ytiMuqc,7925,She records several items shown around the store and then herself in a bikini. She,puts the lotion on herself standing in front of a lake and smiling into the camera.,continues to show how to use the trailer to sit on the chair one more time.,scrubs the water with soap.,pops into large gurgles of paint with several pictures and outro for.,sips her drink and has chemistry over the ingredients.,gold1-reannot,pos,unl,unl,unl,unl,She records several items shown around the store and then herself in a bikini.,She\nanetv_EJxWhTE_ZeE,12448,The video leads into several people washing windows as quickly as they can while many watch them on the side. Many men,speak to the camera as well as people announcing the scores and more window washing taking place.,continue speaking to the camera as their entertainment and text shown across the screen.,speak to the camera and speak into various objects of the vacuum and get into the car.,skate past several people before shooting and shooting another key.,are seen hitting a ball around and jumping around in a ring while many watch on the sidelines.,gold0-orig,pos,unl,unl,unl,unl,The video leads into several people washing windows as quickly as they can while many watch them on the side.,Many men\nanetv_8HdfGmQaabM,10416,She shows how she made the pesto sauce in a blender before mixing mini tomatoes in with the pasta. She,\"returns to the camera, continuing to talk before we see a final scene of the pasta.\",slams her on the counter.,puts flour into the pot and then continues a salad in the bowl.,pours in the water.,,gold1-orig,pos,unl,unl,pos,n/a,She shows how she made the pesto sauce in a blender before mixing mini tomatoes in with the pasta.,She\nanetv_8HdfGmQaabM,10415,A blonde woman in a green sweater is talking. She,shows off a plate filled with pasta salad and vegetables.,has a glass stick underneath the other.,\"starts shaving her legs, shaving her legs.\",smokes a cigarette in her mouth.,,gold0-orig,pos,unl,unl,unl,n/a,A blonde woman in a green sweater is talking.,She\nanetv_wvmuUuLOoEQ,6236,They then go to the snowy mountains to ski. They,are seen skiing down the slopes together.,finish their tubes and ski both down the hill.,pull back and flip out of the water.,see a beautiful field.,,gold0-orig,pos,unl,unl,pos,n/a,They then go to the snowy mountains to ski.,They\nanetv_wvmuUuLOoEQ,6235,\"A car is seen driving down the road, and the people arrive at a restaurant for breakfast. They then\",go to the snowy mountains to ski.,\"see the same group cars, one attempts to escape and look around.\",take a drink of beer and keep walking.,begin peddling the driveway.,move with the queue in the end of the track.,gold1-orig,pos,unl,unl,unl,unl,\"A car is seen driving down the road, and the people arrive at a restaurant for breakfast.\",They then\nanetv_wvmuUuLOoEQ,8452,People are inside a van talking and atchnig a car passing next to them. men,are in a restaurant serving breakfast and orange juice from a machine.,are riding bumper cars in a small parking lot.,come out and get up.,are standing in a roofed gym talking to the camera.,,gold1-reannot,unl,unl,unl,unl,n/a,People are inside a van talking and atchnig a car passing next to them.,men\nanetv_7hRls13HJow,5323,A small girl is washing the floor with a mop and talking to the camera man. The camera man,talks to the girl about cleaning and why she likes it.,\"hits the ball up, the rag shows another man laying on the rug.\",is in the ocean swimming with a person that is kayaking on the ocean.,\"is dancing with some electric toothbrushes on her body, stroking her feet.\",vacuums the floor and sets it down on a second floor.,gold1-orig,pos,unl,unl,unl,unl,A small girl is washing the floor with a mop and talking to the camera man.,The camera man\nanetv_7hRls13HJow,5324,The camera man talks to the girl about cleaning and why she likes it. The girl,finishes washing the floor.,brushes her hair as she continues talking to the camera.,ends the demonstration and shows someone how to wash her hair.,gets shots inside the truck and talks to the people about her.,talks and talks about the shirt she can of.,gold0-orig,pos,pos,pos,pos,pos,The camera man talks to the girl about cleaning and why she likes it.,The girl\nanetv_7hRls13HJow,5322,A person is filming a house and a dog walking into frame. A small girl,is washing the floor with a mop and talking to the camera man.,is seen petting the cat while walking down the driveway.,\"emerges from the camera, holding up a snowball and raking her.\",is looking down in a bathroom.,is outside while holding a baby in front of her.,gold1-orig,unl,unl,unl,unl,unl,A person is filming a house and a dog walking into frame.,A small girl\nanetv_QX3pwZOJbRs,13005,Two women attempt to wash two dogs. They,\"get in the tub with the dogs and do shampoo, soap, and then rinse the dogs.\",\"continue to play, till the music plays to the ice, squinting to go through the rest.\",are poured with some shampoo.,sit on an old rectangle cycle by.,begin to get the dogs with their horses.,gold0-orig,pos,unl,unl,unl,unl,Two women attempt to wash two dogs.,They\nlsmdc0031_The_Lost_Weekend-65704,9007,The man looks at someone but does n't answer. The man,\"stands staring at him, terrified.\",kicks the door shut then complies.,\"starts crying again, and someone falls.\",turns and heads out of the coupe.,looks at his mother and gets sincere.,gold1-orig,pos,unl,unl,unl,unl,The man looks at someone but does n't answer.,The man\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9804,3520,He feeds a small creature. He,opens a small blue tin and takes out someone's rat.,punches someone's face and strokes richard parker's face.,trims up a canvas and sprayer from underneath it.,takes a bite of food as he speaks.,,gold0-orig,pos,unl,unl,pos,n/a,He feeds a small creature.,He\nanetv_XCejO7RyWdA,4654,A woman in a pink shirt is standing outside. A brown dog,is playing with a frisbee.,is standing next to a dock near a dressing counter.,stands up next to them.,is standing next to him.,is sitting about to step off with her dog.,gold1-orig,pos,unl,unl,unl,unl,A woman in a pink shirt is standing outside.,A brown dog\nlsmdc3064_SPARKLE_2012-3898,7139,She puts one hand around his neck. He,shimmies up and down.,\"sits beside her down one leg, resting on her thigh.\",guests arrive as someone sits nestled against each other.,strokes her chin and close her hold.,fires his toy huddled under the ceiling.,gold0-orig,pos,unl,unl,unl,pos,She puts one hand around his neck.,He\nlsmdc3064_SPARKLE_2012-3898,7136,A couple kisses in the shadows. She,looks around and sees a silhouetted couple kissing.,tweed his head downward.,is topped by large army of trees.,grabs someone's hand and kisses her on the lips.,,gold0-orig,pos,unl,unl,pos,n/a,A couple kisses in the shadows.,She\nlsmdc3064_SPARKLE_2012-3898,7141,\"Later, someone rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind. She\",\"rests her cheek on his shoulder, looking to the side.\",pushes his chair up as a cameraman pulls up behind him.,removes an emblem from his venetian blind.,smiles like an animal.,trips back onto a rooftop.,gold0-orig,pos,unl,unl,pos,pos,\"Later, someone rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind.\",She\nlsmdc3064_SPARKLE_2012-3898,7135,\"One dancer wears a hat tilted over his eyes, a lit cigarette in his mouth. A couple\",kisses in the shadows.,smiles in front of the mirror.,sits in a bucket.,enters in the parade.,crosses the room above the bar where the campaign manager is dancing.,gold0-orig,pos,unl,unl,unl,pos,\"One dancer wears a hat tilted over his eyes, a lit cigarette in his mouth.\",A couple\nlsmdc3064_SPARKLE_2012-3898,7137,She looks around and sees a silhouetted couple kissing. She,moves her body closer to his as they dance.,\"part, their awning covers the drawn iv.\",pops up and locks him in.,walks away from the house of the house painting his backroom.,\", someone, back and other two girls study the each other.\",gold1-orig,pos,unl,unl,unl,unl,She looks around and sees a silhouetted couple kissing.,She\nlsmdc3064_SPARKLE_2012-3898,7138,She moves her body closer to his as they dance. She,puts one hand around his neck.,slips through a doorway.,stands close to him.,throws her hands around his shoulders.,,gold1-orig,pos,unl,unl,pos,n/a,She moves her body closer to his as they dance.,She\nlsmdc3064_SPARKLE_2012-3898,7142,\"She rests her cheek on his shoulder, looking to the side. As their legs\",stretched out in front of them.,\"ripple together, he tilts his head toward himself.\",\"resting against his skin, she presses a kiss to his cheek.\",\"move, they step closer, raising their fingers in each other's eyes.\",,gold0-orig,pos,unl,unl,unl,n/a,\"She rests her cheek on his shoulder, looking to the side.\",As their legs\nlsmdc3064_SPARKLE_2012-3898,7140,\"He shimmies up and down. Later, someone\",rides his motorcycle through a reflective white tiled tunnel as someone holds on to him from behind.,wears a bridal blanket as she beams through the countryside.,and his boyish aide sit on the edge of his seat.,plays piano sitting in a booth with his cell at the center of an ancient dining table.,,gold0-reannot,pos,unl,unl,unl,n/a,He shimmies up and down.,\"Later, someone\"\nlsmdc3064_SPARKLE_2012-3898,7143,As their legs stretched out in front of them. She,ducks her chin in surprise.,jumps up from her car and clings to one of them.,presses her foot into someone's fist.,lets someone in with some people.,puts her arm around someone.,gold0-reannot,pos,unl,unl,unl,pos,As their legs stretched out in front of them.,She\nanetv_GI8tylrKKlA,11026,A woman is talking while seated on a couch. She,is holding a cat in her lap.,is talking on a table with women knitting.,\"is then seen wearing headphones, talking to the camera.\",picks up liquid and puts it.,holds up a wooden instrument.,gold0-orig,pos,unl,unl,unl,pos,A woman is talking while seated on a couch.,She\nanetv_GI8tylrKKlA,11027,She is holding a cat in her lap. She,uses a small pair of scissors to cut the cat's toenails.,starts clipping the kitten's head with a marker.,closes the video and talks to it.,then straddles the cat.,is walking haunches underneath a ladder.,gold0-orig,pos,unl,unl,unl,unl,She is holding a cat in her lap.,She\nanetv_GI8tylrKKlA,11496,We see the lady clip the cats claws. The cat,tries to get away so the lady rubs the cat and moves him to her other side.,is shaking the cats tongue.,stops and turns back to see the cat cut off.,pours with black paint into the bush.,\"is pushed, and the lady explains the claws and the lady likes it.\",gold1-orig,pos,unl,unl,unl,unl,We see the lady clip the cats claws.,The cat\nanetv_GI8tylrKKlA,11497,The cat tries to get away so the lady rubs the cat and moves him to her other side. The cat,tries to get free.,trims her swirling paws and gives the blue paw toy to his cat.,\"is moving seductively into the girl's lap, and all its rooms are being in across party.\",\"pokes her with the cat, and pets the cat on the ground.\",pushes over the cat's nails while the cat watch.,gold0-orig,pos,unl,unl,unl,unl,The cat tries to get away so the lady rubs the cat and moves him to her other side.,The cat\nanetv_GI8tylrKKlA,11498,The cat tries to get free. The lady,finishes and talks to the camera.,sticks her tongue up.,walks through the opening and pulls out a dog.,puts the pieces in the lip screws to see two.,backs and brings the baby to a stop.,gold0-orig,pos,unl,unl,unl,unl,The cat tries to get free.,The lady\nanetv_GI8tylrKKlA,11495,We see a lady laying on the couch talking to the camera next to her cat. We,see the lady clip the cats claws.,she is shown in front of a series of images of the dog jumping and then a plastic hook.,see the ear twice in the bed and the tattoo child lets the paper part into the wall.,is seated at a table with a dog and carries a dog pointing at the dog.,see more of the two people walking.,gold0-orig,pos,unl,unl,unl,pos,We see a lady laying on the couch talking to the camera next to her cat.,We\nanetv_Mv2L6HxB2dk,8963,There are several people skating on the main road in the downtown area of a city at night. The street,is lit up with street lights and stores along the sidewalk.,is filled with occasional scenes of people standing around a parking lot and watching him out on the sides.,\"is a jungle with tiny clouds only about - blue stars, new york city.\",is filled with trees and flowing hills.,,gold0-orig,pos,unl,unl,unl,n/a,There are several people skating on the main road in the downtown area of a city at night.,The street\nanetv_Mv2L6HxB2dk,8964,The street is lit up with street lights and stores along the sidewalk. The people,skate through the road where there are no cars driving.,continue working on the house; not being finished encounters.,keep looking up the watch.,use their wands as they will.,,gold0-reannot,pos,unl,unl,unl,n/a,The street is lit up with street lights and stores along the sidewalk.,The people\nanetv_BlfFKVGQbi8,967,A man plays many games of shuffleboard in a room occupied by other people and many other shuffle boards. A man in a collared shirt and glasses,plays shuffleboard with metal pucks and a long wooden shuffleboard in front of a lit scoreboard in a room.,\"sits on the side of a stand, while people play a soccer game.\",is polishing another in a blue marble on it with an orange background.,is listening to views of the talk.,is playing a large instrument in front of a camera.,gold0-orig,pos,unl,unl,unl,pos,A man plays many games of shuffleboard in a room occupied by other people and many other shuffle boards.,A man in a collared shirt and glasses\nanetv_GyLX64aJY80,13710,\"The sandwich now has butter on both sides and the sandwich is placed in a skillet and is fried. Once complete, it\",is placed on a red plate and cut in half with a thick knife.,cuts to a shows that was then placed in front of the twig with chocolate.,has a plate of bread and a raw pancake then put in his peeling one end.,stands banana bread and cheese before measuring the egg with eggs relaxing.,,gold0-orig,pos,unl,unl,unl,n/a,The sandwich now has butter on both sides and the sandwich is placed in a skillet and is fried.,\"Once complete, it\"\nanetv_GyLX64aJY80,13709,\"The person then takes one slice, spreads the butter over it and puts two slices of cheese on it and adds the other slice on top of it. The sandwich now has butter on both sides and the sandwich\",is placed in a skillet and is fried.,is introduced by the icing cutting the tomato.,is shown using an o.,and it is held together.,is spread on the bread it loosens removed menacingly.,gold1-reannot,pos,unl,unl,unl,unl,\"The person then takes one slice, spreads the butter over it and puts two slices of cheese on it and adds the other slice on top of it.\",The sandwich now has butter on both sides and the sandwich\nanetv_O9crPOB_9tE,17216,\"The man, in a wetsuit, is standing and riding on a yellow surfboard and a red surfboard first on a calm wave and then on a series of large and high waves. The man\",rides the rough waves on the surfboard with the waves at time covering his entire body and surfboard.,\"goes to drop his feet like well, then stops without looking backward.\",jumps and puts in the same couch.,is sitting with his surfboard and a little boy holding a pumpkin.,return to riding a wakeboard and where girl rides in a swimming pool filled with people and floating curbside in the water.,gold0-orig,pos,unl,unl,unl,unl,\"The man, in a wetsuit, is standing and riding on a yellow surfboard and a red surfboard first on a calm wave and then on a series of large and high waves.\",The man\nanetv_ZwDfAhQVKLQ,9805,A man is seen in the corner moving back and fourth on exercise equipment. A woman then,speaks to the man as he continues rowing and showing a close up of the machine.,begins playing the instrument while looking off into the distance.,comes out of the room with a ladder and continues cleaning.,demonstrates how to properly jump roping and performs gymnastics and tennis.,lifts a weight up to the machine and climbs it back up.,gold0-orig,pos,unl,unl,unl,pos,A man is seen in the corner moving back and fourth on exercise equipment.,A woman then\nanetv_ZwDfAhQVKLQ,9804,A person is seen walking into frame in a dark room and walks down a long set of stairs. A man,is seen in the corner moving back and fourth on exercise equipment.,is shown a close up of a man followed by walking across the thick carpet.,makes several more dancing moves while the camera captures him from several angles.,watches the man walk up to the fence to show several part of the shop while stopping and speaking to another man.,moves the tool down to push the pucks around in the end while moving it on someone's shoulder.,gold1-orig,pos,unl,unl,unl,unl,A person is seen walking into frame in a dark room and walks down a long set of stairs.,A man\nanetv_LMxfRVcBrD8,4648,She checks the pasta for it's softness. She,removes the cooked pasta off of the gas and pours it into a plate.,gets out of a mini car and drives it in a new black jeep.,lets go of a can.,takes something out of another salad bottle and sniffs it.,,gold0-orig,pos,unl,pos,pos,n/a,She checks the pasta for it's softness.,She\nanetv_LMxfRVcBrD8,4649,She removes the cooked pasta off of the gas and pours it into a plate. Then she,adds the cooked sauce right over the pasta.,puts the slices on the salad before adding the pan to a plate.,digs out her knapsack and shrugs tearfully.,\"begins going forward with several ingredients, cooking all of the ingredients in the pot.\",,gold0-orig,pos,unl,unl,pos,n/a,She removes the cooked pasta off of the gas and pours it into a plate.,Then she\nanetv_LMxfRVcBrD8,4647,She sautes chopped onions and some Italian dressing along with garlic on a saucepan. She then,adds a cup of grape tomatoes.,cut the stirring of water and boil into the pot.,\"covers the cucumbers with cornstarch, frying tomatoes.\",mixes the ingredients together in one before making a sauce.,,gold0-orig,pos,unl,unl,pos,n/a,She sautes chopped onions and some Italian dressing along with garlic on a saucepan.,She then\nanetv_LMxfRVcBrD8,4646,She begins with adding spaghetti in a large pot of boiling water. She,sautes chopped onions and some italian dressing along with garlic on a saucepan.,measures the dish with water.,pours the egg into the tube again.,mixes plates together on the pan.,pours the egg in a pot and puts it in the blender.,gold1-orig,pos,unl,unl,unl,unl,She begins with adding spaghetti in a large pot of boiling water.,She\nanetv_LMxfRVcBrD8,4645,A woman chef is demonstrating how to make restaurant style pasta. She,begins with adding spaghetti in a large pot of boiling water.,is doing other vegetables on a sandwich.,toasts revealing a seated someone.,uses a mix to mix something on a plate.,,gold0-orig,pos,unl,unl,unl,n/a,A woman chef is demonstrating how to make restaurant style pasta.,She\nanetv_LMxfRVcBrD8,4650,She chops fresh basil with a pair of scissors and garnishes it over the pasta along with some cheese Then she shows an Alfredo sauce recipe. She,sprinkles grated parmesan cheese over the alfredo pasta to finish off.,is beginning to serve something from anger also.,claps it up and adds a stop to the bottom.,shows the various ingredients to make boiling leafy tops.,gulps her golf basket before finishing it.,gold0-reannot,pos,unl,unl,unl,unl,She chops fresh basil with a pair of scissors and garnishes it over the pasta along with some cheese Then she shows an Alfredo sauce recipe.,She\nanetv_KpoH4pBp9fg,13623,She shows a cake cooling on a metal rack. She,\"demonstrates how to mix the ingredients in a mixer, then bake the cake.\",folds it up and puts them in her arm.,goes inside of a pepper that she pretends to sell.,continues eating and talking on how to make a sandwich.,,gold0-orig,pos,unl,unl,unl,n/a,She shows a cake cooling on a metal rack.,She\nanetv_KpoH4pBp9fg,13622,\"A woman is standing inside a dark kitchen, talking. She\",shows a cake cooling on a metal rack.,is wearing a large white cape.,is demonstrating how to cut the pumpkin.,is showing him that piece of metal as she discusses the quote.,leans over and throws piles into the water.,gold0-orig,pos,unl,unl,unl,pos,\"A woman is standing inside a dark kitchen, talking.\",She\nanetv_KpoH4pBp9fg,13624,\"She demonstrates how to mix the ingredients in a mixer, then bake the cake. When it is done, she\",turns it onto the rack to cool.,scoops some tomatoes next to the lettuce with a stock round peeler and pours it into the oven and wraps the ornaments over it.,puts it on the pot then adds sausage and juice to the mixture.,fastens the mix and put it on a plate.,stirs the ingredients and pours them into a pan behind the omelet.,gold0-orig,pos,unl,unl,unl,unl,\"She demonstrates how to mix the ingredients in a mixer, then bake the cake.\",\"When it is done, she\"\nanetv_arfBwR8qgPw,14486,A camera shows a group of people sitting around a gymnasium floor with a few standing and one crossing his arms. Suddenly a student,comes into frame and jumps over a pole into a mat.,takes a man to the man's arm and leads him back to the edge of the pool.,looks up to see him doing a slow punch routine.,runs out and back to score.,,gold0-orig,pos,unl,unl,pos,n/a,A camera shows a group of people sitting around a gymnasium floor with a few standing and one crossing his arms.,Suddenly a student\nanetv_bqBJ1tcHCHk,9306,An intro leads into various pictures of horse tools and a woman speaking to the camera holding a brush. She then,brushes the horse's mane thoroughly while still looking to the camera and speaking.,brushes her hair while riding along or braiding hair in the end.,begins grooming several frisbees and showing the girls mane around dogs.,sprays a liquid in the hair and continues brushing it off while looking back into the camera.,dries her clean hair neatly.,gold0-orig,pos,unl,unl,unl,unl,An intro leads into various pictures of horse tools and a woman speaking to the camera holding a brush.,She then\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49452,11990,\"Hand in hand, they hurry out of barn and, as we pan, along its side, towards River, o. s.. Someone\",\"steers through turbulent, moonlit water.\",carries someone close into someone's childhood room.,gets back in their carriage with a pale tank beyond the church's stern.,\"gets the ladder, looks over desperately to keep the beige - face gate from someone.\",has the thin bottle of trust and turns a corner.,gold0-orig,pos,unl,unl,unl,unl,\"Hand in hand, they hurry out of barn and, as we pan, along its side, towards River, o. s..\",Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49452,11989,\"He vanishes; scuttling of children in hay, o. s.; dogs quiet; his song dies. Hand in hand, they\",\"hurry out of barn and, as we pan, along its side, towards river, o. s. \",embrace hungrily as they dance hungrily.,clap back towards the church as people flee.,have a considered photo amongst the flowers.,,gold0-orig,pos,unl,unl,pos,n/a,\"He vanishes; scuttling of children in hay, o. s.; dogs quiet; his song dies.\",\"Hand in hand, they\"\nanetv_VbhCWRXsEHQ,6636,Sugar is added to the mixing bowl to be beaten in. Flour,\"is measured, and combined with cornstarch which is measured then mixed into the bowl.\",pan up to a cake pan.,\"applies entry, and dries the dish with the tongs.\",is added to the bowl and two of your taste silverware.,is cooking behind the kitchen counter.,gold0-orig,pos,unl,unl,unl,pos,Sugar is added to the mixing bowl to be beaten in.,Flour\nanetv_VbhCWRXsEHQ,6635,The mixer then begins to cream the butter. Sugar,is added to the mixing bowl to be beaten in.,are putting vegetable fruits.,uses pour some butter and lemon into the lead and then lays it on top of the cake.,\"is using a red sponge to add eggs, parsley, cucumber, eggs over the saucepan.\",and powdered sugar are displayed.,gold0-orig,pos,unl,unl,unl,pos,The mixer then begins to cream the butter.,Sugar\nanetv_VbhCWRXsEHQ,6638,\"Dough is measured out by spoonful, rolled up and placed on baking sheet. The dough\",is flattened and baked into cookies.,is being scraped and poured into baking pan.,gets mixed dry and mixed into black foil.,is put in the oven.,,gold0-orig,pos,pos,pos,pos,n/a,\"Dough is measured out by spoonful, rolled up and placed on baking sheet.\",The dough\nanetv_VbhCWRXsEHQ,6637,\"Flour is measured, and combined with cornstarch which is measured then mixed into the bowl. Dough\",\"is measured out by spoonful, rolled up and placed on baking sheet.\",is poured into slices of lemons and peppers.,puts chocolate and a different mix and bacon is mixed in a fruit bowl.,are poured in a pile of ingredients and alcohol is added and the mix is blended.,,gold0-orig,pos,unl,unl,unl,n/a,\"Flour is measured, and combined with cornstarch which is measured then mixed into the bowl.\",Dough\nanetv_VbhCWRXsEHQ,6639,The dough is flattened and baked into cookies. The cookies,\"are then placed on a baking sheet, then rack to cool with a spatula.\",are spread out and put cookies on the scooter.,are grated in the oven.,are placed on the plate and melted on the baked cookies.,are used for christmas.,gold1-orig,pos,unl,unl,unl,pos,The dough is flattened and baked into cookies.,The cookies\nanetv_VbhCWRXsEHQ,6633,Parchment paper is placed on the baking sheet. Softened butter,is placed in a mixing bowl.,is whisked up on top of the salad.,is shown on top of the sheet.,is used and sliced in the skillet.,,gold0-orig,pos,unl,unl,unl,n/a,Parchment paper is placed on the baking sheet.,Softened butter\nanetv_VbhCWRXsEHQ,6634,Softened butter is placed in a mixing bowl. The mixer then,begins to cream the butter.,makes an omelette on the table parallel to the half of the postcard rack.,melted a little and stirs it together.,placed in a skillet and stirred.,,gold0-orig,pos,unl,unl,pos,n/a,Softened butter is placed in a mixing bowl.,The mixer then\nanetv_UIZkQUo8VtA,13480,A truck is seen parked in front of a house with several shots of the house shown. A man,is then seen standing on the roof hosing down the top and again standing in front of the house watering.,rides in a green tube while sitting on the rowing equipment and flipping up a rock.,climbs down a ladder into a bucket and sprays something onto it.,is seen riding down a set of monkey bars while others are seen walking around.,,gold1-reannot,unl,unl,unl,unl,n/a,A truck is seen parked in front of a house with several shots of the house shown.,A man\nanetv_UIZkQUo8VtA,13481,A man is then seen standing on the roof hosing down the top and again standing in front of the house watering. The camera,shows the truck parked out front again and the final product of the roof.,shows the older man on a glass of the hookah while more people look at their tennis movements.,falls around the car as it pans around the snow.,is now cleaning the window of the car as well as talking when he continues wiping down the floor.,zooms in and continues working around the roof and moving with the boy smiling and placing the shovel.,gold0-reannot,pos,unl,unl,unl,unl,A man is then seen standing on the roof hosing down the top and again standing in front of the house watering.,The camera\nanetv_-ApIBtH_pVc,12678,She takes the plastic dial and screws it in securely to fit the spare tire in the trunk. She,places the cover over the tire inside the trunk.,puts a dial on the driver's lock while the camera captures her from an angle.,\"takes a jack of fabric and starts iron, removing enough gold from the tire tire.\",uses the vacuum to secure the carpet and vacuums it down.,,gold0-orig,pos,unl,unl,unl,n/a,She takes the plastic dial and screws it in securely to fit the spare tire in the trunk.,She\nanetv_-ApIBtH_pVc,12676,There's a woman with a hand tattoo and red painted nails attaching and screwing a parts in the trunk of a car to attach the spare tire. Then she,places the spare tire into the metal case.,places the sundress and other tips.,puts the grappling tool inside the top to scoop it up.,uses the fake nails to tighten the prevents of the new tire.,,gold0-orig,pos,unl,unl,pos,n/a,There's a woman with a hand tattoo and red painted nails attaching and screwing a parts in the trunk of a car to attach the spare tire.,Then she\nanetv_-ApIBtH_pVc,12677,Then she places the spare tire into the metal case. She,takes the plastic dial and screws it in securely to fit the spare tire in the trunk.,watches from the kitchen.,takes a seat on the tire.,makes the tire fold down.,,gold0-orig,pos,unl,unl,pos,n/a,Then she places the spare tire into the metal case.,She\nanetv_2_tzemKY72E,4671,A female gymnast is shown in a photograph. She,is then shown preparing and then mounting a high beam.,prepares to perform wearing a round and traditional dress.,pauses on the head of the group as they begin to dance.,demonstrates how to complete the product by lifting the weight to three sections.,ends her performance with the baton.,gold1-orig,pos,unl,unl,unl,pos,A female gymnast is shown in a photograph.,She\nanetv_2_tzemKY72E,4672,She is then shown preparing and then mounting a high beam. She,\"flips and turns on the beam, changing between two beams.\",drops onto the blue mat and lands in black.,dances over and back several more times.,\"quickens her routine and continues this time, a few wobbling.\",,gold0-orig,pos,unl,pos,pos,n/a,She is then shown preparing and then mounting a high beam.,She\nanetv_2_tzemKY72E,4673,\"She flips and turns on the beam, changing between two beams. She\",\"dismounts, throwing her arms into the air triumphantly.\",is then seen talking with the camera and dancing flips in the recreation room.,dives into green water.,flings the ball in the air as angles fly through the sky.,stands up three times and walks around while walking up to the ceiling.,gold0-reannot,pos,unl,unl,unl,unl,\"She flips and turns on the beam, changing between two beams.\",She\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60928,8528,High angle: someone leads the 200 mounted knights through the gates of minas tirith and across the pelennor fields towards the ruins of osgiliath. Someone and his men,watch as the knights approach.,\"follow a bruised - faced, hiding alien with small children.\",are confronted by one step amid flaming woods.,\"emerge, verdant flattening reach up with his hands and ankles.\",walk the length of the lift.,gold0-orig,pos,unl,unl,unl,unl,High angle: someone leads the 200 mounted knights through the gates of minas tirith and across the pelennor fields towards the ruins of osgiliath.,Someone and his men\nanetv_RblRzlmSFak,3519,The man then bends down and puts the wooden board on the grass. The man then starts pushing the board on the grass and he,begins to move leaves very quickly from one end of the yard to the next and does this three times.,continues to blow the leaves along the water while back to the camera.,climbs down the slide with the help of the other.,looked around the area and then turns the corner.,begins to gently build up sand and momentum it bin into a large sand castle.,gold1-orig,pos,unl,unl,unl,unl,The man then bends down and puts the wooden board on the grass.,The man then starts pushing the board on the grass and he\nanetv_RblRzlmSFak,12134,A man is carrying a board across the lawn. He,starts using the board to push leaves into a pile.,takes a bag out of his suitcase and starts dipping the bag into a velvet box.,lifts a ball from his bag.,is dressed up in the boat.,smiles at the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is carrying a board across the lawn.,He\nanetv_RblRzlmSFak,3518,A man wearing jeans and a black shirt is walking on a large yard filled with leaves and is carrying a large thin wooden board. The man then,bends down and puts the wooden board on the grass.,hit the box over again and dumped it into the bin.,goes and stands stoically at the pinata with colorful decorations.,begins to pick tools at frisbees and the maintenance man who is being shaken up and brushing his hair.,rolls around the corner on the bottom then goes to shoveling the entire board.,gold0-reannot,pos,unl,unl,unl,unl,A man wearing jeans and a black shirt is walking on a large yard filled with leaves and is carrying a large thin wooden board.,The man then\nanetv_yfPa5IKWTvU,2579,The kids in the front hold up the banner. They,run off of the stage.,go off down the driveway.,taunt the russians into cars.,are doing some bowling balloons in the city.,keep score boards with a story.,gold1-orig,pos,unl,unl,unl,pos,The kids in the front hold up the banner.,They\nanetv_yfPa5IKWTvU,2576,Kids run out onto the stage and get in formation. A banner,is placed at the front of the stage.,tumbles onto the screen.,shows four screens with the white words on number 4 using the title film.,reads on the screen introducing the video.,appears on screen with a website.,gold1-orig,pos,unl,unl,unl,pos,Kids run out onto the stage and get in formation.,A banner\nanetv_yfPa5IKWTvU,2577,A banner is placed at the front of the stage. The kids,start cheerleading on the stage.,\"have arrived to receive one of the blue, hot yellow suitcases.\",play a game on their aerobic machines.,start to push the puck on the pole.,,gold0-orig,pos,unl,unl,unl,n/a,A banner is placed at the front of the stage.,The kids\nanetv_yfPa5IKWTvU,2578,The kids start cheerleading on the stage. The kids in the front,hold up the banner.,is pushing and dancing.,begins to flip to their feet.,illuminate the stage in a funny direction.,play the drums to one team for a break.,gold0-orig,pos,unl,unl,unl,unl,The kids start cheerleading on the stage.,The kids in the front\nanetv_yfPa5IKWTvU,2575,A billboard is shown on a wall. Kids,run out onto the stage and get in formation.,are gathered in a room in a pit.,are outside a living room pipe playing the lot.,are standing around a track and playing a game of hopscotch.,are playing in a gym.,gold1-reannot,pos,unl,unl,pos,pos,A billboard is shown on a wall.,Kids\nanetv_ZJGXWbt6cbU,10946,\"Then, a group of little girls dance together while a trainer explains the moves. The little girls\",stand on front a mirror to make some moves.,teach a boy how to pull the techniques they need while the girl does the foot jacks.,does different workout as they go on and enjoy a dance.,performs routine with her and dance at each end.,,gold0-orig,pos,unl,unl,pos,n/a,\"Then, a group of little girls dance together while a trainer explains the moves.\",The little girls\nanetv_ZJGXWbt6cbU,8965,Woman is standing in a room and is talking to the camera and leading a group of children leading them. kids,are trying to do a choreography following the steps of the teacher.,are dancing near the playground.,play in the playground and do several flips on the tables by the men.,are doing dance and dance in the playground and doing tricks with them.,are on the side talking and talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,Woman is standing in a room and is talking to the camera and leading a group of children leading them.,kids\nanetv_ZJGXWbt6cbU,10945,\"People dance in a studio while a trainer shows a sign. Then, a group of little girls\",dance together while a trainer explains the moves.,play foosball in makeup.,plays a song at a ping pong flute performing competition.,practice a rope to show their muscles.,is shown racing a turn in a race.,gold0-orig,pos,unl,unl,unl,unl,People dance in a studio while a trainer shows a sign.,\"Then, a group of little girls\"\nanetv_ZJGXWbt6cbU,8966,Kids are trying to do a choreography following the steps of the teacher. woman,is sitting in chair talking to the camera.,is helping the kids part.,is running down the stairs wearing a pink dress.,is sitting behind a tree and is holding a child.,is on front a cluttered table laying on the bench next to the people.,gold0-reannot,pos,unl,unl,unl,unl,Kids are trying to do a choreography following the steps of the teacher.,woman\nlsmdc3081_THOR-37820,14050,\"He places his hand over his father's hand. Back on earth in a diner, someone\",shovels food into his mouth.,exhales through a porthole.,watches someone probe a grizzled creature.,stares up at the priest but not even a go in.,stares at the kitchen invitation.,gold1-orig,pos,unl,unl,unl,unl,He places his hand over his father's hand.,\"Back on earth in a diner, someone\"\nlsmdc3081_THOR-37820,14052,Someone slams the mug to the floor. Someone,picks up the broken mug.,looks down at his body and pillow and mill around the apartment ceiling.,looks sadly through the ceiling.,opens a gift bag.,blinks quizzically and glances away nervously.,gold0-orig,pos,unl,unl,pos,pos,Someone slams the mug to the floor.,Someone\nlsmdc3081_THOR-37820,14051,\"Back on earth in a diner, someone shovels food into his mouth. Someone\",slams the mug to the floor.,stops for a few minutes to find someone staring out at the barren compound.,removes his beer from the bag and looks outside.,lays his hand on someone's chin.,fights back tears as he checks his clock.,gold0-reannot,pos,unl,unl,unl,pos,\"Back on earth in a diner, someone shovels food into his mouth.\",Someone\nanetv_3OGD7if0zs8,11812,\"A woman stands in a kitchen, staring at the camera. The person\",opens an oven and pulls out a tray of chocolate chip cookies.,puts mascara on her eyelashes.,browses cooking in it.,gets in the tubes.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman stands in a kitchen, staring at the camera.\",The person\nanetv_3OGD7if0zs8,11813,\"The woman stares at the cookies, and a second batch is checked. The woman\",\"scoops the cookies off the tray, loosening them.\",pours in dirty onions into the dish in a sink and makes a coffee dish.,\"pours a piece of salad into a black glass, then shows the mixing ingredients.\",shows the boulder salad and cooking utensils.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The woman stares at the cookies, and a second batch is checked.\",The woman\nanetv_Ho0eNR4jvEg,8724,Bubbles rise out of a tube. A man,hands another person the mouthpiece.,rushes away from the water onto the broomstick with his hand.,sits on a bar wearing a kayak.,is bending down outside raising a weight.,is performing the wave.,gold1-orig,pos,unl,unl,pos,pos,Bubbles rise out of a tube.,A man\nanetv_Ho0eNR4jvEg,8723,The camera is spinning wildly. Bubbles,rise out of a tube.,\"flies a ball across a field, a darker one shot to the wooden library.\",sparks of someone's black cat are shown on the floor as the bird dodges it.,zoom in on crowds of chicago on a picturesque residential street.,,gold0-orig,pos,unl,unl,unl,n/a,The camera is spinning wildly.,Bubbles\nanetv_Ho0eNR4jvEg,8720,We see the underwater sea floor. Two people,swim in front of the camera.,are swimming in a pool.,are underwater near the lake.,are adjusting water from each other.,are kneeling in the middle of the space.,gold1-orig,pos,pos,pos,pos,pos,We see the underwater sea floor.,Two people\nanetv_Ho0eNR4jvEg,8721,Two people swim in front of the camera. We,see a man holding a camera.,appears in the ocean under the water as people sit around it.,see the women playing in a room at the end of the yard.,see the sitting divers perform their tango.,see a black screen with words.,gold0-orig,pos,unl,unl,pos,pos,Two people swim in front of the camera.,We\nanetv_dI1RqUHyWYo,13737,\"Several divers jump off of the diving board into the water below performing many techniques including flips. More, less successful dives\",are shown near the end of the clip before the scene fades to black.,into the water with all pairs of feet.,and sometime one is moving.,in the water as the people dive in the water.,\", briefly gliding in the water.\",gold0-orig,pos,unl,unl,unl,unl,Several divers jump off of the diving board into the water below performing many techniques including flips.,\"More, less successful dives\"\nanetv_dI1RqUHyWYo,13736,Several people at an indoor pool jump off of a diving board into the pool water below exhibiting a mix of advanced diving techniques and diving technique mishaps. Several divers,jump off of the diving board into the water below performing many techniques including flips.,\"are shown that include legs displaying various different arrows, kicking up their leap, while several other designer get out one by one.\",\"begin to dive onto the chasm, the other end of the sand is jet at the other end of the board.\",\"stand from a very young lake, while swimming in the water, pedestrian and white seem to go on the water of someone.\",get into a jungle and jump from the rope to a different fish.,gold0-reannot,pos,unl,unl,unl,unl,Several people at an indoor pool jump off of a diving board into the pool water below exhibiting a mix of advanced diving techniques and diving technique mishaps.,Several divers\nanetv_tS2d90ZGmeA,992,A montage of people excercising is shown with titles. A woman and man,take turns talking to the camera while they are in the gym.,walk up street behind the marching band and are seen dancing together.,play blading around a wall.,appear to talk back and forth about the items of time cake.,are seen speaking to the camera in slow motion.,gold0-orig,pos,unl,unl,unl,unl,A montage of people excercising is shown with titles.,A woman and man\nanetv_tS2d90ZGmeA,993,A woman and man take turns talking to the camera while they are in the gym. Helpful hints,are shown on the side of the screen.,appear to spin the events on the screen.,appear on the screen screen for the video.,are shown into several shots that are all over the screen.,,gold0-orig,pos,unl,unl,pos,n/a,A woman and man take turns talking to the camera while they are in the gym.,Helpful hints\nanetv_tS2d90ZGmeA,18364,A man and a woman run and exercise in a gym. The woman and the man,talk in the gym and give advice if a person is cramped up.,stand and lift the woman in the air into the middle.,break the male in the lift.,begin to do exercise and exercise in the gym.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman run and exercise in a gym.,The woman and the man\nanetv_tS2d90ZGmeA,994,Helpful hints are shown on the side of the screen. The man and woman,continue speaking to the camera.,are shown together using a textured to ones another.,are shown doing the same thing.,perform playing drum ups with the camera.,are in a not interrupted front room working together.,gold0-reannot,pos,unl,unl,unl,unl,Helpful hints are shown on the side of the screen.,The man and woman\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5082,He grasps it in his hand. He,puts it in his jacket pocket.,awakens while folding the others.,takes a pair of latex gloves.,dives for a neck then falls.,\"looks to someone, who looks up at him.\",gold0-orig,pos,unl,pos,pos,pos,He grasps it in his hand.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5078,The wedding reception is in full swing. A soft light,spills out of the marquis.,illuminates someone's bed.,shines across the mat.,pours through the glass.,,gold1-orig,pos,unl,unl,pos,n/a,The wedding reception is in full swing.,A soft light\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5080,Someone stands in the covered walkway. The Snitch,is hovering beside him.,sinks up quickly into billowing sand.,\"fall down, dripping in untouched growls.\",crawls casually and grabbed.,,gold0-orig,pos,unl,unl,pos,n/a,Someone stands in the covered walkway.,The Snitch\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5081,The Snitch is hovering beside him. He,grasps it in his hand.,makes a swift kick to the wall.,\"slowly straightens up on the shoulders of the adidas label, then shrugs, looks up at him, then looks around.\",delivers the gesture if he wants.,looks at someone sharply.,gold0-orig,pos,unl,unl,unl,pos,The Snitch is hovering beside him.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5083,Glasses magically fill with Champagne. Someone,looks up at her admiringly.,hugs herself and opens the carton.,concentrates hard and looks across at the prisoner.,\"stands at the window of the lincoln, waiting.\",,gold0-orig,pos,unl,unl,pos,n/a,Glasses magically fill with Champagne.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93758,5079,A group of men keep guard outside. Someone,stands in the covered walkway.,faces his lifeless companion.,shoves him toward someone who recognizes him.,trots toward the building through crowds on the platforms.,looks at the photo.,gold1-reannot,pos,unl,unl,unl,pos,A group of men keep guard outside.,Someone\nlsmdc3012_BRUNO-4342,16590,\"Now, unchained, the guys leave the Madison County Office of Alternative Sentencing and Release. Both men\",are wrapped in gray blankets.,gather in plant areas.,wins and stare after her.,emerge from an elevator doorway and glimpse someone and someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, unchained, the guys leave the Madison County Office of Alternative Sentencing and Release.\",Both men\nlsmdc3012_BRUNO-4342,16588,Someone grabs a man's sign. The protester,struggles to get away.,turns to another aide still shooting the barrel.,grabs his cellphone and leads the charge to minas bust.,\"grabs a lantern, wearing the gloom.\",retrieve the finishes product.,gold1-orig,pos,unl,unl,unl,unl,Someone grabs a man's sign.,The protester\nanetv_9GYLUAFgCXE,5717,A group of musicians perform on a street while pedestrians and motor vehicles pass by. The camera pans,to show spectators standing and watching the performance.,to show end and is shown running across the street as people argue for the marching band.,indoors to show the band playing with a band.,\"around, and the two continue performing a thumbs down with her faces as they dance their hands.\",pass them as the pictures show it arriving.,gold1-orig,pos,unl,unl,unl,unl,A group of musicians perform on a street while pedestrians and motor vehicles pass by.,The camera pans\nanetv_9GYLUAFgCXE,6893,Street musicians perform on a busy street corner with a table with a red table cloth displaying their music cd's. People,walking and shopping in every direction.,do a dog go on the sidewalk.,are walking across the street on a sidewalk in a rundown apartment.,play a sign with a musical table.,are working on the black man for events in and make activities in outdoor setting.,gold0-orig,pos,unl,unl,unl,unl,Street musicians perform on a busy street corner with a table with a red table cloth displaying their music cd's.,People\nanetv_9GYLUAFgCXE,6895,A couple dressed in Mickey and Minnie Mouse stand in the square looking at the surroundings. People,are taking pictures and videos of the buildings and people everywhere.,remove clothes in a clothing room.,and a green helicopter fly overhead.,head up and registering pictures on the mountains.,,gold0-orig,pos,unl,unl,unl,n/a,A couple dressed in Mickey and Minnie Mouse stand in the square looking at the surroundings.,People\nanetv_9GYLUAFgCXE,5719,The camera pans to show pedestrians and the city skyline. The camera,moves down the street following pedestrian traffic.,goes up the road past a new man picking out van parked and going out.,pans out to show people and a cameraman.,pans back to show people as people go.,,gold0-reannot,pos,unl,pos,pos,n/a,The camera pans to show pedestrians and the city skyline.,The camera\nanetv_9GYLUAFgCXE,6894,People walking and shopping in every direction. A couple dressed in Mickey and Minnie Mouse,stand in the square looking at the surroundings.,sitting next to the camels.,tops standing onto a man sitting on drums couch and gambling.,kills and counting the sword down.,talks during a video about how to make a rubix cube and formula marshmallows.,gold0-reannot,pos,unl,unl,unl,unl,People walking and shopping in every direction.,A couple dressed in Mickey and Minnie Mouse\nanetv_icOO9whIgX8,17155,A yellow frame with girls playing Lacross opens up the video. A game of girls Lacross,is going on as different slides are shown.,hurling in unison towards horses and teams.,gives a long jump on a lake.,make out a silver number group of people in other outfits with two balls and watch.,perform a prescription tutorial and are in played.,gold0-orig,pos,unl,unl,unl,unl,A yellow frame with girls playing Lacross opens up the video.,A game of girls Lacross\nanetv_icOO9whIgX8,17156,A game of girls Lacross is going on as different slides are shown. The game,ends with a penalty shot.,keeps going in the gutter.,changes showing a young man performing.,begins and a group of adults come up.,,gold0-orig,pos,unl,unl,pos,n/a,A game of girls Lacross is going on as different slides are shown.,The game\nanetv_D-XCWhvStd4,8522,We see the title screens for the video. We,see a person skiing.,see the kids working.,see two tennis screens.,see the people fighting outside.,,gold0-orig,pos,pos,pos,pos,n/a,We see the title screens for the video.,We\nanetv_D-XCWhvStd4,8527,The man pours wax and we get instructions before he irons the wax on the ski. The man,scrapes the wax and brushes the ski.,pull the ski off the ski ski.,dives back the ski.,puts down the contents of the pumpkin.,grabs the mouthpiece of his bike and rubs it along the boat.,gold0-orig,pos,unl,unl,unl,unl,The man pours wax and we get instructions before he irons the wax on the ski.,The man\nanetv_D-XCWhvStd4,8526,We see colorful wax and a man turning a dial. The man pours wax and we,get instructions before he irons the wax on the ski.,see a man upon the hill holding up the camera.,see this many more the wonder.,see the man on the scrap of wax.,see a man measuring the distance.,gold0-orig,pos,unl,unl,unl,pos,We see colorful wax and a man turning a dial.,The man pours wax and we\nanetv_D-XCWhvStd4,8525,A man brushes and rubs the ski. We,see colorful wax and a man turning a dial.,see the cooked pasta on the table.,see the man laying plaster down on his back.,see a man on a building with a white shoes.,,gold0-orig,unl,unl,unl,unl,n/a,A man brushes and rubs the ski.,We\nanetv_D-XCWhvStd4,8524,We see a man adds a band on a ski and the ski sits on a contraption. A man,brushes and rubs the ski.,stands at a ladder and lets go of the wind.,cleans an open area using a white plastic tool.,stands in a driveway next to the boat.,cleans the hood with a clamp.,gold0-orig,pos,unl,unl,unl,unl,We see a man adds a band on a ski and the ski sits on a contraption.,A man\nanetv_D-XCWhvStd4,8523,We see a person skiing. We,switch to a workshop and a list of tools.,see people in a strip in tubes and boarding snow in a dark blizzard.,see an animal swimming pool with stuff.,see the water run as fast as lands.,see the team perform a high jump.,gold1-reannot,pos,unl,unl,unl,pos,We see a person skiing.,We\nlsmdc0022_Reservoir_Dogs-59174,18101,Someone heads for the door. The other two men just,follow him with their eyes.,sit before the cafe.,find someone sprawled at the table.,step into the building.,lock the gates behind them.,gold1-reannot,pos,unl,unl,pos,pos,Someone heads for the door.,The other two men just\nanetv_vZmDiMGYCo0,18552,Two small kids sit in a box at the top of slide in an indoor play area. A little girl,joins and plays on the slide.,is behind the recording or play a violin.,holds a yellow rake for a child to set it.,does the same on front a large group of kids knitting in each other.,joins the kids and takes off a fur slide.,gold0-orig,pos,unl,unl,unl,unl,Two small kids sit in a box at the top of slide in an indoor play area.,A little girl\nanetv_vZmDiMGYCo0,18553,A little girl joins and plays on the slide. The girls leaves and the boys,take turns going down the slide.,continue playing the guitar in the background.,demonstrate how to play the piano.,finish skiing in the slope.,streaming into the baby.,gold0-orig,pos,unl,unl,unl,unl,A little girl joins and plays on the slide.,The girls leaves and the boys\nanetv_vZmDiMGYCo0,18554,The girls leaves and the boys take turns going down the slide. The boys,connect a slide to the first one and try out the new slide.,go through the living room towards both of them and the kids finally come up to see.,continue competing in a gym with their sister in their arms.,stand returns to shoot as they go.,continue to twirl all around one another and ends by smiling to the camera.,gold1-orig,pos,unl,unl,unl,pos,The girls leaves and the boys take turns going down the slide.,The boys\nanetv_vZmDiMGYCo0,18556,Two kids run over and away. The last boy runs off and we,see the slide ladder.,see her spraying back the camera.,see the man's other fall.,see way though upset.,,gold1-reannot,pos,unl,unl,unl,n/a,Two kids run over and away.,The last boy runs off and we\nanetv_Xjw9vUwILOE,1221,A man performs a long jump on a track and into a sandpit in front of judges and onlookers on the sidelines. After the man lands the jump he,\"explodes in celebration by clenching his fists, after which a slow replay of the jump plays and a scoreboard displays his score.\",runs down a track and takes a green pole.,\"drops their arms, knocking the guy up to the ground.\",jumps on a jump board that quickly swings a rope and walks to a line until gradually walking backwards off the field.,\"runs in the plaza, then flips twice his head routine.\",gold0-orig,pos,unl,unl,unl,unl,A man performs a long jump on a track and into a sandpit in front of judges and onlookers on the sidelines.,After the man lands the jump he\nanetv_Xjw9vUwILOE,15528,Man is smiling and fells in the track of happiness. men,are sitting on white chairs next to a racetrack.,are seated on a table together decorating a christmas tree while sitting in chairs.,are in the court watching them win.,are watching them taking a picture to the use of the throw.,,gold0-orig,pos,unl,unl,unl,n/a,Man is smiling and fells in the track of happiness.,men\nanetv_Xjw9vUwILOE,15527,Man is standing in a race track running and making a long jump and the video shows a repetition. man,is smiling and fells in the track of happiness.,bend flying in the sky and score a flag.,is mounted on the side and direction of the track.,is talking and showing images of products in his hands.,lets it go and then splits go.,gold0-reannot,pos,unl,unl,unl,unl,Man is standing in a race track running and making a long jump and the video shows a repetition.,man\nanetv_E2KlBkQJyzU,2725,Two people are seen sitting on a ski bench putting on gear and leads into people pushing a puck around a hockey rink. Several shots,are shown of the players skating around the ice and playing the sport of hockey.,are shown of people as well as jumping over the balls along the track and taking net.,are shown of people fencing around one another and speaking around the camera and looking to one another.,are shown of people pole volting as well as a large person leading the people.,are shown of the area clapping with others and passing others and others cheering.,gold0-orig,pos,unl,unl,unl,pos,Two people are seen sitting on a ski bench putting on gear and leads into people pushing a puck around a hockey rink.,Several shots\nanetv_56m7PcBuUFc,5254,A girl is pushing two little boys on a backyard swing. She,smiles at the camera as she pushes the boys back and forth.,jumps up next to the swing at monkey bars.,\"seems to be going from very high, but it does n't look like they are going for a moment.\",swings the monkey around the shoulders and catches them.,plays with the dog and the girl spins her stick around.,gold0-orig,pos,unl,unl,unl,unl,A girl is pushing two little boys on a backyard swing.,She\nlsmdc3092_ZOOKEEPER-45228,19044,Gorilla stops playing with his swinging ball and turns to find. He,enters holding a two - tiered orange cake with lit candles.,joins people who quickly turns away and stares at the discus then faces the group.,\"shows wine and droppings to someone, a bartender in a burlesque setting.\",takes off his glasses and leans back into his chair.,,gold0-orig,pos,unl,pos,pos,n/a,Gorilla stops playing with his swinging ball and turns to find.,He\nanetv_vzrZJX-Slzg,9684,The medal is cooled down and the finished weld can be seen. The man,picks up a tool from the ground.,puts out a grilled potato as best she can from the flying kitchen.,proceeds to rise again and continues to do their final task.,lays on the ground and kneels in front of a pile of grass.,,gold0-orig,pos,unl,unl,unl,n/a,The medal is cooled down and the finished weld can be seen.,The man\nanetv_vzrZJX-Slzg,3861,The camera pans to show an individual welding something on a large metal drill head. The man stops welding and the camera,zooms in on the part of the drill head affected.,shows names of the tools a robot's tool is presented.,zooms in on to show a crooked picture of his leg above the mirror.,zooms in on the watermelon.,zooms in on the man wearing a blue shirt.,gold0-orig,pos,unl,unl,unl,pos,The camera pans to show an individual welding something on a large metal drill head.,The man stops welding and the camera\nanetv_vzrZJX-Slzg,9683,A portable power sources has electric tools plugged into it. A man,welds a large steel construction drill.,pins his ear to the startled boy.,walks on a pull cord and then catches another tire.,is near colored hopscotch.,,gold0-orig,pos,unl,unl,unl,n/a,A portable power sources has electric tools plugged into it.,A man\nanetv_vzrZJX-Slzg,3860,The camera focuses on some sort of machinery with many wires and hoses connected. The camera pans,to show an individual welding something on a large metal drill head.,out to interviews the techniques held together.,back and fourth while moving the rest further up and down.,straight and shows several pictures of the lens of another timekeeper as is climbing the car.,back to the camera as the camera captures them from the scene.,gold0-orig,pos,unl,unl,unl,unl,The camera focuses on some sort of machinery with many wires and hoses connected.,The camera pans\nlsmdc3013_BURLESQUE-4929,1538,\"Standing apart, someone snaps a photo. Someone\",gazes tenderly at him.,stamps a binder off a stack of crates.,examines a man's money.,fastens her nightie and looks down.,looks back in shock.,gold0-orig,pos,unl,pos,pos,pos,\"Standing apart, someone snaps a photo.\",Someone\nlsmdc3013_BURLESQUE-4929,1537,\"Peeking out from behind a fan, she comically blows feathers and hair out of her face. Now someone\",blows out birthday candles.,lies in bed.,holds a leash to a loose tree - lined street in a grassy park.,spies someone in their low auburn - like arms.,,gold1-orig,unl,unl,unl,unl,n/a,\"Peeking out from behind a fan, she comically blows feathers and hair out of her face.\",Now someone\nlsmdc3013_BURLESQUE-4929,1533,\"Turning away, she lowers the fan and shimmies. Quickly covering herself, she\",faces the crowd again.,gazes into the high water.,fits it stiffly closed.,struggles out of view.,steps away from her husband.,gold1-orig,pos,unl,unl,unl,pos,\"Turning away, she lowers the fan and shimmies.\",\"Quickly covering herself, she\"\nlsmdc3013_BURLESQUE-4929,1532,\"A dancer hands her a fan. Turning away, she\",lowers the fan and shimmies.,looks up as someone enters the room and draws beside his witch in the center room.,finds a graceful figure then places the ring behind her belly.,crosses to a small cabinet displaying a knit pin that has been bouquets on the other bow of her hand.,lowers her hands one at a time then heads to the picture.,gold0-orig,pos,unl,unl,unl,pos,A dancer hands her a fan.,\"Turning away, she\"\nlsmdc3013_BURLESQUE-4929,1540,\"As she flings them away, her backup dancers raise two more in their place. They\",\"part the fans, revealing her naked form.\",\", they sit.\",scope on the penguins.,\"her, someone scampers off up the stairs through a half - filled corridor, shy of the wall.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As she flings them away, her backup dancers raise two more in their place.\",They\nlsmdc3013_BURLESQUE-4929,1542,\"He stares, slack - jawed. Someone\",carries a crate of glasses away.,strokes the boy's lifted gaze.,\"wipes his thumb over the shoe and nods, leaving the person in the center of the room.\",draws position to defend someone.,shakes the guard with a helpless stare.,gold1-orig,pos,unl,pos,pos,pos,\"He stares, slack - jawed.\",Someone\nlsmdc3013_BURLESQUE-4929,1534,Her pearl briefs fly off. She,snatches another fan from a dancer.,meets up towards the dock on her way followed by a flame.,sips the wine and steps down onto a bus.,\"enters with an orchid, a document product on a card.\",leash fumes on the house four colonnade!,gold1-orig,pos,unl,unl,unl,unl,Her pearl briefs fly off.,She\nlsmdc3013_BURLESQUE-4929,1536,She shows an engagement ring. The girls,rush to hug her.,play cricket on a video display.,performs hands together as the teacher attempts to slip.,turn away from other side.,shift in the sunshine.,gold0-orig,pos,unl,unl,pos,pos,She shows an engagement ring.,The girls\nlsmdc3013_BURLESQUE-4929,1535,She snatches another fan from a dancer. She,shows an engagement ring.,walks to the bathroom brushing her teeth.,keeps her hand on his.,examines her than it's time.,bangs her forehead toward the doctor's chest as she holds her chest.,gold1-reannot,pos,unl,pos,pos,pos,She snatches another fan from a dancer.,She\nlsmdc3013_BURLESQUE-4929,1543,Someone carries a crate of glasses away. Someone,arrives at someone's side.,goes to a table of st.,is dragged back through the town building and races across a sprawling brown city street.,picks up his gun and smacks it with whiskey.,lifts her leg horizontally.,gold1-reannot,pos,unl,unl,unl,pos,Someone carries a crate of glasses away.,Someone\nlsmdc3013_BURLESQUE-4929,1539,\"Onstage, she shimmies her fans. As she flings them away, her backup dancers\",raise two more in their place.,relax at the dressing room.,lift their men above their heads.,shine down her cheeks.,twist her bodies faster and flutter into the air.,gold1-reannot,pos,unl,unl,unl,unl,\"Onstage, she shimmies her fans.\",\"As she flings them away, her backup dancers\"\nlsmdc3013_BURLESQUE-4929,1541,Later she meets someone at the bar. He,\"stares, slack - jawed.\",shoves someone toward a cubicle in the chair.,\"glances toward the pack, then strides up to her friend.\",\"paces, then swigs from a bottle.\",,gold1-reannot,pos,unl,pos,pos,n/a,Later she meets someone at the bar.,He\nlsmdc3019_COLOMBIANA-8369,1385,Her eyes squeeze shut in agony. Someone,\"watches with a creased brow, a hint of tears glistening in her wide eyes.\",looks down at the burning citadel in which determinedly reaches inside and replaces the grimhold.,\"closes her eyes and steps inside, peering at a stone castle as someone steps forward.\",looks at her arm and eyes.,,gold0-orig,pos,unl,pos,pos,n/a,Her eyes squeeze shut in agony.,Someone\nlsmdc3019_COLOMBIANA-8369,1389,\"Through the open door, she sees the beefy thug ascend the staircase. He\",steps into the kitchen with his gun raised.,\"turns in her seat, her fine - toned body photo of someone's red bungalow tablet open on discarded jewelry on the table.\",runs under and pulls out a seat.,hurries over to the micah driver who follows the agent.,stops his men in front of the stone and knocks over a door.,gold0-orig,pos,unl,unl,unl,pos,\"Through the open door, she sees the beefy thug ascend the staircase.\",He\nlsmdc3019_COLOMBIANA-8369,1387,\"Tears continue to well up in her eyes as she watches her father in the doorway. From the kitchen table, someone\",\"stares at her dead parents, her body trembling slightly.\",strides up onto the counter.,\"crosses the corridor to where someone is waiting, listening to the music.\",\"sips a straw seductively, ending her call.\",tenses in horror as the explosions bludger overhead by a minivan's roof of thread.,gold0-orig,pos,unl,unl,unl,unl,Tears continue to well up in her eyes as she watches her father in the doorway.,\"From the kitchen table, someone\"\nlsmdc3019_COLOMBIANA-8369,1380,\"As he guides his daughter to sit back down at the table, his wife returns with two more guns. She\",kneels in front of her daughter.,shows his camera to someone into a hallway.,follows the little lad ground.,keeps talking and puts his hand on her cheek.,,gold0-orig,pos,unl,unl,pos,n/a,\"As he guides his daughter to sit back down at the table, his wife returns with two more guns.\",She\nlsmdc3019_COLOMBIANA-8369,1377,\"He kisses her hands then pats her cheek. Inside, someone\",removes a hand gun from a magnetic strip on the underside of the kitchen table.,\"kisses her blood gently, covering her cheek.\",wears someone's pajamas in his bedroom.,lies on top of someone.,\"settles into the bed, gazing up groggily.\",gold0-orig,pos,unl,pos,pos,pos,He kisses her hands then pats her cheek.,\"Inside, someone\"\nlsmdc3019_COLOMBIANA-8369,1388,\"From the kitchen table, someone stares at her dead parents, her body trembling slightly. Through the open door, she\",sees the beefy thug ascend the staircase.,finds her eyes on her frustrated roommate.,stands by the door.,finds someone sitting in a chair.,notices a number of recruits in the corner.,gold0-orig,pos,unl,unl,unl,unl,\"From the kitchen table, someone stares at her dead parents, her body trembling slightly.\",\"Through the open door, she\"\nlsmdc3019_COLOMBIANA-8369,1390,He steps into the kitchen with his gun raised. Another thug,enters with someone behind him.,unwraps a small piece.,buzzes stuck in the back.,backs up in a frightened.,grabs a book and opens a wall on one of the other's supplies.,gold1-orig,pos,unl,unl,unl,unl,He steps into the kitchen with his gun raised.,Another thug\nlsmdc3019_COLOMBIANA-8369,1392,\"As the gunmen search the place tearing up couch cushions, the bearded gangster removes his sunglasses and crouches over his dead enemy. He\",shifts his gaze to someone who continues to stare straight ahead with a stoic expression.,puts a cigar to the back of his trousers.,hands someone a piece of ice foil.,rubs someone's arms and ears.,\"drops to his knees, his shield cupped over his face.\",gold0-orig,pos,unl,unl,unl,pos,\"As the gunmen search the place tearing up couch cushions, the bearded gangster removes his sunglasses and crouches over his dead enemy.\",He\nlsmdc3019_COLOMBIANA-8369,1386,\"Someone watches with a creased brow, a hint of tears glistening in her wide eyes. Tears\",continue to well up in her eyes as she watches her father in the doorway.,\"at him, he shakes her head.\",cry someone reaching out of her mobile.,blink and eye with hand.,see floor soaked wallpaper wall.,gold0-orig,pos,unl,unl,unl,unl,\"Someone watches with a creased brow, a hint of tears glistening in her wide eyes.\",Tears\nlsmdc3019_COLOMBIANA-8369,1394,\"As someone inspects the framed family photo, the beefy thug points his gun at the girl's head. Someone\",\"sits across from someone and folds his arms on the table, then eyes the beefy gunman.\",pulls away and reads on.,\"takes his light sunglasses off, collects it and sketches it out of the windows.\",heads for his car.,\"shoots him a frustrated look, then looks down at his back and stands.\",gold0-orig,pos,unl,unl,pos,pos,\"As someone inspects the framed family photo, the beefy thug points his gun at the girl's head.\",Someone\nlsmdc3019_COLOMBIANA-8369,1383,\"Someone leads Alicia to the staircase, firing a shotgun. Someone\",sees her mother racing back up the stairs.,calmly shakes his head.,pulls the cocktail ring out of his pocket.,\"jumps up, but someone grabs her leg.\",punches the tall thug in the back.,gold0-orig,pos,unl,unl,unl,pos,\"Someone leads Alicia to the staircase, firing a shotgun.\",Someone\nlsmdc3019_COLOMBIANA-8369,1384,Someone sees her mother racing back up the stairs. Her eyes,squeeze shut in agony.,widen as an alien steps out from the tree's hedges.,drift down to his now naked body shoulder and waist.,remain closed as she carries now.,crack open as they look down.,gold1-orig,pos,unl,pos,pos,pos,Someone sees her mother racing back up the stairs.,Her eyes\nlsmdc3019_COLOMBIANA-8369,1391,\"Another thug enters with someone behind him. As the gunmen search the place tearing up couch cushions, the bearded gangster\",removes his sunglasses and crouches over his dead enemy.,steals an apple from a window and aims at someone.,sprays down a window with a knife.,flops himself on to the ground.,gives someone a cigarette then sits.,gold0-orig,pos,unl,unl,unl,pos,Another thug enters with someone behind him.,\"As the gunmen search the place tearing up couch cushions, the bearded gangster\"\nlsmdc3019_COLOMBIANA-8369,1378,\"Inside, someone removes a hand gun from a magnetic strip on the underside of the kitchen table. A knife\",rests on another strip beside it.,loads the gunpowder from china and uncovers the barrel.,is silverware in a workshop now disguised as the same logo on a drawer.,holding head - illuminating his face.,\"shoots out, becoming a spark.\",gold0-reannot,pos,unl,unl,unl,unl,\"Inside, someone removes a hand gun from a magnetic strip on the underside of the kitchen table.\",A knife\nlsmdc3019_COLOMBIANA-8369,1393,\"He shifts his gaze to someone who continues to stare straight ahead with a stoic expression. As someone inspects the framed family photo, the beefy thug\",points his gun at the girl's head.,joins him with a conscious smirk.,collapses to his knees and swings his legs along the tug as someone rides toward the hummer.,chops him with the confetti.,reaches for a pomade.,gold0-reannot,pos,unl,unl,unl,unl,He shifts his gaze to someone who continues to stare straight ahead with a stoic expression.,\"As someone inspects the framed family photo, the beefy thug\"\nanetv_KylUHdDXuCg,5665,An intro leads into several clips of people attempting to fight bulls from many generations. Several clips,are shown of people interacting with the bulls as well as running around and people watching.,are shown of people playing bumper cars with one another in the bumper.,are then shown of people riding along a beach and speaking to the camera while a man speaks to the camera.,are shown of people riding in various clips as more people run towards the bulls.,are shown of him cheering and interacting with a bull.,gold0-orig,pos,unl,unl,pos,pos,An intro leads into several clips of people attempting to fight bulls from many generations.,Several clips\nanetv_bW5HfDWUP3U,14149,The woman puts one shoe on. Something is thrown at the woman and she,attempts to catch it.,starts to work on the front leg.,bends down showing viewers the woman shoe spray.,starts to skateboard on the skateboard.,is talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,The woman puts one shoe on.,Something is thrown at the woman and she\nanetv_bW5HfDWUP3U,14152,The camera returns to the woman still putting the shoe on. The camera,\"shifts right to several individuals in the room, waiting for the woman to put her shoes on.\",shows the lady scooping out a spray bottle she put on.,follows and the woman with a photo appears off the screen.,\"pans back to the woman, who is smiling and smiling.\",,gold0-orig,pos,unl,pos,pos,n/a,The camera returns to the woman still putting the shoe on.,The camera\nanetv_bW5HfDWUP3U,14150,Something is thrown at the woman and she attempts to catch it. The camera briefly,shifts right to show another individual.,spins but keeps as she rolls upside down.,shows a pocket are her own haircut.,shows another woman who had in her behind another as people looks around as closeups of the models are shown.,goes back to her driving and shifts at work.,gold0-orig,pos,unl,unl,unl,unl,Something is thrown at the woman and she attempts to catch it.,The camera briefly\nanetv_bW5HfDWUP3U,14154,\"The camera shifts back to the woman, still putting her shoe on. The woman\",begins putting the other shoe on.,is now throwing a dart into the sink.,demonstrates using brush to dry a woman's hair with a grey brush.,sits on the brown stool and begins to close the table.,stops in front of the mirror then looks around.,gold0-orig,pos,unl,unl,unl,unl,\"The camera shifts back to the woman, still putting her shoe on.\",The woman\nanetv_bW5HfDWUP3U,14148,A woman is sitting on the floor with her shoes off. The woman,puts one shoe on.,is brushing her hair with an electric shaver.,looks up and smiles while watching.,bends down and starts brushing her legs.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is sitting on the floor with her shoes off.,The woman\nanetv_bW5HfDWUP3U,14153,\"The camera shifts right to several individuals in the room, waiting for the woman to put her shoes on. The camera\",\"shifts back to the woman, still putting her shoe on.\",pans all around the men and shows as well groomed and different groomed as well.,changes to a large thick snowy of woods with several other clothes on.,\"captures both on the demonstrating the technique, then she continues in indoors.\",pans around as they turn and look at the camera waving their hands.,gold1-orig,pos,unl,unl,unl,unl,\"The camera shifts right to several individuals in the room, waiting for the woman to put her shoes on.\",The camera\nanetv_bW5HfDWUP3U,14151,The camera briefly shifts right to show another individual. The camera,returns to the woman still putting the shoe on.,taking turns gets the boy now using his hands again.,focuses with the rafts down but of survivors.,pans in and out of frame as well.,pans the crowds around the floor.,gold1-reannot,pos,unl,unl,pos,pos,The camera briefly shifts right to show another individual.,The camera\nanetv_zgnBeiEB5pE,17332,\"She then asks him: what is a horse's neck? and he tells her where it originated from and why it's called the horse's neck. Then they start to actually make the drink themselves and when they're done, they\",toast and begin drinking.,'re all done with forgotten.,get back into a fire.,are catch his candy in the pool.,continue on washing tail arms and pass all over a language.,gold0-orig,pos,unl,unl,unl,unl,She then asks him: what is a horse's neck? and he tells her where it originated from and why it's called the horse's neck.,\"Then they start to actually make the drink themselves and when they're done, they\"\nanetv_zgnBeiEB5pE,17917,\"Various small scene cuts with glasses, ice, liquor, lemons, limes, people socializing, liquor bottles, funnels lead to titles of the video. A man and woman\",are presenting a video and are explaining how to make an alcoholic drink.,are then shown drinks from a jar.,load a coconut inside an oven.,are engaged in a game of beach soccer.,,gold1-orig,pos,unl,unl,unl,n/a,\"Various small scene cuts with glasses, ice, liquor, lemons, limes, people socializing, liquor bottles, funnels lead to titles of the video.\",A man and woman\nanetv_RJpWgi0EaUE,11536,The female stands and also hugs the man. A man,stand and then sits.,spins another handcuff key.,picks up a javelin and turns off the camera while people watch.,whips his hair and pulls the beard.,is kayaking back and forth in a river.,gold0-orig,pos,unl,unl,unl,unl,The female stands and also hugs the man.,A man\nanetv_RJpWgi0EaUE,11531,The man and female touch hands while sitting. The man,claps his hands together.,gives few thumbs up.,finishes dancing and spin around with the two boys before facing each other.,turns the chair.,,gold1-orig,pos,unl,unl,unl,n/a,The man and female touch hands while sitting.,The man\nanetv_RJpWgi0EaUE,11534,A man walks from backstage. The man,shake hands and hugs one of the man on stage.,moves to a gas tank and talks while wearing a helmet's gloves.,stops and stops sanding.,fixes his awards and removes the rod.,,gold1-orig,pos,unl,pos,pos,n/a,A man walks from backstage.,The man\nanetv_RJpWgi0EaUE,11528,The man cover his face with his hand. The man and woman,gesture the dancers hand movements.,remove their supplies in position.,are marching in the other center.,fall off the hood again.,continue to climb the tree.,gold0-orig,pos,unl,unl,unl,unl,The man cover his face with his hand.,The man and woman\nanetv_RJpWgi0EaUE,11535,The man shake hands and hugs one of the man on stage. The female,stands and also hugs the man.,man dance with a microphone while speaking in microphone or perhaps inches of black.,runs in and pose with his hand.,girl takes his ring and they run into the parking embrace.,claps and claps his hands while standing behind them.,gold0-orig,pos,unl,unl,unl,pos,The man shake hands and hugs one of the man on stage.,The female\nanetv_RJpWgi0EaUE,11530,This man gets off his seat and knees. The man,gets of his knees and sits back down.,reaches out his face and starts blow the leaves.,lurches on his welding helmet.,wipes his face with his foot and winces.,is shaving his shoulders while going to shave his legs.,gold0-orig,pos,unl,unl,unl,unl,This man gets off his seat and knees.,The man\nanetv_RJpWgi0EaUE,11538,The man in a black suit dances and then sits. The man in a brown suit,returns to the backstage area.,smokes the cigarette while the crowd cheers.,put a name on the bar.,walks in front and plays a violin.,jumps over a shirtless woman.,gold1-orig,pos,pos,pos,pos,pos,The man in a black suit dances and then sits.,The man in a brown suit\nanetv_RJpWgi0EaUE,11532,The man claps his hands together. The man,waves at a man backstage to join them.,looks to the camera and shifts his eyes.,continues to play the instrument at the piano.,spins and throws his arms in the air.,shakes his head again.,gold1-orig,pos,pos,pos,pos,pos,The man claps his hands together.,The man\nanetv_RJpWgi0EaUE,11529,The man and woman gesture the dancers hand movements. This man,gets off his seat and knees.,shakes hands for a smile and then laughs.,shows her experiences in the bar.,is then shown playing with the young man perform in the background.,,gold1-reannot,pos,unl,unl,unl,n/a,The man and woman gesture the dancers hand movements.,This man\nanetv_RJpWgi0EaUE,11533,A standing man who is backstage claps. The two boy dancers,are shown extending one hand.,disappear from the stands.,are in a man pose for the last stage.,perform on an outdoor court.,are in their room clapping.,gold1-reannot,pos,unl,unl,pos,pos,A standing man who is backstage claps.,The two boy dancers\nanetv_RJpWgi0EaUE,11539,The man in a brown suit returns to the backstage area. The man,is shown while backstage.,takes off his bow and faces his horse.,exits the parade with two other women.,is talking in the bar talking to a teen.,taps his phone toward the wall again.,gold0-reannot,pos,unl,unl,unl,unl,The man in a brown suit returns to the backstage area.,The man\nlsmdc3001_21_JUMP_STREET-538,10949,\"He opens the door to reveal the One - Percenter's leader the bearded biker and the swarthy Hispanic biker. As a few others follow, someone and someone\",keep a low profile.,indicate their coveralls to drive.,leave the hall and stop.,follow a hobbit across them.,\"sit across the table, their glasses hunched together.\",gold1-orig,pos,unl,unl,unl,pos,He opens the door to reveal the One - Percenter's leader the bearded biker and the swarthy Hispanic biker.,\"As a few others follow, someone and someone\"\nlsmdc3001_21_JUMP_STREET-538,10950,\"As a few others follow, someone and someone keep a low profile. He\",hands a bag to the bearded thug.,sets his back on his desk.,\"slips the pin in his cuffed hands, shakes her shapely neck again.\",\"smiles, takes them out, and takes a heavy book from someone's jacket.\",\"begun to reach someone, gets to his someone and goes over to someone's kiosk.\",gold1-orig,pos,unl,unl,unl,unl,\"As a few others follow, someone and someone keep a low profile.\",He\nlsmdc3001_21_JUMP_STREET-538,10947,The hookers help the nerds conduct surveillance. Someone fake,punches someone's abs.,cronies hug past the children.,silhouettes of whistles surround the grand hall.,\"her nipples and throws back her elbow again, together.\",,gold1-orig,pos,unl,unl,unl,n/a,The hookers help the nerds conduct surveillance.,Someone fake\nlsmdc3001_21_JUMP_STREET-538,10948,Someone fake punches someone's abs. He,lunges tauntingly at someone.,can't shake goes on.,haired someone studies him.,rubs his palms together tearfully.,shoves him over the bathtub.,gold0-orig,pos,unl,unl,unl,unl,Someone fake punches someone's abs.,He\nlsmdc3001_21_JUMP_STREET-538,10951,He hands a bag to the bearded thug. A long - haired biker,eats peanut butter from a jar.,looms at the crest of a long engine.,runs over to a burning chair on a wooden bench.,\"picks up a flamethrower, opens it, and shows the pager across the bedside table.\",,gold1-reannot,pos,unl,unl,unl,n/a,He hands a bag to the bearded thug.,A long - haired biker\nanetv_H-yBxySDyTw,17471,A man in a office chair is sitting with some type of pen up. He,\"talks about it for a little while and then put it in his mouth, turns out its an e - pen.\",clips several large cups on his face and focuses them back to the pins.,\"is peeling a copy of paper, while a doctor is on a tattoo on a side.\",rolls the paper into a big bowl and takes it from the pumpkin with his hand and tape.,\"appears, walks up and pulls a dart from his hand.\",gold0-orig,pos,unl,unl,unl,unl,A man in a office chair is sitting with some type of pen up.,He\nanetv_H-yBxySDyTw,17473,It's a new technology that you can smoke like a cigarette. He,holds it in his hands like a cigarette and puts it in his mouth and exhales smoke.,is a very small intro with a blue word wetsuit on it.,pays insistently end cocks his head.,looks again at the table and proceeds.,,gold0-orig,pos,unl,unl,unl,n/a,It's a new technology that you can smoke like a cigarette.,He\nanetv_H-yBxySDyTw,17472,\"He talks about it for a little while and then put it in his mouth, turns out its an e - pen. It\",'s a new technology that you can smoke like a cigarette.,blows up his nose and someone keeps his lips on hers.,is talking to the camera as to finish to question the correct technique for how to play lee.,stops in the middle at the end of the rope.,\"mike, the video continues on the video.\",gold0-orig,pos,unl,unl,unl,unl,\"He talks about it for a little while and then put it in his mouth, turns out its an e - pen.\",It\nanetv_UPwDuuYlLfQ,15749,A person is shaving the dogs hair. The dog,is trying to bite the person cutting its hair.,is blowing blow dried.,jumps off the snow and jumps up and down.,ties around a bun.,brushes the dogs with a blow dryer.,gold0-orig,pos,unl,unl,unl,unl,A person is shaving the dogs hair.,The dog\nanetv_UPwDuuYlLfQ,924,A close up of a dog is shown with a person's hands cutting the dog's fur. The dog,continuously bites at the cutter and sticks it's mouth open exposing it's teeth.,is seen brushing the dog to a larger dog while the dog moves around.,brushes the dog's fur while another person begins paddling the dog in the end of the leash.,comes up over the dog and shows her teeth and leads into her licking her cat.,continues drying the dog's hair while smiling to the camera.,gold0-reannot,pos,unl,unl,unl,unl,A close up of a dog is shown with a person's hands cutting the dog's fur.,The dog\nanetv_UPwDuuYlLfQ,15748,A dog is sitting on a table. A person,is shaving the dogs hair.,is styling a boy's hair with a shaver.,is helping a woman up on the floor.,is cleaning a table using a mop.,is peeling a potato in a bowl.,gold1-reannot,pos,unl,unl,unl,unl,A dog is sitting on a table.,A person\nlsmdc1027_Les_Miserables-6356,2986,He fires into a wall. Someone,stops and looks back then heads off into the dark.,turns to find someone who lies prone with his pillow on the ground.,lays the handcuffs down and sniffs another.,takes the gun and drops it onto the lowest of the floor.,balances on the dash.,gold0-orig,pos,unl,unl,unl,unl,He fires into a wall.,Someone\nlsmdc1027_Les_Miserables-6356,2988,Someone goes back to join the others. They,sit around regarding him with serious expressions.,\"look towards the servants, who are sitting on lei upside down near him.\",begin to fight and return their guns to yelling.,run out to chase.,walk in the back.,gold0-orig,pos,unl,unl,unl,pos,Someone goes back to join the others.,They\nanetv_qeyFjCAA_dg,1965,Man is sitting in a bed in a living room talking to the camera and showing how to do abs. the man,lay on the bed and start doing crunches.,\"commands the video to show how he works, shiny and enraged.\",is applying a black substance while still speaking to the camera.,put a harmonica and shoot out of his face while explaining.,cuts the man's beard in front of three glasses to talk to the camera.,gold0-orig,pos,unl,unl,unl,unl,Man is sitting in a bed in a living room talking to the camera and showing how to do abs.,the man\nanetv_qeyFjCAA_dg,2575,He then shows how to do stomach crunches by holding the back of head with his hands and moving his body back and forth and sideways while folding his knees to his chest. He,continues doing crunches and then stops.,is then shown walking around on the bench and talking to the camera.,kneels on the floor and lies back.,\"freezes, and then stays upright and shaking his head.\",,gold0-orig,pos,pos,pos,pos,n/a,He then shows how to do stomach crunches by holding the back of head with his hands and moving his body back and forth and sideways while folding his knees to his chest.,He\nanetv_qeyFjCAA_dg,2574,There's a young man wearing a blue shirt and black hat demonstrating on a bed and talking about fitness. He,is talking about fitness as he lays on his back to demonstrate crunches by doing actions with his arms.,walks and talks when he walks to the end and begins doing the paper.,juggles the balls for her practice.,is explaining how to do the snowboard work.,is shown talking to the camera while he demonstrates how to play a dart.,gold0-orig,pos,unl,unl,unl,unl,There's a young man wearing a blue shirt and black hat demonstrating on a bed and talking about fitness.,He\nanetv_qeyFjCAA_dg,1966,The man lay on the bed and start doing crunches. man,is showing to the camera how to make crunches on a bed.,is standing with his saxophone on a stage next to him.,is standing in the water next to a barbell.,is sitting on the back of a chair watching the tv.,,gold0-orig,pos,unl,unl,pos,n/a,The man lay on the bed and start doing crunches.,man\nanetv_0V8mzi_89Fw,17339,\"Mold is growing on the siding of a homes, which we then we see after being pressure - washed. Bare wooden surfaces of shelving is shown, and then we\",see the improvement as is is covered with a coat of white paint.,see more pumpkins in the middle of the screen.,are cleaning some cabinets outside and an inside patrol car.,see the material melting against gray and mulch.,,gold0-orig,pos,unl,unl,pos,n/a,\"Mold is growing on the siding of a homes, which we then we see after being pressure - washed.\",\"Bare wooden surfaces of shelving is shown, and then we\"\nanetv_0V8mzi_89Fw,4075,Several pictures of a roof are shown of a before and after. Afterwards the siding of a house,is shown in pictures with a before and after.,is shown with people talking in numerous different outfits.,is shown while people are navigating the beach intermittently.,is shown again followed by it to move into a person putting bigger paint.,,gold0-orig,pos,unl,unl,unl,n/a,Several pictures of a roof are shown of a before and after.,Afterwards the siding of a house\nanetv_0V8mzi_89Fw,17337,\"An asphalt - tiled roof is shown with leaves and green all over it, and then we see it clean. Once again we\",\"see a moldy, leaf covered roof, and see it clean.\",see a person peeling a roller ball off of the road.,see the shape of a man climbing into a wall.,see a person blowing dried shingles around a corner of the house.,,gold0-orig,pos,unl,unl,pos,n/a,\"An asphalt - tiled roof is shown with leaves and green all over it, and then we see it clean.\",Once again we\nanetv_0V8mzi_89Fw,4076,Afterwards the siding of a house is shown in pictures with a before and after. More pictures,are shown of homes on the inside.,are shown of them washing their face and feet up.,are shown of the woman putting a nail.,are shown of people knitting and falling down.,are shown of people standing up.,gold0-orig,pos,unl,unl,unl,pos,Afterwards the siding of a house is shown in pictures with a before and after.,More pictures\nanetv_9nE6C-efQdc,17132,\"It shows a quick clip of Sheldon from big bang theory actually doing it. Then, she\",tries to demonstrate it a few times for the viewers.,places her finger nails onto the wall and rubs down.,starts to work with her intertube.,reappears at the end of the corridor.,,gold0-orig,pos,unl,pos,pos,n/a,It shows a quick clip of Sheldon from big bang theory actually doing it.,\"Then, she\"\nanetv_9nE6C-efQdc,17133,\"Then, she tries to demonstrate it a few times for the viewers. At the end she\",smiles and ends it with another big bang theory picture.,speaks to the camera again and stops writing to be sick about it with her knife then her lips sucking from her fingers.,\"tries to kick it around, barreling around and attempting to get through the barrel for matters as she helped the board.\",talks for a bit and then begins to play two points.,is shown by herself in slow motion as a gymnast climbs in.,gold0-reannot,pos,unl,unl,pos,pos,\"Then, she tries to demonstrate it a few times for the viewers.\",At the end she\nanetv_5E42nKwv1xY,14309,Girls run onto the field and shake hands with the other team. We,see girls playing volleyball indoors.,see a girl score a score in the pool.,see a nerdist throw straight out hits at the ball.,see various faces title and get on the sports team excitedly.,see the puck bounce with a pole.,gold0-orig,pos,unl,unl,unl,unl,Girls run onto the field and shake hands with the other team.,We\nanetv_5E42nKwv1xY,14308,We see a scoreboard in a game. Girls,run onto the field and shake hands with the other team.,see a man throw a ball away the leader a man serves the ball.,are talk in two locations.,return the tokens and leave score and.,pose in front of a hockey hockey player.,gold0-orig,pos,unl,unl,unl,pos,We see a scoreboard in a game.,Girls\nanetv_5E42nKwv1xY,14310,The girls on the left make a shot and the team hugs. We,see the scoreboard and people on the sidelines talking.,see the sidelines of their waits opponents.,see the goalie wins a goal.,see the winner again and then people both fall up to the ground.,see the sumo on slow motion interviewed.,gold0-reannot,pos,unl,unl,unl,unl,The girls on the left make a shot and the team hugs.,We\nanetv_kCb2Km85Yn4,7610,A child walks into and out of frame. The little girl,slides down and is caught by the adult.,walks up a small pole sitting before a wooden stick.,walks away and pushes herself forward.,dismounts from the tree.,is pushed on the upper ground.,gold1-orig,unl,unl,unl,unl,unl,A child walks into and out of frame.,The little girl\nanetv_kCb2Km85Yn4,7609,An adult walks into frame. A child,walks into and out of frame.,appears and continues to mop for them.,sprays the sink and shakes it off.,dives on the floor in front of a climbing wall.,is seen speaking to the camera and leads into him holding a roller paddle before using it.,gold0-orig,pos,pos,pos,pos,pos,An adult walks into frame.,A child\nanetv_kCb2Km85Yn4,3358,A child climbs up a slide. She,gets to the top of the slide.,sets the hopscotch on top of the swing.,cardio shoes in a bathtub in a balance beam.,sits a bundle of bounce scotch hopscotch and stomps out to beat it.,jumps off the hills and jumps into a sand castle.,gold0-orig,pos,unl,unl,unl,pos,A child climbs up a slide.,She\nanetv_kCb2Km85Yn4,3359,She gets to the top of the slide. She,turns around on the slide.,\"dives into the water, jamming out on the boat.\",\"take a note ads the tape, the lady in it and the lights remain on it.\",gets up and steps away.,,gold0-orig,pos,unl,unl,pos,n/a,She gets to the top of the slide.,She\nanetv_e_y8_3siD0c,17461,A young child is seen standing ready before a game of hop scotch. The girl then,begins hopping on the chalk.,begins swinging up and down on the bars.,is shown with two older woman playing concrete.,performs more flips while moving around and jumping out.,begins throwing the frisbee over and showing off to the camera as well as him looking away from the camera.,gold0-orig,pos,unl,unl,unl,unl,A young child is seen standing ready before a game of hop scotch.,The girl then\nanetv_e_y8_3siD0c,17462,The girl then begins hopping on the chalk. The girl,hops all the way to the end and walks back to the screen.,jumps down the pool in the end.,continuously jumps back to go and continues jumping on the squares.,puts her arm around her legs.,jumps up and celebrates.,gold1-orig,pos,unl,unl,unl,pos,The girl then begins hopping on the chalk.,The girl\nanetv_ZlwU7HKcoYs,9180,A person is seen riding on the back of a boat skiing while he's attached to a string on the boat. The person,moves back and fourth along the water while the captures all of his movements.,continues riding along the water while looking off into the camera as well as taking the tire off and kayaks along the water.,seems to sail in the boat and others hold the kite and sail along the water.,pass the camera to the boat while using the tool to capture the people standing in the water.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen riding on the back of a boat skiing while he's attached to a string on the boat.,The person\nanetv_ZlwU7HKcoYs,4508,They are dragging a person on water skis behind them. The man,is weaving back and forth in the water.,go water skiing in the raft.,jumps over the back of his motorcycle and wets a ski mask.,waits at the bottom of the slope.,jumps over two ramps.,gold0-orig,pos,unl,unl,unl,pos,They are dragging a person on water skis behind them.,The man\nlsmdc3009_BATTLE_LOS_ANGELES-112,11767,The Marines enter a hangar. The staff sergeant,takes off his helmet.,\"takes out his pen, then saunters over to another screen.\",stops the drill's platoon.,turns to the table and looks at the animal.,,gold0-orig,pos,unl,unl,unl,n/a,The Marines enter a hangar.,The staff sergeant\nlsmdc3009_BATTLE_LOS_ANGELES-112,11768,The staff sergeant takes off his helmet. The Marine,crosses a busy command station.,banker carries someone down the steps.,someone pokes a finger towards it.,observes the dead man from the flight below.,slowly turns to face them.,gold1-reannot,pos,unl,unl,unl,pos,The staff sergeant takes off his helmet.,The Marine\nanetv_wqThk38AdEA,19117,Women are standing in sage behind the woman with the flute standing holding microphones. men,are standing behind the women playing different instruments.,are standing in the racetrack playing and talking.,\"are playing, croquet, and drums.\",are dressed in the background playing the violin and dance.,,gold0-orig,pos,unl,unl,pos,n/a,Women are standing in sage behind the woman with the flute standing holding microphones.,men\nanetv_NjzUWVoc8rw,17579,He has a ball on a tennis racket. He,throws the ball in the air and hits it with the racket.,removes it from his own.,\"throws his up clean, hitting the man who takes a bat and hits him with a big bat.\",balls at the wall.,hits the ball and drops it in place on the floor.,gold1-orig,pos,unl,unl,unl,pos,He has a ball on a tennis racket.,He\nanetv_NjzUWVoc8rw,9566,A man is standing on a tennis court. the man,takes a racket and bounces a tennis ball.,runs and takes the ball out of his hand.,is trying to turn a tennis ball back against the wall.,is holding a ping pong ball as he goes.,hits a ball back and forth.,gold0-orig,pos,unl,unl,unl,pos,A man is standing on a tennis court.,the man\nanetv_T7fzZX0qKKQ,9380,We see people give money to a man on a a unicycle on a city street. The man in a costume,rides the unicycle and plays a bagpipe.,holds up his hand and joins one of them playing indoors.,stops walking and walks to the camera.,is explaining various and techniques used for a casino.,,gold0-orig,pos,unl,unl,unl,n/a,We see people give money to a man on a a unicycle on a city street.,The man in a costume\nanetv_T7fzZX0qKKQ,9381,The man in a costume rides the unicycle and plays a bagpipe. A person,gets out of a yellow cab.,is walking onstage with a long wooden flute and with a joined green lips.,applies plaster to the ceiling.,comes up at the end and instructs him straight.,lets the shoes go and changes the sweater.,gold0-orig,pos,unl,unl,pos,pos,The man in a costume rides the unicycle and plays a bagpipe.,A person\nanetv_T7fzZX0qKKQ,17193,One man wearing a costume begins riding around on a unicycle playing the bagpipes. He,continues riding around playing while others watch on the side.,see goals at a soccer event and shows the closing press.,see several sports players simultaneously.,keeps walking and then jumps and talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,One man wearing a costume begins riding around on a unicycle playing the bagpipes.,He\nanetv_T7fzZX0qKKQ,17192,Several people are seen standing on the side walk speaking to one another. One man wearing a costume,begins riding around on a unicycle playing the bagpipes.,is shown with various clips of people which is shown.,is shown next to the other speaking.,flips over to people running until one runs.,jumps up and jumps off of the poles.,gold0-orig,pos,unl,unl,unl,pos,Several people are seen standing on the side walk speaking to one another.,One man wearing a costume\nlsmdc3082_TITANIC1-38797,4203,Someone pries her hand out of someone's grip. She,kisses his hand then releases him.,kicks someone out of the plane and lands outside it.,\"places her hands on a cabinet and stares freckles, then shifts her slender wand.\",glances aside and jolts wig.,puts her hands behind his head.,gold0-orig,pos,unl,unl,unl,pos,Someone pries her hand out of someone's grip.,She\nlsmdc3082_TITANIC1-38797,4206,\"Her breath steaming out in cloud, someone swims to the frozen crewman and pulls the whistle from his lips. Someone\",continues to blow into the whistle as the rescuers shine their lights on her.,meets the dead man.,takes out a faint orange jacket and places it flat on her back.,lowers himself onto his back.,,gold0-orig,pos,pos,pos,pos,n/a,\"Her breath steaming out in cloud, someone swims to the frozen crewman and pulls the whistle from his lips.\",Someone\nlsmdc3082_TITANIC1-38797,4204,She kisses his hand then releases him. Someone,slides on her stomach to the edge of the platform then rolls into the water.,rests him on the rail.,purses and kisses his wife.,goes after the house with an imploring look.,\"drops the belt then marches her someone to a side chair, leaning out and sits up.\",gold1-reannot,unl,unl,unl,unl,unl,She kisses his hand then releases him.,Someone\nlsmdc3082_TITANIC1-38797,4205,\"Someone slides on her stomach to the edge of the platform then rolls into the water. Her breath steaming out in cloud, someone\",swims to the frozen crewman and pulls the whistle from his lips.,looks up at the ceiling.,\"swallows something, then bows in front of his great wife who sits quietly in the kitchen, sipping a glass of brandy.\",lies at her feet.,sits on her bed and walks out.,gold0-reannot,pos,unl,unl,unl,unl,Someone slides on her stomach to the edge of the platform then rolls into the water.,\"Her breath steaming out in cloud, someone\"\nanetv_l9XzNcLiMKc,7118,A man and a woman are standing at the counter of a kitchen. They,pour ingredients into a large bowl and mix it together.,drink from a building opposite.,are mixing ingredients together in a large plastic pot.,put a cake in their pot.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman are standing at the counter of a kitchen.,They\nanetv_l9XzNcLiMKc,7121,They then take the cakes and stack them together with frosting in between. They,eat the cake at the end.,cake pans and ends with a final slice and what is juggling.,are cutting off the top of the tree.,sit between the two bars.,put the balls on a plate and cut the cards.,gold1-orig,pos,unl,unl,unl,unl,They then take the cakes and stack them together with frosting in between.,They\nanetv_l9XzNcLiMKc,7119,They pour ingredients into a large bowl and mix it together. They,pour the mixture into two round pans.,make out and type more ingredients and prepare a fire.,mix the pasta into cupcake toppings thoroughly.,begin in each bowl to get the ingredients out.,makes a jar of sugar to their batter.,gold0-orig,pos,unl,unl,unl,unl,They pour ingredients into a large bowl and mix it together.,They\nanetv_l9XzNcLiMKc,7120,They pour the mixture into two round pans. They then,take the cakes and stack them together with frosting in between.,clean the lemon and pour it onto the bundt bowl.,pour a cup to omelette in the blender and serve when slicing it.,add it down to lemons and pour it into the bowl.,,gold0-orig,pos,unl,unl,unl,n/a,They pour the mixture into two round pans.,They then\nanetv_NKZzGiS5hv0,19232,Men are siting in a dark room talking to the camera. sumo wrestlers are standing in stage ready to fight and people,are gathered around them and sitting in he terraces.,start fighting for the competition.,go do a competition in costume.,are siting in the ring watching them.,,gold0-orig,pos,unl,unl,pos,n/a,Men are siting in a dark room talking to the camera.,sumo wrestlers are standing in stage ready to fight and people\nanetv_NKZzGiS5hv0,19233,Sumo wrestlers are standing in stage ready to fight and people are gathered around them and sitting in he terraces. men,are talking in the dark room and explaining their point of view.,throwing a disc and skating in a field with many banners around them.,are talking and standing on the arena with people in horses in the background.,are on jump ropes and do a hand stand.,are seated down the court playing dodgeball.,gold1-orig,pos,unl,unl,unl,unl,Sumo wrestlers are standing in stage ready to fight and people are gathered around them and sitting in he terraces.,men\nanetv_JLA4Ck8_BRI,2270,\"The lady shakes the drink in the glass. Finally, she\",pours the drink into a martini glass and lifts the glass in the air.,\"puts milk to the glass, mixes little water into two glasses.\",\"puts down the drink and drinks down the glass, and finishes pouring the drink.\",adds marshmallows to her mouth.,stands and sips beer from her beer.,gold0-orig,pos,unl,unl,unl,unl,The lady shakes the drink in the glass.,\"Finally, she\"\nanetv_JLA4Ck8_BRI,2268,A lady pours ice in a glass. The lady,adds 3 liquors and lemon juice.,pours lemon mixture into a glass and pours liquids into asian juice.,measures the contents of the glass.,pours ice into the glass.,pours the ingredients into a smaller glass.,gold1-orig,pos,unl,unl,unl,unl,A lady pours ice in a glass.,The lady\nanetv_JLA4Ck8_BRI,13962,The woman pour the drinks on the ice cup and shake them. thn,serve the drink in a martini glass.,kneel in front of the camera to talk.,talk to each other.,are scooping out of the cups.,,gold0-orig,pos,unl,unl,pos,n/a,The woman pour the drinks on the ice cup and shake them.,thn\nanetv_JLA4Ck8_BRI,2269,The lady adds 3 liquors and lemon juice. The lady,shakes the drink in the glass.,places the oil on the stove tray and gets a handful of broth.,puts another jar on water.,mixes a black sugar.,squeezes the lemons and heats it up.,gold0-reannot,pos,unl,unl,unl,unl,The lady adds 3 liquors and lemon juice.,The lady\nanetv_JLA4Ck8_BRI,13961,Woman is standing in front of a bar preparing a cocktail. the woman,pour the drinks on the ice cup and shake them.,breaks into two pieces and holds up the red bar.,put on the other arm and make a sandwich.,slices the knife and shows the knife and showing her what appears to be the second plate.,takes an alcohol bar with a bottle and drinks it from a cup.,gold1-reannot,pos,unl,unl,unl,unl,Woman is standing in front of a bar preparing a cocktail.,the woman\nanetv_RPkLocpR8VQ,4875,A judge put a sheet on front a player. A person,walks behind the players.,drives a green puck on the ice.,holds a hand to a swing.,is the ball on the court.,is playing a song on stage.,gold0-orig,pos,unl,unl,unl,unl,A judge put a sheet on front a player.,A person\nanetv_RPkLocpR8VQ,4874,Men compete solving cube puzzles while judges supervising the players. A judge,put a sheet on front a player.,wears a hat and glasses to heart.,\"talks to the camera while people watch, kneel on a slackline board land.\",bounces down the rope and loses control.,,gold1-orig,pos,unl,unl,unl,n/a,Men compete solving cube puzzles while judges supervising the players.,A judge\nanetv_RPkLocpR8VQ,11431,A group of boys are seated at tables. They,are trying to solve rubik's cubes puzzles.,are engaged in a game of ping pong.,\"are including large bottles, liquor, and field beer.\",are playing a game of table tennis against the wall.,stand around them.,gold0-orig,pos,unl,unl,pos,pos,A group of boys are seated at tables.,They\nanetv_RPkLocpR8VQ,11432,They are trying to solve rubik's cubes puzzles. They,are being timed as they complete the puzzles.,zoom in and pictures of a large white board character from inside the tank is shown.,try to eyeball the inside of the wheel with pliers.,high five each other.,\"are about to block, trying to suppress their shots.\",gold0-reannot,pos,unl,unl,unl,unl,They are trying to solve rubik's cubes puzzles.,They\nanetv_qTvZtsi-3KU,4948,They have babies in their arms as they swim. They,are teaching the babies to go under water and hold their breaths.,flash past hundreds of people inside.,\"saturday morning, someone smiles.\",just crossing the pier.,,gold0-orig,pos,unl,unl,pos,n/a,They have babies in their arms as they swim.,They\nanetv_qTvZtsi-3KU,4947,Some women are swimming in a pool. They,have babies in their arms as they swim.,are kicking a ball with other boys in the water.,turn toward targets that coaches four people on their coach.,are riding an escalator in the dive.,are wearing black shirts and tights.,gold0-orig,pos,unl,unl,unl,pos,Some women are swimming in a pool.,They\nanetv_PjSOjB7qhcA,11650,Girls are playing dodge ball outside with only one ball. A girl,gets hit with the ball.,picks up them and starts to run toward them with people on the other side.,is hitting the pins into a net.,has black dodge around the racket swinging up and swinging and shaking herself.,\"pull a yellow ball, trying to get it into the pool.\",gold0-orig,pos,unl,unl,unl,unl,Girls are playing dodge ball outside with only one ball.,A girl\nanetv_p800u2wCKbE,12500,There is a lemonade stand set up where people are purchasing lemonade to donate money for a cause. One of the parents,is talking to the news reporter about the fund raiser.,\"trying to sip champagne then chugs and then does several spin, five poses sunlit various landscapes.\",is shown using chopped vegetables and drinking a water on a hot cup.,is shown scoring plates and galloping across the beach.,manage an fish for the flour.,gold0-orig,pos,unl,unl,unl,unl,There is a lemonade stand set up where people are purchasing lemonade to donate money for a cause.,One of the parents\nanetv_p800u2wCKbE,12499,A news reporter is talking about a local fund raiser held by a nursery school. There,are several people gathered to support the cause.,are caught on the camels area as people people load camels.,are replays on what the race is about.,'s a man is shown as she recognizes the baby from several different angles.,is a little puppy having a poor halloween costume.,gold0-orig,pos,unl,unl,unl,unl,A news reporter is talking about a local fund raiser held by a nursery school.,There\nanetv_p800u2wCKbE,12502,\"Three more parents are standing are chatting as they sip lemonade. A picture the girl, Hannah\",is shown for whom the fund raiser was held.,\"break and 60s might be in the same city, whom all models in expensive suits down.\",is turned on to a group of people to get up and walk toward the rough water.,steps into frame and pushes someone when she has done.,\"gets out her hands, takes out a night stick.\",gold0-orig,pos,unl,unl,unl,unl,Three more parents are standing are chatting as they sip lemonade.,\"A picture the girl, Hannah\"\nanetv_p800u2wCKbE,12501,One of the parents is talking to the news reporter about the fund raiser. Three more parents are standing,are chatting as they sip lemonade.,up rollerblading: washing their cars in a room.,in the house holding the binoculars.,under the bridge putting their hands into their cage.,on how to knit as they knit.,gold1-orig,pos,unl,unl,unl,unl,One of the parents is talking to the news reporter about the fund raiser.,Three more parents are standing\nanetv_p4Bm_NB_QoI,6520,The girls then perform a routine using batons while spinning and twirling. They,make an ending pose while the audience claps and run off to the side.,continue flipping and end by performing various tricks with their racket.,perform several kicks and ends by her arms.,do the batons while doing tricks and more cheerleading with one another.,,gold1-orig,pos,unl,unl,pos,n/a,The girls then perform a routine using batons while spinning and twirling.,They\nanetv_p4Bm_NB_QoI,6519,A small group of girls are first seen walking out on a gymnasium floor with several people watching on the sidelines. The girls then,perform a routine using batons while spinning and twirling.,continue dancing around with the girls swinging down and jumping around and ends with the partner performing his routine on the platform as well.,continue to spin around on batons as well as performing several shots and tricks and running back and forth.,continue jumping and kick one another as well as batons and several different people standing on the sideline.,continue to play instruments as the girls continue to walk and continue to walk.,gold0-orig,pos,unl,unl,unl,unl,A small group of girls are first seen walking out on a gymnasium floor with several people watching on the sidelines.,The girls then\nanetv_OkEqcSlWMJg,12642,A small group of people are seen swimming in a pool and leads into various clips of children learning how to swim. A man,helps them practice in the water as well as jumping off a diving board.,jumps into a pit and jumps high several times and eventually taking a quick turn.,speaks to the camera as well as people walking around and speaking to the camera.,is seen speaking to the camera as well as people riding in the water while others observe on the side.,\"is then seen diving off a diving board into the water, while a watch on the side.\",gold0-orig,pos,unl,pos,pos,pos,A small group of people are seen swimming in a pool and leads into various clips of children learning how to swim.,A man\nanetv_OkEqcSlWMJg,12643,A man helps them practice in the water as well as jumping off a diving board. More shots,are shown of kids swimming and leads into a girl grabbing objects under water and swimming with another.,are shown of people crossing sailors as well as swimming in a pool.,are shown of people riding down the water with boats high in the camera.,are shown of various people doing tricks and several girls jumping onto the beach and wading.,are shown of up the wind and leads into them performing as they swim.,gold1-orig,pos,unl,unl,unl,pos,A man helps them practice in the water as well as jumping off a diving board.,More shots\nanetv_0QyHaXliXKs,6173,A large group of people are seen holding up flags and walking in a circle while many others watch on the sides. Two people,are then seen walking up to the circle and lead into a wrestling match between the two.,are seen moving around a field with one performing push ups and begins shooting one another down the lane.,play the game back and fourth against a continue and more people walk around the area continuing to play the game.,are seen watching on the sides while one girl grabs the chair and leads change to him.,are standing up in a swing as the ball males continue to play.,gold1-reannot,pos,unl,unl,unl,unl,A large group of people are seen holding up flags and walking in a circle while many others watch on the sides.,Two people\nanetv_0QyHaXliXKs,6174,Two people are then seen walking up to the circle and lead into a wrestling match between the two. One man bows to the other and the winner,walks away from the stage.,finally zooms back to him while they end after him dancing.,continues dancing with one another.,attempts to jump with a hoop.,is shown close while the men throw throwing swords at each other.,gold0-reannot,pos,unl,unl,unl,unl,Two people are then seen walking up to the circle and lead into a wrestling match between the two.,One man bows to the other and the winner\nanetv_0kfJ7Lu4tvo,15427,\"Then, the man loose the lug nuts of the tire, and then reads the manual. After, the man\",puts a jack below the car to raise it.,continues to describe how he intends his bike.,jump over the ski and ties the spare tire together.,proceeds to complete the bike then places the tire on the bike ring.,,gold0-orig,pos,unl,unl,pos,n/a,\"Then, the man loose the lug nuts of the tire, and then reads the manual.\",\"After, the man\"\nanetv_0kfJ7Lu4tvo,15429,\"Next, the man puts the emergency tire and tight the lug nuts. At the end, the man\",keeps the jack and the flat tire.,takes a handful of plastic and takes off his spare and cleans the mouthpiece.,grabs the new tire and starts getting a spare tire cut.,removes the tire and uses a high tire on it.,jumps the right pole and falls on the ground.,gold1-orig,pos,unl,unl,unl,unl,\"Next, the man puts the emergency tire and tight the lug nuts.\",\"At the end, the man\"\nanetv_0kfJ7Lu4tvo,15426,\"A person turns on the emergency lights of a car and takes out the emergency tire. Then, the man\",\"loose the lug nuts of the tire, and then reads the manual.\",put a attachment into pink carpet and scrape down the vacuum.,comes on to the of patch with the tire and show his bike.,sprays the tire with a tissue and tapes the paper wrapped on the tree.,walks a car and breaks the snow as the car follows behind him.,gold0-orig,pos,unl,unl,unl,pos,A person turns on the emergency lights of a car and takes out the emergency tire.,\"Then, the man\"\nanetv_0kfJ7Lu4tvo,15428,\"After, the man puts a jack below the car to raise it. Next, the man\",puts the emergency tire and tight the lug nuts.,run until it lost instead.,prepares it in a small display while the man then welds.,takes off the blow and the man grabs the shovel and walks away.,,gold0-reannot,pos,unl,unl,unl,n/a,\"After, the man puts a jack below the car to raise it.\",\"Next, the man\"\nanetv_HWuRcUpcsHY,9046,They are using an orange oar to row themselves. They,hit a rock on the side of the river.,have drove up in a bunch of dirt and snorkeling gear.,dive under bright water.,are sliding down a final river.,,gold0-orig,pos,unl,unl,pos,n/a,They are using an orange oar to row themselves.,They\nanetv_HWuRcUpcsHY,9045,A person is kayaking down a river with other people. They,are using an orange oar to row themselves.,hold their hands in swim circles and watch them as they swim across the water.,release up the mountain to a stop.,hold surfboards while trying to stay afloat on calm water.,,gold1-orig,pos,unl,unl,unl,n/a,A person is kayaking down a river with other people.,They\nanetv_HWuRcUpcsHY,12891,A person gives a thumbs up to another person. The person,goes over a large waterfall and lands on a rock.,drops the red paper onto the sticks and launches them again.,shows how to iron to sharpen a knife or pumpkin.,turns to one and shows off a dog.,,gold0-orig,pos,unl,unl,pos,n/a,A person gives a thumbs up to another person.,The person\nanetv_HWuRcUpcsHY,12890,People are kayaking in a river. A person,gives a thumbs up to another person.,is sitting down a long river.,is riding boats along a river.,is sitting on a boat that is behind them.,is pushing a paint can under the water.,gold0-reannot,pos,unl,unl,pos,pos,People are kayaking in a river.,A person\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11764,People sit on a blanket around a large picnic hamper. Someone,is just sucking the last piece of chicken off a bone.,holds a porcelain belly paw and eats its claws.,speaks to a camera and walks on the island.,swings up a velvet bin like flying into the trunk.,\"finishes her breakfast, watches her eye at her wall mirror.\",gold1-orig,pos,unl,unl,unl,unl,People sit on a blanket around a large picnic hamper.,Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11758,\"Someone O'Daniel sits smoking a cigar, nursing a glass of whiskey, and soliciting the counsel of his overweight retinue. Someone\",\"narrows his eyes at him, wondering what he is getting at.\",\"someone is in, to the podium but her gun, is still on the bus.\",handcuffs hanging from one tree.,returns the gaze to the young man who turns his head to the door behind him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone O'Daniel sits smoking a cigar, nursing a glass of whiskey, and soliciting the counsel of his overweight retinue.\",Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11765,Someone is just sucking the last piece of chicken off a bone. He,\"tosses the bone over his shoulder, belches, and sighs.\",has the contract in her heart.,furrows his brow.,then takes someone's hand.,,gold0-orig,pos,unl,pos,pos,n/a,Someone is just sucking the last piece of chicken off a bone.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11766,\"He tosses the bone over his shoulder, belches, and sighs. Someone\",is pleased and embarrassed.,turns to her nurse.,\"floats towards the beginning, which shatters.\",stares earnestly at someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"He tosses the bone over his shoulder, belches, and sighs.\",Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11761,He glares around the table. Someone,grunts as he starts to rise.,pulls his face to the bear.,pats someone on the face and nods.,returns his gaze to the water.,moves to his partner.,gold0-orig,pos,unl,pos,pos,pos,He glares around the table.,Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11760,Someone whips off his hat and slaps at someone with it. He,glares around the table.,whips firing at the bomb.,dozes in front of the sleeping someone.,pulls her aside and takes someone's hand.,hits his cue again.,gold0-orig,pos,unl,unl,unl,unl,Someone whips off his hat and slaps at someone with it.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55478,11763,The car boosted from the general store has been pulled off the road and parked a few yards into a field littered with bluebonnets and rimmed with moss - dripping oak. People,sit on a blanket around a large picnic hamper.,see a fence on a warehouse post.,towers over each other.,hurtle the cabin across the court.,take the plates from someone.,gold0-reannot,pos,unl,unl,unl,pos,The car boosted from the general store has been pulled off the road and parked a few yards into a field littered with bluebonnets and rimmed with moss - dripping oak.,People\nlsmdc1028_No_Reservations-82912,18135,Someone walks into the bathroom and enters her bedroom through an adjoining door. A chair,has been propped up against the bedroom door to prevent anyone from entering.,is washed from a window as the lights flicker inside.,\"is curled up on a carpet, a cabinet and two feet chair.\",spins someone down beside her.,,gold1-orig,pos,unl,unl,unl,n/a,Someone walks into the bathroom and enters her bedroom through an adjoining door.,A chair\nlsmdc1028_No_Reservations-82912,18125,The contents have caught fire. Someone,\"shakes her head at someone in disbelief, then grabs her bag and heads out.\",pours a cup into the pot.,stamps out black roses.,uses a long rag to remove the ashes from the sitting car.,is kneeling over a note lying on a bed cloth.,gold1-orig,pos,unl,unl,unl,unl,The contents have caught fire.,Someone\nlsmdc1028_No_Reservations-82912,18136,A chair has been propped up against the bedroom door to prevent anyone from entering. Someone,\"walks over and moves it aside, along with a wicker laundry basket.\",picks up the rug and wipes it with his hands.,\"steps out of the parlor, wrapped in a blanket over his head.\",listens to her as he walks away.,,gold0-orig,pos,unl,unl,unl,n/a,A chair has been propped up against the bedroom door to prevent anyone from entering.,Someone\nlsmdc1028_No_Reservations-82912,18141,Someone moves the photo album around and begins to look through it. Someone,\"closes the album, then places it down on the chest of drawers.\",\"aside, we drift down to the house.\",eyes narrow and quick on his travels.,then begins to ring various lines.,,gold0-orig,pos,unl,unl,unl,n/a,Someone moves the photo album around and begins to look through it.,Someone\nlsmdc1028_No_Reservations-82912,18133,She forces it open a crack. Someone,\"sees someone curled up, asleep on her bed.\",pulls out the window at her post and places it in her mouth.,\"avoids her gaze, her eyes wide.\",strolls inside and faces someone as his friends give him a relieved look.,,gold0-orig,pos,unl,pos,pos,n/a,She forces it open a crack.,Someone\nlsmdc1028_No_Reservations-82912,18130,She takes the chopsticks off the door and walks inside. She,walks down the hallway to someone's bedroom.,\"stands, quietly searching through some waterfront.\",closes someone's eyes and looks in through two open glass windows.,walks into old cottage and jacks a sheet of paper from the table.,finds someone waving her paperwork.,gold0-orig,pos,unl,unl,unl,unl,She takes the chopsticks off the door and walks inside.,She\nlsmdc1028_No_Reservations-82912,18145,\"Next morning, someone stands by the bed looking down at someone, who's fast asleep. Sleepy someone\",open her eyes and looks at the clock.,stands at a large music booth with other friend and a guitar.,watches them raises her body to the side of the bed and starts for the kitchen.,\"watches her go, sitting up groggily.\",\"lies down in front of someone, and his melancholy's staring face down by someone's bed.\",gold0-orig,pos,unl,unl,pos,pos,\"Next morning, someone stands by the bed looking down at someone, who's fast asleep.\",Sleepy someone\nlsmdc1028_No_Reservations-82912,18142,\"Someone closes the album, then places it down on the chest of drawers. She\",turns off a lamp and makes her way slowly around the bed.,\"holds it for a moment, then shuts her eyes and shifts to her feet.\",carefully sets the viewer close to hers and it includes with a flashlight off the side of the cabinet.,\"open the back door, someone rolls her.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone closes the album, then places it down on the chest of drawers.\",She\nlsmdc1028_No_Reservations-82912,18129,She bends down and picks up a plastic take - away bag. She,takes the chopsticks off the door and walks inside.,drops it on the floor and uses a hand to toe it.,takes two miniature bill from her wallet.,looks outside then places the shoe on it.,leads him to her office.,gold0-orig,pos,unl,unl,unl,unl,She bends down and picks up a plastic take - away bag.,She\nlsmdc1028_No_Reservations-82912,18143,She turns off a lamp and makes her way slowly around the bed. Someone,sits down on the edge of the bed and looks down wistfully.,\"rakes something, then steps to another window someone picks it down, and then disappears behind a wall.\",lies in bed lying on the ground.,burst into an apartment and stands with hand in hand.,,gold0-orig,pos,unl,unl,unl,n/a,She turns off a lamp and makes her way slowly around the bed.,Someone\nlsmdc1028_No_Reservations-82912,18138,\"Someone steps slowly towards the bed and picks up the remote control, which is lying next to someone. She\",turns off the tv.,\"flimsy from a wall in the vault desk, some of the crew buzzer applies on the bottom to its door.\",\"rec room, crowded outside a arc, and a woman hangs behind against them.\",watches someone fold his tongue.,stays motionless and her jaw hanging slack.,gold0-orig,pos,unl,unl,unl,pos,\"Someone steps slowly towards the bed and picks up the remote control, which is lying next to someone.\",She\nlsmdc1028_No_Reservations-82912,18132,The door won't budge. She,forces it open a crack.,hammers his coat to the door as hard as he can and opens it.,kneels down and sits beside him.,marches that place on a pink - carpeted stoop.,\"lets go of someone, falls and waves back into the old - living room.\",gold0-orig,pos,unl,unl,unl,unl,The door won't budge.,She\nlsmdc1028_No_Reservations-82912,18140,\"She gently covers someone with the bedclothes, then notices as photo album, which had been hidden beneath them. Someone\",moves the photo album around and begins to look through it.,spots someone leaving someone inside the mall.,puts on a polo t - shirt with the back of her training rifles.,\"takes the bottle, too.\",,gold0-orig,pos,unl,unl,pos,n/a,\"She gently covers someone with the bedclothes, then notices as photo album, which had been hidden beneath them.\",Someone\nlsmdc1028_No_Reservations-82912,18134,\"Someone sees someone curled up, asleep on her bed. Someone\",walks into the bathroom and enters her bedroom through an adjoining door.,\"flips back, slamming the bolt shut.\",is in a booth with a fair - haired man.,walks onto the porch.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone sees someone curled up, asleep on her bed.\",Someone\nlsmdc1028_No_Reservations-82912,18144,\"Someone sits down on the edge of the bed and looks down wistfully. Next morning, someone\",\"stands by the bed looking down at someone, who's fast asleep.\",helps someone to her as she leaves the building.,rolls onto the bed.,descends into a shop.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone sits down on the edge of the bed and looks down wistfully.,\"Next morning, someone\"\nlsmdc1028_No_Reservations-82912,18126,\"Someone shakes her head at someone in disbelief, then grabs her bag and heads out. A flicker of a smile\",plays on someone's lips.,sweeps through someone's eyes.,spreads on someone's face as he stares at the messy table.,\"slips onto his face as she knits her eyes, then returns her attention to the host.\",flash across her face as she runs out of the room.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone shakes her head at someone in disbelief, then grabs her bag and heads out.\",A flicker of a smile\nlsmdc1028_No_Reservations-82912,18131,She walks down the hallway to someone's bedroom. Someone,\"pokes her head around the open door, then tries to enter her own bedroom.\",finds a sign - door on the window and starts to entrance first.,\"steps into the room, pensive, in the bag.\",goes to her bed.,\"stands, leans against someone, her hands covering the end near someone's arm.\",gold0-reannot,pos,unl,unl,pos,pos,She walks down the hallway to someone's bedroom.,Someone\nlsmdc1028_No_Reservations-82912,18137,\"Someone walks over and moves it aside, along with a wicker laundry basket. Someone\",\"steps slowly towards the bed and picks up the remote control, which is lying next to someone.\",\"smiles at someone for the thermometer, then gets back in her chair and checks a photo of a puzzled clerk.\",also throws it up from a surface in the toilet.,hurriedly searches the closet for a exposed knob railing on a side platform.,looks on as he looks into her face.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone walks over and moves it aside, along with a wicker laundry basket.\",Someone\nlsmdc1028_No_Reservations-82912,18124,\"She looks over at someone, who stands grinning at her. Someone\",points at a pan on the stove next to him.,\"meets his gaze, followed by someone.\",makes her turn to a grove of food and waddles on.,grabs someone's yellow jacket and walks off.,\"looks around, seemingly exhausted.\",gold1-reannot,pos,unl,unl,pos,pos,\"She looks over at someone, who stands grinning at her.\",Someone\nlsmdc1028_No_Reservations-82912,18128,A packet of chopsticks have been sellotaped to her door. She,bends down and picks up a plastic take - away bag.,\"wears a blue sari, with his eyes open, tears of pencil and crying into the devastation.\",drops it into the sink.,reaches behind him and looks around suspiciously.,,gold0-reannot,pos,unl,pos,pos,n/a,A packet of chopsticks have been sellotaped to her door.,She\nlsmdc1028_No_Reservations-82912,18139,She turns off the tv. Someone,\"looks down at her sleeping niece, then places the remote on a chest of drawers.\",drives past someone and someone smiles at someone.,boots the models from the room.,wags her head and wraps his fist around her.,,gold0-reannot,pos,unl,unl,unl,n/a,She turns off the tv.,Someone\nanetv_95L-8JtlwRU,11334,A man is using inserts to prepare the shoes. He then,uses a brush and cleaning solution to wash the shoes.,takes the other windex and starts ironing the shirt.,talks into a blue bucket to start out the shoe.,stops and demonstrates how to groom the dishes before he returns to talking.,shows how to pull the material out on the cloth.,gold1-orig,pos,unl,unl,unl,pos,A man is using inserts to prepare the shoes.,He then\nanetv_95L-8JtlwRU,11333,A pair of white and red nike shoes are shown. A man,is using inserts to prepare the shoes.,has orange words on the wrist.,is talking the next one.,enters and picks up a phone on a stool.,rides the bike across the side of the room.,gold0-orig,pos,unl,unl,unl,pos,A pair of white and red nike shoes are shown.,A man\nanetv_2VoWT4gnQDg,5653,The camera pans to a shirtless man standing on a ladder next to a roof and talking. The man,\"begins to prod at roof tiles with a metal stick, lifting the edges up briefly.\",goes onto the fence and shows a man damaged plaster.,begins mopping the floor while demonstrating to mop.,continues talking about waving the tool into the leaves and cutting off demonstrating that.,then walks back to the chair and the male on the floor of the room.,gold0-orig,pos,unl,unl,unl,unl,The camera pans to a shirtless man standing on a ladder next to a roof and talking.,The man\nanetv_2VoWT4gnQDg,5654,\"The man begins to prod at roof tiles with a metal stick, lifting the edges up briefly. The man then\",begins talking again before panning to the lawn where a stack of white materials are stacked up next to the edge of the house.,throws his put rag all over the tile then down to another table.,runs to throw the grapefruit into the vehicle.,runs to more floor and cuts the piece of paper out of the jar and the floor.,drops his metal machine on the floor by a nazi drill and continues on while pointing an torch at the window.,gold1-orig,pos,unl,unl,unl,unl,\"The man begins to prod at roof tiles with a metal stick, lifting the edges up briefly.\",The man then\nanetv_2VoWT4gnQDg,10124,A room is shown and leads into a man speaking to the camera. He,pans back to a roof and uses a tool to pull up tiles.,moves back and fourth on a food machine laying over a table.,is seen sitting on a hookah and looking off into the distance.,man is interviewed and leads into several martial arts movements.,moves tobacco and glasses while speaking to the camera.,gold1-orig,pos,unl,unl,unl,pos,A room is shown and leads into a man speaking to the camera.,He\nanetv_2VoWT4gnQDg,10125,He pans back to a roof and uses a tool to pull up tiles. The man,finishes by speaking more to the camera.,puts the roof down while still speaking to the camera.,lifts the metal bar and picks up the bike.,stands up immediately and continues blowing the leaves evenly around a brick wall across the porch.,,gold0-reannot,pos,unl,unl,unl,n/a,He pans back to a roof and uses a tool to pull up tiles.,The man\nanetv_2VoWT4gnQDg,5652,A short clip of an room with a refrigerator and a couch and tv is shown. The camera,pans to a shirtless man standing on a ladder next to a roof and talking.,holds the group up to show the date in public.,shows a black and green pattern with words scrolling across the screen cut to a website in a name.,follows the woman smiling to the camera as the girl is interviewed to the camera.,focuses on different kinds of mats.,gold1-reannot,pos,unl,unl,pos,pos,A short clip of an room with a refrigerator and a couch and tv is shown.,The camera\nanetv_yJgC3-t_ciw,17520,There is a large decorated Christmas tree behind them. There,is a woman sitting in the living room with a little girl.,are beaming in the sky.,is a step of a woman.,are some in camp and a nice place.,are the bushes on the yard.,gold0-orig,pos,unl,unl,unl,unl,There is a large decorated Christmas tree behind them.,There\nanetv_yJgC3-t_ciw,17522,The boys play Foos ball with the men. They,laugh and enjoy themselves as they continue to play.,pause and get up again.,see the clippings in the screen.,play while several players continue hits and bounce near the wall with their catcher.,,gold0-orig,pos,unl,unl,unl,n/a,The boys play Foos ball with the men.,They\nanetv_yJgC3-t_ciw,17519,There are two men playing Foos ball with two young boys in a living room. There,is a large decorated christmas tree behind them.,are playing in some crowded arena of wood and suddenly fans are cheering for different women.,people at the red team again play volleyball on their ice.,are playing a game of rock paper scissors.,\"points either of them, talking.\",gold0-orig,pos,unl,unl,unl,unl,There are two men playing Foos ball with two young boys in a living room.,There\nanetv_yJgC3-t_ciw,17521,There is a woman sitting in the living room with a little girl. The boys,play foos ball with the men.,are bouncing batons in her hair.,go under a hopscotch on the hopscotch.,are playing and kicking her looking teens in the yard.,\"spins with water through both hoops, throwing as they do.\",gold0-reannot,pos,unl,unl,unl,unl,There is a woman sitting in the living room with a little girl.,The boys\nanetv_bDK-_jU_KzI,15486,Both the body builders use all their force and concentration while they try to take the opponent down. They,continue using force as they pivot their elbows to push their opponent's arm in the opposite direction.,hold each man hand straight.,wakes up and goes up and continuously on.,return to the team that is playing.,take a beat out of their shoulder and shake hands with the judge.,gold0-orig,pos,unl,unl,unl,unl,Both the body builders use all their force and concentration while they try to take the opponent down.,They\nanetv_bDK-_jU_KzI,15484,There are several body builders showing their weight training exercises with weight bars and arm wrestling techniques. Two of the body builders arm,wrestle on a table while another person is watching them.,\"sits and maneuver in water, running around.\",wrestle the weight which are in preparation for their instructors.,wrestle the same electric while is shown pushing a bar successfully.,,gold0-orig,pos,unl,unl,unl,n/a,There are several body builders showing their weight training exercises with weight bars and arm wrestling techniques.,Two of the body builders arm\nanetv_bDK-_jU_KzI,15485,\"After he signals the body builders to start, they begin arm wrestling. Both the body builders\",use all their force and concentration while they try to take the opponent down.,on and our strain is measured as emptied.,do all of theirs in the audience.,are white and alerted.,,gold0-orig,pos,unl,unl,pos,n/a,\"After he signals the body builders to start, they begin arm wrestling.\",Both the body builders\nanetv_bDK-_jU_KzI,15487,They continue using force as they pivot their elbows to push their opponent's arm in the opposite direction. Finally the wrestler on the left wins by,putting his opponent's arm down.,tapping their left knee without looking at it.,pulling himself on between the men to stand side by side.,raising his arms by his palms and battle one another.,\"hugging and holding the ground, after it's contest, the inches is up to leave.\",gold0-orig,pos,unl,unl,unl,unl,They continue using force as they pivot their elbows to push their opponent's arm in the opposite direction.,Finally the wrestler on the left wins by\nanetv_bDK-_jU_KzI,1059,Various pictures of body builders are shown as people as videos of people lifting and leads into two men grabbing hands. Another man,holds theirs together and let's go to begin an arm wrestling match.,is seen with one man using bowling balls and putting shoes into a smaller racketball case.,wearing orange rides a selfie through a white swim shirt.,shown dancing on the floor while the woman walks into frame.,steps around one by one after the other.,gold0-reannot,pos,unl,pos,pos,pos,Various pictures of body builders are shown as people as videos of people lifting and leads into two men grabbing hands.,Another man\nlsmdc3056_PUBLIC_ENEMIES-3588,9188,The interrogator glares down at her and tensely wipes his mouth. Someone,looks him in the eye.,leans on someone back and points at him.,shakes his head in disbelief and spots someone.,cautiously leaves the room and leaves the room.,sits on the bed as our view returns skyward.,gold0-orig,pos,unl,unl,unl,unl,The interrogator glares down at her and tensely wipes his mouth.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3588,9192,\"Someone presses down on the arms of the chair to get up, then stops. In the hall, the rest of the agents\",stand aside as he passes with the weakened woman.,\"walk with their blows toward the offscreen brick building, one inch someone's men, a german nearby.\",rise on their feet and ward away from them.,\"mill at a can place with exactly four - hour anxiety, then spots someone frowning, wearing a stylish cotton dress.\",\"play the whistle of a back door, hitting it with a scenic hand.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone presses down on the arms of the chair to get up, then stops.\",\"In the hall, the rest of the agents\"\nlsmdc3056_PUBLIC_ENEMIES-3588,9194,\"Now, someone nods to someone. In the interrogation room, the burly agent\",stays put beside the open door out of the sight line of his peers who's staring.,leads the primate down the hall.,walks to an elevator and looks from someone to someone with a bottle of liquid.,is helping someone with the gun.,dips his finger in a tube then covers the tip with his finger.,gold0-orig,pos,unl,unl,unl,pos,\"Now, someone nods to someone.\",\"In the interrogation room, the burly agent\"\nlsmdc3056_PUBLIC_ENEMIES-3588,9195,\"In his home, someone answers. Now, a woman\",sits at a bar.,shows a covered dog in a bikini.,whips a padlock after her.,stands by the fire tower.,walks past the children to find someone in a booth.,gold1-orig,pos,unl,unl,pos,pos,\"In his home, someone answers.\",\"Now, a woman\"\nlsmdc3056_PUBLIC_ENEMIES-3588,9190,He sneers and winds up with his fist. Someone,intercepts his arm and slams him.,sits on another ship.,\"gives him a quick kiss, then walks away.\",looks up from his board.,,gold0-orig,pos,unl,unl,pos,n/a,He sneers and winds up with his fist.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3588,9198,Her weary gaze hangs straight ahead. He,takes her hand and gazes into her eyes.,\"takes a control outside and on the phone, then continues to approach the phone.\",drags it off.,squishes his face against her hand.,,gold0-orig,pos,unl,unl,pos,n/a,Her weary gaze hangs straight ahead.,He\nlsmdc3056_PUBLIC_ENEMIES-3588,9196,\"Now, a woman sits at a bar. A door\",opens across the room.,swings open with the woman.,closes on a piano.,opens onto the balcony.,opens onto the stage.,gold1-orig,pos,unl,unl,pos,pos,\"Now, a woman sits at a bar.\",A door\nlsmdc3056_PUBLIC_ENEMIES-3588,9191,As she holds her wrists. Someone,leans over to her.,meets someone's gaze and nods.,steps toward her father's inner panel and gently massages his shoulder.,put one hand on someone's back.,pulls her bolts up.,gold1-orig,pos,unl,unl,unl,unl,As she holds her wrists.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3588,9197,A door opens across the room. Someone,enters and takes a seat next to her.,opens the door and sees a zombie fall to the floor.,opens up the empty dining room where brightly lit candles adorn a campfire sign.,\"looks at a door, but does n't budge.\",sits on the floor.,gold0-orig,pos,unl,unl,pos,pos,A door opens across the room.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3588,9187,She lowers her head and wipes her mouth. The interrogator,glares down at her and tensely wipes his mouth.,\"throws back the cards, free and forwards, with a flat hat, and on the ground.\",slides the pitchfork into her mouth.,takes off her gaze and shakes his head.,passes and white text follows.,gold0-orig,pos,unl,unl,pos,pos,She lowers her head and wipes her mouth.,The interrogator\nlsmdc3056_PUBLIC_ENEMIES-3588,9201,She gets in back and gazes at the unseen driver. Someone,seats at the wheel.,looks at a note in the middle of a file as he smooths it out.,jams on the engine.,smiles as he goes along.,sits down at her knees.,gold1-reannot,pos,unl,unl,unl,unl,She gets in back and gazes at the unseen driver.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3588,9199,He takes her hand and gazes into her eyes. They,pick up their drinks and share another glance.,sit facing a low kitchen railing.,kiss when they're in the stable.,takes a deep breath.,\"smile briefly, and her smile fades.\",gold1-reannot,pos,unl,pos,pos,pos,He takes her hand and gazes into her eyes.,They\nlsmdc3056_PUBLIC_ENEMIES-3588,9189,Someone looks him in the eye. He,sneers and winds up with his fist.,pounces on someone and it stands.,maintains his footing as he slams his head onto the floor.,shrugs slightly and kisses his lips.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone looks him in the eye.,He\nlsmdc3056_PUBLIC_ENEMIES-3588,9193,\"In the hall, the rest of the agents stand aside as he passes with the weakened woman. In the interrogation room, someone\",lowers his arm from the burly agent's throat and leaves.,sits on the sidewalk from the quick reads past the young woman.,smokes a cigar from a hookah.,removes a vial with all cupcakes.,,gold0-reannot,pos,unl,unl,unl,n/a,\"In the hall, the rest of the agents stand aside as he passes with the weakened woman.\",\"In the interrogation room, someone\"\nanetv_B6W_0AvgGTY,13853,The man throws a frisbee off into the distance and the dog chases after it. The dog,grabs the frisbee and runs back to the man.,runs around to the camera opening while the dog runs.,kicks the dog away again and runs across the room.,continuously follows in the rumble of the dog while dragging the bull around and spinning around.,chases a calf in calf and walks out of frame.,gold0-orig,pos,unl,unl,unl,unl,The man throws a frisbee off into the distance and the dog chases after it.,The dog\nanetv_KkpQ347Ceak,17891,They crack a nut and put that into the bowl. They,crack another nut over a black tray.,slide the box shut in a box.,continue using the tool to remove the shingles.,continue to scrape the paper down.,,gold0-orig,pos,unl,unl,pos,n/a,They crack a nut and put that into the bowl.,They\nanetv_KkpQ347Ceak,17890,A person is putting food into a bowl. They,crack a nut and put that into the bowl.,are carving the pumpkins with the hand posters.,are shown in places together in a bowl.,are hit in a bowl.,put a new nozzle to the surface.,gold0-orig,pos,unl,unl,unl,unl,A person is putting food into a bowl.,They\nlsmdc3042_KARATE_KID-20374,12163,\"Someone carries it to his opponent. As someone accepts it, they\",share a respectful smile.,hold hands behind their heads.,greet each other burned.,hug to join the rest of the family.,swap a warm toothy smile.,gold0-orig,pos,unl,unl,pos,pos,Someone carries it to his opponent.,\"As someone accepts it, they\"\nlsmdc3042_KARATE_KID-20374,12117,\"Master someone holds someone's face, peering closely at his nose. Someone\",\"stares, wide - eyed, as his master releases his grip.\",gets up and goes for a light.,\"conversing animatedly, someone stands and stares past the wide - eyed, brown - haired kid.\",gives him a slap.,,gold0-orig,pos,pos,pos,pos,n/a,\"Master someone holds someone's face, peering closely at his nose.\",Someone\nlsmdc3042_KARATE_KID-20374,12082,It blazes with a greenish - yellow flame. Someone,runs out and faces the judges.,peels off a ski hat.,picks up a garden spoon.,turns away from his cronies.,,gold1-orig,pos,unl,unl,pos,n/a,It blazes with a greenish - yellow flame.,Someone\nlsmdc3042_KARATE_KID-20374,12156,The official lifts someone's hand aloft. Someone,\"gives a proud nod, his eyes glistening.\",throws the stool over the table and flings him against a desk chair.,marches down a hallway.,watches someone with her son.,\"goes, then notices someone.\",gold0-orig,pos,unl,unl,unl,unl,The official lifts someone's hand aloft.,Someone\nlsmdc3042_KARATE_KID-20374,12138,\"Someone pushes himself up on his uninjured knee, then buckles. Near tears, someone\",shifts anxiously on her feet.,rests his hands on his chin in victory.,peeks through the driver's window.,dabs the bubbles with his pliers.,stretches his arm into the air.,gold1-orig,pos,unl,unl,unl,pos,\"Someone pushes himself up on his uninjured knee, then buckles.\",\"Near tears, someone\"\nlsmdc3042_KARATE_KID-20374,12147,\"Someone's shoulders heave as he edges toward someone. Lowering his chin, someone\",stares piercingly at his opponent.,rests his head against his shoulder.,tilts his head and gives a sad frown.,nods for the boy to go.,,gold0-orig,pos,unl,pos,pos,n/a,Someone's shoulders heave as he edges toward someone.,\"Lowering his chin, someone\"\nlsmdc3042_KARATE_KID-20374,12158,Someone and someone jump up and down. As someone,turns away with his head bowed.,heads out of the humvee's driver's rear door as he heads into a second lobby.,\"carries his flat, a rumble emerges from outside under the window and throws up the bag.\",\"gets to his feet, a aging man approaches a man in a wheelchair holding a crying set.\",stands up striding toward the crowd.,gold1-orig,pos,unl,unl,unl,pos,Someone and someone jump up and down.,As someone\nlsmdc3042_KARATE_KID-20374,12155,\"His beaming teacher mouths, You won. The official\",lifts someone's hand aloft.,shields his face in excitement.,extends a helpless hand out to someone.,smiles goodbye and starts signing his hand.,\"takes her arm, strides in the direction of someone's wet home.\",gold0-orig,pos,unl,unl,unl,unl,\"His beaming teacher mouths, You won.\",The official\nlsmdc3042_KARATE_KID-20374,12096,The two boys take their starting poses. Someone,creeps toward his opponent with a taunting smirk.,looks into her cheek.,stirs as their fists.,pretends to bring a picture of the man over his heart and see that far goes of the game is that.,approaches someone who stands looking down.,gold0-orig,pos,unl,unl,unl,pos,The two boys take their starting poses.,Someone\nlsmdc3042_KARATE_KID-20374,12112,Someone blocks his fevered attacks. Someone,leaps at him hooks his legs around the bully's neck.,dashes into a black and white cottage.,builds up someone's perfect throw.,presses his fingers against the syringe's handle.,\"rushes through frame, sealing the felt gun aside from his.\",gold1-orig,pos,unl,unl,unl,pos,Someone blocks his fevered attacks.,Someone\nlsmdc3042_KARATE_KID-20374,12092,The American looks the bully dead in the eye. They,share a solemn look.,guide the individual out in the water.,finish their karate routine and smile at the audience.,looks from someone to the audience and taps on someone's shoulder for another beat even knowing he does not what to do.,,gold0-orig,pos,unl,unl,unl,n/a,The American looks the bully dead in the eye.,They\nlsmdc3042_KARATE_KID-20374,12110,Both boys catch their breath. Someone,watches with a knitted brow.,sways swings her head.,\"squeezes his hand and runs away down the corridor through the tall indeed, tunnel.\",spots a chubby - haired child cradling a bouquet of flowers.,,gold0-orig,pos,unl,unl,unl,n/a,Both boys catch their breath.,Someone\nlsmdc3042_KARATE_KID-20374,12127,The boy delivers a swift kick to the leg. Someone,\"falls, baring his gritted teeth.\",reaches for an assault rifle.,grimaces shoulder - high kicks and dodges the kick.,brings his slip out from behind the gate.,moves wildly out of the water.,gold0-orig,pos,unl,unl,unl,unl,The boy delivers a swift kick to the leg.,Someone\nlsmdc3042_KARATE_KID-20374,12099,\"Someone leaps back onto his hands, and springs onto his feet. The two boys\",\"swing fiercely at one another, each blocking the other with precision.\",\"exchange a quick, fearful glance at the archer.\",\"stand on either side, facing right, then take to take a seat.\",\"crack up at the park, picking themselves up while being fearful.\",attack each other's gaze.,gold0-orig,pos,unl,unl,unl,unl,\"Someone leaps back onto his hands, and springs onto his feet.\",The two boys\nlsmdc3042_KARATE_KID-20374,12141,\"He pushes himself up, then stands on his good leg. Someone cheers wildly and someone\",gives an astonished smile.,'s face is unmasked.,buries his face in his hands.,does more medical moves.,tackles struggle with the axe.,gold0-orig,pos,unl,unl,unl,unl,\"He pushes himself up, then stands on his good leg.\",Someone cheers wildly and someone\nlsmdc3042_KARATE_KID-20374,12160,It replays his masterful kick in slow motion. Someone's face and name,\"appear alone on the display, surrounded by chinese text.\",keeps its eyes aimed at the smoky control as someone reaches through the net.,appear on someone's white.,appears on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,It replays his masterful kick in slow motion.,Someone's face and name\nlsmdc3042_KARATE_KID-20374,12084,Spectators spring to their feet. The crowd,\"parts for the american, as he marches forward with a limping gait.\",\"stares intently, then whirls across the wasteland.\",claps his hands in approval.,twist around for a second.,cheers for their teammates.,gold0-orig,pos,unl,unl,pos,pos,Spectators spring to their feet.,The crowd\nlsmdc3042_KARATE_KID-20374,12122,\"Someone eyes his rival teacher worriedly. Raising his hands, someone\",tensely licks his lips and blinks the sweat out of his eyes.,bats one of the pincers back and walks away.,faces him and aims his gun victoriously.,pushes him up toward the phone.,wears a cool expression as he swaggers away.,gold1-orig,pos,unl,unl,unl,pos,Someone eyes his rival teacher worriedly.,\"Raising his hands, someone\"\nlsmdc3042_KARATE_KID-20374,12128,\"Someone falls, baring his gritted teeth. He\",\"presses his painfully grimacing face to the mat, clutching his thigh.\",beats at the cauldron.,'the crowd is bandaged.,watches her with an affectionate smirk.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone falls, baring his gritted teeth.\",He\nlsmdc3042_KARATE_KID-20374,12085,\"The crowd parts for the American, as he marches forward with a limping gait. In the stands, someone\",cranes her neck for a view of her son.,bowing to someone.,leaves the station and steps into a open field.,returns an gaze to the statue.,whirls his hips with his wings and runs toward the ship.,gold0-orig,pos,unl,unl,unl,unl,\"The crowd parts for the American, as he marches forward with a limping gait.\",\"In the stands, someone\"\nlsmdc3042_KARATE_KID-20374,12101,The boy bravely sits up. Master someone,shifts on his feet as he watches grimly.,\"follows, leaving someone alone with her mother.\",takes his poker stare.,reaches for his gun but someone is beside him.,,gold1-orig,pos,unl,unl,unl,n/a,The boy bravely sits up.,Master someone\nlsmdc3042_KARATE_KID-20374,12151,\"Someone turns away, then back - flips off his one good leg. As the crowd cheers, someone\",lands balanced in the one - legged cobra pose.,hops up to the sitting position.,nods the direction sort of mr.,'s mother laughs with delight.,\"grip the man's arms behind his back, then brings him to his feet.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone turns away, then back - flips off his one good leg.\",\"As the crowd cheers, someone\"\nlsmdc3042_KARATE_KID-20374,12150,Someone cocks his head the other way. The official,lowers the flags between them.,\"fires agent in the face, then runs over the surveillance lane.\",\"throws a colleague, who cuts an arm around his neck and backs to him.\",gives him a high five.,imitates the location of someone's arrest.,gold0-orig,pos,unl,pos,pos,pos,Someone cocks his head the other way.,The official\nlsmdc3042_KARATE_KID-20374,12152,\"As the crowd cheers, someone lands balanced in the one - legged cobra pose. Writhing before him, someone\",presses a hand over his left eye.,slides onto the indian social bars.,\"knocks the sleeve down, and all noises faints to it.\",leans up and lifts his brow.,steals the dog's mask.,gold0-orig,pos,unl,unl,unl,unl,\"As the crowd cheers, someone lands balanced in the one - legged cobra pose.\",\"Writhing before him, someone\"\nlsmdc3042_KARATE_KID-20374,12091,Someone waits at the edge of the platform as someone steps near. The American,looks the bully dead in the eye.,looms in front of him.,looks slightly as someone approaches from further inside.,\"do catch with him, trying to get up.\",on a street.,gold0-orig,pos,unl,unl,unl,unl,Someone waits at the edge of the platform as someone steps near.,The American\nlsmdc3042_KARATE_KID-20374,12097,\"The two trade deft punches and kicks, each expertly blocking the other. Someone attacks with a hitch kick, but his opponent\",sidesteps out of the way.,leaps into his arms as someone follows back through their linked gate.,smashes him against the building with a goblet.,hits him repeatedly so the corners are stuck.,blocks angrily to punch him.,gold0-orig,pos,unl,unl,unl,pos,\"The two trade deft punches and kicks, each expertly blocking the other.\",\"Someone attacks with a hitch kick, but his opponent\"\nlsmdc3042_KARATE_KID-20374,12167,\"Lined up behind him, his fellow students sidestep into view, copy the gesture. Someone\",respectfully returns the bow.,\"row their bridges down a city, and sideline together.\",\"motions for the ladies veil, then hands his face to someone.\",\"appears a few steps, then throws down in a mounted hydra armored suit.\",appears at the statue of gryffindor.,gold0-orig,pos,unl,unl,unl,unl,\"Lined up behind him, his fellow students sidestep into view, copy the gesture.\",Someone\nlsmdc3042_KARATE_KID-20374,12079,Someone stares tenderly at him. Someone,gives an understanding nod.,shyly shoots at him and sits on top of the casket.,'s gaze softens.,allows a faint smile.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stares tenderly at him.,Someone\nlsmdc3042_KARATE_KID-20374,12142,Someone cheers wildly and someone gives an astonished smile. Spectators,joyfully wave their flags in support.,hold up at gunpoint.,adjusts his gear.,\"inspect someone, someone walks ahead.\",\"pitched overhead, the player twirls over someone's shoulder lying atop her belly.\",gold0-orig,pos,unl,unl,unl,unl,Someone cheers wildly and someone gives an astonished smile.,Spectators\nlsmdc3042_KARATE_KID-20374,12115,\"Guided by the official, someone compliantly backs off. Standing, someone\",exhales heavily and faces his opponent.,grips the handle and grips the bars by its hand.,circles away from a nearby trailer.,climbs up from the shoulder with his cane.,checks his list on his list.,gold0-orig,pos,unl,unl,unl,unl,\"Guided by the official, someone compliantly backs off.\",\"Standing, someone\"\nlsmdc3042_KARATE_KID-20374,12148,As the American tilts his head. Someone,drops his fists and matches him.,\"opens his bow, revealing only his long - lipped face.\",shoves a couple of his wheels towards him.,walks around a corner and raises his hands.,grins and offers someone a nod.,gold0-orig,pos,unl,unl,pos,pos,As the American tilts his head.,Someone\nlsmdc3042_KARATE_KID-20374,12113,Someone leaps at him hooks his legs around the bully's neck. The bully,lands on his back.,pushes someone back and forth.,grinds someone to the ground.,\"looms, knocking him unconscious.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone leaps at him hooks his legs around the bully's neck.,The bully\nlsmdc3042_KARATE_KID-20374,12124,Someone takes a deep breath. The American,expertly blocks his swinging fists and feet.,stops his horse's filter.,\"nods high two stories, then studies herd in the distance as someone chases him out of their room.\",quiet again to the front.,,gold0-orig,pos,unl,unl,unl,n/a,Someone takes a deep breath.,The American\nlsmdc3042_KARATE_KID-20374,12095,Someone bounces on his feet. The two boys,take their starting poses.,strut aloft to the school.,hear black arguing laugh.,drop their coconut onto a mat.,lose a huge little kick.,gold0-orig,pos,unl,unl,unl,unl,Someone bounces on his feet.,The two boys\nlsmdc3042_KARATE_KID-20374,12121,\"Raising his fists, he wipes his nose. Someone\",eyes his rival teacher worriedly.,grits his teeth as someone speeds along the beach harbor.,takes out his teeth.,shakes the glass and faces the trooper.,cape someone lies over him on the roof and smells his dead dog in a choke hold.,gold0-orig,pos,unl,unl,unl,unl,\"Raising his fists, he wipes his nose.\",Someone\nlsmdc3042_KARATE_KID-20374,12098,As the bully swings his fists. Someone,\"leaps back onto his hands, and springs onto his feet.\",arrives to his patio.,aims his pistol into someone's crotch.,clutches someone's neck.,,gold1-orig,pos,unl,unl,pos,n/a,As the bully swings his fists.,Someone\nlsmdc3042_KARATE_KID-20374,12120,\"Shifting his calculating gaze, Master someone returns to the sidelines. Someone\",rolls his shoulder as he and someone face off.,props someone back to his shoulder and rests a hand on her shoulder.,\"lifts his body toward someone, who raises his binoculars, water their eyes and head.\",starts to pound her bag in the ground.,lies on her side with her legs stretched between someone.,gold0-orig,pos,unl,unl,unl,unl,\"Shifting his calculating gaze, Master someone returns to the sidelines.\",Someone\nlsmdc3042_KARATE_KID-20374,12114,The bully lands on his back. The official,takes the american's wrist and helps him up.,reaches out to collect his plaster.,brings down his cards and flags forward excitedly.,presses his brow together in sausage.,shakes the man's hand.,gold0-orig,pos,unl,unl,unl,pos,The bully lands on his back.,The official\nlsmdc3042_KARATE_KID-20374,12130,The official extends a red flag. As Master someone,looks to the big screen.,shoots someone on the arm.,enters and returns with the teammates on the gi.,\"looks down at someone, then lowers his head.\",smacks out the quaffle.,gold0-orig,pos,unl,pos,pos,pos,The official extends a red flag.,As Master someone\nlsmdc3042_KARATE_KID-20374,12149,Someone drops his fists and matches him. Someone,cocks his head the other way.,smashes the plane over the sandbags board.,gets to his feet.,woman takes someone's gun across the road and climbs back to the door.,winks reassuringly after him.,gold1-orig,pos,unl,pos,pos,pos,Someone drops his fists and matches him.,Someone\nlsmdc3042_KARATE_KID-20374,12102,Master someone shifts on his feet as he watches grimly. The big screen,shows a point awarded to someone.,moves as he pauses for the second look.,shows someone hunched over the head civilian.,shows four more minutes - their size.,,gold0-orig,pos,unl,unl,unl,n/a,Master someone shifts on his feet as he watches grimly.,The big screen\nlsmdc3042_KARATE_KID-20374,12086,\"In the stands, someone cranes her neck for a view of her son. He\",hobbles toward the rival teacher with a mocking limp.,pulls away and shakes her head.,spreads a piece of asparagus as it descends towards the rippling surface.,spots her with a card through her shoulder.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the stands, someone cranes her neck for a view of her son.\",He\nlsmdc3042_KARATE_KID-20374,12118,\"Someone stares, wide - eyed, as his master releases his grip. He\",leaps back onto the platform.,\"stares at easter, his eyes are closed.\",speeds down the street.,drops for a few seconds.,takes someone's arm.,gold1-orig,pos,unl,unl,unl,pos,\"Someone stares, wide - eyed, as his master releases his grip.\",He\nlsmdc3042_KARATE_KID-20374,12107,Someone cheers wildly and someone grins. The big screen,\"shows a point awarded to someone, tying the score at 1 to 1.\",shows no sign of him.,covers the entire logo as the dean arranges the sheet on the floor.,rushes up as the flame flares.,,gold0-orig,pos,unl,unl,unl,n/a,Someone cheers wildly and someone grins.,The big screen\nlsmdc3042_KARATE_KID-20374,12076,\"His pupil gazes into his eyes, then gravely looks away. Gazing up, someone\",takes a deep breath.,shifts his amused gaze.,leans into a wall where someone's face is covered from curls.,\"shifts his gaze to the pilot, who sits up and starts over the four - mounted lake.\",\"draws his deep, self - naturedly smirk.\",gold0-orig,pos,unl,unl,unl,pos,\"His pupil gazes into his eyes, then gravely looks away.\",\"Gazing up, someone\"\nlsmdc3042_KARATE_KID-20374,12108,\"The big screen shows a point awarded to someone, tying the score at 1 to 1. Someone\",\"stands, his face shining with sweat.\",pulls a short crane now.,climbs onto his back.,moves for each of the dogs and seats.,walks dance as a crowd flashes.,gold0-orig,pos,unl,unl,unl,unl,\"The big screen shows a point awarded to someone, tying the score at 1 to 1.\",Someone\nlsmdc3042_KARATE_KID-20374,12168,Someone respectfully returns the bow. Someone,heads off with his teacher.,'s snowflakes swirl up.,shifts his gaze to the stunning brunette.,undoes the pirate belt.,takes a breath and leave someone letting her head fall with water.,gold1-orig,pos,unl,unl,unl,unl,Someone respectfully returns the bow.,Someone\nlsmdc3042_KARATE_KID-20374,12087,He hobbles toward the rival teacher with a mocking limp. Someone,observes him with a stony expression.,remains alone with her.,knocks two swinging wooden limbs as someone plates away.,lays the coin down at his father's head.,looks back into the apartment and runs for the door to the house.,gold1-orig,pos,unl,unl,unl,unl,He hobbles toward the rival teacher with a mocking limp.,Someone\nlsmdc3042_KARATE_KID-20374,12106,Someone drops to his knees and spins. He,slides across the mat to his opponent.,\"flings it down before the falcon, then over and around someone.\",lands a few feet ahead.,sees someone dangling upside down.,,gold0-orig,pos,unl,unl,pos,n/a,Someone drops to his knees and spins.,He\nlsmdc3042_KARATE_KID-20374,12132,The score display shows a point being awarded to someone. Master someone,looks to someone with a satisfied smirk.,watches someone lift a machine overhead.,\"leaps to someone's lap, but someone holds him tight.\",peers over a railing into the ship.,watches in amazement as someone closes his lips.,gold1-orig,pos,unl,unl,unl,pos,The score display shows a point being awarded to someone.,Master someone\nlsmdc3042_KARATE_KID-20374,12083,\"Returning to the center of the mat, he raises the microphone. Spectators\",spring to their feet.,sits up and stands at the end of the line.,\"watches someone smiling, watching him go.\",are waiting to enter the stadium.,,gold0-orig,pos,unl,unl,pos,n/a,\"Returning to the center of the mat, he raises the microphone.\",Spectators\nlsmdc3042_KARATE_KID-20374,12100,\"The two boys swing fiercely at one another, each blocking the other with precision. Someone\",catches someone's arm and forces him back with a powerful blow.,turns the pinata and goes around the bars.,\"leaps around the young men, throws his fists into the air and tosses him back to the mat.\",grabs her by the wrist.,,gold0-orig,pos,unl,unl,unl,n/a,\"The two boys swing fiercely at one another, each blocking the other with precision.\",Someone\nlsmdc3042_KARATE_KID-20374,12090,\"As he steps away, someone shifts his troubled gaze. Someone\",waits at the edge of the platform as someone steps near.,stares out from an atop gate.,minutes someone looks up at a ceiling filled with leggy couple.,nuzzles the boy's forehead.,\"fidgets, then straightens as he eyes someone.\",gold0-orig,pos,unl,unl,unl,pos,\"As he steps away, someone shifts his troubled gaze.\",Someone\nlsmdc3042_KARATE_KID-20374,12154,\"The official lifts a blue flag high. Snapping out of his meditative focus, the boy\",shifts his confused gaze.,kicks someone's knees in the groin.,\"pretends to take a pulse web of twist on his nose, his blocks drops from his grasp.\",flies over his rotors.,drags someone over to his partner.,gold1-orig,pos,unl,unl,unl,pos,The official lifts a blue flag high.,\"Snapping out of his meditative focus, the boy\"\nlsmdc3042_KARATE_KID-20374,12131,As Master someone looks to the big screen. The score display,shows a point being awarded to someone.,reads as someone sheepishly approaches someone who holds a pen.,appears in the locker.,shows a near - 9.,,gold0-orig,pos,unl,pos,pos,n/a,As Master someone looks to the big screen.,The score display\nlsmdc3042_KARATE_KID-20374,12143,\"Spectators joyfully wave their flags in support. His brow furrowed, someone\",faces someone with glistening eyes.,furrows his brow in anticipation.,walks along his way into a dark room.,\"sits on a waiting bench, gazing back at someone who stares ahead through a window.\",glances over his shoulder.,gold0-orig,pos,unl,unl,pos,pos,Spectators joyfully wave their flags in support.,\"His brow furrowed, someone\"\nlsmdc3042_KARATE_KID-20374,12165,\"Someone and someone arrive at the platform. Grinning, the boy\",sets the trophy before his mother.,uses a piece guide along the parker's mouth and attempts to push it aside.,is on a stage in a gray silver doll with a blue belt straight over a wound.,pats the other guy suit another.,gives a withering look.,gold1-orig,pos,unl,unl,unl,pos,Someone and someone arrive at the platform.,\"Grinning, the boy\"\nlsmdc3042_KARATE_KID-20374,12144,\"His brow furrowed, someone faces someone with glistening eyes. As someone\",watches with a knitted brow.,\"steps away, a smile sweeps down his faces.\",reaches into his pocket.,\"reading more photos, someone stares at him floating regretfully.\",lays a sweat stain down and wipes tears from someone's face.,gold1-orig,pos,unl,unl,unl,unl,\"His brow furrowed, someone faces someone with glistening eyes.\",As someone\nlsmdc3042_KARATE_KID-20374,12089,\"Someone grins in his face and claps. As he steps away, someone\",shifts his troubled gaze.,casually sniffs the air.,smiles on the bed.,springs to his feet.,breaks into an awkward smile and ambles to the water.,gold1-orig,pos,pos,pos,pos,pos,Someone grins in his face and claps.,\"As he steps away, someone\"\nlsmdc3042_KARATE_KID-20374,12137,\"On the sidelines, his corrupt teacher maintains a cool smirk. Someone\",\"pushes himself up on his uninjured knee, then buckles.\",enters the camp village league.,eyes the chamber then fires a bullet at the nose.,watches his friend with a hostile smirk.,raises his head and points irritably.,gold0-orig,pos,unl,unl,unl,unl,\"On the sidelines, his corrupt teacher maintains a cool smirk.\",Someone\nlsmdc3042_KARATE_KID-20374,12123,\"Raising his hands, someone tensely licks his lips and blinks the sweat out of his eyes. Someone\",takes a deep breath.,'s red lips disintegrate into a smile.,\"rises slowly towards his portrait, then spreads a powder into his own.\",holds up a newspaper.,stares at him with a smile.,gold0-orig,pos,unl,unl,pos,pos,\"Raising his hands, someone tensely licks his lips and blinks the sweat out of his eyes.\",Someone\nlsmdc3042_KARATE_KID-20374,12094,The rival teachers move to vantage points nearby. Someone,bounces on his feet.,pops the neck of her mouth and points her fingers into the air.,stands and lies motionless on the floor.,fires a huge lightning turn over the docks.,lies on a cot.,gold0-orig,pos,unl,unl,unl,unl,The rival teachers move to vantage points nearby.,Someone\nlsmdc3042_KARATE_KID-20374,12093,Someone gives someone a supportive nod. And the boy,climbs the platform steps.,brings change to reveal a yoga audience.,breaks away from a sloping quadrangle.,turns his attention to the son.,rises to his feet.,gold0-orig,pos,unl,unl,pos,pos,Someone gives someone a supportive nod.,And the boy\nlsmdc3042_KARATE_KID-20374,12136,\"Someone looks up at someone. On the sidelines, his corrupt teacher\",maintains a cool smirk.,is rapt as she is dragged by the instructor.,pulls someone out of the van with his oriental partner.,snaps the american flag.,,gold1-orig,pos,unl,pos,pos,n/a,Someone looks up at someone.,\"On the sidelines, his corrupt teacher\"\nlsmdc3042_KARATE_KID-20374,12134,\"A hand to her brow, someone briefly averts her anguished gaze. The injured boy\",pushes himself up on his elbows.,joins her and follows her through a hallway.,picks it up and punches someone's chest.,shifts his emotional gaze as someone fits the paste on a worktop.,lifts his son with a restraining gaze.,gold0-orig,pos,unl,unl,unl,unl,\"A hand to her brow, someone briefly averts her anguished gaze.\",The injured boy\nlsmdc3042_KARATE_KID-20374,12161,\"Someone's face and name appear alone on the display, surrounded by Chinese text. As the announcer\",approaches with the trophy.,link one of the bikers is clearly hypnotized by an inner sun.,\"peers disapprovingly at a paper buckle on one hand, someone looks blank.\",\"continues, prevent others record actors.\",begins someone hails a detailed server.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's face and name appear alone on the display, surrounded by Chinese text.\",As the announcer\nlsmdc3042_KARATE_KID-20374,12126,\"Someone looks to his teacher, who gestures with a cold tilt of his head. The boy\",delivers a swift kick to the leg.,plays a song on the piano.,directs the boy over the crowd.,\"laughs, kicks and misses his head from the ground.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone looks to his teacher, who gestures with a cold tilt of his head.\",The boy\nlsmdc3042_KARATE_KID-20374,12103,\"The bully faces his opponent with a remorseless scowl. Holding his gaze, someone\",exhales through pursed lips.,watches with a cbs smile.,bows her head and points on his lower lip.,lets the harder stay on.,wipes away a tear.,gold0-orig,pos,unl,unl,unl,pos,The bully faces his opponent with a remorseless scowl.,\"Holding his gaze, someone\"\nlsmdc3042_KARATE_KID-20374,12129,\"He presses his painfully grimacing face to the mat, clutching his thigh. The official\",extends a red flag.,wets the forklift then turns and watches the battle.,plays a scratch - o - matic and stops in a doorway.,ticks it through a million minutes to see someone.,loosens to reveal his suspenders before arm high.,gold0-orig,pos,unl,unl,unl,unl,\"He presses his painfully grimacing face to the mat, clutching his thigh.\",The official\nlsmdc3042_KARATE_KID-20374,12169,Someone heads off with his teacher. They,\"bump their fists, flaring their fingers as they part.\",float over a city.,'re in a stall in the shadows.,walks out of her apartment and grabs her phone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone heads off with his teacher.,They\nlsmdc3042_KARATE_KID-20374,12077,\"Gazing up, someone takes a deep breath. He\",licks his lips and faces his teacher.,takes out someone's wallet.,\"stretches out his hand, sticky on his head.\",puts it on his head.,leans down to catch his breath.,gold0-reannot,pos,unl,unl,unl,pos,\"Gazing up, someone takes a deep breath.\",He\nlsmdc3042_KARATE_KID-20374,12135,Master someone watches with a heartsick gape. Someone,looks up at someone.,'s gaze gallops on the street entrance walking center.,is sitting at the bar.,places her axe on someone's head.,\"kisses a young fighter, then kisses his shoulder.\",gold1-reannot,pos,unl,unl,unl,unl,Master someone watches with a heartsick gape.,Someone\nlsmdc3042_KARATE_KID-20374,12125,The American expertly blocks his swinging fists and feet. Someone,\"looks to his teacher, who gestures with a cold tilt of his head.\",heads for his sword in front of the hogwarts army.,\"heads for the car, catching a baby on someone's dining table.\",runs down a long stairway with his hand on the cart.,,gold1-reannot,pos,unl,unl,pos,n/a,The American expertly blocks his swinging fists and feet.,Someone\nlsmdc3042_KARATE_KID-20374,12133,\"The official speaks to someone. A hand to her brow, someone briefly\",averts her anguished gaze.,\"looks again into someone's face as he turns to see someone in a restroom, and someone steps into his car.\",takes her cell off her ring.,shoots her twice onto the shoulder.,recognizes her and sighs.,gold1-reannot,pos,unl,unl,unl,pos,The official speaks to someone.,\"A hand to her brow, someone briefly\"\nlsmdc3042_KARATE_KID-20374,12109,\"Someone stands, his face shining with sweat. Someone\",bounces fearlessly on his feet.,takes up his pirate blaster.,stands and aims his large sword.,walks a little passed down through the tall gardener and a dog.,removes the t - champ machine from the man.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone stands, his face shining with sweat.\",Someone\nlsmdc3042_KARATE_KID-20374,12145,\"As someone watches with a knitted brow. Raising his injured knee to his chest, he\",\"lifts both hands before him, palms upturned.\",takes the bloody nose and hurries into the hall and pushes a lever down along a railing.,reaches for a surfboard's slides.,sneers apologetically to the couple then extends his hand and plucks a patch of tape from his ear.,,gold1-reannot,pos,unl,unl,unl,n/a,As someone watches with a knitted brow.,\"Raising his injured knee to his chest, he\"\nlsmdc3042_KARATE_KID-20374,12080,\"Someone gives an understanding nod. Now, he\",lifts a match to a cotton ball held in a long pair of tweezers.,\"leads an elegant young exotic woman in shorts, hanging a robe through a dusty air, and marches downstairs.\",\"listens for a moment, then directs it to a doorway, the impression of some people exiting the floor.\",gazes down the window as he spots back at someone's as he enters.,crouches to himself at a table as a friend leads the someone away.,gold1-reannot,pos,unl,unl,unl,pos,Someone gives an understanding nod.,\"Now, he\"\nlsmdc3042_KARATE_KID-20374,12162,\"With a nod, the man hands it over to the defeated boy. Someone\",carries it to his opponent.,finds them with his hands resting on the arm of his chair.,gives him a hug.,shakes his head slightly.,retreats with a wave.,gold0-reannot,pos,unl,unl,pos,pos,\"With a nod, the man hands it over to the defeated boy.\",Someone\nanetv_DW7Zm9DzEDk,10697,The man then leaps into the air and jumps into a sand pit. People,watch his jump on the side.,pushes the other into the air continuously.,get stuck in the air and celebrate with one another.,is seen spraying the bull with a hose.,continue climbing the the beam and between more people laying on the floor.,gold0-orig,pos,unl,unl,unl,unl,The man then leaps into the air and jumps into a sand pit.,People\nanetv_DW7Zm9DzEDk,10696,A man is seen running down a long track in slow motion. The man then,leaps into the air and jumps into a sand pit.,begins performing several tricks with his foot quickly and ends with him doing tricks.,begins moving all around the field and ends by jumping over the pole.,spins around several times and ends by jumping in steps.,close up runs and jumps over obstacles.,gold1-orig,pos,unl,unl,unl,pos,A man is seen running down a long track in slow motion.,The man then\nanetv_DW7Zm9DzEDk,15685,There's an athlete in blue athletic wear performing long jump in a stadium with the judges seated next to the sand pit. The athlete,comes running and then leaps straight into the sand pit.,swings and springs up on the pole as he sits down on it and dances in a split field.,poses and claps and perform while the man moves him backwards throwing a high victory again.,spins in celebration of the upcoming football drills followed by a gasp from the pole before a green park bench.,,gold0-orig,pos,unl,unl,unl,n/a,There's an athlete in blue athletic wear performing long jump in a stadium with the judges seated next to the sand pit.,The athlete\nanetv_DW7Zm9DzEDk,15686,He jumps up high in the air and take a long leap covering almost three fourths of the sand pit distance and lands on his feet. He then,\"gets up, turns around and walks away as some other players watch him.\",begins to do a long tricks on the back with the rope with his hand.,lassos as he prepare to throw their legs.,dismounts from the rope and lands on the grass.,,gold1-orig,pos,unl,unl,pos,n/a,He jumps up high in the air and take a long leap covering almost three fourths of the sand pit distance and lands on his feet.,He then\nlsmdc1015_27_Dresses-79680,1396,\"Next day, the sisters arrive at Hell's hardware store. Someone\",lets the door close on someone.,\"holds someone's baby as he smiles happily for his bride, who backed away from the house.\",jumps from his seat.,finds herself toting a rifle.,sneaks up behind them.,gold1-orig,pos,unl,unl,unl,pos,\"Next day, the sisters arrive at Hell's hardware store.\",Someone\nanetv_sxQ9H3c5bRM,7985,The drawing logo goes purple and zooms in and out. Women,are shown doing aerobic dancing workout.,see the flower title screen.,are pointing to spiders on here.,are standing on a pier watching her front the sidelines.,is someone's point of view.,gold0-orig,pos,unl,unl,unl,unl,The drawing logo goes purple and zooms in and out.,Women\nanetv_sxQ9H3c5bRM,4882,We see a lady leading an aerobics class. The class,stands over the step and dances.,gets on the step and other step dismount.,stops and talks to the camera of class.,\"flip over the brush bar, then spins how she stands.\",knits as she flips.,gold1-orig,unl,unl,unl,unl,unl,We see a lady leading an aerobics class.,The class\nanetv_sxQ9H3c5bRM,7984,The intro has drawings of bodybuilders and the words Gimnasio Coloso. The drawing logo,goes purple and zooms in and out.,is showing the male servant.,shows up on skiing and showing competitions.,shows people waving to a gymnast in an electronic gymnastics class.,appears that includes the names of the states and drawings.,gold1-orig,pos,unl,unl,unl,pos,The intro has drawings of bodybuilders and the words Gimnasio Coloso.,The drawing logo\nanetv_sxQ9H3c5bRM,4885,We see the teacher posing on a punching bag. We then,see an ending title screen.,see a man operating water - weight.,see people on a skateboard in a gymnasium.,see the videos of the teacher with the two guards.,see a man riding an elliptical bike on a cardio machine.,gold0-orig,pos,unl,unl,unl,unl,We see the teacher posing on a punching bag.,We then\nanetv_sxQ9H3c5bRM,4883,The class stands over the step and dances. The class,finishes and grows their arms in the air.,moves up and down one of the groups.,returns to do their routine and watches in unison.,finishes with their bodies through wide arched licks.,points to their instructor to see hedge formation.,gold1-reannot,unl,unl,unl,unl,unl,The class stands over the step and dances.,The class\nanetv_sxQ9H3c5bRM,4881,We see an opening title screen. We,see a lady leading an aerobics class.,see a man and a man on a ski fall performing jump asian tricks.,see a lady perform a pas of pummel in stairs.,\"see up letters into a attache case, a man is sitting inside an old wooden desk.\",see other men and women playing a game inside the bowling alleys.,gold1-reannot,pos,unl,unl,unl,pos,We see an opening title screen.,We\nanetv_sxQ9H3c5bRM,4884,The class finishes and grows their arms in the air. We,see the teacher posing on a punching bag.,start to dance on stage.,see the woman backstage stage.,and the third woman do clapping.,come from their place together.,gold1-reannot,unl,unl,unl,unl,unl,The class finishes and grows their arms in the air.,We\nlsmdc1058_The_Damned_united-98497,12107,\"Someone smiles bitterly as someone points past him, towards the empty stadium at the end of the tunnel. Alone, someone\",\"turns slowly and makes his way up towards the pitch, gazing at the empty stands.\",\"takes the hot iron from his mouth and storms off, leaving someone alone with his iv pole in his hand.\",waits through the hall surrounded by staff.,stifles a faint smile.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone smiles bitterly as someone points past him, towards the empty stadium at the end of the tunnel.\",\"Alone, someone\"\nanetv__-4ngMPCA9A,10540,A woman stands in a kitchen talking. She,\"walks over to a sink, puts on gloves and washes dishes.\",begins washing the dishes in the kitchen.,are standing on the counter watching them.,shows their cooking ingredients.,,gold1-orig,pos,pos,pos,pos,n/a,A woman stands in a kitchen talking.,She\nanetv_pHiulmPx7ek,16567,Several clips are shown of people running around chasing a ball. The girls,continue to play with one another while the camera pauses frequently to capture their movements.,continue kicking after dishes and throwing them into the water.,laugh and eventually make a celebrate and celebrate with each other.,hit the ball back and fourth while still walking back and fourth.,run the first time and race to stop and race around.,gold0-orig,pos,unl,pos,pos,pos,Several clips are shown of people running around chasing a ball.,The girls\nanetv_pHiulmPx7ek,8650,The girl in the white headband is highlighted during several games hitting and defending goals with a spot light and slowed replay. The girl in the white headband,is captured walking off field in slowed motion wearing a red jersey with the number 9 on the back of it.,\"pierced the first three times, then the girl started to until the team wins.\",spins for the second.,performs a pit very quickly.,is shown walking in an elaborate yellow suit in her black orange shirt and talking using her camera again.,gold0-orig,pos,unl,unl,unl,unl,The girl in the white headband is highlighted during several games hitting and defending goals with a spot light and slowed replay.,The girl in the white headband\nanetv_pHiulmPx7ek,8649,The girl in the white headband hits a goal with an instant replay. The girl in the white headband,is highlighted during several games hitting and defending goals with a spot light and slowed replay.,walks out of the gym.,becomes a replay and is congratulated by the same cheerleaders in tree sweater and setting.,takes off her blindfold.,throws a shot to the ground.,gold1-orig,pos,unl,unl,unl,unl,The girl in the white headband hits a goal with an instant replay.,The girl in the white headband\nanetv_pHiulmPx7ek,8648,\"Two teams of girls play field hockey in several different games, in several different locations, with a spotlight on one particular player in a white headband. The girl in the white headband\",hits a goal with an instant replay.,returns to the room with a stick.,is playing with repeated roll as the second player slashes the ball back and forth with the number.,shows players shots after she hits balls into the goal.,is spinning the ball overhand to the girl and a blue screen in orange.,gold0-orig,pos,unl,unl,unl,unl,\"Two teams of girls play field hockey in several different games, in several different locations, with a spotlight on one particular player in a white headband.\",The girl in the white headband\nanetv_pHiulmPx7ek,16566,A large group of girls are seen playing a game of field hockey down a field. Several clips,are shown of people running around chasing a ball.,are shown of people throwing a ball around while holing a ball.,\"are shown of people playing, one scoring the ball and other volleyball players.\",of air hockey are shown and one player slipping off a puck.,are shown of the sport.,gold1-reannot,pos,unl,unl,unl,pos,A large group of girls are seen playing a game of field hockey down a field.,Several clips\nanetv_5Eb_NVjFah0,16405,We then watch an older boy and a boy bowl in a bowling alley. A small boy in an orange shirt,rolls the ball down the aisle.,is laughing in front of a pinata.,makes bowling balls high on a net.,is running along the yard with his other people.,hops onto a bench.,gold0-orig,pos,unl,unl,unl,pos,We then watch an older boy and a boy bowl in a bowling alley.,A small boy in an orange shirt\nanetv_5Eb_NVjFah0,16407,We watch an older boy in a green shirt roll the ball 5 times and get 4 strikes. We,see a title screen and a slow motion of one of the shots of the older boy.,see ladies watching the boy in yellow make a sand and look at the camera.,watch his clock as he sleeps on the bed.,the girl swim.,,gold0-orig,pos,unl,unl,unl,n/a,We watch an older boy in a green shirt roll the ball 5 times and get 4 strikes.,We\nanetv_5Eb_NVjFah0,16406,A small boy in an orange shirt rolls the ball down the aisle. We,watch an older boy in a green shirt roll the ball 5 times and get 4 strikes.,large boy appears here being 3 and there - throws stones into his face.,see a young woman in a blue shirt and black shirt holding the camera in front of him.,see the opening screen with white text.,watch from the sidelines watching them.,gold0-orig,pos,unl,pos,pos,pos,A small boy in an orange shirt rolls the ball down the aisle.,We\nanetv_I-vi5EpjrFI,11470,Text is shown across the screen leading into two women speaking to one another. One,takes a sip of mouth wash and spits it into the sink.,they are shown using gloves out of the bottle and ironing as well as describing how they do their hair.,are shown up the camera and important have a picture shown in the video.,person puts shaving cream on his face.,woman is seen speaking to the camera and begins putting out cards while she is playing with another woman.,gold1-orig,pos,unl,unl,pos,pos,Text is shown across the screen leading into two women speaking to one another.,One\nanetv_I-vi5EpjrFI,11471,One takes a sip of mouth wash and spits it into the sink. She,hands the container back to the woman who turns to speak to the camera.,continues washing dishes in the sink and staying in the sink.,\"goes quickly, dropping the bottle down to the drain.\",gets out with the beer and walks over to someone who just misses her drink.,returns to the seasoning cupboard and disappears.,gold1-orig,pos,unl,unl,unl,unl,One takes a sip of mouth wash and spits it into the sink.,She\nanetv_wKThOOUV6lY,9328,A large gathering of people are outside in a mud pit. The two groups,are playing a game of tug of war.,perform the same hurling while an older man attempts to hit the pinata.,sit around each other.,run off and run back.,begin to hammer them up again level.,gold0-orig,pos,unl,unl,unl,unl,A large gathering of people are outside in a mud pit.,The two groups\nanetv_wKThOOUV6lY,14970,A group of people are standing in the mud. They,are engaging in a game of tug of war.,are laying with them on their backs.,are all climbing up the mountain.,are in front of the crowd.,,gold0-orig,pos,unl,pos,pos,n/a,A group of people are standing in the mud.,They\nanetv_wKThOOUV6lY,9329,The two groups are playing a game of tug of war. They,pull and tug the rope in opposing directions.,are playing a cricket game.,come to a halt and continue starts doing their things.,pulls onto a large gymnasium and several referees stand attached.,watch and replay their new events.,gold0-orig,pos,unl,unl,unl,pos,The two groups are playing a game of tug of war.,They\nanetv_wKThOOUV6lY,14971,They are engaging in a game of tug of war. They,\"pull on the rope, trying to make their enemies fall.\",ride the bystanders on their way down.,make a hand shoot the ball onto the ground.,are getting introductions and the people are already able to take then flip into slow motion.,are shown drumming and forming some sort of flat piece.,gold0-reannot,pos,unl,unl,unl,unl,They are engaging in a game of tug of war.,They\nanetv_pOyP_kDaskY,16435,A man in a suit reads off of a paper. A woman then,begins to report a news story.,shows the tattoo with tools and instructions.,shows off a putty paper ball.,flips her hair around and shows out the boring focus.,is standing on the front step.,gold1-orig,pos,unl,unl,unl,pos,A man in a suit reads off of a paper.,A woman then\nanetv_pOyP_kDaskY,16437,A young boy plays the harmonica on the street. He,stands on a dock telling his story.,walks over to the microphone and plays the bongos.,does sit ups with another guitar.,talks to the camera.,,gold1-orig,pos,unl,unl,unl,n/a,A young boy plays the harmonica on the street.,He\nanetv_pOyP_kDaskY,16436,A woman then begins to report a news story. A young boy,plays the harmonica on the street.,practices rock climbing with a pole.,is shooting with the young man.,uses a small brush from a blow dryer and lawn.,comes back to a puzzle in elliptical machine but finishes by talking to the camera.,gold0-reannot,pos,unl,unl,unl,unl,A woman then begins to report a news story.,A young boy\nanetv_wsmMniNThlI,10877,As they are riding they pass a set of glass igloos planted on the estate. They,reach a clearing where there is open land and several trees.,\"mud gardens along the slopes in the forest, consultation the fence and pulling to the railroad entrance.\",\"adds drink, as they ride close from other cars.\",pointed down seen with a small dog side by rapidly covering the contents.,sign is 8 until the pan has made for eggs and chopped.,gold0-reannot,pos,unl,unl,unl,unl,As they are riding they pass a set of glass igloos planted on the estate.,They\nanetv_vzxT-k8dsVs,18154,Man is unning wearing stilts in a skaet park. another man,is jumping along with the first man in the skate park.,is interviewed in the picture to the man.,stands in top of a building jumping with the young man throw off the boot.,enters a car wearing red stilts and is hanging on a taxi by a set of snow where several people are shown.,is with a litle bull standing with a motocross trainer on a concrete grassy sand sidewalk.,gold0-orig,pos,unl,unl,unl,unl,Man is unning wearing stilts in a skaet park.,another man\nanetv_vzxT-k8dsVs,18155,Another man is jumping along with the first man in the skate park. man in skate park,is running while a car is passing in the street.,is exercising in circles walking in the grass.,is jumping on blades and stands doing abs.,is taking pictures of the video.,is also doing a skating practice.,gold0-reannot,pos,unl,unl,unl,pos,Another man is jumping along with the first man in the skate park.,man in skate park\nanetv_eChLCFAGyx0,14820,The video shows close ups of several of the symphony members as they play their instruments. The camera then,pans out to show the audience.,zooms in on the kids.,pans around the microphone getting into a band playing together.,pans to a man playing a keyboard as he plays.,zooms in on the continue.,gold0-orig,pos,unl,unl,unl,unl,The video shows close ups of several of the symphony members as they play their instruments.,The camera then\nanetv_eChLCFAGyx0,14821,The camera then pans out to show the audience. The symphony,continues to play as the conductor leads.,moves up to show more hands.,vivian enjoys a cream.,are interviewed by more water.,ends playing with the band and waving to the camera.,gold1-orig,pos,unl,unl,unl,unl,The camera then pans out to show the audience.,The symphony\nanetv_eChLCFAGyx0,14822,The symphony continues to play as the conductor leads. The video,ends showing the entire symphony.,ends with the address in the far history.,ends with several peoples hits to several people and the winner.,ends with the terminal flipping in.,ends with white closing credits.,gold0-orig,pos,unl,unl,unl,pos,The symphony continues to play as the conductor leads.,The video\nanetv_eChLCFAGyx0,14819,The video takes place in a theater showing a symphony play a song. The video,shows close ups of several of the symphony members as they play their instruments.,fades with a triumphant silence.,plays with the children attempt to change a clip from a newspaper with a small group of women standing nearby.,cuts to pick up boxing.,\"is shown, how cars demonstrates how best to properly cross the room.\",gold0-orig,pos,unl,unl,unl,unl,The video takes place in a theater showing a symphony play a song.,The video\nanetv_qRFZMO_mTGU,15832,A girl is shown playing field hockey and presents various clips of herself doing moves. She later,is talking to the camera about her experiences with the sport and who exactly she is and why other people love her.,shows various clips using horses to different girls as the people cheer to them in the end.,dives forward several times on the beach.,\"runs down the field, waving her arms around the field as she move.\",ends with text in the background while occasionally speaking.,gold0-orig,pos,unl,unl,pos,pos,A girl is shown playing field hockey and presents various clips of herself doing moves.,She later\nanetv_qRFZMO_mTGU,15831,A woman walks forward talking to the camera and putting her hands on her hips. A girl,is shown playing field hockey and presents various clips of herself doing moves.,uses a pillow on a video of her wipe down in front of a laptop.,plays the flute knitting while holding up flips.,is upside down in her sleek apartment.,stands in the bathroom smiling.,gold0-orig,pos,unl,unl,unl,unl,A woman walks forward talking to the camera and putting her hands on her hips.,A girl\nlsmdc1028_No_Reservations-83385,19301,She tastes it with her little finger. Someone,puts a hand to the back of someone's neck and kisses her passionately.,writes a letter after her.,looks when she sees a fat guy.,'s light up the door.,\", leafs with his accomplice.\",gold1-orig,pos,unl,unl,unl,unl,She tastes it with her little finger.,Someone\nlsmdc1028_No_Reservations-83385,19306,\"A joyful someone leaves the trio to their breakfasts and passes back around the corner of the restaurant, acknowledging an elderly man who considers a leaflet. Each side of the triangle\",contains a name written in white.,is set over a circular television which is filled with a dropper.,lies in one drawn large vehicle which leads over a bucket and snowy ground.,scans the area as if they were on a white stool smoking.,smacks them like a stick.,gold1-orig,pos,unl,unl,unl,unl,\"A joyful someone leaves the trio to their breakfasts and passes back around the corner of the restaurant, acknowledging an elderly man who considers a leaflet.\",Each side of the triangle\nlsmdc1028_No_Reservations-83385,19305,She carries the plate to one of several busy al fresco tables. She,\"delivers the pancakes to someone, who is with his twin boys.\",puts off single lamp.,takes a squirming bite at the cupcake.,takes someone's cloth and rummages through a cramped black registration box.,jacks the camel alone.,gold0-orig,pos,unl,unl,unl,unl,She carries the plate to one of several busy al fresco tables.,She\nlsmdc1028_No_Reservations-83385,19307,\"Each side of the triangle contains a name written in white. Now, back inside the restaurant, someone\",stands up at the window and turns the triangle so that someone's name runs across the top.,\"runs playfully across the track with a sheepish shrug, then approaches his side, carrying a bag of stuffed mice.\",glowers and writes the name philadelphia's number before the ominous suit hanging on its door by several advertising.,\"sits in the bath, textured bloody vapor.\",has a record on his hand.,gold1-orig,pos,unl,unl,unl,pos,Each side of the triangle contains a name written in white.,\"Now, back inside the restaurant, someone\"\nlsmdc1028_No_Reservations-83385,19302,Someone puts a hand to the back of someone's neck and kisses her passionately. She,throws her arms around him and pulls him to her.,flash through the haze and he caress her belt.,stalks out to motorbikes.,covers her spot with her thumb.,wrenches her back and he laughs.,gold0-orig,pos,unl,unl,unl,pos,Someone puts a hand to the back of someone's neck and kisses her passionately.,She\nlsmdc1028_No_Reservations-83385,19303,\"Beyond the couple is a small, homely and packed restaurant. Someone\",runs up to the kitchen counter.,continues to follow him.,watches a young woman walk with a newspaper unsure someone's approach.,\"kneels apart, admiring his mother.\",is inside and shuts the door behind him.,gold1-reannot,unl,unl,unl,unl,unl,\"Beyond the couple is a small, homely and packed restaurant.\",Someone\nanetv_TlDh_RZ3HDk,1257,The woman in green curl the other woman's hair and then braide the side. The woman,styled the girl's hair into an updo.,cut the hair and put all the hair of a client's bushy hair.,removes the white throw towel and the man smiles.,walks over to the wall and talks to the camera for the video.,,gold0-orig,pos,unl,pos,pos,n/a,The woman in green curl the other woman's hair and then braide the side.,The woman\nanetv_TlDh_RZ3HDk,10817,A girl with long hair is seen looking off into the distance from a mirror and a woman using a curling iron on the hair. The woman then,braids the hair and pins half of the hair up into a bun.,continues playing the instrument and ending by looking to the camera.,walks onto a board wrapped around her and begins drying her hair while speaking to the camera behind her.,moves her black hair over her face and speaks in the camera and then examines them on the mirror.,shows one of her braids as well as trolley in a box of clothing while showing her hair on the side.,gold1-orig,pos,unl,unl,pos,pos,A girl with long hair is seen looking off into the distance from a mirror and a woman using a curling iron on the hair.,The woman then\nanetv_TlDh_RZ3HDk,10818,The woman then braids the hair and pins half of the hair up into a bun. She,\"sprays some hairspray and pins the rest of the hair up, showing a finished result in a 360 manner.\",then pulls out with another her products to a better hand.,then stops counting on sandals.,\"throws her arms under the briefly, and then applies footage to the background.\",,gold0-orig,pos,unl,unl,unl,n/a,The woman then braids the hair and pins half of the hair up into a bun.,She\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60043,6043,Someone leaps to his feet and pushes his way towards the bar. Someone,\"grabs someone's sleeve, spilling his beer.\",looks around as the elevator opens.,\"comes up the stairs, jumping and looks up at the ceiling above.\",magically burst into flames.,\"fires at him, then breaks into a run.\",gold1-orig,pos,unl,unl,unl,pos,Someone leaps to his feet and pushes his way towards the bar.,Someone\nanetv_FXb8rBMvol4,19021,People are snowboarding down a hill. A man,talks to the camera.,gets on the top of a hill going alongside the snow.,is lying down on a slope next to the hill.,is riding down a snowy hill.,is snowboarding down the hill and smiling.,gold0-orig,pos,unl,unl,pos,pos,People are snowboarding down a hill.,A man\nanetv_FXb8rBMvol4,19018,A man straps his snowboard on. Several people,are snowboarding down a hill.,are tubing down a hill.,are skiing down a slope.,ski down a ski slope.,ski down a mountain slope.,gold1-orig,pos,unl,pos,pos,pos,A man straps his snowboard on.,Several people\nanetv_FXb8rBMvol4,19017,People are coming off of a van holding snowboards. A man,straps his snowboard on.,is driving two cars down a hill.,jumps into a swimming pool.,plays a pet in a lake.,jumps up and walks quickly onto the lawn.,gold0-orig,pos,unl,unl,unl,pos,People are coming off of a van holding snowboards.,A man\nanetv_FXb8rBMvol4,19023,Several people do tricks on their snowboards. A man,talks to the camera again.,\"is seen walking, talking to the camera behind her.\",rides a bike across a field.,steps in the water with a scraper.,,gold0-orig,pos,unl,unl,unl,n/a,Several people do tricks on their snowboards.,A man\nanetv_FXb8rBMvol4,19022,A man talks to the camera. Several people,do tricks on their snowboards.,show the side screen.,wrap dancing in a room.,are shown riding sandy boats in the forest.,lead a camel on a trail.,gold0-orig,pos,unl,unl,unl,pos,A man talks to the camera.,Several people\nanetv_FXb8rBMvol4,19025,Several more people are snowboarding and talking. A man with a beard,talks to the camera.,is skateboarding in a trail of dust.,shows whistling.,is getting his leg shaved.,is shown up in his face pointing even more.,gold0-orig,pos,unl,unl,unl,unl,Several more people are snowboarding and talking.,A man with a beard\nanetv_FXb8rBMvol4,19020,A woman holds a child up to kiss a man. People,are snowboarding down a hill.,\"coughs to his chest, then spins to her horse while the boy helps the teen slide the clothes.\",come to pull them up.,got up while cars are gathered on the street.,are watching in a kitchen showing a cave.,gold0-reannot,pos,unl,unl,unl,unl,A woman holds a child up to kiss a man.,People\nanetv_FXb8rBMvol4,19026,A man with a beard talks to the camera. A man,takes off his snowboard.,shaves the man's leg.,walks over and wipes off the surface.,shaves a red car in the forest.,is then shown climbing a mountain.,gold1-reannot,pos,unl,unl,unl,pos,A man with a beard talks to the camera.,A man\nlsmdc0028_The_Crying_Game-63719,5099,He takes her hand away. She,looks at him hard.,closes her eyes as she tightens his wrists.,dismounts with her arms.,pulls out her sleeping form.,goes outside and shuts the door.,gold0-orig,pos,unl,unl,unl,pos,He takes her hand away.,She\nlsmdc0028_The_Crying_Game-63719,5098,\"She lies down on the bed beside him, takes off a black leather glove, and puts her hand on his crotch. He\",takes her hand away.,watches the sleeping baby in his late twenties.,gets out of bed.,goes back to scrubbing the sofa.,,gold0-orig,pos,unl,unl,unl,n/a,\"She lies down on the bed beside him, takes off a black leather glove, and puts her hand on his crotch.\",He\nanetv_Is0_Qv6NLm0,6154,The men talk with a homeless youth sitting outside a store. The group all,walks together down a street.,throw up their hands to the camera.,appear now and one of the men talks to the camera with a logo of lips.,talk and demonstrate funny ingredients to make tips across the floor.,laugh together as the man sneaks up to the high table.,gold0-orig,pos,unl,unl,unl,pos,The men talk with a homeless youth sitting outside a store.,The group all\nanetv_Is0_Qv6NLm0,6152,Two young guys stand together and hold up money. The young guys,talk to a homeless man and shake his hand.,kick the ball to each other.,throw the ball off into the flask and trade baskets.,stand up to watch.,,gold0-orig,pos,unl,unl,pos,n/a,Two young guys stand together and hold up money.,The young guys\nanetv_Is0_Qv6NLm0,6153,The young guys talk to a homeless man and shake his hand. The men,talk with a homeless youth sitting outside a store.,then both use the tile and plenty of people to play.,change their positions and continue cooking.,shake hands and sat with another man.,smile at the camera.,gold1-orig,pos,unl,unl,pos,pos,The young guys talk to a homeless man and shake his hand.,The men\nanetv_Is0_Qv6NLm0,6156,The men hold an arm wrestling contest standing on an outside patio. The man wins and both contestants,are given prize money.,join in an arm wrestling match.,begin fighting and fencing.,watch the fighting men and the girls.,do rope wrestling wrestling.,gold0-orig,pos,unl,unl,unl,unl,The men hold an arm wrestling contest standing on an outside patio.,The man wins and both contestants\nanetv_Is0_Qv6NLm0,6155,The group all walks together down a street. The men,hold an arm wrestling contest standing on an outside patio.,skate around as they each slide down the middle.,continue dancing as they watch at each other.,continue to close up and start driving their cars.,continue moving around in circles looking to the side.,gold0-reannot,pos,unl,unl,pos,pos,The group all walks together down a street.,The men\nlsmdc1038_The_Great_Gatsby-87521,16007,Extravagantly dressed guests go wild at one of someone's parties. They,\"drink, dance and splash about in the ornamental pool.\",rush out to join them.,walk towards a large open garage door.,\"rush out to someone, who conjures a smile.\",,gold0-orig,pos,unl,unl,pos,n/a,Extravagantly dressed guests go wild at one of someone's parties.,They\nanetv_W4aPcuQSxFI,12048,A close up of a sink is shown followed by a person turning on a faucet and grabbing the camera. She,faces a table and sprays down a rag followed by pushing the rag along the floor.,continues washing the faucet while looking to the camera and getting into his shoes.,lays up the toothbrush and starts wiping it off.,laughs as the camera zooms in on them and continues to wash their clothes.,,gold0-orig,pos,unl,pos,pos,n/a,A close up of a sink is shown followed by a person turning on a faucet and grabbing the camera.,She\nanetv_W4aPcuQSxFI,12049,She faces a table and sprays down a rag followed by pushing the rag along the floor. The woman,continues cleaning the floor and walks back to the camera.,continues speaking as the other woman speaks to the camera.,is laid back on the table with a woman in front of her on the sides.,continues adding black paint onto the towels until another liquid gets washed.,,gold0-orig,pos,unl,unl,unl,n/a,She faces a table and sprays down a rag followed by pushing the rag along the floor.,The woman\nanetv_tTIsHfF0UgA,4145,Man is holding a pole with an ice cream and giving it to a little child. people,are standing and walking behind the boy in a amusement park.,are walking into the back of a room.,are walking in a small field next to a bike.,\"are sitting at the table, laughing.\",are walking down the court wearing shoes in stacked clothing.,gold0-orig,pos,unl,unl,unl,unl,Man is holding a pole with an ice cream and giving it to a little child.,people\nanetv_1VBg21aaiKM,6802,\"A man talks, after cuts the beard with scissors. Then, the man\",talks and then cuts the beard with a machine.,cut the knife and the cut and knife.,fixes paint on the woman by the hair.,begin measuring the damaged own then brush wood.,\"puts cotton on a flat tire, starts a look and hands it over it.\",gold0-orig,pos,unl,unl,unl,unl,\"A man talks, after cuts the beard with scissors.\",\"Then, the man\"\nanetv_1VBg21aaiKM,6803,\"Then, the man talks and then cuts the beard with a machine. Again, the man\",talks and then cut the beard of the man with scissors.,speaks with the machine while holding the back of his head.,uses the hammer to measure the room.,\"does a front flip, then starts to shave the man's leg.\",applies a razor on his hand and rube his work.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man talks and then cuts the beard with a machine.\",\"Again, the man\"\nanetv_1VBg21aaiKM,12180,\"The man continues explaining and showing hot to cut the beard. At the end, the man\",cuts the mustache with a machine.,\"shows off his greasy model, then returns to cutting the plates.\",is demonstrating how to label the paint gadget using a hand thrower.,cuts the wall with the clipper and then signs again.,irons all over his leg sitting by the smoothing sharpener block.,gold0-reannot,pos,unl,unl,unl,unl,The man continues explaining and showing hot to cut the beard.,\"At the end, the man\"\nanetv_1VBg21aaiKM,12179,\"A man talks, and then cuts the beard of a person with scissors. The man\",continues explaining and showing hot to cut the beard.,demonstrates how to straighten the hair and put on the ski.,shows the paper and another person wearing pair of brushes.,removes the metal and holds the knife all.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A man talks, and then cuts the beard of a person with scissors.\",The man\nlsmdc1020_Crazy_Stupid_Love-81722,4231,The audience all turn to him. Someone,\"makes his way down the seating structure, squeezing past someone.\",smiles and raises their hands in disgust.,\"picks up stairs from the wrestling hut, who, waiting, uses his microphone to go behind a stand dividing the fence.\",and someone wave their hands in surrender together.,,gold1-orig,pos,unl,unl,unl,n/a,The audience all turn to him.,Someone\nanetv_JhqQGe0TkBU,14521,Suddenly a girl runs on a lower dining board and jumps in the swimming pool. People,sit around the pool.,play and darts and darts.,then jump into a swimming pool in front of the pool.,slides out another ice green spread.,run around a line.,gold0-orig,pos,unl,unl,unl,unl,Suddenly a girl runs on a lower dining board and jumps in the swimming pool.,People\nanetv_JhqQGe0TkBU,14520,\"People stands on top of a diving board, the a man jumps in the swimming pool. Suddenly a girl\",runs on a lower dining board and jumps in the swimming pool.,competitor colors with equestrian fish plays below her face.,grabs the drumsticks and begins to dive in an air with so much effort as pretending.,\"is in smoking pool, holding a contact bottle of water.\",jumps off the diving board into the pool.,gold0-orig,pos,unl,unl,unl,pos,\"People stands on top of a diving board, the a man jumps in the swimming pool.\",Suddenly a girl\nanetv_Qm6HmQv5uOo,404,A man sings a song with someone plays an accordion in a restaurant. The man playing accordion,breaks his instrument in half.,and a woman play title accordion in the field.,speaks and interviews then vault and sings.,jumps from a beam moving his body.,watches the drummer playing playing.,gold1-orig,unl,unl,unl,unl,unl,A man sings a song with someone plays an accordion in a restaurant.,The man playing accordion\nanetv_Qm6HmQv5uOo,405,The man playing accordion breaks his instrument in half. The people,are startled but continue on singing the song.,play solo with the man and start playing the instrument in front of the camera.,continue singing while drumming out until switch sides.,watch the man adjust the mouthpiece.,move back around play again and the man continues playing the piano while people's playing.,gold0-reannot,pos,unl,unl,unl,unl,The man playing accordion breaks his instrument in half.,The people\nanetv_ILwwD00q1ZY,1648,A person in a furniture store is talking about popular furniture made from reclaimed wood. He,\"shows rustic, contemporary and traditional type of furniture that is in his store.\",\"goes across and mounts more of the bars, then rubs his hands.\",is about efforts and is talking in front of a man who is running in the ground.,\"picks up a chain, checks its squares, and returns to one of the girls reacting in acetone somebody knocking the man out of\",,gold0-orig,pos,unl,unl,unl,n/a,A person in a furniture store is talking about popular furniture made from reclaimed wood.,He\nanetv_qdE6dbQOnt0,3681,A boy is standing in a bathroom squirting cleanser on his hand and washing his face. Once his face is lathered completely he,grabs hands full of water and rinses his face off until all of the soap is off.,seems to notice his movements.,is sitting on an ice cream covered dresser and where two paint are on the court observing his beard while explaining.,puts water and spreads onto the shiny surface of the water surface.,spits into the sink.,gold0-orig,pos,unl,unl,pos,pos,A boy is standing in a bathroom squirting cleanser on his hand and washing his face.,Once his face is lathered completely he\nanetv_qdE6dbQOnt0,9645,First the boy pumps something onto his hand from a bottle and he rubs it on his face. Then he washes it off using the water from the bathroom faucet and he,looks in the mirror to know how much of it is gone.,oil and messes with it.,begins talking the commentary about what he was doing and exercises on how to never play the new wallpaper.,measures the tub to clean it.,sprays it and flips the whole brush down.,gold1-orig,pos,unl,unl,pos,pos,First the boy pumps something onto his hand from a bottle and he rubs it on his face.,Then he washes it off using the water from the bathroom faucet and he\nanetv_lk2niPrG3y8,12658,There's a woman in a yellow tank top and black tights doing jump rope in a gym. She,jumps in a rhythmic manner without stopping on the hardwood floor surface.,is in a workout gym using a young baton and putting down her foot.,\"picks up a rubik's cube and flips backwards into her balance, then in her gym jumping.\",gets the belt on her leg and different sections of the back of her braid.,climbs back onto the horse sprinting and doing tumbling jumps or jumps on the trampoline.,gold0-orig,pos,unl,unl,unl,unl,There's a woman in a yellow tank top and black tights doing jump rope in a gym.,She\nanetv_lk2niPrG3y8,12659,\"She jumps in a rhythmic manner without stopping on the hardwood floor surface. After she's done, a person standing in front of her\",gives her a thumbs up and cheers for her.,\"dances on the street and gives her the music she is showing, she does some way to be playful.\",moving her legs using the bars and ends by jumping off the carpet with the mat.,begins playing on the violin as she continues on.,smiles while raising her arms up and down on the board.,gold0-orig,pos,unl,unl,unl,pos,She jumps in a rhythmic manner without stopping on the hardwood floor surface.,\"After she's done, a person standing in front of her\"\nanetv_wt0XC2EEh7Y,17832,\"A woman talks next a horse holding a brush. Then, the woman\",brush the neck and the front legs of the horse.,add pasta to the brush and then segments the left combs.,uses a brush to jump off the horse.,walks with several brushes and tries along the floor.,,gold0-orig,pos,unl,unl,unl,n/a,A woman talks next a horse holding a brush.,\"Then, the woman\"\nanetv_wt0XC2EEh7Y,17833,\"Then, the woman brush the neck and the front legs of the horse. After, the woman\",brush the body and the back legs of the horse.,inspects on the bow and put his foot in the saddle.,sails off the horse and lays back on the horse.,continue brushing the horse.,,gold0-orig,pos,unl,unl,pos,n/a,\"Then, the woman brush the neck and the front legs of the horse.\",\"After, the woman\"\nanetv_wt0XC2EEh7Y,17834,\"After, the woman brush the body and the back legs of the horse. When, she finish to brush the horse, she\",stands and talks pointing the horse.,put it back on the horses.,\"turns on the horse individually, then the horse.\",finishes the horse and starts brushing the horse.,cleans off the horse and takes care to the horse.,gold0-reannot,pos,unl,unl,unl,pos,\"After, the woman brush the body and the back legs of the horse.\",\"When, she finish to brush the horse, she\"\nlsmdc0020_Raising_Arizona-57292,8595,\"The two men are trotting out to a Mercury that sits untended at a gas island, a gas hose on automatic stuck in its tank. As someone starts up the car someone\",yanks the hose out and drops it to the ground.,gets to his feet and rummages through some unusual paper to the gentle - brown ground.,backs from the giant statue.,draws out under the driver's tubman and lurches the the driver.,,gold1-orig,pos,unl,unl,unl,n/a,\"The two men are trotting out to a Mercury that sits untended at a gas island, a gas hose on automatic stuck in its tank.\",As someone starts up the car someone\nlsmdc0020_Raising_Arizona-57292,8600,As someone turns back to the bedroom. As someone,enters and shuts the door.,\"is wiping right hand on her face, she looks happy with the gun on his father.\",peers through his binoculars.,\"goes to the stairs, his clock resumes ticking.\",\"enters the bathroom in silence, and the dark - haired woman steps away.\",gold0-orig,pos,unl,unl,unl,pos,As someone turns back to the bedroom.,As someone\nlsmdc0020_Raising_Arizona-57292,8598,\"Someone sits asleep on the sofa at the far end of the room, in a pool of lamp light. By the time we tighten on his face the knocking\",has become quite loud.,hit an open grill.,are too softly as they sleep.,is harshly tucked under a magnifying glass.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone sits asleep on the sofa at the far end of the room, in a pool of lamp light.\",By the time we tighten on his face the knocking\nlsmdc0020_Raising_Arizona-57292,8602,\"Someone smiles politely, then squints at someone. Someone\",is admiring the baby.,presses someone against a wall.,clamps his mouth and gazes solemnly.,has been talking to someone.,'s eyes blink again.,gold1-orig,unl,unl,unl,unl,pos,\"Someone smiles politely, then squints at someone.\",Someone\nlsmdc0020_Raising_Arizona-57292,8603,Someone is admiring the baby. People,look at each other uncomfortably.,\", someone with his gown gathered, opens the casket to the balcony terrace.\",\"shakes her head as he reads her a newfound stare, but she knows not to answer.\",stand on the back of the beach.,nods with the tip of her tongue and he looks deep into her eyes for a moment.,gold1-orig,pos,unl,unl,unl,unl,Someone is admiring the baby.,People\nlsmdc0020_Raising_Arizona-57292,8599,By the time we tighten on his face the knocking has become quite loud. He,\"looks up, alarmed.\",\"grins on his cheeks and folds the book, then picks up the phone and walks to a conference room.\",lowers his arm and gazes at the music.,hits the door and floats out.,,gold0-orig,pos,unl,unl,unl,n/a,By the time we tighten on his face the knocking has become quite loud.,He\nlsmdc0020_Raising_Arizona-57292,8601,As someone enters and shuts the door. She,\"listens hard at the door: someone's footsteps cross the living room, the click of the door opening, silence.\",\"lifts his brow curiously and stares at the floor, then graciously at the steaming vent dangling over the ceiling.\",glances at the bedroom then descends to an end.,\"listens on a phone, smiles at him and goes out of the cab.\",,gold0-orig,pos,unl,unl,unl,n/a,As someone enters and shuts the door.,She\nlsmdc0020_Raising_Arizona-57292,8596,As someone starts up the car someone yanks the hose out and drops it to the ground. Someone,is already starting to peel out as someone gets in.,\"takes a bleeding out on the ground, grabs his gun, and finds it empty.\",'s eyes dart around the room.,gets in the car by someone's car and picks up the gas charge.,stops a few feet.,gold1-reannot,pos,unl,unl,unl,unl,As someone starts up the car someone yanks the hose out and drops it to the ground.,Someone\nlsmdc3035_INSIDE_MAN-2294,7513,Someone breaks into a wide grin. Someone,reclines on the bed.,waves the gun at him.,spanks himself as he flattens someone over the bar.,falls off the boat.,downs a shot with someone.,gold0-orig,pos,unl,unl,pos,pos,Someone breaks into a wide grin.,Someone\nlsmdc3035_INSIDE_MAN-2294,7511,\"Someone stares with a confused look, then faces his reflection in a vanity mirror. He\",recalls bumping into someone at the bank.,glances up at the painting and spots him.,looks around at the glass of the junkyard.,steps away from the dining area.,drapes an arm around his shoulder.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stares with a confused look, then faces his reflection in a vanity mirror.\",He\nlsmdc3035_INSIDE_MAN-2294,7492,Someone shows off the diamond ring placed prominently on his middle finger. Someone,gives the bank chairman a cold look.,nods and unlatches the wheel.,\"listens to a number, still shooting at his eyes.\",throws it up in his gut.,\"nods at someone, who sits on one corner of rear.\",gold1-orig,pos,unl,unl,unl,pos,Someone shows off the diamond ring placed prominently on his middle finger.,Someone\nlsmdc3035_INSIDE_MAN-2294,7504,\"Wearing sexy lingerie, someone's girlfriend sits up and kisses him passionately. Their hands\",rove up and down each other's backs.,folded over her head.,\"drop onto the rock, whose lips listen tight, one hand chasm 50 yards away.\",slide back and forth between their seats.,\"hover behind her legs as they share a wide, giddy dance.\",gold0-orig,pos,unl,unl,unl,pos,\"Wearing sexy lingerie, someone's girlfriend sits up and kisses him passionately.\",Their hands\nlsmdc3035_INSIDE_MAN-2294,7503,\"As he shuts the door, a pair of smooth feminine legs stretches out on the bed. Wearing sexy lingerie, someone's girlfriend\",sits up and kisses him passionately.,sits down at the table.,notes calmly on a soft wooden window and furrows his brow.,watch the cops at the barricade.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he shuts the door, a pair of smooth feminine legs stretches out on the bed.\",\"Wearing sexy lingerie, someone's girlfriend\"\nlsmdc3035_INSIDE_MAN-2294,7499,\"Now, a bare chested young man sleeps on a couch gripping a liquor bottle. A door\",\"opens, spilling light into the room.\",remains open on his spot.,\"opens, revealing a waiter reading a book between them.\",\"opens, followed by a young woman.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Now, a bare chested young man sleeps on a couch gripping a liquor bottle.\",A door\nlsmdc3035_INSIDE_MAN-2294,7502,\"The detective enters his bedroom. As he shuts the door, a pair of smooth feminine legs\",stretches out on the bed.,draw him out from behind a corner.,lies down on top of him.,\"lies on his back,.\",emerge nearby a shadow.,gold0-orig,pos,pos,pos,pos,pos,The detective enters his bedroom.,\"As he shuts the door, a pair of smooth feminine legs\"\nlsmdc3035_INSIDE_MAN-2294,7500,\"A door opens, spilling light into the room. A shadow\",shows a figure in a brimmed hat.,appears and zooms under the bed.,is seen lying against a wall nearby.,sweeps from its window.,falls over her head on the desk.,gold0-orig,pos,unl,unl,unl,unl,\"A door opens, spilling light into the room.\",A shadow\nlsmdc3035_INSIDE_MAN-2294,7509,\"He sets his badge and pda on top. Reaching into his jacket pocket, he\",\"feels around, then pauses.\",pours the contents out a bin.,retrieves a cap from a bottle.,hands a line to three men in a blue tube.,opens it and strips his suit jacket.,gold0-orig,pos,unl,unl,unl,unl,He sets his badge and pda on top.,\"Reaching into his jacket pocket, he\"\nlsmdc3035_INSIDE_MAN-2294,7495,Someone heads up a staircase wearing his Panama hat. He,\"finds the mayor, someone, and another man at a table.\",races down the front.,\"glances at her, who takes someone's briefcase and kisses someone's cheek.\",sees a man for tossing skyward hors d'oeuvres.,takes a club and puts a medal in someone's hand.,gold0-orig,unl,unl,unl,unl,unl,Someone heads up a staircase wearing his Panama hat.,He\nlsmdc3035_INSIDE_MAN-2294,7507,\"It reads Awarded to Keith someone, Detective First Grade. He\",takes off his pistol.,slips the british penny into his breast pocket.,\"goes forward to take sip, you are clean.\",displays a man's heart.,\"is sitting in someone's chair, crawling with the ladder drawn.\",gold0-orig,pos,unl,unl,unl,unl,\"It reads Awarded to Keith someone, Detective First Grade.\",He\nlsmdc3035_INSIDE_MAN-2294,7512,He recalls bumping into someone at the bank. Someone,breaks into a wide grin.,looks out over the waves.,leans against someone's door with a lot of indifference.,starts beating furiously along the wall walkways.,takes out his shades.,gold1-orig,pos,unl,unl,unl,pos,He recalls bumping into someone at the bank.,Someone\nlsmdc3035_INSIDE_MAN-2294,7508,He takes off his pistol. He,sets his badge and pda on top.,enters his radio office and gazes down the hallway hallway.,puts it on top of a sacks.,\"crosses the sidewalk to his car, shuts it, and turns back to someone.\",holds it back in someone's hand and pulls the trigger.,gold0-orig,pos,unl,unl,unl,pos,He takes off his pistol.,He\nlsmdc3035_INSIDE_MAN-2294,7510,\"Pinching it in between his thumb and index finger, he turns it in the light. Someone\",\"stares with a confused look, then faces his reflection in a vanity mirror.\",arrives on the fallen crane.,unwraps the page and gapes as he eyes his others.,regards the thick arc from the trembling quivering tool.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Pinching it in between his thumb and index finger, he turns it in the light.\",Someone\nlsmdc3035_INSIDE_MAN-2294,7505,Their hands rove up and down each other's backs. She,\"points her fingers like guns, puts on his hat, and strike a pose.\",gazes steadily at the holographic green diamond on someone's shoulder.,touching dries her head.,smiles and smiles as she stands between the towering towers and rows.,asks too much.,gold1-reannot,unl,unl,unl,unl,unl,Their hands rove up and down each other's backs.,She\nlsmdc3035_INSIDE_MAN-2294,7498,\"The mayor furrows his brow. Now, a bare chested young man\",sleeps on a couch gripping a liquor bottle.,walks through wearing a hip hop haze.,with dark blonde hair strides his cap and waist.,sits on a bench with his legs stretched between his legs.,,gold0-reannot,pos,unl,unl,unl,n/a,The mayor furrows his brow.,\"Now, a bare chested young man\"\nlsmdc3035_INSIDE_MAN-2294,7493,\"Someone gives the bank chairman a cold look. Later, the two detectives\",strut down a sidewalk.,gaze off from their headsets.,compete in a darkened station.,watch someone woozily stirs someone's round then sits up and he grabs a grapefruit.,flee and begin past the beckon.,gold0-reannot,pos,unl,unl,unl,unl,Someone gives the bank chairman a cold look.,\"Later, the two detectives\"\nlsmdc3035_INSIDE_MAN-2294,7497,He writes it on a business card. He,holds out the pen recorder.,unwraps it and replaces it in his own ring.,gives a credit of a bottle she was rubbing.,\", then takes a photo of an old colleague.\",digs into his pocket and takes it back.,gold1-reannot,pos,unl,unl,unl,unl,He writes it on a business card.,He\nlsmdc3035_INSIDE_MAN-2294,7506,\"She points her fingers like guns, puts on his hat, and strike a pose. He\",puts a framed certificate on his dresser.,pretends to pin a bucket of mud.,holds up a human flag that prepares to strike.,passes someone as she heads up the stairs to her middle of the room.,sits on the street holding a baby as he watches.,gold0-reannot,pos,unl,unl,pos,pos,\"She points her fingers like guns, puts on his hat, and strike a pose.\",He\nlsmdc3008_BAD_TEACHER-3936,10312,Someone peers at the breasts. She,fondles them with an appraising frown.,points at one of the tossing items then smacks it.,resembles a silver crescent shaped ring.,pads across her painted wrist!,looks over her eyes.,gold0-orig,pos,unl,unl,unl,unl,Someone peers at the breasts.,She\nanetv_LLFhSU-XuTI,1126,The camera pans to capture both of them together. The camera,pans back to focus on the second man.,starts to be brushed.,pans around a group of people running around the yard with one watch.,then zooms in on a hardwood drum block.,continues pulling the shot of the building.,gold1-orig,pos,unl,unl,pos,pos,The camera pans to capture both of them together.,The camera\nanetv_LLFhSU-XuTI,1128,The second man stops mixing and tastes what he was mixing. The second man,offers the first man a taste of the mixture.,is shown flipping and throwing the object.,swirls his drink in order to get drinks.,returns where the man came the is used again.,serves the flute and begins spinning the balls.,gold0-orig,pos,unl,unl,unl,unl,The second man stops mixing and tastes what he was mixing.,The second man\nanetv_LLFhSU-XuTI,1127,The camera pans back to focus on the second man. The second man,stops mixing and tastes what he was mixing.,lowers the lens in his hand.,appears on the top of the ladder.,\"takes another stance, then lowers his head and looks at the image without breaking his stride.\",,gold0-orig,pos,unl,pos,pos,n/a,The camera pans back to focus on the second man.,The second man\nlsmdc1029_Pride_And_Prejudice_Disk_One-83766,10344,Someone leaps up from her chair and scurries to the piano. People,look mortified at someone's clumsy playing.,are pulling on a huge pavement with a pair of feet off the back.,sing o. s.: someone arrives.,glimpse the key movement.,,gold0-orig,pos,unl,unl,unl,n/a,Someone leaps up from her chair and scurries to the piano.,People\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16429,Someone shoves someone out of a window. Sir someone,leaps from the ship.,\"runs down the street, its gun drawn.\",catches him down the throat.,throws the bludger down at the fire.,shoots as the soldiers exit the alley.,gold1-orig,pos,unl,unl,unl,unl,Someone shoves someone out of a window.,Sir someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16430,Someone and someone fall onto crates. Sir someone,surfaces then swims to a piece of floating mast.,takes another gun back then glowers at someone.,dives into a pit and slides into a vehicle.,goes through a crowd with other men.,shoots someone in the crotch.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone fall onto crates.,Sir someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16431,\"Sir someone surfaces then swims to a piece of floating mast. Deep in water, Red someone\",stands on the burning sinking ship.,flicks his body off and flies backwards.,\"runs out through the trees, and disappears into someone's coat.\",dives out of the space pool.,,gold0-orig,pos,unl,unl,unl,n/a,Sir someone surfaces then swims to a piece of floating mast.,\"Deep in water, Red someone\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16433,\"He holds open his hat, which fills up with the falling treasure. The boat's unicorn statue\",is the last thing to slip beneath the waves.,\"remains on, now half the ship.\",stands up.,is tied towards the assembled.,stands tied up alongside someone.,gold0-orig,pos,unl,unl,unl,pos,\"He holds open his hat, which fills up with the falling treasure.\",The boat's unicorn statue\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31822,16432,\"Kneeling on the mast, someone gazes up as gold and jewels shower down around him. He\",\"holds open his hat, which fills up with the falling treasure.\",and treasure walk through his neighborhood as skiers stands on the horizon.,\"paces forward, his hands resting on a small metal billboard wrapped in a gran s pin.\",\"nods, his face reflected in the darkness.\",\"takes the note at the sound of someone, he starts to recognize someone's voice.\",gold0-orig,pos,unl,unl,unl,pos,\"Kneeling on the mast, someone gazes up as gold and jewels shower down around him.\",He\nanetv_auxBRPzLiIo,12859,Three girls are riding stationary bikes. A man,is standing in front of them holding a camera.,is riding a ladder.,is dribbling a pair of inline skates.,is standing behind a bar.,finishes riding the dirt bike.,gold1-orig,pos,unl,unl,pos,pos,Three girls are riding stationary bikes.,A man\nanetv_auxBRPzLiIo,12860,A man is standing in front of them holding a camera. Another man,walks in front of them.,puts a drink into a water in front of them.,takes off a shot to dive.,is riding around his bike in the foreground.,helps the kids back up.,gold0-orig,pos,unl,unl,pos,pos,A man is standing in front of them holding a camera.,Another man\nanetv_8fZbv6OUEm8,3695,\"The young boy kicked the ball, the goalkeeper pushed the ball away. The ball is kicked and the goalkeeper\",used his feet to blocked the ball.,was trying to chase him back to the end.,speaks to the camera.,has the ball down.,,gold1-orig,pos,unl,unl,pos,n/a,\"The young boy kicked the ball, the goalkeeper pushed the ball away.\",The ball is kicked and the goalkeeper\nanetv_8fZbv6OUEm8,12115,A man dives for the ball and falls into the sand. The ball,is shown on the sand.,is thrown back to the field.,gets stuck and the credits of the video are shown.,hits the ball towards the net.,goes straight for the net.,gold0-orig,pos,unl,unl,unl,unl,A man dives for the ball and falls into the sand.,The ball\nanetv_8fZbv6OUEm8,12114,People are playing with a ball in the sand on the beach. A man,dives for the ball and falls into the sand.,throws a ball and runs his finger over it as he goes.,\"plays beach on a playground, making a crowd of his boys do in his competition behind him.\",is standing in front of the stadium watching the game.,,gold0-orig,pos,unl,unl,unl,n/a,People are playing with a ball in the sand on the beach.,A man\nanetv_8fZbv6OUEm8,3694,\"A foot kicked the ball, and the goalkeeper blocked the ball. The young boy kicked the ball, the goalkeeper\",pushed the ball away.,went making a goal.,is able to get it all into the goal.,walked away from the girl.,ran away from his team.,gold1-orig,pos,unl,unl,unl,unl,\"A foot kicked the ball, and the goalkeeper blocked the ball.\",\"The young boy kicked the ball, the goalkeeper\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4370,\"Later, the ambulance speeds back followed by cars. Someone runs to the tree - lined road and an suv\",slows to a stop.,follows through a wide gap.,pulls up into its tracks.,pulls up behind her.,pulls up on its rear.,gold1-orig,pos,pos,pos,pos,pos,\"Later, the ambulance speeds back followed by cars.\",Someone runs to the tree - lined road and an suv\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4375,He sets his glass and a dish in the sink. He,pours someone a glass of scotch.,puts a hand on someone's breast.,steps out of the room and eats a bite.,sets it up and takes it.,takes someone's hand.,gold0-orig,pos,unl,unl,unl,unl,He sets his glass and a dish in the sink.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4372,\"Later, in the cottage someone reads Bible verses on his laptop. He\",sets down a drink.,\"swivels a pan, studying someone leaning against a mirror.\",has taken a large envelope with digicam and wrapping it around the back.,removes his spectacles and takes a seat beside someone nearby.,\"takes the bag from his shoulder, and steps out.\",gold0-orig,pos,unl,unl,pos,pos,\"Later, in the cottage someone reads Bible verses on his laptop.\",He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4373,He sets down a drink. Someone,closes the page of bible verses on his laptop.,nods as he shows off the contract.,cocks a glass of red wine.,crosses the room a little.,,gold1-orig,pos,unl,pos,pos,n/a,He sets down a drink.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4371,Someone runs to the tree - lined road and an suv slows to a stop. He,speaks to someone through the passenger window.,follows on a road outside.,is brain is trailing along the quad along the trail.,\"trots up behind someone, as someone shoos someone out.\",runs down a hallway to a motorcycle and reaches the garden after someone.,gold0-orig,pos,unl,unl,unl,unl,Someone runs to the tree - lined road and an suv slows to a stop.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4369,\"Someone exits the phone booth and heads for the bridge. Later, the ambulance\",speeds back followed by cars.,pulls up between the realize parking lot.,looks up at them.,stops at a stack of clip - blocking spattering.,pulls away from someone's friends.,gold0-reannot,pos,unl,unl,unl,pos,Someone exits the phone booth and heads for the bridge.,\"Later, the ambulance\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33826,4374,Someone closes the page of Bible verses on his laptop. He,sets his glass and a dish in the sink.,\"statements her against his shoulder, who stops to look scruffy.\",raises the box and tenses.,takes his electric reclining hand and pushes it down.,turns in his sleep.,gold1-reannot,pos,unl,unl,unl,pos,Someone closes the page of Bible verses on his laptop.,He\nlsmdc0029_The_Graduate-64065,1939,Someone rushes into the sunroom and sits down. Someone,\"jumps up, gets the glass he had been drinking from and sits down again.\",hands someone the stack of notes in the locker room.,goes to the room.,steps into the hallway and finds someone passing the lobby.,,gold0-orig,pos,unl,pos,pos,n/a,Someone rushes into the sunroom and sits down.,Someone\nlsmdc0029_The_Graduate-64065,1938,\"Someone leaps at the door, pushes someone aside, struggles with the door, gets the door open, runs into the hall and down the stairs. Someone\",rushes into the sunroom and sits down.,leans through the curtain with two eyes still closed.,\"turns to someone, who's playing helplessly.\",\"reads someone's numbers, goes to the studio and applauds.\",follows someone past the railing.,gold1-orig,pos,unl,unl,unl,unl,\"Someone leaps at the door, pushes someone aside, struggles with the door, gets the door open, runs into the hall and down the stairs.\",Someone\nlsmdc0029_The_Graduate-64065,1940,Someone reaches for someone's glass. Someone,takes the glass from him.,\"stands back into his window, knocking furniture off the couch.\",opens her eyes and pulls.,\"leans toward someone, his daughter separating, and ventures forward.\",flings more wine aside.,gold0-reannot,pos,unl,unl,pos,pos,Someone reaches for someone's glass.,Someone\nlsmdc0029_The_Graduate-64065,1941,Someone takes the glass from him. Someone,turns his back to someone to mix the drinks.,aims it at someone.,\"smiles, acutely tearful.\",grabs an ice cream mug.,grabs a pair of glasses and puts it on the room.,gold0-reannot,pos,unl,unl,unl,unl,Someone takes the glass from him.,Someone\nanetv_0h45uztur-o,1237,They wrap curling ribbon around the box and tie it into a bow. The,use the scissors to curl the ends of the bow.,picks it up and they circle each of them.,are watching a game of water.,presents the baton to the host.,,gold0-orig,pos,unl,unl,unl,n/a,They wrap curling ribbon around the box and tie it into a bow.,The\nanetv_0h45uztur-o,1233,They are cutting the paper. They,continue wrapping the present.,put a tape on the tape.,see a man painting.,are moving around the cutting.,begin carving them all around.,gold0-orig,pos,unl,unl,unl,unl,They are cutting the paper.,They\nanetv_0h45uztur-o,1238,The use the scissors to curl the ends of the bow. They,stick a silver flower into the present.,prepare to hug.,put a show and a video perspective to talk about the task again.,see the closing screen.,\"return the toothbrush to a liner while of audience, then the girls do a series of shots.\",gold0-orig,pos,unl,unl,unl,unl,The use the scissors to curl the ends of the bow.,They\nanetv_0h45uztur-o,1230,A person is rolling out wrapping paper and using a ruler to hold it down. A box,is set on top of the wrapping paper.,flies through the paper and begins to wrap around it.,is then blended areas printed on the paper.,is concealed for a woman's coffee.,\"of ax is shown, such as the paper being thrown by the white and white painting.\",gold1-orig,pos,unl,unl,unl,unl,A person is rolling out wrapping paper and using a ruler to hold it down.,A box\nanetv_0h45uztur-o,1231,A box is set on top of the wrapping paper. The person,begins wrapping the present.,resumes carving out french painting.,takes the wrapped paper on the top and begins wrapping it.,demonstrates how to paint the nails of a knife.,presents it to the woman then starts wrapping the box.,gold0-orig,pos,unl,unl,unl,pos,A box is set on top of the wrapping paper.,The person\nanetv_0h45uztur-o,1236,They fold tissue paper to wrap around the middle of the box. They,wrap curling ribbon around the box and tie it into a bow.,fold the paper on the wall.,sucked them into one hand.,'ve done the model process.,,gold0-orig,pos,unl,unl,unl,n/a,They fold tissue paper to wrap around the middle of the box.,They\nanetv_0h45uztur-o,1234,They continue wrapping the present. They,use tape to hold the paper on.,walk onto the table and begin pushing the balls across the field.,puts a spatula to the side of a tree.,dance together on an evenly demeanor and begin finished wrapping.,stand by the sight of someone under contract wiping outside.,gold0-reannot,pos,unl,unl,unl,unl,They continue wrapping the present.,They\nanetv_0h45uztur-o,1232,The person begins wrapping the present. They,are cutting the paper.,put the paper coat on the floor just inside.,pushes them into the oven.,jam the salad on a brown tray.,pull the dough out of the dough.,gold0-reannot,pos,unl,unl,unl,unl,The person begins wrapping the present.,They\nanetv_0h45uztur-o,1235,They use tape to hold the paper on. They,fold tissue paper to wrap around the middle of the box.,paint the fence with a stick.,vomit and hit a ball.,are playing some paintball cars.,put it on the ground and cover it.,gold1-reannot,pos,unl,unl,unl,unl,They use tape to hold the paper on.,They\nanetv_6Lh3yNFvskc,16648,\"A player holding a basketball dribbles the ball, run and jump to throw the ball in the basket several times. A man\",throw a basketball in the court and then leave.,falls down on a field in pool in another room.,leaps over a mattress and lands on a yellow mat.,jumps over the net when the ball goes in and out of the goal.,hits the goal and misses the ball.,gold0-orig,pos,unl,unl,unl,unl,\"A player holding a basketball dribbles the ball, run and jump to throw the ball in the basket several times.\",A man\nlsmdc3015_CHARLIE_ST_CLOUD-908,1871,\"Now, in the glade, someone, on a baseball, he tosses the ball to someone. Someone\",throws back to someone.,sets the bag down and plays the game of tv.,stands staring at photographs.,nudges his wife in the leg with her hands to her baby.,leaps around the couch as chain rolls over to top of someone.,gold0-orig,pos,unl,unl,unl,unl,\"Now, in the glade, someone, on a baseball, he tosses the ball to someone.\",Someone\nlsmdc3015_CHARLIE_ST_CLOUD-908,1872,Someone throws back to someone. Someone,fakes a hard throw.,intentionally backpacks on the street.,recalls a performer with someone.,smiles across at someone nervously.,turn to face him.,gold0-reannot,pos,unl,unl,unl,unl,Someone throws back to someone.,Someone\nanetv_EGrXaq213Oc,16810,The young snowboarders show off their talent as they go down the slopes. One of the students,shows the medal that he has won in a snowboarding competition.,blocks the way and jumps on tight stilts.,sees his father aim at someone with a mounting rifle.,loses his composure and switches off the cameraman ahead of him.,is high above the hills.,gold1-orig,pos,unl,unl,unl,pos,The young snowboarders show off their talent as they go down the slopes.,One of the students\nanetv_EGrXaq213Oc,16805,The young snowboarder continues to go down the mountain slope steadily. An instructor from the snowboarding school,is helping some young children get up after falling down.,helps an athlete from high angles to the rollerblading and captions.,dives off of intertubes long ash on the hill.,appears on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,The young snowboarder continues to go down the mountain slope steadily.,An instructor from the snowboarding school\nanetv_EGrXaq213Oc,16808,One of the students does impressive stunts and moves while snowboarding. The instructors,continue to teach their students.,jump with the girl slowly.,perform tricks on the kite power rope.,stands up on the bars.,stand doing various backflips and flips while jumping with their arms.,gold0-orig,pos,unl,unl,unl,pos,One of the students does impressive stunts and moves while snowboarding.,The instructors\nanetv_EGrXaq213Oc,16802,A woman dressed in a green winter coat and white woolen hat is talking about the snowboarding school. There,'s a small boy snowboarding down the slope.,motorbikes are standing ready to move and are holding various videos that are cut to them that include a montage of spectators.,\"is standing in the middle of the room, holding a paintball in his hand and people watching on.\",\"is talking and beginning to haircut up, which the white recruit is doing.\",is talking to the camera about the company.,gold0-orig,pos,unl,unl,unl,unl,A woman dressed in a green winter coat and white woolen hat is talking about the snowboarding school.,There\nanetv_EGrXaq213Oc,16804,There are some adults helping small children get ready with their snowboarding equipment and gear. The young snowboarder,continues to go down the mountain slope steadily.,is now on the barn occurring shows several people gathered in the park looking up on the hills.,is waxing the tubes on the tubes.,are attempting to build a structure but going really fast.,sits at the hill of the slope.,gold0-orig,pos,unl,unl,unl,unl,There are some adults helping small children get ready with their snowboarding equipment and gear.,The young snowboarder\nanetv_EGrXaq213Oc,2383,Another small child is shown snowboarding. then several children,are shown being taught how to snow board.,are rhythmically pedaling over their heads.,compete facing the swimming split.,ride the beach put with their belongings.,sit in more grass.,gold0-orig,pos,unl,unl,unl,unl,Another small child is shown snowboarding.,then several children\nanetv_EGrXaq213Oc,16807,The instructors are helping and teaching the young students to begin snowboarding and teaching them various steps. One of the students,does impressive stunts and moves while snowboarding.,\"gets them out, moves onto a mat and sits between two girls.\",speaks again and rubs part of the mat when they finished.,continues in the beam.,,gold0-orig,pos,unl,unl,pos,n/a,The instructors are helping and teaching the young students to begin snowboarding and teaching them various steps.,One of the students\nanetv_EGrXaq213Oc,16801,The small children are going on snowboarding lifts to begin their lessons. A woman dressed in a green winter coat and white woolen hat,is talking about the snowboarding school.,comes up and hands the speckled a slash.,walks through the gardens to greet the two fugitives.,leans onto the skateboards.,is talking about how to use tools to make a castle.,gold0-orig,pos,unl,unl,unl,unl,The small children are going on snowboarding lifts to begin their lessons.,A woman dressed in a green winter coat and white woolen hat\nanetv_EGrXaq213Oc,16803,There's a small boy snowboarding down the slope. There,are some adults helping small children get ready with their snowboarding equipment and gear.,are shown in the ocean.,fishes race from his board.,teams snowboard out as he crawls through the sun.,get ready and they are going up in tubes.,gold0-orig,pos,unl,unl,unl,unl,There's a small boy snowboarding down the slope.,There\nanetv_EGrXaq213Oc,16800,There are many young children in a snowboarding school. The small children,are going on snowboarding lifts to begin their lessons.,are going on ramps in competitions.,are in the swing on the street from the big house.,\"are on clothes for him, working out on the dirt.\",run away from the ground.,gold0-reannot,pos,unl,unl,unl,unl,There are many young children in a snowboarding school.,The small children\nanetv_EGrXaq213Oc,2382,A small child is snowboarding down a slope. a woman,talks to the camera.,is standing on a swingset.,hops over a slope on the snow.,is kneeling down in the snow.,is taking off a snow tube.,gold0-reannot,pos,unl,unl,pos,pos,A small child is snowboarding down a slope.,a woman\nanetv_EGrXaq213Oc,16809,The instructors continue to teach their students. The young snowboarders,show off their talent as they go down the slopes.,\"comes and starts midget her height, a jump from her bun and crossing side to side.\",grabs the hat off one hand and the three men grab the bottom of the biker by using his crutches.,walk by with the blue outfit still holding their arms.,points to the pincer in his power and move with it.,gold0-reannot,pos,unl,unl,unl,unl,The instructors continue to teach their students.,The young snowboarders\nanetv_EGrXaq213Oc,16806,An instructor from the snowboarding school is helping some young children get up after falling down. The instructors,are helping and teaching the young students to begin snowboarding and teaching them various steps.,seem to perform on a ski camera.,continue working on their horses.,continues rollerblading and delicately landing in each workout at the same time.,,gold0-reannot,pos,unl,unl,unl,n/a,An instructor from the snowboarding school is helping some young children get up after falling down.,The instructors\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1576,\"Headlights flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him. Someone\",throws someone's robe over the bush and gets into the car.,slowly gropes through the sheet.,raises his horn and grabs objects above the high door.,\"glances over at someone, making himself look around the room.\",weaves the truck back to the side of the diner.,gold1-orig,pos,pos,pos,pos,pos,\"Headlights flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1575,Someone thrashes around in the bushes. Headlights,\"flash into the scene, and the old someone automobile drives in, with someone at the wheel, and someone beside him.\",swoops down on its red - green legs.,hurtle from the cafe wall.,go into an here at the end.,,gold0-orig,pos,unl,unl,unl,n/a,Someone thrashes around in the bushes.,Headlights\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1579,The Chairman of the Board is someone. Before each of the directors there,are individual reports for them to study.,is a dark - haired young man behind him.,is an system of pearls someone has.,is a real estate with a frightened face on it.,,gold0-orig,pos,unl,unl,unl,n/a,The Chairman of the Board is someone.,Before each of the directors there\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1580,Before each of the directors there are individual reports for them to study. They,\"have folders and papers before them, on which they have been reporting.\",stand just watching seated.,are on a pumpkin as well as a cat walking and rolling its eyes.,talk directly about the storage being.,are trying to talk about the act.,gold0-orig,pos,unl,unl,unl,pos,Before each of the directors there are individual reports for them to study.,They\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1578,\"They are the substantial citizens of Bedford Falls: someone, a lawyer, an insurance agent, a real estate salesman, etc. People\",are seated among the directors.,are sitting next to someone very bored.,\"sit there, being faced.\",come up to the furry cat.,,gold0-orig,pos,pos,pos,pos,n/a,\"They are the substantial citizens of Bedford Falls: someone, a lawyer, an insurance agent, a real estate salesman, etc.\",People\nlsmdc0014_Ist_das_Leben_nicht_schoen-54509,1577,\"Someone throws someone's robe over the bush and gets into the car. As the car drives off, someone, now wearing the robe,\",rises up from the bush and follows the car with her eyes.,walks through the hood of the car.,comes over to get the envelope taken by the old siblings.,walks underneath the remaining mansion.,sits with someone against the steering wheel.,gold0-reannot,pos,unl,unl,unl,pos,Someone throws someone's robe over the bush and gets into the car.,\"As the car drives off, someone, now wearing the robe,\"\nlsmdc3026_FRIENDS_WITH_BENEFITS-1596,15017,\"An Asian male model spreads his arms as the other man holds him horizontally. That night, someone\",\"walks into his kitchen, throws down his bag and turns on the lights.\",lies on the street with her arms around his waist.,passes a cigarette and slaps him on.,lays a stone on a banker's red grill.,,gold1-orig,pos,unl,unl,unl,n/a,An Asian male model spreads his arms as the other man holds him horizontally.,\"That night, someone\"\nlsmdc3026_FRIENDS_WITH_BENEFITS-1596,15018,\"That night, someone walks into his kitchen, throws down his bag and turns on the lights. He\",gets a beer from his windowed refrigerator.,helps someone to pull himself out of the game.,pauses deeply before walking into a restaurant.,\"takes a few paces closer to someone, who leans up to his ear.\",\"walks up the bed, someone's eyes open.\",gold0-orig,pos,unl,unl,unl,unl,\"That night, someone walks into his kitchen, throws down his bag and turns on the lights.\",He\nlsmdc3026_FRIENDS_WITH_BENEFITS-1596,15019,\"He gets a beer from his windowed refrigerator. As he goes to open it, he\",notices the note he received with the gift basket of sheets.,takes a swig of his biscuits has been being caught by a waitress then dumps out a plate.,watches as the authorities descend a path near the wheel of the limo.,is carrying two bottles of ham and a bottle of vodka.,sees a couple of sheets are sitting in their bed.,gold0-orig,pos,unl,unl,unl,unl,He gets a beer from his windowed refrigerator.,\"As he goes to open it, he\"\nlsmdc3026_FRIENDS_WITH_BENEFITS-1596,15016,Someone directs a Caucasian male model. An Asian male model,spreads his arms as the other man holds him horizontally.,arrives and glares at him from a horizontal rack.,falls off his perch.,watches from a second bar.,sits eating at the end of a dock.,gold0-reannot,pos,unl,unl,pos,pos,Someone directs a Caucasian male model.,An Asian male model\nanetv_FrvK75jGdjE,4361,The girl pauses briefly then begins playing again. The girl,lowers her violin and wand at the end of the performance.,walks away from the barre.,moves away and goes back down the slide.,joins the other girls and laughs to the camera.,begins walking to the room and begins to play pose as she finishes her dancing.,gold1-orig,pos,unl,pos,pos,pos,The girl pauses briefly then begins playing again.,The girl\nanetv_FrvK75jGdjE,4359,A child plays a violin on stage during a solo performance. A man,watches with interest from the side of the stage.,presses the cymbals down into music.,walks away from her dancing.,jumps up on the podium.,finishes playing and plays the piano.,gold1-orig,pos,unl,unl,pos,pos,A child plays a violin on stage during a solo performance.,A man\nanetv_FrvK75jGdjE,4360,A man watches with interest from the side of the stage. The girl,pauses briefly then begins playing again.,demonstrates how to properly play - butts while the man plays the violin.,starts dancing and dancing on stage.,begins to dance while she first sings.,,gold0-reannot,pos,unl,pos,pos,n/a,A man watches with interest from the side of the stage.,The girl\nanetv_wONwHYy59Tc,17010,\"She explains the process of how to manage such beautiful hair on her own, using the blow dryer to show. She\",continues to talk ever so gracefully on and on about the hair products.,\"bangs his polish screen, lifts them as she walks into the water to wave dries her hair, bends each hairspray, pulls the\",then begins removing the string and bow.,look at out of different colors of different technique and then tells her her process before she slowly springs over to talk to her repeatedly,then rubs the hair together down and blistered into the original couple braided.,gold0-orig,pos,unl,unl,unl,unl,\"She explains the process of how to manage such beautiful hair on her own, using the blow dryer to show.\",She\nanetv_wONwHYy59Tc,7021,\"A woman with long curly hair speaks to the camera, she has a large red hairdryer with an attachment. She\",examines the parts of the dryer and shows off hair product.,is shown up to the camera.,puts supplies to her phone.,puts a tissue in her nose.,shrugs her bare arm.,gold0-orig,pos,unl,unl,unl,pos,\"A woman with long curly hair speaks to the camera, she has a large red hairdryer with an attachment.\",She\nanetv_wONwHYy59Tc,7022,She examines the parts of the dryer and shows off hair product. She,uses it to dry her hair followed by a comb and shake.,braids her hair and braids it over her flaxen hair.,lowers the comb and shows how to style the hair of the dog.,dries her hand again and applies it to a hair.,,gold0-orig,pos,unl,pos,pos,n/a,She examines the parts of the dryer and shows off hair product.,She\nanetv_wONwHYy59Tc,17008,A beautiful girl with stunning black curls is sitting down talking by herself. She pulls up a hair dryer and she,\"begins to talk about it, then picking up a bottle of shampoo and lotion.\",looks pretty pretty happy and begins to calm it disapprovingly and starts to talk to herself.,begins trimming the label on her hair and now by the side of the braid.,proceeds to speak to another woman standing with her arm wrapped around the waist; she is up with her foamy blue robe.,puts her hair down with her hair.,gold1-orig,pos,unl,unl,unl,unl,A beautiful girl with stunning black curls is sitting down talking by herself.,She pulls up a hair dryer and she\nanetv_wONwHYy59Tc,17009,\"She pulls up a hair dryer and she begins to talk about it, then picking up a bottle of shampoo and lotion. She\",\"explains the process of how to manage such beautiful hair on her own, using the blow dryer to show.\",leaves the salon and continues drying her hair and presenting it to the camera.,gets up and walks away from the front bar.,\"turns to in her hair into a larger razor and demonstrates from any planks or very across the water and sectioned just backwards, and\",,gold0-reannot,pos,unl,unl,unl,n/a,\"She pulls up a hair dryer and she begins to talk about it, then picking up a bottle of shampoo and lotion.\",She\nanetv_QElXIVBV-gk,7839,A lady chef wearing a stripe blouse talks in a kitchen. The lady chef,describes the ingredients needed and the preparation for the creamy seafood pasta.,rubs two marks on the center of the room.,is making the salad with little brushes.,is helping a bowl of pasta baking.,mixes five potatoes with potato shears.,gold0-orig,pos,unl,unl,unl,pos,A lady chef wearing a stripe blouse talks in a kitchen.,The lady chef\nanetv_QElXIVBV-gk,7840,The lady chef describes the ingredients needed and the preparation for the creamy seafood pasta. The lady chef,shows a step by step process for preparing the creamy seafood pasta dish and shows the final product.,is chopped and a type of food from one silver mug.,tests the already flight ingredients before stirring a bar and putting the cream on it.,\"to add ingredients, butter, and start to pour the chocolate on the plates.\",shows how to make lemonade min look.,gold0-orig,pos,unl,unl,unl,unl,The lady chef describes the ingredients needed and the preparation for the creamy seafood pasta.,The lady chef\nlsmdc1015_27_Dresses-79655,10351,\"At night, in one of thousands of taxis, someone reads someone's filofax. People\",\"are at someone's party in a busy, low lit club.\",ride into the car carriage.,continue to admire the guests.,and someone turns towards the crowd.,\"sit on the edge of a sunny, brown - haired street.\",gold1-orig,pos,unl,unl,unl,unl,\"At night, in one of thousands of taxis, someone reads someone's filofax.\",People\nanetv_O8jThut7tAQ,15983,A person talks and throws a bowling ball on the bowling lane. The man,\"holds a ball and shows his left leg forward, then throws the bowling ball on the lane while talking.\",\"bounces the ball with the disc, then hits it to black and throws it into the air.\",throws a bowling ball down a lane in bowling lane.,put the ball into the ice and hit the ball back against the water.,,gold0-orig,pos,unl,unl,unl,n/a,A person talks and throws a bowling ball on the bowling lane.,The man\nlsmdc1018_Body_Of_Lies-80170,8620,\"The photos someone showed someone. On a vast expanse of brown earth, a suited man\",\"stands beside a kneeling figure, whose head is covered with a black hood.\",\"sits on a piece of canvas in asgard, his body bent over a signed rock.\",carries a simmons paint gun on a platforms.,and a younger man look on delegates.,finds a marijuana box.,gold1-orig,pos,unl,unl,unl,unl,The photos someone showed someone.,\"On a vast expanse of brown earth, a suited man\"\nlsmdc1018_Body_Of_Lies-80170,8623,A cloud of dust hangs in the air. People and the rest of the men,get out of their cars.,drinks and fill the flow.,\"ride in the lift, using and throwing breaking the space.\",rush to the dock.,climb up onto the balcony.,gold1-orig,pos,unl,pos,pos,pos,A cloud of dust hangs in the air.,People and the rest of the men\nlsmdc1018_Body_Of_Lies-80170,8624,People and the rest of the men get out of their cars. Someone gestures and someone,opens the door for someone to get out.,tightens his lips around her toned chest and signals her to dance.,walks through the crowd as they walk along the street.,hears him being flashing.,moves towards the door.,gold0-orig,pos,unl,unl,unl,unl,People and the rest of the men get out of their cars.,Someone gestures and someone\nlsmdc1018_Body_Of_Lies-80170,8622,The cars drive around the pair and stop. A cloud of dust,hangs in the air.,rises growing out of it.,appears knocking them down.,is suspended over the diner.,rises on the darkening sky as the car pulls away.,gold0-orig,pos,unl,unl,unl,pos,The cars drive around the pair and stop.,A cloud of dust\nlsmdc1018_Body_Of_Lies-80170,8621,\"On a vast expanse of brown earth, a suited man stands beside a kneeling figure, whose head is covered with a black hood. The cars\",drive around the pair and stop.,huddle at the edge of the stone roof.,are all beaten down to the road.,clutch their breath rapidly at each of them.,pass the officers taking notice.,gold0-orig,pos,unl,unl,unl,unl,\"On a vast expanse of brown earth, a suited man stands beside a kneeling figure, whose head is covered with a black hood.\",The cars\nlsmdc1018_Body_Of_Lies-80170,8626,Someone watches someone walk up to the kneeling figure. Someone,takes off the hood.,lights a cigarette and wipes out.,tiptoes down the door to the turkish agent who is pulled with his oar.,goes to door and opens the door.,glances up at his rival brother as he runs his fingers through his hair.,gold0-orig,pos,unl,unl,pos,pos,Someone watches someone walk up to the kneeling figure.,Someone\nlsmdc1018_Body_Of_Lies-80170,8627,Someone takes off the hood. He,dials a cell phone.,pours a water vial into the water.,puts his hand on his pant ribs.,\"winces, then backhands him into a wall.\",is naked in the rain.,gold1-reannot,pos,unl,unl,unl,pos,Someone takes off the hood.,He\nanetv_qZTAv1s_eBQ,3356,Man is running wearing stilts in a green grassy field. cars,are parked on side of a street in the background.,throw all other flowers and on the streets.,are getting ready to throw and get ready to race.,start running on a track and down a forested path.,are running down the road.,gold0-orig,pos,unl,unl,unl,unl,Man is running wearing stilts in a green grassy field.,cars\nanetv_T69Cadlc62E,13218,\"A manager explains the players how to play Jai - Alai while a group of boys observe the training. Then, the players take turns to hit balls, and the manager\",shows to hit the ball.,speaks to remember how bad it is.,comes after him and limps away.,talks to the camera in a corner.,gives the same a thumbs up.,gold0-orig,pos,unl,unl,pos,pos,A manager explains the players how to play Jai - Alai while a group of boys observe the training.,\"Then, the players take turns to hit balls, and the manager\"\nanetv_T69Cadlc62E,13219,\"Also, a Jai - Alai macot hit a ball using the Jai - Alai cesta. After, a players\",throw balls on front a goal.,run after the kids as they run along a large town.,hit a ball and put pink balls in the net next to the board.,changes the shape with an electric kite fire.,,gold1-orig,unl,unl,unl,unl,n/a,\"Also, a Jai - Alai macot hit a ball using the Jai - Alai cesta.\",\"After, a players\"\nanetv_T69Cadlc62E,5894,People stand on the sidelines watching them. A person dressed up in a bunny costume,stands next to them.,walks into frame then sees an orange man celebrating.,talks in front of the camera.,poses for the camera.,,gold0-orig,pos,unl,pos,pos,n/a,People stand on the sidelines watching them.,A person dressed up in a bunny costume\nanetv_T69Cadlc62E,5893,People are hitting balls into a net with a stick. People,stand on the sidelines watching them.,crash into each other and clap.,are playing lacrosse on a court.,are standing in middle of the audience watching them.,are sitting on a field of grass.,gold0-orig,pos,pos,pos,pos,pos,People are hitting balls into a net with a stick.,People\nanetv_8K4cX9GfaII,12800,A person is seen painting a wall while the camera captures him moving quickly and others walking in and out of frame. The person,continues painting along the wall with other people standing around and helping.,continues riding higher on the object as the camera pans around and begins moving back and fourth.,still lights a match on a warehouse and continue to play with one.,is then seen laying down a concrete while still looking into the distance.,continues climbing around the horse while looking off into the distance as well as several others and helping themselves out.,gold0-orig,pos,unl,unl,unl,unl,A person is seen painting a wall while the camera captures him moving quickly and others walking in and out of frame.,The person\nlsmdc3092_ZOOKEEPER-45149,4858,\"Exiting through a gate, he finds someone the Lion waiting for him. Feet and\",falls on his back.,\"two citizens, people hurry off.\",feet pass behind hardened terrain.,bass men lie on the bed.,\"two men rotate, a gentle ecstasy.\",gold1-reannot,unl,unl,unl,unl,unl,\"Exiting through a gate, he finds someone the Lion waiting for him.\",Feet and\nanetv_KHxBqZmSaJU,18069,Man is in the beach doing tricks with a little kid and people in the studio is talking about the video. page of a cheerleaders is,shown in the screen and the video of the girl in the beach doing tricks.,doing tricks on the rope too doing tricks.,shown set until the roof break goes in.,shown of the field throwing a ball in the air to the other.,shown in a long board on the end of a counter.,gold0-orig,pos,unl,unl,unl,unl,Man is in the beach doing tricks with a little kid and people in the studio is talking about the video.,page of a cheerleaders is\nanetv_KHxBqZmSaJU,18068,People is sitting on a studio talking to each other. man,is in the beach doing tricks with a little kid and people in the studio is talking about the video.,is seated and talking and is playing drum set.,is practicing in circular bed.,is playing a saxophone in front of a person talking.,,gold0-orig,pos,unl,unl,pos,n/a,People is sitting on a studio talking to each other.,man\nanetv_j3h8Di7V3nk,4165,A man is seen bending over while taking a shoe off to wipe his feet then puts the shoe back on. He,does this to his other foot and then walks along the rocks while a man records him and others walk around.,continues playing with it and continues wiping his face and laying it over the snow and unable to speak to the camera.,then throws a shirt on leaving a basket next to her.,continues wiping all around the table while still looking at the camera.,shrugs the board out and then struggles to open the guitar's back door.,gold0-orig,pos,unl,unl,unl,unl,A man is seen bending over while taking a shoe off to wipe his feet then puts the shoe back on.,He\nlsmdc0041_The_Sixth_Sense-67727,11694,Someone's face softens a bit. He,turns from the windows and looks to someone.,\"shines off the back of his own shirt, and now has a very similar tattoo on them.\",takes someone's hand and grabs someone's arm.,stares cheek - to - cheek.,,gold1-orig,pos,unl,pos,pos,n/a,Someone's face softens a bit.,He\nlsmdc0009_Forrest_Gump-50677,12257,They blow horns and toss confetti into the air. Someone,looks around as people lean over and kiss him.,sticks that until the stage returns.,installs a fallen tree in a clearing.,intercepts a police officer by a goblin.,,gold0-reannot,pos,unl,unl,unl,n/a,They blow horns and toss confetti into the air.,Someone\nanetv_okC18bPTils,1774,He's underwater along with a few other people where there's shells and rocks in the sand. There,is also wooden logs and small lobsters crawling around.,are walking around in a shop while other people are watching them play.,are tips into a working bowl with two attached to it.,are some in the water trying to stay and watch people and the view is stuck up in the kayaks.,,gold0-orig,pos,unl,unl,unl,n/a,He's underwater along with a few other people where there's shells and rocks in the sand.,There\nanetv_okC18bPTils,1773,The man is standing above water before he goes scuba diving. He,'s underwater along with a few other people where there's shells and rocks in the sand.,is talking as he holds the edge of a rock board.,hits the ball on the board.,is swimming in a pool that is standing in the water.,continues to run across the stilts towards the enemy.,gold0-orig,pos,unl,unl,unl,unl,The man is standing above water before he goes scuba diving.,He\nanetv_aKLKf4Qd_4U,7292,A close up of a house is seen when a person walks into frame. The person,is seen grabbing lawn mower and pulling it to the side.,then moves around in front of the concrete while moving around.,stands up holding up a vacuum while the camera pans around while one of them walk along the grass.,continues cutting and pans around to a laptop then blows a kiss on a ring.,is seen standing on a boring pit near the person's dog's leg to set up a fence outside and moving around.,gold0-reannot,pos,unl,unl,unl,unl,A close up of a house is seen when a person walks into frame.,The person\nanetv_aKLKf4Qd_4U,7293,The person is seen grabbing lawn mower and pulling it to the side. The person then,pushes the lawn mower all around the house.,throws the shoes into the bag while the girls continue to walk around the area as well.,continues hopping while the camera captures on the left.,throws the mower on a table in a explains position as well as noodles and vegetables around the restaurant.,climbs it back down and is seen several more times sliding back onto the grass.,gold0-reannot,pos,unl,unl,unl,unl,The person is seen grabbing lawn mower and pulling it to the side.,The person then\nanetv_wvewX55VADs,2252,She moves her feet in arms in a particular motion while the man does the same from a different angle. The man and woman,finally piece together their instructions and perform the tango moves together.,begin talking to the camera while the girls begin their routine.,\"are on a busy waiting gym at all, then lays out and positions him.\",\"stand in her tracks to a game of of, some in turn in a small arena and stick the tug on the net and\",are then shown kicking 2 pucks and fourth in the ice again.,gold0-orig,pos,unl,unl,unl,unl,She moves her feet in arms in a particular motion while the man does the same from a different angle.,The man and woman\nanetv_wvewX55VADs,2251,A man and a woman are standing in front of the camera and a woman shows how to properly perform the tango. She,moves her feet in arms in a particular motion while the man does the same from a different angle.,are fighting and see people kicking their legs in the air.,sits up on the chair.,\"is singing, playing a keyboard.\",\"dance, while a solo choir poses and a woman joins him.\",gold0-orig,pos,unl,unl,unl,pos,A man and a woman are standing in front of the camera and a woman shows how to properly perform the tango.,She\nanetv_IWHN3TD8mMQ,9544,\"A woman introduces herself to the camera and begins to talk about the topic of the video, pasta. The camera\",shows the ingredients that go into cooking pasta.,yawns sleepily and then the camera recording her for a few seconds.,shows a benefits of a poster about the talent event.,shows a youtube video to end the video.,still looks around the area dancing.,gold0-orig,pos,unl,unl,unl,unl,\"A woman introduces herself to the camera and begins to talk about the topic of the video, pasta.\",The camera\nanetv_IWHN3TD8mMQ,9546,\"She stirs the pasta, and then empties the pot in a colander once the pasta is al dente. She\",returns the pasta to the pot and adds olive oil.,\"retreats, then picks up another table in her other hand and places it in her hand.\",cucumber into a pan in a skillet.,fills a rectangular glass.,adds the ingredients out of the broth.,gold0-orig,pos,unl,unl,unl,pos,\"She stirs the pasta, and then empties the pot in a colander once the pasta is al dente.\",She\nanetv_IWHN3TD8mMQ,9545,\"The woman drops salt in a pot of water and turns the burners on. Once, boiling, she\",adds the pasta in the pot.,\"adds a snowball - filled oil, and a woman appears before cutting the paper out of the water and eating.\",stirs the mix of shampoo.,dabs on the side of the drawing table.,pours a cup of water into the saucepan.,gold0-reannot,pos,unl,unl,unl,pos,The woman drops salt in a pot of water and turns the burners on.,\"Once, boiling, she\"\nanetv_cHdZ_dBVgDE,623,They dance and dance working very well together. They,twist and turn and even do all kinds of nice moves together.,talk and shake their wrists as he exhales.,\"clap, screaming and extend their legs and lift their hips.\",laugh and singing together before intensifies.,\"finish briefly, performing as they sweep sideways.\",gold0-orig,pos,unl,unl,unl,unl,They dance and dance working very well together.,They\nanetv_cHdZ_dBVgDE,622,A man and a woman dressed in black and red stand in the middle of a room surrounded by a very large amount of people sitting and watching them. They,dance and dance working very well together.,put their hands on their head and hold them apart while talking.,\"finish and dance, then people around the washing together.\",are shown outside the gym.,raise their hands outdoors and have to look for the camera for one long distance.,gold0-orig,pos,unl,unl,unl,unl,A man and a woman dressed in black and red stand in the middle of a room surrounded by a very large amount of people sitting and watching them.,They\nanetv_cHdZ_dBVgDE,624,They twist and turn and even do all kinds of nice moves together. The man,bends down and swings the female across his back where she flips over and ends the dance.,places various ingredients in a bowl to eat them ketchup as they continue to examine the fruit.,raises up the skateboard.,squints to a mirror with his mask and shows a replay of his performance.,,gold0-reannot,pos,unl,unl,pos,n/a,They twist and turn and even do all kinds of nice moves together.,The man\nlsmdc3080_THIS_MEANS_WAR-37080,20047,\"An older gentleman kisses her. As he leads her off, someone\",gazes at his grandparents.,slides her hands open at his eyelids and gazes at him tenderly.,gives up to someone.,steps close to him.,poses with her arms.,gold1-orig,pos,unl,unl,pos,pos,An older gentleman kisses her.,\"As he leads her off, someone\"\nlsmdc0002_As_Good_As_It_Gets-46327,9197,Verdell starts whimpering as a pissed someone approaches his mugger. Someone,pushes open the door to someone's apartment and places verdell inside.,clicks to a pulsing orange dot.,catches himself in front of a digital tv show.,\"stands a few feet away, then stares at him, self - conscious.\",gazes intently at the young man.,gold0-orig,pos,unl,unl,pos,pos,Verdell starts whimpering as a pissed someone approaches his mugger.,Someone\nlsmdc0002_As_Good_As_It_Gets-46327,9198,Someone pushes open the door to someone's apartment and places Verdell inside. We,stay with the dog during the o. s. ,\"himself alone, he looks down at a plain of people.\",\"- dr, someone stands in his cage, scratching his shoulder.\",pause behind the bar again.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone pushes open the door to someone's apartment and places Verdell inside.,We\nlsmdc0002_As_Good_As_It_Gets-46327,9196,A short laugh makes us realize that someone has witnessed and enjoyed someone's hostile mutterings. Verdell,starts whimpering as a pissed someone approaches his mugger.,\"is just that he is, of where it is.\",\"reads the chart, celebrating as someone else knows the straw.\",has empty his things he sits too.,,gold1-reannot,pos,unl,unl,unl,n/a,A short laugh makes us realize that someone has witnessed and enjoyed someone's hostile mutterings.,Verdell\nanetv_obt6wudzHxY,8450,Instruction on how to braid your hair. A girl in a grey t - shirt,demonstrates how to braid your hair and shows a step by step process.,extends a clipper to each hoop to play the buttons.,is holding a hand alfredo hair to her face.,get instructions show how to brush the comb the bird hair off her sides.,,gold0-orig,pos,unl,unl,pos,n/a,Instruction on how to braid your hair.,A girl in a grey t - shirt\nanetv_obt6wudzHxY,8451,A girl in a grey t - shirt demonstrates how to braid your hair and shows a step by step process. Some tips,are displayed in print.,are practicing as they alternate sides.,get the to hair and blow the client's hair.,have risen and dry a guy's hair and features for a bit.,are close out on drawings of the client's hair as she walks away and speaks.,gold1-orig,pos,unl,unl,unl,unl,A girl in a grey t - shirt demonstrates how to braid your hair and shows a step by step process.,Some tips\nanetv_obt6wudzHxY,8452,Some tips are displayed in print. The hair stylist,shows the finished product while dresses in a black top and sunglasses.,looks at the screen for the smoothen book in the background.,talks about what's on.,is showing two bottles in braids.,,gold1-orig,pos,unl,pos,pos,n/a,Some tips are displayed in print.,The hair stylist\nlsmdc1062_Day_the_Earth_stood_still-100881,3871,A grandfather clock shows 5 past 11. Someone,leads the way into the house.,wheels his draw upon himself.,gives an mayhem cluster of escapes.,looks as he spies on a nearby wall.,examines two toy bottles watch as it reads.,gold0-orig,pos,unl,unl,unl,unl,A grandfather clock shows 5 past 11.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100881,3870,Someone's car is parked in the rain. A grandfather clock,shows 5 past 11.,holds under 10 minutes.,has a body crucified above it.,shows twelve pounds.,has been smashed for his father.,gold0-orig,pos,unl,unl,unl,pos,Someone's car is parked in the rain.,A grandfather clock\nlsmdc1062_Day_the_Earth_stood_still-100881,3869,The light in its head slit comes on. Someone's car,is parked in the rain.,sits near someone's face.,\"is elsewhere, but the chamber drags pinned to the window.\",fall away from the chopped block and lay on its un - covered roof.,is parked outside a parking lot.,gold1-orig,pos,unl,unl,unl,pos,The light in its head slit comes on.,Someone's car\nlsmdc1062_Day_the_Earth_stood_still-100881,3872,Someone leads the way into the house. She,leads the way into a study.,leaves with a hand to his mouth.,is felled by the rubble.,crouches back down on the bear in the gas ring.,\"turns, pushing the bat out of the way.\",gold0-reannot,pos,unl,unl,unl,pos,Someone leads the way into the house.,She\nlsmdc3038_ITS_COMPLICATED-17231,7439,\"Someone lifts his glass, his family sips their champagne. Now, at the hotel's front desk the clerk\",gives someone and someone their bills.,fills a card lens from a folder.,holds in a bouquet of cash.,holds a gun fighting shotgun.,thoughtfully studies his accelerated cards.,gold0-orig,pos,unl,unl,pos,pos,\"Someone lifts his glass, his family sips their champagne.\",\"Now, at the hotel's front desk the clerk\"\nlsmdc3038_ITS_COMPLICATED-17231,7440,\"Now, at the hotel's front desk the clerk gives someone and someone their bills. Someone\",\"eyeballs him, then faces their children.\",\"answers her cell, though busy with real memories.\",shows his attention to where someone is digging.,spray repeatedly on the back of the man's crotch.,snatches a pen phone from someone's lap.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, at the hotel's front desk the clerk gives someone and someone their bills.\",Someone\nanetv_XEriJg8cW4g,16932,A man is holding a bag pipe and talking. He,starts playing the bag pipes.,starts smoking a pipe.,speaks to the hairdresser.,is showing how to do it and see it taking picture in the middle of a black screen.,uses a large knife to cut the mans hair.,gold0-orig,pos,unl,unl,unl,unl,A man is holding a bag pipe and talking.,He\nanetv_XEriJg8cW4g,4828,The man demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw. The bagpiper,demonstrates the blowing technique and blows into the blow pipe on the bagpipe.,then begins to play nervously and sticks his stick to the center.,then hugs him and ends by peering into the enemies with her face behind her hand.,puts down the beer and begins facing it off.,,gold0-orig,pos,unl,unl,pos,n/a,The man demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw.,The bagpiper\nanetv_XEriJg8cW4g,16933,He starts playing the bag pipes. He,puts it down and stops.,\"walks back his fourth time, and spins through many different pipes on the grill.\",stops drumming and takes a seat.,breaks from the pinata while others keeping watch.,stops and talks around a phone before the camera.,gold1-orig,pos,unl,unl,pos,pos,He starts playing the bag pipes.,He\nanetv_XEriJg8cW4g,4827,A man wearing a black t - shirt describes the parts of a bagpipe and blow pipe. The man,demonstrates how to blow into the blow pipe with a deep inhale into the lungs and using his mouth and jaw.,then begins to play for the video while the people is on the phone and then he goes to the camera.,finishes the man and continues talking to the camera and he plays the same a few times.,stops playing for a moment while pausing for a moment to pick up the instruments.,,gold0-orig,pos,unl,unl,pos,n/a,A man wearing a black t - shirt describes the parts of a bagpipe and blow pipe.,The man\nanetv_43OU5XCzLzo,8518,\"The boats pass with difficulty between the rocks. Then, people\",enters in more troubled waters.,sail from the slope with weapons on tubes.,ski in the water and stand in the waters before the boat.,close the water kayaks themselves.,,gold0-orig,pos,unl,unl,unl,n/a,The boats pass with difficulty between the rocks.,\"Then, people\"\nanetv_43OU5XCzLzo,8517,People sails in a rocky river on inflatable individual boats. The boats,pass with difficulty between the rocks.,arrive on the boats ship.,stand on either side of a river bank.,are drawn down a rocky stream.,,gold0-orig,pos,unl,pos,pos,n/a,People sails in a rocky river on inflatable individual boats.,The boats\nanetv_f2W1Mt04CIM,14120,People rides bumper cars in a carnival. An old man,rides a small bumper car.,in snowy stands in an outdoor park.,picks up a black car in the driveway.,is playing the harmonica in his mouth.,\"leans and strikes the man, and the then stops in front of him.\",gold0-orig,pos,unl,unl,unl,unl,People rides bumper cars in a carnival.,An old man\nanetv_f2W1Mt04CIM,14122,Several people get stuck with other bumper cars. There,are a lot of people in the carnival.,\"someone crosses over the fence, hitting both pins.\",are standing spinning on a track and standing on a track.,with dogs ride on their leash.,,gold0-reannot,pos,unl,unl,unl,n/a,Several people get stuck with other bumper cars.,There\nanetv_f2W1Mt04CIM,14121,An old man rides a small bumper car. Several people,get stuck with other bumper cars.,get in the parking lot.,are running down the road.,wait in the car.,ride their bicycles away.,gold1-reannot,pos,unl,pos,pos,pos,An old man rides a small bumper car.,Several people\nlsmdc3049_MORNING_GLORY-23653,15819,Someone's in the front. She,gets in the back.,allows a small smile.,takes a brief steps forward and takes a seat on top of the cargo ship.,gives him a demure smile.,gives a huge nod.,gold1-orig,pos,unl,unl,unl,unl,Someone's in the front.,She\nlsmdc3049_MORNING_GLORY-23653,15818,An ibs van pulls up and she runs to it. Someone,'s in the front.,gives him a push hug on the shoulder.,goes from someone to pier.,slides across the shelves to someone.,takes a vision from the baby.,gold0-reannot,pos,unl,unl,unl,unl,An ibs van pulls up and she runs to it.,Someone\nanetv_-e9e4ke_wJk,7129,Ladies are washing clothes outside in a basin. A boy,gives a lady something.,slides joins a baby.,soaks a square and mop into a bucket.,tucks into his empty buckets.,puts something under the shoe using hand towels.,gold0-orig,pos,unl,unl,unl,unl,Ladies are washing clothes outside in a basin.,A boy\nanetv_-e9e4ke_wJk,7131,\"The boy walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side. The lady\",rises and puts what the boy gave her in her pocket.,begin painting the bicycle leg while the man moves to the camera.,sands the sides of the striped spins and open the cabinet on the table.,cheered and faded pair of sustained announcer are participating in a loop with each other.,\"steps off in a kicked cart, skip and ballet, and then makes the dance moves.\",gold1-orig,pos,unl,unl,unl,unl,\"The boy walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side.\",The lady\nanetv_-e9e4ke_wJk,16970,She then walks behind the tree. The person on the right side,is in view of the camera.,gets up and resumes brushing the hair.,is pulling it side by side.,scrapes her windshield with a yellow nozzle.,,gold0-reannot,pos,unl,unl,pos,n/a,She then walks behind the tree.,The person on the right side\nanetv_-e9e4ke_wJk,7130,A boy gives a lady something. The boy,\"walks away from a group of ladies revealing his navel as he swings his white, sleeveless undershirt side to side.\",competes with the hammer clippers.,falls as the frisbees grab the other.,goes out towards the computer showing polishes lobby glass.,brushes his hand using the blower.,gold1-reannot,pos,unl,unl,unl,unl,A boy gives a lady something.,The boy\nanetv_x6Z0xTgWoVI,1823,\"The father pick up the child to put in the right tract, and the child continues skiing. An adult and a child\",ski on the hill.,is throwing blonde baby.,slide down on a slide.,walk from the boy.,,gold0-orig,pos,unl,unl,unl,n/a,\"The father pick up the child to put in the right tract, and the child continues skiing.\",An adult and a child\nanetv_x6Z0xTgWoVI,5724,Several people are shown skiing down a small mountain under the zipline. One person in particular,comes down the slope holding a child in front of them before finally letting them go.,is walking back and fourth onto the platform while shown.,is seen putting the snow under the trees.,is interviewed as they go up the hill.,,gold0-orig,pos,unl,unl,pos,n/a,Several people are shown skiing down a small mountain under the zipline.,One person in particular\nanetv_x6Z0xTgWoVI,5727,\"As they continue, they encounter another pair of people doing the same thing. After some time, the adult\",grabs the child to slow them down and claps for them before they eventually stop all together.,walks over to sing at the end of applaud up to assist him.,picks up the product and knocks by a clear liquid.,gives them more leverage on the trolley.,,gold0-orig,pos,unl,unl,unl,n/a,\"As they continue, they encounter another pair of people doing the same thing.\",\"After some time, the adult\"\nanetv_x6Z0xTgWoVI,5726,\"The young child is freely skiing but the adult is trailing close behind them. As they continue, they\",encounter another pair of people doing the same thing.,continue to fall on them.,continue riding in the subway.,aim their way back to the reading boxes.,eye their faces and washes up at the crest.,gold1-orig,pos,unl,unl,unl,unl,The young child is freely skiing but the adult is trailing close behind them.,\"As they continue, they\"\nanetv_x6Z0xTgWoVI,5725,One person in particular comes down the slope holding a child in front of them before finally letting them go. The young child is freely skiing but the adult,is trailing close behind them.,goes to the child's point of view.,is also in the water doing everything inevitable things.,continues kids now getting in the public and talking to the camera.,is talking to the camera without thought.,gold0-orig,pos,unl,unl,unl,pos,One person in particular comes down the slope holding a child in front of them before finally letting them go.,The young child is freely skiing but the adult\nanetv_x6Z0xTgWoVI,1822,\"Ski lifts pass above the ski track. A man holds a child, then he\",releases the child who ski alone in the hill followed by his father.,rides bmx and dives in front of the cameraman.,snowboard down the slope.,ski before skiing again.,,gold0-orig,pos,unl,pos,pos,n/a,Ski lifts pass above the ski track.,\"A man holds a child, then he\"\nanetv_x6Z0xTgWoVI,1821,Several people ski down the hill. Ski lifts,pass above the ski track.,is shown with dogs fur.,is shown of snow on skies and sleds.,and the people snowboarding down a hill together.,,gold0-orig,pos,unl,unl,unl,n/a,Several people ski down the hill.,Ski lifts\nanetv_93bg_XU3OTg,12081,The guy puts a white cloth on the edge. The guy,runs the metal object repeatedly across the white cloth.,uses his hand to wipe dirt into brief holes with the three client's hair.,goes up a abruptly ladder to get a metal cord.,takes a jack and slaps the stripes on the fence.,pulls the frame to rub his face under the sink.,gold0-orig,pos,unl,unl,unl,unl,The guy puts a white cloth on the edge.,The guy\nanetv_93bg_XU3OTg,12080,The guy pours product in a container and uses a brush to put the liquid on the surface of a metal object. The guy,puts a white cloth on the edge.,puts the residue off the tube.,\"seals it with concrete, then puts it back in.\",wipes the paper in the dropper with a hand and wipes it with a towel.,sprays the sink and sides a towel to wipe his wet off with a towel and removes his shoe.,gold0-reannot,pos,unl,unl,unl,unl,The guy pours product in a container and uses a brush to put the liquid on the surface of a metal object.,The guy\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6915,Her hand meets his as he grasps her right thigh. She,turns to kiss him.,straps their fingers on its straps.,smiles at his own reflection in a mirror.,arched her lower body as if in her trance.,,gold0-orig,pos,unl,pos,pos,n/a,Her hand meets his as he grasps her right thigh.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6916,She turns to kiss him. Her long sleek red hair,draped over one shoulder.,drives her belly down.,lies in half on its side.,ripple over her difficult sinks.,harbor across her side.,gold0-orig,pos,unl,unl,unl,unl,She turns to kiss him.,Her long sleek red hair\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6910,Stepped closer and someone firmly clasps her torso. Someone,arches her back slightly as their lips meet in a slow kiss.,quickly holds the dagger to his throat.,wears a wretched expression.,stares blankly into the night sky as the wind approaches.,,gold0-orig,pos,unl,unl,unl,n/a,Stepped closer and someone firmly clasps her torso.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6925,They remained seated at the picnic branch as people flee from an advancing storm. They,lie on the floor close to bed.,\"people rush to get him armored, but they are.\",\"demon in a uncertainty, someone glares at the humanoid corpse which is torn away.\",gets in the top of the lungs.,point over the slanted desert.,gold1-orig,unl,unl,unl,unl,unl,They remained seated at the picnic branch as people flee from an advancing storm.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6920,\"They lounged together beneath palm trees on golden sands. Standing beside her on the ocean, someone\",watches someone as she raises her head from the still waters.,stares down at the city.,lowers her limp hand toward the precise anguished animals.,pulls up the thin - out hat.,,gold0-orig,pos,unl,unl,pos,n/a,They lounged together beneath palm trees on golden sands.,\"Standing beside her on the ocean, someone\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6941,They watch as people grieve openly. Someone,lies at the front in an open casket.,grabs him from behind and shoots someone in the neck.,tousles her hair back.,jogs to the edge of the green dappled road between tall hedges.,,gold0-orig,pos,unl,pos,pos,n/a,They watch as people grieve openly.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6934,Someone enters ahead of someone to find it deserted. They,put down their bags.,climb up to one side.,walk down the alley.,steps out from behind a row of trailers.,are being driven on an unmarked road.,gold0-orig,pos,pos,pos,pos,pos,Someone enters ahead of someone to find it deserted.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6930,Someone rolls onto her side and smiles as she gazes at him. He,props himself up and looks at her.,\"pulls her head away, and closes her in some.\",\"hesitates a moment, then someone looks down at their hands.\",\"stares at the other students, then begins to kiss her, bending over the bushes, looking at her.\",takes her glass and flips it off.,gold0-orig,pos,unl,pos,pos,pos,Someone rolls onto her side and smiles as she gazes at him.,He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6939,A mostly black congregation has gathered for the funeral in a quaint white church. Someone's daughter,wears a black veil.,sits at a desk and waits for her.,is seated at a table watching with red ribbon around her brow.,flips a page as a hand pushes past her followed by her.,\"walks slowly into a hospital kiosk, flanked by her friends and four.\",gold0-orig,pos,unl,unl,unl,unl,A mostly black congregation has gathered for the funeral in a quaint white church.,Someone's daughter\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6912,Someone unfastens her belt then unzips the back of her dress. She carefully,\"rolls down her stocking, revealing a scar beneath her right knee.\",\"strokes her brush, then wraps her arms around a tasteful scarf hanging in the neck.\",reaches in someone's hands.,\"steps up to a small pedestal fully clothed, her iron shawl.\",puts a tissue in his.,gold0-orig,pos,unl,unl,unl,unl,Someone unfastens her belt then unzips the back of her dress.,She carefully\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6944,Someone lowers her eyes as someone stares ahead serenely. People,rise from the pews.,\"have a deep snack, while someone looks away, occasionally saying not to stop anything.\",gaze at the phone.,are thrown over an parapet.,,gold1-orig,pos,unl,unl,unl,n/a,Someone lowers her eyes as someone stares ahead serenely.,People\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6937,Someone watches as someone walks to the foot of the stairs. An elderly woman,appears on the landing.,is lying on the floor next to him.,steps into an elevator.,comes up behind him.,,gold0-orig,pos,unl,unl,unl,n/a,Someone watches as someone walks to the foot of the stairs.,An elderly woman\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6940,Someone's daughter wears a black veil. People,sit at the end of the pew closest to the wall.,hold a camera for a poster that show someone.,seem surprised by their affection.,\"channels over the tv, laughing with the kids, as the adult pulls the sunglasses from her mouth.\",rips out her wedding ring.,gold0-orig,pos,unl,unl,unl,unl,Someone's daughter wears a black veil.,People\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6928,The wind rattles the windows. The doors,rattle in the gale.,reveal a foulard knotted with bow tie.,grate off its hinges.,slide shut behind someone.,,gold0-orig,pos,unl,unl,pos,n/a,The wind rattles the windows.,The doors\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6945,People rise from the pews. The framed family photograph,'s on the wall.,looks out from the ring.,drops down on a chair.,shows someone's overcoat beneath it.,,gold0-orig,pos,unl,pos,pos,n/a,People rise from the pews.,The framed family photograph\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6927,He lies face down with his eyes closed. Someone,rests her chin against his shoulder.,\"snatches his bag book in his lap, giving her friend a passionate kiss.\",begins to point his wand skyward.,gazes off with a weary look.,,gold0-orig,pos,unl,pos,pos,n/a,He lies face down with his eyes closed.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6938,An elderly woman appears on the landing. A mostly black congregation,has gathered for the funeral in a quaint white church.,stands waiting for her to.,\"stands, mostly of texts of courage in front of everyone.\",\"stands and looks at her, extensively.\",,gold0-orig,pos,unl,unl,pos,n/a,An elderly woman appears on the landing.,A mostly black congregation\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6936,Someone peers into the kitchen then down the narrow flight of steps to someone's basement bedroom. Someone,watches as someone walks to the foot of the stairs.,stops and turns the glass door to the window.,\"passes out, leaving someone behind.\",\"comes down the stairs to his father's house, eating a carrot.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone peers into the kitchen then down the narrow flight of steps to someone's basement bedroom.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6922,\"Night, they make love on the deck. They\",dive off the prowl of the boat as moonlight plays on the glittering surface of the sea.,runs down a long flight of stairs.,rise back in the undergrowth.,find someone's shoe shoes.,pull out their jackets.,gold0-orig,pos,unl,unl,unl,pos,\"Night, they make love on the deck.\",They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6943,The man shakes someone's hand and moves along. Someone,lowers her eyes as someone stares ahead serenely.,looks in the mirror just as this woman comes to give the little lunch they gave up.,leads the penguins back with someone.,takes hold of his body hand and hugs him on.,shows the final result.,gold0-orig,pos,unl,unl,unl,unl,The man shakes someone's hand and moves along.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6917,Her long sleek red hair draped over one shoulder. Someone,\"pulls his sweater off and climbs onto the bed as someone reclines, wearing a sultry black slip.\",\"holds out her hand, gathering his sons.\",wakes with a start.,moves stiffly between the bride and groom.,,gold0-orig,pos,unl,unl,unl,n/a,Her long sleek red hair draped over one shoulder.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6923,They dive off the prowl of the boat as moonlight plays on the glittering surface of the sea. They,swim gracefully beneath a brilliant full moon.,\"see someone trailing behind, dancing together.\",\"pass people, including above, and wave at the back of the canal.\",continue to move the leaves between the lifeboat and then come through sidewalks and slide up.,,gold0-orig,pos,unl,unl,unl,n/a,They dive off the prowl of the boat as moonlight plays on the glittering surface of the sea.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6914,He slides off her dress and kisses the back of her neck. Her hand,meets his as he grasps her right thigh.,is already inscribed from the envelope.,\"closes the door, revealing someone with a chestnut entry.\",reaches out and jams his arm on her face.,,gold0-orig,pos,unl,unl,unl,n/a,He slides off her dress and kisses the back of her neck.,Her hand\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6935,They put down their bags. Someone,peers into the kitchen then down the narrow flight of steps to someone's basement bedroom.,takes out the photos of the vault with the rest of the kids.,climbs out of the car and goes up a ladder.,approaches a pair of neatly - sized big hide homes from a roof behind a cabinet between stone houses.,\"sits opposite and skinny with short, short hair.\",gold1-orig,pos,unl,unl,unl,unl,They put down their bags.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6908,She closes the door and turns around. Their eyes,meet across the dimly - lit room.,lock together and be gazes at the ring dance.,lock on the paper - wedged shelf.,lock on the door.,meet as he watches forlornly.,gold1-orig,pos,unl,unl,unl,pos,She closes the door and turns around.,Their eyes\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6933,\"Looking tanned and healthy, people carry luggage up the front steps of the retirement home. Someone\",enters ahead of someone to find it deserted.,climbs onto the back of an suv and spots the handcuff.,drinks from a table.,\"arrives at home, a dozen portly faced elderly woman seated amid a grave.\",gets to her feet and shuffles to the grave.,gold1-orig,pos,unl,unl,unl,unl,\"Looking tanned and healthy, people carry luggage up the front steps of the retirement home.\",Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6926,They lie on the floor close to bed. He,lies face down with his eyes closed.,takes a look at the couple's bodies before measuring into two shelves.,\"is over, standing.\",looks at a graveyard.,\"summons a breath, then turns toward the window, buck screaming.\",gold0-orig,pos,unl,unl,unl,unl,They lie on the floor close to bed.,He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6921,\"Standing beside her on the ocean, someone watches someone as she raises her head from the still waters. Night, they\",make love on the deck.,have pulled through a lot.,cart the other sailors into the turbulent waters.,arrive at hogwarts o. s. someone sits in a locker room.,\"twirl in unison, back flips as they shake hands.\",gold0-orig,pos,unl,unl,unl,unl,\"Standing beside her on the ocean, someone watches someone as she raises her head from the still waters.\",\"Night, they\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6907,Someone puts her coat and hand back down on the double bed which has tall elaborately - carved bedposts. She,closes the door and turns around.,appears couples approaching neighbors bedroom kitchen.,submerges the small pavilion and swabs her back.,is put and repair the scarlet and sticky color.,two needles of wings.,gold0-orig,pos,unl,unl,unl,unl,Someone puts her coat and hand back down on the double bed which has tall elaborately - carved bedposts.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6913,\"She carefully rolls down her stocking, revealing a scar beneath her right knee. He\",slides off her dress and kisses the back of her neck.,\"eyes the gun of her baby's eyes, someone looks up as someone watches her and walks back out of the boat.\",\"eyes doctor, turns over to find someone sleeping in the bed, and holds out her handcuffs.\",\"begins looking at his bloated stomach, then slides in a roll.\",\"rows out wearing gray robes, only blue - yellow haired someone who wears dark glasses and holds like the wet young woman.\",gold1-orig,pos,unl,unl,unl,unl,\"She carefully rolls down her stocking, revealing a scar beneath her right knee.\",He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6906,Someone carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home. They,enter a bedroom decorated with framed landscape paintings.,tearing off the furniture.,takes his phone off the stairs and crosses a street as well as coming out from the bay.,\"turn the page, revealing a balding, middle - aged woman in a turban - talking.\",pass the gate of the paddy field which is almost upon.,gold0-reannot,pos,unl,unl,unl,unl,Someone carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6919,Someone looks up to see a space rocket rise over billowing mountainous clouds on the horizon. Someone,wrings out her wet hair.,\"accelerates and appears, wearing his helmet, secured in a yellow sun perched on a window, and scratched scar.\",walks in with a hand draped over his ears.,runs out the front porch of the hangar van.,mounts the girder beam.,gold1-reannot,pos,unl,unl,unl,unl,Someone looks up to see a space rocket rise over billowing mountainous clouds on the horizon.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6905,Someone leans across the dining table. Someone,carries two of someone's suitcases as they walk side by side through the silent shadowy corridors of the home.,is sitting on the floor eating a spoon.,someone spits out someone.,\"remains by putting the sandwich in his mouth, then launches them into the air.\",places a rubber fountain on the bar.,gold0-reannot,pos,unl,unl,unl,pos,Someone leans across the dining table.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6911,Someone arches her back slightly as their lips meet in a slow kiss. Someone,unfastens her belt then unzips the back of her dress.,eyes the makeup before her.,eyes her spar in her old curls.,pulls someone onto a sunny rooftop.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone arches her back slightly as their lips meet in a slow kiss.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6942,Someone lies at the front in an open casket. The man,shakes someone's hand and moves along.,reaches for his billfold.,blows confetti into the air.,looks up at an stands of other students outside the gate.,\"holds a small package, then the child reluctantly advances it.\",gold1-reannot,pos,unl,unl,unl,unl,Someone lies at the front in an open casket.,The man\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86835,6931,\"A ceiling fan turns beneath the slipping raft over their bed. In the hospital, someone\",stares down at the diary.,starts downhill and passes his friends through the front door on the sidewalk.,walks to the front door and checks through its vent.,\"emerges, standing in the geese.\",sleeps peacefully in the blanket.,gold0-reannot,pos,unl,unl,unl,pos,A ceiling fan turns beneath the slipping raft over their bed.,\"In the hospital, someone\"\nanetv_c21Y_pi3-Gg,7011,Several close ups of sandwiches are seen as well as a person cutting up meat and vegetables. The person,cuts up bread following by laying various ingredients on the bread.,removes up more ingredients and sprinkles some onto chopped meat.,puts down the tray of the lettuce and puts a strip of the bread.,moves the skillet to the side as well as people watching on the sides.,steams a few pieces around the plate and end by cutting the pieces off the top.,gold0-orig,pos,unl,unl,unl,unl,Several close ups of sandwiches are seen as well as a person cutting up meat and vegetables.,The person\nanetv_c21Y_pi3-Gg,7012,The person cuts up bread following by laying various ingredients on the bread. The person,closes the bread to make sandwiches followed by putting them in a french press and presenting them to the camera.,rides the knife cutting the foil paper and the knife places.,adds two lemon to put the dough in a bowl to cut the egg.,pours food ingredients into a bowl and pour it into plates and syrup into a bowl.,continues speaking while clips are shown of food stealing food and foods.,gold0-orig,pos,unl,unl,unl,unl,The person cuts up bread following by laying various ingredients on the bread.,The person\nanetv_SA2GomtZkvE,2980,He is sitting next to his bike. A man,walks in the background.,puts his backpack on.,is holding pictures of the bike.,is skiing on a bike.,enters on the machine while he speaks.,gold1-orig,pos,unl,unl,unl,pos,He is sitting next to his bike.,A man\nanetv_SA2GomtZkvE,2978,A man plays an accordion in the street. He,is wearing a hoodie.,stops to see the history of the saxophone.,starts to start the door one last time.,walk and try to take playing.,talks as he talks.,gold0-orig,pos,unl,unl,unl,unl,A man plays an accordion in the street.,He\nanetv_SA2GomtZkvE,2979,He is wearing a hoodie. He,is sitting next to his bike.,is pulling iron out of his pants.,takes a seat and thrusts it through the open window.,bounces a ball with a stick.,starts to play his guitar.,gold1-orig,pos,unl,unl,unl,pos,He is wearing a hoodie.,He\nanetv_Jv7AjsdOk2I,16780,He kicks to build up some speed and does some cool tricks. He,gets off and then jumps back on the board and does more tricks all around.,comes running across the street holding on poles but eventually gets into an empty swimming pool.,is showing a choreography with people standing next to them.,explain what he has done.,,gold0-orig,pos,unl,unl,pos,n/a,He kicks to build up some speed and does some cool tricks.,He\nanetv_Jv7AjsdOk2I,16779,\"A man is skateboarding, he jumps up on higher levels. He\",kicks to build up some speed and does some cool tricks.,dashes on roller skate.,begins to roller tricks with an airplane landing until he falls.,points in a fast jumps and vanishes as then picks up speed.,goes over rams gate.,gold0-orig,pos,unl,unl,unl,unl,\"A man is skateboarding, he jumps up on higher levels.\",He\nanetv_Jv7AjsdOk2I,16781,He gets off and then jumps back on the board and does more tricks all around. He,jumps up on a rail and then gets back down and sits on the board and waves.,continues playing over the rope and ends by showing off the floor so that it is reversed.,moves around and continues while he continues moving around and laughing up seeing him playing under the water.,blocks the cord and swings it round while the kids watch him.,\"looks away, and continues to talk and finally when he can that it is up next to him.\",gold0-orig,pos,unl,unl,unl,pos,He gets off and then jumps back on the board and does more tricks all around.,He\nanetv_8Qg395HjqFg,5910,He opens the tin foil and cuts the sandwich in half. He,takes a bit of the sandwich.,picks up a piece of clothing and shows it to another person.,moves it into place and wraps it in a strainer.,removes his coat and starts cleaning all the papers.,,gold1-orig,pos,unl,unl,unl,n/a,He opens the tin foil and cuts the sandwich in half.,He\nanetv_8Qg395HjqFg,5907,He places tin foil down onto a table. He,puts bread on the tin foil with butter and cheese.,\"removes it, places it in a trash bin, and hands a slip of paper to jars.\",pours out containers of noodles and cooks it.,tapes them up and hands it to the boy.,,gold0-orig,pos,unl,unl,pos,n/a,He places tin foil down onto a table.,He\nanetv_8Qg395HjqFg,5909,He puts the iron on the sandwich. He,opens the tin foil and cuts the sandwich in half.,then irons the shirt.,someone takes the check.,puts it on the table.,,gold0-reannot,pos,unl,unl,unl,n/a,He puts the iron on the sandwich.,He\nanetv_8Qg395HjqFg,5908,He puts bread on the tin foil with butter and cheese. He,puts the iron on the sandwich.,puts a rubber into it and begins to tighten it.,cuts it in half and puts it in a blender.,takes a mixed slice in a salad.,\"places the paper into a strainer, utensils it on and lifts it with his chopsticks.\",gold0-reannot,unl,unl,unl,unl,unl,He puts bread on the tin foil with butter and cheese.,He\nanetv_8Qg395HjqFg,5906,A man in a white jacket picks up an iron. He,places tin foil down onto a table.,puts the camera into a strainer on the bathroom counter.,demonstrates how to drink water.,\"pauses it for a moment, then pauses.\",,gold0-reannot,pos,unl,pos,pos,n/a,A man in a white jacket picks up an iron.,He\nanetv_yEBiJguscMY,14556,There is an audience watching them play. The man,pretends his racket is a guitar.,cheers black owners as they continue competing.,does many karate moves jumping back and forth.,lets a gymnast stands on the air before jumping up.,continues playing and goes to more light.,gold1-orig,pos,unl,unl,unl,pos,There is an audience watching them play.,The man\nanetv_yEBiJguscMY,14555,Two men are playing wall ball in a room. There,is an audience watching them play.,are watching from a room and he mixes balls together into a bag.,are children in jumpers back.,is a pole in a court.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are playing wall ball in a room.,There\nlsmdc3061_SNOW_FLOWER-29987,7073,\"She maintains an emotionless expression as the villagers continue to pay their respects. In present day, the identically featured someone\",drives her car through the city.,follows someone and sketching in the back.,leans at the window's bouquets.,snatches the tin flag.,steps onto a terrace.,gold1-orig,pos,unl,unl,unl,unl,She maintains an emotionless expression as the villagers continue to pay their respects.,\"In present day, the identically featured someone\"\nlsmdc3061_SNOW_FLOWER-29987,7079,\"Someone opens the door, fixing her hair. Noticing someone, she\",straightens her bath robe.,cocks a handsome eyebrow at someone.,walks into the dim kitchen and finds someone sitting behind her at the waist.,reaches into her pocket and pulls a handle to her pocket.,turns her back to him.,gold0-orig,pos,unl,unl,unl,pos,\"Someone opens the door, fixing her hair.\",\"Noticing someone, she\"\nlsmdc3061_SNOW_FLOWER-29987,7069,\"Someone covers her mouth in distress. Now, a view through a barred upper floor window\",shows a man lying dead in the street below.,shows someone painting a military airplane in the doorway.,shows someone as someone scoots out of the room.,shows someone fighting someone in a hospital room.,,gold0-orig,pos,unl,unl,pos,n/a,Someone covers her mouth in distress.,\"Now, a view through a barred upper floor window\"\nlsmdc3061_SNOW_FLOWER-29987,7078,She turns for the exit. Someone,\"opens the door, fixing her hair.\",turns to the american.,listens out into her audio tube.,walks to a window and hides inside.,is lost in the sides of a corridor.,gold1-orig,pos,unl,unl,unl,unl,She turns for the exit.,Someone\nlsmdc3061_SNOW_FLOWER-29987,7077,\"A lone three - story house stands in the middle of a construction site. Now inside, someone\",cautiously approaches a door with her purse in hand.,\"looks along the corridor, where the plane gets flashing.\",places tape on a chair and stands on the window sill.,leans behind the door and picks it open.,,gold1-orig,pos,unl,pos,pos,n/a,A lone three - story house stands in the middle of a construction site.,\"Now inside, someone\"\nlsmdc3061_SNOW_FLOWER-29987,7075,\"She peers out the passenger window. Passing some scaffolding and a few partly torn down buildings, she\",spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood.,finds another page on his chair indicating that someone walks by.,\"slides it down and tugs a knife, then leaps down a side street.\",\"yanks one, shoves it back, and looks it up and kills the massive barley truck.\",,gold0-orig,pos,unl,unl,unl,n/a,She peers out the passenger window.,\"Passing some scaffolding and a few partly torn down buildings, she\"\nlsmdc3061_SNOW_FLOWER-29987,7074,\"In present day, the identically featured someone drives her car through the city. She\",peers out the passenger window.,shoots at the ticket.,thrusts out through a grassy leverage beneath the base of a cobblestone landscape.,\"drives off, revealing the discarded page of her skull.\",looks down at the sun - colored olympics in the otherwise empty city.,gold0-orig,pos,unl,unl,unl,unl,\"In present day, the identically featured someone drives her car through the city.\",She\nlsmdc3061_SNOW_FLOWER-29987,7071,\"Now, a woman with a cloth over her nose and mouth uses a stick to pick up an article of clothing from a pile and drop it into a small fire burning in the middle of a patio. Someone\",steps into view with her face covered as well.,hands a vacuum to batman and shows to the top and guy one of that left.,\"finds someone's sauce with the $3, directing the table but stool in, stiff and uneasy.\",opens the drawer and spots someone carrying a pink box bundled in his shirt.,\"stands by her hand, his chest heaving.\",gold0-orig,pos,unl,unl,unl,unl,\"Now, a woman with a cloth over her nose and mouth uses a stick to pick up an article of clothing from a pile and drop it into a small fire burning in the middle of a patio.\",Someone\nlsmdc3061_SNOW_FLOWER-29987,7072,\"Later, a couple bows ceremoniously to her and her husband, who now wears a mustache and smokes a pipe. The center portion of her lips painted red, someone\",wears an elegant black silk robe with a royal blue yoke and elaborate silver jewelry.,does not make any happier than this.,stands on a distant lowering vent.,rises into the fusion chamber.,looks down as she sits on a chair with photographs on it.,gold0-orig,pos,unl,unl,unl,unl,\"Later, a couple bows ceremoniously to her and her husband, who now wears a mustache and smokes a pipe.\",\"The center portion of her lips painted red, someone\"\nlsmdc3061_SNOW_FLOWER-29987,7076,\"Passing some scaffolding and a few partly torn down buildings, she spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood. A lone three - story house\",stands in the middle of a construction site.,stands silhouetted under a foggy sky.,stands in front of lights while a shadowy figure edges its way down the high tower spiral.,\"picks off the building's new paint basket, which clutches one of the open doors, surprising crumble up.\",sits on a misty road.,gold0-reannot,pos,unl,unl,unl,unl,\"Passing some scaffolding and a few partly torn down buildings, she spots a few distant skyscrapers and a tall crane beyond the rundown neighborhood.\",A lone three - story house\nlsmdc3061_SNOW_FLOWER-29987,7070,\"Now, a view through a barred upper floor window shows a man lying dead in the street below. Someone\",peers outside with the soft daylight shining on her face.,notices a sketch of a young man sitting on a couch.,aims his glasses at his face appraisingly then drops it.,see the car and someone out of the room.,leans his head against the wall.,gold1-reannot,pos,unl,unl,unl,pos,\"Now, a view through a barred upper floor window shows a man lying dead in the street below.\",Someone\nanetv_yWCEDAQvhzA,13429,The same move is repeated several times in slow motion. Then another master,comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat.,stands back and flips her horizontally and jump at the mat with her hands catch.,comes and throws the ball to his goal.,sits on the brown horse in order to teach.,comes over and helps the shot successfully.,gold1-orig,pos,unl,pos,pos,pos,The same move is repeated several times in slow motion.,Then another master\nanetv_yWCEDAQvhzA,13425,The three masters show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg. They,bend their elbows and close their fists as they show some karate chops while jumping up high in the air.,then both struggle to turn and turn to the camera in a minor fashion while all the girls away loses them.,fall around the gym a few times.,put the title on to capture the team's left eye and again the man continue to play and show their face first.,two begin together using blue toys jumping pets and handstands.,gold1-orig,pos,unl,unl,unl,unl,The three masters show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg.,They\nanetv_yWCEDAQvhzA,13430,Then another master comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat. The master first,\"kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces.\",\"tries to balance the ball, but then hits the pinata super fast and catches it hitting the stick five more.\",bounces down on the log until her wrist is finished.,moves his hands and off with the first time.,play after one second dog stabs each other and start with the others.,gold1-orig,pos,unl,unl,unl,unl,Then another master comes forward to punch a wooden baseball bat while two other masters kneel down and hold the bat.,The master first\nanetv_yWCEDAQvhzA,13426,They bend their elbows and close their fists as they show some karate chops while jumping up high in the air. The they,step back as the crowd applauds for them.,swing back and forth until it takes their turn to start.,continue trying as mak a shot any kid is stuck for the first time.,shake and applaud their hips as they hit the ball.,do 3 cheer while snowy struggles on its belly.,gold0-orig,pos,unl,unl,unl,unl,They bend their elbows and close their fists as they show some karate chops while jumping up high in the air.,The they\nanetv_yWCEDAQvhzA,14335,Three men in white robes are doing karate moves. People,are watching them in the audience behind them.,take the shots and shake hands.,are sitting where the boys are talking.,are fighting in the court playing a game of foosball.,are standing up watching the procession.,gold0-orig,pos,unl,unl,unl,pos,Three men in white robes are doing karate moves.,People\nanetv_yWCEDAQvhzA,13428,Then one of the masters holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two. The same move,is repeated several times in slow motion.,is performed before the mechanics are shown on the screen.,\"on the bar, and binds on both sides of the mat to dictation, and other videos of the springs.\",leads to several miniature pieces of white surf and creating a product.,\"walks on the rope, and the other perform around it.\",gold0-orig,pos,unl,unl,unl,unl,Then one of the masters holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two.,The same move\nanetv_yWCEDAQvhzA,13424,There are three black belt karate masters demonstrating and doing karate in a large gym with several spectators. The three masters,show synchronized karate chops and moves as they show striking moves with open and techniques while kicking with their right leg.,drive off on tight rope in double motion.,\"appear at the camera holding a hoola, fencing and dancing parody.\",begin to take pictures and ride quickly along in their home.,are shown taking several parts off their belt and fighting to the front place with the swords.,gold0-reannot,pos,unl,unl,unl,unl,There are three black belt karate masters demonstrating and doing karate in a large gym with several spectators.,The three masters\nanetv_yWCEDAQvhzA,13431,\"The master first kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces. The entire crowd\",cheers for him as the masters leave the stage.,\"watches together, then throws away all the bricks and hits.\",\"clears, then the circle wins and a man in prayer stops them.\",has a fine aim with the food from freeing the players and hits him the bottle.,tries to cheer for the to win and back up as a man prepares the machine on the floor cheers.,gold0-reannot,pos,unl,unl,unl,unl,\"The master first kicks the bat, retreats and then comes back with force and kicks it hard to split it into two pieces.\",The entire crowd\nanetv_yWCEDAQvhzA,13427,The they step back as the crowd applauds for them. Then one of the masters,holds a wooden board suspended on a string while the other master concentrates and punches into the board to split it into two.,is thrown in the air.,moves apart as the crowd cheers.,\"moves a round object around that the crewman throws something from behind him, leaving the director to the camera.\",begins his routine with an angry machine piercing in his right hand and the other man slumps down his head.,gold0-reannot,pos,unl,unl,unl,unl,The they step back as the crowd applauds for them.,Then one of the masters\nlsmdc3008_BAD_TEACHER-4064,2702,\"His eyes shut, someone rests his head next to someone's. She\",takes a sip then slowly picks up someone's cell phone.,grabs his bag and he takes.,\"blinks and looks out from the window, the lamps shining on his long, brown eyes.\",\"laughs, but his expression gives a slate shake then tilts his head to the side.\",pops the mouth of someone.,gold0-orig,pos,unl,unl,unl,unl,\"His eyes shut, someone rests his head next to someone's.\",She\nlsmdc3008_BAD_TEACHER-4064,2699,Someone pats someone on the back and leaves. Someone,returns someone's smile.,goes to see someone's wounds.,reaches up and opens them.,stares at him suspiciously.,remembers the note with the young man.,gold0-orig,pos,unl,unl,unl,unl,Someone pats someone on the back and leaves.,Someone\nlsmdc3008_BAD_TEACHER-4064,2700,Inside on the bed two pairs of bare feet rub together. Someone,writhes atop of someone's clothes prone body.,stares on the sunken ship.,looks back at the camera as someone catches up with someone.,sees a young blonde woman sitting at a table at a desk.,,gold0-orig,pos,unl,unl,unl,n/a,Inside on the bed two pairs of bare feet rub together.,Someone\nlsmdc3008_BAD_TEACHER-4064,2701,\"Someone writhes atop of someone's clothes prone body. His eyes shut, someone\",rests his head next to someone's.,hangs his head.,is forced on the shadowy deluminator's fires end.,slowly frowns as he follows his student.,looks around the empty double narrowed.,gold1-orig,pos,unl,unl,unl,unl,Someone writhes atop of someone's clothes prone body.,\"His eyes shut, someone\"\nlsmdc3008_BAD_TEACHER-4064,2704,In the hotel someone tosses someone's cell down. A picture of someone,shows on the phone and indicates a connected call.,'s white presses ghostly graphic by sand letters silently above a small church cafe.,sitting at his car in the photo booth reads someone u. s. terminal.,appear from the porch doorway.,,gold0-orig,pos,unl,unl,unl,n/a,In the hotel someone tosses someone's cell down.,A picture of someone\nlsmdc3008_BAD_TEACHER-4064,2698,Someone and someone swap a look. Someone,pats someone on the back and leaves.,\"starts over, smiling again.\",stares wide - eyed at the boys.,takes someone's arm and leads him off.,glances shyly from a press conference.,gold1-reannot,pos,unl,pos,pos,pos,Someone and someone swap a look.,Someone\nlsmdc3008_BAD_TEACHER-4064,2705,\"A picture of someone shows on the phone and indicates a connected call. With someone on all fours, someone\",thrusts at her from behind.,opens the screen door for her friend.,swings his sack halfway to the rear of the cabin.,grips her mobile in her hand.,answers the phone with a haunted expression.,gold1-reannot,pos,unl,unl,pos,pos,A picture of someone shows on the phone and indicates a connected call.,\"With someone on all fours, someone\"\nlsmdc1001_Flight-71870,11263,Someone turns to the nurse. Someone's left leg,lies on a brace.,writhes with a needle.,nudges the black figure.,lies vertically on the floor.,,gold1-orig,pos,unl,unl,pos,n/a,Someone turns to the nurse.,Someone's left leg\nlsmdc1001_Flight-71870,11262,\"At the hospital, someone walks over to a private room and peeps in. He\",taps his cane on the door frame.,closes the door and steps toward the podium.,pours a book on someone and finds it empty.,pauses to catch a glimpse of someone in the next room.,,gold0-orig,pos,unl,unl,pos,n/a,\"At the hospital, someone walks over to a private room and peeps in.\",He\nlsmdc1020_Crazy_Stupid_Love-81300,17083,\"Someone eyes his wedding ring, then slips it off. They\",walk through the bar.,sit watching family in the examining room.,pass a patrons as he marches toward the salon.,begin belly dancing in central park.,run to the cell.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone eyes his wedding ring, then slips it off.\",They\nlsmdc1039_The_Queen-88240,16405,And someone moves slowly along and smiles at them. She,\"stops in front of a little girl, who holds a bouquet of flowers.\",\"looks around, as the car albums drop in her face.\",studies someone's face as the clock reads.,\"looks him over, slowly raises his gun slightly for someone.\",\"looks toward them, tosses her wand, as someone grins and walks over the ballroom toward her.\",gold0-orig,pos,unl,unl,unl,unl,And someone moves slowly along and smiles at them.,She\nlsmdc1039_The_Queen-88240,16401,The crowd of onlookers watch as someone looks at the flowers. Someone,looks increasingly upset as she tries to maintain her composure.,\"scoops a spot of muscled back, then gazes somberly off view.\",\"slowly turns to someone, who sniffs the cabinet, glares.\",shifts his sad gaze.,,gold0-orig,pos,unl,unl,pos,n/a,The crowd of onlookers watch as someone looks at the flowers.,Someone\nlsmdc1039_The_Queen-88240,16407,The girl hands the bouquet to someone who smiles. Someone,continues to move along.,stops motioning students over.,glances in his friend's direction.,looks at the podium on his hand.,grits his teeth worriedly.,gold1-orig,pos,unl,unl,unl,unl,The girl hands the bouquet to someone who smiles.,Someone\nlsmdc1039_The_Queen-88240,16399,Someone looks down after reading the third message. She,\"flinches, but quickly composes herself and moves on.\",continues to pace as the thugs slowly in to.,grabs her remaining phone and leaves it over.,\"glances at two boys, who also watch a inspector a heavy necktie.\",turns his attention back to him.,gold0-orig,pos,unl,unl,unl,unl,Someone looks down after reading the third message.,She\nlsmdc1039_The_Queen-88240,16397,Someone looks at notes on the palace gates. Another,is a crying face.,comes onto a hot person.,move into the rapidly guarded corridor surrounding the school.,\"emerge onto the stream, then arrive at the pier.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone looks at notes on the palace gates.,Another\nlsmdc1039_The_Queen-88240,16410,And approaches someone who sits on a sofa next to someone. Someone,takes a pen from her purse and writes on a sheet of paper.,rolls her stool to find him and approaches the booth with a hopeful gaze.,checks his notebook and stirs a shot.,bumps into the jeep.,\"bends toward someone, just wets her lips and smiles.\",gold1-orig,pos,unl,unl,unl,pos,And approaches someone who sits on a sofa next to someone.,Someone\nlsmdc1039_The_Queen-88240,16400,\"She flinches, but quickly composes herself and moves on. The crowd of onlookers\",watch as someone looks at the flowers.,\"swap a look as she stands, pauses, and looks at someone.\",\"on the bullring and the top of the building is thoughtful, but someone turns and walks off.\",from them seems like they are watching her.,\", their beefy example college, show their reaction.\",gold1-orig,pos,unl,unl,unl,unl,\"She flinches, but quickly composes herself and moves on.\",The crowd of onlookers\nlsmdc1039_The_Queen-88240,16403,She walks up to the barriers to meet the people. Various young women,stand at the front.,are running to sign for the street scenes.,have been waiting inside a working wagoneer.,are shown dressed in tennis uniform.,,gold0-orig,pos,unl,pos,pos,n/a,She walks up to the barriers to meet the people.,Various young women\nlsmdc1039_The_Queen-88240,16402,\"She stops, turns back to the crowd and smiles. She\",walks up to the barriers to meet the people.,\"goes further across the room, and quickly falls forward.\",dances tightly to the music as people sing to her.,is on the street next to some other people watching him.,goes and stands there.,gold1-orig,pos,unl,unl,unl,unl,\"She stops, turns back to the crowd and smiles.\",She\nlsmdc1039_The_Queen-88240,16406,\"She stops in front of a little girl, who holds a bouquet of flowers. The girl\",hands the bouquet to someone who smiles.,soaps up her feet.,takes her phone and begins to mix it in a bowl.,smirks on front a punching bag.,wipes her remorse with a tissue.,gold0-orig,pos,unl,unl,unl,unl,\"She stops in front of a little girl, who holds a bouquet of flowers.\",The girl\nlsmdc1039_The_Queen-88240,16404,Various young women stand at the front. And someone,moves slowly along and smiles at them.,\"gets up, shuffling over the stack of stone shelves.\",speaks without swells anymore.,tries to help but man grabs a mans.,lays out a ladder.,gold0-orig,pos,unl,unl,unl,unl,Various young women stand at the front.,And someone\nlsmdc1039_The_Queen-88240,16409,\"In an ornate hall, someone walks past some tv lighting and camera equipment. And\",approaches someone who sits on a sofa next to someone.,enters a photo frame.,see several filing cabinet drawers.,sees as the pile is delivered.,rides behind the crowd of young kids.,gold1-orig,pos,unl,unl,unl,unl,\"In an ornate hall, someone walks past some tv lighting and camera equipment.\",And\nlsmdc1039_The_Queen-88240,16398,Another is a crying face. Someone,looks down after reading the third message.,presses the tip of a finger.,\"continues playing the camera, his conversation continuing with sister engages and pretend to vacuum.\",smears her dark eyes with dripping blood.,\"has her arm behind her back, walks around her.\",gold1-orig,pos,unl,unl,unl,unl,Another is a crying face.,Someone\nanetv_8ltNqT5N-xs,3953,She moves her hips all around while a band plays instruments behind her. The woman,continues dancing and ends by holding a pose and flipping back her hair.,continues juggling the drums while scores.,continues performing tricks with her violin and ends with them looking down.,continues playing around the circle while another plays more.,continues to move around while continuing to play the harmonica.,gold1-orig,pos,unl,unl,pos,pos,She moves her hips all around while a band plays instruments behind her.,The woman\nanetv_8ltNqT5N-xs,3952,A woman is seen belly dancing on a large stage while people watch her on the side. She,moves her hips all around while a band plays instruments behind her.,\"continues dancing around as well as arms by, amid other partner motions and eating her around while dancing.\",candid more clips of the girls dancing baton and dance around with a man in pictures.,continues dancing around the stage and leads into her performing various dance moves while dancing around.,continues to dance around the floor and ends by moving the arms off and smiling by waving and smiling.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen belly dancing on a large stage while people watch her on the side.,She\nanetv_hYgheCsbtco,207,Instructions are being given for playing the instrument. The person's fingers,move up and down on the chords as they are shown.,measured it with her hand as the music ends.,are shown on a white screen.,map the theme bit.,,gold0-orig,pos,unl,unl,unl,n/a,Instructions are being given for playing the instrument.,The person's fingers\nanetv_hYgheCsbtco,206,A close up is seen of chords and numbers scrolling next to the top of a guitar. Instructions,are being given for playing the instrument.,uses a pencil to pull the harmonica from the top.,are sliding on the water and the man in blue shirt kissing a birders.,comes over the cup and pins it down.,\", we watch a young boy, still playing the guitar.\",gold0-orig,pos,unl,unl,unl,pos,A close up is seen of chords and numbers scrolling next to the top of a guitar.,Instructions\nlsmdc0011_Gandhi-52180,13171,Someone takes an iced drunk from a servant. Someone,shakes his head wistfully.,throws down his bottle.,takes out his bottle.,laughs and looks at his wallet.,stares down at the floor.,gold0-orig,pos,unl,unl,pos,pos,Someone takes an iced drunk from a servant.,Someone\nlsmdc0011_Gandhi-52180,13169,As they come clear they can see that a military train of an engine and two cars has been derailed ahead of them. A small troop of cavalry,are coming slowly along the line of someone's train toward them.,grab the snowy bag and use it to apply it to the brown comp box.,pushes through open island of surfboards and places a thick cloth to the board and - shines on him.,are riding medical equipment and white range.,is on the camels in the middle of a street.,gold0-reannot,pos,unl,unl,unl,unl,As they come clear they can see that a military train of an engine and two cars has been derailed ahead of them.,A small troop of cavalry\nanetv_j4YrzUjxAp8,13353,A person scrubs and dries a tiled floor with a vacuum. A person,empties the contents of the vacuum in a white sink.,grabs a pumpkin towel around the back of the couch.,\"uses a steam cleaner, and the water cleaner.\",talks to the man while dressed in a red shirt with green tan colored shoes.,,gold1-orig,pos,unl,unl,unl,n/a,A person scrubs and dries a tiled floor with a vacuum.,A person\nanetv_j4YrzUjxAp8,13350,A person vacuums the carpet. A person,wets and vacuums the carpet.,is putting in by shaving the tires with the brush.,shines under the roof with a wet cloth.,gives it to the woman as he speaks and gets wet.,puts a large cut in a carpet next in the rolls turning and sprays it against the wall.,gold0-orig,pos,unl,unl,pos,pos,A person vacuums the carpet.,A person\nanetv_j4YrzUjxAp8,13354,A person empties the contents of the vacuum in a white sink. Ways a vacuum can be used,are showed in split screens.,with tiled wall laundry.,to draw steam up.,to prepare a rubber headed.,,gold0-orig,pos,unl,unl,unl,n/a,A person empties the contents of the vacuum in a white sink.,Ways a vacuum can be used\nanetv_j4YrzUjxAp8,13351,A person wets and vacuums the carpet. A person,vacuums or soaks up coffee from the carpet.,is slowly attached to a paintbrush while climbing on a rock next to her.,places a square shoe on the bottom half of the carpet.,washes the vacuum then works on the carpet with a sponge.,sits on the floor to iron wax and cleaning the floor.,gold0-orig,pos,unl,unl,unl,pos,A person wets and vacuums the carpet.,A person\nanetv_j4YrzUjxAp8,13352,A person vacuums or soaks up coffee from the carpet. A person,scrubs and dries a tiled floor with a vacuum.,uses a vacuum on the driveway and adds contact leaves to shatter windows and light sidewalks.,presses the dogs to the wall then removes a large rug from the stands.,creates a hole into a surface with a big organic field.,is mixing drinks polish all over a mirror.,gold0-reannot,pos,unl,unl,unl,unl,A person vacuums or soaks up coffee from the carpet.,A person\nanetv_iHO42zwYsu0,18425,A shot of a lawn mower is shown followed by a man walking into frame. The man,pushes around a lawn mower along the yard cutting the grass.,continues moving around the parking lots and ends with the man shoveling the grass.,begins by raking the lawn and shoveling the driveway as well as cutting the grass.,pushes the mower across a tree and shows it back to the children.,rides a tractor mower back and forth around the yard.,gold0-orig,pos,unl,unl,unl,pos,A shot of a lawn mower is shown followed by a man walking into frame.,The man\nanetv_iHO42zwYsu0,18426,The man pushes around a lawn mower along the yard cutting the grass. The man,continues to push the machine around the yard while the camera captures his movements.,raps the clippers on the grass.,continues dragging on the hedges and people behind him try to pick the man on it.,\"continues to mow the grass, then jumps down on front of the bushes.\",turns on the lawn mower.,gold0-orig,pos,unl,unl,pos,pos,The man pushes around a lawn mower along the yard cutting the grass.,The man\nanetv_iHO42zwYsu0,5252,He goes around a pile of leaves in the grass. He,leaves and pushes the lawn mower somewhere else.,throws the ball and continues humping the lawn.,picks up some tin tools and turns them.,puts his arms up at his sides and prays.,moves the lawn mower across the lawn.,gold0-orig,pos,unl,unl,unl,pos,He goes around a pile of leaves in the grass.,He\nanetv_XDFJFhaG_p0,6334,The man sets the instrument under his chin and tightens the bow. The man,undoes the bow strings and raps them around the violin.,hands over the mixing bag from the instrument while the camera captures his movements.,continues to move in the mans hands while the man musician finishes playing pose.,rings behind a bow before bowing.,pulls the scroll ropes and rounds the green wire to turning black.,gold1-orig,unl,unl,unl,unl,unl,The man sets the instrument under his chin and tightens the bow.,The man\nanetv_XDFJFhaG_p0,6333,A man stands holding a violin and bow discussing its features. The man,sets the instrument under his chin and tightens the bow.,receives a harmonica and shows a plaque.,strum the drums in front of him.,seems finished to laugh and gestures.,begins playing the violin while continuing to play.,gold0-orig,pos,unl,unl,unl,pos,A man stands holding a violin and bow discussing its features.,The man\nanetv_Ww2_b9f6Kh0,12527,The man does a handstand and fall from the handstand into the water. The next man,simply runs and dives while flipping into the water.,gets across the bridge.,rinses his board on a yellow water surface.,returns to another room.,flips over and trips three times in the air.,gold0-orig,pos,unl,unl,unl,pos,The man does a handstand and fall from the handstand into the water.,The next man\nanetv_Ww2_b9f6Kh0,12528,The next man simply runs and dives while flipping into the water. The final man,does a more traditional dive.,flips off a last shot and goes.,is completely fishing in the sand.,is highlighted by others.,,gold0-orig,pos,unl,unl,unl,n/a,The next man simply runs and dives while flipping into the water.,The final man\nanetv_Ww2_b9f6Kh0,12526,We see a man on a diving board high in the air. The man,does a handstand and fall from the handstand into the water.,pulls out a man floating on a handle.,shoots underwater into the water.,balances on the guy's leg and dives into the water.,gets up and goes to a diving board and does it several times.,gold0-orig,pos,unl,unl,pos,pos,We see a man on a diving board high in the air.,The man\nanetv_nQjxgOz1WYo,3756,The men stick their tongues out at the camera and the camera moves in on another table with people playing. In the end he,faces the camera towards himself.,shows off the capoeira tool and make another beat.,reaches into his bag and falls dead.,takes the stick to the other hand to stop and kick the ball.,sticks his tongue out.,gold1-orig,pos,unl,unl,unl,pos,The men stick their tongues out at the camera and the camera moves in on another table with people playing.,In the end he\nanetv_nQjxgOz1WYo,3755,A man is seen acting crazy towards a camera while sitting at a poker table with another man. The men stick their tongues out at the camera and the camera,moves in on another table with people playing.,zooms in as well as the people out into objects.,zooms back on all of them.,pans around them as well as two others.,pans back to see people playing.,gold0-orig,pos,unl,unl,pos,pos,A man is seen acting crazy towards a camera while sitting at a poker table with another man.,The men stick their tongues out at the camera and the camera\nanetv_HzAlvJ1fNWU,13534,There are people at the top of a snowy hill on tube rings. Suddenly the people,start riding down the hill.,are racing and possible completely loses and fall to the ground.,push down another hill.,begin skiing down a hill in india.,,gold0-orig,pos,unl,unl,unl,n/a,There are people at the top of a snowy hill on tube rings.,Suddenly the people\nanetv_HzAlvJ1fNWU,329,Two people are seen riding in tubes down a mountain. Several more people,are shown shortly afterwards riding down.,are shown riding down a river while the camera pans around.,are seen riding down a trail of the tubes.,are seen riding horses on different angles as well as riding down a mountain and then out onto a large fully covered area.,are seen riding down the mountain.,gold1-orig,pos,unl,unl,unl,pos,Two people are seen riding in tubes down a mountain.,Several more people\nanetv_HzAlvJ1fNWU,13535,Suddenly the people start riding down the hill. Now multiple people are shown riding down the hill on the tube rings and they,are all smiling and having a good time as they either ride down alone or connected to other tubers.,seem to pull off a large tube and stop to go in the water.,take their tubes down the slope track.,are constantly riding through snowy hills.,,gold0-orig,pos,unl,pos,pos,n/a,Suddenly the people start riding down the hill.,Now multiple people are shown riding down the hill on the tube rings and they\nanetv_HzAlvJ1fNWU,330,Several more people are shown shortly afterwards riding down. More people,ride on tubes with one looking back at the camera.,are seen riding the unicycle.,take many pushes after another.,ride camels after him.,,gold1-orig,pos,unl,pos,pos,n/a,Several more people are shown shortly afterwards riding down.,More people\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4558,\"An umbrella is whirled aloft by a gale force wind. Around the Quidditch pitch, sodden spectators\",\"stand in the driving rain, cheering their teams.\",\"mill the dealers hands among corpses, heading across the winding streets towards the fountain.\",follow their footprints along the water.,gather as they sing.,,gold0-orig,pos,unl,pos,pos,n/a,An umbrella is whirled aloft by a gale force wind.,\"Around the Quidditch pitch, sodden spectators\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4568,Someone finds himself surrounded by hooded Dementors. He,twists and turns to avoid them.,picks up a green pouch and closes it onto a tube.,\"turns towards someone's hand, then turns to horror.\",spins and flips off into the air.,shoots a spear with another giant.,gold0-orig,pos,unl,unl,unl,unl,Someone finds himself surrounded by hooded Dementors.,He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4565,\"Someone swerves back to follow it. As he reaches out, thick ice\",begins to form on the handle of his broomstick.,pops out of his mouth.,resembling dangles in his mouth.,seeps beside someone's swollen eyes.,and pieces fly off.,gold0-orig,pos,unl,unl,unl,unl,Someone swerves back to follow it.,\"As he reaches out, thick ice\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4563,\"Looming above him, they form the menacing shape of a huge, black dog. He\",hovers for a moment until the golden snitch appears in front of him.,'s used to resemble a halloween doll.,await a movement.,lies underwater in the doorway.,,gold0-orig,unl,unl,unl,unl,n/a,\"Looming above him, they form the menacing shape of a huge, black dog.\",He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4564,He makes a grab for it but it zooms sharply away. Someone,swerves back to follow it.,walks into the holding two bottles.,leaps onto the bridge and the others climb from the submarine.,\"goes to grab it, causing it to empty.\",slides the cable down and hugs his back.,gold0-orig,pos,unl,unl,pos,pos,He makes a grab for it but it zooms sharply away.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4566,\"As he reaches out, thick ice begins to form on the handle of his broomstick. He\",shakes his head as his goggles freeze over.,smashes the seat of the car's roof.,pulls a pole away with his finger.,practices his bags against the wall by the side of the platform.,recognizes all of the bystanders and the crowd of the maize nearby volley the antlers.,gold0-orig,pos,unl,unl,unl,unl,\"As he reaches out, thick ice begins to form on the handle of his broomstick.\",He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4571,Spectators watch in horror as he hurtles towards the ground. Someone,uses a spell to break his fall.,\"straightens, unharmed, and kicks someone with a strike.\",tumbles out from side - by - side and flies at his friend's feet.,stands in the open waters of a ship that reads banks and resort of a crosswalk.,straightens his belt and collapses to his knees.,gold1-orig,pos,unl,unl,unl,pos,Spectators watch in horror as he hurtles towards the ground.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4570,\"Someone loses his grip on the broomstick and falls, helplessly, down through the clouds. Spectators\",watch in horror as he hurtles towards the ground.,\"fall, surrounding himself as rain and the rest of the indian gang come up to battle them.\",\"spins her the wheel and she fires up as bullets rip through the car and into the back entrance, then someone into the abbey\",\", below, someone blocking his attacker's chest in the chest, crumples him and falls again.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone loses his grip on the broomstick and falls, helplessly, down through the clouds.\",Spectators\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4567,He shakes his head as his goggles freeze over. Someone,finds himself surrounded by hooded dementors.,shoots his puck down the head.,looks back at the height.,tumbles out of the pool.,sits on someone's lap.,gold0-orig,pos,unl,unl,pos,pos,He shakes his head as his goggles freeze over.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4569,A Dementor looms over someone and opens its great mouth as if to suck his energy. Someone,\"loses his grip on the broomstick and falls, helplessly, down through the clouds.\",loops to his slytherin shoulders but falls face down.,\"watches the troll, igniting a circular portable fire gas.\",gets out of a helicopter as the mustang rounds closer on trails close.,,gold0-reannot,pos,unl,unl,unl,n/a,A Dementor looms over someone and opens its great mouth as if to suck his energy.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4562,\"Someone peers into the hazy clouds. Looming above him, they\",\"form the menacing shape of a huge, black dog.\",cut into the golden.,\"shadows on someone's parted lips, then turns to someone.\",\"are several inches apart, staring at the sea wreck.\",,gold1-reannot,unl,unl,unl,unl,n/a,Someone peers into the hazy clouds.,\"Looming above him, they\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4560,\"Lightning sets the broomstick of a Gryffindor player on fire. Wearing goggles as protection from the rain, someone\",swoops past the stand where the professors follow the action.,comes up and march them through the treasure.,slides his wrist in a silver blazer pocket and presses it to it across the water.,\"follows, spinning the black attack with his laser and setting it in a smaller blanket.\",draws himself up through an air cloud.,gold1-reannot,pos,unl,unl,unl,pos,Lightning sets the broomstick of a Gryffindor player on fire.,\"Wearing goggles as protection from the rain, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9674,4559,\"Around the Quidditch pitch, sodden spectators stand in the driving rain, cheering their teams. Lightning\",sets the broomstick of a gryffindor player on fire.,walks to his left and lands on a rock.,\"speeds out at the outside of the sign as someone heads off, wielding the launcher.\",\"points out the front rows, and prepping his staff for some people.\",is coolly blowing off its pyre - horns.,gold0-reannot,pos,unl,unl,unl,unl,\"Around the Quidditch pitch, sodden spectators stand in the driving rain, cheering their teams.\",Lightning\nanetv_Flh6nxGkf74,5510,The sculptor is building a large reptile like figure and carving it with tools. He,is being interviewed where he is talking about his skill.,\"takes it, then caresses the tool with his electric brush.\",is being beaten into a barn by a divider nestled inside the foreground.,\"finds a drawing of blue ink entitled, gold - writing.\",starts by pushing the white drill and polishing it as well as pushing it away from it.,gold0-orig,pos,unl,unl,unl,unl,The sculptor is building a large reptile like figure and carving it with tools.,He\nanetv_Flh6nxGkf74,5509,There's a sand sculptor named Brian who is on a beach building animal figures out of sand. The sculptor,is building a large reptile like figure and carving it with tools.,kicks the rock and misses the ball on a sporting sea.,has plastic sheets on him's front feet on the frame as other people gather around him.,changes and turns and walking across the table toward the window.,,gold0-reannot,pos,unl,unl,unl,n/a,There's a sand sculptor named Brian who is on a beach building animal figures out of sand.,The sculptor\nanetv_4aiE_-yQWZE,7808,\"After the mats are rolled out, other individuals begin walking across the floor dressed in fencing uniforms. The athletes then\",begin walking around and talking to each other as a small mascot walks across the mat.,take turns jumping over a bar without squatting for stunts and kicking.,begin wrestling the wrestler along in two more trampoline for the first time of fighting.,begin to do designs throughout the competition.,begin to do a dance routine at the end of a row jumping hundreds of hoops.,gold0-orig,pos,unl,unl,unl,pos,\"After the mats are rolled out, other individuals begin walking across the floor dressed in fencing uniforms.\",The athletes then\nanetv_4aiE_-yQWZE,7810,\"Finally, a match begins and once it is over about five of the individuals pose for a picture. The camera then\",speeds up and shows several teams and people entering and leaving the gym.,hits a man with the people leaning over and watching him dance.,moves to put her hands around her waist and smile.,starts dancing with a lady standing by in the middle of competition.,shows the kids playing the violin continuing speaking.,gold0-orig,pos,unl,unl,unl,pos,\"Finally, a match begins and once it is over about five of the individuals pose for a picture.\",The camera then\nanetv_4aiE_-yQWZE,7809,\"The athletes then begin walking around and talking to each other as a small mascot walks across the mat. Finally, a match begins and once it\",is over about five of the individuals pose for a picture.,'s up and one individual gets on the rope paper swings out in the same direction that are the other direction.,is a short roll between the two of the people who are interviewed.,is finished with the crowd not they play.,\"is being presented, the video ends with the closing captions displayed on the screen.\",gold0-orig,pos,unl,unl,unl,pos,The athletes then begin walking around and talking to each other as a small mascot walks across the mat.,\"Finally, a match begins and once it\"\nanetv_4aiE_-yQWZE,7811,\"The camera then speeds up and shows several teams and people entering and leaving the gym. Next, fencing matches are shown between about 12 pairs of people and they\",line up and give each other a high five before huddling up and having a talk with their coach.,\"plays a game are still on guests, showing how to hit the ball with an energy jump.\",show more runners taking a difficult up from path.,begin to use a small mallet to throw out a goal.,,gold0-orig,pos,unl,unl,unl,n/a,The camera then speeds up and shows several teams and people entering and leaving the gym.,\"Next, fencing matches are shown between about 12 pairs of people and they\"\nanetv_4aiE_-yQWZE,7807,\"Several people are dressed in sweatsuits rolling out mats in a large gym. After the mats are rolled out, other individuals\",begin walking across the floor dressed in fencing uniforms.,walk around and begin to dodge nice.,lift up and look up in their room until the finish.,appear racing pass the man and start going away.,come into the center of the class and shout.,gold0-reannot,pos,unl,unl,unl,pos,Several people are dressed in sweatsuits rolling out mats in a large gym.,\"After the mats are rolled out, other individuals\"\nanetv_ZmoSxXei954,15393,A man is seen standing in a gym holding a racket while the camera pans out to show two men. The men,move around one another in the gym hitting a ball off the wall.,continue dancing around the floor several times and end by speaking to the camera.,continue exercising with one another and end by jumping off and walking around.,are then seen throwing the ball around a room while others watch on the side.,are seen taking turns hitting a ball on the floor.,gold0-orig,pos,unl,unl,unl,pos,A man is seen standing in a gym holding a racket while the camera pans out to show two men.,The men\nanetv_ZmoSxXei954,15394,The men move around one another in the gym hitting a ball off the wall. The two,continue hitting the ball around and walking around to hit it.,continue playing cymbals and singing while laughing to one another.,continue to hit it on the last block.,continue to drum at the same pins and hit with the ball.,continue to play with one another while one of them playing instruments observing.,gold0-reannot,pos,unl,unl,unl,unl,The men move around one another in the gym hitting a ball off the wall.,The two\nanetv_8nj8tlvLyUo,12073,\"A dog jumps in some sand dirt and is so happy about it. There are so many awesome and different things being made out of sand, it\",looks like it takes a lot of time and energy.,comes in a slow motion and the shots of a lacrosse board plays with other people jumping down on the grass behind pictures.,thunders as they rain the bounds.,measures and focuses it very fast.,,gold0-orig,pos,unl,unl,pos,n/a,A dog jumps in some sand dirt and is so happy about it.,\"There are so many awesome and different things being made out of sand, it\"\nanetv_8nj8tlvLyUo,12072,Someone is running on the beach towards so sand castle competitions. A dog,jumps in some sand dirt and is so happy about it.,is standing in the back of the schoolhouse and speaks to the boy in white as the yellow umbrella cover in on him.,enters the hut and talk about it.,is holding babies in her arms.,,gold0-orig,pos,unl,unl,unl,n/a,Someone is running on the beach towards so sand castle competitions.,A dog\nanetv_8nj8tlvLyUo,12074,\"There are so many awesome and different things being made out of sand, it looks like it takes a lot of time and energy. There\",are people walking around and looking at all of them.,is an underwater sport shown where all the stars are seen.,is the words on the screen.,are men who are setting back.,are games of people playing.,gold0-reannot,pos,unl,unl,pos,pos,\"There are so many awesome and different things being made out of sand, it looks like it takes a lot of time and energy.\",There\nanetv_o0d1PXKkJqM,6908,There's a man in a pink shirt and a lady in a white tank top holding bagpipes in her hand. They,are standing in a parking lot near a silver car.,walk engaging in a soccer practice in front of all the players.,are playing a game of volleyball and doing tricks on the curling bars.,continues talking until they begin playing the drums while they continue to play drums together.,hit a yellow ball down the sidewalk.,gold0-orig,pos,unl,unl,unl,unl,There's a man in a pink shirt and a lady in a white tank top holding bagpipes in her hand.,They\nanetv_o0d1PXKkJqM,6910,\"The lady begins playing her bagpipes as the man watches her play. She continues playing and after she's done, the man\",claps for her and gives her a hug.,takes off her saxophone and walks away.,stops playing and continues playing her violin.,lowers the microphone and continues to talk.,stops singing and talks to her.,gold0-orig,pos,unl,unl,pos,pos,The lady begins playing her bagpipes as the man watches her play.,\"She continues playing and after she's done, the man\"\nanetv_o0d1PXKkJqM,6909,They are standing in a parking lot near a silver car. The lady,begins playing her bagpipes as the man watches her play.,is cleaning a car with paint.,puts three lug tires and mom interacting in the woods.,waits at the end of the street and a couple riding camels waiting.,is brushing her buttons on the side of the car.,gold0-reannot,pos,unl,unl,unl,pos,They are standing in a parking lot near a silver car.,The lady\nanetv_8381XS5ZDNs,15813,A piece of exercise equipment spins around on a panel when a woman suddenly appears. She,climbs on the machine and begins exercising while the camera pans around her movements.,begins running the uneven bars in front of her head jumping and spinning while others moves.,climbs up a wall and keeps flipping.,begins demonstrating the tips to move forward and at the end.,is seen clapping and crawling over on the rocks.,gold0-orig,pos,unl,unl,unl,unl,A piece of exercise equipment spins around on a panel when a woman suddenly appears.,She\nanetv_8381XS5ZDNs,15814,She climbs on the machine and begins exercising while the camera pans around her movements. She,continues to use the equipment and eventually shows a picture of the equipment.,does the back side of the bars and the video ends.,continues peeling off the sides of the machine.,continues moving and then switch to her awaiting failing and other others seen.,demonstrates how to do the same again and move on and on.,gold0-orig,pos,unl,unl,unl,pos,She climbs on the machine and begins exercising while the camera pans around her movements.,She\nlsmdc1018_Body_Of_Lies-80221,13644,\"Hordes of people swarm on the street, where traders sell produce from barrows. Someone\",\"walks along the street with someone, who wears a headscarf.\",trains in a dirt hut.,sets over to the cashier's window.,women are on policemen.,steps along him along the sidewalk.,gold0-orig,pos,unl,unl,unl,unl,\"Hordes of people swarm on the street, where traders sell produce from barrows.\",Someone\nlsmdc1018_Body_Of_Lies-80221,13645,\"At a clinic, someone sits in a waiting room with a group of women and children. Some of the women\",look at him curiously and smile.,are eating a ice cream.,sit around a corner reading the dressing room.,\"talk to each other, while someone leads them to the studio to free her.\",rise from the pantry.,gold0-reannot,pos,unl,unl,unl,unl,\"At a clinic, someone sits in a waiting room with a group of women and children.\",Some of the women\nlsmdc3092_ZOOKEEPER-45220,3478,Someone gives him a baffled frown. Someone,mounts his bike then rides away throwing someone a final glance.,folds the paper just as he chugs.,talks to someone's date.,aims a card around covered and steals them from her.,lies on his desk in front of the tv.,gold0-orig,pos,unl,unl,unl,unl,Someone gives him a baffled frown.,Someone\nlsmdc3092_ZOOKEEPER-45220,3477,He pretends to shoot an arrow. Someone,gives him a baffled frown.,continues as the police signal for the match.,turns and throws his aim at the house.,gives him a fishing hook.,goes back to his bow.,gold1-orig,pos,unl,unl,unl,unl,He pretends to shoot an arrow.,Someone\nanetv_YCHmXwLhs3A,11801,He is putting training wheels on the back wheel of the bike. He,puts the front tire on the bike.,puts the two pedals on and begins sliding every time.,shows the inside of a box and shows off the top off the bike.,\"meticulously shows how to get the first bike, and then jumps like the man.\",adjusts the bike a few times and scoots his feet back and forth.,gold0-orig,pos,unl,unl,unl,pos,He is putting training wheels on the back wheel of the bike.,He\nanetv_YCHmXwLhs3A,11804,He puts the pedals onto the bike. He,puts the seat onto the bike.,flips out a chain web.,puts tiles on the shingles.,puts the parts back on the bike.,,gold1-orig,pos,unl,unl,pos,n/a,He puts the pedals onto the bike.,He\nanetv_YCHmXwLhs3A,11802,He puts the front tire on the bike. He,puts the handlebars on the bike.,holds a hose and then markers the snow ahead of his car.,puts his arms in his arms and tries to adjust the handlebars.,jumps off the bike then sets down the hill next to it.,,gold0-orig,pos,unl,unl,unl,n/a,He puts the front tire on the bike.,He\nanetv_YCHmXwLhs3A,11800,A man is assembling a bike on a table. He,is putting training wheels on the back wheel of the bike.,goes using a power pole to make it for him.,puts glue on a fire.,throws it into the lane.,takes a wrench as he watches them play and pauses.,gold0-orig,pos,unl,unl,unl,pos,A man is assembling a bike on a table.,He\nanetv_YCHmXwLhs3A,11803,He puts the handlebars on the bike. He,puts the pedals onto the bike.,gets off the bike and gets out of the lift.,puts powder onto the bicycle to ride over.,removes the tire off of the wheel with a gentle wrench.,begins to take the bike tire.,gold0-orig,pos,unl,unl,pos,pos,He puts the handlebars on the bike.,He\nanetv_DinaQYSgbtg,8427,A toddler washes dishes in a sink while stand on a chair. The boy,\"washes a cup, a sip cup and a dish.\",soaks his right side in a sink.,laughs into a bucket.,walks outside with a toddler.,is shown talking using paper towels.,gold0-orig,pos,unl,unl,pos,pos,A toddler washes dishes in a sink while stand on a chair.,The boy\nanetv_DinaQYSgbtg,10600,He wipes around the sink and continues washing dishes. He,puts the clean dishes next to him.,rinses shaving her head with a soda then rinses a sponge with solution.,pauses and wipes his forehead off and notices a man standing in the tub.,shovels the sandwich in a sink to dry them from the storage bin.,puts his gloves into the iron and gathers up the clothing.,gold1-orig,pos,unl,unl,unl,unl,He wipes around the sink and continues washing dishes.,He\nanetv_DinaQYSgbtg,10599,A small child is seen standing before a sink washing dishes. He,wipes around the sink and continues washing dishes.,is shown of the mountain with the image and the dish that is being washed.,puts the bucket down and puts a rag on the back rack.,takes soap into his hands and lays them into the sink.,scrubs the sink in and then begins cleaning the dishes.,gold1-orig,pos,unl,unl,pos,pos,A small child is seen standing before a sink washing dishes.,He\nanetv_DinaQYSgbtg,8428,\"The boy washes a cup, a sip cup and a dish. After, the boy\",jumps on the chair and then takes the dish again.,put on the oven and adds chopped lime juice into four bread slices.,rinse the dishes with several green spices and drain it.,applies water to calf.,grabs the ice cream - water to put a glass in the toilet.,gold1-orig,unl,unl,unl,unl,unl,\"The boy washes a cup, a sip cup and a dish.\",\"After, the boy\"\nanetv_R6INcHHxlNs,4029,A person is seen shirtless standing in a kitchen and holding a mop. The man,looks back and laughs to the camera while holding the mop.,begins moving the tiles up and down.,grabs the mop and throws it across the room.,continues speaking to the camera and shows how to use the vacuum.,puts plaster on the floor and shows it off to the camera.,gold0-orig,pos,unl,unl,unl,unl,A person is seen shirtless standing in a kitchen and holding a mop.,The man\nanetv_R6INcHHxlNs,4030,The man looks back and laughs to the camera while holding the mop. He,continues to laugh and dance around while pushing the mop around.,cheers while speaking to the camera.,runs over to the water in front of him grabbing a wall and another trying to get on.,continues to swing away from him while others watch and cheer to strum.,continues with the talks while several brushes up and fourth on the pool.,gold0-orig,pos,unl,unl,unl,unl,The man looks back and laughs to the camera while holding the mop.,He\nanetv_yxSBQXuOwuc,18437,A man is then shown wearing scubba gear and giving various hand signals to the camera. The water sounds still play and the man,shows you various moves and what they mean under water.,begins to shoot from his nose.,\"shows us the drums occasionally at the camera and after he begins mowing, but has n't moved along.\",continues to apply a bow on it as the man continues showing.,finishes the elliptical by takes off using it followed more later.,gold0-orig,pos,unl,unl,unl,unl,A man is then shown wearing scubba gear and giving various hand signals to the camera.,The water sounds still play and the man\nanetv_Fde_qSwXRzY,9556,Two boy scouts are seen standing and speaking to a large group of people and attempting to light a match. One,cups his hands and creates a flame using oxygen and puts the flame into a pit.,are then seen walking out in frame and leading prepare to leave.,captures result of still shots of the person playing in a field.,begins to hit the ball around as woman captures the movements.,continues to watch the match in his hands as he also walks away.,gold0-orig,pos,unl,unl,unl,pos,Two boy scouts are seen standing and speaking to a large group of people and attempting to light a match.,One\nanetv_mc-1msYF8Xo,1584,Various shots of plated food are shown followed by a sandwich sitting on a table and a woman holding up pans. The woman then,puts ingredients onto sandwich bread and mixes the two together and takes multiple bites.,pours several ingredients into the bucket by pouring shots into a bowl filled with ingredients.,mixes some ingredients into a bowl and then cuts up lemons and limes while measuring some ingredients.,covers the paper with the finished product and sets it in the oven.,places all the ingredients on the counter and talks for the camera to play.,gold0-orig,pos,unl,unl,unl,pos,Various shots of plated food are shown followed by a sandwich sitting on a table and a woman holding up pans.,The woman then\nanetv_P8M00PRbI3c,8504,A female news reporter is talking in a news room. We,see several people riding on horses as a crowd watches.,are playing a game of beach soccer.,are gathered on the video screen.,are play fencing together in a studio.,are playing volleyball in a gym.,gold0-orig,pos,unl,unl,unl,unl,A female news reporter is talking in a news room.,We\nanetv_P8M00PRbI3c,8506,\"The people are hitting bags with sticks as they ride. The people are then interviewed about the game, and a man\",is shown shooting arrows.,is seen standingin the vehicle in his time.,holds an umbrella to help them in one end.,rides her horse right out.,is standing how to make a whistle.,gold1-reannot,pos,unl,unl,unl,unl,The people are hitting bags with sticks as they ride.,\"The people are then interviewed about the game, and a man\"\nanetv_hhN1647pP88,13062,He is working with tools and sand. He,uses the sand to spread evenly against the walls.,\"is momentarily on by the object, after he sits with the machine and keeps going.\",shows off a shoe.,is walking in a rest public business of.,,gold0-orig,pos,unl,unl,unl,n/a,He is working with tools and sand.,He\nanetv_hhN1647pP88,13061,A man is wearing a safety vest. He,is working with tools and sand.,catches a fish on a mountain.,is demonstrating a suit as he talks.,\"talks about it, kind of soldering.\",,gold0-orig,pos,unl,unl,pos,n/a,A man is wearing a safety vest.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60290,5633,Someone catches sight of something; he turns to someone with shock in his eyes. Someone,snatches up two rusty dwarf axes and leaps onto the tomb.,\"headbutts someone that protrude in the hole, then manages to shovel the grass.\",'s tight down the stairs.,\"is rolling, hushed determination, not afraid to go.\",,gold1-orig,unl,unl,unl,unl,n/a,Someone catches sight of something; he turns to someone with shock in his eyes.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60290,5632,People slam and wedge the doors. Someone catches sight of something; he,turns to someone with shock in his eyes.,leaps up after him.,\"disappears and faces her, then looks away.\",opens the double locks.,grabs the limp body of sister someone as he picks her up a little.,gold0-orig,pos,unl,unl,unl,unl,People slam and wedge the doors.,Someone catches sight of something; he\nanetv__n0cR3Oshxg,1825,\"Then, the woman make dough balls and putsion a baking pan, also a teen makes dough balls and puts in baking pan. After, the man\",put the cookies in the oven.,adds tomatoes and feeds them up on top.,serves the cookies and bread and puts in an oven to make a serve on chicken.,cuts mustard and puts the cookie in a bin several blocks.,shows cookies to the stove with water draining the cookies.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the woman make dough balls and putsion a baking pan, also a teen makes dough balls and puts in baking pan.\",\"After, the man\"\nanetv_G4tUTpJV-so,14718,An asian woman is seen kneeling on the floor. She,\"rises very slowly, arms first.\",jumps down and poses by the beam while laughing into the audience.,pulls a large weight down from her waist.,shows various ingredients and supplies.,,gold1-orig,pos,unl,unl,pos,n/a,An asian woman is seen kneeling on the floor.,She\nanetv_G4tUTpJV-so,14719,\"She rises very slowly, arms first. She\",does several martial arts moves for the camera.,beams as she follows herself out.,\"retreats, then hesitates, and raises her bottle, then shakes it.\",looks at her and holds on her entire trust.,looks up in horror.,gold0-reannot,pos,unl,unl,unl,pos,\"She rises very slowly, arms first.\",She\nanetv_APlxSpTZVPI,12852,Several clips are shown of people performing impressive flips and tricks along a beach while other break dancers watch on the side. The men,continue to take turns with one another performing tricks and later include poles and hoops to jump through.,continues past by one after the other away then laughing.,walk to the finished jump successfully moving his arms up and down while still speaking to the camera.,continue to play around with the camera helping one another.,begin dancing to one another while performing martial arts moves.,gold0-orig,pos,unl,unl,pos,pos,Several clips are shown of people performing impressive flips and tricks along a beach while other break dancers watch on the side.,The men\nanetv_APlxSpTZVPI,9994,A man wearing white pants plays an instrument. A man,wearing blue pants plays and instrument.,points to his young dog.,holds a string ball to his chest.,picks his piano up by himself.,walks through front of his gym holding a guitar.,gold1-orig,pos,unl,unl,pos,pos,A man wearing white pants plays an instrument.,A man\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2048,\"75, 000 orcs are spread out across the pelennor fields like a sea of black ants. Trolls\",load the catapults with rocks.,chases a girl through a cart.,likely going around in a series of fast momentum to acknowledge the composer.,grabs a rifle and crashes toward them.,,gold0-orig,pos,unl,unl,unl,n/a,\"75, 000 orcs are spread out across the pelennor fields like a sea of black ants.\",Trolls\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2045,Horror sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers. Someone,looks down at someone's unconscious body.,\"treads forward, leaving the vehicles vanish.\",yells at the fight expo in the back - rise high high.,sees them with guns drawn by an ax.,catches him in an embrace.,gold0-orig,pos,unl,unl,unl,unl,Horror sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2046,Someone looks down at someone's unconscious body. Someone,has run to someone and bends towards him.,clutch his hand to his throat and starts to drag him away.,dashes out of the hospital barn.,takes a step towards the others.,freezes and someone see her back to her.,gold0-orig,pos,unl,unl,pos,pos,Someone looks down at someone's unconscious body.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2054,A boulder smashes into a balcony full of civilians. Someone's staff,smashes into the back of someone's head!,are tracking around him toward the jeep.,arrive inside a pressure gauge.,stand on the tracks along the track between someone and someone.,\"rise over a table, perched with a solitary gray gray haired youth.\",gold0-orig,pos,unl,unl,unl,unl,A boulder smashes into a balcony full of civilians.,Someone's staff\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2043,Someone turns to his lieutenants. The orc catapults,do not fire rocks.,are carried from their loom directly above them.,quickly vanish from dust.,to sling covered tunnels.,wildly around the sky leaving someone above.,gold0-orig,pos,unl,unl,unl,unl,Someone turns to his lieutenants.,The orc catapults\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2050,Battering rams and siege towers are hauled on chains. Thousands of flickering torches,give the army the look of a moving city in the murky mordor twilight.,burn on the distant track where the burning route blows down.,\"surround a mountain flying across clear sky, dimly lit by the ash cloud filling the air.\",reflected in the sky flick fires and blocking the spectators.,,gold0-orig,pos,unl,unl,unl,n/a,Battering rams and siege towers are hauled on chains.,Thousands of flickering torches\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2053,Boulders hurtle from catapults across the fields towards minas tirith. A boulder,smashes into a balcony full of civilians.,hides him as the train rings nearby.,rakes around waterfall with protesters watches.,taps the top of a motorcade's white head.,,gold0-orig,pos,unl,unl,unl,n/a,Boulders hurtle from catapults across the fields towards minas tirith.,A boulder\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2049,Trolls load the catapults with rocks. Battering rams and siege towers,are hauled on chains.,appear with packaged freebies in the mothership.,are sprinkled over the wheelman.,rise on someone 'deck.,include them building ancient stones.,gold1-orig,pos,unl,unl,unl,unl,Trolls load the catapults with rocks.,Battering rams and siege towers\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2051,Thousands of flickering torches give the army the look of a moving city in the murky mordor twilight. A huge boulder,smashes into the wall of minas.,begin to emerge from the forest.,crashes into the canyon as it waves to one another.,crashes across the ground.,etched across the stands outside the ships headquarters.,gold0-orig,pos,unl,unl,unl,unl,Thousands of flickering torches give the army the look of a moving city in the murky mordor twilight.,A huge boulder\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2041,Both the horse and someone are impaled with orc arrows. Iorlas and other soldiers,arrive at the citadel with someone's unconscious body on a stretcher.,is getting wild beneath a fire attacks with flaming torches.,\"unable too free themselves, revealing an army of people sitting on the ground.\",do hiding along a roof of ruined yang.,do not rush up immediately for another signal.,gold1-orig,pos,unl,unl,pos,pos,Both the horse and someone are impaled with orc arrows.,Iorlas and other soldiers\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2055,Someone gallops down the winding labyrinthine streets on shadowfax against the flow of fleeing soldiers. Shadowfax,bounds up stairs onto the level one battlements.,\"attacks his son, who swipes at a bit.\",\"jumps, horns out through the gates of the school and takes to a priest.\",wave as someone aims the animal satisfied.,\"stare at each other, helpless uncomfortable.\",gold0-orig,pos,unl,unl,unl,unl,Someone gallops down the winding labyrinthine streets on shadowfax against the flow of fleeing soldiers.,Shadowfax\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2047,\"Someone has reached the edge of the courtyard. 75, 000 orcs\",are spread out across the pelennor fields like a sea of black ants.,are smashing the pucks and racing along the costumed racks.,are in a bowling graveled plank's glass tower!,soldiers out through the stands street among piles of commendatore.,wait by their trolley as craning up to a wall to minas tirith.,gold1-orig,pos,pos,pos,pos,pos,Someone has reached the edge of the courtyard.,\"75, 000 orcs\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2044,The orc catapults do not fire rocks. Horror,sweeps through the streets of minas tirith as the severed heads of someone's horsemen land amongst the soldiers.,\"come to the crypt, and see someone flying from the sky again.\",fly flying out of the opening.,vanish and escape ways ahead of their classmates.,,gold0-orig,pos,unl,unl,unl,n/a,The orc catapults do not fire rocks.,Horror\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2040,A guard yells down from the parapet above the huge. Both the horse and someone,are impaled with orc arrows.,hurry through the front door of the bath.,run out of their positions.,\"run off, then plummet together.\",,gold0-orig,pos,unl,pos,pos,n/a,A guard yells down from the parapet above the huge.,Both the horse and someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2052,A huge boulder smashes into the wall of minas. Boulders,hurtle from catapults across the fields towards minas tirith.,is hit onto the body.,race around the street one more time for the meeting.,strikes the dead guard holding a broomstick.,,gold0-orig,pos,unl,unl,pos,n/a,A huge boulder smashes into the wall of minas.,Boulders\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2057,Mighty wooden catapults positioned within the walls of minas tirith are fired. catapults,\"send their great rocks high into the air, over the battlements!\",show buildings and buildings which run into the forest.,\"are sucked around the factory, knocking someone off his feet.\",are heard running towards the gigantic men.,,gold0-orig,pos,unl,unl,unl,n/a,Mighty wooden catapults positioned within the walls of minas tirith are fired.,catapults\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2058,The orc front ranks are in disarray. Someone,walks the battlements as the huge boulders rain onto the orc army below.,grabs a hidden phone.,gathers their belongings up a display filled of accordion rifles.,crashes one more time to his other flag.,\"is suddenly old, wearing a long g and quiet coat.\",gold0-reannot,pos,unl,unl,unl,unl,The orc front ranks are in disarray.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2042,Someone emerges from the tower hall towards his son. Someone,bends to the stretcher bearing his son.,nudges the wood against his.,passes the televisions toward someone as he leads hector up the dance floor.,\"spies someone at someone's feet and arms, like the two guards.\",stands a news report.,gold1-reannot,pos,unl,unl,unl,unl,Someone emerges from the tower hall towards his son.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61110,2056,Shadowfax bounds up stairs onto the level one battlements. Someone,\"looks at the approaching orc army, now less than 50 yards from the walls of the city.\",spots a stone cross which recovers.,has himself up ready amongst the thickly painted gray with columns.,walks to a vast red ledge.,launches backwards and heaves someone onto the floor.,gold0-reannot,pos,unl,unl,pos,pos,Shadowfax bounds up stairs onto the level one battlements.,Someone\nlsmdc0029_The_Graduate-64423,10188,She goes to the door. She,opens the door and steps into the hall.,steps out of the window and looks down.,walks through the office and where she is sorting clothes on the floor.,takes a step back and moves for the door.,enters his room and returns.,gold0-orig,pos,unl,unl,unl,pos,She goes to the door.,She\nlsmdc0029_The_Graduate-64423,10189,She opens the door and steps into the hall. He,goes to the door.,stares at the bag anxiously as she searches through the console.,\"cut dry clothes casually, almost imperceptibly to the camera.\",crosses to the bag and grabs his hand.,steps in and closes the door behind her.,gold1-orig,pos,unl,unl,unl,pos,She opens the door and steps into the hall.,He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83807,12966,Someone heads towards the house. She,\"pauses for a moment, lost in thought.\",pauses at the driver's door.,enters a retirement table with a flag draped over her shoulder.,\"pauses, lets her go.\",slams the door.,gold0-orig,pos,unl,unl,unl,pos,Someone heads towards the house.,She\nanetv_fTGtoTlJyh0,16606,A person is spray painting bars that are taped together different colors. They,put a sticker of words onto the bars.,are seen with shiny clothes down a box.,are painting it with various toys.,are hammering down tiles on a roof.,,gold0-reannot,pos,unl,unl,unl,n/a,A person is spray painting bars that are taped together different colors.,They\nanetv_iFA1XhZ6VM8,1255,\"The ingredients for a chocolate cake is displayed, then a person puts flour oil, eggs, milk in a bowl. Then, the person\",mix all the ingredients and adds chocolate and mix it again.,adds the mixture to the white to make lemonade and display the chocolate.,\"adds the eggs, after layers with vanilla, milk and flowers and parsley on the top.\",applies the dough and put it on the table while talk about mixing it.,mixes a spoon and creates a cake in front of the white table.,gold0-orig,pos,unl,unl,unl,unl,\"The ingredients for a chocolate cake is displayed, then a person puts flour oil, eggs, milk in a bowl.\",\"Then, the person\"\nanetv_iFA1XhZ6VM8,12853,\"Then, the person mix the ingredients, and then adds chocolate and mix. After, the person\",\"put the cake mix in a baking pan, then bake in an oven.\",\"add a different mix, after happy and mix everything together.\",gives the juice and that the mix is sitting in a bowl and drum!,\"adds something to a spoon, mix then pastries and oranges, tomatoes, and water, and puts them in the oven.\",pour the mixture into a juicer and the mix drain to finish the floor.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the person mix the ingredients, and then adds chocolate and mix.\",\"After, the person\"\nanetv_iFA1XhZ6VM8,1257,\"After, the person adds the mix in a baking pan which puts in a rice cooker for 30 min. Next, the person\",take out the cake and put on a plate.,empties the dough into the pot and adds liquids and colors to the pan laying on the eggs.,\"decorates the lemon to mix them in a split, then watch them in front of the oven like four.\",adds a blue pot and puts the oven on the oven.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the person adds the mix in a baking pan which puts in a rice cooker for 30 min.\",\"Next, the person\"\nanetv_iFA1XhZ6VM8,12852,\"A person puts flower, sugar, water and two eggs in a bowl. Then, the person\",\"mix the ingredients, and then adds chocolate and mix.\",puts chicken in the tea bowl in a pail.,pours ingredients into a cup and mixes the juice.,\"adds baking steeping water, flour and sugar on the water.\",mixes together layers and put it on a pan with each other.,gold0-orig,pos,unl,unl,unl,pos,\"A person puts flower, sugar, water and two eggs in a bowl.\",\"Then, the person\"\nanetv_iFA1XhZ6VM8,1256,\"Then, the person mix all the ingredients and adds chocolate and mix it again. After, the person\",adds the mix in a baking pan which puts in a rice cooker for 30 min.,\"blend a batch of colors on the board, adding the served tap in boiled, water and the baked one.\",\"adds cheese and sugar, and vanilla.\",serves the mixture and wash it.,puts the ingredients in the pot and drink homemade.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the person mix all the ingredients and adds chocolate and mix it again.\",\"After, the person\"\nanetv_jsqD1NB63hk,14814,A young man is seen wearing goggles and speaking to the camera followed by him jumping into the pool. The boy,gets out and is seen once again jumping into the pool and swimming to the side to present an object.,continues jumping around on the board while standing back on about his board swimming by the camera.,continues to swim as well as a toddler surfing with his arm around him.,rocks back and fourth while the camera pans around the end and people bowling in slow motion.,,gold0-reannot,pos,unl,unl,unl,n/a,A young man is seen wearing goggles and speaking to the camera followed by him jumping into the pool.,The boy\nlsmdc1010_TITANIC-77454,20021,\"People step out of the sitting room and stop a dark - haired steward in the hallway. On the upper deck, a dark - haired man\",tosses a blond man a chunk of ice.,sits under a coffin.,grabbed a pistol from under a man's helmet.,pulls up in front of a villa.,,gold1-orig,pos,unl,unl,unl,n/a,People step out of the sitting room and stop a dark - haired steward in the hallway.,\"On the upper deck, a dark - haired man\"\nlsmdc1010_TITANIC-77454,20016,Someone turns to the bridge door as someone enters. Someone,follows someone onto the bridge deck.,closes another mantle floor.,puts her books back to her seat.,enters and takes a remote.,watches her with wide eyes.,gold0-orig,pos,unl,unl,unl,pos,Someone turns to the bridge door as someone enters.,Someone\nlsmdc1010_TITANIC-77454,19984,\"He snaps his fingers and points to the car, then yanks open the car door, revealing empty seats. Smiling, people\",run onto the forward well deck.,run through the cars.,walk into the room and use the hats and straw to cover their face with their hands.,walk behind him as she heads towards the park camera.,,gold1-orig,pos,unl,unl,unl,n/a,\"He snaps his fingers and points to the car, then yanks open the car door, revealing empty seats.\",\"Smiling, people\"\nlsmdc1010_TITANIC-77454,19987,\"Watching from the crow's nest, another man, Fleet, looks down and taps his comrade, someone, on the arm. They\",stare down at people.,dance down the street leading to a bushes.,\"duo checks their class, then makes a single shot.\",are wearing oxygen under protective caps.,,gold0-orig,pos,unl,unl,unl,n/a,\"Watching from the crow's nest, another man, Fleet, looks down and taps his comrade, someone, on the arm.\",They\nlsmdc1010_TITANIC-77454,20000,\"People stop kissing as the ship trembles. On the bridge deck, someone\",\"glances down at his hands, resting on the shaking rail.\",hurries toward the jet.,glances around wildly as someone searches through the mug filled with grass.,retreats above the ship as the sniper climbs from the lifeboat.,,gold0-orig,pos,unl,unl,pos,n/a,People stop kissing as the ship trembles.,\"On the bridge deck, someone\"\nlsmdc1010_TITANIC-77454,20009,The ship continues moving alongside the iceberg. Someone,\"runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room.\",gazes up from a mushroom clouds surrounding the ship.,finds someone holding a minister.,crawls past someone around the corner.,applies the goggles and masks all as someone tumbles in.,gold0-orig,pos,unl,unl,unl,unl,The ship continues moving alongside the iceberg.,Someone\nlsmdc1010_TITANIC-77454,20011,He follows the others thrugh one of the door ways. The door,\"closes, leaving several stokers behind.\",\"is opened and biscuits and slowly, quicker, the package, all clipped to wounded it.\",is left open through the back door.,\"opens, stop the door and pull it shut.\",opens and several children run around the room.,gold0-orig,pos,unl,unl,unl,pos,He follows the others thrugh one of the door ways.,The door\nlsmdc1010_TITANIC-77454,19998,\"In the crow's nest, the men stare at the iceberg as the ship heads straight toward it. Someone\",stares at the iceberg.,climbs into the lifeboat beside him.,\"strides after the fellowship, then dashes toward the tower.\",swirls a dolly around someone's shoulders and pulls him over the edge.,crosses to the bridge and a drags brace slips on a canvas.,gold0-orig,pos,unl,unl,unl,unl,\"In the crow's nest, the men stare at the iceberg as the ship heads straight toward it.\",Someone\nlsmdc1010_TITANIC-77454,20012,\"The door closes, leaving several stokers behind. As the others escape past closing doors, the remaining stoker\",dives under the last closing door and falls out as its steel hatch slams shut.,\"gather at a pump, with rows of soldiers and debris.\",finds themselves on the back of an suv four - supported by someone.,reaches the edge of the second floor.,\"rush onto someone, who emerges from view with a smile.\",gold0-orig,pos,unl,unl,unl,pos,\"The door closes, leaving several stokers behind.\",\"As the others escape past closing doors, the remaining stoker\"\nlsmdc1010_TITANIC-77454,20002,\"Above, Fleet holds onto the rim of the crow's nest, while someone sits on the floor. In the bridge, someone\",keeps the wheel turned hard left.,'s friends stare broadly.,lifts off the grappling pirate feet towards the inspectors' door.,leaps into the harbor.,passes a note and writes.,gold1-orig,pos,unl,unl,unl,unl,\"Above, Fleet holds onto the rim of the crow's nest, while someone sits on the floor.\",\"In the bridge, someone\"\nlsmdc1010_TITANIC-77454,19997,\"The propellers spin in the opposite direction. In the crow's nest, the men\",stare at the iceberg as the ship heads straight toward it.,hug their comrade and rip together.,are swept over foot.,ride buckets down the boat.,fall for the.,gold0-orig,pos,unl,unl,unl,unl,The propellers spin in the opposite direction.,\"In the crow's nest, the men\"\nlsmdc1010_TITANIC-77454,20003,\"In the bridge, someone keeps the wheel turned hard left. Below deck, someone\",sits up in his bunk.,wanders to one of two railway huts located in a grassy field.,surfaces his rifle's four florescent lights.,\"sits on the passenger seat, watching as he guides his gaze onto a glamorous hmong younger guy.\",gazes across the empty ruins of a announcers stand.,gold0-orig,pos,unl,unl,unl,unl,\"In the bridge, someone keeps the wheel turned hard left.\",\"Below deck, someone\"\nlsmdc1010_TITANIC-77454,19985,\"Smiling, people run onto the forward well deck. Someone\",places her hand on someone's lips and gazes at him.,drinks a sip of tea.,returns in forth cutting.,joyfully hovers her fists on a half - marked vessel.,looks in at the windows.,gold0-orig,pos,unl,unl,unl,unl,\"Smiling, people run onto the forward well deck.\",Someone\nlsmdc1010_TITANIC-77454,19976,\"Someone, with his collar up, peers over the railing outside the wheelhouse. In the backseat of the car, someone\",\"slaps her hand against the back window, then slowly slides it downward.\",gets the lighter aside and follows the advice back along some rectangular beds wall beside a secret grave.,clutches her wrist as she grasps the chain on its attached.,watches a tiny jet flying through the sky.,pours down his nearer.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, with his collar up, peers over the railing outside the wheelhouse.\",\"In the backseat of the car, someone\"\nlsmdc1010_TITANIC-77454,19999,\"At the bow railing, a man runs toward it. People\",stop kissing as the ship trembles.,peer toward the rear view mirror.,marched off and in his transport an iv body.,\"watches someone in the boat, his unconscious face splattered with sweat.\",,gold0-orig,pos,unl,unl,pos,n/a,\"At the bow railing, a man runs toward it.\",People\nlsmdc1010_TITANIC-77454,19992,Someone steps onto the bridge and answers the phone. Someone,hangs up and turns to someone as he runs to the bridge door.,falls in a spiral of smoke.,indicates her name and total.,drops from the back door and starts up the stairs.,,gold0-orig,pos,unl,unl,unl,n/a,Someone steps onto the bridge and answers the phone.,Someone\nlsmdc1010_TITANIC-77454,20018,\"In his cabin, someone jumps down from his bunk into inch - deep water and turns on the overhead light. His roommates\",follow as he opens the door.,sweep over the sketch as someone leans closer.,disappear from a doorway.,follow the outline of the square.,sit on a puddle between many of the frames.,gold1-orig,pos,unl,unl,unl,unl,\"In his cabin, someone jumps down from his bunk into inch - deep water and turns on the overhead light.\",His roommates\nlsmdc1010_TITANIC-77454,20014,\"In the crow's nest, Fleet turns to someone. People and the two men\",\"peer over the railing at the iceberg, now behind the ship.\",stand erect with a man who's lost in a grave.,\"lean down upon someone, who is writhing in shallow rocks.\",hurry down a passageway.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the crow's nest, Fleet turns to someone.\",People and the two men\nlsmdc1010_TITANIC-77454,20022,\"On the upper deck, a dark - haired man tosses a blond man a chunk of ice. He\",tosses the ice back.,passes in the opposite direction of the sea.,lifts handfuls of other weapons and shoving it into his mitt.,lifts him up in front of someone and flings them onto a ledge.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the upper deck, a dark - haired man tosses a blond man a chunk of ice.\",He\nlsmdc1010_TITANIC-77454,20020,People and others follow running rats down a hallway. People,step out of the sitting room and stop a dark - haired steward in the hallway.,start dancing around to catch the gum.,are gathered on one of the balconies leading to the train leading them.,hold up some bombs.,run along the corridor corridor.,gold1-orig,pos,unl,unl,unl,unl,People and others follow running rats down a hallway.,People\nlsmdc1010_TITANIC-77454,19991,\"Fleet rings the lookout bell three times and grabs a telephone, which rings on the bridge. Someone\",steps onto the bridge and answers the phone.,gets up and leaves the stage.,falls into a kneeling position with his rear and drops his head.,leaves the un - packing room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Fleet rings the lookout bell three times and grabs a telephone, which rings on the bridge.\",Someone\nlsmdc1010_TITANIC-77454,19993,Someone hangs up and turns to someone as he runs to the bridge door. Quartermaster someone,turns the wheel to the left.,leans his head against his shoulder.,is pulling preventing of someone's ring.,\"waits as he walks to the curb, where someone is in a conference room shirt.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone hangs up and turns to someone as he runs to the bridge door.,Quartermaster someone\nlsmdc1010_TITANIC-77454,19979,\"Someone strokes someone's hair, then kisses his forehead. He\",lays his head on her chest.,\"glances at the grains, then kneels.\",rests his chin on his shoulder.,raises his head and walks off.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone strokes someone's hair, then kisses his forehead.\",He\nlsmdc1010_TITANIC-77454,20004,\"Below deck, someone sits up in his bunk. In the cabin, someone\",sits at his desk.,throws it up at someone.,wakes his stupid black plastic blanket propped up by his chin.,lies on the floor beside someone and licks his lips.,,gold1-orig,pos,unl,unl,pos,n/a,\"Below deck, someone sits up in his bunk.\",\"In the cabin, someone\"\nlsmdc1010_TITANIC-77454,19980,\"Someone's forehead tenses as he closes, then opens his eyes. He\",glances at the note again.,finds his love heart.,looks past them to others.,finds himself gasping for a period of time.,takes a relieved breath.,gold1-orig,pos,unl,unl,pos,pos,\"Someone's forehead tenses as he closes, then opens his eyes.\",He\nlsmdc1010_TITANIC-77454,19982,\"In the hold, the two stewards creep toward the car. One steward\",shines his flashlight in the car's steamed - up windows.,arrives with a jacket.,stops and two people are herded into the mercedes.,follows the truck through the front gate.,follows the thug to the brake levers.,gold0-orig,pos,unl,unl,unl,unl,\"In the hold, the two stewards creep toward the car.\",One steward\nlsmdc1010_TITANIC-77454,19989,The men turn and gaze past the ship. Their eyes,\"widen as a large iceberg looms, straight ahead.\",peer from a collection of museum - shaped photos.,fall to a train below as someone frantically alight with someone and the animal.,\"travel over the exposed soldiers, under a picturesque black and white jacket on the side - belts.\",meet the words and fills spacious room.,gold0-orig,pos,unl,unl,unl,unl,The men turn and gaze past the ship.,Their eyes\nlsmdc1010_TITANIC-77454,19977,\"In the backseat of the car, someone slaps her hand against the back window, then slowly slides it downward. Naked and his face dripping with sweat, someone\",lies on top of someone.,lowers his shotgun then glances at the car's stone wall.,shakes several purposefully.,reaches the edge of the dressing corridor and crouches down.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the backseat of the car, someone slaps her hand against the back window, then slowly slides it downward.\",\"Naked and his face dripping with sweat, someone\"\nlsmdc1010_TITANIC-77454,19996,\"Underwater, the ship's main propeller slows. An engineer\",pulls down a thick lever.,stands leaning against an energy bar.,rays glow in the dust sky above and inside.,cautiously approaches the cabin panel.,step onto a long corridor in the back of a black tank.,gold1-orig,pos,unl,unl,pos,pos,\"Underwater, the ship's main propeller slows.\",An engineer\nlsmdc1010_TITANIC-77454,20008,\"In the front well deck, someone pushes rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men. The ship\",continues moving alongside the iceberg.,fires as a crewman waving hands from an oar.,\"slows onto a rocky blade, one lodged under the top of a large chandelier.\",'s ropes fly high in the air.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the front well deck, someone pushes rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men.\",The ship\nlsmdc1010_TITANIC-77454,20013,\"On the bridge, a row of lights blinks on the watertight door indicator panel. Someone\",\"stares at the panel, then turns away.\",\"continues to walk away, as the headmistress stands against the side.\",\"launches the electric engines, but the storm stays on a crest.\",\"opens the gates, gazing out into goblin nightclub.\",puts one arm around his own fist.,gold0-orig,pos,unl,unl,unl,unl,\"On the bridge, a row of lights blinks on the watertight door indicator panel.\",Someone\nlsmdc1010_TITANIC-77454,19983,One steward shines his flashlight in the car's steamed - up windows. He,\"snaps his fingers and points to the car, then yanks open the car door, revealing empty seats.\",\"notices a los angeles sign that reads, occasionally x - rays.\",takes the cigarette out of his pocket and goes off in the same direction.,takes out the gps and reads it.,studies his reflection in a mirror.,gold0-orig,pos,unl,unl,unl,unl,One steward shines his flashlight in the car's steamed - up windows.,He\nlsmdc1010_TITANIC-77454,19994,Someone rushes over to the engine room telegraph and shifts the handle to full speed astern. Someone,turns the wheel quickly.,\"taps one of his headlamps, then runs someone.\",shows someone's shot in his kill.,enters someone munching a chicken.,stops at the wreckage and looks up to someone as someone walks aboard.,gold0-orig,pos,unl,unl,unl,unl,Someone rushes over to the engine room telegraph and shifts the handle to full speed astern.,Someone\nlsmdc1010_TITANIC-77454,19988,They stare down at people. The men,turn and gaze past the ship.,crash into each other's eyes.,look on as the helmsman nears the front door.,climb to the annual.,look over at the tiny man with the mask of a sadistic grin on his face and replaces his weight.,gold1-reannot,pos,unl,unl,unl,unl,They stare down at people.,The men\nlsmdc1010_TITANIC-77454,19990,\"Their eyes widen as a large iceberg looms, straight ahead. Fleet\",\"rings the lookout bell three times and grabs a telephone, which rings on the bridge.\",flares into view and grows in a weird motion without being dragged on.,\"underwater, someone sinks deeper then swoop out over the elaborate oval ring.\",unrolls a section of its line and now quickly rolls back upwards.,\"de someone flips it, smiles confidently, takes his hands from his army.\",gold1-reannot,pos,unl,unl,unl,unl,\"Their eyes widen as a large iceberg looms, straight ahead.\",Fleet\nlsmdc1010_TITANIC-77454,20015,\"On the bridge, someone addresses someone. Someone\",turns to the bridge door as someone enters.,manages to grab the fur or presses it upwards.,plays to the drums.,fires out one of the chopper's jet doors and disappears.,gives the thugs a kiss.,gold0-reannot,pos,unl,unl,unl,unl,\"On the bridge, someone addresses someone.\",Someone\nlsmdc1010_TITANIC-77454,20007,\"On the bridge, someone turns the wheel to the right. In the front well deck, someone pushes\",\"rose back as the ship breaks off chunks of ice, which land on the deck and knock down two men.\",the leader toward the suv with his rifle on it.,open the doors of the pirate boat with a rope handles steady clasps its former preserver.,a steer towards the building.,,gold0-reannot,pos,unl,unl,unl,n/a,\"On the bridge, someone turns the wheel to the right.\",\"In the front well deck, someone pushes\"\nlsmdc1010_TITANIC-77454,19978,\"Naked and his face dripping with sweat, someone lies on top of someone. He\",breathes heavily as they gaze at each other.,\"walks towards him, placing his head away from her hand.\",\"on someone's still body, he looks down her body, then slips into the capsule.\",\"inside, he lays both of her head and kisses her in the face.\",\"lowers his wand, where a handsome giant scrambles to his feet, then drops his head dividing the sunken spotless floor.\",gold1-reannot,pos,unl,unl,unl,unl,\"Naked and his face dripping with sweat, someone lies on top of someone.\",He\nlsmdc1010_TITANIC-77454,20010,\"Someone runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room. Workers\",run through the rising water and crawl under the lowering doors.,enter a panel on the festooned wall.,and the men strut away from the top of the platform.,gaze at the departing guests.,kneels down and flicks everything up in the air.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone runs to the bridge and moves a lever, which closes the hydraulic watertight doors in the engine room.\",Workers\nlsmdc1010_TITANIC-77454,20006,\"He glances up at the trembling crystal chandelier above. On the bridge, someone\",turns the wheel to the right.,hurries slowly down the path of a tunnel with a stone.,drops her gaze to her desk.,hangs out a drawer and looks about frantically.,,gold1-reannot,pos,unl,unl,unl,n/a,He glances up at the trembling crystal chandelier above.,\"On the bridge, someone\"\nlsmdc1010_TITANIC-77454,20017,Someone follows someone onto the bridge deck. Someone,\"peers down from the bridge deck shelter, then stands at the bridge railing, overlooking the front well deck.\",steps down the gate.,shifts to the ceiling as he nears the courtroom.,continues their flashlights on land.,\"someone joins someone, they walk out of the chopper.\",gold0-reannot,pos,unl,unl,unl,unl,Someone follows someone onto the bridge deck.,Someone\nlsmdc1010_TITANIC-77454,19981,\"He glances at the note again. In the hold, the two stewards\",creep toward the car.,sit in the same cockpit.,zip around the parlor.,pull someone up to his mail package.,stand among the rows of mail cubicles.,gold0-reannot,pos,unl,unl,unl,unl,He glances at the note again.,\"In the hold, the two stewards\"\nlsmdc1009_Spider-Man3-76244,8487,Someone in his someone suit gives her a little smile before putting on his head mask and leaping out of the window. Someone,\"stands up, gathers her bag, scarf, and newspaper, and goes for the door.\",straightens as they reach the end of the office entryway.,close crest of liquid spreads over his wife's face.,\"watches the flames, doing hand gestures with his hand.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone in his someone suit gives her a little smile before putting on his head mask and leaping out of the window.,Someone\nlsmdc1009_Spider-Man3-76244,8488,\"Someone stands up, gathers her bag, scarf, and newspaper, and goes for the door. She leaves the apartment and the slimy, black mass\",drops to the floor.,is animates on the frame by the old cafeteria floor.,runs through the recessed entrance.,is reflected in the darkness.,spreads across their onscreen hands.,gold0-orig,pos,unl,unl,unl,unl,\"Someone stands up, gathers her bag, scarf, and newspaper, and goes for the door.\",\"She leaves the apartment and the slimy, black mass\"\nlsmdc1009_Spider-Man3-76244,8489,\"She leaves the apartment and the slimy, black mass drops to the floor. On a city street, two cops\",look up to the sky.,pick up two cameraman customers.,pick up costumes.,walk along a sidewalk overlooking the turquoise green city street.,hold their cells as they hunches over.,gold1-reannot,pos,unl,unl,unl,pos,\"She leaves the apartment and the slimy, black mass drops to the floor.\",\"On a city street, two cops\"\nanetv_PFYk8lhE7-0,8792,A man is outside with a large metal box. Another man,is sanding a wall and ceiling inside a building.,are interviewed as well.,is standing in front of the fence upside down.,takes an orange hose from a room window.,walks on a hookah and smokes cigarette cigars while people never watch.,gold1-orig,unl,unl,unl,unl,unl,A man is outside with a large metal box.,Another man\nanetv_73zt29iKyL4,9090,The person cuts a hole in the ice as well as bait and finally catches a fish. The man,\"cuts the fish, cooks it, and is then seen eating it and walking away.\",continues with the ball and uses the hand in to show on the ice cream while looking over.,puts the egg into a hole and then closes it as well as the knife being eaten.,adds a second to the top of the brush and pushes a fish around to it to end the cork.,catches the fish and passes between the swimming fish and the box.,gold0-orig,pos,unl,unl,unl,unl,The person cuts a hole in the ice as well as bait and finally catches a fish.,The man\nanetv_73zt29iKyL4,9089,A person is seen walking along the snow and pulling a sled behind him. The person,cuts a hole in the ice as well as bait and finally catches a fish.,shows off a hookah and places it in his mouth.,continues to walk back and fourth as if trying to climb into a boat.,continues vacuuming and moving his legs nervously when another speaks at the camera.,\"ski down and continues skating down the river, some looking to the camera.\",gold1-reannot,pos,unl,unl,unl,unl,A person is seen walking along the snow and pulling a sled behind him.,The person\nanetv_j_e8c6tOQG8,4718,\"Rafters appear, paddling through the rushing currents. The rafter\",continues as he navigates the river.,\"skip from the raft and down the high railing, passing to a rough river.\",wake on prometheus and begin to tread water and perform a split bow.,\"pulls down the river with one curving, paved, spanning river.\",push on the board as snowy and others pump the water in their airborne helmets.,gold0-orig,pos,unl,unl,unl,unl,\"Rafters appear, paddling through the rushing currents.\",The rafter\nanetv_j_e8c6tOQG8,4717,Water is rushing between rocks in a river. Rafters,\"appear, paddling through the rushing currents.\",\", they are on top of a long hill.\",touches a tomb to a string attached to the boat.,are shown racing across the river.,eyes water up.,gold0-orig,pos,unl,unl,unl,unl,Water is rushing between rocks in a river.,Rafters\nlsmdc3013_BURLESQUE-4990,12761,Now a makeup mirror reflects a newspaper photo of someone performing in the burlesque lounge. Someone,smiles in her office as she reads the article on the front page of the la times calendar section.,turns back from the booth door.,doffs her glasses before passing over a stack of books.,stands leaning over the bar.,\"folds his arms in front of someone, looking on.\",gold0-orig,pos,unl,unl,unl,unl,Now a makeup mirror reflects a newspaper photo of someone performing in the burlesque lounge.,Someone\nlsmdc3013_BURLESQUE-4990,12753,Someone works her hands up her body to her hair. Her backup dancers,move upside - down on their chairs in acrobatic positions.,\"hangs up, and does some steppers to everybody.\",enter a dim lit room and close to the side.,push her hips with all her might including to herself for dancing.,take long break as she walks over.,gold0-orig,pos,unl,unl,unl,pos,Someone works her hands up her body to her hair.,Her backup dancers\nlsmdc3013_BURLESQUE-4990,12764,\"Meanwhile, two contortionists lie with their chins to the stage. Posed in deep backbends, they\",flick their toes over their heads.,are slowly pondering mottled methods from an arm work base like pieces of music.,\"begin to scream, then tries to break down and hold on close.\",bend over the rock bridge.,swing harmlessly between the small structure.,gold0-orig,pos,unl,unl,unl,pos,\"Meanwhile, two contortionists lie with their chins to the stage.\",\"Posed in deep backbends, they\"\nlsmdc3013_BURLESQUE-4990,12765,The doorman falls face - first into a contortionist's crotch. A patron,spits out his drink with laughter.,falls and someone lifts her feet.,stumbles backwards and kicks the corpse away.,stops him in a hug.,walks over and punches him in the mouth.,gold0-orig,pos,unl,unl,unl,pos,The doorman falls face - first into a contortionist's crotch.,A patron\nlsmdc3013_BURLESQUE-4990,12759,\"Spreading their legs, the dancers bend over and whip their hair. At home, someone\",finds a note taped to a mirror written on sheet music paper: going out.,enters the teacher's office.,\"faces the ladies office, unshaven.\",stands with him in the reception room with a hand equipped on to her hand.,helps her remove the wax.,gold0-orig,pos,unl,unl,unl,pos,\"Spreading their legs, the dancers bend over and whip their hair.\",\"At home, someone\"\nlsmdc3013_BURLESQUE-4990,12763,\"Someone sets down the paper and picks up a bank letter headed, Notice of Defaulted Payment. A red stamp\",\"reads, final notice.\",sits on someone's finger.,is withdrawn on a shelf.,lies on his desk.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone sets down the paper and picks up a bank letter headed, Notice of Defaulted Payment.\",A red stamp\nlsmdc3013_BURLESQUE-4990,12757,\"Now he drives someone in his vintage convertible. At his home, they\",share an intimate laugh as they sit on the couch by candlelight.,ride a mustached a drop.,start around a toilet.,find someone sleeping on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,Now he drives someone in his vintage convertible.,\"At his home, they\"\nlsmdc3013_BURLESQUE-4990,12756,\"Mesmerized by the performance, someone interlaces his fingers. Now he\",drives someone in his vintage convertible.,thrusts a pillow on his head.,grinds his hip through the door.,bows to his sister and dances about playing.,'s shining the wooden cells.,gold1-orig,pos,unl,unl,unl,unl,\"Mesmerized by the performance, someone interlaces his fingers.\",Now he\nlsmdc3013_BURLESQUE-4990,12754,\"Looking on, someone smiles proudly. Someone\",lifts her knee in a sexy pose with one of her backup dancers.,rolls into his dark - clerical 30s until his face becomes solemn.,straightens his boyish carefully.,\"looking troubled, someone bit off of straightens.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Looking on, someone smiles proudly.\",Someone\nlsmdc3013_BURLESQUE-4990,12760,Someone and the others dance with precision and raw sensuality as the stage lights strobe. Now a makeup mirror,reflects a newspaper photo of someone performing in the burlesque lounge.,shows her navel up as she grasps with a ballet coat and scissors nearby.,shows on a computer chip.,shows the four people alone with tattoos above one another.,shows a mattress hanging underneath.,gold1-orig,pos,unl,unl,unl,unl,Someone and the others dance with precision and raw sensuality as the stage lights strobe.,Now a makeup mirror\nlsmdc3013_BURLESQUE-4990,12769,Someone arrives at her side. One contortionist spreads her legs overhead and the doorman,strikes a triangle between her thighs.,throws to a tall bustier.,wiggles the top of her head.,pulls it from his pocket.,stays up and swaps with the burly stranger.,gold1-orig,pos,unl,unl,unl,unl,Someone arrives at her side.,One contortionist spreads her legs overhead and the doorman\nlsmdc3013_BURLESQUE-4990,12758,\"Someone turns in profile and bumps her shoulders forward into an animalistic slouch. Spreading their legs, the dancers\",bend over and whip their hair.,move from their bodies and timidly.,wraps their legs across their scarves.,give their startled looks.,give their natural respect.,gold1-orig,pos,unl,unl,unl,unl,Someone turns in profile and bumps her shoulders forward into an animalistic slouch.,\"Spreading their legs, the dancers\"\nlsmdc3013_BURLESQUE-4990,12767,\"From the bar, someone and someone watch someone with the two men. One of the contortionists\",passes the doorman a banana between her legs.,windsurfer approaches through crooked awning.,sniffs someone's severed knuckles.,\"returns when he catches someone's fall, then turns to someone.\",,gold0-orig,pos,unl,unl,pos,n/a,\"From the bar, someone and someone watch someone with the two men.\",One of the contortionists\nlsmdc3013_BURLESQUE-4990,12762,Someone smiles in her office as she reads the article on the front page of the la Times Calendar section. The photo,shows someone with someone and another dancer.,\"shows her laotong's shapely legs, who sits on a tiered rope.\",shows securely printed draft the video.,shows a card post and a blue x closing screen.,shows the photographer instructing her photo.,gold0-orig,pos,unl,unl,unl,unl,Someone smiles in her office as she reads the article on the front page of the la Times Calendar section.,The photo\nlsmdc3013_BURLESQUE-4990,12766,\"A patron spits out his drink with laughter. From the bar, someone and someone\",watch someone with the two men.,climb into their mercedes limo.,enter an engagement ring with black wine; floating through an archway.,watch him from across the kitchen.,shake hands and walk away.,gold1-reannot,pos,unl,unl,unl,unl,A patron spits out his drink with laughter.,\"From the bar, someone and someone\"\nlsmdc3013_BURLESQUE-4990,12755,Someone lifts her knee in a sexy pose with one of her backup dancers. Someone,seethes as she watches.,wears a cheap suit.,lays on her back.,\"eyes someone, who glances away faintly, then taps her menu.\",goes to the front door and waits inside.,gold0-reannot,pos,unl,unl,unl,unl,Someone lifts her knee in a sexy pose with one of her backup dancers.,Someone\nanetv_t-8wEopB3AQ,13152,\"A beach is shown, then a scuba diver under the water with tons of fish swimming. The scuba divers\",are shown in a close up as they come out of the water.,go all into the beach playing foam.,make a swimming kite.,is swimming under the water.,\"swim through the water, ending with a smile of - scuba divers swimming to the water.\",gold0-orig,pos,unl,unl,pos,pos,\"A beach is shown, then a scuba diver under the water with tons of fish swimming.\",The scuba divers\nanetv_t-8wEopB3AQ,11369,\"Then, a white boat appears with the man in them before going down under water to experience the coral reef and the other life forms. While the guy is scuba diving, men are shown on the boat talking and they all eventually\",join the man at the bottom.,stop to watch and begin rafting mercenaries.,reach the bottom to dive in the water fountains.,take turns a waterfall towards them and then also the man running celebrating.,get more detailed.,gold1-orig,pos,unl,unl,unl,unl,\"Then, a white boat appears with the man in them before going down under water to experience the coral reef and the other life forms.\",\"While the guy is scuba diving, men are shown on the boat talking and they all eventually\"\nanetv_t-8wEopB3AQ,11368,\"A man is stading outside by the a pretty blue body of water in Thailand preparing to go scuba diving. Then, a white boat\",appears with the man in them before going down under water to experience the coral reef and the other life forms.,is seen eating his face.,goes out of view and appears video image of the divers using their flips.,\"approaches sand and the stars, high toward the coast, propelling and dives into the clear water.\",,gold1-orig,unl,unl,unl,unl,n/a,A man is stading outside by the a pretty blue body of water in Thailand preparing to go scuba diving.,\"Then, a white boat\"\nanetv_t-8wEopB3AQ,11370,\"While the guy is scuba diving, men are shown on the boat talking and they all eventually join the man at the bottom. A shrimp appears walking across the sand and the men\",continue being shown in and out of the water.,are walking across the pool at the swimming pool.,begin throwing it in their helmets and perch.,are kayaking going over very quickly as they're asked to get water.,turns face to face.,gold1-orig,pos,unl,unl,unl,pos,\"While the guy is scuba diving, men are shown on the boat talking and they all eventually join the man at the bottom.\",A shrimp appears walking across the sand and the men\nanetv_t-8wEopB3AQ,13151,\"A man is shown by the ocean, zipping out to show underwater and above water views of boats. A beach\",\"is shown, then a scuba diver under the water with tons of fish swimming.\",is seen followed by several more people running on skis and kicking off the ropes.,is then shown riding a surf board along with five boats.,is shown with shots of kites are shown as well as people ready to walk down the water.,,gold0-reannot,pos,unl,unl,pos,n/a,\"A man is shown by the ocean, zipping out to show underwater and above water views of boats.\",A beach\nlsmdc0041_The_Sixth_Sense-67722,6292,Someone just sits and thinks. Someone,turns his head and stares at the windows.,spins the baby onto the pedals.,kicks the suv driver from the table.,halts as he walks front.,lies down on the end of her bed.,gold1-orig,pos,unl,unl,unl,pos,Someone just sits and thinks.,Someone\nlsmdc3085_TRUE_GRIT-40449,14923,The man from the porch sits by the window smoking his pipe. He,has messy brown hair and a mustache.,wipes the car with a towel clutching his contents to see that he looks really frustrated.,moves his eyes from bottom to the window.,\"smokes a joint, guitar only then words.\",\"rises next to the cop, sweating.\",gold0-orig,pos,unl,unl,unl,unl,The man from the porch sits by the window smoking his pipe.,He\nlsmdc3085_TRUE_GRIT-40449,14919,Someone lies in her long white nightgown shivering. Someone,lies in bed alone with a blanket over her side.,peers out toward the pine tent and heads over.,stares at the protruding workman.,\"bend down, her hands resting on her knees.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone lies in her long white nightgown shivering.,Someone\nlsmdc3085_TRUE_GRIT-40449,14920,Someone lies in bed alone with a blanket over her side. She,frowns restlessly and wakes.,\"wakes with her back to him, resting her chin on his shoulder.\",looks at the paint stamps.,lies curled up in his bed.,looks up at him.,gold0-orig,pos,unl,pos,pos,pos,Someone lies in bed alone with a blanket over her side.,She\nlsmdc3085_TRUE_GRIT-40449,14925,Someone stares at him as he takes a puff. He,puts his pipe on a side table.,frees himself and kicks another sack.,\"smiles, then tightens his lips.\",sets down a photograph.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stares at him as he takes a puff.,He\nlsmdc3085_TRUE_GRIT-40449,14927,He stands and walks over. He,hands her a photograph of a man in a dark suit.,\"glances at the submerged canvas, then proceeds to high way.\",sees someone and joins someone in a aircraft.,catches it as he plays with the water.,\"continues playing, smiling.\",gold0-orig,pos,unl,unl,unl,unl,He stands and walks over.,He\nlsmdc3085_TRUE_GRIT-40449,14922,Sweat glows on her brow. The man from the porch,sits by the window smoking his pipe.,smiles to her with her eyes opened.,is blocking the window.,watches her car with a thought.,steps onto woman's floor.,gold1-orig,pos,unl,pos,pos,pos,Sweat glows on her brow.,The man from the porch\nlsmdc3085_TRUE_GRIT-40449,14924,He has messy brown hair and a mustache. Someone,stares at him as he takes a puff.,is shown talking about how to cut cookie dough.,\"blows on his face, looking up at the moon.\",shakes her hand and shakes it.,,gold0-orig,pos,unl,unl,unl,n/a,He has messy brown hair and a mustache.,Someone\nlsmdc3085_TRUE_GRIT-40449,14921,She sits up and her eyes widen. Sweat,glows on her brow.,\"leans against the wall, one by one, sparks out black sparks, causing the dashboard to flicker as he approaches the young.\",\"looks up, she looks grated, and takes her seat opposite him, several, having some sushi and newspapers.\",\"rolls her nose, and he kisses her nose, her happy nose juts out as she lashes out with a boring - curl smirk\",\", she continues to look on.\",gold0-reannot,pos,unl,unl,unl,pos,She sits up and her eyes widen.,Sweat\nlsmdc3085_TRUE_GRIT-40449,14926,He puts his pipe on a side table. He,stands and walks over.,watch the match from inside.,points to the audience with his stick.,leads someone to the reception room.,,gold0-reannot,pos,unl,unl,pos,n/a,He puts his pipe on a side table.,He\nanetv_NcjQI0avKHE,14948,\"The intro states Progression: Lisa's First Season Snowboarding. The little girl is learning to snowboard and each day progresses a little better, she\",is falling down a lot.,\"is using paint, washing the snow off.\",does a final trick.,is also on a world's lotion.,shows your belly turn.,gold0-orig,pos,unl,unl,unl,unl,The intro states Progression: Lisa's First Season Snowboarding.,\"The little girl is learning to snowboard and each day progresses a little better, she\"\nanetv_NcjQI0avKHE,3649,An intro leads into several shots of a girl riding down a snowy hill on a snowboard and continuously falling over. Several more shots of her balancing,are shown as well as her throwing her gloves down and crashing into others.,are shown followed by several clips doing different tricks and skiing tricks with field equipment.,are shown with woman performing tricks and points to the camera.,are shown while more people are seen performing tricks on the ski but sitting in front and the camera's smiling.,,gold0-orig,pos,unl,unl,pos,n/a,An intro leads into several shots of a girl riding down a snowy hill on a snowboard and continuously falling over.,Several more shots of her balancing\nanetv_NcjQI0avKHE,3650,The days continue to progress watching her go and shots of her riding the lift and tightening her boots are shown. She,now rides down the hill without falling and is able to move effectively back and fourth.,has an enormous hand pretending to demonstrate and she begins riding on more.,are running as she surfaces and blends up a liquid that injects into his right finger.,continues to explain the mechanics of the process along with close ups of setting them back.,,gold0-reannot,pos,unl,unl,pos,n/a,The days continue to progress watching her go and shots of her riding the lift and tightening her boots are shown.,She\nanetv_NcjQI0avKHE,14949,\"The little girl is learning to snowboard and each day progresses a little better, she is falling down a lot. Then she\",is getting better and gets off the lift and does some more.,goes to the next aid where she starts climbing.,\"looks away from him, waves, and makes to walk her.\",is time to climb up the skis someone didn't get hurt.,turns around to put on her racing and waxing flashes to the camera.,gold1-reannot,pos,unl,unl,unl,unl,\"The little girl is learning to snowboard and each day progresses a little better, she is falling down a lot.\",Then she\nanetv_NOGtIoZbEVg,18890,A young man sits on a bed. The man,starts playing an acoustic guitar.,switches on a bed and sits down.,focuses on their clothes in bed.,starts shaving a mans hair with an orange razor.,walked with the equipment raised.,gold1-orig,pos,unl,pos,pos,pos,A young man sits on a bed.,The man\nanetv_NOGtIoZbEVg,18891,The man starts playing an acoustic guitar. The man,starts singing while playing.,begins to play the drums.,plays his saxophone in unison.,stops playing the drum.,plays a song on the violin.,gold0-orig,pos,unl,unl,unl,unl,The man starts playing an acoustic guitar.,The man\nanetv_NOGtIoZbEVg,18892,The man pauses and rolls is eyes. The man,\"finishes and looks up, then at the ground.\",holds a scissor in his hand and rubs it through its nose.,hugs the individuals two men.,drops his goggles as the man takes a seat.,gets off a truck when he jumps.,gold0-reannot,pos,unl,pos,pos,pos,The man pauses and rolls is eyes.,The man\nanetv_7Lkcan0X5VA,17992,A girl is shown playing piano. The duo,continue playing until the song ends.,pauses to pick up a cream.,dances around on stage in the end.,\"are shown posing, gleaming, and frisbee.\",leads into her swinging in the air.,gold0-orig,pos,unl,unl,unl,unl,A girl is shown playing piano.,The duo\nanetv_7Lkcan0X5VA,17991,The camera zooms in on the trumpet player. A girl,is shown playing piano.,is shown flying the board through a wall.,\"walks up to her computer, making sure most of the foot of another body is done to peel away.\",dances on the stage playing the drums.,sits on a stool during a busy event.,gold1-orig,pos,unl,unl,unl,pos,The camera zooms in on the trumpet player.,A girl\nanetv_7Lkcan0X5VA,17990,The video fades to the people playing on stage. The camera,zooms in on the trumpet player.,pans all around an area showing a person hitting a ball.,focuses on a tv.,pans back to the man still smiling.,goes back to the man playing the violin.,gold1-orig,pos,unl,unl,pos,pos,The video fades to the people playing on stage.,The camera\nanetv_7Lkcan0X5VA,17988,A person's hands are shown playing piano. A close up of a trumpet,shows a man playing.,is seen playing leaves.,is shown by the woman playing with a record.,is then shown as well as person walking speaking.,is shown on screen.,gold0-reannot,pos,unl,unl,unl,pos,A person's hands are shown playing piano.,A close up of a trumpet\nanetv_7Lkcan0X5VA,17989,A close up of a trumpet shows a man playing. The video,fades to the people playing on stage.,then shows several javelins moving in a circle as well as close ups of a person purchasing the ball.,ends with a showing a cat playing.,is shown with the boy playing instruments together.,,gold0-reannot,pos,unl,pos,pos,n/a,A close up of a trumpet shows a man playing.,The video\nanetv_gdr6iVHHYcU,9898,A woman begins to put makeup on the other woman. She,dabs the woman's face with a sponge.,blows out a toothbrush in front of the camera.,draws the slide and starts lifting it down.,goes back up under the table.,shakes her head and says.,gold0-orig,pos,unl,unl,unl,pos,A woman begins to put makeup on the other woman.,She\nanetv_gdr6iVHHYcU,9897,Two women are in a room talking. A woman,begins to put makeup on the other woman.,is holding a flute and playing an acoustic flute.,demonstrates how to lift a board mop.,wearing a green shirt is in a room.,is knitting with a woman.,gold0-orig,pos,unl,unl,unl,pos,Two women are in a room talking.,A woman\nlsmdc0008_Fargo-49797,10374,\"Someone reaches across someone, grabs the trooper by the hair and slams his head down onto the car door. With his free hand, someone\",pops the glove compartment.,drops the bar onto the ledge.,gets thrown on it's car as someone leaps toward someone.,grabs his mother's chair and leaves.,throws his pistol on someone's chest.,gold1-orig,pos,unl,unl,unl,unl,\"Someone reaches across someone, grabs the trooper by the hair and slams his head down onto the car door.\",\"With his free hand, someone\"\nlsmdc0008_Fargo-49797,10375,\"With his free hand, someone pops the glove compartment. He\",brings a gun out and reaches across someone and shoots at the back of the trooper's head.,reaches the railing as and approaches the japanese steer until someone resumes it.,rings the storm right.,letters come onto the screen for blackjack.,holds up his hand.,gold0-orig,pos,unl,unl,unl,pos,\"With his free hand, someone pops the glove compartment.\",He\nlsmdc0008_Fargo-49797,10373,\"The policeman leans forward into the car, listening. Someone\",\"reaches across someone, grabs the trooper by the hair and slams his head down onto the car door.\",hunches backwards with people push him through the glass door.,\"walks away, grabbing someone's his drink.\",looks down on the spot where blood on the bridge of his nose.,sits back on someone's finger and rips a thestral of blood out of it.,gold1-orig,pos,unl,unl,unl,unl,\"The policeman leans forward into the car, listening.\",Someone\nlsmdc0008_Fargo-49797,10376,The policeman's head slides out the window and his body flops back onto the street. Someone,looks out at the cop in the road.,\"holds him, crushing him against the gasoline car.\",opens a crate onto a burner.,pins someone to his chevy truck.,,gold0-orig,pos,unl,unl,unl,n/a,The policeman's head slides out the window and his body flops back onto the street.,Someone\nanetv_5o9iv0wC59g,2098,He continues drumming on the bongos alternating between the two drums. He,plays for some time and then stops drumming on the bongos.,continues stretching while someone joins the boys in the floor.,puts his hat on to the side with the lasso.,stops hitting the drums and watches the two boys pretend fingers.,stops and shuffles back up several discs to move the stage waves.,gold1-orig,pos,unl,unl,unl,unl,He continues drumming on the bongos alternating between the two drums.,He\nanetv_5o9iv0wC59g,2096,A man wearing a dark blue shirt and sporting a braid begins playing the bongos. He,begins drumming on the bongos to a beat as he shakes his head rhythmically.,\"walk onto an upturned square wooden room, then start up purposefully.\",then would return to keep the violin about.,is describing the words of the demonstration.,,gold0-orig,pos,unl,unl,pos,n/a,A man wearing a dark blue shirt and sporting a braid begins playing the bongos.,He\nanetv_5o9iv0wC59g,2097,He begins drumming on the bongos to a beat as he shakes his head rhythmically. He,continues drumming on the bongos alternating between the two drums.,\"seems onto his mind and starts dreaming himself through blowing his thoughts he took a beat, giving them more pointers.\",falls and starts to play the drums until they continue ringing and slowing.,continues playing rhythmically as he finishes.,stops and turns back to someone.,gold0-reannot,pos,unl,unl,pos,pos,He begins drumming on the bongos to a beat as he shakes his head rhythmically.,He\nlsmdc3088_WHATS_YOUR_NUMBER-42531,15662,Someone gets up and jumps on the bed. We,draw back through a window to the building's beige - brick facade.,leaves the room.,volume are shown on the table.,find someone on the couch swinging with someone.,\"his stomach, he playfully grabs it.\",gold0-orig,unl,unl,unl,unl,unl,Someone gets up and jumps on the bed.,We\nanetv_wZ-teiWX4mg,15742,Man is standing in an ice rink practicing hockey. man,is putting hockey uniform.,is standing in a field showing him a game of volleyball.,walks onto a field and field of rope.,is playing a racquetball and pass for the camera.,is then shown on a blackjack table.,gold1-reannot,pos,unl,unl,unl,unl,Man is standing in an ice rink practicing hockey.,man\nanetv_q0P0EvJOfRQ,3746,A woman is seen dancing in the street placing an instrument while others watch on the side. The woman,continues to play the instrument while moving her leg up and down and the people clap for her on the side.,continuously interacts with one another and ends with text across the screen.,continues moving around and moving in and out onto the woman with the band.,continues hitting the drums back and fourth around the instrument while pausing to speak to the camera.,continues moving her right arm fast while shortly afterwards.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen dancing in the street placing an instrument while others watch on the side.,The woman\nanetv_w8rTULZCkzk,3783,He begins by brushing mud off the spikes into a sink. He,puts a small amount of water into the sink and continues scrubbing.,is also seen followed by various clips of his running logo and dirty anything.,\"continues to brush his teeth more, says it, and walks to the sink.\",then starts to mop with the broom.,,gold0-orig,pos,unl,unl,unl,n/a,He begins by brushing mud off the spikes into a sink.,He\nanetv_w8rTULZCkzk,3781,An introduction is shown for a video about how to clean running spikes. A guy,explains that he will clean the spikes while showing the dirt on the spikes.,shampoo the dog's cheeks while further to clean the soap out as a dog walks over to an island counter.,takes a hose indoors and sprays something with a pink hanging towel.,is seen wiping the snow down and speaking to the older friend while sitting.,,gold0-orig,pos,unl,unl,unl,n/a,An introduction is shown for a video about how to clean running spikes.,A guy\nanetv_w8rTULZCkzk,3782,A guy explains that he will clean the spikes while showing the dirt on the spikes. He,begins by brushing mud off the spikes into a sink.,sticks until the bottom of the hill and takes his clean roots until trimming the wall.,\"is pictured easily, blocking the correct poses in the other event that goes down the field.\",hit and kick the ball out of the right pipes.,points and walks away in an waxing procedure as one of them fixes the other side to work on it.,gold0-orig,pos,unl,unl,unl,unl,A guy explains that he will clean the spikes while showing the dirt on the spikes.,He\nlsmdc3037_IRON_MAN2-16798,12105,\"Someone and someone, as someone, step in. Someone\",\"turns to someone, who mouths the word, no.\",fires handfuls of a large carton from a wood.,snaps a final photo at someone.,\"turns toward someone, urging this.\",\"hugs someone, who sinks to his knees.\",gold0-orig,pos,pos,pos,pos,pos,\"Someone and someone, as someone, step in.\",Someone\nanetv_SLisp6hn700,17306,A girl wraps gifts in wrapping paper seated at a table. The girl,uses tape to secure the wrapping paper inside the present.,is braids appear pinned up.,returns the start towel over a tissue from the box and hands it back to her doctor.,pulls out tools from the phone and searches it.,continues to play with the camera.,gold0-orig,pos,unl,unl,unl,pos,A girl wraps gifts in wrapping paper seated at a table.,The girl\nanetv_SLisp6hn700,14448,\"The woman is sitting at the table talking to the camera. The woman is holding a wrapped gift, then she\",is showing the materials she used.,\"holds a vase in tissue, and puts some cream on her leg and starts playing.\",goes to wrap the gift.,takes the lemon and places it in her hand.,continues decorating it for a while.,gold1-orig,pos,unl,unl,unl,pos,The woman is sitting at the table talking to the camera.,\"The woman is holding a wrapped gift, then she\"\nanetv_SLisp6hn700,17305,A girl sits at a table with many finished wrapped presents. A girl,wraps gifts in wrapping paper seated at a table.,turns and touches her.,wearing brown leather pants and a pink shirt.,is dancing with someone.,,gold0-orig,pos,unl,unl,unl,n/a,A girl sits at a table with many finished wrapped presents.,A girl\nanetv_SLisp6hn700,17308,The girl peels away a self sealing strip on the wrapping paper. The girl,folds the edges of the wrapping paper and cuts them with scissors.,wipes her lip with scissors.,slams down the stake material.,slides a rotating strip in the paper and then lines it.,,gold0-orig,pos,unl,unl,pos,n/a,The girl peels away a self sealing strip on the wrapping paper.,The girl\nanetv_SLisp6hn700,17309,The girl folds the edges of the wrapping paper and cuts them with scissors. The girl,tapes the exterior of the present.,pulls out little pieces of nail and folds a piece of paper in it.,peels a finished piece of wood and places it around her wrist with the credit and continues cutting the warming mechanism.,puts the spare end holding a rubber glove on each end.,measures the folds parts with fabric and stuffing them into the gift.,gold0-orig,pos,unl,unl,unl,pos,The girl folds the edges of the wrapping paper and cuts them with scissors.,The girl\nanetv_SLisp6hn700,14449,\"The woman is holding a wrapped gift, then she is showing the materials she used. The woman\",\"put the cloth on wrapper, put adhesive tape on the edge and began wrapping the present.\",uses a bowl and sharks to dry hair as well as colorful kayaks while still showing into the animal's mouth.,takes out the folded baking dough and tapes it onto her lap.,wraps the gift back paper and continues wrapping.,holds up a towel and then picks up a contact lens.,gold0-reannot,pos,unl,unl,unl,unl,\"The woman is holding a wrapped gift, then she is showing the materials she used.\",The woman\nanetv_SLisp6hn700,17307,The girl uses tape to secure the wrapping paper inside the present. The girl,peels away a self sealing strip on the wrapping paper.,wraps the paper with an iron and tapes up the ring paper.,puts flute around her mouth while continuing to finish the performance.,continues to paint the red wall while looking at the camera then continues painting.,lays on the paper and begins wrapping the box.,gold0-reannot,pos,unl,unl,unl,unl,The girl uses tape to secure the wrapping paper inside the present.,The girl\nanetv_J27dBmSpRW4,15071,A shot of a building is shown followed by a man speaking to the camera. Another man,sits next to them while one holds a hookah and take puffs from the hose.,is seen speaking to the camera and leads into people playing beer.,focuses on a tv set with the man moving in and out of frame.,is seen cutting a man's head and leads into him cutting his own hair.,,gold1-orig,unl,unl,unl,unl,n/a,A shot of a building is shown followed by a man speaking to the camera.,Another man\nanetv_J27dBmSpRW4,19737,Two men are shown speaking to one another while smoking from a hookah. The men,speak to the camera while it pans around the bar and back to them smoking.,spin all around the pieces while the camera zooms in to the end.,continue to fish and grimace while looking down at the camera.,continue to smoke with one another while others walk behind.,walk back and fourth while speaking to a camera.,gold1-orig,pos,unl,unl,unl,pos,Two men are shown speaking to one another while smoking from a hookah.,The men\nanetv_J27dBmSpRW4,19736,The outside of a building is shown and leads into people talking to one another. Two men,are shown speaking to one another while smoking from a hookah.,are seen working around one another with one speaking to one another.,play near the other and then continue to skate around while the kids walk out and end by passing the camera.,are seen speaking to the camera and leads into a man speaking and showing off equipment fire.,are seen doing plaster against a wall while moving along the fence as well as jumping around and walking away from him.,gold1-orig,unl,unl,unl,unl,unl,The outside of a building is shown and leads into people talking to one another.,Two men\nanetv_J27dBmSpRW4,15072,Another man sits next to them while one holds a hookah and take puffs from the hose. The man,take turns smoking from the hookah and the camera pans around the area.,talks to demonstrate how to work the roof and films it after another couple.,continues to smoke a cigarette as he exhales smoke into the smoke.,laughs and puffs out of his cigarettes.,,gold0-orig,pos,unl,unl,pos,n/a,Another man sits next to them while one holds a hookah and take puffs from the hose.,The man\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61348,8293,\"Someone is swept up in the emotion. The 6000 rohirrim move off, a great wall of horses and spear points, building up to a gallop like a rising tide, as they charge towards the 50, 000 orcs! angle on: someone, wind\",\"blowing his hair, someone's arm around his chest.\",\"rattles his nose, mouth with panic.\",\"wheeling into the room, goes to the back casket sits a cover in its beak.\",\"surfing on the sky, is raising fluid from his waist.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone is swept up in the emotion.,\"The 6000 rohirrim move off, a great wall of horses and spear points, building up to a gallop like a rising tide, as they charge towards the 50, 000 orcs! angle on: someone, wind\"\nanetv_fVg3StD8LL0,14423,The man is then seen helping another lay down plaster. The host,continues helping the men tear up floor as well as lay it down and speak to the camera.,pushes the man forward and shows a tattoo.,watches the man with the blowing.,performs roller blading on the floor.,shows all his strength to measure.,gold0-orig,pos,unl,unl,unl,unl,The man is then seen helping another lay down plaster.,The host\nanetv_fVg3StD8LL0,14422,A man is seen hosting a news segment and speaking to the camera. The man,is then seen helping another lay down plaster.,begins spinning around while looking off into the distance.,begins riding around a car playing ping pong as he stands warming up on a table.,holds up a piece of wrapping paper and pouring it into a grey bag.,continues playing crochet while the camera walks in and out of frame.,gold1-reannot,pos,unl,unl,unl,unl,A man is seen hosting a news segment and speaking to the camera.,The man\nanetv_ZYrQ-TSPQfU,13550,\"People whom are wearing helmets, are paddling a inflated boat down a rocky body of water. Water\",splashes into the inflated boat.,slows down the able jump.,surfs a setting of people on a raft.,pulls a large cloth over the camel's back to start a jump.,don a yellow watch and stand at shore next to them using the water boogie board with their hands next the violent waters.,gold0-orig,pos,unl,unl,unl,unl,\"People whom are wearing helmets, are paddling a inflated boat down a rocky body of water.\",Water\nanetv__RCe4Q0p1aA,19507,The man lifts the weight to his chest. The man,lifts the weight above his head.,holds up the weight and lifts his body.,\"raises his arms into the air, letting his arms push the pedaling cord around his neck.\",lifts the barbell up to his chest.,grabs the weight bar and hangs it on the machine and lifts the bar.,gold1-orig,pos,unl,unl,unl,unl,The man lifts the weight to his chest.,The man\nanetv__RCe4Q0p1aA,3794,\"After a long time, the man picks up the weight in a squat, bends his knees several times and finally jerks it over his head. A replay is then shown from another angle and the individuals behind him\",begin throwing their fist up in excitement before congratulating the man with a hug.,are almost able to catapult the badminton stadium over.,are bent forward throwing up his shoes.,hit each other on the mat.,,gold0-orig,pos,unl,pos,pos,n/a,\"After a long time, the man picks up the weight in a squat, bends his knees several times and finally jerks it over his head.\",A replay is then shown from another angle and the individuals behind him\nanetv__RCe4Q0p1aA,3792,Two men are standing in the corner around a stand putting powder on their hand. One man then,walks onto the stage and positions himself to lift up a weight.,swings around a block and hits one another while one men hit the ball very hard.,grabs a loose dog and drops it on the cars.,begins hitting the shirt with his racket and hitting the ball with his stick.,,gold0-orig,pos,unl,unl,pos,n/a,Two men are standing in the corner around a stand putting powder on their hand.,One man then\nanetv__RCe4Q0p1aA,3793,\"One man then walks onto the stage and positions himself to lift up a weight. After a long time, the man\",\"picks up the weight in a squat, bends his knees several times and finally jerks it over his head.\",is then shown downstream in stunt position.,demonstrates the break and the crowd up moves a few times.,wins the game and has his victor.,,gold0-orig,pos,unl,unl,unl,n/a,One man then walks onto the stage and positions himself to lift up a weight.,\"After a long time, the man\"\nanetv__RCe4Q0p1aA,19505,A man walks out in front of a weighted barbell. The man,prepares to lift the weight.,spins the body on the welding machine.,turns around and lifts a weight over his head.,spins on fake nails and tosses the hammer hammer.,leans forward to adjust the knobs.,gold0-orig,pos,unl,unl,unl,unl,A man walks out in front of a weighted barbell.,The man\nanetv_icGrJ2XBxa0,1729,They are rowing their oars. People,are standing on the beach with medals around their necks.,fall into their rafts.,play at the kayaking boat.,carry boats around in the finish yard.,kayaks through rapids and kayaks.,gold1-orig,pos,pos,pos,pos,pos,They are rowing their oars.,People\nanetv_icGrJ2XBxa0,1728,People are sitting in kayaks on a river. They,are rowing their oars.,are being pulled by a train.,are being pulled by a boat.,are holding onto the kite.,stop as people close on.,gold0-reannot,pos,unl,unl,unl,unl,People are sitting in kayaks on a river.,They\nanetv_55sP2yXNFxY,13059,Shots are shown of a young man playing pool with his father watching on the side. The man,continues to play while his father watches and speaks to the news host.,throws a ball down into the distance and moves all around the table.,throws the ball back and fourth to others on the pool.,sits down and talks to another person and shows that's poles around his arm.,continues to pull the ball around and show shots of people playing beer pong.,gold1-orig,pos,unl,unl,unl,unl,Shots are shown of a young man playing pool with his father watching on the side.,The man\nanetv_55sP2yXNFxY,13058,A man is seen hosting a news segment that leads into him speaking with two other people. Shots,are shown of a young man playing pool with his father watching on the side.,are shown of ice with different people speaking and playing paintball.,are shown ready for combat.,continue dancing in a room without an audience watching.,,gold1-reannot,pos,unl,unl,unl,n/a,A man is seen hosting a news segment that leads into him speaking with two other people.,Shots\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84708,16105,The dog jumps up and runs off. He,has a false beard.,gets off the bikes.,continues to ride on it.,wakes and sits up in bed.,laughs and talks to the camera.,gold1-reannot,unl,unl,unl,unl,unl,The dog jumps up and runs off.,He\nanetv_Pi79Fa4YwDk,18930,The pitcher throws and men all start running. We,\"see a man laying on the ground, with medics around.\",is repeated in slow motion.,prop a shot of the board with a scoop and the ball falls on the team from the pole's roped above the audience.,see the event and the bowling.,begin shooting the ball into the net.,gold1-orig,pos,unl,unl,unl,unl,The pitcher throws and men all start running.,We\nanetv_Pi79Fa4YwDk,18932,We see men walking on the field and a medic puts a ice pack on the man's head. We,see in slow motion the collision which hurt the man.,see the men sit and put horses around.,see a cloth float close to the counter surface.,see the ship as people take a wheelie and throw fish in a trash can.,see the man shoot and see the dog catch the ground.,gold0-orig,pos,unl,unl,unl,unl,We see men walking on the field and a medic puts a ice pack on the man's head.,We\nanetv_Pi79Fa4YwDk,18931,\"We see a man laying on the ground, with medics around. We see men walking on the field and a medic\",puts a ice pack on the man's head.,is being interviewed by a lady.,laying on the back.,stands next to him talking.,looks down into the screen.,gold0-orig,pos,unl,unl,pos,pos,\"We see a man laying on the ground, with medics around.\",We see men walking on the field and a medic\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2399,She hands someone's bag. Long - legged someone,is left holding the bag.,watches a woman stand at the chair facing a portrait with a horizontal column.,sits across from a clothing counter between two others.,steps out of wavy water.,hurries into a cafe with sneaks.,gold0-orig,pos,unl,unl,unl,unl,She hands someone's bag.,Long - legged someone\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2403,\"Someone smiles at her reflection in the mirror, then looks at the label of the dress. Someone\",watches her with a smug smile.,puts down her sweater.,gives an embarrassed look.,\"beautiful wedding, someone is now standing at a desk in another photograph sitting beside a framed photograph.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone smiles at her reflection in the mirror, then looks at the label of the dress.\",Someone\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2405,\"In the bridal shop, someone, in a pink maid of honor dress, is blind - folded. The petticoat\",is blue and green.,is young and mysterious.,is upside down in front of her face.,is shown in venom case.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the bridal shop, someone, in a pink maid of honor dress, is blind - folded.\",The petticoat\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2401,\"She slams it down, and slumps next to it. Her eyes narrowing, she\",opens the bag and picks up the mobile.,\"watches someone rush upstairs, watching someone.\",pours ice into her glass.,descends the stairs beneath the awning.,runs down the snowy hills across the street.,gold0-orig,pos,pos,pos,pos,pos,\"She slams it down, and slumps next to it.\",\"Her eyes narrowing, she\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2400,Long - legged someone is left holding the bag. She,\"slams it down, and slumps next to it.\",\"looks cautiously away, backs into the trailer, walking down a stairs.\",sees someone staring staring into the diary.,\"puts down the key, spins it out.\",kicks her arm away and slumps down again.,gold0-orig,pos,unl,unl,unl,unl,Long - legged someone is left holding the bag.,She\nlsmdc1019_Confessions_Of_A_Shopaholic-80873,2402,\"Her eyes narrowing, she opens the bag and picks up the mobile. Someone, looking nervous,\",emerges from the changing cabin in the purple dress.,rises slowly up the corridor to the salesman's office and turns the bottle in his hand.,\"smiles as she steps toward the other door, then opens it.\",\"gets off from messages, hurt herself again when she enters.\",starts to follow someone's prom date.,gold1-reannot,pos,unl,pos,pos,pos,\"Her eyes narrowing, she opens the bag and picks up the mobile.\",\"Someone, looking nervous,\"\nanetv_bNRE808ALfM,11067,People are standing in the field holding a swords. We,see the instructor of the class.,are holding a ball up to each other's head.,\"see a man walking in a gym, trying to perform.\",start chopping the balls at the base of the orange net.,,gold0-orig,pos,unl,unl,pos,n/a,People are standing in the field holding a swords.,We\nanetv_bNRE808ALfM,11072,The people are in the field again. The people,return in doors and take a bow and clap.,stand holding the frisbee watching them.,cheer for the crowd and see people riding between the people.,are kicking the team in the field.,\"walk past the crowd for a little bit, first one then each throws a javelin.\",gold1-orig,pos,unl,unl,unl,pos,The people are in the field again.,The people\nanetv_bNRE808ALfM,12030,The bright sun is blinding through the trees. A group of people,are doing martial arts moves in the woods.,join pumpkins at a large farm below.,run up a wooden structure.,are seen sitting up on a tree on the street.,are gathered behind a castle wall.,gold1-orig,pos,unl,pos,pos,pos,The bright sun is blinding through the trees.,A group of people\nanetv_bNRE808ALfM,11073,The people return in doors and take a bow and clap. We then,see the ending title screen.,see another woman fight in their competitions.,see that the lake is filled with ladies and water polo.,see the men laughing to their buckets.,see a man cheer his judges as they finish.,gold0-orig,pos,unl,unl,unl,unl,The people return in doors and take a bow and clap.,We then\nanetv_bNRE808ALfM,12031,A group of people are doing martial arts moves in the woods. They,are holding sticks as they move in unison.,are all wearing sumo costumes.,move closer to people.,take turns doing the back flip off on the grass.,maintain together in the exhibition.,gold1-orig,pos,unl,pos,pos,pos,A group of people are doing martial arts moves in the woods.,They\nanetv_bNRE808ALfM,11070,We see people working in pairs indoors on wrist movement. The people,are practicing with swords again.,get in formation and go back in uneven cliff.,use paddles to move through the searchlights.,jump and walk the high jump rope in the gym.,run around the room laughing for a walking crowd.,gold0-orig,pos,unl,unl,unl,unl,We see people working in pairs indoors on wrist movement.,The people\nanetv_bNRE808ALfM,11071,The people are practicing with swords again. The people,are in the field again.,walk to a stop while a man stands behind them.,are stretching proper position to force themselves.,throw darts at a target for a person.,are doing karate on front one person on the ground.,gold1-orig,pos,unl,unl,unl,unl,The people are practicing with swords again.,The people\nanetv_bNRE808ALfM,11066,We see a bright sunny field. People,are standing in the field holding a swords.,see a person hitting a ball with a tennis racket and hitting it with a stick.,tumble down a waterfall in a sand castle.,are in a field playing voleyball.,walk in the field.,gold0-orig,pos,unl,unl,pos,pos,We see a bright sunny field.,People\nanetv_bNRE808ALfM,11068,We see the instructor of the class. The students,sit a the teacher demonstrates.,shuffle their flags hard.,get ready to practice during.,stand looking amazed to the crowd.,perform to let them.,gold1-reannot,pos,unl,unl,unl,unl,We see the instructor of the class.,The students\nanetv_bNRE808ALfM,11069,The students sit a the teacher demonstrates. We,see people working in pairs indoors on wrist movement.,\"at the starting desk, someone faces the younger sister with toasts.\",watched the girl as she finishes her article and the painting - lines in front of her.,help a boy in a room with a ticker on her shoulders.,set them in a bag.,gold0-reannot,pos,unl,unl,unl,unl,The students sit a the teacher demonstrates.,We\nlsmdc3033_HUGO-14918,6511,\"Outside, someone pushes past pedestrians as he races toward the train station. Inside, he\",grins as he strides through a sea of people.,finds someone asleep in bed.,sees someone - a tank.,finds someone being hidden inside.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside, someone pushes past pedestrians as he races toward the train station.\",\"Inside, he\"\nlsmdc3033_HUGO-14918,6517,\"Smiling, he steps forward and kisses her hands. Someone\",glances at them as he passes.,\"grins and makes a laugh, delighted.\",\"looks at someone, shaking his head.\",gently lays her head on the pillow and gently strokes her face.,,gold0-orig,pos,unl,unl,unl,n/a,\"Smiling, he steps forward and kisses her hands.\",Someone\nlsmdc3033_HUGO-14918,6512,\"Inside, he grins as he strides through a sea of people. Nearby, the news vendor\",carries a wicker basket toward the cafe.,\"addresses his marching friend, who waits patiently now.\",smiles as the men pull from his luggage.,looks shrewdly from his front table and drinks.,,gold1-orig,pos,unl,unl,pos,n/a,\"Inside, he grins as he strides through a sea of people.\",\"Nearby, the news vendor\"\nlsmdc3033_HUGO-14918,6516,\"He glances at the cafe owner. Smiling, he\",steps forward and kisses her hands.,glances over his shoulder at someone.,stares at the video.,brushes the men past.,glances over at the young man.,gold0-orig,pos,unl,pos,pos,pos,He glances at the cafe owner.,\"Smiling, he\"\nlsmdc3033_HUGO-14918,6510,Someone grins at someone then stands. He,runs out of the room.,watches the american leave.,rises into his eyes.,points to his brow.,hands someone the picture.,gold1-orig,pos,unl,unl,pos,pos,Someone grins at someone then stands.,He\nlsmdc3033_HUGO-14918,6515,The two dogs wag their tails as they sniff one another. He,glances at the cafe owner.,pack a cigarette about four yards away.,imitates someone's cab and glares at someone as she watches.,moves more or less.,,gold0-orig,pos,unl,unl,unl,n/a,The two dogs wag their tails as they sniff one another.,He\nanetv_FujUrbL1qc0,13804,He lays back and starts doing crunches. He,sits back up on the machine and continues talking.,climbs back into bed.,continues to grip her arm.,\"lifts the nozzle to half, then lifts the weight up above his head.\",lifts heavy weight over his head.,gold1-reannot,pos,unl,unl,unl,pos,He lays back and starts doing crunches.,He\nanetv_FujUrbL1qc0,13803,A man is sitting on a workout bench. He,lays back and starts doing crunches.,pulls a nut off the back of the machine.,begins wrapping his paper around the sink.,wets his hands and performs up some speed.,gets his hands out and stares at the pointing lens.,gold1-reannot,pos,unl,unl,unl,unl,A man is sitting on a workout bench.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60232,7083,\"Someone looks at someone, turns to the others gesturing towards a high mountain pass. The Fellowship\",clamber through rock and snow.,follows a tearful bear ahead of someone.,looks up at the churning waves.,detach throughout the tunnel.,are stopped to watch a man jumps to the sea.,gold1-orig,pos,unl,pos,pos,pos,\"Someone looks at someone, turns to the others gesturing towards a high mountain pass.\",The Fellowship\nlsmdc1006_Slumdog_Millionaire-74184,530,\"Someone stares out into the crowd, in shock. Someone\",\"runs through the streets, towards the train station.\",suddenly gets up and starts back to his room.,and oils are gathered around mjolnir.,stops to speak to someone.,claps his hand and grabs it.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stares out into the crowd, in shock.\",Someone\nlsmdc1006_Slumdog_Millionaire-74184,536,She wears a yellow headscarf. He,runs across the station tracks.,wears a dark dress and pants.,rides on the escalator which she perfunctory across the hotel.,brushes out along by a shiny blue car.,\"glares at her, disappointed.\",gold1-orig,pos,unl,unl,unl,pos,She wears a yellow headscarf.,He\nlsmdc1006_Slumdog_Millionaire-74184,535,\"He glances to his right, where he registers the figure of someone through the gaps in the trains. She\",wears a yellow headscarf.,leads the rope closer to his ear and nods gently.,is back - spinning and ready to see the slytherin athletes again.,\"scrambles to medium height, then starts to remove the large foliage.\",sets a monstrous mask on the ground outside.,gold0-orig,pos,unl,unl,unl,unl,\"He glances to his right, where he registers the figure of someone through the gaps in the trains.\",She\nlsmdc1006_Slumdog_Millionaire-74184,532,His arms are folded around his knees. He,\"stares down at the ground, lost in thought.\",catches a glimpse of him as he puts the wand to his throat.,swings his feet playing the conga.,shows up how graceful he is.,,gold0-orig,pos,unl,unl,pos,n/a,His arms are folded around his knees.,He\nlsmdc1006_Slumdog_Millionaire-74184,533,\"He stares down at the ground, lost in thought. He\",takes a deep breath and sighs heavily.,is long and alone.,lifts back his flippers.,stands on the porch and notices a bird standing on an overcast floor.,,gold0-orig,pos,unl,unl,unl,n/a,\"He stares down at the ground, lost in thought.\",He\nlsmdc1006_Slumdog_Millionaire-74184,534,He takes a deep breath and sighs heavily. He,\"glances to his right, where he registers the figure of someone through the gaps in the trains.\",is sitting down beside himself.,idly chews his cell.,takes a deep breath.,,gold0-orig,pos,unl,unl,pos,n/a,He takes a deep breath and sighs heavily.,He\nlsmdc1006_Slumdog_Millionaire-74184,528,Two women present an enormous check for 20 million rupees to someone. The host,slaps someone on the back and wraps his arm around his shoulders.,crosses the smooth environments across the map.,\"gives a friendly smile, then exits.\",peers out at the children.,,gold0-orig,pos,unl,pos,pos,n/a,Two women present an enormous check for 20 million rupees to someone.,The host\nlsmdc1006_Slumdog_Millionaire-74184,537,He runs across the station tracks. We,see a montage of images from someone's past.,\", someone jumps through an opening french window on a bathroom and peers down at his old blue - spattered phone.\",returns an flaming revolver.,dug motocross in a dark frenzy.,\"silhouetted as a statue, someone stands with two men in his apartment.\",gold0-reannot,pos,unl,unl,unl,unl,He runs across the station tracks.,We\nanetv_cAhu8H9qsAI,3,A young woman sits down with supplies in her lap. She,bends down and puts on her shoes one at a time.,hot water from the person's mouth after the patient walks.,woman is dancing in a large yard.,talks and leads into a medical woman talking utensils and brushing her hair followed by dog care.,cuts the woman's hair.,gold1-orig,pos,unl,unl,unl,pos,A young woman sits down with supplies in her lap.,She\nanetv_cAhu8H9qsAI,2,A bench is shown in a foyer. A young woman,sits down with supplies in her lap.,moves the batons form it continues.,is sitting on top of a rug.,is filming in the driveway.,\"picks up a bottle, then cuts it several times.\",gold0-orig,pos,unl,unl,unl,pos,A bench is shown in a foyer.,A young woman\nanetv_cAhu8H9qsAI,11012,A woman puts her shoes on after sitting down. She then,picks up a bag and walks away.,picks up the shoes and tie them up.,takes off her shoes and puts a shoe in it.,begins onward while holding up a trash can.,lifts over the cleaning polish.,gold0-reannot,pos,unl,unl,unl,pos,A woman puts her shoes on after sitting down.,She then\nanetv_cAhu8H9qsAI,11011,A bench is shown in a foyer. A woman,puts her shoes on after sitting down.,is mopping a baby's floor.,is talking about a pair of ironing clothes.,hands a empty frisbee and a dog.,is washing dishes and washing a dish with the dishes.,gold0-reannot,pos,unl,unl,unl,unl,A bench is shown in a foyer.,A woman\nanetv_svWiQtzgtOc,15871,The people are watching as they stand around him on a city street. He,spins and turns for their entertainment.,holds the cameraman from behind.,is shown taking the shoes and running around a sidewalk.,glances at the doors.,,gold0-orig,pos,unl,unl,pos,n/a,The people are watching as they stand around him on a city street.,He\nanetv_svWiQtzgtOc,18193,A man is seen performing various flips and tricks in the middle of a public square with dozens of people watching on the side. The man,continues to do tricks in various areas while the people around him watch and applaud.,continues to spin around the playground while another woman stands on the side and watches.,continues to perform tai chi by himself followed by skating in the field with others into the air in front of facing camera.,continues walking around the area and grabbing a bit of balance and ends with him rolling on a ball.,\"continues to do various flips and tricks, jumping and spinning around while doing tricks with his hands.\",gold0-orig,pos,unl,unl,unl,pos,A man is seen performing various flips and tricks in the middle of a public square with dozens of people watching on the side.,The man\nanetv_svWiQtzgtOc,15870,A large man is break dancing in front of a crowd. The people,are watching as they stand around him on a city street.,finish dancing around the stage.,show off playing on the ground.,are watching television in the background.,,gold0-orig,pos,unl,unl,pos,n/a,A large man is break dancing in front of a crowd.,The people\nlsmdc0014_Ist_das_Leben_nicht_schoen-54694,136,\"Suddenly, as the people once more start moving toward the door, she holds up a roll of bills and calls out. Someone\",jumps over the counter and takes the money from someone.,jumps back in the van.,\"opens the front door, hesitates a moment, and gets up.\",\"follows slowly into the kitchen, moving multiple papers and pans leaving them.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Suddenly, as the people once more start moving toward the door, she holds up a roll of bills and calls out.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54694,139,\"Someone hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line. Someone\",takes out his wallet and takes out all the cash he is got.,watches himself in the window.,\"stalks back, near only someone two tall straight windows.\",looks surprised and sees them in the colonel's leopard jacket.,thinks a brief moment and stares at him.,gold1-orig,pos,unl,unl,unl,pos,\"Someone hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54694,135,\"During this scene someone has come up behind the counter. Suddenly, as the people once more start moving toward the door, she\",holds up a roll of bills and calls out.,\"stops and turns back towards the door, one by one.\",is dragged to the edge of the roof.,turns again and takes the room in her portfolio and makes her way towards the farmhouse.,\"leans back, aiming a gun.\",gold0-orig,pos,unl,unl,unl,unl,During this scene someone has come up behind the counter.,\"Suddenly, as the people once more start moving toward the door, she\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54694,138,\"Someone turns and slips out through the crowd, followed by someone. Someone\",\"hands the two hundred and forty - two dollars to someone, and speaks to ed, the next in line.\",walks through the dark tunnels and crosses to the back of the car.,\"places her hands behind his back, brings his arms around her, and carries her across the graveyard.\",pulls up on the spot in his seat.,\"watches as they stand by yelling, facing each other, never seeing them in their own arms.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone turns and slips out through the crowd, followed by someone.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54694,137,Someone jumps over the counter and takes the money from someone. Someone,\"turns and slips out through the crowd, followed by someone.\",straightens his imaginary halting and checks his wrist as he videotapes.,brushes the cue aside and puts them down.,shifts his bashful gaze on his wife as the pilot returns.,storms into his office.,gold1-orig,pos,unl,unl,unl,unl,Someone jumps over the counter and takes the money from someone.,Someone\nlsmdc1040_The_Ugly_Truth-8823,1161,Someone looks uncomfortable and buttons up his shirt. Someone,puts down her glass and steps towards him.,takes the bottle someone puts.,stares thoughtfully as they exchange eagerly.,watches a glimpse of the magnificent manor house.,smiles at someone and strolls forward.,gold0-orig,pos,unl,unl,unl,pos,Someone looks uncomfortable and buttons up his shirt.,Someone\nlsmdc1040_The_Ugly_Truth-8823,1160,\"With tears in her eyes, someone steps away, drinks, and sits. Someone\",looks uncomfortable and buttons up his shirt.,looks out his window at a sofa at the far end of the room and watches a sleeping gangster near his ear watching her.,grabs his own throat.,\"turns to look at them, haughtily.\",plays the piano.,gold0-orig,pos,unl,unl,pos,pos,\"With tears in her eyes, someone steps away, drinks, and sits.\",Someone\nlsmdc3017_CHRONICLE-7103,17617,Our view circles around the room. We,find a proud grin on someone's face.,is the writing ship behind him.,\", someone peers through a window at someone's head in the lift.\",see the same intro screens.,find someone trying to cover himself.,gold1-orig,pos,unl,unl,pos,pos,Our view circles around the room.,We\nlsmdc3017_CHRONICLE-7103,17619,\"As he nods off, the camera falls. On another day, his mother\",holds it as they sit at a waterfront cafe.,sits in a garden.,watches in horror as he glances towards the wreck.,notes his travels as the two children play.,,gold0-orig,pos,unl,unl,pos,n/a,\"As he nods off, the camera falls.\",\"On another day, his mother\"\nlsmdc3017_CHRONICLE-7103,17621,\"He gives a bashful smile, then lifts his heavy - lidded eyes and stares directly at us. Now at a park, someone\",telekinetically lifts a rock off the grass and skips it across the lake.,rolls her eyes on the other girls.,follows someone through a doorway past someone's cake in the empty bathroom.,sees someone cross the lobby.,walks walking down the sidewalk and briskly heading toward the house.,gold1-reannot,pos,unl,unl,unl,unl,\"He gives a bashful smile, then lifts his heavy - lidded eyes and stares directly at us.\",\"Now at a park, someone\"\nlsmdc3017_CHRONICLE-7103,17622,\"Now at a park, someone telekinetically lifts a rock off the grass and skips it across the lake. Someone\",\"looks over, then gives a shrug.\",sniffs another plastic jar.,takes her coat and drapes it out to a sunken open grave.,draws herself up and pats the seat in front of it.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Now at a park, someone telekinetically lifts a rock off the grass and skips it across the lake.\",Someone\nanetv_HDhG0WkwGaU,4691,The videos transitions into a countdown of various people getting hurt on the streets from bull attacks. many different people,are seen running down streets while a bull flips them over and hurt them.,\"are skateboarders, as the swings parked at different speeds.\",are at different angles of people doing death and sometimes throwing them into the wilderness.,are balancing in the grass while spectators and the men all move with a rope.,stand around with a bull as the mother joins them who is seen her come to the same race in slow motion.,gold0-orig,pos,unl,unl,unl,unl,The videos transitions into a countdown of various people getting hurt on the streets from bull attacks.,many different people\nanetv_YOLDcsX7EiA,12433,A person is skiing down a hill of snow. They,go off of a jump and fly in the air.,uses a snowboard to hit a white head.,are snowboarding down a hill.,are going down a slope down the hill.,are then seen throwing snow out of the water.,gold0-orig,pos,unl,unl,unl,unl,A person is skiing down a hill of snow.,They\nanetv_YOLDcsX7EiA,12434,They go off of a jump and fly in the air. They,land back on the snow and continue skiing down the hill.,stumbles onto a rake.,jump is riding a motorcycle.,serve the ball around as they continue to play and they get down on water.,flip the cars and go off in a pool.,gold0-reannot,pos,unl,unl,unl,unl,They go off of a jump and fly in the air.,They\nlsmdc1035_The_Adjustment_Bureau-85861,9767,\"He tries another one, then attempts to lift a loading bay door. Now someone\",sits with his back against a support beam.,leads someone someone through a city window and pulls off his scooter.,places the horse up a cozy hook and lightly stretches its snout.,in the van starting smoothen him into the water.,rolls her car beside someone.,gold1-orig,pos,unl,unl,unl,unl,\"He tries another one, then attempts to lift a loading bay door.\",Now someone\nlsmdc1035_The_Adjustment_Bureau-85861,9762,\"Her shoulders sag as the man leaves, and she collects her belongings. Now as someone leaves the studio, the man in the ball cap\",opens the door for him.,pulls someone off and settles on his back and frame.,gazes down at the desk punk who reaches out and looks out.,is poured into the bag of liquids.,shoots another broken security ball at him.,gold0-orig,pos,unl,unl,unl,unl,\"Her shoulders sag as the man leaves, and she collects her belongings.\",\"Now as someone leaves the studio, the man in the ball cap\"\nlsmdc1035_The_Adjustment_Bureau-85861,9765,\"Lifting his gaze from his phone, he finds himself in the Adjustment Bureau warehouse. He\",\"whips around to the closed door, but finds it locked.\",pounds a space he handle.,\"stops as someone sprints across the street, two at a time.\",nods at his wife.,\"puts someone's umbrella to the wheel, and someone leads him on an elevator.\",gold1-orig,unl,unl,unl,unl,unl,\"Lifting his gaze from his phone, he finds himself in the Adjustment Bureau warehouse.\",He\nlsmdc1035_The_Adjustment_Bureau-85861,9763,\"Now as someone leaves the studio, the man in the ball cap opens the door for him. Someone\",texts as he walks through the doorway.,walks around the corner with a card.,walks inside with a confident smile as he cooks.,sits alone next to him.,appraises the slytherin team.,gold0-orig,pos,unl,unl,unl,unl,\"Now as someone leaves the studio, the man in the ball cap opens the door for him.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85861,9758,\"Blinking, someone looks away. He\",\"juts out his jaw, then locks eyes with her.\",\"his mouth with a wrist then sneer, someone shifts to friends, downs a shot at his son, and faces his little sister\",gulps closer to a small child sitting beside him.,picks up the drawing.,slowly turns and backs out of the shore.,gold1-orig,pos,unl,unl,unl,pos,\"Blinking, someone looks away.\",He\nlsmdc1035_The_Adjustment_Bureau-85861,9761,\"In the studio, someone shakes someone's hand, then waves to the audience. Meanwhile, a guy in a ball cap\",enters the green room.,flies up to her.,sits on his face.,knocks someone onto the drums.,answers his cell phone from the fountain.,gold0-orig,pos,unl,unl,unl,unl,\"In the studio, someone shakes someone's hand, then waves to the audience.\",\"Meanwhile, a guy in a ball cap\"\nlsmdc1035_The_Adjustment_Bureau-85861,9766,\"He whips around to the closed door, but finds it locked. He\",\"tries another one, then attempts to lift a loading bay door.\",spots someone on the other side of the corridor and slowly reaches into the shower.,lays him to the floor.,opens the door closing for someone.,wraps his wrists around someone's neck.,gold0-orig,pos,unl,unl,unl,unl,\"He whips around to the closed door, but finds it locked.\",He\nlsmdc1035_The_Adjustment_Bureau-85861,9760,\"Now someone sits in a green room. In the studio, someone\",\"shakes someone's hand, then waves to the audience.\",finds a couple on a coffee table.,arrives in a admires hoodie and inspects a complex packed chest - to - american boyish suit.,\"smokes a cigarette with one another, then looks around.\",speeds to a door which is being opened.,gold0-orig,pos,unl,unl,pos,pos,Now someone sits in a green room.,\"In the studio, someone\"\nlsmdc1035_The_Adjustment_Bureau-85861,9759,\"He juts out his jaw, then locks eyes with her. Now someone\",sits in a green room.,is dark with a skirt and a cocktail dress.,leads a lookout man.,enters the darkened bedroom in his classroom wearing his new briefs.,finds a glass of wine with some bottles and shuts the folder.,gold1-orig,pos,unl,unl,unl,unl,\"He juts out his jaw, then locks eyes with her.\",Now someone\nlsmdc0033_Amadeus-66640,116,Camera pulls back to show someone family at dinner. Someone,\"sits at the head of the table, a napkin tucked into his chin.\",enters the greenhouse as someone soaps them up.,has someone meanwhile slung over his shoulder.,sits at a reception table gazing up at the silver - lit fence.,does world - purpose championships.,gold0-orig,pos,unl,unl,unl,unl,Camera pulls back to show someone family at dinner.,Someone\nlsmdc0033_Amadeus-66640,117,\"Someone sits at the head of the table, a napkin tucked into his chin. Someone\",is serving the fish into portions and handing them round.,\"nods and steps toward him,'s chest flushed.\",struggles to get the offscreen someone.,follows someone into their pew with the crowded.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone sits at the head of the table, a napkin tucked into his chin.\",Someone\nlsmdc0033_Amadeus-66640,118,Someone receives his plate of fish and starts to eat greedily. Suddenly there is a gasp - he,starts to choke violently on a fish bone.,with a cheerful campfire.,tumbles to a halt.,\"emerges from the high farmer with the car, snapping it in half.\",glares up at someone who is deep showcased under it.,gold0-reannot,pos,unl,unl,unl,unl,Someone receives his plate of fish and starts to eat greedily.,Suddenly there is a gasp - he\nanetv_oFku30m99do,5647,A woman is seen standing in a bathroom wrapped up in a towel. The girl,holds her hair up with one hand and rubs makeup on with the other.,sets her leg near the sink and continues putting the clothes back on.,\"washes her hands and shaves her hair while rubs her hands, then sprays his hair again.\",\"scrubs the woman's leg into a tub and wipes off a towel, which covers the window.\",is brushing her hair as she watches her baking.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen standing in a bathroom wrapped up in a towel.,The girl\nanetv_FCYdwCXRNVI,16526,We see a person welding in the dark. The person,pauses and adjusts his helmet.,shows a shave equipment with a razor.,is assembling the newspaper to the ground.,\"shows us a piece of metal, and then peels it to a machine.\",inserts the crude tool underneath the vehicle.,gold0-orig,pos,unl,unl,pos,pos,We see a person welding in the dark.,The person\nanetv_FCYdwCXRNVI,16527,The person pauses and adjusts his helmet. The man,lifts his helmet briefly.,puts on the tool as he wins.,puts the ski onto top.,stops and starts a motorcycle that sits against the water.,puts the wire off and puts his mask down.,gold0-orig,pos,unl,unl,unl,unl,The person pauses and adjusts his helmet.,The man\nanetv_FCYdwCXRNVI,16529,The man lifts and lowers his helmet. the man,looks out from under his helmet.,bends over his shoulder.,stands and lifts the weight.,sails the boat sideways towards a third location.,,gold0-orig,pos,unl,pos,pos,n/a,The man lifts and lowers his helmet.,the man\nanetv_FCYdwCXRNVI,16530,The man looks out from under his helmet. The man,finishes and lifts his helmet.,reaches the end of the diving board and is pushed by a giant wave.,pulls a gun to his face and speaks on the screen.,uses the mask down.,,gold0-orig,pos,unl,unl,pos,n/a,The man looks out from under his helmet.,The man\nanetv_Yr6Oyltj6Eo,13507,\"An athletic woman is shown jumping in slow motion over a pole, followed by several more women attempting the same jump. Several more women\",follow behind performing the jump while the camera captures them in slow motion.,are shown throwing up stunts back and doing tricks while the cameraman captures her movements.,are seen being shown jumping and leading into various jumps and moves as well as a woman jumping on the side.,approach and bow and jump also after jumping on fights and ends with the man on the side before the video begins.,are seen spinning on jumps before falling off and jumping out of the field.,gold0-orig,pos,unl,unl,unl,pos,\"An athletic woman is shown jumping in slow motion over a pole, followed by several more women attempting the same jump.\",Several more women\nanetv_vvdmMyyAtN0,5026,A woman is lying on a bed with her hair spread. There,are several images of her from behind with very long hair.,woman is standing in the pool hall and walks over to a camel with two brown dogs behind it.,young man is listed surfaces in the sun.,are ironing a black shirt.,is sitting on the couch behind her as she talks.,gold0-orig,pos,unl,unl,unl,unl,A woman is lying on a bed with her hair spread.,There\nanetv_vvdmMyyAtN0,5027,There are several images of her from behind with very long hair. We then,see numerous images of her with her hair cut off to shoulder length.,see the older girl holding an eye and waving to the camera.,see them in the distance on the lake in various locations perform cartwheels at one time.,see them in the blue suit and scarf where she shows a different part of the hair and trimming her neck.,have dark hair hair and a huge brush.,gold0-orig,pos,unl,unl,unl,unl,There are several images of her from behind with very long hair.,We then\nlsmdc0012_Get_Shorty-53530,17409,Someone sits up in bed. Someone,\"sits up on his elbows, listens.\",drips a strand of blood off the rim.,pokes someone's side with her sleeve.,offers a framed photo.,\"stares at the picture, who focuses on someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone sits up in bed.,Someone\nlsmdc0012_Get_Shorty-53530,17408,Someone's already looking at him. Someone,lies asleep beside her.,swerves round the police station left.,stares at the asian purple.,sits down to the table and looks toward the microphones.,walks up to the stairs.,gold1-orig,pos,unl,unl,pos,pos,Someone's already looking at him.,Someone\nlsmdc0012_Get_Shorty-53530,17407,Someone looks to someone for help here. Someone,'s already looking at him.,strides into the next room.,leaves the somber room.,sets down his comrade.,hides behind someone's spectacles.,gold0-orig,pos,unl,unl,unl,unl,Someone looks to someone for help here.,Someone\nanetv_xUUmAdQJgjg,18938,A boy runs the length of a track. He,takes a big jump into a sand pit.,advertises the score with a start kick.,appears and a crew briefly pass a ball he picked up as he pass.,grabs a yellow arrow then steps out of the pool range.,,gold0-orig,pos,unl,unl,unl,n/a,A boy runs the length of a track.,He\nanetv_xUUmAdQJgjg,8331,They jump into a box of sand. A man,walks onto the sand to measure the distance.,joins other people and falls upside down on their surfboards.,falls at the top of a basketball net on the far landing and another man darts at the cliff.,puts no suit onto the fire.,stands next to a small group of people.,gold1-orig,pos,unl,unl,unl,pos,They jump into a box of sand.,A man\nanetv_xUUmAdQJgjg,8330,A person sprints down a track. They,jump into a box of sand.,hop onto the motorcycle and run to the pole.,run around a track and lift over obstacles.,begin to race right under the track.,jump and kick desperately high in the air.,gold1-orig,unl,unl,unl,unl,pos,A person sprints down a track.,They\nanetv_xUUmAdQJgjg,18939,He takes a big jump into a sand pit. He,jumps up and moves out of the way.,turns around and hits the ball several times.,gets to the air and waves to the camera.,goes off the diving board into the water.,jumps up and down while on the sand below.,gold1-reannot,pos,unl,unl,unl,unl,He takes a big jump into a sand pit.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55337,16418,Behind him a line of robed singers lengthens steadily as people stream out of the woods. People,emerge from the woods and gaze down at the river.,\"bends, skipping over a pair of tall, long pointed trees as if in medieval.\",steps into the podium.,and quince are left clapping with joy.,,gold0-orig,pos,unl,unl,unl,n/a,Behind him a line of robed singers lengthens steadily as people stream out of the woods.,People\nlsmdc0016_O_Brother_Where_Art_Thou-55337,16419,People emerge from the woods and gaze down at the river. White - robed people,continue to drift past them.,wave along the river over the naming.,stand behind the green cover.,stride toward a archway and under a colored archway over the beach.,walk along the stables path.,gold1-orig,pos,unl,unl,pos,pos,People emerge from the woods and gaze down at the river.,White - robed people\nlsmdc0016_O_Brother_Where_Art_Thou-55337,16417,We are booming down to reveal a minister in the foreground. He,\"stands belly - deep in the river, easing a white - robed man back - down into the water.\",\"resembles a long deliberate style, futuristic structure.\",is waterboarding direction to incoming it.,moves managed to median it.,,gold0-reannot,pos,unl,unl,unl,n/a,We are booming down to reveal a minister in the foreground.,He\nanetv_f0Z-qud2N74,16595,Two boys are wrestling in a bedroom. One boy,is picked up and thrown on the bed.,massages the other's hands with the other.,is washing his hands and washing his hands.,swings them down and starts punching a object in front of him.,gets on a smaller rope.,gold0-orig,pos,unl,unl,unl,unl,Two boys are wrestling in a bedroom.,One boy\nanetv_f0Z-qud2N74,16596,One boy is picked up and thrown on the bed. The boy,turns off the camera.,is holding a baseball timing holes in his hands and playing angrily in the security booth.,is ducking a little.,jumped down the slide several times.,throws the ball stick past the boy in the swimming pool.,gold0-orig,pos,unl,pos,pos,pos,One boy is picked up and thrown on the bed.,The boy\nlsmdc3079_THINK_LIKE_A_MAN-36750,1381,\"Frowning, his mom leaves. Someone\",peeks into a room decorated with trophies and posters.,leads him round the zoo.,tears up his coat and hugs him.,\"sits in the open champion's chair, sipping his drink.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Frowning, his mom leaves.\",Someone\nanetv_wy_oDiDK6lk,7281,The cat is faling sleep while the woman is cutting his nails. cat,is lying on woman's leg and its falling sleep while the woman is cutting her nails.,starts pulling the snake's tail out of it.,walks up and sketches in the chair with a nail brush.,was holding the back paws to a camera about how to apply the nails near and then feeling the nails of the cat.,,gold0-orig,pos,unl,unl,pos,n/a,The cat is faling sleep while the woman is cutting his nails.,cat\nanetv_wy_oDiDK6lk,17867,A lady sits on a couch and clips her cat's claws. The cat,puts it paw in the air and spreads it out.,then takes one of her bloody photographs and ties her nails.,brushes all of the cat claws at the fissure.,picks the bike off and lays its down.,continues cutting the cat's claws and the cat squirms around the girls.,gold0-orig,pos,unl,unl,unl,unl,A lady sits on a couch and clips her cat's claws.,The cat\nanetv_iyGve9RCjV4,832,Two people are seen performing various martial arts with one another while a large group of people watch on the sides. More people,stand in the middle and perform with one another and ends with people moving around and grabbing one another.,begin to arm wrestle around each other.,are seen riding around on the frame while people watch on the sides.,are seen standing around at the center and leads into a fighting man lifting the others and blocking them down.,pull up and play around while other people watch on the side.,gold0-orig,pos,unl,unl,unl,pos,Two people are seen performing various martial arts with one another while a large group of people watch on the sides.,More people\nanetv_p8_hwwgyoZE,18749,A man and woman are on a stage together. They quickly,play drums before a crowd.,dance up solo hoops while dancing.,perform a dance routine away from the throng.,begin her dance around and dance.,jump down and get to their feet.,gold0-orig,pos,unl,unl,unl,unl,A man and woman are on a stage together.,They quickly\nanetv_p8_hwwgyoZE,18750,They quickly play drums before a crowd. An older man,is then seen also playing drums.,climb onto a rooftop with an umbrella in one hand as someone continues to speak and cheers.,\"sits at a piano, chasing the accordion.\",\"sitting behind a drum, and playing a violin, while clinging to the keyboard while looking right at the instrument.\",steps in and walks over to the children.,gold0-reannot,pos,unl,unl,unl,pos,They quickly play drums before a crowd.,An older man\nlsmdc3032_HOW_DO_YOU_KNOW-2529,7946,She crosses the outer hall. She,presses the elevator button.,uses a hectic key on the door.,\"jumps up and walks across the hall, dragging someone standing against a wall.\",\"goes indoors, very noticeably.\",reaches out and takes a piece of paper.,gold1-orig,pos,unl,unl,unl,pos,She crosses the outer hall.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2529,7947,She puts them on the elevator. Someone,notes her flushed complexion.,guided her to a coil.,climbs onto the tram.,steps on the wall in front of the nude.,plunks herself on the door ledge.,gold0-reannot,pos,unl,unl,unl,pos,She puts them on the elevator.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2529,7945,Barefoot she marches to the door. She,crosses the outer hall.,buttons his blue sweater.,smiles and peels away a spoonful of paper.,turns aside to the man carrying a dresser sipping lipstick.,,gold0-reannot,pos,unl,unl,unl,n/a,Barefoot she marches to the door.,She\nanetv_YFTQImGp_nY,9867,The older members of the group hold up poles for the children dancing to swing from. The hula hoop dancers,get even more hoops for the finale.,\"move their hands, futile as they swing.\",show more of their team mates as well as the camera young followed by walking them.,perform on a large ceremony and the two women do the same.,,gold1-orig,pos,unl,unl,unl,n/a,The older members of the group hold up poles for the children dancing to swing from.,The hula hoop dancers\nanetv_YFTQImGp_nY,9864,A television announcer claps on her legs while singing introducing a show. A group of dancers in colorful costumes,do an dance act with hula hoops.,perform between dancers on a sort of wrestling competition.,are dancing playing with bows.,sit in front of their chairs.,are dancing at a motocross competition in the same location including captions.,gold1-orig,pos,unl,pos,pos,pos,A television announcer claps on her legs while singing introducing a show.,A group of dancers in colorful costumes\nanetv_YFTQImGp_nY,9865,A group of dancers in colorful costumes do an dance act with hula hoops. The audience,is seen and members clap for the group.,flip over and cheering as people enter the bar.,claps loudly with the interview and performs sit - ups.,is shown removing their hand and jumping into line.,flips and applaud while a performer resumes solo.,gold0-orig,pos,unl,unl,unl,unl,A group of dancers in colorful costumes do an dance act with hula hoops.,The audience\nanetv_YFTQImGp_nY,9869,Confetti rains from the air onto the performers. The announcer,stands up and claps for the group.,offers a man over tvs.,gives his thumbs up as he lips the band.,leads a student for the score.,\"smiles, a white couple crowded in.\",gold0-orig,pos,unl,unl,unl,unl,Confetti rains from the air onto the performers.,The announcer\nanetv_YFTQImGp_nY,9868,The hula hoop dancers get even more hoops for the finale. Confetti,rains from the air onto the performers.,\"around her neck, she fixes the hanging hoop and bounces it in the pin before standing up.\",is seen showing up.,blow brightly into people jumping.,,gold0-orig,pos,unl,unl,pos,n/a,The hula hoop dancers get even more hoops for the finale.,Confetti\nanetv_dojDT4CtenU,10574,The batter hits the ball into the stands and the moment is recaptured in 3 - d.. A reporter,comments how amazing the hit was and replays it from various angles.,watches a log in a painted park holding the camera.,speaks in the background training snatches routine and during quick battles followed by a man and interviews a subscribe screen.,\"beat a video and player appears, and a referee takes a shot.\",releases a logo one by one and then net.,gold0-orig,pos,unl,unl,unl,unl,The batter hits the ball into the stands and the moment is recaptured in 3 - d..,A reporter\nanetv_dojDT4CtenU,10575,A reporter comments how amazing the hit was and replays it from various angles. The player,is interviewed by a reporter and once again has his moment shown on tv.,puts more on the bar.,with his blue mallet begins plowing the ice.,scores several times as the opposing players are below in the ball that way to be getting behind it again.,,gold0-orig,pos,unl,pos,pos,n/a,A reporter comments how amazing the hit was and replays it from various angles.,The player\nlsmdc1027_Les_Miserables-6499,582,Someone rests his hand on someone's head and gazes fondly at him. Someone,\"leans down and kisses someone's other hand, which holds hers.\",eyes him and he pitches out.,removes his reading glasses.,opens his big eyes.,shifts his wary gaze.,gold1-reannot,pos,unl,unl,pos,pos,Someone rests his hand on someone's head and gazes fondly at him.,Someone\nanetv_t19uSLVQGWA,17704,A man is seen sitting behind a drum set beginning to play while others watch him on the side. The man,continues to play the drum set faster and faster and ends by stopping to speak to the camera.,continues singing back and fourth while the camera captures his movements.,then begins playing the violin.,then begins playing guitar while the camera captures his movements.,continues playing the instrument and looking into the camera.,gold0-reannot,pos,unl,unl,unl,pos,A man is seen sitting behind a drum set beginning to play while others watch him on the side.,The man\nlsmdc3003_40_YEAR_OLD_VIRGIN-1124,4685,Someone stares at the hot employee. She,leans on a shelf.,closes the front door.,peeks at someone's shoulder.,\"looks down thoughtfully, then drops his coat.\",drops a large turkey on a terrace nearby.,gold1-orig,pos,unl,unl,unl,unl,Someone stares at the hot employee.,She\nlsmdc3003_40_YEAR_OLD_VIRGIN-1124,4681,They see the hot salesgirl working nearby. She,yawns as she places books on shelves.,pumpkins at the bottom of the slope as the man and long stems hang from it.,licks it off with a little.,\"stands and steps out into the cockpit, where someone lies on a bunk.\",,gold0-orig,pos,unl,unl,unl,n/a,They see the hot salesgirl working nearby.,She\nlsmdc3003_40_YEAR_OLD_VIRGIN-1124,4684,He eyes someone who pretends to browse around. Someone,stares at the hot employee.,pins him with his drumsticks.,sets him on the passenger seat.,pushes him from a couch and strides away.,grins and makes his way over to the black - haired man.,gold0-orig,pos,unl,unl,unl,pos,He eyes someone who pretends to browse around.,Someone\nlsmdc3003_40_YEAR_OLD_VIRGIN-1124,4683,He closes his mouth and stuffs his hands in his pockets. He,eyes someone who pretends to browse around.,\"advances on the knife wrapped in hot cloth, using a bag.\",takes the tray away from the baby and sits down.,steps up beside someone and faces him.,,gold1-orig,pos,unl,unl,unl,n/a,He closes his mouth and stuffs his hands in his pockets.,He\nlsmdc3003_40_YEAR_OLD_VIRGIN-1124,4682,She yawns as she places books on shelves. He,closes his mouth and stuffs his hands in his pockets.,\"opens the lid to find a woman, and places the box on a rack.\",emerges with her dress as someone steps in through the metal gate of a tall kitchen.,sets the aside asleep someone's arm and takes a few steps closer and watches as contemplative guests rush back into the room.,helps slide up onto the bed.,gold0-orig,pos,unl,unl,unl,unl,She yawns as she places books on shelves.,He\nanetv_IhWxuvzIHkc,2430,The man begins vacuuming up some white powder on a hardwood floor. The man,stops vacuuming and gets a close up view of the clean floor.,uses a toothbrush to smell the rest of the sink with several different attachments and a long glass of air.,sprays the rug on the floor.,fold up and moves his torch.,\"takes a jack on the floor, puts drinks and puts soap on his shoe.\",gold0-orig,pos,unl,unl,unl,unl,The man begins vacuuming up some white powder on a hardwood floor.,The man\nanetv_IhWxuvzIHkc,2429,A man turns on his vacuum with his bare feet. The man,begins vacuuming up some white powder on a hardwood floor.,stretches forward taking off the shoes.,picks up the protective leg and wipes back material on the man's hands.,shows how to hold a mop in the abandoned cabin.,,gold0-orig,pos,unl,unl,unl,n/a,A man turns on his vacuum with his bare feet.,The man\nanetv_exxji9vqjSw,18871,Various shots are shown of snowy mountains that transition in between shots of people skiing and snowboarding down the mountain. The people,are seen performing various flips and tricks down the mountain while the camera captures them from many angles as well as the mountain.,continue riding along the locomotive going around the 30 and another knee.,continue to push a skateboard behind the trees and end by taking the board and waving.,speak to other areas along the water and jump off their horses and ride to one another.,are then seen walking canoes in the river while going down a hill while sitting down in tubes.,gold0-orig,pos,unl,unl,unl,unl,Various shots are shown of snowy mountains that transition in between shots of people skiing and snowboarding down the mountain.,The people\nanetv_ZjHIN-M-dQY,11743,One man moves a stationary bike. A woman,adjusts the top hat she is wearing.,picks up a phone and talks with the camera in a series of clips of riding on.,holds a food weight to his shoulder.,eats inside a fitness machine.,starts wearing a white t shirt and begins to do shimmy ups instructing them.,gold1-orig,pos,unl,unl,unl,unl,One man moves a stationary bike.,A woman\nanetv_ZjHIN-M-dQY,11742,A group of people re riding stationary bikes in a big gym. One man,moves a stationary bike.,wins and everyone gets more excited.,switches around and watches the second bike go by.,takes up jumps starts knocking on a wall next to the other man.,gets off of a ladder and kick his foot.,gold1-orig,pos,unl,unl,unl,unl,A group of people re riding stationary bikes in a big gym.,One man\nanetv_mO1T8zhIliY,14993,Two people are seen fencing back and fourth. The people,push one another around on a mat while others watch on the side.,walk around adjusts adjusts touches and leads into shots of two other people drinking.,kick the ball against the side.,dance back and fourth while others watch on the sides.,continue to push on and fourth with one another.,gold0-reannot,pos,unl,unl,unl,pos,Two people are seen fencing back and fourth.,The people\nanetv_e60HGAzBOvo,13417,The man then removes the tape and turns the ski onto it's side to scrape at it. When he's finished he,grabs the ski and puts it into a compartment that is located above the green machine.,wipes the boots off with a bloody clean towel.,smells the finish product to get out.,cuts back to show his experiences with two different power parts.,,gold0-orig,pos,unl,unl,unl,n/a,The man then removes the tape and turns the ski onto it's side to scrape at it.,When he's finished he\nanetv_Yc9pZ8Vy-3s,4726,The people kayak under a bridge where people are jumping into the water to swim. At the end a person,flips the kayak going under water briefly before turning themselves right side up in the water again.,is shown scuba diving.,in green jumps into the water some lifeboats.,is digging underwater in the rough line and around the water.,is smiling up from the inflatable and right after wake.,gold0-orig,pos,unl,unl,unl,unl,The people kayak under a bridge where people are jumping into the water to swim.,At the end a person\nanetv_Yc9pZ8Vy-3s,4725,\"Two people kayak on a rough, narrow, body of water surrounded by rocks using paddles to navigate the water, later on the y kayak off of rocks and slide into the water. The people\",kayak under a bridge where people are jumping into the water to swim.,ride on the boat.,continue rafting rafts until they in the water as they walk along the docks.,\"seem unaware of the presence, hitting the water directly out of their way after boards out over it.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Two people kayak on a rough, narrow, body of water surrounded by rocks using paddles to navigate the water, later on the y kayak off of rocks and slide into the water.\",The people\nlsmdc3013_BURLESQUE-4808,1008,Someone tips her biker cap. Someone,glares down at them.,shoots as the guards aim their weapons.,sees the helmeted team.,brings the refrigerator over to someone who hugs her.,pays the driver jowly face.,gold1-orig,pos,unl,unl,unl,pos,Someone tips her biker cap.,Someone\nlsmdc3013_BURLESQUE-4808,1000,\"As the red spotlight fixes on someone for her turn to lip - sync, someone pulls a plug. Someone\",stops dancing and gazes across the lounge toward the sound booth.,stows the note pad up on the floor behind the elevators.,\"maneuvers along the lawn, high over the curve in bank.\",munches like someone slapped.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the red spotlight fixes on someone for her turn to lip - sync, someone pulls a plug.\",Someone\nlsmdc3013_BURLESQUE-4808,1014,Someone's backup dancers push her forward. She,\"curtsies, then bows with the others.\",leads someone across the shoulders to someone's room.,kneel on their faces and grins at them.,cups her wrists with her hands.,touches her arms chest and shakes her head.,gold0-orig,pos,unl,unl,unl,unl,Someone's backup dancers push her forward.,She\nlsmdc3013_BURLESQUE-4808,998,\"Meanwhile, someone enters the sound booth. Someone\",\"watches someone leave, then moves to his soundboard.\",subdues her the guard to it.,stops and inserts his phone.,go through some metal doors and pirates unload on coffin balcony on a deposits.,opens cabinet drawer and peers inside.,gold0-orig,pos,unl,unl,unl,pos,\"Meanwhile, someone enters the sound booth.\",Someone\nlsmdc3013_BURLESQUE-4808,1004,\"As the curtain continues to drop, she opens her mouth. The curtain\",freezes above someone's head.,wraps up and the lights are thrown.,munches a closed fan.,yanks off the curlers.,struggles her head round and falls.,gold0-orig,pos,unl,unl,unl,unl,\"As the curtain continues to drop, she opens her mouth.\",The curtain\nlsmdc3013_BURLESQUE-4808,1006,\"As the band joins her, she struts toward the audience. Dancing, she\",swings her hips from side to side.,holds her gaze to an glamorous above her.,sweeps her attention across the room.,\"withdraws her flooded dance floor and closes her eyes, still alternating her feet by the platform.\",twirls between the dancers.,gold0-orig,pos,unl,unl,unl,pos,\"As the band joins her, she struts toward the audience.\",\"Dancing, she\"\nlsmdc3013_BURLESQUE-4808,1001,Someone stops dancing and gazes across the lounge toward the sound booth. Someone,gives a satisfied smile.,sits down the aisle and speaks to his judges.,has entered the room to start up until he reaches the level of the hall.,repeats the room briskly as she looks.,\"gets up on one knee, constantly blowing into the last rail.\",gold0-orig,pos,unl,unl,unl,unl,Someone stops dancing and gazes across the lounge toward the sound booth.,Someone\nlsmdc3013_BURLESQUE-4808,997,\"Someone tosses someone a costume. Meanwhile, someone\",enters the sound booth.,\"struggles two old ladies, pushing him back against the bed.\",gets out of the limo.,thrusts her plate in to her.,escorts someone in down a corridor.,gold1-orig,pos,unl,unl,unl,pos,Someone tosses someone a costume.,\"Meanwhile, someone\"\nlsmdc3013_BURLESQUE-4808,1013,\"Someone storms out of the sound booth with a sour expression. A spotlight fades up onstage and the bartenders, including someone,\",clap for the performers.,look up at their clocks.,stand by a table and exchange camp.,stand over the ping - pong table.,,gold1-orig,pos,unl,unl,unl,n/a,Someone storms out of the sound booth with a sour expression.,\"A spotlight fades up onstage and the bartenders, including someone,\"\nlsmdc3013_BURLESQUE-4808,1003,\"Onstage, someone sees the curtain descending. Someone tentatively\",steps to the front of the stage.,raises his hand to join them.,takes the ring on his finger.,takes a pen from his pack and sits up.,follows someone as people walk up.,gold0-orig,pos,unl,unl,unl,unl,\"Onstage, someone sees the curtain descending.\",Someone tentatively\nlsmdc3013_BURLESQUE-4808,1002,\"Meanwhile, someone finds someone backstage. Onstage, someone\",sees the curtain descending.,backs up some stairs.,sings eastern spanish from the dance studio.,sits into the pool facing its central chat.,sits among her guests.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone finds someone backstage.\",\"Onstage, someone\"\nlsmdc3013_BURLESQUE-4808,999,\"Onstage, a spotlight shines on someone. The light\",shines on another dancer.,came up with them.,hits someone across the face.,glows a powder almost blue.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Onstage, a spotlight shines on someone.\",The light\nlsmdc3013_BURLESQUE-4808,1007,\"Dancing, she swings her hips from side to side. Someone\",smiles and shakes her head.,looks up as someone resumes his calculations.,\"hangs on the fence behind her in a mirror, facing her cars.\",leads her over to a distance dancing.,stares at her sadly.,gold0-reannot,pos,unl,unl,unl,pos,\"Dancing, she swings her hips from side to side.\",Someone\nlsmdc3013_BURLESQUE-4808,1012,\"As someone hugs someone, the crowd rises in a standing ovation. Someone\",storms out of the sound booth with a sour expression.,takes two plates of drinks.,takes on his cloak.,\"sits up from her class, the television set, as someone backs away from the house.\",see the majority in the auditorium clapping someone's hands and the flame of another binding table.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone hugs someone, the crowd rises in a standing ovation.\",Someone\nlsmdc3013_BURLESQUE-4808,1011,\"Someone strikes a pose with her arms in the air and the stage lights blink off. As someone hugs someone, the crowd\",rises in a standing ovation.,rolls over and sobs.,wraps their arms around each other's waist.,breaks and their propellers creep in.,turns to face him as he dances to the top.,gold0-reannot,pos,unl,unl,unl,pos,Someone strikes a pose with her arms in the air and the stage lights blink off.,\"As someone hugs someone, the crowd\"\nlsmdc3013_BURLESQUE-4808,1005,\"The stagehand pulls a rope and the curtain rises back to the ceiling. As the band joins her, she\",struts toward the audience.,steps off of the dance floor.,hangs up next to someone.,strides into her suite with mr.,moves down a modern - looking staircase.,gold0-reannot,pos,unl,unl,unl,pos,The stagehand pulls a rope and the curtain rises back to the ceiling.,\"As the band joins her, she\"\nlsmdc3063_SOUL_SURFER-31336,6926,Someone answers with a thoughtful nod. Her father,kisses and hugs her.,flexes her right hand.,hands them to her.,\"takes out dolce curiously, then faces someone squarely.\",breaks off the line.,gold0-orig,pos,unl,unl,unl,pos,Someone answers with a thoughtful nod.,Her father\nanetv_485Wn1DXt5U,4041,Another girl then tries to do the same thing but she is n't successful. The first girl,comes back and does it effortlessly as the second girl still struggles.,dances from the corner and walks in the other direction.,does the same thing again in the great time.,gets up and points her hula hoop with her hands.,,gold0-orig,pos,unl,unl,unl,n/a,Another girl then tries to do the same thing but she is n't successful.,The first girl\nanetv_485Wn1DXt5U,4042,\"The first girl comes back and does it effortlessly as the second girl still struggles. For the last round, the girl\",begins to hula hoop and drinks soda and runs across the grass.,flips up and exits the frame to keep.,holds the impassive pin of the groom and motions for a black shoe to hop on.,makes her way up and down the slide with the girl on it.,,gold1-reannot,unl,unl,unl,unl,n/a,The first girl comes back and does it effortlessly as the second girl still struggles.,\"For the last round, the girl\"\nanetv_zJX_Oh4yVnc,17509,A person is seen riding around on a dirt bike that leads into him speaking to the camera. He,shows off his bike as well as camera and leads into several clips of him riding around.,spray shows and get up to waxing weights and going back and fourth.,follows running all down the hills while looking off into the distance.,pulls off the shoes and starts to fly down on a skateboard track.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen riding around on a dirt bike that leads into him speaking to the camera.,He\nanetv_zJX_Oh4yVnc,17510,He shows off his bike as well as camera and leads into several clips of him riding around. He,continues to ride around on the track while also showing close ups of himself as well as the camera.,begins playing the piano together and continues to change his handles.,turns around and talks about the waves as he plays and throws back and fourth.,is then seen running down a track while fast on his board.,rides a dirt bike around on the beach and plays onto the ice.,gold0-orig,pos,unl,unl,unl,unl,He shows off his bike as well as camera and leads into several clips of him riding around.,He\nanetv_dRRht9vdYDE,938,There are a few older gentlemen playing a game on ice. They have a coach to help them and he,talks about how to curl.,bows to like graphs.,gets cooked to get them to instruct them.,demonstrates a tai technique that they should win.,\"'ll yell how they can get more wind tips, until he bends forward.\",gold0-orig,pos,unl,unl,unl,pos,There are a few older gentlemen playing a game on ice.,They have a coach to help them and he\nanetv_dRRht9vdYDE,940,\"He talks about the steps and how to get in the hack, even demonstrating. He\",seems pretty professional walking on the ice with his shoes on while demonstrating.,\"moves around in this time, letting it clear it are far down.\",shows a bike given how to fall on a black bike.,moves to talk inside the and can a little measure process as he is about to be showing how to cut the wood.,,gold0-orig,unl,unl,unl,unl,n/a,\"He talks about the steps and how to get in the hack, even demonstrating.\",He\nanetv_dRRht9vdYDE,939,They have a coach to help them and he talks about how to curl. He,\"talks about the steps and how to get in the hack, even demonstrating.\",is talking on the fridge.,\"both are dancing, chasing each other, and people continue to play again.\",bounces several times on a horse to look at the target.,turns to catch his breath.,gold1-orig,pos,unl,unl,unl,pos,They have a coach to help them and he talks about how to curl.,He\nanetv_CIcVR4m7nOc,2828,They get in a river on tubes. They,float near a large bridge.,land on the tubes in the road.,ride a rowing car down a river.,begin to go down the beach.,use their oars to style through the waves.,gold0-orig,pos,unl,unl,unl,unl,They get in a river on tubes.,They\nanetv_CIcVR4m7nOc,2829,They float near a large bridge. The water,gets a little choppy.,is filled with people by rafters.,spins from every angle.,is passing through rhythm.,gush in the river flowing like a waterfall.,gold1-orig,pos,unl,unl,unl,pos,They float near a large bridge.,The water\nanetv_CIcVR4m7nOc,2827,Several people stand outside of cars. They,get in a river on tubes.,get off their snowboards.,wash their hands and jump in the water to wash them.,go down the river.,,gold1-reannot,unl,unl,unl,unl,n/a,Several people stand outside of cars.,They\nanetv_hYj38k-VOFM,13128,A person is seen raking a yard and pauses to put his hand in his pocket. Another man,comes walking in with a leaf blower pushing the leaves around.,rides a dirt mower on the lawn followed by a closeup of an lawn mower.,scrubs the sitting down and walks on.,gets larger and focuses on the log while pushing off the mower to get off the mower.,then lights a cigarette and places it near the windows.,gold0-orig,pos,unl,unl,unl,unl,A person is seen raking a yard and pauses to put his hand in his pocket.,Another man\nanetv_0PbmXOVIwGc,15074,\"A woman grooms the right body of a horse, she brush the neck, body and legs. Then, the woman goes to the left side of horse and kneel to groom the legs, and then she\",brush the other parts of the body.,moves off using the woman who does the same.,lifts the horse ankle.,puts her hands on foot.,,gold0-orig,pos,unl,pos,pos,n/a,\"A woman grooms the right body of a horse, she brush the neck, body and legs.\",\"Then, the woman goes to the left side of horse and kneel to groom the legs, and then she\"\nlsmdc3048_LITTLE_FOCKERS-23182,7116,\"Clinging by his legs, he opens his arms. Someone\",turns and sees someone approaching.,sends a fiery drone into the air - - frightened.,stamps the upper right into a wall which rears up.,falls on top of him.,steps back as the ship disappears.,gold0-orig,pos,unl,unl,pos,pos,\"Clinging by his legs, he opens his arms.\",Someone\nlsmdc0004_Charade-47306,18026,She stops as she is aware of a weird figure hovering over her. Camera,\"pans down to include someone, his hand held firmly by the man in the mask.\",stares as someone sits in one of the hallway doors.,\"returns home and runs toward the kids in the garden, then spies grumpy at a corner, sharing his point of view.\",follows her with a record of little someone walking along.,sees a splash of subway tracks.,gold0-reannot,pos,unl,unl,unl,pos,She stops as she is aware of a weird figure hovering over her.,Camera\nanetv_GLHsjvmOXRs,4932,\"A news woman sits at a desk, talking. We\",\"see numerous people running into water with kayaks, racing down a river of rapids.\",then take a drink and start cooking in the salon.,are sharpening something on the ground.,are gathered in a locker room.,plays next to a kitchen counter.,gold1-orig,unl,unl,unl,unl,unl,\"A news woman sits at a desk, talking.\",We\nanetv_GLHsjvmOXRs,4933,\"We see numerous people running into water with kayaks, racing down a river of rapids. When they are done, several of the competitors are interviewed on camera, and others\",walk in the water on fake kayaks.,comes disappearing after in a line and stands at one end.,announce a meeting and get in.,team tries to life at the way they have held the ball for their money.,about about boiling around.,gold1-reannot,unl,unl,unl,unl,unl,\"We see numerous people running into water with kayaks, racing down a river of rapids.\",\"When they are done, several of the competitors are interviewed on camera, and others\"\nanetv_P6t2HLPZ3Dk,1646,A boy dressed in a burgundy polo is at a bowling alley and throws the ball high up in the air and it ends up coming back in the other lane. More bowlers are shown and they,begin falling onto the lanes as the attempt to throw the ball.,look like race bikes being close.,'re engaged in a game of tug of war in the hot pile while spectators look disgruntled from around the area.,\"continue running, hitting the ball and aiming for one.\",are practicing impressive stunts as they pass the cord of the pull ups before landing to the ground between them.,gold0-orig,pos,unl,unl,unl,unl,A boy dressed in a burgundy polo is at a bowling alley and throws the ball high up in the air and it ends up coming back in the other lane.,More bowlers are shown and they\nanetv_P6t2HLPZ3Dk,1647,More bowlers are shown and they begin falling onto the lanes as the attempt to throw the ball. A man then,comes along and spins around on his head and ends up hitting the pins with the balls.,picks the puck up and throws it over the net.,runs up a lane toward the sand and walks around the shuffleboard.,dives down a lane and hits the ball using a stick.,,gold1-orig,pos,unl,unl,pos,n/a,More bowlers are shown and they begin falling onto the lanes as the attempt to throw the ball.,A man then\nanetv_LxntXVcMxtc,336,Two girls in karate class bow forward and then to each other before practice. The girl,dodges an attack by taking a knee while blocking a hit.,finishes dancing routine and then exits with a boy and fix fancy tennis on the really white floor.,leads the other dancers on stage.,moves her body around an iron line on the ground high at the end of the jump ropes.,demonstrates several sultry and handsprings tricks following smiles and the same actions.,gold0-orig,pos,unl,unl,pos,pos,Two girls in karate class bow forward and then to each other before practice.,The girl\nanetv_LxntXVcMxtc,338,The karate students punch and block with their wrists. The girl,does a standing spinning kicks.,raises students stand on the platform.,hands a prizes to her coach.,\"rises, looks around, landing.\",,gold0-orig,pos,unl,unl,pos,n/a,The karate students punch and block with their wrists.,The girl\nanetv_LxntXVcMxtc,337,The girl dodges an attack by taking a knee while blocking a hit. The karate students,punch and block with their wrists.,continue swinging one fourth of the girl around.,wait in the white entrance.,assist one doorman as they go.,continue jumping over someone's long brown beard.,gold1-orig,unl,unl,unl,unl,unl,The girl dodges an attack by taking a knee while blocking a hit.,The karate students\nlsmdc1014_2012-78917,4348,Someone's pilot someone marches over. A case,hits someone's foot.,is removed from the hanger and painted it bald.,dangles over the mannequin.,goes out after her.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's pilot someone marches over.,A case\nlsmdc1014_2012-78917,4346,Someone pulls up on the driveway outside someone's palatial mansion in Bel Air. Curly - hair twin boys people,wait on the steps.,\"keep stationary leashes down, as the timekeeper punches someone 'keys.\",are strewn all around.,have stained - blonde hair across the walkway.,arrive outside a dilapidated ranch style mansion.,gold1-orig,pos,unl,unl,unl,unl,Someone pulls up on the driveway outside someone's palatial mansion in Bel Air.,Curly - hair twin boys people\nlsmdc1014_2012-78917,4344,Someone watches by the limo as someone comes outside. Someone,smiles and waves to someone as she goes inside.,pulls up off the shack.,\"sits on the edge of the cockpit, holding two guns in his hand.\",catches her breath.,comes to a full - length mirror.,gold0-orig,pos,unl,unl,unl,unl,Someone watches by the limo as someone comes outside.,Someone\nlsmdc1014_2012-78917,4341,Someone drives the kids in the limo. The kids,fell asleep in the back seat.,hurry around watch them drive after a dilapidated ramp.,hurry inside the house and read a newspaper film.,stare fearfully at their damaged children.,are in a boat pulled alongside a bus.,gold0-orig,pos,unl,unl,unl,unl,Someone drives the kids in the limo.,The kids\nlsmdc1014_2012-78917,4343,Someone pulls up outside someone's house in the early morning dew. He,climbs out of the limo.,hammers away from her oven into the kitchen.,sees someone in the school gym theater outside with his hands in his pockets.,returns to his tent and finds a weather radio.,passes the door and pushes someone toward his cabin.,gold0-orig,pos,unl,unl,pos,pos,Someone pulls up outside someone's house in the early morning dew.,He\nlsmdc1014_2012-78917,4345,Someone gets back into the limo. Someone,changes into a chauffeur's uniform.,hands him the bear.,smiles at someone ahead and sits up.,\"watch someone, then approaches ahead and removes his belt.\",looks at him apologetically.,gold0-orig,pos,unl,pos,pos,pos,Someone gets back into the limo.,Someone\nlsmdc1014_2012-78917,4347,They both check their watches. Someone,takes their luggage over to the boot.,listens to themselves as he comes in.,\"walks up, holding the backpack.\",clicks into the hole.,picks up someone's clock.,gold0-orig,pos,unl,pos,pos,pos,They both check their watches.,Someone\nlsmdc1014_2012-78917,4342,The kids fell asleep in the back seat. Someone,pulls up outside someone's house in the early morning dew.,places someone in the console.,gets out of a chair then gulps her down.,takes a seat at the edge of her bed.,,gold0-reannot,unl,unl,unl,unl,n/a,The kids fell asleep in the back seat.,Someone\nlsmdc3047_LIFE_OF_PI-22032,13103,\"The young beauty takes his hand. Now on a freighter ship, someone\",leans on the rail of the main deck.,joins someone in his basement.,pours to a glass of whisky in a bowl.,speaks to a panel with another girl to see the rocks.,,gold0-orig,pos,unl,unl,unl,n/a,The young beauty takes his hand.,\"Now on a freighter ship, someone\"\nlsmdc3047_LIFE_OF_PI-22032,13106,\"Someone eyes her son then walks away. Blinking rapidly, someone\",keeps his gaze fixed on the horizon.,stops and tenses as someone starts glumly the door.,stares into his eyes then lovingly gives her a long kiss.,rests his chin against the ceiling.,breaks into a smile.,gold1-orig,pos,unl,unl,unl,pos,Someone eyes her son then walks away.,\"Blinking rapidly, someone\"\nlsmdc3047_LIFE_OF_PI-22032,13104,He gazes back at the brilliant sun setting beyond his homeland on the horizon. He,faces forward then looks back at the sun as his mother approaches.,breathes lightly towards the lion's enclosure.,falls back into the lifeboat over the ocean.,\"stares into the water between the clouds, which ripples through the waters.\",watches as the water pier shields him from dry.,gold0-orig,pos,unl,unl,unl,unl,He gazes back at the brilliant sun setting beyond his homeland on the horizon.,He\nlsmdc3047_LIFE_OF_PI-22032,13105,He faces forward then looks back at the sun as his mother approaches. Someone,\"stops beside her boy, following his gaze to the setting sun.\",\"sits on a small couch, pulling ropes.\",\"smiles, then goes to his desk and places someone's hand on someone's shoulder.\",turns and looks at the american.,kisses someone on the head.,gold0-orig,pos,unl,unl,unl,pos,He faces forward then looks back at the sun as his mother approaches.,Someone\nlsmdc3047_LIFE_OF_PI-22032,13107,\"Now in the eating quarters, someone faces a husky, larged - nosed cook. The cook\",reaches behind the counter and puts a morsel of parsley on the plate.,gives him a sniff.,turns off the sink.,\"holds out a selection of trays, which is loaded into their dinner pot.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Now in the eating quarters, someone faces a husky, larged - nosed cook.\",The cook\nlsmdc3047_LIFE_OF_PI-22032,13102,Someone stares longingly at his mother. Someone,sits with someone as she ties pink string around his wrist.,joins him on earth.,gives her a little instead.,\"appears, grabbing onto the collar of its tunic.\",is now pinned with his medal.,gold0-reannot,pos,unl,unl,pos,pos,Someone stares longingly at his mother.,Someone\nanetv_1jl5qtS4mNQ,1565,The man pulls the carpet back from the wall and sticks the strip on the board under the carpet. We then,see the carpet up close.,see the ending screen screen.,put cement on the wall of material.,see the ending title.,see the finished screen.,gold0-orig,pos,unl,unl,pos,pos,The man pulls the carpet back from the wall and sticks the strip on the board under the carpet.,We then\nanetv_1jl5qtS4mNQ,1564,\"A man wipes a wall with his hand, and pulls a cord up from the baseboard. The man\",pulls the carpet back from the wall and sticks the strip on the board under the carpet.,shows off the end of the tire and unties the tools and trimming the finger.,puts the children on top of it and applies a thumb up to each other.,climbs over the man french grips on the tire with a horizontal line.,uses a white shovel to flatten vaults on the ground.,gold0-orig,pos,unl,unl,unl,unl,\"A man wipes a wall with his hand, and pulls a cord up from the baseboard.\",The man\nanetv_1jl5qtS4mNQ,1566,We then see the carpet up close. The ending credits,run over a man playing piano.,are shown from a lady.,roll behind the screen.,and the video scene is shown.,are presented with a screen.,gold0-reannot,pos,unl,unl,pos,pos,We then see the carpet up close.,The ending credits\nanetv_1jl5qtS4mNQ,12224,They pull up the carpet with a tool. Someone,is playing a piano at the end.,uses it to wipe the techs clean.,hooks his back with a pen.,pulls the tv off of the pipe.,blows one out and leaves the room.,gold0-reannot,pos,unl,unl,unl,unl,They pull up the carpet with a tool.,Someone\nlsmdc0013_Halloween-53715,12532,Someone shakes his head and looks across the graveyard. Someone,\"checks his notebook, then counts the rows and plots.\",sits in a circle and begins to run out.,slowly reaches for the controls of his machine gun.,looks up sharply at him.,,gold0-orig,pos,unl,unl,pos,n/a,Someone shakes his head and looks across the graveyard.,Someone\nlsmdc0013_Halloween-53715,12531,\"The headstone is missing, uprooted from the ground. Someone\",shakes his head and looks across the graveyard.,is getting his bearings.,gets out of his car.,drops to his knees.,,gold0-orig,pos,pos,pos,pos,n/a,\"The headstone is missing, uprooted from the ground.\",Someone\nlsmdc0013_Halloween-53715,12527,Camera booms down as a car pull up on the small road in f. g.. Someone,\"gets out, along with someone, the graveyard owner.\",lifts a hatch onto the wheel and takes off his jacket.,grabs onto the bars.,eyes someone then follows her mother from the shop.,knocks over the window as he rolls out of view into the distance.,gold0-orig,pos,unl,unl,unl,unl,Camera booms down as a car pull up on the small road in f. g..,Someone\nlsmdc0013_Halloween-53715,12530,He points to a plot right in front of them. Someone,gives someone a quizzical look.,walks away from his sprint.,watches someone as she dunks her head and avoids her gaze.,\"turns to someone, shakes his head and takes his candy.\",takes a cup of coffee.,gold0-orig,pos,unl,pos,pos,pos,He points to a plot right in front of them.,Someone\nlsmdc0013_Halloween-53715,12529,He glances at a small notepad. The two men,\"begin walking along the graveyard, winding around headstones and flowers.\",\"lean close, then lift a hatch.\",\"lean down, sticks his rock to their side.\",are lifting it over.,,gold0-reannot,pos,unl,unl,unl,n/a,He glances at a small notepad.,The two men\nlsmdc0013_Halloween-53715,12528,\"Someone gets out, along with someone, the graveyard owner. He\",glances at a small notepad.,\"uses the knife to advance at someone 'desk, then peer through it.\",is hopping on he is going to enter the shop.,lets himself pilots high into the water.,\"walks into the driveway, snatching a letter from a desk.\",gold1-reannot,pos,unl,unl,unl,unl,\"Someone gets out, along with someone, the graveyard owner.\",He\nanetv_lGWAepvduTI,18539,The man puts the weight behind his head and starts to do sit ups on the seat and he is straining to do the sit ups with the weight. He,puts the weight down in front of him and gets up and walks away.,turns and looks back to the camera.,\"sits, balancing the weight over his head and raising his legs in a correct manner.\",\"ends the routine in slow motion with one hand, lifts turns and ties the other ends of the barbell.\",continues again lifting his hands up and down.,gold1-orig,pos,pos,pos,pos,pos,The man puts the weight behind his head and starts to do sit ups on the seat and he is straining to do the sit ups with the weight.,He\nanetv_lGWAepvduTI,18538,\"A man comes in to a home gym, sits down and picks up a weight to work out. The man puts the weight behind his head and starts to do sit ups on the seat and he\",is straining to do the sit ups with the weight.,drops drops to the ground.,continues to move it with the camel.,\"starts to do his move, then left.\",,gold0-orig,pos,unl,unl,pos,n/a,\"A man comes in to a home gym, sits down and picks up a weight to work out.\",The man puts the weight behind his head and starts to do sit ups on the seat and he\nanetv__4oBeoCuU7M,8951,\"Two cars are seen parked outside of a garage as a man focuses his camera. Once the camera is sin position, a man\",is shown with a steel mask on as he beats a piece on a concrete.,makes pieces of and grabs the grass.,appears wearing a mask cleaning his own while he begins whipping.,enters the camera with the skateboard on it.,is seen kneeling down playing through.,gold0-reannot,pos,unl,unl,unl,unl,Two cars are seen parked outside of a garage as a man focuses his camera.,\"Once the camera is sin position, a man\"\nanetv__4oBeoCuU7M,8952,\"Once the camera is sin position, a man is shown with a steel mask on as he beats a piece on a concrete. The piece is on the concrete and he\",puts the bottom of the mask on and begins burning the metal.,begins to talk about what turn to do exercises.,begins a second to show the exercise.,takes for a long stick to smoke from it.,is using the pole until the hand is removed.,gold0-reannot,pos,unl,unl,unl,unl,\"Once the camera is sin position, a man is shown with a steel mask on as he beats a piece on a concrete.\",The piece is on the concrete and he\nlsmdc3026_FRIENDS_WITH_BENEFITS-1566,7752,Now someone and her mom play the table tennis. Her mother,sees someone's face on someone's cell display.,gives the children to her.,hides a pipe on a sofa in her own bed.,picks up a small packet from the three baby fur.,steps up on top of them.,gold0-orig,pos,unl,unl,unl,unl,Now someone and her mom play the table tennis.,Her mother\nlsmdc3026_FRIENDS_WITH_BENEFITS-1566,7751,Someone gets a cell call from someone. Now someone and her mom,play the table tennis.,drapes a leg in the sleeping room in a hospital dining room.,get over an escalator at a duct post.,sit on the boat behind one of the submersible.,play the violin together.,gold1-orig,pos,unl,unl,pos,pos,Someone gets a cell call from someone.,Now someone and her mom\nlsmdc3026_FRIENDS_WITH_BENEFITS-1566,7754,Someone picks up a game controller. She,talks into it like a microphone.,hands him an envelope and documents.,goes to the shambles.,holds it in the same aisle.,,gold0-orig,pos,unl,unl,unl,n/a,Someone picks up a game controller.,She\nlsmdc3026_FRIENDS_WITH_BENEFITS-1566,7750,An i m comes in from her mom. Someone,gets a cell call from someone.,has a swollen eye and a red lipstick hanging across her eye.,goes through the door with the door still open.,does not go nuts.,,gold0-reannot,pos,unl,unl,unl,n/a,An i m comes in from her mom.,Someone\nanetv_wO9DGYTAX70,13773,The woman then wears a glove and brushes the horse all over while the capture captures her movements and the horse. She,brushes the back of it's tail and finishes around it's belly.,continues up the horse and ends by looking down and doing the barre.,falls off the horse and in front of the camera playing the games while still speak to the camera.,stretches the calf around and continues running around while getting the frisbee up.,stops and shows her fake hair that is finally done.,gold0-orig,pos,unl,unl,unl,unl,The woman then wears a glove and brushes the horse all over while the capture captures her movements and the horse.,She\nanetv_wO9DGYTAX70,13772,Slow motion shows of people riding horses over jumps are shown that lead into a woman speaking to the camera with a horse behind her. The woman,then wears a glove and brushes the horse all over while the capture captures her movements and the horse.,moves the horse along the length as the horse continues speaking to the camera.,demonstrates jumping to another field bearing several other coach members on the horse as well as jump roping.,continues riding down the snowy hill while performing tai jumping with the children on the side in front of the camera.,rides a horse around while looking up in the distance and walking away from the crowd watching her over.,gold1-orig,pos,unl,unl,unl,pos,Slow motion shows of people riding horses over jumps are shown that lead into a woman speaking to the camera with a horse behind her.,The woman\nanetv_DLFerdBxdxQ,12352,The mix is blended and put on the table to be served on the tortillas. The women,sit at the table and talk as they eat.,line their hips from the ground in line.,is still drinking a large cup of water and mixing a drink in water.,pat their hands with a brand of milk.,,gold0-orig,pos,unl,unl,pos,n/a,The mix is blended and put on the table to be served on the tortillas.,The women\nanetv_DLFerdBxdxQ,12351,\"A woman is standing at a table, putting food into a large pita on a plate. An older woman\",\"demonstrates how to cut onions, peppers, lettuce, carrots, tomatoes, etc into chunks.\",begins putting pumpkins on her bosom as she mixes ingredients and stirs it around.,is shown sitting at a table with the fruit in her hand.,is talking to the camera while standing next to the woman on the sides.,is seen speaking to the camera and leads into a man speaking in front of her.,gold1-orig,pos,unl,unl,pos,pos,\"A woman is standing at a table, putting food into a large pita on a plate.\",An older woman\nanetv_M5UrBI13R3s,3537,\"A white intro screen appears and red letters in a foreign language appear flashing on the screen. A white bowl filled with water and 3 potatoes appear in one bowl, and ice cubes\",are in another white bowl.,are shown followed by a small bowl of strawberries and a yellow bowl.,spray stops a few times out of coffee.,are just pouring from its bottom and other flakes to create the sole logo.,appear on the screen.,gold1-orig,pos,unl,unl,unl,pos,A white intro screen appears and red letters in a foreign language appear flashing on the screen.,\"A white bowl filled with water and 3 potatoes appear in one bowl, and ice cubes\"\nanetv_M5UrBI13R3s,3538,\"A hand then grabs the top potato, the bowl of ice cubes and pours the cubes into a bigger white bowl that already has water in it. The two hands now drop the potato into the larger bowl with the ice cubes and water and the fingers begin to peel off all of the skin under the water and when all the peels are gone the potato\",is placed onto a clean white plate.,is twirling an platter.,is added to the person again.,is short and harder.,is into family highlights.,gold0-orig,pos,unl,unl,unl,unl,\"A hand then grabs the top potato, the bowl of ice cubes and pours the cubes into a bigger white bowl that already has water in it.\",The two hands now drop the potato into the larger bowl with the ice cubes and water and the fingers begin to peel off all of the skin under the water and when all the peels are gone the potato\nanetv_NVnjzpoY1O8,3800,\"An elderly priest is sitting down in his chair indoors in a large building and 3 different men break dance on the ground in front of him as the people around him start clapping and lights go off from all the flashes. When the men are done dancing they stand up together in front of the people and the priest, and they\",take their bow to the priest and to the people.,are dancing together dancing in the middle of the ballroom.,\"join in the crowd to celebrate, while the referee zoom between their left hands to celebrate.\",are seen in very calm manner and all until their people are playing.,begin to fight and cheer them on.,gold0-orig,pos,unl,unl,unl,unl,An elderly priest is sitting down in his chair indoors in a large building and 3 different men break dance on the ground in front of him as the people around him start clapping and lights go off from all the flashes.,\"When the men are done dancing they stand up together in front of the people and the priest, and they\"\nanetv_PziLzNjG2bI,531,There are several spectators and judges watching them as they jump over the bar in a large indoor stadium. Both the contestants,successfully jump over the bar.,\"are competing for a few sets, trying to cheer by jumping and jumping up and down.\",are attached to the rope and throw it down at the shuffleboard competition.,are shown on the screen playing tug of war again.,,gold1-orig,pos,unl,unl,unl,n/a,There are several spectators and judges watching them as they jump over the bar in a large indoor stadium.,Both the contestants\nanetv_PziLzNjG2bI,530,There are two contestants participating in the athletic jump competition. There,are several spectators and judges watching them as they jump over the bar in a large indoor stadium.,are also shown speaking to the students in fencing gear.,are a group of people who run on sidewalks in breakdance clothes then turn the air and run in a game of other kayakers.,is an old event putting some examples from the zimmer.,are many clad in the blue shirts.,gold0-orig,pos,unl,unl,unl,pos,There are two contestants participating in the athletic jump competition.,There\nanetv_PziLzNjG2bI,532,Both the contestants successfully jump over the bar. There,is a slow motion video of the contestant jumping over the bar.,make the third trophy point and leave the bar.,shots are shown this time.,team does the same again.,kiss experiences outdoors form.,gold0-reannot,pos,unl,unl,unl,unl,Both the contestants successfully jump over the bar.,There\nanetv_icm5lX5pZE0,4686,A man is seen sitting behind a desk working on a computer. Several shots,are shown of people printing off paper as well as paper close up.,are shown of them putting objects on computers on the side.,are shown of the outside and the man adjusting the exercise machine.,are shown of men playing rock paper scissors.,are shown of various weights as well as an electric instrument.,gold0-orig,pos,unl,unl,unl,unl,A man is seen sitting behind a desk working on a computer.,Several shots\nanetv_icm5lX5pZE0,4687,Several shots are shown of people printing off paper as well as paper close up. More clips,are shown of people hanging up the wallpaper as well as shots of the city.,are shown playing the game as well as rubbing and playing with one another.,are shown of people using packs and punching up objects as well as various text on the screen.,are shown of people playing paintball while one of the men holds back their legs and pass on the row while others watch.,are shown of people practicing a paintball match with lit lights in the top.,gold0-reannot,pos,unl,unl,unl,unl,Several shots are shown of people printing off paper as well as paper close up.,More clips\nanetv_t97xM9sY2yg,16921,The ingredients are added to a frying pan. the contents of the pan,are mixed together and cook.,is sprinkled on the skillet.,are filled with food.,are added to the fry pan.,are spread out on the oven.,gold0-orig,pos,unl,unl,unl,unl,The ingredients are added to a frying pan.,the contents of the pan\nanetv_t97xM9sY2yg,12325,A plate of pasta with shrimp is shown. We then,see the ingredients on a counter.,see the ingredients in slow motion.,see the lady making the sandwich.,see the supplies in a bowl.,see the spaghetti in the counter.,gold1-orig,pos,unl,unl,unl,pos,A plate of pasta with shrimp is shown.,We then\nanetv_t97xM9sY2yg,12326,We then see the ingredients on a counter. Garlic and onions,\"are finely chopped, then fried in olive oil.\",are added to a glass.,are on top of the screen.,are sliced being sliced.,are added in a pot with water.,gold0-orig,pos,unl,unl,pos,pos,We then see the ingredients on a counter.,Garlic and onions\nanetv_t97xM9sY2yg,16920,Ingredients are chopped an diced on a cutting board. the ingredients,are added to a frying pan.,are all together in the bowl and various ingredients are added to the bowl.,are placed on top of the lettuce and put ingredients into a pan.,are mixed together and added into the mix.,are put out on the meat.,gold1-orig,pos,unl,unl,pos,pos,Ingredients are chopped an diced on a cutting board.,the ingredients\nanetv_t97xM9sY2yg,12327,\"Meat is added, and a pesto is made. The ingredients\",are then mixed into the pasta and plated.,\"boils, boiling, including mushrooms, and liquid are being poured into a sweet boiling drink.\",and salt is placed into the pot.,are mixed and mixed together.,\"are prepared, chopped into a pot of chopped onions.\",gold0-reannot,pos,unl,unl,unl,pos,\"Meat is added, and a pesto is made.\",The ingredients\nlsmdc1059_The_devil_wears_prada-98924,13159,\"Walking along a modern bridge over the sand, she calls someone's suite. Someone\",gets back to the hotel and pauses before knocking on someone's door.,attacks them onto the deserted street.,disappears into a doorway.,plays with a crowd of people and drums around on the back sidewalk.,turns her face to face the coca con dancer.,gold1-orig,pos,unl,unl,unl,unl,\"Walking along a modern bridge over the sand, she calls someone's suite.\",Someone\nanetv_Tovbyt_ZiIc,18998,The woman has her hair down and starts styling her hair. She,completes styling her hair and continues to talk.,is embarrassed and over the bar.,sprinkles it along her face and pulls the braid up into her face.,finishes the hair she holds receives her gifts.,pulls it back in sections of her hair and shows it back.,gold0-orig,pos,unl,unl,unl,pos,The woman has her hair down and starts styling her hair.,She\nanetv_Tovbyt_ZiIc,18997,A woman waves her hand and acknowledges her hair and face as she continues to talk. The woman,has her hair down and starts styling her hair.,\"continues talking, trying to make the circle really far.\",steps over to another man who is beginning to recognize a woman's hair smiles.,gets into a cup and toddler throws the ball high in the air and sets it back on the ground.,is looking up after a performance while people in the background laugh and encourage.,gold0-orig,pos,unl,unl,unl,unl,A woman waves her hand and acknowledges her hair and face as she continues to talk.,The woman\nanetv_Mil3AyFfjX4,16685,The boy then pushes the puck across the game. The camera,follows the pucks movements and leads back to the boy.,returns to the older boy hitting on the ball.,ends with the woman remains giving the thumbs up again.,pans to show another campsite and changes to show people walking.,,gold0-orig,pos,unl,unl,unl,n/a,The boy then pushes the puck across the game.,The camera\nanetv_Mil3AyFfjX4,16684,A young child is seen standing before a shuffleboard table holding a stick. The boy then,pushes the puck across the game.,picks up his stick and begins grabbing the ball again.,sits down and plays tennis again.,begins hitting a ball over a net.,begins speaking and showing off a fake piece of plastic.,gold0-orig,pos,unl,unl,unl,unl,A young child is seen standing before a shuffleboard table holding a stick.,The boy then\nanetv_rSTXxDLYxTQ,2395,The man then rubs polish into the other shoe on the table as well as back to the one he started on. He,\"takes a brush and uses it on the shoe, ending with him grabbing the camera.\",touches the edge of the person's head and continues talking about the effects of the group.,puts his shoes down and goes into the water and dries his off in a towel.,zooms the key to the rack.,\"continues to rub the dried up of the adhesive, showing off the back of the earring.\",gold0-orig,pos,unl,unl,unl,unl,The man then rubs polish into the other shoe on the table as well as back to the one he started on.,He\nanetv_rSTXxDLYxTQ,2394,A close up of shoes are shown followed by a person holding the shoes and rubbing polish around the shoes. The man then,rubs polish into the other shoe on the table as well as back to the one he started on.,mixes the shoes and presents the coin while the person continues peeling.,rubs the shoes while clips the shoes around as well as rubbing more shoe on.,begins putting one shoe on and putting it down and playing as well as it shoes.,clips parts off a shoe and shows them to the camera.,gold0-reannot,pos,unl,unl,unl,unl,A close up of shoes are shown followed by a person holding the shoes and rubbing polish around the shoes.,The man then\nanetv_WE9Md637nbc,5296,\"A man fills a bowl with water, then adds a cleaning solution. He\",uses a brush to scrub the shoes clean.,dry the floor together in cups from around a jar.,places the pan into the oven.,pours the milk to a can.,opens the can and pours the contents into the bowl.,gold1-orig,pos,unl,unl,unl,pos,\"A man fills a bowl with water, then adds a cleaning solution.\",He\nanetv_WE9Md637nbc,5295,A pair of dirty nike sneakers are seen on a counter. A man,\"fills a bowl with water, then adds a cleaning solution.\",puts a blue towel under his shirt and start wiping it with a toothbrush.,is washing his hands in a sink.,spreads olive oil on his board.,,gold1-orig,pos,unl,pos,pos,n/a,A pair of dirty nike sneakers are seen on a counter.,A man\nanetv_RDCZQ0nWIPc,17643,\"A white screen appears and special affects reveal the words Howcast original. A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he\",\"picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays.\",has another extremely strong closing going by.,speeds to disk down an obstacle and then not really going around any ramps.,is now climbing a mountain.,,gold0-orig,pos,unl,unl,unl,n/a,A white screen appears and special affects reveal the words Howcast original.,\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he\"\nanetv_RDCZQ0nWIPc,17644,\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays. The outro appears and it\",'s the white screen in the intro that include the words howcast original.,\"watches about ten time to increase on the terrain, and it changes back to the man talking.\",talks the same screen again as the phone trip with the media who seems in the beginning of the video.,\"'s subscribe and the video begins talking with some speed, while about riding on the street parallel to a large painting.\",,gold1-orig,pos,unl,unl,unl,n/a,\"A man is talking while various clips of people rollerblading play and a screen pops up indicating that he's giving tips on Rollerblading Basics: How to Control Speed on Rollerblades, and he picks up a pair of rollerblades and points to the wheels, then more clips of him rollerblading and showing examples plays.\",The outro appears and it\nanetv_N4Z9eYSu2uM,15258,People fall into a pile of muddy water. People,are standing next to them watching.,watch on the road as they run up an off - ramp.,are around the front of the boat.,are riding a horse in the sea.,are standing on a large hillside doing balance on the slopes.,gold0-reannot,pos,unl,unl,unl,unl,People fall into a pile of muddy water.,People\nanetv_N4Z9eYSu2uM,15257,People are playing tug of war on a field. People,fall into a pile of muddy water.,are in a game of protective.,are sitting in a booth watching the game.,are in a gymnastic competition on the field.,are engaged in a game of war.,gold0-reannot,pos,unl,pos,pos,pos,People are playing tug of war on a field.,People\nanetv_0VHUSC4YFT4,18627,A person is seen hanging on the side of a beam going down while another man holds him. He then,pulls the other man up and watches him jump off on the side on a bungee cord.,starts playing the instrument while a man continues to speak to the camera.,springs to his feet and the person pulls him onto his back.,begins riding the bike around with a bicycle followed by scenery.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen hanging on the side of a beam going down while another man holds him.,He then\nanetv_P9I3zxNUu74,3328,The kids stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects. The kids then,sweep up the floor while dancing and having fun and end by all waving to the camera.,begin dancing playing soccer.,turn around the field and swim into frame while the camera pans around on pictures of people standing at an end.,swing around all the ornaments.,finish after the ball and resume showing off the ingredients.,gold1-orig,pos,unl,unl,unl,unl,The kids stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects.,The kids then\nanetv_P9I3zxNUu74,3327,A man with two children are seen speaking to the camera with one throwing his hands up and leading into them moving quickly. The kids,stand on a chair taking ornaments off a tree while moving back and fourth to the table to place the objects.,continue rope around the room while also clapping and cheering and others kissing on the sides.,continue different tricks along the mountain and hitting the lot with fish and cheering them together.,walk across the bit and end by close up and speaking with one another in a game of pool.,,gold1-orig,unl,unl,unl,unl,n/a,A man with two children are seen speaking to the camera with one throwing his hands up and leading into them moving quickly.,The kids\nanetv_GuzLtwhxsxA,7059,His paddling is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown. The ending,shows a beautiful picture of a sun set.,plays at shore locations more and more.,scene in the video then of the closing words are shown on the screen.,comes to a replay of the man taking with a pole in the water hand and jumping up and out of path.,screen is shown as well various boats being shown to the rapids athletes.,gold0-orig,pos,unl,unl,pos,pos,His paddling is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown.,The ending\nanetv_GuzLtwhxsxA,7058,A close up of a canoe is shown followed by a man pushing the canoe along in various areas. His paddling,is slowed down to demonstrate how to properly paddle while more shots of the man paddling in fast motion are shown.,is shown as well as people riding in the water and riding through several more plants.,is plowing the rough yard itself.,continues paddling through the water as well as stopping near the kayak.,continues to push a man through the water while the camera watches the movements.,gold0-reannot,pos,unl,unl,pos,pos,A close up of a canoe is shown followed by a man pushing the canoe along in various areas.,His paddling\nlsmdc1006_Slumdog_Millionaire-73562,2173,Someone attaches the jump leads to each of someone's big toes. Someone,glares directly into the eyes of the inspector.,falls back into the egg.,hits someone from the head lifting a half - submerged stone.,runs under the dancing crowd.,,gold0-orig,pos,unl,unl,unl,n/a,Someone attaches the jump leads to each of someone's big toes.,Someone\nlsmdc1006_Slumdog_Millionaire-73562,2171,The inspector enters a room where someone is suspended off the floor by his wrists. Someone,reluctantly sets up a car battery when jump leads beneath someone's dangling feet.,\"fixes his tie, picks his door like a stone bar, hands it to someone.\",wheels himself to a wall then moves between the racks of metal assignments.,oncoming cars slowly turn a corner on a corner walkway.,hides at his chest as one hand climbs in his curled chair.,gold0-orig,pos,unl,unl,unl,pos,The inspector enters a room where someone is suspended off the floor by his wrists.,Someone\nlsmdc1006_Slumdog_Millionaire-73562,2172,Someone reluctantly sets up a car battery when jump leads beneath someone's dangling feet. Someone,attaches the jump leads to each of someone's big toes.,\"exits the building, holding the ticket outside the window.\",turned on a key and dark green light shines around his page.,finds one of the birds then waves off the spotlight as they advance.,\"trudges through a porthole and breaks out on the craft, past luxury red and large warehouses.\",gold0-orig,pos,unl,unl,unl,unl,Someone reluctantly sets up a car battery when jump leads beneath someone's dangling feet.,Someone\nlsmdc1006_Slumdog_Millionaire-73562,2169,A beautiful young woman stands on a train platform. She,looks up and smiles.,pulls out a handgun and throws it into the mirror.,moves her arms and right toward the edge.,approaches and sees the bald man in black.,,gold0-reannot,pos,unl,pos,pos,n/a,A beautiful young woman stands on a train platform.,She\nlsmdc3070_THE_CALL-32935,5296,She keeps her hand over her mouth. Someone,reaches for his walkie.,\"storms off, holding her hand in her hands.\",looks up at someone.,\"smiles, staring at her.\",glowers at her touch.,gold0-orig,pos,unl,unl,unl,unl,She keeps her hand over her mouth.,Someone\nanetv_XbkGlZTlixw,2286,The boys then begin to ride their skateboards on the road and now there's a 4th boy who has also joined them as they continue riding down the road and filming themselves while taking turns holding the stick with the camera attached to it. A 5th boy,suddenly appears and takes the stick to take his turn in filming.,is then seen paddling a pinata.,is holding a matic in his hand and holding a painter in his hand.,squats down to skateboard or begins to swing them off.,,gold0-orig,pos,unl,unl,unl,n/a,The boys then begin to ride their skateboards on the road and now there's a 4th boy who has also joined them as they continue riding down the road and filming themselves while taking turns holding the stick with the camera attached to it.,A 5th boy\nanetv_XbkGlZTlixw,2285,\"Two young boys wearing helmets, holding skateboards and carrying backpacks are walking through an area that is heavily filled with leaves and trees. A third boy appears as they pass him and he\",is also wearing a helmet.,stops to talk all his children performing again but eventually gets up to a song he had chaser.,crosses to speed to ten skateboarding.,\"continues mowing the lawn with front residential style lawn, and trims along the sides of the hedge together.\",does a skateboard on the road for the next day.,gold0-orig,pos,unl,unl,unl,unl,\"Two young boys wearing helmets, holding skateboards and carrying backpacks are walking through an area that is heavily filled with leaves and trees.\",A third boy appears as they pass him and he\nanetv_XbkGlZTlixw,2288,The video ends with a special effect of them going backwards instead of forwards and one of the boys holds his hand up to show a shaka sign made with his left hand. A black screen with white letters scrolling from the bottom to the top,includes the names of all the boys in the video.,blowing white screen as words are shown from a fire.,appears with a white flag talking there crowd.,is it of the screen.,,gold0-orig,pos,unl,unl,unl,n/a,The video ends with a special effect of them going backwards instead of forwards and one of the boys holds his hand up to show a shaka sign made with his left hand.,A black screen with white letters scrolling from the bottom to the top\nanetv_XbkGlZTlixw,2287,A 5th boy suddenly appears and takes the stick to take his turn in filming. It briefly,shows a boy skateboarding down a different street all alone.,shows us that they were sitting next to them.,shows the view of the reappear team on the screen.,hits it three times in the cameraman.,stumbles off of the ground.,gold0-reannot,pos,unl,unl,unl,unl,A 5th boy suddenly appears and takes the stick to take his turn in filming.,It briefly\nanetv_NXFnVeZen1U,4990,The ball goes out of bounds. A man serves the ball and they,engage in a brief back and forth of the ball before the ball falls to the ground.,lay him down until the ball is gone.,start throwing the ball at the same time.,pass by the players who chase the ball.,hit the ball back and forth to solve it.,gold0-orig,pos,unl,pos,pos,pos,The ball goes out of bounds.,A man serves the ball and they\nanetv_NXFnVeZen1U,4987,The teams engage in rapid back and forth hitting of the ball. The game,stops for a second and resumes with one of the teams serving the ball.,continue and the the game begins.,ends as the players gesture around.,continues and the women engage in a game of arm wrestling.,starts with a large replay of people scoring and a team of teams run after the opposing scoreboard.,gold1-orig,pos,unl,unl,unl,unl,The teams engage in rapid back and forth hitting of the ball.,The game\nanetv_NXFnVeZen1U,4989,\"They battle each other on the court, sending the ball back and forth over the net. The ball\",goes out of bounds.,launches itself halfway across the field to distract the attack.,\"circle a seventh team member who are being blindfolded, indicating a ball.\",drops as far as they can.,falls to the ground.,gold0-orig,pos,unl,unl,unl,pos,\"They battle each other on the court, sending the ball back and forth over the net.\",The ball\nanetv_NXFnVeZen1U,4986,The opponent serves the ball. The teams,engage in rapid back and forth hitting of the ball.,proceed to save each other as his partner hits the birdie with the mallet.,pull the balls with the's partner as they demonstrate.,continue playing the pong.,hit the ball over the net.,gold0-orig,pos,unl,unl,unl,pos,The opponent serves the ball.,The teams\nanetv_NXFnVeZen1U,4988,The game stops for a second and resumes with one of the teams serving the ball. They,\"battle each other on the court, sending the ball back and forth over the net.\",continue to go back and forth toward the rocks.,launch through a rock and receiving another know.,watch their games as they try to prevent the ball from hitting the ground.,then is over again and continues talking to the camera.,gold0-reannot,pos,unl,unl,unl,unl,The game stops for a second and resumes with one of the teams serving the ball.,They\nanetv_XFySa1Gc-yM,14004,A woman is seen curling her hair while speaking to the camera and leads into her speaking in front of judges. The judges critique her and she,runs away happy and skipping out of the building.,finishes up and speak to the camera.,is done placing her hands in the hair and ends by braiding it as well as clips of the host speaking.,demonstrates how to show proper fencing moves.,speaks into her camera.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen curling her hair while speaking to the camera and leads into her speaking in front of judges.,The judges critique her and she\nanetv_kuMevlNUDCs,9312,A girl is standing inside a kitchen. She,dances around while washing the dishes.,has a glass of hot liquid in her hand and wipes it down.,does several martial arts techniques.,is pouring coffee into a bowl of flour.,is shown at a table filled with blue stuff.,gold0-orig,pos,unl,unl,unl,pos,A girl is standing inside a kitchen.,She\nanetv_kuMevlNUDCs,9313,She dances around while washing the dishes. Another girl,\"joins her, and makes a phone call while they talk.\",walks onto a horse and starts running across the track.,gets up in a back and takes off from the camera.,touches her face as she walks through the water.,,gold0-orig,pos,unl,unl,unl,n/a,She dances around while washing the dishes.,Another girl\nanetv_kuMevlNUDCs,12372,Two girls are in the kitchen washing dishes. They,put the washed dishes into the dishwasher.,are near white sink.,put some stuff into an oven.,put baking soda on the pan.,,gold0-orig,pos,pos,pos,pos,n/a,Two girls are in the kitchen washing dishes.,They\nlsmdc3040_JULIE_AND_JULIA-18201,9489,\"At home, someone carries a stack of newspapers upstairs. Someone\",lies on the couch.,settles into a chair as someone strides through the pub.,\"strides through where someone finds someone sitting next to someone, who reads an article on his bed file.\",looks from the baby to the side of the building with a green pillow and barrels.,comes out of a door.,gold1-orig,pos,unl,unl,unl,pos,\"At home, someone carries a stack of newspapers upstairs.\",Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9492,Someone bounces excitedly and beams at her husband. She,\"dives on top of him, and kisses him repeatedly.\",runs along the trees and digs her way through the crowds as someone gets out.,\"looks back, then saunters out to fix her, stretches his arm out, and takes her in his arms.\",looks at her watch.,looks at her newly frankly pregnant toes.,gold0-orig,pos,unl,unl,pos,pos,Someone bounces excitedly and beams at her husband.,She\nlsmdc3040_JULIE_AND_JULIA-18201,9493,\"In bed, someone rolls on his back. Someone\",carries in two full martini glasses and sits with him on the bed.,track swarm accompanies someone through the boardroom window.,\"takes a cone from her mouth, then licks her fingers.\",has been walking with him.,groggily steps over to her who sits on a bed stretching helplessly.,gold1-orig,pos,unl,unl,unl,pos,\"In bed, someone rolls on his back.\",Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9497,He shifts her feet a smidge on the coffee table and sits facing her. He,adjusts his glasses and reads.,looks at the floor.,hurries to the front door and takes out his cell phone.,sits in the hotel room with a group of children.,asks someone to follow.,gold1-orig,pos,unl,unl,unl,unl,He shifts her feet a smidge on the coffee table and sits facing her.,He\nlsmdc3040_JULIE_AND_JULIA-18201,9496,\"Listening, someone's expression goes blank. Someone\",hangs up and looks at someone sitting up attentively.,\"looks uncertain, but does n't continue.\",blinks and glances at someone as they step across.,gives a tearful gaze and walks slowly away.,,gold0-orig,pos,unl,pos,pos,n/a,\"Listening, someone's expression goes blank.\",Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9490,Someone lies on the couch. She,puts the stack of papers down.,rubs him over the boot.,exercises the little kitten.,sits and looks up as the starry night sky over his head.,\"storms up to someone, her head resting on her arm.\",gold1-orig,pos,unl,unl,unl,unl,Someone lies on the couch.,She\nlsmdc3040_JULIE_AND_JULIA-18201,9485,\"Now a man reads a newspaper article entitled, a Race to Master the Art of French Cooking, with someone's picture. Someone\",sits next to the reader on the subway.,strides up a flight of stairs and climbs a beaded vase outside his son's enclosure.,transformed teacher shows two hooks around his flaps.,takes a baseball puff.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now a man reads a newspaper article entitled, a Race to Master the Art of French Cooking, with someone's picture.\",Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9488,\"At work, someone sets down a cup of coffee and puts on her headset. At home, someone\",carries a stack of newspapers upstairs.,tearfully wipes her nose.,sleeps alone in bed as she sleeps beside her parents.,\"moves through the offices, checking her cell phone.\",sits at the lobby of a cavern - red apartment with a foam shoe and a clean manner.,gold1-reannot,pos,unl,unl,unl,unl,\"At work, someone sets down a cup of coffee and puts on her headset.\",\"At home, someone\"\nlsmdc3040_JULIE_AND_JULIA-18201,9487,\"She turns to Ernestine and they high five. At work, someone\",sets down a cup of coffee and puts on her headset.,sits on her bed with sheets in her very dress.,reveals his words and says anything.,crosses the galley exterior and slides a laptop over the bottom of a workbench.,,gold0-reannot,pos,unl,unl,unl,n/a,She turns to Ernestine and they high five.,\"At work, someone\"\nlsmdc3040_JULIE_AND_JULIA-18201,9494,Someone carries in two full martini glasses and sits with him on the bed. Someone,rushes to the phone.,barks loud voices.,adjusts his head on a nearby branch.,takes the photos and starts vibrating with his woeful father.,looks up from raising the hall hall beds as he runs through a court living room.,gold1-reannot,pos,unl,unl,unl,unl,Someone carries in two full martini glasses and sits with him on the bed.,Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9495,Someone rushes to the phone. Someone,looks on from the bed.,giggles as someone makes his way.,tumbles out of the front door.,tosses her cell phone to call.,\"slaps someone, then poses with someone.\",gold0-reannot,pos,unl,unl,unl,unl,Someone rushes to the phone.,Someone\nlsmdc3040_JULIE_AND_JULIA-18201,9484,The chewing reporter's eyes widen. Now a man,\"reads a newspaper article entitled, a race to master the art of french cooking, with someone's picture.\",wins shots from a long train.,takes in the security beverage's and chips.,intercepts the downed fighter.,lifts a coat upon the giant black horse.,gold0-reannot,pos,unl,unl,unl,unl,The chewing reporter's eyes widen.,Now a man\nlsmdc3040_JULIE_AND_JULIA-18201,9486,\"Someone sits next to the reader on the subway. At a food shop, someone\",\"peeks over a man's shoulder, who glances at the same article.\",places a jacket on the stage and paddles out through a window.,sits at a table in an apartment typing.,\"draws a pouch of tobacco, and hurriedly torn off the sheet.\",is aiming a clipboard toward him.,gold1-reannot,pos,unl,unl,unl,pos,Someone sits next to the reader on the subway.,\"At a food shop, someone\"\nanetv_LnDz1rvDaPY,5990,A woman wearing a hajib stands outside in snowy weather next to a car. She,scrapes the car window off with a small blue scraper.,stops and talks to the camera about 6 riding jet skis.,is then explaining how to do and attend a funeral cortege.,jumps into the bucket and gives a thumbs up.,,gold0-orig,pos,unl,unl,unl,n/a,A woman wearing a hajib stands outside in snowy weather next to a car.,She\nanetv_LnDz1rvDaPY,16543,We see a talking lady near her car on a snowy day. We,see the lady scrape snow from her windshield with a scraper.,see a boy stumble in a bowling alley.,see the camera and shop and we see the dancer in the phone viewing the camera.,girl is wearing a long pink sweater and jeans and a blue t - shirt.,person walks a parking lot.,gold0-orig,pos,unl,unl,unl,unl,We see a talking lady near her car on a snowy day.,We\nanetv_LnDz1rvDaPY,16544,We see the lady scrape snow from her windshield with a scraper. We,see a man on the other side of the car.,see the ending screen.,see a lady cleaning something from a can with the ceiling.,see the lady talk.,sprays the clean credit card on a woman uses the shaver.,gold0-orig,pos,unl,unl,unl,unl,We see the lady scrape snow from her windshield with a scraper.,We\nanetv_LnDz1rvDaPY,5991,She scrapes the car window off with a small blue scraper. A man,\"walks up, salutes the camera and finishes the other side of the window as the woman says goodbye to the viewers.\",talks in front of everything.,\"stands to the sea, then inserts showing the blade very connected to the steering wheel.\",with a raincoat is shown in his feet.,,gold0-reannot,pos,unl,unl,unl,n/a,She scrapes the car window off with a small blue scraper.,A man\nanetv_LnDz1rvDaPY,16545,We see a man on the other side of the car. The man,takes the scraper and finishes the windshield.,crouches down and starts to trim a back roof.,squats down and wraps his arms around.,uses a broom to pull snow from the car.,starts spraying a jetski on the wood.,gold1-reannot,pos,unl,unl,unl,unl,We see a man on the other side of the car.,The man\nanetv_LnDz1rvDaPY,16546,The man takes the scraper and finishes the windshield. The lady,waves by to the camera.,scrapes the car off completely with a product.,pushes over the smooth snow.,looks out across the screen as he leaves the room.,,gold1-reannot,pos,pos,pos,pos,n/a,The man takes the scraper and finishes the windshield.,The lady\nanetv_O2Vd29Slt7g,6731,\"A young man on the roof of a tall building, with the backdrop of a city skyline, performs a series of dance moves, gymnastics moves, tumbling moves and high kicks. The man\",begins with his back to the camera and stands facing the city skyline from the roof top.,rides the man high curves and performs multiple stunts.,is then seen skiing down a ramp and walking along an ice covered ramp and tails.,\"swings the hammer pole, spins a series of flips on the floor and hops back on the beam.\",sits back down and talks to the camera.,gold0-orig,pos,unl,unl,pos,pos,\"A young man on the roof of a tall building, with the backdrop of a city skyline, performs a series of dance moves, gymnastics moves, tumbling moves and high kicks.\",The man\nanetv_YXl4cEB7E3Y,18624,A boy is standing in the middle of a parking lot. He,is wearing a hat with a feather in it and sunglasses.,has carved pieces of metal on it.,starts skiing while another boy walks behind them.,stands on a rock in front of him.,,gold0-orig,pos,unl,unl,pos,n/a,A boy is standing in the middle of a parking lot.,He\nanetv_YXl4cEB7E3Y,18625,He is wearing a hat with a feather in it and sunglasses. He,is playing a bagpipe.,\"is wearing a long blue wig and gloves, aimed back and forth as he dances along.\",spins around and strings it.,takes a pair of glasses and puts them at the edges.,\"moves, motioning someone behind the group and points.\",gold0-orig,pos,unl,unl,unl,pos,He is wearing a hat with a feather in it and sunglasses.,He\nanetv_kYkwA_lvqYc,14109,A man is seen speaking to the camera and begins rubbing polish all over a shoe. He then,rubs the polish off and presents the shoe to the camera.,shows how to wipe it clean with a pair of shoes.,rinses all the shoes off and places shaving down on the back.,puts objects on his face while still looking to the camera.,puts clothing over the polish and continues to polish the shoe.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and begins rubbing polish all over a shoe.,He then\nanetv_kYkwA_lvqYc,8467,He shows off various objects on a table and puts lotion on a shoe. He then,wipes off a shoe with a rag and presents it to the camera.,grabs the fruit and turns around various ingredients while showing how it works.,scrubs in the sink with soda and soap.,takes off the shoes and holds it up while looking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,He shows off various objects on a table and puts lotion on a shoe.,He then\nlsmdc1046_Australia-90538,8020,Someone puts her hand over someone's mouth. The tracker,walks slowly away as the windmill turns faster.,starts to carve an autumnal cake across the cake.,gets the icy derby back.,draws a light lit from someone.,\"gets closer, but someone nudges her.\",gold0-orig,pos,unl,unl,unl,pos,Someone puts her hand over someone's mouth.,The tracker\nlsmdc1046_Australia-90538,8010,\"Someone pulls back the curtain and looks out at the cops. As the men look the other way, someone\",hurriedly climbs in after someone.,\"carries the two ringwraiths, sitting to the floor, with a remote.\",gives a thumbs up which someone slaps him.,notices a looking scar on his chest.,has come back into the basin.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls back the curtain and looks out at the cops.,\"As the men look the other way, someone\"\nlsmdc1046_Australia-90538,8028,\"The cop's truck continues down the long, straight, dusty truck, into the vast scrub lands of Faraway Downs. The windmill\",turns slowly at sunset.,plows into the sea and the sun presses open.,reaches down and fixes more water on them.,\", watery hole is visible through the hole.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The cop's truck continues down the long, straight, dusty truck, into the vast scrub lands of Faraway Downs.\",The windmill\nlsmdc1046_Australia-90538,8030,Someone looks tearfully out towards someone's blazing funeral pyre. Smoke,drifts from the top a rocky summit nearby.,\"catches it, then locks it and throws it into someone.\",\", someone leaps into the back of an enormous lifeboat as someone leaps over the makeshift lifeboats.\",flies across the road and into a fiery blaze under soar descending a massive bridge.,,gold0-orig,pos,unl,unl,unl,n/a,Someone looks tearfully out towards someone's blazing funeral pyre.,Smoke\nlsmdc1046_Australia-90538,8008,Someone climbs with her son. They,\"are around the back of the tank, hidden from the truck.\",make the buckets and cascade with shoes for gymnastics.,bumps through each other.,pull from someone's sleeve then look out as the golden door opens.,,gold0-orig,pos,unl,unl,unl,n/a,Someone climbs with her son.,They\nlsmdc1046_Australia-90538,8021,The tracker walks slowly away as the windmill turns faster. Someone,notices and drops in after her.,returns running and starts past an electrical factory.,settles enthusiastically as a different train records someone.,sits beside someone and picks up the injured zookeeper.,,gold0-orig,pos,unl,unl,unl,n/a,The tracker walks slowly away as the windmill turns faster.,Someone\nlsmdc1046_Australia-90538,8032,Someone signals to the hilltop. He,waves to someone who starts to chant.,wags his leash toward the dog.,holds his ax above.,holds her father aside.,slips it in his pocket.,gold0-orig,pos,unl,unl,unl,unl,Someone signals to the hilltop.,He\nlsmdc1046_Australia-90538,8014,People cling frantically to the ladder. The ladder collapses and they,fall into the water.,reach the upper floor.,collapse to the ceiling.,fall side by side.,land on the covered ground.,gold1-orig,pos,unl,unl,pos,pos,People cling frantically to the ladder.,The ladder collapses and they\nlsmdc1046_Australia-90538,8018,The Aboriginal tracker looks up and sees water poring out of holes at the top of the tower. But more,continues to pour from the tower.,bugs hang from the air in them.,embeds up on the surface.,lights surround the tree.,swims to the ground.,gold0-orig,pos,unl,unl,unl,unl,The Aboriginal tracker looks up and sees water poring out of holes at the top of the tower.,But more\nlsmdc1046_Australia-90538,8024,\"Someone brings someone to the surface. As the truck drives away down the dusty road, someone\",hauls someone's body from the tank.,\"sees someone van pulling through the gap in the road, covering the car with a gloved foot.\",sprays the ss driver.,\"slides down a watchtower, and trips people.\",gives someone a cheery nod and pulls groggily away.,gold0-orig,pos,unl,unl,unl,pos,Someone brings someone to the surface.,\"As the truck drives away down the dusty road, someone\"\nlsmdc1046_Australia-90538,8006,\"She trots off in a huff as they start to ride around the cattle, moving them in to a single herd. She\",gallops after the lone steer.,\"continues running, grabbing life, and walking along the whirling rope.\",\"squares up and scores another huge, ground.\",pulls the wheel at a fast pace.,,gold0-orig,pos,unl,unl,pos,n/a,\"She trots off in a huff as they start to ride around the cattle, moving them in to a single herd.\",She\nlsmdc1046_Australia-90538,8016,Someone lifts someone to grab on to a pipe. She,gets a grip too.,\"touches an opponent, then knocks him steady.\",sips her drink casually.,turns slowly from the chair to leave.,,gold1-orig,pos,unl,unl,unl,n/a,Someone lifts someone to grab on to a pipe.,She\nlsmdc1046_Australia-90538,8029,The windmill turns slowly at sunset. Someone,looks tearfully out towards someone's blazing funeral pyre.,is the wife of three boys taking mother during dinner.,turns to handle to get away.,pulls a solitary boat down.,,gold0-orig,pos,unl,unl,pos,n/a,The windmill turns slowly at sunset.,Someone\nlsmdc1046_Australia-90538,8015,The ladder collapses and they fall into the water. Someone,lifts someone to grab on to a pipe.,\"puts her face down, washing hoses in a plate.\",\", as the troll slides out of the water and more corpses fall from the doom.\",stares out the window and sees three calm objects.,watches in wonder as he opens.,gold0-orig,pos,unl,unl,unl,unl,The ladder collapses and they fall into the water.,Someone\nlsmdc1046_Australia-90538,8019,But more continues to pour from the tower. Someone,puts her hand over someone's mouth.,blasts a grate into the wall.,points to the enemy on his side.,takes a reload then returns to his back and judged.,opens his car first.,gold0-orig,pos,unl,unl,unl,unl,But more continues to pour from the tower.,Someone\nlsmdc1046_Australia-90538,8034,The body is carried towards the fire. The old man,looks down on the homestead from his hilltop.,is turned on fire!,takes the jacket stacks underneath the car.,looks at someone sleeps.,tries for a better job but smaller fish is seen through the hole.,gold0-orig,pos,unl,unl,unl,unl,The body is carried towards the fire.,The old man\nlsmdc1046_Australia-90538,8026,Someone hangs his head as someone clings to the body. Someone,runs out of the house.,undoes her dart board and pulls up the blind.,\"lurches forward underwater, leaving a picture in the open sky.\",is hanging on one of the giant's limbs.,walks down the steep jagged stones dangling from an icy surface.,gold1-orig,pos,unl,unl,unl,pos,Someone hangs his head as someone clings to the body.,Someone\nlsmdc1046_Australia-90538,8025,Someone desperately hugs his mother. Someone,hangs his head as someone clings to the body.,sweeps the women's arms down and kisses people passionately.,\"steps on to wood, clutching him tight behind his head.\",emerges through his cage beyond the two winged giants.,gazes down at his dripping arm.,gold1-reannot,pos,unl,unl,unl,pos,Someone desperately hugs his mother.,Someone\nlsmdc1046_Australia-90538,8007,The sun beats down on the homestead and the windmill turns slowly. People,are carrying items of luggage for someone.,paddle down the path to the back of the tower.,drifts by the finger waving to the crowd.,fly slowly through front small windows.,,gold0-reannot,pos,unl,unl,unl,n/a,The sun beats down on the homestead and the windmill turns slowly.,People\nlsmdc1046_Australia-90538,8012,She takes the tea tray to her. One man,walks slowly towards the tank.,sinks to the swimming pool and sinks.,carries someone onto the plate.,removes her coat to reveal her pants.,sits in a partially boxing chair.,gold1-reannot,pos,unl,unl,unl,unl,She takes the tea tray to her.,One man\nlsmdc1046_Australia-90538,8033,He waves to someone who starts to chant. The body,is carried towards the fire.,drifts around a crowded floor like a german.,halts its egg as he wields his boot.,flies over the gleaming wedding ring in a sharp billow.,tips over the auditorium.,gold0-reannot,pos,unl,unl,unl,pos,He waves to someone who starts to chant.,The body\nlsmdc1046_Australia-90538,8013,One man walks slowly towards the tank. Someone,holds her hand up for someone to grab.,follows him and his goateed friend later at the tv.,slides another foot carefully beneath him and makes it into the crystalline grasp.,plunges someone's hand into the air.,takes arm - in - arm.,gold1-reannot,pos,unl,unl,pos,pos,One man walks slowly towards the tank.,Someone\nlsmdc1046_Australia-90538,8031,Smoke drifts from the top a rocky summit nearby. Someone,signals to the hilltop.,dives onto the plane deck.,lays his head on someone's shoulder.,swims towards the helicopter.,uses an ax to mount a stone.,gold0-reannot,pos,unl,unl,unl,unl,Smoke drifts from the top a rocky summit nearby.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18963,\"He brings out a folder, glances over his shoulder, and studies its cover. It\",bears the cia emblem.,reveals a mushroom cloud of smoke.,ombre the boy putting flannel.,is about the same age as someone wearing a large outfit.,tech mask smudged with blood.,gold0-orig,pos,unl,unl,unl,unl,\"He brings out a folder, glances over his shoulder, and studies its cover.\",It\nlsmdc3089_XMEN_FIRST_CLASS-42900,18975,He clutches railings at his sides. His chest,heaves as he envisions shooting into the air past hundreds of humans.,heaves as he reads the notes on the floor.,rises and he surfs.,\"heaves as he swings out at the sight of someone, whose face light distorted and severe.\",,gold1-orig,pos,unl,unl,unl,n/a,He clutches railings at his sides.,His chest\nlsmdc3089_XMEN_FIRST_CLASS-42900,18961,\"The young man licks his lips and shifts his uneasy gaze. Now in a dimly lit office, someone\",searches a file cabinet.,lies in a hospital bed.,notices a proper overcoat head and mustache.,peers at the window at the ceiling.,,gold0-orig,pos,unl,unl,unl,n/a,The young man licks his lips and shifts his uneasy gaze.,\"Now in a dimly lit office, someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18996,She opens a small metal box on a desk and pushes a button inside. Someone,finds someone staring down at a waist - high nuclear reactor.,takes a seat in a cluttered room.,pops a book - sized star on her left fairy's side.,walks to the front of the desk and smooths metal with a pair of metal scissors.,leans back in his chair.,gold1-orig,pos,unl,unl,unl,pos,She opens a small metal box on a desk and pushes a button inside.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18990,Later the recruiters enter a pub where someone sits at the bar. They,approach the troubled man as he lifts a cigar to his lips.,chew past stacks of dessert gowns.,run into a store.,enter a telegraph office.,sit studying each other's partner.,gold0-orig,pos,unl,unl,unl,pos,Later the recruiters enter a pub where someone sits at the bar.,They\nlsmdc3089_XMEN_FIRST_CLASS-42900,18964,It bears the cia emblem. Someone,puts it in a briefcase.,walks up to a utility pole.,roves up an issue with police officers.,knocks someone out of the way.,stares at the hospital.,gold0-orig,pos,unl,unl,unl,unl,It bears the cia emblem.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18960,\"Someone stares after someone as he saunters off, then faces someone. The young man\",licks his lips and shifts his uneasy gaze.,shrugs at someone who takes it away.,looks over in a mirror and a girl eyes him blankly as he speaks slowly out of her.,play three more glasses on a dim table.,takes a half - smoked cigar above his fingers.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stares after someone as he saunters off, then faces someone.\",The young man\nlsmdc3089_XMEN_FIRST_CLASS-42900,18980,\"As they flutter rapidly, the young woman rises into the air. Someone and someone\",exchange an amazed look.,catch up to the bedroom.,lean close and kiss someone.,hold their face back together.,cuddle slowly out of bed.,gold0-orig,pos,unl,unl,unl,unl,\"As they flutter rapidly, the young woman rises into the air.\",Someone and someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18957,She brings her full parted lips in toward his. She,straightens abruptly as someone strolls over.,\"breathes again, her ear moving with her own paddle.\",\"pokes her, then gazes after them.\",dives into the window of a delivery car.,\"watches him kiss, then looks over his shoulder.\",gold0-orig,pos,unl,unl,unl,unl,She brings her full parted lips in toward his.,She\nlsmdc3089_XMEN_FIRST_CLASS-42900,18983,Someone guides the meter's arm down. Later the recruiters,walk a prison corridor.,falls in the bath.,slices out the cake.,strums the card to someone's recorder.,,gold0-orig,unl,unl,unl,unl,n/a,Someone guides the meter's arm down.,Later the recruiters\nlsmdc3089_XMEN_FIRST_CLASS-42900,18977,The clouds clear away to show her standing on a bar in a night club. Someone and someone now,sit in front of her.,arrive outside the cafe.,looks at someone as he leans in to guide her.,take their chairs to their seats.,,gold0-orig,pos,unl,unl,pos,n/a,The clouds clear away to show her standing on a bar in a night club.,Someone and someone now\nlsmdc3089_XMEN_FIRST_CLASS-42900,18986,\"The pretty teen gives him a haughty look. The water inside ripples,\",driving the fish off.,\"fills the glass ladle's edge, and causes a tiny chocolate foam.\",gradually churns and churning behind it.,cupping his face in frustration.,as the big photographer swims the light after his friends.,gold1-orig,pos,unl,unl,unl,unl,The pretty teen gives him a haughty look.,\"The water inside ripples,\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18989,\"As the boy turns back to the tank, someone and someone step up behind him. Later the recruiters\",enter a pub where someone sits at the bar.,removes a japanese red robe from a coat rack.,descend the paths - two ladder and scuttles down in pursuit of three boys.,\"reflects the sponsors in the sky, followed by a small red neon sign.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As the boy turns back to the tank, someone and someone step up behind him.\",Later the recruiters\nlsmdc3089_XMEN_FIRST_CLASS-42900,18956,She lays her forearm across his lap. Someone,rolls up her sleeve and swabs at a patch of her skin with a cotton ball.,makes a nevada face.,gives him a gentle pat.,has her entire body increasingly awkward while they ever kiss.,turns to her.,gold0-orig,pos,unl,unl,unl,pos,She lays her forearm across his lap.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18973,As someone closes his eyes. Someone,watches with an anxious look.,\"turns, raises his eyes like a little speck, descends, crushing himself up the steps.\",\"bobs low, then continues to talk.\",sags on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,As someone closes his eyes.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18971,\"Now someone, someone, and someone find someone inside the transmitter's spherical room. Someone\",pulls on a helmet attached to a network of wires.,heads toward the sphere.,feeds him a confiscated cables.,glances up to see four fun friends staring through a set of glass doors.,,gold0-orig,pos,pos,pos,pos,n/a,\"Now someone, someone, and someone find someone inside the transmitter's spherical room.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18995,\"Striding out of the bridge, she enters the adjacent living room and office area. She\",opens a small metal box on a desk and pushes a button inside.,\"looks over the bar and stares at her, then pulls back.\",\"on, she frantically picks up the lid and reacts.\",finally heading for the door.,leaves his agent and opens the portfolio.,gold0-orig,pos,pos,pos,pos,pos,\"Striding out of the bridge, she enters the adjacent living room and office area.\",She\nlsmdc3089_XMEN_FIRST_CLASS-42900,18967,\"Someone stands motionless, his wary gaze fixed on someone. Someone\",\"backs away a few feet, then turns and heads toward the building.\",slowly lags the cockpit.,exits the barricade in one of the sacks.,holds out the key and crack someone smile.,turns his gaze towards the spires.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stands motionless, his wary gaze fixed on someone.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18974,White light glows down on someone. He,clutches railings at his sides.,holds up the cheap pearl.,takes a couple of stairs and eases someone inside.,seizes it and stares out at their surroundings.,grabs his leg and points!,gold1-orig,pos,unl,unl,unl,unl,White light glows down on someone.,He\nlsmdc3089_XMEN_FIRST_CLASS-42900,18984,\"Sitting on a bench inside, a brawny young man with blonde hair lifts his gaze. Now in an aquarium, a teenaged boy and girl\",face a fish tank.,watch from the kitchen table.,gets out of the kitchen at him.,arrange a party into a storm of sand while the ball swoops over his shoulder.,paddle the highway with the suds.,gold0-orig,pos,unl,unl,unl,unl,\"Sitting on a bench inside, a brawny young man with blonde hair lifts his gaze.\",\"Now in an aquarium, a teenaged boy and girl\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18985,\"Now in an aquarium, a teenaged boy and girl face a fish tank. The pretty teen\",gives him a haughty look.,swim around with a blonde girl on them.,wets a towel in her mouth while backs off.,brings the surfboard up toward the teen.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now in an aquarium, a teenaged boy and girl face a fish tank.\",The pretty teen\nlsmdc3089_XMEN_FIRST_CLASS-42900,18966,He faces the compassionate young man. Someone,\"stands motionless, his wary gaze fixed on someone.\",shifts his weight high on his stomach and swallows.,shifts his gaze to someone's grand ceiling.,shifts his sober gaze.,circles his finger together.,gold1-orig,pos,unl,unl,pos,pos,He faces the compassionate young man.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18992,Someone puffs on his cigar and the two recruiters exchange a resigned look. As they,head out the door.,\"continue to play, our view moves over the fire lines.\",return to listening in agony.,\"leave, one of their guys plays with a copper knife and heads back to the others.\",\"skip left, someone shines his flashlight at someone.\",gold1-orig,pos,unl,unl,unl,pos,Someone puffs on his cigar and the two recruiters exchange a resigned look.,As they\nlsmdc3089_XMEN_FIRST_CLASS-42900,18981,Someone and someone exchange an amazed look. Now someone and someone,climb into a cab.,eat breakfast at a restaurant.,lie on the bed apart from someone.,watch the flask go in.,enter a conference room.,gold1-orig,pos,pos,pos,pos,pos,Someone and someone exchange an amazed look.,Now someone and someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18968,\"Someone backs away a few feet, then turns and heads toward the building. Someone\",\"looks away, uncertain.\",glances up through the stairway chart.,crushes the corpse of an elderly woman.,\"is at a locked door, which has twelve - style windows.\",\"covered her stomach, her face beaten, with fingers.\",gold0-orig,pos,unl,pos,pos,pos,\"Someone backs away a few feet, then turns and heads toward the building.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18988,\"With a perplexed look, she hurries off. As the boy turns back to the tank, someone and someone\",step up behind him.,wave their hands in front of the toyshop as they advance.,head out of the gas.,ascend a flight of stairs.,sit side - by - side morosely.,gold0-orig,pos,unl,unl,unl,pos,\"With a perplexed look, she hurries off.\",\"As the boy turns back to the tank, someone and someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18962,\"Now in a dimly lit office, someone searches a file cabinet. He\",\"brings out a folder, glances over his shoulder, and studies its cover.\",takes a cigarette from his pocket and gives it to the boy.,'s smoking a cigarette.,looks and tosses a key on the sill.,,gold0-orig,pos,unl,pos,pos,n/a,\"Now in a dimly lit office, someone searches a file cabinet.\",He\nlsmdc3089_XMEN_FIRST_CLASS-42900,18972,Someone pulls on a helmet attached to a network of wires. Someone,flips switches on a control board.,holds up the small forklift.,allows it to remove a tether.,revs a white car.,is under a factory archway.,gold0-orig,pos,unl,unl,pos,pos,Someone pulls on a helmet attached to a network of wires.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18987,\"The water inside ripples, driving the fish off. The girl\",turns back to the tank and finds all of the fish gone.,sinks first into the hole of a dunes.,\"swims out of the pool, oil her way, and careens.\",drops the ball to her side which slides open.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The water inside ripples, driving the fish off.\",The girl\nlsmdc3089_XMEN_FIRST_CLASS-42900,18994,\"Inside someone's sub, someone removes her eyes from the viewfinder and turns to someone. Striding out of the bridge, she\",enters the adjacent living room and office area.,\"folds her heavy, blue eyes over someone and crouches to her, who does a bit spirit sense.\",follows someone like geese out on a city street.,stands above the runway and looks at her array of watch.,\"glances around, leaving someone alone at the window, gazing up at the two men in the photo.\",gold0-reannot,pos,unl,unl,unl,pos,\"Inside someone's sub, someone removes her eyes from the viewfinder and turns to someone.\",\"Striding out of the bridge, she\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18982,Now someone and someone climb into a cab. Someone,guides the meter's arm down.,sees someone sitting by the bed.,gets in and out of the limo.,watches till at once.,,gold0-reannot,pos,unl,unl,unl,n/a,Now someone and someone climb into a cab.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18965,Someone puts it in a briefcase. Someone,\"keeps his back to someone, his gaze vulnerable.\",lifts his pinky defensively.,approaches the sits of pool then turns and looks at someone.,goes to someone and looks up to the sky.,follows into another corridor.,gold0-reannot,pos,unl,unl,pos,pos,Someone puts it in a briefcase.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42900,18991,They approach the troubled man as he lifts a cigar to his lips. Someone puffs on his cigar and the two recruiters,exchange a resigned look.,take a vacant concrete breath.,swig out of his mouth.,pushing one upward behind him.,look to the camera.,gold0-reannot,pos,unl,unl,unl,pos,They approach the troubled man as he lifts a cigar to his lips.,Someone puffs on his cigar and the two recruiters\nlsmdc3089_XMEN_FIRST_CLASS-42900,18976,\"His chest heaves as he envisions shooting into the air past hundreds of humans. Emerging on a blanket of clouds, his gaze\",\"sweeps from three girls, to a man reading a book, to a dark - skinned girl with white hair.\",lands on a large ledge illuminating a secret stories high on the top of the stone structure.,drifts up to the upturned guy below.,cranes to view as they start to new traveling up ways.,finds a heavy mud on his wrists and legs.,gold1-reannot,pos,unl,unl,unl,unl,His chest heaves as he envisions shooting into the air past hundreds of humans.,\"Emerging on a blanket of clouds, his gaze\"\nlsmdc3089_XMEN_FIRST_CLASS-42900,18993,\"As they head out the door. Inside someone's sub, someone\",removes her eyes from the viewfinder and turns to someone.,tosses someone a grenade.,\"sits at the kitchen table, regards a handful of oatmeal in his hand.\",inserts a glass of ice through a hole then slides one to someone.,finds the city release and crosses the slender floor across the room.,gold0-reannot,pos,unl,unl,unl,unl,As they head out the door.,\"Inside someone's sub, someone\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54749,4143,\"People are talking to someone in front of the latter's car. His wife, someone,\",is now out of the car.,\"is standing beside a bed leaning over a mirror, looking about for the camera.\",lies on his side.,\"is lying in bed, looking at her parents.\",is standing at the end of the hall; she stares intently.,gold1-orig,pos,unl,unl,unl,unl,People are talking to someone in front of the latter's car.,\"His wife, someone,\"\nlsmdc0001_American_Beauty-45862,8717,\"Someone sits at the kitchen table, staring off into space as if hypnotized. Behind her, someone\",\"enters, followed by someone.\",\"grabs her leg, flutters it down.\",\"is standing beside her, in a little body - up.\",and someone step back from the table.,collects her drink on a worktop and stabs himself.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits at the kitchen table, staring off into space as if hypnotized.\",\"Behind her, someone\"\nanetv_ItpDcSURusI,10174,She goes forward on the diving board and does a backward dive into the pool from several feet. She,twists her body as she dives down into the pool.,swings around and continues swimming in the water until getting ready to throw the ball.,\"pauses on the floor and shakes her hand, shaking both arms.\",zooms off and turns to a dive as she dives to the water counter.,,gold0-orig,pos,unl,unl,unl,n/a,She goes forward on the diving board and does a backward dive into the pool from several feet.,She\nanetv_ItpDcSURusI,10173,A professional diver named Pandelela Rinong is getting ready to dive in a competition. She,goes forward on the diving board and does a backward dive into the pool from several feet.,lifts up from a stack.,makes another diver kick and misses while the two congratulate each other on the final attempt.,runs down the sidelines and is as he lifts the camera and exits.,stands over the bar of a red skinny girl.,gold0-orig,pos,unl,unl,unl,unl,A professional diver named Pandelela Rinong is getting ready to dive in a competition.,She\nanetv_ItpDcSURusI,10175,\"She twists her body as she dives down into the pool. After she's done, she\",smiles and walks out of the pool.,gets ready to score the bar and walks away with the women.,waves over a bar and jumps into the pool.,dives off the ice trying to reach a goal and dives into the pool.,,gold0-orig,pos,unl,unl,unl,n/a,She twists her body as she dives down into the pool.,\"After she's done, she\"\nanetv_P5lLZ_jsA2o,15913,A gymnast is seen swinging around on a bar doing various flips and tricks across two sets of beams. She,continues spinning around and ends with her hands up and her coach clapping.,swings onto a beam and lands in a small room in her pit.,spins himself around doing flips while moving his arms and arms in the air.,then holds his arms up and begins attempting to hold up the disc.,\"then jumps successfully, she continues jumping and continues performing flips and tricks on the beam.\",gold0-reannot,pos,unl,unl,unl,pos,A gymnast is seen swinging around on a bar doing various flips and tricks across two sets of beams.,She\nanetv_P5lLZ_jsA2o,15914,She continues spinning around and ends with her hands up and her coach clapping. People watch on the sides and her scores,are shown in the end.,are shown again as well as the ingredients and drills.,\"are shown again including hurling out of their hands, and shortly seen throwing the ball.\",is shown on the team.,are shown again with several different practice throw skills.,gold1-reannot,pos,unl,unl,unl,pos,She continues spinning around and ends with her hands up and her coach clapping.,People watch on the sides and her scores\nlsmdc3001_21_JUMP_STREET-378,8287,They rush to the student Driver's car. They,ignore the instructor and get in behind the twin steering wheels.,stop on a train turn.,are perspiring warm eyed.,see the fluttering body in the basket.,pulls over again to one side of the road parked a few yards ahead.,gold0-orig,pos,unl,unl,unl,unl,They rush to the student Driver's car.,They\nlsmdc3001_21_JUMP_STREET-378,8288,\"Now, someone's maroon sedan arrives at a highway underpass where the biker gang, the One - Percenter's awaits the young dealer and his friend. Someone and someone\",watch the deal go down.,sit at the kitchen table.,enter a public locker room.,ride their horses along a wreath at the airport.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone's maroon sedan arrives at a highway underpass where the biker gang, the One - Percenter's awaits the young dealer and his friend.\",Someone and someone\nanetv_89rUyq2rCJ8,7999,A man is riding on a surfboard in the ocean. He,\"does a big flip, landing back in the wave.\",starts over with his oar.,mounts the pommel horse.,paddles back and forth against the boat with a knife.,\"is talking to the camera, climbing up the shore with circular equipment on the top.\",gold0-orig,pos,unl,unl,unl,unl,A man is riding on a surfboard in the ocean.,He\nanetv_89rUyq2rCJ8,8000,\"He does a big flip, landing back in the wave. The flip\",is repeated in slow motion.,\"flips, bounce in half, flipping through.\",is replaced from the approaching end.,reverses the building into the air.,then fly out of the water.,gold0-orig,pos,unl,unl,unl,unl,\"He does a big flip, landing back in the wave.\",The flip\nlsmdc3057_ROBIN_HOOD-27436,17782,\"Behind him, someone watches with an admiring smile as she rides away. He\",eyes a bug flying near his face.,reaches for the key.,inspects his clothing and smiles.,shifts his troubled gaze.,keeps an arm across his head.,gold1-orig,pos,unl,unl,unl,unl,\"Behind him, someone watches with an admiring smile as she rides away.\",He\nlsmdc3057_ROBIN_HOOD-27436,17781,\"As she mounts a dark horse, the father gazes wearily at her. Behind him, someone\",watches with an admiring smile as she rides away.,see someone walk with a round older boy in one arm as the truck does someone.,lies asleep in the affluent lamb locker on the small chair beside him.,peers over with a group of double - barreled pistols in her hand as he searches a pile of wet boxes.,roots through the shadowy wood of a stone factory.,gold0-orig,pos,unl,unl,unl,unl,\"As she mounts a dark horse, the father gazes wearily at her.\",\"Behind him, someone\"\nlsmdc3057_ROBIN_HOOD-27436,17780,\"Father someone and someone follow her out. As she mounts a dark horse, the father\",gazes wearily at her.,snaps her head and hugs her.,hands over his credit card.,places a woman now the noblewoman's arms.,bends back and strokes her hair.,gold0-orig,pos,unl,unl,unl,unl,Father someone and someone follow her out.,\"As she mounts a dark horse, the father\"\nlsmdc0005_Chinatown-48112,12397,Someone is wearing jeans that are lathered white on the inside of the thighs and laced with brown horsehair. She,\"is wearing riding boots, is perspiring a little, but looks younger than she did in the office.\",turns to tell someone and snips the sheet.,brings it down to the side of the head.,loads the video smiling.,glimpses him and reflects.,gold0-orig,pos,unl,unl,pos,pos,Someone is wearing jeans that are lathered white on the inside of the thighs and laced with brown horsehair.,She\nlsmdc0005_Chinatown-48112,12398,\"She is wearing riding boots, is perspiring a little, but looks younger than she did in the office. Someone\",is a little taken aback at seeing someone.,tenses his coffee no emotion.,\"arrives in some room, with a bandage on his arm.\",\"the official, he turns the phone, looks at someone blocking the way through the crowd of coke.\",\"is lays by some kind of exercise equipment, sits in a chair, claps her hands and gestures.\",gold0-reannot,pos,unl,unl,unl,unl,\"She is wearing riding boots, is perspiring a little, but looks younger than she did in the office.\",Someone\nlsmdc0005_Chinatown-48112,12399,Someone is a little taken aback at seeing someone. The Chinese someone,appears on the veranda.,\"has then seen in a crib, kickboxing.\",slowly goes down one of the lifeboats spilling his cape magically.,has a number of aged portrait men on her.,sits a map in the fire as a shield.,gold0-reannot,pos,unl,unl,unl,unl,Someone is a little taken aback at seeing someone.,The Chinese someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5207,A balding man tows a cart to the cottage. Someone,sleeps in bed beside the cat.,'s eyes ripple as if he suddenly runs briskly.,unzips a matchbox - wrapped bundle.,runs on.,,gold0-orig,pos,unl,unl,pos,n/a,A balding man tows a cart to the cottage.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5204,At a hospital someone sits on a hallway floor with her knees to her chest. A doctor enters and she,rises to her feet.,moves to the floor.,sets her clock before her.,attempts the doctor run.,takes off a shirt.,gold0-orig,pos,unl,unl,unl,unl,At a hospital someone sits on a hallway floor with her knees to her chest.,A doctor enters and she\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5209,\"The cat sits up, someone stirs, wrapped in a few blankets. He\",sits up and looks at his watch on a nightstand.,sprays the windows of the hall.,looks up as the timer starts in slow motion.,approaches a dark living hut and crouches to catch himself.,,gold1-orig,pos,unl,unl,unl,n/a,\"The cat sits up, someone stirs, wrapped in a few blankets.\",He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5179,\"Now, at a coffee shop someone sits alone at a counter with a book decorated with a bow. She\",\"peels off a price tag, then checks her cell phone.\",holds a bouquet of flowers and tackle her to reappear.,\"approach someone's lab, takes some glasses from the box and sets them on the desk.\",dances the rows in the navel enclosure.,ponders the video as she crosses the room with a glass of white wine.,gold0-orig,pos,unl,unl,unl,unl,\"Now, at a coffee shop someone sits alone at a counter with a book decorated with a bow.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5197,\"He drops the phone to his side. Now, at a grocery store, someone\",adds two cans of cat food to his purchase.,takes his cut shoes off.,faces a broken mirror.,sneaks out after him.,searches through a drawer.,gold1-orig,pos,unl,unl,pos,pos,He drops the phone to his side.,\"Now, at a grocery store, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5177,He walks out the door. She,watches him go with a disappointed gaze.,trots back into the room behind him.,comes and peers at the door opening.,looks at her to give her disbelieving glance.,stalks him several steps.,gold0-orig,pos,unl,pos,pos,pos,He walks out the door.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5188,\"He steps away from the train. At the guest cottage, someone\",pays the driver then slips on an icy stoop.,gives a little shrug and.,is at someone house!,walks to a cobra and unfolds a letter.,,gold0-orig,pos,unl,unl,unl,n/a,He steps away from the train.,\"At the guest cottage, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5178,\"She watches him go with a disappointed gaze. Now, at a coffee shop someone\",sits alone at a counter with a book decorated with a bow.,joins the loads and rounds when she heads into the office.,watches past the french windows on an evening mattress.,stands at the front desk.,stands at a kitchen counter with a tray.,gold0-orig,pos,unl,unl,unl,pos,She watches him go with a disappointed gaze.,\"Now, at a coffee shop someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5201,Someone sits by a fireplace huddled in a blanket. He,tears pages from a book and throws them in a meager fire.,rows of joyfully between the children halfway down at the front of the class.,go through the most endless crowd of seated people.,\"see nearby glowing colors up and quick, launching over furniture.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone sits by a fireplace huddled in a blanket.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5203,The frustrated man looks at the book's cover then tosses it on a few others. At a hospital someone,sits on a hallway floor with her knees to her chest.,takes picture in his goggles.,\"walks over and approaches the back of someone's shabby den, snatches a photo from his right hand.\",finds someone wrapping a woman's arm in a paper bag.,,gold0-orig,pos,unl,unl,pos,n/a,The frustrated man looks at the book's cover then tosses it on a few others.,At a hospital someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5205,\"A doctor enters and she rises to her feet. Now, she\",watches someone through a window.,reaches into her pocket and pulls out a container of wet seconds.,applies makeup to her face and then.,sees tiny creatures in an underwater apartment.,,gold1-orig,pos,unl,unl,unl,n/a,A doctor enters and she rises to her feet.,\"Now, she\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5174,She finds someone at his desk packing supplies. He,meets her disapproving gaze.,brings it back to his office and crumples his books.,turns and scans the ritual.,whirls past several trays packed staff bearing a large booklet.,brings a packet of newspapers to his mouth and takes another look at someone.,gold0-orig,pos,unl,unl,unl,unl,She finds someone at his desk packing supplies.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5194,He steps past the cat. He,shuts the fridge and shares a look with the hungry cat.,\"his open eye, someone sketches the golden powder from his hand.\",turns the metal rim on the rock and removes the dirt from flushing.,watches as more birds hang to his neck.,,gold0-orig,pos,unl,pos,pos,n/a,He steps past the cat.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5180,\"She peels off a price tag, then checks her cell phone. She\",sets it down and glances around.,ski mascara behind her knit cap.,arrives at someone's grave.,slumps on two chairs.,hops to the back of the chair someone describes vital messages.,gold1-orig,pos,unl,unl,unl,unl,\"She peels off a price tag, then checks her cell phone.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5187,Someone exits a train with his bags and reacts to the cold. He,steps away from the train.,shakes someone's struggling hand.,closes the closet door.,performs with several different dressed yoga choreography.,stands at the top on the bank.,gold1-orig,pos,unl,unl,unl,pos,Someone exits a train with his bags and reacts to the cold.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5212,Someone opens the front door. Someone,grabs one of many file boxes from his cart then steps inside.,begins to stride through a door beyond a stone bridge behind him.,stifles a breezy smile and her heart drops.,puts the bill in his pocket and places it into his jacket pocket.,the machine as the beat.,gold0-orig,pos,unl,unl,unl,unl,Someone opens the front door.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5196,Someone walks away from the cottage holding his cell phone at arm's length. He,drops the phone to his side.,pulls up his sleeve as his father frantically turns to look in his window.,wears a beaded scarf over her head.,glances up at him then glances aside.,gives a penny nod.,gold0-orig,pos,unl,unl,unl,unl,Someone walks away from the cottage holding his cell phone at arm's length.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5199,\"Later, he steps out front with a grocery bag and a cigarette hanging from his mouth. He\",attempts to make another call on his cell phone.,is holding a bottle over his brow.,stands up and kisses her.,offers him an ice cream.,,gold0-orig,pos,unl,unl,pos,n/a,\"Later, he steps out front with a grocery bag and a cigarette hanging from his mouth.\",He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5213,\"Later, as someone works on the fireplace, someone brings him coffee. He\",puts on glasses and crouches over the files.,drops the bottle on his arm as well.,\"sits her, spreads a lemon in front of her.\",drops a bottle and grabs the bottles.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, as someone works on the fireplace, someone brings him coffee.\",He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5175,He steps near to kiss her but she looks away. He,kisses her cheek instead.,turns to face someone.,\"begins to speak, then comes back and sits along to cool off.\",stares back and forth as a waist - deep haircut.,,gold0-orig,pos,unl,unl,unl,n/a,He steps near to kiss her but she looks away.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5172,Someone sets her handheld device on top of an electrical box. She,takes the flashlight out of her mouth and flips a switch.,touches the needle on his gloved finger.,\"admires the reactor mechanism which floats out like a machine, welding a grapples with a circuit network.\",touches a giant metal sheet.,\"leans against a wall, then faces a screen tv.\",gold1-orig,pos,unl,unl,unl,unl,Someone sets her handheld device on top of an electrical box.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5182,\"Inside, she approaches an apartment door. She\",leans towards the door and listens.,shuts the side door.,climbs the handcuff girders and enters.,turns to see someone from a low wall where someone sees start arriving.,stops for the exit.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, she approaches an apartment door.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5198,\"Now, at a grocery store, someone adds two cans of cat food to his purchase. Later, he\",steps out front with a grocery bag and a cigarette hanging from his mouth.,puts water on a dish and sets his case on a coffee table.,\"walks down to her bedroom, then sits with someone and glances at someone.\",puts the fridge to the camera and leans over for a pan of food.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, at a grocery store, someone adds two cans of cat food to his purchase.\",\"Later, he\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5200,He attempts to make another call on his cell phone. Someone,sits by a fireplace huddled in a blanket.,drags himself outside and jogs along the sidewalk traffic.,phone hits myrtle '.,unbuckles his father's belt and returns.,\"lets someone into the kitchen, knocking off the window with his friends.\",gold0-orig,pos,unl,unl,unl,unl,He attempts to make another call on his cell phone.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5191,\"Attempting another call, he crosses to a bedroom where pillows and folded towels lie stacked at the foot of the bed. Someone\",looks over his shoulder then crosses to a window where a tabby waits on the sill in the cold.,slashes someone's throat.,takes a stack of sheets and slides it on the couch.,checks the mirror and smooths a doll's face.,,gold0-orig,pos,unl,pos,pos,n/a,\"Attempting another call, he crosses to a bedroom where pillows and folded towels lie stacked at the foot of the bed.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5210,He sits up and looks at his watch on a nightstand. Wrapping himself in one of the blankets he,pulls it out from under the cat.,\"reaches out, frowning at his dad.\",spots lights on the wall.,covers him with a paper towel.,,gold1-orig,pos,unl,unl,unl,n/a,He sits up and looks at his watch on a nightstand.,Wrapping himself in one of the blankets he\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5186,\"Now, at the Hedestad station, a thermometer nears negative 20 degrees Celsius. Someone\",exits a train with his bags and reacts to the cold.,hands someone an encouraging watch.,checks under stalls as they duck into a range with tunnels.,puts on his sales machine and yanks off his jacket.,stares at the empty gentlemen.,gold0-orig,pos,pos,pos,pos,pos,\"Now, at the Hedestad station, a thermometer nears negative 20 degrees Celsius.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5206,\"Now, she watches someone through a window. Riding a train, someone\",peers out a window.,smashes through the horn like an axe.,gives a high five.,drops her foot and winces.,turns on her radio.,gold0-orig,pos,unl,pos,pos,pos,\"Now, she watches someone through a window.\",\"Riding a train, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5193,He lets the cat inside and it jumps down to the floor. He,steps past the cat.,quickly knocks the lid off the wall.,\"walks back, touching the cord he is holding.\",lights the cigarette and smoke it out.,moves for the stairs on the floor.,gold1-orig,pos,unl,unl,unl,pos,He lets the cat inside and it jumps down to the floor.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5192,Someone looks over his shoulder then crosses to a window where a Tabby waits on the sill in the cold. He lets the cat inside and it,jumps down to the floor.,rises up to the ground.,bears into a modest sigh.,rolls across his stomach.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks over his shoulder then crosses to a window where a Tabby waits on the sill in the cold.,He lets the cat inside and it\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5208,\"Someone sleeps in bed beside the cat. The cat sits up, someone stirs,\",wrapped in a few blankets.,\"glancing at someone, then walks towards a young girl passing through the trash.\",pleased to see the cat's feet.,leaning her head in her hand.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sleeps in bed beside the cat.,\"The cat sits up, someone stirs,\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5189,\"At the guest cottage, someone pays the driver then slips on an icy stoop. The driver\",gets back in his taxi.,gets off the car and drives again.,opens the topped car.,pauses with his gun raised.,fixes up the rear window.,gold0-orig,pos,unl,unl,unl,unl,\"At the guest cottage, someone pays the driver then slips on an icy stoop.\",The driver\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5184,She opens the door and steps inside. She,walks deeper into the apartment and looks around.,gives someone her paper slip.,\"glances at her, then tilts her head.\",\"waves with a nod, and heads inside.\",opens a hallway door and strolls inside.,gold0-orig,pos,unl,unl,unl,unl,She opens the door and steps inside.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5176,He kisses her cheek instead. He,walks out the door.,drains her face as people leave.,kisses someone off again.,gives him a gentle smile.,tucks someone's hair behind her back.,gold0-orig,pos,unl,unl,pos,pos,He kisses her cheek instead.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5183,She leans towards the door and listens. She,opens the door and steps inside.,diminishes into his thoughts without leaving the crib.,\"walks up to the front door, turns and wakes.\",looks down the drain and gets in.,,gold1-orig,pos,unl,unl,unl,n/a,She leans towards the door and listens.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5211,Wrapping himself in one of the blankets he pulls it out from under the cat. Someone,opens the front door.,takes his phone from his ear and looks around.,walks off through the woods.,\"sidles forward, facing someone.\",glides over a strip of paper.,gold0-reannot,pos,unl,unl,unl,unl,Wrapping himself in one of the blankets he pulls it out from under the cat.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5171,\"Now, pedestrians cross paths outside someone's apartment building. Someone\",sets her handheld device on top of an electrical box.,is directly outside the crack in the front door.,rides away as she rips off her shirt.,\"steps over the driver's railing and, lifting weakly, opens the door to the large private office.\",\", sitting across a table, speaks with someone.\",gold0-reannot,pos,unl,unl,unl,unl,\"Now, pedestrians cross paths outside someone's apartment building.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5181,\"Now, she marches across a street to a five - story brick facade with bay windows shaped like prisms. Inside, she\",approaches an apartment door.,\"reads the comic clip, her hair in swirling patterns.\",\"opens the front door of the convention hall, reaches a doorway and examines it as she exits.\",\"sits alone at a table in the empty beach, sipping her wine and subtly flowing long blond hair.\",returns her gaze to an elderly man's apartment couch.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, she marches across a street to a five - story brick facade with bay windows shaped like prisms.\",\"Inside, she\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33326,5202,He tears pages from a book and throws them in a meager fire. The frustrated man,looks at the book's cover then tosses it on a few others.,runs behind the giant who slams him to the ground and causing him to fall over.,crosses the room and slaps his back.,\"removes the metal from the wall away, squeezing its contents.\",,gold0-reannot,pos,unl,unl,unl,n/a,He tears pages from a book and throws them in a meager fire.,The frustrated man\nanetv_dth916VxJUw,13385,The man does shoulder dips on the set of parallel bars. The man,does push ups with his feet up on the parallel bars.,exercise on the ground serving with one last time.,lifts the weight above a little thigh.,\"walks forward and stands on a hatchet, doing high jumps.\",do a routine with her jumping again.,gold0-orig,pos,unl,unl,unl,pos,The man does shoulder dips on the set of parallel bars.,The man\nanetv_dth916VxJUw,13386,The man does push ups with his feet up on the parallel bars. The man,does pull ups on one of the bars.,gets at it with the pole and does the splits.,returns to the exact spot he is doing.,jumps up and down on the mat and then throws the legs on the ground.,spins forward and swings his hands up and down with his hand sticking between his legs.,gold1-orig,pos,unl,unl,unl,unl,The man does push ups with his feet up on the parallel bars.,The man\nanetv_dth916VxJUw,13387,The man does pull ups on one of the bars. The man,walks back up in front of the equipment after the routine.,spins around while a small man dances.,kicks it on a rope and spins it around.,grabs a handle and begins to bounce into the air.,does several tricks for the camera.,gold0-orig,pos,unl,unl,unl,unl,The man does pull ups on one of the bars.,The man\nanetv_dth916VxJUw,13384,A man stands in front of a set of pull up and double bars at a park. The man,does shoulder dips on the set of parallel bars.,bows as the skiers climb side down a ladder.,holds the gate on his back and demonstrates how to do the splits.,ride a bicycle up and down on the table.,continues pushing rope and walking along the dirt with his hands on the back.,gold0-reannot,pos,unl,unl,unl,unl,A man stands in front of a set of pull up and double bars at a park.,The man\nlsmdc1042_Up_In_The_Air-88469,1345,\"Someone walks through an open - plan office with someone, who's clutching a pile of strategy packets. Office workers\",stare at them as they head to a private office.,hang out sheet paper as he winds around the fire.,spread weapons at tables with someone and someone.,stand on a kitchen floor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone walks through an open - plan office with someone, who's clutching a pile of strategy packets.\",Office workers\nlsmdc3040_JULIE_AND_JULIA-18253,910,\"In her office, someone posts note cards. Someone\",rearranges some of the cards on the bulletin board and reads the result.,frowns as she looks up at the departing figure.,picks up a camper overlooking a large western castle in iowa park.,erupts into the scene.,lifts the necklace to someone's chest.,gold0-orig,pos,unl,unl,unl,unl,\"In her office, someone posts note cards.\",Someone\nlsmdc1043_Vantage_Point-89283,2005,\"Someone crosses the busy hotel lobby. In a garage, someone\",taps the screen of his cell phone with a stylus.,stands still working at a console through a bedroom window.,\"sits alone on a carpet across a gym room, surrounded by plastic desks and paintings.\",lies on a bench near a rock and tries to pick up a metal ball.,,gold0-orig,pos,unl,unl,unl,n/a,Someone crosses the busy hotel lobby.,\"In a garage, someone\"\nlsmdc1043_Vantage_Point-89283,2032,\"They put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face. Someone\",points a gun at someone's head.,\"doctor steward the trolley in the courtyard delivers a six - handled square to the side, and mounted on a back.\",sticks his arm at someone.,snuggles up and hurries toward someone.,picks up a buries feature on his hands and finds another downstairs room.,gold1-orig,pos,unl,unl,unl,unl,\"They put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face.\",Someone\nlsmdc1043_Vantage_Point-89283,2031,Someone arrives in the elevator and chloroforms someone. They,\"put the unconscious someone on the gurney and enter the elevator, where someone fits an oxygen mask onto someone's face.\",run across the center of an upper floor.,escort the recruits uncertainly down the corridor.,get onto a subway elevator.,,gold0-orig,pos,unl,unl,pos,n/a,Someone arrives in the elevator and chloroforms someone.,They\nlsmdc1043_Vantage_Point-89283,1991,Someone shoots uniformed security guards in the hotel's cctv control room. He,unplugs a laptop and makes a call on his cell phone.,and his aide follow.,places two suitcases in his back.,\"slips inside the arm of one of the leeds women, having a set of desks playing class.\",\"cricketers, cycles from nowhere to rescue a player.\",gold1-orig,pos,unl,unl,unl,unl,Someone shoots uniformed security guards in the hotel's cctv control room.,He\nlsmdc1043_Vantage_Point-89283,2030,\"Someone slides around the corner. In the hotel, someone\",forces someone towards the elevator on the seventh floor at gunpoint.,searches a stack of books.,watches a gaunt bully with a mustache.,catches up with someone as she sets the suitcase down on the loft floor.,\"reaches a door, and collapses against a wall, covering its steel rail.\",gold0-orig,pos,unl,unl,unl,pos,Someone slides around the corner.,\"In the hotel, someone\"\nlsmdc1043_Vantage_Point-89283,1980,\"He loads the pistol and puts an earpiece in. In the plaza, someone\",sees someone take the bag from someone.,raises lunges toward someone.,struggles for the plane.,unplugs an carbon map of a network of equipment.,paces behind the front desk.,gold0-orig,pos,unl,unl,unl,unl,He loads the pistol and puts an earpiece in.,\"In the plaza, someone\"\nlsmdc1043_Vantage_Point-89283,1998,Someone stares at himself in a mirror. He,has dynamite strapped around his waist.,waitresses out his warning window.,shifts his gaze to leg.,stops and stares at his lifeless friend.,turns toward someone with a smile.,gold1-orig,pos,unl,unl,unl,pos,Someone stares at himself in a mirror.,He\nlsmdc1043_Vantage_Point-89283,2009,Someone eases a door open on level seven. Someone,\"dons a ski mask, then lurches through the doorway and stabs the agent in the back.\",spot the twenty of the boys own footprints as they follow close.,marches someone through a shadowy corridor in the apartment.,return that angle again.,hands and peers back.,gold0-orig,pos,unl,unl,unl,unl,Someone eases a door open on level seven.,Someone\nlsmdc1043_Vantage_Point-89283,1969,Someone the bellboy hangs up the phone. The motorcade,enters the underground parking lot.,\"drives towards the stately building, which pulls him to open the locks and goes upstairs.\",lowers the third eaters.,\"hops through the hangar door to a german car, primarily with tuk - machines being ipad and buckets.\",\"reply someone as she extends her hand to her, takes it by her, and hands it back.\",gold0-orig,pos,unl,unl,unl,unl,Someone the bellboy hangs up the phone.,The motorcade\nlsmdc1043_Vantage_Point-89283,1978,\"He reaches the fourth floor and strolls down a corridor, where he slots a swipe card into a machine on a hotel room door, unlocking it. Inside, he\",removes a hold - all from a fridge and takes a pistol from it.,opens his door at the mourners apartment.,finds a set of keys in a rock and pulls onto a set of keys.,spies someone inside the door at the medic's office.,\"strolls past the dressing room, stopping to pull a piece from his package.\",gold0-orig,pos,unl,unl,unl,pos,\"He reaches the fourth floor and strolls down a corridor, where he slots a swipe card into a machine on a hotel room door, unlocking it.\",\"Inside, he\"\nlsmdc1043_Vantage_Point-89283,2001,\"Someone's brother, the man from someone's phone, sits against a white pillow with gaffer tape over his mouth. Someone\",aims the pistol at him.,regards him with a towering hug.,tugs down on the doctor's restraints as the boy steps away from the boy.,steps through a narrow crevice.,kayakers rides on a line of large inner tubes and crosses their legs turning on the water.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's brother, the man from someone's phone, sits against a white pillow with gaffer tape over his mouth.\",Someone\nlsmdc1043_Vantage_Point-89283,2002,Someone aims the pistol at him. Someone,\"shoots him, startling someone.\",knocks someone away and aims out a second.,reaches out and picks up the heavy lens shot shut off him.,is peeling the sacks of the ground toward the fire.,,gold0-orig,pos,unl,unl,unl,n/a,Someone aims the pistol at him.,Someone\nlsmdc1043_Vantage_Point-89283,1985,He shoots a hotel maid. A gun,falls from her hand.,falls in one hand.,lands on a man's shoulder.,\"runs into the other side of the roof, aiming the gun.\",sits in her face.,gold0-orig,pos,unl,unl,unl,unl,He shoots a hotel maid.,A gun\nlsmdc1043_Vantage_Point-89283,2015,Someone points his gun at someone. The ambulance,arrives at the bombed hotel.,is wheeled down the driveway.,gets wheeled back onto a lower deck across the road.,moves away from the van.,,gold0-orig,pos,unl,unl,pos,n/a,Someone points his gun at someone.,The ambulance\nlsmdc1043_Vantage_Point-89283,1995,Someone stands at his open locker. He,\"caresses a family photograph from the inside of the locker door, then shuts it.\",\"takes off his hat and walks around, noticing it.\",obeys and strikes the detective.,uses his wrist to move in the direction.,walks through a doorway into a private office.,gold0-orig,pos,unl,unl,unl,pos,Someone stands at his open locker.,He\nlsmdc1043_Vantage_Point-89283,1976,\"Spotting someone with his camera, someone narrows his eyes. He\",\"furrows his brow pensively, then makes his way over to someone.\",reflects on the barbells as it touches forward.,takes a photo of the girl from someone's bed.,pounds on the asphalt.,returns to the window.,gold0-orig,pos,unl,unl,unl,pos,\"Spotting someone with his camera, someone narrows his eyes.\",He\nlsmdc1043_Vantage_Point-89283,2016,The ambulance arrives at the bombed hotel. People,climb out of the ambulance.,jump rope from their bed and stride up to the building onto a high line.,are in his doorway with someone and someone.,\"gaze down at someone, who watches vacantly as he sits.\",,gold0-orig,pos,unl,unl,pos,n/a,The ambulance arrives at the bombed hotel.,People\nlsmdc1043_Vantage_Point-89283,2024,\"Someone glares at the monitor, then leaps into action, rushing out of the gnn truck. Someone\",\"puts his cell phone into the front seat of the ambulance driven by people, and gets into a spanish police car.\",\"then places his car in its telegraph, and the kidnapper gets up.\",and his thugs drag him in as the others continue their choppers.,takes him off the floor and sets her beside someone.,can jotunheim the precipice with the riders.,gold0-orig,pos,unl,unl,unl,unl,\"Someone glares at the monitor, then leaps into action, rushing out of the gnn truck.\",Someone\nlsmdc1043_Vantage_Point-89283,2004,\"Someone runs up a stairwell in the hotel, then checks his watch. Someone\",crosses the busy hotel lobby.,follows the officer through a black - carpeted office and knocks on a chair.,holds out a magazine overhead.,climbs down the stairs and climbs on some equipment then sees a door attached to a inner box.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone runs up a stairwell in the hotel, then checks his watch.\",Someone\nlsmdc1043_Vantage_Point-89283,1977,\"He furrows his brow pensively, then makes his way over to someone. Someone\",stands in the elevator.,\"leans forward, and kisses someone on the lips.\",\"flinches, then taps him.\",looks at his teacher.,stares into his eyes.,gold1-orig,pos,unl,unl,unl,pos,\"He furrows his brow pensively, then makes his way over to someone.\",Someone\nlsmdc1043_Vantage_Point-89283,1972,\"Someone enters the lobby, which is filled with Secret Service agents. Someone\",talks into his cell phone as he passes the suited agents.,swings down on to a chair - - that is a 7 - year - old someone appears.,frowns blankly as a security guard checks his watch.,notices three dozen officers.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone enters the lobby, which is filled with Secret Service agents.\",Someone\nlsmdc1043_Vantage_Point-89283,1970,\"Someone takes the phone from his ear, then gasps as he approaches the hotel. Someone\",punches buttons on his phone and talks into the mic of his hands - free kit.,\"opens the bathroom door, peers in and sees someone sitting on a couch spitting up.\",reclines on someone's bed as she approaches the sink.,stands from the doorway of the salon.,\"realizes not, unimpressed.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone takes the phone from his ear, then gasps as he approaches the hotel.\",Someone\nlsmdc1043_Vantage_Point-89283,1981,\"Someone disappears into the crowd. Wearing a backpack, someone\",screws a silencer onto his pistol as he climbs a flight of steps in the hotel.,\"scrambles up, flips the grenade over his shoulder, and leaves the room.\",uncorks the bottle and spits it in the water.,bursts his dropped bags and follows behind them.,\"dismounts, clenching her hips and swings his arms.\",gold1-orig,pos,unl,unl,unl,unl,Someone disappears into the crowd.,\"Wearing a backpack, someone\"\nlsmdc1043_Vantage_Point-89283,2011,\"Someone kills the agent, then draws his gun. Someone\",\"uses a mirror to spot two agents outside someone's room, then opens fire.\",grabs his gun and taps it with his gun.,glances over the shoulder toward ibs.,uses his flashlight to sweep the car from someone's view.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone kills the agent, then draws his gun.\",Someone\nlsmdc1043_Vantage_Point-89283,1984,Someone stalks through the hotel corridors with his pistol drawn. He,shoots a hotel maid.,lowers a soldier as his wife exits a truck.,crosses the front pavement of the house.,climbs in and aims the gun.,,gold0-orig,pos,unl,unl,unl,n/a,Someone stalks through the hotel corridors with his pistol drawn.,He\nlsmdc1043_Vantage_Point-89283,2021,\"Someone guns down both agents, then sheds his jacket and dismantles the remote - controlled rifle. Someone\",changes into a spanish policeman's outfit and heads down an outside staircase with the packed up rifle.,strikes at something in her direction which framing her candlesticks under her beating mouth.,\"holds out a box of vicious shells, trying to get it into sky.\",joins a guard on a rundown street and rides along a sidewalk with someone behind them.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone guns down both agents, then sheds his jacket and dismantles the remote - controlled rifle.\",Someone\nlsmdc1043_Vantage_Point-89283,1997,Someone approaches a parked ambulance. Someone,stares at himself in a mirror.,walks up the narrow road toward a trees abutting hogwarts castle.,drags the white - haired boy away.,\"approaches, gives the bearded driver a head, and leaves.\",reappears with floating handbags.,gold1-orig,pos,unl,unl,unl,unl,Someone approaches a parked ambulance.,Someone\nlsmdc1043_Vantage_Point-89283,2010,Another agent rounds the corner. Someone,\"kills the agent, then draws his gun.\",is escorted through the cheering air.,runs signal to the detective.,\"shoots pensive, but he put his nose in the sink.\",finds someone on the phone.,gold0-orig,pos,unl,unl,unl,pos,Another agent rounds the corner.,Someone\nlsmdc1043_Vantage_Point-89283,2012,\"Someone uses a mirror to spot two agents outside someone's room, then opens fire. He\",shoots a third agent.,is moving around in flames.,takes a huge piece of paper bearing someone's name.,peers intently toward the binocular.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone uses a mirror to spot two agents outside someone's room, then opens fire.\",He\nlsmdc1043_Vantage_Point-89283,2018,Someone enters the gnn ob truck and flashes his i d.. Someone,enters the elevator with a gurney and presses the button for level seven.,gets some cash off his jeans pocket.,words sound cracker dully fast.,sees someone at the equipment window as he answers.,climbs into a control box as the police car gets in.,gold1-orig,pos,unl,unl,pos,pos,Someone enters the gnn ob truck and flashes his i d..,Someone\nlsmdc1043_Vantage_Point-89283,1983,Someone turns his back and walks away. Someone,stalks through the hotel corridors with his pistol drawn.,shows a picture of someone's.,\"pauses, licks her lips, then tilts his head stiffly and munches down his burger.\",spikes a heavy bell over his head.,faces someone who stares with a serene expression.,gold0-orig,pos,unl,unl,unl,pos,Someone turns his back and walks away.,Someone\nlsmdc1043_Vantage_Point-89283,2023,\"As someone leaves, someone spots him on the monitor. Someone\",\"glares at the monitor, then leaps into action, rushing out of the gnn truck.\",\"wraps his arm around someone, who gazes at him with bloodshot eyes.\",\"smiles and looks at someone, then whispers out of someone's side.\",gives a puzzled frown.,,gold0-orig,pos,unl,pos,pos,n/a,\"As someone leaves, someone spots him on the monitor.\",Someone\nlsmdc1043_Vantage_Point-89283,1999,He has dynamite strapped around his waist. He,closes his bellboy's jacket over it and anxiously makes his way into a hotel corridor.,\"gazes down at the coins, then turns and walks off, leaving someone standing empty.\",is just given him - - the man applies a sexual pose as a loose band player out to him.,puts a hood to his face and knits his arm around it.,\"sits at her desk, scowling at the ground, as someone gets out for a kid.\",gold0-orig,pos,unl,unl,unl,unl,He has dynamite strapped around his waist.,He\nlsmdc1043_Vantage_Point-89283,2017,People climb out of the ambulance. Someone,taps his cell phone screen.,lies bound to his bed.,points to someone flanking the brick radio.,is heading toward a steward.,is pulled under the canopy bridge.,gold1-orig,pos,unl,unl,unl,pos,People climb out of the ambulance.,Someone\nlsmdc1043_Vantage_Point-89283,1973,Someone talks into his cell phone as he passes the suited agents. Someone,lowers his phone and calls an elevator.,strides more into someone's room.,sits off by the wheel.,mixes nuts into his pot and throws some bills into his briefcase.,meets someone's gaze.,gold1-orig,pos,unl,unl,unl,pos,Someone talks into his cell phone as he passes the suited agents.,Someone\nlsmdc1043_Vantage_Point-89283,1993,Someone slips a cartridge into the pistol and removes his beige jacket. Someone,speaks into his radio.,aims his underlings finger at someone.,comes up the stairs and gestures with someone.,is someone crouching inside someone's van.,stops and faces him expectantly.,gold1-orig,unl,unl,unl,unl,unl,Someone slips a cartridge into the pistol and removes his beige jacket.,Someone\nlsmdc1043_Vantage_Point-89283,2027,\"Someone sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road. Someone\",rushes into oncoming traffic.,jerks against the trailer with shut inner door as cars fall down from a platform.,reaches for the door.,pulls back a bar onto a swing set.,splits down the abandoned pipe.,gold0-orig,pos,unl,unl,unl,pos,\"Someone sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road.\",Someone\nlsmdc1043_Vantage_Point-89283,2014,Someone sets charges which blow the door to someone's room. Someone,points his gun at someone.,runs to a troop.,\"bumps side by side, moving his jaw.\",\"steps upright, into the kitchen.\",is deeply startled awake.,gold1-orig,pos,unl,unl,unl,pos,Someone sets charges which blow the door to someone's room.,Someone\nlsmdc1043_Vantage_Point-89283,2013,He shoots a third agent. Someone,sets charges which blow the door to someone's room.,hauls off his aim.,\"holds his hand to someone, holding her hair - in hand.\",\"glances away, then shuts channels on his laptop.\",gives the neuralyzer a signal.,gold0-orig,pos,unl,unl,pos,pos,He shoots a third agent.,Someone\nlsmdc1043_Vantage_Point-89283,2028,Someone rushes into oncoming traffic. Someone,\"speeds off in a blue hatchback, then gets on his cell phone.\",stands on the kitchen.,bashes at the door.,runs around the herd.,\"enters, on the sofa.\",gold0-orig,pos,unl,unl,unl,unl,Someone rushes into oncoming traffic.,Someone\nlsmdc1043_Vantage_Point-89283,1982,\"Wearing a backpack, someone screws a silencer onto his pistol as he climbs a flight of steps in the hotel. He\",uses a touchscreen pda to activate the fan in the window overlooking the plaza.,tosses it across the main floor.,jogs and notices the last icon as he runs away.,puts water in his jacket and squats down and picks up the bottle containing greenish paint.,traffic follows it downstairs.,gold0-reannot,pos,unl,unl,unl,unl,\"Wearing a backpack, someone screws a silencer onto his pistol as he climbs a flight of steps in the hotel.\",He\nlsmdc1043_Vantage_Point-89283,2003,\"Someone shoots him, startling someone. Someone\",\"runs up a stairwell in the hotel, then checks his watch.\",approaches naked bound into someone and someone.,\"leaps up and down his shirts, knocking them along a well.\",eyes the final card.,chops off one of the plants.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone shoots him, startling someone.\",Someone\nlsmdc1043_Vantage_Point-89283,1975,\"Someone steps out of the cafe onto the sunny street, the wire from his hands - free kit trailing down his white T - shirt to the phone in his hand. The huge enclosed square of the plaza\",is surrounded by terra cotta colored buildings.,is full with tires in a coffin behind him.,sits beside a dingy land parking lot.,\"is manicured with trophies, but the building is landing in the blazing mess suite.\",\"forward and scuttles out, climbing a wall.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone steps out of the cafe onto the sunny street, the wire from his hands - free kit trailing down his white T - shirt to the phone in his hand.\",The huge enclosed square of the plaza\nlsmdc1043_Vantage_Point-89283,2022,\"Someone changes into a Spanish policeman's outfit and heads down an outside staircase with the packed up rifle. As someone leaves, someone\",spots him on the monitor.,watches footage from someone and window.,turns around with her face turned away.,\"pushes up the stairs, staring at him.\",\"runs past policemen, terrified.\",gold0-reannot,pos,unl,unl,pos,pos,Someone changes into a Spanish policeman's outfit and heads down an outside staircase with the packed up rifle.,\"As someone leaves, someone\"\nlsmdc1043_Vantage_Point-89283,1968,A bellboy answers a phone in the hotel reception. Someone the bellboy,hangs up the phone.,moves through the door and go around to a close view of the private promenade.,rushes into the door to find the ascending doing guard.,strolls down a hallway into a kitchen.,,gold0-reannot,pos,unl,unl,pos,n/a,A bellboy answers a phone in the hotel reception.,Someone the bellboy\nlsmdc1043_Vantage_Point-89283,1979,\"Inside, he removes a hold - all from a fridge and takes a pistol from it. He\",loads the pistol and puts an earpiece in.,aims a cart of gunpowder at a crewman and hits someone on the bed.,reaches out from unbuttoning the suit.,takes a scrap of paper from the rack and replaces it outside.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Inside, he removes a hold - all from a fridge and takes a pistol from it.\",He\nlsmdc1043_Vantage_Point-89283,1990,He taps the screen as the double steps up to the podium with his arm outstretched. Someone,squats over someone's double.,comes out of the way.,pushes him away toward the bed.,lifts his hands and marches after her.,enters the small room through the rain.,gold0-reannot,pos,unl,unl,unl,unl,He taps the screen as the double steps up to the podium with his arm outstretched.,Someone\nlsmdc1043_Vantage_Point-89283,1996,\"He caresses a family photograph from the inside of the locker door, then shuts it. Someone\",approaches a parked ambulance.,looks down on the window directly to her.,closes the book and opens it.,sees a private apartment closing in the window window.,works for his penny.,gold0-reannot,pos,unl,unl,unl,unl,\"He caresses a family photograph from the inside of the locker door, then shuts it.\",Someone\nlsmdc1043_Vantage_Point-89283,1974,Someone lowers his phone and calls an elevator. He,turns the credit card sized envelope in his hands.,delivers a billboard to someone and someone.,pats someone's shoulder.,glares and runs out to the cashier.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone lowers his phone and calls an elevator.,He\nlsmdc1043_Vantage_Point-89283,2026,\"As someone rounds a corner, he heads down a quiet street. Someone\",\"sees someone speed off and gives chase on foot through a narrow pedestrian street, then onto the main road.\",sits on the clawing black leather couch.,returns his wallet to his shoulder.,and thousands of troops watch from the street.,ruined snowy edges all around.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone rounds a corner, he heads down a quiet street.\",Someone\nlsmdc1043_Vantage_Point-89283,2025,\"Someone puts his cell phone into the front seat of the ambulance driven by people, and gets into a Spanish police car. As someone rounds a corner, he\",heads down a quiet street.,notices a smartly dressed people.,peers into an underwater room through obstacles.,\"sees someone in the room, pushing through the car and banister.\",stands on a sidewalk perusing the towed streets.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone puts his cell phone into the front seat of the ambulance driven by people, and gets into a Spanish police car.\",\"As someone rounds a corner, he\"\nlsmdc3011_BLIND_DATING-1159,9779,\"Meeting someone's sincere gaze, someone takes a shaky breath. Someone\",gently puts a hand on her shoulder and guides her to the waiting area.,\"leaps forward, going into someone's skiff.\",walks forward.,watches sadly as a baby older woman sits asleep tapping her hands in her lap.,,gold0-orig,pos,unl,pos,pos,n/a,\"Meeting someone's sincere gaze, someone takes a shaky breath.\",Someone\nlsmdc3011_BLIND_DATING-1159,9781,\"Someone's mother takes someone's hand in hers, then pulls her into. Someone\",rests one hand on his wife's shoulder and the other on someone's wrist.,kisses the outside.,\"lie on the floor, then fight.\",kisses someone's hand.,picks off some of his food and dances to someone.,gold1-orig,pos,unl,unl,pos,pos,\"Someone's mother takes someone's hand in hers, then pulls her into.\",Someone\nlsmdc3011_BLIND_DATING-1159,9784,A bandage covers one side of his head. They all,rush to his bedside.,move up to the hospital bed.,look up at them.,look up and hug each other.,,gold0-orig,pos,pos,pos,pos,n/a,A bandage covers one side of his head.,They all\nlsmdc3011_BLIND_DATING-1159,9782,\"Someone rests one hand on his wife's shoulder and the other on someone's wrist. Now, someone\",sleeps in a hospital bed hooked up to monitors.,works at the cabinet drying with his thumb.,\"sits on a makeshift dirt road, working in her apartment.\",sits on her bed by an employee lounge as someone strides to her office.,,gold0-orig,pos,unl,unl,pos,n/a,Someone rests one hand on his wife's shoulder and the other on someone's wrist.,\"Now, someone\"\nlsmdc3011_BLIND_DATING-1159,9777,\"As he smiles at her, she stares back tearful. Someone\",takes a step closer.,sits in a chair alone at a nearby booth.,kisses down at someone's side.,lowers his shy gaze.,\"nods and walks away, smiling.\",gold1-orig,pos,unl,unl,pos,pos,\"As he smiles at her, she stares back tearful.\",Someone\nlsmdc3011_BLIND_DATING-1159,9783,\"Now, someone sleeps in a hospital bed hooked up to monitors. A bandage\",covers one side of his head.,props his knees up.,form anxiously on someone's broken face.,is scattered over her head.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone sleeps in a hospital bed hooked up to monitors.\",A bandage\nlsmdc3011_BLIND_DATING-1159,9778,\"Someone takes a step closer. Meeting someone's sincere gaze, someone\",takes a shaky breath.,cups her hand to samantha's head.,shares his face with her hair.,stabs his identical brother down.,approaches his beefy student.,gold1-reannot,pos,unl,unl,unl,unl,Someone takes a step closer.,\"Meeting someone's sincere gaze, someone\"\nanetv_aGKySEwCMnI,18157,A black Labrador retriever walks up to the camera from the shoreline. The cameraman,pans back to the two woman building the sand castle and the toddler watching on.,shows a young child skateboarding in the snow and again interviews several skateboarders.,moves the trashcan as he hops a bit way.,stops him from giving a cameraman goodbye.,feed the river memorial flag.,gold0-orig,pos,unl,unl,unl,unl,A black Labrador retriever walks up to the camera from the shoreline.,The cameraman\nanetv_aGKySEwCMnI,18156,The camera man pans the camera to the shoreline while a young boy runs and plays in the shallow water. A black Labrador retriever,walks up to the camera from the shoreline.,moves down the slide where many people wander various tubes and ways through the water park.,reveals a large meerkat.,shows the young child in the pool with little puppy boy in it.,flies up from behind the wall by his side.,gold0-orig,pos,unl,unl,unl,unl,The camera man pans the camera to the shoreline while a young boy runs and plays in the shallow water.,A black Labrador retriever\nanetv_aGKySEwCMnI,18155,The toddler picks up a blue bucket and places it upside down on the sand. The camera man,pans the camera to the shoreline while a young boy runs and plays in the shallow water.,\"flips his hair back on the the pages, then films himself continuously.\",puts a hose down and dries the snow from the car.,\"slides his bag down the bucket, finds another towel, and tosses it on the surface.\",cuts the strands to show someone leaning on a support bucket next.,gold0-orig,pos,unl,unl,unl,unl,The toddler picks up a blue bucket and places it upside down on the sand.,The camera man\nanetv_aGKySEwCMnI,9208,People are sitting on the beach making a sand castle. A black dog,is shown walking on the beach.,is getting hit by the leaves.,is standing at the sink.,is walking towards the beach.,is standing up next to them.,gold0-orig,pos,unl,unl,pos,pos,People are sitting on the beach making a sand castle.,A black dog\nanetv_aGKySEwCMnI,18154,Two ladies in bathing suits build a sand castle on the beach while a toddler stands by watching. The toddler,picks up a blue bucket and places it upside down on the sand.,fall from a cup of the saucer.,helps her carry the paddle as they head across the river lawn.,steps on and spins her downward wildly.,stops to face the boy again.,gold1-orig,pos,unl,unl,unl,pos,Two ladies in bathing suits build a sand castle on the beach while a toddler stands by watching.,The toddler\nanetv_aGKySEwCMnI,9209,A black dog is shown walking on the beach. A person,is running into the waves of the water.,begins combing the dogs hair with a pink comb.,is asleep next to him along the couch.,jumps into the water with a rope rope.,,gold0-orig,pos,unl,unl,unl,n/a,A black dog is shown walking on the beach.,A person\nanetv_ymmBQHiNK24,7343,A man in a black shirt is playing the bag pipes. He,stops playing and sets the bag pipes down.,man is sitting in the kitchen and a man is doing flips with a discus.,is sitting behind him.,coffee is playing the piano.,leaves the room to start with a wooden cross in front of him.,gold0-orig,pos,unl,unl,unl,unl,A man in a black shirt is playing the bag pipes.,He\nanetv_ymmBQHiNK24,7342,Words are shown on the screen. A man in a black shirt,is playing the bag pipes.,appears and pours the weight.,plays flute behind a shop.,is standing next to five men on a roof table.,,gold0-reannot,pos,unl,unl,unl,n/a,Words are shown on the screen.,A man in a black shirt\nanetv_PDaGlIxn6Pk,5823,A crowd watches the game intently. The players,\"run back and forth across the field, hitting the ball into goals.\",kick their guns together.,line up on the stilts going between hilly.,rake and confer from two cups.,move out into the sand pit.,gold0-orig,pos,unl,unl,unl,unl,A crowd watches the game intently.,The players\nanetv_PDaGlIxn6Pk,5822,A couple of teams are playing lacrosse on an open field. A crowd,watches the game intently.,is hit at the goal.,of people are standing around the yard watching a game.,of players are gathered and talking.,,gold0-orig,pos,unl,unl,pos,n/a,A couple of teams are playing lacrosse on an open field.,A crowd\nanetv_UJfwaeMrZ7A,17149,A woman is on a concrete court outside. She,is jumping across a chalk drawn hopscotch game.,starts to spin and kick dances with batons.,plays a drum set.,\"high kicks the red ball, walks to the tree and throws some lawn chairs.\",begins to play a game of shuffleboard.,gold0-orig,pos,unl,unl,unl,pos,A woman is on a concrete court outside.,She\nanetv_UJfwaeMrZ7A,17150,She is jumping across a chalk drawn hopscotch game. She,goes back and forth over the puzzle twice.,is playing her accordian for.,crosses a step on the monkey.,pauses and stares as she goes and has her right to do it herself.,,gold0-reannot,pos,unl,unl,pos,n/a,She is jumping across a chalk drawn hopscotch game.,She\nlsmdc1027_Les_Miserables-6478,2267,On the journey he leans back in the carriage. Someone and his wife,hitch a ride on the back of a carriage which arrives at the mansion.,\"leave someone, at the half - emaciated center.\",follow in a large amphitheater.,climb onto the side carriage and wave their arms up.,lie beside each other.,gold0-orig,pos,unl,unl,pos,pos,On the journey he leans back in the carriage.,Someone and his wife\nlsmdc1027_Les_Miserables-6478,2268,\"They sneak round to the far side of the carriage, climb inside, and exit through the opposite door as if they'd arrived in the carriage. Dressed finely, they\",\"mingle with the guests, stealing as they go.\",step into the high part of the dance platform and dance watches they continue to dance.,\"stroll across a bustling woods spiral, out onto a dark street which opens next to the red - haired gangster.\",\"cross another door and sit on some soup at the same time, some working on the house.\",sit back in the bath and look back at the boys below.,gold0-orig,pos,unl,unl,unl,unl,\"They sneak round to the far side of the carriage, climb inside, and exit through the opposite door as if they'd arrived in the carriage.\",\"Dressed finely, they\"\nlsmdc1027_Les_Miserables-6478,2266,\"Someone bows, and someone, his arm no longer in a sling but still walking with a limp, takes his leave. Someone\",carries a large trunk out to a waiting carriage.,\"raises his fingers, looks down at his full height and looks inches from his stick.\",and someone march the corridor.,walks over in front of someone and whispers something to someone who was holding his backpack as someone hangs up and eyes his phone.,wryly lowers his brow and the soldier shifts his defeated gaze.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone bows, and someone, his arm no longer in a sling but still walking with a limp, takes his leave.\",Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6728,\"He takes someone's arm. On their way upstairs, he\",glances back at someone who sneers and points.,takes out his handful of happier cash.,puts the coffee cup down for a flower.,heads inside and checks the peephole.,watches someone leave before someone exits the tent.,gold0-orig,pos,unl,unl,pos,pos,He takes someone's arm.,\"On their way upstairs, he\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6730,\"Now, in a dorm, the lovely Asian girl wears only a towel. Someone\",stomps someone's foot.,brushes her bangs out of a glare.,turns around and faces her guest.,tugs on a piece of fabric.,falls on her stomach.,gold1-orig,pos,unl,pos,pos,pos,\"Now, in a dorm, the lovely Asian girl wears only a towel.\",Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-129,6729,\"On their way upstairs, he glances back at someone who sneers and points. Now, in a dorm, the lovely Asian girl\",wears only a towel.,stops looking at someone's hand.,sleeps alone with her groups.,sits in a chair on a cobble muddy field.,,gold0-orig,pos,unl,unl,unl,n/a,\"On their way upstairs, he glances back at someone who sneers and points.\",\"Now, in a dorm, the lovely Asian girl\"\nanetv_YZQ_qh9wC4w,9042,A girl is stretching in front of a swimming pool. She,steps on a board and dives into the pool.,continues to shoot up and swims.,is swimming in an orange swimming pool holding something in her hand.,is holding her paddle by a pinata hanging above her head.,continues swimming around the water while people watch on the side.,gold1-orig,pos,unl,unl,unl,pos,A girl is stretching in front of a swimming pool.,She\nanetv_YZQ_qh9wC4w,9043,She steps on a board and dives into the pool. She,starts swimming laps in the pool.,cheers on his blade and swims several times.,continues in the water and hits the ground.,bursts onto the landing and runs on to the side.,walks through a crowd on top of it.,gold0-orig,pos,unl,unl,unl,unl,She steps on a board and dives into the pool.,She\nanetv_YZQ_qh9wC4w,11631,The girl stretches with a mans help and then dives into a pool. The girl,swims back and fourth in the pool and ends with her coach instructing her.,\"hops out of the water, misses and crashes down in the sand pit.\",then takes the boy underwater and shows off a bowling ball.,stands on the edge of the pool and starts swimming.,runs away on the diving board into the pool.,gold0-orig,pos,unl,unl,unl,unl,The girl stretches with a mans help and then dives into a pool.,The girl\nanetv_5T7vTuJmYeQ,15381,A child swings on monkey bars. The child,dismounts from the monkey bars.,kicks a birdie down.,watches behind them as the kids sit on the swing and hang up at the end.,jumps on the monkey bars and jumps again.,pulls the young child back and fourth in the swing set.,gold1-orig,pos,unl,pos,pos,pos,A child swings on monkey bars.,The child\nanetv_5T7vTuJmYeQ,15382,The child dismounts from the monkey bars. The child,walks towards the camera.,dismounts from the bars.,slides down the chair as well.,gets out of the swing.,falls onto another part of the playground.,gold0-reannot,pos,unl,unl,unl,pos,The child dismounts from the monkey bars.,The child\nanetv_YZacstLO0XA,11975,He pours the raw egg batter into the pan. He,lifts the pan and moves it around to shuffle the eggs.,swirls the stir under the adhesive.,stirs the dough into a kite.,drops the tiny pan onto a plate.,puts oil on the pan.,gold0-orig,pos,unl,unl,pos,pos,He pours the raw egg batter into the pan.,He\nanetv_YZacstLO0XA,11972,A man is demonstrating how to make a three egg omelette in his kitchen. He,starts by cracking the eggs in a clear glass bowl.,\"dignified - only, grazing bags, plus stokes.\",\"of a white shoveling screen appears, a man is laid out from backwards.\",\"selects comfortable objects, front, and cooking cake.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is demonstrating how to make a three egg omelette in his kitchen.,He\nanetv_YZacstLO0XA,11976,He lifts the pan and moves it around to shuffle the eggs. He then,tops is off with some grated cheese.,picks up an ice tin and cooks it.,continues mixing the ingredients into a bowl and breaks down the sandwich.,bakes chocolate that he waxes and ake out once he is done.,uses a ruler and sprinkled his cake with sugar to the stands.,gold0-orig,pos,unl,unl,unl,unl,He lifts the pan and moves it around to shuffle the eggs.,He then\nanetv_YZacstLO0XA,11977,He then tops is off with some grated cheese. He,takes a fork and slides the omelette into a white plate.,puts a pack into a paper bowl.,\"is unscrewing the shingles, tying them and puts them upside down with some cement.\",\"refuses anyone demonstrates what he wants it to do when they have done, other things pooling at the bottom.\",,gold0-orig,pos,unl,unl,unl,n/a,He then tops is off with some grated cheese.,He\nanetv_YZacstLO0XA,11978,He takes a fork and slides the omelette into a white plate. He then,garnishes it with some greens on top for a healthy touch.,dumps the omelette onto the plate and cuts it slices.,scoops ice to the end of the sandwich.,jumps the mixture off a plate while the camera focuses on a plastic plate.,,gold0-orig,pos,unl,unl,unl,n/a,He takes a fork and slides the omelette into a white plate.,He then\nanetv_YZacstLO0XA,11974,He then beats the eggs well and adds some butter into the saucepan. He,pours the raw egg batter into the pan.,turns around and starts kneeling.,continues it crackle while talking to the camera and stirring noodles into a bowl.,\"wipes it off with a stick of a substance, then dries the top off.\",finishes helm and looks around.,gold0-orig,pos,unl,unl,unl,unl,He then beats the eggs well and adds some butter into the saucepan.,He\nanetv_YZacstLO0XA,11973,He starts by cracking the eggs in a clear glass bowl. He then,beats the eggs well and adds some butter into the saucepan.,moves the knife and hands into another bowl.,sprinkled over the chopped egg and explains some more.,puts a slice of ham on the bowl and puts it into a pitcher.,puts it into a pan and empties out of the oven.,gold0-orig,pos,unl,unl,unl,unl,He starts by cracking the eggs in a clear glass bowl.,He then\nlsmdc1055_Marley_and_me-96435,14137,\"Someone rummages for his phone. Back home, someone\",lets marley off the leash.,ties his car keys.,gets into the driver's seat.,runs through his distraught bed.,clips the diagrams with a smile.,gold0-reannot,pos,unl,unl,unl,pos,Someone rummages for his phone.,\"Back home, someone\"\nlsmdc1055_Marley_and_me-96435,14138,\"Back home, someone lets Marley off the leash. He\",sits on the bed.,shoots a golf cart behind a foreign wildlife park.,continues hanging.,hurries to the front door and notices him on the floor.,closes the emptied door.,gold0-reannot,pos,unl,unl,unl,unl,\"Back home, someone lets Marley off the leash.\",He\nanetv_fYQTAuBS7zw,13243,A guy shows you how to hold a small sharp ending stick in your hand and between your fingers to use as a weapon. The man,shows you how to throw the sharp ended stick into the wall and make it stick from different distances.,leans at the head.,raises a bow behind his head.,spins across the circle and holds a shot put and begins demonstrating how to properly take.,,gold0-orig,pos,unl,unl,unl,n/a,A guy shows you how to hold a small sharp ending stick in your hand and between your fingers to use as a weapon.,The man\nlsmdc3037_IRON_MAN2-16872,7350,\"Later, someone and two men arrive at the lab. Someone\",\"presses buttons on a panel, unlocking a door.\",steps in beside the african soldier.,taps someone's head.,wipes tears off her face.,jumps into the swimming pool and turns to the other side.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone and two men arrive at the lab.\",Someone\nlsmdc3037_IRON_MAN2-16872,7349,\"Someone activates the reactor, which electrifies a long coil. Later, someone and two men\",arrive at the lab.,explains the process of moving their hands.,stand in a cluttered building.,take flight and enter a tall bar.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone activates the reactor, which electrifies a long coil.\",\"Later, someone and two men\"\nlsmdc3037_IRON_MAN2-16872,7352,He and the men enter a room where someone lounges on a cot. Someone,strokes the cockatoo which is perched on his knee.,removes some top off a hanger and raises the handle.,\"smiles down his telescope, and exhales the toad - up to his crotch.\",\"holds up an arm, then wears a clean smile.\",pounds the general's mouth with someone's napkin.,gold1-orig,pos,unl,unl,unl,unl,He and the men enter a room where someone lounges on a cot.,Someone\nlsmdc3037_IRON_MAN2-16872,7351,\"Someone presses buttons on a panel, unlocking a door. He and the men\",enter a room where someone lounges on a cot.,stare at the performance; their smiles fades.,climb into a cavernous white hotel room.,walk off as someone leaves his door.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone presses buttons on a panel, unlocking a door.\",He and the men\nlsmdc3037_IRON_MAN2-16872,7353,One man grabs the bird. The other man,grabs someone's pillows.,pauses and a fire appears.,picks a yellow conga.,shows many ingredients in it.,lays down the content of the disc.,gold1-reannot,pos,unl,unl,unl,unl,One man grabs the bird.,The other man\nlsmdc0005_Chinatown-48300,15790,The Clerk turns sharply around. Someone,looks a little surprised.,turns to someone who starts to run around him.,looks up in wonder.,follows someone in to the exit.,tries to stop her.,gold0-orig,pos,unl,pos,pos,pos,The Clerk turns sharply around.,Someone\nlsmdc0005_Chinatown-48300,15786,\"Someone regards his back a moment, then goes to the stacks. Someone\",\"sees the clerk turn to another, say something.\",opens a bar for someone.,\"sits slumped in a chair, his gaze fixed ahead.\",appears and closes the door.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone regards his back a moment, then goes to the stacks.\",Someone\nlsmdc0005_Chinatown-48300,15788,\"He hauls down the northwest valley volume, opens it. It's huge and there\",'s a lot to go through.,is a middle - aged man below on a school background.,is a young woman blowing snow from a bush.,are many other things drawn.,,gold0-orig,pos,unl,unl,pos,n/a,\"He hauls down the northwest valley volume, opens it.\",It's huge and there\nlsmdc0005_Chinatown-48300,15789,The print itself makes him squint. These descriptions,are old and faded.,\"are infinitely stout, blackened, viewed from their undershirt.\",hang on his web.,\"mutters, and every hand fills him for the kill.\",,gold0-orig,pos,unl,unl,unl,n/a,The print itself makes him squint.,These descriptions\nlsmdc0005_Chinatown-48300,15785,Cross looks hatefully at someone. Someone,approaches one of the clerks at a desk.,\", a child, walks towards someone.\",puts the hand - doh down and takes his whiskey.,\"turns, she faces someone, who stares calmly at someone.\",,gold0-orig,pos,unl,unl,pos,n/a,Cross looks hatefully at someone.,Someone\nlsmdc0005_Chinatown-48300,15787,\"Someone sees the Clerk turn to another, say something. The second clerk\",gets on the phone.,signals with his rate book.,removes his jacket and tries to check out.,is back staring at him.,glares and then turns away.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sees the Clerk turn to another, say something.\",The second clerk\nanetv_K98WGaMR4eM,2658,A man in a striped shirt is refereeing for their fight. A woman,picks up another woman and drops her on the mat several times.,sits next to him and puts the yarn on.,next to him is swinging at the pinata.,leaps around him and gets ready to play.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a striped shirt is refereeing for their fight.,A woman\nanetv_K98WGaMR4eM,13713,A man and a woman are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt. man and woman are doing wrestling movements in a ring in a dark room and a referee,is waching and screaming at them.,wearing a blue shirt grabs hold of the cheering bull.,is wearing the padded shirt and waving his arms in an air.,performs other exercises on a tight rope.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt.,man and woman are doing wrestling movements in a ring in a dark room and a referee\nanetv_K98WGaMR4eM,13715,A man anda woman are ina a ring in a wrestling competition fighting while people is in stands screaming. two women,are in a blue ring wrestling in a small white room.,come flying out of the ring and give the balls over.,stand on the court holding rifles and scratches on their sides.,are seated in a kitchen.,are playing a game with the other team.,gold0-orig,pos,unl,unl,unl,unl,A man anda woman are ina a ring in a wrestling competition fighting while people is in stands screaming.,two women\nanetv_K98WGaMR4eM,13712,A man and a woman are practicing wrest movements. a man and a woman,are in a ring wrestling while a referee is standing in the corner of the ring along with a woman holding a wrestling belt.,are doing the same.,are bouncing on a heated strip of rusty paper in front of them.,are working on a snow - covered sidewalk.,,gold1-orig,pos,unl,unl,unl,n/a,A man and a woman are practicing wrest movements.,a man and a woman\nanetv_K98WGaMR4eM,13714,A man and a woman wearing suits with capes are doing wrestling movemetns on a ring. a man anda woman,are ina a ring in a wrestling competition fighting while people is in stands screaming.,\"helps forward, and gets the bag under her knees.\",is talking the back of the field.,takes a drinks as they throw arrows into the net.,watch the man on the ground.,gold0-orig,pos,unl,unl,unl,unl,A man and a woman wearing suits with capes are doing wrestling movemetns on a ring.,a man anda woman\nanetv_K98WGaMR4eM,13716,Two women are in a blue ring wrestling in a small white room. a man and a woman,are wrestling in a ring in a competition.,is standing in a room as the people batons in the air and interviews people in the audience talking.,are sitting on a tennis court playing squash.,are in a ring in the ring ring by a ring on the floor.,\"are wearing black barbel to others in public, taking turns jumping in unison.\",gold0-orig,pos,unl,unl,unl,unl,Two women are in a blue ring wrestling in a small white room.,a man and a woman\nanetv_GxOjqC_IDX4,11030,\"He is moving his legs, stretches back and takes off. He\",runs fast fast down the strip and quickly leaps into the sand.,continues to ride down along the edge of a slope as well as around.,reaches for his walkie - talkie.,stretches his legs out and jumps onto a mat.,,gold0-orig,pos,unl,unl,pos,n/a,\"He is moving his legs, stretches back and takes off.\",He\nanetv_GxOjqC_IDX4,16099,Athletes are shown on a track. They,stretch and get ready.,spin around a net.,do move up on line.,are jumps on the wall.,,gold1-orig,pos,unl,unl,unl,n/a,Athletes are shown on a track.,They\nanetv_GxOjqC_IDX4,16100,They stretch and get ready. One,runs and takes a leap into the sand.,celebrates each time for a few seconds.,flip several times as everyone takes.,has a large balloon.,,gold0-orig,pos,unl,unl,pos,n/a,They stretch and get ready.,One\nanetv_GxOjqC_IDX4,11031,He runs fast fast down the strip and quickly leaps into the sand. Then he,goes back to start over and does it a few more times.,follows current movements before leaving only the other corporate breathless.,\"runs all over the room and runs, almost rolling one foot after another.\",runs off the road and getting excited.,talks to a woman and a woman takes out a chair to put food to his plate.,gold1-orig,pos,unl,unl,unl,unl,He runs fast fast down the strip and quickly leaps into the sand.,Then he\nanetv_GxOjqC_IDX4,11029,\"Two men are standing by on a running strip, one of them is preparing to start running. He\",\"is moving his legs, stretches back and takes off.\",\"jumps across the track, goes down with a running,.\",walks about and shoots the ball.,is playing in the gym as he is done and wipes his legs back and forth while he is pointing it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Two men are standing by on a running strip, one of them is preparing to start running.\",He\nanetv_GxOjqC_IDX4,16101,One runs and takes a leap into the sand. The distance,is measured to it.,is shown by another smiling man watching the competition.,is forcefully jumping over the ramp.,returns when the person finally jump.,gives way to colorful sand.,gold0-orig,pos,unl,unl,unl,pos,One runs and takes a leap into the sand.,The distance\nanetv_JowsnupmNd0,1340,She swings her leg up. She,drops down to the ground.,twirls around on the ground.,lifts herself up on her elbows.,kicks the vampire at the like pinata.,bounces up and down on the mat.,gold1-orig,pos,unl,unl,unl,unl,She swings her leg up.,She\nanetv_JowsnupmNd0,1339,A little girl is crossing the monkey bars. She,swings her leg up.,cuts to the monkey bars and backflips.,does push ups and returns to the hoop.,lifts the leg high over her head.,runs and jumps over a monkey bar.,gold0-orig,pos,unl,unl,unl,pos,A little girl is crossing the monkey bars.,She\nanetv_TJFl99tLNWk,6915,A clear coating is coating is applied onto the nails. The tape is removed and the edges,are cleaned up with nail polish remover solution.,are secured towards her.,come back onto the nails.,are rolled in half.,,gold0-orig,pos,unl,unl,pos,n/a,A clear coating is coating is applied onto the nails.,The tape is removed and the edges\nanetv_TJFl99tLNWk,6914,Different shades of nail polish are applied to a foam pad then dabbed on the finger nails. A clear coating,is coating is applied onto the nails.,is set against a smaller opened fan holding a computer cutter.,hits a nail polish on the fingernail and ends by removing them out.,is poured with instructions 8 lady showing the polished brown hair.,,gold0-orig,pos,unl,unl,unl,n/a,Different shades of nail polish are applied to a foam pad then dabbed on the finger nails.,A clear coating\nanetv_TJFl99tLNWk,6913,Different shades of nail polish bottles are seen. Pieces of taper,are wrapped around the tips of fingers around the nails.,cake are rough with a lot of stuff.,are shown as well as light in the mirror.,are stacked neatly afterwards.,,gold0-orig,pos,unl,pos,pos,n/a,Different shades of nail polish bottles are seen.,Pieces of taper\nanetv_q2JRY6-riYA,3691,People are sitting in blue bumper cars. They,drive around and bump into each other.,go around and fall off the bikes again.,are standing behind a marching man playing the game while a paintball is outside behind them.,are playing a game of hop scotch.,are talking as they hit.,gold0-orig,pos,unl,unl,unl,pos,People are sitting in blue bumper cars.,They\nanetv_q2JRY6-riYA,3692,They drive around and bump into each other. A little boy in a hat,waves at the camera.,talks with an imaginary man.,heads out of the bedroom.,walks up on the house.,climbs past the jumping fence.,gold1-reannot,pos,unl,unl,unl,unl,They drive around and bump into each other.,A little boy in a hat\nlsmdc0006_Clerks-48790,999,\"And then a little girl comes into view, smiling and holding money. She\",can't be any more than five.,arrives at the house to get out from a window.,\"sits on the floor, then does her back.\",plays with the delighted child.,,gold0-orig,pos,unl,unl,pos,n/a,\"And then a little girl comes into view, smiling and holding money.\",She\nanetv_2-1MNxfX5Bc,5849,The person fall out and ride down the river while others run on the side. More people,continue to ride down the river.,give their thumbs with the outlines from a group and others sit with one another.,come to the end end end and go back to the front.,are seen speaking to the camera and leads into several people climbing the waterfall.,are shown riding in and out into the cars as people watch on the side.,gold0-orig,pos,unl,unl,unl,unl,The person fall out and ride down the river while others run on the side.,More people\nanetv_2-1MNxfX5Bc,2010,\"One person gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope. Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people\",are also going down the rough waters and also struggling to keep their heads afloat.,come through the water as calmly as possible to water down the water as well as a person walking to their boat.,are eventually pushed by the water and skate around them he landed on the sides and the man in wakeboarding robes are shown coming.,run out to see about 100 feet behind it.,are able to do a leg under the board bridge.,gold0-orig,pos,unl,unl,unl,unl,One person gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope.,\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people\"\nanetv_2-1MNxfX5Bc,2009,The people eventually emerge and they all begin to struggle to get out of the water. One person,gets to the other side of the water and is pulled to safety by a rope and someone on land holding the rope.,has then thrown the third a chases while the camera view pans around the diver moves in making the same skis well.,passes between the adult and the other on the boat while the oars climb out and choppy it.,enters and the people begin to water surfing.,,gold0-orig,pos,unl,unl,pos,n/a,The people eventually emerge and they all begin to struggle to get out of the water.,One person\nanetv_2-1MNxfX5Bc,2008,\"The raft gets into a bit of trouble, flips over and everyone flips into the very rough waters. The people eventually emerge and they all\",begin to struggle to get out of the water.,get in the water with their sticks to add sand.,make their way to a river and land on the water.,sit in the raft with the oars attached by their thread.,go to water and remember and relating tricks.,gold0-orig,pos,unl,unl,unl,unl,\"The raft gets into a bit of trouble, flips over and everyone flips into the very rough waters.\",The people eventually emerge and they all\nanetv_2-1MNxfX5Bc,2007,\"A group of 8 people are wearing helmets and life vests as they are riding a raft in very rough white waters. The raft gets into a bit of trouble, flips over and everyone\",flips into the very rough waters.,jumps off the cliffs and jogs behind it.,starts to walk away.,surf and the boat howls to water as a row of penguins and kids mounted on the back.,rides into the water.,gold0-orig,pos,unl,unl,unl,pos,A group of 8 people are wearing helmets and life vests as they are riding a raft in very rough white waters.,\"The raft gets into a bit of trouble, flips over and everyone\"\nanetv_2-1MNxfX5Bc,2011,\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people are also going down the rough waters and also struggling to keep their heads afloat. More people are struggling in the water, one is sitting on the upside down raft, and three others\",are in the rough waters and are also struggling to keep their heads afloat and not bang into rocks.,sit on the water.,broken the raft from the board.,are suddenly pushed down the slope.,go the other way.,gold0-reannot,pos,unl,unl,unl,pos,\"Two people begin to go down the very rough waters as they struggle to keep their heads afloat, and quickly two more people are also going down the rough waters and also struggling to keep their heads afloat.\",\"More people are struggling in the water, one is sitting on the upside down raft, and three others\"\nanetv_WhBnR7yIvJc,8882,Little blonde kid is in a swinging laughing and watching the camera. little kid,is swinging in a playground having fun.,is doing arm ups next to the wall.,is sitting in the dressing room talking.,is swinging as an old man went around the arena with the pinata and a kid with the stick do swinging.,,gold0-orig,pos,unl,unl,unl,n/a,Little blonde kid is in a swinging laughing and watching the camera.,little kid\nanetv_WhBnR7yIvJc,10320,A little girl is swinging in a swing. She,tilts backwards and looks behind her.,dismounts with all the weights on.,holds the swing and climbs kids back inside.,slides into the field with a flip.,pulls the girls out with him.,gold0-orig,pos,unl,unl,unl,unl,A little girl is swinging in a swing.,She\nanetv_WhBnR7yIvJc,10321,She tilts backwards and looks behind her. She,smiles and waves at the camera.,touches the wind gently.,is efficient harmlessly in profile.,looks again at last time.,,gold0-orig,pos,unl,unl,unl,n/a,She tilts backwards and looks behind her.,She\nanetv_WhBnR7yIvJc,8883,Little kid is swinging in a playground having fun. little blonde kid,is having fun swinging herself in a playground.,is doing abs in the floor.,is laying on the playground outside the gym.,\"is watching them on the tree, and sitting on the boat swing.\",,gold0-reannot,pos,unl,pos,pos,n/a,Little kid is swinging in a playground having fun.,little blonde kid\nanetv_ofrX4WyAM-0,15888,She adds pasta to the water. We,see the pasta box up close.,fish and fake strawberries.,spoon is added to a pot on the stove.,\", the girl washes some baking bowls with a salad utensil.\",\"it, he gargles.\",gold0-orig,pos,unl,unl,unl,unl,She adds pasta to the water.,We\nanetv_ofrX4WyAM-0,15885,We see spaghetti in a box. We,see salt in a cup.,see a person raking dry snow in the room.,see ingredients on a tables.,see the lady cooking and cooking.,see a man pulling a rope.,gold1-orig,pos,unl,pos,pos,pos,We see spaghetti in a box.,We\nanetv_ofrX4WyAM-0,15887,She adds salt to the pot. She,adds pasta to the water.,adds it and olive oil onto a plate.,sprinkles the pasta in a saucepan.,spoons garlic into noodles with more paste.,pours water out of the container.,gold0-orig,pos,unl,unl,unl,unl,She adds salt to the pot.,She\nanetv_ofrX4WyAM-0,15891,She takes the pasta out of the pot. She,talks and waves bye to the camera.,continues the cooking with chopped sauce and cuts them away.,moves a plastic bowl and mixes it with red stencil.,mixes all the ingredients into the pot.,adds the ingredients in the bucket and starts to eat.,gold1-orig,pos,unl,unl,pos,pos,She takes the pasta out of the pot.,She\nanetv_ofrX4WyAM-0,15884,We then see a pot. We,see spaghetti in a box.,see tooth foam on a blue screen.,see a pan and make out on the stove.,see the cook in several pan and we see the veterinarian boat on the next set.,pan a washer and put the settings on the stove.,gold0-orig,pos,unl,unl,unl,unl,We then see a pot.,We\nanetv_ofrX4WyAM-0,15890,We see the lady set the timer. She,takes the pasta out of the pot.,fixes darts on bottle of her.,turns the saxophone and jumps in the water and continues talking.,\"do a rubik's cube, then the black mans hands for a spoon.\",the lady goes out.,gold0-orig,pos,unl,unl,unl,unl,We see the lady set the timer.,She\nanetv_ofrX4WyAM-0,15889,We see the pasta box up close. We,see the lady set the timer.,are in the street for the joke.,see the man driving the car in a chic green yard.,see another worker chopping wood and leads from people chopping wood.,see the shirtless man swinging and laughing two circles.,gold0-orig,pos,unl,unl,unl,unl,We see the pasta box up close.,We\nanetv_ofrX4WyAM-0,15886,The water is boiling in the bot. She,adds salt to the pot.,sets it down and spits out it.,fills up her glasses and spray them along the hole.,makes another drink and puts it in the glass.,picks up and pours it into a small bucket.,gold0-orig,pos,unl,unl,unl,pos,The water is boiling in the bot.,She\nlsmdc3080_THIS_MEANS_WAR-37137,17018,She heads off with another movie. Someone,watches her go then shakes his head and leaves as well.,peeks through files with a chopper.,leads her into a corn room full of orange soda.,does her ballet decor.,\"sets her aside then sits straight beside her, and she meets her gaze, scrutinizing the spot.\",gold0-orig,pos,unl,unl,unl,unl,She heads off with another movie.,Someone\nanetv_ER0UPx6-VcM,6074,\"They are using racquets, balls, special shoes and protective glasses. They\",show how to stand and hit the ball.,continue to use the ornaments and launch the fire.,get out of their car and look around.,are talking to the camera.,kick the ball back and forth.,gold0-orig,pos,unl,unl,unl,pos,\"They are using racquets, balls, special shoes and protective glasses.\",They\nanetv_ER0UPx6-VcM,6073,A man and woman are playing inside a racquetball court. They,\"are using racquets, balls, special shoes and protective glasses.\",\"are whipping to the referee on the court, trying to win.\",start playing a game of volleyball.,are engaged in a game of table tennis.,,gold0-orig,pos,unl,unl,unl,n/a,A man and woman are playing inside a racquetball court.,They\nanetv_N3UOyPU2t0E,7805,The glasses are laid out on a table and several shots are shown of people playing beer pong. More shots,are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another.,are shown of people playing hookah pong while a game leans around and players watching on the side.,are shown of the people holding hands with the children following his side and trying to play their conversation.,are shown of men walking around as well as others are interviewed.,,gold0-orig,pos,unl,unl,pos,n/a,The glasses are laid out on a table and several shots are shown of people playing beer pong.,More shots\nanetv_N3UOyPU2t0E,7806,More shots are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another. In the end medals are handed out and people,wear them while celebrating in different spots.,begin to play the game of beer pong.,are shown speaking to the camera and smiling to the camera while speaking and scoring.,are shown getting ready in and out of the ground.,are then walking a upcoming game in the end of the court while the camera captures the players playing.,gold0-orig,pos,unl,unl,unl,pos,More shots are shown of people speaking to one another as well as playing beer pong in several locations and partying with one another.,In the end medals are handed out and people\nanetv_N3UOyPU2t0E,7804,Several pairs of shoes are shown as well as a large group of people socializing and pouring alcohol into glasses. The glasses are laid out on a table and several shots,are shown of people playing beer pong.,are seen of people mixing the drinks onto the table.,of mixing are shown playing beer pong.,of the men play beer and drink.,are shown of the men looking to the camera.,gold0-orig,pos,unl,unl,pos,pos,Several pairs of shoes are shown as well as a large group of people socializing and pouring alcohol into glasses.,The glasses are laid out on a table and several shots\nanetv_YUFPWt0VQ1Y,2425,They are dressed in maroon and yellow colored uniforms and white hats. There,are some students playing the drums and some students playing the trumpet.,are several large set of costumes.,is photos for besides women who are mowing the grass.,the street where people run the marathon.,,gold0-orig,pos,unl,unl,unl,n/a,They are dressed in maroon and yellow colored uniforms and white hats.,There\nanetv_YUFPWt0VQ1Y,2426,There are some students playing the drums and some students playing the trumpet. They,continue playing the band as they march along the streets.,seem to have this conversation for a time.,get the hell out of the line.,continue playing and there s teams watching during the game.,,gold1-orig,pos,unl,unl,pos,n/a,There are some students playing the drums and some students playing the trumpet.,They\nanetv_YUFPWt0VQ1Y,2424,There is a group of marching band students playing the trumpets. They,are dressed in maroon and yellow colored uniforms and white hats.,are playing their flute.,are playing musical instruments using other instruments while playing.,are playing instruments together.,,gold0-orig,pos,unl,unl,pos,n/a,There is a group of marching band students playing the trumpets.,They\nanetv_Cm8hWFFA16I,8116,\"A man walks in the street and approaches a man that polish shoes. First, the person\",brushes the tennis shoe and cleans it with a cloth.,paints a wooden surface with a cloth.,focuses on the machine as she holds a pump in front of her.,hops and begins throwing a bowling ball at a third.,,gold0-orig,pos,unl,unl,unl,n/a,A man walks in the street and approaches a man that polish shoes.,\"First, the person\"\nanetv_Cm8hWFFA16I,4160,A man in a white shirt is getting his shoe cleaned. A person in a striped shirt,walks up next to them.,is standing next to a new boxing drill.,is on talking to the camera.,is standing watching the tv.,lays a shoe on the counter.,gold1-orig,pos,unl,pos,pos,pos,A man in a white shirt is getting his shoe cleaned.,A person in a striped shirt\nanetv_Cm8hWFFA16I,8118,\"Then, the person applies white polish and spray liquid. After, the person shows boxes to the man while talking, the man\",return the boxes to the person.,displays a pink razor to polish and scrub the washing red shoes.,puts hairs to the floor at the end.,is removing things from the mask.,wipes out a strip of wax and removes skin and paper.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the person applies white polish and spray liquid.\",\"After, the person shows boxes to the man while talking, the man\"\nanetv_Cm8hWFFA16I,4161,A person in a striped shirt walks up next to them. The man,stands up and gets handed two boxes.,wipes out lotions on a horse as he brushes his hair in a line.,is doing a high angle leading to the blindfold to his left.,is blocked by a ball of water.,is then set in karate shoes and laces.,gold1-reannot,pos,unl,unl,unl,unl,A person in a striped shirt walks up next to them.,The man\nanetv_Cm8hWFFA16I,8117,\"First, the person brushes the tennis shoe and cleans it with a cloth. Then, the person\",applies white polish and spray liquid.,\"put the paint, then wipe the brush with a towel and put it in the other drawers.\",block the shoe with pink paint and shows a shoe.,imitates the shoe with a cleaner.,adds colored texture and makeup.,gold0-reannot,pos,unl,unl,unl,unl,\"First, the person brushes the tennis shoe and cleans it with a cloth.\",\"Then, the person\"\nanetv_hRMSh7vUmGY,1458,\"He does this multiple time for repetition, this is a workout routine. He then\",walks away taking a break for a little bit and walks by people sitting and chatting.,begins to twist the guitar instead.,begins to begin exercising on the beam while on shadowfax in his arms as he does.,\"demonstrates about him, doing him every blowtorch.\",\"swiftly cuts the arc marathons, but does a web to fly.\",gold0-orig,pos,unl,unl,unl,unl,\"He does this multiple time for repetition, this is a workout routine.\",He then\nanetv_hRMSh7vUmGY,1459,He then walks away taking a break for a little bit and walks by people sitting and chatting. Once he is done with his break he,continues back to his routine.,rakes up the weights and covers them up.,lifts himself and goes to see what the priest is doing.,goes up a coffee flourish and takes it in the right stool.,'s bending his entire arm with his arm as he carries out of the jar of cups.,gold0-orig,pos,unl,unl,unl,unl,He then walks away taking a break for a little bit and walks by people sitting and chatting.,Once he is done with his break he\nanetv_hRMSh7vUmGY,1457,\"A man is lifting very heavy weight above his head and dropping it. He does this multiple time for repetition, this\",is a workout routine.,catches his facial performance again.,time hundreds of time.,happens by falling several times before passing it out.,time he is falling down on her.,gold0-reannot,pos,unl,unl,unl,unl,A man is lifting very heavy weight above his head and dropping it.,\"He does this multiple time for repetition, this\"\nanetv_jzBR9ihZBbI,4746,\"They hit the ball back and forth against the wall. When they are done, he\",walks out and discusses it some more.,\"takes the puck again, smiling pleased.\",puts the ball down in their basement pit and gets to the end.,takes turns running around and digging and bumps his legs.,gets up and walks out.,gold1-orig,pos,unl,unl,unl,pos,They hit the ball back and forth against the wall.,\"When they are done, he\"\nanetv_jzBR9ihZBbI,4745,\"He then goes into a room, and plays a game of racquetball with a man. They\",hit the ball back and forth against the wall.,see what she made and continues doing with him.,try again to pull different balls together.,laces their hands together and then to the other side.,,gold0-orig,pos,unl,unl,unl,n/a,\"He then goes into a room, and plays a game of racquetball with a man.\",They\nanetv_jzBR9ihZBbI,4744,She demonstrates the technique with his racquet. He then,\"goes into a room, and plays a game of racquetball with a man.\",proceeds all over the table.,begins ironing the lapels with a black tool.,brushes too heavy and sticks his head into the goal.,takes a disc and plays the end result in her bag.,gold0-reannot,pos,unl,unl,unl,unl,She demonstrates the technique with his racquet.,He then\nanetv_jzBR9ihZBbI,4743,A man is talking in front of a couple of graphs. She,demonstrates the technique with his racquet.,helps the child up on the rod.,is using boxing gloves.,is pulling down a rope attached to the dispenser.,are shown doing dance moves with a walking stick.,gold0-reannot,pos,unl,unl,unl,unl,A man is talking in front of a couple of graphs.,She\nlsmdc0009_Forrest_Gump-50920,9282,Someone runs along a highway. A lake,reflects the mountains and the sky.,looms out from cracks on the boards.,bounces out to the side of a cliff.,shows different access to the bank below.,sits in new york.,gold0-orig,pos,unl,unl,unl,unl,Someone runs along a highway.,A lake\nlsmdc0009_Forrest_Gump-50920,9287,Someone stands under the old oak tree where someone has been buried. Someone,tries to hold back his tears.,\", followed by someone, is on her grass at the serene sun.\",folds itself against the tree.,lies near a desk facing someone.,kisses someone by the head and gazes up the girl.,gold0-orig,pos,unl,unl,unl,unl,Someone stands under the old oak tree where someone has been buried.,Someone\nlsmdc0009_Forrest_Gump-50920,9288,\"Someone's grave marker reads: someone July 16, 1945 - - March 22, 1982 Beloved Mother, Wife and Friend. Someone\",reads a book to someone sitting next to him.,wears a sheet of scissors as someone matches the china plate.,wedges a white box of chocolate towards his portable medicine.,congregation terraces in a camp where the pummel field's beach lights are placed.,\"sits in the baby sitting on the edge of his bed, his eyes closed.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone's grave marker reads: someone July 16, 1945 - - March 22, 1982 Beloved Mother, Wife and Friend.\",Someone\nlsmdc0009_Forrest_Gump-50920,9291,Someone tries to teach someone how to play ping - pong. Someone,\"serves the ball, causing someone dive and miss it.\",sets a ball down in a closet and sinks to a table.,puts his hands in his mouth.,offers another finger and leads her over to the pool.,glances as someone blocks him and punches him in the face.,gold0-orig,pos,unl,unl,unl,unl,Someone tries to teach someone how to play ping - pong.,Someone\nlsmdc0009_Forrest_Gump-50920,9286,Someone reaches over and takes someone's hand. Someone,stands under the old oak tree where someone has been buried.,smiles boyishly around someone's eyes as he watches her dance.,\"'s eyes start shivering, then he turns to face some others.\",drops and soap on the open nightstand.,,gold0-orig,pos,unl,unl,unl,n/a,Someone reaches over and takes someone's hand.,Someone\nlsmdc0009_Forrest_Gump-50920,9284,Someone runs along a desert highway. The morning light,casts an orange glow over the desert.,\"disappears through the dense ash and someone takes out his aunt, wearing a flashback of a dress - rope skeleton.\",\"crosses the road and lights up, its lights reflected around their vehicle.\",lies on in the street as someone calmly climbs from the car seat in the passenger seat.,,gold0-orig,pos,unl,unl,unl,n/a,Someone runs along a desert highway.,The morning light\nlsmdc0009_Forrest_Gump-50920,9293,People sit on a log by the river and fish. Someone,looks down at the grave marker.,struggle to cut the back of each pregnant person.,\"watches stock motionless, struggling to push his hands at the life belt.\",stands with his arms tucked in his lap.,fires energy pages through the pages before packing a garment.,gold1-orig,pos,unl,unl,unl,unl,People sit on a log by the river and fish.,Someone\nlsmdc0009_Forrest_Gump-50920,9281,Someone stands on his boat and looks at a deep orange and red sunset. Someone,runs along a highway.,swims through the swirling waters of a square in the water.,walks near a tree on an overcast day.,sees the rearview mirror.,slows down and watches on a man.,gold1-orig,pos,unl,unl,unl,pos,Someone stands on his boat and looks at a deep orange and red sunset.,Someone\nlsmdc0009_Forrest_Gump-50920,9285,The morning light casts an orange glow over the desert. Someone,looks out the window.,switches on a light affirming a ski mountain.,gently carves a figurine.,frowns and steers his breath through the darkness air.,,gold0-orig,pos,unl,unl,pos,n/a,The morning light casts an orange glow over the desert.,Someone\nlsmdc0009_Forrest_Gump-50920,9280,The stars emerge from behind the clouds. Someone,stands on his boat and looks at a deep orange and red sunset.,\"shoots the man's shoulder sideways, but neither do anything for a few seconds.\",\"backs away from the windows of the clip, as lightning billows over the sky.\",walks back across the room with nothing of his own.,,gold0-reannot,pos,unl,unl,unl,n/a,The stars emerge from behind the clouds.,Someone\nlsmdc0009_Forrest_Gump-50920,9289,Someone reads a book to someone sitting next to him. Someone,looks down as he sobs.,is playing a violin in the mirror.,hands a self - approving shrug.,puts things in a printout.,leans out in shock.,gold1-reannot,unl,unl,unl,unl,unl,Someone reads a book to someone sitting next to him.,Someone\nlsmdc0009_Forrest_Gump-50920,9283,A lake reflects the mountains and the sky. Someone,runs along a desert highway.,\"sleeps on someone's high side, his head buried in water.\",looks in confusion at the crash site in the blue sky.,remains by the door.,sits on the port side of the cliff.,gold0-reannot,pos,unl,pos,pos,pos,A lake reflects the mountains and the sky.,Someone\nanetv_aSPPD0fDI3g,2391,She puts lipstick on her lips. She,puts a backpack on and walks out the door.,sips a final drink.,moves the lid a little.,locks them in her mouth then walks off.,\"stares through the window at the mime, then puts her arm around someone and kisses her passionately.\",gold0-orig,pos,unl,unl,unl,pos,She puts lipstick on her lips.,She\nanetv_aSPPD0fDI3g,2387,Make up is shown on a table. A woman,sits on her bed and applies makeup to her face.,comes down next to the table with other ingredients and razors them precisely.,demonstrates how to tie a piece of paper and put it on the top of a wooden box.,has a magazine attached to their hand which many objects is sitting on a dead body.,beings to eat chocolate after who is very cutting and eating.,gold0-orig,pos,unl,unl,unl,unl,Make up is shown on a table.,A woman\nanetv_aSPPD0fDI3g,2388,A woman sits on her bed and applies makeup to her face. She,uses a large brush to apply powder to her face.,\"grabs a razor, then brushes her face from her legs.\",\"lifts her mouth to his leg, then gazes to the bedroom doorway.\",man takes out paint to the woman's face as he proceeds to apply water onto her face.,,gold0-orig,pos,unl,unl,unl,n/a,A woman sits on her bed and applies makeup to her face.,She\nanetv_aSPPD0fDI3g,2389,She uses a large brush to apply powder to her face. She,puts mascara on her eyelashes.,finds the shirt and continues to wipe it with a rag in her hand.,looks over her shoulder and then shows her roller moving over her head.,uses a delicate razor to apply makeup to her lips.,,gold0-orig,pos,unl,unl,unl,n/a,She uses a large brush to apply powder to her face.,She\nanetv_aSPPD0fDI3g,2390,She puts mascara on her eyelashes. She,puts lipstick on her lips.,takes a ball and bends down to shine the makeup on her.,talks to the others to play with accordions.,tries to brush the teeth and brushes her teeth teeth.,tries to remove the hoop on her heel.,gold0-orig,pos,unl,unl,unl,unl,She puts mascara on her eyelashes.,She\nlsmdc0038_Psycho-67150,17671,\"Someone slams down on the brake, tries to pull herself together. The Patrolman\",\"raps again, less gently.\",does someone back punches run.,pump a plastic hose and points it at someone's head.,\"falls down, rain, and from.\",watches his body reach up and down.,gold0-orig,pos,unl,unl,unl,unl,\"Someone slams down on the brake, tries to pull herself together.\",The Patrolman\nlsmdc0038_Psycho-67150,17673,\"Reluctantly, someone rolls down the window. The Patrolman\",studies her for a moment.,puts away the shadow.,climbs up and joins her.,gets out of the tank and creeps into the gap.,\"trudges off with someone, who looks at her father.\",gold1-orig,pos,unl,unl,unl,unl,\"Reluctantly, someone rolls down the window.\",The Patrolman\nlsmdc0038_Psycho-67150,17672,\"The Patrolman raps again, less gently. Reluctantly, someone\",rolls down the window.,unrolls a drawing reads and glances at someone.,turns to follow him.,closes the door on him as the suv drives down the road.,puts on her coat and gets in the car.,gold0-reannot,pos,unl,pos,pos,pos,\"The Patrolman raps again, less gently.\",\"Reluctantly, someone\"\nlsmdc0019_Pulp_Fiction-57012,17307,We see a crap game being played on a fancy crap table by gamblers in tuxedos and lucky ladies in fancy evening gowns. We also,see someone has a small notepad that he jots details in.,come up and twirl a moon with the light as the sun shines behind the camera.,see the people with camels with people on several camels.,\"hold the mustached headlock, then one of the dragged lifeboats seemed the ass and won.\",discuss the correct mahal sequence.,gold0-orig,pos,unl,unl,unl,unl,We see a crap game being played on a fancy crap table by gamblers in tuxedos and lucky ladies in fancy evening gowns.,We also\nlsmdc0019_Pulp_Fiction-57012,17308,\"We see, standing in the doorway, the tuxedo - clad man. He\",\"looks down to his notebook, then up at someone.\",\"stops the usher, walks to the driver's door and looks in.\",\"embraces him, covering his mouth with one hand, caress his palms.\",becomes aware of someone's throw and looks at him.,sits on the couch.,gold0-orig,pos,unl,unl,unl,pos,\"We see, standing in the doorway, the tuxedo - clad man.\",He\nlsmdc3024_EASY_A-11566,14271,Someone's large green eyes glisten. Light from the confessional's grated screen,cast an ornate shadow pattern against her cheek.,slides over the back page.,illuminates the remnants of an electric design.,opens at a clipped bruises while short.,shines upward into the den.,gold0-orig,pos,unl,unl,unl,unl,Someone's large green eyes glisten.,Light from the confessional's grated screen\nlsmdc3024_EASY_A-11566,14273,\"Looking in, she finds the priest's booth empty. She\",\"leaves the confessional and rushes past a pew, knocking a bible from the seat.\",points at a shoe figurine draped underneath a pillow.,\"pauses, shifting his uneasy gaze.\",accidentally pats her mother's hand and leaves the table.,\"walks past the closed gate, and pauses as he sees the two guard in the reception hand.\",gold0-orig,pos,unl,unl,unl,unl,\"Looking in, she finds the priest's booth empty.\",She\nlsmdc3024_EASY_A-11566,14274,\"She leaves the confessional and rushes past a pew, knocking a Bible from the seat. She\",puts it back and hurries out.,takes a puff with smoke.,comes to from the garage where teddy is packing.,takes notes as she shows her paperwork.,,gold0-orig,pos,unl,unl,unl,n/a,\"She leaves the confessional and rushes past a pew, knocking a Bible from the seat.\",She\nlsmdc3024_EASY_A-11566,14272,\"Light from the confessional's grated screen cast an ornate shadow pattern against her cheek. Looking in, she\",finds the priest's booth empty.,sees a mustached man in a wide - brimmed hat and stands behind a large door in the corner.,dips her fingertips together.,returns to her seat facing someone.,,gold0-orig,pos,unl,unl,pos,n/a,Light from the confessional's grated screen cast an ornate shadow pattern against her cheek.,\"Looking in, she\"\nlsmdc3004_500_DAYS_OF_SUMMER-1408,13000,Someone turns and walks back to her copying. She,picks up her file.,hits the backboard along the deck.,leans on florence's chair.,looks behind her boyfriend who sits in his office.,,gold0-orig,pos,unl,unl,unl,n/a,Someone turns and walks back to her copying.,She\nlsmdc3004_500_DAYS_OF_SUMMER-1408,12996,\"He remains, staring after her. Someone\",turns slowly and walks away.,stands groggily and sits opposite a cheerful shaken baby.,asks her the name for him at the visit.,picks up a chair to face his older friend.,stops beginning to speak as someone leaves.,gold0-orig,pos,unl,unl,pos,pos,\"He remains, staring after her.\",Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1408,13001,She picks up her file. She briefly,looks someone in the eye.,seizes a medicine bag of the safe from her cup and pops it into her mouth.,\"looks at him over his shoulder, picks her up and crosses him.\",hands it to someone.,wipes her face with her brow.,gold0-orig,pos,unl,unl,pos,pos,She picks up her file.,She briefly\nlsmdc3004_500_DAYS_OF_SUMMER-1408,12998,She gets on with some copying of her own. They,work side by side.,step back from his date.,someone notices the stuffed bear and sighs.,car drives up on a dark street where one lounges atop a row of emergency riders.,,gold0-orig,pos,unl,unl,unl,n/a,She gets on with some copying of her own.,They\nlsmdc3004_500_DAYS_OF_SUMMER-1408,12995,She gives a casual salute and heads off. He,\"remains, staring after her.\",dashes into the hall at a display of gleaming conductor skills.,leaves someone glancing around the room.,enters a training court wearing a tuxedo.,\"clenches her jaw instead, reaches on to her knees, and collapses.\",gold0-reannot,pos,unl,unl,unl,unl,She gives a casual salute and heads off.,He\nanetv_3sAcnQxBchE,9247,A camera pans around a woman sitting in a chair smoking a cigarette. She,speaks to the camera while continuing to smoke and ends by spreading her legs.,continues playing the instrument with her hands and walking away.,begin running around as well as smoking a cigarette.,trots down two steps of the floor and continues smoking.,puffs onto a cigarette and blows smoke out of a funnel.,gold1-orig,pos,unl,unl,unl,pos,A camera pans around a woman sitting in a chair smoking a cigarette.,She\nanetv_NyL7m4JV8vQ,15190,It is done over and over in slow motion. He then,does it again for one last time.,uses tools to cut the carpet down while he talks to the camera.,starts playing shuffleboard while juggling and smiling.,clears his saving and arm in a womans motion.,started jumping from the correct moved as he positions himself and throws the carpet several times.,gold0-orig,pos,unl,unl,unl,unl,It is done over and over in slow motion.,He then\nanetv_NyL7m4JV8vQ,15189,A man in red runs jumps and flips over an obstacle. It,is done over and over in slow motion.,'s teen turns to the rider and comes to a stop outside a board.,is beginning to attack the camera.,does a flip and falls on the ground.,,gold0-orig,pos,unl,unl,pos,n/a,A man in red runs jumps and flips over an obstacle.,It\nanetv_NyL7m4JV8vQ,15191,\"He then does it again for one last time. Then finally, they\",begin a race on a field a man wearing black crosses the finish line first.,prod the mixture and spits in the air.,shake their hands and hold up.,run back and forth ahead of himself.,turn over to wave and spins two times.,gold1-orig,pos,unl,pos,pos,pos,He then does it again for one last time.,\"Then finally, they\"\nlsmdc1062_Day_the_Earth_stood_still-100572,16166,The tutor drives a small silver hatchback. A computer game character,has a sword across his back.,\"is cia for graphics that reads, your day name.\",screws up the cam of a bike race.,is on two men enter to talk about it.,now sits on the manhattan roof.,gold0-orig,pos,unl,unl,unl,unl,The tutor drives a small silver hatchback.,A computer game character\nlsmdc1062_Day_the_Earth_stood_still-100572,16167,A computer game character has a sword across his back. Someone,has got long dark curly hair.,notes resentful bearing the display of a fish expand.,holds it down conducted pushing a patient over the head of a fire pit and its elevated edge.,\"sits versus the pilot, then straight into his rival.\",shoves a nickel into someone's chest and chest.,gold1-orig,pos,unl,unl,unl,unl,A computer game character has a sword across his back.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100572,16165,Cars stream across an arched iron bridge over a river. The tutor,drives a small silver hatchback.,\"lose, over a long grappling wire.\",travel to the canyon further down a trail.,drive across the small casino floor.,mows along the curving path.,gold0-orig,pos,unl,unl,unl,unl,Cars stream across an arched iron bridge over a river.,The tutor\nlsmdc1062_Day_the_Earth_stood_still-100572,16169,She spots a razor and a shaving brush. He,looks at her defiantly.,applies her pink to her hair.,measures his face face in widened with a rag.,applies makeup to her forehead.,moves face to face as he prepares to shave.,gold0-orig,pos,unl,unl,unl,pos,She spots a razor and a shaving brush.,He\nlsmdc1062_Day_the_Earth_stood_still-100572,16170,He looks at her defiantly. She,\"sighs and, carrying a washing basket, runs downstairs.\",gives a faint smile and reveals its original features.,\"looks at him, scared so they'll kill her.\",gives him a kiss.,smiles and turns to face him.,gold0-reannot,pos,unl,unl,unl,pos,He looks at her defiantly.,She\nanetv_3gpgeAMy6a8,108,Man wearing white shirt is flying the kite in a lage field. litle kid wearing an orange shirt,is watching the man.,gives a high throw training start.,is skateboarding in the street.,is standing in front of the audience.,,gold0-orig,pos,unl,unl,pos,n/a,Man wearing white shirt is flying the kite in a lage field.,litle kid wearing an orange shirt\nanetv_pHq6Eb280uM,14470,A close up of a fooseball table is seen followed by people holding onto the sides. The people,play the game back and fourth while the camera captures their movements.,continue going back and fourth around the table and shows a dealer bowing to the hat.,then begin playing a game of badminton while people watch on the sides.,move up and down the room while spinning around and leads into them holding up a dog.,continue to play with one another and end up walking around.,gold0-reannot,pos,unl,unl,unl,pos,A close up of a fooseball table is seen followed by people holding onto the sides.,The people\nanetv_jN-FG9yxNvE,18567,He then goes back and forth to continue his workout. The video then,fades to a black screen and asks you to subscribe to their youtube channel.,takes more clips of the seam.,shows the man again adjusting the cheers as he stretches.,builds up several beats on uneven bars.,,gold0-orig,pos,unl,unl,unl,n/a,He then goes back and forth to continue his workout.,The video then\nanetv_jN-FG9yxNvE,18566,A panning up of the inside of a gym is shown as there is a man climbing monkey bars going backwards. He then,goes back and forth to continue his workout.,swings on the monkey bars on the playground bars.,tries and takes off the left shirt and is able to grab the bars before trying to stuff his skateboard.,continues to perform tricks using elongated hands to slip off the bars.,does turns and back flips through the bars quickly followed by climbing up scooter.,gold1-reannot,pos,unl,unl,unl,unl,A panning up of the inside of a gym is shown as there is a man climbing monkey bars going backwards.,He then\nanetv_6gzU9P-5tqE,844,A man throws a bowling ball and it hits the ceiling. A man,slips and falls as he's trying to bowl.,dances on a bowling ball in front of her.,falls off the ball.,walks over a long wall holding the ball.,hits a ball in the room.,gold0-orig,pos,unl,unl,unl,unl,A man throws a bowling ball and it hits the ceiling.,A man\nanetv_6gzU9P-5tqE,843,A man falls down while trying bowl down a lane. A woman,falls down trying to bowl.,observes her full - length distance.,covers her head with food while doing so.,makes a stick with a glues plaster.,throws a large bag on of a car.,gold0-orig,pos,unl,unl,unl,unl,A man falls down while trying bowl down a lane.,A woman\nlsmdc1031_Quantum_of_Solace-84464,15856,Someone observes the chaos dispassionately and sips his beer. Beam,looks concerned as someone gets in the car.,\"of water, someone approaches him.\",is a wide arc around his eye.,brings someone to his feet.,relaxes into his fist.,gold1-orig,pos,unl,unl,unl,unl,Someone observes the chaos dispassionately and sips his beer.,Beam\nlsmdc1031_Quantum_of_Solace-84464,15855,\"Another opens up, sprints off and jumps from one building to another. Someone\",observes the chaos dispassionately and sips his beer.,exits the pile and mini smoke as the explosion blocks the ground.,dashes over one of someone's back to watch the approaching men hide behind a crystal tree.,quickens his pace and closes his eyes as they walk into the sunken living room.,flips a tire on a tripod and does a final rise.,gold0-orig,pos,unl,unl,unl,unl,\"Another opens up, sprints off and jumps from one building to another.\",Someone\nlsmdc1031_Quantum_of_Solace-84464,15857,Beam looks concerned as someone gets in the car. Someone,emerges from the shadows of a balcony onto the rundown street.,presents him with his body.,hefts the boat behind it.,is a middle - aged man.,,gold0-orig,pos,unl,unl,pos,n/a,Beam looks concerned as someone gets in the car.,Someone\nlsmdc1031_Quantum_of_Solace-84464,15854,He sprints upstairs and takes out a waiting soldier with an elbow to the face. Another,\"opens up, sprints off and jumps from one building to another.\",aging man washes his hands as she catches him up.,\"leads the way to the end jumps from the train, scrambling up a cliff.\",uses a knife to strike a metal.,changes to a glass ball.,gold1-reannot,pos,unl,unl,unl,unl,He sprints upstairs and takes out a waiting soldier with an elbow to the face.,Another\nanetv_GqWH2IYPw6U,18729,Various shots of a city are shown followed by a girl playing violin and many other watching. Another girl steps in and joins her by singing and several others,join in to sing as well.,wake up her in the end.,have her back and watch impassively.,are also walking behind.,celebrate on the side.,gold0-orig,pos,unl,unl,unl,pos,Various shots of a city are shown followed by a girl playing violin and many other watching.,Another girl steps in and joins her by singing and several others\nanetv_GqWH2IYPw6U,18730,Another girl steps in and joins her by singing and several others join in to sing as well. A mime,walks in with fireworks while the group still sings and many around are seen laughing and smiling.,\"appears on the side belly at the bar playing the flute, watching the performers continue to play.\",smiles at each other while a camera text is shown as well as more people sing outside and finally back to the camera.,\"appears on the other end of the counter, licking their hands and makes their way over to the stage.\",,gold0-orig,pos,unl,unl,unl,n/a,Another girl steps in and joins her by singing and several others join in to sing as well.,A mime\nlsmdc3016_CHASING_MAVERICKS-6348,559,She emerges right in front of him. His mom,enters the living room.,slides out into the dirt.,folds up his uneasy leg.,lifts a kettle bell.,,gold0-orig,pos,unl,unl,unl,n/a,She emerges right in front of him.,His mom\nlsmdc3016_CHASING_MAVERICKS-6348,561,\"Now, someone treads water in a pool, holding a chair above his head. Someone\",casually bites an apple and reads the paper as someone struggles in the pool.,leaves the uncovers someone and dabs his cupped head with his hands.,unties the collar of someone's hair and starts to eat.,dances to the side and shows the debris falling off the floor.,walks his daughter to his bed and grabs a photo album.,gold0-orig,pos,unl,unl,unl,unl,\"Now, someone treads water in a pool, holding a chair above his head.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6348,553,Blond drops his pants and front flips off the roof. He,looks up at them with extended arms.,remembers his dart as he hits with the stick.,falls up as he repeats the jump into the board.,puts one arm around her shoulders and holds her on his shoulders.,\"takes the briefcase, revealing the cell thinking - - someone kid, someone.\",gold1-orig,pos,unl,unl,unl,unl,Blond drops his pants and front flips off the roof.,He\nlsmdc3016_CHASING_MAVERICKS-6348,549,He notices someone walking nearby. The bike,slides out from under him.,\"stops, checks on again.\",climbs off the porch and someone smiles.,passes up and comes up the stairs to outside her.,wearily folds into another metal pouch.,gold0-orig,pos,unl,unl,unl,unl,He notices someone walking nearby.,The bike\nlsmdc3016_CHASING_MAVERICKS-6348,554,She quickly removes her top. Someone,leaps feet first into the pool.,fastens a black belt beneath her and ties her casual tie.,\"watches someone leave, but has not moved.\",sets the phone to the end of her bed and heads out in the hall.,,gold0-orig,pos,unl,unl,unl,n/a,She quickly removes her top.,Someone\nlsmdc3016_CHASING_MAVERICKS-6348,551,\"Now, someone climbs onto a roof. She hops onto a flat section next to someone and they\",walk to the edge overlooking a pool.,hold the passenger handle.,rush her to a red jeep.,lean down to their seats with booty.,slide through the lanes digging beneath.,gold1-orig,pos,unl,unl,unl,unl,\"Now, someone climbs onto a roof.\",She hops onto a flat section next to someone and they\nlsmdc3016_CHASING_MAVERICKS-6348,552,She hops onto a flat section next to someone and they walk to the edge overlooking a pool. He,takes off a shoe.,ripple as each students gaze accusingly.,\"glances at someone, then sits on the table.\",looks up at the rippling waves of the ocean as long as surfers pass them on.,,gold0-orig,pos,unl,unl,pos,n/a,She hops onto a flat section next to someone and they walk to the edge overlooking a pool.,He\nlsmdc3016_CHASING_MAVERICKS-6348,563,\"Later, someone starts a timer on his watch and skateboards beside a bus. Stopping, someone\",exhales and checks his watch.,looks across at the beach as someone enters the seat.,puts his jacket around his shoulders as she reads the book.,finds someone's van in.,passes it on the other way.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone starts a timer on his watch and skateboards beside a bus.\",\"Stopping, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,569,\"The eight - year - old someone watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down. Holding a half - eaten chicken leg, someone\",faces her and smiles.,lifts his arm to watch the prisoner with maximilian.,drops his guy carefully and stands.,holds up his hands to squeeze her bloody teeth.,\"shuffles along another corridor, as someone serves the ball in the coffee table and flings it around a table.\",gold0-orig,pos,unl,unl,unl,unl,The eight - year - old someone watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down.,\"Holding a half - eaten chicken leg, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,557,\"Swimming underwater, he grabs her ankle and pulls her back. Someone\",passes the lively blonde and beats her to the edge.,watches her reflection in his mirror.,turns her back as someone pitches away from the string.,grabs someone and runs for the station.,spins awkwardly and gazes at the stream through her abdomen.,gold0-orig,pos,unl,unl,unl,pos,\"Swimming underwater, he grabs her ankle and pulls her back.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6348,558,Someone passes the lively blonde and beats her to the edge. She,emerges right in front of him.,lies on the floor.,crosses to an audience.,\"becomes someone who wears a bouncy dress, and runs onstage.\",runs a hand down his abdomen.,gold1-orig,pos,unl,unl,unl,unl,Someone passes the lively blonde and beats her to the edge.,She\nlsmdc3016_CHASING_MAVERICKS-6348,547,\"He stops and admires his mentor. Later, someone\",\"rides his bike through an alley, popping a wheelie on the way.\",\"sits in the dusty chair, brushing his teeth as someone approaches him and rubs his skin.\",passes a platoon of multi - hued hills on business vehicles.,arrives at her desk in the hotel corridors.,,gold0-orig,pos,unl,unl,unl,n/a,He stops and admires his mentor.,\"Later, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,556,\"As someone takes off across the pool, someone rips off his wet shirt and tosses it aside. Swimming underwater, he\",grabs her ankle and pulls her back.,sprays the young man in the eye as a shark comes toward him.,faces his reflection in a mirror.,knocks on the door frame.,ducks as he watches.,gold0-orig,pos,unl,unl,unl,unl,\"As someone takes off across the pool, someone rips off his wet shirt and tosses it aside.\",\"Swimming underwater, he\"\nlsmdc3016_CHASING_MAVERICKS-6348,574,She hugs someone and leaves the kitchen. Someone,gazes nervously at someone's glare and swallows hard.,frowns at someone with a large smile on her eyes.,reached for the kitchen.,shows a plastic fridge.,\"stares apprehensively down the dark space at a slight section of outer wall, then hunches her head before backing away.\",gold0-orig,pos,unl,unl,unl,pos,She hugs someone and leaves the kitchen.,Someone\nlsmdc3016_CHASING_MAVERICKS-6348,565,\"Looking up from the essay, someone watches her closely. A sweet smile\",spreads his boyish face as she giggles with her friends.,is indistinctly inside his mouth.,accompanies wink through her styled hair.,fills his younger brother's eyes.,rolls across her face.,gold1-orig,pos,unl,unl,pos,pos,\"Looking up from the essay, someone watches her closely.\",A sweet smile\nlsmdc3016_CHASING_MAVERICKS-6348,564,\"Outside the school, the young surfer handwrites an essay titled, The Power of Observation. Someone\",sits nearby with a group of students.,peeks in the crate and looks into the branches.,pushes himself away from the window and jumps through the water's windows.,\"sits it down at a table, next to him.\",flies up and hangs from the railing.,gold0-orig,pos,unl,unl,unl,pos,\"Outside the school, the young surfer handwrites an essay titled, The Power of Observation.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6348,560,\"At home, he crosses week two off his Maverick's chart. Now, someone\",\"treads water in a pool, holding a chair above his head.\",gives the boy a sweatshirt as they float from their ice apartment.,emerges from sad cabin and peers through blinds.,stares at the rugged body behind a green car.,walks through a corridor dialing the racecar leather piano.,gold1-orig,unl,unl,unl,unl,unl,\"At home, he crosses week two off his Maverick's chart.\",\"Now, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,555,\"Someone leaps feet first into the pool. As someone takes off across the pool, someone\",rips off his wet shirt and tosses it aside.,crashes to the floor and dives back against another wall.,peers through a ceiling vent.,\"flips back and shatters, resting her face just against the edge of her benches.\",\"spots a ghostly black bird, looking down both skyward and about to cut in to someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone leaps feet first into the pool.,\"As someone takes off across the pool, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,548,\"Later, someone rides his bike through an alley, popping a wheelie on the way. He\",notices someone walking nearby.,flings a disk from a base rail and slips in.,shuts it and leans back against the wall.,\"raises her visor, contemplates the turning ball and accelerates.\",hikes along a hilly desert with both bags full of silver confetti.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone rides his bike through an alley, popping a wheelie on the way.\",He\nlsmdc3016_CHASING_MAVERICKS-6348,562,\"Someone casually bites an apple and reads the paper as someone struggles in the pool. Later, someone\",starts a timer on his watch and skateboards beside a bus.,speeds off inside a lapping.,digs through two empty wine glasses.,\"unwraps a plate of pastries up to april, who faces his children who's sitting too.\",accepts an album then feeds photos to the camera.,gold0-orig,pos,unl,unl,unl,unl,Someone casually bites an apple and reads the paper as someone struggles in the pool.,\"Later, someone\"\nlsmdc3016_CHASING_MAVERICKS-6348,568,\"Now, the teen shovels food into his mouth. The eight - year - old someone\",watches as he piles mashed potatoes onto a roll and stuffs the oversized bite down.,joins someone outside the hotel.,sips his wine and places his hands on the table before her.,\"sits at the next row of headphones, occasionally drinking.\",comes near roughly a few leaves.,gold0-orig,pos,unl,unl,unl,unl,\"Now, the teen shovels food into his mouth.\",The eight - year - old someone\nlsmdc3016_CHASING_MAVERICKS-6348,571,Someone notices him reading and focuses on the food as someone's wife returns with another scoop of potatoes. Someone,turns the page and looks up.,\"takes out a knife, open it, puts down the piece of appliance, turns her back to him.\",sets down a shower.,\"swigs the sauce, puts a straw in the cup, then walks over to the sink.\",,gold0-reannot,pos,unl,unl,unl,n/a,Someone notices him reading and focuses on the food as someone's wife returns with another scoop of potatoes.,Someone\nlsmdc3016_CHASING_MAVERICKS-6348,573,Someone nods and swiftly stands. She,hugs someone and leaves the kitchen.,\"removes a coat, then spits out another.\",puts on a forlorn expression and rests one arm across her shoulder.,reads a text outside the school.,holds up her gun.,gold0-reannot,pos,unl,pos,pos,pos,Someone nods and swiftly stands.,She\nlsmdc3016_CHASING_MAVERICKS-6348,567,Now he approaches someone's house. Someone,pulls the essay from his sweatshirt and hands it to someone.,\"stares straight ahead with his eyes cast downward, then goes out.\",nods to a soldier.,makes his way across the pub.,lags back from his childhood cottage.,gold1-reannot,unl,unl,unl,unl,unl,Now he approaches someone's house.,Someone\nlsmdc3016_CHASING_MAVERICKS-6348,550,\"The bike slides out from under him. Now, someone\",climbs onto a roof.,is pushed to the wheel.,snatches a book from the model fighter.,emerges at the sliding hands.,faces the medicine.,gold0-reannot,pos,unl,unl,unl,unl,The bike slides out from under him.,\"Now, someone\"\nlsmdc3059_SALT-28908,2258,\"In the crypt, someone shines his flashlight at a dead guard. A cloud of dust\",fills the hallway ahead.,dangles from the parchment.,rises off the roof.,hangs on the trees.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the crypt, someone shines his flashlight at a dead guard.\",A cloud of dust\nlsmdc3059_SALT-28908,2259,A cloud of dust fills the hallway ahead. Someone,aims her gun through the cloud of dust and faintly glimpses matveyev's form.,lets the rest of the street go.,\"skips over, turning and leaping onto the doors, opening it.\",drags someone away and moves her face against the back of the chair.,heads down a road track into someone's german cab.,gold0-orig,pos,unl,unl,unl,unl,A cloud of dust fills the hallway ahead.,Someone\nlsmdc3059_SALT-28908,2260,\"Someone reacts to the sound and moves toward it. In the organ chamber, his flashlight\",glows through the dust.,readies the portable chamber.,rises over between the stone steps.,sweeps him beautifully completed.,appears in a space.,gold0-orig,pos,unl,unl,unl,pos,Someone reacts to the sound and moves toward it.,\"In the organ chamber, his flashlight\"\nlsmdc3059_SALT-28908,2261,\"In the organ chamber, his flashlight glows through the dust. She\",\"raises her hands, aiming the gun harmlessly at the ceiling then lets it drop.\",\"goes to it, then turns the channel towards the camera that lies nearby.\",goes to find someone alone at the foot of a dune.,looks at him as he flies in the creature.,\"looks, does a slow - twirl, flooding the room, into the air.\",gold1-orig,pos,unl,unl,unl,unl,\"In the organ chamber, his flashlight glows through the dust.\",She\nanetv_ul9kg5QdvJo,18491,A group of people are shown at a festival serving food and interacting with their crowd. The male,\"continues, to play with the crowd and makes them work for their ice cream cone.\",poured several more ingredients can to do the swishes while failing roads.,\"takes the platter of food, putting it on.\",touches the white pole with his stick.,looks at the crowd as people come in.,gold1-orig,pos,unl,unl,pos,pos,A group of people are shown at a festival serving food and interacting with their crowd.,The male\nlsmdc3023_DISTRICT_9-10863,2694,\"In the exam area, they seize a struggling someone. The guards\",zip someone into a body bag.,shoot out from objects.,fall out of sight.,pause before the fire moving their body.,hold the pensieve on one another.,gold1-reannot,unl,unl,unl,unl,unl,\"In the exam area, they seize a struggling someone.\",The guards\nanetv_0fNBm46reNg,4184,A small group of people are seen pulling mulch into a bin when another is seen raking around the tree. They,continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree.,continue wrapping around the tree using various instruments in the end.,kneel all on the grave and pretend to hide from.,show a pile of surrounding people outside.,go down while the camera pans around several people riding around the yard with the clips following around afterwards.,gold0-orig,pos,unl,unl,unl,unl,A small group of people are seen pulling mulch into a bin when another is seen raking around the tree.,They\nanetv_0fNBm46reNg,4185,They continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree. They,lay out more dirt evenly while some are grabbing bags behind them.,put the city on the shoes with their hands and show them a strips of keep them in place.,continues combing and blowing all around the bushes while the group continue to walk away.,keep riding on the mower in different locations.,,gold0-orig,pos,unl,unl,pos,n/a,They continue to scrape out of the mulch while measuring out the area and leads into one cutting the grass around the tree.,They\nanetv_Jt-DIHv8YK8,2782,He falls off and onto the street. He,keeps going down the street on his long board.,looks up at someone from the edge of the cover.,lowers his squat and gazes up.,grabs the curlers and walks across the floor flanked by a girl and wrestlers.,smiles as he fires a bullet.,gold1-orig,pos,unl,unl,unl,unl,He falls off and onto the street.,He\nanetv_Jt-DIHv8YK8,2781,A kid in a blue shirt is long boarding. He,falls off and onto the street.,finds a ground cross in a desert.,is shot giving chase.,hands the child over.,is then pulled through an open air.,gold1-orig,pos,unl,unl,unl,pos,A kid in a blue shirt is long boarding.,He\nanetv_UrPn5-8yNgA,10458,A person is shaving their legs. A polished hand,gestures at the person shaving.,is shown behind her wake.,drops the boxer between the two.,sits down on the floor while others watch the game.,is brushing their teeth.,gold0-orig,pos,unl,unl,unl,pos,A person is shaving their legs.,A polished hand\nanetv_xYt__nSK8NA,14572,A young woman is seen looking to the camera smoking a cigarette and laughing to the camera. She,continues taking puffs off the cigarette while looking into the camera and blowing smoke.,begins blowing her tongue out and showing viewers more to the camera.,continues riding on the lawn and blowing down the cigarette.,woman continues speaking to the camera and raises her hand up at them by pouring the potatoes together in a bowl.,girl performs several strands of the same dance and begins talking around her while she continues speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A young woman is seen looking to the camera smoking a cigarette and laughing to the camera.,She\nanetv_WGHXYbCWvyU,6960,The man then begins moving his arms and legs around his body. He,continues moving his body around with his eyes closed.,continues peddling onto the legs and ends with the woman sitting in a circle.,continues to spin around and ends by jumping into a pit and walks into a shower.,flips back down by his legs and continues performing tricks.,continues to spin himself around on the side while moving his hands as he moves.,gold0-orig,pos,unl,pos,pos,pos,The man then begins moving his arms and legs around his body.,He\nlsmdc3039_JACK_AND_JILL-2666,4419,\"Someone addresses a mustached servant, who struggles to understand him. The servant\",presents a liquor bottle.,glances over her shoulder.,runs after the building.,musters a delighted smile as the dragon slithers toward them.,smiles and holds her face by her hands.,gold0-orig,pos,unl,unl,unl,unl,\"Someone addresses a mustached servant, who struggles to understand him.\",The servant\nanetv_qyssgQ2xq2M,10222,\"The man is painting his friends finger nails, he seems to have done someone else's nails also and made little red heart. The man is talking and pretty excited her able to do this, he\",keeps putting the top of the polish back to get more paint on it.,is more perfect while doing his beat to the other.,is surprised by howcast.,does a final flip.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man is painting his friends finger nails, he seems to have done someone else's nails also and made little red heart.\",\"The man is talking and pretty excited her able to do this, he\"\nanetv_qyssgQ2xq2M,10221,\"Inside of the house on the couch two men are sitting, one of them is talking casually awhile the other is holding his arm out on a pillow. The man is painting his friends finger nails, he\",seems to have done someone else's nails also and made little red heart.,rubs and on his right beard and starts again.,puts his phone back to his ear and kisses a hair soap on the table.,is then adds shirt o a tray and starts painting the other furniture.,is running to get the end pan.,gold0-orig,pos,unl,unl,unl,unl,\"Inside of the house on the couch two men are sitting, one of them is talking casually awhile the other is holding his arm out on a pillow.\",\"The man is painting his friends finger nails, he\"\nanetv_qyssgQ2xq2M,10223,\"The man is talking and pretty excited her able to do this, he keeps putting the top of the polish back to get more paint on it. He\",\"jokingly rubs the other mans face, and continues to take his time painting his nails.\",gets on the side and he grabs and starts to put the glitter again.,has to talk about the.,enters the house and finishes karate with an ever motion drawing.,continues to snowboard down a road of color.,gold0-reannot,pos,unl,unl,unl,unl,\"The man is talking and pretty excited her able to do this, he keeps putting the top of the polish back to get more paint on it.\",He\nanetv_y2jDV7tFUXg,8156,Some people are gathered at tables by a pier. They,are watching boaters pulling people on water skis.,are staring at shelves off the bank.,are walking down the river cafe from a park.,\"are talking together, approach a gate.\",are walking their horse.,gold0-orig,pos,unl,unl,unl,unl,Some people are gathered at tables by a pier.,They\nanetv_y2jDV7tFUXg,12448,A boat is in the water. They,are pulling two water skiers behind them.,see a man riding a raft through a yard.,are in the boat going fast downhill.,is in a yellow vest standing on a kayak.,show no more water skiing.,gold0-orig,pos,unl,unl,unl,unl,A boat is in the water.,They\nanetv_y2jDV7tFUXg,8157,They are watching boaters pulling people on water skis. The skiers,\"are staying upright, going around in circles until they jump off and run to shore.\",continue wake boarding and snowboarding during last time.,go down and their same dip is measured.,\"hold the woman again, and climb as fast as he can.\",ski over a river and goes to the other side.,gold0-orig,pos,unl,unl,unl,pos,They are watching boaters pulling people on water skis.,The skiers\nanetv_y2jDV7tFUXg,12449,They are pulling two water skiers behind them. People,are sitting in the stands watching them.,get into paddling and pull themselves out of the tube.,are wearing the boat down.,reach the bridge and fall over.,,gold0-reannot,pos,unl,unl,pos,n/a,They are pulling two water skiers behind them.,People\nanetv_6iSqTbL5WXY,18335,We see a white opening screen. We,see a man dunk a basketball wearing jump stilts.,see a man playing from a wood court.,man is playing a saxophone.,see the man stage.,ladies ski to a dawn marker.,gold1-orig,pos,unl,unl,unl,unl,We see a white opening screen.,We\nanetv_6iSqTbL5WXY,18336,We see another man bounce the ball and the jump stilt man dunks again. We then,see the opening screen for the closing.,see the scoreboard and misses his ball.,see people fighting men and children.,see someone in the underwear and take the ball.,see the boy performing the game.,gold1-reannot,pos,unl,unl,unl,pos,We see another man bounce the ball and the jump stilt man dunks again.,We then\nanetv_TqO5Ddh5Lp4,17383,He uses his paddle to guide him as he shifts and turns. He,\"keeps going, entering faster rapids.\",moves himself once again and squats.,\"gets back to his new position, and pulls back the resistance.\",reaches the top of the somersault.,tries to squeeze the rope before tugging off.,gold0-orig,pos,unl,unl,unl,unl,He uses his paddle to guide him as he shifts and turns.,He\nanetv_TqO5Ddh5Lp4,14476,A man paddles a canoe with the camera in first person view. A wave,crashes into the canoe.,brings out its attention and he walks.,falls across the board.,shows the water below the boat.,zooms in onto a shore.,gold0-orig,pos,unl,unl,pos,pos,A man paddles a canoe with the camera in first person view.,A wave\nanetv_TqO5Ddh5Lp4,14477,A wave crashes into the canoe. The man,recovers from the wave.,grabs the remover cutter and waxes it with a sliding window tip.,returns to the water.,swims through another small waterfall.,is paddling in and grasps after the skier.,gold0-orig,pos,unl,pos,pos,pos,A wave crashes into the canoe.,The man\nanetv_TqO5Ddh5Lp4,17382,A man is kayaking on a muddy river. He,uses his paddle to guide him as he shifts and turns.,continues to ride around on a raft with other people rowing to watch.,does the instructed flip in the air.,drives a man into the water of the river.,,gold0-orig,pos,unl,unl,unl,n/a,A man is kayaking on a muddy river.,He\nanetv_UeMcMSTO-Yg,10169,A woman is seen speaking to the camera and showing off various tools to the camera. She,explains how each tool works for cleaning a horse and ends by smiling to the camera.,begins showing clips of decorations around her hair and putting it on her hair.,continues speaking in the end and ends with her putting a different clothing on her shirt.,is putting oil with butter and two rack ingredients followed by one pouring it off her.,continues speaking and shows a woman speaking to the camera and presents it in tissue paper.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera and showing off various tools to the camera.,She\nanetv_6O8QXbjvYKs,10542,He sets it on a rail and pushes it down a lane. A woman with a baby strapped to her chest,bowls a ball down a lane.,watches her jump off onto the skateboard.,holds up some weight.,walks up her path to a garage.,begins to swing at the pinata.,gold0-orig,pos,unl,pos,pos,pos,He sets it on a rail and pushes it down a lane.,A woman with a baby strapped to her chest\nanetv_6O8QXbjvYKs,10541,A little boy picks up a bowling ball. He,sets it on a rail and pushes it down a lane.,repeats it over and hit by the balls.,throws it at the pinata as it pretends to hit the ball.,throws the ball to the camera and falls onto the ground.,,gold0-orig,pos,unl,unl,pos,n/a,A little boy picks up a bowling ball.,He\nanetv_bXCOtMuaJf4,12891,A woman is seen washing dishes in a sink while a man speaks to the camera and zooms in on the dishes. The man,continues to speak to the camera and demonstrate how to properly wash dishes.,continues mixing herbs dishes into a pan and leads into him cooking his oil with food in the cup.,picks up a rag and sprays shoe clothes along the water before washing them and speaking to the camera.,wheels the body along slowly in front of the camera and begin to do dishes as well as thoroughly scrubbing the sink.,,gold1-orig,pos,unl,unl,unl,n/a,A woman is seen washing dishes in a sink while a man speaks to the camera and zooms in on the dishes.,The man\nanetv_CB0yYGVNcOk,2302,More shots are shown of him playing the instrument while pausing to play more. He,continues playing along and ends by smiling to the camera.,continues throwing more cards while continuing to look at the camera.,begins playing the instrument with his instrument.,continues playing the song to speak to the camera as more and ends with them speaking.,continues playing the drums while stopping to speak to the camera.,gold1-orig,pos,unl,unl,unl,pos,More shots are shown of him playing the instrument while pausing to play more.,He\nanetv_CB0yYGVNcOk,2301,A man is seen playing a saxophone into the camera and leads into him speaking. More shots,are shown of him playing the instrument while pausing to play more.,are shown of the man pausing to cheer and do several tricks.,are shown of people bowling and end by throwing the object off into the distance.,are shown of people playing and having the instrument that's running around and another of technique.,are shown of people playing volleyball and attempting to play basketball.,gold0-orig,pos,unl,unl,unl,unl,A man is seen playing a saxophone into the camera and leads into him speaking.,More shots\nanetv_dj_GBrR5N4E,13663,A man standing nearby pulls the spring board out of the way. Several judges,sit at a table in front of the bleachers watching.,are shown him cheering at the same time.,\"stand outside and watch, then receive them.\",are also shown with him sitting on stage into a pool.,,gold0-orig,pos,unl,unl,unl,n/a,A man standing nearby pulls the spring board out of the way.,Several judges\nanetv_dj_GBrR5N4E,13662,The young man uses a spring board to mount the bars. A man standing nearby,pulls the spring board out of the way.,\"throws the pole and the girl dismounts, then back.\",is to practice a karate dismount.,follows the european with a high dripping silver medal.,jumps off a rope while jumping rope on a bridge.,gold0-orig,pos,unl,unl,unl,pos,The young man uses a spring board to mount the bars.,A man standing nearby\nanetv_dj_GBrR5N4E,13661,\"Many people are in bleachers in the background walking around, sitting and watching. The young man\",uses a spring board to mount the bars.,does a handstand over his behavior.,seated in front of the crowd strung his legs while the audience claps.,comes back to perform near a man who is shaving the legs of the camel.,moves far to the upper floor of the nine and get in.,gold1-orig,pos,unl,unl,unl,unl,\"Many people are in bleachers in the background walking around, sitting and watching.\",The young man\nanetv_dj_GBrR5N4E,13665,The young man completes his parallel bar routine. The young man then,\"dismounts, lands and bows.\",stretches and spins the disc.,stands on the swing bars.,does flips and springs in the pommel.,jumps high in the air and cheers.,gold0-orig,pos,unl,unl,unl,pos,The young man completes his parallel bar routine.,The young man then\nanetv_dj_GBrR5N4E,13664,Several judges sit at a table in front of the bleachers watching. The young man,completes his parallel bar routine.,\"dances, flipping and flipping.\",pretends to toss his ball into the dressing room.,watches the child do the dance gyrates.,gets up and goes over to the lectern.,gold0-orig,pos,unl,unl,unl,unl,Several judges sit at a table in front of the bleachers watching.,The young man\nanetv_dj_GBrR5N4E,13666,\"The young man then dismounts, lands and bows. He\",walks away as another man in the same uniform approaches.,\"dismounts, gymnast in briefly flips and body flip in the air.\",dismounts and glances up off the someone.,falls off the bricks in the crowd.,jumps off the beam while swinging in his arms high on the stilts.,gold0-orig,pos,unl,unl,unl,pos,\"The young man then dismounts, lands and bows.\",He\nanetv_dj_GBrR5N4E,13660,A young man prepares to complete a routine on the parallel bars. Many people,\"are in bleachers in the background walking around, sitting and watching.\",stand back and fourth as they crowd and struggle to keep his balance.,watch on the ledge as he lands on his landing mat at a finish end.,\"climb, watching the man clap, flip and flip in slow motion.\",watch in the background in front of the jump.,gold0-reannot,pos,unl,unl,unl,unl,A young man prepares to complete a routine on the parallel bars.,Many people\nlsmdc0001_American_Beauty-46137,326,\"She is trying to be seductive as she says this, but she is pretty bad at it. His face\",is very close to hers.,has no bolts but grows somewhat taut.,lights up as dense earth.,is all somber and sharp like usual maybe he is in the monster's flesh ages.,'s too too knitted as he stirs his thoughts and looks his gaze against the window.,gold1-orig,pos,unl,unl,unl,unl,\"She is trying to be seductive as she says this, but she is pretty bad at it.\",His face\nlsmdc0001_American_Beauty-46137,327,His face is very close to hers. Someone,\"takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck.\",is actually standing with that he has hold of her face if she is not brightens.,is struggling to miss his victory.,moves out of her way but the wheelman pushes her forward.,\"stares at her, then lowers her arms.\",gold0-orig,pos,unl,unl,unl,pos,His face is very close to hers.,Someone\nlsmdc0001_American_Beauty-46137,328,\"Someone takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck. And someone\",kisses her on the lips.,steps to the porch and embraces her.,does n't believe her eyes.,gazes out at her.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone takes a deep breath just before someone leans in to kiss her cheek, her forehead, her eyelids, her neck.\",And someone\nlsmdc0001_American_Beauty-46137,339,\"Humiliated, someone starts to cry. He\",\"hugs her, letting her put her head on his shoulder, stroking her hair and rocking her gently.\",rises to his skis.,\"slips an envelope inside, shutting the door.\",\"crouches down and looks away with his middle fingers, looking thoughtful.\",roars over someone's head.,gold0-orig,pos,unl,unl,unl,unl,\"Humiliated, someone starts to cry.\",He\nlsmdc0001_American_Beauty-46137,331,Someone lays back on the couch as someone moves in over her. He,\"pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face.\",dips the paper canvas into the sink.,gives her a middle shake of his head.,looks up and sees that he has entered the room.,,gold1-orig,pos,unl,unl,unl,n/a,Someone lays back on the couch as someone moves in over her.,He\nlsmdc0001_American_Beauty-46137,342,She is eating a turkey sandwich. He,turns to her and cocks an eyebrow.,puts it in her pocket.,doubles over triumphantly.,\"takes the check, scrambles to the kitchen table, and shuts the door.\",grabs her stick to the table and places it in a tin mug.,gold0-orig,pos,unl,unl,unl,unl,She is eating a turkey sandwich.,He\nlsmdc0001_American_Beauty-46137,338,\"He grabs a blanket from the back of the couch and drapes it around her shoulders, covering her nakedness. He\",smiles and shakes his head.,signs to the roof.,throws his pillows onto the floor.,slumps down beside someone's face.,sits down and stares into his eyes.,gold0-orig,pos,unl,unl,unl,unl,\"He grabs a blanket from the back of the couch and drapes it around her shoulders, covering her nakedness.\",He\nlsmdc0001_American_Beauty-46137,333,\"People, fully clothed, lie curled up on someone's bed. She\",seems disconnected from what's happening.,smiles admiringly and puts in someone's lap.,can't see the brunette.,\"switches on his bedside lamp, and presses a remote.\",,gold0-orig,pos,pos,pos,pos,n/a,\"People, fully clothed, lie curled up on someone's bed.\",She\nlsmdc0001_American_Beauty-46137,341,\"Someone, once again fully clothed, sits at the kitchen counter. She\",is eating a turkey sandwich.,unrolls the strawberries before him.,\"waves to the camera, as she struck.\",\"is there, too.\",'s making an apple for someone.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, once again fully clothed, sits at the kitchen counter.\",She\nlsmdc0001_American_Beauty-46137,335,Someone starts unbuttoning someone's blouse. Someone,\"pulls her blouse open, exposing her breasts.\",is seated at a flower table.,finds a bike strapped onto the bed.,applies plaster to someone's face.,,gold0-orig,pos,unl,unl,unl,n/a,Someone starts unbuttoning someone's blouse.,Someone\nlsmdc0001_American_Beauty-46137,324,Someone holds the bottle up to her mouth and she drinks clumsily. He,gently wipes her chin with the back of his hand.,slaps his cheek and makes his way into a cafe at the edge of the bar.,makes the show a while with a stick as he plays the tune while someone plays.,coughs for some vodka.,,gold0-orig,pos,unl,unl,unl,n/a,Someone holds the bottle up to her mouth and she drinks clumsily.,He\nlsmdc0001_American_Beauty-46137,332,\"He pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face. People, fully clothed,\",lie curled up on someone's bed.,still alive at the top of her lungs.,stand and deal blissfully.,\"lie at the side of her bed, still wearing her father's heels.\",lie on a bed and hold each other's gaze as he paces.,gold0-orig,pos,unl,unl,unl,pos,\"He pulls her jeans off and gently brushes his fingers over her legs, then moves up and caresses her face.\",\"People, fully clothed,\"\nlsmdc0001_American_Beauty-46137,325,\"She is unnerved - - this is happening too fast. She is trying to be seductive as she says this, but she\",is pretty bad at it.,does n't think it's controlling.,bops his head in sudden doubt.,can't say nothing.,does n't quite believe what the proper to do.,gold0-reannot,pos,unl,unl,unl,unl,She is unnerved - - this is happening too fast.,\"She is trying to be seductive as she says this, but she\"\nlsmdc0001_American_Beauty-46137,334,She seems disconnected from what's happening. Someone,starts unbuttoning someone's blouse.,leads no more from someone.,runs through town with a still shot of her rifle.,\"lie back on the drumming, seated.\",glares at someone's partner.,gold0-reannot,pos,unl,unl,pos,pos,She seems disconnected from what's happening.,Someone\nlsmdc0001_American_Beauty-46137,340,\"She turns her head to look out the window: The red door of the Burnham house stands out, even in the pouring rain. Someone, once again fully clothed,\",sits at the kitchen counter.,is bent over his head and on his wet shirt.,comes back to reveal the own ball.,\"stops to look at her sister, who has completely ripped his jacket, as far as possible.\",\"is playing the piano and stands in front of him, making all his movements.\",gold0-reannot,pos,unl,unl,unl,unl,\"She turns her head to look out the window: The red door of the Burnham house stands out, even in the pouring rain.\",\"Someone, once again fully clothed,\"\nlsmdc0001_American_Beauty-46137,337,\"Someone lies beneath us, embarrassed and vulnerable. This is not the mythically carnal creature of someone's fantasies; this\",is a nervous child.,letter feels like the cooked goods.,is basically the eyes of someone.,\"is then outlined over someone, the force by someone to react.\",has to quite be out on a quality of pain.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone lies beneath us, embarrassed and vulnerable.\",This is not the mythically carnal creature of someone's fantasies; this\nlsmdc1012_Unbreakable-7352,3726,Someone sees someone sitting in an airport lounge. Other passengers,run to the big window.,join behind him on the window deck.,sit on deck chairs as the car drives past them.,dive out of the water.,sit in the back as he eagerly makes a call.,gold1-orig,pos,unl,unl,unl,unl,Someone sees someone sitting in an airport lounge.,Other passengers\nlsmdc1012_Unbreakable-7352,3728,\"Someone in his blue suit does n't even turn his head. After some moments, he\",rises and limps away.,reaches back to grab various stamps.,strikes the haul in his beige raincoat.,stands and swings out the tires.,,gold0-orig,pos,unl,unl,unl,n/a,Someone in his blue suit does n't even turn his head.,\"After some moments, he\"\nlsmdc1012_Unbreakable-7352,3727,Other passengers run to the big window. Someone in his blue suit,does n't even turn his head.,\"takes an empty seat, then pulls a spot and fetches a puff on it.\",kicks him under the paneled module and starts running to the front of the chaise's shirt.,is applying eye examination in stopped.,,gold1-orig,pos,unl,unl,unl,n/a,Other passengers run to the big window.,Someone in his blue suit\nlsmdc1012_Unbreakable-7352,3729,\"After some moments, he rises and limps away. Someone's\",sitting on a bar stool.,report begins to burn.,outlaws enter the guard house.,gaze soaks lying on the ground under his enormous hat.,friend walks through a shadowy archway.,gold0-orig,pos,unl,unl,unl,pos,\"After some moments, he rises and limps away.\",Someone's\nlsmdc1012_Unbreakable-7352,3732,Someone walks down the platform. Someone,\"stumbles two or three paces back from someone, staring at the other man, eyes wide.\",\"puts his hands on his chest, and puts his arm around someone.\",lands in a red formation in the middle of the classroom.,\"pauses about halfway to the entire platform, then stops snowed the door and stands up.\",stands by the docks.,gold0-orig,pos,unl,unl,unl,pos,Someone walks down the platform.,Someone\nlsmdc1012_Unbreakable-7352,3731,\"On a railway platform, the train driver's approaching his cab, when someone steps down from it. Someone\",walks down the platform.,reaches into his pocket.,gets on the van and shuts the entrance door.,skids and drives up alongside someone.,\"shows a teeth up at someone, pointing.\",gold0-orig,pos,unl,unl,unl,unl,\"On a railway platform, the train driver's approaching his cab, when someone steps down from it.\",Someone\nlsmdc1012_Unbreakable-7352,3734,\"Someone coolly swivels his chair towards his workbench, and puts down the paper. Someone\",looks over to the bench and sees a screen showing a video of philadelphia stadium.,leaves the living room and puts the device on top of a round chunk of his table.,files into a small red stamp.,looks at him uneasily and his pickup pulls up in front of the diner.,lowers the pages of the manuscript before his shades.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone coolly swivels his chair towards his workbench, and puts down the paper.\",Someone\nlsmdc1012_Unbreakable-7352,3730,\"The man leans into him. On a railway platform, the train driver's\",\"approaching his cab, when someone steps down from it.\",drooling wriggles under the car.,\"eyes view from the ditch in front of him, aiming his shotgun.\",notice gaze around in the backs of an inn.,,gold0-reannot,pos,unl,unl,unl,n/a,The man leans into him.,\"On a railway platform, the train driver's\"\nlsmdc1012_Unbreakable-7352,3733,\"Someone stumbles two or three paces back from someone, staring at the other man, eyes wide. Someone\",\"coolly swivels his chair towards his workbench, and puts down the paper.\",strides to the overturned car and steps over an landing into the water.,grabs through his doorway as someone crashes through the wall.,\"fall down from a street, forcing him around in a rapid fire between his motorbikes.\",\"are waved by the news and excited, walk to the railing.\",gold0-reannot,pos,unl,unl,unl,pos,\"Someone stumbles two or three paces back from someone, staring at the other man, eyes wide.\",Someone\nanetv_Tfqln6lL7q0,1792,A camera pans around person's faces on a snowy hill as well as them riding down a mountain. The people,continue skiing down the snowy path moving back and fourth and ending by stopping at the bottom.,continue walking around on dirt bikes.,continue to ride down the hill with others riding around in tubes.,are then shown riding down on tubes pulling one other.,speak to one another and end by them riding away.,gold0-orig,pos,unl,unl,unl,pos,A camera pans around person's faces on a snowy hill as well as them riding down a mountain.,The people\nanetv_ReOsTqcQBmY,15831,A group of four girls jump rope. The first group of people,jumps rope with a fourth person.,dance while the audience them takes pictures and the audience applauds.,jump around on the track.,\"start swinging with their hands, dancing with one another.\",,gold0-orig,pos,unl,unl,pos,n/a,A group of four girls jump rope.,The first group of people\nanetv_ReOsTqcQBmY,15828,Three people are jumping rope and doing tricks. Other people,sit and stand at tables in the background and watch or film the jump ropers.,run in front and grab each other.,are holding dodge balls as they walk.,are shown tubing in the sand.,,gold0-orig,pos,unl,unl,unl,n/a,Three people are jumping rope and doing tricks.,Other people\nanetv_ReOsTqcQBmY,15832,A different group of four in red and black jump rope. A different team of jump ropers,watches in the background.,are shown competing in contestants with people in a carnival.,appears and walks past with a lacrosse stick hanging out in the dust.,is shown along the walk away by locker screen.,,gold0-orig,pos,unl,unl,unl,n/a,A different group of four in red and black jump rope.,A different team of jump ropers\nanetv_ReOsTqcQBmY,15829,Other people sit and stand at tables in the background and watch or film the jump ropers. Four different people,are now jumping rope and doing tricks.,are seen playing as well as many standing in each and ladies standing on the side.,are slender and cluttered with the energy team in the audience.,are standing on the beach watching.,,gold0-orig,pos,unl,unl,unl,n/a,Other people sit and stand at tables in the background and watch or film the jump ropers.,Four different people\nanetv_ReOsTqcQBmY,15830,Four different people are now jumping rope and doing tricks. Another group of three people,shows off their jump rope skills.,sit around each other on a sand kite landing.,are ballroom holding the drinks and they applaud or sing off.,perform tricks on the rope.,,gold0-orig,pos,unl,unl,unl,n/a,Four different people are now jumping rope and doing tricks.,Another group of three people\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8659,Someone leads his horse through the tents towards the dimholt road. A short figure,steps out of the shadows.,trails down the desert.,crawls through its bodies.,is now close up in the driver's passenger window.,emerges from the cabin showing the four point tips amid the countryside.,gold0-orig,pos,unl,unl,unl,unl,Someone leads his horse through the tents towards the dimholt road.,A short figure\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8657,As someone readies brego for leaving someone approaches. Someone,looks over his shoulder at her.,\"collects the package and sees someone's body, which stiffens as he knits his brows.\",pulls back a blanket and walks away.,\"leans on a wounded woman, who turns away.\",pulls up a blanket and focuses it to someone who remains flat on his back.,gold1-orig,pos,unl,unl,unl,pos,As someone readies brego for leaving someone approaches.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8661,\"Someone looks at someone as he appears, leading his horse - - already saddled. Someone\",steps closer to someone.,\"leans down again, grabbing two of his dead hands.\",spots the red suspect from right to right in the picture.,\"striding swiftly down the mountain at dawn, pointing up at the crowd.\",has a wound in his own shoulder.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks at someone as he appears, leading his horse - - already saddled.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8660,A short figure steps out of the shadows. Someone,looks at someone - - grateful for his courage but determined to go alone.,goes between the house and the room.,stands in a backyard.,\"stops, looks away thoughtfully, and looks away.\",stops by the door.,gold0-orig,pos,unl,unl,unl,pos,A short figure steps out of the shadows.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8658,\"Someone looks at her sadly, not wanting to hurt her. Someone\",steps back at though struck.,leaps in fine linen onto her oriental chair to the nurse.,continues toward the house.,is leaning back and is outside bed.,\"looks inside the corridor, but she makes for the door for someone and hurries to an elevator.\",gold1-reannot,pos,unl,pos,pos,pos,\"Someone looks at her sadly, not wanting to hurt her.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8662,\"Someone shakes his head, smiling his acceptance. Someone and gamling\",watch the retreating figures of people.,do anything as well.,are wheeling a coated line over a moat.,look over and watching the movie.,are working on the grill.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone shakes his head, smiling his acceptance.\",Someone and gamling\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8664,\"Rohan soldiers emerge from their tents, crestfallen to see someone leave. People\",disappear into the shadows of the mountains.,are on their way out onto the porch.,\"see someone, someone over to someone.\",sprints through the terminal building.,weave in an inner circle.,gold0-reannot,pos,unl,unl,unl,unl,\"Rohan soldiers emerge from their tents, crestfallen to see someone leave.\",People\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61019,8663,Someone and gamling watch the retreating figures of people. Rohan soldiers,\"emerge from their tents, crestfallen to see someone leave.\",with the crows of people free and fleeing.,surround the limousine as they proceed through a small door behind someone.,keep weapons on his feet.,rush and troopers across the arena.,gold1-reannot,pos,unl,unl,unl,pos,Someone and gamling watch the retreating figures of people.,Rohan soldiers\nanetv_PSh-caJvSHU,5024,He and another child are shown creating jackolanterns from pumpkins. They,use plastic pumpkins to base their designs on.,pans back and forth in front of the excess lines using child methods to move fast motion.,pin him down onto the grass.,mixes ingredients into a jar and sets them down again.,,gold0-orig,pos,unl,unl,unl,n/a,He and another child are shown creating jackolanterns from pumpkins.,They\nlsmdc0049_Hannah_and_her_sisters-69132,455,\"The group is now seen walking down the canopied entrance stairs of an apartment house on the other side of the street, where they'd been gazing at both the lovely and ugly facades across the way. Someone is in the lead; the women\",\"follow, someone slightly behind april.\",swoop down to the drifting wave below fan.,take away the bullets since they'd first met.,keep her to the door.,,gold1-orig,pos,unl,unl,pos,n/a,\"The group is now seen walking down the canopied entrance stairs of an apartment house on the other side of the street, where they'd been gazing at both the lovely and ugly facades across the way.\",Someone is in the lead; the women\nlsmdc0049_Hannah_and_her_sisters-69132,453,\"The film moves from the two elegant facade to show an ugly, ultra - modern structure covered with tiny, diamond - shaped motifs. The film\",moves from the ugly facade to the building's equally ugly entrance.,leads into several brighter shots of pie laid out and someone's hands on her face as she gathers her things.,shows a band of girls gathering in two arcade.,is beginning to form as someone jumps from a separate window onto a glowing dangling steps to the right.,cuts to a absent agent family.,gold0-orig,pos,unl,unl,unl,unl,\"The film moves from the two elegant facade to show an ugly, ultra - modern structure covered with tiny, diamond - shaped motifs.\",The film\nlsmdc0049_Hannah_and_her_sisters-69132,454,The film moves from the ugly facade to the building's equally ugly entrance. A large car,is parked right in front of the building.,arrives behind the barricade where it slides over their shoulders.,skiis to a stop as someone sits up.,pulls up from the curb and runs up the street.,draws to a stop.,gold1-orig,pos,unl,unl,unl,pos,The film moves from the ugly facade to the building's equally ugly entrance.,A large car\nanetv_RJ5U2y6ccvA,18774,A young baby is outside in murky water holding on to a white bar. Two men push him and he,is shown riding a water vehicle being pulled by some type of thing.,dives very hard too.,spins and also serves the ball many times.,carries them along shore and the other rubs his neck.,\"holds the ball hard with his hand, and suddenly the other ball comes out from under him.\",gold0-reannot,pos,unl,unl,unl,unl,A young baby is outside in murky water holding on to a white bar.,Two men push him and he\nanetv_RJ5U2y6ccvA,18775,\"Two men push him and he is shown riding a water vehicle being pulled by some type of thing. As he moves, a woman\",is on the side of him following him and stopping him along the way making sure he is okay.,runs into the storm.,is standing opposite the hood.,rides the car slowly along the highway.,,gold0-reannot,pos,unl,pos,pos,n/a,Two men push him and he is shown riding a water vehicle being pulled by some type of thing.,\"As he moves, a woman\"\nanetv__4CLYKFzmoY,14450,He begins playing the violin. He,\"closes his eyes, listening to himself as he plays.\",goes around another set of bongo drums while he continues to play the drums.,sets down his flute and resumes playing.,begins to play the drum.,,gold0-orig,pos,unl,unl,unl,n/a,He begins playing the violin.,He\nanetv__4CLYKFzmoY,14449,A young man is wearing headphones and standing in front of a microphone. He,begins playing the violin.,is holding his cigarette for a boy's mouth to hold him in place.,strum the drums and continues to play the drums.,starts singing a flute while looks back to the camera.,begins playing a set of drums.,gold1-orig,unl,unl,unl,unl,unl,A young man is wearing headphones and standing in front of a microphone.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60227,117,\"Someone throws down his sword, kicks and lunges at someone, tackling him to the ground. Someone 'eyes\",\"are fixed on a distant dark patch which darts about the sky, like flying smoke in the wind.\",are hit by asphalt.,tremble then rolls away.,are fixed on someone's face as she moves away.,widen as he throws the mop back.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone throws down his sword, kicks and lunges at someone, tackling him to the ground.\",Someone 'eyes\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60227,116,Someone has managed to corner someone. Someone,\"throws down his sword, kicks and lunges at someone, tackling him to the ground.\",hugs downstairs and finds himself outside.,looks down at the night sky as she thinks about it.,stops the other girls he can.,pounces over him.,gold0-reannot,pos,unl,unl,unl,pos,Someone has managed to corner someone.,Someone\nanetv_xijxN7XB4d8,12245,A man is standing in a bedroom practicing his violin. Another day passes by and it,is now sunlight outside as the boy practices playing his instrument once more.,strikes a switch and they are playing a game.,is a rental room busy where a small boy wearing a red shirt.,includes a drum guitar.,,gold0-orig,pos,unl,unl,unl,n/a,A man is standing in a bedroom practicing his violin.,Another day passes by and it\nanetv_xijxN7XB4d8,12247,\"The practicing continues on for several more days in the same room and finishes on until day 7. Finally, the man\",takes a set in the room and begins talking and demonstrating effective ways to hold the violin and play it efficiently.,is being interviewed on a tv and a man takes off the marketing markings is said - the video starts a series of times.,is over again wearing anything red shirt and yellow shirt.,\"changes the other socks & crews to take the position off the body, and walk off down shot.\",returns talking to the camera in an attempt to grab the wall and stops in front of the wall.,gold0-orig,pos,unl,unl,unl,unl,The practicing continues on for several more days in the same room and finishes on until day 7.,\"Finally, the man\"\nanetv_xijxN7XB4d8,12246,Another day passes by and it is now sunlight outside as the boy practices playing his instrument once more. The practicing,continues on for several more days in the same room and finishes on until day 7.,moves behind the boy and he is holding the dishes in front of him.,arts moves from a rider next to the father who had horseback.,kneels down and puts his hands in his pockets.,goes out and comes up with his whole parents.,gold1-orig,pos,unl,unl,unl,unl,Another day passes by and it is now sunlight outside as the boy practices playing his instrument once more.,The practicing\nlsmdc3011_BLIND_DATING-914,14194,\"Someone gulps wine and sets down the glass. Now, someone\",leaves with a hand on someone's shoulder.,sits at the empty coffee cafe in a newspaper.,sits outside.,talks in his cell.,drives back into the pier.,gold1-orig,pos,unl,unl,unl,unl,Someone gulps wine and sets down the glass.,\"Now, someone\"\nlsmdc3011_BLIND_DATING-914,14196,\"At the limo, someone feels for his brother and punches him. Someone\",turns his head away from his brother.,attacks with another snowball.,\"breathes into a welcome break, and gets up.\",leads someone off the top of a step tower.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the limo, someone feels for his brother and punches him.\",Someone\nlsmdc3011_BLIND_DATING-914,14195,\"Now, someone leaves with a hand on someone's shoulder. At the limo, someone\",feels for his brother and punches him.,waits and chase the bus.,gets off a bike and steps out of the truck.,sobs between her short sisters.,,gold1-reannot,pos,unl,unl,pos,n/a,\"Now, someone leaves with a hand on someone's shoulder.\",\"At the limo, someone\"\nlsmdc3011_BLIND_DATING-914,14193,She gives someone a once over. Someone,gulps wine and sets down the glass.,holds out a futile body and tosses it over the garden.,takes one.,keeps his hand absently.,leans over a railing and lets him out.,gold1-reannot,pos,unl,unl,unl,pos,She gives someone a once over.,Someone\nlsmdc3011_BLIND_DATING-914,14192,She lifts her cell phone. She,gives someone a once over.,checks her cell footage.,goes to her side and smiles at someone.,responds with a slack - soft smile.,\"celebrates, she observes whistles blues.\",gold0-reannot,pos,unl,unl,unl,unl,She lifts her cell phone.,She\nlsmdc0022_Reservoir_Dogs-59144,9458,\"Though he is driving for his life, he keeps talking to his wounded passenger in the backseat. They\",are the only two in the car.,\"gets off and weaves his way, looking dazed and disbelieving with the men behind him.\",climbs up at the top of the cliff.,begins to tear a spare tire off a garage.,come up back to the bath.,gold1-orig,pos,unl,unl,unl,unl,\"Though he is driving for his life, he keeps talking to his wounded passenger in the backseat.\",They\nlsmdc1006_Slumdog_Millionaire-74078,1223,He pats someone patronizingly on the back of his head. Then he,glares at the director off - stage.,jacks the car's doors open as well.,looks at the envelopes as he goes.,sits down and stares at someone.,,gold1-orig,pos,unl,unl,pos,n/a,He pats someone patronizingly on the back of his head.,Then he\nlsmdc1006_Slumdog_Millionaire-74078,1222,\"With eyebrows raised, he regards someone. The audience\",are on their feet.,nods and waves his hands.,applauds their awards in victory while people watch them play.,spread into a handshake.,gives a relieved wave.,gold0-orig,pos,unl,unl,unl,pos,\"With eyebrows raised, he regards someone.\",The audience\nlsmdc1006_Slumdog_Millionaire-74078,1225,The director gives him a happy thumbs up. The host,maintains a grim serious expression.,then puts his luggage down and extends his hand.,pats the edge of the bed and her face falls.,eases a smaller wall.,of his arm falls someone catches someone's face as the stunned smile spreads on someone's face.,gold0-orig,pos,unl,unl,unl,unl,The director gives him a happy thumbs up.,The host\nlsmdc1006_Slumdog_Millionaire-74078,1224,Then he glares at the director off - stage. The director,gives him a happy thumbs up.,grabs the block and walks away.,points and tries to serve someone.,\"looks at someone, who stares morosely at him.\",takes the blue drink at the young man.,gold1-orig,pos,unl,unl,unl,unl,Then he glares at the director off - stage.,The director\nanetv_FqlXey9KFZA,17728,A man is whipping with a dark rug. The guy,is gesturing at the machine's work.,'s jumping and knitting with skateboard.,turns the tool on a mans hair.,is shaving the horse with shaving cream.,blow blow leaves over the face.,gold0-orig,pos,unl,unl,unl,unl,A man is whipping with a dark rug.,The guy\nanetv_FqlXey9KFZA,17727,A guy is operating a electric presser. A man,is whipping with a dark rug.,enters and lifts the triangle to a girl.,kicks over a phone.,stands at a table with a man.,,gold0-reannot,unl,unl,unl,unl,n/a,A guy is operating a electric presser.,A man\nlsmdc0002_As_Good_As_It_Gets-46513,735,People stunned by the manners. Camera,follows as someone goes to a rack of cds - - all carefully labelled.,erupt around the room.,'s wheel ticks up automatically.,roars directly across the street toward someone.,,gold0-orig,pos,unl,unl,unl,n/a,People stunned by the manners.,Camera\nanetv_TVbPV7X49tw,12928,A bike is kicking up smoke. A man,puts his arm in the air.,is sitting in the wood roof.,is climbing his climbing equipment.,is waiting for him.,walks in next to him.,gold1-orig,pos,unl,unl,pos,pos,A bike is kicking up smoke.,A man\nanetv_TVbPV7X49tw,12923,We see four bikes jump a ramp one after another. We,see a man in red talking.,see a man get out a tire on landing to a van in an attic.,see the man performing with the will for jumps and flips.,see a machine getting up on gear.,see a scoreboard as they play against one another.,gold0-orig,pos,unl,unl,unl,unl,We see four bikes jump a ramp one after another.,We\nanetv_TVbPV7X49tw,12920,We see flashing images of motorcycle riding. We,see a man talk standing high above a city.,see the cars and the talking of the dog.,see the manual and the man stands on the track.,switch to a race in a large chaises room.,see a lady hula skate from a blow machine.,gold1-orig,unl,unl,unl,unl,unl,We see flashing images of motorcycle riding.,We\nanetv_TVbPV7X49tw,12921,We then see motorcycle stunts. A bike,jumps a group of people in a plaza.,is being followed by a man standing in front of a couch.,is making changes in a race of street.,appears and we see several skateboarders riding on it.,,gold0-orig,pos,unl,unl,unl,n/a,We then see motorcycle stunts.,A bike\nanetv_TVbPV7X49tw,12927,We see boy is talking. A bike,is kicking up smoke.,drops in a red tire.,is standing at the base of a bike.,is then placed in a bike bike stand.,drives from a windsurfer.,gold1-orig,unl,unl,unl,unl,unl,We see boy is talking.,A bike\nanetv_TVbPV7X49tw,12926,A man kisses a woman on his bike. We,see boy is talking.,watches with the help of a car as he continues to release her arms.,join people on the jump rope as it films the boy.,try to push the makeup on.,is shown sitting in the back of a bike.,gold1-orig,pos,unl,unl,unl,unl,A man kisses a woman on his bike.,We\nanetv_TVbPV7X49tw,12924,We see a man in red talking. A man,jumps off his bike.,puts an arm around the lady.,takes a drink from a coffee cup.,is standing before a roof on a house.,kneels on the water.,gold1-orig,pos,unl,unl,pos,pos,We see a man in red talking.,A man\nanetv_TVbPV7X49tw,12922,A bike jumps a group of people in a plaza. We,see four bikes jump a ramp one after another.,are the rest of the competition.,\"dancing on one bar with a huge designed face, a man crosses at the other side of the room wearing a black shirt.\",serves a platform of a ball and a man hits a wall for half a time.,,gold0-orig,pos,unl,unl,unl,n/a,A bike jumps a group of people in a plaza.,We\nanetv_j0FMv4RDpEk,14251,\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy is adding the pieces to the pasted area on the roof. A person\",is spraying the paste on the roof pieces.,is drug by a cord attached to the cat's back.,\"adds a hose to the car, then vacuums and the gangsters get onto the roof tarp.\",is holding a sponge and washing various dishes with a plate.,,gold0-orig,pos,unl,unl,unl,n/a,\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy is adding the pieces to the pasted area on the roof.\",A person\nanetv_j0FMv4RDpEk,14249,The credits of the clip are shown. Men,are working on a roof.,are playing basketball in an arena.,are in a field playing paintball.,are around the beach playing their game.,are then shown using the machine.,gold0-orig,pos,pos,pos,pos,pos,The credits of the clip are shown.,Men\nanetv_j0FMv4RDpEk,14250,\"Men are working on a roof. A man is spraying the paste on the roof, a male is handing off the pieces, and a guy\",is adding the pieces to the pasted area on the roof.,uses an electric scraper to remove the wax from the car.,walks to the woman who is sitting in the yard to the inside of the car.,cleans the tires in order to get the snow solution in the bucket.,is behind the bike and rip the tire off the sides of the tire.,gold0-orig,pos,unl,unl,unl,unl,Men are working on a roof.,\"A man is spraying the paste on the roof, a male is handing off the pieces, and a guy\"\nlsmdc0053_Rendezvous_mit_Joe_Black-71371,14818,\"Someone climbs out of the pool, gets halfway up the ladder, points to a stack of towels. Someone turns to the towels, but one hand is occupied with the spoonful of peanut butter, he shifts it to the other hand, can't manage the huge Turkish towel one - handed, now implants the spoon in his mouth, lifts the towel with both hands and\",presents it to someone.,begins to barely give it a kiss.,settles over the bed.,spreads other dry in it.,sinks it into the water.,gold0-orig,pos,unl,unl,unl,unl,\"Someone climbs out of the pool, gets halfway up the ladder, points to a stack of towels.\",\"Someone turns to the towels, but one hand is occupied with the spoonful of peanut butter, he shifts it to the other hand, can't manage the huge Turkish towel one - handed, now implants the spoon in his mouth, lifts the towel with both hands and\"\nanetv_Xj1R81SK_zs,13224,A person is seen throwing objects off the side of a pier. The person,jumps down and begins riding on a board behind a shark.,uses another paddle to slide the board back and fourth to one another.,rides all around on skis.,continuously glides across a board while standing in front of them.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen throwing objects off the side of a pier.,The person\nanetv_Xj1R81SK_zs,10421,The man the surfs being pulled by a shark. The man,surfs into shore and high fives his friend and jumps around.,waiving at each guy with his back to see.,waves his cupped hands over his mouth.,swims near the pool.,,gold1-orig,pos,unl,unl,unl,n/a,The man the surfs being pulled by a shark.,The man\nanetv_Xj1R81SK_zs,13225,The person jumps down and begins riding on a board behind a shark. The person,rides a wave and cheers with other people.,spins himself around and ends with his abdomen and arms.,continues grabbing more liquids and shows more of the dog while others having shower around.,slides across the water on skis to the top.,rubs out the visible of the boat and the water keeps moving.,gold1-orig,pos,unl,unl,unl,unl,The person jumps down and begins riding on a board behind a shark.,The person\nanetv_Xj1R81SK_zs,10419,A man throws a surfboard and meat on a fishing pole into the ocean. The man,jumps in and fishes for a shark.,floats and rides his kayak in a lake.,flies up and holds onto a paddle boat.,uses water and pool as cars keep on recovering.,,gold0-orig,pos,unl,unl,unl,n/a,A man throws a surfboard and meat on a fishing pole into the ocean.,The man\nlsmdc0010_Frau_Ohne_Gewissen-51638,4390,Someone gets up from the davenport. He,listens to the music for a moment.,starts to climb the hall.,jogs out out the smash - up poster window.,strides over the hallway to the promoter.,,gold1-orig,pos,unl,unl,pos,n/a,Someone gets up from the davenport.,He\nlsmdc0010_Frau_Ohne_Gewissen-51638,4392,He goes quietly over to the window and shuts it and draws the curtain. Someone,takes a few more steps towards her and stops again.,\"goes to the other door of the bathroom, opens it to find the man as he turns his attention to the salesman.\",\"tries the door, but finds it gone.\",cringes in the toilet and rice dust pouring over some of the windows.,lets go of him and turns toward his mother.,gold1-reannot,pos,unl,unl,unl,unl,He goes quietly over to the window and shuts it and draws the curtain.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51638,4391,Someone just stares at him. He,goes quietly over to the window and shuts it and draws the curtain.,stops trying to trace the decision being overheard.,points its way without the helmet.,is brought back into the house.,falls into the counter.,gold0-reannot,pos,unl,unl,unl,pos,Someone just stares at him.,He\nlsmdc3060_SANCTUM-29630,18877,\"Now, someone arrives at a narrow crevasse. He\",\"takes another hit from the tank, then continues on.\",hands the phone to the police general.,reaches out and smooths pushing the visor behind.,is hitting a guy with a cape and overcoat and a bright late sweatshirt.,,gold0-orig,unl,unl,unl,unl,n/a,\"Now, someone arrives at a narrow crevasse.\",He\nlsmdc3060_SANCTUM-29630,18876,\"Someone crawls over jagged rocks beneath someone's lifeless, dangling arms. Now, someone\",arrives at a narrow crevasse.,smiles up at the statue for a long time.,stands in the pool.,paddles closer to shore.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone crawls over jagged rocks beneath someone's lifeless, dangling arms.\",\"Now, someone\"\nlsmdc3060_SANCTUM-29630,18885,\"As his near - motionless body rotates underwater, the young man shuts his eyes. He\",begins to sink downward.,lifts his hat over his head.,glances at her open window.,sweeps the bride down toward someone's body.,perches on the edge of the bed.,gold0-orig,pos,unl,unl,unl,unl,\"As his near - motionless body rotates underwater, the young man shuts his eyes.\",He\nlsmdc3060_SANCTUM-29630,18881,\"As someone squeezes through a small opening, he raises the canister valve. With his cheeks puffed out, he\",edges his way up along a jutting wall of rock.,smooths the lid.,sets the encased in glass.,ventures on toward an open cabinet with his foot.,faces a half - eaten breakfast pot.,gold0-orig,pos,unl,unl,unl,unl,\"As someone squeezes through a small opening, he raises the canister valve.\",\"With his cheeks puffed out, he\"\nlsmdc3060_SANCTUM-29630,18884,\"From above, someone's face breaks the water's surface. A distant bluish light\",expands and shines across the big shape of someone's body.,sends a faint wave down above the huge lake.,is visible for the man's view from a window.,appears in the mixture with shiny shapes and sizes.,,gold0-orig,pos,unl,unl,unl,n/a,\"From above, someone's face breaks the water's surface.\",A distant bluish light\nlsmdc3060_SANCTUM-29630,18874,\"Someone inhales once again from the tank. Coming out from around a bulging rock, he\",sees someone's body wedged against the ceiling up ahead.,\"allows an effort to hold his seat nearby, but can not see if he is working.\",hops back to the cement wall and pours with more.,stops and looks out of the waves at the own park.,shoves his way through a large protective panel strewn around the place.,gold0-orig,pos,unl,unl,unl,pos,Someone inhales once again from the tank.,\"Coming out from around a bulging rock, he\"\nlsmdc3060_SANCTUM-29630,18875,\"Coming out from around a bulging rock, he sees someone's body wedged against the ceiling up ahead. Someone\",\"crawls over jagged rocks beneath someone's lifeless, dangling arms.\",returns close to the glass.,stares up a high staircase.,watches with a knitted brow.,\"appears toward the camera, shooting her friend another glance.\",gold0-orig,pos,unl,unl,pos,pos,\"Coming out from around a bulging rock, he sees someone's body wedged against the ceiling up ahead.\",Someone\nlsmdc3060_SANCTUM-29630,18879,\"Now, someone clutches the boar tooth torch which emits a soft, warm glow. Kicking his flippers, he\",continues on along a rocky passage.,\"glances across the garden floor, and releases the bird.\",produces a chair and flashes.,looks in through billowing air.,\"remembers every moment affected, even before coming out outside.\",gold0-orig,pos,unl,unl,unl,pos,\"Now, someone clutches the boar tooth torch which emits a soft, warm glow.\",\"Kicking his flippers, he\"\nlsmdc3060_SANCTUM-29630,18872,\"He rises, drawing his arms back and allows his father's body to float away. Now underwater, someone\",\"emerges from a cavern, clutching a glow stick and the air cylinder.\",holds a lantern and swoops down.,stares at the battling fish in the boat.,\"stands shakily at the edge of the cavernous river, through the village.\",holds the night eastern program in his way and speeds down into the great hall.,gold0-orig,pos,unl,unl,unl,unl,\"He rises, drawing his arms back and allows his father's body to float away.\",\"Now underwater, someone\"\nlsmdc3060_SANCTUM-29630,18862,\"Meanwhile in the underwater cave, someone, illuminated by the green light of the glow stick feels his way along the rocks above with clenched teeth. Emerging in open water, he\",does a breaststroke toward the murky.,ties someone tightly with his fist.,\"holds his paintball gun, pointing his wand.\",pushes something on the desk.,,gold0-orig,pos,unl,unl,pos,n/a,\"Meanwhile in the underwater cave, someone, illuminated by the green light of the glow stick feels his way along the rocks above with clenched teeth.\",\"Emerging in open water, he\"\nlsmdc3060_SANCTUM-29630,18880,\"Kicking his flippers, he continues on along a rocky passage. As someone squeezes through a small opening, he\",raises the canister valve.,spots a guy sneak through the window of the illuminated tunnel light.,speaks on the cell.,raises the ax and peers through the hole.,sees someone's off the car.,gold1-orig,unl,unl,unl,unl,unl,\"Kicking his flippers, he continues on along a rocky passage.\",\"As someone squeezes through a small opening, he\"\nlsmdc3060_SANCTUM-29630,18867,\"Now in slow motion, submerged under gently lapping ripples, someone's grip loosens on his son. Someone\",\"looks down at him, lips parted.\",\"gets to her feet, someone lies on the hand next to him.\",stalks off as the board covers mother's limp torso.,takes someone's arm.,\"steps between the branches of a tree on the ground, on the opposite side.\",gold0-orig,pos,unl,unl,unl,unl,\"Now in slow motion, submerged under gently lapping ripples, someone's grip loosens on his son.\",Someone\nlsmdc3060_SANCTUM-29630,18864,He sets the stick aside as his father shivers in the water. Someone's pursed lips,\"form a brief, loving smile.\",have become their lips together.,tremble as a portly older man kicks a black beam away from himself.,\"meet in a line of cigarette smoke, then closes the book with his hand.\",spread into a smile and his jaw drops.,gold0-orig,pos,unl,unl,unl,unl,He sets the stick aside as his father shivers in the water.,Someone's pursed lips\nlsmdc3060_SANCTUM-29630,18870,\"Under the green illumination of the glow stick, the young man blinks, gazing sadly. With one hand pressed to his father's chest, someone\",bends down and plants a tender kiss on his forehead.,watches someone's movements for a moment and then spins someone from his chair.,shoves the one from the table onto the other.,\"relaxes back to his writhing body, then turns to look in at the radio, stroking his enormous belly.\",sticks the blade against the base of his neck.,gold0-orig,pos,unl,unl,unl,pos,\"Under the green illumination of the glow stick, the young man blinks, gazing sadly.\",\"With one hand pressed to his father's chest, someone\"\nlsmdc3060_SANCTUM-29630,18871,\"With one hand pressed to his father's chest, someone bends down and plants a tender kiss on his forehead. He\",\"rises, drawing his arms back and allows his father's body to float away.\",rests the nape of his neck and gazes tenderly at her.,cannonballs into the doorway.,aims his wand at the chessboard.,\"runs down the stairs, as a car crashes in the water and rolls towards us.\",gold0-orig,pos,unl,unl,unl,unl,\"With one hand pressed to his father's chest, someone bends down and plants a tender kiss on his forehead.\",He\nlsmdc3060_SANCTUM-29630,18868,\"He withdraws his hand from his father's, letting it fall back into the murk. Sliding his hand from his father's forehead, someone\",lifts his body to the surface.,looks up at the prefect cocaine stain on someone's hands.,\"touches the card, which secure the deep side of the dagger with their left hand.\",rests his chin next to someone's eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"He withdraws his hand from his father's, letting it fall back into the murk.\",\"Sliding his hand from his father's forehead, someone\"\nlsmdc3060_SANCTUM-29630,18873,Rise from the valve as he raises it to his lips and takes a hit. Someone,inhales once again from the tank.,swings the cue and misses to another avail.,has his sweep at the back of his head as a horse starts to run.,\"reaches down, knocks an empty bottle into the bow, then snatches it up.\",finishes getting up and grabs the overhead lamp.,gold0-orig,pos,unl,unl,unl,pos,Rise from the valve as he raises it to his lips and takes a hit.,Someone\nlsmdc3060_SANCTUM-29630,18869,\"Sliding his hand from his father's forehead, someone lifts his body to the surface. Under the green illumination of the glow stick, the young man\",\"blinks, gazing sadly.\",shines down his flashlight.,gets to her feet.,notices someone up ahead.,,gold0-orig,pos,unl,unl,pos,n/a,\"Sliding his hand from his father's forehead, someone lifts his body to the surface.\",\"Under the green illumination of the glow stick, the young man\"\nlsmdc3060_SANCTUM-29630,18882,These bubbles emerge from small craters. Someone,crawls over and presses his lips to one.,lies on the medical deck.,\"sets down a gold flower, stops away from it.\",hurries up the drain and they stroll across the warehouse.,is mostly moving inside as they continue to move.,gold0-reannot,pos,unl,unl,pos,pos,These bubbles emerge from small craters.,Someone\nlsmdc3060_SANCTUM-29630,18863,\"Emerging in open water, he does a breaststroke toward the murky. He\",sets the stick aside as his father shivers in the water.,reaches out to the side and aims around him.,stumbles through the elevated forest without breaking into the applause.,wears a green baled suit and a uniform.,hobbles past a two - man walk.,gold1-reannot,pos,unl,unl,unl,unl,\"Emerging in open water, he does a breaststroke toward the murky.\",He\nlsmdc3060_SANCTUM-29630,18865,\"Underwater, a flurry of bubbles rises. Someone\",struggles to hold back sobs.,resumes his face with a sneer.,emerges from the bar with her soda in between her legs and nods forlornly.,stands up rope gear around an unfinished place.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Underwater, a flurry of bubbles rises.\",Someone\nanetv_sOMA_oI7dgk,4379,\"A woman talks in a gym sitting on a rowing machine. Then, the woman\",puts her shoes in the rowing machine and starts to pull a handle with a string.,lifts the weight over her head with a few others.,gets a small one and put them on the rowing machine.,jumps demonstrating how to use the machine.,,gold0-orig,pos,unl,unl,unl,n/a,A woman talks in a gym sitting on a rowing machine.,\"Then, the woman\"\nanetv_sOMA_oI7dgk,13411,\"A person talks in a gym siting on a machine. Then, the person\",fasten her feet to the machine and pulls the handle of the machine and sliding back.,sharpens a hoops between elongated sticks.,hold the paint stick while talking in the ring.,spins the guy sideways and attempts to put it on his shirt then grabs the man up.,put something on a kneeing machine.,gold1-orig,pos,unl,unl,unl,pos,A person talks in a gym siting on a machine.,\"Then, the person\"\nanetv_sOMA_oI7dgk,4381,\"The woman shows with her right hand the movement of her bottom. Then, the woman\",\"continues exercising, after she stops and talks again.\",holds a claw to hanky her lip and puts a contact in her right ear.,put pliers on a lip.,gets on a knee with the machine.,starts to belly dance.,gold1-orig,pos,unl,unl,pos,pos,The woman shows with her right hand the movement of her bottom.,\"Then, the woman\"\nanetv_sOMA_oI7dgk,4380,\"Then, the woman puts her shoes in the rowing machine and starts to pull a handle with a string. The woman\",shows with her right hand the movement of her bottom.,adds the proper straight haircut and the pan dangle from the lever and chest.,begins to faucet and then mops the floor with others.,turns the vacuum to the water and continues stretching on the floor on a sprawling roof.,\"picks up her injured, as it is gradually indicating a brisk machine.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, the woman puts her shoes in the rowing machine and starts to pull a handle with a string.\",The woman\nanetv_sOMA_oI7dgk,13412,\"Then, the person fasten her feet to the machine and pulls the handle of the machine and sliding back. Then, the person\",rest with the legs on the machine while talking.,wets with a machine's hand and then starts to breakdance.,uses a rowing bomb first and ends by using the machine and actually collapses and raise one end with the lever.,\"flips the rope across the back paper, class.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Then, the person fasten her feet to the machine and pulls the handle of the machine and sliding back.\",\"Then, the person\"\nlsmdc3033_HUGO-14500,3845,The automaton completes the drawing. Someone,looks at someone and smiles.,sits in a room reading a book on the cd observation room.,dursleys someone rides in through a gate.,seems to tower across the sand.,picks up the scientist's box.,gold0-orig,pos,unl,unl,unl,unl,The automaton completes the drawing.,Someone\nlsmdc3033_HUGO-14500,3844,The automaton draws a five - pointed star then a series of curved lines. Its metal hands,move quicker and quicker across the page.,stops a few feet away.,\"are inches apart, apart from each other wrist.\",\"form a circle, then fold to form a dragon.\",sweep together onto one of the glowing cubes of the glowing device.,gold0-orig,pos,unl,unl,unl,unl,The automaton draws a five - pointed star then a series of curved lines.,Its metal hands\nlsmdc3033_HUGO-14500,3846,Someone looks at someone and smiles. The automaton,reaches out its hand and signs a name in cursive at the bottom of the page.,leans his mouth toward hers.,\"tips to someone, devastated.\",'s flesh is gold on its skin.,,gold1-orig,pos,unl,unl,unl,n/a,Someone looks at someone and smiles.,The automaton\nlsmdc3033_HUGO-14500,3842,\"They rush back to the table as the automaton begins writing again. Moving its hand, it\",begins connecting the various shapes and scribbles together with lines.,shows to the analysis.,stops cutting the sphere and takes out its right arm from the brolly.,approaches an endless array of tools.,,gold0-orig,pos,unl,unl,pos,n/a,They rush back to the table as the automaton begins writing again.,\"Moving its hand, it\"\nlsmdc3033_HUGO-14500,3843,He and someone step on either side of the automaton to get a better view. The automaton,draws a five - pointed star then a series of curved lines.,uses on to get a view.,pushes the door seductively.,\"moves closer and breathes on it as the mass comes and a beautiful river distant, barely visible, and moves it upward.\",backs out of a chair to peer down.,gold1-reannot,pos,unl,unl,unl,unl,He and someone step on either side of the automaton to get a better view.,The automaton\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5084,Soldiers fly into the air. The explosion,knocks someone off the tank and onto the tread.,fights men the back of a car as the drone douses them.,takes in the rumble.,tumbles into the center of the cavern and explodes.,,gold0-orig,pos,unl,unl,unl,n/a,Soldiers fly into the air.,The explosion\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5092,\"Someone raises the shovel above his head and brings it crashing down on someone, still hanging from the protruding gun. Someone\",loses his grip and now hangs from the gun suspended only by the strap of his leather pouch.,\"smiles at this, gleams almost the last shot of the third pontoon.\",makes a look at the horses boot.,angle towards his mirror.,stops him.,gold0-orig,pos,unl,unl,pos,pos,\"Someone raises the shovel above his head and brings it crashing down on someone, still hanging from the protruding gun.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5093,Someone loses his grip and now hangs from the gun suspended only by the strap of his leather pouch. He,\"screams as the gun scrapes against the cliff wall, sending stones tumbling down over him.\",\"turns toward the gap, opens the door, and aims at it.\",\"buttons onto his own earpiece, then slides down a flight of steps onto one of someone's busy contraptions.\",\"takes his phone out, hauls up to his car, flings it down his shoulder and kicks his leg over the bottle.\",\"pulls out his wrist, sees them's the prisoners him on the size of a barrel.\",gold0-orig,pos,unl,unl,unl,unl,Someone loses his grip and now hangs from the gun suspended only by the strap of his leather pouch.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5086,He grabs onto the shredded gun protruding from the side of the tank. Someone,looks down at someone and smiles smugly.,ducks out under sight of an alien.,clears its throat and looks down at it.,\", someone points at his stomach and he overtakes the two scientists.\",hands to the phone then heads into the pantry.,gold1-orig,pos,unl,unl,unl,unl,He grabs onto the shredded gun protruding from the side of the tank.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5090,\"Someone climbs up out of the tank, followed by someone. Someone\",appears and pulls someone down.,pushes someone off and end up in the shadows.,skyscrapers to an opening lakeside appear.,watches her as closely as someone goes.,looks up at the three men.,gold1-orig,pos,unl,unl,unl,pos,\"Someone climbs up out of the tank, followed by someone.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5087,Someone looks down at someone and smiles smugly. The tank,is approaching a cliff wall.,heaves its way to the deck of the cubicles.,raises his arms in the air.,rises from its top.,,gold0-orig,pos,unl,unl,unl,n/a,Someone looks down at someone and smiles smugly.,The tank\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5083,Someone fires the tank gun at the troop truck. Soldiers,fly into the air.,load a grenade into someone's harness shelf.,are thrown away from cigarette smoke.,get out of the car.,snap off the wheels of the biker.,gold0-orig,pos,unl,unl,pos,pos,Someone fires the tank gun at the troop truck.,Soldiers\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5089,\"Someone now swings a shovel at someone, smashing at his hands. Someone\",\"climbs up out of the tank, followed by someone.\",is chased by the bottom of the alley horns.,grabs a ringing mace.,\"climbs the stairs, his jacket slung over his shoulder.\",shoots someone through the nose but someone yanks the spiderman off the ground.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone now swings a shovel at someone, smashing at his hands.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5085,The explosion knocks someone off the tank and onto the tread. He,grabs onto the shredded gun protruding from the side of the tank.,\"watches from a scaffold, and moves over to a compartment, lying unconscious on the floor.\",\"carries it out onto the roof, knocking up a gallon pressure vent.\",\"ducks, then in his hand to snap his shirt.\",undoes the straps and mounts a explosion.,gold1-reannot,pos,unl,unl,unl,pos,The explosion knocks someone off the tank and onto the tread.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70624,5094,\"He screams as the gun scrapes against the cliff wall, sending stones tumbling down over him. Someone\",\"knocks someone into a pile of boxes, then punches him in the face.\",is dragged astride the iceberg.,seek bales connect on top of his barley and surround the pearl.,stops her by the gates.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He screams as the gun scrapes against the cliff wall, sending stones tumbling down over him.\",Someone\nlsmdc1027_Les_Miserables-6255,10937,Someone and the urchins are in the elephant. Soldiers,march down the street followed by cavalry.,smashes a satellite bird.,hurtle through a row of rocks into the stream.,are climbing through the stone roof in their home.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and the urchins are in the elephant.,Soldiers\nlsmdc1027_Les_Miserables-6255,10938,Soldiers march down the street followed by cavalry. Behind them,is the large black hearse for someone.,is a full fire engine.,is large black men firing shots.,is escorted by someone.,are two attacking policemen with their swords.,gold1-reannot,pos,unl,unl,unl,unl,Soldiers march down the street followed by cavalry.,Behind them\nanetv_9K97gmkVbyQ,15511,She puts and object into a bag while pointing to a box next to her. She,stuffs paper into the bag and ends by tying a bow on top.,continues to perform the process and ends with it as well as pushing the object back and forth.,lets her walk in a yard as the feather pans into the clip.,continues speaking to the camera and then continues to wrap her arms around her.,,gold0-orig,pos,unl,unl,unl,n/a,She puts and object into a bag while pointing to a box next to her.,She\nanetv_9K97gmkVbyQ,15510,A woman is seen speaking to the camera while grabbing various bags and laying them out. She,puts and object into a bag while pointing to a box next to her.,continues mixing around herself and ends by speaking to the camera and presenting the container to her.,mixes the ingredients together and shows images for mixing them in a bowl.,sees that one of the pictures is still shot.,jumps up and down a bit while more pictures are shown of the box.,gold0-reannot,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while grabbing various bags and laying them out.,She\nlsmdc3046_LARRY_CROWNE-21398,18657,\"Standing in a closet of mostly empty hangers, someone hangs up his red U - Mart polo shirt. He\",\"stares at it for a moment, then slides the closet door shut.\",\"glances up, still pretending to sell.\",them parks in a sushi cafe.,\"smiles in contempt, welcomes the source of his irritation.\",picks up his briefcase and approaches.,gold0-orig,pos,unl,unl,unl,unl,\"Standing in a closet of mostly empty hangers, someone hangs up his red U - Mart polo shirt.\",He\nlsmdc3046_LARRY_CROWNE-21398,18659,Someone flips his cellphone shut and rests this chin in his hand. Now at a bathroom sink he,turns on the cold - water tap.,walks out of the bedroom and glances at the mirror.,spots a joint on a table.,pops a pill in the mouth.,,gold0-orig,pos,unl,unl,pos,n/a,Someone flips his cellphone shut and rests this chin in his hand.,Now at a bathroom sink he\nlsmdc3046_LARRY_CROWNE-21398,18656,\"An open doorway shows a glimpse of someone shoveling through the house. Standing in a closet of mostly empty hangers, someone\",hangs up his red u - mart polo shirt.,finds someone standing in an indoor garage.,crosses to a door and steps up.,spots a woman outside.,,gold0-orig,pos,unl,pos,pos,n/a,An open doorway shows a glimpse of someone shoveling through the house.,\"Standing in a closet of mostly empty hangers, someone\"\nlsmdc3046_LARRY_CROWNE-21398,18660,\"Now at a bathroom sink he turns on the cold - water tap. Later, he\",\"gazes worriedly into the mirror, as he blots his skin with a towel.\",\"returns to his son's apartment, finds the bug beside the open window, and trim the room.\",enters the patio with two cupped hands.,paints a list of what he might do.,reaches a door overlooking the naked body of water.,gold0-orig,pos,unl,unl,unl,unl,Now at a bathroom sink he turns on the cold - water tap.,\"Later, he\"\nlsmdc3046_LARRY_CROWNE-21398,18658,\"He stares at it for a moment, then slides the closet door shut. Someone\",flips his cellphone shut and rests this chin in his hand.,\"enters its frame, for a moment just past people, coming to the door.\",looks unlit in the open trash can.,softly fills a corridor with various screams of coke.,climbs to the front porch and presses a hand on the steering wheel.,gold0-orig,pos,unl,unl,unl,unl,\"He stares at it for a moment, then slides the closet door shut.\",Someone\nlsmdc3046_LARRY_CROWNE-21398,18655,\"Now on his back, he presses his hands to his face. An open doorway\",shows a glimpse of someone shoveling through the house.,shows the vast living room of a room.,shows a wrestler grabbing someone on his knees.,shows an upward view of the lake.,lit up even in the same night sky.,gold1-reannot,pos,unl,unl,unl,unl,\"Now on his back, he presses his hands to his face.\",An open doorway\nlsmdc3046_LARRY_CROWNE-21398,18661,\"Later, he gazes worriedly into the mirror, as he blots his skin with a towel. Now he\",holds a pair of slacks on an ironing board.,lies with a family passing over a small hill.,\"lies in bed with wide eyes, pulled back, and his eyes on hers.\",walks up to his father's window to find a brunette woman in a white sweater.,,gold0-reannot,unl,unl,unl,unl,n/a,\"Later, he gazes worriedly into the mirror, as he blots his skin with a towel.\",Now he\nlsmdc3046_LARRY_CROWNE-21398,18654,\"Later he lies awake on his stomach, with one - half of his face against a pillow. Now on his back, he\",presses his hands to his face.,rides past them onto the lift.,dabs his head with a towel.,slumps back onto the couch.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Later he lies awake on his stomach, with one - half of his face against a pillow.\",\"Now on his back, he\"\nlsmdc1055_Marley_and_me-96550,1218,Marley's chewing a toy on the sofa. He,hands a bag of dog food to someone.,closes his eyes and strokes the boy's hair out.,snags his cue stick for the opposing club.,fills the store into a card.,,gold1-reannot,pos,unl,unl,unl,n/a,Marley's chewing a toy on the sofa.,He\nanetv_kZB7yxzHOrA,19617,\"The woman stands on the edge of the diving board with her back from the audience, jumped backwards, flipping over as she fall in the water. The woman in swimsuits\",walked towards the end of the diving board bounced and dive into the pool.,is talking what to do.,\"watch as the gymnast performs a outfit, then lands and dismounts by her performance.\",\"run past the taller woman, who wears a silky red dress and short athletic hair and gray stands.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The woman stands on the edge of the diving board with her back from the audience, jumped backwards, flipping over as she fall in the water.\",The woman in swimsuits\nanetv_kZB7yxzHOrA,19618,\"The woman in swimsuits walked towards the end of the diving board bounced and dive into the pool. Kids are lining up, they are holding flags, a female kid dive into water from the edge of the diving board, a woman\",is hugging the man as they jumped to the pool.,falls after her.,and girl started to jump on the water.,is standing on the edge of the diving edge.,,gold0-orig,pos,unl,unl,unl,n/a,The woman in swimsuits walked towards the end of the diving board bounced and dive into the pool.,\"Kids are lining up, they are holding flags, a female kid dive into water from the edge of the diving board, a woman\"\nlsmdc0017_Pianist-56172,19452,\"In bright sun, people march in a column, four abreast, under the command of two Jewish foremen, guarded by two German policemen. They\",are being marched out of the ghetto gates.,\"hit them with a boom one web, which takes a break of sir someone.\",skim across the screen.,emerge with bank sacks and read the helmeted person.,,gold1-orig,pos,unl,unl,unl,n/a,\"In bright sun, people march in a column, four abreast, under the command of two Jewish foremen, guarded by two German policemen.\",They\nanetv_qm1dudWLlUg,15169,A man is drinking a beer during a game while others look on and smile. Several people are watching the match and the man drinking a beer,looks at the camera and smiles.,while others watch him.,is in front of him eating sand.,\", then three two shot badminton comes up for a while.\",says a few times and hugging each other to other people.,gold0-orig,pos,unl,unl,unl,unl,A man is drinking a beer during a game while others look on and smile.,Several people are watching the match and the man drinking a beer\nlsmdc3077_THE_VOW-35666,9814,Someone gives a puzzled shrug. Someone,\"waves at a blonde, who averts her gaze.\",\"turns out a stool, turns, and takes a drink.\",does some kung fu moves and hold the brushes are approached by his forehead.,walks stiffly past the ambulance.,hangs his head in a veiled gesture.,gold1-orig,pos,unl,unl,pos,pos,Someone gives a puzzled shrug.,Someone\nlsmdc3077_THE_VOW-35666,9813,Someone and someone stare at him with blank expressions. Someone,gives a puzzled shrug.,lies on his throne.,shakes her head demurely.,looks at him tensely.,,gold0-orig,pos,unl,unl,pos,n/a,Someone and someone stare at him with blank expressions.,Someone\nlsmdc3077_THE_VOW-35666,9815,Someone slaps someone on the back. Someone,\"observes the group, tentatively.\",steps up on someone.,waits as someone sees someone's wedding ring.,watches someone stagger out.,comes out of someone's studio.,gold1-reannot,pos,unl,unl,pos,pos,Someone slaps someone on the back.,Someone\nanetv_kXP1tgr476c,13670,The man is sitting on the ground and he is using a brown towel to polish the man's shoes. He also puts liquid onto a small brush and he,puts it on the man's shoes.,begins wiping it with a cloth.,shake it and tie it back and shakes it.,sprays it all over the dog.,uses the spray bottle to wipe out the side.,gold0-orig,pos,unl,unl,unl,unl,The man is sitting on the ground and he is using a brown towel to polish the man's shoes.,He also puts liquid onto a small brush and he\nanetv_kXP1tgr476c,13669,This man is sitting outdoors polishing another man's shoes and neither one of their faces are shown. The man is sitting on the ground and he,is using a brown towel to polish the man's shoes.,is done but is n't a pair of sneakers getting there.,is looking towards the camera along the bow of the man's helmet.,\"stretches her legs, throwing the young woman on a white top shirt and dropping the baton and starts flip on a floor.\",\"has one side of his feet cut with, a grey cross.\",gold0-orig,pos,unl,unl,unl,unl,This man is sitting outdoors polishing another man's shoes and neither one of their faces are shown.,The man is sitting on the ground and he\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17936,Someone leads the way inside. People,\"enter, their heels clicking across the marble floor.\",\"are at the top of an old block, looking in the tall, dark room.\",\"enter and walk down the hall, then continue to dance.\",walk down the long hall toward a large casket.,are sitting at a table.,gold0-orig,pos,unl,unl,pos,pos,Someone leads the way inside.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17933,Someone leads people into the large piazza. People,walk about and sit at tables in front of a large building.,stand facing the nearby fence.,drive as lightning blocks the bodhi leaves in the street and catches up to someone.,sneak past him and destroy the armored suit.,climb over the cliffs.,gold1-orig,pos,unl,unl,unl,unl,Someone leads people into the large piazza.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17930,\"As they cross over a bridge to the opposite side of the canal, someone steals a flower from a street vendor. He\",holds it out to someone.,turns away and looks out the door in front of someone.,\"hands it to someone, drains his ice glass and smirks.\",drives the vehicle past a row of obstacles and pins after the lake.,shakes someone's hand.,gold0-orig,pos,unl,unl,unl,pos,\"As they cross over a bridge to the opposite side of the canal, someone steals a flower from a street vendor.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17938,\"We notice, along with people, that the library contains many stained - glass windows. She\",indicates four huge marble columns that go from floor to ceiling.,bounces glasses down on a cable.,\"moves faster, pressing against the grass.\",makes it across the living room to the other and at guests having lunch.,,gold0-orig,pos,unl,unl,unl,n/a,\"We notice, along with people, that the library contains many stained - glass windows.\",She\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17937,\"People enter, their heels clicking across the marble floor. We\",\"notice, along with people, that the library contains many stained - glass windows.\",have given the move who saves them.,fall off the mountain.,stop on the staircase.,\"have opened their door to someone, as someone bursts into them.\",gold0-orig,pos,unl,unl,pos,pos,\"People enter, their heels clicking across the marble floor.\",We\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17927,\"The Woman, someone, extends her hand to someone. Someone\",registers a look of surprise.,leaps out someone and uses a bomb to shadow her.,is cutting the's hair.,leads the penguins over to the turret.,appears at the tree's edge.,gold0-orig,pos,unl,unl,unl,unl,\"The Woman, someone, extends her hand to someone.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17932,She hands a slip of paper to someone. Someone,extends the scrap of paper to someone.,peeks at his wife then flashes a hungry smile and smiles.,eyes the girl taking the book back.,sits en side to side.,thrusts her hands forward.,gold1-orig,pos,unl,unl,unl,pos,She hands a slip of paper to someone.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17934,People walk about and sit at tables in front of a large building. They,have arrived at the front steps of the library.,hit the catwalk as fast as he can.,sit upside down to their seats.,begin to play tennis on a high court on a court.,,gold0-orig,pos,unl,unl,unl,n/a,People walk about and sit at tables in front of a large building.,They\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17935,They have arrived at the front steps of the library. Someone,leads the way inside.,is at his brother - in - law.,\"sticks his head against his office, then turns to them.\",steps up behind someone and turns.,wears a red bow.,gold0-orig,pos,unl,unl,pos,pos,They have arrived at the front steps of the library.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17940,Someone lingers for a moment in front of the window. Someone,whips out the grail diary and opens it to the sketch he noticed in the airplane.,\"grabs someone's hand like someone in the tug, and watches him crowd.\",\"moves towards him, then lowers him a few steps then, then walks over to the door.\",allows someone to find a fifties.,,gold1-orig,pos,unl,unl,unl,n/a,Someone lingers for a moment in front of the window.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17925,\"Someone grins, enjoying the repartee. The Woman\",\"turns to someone, who tips his hat.\",\"of the festival, the joyful adventure of women's, is surrounded by three men.\",\"leaps from a yellow dining table beside the instructor, who shifts her uncertain gaze.\",\"on the hat stands hunched, waving her arms.\",simply sits with her head in his lap.,gold1-orig,pos,unl,unl,unl,pos,\"Someone grins, enjoying the repartee.\",The Woman\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17926,\"The Woman turns to someone, who tips his hat. The Woman, someone,\",extends her hand to someone.,rides up on the horse in her running uniform.,makes a small - tulle roll over her teammate's shoulder and ledge.,finds a bundle of floating books.,starts towards someone.,gold0-orig,pos,unl,unl,unl,pos,\"The Woman turns to someone, who tips his hat.\",\"The Woman, someone,\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17939,She indicates four huge marble columns that go from floor to ceiling. Someone,lingers for a moment in front of the window.,leaps onto someone's knee.,looks at the table in her hand.,drops into the snow ascending down.,sets her necklace inside.,gold1-orig,pos,unl,unl,unl,pos,She indicates four huge marble columns that go from floor to ceiling.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17928,Someone registers a look of surprise. People,\"walk along the narrow canal, lined with buildings on either side.\",form him in one bed.,snap through the hallway and starts off.,move across the muddy tunnel with the approaching below.,,gold0-orig,pos,unl,unl,unl,n/a,Someone registers a look of surprise.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17922,A limo is parked beside a private airliner that bears someone corporate logo. Someone,peers inside to people.,removes a cable from the wheeling paper cart.,stares lovingly at him affectionately.,plops down on a bike.,watches someone skateboard from the window.,gold1-reannot,pos,unl,unl,unl,unl,A limo is parked beside a private airliner that bears someone corporate logo.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17929,\"People walk along the narrow canal, lined with buildings on either side. As they cross over a bridge to the opposite side of the canal, someone\",steals a flower from a street vendor.,eyes a poker charts fiving.,pulls up a key.,bends to the top of the steps.,\"makes his way through the throng, leaning against a line.\",gold0-reannot,pos,unl,unl,unl,unl,\"People walk along the narrow canal, lined with buildings on either side.\",\"As they cross over a bridge to the opposite side of the canal, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17924,People disembark from the Water Bus onto the Boat Landing as other Gondoliers steer their boats in the water. Suddenly a woman,comes up to him.,bus comes into the clearing.,is dragged along the pier.,floats through the ocean to find someone watching the night.,,gold0-reannot,pos,unl,unl,unl,n/a,People disembark from the Water Bus onto the Boat Landing as other Gondoliers steer their boats in the water.,Suddenly a woman\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70066,17931,He holds it out to someone. She,hands a slip of paper to someone.,hands open the champagne before shutting himself in.,\"looks down into the grimhold, then smiles.\",\"gets to his feet and picks up the knife, giving it numerous acknowledgment.\",\"is feeling for her pleading eyes, but still able to smile at him.\",gold0-reannot,pos,unl,unl,unl,pos,He holds it out to someone.,She\nlsmdc1046_Australia-91099,18270,The boy stands up on the prow of the boat and grins. He,jumps up and down excitedly and runs off the boat onto the jetty.,misses the boat while climbing out of it.,gradually jumps up and down onto the sail on the sail.,does flips with the board but surfers jump into the water.,\"paddles in briefly, this time causing a flip into the water and smile.\",gold0-orig,pos,unl,unl,unl,unl,The boy stands up on the prow of the boat and grins.,He\nlsmdc1046_Australia-91099,18268,She runs down the peer as the boat draws alongside. People,peer through the smoke.,watch her and snapping back.,stand and examine its being damaged legs.,drives away her family.,,gold0-orig,pos,unl,unl,unl,n/a,She runs down the peer as the boat draws alongside.,People\nlsmdc1046_Australia-91099,18271,He jumps up and down excitedly and runs off the boat onto the jetty. He,runs up the wooden steps to the upper level of the wharf.,\"soars over the pitch past tidying gray man, who is black - suited.\",stands on the stands with the fish is still attached and moving around with the oars.,struggles to get in the water and is driven down the river or riding on boat.,prods him in the face.,gold0-orig,pos,unl,unl,unl,unl,He jumps up and down excitedly and runs off the boat onto the jetty.,He\nlsmdc1046_Australia-91099,18269,People peer through the smoke. The boy,stands up on the prow of the boat and grins.,sits on the rim of the bike and hands the crippled driver to him.,\"looks up, through the crowd, followed by the band.\",\"jumps on a balcony, picks up a backpack and scurries away past the rear view mirror.\",leans back - and seizes the money in his hand.,gold1-reannot,pos,unl,unl,unl,unl,People peer through the smoke.,The boy\nlsmdc1046_Australia-91099,18267,Someone stands at the stern of the boat. She,runs down the peer as the boat draws alongside.,pauses and stares at the snitch as it tilts.,\"switches on a light above someone, then begins wearing her long sleeved t - shirt.\",cower with the oar.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone stands at the stern of the boat.,She\nlsmdc3030_GROWN_UPS-14095,18639,He flutters his hands against someone's face. He,walks his fingers over someone's forehead.,walks past the car with his pistol in the air.,drops the top of the worktop.,raises his head at the wolf.,puts the string to his ear.,gold0-orig,pos,unl,unl,unl,unl,He flutters his hands against someone's face.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3463,\"Someone looks at his unresponsive mother. Now in a snow dusted cemetery, the boy and his father\",stand at her grave.,sit down the burning bed.,skateboard through the driveway.,emerge from the house.,run at the edge of the forest.,gold0-orig,pos,unl,unl,unl,unl,Someone looks at his unresponsive mother.,\"Now in a snow dusted cemetery, the boy and his father\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3461,Someone climbs down from the loft. He,\"lies down beside his mother, his leather bound journal in hand.\",arrives with the palatial castle and begins to jump over.,\"removes her glasses open, and puts lipstick across her lips.\",drapes itself on top of a dark - haired woman.,hammers up two bongos as she eyes it.,gold1-orig,pos,unl,unl,unl,unl,Someone climbs down from the loft.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3462,The boy's gaze remains fixed on the open journal. Someone,looks at his unresponsive mother.,completes a rubiks cube.,holds someone's handkerchief out.,shakes someone's hand round.,is moving towards the shore.,gold1-orig,pos,unl,unl,unl,pos,The boy's gaze remains fixed on the open journal.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1836,3460,The priest heads off and someone follows leaving his wife alone in bed. Someone,climbs down from the loft.,holds his wife up at her side.,smiles broadly as someone reads on.,\"gently yanks his ladies head from him, shutting the door behind him.\",rides down in the tube.,gold1-reannot,pos,unl,unl,unl,unl,The priest heads off and someone follows leaving his wife alone in bed.,Someone\nlsmdc1043_Vantage_Point-89222,52,He puts a document in a folder and slams it shut. Someone,stares gravely out of the window.,\"remains at the table, which reads.\",\"launches, sullenly, shaded foreground and rolls down the street.\",is hit.,sits at a computer.,gold0-orig,pos,unl,unl,pos,pos,He puts a document in a folder and slams it shut.,Someone\nlsmdc1043_Vantage_Point-89222,55,Government agents stand watch outside the glass wall of the Hotel Vesta. Someone,gets out of his limo in a bright empty parking lot dotted with armed agents.,snorts from an opposing player and sends them sprawling nearby.,\"leans into a darkened metal door, and an umbrella open on fire.\",run with one man bravely sweeping their hands.,is military trolleys and cases with bikes.,gold0-orig,pos,unl,unl,unl,pos,Government agents stand watch outside the glass wall of the Hotel Vesta.,Someone\nlsmdc1043_Vantage_Point-89222,54,A seething crowd fills the Plaza someone. The double's motorcade,passes beneath the watchful snipers.,advances together onto a balcony from the enamel impact.,pulls into the air awning.,drifts even more desert posh as he passes over the curved stone walls.,passes through the mass of trees.,gold0-orig,pos,unl,unl,unl,pos,A seething crowd fills the Plaza someone.,The double's motorcade\nlsmdc1034_Super_8-8066,5186,He sets the camera up to film the crash site in the distance. News crew helicopters,hover in the air above the scene.,places the clothes at the base of a train.,\"descend, high rise up higher.\",shows the people riding throughout the sunset.,leads the man on a slack line at the beach part.,gold0-orig,pos,unl,unl,unl,unl,He sets the camera up to film the crash site in the distance.,News crew helicopters\nlsmdc1034_Super_8-8066,5187,News crew helicopters hover in the air above the scene. The film makers,look down at the destruction.,cuts up two creeping cars.,pop their story in silhouette.,glides out on a soft smooth surface.,regards the agents mirthfully.,gold0-orig,pos,unl,unl,unl,pos,News crew helicopters hover in the air above the scene.,The film makers\nlsmdc3007_A_THOUSAND_WORDS-3815,7087,\"With the sun shining brightly overhead, someone walks outside. His shadow\",falls across leaves lying on the grass.,bounces off the huge rock.,moves through the wall at the end of the street.,shines across a stairway over it.,moves behind her and cranes his neck.,gold0-orig,pos,unl,unl,unl,pos,\"With the sun shining brightly overhead, someone walks outside.\",His shadow\nlsmdc3007_A_THOUSAND_WORDS-3815,7090,\"Someone gazes up at the bare branches, then begins to cry. Eyes shut he\",reaches out and grabs on to the tree's trunk.,\"swings her feet around his right, hurls them back against the wall, and flings her eyes wide, then lets himself lose.\",reaches out and takes hold of dragon's chest.,hangs his head as he walks away from someone's shadowy children.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone gazes up at the bare branches, then begins to cry.\",Eyes shut he\nlsmdc3007_A_THOUSAND_WORDS-3815,7091,Eyes shut he reaches out and grabs on to the tree's trunk. Someone,leans back and gazes up at the branches.,hops with something and gets up from the driver seat.,\"shoots someone, then hesitates.\",\"looks at someone, unsure what he is just saying.\",is lifted as he watches them.,gold0-orig,pos,unl,unl,pos,pos,Eyes shut he reaches out and grabs on to the tree's trunk.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7086,\"The next morning, someone awakes. With the piece of tape still covering his mouth, he\",sits up then stands and stares at the tree in his backyard.,talks about an hour later.,shuffles along a set of cubicles.,holds it up fiercely.,steers a feather around to the side.,gold1-orig,pos,unl,unl,unl,unl,\"The next morning, someone awakes.\",\"With the piece of tape still covering his mouth, he\"\nlsmdc3007_A_THOUSAND_WORDS-3815,7082,Someone stands and tackles someone to the floor. Someone,\"lies motionless, as someone rolls him onto his back.\",holds himself up next to him as he sits upright.,\"stands, sweating and looks, falling off and falling.\",\"jumps over to the nearby cockpit, slamming the cabinet door shut.\",\"fires angrily to someone, who holds up his belongings.\",gold0-orig,pos,unl,unl,unl,unl,Someone stands and tackles someone to the floor.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7088,His shadow falls across leaves lying on the grass. Someone,steps to the base of the tree and drops to his knees.,\"looks up, his hands growing smaller.\",picks up a purse and pulls him.,lifts it out to an industrial cardboard box tucked beneath and reads.,,gold0-orig,pos,unl,unl,unl,n/a,His shadow falls across leaves lying on the grass.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7079,\"Someone tries to clap his hands over someone's mouth, but someone pushes him away. Someone\",shoves someone into some shelves.,stands unsteadily in their lifeboat.,gets up and takes it.,chases his friend into the corner.,pushes himself up on his elbows and faces someone.,gold0-orig,pos,pos,pos,pos,pos,\"Someone tries to clap his hands over someone's mouth, but someone pushes him away.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7083,\"Someone lies motionless, as someone rolls him onto his back. Someone\",\"punches someone, knocking him out cold.\",pokes a bullet through his mouth with a radio that flickers with his wand.,'s eyes fly helplessly as the athlete approaches his friends.,gets to his feet and spots the blanket of people walking around someone.,,gold1-orig,unl,unl,unl,unl,n/a,\"Someone lies motionless, as someone rolls him onto his back.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7081,\"Someone throws someone into a wall, then limps away. Someone\",stands and tackles someone to the floor.,major gets a rolling traffic on his left arm.,takes the letter from someone.,roves out of the pedestrians as he approaches.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone throws someone into a wall, then limps away.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3815,7085,Someone finds a roll of duct tape and wraps up the phone. He,tears of a piece of tape and covers someone's mouth with it.,\"licks hunches, then snips someone's crotch with a whip.\",\"comes through the door, as a train paces forward on as someone tries to make out.\",slices off the plastic journal and finds it filled with photos.,throws a tissue in a drawer.,gold0-reannot,pos,unl,unl,unl,unl,Someone finds a roll of duct tape and wraps up the phone.,He\nlsmdc3007_A_THOUSAND_WORDS-3815,7089,Someone steps to the base of the tree and drops to his knees. Someone,\"gazes up at the bare branches, then begins to cry.\",picks up his watch and yanks rope around his neck.,wakes with a start and scratches the edge of his foot.,places his knife on fire flaming fish.,is slowly positioning himself to the ground.,gold1-reannot,pos,unl,unl,unl,pos,Someone steps to the base of the tree and drops to his knees.,Someone\nanetv_bMJlN9iPpCI,4229,The two speak with one another that leads into more clips of sunscreen and people putting it on. The woman and man,finish by speaking more.,continue playing with one another and end by pulling on two presents.,continue using the equipment to keep up together over and over again and speaking to the camera.,show how to pose as well as everyone standing outside.,,gold0-orig,pos,unl,unl,unl,n/a,The two speak with one another that leads into more clips of sunscreen and people putting it on.,The woman and man\nanetv_bMJlN9iPpCI,11319,Various clips are shown of people putting on sunscreen followed by news hosts speaking to the camera. The hosts,continue speaking to one another and ends with the anchor speaking to the camera.,meats to spread items in a bowl.,begin polishing the table with a pumpkin and peeling off the cake.,speak a bit of the story in a news deputy.,speaking to one woman and outside speaking to the camera in a setting.,gold0-orig,pos,unl,unl,unl,unl,Various clips are shown of people putting on sunscreen followed by news hosts speaking to the camera.,The hosts\nanetv_bMJlN9iPpCI,4228,A man is seen putting sunscreen on herself and a child and leads into news anchors hosting a show. The two,speak with one another that leads into more clips of sunscreen and people putting it on.,continue skiing while text up the screen followed by a man speaking.,continue moving around and over again and end by pushing others.,watch and lead to one another while using the other riding around and 2007 with one another.,continue speaking to the camera while singing and smiling to the camera as well as speaking to the camera.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen putting sunscreen on herself and a child and leads into news anchors hosting a show.,The two\nanetv_sqcJOpPrexQ,9838,Introductory text scenes are shown explaining the video context. A hand,holds and demonstrates some sort of cutting tool.,sits with the people on a wall.,holds a score choppy on a board.,stands on the water fixing another vent.,,gold1-orig,pos,unl,unl,unl,n/a,Introductory text scenes are shown explaining the video context.,A hand\nanetv_sqcJOpPrexQ,9839,A hand holds and demonstrates some sort of cutting tool. The tool,is used to cut apart a piece of roofing.,flips over a box of parts and uses tape on the product.,uses a ground tool to help techniques.,is used by the blade kick.,is performed luscious by the woman and another type of ginger.,gold0-orig,pos,unl,unl,unl,unl,A hand holds and demonstrates some sort of cutting tool.,The tool\nanetv_sqcJOpPrexQ,9840,The tool is used to cut apart a piece of roofing. The hand,flips over the roofing briefly before placing it back down.,has a sharpener and an iron down.,is a tinder handle.,uses cards in ink movements.,peels some more from the wall seam.,gold1-orig,pos,unl,unl,unl,unl,The tool is used to cut apart a piece of roofing.,The hand\nanetv_sqcJOpPrexQ,16232,\"A hand is now holding the tool, showing it at different angles and then begins using it to cut an object to demonstrate how it cuts. The person then\",picks up the piece it just cut and puts it back down.,cuts the knife's center and shows the bar close up and looking over his shoulder.,adjusts all of the roof and begins to use metal foot tools to do it over out properly.,measures on a hill in the end and walks to the table on a pair of pointy shears.,inserts a small box into tweezers and cuts out more the other lists.,gold0-orig,pos,unl,unl,unl,unl,\"A hand is now holding the tool, showing it at different angles and then begins using it to cut an object to demonstrate how it cuts.\",The person then\nanetv_7toItxBIVtk,17713,A large group of people are seen dancing around a room with a woman leading in front. The women,dance all around the room following the woman in front.,play to dance while the camera captures their movements.,continue dancing with one another while others watch on the side.,continue to dance around one another while others watch her on the side.,,gold0-orig,pos,unl,pos,pos,n/a,A large group of people are seen dancing around a room with a woman leading in front.,The women\nanetv_7toItxBIVtk,17714,The women dance all around the room following the woman in front. The group,continues dancing with one another and ends by holding a pose.,are dancing and dancing together dancing.,dances and waits and the violinist smiles again.,continues to the dance who pushes the chair back and forth.,dance slowly around one another and end by looking back.,gold1-orig,pos,unl,unl,unl,pos,The women dance all around the room following the woman in front.,The group\nanetv_7toItxBIVtk,7939,Seven women are in an empty dance studio practicing belly dancing with each other. All of them have on black except for the instructor who is dressed in a pink bra and they,begin moving their hips and pulling their hands up.,cheering the performer who was vacuuming the floor in a pew alone with one shoe in the middle and then helped by herself as she,are demonstrating routine that playing percussion instruments and dancing in special protective.,continue standing on the stage together.,,gold0-orig,pos,unl,unl,pos,n/a,Seven women are in an empty dance studio practicing belly dancing with each other.,All of them have on black except for the instructor who is dressed in a pink bra and they\nanetv_7toItxBIVtk,7940,\"All of them have on black except for the instructor who is dressed in a pink bra and they begin moving their hips and pulling their hands up. After some time, they\",begin to add in the feet and doing 180 degree turns with their body and moving forward and backwards.,begin moving their hands through ballet chi at a time.,wear and begin back to lay down and kind of fun for the fitness.,\"spin gracefully and does a series of girls jumping, spreading their legs as they dance back and forth.\",drop down onto around their legs and stand together.,gold0-reannot,pos,unl,unl,unl,unl,All of them have on black except for the instructor who is dressed in a pink bra and they begin moving their hips and pulling their hands up.,\"After some time, they\"\nanetv_MF3VcmCCgzY,5250,A man in a white belt demonstrates martial arts moves using knee bends. A third man in a black belt,\"demonstrates martial arts moves exhibiting floor work, leg swipes and high kicks.\",does rope back and slides two knees from the wood knee and rhythmically as he lands and does a second kick.,stands and puts the ring in the middle.,seizes a third stick by some other prison.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a white belt demonstrates martial arts moves using knee bends.,A third man in a black belt\nanetv_MF3VcmCCgzY,5248,\"One woman and two men, wearing white pants, white shirt and black and white belts demonstrate martial arts moves, barefoot, on a large patch of grass in front of a body of water and a city scape of buildings. A woman with blonde hair in a ponytail and a black belt,\",demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork.,\"is standing beside her, knitting again and then starts start braiding them in her hair.\",\"has a mobile phone, a chair and a makeup guy and an orange woman sitting on a bench.\",\"manages to pass her and cigarette growing while looking back in place, from the needle but or something written very gently.\",is holding a cigarette in her hand and talking in a victorian style.,gold0-orig,pos,unl,unl,unl,unl,\"One woman and two men, wearing white pants, white shirt and black and white belts demonstrate martial arts moves, barefoot, on a large patch of grass in front of a body of water and a city scape of buildings.\",\"A woman with blonde hair in a ponytail and a black belt,\"\nanetv_MF3VcmCCgzY,5249,\"A woman with blonde hair in a ponytail and a black belt, demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork. A man in a white belt\",demonstrates martial arts moves using knee bends.,is trying to chop a wall in an office using wall bars to split up.,starts dancing with one another and spin her to show the arms of the other woman.,sits down next to someone and sits up straight.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman with blonde hair in a ponytail and a black belt, demonstrates martial arts moves first exhibiting shoulder and arm moves and footwork.\",A man in a white belt\nlsmdc3062_SORCERERS_APPRENTICE-30795,1402,Someone takes a deep breath and chases the mugger. The mugger,is in the revolving gate.,reflects off the laser beam.,gathers as the rich animal descends the tunnel.,submerges his face over his own body.,knocks across his rear.,gold1-orig,pos,unl,unl,unl,pos,Someone takes a deep breath and chases the mugger.,The mugger\nlsmdc1046_Australia-91106,4382,Someone points and she turns slowly. Their eyes meet and they,walk slowly towards one another.,pat each other on the head.,turn to watch them race.,enjoy shaped ice cream.,wrap their arms around each.,gold0-orig,pos,unl,unl,unl,pos,Someone points and she turns slowly.,Their eyes meet and they\nlsmdc1046_Australia-91106,4385,\"They break apart and look joyfully at one another, then kiss. Someone\",runs up and hugs them both.,laughs as someone watches the cut off.,\"knots her hair, and gives a spotted shrug.\",\"'s mitt, the round face, holds it up.\",looks at the other girls.,gold1-orig,pos,unl,unl,unl,pos,\"They break apart and look joyfully at one another, then kiss.\",Someone\nlsmdc1046_Australia-91106,4384,They cling to each other tears running down their cheeks. They,\"break apart and look joyfully at one another, then kiss.\",fly off the top of the mountain.,\"make their way along a quaint, smooth slope.\",dip their hands behind their heads.,jump toward an open audience.,gold0-orig,pos,unl,unl,pos,pos,They cling to each other tears running down their cheeks.,They\nlsmdc1046_Australia-91106,4383,\"Someone frowns in disbelief, then smiles and they embrace. They\",cling to each other tears running down their cheeks.,\"turns to his left, the flames of his clock block beneath the bed, over the devastation.\",take another bunch and move themselves so they are able to stop short.,\"turn to look at someone, who gulps.\",\"watch briefly, past her.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone frowns in disbelief, then smiles and they embrace.\",They\nlsmdc1046_Australia-91106,4386,The army sergeant sounds the horn of his truck and smiles. Someone,stops and stares at people and the boys.,reaches the main camera of the alley and wrestles with his cord.,\"holds the flag for someone, just holding someone and his helmet.\",steps across it revealing his disguised suit.,,gold1-reannot,pos,unl,unl,unl,n/a,The army sergeant sounds the horn of his truck and smiles.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84854,16367,Someone's tea was poisoned. He,shows someone her bloodstained handkerchief.,is tilting up towards green as the goblin walks away.,indicates a partially folded figure.,\"is by himself in bed, with a towel on top shoulders.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone's tea was poisoned.,He\nanetv_I5Q0DcmTs9c,12944,Man is siting in a bed playing an harmonica and an acordion. man,is sitting playing instruments in a room.,is sitting in a room playing a guitar.,is playing a keyboard.,grabs the guitar and start to talk.,is sitting in a room playing drums.,gold0-orig,pos,unl,unl,unl,unl,Man is siting in a bed playing an harmonica and an acordion.,man\nanetv_I5Q0DcmTs9c,10602,A boy with a harmonica around his neck sits holding an accordion in a bedroom. We,see a boy playing the harmonica and accordion at the same time.,york is shown in the room.,his mouth he sits down and plays a youtube show of tv playing green music.,man twists the fabric from the elder to just the left side of the bedroom.,guitar is shown holding a plate in hand.,gold0-orig,pos,unl,unl,unl,unl,A boy with a harmonica around his neck sits holding an accordion in a bedroom.,We\nanetv_I5Q0DcmTs9c,10603,We see a boy playing the harmonica and accordion at the same time. The boy,finishes and stops and looks up.,stops and puts down the guitar.,finishes and looks the smile from his face.,plays the guitar without looking to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,We see a boy playing the harmonica and accordion at the same time.,The boy\nanetv_Or7mIy83LsQ,18374,A person pass behind the teen. An athlete,performs long jump in the sand box.,falls for his large green field.,runs alongside another person and people hug.,walks towards the edge and swings on a soccer mat.,stands balanced on an open field.,gold0-orig,pos,unl,pos,pos,pos,A person pass behind the teen.,An athlete\nanetv_Or7mIy83LsQ,18375,An athlete performs long jump in the sand box. Another athlete,runs and jumps long over the sand box.,comes over his body.,is doing forward springs.,appears while standing on the sand and flipping around.,performs high jump with a training javelin competition.,gold1-orig,pos,unl,unl,unl,pos,An athlete performs long jump in the sand box.,Another athlete\nanetv_Or7mIy83LsQ,18373,\"A teen stand on a track, then he runs and jumps long on a sand box, after the teen stands and walk. A person\",pass behind the teen.,falls and then lands and lands on the white sand.,runs after the person.,in white walks to the crowd.,appears standing on the sand.,gold1-orig,pos,unl,pos,pos,pos,\"A teen stand on a track, then he runs and jumps long on a sand box, after the teen stands and walk.\",A person\nlsmdc3052_NO_STRINGS_ATTACHED-25288,8971,\"In a park near the water, someone and someone have a barbecue with some of their friends. Someone\",throws a frisbee to someone and runs at her.,lands quickly among the branches of the statues and soars one to someone.,\"the job makes about to be hidden to the surprise at, all of the boys's friends make it a little so quickly yourself\",\"drives up on a rooftops of lawn and peeks into the bedroom, raining hard in a pre - storm hill.\",walls are filled with wild and different trendy drinkers.,gold0-orig,pos,unl,unl,unl,unl,\"In a park near the water, someone and someone have a barbecue with some of their friends.\",Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25288,8972,Someone throws a Frisbee to someone and runs at her. He,wrestles her to the ground.,is on a floor trying to weave his way into the white forest.,walks the frightened dog back.,moves toward someone and steps up to her.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone throws a Frisbee to someone and runs at her.,He\nanetv_ps0a-GGomX4,4904,\"An Asian male is standing outside on a field with a long stick in his hand. All of a sudden, the boy takes off running and throws the stick clear across the field and people\",run and go measure the distance.,run far along the grass and play in the field onto the field.,shuffle off with it and dance the ball around him.,appear in the background behind him.,,gold0-orig,pos,unl,unl,pos,n/a,An Asian male is standing outside on a field with a long stick in his hand.,\"All of a sudden, the boy takes off running and throws the stick clear across the field and people\"\nanetv_ps0a-GGomX4,16611,The man picks up a javelin and runs down a track. He,throws the javelin into the field in front of him.,continues to throw the javelin and throws it again.,takes a javelin from him and spins it around for a while onto the field.,jumps off and lands in the sand several times.,,gold0-orig,pos,unl,unl,unl,n/a,The man picks up a javelin and runs down a track.,He\nanetv_ps0a-GGomX4,16610,People are standing behind a fence watching a man. The man,picks up a javelin and runs down a track.,shows how to hold the helmet with a broom.,adds a piece of paper around a triangle with the finger.,is filming the man.,,gold0-reannot,pos,unl,unl,unl,n/a,People are standing behind a fence watching a man.,The man\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10528,Someone keeps staring into the basin. He,takes a few deep breaths.,tends his small hand rest on the round table and sets it gently on a table.,takes a bite from her.,\"peers out from the hiding spot, then climbs back into his cockpit.\",jumps back to sleep.,gold0-orig,pos,unl,unl,unl,unl,Someone keeps staring into the basin.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10525,Someone removes a metal box from the burning wardrobe. He,opens the box and takes out small toys.,\"steps through the window, where two vampires pass a bearded woman in her late 20s.\",case just that apart to further love.,hurries to bed and is still wearing the vest.,squints at a factory about parchment.,gold0-orig,pos,unl,unl,unl,unl,Someone removes a metal box from the burning wardrobe.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72303,10527,Swirling black smoke consumes the image of the boy and someone takes his face out of the pensive. Someone,keeps staring into the basin.,swims out of the swimming pool of the gym.,\"lies on a couch, wrapped in a shawl.\",points at the tv.,reverses - - forces someone out of the way.,gold0-reannot,pos,unl,unl,unl,unl,Swirling black smoke consumes the image of the boy and someone takes his face out of the pensive.,Someone\nanetv_dgbGv3G4k5M,8996,They put lights on the tree. They,put bulbs onto the tree.,chop the wood and blow the leaves.,puffed the fabric over a christmas tree as they swing before a christmas tree.,flatten shiny decorations along the fence.,roll the ornaments out of the pile.,gold1-orig,pos,unl,unl,unl,pos,They put lights on the tree.,They\nanetv_dgbGv3G4k5M,8997,They put bulbs onto the tree. A little girl,does a spin in front of the tree.,bumps a tree over and bows.,starts to break out the wall.,\"leaves, looking up.\",,gold0-orig,pos,unl,unl,pos,n/a,They put bulbs onto the tree.,A little girl\nanetv_dgbGv3G4k5M,8995,They set up a Christmas tree in the corner of the room. They,put lights on the tree.,continue cleaning the table.,lay their seats against the tree.,put the sandwiches into the oven.,,gold0-orig,pos,unl,unl,unl,n/a,They set up a Christmas tree in the corner of the room.,They\nanetv_dgbGv3G4k5M,8994,A family is rearranging furniture in a living room. They,set up a christmas tree in the corner of the room.,test bulbs over and over.,split another set of green markings.,shine two white particles into the ping iron bar.,put a change of clothes on the laundry.,gold0-orig,pos,unl,unl,unl,unl,A family is rearranging furniture in a living room.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86348,3734,\"Table linen has been thrown over some tables and chairs to form a tent. Someone crawls into the makeshift den, and someone\",follows on his hands and knees.,\"screams, allowing someone to drink it.\",\"steps off the frame of a small balcony, where someone is reading a magazine.\",takes high shallow breaths.,sweeps another woman onto.,gold0-orig,pos,unl,unl,unl,unl,Table linen has been thrown over some tables and chairs to form a tent.,\"Someone crawls into the makeshift den, and someone\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86348,3733,Someone hobbles down a flight of stairs in the dark. Table linen,has been thrown over some tables and chairs to form a tent.,soldiers look out at them as one man enters the corner.,stands on a bulletin board.,silk flowers he has given someone is lying around him.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone hobbles down a flight of stairs in the dark.,Table linen\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73324,10313,They drive on down a dark stretch of road. She,\"presses her lips together, stifling tears.\",\"by the night - clip, he gets out, noticing a few other cars.\",switches off the lamp.,jumps on her way and hobbles.,\"has long focus on his replay, and the kids rush back to meet the man that did this to check it a victory tai\",gold0-reannot,pos,unl,unl,unl,unl,They drive on down a dark stretch of road.,She\nanetv_jUmfhYsA5r0,16084,\"A man stands against a wall playing guitar and singing. Then, the man\",stops playing and then talks.,starts playing the guitar.,eats a hookah pipe while talking to the camera.,stops playing the drums.,,gold0-orig,pos,unl,unl,unl,n/a,A man stands against a wall playing guitar and singing.,\"Then, the man\"\nanetv_jUmfhYsA5r0,3453,The man begins playing the guitar while singing. He,continues to play the guitar and sing and ends by speaking to the camera.,blows the harmonica off on the board and takes the time.,continues playing while sitting on the floor playing drums with another teen in the distance while another baby plays nearby.,picks up his mobile and lays down against the back of the table in another bumper car.,,gold0-orig,pos,unl,unl,unl,n/a,The man begins playing the guitar while singing.,He\nanetv_jUmfhYsA5r0,3452,A man is seen leaning against a wall holding a guitar. The man,begins playing the guitar while singing.,throws his arms around and looks around.,kneels down then begins singing and playing an instrument.,continues playing the instrument and speaking.,continues to play the instrument over the instrument while looking off into the distance.,gold0-reannot,pos,unl,pos,pos,pos,A man is seen leaning against a wall holding a guitar.,The man\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14587,\"In the common room, someone uncorks the vial of Liquid Luck. Watched by people, he\",empties its contents into his mouth.,quietly closes the gauze from the wound.,steps into the general's room with the bearded woman.,looks over as someone steps past him.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the common room, someone uncorks the vial of Liquid Luck.\",\"Watched by people, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14585,She backs away and he closes his eyes. Someone,\"stands rooted to the spot, his breathing shallow.\",peels past the old box in a bedroom.,clips his score into a screen.,turns away from the car and drives off.,do a little forward.,gold0-orig,pos,unl,unl,unl,unl,She backs away and he closes his eyes.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14581,\"Through the gap, someone sees the door. A bird\",flies out and settles on a stone shelf.,\"flies with a lever, a huge fires.\",is laid in bed.,\"flies towards him, revealing the size of a floating bird.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Through the gap, someone sees the door.\",A bird\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14575,He rounds the corner and sees someone sprawled on his back. Bloodstains,spread over someone's white shirt.,are strikes up in battle with someone's raised swords.,gives him an injection.,stands in his doorway as someone stands.,is mark the boy's head.,gold0-orig,pos,unl,unl,unl,unl,He rounds the corner and sees someone sprawled on his back.,Bloodstains\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14579,\"As someone leads him forward, they are reflected in the mirror behind. They\",wander through the room of requirement.,see the shock rip up from someone's skin.,rides up beside someone as he drives a lawn mower by the central park.,30 - something is lying on the floor.,see the pixie - faced man looking at the television.,gold1-orig,pos,unl,unl,unl,pos,\"As someone leads him forward, they are reflected in the mirror behind.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14568,\"Loosening his tie, someone rushes into the boy lavatories, leans over a basin then pulls off his sweater. Turning on a tap, he\",studies his distraught face in a mirror.,checks his cell phone playing the guitar.,looks up at the colorful sky.,lurches away slings his backpack over his shoulder.,,gold0-orig,pos,unl,unl,pos,n/a,\"Loosening his tie, someone rushes into the boy lavatories, leans over a basin then pulls off his sweater.\",\"Turning on a tap, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14574,\"His book in one hand, his wand in the other, someone slowly walks the length of the cubicles. He\",rounds the corner and sees someone sprawled on his back.,reaches down someone's clenched covering and picks up the bar of it.,lies down on top of his bed.,\"struggles to hold up two inverted chess pieces, and heads to the bottom of the stairs.\",opens a cane and steps straight into the room.,gold0-orig,pos,unl,unl,unl,unl,\"His book in one hand, his wand in the other, someone slowly walks the length of the cubicles.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14589,They look at him as he stares into the distance. They,get to their feet.,fall into the sphere.,weave through the rain?,are in an aircraft by an overlook.,,gold0-orig,pos,unl,unl,pos,n/a,They look at him as he stares into the distance.,They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14592,Someone walks past and spots him. He,approaches and gives someone a fright.,turns around and sees a nazi man in his own hat covering his ribs.,\"leads the instructor down a staircase, scattering their books.\",removes the bowl from the station table and searches the anxiously.,\"hurriedly climbs a carriage, then pauses.\",gold0-orig,pos,unl,unl,unl,unl,Someone walks past and spots him.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14567,Someone strides along the upstairs corridor where the bird cage is now empty. Someone,is n't far behind.,aims his partner's weapon at the volunteer's head.,\"watches as someone watches someone walk on, walking along the hall.\",notices the gps tracker and starts off.,,gold0-orig,pos,unl,unl,unl,n/a,Someone strides along the upstairs corridor where the bird cage is now empty.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14565,Someone makes his way upstairs. Someone,pushes his way through a group of students.,\"punches someone, who is struggling to hold back.\",\"stops her with one hands, draws and leads her over of the bed.\",demonstrates someone's tattoos.,\", still hanging onto the wall, looks out to someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone makes his way upstairs.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14582,She walks towards him and stands close. They,exchanged a long look.,step out of the way.,\"take a sip of age, and she gets to his feet and turns to look at him with a broad grin.\",are talking in calm weather.,,gold0-orig,pos,unl,unl,unl,n/a,She walks towards him and stands close.,They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14576,Bloodstains spread over someone's white shirt. Someone,strides in and brushes past someone.,takes a bite of burger and goes with someone.,wears an olive shirt and tie.,fearfully runs circles among the crowd.,rubs his eye angrily.,gold0-orig,pos,unl,pos,pos,pos,Bloodstains spread over someone's white shirt.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14572,Someone appears round and ducks back. Someone,\"peeks out, his image reflected in a mirror.\",catches the cat and yanks out a piece of paper.,bear a huge rib insect as someone clings to him.,\"mounts the beam, climbs the beam back.\",darts through the room searching for the photographs.,gold1-orig,pos,unl,unl,unl,pos,Someone appears round and ducks back.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14561,She looks over his shoulder and stares. Someone,turns and sees someone watching them.,walks down the spiral.,drags the butcher away away.,\"holds her close to her, smiles.\",moves to her side and stares at her with nestor eyes.,gold0-orig,pos,unl,unl,unl,pos,She looks over his shoulder and stares.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14560,He picks up his book then marches up the hall to someone. She,looks over his shoulder and stares.,pats a nearby door.,picks up the grail and kisses her hand.,plants a kiss on her forehead.,walks over to someone.,gold1-orig,pos,unl,unl,unl,pos,He picks up his book then marches up the hall to someone.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14583,They exchanged a long look. She,glances at the book and takes it out of his hand.,tries to pull the wharf off of her hair.,strides out of the pub beside them.,folds her hands in front of her and bows belt.,follows the boys house.,gold0-orig,pos,unl,unl,unl,unl,They exchanged a long look.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14562,\"Someone backs away, turns, and someone's out. Someone\",walks away with her friend.,brings out a gun then brings someone to a halt.,enters a hospital corridor.,grabs someone's arm.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone backs away, turns, and someone's out.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14590,\"Holding a small tin and a pair of scissors, he attempts to cut a piece of plant. It\",waves its vine - like tentacles.,\", he straightens up and grips the handle again then holds the poles up and hands them aside.\",comes up from the bucket and places the lid in the box.,\"evening he goes to a tin door behind it, opens it.\",catches a design in it - as looks from a piece of grated paper to no one else.,gold1-orig,pos,unl,unl,unl,unl,\"Holding a small tin and a pair of scissors, he attempts to cut a piece of plant.\",It\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14578,\"Standing in front of the unicorn tapestry, someone takes someone's outstretched hand and grips it firmly. As someone leads him forward, they\",are reflected in the mirror behind.,copy loudly and the three of them look coldly at each other.,watch from the back chamber.,\"ride down, with a huge heart standing by the pedestal.\",\"run along the shaft, lined and whispering.\",gold0-orig,pos,unl,unl,unl,unl,\"Standing in front of the unicorn tapestry, someone takes someone's outstretched hand and grips it firmly.\",\"As someone leads him forward, they\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14577,\"In the Gryffindor common room, the potions book lies on the table in front of someone. Someone\",crosses to someone and sits beside him.,writes as he halts a fine parade with them.,is venturing in a mirror.,\"bounces out of his wheelchair and sits, sipping the whiskey slowly.\",lands a few feet away.,gold0-reannot,pos,unl,unl,unl,pos,\"In the Gryffindor common room, the potions book lies on the table in front of someone.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14564,Someone marches down the great hall. Someone,makes his way upstairs.,holds up a lighted tray.,notes her grandfather's descent.,\"turns and glances up at someone, who remains behind.\",pushes past the door which opens up next door.,gold1-reannot,pos,unl,unl,pos,pos,Someone marches down the great hall.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14558,Someone reads a note scrawled in his advanced potion book. Someone,jumps to his feet.,takes a framed photo with someone.,watches the fairy and shakes the log.,opens a front door.,raises a glass of champagne.,gold0-reannot,pos,unl,unl,unl,unl,Someone reads a note scrawled in his advanced potion book.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14563,Someone walks away with her friend. Someone,marches down the great hall.,\"eyes her, then changes to a vanity mirror.\",eats an ice cream cone.,bears the group - thumbs tether and joke around the boy.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone walks away with her friend.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14588,\"Watched by people, he empties its contents into his mouth. They\",look at him as he stares into the distance.,draw on it.,laugh when he steps in doorway.,read the screen.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Watched by people, he empties its contents into his mouth.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14591,It waves its vine - like tentacles. Someone,walks past and spots him.,holds the door action.,cracks an alien - shaped disc in someone's beak.,\"watches him, fascinated.\",,gold0-reannot,pos,unl,unl,pos,n/a,It waves its vine - like tentacles.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14586,He swallows hard but his eyes remain shut. Someone,\"returns, steps close to someone, and kisses him gently on the lips.\",breaks the hand railings and the thug pushes it open.,takes the band from her notes.,lets his arm rest on the grass.,blinks and closes his eyes as he continues to stop his pacing.,gold0-reannot,pos,unl,unl,unl,pos,He swallows hard but his eyes remain shut.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14569,He splashes water on his ashen face. Someone,watches the sobbing someone from the doorway.,\"is dancing - - skinned, inspecting any sort of something.\",peers out his window as a few others appear to shoot into a reflective balcony.,cries and has her head turned in her direction.,\"forces a branching smile, then sips a piece of orange juice.\",gold0-reannot,pos,unl,unl,pos,pos,He splashes water on his ashen face.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14584,She glances at the book and takes it out of his hand. He,keeps looking at her.,\"puts his foot on the surface, opens it and examines him.\",\"gazes at her, then looks up in awe.\",\"stares at her admiringly, then hangs her head.\",,gold1-reannot,pos,unl,unl,unl,n/a,She glances at the book and takes it out of his hand.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14566,Someone pushes his way through a group of students. Someone,strides along the upstairs corridor where the bird cage is now empty.,is filling a large tower.,comes out and starts to flight away.,pushes a stack of three cage boys to their left.,speaks into a computer.,gold1-reannot,pos,unl,unl,unl,pos,Someone pushes his way through a group of students.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14570,Someone watches the sobbing someone from the doorway. Someone,draws his wand and cast a spell.,\"is clutching her forehead and sobs, as the rain sinks down on her head, looks up at the ceiling.\",throws dirt onto someone's arms.,relaxes a small sigh.,struggles to rise in pain.,gold0-reannot,pos,unl,unl,pos,pos,Someone watches the sobbing someone from the doorway.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72656,14573,\"Someone peeks out, his image reflected in a mirror. The two of them\",\"crawl on the floor, peering underneath the cubicles.\",stare rapidly in the rocks.,pull closely by two shirts.,sit around in small chairs on a neighboring balcony.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone peeks out, his image reflected in a mirror.\",The two of them\nanetv_FaDD5MyZj88,2870,A man is shown doing a jump in slow motion on a track several times back to back. The camera,shows several different angles of the athlete jumping in a line as well as into the pit on sand.,zooms in on the flag as another person performs next to him.,pans back to the man who is swimming several times to catch a fish.,pans around and shows him running down with the ball.,,gold0-orig,pos,unl,unl,unl,n/a,A man is shown doing a jump in slow motion on a track several times back to back.,The camera\nanetv__vbwjI1QA7g,11490,Man is standing in a room with dart game haging on the wall. he,\"took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart.\",advances on his piece of equipment.,lunges outside kicking the ball with his finger.,\"kicks a wood against ball, throwing it back and forth.\",plays another set of guitars as he places lightly in front of a plate while talking.,gold0-orig,pos,unl,unl,unl,unl,Man is standing in a room with dart game haging on the wall.,he\nanetv__vbwjI1QA7g,11491,\"He took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart. he\",throw the dart to the board and lean on the wall.,is about the strawberries.,sees the man imploring the other about the game in the circle.,continues talking while tossing an apple in front of his eyes.,puts it back up and waves at the camera.,gold1-reannot,pos,unl,unl,unl,pos,\"He took one of the dart from the board and keeps talking, approaches to the camera and shows the sharp dart.\",he\nlsmdc3078_THE_WATCH-36362,7094,Someone glares at someone as someone approaches Chelsea. Someone,wraps his arms around her and grinds her from behind.,\"points one finger skyward, then heads out with an audience.\",\"holds his hand, round the man's waist, it does someone repeatedly.\",share a sweet - up curtsey.,angrily rolls his his eyes.,gold1-orig,pos,unl,unl,unl,pos,Someone glares at someone as someone approaches Chelsea.,Someone\nlsmdc3078_THE_WATCH-36362,7096,\"Someone follows them into the basement stairwell, locking the door behind him. Someone\",\"nervously glances back, then takes a step down.\",\"goes inside, finally ready to strike.\",\"blanches at someone's question, like they were seeing at night and the others for someone at school.\",\"is with the other officer, someone, beside someone.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone follows them into the basement stairwell, locking the door behind him.\",Someone\nlsmdc3078_THE_WATCH-36362,7095,Someone wraps his arms around her and grinds her from behind. Someone,\"follows them into the basement stairwell, locking the door behind him.\",\"draws, someone glances up with someone after them.\",knocks someone's arm and forces him towards the small truck which the waterside coast is clear.,hangs the penguin back in his grip as it bears someone's name.,shows off his running routines one by one.,gold0-orig,pos,unl,unl,unl,pos,Someone wraps his arms around her and grinds her from behind.,Someone\nanetv_95pMelnv2dQ,17954,Men play badminton in the sand. A man on the left,serves the birdie both men on the right miss it.,hit the ball while the rope rocks it.,places his hands on the drum.,watch the man play soccer behind him.,,gold0-orig,pos,unl,unl,unl,n/a,Men play badminton in the sand.,A man on the left\nanetv_95pMelnv2dQ,17955,The man on the right serves and the man on the left hits it back but it hits the net. A man,stands on the left watching.,tucks the mallet into his goal.,blocks a miniature volt.,hits a ball with two sticks.,,gold1-orig,pos,pos,pos,pos,n/a,The man on the right serves and the man on the left hits it back but it hits the net.,A man\nanetv_wsrSku74OpM,11157,A person moves the cups alongside the table while the person continues throwing and the men switch place. The two,continue taking turns while the camera captures their movements.,continue to play while more shots are shown of people playing play.,continue walking with one another while others watch on the side.,continue to chat as they continue to play cards.,continue to move past one another.,gold0-orig,pos,unl,unl,unl,pos,A person moves the cups alongside the table while the person continues throwing and the men switch place.,The two\nanetv_wsrSku74OpM,11156,A close up of solo cups are shown followed by a man throwing balls. A person,moves the cups alongside the table while the person continues throwing and the men switch place.,is seen sitting around a stage with nets and hitting it.,takes a ball and knocks when his home ends up in the screen.,is seen moving the hoop around the body and smiling into the distance.,walks into frame one without a ball while others watch from the side.,gold0-orig,pos,unl,unl,unl,pos,A close up of solo cups are shown followed by a man throwing balls.,A person\nanetv_ffyPN2-EDg4,1541,The man shovels the snow on a roof while the cameraman talks. The man,stops scooping the snow.,is washing the car using a shovel and a car wash.,adjusts the handlebar on that light with the scraper circle the man.,shows all over the store.,falls off but he still stands up in front.,gold1-orig,pos,unl,unl,unl,pos,The man shovels the snow on a roof while the cameraman talks.,The man\nanetv_ffyPN2-EDg4,1540,A man walks up to a snow scoop. The man,shovels the snow on a roof while the cameraman talks.,\"jumps and flips and jumps into the air, and cheers to the frisbee.\",unhooks a blue calf and uses the puff one using his horse.,waves to the camera.,picks up a larger shovel and begins getting away from it.,gold0-orig,pos,unl,unl,pos,pos,A man walks up to a snow scoop.,The man\nanetv_IGcalXmWUwA,5504,Several shots of people playing basketball are shown and leads into two men demonstrating a move. The same move,is shown again from various angles and instructor the user how to do it.,is then shown several more tricks.,shows various the players shaking their heads as they play.,continue chasing a ball while others watch on the side of the gym.,is shown moving in slow motion.,gold0-orig,pos,unl,unl,unl,pos,Several shots of people playing basketball are shown and leads into two men demonstrating a move.,The same move\nanetv_IGcalXmWUwA,5505,The same move is shown again from various angles and instructor the user how to do it. More tricks,are shown as well as step by step instruction on how to properly do it.,or scratching along by several more information appear.,and shown of people jump forward.,join the men around the dart and get one team all down and perform more time in the background.,are shown as well as a group of people playing.,gold0-reannot,pos,unl,unl,unl,pos,The same move is shown again from various angles and instructor the user how to do it.,More tricks\nlsmdc3074_THE_ROOMMATE-4197,10966,\"Upstairs, someone sits up in bed. Later, she\",arrives downstairs in a camisole and knee - length lounge pants.,steps into a luxurious bedroom.,glances across the table at the boy who was sitting in his bed.,walks from someone to the mess basement.,hurries to a motel room.,gold0-orig,pos,unl,unl,unl,unl,\"Upstairs, someone sits up in bed.\",\"Later, she\"\nlsmdc3074_THE_ROOMMATE-4197,10984,Someone arrives at her roommate's side. Someone,offers a gentle smile.,walks down beside him and stands up.,\"walks into the parking theater, then climbs into a seat.\",\"stares after them, then walks away.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone arrives at her roommate's side.,Someone\nlsmdc3074_THE_ROOMMATE-4197,10980,\"Looking outside, someone notices the brunette hunched uneasily at a table. The brunette's friends\",rejoin her with drinks.,\"salutes, then steps away.\",cluster their illustrations in their terraces.,watch her daughter slip up and slip out.,gaze down at the choir then back.,gold0-orig,pos,unl,unl,unl,unl,\"Looking outside, someone notices the brunette hunched uneasily at a table.\",The brunette's friends\nlsmdc3074_THE_ROOMMATE-4197,11006,\"Outside, someone leans to her car's tank. Sidling up to her, he\",leans against the car.,steers her around the bar.,turns to the driver.,storms toward the car.,heads up the winding path through the alley into an office.,gold0-orig,pos,unl,pos,pos,pos,\"Outside, someone leans to her car's tank.\",\"Sidling up to her, he\"\nlsmdc3074_THE_ROOMMATE-4197,10968,\"Crossing the foyer, she peers through the partially open kitchen door. Someone\",\"sits by his daughter, staring ahead.\",'s heels sits comfortably on a wooden floor.,glances through a window then peeks over a steps.,sees her slump into the sink.,,gold0-orig,pos,unl,unl,pos,n/a,\"Crossing the foyer, she peers through the partially open kitchen door.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,10971,Someone slips out of view. Someone,\"remains at the counter, wearing a morose pout.\",joins him and holds a flier.,\"arrives and steps away from her, tearing off the invisibility cloak.\",hurls senator buddy away.,takes the girl who lies on her side and falls over on the water.,gold1-orig,pos,unl,unl,unl,pos,Someone slips out of view.,Someone\nlsmdc3074_THE_ROOMMATE-4197,10986,\"The three girls huddle uncomfortably, shifting their uneasy gazes. Someone\",\"looks up at someone, who glares resentfully at her.\",\", his beefy hand, beats the shield as the steel door works.\",watches from her truck's tray and takes a seat facing each other.,lift three teens on a skimpy lifeboat and sit back down.,takes a deep breath then turns to someone.,gold1-orig,pos,unl,pos,pos,pos,\"The three girls huddle uncomfortably, shifting their uneasy gazes.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,10976,\"Three girls halt at the entrance, their smiles fading. Two of them\",face their brunette friend.,stand outside with him.,peer behind them between reverie.,fall backwards out onto the ground.,wait to the screen door.,gold0-orig,pos,unl,unl,unl,unl,\"Three girls halt at the entrance, their smiles fading.\",Two of them\nlsmdc3074_THE_ROOMMATE-4197,11007,\"Sidling up to her, he leans against the car. She\",\"forces a smile, then watches him place his hand on her hand.\",picks up the prop.,throws two columns at him.,has been cracked and broken.,\"hands him a wrapped letter and steps away from someone, who runs over and looks around to save both hands at the trees.\",gold1-orig,pos,unl,unl,unl,unl,\"Sidling up to her, he leans against the car.\",She\nlsmdc3074_THE_ROOMMATE-4197,10988,\"She stares at someone, who gravely stands her ground. Her eyes glistening, the troubled blonde\",\"musters a smug smile, then follows someone off.\",runs her hand through the great wooden binder.,presses the glass aside to someone and manages a giggle.,looks at her unresponsive friend.,nods to her friend.,gold1-orig,pos,unl,unl,pos,pos,\"She stares at someone, who gravely stands her ground.\",\"Her eyes glistening, the troubled blonde\"\nlsmdc3074_THE_ROOMMATE-4197,11003,\"She finds no sign of her roommate. Returning inside, someone\",\"yanks open the drawers of someone's desk, one after another, anxiously searching their contents.\",notices someone's broomstick restraints.,enters past the servant in his bathroom.,accompanies her through the kitchen door.,sits beside her on the couch.,gold0-orig,pos,unl,unl,pos,pos,She finds no sign of her roommate.,\"Returning inside, someone\"\nlsmdc3074_THE_ROOMMATE-4197,10993,Someone watches her roommate flip open her cellphone. The woman,\"scowls resentfully at the phone, then eyes her roommate.\",takes a turn and watches someone's friend alone.,looks at her computer.,\"stops and finds someone's bed room against the wall of a child in row, wearing a pink skirt and black shorts.\",shifts her tearful gaze to someone who pats someone's shoulder.,gold0-orig,pos,unl,unl,unl,pos,Someone watches her roommate flip open her cellphone.,The woman\nlsmdc3074_THE_ROOMMATE-4197,10990,\"She speeds down a tree lined street, scattering fallen autumn leaves in its wake. At the wheel, someone\",stares ahead with a dull expression.,\"stands alone, deep in mid - water.\",\"climbs on her car, pulling the barrel of the revolver in his hand.\",is agitated as he rounds the mower.,,gold1-orig,pos,unl,unl,unl,n/a,\"She speeds down a tree lined street, scattering fallen autumn leaves in its wake.\",\"At the wheel, someone\"\nlsmdc3074_THE_ROOMMATE-4197,11000,She cheerfully takes it from the bed. She,\"leaves again, shutting the door behind her.\",steps behind her and smooths dotting her sleeping legs.,\"finishes the call, has something that is being next to her.\",tosses it onto the back of her hand.,reads other photos of her.,gold0-orig,pos,unl,unl,unl,unl,She cheerfully takes it from the bed.,She\nlsmdc3074_THE_ROOMMATE-4197,10967,\"Later, she arrives downstairs in a camisole and knee - length lounge pants. Crossing the foyer, she\",peers through the partially open kitchen door.,drapes her arms around her parents and kisses him passionately.,closes the file on her desk and slips it against her side.,steps onto her jazz broom.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, she arrives downstairs in a camisole and knee - length lounge pants.\",\"Crossing the foyer, she\"\nlsmdc3074_THE_ROOMMATE-4197,10977,Two of them face their brunette friend. Someone,follows someone's gaze to them.,\"bandages his team, someone with a red chain on someone.\",stands at the counter as her father glances down with a goofy grin.,grabs a bag and grabs her wrist.,looks in his mirror.,gold0-orig,pos,unl,pos,pos,pos,Two of them face their brunette friend.,Someone\nlsmdc3074_THE_ROOMMATE-4197,10983,The brunette looks up wearily as someone approaches. Someone,arrives at her roommate's side.,leaves someone with a few small bags streaming behind her.,glances skyward with a final frown.,looks back at the house.,,gold0-orig,pos,unl,unl,pos,n/a,The brunette looks up wearily as someone approaches.,Someone\nlsmdc3074_THE_ROOMMATE-4197,10962,\"Now in the darkened house, someone comes downstairs in a t - shirt and sweatpants. He\",\"lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room.\",comes up from the poster.,sits up in bed and holds out a bag.,smiles when he hears.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now in the darkened house, someone comes downstairs in a t - shirt and sweatpants.\",He\nlsmdc3074_THE_ROOMMATE-4197,10994,\"The woman scowls resentfully at the phone, then eyes her roommate. Now back at the dorm, someone\",takes out her ear buds as she walks down the hall in exercise clothes and running shoes.,sits at a handheld laptop shaving office.,does a big towel of someone.,returns a coke with his son.,demurely averts her gaze.,gold1-orig,pos,unl,unl,unl,pos,\"The woman scowls resentfully at the phone, then eyes her roommate.\",\"Now back at the dorm, someone\"\nlsmdc3074_THE_ROOMMATE-4197,11002,\"Opening it, she peers down the hallway. She\",finds no sign of her roommate.,walks up the steps.,\"picks up the wooden panel, then turns to it.\",checks for boxes near her desk.,,gold0-orig,pos,unl,unl,unl,n/a,\"Opening it, she peers down the hallway.\",She\nlsmdc3074_THE_ROOMMATE-4197,10995,\"Now back at the dorm, someone takes out her ear buds as she walks down the hall in exercise clothes and running shoes. She\",\"arrives at her room, sweat glistening on her face and throat.\",\"gone, she turns, rubbing her arms over her heart, letting the massive birds spin around.\",\"comes onto stereo and watches launched from a bedroom where a guy works on the homework to some files, displaying a rubiks cube.\",steels herself and pullman before she answers.,\"in her dress hat, someone walks in the doorway of the living area and takes off the pants.\",gold1-orig,pos,unl,unl,unl,unl,\"Now back at the dorm, someone takes out her ear buds as she walks down the hall in exercise clothes and running shoes.\",She\nlsmdc3074_THE_ROOMMATE-4197,10999,\"Someone notices her sketchpad lying on her bed. Taking an uneasy breath, she\",approaches the spiral - bound notebook.,gives an illustrated goodbye to the reunited family.,reels at them confused.,hurries down to the front door.,replaces the laces of her handbag.,gold0-orig,pos,unl,unl,unl,unl,Someone notices her sketchpad lying on her bed.,\"Taking an uneasy breath, she\"\nlsmdc3074_THE_ROOMMATE-4197,10989,\"Her eyes glistening, the troubled blonde musters a smug smile, then follows someone off. She\",\"speeds down a tree lined street, scattering fallen autumn leaves in its wake.\",\"strides through the doors, steps into the room.\",sits up at the bar and leans her hands on her chest.,smiles wistfully and lowers his gaze.,,gold1-orig,pos,unl,unl,unl,n/a,\"Her eyes glistening, the troubled blonde musters a smug smile, then follows someone off.\",She\nlsmdc3074_THE_ROOMMATE-4197,10964,He turns with a start. She,sits glumly at an island counter.,\"stares in long, dazed eyes.\",fires at someone in the humvee.,speedily signs off someone's arm.,,gold0-orig,pos,unl,unl,unl,n/a,He turns with a start.,She\nlsmdc3074_THE_ROOMMATE-4197,10987,\"Someone stands, takes a step closer, and looks her in the eye. She\",\"stares at someone, who gravely stands her ground.\",hands her knees full of photos.,sees a low cabinet full of tools sharpening nail boots.,opens her eyes then glances at a stack of mugshots.,rests a sword against his arm.,gold0-orig,pos,unl,unl,unl,unl,\"Someone stands, takes a step closer, and looks her in the eye.\",She\nlsmdc3074_THE_ROOMMATE-4197,10978,\"Someone follows someone's gaze to them. As the brunette waits outside, her two friends\",\"come in, glaring at someone as they pass by.\",give her a high five.,glimpse a building across an overpass.,turn and glare at him.,,gold1-orig,pos,unl,unl,pos,n/a,Someone follows someone's gaze to them.,\"As the brunette waits outside, her two friends\"\nlsmdc3074_THE_ROOMMATE-4197,10970,\"He faces someone, who stares at the counter. Someone\",\"lingers at the door, listening intently.\",\"raises the gun from her side, and cuts past in two glasses.\",\"stares out at the faint, vapor surface.\",nods and walks toward the vestibule.,glances at his image then marches off.,gold0-orig,pos,unl,unl,pos,pos,\"He faces someone, who stares at the counter.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,10985,Someone offers a gentle smile. The three girls,\"huddle uncomfortably, shifting their uneasy gazes.\",\"move off and one of the children gestures, then the three of them go to someone's concerned asian apartment.\",meet the senator's gaze.,stare at someone in wonder.,share an exasperated look.,gold0-orig,pos,unl,unl,pos,pos,Someone offers a gentle smile.,The three girls\nlsmdc3074_THE_ROOMMATE-4197,11001,\"She leaves again, shutting the door behind her. Opening it, she\",peers down the hallway.,launches it down toward the floor.,pulls out his strip of paint.,finds her eyes locked on the door.,purses her lips in a telescope.,gold0-orig,pos,unl,unl,unl,unl,\"She leaves again, shutting the door behind her.\",\"Opening it, she\"\nlsmdc3074_THE_ROOMMATE-4197,10975,\"Her arms folded across her chest, someone eyes someone. A smile\",spreads across someone's pale face.,falls on someone's face as she stares up at the sky.,remains on someone's delicate black dress.,\"spreads on her smooth, feminine features.\",spreads across someone's face briefly as guests mingle in the sitting room.,gold1-orig,pos,unl,unl,unl,unl,\"Her arms folded across her chest, someone eyes someone.\",A smile\nlsmdc3074_THE_ROOMMATE-4197,11004,\"Returning inside, someone yanks open the drawers of someone's desk, one after another, anxiously searching their contents. She\",flips through a couple of sketch pads and finds a yellow prescription pill bottle.,looks in surprise at someone's somber wife.,sees a sleeps patient on a cot.,follows someone through a shopping bag into kid - and - striped bikini display.,\"picks up the phone, picks up the phone, as the radio cruises softly on the middle of it.\",gold0-orig,pos,unl,unl,unl,unl,\"Returning inside, someone yanks open the drawers of someone's desk, one after another, anxiously searching their contents.\",She\nlsmdc3074_THE_ROOMMATE-4197,10996,\"She arrives at her room, sweat glistening on her face and throat. Someone\",faces her displayed drawings.,flicks her fingers over the fan as someone continues to kiss her.,breaks position by a hooded partition.,finds her kissing the peck on the cheek.,sobs on her back.,gold1-orig,pos,unl,unl,unl,pos,\"She arrives at her room, sweat glistening on her face and throat.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,11005,\"Inside, a worker watching a football game spots her through the window and gets up. Outside, someone\",leans to her car's tank.,fixes him with playful samurai gaze.,watches someone eat his parents.,drags on a run across his studio phone.,stands and wheat their enormous fists.,gold1-reannot,pos,unl,unl,unl,unl,\"Inside, a worker watching a football game spots her through the window and gets up.\",\"Outside, someone\"\nlsmdc3074_THE_ROOMMATE-4197,10979,\"The troubled blonde glances at the girls as they place their order, then answers her roommate with a cryptic gaze. Looking outside, someone\",notices the brunette hunched uneasily at a table.,tugs at the wire then crosses to him.,saunters over to his desk and moves down one of the other tables.,\"wanders in to address marley, who hands it to him.\",hangs her head and works her way up the street.,gold0-reannot,pos,unl,unl,unl,unl,\"The troubled blonde glances at the girls as they place their order, then answers her roommate with a cryptic gaze.\",\"Looking outside, someone\"\nlsmdc3074_THE_ROOMMATE-4197,10974,\"Someone gazes after her, then follows someone out. Later, the two girls\",follow a sidewalk past a brick wall.,sit up in bed.,stand and twirl together.,stand by the bar as someone talks about their work.,step along on an empty patio.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone gazes after her, then follows someone out.\",\"Later, the two girls\"\nlsmdc3074_THE_ROOMMATE-4197,10992,\"Riding shotgun, someone maintains a cheery clear - eyed gaze. Someone\",watches her roommate flip open her cellphone.,and his father hurry through the window.,\"pulls away, disgustedly.\",shakes his head and walks away.,rubs his hands over his face.,gold1-reannot,pos,unl,unl,unl,pos,\"Riding shotgun, someone maintains a cheery clear - eyed gaze.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,10982,\"Putting her coffee on the table, she stands and goes outside. The brunette\",looks up wearily as someone approaches.,\"woman, little makeup artist, is a firm look.\",leaves on her porch then reach outside.,glances down and crouches to the professor in his 40s.,notices the woman staring at the bar.,gold1-reannot,pos,unl,unl,pos,pos,\"Putting her coffee on the table, she stands and goes outside.\",The brunette\nlsmdc3074_THE_ROOMMATE-4197,11008,\"She forces a smile, then watches him place his hand on her hand. He caresses her cheek, and she\",squirts his crotch with gasoline.,flutters it over her tongue.,pulls her lips from his cheek.,grips her right hand.,pulls him back with a creased look.,gold1-reannot,unl,unl,unl,unl,unl,\"She forces a smile, then watches him place his hand on her hand.\",\"He caresses her cheek, and she\"\nlsmdc3074_THE_ROOMMATE-4197,10973,Someone leaves as her daughter arrives downstairs. Someone,\"gazes after her, then follows someone out.\",\"gathers up a bowl, pasta, and chefs in the block.\",\"opens the oven door for a little, then rushes inside.\",looks at the grave.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone leaves as her daughter arrives downstairs.,Someone\nlsmdc3074_THE_ROOMMATE-4197,10972,\"Upstairs, someone steps into view. Someone\",leaves as her daughter arrives downstairs.,waves from a basin sharply.,hands someone and kit a container of oil cleaner.,fires a fire extinguisher on a contemplative guard.,puffs on a cigarette.,gold0-reannot,pos,unl,unl,pos,pos,\"Upstairs, someone steps into view.\",Someone\nlsmdc3074_THE_ROOMMATE-4197,10991,\"At the wheel, someone stares ahead with a dull expression. Riding shotgun, someone\",maintains a cheery clear - eyed gaze.,shuts a crate of shattered glass shop doors.,lets some clothes drop in.,strolls up to the man with someone.,sits half - conscious then stares off thoughtfully.,gold1-reannot,pos,unl,unl,unl,pos,\"At the wheel, someone stares ahead with a dull expression.\",\"Riding shotgun, someone\"\nlsmdc3074_THE_ROOMMATE-4197,10965,\"She sits glumly at an island counter. Upstairs, someone\",sits up in bed.,is back at the liquor store on the coffee.,follows with her dress soaked.,finds someone sanding a wall with scissors.,waits on the stairs in a hotel room.,gold0-reannot,pos,unl,unl,unl,pos,She sits glumly at an island counter.,\"Upstairs, someone\"\nlsmdc3074_THE_ROOMMATE-4197,10963,\"He lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room. He\",turns with a start.,\"quickly follows someone, lying in the bed, brushing her teeth.\",walks down the hall into the ward light.,disappears into the starry sky.,watches helplessly as flames engulf the covered space apartment.,gold1-reannot,pos,unl,unl,unl,unl,\"He lumbers groggily into the kitchen and opens the refrigerator, its light spilling into the room.\",He\nlsmdc3092_ZOOKEEPER-45122,16411,The giraffe licks it and he spits it out. She,walks away from him and looks at the monkey.,\"gallops toward him, then strolls over and notices.\",rips off the cake.,stands and peers closely at the mirror.,,gold0-orig,pos,unl,unl,pos,n/a,The giraffe licks it and he spits it out.,She\nlsmdc3092_ZOOKEEPER-45122,16412,She walks away from him and looks at the monkey. Someone,gives a thumbs up.,leans her head down and shakes her head.,shoots him a glance.,wakes with a start.,heads into the hall.,gold0-reannot,pos,unl,unl,unl,unl,She walks away from him and looks at the monkey.,Someone\nlsmdc3092_ZOOKEEPER-45122,16413,Someone gives a thumbs up. A wire basket,drops from his hand.,illuminates a expose district.,floats up from his hand.,juts above his head.,follows him and leaves.,gold0-reannot,pos,unl,unl,unl,unl,Someone gives a thumbs up.,A wire basket\nanetv_lx83HHNNrlc,109,The lady gestures with her hands. The man,hands the mop to the lady and empties the red bucket in the sink.,lifts the man again and talks to the camera.,in pink helps the girl up on the head.,\"opens her coat, combing the dog as the woman lies up again.\",,gold0-orig,pos,unl,unl,unl,n/a,The lady gestures with her hands.,The man\nanetv_lx83HHNNrlc,106,A lady discusses with the man. The man,takes the mop out of the red bucket and moves the bucket aside.,is sitting his bike.,is looking for a mustache.,begins wrapping spins in other girl's arm.,,gold1-orig,pos,unl,unl,unl,n/a,A lady discusses with the man.,The man\nanetv_lx83HHNNrlc,110,The man hands the mop to the lady and empties the red bucket in the sink. The male,\"grabs alcohol, while the lady mops.\",mops on his knees while mopping.,dances the mop to the floor again.,demonstrates how to set the coats.,scrubs the mop over the repairing nozzle.,gold0-orig,pos,unl,unl,unl,unl,The man hands the mop to the lady and empties the red bucket in the sink.,The male\nanetv_lx83HHNNrlc,111,\"The male grabs alcohol, while the lady mops. The man\",hands the bucket and mop to the male.,talks again and shows another client working talking.,talks before the person in the black shirt returns to insert the screw.,starts vacuuming using the big knife.,rinses the wax in half to save the cloth.,gold1-orig,pos,unl,unl,unl,unl,\"The male grabs alcohol, while the lady mops.\",The man\nanetv_lx83HHNNrlc,104,A man holds the handle of a cleaning tool. The man,cleans the kitchen floor.,turns off the tire.,returns to the vehicle.,uses the swept seam to clean it.,,gold0-orig,pos,unl,unl,pos,n/a,A man holds the handle of a cleaning tool.,The man\nanetv_lx83HHNNrlc,108,The lady stands next to a male. The lady,gestures with her hands.,dismounts and lifts items on the table.,climbs and covers her face.,resumes shaving her leg.,picks up her brush off the counter.,gold0-orig,pos,unl,unl,unl,pos,The lady stands next to a male.,The lady\nanetv_lx83HHNNrlc,105,The man cleans the kitchen floor. A lady,discusses with the man.,stands in front of him and puts his socks on the wardrobe.,puts a blindfold on her mouth.,pets her white dog on the mirror.,,gold1-reannot,pos,unl,unl,unl,n/a,The man cleans the kitchen floor.,A lady\nlsmdc1048_Gran_Torino-92489,9154,\"Someone eyes someone, who stares unwaveringly back at him. Morning, someone\",walks into someone's kitchen and finds him sipping a mug of coffee.,flops awkwardly to his side.,walks through another window and peers through the gap.,flags up out of the great blue sun as it cuts to paris.,wears a withering gaze as he remembers a fin and who were hiding in the same direction.,gold0-orig,pos,unl,unl,unl,unl,\"Someone eyes someone, who stares unwaveringly back at him.\",\"Morning, someone\"\nlsmdc1010_TITANIC-77160,14211,Someone nods at someone then strides off. Nearby mustached someone,sits with the captain.,faces someone and offers someone's grin.,places one leg on the table.,hands his bat a bat.,steps towards someone who stares at the registers.,gold0-orig,pos,unl,unl,unl,pos,Someone nods at someone then strides off.,Nearby mustached someone\nlsmdc1010_TITANIC-77160,14210,\"In a dining room, someone sips tea with two other women. Someone\",nods at someone then strides off.,walks a few feet away from her.,faces a dark - haired man.,holds out a vodka bottle.,rests his head on someone's shoulder.,gold1-orig,pos,unl,unl,unl,pos,\"In a dining room, someone sips tea with two other women.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5807,12833,\"At a Hydra airfield, someone approaches a stool bearing a bottle of white wine and a glass. Standing beneath the wing of a huge airplane, he\",addresses a small group of masked pilots.,finds a food - - - from a table.,taps it open as someone gets to her feet.,bursts into the room.,sits on a bar bench.,gold0-orig,pos,unl,unl,unl,unl,\"At a Hydra airfield, someone approaches a stool bearing a bottle of white wine and a glass.\",\"Standing beneath the wing of a huge airplane, he\"\nlsmdc3014_CAPTAIN_AMERICA-5807,12835,Someone lifts a glass of wine. Someone,\"drinks, then raises his glass toward the pilots as they pump both of their fists in the air.\",steps up from the seat to the places and hands on a table.,takes someone's arm then runs back into someone's room.,grabs her briefcase from one of his pockets and picks up the safe.,\"bursts into her bedroom and shuts the door, her gaze intent.\",gold1-orig,pos,unl,unl,unl,pos,Someone lifts a glass of wine.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5807,12838,Someone steps through a doorway and finds someone drinking whiskey at a table near the bar. He,\"glances at her, then pours another shot.\",stops in a pretty unlit.,catches a smoke in the dimly lit room.,takes two drinks from his glasses.,,gold0-orig,pos,unl,pos,pos,n/a,Someone steps through a doorway and finds someone drinking whiskey at a table near the bar.,He\nlsmdc3014_CAPTAIN_AMERICA-5807,12836,\"Someone drinks, then raises his glass toward the pilots as they pump both of their fists in the air. Elsewhere at night, someone steps over rubble and someone as she\",walks through a bombed out pub.,climbs the wind escape from his shack.,peers down at a tranquil tiger perched on a limb above him.,passes the humans rabbit statue.,walks confidently over to the traffic barrier outside.,gold0-orig,pos,unl,unl,unl,pos,\"Someone drinks, then raises his glass toward the pilots as they pump both of their fists in the air.\",\"Elsewhere at night, someone steps over rubble and someone as she\"\nlsmdc3014_CAPTAIN_AMERICA-5807,12837,\"Elsewhere at night, someone steps over rubble and someone as she walks through a bombed out pub. Someone\",steps through a doorway and finds someone drinking whiskey at a table near the bar.,\", a woman in a dark, suit and jacket trim decorating a silk hedge with a scar on his shoulder.\",takes off his sunglasses as he strolls down a corridor.,\"sits on the bench, watching him with shining eyes.\",\"throws its cart over a mound of flaming coins, catches it, rolls its legs around.\",gold1-orig,pos,unl,unl,unl,unl,\"Elsewhere at night, someone steps over rubble and someone as she walks through a bombed out pub.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5807,12834,\"Standing beneath the wing of a huge airplane, he addresses a small group of masked pilots. Someone\",lifts a glass of wine.,moves back to the zebra holding his towel.,accompanies the rows characters.,walks beside someone's grave.,runs down a snowy corridor.,gold1-reannot,pos,unl,unl,unl,unl,\"Standing beneath the wing of a huge airplane, he addresses a small group of masked pilots.\",Someone\nanetv_tj0sI8M3tro,8037,A woman is sitting down talking. She,picks up paint brushes and begins painting on a canvas.,is singing a small black flute.,puts oil on boxes.,lifts up two metal foil and drops them on the floor.,picks up a racket and hands it to her.,gold1-orig,pos,unl,unl,unl,unl,A woman is sitting down talking.,She\nanetv_tj0sI8M3tro,18933,A woman appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background. A closeup of a round tip brush,appears before transitioning to an image of a hand using a brush to paint flowers on a white surface.,appears with suntan lotion and looks from the first match.,shows a younger woman is shown using flute and still on her feet frame and dumping it into the backyard before she goes.,is shown and a screen of a polished eye is shown.,is shown followed by a person followed by hula switching and as she performs the shots by.,gold0-orig,pos,unl,unl,unl,unl,A woman appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background.,A closeup of a round tip brush\nanetv_tj0sI8M3tro,18932,A woman demonstrates how to paint with a round brush. A woman,appears and talks to the camera in a room with a bookcase and paintbrushes in it in the background.,paints polish truck onto their nails.,talks to the camera while the camera pans around in slow motion.,brush the paper and finger something on the top of the hedge.,cleans a ballet brush using a brown paint.,gold0-orig,pos,unl,unl,unl,unl,A woman demonstrates how to paint with a round brush.,A woman\nanetv_tj0sI8M3tro,8038,She picks up paint brushes and begins painting on a canvas. She,starts painting a pink flower onto the canvas.,continues painting the nails on another room with paint and leaning around with words running around.,continues to create several lines and flips before raking.,continues painting the a painting and looking at the camera with more text in her head.,continues to paint the fence with paint and adding landmarks to the camera.,gold0-reannot,pos,unl,unl,unl,unl,She picks up paint brushes and begins painting on a canvas.,She\nlsmdc0005_Chinatown-48283,3127,She looks up when he enters. Someone,\"moves to his desk, barely breaking stride at the sight of her.\",hangs his head in shock.,turns and looks at someone who sits staring out.,\"slouches, resting her hands on his chest and jerks his head at his own chest, turning his neck painfully.\",appears in the doorway.,gold0-orig,pos,unl,pos,pos,pos,She looks up when he enters.,Someone\nlsmdc0005_Chinatown-48283,3126,Someone tries to tell him something but someone goes on into his office. She,looks up when he enters.,whips her hair from its jar.,\"rushes down the corridor, gun raised.\",walks over to the stove.,notes the murder diary in his hand.,gold1-orig,pos,unl,unl,unl,unl,Someone tries to tell him something but someone goes on into his office.,She\nlsmdc0005_Chinatown-48283,3125,\"Someone enters, drops his hat on someone's desk. Someone\",tries to tell him something but someone goes on into his office.,keeps his son on a stool yards away.,\"catches someone's hand, then wanders lower slightly.\",steps back as someone walks around the chalkboard near the entrance to his yellowed terrace.,sits down in his pew.,gold0-orig,pos,pos,pos,pos,pos,\"Someone enters, drops his hat on someone's desk.\",Someone\nlsmdc3058_RUBY_SPARKS-28006,1663,The gray - bearded therapist gets up. He,hands someone a teddy bear.,leaves someone at the wheel.,runs up the stairs.,talks to the recruits.,looks round at someone.,gold0-orig,pos,unl,unl,unl,pos,The gray - bearded therapist gets up.,He\nanetv_3xEonDbWxTM,13437,The wall is cleaned with a wet towel using the solution in the pot. The lady,points to an area of the wall that is discolored.,uses a rag on the sink to wash it open.,takes man's bows and begins talking about the soap of the towel.,use the shovel and clean her hands up to see her wet.,cleans the wet cloth with a pink paper towel.,gold0-orig,pos,unl,unl,unl,unl,The wall is cleaned with a wet towel using the solution in the pot.,The lady\nanetv_3xEonDbWxTM,13436,A lady stands with a pot and shows an area of a wall. The wall,is cleaned with a wet towel using the solution in the pot.,sits on a wooden floor and begins to assemble furniture.,shows and the boy holds up the plaster for the night.,blows liquid to a lady playing the toy.,,gold1-orig,pos,unl,unl,unl,n/a,A lady stands with a pot and shows an area of a wall.,The wall\nanetv_Zjfw0n32DBA,10493,Toothpaste is applied to the toothbrush and handed to the boy. A boy,brushes his teeth with an electric toothbrush.,is applying the towel to the man creating hysterical teeth in the bathroom.,tries to wash clothes and rinses the water off.,sits in a bathroom and he starts brushing the toothbrush.,stops in front of him and starts to move around the sink.,gold0-orig,pos,unl,unl,unl,unl,Toothpaste is applied to the toothbrush and handed to the boy.,A boy\nanetv_Zjfw0n32DBA,13510,Then he begins brushing his teeth by himself. Then the adult,helps him brush his teeth properly to help the child by showing him how to use the brush on all his teeth.,does shaving his forehead and feet.,gets up in his hands and continues to talk to the camera.,disappear the kisses once done.,comes down the ladder with his foot so wet.,gold0-orig,pos,unl,unl,unl,unl,Then he begins brushing his teeth by himself.,Then the adult\nanetv_Zjfw0n32DBA,13509,He takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it. Then he,begins brushing his teeth by himself.,takes a razor and spits out the toothpaste and spits it out.,appears cleaning his teeth with the lace and tie it.,uses the scissors to brush him through and wipes off enough to remove from a towel.,wipes his face with the toothbrush and tries to brush his teeth.,gold1-orig,pos,unl,unl,unl,pos,He takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it.,Then he\nanetv_Zjfw0n32DBA,10494,A boy brushes his teeth with an electric toothbrush. The boy,has his teeth brushed by someone.,lands in front of his own camera.,pretends to try to wash the person's hands.,inserts a toothbrush through the roots brush.,removes some toothpaste from a toothbrush and toothpaste.,gold0-orig,pos,unl,unl,unl,unl,A boy brushes his teeth with an electric toothbrush.,The boy\nanetv_Zjfw0n32DBA,10492,The boy dances his feet on a wood floor. Toothpaste,is applied to the toothbrush and handed to the boy.,\"brings the scarf down the loose rug, someone returns home, the moon's shining through the narrow hole.\",\"his balance and marching behind the boy, the female picks the gymnast into a fireplace, eventually climbs on top of him.\",and returns to cutting the grass.,begins on the int.,gold0-orig,pos,unl,unl,unl,unl,The boy dances his feet on a wood floor.,Toothpaste\nanetv_Zjfw0n32DBA,13508,There's a little toddler boy wearing a brown shirt and jeans standing in his bathroom brushing his teeth with a toothbrush. He,takes his toothbrush in his hand and and then waits for an adult to put toothpaste on it.,turns the ladder together with his left rub on his paper.,\"is standing at the top of the tub and he turns and smiles as he makes ironing his shirt, then spreads his legs.\",\"brushes past gives a little yellow shirt, a certain jump and clips a blow dryer.\",,gold0-orig,pos,unl,unl,unl,n/a,There's a little toddler boy wearing a brown shirt and jeans standing in his bathroom brushing his teeth with a toothbrush.,He\nanetv_Zjfw0n32DBA,10491,The boy hands the tooth brush to someone. The boy,dances his feet on a wood floor.,carves his cream up.,\"loses his hat, gets it and swings.\",enters with binoculars and zooms on.,leans back against the tree again.,gold0-reannot,pos,unl,unl,unl,pos,The boy hands the tooth brush to someone.,The boy\nanetv_FDTkn9SFPfs,15781,A person holding a cat straightens the cat's paw. The person,cuts the cat's claws with a scissor shape clipper.,starts playing the cat.,cuts the cat claws.,stands and pets the cat.,,gold0-orig,pos,unl,pos,pos,n/a,A person holding a cat straightens the cat's paw.,The person\nanetv_FDTkn9SFPfs,15782,The person cuts the cat's claws with a scissor shape clipper. The cat,attacks the the cutter.,stops inches from the big cat.,picks up it's cat to maintain the animal.,starts to open again with another one.,casts blowing leaves into the face of the owner.,gold0-orig,pos,unl,unl,unl,unl,The person cuts the cat's claws with a scissor shape clipper.,The cat\nlsmdc3090_YOUNG_ADULT-43839,1308,\"Later, someone awakes in bed beside the brown - haired man. She\",glances sideways at the man and slowly slides her right arm free.,\"is opposite, eating a sack of hands.\",lowers her gaze and blinks thoughtfully.,averts her eyes with her reflection.,stares at his father whose belly glows with distaste.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone awakes in bed beside the brown - haired man.\",She\nlsmdc3090_YOUNG_ADULT-43839,1310,Someone raises her head and stares at the birth notice sticking out of her purse on the floor. She,lies backward and stares at the ceiling.,\"pours into a box like styrofoam, piled at a window.\",bangs and clicks us a sixth.,stares at someone cleaning his garage for photos.,hands someone her clipboard.,gold0-orig,pos,unl,unl,pos,pos,Someone raises her head and stares at the birth notice sticking out of her purse on the floor.,She\nlsmdc3090_YOUNG_ADULT-43839,1316,She unzips a pet carrier and releases her small white dog. Someone,totes her luggage out of her apartment.,notices her is still coming down the stairs.,\"grabs a pipe, goes off and shuts the door behind her.\",covers her with an orange glow.,,gold0-orig,pos,unl,unl,unl,n/a,She unzips a pet carrier and releases her small white dog.,Someone\nlsmdc3090_YOUNG_ADULT-43839,1313,She pulls a suitcase out of her closet. Someone,rummages through dresser drawers and plastic bins.,starts to look straight from her head.,talks to a nurse and someone enters it.,\"covers paint bottles with a small, sealed bottle.\",opens it and washes her hands.,gold0-orig,pos,unl,unl,unl,pos,She pulls a suitcase out of her closet.,Someone\nlsmdc3090_YOUNG_ADULT-43839,1312,Someone slides out of bed and stands. She,pulls a suitcase out of her closet.,straddles the booth in a dark hallway.,\"looks at him, aghast.\",marches out of the room.,,gold0-orig,pos,unl,pos,pos,n/a,Someone slides out of bed and stands.,She\nlsmdc3090_YOUNG_ADULT-43839,1305,She opens the email of the baby announcement and stares at the infant's photo. Someone,browses through outfits in her closet.,goes on the phone into his mother's colleague.,gains on the pole.,\"pokes at someone, gazing at the spasm.\",offers an open sample of the other driver.,gold1-orig,pos,unl,unl,unl,unl,She opens the email of the baby announcement and stares at the infant's photo.,Someone\nlsmdc3090_YOUNG_ADULT-43839,1311,She lies backward and stares at the ceiling. Someone,slides out of bed and stands.,looks down mannequin's shapely face.,turns on the tv with her feet and dives to the ground.,\"continues swinging proudly, chasing someone.\",,gold0-orig,pos,unl,unl,unl,n/a,She lies backward and stares at the ceiling.,Someone\nlsmdc3090_YOUNG_ADULT-43839,1314,Someone rummages through dresser drawers and plastic bins. She,\"takes out a cassette tape titled mad love, buddy.\",\"is loaded with thousands of downstairs folders, knives and papers.\",takes off his shirt and pulls a dark card from the laundry table.,pulls the floor out by his briefcase and tosses out a sheet of paper.,checks a text message.,gold0-reannot,pos,unl,unl,unl,pos,Someone rummages through dresser drawers and plastic bins.,She\nlsmdc3090_YOUNG_ADULT-43839,1317,\"Someone totes her luggage out of her apartment. Driving a red Mini Cooper, she\",pulls to a stop.,rolls on her silver partition.,takes the keys and answers.,gives out the wry cash.,smashes her friend a piercing.,gold1-reannot,pos,unl,unl,unl,pos,Someone totes her luggage out of her apartment.,\"Driving a red Mini Cooper, she\"\nanetv_nKnsvy7-wAI,9099,The man then plays a game with a small girl and bows after each game. The two,continue to play with the man laughing at the camera and him giving her a kiss in the end.,begin playing with the front nails and the cord cuts out pictures are being shown.,women continues waving and laughing to each other.,women take turns playing pose.,continue to swing around and end by pulling the ball out of the playground and showing the one people who will knit.,gold0-orig,pos,unl,unl,unl,unl,The man then plays a game with a small girl and bows after each game.,The two\nanetv_iBz_YrU-T80,7016,More shots are shown of people drinking coffee in various setting including at the dinner table and at the office. In the end the wife,pours her husband a cup of coffee while he speaks to the camera.,stand out.,is propped up with food and etc while seated in a chair.,talks to the camera.,plays more cards while the video cuts into the patrons.,gold0-orig,pos,unl,pos,pos,pos,More shots are shown of people drinking coffee in various setting including at the dinner table and at the office.,In the end the wife\nanetv_iBz_YrU-T80,10895,Four adults are sitting at a table in a kitchen. A man,drinks a cup of coffee.,makes a salad on the table.,is washing his face as well.,put a variety of balls on a side table.,laughs in the passenger seat of a blue screen.,gold0-orig,pos,unl,unl,unl,unl,Four adults are sitting at a table in a kitchen.,A man\nanetv_iBz_YrU-T80,7015,The video leads into various old clips of a television show with lots of women drinking coffee and speaking to the camera. More shots,are shown of people drinking coffee in various setting including at the dinner table and at the office.,are shown of boys playing beer pong as well as people throwing a pro and others still laughing.,of people are shown facing and a person speaking to the camera and hanging up a set of beer pong.,are shown of people hosting a news segment that leads into a man knitting and setting down a phone.,,gold0-orig,pos,unl,unl,unl,n/a,The video leads into various old clips of a television show with lots of women drinking coffee and speaking to the camera.,More shots\nanetv_iBz_YrU-T80,10896,A man drinks a cup of coffee. They,talk to each other about something.,drink another cup and play a cup.,\"roll a table, and it also fall in between cups.\",play under water while a woman drinks her cup and use their drinks to cheer.,,gold0-orig,pos,unl,pos,pos,n/a,A man drinks a cup of coffee.,They\nanetv_iBz_YrU-T80,10897,They talk to each other about something. Several women,are drinking tea outdoors.,stand in a pool and dance laps.,start shoveling the sand.,move up on arms.,flip and walk away.,gold0-orig,pos,unl,unl,unl,unl,They talk to each other about something.,Several women\nanetv_VnBZR-yBLXA,12235,A woman is seen standing behind a counter speaking to the camera and then beginning to peel a potato. She,continues to peel potatoes while pausing to speak to the camera and smile.,grinds the items back to the counter and places it on a board and putting them on a plate.,puts a pair of rollers in the bright dress and puts it in a bowl.,she sharpening and bending on the floor that she put up to the bucket and begins to open out the sink.,puts various ingredients onto the pan and begins mixing it together and mixing and mixes.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen standing behind a counter speaking to the camera and then beginning to peel a potato.,She\nanetv_hToIzZ3o6Ic,3480,A hand paints a wardrobe white with a paintbrush. The hand,picks up a white rug.,splashes the wax on it.,covered nails and shapes products paint his nails these colors.,is shown where he did strip the plaster on the wall of a mop with a rag now.,begins to paint the fingernail with an orange color.,gold0-reannot,pos,unl,unl,unl,unl,A hand paints a wardrobe white with a paintbrush.,The hand\nanetv_hToIzZ3o6Ic,3479,The credits of the clip alongside a bucket of paint are shown. A hand,paints a wardrobe white with a paintbrush.,cleans the outdoor area of a city.,move over the back of the mop to the arm of the chair.,is holding a cat.,washes liquid soap inside of the toilet.,gold0-reannot,pos,unl,unl,unl,unl,The credits of the clip alongside a bucket of paint are shown.,A hand\nanetv_Uofnmkfohkc,16022,Several shots of him riding around are shown as well as him failing and riding more. He fist bumps the camera man and more shots,are shown of him riding around.,are shown of him demonstrating how to skate.,are shown of him getting ready to ski.,are shown of him wandering through the trees.,are shown of him skateboarding.,gold0-orig,pos,unl,unl,pos,pos,Several shots of him riding around are shown as well as him failing and riding more.,He fist bumps the camera man and more shots\nanetv_Uofnmkfohkc,16021,A young child is seen riding a skateboard down a road following a group of older boys. Several shots of him riding around,are shown as well as him failing and riding more.,catches it and beginning a special ride.,begins skateboarding while people watch on the sides.,are shown near a car exit and showing everyone riding in the car.,the dirt are shown as well as people.,gold0-reannot,pos,unl,unl,unl,pos,A young child is seen riding a skateboard down a road following a group of older boys.,Several shots of him riding around\nanetv_GHBeLaysVaA,8106,A girl in the middle spins around. They,kneel down on the stage together.,see that putting eight petals.,spin lightly into a piece of stopping.,smile and rearrange into the camera.,get the ball and dance around herself.,gold0-orig,pos,unl,unl,unl,unl,A girl in the middle spins around.,They\nanetv_GHBeLaysVaA,7423,A large group of people are seen moving out onto a large stage and performing a dance routine with one another. The people,continue dancing around one another and end by making a pose.,push the people around while moving their arms and ends by dancing on someone sides.,continue back as buckets on their legs and end by holding a pose in their arms.,continue moving around on the stage while speaking to the camera and playing with while waving to the camera.,\"continue to laugh with one another and end by stopping, to walk down the platform.\",gold1-reannot,pos,unl,unl,unl,pos,A large group of people are seen moving out onto a large stage and performing a dance routine with one another.,The people\nlsmdc1024_Identity_Thief-82236,1121,Someone exits the back holding the pink slip. A huge sweat stain,runs down the front of his shirt.,sits on a table.,appears in the air above him.,appear on the sweaty thin screen.,\"sits on the ground, kissing up an overhead extinguishing pipe.\",gold0-orig,pos,unl,unl,unl,unl,Someone exits the back holding the pink slip.,A huge sweat stain\nlsmdc1024_Identity_Thief-82236,1128,\"As she bolts, someone hurls a small appliance. He\",whacks her with a guitar.,removes it from the hamper.,\"sniffs, and licks the liquor in his hand.\",\"parts the toilet, then swerves onto a tall wooden table.\",fires a gas pump.,gold1-orig,pos,unl,unl,unl,unl,\"As she bolts, someone hurls a small appliance.\",He\nlsmdc1024_Identity_Thief-82236,1127,\"Standing, she backs him into the counter and throws him over a chair. As she bolts, someone\",hurls a small appliance.,turns to someone and allows her free hand with her.,runs into the living room and shouts on his phone.,erupt through the kitchen stall.,rounds the corner to exit.,gold0-orig,pos,unl,unl,pos,pos,\"Standing, she backs him into the counter and throws him over a chair.\",\"As she bolts, someone\"\nlsmdc1024_Identity_Thief-82236,1114,\"He discovers the key missing. In the rear view, he\",sees an empty road.,hurries to a bedside display.,sees richard parker across the canvas.,stares at someone who sprints into the sky.,spies the imposing building again.,gold0-orig,pos,unl,unl,unl,pos,He discovers the key missing.,\"In the rear view, he\"\nlsmdc1024_Identity_Thief-82236,1126,\"She grabs and slaps his face. Standing, she\",backs him into the counter and throws him over a chair.,returns a preoccupied glance with a bouncer.,downs another shot into his.,gets him in and kisses his father's hand.,looks in a glass window.,gold0-orig,pos,unl,unl,unl,pos,She grabs and slaps his face.,\"Standing, she\"\nlsmdc1024_Identity_Thief-82236,1125,\"He grabs her leg, knocking her down. She\",grabs and slaps his face.,flips his way but catches her breath.,\"slumps towards a pillar, the other arms dangling and motionless.\",\"grabs the partition light, then storms out.\",peers into the darkness then braces herself with a conveyor needle.,gold0-orig,pos,unl,unl,unl,unl,\"He grabs her leg, knocking her down.\",She\nlsmdc1024_Identity_Thief-82236,1120,\"Outside, a blue and yellow taxi arrives. Someone\",exits the back holding the pink slip.,drops it in the hotel seat and slips.,looks from the sky to someone.,watches her move toward the house.,\"hops up down to the valet, reaching someone, who jumps him with force.\",gold1-orig,pos,unl,pos,pos,pos,\"Outside, a blue and yellow taxi arrives.\",Someone\nlsmdc1024_Identity_Thief-82236,1112,She reverses while flipping him off. He,shambles back to her fiat and gets in.,holds walks out to the wall.,bumps into a dragon.,holds his arm to the gorgeous guy.,walks in and throws on his arms.,gold0-orig,pos,unl,unl,pos,pos,She reverses while flipping him off.,He\nlsmdc1024_Identity_Thief-82236,1111,Someone sags as she runs to his car. She,gets into his sedan.,walks over and leads her to a right.,swerves down the ramp in the dusty path.,\"takes out two cans, contents tickets and money.\",\"hangs her head, viewing her out the window.\",gold0-orig,pos,unl,unl,unl,pos,Someone sags as she runs to his car.,She\nlsmdc1024_Identity_Thief-82236,1113,He shambles back to her Fiat and gets in. He,discovers the key missing.,rides along the subway.,falls with her legs individually clamped.,pulls out his toothbrush.,police try at the desk.,gold0-orig,pos,unl,unl,unl,unl,He shambles back to her Fiat and gets in.,He\nlsmdc1024_Identity_Thief-82236,1109,\"The short woman looks up at someone, then punches his throat. She\",pushes him and goes for her car.,\"goes inside his bedroom, revealing a mustache.\",holds him with his arms apart.,shakes someone's hand and moves him to him.,grabs his hand and winces.,gold0-orig,pos,unl,unl,unl,pos,\"The short woman looks up at someone, then punches his throat.\",She\nlsmdc1024_Identity_Thief-82236,1118,Someone tries in vain to open the crushed door as she speeds down the highway. He,reaches through the sunroof.,stops midway in and looks hard out of place.,passes the three men waving their bag.,darts through the break store.,dives for the parked car as she looks out after her.,gold0-orig,pos,unl,unl,unl,pos,Someone tries in vain to open the crushed door as she speeds down the highway.,He\nlsmdc1024_Identity_Thief-82236,1117,She pins it to the guardrail. Someone,tries in vain to open the crushed door as she speeds down the highway.,draws the thin wire protruding from her neck.,pulls down the police driver and hugs someone.,tilts away from great speed.,opens the rear door.,gold0-orig,pos,unl,unl,unl,unl,She pins it to the guardrail.,Someone\nlsmdc1024_Identity_Thief-82236,1122,A huge sweat stain runs down the front of his shirt. He,\"pays the driver and eyes the house, then proceeds in a stealthy jog along the side.\",finds the woman mask and gently cocks the commendatore's head.,continues working out the printed several names on the names of fairies.,drops next to long white paper towel.,\"glances awkwardly, then gets out, walk around in the gravel.\",gold0-orig,pos,unl,unl,pos,pos,A huge sweat stain runs down the front of his shirt.,He\nlsmdc1024_Identity_Thief-82236,1124,\"Looking around, he cautiously enters the back gate. Through a window, someone\",spots the redhead rummaging through his toiletries.,punches the elderly woman's dirty face.,notices his bayonet to the guard line.,stuffs his protective helmet into a flame - shaped wagon.,steps into the living room.,gold0-reannot,pos,unl,unl,unl,unl,\"Looking around, he cautiously enters the back gate.\",\"Through a window, someone\"\nlsmdc1024_Identity_Thief-82236,1116,She comes it through from the sides. She,pins it to the guardrail.,is hiding behind a shelf.,cracks up with the bars.,\"gets a better look and rides off, climbing out.\",is trying to telegram it until it's gone.,gold1-reannot,pos,unl,unl,unl,unl,She comes it through from the sides.,She\nlsmdc1024_Identity_Thief-82236,1110,She delivers a swift kick to his crotch. Someone,sags as she runs to his car.,turns her mother to the sisters.,tosses down the necklace around her waist.,smacks the door with a creepy smile and disappears.,sets down his glass and hits her on the shoulder.,gold1-reannot,pos,unl,unl,pos,pos,She delivers a swift kick to his crotch.,Someone\nanetv_9AqHhUuE9bE,17925,\"Some other people are seated nearby, and many individuals walk past him. A motorcycle\",drives by on the road.,arrives at a building and in a brick room.,unlocks a speech and or committed soldiers follow behind.,looks at a man in his forties.,makes a hand motion to the woman in the first uniform.,gold0-orig,pos,unl,unl,unl,unl,\"Some other people are seated nearby, and many individuals walk past him.\",A motorcycle\nlsmdc3085_TRUE_GRIT-40773,8756,Someone sits down on a box by the flickering campfire. He,hangs his head and stares at the ground.,glances up his leg and looks down as it runs across someone's face.,picks up the urine and puts it in.,stares off thoughtfully as he crawls onward.,finds a piece of paper and holds it to her ear.,gold0-orig,pos,unl,unl,unl,unl,Someone sits down on a box by the flickering campfire.,He\nlsmdc3085_TRUE_GRIT-40773,8755,The men ride off on horseback leaving someone alone with someone. Someone,sits down on a box by the flickering campfire.,\"continues searching and stares at him, surprised.\",\", someone and someone stand at the podium.\",twitches a sympathetic smile.,,gold1-orig,pos,unl,unl,pos,n/a,The men ride off on horseback leaving someone alone with someone.,Someone\nanetv_tuhEnqKmUKg,2929,He skateboards wearing a white shirt while jumping over a small cement wall. Then he,jumps over another wall while skateboarding.,goes down a slide with a watch on a man on the left.,gets in the boy.,uses the scraper to brush some of the pants.,skates back to the van and knocks people off the pen.,gold0-orig,pos,unl,unl,unl,pos,He skateboards wearing a white shirt while jumping over a small cement wall.,Then he\nanetv_tuhEnqKmUKg,2930,\"Then he jumps over another wall while skateboarding. Then in a green shirt, he\",\"skateboards past a school, straight into a basketball court and then jumps over a metal railing.\",wipes his mouth on his feet.,\"takes his seat and raises a ball and hits it against the wall, recording the event.\",throws a white ball to the bowling pins.,,gold0-orig,pos,unl,unl,unl,n/a,Then he jumps over another wall while skateboarding.,\"Then in a green shirt, he\"\nanetv_tuhEnqKmUKg,2928,There's a teenage boy wearing a black beanie hat skateboarding through the city streets. He,skateboards wearing a white shirt while jumping over a small cement wall.,grinds down with shit so he does n't turn the mans hands off the street.,is in a studio talking.,speeds to exit skaters and a city trip in slow.,is skating in the mall with the camera at the same time.,gold0-orig,pos,unl,unl,unl,pos,There's a teenage boy wearing a black beanie hat skateboarding through the city streets.,He\nanetv_tuhEnqKmUKg,2931,\"Then in a green shirt, he skateboards past a school, straight into a basketball court and then jumps over a metal railing. Then back in a white shirt, he\",tries stunts by jumping up to a metal hand rail on his skateboard.,hits it competition and the little girl shoots the target and the hammer shoots it to each other one wrong.,speeds down a basketball hoop around a waist park and then swings and throws tennis with other men.,sharpens an awareness of clothing that moves over him.,demonstrates the dribbling services on the grass.,gold1-orig,pos,unl,unl,unl,unl,\"Then in a green shirt, he skateboards past a school, straight into a basketball court and then jumps over a metal railing.\",\"Then back in a white shirt, he\"\nlsmdc3038_ITS_COMPLICATED-17494,16224,Lights reveals the well - stocked artfully arranged on a central island. He,squints at the chalkboard menus.,carries a bag of gray wine.,whisks a small tray with pastries and watches them.,strolls in place where the tall staff has been walking.,,gold0-orig,pos,unl,unl,unl,n/a,Lights reveals the well - stocked artfully arranged on a central island.,He\nlsmdc3038_ITS_COMPLICATED-17494,16223,\"He solemnly locks eyes with her and she beams, cocking her head. Lights\",reveals the well - stocked artfully arranged on a central island.,\", he kisses her cheek.\",\"up the side of the room, someone stands up and stirs his glass in the red refrigerator.\",and someone look apprehensive.,closes his eyes.,gold0-reannot,pos,unl,unl,unl,unl,\"He solemnly locks eyes with her and she beams, cocking her head.\",Lights\nanetv_E4n0KcS_zgI,1485,A baby is on a bed in a house. She,is playing a pair of bongo drums with her hands.,dumps a cleaner in the bin.,puts on a blue lamp.,pops up and sits on the beach.,is mopping the floor of a room.,gold0-orig,pos,unl,unl,unl,unl,A baby is on a bed in a house.,She\nanetv_E4n0KcS_zgI,10097,She is banging on two large drums in front of her. She,continues slapping the surface of the drums with her hands.,sets her belligerent tablet.,\"is put on the ground, and iron.\",\"keeps playing her guitar, and rides past the girls.\",\"picks up the broom, spins it all around, and stares upwards.\",gold0-orig,pos,unl,unl,unl,unl,She is banging on two large drums in front of her.,She\nanetv_E4n0KcS_zgI,10096,A small baby is shown inside a bedroom. She,is banging on two large drums in front of her.,returns one at a time.,has to make a online drink.,holds a baby under his arm.,gives a few up oats.,gold0-orig,pos,unl,unl,unl,unl,A small baby is shown inside a bedroom.,She\nanetv_j3QSVh_AhDc,3488,A person is showing stuck in between rocks. the person's raft,continuously flips upside down in the water.,is put on a tree again.,reaches the bottom of the board.,sharpens hard to put down a single wooden device.,is shown across the ocean.,gold1-orig,pos,unl,unl,unl,unl,A person is showing stuck in between rocks.,the person's raft\nanetv_j3QSVh_AhDc,18745,A large group of people are seen riding along a water raft in kayaks and flipping around the area. Several shots,are shown of people doing flips in the kayak and ends with people standing on the sidelines watching.,are shown of the people walking in the water and riding in a kayak at the end of a road.,are shown of people surfing around while drinking themselves up and leads to the other in the kayaks.,are shown of the people rowing their oars to wakeboard and performing while the camera captures their movements.,are shown of people riding down the river in several rafts as well as continuously performing briefly in a pose.,gold0-orig,pos,unl,unl,pos,pos,A large group of people are seen riding along a water raft in kayaks and flipping around the area.,Several shots\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6719,Someone shuts her eyes and breathes out with a sigh. She,\"wanders through the adjoining room, lost in thought.\",pulls her flying catch and frowns at him and works back through his islands.,device glows on the picture hands about the hollywood pilot.,drive smartly into a escalator followed by a man wearing a white skirt and a determined band at a christmas machine traveling through mountains.,\"- sits at one, coming up and rests her hand on someone's breast, to raise her hand above his.\",gold1-orig,pos,unl,unl,unl,unl,Someone shuts her eyes and breathes out with a sigh.,She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6718,As they all disappear through the front door. Someone,shuts her eyes and breathes out with a sigh.,continues as she paces her sister.,gets up and helps someone to his feet.,lowers his head and hangs his head.,,gold1-orig,pos,unl,pos,pos,n/a,As they all disappear through the front door.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6725,He strides right past her. Someone,walks over to a table in the corner of the room and takes a seat.,\"scowls at the panel, then glances to someone.\",\"flails over her chest, he twirls and flips her switch.\",gives a tight smile as she watches him go then joins him.,jumps to her feet.,gold0-orig,pos,unl,unl,pos,pos,He strides right past her.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6726,She waits patiently for him to continue. Someone,\"takes a couple of steps forward, looking like he is about to say something.\",is already snuggled between the blankets and in near the uncertain spot.,gives a menacing look.,sits down and kisses her.,\"steps out of the booth and stops at the door with her hands on the side, which is nearly covered.\",gold0-orig,pos,unl,pos,pos,pos,She waits patiently for him to continue.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6720,\"She wanders through the adjoining room, lost in thought. The parsonage at Hunsford\",stands resplendent in the sunshine.,length toward the patio entrance.,appears over the sub.,creeps steadily on her face.,,gold0-orig,pos,unl,unl,pos,n/a,\"She wanders through the adjoining room, lost in thought.\",The parsonage at Hunsford\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6728,\"Again, someone waits expectantly. But someone\",\"gets up, strides awkwardly across the room.\",receives the radio and strength as what she will go.,innocently hits his face.,uses his hand to caress someone's hair and pumps his fist.,turns over to him.,gold1-orig,pos,unl,unl,unl,pos,\"Again, someone waits expectantly.\",But someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6722,\"Inside, someone is lying back on the sofa, reading a letter. Hearing the front doorbell, she\",folds the letter back up.,picks up a pillow and heads through the stack.,slams the curtain onto the counter.,quickly makes her way down the aisle.,glances around past an open - plan office.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, someone is lying back on the sofa, reading a letter.\",\"Hearing the front doorbell, she\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6724,Someone is showed in again. He,strides right past her.,has half shaved hats and earphones.,stamps on the table.,stops himself as someone asks him to take a beauty drink from behind.,is carrying a low hollow post between the three roofers.,gold0-orig,pos,unl,unl,pos,pos,Someone is showed in again.,He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6723,\"Hearing the front doorbell, she folds the letter back up. Someone\",is showed in again.,\"trots off, turns back from his reverie.\",steps on a hanging lamp.,copies the marching students.,speaks in his friend's ear.,gold1-reannot,pos,unl,unl,unl,unl,\"Hearing the front doorbell, she folds the letter back up.\",Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83954,6721,\"The parsonage at Hunsford stands resplendent in the sunshine. Inside, someone\",\"is lying back on the sofa, reading a letter.\",takes note keys to someone's dressing room.,plucks a meal by himself.,sits at the top of a skyscraper with several flowers.,starts to make his way down onto the flowerbed.,gold0-reannot,pos,unl,unl,unl,unl,The parsonage at Hunsford stands resplendent in the sunshine.,\"Inside, someone\"\nanetv_JvP1O8ZIL3A,19268,A woman is seen standing behind another woman sitting in a chair and begins styling her hair. The woman,brushes and parts her hair ad begins braiding the hair and pinning it in several locations.,begins to cut the hair and the camera hands the woman what to do.,cuts up a piercing and shows off the product while showing the face around her and pushing her.,continues seated with the back on the back of the woman from the top of the chair putting hairspray on his face.,then cuts the hair of the woman while speaking to the camera and putting her hair on a table.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen standing behind another woman sitting in a chair and begins styling her hair.,The woman\nanetv_JvP1O8ZIL3A,19269,The woman brushes and parts her hair ad begins braiding the hair and pinning it in several locations. The woman,shows off her finished hair do while looking and smiling to the camera.,\"continues stylish while walking on the beach, again, by posing and smiling into the camera.\",gets up and uses several frisbees to dance.,\"continues adding more hair near the container, showing off the excess hair.\",,gold1-orig,pos,unl,unl,unl,n/a,The woman brushes and parts her hair ad begins braiding the hair and pinning it in several locations.,The woman\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60171,2609,People watch people from someone's balcony. Someone,turns and walks away.,runs past the toppled guide crew.,\"chuckles to herself, fast.\",walks past seating together.,leads someone to the chopper.,gold1-orig,pos,unl,unl,unl,pos,People watch people from someone's balcony.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60171,2610,Someone turns and walks away. Someone,turns and looks out the window.,'s fist grimaces.,\", someone into his jacket, give her a smile.\",sleeps on the corner of the bed as he watches someone ascend the stairs.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone turns and walks away.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2130,14974,\"He stops and presses a hand to his forehead. Glancing out a window, someone\",spots someone sulking across the street.,works her lips into an thin boy.,finds himself surrounded by shelves of brown wood.,shifts in top of someone.,sees something 'moves from a window.,gold0-orig,pos,unl,unl,unl,pos,He stops and presses a hand to his forehead.,\"Glancing out a window, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2130,14976,\"Outside, someone fishes his phone from his pocket and answers. Someone\",stares up at the fourth floor office window.,\"drives over to the truck railing, and stands before her.\",sits face down on a kitchen table.,\"moves to the living room, and stands in someone's cot.\",,gold0-orig,unl,unl,unl,unl,n/a,\"Outside, someone fishes his phone from his pocket and answers.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2130,14975,\"Glancing out a window, someone spots someone sulking across the street. Rising from the table, he\",faces the window and takes out his cell.,watches from slow motion as he moves through the lobby.,takes his phone from his bag and typewriter.,paces and musicians.,pulls out a flame and lights someone's cigarette.,gold1-orig,pos,unl,unl,unl,pos,\"Glancing out a window, someone spots someone sulking across the street.\",\"Rising from the table, he\"\nlsmdc3032_HOW_DO_YOU_KNOW-2130,14973,\"Outside, someone crosses the street. He\",stops and presses a hand to his forehead.,\"follows, swinging his gun as she races out.\",has pulled the stacks for cross - -.,pulls back at the garment obliviously.,\"chews his gum, exhales bracing.\",gold1-reannot,pos,unl,unl,unl,pos,\"Outside, someone crosses the street.\",He\nanetv_DCYz8p4zH6o,19041,Text moves across his face as he swings his arms. The man,continues to swing his arms and ends with credits rolling.,stops to laugh and ends with a hug.,then kicks himself and throw him several times.,\"raises him, punches the air and cheers back on.\",dismounts and holds up a discs in his arms.,gold1-orig,pos,unl,unl,unl,unl,Text moves across his face as he swings his arms.,The man\nanetv_DCYz8p4zH6o,19040,A man is seen kneeling on the floor swinging his arms back and fourth. Text,moves across his face as he swings his arms.,speaks up in front of the camera and ends the routine while the man watches.,continues to stand with the man on camera.,leads into a man speaking to two women.,\"walk around on the floor while the two continue speaking, a smiling man on his side.\",gold0-orig,pos,unl,unl,unl,unl,A man is seen kneeling on the floor swinging his arms back and fourth.,Text\nanetv_B53aHHzgTzc,9432,\"We then see several clips of men doing the same thing at competitions, including in the ussr. A man\",is finally shown doing a long landing jump.,moves a command on the interior of the life rope.,runs on a beach posing with various backgrounds.,is conversing hallway in a line.,is shortly shown using a machine a stern washer.,gold0-orig,pos,unl,unl,unl,unl,\"We then see several clips of men doing the same thing at competitions, including in the ussr.\",A man\nanetv_B53aHHzgTzc,10321,His score is shown and it says Art Walker 54 '11' - American Record. Several different men,are shown doing the long jump and their names and medals.,talk to the camera demonstrating how to pose for the camera in their pajama cap and the intro details.,are shown doing layups on the stage while instruments in the auditorium.,\"are highlighted as someone's talking about the young students issue of throats, from the way to play the trophy.\",practice and how to conga the players who's at the fair.,gold0-reannot,pos,unl,unl,unl,unl,His score is shown and it says Art Walker 54 '11' - American Record.,Several different men\nanetv_AEQ9zIG9LqA,15884,A man does several back flips on a red mat. A woman in a black shirt,watches him go by and claps.,ties a two wrestlers.,walks into a white painting.,walks up to a hoop above.,is sitting in the corner.,gold0-orig,pos,unl,unl,unl,pos,A man does several back flips on a red mat.,A woman in a black shirt\nanetv_bRXOj9Jm1_E,1454,More people surf in the water. Two ladies in bikinis,are on the beach.,sit in the river to lift their heads in the water.,have going over a ramps and various flips dancing around the other.,are on stilts sitting and both.,take off in a surf board.,gold0-orig,pos,unl,unl,unl,unl,More people surf in the water.,Two ladies in bikinis\nanetv_bRXOj9Jm1_E,1453,A man is sitting in the sand. More people,surf in the water.,are riding around the waves.,are on the ice watching them play.,are surfing in the water.,are shown swimming around the area.,gold1-orig,pos,unl,unl,pos,pos,A man is sitting in the sand.,More people\nanetv_bRXOj9Jm1_E,1451,A man carrying a surf board walks on the beach. People,are surfing in the water.,are riding in circles across the blue ocean board.,are decorating a boat on the beach.,see people floating on a surfboard.,zooms back and forth across the rock.,gold0-orig,pos,unl,unl,unl,unl,A man carrying a surf board walks on the beach.,People\nanetv_bRXOj9Jm1_E,1452,People are surfing in the water. A man,is sitting in the sand.,is playing water polo.,stands on the edge of the ocean.,is underwater in a wave.,is seen underwater in the water.,gold0-orig,pos,unl,unl,unl,pos,People are surfing in the water.,A man\nanetv_bRXOj9Jm1_E,1450,A man runs and dives into the water on a beach. A man carrying a surf board,walks on the beach.,runs up and down the boat.,falls off the boat.,also makes a sand castle.,runs up to him.,gold0-orig,pos,unl,unl,pos,pos,A man runs and dives into the water on a beach.,A man carrying a surf board\nanetv_bRXOj9Jm1_E,1455,Two ladies in bikinis are on the beach. People,are riding waves in the water surfing.,are in the court shooting and practicing tricks.,\"are pushing their oars as they jump and rapids, singing as they go.\",ride a boat down a hill.,are in a water pool preparing to swim in the pool.,gold0-orig,pos,unl,unl,unl,unl,Two ladies in bikinis are on the beach.,People\nanetv_YQiTt8b6N60,1237,\"She is sitting on a rock, then biking, then adorning scuba gear. She\",\"dives, swimming alongside tropical fish and a nursing shark.\",shows the bullet underwater with her feet.,\"is kayaking showing up, keeping his helmet trained on.\",\"sands the material with a plastic layer of ornaments, revealing a tack weapon.\",continues to talk about the terrain and then steps back again to show the paint again.,gold0-orig,pos,unl,unl,unl,unl,\"She is sitting on a rock, then biking, then adorning scuba gear.\",She\nanetv_YQiTt8b6N60,1238,\"She dives, swimming alongside tropical fish and a nursing shark. She\",\"is finally shown wearing sunglasses, smiling and laughing.\",releases her tiny flock.,\"comes in, picks up a large rifle and runs over to body, followed by the charge.\",\"plays a few of the prisoners, forming other clusters with soft squeeze.\",leads an elaborate cart to the upper deck.,gold1-orig,pos,unl,unl,unl,unl,\"She dives, swimming alongside tropical fish and a nursing shark.\",She\nanetv_bKec2fA5RZ8,12960,A woman is shown talking to the camera holding a vacuum and followed by her vacuuming up her floor at a fast pace. She,vacuums all around the area while still talking to the camera and eventually transitioning to a close up of the vacuum.,\"comes for a period of time, still performing a good job.\",begins to finished putting clothes on the floor and laying them clean.,walks along the walkway and a close up of her vacuum cleaner and soap on her shoulder.,continues to blow dry her hair while still speaking to the camera and possibly in front.,gold0-orig,pos,unl,unl,unl,unl,A woman is shown talking to the camera holding a vacuum and followed by her vacuuming up her floor at a fast pace.,She\nanetv_n7AaZhEOJSY,1480,The man interviews the camera and leads into another dancer performing steps. Several more people,are seen performing dance moves and speaking to the camera.,are seen jumping into a large pit together.,watch him perform while others watch on the side.,are shown in studio surrounded by women celebrating while holding flags and walking through her way.,are seen clapping at the end.,gold0-orig,pos,unl,pos,pos,pos,The man interviews the camera and leads into another dancer performing steps.,Several more people\nanetv_iB20nDf5yJs,6546,Then he is seen walking onto the board from the start of it and he jumps when he gets to the end of it and dives into the pool. There is music playing throughout the video and the man,dives into the water from different sized boards indoors and outdoors.,gently surfs back his forth performing the trail he is kayaking then is about going.,clenches and is seen talking.,is talking to the camera for as he sits in the large of the kayak with the camera when camera pans to the right.,is playing with his ghost.,gold1-orig,pos,unl,unl,unl,unl,Then he is seen walking onto the board from the start of it and he jumps when he gets to the end of it and dives into the pool.,There is music playing throughout the video and the man\nanetv_iB20nDf5yJs,11078,The screen shows the diver and introduces him. The diver,is doing various dives while a crowd watches.,is holding the water up.,shows a second exercise when a guy run to him.,dives for a pool dive into it.,leads his body towards the water while another approaches.,gold0-orig,pos,unl,unl,unl,unl,The screen shows the diver and introduces him.,The diver\nanetv_iB20nDf5yJs,6545,First the man jumps on the diving board while he stands backwards towards the water and then he circles in the air landing into the water. Then he is seen walking onto the board from the start of it and he,jumps when he gets to the end of it and dives into the pool.,swims over the waves.,climbs on the boat.,interacts with him doing hand gestures.,begins to have the handle jump?,gold0-orig,pos,unl,unl,unl,unl,First the man jumps on the diving board while he stands backwards towards the water and then he circles in the air landing into the water.,Then he is seen walking onto the board from the start of it and he\nanetv_iB20nDf5yJs,11079,The diver is doing various dives while a crowd watches. The scene,switches to an outdoor pool diving board.,goes white in black and white.,begins to clip targets leading swimming through open sea.,shows the tunnel of two of the divers performing again and the backward sequence is seen.,,gold1-reannot,pos,unl,unl,unl,n/a,The diver is doing various dives while a crowd watches.,The scene\nanetv_yrCBN0tYjPE,11983,A man stands in a large room. He then,jumps up on beams.,shows a room tile.,stops playing the piano.,begins to play a game of drums and a cool cup down the floor.,dismounts and throws another barbell down.,gold0-orig,pos,unl,unl,unl,pos,A man stands in a large room.,He then\nanetv_yrCBN0tYjPE,11984,He then jumps up on beams. He then,balances himself on the beam.,swings the ax into the air.,does several jump roping tricks.,lays down on the floor next to him.,,gold0-orig,pos,unl,unl,unl,n/a,He then jumps up on beams.,He then\nanetv_yrCBN0tYjPE,11985,He then balances himself on the beam. He,does several flips and tricks.,continues doing martial arts with his hands and occasionally dropping something on the ground.,completes the beam multiple times and then does the splits again.,performs various tricks with his hands in the air.,,gold0-reannot,pos,unl,pos,pos,n/a,He then balances himself on the beam.,He\nlsmdc1011_The_Help-78761,6722,\"Someone looks peevish and uncomfortable. At the front door, someone\",\"casts one last look at someone, who seems to have lost all her puff.\",stands at the bar.,joins the first man seated at a table.,coolly sets her coffee on the floor.,,gold0-orig,pos,unl,pos,pos,n/a,Someone looks peevish and uncomfortable.,\"At the front door, someone\"\nanetv_YS8swiRbbIE,10089,Girls are dancing on a mat with batons. A girl,does a front flip on the mat.,plays in a studio behind them.,\"stands in her room, talking.\",is dancing on the other side with her routine.,is walking on the stage and holding a hula ring hula hoop.,gold1-orig,pos,unl,unl,unl,unl,Girls are dancing on a mat with batons.,A girl\nanetv_YS8swiRbbIE,838,Dancers in colorful outfits do solo performances with a baton. Different groups of dancers,perform dance routines with batons.,spin them around two times.,perform pom poms on the dance floor.,are playing while interspersed with 75 hula hoops.,take turns sitting on the stage and cheering.,gold0-reannot,pos,unl,unl,unl,pos,Dancers in colorful outfits do solo performances with a baton.,Different groups of dancers\nanetv_YS8swiRbbIE,837,A newspaper with articles spins around. Dancers in colorful outfits,do solo performances with a baton.,stand at the end of a hallway during public.,snap photos of men descending.,are using sketches and tails.,are used to make shapes.,gold0-reannot,pos,unl,unl,unl,unl,A newspaper with articles spins around.,Dancers in colorful outfits\nanetv_DfpUMDpSbS4,16052,A man is seen speaking to the camera while standing behind a set of weights and pointing to his body. The man then,bends down and grabs the bar while still speaking to the camera.,begins playing the instrument back and fourth and moving all around.,moves to reel himself into the frame while moving his arms up and down.,begins moving around on the equipment while the camera pans around.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen speaking to the camera while standing behind a set of weights and pointing to his body.,The man then\nanetv_DfpUMDpSbS4,16053,The man then bends down and grabs the bar while still speaking to the camera. The man,lifts the bar up then back down again while still speaking to the camera.,walks back and fourth while the camera captures his movements and ends by speaking and speaking to the camera.,does several flips and begins throwing one object and another walking into frame.,finishes in front of him and begins to roll out of the room with his hands.,,gold0-orig,pos,unl,unl,unl,n/a,The man then bends down and grabs the bar while still speaking to the camera.,The man\nanetv_79gvzh0wn0Q,3373,The woman bows and walks off the mat. A woman in black uniform,shakes hands with judges.,is dancing on the dance floor.,is standing outside a park area.,is standing outside with her legs pointed at each other.,has a short cut red hair.,gold1-orig,pos,unl,unl,unl,pos,The woman bows and walks off the mat.,A woman in black uniform\nanetv_79gvzh0wn0Q,3374,A woman in black uniform shakes hands with judges. A woman in white uniform,walks up and greets judges shaking their hands.,\"performs several ballet moves, including up and down.\",wins a match on time.,pushes a tray away on the table.,talks to a young girl.,gold0-orig,pos,unl,unl,pos,pos,A woman in black uniform shakes hands with judges.,A woman in white uniform\nanetv_79gvzh0wn0Q,3372,A woman in white karate uniform does a demonstration of a routine on the mat for judges during event. The woman,bows and walks off the mat.,performs a yoga routine while turning and jerks up arms.,jumps on the bars and performs the routine.,twists and turns ballerina moves and twirling around.,bends down and landed on the railing.,gold0-reannot,pos,unl,unl,unl,unl,A woman in white karate uniform does a demonstration of a routine on the mat for judges during event.,The woman\nanetv_v1Iv-ySc2LM,5053,A child uses a mop to wash the floor of a home. The child,twist the mop to turn it over.,\"steps to a floor, continues to mop the floor.\",scrubs the spoons with the soap.,uses the stair attachment to dry the clothes.,rinses the mop with the mop.,gold1-orig,pos,unl,unl,unl,unl,A child uses a mop to wash the floor of a home.,The child\nanetv_kyafh7Ownao,12947,The credits of the clip are shown. Cars,moves on the road.,sweep the sides of the wall.,are running on a track in a carnival.,are running on the shore.,,gold1-orig,pos,unl,pos,pos,n/a,The credits of the clip are shown.,Cars\nanetv_kyafh7Ownao,5893,Short scenes of various parts of the car wash are shown. People,are shown washing several different cars.,are walking on side to side.,uses people pumping themselves up and down.,walk a bit with paint products on a table.,are playing a game of tug of war.,gold0-orig,pos,unl,unl,unl,unl,Short scenes of various parts of the car wash are shown.,People\nanetv_kyafh7Ownao,12948,Cars moves on the road. Guys,wash and towel dry cars outdoors.,runs on one skateboard playing a game in the road.,\"race cars and drive onto a parking lot, on the bench.\",ride a bumper car in a dusty street.,,gold0-orig,pos,unl,unl,unl,n/a,Cars moves on the road.,Guys\nanetv_F9HKxxoNNSQ,1339,\"A person throw a disc with a stick, the disc arrives to a triangle on the floor where two people stand. Then, another disk slides on the floor\",to stop inside the triangle.,to catch them and pieces with the final tree throw.,doing the jumprope and the snare knit to the replay.,hitting a small video.,to a side and films before the camera person throws a dart.,gold0-orig,pos,unl,unl,unl,unl,\"A person throw a disc with a stick, the disc arrives to a triangle on the floor where two people stand.\",\"Then, another disk slides on the floor\"\nanetv_F9HKxxoNNSQ,1340,\"Then, another disk slides on the floor to stop inside the triangle. After, the person\",throw another disc that stops inside the triangle.,come forward and wipe the handle.,finishes and takes a turn adjust the drums.,\"in blue stands up, without flipping, then throws a ball across high.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Then, another disk slides on the floor to stop inside the triangle.\",\"After, the person\"\nanetv_F9HKxxoNNSQ,1341,\"After, the person throw another disc that stops inside the triangle. The rules oh the shuffleboard game\",is displayed in a board.,is raised and turn up.,is filled with the cards.,run up and it all gradually slowed.,is on and destroying the united arena.,gold0-orig,pos,unl,unl,unl,unl,\"After, the person throw another disc that stops inside the triangle.\",The rules oh the shuffleboard game\nanetv_APCbvR0SBl0,3339,There are people watching them behind a fence. A green umbrella,sits next to the track.,is gaining on ranging of them.,is seen walking towards a large wooden fence.,is shown with the lawn mower tucked close together.,,gold0-orig,pos,unl,unl,unl,n/a,There are people watching them behind a fence.,A green umbrella\nanetv_APCbvR0SBl0,3338,A person runs and throws a javelin. There,are people watching them behind a fence.,are adult player and one jump on the head.,kicks it away and throws.,\"the falls, a camera goes in and out on four figures.\",are displayed on the screen.,gold0-orig,pos,unl,unl,unl,unl,A person runs and throws a javelin.,There\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72239,5305,Someone in gown and mortarboard acknowledges the applause. Someone,stares glumly ahead while slytherins celebrate around him.,\", someone sits in front of someone, who scowls and takes her back.\",sells desert and complains.,stuffs him in the back and someone with icing on his.,watches someone tumble out from another room.,gold1-reannot,pos,unl,unl,unl,unl,Someone in gown and mortarboard acknowledges the applause.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72239,5303,Someone hits him with a book. Someone,is walking towards them.,\"blinks, wakes up and tears at his knees then turns to face him.\",strolls over to a drafting table for a moment.,\"looks out at someone, who sits slumped in a chair.\",sits on a chair watching the tv.,gold1-reannot,pos,unl,unl,pos,pos,Someone hits him with a book.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-883,18387,\"As she emerges, someone takes his drawing pad out of his bag. Someone\",looks down on him from her deck.,tightens his seat belt and faces a new floor as he sits down and looks around.,reaches out to touch someone's head.,\"writes on the eagle of a statue, then rises.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As she emerges, someone takes his drawing pad out of his bag.\",Someone\nlsmdc3015_CHARLIE_ST_CLOUD-883,18381,\"He averts his gaze and stares off. Shifting her eyes, someone\",\"sucks in a breath, then glances at her shoes.\",spits out someone's poison.,\"holds his arms, then steps up to kiss someone.\",nods and someone lets her in.,locks eyes with her.,gold0-orig,pos,unl,unl,unl,unl,He averts his gaze and stares off.,\"Shifting her eyes, someone\"\nlsmdc3015_CHARLIE_ST_CLOUD-883,18386,\"Someone peers out from the cabin. As she emerges, someone\",takes his drawing pad out of his bag.,is crowded the street.,slowly takes out a message as she enters.,shuts his eyes and swallows hard.,,gold1-orig,unl,unl,unl,unl,n/a,Someone peers out from the cabin.,\"As she emerges, someone\"\nlsmdc3015_CHARLIE_ST_CLOUD-883,18384,\"She shoots him a look, then swings into the boat. Someone\",\"glances away, then buries his face in his hands.\",tips on a boat.,balances it on his back.,opens the screen door and faces the scraped landscape.,slides the grate into the lock.,gold1-reannot,pos,unl,unl,unl,unl,\"She shoots him a look, then swings into the boat.\",Someone\nanetv_3HBAcaU552I,4572,She gets them some water to gargle in their mouths. The boy and girl,begin playing in the sink.,sink in the bottom of the sink together.,enter the classroom with some kids in their pajamas.,start trying to stay together and swing their hips from side to side.,walk in the small room.,gold0-orig,pos,unl,unl,unl,pos,She gets them some water to gargle in their mouths.,The boy and girl\nanetv_3HBAcaU552I,4573,The boy and girl begin playing in the sink. The woman,laughs at the children dribbling water.,gets a restless sleep.,stops playing and continues to play with the red toothbrush as the person continues to brush his teeth.,shakes the cake as the girl bites her lip.,rushes off her bathroom stall.,gold0-orig,pos,unl,unl,unl,unl,The boy and girl begin playing in the sink.,The woman\nanetv_3HBAcaU552I,4569,A young boy and girl are standing over a sink with their mother talking. The mother,instructs them on how to brush their teeth while laughing.,talks to the boy and walks away with a person and jumps in the water.,is sitting at the bar with her hair still holding the anklet.,turns his camera around to demonstrate a chocolate skin and asian woman standing in a room with a woman outside talking.,puts a pair of scissors and walks towards the other boy.,gold0-orig,pos,unl,unl,unl,unl,A young boy and girl are standing over a sink with their mother talking.,The mother\nanetv_3HBAcaU552I,4570,The mother instructs them on how to brush their teeth while laughing. The boy,helps his younger sister brush his teeth.,continues brushing the dog and then uses a hand to speak at the end.,plays with more piercings.,to the girl spits and he holds it out for a camera.,talks then they go outside to bait the bushes.,gold0-orig,pos,unl,unl,unl,unl,The mother instructs them on how to brush their teeth while laughing.,The boy\nanetv_3HBAcaU552I,4571,The boy helps his younger sister brush his teeth. She,gets them some water to gargle in their mouths.,'s under the ice cream cone.,leans through the glass.,presses a large finger briefly to a tentacle and watches as it slowly reaches his lips.,\"sees someone indoors and quincy, leaving back tears in his eyes as he takes puffs from his shoe.\",gold0-orig,pos,unl,unl,unl,unl,The boy helps his younger sister brush his teeth.,She\nanetv_3KmMvfdidvQ,10088,Big mena re standing on a ring getting ready to wrest. referee wearing a chinese suit,is in the middle of the men.,sprints and play on a court holding axes for two people.,walks in front of the woman in two different uniforms.,is interviewed in front of the newscaster smile.,gives it to people.,gold0-orig,pos,unl,unl,unl,unl,Big mena re standing on a ring getting ready to wrest.,referee wearing a chinese suit\nanetv_3KmMvfdidvQ,17316,They crouch down in preparation for battle. They,\"wrestle each other, slamming each other on the ring.\",\", the orangutan bat the sailors to the mast, bounces over the border of the mast, hurries to the camera.\",are shown in the middle of the court with the people others watch on the sides.,scatter in the flames.,,gold0-orig,pos,unl,unl,unl,n/a,They crouch down in preparation for battle.,They\nanetv_3KmMvfdidvQ,17315,A sumo wrestler meets another one inside a ring. They,crouch down in preparation for battle.,ties the other man on the back of one of his companions and jumps high in the ring.,\"play, then the man wearing a red shirt walks and pumps his head.\",\"put his hands in the air, one of the wrestlers twists the left ankle.\",compete pushing each other on bicycles while sitting on their seats on a table.,gold0-orig,pos,unl,unl,unl,unl,A sumo wrestler meets another one inside a ring.,They\nanetv_ehGHCYKzyZ8,14124,The video starts with a title logo sequence. A man and woman,are in a living room demonstrating exercises.,\"wearing sunglasses are talking to someone, who bears several crown on the desk.\",are posing in an outdoor arena.,are break dancing on a field with a band sweeping the kites.,rush in front of him.,gold0-orig,pos,unl,unl,unl,unl,The video starts with a title logo sequence.,A man and woman\nanetv_ehGHCYKzyZ8,14127,The man starts pointing to different areas of the woman's body as she does an exercise. The woman,begins to do small sit ups.,empties out documents in a locker table to show multiple her zumba elliptical.,plays her foot over the ironing board and climbs and holds the end to it.,swings kicks around a precious set of weights.,doing several tricks with a bike rope.,gold0-orig,pos,unl,unl,pos,pos,The man starts pointing to different areas of the woman's body as she does an exercise.,The woman\nanetv_ehGHCYKzyZ8,14126,The woman lays on the ground. The man,starts pointing to different areas of the woman's body as she does an exercise.,\"rips away the camera and clears the floor, then her removing tiles between sheets.\",does a back flip on the bed before finishing his play.,removes the man and begins to lay her on the floor.,jumps into the baby and jumps off the bed.,gold0-orig,pos,unl,unl,unl,unl,The woman lays on the ground.,The man\nanetv_ehGHCYKzyZ8,14125,A man and woman are in a living room demonstrating exercises. The woman,lays on the ground.,is kicking the woman's butt.,demonstrates how to play the congas.,drops the exercise equipment into a seat.,,gold0-orig,pos,unl,unl,pos,n/a,A man and woman are in a living room demonstrating exercises.,The woman\nanetv_ehGHCYKzyZ8,14128,The woman begins to do small sit ups. The woman,ends with a final title logo sequence.,points to practicing the girls as she poses while performers still holding on to her foot.,flips her hair through her bedroom girl and resumes curling then talking to the camera.,vacuums the corners of the room.,looks up one more time and shows one times while walking several other ways.,gold0-reannot,pos,unl,unl,unl,unl,The woman begins to do small sit ups.,The woman\nlsmdc3059_SALT-28970,16723,Someone mashes his teeth around his gag as he stares pleadingly at his wife. She,faces someone and her bee - stung lips curl into a cold smile.,moves to the table.,\"approaches someone standing in his chair, looking with one of his eyes and filming the miles long.\",\"lowers his question from the table to reveal a single stag with a dozen excavator, pretty else.\",\"pops the cardigan around someone's hand and extends his other hand, hacks her with lurking kicks.\",gold0-orig,pos,unl,unl,unl,unl,Someone mashes his teeth around his gag as he stares pleadingly at his wife.,She\nlsmdc3059_SALT-28970,16726,\"Watching her husband's head thrash, someone struggles to fight back tears welling in her eyes. She\",\"looks up at a guard in a suit, aiming a handgun at her.\",flips the door closed.,grabs the drink from someone drink glass and sets it in front of her.,looks mournfully at her facial scar.,seems unsure of the moment and the defensive plate goes on.,gold0-orig,pos,unl,unl,unl,pos,\"Watching her husband's head thrash, someone struggles to fight back tears welling in her eyes.\",She\nlsmdc3059_SALT-28970,16727,\"She looks up at a guard in a suit, aiming a handgun at her. Blinking, she\",clears her eyes and faces someone without a hint of grief.,tilts her head slowly then hurries off people.,turns to someone and nods.,\"turns away, her eyebrows raised.\",drops down her rifle as she steps below the deck.,gold0-orig,pos,unl,unl,unl,unl,\"She looks up at a guard in a suit, aiming a handgun at her.\",\"Blinking, she\"\nlsmdc3059_SALT-28970,16725,\"And then turns, a guard wrenches a valve. Watching her husband's head thrash, someone\",struggles to fight back tears welling in her eyes.,stands side by side with her.,stares up the night lights and warmly lights the backpack.,smells the pump - action shotgun.,pulls two hood back beneath him.,gold0-orig,pos,unl,unl,unl,unl,\"And then turns, a guard wrenches a valve.\",\"Watching her husband's head thrash, someone\"\nanetv_y_HCdBEJbNE,16702,A man puts plaster on a base. The man,walks over and rubs it on the ceiling.,uses a paintbrush to clean the wood with a measuring tool.,crouches at a plaster on the wall and drills holes in the ice.,lifts a person on top of a ladder.,joins a shadow on the ceiling.,gold0-orig,pos,unl,unl,unl,unl,A man puts plaster on a base.,The man\nanetv_y_HCdBEJbNE,16704,We see the stilts the man is walking on. The camera,becomes wobbly and blurry.,falls down revealing various groups of stills at pictures.,stops towards the entire opening of the banner.,continues to clip through the man.,,gold0-orig,pos,unl,unl,unl,n/a,We see the stilts the man is walking on.,The camera\nanetv_y_HCdBEJbNE,16703,The man walks over and rubs it on the ceiling. We,see the stilts the man is walking on.,zoom in on the lined shoe and leg shaves.,see the boy lift all his legs and open it to the side.,see the man on the screen introducing the instructions.,see a newscaster in a room talking.,gold0-orig,pos,unl,unl,unl,unl,The man walks over and rubs it on the ceiling.,We\nanetv_FaKQvJBhMPg,4285,\"A man and a woman are sitting in two separate floating donuts, the man in the blue, the woman in the green, and both are smiling then the man raises his left arm to wave. A group of people\",\"are also on different colored floating donuts, playing, falling in the water and having a good time.\",laying eyes are shown while different people stand around him swerving and walk away.,in front wash them playfully with each other and the members get at their feet and performing in slow motion poses.,in the background looks and he's on a mat.,are dancing inside the open gym in a synchronized dance style dancing.,gold0-orig,pos,unl,unl,unl,unl,\"A man and a woman are sitting in two separate floating donuts, the man in the blue, the woman in the green, and both are smiling then the man raises his left arm to wave.\",A group of people\nanetv_FaKQvJBhMPg,4287,\"The woman is now sitting in a green floating donut, still holding the mic, and still talking. A white screen appears appears with a maroon and white logo, then it\",changes to another white screen that has a blue website in the middle of it.,reads the name imperata across the screen.,includes a number of fishes for gray singer being interviewed by winner who is standing and waving.,'s out on the screen.,'s scrolling then that black sequence with clips of fast words flashes in the screen.,gold0-orig,pos,unl,unl,unl,pos,\"The woman is now sitting in a green floating donut, still holding the mic, and still talking.\",\"A white screen appears appears with a maroon and white logo, then it\"\nanetv_FaKQvJBhMPg,4286,\"A brown haired woman standing in a pile of floating donuts is holding a mic and talking, and other clips begin to play that include scenery of the lake, interviewing various people of ages and both sexes, people walking with their floating donuts, signs at the lake, people having fun and etcetera. The woman\",\"is now sitting in a green floating donut, still holding the mic, and still talking.\",plays with the ball to demonstrate how to throw it.,flips the rope up in the air while talking and the group begins laughing.,talks in the background sip from a cup.,does back flips sticking her leg out and turns her body back to lure someone to sit seat.,gold0-orig,pos,unl,unl,unl,unl,\"A brown haired woman standing in a pile of floating donuts is holding a mic and talking, and other clips begin to play that include scenery of the lake, interviewing various people of ages and both sexes, people walking with their floating donuts, signs at the lake, people having fun and etcetera.\",The woman\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16573,She links her arm in his and continues on down the street with him. They,stop walking and face one another.,run magic truck around the arms.,\"gets out, staring at the map now on a scooter.\",land sprawled on the backs of the truck's machine - demolished building.,\"continue to light the house, lush to reveal someone standing outside the tent.\",gold1-orig,pos,unl,unl,unl,unl,She links her arm in his and continues on down the street with him.,They\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16579,\"Someone is looking out the window, watching someone walk back and forth. But after a few steps he\",turns around and starts back.,does not see the notice.,\"raises his weapon and lunges out the door behind his son, then opens it for cover.\",\"rolls onto the grand staircase, standing down to balcony just cracked.\",\"stops and looks back, with a gloved end gesture.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone is looking out the window, watching someone walk back and forth.\",But after a few steps he\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16567,\"Someone is standing in the middle of the street, hands in his pockets. He\",is obviously undecided as to what he wants to do.,looks out of the window.,starts digging into his pockets.,\"walks over to someone, who turns round to her.\",\"looks at someone, who looks at him carefully.\",gold0-orig,pos,unl,pos,pos,pos,\"Someone is standing in the middle of the street, hands in his pockets.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16568,\"He is obviously undecided as to what he wants to do. As a girl passes, he\",turns and watches her for a moment.,starts to play the violin drums.,sees on the information journal and drove home.,inserts the contact lens to her left eye.,gets out and starts dancing.,gold0-orig,pos,unl,unl,unl,pos,He is obviously undecided as to what he wants to do.,\"As a girl passes, he\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16585,Someone looks in a mirror at the bottom of the stairs and fixes her hair. She,is plainly excited at someone's visit.,\"eats her way, then returns to the bedroom.\",\"extends her hand to introduce herself, but someone still looks at her.\",tears up her hair and tucks them out of her purse.,smiles and flings it down.,gold0-orig,pos,unl,unl,unl,pos,Someone looks in a mirror at the bottom of the stairs and fixes her hair.,She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16575,\"By this time a small crowd has collected to watch the above scene. Someone is furious and talking in a loud voice, and someone\",is trying to quiet her.,gets on to his horse.,is holding something on board as a dog pulls out of the forest and the camera steps closer.,is dragged to the back of the plane and rising to his feet.,,gold0-orig,pos,unl,unl,unl,n/a,By this time a small crowd has collected to watch the above scene.,\"Someone is furious and talking in a loud voice, and someone\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16587,She runs into the parlor and puts a sketch on an easel. It,is a caricature of someone throwing a lasso around the moon.,looks at the corpse and stuffs it in his pocket.,comes up with the thick curlers separating it.,studies for a moment then fades to her.,\"'s on the wall, half serving at the bottom.\",gold0-orig,pos,unl,unl,unl,pos,She runs into the parlor and puts a sketch on an easel.,It\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16571,\"A couple of men are crowding around her, each one bent on taking her out. She\",looks up and sees someone standing there.,swings the bat at a pinata as she attempts to get it.,forces her arms in pain.,is saying to him as they laugh.,\"resumes her aim, then steps away once again.\",gold0-orig,pos,unl,unl,pos,pos,\"A couple of men are crowding around her, each one bent on taking her out.\",She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16578,\"He walks past the house a few yards, turns, and starts back again. Someone\",\"is looking out the window, watching someone walk back and forth.\",has stopped wildly to pitch his scary costume.,\"picks him up, leaving him behind and slamming someone in the back.\",is parked outside the house.,opens another door and walks towards the german.,gold0-orig,pos,unl,unl,unl,unl,\"He walks past the house a few yards, turns, and starts back again.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16572,She senses the fact that someone is far from immune to her attractions. She,links her arm in his and continues on down the street with him.,are now on introductions of about 10 years old.,is above her head.,turns it on everyone seems disappointed.,looks sadly at her affection at her fully awarded whispered.,gold1-orig,pos,unl,unl,unl,unl,She senses the fact that someone is far from immune to her attractions.,She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16588,It is a caricature of someone throwing a lasso around the moon. Then she,opens the front door and stands there waiting for someone.,\"envisions keeping the book over a pair of rocks, with its mouths open with a like restraint, and a huge web.\",is stamped just trying to get her successful at the sauce.,makes a stop to rollerblade through the hedge of the dense tree.,takes a small circle and swings him around until the ground is untouched.,gold0-orig,pos,unl,unl,unl,unl,It is a caricature of someone throwing a lasso around the moon.,Then she\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16570,Someone is locking up for the night. A couple of men,\"are crowding around her, each one bent on taking her out.\",are in the living room watching so happy.,are on a ladder to watch equipment.,come out of the crowd dressed in beige evening costumes.,,gold1-orig,pos,unl,unl,pos,n/a,Someone is locking up for the night.,A couple of men\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16584,Someone is running down the stairs. Someone,looks in a mirror at the bottom of the stairs and fixes her hair.,\"sits at the edge of her bed, watching, staring at himself.\",walks his dog away from the goblin and someone at the same time.,\"approaches and looks out of the window, deep in thought.\",follows behind where someone has turned.,gold0-orig,pos,unl,unl,pos,pos,Someone is running down the stairs.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16589,Then she opens the front door and stands there waiting for someone. Someone,is struggling with the gate he finally kicks it open and starts slowly up the path toward someone.,laughs at the pinball bubbles.,turns to her husband.,comes up and ushers them off.,'s mouth is open in a sigh and the station man appears.,gold0-orig,pos,unl,unl,unl,unl,Then she opens the front door and stands there waiting for someone.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16581,\"Someone stops, startled, and looks up. Someone\",looks surprised at this.,\"is suddenly riding the top of a lawnmower, head first toward the bottom.\",still does n't answer.,walks down the corridor and by the door.,,gold1-orig,pos,unl,pos,pos,n/a,\"Someone stops, startled, and looks up.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16586,She is plainly excited at someone's visit. She,runs into the parlor and puts a sketch on an easel.,\"holds a tray, food being eaten off her bottle.\",is obviously playing autographs.,takes the envelope and reads it back.,hands him the money as he merely pretends to talk to someone.,gold1-orig,pos,unl,unl,pos,pos,She is plainly excited at someone's visit.,She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16580,But after a few steps he turns around and starts back. Someone,\"stops, startled, and looks up.\",passes between cars.,\"steps away, stamps on his cane, then jams him on the chair.\",furrows his brow and nods.,hands him the keys and some bills from the packet.,gold1-orig,pos,unl,unl,pos,pos,But after a few steps he turns around and starts back.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16577,Someone is walking slowly past someone home. He,\"walks past the house a few yards, turns, and starts back again.\",can not see what the people are done.,\"clumsily awake and sits by the piano music, pausing as she hears she spin.\",\"pats his chest, 35.\",pulls them into the piece of crows hardware.,gold0-orig,pos,unl,unl,unl,unl,Someone is walking slowly past someone home.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16574,\"He is silent for a moment, then blurts out. By this time a small crowd\",has collected to watch the above scene.,is barking to start.,is doing response to the message.,is gathered in front of the woman counting the money.,is seated at the front of the big box.,gold1-orig,pos,unl,unl,pos,pos,\"He is silent for a moment, then blurts out.\",By this time a small crowd\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16583,But someone has disappeared from the window. Someone,is running down the stairs.,holds up his hand as he stands.,\"shakes her head, but is drifting to the bottom of the door.\",helps someone to his feet.,walks to his servants and continues to sniff the wire.,gold0-reannot,pos,unl,unl,unl,unl,But someone has disappeared from the window.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16569,\"As a girl passes, he turns and watches her for a moment. Someone\",is locking up for the night.,is taken aback for the camera.,\"returns, acting to the dead woman.\",\"mixes her hors d'oeuvres, then returns outside.\",adds a note to someone.,gold0-reannot,pos,unl,unl,unl,unl,\"As a girl passes, he turns and watches her for a moment.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54574,16590,Someone is struggling with the gate he finally kicks it open and starts slowly up the path toward someone. People,are in the entrance hall.,come into the garage.,arrives as a sedan speeds ahead into the drive.,hurry back the plank.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone is struggling with the gate he finally kicks it open and starts slowly up the path toward someone.,People\nanetv_lhnhGI-rrzM,12341,There's a young man wearing a blue shirt and a black helmet skateboarding on a two way road. He,is going at a steady and fast speed as he passes through a few cars and lots of trees.,\"uses a brake tool on blond the yard, then the person continues jumping and turning around.\",\"has two moves around to other men and are watching her with her big, gray hair.\",shows smaller roads in the murky to escape cars with all other people.,\"jumps on both bars, flipping and jumping in slow motion.\",gold0-orig,pos,unl,unl,unl,unl,There's a young man wearing a blue shirt and a black helmet skateboarding on a two way road.,He\nanetv_lhnhGI-rrzM,12342,He is going at a steady and fast speed as he passes through a few cars and lots of trees. He also,passes through some residential areas as he skateboards.,is still alive and going into a lives and jumping with others.,does several soft tricks with landscapes and parks.,puts other traffic on the outdoor shoes.,gets onto a stoop to demonstrate how to throw.,gold0-orig,pos,unl,unl,unl,pos,He is going at a steady and fast speed as he passes through a few cars and lots of trees.,He also\nanetv_lhnhGI-rrzM,12344,He finally slows down as cameraman approaches a gray car. The cameraman,gets into the car and takes the skateboard away.,captures his scowl as the dog pays.,shows the survivors working.,follows a guy over an intersection.,,gold0-orig,pos,unl,pos,pos,n/a,He finally slows down as cameraman approaches a gray car.,The cameraman\nanetv_lhnhGI-rrzM,12343,He also passes through some residential areas as he skateboards. He finally,slows down as cameraman approaches a gray car.,stops the ski close to a rich man.,leaves the car to join his basket made.,stops taking turns waxing and giving a man as a skateboard.,moves back and fourth while kneeling next to what he had done.,gold1-orig,pos,unl,unl,pos,pos,He also passes through some residential areas as he skateboards.,He finally\nanetv_lhnhGI-rrzM,12345,The cameraman gets into the car and takes the skateboard away. The skateboarder,is kneeling on the side of the main road.,\"continues running, turning up and going down the street in ramps cranks of wheels and bike tracks.\",drives two cars across the road.,walks past more clips as the two females run to.,pushes the shot suv towards the trees and away from the window.,gold1-orig,pos,unl,unl,unl,unl,The cameraman gets into the car and takes the skateboard away.,The skateboarder\nanetv_lhnhGI-rrzM,12346,The skateboarder is kneeling on the side of the main road. He then,gets up and walks away.,\"runs to the end of the track, roping high in the air.\",gets up and walks off before going back to the bar.,jumps off the diving board into the water.,rides the bike down the road.,gold0-orig,pos,unl,unl,unl,unl,The skateboarder is kneeling on the side of the main road.,He then\nanetv_RfsugL4sLso,18438,A woman is seen brushing her teeth and leads into toothpaste being spread on a toothbrush. Another girl,brushes her teeth and shows several stills on how to properly brush teeth.,is seen hitting a ball in the sink as the girls continue to smoke.,pops up and speaks to the camera while still talking to the camera.,brushes her teeth to put it on toothpaste and then wiping it away with the toothbrush.,is seen taking a shower with her mouth then brushing her teeth.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen brushing her teeth and leads into toothpaste being spread on a toothbrush.,Another girl\nanetv_RfsugL4sLso,18439,Another girl brushes her teeth and shows several stills on how to properly brush teeth. More clips,are shown of people brushing their teeth.,are shown of the woman shaving back with her hair and across off the top.,are shown of her brushing and brushing the teeth while talking into the camera and begins brushing her teeth.,are shown of performing tango speaking to the audience and ends in more images.,are shown of men looking down the braid while the camera captures them from several angles.,gold0-orig,pos,unl,unl,unl,unl,Another girl brushes her teeth and shows several stills on how to properly brush teeth.,More clips\nanetv_gMaakjqhNmM,16748,Another man also hits the dart on the other dart board. The man in green,shoots another dart and then goes to remove it from the dart board.,cook spreads out his bread.,returns his a bowling search.,is court and prepares to jump put and darts at a target.,takes the dart from the wall just the man frantically to watch the face and another ball to the other.,gold0-orig,pos,unl,unl,unl,unl,Another man also hits the dart on the other dart board.,The man in green\nanetv_gMaakjqhNmM,16746,There are some men playing darts in a basement where two dart boards are hung on the wall. One of the men wearing a green shirt,aims the dart board with a dart to hit the bull's eye on one board.,\"is going up a lane, but not now kind of acting as a boy who is arm - in.\",walks through the trampoline followed by the men in yellow capes and walking in the room in fencing gear.,is wearing headphones and speaking to him when another woman in the red shirt speaks.,is talking to a lady.,gold0-orig,pos,unl,unl,unl,pos,There are some men playing darts in a basement where two dart boards are hung on the wall.,One of the men wearing a green shirt\nanetv_gMaakjqhNmM,16747,One of the men wearing a green shirt aims the dart board with a dart to hit the bull's eye on one board. Another man also,hits the dart on the other dart board.,shows the boy dressed in a funeral lunchroom showing after the ball strikes.,kneels on the floor.,shoots backwards and the catches sight of his own and a ring on indicating bad case.,shows standing bolt in the and plays after hitting the dart.,gold0-orig,pos,unl,unl,unl,unl,One of the men wearing a green shirt aims the dart board with a dart to hit the bull's eye on one board.,Another man also\nlsmdc3023_DISTRICT_9-10835,11321,Two men unwrap an alien body part. The gang leader,watches the witch raise an alien arm in a ritual.,opens a laptop and squats down in front of his working mirror.,aims snow toward his son.,leads everyone into a quiet corridor beside the room.,,gold0-reannot,pos,unl,unl,pos,n/a,Two men unwrap an alien body part.,The gang leader\nanetv_oKdzcTnENks,8678,He jumps on all of the numbers. He kind of,runs through the game.,back his body and score.,plays the drums in the smoke.,feels his chest and enraged himself.,,gold0-orig,pos,unl,unl,unl,n/a,He jumps on all of the numbers.,He kind of\nanetv_oKdzcTnENks,8675,A little boy is playing hop scotch on the pavement. There,is a truck behind him.,is an elderly flock of people with hard - colorful luggage.,man sitting on a bench grabbing a bottle of beer fall and a cup from his hand.,are playing a street with a lawn mower on a lawn where the boy is mowing the grass.,,gold0-orig,pos,unl,unl,unl,n/a,A little boy is playing hop scotch on the pavement.,There\nanetv_oKdzcTnENks,8677,He does n't really play it right. He,jumps on all of the numbers.,jumps over his back and tail.,is running and goes without emotion.,jumps to the ball and is hit by the ball again by the goal and jumping.,is drinking from the flask.,gold0-orig,pos,unl,unl,pos,pos,He does n't really play it right.,He\nlsmdc3037_IRON_MAN2-16801,18226,\"Someone forms an o with his right hand, and peers through the makeshift scope. He\",\"smiles slightly, then furrows his brow.\",climbs up out of the toilet and peeks over his right shoulder.,sits on one knee as he examines the alien chamber.,pulls a stray log out of the can of the creature's head.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone forms an o with his right hand, and peers through the makeshift scope.\",He\nlsmdc3037_IRON_MAN2-16801,18233,\"As he moves his hands apart, the Unisphere expands. He\",studies the sphere and the surrounding architecture on the holographic model.,tumbles out through glass framework like slices of wall.,\"shifts with his foot, as someone lingers watching someone.\",\"stands waiting for the middle vendor, beckons her to leave.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As he moves his hands apart, the Unisphere expands.\",He\nlsmdc3037_IRON_MAN2-16801,18243,\"In the lab, he opens a wooden crate containing massive tubes. He\",takes out the tubes and assembles them.,takes out a letter and shows the gifts.,grips the entryway jack.,lies above someone who lies in a puddle of blood.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the lab, he opens a wooden crate containing massive tubes.\",He\nlsmdc3037_IRON_MAN2-16801,18242,\"He drops the cables through the ceiling, down to the lab floor. In the lab, he\",opens a wooden crate containing massive tubes.,\"steps forward down the corridor, his shoulders supporting with his hands.\",shuffles under the sheet tent to find himself seated at his keyboard.,\"swoops down to land, panting.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He drops the cables through the ceiling, down to the lab floor.\",\"In the lab, he\"\nlsmdc3037_IRON_MAN2-16801,18224,He approaches the object and reads a plaque on its side. Someone,pulls off the sheet.,pulls out a small microphone and plays.,raises it to his mouth.,\"taps his fedora, then stands back to walk in the corridor.\",,gold0-orig,pos,unl,unl,pos,n/a,He approaches the object and reads a plaque on its side.,Someone\nlsmdc3037_IRON_MAN2-16801,18221,\"He stands and grabs the basket of strawberries. Walking across the room, he\",pops one strawberry into his mouth and dumps the rest into a wastebasket.,reaches out and takes out a torn broken package hanging from his jeans.,pauses near the doorway.,finds her facing a mirror and peers at a wine glass.,,gold1-orig,unl,unl,unl,unl,n/a,He stands and grabs the basket of strawberries.,\"Walking across the room, he\"\nlsmdc3037_IRON_MAN2-16801,18228,\"Later, the disassembled model, stacked in four panels, rises out of the passenger seat of someone's convertible, as he drives down a highway. In his basement laboratory, someone\",blows dust off the assembled model.,slides a note from his computer.,\"puts the overcoat on his briefcase, then waves them at record time.\",picks up a gutter leaf and eats it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, the disassembled model, stacked in four panels, rises out of the passenger seat of someone's convertible, as he drives down a highway.\",\"In his basement laboratory, someone\"\nlsmdc3037_IRON_MAN2-16801,18235,\"Moving his hands, someone expands the Unisphere again. Dozens of holographic dots\",appear and enter the unisphere.,fill his journalists cluttered room.,shine into the polished skin.,\"fly from his lips, locking up a web.\",drift overhead as he holds the flask to his shirt.,gold0-orig,pos,unl,pos,pos,pos,\"Moving his hands, someone expands the Unisphere again.\",Dozens of holographic dots\nlsmdc3037_IRON_MAN2-16801,18218,Someone closes the door as she leaves. Someone,leans back in his chair.,turns and finds himself hidden in the doorway.,hands him an envelope.,follows across a walkway as someone turns around.,opens the door and rushes inside.,gold0-orig,pos,unl,unl,pos,pos,Someone closes the door as she leaves.,Someone\nlsmdc3037_IRON_MAN2-16801,18222,\"Walking across the room, he pops one strawberry into his mouth and dumps the rest into a wastebasket. Someone\",spits out the strawberry.,turns away and fixes his gaze.,stands and hugs his younger mother.,pulls his owl hood to his head.,leaves his tray and fans at someone.,gold0-orig,pos,unl,unl,unl,unl,\"Walking across the room, he pops one strawberry into his mouth and dumps the rest into a wastebasket.\",Someone\nlsmdc3037_IRON_MAN2-16801,18229,\"In his basement laboratory, someone blows dust off the assembled model. A holographic image of the scale model\",\"appears, overlapping the actual model.\",is on the zebra.,plays along with a few women.,computer dot on the left holds the screen in a flickering image.,is shown in the middle.,gold1-orig,pos,unl,unl,unl,pos,\"In his basement laboratory, someone blows dust off the assembled model.\",A holographic image of the scale model\nlsmdc3037_IRON_MAN2-16801,18232,The Unisphere glows bright white. Someone,draws a circle in the air with his finger.,\"flames hurtle from the sky, where flaming fireball to protect the tabletop.\",takes a cigarette from a box and drops it into the dragon sack.,shines out the shape of a cake.,wakes up and looks around.,gold0-orig,pos,unl,unl,unl,pos,The Unisphere glows bright white.,Someone\nlsmdc3037_IRON_MAN2-16801,18247,\"Someone lifts a red, white, and blue shield from a crate. As someone lifts a section of the tubing, someone\",slides the shield underneath.,pauses down and topples a log.,flips around then stands.,wrestles someone near the block.,climbs up to copies.,gold0-orig,pos,unl,unl,unl,unl,\"Someone lifts a red, white, and blue shield from a crate.\",\"As someone lifts a section of the tubing, someone\"\nlsmdc3037_IRON_MAN2-16801,18231,Someone lifts the holograph with both hands and turns. Someone,lowers the holograph and pushes it out in front of himself.,hesitates a moment then drops the coin and hangs up.,slides into the hand's interior chair.,raises another man gawks.,,gold1-orig,pos,unl,unl,unl,n/a,Someone lifts the holograph with both hands and turns.,Someone\nlsmdc3037_IRON_MAN2-16801,18245,The accelerator extends across the entire house. Someone,\"walks downstairs into the basement, punches in the security code, and enters someone's lab.\",uses a cable ans wrench smoothly throughout the gate.,returns to the same chilled horror.,\"mows through his rear - view mirror in his mirror, the footage of someone surrounding him.\",\"sets down his equipment and looks back at someone sitting with his feet up, looking down.\",gold0-orig,pos,unl,unl,unl,pos,The accelerator extends across the entire house.,Someone\nlsmdc3037_IRON_MAN2-16801,18248,\"As someone lifts a section of the tubing, someone slides the shield underneath. Someone\",places a level atop the section of tubing propped up by the shield.,fastens the chain around the components of the bike and then drops it onto the deck.,attaches more layer of spray to the curving path.,\"runs his way through the farmers, as the army of others walk off.\",,gold0-orig,pos,unl,unl,pos,n/a,\"As someone lifts a section of the tubing, someone slides the shield underneath.\",Someone\nlsmdc3037_IRON_MAN2-16801,18241,He connects cables to the box. He,\"drops the cables through the ceiling, down to the lab floor.\",rips open his coat to reveal the other man's socks.,\"ventures across a hall toward a dodge mob as the prisoners haul through the lobby, leaving the station.\",puts both hands into the liquor bottle.,\"takes off his mask, revealing a body of holes built by fire.\",gold0-orig,pos,unl,unl,unl,unl,He connects cables to the box.,He\nlsmdc3037_IRON_MAN2-16801,18227,\"He smiles slightly, then furrows his brow. Later, the disassembled model, stacked in four panels,\",\"rises out of the passenger seat of someone's convertible, as he drives down a highway.\",sits on a mound of flight cards.,finds a plant with a ridge of rocks.,shows a spike to the top of a golf program.,sits reading the sheet book.,gold0-reannot,pos,unl,unl,unl,pos,\"He smiles slightly, then furrows his brow.\",\"Later, the disassembled model, stacked in four panels,\"\nlsmdc3037_IRON_MAN2-16801,18244,\"Later, he completes the construction of a particle accelerator which incorporates the long tubes. The accelerator\",extends across the entire house.,shines in the manhattan skyline at their skyline.,stands at a muddy end.,pulls him off the top of the car.,reaches it and opens back down.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, he completes the construction of a particle accelerator which incorporates the long tubes.\",The accelerator\nlsmdc3037_IRON_MAN2-16801,18240,\"He jackhammers a hole in the floor, exposing an electrical junction box. He\",connects cables to the box.,crosses the bridge behind someone.,drops his keys and shows it upstairs.,stares off the bed.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He jackhammers a hole in the floor, exposing an electrical junction box.\",He\nlsmdc3037_IRON_MAN2-16801,18237,\"Someone pats his thighs, then throws his arms overhead. The sphere\",expands so that someone is sitting inside it.,grows rowdy as the chopper almost clings.,set several orange cones over their crest.,pulls as the people fall off the cloak and torn against the attacking hunter.,spins around a sharp glow as a far white pit becomes the towering ocean.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone pats his thighs, then throws his arms overhead.\",The sphere\nlsmdc3037_IRON_MAN2-16801,18220,\"As he lets go of the toy, the arm rotates again. He\",stands and grabs the basket of strawberries.,strokes its egg often to the surface.,stumbles forward and lands in a puddle of blood.,slams a bald boy onto the ground.,climbs up and runs across the bed.,gold1-reannot,pos,unl,unl,unl,unl,\"As he lets go of the toy, the arm rotates again.\",He\nlsmdc3037_IRON_MAN2-16801,18239,\"Someone smiles, then stands and walks across the room. Someone\",swings a sledgehammer and knocks holes in a concrete wall.,watches as he walks across the piano.,dashes from him and crosses gazes to the mirror.,wrenches the wheel and hits the button.,finds his brother in the intercom.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone smiles, then stands and walks across the room.\",Someone\nlsmdc3037_IRON_MAN2-16801,18225,Someone pulls off the sheet. Someone,\"forms an o with his right hand, and peers through the makeshift scope.\",sits through the plunger.,grabs the helm and sinks a few ground firm in the air.,bends off to receive the knife.,puts a rusty glove to his chest and wraps the blanket around him.,gold1-reannot,pos,unl,unl,unl,unl,Someone pulls off the sheet.,Someone\nlsmdc3037_IRON_MAN2-16801,18230,\"A holographic image of the scale model appears, overlapping the actual model. Someone\",lifts the holograph with both hands and turns.,rubs her thigh and gives a nod.,aims her body over her shoulder.,successfully raises the cup to a large hand basin lying roughly dripping black.,sucking out her tongue and cracking a smile.,gold0-reannot,pos,unl,unl,unl,unl,\"A holographic image of the scale model appears, overlapping the actual model.\",Someone\nanetv_qq1wRySmDTc,10118,A man is crouching in the woods next to a pile of stones. He,is explaining the building of a fire.,is demonstrating how to properly play with the golden house.,is surrounded by the flower.,walks over to the person sitting behind him.,,gold0-orig,pos,unl,unl,unl,n/a,A man is crouching in the woods next to a pile of stones.,He\nanetv_qq1wRySmDTc,10119,He is explaining the building of a fire. He,\"lights the wood, creating a fire.\",is talking about afterward they will be in test to end the game now.,places the carved box on the wall and uses the tool's model.,\"carves in it like massive campfire, which he is using to sing that it becomes a predator.\",\"is in layup world, throwing the bottle and singing directly into smoke.\",gold0-orig,pos,unl,unl,unl,unl,He is explaining the building of a fire.,He\nanetv_9fQ2wWFJJGo,19198,Two females then appear in the sand with a orange bucket and plastic shovel making sand castles. More pairs of women,are shown adding sand in their buckets and making their castles in the dirt together.,fall into a sand pit with yellow and blue stripes all over them.,falls over onto the sand.,appear in different clips talking about the sport on lives.,\"begin water skiing holding cones, while a group of people playing together.\",gold0-orig,pos,unl,unl,unl,unl,Two females then appear in the sand with a orange bucket and plastic shovel making sand castles.,More pairs of women\nanetv_9fQ2wWFJJGo,19197,A man and a woman are standing outside at a beach in the sand talking while the lady holds a brown paper bag in her hand and a man begins filming them. Two females then,appear in the sand with a orange bucket and plastic shovel making sand castles.,walk down a tight line of a beach looking down at the man from underwater.,perform a black food successfully in a competition.,begin to go into the pool with their sticks in their hands.,,gold1-orig,pos,unl,unl,pos,n/a,A man and a woman are standing outside at a beach in the sand talking while the lady holds a brown paper bag in her hand and a man begins filming them.,Two females then\nanetv_9fQ2wWFJJGo,15141,A man and woman are standing on a beach holding a paper bag. A woman,\"is kneeling on the beach, forming domes with buckets in the sand.\",grabs a female lady and carries them both up.,is putting out a bowl and stirring the mushrooms in a pot.,is then holding a ball on a stick and holding up a barbie.,jumps a high rope and begin swinging.,gold0-orig,pos,unl,unl,pos,pos,A man and woman are standing on a beach holding a paper bag.,A woman\nanetv_9fQ2wWFJJGo,15142,\"A woman is kneeling on the beach, forming domes with buckets in the sand. Someone hands out stuffed animals to the man and woman, and he\",gives them to the girls who were building in the sand.,begins to snowboard into the path of deep washed water.,leads her to a sunken rocky spot.,starts to play with the other one.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman is kneeling on the beach, forming domes with buckets in the sand.\",\"Someone hands out stuffed animals to the man and woman, and he\"\nlsmdc3073_THE_GUILT_TRIP-34688,8634,Someone flicks her eyes from side to side. Someone,\"nods repeatedly, his lips pursed.\",spins on the floor.,quickly loaded with groceries.,dragon leaps at her.,clears the spot by someone's wrist.,gold0-reannot,pos,unl,unl,unl,unl,Someone flicks her eyes from side to side.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83951,921,\"They set off arm and arm. Inside, someone\",'s helping someone with his coat.,sits up on the podium.,pulls a laser club over his sweaty gaze.,leads someone into a white leather wheelchair lobby.,,gold1-orig,pos,unl,unl,unl,n/a,They set off arm and arm.,\"Inside, someone\"\nanetv_WaWkDf6b_j4,14582,A man walks along a bare field while a woman walks around beside him. He,walks back and fourth preparing to jump and eventually jumps over a pole.,stands up and gestures for a camera.,kneels down to the board and begins to spin it around.,stops dead and walks back to the hand and throws a frisbee in him.,is cutting up a long piece of exercise instrument and starts talking about his rhythm.,gold0-orig,pos,unl,unl,unl,unl,A man walks along a bare field while a woman walks around beside him.,He\nanetv_WaWkDf6b_j4,14583,He walks back and fourth preparing to jump and eventually jumps over a pole. A girl claps for him and the same move,is shown again in slow motion.,is shown taking place.,is shown again several more times.,begins with several different people watching them before celebrating.,does a flip and somersaults from the mat.,gold0-orig,pos,pos,pos,pos,pos,He walks back and fourth preparing to jump and eventually jumps over a pole.,A girl claps for him and the same move\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31555,6731,They hide under a stairwell as thugs search for them. They,dash upstairs as the thugs move on.,arrive close to someone.,fly down the grand staircase behind people.,see that lead into someone.,bring a dirt pebble through the mess.,gold0-reannot,pos,unl,unl,unl,unl,They hide under a stairwell as thugs search for them.,They\nanetv_Ie7DREiXp08,1908,She then pulls contacts into the case and then places one in each eye. She,holds up the case in the end followed by her putting the contacts back into the case.,begins moving her hands off the sides to adjust her hair and empties it and applying a clean view.,cuts mom a cleans while looking at a large stuff cut in the wall.,parts away by the camera.,pours a lemon into both glasses while looking up at us.,gold1-orig,pos,unl,unl,unl,unl,She then pulls contacts into the case and then places one in each eye.,She\nanetv_Ie7DREiXp08,1907,A woman is seen speaking to the camera and pouring out liquids into a case. She then,pulls contacts into the case and then places one in each eye.,mixes the ingredients and pours them into a glass and mixes it up with her.,pours liquids into a glass and sets it into a glass.,pours it into her glasses then bounces it up in a cup.,mixes several liquids into a bowl and holds a finished drink of the drink.,gold0-reannot,pos,unl,unl,unl,pos,A woman is seen speaking to the camera and pouring out liquids into a case.,She then\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17823,\"She hikes up the skirt. In slow motion, she\",runs across the lawn in her high heels.,takes out her cell phone.,brings up a topic to a game.,goes through the ornamental opaque with brown plastic.,,gold0-orig,pos,unl,unl,unl,n/a,She hikes up the skirt.,\"In slow motion, she\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17848,\"She pops up beside the stage. Someone joins the band, playing a tambourine, but someone\",fails to notice her.,is still standing on her mobile.,can't believe what to look behind it.,has a long - handled round phone stick.,appears alone with her performance.,gold0-orig,pos,unl,unl,unl,unl,She pops up beside the stage.,\"Someone joins the band, playing a tambourine, but someone\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17843,\"She waves to the bride as she dances her way to the front of the parade. Now, strands of lights\",adorn a fancy outdoor reception.,fly away from the trees fucking.,move past the sparkle fins.,hang out under the sun.,shine from other buildings that are crowded on the empire - constructed structure.,gold1-orig,pos,unl,unl,unl,unl,She waves to the bride as she dances her way to the front of the parade.,\"Now, strands of lights\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17833,\"Now she runs up the front steps of a church, holding her poufy dress above her ankles. She\",\"hurries inside, to a tall set of wooden doors, and frantically scans the pews.\",\"bumps to the floor, flings her pink scarf along with her.\",performs lovingly across the floor.,is on a stage in the encampment.,\"pulls up to a castle, and gives someone a half minutes.\",gold1-orig,pos,unl,unl,unl,pos,\"Now she runs up the front steps of a church, holding her poufy dress above her ankles.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17830,Someone jumps out of her car. She,hurries through the crowd.,pushes up through the doorway and knocks to the window.,\"gets up, walks away, then enters in the adjoining bedroom.\",pulls out a t - shirt.,shoves it shut.,gold0-orig,pos,unl,unl,unl,unl,Someone jumps out of her car.,She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17841,The hatchback arrives and gets stuck behind traffic. Someone,gets out and runs through the stopped vehicles.,gets off the car and falls onto the coupe.,grabs the water tries to shield her from the drivers car.,grabs someone and speeds up.,spots someone defending on the way.,gold0-orig,pos,unl,unl,unl,pos,The hatchback arrives and gets stuck behind traffic.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17824,\"In slow motion, she runs across the lawn in her high heels. She\",\"sprints past a pond, then heads out through the open gate of a white - picket fence.\",glides over the bar clapping her hands and waves.,watches with her mouth hanging open as she scrambles on the ledge.,\"jumps, jumping high.\",,gold0-orig,pos,unl,pos,pos,n/a,\"In slow motion, she runs across the lawn in her high heels.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17820,\"Someone takes the list, then dashes around a few tables, and starts across the lawn. She\",\"falls flat on her face, catching everyone's attention.\",passes her for a book.,stands with her back to the bar with someone at the back of the bar.,gets farther away just as someone approaches.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone takes the list, then dashes around a few tables, and starts across the lawn.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17844,Cameras flash as the paparazzi clamors for shots of a couple arriving on a red carpet. Someone,rides up and leaves the pizza - delivery bike with a valet.,sits down and row nervously on a desk as he takes the cue.,shouts after the number.,pulls out a helmet terminal.,dabs his cheek with a napkin.,gold0-orig,unl,unl,unl,unl,unl,Cameras flash as the paparazzi clamors for shots of a couple arriving on a red carpet.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17834,\"She hurries inside, to a tall set of wooden doors, and frantically scans the pews. The doors\",swing shut behind her.,split slowly shut behind her.,are open and a second doberman passes out of the door frame.,\"shoot out, escorted from the train station and onto the floor.\",,gold0-orig,pos,unl,unl,unl,n/a,\"She hurries inside, to a tall set of wooden doors, and frantically scans the pews.\",The doors\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17825,\"She sprints past a pond, then heads out through the open gate of a white - picket fence. At a valet station, she\",finds the keys of several parked cars.,struggles with a large barrier in her hands.,crosses between two two - topped visitors.,opens the garage door for a cab.,pulls out a car.,gold1-orig,pos,unl,unl,unl,unl,\"She sprints past a pond, then heads out through the open gate of a white - picket fence.\",\"At a valet station, she\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17849,\"Someone joins the band, playing a tambourine, but someone fails to notice her. She\",pushes a bass player out of the way and sings into a microphone.,\"looks amused as the silver tag ignores her, and her jaw drops.\",\"walks, holding bows and starts to chase them off.\",sinks to his knees.,looks down as the disc starts to play.,gold0-orig,pos,unl,unl,unl,unl,\"Someone joins the band, playing a tambourine, but someone fails to notice her.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17846,\"Someone runs forward, but finds her path blocked by the crowded dance floor. She\",\"waves her arms, trying to catch someone's attention.\",slumps down on a bench and runs over beside someone.,\"goes over to the fireplace, trying to keep up.\",\"looks up at someone, who unwraps his legs from someone.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone runs forward, but finds her path blocked by the crowded dance floor.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17840,\"At night, a crowd holds a bride and groom up over their shoulders, obstructing a city street. The hatchback\",arrives and gets stuck behind traffic.,pulls away from one of his military platforms.,follows them down the road on 10 yards from the coast.,pulls up at a black - and - white house.,drives down a highway.,gold1-orig,pos,unl,pos,pos,pos,\"At night, a crowd holds a bride and groom up over their shoulders, obstructing a city street.\",The hatchback\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17826,Two lounging valets wave goodbye. Someone,pulls out in a little blue hatchback.,gets up and faces the students.,sets my stuffed into her pockets.,hurtle along the darkness between lines charred head and trees.,turns to face someone.,gold0-orig,pos,unl,unl,unl,pos,Two lounging valets wave goodbye.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17839,\"Driving again, she violently crosses another wedding off her list. She\",cruises across a truss bridge.,\"stares tenderly at it, then pulls off an old radar screen.\",crosses to her laptop and knocks on her butt.,jogs up to a table and lays down a cigarette bag.,sits down at the cafeteria floor.,gold0-orig,pos,unl,unl,unl,pos,\"Driving again, she violently crosses another wedding off her list.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17831,She hurries through the crowd. A photo,shows the smiling wedding party.,shows someone remaining in the theatre.,shows him with a torch.,moves from the entrance to a black taxi.,shows samantha a guard among his deputies.,gold0-orig,pos,unl,unl,unl,unl,She hurries through the crowd.,A photo\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17837,He lays eyes on someone. The confused guests,watch her run back out through the doors.,\"trip goodbye, then sit on the deck at the piano.\",hungrily back at him.,laugh for each other.,have now come on for someone.,gold1-reannot,pos,unl,unl,pos,pos,He lays eyes on someone.,The confused guests\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17845,\"Halfway over the fence, her dress gets caught. The dress\",tears as she falls into some shrubbery.,is almost capsizing as she catches him.,turns to the two best friends at the bar.,is stamped with british emblem.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Halfway over the fence, her dress gets caught.\",The dress\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17828,\"As she drives off, our view rises to glimpse the reception tent across the pond. A photographer\",takes pictures of a bride and groom.,removes a cigarette from the table.,knocks over the railing of the upper deck on the upper deck.,sees it as the photographers are landing around them and a view of the unharmed shrubs just below them.,glides down the sail towards a cop but button - overlooking the camera.,gold0-reannot,pos,unl,unl,unl,unl,\"As she drives off, our view rises to glimpse the reception tent across the pond.\",A photographer\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17827,\"Someone pulls out in a little blue hatchback. As she drives off, our view\",rises to glimpse the reception tent across the pond.,slides to partly shot.,shows a woman carrying a tray of fresh roses.,follows the advancing addresses.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone pulls out in a little blue hatchback.,\"As she drives off, our view\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17836,The bride and groom are someone and someone. He,lays eyes on someone.,is packing his dinner.,trudges to someone's cot.,slowly turns to leave.,looks over at people.,gold1-reannot,pos,unl,unl,pos,pos,The bride and groom are someone and someone.,He\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17819,The wedding planner confronts a server. Someone,\"takes the list, then dashes around a few tables, and starts across the lawn.\",presents a bouquet of manuscripts to someone as she brings a single letter back.,considers the last tickets.,gives a boyish smile then gazes downward.,\"gets up and gazes at him, people.\",gold0-reannot,pos,unl,unl,unl,unl,The wedding planner confronts a server.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17835,The doors swing shut behind her. The bride and groom,are someone and someone.,leads them off with a tree.,follow her to the concert.,are lined up patient.,are approaching the tail.,gold1-reannot,pos,unl,unl,unl,unl,The doors swing shut behind her.,The bride and groom\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17838,\"The confused guests watch her run back out through the doors. Driving again, she violently\",crosses another wedding off her list.,tumbles the door to her office.,flings policemen to grasp of wine.,slides down the slide again.,tears off her pillow.,gold0-reannot,pos,unl,unl,unl,unl,The confused guests watch her run back out through the doors.,\"Driving again, she violently\"\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17832,A photo shows the smiling wedding party. Now she,\"runs up the front steps of a church, holding her poufy dress above her ankles.\",\"goes into her room, so there's a slightly elderly woman with black uniform lining her brow.\",waits by the house at longbourn.,drives off with an anxious frown.,\"follows the fruit into a large living room, where children, others, sit on folding chairs, huddled with their lights.\",gold0-reannot,pos,unl,unl,unl,unl,A photo shows the smiling wedding party.,Now she\nlsmdc3088_WHATS_YOUR_NUMBER-42461,17822,\"Getting back up, she tears some gauzy fabric from her pink dress. She\",hikes up the skirt.,unfolds the layers of swiss cheese.,sits next to someone with the necklace in her hand.,mouths to herself doing the beauty of someone.,lies on the bed.,gold0-reannot,pos,unl,unl,unl,pos,\"Getting back up, she tears some gauzy fabric from her pink dress.\",She\nanetv_Ccy8WD2k4L8,9632,A woman is dancing on a stage. She,picks up a microphone and starts singing.,begins dancing and dancing on the stage.,is playing an instrument.,does a pose with a baton on her lap.,is dancing while twirling a baton.,gold0-orig,pos,unl,unl,pos,pos,A woman is dancing on a stage.,She\nanetv_Ccy8WD2k4L8,9633,She picks up a microphone and starts singing. She,begins to play a drum set in front of her.,is playing the violin next to them.,begins to play his harmonica again.,picks up a flute and tries to play it.,removes the harmonica from the can and starts playing.,gold1-orig,pos,unl,unl,pos,pos,She picks up a microphone and starts singing.,She\nanetv_eUxFTEeNIGg,8556,The man stops jumping and his coach pulls the tape off his hands. We then,see the ending screen.,see the man with the black disk in it.,see two boys playing paintball with each other as a gray boy is seen.,see the mid title screen.,see the ending score credit.,gold0-orig,pos,unl,unl,pos,pos,The man stops jumping and his coach pulls the tape off his hands.,We then\nanetv_eUxFTEeNIGg,8554,A man jumps rope in a boxing ring in a mall as people watch. The man,loses his rhythm and has to start over two times.,\"slows and gets off his stands, moves forward and finishes and spins about the shovel.\",\"reverses, runs to the center of the ring and run to measure.\",speaking to the camera followed by a half percussion people.,does double bars while another swing into a field and catch him in the air.,gold0-orig,pos,unl,unl,unl,unl,A man jumps rope in a boxing ring in a mall as people watch.,The man\nanetv_eUxFTEeNIGg,12264,Man is standing in the middle of a ring jumping the rope. referee,is standing on a corner of a ring.,is standing in the track holding a long stick.,is standing behind watching the players throwing the ball.,is watching behind him and cheering them back to him.,is standing on the ring with the boxer as they walk by.,gold1-reannot,pos,unl,unl,unl,unl,Man is standing in the middle of a ring jumping the rope.,referee\nanetv_eUxFTEeNIGg,8555,The man loses his rhythm and has to start over two times. The man stops jumping and his coach,pulls the tape off his hands.,are followed by the man running around in circles.,raise his arms up as he begins to dance.,did the same thing.,,gold0-reannot,pos,unl,unl,pos,n/a,The man loses his rhythm and has to start over two times.,The man stops jumping and his coach\nanetv_iSJ87SnNLPc,4709,He picks up a bottle and takes a drink. He then,begins to dance in a room.,begins processing the drink.,sets it up on the table and sets it in full glass.,brings the drink again.,drops it off the wall.,gold1-orig,pos,unl,unl,unl,unl,He picks up a bottle and takes a drink.,He then\nanetv_iSJ87SnNLPc,12436,The guy now fully clothed dances. The guy,poses with the beverage.,takes his shoe off and picks them up.,spots his shirt behind his shirt.,lifts his helmet left and holds his hand up the side of the head.,mesh into a sharp crack rise from their seats.,gold0-orig,pos,unl,unl,unl,unl,The guy now fully clothed dances.,The guy\nanetv_iSJ87SnNLPc,4708,A kid is brushing his teeth. He,picks up a bottle and takes a drink.,uses an electric toothbrush to shave his legs.,is carrying a toothbrush in his hand.,plays a electric toothbrush with his tongue.,,gold1-orig,pos,unl,pos,pos,n/a,A kid is brushing his teeth.,He\nanetv_kO_4QDNExkY,7793,A the hose of a leaf blower is shown. The hose,begins forcefully blowing leaves away from the camera.,is used in blow blower.,is used to scrape off the dog.,is tied to the counter.,,gold0-orig,pos,unl,unl,unl,n/a,A the hose of a leaf blower is shown.,The hose\nanetv_kO_4QDNExkY,7794,The hose begins forcefully blowing leaves away from the camera. The person holding the leaf blower repeatedly swings the hose,left to ring blowing leaves into a pile.,around and flinging the dogs onto the lane.,\"into the air, letting it split across the windshield, soaring the branches.\",quickly after the swerve.,,gold0-reannot,pos,unl,unl,unl,n/a,The hose begins forcefully blowing leaves away from the camera.,The person holding the leaf blower repeatedly swings the hose\nanetv_H2KVO7LWU5w,11040,A teen is raking the lawn. A teen,tosses a rake full of leaves at the toddler.,stands in black wire.,stands on a playground playground next to a child.,tries to swing at the pinata.,,gold1-orig,unl,unl,unl,unl,n/a,A teen is raking the lawn.,A teen\nanetv_H2KVO7LWU5w,11039,A toddler is holding a leaf blower. A teen,is raking the lawn.,is playing the bagpipes on the tree and the dog mows the lawn.,walks out to a person to get a swing at a large pinata.,girl makes a high turn to the pinata.,pushes a leaf blower through the rain.,gold0-orig,pos,unl,pos,pos,pos,A toddler is holding a leaf blower.,A teen\nanetv_aRdqcOaBvjk,7112,A person is seen close up riding on the back of a bike shooting a paint ball off into the distance. Several shots,are shown of people riding around in cars shooting paint balls at one another.,of several people is shown as well as the man signing a ball on a field.,are shown of people gliding along the snow as well as riding down tube down the hill.,of alcohol is shown as well as the girl speaking to the camera and two more shots of a car.,are shown of people jump in a game on the field in the distance.,gold0-orig,pos,unl,unl,unl,unl,A person is seen close up riding on the back of a bike shooting a paint ball off into the distance.,Several shots\nanetv_DUb48prwNZk,1571,A close up of tin foil is shown leading a woman taking a large hit out of a hookah hose. She continues smoking out of the hookah as the camera captures her movements and she,sits down in the end to smoke more.,is blowing smoke out of a tank.,continues to sniff around.,continues blowing smoke around it and blows a bit of smoke.,,gold1-orig,pos,unl,unl,pos,n/a,A close up of tin foil is shown leading a woman taking a large hit out of a hookah hose.,She continues smoking out of the hookah as the camera captures her movements and she\nanetv_DUb48prwNZk,2475,A close up of a hookah is shown as well as a camera panning around a girl. The girl,is seen holding a hose and smoking from the hookah.,rubs her hands up and down with another person laying down a slide.,continues putting on the cigarette while looking back to the camera.,exhales calmly and ends by speaking to the camera and holding the mic close to it.,,gold0-orig,pos,unl,pos,pos,n/a,A close up of a hookah is shown as well as a camera panning around a girl.,The girl\nanetv_DUb48prwNZk,2476,The girl is seen holding a hose and smoking from the hookah. The camera,pans around the girl as she sits down and continues smoking.,zooms in on the lady playing the cigarette.,zooms in on her and blows smoke out.,zooms up to show the swirling pulses of her nose.,moves in to smoke while smiling to the camera.,gold0-orig,pos,unl,unl,unl,unl,The girl is seen holding a hose and smoking from the hookah.,The camera\nanetv_NSegylr0MBg,13965,We see a man adjust the camera and shake his hair. We,see commentary on the screen.,see the product being written on the glass.,see the ending screen.,see the mechanics of the press.,see his finger to the screen.,gold1-orig,pos,unl,unl,unl,pos,We see a man adjust the camera and shake his hair.,We\nanetv_NSegylr0MBg,13971,The man brushes his hair with a brush. We see the scene go dark and the writing,appears on the screen.,come apart on the screen.,abruptly fades away on black.,appears in the background.,is repeated again in slow motion.,gold0-orig,pos,unl,unl,pos,pos,The man brushes his hair with a brush.,We see the scene go dark and the writing\nanetv_NSegylr0MBg,13970,The man adds pomades to his hair. The man,brushes his hair with a brush.,grabs the baking towel and rakes back in a veet line and puts it around the lady in the mirror.,plays a saxophone while the others on the sides.,cuts the hair with an iron.,retreats to a counter and curls around all the.,gold0-orig,pos,unl,unl,unl,unl,The man adds pomades to his hair.,The man\nanetv_NSegylr0MBg,13967,The man uses a brush and instructions appear. We,see more instructions on the screen.,\", a woman demonstrates how to comb and style every section of the hair.\",cuts the man's hair before final braided to the viewer.,\", the man begins talking to the camera and looking at the camera.\",come across the screen releasing the names.,gold0-orig,pos,unl,unl,unl,unl,The man uses a brush and instructions appear.,We\nanetv_NSegylr0MBg,13969,Instruction tell views to mold hair. More instructions,appear on the screen.,are shown with the medical tools needed for washing clothes.,are shown throughout the individual's feet.,are shown before going to the reporter practicing shop.,,gold0-orig,pos,unl,unl,unl,n/a,Instruction tell views to mold hair.,More instructions\nanetv_NSegylr0MBg,13968,We see more instructions on the screen. Instruction,tell views to mold hair.,are shown on a field then we see kids screwing pucks in a cart.,play music in front of form clips.,fingers left the boy sitting behind a desk.,,gold0-reannot,pos,unl,unl,unl,n/a,We see more instructions on the screen.,Instruction\nanetv_I62kL8H81XA,5155,\"Then, a person adds sugar, and lemon to pot with water to warm. Then, the person\",adds the lemonade to a jar and serves in a cup.,rinses the pan and mix the mixture in a new pot.,uses a baking plate to pull the lemonade out of the sauce.,\"mixes the ingredients round, then olive oil in a brown plate.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Then, a person adds sugar, and lemon to pot with water to warm.\",\"Then, the person\"\nanetv_I62kL8H81XA,5154,\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar are on at table. Then, a person\",\"adds sugar, and lemon to pot with water to warm.\",uses a knife and paddles to mix in a type flute.,adds chocolate cake to each chords.,puts a glass in their left and a large child is shown standing on a floor next to a spoon in a cup.,pours in the batter and the fifth person stops and adds sugar to the olympic shell.,gold0-orig,pos,unl,unl,unl,unl,\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar are on at table.\",\"Then, a person\"\nanetv_I62kL8H81XA,5153,\"A cup with lemonade is next a jar with a lemonade. A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar\",are on at table.,\", and lemon juice.\",is obviously the dough.,is poured on the shaker.,and ice in the cup to fix it.,gold0-orig,pos,unl,unl,unl,unl,A cup with lemonade is next a jar with a lemonade.,\"A bowl with three cups of cold water, a cup of lemon juice, a cup of water and a cup of sugar\"\nanetv_p1JSdZmztGk,386,\"The people enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat. Several shots\",are shown of a kitchen as well as people riding on the boat and still continue to speak to the camera.,\"are shown of the attire standing and becoming, and joining the children smiling sunscreen.\",are shown of the man shoveling from the beach and the camera pans close to people.,are then shown of people riding in the mountain and doing motocross tricks.,are shown of the vomit walking on the deck as well as the interior of the food bar.,gold1-orig,pos,unl,unl,unl,unl,\"The people enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat.\",Several shots\nanetv_p1JSdZmztGk,385,Two people are seen speaking to one another while standing on the docks as well as speak to the camera. The people,\"enjoy themselves around the are by getting their hair cut, eating food, and the man preparing a boat.\",are seen performing tricks on a horse while stepping back and fourth next to the horse.,continue speaking while playing with the electrical and explaining all the equipment on the bar.,continue riding around with one another as well as the man jumping and others moving around.,move one after the other with the bus while sitting together on the boat and looking to one another.,gold1-reannot,unl,unl,unl,unl,unl,Two people are seen speaking to one another while standing on the docks as well as speak to the camera.,The people\nanetv_YdfWewUrcTw,12076,\"The man falls off his skateboard repeatedly. He flips the skateboard, and we\",see it in slow motion.,see a cable moving on screen.,\"see a small, series of swings.\",zoom in on a man leaning out of the bushes.,see the again man.,gold0-orig,pos,unl,unl,unl,unl,The man falls off his skateboard repeatedly.,\"He flips the skateboard, and we\"\nanetv_YdfWewUrcTw,12077,\"He flips the skateboard, and we see it in slow motion. The man gets a hat, and we\",see the end screen.,see onlookers in the cage.,see a man kneeling outdoors.,see the man in a room practicing as he races.,see him standing close.,gold0-orig,pos,unl,unl,unl,pos,\"He flips the skateboard, and we see it in slow motion.\",\"The man gets a hat, and we\"\nanetv_YdfWewUrcTw,12078,\"The man gets a hat, and we see the end screen. A man jumps on a pile of boxes and we\",see the end screen again.,see him start a new match.,see a man dancing with a large piece of wood.,see the closing screen.,see a man pull a ball on a large table next to a backyard.,gold1-orig,pos,unl,unl,unl,unl,\"The man gets a hat, and we see the end screen.\",A man jumps on a pile of boxes and we\nanetv_YdfWewUrcTw,12075,Inside the warehouse we see a box the men ride their skateboards over. The man,falls off his skateboard repeatedly.,hold their helmet and show the site of plenty of people and bicycles.,reaches around to adjust the jack son his bike.,climbs off the bike.,does a handstand flip and drops onto a different seat.,gold0-orig,pos,unl,unl,unl,unl,Inside the warehouse we see a box the men ride their skateboards over.,The man\nanetv_YdfWewUrcTw,12074,We see a man talking to two other men outside a warehouse. Inside the warehouse we,see a box the men ride their skateboards over.,see two men wearing a bikini.,see the dealer wearing sunglasses on his front.,see people walking on the police town bus.,see a man being interviewed on a machine.,gold0-orig,pos,unl,unl,unl,unl,We see a man talking to two other men outside a warehouse.,Inside the warehouse we\nanetv_0ysVELHeEyc,18761,They continue down the fence and remove some dead plants. They,show a product used to clean the fence.,scuttle down to pick up the ground.,are cleaning the roof as hard as possible.,continue to paint the fence.,,gold0-orig,pos,unl,pos,pos,n/a,They continue down the fence and remove some dead plants.,They\nanetv_0ysVELHeEyc,18758,It stops at a broken section. It,continues to pan down the fence.,runs halfway down a corridor and stops just short.,film hyena widely atop a cluster hung with kayaks.,bounces off the pavement.,\"leap out of the foreground, then jumps up.\",gold0-orig,pos,unl,unl,unl,unl,It stops at a broken section.,It\nanetv_0ysVELHeEyc,18759,It continues to pan down the fence. Nails,are hammered into the fence.,are quickly shown as well as people walking away.,appear horizontally across the screen with the tool.,are loose onto the floor.,,gold0-orig,pos,unl,pos,pos,n/a,It continues to pan down the fence.,Nails\nanetv_0ysVELHeEyc,18757,The camera pans down the side of a fence. It,stops at a broken section.,pours across the water.,is shown with numbers on it.,shows the grey roll.,stops playing and is underneath.,gold0-orig,pos,unl,unl,unl,unl,The camera pans down the side of a fence.,It\nanetv_0ysVELHeEyc,18762,They show a product used to clean the fence. A man,sprays the fence with the product.,opens the door to be done and talks to the camera.,\"sits in the woods, talking to the camera.\",cuts a piece of fabric with shears.,,gold0-orig,pos,unl,unl,unl,n/a,They show a product used to clean the fence.,A man\nanetv_0ysVELHeEyc,18756,Text appears on the screen briefly. The camera,pans down the side of a fence.,pans down to the camera.,shows images of divers boxing with an arm dryer.,\"is swishing, its always dressed in red and pink.\",zooms into the two woman.,gold0-reannot,pos,unl,unl,unl,pos,Text appears on the screen briefly.,The camera\nanetv_0ysVELHeEyc,18760,Nails are hammered into the fence. They,continue down the fence and remove some dead plants.,use five settings to cut raw ends into feeding.,use axes to clean the fence.,stab at each other and count on fists.,breeze strokes their bare legs.,gold1-reannot,pos,unl,unl,unl,unl,Nails are hammered into the fence.,They\nanetv_0ysVELHeEyc,18763,A man sprays the fence with the product. He,drops it and gets some paint.,are shown a hand to patched them.,\", he uses the stick to shoot a wall with the tool.\",then leaves the tree with blue paint.,uses carpet to iron snow covering the roof.,gold1-reannot,unl,unl,unl,unl,unl,A man sprays the fence with the product.,He\nanetv_cGqmHplppAU,17505,Various clips are shown of people playing on the beach as well putting sunscreen on and carrying objects. A large explosion,is shown followed by kids fishing with a man and more clips of people playing on the beach.,returns to the beach and it is about 8 completing the day.,is shown when the video ends up.,knocks another chair off into the distance.,\"is seen shown as well as more shown riding waves in the water, smiling to the camera.\",gold0-orig,pos,unl,unl,unl,unl,Various clips are shown of people playing on the beach as well putting sunscreen on and carrying objects.,A large explosion\nanetv_a7YSE6dZ1yk,5521,\"A woman takes a cook book and gathers ingredients and materials on the counter. Then, she\",measures the ingredients to put in a bowl.,shows off how she made gifts.,shown creamy wine and shakes it in glass.,\"puts into her lesson, unfolds some cilantro.\",mixes bologna salad onto the plate.,gold0-orig,pos,unl,unl,unl,pos,A woman takes a cook book and gathers ingredients and materials on the counter.,\"Then, she\"\nanetv_a7YSE6dZ1yk,14326,She brings out several ingredients and begins combining them into a bowl. She,moves her arms out and changes into a plate of cookies laid out with her eating them.,pours milk into a baking glass and places the gryffindors into the glass.,continues laying various ingredients into a bowl in a bowl.,proceeds together up the sauce for a few seconds while speaking to the camera.,\"picks them up, then takes a sponge and pours water into a bowl.\",gold1-orig,pos,unl,unl,unl,unl,She brings out several ingredients and begins combining them into a bowl.,She\nanetv_a7YSE6dZ1yk,5522,\"Then, she puts oil, eggs and the rest of the ingredients in the bowl, then the woman mix the ingredients and put flower an other ingredients. Then, the woman mix the dough with her hands, then she\",wash and dyes her hands.,add one little sugar then give it sweet zest and the slices of the ball cake.,adds some egg white pasta with a blue pepper to spread it onto a plate.,puts the contents into the salad with a mixed pitcher while in the bowl and mix other as objects.,\"add the new mix into the pot, then bakes and put cheese on the dish with a milk scoop.\",gold1-orig,pos,unl,unl,unl,unl,\"Then, she puts oil, eggs and the rest of the ingredients in the bowl, then the woman mix the ingredients and put flower an other ingredients.\",\"Then, the woman mix the dough with her hands, then she\"\nanetv_3VkqckKyshc,760,A man dressed in a camouflaged suit is standing in a large grassy field with other people and he's pulling on a string we can barely see. There,are a lot of other people moving around on the field doing their own thing.,\"is shown of a guard holding a jump rope, as well as the stadium with people walking.\",\"is a red made triangle on the front of the title, and there are an orange watching in the background.\",\", the man demonstrates tai chi outside of circle.\",,gold0-orig,pos,unl,unl,pos,n/a,A man dressed in a camouflaged suit is standing in a large grassy field with other people and he's pulling on a string we can barely see.,There\nanetv_3VkqckKyshc,761,There are a lot of other people moving around on the field doing their own thing. The camera angles are changing and when we get a close up of the man we,can finally see the string he is pulling on.,are smiling.,can be seen at one point.,see that we saw them out by a hand.,,gold1-orig,pos,unl,unl,unl,n/a,There are a lot of other people moving around on the field doing their own thing.,The camera angles are changing and when we get a close up of the man we\nanetv_BD_ON66t6rM,1316,A man is kayaking on water and moving his arms back and fourth quickly. The camera,follows him moving through the water and eventually works his way towards a bridge.,jumps across a sand plant with a man in a large green kayak.,pans around the man as well as older and speaking to the camera.,zooms back on the man while speaking to the camera.,stands up and starts working out on the raft.,gold1-orig,pos,unl,unl,unl,unl,A man is kayaking on water and moving his arms back and fourth quickly.,The camera\nlsmdc3007_A_THOUSAND_WORDS-3552,1982,Outside sun shines on the Bodhi tree. A leaf,falls from the tree.,blows the wake off his broomstick.,comes along where people walk along it's small lake bordered by elegant white headstones.,drifts up to someone.,hangs over a branch.,gold0-orig,pos,unl,unl,pos,pos,Outside sun shines on the Bodhi tree.,A leaf\nlsmdc3007_A_THOUSAND_WORDS-3552,1976,Someone takes out his cellphone. Jacks,grasps then glares at his phone.,runs onto a security guard and takes an elevator with separate guns.,emerge from the dressing room.,sit in a chair and stand still listening.,climbs back into the apartment and sits down.,gold0-orig,pos,unl,pos,pos,pos,Someone takes out his cellphone.,Jacks\nlsmdc3007_A_THOUSAND_WORDS-3552,1978,\"As someone laughs, leaves shoot out of his mouth. More leaves\",fly from someone's mouth.,\"tumble on the ground, as it sweeps above the undergrowth.\",fall toward someone.,shoot at someone.,\"fall into the corners, and he pulls them on.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone laughs, leaves shoot out of his mouth.\",More leaves\nlsmdc3007_A_THOUSAND_WORDS-3552,1981,\"Someone gets up, steps to a window, and pulls aside a curtain. Outside sun\",shines on the bodhi tree.,is set off in a dark yard.,shines in a crystal chandelier on the foliage above their heads.,shines brightly through a window in the sparse paneled walls.,shines on a black screen.,gold1-orig,pos,unl,pos,pos,pos,\"Someone gets up, steps to a window, and pulls aside a curtain.\",Outside sun\nlsmdc3007_A_THOUSAND_WORDS-3552,1986,\"Someone turns, strides across the room, picks up his briefcase, then turns back to face the tree. Smiling, someone\",turns toward the tree and raises his middle finger.,enters the house and hands him a folded box of chocolates.,holds his head for her with a soft smile between them.,removes the card from the ping pong table.,leans down to a table and lays a hand on someone's forehead.,gold0-orig,pos,unl,unl,unl,unl,\"Someone turns, strides across the room, picks up his briefcase, then turns back to face the tree.\",\"Smiling, someone\"\nlsmdc3007_A_THOUSAND_WORDS-3552,1979,More leaves fly from someone's mouth. Someone,covers and uncovers his mouth.,uses the gate display with his back to someone.,grabs a letter out of submerges.,sees his peace of vision.,smiles down at her.,gold0-orig,pos,unl,unl,unl,unl,More leaves fly from someone's mouth.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3552,1988,Someone holds up three fingers. Someone,spreads his hands apart.,sports a dark cap as she sinks inside.,\"sits at a desk and taps someone, then stands outside then looks with headscarf.\",kisses her lips and gives him a friendly hug.,rests her forehead against her temples.,gold0-orig,pos,unl,unl,unl,unl,Someone holds up three fingers.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3552,1980,\"He raises his head and looks at the other half of the bed, which is empty. Someone\",\"gets up, steps to a window, and pulls aside a curtain.\",crawls over the fish.,stands on a bench and faces someone.,looks at someone as he passes.,goes to a rusty - side window and looks up.,gold0-orig,pos,unl,unl,pos,pos,\"He raises his head and looks at the other half of the bed, which is empty.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3552,1989,Someone spreads his hands apart. Someone,holds up three fingers again.,follows him down a stiff path.,pulls his quill out.,looks down at the photos.,offers a cordial smile.,gold1-orig,pos,unl,unl,unl,unl,Someone spreads his hands apart.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3552,1984,The shadows of falling leaves sweep across someone. He,stops writing and looks outside at the tree.,\"shoots a ominous glance at her even as they walk away, leaving the group toward the couple.\",\"stops short, looks down a street, and stops behind and starts to mask.\",kneels down and grabs someone's wrists.,chases after someone as they flee.,gold0-reannot,pos,unl,unl,pos,pos,The shadows of falling leaves sweep across someone.,He\nlsmdc3007_A_THOUSAND_WORDS-3552,1985,\"Someone glares at the tree, then writes, Die Tree. Someone\",\"turns, strides across the room, picks up his briefcase, then turns back to face the tree.\",chalks her fan out of an open box.,and his mother pop news in the auditorium.,reclines on the elephant.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone glares at the tree, then writes, Die Tree.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3552,1987,At the coffee shop someone stands at the counter and grins. Someone,holds up three fingers.,runs in with her in his arms.,stares back at the window.,stands at the bar by her in a colorful dress.,walks up to someone.,gold0-reannot,pos,unl,unl,unl,pos,At the coffee shop someone stands at the counter and grins.,Someone\nanetv_D9eo9NfFhkg,3352,The bald headed man places a menu on the side of the bus. The lady from the ice cream parlour bus,hands an ice cream cone to a client.,sees someone at the bar.,is seen on the screen.,\"sits several yards nearby, around it.\",\"arrives at the scene, followed by the people eating and drinking wine.\",gold0-orig,pos,unl,unl,unl,unl,The bald headed man places a menu on the side of the bus.,The lady from the ice cream parlour bus\nanetv_D9eo9NfFhkg,3353,Multiple images and clips of many different people eating and showing their ice cream. The bald man and the lady inside of the ice cream parlour bus,are shown working and picking up supplies as more images of patrons eat and show their ice cream treats.,chases the man loads.,are shown on the beach.,has a boy's arm.,struggle with men on the sidewalk.,gold0-orig,pos,unl,unl,unl,unl,Multiple images and clips of many different people eating and showing their ice cream.,The bald man and the lady inside of the ice cream parlour bus\nanetv_qiw2I1oQIVQ,7720,\"A group of drum players gather, playing in a room. Their playing\",\"is interspersed with images of sheet music, then returns to their performance.\",is more set of polo.,is set by a bunch.,instruments are played with metal screens interspersed the video.,,gold0-orig,pos,unl,unl,pos,n/a,\"A group of drum players gather, playing in a room.\",Their playing\nanetv_qiw2I1oQIVQ,7719,Several black and white photos are being shown of people who played drums. A group of drum players,\"gather, playing in a room.\",are shown inside the instruments.,watch them from the sidelines and clap.,prepare to play the game.,are playing drums with both hands.,gold1-reannot,pos,unl,unl,unl,pos,Several black and white photos are being shown of people who played drums.,A group of drum players\nanetv_PT4x_Y5lu_g,4037,A girl dives off the board into the water. They,take turns as they flip through the air into the pool.,\"stand in canoes, attached to the water skis.\",begin to jump and start to ramp out a lot of jumps as they go.,see the girls snowboard on the side of the boat.,appear lights and surface her.,gold0-orig,pos,unl,unl,unl,unl,A girl dives off the board into the water.,They\nanetv_PT4x_Y5lu_g,4036,A group of swimmers gather in front of judges. A girl,dives off the board into the water.,plays the dart.,\"plays on the drum, critique.\",throws a discus in front of a boat.,,gold0-orig,pos,unl,unl,pos,n/a,A group of swimmers gather in front of judges.,A girl\nanetv_PT4x_Y5lu_g,1622,A person is seen standing ready at the end of a diving board followed by walking towards the end and jumping in the pool. Several more clips,are shown of the person performing impressive dives into the pool while her same clip is shown again afterwards in slow motion.,are shown of people running from the water all around the track doing several trick shots as well as swimming.,are shown of people throwing parts off the board as well as wave to the camera as well.,are shown of people crashing all around a pool.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen standing ready at the end of a diving board followed by walking towards the end and jumping in the pool.,Several more clips\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7171,\"Standing over him, someone collapses his modified weapon and readies himself for a final strike. Someone\",brings down his ax.,clasps his father's shoulder and runs off with him.,levels his darts at her and she watch.,falls back on the dash.,,gold0-orig,pos,unl,unl,unl,n/a,\"Standing over him, someone collapses his modified weapon and readies himself for a final strike.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7154,\"Up ahead, someone bounds off the back of two horses and mounts a third. Someone\",nears his target holding his ax at the ready.,walks up the steps and opens his front door for someone.,\"sits up, talking beneath.\",pulls off his jacket.,sticks his head into the air.,gold0-orig,pos,unl,unl,unl,unl,\"Up ahead, someone bounds off the back of two horses and mounts a third.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7155,Someone nears his target holding his ax at the ready. Someone,glances back over his shoulder.,runs smack into the man and swaggers off with the ax.,pulls up a knife and point the gun at him.,aims from the present down to the yard of hogwarts.,,gold0-orig,pos,unl,unl,unl,n/a,Someone nears his target holding his ax at the ready.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7157,He ducks the swing of the ax. Someone,leans back as someone throws a roundhouse kick.,reels around a pillar as the troll spins around.,strikes the balance and dismounts from the ceiling.,swings past his coach and takes a steep leap onto the paddy field.,hits the tiger with the ax.,gold0-orig,pos,unl,unl,pos,pos,He ducks the swing of the ax.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7148,Someone blocks him with the shaft of his ax. They both,see a horse charging straight for them.,look around and see him shot down the alley after her.,run over the net of the city carrying even sacks.,look up at the blazing inferno.,,gold0-orig,pos,unl,unl,pos,n/a,Someone blocks him with the shaft of his ax.,They both\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7135,Someone opens a carriage door and the man hands him his card. Someone,climbs into his carriage then shakes someone's hand.,points to a small tent in frustration.,\"opens the door, takes out her own wand and aims.\",shakes someone's hair and gets up.,smacks his minions quickly.,gold0-orig,pos,unl,unl,unl,unl,Someone opens a carriage door and the man hands him his card.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7183,\"He drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe. He\",\"slashes a second attacker's kicking leg, then drives his blade through the vampire's palm and flips him onto his back.\",\"lunges at someone, screaming at him with an terror.\",stops so little someone steps towards him.,follows little hesitation as he runs towards rundown path.,,gold0-orig,pos,unl,unl,pos,n/a,\"He drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7195,\"Baring his newfound fangs, someone grabs his dagger and charges the vampire. He goes to strike, but his arm\",stops mid - stab.,becomes little awkwardly in the air.,falls on the back of someone's head.,drops into someone 'grasp.,,gold0-orig,pos,unl,unl,pos,n/a,\"Baring his newfound fangs, someone grabs his dagger and charges the vampire.\",\"He goes to strike, but his arm\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7138,\"He stops at a corner. Returning from a corral, someone\",throws down a pitchfork.,continues to crowd behind a band.,approaches in a backpack buck.,stands behind the pole guardsmen.,,gold0-orig,pos,unl,unl,unl,n/a,He stops at a corner.,\"Returning from a corral, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7181,The vampire appears and someone dodges a swipe. He,\"ducks another, then slashes his attacker's masked mouth creating a spectacular spray of gore.\",\"falls, dead, and scrambles others.\",flinches with a flash disk.,\"draws sitting, losing his balance.\",\"sees someone jump toward shadowfax, then plunges to the spot.\",gold0-orig,pos,unl,unl,unl,pos,The vampire appears and someone dodges a swipe.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7146,He rolls to a stop and stands up to find himself facing the oncoming stampede. He,spots someone leaping over the herd.,leans on the mat for a second then caresses her face.,swings back and forth and plans for footing.,gets the paper back on a shelf and drinks it in.,sits there for a moment.,gold0-orig,pos,unl,unl,unl,pos,He rolls to a stop and stands up to find himself facing the oncoming stampede.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7159,\"The vampire grabs the ax and flips someone on to the back of another horse. As someone mounts the horse, he\",sees someone run off across the backs of the herd.,\"leaps from his horse, the sweep of the bow.\",and someone lead the destroyer into a warehouse.,walks under the tree and takes the ax in one hand.,frees up two higher swords.,gold1-orig,unl,unl,unl,unl,unl,The vampire grabs the ax and flips someone on to the back of another horse.,\"As someone mounts the horse, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7169,\"Someone grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye. Someone\",lands on his back.,gets off his bike.,puts the chalice up in his face.,\"backs away, then peers over his shoulder and hands over his grenade.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7192,\"He watches the attack in a stupor, his jaw hanging slack. Someone\",slows his spin to a stop then let's his victim sink to the ground.,\"breaks into an embrace with her fingertips, then thrusts her hips.\",lifts his head and sits down on his side.,runs off and describes the list at the display on the same kitchen.,glances up at him and purses her lips.,gold1-orig,pos,unl,unl,unl,pos,\"He watches the attack in a stupor, his jaw hanging slack.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7174,\"He slams her against a brick wall clutching her throat. Behind the man, someone\",steps out from a shadowy recess across the alley.,looks after the hungrily.,collapses and spies him with the gun too.,raises her broomstick that dive into swings.,jumps to a halt.,gold1-orig,pos,unl,unl,unl,unl,He slams her against a brick wall clutching her throat.,\"Behind the man, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7175,\"Behind the man, someone steps out from a shadowy recess across the alley. With a calm, deliberate gaze, he\",nears the rapist's exposed neck and takes a bite.,remembers mixing his sketchbook.,finds the whispering vulture's husky face.,lumbers down onto the train tracks then approaches someone.,heads for the gates of minas maggot.,gold0-orig,pos,unl,unl,unl,unl,\"Behind the man, someone steps out from a shadowy recess across the alley.\",\"With a calm, deliberate gaze, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7202,\"He steps onto a curb and crosses a sidewalk heading for the general store. As he unlocks the front door, someone\",approaches him from behind.,gives it to someone.,nods and heads for the door.,opens it and he walks up.,sprints into the car.,gold0-orig,pos,unl,pos,pos,pos,He steps onto a curb and crosses a sidewalk heading for the general store.,\"As he unlocks the front door, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7166,\"Rolling to a stop, he loses his ax. Someone\",pounces on him and bares his hideous fangs.,looks off and takes another shot of his trunk.,\"kicks at his hit tank, hitting the slytherin coach.\",prods a rock with the machine gun.,looks at the phone and stands at the drawing.,gold0-orig,pos,unl,unl,unl,unl,\"Rolling to a stop, he loses his ax.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7144,\"He slams the horses into the ground and they tumble across the dirt obstructing someone's path. As someone jumps one of the horses, he\",falls off his own.,leaps down with her foot in the time debris.,\"drops his feet up and lowers his body, then suspends twice.\",falls down from the far pier from the ride.,staggers past a wall and shakes the zombie someone.,gold1-orig,pos,unl,unl,unl,unl,He slams the horses into the ground and they tumble across the dirt obstructing someone's path.,\"As someone jumps one of the horses, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7140,\"He stops and sniffs the air. Grimacing, he\",takes of his sunglasses.,swallows for two empty breaths.,rises and inhales the stand.,hacks at it despite the spot.,grips the swaying lapping extra bottle.,gold0-orig,pos,unl,unl,unl,unl,He stops and sniffs the air.,\"Grimacing, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7149,They both see a horse charging straight for them. The stallion,knocks someone off someone sending him tumbling across the dirt.,reads food with black suitcases placed on someone's shoulders.,\"serum lies on the frame in a holder beside someone, whose head and siblings appear shaking their breath.\",are in all flash swords.,sidesteps to land on a balanced spectator chair.,gold0-orig,pos,unl,unl,unl,pos,They both see a horse charging straight for them.,The stallion\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7176,\"With a calm, deliberate gaze, he nears the rapist's exposed neck and takes a bite. As the vampire brings his flailing victim down, the young woman\",escapes down the alley.,steps on the dead tiger enclosure and seizes him on.,\"drops the ax, which lies on the ground.\",flips and whips him.,brings his ax in a hollow claw at him.,gold0-orig,pos,unl,unl,unl,pos,\"With a calm, deliberate gaze, he nears the rapist's exposed neck and takes a bite.\",\"As the vampire brings his flailing victim down, the young woman\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7165,\"Someone clings to someone's boot as the herd runs alongside a bluff, he lets go. Someone\",falls off the horse and tumbles down the face of the bluff.,\"stares up at the giant, who hunches the creature.\",snatches it from someone.,\"takes out the dog, its wailing on the tail.\",grabs a cartridge from a metal mop and releases the loose penguin.,gold0-orig,pos,unl,unl,unl,unl,\"Someone clings to someone's boot as the herd runs alongside a bluff, he lets go.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7143,\"As the vampire runs up ahead, someone mounts one of the horses. Someone\",\"leaps forward between two horses, grabs onto their necks and hangs between them.\",picks his rifle up and whacks it over the head with his ax.,\"cautiously turns his back, sending him stare as a female's hand snatches his.\",releases her as she runs along a column.,climbs to the edge of the cliff.,gold0-orig,pos,unl,unl,unl,unl,\"As the vampire runs up ahead, someone mounts one of the horses.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7188,\"He grabs a tuft of someone's hair and lowers him to his knee. As someone crosses to the dark haired woman, a dazed someone\",rises to his feet but struggles to maintain his balance.,leans over and strokes the back of her leg.,watches her uneasily anxiously.,furrows her brow as he rests his forehead against her hands.,sits on his chair as the woman leans.,gold1-orig,pos,unl,unl,unl,pos,He grabs a tuft of someone's hair and lowers him to his knee.,\"As someone crosses to the dark haired woman, a dazed someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7150,\"The stallion knocks someone off someone sending him tumbling across the dirt. The vampire rises to his feet, he\",\"boldly grabs the front leg of an oncoming horse, flipping the steed on its back.\",pulls rain from its foliage.,realizes that elf - like web is flung into the paddy wagon and is hurled through the air.,\"stands, follows the girl towards someone.\",flops up and the tread vanishes.,gold0-orig,pos,unl,unl,unl,unl,The stallion knocks someone off someone sending him tumbling across the dirt.,\"The vampire rises to his feet, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7151,\"The vampire rises to his feet, he boldly grabs the front leg of an oncoming horse, flipping the steed on its back. Using the horse like a track and field hammer, he\",hurls it at his enemy knocking him to the ground.,circles himself up an armored neck.,swings himself upside and over the ramps.,proceeds to examine the trunk and evenly of bare feet.,turns the corner upside down.,gold0-orig,pos,unl,unl,unl,unl,\"The vampire rises to his feet, he boldly grabs the front leg of an oncoming horse, flipping the steed on its back.\",\"Using the horse like a track and field hammer, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7185,The vampire takes off his sunglasses revealing his puffy eyes. Someone,kicks out someone's shin and the vampire almost falls on his dagger.,\"faces his fallen tree, and sets them on a tree.\",hits and bounces hard on his crutches overboard.,moves his head to the front leg of the hill's edge.,\"tugs his arms, covering his shirt awkwardly.\",gold0-orig,pos,unl,unl,pos,pos,The vampire takes off his sunglasses revealing his puffy eyes.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7141,He flees among his frightened horses. An aerial view,shows the herd crossing a riverside field.,\"is seen, leaving the vast arena with several mingle of men chatting.\",shows a landscape of chinese city as a group.,leads to someone in a hawaiian jersey.,studies his crossbow with his survival weapon followed by someone holding fire with his other hand carrying his arrow.,gold0-orig,pos,unl,unl,unl,unl,He flees among his frightened horses.,An aerial view\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7201,\"Now through a downpour, the tall, young man crosses a street. He\",steps onto a curb and crosses a sidewalk heading for the general store.,reaches up on her.,drives his stationary bike toward a series of high school cabs.,swarm the neon sign.,sets the cross halfway down then meets his view.,gold0-orig,pos,unl,unl,unl,unl,\"Now through a downpour, the tall, young man crosses a street.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7173,\"Now at night, a man forces a young woman through a narrow alley. He\",slams her against a brick wall clutching her throat.,and the girl reach to sample cover.,enjoys the brushes on the others.,ducks under a blue platform and passes a projector.,runs his fingers along the top of his bald sedan and shows her up with a sole.,gold0-orig,pos,unl,unl,unl,unl,\"Now at night, a man forces a young woman through a narrow alley.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7172,\"Someone brings down his ax. Now at night, a man\",forces a young woman through a narrow alley.,hands the bully to his puppet.,serves him from a fire.,takes out his drink and drinks the settings beneath it.,enters someone's office.,gold1-orig,pos,unl,unl,unl,pos,Someone brings down his ax.,\"Now at night, a man\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7177,\"Someone throws his ax, but someone catches it. Someone kicks him down and swing, but someone\",grabs the ax once more.,hands him back a little so he can reach the door this time.,gets onto to distract him.,catches him with his gun.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone throws his ax, but someone catches it.\",\"Someone kicks him down and swing, but someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7162,\"He rises to his feet then runs after the vampire landing on a new horse's back with every daring step. Through a veil of wafting dust, we\",glimpse someone as he looks back and grins.,\"see a child, zoo, motionless.\",see his hair curlers hidden by the leg of a train.,4x4 see someone yanking from the rope and rushing towards the crowd of wheelhouse.,,gold1-orig,pos,unl,unl,pos,n/a,He rises to his feet then runs after the vampire landing on a new horse's back with every daring step.,\"Through a veil of wafting dust, we\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7152,\"Using the horse like a track and field hammer, he hurls it at his enemy knocking him to the ground. Amid the chaos of the stampede, the horse\",rises with someone on its back.,\"shoots out of boxes, attacking using trainers hooks that safety shore.\",drops off the bow.,throws a sharp to what the homestead has behind.,jumps and runs on him above the track.,gold0-orig,pos,unl,unl,unl,pos,\"Using the horse like a track and field hammer, he hurls it at his enemy knocking him to the ground.\",\"Amid the chaos of the stampede, the horse\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7153,\"Amid the chaos of the stampede, the horse rises with someone on its back. Up ahead, someone\",bounds off the back of two horses and mounts a third.,peers over the ridge.,\"reaches out and grasps the knob, refreshments clumsily at his hand.\",\"keeps the gun trained all the way to the temple, his lantern flying.\",catches fire with his son and sticks the other muttering into his smoke.,gold0-orig,pos,unl,unl,unl,unl,\"Amid the chaos of the stampede, the horse rises with someone on its back.\",\"Up ahead, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7180,\"As he kisses a woman leaning out of the window, he notices a team of riders approaching. The dark haired woman sits back and someone\",hands her a gun.,\"flings his hands off her back, then faces the passengers.\",leads her farther away.,\"sits beside her, as the troops gather.\",,gold1-orig,pos,unl,unl,pos,n/a,\"As he kisses a woman leaning out of the window, he notices a team of riders approaching.\",The dark haired woman sits back and someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7190,\"He watches someone wrap his arms around her. Sinking his teeth into her neck, he\",spins her around lifting her off her feet.,lunges forward and lays his head on her shoulder.,lowers his drenched fingers and breaks the kiss again.,\"blinks her longingly as he guides her toward the counselor, who gently twirls her board through the air.\",bends to remove his raw flesh.,gold0-orig,pos,unl,unl,unl,unl,He watches someone wrap his arms around her.,\"Sinking his teeth into her neck, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7199,Someone glances back at the riders then goes to his love's side. He,gently turns her face to his own and kisses her on the lips.,is dimly wearing his army uniform.,\"gets in the back of the train's, spinning around.\",attempts to stabilize the note on a flat.,,gold0-orig,pos,unl,unl,unl,n/a,Someone glances back at the riders then goes to his love's side.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7187,\"Someone grabs someone from behind, exposes his neck and sinks his teeth in. Someone\",\"looks up from his trembling victim, his mouth dripping with blood.\",flies away over a bay window.,runs out of the submarine and picks up the key.,\"stares for a moment now, then smears ash on his face as he approaches.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone grabs someone from behind, exposes his neck and sinks his teeth in.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7145,\"As someone jumps one of the horses, he falls off his own. He\",rolls to a stop and stands up to find himself facing the oncoming stampede.,\"rises from the crowd and runs back, leaving a bag of red flowers in his yard.\",\"touches down jaw, then spreads their legs in tender, hasty breaths.\",skim over a rocky ridge.,\"approaches and looks over to someone's full body, holding his broomstick.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone jumps one of the horses, he falls off his own.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7189,\"As someone crosses to the dark haired woman, a dazed someone rises to his feet but struggles to maintain his balance. He\",watches someone wrap his arms around her.,presses it to someone's face as he looks up at someone.,shakes someone's head.,grabs the troll's paws and squishes it over the boy's head.,\"crosses the grass forest, crossing his hands over the prince's head.\",gold1-orig,pos,unl,unl,unl,unl,\"As someone crosses to the dark haired woman, a dazed someone rises to his feet but struggles to maintain his balance.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7132,\"Daytime, on a street corner, someone addresses a crowd from a soapbox. Someone\",rides up in a carriage.,lies in a chair.,sees names posted to the statue.,approach a sign piano in the bustling center.,never watch a man lie down by the curb.,gold0-orig,pos,unl,unl,unl,unl,\"Daytime, on a street corner, someone addresses a crowd from a soapbox.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7186,Someone kicks out someone's shin and the vampire almost falls on his dagger. Someone,\"grabs someone from behind, exposes his neck and sinks his teeth in.\",grabs a white dolly.,winks at the tiger.,sticks the horn with futilely.,sticks his foot in.,gold0-orig,pos,unl,unl,unl,pos,Someone kicks out someone's shin and the vampire almost falls on his dagger.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7196,\"He goes to strike, but his arm stops mid - stab. With both hands, he swipes at someone and attempts to stab him in the heart, but an unseen force\",holds the blade back.,blocks blood with his wand.,\"yawns up off his stiff, flinging breasts.\",charges him on the face and his arms come out.,,gold0-orig,pos,unl,unl,unl,n/a,\"He goes to strike, but his arm stops mid - stab.\",\"With both hands, he swipes at someone and attempts to stab him in the heart, but an unseen force\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7197,Someone lowers his demoralized gaze. Someone,leaves him standing alone.,raps between someone's glasses and opens the door and waits more into a tunnel.,gives a noncommittal shrug.,turns away from his window.,smiles to herself as the younger sister aims her gun again.,gold1-orig,pos,unl,pos,pos,pos,Someone lowers his demoralized gaze.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7194,\"Trembling, face down, someone watches his dead love. With his boot, someone\",rolls her on her back.,stares at the hobbit's body.,steps out of a waiting room and lights a cigarette.,lets the stranger down.,watches nervously as he pushes open a door.,gold0-orig,pos,unl,unl,unl,unl,\"Trembling, face down, someone watches his dead love.\",\"With his boot, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7133,Someone steps down from his soapbox and the crowd gathers around him. He,walks with an older man wearing sunglasses.,leaves and the hefty someone reeling as he leaves.,kicks him in the ribs.,picks himself up and places her over the railing.,grabs his wrists and cradles his king.,gold0-orig,pos,unl,unl,unl,unl,Someone steps down from his soapbox and the crowd gathers around him.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7193,\"Someone slows his spin to a stop then let's his victim sink to the ground. Trembling, face down, someone\",watches his dead love.,ducks his face under the blanket.,shrugs his gloved hands.,steps warily past a scratch - o - matic.,crouches on the e - level landing under the shirt.,gold1-orig,pos,unl,unl,unl,unl,Someone slows his spin to a stop then let's his victim sink to the ground.,\"Trembling, face down, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7139,\"Returning from a corral, someone throws down a pitchfork. He\",stops and sniffs the air.,blast against the wood.,applauds for his dog.,\"extends his hands and moves to the cabin, finding a prop window.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Returning from a corral, someone throws down a pitchfork.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7179,\"In a flashback, on a tree - lined road, someone hops out of his carriage and takes a look at its wheel. As he kisses a woman leaning out of the window, he\",notices a team of riders approaching.,leans him into an embrace and closes his mouth.,holds a circle of illumination ahead as he fidgets.,drops the chain to the ground.,finds his mentor slumped back in the dirt line.,gold0-orig,pos,unl,unl,unl,unl,\"In a flashback, on a tree - lined road, someone hops out of his carriage and takes a look at its wheel.\",\"As he kisses a woman leaning out of the window, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7200,\"He gently turns her face to his own and kisses her on the lips. Beside someone, someone\",rises to his feet.,rocks his bag over his shoulder.,places a homer signature on his hands and faces with his gloved hands.,covers her eye with her hands.,,gold0-orig,pos,unl,unl,pos,n/a,He gently turns her face to his own and kisses her on the lips.,\"Beside someone, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7178,\"Someone kicks him down and swing, but someone grabs the ax once more. In a flashback, on a tree - lined road, someone\",hops out of his carriage and takes a look at its wheel.,stands on a rope with the tree.,opens the shutters into a trailer in a dimly lit workshop.,follows his son at a high driveway.,\"lies sleeping and he sleeps side by side, his bones with his hands in the air.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone kicks him down and swing, but someone grabs the ax once more.\",\"In a flashback, on a tree - lined road, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7137,The tall young man hurries away. He,stops at a corner.,loads a small revolver.,sees the butcher run away.,goes out as darkness engulfs him.,,gold0-orig,pos,unl,unl,pos,n/a,The tall young man hurries away.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7147,He spots someone leaping over the herd. Someone,blocks him with the shaft of his ax.,feeds the van through to one side of the man and marley's.,follows someone backwards through a doorway.,bursts through a narrow gap and disappears onto the hall.,,gold1-reannot,pos,unl,pos,pos,n/a,He spots someone leaping over the herd.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7136,Someone climbs into his carriage then shakes someone's hand. The carriage,rides off revealing someone.,pulls away as the ambulance arrives.,pushes shut behind him.,lifts up in the middle of frock range and whips him above its head.,arrives on the mission back.,gold0-reannot,pos,unl,unl,unl,unl,Someone climbs into his carriage then shakes someone's hand.,The carriage\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7170,\"Someone lands on his back. Standing over him, someone\",collapses his modified weapon and readies himself for a final strike.,yanks himself off from the train window then rolls back down.,and someone step back to the bar.,smiles back at the older man.,gives a resigned smile.,gold0-reannot,pos,unl,pos,pos,pos,Someone lands on his back.,\"Standing over him, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7191,Someone's eyes roll back. He,\"watches the attack in a stupor, his jaw hanging slack.\",kicks someone's leg again.,holds her gaze and points back to her on foot.,looks quizzically at him and hugs himself in the end.,\"checks someone's mobile, then shifts his uneasy gaze.\",gold1-reannot,pos,unl,unl,unl,pos,Someone's eyes roll back.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7134,He walks with an older man wearing sunglasses. Someone opens a carriage door and the man,hands him his card.,pulls out a drone's wand.,appears in the other standing shadows.,walk into frame past him.,comes up for someone.,gold1-reannot,pos,unl,unl,unl,unl,He walks with an older man wearing sunglasses.,Someone opens a carriage door and the man\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7156,Someone glances back over his shoulder. He,ducks the swing of the ax.,glances over his shoulder then clears the cabin.,enters the apartment next to his bedroom.,gets one of his things.,leads someone to the door.,gold0-reannot,pos,unl,unl,pos,pos,Someone glances back over his shoulder.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7168,The vampire grabs the ax and nearly splits someone's face. Someone,\"grabs the shaft, extends it to reveal a hidden trigger, then shoots someone through his good eye.\",\"drags him in a grenade, approaching the wreck.\",pose releasing his wands.,pounds him to the plate.,pulls the door shut and catches himself.,gold0-reannot,pos,unl,unl,unl,pos,The vampire grabs the ax and nearly splits someone's face.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7184,He kicks the human in the face. The vampire,takes off his sunglasses revealing his puffy eyes.,\"lies neatly deep in his chin, blood streaming from his nose.\",\"lies, snapping its lifeless body.\",collapses onto the wheeled seat.,,gold1-reannot,pos,unl,unl,pos,n/a,He kicks the human in the face.,The vampire\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7182,\"Someone tries to stab his attacker, but the vampire clutches his wrist. He\",\"drops his dagger, catches it with his free hand, then slashes and leg sweeps his foe.\",\"flicks open the vampire's claw - like jaws, but advances, knocking his cat away with him.\",flashes a swipe at someone contentedly.,shoots the bloody dead inside.,\"reaches after her, thrusts the sword into someone's throat.\",gold0-reannot,pos,unl,unl,unl,pos,\"Someone tries to stab his attacker, but the vampire clutches his wrist.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7198,Someone leaves him standing alone. Someone,glances back at the riders then goes to his love's side.,stares at another unhatched egg.,\"falls, carrying glasses of his whisky.\",is still looking at someone.,reaches out for his phone and starts moving out of the room.,gold1-reannot,pos,unl,unl,pos,pos,Someone leaves him standing alone.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7142,\"An aerial view shows the herd crossing a riverside field. As the vampire runs up ahead, someone\",mounts one of the horses.,\"eyes his abandoned rifle around the perimeter and the manhole, along the backyard of the rodeo club.\",grabs the rear of the cart's helmet.,joins him on his horse's tail.,runs on a clear patch.,gold0-reannot,pos,unl,unl,unl,unl,An aerial view shows the herd crossing a riverside field.,\"As the vampire runs up ahead, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7164,\"Someone lunges at him swiping at his legs, but the vampire jumps, flips and lands on a horse behind someone. He tries to bite someone's exposed neck, but the vampire hunter\",blocks the bite with his ax and pushes them off the horse.,carries it back.,reaches the crack on the counter.,sends someone backward and slams under the straps of the crowbar to avoid him.,calms him before returning to his feet and knees as he dodges toward the exhausted troll.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone lunges at him swiping at his legs, but the vampire jumps, flips and lands on a horse behind someone.\",\"He tries to bite someone's exposed neck, but the vampire hunter\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7163,\"Through a veil of wafting dust, we glimpse someone as he looks back and grins. Someone lunges at him swiping at his legs, but the vampire\",\"jumps, flips and lands on a horse behind someone.\",lands him with his stick.,is holding him by the shoulders.,\"'s head is pulled free with his free hand, and he shoots its shaft at the vampire's body skin.\",,gold0-reannot,pos,unl,pos,pos,n/a,\"Through a veil of wafting dust, we glimpse someone as he looks back and grins.\",\"Someone lunges at him swiping at his legs, but the vampire\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2078,7160,\"As someone mounts the horse, he sees someone run off across the backs of the herd. Someone\",attempts to stand on his horse's back.,jumps down the edge of the staircase and stands up just in front of someone.,runs toward the end of the track.,swings backwards and lands on the ground.,spits the zombies in front of one of the witches.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone mounts the horse, he sees someone run off across the backs of the herd.\",Someone\nanetv_Iiwz1JtC7rk,15991,The top of a woman's head is seen. She,is shown getting her hair braided by another woman.,shows off a video.,rolls up her sleeve.,shows a polished heart with a polished metal.,is seen looking into the mirror.,gold0-orig,pos,unl,unl,pos,pos,The top of a woman's head is seen.,She\nanetv_Iiwz1JtC7rk,18410,A person is then seen putting the girl's hair up in several dos while showing it to the camera. The girl,continues to show off hairstyles while smiling to the camera.,holds up a brush and brushes to her hair and brushes it while holing the brush in the brush.,pours some on indoors into another lens before speaking to the camera.,then instructs on shampoo while speaking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A person is then seen putting the girl's hair up in several dos while showing it to the camera.,The girl\nanetv_Iiwz1JtC7rk,15992,She is shown getting her hair braided by another woman. The woman,\"tucks the braid in, showing how she keeps it clipped with bobby pins.\",claps while demonstrating how to braid the hair.,continues blow drying her hair in the end.,continues speaking to the camera and landing on her back.,uses a comb to cut the hair off her leg.,gold0-reannot,pos,unl,unl,unl,unl,She is shown getting her hair braided by another woman.,The woman\nanetv_p3-tF0riSpQ,6100,He is then seen putting a cleaner on his teeth and taking a bit of food. He,continues speaking to the camera while occasionally eating food.,continues talking about the petrol cans and parts to wash a different piece of plant in the car.,places a blade on the rag after filling in the liquid with a brush and spray liquid.,continues to wipe sticky ink along his arm and then putting it in the pen and shows it to the camera.,adds the paste on to a piece and begins cutting the top of the watermelon.,gold1-orig,pos,unl,unl,unl,unl,He is then seen putting a cleaner on his teeth and taking a bit of food.,He\nanetv_ovTKJgSWMKQ,15042,A man towels off in a room. He,\"enters the competition, shaking hands after his dive.\",jumps over the vacuums floor and cuts off the tiles and onto the floors.,makes an instructional clipping with a leg.,pushes a heavy broom off of the steam.,training the wall players are in front of wall machine equipment.,gold0-orig,pos,unl,unl,unl,unl,A man towels off in a room.,He\nanetv_OjV4UScwkU0,17410,Man is in a workshop and puts a glove in his hand and grab a weld machine. man,start welding something in a metal table.,is standing in a room while taking pictures and talking to the camera.,pushes the bolts of the room.,leaves the ground on a machine and start a new one.,is standing behind the snow on the wall.,gold0-orig,pos,unl,unl,unl,unl,Man is in a workshop and puts a glove in his hand and grab a weld machine.,man\nanetv_OjV4UScwkU0,17364,The man then grabs a tool and begins torching an area. He,pauses for a moment and continues torching followed by grabbing the camera and showing off his work.,grabs the stick and tosses it against the tile.,sticks his stick in the hose.,throws around and extends his arm while points to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The man then grabs a tool and begins torching an area.,He\nanetv_OjV4UScwkU0,17411,Man start welding something in a metal table. the man,holds another tool and then keeps welding the metal.,shakes the man's hand then works his hand.,continues walking around the table every woman wearing brown sandals.,rubs paint onto the machine.,,gold1-orig,pos,unl,unl,unl,n/a,Man start welding something in a metal table.,the man\nanetv_OjV4UScwkU0,17363,A man is seen walking into frame wearing a helmet and putting gloves on. The man then,grabs a tool and begins torching an area.,ties and ties his legs.,begins the marching match in front of the camera.,stands around and begins skateboarding across the field.,begins walking down the street in front of a bike.,gold0-reannot,pos,unl,unl,pos,pos,A man is seen walking into frame wearing a helmet and putting gloves on.,The man then\nanetv_TOBHIXCu4Ic,4852,Soccer team is running in the field through a large advertising. woman,\"is making jumps in a gym, runs and stumbles to a pole.\",win a white game doing the best line and hit the ball very fast.,\"playing on the field in the field, then walks across the field on the grass behind two teams.\",is talking in front of a group and performing lacrosse on a field.,,gold0-orig,pos,unl,unl,unl,n/a,Soccer team is running in the field through a large advertising.,woman\nanetv_TOBHIXCu4Ic,11064,\"This video shows viewers how dumb people are and what pure failure looks like. First, the team throws a girl into the air, but when she comes back down she\",is on the ground.,continues to run to him.,paints the solution into the silver solution straight into the sponge and continues explaining in the end of the gaps.,picks her up and celebrates.,starts preparing for a very breaking shot and finally the focus breaks in half.,gold0-orig,pos,unl,unl,unl,unl,This video shows viewers how dumb people are and what pure failure looks like.,\"First, the team throws a girl into the air, but when she comes back down she\"\nanetv_TOBHIXCu4Ic,11065,\"First, the team throws a girl into the air, but when she comes back down she is on the ground. Next, another man grabs the woman and tries to hold her in the air using his hands, and he\",drops her causing both of them to fall to the ground.,starts to wrestle him.,is able to make the jump.,\"joins her, then breaks into sobs and starts and tips back straight.\",,gold0-orig,pos,unl,unl,unl,n/a,\"First, the team throws a girl into the air, but when she comes back down she is on the ground.\",\"Next, another man grabs the woman and tries to hold her in the air using his hands, and he\"\nanetv_TOBHIXCu4Ic,4851,Women are in floor laying on a green field and girl in front is doing somersaults and slip in the field. soccer team,is running in the field through a large advertising.,is helping a young woman in the sand on the dirt field.,is watching the women and other players on the back of the court.,are on the field playing and doing the act pose.,is standing next to the volleyball across a table to each other.,gold1-orig,pos,unl,unl,unl,unl,Women are in floor laying on a green field and girl in front is doing somersaults and slip in the field.,soccer team\nanetv_TOBHIXCu4Ic,4849,Soccer team are running in a lare field and trip into a cheerleader team that are making a pyramid. man,is holding a girl with one arm and fells o the floor.,is in a vault holding a prize.,hit the ball back and forth and rotate in a competition.,enters the field and walks around the base.,explains the point that they want to make and team scores a goal.,gold0-orig,pos,unl,unl,unl,unl,Soccer team are running in a lare field and trip into a cheerleader team that are making a pyramid.,man\nanetv_TOBHIXCu4Ic,4853,\"Woman is making jumps in a gym, runs and stumbles to a pole. different cheerleaders teams\",are in gym making pyramids and falling.,are shown inside the gym floor surrounded by bicycles and make a hilly exercise.,are talking in a room at jerseys on mountains on front of a stadium and are watching people is walking out of their lanes.,perform different perform and jump while others stand watch and jump.,are in a gym together.,gold0-orig,pos,unl,unl,unl,pos,\"Woman is making jumps in a gym, runs and stumbles to a pole.\",different cheerleaders teams\nanetv_TOBHIXCu4Ic,4850,Cheerleader team is in a wooden gym making a pyamid and fells to the floor. women are in floor laying on a green field and girl in front,is doing somersaults and slip in the field.,is firmly right around the court.,are in boxing in her black sweater and start dancing.,is climbing the jump ropes.,is doing the batons.,gold0-orig,pos,unl,unl,unl,pos,Cheerleader team is in a wooden gym making a pyamid and fells to the floor.,women are in floor laying on a green field and girl in front\nanetv_Si4_ER4lUME,3219,A young woman is seen sitting in a kayak looking to the camera. The girl then,begins moving the paddle back and fourth.,begins going back and fourth and riding him back.,begins playing an accordion while people watch on.,begins climbing on the monkey bars on the back side.,begins sitting in a chair speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A young woman is seen sitting in a kayak looking to the camera.,The girl then\nanetv_Si4_ER4lUME,3220,The girl then begins moving the paddle back and fourth. She,pauses her paddling to laugh off into the distance.,continue hitting the game back and fourth while still looking at the camera and leads into her performing a song.,continues hit the camera back and fourth.,takes her cup and stands next to him on the street.,capture her balance while the girl looks.,gold0-orig,pos,unl,unl,unl,unl,The girl then begins moving the paddle back and fourth.,She\nanetv_fErOJ98E15w,13279,A man is playing wall ball in a room. He,hits the ball against the wall several times.,starts throwing plaster from various wall.,is carved from onto a table putting a tile floor.,jumps onto a fitness competition again.,,gold0-orig,pos,unl,unl,pos,n/a,A man is playing wall ball in a room.,He\nanetv_fErOJ98E15w,4786,A man is seen standing in an enclosed room holding a tennis racket and performing various moves for the camera. The man,continues demonstrating how to properly use the tennis racket to hit the ball.,stops playing the instrument and stops.,\"throws the ball while spinning around, and putting the ball around and swimming in the park where the man is holding him.\",plays a basketball in front of the camera and the man and woman begin playing with the woman while looking down.,stands up and talks to the camera while moving his shoes and plays basketball.,gold0-orig,pos,unl,unl,unl,unl,A man is seen standing in an enclosed room holding a tennis racket and performing various moves for the camera.,The man\nlsmdc3009_BATTLE_LOS_ANGELES-363,4640,Someone and someone look up from their rifle sights. Someone,lowers his weapon and starts to run.,shoots into the side of the court and gives them a perfect shove.,works on a ramshackle patio.,watches in terror.,someone holds his revolver out to someone who stands staring at the man with the red tank top and a gun.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone look up from their rifle sights.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-363,4638,\"At the car, someone smiles and lets out a sigh. Rocket\",blast several cars near the tank.,\"follows her to one trailer, going through to the garage.\",\"squishes, someone shakes someone's flare gun.\",wheel as he jogs around.,\"away from the sun, a moon rises in the sky over central park.\",gold0-orig,pos,unl,unl,unl,unl,\"At the car, someone smiles and lets out a sigh.\",Rocket\nlsmdc3009_BATTLE_LOS_ANGELES-363,4639,Rocket blast several cars near the tank. Someone and someone,look up from their rifle sights.,wave with someone in the boat.,run up the chimney.,stand in the pool.,pull into an ambulance.,gold1-reannot,pos,unl,unl,unl,unl,Rocket blast several cars near the tank.,Someone and someone\nanetv_9SY9ufDznFQ,15098,Young women are barely dressed on a hockey field. they women,begin chasing a puck.,are talking about tips that they should be tossing at.,are taking in a sleeveless shirt and putting their socks.,pull out of cards and throw the cards back to the newscaster man.,,gold0-orig,pos,unl,unl,unl,n/a,Young women are barely dressed on a hockey field.,they women\nanetv_9SY9ufDznFQ,6226,We then see the girl as a goalie playing lacrosse. We then,see the girl on the ice.,see the lady hockey being in the same game.,see a replay of the throw.,see people pointing and video horses.,,gold0-orig,pos,unl,unl,unl,n/a,We then see the girl as a goalie playing lacrosse.,We then\nanetv_9SY9ufDznFQ,6229,We see the team and the girl on an green court. The girl,slides to block and knocks a girl over.,walks to the platform again and spins in a circle.,flips and lifts her legs from position on a mat.,takes a break at the goal.,,gold1-orig,pos,unl,unl,pos,n/a,We see the team and the girl on an green court.,The girl\nanetv_9SY9ufDznFQ,6230,The girl slides to block and knocks a girl over. We,see a live outdoors game.,\"the hold her hands on grab she is lifted off the floor, and the baby reaches for someone.\",viewers a small female dance that's jumping up from the floor.,girl speaks to the camera while continuing to speak and the girl is done filing her hands while her stick is added in her followed,performs back flips and then the second girl walks away and then falls to the ground.,gold0-orig,pos,unl,unl,unl,unl,The girl slides to block and knocks a girl over.,We\nanetv_9SY9ufDznFQ,15099,They women begin chasing a puck. the a goaly,is shown full padded while being trained.,throws the ball into the oven.,picks up some balls.,throws the ball as a boy.,is full with excitement.,gold1-reannot,pos,unl,unl,unl,pos,They women begin chasing a puck.,the a goaly\nanetv_MMnTMB6AmuU,10701,A woman stands up and starts jump roping. The rest of the women,stand up and join her jump roping.,stand down by the rope.,hugs them and watches.,is standing outside preparing to arm wrestle.,,gold0-orig,pos,unl,unl,unl,n/a,A woman stands up and starts jump roping.,The rest of the women\nanetv_MMnTMB6AmuU,10702,The rest of the women stand up and join her jump roping. They,do a hand stand on the ground in front of them.,cheer on the back and then resume the match and more ladies just fighting.,demonstrates how to rubik the parts of a machine.,are singing to play the guitar.,begin to jump and him up and down.,gold0-reannot,pos,unl,unl,unl,unl,The rest of the women stand up and join her jump roping.,They\nanetv_-C1nnsyw7R0,16537,Man is standing in a racetrack and is running to make a jump and people is standing around him. man,is sitting in a room talking to the camera.,is skating in an indoor park by a title obstacle.,is doing tricks on high stilts in a skate park.,explains how to bathroom and jump in a line to get a man who stands behind a fence talking.,,gold1-orig,unl,unl,unl,unl,n/a,Man is standing in a racetrack and is running to make a jump and people is standing around him.,man\nanetv_-C1nnsyw7R0,16540,Players are running playing american football and spectators are in the terraces. old man is talking in the room and the man in the race track,is running and practicing the jump.,and he is standing with a players who is marching te side holding a baton.,is playing white takes his helmet off and is watching fishes in the field.,approaches to another field with a fellow team is attempting to fall.,is shooting the man on the field.,gold1-orig,pos,unl,unl,unl,unl,Players are running playing american football and spectators are in the terraces.,old man is talking in the room and the man in the race track\nanetv_-C1nnsyw7R0,16539,Man is running in a racetrack and jumping in the dust and man is sitting in a room talking. players are running playing american football and spectators,are in the terraces.,watch on the side of his score.,watching him a graphic was his donut club and runs off one of the pictures after them.,watching the event while spectators watch.,watching him turn boxing in the court.,gold1-reannot,pos,unl,unl,unl,unl,Man is running in a racetrack and jumping in the dust and man is sitting in a room talking.,players are running playing american football and spectators\nanetv_c-X500da7JU,1788,\"The woman arrange a gift basket and shows a pile of nice gifts. Then, the woman\",wraps gifts with different shapes and ornaments.,put an array of flowers on the tree.,puts an ornament down the christmas tree.,demonstrates how to make a gift for a gift.,places a hand into the tree and paints the trunk.,gold0-orig,pos,unl,unl,unl,unl,The woman arrange a gift basket and shows a pile of nice gifts.,\"Then, the woman\"\nanetv_h49mHiWjXBA,14483,Man is standing in an icetrack talking to the camera. people,are playing curling in an ice court.,are standing in a gym taking positions to exercise.,are standing on the beach watching them.,are standing behind a fence talking through the camera.,,gold1-orig,pos,unl,unl,unl,n/a,Man is standing in an icetrack talking to the camera.,people\nlsmdc3078_THE_WATCH-36462,13184,\"It grabs his ankle, then flings him into a display of vitamin beverages. The others\",shoot the creature down again with a shot to the groin.,watch aiming the lantern.,curl with a twinkle in his dark eyes.,\"are inside the door, looking over his shoulder at the promoter.\",,gold0-orig,pos,unl,unl,pos,n/a,\"It grabs his ankle, then flings him into a display of vitamin beverages.\",The others\nanetv_Cqbs_wM3oc4,15007,A man is sitting in a chair in front of a building. He,is playing a saxophone.,\"is vacuuming, mowing the lawn back and forth.\",is playing cards on the desk.,is working on a roof by a cavern in the distance.,picks up something and puts on his shoes.,gold1-orig,pos,unl,unl,unl,pos,A man is sitting in a chair in front of a building.,He\nanetv_Cqbs_wM3oc4,16642,A man is sitting down in a chair. He,is playing a saxophone.,is lifting a large weight over his head.,is styling a woman's hair.,are standing behind them watching.,is wearing a pair of headphones.,gold1-orig,pos,unl,unl,unl,pos,A man is sitting down in a chair.,He\nanetv_Cqbs_wM3oc4,16643,He is playing a saxophone. People,are walking in front of him into a building.,\"the flute, he kneels to a man and speaks, then the man adjust the shirt and plays the flute back and forth.\",have medals around them.,beat an electric guitar.,,gold0-reannot,pos,unl,unl,unl,n/a,He is playing a saxophone.,People\nlsmdc3084_TOOTH_FAIRY-39709,7490,\"With a playful look, someone shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin. She half\",stifles her smile as she accepts the bouquet.,takes her drink from the tap and watches someone step out of the room.,\"someone someone's bedraggled, wipes his eyes and flips the binoculars over.\",ambles to the porch and turns to someone.,shares another with him.,gold0-orig,pos,unl,unl,unl,unl,\"With a playful look, someone shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin.\",She half\nlsmdc3084_TOOTH_FAIRY-39709,7494,Someone glares at the stick then at someone. Someone,leans the stick against the bed.,turns his friendly should.,spits gliding over a switch.,gazes up at someone earnestly.,,gold0-orig,pos,unl,unl,pos,n/a,Someone glares at the stick then at someone.,Someone\nlsmdc3084_TOOTH_FAIRY-39709,7488,\"Now, someone answers her door to find someone holding a bouquet of roses. She\",holds a few of someone's dolls.,walks slightly and sets off bottles in a grassy bin.,spoons her hair in the mirror.,\"follows him to an deserted flat, find someone's knapsack lovely and barred.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone answers her door to find someone holding a bouquet of roses.\",She\nlsmdc3084_TOOTH_FAIRY-39709,7495,Someone leans the stick against the bed. He,grins widely at someone.,moves on to divan.,is just raising one finger.,holds the pistol in his hand as the step watches.,pulls someone a plug.,gold0-reannot,pos,unl,unl,unl,unl,Someone leans the stick against the bed.,He\nlsmdc3084_TOOTH_FAIRY-39709,7491,She half stifles her smile as she accepts the bouquet. Someone's grin,stays plastered on his face as he gives a few wobbling nods.,\"glisten as she stares at his father, and looks away.\",pulls on someone's face.,pulls back to reveal someone's wife.,overflows as he strides.,gold0-reannot,pos,unl,unl,unl,unl,She half stifles her smile as she accepts the bouquet.,Someone's grin\nlsmdc3084_TOOTH_FAIRY-39709,7489,\"Someone raises her brow thoughtfully and nods. With a playful look, someone\",shifts his eyes to the bouquet of flowers then gives his girlfriend a winning grin.,\"stretches out her arms, shakes his head, and stalks away.\",shuts the door with open eyes.,strides in to hers.,\"steps up from a cool substance, and heads back toward the aircraft.\",gold0-reannot,pos,unl,unl,unl,unl,Someone raises her brow thoughtfully and nods.,\"With a playful look, someone\"\nlsmdc3084_TOOTH_FAIRY-39709,7487,\"Finding nothing, he relaxes. Now, someone\",answers her door to find someone holding a bouquet of roses.,holds someone's penis as he thrusts out onto the holes.,strides past the bar with a file cabinet as he reads the lab techs.,\"stares his father hard at someone 'booth, staring ahead.\",dangles a hose around a winding fort.,gold0-reannot,pos,unl,unl,unl,unl,\"Finding nothing, he relaxes.\",\"Now, someone\"\nanetv_Ba3uRADSg50,14209,One begins climbing along the bars with several other people coming from behind. One woman,falls in the water and many more climb across the monkey bars.,is seen crouching down and flipping her way over and pans around both other around on the beam.,bends over as the other men continue to take baskets.,climbs up and puts her arms up and leads into her jumping out.,put a shoe on the other side of the exit then end up jumping into it.,gold0-orig,pos,unl,unl,unl,unl,One begins climbing along the bars with several other people coming from behind.,One woman\nanetv_Ba3uRADSg50,14208,A few older men are shown standing in front of monkey bars talking to one another. One,begins climbing along the bars with several other people coming from behind.,girl is sitting down behind the stick and laughs at the pinata.,holds a curler and rings around as people finish up.,men speak to one another and he takes them off by the camera.,,gold0-reannot,pos,unl,unl,pos,n/a,A few older men are shown standing in front of monkey bars talking to one another.,One\nanetv_J8Ziy8QR8WQ,15577,Guys throw balls on a field. A guy,holds a few balls and talks.,jumps in the dirt and launches grass at a clown.,throws an object onto the sides of a row.,dances with someone throwing balls balls.,watches the girl with a basketball put score.,gold1-orig,pos,unl,unl,unl,pos,Guys throw balls on a field.,A guy\nanetv_J8Ziy8QR8WQ,15579,A man holding a flat bat walks across the field followed by a male holding one ball in each hand. Two men,sit with one man holding a flat bat.,cut balls and jumps away from the table.,fly a rope to a man on the back.,run all around the field trying to push the ball ball off into the distance.,,gold0-orig,pos,unl,unl,unl,n/a,A man holding a flat bat walks across the field followed by a male holding one ball in each hand.,Two men\nanetv_J8Ziy8QR8WQ,15578,A guy holds a few balls and talks. A man holding a flat bat,walks across the field followed by a male holding one ball in each hand.,pushes his doing switch.,is playing ping pong when a man in glasses hits the ball.,starts to toss cheerily using the batons for him to keep the weight up.,\"is talking in front of a group of men, an older and a man stand next to him.\",gold0-orig,pos,unl,unl,unl,unl,A guy holds a few balls and talks.,A man holding a flat bat\nanetv_J8Ziy8QR8WQ,15580,Two men sit with one man holding a flat bat. Guys,hit balls with the flat bat.,swing the person on the ground cheers.,reach behind two boys while jumping on the back.,are walking a ball past the top of the statue.,,gold0-orig,pos,unl,unl,unl,n/a,Two men sit with one man holding a flat bat.,Guys\nanetv_J8Ziy8QR8WQ,15576,The credits of the clip are shown. Guys,throw balls on a field.,are playing ice hockey with a lacrosse wire.,are throwing darts at a paintball field.,are shown riding the cars around with paper and blue cups.,are on their path using the metal tool.,gold0-reannot,pos,unl,unl,pos,pos,The credits of the clip are shown.,Guys\nlsmdc1034_Super_8-8289,523,They run to a storage trailer. Someone,begins prying a padlock on the trailer with the tire iron.,dumps cars onto a concrete slab.,scrambles to a stoop and picks the chase as a pickup truck slides down the street.,uses a resistance axe to hold two cows on their backs.,opens a box of champagne and frowns.,gold0-orig,pos,unl,unl,unl,unl,They run to a storage trailer.,Someone\nlsmdc1034_Super_8-8289,519,\"Someone takes a sharp right onto a rough track through the trees. As it's getting dark, they\",arrive back into town.,get into the police back first - - a lower level blocks the road.,get it to the ground.,pass the larger and white rows of beds.,walk toward bright winged gates.,gold0-orig,pos,unl,unl,unl,pos,Someone takes a sharp right onto a rough track through the trees.,\"As it's getting dark, they\"\nlsmdc1034_Super_8-8289,526,Scientists and military men look at the wreckage of something big. Someone,puts a tape in a player.,ducks himself on a stretcher that leads him led across into a small dark tunnel.,distantly seated in the hangar at a closed drill computer screen.,arrives back on earth in a stadium of silver lights.,,gold0-orig,pos,unl,unl,pos,n/a,Scientists and military men look at the wreckage of something big.,Someone\nlsmdc1034_Super_8-8289,524,They break into a classroom. They,look at the footage.,slam themselves on the ground.,\"join the women, wearing formal outfits and gives jumps on a platform at a park.\",are dancing arm - in - arm.,,gold0-orig,pos,unl,unl,unl,n/a,They break into a classroom.,They\nlsmdc1034_Super_8-8289,521,They drive until someone Middle School. The boys,leave someone in the car park and scramble over a chain link fence.,run out a main road.,opens a refrigerator to their knees in the dinette.,pack up to $20 and watch him in the van.,run down a quiet street.,gold0-orig,pos,unl,unl,unl,pos,They drive until someone Middle School.,The boys\nlsmdc1034_Super_8-8289,525,They look at the footage. Scientists and military men,look at the wreckage of something big.,exchange quick and very headsets.,run in through the fiery door of the scuba chamber.,are spraying fluid all over their doors.,run toward a bank.,gold1-orig,pos,unl,unl,pos,pos,They look at the footage.,Scientists and military men\nlsmdc1034_Super_8-8289,522,The boys leave someone in the car park and scramble over a chain link fence. They,run to a storage trailer.,crouch down on one side of the paddy road.,crash into a black car as someone walks down the street.,stop off his pogo motorcycles and runs down the path.,see an envelope ad read te mall.,gold1-reannot,pos,unl,unl,unl,unl,The boys leave someone in the car park and scramble over a chain link fence.,They\nanetv_sQZaEt-ssCs,15396,Two referees on side of tables and watch each other. women,are arm wrestling in the table again and at the end high each other.,are talking to the camera closely as they are shown playing slow wrestling.,\"are on the sidelines playing the matches, playing with a candy bar.\",engage in a game of foosball as a coach explains the coaches.,,gold1-reannot,pos,pos,pos,pos,n/a,Two referees on side of tables and watch each other.,women\nanetv_l_cjSGt5j40,17193,An older man is seen sitting on a log in a public space in front of a piano. The man then,plays the piano while the camera captures him playing.,lays down and helps him with place while pushing out balls under him.,pushes up and down on the leg while moving his arms up and down.,begins playing in the sand while others watch on the side.,begins playing the piano while still playing the guitar.,gold0-orig,pos,unl,unl,unl,unl,An older man is seen sitting on a log in a public space in front of a piano.,The man then\nanetv_l_cjSGt5j40,17194,The man then plays the piano while the camera captures him playing. The man,sings to the camera while continuing to play and the camera moving around his movements.,moves around to show himself and then continues to play camera.,continues speaking as audience members stand around and watch the game.,continues playing crochet while the camera pans off all around the room.,continues playing more and ends by stopping to speak into the camera.,gold0-orig,pos,unl,unl,unl,unl,The man then plays the piano while the camera captures him playing.,The man\nanetv_VUvEWwghANE,7194,A man is seen standing on a roof using a tool to pull up tile. Several clips,are shown of the man ripping up tiles on the roof.,are shown of people in the water snowy trip as well.,are then shown of the man talking and moving through the land.,are shown of various men to around feet and perform martial arts circles.,are shown of the door and then leads into more clips of people laughing and pulling away.,gold0-orig,pos,unl,unl,unl,unl,A man is seen standing on a roof using a tool to pull up tile.,Several clips\nanetv_VUvEWwghANE,14028,The tool is being shown on a table. A man in a green shirt,is standing on a roof.,is talking in a barber shop.,is standing in a blue bath.,explains how to iron the handles.,is talking while welding the ax.,gold1-orig,pos,unl,unl,unl,unl,The tool is being shown on a table.,A man in a green shirt\nanetv_VUvEWwghANE,14027,A person is ripping up a roof with a tool. The tool,is being shown on a table.,is then put to the carpet.,is scooped with the stacked up and items for others.,is snowing to a wall next to a tree.,moves away from the tree.,gold1-orig,pos,unl,unl,unl,unl,A person is ripping up a roof with a tool.,The tool\nanetv_VUvEWwghANE,7195,Several clips are shown of the man ripping up tiles on the roof. The man,continues to work with others.,continues to lay in carpet and ends by presenting the plaster off of the wall.,continues stretching while another is seen holding his arm's length and showing various angles.,shares the table with the camera.,puts on his clothes and the camera zooms in on him.,gold0-reannot,pos,unl,unl,unl,unl,Several clips are shown of the man ripping up tiles on the roof.,The man\nanetv_vWde8sMxe1w,13708,Crowds watch and cheer the man on. the man,takes off running across the track.,is doing running video on the sidewalk.,moves itself toward the end of the routine.,\"enters as as the staff retracts the wood for a screwdriver, several bullets are aimed.\",finishes flipping and turns on the exercise studio.,gold0-orig,pos,unl,unl,unl,unl,Crowds watch and cheer the man on.,the man\nanetv_vWde8sMxe1w,11014,A track athlete is shown on a field. He,\"prepares, then runs fast before long jumping over the bar.\",is running a pole on the track.,runs down the track and performs several slow flipping exercises.,shoots with a quick motion then proceeds over the field.,is pushing blades and fights to ride a fellow athlete.,gold0-orig,pos,unl,unl,unl,unl,A track athlete is shown on a field.,He\nanetv_vWde8sMxe1w,13707,A man stands in the middle of a stadium. crowds,watch and cheer the man on.,gather in the gym convention rooms.,run and take track gear while performing on a race with their skateboarders around him.,two men are gathered on a podium before a crowd.,\"mill around to jump soccer, zooming from a fancy.\",gold0-orig,pos,unl,unl,unl,unl,A man stands in the middle of a stadium.,crowds\nanetv_vWde8sMxe1w,11015,\"He prepares, then runs fast before long jumping over the bar. He\",\"wins, screaming and jumping while hugging his teammates.\",does a dunk on her right while people follow her.,walks to the front of the dance club where a woman is jogging behind him.,follows the clowns off the ground and into a residential area.,rolls over and surfs.,gold1-reannot,pos,unl,unl,unl,unl,\"He prepares, then runs fast before long jumping over the bar.\",He\nanetv_MCnvxOLnbsg,16975,A silver car is parked in the street. A man power,washes the car in the street.,sprays the hose on the truck.,drives the car down the side.,comes out of the garage.,moves off in the river.,gold0-orig,pos,unl,unl,unl,unl,A silver car is parked in the street.,A man power\nanetv_MCnvxOLnbsg,16976,He then dries it off. The car,is now completely clean.,is putting gently cement all around the house.,stops together after a bit.,is then shown spraying snow from the car.,swings right in front of him.,gold0-orig,pos,unl,unl,unl,pos,He then dries it off.,The car\nanetv_yyCsQ7QzAJ8,5552,\"The person whip white eggs and adds the sugar. Then, the person\",\"adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again.\",\"add different lemons, sets them up on the counter, then stirs and sugar together in the mixer.\",puts the cookies on a golden juicer and chases after them.,cleans mixture and garlic together and add an arc sauce on toe cakes.,uses a mixer to add the mixture onto the griddle.,gold0-orig,pos,unl,unl,unl,unl,The person whip white eggs and adds the sugar.,\"Then, the person\"\nanetv_yyCsQ7QzAJ8,5551,Person puts chocolate and whipping cream in a pot to melt. The person,whip white eggs and adds the sugar.,blends the charleston on the winding pot.,cuts a few pieces with an electric spoon.,cuts the lemons that is a slice of cake.,rinses the pan and dips the flame.,gold0-orig,pos,unl,unl,unl,unl,Person puts chocolate and whipping cream in a pot to melt.,The person\nanetv_yyCsQ7QzAJ8,5554,\"After, the person mix the chocolate mix and the whip cream, the adds flower and mix all the ingredients. Next, the woman\",\"applies cooking oil to a baking pan, and put the cake mix in it and bakes.\",\"puts the mixture in a pot, mix the flavor for the flower.\",pours butter in front another baking put in the oven to pour the ingredients with sugar.,drop the glass and pour the syrup into the bowl with also oil and soda.,puts the saddle in the end and make it while talking to her and serves the pasta down from the vegetables.,gold0-orig,pos,unl,unl,unl,unl,\"After, the person mix the chocolate mix and the whip cream, the adds flower and mix all the ingredients.\",\"Next, the woman\"\nanetv_yyCsQ7QzAJ8,5550,The ingredients for a chocolate cake is on a table. Person,puts chocolate and whipping cream in a pot to melt.,is licking food from a table and sitting with them next to it.,is putting noodles in a bowl.,is cutting the edges of the top potato and showing it in circular motion.,,gold0-orig,pos,unl,unl,unl,n/a,The ingredients for a chocolate cake is on a table.,Person\nanetv_yyCsQ7QzAJ8,343,\"The person continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over. Finally she\",pours powdered sugar all over the cake.,puts lemons on a cigarette.,mixes the ingredients with a spatula and watch in the doorway then blended.,takes out the sandwich in the end and proceeds to get some cream.,puts up a dish and moves into the frame to speak to the camera.,gold0-orig,pos,unl,unl,pos,pos,\"The person continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over.\",Finally she\nanetv_yyCsQ7QzAJ8,342,A camera pans over several ingredients laid out and leads into a person mixing them into a bowl. The person,\"continues adding ingredients and blending them together, followed by putting them into a pan and baking in an over.\",pours food from the broken glass and attempts to bite off the eggs and dry.,mixes ingredients together and uses a mixer to peel the leaves off.,mixes various ingredients back into bowl and shows to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A camera pans over several ingredients laid out and leads into a person mixing them into a bowl.,The person\nanetv_yyCsQ7QzAJ8,5553,\"Then, the person adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again. After, the person mix the chocolate mix and the whip cream, the adds flower and\",mix all the ingredients.,ingredients to a bigger pan.,put the bottom to the cake.,butter to the pan.,sieve directly with it.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the person adds the yolks in the chocolate mix mix it and adds cooking oil, and mix it again.\",\"After, the person mix the chocolate mix and the whip cream, the adds flower and\"\nanetv_0rDb-zfhH0E,17184,They talk about how they earned their karate uniforms and what they like about karate. The girl,talks about her brother and more about karate.,jumps in the front of the audience and plays with the crowd.,leaves with an ax and how to hold it sticks.,begins to explain the process of powdered facial clothes in the market.,uses a basketball and shattered way to make a fight with a baton.,gold0-orig,pos,unl,unl,unl,unl,They talk about how they earned their karate uniforms and what they like about karate.,The girl\nanetv_0rDb-zfhH0E,17187,The girl does various karate moves for the camera. Then the brother,does several different karate moves for the camera.,appears with the charmingly bash.,grabs turns infinitely after throwing a basketball.,grab a quaffle and writes.,flips and karate jumps.,gold0-orig,pos,unl,unl,unl,pos,The girl does various karate moves for the camera.,Then the brother\nanetv_0rDb-zfhH0E,17186,The girl plays effects on her brother. The girl,does various karate moves for the camera.,swims to a blue base with the small boy.,walks past high fiving his opponent.,delivers the balls for the child to push the balls down to a picnic table.,,gold1-reannot,pos,unl,pos,pos,n/a,The girl plays effects on her brother.,The girl\nanetv_Zzj03Cew2vk,14572,The woman rubs the lotion into her skin and leads into her rubbing lotion on the beach. More close ups of bottles,are seen as well as text on the screen.,are shown followed by a person putting a cream bar on them.,are shown as well as the lotion being sprayed onto a container.,are shown as well as the group spreading their legs into legs.,,gold1-orig,pos,unl,unl,unl,n/a,The woman rubs the lotion into her skin and leads into her rubbing lotion on the beach.,More close ups of bottles\nanetv_Zzj03Cew2vk,5566,A bottle of moisturizer is shown. A woman on a beach,applies it to her skin.,is leaning against the wall.,is shown with a machine.,walks towards a bucket showing water in a bowl.,makes some rubiks cubes dissolves and computer.,gold0-orig,pos,unl,unl,unl,unl,A bottle of moisturizer is shown.,A woman on a beach\nanetv_Zzj03Cew2vk,5568,She rubs it into her skin. Text,appears on screen describing the product.,hurries herself inside.,\"been there in the hallway, someone sits alone at her school kitchen table and picks up a knife.\",notices the woman with a blank expression.,grabs the hair over to her face and holds it above her head.,gold0-orig,pos,unl,unl,unl,unl,She rubs it into her skin.,Text\nanetv_Zzj03Cew2vk,5567,A woman on a beach applies it to her skin. She,rubs it into her skin.,begins putting shoe silver on the shoe.,completes a rendition and blows them onto the hair.,has a brush on her hands and dips it in a parking tub.,,gold0-orig,pos,unl,unl,unl,n/a,A woman on a beach applies it to her skin.,She\nanetv_Zzj03Cew2vk,14571,A close up of a beauty product is shown that leads into a person grabbing the bottle. The woman,rubs the lotion into her skin and leads into her rubbing lotion on the beach.,finishes painting the floor and continues washing the other woman's hair.,cleans dishes in various objects of paint as well as people cheering.,wipes the water on the window herself and removes his pants.,speaks to the camera and proceeds to iron a spray brush along the board while holding it up close.,gold1-orig,pos,unl,unl,unl,unl,A close up of a beauty product is shown that leads into a person grabbing the bottle.,The woman\nlsmdc0020_Raising_Arizona-57266,5904,As the lights are thrown on. The room,is hung with streamers.,is lit in heavy clusters.,\"is set, covered in ash.\",seems to fill with a large bundle of cds.,is beautifully hardened and dramatic as the puppets go in.,gold0-orig,pos,unl,unl,unl,unl,As the lights are thrown on.,The room\nanetv_-sd2XAFkeC0,807,An intro of white screen with a picture of people in a raft and the company name and location are displayed. A man,is now standing next to moving water as he's talking and looking at the camera.,speaks to a group and while holding a picnic stick and leaning on the tent in boiling water.,appears with a tool and talks in a dimly lit room of a conference room wearing glasses and then.,holding a paddle in a kayak riding the kayak from a water bottle.,talks while standing on a fishing boat.,gold1-orig,pos,unl,unl,unl,unl,An intro of white screen with a picture of people in a raft and the company name and location are displayed.,A man\nanetv_-sd2XAFkeC0,808,\"The focus now changes to people in a bunch of different rafts as they are going through very rough waters as waves throw their raft in the air or splash onto or above them. The outro appears and it's the same screen as the intro, and a white worded website and copyright\",appear on black screen.,demonstrates the same sequence.,appear overlaid.,appear on the screen.,,gold0-orig,pos,unl,pos,pos,n/a,The focus now changes to people in a bunch of different rafts as they are going through very rough waters as waves throw their raft in the air or splash onto or above them.,\"The outro appears and it's the same screen as the intro, and a white worded website and copyright\"\nanetv_-sd2XAFkeC0,2880,A man is seen speaking to the camera and leads into a group of people riding in a raft. The camera,shows various angles of people riding and getting splashed by water.,pans all around an laughing while sitting and speaking to one another.,captures several people running down a large hill while various tricks are shown.,clips shown from different angles as well as pictures of a man speaking.,more close up and leads back and several clips of people riding together in the water.,gold0-orig,pos,unl,unl,pos,pos,A man is seen speaking to the camera and leads into a group of people riding in a raft.,The camera\nanetv_-sd2XAFkeC0,2881,The camera shows various angles of people riding and getting splashed by water. They,continue riding around and smiling with one another as well as speaking to the camera.,push into the water by pulls the water back on to the stand.,scrapes numerous angles all along the distance of the moving board.,see at an waterfall jump and to hiking.,look in from the tubes.,gold0-reannot,pos,unl,unl,unl,unl,The camera shows various angles of people riding and getting splashed by water.,They\nlsmdc1062_Day_the_Earth_stood_still-100978,16813,People are sitting in the open back of the pickup. He,\"looks earnestly at someone, who considers him without emotion.\",\"are getting out of the car, walking against the rail, talking to them.\",\"hears a car clipping, stopped fast and collapses.\",is incredulous that one of them has to deal with the specifics of the story.,pushes him along the cavernous walkway toward the river.,gold0-orig,pos,unl,unl,unl,unl,People are sitting in the open back of the pickup.,He\nlsmdc1062_Day_the_Earth_stood_still-100978,16816,An iron gate is topped with ornate spikes. Someone,climbs over a low wall also topped with iron railings.,faces the horse's groom.,is lined pale with clothes seated at the small table.,uses a lasso to chop it in half.,demonstrates sharpening a butcher knife.,gold1-orig,pos,unl,unl,unl,unl,An iron gate is topped with ornate spikes.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100978,16815,He looks thoughtfully at someone. An iron gate,is topped with ornate spikes.,is opened with wings.,closes as his troops teacher steps out.,rises into the air.,,gold1-reannot,pos,unl,unl,unl,n/a,He looks thoughtfully at someone.,An iron gate\nlsmdc1062_Day_the_Earth_stood_still-100978,16817,Someone looks down at the inscriptions. Someone,kicks leaves away from one of the graves and dust off the headstone with his glove.,musses his cigarette and looks out.,is in her late twenties.,\"looks at her as if relieved, then turns her over to someone.\",nods and hugs his earpiece over.,gold0-reannot,pos,unl,unl,unl,unl,Someone looks down at the inscriptions.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100978,16814,\"He looks earnestly at someone, who considers him without emotion. He\",looks thoughtfully at someone.,stares off with a knowing smile.,becomes stoic as the hand of his different wrist.,hold his younger brother's gaze.,takes the book then crumples down the note.,gold1-reannot,pos,unl,unl,unl,unl,\"He looks earnestly at someone, who considers him without emotion.\",He\nanetv_lHnSteuHdZ4,7259,The guy then pulls hard on the fishing line and drags it in. finally he,uses a long metal hook to hook the fish he caught and brings it out the hole.,\"starts to past the ramps, then he is shown to climb off the rope and go under the water.\",adds the body strength to shoot the ball in both hands when the man helps.,tries to hold the scoop of the ball as he goes next to the raft.,starts climbing again and crawls high into the greenery.,gold0-orig,pos,unl,unl,unl,unl,The guy then pulls hard on the fishing line and drags it in.,finally he\nanetv_lHnSteuHdZ4,7257,\"A person is walking slow on ice, trying to to crack it. the person\",made many mid size hole in the ice and have fishing line hanging deep in the water underneath.,washes the car before a falling snow.,continues explain on the contacts.,takes off and runs through the trees while he walks through them.,puts a pan on top of the green ice.,gold0-orig,pos,unl,unl,unl,unl,\"A person is walking slow on ice, trying to to crack it.\",the person\nanetv_lHnSteuHdZ4,7258,The person walking to one of the hole and checks the fishing line to see if he caught nay fish. the guy,then pulls hard on the fishing line and drags it in.,holds it out and then his distance.,is standing on the beach and dogs begin to rinse the grass water.,grabs the board and lifts it to his face.,is fishing on the top of a long fish.,gold0-orig,pos,unl,unl,unl,unl,The person walking to one of the hole and checks the fishing line to see if he caught nay fish.,the guy\nanetv_lHnSteuHdZ4,7260,Finally he uses a long metal hook to hook the fish he caught and brings it out the hole. he then,unhooks the long hook and use his tools to unhook the small fishing hook the the fish mouth leaving the fish bloody.,shows his teeth to decide what he strategies to do with the closing games.,swings the rod back and forth over the hole.,\"turns around while the man on the right, then taps the large fish out in that end.\",scratches the section behind it and points it at a large fishing hole.,gold0-reannot,pos,unl,pos,pos,pos,Finally he uses a long metal hook to hook the fish he caught and brings it out the hole.,he then\nanetv_qdMjXJTsX94,8170,A spinning logo with a purple background then text are seen on the screen. A woman in blue dress,plays a drum set in a studio.,walks in a marching band holding a frisbee.,is talking on an elliptical game in the gym.,\"is turning a can of sand on a white object to catch onto the athlete, floating in the water and as far as life\",is shown applying contact lenses.,gold1-orig,pos,unl,unl,unl,pos,A spinning logo with a purple background then text are seen on the screen.,A woman in blue dress\nlsmdc0023_THE_BUTTERFLY_EFFECT-59524,11898,Someone puts the camera on a tripod in the basement. People,sit on folding chairs in front of the camera.,\"take a break, then spies himself on the lit roof of a police car in an empty parking lot.\",someone walks alone in a vacant room.,completing a change.,,gold0-orig,pos,unl,unl,unl,n/a,Someone puts the camera on a tripod in the basement.,People\nanetv_wHxB-5jKjbQ,10124,The two men cross a person alone in a canoe. The men,continue sailing down the river passing between arches.,go water skiing over a hill of trees with tubes.,\"set it in the fire, instructs them on what to do.\",do rope jumping and fall off without treacherous directions.,play tug of war with each other.,gold0-orig,pos,unl,unl,unl,pos,The two men cross a person alone in a canoe.,The men\nanetv_wHxB-5jKjbQ,10121,People sail in canoes rowing with a paddle in a choppy river. Two men in a canoe,\"sail near the bank of the river, but then sail in the river.\",walk on the back of the boat.,lays down near a river.,splashes water on rocks and ski across a waterfall.,paddle down a steep row.,gold1-orig,pos,unl,unl,unl,pos,People sail in canoes rowing with a paddle in a choppy river.,Two men in a canoe\nanetv_wHxB-5jKjbQ,10125,The men continue sailing down the river passing between arches. Men in a canoes,are on the border of the river.,wait in the middle of the road.,raise their handles and roll down a skier.,walk along the side of a city.,suit fall from a cliff.,gold0-orig,pos,unl,unl,unl,unl,The men continue sailing down the river passing between arches.,Men in a canoes\nanetv_wHxB-5jKjbQ,10126,\"Men in a canoes are on the border of the river. After,\",continue sailing straight in the river.,a group explores a canoe at a river.,continuously water ski through heft the canoes.,a man sprints down the hills in a team river.,the rafter move their canoe through the water.,gold1-orig,pos,unl,unl,unl,unl,Men in a canoes are on the border of the river.,\"After,\"\nanetv_wHxB-5jKjbQ,10123,The men spins the canoe an pass near an arch of the canoe course. The two men,cross a person alone in a canoe.,spot each other from left to right before cars begin.,are shown demonstrating the waterfall to kayak and are riding down the river again.,then ride the bike first.,,gold0-reannot,pos,unl,unl,unl,n/a,The men spins the canoe an pass near an arch of the canoe course.,The two men\nlsmdc3047_LIFE_OF_PI-21908,4024,\"Young someone screws his mouth up thoughtfully. Later in the dark, someone\",sits hunched beneath the sheet and uses a flashlight.,opens a door to find another sketch.,sits in his ripple of respect as they grin towards each other's face.,sits with his head watching the boy.,,gold0-orig,pos,unl,unl,pos,n/a,Young someone screws his mouth up thoughtfully.,\"Later in the dark, someone\"\nlsmdc3047_LIFE_OF_PI-21908,4025,\"Later in the dark, someone sits hunched beneath the sheet and uses a flashlight. Someone\",turns the pages of a comic book depicting the someone story.,walks past then bursts through a dark room with some tools.,holds a handle at the door.,tries on a wristwatch and stacks the cylinders for it.,\"fixes someone's human mask, then drops the gun.\",gold0-orig,pos,unl,unl,unl,unl,\"Later in the dark, someone sits hunched beneath the sheet and uses a flashlight.\",Someone\nlsmdc3047_LIFE_OF_PI-21908,4023,The lovely woman snuggles on a bed with her two boys. Young someone,screws his mouth up thoughtfully.,peers out the driver's window at the attendant.,resolutely takes his shirt off.,sits with her gaze on the old man's chest.,spins the pair back inside.,gold0-orig,pos,unl,unl,unl,unl,The lovely woman snuggles on a bed with her two boys.,Young someone\nlsmdc3047_LIFE_OF_PI-21908,4026,Someone turns the pages of a comic book depicting the someone story. A large panel,illustrates a smiling someone holding his mouth open.,focuses away writing down a chalkboard.,shows his outline to his web.,highlights a thick series of rising humanity.,,gold1-orig,pos,unl,unl,unl,n/a,Someone turns the pages of a comic book depicting the someone story.,A large panel\nlsmdc3047_LIFE_OF_PI-21908,4022,She tells her sons the story. The lovely woman,snuggles on a bed with her two boys.,follows her into his office.,speaks to another guy in his office.,regards her friend with a tender look.,,gold0-orig,pos,unl,unl,unl,n/a,She tells her sons the story.,The lovely woman\nlsmdc0053_Rendezvous_mit_Joe_Black-71542,1243,\"Someone smiles faintly, takes a deep breath, he strides out again, someone right with him. In tandem they\",continue on and disappear over the crest of the hill.,haul a purple ball towards his crotch.,throw a condom in a plastic view.,are moving like someone around the church.,\"are tops with mountains and delta, leading the way to the reservoir.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone smiles faintly, takes a deep breath, he strides out again, someone right with him.\",In tandem they\nlsmdc0053_Rendezvous_mit_Joe_Black-71542,1244,\"In tandem they continue on and disappear over the crest of the hill. Down below, someone, in a pained reflex, again\",turns and looks up towards the hill.,sits on the dusty desk sleeping in an office.,attaches a pair of dry signals to a cross.,has to face the group to the nice part of the first day.,drops a bottle of oil on a bedside table.,gold0-orig,pos,unl,unl,unl,unl,In tandem they continue on and disappear over the crest of the hill.,\"Down below, someone, in a pained reflex, again\"\nanetv_EY4YIa-kNgs,1633,He puts down the scrub and grabs the glass to place it in the right side of the sink where he wets the glass and puts it away in the dish rack. He,moves to grab the towel and clean a dish.,is now residue from the piercing which he begins to clean it.,hangs up the carried only size than he can see.,shows up and starts to wash a brown trolley then cleans around her face.,,gold0-orig,pos,unl,unl,unl,n/a,He puts down the scrub and grabs the glass to place it in the right side of the sink where he wets the glass and puts it away in the dish rack.,He\nanetv_EY4YIa-kNgs,1632,He drops the scrub into the sink and lays a glass down. He,grabs a towel and cleans the glass and moves on to scrub the glass as well.,wipes it to the side of the sink and test it.,lays the items on top of the bottle.,continues to look down the table.,,gold0-orig,pos,unl,unl,pos,n/a,He drops the scrub into the sink and lays a glass down.,He\nanetv_EY4YIa-kNgs,1631,He turns to the sink behind him where there are dishes sitting in water. He,drops the scrub into the sink and lays a glass down.,\"drops the items into the box, opens the refrigerator and dumps it into a pile of clothes.\",puts his harmonica in the air.,then uses a cup to clean the cracks by the sink.,grabs the towel and shakes it to the sink.,gold1-orig,pos,unl,unl,unl,unl,He turns to the sink behind him where there are dishes sitting in water.,He\nanetv_EY4YIa-kNgs,1636,\"He returns to use the towel and clean a knife. He soaks the knife in the water and moves it to the dish rack, the boy\",goes back to clean a fork with the towel.,is the pan dirty teeth.,interacts and talks to the camera.,stands with his hands up and claps.,has a scarf around his hands.,gold1-orig,pos,unl,pos,pos,pos,He returns to use the towel and clean a knife.,\"He soaks the knife in the water and moves it to the dish rack, the boy\"\nanetv_EY4YIa-kNgs,1635,He soaks the dish in water and moves it to the dish rack. He,returns to use the towel and clean a knife.,\"shows the blow dryer to it, then begins mixing some mousse to a palm of the hand materials before taking it back in.\",is cooking in the empty kitchen and using the garage.,finishes shaving his wet chin.,dips the pale water on the water and hefts it on the hanger.,gold0-orig,pos,unl,unl,unl,unl,He soaks the dish in water and moves it to the dish rack.,He\nanetv_EY4YIa-kNgs,1637,\"He soaks the knife in the water and moves it to the dish rack, the boy goes back to clean a fork with the towel. He\",moves the fork to the water to rinse soap off it.,\"squirms, then wets his hands and continues shaving them.\",\"wets his foot and boils down the dish and then touches the ski, and holds his knees to his chest.\",\"edges back and forth, then moves it back and forth before finally touching the tile before speaking to the camera.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He soaks the knife in the water and moves it to the dish rack, the boy goes back to clean a fork with the towel.\",He\nanetv_EY4YIa-kNgs,1634,He moves to grab the towel and clean a dish. He,soaks the dish in water and moves it to the dish rack.,continues eating the sandwich in the hotel bed.,gets a plastic rag and puts it under the sink.,brings the towel over to the sink and sprays it with the sponge.,moves a hand to a towel and begins to wipe on the hand.,gold0-orig,pos,unl,unl,unl,pos,He moves to grab the towel and clean a dish.,He\nanetv_EY4YIa-kNgs,1638,He moves the fork to the water to rinse soap off it. The young boy,\"stands in front of camera, speaking.\",wipes a sponge at the surface with the sponge.,picks up a bottle and hangs it up in the end.,takes in his left shoe and sprays water on the shaver.,,gold0-reannot,pos,unl,unl,unl,n/a,He moves the fork to the water to rinse soap off it.,The young boy\nanetv_EY4YIa-kNgs,1630,A young boy holds a dish scrub as he speaks. He,turns to the sink behind him where there are dishes sitting in water.,gives the guy a manicure attract his cheek and hand.,pours the strawberry into the tin cup in hot water.,\"adjusts a piece of clothes, and discusses.\",takes a cover of a piece of wallpaper and bats it.,gold0-reannot,pos,unl,unl,unl,unl,A young boy holds a dish scrub as he speaks.,He\nanetv_JY-H1u1hJZw,8224,The little boy sits in the blue kayak holding paddles. Then someone else is shown paddling in the water and there,are people standing on shore.,'s a top splash of the water trailing closely behind him.,'s an story turning up with even closing credits.,is a closeup in the lake.,,gold0-orig,pos,unl,unl,pos,n/a,The little boy sits in the blue kayak holding paddles.,Then someone else is shown paddling in the water and there\nlsmdc1004_Juno-6692,14115,\"She puts on some lip balm and starts the engine. Someone, surfing on his pc,\",sees the blue van pull up outside.,\"has a top tooth dryer on her forehead, as if it's two years old.\",watches from the passenger into the stern.,\"sucks air in front of someone, putting face to face and looking at the records.\",is completely awkward and frustrated.,gold1-orig,pos,unl,unl,unl,pos,She puts on some lip balm and starts the engine.,\"Someone, surfing on his pc,\"\nlsmdc1004_Juno-6692,14113,Someone's head drops miserably. She,\"strides away with her canvas bag over her shoulder, leaving someone standing by his locker, watching her glumly.\",reads the book and football yellowstone on the mountain.,blows a whistle over the fires.,holds her hand to someone's bare chest.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone's head drops miserably.,She\nlsmdc3038_ITS_COMPLICATED-17482,16706,She puffs out a cloud of smoke. Someone,stares at her reflection in a mirror.,nods to get the cigarette as she ambles into someone's room.,regards someone with a half - smile.,removes a cigarette from the display.,sits up next to her.,gold0-reannot,pos,unl,unl,unl,unl,She puffs out a cloud of smoke.,Someone\nanetv_Jj7Xcisw62E,545,\"The black male is beginning to win but John Cena uses all of his might to not give in and gains enough strength to push the hand back the other way. After a certain amount of time, John Cena\",wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him.,looks like he makes a newscaster.,\"step a quick steps, do a back flip with his hands on the man's arm that handling his hand with his hands.\",\"plays again, playing against them while they all organize and scratch.\",,gold0-orig,pos,unl,unl,unl,n/a,The black male is beginning to win but John Cena uses all of his might to not give in and gains enough strength to push the hand back the other way.,\"After a certain amount of time, John Cena\"\nanetv_Jj7Xcisw62E,544,A large black male and John Cena are in a wrestling ring arm wrestling. The black male is beginning to win but John Cena,uses all of his might to not give in and gains enough strength to push the hand back the other way.,can be sure he twigs the perfect place.,doing a sport and turning his neck off sumo jumps.,is practicing attack as he's making shots of himself.,begins to whisk red on the stair he did.,gold0-orig,pos,unl,unl,unl,unl,A large black male and John Cena are in a wrestling ring arm wrestling.,The black male is beginning to win but John Cena\nanetv_Jj7Xcisw62E,546,\"After a certain amount of time, John Cena wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him. As John Cena continues to celebrate the other guy begins talking trash and John Cena\",looks at him then talks back to the crowd.,continues playing footage of the players.,is on the stage closing captions behind him.,laugh just as he makes notes.,wins the match that ends the closing scene.,gold0-orig,pos,unl,unl,unl,pos,\"After a certain amount of time, John Cena wins and someone jumps on his back and begins wrestling him and picks the black man up and drops him.\",As John Cena continues to celebrate the other guy begins talking trash and John Cena\nanetv_ilE77hVgjjo,4038,A girl moves around an indoor playground. The girl,slides down and climbs up a slide with boy.,sets down the hand stopper by bending back on her feet and turning off the camera.,gets off from an elliptical trainer.,weighs another baby pose.,slides down the floor and lands at a stop set.,gold0-orig,pos,unl,unl,unl,unl,A girl moves around an indoor playground.,The girl\nanetv_ilE77hVgjjo,4039,The girl slides down and climbs up a slide with boy. A finger,touches the girls hair and head.,run across the boy's arm.,dips the dog in a circle.,kneels on the grass.,appears in the air and then wrings out.,gold0-orig,pos,unl,unl,unl,unl,The girl slides down and climbs up a slide with boy.,A finger\nanetv_KlIAmoVrptA,1107,\"The woman holds up a disposable razor, then holds up a reusable razor and shows that the razor can be popped up. The woman\",is standing again and is now applying lotion to her leg.,on the side looks new for her dog.,is now seen talking on next images while cream to her eye.,\"demonstrates her wetsuit, and then turns the heavy purse on her face and ties it perfectly and throws it backwards.\",is used to work different rags along the cut with the tank top.,gold0-orig,pos,unl,unl,unl,unl,\"The woman holds up a disposable razor, then holds up a reusable razor and shows that the razor can be popped up.\",The woman\nanetv_KlIAmoVrptA,1108,The woman is standing again and is now applying lotion to her leg. The woman,is now standing with just her upper body showing and is smiling and talking.,grabs her other arm several times and gets back down.,continues to blow put out obstacle wheels.,demonstrates how to put clothes on a pointe and clean it looking and falling.,unrolls the hair on her hair and begins by applying it affectionately after the performance.,gold0-orig,pos,unl,unl,unl,pos,The woman is standing again and is now applying lotion to her leg.,The woman\nanetv_KlIAmoVrptA,1106,\"A brunette woman is smiling and talking while standing in a bathroom with just her chest up visible and a quick banner on the bottom of the screen say's her name is Aubrey Morgan. The woman is now standing up and with just her legs visible and wearing shorts, she's holding a razor up and showing it in different angles, and close ups, the text on the screen\",reads good quality razor.,indicating that black lenses and a top at most.,\"appear front continues to her holding a brush, then first person washing someone, while having disappeared.\",went by carefully alternating it all up and down how it works.,say's more so what the music was and what he sees to it.,gold0-orig,pos,unl,unl,unl,unl,A brunette woman is smiling and talking while standing in a bathroom with just her chest up visible and a quick banner on the bottom of the screen say's her name is Aubrey Morgan.,\"The woman is now standing up and with just her legs visible and wearing shorts, she's holding a razor up and showing it in different angles, and close ups, the text on the screen\"\nanetv_M-n0vW3p2sE,8259,A young man prepares to mount a pair of balancing beams in an indoor arena. He,mounts the bars and begins performing.,ends a routine in the squad room.,plays with the adverts as he continues to wait.,does a slow move and jumps off the beam stretched high onto a mat.,,gold0-orig,pos,unl,unl,pos,n/a,A young man prepares to mount a pair of balancing beams in an indoor arena.,He\nanetv_M-n0vW3p2sE,14558,A crowd in the background watches gymnasts performing. A gymnast,\"runs across a floor, performing cartwheels and flips.\",performs a routine on the beam before flipping himself in and out of frame.,does a back flip off balance himself.,does flips across a mat in her gym.,performs a routine on the balance beam and lands on a mat.,gold0-orig,pos,pos,pos,pos,pos,A crowd in the background watches gymnasts performing.,A gymnast\nanetv_M-n0vW3p2sE,14560,\"Another gymnast in an orange suit, jumps onto two bars and performs many flips. A coach who was standing nearby\",removes a mini trampoline from under the bars.,goes the splits different flips and lands on the mat.,does several gymnastics springs.,attacks several female cheerleaders on land.,,gold0-orig,pos,unl,unl,unl,n/a,\"Another gymnast in an orange suit, jumps onto two bars and performs many flips.\",A coach who was standing nearby\nanetv_M-n0vW3p2sE,8260,He mounts the bars and begins performing. He,attempts to dismount but falls instead.,is seated on the diving board while swinging a ballerina above uneven bars.,continues making balance motions wrathfully after the jump in slow motion.,kicks his hands in the air and does a series of kicks.,continues to do routine harry jumps as he spins flips.,gold0-orig,pos,unl,unl,pos,pos,He mounts the bars and begins performing.,He\nanetv_M-n0vW3p2sE,14562,The gymnast jumps off the bars and lands on his butt. He,stands up and raises his arms above his head.,flips the bars and jumps on the mat in front of him.,\"performs several flips, flips, and flips on a rope.\",falls off the slackline onto the mat.,,gold0-orig,pos,unl,unl,pos,n/a,The gymnast jumps off the bars and lands on his butt.,He\nanetv_Ap7GCrt9C4w,9251,Women are in the background of a gym lifting weights. man,is preparing himself to lift weigh and stands in front of weight.,is holding a rubik's cube and explaining how to do it.,lifts all the weight above her head.,is in a gym.,,gold0-orig,pos,unl,unl,pos,n/a,Women are in the background of a gym lifting weights.,man\nanetv_JJzBlV3p1Wc,16601,A woman in an outdoor environment teaches a young boy and girl how to wash clothes using a washboard and a metal bucket. A young boy,pulls on a metal lever protruding from a metal bucket with a washboard in it.,\"is seen standing across to the camera with a bucket and holding a sprayer, puts the towel together and holds up an egg.\",is seen speaking with a camera and talking while standing in front of a swinging mini phone.,sits in the center of a small room in a tall kitchen where the woman boils dishes and make a cocktail into a cup.,is speaking to the camera as she attempts to get bone into buckets.,gold0-orig,pos,unl,unl,unl,unl,A woman in an outdoor environment teaches a young boy and girl how to wash clothes using a washboard and a metal bucket.,A young boy\nanetv_JJzBlV3p1Wc,16602,\"Two young girls watch as a woman in a white apron demonstrates to the boy and girl how to turn the lever and also hangs clothes on a clothes line. The young girl begins to pull the lever while the boy helps the woman hang clothes, and then all of the children\",take turns operating different parts of the washboard mechanism.,sits on the mat.,clean the tire inside for a while.,and ski dive in the water.,,gold0-reannot,pos,unl,unl,unl,n/a,Two young girls watch as a woman in a white apron demonstrates to the boy and girl how to turn the lever and also hangs clothes on a clothes line.,\"The young girl begins to pull the lever while the boy helps the woman hang clothes, and then all of the children\"\nanetv_M-bUoaIqtDk,13520,The person passes us and turns around. The person,stops before taking off again.,rubbed the bird again.,shows off a roll.,view the blonde hair we see the group of people.,turns off the radio and continues to go around taking puffs out and puffs the smoke.,gold0-orig,pos,unl,unl,unl,pos,The person passes us and turns around.,The person\nanetv_M-bUoaIqtDk,13519,We see a person kitesufing in the sea. The person,passes us and turns around.,\"turns in circles, then floats across the stage.\",turns and swims away off the sand.,stops talking and then jumps to the water.,,gold0-orig,pos,unl,unl,pos,n/a,We see a person kitesufing in the sea.,The person\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18438,\"Once again, someone lights the canon too soon. Someone\",pats someone encouragingly on the shoulder as he tentatively enters the maze.,is rohirrim.,\"grabs him around to the waist, grabs her ankle, and nuzzles it.\",keeps the ash remains cuffed through his mouth.,\"is lying, tearfully, and lies.\",gold0-orig,pos,unl,unl,unl,unl,\"Once again, someone lights the canon too soon.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18446,The intricate maze extends far around him stretching away into distance of mist covered valley. Someone,moves slowly and cautiously between the hedges.,approaches the dark wavy haired woman with a trim neck.,steps further into the secret opening.,\"emerges from the surface, running along a dark circular stone beam.\",,gold0-orig,pos,unl,pos,pos,n/a,The intricate maze extends far around him stretching away into distance of mist covered valley.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18455,\"She reaches a dead end and panicking, runs back the way she came. Her face clammy with fear, she\",stares uncertainly down the misty pathway.,raises a bamboo sword in the air.,watches her presence with emotion.,rotates the end to the lady.,tumbles on the bars clutching her chest.,gold0-orig,pos,unl,unl,unl,unl,\"She reaches a dead end and panicking, runs back the way she came.\",\"Her face clammy with fear, she\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18442,Someone swallows hard and follows the direction someone has indicated. Each long path,looks exactly the same.,lies also waiting over the storm.,\"shows only noise, as vehicles drive by.\",pulls up towards the big hotel.,,gold0-orig,pos,unl,unl,unl,n/a,Someone swallows hard and follows the direction someone has indicated.,Each long path\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18458,He peers through the swirling mist and spots someone. Someone,draws back into the hedge as someone shines the lighted end of his wand straight into someone's face.,looks down at the broken locket.,\"opens the door into the front door, flinging it shut and slams the door shut.\",stabs a large white canvas with an oar.,throws himself to his feet.,gold0-orig,pos,unl,unl,unl,pos,He peers through the swirling mist and spots someone.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18464,He dives head first through a closing gap and lands on the ground. Someone,sees a bright object in a distance.,pensively stirs his face in his hands.,\"mirrored wall, someone picks himself up and staggers back against the track, striding through a flood door.\",jumps on the road halfway down onto the edge of the road.,lumbers above the platform of someone's spiral staircase.,gold1-orig,pos,unl,unl,unl,unl,He dives head first through a closing gap and lands on the ground.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18454,Someone runs frantically between the hedges. She,\"reaches a dead end and panicking, runs back the way she came.\",\"the back of an suv, someone takes out the shovel and drops the atop acknowledgment to command up the dead incline.\",pursues the burmese flag.,ends the call.,,gold0-orig,pos,unl,unl,pos,n/a,Someone runs frantically between the hedges.,She\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18451,\"He forces his way through the dense branches as they close in around him, lashing him across the face. Meanwhile, someone\",\"plods along in his steady boots, carrying his wand.\",plunks unresponsive with his bedspread.,jog with a train of zombies.,peeks back on the tree.,hurries out into the magnificent home and follows through his grounds of large metal cavernous holes.,gold0-orig,pos,unl,unl,unl,unl,\"He forces his way through the dense branches as they close in around him, lashing him across the face.\",\"Meanwhile, someone\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18468,The roots reach out and trips someone. Someone,\"surges past, then stops, and looks back.\",hops off the truck and flings it.,looks in the mirror and stands in the doorway.,rests on one of the stagehands.,tosses his copies skyward.,gold0-orig,pos,unl,unl,unl,unl,The roots reach out and trips someone.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18457,Someone runs in the direction of the scream. He,peers through the swirling mist and spots someone.,pushes down the side of the structure.,catches it at the opposite end of the rope.,makes it along as the day falls.,,gold0-orig,pos,unl,unl,unl,n/a,Someone runs in the direction of the scream.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18462,A howling wind lashes the branches sending dust and leaves into the air. Someone,starts to run as the hedges starts to close together behind him.,pulls his blanket up behind him but there still no sound.,pulls his left hand towards the ground.,\"stuffs his final glance, then runs.\",reaches for the flames.,gold0-orig,pos,unl,unl,unl,unl,A howling wind lashes the branches sending dust and leaves into the air.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18448,He turns and looks behind him fearfully. Someone,has come in through another entrance.,\"whips his face with his wand, but remains still.\",\"confronts him, then returns his attention.\",bacon from his hand wound goes along wood.,gets out and speaks to the horse in a small house.,gold0-orig,pos,unl,unl,unl,unl,He turns and looks behind him fearfully.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18470,\"Someone is dragged backwards, tangled in the roots and branches of the hedge. He\",struggles in vain to escape.,\"scuttles out of the car and into someone, watching intently from the face as he slides halfway down the ladder.\",\"winces, before finally gently sailing onto the ground.\",\"digs on his cloak, the dangerously close to someone.\",\"grudgingly his chair, watches wings appear near the screen.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone is dragged backwards, tangled in the roots and branches of the hedge.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18460,\"Someone points his wand upwards. High above, red sparks\",explode in the evening sky.,fly over gatling gun tool.,are flying over the crescent moon.,fly as roaring fire illuminates the sky.,fly at his hand and yank.,gold0-orig,pos,unl,unl,pos,pos,Someone points his wand upwards.,\"High above, red sparks\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18439,Someone looks back towards the entrance and sees someone pointing surreptitiously to the left. He,\"stares uncertainly down the narrow, misty path.\",stands on its side.,passes it through his arms and examines out from the machinery.,shakes out again and shifts his eyes to someone.,lies rifle in a carriage.,gold0-orig,pos,unl,unl,unl,pos,Someone looks back towards the entrance and sees someone pointing surreptitiously to the left.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18443,\"Each long path looks exactly the same. The thick, hewn hedges\",rise 25 feet on either side.,take less from the mile path.,loom vanishing from the bush.,fill the forest all around someone.,,gold0-orig,pos,unl,pos,pos,n/a,Each long path looks exactly the same.,\"The thick, hewn hedges\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18472,The roots and branches loosen their hold. Someone,runs to someone and helps him to free himself.,\"studies the laser ramp standing under the mountain toward someone, who is in wreck.\",skulks up to the passenger window at the side.,hustles helplessly around the vehicle.,steps up to him and kisses it.,gold1-orig,pos,unl,unl,unl,unl,The roots and branches loosen their hold.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18466,Someone aims his wand at someone and knocks him unconscious. He,kicks someone's wand from his hand and raises his own wand.,follows it to the davenport.,stops writing in the ranks.,gulps down the contents.,\"wipes off his own face, then keeps looking dazed.\",gold0-orig,pos,unl,unl,unl,pos,Someone aims his wand at someone and knocks him unconscious.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18452,\"Meanwhile, someone plods along in his steady boots, carrying his wand. Someone\",spins around as he hears a sound behind him.,forces him softly to the side of the floor and walks out into the swirling corridor.,steps up to the doors on the double doors and gets up to leave.,brings the suitcase to his partner's garage and paces next them.,\"is led by the other hearse, dead vortex, its drawn chain.\",gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone plods along in his steady boots, carrying his wand.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18456,Sinuous roots creep towards someone from under the hedge. Someone,runs in the direction of the scream.,speed through traffic of traffic.,struggles to stand before him.,glimpses her and browses a lower backside.,furiously shakes someone's hand.,gold1-orig,pos,unl,unl,unl,unl,Sinuous roots creep towards someone from under the hedge.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18441,\"Suddenly, the hedges close together behind him, blocking the way out. Someone\",swallows hard and follows the direction someone has indicated.,boys sniff around curling straws.,comes running through the chain - link wall and collides with a soldier.,mount to life and yellow charges the limo door fine.,\"grinds the inward arms behind someone and turns, slowly as he grabs onto the grate.\",gold0-orig,pos,unl,unl,unl,unl,\"Suddenly, the hedges close together behind him, blocking the way out.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18440,\"He stares uncertainly down the narrow, misty path. Suddenly, the hedges\",\"close together behind him, blocking the way out.\",\"slide away, high, lush, and trees.\",appears and shuts down the stairs.,is covered in a huge layer of block.,begin to take out.,gold0-orig,pos,unl,unl,unl,unl,\"He stares uncertainly down the narrow, misty path.\",\"Suddenly, the hedges\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18467,\"They sprint forward, someone slightly ahead. The roots\",reach out and trips someone.,are sliding from someone while below.,\"shoots desperately under a boulder, then shoves it through the undergrowth.\",pays up as he faces over onto the field.,tumbles away from the devastation.,gold0-orig,pos,unl,unl,unl,unl,\"They sprint forward, someone slightly ahead.\",The roots\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18450,\"As confused as someone, he runs along the narrow paths between the neatly clipped hedges. He\",stops uncertain of which way to go.,stops the truck's path and strolls along the strip street.,holds someone's doleful gaze.,\"considers the area as he stands in the doorway for a moment, then turns and puts his hand in his suitcase.\",turns down the end of the platform and approaches the table.,gold0-orig,pos,unl,unl,unl,pos,\"As confused as someone, he runs along the narrow paths between the neatly clipped hedges.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18447,Someone moves slowly and cautiously between the hedges. He,turns and looks behind him fearfully.,twists his body around and undoes his tie.,\"pauses, staring fondly someone as he film up the stone.\",hangs a m on the door.,finishes off the light and finds himself one more dig.,gold0-orig,pos,unl,unl,unl,unl,Someone moves slowly and cautiously between the hedges.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18453,Someone's eyes are glazed over. Someone,runs frantically between the hedges.,reaches out to pan the paper.,stands the car near.,clamps his hand over someone's face.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone's eyes are glazed over.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18459,\"As he reaches her, she vanishes from sight, drawn under the hedge by a tangle of sinuous roots. Someone\",points his wand upwards.,runs to a watery cabinet.,looks down from the string dress.,dances forward.,swipes a finger onto his scar.,gold1-reannot,pos,unl,unl,unl,unl,\"As he reaches her, she vanishes from sight, drawn under the hedge by a tangle of sinuous roots.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18444,\"The thick, hewn hedges rise 25 feet on either side. Above his head, he\",can only see a narrow strip of sky.,\"peers into a waiting train, where someone is depiction music near the site.\",calls out to see something brown on the bottom of the raft.,moves in to dozens of gleaming liquor bottles.,finds and thoughtful pace with wide eyes.,gold0-reannot,pos,unl,unl,unl,unl,\"The thick, hewn hedges rise 25 feet on either side.\",\"Above his head, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18469,\"Someone surges past, then stops, and looks back. Someone\",\"is dragged backwards, tangled in the roots and branches of the hedge.\",pours the contents into a transparent tube.,\"leans through a window door, observing the entire opulent outside.\",hands her a box containing a beer.,appear and create a flash of light.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone surges past, then stops, and looks back.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18465,\"Someone sees a bright object in a distance. Heading towards it, he\",emerges onto a path between people.,sees two young guys bust a leather entry into his original position.,halts the dead vampire.,runs over to third and manages to jam an suv's door.,starts to go slow and hard.,gold1-reannot,pos,unl,unl,unl,unl,Someone sees a bright object in a distance.,\"Heading towards it, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18463,Someone starts to run as the hedges starts to close together behind him. He,dives head first through a closing gap and lands on the ground.,nuzzles his head wiggles his brow.,pets its fur tail at itself.,\"veers through the tent towards the bedroom, towards the kitchen.\",\"is an elaborate collision - winding drunk under its feet and falling in detective pick, which gigantic son's attacked by a car.\",gold0-reannot,pos,unl,unl,unl,unl,Someone starts to run as the hedges starts to close together behind him.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18473,\"Someone runs to someone and helps him to free himself. Exhausted and trembling, he\",scrambles to his feet.,tries to oar a building stick.,dismounts from the couch as she and someone shimmy toward him.,returns to the police ring where his wrists musket an older member's chest.,talks on his phone.,gold1-reannot,pos,unl,unl,unl,pos,Someone runs to someone and helps him to free himself.,\"Exhausted and trembling, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18445,\"Above his head, he can only see a narrow strip of sky. The intricate maze\",extends far around him stretching away into distance of mist covered valley.,of metal is shanty branching.,\"of curling stone is seen in the sand, indicating that someone is not real.\",drifts as netting hay.,advances to thousands and fireworks.,gold0-reannot,pos,unl,unl,unl,unl,\"Above his head, he can only see a narrow strip of sky.\",The intricate maze\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7199,18461,\"High above, red sparks explode in the evening sky. A howling wind\",lashes the branches sending dust and leaves into the air.,runs above the shivering tires as a different pot of orange light gradually drifts over to crest.,\"blows the leaves, sending soaring soaring out into the desert.\",looks up in the violent storm.,,gold0-reannot,pos,unl,unl,unl,n/a,\"High above, red sparks explode in the evening sky.\",A howling wind\nanetv_8BsIeOSzK_U,19162,He does a gymnastics routine on the bars. He,jumps off the bars and lands on a mat.,dismounts and spins around the bars.,jumps on the beam.,does his routine down.,spins his body on the bars.,gold1-orig,pos,unl,unl,unl,pos,He does a gymnastics routine on the bars.,He\nanetv_8BsIeOSzK_U,6210,A man jumps onto parallel bars. He,does a gymnastics routine on the bars.,balances on the beam and dismounts.,\"has joined, passes the boy, reaches down and grabs a small weight tucked between his legs, adjusting his strength shield.\",swings his legs up and down while sitting on a stool.,jumps backwards and lands with a blue mat.,gold0-orig,pos,unl,unl,unl,pos,A man jumps onto parallel bars.,He\nanetv_8BsIeOSzK_U,6212,A man in a black shirt watches his performance. He,gives a man a high five when he lands on the mat.,swings against a pinata in front of him.,begins to do a gymnastics gymnastic routine on the parallel bars.,falls to the ground.,cheers for the show and bows to the audience.,gold0-orig,unl,unl,unl,unl,unl,A man in a black shirt watches his performance.,He\nanetv_8BsIeOSzK_U,6211,He does a gymnastics routine on the bars. He then,jumps off and lands on a mat.,stands on the bars with his arms at the head.,does the splits and lands on the mat.,flips several times before dismounting.,dismounts and swings on the bars.,gold0-orig,pos,unl,unl,unl,unl,He does a gymnastics routine on the bars.,He then\nanetv_8BsIeOSzK_U,19161,A man jumps onto parallel bars. He,does a gymnastics routine on the bars.,does a gymnastics routine on the balance beam.,does a gymnastics routine on a chalk beam.,swings the gymnast on the landing and lands on a mat.,\"jumps down, throwing a leg into the air.\",gold0-reannot,pos,unl,unl,unl,unl,A man jumps onto parallel bars.,He\nanetv_5zT1GWfmVLU,7487,The left boy kick the right then jumps on his back while he bends forward. The right boy then,flips the left boy on the mattress on the ground.,spills the wooden until it brings it down with his feet.,takes pictures to the boy and walk away.,jumps back and gets back on the bars.,bends down to try to pull back a piece.,gold0-orig,pos,unl,unl,pos,pos,The left boy kick the right then jumps on his back while he bends forward.,The right boy then\nanetv_5zT1GWfmVLU,7488,The right boy then flips the left boy on the mattress on the ground. We then,see the closing title screen.,see the man multiple men again at the center of an floral slide.,see the ending screen talking.,see the ending title screen.,see the table up close.,gold0-orig,pos,unl,unl,pos,pos,The right boy then flips the left boy on the mattress on the ground.,We then\nanetv_5zT1GWfmVLU,7486,We then see two boys in a room pretend to wrestle. The left boy kick the right then,jumps on his back while he bends forward.,misses one of the other drumsticks.,shows off an old board with pins.,makes his legs in position.,kicks one person in their side instead.,gold0-orig,pos,unl,unl,unl,pos,We then see two boys in a room pretend to wrestle.,The left boy kick the right then\nanetv_5zT1GWfmVLU,7485,We see a title screen briefly. We then,see two boys in a room pretend to wrestle.,see about inside diving and holding a ball.,see a woman pulling a tube.,see a hockey player playing soccer hurling on a field.,,gold0-orig,pos,unl,unl,unl,n/a,We see a title screen briefly.,We then\nanetv_5zT1GWfmVLU,12554,A young man pretends to kick another man in the crotch. He,appears to bend over in pain and the other jumps on his back.,shoots painfully into his father's crotch.,starts and the ladies laugh and laugh and clap his hands.,gets off his th and shoots yet again.,walks around the table and grabs the foods.,gold0-orig,pos,unl,unl,unl,pos,A young man pretends to kick another man in the crotch.,He\nanetv_5zT1GWfmVLU,12556,He then slaps him and they flip over onto a mat. The action,is repeated in slow motion.,is repeated until the positioned are still at the top.,ends with four german soldiers fighting in the middle.,\"makes them turn, pushing the wall off the wall.\",is repeated until the end.,gold0-orig,pos,unl,unl,unl,pos,He then slaps him and they flip over onto a mat.,The action\nanetv_5zT1GWfmVLU,12555,He appears to bend over in pain and the other jumps on his back. He then slaps him and they,flip over onto a mat.,celebrate with these safety treatment at the end.,swing to another stop.,flip him from his chair.,,gold0-reannot,pos,unl,pos,pos,n/a,He appears to bend over in pain and the other jumps on his back.,He then slaps him and they\nanetv_5zT1GWfmVLU,12553,Sunsetflip Powerbomb appears on screen in a whimsical font. A young man,pretends to kick another man in the crotch.,falls down a long javelin then players watch.,plays the accordion continuously adjust the percussion papers.,cuts another person's hair.,is seen talking to the camera and on the concrete.,gold0-reannot,pos,unl,unl,unl,unl,Sunsetflip Powerbomb appears on screen in a whimsical font.,A young man\nanetv_U7k6GFEOt7g,13101,\"Once the drill is complete, the boys of the team form a huddle and begin talking. After, the boys\",begin a game of lacrosse in a large outdoor field.,\"run indoors to practice around, and gather a place to talk to them.\",take turns to dance.,push the people into each other's hands and back up the second one at his time.,continue practicing to clean the air.,gold0-orig,pos,unl,unl,unl,unl,\"Once the drill is complete, the boys of the team form a huddle and begin talking.\",\"After, the boys\"\nanetv_U7k6GFEOt7g,13100,\"A group of boys are in a lines forming an X, running across to each other, throwing the ball to the person diagonally across from them and hitting it. Once the drill is complete, the boys of the team\",form a huddle and begin talking.,are shown again choosing a final cake to return it to the two teams.,grab his arm from a big bowl.,are fish and the final hiting is to be scored in a man's hand.,are standing the middle of a place who talks to the camera and starts cutting out the chins.,gold0-orig,pos,unl,unl,unl,unl,\"A group of boys are in a lines forming an X, running across to each other, throwing the ball to the person diagonally across from them and hitting it.\",\"Once the drill is complete, the boys of the team\"\nanetv_U7k6GFEOt7g,13102,\"After, the boys begin a game of lacrosse in a large outdoor field. As the game continue, the ball\",continues to be thrown from team to team as they knock each other over and make try to score on each other.,is placed into the pole before floating away from the soccer game.,misses the opposing team who they hit the ball successfully.,goes in as the player in blue walks over to retrieve the ball and throws it on the ground.,,gold0-orig,pos,unl,unl,pos,n/a,\"After, the boys begin a game of lacrosse in a large outdoor field.\",\"As the game continue, the ball\"\nlsmdc3014_CAPTAIN_AMERICA-5965,12724,Someone takes out his compass with the photo of someone in the lid. He,stares at the photo then pushes down on the steering yoke causing the plane to dive steeply.,slips a hand into someone's cap.,\"looks around at the metal bell in a robe, the ring flood toward the prison, bringing it to a rail.\",pulls out a coloring dollar packet in his hands.,brushes at someone's brown - haired body.,gold0-orig,pos,unl,unl,unl,unl,Someone takes out his compass with the photo of someone in the lid.,He\nlsmdc3014_CAPTAIN_AMERICA-5965,12725,He stares at the photo then pushes down on the steering yoke causing the plane to dive steeply. Someone,continues to stare at the photo as the plane descends.,rolls over his spear as he crawls against the wall.,watches him test out on his computer.,comes out to him.,,gold0-orig,pos,unl,unl,unl,n/a,He stares at the photo then pushes down on the steering yoke causing the plane to dive steeply.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5965,12727,\"In the control tower, tears stream down someone's cheeks. Someone\",closes her eyes and smiles.,fixes the rest of the hair on someone's chest.,heads back to his bedroom.,stands upright on a platform overlooking the running equipment.,returns a somber gaze to the water.,gold1-orig,pos,unl,pos,pos,pos,\"In the control tower, tears stream down someone's cheeks.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5965,12726,\"Someone continues to stare at the photo as the plane descends. In the control tower, tears\",stream down someone's cheeks.,stream down his wetsuit as he glides across a large body of water.,stream down someone's cheeks as the fab flees.,flow down hundreds of cheeks.,glisten in someone's face.,gold0-orig,pos,unl,unl,unl,pos,Someone continues to stare at the photo as the plane descends.,\"In the control tower, tears\"\nlsmdc3014_CAPTAIN_AMERICA-5965,12723,\"Someone blinks, then furrows her brow, and presses her lips together. Someone\",takes out his compass with the photo of someone in the lid.,has her arms folded in front of the door.,disappears out of the shadows.,\"shifts, then plants a kiss on his lips.\",rumples her lips and her mouth hangs from her cheeks.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone blinks, then furrows her brow, and presses her lips together.\",Someone\nanetv_sfT9Siql3P8,5479,\"They ride the cars around the floor, bumping each other. The\",continue bumping into each other as they play.,\"stick depart inside, followed by a little blue person.\",falls on helplessly with his arms crossed.,bike hit together in the trunk.,,gold0-orig,pos,unl,unl,unl,n/a,\"They ride the cars around the floor, bumping each other.\",The\nanetv_sfT9Siql3P8,5478,Several kids are playing in bumper cars. They,\"ride the cars around the floor, bumping each other.\",stick up and get hit by the coach.,boys are playing a game of hopscotch in a large park.,line up and idle in a parking circle.,,gold0-orig,pos,unl,unl,pos,n/a,Several kids are playing in bumper cars.,They\nanetv_sfT9Siql3P8,11084,The bumper cars drive randomly throughout the arena. The camera,shakes as a red bumper car drives by.,is interviewed and leads into the land rover and others up a hill.,comes to a halt outside the alley.,pans around to see the vehicle taking a position behind the park.,,gold0-reannot,pos,unl,pos,pos,n/a,The bumper cars drive randomly throughout the arena.,The camera\nanetv_sfT9Siql3P8,11083,People are driving bumper cars in a nighttime scene. The bumper cars,drive randomly throughout the arena.,are full of police cars.,get stuck in concrete.,are washed in a puddle.,start riding back and forth from the truck.,gold0-reannot,pos,unl,unl,unl,unl,People are driving bumper cars in a nighttime scene.,The bumper cars\nlsmdc3069_THE_BOUNTY_HUNTER-4539,60,He shows a badge on his belt. An officer,releases someone from the cell.,holds out the glass.,takes the stick from his mouth and hands it to someone.,cuts off the young man.,walks out to the salon.,gold0-orig,pos,unl,unl,unl,unl,He shows a badge on his belt.,An officer\nlsmdc3069_THE_BOUNTY_HUNTER-4539,61,\"An officer releases someone from the cell. Now, someone and his police friend\",eat at a diner.,is helicopter on a country road.,stroll by a sidewalk.,are in deserted street on the street.,sit each smoking the joint.,gold0-orig,pos,unl,unl,pos,pos,An officer releases someone from the cell.,\"Now, someone and his police friend\"\nlsmdc3069_THE_BOUNTY_HUNTER-4539,59,\"Nighttime at a police station, a man in a sport coat approaches a jail cell. He\",shows a badge on his belt.,skates in a large parking lot.,holds his cell phone.,turns away from someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Nighttime at a police station, a man in a sport coat approaches a jail cell.\",He\nanetv_IsHM24qWmpI,14247,The metal rim is replaced. The bike wheel,is put back into place.,lands on the bike before he does a repair.,is also being removed from the wheel.,is adjusted to the machine.,,gold0-orig,pos,unl,unl,pos,n/a,The metal rim is replaced.,The bike wheel\nanetv_IsHM24qWmpI,17878,A brand logo appears for a bike parts company. The video,\"will show how to assemble the parts for the bike wheel, and begins with the wheel being removed.\",shows the pictures and skiing technique of the company.,begins with the word locomotive the a bike.,begins with a small black cat.,,gold0-orig,pos,unl,unl,unl,n/a,A brand logo appears for a bike parts company.,The video\nanetv_IsHM24qWmpI,17879,\"The wheel frame parts are then installed, follow by the reassembly of the wheel. The tightness and evenness of the placement\",is double - checked.,is held inside a square bowl using the inline 19.,are shown as well as a topic.,are then served on a bike.,,gold0-orig,pos,unl,unl,unl,n/a,\"The wheel frame parts are then installed, follow by the reassembly of the wheel.\",The tightness and evenness of the placement\nanetv_eC90hOqQ0yk,18748,A large group of people are seen watching on the side while the men fight. The men,continue fighting with one pushing the other out into the ring.,continue riding around one another and leads into them hitting each other on the ice.,continue to move by bumping into one another and transitions into one another speaking back and fourth.,hold up objects and lead into them fighting each other.,continue to play and cling on the woods one after the other and hold up his hands and continue to wrestle.,gold0-orig,pos,unl,pos,pos,pos,A large group of people are seen watching on the side while the men fight.,The men\nanetv_eC90hOqQ0yk,18747,Two men are seen kneeling before one another and begin wrestling one another. A large group of people,are seen watching on the side while the men fight.,continue running around and fighting with one another.,are seen speaking to one another and leads into them arm wrestling.,are seen swinging objects around and laughing with one another.,are seen walking into a large room with many people and others sitting at the end.,gold0-orig,pos,unl,unl,unl,pos,Two men are seen kneeling before one another and begin wrestling one another.,A large group of people\nanetv_4ZoBfU4b5Ko,18067,The young lady part her hair and blow dry her hair. The lady,blow dry other parts of her hair.,continues painting the clients hair.,blows with a blow dryer and the lady leaves through the window.,brushes her hair and smiles at the camera.,shows the finished product.,gold1-orig,pos,unl,unl,pos,pos,The young lady part her hair and blow dry her hair.,The lady\nanetv_4ZoBfU4b5Ko,14703,She puts it in the end of the blow dryer. She,puts a product in her hair.,can be removing all of the hair from her side then pushing it against the stick.,picks and starts blow dry her hair.,starts drying the baby's hair with scissors to dry her hair.,slides her horses nail to the floor.,gold0-orig,pos,unl,unl,unl,unl,She puts it in the end of the blow dryer.,She\nanetv_4ZoBfU4b5Ko,18068,The lady blow dry other parts of her hair. The lady,put a white cream on her hair.,interacts with her from the back.,dips the flower dryers in the hands.,begins to concealed the lens with her case.,talks while the lady brushes her teeth.,gold0-reannot,pos,unl,unl,unl,unl,The lady blow dry other parts of her hair.,The lady\nlsmdc3061_SNOW_FLOWER-30009,13142,\"In the living room, someone paces. Someone\",peers into the room.,walks into the living room and tries one last locked.,stands in the light gray foyer.,bites her lower lip.,,gold1-orig,pos,unl,pos,pos,n/a,\"In the living room, someone paces.\",Someone\nanetv_SZqwvjwqwK4,7854,The mans' feet return in the corner. We,see a game being played before returning to the drummer.,grabs someone.,\"hobbles on the street, pills and seconds attach the license basket waving.\",and his men step outside as they walk and the marching band continues.,see him smooth the clothe from the collar.,gold0-orig,pos,unl,unl,unl,unl,The mans' feet return in the corner.,We\nanetv_SZqwvjwqwK4,7855,We see a game being played before returning to the drummer. We,see another scene from the game.,see the horses off before they run all together again.,\"scene of a band party on a screen, a man sitting in a red video speaks.\",see a replay of the clip.,see the chef from the water covered in the balls.,gold0-orig,pos,unl,unl,unl,unl,We see a game being played before returning to the drummer.,We\nanetv_SZqwvjwqwK4,7851,We see an opening title screen. A man,is playing the drums while wearing earphones.,takes a few screens and shows encouraging the hula tams.,carves the pumpkins with a towel.,is seated in a house.,is introduced to the class.,gold0-orig,pos,unl,unl,unl,pos,We see an opening title screen.,A man\nanetv_SZqwvjwqwK4,7857,The man throws and catches one of his drumsticks. We,see a closing screen with a website on it.,go on in the narrow field and dive to the edge of the pool.,man runs with his arms while standing on the pavement.,turn along the bar to see the ball: the player jumped and fell.,,gold0-orig,pos,unl,unl,unl,n/a,The man throws and catches one of his drumsticks.,We\nanetv_SZqwvjwqwK4,7852,A man is playing the drums while wearing earphones. We,see the man's feet in the upper corner.,see the man holding onto a selfie racket.,continues playing the drums.,guy plays the drums.,headphones on his hands.,gold0-reannot,pos,unl,unl,unl,unl,A man is playing the drums while wearing earphones.,We\nanetv_NzxZdC-63LE,9987,A man waves at the audience holding a plaque. A man,runs down a blue mat and does flips.,plays another performer while a audience watches and clap.,is holding a long shuffleboard string.,stands on a stand inside a building with a line behind her.,behind a black shirt run in circles down the lane.,gold1-orig,pos,unl,unl,unl,unl,A man waves at the audience holding a plaque.,A man\nanetv_NzxZdC-63LE,14769,The man is flipping and doing tumbling in the gym. The athletes,continue to flip up in the air while audiences are watching.,are inside the bar.,are displayed before he score.,move through the competition on the other side of the room.,continue to do the routine at the end.,gold0-orig,pos,unl,unl,pos,pos,The man is flipping and doing tumbling in the gym.,The athletes\nanetv_NzxZdC-63LE,14770,The athletes continue to flip up in the air while audiences are watching. The people,are doing back flips in the different places.,continue wrestling while others watch and talks and a man is shown together with a horse and laughing to one another.,keep running down the track with his gun still on.,continues to dismount and the audience flips and cheers.,pass each other in the rink and continue to perform.,gold1-orig,pos,unl,unl,unl,unl,The athletes continue to flip up in the air while audiences are watching.,The people\nanetv_NzxZdC-63LE,9985,A man is doing flips on a mat. a man in an orange shirt,is doing flips outside.,plays hopscotch on the floor.,stands behind a bar.,jumps onto his stomach.,stands in front of him.,gold1-orig,pos,unl,unl,unl,pos,A man is doing flips on a mat.,a man in an orange shirt\nanetv_avBlEff5U5U,4923,A man is in his front yard going back and forth mowing his lawn. The video then,shows him mowing the lawn in a different location than the first location.,turns and a close up of the man using his ax to demonstrate how to use it.,\"goes out to the interior of the table, moving, and faster in the show, he looks like he changes clothes.\",\"is mowing in more circles of lawn, as he mows the lawn and in the spot.\",shows the ending credits shown on a screen.,gold0-orig,pos,unl,unl,unl,unl,A man is in his front yard going back and forth mowing his lawn.,The video then\nanetv_Jp7KeCimrMI,2733,A man stretches out shirts on an ironing board in a workshop area and uses a flat iron to steam press it. The man,removes the ironed shirt and places it on a hanger.,puts the ironing board over the top.,shows the lotion with how they put wax on the cloth onto a wall.,removes the gloves from his right hand and puts it down on the top of another board.,moves the car quickly while switching to the sleeve top with various shots of it on the counter.,gold0-orig,pos,unl,unl,unl,pos,A man stretches out shirts on an ironing board in a workshop area and uses a flat iron to steam press it.,The man\nanetv_Jp7KeCimrMI,2734,The man removes the ironed shirt and places it on a hanger. The man,gives the shirt one more quick ironing on a single spot then hangs the shirt on a rack.,uses white tape on the shingles to fit the pieces around.,\"talks to the camera then in tuns, then back to ironing the shirt.\",\"holds up the body, then lifts it completely.\",sets the cloth down to make a note to the window.,gold0-orig,pos,unl,unl,unl,unl,The man removes the ironed shirt and places it on a hanger.,The man\nanetv_X5gh32tHdsc,4141,Men are playing indoor tennis inside a building while soccer is on the tv in the background. They,hit the ball back and forth for a while.,are holding cone while other men are around the court playing tennis.,throw the ball with their racquets and start to go in in the field.,go on having several repeat on the trampoline.,take a single ball in the room.,gold0-orig,pos,unl,unl,unl,pos,Men are playing indoor tennis inside a building while soccer is on the tv in the background.,They\nlsmdc3059_SALT-28823,3983,\"Facing a mirror, she unwraps it. She\",applies the pad to the injury then tucks it into her waistband.,catches the bow as her leg swoops down over it.,locks it around the primate's mouth and points it at the entertain print underneath of his arm.,finds her hand and it supports its windows then rolls her eye.,gestures at buckbeak's photo.,gold1-orig,pos,unl,unl,unl,unl,\"Facing a mirror, she unwraps it.\",She\nanetv_e2fXKrG2BkY,16189,\"When they are done, they turn to one another, bow, and do some karate matches that involve gently throwing one another to ground and when done with the matches they each take a bow facing the crowd. The boys then start another karate routine and they\",are doing various moves with their arms and legs while doing them in unison as much as possible.,move back and fourth as they applaud.,performs a flip and jumps on the lit stage while cheering for the other.,remain able to hold one another on their faces.,,gold0-orig,pos,pos,pos,pos,n/a,\"When they are done, they turn to one another, bow, and do some karate matches that involve gently throwing one another to ground and when done with the matches they each take a bow facing the crowd.\",The boys then start another karate routine and they\nanetv_e2fXKrG2BkY,16190,The boys then start another karate routine and they are doing various moves with their arms and legs while doing them in unison as much as possible. When done they both take a bow facing the crowd and they both,run off the school stage.,fold to the center and start a little way down.,fall on their knees and play their own steps.,have moved the beam straight over onto the mat.,\"continue to do arm wrestle as they move and stand up, a fleet of the wins.\",gold0-reannot,pos,unl,unl,unl,unl,The boys then start another karate routine and they are doing various moves with their arms and legs while doing them in unison as much as possible.,When done they both take a bow facing the crowd and they both\nanetv_agIcVWDyeH0,7859,He shows that his arm is in a cast and putting on his socks and shoes. He finally,ties his shoes and looks back at the camera.,removes the shoes and put them on.,picks up a tile that has been removed by something and starts moving it into the living room.,takes the shoes off and looks at the camera.,,gold0-orig,pos,unl,unl,unl,n/a,He shows that his arm is in a cast and putting on his socks and shoes.,He finally\nanetv_agIcVWDyeH0,7858,A young boy is seen sitting on a chair talking to the camera. He,shows that his arm is in a cast and putting on his socks and shoes.,laughs and smokes the harmonica while still holding violin while the song ends.,begins holding on the child while also putting the hand on someone's leg.,sinks down lightly and leads into him speaking to the camera.,,gold1-orig,pos,unl,unl,unl,n/a,A young boy is seen sitting on a chair talking to the camera.,He\nlsmdc1014_2012-78847,8227,Someone enters with a newspaper. She,turns on the tv.,\"trails after her, then heads into someone's principal's office.\",writes a letter and marches over.,steps into the hallway.,\"shrugs one arm, and descends the stairs.\",gold1-orig,pos,unl,unl,unl,unl,Someone enters with a newspaper.,She\nlsmdc1014_2012-78847,8226,Someone looks across the Oval Office at someone. Someone,enters with a newspaper.,tries out to sit with her at the entrance.,smiles and walks over to the paper bag.,'s holding the baby looking down at the painting.,,gold0-orig,pos,unl,pos,pos,n/a,Someone looks across the Oval Office at someone.,Someone\nanetv_yduDG8EcM0A,6109,The boy seems excited to help his grandmother juice the lemon. He,puts his hand over her hand while she is juicing the lemon.,\"holds up the necklace - - slowly, deep gold.\",walks out of the bathroom.,brings it back to the artificial stove and licks the ice from the trolley.,,gold0-orig,pos,unl,unl,unl,n/a,The boy seems excited to help his grandmother juice the lemon.,He\nanetv_yduDG8EcM0A,6108,They are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink. the boy,seems excited to help his grandmother juice the lemon.,opens the gas and puts something into each baking pan.,shows how to baking the pan and liquids into it.,is using a sweeping pan to clean a bench.,,gold0-orig,pos,unl,unl,unl,n/a,They are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink.,the boy\nanetv_yduDG8EcM0A,6107,There's a little boy wearing a red Elmo shirt standing on a step stool in the kitchen with his grandmother. They,are juicing a lemon on an electric juicer that is placed on the kitchen counter near the sink.,\"are sitting on top of it, fuming a little.\",and someone continue talking while flipping apart.,\"appears with the bathroom white sandals on the sides of the bath water, then holds the bottle over his head.\",,gold0-reannot,pos,unl,unl,unl,n/a,There's a little boy wearing a red Elmo shirt standing on a step stool in the kitchen with his grandmother.,They\nanetv_fZc3tkvUJe0,893,A chef is seen speaking to a woman and leads into him holding knives and sharpening the sides. He then,wipes the knife with a rag and continues sharpening the knives.,begins cutting a tomato and cutting it tossing down more knives.,flips the ingredients around several times while stopping to speak to the camera.,sharpens the knife around the length of the sharpener while still speaking to the camera.,,gold1-orig,pos,unl,pos,pos,n/a,A chef is seen speaking to a woman and leads into him holding knives and sharpening the sides.,He then\nanetv_jGoW5WVAtX4,1327,We see the outside of a restaurant with a snow like graphic on the bottom. We,see men inside the bar and one man speaking into a microphone.,pan a row of sharpening screens and talk to the camera.,see a girl grooming a stake with white polish and a white box on the counter.,see a guy balancing a tire kick.,,gold0-orig,pos,unl,unl,unl,n/a,We see the outside of a restaurant with a snow like graphic on the bottom.,We\nanetv_jGoW5WVAtX4,1328,We see men inside the bar and one man speaking into a microphone. We then,see ladies playing beer pong against a team of men.,see the closing screen and the judges and people walking by.,see the ending title screen on a clear screen.,see another man coaching a man throwing the ball.,see the ending title screens.,gold0-orig,pos,unl,unl,unl,pos,We see men inside the bar and one man speaking into a microphone.,We then\nanetv_jGoW5WVAtX4,1331,We switch and see other teams in the room playing and see two ladies talking. We then,see a lady toss a ball across a table.,see the men on the ground as they are done playing.,see a man talking and then talking about the video.,see the closing titles.,see an intro screen with a woman walking outside.,gold1-orig,pos,unl,unl,unl,pos,We switch and see other teams in the room playing and see two ladies talking.,We then\nanetv_jGoW5WVAtX4,1332,We then see a lady toss a ball across a table. We,see the ending screen.,switch to the individuals and put the balls down.,we see her playing billiards by the ball.,return to the players.,see the score on the screen.,gold1-orig,pos,unl,unl,unl,pos,We then see a lady toss a ball across a table.,We\nanetv_jGoW5WVAtX4,1329,We then see ladies playing beer pong against a team of men. Two teams of men,play beer pong together as a man stands behind them holding a camera in the air.,play hockey and begin playing a game of soccer.,walk on the court wearing shiny blue uniforms.,play ping pong while taking the ball from each other.,,gold0-orig,pos,unl,unl,pos,n/a,We then see ladies playing beer pong against a team of men.,Two teams of men\nanetv_jGoW5WVAtX4,1330,Two teams of men play beer pong together as a man stands behind them holding a camera in the air. We,switch and see other teams in the room playing and see two ladies talking.,see the man shooting the photo into the container.,try out and apply one on the table to try to adjust the cause.,\", they can throw a ball that is held by a hand as they throw the ball into the wall to catch two balls.\",see four young men sitting at a table near a fountain of a gymnasium.,gold1-orig,pos,unl,unl,unl,pos,Two teams of men play beer pong together as a man stands behind them holding a camera in the air.,We\nanetv_Sfdj_kMDUh8,13932,He is on his knees cutting the carpet. He,is putting glue onto the floor.,bolts away from a wall and cuts a tight rope.,\"grimaces, looks at someone in anguish, then turns back to the mask.\",is shown again demonstrating how to fix the dress.,puts a huge spike on the wood.,gold0-orig,pos,unl,unl,unl,pos,He is on his knees cutting the carpet.,He\nanetv_Sfdj_kMDUh8,13933,He is putting glue onto the floor. He then,lays the carpet down on top of it and smooths it out.,attaches nails to polish and paints the nails.,explains how to use it to remove the metal.,rubs the tiles on the bottom.,applies pressing some tiles on the carpet.,gold0-orig,pos,unl,unl,unl,pos,He is putting glue onto the floor.,He then\nanetv_Sfdj_kMDUh8,13934,He then lays the carpet down on top of it and smooths it out. He then,vacuums the carpet when he is finished.,lays down on the couch and lays down in the chair.,begins throwing the pieces against the wall as well.,continues talking while flipping and other man goes into frame and recording himself on it.,applies it to the wall paper while speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,He then lays the carpet down on top of it and smooths it out.,He then\nanetv_Sfdj_kMDUh8,13931,A man is unrolling carpet onto the floor. He,is on his knees cutting the carpet.,screws up the wallpaper and drops it.,spreads out the rope to remove all the wax from the floor.,rubs back and forth on the room.,bends down and takes the carpet out of his bag.,gold0-orig,pos,unl,unl,unl,pos,A man is unrolling carpet onto the floor.,He\nanetv_mAWuiYWXmb8,3364,A woman works out sitting on a cardio machine. A man,sits next a woman performing cardio workouts.,holding his bicycle sits on the edge of the roof.,walks using a machine on a steam machine.,holds up one door and inhales the steam.,,gold0-orig,pos,unl,unl,unl,n/a,A woman works out sitting on a cardio machine.,A man\nanetv_mAWuiYWXmb8,3363,A woman and a man exercise sitting on a cardio machine. A woman,works out sitting on a cardio machine.,man is kneeling on the other side of a building and some more attached to eight in a wheelchair.,on a bike begins by by the wheel.,demonstrates how to motion or using storage.,,gold1-orig,pos,unl,unl,unl,n/a,A woman and a man exercise sitting on a cardio machine.,A woman\nanetv_7XGimCWcafc,19016,\"While the tire is being replaced, the driver climbs back into the truck, and a specator takes a picture of the vehicle. Other spectators\",come to the driver side to talk with the driver.,are watching him closely as the man in the black shirt primps in the mirror.,are in the stands watching them.,hold the door as it comes out of the vehicle.,,gold0-orig,pos,unl,unl,unl,n/a,\"While the tire is being replaced, the driver climbs back into the truck, and a specator takes a picture of the vehicle.\",Other spectators\nanetv_7XGimCWcafc,19015,\"A worker and some assistants approaches the vehicle with a spare tire, and some men begin to jack up the rear of the truck to try to replace the rear passenger side tire. While the tire is being replaced, the driver climbs back into the truck, and a specator\",takes a picture of the vehicle.,stands very balanced in the street in the water on front the area and began talking.,climbs the last sides of the car.,pushes its wheel onto a bike to finish off the machine.,,gold0-orig,pos,unl,unl,unl,n/a,\"A worker and some assistants approaches the vehicle with a spare tire, and some men begin to jack up the rear of the truck to try to replace the rear passenger side tire.\",\"While the tire is being replaced, the driver climbs back into the truck, and a specator\"\nanetv_7XGimCWcafc,19013,A large off - roading truck drives by along a dirt track next to a body of water and comes to a stop. Many spectators,\"approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck.\",cheer them on as the high slopes are displayed.,is laughing and cheering and laughing as they float across the street.,watch on the civilian officers.,,gold1-orig,pos,unl,unl,unl,n/a,A large off - roading truck drives by along a dirt track next to a body of water and comes to a stop.,Many spectators\nanetv_7XGimCWcafc,19014,\"Many spectators approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck. A worker and some assistants approaches the vehicle with a spare tire, and some men\",begin to jack up the rear of the truck to try to replace the rear passenger side tire.,turn the zipper on the car and pull it off.,and the men continue to walk people over the area barricade and then trail their horses before chasing after the other.,grab his luggage as they go.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Many spectators approach the vehicle, while the driver climbs out of the vehicle and attempts to remove a tire from the back of the truck.\",\"A worker and some assistants approaches the vehicle with a spare tire, and some men\"\nanetv_k5wY4N61bzU,4489,A still image is pictured with the words Dog Walk Across America shown over it. A middle aged couple,is then shown siting on logs talking with their dogs roaming behind them and another man sitting on a big boulder rock.,is on a darkened staircase top as a man is fall on the floor.,is seen laughing to the man and quickly joins in child care with a young man in his head.,enters from the center of another group wearing a blue lacrosse shirt.,,gold0-orig,pos,unl,unl,unl,n/a,A still image is pictured with the words Dog Walk Across America shown over it.,A middle aged couple\nanetv_k5wY4N61bzU,4490,Then several images of dogs are shown and then the woman reappears alone. Then another set of images,are shown where the dogs are being helped by vets.,are shown that lead into her styling a cloth with an advertisement.,are shown as well as her calling camera.,appears with words that are being shown in a movie china house.,is shown on screen.,gold0-orig,pos,unl,unl,unl,pos,Then several images of dogs are shown and then the woman reappears alone.,Then another set of images\nanetv_k5wY4N61bzU,4492,\"The man then reappears with the lady and they begin to talk again. Lastly, the man walks off and a black screen\",appears showing multiple websites.,appears at the point and squats.,\"appears with white, text camera appear on screen.\",appears on a black screen with white letters text shown on the screen.,appears with black smoke.,gold1-orig,pos,unl,unl,unl,unl,The man then reappears with the lady and they begin to talk again.,\"Lastly, the man walks off and a black screen\"\nanetv_k5wY4N61bzU,4491,Then another set of images are shown where the dogs are being helped by vets. The man then reappears with the lady and they,begin to talk again.,continue dancing around the dog.,continue making baskets and baskets.,do different chairs dance.,see the two sumo youngsters pose.,gold1-orig,pos,unl,unl,unl,unl,Then another set of images are shown where the dogs are being helped by vets.,The man then reappears with the lady and they\nanetv_fxlTN3mCWDA,15380,Two of the passengers are seated on folding chairs and they're playing drums on bongos. They,continue to play the bongos while the other passengers are busy doing their own thing.,continue playing the bass drums while still spinning to a ground.,are making a beat to the beat of drums.,are playing cards and interact.,are pushing it at strings still connected to the drums and play some large drums.,gold0-orig,pos,unl,unl,unl,unl,Two of the passengers are seated on folding chairs and they're playing drums on bongos.,They\nanetv_fxlTN3mCWDA,15379,There are several passengers traveling in a subway train. Two of the passengers are seated on folding chairs and they,'re playing drums on bongos.,watch the glider go out.,are putting on water another day.,both begin to stare underwater before they are varying.,are unable to do a retreat.,gold0-orig,pos,unl,unl,unl,unl,There are several passengers traveling in a subway train.,Two of the passengers are seated on folding chairs and they\nanetv_fxlTN3mCWDA,15382,One young boy who is seated near the players is watching them play. The players,continue playing the bongos and drumming on them.,\"are shown the right way to scoring this game on the other right, and the coach continues.\",return to the ball and set the balls.,engage in various sport on a dirt field.,pass each other one while the woman's standing on stage.,gold1-orig,pos,unl,pos,pos,pos,One young boy who is seated near the players is watching them play.,The players\nanetv_fxlTN3mCWDA,15381,They continue to play the bongos while the other passengers are busy doing their own thing. One young boy who is seated near the players,is watching them play.,begin to play a game of badminton while laughing.,is looking forward to end the game.,is watching the interviewer.,is recorded watching them play.,gold1-orig,pos,unl,unl,pos,pos,They continue to play the bongos while the other passengers are busy doing their own thing.,One young boy who is seated near the players\nanetv_-02DygXbn6w,13929,The person with the camera falls and can not stop themselves as they roll down the slope. When they finally stop they,see some other skiers who are at the bottom of the slope.,replace the fishing poles.,start shoveling the snow into the falling space.,are ready to jump and try to get tubes going down the wall.,raise their hands towards the camera.,gold0-orig,pos,unl,unl,unl,pos,The person with the camera falls and can not stop themselves as they roll down the slope.,When they finally stop they\nanetv_-02DygXbn6w,12474,\"They fall over for a minute and get back up, the one farther behind catches up and gets in front of the other boarder. The boarder\",tried to grab on to a sign and is falling in and tumbling around in snow.,keeps his leash around the boat and washes it around.,slows to the man's trowel as the people cheer him on.,drops into a sea attached by their vehicle.,,gold0-orig,pos,unl,unl,unl,n/a,\"They fall over for a minute and get back up, the one farther behind catches up and gets in front of the other boarder.\",The boarder\nanetv_-02DygXbn6w,13928,Some people at the top of a snow slope begin to snowboard down the slope. The person with the camera,falls and can not stop themselves as they roll down the slope.,\"comes in, telling him what you are going to do with the little boy.\",\"goes up, and then shows them riding down the slope and on to another group who still holding their stilts.\",lifts the slope of the skaters with the help of some skiers.,,gold0-orig,pos,unl,unl,unl,n/a,Some people at the top of a snow slope begin to snowboard down the slope.,The person with the camera\nanetv_2vixXUJiNhk,8575,The focus goes back to the snorkelers as they continue to explore the area with their flashlights. The outro video appears and it's the same blue picture as the intro and includes some contact information on the video and the credits,begin to roll with the text scrolling from bottom to top.,announces the video address.,called it.,are shown after the closing word appears.,,gold0-orig,pos,unl,unl,pos,n/a,The focus goes back to the snorkelers as they continue to explore the area with their flashlights.,The outro video appears and it's the same blue picture as the intro and includes some contact information on the video and the credits\nanetv_2vixXUJiNhk,8574,A person underwater in snorkeling gear is now swimming around the bottom of the water and meets up with another snorkeler and they both go into a ship that is underwater as they both hold their flashlights and cameras to explore the ship and everything else at the bottom of the water. A school of fishes appear and they,'re swimming and hanging around the boat.,sit on the other side of the ocean while they huddle together.,\"begin to scuba dive into the water, before paddling and walk in the water.\",'re seen the side shows a very small tube.,travel water water as person quickly rafts out of surf board into the water and do laps.,gold0-orig,pos,unl,unl,unl,unl,A person underwater in snorkeling gear is now swimming around the bottom of the water and meets up with another snorkeler and they both go into a ship that is underwater as they both hold their flashlights and cameras to explore the ship and everything else at the bottom of the water.,A school of fishes appear and they\nanetv_2vixXUJiNhk,8573,An intro video with a blue screen that has a picture of a drawn ship is in the background while yellow words scroll from the bottom to the top. A view from the water begins and a few houses and a lot of trees,are shown on land.,are in the sky.,are shown along with the logo in red painted.,are displayed above the lake.,,gold0-reannot,pos,unl,unl,pos,n/a,An intro video with a blue screen that has a picture of a drawn ship is in the background while yellow words scroll from the bottom to the top.,A view from the water begins and a few houses and a lot of trees\nanetv_5Foo5NSjEXQ,1552,He stirs the ingredients in the pot. He,takes the pasta out of the pot and puts it in a strainer.,stirs the pasta in the pot.,melts the mixture into the pan.,cooks the pasta into the pan.,,gold1-orig,pos,unl,unl,unl,n/a,He stirs the ingredients in the pot.,He\nanetv_5Foo5NSjEXQ,1551,He puts pasta into a large pot. He,stirs the ingredients in the pot.,pours the mix into someone's pot.,puts the pasta into a pan and sets the steppers in the pot.,pours the pasta to the pot.,,gold0-orig,pos,unl,unl,pos,n/a,He puts pasta into a large pot.,He\nanetv_5Foo5NSjEXQ,635,A chef is seen speaking to the camera and pouring oil into a pot. He then,puts ingredients into the pot and sits it around.,begins cooking the bowl and begins creating an omelet.,pours the mixture with sugar and sugar in a pan.,removes the ingredients and drains it around finally setting it on a stove.,,gold1-orig,pos,unl,unl,pos,n/a,A chef is seen speaking to the camera and pouring oil into a pot.,He then\nanetv_5Foo5NSjEXQ,636,He then puts ingredients into the pot and sits it around. He,takes out the ingredient in the end into a strainer.,takes another log part of the sandwich and stirs it.,uses a compact cleaner to eat the cookies.,begins then blow the salad with a machine.,\"cuts a thick cookie, showing it down the side of the paper.\",gold1-orig,pos,unl,unl,unl,unl,He then puts ingredients into the pot and sits it around.,He\nanetv_5Foo5NSjEXQ,1550,A chef is standing in a kitchen. He,puts pasta into a large pot.,is mixing the ingredients into a plate.,uses a brush to apply mayonnaise on the metal.,is holding a knife in a pan.,is chopping a salad in another pan.,gold0-reannot,pos,pos,pos,pos,pos,A chef is standing in a kitchen.,He\nlsmdc3014_CAPTAIN_AMERICA-5431,2860,An mp eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices. People in white lab coats,turn and stare at someone.,sit down in front of a male rocketing.,sit around the towering building as someone works underneath the metallic equipment.,gag themselves around the bottom of a drip box.,are parked in a shadowy room inside to a neighboring jet.,gold0-orig,pos,unl,unl,unl,unl,An mp eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices.,People in white lab coats\nlsmdc3014_CAPTAIN_AMERICA-5431,2857,\"Standing a short distance down the street, two men in suites watch someone and someone enter a shop. Inside, a white - haired woman\",steps forward to greet them.,takes two step as they enter from vault's door.,arranges a takeout bag on her bed.,peels off a pair of shoes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Standing a short distance down the street, two men in suites watch someone and someone enter a shop.\",\"Inside, a white - haired woman\"\nlsmdc3014_CAPTAIN_AMERICA-5431,2858,The white - haired woman steps behind a counter and presses a button located beside a submachine gun. Someone and someone,walk into a backroom and face a bookcase which swings open.,sit in a semi - hidden lobby in a roaring blaze of evening light.,watch in glee as he pinches the nuts into a small bundle.,step up over a rack of long tables and chairs.,go into a clinic where the nurse works.,gold1-orig,pos,unl,unl,pos,pos,The white - haired woman steps behind a counter and presses a button located beside a submachine gun.,Someone and someone\nlsmdc3014_CAPTAIN_AMERICA-5431,2855,Someone smiles as she looks out her window. Their car,pulls up to a curb.,accelerates straight through the parked cars.,passes across the road towards someone's sticker camouflage.,looks up in surprise.,\"follows into view, along a clear river.\",gold0-orig,pos,unl,unl,unl,unl,Someone smiles as she looks out her window.,Their car\nlsmdc3014_CAPTAIN_AMERICA-5431,2859,Someone and someone walk into a backroom and face a bookcase which swings open. An mp,eyes them as they walk down the hallway into a large operating theater filled with machines and electronic devices.,releases one as he takes off of the rings.,pulls up the tiles and makes a fire.,lifts a phone from someone's hand.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone walk into a backroom and face a bookcase which swings open.,An mp\nlsmdc3014_CAPTAIN_AMERICA-5431,2856,\"Someone and someone step out. Standing a short distance down the street, two men in suites\",watch someone and someone enter a shop.,come out to join the group and stare at someone.,come out of the shadows and leave the ballroom.,creep to a stop below.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone step out.,\"Standing a short distance down the street, two men in suites\"\nlsmdc3014_CAPTAIN_AMERICA-5431,2861,People in white lab coats turn and stare at someone. He,glances at someone who turns and leads him to someone who stands beside a padded table in the center of the room.,limps away in the dining room.,\"holds his head up as if to cross his mind, which ends in the sizable explosion.\",puts a second belt on someone's head.,faces an open window in the final room.,gold0-reannot,pos,unl,unl,unl,pos,People in white lab coats turn and stare at someone.,He\nanetv_1BfYAuxv6Wk,11887,She then takes a shaker and pours and vodka and the jagermeister. Then,adds some ice in it and shakes it.,\", she slowly extends a metal liquid to the lens and sorts through it.\",she begins to mix ingredients for batman.,after she reinserts the cook liquid on the table.,the camera stands and pours something back into her glass.,gold0-orig,pos,unl,unl,unl,unl,She then takes a shaker and pours and vodka and the jagermeister.,Then\nanetv_1BfYAuxv6Wk,11886,Maria is demonstrating how to make a Nyquil cocktail drink. She,shows the ingredients required for the drink.,starts mixing a cup in hot water in a greased cup pitcher.,drinks the pot of liquor and juice a rod to a handle by teaching it to make for a cookie.,boils a rum mixture in a blender.,shows some more for what you will need.,gold0-orig,pos,unl,unl,unl,pos,Maria is demonstrating how to make a Nyquil cocktail drink.,She\nanetv_1BfYAuxv6Wk,11888,Then adds some ice in it and shakes it. She,uses a strainer to strain the drink into a cocktail glass and places the glass on the table.,is finished for the empty time.,holds the flute and finishes as she takes the flute from her hands.,\"takes the glass, drinks the juice from the oven.\",begins to add a rock to the larger material.,gold0-reannot,pos,unl,unl,unl,unl,Then adds some ice in it and shakes it.,She\nanetv_2PAVJbmj2lQ,11827,Several more people are seen running down the lane and shooting a basket above them. More girls,run down to shoot a basket and end by walking back together.,run around in the circle until they fall off the end.,continue hitting the ball back and fourth while others watch on the side.,are interviewed and the players around each throws the ball on the beach.,,gold0-orig,pos,unl,unl,unl,n/a,Several more people are seen running down the lane and shooting a basket above them.,More girls\nanetv_2PAVJbmj2lQ,11826,A small group of people are seen standing around a gymnasium with one running down and shooting a basket. Several more people,are seen running down the lane and shooting a basket above them.,are then shown tugging in the end and throwing a ball while many watch on the side.,are shown moving around while one taking a bow while others watch is one on the side.,are seen running in a field chasing another ball while the hit is competing.,,gold1-reannot,unl,unl,unl,unl,n/a,A small group of people are seen standing around a gymnasium with one running down and shooting a basket.,Several more people\nlsmdc1040_The_Ugly_Truth-8551,17631,\"As she gets ready for bed, a tv plays in her bedroom. D'Artagnan\",treads on the remote and changes channels.,pushes up to her forehead.,exposes a small cabinet in a young tunnel ad on a wall facing the bathroom door.,drawing on the wall in her right eye.,places a manuscript on the floor.,gold1-orig,pos,unl,unl,unl,pos,\"As she gets ready for bed, a tv plays in her bedroom.\",D'Artagnan\nlsmdc1040_The_Ugly_Truth-8551,17629,\"She lets herself in her front door, and her cat, D'Artagnan, trots over. Someone\",looks thoughtful and a little sad.,unlocks at the front of the shed where an officer opens the door's knob.,'s dark - haired friend knits her.,sits in the bathroom with a larger note on it on the bed.,opens the refrigerator into its box and grabs a cucumber apprehensively.,gold0-orig,pos,unl,unl,unl,unl,\"She lets herself in her front door, and her cat, D'Artagnan, trots over.\",Someone\nlsmdc1040_The_Ugly_Truth-8551,17630,\"Someone looks thoughtful and a little sad. As she gets ready for bed, a tv\",plays in her bedroom.,\"is sitting on a couch next to herself, gun in hand.\",is then drizzled in over the living room.,is into the living room.,,gold0-orig,pos,unl,unl,unl,n/a,Someone looks thoughtful and a little sad.,\"As she gets ready for bed, a tv\"\nlsmdc1040_The_Ugly_Truth-8551,17628,\"Later that night, someone walks past an illuminated fountain. She\",heads along a path through the pretty ornamental gardens outside her apartment building.,moves towards running locks but she knocks and it breaks.,sees someone clutching a fan in both hands.,places one hand on someone's heart and press their lips together.,takes a picture of the performers.,gold0-orig,pos,unl,unl,pos,pos,\"Later that night, someone walks past an illuminated fountain.\",She\nlsmdc3059_SALT-28672,15063,She adjusts it outside the interrogation room. She,heads through the door.,holds out her hand in this time and waits for a third.,\"wears short dark hair, a burly vest, and a goatee.\",steps toward the sink.,steps down to the elevator behind her.,gold0-orig,pos,unl,unl,unl,pos,She adjusts it outside the interrogation room.,She\nlsmdc3059_SALT-28672,15062,Someone picks up a pack of cigarettes and an ashtray then inserts a small radio receiver into her ear. She,adjusts it outside the interrogation room.,approaches the pocket and sets out a copy of the book.,\"slaps his cat, leads it to someone's sitting room, his tattoo is laid outside.\",slowly opens the door and peers out her room door.,,gold0-orig,pos,unl,unl,pos,n/a,Someone picks up a pack of cigarettes and an ashtray then inserts a small radio receiver into her ear.,She\nanetv_3Hbm8FdirRc,7482,A man is sitting on a green riding lawn mower. He,continues to mow the lawn.,is mowing in front of lawn as he mows.,\"is in bushes mowing the grass, as he picks it up and something appears the fence with the mower.\",starts painting a wood tree in the garden.,is next to the grades.,gold0-orig,pos,unl,unl,unl,unl,A man is sitting on a green riding lawn mower.,He\nanetv_3Hbm8FdirRc,7483,He continues to mow the lawn. He,mows around a bush on the lawn.,stops to mow the lawn and walking.,mows down smooth landing on the residential square.,stops at the hedges and starts to perform for him.,moves through the yard and goes.,gold0-orig,pos,unl,unl,pos,pos,He continues to mow the lawn.,He\nanetv_3Hbm8FdirRc,17289,He has orange ear protection on. He,goes back and forth mowing the lawn.,cleans smoke and some smeared pliers in a bushy patch.,\"rubs soap on his hands, and put the laces in place.\",\"is standing up, pointing his finger pointed paws at him and continuing of his narration.\",is instructing it as he mans the dining bull.,gold0-orig,pos,unl,unl,unl,unl,He has orange ear protection on.,He\nanetv_3Hbm8FdirRc,17288,A man is sitting on a riding lawn mower. He,has orange ear protection on.,stands to catch a tube back from the camera.,is in shining white shoes and very white shoes.,puts brush on a woman's.,runs outdoors around the grass.,gold0-reannot,pos,unl,unl,unl,unl,A man is sitting on a riding lawn mower.,He\nanetv_WjX-xi2Ocbo,13273,\"He ropes a calf, dismounted to tie it up. Another man\",rides on screen momentarily.,comes back and transfers the horse competition.,takes in a ring.,grabs his right leg as he jogs.,,gold1-orig,pos,unl,unl,unl,n/a,\"He ropes a calf, dismounted to tie it up.\",Another man\nlsmdc0001_American_Beauty-45896,11401,\"Someone scrambles to dodge his father, but someone is too fast; he punches someone in the face, knocking him to the floor. From her window, someone\",\"watches, pulling the drapes in front of her.\",is on the far side of his first lane.,has to wipe broken face full of someone's face.,is motionless upside down next to her.,emerges from the window.,gold0-orig,pos,unl,unl,unl,pos,\"Someone scrambles to dodge his father, but someone is too fast; he punches someone in the face, knocking him to the floor.\",\"From her window, someone\"\nlsmdc0001_American_Beauty-45896,11399,\"Startled, someone turns around. As soon as his eyes meet his father's, he\",knows what's up.,stands with her back to her.,rises to the palm of his foot.,puts his hand on someone.,\"backs up from the table and is passed away by his commuter, another rocking door of a bedside display are ajar.\",gold0-orig,pos,unl,unl,unl,unl,\"Startled, someone turns around.\",\"As soon as his eyes meet his father's, he\"\nlsmdc0001_American_Beauty-45896,11404,\"In the window across from us, someone proceeds to give someone a serious beating, punching his face. Someone\",grabs him by the collar.,disintegrates after the frost sphere.,reply on the sidewalk.,\"takes a hit, someone accelerates.\",,gold0-orig,pos,unl,unl,pos,n/a,\"In the window across from us, someone proceeds to give someone a serious beating, punching his face.\",Someone\nlsmdc0001_American_Beauty-45896,11397,\"She stands there in her bra, then reaches behind her back to unhook the bra. We\",zoom toward her as she takes off her bra clumsily.,maid is behind the bar.,\"'s hair, dryers, hair swept off her.\",'s bra falls.,,gold0-orig,pos,unl,unl,pos,n/a,\"She stands there in her bra, then reaches behind her back to unhook the bra.\",We\nlsmdc0001_American_Beauty-45896,11400,\"As soon as his eyes meet his father's, he knows what's up. Someone scrambles to dodge his father, but someone is too fast; he\",\"punches someone in the face, knocking him to the floor.\",\"starts laughing and without an uncertain look, along leaning close to her.\",turns and slaps a red block.,can't penetrate either heavy enough to grab one and climb into it.,,gold0-orig,pos,unl,unl,unl,n/a,\"As soon as his eyes meet his father's, he knows what's up.\",\"Someone scrambles to dodge his father, but someone is too fast; he\"\nlsmdc0001_American_Beauty-45896,11391,\"Embarrassed, she quickly leaves. Someone\",\"looks in a mirror and rubs her cheek, then crosses to the window and looks out.\",highlights a meeting outside.,\"drives, scanning her intently.\",turns through the kitchen and enters a room lined with books.,wanders out of her house and shuts her door window.,gold1-orig,unl,unl,unl,unl,unl,\"Embarrassed, she quickly leaves.\",Someone\nlsmdc0001_American_Beauty-45896,11402,\"From her window, someone watches, pulling the drapes in front of her. Someone's lip is bleeding, but he\",maintains a steady gaze at his father during this violence.,\"got a skin, which makes her crack in half.\",pushes it down to her.,\"thinks better of it, as if this means that.\",is pulled back slightly.,gold0-orig,pos,unl,pos,pos,pos,\"From her window, someone watches, pulling the drapes in front of her.\",\"Someone's lip is bleeding, but he\"\nlsmdc0001_American_Beauty-45896,11398,\"We zoom toward her as she takes off her bra clumsily. On the wide - screen tv behind him, we\",see someone standing in her window as she looks across at him.,revolve in on the crescent form of the mysterious hood.,see someone sitting at a table working outside at the country bank.,\"glimpse an attractive, auburn - haired woman hurrying to the kitchen.\",,gold0-orig,pos,unl,unl,pos,n/a,We zoom toward her as she takes off her bra clumsily.,\"On the wide - screen tv behind him, we\"\nlsmdc0001_American_Beauty-45896,11392,\"Someone looks in a mirror and rubs her cheek, then crosses to the window and looks out. We\",\"are across from someone's room, looking in.\",\"stops for a moment, then gets out of the car with someone else.\",erupt across the bay.,\"are whilst in the city handrail, with the empty fountain at the far end of the room.\",are in blue table with cars parked.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks in a mirror and rubs her cheek, then crosses to the window and looks out.\",We\nlsmdc0001_American_Beauty-45896,11395,\"A beat, then she starts to take off her shirt. She\",has now removed her shirt.,is pulling the suitcase out of her way.,holds her gaze for a moment.,turns brushing the bell rings.,lifts the bags from her head.,gold0-orig,pos,unl,unl,unl,unl,\"A beat, then she starts to take off her shirt.\",She\nlsmdc0001_American_Beauty-45896,11396,She has now removed her shirt. She,\"stands there in her bra, then reaches behind her back to unhook the bra.\",up and walks off.,rolls down someone's face and smiles.,begins to ride off.,,gold0-orig,pos,unl,unl,unl,n/a,She has now removed her shirt.,She\nlsmdc0001_American_Beauty-45896,11403,\"Someone's lip is bleeding, but he maintains a steady gaze at his father during this violence. In the window across from us, someone\",\"proceeds to give someone a serious beating, punching his face.\",watches admiringly past the faded room of the first class site.,turns himself toward the periscope.,catches him with the headwaiter photo.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone's lip is bleeding, but he maintains a steady gaze at his father during this violence.\",\"In the window across from us, someone\"\nlsmdc0001_American_Beauty-45896,11394,\"He stands at the window with his digicam, videotaping us. We\",are behind someone as he videotapes someone in her window.,finds it close.,\"out of his way, someone waves the wand.\",- mounted on the bed burning.,,gold0-orig,pos,unl,unl,unl,n/a,\"He stands at the window with his digicam, videotaping us.\",We\nanetv_WMVJqLMtaws,13274,The girl takes her turn followed by the boy shortly after. The girl,takes another turn while the dogs wander around and one grabs the glove while the girl chases him.,demonstrates to pick around the boy.,\"follows us as the girls last to move around, and then come back to join her and the camera once more.\",peels brown fabric into the hoop and retrieves it and pulls it back out.,walks back and fourth while looking back and fourth to the camera.,gold0-orig,pos,unl,unl,unl,unl,The girl takes her turn followed by the boy shortly after.,The girl\nanetv_WMVJqLMtaws,13275,The girl takes another turn while the dogs wander around and one grabs the glove while the girl chases him. She,grabs the glove and continues jumping again.,push the dog while jumping.,bumps onto a table and screams.,lifts the cap after his one.,,gold1-orig,pos,unl,unl,unl,n/a,The girl takes another turn while the dogs wander around and one grabs the glove while the girl chases him.,She\nanetv_WMVJqLMtaws,3789,The girl plays with the dogs and chase them around to grab a rock. The boy,plays with the girl as the dogs walk on the side.,sticks several more as the help more and away.,rolls across the camel to the left.,mows for the yard while the camera trails her foot.,lets go of the mower and walks away.,gold0-orig,pos,unl,unl,unl,unl,The girl plays with the dogs and chase them around to grab a rock.,The boy\nanetv_WMVJqLMtaws,3788,Two children are seen standing outside with one playing hopscotch and dogs walking in and out of frame. The girl,plays with the dogs and chase them around to grab a rock.,continues braiding and talking to the camera while another man walks next to them.,demonstrates several brushes before moving it around on the top and smiles to the camera and marks friends it.,is playing the scissors while the people are watching her.,,gold1-orig,pos,unl,unl,unl,n/a,Two children are seen standing outside with one playing hopscotch and dogs walking in and out of frame.,The girl\nanetv_WMVJqLMtaws,13273,Two children are seen playing hopscotch on a paved road while one dog walks by and another lays and watches. The girl,takes her turn followed by the boy shortly after.,looks back from the bag and begins spinning up throwing the one again.,continue dancing along the track while the camera captures her movements.,continues belly dances while they play volleyball.,is thoroughly laying on the floor with her back to the camera.,gold0-reannot,pos,unl,unl,unl,unl,Two children are seen playing hopscotch on a paved road while one dog walks by and another lays and watches.,The girl\nanetv_6FPoGGaox4g,2,A woman is helping a little boy slide down a slide. A woman,is at the top of a slide helping a little boy slide down into the arms of another person in a red vest.,pulls the girl down from a slide.,is walking on the monkey monkey bars.,is sitting on a tube in a playground next to the playground.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is helping a little boy slide down a slide.,A woman\nanetv_IC-Rd7ouQmE,699,A group of people are seen sitting on bikes and waiting before a track. A bar let's go and the men,ride around a long track on the bikes behind one another.,continue running across the track doing other kicks.,rides up a routine with the coach.,lift one man and stick back into the corner of a home played while wearing the blue t shirt.,ride off through a course past one another.,gold0-orig,pos,unl,unl,unl,pos,A group of people are seen sitting on bikes and waiting before a track.,A bar let's go and the men\nanetv_Aqq8S79ZAhk,11847,A camera pans around a room and leads into two women speaking and pulling out rock tiles. The women then,put plaster down followed by the rock tiles and showing off the finished shower in the end and people reacting.,switch places behind the woman and begin breaking dancing while open.,begins taking different shoes off while the man continues to lay down the table.,begin wrapping the weights and leads into one another putting items on their end and presenting them to the camera.,use different contraptions that are followed by two and the man who continues relaxing.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a room and leads into two women speaking and pulling out rock tiles.,The women then\nanetv_wZJeEV6sZXE,13652,\"She sits on a toilet appearing, with parts of her blurred out and appears to be in distress. The woman\",stands up and washes her hands.,is speaking teeth while a couple clips her hair.,puts down her cat and throws looking at her blue eyes.,then shows the other items by applying a contact lens.,moves away on the suited one.,gold0-orig,pos,unl,unl,unl,unl,\"She sits on a toilet appearing, with parts of her blurred out and appears to be in distress.\",The woman\nanetv_wZJeEV6sZXE,13651,A computer generated woman in a computer generated house walks into a wallless bathroom. She,\"sits on a toilet appearing, with parts of her blurred out and appears to be in distress.\",opens a door and behind her.,lifts her hood to look out at her reflection in the mirror.,rolls the drapes down on the exercise table right in front of him.,put a dark metal sculpture in a bowl in the center of the workshop.,gold0-orig,pos,unl,unl,unl,unl,A computer generated woman in a computer generated house walks into a wallless bathroom.,She\nanetv_wZJeEV6sZXE,1460,\"Then, the character sits on a toilets and drinks from a cup. Then the woman characters stands, washes her hands and\",dry then on he s pants.,puts water to the flower and groom it.,bake them on a kitchen floor.,smells with one hand.,starts to encasement the vegetables with either styles.,gold1-orig,pos,unl,unl,unl,pos,\"Then, the character sits on a toilets and drinks from a cup.\",\"Then the woman characters stands, washes her hands and\"\nlsmdc3053_PARENTAL_GUIDANCE-25514,5612,\"Inside the house, a short blonde in her 60s exhaustively works out on a stripper pole. An instructor\",leads her and three other middle - aged women on their own poles.,calls in the terminal.,\"wears a wide sided display of white, white styles in a pink braid in a stained bottom crest.\",\"steps forward with a work kick, looking with the grace of a high baton and opens his eyes.\",sits on a couch in the office.,gold0-orig,pos,unl,unl,unl,pos,\"Inside the house, a short blonde in her 60s exhaustively works out on a stripper pole.\",An instructor\nlsmdc3053_PARENTAL_GUIDANCE-25514,5610,As someone leaves the lights go out one by one. Later outside a ranch style home a vintage red convertible Mustang,sits in the driveway.,sweeps through the park.,appears as autumn heads over.,drives the two police cart toward the crates.,,gold1-orig,pos,unl,unl,unl,n/a,As someone leaves the lights go out one by one.,Later outside a ranch style home a vintage red convertible Mustang\nlsmdc3053_PARENTAL_GUIDANCE-25514,5609,He somberly walks away past a giant poster featuring his head with a Fresno Grizzly's hat. As someone leaves the lights,go out one by one.,show the next question.,go on as the quartet sprints as they race through the yellow flames.,\"and blows on the glass, whacks the mixture upside down.\",,gold1-orig,unl,unl,unl,unl,n/a,He somberly walks away past a giant poster featuring his head with a Fresno Grizzly's hat.,As someone leaves the lights\nlsmdc3053_PARENTAL_GUIDANCE-25514,5614,He despondently passes the women. Someone,watches her husband slump into the kitchen.,watches as the boys rinse out the dishwasher.,\"is drying someone's hair, as well kids appear in the kitchen.\",turns down a set of number - shaped actors.,sits down with her hands toting beside her desk.,gold0-orig,pos,unl,unl,unl,pos,He despondently passes the women.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25514,5611,Its license plate reads davoice. Someone,sits in the driver's seat watching a stuffed grizzly bear swing from the rear view mirror.,sets him down on his lunch counter.,slowly takes her hand and walks into the kitchen.,\", answers coming out outside.\",pulls out the waitresses dollar bill.,gold1-orig,pos,unl,unl,unl,unl,Its license plate reads davoice.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25514,5613,An instructor leads her and three other middle - aged women on their own poles. Someone,exits his car and approaches the front door.,slips some money into his pocket.,steps down the street by himself.,holds up a shoelace as they sit with the ring.,joins someone in sitting room.,gold0-reannot,pos,unl,unl,unl,unl,An instructor leads her and three other middle - aged women on their own poles.,Someone\nanetv_yqzV0O139Yk,4005,Two people are seen standing on a field in front of ball when one bends over to balance on the ball. The woman then,performs exercises on the ball with the man's assistance.,spins the ball around while another girl to and way to hit the ball.,turns and continues doing high and tumbling and the camera jumps off another side.,throws the woman off at a distance and returns to the competition area.,,gold0-orig,pos,unl,unl,unl,n/a,Two people are seen standing on a field in front of ball when one bends over to balance on the ball.,The woman then\nlsmdc3043_KATY_PERRY_PART_OF_ME-20830,19142,\"Smiling at her audience, someone raises one fist in the air, choking back tears. She\",blows a kiss to the crowd.,is unbuttoning as someone talks to someone.,\"holds it up and smiles, but someone walks back from her and looks at the other confused and maybe he has been parents.\",hit her again and frowns as she speaks into the pager.,shakes her head as someone and her husband surround her in the elevator.,gold0-orig,pos,unl,unl,unl,unl,\"Smiling at her audience, someone raises one fist in the air, choking back tears.\",She\nanetv_a2k-AgrAppg,13919,\"A little girl sits on front a cup of ice cream, then she takes a piece of food from the cup and eats it. Then, the girl\",grab the spoon and eats the ice cream.,takes a turn from the oven.,takes cream from her right eye.,dumps some sugar into a baking pan.,doles the pink cream and eats the cream.,gold0-orig,pos,unl,unl,unl,unl,\"A little girl sits on front a cup of ice cream, then she takes a piece of food from the cup and eats it.\",\"Then, the girl\"\nanetv_Z-gDuGMpClo,8523,The men walk in the parking lot in a line with only underwear on. A man,shakes his wet hair.,prepares a cigarette in a kitchen.,sits on a trampoline and talks.,is next to them.,,gold0-orig,pos,unl,unl,pos,n/a,The men walk in the parking lot in a line with only underwear on.,A man\nanetv_Z-gDuGMpClo,8522,We see shirtless men in small tight underwear washing cars. The men,walk in the parking lot in a line with only underwear on.,take a brush from the van and surfs in a bright area.,\"enter a new conference room, watched by rocks and legs from a floor with bushy creased angles and seats on the high floor.\",\"approach to suits, wear men in duffel gear, and next to the man.\",stand up to take a seat and remove the tire.,gold0-orig,pos,unl,unl,unl,unl,We see shirtless men in small tight underwear washing cars.,The men\nanetv_Z-gDuGMpClo,8527,Men do dances in a line and scenes of washing the car. We,see the ending title screen.,see a woman standing in the dirt car.,see paintball guns on the ground.,\"fill the screen, then people race the street around the machine.\",see them at all dressed in a white white.,gold0-orig,pos,unl,unl,unl,unl,Men do dances in a line and scenes of washing the car.,We\nanetv_37gHYr2uDZo,5656,Grab another cup and uses it to mix drink. He,grabs a third cup and pours the drink into that cup or serving.,drop the cup directly to the table and remove paints.,drink woman out while moving through bowling pins as other tables shaped glass are sitting on a ground.,carries two bottles of liquor into the large glass bottle and puts them on.,\", he begins talking as the young man comes?\",gold0-orig,pos,unl,unl,unl,unl,Grab another cup and uses it to mix drink.,He\nanetv_37gHYr2uDZo,7915,The man pours the contents of the tall glass into a shaker. The man then,pours the contents of the shaker back into the tall glass.,pours another lime in the martini glass and brings it up with a drink.,takes the contents of the glass and brings it back to the glass.,squeezes the lemons into a glass glass.,adds liquors and liquors from orange liquors to make the drink into the glass.,gold0-orig,pos,unl,unl,unl,unl,The man pours the contents of the tall glass into a shaker.,The man then\nanetv_37gHYr2uDZo,7914,The man grabs takes several liquids and begins to pour them in a tall glass. The man,pours the contents of the tall glass into a shaker.,begins mixing the ingredients together in a pan.,picks up a different solves of the puzzle someone is standing on.,pours the drinks from a blender.,\"adds ice to his glass, moves off the window and pours chocolate on.\",gold0-orig,pos,unl,unl,unl,pos,The man grabs takes several liquids and begins to pour them in a tall glass.,The man\nanetv_37gHYr2uDZo,7913,A man is standing behind a bar talking. The man,grabs takes several liquids and begins to pour them in a tall glass.,demonstrates how to brush their teeth.,bends forward and sets the baby down on his side.,poke his legs while juggling his racket.,,gold0-orig,pos,unl,unl,unl,n/a,A man is standing behind a bar talking.,The man\nanetv_37gHYr2uDZo,5655,A man comes onto the screen introduces that he will be making a coconut flavored drink. He,fills a cup with ice and adds all the ingredients into the cup.,\"pours down a different drink then uses it for other length of drink, then takes a few deep breaths right after the first.\",is on the beach doing the pedals for a second time.,takes a drink and attempts to make a drink before finally pouring it into his glass.,gets the martini to go and then go on and talks as well.,gold0-orig,pos,unl,unl,unl,pos,A man comes onto the screen introduces that he will be making a coconut flavored drink.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95090,3376,He is looking at a photograph stuck up on the mirror. Someone's parents,are part of the group.,lurking on the sidewalk as they spin wildly.,are following someone's examination.,are still standing about.,are peeling away from the tree.,gold0-orig,pos,unl,unl,pos,pos,He is looking at a photograph stuck up on the mirror.,Someone's parents\nlsmdc0005_Chinatown-48052,2632,A stunning young woman appears behind someone in his doorway. She,\"is shortly joined by a small, gray - haired man.\",\"is very surprised to find another vast skyscraper with tall trees, on new dashboard.\",cuts the killer's hair as he regards an asian woman.,\"bites through her lip, holding her wand in view.\",drags her towards him.,gold0-orig,pos,unl,unl,pos,pos,A stunning young woman appears behind someone in his doorway.,She\nlsmdc0005_Chinatown-48052,2633,\"She is shortly joined by a small, gray - haired man. They\",\"listen, unseen by someone.\",picks up a phone and dials.,regards her sister curiously as she plays the piano.,\"are gone, panic run into the back.\",are standing at a table near another set.,gold1-reannot,pos,unl,unl,unl,pos,\"She is shortly joined by a small, gray - haired man.\",They\nlsmdc1011_The_Help-78599,3620,\"She rises to her feet, squaring up to her skinny shoulders. Someone\",fixes her with a look of barely - disguised amusement.,\"gives in slow, synchronized breaths.\",reaches for his wallet.,\"holds her hand in front of her face, and they head off.\",,gold1-orig,pos,unl,pos,pos,n/a,\"She rises to her feet, squaring up to her skinny shoulders.\",Someone\nlsmdc1011_The_Help-78599,3618,Someone shoves the plate at someone. She,waves her away and takes another forkful.,turns to look after her.,tries to put up the refrigerator.,turns to meet him.,opens the bar halfway up.,gold0-orig,pos,unl,unl,unl,unl,Someone shoves the plate at someone.,She\nlsmdc1011_The_Help-78599,3619,She waves her away and takes another forkful. Someone,slams down the plate.,flies into a water cave.,watches as someone leads her pancakes.,\"pulls up his vehicle, moves around the edge, lingering a few feet closer.\",smiles at the last woman.,gold0-reannot,pos,unl,unl,unl,unl,She waves her away and takes another forkful.,Someone\nlsmdc3058_RUBY_SPARKS-28081,2716,\"Under her vulnerable gaze, someone's expression softens. She\",smiles tenderly at him.,\"takes a deep breath, gradually backs her up against a crook loving hand.\",turns then gazes out with her handkerchief.,rips up his hood.,,gold0-orig,pos,unl,unl,unl,n/a,\"Under her vulnerable gaze, someone's expression softens.\",She\nlsmdc3058_RUBY_SPARKS-28081,2721,\"Someone jumps in after her, fully clothed. The two\",swim around one another in a softly illuminated water.,drive for and gather breakfast.,\"girls hurry to the dining table, which are occupied at the back of the hobbits.\",\"allow someone to replace their visor, then get into an elevator.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone jumps in after her, fully clothed.\",The two\nlsmdc3058_RUBY_SPARKS-28081,2715,\"Watching someone, someone coyly nibbles her soda straw. At his typewriter, someone\",furrows his brow and pauses briefly.,crosses the room dressed and pulls out a blanket.,sits astride a four - round cat.,spreads her arms where someone wears a blurred expression as he listens thoughtfully.,looks up as he walks away.,gold0-orig,pos,unl,unl,pos,pos,\"Watching someone, someone coyly nibbles her soda straw.\",\"At his typewriter, someone\"\nlsmdc3058_RUBY_SPARKS-28081,2724,He finds his cellphone in a pile of clothes and answers it. He,presses a few buttons.,pauses and peers through his keys.,watches seated outside in front of an apartment and washing his hands over the sun.,puts on the thick tartan blanket.,offers his cell phone to find.,gold0-orig,pos,unl,unl,unl,unl,He finds his cellphone in a pile of clothes and answers it.,He\nlsmdc3058_RUBY_SPARKS-28081,2720,\"In her sundress and bare feet, she leaps into the narrow swimming pool. Someone\",\"jumps in after her, fully clothed.\",\"around, she kicks someone through the glass as she crawls along a wooden walkway out of the grubby woman.\",senses her speed and soap.,\"speeds upright this alley, then they explode.\",\"halts in a stupor, then pauses, looking to the top of the diving board.\",gold0-orig,pos,unl,unl,unl,pos,\"In her sundress and bare feet, she leaps into the narrow swimming pool.\",Someone\nlsmdc3058_RUBY_SPARKS-28081,2719,\"Someone springs up and dashes pass him. In her sundress and bare feet, she\",leaps into the narrow swimming pool.,crawls to her alarm.,eat astonished at a manhattan framed skyscraper.,revolves on the stair set.,sees him striding out of the police.,gold1-orig,pos,unl,unl,unl,pos,Someone springs up and dashes pass him.,\"In her sundress and bare feet, she\"\nlsmdc3058_RUBY_SPARKS-28081,2723,He runs through the house. He,finds his cellphone in a pile of clothes and answers it.,walks up to the door and steps inside.,searches through mud after people stare after him.,halts and trudges to his couch.,,gold0-orig,pos,unl,unl,pos,n/a,He runs through the house.,He\nlsmdc3058_RUBY_SPARKS-28081,2717,She smiles tenderly at him. Someone,leans in close to her.,take them to the tree and dance together.,hugs him and puts her arms around his throat.,rests her hand on someone's shoulder and reads.,lies on the sofa.,gold0-orig,pos,unl,unl,pos,pos,She smiles tenderly at him.,Someone\nlsmdc3058_RUBY_SPARKS-28081,2711,\"Someone sees the couple off then heads inside. Moving through the foyer, he\",switches off the table lamp.,approaches a statue where the gate is secured in a university sunny tooth.,\"finds someone sitting behind her, demurely leading him by a balcony.\",sees someone rummaging around the doorknob with his finger.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sees the couple off then heads inside.,\"Moving through the foyer, he\"\nlsmdc3058_RUBY_SPARKS-28081,2713,\"He opens the drawer, stashing the mysterious woman's items. Someone\",taps away at his typewriter.,grabs a lid and paints the face of a local editor.,curls into his t - shirt.,fixes them with his bag.,hangs onto a piece of paper that placed on small racks.,gold1-orig,pos,unl,unl,unl,pos,\"He opens the drawer, stashing the mysterious woman's items.\",Someone\nlsmdc3058_RUBY_SPARKS-28081,2709,\"Later, someone uses a baby carrier to haul someone to a car. Someone\",lowers his shy gaze.,is sticking the hood of the aston.,treads to someone in a frightened expression.,sets down a emergency food cup and tears down a thug's jacket as she stalks toward the building.,,gold1-orig,unl,unl,unl,unl,n/a,\"Later, someone uses a baby carrier to haul someone to a car.\",Someone\nlsmdc3058_RUBY_SPARKS-28081,2714,\"With a dreamy wistful gaze he writes. In the imagined scene, someone and someone\",sit on his pool deck.,are among the great row of figures.,watch someone through a revolving door.,chat with the young boy.,,gold0-reannot,pos,unl,pos,pos,n/a,With a dreamy wistful gaze he writes.,\"In the imagined scene, someone and someone\"\nlsmdc3058_RUBY_SPARKS-28081,2712,\"Moving through the foyer, he switches off the table lamp. He\",steps around his staircase and picks up the manuscript.,\"climbs off the porch, holding a bat on his shoulder.\",rushes to the blonde and paces into the corridor.,sees the light take on the pair of glasses.,\"settles on the pillow, taking in the flower as it touches.\",gold1-reannot,pos,unl,unl,unl,pos,\"Moving through the foyer, he switches off the table lamp.\",He\nanetv_rFx-j3NhSgI,18156,An empty gymnasium is shown when a girl hits a button the computer and begins starting a routine. She,twirls around the gym floor with a baton and moves her arms around.,finishes her dancing and makes a meeting with the items.,lifts up even higher and holds her arms up to do so.,\"checks her watch, one cartwheel from the bar then gets back on the mat.\",is then shown on a court playing a game while the audience cheers at him.,gold0-orig,pos,unl,unl,unl,unl,An empty gymnasium is shown when a girl hits a button the computer and begins starting a routine.,She\nlsmdc3012_BRUNO-4367,4214,Someone rolls onto his back. Someone,wears a strap - on dildo.,walks up the aisle to someone's mimics.,runs up and leaps off the side with a steady gait.,\"takes free, jumps up closes the doors.\",pulls his cable away.,gold0-orig,pos,unl,unl,unl,pos,Someone rolls onto his back.,Someone\nlsmdc3012_BRUNO-4367,4212,Effects punch and spins away. He,wraps his leg around someone's knee.,flies at it.,leaps back up in front of himself.,crosses to the open door.,,gold0-orig,pos,unl,pos,pos,n/a,Effects punch and spins away.,He\nlsmdc3012_BRUNO-4367,4213,He wraps his leg around someone's knee. Someone,\"twists his arm, and forces him to the floor.\",looks then pleasantly and gesticulates.,'s shoulders heave as he storms off the lift.,rests his mouth on the patient's lap; her eyes widen.,,gold0-orig,pos,unl,unl,unl,n/a,He wraps his leg around someone's knee.,Someone\nlsmdc1028_No_Reservations-83190,12639,Someone checks someone's cupboards. Someone,takes a box from his bag.,places one of his cash on someone's dressing table.,arrives home where he sits his bench on a sofa.,\"'s homer is held straight over his head, leaving someone's broad wing.\",\"kneels through a bunk, while someone slides on a rubber raft.\",gold1-orig,pos,unl,unl,unl,unl,Someone checks someone's cupboards.,Someone\nlsmdc1028_No_Reservations-83190,12641,Someone ushers someone out of the kitchen. Someone,shows someone how to make a pizza base.,marches up to the passenger door.,\"stirs as someone laughs, then up at nothing.\",takes a bottle to his glasses before handing it over.,,gold0-orig,pos,unl,unl,unl,n/a,Someone ushers someone out of the kitchen.,Someone\nanetv_NHDjJ8auZQ0,17905,Several tables of ping pong players serve a ping pong ball back and forth across a ping pong table at a refereed ping pong game. At times the serve is missed and the various players,retrieve the ball and resume playing while the judge in the center of the table keeps score with a paper flip scoreboard.,show the correct way before they hit a man into the middle of the court.,look towards the camera.,look down at their table.,,gold0-orig,pos,unl,pos,pos,n/a,Several tables of ping pong players serve a ping pong ball back and forth across a ping pong table at a refereed ping pong game.,At times the serve is missed and the various players\nanetv_NHDjJ8auZQ0,18697,The games play back and fourth while others watch on the side. The people,continue to play back and fourth with one another.,watch and continue to play the game all around one another and ends by walking away.,continue to play as well as people playing cards and speak to one another.,continue then move back continuously with one another and ends with them playing in the end.,stop performing smiles as they continue to talk.,gold0-orig,pos,unl,unl,pos,pos,The games play back and fourth while others watch on the side.,The people\nlsmdc3064_SPARKLE_2012-3843,6595,\"As she turns away, the big smile grows on her face. Someone\",\"flashes a warm smile to her mother, who returns a stern glare.\",gazes solemnly toward his long staring nose.,\"looks away, running proudly.\",\"gives someone a deep curtsey, then crouches down.\",\"charges at someone and smirks, gives her a tight hug, then faces someone.\",gold0-orig,pos,unl,unl,pos,pos,\"As she turns away, the big smile grows on her face.\",Someone\nlsmdc3064_SPARKLE_2012-3843,6597,\"Now at the Anderson house, the Bible study group watches a comedian on the color tv. Someone\",shoots someone a dirty look.,passes and puts a mug put in the trash.,jogs up the bedroom and up the following corridor.,looks over at the lake.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now at the Anderson house, the Bible study group watches a comedian on the color tv.\",Someone\nlsmdc3064_SPARKLE_2012-3843,6598,Someone shoots someone a dirty look. Someone,\"whispers to someone, who shrugs.\",tosses it out.,sees no sign of his gran vito.,jogs over to a counter and dashes off into the garage.,,gold0-orig,pos,unl,pos,pos,n/a,Someone shoots someone a dirty look.,Someone\nlsmdc3064_SPARKLE_2012-3843,6596,\"Someone flashes a warm smile to her mother, who returns a stern glare. Now at the Anderson house, the Bible study group\",watches a comedian on the color tv.,are a hot beauty way between french windows.,offices a young woman.,of students food around an empty classroom.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone flashes a warm smile to her mother, who returns a stern glare.\",\"Now at the Anderson house, the Bible study group\"\nlsmdc3064_SPARKLE_2012-3843,6594,\"Someone, escorting a chin length bob, parks the car close by. Someone\",looks at someone and someone.,comes in wearing helmets and a green balaclava.,sits back on the stove and leaves.,takes the exam.,disconnects the detective as she steps inside.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone, escorting a chin length bob, parks the car close by.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37568,15292,\"They jump up and down, a hatch lowers. Someone\",checks someone's chute.,tosses the grenade to someone.,holds the ribbon to someone's neck.,dangle a hopeful hold on a troop carrier.,waves to a man from his booth.,gold1-orig,pos,unl,unl,unl,unl,\"They jump up and down, a hatch lowers.\",Someone\nanetv_QryL-hVKAOA,2818,The kid grabs a sponge and its cleaning a pot. kid,wash a white plate in front of the sink.,pours the ball into the sink.,is in the bubble of the sink having a bath.,sprays it with soap and dries it with a towel.,then wash the clothes shown by the sink.,gold0-orig,pos,unl,unl,pos,pos,The kid grabs a sponge and its cleaning a pot.,kid\nanetv_QryL-hVKAOA,16437,\"The girl picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer. The girl\",picked up the plate and rub the sponge on plate.,finished playing the cup with her hand and breath picking and swimming in the water.,put her fingers on someone whose nose in the sink and began rubbing the pedals.,puts a jack on the toilet and washes the hands with soapy rag.,reluctantly put the regular glitter mixture on a plate with the help of the rake.,gold0-orig,pos,unl,unl,unl,unl,\"The girl picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer.\",The girl\nanetv_QryL-hVKAOA,2817,Little kid is standing in front of a sink washing the dishes. the kid,grabs a sponge and its cleaning a pot.,is in the kitchen.,is holding the sink and bucket and cleaning with it.,takes the mouthwash and washes it off of the sink.,is washing their hands in the sink.,gold0-reannot,pos,unl,unl,unl,pos,Little kid is standing in front of a sink washing the dishes.,the kid\nanetv_QryL-hVKAOA,16436,The little girl is brushing the big wooden spoon and put it under the running water and put the wooden spoon on the other side of the sink. The girl,\"picked up the bottle, rub the sponge on it, then rinse it with water, and put it on the strainer.\",wiped the bottle and put it on the pumpkin and spray the dish.,started to sink as she washed the sink.,\"looked in from the faucet, then fill it with water.\",is showing off the bathroom sink and showing her back in hot water and washing her hands.,gold0-reannot,pos,unl,unl,unl,unl,The little girl is brushing the big wooden spoon and put it under the running water and put the wooden spoon on the other side of the sink.,The girl\nanetv_D2ggFcgEbFo,771,They use tubes to slide down a steep hill. They,race each other tubing down the hill together.,get in tubes toward the bottom of the hill.,go off and water themselves down a steep slope.,\"takes in water tubes and skiing down the mountain, very leisurely, and there are also other people in intertubes.\",,gold0-orig,pos,unl,unl,unl,n/a,They use tubes to slide down a steep hill.,They\nanetv_D2ggFcgEbFo,19166,A large group of people are seen riding up a snowy hill while waving to the camera and riding down the mountain. People continuously,ride up the hill as well as down while the camera watches them from all angles.,ride a kite around the area while fourth moving them and helping her out.,ride around around the track and leads into several shots of bikes jumping off a skyscraper and adjusting bikes in front.,ride bikes on the rough areas while sitting close ups and show how the people high up.,lift closer various locations as well as speak to the camera.,gold1-orig,pos,unl,unl,unl,unl,A large group of people are seen riding up a snowy hill while waving to the camera and riding down the mountain.,People continuously\nanetv_D2ggFcgEbFo,770,A group of people are riding a conveyor belt in the snow. They,use tubes to slide down a steep hill.,prepare to begin a race where a person is working with the heat of a race.,walk to the pavement in the rafts and move up to it.,are people on the road.,are unrolling in to sea.,gold0-reannot,pos,unl,unl,unl,unl,A group of people are riding a conveyor belt in the snow.,They\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10244,Someone looks back and smiles. Someone,frowns disapprovingly and blinks.,smiles as he shoves the man out.,\"stares after him, then takes a seat.\",switches back to sleep.,levitates right at her.,gold1-orig,pos,unl,unl,unl,unl,Someone looks back and smiles.,Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10241,\"Someone drives along a highway by the ocean with her mom someone beside her. Someone's new boyfriend, Bones,\",is sleeping on the backseat.,is shoved but this is a table.,rests helplessly on an empty table.,is passed across the walkway and pulls up to the forge.,,gold0-orig,pos,unl,pos,pos,n/a,Someone drives along a highway by the ocean with her mom someone beside her.,\"Someone's new boyfriend, Bones,\"\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10242,\"Someone's new boyfriend, Bones, is sleeping on the backseat. He\",'s a thick - set old guy with a mustache and a ponytail.,enters the tunnel and hurries off.,\"is wearing a sweater, holding a towel on the front of her face.\",pounds the palms of his own head with a gloved hand.,retract the shade as someone showcases the windshield.,gold0-orig,pos,unl,unl,unl,pos,\"Someone's new boyfriend, Bones, is sleeping on the backseat.\",He\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10239,\"At the hospital, someone stands leaning against the worktop in a kitchen area. Someone\",does n't acknowledge her.,exhales on a hook and clears it.,\"creeps down from the refrigerator, placing a pencil in a cabinet.\",rests his head in his lap.,helps her into the hangar.,gold0-reannot,pos,unl,unl,unl,unl,\"At the hospital, someone stands leaning against the worktop in a kitchen area.\",Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10243,He's a thick - set old guy with a mustache and a ponytail. Someone,looks back and smiles.,offers a vintage gun.,picks up his bangs and dials.,follows someone's gaze.,,gold0-reannot,pos,unl,unl,pos,n/a,He's a thick - set old guy with a mustache and a ponytail.,Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25404,10240,Someone looks around at someone as he walks by. Someone,drives along a highway by the ocean with her mom someone beside her.,\"clenches his jaw, as a bright flash crosses the costumed scene.\",stands up and stares intently at the patch on the toned ground.,sets bulbs on the table and reads them.,reaches out and peeks around the corner.,gold1-reannot,unl,unl,unl,unl,unl,Someone looks around at someone as he walks by.,Someone\nlsmdc0004_Charade-47300,19520,\"People are passing through, their conversation continuing. People\",\"appear, their conversation continuing.\",look through the window at their beautiful mother.,\"walk along onto their horses, pushing each line between their feet.\",comes back with them.,,gold0-orig,pos,unl,unl,unl,n/a,\"People are passing through, their conversation continuing.\",People\nlsmdc0004_Charade-47300,19519,Someone regards the devastated table before following. People,\"are passing through, their conversation continuing.\",\"up with a boom, someone takes two keys and sets them on a table in front of them.\",\"are more snaps in fact as someone stares at the missing daughter, who pulls a swollen hand and shakes a hand at her.\",\"studies his aim, then scoops himself up onto the porch and passes someone during the passage.\",\"returns the note, spotting the kids outside.\",gold0-orig,pos,unl,unl,unl,unl,Someone regards the devastated table before following.,People\nlsmdc0004_Charade-47300,19518,Someone picks up a chicken leg and starts off. Someone,regards the devastated table before following.,moves forward and rakes over the grass.,turns the ax on the stump.,falls and rubs his wrists.,takes a few more steps before reaching out.,gold0-orig,pos,unl,unl,unl,pos,Someone picks up a chicken leg and starts off.,Someone\nanetv_Mm-bwu8Q2IU,9328,A man and brown dog are in a fenced off area of an arena with people watching them. The man,throws frisbees for the dog to catch.,lassos and ties the laces.,ropes the calf and then ties the calf.,\"makes certain sport with other people, passes again, also showing other riders behind him while one man helps them.\",,gold0-orig,pos,unl,unl,unl,n/a,A man and brown dog are in a fenced off area of an arena with people watching them.,The man\nanetv_Mm-bwu8Q2IU,9330,The man performs special tricks with the dog using the frisbee. The man,lifts the dog triumphantly over his head and carries him on his shoulder.,is smoking another cigarette as the smoke rings.,loses and speaks while the man ties the nails with the boot.,performs with the grass while the dog watches him pass sideways.,,gold0-orig,pos,unl,unl,unl,n/a,The man performs special tricks with the dog using the frisbee.,The man\nanetv_Mm-bwu8Q2IU,16074,A man and is dog are seen standing in the middle of a fenced in area performing tricks with frisbees. Many people,watch on the side as the man performs tricks with the dog using several frisbees.,in the background walk after a man holding the leash.,watch on the sides while the man continues feeding his dog and the dog.,\"pass by other men, one of them catches the frisbee.\",begin doing karate tricks before a green pit.,gold0-orig,pos,unl,unl,unl,unl,A man and is dog are seen standing in the middle of a fenced in area performing tricks with frisbees.,Many people\nanetv_Mm-bwu8Q2IU,9329,The man throws frisbees for the dog to catch. The man,performs special tricks with the dog using the frisbee.,does a cartwheel to show the frisbees.,climbs on his back while taking off his hat.,attacks and throws the frisbee over the playing of the frisbee.,,gold0-orig,pos,unl,unl,unl,n/a,The man throws frisbees for the dog to catch.,The man\nlsmdc3092_ZOOKEEPER-45392,10272,He heads to the door as Nimer greets the high roller. Someone,stands by the door.,looks up and smiles.,retreats from the garden and glares at him.,stands at a city end.,strides out and runs to the window.,gold0-orig,pos,unl,unl,unl,unl,He heads to the door as Nimer greets the high roller.,Someone\nlsmdc3092_ZOOKEEPER-45392,10265,\"Someone faces a floor - to - ceiling window and gazes out at the city. With a dispirited look, he\",trudges out of the living room.,turns off the tv and sits back down.,looks back the way he came.,releases the camera and heads off.,presses his fingers to the mic.,gold1-orig,pos,pos,pos,pos,pos,Someone faces a floor - to - ceiling window and gazes out at the city.,\"With a dispirited look, he\"\nlsmdc3092_ZOOKEEPER-45392,10271,He takes a bite then hurls it against the far wall. Apple chunks,explode over someone's head.,hurtle out of someone and small branches of a grass.,fly out as the chopped popsicle reapplies its edge.,\"float between him and someone with a canopy, ashen - faced someone.\",flattens the grass into a good net.,gold0-orig,pos,unl,unl,unl,unl,He takes a bite then hurls it against the far wall.,Apple chunks\nlsmdc3092_ZOOKEEPER-45392,10269,\"Stepping closer, Shane rests his stick on his shoulder. He\",reaches into a pants pocket and withdraws an apple.,fires a few dirt spiders into his hands.,bounces on the side of the board and starts to climb inside.,exhales and drag out some smoke.,,gold1-orig,pos,unl,unl,unl,n/a,\"Stepping closer, Shane rests his stick on his shoulder.\",He\nlsmdc3092_ZOOKEEPER-45392,10270,He reaches into a pants pocket and withdraws an apple. He,takes a bite then hurls it against the far wall.,looks around and sees his wet clothes.,\"gets out of a car, shakes his head, then collapses into a seat beside the car.\",\"lets out a big sigh, climbs off the balcony and walks along the porch.\",places the keys on his own jacket and looks around.,gold0-reannot,pos,unl,unl,pos,pos,He reaches into a pants pocket and withdraws an apple.,He\nlsmdc3092_ZOOKEEPER-45392,10268,\"Someone turns his back to the goateed zookeeper. Stepping closer, Shane\",rests his stick on his shoulder.,notices an alien standing behind him.,gets to his feet.,looks away with a grin.,lowers his head from the ground.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns his back to the goateed zookeeper.,\"Stepping closer, Shane\"\nlsmdc3092_ZOOKEEPER-45392,10266,\"With a dispirited look, he trudges out of the living room. With hopeful eyes, he\",watches as it slides open.,shuts his eyes then shut his eyes.,\"watches, others stop at guards.\",packs away a sketch of flowers.,leaves and sits down on a bench nearby.,gold0-reannot,pos,unl,unl,unl,pos,\"With a dispirited look, he trudges out of the living room.\",\"With hopeful eyes, he\"\nlsmdc3092_ZOOKEEPER-45392,10267,\"With hopeful eyes, he watches as it slides open. Someone\",turns his back to the goateed zookeeper.,grips the pipe behind a wheel.,kisses the back of her head.,rubs his fingers with his thumb.,,gold0-reannot,pos,unl,pos,pos,n/a,\"With hopeful eyes, he watches as it slides open.\",Someone\nanetv_0PLaN0hmMDY,8657,\"A person holds a ring in a small box. Then, the man\",wraps the box with gift paper.,turn and lift their hands up once watching him as they use the picture to go around he house.,hammers around the cylinder in between violently.,opens a crack and pushes contacts with the other.,\"puts gift tape to the woman, wrapping and puts it back.\",gold1-orig,pos,unl,unl,unl,unl,A person holds a ring in a small box.,\"Then, the man\"\nanetv_0PLaN0hmMDY,8658,\"Then, the man wraps the box with gift paper. After, the man tries to find the end of a scotch tape roll, but he\",can not find it.,bring it back as well.,does n't forget the game.,folds the top and an wooden patch tree he's fingering.,\"brings out the top part, puts it on the handles and looks at his phone.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, the man wraps the box with gift paper.\",\"After, the man tries to find the end of a scotch tape roll, but he\"\nanetv_0PLaN0hmMDY,8659,\"After, the man tries to find the end of a scotch tape roll, but he can not find it. The man\",cuts the excess of paper and put take on the gift.,\"laughs a bit, then turns on unison, still signing a game of crunches and incident.\",stops walking but knocks the devil out on a sofa.,\"serves the ball to the good time walking into the pool, his na into the mud and trying to lay it down.\",begins pulling back the pucks on the string as he skis down tight.,gold0-orig,pos,unl,unl,unl,unl,\"After, the man tries to find the end of a scotch tape roll, but he can not find it.\",The man\nlsmdc0030_The_Hustler-65001,17210,\"He catches up with someone, taking her by the arm, and stepping out into the street to hail a cab. She\",angrily breaks away from him and walks out into the rain.,turns back at us as people attempt to figure someone.,gazes out a window.,takes the little guard outside and drags her into the station.,,gold0-orig,pos,unl,unl,unl,n/a,\"He catches up with someone, taking her by the arm, and stepping out into the street to hail a cab.\",She\nlsmdc0030_The_Hustler-65001,17212,Someone grabs someone and starts to pull her back under the awning. The door opens and the two of them,\"enter, thoroughly drenched.\",work into the swivel chair.,clamber out of the house.,jump up for her.,climb into one seat.,gold0-orig,pos,unl,unl,pos,pos,Someone grabs someone and starts to pull her back under the awning.,The door opens and the two of them\nlsmdc0030_The_Hustler-65001,17213,\"The door opens and the two of them enter, thoroughly drenched. She\",\"walks to a chair, limping noticeably.\",shows her long unshaven legs in her way.,rises slowly from the chair.,gives a short look and walks on.,,gold0-orig,pos,unl,unl,pos,n/a,\"The door opens and the two of them enter, thoroughly drenched.\",She\nlsmdc0030_The_Hustler-65001,17211,She angrily breaks away from him and walks out into the rain. Someone,grabs someone and starts to pull her back under the awning.,comes to work and squishes the windscreen into hauling sacks.,comes through the checkered floor outside and stares at the bottom of the stair opening.,\"has shoved into his car, and is driven home on the crowded sidewalk.\",is kissed.,gold0-orig,pos,unl,unl,unl,unl,She angrily breaks away from him and walks out into the rain.,Someone\nlsmdc0030_The_Hustler-65001,17209,\"Someone, having hurriedly paid the bill, follows after her. He\",\"catches up with someone, taking her by the arm, and stepping out into the street to hail a cab.\",runs onto a highway then backs away from a window.,has a winter coat and some hat on the wheelbarrow.,is laying his bag near the ground.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, having hurriedly paid the bill, follows after her.\",He\nlsmdc0030_The_Hustler-65001,17214,\"She walks to a chair, limping noticeably. He\",\"reaches across and pulls her to him, burying his face in her head.\",\"places it in front of her eyes, then she turns, and a bright lamp returns, painting her dead fingers.\",looks from a mirror to little places.,takes her hand by hand and starts at someone.,starts to go and a man steps to meet her.,gold0-reannot,pos,unl,unl,unl,unl,\"She walks to a chair, limping noticeably.\",He\nlsmdc1039_The_Queen-88089,9863,\"Some chairs, tables, and a barbecue have been set up in a clearing nearby. Someone\",gives the corgis food.,\"peers back from the room, catching someone's footprints.\",\"takes off the bracelet, such as possible rope, cool down.\",knocks them out and now the general is immediately disturbed by the sound of another of which someone.,\"fetches the papers, seems to be making much progress with the papers.\",gold1-orig,pos,unl,unl,unl,unl,\"Some chairs, tables, and a barbecue have been set up in a clearing nearby.\",Someone\nlsmdc1039_The_Queen-88089,9862,\"Someone strolls through some woods, carrying a lunch box and accompanied by some corgis. Some chairs, tables, and a barbecue\",have been set up in a clearing nearby.,are filled with a small fruit.,is been cut around.,are piled with baskets watching the mercenaries.,are occupied by a huge stack of glass chairs.,gold0-orig,pos,unl,unl,unl,unl,\"Someone strolls through some woods, carrying a lunch box and accompanied by some corgis.\",\"Some chairs, tables, and a barbecue\"\nlsmdc1039_The_Queen-88089,9864,Someone gives the corgis food. The corgis,look up at her.,marches up to the cafe.,gestures for him to stop.,are three in wild canoes.,rumbles out of the house.,gold0-orig,pos,unl,unl,unl,pos,Someone gives the corgis food.,The corgis\nlsmdc3078_THE_WATCH-36556,14307,A girl jumps on their bed. Someone,knocks on a front door.,arrives at a shed in the water.,puts her leg on her and catches it.,rider hangs in the air.,does a gymnastic routine inside the balance beam.,gold1-reannot,pos,unl,unl,unl,unl,A girl jumps on their bed.,Someone\nlsmdc3078_THE_WATCH-36556,14306,Firefighters watch the group head into the wreckage. Someone,photographs chelsea and her prom date.,turn to face someone.,blasts someone's hand.,blows on seagulls from a blow.,,gold1-reannot,unl,unl,unl,unl,n/a,Firefighters watch the group head into the wreckage.,Someone\nanetv_3Y46yorcd5Q,12054,A large wave crashes in the ocean and a man rides down the face on body board. surfers,ride waves in the ocean.,ride their boats in the water with paddles.,go down the river on a river.,pass crashing into each other.,,gold0-orig,pos,unl,unl,pos,n/a,A large wave crashes in the ocean and a man rides down the face on body board.,surfers\nlsmdc0011_Gandhi-52522,12218,\"At last he rises, and the noise and applause increase to something like chaos. In close shot we see other British soldiers watching on the perimeter of the crowd and they\",are now made even more wary by the enthusiasm of this greeting.,are in perfect sync of fighting with each other in the sheer measure of a scoring shot.,\"are all in strength, their heads shaking wildly.\",head to the barricade and begin to fuss about the telegram.,,gold0-orig,pos,unl,pos,pos,n/a,\"At last he rises, and the noise and applause increase to something like chaos.\",In close shot we see other British soldiers watching on the perimeter of the crowd and they\nlsmdc0011_Gandhi-52522,12221,Now someone raises a third finger. And the crowd,breaks into stamping and applause.,receive his friends' team too.,deadbolt her own scooter.,\"fights, leaving his mind dubiously.\",\"cheers wildly, he rises before a black and white fire escape from the taj in home.\",gold0-orig,pos,unl,unl,unl,pos,Now someone raises a third finger.,And the crowd\nlsmdc0011_Gandhi-52522,12217,\"There is applause and noise, but someone does not acknowledge it; she simply sits cross - legged behind someone, who is talking with people. At last he rises, and the noise and applause\",increase to something like chaos.,rises from him without taking his eyes off.,looks out of the corridor.,comes to the background.,,gold0-orig,pos,unl,unl,pos,n/a,\"There is applause and noise, but someone does not acknowledge it; she simply sits cross - legged behind someone, who is talking with people.\",\"At last he rises, and the noise and applause\"\nlsmdc0011_Gandhi-52522,12229,In the chaos of the Third Class we see someone coming out of a section of the coach. He,is carrying a baby wrapped in rags.,has to edge his way off of the lectern.,takes her by the locket.,leans against a wall and gazes at a ceiling.,,gold0-orig,pos,unl,unl,pos,n/a,In the chaos of the Third Class we see someone coming out of a section of the coach.,He\nlsmdc0011_Gandhi-52522,12227,\"Despite the Indian tunic he now wears he can not help but look and act like the incisive, patrician lawyer he is under the skin. As he\",moves through the crowded platform.,\"spies someone with a sharp graciously of the coin, tears rolls onto his pant knee and falls face down.\",\"passes a box of cards, squares nestling in front of him.\",lays helpless in the floor.,walks up to the table he returns.,gold0-orig,pos,unl,unl,unl,unl,\"Despite the Indian tunic he now wears he can not help but look and act like the incisive, patrician lawyer he is under the skin.\",As he\nlsmdc0011_Gandhi-52522,12225,\"There is an excited stir; he silences it. As suitcoats, shirts, vests, trousers,\",are flung into a pile.,\"bags, trash, lather men start matronly.\",start running muddy someone.,\"blue isabel, cars, etc.\",\"bitter obese, hanging stock - still.\",gold0-orig,pos,unl,unl,unl,unl,There is an excited stir; he silences it.,\"As suitcoats, shirts, vests, trousers,\"\nlsmdc0011_Gandhi-52522,12228,He reaches for the bags again. In the chaos of the Third Class we,see someone coming out of a section of the coach.,see the civilian write in their survival book.,see the score for chairman.,see a pair of welding logos before them.,see someone point his wand and hit someone in the face.,gold0-orig,pos,unl,unl,unl,pos,He reaches for the bags again.,In the chaos of the Third Class we\nlsmdc0011_Gandhi-52522,12219,\"We intercut with the crowd, listening raptly. Someone\",holds up one finger.,is still to his instrument.,\"tosses someone into a building, then turns upside down.\",\"is in a podium, first.\",walks slowly to medical - field.,gold0-orig,pos,unl,unl,unl,unl,\"We intercut with the crowd, listening raptly.\",Someone\nlsmdc0011_Gandhi-52522,12223,\"Someone lets it run for a time, then stills it with the one small gesture as before. This\",has sobered the audience somewhat.,struggles close to the rack of someone's stuff.,\"bends as he releases some puzzle, in the heart, it sits back to someone.\",jump over and lie on the pavement as the cup end.,\"a tee - shirt, someone tumbles in a seat beside her.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone lets it run for a time, then stills it with the one small gesture as before.\",This\nlsmdc0011_Gandhi-52522,12224,This has sobered the audience somewhat. Now he,looks out across them as though seeking something.,sits alone wearing a tabby mouse and talking.,\"tosses her out of the bath, trying to stay awake.\",moans on the floor from the tent.,has seen someone laying on the bed.,gold0-orig,pos,unl,unl,unl,unl,This has sobered the audience somewhat.,Now he\nlsmdc0011_Gandhi-52522,12216,\"It is the end of her speech and she makes the pranam and turns away. There is applause and noise, but someone does not acknowledge it; she simply\",\"sits cross - legged behind someone, who is talking with people.\",shakes her head disapprovingly and smiles about her as she holds one finger to her mouth.,does n't hear what she is saying.,\"shakes it, softly chats across the street, at the events of a world.\",looks up toward two.,gold1-orig,pos,unl,unl,unl,unl,It is the end of her speech and she makes the pranam and turns away.,\"There is applause and noise, but someone does not acknowledge it; she simply\"\nlsmdc0011_Gandhi-52522,12230,He is carrying a baby wrapped in rags. The child's mother with two little ones hanging on her,has followed him out.,prevents a cold gesture.,trolley with tree limbs sitting.,stick stand waiting around the car.,neck is decorating it.,gold0-orig,pos,unl,unl,unl,unl,He is carrying a baby wrapped in rags.,The child's mother with two little ones hanging on her\nlsmdc0011_Gandhi-52522,12220,\"Neither of these goals is easy, and the audience reaction shows it. Now someone\",raises a third finger.,uses the phone from the motel office.,sees someone's response to the angle of the sun.,bends so two men dance round the girl's waist.,is not an emerald - colored man in her late twenties.,gold0-reannot,pos,unl,unl,unl,unl,\"Neither of these goals is easy, and the audience reaction shows it.\",Now someone\nanetv_-vPshfXc1fc,17345,A man is welding a circular metal piece. A green light,appears out of no where.,\"glows inside the glass, smashing through it.\",shines from the light.,is in front of the van.,shines a knife across his nose.,gold0-reannot,pos,unl,unl,unl,unl,A man is welding a circular metal piece.,A green light\nanetv_5fW_2c_kKfc,13120,A group of girls stand around a large gym with a volleyball net in the middle and begin playing. One,swings the ball back to the other side and push the ball back and fourth.,person stands on top of the court in a large classroom holding sticks and doing various tennis goals.,of them play the hockey against her.,hit the ball back and forth to the ball.,,gold0-orig,pos,unl,unl,pos,n/a,A group of girls stand around a large gym with a volleyball net in the middle and begin playing.,One\nanetv_5fW_2c_kKfc,13121,One swings the ball back to the other side and push the ball back and fourth. The girls,continue playing volleyball and cheer in the end when one side wins.,\"go, trying to hit the shuffleboard back followed by a person and a blow other player.\",continue playing with one another and end with one another.,take the ball tape into a dune and continue playing the game.,constantly throws push back and fourth while one catches the end of the ball.,gold0-orig,pos,unl,unl,unl,unl,One swings the ball back to the other side and push the ball back and fourth.,The girls\nanetv_5fW_2c_kKfc,6113,One girl bounces a ball and leads into a game of volleyball. The girls,continue to play with one another as the camera pans around and watches their movements.,continue to play and ends with the team coaches up behind the first girl.,continue dancing with one another while spinning and laughing to one another.,continue spinning and jumping into the pool while the camera zooms in.,throw balls at the ball while another girl plays the game.,gold1-orig,pos,unl,unl,unl,unl,One girl bounces a ball and leads into a game of volleyball.,The girls\nanetv_5fW_2c_kKfc,6112,A large group of girls are seen standing around and speaking to one another. One girl,bounces a ball and leads into a game of volleyball.,pans her around the table and leads into her standing at the end.,speaks to the camera and continues playing.,attempts to grab a ball while speaking to one another.,turns on the swing while other women speak to the girls.,gold0-reannot,pos,unl,unl,unl,pos,A large group of girls are seen standing around and speaking to one another.,One girl\nanetv_yX_DJiboktI,4163,We see two women performing a baton twirling routine in a gym. One lady,does a handstand the other holds her legs.,does a handstand and swings his legs the dance floor.,shakes her hands and spins her as well as catching the twirl.,glides their feet to a beam and squats down.,,gold0-orig,pos,unl,pos,pos,n/a,We see two women performing a baton twirling routine in a gym.,One lady\nanetv_yX_DJiboktI,4167,One lady has both baton. They,throw the batons in the sky and twirl.,shows the other leg she was holding.,fly dancing are in all area and she is hitting the target and occasionally practicing a action but.,\"in the body of flips and she plays, she seems quite an alcoholic sour.\",,gold0-orig,pos,unl,unl,unl,n/a,One lady has both baton.,They\nanetv_yX_DJiboktI,4164,One lady does a handstand the other holds her legs. They,twirl the batons high in the sky.,lady then leaps over to give a 360 before going into the edge of a horse to prepare the batons.,continue playing until one throws her baton on the ground.,closing her mouth plays softball.,explain a handshake for the video class they talk about this.,gold0-orig,pos,unl,unl,unl,unl,One lady does a handstand the other holds her legs.,They\nanetv_yX_DJiboktI,4162,We see a dark opening screen. We,see two women performing a baton twirling routine in a gym.,see a man hanging up a tree in a yard.,see the title words a white screen.,see a person playing tennis in a field with a lot of people watching.,see people on the beach.,gold1-orig,pos,unl,unl,unl,unl,We see a dark opening screen.,We\nanetv_yX_DJiboktI,4165,They twirl the batons high in the sky. A person,walks in front of the camera.,dances the girls off her knees.,captures the back of two attendant.,throws a ball on the prince's right.,,gold1-orig,pos,unl,unl,unl,n/a,They twirl the batons high in the sky.,A person\nanetv_yX_DJiboktI,16244,Two women are seen holding a pose in the middle of a gym. They,begin performing a routine using batons and others watching on the side.,stand and watch from the angles.,continues to play straight the camera while the camera captures their movements.,move around the stage and perform a dance routine while spinning around and stretching.,,gold0-orig,pos,unl,unl,unl,n/a,Two women are seen holding a pose in the middle of a gym.,They\nanetv_yX_DJiboktI,16245,They begin performing a routine using batons and others watching on the side. The girls,continue dancing together with the batons and end by holding a pose.,continue to dance while dancing and jumps and performs several flips jumping rope routine in the air.,begin performing the routine with one another performing several tricks with the stick and ends with them walking in the middle.,complete their routine as their routine resumes dancing moves with the queue.,continue dancing and speaking to the camera while others watch.,gold0-orig,pos,unl,unl,unl,pos,They begin performing a routine using batons and others watching on the side.,The girls\nanetv_sY31L_r7dsk,16805,A man dumps something black onto his food out of a bowl. He,begins to stir the food with a fork and a spoon.,comes up and shares with a basket of food and food.,then raises a second bag and sets it on the screen of the table.,holds out his hands and walks up.,,gold0-orig,pos,unl,unl,unl,n/a,A man dumps something black onto his food out of a bowl.,He\nanetv_sY31L_r7dsk,1786,A person pours dressing into a bowl. They,stir the food in the bowl on the table.,hold the dough in cream and dip them in a cup.,change ingredients in a bucket.,put the dough into a small bowl.,,gold1-orig,pos,unl,unl,pos,n/a,A person pours dressing into a bowl.,They\nanetv_sY31L_r7dsk,1785,A person sets a plate onto a table. A person,pours dressing into a bowl.,pours one into a pan with oil.,puts something on the pumpkin.,puts water on a pot.,drinks from a hot cup.,gold1-orig,pos,unl,unl,unl,pos,A person sets a plate onto a table.,A person\nanetv_IlCsGkFnRkc,11865,The people begin to add ornments to the Christmas tree. A boy,pops bubble wrap on the floor.,approaches to talk about how to make a castle.,shows credits to eat.,takes the note from someone.,,gold0-orig,pos,unl,unl,pos,n/a,The people begin to add ornments to the Christmas tree.,A boy\nanetv_IlCsGkFnRkc,11867,A boy rides around on a toy. A kid,lays under the tree putting things on it.,walks with a hanging rope frame.,holds onto the sand planks up and looks at the groups.,watches with monkey bars on his hands as others watch on the side.,climbs out and returns to eating something.,gold1-orig,pos,unl,unl,unl,pos,A boy rides around on a toy.,A kid\nanetv_IlCsGkFnRkc,13451,Kids and adults are running around a room. They,are putting decorations on a christmas tree.,start putting something on with a long towel.,get to their feet.,are on chairs raise his hands and feet around.,are with the boys playing a game of foosball.,gold0-orig,pos,unl,unl,unl,pos,Kids and adults are running around a room.,They\nanetv_IlCsGkFnRkc,13452,They are putting decorations on a christmas tree. They,hang lights and then the ornaments.,use a christmas tree in a park.,pick up a small star and face flowers on the tree.,put up ornaments on the tree.,,gold0-orig,pos,unl,pos,pos,n/a,They are putting decorations on a christmas tree.,They\nanetv_IlCsGkFnRkc,11869,The lady and a boy arrange the angel on top of the tree. The lady,sets up a display table near the tree.,shakes branches back on the paper.,uses some decorations in the tree.,paints a yellow tree with sparkles.,is one decorating the christmas tree.,gold0-orig,pos,unl,unl,pos,pos,The lady and a boy arrange the angel on top of the tree.,The lady\nanetv_IlCsGkFnRkc,11866,A boy pops bubble wrap on the floor. A boy,rides around on a toy.,takes the shower and faces a dog standing on a hose.,smooths the paper over and pins it against a tile.,takes a swing and swings an ax.,throws a bowling ball to a girl.,gold0-orig,pos,unl,unl,unl,unl,A boy pops bubble wrap on the floor.,A boy\nanetv_IlCsGkFnRkc,11868,A kid lays under the tree putting things on it. The lady and a boy,arrange the angel on top of the tree.,use the cloth to put the tree down.,hold pumpkins with cigarette sticks.,walk to the sidewalk and lay paper down on the grass.,stand putting up an christmas tree in the yard.,gold1-reannot,pos,unl,unl,unl,unl,A kid lays under the tree putting things on it.,The lady and a boy\nanetv_RgeVltfPDXQ,14365,The boy breaks the pinata open and candy spills on the ground. A woman,runs up and adjusts the pinata.,\"is showing him how to walk, stopping on a rope.\",throws a frisbee for the camera during a complete time.,punch two pins on the blindfolded man shoots the girl on the stick and the pinata falls on the wood floor.,starts swinging with a bat.,gold1-orig,pos,unl,unl,unl,pos,The boy breaks the pinata open and candy spills on the ground.,A woman\nanetv_RgeVltfPDXQ,14364,Children swings a broom handle at a pinata in a backyard. The boy,breaks the pinata open and candy spills on the ground.,breaks up the pinata and attempts to hold him up.,sits on his lap.,ducks out of sight.,,gold0-orig,pos,unl,unl,pos,n/a,Children swings a broom handle at a pinata in a backyard.,The boy\nanetv_RgeVltfPDXQ,14367,A woman runs up to get the broom stick but dodges to not get hit by the blindfolded child. The woman,guides the boy up who is blindfolded toward the tree.,knocked the back up and is spun around.,washes some try to catch them and then gets back back on.,hit the floor by jumping off against a log on the left left.,pushes the adopted boy with her child on the swing as they lower back on the slide.,gold0-orig,pos,unl,unl,unl,unl,A woman runs up to get the broom stick but dodges to not get hit by the blindfolded child.,The woman\nanetv_RgeVltfPDXQ,14366,A woman runs up and adjusts the pinata. A woman,runs up to get the broom stick but dodges to not get hit by the blindfolded child.,hits a wood ball on the ground.,hits the ball in a grass bat.,runs a skateboard around the tail.,is shown in front of the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman runs up and adjusts the pinata.,A woman\nanetv_IcDadC2tw5c,3356,A person in dark clothing blows leaves on a piece of property in front of two open garage doors. Another person,moves with the camera as they watch from a window in an elevated room against a white window sill.,uses a large brush to clean the bottom of the table and then shine the furniture exterior.,is seen hammering down the wall with two girls in frame.,is seen walking in to wooden places and leads into a man wearing a yellow shirt and a hat.,,gold0-orig,pos,pos,pos,pos,n/a,A person in dark clothing blows leaves on a piece of property in front of two open garage doors.,Another person\nanetv_IcDadC2tw5c,3355,A person watches another person using a leaf blower in a yard from an elevated window. A person in dark clothing,blows leaves on a piece of property in front of two open garage doors.,pulls the snow's claws over the bare shingles.,blows on a water hookah.,continues to walk across the lawn while still pointing and riding and laying in the tree.,is seen in a close up wipe with some stacked around it.,gold0-orig,pos,unl,unl,unl,unl,A person watches another person using a leaf blower in a yard from an elevated window.,A person in dark clothing\nanetv_IcDadC2tw5c,3357,Another person moves with the camera as they watch from a window in an elevated room against a white window sill. The person blowing the leaves,moves around the yard and continues to do lawn maintenance.,quickly into the pelted.,cranes his head paws around and neck.,to reveal the shape dipping in.,hits the wall and demonstrating how to use it.,gold0-orig,pos,unl,unl,unl,pos,Another person moves with the camera as they watch from a window in an elevated room against a white window sill.,The person blowing the leaves\nlsmdc3080_THIS_MEANS_WAR-37019,3155,The rugged brother slams someone against the chopper. But someone,blocks his strikes and punches him in the face.,keeps toting his ax holster.,turns his face with the broken spear.,clings to a web.,uses his weapon and shoots through a window as many doors tumble over the roof.,gold0-orig,pos,unl,unl,unl,pos,The rugged brother slams someone against the chopper.,But someone\nlsmdc3080_THIS_MEANS_WAR-37019,3157,\"Someone catches himself on the roof's edge as he tumbles off. Someone, his older brother\",hands him a gun then leaps off the building.,sets a gas cap on a bench.,\", peers through the windows to the off level.\",breezes out of her kitchen and up to someone.,\", has passed in front of the veranda.\",gold1-orig,pos,unl,unl,unl,pos,Someone catches himself on the roof's edge as he tumbles off.,\"Someone, his older brother\"\nlsmdc3080_THIS_MEANS_WAR-37019,3166,\"The vehicle careens into another car. As someone climbs back onto the helipad, someone\",stares down at the destruction.,sees a van with the rear driver.,heads over to a parked waiting car.,\"has disappeared from the roof, towards the lake.\",,gold1-orig,pos,unl,unl,unl,n/a,The vehicle careens into another car.,\"As someone climbs back onto the helipad, someone\"\nlsmdc3080_THIS_MEANS_WAR-37019,3153,\"Leaping in from the opposite side, someone swings from the door and kicks someone back. The briefcase of money\",opens as it hits the ground.,is broken in the breast pocket.,stops in the back seat.,is being caught by someone.,lies on the floor as someone strides through the large dining room.,gold0-orig,pos,unl,unl,pos,pos,\"Leaping in from the opposite side, someone swings from the door and kicks someone back.\",The briefcase of money\nlsmdc3080_THIS_MEANS_WAR-37019,3147,\"Using the captured guard as a shield, someone advances. As enemy fire, takes his captive out, someone\",dives behind the fallen body and shoots.,blows another goblin's wand.,darts wildly through someone's lair.,blasts the surface of his spear with armed mallet and feet.,emerges from the ships' path.,gold0-orig,pos,unl,unl,unl,pos,\"Using the captured guard as a shield, someone advances.\",\"As enemy fire, takes his captive out, someone\"\nlsmdc3080_THIS_MEANS_WAR-37019,3159,\"Leaping onto the helipad, someone shoots a bald guard. Someone\",aims the gun at someone.,peers in from the train.,hugs the stubby man.,peers at a building surrounds an ominous clock.,lights up onto the beam.,gold0-orig,pos,unl,unl,unl,unl,\"Leaping onto the helipad, someone shoots a bald guard.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37019,3168,\"The rugged someone finds the patch of fabric torn from someone's suit, still in his brother's clinched hand. He\",takes it then lifts his gaze to the helipad.,\"stares down to the sleeping kids, then shifts his woeful gaze.\",positions at his window and faces his father who slowly raises his hand.,smiles towards the crowd.,swings it through a bar and onto another balcony.,gold0-orig,pos,unl,unl,unl,unl,\"The rugged someone finds the patch of fabric torn from someone's suit, still in his brother's clinched hand.\",He\nlsmdc3080_THIS_MEANS_WAR-37019,3164,\"Someone grabs someone's sleeve for balance but it rips and he plummets off the roof. Drifting to the ground, the older brother\",watches someone crash into a car on the street below.,offers a bloody grins.,\"picks up a ax, then attaches it to his post.\",reaches his own office.,presses his head to one side.,gold0-orig,pos,unl,unl,unl,pos,Someone grabs someone's sleeve for balance but it rips and he plummets off the roof.,\"Drifting to the ground, the older brother\"\nlsmdc3080_THIS_MEANS_WAR-37019,3167,\"As someone climbs back onto the helipad, someone stares down at the destruction. He\",glances up at the skyscraper then moves to someone's body which lies sprawled on the car's crushed roof.,puts his hands on someone's stomach.,\"lifts someone in his arms, then seizes him roughly.\",\"misses another car and gets, followed by someone, who also fires sixty - three.\",falls out of the room.,gold0-orig,pos,unl,unl,unl,unl,\"As someone climbs back onto the helipad, someone stares down at the destruction.\",He\nlsmdc3080_THIS_MEANS_WAR-37019,3161,\"A dark - haired guard attacks someone who blocks him then knees him. Winding up, he\",punches the guy out.,swings and flips tire up.,scrambles over his head.,jumps into a gray plastic room.,bangs against the wood wall.,gold0-orig,pos,unl,unl,unl,unl,A dark - haired guard attacks someone who blocks him then knees him.,\"Winding up, he\"\nlsmdc3080_THIS_MEANS_WAR-37019,3150,\"He slides on his knees into a guard, knocking him over. Someone\",shoots three guards as he runs to the helipad.,emerges behind a high wall and stares at a man standing in the mirror.,\"aims a rifle hard at himself, thuds into his chest.\",enters from the rising.,,gold0-orig,pos,unl,unl,unl,n/a,\"He slides on his knees into a guard, knocking him over.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37019,3162,\"Winding up, he punches the guy out. He\",grabs someone who drops the case with the device over the roof.,lands in a flurry of flaming mess.,\"nuzzles a hair, over the backseat.\",fights off the hobbit and talks to himself.,,gold1-orig,pos,unl,unl,pos,n/a,\"Winding up, he punches the guy out.\",He\nlsmdc3080_THIS_MEANS_WAR-37019,3152,\"At the chopper, someone passes his brother a backpack. Leaping in from the opposite side, someone\",swings from the door and kicks someone back.,grabs the folded stick.,draws a sharp breath and lets go of someone's drag.,flings the narrow little boy into a parka.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the chopper, someone passes his brother a backpack.\",\"Leaping in from the opposite side, someone\"\nlsmdc3080_THIS_MEANS_WAR-37019,3151,\"Someone shoots three guards as he runs to the helipad. At the chopper, someone\",passes his brother a backpack.,drops the video screen.,reaches up the wood as he ascends a spiral staircase.,watches from a below deck and leslie.,peers through polished metal at someone.,gold1-orig,pos,unl,unl,unl,unl,Someone shoots three guards as he runs to the helipad.,\"At the chopper, someone\"\nlsmdc3080_THIS_MEANS_WAR-37019,3165,\"Drifting to the ground, the older brother watches someone crash into a car on the street below. The vehicle\",careens into another car.,crashes up over the side.,starts off in the diner.,moves in the tunnel.,stalls out after them.,gold1-orig,pos,unl,unl,pos,pos,\"Drifting to the ground, the older brother watches someone crash into a car on the street below.\",The vehicle\nlsmdc3080_THIS_MEANS_WAR-37019,3158,\"Someone, his older brother hands him a gun then leaps off the building. Leaping onto the helipad, someone\",shoots a bald guard.,pulls someone into a sprint.,dodges a web and tries to pull himself off.,glances away as the destroyer lands and falls.,sees someone's body fall.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone, his older brother hands him a gun then leaps off the building.\",\"Leaping onto the helipad, someone\"\nlsmdc3080_THIS_MEANS_WAR-37019,3163,Someone snatches someone's backpack. Someone grabs someone's sleeve for balance but it rips and he,plummets off the roof.,\"stands there, looking closer to the man.\",lands on his feet.,spins up to his feet.,catches it and she crumbles.,gold1-reannot,pos,unl,unl,unl,pos,Someone snatches someone's backpack.,Someone grabs someone's sleeve for balance but it rips and he\nlsmdc3080_THIS_MEANS_WAR-37019,3170,An aerial view shows him moving away from the crash as bystander's crowd closer. Someone and someone,watch from the helipad.,run to the end of the water digging ahead.,suddenly dive away from the titanic.,run beside the wrecked in the volvo outside.,glares up at three.,gold1-reannot,pos,unl,unl,unl,unl,An aerial view shows him moving away from the crash as bystander's crowd closer.,Someone and someone\nlsmdc3080_THIS_MEANS_WAR-37019,3156,\"As someone throws someone down, the older brother kicks him. Someone\",catches himself on the roof's edge as he tumbles off.,\"threatens him, flings him down the garbage to make a path.\",lays the boys back in position in the yard and slams someone to the ground.,\"other people turn, slams him back into the trunk, and removes his chair hard to a tree.\",bows with a grateful smile.,gold0-reannot,pos,unl,unl,unl,pos,\"As someone throws someone down, the older brother kicks him.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37019,3146,\"Heading toward glass doors onto the helipad, the rugged brother spots someone's reflection. He\",turns and shoots into the air.,\"twinkie cover his embarrassment, and shakes his iron hand in french.\",passes a pink - bob man outside.,reacts to the mention of the sinking bowing.,looks at the older boy.,gold1-reannot,pos,unl,unl,unl,pos,\"Heading toward glass doors onto the helipad, the rugged brother spots someone's reflection.\",He\nanetv_osaJxzwVt6Q,8394,Kid is standing in front of stage playing congas. behind him,is a girl playing the tambourine and a boy playing the triangle.,is a jazz video of the boy man in a bowling and holds a ball.,are people in the back and snowboards.,is someone in another room while cars walk.,a man plays lacrosse with the audience watching the riders play and playing with the crowd.,gold0-orig,pos,unl,unl,unl,unl,Kid is standing in front of stage playing congas.,behind him\nanetv_YJxqF6aSs7s,12592,A man is holding a camera as he stands talking beside a lake. He,\"goes through tunnels, walks along bridges, and stands over cliffs.\",lets go of a rope and begins to climb up on it.,has skis in a small canoe.,\"touches the dart board repeatedly and steps toward the screen, doing the steps backwards.\",is seated at the center of the water.,gold0-reannot,pos,unl,unl,unl,unl,A man is holding a camera as he stands talking beside a lake.,He\nanetv_YJxqF6aSs7s,12593,\"He goes through tunnels, walks along bridges, and stands over cliffs. He\",drives down a road and records rafting on a white water river.,\"circles the top of a plane that he has used in his cruises, playing along with a crash.\",sea lies quietly near his feet.,\"blows one man up, and the pilots continue to pass the clients.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"He goes through tunnels, walks along bridges, and stands over cliffs.\",He\nanetv_YJxqF6aSs7s,12594,He drives down a road and records rafting on a white water river. People,are shown diving into deep waters off of cliffs before rafting again.,are riding from the pond through another.,sit on intertubes as a mountain also.,stay there while rollerblading.,,gold0-reannot,pos,unl,unl,unl,n/a,He drives down a road and records rafting on a white water river.,People\nanetv_yRup8RDsCzk,3656,Two men are doing martial arts with others around them watching. Many other men,are shown doing several flips and tricks around each other.,fall off the pipe and walk into a cameraman watching them.,are playing on the side with their legs and legs in front of them.,play volleyball back and fourth across the room.,walk behind the kids try to climb as a boy in a blue background cheers.,gold1-orig,pos,unl,unl,unl,unl,Two men are doing martial arts with others around them watching.,Many other men\nanetv_yRup8RDsCzk,3657,Many other men are shown doing several flips and tricks around each other. Two men,flip near each other while others around them watch.,are doing various tricks with one another followed by more people riding along the side.,perform zumba video on the beam and the gymnasts cheer behind them.,are then shown doing different tricks and demonstrating with scuba owners.,,gold0-orig,pos,unl,unl,unl,n/a,Many other men are shown doing several flips and tricks around each other.,Two men\nlsmdc1047_Defiance-91624,13138,\"Someone takes a glug of the confiscated vodka, and goes to meet her. Someone\",smiles and lowers her eyes.,\"looks uneasy, trying to answer it.\",goes to answer the telephone.,stands and glares out at her.,\"walks after a small desk, carrying a tray of fresh clothes in one arm.\",gold1-reannot,pos,unl,pos,pos,pos,\"Someone takes a glug of the confiscated vodka, and goes to meet her.\",Someone\nlsmdc0027_The_Big_Lebowski-62784,9062,Someone gropes back in the toilet with one hand. Someone's hand,comes out of the toilet bowl with his sunglasses.,slides down the side of the sketch.,moves to the water surface for cover.,falls out of someone's grasp.,holds the back of his hand.,gold0-orig,pos,unl,unl,unl,unl,Someone gropes back in the toilet with one hand.,Someone's hand\nlsmdc0027_The_Big_Lebowski-62784,9064,The blond man drops the ball which pulverizes more tile. The two men,look at each other.,hit the ball and then they climb on the ground and jump with it.,grab each other and compete into a winning soccer match.,grab each other and toss it backwards.,hurry to the center of the table.,gold0-orig,pos,unl,unl,pos,pos,The blond man drops the ball which pulverizes more tile.,The two men\nlsmdc0027_The_Big_Lebowski-62784,9065,The two men look at each other. Someone,pulls his sunglasses down his nose with one finger and peeks over them.,walks up to her.,struggles to act casual.,\"lazily glares at the other agent, who regards him squarely.\",lifts someone's binoculars to look at him.,gold0-orig,pos,unl,pos,pos,pos,The two men look at each other.,Someone\nlsmdc0027_The_Big_Lebowski-63067,5147,\"He tips forward, spilling his drink off the table. He\",\"squints at someone, who swims in and out of focus.\",\"lands in a round puddle of blood at the hall to the floor, can we get to someone's height.\",takes off his hat and walks off.,looks into someone's face.,,gold0-orig,pos,unl,unl,pos,n/a,\"He tips forward, spilling his drink off the table.\",He\nlsmdc0027_The_Big_Lebowski-63067,5146,\"He is joined on either side by someone and the blond man, all three men looking grimly down at someone. He\",\"tips forward, spilling his drink off the table.\",\"grins as she turns around among piles of comic books, leaves and passes it all outfitted, it appears at people's.\",\"does not look up at them when he is truly angry, and bumps someone's sudden strength.\",is being interviewed by a waiter.,,gold1-orig,pos,unl,unl,pos,n/a,\"He is joined on either side by someone and the blond man, all three men looking grimly down at someone.\",He\nlsmdc0027_The_Big_Lebowski-63067,5145,\"He is getting to his feet, but sways woozily. He\",\"is joined on either side by someone and the blond man, all three men looking grimly down at someone.\",sags with his hand near the tail.,stands at his other and watches as he walks in and out of frame.,wears an aerial demeanor.,throws a tight rope over the open railing before jumping back into the precipice.,gold0-reannot,pos,unl,unl,unl,unl,\"He is getting to his feet, but sways woozily.\",He\nanetv_xeFS0RuvVGA,15126,\"A group of boys play catch in an outdoor pool with a yellow ball, throwing the ball to each other and and then throwing the ball out of the pool to an unseen party. The ball is thrown back into the pool and the boys\",proceed to throw it back out again.,stand by the side and throw the ball as a runner comes into the field.,swim facing another in another game of hop scotch.,run along and catch the puck once more.,are for the score then their dad gets a goal from scoring.,gold0-orig,pos,unl,unl,unl,unl,\"A group of boys play catch in an outdoor pool with a yellow ball, throwing the ball to each other and and then throwing the ball out of the pool to an unseen party.\",The ball is thrown back into the pool and the boys\nanetv_xcSWHI3K0KA,13882,He throws it as hard as he can. We,see him throw again in slow motion.,\"violently, a tube of light comes down in a curly - haired mannequin.\",has stopped in place where the car has parked and takes out the long rope.,\", turns the mike on as he walks out of the parlor.\",see his money on the desk.,gold0-orig,pos,unl,unl,unl,pos,He throws it as hard as he can.,We\nanetv_xcSWHI3K0KA,13881,A man is running on a track with a javelin. He,throws it as hard as he can.,high jump gymnastics demonstrations are shown as the surfers jump up and down.,then runs past him and pulls himself up in the air.,practices for fells on the field.,is standing beside him holding the mallet.,gold0-orig,pos,unl,unl,unl,unl,A man is running on a track with a javelin.,He\nanetv_7vECSCWxbDk,5234,A man plugs a cable into his guitar. He,begins playing the guitar.,stops showing off his boxers.,pulls himself up and puts on its owners.,stops and claps his hand.,stops to play the saxophone.,gold0-orig,pos,unl,unl,pos,pos,A man plugs a cable into his guitar.,He\nanetv_7vECSCWxbDk,5235,He begins playing the guitar. He,looks up and speaks.,moves it back and forth as he continues to play the accordian.,is playing a guitar on his back.,stops playing his violin.,continues dancing around the instrument.,gold1-orig,pos,unl,unl,pos,pos,He begins playing the guitar.,He\nanetv_7vECSCWxbDk,5237,He goes back to playing his guitar. He,looks up again and speaks as he makes hand gestures.,commands from different game.,then stands and talks to the camera.,stops turning a harmonica in his hands and speaks to the camera.,plays the harmonica.,gold0-orig,pos,unl,unl,unl,unl,He goes back to playing his guitar.,He\nanetv_7vECSCWxbDk,5236,He looks up and speaks. He,goes back to playing his guitar.,\"looks down, pats someone on the shoulder, turns back off the tv and climbs on from the lifeboat.\",rotates his spinning webs.,reports a long book.,sets out a fake dr.,gold0-orig,pos,unl,unl,unl,unl,He looks up and speaks.,He\nanetv_7vECSCWxbDk,5239,He begins playing his guitar again. He,glides his finger along his guitar.,continues playing the saxophone.,continues to play the game.,bends down and starts playing the bagpipes.,\"continues cleaning the lights, facing the camera.\",gold0-orig,pos,unl,unl,unl,unl,He begins playing his guitar again.,He\nanetv_7vECSCWxbDk,5238,He looks up again and speaks as he makes hand gestures. He,begins playing his guitar again.,passes over his shoulder to prevent him from tying the other.,\"continues talking again, at the same time.\",\"takes the time with someone, then looks at the camera.\",uses a small brush to wipe through the hedge.,gold1-orig,pos,unl,unl,pos,pos,He looks up again and speaks as he makes hand gestures.,He\nlsmdc1059_The_devil_wears_prada-98938,17435,\"Someone looks over at someone incredulously. Up on the podium, someone\",smiles and applauds someone as someone eyes her coolly.,lays on the ice and watches.,returns to his associate.,kisses someone's father shoulder.,,gold1-orig,pos,unl,unl,unl,n/a,Someone looks over at someone incredulously.,\"Up on the podium, someone\"\nlsmdc1059_The_devil_wears_prada-98938,17438,The car drives off down the chic Parisian street. Someone,stares out of the window.,enters a gaudy chamber and a crowd is heard in the side.,heads past a rental room.,\"enters the street, joking about, leaving the uniformed police appropriate in a position across the front of the car.\",slowly turns to regard herself in her mirror.,gold0-orig,pos,unl,unl,unl,pos,The car drives off down the chic Parisian street.,Someone\nlsmdc1059_The_devil_wears_prada-98938,17437,\"Someone fidgets in his seat. Later, someone\",\"gets into the back of a smart, black executive car, which is parked outside the venue.\",\"lies curled up in a bed, applying makeup to her belly.\",jogs up behind an approaching work bus.,jogs for an exit.,,gold0-orig,pos,unl,unl,pos,n/a,Someone fidgets in his seat.,\"Later, someone\"\nanetv_Tc8L-74Ilck,14439,A man is seen standing at the bottom of a hole while a man records him. Two men,are seen climbing along the hill and looking up to the camera.,are seen shooting a target and speaking to one another as well as motion action figures.,are seen playing squash on an indoor soccer court.,shown sitting on the ice and brushing the ice off of the objects.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen standing at the bottom of a hole while a man records him.,Two men\nanetv_ZeBrPKBGb_k,13986,Several clips are shown of people riding around on mountain bikes on a track. The camera,follows the group riding around the track while others stand on the side.,continues to show more shots of people walking down the road.,pans around the area and leads into kids riding down a ramp.,captures several lines of scenery of the people.,continues to push up areas around the yard while people watch on the side.,gold1-orig,pos,unl,pos,pos,pos,Several clips are shown of people riding around on mountain bikes on a track.,The camera\nanetv_ZeBrPKBGb_k,13905,A black background with text appears multiple times while cutting out periodically to show bike riders taking small jumps. The camera,cuts to multiple scenes of various riders taking small jumps.,shows a rest of a routine and demonstrates the proper way to move in acrobatic aspects.,is in front of the racing sections and stops.,zooms in with an advertisement.,,gold0-orig,pos,unl,pos,pos,n/a,A black background with text appears multiple times while cutting out periodically to show bike riders taking small jumps.,The camera\nanetv_ZeBrPKBGb_k,13906,The camera cuts to multiple scenes of various riders taking small jumps. On one jump in particular the camera,slows down a jump where a rider almost hits another but the collision is avoided.,\"keeps going, several more involved in the game.\",does the same and the video ends with the closing credits shown on the screen.,\"flashes to a large screen, title and words on awarded steams soprano.\",practices more close ups pictures of clips between clips attacking the sri.,gold0-orig,pos,unl,unl,unl,unl,The camera cuts to multiple scenes of various riders taking small jumps.,On one jump in particular the camera\nlsmdc3064_SPARKLE_2012-3813,7955,He smiles and turns back around. someone,\"stands and spreads her coat's lapel, creating a screen behind which someone can change.\",\"climbs up, pushing her way down into the suv.\",follows someone's mom through someone.,\"stands for a moment, then steps forward.\",slips out and takes someone's gun.,gold0-orig,pos,unl,unl,pos,pos,He smiles and turns back around.,someone\nlsmdc3064_SPARKLE_2012-3813,7954,Someone removes her jacket and sees a man leering at her. He,smiles and turns back around.,bends to grab her.,rests her hand on someone's shoulder.,faces the thugs with astonishment.,thrusts his guns at the man's throat.,gold0-orig,pos,unl,unl,unl,unl,Someone removes her jacket and sees a man leering at her.,He\nlsmdc3064_SPARKLE_2012-3813,7956,\"Gazing out the window, she smiles at the Filmore marquee which reads. The image\",fades to colorful blurry lights.,flips from tambourine over the slices.,shows one of hills and bushes before dismounting.,rolls over in the side.,is a photo of people.,gold0-orig,pos,unl,unl,unl,pos,\"Gazing out the window, she smiles at the Filmore marquee which reads.\",The image\nlsmdc3064_SPARKLE_2012-3813,7959,\"Now they tiptoe up a square spiral staircase in the dark. At the top, the woman in pink hesitates, then\",leads them down the hallway and into a bedroom.,motions for her to move through frame.,walks through the open door into a dim room.,notices a framed picture of the brunette.,,gold0-orig,pos,unl,pos,pos,n/a,Now they tiptoe up a square spiral staircase in the dark.,\"At the top, the woman in pink hesitates, then\"\nlsmdc3064_SPARKLE_2012-3813,7960,The hallway light suddenly comes on. The woman,enters and flicks the light switch on.,stands in back door with the envelope.,becomes aware of the tool.,pushes her trainers down the stairs.,\"slowly lowers the mask, lighting her face and smiling.\",gold0-orig,pos,unl,unl,unl,unl,The hallway light suddenly comes on.,The woman\nlsmdc3064_SPARKLE_2012-3813,7964,She smacks someone's forehead. The packed congregation,sits before the reverend in the pulpit.,watches their wives in grainy glee.,carries a letter bundle.,make their way toward the enormous rocks.,,gold0-orig,pos,unl,unl,pos,n/a,She smacks someone's forehead.,The packed congregation\nlsmdc3064_SPARKLE_2012-3813,7967,The old woman sits back. Someone,rolls his neck and sits up straight.,regards him with a stricken gaze.,gives a news news stare.,nods to two officers in the corridor.,views his family gather.,gold1-orig,pos,unl,unl,unl,unl,The old woman sits back.,Someone\nlsmdc3064_SPARKLE_2012-3813,7965,The packed congregation sits before the reverend in the pulpit. The three sisters,sit among the choir.,continue from the porch.,talk while seated at their table.,are on the sofa facing each other.,stop and stare at them.,gold0-orig,pos,unl,unl,unl,unl,The packed congregation sits before the reverend in the pulpit.,The three sisters\nlsmdc3064_SPARKLE_2012-3813,7966,\"The three sisters sit among the choir. In a pew, the manager\",sits with a stubble - faced man.,admires someone's trendy father mirror.,alongside the beer taps open and the camera stays behind.,sees someone watching the tv.,watches a white woman approach someone's side.,gold1-orig,pos,unl,unl,unl,pos,The three sisters sit among the choir.,\"In a pew, the manager\"\nlsmdc3064_SPARKLE_2012-3813,7958,Someone carefully closes the door and hurries after them. Now they,tiptoe up a square spiral staircase in the dark.,\"enter the amusement twilight, sharing a warm glow then go around one corner of the living room.\",enter the elevator on the opposite side of the house.,reach a door to a street where they get to their feet.,exit up a staircase.,gold1-reannot,pos,unl,unl,unl,unl,Someone carefully closes the door and hurries after them.,Now they\nlsmdc3064_SPARKLE_2012-3813,7957,The image fades to colorful blurry lights. Now the sisters,\"hurry up a quiet suburban driveway past a white sedan, and approach a side entrance.\",reach a sign and someone joins them across the hall to find someone stately softly in a cage.,chandeliers a shaft of sunlight from a rocky hillside.,fill with little drawings.,pass through a high city street.,gold0-reannot,pos,unl,unl,unl,pos,The image fades to colorful blurry lights.,Now the sisters\nanetv_dygVFom6V5c,15932,\"A man is shown posing with several people, going to a field to play paintball. The people\",\"gear up and hide behind obstacles, shooting at one another.\",continue to ride around as well as looking at the camera and showing the tango movements.,in green also begin to compete along the man in black skates.,hit the ball back and forth passing the ball trying to hit the ball at the end.,get on the beach and run again.,gold0-orig,pos,unl,unl,unl,unl,\"A man is shown posing with several people, going to a field to play paintball.\",The people\nanetv_dygVFom6V5c,15931,\"Two women are riding on the back of a four wheeler, and waving. A man\",\"is shown posing with several people, going to a field to play paintball.\",removes pendant glasses and takes other's eye.,is shown weaving in a blue kayak.,is then seen chasing a ball and screaming through the air and climbing into the pit and end by spinning and spinning.,approaches a white who begins and talks about their big experience with a lot of beach wrapping information.,gold1-reannot,pos,unl,unl,unl,unl,\"Two women are riding on the back of a four wheeler, and waving.\",A man\nlsmdc1055_Marley_and_me-96412,6689,\"Dog stops, turns and looks at her, then bounds happily back. Marley\",\"knocks the trainer over and starts humping her leg, as people rush to help.\",\"night, someone rides past a penguin in the doorway.\",depicts a chef with a graceful comb with the egg.,is there that he is wondering what she means.,,gold0-orig,pos,unl,unl,unl,n/a,\"Dog stops, turns and looks at her, then bounds happily back.\",Marley\nlsmdc1055_Marley_and_me-96412,6688,He sprints away and the trainer reaches for a whistle. Dog,\"stops, turns and looks at her, then bounds happily back.\",lifts his hands.,is holding a pen.,\"runs backward, then finds himself away from her and a thug hits the course with a crowbar.\",,gold0-orig,pos,unl,unl,unl,n/a,He sprints away and the trainer reaches for a whistle.,Dog\nlsmdc1055_Marley_and_me-96412,6687,She walks off with arrogant confidence. He sprints away and the trainer,reaches for a whistle.,climbs as he runs.,follows her from view.,steps forward in her pants.,,gold0-orig,pos,unl,unl,pos,n/a,She walks off with arrogant confidence.,He sprints away and the trainer\nanetv_RQwgREUcreI,6186,A woman holding a doll undoes curlers from the dolls hair. The woman,shoes off the dolls hair.,continues drying the hair using a razor.,is cutting the hair with a bouquet of red hair.,is bandaging the turban very gently.,picks up the styled wig.,gold1-orig,pos,unl,unl,unl,pos,A woman holding a doll undoes curlers from the dolls hair.,The woman\nanetv_RQwgREUcreI,6188,The woman turns the doll around to show off the back of the dolls head. The woman,continues to show off the dolls hair.,\"shakes her head skyward, smiling up.\",continues wrapping and shows her men.,presents a large pie to the dog.,is then seen walking along a tattoo on the tree.,gold0-orig,pos,unl,unl,unl,unl,The woman turns the doll around to show off the back of the dolls head.,The woman\nanetv_RQwgREUcreI,6187,The woman shoes off the dolls hair. The woman,turns the doll around to show off the back of the dolls head.,takes notes and adjusts the wheel she ties the shoe on.,falls after a heavy on the table.,gives tutorial on where to look back from work on cleaning product.,wipes her brow off and applies a flood colored wig and applies mascara.,gold0-orig,pos,unl,unl,unl,unl,The woman shoes off the dolls hair.,The woman\nanetv_QYU2srH753Q,13089,A person cracks their hands. Birds,flock the sky above the dirt track.,blazes off in the sky above one more of the person who jumped freestyle.,return to the dance with each other on the phone.,take cover as it sails above the sea.,see someone standing close in a kitchen.,gold0-orig,pos,unl,unl,unl,pos,A person cracks their hands.,Birds\nanetv_QYU2srH753Q,13094,A helicopter hovers over the race track. A lady,pulls on a rider's helmet.,stands before the road runs behind a cow.,retrieves a bead from a rock and lands on the ground with her face on it.,slows a javelin numerous times.,makes a call where a hammock - tubes line drives each competition.,gold1-orig,pos,unl,unl,unl,unl,A helicopter hovers over the race track.,A lady\nanetv_QYU2srH753Q,13091,A person's shadow moves over the surface of a white trailer. A person,rides a dirt bike.,walks and cuts its nails with white paint paint.,is waxing the window.,in a blue shirt has three hands.,is trimming a bush.,gold0-orig,pos,unl,unl,unl,pos,A person's shadow moves over the surface of a white trailer.,A person\nanetv_QYU2srH753Q,13092,A person stands with sign at the end of the dirt race track. A person,lifts a dirt bike and places on a stool.,is passing a lawnmower on a field and javelin.,is shown on the beam.,rides a large white skateboard track across the lawn.,,gold1-reannot,pos,unl,unl,unl,n/a,A person stands with sign at the end of the dirt race track.,A person\nanetv_QYU2srH753Q,13090,Birds flock the sky above the dirt track. A person's shadow,moves over the surface of a white trailer.,shows them the whole city.,hits the zebra's back as it dangles under the snow.,brings him to the surface.,appears on a paper ball.,gold0-reannot,pos,unl,unl,pos,pos,Birds flock the sky above the dirt track.,A person's shadow\nanetv_QYU2srH753Q,13093,A male child runs and smiles. A helicopter,hovers over the race track.,is blown by a city side.,dances with each of the players.,is strapped in on a caged rope.,runs down a waterfall wearing a gadget.,gold1-reannot,pos,unl,unl,unl,unl,A male child runs and smiles.,A helicopter\nlsmdc3025_FLIGHT-11705,4996,\"A woman steps out of a room at Hotel Atlanta, carrying a folded up massage table. She\",\"wears a dress, and has a small tattoo on her shoulder.\",considers this a moment.,holds up a bowl to the desk and grab an iron to clean a delicate box before using it.,\"meets her eyes, then types in a hopeless gaze.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A woman steps out of a room at Hotel Atlanta, carrying a folded up massage table.\",She\nlsmdc3025_FLIGHT-11705,4994,Someone fidgets on his side of the cockpit. Ken,watches as someone brushes his hair.,\"his logo, someone turns someone pale.\",\"a costume, she tries to walk out of the subway as someone brings a seat to follow him through the terminal.\",\"his fellow clouds, someone shoots offstage.\",stand with the driver.,gold0-orig,pos,unl,unl,unl,unl,Someone fidgets on his side of the cockpit.,Ken\nlsmdc3025_FLIGHT-11705,5000,She smokes as she makes a call from the driver's seat. She,\"leans on the steering wheel, and lowers the phone to the passenger seat.\",folds the fists and walks toward a busy street.,accidentally jumps off her own bed as she races away.,mother struggles with her teeth and sighing.,gasps as she runs to the side of the car.,gold0-orig,pos,unl,unl,unl,unl,She smokes as she makes a call from the driver's seat.,She\nlsmdc3025_FLIGHT-11705,4999,She walks to a car and places the massage table in the trunk. She,smokes as she makes a call from the driver's seat.,sets it on the floor and flops down on the bed.,sips her coffee while drinking her beer.,knocks at the door.,chooses her bag.,gold0-orig,pos,unl,unl,unl,unl,She walks to a car and places the massage table in the trunk.,She\nlsmdc3025_FLIGHT-11705,4995,Ken watches as someone brushes his hair. A woman,\"steps out of a room at hotel atlanta, carrying a folded up massage table.\",in a black cap stares at someone and we both look round at the boys counter.,approaches the agent who lifts the white dress.,squeezes down her black hair.,uncertainly speaks through his boss from a stand.,gold0-reannot,pos,unl,unl,unl,pos,Ken watches as someone brushes his hair.,A woman\nlsmdc3060_SANCTUM-29337,16060,She folds her arms across her chest and stubbornly plants her feet. Someone gravely,looks from her to someone.,\"sits back on her seat, her flirtatious gaze fixed on someone.\",lifts the folded arms overhead.,grimly closes his eyes.,glances at her and smiles.,gold0-orig,pos,unl,unl,unl,unl,She folds her arms across her chest and stubbornly plants her feet.,Someone gravely\nanetv_q0L4clHNIbc,15843,A woman is outside shoveling with a robohandle. It,is making the process much quicker because it is a decent size and picks up a lot of the snow at once.,is out of ammo.,adds to the hair that is wiping to the sink and a person begins to walk in her hair.,holds a hook through a window and a modern woman is talking to the camera.,is held by the fluid.,gold0-orig,pos,unl,unl,unl,unl,A woman is outside shoveling with a robohandle.,It\nlsmdc0002_As_Good_As_It_Gets-46538,9091,\"Someone has no idea he has insulted her. Sandbagged in extreme, she\",gets up - - actually ready to leave.,passes a nice woman on someone's lap and looks around.,is doing surgery with someone's germs.,messes up with her coat.,starts out along the street in front of cameras.,gold0-reannot,pos,unl,unl,pos,pos,Someone has no idea he has insulted her.,\"Sandbagged in extreme, she\"\nanetv_A32TgJfp2z8,12664,Old black and white videos are shown of people engaged in games of table tennis. Crowds,watch and cheer them on.,are sitting down in a bathroom speaking to the camera.,moves in slow motion on the screen in front of a tv ad.,are shown celebrating with one another and trying to hold the ball.,,gold0-orig,pos,unl,unl,pos,n/a,Old black and white videos are shown of people engaged in games of table tennis.,Crowds\nanetv_A32TgJfp2z8,12665,Crowds watch and cheer them on. They,clap as the ball is hit back and forth over the net.,use the jerseys to wash their sticks as they water.,jump off the stage and plummet on the top.,are stepping in guests.,steer their way along a narrow street.,gold0-orig,pos,unl,unl,unl,unl,Crowds watch and cheer them on.,They\nanetv_A32TgJfp2z8,2096,A mgm movie commercial comes on then several people lined up to play ping pong appear competing and the crowd begins to cheer for them. More matches begin but they are one on one and the crowd,continues to clap for them until the game ends and the boys shake each other's hand.,enjoys his citizens as the man sadly continues receiving the final lives preventing the match.,comes to begin performing professional tricks in a music room.,continue to see the individual behind the counter in their casino stats.,take on the match.,gold0-orig,pos,unl,unl,unl,pos,A mgm movie commercial comes on then several people lined up to play ping pong appear competing and the crowd begins to cheer for them.,More matches begin but they are one on one and the crowd\nlsmdc3019_COLOMBIANA-8398,12926,The woman hurries off past the security guard. Now someone,stands at a ticket kiosk in a bus station.,drives someone into town.,runs into someone's apartment sending the officers in her house.,taps her locked door.,,gold0-orig,pos,unl,pos,pos,n/a,The woman hurries off past the security guard.,Now someone\nlsmdc3019_COLOMBIANA-8398,12887,\"Behind her, a gunman smashes through a different part of the roof. As someone's men burst in after her, she\",races down a balcony.,stares fire at someone.,trips and pulls over.,hides him in a filthy kiss.,swings the cable around the car knocking over.,gold0-orig,pos,unl,unl,unl,unl,\"Behind her, a gunman smashes through a different part of the roof.\",\"As someone's men burst in after her, she\"\nlsmdc3019_COLOMBIANA-8398,12888,\"As someone's men burst in after her, she races down a balcony. She\",climbs through an open window into a man's apartment.,jumps the top of the bed and wraps her arms around him.,glares down at someone.,cleans an utility chain with someone's hand and camera channel as he lines it beneath someone's body.,closes the wooden doors behind her.,gold0-orig,pos,unl,unl,unl,pos,\"As someone's men burst in after her, she races down a balcony.\",She\nlsmdc3019_COLOMBIANA-8398,12904,\"Sliding it aside, someone lifts her face to the bright sunlight and squints. She\",rubs her eyes then glances around and climbs out of the hole.,rubs the classmates's brow and then sips her drink.,glances around and gapes.,reaches for her heel and presses it up.,,gold0-orig,pos,unl,unl,unl,n/a,\"Sliding it aside, someone lifts her face to the bright sunlight and squints.\",She\nlsmdc3019_COLOMBIANA-8398,12892,The biker crashes into it. The colorful chili peppers,fly into the air.,are brought and insult him.,then cuts up to catch and by.,animates back on the roof wire.,darts at the yellow ball before leaving the red cab approaching.,gold0-orig,pos,unl,unl,unl,unl,The biker crashes into it.,The colorful chili peppers\nlsmdc3019_COLOMBIANA-8398,12936,It opens and he steps inside. Someone,sits waiting at a low window sill.,\"enters, leaving her room.\",steps out onto the balcony and gets out.,tosses him the diary.,,gold1-orig,pos,pos,pos,pos,n/a,It opens and he steps inside.,Someone\nlsmdc3019_COLOMBIANA-8398,12881,The gunman follows her as she races across the street and enters a building. The motorcyclist,takes off down the hill.,out of the market marches out to her.,people waits out to join her.,stops as more buttons pass down and down.,,gold0-orig,pos,unl,unl,unl,n/a,The gunman follows her as she races across the street and enters a building.,The motorcyclist\nlsmdc3019_COLOMBIANA-8398,12919,\"With a frown, she grabs the passport and money. Now a security guard\",leads her and her escort down a corridor.,rolls a code into the public filming tank.,leads a launch into an elegant lobby.,sits in a suit drinking some tea.,escorts someone along an elegant maneuvering roof.,gold0-orig,pos,unl,unl,pos,pos,\"With a frown, she grabs the passport and money.\",Now a security guard\nlsmdc3019_COLOMBIANA-8398,12898,\"Noticing it, she breaks into a run. He\",aims a gun out his window.,hits her with her knuckles.,charges in toward a reflective gallery.,gets out to reload.,drops his fork and walks away.,gold0-orig,pos,unl,unl,pos,pos,\"Noticing it, she breaks into a run.\",He\nlsmdc3019_COLOMBIANA-8398,12921,\"As they pass a restroom, someone tugs on the woman's wrist. Entering the bathroom, someone\",strides to the last stall.,slides over a bar with open bag drawings.,trips her down on her bed and floats across the floor.,closes the door behind them and approaches her with the flashlight.,gazes out the window as someone looks up to the sky.,gold0-orig,pos,unl,unl,unl,unl,\"As they pass a restroom, someone tugs on the woman's wrist.\",\"Entering the bathroom, someone\"\nlsmdc3019_COLOMBIANA-8398,12918,\"The bureaucrat sets a short stack of cash in front of the girl. With a frown, she\",grabs the passport and money.,watches as someone gingerly steps forward.,turns on the closing doors.,grasps the phone sympathetically.,holds up the shot and puts her dress in.,gold0-orig,pos,unl,unl,unl,unl,The bureaucrat sets a short stack of cash in front of the girl.,\"With a frown, she\"\nlsmdc3019_COLOMBIANA-8398,12967,She looks up at her uncle with a resolute gaze. Someone,leans back in his chair and takes a deep breath through parted lips.,frowns and turns away.,looks at the activity.,winces as she looks toward the house.,,gold0-orig,pos,pos,pos,pos,n/a,She looks up at her uncle with a resolute gaze.,Someone\nlsmdc3019_COLOMBIANA-8398,12933,\"Later, someone walks a dimly lit alleyway. She\",hands the man her scrap of paper with the address.,throws out a blueprint and closes a handgun.,rubs the tips of his legs.,turns around and the room turning away from the television.,sits on the edge of a couch.,gold0-orig,pos,pos,pos,pos,pos,\"Later, someone walks a dimly lit alleyway.\",She\nlsmdc3019_COLOMBIANA-8398,12901,The others follow suit with their automatics. The motorcyclist and the three guys on foot,join the group and peer at the storm drain.,bend the passenger's arm.,show in their backpacks.,rise their arms against the street.,,gold0-orig,pos,unl,unl,unl,n/a,The others follow suit with their automatics.,The motorcyclist and the three guys on foot\nlsmdc3019_COLOMBIANA-8398,12875,\"Someone grabs the hidden knife and stabs his hand to the table. Racing into a bathroom, she\",\"slides open a window, pulls herself out and drops onto a ledge.\",puts on her shield.,pulls out a red garland and knocks on the training table.,\"slips off a leather ballerina thong, approaches her, her mother and bow.\",sinks him against her side.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs the hidden knife and stabs his hand to the table.,\"Racing into a bathroom, she\"\nlsmdc3019_COLOMBIANA-8398,12978,\"It swerves off the road and hits a fire hydrant, knocking it from it base. As fearful bystanders\",\"scatter, someone angrily faces his niece.\",scurry out of the tent.,stride out of the garage.,gather as the sub glides into its wings.,\"curl overhead, someone shouts up again.\",gold1-orig,pos,unl,unl,unl,pos,\"It swerves off the road and hits a fire hydrant, knocking it from it base.\",As fearful bystanders\nlsmdc3019_COLOMBIANA-8398,12886,\"She races past an elderly man in a garden. Behind her, a gunman\",smashes through a different part of the roof.,knocks someone's gun off a rack with bullets.,uses a scanner and a silver ruler operator.,walks out and approaches someone with his big wad of cash.,pushes a massive beast over a car head with the tip of his gun.,gold0-orig,pos,unl,unl,unl,unl,She races past an elderly man in a garden.,\"Behind her, a gunman\"\nlsmdc3019_COLOMBIANA-8398,12964,Someone pauses and faces the table gravely. Someone,shifts his gaze and turns over his paper.,stands on the stage and faces the stage.,holds himself hostage and turns the aim on his colleague.,extends a hand triumphantly.,walks up the aisle between him and the children.,gold1-orig,pos,unl,unl,pos,pos,Someone pauses and faces the table gravely.,Someone\nlsmdc3019_COLOMBIANA-8398,12897,\"Rounding a corner, she navigates a labyrinth of alleyways. Noticing it, she\",breaks into a run.,steps inside and finds his body behind.,finds someone standing by a dish piled with snow.,reaches for her wallet and her brow furrowed.,,gold0-orig,pos,unl,unl,pos,n/a,\"Rounding a corner, she navigates a labyrinth of alleyways.\",\"Noticing it, she\"\nlsmdc3019_COLOMBIANA-8398,12889,\"Following her, a gunman rushes past the angry resident. Someone\",hurries down a flight of stairs into an alley.,stares back the slashing sword then shrinks.,\"moves out of the smoke from a water crash, throws some powder into someone's eyes, and lands free.\",sits in the antique warehouse.,struggles to pull herself free.,gold1-orig,pos,unl,unl,unl,pos,\"Following her, a gunman rushes past the angry resident.\",Someone\nlsmdc3019_COLOMBIANA-8398,12944,\"As two women leave one of them, she watches them go with a solemn curious gaze. A tall shadowy figure\",arrives on the other side of her.,stands on the netting from a platform atop the burning structure.,sits in a chair watching the long huge estate in a darkened sky.,ascends a steep path between seasoned stone statues and leafless trees.,,gold0-orig,pos,unl,pos,pos,n/a,\"As two women leave one of them, she watches them go with a solemn curious gaze.\",A tall shadowy figure\nlsmdc3019_COLOMBIANA-8398,12879,\"As someone swings down to a corner ledge, a brawny gunman climbs out a window after her. She\",drops onto the roof of a parked car.,gives him high five.,grabs pads off the back of the jet's hood.,seizes someone's necklace and raises her arms in the air.,,gold0-orig,pos,unl,unl,unl,n/a,\"As someone swings down to a corner ledge, a brawny gunman climbs out a window after her.\",She\nlsmdc3019_COLOMBIANA-8398,12986,\"Now as we peer across a sprawling suburb, words appear. In a parking lot, a cop\",brings lunch to his partner.,parks behind the plaster crank.,peels off a car.,\"drives into view, approaches 100 then looks around.\",leans eagerly toward someone.,gold1-orig,pos,unl,unl,unl,unl,\"Now as we peer across a sprawling suburb, words appear.\",\"In a parking lot, a cop\"\nlsmdc3019_COLOMBIANA-8398,12924,\"Finding the door to the last stall closed, she walks over. She\",opens it and finds it empty.,\"glances down at the regular vibrating briefs, which frantically runs along the top.\",leads the adjoining wall and arches in alarm.,\"walks down a hallway to the banister, then locks it shut.\",\"is on the ground next to someone, who's been drinking a hunting breakfast.\",gold0-orig,pos,unl,unl,unl,unl,\"Finding the door to the last stall closed, she walks over.\",She\nlsmdc3019_COLOMBIANA-8398,12971,\"Now someone leads someone up the steps to a school's entrance. Later in a principal's office, an elegant woman with blonde curls\",opens a stuffed yellow envelope.,and french model covers her eyes.,winds a opposite corner.,wears a pair at a collar.,takes a check with him.,gold1-orig,pos,unl,unl,pos,pos,Now someone leads someone up the steps to a school's entrance.,\"Later in a principal's office, an elegant woman with blonde curls\"\nlsmdc3019_COLOMBIANA-8398,12917,Someone and her escort sit in front of his desk. The bureaucrat,sets a short stack of cash in front of the girl.,takes a book down with vomit.,rises over the slip of paper.,appear in the doorway.,,gold1-orig,pos,unl,unl,pos,n/a,Someone and her escort sit in front of his desk.,The bureaucrat\nlsmdc3019_COLOMBIANA-8398,12955,\"As she sits up, we notice guns hanging on the wall behind her. She\",\"gets out of bed, crosses to a window, and peers outside.\",opens her rear groggily.,\", someone turns on the light.\",is confused and frustrated.,clutches her knees.,gold0-orig,pos,unl,unl,pos,pos,\"As she sits up, we notice guns hanging on the wall behind her.\",She\nlsmdc3019_COLOMBIANA-8398,12946,\"Turning, she finds someone staring at her through a set of windows. As he strides around a corner, she\",watches him through the windows.,reaches his breast pocket and pulls out a handful of condoms.,turns helplessly over to him.,\"leaves an open door in a quiet nook, which passes huge with someone.\",grabs the ending due from a card and gently grabs her jewelry.,gold1-orig,pos,unl,unl,unl,unl,\"Turning, she finds someone staring at her through a set of windows.\",\"As he strides around a corner, she\"\nlsmdc3019_COLOMBIANA-8398,12895,\"Someone runs down a long staircase between the crowded tiers of rundown homes. As some of his gunmen give chase, someone\",talks into his radio.,takes his hit by the clothes.,gives someone a shy shove.,drops another tray to an old white van.,,gold0-orig,pos,unl,pos,pos,n/a,Someone runs down a long staircase between the crowded tiers of rundown homes.,\"As some of his gunmen give chase, someone\"\nlsmdc3019_COLOMBIANA-8398,12943,\"Now someone's associate leads someone into a small waiting area within a network of offices. As two women leave one of them, she\",watches them go with a solemn curious gaze.,steps forward and peers out the window as they wander along the narrow street.,is pumping faster and pace.,lowers her hand.,swats a hand as the illuminated hallway weaves across the street.,gold0-orig,pos,unl,unl,unl,unl,Now someone's associate leads someone into a small waiting area within a network of offices.,\"As two women leave one of them, she\"\nlsmdc3019_COLOMBIANA-8398,12963,\"As he flips pages in his newspaper, someone serves someone food. Someone\",pauses and faces the table gravely.,lurches through the pages.,sits around the table and picks up a piece of cheese.,shifts his eyes and walks over to the shifts table.,,gold1-orig,pos,unl,unl,unl,n/a,\"As he flips pages in his newspaper, someone serves someone food.\",Someone\nlsmdc3019_COLOMBIANA-8398,12962,\"Someone leads her to the kitchen table then returns to the stove. Holding a newspaper, someone\",gives the girl a sidelong look.,opens a album and smiles at it.,returns it to the peanut butter.,reads the book thrust to her brother.,watches as the movie cuts to black.,gold1-orig,pos,unl,unl,unl,pos,Someone leads her to the kitchen table then returns to the stove.,\"Holding a newspaper, someone\"\nlsmdc3019_COLOMBIANA-8398,12914,His older colleague hits a button on his desk which activates a camera. He,glances at his computer.,clips a saxophone on the sandwich.,\"slips into the blackness on the bottom, but lifeless.\",scans an open - mouthed image.,\"stares silently at the piano, revealing young someone in his silver uniform.\",gold0-orig,pos,unl,unl,unl,pos,His older colleague hits a button on his desk which activates a camera.,He\nlsmdc3019_COLOMBIANA-8398,12939,Someone pats his victim's bald head. Another punch,sends thick streams of his blood flying.,throws someone to the ground by a web.,sends someone flying into his head.,brings a gun to her face.,is greeted for him under the ice.,gold0-orig,pos,unl,unl,unl,unl,Someone pats his victim's bald head.,Another punch\nlsmdc3019_COLOMBIANA-8398,12891,\"The biker gives chase with two gunmen running behind him. Turning a corner into a covered marketplace, someone\",sprints past an arcade and various vendors.,swims towards the back into the other passage.,spots the criminals heading off the wall outside.,stops a long corridor and peers through an open door at someone's desk.,reads the word - walker data screen.,gold1-orig,pos,unl,unl,unl,unl,The biker gives chase with two gunmen running behind him.,\"Turning a corner into a covered marketplace, someone\"\nlsmdc3019_COLOMBIANA-8398,12974,\"As someone leads her out, the principal sinks back down in her chair and lets out a nervous sigh. Turning, he\",finds someone standing motionless.,punches his father and shoves his arms deep into his pockets.,finds someone staring off.,glances up at his friend.,sees someone looking at the tv.,gold0-orig,pos,unl,unl,unl,unl,\"As someone leads her out, the principal sinks back down in her chair and lets out a nervous sigh.\",\"Turning, he\"\nlsmdc3019_COLOMBIANA-8398,12903,\"Meanwhile, a manhole cover rises from the middle of a street. Sliding it aside, someone\",lifts her face to the bright sunlight and squints.,grabs the photo of their son.,runs up to the top of the stairs and falls.,finds someone pinning him up.,watches as he heads toward the front door.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, a manhole cover rises from the middle of a street.\",\"Sliding it aside, someone\"\nlsmdc3019_COLOMBIANA-8398,12934,She hands the man her scrap of paper with the address. He,reads it then meets her gaze.,looks up at the house with his wife.,picks up the cellphone in her hand.,\"leaves, followed closely by the recruits.\",takes a box from his bag.,gold0-orig,pos,pos,pos,pos,pos,She hands the man her scrap of paper with the address.,He\nlsmdc3019_COLOMBIANA-8398,12954,\"Waking, she takes in her surroundings. As she sits up, we\",notice guns hanging on the wall behind her.,see stockings or glass fall from the cupboard.,see a heavy - up woman getting out from under the pillow.,see the plane going above.,glimpse a hallway entrance.,gold1-orig,pos,unl,unl,unl,unl,\"Waking, she takes in her surroundings.\",\"As she sits up, we\"\nlsmdc3019_COLOMBIANA-8398,12950,\"He eases her back to look her in the eye. Cupping her face in his hands, he\",wipes away her tears with his thumb.,steals her over the shoulder.,jerks his lips to her cheek and caresses her neck.,huddles against her headrest and leans toward her.,leans her briefly and lays his cheek to her breast.,gold0-orig,pos,unl,unl,unl,unl,He eases her back to look her in the eye.,\"Cupping her face in his hands, he\"\nlsmdc3019_COLOMBIANA-8398,12972,Someone and someone sit facing her. She,presents a folded paper to the girl.,watches someone reverts back to its romantic and lunchroom father.,forces himself to wipe his feet.,touches someone's temple.,slips on her short silk dress.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone sit facing her.,She\nlsmdc3019_COLOMBIANA-8398,12960,She crosses to the girl and kneels before her. She,caresses someone's face.,proceeds to brush the lens into the basin.,leans forward and his eyes filled with sorrowful.,sweeps her gaze away from the contract.,looks at the snake.,gold0-orig,pos,unl,unl,unl,unl,She crosses to the girl and kneels before her.,She\nlsmdc3019_COLOMBIANA-8398,12928,She hands him the address written out by her father. She,holds up her wad of cash.,\"takes out the set of scotch, lights it and leaves.\",\"shakes her head, smiles behind him and gives a gentle smile.\",keeps her gaze fixed on the laptop.,strides across the aisle towards the doors.,gold0-orig,pos,unl,pos,pos,pos,She hands him the address written out by her father.,She\nlsmdc3019_COLOMBIANA-8398,12982,A police cruiser pulls up by the wrecked car. He,\"straightens, takes out his fedora and beats it back into shape.\",\"drives on, sits in the ambulance and looks up at someone's startled face, chest heaving.\",rides the road in full police killer.,stops with a gun facing his mother.,waddles down the carpet.,gold0-orig,pos,unl,unl,unl,unl,A police cruiser pulls up by the wrecked car.,He\nlsmdc3019_COLOMBIANA-8398,12941,His fist stops mid punch and his brow furrows. He,shoots his lackey a stunned look.,rides on uneven mountains beside a tall stone paneled wall.,pulls up her cloth to reveal the tattoo on a sweat - worn bow.,\"points at someone, who keeps his eyes fixed on someone.\",,gold0-orig,pos,unl,unl,unl,n/a,His fist stops mid punch and his brow furrows.,He\nlsmdc3019_COLOMBIANA-8398,12929,Now hazy sunlight glimmers off the mirrored panels of Chicago's skyscrapers as we move over the downtown area. A Trailways bus crosses a bridge and a bird's eye view,follows it up a street.,causes her to bend over.,\"shows the slim, grinning public gym.\",shows a glass mouth young woman who sits with a model.,spots a visible view of the city.,gold0-orig,pos,unl,unl,unl,pos,Now hazy sunlight glimmers off the mirrored panels of Chicago's skyscrapers as we move over the downtown area.,A Trailways bus crosses a bridge and a bird's eye view\nlsmdc3019_COLOMBIANA-8398,12949,\"Holding her close, someone cradles her head in his hand as she sobs into his shoulder. He\",eases her back to look her in the eye.,\"looks down with astonishment - - but someone moves closer and kisses his wife, who, after night.\",breaks down and takes a step back.,\"drags back and forth, bringing his hands up.\",smiles and kisses her forehead.,gold0-orig,pos,unl,unl,unl,pos,\"Holding her close, someone cradles her head in his hand as she sobs into his shoulder.\",He\nlsmdc3019_COLOMBIANA-8398,12902,\"The motorcyclist and the three guys on foot join the group and peer at the storm drain. Meanwhile, a manhole cover\",rises from the middle of a street.,looms the chaotic bank.,gazes across the farmhouse.,slides down a flight of stairs.,approaches one of the buses.,gold0-orig,pos,unl,unl,unl,unl,The motorcyclist and the three guys on foot join the group and peer at the storm drain.,\"Meanwhile, a manhole cover\"\nlsmdc3019_COLOMBIANA-8398,12952,He kisses her forehead three times then hugs her again. Now a sunbeam,shines on someone's face as she sleeps.,partition makes someone dance.,stops playing the game.,\"is draped across a bed upside down, and stands on a low post.\",,gold0-orig,pos,unl,unl,unl,n/a,He kisses her forehead three times then hugs her again.,Now a sunbeam\nlsmdc3019_COLOMBIANA-8398,12896,\"As some of his gunmen give chase, someone talks into his radio. Someone\",dashes down the stairs with the three gunmen close behind.,\"pats his pockets and takes up his wristwatch, which stands posted at the end.\",\"roars to a hollow on leashes, followed by a nazgul bull.\",\"walks ahead, past the milling crowds of people, watching him defiant.\",,gold0-orig,pos,unl,unl,pos,n/a,\"As some of his gunmen give chase, someone talks into his radio.\",Someone\nlsmdc3019_COLOMBIANA-8398,12953,\"Now a sunbeam shines on someone's face as she sleeps. Waking, she\",takes in her surroundings.,crouches and squirts herself in the groin.,falls asleep in bed.,talks on a cell phone.,glances toward the bathroom.,gold0-orig,pos,unl,unl,unl,unl,Now a sunbeam shines on someone's face as she sleeps.,\"Waking, she\"\nlsmdc3019_COLOMBIANA-8398,12951,\"Cupping her face in his hands, he wipes away her tears with his thumb. He\",kisses her forehead three times then hugs her again.,steps in and buries his face in his hand.,glances over his shoulder and pulls the boy away.,lowers her hand and gently brushes her neck.,,gold0-orig,pos,unl,unl,pos,n/a,\"Cupping her face in his hands, he wipes away her tears with his thumb.\",He\nlsmdc3019_COLOMBIANA-8398,12906,\"Later, she reaches a building surrounded by a tall wrought iron fence. Armed soldiers\",stand posted at its gate.,surround a bus and steps toward the brothel.,step out with a gun in it.,rush to the courtyard entrance with their dog pointed down the hall.,leap out of a walkway.,gold0-orig,pos,unl,unl,unl,pos,\"Later, she reaches a building surrounded by a tall wrought iron fence.\",Armed soldiers\nlsmdc3019_COLOMBIANA-8398,12880,She drops onto the roof of a parked car. The gunman,follows her as she races across the street and enters a building.,is kissing her in the car.,wrestles her onto the roof as a small light of frost washes overhead.,rips out the hood of her car.,leaps over the car and drives her into a swamp.,gold1-orig,pos,unl,unl,unl,unl,She drops onto the roof of a parked car.,The gunman\nlsmdc3019_COLOMBIANA-8398,12893,The colorful chili peppers fly into the air. Now our view,soars over the city.,rises over the somber someone from beneath someone and his son.,travels down the ramp in the alley by a fountain.,rises from a small cargo ship.,sweeps over the screen.,gold0-orig,pos,unl,pos,pos,pos,The colorful chili peppers fly into the air.,Now our view\nlsmdc3019_COLOMBIANA-8398,12877,\"Someone yanks the knife out of his hand. Lowering herself to another ledge, she\",uses the top one for cover as a bald gunman shoots down at her.,shoots more in the arms excitedly.,settles down under a lapping barrier.,plucks her wrists from someone's waist.,covers herself in her own veil.,gold0-orig,pos,unl,unl,unl,pos,Someone yanks the knife out of his hand.,\"Lowering herself to another ledge, she\"\nlsmdc3019_COLOMBIANA-8398,12968,Someone leans back in his chair and takes a deep breath through parted lips. He,stares at her then affects a casual gaze.,glances the left corner then reaches around to the space doors.,gazes down at her bed and rubs her neck.,moonlight here his bare face.,,gold1-orig,pos,unl,unl,unl,n/a,Someone leans back in his chair and takes a deep breath through parted lips.,He\nlsmdc3019_COLOMBIANA-8398,12958,\"She touches one of her mother's as she passes. Later, she\",\"arrives at a kitchen and pauses, her fingers lightly drumming her thigh.\",looks at the pixie - shaped facade of towering manhattan in the early morning darkness.,\"finds a red sketchbook with expose and flowers, someone, and someone stand in the room with someone.\",\"is reading the diary, wrapping it around her back to reveal a message written in the message.\",,gold0-orig,pos,unl,unl,pos,n/a,She touches one of her mother's as she passes.,\"Later, she\"\nlsmdc3019_COLOMBIANA-8398,12920,\"Now a security guard leads her and her escort down a corridor. As they pass a restroom, someone\",tugs on the woman's wrist.,pierces his father's eyes.,leads the others into their car.,ties a cloak around.,checks the local speaker soldier.,gold0-orig,pos,unl,unl,unl,unl,Now a security guard leads her and her escort down a corridor.,\"As they pass a restroom, someone\"\nlsmdc3019_COLOMBIANA-8398,12966,\"Eating her breakfast, the little girl shakes her head. She\",looks up at her uncle with a resolute gaze.,recoils as she kneels on her.,crosses to a dining table where people sit on a concave table.,closes her eyes a little then rubs her hand.,\"relaxes, crosses back to the camera and tries to bite through the fingernails.\",gold1-orig,pos,unl,unl,unl,unl,\"Eating her breakfast, the little girl shakes her head.\",She\nlsmdc3019_COLOMBIANA-8398,12938,The man steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair. Someone,pats his victim's bald head.,bows his head and peers in the window as the dancer hands.,cast an intrigued look over someone's blank face.,glances away and she goes.,glances back to seeing the servant.,gold1-orig,pos,unl,pos,pos,pos,The man steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair.,Someone\nlsmdc3019_COLOMBIANA-8398,12882,\"The motorcyclist takes off down the hill. As she acrobatically makes her way down to a terrace, the brawny gunman\",spots her from the rooftop.,looks up at his feet.,convulses on his side.,slips into a seat.,,gold0-orig,pos,unl,unl,unl,n/a,The motorcyclist takes off down the hill.,\"As she acrobatically makes her way down to a terrace, the brawny gunman\"\nlsmdc3019_COLOMBIANA-8398,12948,\"Large tears stream down the little girl's cheeks. Holding her close, someone\",cradles her head in his hand as she sobs into his shoulder.,jerks her thumb up at the flicker of his ink finger.,takes hold of a large pipe as she holds up the cigarette.,\"takes a deep breath, and stretches to someone's hand.\",\"takes a deep, deep breath before entering to school.\",gold1-orig,pos,unl,unl,unl,unl,Large tears stream down the little girl's cheeks.,\"Holding her close, someone\"\nlsmdc3019_COLOMBIANA-8398,12973,\"She smiles down at the girl who coldly gets to her feet. As someone leads her out, the principal\",sinks back down in her chair and lets out a nervous sigh.,holds her gaze and checks her hearing system.,looks at the black box.,\"shakes his hand, then looks up and picks up the heavy bag, which has some of letters on it.\",,gold0-orig,pos,unl,unl,unl,n/a,She smiles down at the girl who coldly gets to her feet.,\"As someone leads her out, the principal\"\nlsmdc3019_COLOMBIANA-8398,12927,Now someone stands at a ticket kiosk in a bus station. She,hands him the address written out by her father.,runs up a window where various elegant people are lined up.,glances down at the gravestones with her hands.,moves down the street and opens the driver's door.,,gold0-orig,pos,unl,unl,pos,n/a,Now someone stands at a ticket kiosk in a bus station.,She\nlsmdc3019_COLOMBIANA-8398,12915,\"On a government jet, a woman sits with someone. On the ground, the jet\",slows as it taxis on a tarmac.,falls on the ground.,passes between cars calling its interior then stops.,runs along the canopy.,travels before the back.,gold0-orig,pos,unl,unl,unl,unl,\"On a government jet, a woman sits with someone.\",\"On the ground, the jet\"\nlsmdc3019_COLOMBIANA-8398,12981,He holds out the gun and the backpack. Someone,snatches the backpack from his grasp and slings it over her shoulder.,stands up and leaves.,\"at the door, someone steps to the front overturned and picks up the phone as he goes about the damage.\",\"walks up to someone, who climbs into the bed.\",steps out of the car.,gold0-orig,pos,unl,unl,pos,pos,He holds out the gun and the backpack.,Someone\nlsmdc3019_COLOMBIANA-8398,12957,Now someone shuffles to a stairway where family photos decorate the wall. She,touches one of her mother's as she passes.,passed with marley earrings working with their hmong friend.,places her belongings on the dresser side and stares quietly at the pamphlet in its ornate hands.,\"opens the classroom door and sees someone, who paces in the dressing room, singing.\",crosses her section to the other of the consultation room.,gold0-orig,pos,unl,unl,unl,unl,Now someone shuffles to a stairway where family photos decorate the wall.,She\nlsmdc3019_COLOMBIANA-8398,12985,\"Someone turns his niece away by the shoulder. Keeping his arm around her, he\",saunters off casually down the sidewalk.,squares his glove gently and rubs it on his hand.,kisses her hungrily before pulling her close.,lurches to his feet.,lowers his eyes as she summons a breath.,gold1-orig,pos,unl,unl,pos,pos,Someone turns his niece away by the shoulder.,\"Keeping his arm around her, he\"\nlsmdc3019_COLOMBIANA-8398,12900,Someone shoots his handgun into the storm drain opening. The others,follow suit with their automatics.,clamber down with simple jackets around his bodies.,try with the gun.,run past the broad entrance outside the club.,,gold0-orig,pos,unl,unl,unl,n/a,Someone shoots his handgun into the storm drain opening.,The others\nlsmdc3019_COLOMBIANA-8398,12945,\"A tall shadowy figure arrives on the other side of her. Turning, she\",finds someone staring at her through a set of windows.,spots a motionless wedding jacket on the floor.,spots a figure lying on the ground behind her dead shears.,spots a bolt of blood on someone 'outstretched arm.,,gold0-orig,pos,unl,unl,unl,n/a,A tall shadowy figure arrives on the other side of her.,\"Turning, she\"\nlsmdc3019_COLOMBIANA-8398,12907,He gazes at someone who sits in front of his desk. She,lifts her eyes to his then glances at an older man at a desk nearby.,is seated at the back of the camp.,stalks wearily into the empty kitchen stand.,watches the crash bug on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,He gazes at someone who sits in front of his desk.,She\nlsmdc3019_COLOMBIANA-8398,12922,\"Entering the bathroom, someone strides to the last stall. She\",steps inside and pulls the door shut.,tall blond woman and a few pretty women perform at her.,\"sits at a bureau, displaying two small children on them, a smile on her face.\",picks up the towel on the floor and picks up a penguin.,\"grabs someone from the river reluctantly, and ducks into the water.\",gold0-orig,pos,unl,unl,unl,pos,\"Entering the bathroom, someone strides to the last stall.\",She\nlsmdc3019_COLOMBIANA-8398,12979,\"As fearful bystanders scatter, someone angrily faces his niece. He\",swipes off his fedora and glances coolly at his handiwork.,kicks the grate over his shoulder.,\"extends a hand toward someone, then shifts her gaze.\",collapses on the newlyweds glaring at the evenstar.,\"leans forward, concentrating.\",gold1-orig,pos,unl,unl,unl,pos,\"As fearful bystanders scatter, someone angrily faces his niece.\",He\nlsmdc3019_COLOMBIANA-8398,12977,\"He thrusts someone's backpack at her, draws a huge handgun and opens fire on a passing car. It\",\"swerves off the road and hits a fire hydrant, knocking it from it base.\",hit the plastic shut in the alarm system.,he swings it on.,screech out and reaches the top of a tiny ladder drilling into tear - filled view.,roll out on the display screen.,gold0-orig,pos,unl,unl,unl,unl,\"He thrusts someone's backpack at her, draws a huge handgun and opens fire on a passing car.\",It\nlsmdc3019_COLOMBIANA-8398,12925,She opens it and finds it empty. The woman,hurries off past the security guard.,falls on the floor.,releases the curtain and gestures as someone drops.,pauses and kneels down beside someone.,puts her shoe on a table.,gold0-orig,pos,unl,unl,pos,pos,She opens it and finds it empty.,The woman\nlsmdc3019_COLOMBIANA-8398,12930,She timidly strides between two columns of benches shooting furtive glances at the other commuter. Someone,reads a comic book as she waits on a platform for an approaching l train.,is defense by someone.,sits on the table with her hands on her hips.,whacks her with the door.,is trapped in the wall.,gold0-orig,pos,unl,unl,unl,unl,She timidly strides between two columns of benches shooting furtive glances at the other commuter.,Someone\nlsmdc3019_COLOMBIANA-8398,12983,\"He straightens, takes out his fedora and beats it back into shape. As he\",puts it back on.,moves up the body of shattered instruments.,looks after it she catches it.,takes a faint puff of his mouth into a socket.,looks around the penguin him he looks around.,gold0-orig,pos,unl,unl,unl,unl,\"He straightens, takes out his fedora and beats it back into shape.\",As he\nlsmdc3019_COLOMBIANA-8398,12942,He shoots his lackey a stunned look. Now someone's associate,leads someone into a small waiting area within a network of offices.,creeps toward someone house.,someone prowls into tall trees.,pulls up to the bank someone.,,gold0-orig,pos,unl,unl,unl,n/a,He shoots his lackey a stunned look.,Now someone's associate\nlsmdc3019_COLOMBIANA-8398,12905,\"Cars and pedestrians take little notice as they bustle past the dirty faced girl in her sullied school uniform. Later, she\",reaches a building surrounded by a tall wrought iron fence.,plops down on her chair and crosses it outside the hotel at the top of the stairs.,opens the door with a black cloth revealing the parched folds outdoors.,presents a bouquet of turkey mnemonic.,comes in pursuit of someone.,gold0-orig,pos,unl,unl,unl,unl,Cars and pedestrians take little notice as they bustle past the dirty faced girl in her sullied school uniform.,\"Later, she\"\nlsmdc3019_COLOMBIANA-8398,12937,Someone sits waiting at a low window sill. The man,steps into a dingy room where a tall dark haired figure punches a guy sitting in a chair.,\"holds two beers to his mouth, dancing closer.\",\"leans over, raises his arms out for the whole, his other elbow tilting forward.\",creeps toward the stone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sits waiting at a low window sill.,The man\nlsmdc3019_COLOMBIANA-8398,12890,\"As someone emerges on a sidewalk, she spots the motorcyclist approaching and takes off down a stone staircase. The biker\",gives chase with two gunmen running behind him.,\"king grabs someone, and pulls her captive out.\",slides on a mounted ducks ledge over a tree as long seesaw flows through the half - opened window.,enters a threshold and now someone's father.,roars into a cab as she doubles over in her other direction.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone emerges on a sidewalk, she spots the motorcyclist approaching and takes off down a stone staircase.\",The biker\nlsmdc3019_COLOMBIANA-8398,12975,\"Turning, he finds someone standing motionless. He\",nods and glances around.,\"follow someone down the corridor, past someone, who's already in the open doorway.\",reaches for someone's hand.,stares slack - jawed.,,gold1-reannot,pos,unl,pos,pos,n/a,\"Turning, he finds someone standing motionless.\",He\nlsmdc3019_COLOMBIANA-8398,12910,\"Wiping her mouth, she settles back into her seat and uses one finger to poke around the vomit. She\",finds the computer chip and holds it out.,makes it down the old sidewalk.,\"is under the levers, which bracket, giving her then recovered from a regular speed of new height.\",video of a teenage girl and several boys in life jacket demonstrating film stunts.,raises her arm in graze and ornate swallows.,gold1-reannot,pos,unl,unl,unl,unl,\"Wiping her mouth, she settles back into her seat and uses one finger to poke around the vomit.\",She\nlsmdc3019_COLOMBIANA-8398,12931,Someone reads a comic book as she waits on a platform for an approaching l train. Someone,climbs on and takes a seat.,scrambles to the tracks and knocks the suv over.,holds the note up before he reads its case.,stares wide - eyed at it at various types of papers for buy sale.,looks and then backs away.,gold0-reannot,pos,unl,pos,pos,pos,Someone reads a comic book as she waits on a platform for an approaching l train.,Someone\nlsmdc3019_COLOMBIANA-8398,12940,Another punch sends thick streams of his blood flying. Someone,winds up for another blow.,\"rushes out of the camera, approaches someone.\",pushes it back in again.,\"goes back as he scrolls through, while ripper spreads on the side.\",looks around and finds someone's piercing in the temple.,gold0-reannot,pos,unl,unl,unl,unl,Another punch sends thick streams of his blood flying.,Someone\nlsmdc3019_COLOMBIANA-8398,12912,\"He types a command and information scrolls up the screen. His mouth hanging agape, he\",shifts his astonished gaze to someone.,nervously crosses his hands where he sets the scroll anglia in the air.,flexes his jaw.,opens the grail diary.,gazes softly through the driver's window.,gold0-reannot,pos,unl,unl,unl,unl,He types a command and information scrolls up the screen.,\"His mouth hanging agape, he\"\nlsmdc3019_COLOMBIANA-8398,12883,\"As she acrobatically makes her way down to a terrace, the brawny gunman spots her from the rooftop. He\",leaps down after her.,picks up a bucket and crosses to another area.,loads her black glasses and sees the strange girl in the hallway.,goes upstairs then jumps to her knees and covers her face with one hand.,aims his gun at a black truck whose bearded skeleton is being lowered.,gold0-reannot,pos,unl,unl,unl,unl,\"As she acrobatically makes her way down to a terrace, the brawny gunman spots her from the rooftop.\",He\nlsmdc3019_COLOMBIANA-8398,12913,\"His mouth hanging agape, he shifts his astonished gaze to someone. His older colleague\",hits a button on his desk which activates a camera.,looks up from the bushes with a grin.,trade a shaky nod as the driver follows him.,stares at the larger animal.,pecks his friend's cheek.,gold0-reannot,pos,unl,unl,unl,pos,\"His mouth hanging agape, he shifts his astonished gaze to someone.\",His older colleague\nlsmdc3019_COLOMBIANA-8398,12884,\"Meanwhile, someone and some men take off in an suv. Scrambling over a low wall, someone\",smashes through a wood plank roof and lands on a table.,\"climbs wood with one hand and chain around her waist, her guns drawn.\",collapses in someone's arms as someone holding still in suspended watchful stare sets as he gazes round in stunned silence.,gets into an ambulance.,picks up an assault rifle with several fellow armed vehicles.,gold1-reannot,pos,unl,unl,unl,unl,\"Meanwhile, someone and some men take off in an suv.\",\"Scrambling over a low wall, someone\"\nlsmdc3019_COLOMBIANA-8398,12876,\"Racing into a bathroom, she slides open a window, pulls herself out and drops onto a ledge. Someone\",yanks the knife out of his hand.,is captured in slow motion.,comes out of the doorway and enters the pantry.,hides the book in the top of the pillar.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Racing into a bathroom, she slides open a window, pulls herself out and drops onto a ledge.\",Someone\nlsmdc3019_COLOMBIANA-8398,12894,Now our view soars over the city. Someone,runs down a long staircase between the crowded tiers of rundown homes.,shadows victim to a low dimly lit window as pov tracks through the winding rooftops.,pull up on a long club wearing suction freestanding and ghetto windows.,awakes in a performer room on tv in a billiard room.,\"stares after someone, then pauses and looks down.\",gold0-reannot,pos,unl,unl,unl,pos,Now our view soars over the city.,Someone\nlsmdc3019_COLOMBIANA-8398,12909,\"He recoils as she barfs on his desk. Wiping her mouth, she\",settles back into her seat and uses one finger to poke around the vomit.,\"halts around the corner of her room, studying the citizens of her drawing.\",holds all her drink together and slowly eats it.,\"looks up at someone, who looks down from her book, which's now black on her upper body.\",\"puts out her jaw and talks, it with numbers on it.\",gold0-reannot,pos,unl,unl,unl,unl,He recoils as she barfs on his desk.,\"Wiping her mouth, she\"\nlsmdc3019_COLOMBIANA-8398,12899,The thugs peer after her. Someone,shoots his handgun into the storm drain opening.,throws white mush to the table.,\"rushes out to them, hurries over, and hurries through a closed door.\",pulls up his fashionable vest and quarter ring and closes it.,drops to the floor and knees someone.,gold0-reannot,pos,unl,unl,unl,pos,The thugs peer after her.,Someone\nlsmdc3019_COLOMBIANA-8398,12911,\"Grimacing, he uses it to take the chip. He\",types a command and information scrolls up the screen.,takes off the tray and puts it on the luggage rack.,puts his hands into his mouth.,has stubble at his sides too.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Grimacing, he uses it to take the chip.\",He\nlsmdc3019_COLOMBIANA-8398,12965,Someone shifts his gaze and turns over his paper. He,turns over someone's slip of paper.,brings the edge of her lips into a pout.,closes it and displays a sharp smile.,scowls and shuts out the phone.,washes over him as he moves through his palms and letters.,gold1-reannot,pos,unl,unl,unl,unl,Someone shifts his gaze and turns over his paper.,He\nlsmdc3019_COLOMBIANA-8398,12932,\"She peers out her window then lowers her gaze to her Xena Warrior Princess comic. Later, someone\",walks a dimly lit alleyway.,flips through beams and arches her bony chin.,lies on the bed as rub follows.,searches smoking a cigarette as she peers around a rack at his distant weapon.,wipes the back of a razor against her long auburn hair.,gold0-reannot,pos,unl,unl,unl,unl,She peers out her window then lowers her gaze to her Xena Warrior Princess comic.,\"Later, someone\"\nlsmdc3019_COLOMBIANA-8398,12916,\"On the ground, the jet slows as it taxis on a tarmac. Someone and her escort\",sit in front of his desk.,leads the team through a series of high - hazmat buildings.,steps below with a long limp tray.,step out with their car.,climb up the deck and watch her crawl onto the rolling planetarium.,gold1-reannot,pos,unl,unl,unl,unl,\"On the ground, the jet slows as it taxis on a tarmac.\",Someone and her escort\nlsmdc3019_COLOMBIANA-8398,12969,\"He stares at her then affects a casual gaze. His brow furrowed, he\",plants his hands on the table.,glances over her shoulder through the treetops and peers to the station.,studies himself as a lantern.,returns to the dorm.,gives a graceful shake of the head.,gold1-reannot,pos,unl,unl,pos,pos,He stares at her then affects a casual gaze.,\"His brow furrowed, he\"\nlsmdc1047_Defiance-91744,10349,\"In his cabin someone is fighting the fever. At mealtime, as people huddle in groups, someone\",is standing at the food table.,is holding a plate of red wine from arm's.,sits at a table crypt - goers.,kicks aside passing pipe students.,stands with two other men.,gold1-orig,pos,unl,unl,unl,pos,In his cabin someone is fighting the fever.,\"At mealtime, as people huddle in groups, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11509,\"Confidently, he looks up at the white king. The white king's huge sword\",falls from his hands.,is almost pursuing the watchful medal.,has broken a plate.,is placed over his head.,,gold0-orig,pos,unl,unl,pos,n/a,\"Confidently, he looks up at the white king.\",The white king's huge sword\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11504,\"She moves steadily across the board, heading straight towards someone's black horse. He\",\"clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor.\",tentatively close on the border of the boat.,\"stands at the far end of the bar, then gives his four a long - robed stare.\",turns the body bag around.,\"is quite humble, as he moves his body toward her.\",gold0-orig,pos,unl,unl,unl,pos,\"She moves steadily across the board, heading straight towards someone's black horse.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11503,The white queen slowly turns. She,\"moves steadily across the board, heading straight towards someone's black horse.\",\"is in the dark, motioning round.\",looks up at the ruins of an open w's face.,closes the square door revealing someone striding across a stone.,reaches her shoulder to someone who sets the bird aside on her finger.,gold1-orig,pos,unl,unl,unl,unl,The white queen slowly turns.,She\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11511,It lies on the marble floor at someone's feet. He and someone,\"run to someone, and kneel beside him.\",\"sit down, then disappear into the darkness.\",\"fly in bed, passing someone to someone.\",follow past students as they run.,\"watch closely, rubbing his hand over her eyes.\",gold0-orig,pos,unl,unl,unl,pos,It lies on the marble floor at someone's feet.,He and someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11506,Someone steps hurriedly back onto her square. She,\"looks anxiously towards someone, who is lying unconscious.\",pulls someone's revolver from her back.,swings the bullet in the window and creating a fireball.,makes their way past dojo reaction students with a number of umbrellas on them.,peers in her seat.,gold1-orig,pos,unl,unl,unl,pos,Someone steps hurriedly back onto her square.,She\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11501,\"He closes his eyes as the black horse starts to move across the board, between the remains of the shattered stone chess pieces. Someone\",\"looks nervously at the white king, who wears a silver helmet.\",\"rushes two more agents at someone wearing a high, hooded robe and strides spears through the air, then his knees slides back in\",watches or smiles when he reaches for his gun which is obviously another from which he is being gored and strike.,crashes over for himself.,continues eating and pacing.,gold0-orig,pos,unl,unl,unl,pos,\"He closes his eyes as the black horse starts to move across the board, between the remains of the shattered stone chess pieces.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11505,\"He clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor. She\",stabs the black horse.,eyes - - mask creeping out on the vast courtyard and rocks before him.,peeks from escaping to a cart with agonized and wild smoke as it slithers along the slanted staircase.,grins - - but the arizona has just rolled away from the shame.,\"mounts the horse and takes a breath, the flashlight flashes as he stares, lowering's axe, and behind it.\",gold0-orig,pos,unl,unl,unl,unl,\"He clings onto the reins, shaking with fear, as the queen gets closer and closer, gliding over the smooth marble floor.\",She\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11510,The white king's huge sword falls from his hands. It,lies on the marble floor at someone's feet.,'s brown frees in reverse.,\"drops a robe which falls on top half of the golden foil, which vanishes in the night.\",crawls onto its back as it writhes against the stone.,\"bursts onto the patio, and reflects as it sleeps on his shoulders.\",gold0-orig,pos,unl,unl,unl,unl,The white king's huge sword falls from his hands.,It\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96219,11502,\"Someone looks nervously at the white king, who wears a silver helmet. Clasping a powerful sword, his hands\",are encased in metal armor.,avoided its huge length.,drops to his.,go to through the young wavy hair.,pass close to a train.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks nervously at the white king, who wears a silver helmet.\",\"Clasping a powerful sword, his hands\"\nanetv_8ErMpNsK3_c,15080,A little girl swings across the monkey bars on a playground. Her mother,talks as she watches her slide to the ground and start again.,stands and goes back to her dog.,stands on a swing and smiles at the boys watching.,slides down a slide.,tries to help her head and then pulls out of her other side.,gold0-orig,pos,unl,unl,unl,unl,A little girl swings across the monkey bars on a playground.,Her mother\nlsmdc0046_Chasing_Amy-68829,8605,He leans back into the couch and lets out a huge sigh. Someone,\"stares forward, wide - eyed.\",throws the ball over his shoulder and grabs his wrist.,gives someone a kiss.,gives him a kiss.,walks to the piano.,gold1-orig,pos,pos,pos,pos,pos,He leans back into the couch and lets out a huge sigh.,Someone\nlsmdc0046_Chasing_Amy-68829,8608,Someone moves to her side of the couch. Someone,\"looks at him, sadly.\",points the purse again around someone as the van drives past.,continues talking as someone opens the bathroom door.,sits on the couch watching tv.,is staring straight ahead.,gold1-orig,pos,unl,unl,pos,pos,Someone moves to her side of the couch.,Someone\nlsmdc0046_Chasing_Amy-68829,8607,Then he looks at someone. Someone,moves to her side of the couch.,\"plays outside, out of the car.\",\"stands next to him, about to row the chairs off of his desk.\",enters the locker room and takes a seat on the back.,pulls back the paper to reveal someone walking in front of the house.,gold1-reannot,pos,unl,unl,pos,pos,Then he looks at someone.,Someone\nlsmdc0046_Chasing_Amy-68829,8609,\"Someone looks at him, sadly. Shocked someone\",lets out a sigh of relief.,pushes the opponent away loudly.,windmills a shabby bra.,looks toward the gun bag.,turns this to someone.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone looks at him, sadly.\",Shocked someone\nanetv_5SpWmZxECqc,8877,The girl runs product through her hair and leads into her brushing her hair and spraying in more product. She,continues to comb and ends by pointing to the camera and showing off her hair.,looks back to the camera and begins to fluff the fur on the dogs head.,continues to show and thinks a few more times.,zooms back over the hair and begins washing her hair with the finished product.,gives the final product and shows a bottle of spray cutting her hair and ends by cutting it up.,gold1-orig,pos,unl,unl,unl,unl,The girl runs product through her hair and leads into her brushing her hair and spraying in more product.,She\nanetv_5SpWmZxECqc,6841,She sprays it with a spray bottle and continues brushing her hair. She,finishes and gives a thumbs up.,is wearing a fake shirt and gloves and brushing off blush in the mirror.,continues smoking and smiling to the camera.,finishes drying the hair off of her face and finishes it.,,gold0-orig,pos,unl,unl,pos,n/a,She sprays it with a spray bottle and continues brushing her hair.,She\nanetv_5SpWmZxECqc,6840,A woman is brushing her hair. She,sprays it with a spray bottle and continues brushing her hair.,uses the blow dryer to blow her hair up.,brushes and uses a comb to cut her hair.,\"clips her hair, then pushing her hair down.\",,gold0-orig,pos,unl,unl,unl,n/a,A woman is brushing her hair.,She\nanetv_5SpWmZxECqc,8876,A woman is seen looking at the camera and making various movements while several camera effects are added. The girl,runs product through her hair and leads into her brushing her hair and spraying in more product.,began moving around and playing with one another as well as playing badminton.,continues brushing while her hair continues talking to the camera.,puts down her briefcase and lays out various corn chips on the end.,,gold1-reannot,unl,unl,unl,unl,n/a,A woman is seen looking at the camera and making various movements while several camera effects are added.,The girl\nanetv_NHznDFD3V3k,10085,Man is in the subway holding a vacuum cleaning the floor. people,are sitting on benches on the subway.,are sitting in a chair getting a tattoo.,vacuums down the offices of carpet.,are doing karate moves in a living room.,are in the area working in the site.,gold0-orig,pos,unl,unl,unl,unl,Man is in the subway holding a vacuum cleaning the floor.,people\nanetv_NHznDFD3V3k,12122,\"The man then takes out fries and dumps them on the floor and begins eating the fries off the ground. While he is doing it, several people walking by stop\",to take pictures in amusement that he is eating off the ground.,holding the tray and shutting it out.,watch and start chopping a sandwich.,eating it up and ends with him walking.,eating such as work or eat him.,gold0-orig,pos,unl,unl,unl,unl,The man then takes out fries and dumps them on the floor and begins eating the fries off the ground.,\"While he is doing it, several people walking by stop\"\nanetv_NHznDFD3V3k,12121,\"Once there are less people, the man walks in and plugs up a vacuum and begins to clean. The man then\",takes out fries and dumps them on the floor and begins eating the fries off the ground.,lays down on the carpet and fixes him with a metal towel.,uses the vacuum cleaner for space to lift up all the clothes.,grabs a volume and starts to wax the carpet.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Once there are less people, the man walks in and plugs up a vacuum and begins to clean.\",The man then\nanetv_NHznDFD3V3k,10087,The man throw french fries in the floor and is eating from the floor and grab a bread slice to grab ketchup from the floor. people,are watching the man with contempt.,put a wooden fork on the side of the table and then blended.,\"dip cookies in the sunny and put off icing, wet, and make brown sauce.\",are standing in one of the cookie ads and put it in the pineapple pool.,\"put in cookies, then ram the door with a spatula.\",gold0-reannot,pos,unl,unl,unl,unl,The man throw french fries in the floor and is eating from the floor and grab a bread slice to grab ketchup from the floor.,people\nanetv_SFfB6qvT5FI,12675,He bungee jumps in the air. He,falls off a tower backwards into the air.,goes off the jump four times.,takes a leap into the air and falls down again.,runs over to another high jump competition.,is standing in another boxcar in the wilderness.,gold0-orig,pos,unl,unl,unl,unl,He bungee jumps in the air.,He\nanetv_SFfB6qvT5FI,17430,Man is recording a video while is jumping on a bungee. man,is in free fall holds to harness.,is standing on th hills alone.,is showing the man intensely for the rock.,is going on a lake and getting a sail in the ocean.,flips spinning the car in the air.,gold1-orig,pos,unl,unl,unl,unl,Man is recording a video while is jumping on a bungee.,man\nanetv_SFfB6qvT5FI,17431,Man is in free fall holds to harness. man,is jumping from a bridge in a city.,lifts them his legs as he brings them to a harness.,is standing at the top of the hill.,is jumping to a ski rail in a forest.,,gold0-orig,pos,unl,unl,pos,n/a,Man is in free fall holds to harness.,man\nanetv_SFfB6qvT5FI,12674,A man jumps off a tower. He bungee,jumps in the air.,runs down the ramp.,jumps on the platform.,jumps down a ramp.,jumps into the sand.,gold1-orig,pos,unl,unl,unl,unl,A man jumps off a tower.,He bungee\nanetv_9UpVdljXQ4E,10941,Man is sanding in the middle of street skating. another man,is in street with him and are skating together.,is wearing a saxophone sitting on the snowy sidewalk recording the video.,is doing the same kind exercises.,picks up a stick from a tennis court and walks away.,is wearing a helmet falls on the rope.,gold0-orig,pos,unl,unl,unl,unl,Man is sanding in the middle of street skating.,another man\nanetv_9UpVdljXQ4E,8604,A close up of the skates are shown. A skater,bends over as they skate.,is talking to in a parade.,changes events in a booth.,holds up a skateboard on the pavement.,,gold1-orig,pos,unl,unl,pos,n/a,A close up of the skates are shown.,A skater\nanetv_9UpVdljXQ4E,10942,Another man is in street with him and are skating together. a couple,is walking inn the middle of street behind the skater.,is swinging with the girl attached to the man.,of people are laying on stilts in a cross street in the ring.,\"of the men begin to get, but the camera continues to turn away.\",\"of men are talking on a field, with racquets and field stilts.\",gold0-orig,pos,unl,unl,unl,unl,Another man is in street with him and are skating together.,a couple\nanetv__Wag6CT_0j8,5040,People are playing soccer on a field of grass. A woman in a black shirt,is talking to people holding a microphone.,is standing in the middle of another street.,sits on a pile of uneven hopscotch.,is standing in the background.,,gold0-orig,pos,unl,unl,pos,n/a,People are playing soccer on a field of grass.,A woman in a black shirt\nanetv__Wag6CT_0j8,13561,\"The team wearing white t - shirt scores, and they jumps to celebrate. A tv reporter\",interviews players talking and asking questions to them.,walks in slow move.,is interviewed from a point of people dressed with red and red uniforms.,is gathered in the back of the video.,,gold0-orig,pos,unl,unl,unl,n/a,\"The team wearing white t - shirt scores, and they jumps to celebrate.\",A tv reporter\nanetv__Wag6CT_0j8,5041,A woman in a black shirt is talking to people holding a microphone. People,are standing behind them.,are warming up to a camera.,are playing on the drums leading to the beach.,\"are standing behind him, playing a guitar.\",are doing exercise doing aerobic exercises.,gold0-reannot,pos,unl,unl,pos,pos,A woman in a black shirt is talking to people holding a microphone.,People\nanetv_gvHcfC9snJA,17577,She holds a curling iron in her hair. She,takes the curling iron out of her hair.,demonstrates how to clean raketball.,braids her hair while she finishes the braid.,braids her hair into a braid.,throws the baton high.,gold0-orig,pos,unl,unl,unl,unl,She holds a curling iron in her hair.,She\nanetv_xoXTlNWkC7w,13300,\"A black screen is shown and various white words are shown. After, a Caucasian man\",is shown playing the hand drums and stomping his foot.,is wearing a pretty black and black leotard.,\"is shown on a sandy beach, navigating the large river.\",is shown sucking a fork under a wax bar.,is shown skating with his partner in a bar.,gold1-orig,pos,unl,unl,unl,unl,A black screen is shown and various white words are shown.,\"After, a Caucasian man\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18868,\"Someone leans forward in her seat, looking thoughtful. As she stares out of the window, memories of someone\",pass through her mind.,is tending to the destruction.,fall face - on someone.,sieve and melt into her skin.,raises her mouth in pain.,gold0-orig,pos,unl,unl,pos,pos,\"Someone leans forward in her seat, looking thoughtful.\",\"As she stares out of the window, memories of someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18867,Someone has a notebook open. Someone,\"leans forward in her seat, looking thoughtful.\",hands him a bunch of carrots.,stares at the food.,\"stares tipsily at someone, who nods.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone has a notebook open.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89577,18866,He looks over at his wife and gives her a little wave. She and someone,exchange a knowing smile.,sit in their doorway.,have reached the door.,exchange cheers as they sway to the music.,walk along a crowded boardwalk.,gold0-orig,pos,unl,unl,pos,pos,He looks over at his wife and gives her a little wave.,She and someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24580,16864,The jar falls over the edge. The Greens,watch with wide eyes.,are brought up by two fountains.,swings a knife all along the glass.,rises to his feet.,drop from the ridge.,gold0-orig,pos,unl,unl,unl,unl,The jar falls over the edge.,The Greens\nlsmdc3051_NANNY_MCPHEE_RETURNS-24580,16865,Someone faces him and someone bolts. Swirl,leaves around someone as she heads home.,points to the fingertips of his gun.,take a toy growth.,load on the cell and plummet.,rush into the crowd.,gold0-reannot,pos,unl,unl,unl,unl,Someone faces him and someone bolts.,Swirl\nlsmdc3051_NANNY_MCPHEE_RETURNS-24580,16867,A mechanical wood carved man pump up and down. Someone,picks a leaf from her hair and then hurries into the house.,takes his gun out of the pocket of the pistol holding it from someone's bald holster.,\"casts himself a few inches, folds himself back thoughtfully, then steps onto the ceiling.\",stands by a railing holding his sword as she hands it over.,cleans some of the broomstick in its hand and begins to begin rowing.,gold0-reannot,pos,unl,unl,unl,unl,A mechanical wood carved man pump up and down.,Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24580,16866,Swirl leaves around someone as she heads home. A mechanical wood,carved man pump up and down.,crash uses a coil to cover.,sits in a store.,has picked up and bear mail.,overtakes a bright window.,gold1-reannot,unl,unl,unl,unl,unl,Swirl leaves around someone as she heads home.,A mechanical wood\nanetv_l9jSJaV0DA0,7927,\"A boy stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it. The boy then\",stands on the board rocking back and forth on it.,goes back up to the orange and bends his head off by dipping the surfboard into the water doing it once more.,puts down the white shirt and spins around on the end when again he does it.,goes back a little and throws a lot of sticks into place.,,gold0-orig,pos,unl,unl,unl,n/a,\"A boy stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it.\",The boy then\nanetv_l9jSJaV0DA0,7926,A boy demonstrates how to ride a skateboard in the street through example. A boy,\"stands, outdoors, holding a skateboard in his arms and then puts the board down and begins to step on it.\",puts the skateboard on a dirt head.,is seen standing up in snowboard down the hill while talking.,picks up a skateboard while come on and moves it in the background.,does a trick and performs a high beam during a competition.,gold0-orig,pos,unl,unl,pos,pos,A boy demonstrates how to ride a skateboard in the street through example.,A boy\nanetv_l9jSJaV0DA0,7929,The boy then exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard. The boy then,returns to the curbside and puts one foot on the board and the other on the ground as he stands still.,stops in the trunk on the bicycle.,\"spins the skateboard around in the skateboard, and begins to ride the tubes on the side.\",\"comes back with several different angles of the bars, as a bike slides downhill.\",,gold0-orig,pos,unl,unl,unl,n/a,The boy then exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard.,The boy then\nanetv_l9jSJaV0DA0,7928,The boy then stands on the board rocking back and forth on it. The boy then,exhibits upper body twists while standing on the skateboard and eventually pushes off and rides into the street on the skateboard.,reaches the top of the diving board.,jumps down the slope on his back as the man does jumps with water ropes and skis.,begins to smile as he struggles to make the sand work on the office floor as he hops up the stairs.,holds up the torch without looking off in the distance.,gold0-orig,pos,unl,unl,unl,unl,The boy then stands on the board rocking back and forth on it.,The boy then\nanetv_Z-syOvXCc20,8833,A young child is seen sitting on a swing set when an older man steps behind him and pushes. The boy,moves back and fourth on the swing and leads to the boy jumping off and the man looking surprised.,moves around and jerks the boy several times while the camera captures him from the upper frame and on.,chases and hits the man twice on the walk.,continues swinging the pinata around him as he pans around the tree and show more shots of the equipment.,continues spinning around and around in the background.,gold0-orig,pos,unl,unl,unl,unl,A young child is seen sitting on a swing set when an older man steps behind him and pushes.,The boy\nanetv_Z-2Gwqt_GCQ,7117,\"Then, the person puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor. The person\",removes stains on the floor using a cloth with a special solution.,sets all the bucket again and begins to dust them on the chair.,cleans the dog with clean.,shows how the vacuum is made and puts the mop again in the pile of morgue supplies.,clean the sink with soap and drinks and water to add the sponge.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the person puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor.\",The person\nanetv_Z-2Gwqt_GCQ,7116,\"The person cleans the hard floor using a dust mop. Then, the person\",\"puts a cup of detergent in a litter of water, then wet a cloth and attaches to a handle to mop the floor.\",brushes an exercise off.,throws the men into the bucket.,has the clean hand put leaf tied paint.,puts collector pieces of metal on the ski and then speedily wallpaper parts of a wall.,gold0-orig,pos,unl,unl,unl,unl,The person cleans the hard floor using a dust mop.,\"Then, the person\"\nanetv_Z-2Gwqt_GCQ,7115,A person gather mops and cleaning materials on a hard floor. The person,cleans the hard floor using a dust mop.,then stops mopping the floor.,rub a sponge and sand a rug off a rug.,dresses the flooring on the tiles.,moves on plastic and liquid as they make calls out.,gold0-orig,pos,unl,unl,unl,unl,A person gather mops and cleaning materials on a hard floor.,The person\nlsmdc3047_LIFE_OF_PI-22063,19645,\"He falls back into the water, hanging by his knees from the life preserver. Waking, he\",jolts up and gasps.,\"drops his shiny, dark dress pockets, and goes into the cargo ship.\",searches through the viewer and turns on the light on its way.,throws the glass so glowering it becomes impossible.,\"closes one earring, and sits facing the door, still staring at the ceiling and staring at his face still swollen.\",gold0-orig,pos,unl,unl,unl,unl,\"He falls back into the water, hanging by his knees from the life preserver.\",\"Waking, he\"\nlsmdc3047_LIFE_OF_PI-22063,19585,\"Getting his bearings, he looks back at the lifeboat, then gazes out over the roiling water. A giant wave\",looms stories high above him.,appears on them as a plane comes flying in the ocean behind them on.,\"forms the ship's sea, which captures the road.\",knocks the surfer back to the first railcar.,crashes slowly down the river toward them.,gold0-orig,pos,unl,unl,unl,pos,\"Getting his bearings, he looks back at the lifeboat, then gazes out over the roiling water.\",A giant wave\nlsmdc3047_LIFE_OF_PI-22063,19674,\"Later still, he ties the life jacket to the end of an oar spoke, balancing the raft's buoyancy. A shark swims\",\"passed as he works, spotting it.\",leap from the window of a boat ship.,beneath it and stops to sculpting the sand onto his raft.,about for his head.,beyond the window at the ocean side and hundreds of surfers together to float through the water.,gold0-orig,pos,unl,unl,unl,unl,\"Later still, he ties the life jacket to the end of an oar spoke, balancing the raft's buoyancy.\",A shark swims\nlsmdc3047_LIFE_OF_PI-22063,19546,He braces himself and climbs to his feet. The ship,plunges into a wave sending water crashing over him.,fires at hundreds of feet beneath the roiling green canopy of artificial tirith.,'s huge figure glides over the stair railing above it.,\"pulls away, revealing his vest and revealing underneath his hard vest.\",,gold0-orig,pos,unl,unl,pos,n/a,He braces himself and climbs to his feet.,The ship\nlsmdc3047_LIFE_OF_PI-22063,19587,Someone takes a deep breath and submerges. The wave briefly,rolls him as it passes by.,\"dismounts from the boat, extending his arm as it sails overhead to reveal people yellowstone boarding distance.\",follows someone's gaze.,disappears from the night sky.,forms a desert view.,gold0-orig,pos,unl,unl,unl,unl,Someone takes a deep breath and submerges.,The wave briefly\nlsmdc3047_LIFE_OF_PI-22063,19650,\"Opening it, he finds a red booklet titled, Survival at Sea lying atop an array of supplies. Someone\",takes it out and flips through pages illustrated with diagrams.,peeks into the living room.,\"sits nearby, coloring in a bowl of wax.\",cautiously enters and stops by the open door talking to the sounds.,squeezes it out of his shirt and takes a small pouch from the pouch.,gold0-orig,pos,unl,unl,unl,unl,\"Opening it, he finds a red booklet titled, Survival at Sea lying atop an array of supplies.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19584,\"Scrambling to the prow, someone dives into the water. Getting his bearings, he\",\"looks back at the lifeboat, then gazes out over the roiling water.\",reaches into his pocket and pulls out his paper.,stands as a general digs through a hole in the gap - between the rocks towards the surface.,notices a young man wearing a dark suit.,,gold0-orig,pos,unl,unl,pos,n/a,\"Scrambling to the prow, someone dives into the water.\",\"Getting his bearings, he\"\nlsmdc3047_LIFE_OF_PI-22063,19722,\"At the prow, someone lifts the end of the canvas cover and peers beneath. Nestled inside, Richard Parker\",snarls up at him but makes no move to rise.,\"calls over a gigantic, half classmates wave.\",pauses to find himself in someone's dingy living room.,gets to his feet.,heaves a sigh of relief.,gold1-orig,pos,unl,unl,pos,pos,\"At the prow, someone lifts the end of the canvas cover and peers beneath.\",\"Nestled inside, Richard Parker\"\nlsmdc3047_LIFE_OF_PI-22063,19694,The teen grabs the rodent. Richard Parker,\"pauses, staring hungrily.\",tosses the opportunity to peer down at the huge towering creature which races toward him.,applies the diving chops behind someone.,continues covering the faces.,tosses his surfboard into the bag.,gold0-orig,pos,unl,unl,unl,unl,The teen grabs the rodent.,Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19675,\"A shark swims passed as he works, spotting it. The boy\",climbs on top of the raft.,is trapped behind the boat.,slows to the left and paddles on.,manages to swim after it.,grabs a tiny knife and struggles to run down the board.,gold0-orig,pos,pos,pos,pos,pos,\"A shark swims passed as he works, spotting it.\",The boy\nlsmdc3047_LIFE_OF_PI-22063,19617,\"Someone drops the oar and retreats to the prow beam. Clinging by his arms, he\",swings himself around so his legs dangle over the water.,sticks view of the glowing passage past himself.,\"zips out, closing in on a sea of gulls.\",pulls the man over his head.,hurries a board to door and calls to someone.,gold0-orig,pos,unl,unl,unl,unl,Someone drops the oar and retreats to the prow beam.,\"Clinging by his arms, he\"\nlsmdc3047_LIFE_OF_PI-22063,19582,A wave carries the beast to the lifeboat's rim. Richard Parker,grabs on and climbs partially aboard.,reaches the bench and touches the pole.,stands in the reeds.,squeezes it for several seconds.,,gold1-orig,pos,unl,unl,unl,n/a,A wave carries the beast to the lifeboat's rim.,Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19618,\"Clinging by his arms, he swings himself around so his legs dangle over the water. Curling his abdominal muscles, he\",lifts his legs and fits them through the life preserver.,leans on the bar.,mixes the bowl and smears it down his chin.,pulls someone on to the foot and rides away on the dirt.,sits back again and raises his fingers to his face.,gold1-orig,pos,unl,unl,unl,pos,\"Clinging by his arms, he swings himself around so his legs dangle over the water.\",\"Curling his abdominal muscles, he\"\nlsmdc3047_LIFE_OF_PI-22063,19711,\"Later, he puts the folded torn out in an empty water can and caps it. As we\",watch from a distance.,drift back down to someone.,\"start down, we see the shape moving toward.\",\"drift back down the slide, his messy hair is pumped outside.\",\"drift into a clearing, he drops it.\",gold0-orig,pos,unl,unl,unl,pos,\"Later, he puts the folded torn out in an empty water can and caps it.\",As we\nlsmdc3047_LIFE_OF_PI-22063,19686,Richard Parker lunges at him. He,\"staggers back, snapping irritably at the fabric.\",walks towards the village.,\"points at his board, then tumbles backwards from wet lifeboat.\",pulls his body up to the ground.,reaches in and grabs a fish and shoves it into his own bowl.,gold1-orig,pos,unl,unl,unl,unl,Richard Parker lunges at him.,He\nlsmdc3047_LIFE_OF_PI-22063,19537,\"He staggers and steadies himself on a railing as he moves along. Turning, he\",faces a door with a port hole.,sets it down as he bobs.,sees two mechanical limbs fly up onto a spacious floor.,sees someone's pursed lips hanging slack.,,gold0-orig,pos,unl,unl,pos,n/a,He staggers and steadies himself on a railing as he moves along.,\"Turning, he\"\nlsmdc3047_LIFE_OF_PI-22063,19724,Someone gives a small nod and gazes into the animal's fierce amber eyes. The teen,\"lowers the flap, then pushes the boat off.\",regards the image directly to someone's profile.,wears a wet towel as he descends the grand staircase.,\"looks around in pain, his gun behind her head.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone gives a small nod and gazes into the animal's fierce amber eyes.,The teen\nlsmdc3047_LIFE_OF_PI-22063,19625,\"The teen gives her a weary smile then leans over the side of the boat. In the water, the banana bundles\",float free of the netting.,\"folded, puts its arms around her waist.\",turns and goes to the swimming pool.,push the goateed man to the boat.,,gold0-orig,pos,unl,unl,pos,n/a,The teen gives her a weary smile then leans over the side of the boat.,\"In the water, the banana bundles\"\nlsmdc3047_LIFE_OF_PI-22063,19691,\"Richard Parker charges forward, his head jetting up from the canvas' open flap at the bow. His enormous mass knocks someone onto his back on the canvas and the rat\",scurries along the cover.,lifts someone out of the grungy room and into her arms.,chases him from across the field.,shoots like a bird.,lurches into the tail.,gold0-orig,pos,unl,unl,unl,pos,\"Richard Parker charges forward, his head jetting up from the canvas' open flap at the bow.\",His enormous mass knocks someone onto his back on the canvas and the rat\nlsmdc3047_LIFE_OF_PI-22063,19604,\"Shaking his head, he catches his breath and peers down into the water. He\",watches helplessly as the ship sinks further beneath the churning waves.,flips off his board and puts it on the toilet seat.,\"looks into the portrait, and down the hallway.\",repeatedly lifts his brows and storms off.,,gold0-orig,pos,unl,unl,pos,n/a,\"Shaking his head, he catches his breath and peers down into the water.\",He\nlsmdc3047_LIFE_OF_PI-22063,19613,A hyena emerges from the canvas shelter. The hyena,darts back under the canvas.,is set up on the dock.,inserts a pointed look at someone.,continues on its journey.,,gold0-orig,pos,unl,pos,pos,n/a,A hyena emerges from the canvas shelter.,The hyena\nlsmdc3047_LIFE_OF_PI-22063,19712,As we watch from a distance. Someone,stands from the center of his raft and throws the can with all his might.,\"looks down, then we zoom on.\",\"his gun at the security of two guys, someone shoots a last look at someone, who stands, guns in hand.\",\"beats herself upon the wheels, who pushes her harder into the tank.\",\"adjusts it, and the young man's grave original, running down the path to the back of the tree and down the street\",gold1-orig,pos,unl,unl,unl,unl,As we watch from a distance.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19728,\"Reading it on his bobbing raft, someone looks over his shoulder. Now someone\",reads through the book and follows its advice.,puts two glasses of white wine on a table.,\"walks into a wild neighborhood, squinting in the bright sun.\",joins the monkey in a large blue coupe.,,gold0-orig,pos,unl,unl,unl,n/a,\"Reading it on his bobbing raft, someone looks over his shoulder.\",Now someone\nlsmdc3047_LIFE_OF_PI-22063,19561,A sailor gives him a life jacket. The someone,struggles to free a lifeboat carrying the cook.,looks back over the warehouse.,holds her overalls and boots and strides off.,joins in slow motion and pulled into the backpacks that falls off the jetty.,takes his cap off.,gold0-orig,pos,unl,unl,unl,pos,A sailor gives him a life jacket.,The someone\nlsmdc3047_LIFE_OF_PI-22063,19579,He slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver. Two paws and a large furry head,emerge from the center of the ring.,\"appears outside of the door with the cat on its head, crawling dipped on the water, beside it.\",\"on a cloud who were propped up on the plant, gazing out on its hands.\",\"creature, and someone marches down the middle of his forest towards someone.\",are floating on its back.,gold0-orig,pos,unl,unl,unl,unl,He slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver.,Two paws and a large furry head\nlsmdc3047_LIFE_OF_PI-22063,19656,The life preserver crowns it and three long handled oars criss - cross out from it. As someone,struggles to maneuver it into the water.,\"rolls to a stop, people watch.\",rips the van door open.,\"turns, 400 sailors turn toward the radio.\",,gold0-orig,pos,unl,unl,pos,n/a,The life preserver crowns it and three long handled oars criss - cross out from it.,As someone\nlsmdc3047_LIFE_OF_PI-22063,19567,Someone loses his grip on the lines and the lifeboat plummets to the sea. Someone,lands on his belly and struggles to hold on as the boat bucks on the churning waters.,rolls to someone who trips unsteadily in the sand.,\"stares at the sky, then turns his head, as richard parker struggles toward a board.\",lies surfing on a jet.,,gold0-orig,pos,unl,unl,pos,n/a,Someone loses his grip on the lines and the lifeboat plummets to the sea.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19680,\"Now, perched at the prow of the lifeboat, someone drinks down the contents of a can. He\",\"fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft.\",helps herself to her feet.,\"turns to someone, who hands him the tin, and sits.\",\"stirs the wave, and runs across the pier into the water.\",removes a takeout platter.,gold0-orig,pos,unl,unl,unl,unl,\"Now, perched at the prow of the lifeboat, someone drinks down the contents of a can.\",He\nlsmdc3047_LIFE_OF_PI-22063,19550,\"Sobered, he races back inside. He\",staggers through a corridor.,stands up and starts to run.,stumbles back out from another box.,straightens on his oversized leather jacket.,,gold0-orig,pos,unl,unl,pos,n/a,\"Sobered, he races back inside.\",He\nlsmdc3047_LIFE_OF_PI-22063,19540,\"As he steps along a walkway, his feet slide on the wet flooring. He\",stumbles as the ship violently rocks and he catches himself on a banister.,takes on the light as he holds the house beneath his neck.,\"kisses his head, then takes his turn and positions it into the rack lamp.\",presses a button and thrusts the crank off the leaves frame.,\"feels it, and puts on a gold light coat on his head, and clothes - of remains in the water.\",gold0-orig,pos,unl,unl,unl,unl,\"As he steps along a walkway, his feet slide on the wet flooring.\",He\nlsmdc3047_LIFE_OF_PI-22063,19653,He takes one out and tosses it to Orange Juice. The orangutan,\"picks it up, turning it in her hands and feet as she examines it.\",melts in and out of dough then rings with a pop so happy it is free.,takes photographs of the whole point of view.,\"man flings her around, as the agent gets in her saddle.\",,gold1-orig,pos,unl,unl,unl,n/a,He takes one out and tosses it to Orange Juice.,The orangutan\nlsmdc3047_LIFE_OF_PI-22063,19548,It leaves the upper deck flooded as he recovers. Someone,watches two sailors moving frantically below with flashlights.,focuses on his mouth legs and swims down the shaft.,pulls out a lever and it's med women are seen up close on it.,leans towards the slats of tiled walkway.,opens the door to speak into the cabin where he attempts to peek over his shoulder.,gold0-orig,pos,unl,unl,pos,pos,It leaves the upper deck flooded as he recovers.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19592,The deck lights glow as the ocean's depths claim the vessel. Someone,looks on helplessly as the ship descends into the deep.,follow both outside at the same path.,lowers it from her grasp and ventures forward a few steps.,filters all along the eiffel tower.,makes her way back to someone.,gold0-orig,pos,unl,unl,unl,pos,The deck lights glow as the ocean's depths claim the vessel.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19669,Richard Parker swats it from his grasp. As the tiger,climbs onto the canvas.,\"chucks it in place, the pilot's crotch dangles on the tile.\",draws back on his tip clock.,brings his hand back.,\"connects back a protective gate, the surfer slides down a rope.\",gold1-orig,unl,unl,unl,unl,unl,Richard Parker swats it from his grasp.,As the tiger\nlsmdc3047_LIFE_OF_PI-22063,19583,\"Richard Parker grabs on and climbs partially aboard. Scrambling to the prow, someone\",dives into the water.,is at the bottom with little splash.,smacks him on the head.,races up the front of the ship.,,gold0-orig,pos,unl,pos,pos,n/a,Richard Parker grabs on and climbs partially aboard.,\"Scrambling to the prow, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19647,\"In the boat, the zebra lies dead. Orange Juice\",\"slumps against the edge of the canvas cover taking slow, deep breaths.\",climbs into the back of the truck's body.,bounces through the air and explodes.,split many stories and faces across the water.,give a glowing life title to above.,gold1-orig,pos,unl,unl,unl,unl,\"In the boat, the zebra lies dead.\",Orange Juice\nlsmdc3047_LIFE_OF_PI-22063,19636,\"Rediscovering someone, it leaps at him. The teen\",scrambles back and fends off harry with the oar.,\"turns back on the line, raising his fist.\",lands on the old man's face.,jerks his head upward.,takes off his helmet and flings him to his knees.,gold0-orig,pos,unl,unl,pos,pos,\"Rediscovering someone, it leaps at him.\",The teen\nlsmdc3047_LIFE_OF_PI-22063,19709,He write with a pencil. He,presses the tip to the paper making a period.,takes the bag from someone's bag.,absently trots a song through his pages.,\"finds something, and then stands.\",sees it and reads it.,gold0-orig,pos,unl,unl,pos,pos,He write with a pencil.,He\nlsmdc3047_LIFE_OF_PI-22063,19700,Someone pushes off from the boat on his raft. Richard Parker,returns to the center of the boat as the frightened teen paddles away.,stretches out his hand to get the veteran from someone.,\"swims away from the ship, just before someone is gone.\",\"steps forward from the water's edge, then rides downhill.\",climbs slowly up the boat and ties around the base of the massive tire.,gold0-orig,pos,unl,unl,unl,unl,Someone pushes off from the boat on his raft.,Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19608,\"A shark passes beneath him. Glancing down at it, someone\",struggles his way to the canvas covered bow.,\"limps across the field, trapped in sand.\",passes in a different direction.,sees two young boys crawling topples.,,gold0-orig,pos,unl,unl,unl,n/a,A shark passes beneath him.,\"Glancing down at it, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19572,The lifeboat carries someone through the wreckage. A boom,sweeps low over his head.,struggles against the shore surface.,holds the shore of a wide lake near the river.,falls from the raft's stern.,\"hangs from someone's grasp, then kayaks down the titanic slope.\",gold1-orig,pos,unl,unl,unl,unl,The lifeboat carries someone through the wreckage.,A boom\nlsmdc3047_LIFE_OF_PI-22063,19570,It carries him past the shouting men at the edge of the ship's deck. A giant wave,washes them from view.,knocks the keen off the submarine.,of soldiers decks themselves.,stops at the costco paddy field.,sweeps away from someone as someone struggles to stand forward.,gold1-orig,pos,unl,unl,unl,unl,It carries him past the shouting men at the edge of the ship's deck.,A giant wave\nlsmdc3047_LIFE_OF_PI-22063,19564,Someone tumbles across the canvas cover and hangs off the edge. Someone,climbs back up and scrambles around as the others shout at him.,rams a car with a long pump.,makes it for her mother.,does a wheelie and lifts his mobile to the air.,,gold0-orig,pos,unl,unl,unl,n/a,Someone tumbles across the canvas cover and hangs off the edge.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19682,\"Someone takes a handful of cans from the supply hatch and drops those in as well. Taking out small boxes, he\",chucks one in and opens the other.,pulls a box from someone's handcuffs.,swings an ax onto a stone.,holds them on the top of a suitcase.,,gold0-orig,pos,unl,unl,unl,n/a,Someone takes a handful of cans from the supply hatch and drops those in as well.,\"Taking out small boxes, he\"\nlsmdc3047_LIFE_OF_PI-22063,19665,\"Landing on the zebra, Richard Parker kills the hyena with a wrench of his jaws. Behind him, someone\",scrambles for his makeshift raft.,joins his hmong neighbor in the foyer.,\"tries to open, and pulls out a small corn's.\",pulls photos off a pumpkin.,hacks his dead fuel by the flaming rottweiler.,gold1-orig,unl,unl,unl,unl,unl,\"Landing on the zebra, Richard Parker kills the hyena with a wrench of his jaws.\",\"Behind him, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19626,\"In the water, the banana bundles float free of the netting. Someone\",gathers up the net.,takes off the decree equipment.,walks aside as someone opens the front door.,shifts her head to someone.,flips through the torn pages.,gold0-orig,pos,unl,unl,unl,unl,\"In the water, the banana bundles float free of the netting.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19701,\"Richard Parker returns to the center of the boat as the frightened teen paddles away. Stopping a few yards from the boat, someone\",vomits into the water.,turns and blinks at someone.,flips them over and laughs.,wheels the boat back to the boat.,steps closer to someone.,gold1-orig,pos,unl,unl,unl,unl,Richard Parker returns to the center of the boat as the frightened teen paddles away.,\"Stopping a few yards from the boat, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19622,\"Someone follows its gaze, peering across the surf. Harry\",ducks into the canvas.,takes a cigarette from her purse and stubs it out in the wastebasket.,shadow pedestrians through a photo.,\"of a and someone, paddles in the water.\",\"is through at the bottom of the door and struggle - - - someone gives her long, short unlock further away.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone follows its gaze, peering across the surf.\",Harry\nlsmdc3047_LIFE_OF_PI-22063,19549,Someone watches two sailors moving frantically below with flashlights. Someone,reaches for them futilely as they wash overboard.,addresses from the recruits and someone climbs onto the multitude of seats.,sits alone through the large doorway and sees a student from tunnels moving along trees.,looks out the window.,,gold1-orig,pos,unl,unl,pos,n/a,Someone watches two sailors moving frantically below with flashlights.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19563,\"The someone, captain and the sailor shove him onto the boat. Someone\",tumbles across the canvas cover and hangs off the edge.,runs in with the soldier chasing him down.,\"moves closer to someone, who musters a spell.\",faces someone who stands.,grips the railing at the driver's side railing.,gold0-orig,pos,unl,unl,unl,unl,\"The someone, captain and the sailor shove him onto the boat.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19588,\"The wave briefly rolls him as it passes by. Staying under, someone\",swims past a shark as he makes his way beyond the lifeboat.,\"steps up to the top of the boat, stands up and paddles higher.\",hops back over his hood and claps an elbow to the bar shakes his head.,holds sparking arms under a rope.,leans back on his knee.,gold0-orig,pos,unl,unl,unl,unl,The wave briefly rolls him as it passes by.,\"Staying under, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19652,\"Lifting another hatch, the teen finds it packed with life jackets. He\",takes one out and tosses it to orange juice.,chases someone through a wide parking walkway.,\"glances down at the creature's body for a moment, then hurries from the bathroom.\",\"pulls it up, revealing her body to balance a train from the station ramp.\",,gold1-orig,unl,unl,unl,unl,n/a,\"Lifting another hatch, the teen finds it packed with life jackets.\",He\nlsmdc3047_LIFE_OF_PI-22063,19707,As we peer down on them from above. Someone,maintains his cross - legged pose as he watches the boat.,is getting shown fully clothed.,slides the wedding suite drapes shut and draws one after two.,\"stares expectantly at someone's head then runs over to him, removing his arm.\",and 50 ford v8 squeezes their eyes from the trunk and approaches the fleeing men.,gold0-orig,pos,unl,unl,unl,unl,As we peer down on them from above.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19586,A giant wave looms stories high above him. Someone,takes a deep breath and submerges.,steps onto a raft above the ocean.,reaches for the girl's hand to open her legs.,lifts his hand and pulls out from the smoke.,,gold0-orig,pos,unl,unl,unl,n/a,A giant wave looms stories high above him.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19593,\"Turning away, he swims. Two other sharks\",fight over a fresh kill beneath him.,lift them off and finds her resting on the table.,suspended from small decks.,greet him as he catches.,,gold0-orig,pos,unl,unl,unl,n/a,\"Turning away, he swims.\",Two other sharks\nlsmdc3047_LIFE_OF_PI-22063,19535,Someone climbs a flight of stairs and enters a corridor. The door,swings shut behind him.,swings open into someone's living room.,\"carrying a woman, wearing a brown jeans, sits beside someone, who walks into the chaise lounge.\",opens and someone steps to the bathroom door and walks inside.,opens and someone enters.,gold0-orig,pos,unl,unl,unl,pos,Someone climbs a flight of stairs and enters a corridor.,The door\nlsmdc3047_LIFE_OF_PI-22063,19602,\"He leans far out, clinging to the mast. A wave\",sends a blast of spray into his face.,crawls out a rescue boat full of manmade prisoners.,reflects a hundred palm something.,knocks him across the ground towards him.,knocks him to the ground below.,gold0-orig,pos,unl,unl,unl,unl,\"He leans far out, clinging to the mast.\",A wave\nlsmdc3047_LIFE_OF_PI-22063,19692,His enormous mass knocks someone onto his back on the canvas and the rat scurries along the cover. Richard Parker,emerges from the opening at the boat's center and climbs partway up on the canvas.,\"sneaks up beside him, on the edge of the unmasked past cliff.\",\"sits asleep on a bench from a log and stands beside the eagles, resting his hand on his stomach.\",strokes the troll's bloody nose.,grabs someone and shuffles the body.,gold0-orig,pos,unl,unl,unl,pos,His enormous mass knocks someone onto his back on the canvas and the rat scurries along the cover.,Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19568,Someone lands on his belly and struggles to hold on as the boat bucks on the churning waters. Someone,\"slides backward, landing at a wave that buoys him back on the boat again.\",leaps up and pretends to clouds the jet.,rushes across the water toward a steady gait.,\"leans down, watching him with a hopeful smile but salutes feet.\",\"leaps from someone's, running the path.\",gold0-orig,pos,unl,unl,unl,unl,Someone lands on his belly and struggles to hold on as the boat bucks on the churning waters.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19717,\"Tethered a few yards off, the lifeboat appears empty and peaceful. Richard Parker\",\"emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim.\",slowly open the wings to reveal a deep gap near a nearby branch.,peers glances toward his commander's face to ram ready to be something.,produces the plastic cover.,,gold1-orig,pos,unl,unl,pos,n/a,\"Tethered a few yards off, the lifeboat appears empty and peaceful.\",Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19620,\"From his makeshift seat, he watches Harry mid - boat as the hyena tries to climb up onto the canvas. The beast\",\"makes it only half way up, its hind legs staggering with the rocking of the boat.\",is hauled off top by a man who bounces.,has its feet still.,\"has a huge but overhand ball on its hand, lies it on either side of the wooden board, narrowly missing people.\",,gold0-orig,pos,unl,unl,unl,n/a,\"From his makeshift seat, he watches Harry mid - boat as the hyena tries to climb up onto the canvas.\",The beast\nlsmdc3047_LIFE_OF_PI-22063,19634,\"He drops to all fours and picks up the bucket. Lying on his belly, he\",slams it against the boat's hull.,opens a dimly lit living room.,\"shows someone some tiny spiders, rolling on muddy ravine between shaving i porcelain stick.\",takes a covered bundle of ice from his lap and tucks it around her mouth.,\"goes to turn, pauses and blinks a curved body with his combat drawn sword.\",gold0-orig,pos,unl,unl,unl,pos,He drops to all fours and picks up the bucket.,\"Lying on his belly, he\"\nlsmdc3047_LIFE_OF_PI-22063,19681,\"He fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft. Someone\",takes a handful of cans from the supply hatch and drops those in as well.,is being carried into several rough mountain and ranging from different ages.,is forced to an isolated shore.,frowns sadly and peers around the curtains for clouds.,begins to tiptoe toward the typewriter.,gold0-orig,pos,unl,unl,unl,unl,\"He fits a plastic lid on top, then drops it into a sack nestled at the center of his makeshift raft.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19639,\"Harry stops at the center, his body convulsing. He\",vomits on the floor.,turns and fumbles as someone slips away.,touches the clock and opens his eyes.,finishes and jumps up.,,gold0-orig,pos,unl,unl,pos,n/a,\"Harry stops at the center, his body convulsing.\",He\nlsmdc3047_LIFE_OF_PI-22063,19727,\"Now a map from the survival book illustrates the world's ocean currents with inter - swirling circles. Reading it on his bobbing raft, someone\",looks over his shoulder.,sits up at a table.,\"waves to the bus, then signals over to the captain.\",walks down beside someone.,gently dabs his lips.,gold0-orig,pos,unl,pos,pos,pos,Now a map from the survival book illustrates the world's ocean currents with inter - swirling circles.,\"Reading it on his bobbing raft, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19595,The tempestuous waters swirl over someone as he makes his way back to the surface. The teen,thrusts his head above water and gasps.,\"averts his gaze, leaving someone alone, then shakes his head.\",gets up to the edge the edge of the bunk and watches him.,\"peers into his hair with a furrowed brow, then blinks.\",reaches in his hand.,gold0-orig,pos,unl,unl,unl,unl,The tempestuous waters swirl over someone as he makes his way back to the surface.,The teen\nlsmdc3047_LIFE_OF_PI-22063,19703,\"At night, a full moon shines through a gap in the clouds. On the boat, Richard Parker\",drags the zebra carcass out of view.,shoots his point of view at someone.,\"run out of the jungle as the exposed cabin of his boat, then explodes against a large jug across the river.\",hauls someone toward an iceberg.,swims along the dock until the pulled ship.,gold0-orig,pos,unl,unl,unl,pos,\"At night, a full moon shines through a gap in the clouds.\",\"On the boat, Richard Parker\"\nlsmdc3047_LIFE_OF_PI-22063,19576,\"He frantically waves his arm at the ship. Peering into the seemingly endless expanse of rolling waves, someone\",spots a figure in the water.,jumps off a thread and flips him down.,raises a hand over its nose.,\"lowers him into a deep, exhausted daze.\",crashes through the grill of him to the stream.,gold0-orig,pos,unl,unl,unl,unl,He frantically waves his arm at the ship.,\"Peering into the seemingly endless expanse of rolling waves, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19629,\"Facing someone, she grimly works her lips and folds her long arms. As someone\",faces her with a concerned expression.,rubs off her face.,\"picks up the book, someone crouches.\",shimmies at his knee from someone.,\"stares straight ahead with a knowing look, his other hand hesitates, his lips flicking, then reaches out and folds the hand.\",gold0-orig,pos,unl,unl,unl,pos,\"Facing someone, she grimly works her lips and folds her long arms.\",As someone\nlsmdc3047_LIFE_OF_PI-22063,19716,\"The boy turns, looking over his shoulder. Tethered a few yards off, the lifeboat\",appears empty and peaceful.,reaches the shore and stands in the crop.,spins away into the area as his raft trembles.,is flung open as someone heads into the shop.,,gold0-orig,pos,unl,unl,pos,n/a,\"The boy turns, looking over his shoulder.\",\"Tethered a few yards off, the lifeboat\"\nlsmdc3047_LIFE_OF_PI-22063,19624,Someone extends an oar to her and she climbs aboard. The teen,gives her a weary smile then leans over the side of the boat.,\"stands in front a bandage and removes her jacket, then gazes around the notepad and covers the daughter's eyes.\",rolls her hips and sits close near the tiger.,chase his friend onto the ground and guides their hips in the air.,gives a out nod.,gold1-orig,pos,unl,unl,unl,pos,Someone extends an oar to her and she climbs aboard.,The teen\nlsmdc3047_LIFE_OF_PI-22063,19676,The boy climbs on top of the raft. Now Richard Parker,lies still beneath the canvas shelter.,zooms away from the rocky cave climbing.,\"throws himself to his feet, tries to start the fire.\",rides away from the wreck as someone readies the cold bulk of the boat.,,gold1-orig,pos,unl,pos,pos,n/a,The boy climbs on top of the raft.,Now Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19581,Someone jabs futilely at the tiger with the oar. A wave,carries the beast to the lifeboat's rim.,\"flies past, leaving their pursuers in the hole.\",spreads beneath someone's face.,smashes through the window on which we'd see.,sends a few of his teammates holding the boy.,gold0-orig,pos,unl,unl,unl,unl,Someone jabs futilely at the tiger with the oar.,A wave\nlsmdc3047_LIFE_OF_PI-22063,19601,\"Someone climbs back on the canvas cover, then scrambles to the prow. He\",\"leans far out, clinging to the mast.\",\"closes someone's book, then gives a determined frown.\",turns back to the possessed figure and stares in at the spider.,turns forward and tugs on the metal rail which rolls himself up onto generator prepped.,gets stopped by the casket's approaches.,gold1-orig,pos,unl,unl,unl,pos,\"Someone climbs back on the canvas cover, then scrambles to the prow.\",He\nlsmdc3047_LIFE_OF_PI-22063,19640,\"He vomits on the floor. Licking his chops, he\",makes another try for someone but slumps weakly against the canvas.,wipes dead sugar using the substance.,swerves to center edge of the table and grabs it.,slips past the broad partition then peers out from his envelope.,knocks his coat over it.,gold0-orig,pos,unl,unl,unl,unl,He vomits on the floor.,\"Licking his chops, he\"\nlsmdc3047_LIFE_OF_PI-22063,19569,\"Someone slides backward, landing at a wave that buoys him back on the boat again. It\",carries him past the shouting men at the edge of the ship's deck.,is nearly squishes by the fan in the water.,soars down the road now choppy water.,checks the suspended hurdle he aims it into the sea.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone slides backward, landing at a wave that buoys him back on the boat again.\",It\nlsmdc3047_LIFE_OF_PI-22063,19633,\"Standing on the canvas cover, someone turns. He\",drops to all fours and picks up the bucket.,\"unfastens, exposing someone's waist.\",seizes him up and throws him to the ground.,grips his wand with both hands.,knocks and explodes several times.,gold1-orig,unl,unl,unl,unl,unl,\"Standing on the canvas cover, someone turns.\",He\nlsmdc3047_LIFE_OF_PI-22063,19543,\"He struggles to perform a worshipful dance. Getting to his feet, he\",notices a red light flashing from a high post.,adjusts his light momentarily.,lifts his head and lifts it up to his shoulders.,moves quickly and undoes a strap over the boy's arm.,takes out someone's flannel shirt as he rumbles beneath it.,gold0-orig,pos,unl,unl,unl,unl,He struggles to perform a worshipful dance.,\"Getting to his feet, he\"\nlsmdc3047_LIFE_OF_PI-22063,19723,\"Nestled inside, Richard Parker snarls up at him but makes no move to rise. Someone\",gives a small nod and gazes into the animal's fierce amber eyes.,sticks his rifle's ear towards it!,\"moves out of the room, and walks away, clinging to his flippers.\",lets him go with his ax as the wind howls around him.,collapses back into his chair as someone lies prone on the beach as someone runs towards him.,gold0-orig,pos,unl,unl,pos,pos,\"Nestled inside, Richard Parker snarls up at him but makes no move to rise.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19538,\"Turning, he faces a door with a port hole. Someone\",peers through at the lightning flashing in the darkness.,\"remains on, as someone climbs into his chair.\",removes his pick from someone's box and holds it together.,takes a cluster of straws as he enters the bites.,emerges and opens it to reveal his tobacco.,gold0-orig,pos,unl,unl,unl,unl,\"Turning, he faces a door with a port hole.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19713,Someone stands from the center of his raft and throws the can with all his might. It,lands close to us and bobs peacefully in the water.,\"losing the grip, she goes closer to him, and raises his suspenders over the short drop of the capsizing rafters.\",someone blot out the fleeing robbers.,tries to stop but it's locked.,,gold0-orig,pos,unl,unl,unl,n/a,Someone stands from the center of his raft and throws the can with all his might.,It\nlsmdc3047_LIFE_OF_PI-22063,19657,As someone struggles to maneuver it into the water. Harry,emerges from the canvas shelter.,\"over the net, someone uses the mic.\",soar through the murky darkness of night.,\", someone heads for the water.\",steers the steering wheel downwards to a left angle.,gold0-orig,pos,unl,unl,unl,pos,As someone struggles to maneuver it into the water.,Harry\nlsmdc3047_LIFE_OF_PI-22063,19672,\"Someone leaps from the boat, following a rope, tethering the raft to the lifeboat. He tries to climb on top of the raft but it\",rolls under his weight.,\"enjoys silently, then pulls into the again steering.\",'s firmly for him.,falls on the surface.,narrows him down and sinks to center deck.,gold0-orig,pos,unl,unl,unl,pos,\"Someone leaps from the boat, following a rope, tethering the raft to the lifeboat.\",He tries to climb on top of the raft but it\nlsmdc3047_LIFE_OF_PI-22063,19702,\"Stopping a few yards from the boat, someone vomits into the water. At night, a full moon\",shines through a gap in the clouds.,shines on the oar ship.,glows on the pale sky of autumn's horizon.,is peeking through in the backyard.,sweeps their images across the horizon.,gold1-orig,pos,pos,pos,pos,pos,\"Stopping a few yards from the boat, someone vomits into the water.\",\"At night, a full moon\"\nlsmdc3047_LIFE_OF_PI-22063,19718,\"Richard Parker emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim. He\",gazes out over the vast expanse of motion - less sunlit sea.,\"is gaunt, carried off to his cage.\",\"slips in the girdle, moves on to his kayak, and climbs down from its lifeless back.\",\"slowly raises his hands up high in the air, then faces over.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Richard Parker emerges from the canvas shelter at the center of the boat, steps up on a seat below its rim.\",He\nlsmdc3047_LIFE_OF_PI-22063,19603,\"A wave sends a blast of spray into his face. Shaking his head, he\",catches his breath and peers down into the water.,catches the safety view leaving his tracks.,drinks the blood soaking the boy's eyes.,gazes out his window as the sun flares.,,gold0-orig,pos,unl,unl,unl,n/a,A wave sends a blast of spray into his face.,\"Shaking his head, he\"\nlsmdc3047_LIFE_OF_PI-22063,19580,Two paws and a large furry head emerge from the center of the ring. Someone,jabs futilely at the tiger with the oar.,\"looks at someone, hearing the sound of the witch.\",walking out on a beach help with life.,\"stands upright in front of the man, her mouth brushing and crying.\",jumps from the ship's funnels and lands in the water.,gold0-orig,pos,unl,unl,unl,unl,Two paws and a large furry head emerge from the center of the ring.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19685,\"Looking down, he finds a sizable rat scurrying over the cans. Someone\",watches it as he eats.,stares at the helpless enemy.,glances down at the horses shoulder.,grabs the soap from his hands.,has them in the mud.,gold0-orig,pos,unl,unl,unl,unl,\"Looking down, he finds a sizable rat scurrying over the cans.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19689,\"He walks along the benches lining the boat's perimeter, pausing to paw at the zebra carcass. With the animal distracted, someone\",starts to climb from the prow.,grabs the motorcycle from his growling mechanical arms.,clears a decision and dashes across toward the french gate.,looks at the typewriter then leaps to his car.,drops the white and sticky patch over the kitty's lap.,gold1-orig,unl,unl,unl,unl,unl,\"He walks along the benches lining the boat's perimeter, pausing to paw at the zebra carcass.\",\"With the animal distracted, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19621,\"The beast makes it only half way up, its hind legs staggering with the rocking of the boat. The spotted hyena\",\"keeps its four paws on the canvas, staring at someone.\",shakes the tiger back up.,\"around the boat's prow, but someone points back to the stern.\",knocks several traditional items on the jukebox.,,gold0-orig,pos,unl,unl,unl,n/a,\"The beast makes it only half way up, its hind legs staggering with the rocking of the boat.\",The spotted hyena\nlsmdc3047_LIFE_OF_PI-22063,19594,Two other sharks fight over a fresh kill beneath him. The tempestuous waters,swirl over someone as he makes his way back to the surface.,probe the surface of the compartments tossed out over the sphere.,pan the flares again to capture a effect.,are shown on in the nature of dismay.,keep the ships afloat.,gold1-orig,pos,unl,unl,unl,pos,Two other sharks fight over a fresh kill beneath him.,The tempestuous waters\nlsmdc3047_LIFE_OF_PI-22063,19532,His parents sleep in a bed across the room. He,leans down to the bottom bunk and shakes his sleeping brother.,stands beside him and someone without breaths.,returns from his bottle to the fat guy.,positions himself on a desk in front of him with his mouth open.,pulls the little boy off his couch revealing a blonde boy with two coffees.,gold0-orig,pos,unl,unl,pos,pos,His parents sleep in a bed across the room.,He\nlsmdc3047_LIFE_OF_PI-22063,19545,\"Falling again, someone slides into a barrier at the edge of the upper deck. He\",braces himself and climbs to his feet.,speeds off and soars onto the mountainside.,cowers onto someone's side in front of the trembling soldier.,\"stands on the edge of the ropes, and he hurdles a bend.\",\"runs out into the street, taking up her wrist and waving them in her direction.\",gold0-orig,pos,unl,unl,unl,unl,\"Falling again, someone slides into a barrier at the edge of the upper deck.\",He\nlsmdc3047_LIFE_OF_PI-22063,19651,\"Someone takes it out and flips through pages illustrated with diagrams. Lifting another hatch, the teen\",finds it packed with life jackets.,offers a unique web to someone.,sets up a newspaper and writes someone's solution.,rubs his fingers on his clock.,sets the instrument carefully and lifts his face.,gold0-orig,pos,unl,unl,unl,unl,Someone takes it out and flips through pages illustrated with diagrams.,\"Lifting another hatch, the teen\"\nlsmdc3047_LIFE_OF_PI-22063,19557,\"Someone hangs onto the door frame and tries futilely to pull himself into his family's quarters. Releasing it, he\",drifts back down the corridor and returns to the deck.,slides across the sofa into frame.,pulls the throttle shut.,regains his hold as the gang leader grabs his friend's torch and cuts his cane through paper.,strides back down the waterfall.,gold0-orig,pos,unl,unl,unl,unl,Someone hangs onto the door frame and tries futilely to pull himself into his family's quarters.,\"Releasing it, he\"\nlsmdc3047_LIFE_OF_PI-22063,19668,\"Standing, someone picks up the oar. Richard Parker\",swats it from his grasp.,passes it to the waiter.,jumps out of a fish window and sits up.,lifts his brow and watches his son.,hits a tree to one side.,gold1-orig,pos,unl,unl,unl,pos,\"Standing, someone picks up the oar.\",Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19693,Richard Parker emerges from the opening at the boat's center and climbs partway up on the canvas. The rat,climbs up someone's arm and over his head.,follows someone as he detaches in the arms of the naked body.,sticks it behind him and gazes up at the muddy bush.,catches the marauder's feeding - shaped fish.,\"leaps up from a rock at a petite young boy, who's staring past him.\",gold0-orig,pos,unl,unl,unl,pos,Richard Parker emerges from the opening at the boat's center and climbs partway up on the canvas.,The rat\nlsmdc3047_LIFE_OF_PI-22063,19679,\"Someone eagerly climbs in to retrieve them. Now, perched at the prow of the lifeboat, someone\",drinks down the contents of a can.,drives by at the end of a beautiful day.,watches as dozens of surfers's boats soar through the air.,crouches down on the low seat of her raft.,\"transfers away from the tall, square tower.\",gold0-orig,pos,unl,unl,unl,unl,Someone eagerly climbs in to retrieve them.,\"Now, perched at the prow of the lifeboat, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19599,Someone climbs on to the deck with the zebra who lies curled up on its side on one end. Knee - deep water,sloshes around the deck.,\", someone opens the coconut.\",\", someone packs his coat and pillow.\",looks around the cross in bright sunlight.,\", someone blows back the cape.\",gold0-orig,pos,unl,unl,unl,unl,Someone climbs on to the deck with the zebra who lies curled up on its side on one end.,Knee - deep water\nlsmdc3047_LIFE_OF_PI-22063,19643,\"Someone and Orange Juice watch helplessly as Harry kills the zebra. On a gently rolling current, someone\",sits in the makeshift seat at the boats prow.,passes for each more fondly.,in a soft sony armchair.,kicks against with photos of us.,paddles as he paddles first.,gold0-orig,pos,unl,unl,unl,unl,Someone and Orange Juice watch helplessly as Harry kills the zebra.,\"On a gently rolling current, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19649,\"He lifts away a hatch beneath the canvas cover and finds a duffle inside. Opening it, he\",\"finds a red booklet titled, survival at sea lying atop an array of supplies.\",\"finds the man's toad, which is pushed down by someone.\",steps past the small fuel pipe which looks up at the cloudy sky.,pulls out a pistol and gives it to a worker.,,gold0-orig,pos,unl,pos,pos,n/a,He lifts away a hatch beneath the canvas cover and finds a duffle inside.,\"Opening it, he\"\nlsmdc3047_LIFE_OF_PI-22063,19631,Someone settles wearily onto the canvas. He,gives a resigned sigh.,replaces it in a tawny dog rack.,digs around the manuscript.,rises from his feet and ventures down.,,gold0-orig,pos,unl,unl,pos,n/a,Someone settles wearily onto the canvas.,He\nlsmdc3047_LIFE_OF_PI-22063,19666,\"Behind him, someone scrambles for his makeshift raft. As he pushes it overboard, the tiger\",faces him with a snarl.,mounts a wave as the pursues towers over him.,creeps toward the creature.,bares its teeth as he pulls someone's gun gun.,breaks free and loads his gun.,gold0-orig,pos,unl,unl,unl,unl,\"Behind him, someone scrambles for his makeshift raft.\",\"As he pushes it overboard, the tiger\"\nlsmdc3047_LIFE_OF_PI-22063,19721,\"Tugging hand over hand, he reels the boat closer. At the prow, someone\",lifts the end of the canvas cover and peers beneath.,lies dead on his.,distorts his emotional gaze to the shotgun box.,lowers his binoculars and watches himself disappearing.,heads close to the edge of the ship as tears cross his.,gold1-orig,pos,unl,unl,unl,pos,\"Tugging hand over hand, he reels the boat closer.\",\"At the prow, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19558,An animal leaps passed him. A bird,seeks refuge in the nearby tower.,bursts through and went from the beam.,swoops up and hurls it high into the board.,scampers from its nose.,is carried away from the tank.,gold1-orig,pos,unl,unl,unl,pos,An animal leaps passed him.,A bird\nlsmdc3047_LIFE_OF_PI-22063,19541,He stumbles as the ship violently rocks and he catches himself on a banister. He,\"catches himself on a railing and clings to it as he beams down at the churning, roiling ocean.\",flashes proudly and takes his glass from the flask.,runs through the crowd and flings it down onto his shoulder.,drops someone on the octagonal structure.,\"stands down at the edge, barely paying its surfaces, gets off and starts over his head.\",gold0-orig,pos,unl,unl,unl,unl,He stumbles as the ship violently rocks and he catches himself on a banister.,He\nlsmdc3047_LIFE_OF_PI-22063,19696,\"Someone throws the rat at the tiger who catches it in his mouth. As Richard Parker slurps it down, someone\",jumps off the boat.,\"shoots the man near the corridor, grabs the fish, and flings him around a floor.\",'s dad gets down from the water.,fires over the deck and grabs the full tank.,defensively tilts his head then claps his hands.,gold0-orig,pos,unl,pos,pos,pos,Someone throws the rat at the tiger who catches it in his mouth.,\"As Richard Parker slurps it down, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19591,His limbs splayed as he stares at the enormous craft. The deck lights,glow as the ocean's depths claim the vessel.,debris rolling across the tiled floor.,slide down in a flurry of feathers.,flare up registering the wisps of peach.,shine brightly on the face.,gold0-orig,pos,unl,unl,pos,pos,His limbs splayed as he stares at the enormous craft.,The deck lights\nlsmdc3047_LIFE_OF_PI-22063,19729,\"Someone notices a rash along his side. Later, he\",\"lies back, his hands over his face.\",pushes the announcers stand.,\"speeds up its washed walkway, as sunlight shines in the windows.\",checks his keys home then pauses again.,steps out of the bank and finds someone lounging in bed next to the chair.,gold0-orig,pos,unl,unl,unl,unl,Someone notices a rash along his side.,\"Later, he\"\nlsmdc3047_LIFE_OF_PI-22063,19596,\"The teen thrusts his head above water and gasps. With long strokes, he\",swims back to the lifeboat.,puts his hands in the air.,gazes into the tiger's compartment.,reaches to the bottom and slows.,puts his arm around someone's neck and kisses her.,gold0-orig,pos,unl,unl,unl,unl,The teen thrusts his head above water and gasps.,\"With long strokes, he\"\nlsmdc3047_LIFE_OF_PI-22063,19673,\"He tries to climb on top of the raft but it rolls under his weight. Later, the boy\",persists as the bundle of life jackets loosens and rolls beneath his grasp.,whips his own hair and smooths it down.,makes his way round a grave that sits beside a ledge.,holds the bike to put a tire on one man on the other side.,,gold0-orig,pos,unl,unl,unl,n/a,He tries to climb on top of the raft but it rolls under his weight.,\"Later, the boy\"\nlsmdc3047_LIFE_OF_PI-22063,19575,Someone peers across the giant waves and locates the sinking ship. He,notices a whistle on his life jacket and blows it.,rears up and dives onto the deck.,slurps out a powder.,enters a state in a black driving suit.,grabs his cell phone and hands it to someone.,gold0-orig,pos,unl,unl,unl,pos,Someone peers across the giant waves and locates the sinking ship.,He\nlsmdc3047_LIFE_OF_PI-22063,19632,He gives a resigned sigh. Now flies,swarm around the injured zebra.,pull out of the pickup with someone.,\"a humble boathouse, a lovely opening door opens.\",\"front of a modest apartment building, where someone is sleeping and working out several groomers.\",,gold0-orig,pos,unl,unl,unl,n/a,He gives a resigned sigh.,Now flies\nlsmdc3047_LIFE_OF_PI-22063,19555,\"Reaching a door at the end of the corridor, he struggles to open it. It\",springs open releasing a powerful current of water and air bubbles.,\"grabs another man, looks around his neck and lays them on.\",removes his mask.,falls on the floor.,continues down a hallway as it returns to the down magic hall.,gold0-orig,pos,unl,pos,pos,pos,\"Reaching a door at the end of the corridor, he struggles to open it.\",It\nlsmdc3047_LIFE_OF_PI-22063,19547,The ship plunges into a wave sending water crashing over him. It,leaves the upper deck flooded as he recovers.,materializes to aim them at the ground.,emerge from its hind tentacles.,stretches out his arms.,sails backward as the boat shoots up.,gold0-orig,pos,unl,unl,pos,pos,The ship plunges into a wave sending water crashing over him.,It\nlsmdc3047_LIFE_OF_PI-22063,19705,\"Richard Parker peers out at him from the edge of the boat, his parted lips showing his long, sharp fangs. The tiger\",calmly flops his tail as he observes the boy.,\"continues glowering, shifting proudly.\",drags his horse then waves back towards the tiger.,lowers his head thoughtfully.,jumps up behind someone and folds his legs.,gold0-orig,pos,unl,unl,unl,unl,\"Richard Parker peers out at him from the edge of the boat, his parted lips showing his long, sharp fangs.\",The tiger\nlsmdc3047_LIFE_OF_PI-22063,19597,\"With long strokes, he swims back to the lifeboat. Another\",carries him to the boat's rim.,\"walks towards him, sending him tumbling down.\",watches as another boat consults the riding.,\"slices the seven, then glides across the wreck.\",stand and gazes around the buildings.,gold0-orig,pos,unl,unl,unl,unl,\"With long strokes, he swims back to the lifeboat.\",Another\nlsmdc3047_LIFE_OF_PI-22063,19542,\"He catches himself on a railing and clings to it as he beams down at the churning, roiling ocean. Stepping back, he\",looks skyward and waves his arms giddily.,finds richard parker strolling off.,swims in someone's direction.,glances at his bearded cousin.,,gold1-orig,pos,unl,unl,pos,n/a,\"He catches himself on a railing and clings to it as he beams down at the churning, roiling ocean.\",\"Stepping back, he\"\nlsmdc3047_LIFE_OF_PI-22063,19605,He watches helplessly as the ship sinks further beneath the churning waves. The ocean's rippling surface,distorts someone view of the lost vessel.,\"glides up, blowing beneath the water and supports.\",is pulsing with sunlight.,surface the rich sphere of a small stone and shoots into a low red surface.,,gold0-orig,pos,unl,unl,unl,n/a,He watches helplessly as the ship sinks further beneath the churning waves.,The ocean's rippling surface\nlsmdc3047_LIFE_OF_PI-22063,19684,\"Unwrapping a nutritional biscuit, he takes a big bite. Looking down, he\",finds a sizable rat scurrying over the cans.,spits the bottle at her then open the condom.,finds a huge stifle reading the manuscript.,holds up a copy of the forbidden.,,gold1-orig,pos,unl,unl,unl,n/a,\"Unwrapping a nutritional biscuit, he takes a big bite.\",\"Looking down, he\"\nlsmdc3047_LIFE_OF_PI-22063,19554,\"The teen passes through a dark section lit only by the pulsing red emergency lights. Reaching a door at the end of the corridor, he\",struggles to open it.,finds something still and misses.,moves to the opposite spot.,starts to go up.,\"heads to a second door where he stops, still not won.\",gold1-orig,pos,unl,unl,unl,unl,The teen passes through a dark section lit only by the pulsing red emergency lights.,\"Reaching a door at the end of the corridor, he\"\nlsmdc3047_LIFE_OF_PI-22063,19611,\"With weary, dogged motions, he scoops out one bucketful after another. Someone\",drops the bucket and collapses on the bench near the canvas cover's edge.,\"leaves the party as the cabby fixes her eyes on someone, who pulls her aside.\",grabs another dribble of food and jogs across the tables.,obeys him through the rear exit.,dances the tent as someone ushers someone out of their room.,gold1-orig,pos,unl,unl,unl,unl,\"With weary, dogged motions, he scoops out one bucketful after another.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19607,\"A section at a time, the deck lights flicker then blink out. Lightning flashes then\",diminishes leaving the boy alone in the darkness.,rockets over a bridge.,lurches high over the waves.,slowly pulses in the brilliant air.,glides through the sky.,gold0-orig,pos,unl,pos,pos,pos,\"A section at a time, the deck lights flicker then blink out.\",Lightning flashes then\nlsmdc3047_LIFE_OF_PI-22063,19687,\"He staggers back, snapping irritably at the fabric. Richard Parker\",turns his gaze out over the slate - grey water surrounding them.,approaches in a bucket and tosses the book.,begins grabbing the fish puppet.,takes a drink as someone makes a mocking tone.,\"turns away from him, by a coat over his shoulder.\",gold1-orig,pos,unl,unl,pos,pos,\"He staggers back, snapping irritably at the fabric.\",Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19667,\"As he pushes it overboard, the tiger faces him with a snarl. Standing, someone\",picks up the oar.,starts towards the camera again.,turns to his friends.,walks up to the doctor's portrait.,glares at someone who collapses.,gold0-orig,pos,unl,unl,unl,pos,\"As he pushes it overboard, the tiger faces him with a snarl.\",\"Standing, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19562,\"The someone leaps to someone. The someone, captain and the sailor\",shove him onto the boat.,\"move objects the coils and move a fork at each buoys, side by side.\",move over their sleds.,cower down a high river.,,gold0-orig,pos,unl,unl,unl,n/a,The someone leaps to someone.,\"The someone, captain and the sailor\"\nlsmdc3047_LIFE_OF_PI-22063,19571,A giant wave washes them from view. The lifeboat,carries someone through the wreckage.,is in a fierce storm of light.,is engulfed by a wave of energy.,begins to spin as they gaze skyward.,,gold0-orig,pos,unl,unl,pos,n/a,A giant wave washes them from view.,The lifeboat\nlsmdc3047_LIFE_OF_PI-22063,19635,\"Lying on his belly, he slams it against the boat's hull. The hyena\",emerges from beneath the canvas.,swims out of a distant sea.,plays a few bagpipe.,looks down as someone looks up.,,gold0-orig,pos,unl,unl,pos,n/a,\"Lying on his belly, he slams it against the boat's hull.\",The hyena\nlsmdc3047_LIFE_OF_PI-22063,19708,He uses blank pages in the survival book. He,write with a pencil.,\"sucks modeling a handkerchief, picks it up.\",\"slams through a protective desk, which anchors the book.\",wipes out the gas vest.,hunches his chair away and resumes reading.,gold1-orig,pos,unl,unl,unl,pos,He uses blank pages in the survival book.,He\nlsmdc3047_LIFE_OF_PI-22063,19648,\"Orange Juice slumps against the edge of the canvas cover taking slow, deep breaths. He\",lifts away a hatch beneath the canvas cover and finds a duffle inside.,takes the pillow and carries it along a dark day through the circular peach window into a crowded dark chamber.,\"manages to move in over the harmonica and continue to pass it by, up to the water.\",'s head approaches with water.,tilts a wand to the hall shore as light shines down against the stairs above.,gold0-orig,pos,unl,unl,unl,unl,\"Orange Juice slumps against the edge of the canvas cover taking slow, deep breaths.\",He\nlsmdc3047_LIFE_OF_PI-22063,19539,\"Venturing out, someone leans over a railing and scans his tempestuous surroundings. As he steps along a walkway, his feet\",slide on the wet flooring.,are drawn over two wheels on a loan car above them.,are guided by a rope above a brown cover of dangerous rock.,are covered in blood.,,gold0-orig,pos,unl,unl,unl,n/a,\"Venturing out, someone leans over a railing and scans his tempestuous surroundings.\",\"As he steps along a walkway, his feet\"\nlsmdc3047_LIFE_OF_PI-22063,19725,\"The teen lowers the flap, then pushes the boat off. Standing along in the vast, isolated expanse, he\",turns his gaze toward the sunlit clouds above.,pauses and looks down at its jagged fish hooves.,cries with her wide eyes.,\"picks up the food, empties the frustrated bodies into someone's adoring cups.\",waves for her to go.,gold0-orig,pos,unl,unl,unl,pos,\"The teen lowers the flap, then pushes the boat off.\",\"Standing along in the vast, isolated expanse, he\"\nlsmdc3047_LIFE_OF_PI-22063,19670,As the tiger climbs onto the canvas. Someone,curls up in a fetal position with his back to him and squeezes his eyes shut.,\"follows with it, then slides down gently on his legs.\",gazes at the light and an idea that spreads evenly across his back.,descends on a flying level.,sits on the back of the swing.,gold0-orig,pos,unl,unl,unl,unl,As the tiger climbs onto the canvas.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19589,\"Staying under, someone swims past a shark as he makes his way beyond the lifeboat. Turning, he\",finds himself facing the completely submerged ship.,glances toward the stage.,finds the grieving baby sitting on his gray chair.,poses with his mouth close to hers.,,gold0-orig,pos,unl,unl,unl,n/a,\"Staying under, someone swims past a shark as he makes his way beyond the lifeboat.\",\"Turning, he\"\nlsmdc3047_LIFE_OF_PI-22063,19732,\"Juxtaposed with the scenes, someone reads the book. On an overcast day, he\",studies the book on his raft.,\"wears someone, wears the day of the day.\",climbs the stairs in a network of bushes.,jogs out to rest at a pipe.,leans into a bedside table.,gold0-orig,pos,unl,unl,unl,pos,\"Juxtaposed with the scenes, someone reads the book.\",\"On an overcast day, he\"\nlsmdc3047_LIFE_OF_PI-22063,19577,\"Finding a life preserver, he climbs up on the canvas secured tautly over the front half of the boat. He\",casts the flotation device out into the water with all his might.,reaches his hand for a tin as the guard lays one leg against a metal.,\"hunches down, pulls the wooden tapestry out of the way, sets it up down, and walks toward the grand room.\",sets down the tattered skulls of clothes and hurls it onto a quill.,pulls himself on a low on it and leans pensively on the steps as the door slams shut once more.,gold1-orig,pos,unl,unl,unl,pos,\"Finding a life preserver, he climbs up on the canvas secured tautly over the front half of the boat.\",He\nlsmdc3047_LIFE_OF_PI-22063,19683,\"Taking out small boxes, he chucks one in and opens the other. Unwrapping a nutritional biscuit, he\",takes a big bite.,ascends the spiral staircase.,rings the hand - pressed turn.,stares at the page.,,gold0-orig,pos,unl,unl,pos,n/a,\"Taking out small boxes, he chucks one in and opens the other.\",\"Unwrapping a nutritional biscuit, he\"\nlsmdc3047_LIFE_OF_PI-22063,19720,\"Watching him calmly, someone crouches down and takes up the rope tether. Tugging hand over hand, he\",reels the boat closer.,illuminates someone's ears.,eats a cobbled oyster.,holds up a side incline.,holds out hard with his fist.,gold0-orig,pos,unl,unl,unl,unl,\"Watching him calmly, someone crouches down and takes up the rope tether.\",\"Tugging hand over hand, he\"\nlsmdc3047_LIFE_OF_PI-22063,19646,\"Waking, he jolts up and gasps. The sputtering teen\",manages to sit up and catch his breath.,gives a wry smile and flashes a smile.,takes up several huge deformed shapes and washes her.,holds a roll of eyes forward.,looks in the mirror as the back yard with a giant tentacle approaches.,gold0-orig,pos,unl,unl,unl,pos,\"Waking, he jolts up and gasps.\",The sputtering teen\nlsmdc3047_LIFE_OF_PI-22063,19699,\"Scraping his rear claws against the painted metal hull, the tiger climbs back aboard. Someone\",pushes off from the boat on his raft.,flies off into the forbidden forest.,\"walks into the clearing, slowing his pace.\",helps the ships back to life.,,gold0-orig,pos,unl,unl,unl,n/a,\"Scraping his rear claws against the painted metal hull, the tiger climbs back aboard.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19533,He leans down to the bottom bunk and shakes his sleeping brother. Someone,quickly pulls himself into his bunk as his mother rolls over.,\"is underwater, close to the water.\",\"holds the breadstick to his lips, dropping it squarely.\",sits quietly at a stone desk.,takes his right hand and adjusts its handle.,gold1-orig,pos,unl,unl,unl,unl,He leans down to the bottom bunk and shakes his sleeping brother.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19590,\"Turning, he finds himself facing the completely submerged ship. His limbs\",splayed as he stares at the enormous craft.,broken in circular directions.,flailing hard with rotting tentacles.,ripped through red bricks.,\"punctuated with anger, with the man on his stomach on the sphere, grappling knives both spins.\",gold1-orig,pos,unl,unl,unl,unl,\"Turning, he finds himself facing the completely submerged ship.\",His limbs\nlsmdc3047_LIFE_OF_PI-22063,19553,Gasping then submerges himself and swims onward. The teen,passes through a dark section lit only by the pulsing red emergency lights.,\"strokes his husband's rapids, then cups a hand over his mouth.\",takes out a chunk of cupcake and sets it on some toast.,\"stands briefly and makes for his ankle - length body, which has long, ornamental wooden.\",,gold0-orig,pos,unl,unl,unl,n/a,Gasping then submerges himself and swims onward.,The teen\nlsmdc3047_LIFE_OF_PI-22063,19573,\"Escaping the wreckage, the lifeboat briefly capsizes. As it rights itself, we\",find someone holding on tightly and the zebra lying inside.,glimpse the oncoming someone from in the hotel's hospital room.,hear someone rise into the air.,find a sea of gore speeding through the sky.,,gold0-orig,pos,unl,unl,unl,n/a,\"Escaping the wreckage, the lifeboat briefly capsizes.\",\"As it rights itself, we\"\nlsmdc3047_LIFE_OF_PI-22063,19698,\"As he tries to release the line, Richard Parker lunges over the prow swiping his massive claws at his head. Someone ducks and the tiger\",nearly falls off the boat.,gives him a fearful look.,\"tips over, then drops.\",raises his hands into the air.,,gold1-orig,pos,unl,unl,unl,n/a,\"As he tries to release the line, Richard Parker lunges over the prow swiping his massive claws at his head.\",Someone ducks and the tiger\nlsmdc3047_LIFE_OF_PI-22063,19677,\"Now Richard Parker lies still beneath the canvas shelter. At the boat's prow, someone\",peaks in at the tiger.,halts with a shoebox in his hand.,notices a circular fireplace.,lays his surfboard against his chest.,\"shifts his gaze to the ground, then mounts his horse.\",gold0-reannot,pos,unl,unl,unl,unl,Now Richard Parker lies still beneath the canvas shelter.,\"At the boat's prow, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19559,A bird seeks refuge in the nearby tower. Other animals,struggle for footing on the rocking ship.,watch as the roars and roars towards the performers train.,watch around sleeping on horses.,hang on to a mountain level.,hang itself on her shoulders.,gold0-reannot,pos,unl,unl,unl,unl,A bird seeks refuge in the nearby tower.,Other animals\nlsmdc3047_LIFE_OF_PI-22063,19600,Knee - deep water sloshes around the deck. Someone,\"climbs back on the canvas cover, then scrambles to the prow.\",looks up and realizes the decks are hovering.,\"brushes his hands over restlessly and glances on the edge of the divan, exposing his broken hand.\",\"gazes at the tiger, then watches him go.\",yards behind from a railing cobbled them sits with his women on their boat in quick downpour.,gold0-reannot,pos,unl,unl,unl,unl,Knee - deep water sloshes around the deck.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19536,The door swings shut behind him. He,staggers and steadies himself on a railing as he moves along.,closes the open hand and presses a key nostril to his temple.,\"takes the box key from his back pocket, and exits the room.\",\"looks around and stops, to indicate the issue.\",,gold0-reannot,pos,unl,pos,pos,n/a,The door swings shut behind him.,He\nlsmdc3047_LIFE_OF_PI-22063,19630,\"As someone faces her with a concerned expression. Turning her head over her shoulder, she\",gazes off over the water.,takes a seat toward him.,glances over her shoulder.,\"brushes her hair on her shoulder, sketches.\",peers up to her eyes.,gold1-reannot,pos,unl,unl,unl,unl,As someone faces her with a concerned expression.,\"Turning her head over her shoulder, she\"\nlsmdc3047_LIFE_OF_PI-22063,19663,Our view sweeps down to Orange Juice's body as it grows still. Blood,stains the wood near her throat.,\"puts the pillow down on top of someone, opens his mouth and drops it to his webbed shivering face.\",turns and smiles back.,\"chandelier surges into the living room, then draws away from the top of a staircase.\",,gold0-reannot,pos,unl,unl,unl,n/a,Our view sweeps down to Orange Juice's body as it grows still.,Blood\nlsmdc3047_LIFE_OF_PI-22063,19671,Someone curls up in a fetal position with his back to him and squeezes his eyes shut. Richard Parker,\"backs off, returning his attention to his kill.\",removes a chunk from the pumpkin and shows the man how to use it.,hangs his head and works his jaw as he pulls a handle.,edges away and spots glows appear.,\"sits on a steel chain, his arms bony in a door.\",gold1-reannot,pos,unl,unl,unl,unl,Someone curls up in a fetal position with his back to him and squeezes his eyes shut.,Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19556,It springs open releasing a powerful current of water and air bubbles. Someone,hangs onto the door frame and tries futilely to pull himself into his family's quarters.,\"sits, his bathrobe unbuttoned to his successful ponytail.\",stretches out or control.,\"swings herself around and flips over, then flattens herself against the french windows.\",clutches both of the fists and his fingers scraped back in.,gold1-reannot,unl,unl,unl,unl,unl,It springs open releasing a powerful current of water and air bubbles.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19706,As it illuminates the sky. As we,peer down on them from above.,see someone approach and approach the cage.,row the golden light of the sunset.,\", the big crewman washes a blast.\",,gold1-reannot,pos,unl,unl,unl,n/a,As it illuminates the sky.,As we\nlsmdc3047_LIFE_OF_PI-22063,19560,Other animals struggle for footing on the rocking ship. A sailor,gives him a life jacket.,\"accepts a line of cities, then climbs back.\",glides on as snowy dodges the lift.,pins up the toy's mouse.,,gold0-reannot,pos,unl,unl,unl,n/a,Other animals struggle for footing on the rocking ship.,A sailor\nlsmdc3047_LIFE_OF_PI-22063,19578,He casts the flotation device out into the water with all his might. He,slides a long handles oar out from beneath the canvas cover and extends it over the water toward the life preserver.,kills the metal cannon and pitches.,rolls around the top of the desert.,puts dwelling pieces of concrete into the bottom of it.,splashes people to its feet.,gold0-reannot,pos,unl,unl,unl,unl,He casts the flotation device out into the water with all his might.,He\nlsmdc3047_LIFE_OF_PI-22063,19637,The teen scrambles back and fends off Harry with the oar. The hyena briefly,leans over the edge the resumes its wild laps.,takes two boats at shore.,catches the reef continuously as the motorboat sails over land on large skis.,won toss in someone's goal.,,gold0-reannot,pos,unl,unl,unl,n/a,The teen scrambles back and fends off Harry with the oar.,The hyena briefly\nlsmdc3047_LIFE_OF_PI-22063,19644,The teen nods off again. He,\"falls back into the water, hanging by his knees from the life preserver.\",throws something into the mobile.,gently extends someone's hand and kisses someone gently on the forehead again.,faces the marauder medal.,throws a heavy ball into ron's head as they swim between him and the ice.,gold0-reannot,pos,unl,unl,unl,unl,The teen nods off again.,He\nlsmdc3047_LIFE_OF_PI-22063,19566,The boat tips and the cook falls off. Someone loses his grip on the lines and the lifeboat,plummets to the sea.,falls out of the dock.,carries a half mast.,swims to the river.,drops below the wave.,gold0-reannot,pos,unl,unl,unl,pos,The boat tips and the cook falls off.,Someone loses his grip on the lines and the lifeboat\nlsmdc3047_LIFE_OF_PI-22063,19697,\"As Richard Parker slurps it down, someone jumps off the boat. As he tries to release the line, Richard Parker\",lunges over the prow swiping his massive claws at his head.,scoots his feet out onto the bench near the toilet.,\"takes the seat, catches her brother and glares at someone.\",grimaces in size and pulleys.,slips a craft into the trees above the tiger and sits.,gold0-reannot,pos,unl,unl,unl,unl,\"As Richard Parker slurps it down, someone jumps off the boat.\",\"As he tries to release the line, Richard Parker\"\nlsmdc3047_LIFE_OF_PI-22063,19606,The ocean's rippling surface distorts someone view of the lost vessel. We,drift up and away from the boy as the lifeboat carries him over the ship's watery grave.,reigns against a tree trunk.,\"still, concentrates on.\",tend to beautiful chinese music.,run into a cartoon.,gold0-reannot,pos,unl,unl,unl,unl,The ocean's rippling surface distorts someone view of the lost vessel.,We\nlsmdc3047_LIFE_OF_PI-22063,19628,\"The orangutan lets it bounce off her shoulder and land on the flooded floor of the boat. Facing someone, she\",grimly works her lips and folds her long arms.,gazes out his window at the pacific pepper bar.,pushes the curls over his face and pulls out the pillow beside his woman.,tiptoes out and tucks it gently into someone's mouth.,shakes every piece of the magical smoke.,gold0-reannot,pos,unl,unl,unl,unl,The orangutan lets it bounce off her shoulder and land on the flooded floor of the boat.,\"Facing someone, she\"\nlsmdc3047_LIFE_OF_PI-22063,19664,\"Facing someone, he swings the knife. Landing on the zebra, Richard Parker\",kills the hyena with a wrench of his jaws.,slides down the track.,travels anxiously calmly beside the tree.,manages as he walks.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Facing someone, he swings the knife.\",\"Landing on the zebra, Richard Parker\"\nlsmdc3047_LIFE_OF_PI-22063,19726,\"Standing along in the vast, isolated expanse, he turns his gaze toward the sunlit clouds above. Now a map from the survival book\",illustrates the world's ocean currents with inter - swirling circles.,\"shows an orange string, hold out cables.\",lies on the side of the hector's map.,shows a pulsing - shaped logo.,shows a teen man father lying in someone's bed while someone sits next to him.,gold0-reannot,pos,unl,pos,pos,pos,\"Standing along in the vast, isolated expanse, he turns his gaze toward the sunlit clouds above.\",Now a map from the survival book\nlsmdc3047_LIFE_OF_PI-22063,19612,\"Someone drops the bucket and collapses on the bench near the canvas cover's edge. He leans back, his arms\",draped on the boat's rim and cover.,\"folded, and dangerously underneath.\",folded in a show gentle dress.,crooked for the blond.,reaching the muddy path.,gold0-reannot,pos,unl,unl,unl,unl,Someone drops the bucket and collapses on the bench near the canvas cover's edge.,\"He leans back, his arms\"\nlsmdc3047_LIFE_OF_PI-22063,19531,\"As we push through thick, churning storm clouds, deck lights illuminate a freighter in the night. Below deck, someone\",slowly awakes in his cabin bunk.,wakes under a sun - filled ceiling.,stares at the water standing in the moonlit graveyard.,rises onto the bridge.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As we push through thick, churning storm clouds, deck lights illuminate a freighter in the night.\",\"Below deck, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19715,A birds - eye view shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea. The boy,\"turns, looking over his shoulder.\",rubs blue water in the water pool.,power surfer rides up the wave to the ocean's edge.,\"studies a surfboard before handing snow to the boat, then waves to the other.\",,gold0-reannot,pos,unl,unl,unl,n/a,A birds - eye view shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea.,The boy\nlsmdc3047_LIFE_OF_PI-22063,19610,\"One of its hind legs lies unnaturally straight as it drags its haunch along the bench. Later, someone\",uses a bucket to bail water from the boat.,nears his friends as he turns toward the singers.,leads the children onto the veranda.,sits on top of a white bus and lights it.,\"remains naked, feet exposed.\",gold1-reannot,pos,unl,unl,unl,pos,One of its hind legs lies unnaturally straight as it drags its haunch along the bench.,\"Later, someone\"\nlsmdc3047_LIFE_OF_PI-22063,19695,\"Richard Parker pauses, staring hungrily. Someone\",throws the rat at the tiger who catches it in his mouth.,draws over a mansion.,\"stares at him and scowls, writing on the blanket.\",takes the vial into his face and the bandaging cap removes the wire from it and pulls out the serrated knife.,turns to face someone and nodding.,gold0-reannot,pos,unl,unl,unl,pos,\"Richard Parker pauses, staring hungrily.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19678,\"At the boat's prow, someone peaks in at the tiger. Someone\",eagerly climbs in to retrieve them.,spots the birds fly.,positions himself on two ropes.,shoots a quick look as they disappear into the water.,hands the book to someone.,gold0-reannot,unl,unl,unl,unl,unl,\"At the boat's prow, someone peaks in at the tiger.\",Someone\nlsmdc3047_LIFE_OF_PI-22063,19714,It lands close to us and bobs peacefully in the water. A birds - eye view,shows the can about ten yards from someone's raft sending out gentle ripples over the current - less sea.,obscures the kg of its body.,captures two golden letters in the sky.,fly explodes through the trees in the sky.,bathes someone behind two massive propellers.,gold0-reannot,pos,unl,unl,unl,unl,It lands close to us and bobs peacefully in the water.,A birds - eye view\nlsmdc3047_LIFE_OF_PI-22063,19690,\"With the animal distracted, someone starts to climb from the prow. Richard Parker\",\"charges forward, his head jetting up from the canvas' open flap at the bow.\",\"glances on and remembers someone, who lounges in the pool drinking chlorophyll from a glass of water before completing the dance.\",undoes the bolt from a stop carriage and manages her balance.,watches it fly back through a mountain with anger etched in his eyes as bombs explode amongst various uruk - hai.,\"stares past someone, letting his bird drift off with a perplexed expression.\",gold0-reannot,pos,unl,unl,unl,unl,\"With the animal distracted, someone starts to climb from the prow.\",Richard Parker\nlsmdc3047_LIFE_OF_PI-22063,19659,\"Perching atop the zebra's carcass, he starts to take a bite. Orange Juice angrily\",thumps the rim of the boat.,extends across the counter and extracts the bouquet.,mashed it into someone's back causing him to drop the potato.,appears into his banks and bubbles break in the goblet.,twists all around someone's face.,gold1-reannot,pos,unl,unl,unl,unl,\"Perching atop the zebra's carcass, he starts to take a bite.\",Orange Juice angrily\nlsmdc3047_LIFE_OF_PI-22063,19609,\"Lifting the edge of the canvas, he peers inside. Water\",sloshes over the floor of the boat.,\", he faces someone.\",\"shakes her honey blonde hair, then gets to her feet.\",\", someone and someone disappear into an aerial corridor.\",run in the base for pirates.,gold0-reannot,pos,unl,unl,unl,unl,\"Lifting the edge of the canvas, he peers inside.\",Water\nlsmdc3047_LIFE_OF_PI-22063,19615,As someone takes up a long handles oar and jumps to the canvas cover. It,leaps at someone clumsily and snaps at the oar.,\"hangs the assembled, which spins around beneath her feet.\",switches through the hundreds of toiletries messages.,steps away from the wall.,pulls his helmet.,gold0-reannot,pos,unl,unl,unl,unl,As someone takes up a long handles oar and jumps to the canvas cover.,It\nlsmdc3047_LIFE_OF_PI-22063,19641,Someone sits at the bow sharing a vigilant gaze with the hyena who remains back at the edge of the canvas. Harry,bounds to the zebra and snaps at its injured hind leg.,\"approaches her, who opens her eyes way.\",points and hunches over a series of skaters and is stopped by the giant wave.,stretches for his lighter as they float toward the water.,kisses someone on the head and onstage continually pulling her coat to catch up close into the bride.,gold1-reannot,pos,unl,unl,unl,unl,Someone sits at the bow sharing a vigilant gaze with the hyena who remains back at the edge of the canvas.,Harry\nlsmdc3047_LIFE_OF_PI-22063,19655,\"Orange Juice gives hers a shake, the throws it down. Later, using ropes and netting, he\",\"bundles the life jackets together into a small, makeshift raft.\",writes elegantly as she takes off in the crowd line.,puts her fingers over the neck.,tosses the sheriffs to another and fires cards on the high ground.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Orange Juice gives hers a shake, the throws it down.\",\"Later, using ropes and netting, he\"\nlsmdc3047_LIFE_OF_PI-22063,19551,\"He staggers through a corridor. Finding his level flooded, he\",dives into the water and swims.,finds himself reading the vanity.,awakens and sees a familiar glow.,sinks to one knee.,crawls to the front door.,gold0-reannot,pos,unl,unl,pos,pos,He staggers through a corridor.,\"Finding his level flooded, he\"\nlsmdc3047_LIFE_OF_PI-22063,19642,Harry bounds to the zebra and snaps at its injured hind leg. Someone and Orange Juice,watch helplessly as harry kills the zebra.,walk down a long dock to the commander - de - de - mnemonic.,watch the disassembled ship.,runs after it and writes underneath the box.,groom the boy.,gold0-reannot,pos,unl,unl,unl,unl,Harry bounds to the zebra and snaps at its injured hind leg.,Someone and Orange Juice\nlsmdc3047_LIFE_OF_PI-22063,19616,It leaps at someone clumsily and snaps at the oar. Someone,drops the oar and retreats to the prow beam.,keeps his gaze fixed into the bug's face.,\"shoots the capsule, calculating.\",overcome the bitter u - pull.,pours the man closely over his own canvas.,gold0-reannot,pos,unl,unl,unl,unl,It leaps at someone clumsily and snaps at the oar.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19534,Someone quickly pulls himself into his bunk as his mother rolls over. Someone,climbs a flight of stairs and enters a corridor.,reaches down a container which pushes him to the floor.,runs a torch on the dashboard.,adjusts his pockets nervously as she barges through some piles to reveal the hidden room.,\"soaks the floor in the water and pulls a blanket, then ties one scarf around his neck.\",gold1-reannot,unl,unl,unl,unl,unl,Someone quickly pulls himself into his bunk as his mother rolls over.,Someone\nlsmdc3047_LIFE_OF_PI-22063,19719,\"He gazes out over the vast expanse of motion - less sunlit sea. Watching him calmly, someone\",crouches down and takes up the rope tether.,rests the sword on his palm then puts it in his pocket.,drops the stick and reaches for a curtain.,looks over the plane's jagged collie - shaped spear.,\"stops and looks down at it, yielding a dusky pout.\",gold0-reannot,pos,unl,unl,unl,unl,He gazes out over the vast expanse of motion - less sunlit sea.,\"Watching him calmly, someone\"\nanetv_SF3pw17yBB4,18092,Someone is shown cutting the skin from a potato. He,puts down the potato when he finishes cutting it and goes for another.,throws a knife and sharpens the knife on the spinning bladed knife.,falls in the water beneath him.,attaches butter to a smaller triangular chair.,,gold0-orig,pos,unl,unl,unl,n/a,Someone is shown cutting the skin from a potato.,He\nanetv_SF3pw17yBB4,18091,A person is holding a large knife in a kitchen. Someone,is shown cutting the skin from a potato.,begins to sharpen the claws with a knife.,dances on a rug.,is holding a pot onto a plate.,is using an electric razor to trim another man's beard.,gold0-orig,pos,unl,unl,unl,unl,A person is holding a large knife in a kitchen.,Someone\nanetv_AEH6JEd_03c,9582,A person is mixing ingredients in a bowl. They,spoon the dough onto a cookie sheet.,begin playing with cookie dough.,make ingredients in a bowl and add stirring.,shake hands with carrots.,mix ingredients in a bowl.,gold0-orig,pos,unl,unl,unl,pos,A person is mixing ingredients in a bowl.,They\nanetv_AEH6JEd_03c,9581,A butterfly is flying on the screen with words on slides. A person,is mixing ingredients in a bowl.,shows off the fire of a darker animal.,unwraps a bottle with a knife on glowing alcoholic stand.,cuts several leaves off of a pumpkin quickly scooping out a pumpkin.,steps out of view towards the house.,gold0-reannot,pos,unl,unl,pos,pos,A butterfly is flying on the screen with words on slides.,A person\nanetv_AEH6JEd_03c,9583,They spoon the dough onto a cookie sheet. Bakes cookies,are shown stacked up on a plate.,are then put around the sides and used to put it on.,are placed on the molder.,are being used to put the potato.,are left to serve with skins jelly.,gold1-reannot,pos,unl,unl,unl,unl,They spoon the dough onto a cookie sheet.,Bakes cookies\nlsmdc3059_SALT-29015,4313,She pries the doors open and peers down into the shaft of the descending car. Her gaze sweeps to the metal framework along the walls and she,leaps onto a crossbar.,\"opens it, then turns the cable all around a white pillow, inspecting the empty storage area.\",inches back in.,looks over both back at all the animal helper which lie closed.,lets it spy on following the shivering suitcases.,gold0-orig,pos,unl,unl,unl,unl,She pries the doors open and peers down into the shaft of the descending car.,Her gaze sweeps to the metal framework along the walls and she\nlsmdc3059_SALT-29015,4304,\"In a smoke - filled hallway, someone rolls over and pushes herself onto her knees. She\",grabs a set of keys and a gun off a fallen agent then hurries upstairs.,throws her arms around him and rides him down to the stage.,stomps on her foot.,\"exits the elevator with her father, then bends down and pulls herself in.\",smiles up at someone with wide eyes.,gold0-orig,pos,unl,unl,unl,unl,\"In a smoke - filled hallway, someone rolls over and pushes herself onto her knees.\",She\nlsmdc3059_SALT-29015,4305,\"She grabs a set of keys and a gun off a fallen agent then hurries upstairs. Adding herself in a room, she\",tears off her jacket.,pours the most prominent card into the glass.,lies on her stomach against the driver's seat.,lies above her head out of the window.,grabs a shopping bag.,gold0-orig,pos,unl,unl,unl,unl,She grabs a set of keys and a gun off a fallen agent then hurries upstairs.,\"Adding herself in a room, she\"\nlsmdc3059_SALT-29015,4301,\"Later, someone throw someone to the floor. The closing elevator doors, someone\",spies someone in her disguise.,beats himself out of the shaft.,\"falls, then punches him in the back.\",opens his helmet.,,gold1-orig,unl,unl,unl,unl,n/a,\"Later, someone throw someone to the floor.\",\"The closing elevator doors, someone\"\nlsmdc3059_SALT-29015,4317,\"Someone reaches the bottom of the shaft. As the president and his entourage walk through the doorway, the guard\",enters a code on a keypad.,sweeps his back off and shoots his eyes.,kisses the pre - haired woman.,holding the camera follows him.,,gold0-orig,pos,unl,unl,pos,n/a,Someone reaches the bottom of the shaft.,\"As the president and his entourage walk through the doorway, the guard\"\nlsmdc3059_SALT-29015,4319,\"The president and his men head to the emergency operation center. With them, a military aide\",\"carries a briefcase, its handle tethered to his wrist.\",uses the russian officer.,grabs a cellphone and uses it as a gun.,leads his team toward uphill.,sits on a bridge in a rooftop with someone.,gold0-orig,pos,unl,unl,unl,unl,The president and his men head to the emergency operation center.,\"With them, a military aide\"\nlsmdc3059_SALT-29015,4310,\"The agent uses his radio. Meanwhile hiding against the wall by the stairs, someone\",peers around the corner and sees a tactical team shuffling pass.,lays the safe in his hands.,picks up someone's hat.,hurdles the crane and runs to the chopper door.,leaves a room surrounded by dark netting.,gold0-orig,pos,unl,unl,unl,unl,The agent uses his radio.,\"Meanwhile hiding against the wall by the stairs, someone\"\nlsmdc3059_SALT-29015,4302,\"The closing elevator doors, someone spies someone in her disguise. Someone\",presses a remote then explodes.,\"alongside a car rifle, someone directs a woman up to someone and another men.\",helps with the wheel.,rejoins slams the unisphere again.,trudges back to the footman.,gold1-orig,pos,unl,unl,unl,unl,\"The closing elevator doors, someone spies someone in her disguise.\",Someone\nlsmdc3059_SALT-29015,4306,\"Adding herself in a room, she tears off her jacket. Someone\",shifts his eyes thoughtfully.,holds out a hand to groom.,rubs her open shirt and strolls over the tv.,walks to the stereo and sits in her purple booth.,\"watches her go, then quickly.\",gold0-orig,pos,unl,unl,unl,unl,\"Adding herself in a room, she tears off her jacket.\",Someone\nlsmdc3059_SALT-29015,4300,\"As the adviser heads to the elevator, someone eyes someone. Later, someone\",throw someone to the floor.,shoves a row of balls into the studio.,sits at her laptop and packs her magazine.,rides behind a boat near the patrons.,,gold1-reannot,pos,pos,pos,pos,n/a,\"As the adviser heads to the elevator, someone eyes someone.\",\"Later, someone\"\nlsmdc3059_SALT-29015,4315,\"In the shaft, someone sees two parallel rails running down a wall. Squeezing between them, she\",slides down like an elevator on its tracks.,\"eyes her grandma, then tear her eyes away.\",jerks her hand forward and avoids two expertly throws punches at them.,slides the glass shut.,breathes weakly as he glides right into the bottom of the dance.,gold0-reannot,pos,unl,unl,unl,unl,\"In the shaft, someone sees two parallel rails running down a wall.\",\"Squeezing between them, she\"\nlsmdc3059_SALT-29015,4312,Agents hurry the president down a hall. Someone,sprints along at another.,digs out another plant.,skulks along stairs and exits.,breaks down a winding passage at the citadel of the track.,heats a foot and turns a lever.,gold0-reannot,pos,unl,unl,unl,unl,Agents hurry the president down a hall.,Someone\nlsmdc3059_SALT-29015,4303,\"Someone presses a remote then explodes. In a smoke - filled hallway, someone\",rolls over and pushes herself onto her knees.,looks back at herself.,runs to someone's outer door.,rises as someone heads halfway down another staircase.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone presses a remote then explodes.,\"In a smoke - filled hallway, someone\"\nlsmdc3059_SALT-29015,4314,\"An agent checks the entryway. In the shaft, someone\",sees two parallel rails running down a wall.,looks up from his bed.,\"follows, up a staircase.\",stands with a mailbag.,studies the profile of someone.,gold0-reannot,pos,unl,unl,unl,pos,An agent checks the entryway.,\"In the shaft, someone\"\nlsmdc3059_SALT-29015,4311,\"Meanwhile hiding against the wall by the stairs, someone peers around the corner and sees a tactical team shuffling pass. Agents\",hurry the president down a hall.,stares through a cracked window and finds a passionately working on the wall.,do both and punch with their own guns.,drill his gun on someone as they run back up the shaft.,\"climb the walls, a peer conflict, to the surface of the burning pod.\",gold0-reannot,pos,unl,unl,unl,unl,\"Meanwhile hiding against the wall by the stairs, someone peers around the corner and sees a tactical team shuffling pass.\",Agents\nlsmdc3059_SALT-29015,4316,\"Squeezing between them, she slides down like an elevator on its tracks. Someone\",reaches the bottom of the shaft.,removes his other arm.,fires hard across her worried eyes.,swings up and approaches his instructor's outstretched leg as someone rides him.,\"composes her of the nurse, then meets the clinic's eye.\",gold0-reannot,pos,unl,unl,unl,unl,\"Squeezing between them, she slides down like an elevator on its tracks.\",Someone\nlsmdc3059_SALT-29015,4318,\"Using the stolen i d card, she unlocks the gate. The president and his men\",head to the emergency operation center.,share a glance and she hits someone who avoids her gaze.,sit at captain's house.,lean in the seat.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Using the stolen i d card, she unlocks the gate.\",The president and his men\nlsmdc3069_THE_BOUNTY_HUNTER-4543,5667,\"As someone chomps into a taco doused with hot sauce, his friend swigs a coke. Someone\",drops his taco on his plate.,continues down a rundown path with his arms folded.,puts his hand on the washing machines.,downs some ice in someone's mouth.,gives her drinking mug.,gold0-orig,pos,unl,unl,pos,pos,\"As someone chomps into a taco doused with hot sauce, his friend swigs a coke.\",Someone\nlsmdc0004_Charade-47700,12465,\"Close shot - - someone on the phone, looking like the rug has been pulled out from under her. Someone\",\"slowly lowers the phone to its cradle, a worried expression on her face.\",\"moves around, soaking in out of sight.\",sees a slender chinese bird hovering beside the screen.,\"emerges unto her bed, waiting for her to begin to dance with her, mothers and having fun.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Close shot - - someone on the phone, looking like the rug has been pulled out from under her.\",Someone\nlsmdc0004_Charade-47700,12458,She goes to the open door for a closer look. As he,takes out his handkerchief and rinses it.,\"opens the door, gathers himself and screws up his things.\",\"gets to his feet, he passes the hogwarts - ladies room which hide his sitting.\",\"pulls back, the door clambers open.\",,gold1-orig,pos,unl,unl,pos,n/a,She goes to the open door for a closer look.,As he\nlsmdc0004_Charade-47700,12461,\"He flicks a little water in her face, then takes the nail - brush and scrubs his watch and watch - band. He\",holds up his wrist so she can see the watch.,stops with his gaze on between his notes.,sit on the couch in a bay nerdist wedding with a sling in his legs.,writes and closes the door squeeze way.,\"ends with pulling someone into a chair, and gestures with his father.\",gold0-orig,pos,unl,unl,unl,unl,\"He flicks a little water in her face, then takes the nail - brush and scrubs his watch and watch - band.\",He\nlsmdc0004_Charade-47700,12456,\"Testing the water with his hand, he now steps in fully dressed. Someone\",can't believe her eyes.,lies lying on his bottom.,stares at camera as he passes.,is still sleeping in a corner.,winds a banker on a pad.,gold0-orig,pos,unl,unl,unl,unl,\"Testing the water with his hand, he now steps in fully dressed.\",Someone\nlsmdc0004_Charade-47700,12450,He goes into his room and she goes into hers. She,\"enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's.\",\"picks up the jacket, puts him on someone's bed, and kisses it in her keys.\",holds out the own small box of sculptures that happens in the sunshine and video of the birds.,\"holds the mirror with his eyebrows, then steps out of the window and looks at the house.\",grabs the garment back and draws him close.,gold0-orig,pos,unl,unl,unl,unl,He goes into his room and she goes into hers.,She\nlsmdc0004_Charade-47700,12451,\"She enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's. She\",\"unlocks it, tries to open it, but finds it locked.\",\"heads to the window, opens the door to another apartment.\",takes a bite from the staff.,takes out the small thermometer.,,gold0-orig,pos,unl,unl,unl,n/a,\"She enters, fixes her hair in the mirror, then goes to the door connecting her room with someone's.\",She\nlsmdc0004_Charade-47700,12462,He holds up his wrist so she can see the watch. He,begins unbuttoning his suit.,pulls it to some level.,\"sticks out, only for a few seconds.\",sets it aside and ticks up the phone in her kitchen.,,gold0-orig,pos,unl,unl,pos,n/a,He holds up his wrist so she can see the watch.,He\nlsmdc0004_Charade-47700,12457,Someone can't believe her eyes. She,goes to the open door for a closer look.,sees that someone already passed out.,does not know what to say.,gets up and opens the door.,,gold0-orig,pos,unl,unl,pos,n/a,Someone can't believe her eyes.,She\nlsmdc0004_Charade-47700,12463,He begins unbuttoning his suit. She,\"turns and leaves, slamming the door after her.\",smiles at her.,\"becomes one sincere, but always and starts.\",rushes towards his car.,becomes package - eyed.,gold0-orig,pos,unl,unl,unl,unl,He begins unbuttoning his suit.,She\nlsmdc0004_Charade-47700,12455,\"Someone looks at her, then sits down and starts to remove his shoes. Testing the water with his hand, he now\",steps in fully dressed.,turns and walks out of his room.,does his makeup as someone hears the candle shatter.,\"sits beside someone in his saddle, being struck by a substance.\",drops it on the floor and fumbles for the sink.,gold1-orig,pos,unl,unl,unl,pos,\"Someone looks at her, then sits down and starts to remove his shoes.\",\"Testing the water with his hand, he now\"\nlsmdc0004_Charade-47700,12452,He calls to her through the closed door as he empties his pockets. He,\"sits down to take off his shoes, but is interrupted by the sound of someone screaming.\",\"goes to the door, pounds his case on the door as he slams the door open.\",\"emerges from the mist, from her purse and pulls on a wheel.\",indicates his way down and goes through the gate.,,gold0-orig,pos,unl,unl,unl,n/a,He calls to her through the closed door as he empties his pockets.,He\nlsmdc0004_Charade-47700,12453,\"He sits down to take off his shoes, but is interrupted by the sound of someone screaming. He\",\"races for the connecting door, pulls back the bolt and rushes in.\",brings a shot bottle in an elegant wooden cup.,\"turns to a mustached boy, and he grabs someone's hands.\",takes someone's hand into a glass bucket then takes an alcohol bottle.,,gold0-orig,pos,unl,unl,unl,n/a,\"He sits down to take off his shoes, but is interrupted by the sound of someone screaming.\",He\nlsmdc0004_Charade-47700,12466,\"Someone slowly lowers the phone to its cradle, a worried expression on her face. Then the bathroom door opens and someone\",appears dressed in a large bath towel.,steps in behind her and holds out a knife.,slides down its shaft.,looks at the younger man with beautiful eyes.,enters and sits down on the couch.,gold0-orig,pos,unl,unl,pos,pos,\"Someone slowly lowers the phone to its cradle, a worried expression on her face.\",Then the bathroom door opens and someone\nlsmdc0004_Charade-47700,12464,\"She turns and leaves, slamming the door after her. Close shot - - someone on the phone,\",looking like the rug has been pulled out from under her.,stares back into the car as someone wanders through a restaurant.,\"someone giving him a long look, then shakes his head.\",\"already the time into time, but french are on the side.\",can't shut up a minute or two.,gold1-orig,pos,unl,unl,unl,pos,\"She turns and leaves, slamming the door after her.\",\"Close shot - - someone on the phone,\"\nlsmdc0004_Charade-47700,12459,As he takes out his handkerchief and rinses it. He,opens his coat and reads a label inside.,is clutching a string on his towel - soaked sweater.,gets up and hands someone an apple.,pulls the baby away from himself.,\"sucks in a breath, then bends his head and pulls the rugged deputy toward him.\",gold0-reannot,pos,unl,unl,unl,unl,As he takes out his handkerchief and rinses it.,He\nlsmdc0004_Charade-47700,12454,\"He wheels as the door is slammed and someone, who had been standing behind it, locks it and pockets the key. He\",goes to the door leading to the hall and finds that locked as well.,\", someone slowly shoves open a door but can n't see her way inside the bar on front someone left touches the button.\",\"puts again, eavesdrops wanting to make it back.\",\"lifts a hydra cutters out of the hold, then drops the stone and bank then shields it in the other half.\",\"looks on for a moment later, as she opens a door, someone enters the chamber when she sees someone.\",gold0-reannot,pos,unl,unl,unl,pos,\"He wheels as the door is slammed and someone, who had been standing behind it, locks it and pockets the key.\",He\nlsmdc3068_THE_BIG_YEAR-3803,1876,\"Someone questions his female colleague who shrugs. Through a window, we\",watch someone raise his teacup to his companions.,watch someone family pass a man in a yellow parka.,\"watch a biker approaching as he passes, breathing heavily.\",glimpse a monitor of the interior of a plane.,watch someone descend a tall staircase.,gold1-orig,pos,unl,unl,unl,unl,Someone questions his female colleague who shrugs.,\"Through a window, we\"\nlsmdc3068_THE_BIG_YEAR-3803,1875,\"Chewing, someone shifts his gaze. Someone\",questions his female colleague who shrugs.,\"flies through it's shadows, then makes someone answer.\",glares as he moves past her with his arms around her neck.,rests his eyes on someone's gun.,\"closes his eyes, lifts the gun out and replaces it with a syringe.\",gold0-orig,pos,unl,unl,unl,unl,\"Chewing, someone shifts his gaze.\",Someone\nlsmdc3068_THE_BIG_YEAR-3803,1872,\"Now, as someone drives in a snowstorm, words appear. He\",\"mumbles silently to himself, then peers out his windshield and shifts his pensive gaze.\",plays against a pine tree.,\"steps back, someone mounts the horse.\",waves at him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, as someone drives in a snowstorm, words appear.\",He\nlsmdc3068_THE_BIG_YEAR-3803,1873,\"He mumbles silently to himself, then peers out his windshield and shifts his pensive gaze. Now, in a Chinese restaurant, he\",struggles with his chopsticks.,works his laptop across a magazine.,readies a plastic tray on his chest.,uses his computer to remove his makeup.,drives into a stationary sedan.,gold0-orig,pos,unl,unl,unl,unl,\"He mumbles silently to himself, then peers out his windshield and shifts his pensive gaze.\",\"Now, in a Chinese restaurant, he\"\nlsmdc3068_THE_BIG_YEAR-3803,1877,\"Through a window, we watch someone raise his teacup to his companions. At home, someone\",strides briefly from his office.,\"runs his thumb through his cape, missing web to keep them back from the anger.\",sleeps alone in a mansion house for evening.,dumps his mail newspapers in a basket.,takes off his cloak irritably.,gold1-orig,pos,unl,unl,unl,unl,\"Through a window, we watch someone raise his teacup to his companions.\",\"At home, someone\"\nlsmdc3068_THE_BIG_YEAR-3803,1878,\"At home, someone strides briefly from his office. Someone\",returns to his office and answers the phone.,darts through his papers.,\"smiles, and looks around at people.\",draws a leafy invitation.,,gold0-orig,pos,unl,pos,pos,n/a,\"At home, someone strides briefly from his office.\",Someone\nlsmdc3068_THE_BIG_YEAR-3803,1874,A waiter brings a fork. The waiter,starts to step away.,drinks from the mug in the bowl.,brings a bunch of pie to the food.,adds spaghetti to the table.,returns to her bag.,gold0-reannot,pos,unl,unl,pos,pos,A waiter brings a fork.,The waiter\nanetv_ywJQotAB3dw,18458,Several people walk around a court with a couple of balls. They,kick the balls back and forth in a game of dodgeball.,kick the puck back and forth over the net.,continue throwing the balls at tables.,throw a ball into a field.,,gold0-orig,pos,unl,unl,pos,n/a,Several people walk around a court with a couple of balls.,They\nanetv_ywJQotAB3dw,18457,A close up of a flag is shown in a room. Several people,walk around a court with a couple of balls.,are walking around a large field.,are moving around the field.,are then shown playing a building and put together in a competition.,are gathered around a raft.,gold1-orig,pos,unl,unl,unl,unl,A close up of a flag is shown in a room.,Several people\nanetv_ywJQotAB3dw,10265,A small group of people are seen playing a soccer match with one another and kicking a ball around in outside area. The men,continue to play while some shots are shown in slow motion and end with the men running around one another.,continue hitting the ball along the wall and end by text replay.,cheer on different balls while others watch on the sides and pose by smiling.,continue playing to one another and ends by holding a ball and walking around to an audience sitting on the end.,continue playing the ball while the camera captures their movements.,gold0-reannot,pos,unl,unl,pos,pos,A small group of people are seen playing a soccer match with one another and kicking a ball around in outside area.,The men\nanetv_O_StqLLpAVI,11706,A bike with a deflated tire goes through the dirt. A man,gets off the bike to look at it.,talks to the camera man is then shown driving a tractor and walking around.,picks up things and starts scraping water across the ground.,lays up and switches on the tire machine.,mounts a bike saw.,gold0-orig,pos,unl,unl,unl,unl,A bike with a deflated tire goes through the dirt.,A man\nanetv_O_StqLLpAVI,11707,A man gets off the bike to look at it. He,removes the tire from the bike.,uses his hands to expect if you bring side to side.,shows the maintaining tool he is using.,removes a bike tire and smooths it out with it.,,gold0-orig,pos,unl,pos,pos,n/a,A man gets off the bike to look at it.,He\nanetv_O_StqLLpAVI,11708,He removes the tire from the bike. He,replaces the tube of the tire and fixes the bike.,places the side of the bike instantly.,loads the tire with the bike.,puts the tire on the bike and throws it several times.,screws up points while talking about how to cut the bike.,gold0-reannot,pos,unl,unl,unl,unl,He removes the tire from the bike.,He\nanetv_F99Suh6SvD8,9697,The two girls talk to the coach and then begin to fence with each other as the coach motions to where they should stand and navigate the space during the spar. Both girls,end the spar and remove their head gear as they talk to the coach.,start to explain them and slide back down.,\"lose their footing and fall to the floor, become their instructor with their routine of do their kicks.\",are sitting in the instructor's lap as they continue back to bowing and laughing.,jump up in line and encourage one of the older children on the head.,gold0-reannot,pos,unl,unl,unl,unl,The two girls talk to the coach and then begin to fence with each other as the coach motions to where they should stand and navigate the space during the spar.,Both girls\nlsmdc1007_Spider-Man1-74281,17082,Someone rushes into the study where his father is lying face down on the floor. He,helps his father to a seat.,holds a ring to someone's chest.,moves to the doors of his black rover.,\"picks up the file, unlocks it, and checks it out.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone rushes into the study where his father is lying face down on the floor.,He\nlsmdc1007_Spider-Man1-74281,17076,She reaches the school bus stop and grinds the sole of her left boot on the ground. Someone,'s a bit behind.,stares into someone's tub.,releases her belt and shakes it off.,steps out and drives.,lunges toward the white light.,gold1-orig,pos,unl,unl,unl,pos,She reaches the school bus stop and grinds the sole of her left boot on the ground.,Someone\nlsmdc1007_Spider-Man1-74281,17080,It comes away in his hand and rips its full length. He,looks at his hand and ponders.,crushes the blood on the truck's dashboard as sparks fly out.,starts to write.,comes up behind the crash opaque touching shop.,,gold0-orig,pos,unl,unl,unl,n/a,It comes away in his hand and rips its full length.,He\nlsmdc1007_Spider-Man1-74281,17074,\"He sets off down the street after the pretty young red head who is wearing Calfland's boots, short skirt and a zipped cardigan. Someone\",\"marches down the sidewalk, arms folded.\",stands brushing the top of her dress and eyes it with her little hand.,\"is beside someone, who is waiting by the front of old terraced house.\",turns in his seat.,\"opens a suitcase, then walks downstairs.\",gold0-orig,pos,unl,unl,unl,unl,\"He sets off down the street after the pretty young red head who is wearing Calfland's boots, short skirt and a zipped cardigan.\",Someone\nlsmdc1007_Spider-Man1-74281,17060,\"Pushing another switch, someone watches as a large file containing a green liquid empties. Vapor\",rises in the chamber.,stacked in the gears in front of the unloaded cars.,bites him on both hip.,fills the chamber full of debris.,,gold0-orig,pos,unl,unl,unl,n/a,\"Pushing another switch, someone watches as a large file containing a green liquid empties.\",Vapor\nlsmdc1007_Spider-Man1-74281,17072,He smiles as she primps her hair. He,walks back to his mirror and grins.,\"considers, then steps back resolutely, and turns her across.\",smiles thoughtfully then closes someone's eyes and speaks again.,smacks her hand at someone and the door.,rips off her shirt and kisses it.,gold0-orig,pos,unl,unl,unl,unl,He smiles as she primps her hair.,He\nlsmdc1007_Spider-Man1-74281,17073,He walks back to his mirror and grins. Coming downstairs he,\"places one hand on the molding, walks on the wall around the corner, and then leaps to the ground.\",moves on to the driver side windows.,spots at the german voices coming from behind.,sees two other arranging clad children flirting.,,gold0-orig,pos,unl,unl,unl,n/a,He walks back to his mirror and grins.,Coming downstairs he\nlsmdc1007_Spider-Man1-74281,17069,He tries again and once more removes them. He,holds them up in front of his face.,\"is as tall as someone speaking, by no one on.\",takes the key and waves it to the paper and picks it up.,stands on a staircase with his gun ready.,,gold0-orig,pos,unl,unl,unl,n/a,He tries again and once more removes them.,He\nlsmdc1007_Spider-Man1-74281,17062,Someone's body is convulsing. Someone,runs to the panel.,\"flails awkwardly so he overtakes the fireman's crotch once again, quickly fades away.\",pauses and turns toward a different line that is level with the baby.,\"falls down forward with the sword control, which is now pinned to his chest.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone's body is convulsing.,Someone\nlsmdc1007_Spider-Man1-74281,17075,\"Someone marches down the sidewalk, arms folded. She\",reaches the school bus stop and grinds the sole of her left boot on the ground.,looks up from her clock.,goes down and notices the ghost on the bar.,glances off as she leaves the apartment.,walks in and removes his hat.,gold0-orig,pos,unl,unl,unl,unl,\"Someone marches down the sidewalk, arms folded.\",She\nlsmdc1007_Spider-Man1-74281,17064,Someone's eyes flash over. He,grabs someone by the throat.,looks like a lawyer.,barges into space and holds a phone to his ear.,avoids her gaze with wide eyes.,gives someone a hug.,gold0-orig,pos,unl,unl,unl,unl,Someone's eyes flash over.,He\nlsmdc1007_Spider-Man1-74281,17063,He starts venting the gas chamber. The convulsing stops but someone,is held upright by the restraints.,\"follows him papers from the man, hat covering his head.\",continues to tap him to usually people.,pulls out instruction screens.,turns and goes slowly.,gold0-orig,pos,unl,unl,pos,pos,He starts venting the gas chamber.,The convulsing stops but someone\nlsmdc1007_Spider-Man1-74281,17071,\"Glancing through the window he catches sight of someone, someone in her room in the house next door. He\",smiles as she primps her hair.,\"removes the fall from his brow, stops and edges toward someone.\",closes the door and looks wearily out the room.,goes to the door and goes inside.,,gold0-orig,pos,unl,unl,pos,n/a,\"Glancing through the window he catches sight of someone, someone in her room in the house next door.\",He\nlsmdc1007_Spider-Man1-74281,17059,\"Someone nods to his colleague. Pushing another switch, someone\",watches as a large file containing a green liquid empties.,leads the kids to a pew.,writes a long file across the table.,looks down at someone.,peeks out into the hallway.,gold0-orig,pos,unl,unl,pos,pos,Someone nods to his colleague.,\"Pushing another switch, someone\"\nlsmdc1007_Spider-Man1-74281,17070,He turns away from admiring his new body in the mirror and reaches for his shirt. Glancing through the window he,\"catches sight of someone, someone in her room in the house next door.\",sees someone's reflection in a chauffeur's mirror.,finds several empty office items.,finds a building putting crests canopy behind him.,,gold1-orig,pos,unl,unl,unl,n/a,He turns away from admiring his new body in the mirror and reaches for his shirt.,Glancing through the window he\nlsmdc1007_Spider-Man1-74281,17067,Someone reaches for his spectacles. He,\"puts them on, then quickly takes them off.\",takes it from his pocket.,marches up to someone.,clutches his stomach to her mouth and winces.,runs his hands across the barrel of his knitted brow.,gold0-orig,pos,unl,unl,unl,unl,Someone reaches for his spectacles.,He\nlsmdc1007_Spider-Man1-74281,17054,Someone strips to the waist and takes bottle from someone. He,gulps down its contents.,\"dips someone and someone from a room, then want jokes with him.\",uses a crest to cover each fish.,waves a tray of pizza for someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone strips to the waist and takes bottle from someone.,He\nlsmdc1007_Spider-Man1-74281,17079,He makes a grab for the bus and catches hold of a poster stuck to his side. It,comes away in his hand and rips its full length.,sets his raft down in a dark setting.,scuttle up steps in a towel.,enters the gap and pops into the air with her sunglasses.,slides onto the bench and squeezes their eyes shut.,gold0-orig,pos,unl,unl,unl,unl,He makes a grab for the bus and catches hold of a poster stuck to his side.,It\nlsmdc1007_Spider-Man1-74281,17061,Vapor rises in the chamber. Someone,watches a computer generated image of the level of the green gas in the chamber as it rises to fill it.,falls as it turns into a ghostly facade that swells toward people.,passes a suit after someone briskly it down the main road.,\"pulls a disc of the elder wand, which bobs back and forth.\",\"steps from a huge wooden statue, shooting up a glow sphere.\",gold0-orig,pos,unl,unl,unl,unl,Vapor rises in the chamber.,Someone\nlsmdc1007_Spider-Man1-74281,17057,Someone is firmly attached to the trolley. The grim - faced someone,hurries over to a control panel.,\"turns, signing a struck sack.\",strokes the wooden child's inner pinnacle.,reaches out to seat someone and slaps his back.,looks across at someone then comes running across the table to people.,gold0-reannot,pos,unl,unl,pos,pos,Someone is firmly attached to the trolley.,The grim - faced someone\nlsmdc1007_Spider-Man1-74281,17077,Someone's a bit behind. Someone,climbs into her friend's ford mustang convertible.,stops outside the rosy - thru window.,punches a man's chest and drags him through the ceiling.,\"gets a roll from the bottom side, onto the red - colored mat.\",points!,gold0-reannot,pos,unl,unl,unl,unl,Someone's a bit behind.,Someone\nlsmdc1007_Spider-Man1-74281,17068,\"He puts them on, then quickly takes them off. He\",tries again and once more removes them.,steps off the phone.,continues to show off his problems and begins round to apply them on each wall.,\"hangs up his cell with her bright blue towel, on the bow, on his hand, under a chair along the mattress.\",\"puts an arm around his shoulder and tenderly strokes her head, then laughs.\",gold0-reannot,pos,unl,unl,unl,unl,\"He puts them on, then quickly takes them off.\",He\nlsmdc1007_Spider-Man1-74281,17066,Someone wakes from his fitful sleep and picks himself up off the floor. Someone,reaches for his spectacles.,reads remorsefully.,leans back against the headboard.,is asleep in his bunk.,hangs up the phone and sighs.,gold0-reannot,pos,unl,pos,pos,pos,Someone wakes from his fitful sleep and picks himself up off the floor.,Someone\nlsmdc1007_Spider-Man1-74281,17055,\"Having flung the bottle to the floor, someone lifts opens the metal with strengths on the sliding trolley and lies down on it. Someone\",\"fastens the manacles over someone's chest, legs, and upper arms.\",\"hops up lightly, then feels his mouth for a moment then walks off with his face wash and makes a slow - clean face\",\"rises to the tiled floor, hesitating for a moment, then his eyes move back inside the crack of st.\",\"fishes in a closet, splayed out and sees a naked door open to reveal the water.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Having flung the bottle to the floor, someone lifts opens the metal with strengths on the sliding trolley and lies down on it.\",Someone\nlsmdc1007_Spider-Man1-74281,17056,\"Someone fastens the manacles over someone's chest, legs, and upper arms. Someone\",is firmly attached to the trolley.,runs along the roof toward their camels.,sits in someone's cot as he roars up.,\"the boat, someone faces a group of dolphins together standing behind two other boats.\",lunges down a glass to someone.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone fastens the manacles over someone's chest, legs, and upper arms.\",Someone\nanetv_Boa880LnJ3w,10829,A man attaches a baby stroller to the back of a bicycle. He,puts the wheel on the stroller.,starts loading the bike with a machine and begins driving down the hill.,\"starts raking the lawn, going up the squares.\",jerks it down the board.,,gold0-orig,pos,unl,unl,unl,n/a,A man attaches a baby stroller to the back of a bicycle.,He\nanetv_Boa880LnJ3w,7523,A man walks up and kneels behind a bike. He,proceeds to use his tools on the bike.,holds up a paper in front of a set of indoor equipment.,climbs onto the bike and lifts his head.,puts things in a bag.,,gold0-orig,pos,unl,pos,pos,n/a,A man walks up and kneels behind a bike.,He\nanetv_Boa880LnJ3w,7524,He proceeds to use his tools on the bike. He,removes pieces of the bike and replaces them.,continues to wipe the window back slightly.,then pans the bike all over the side.,looks out of the house.,,gold0-orig,pos,unl,unl,unl,n/a,He proceeds to use his tools on the bike.,He\nanetv_Boa880LnJ3w,10830,He puts the wheel on the stroller. He,stands up next to the stroller.,uses a flat equipment to get brakes.,walks forward and looks into the camera with his arms around each other.,lays it at her shoulder.,\"jogs through the open door, then hurries down the front steps.\",gold1-orig,pos,unl,unl,unl,unl,He puts the wheel on the stroller.,He\nanetv_0IxId05Eo6k,16122,\"They take a bow, pick up the rope, and each team begins to tug on the rope until a winner is called. A woman referee is now standing with her two arms up and she lets them down to indicate that the two teams can start tugging on the rope, and they\",do until she blows a whistle to indicate the winner.,perform her tries to relax them by.,are as scuba as they can be.,make little reasons to stand on sync.,both are racked and tearing the paper with each other's suvs.,gold0-orig,pos,unl,unl,unl,unl,\"They take a bow, pick up the rope, and each team begins to tug on the rope until a winner is called.\",\"A woman referee is now standing with her two arms up and she lets them down to indicate that the two teams can start tugging on the rope, and they\"\nanetv_0IxId05Eo6k,16120,\"There are a lot of people indoors in a large building walking, or hanging out, and the banner below say's what in the world? China's National Tug - of - War Championships and he logo on the right say's east sports west. There are two sets of people along a rope and they\",are separated in the middle by referees.,are doing a lot motocross in unison at different jumps.,\"put out their hands, the helmets.\",do a lot of tricks and if they were flip into the water one by one.,,gold1-orig,pos,unl,unl,unl,n/a,\"There are a lot of people indoors in a large building walking, or hanging out, and the banner below say's what in the world? China's National Tug - of - War Championships and he logo on the right say's east sports west.\",There are two sets of people along a rope and they\nanetv_0IxId05Eo6k,16121,\"There are two sets of people along a rope and they are separated in the middle by referees. They take a bow, pick up the rope, and each team\",begins to tug on the rope until a winner is called.,wins and best appear to the end.,comes out together and start the stunts for the mysterious race.,goes sailing into river and water while the camera passengers in.,comes to the beach to let ride them.,gold0-reannot,pos,unl,unl,unl,unl,There are two sets of people along a rope and they are separated in the middle by referees.,\"They take a bow, pick up the rope, and each team\"\nanetv_dAdCETrsDQw,11251,An athlete is then seen speaking with a new host and several shots of him playing and riding a horse are shown. More clips,are shown of him playing a sport and speaking to the host and shaking his hand.,are shown of people playing soccer in the sand while one man still parks the ball.,are shown of people are seen hitting goals on the beach with one man performing his movements.,are shown of teams running around the track while cheering.,,gold0-orig,pos,unl,unl,pos,n/a,An athlete is then seen speaking with a new host and several shots of him playing and riding a horse are shown.,More clips\nanetv_8EfkFxoXI_4,18240,The man checks the bike seat for looseness. The man,begins spinning the seat of the bike and removes it.,starts to remove chunks of tires.,gets up and works out very quickly on the bike's wheel.,opens the breast button 4 and adjusts the bike.,climbs the wheel of the bike on a fifth floor.,gold0-orig,pos,unl,unl,unl,unl,The man checks the bike seat for looseness.,The man\nanetv_8EfkFxoXI_4,18241,The man begins spinning the seat of the bike and removes it. The man,puts the seat back on the bike.,walks away and gives the man a complete hug.,pulls a foil out and lays down.,releases a bowling ball and bumps different positions.,put the tire back on the bike.,gold0-orig,pos,unl,unl,unl,unl,The man begins spinning the seat of the bike and removes it.,The man\nanetv_8EfkFxoXI_4,18239,The man shifts the seat of a bike. The man,uses the object from the table to tighten the seat of the bike.,boils the man in a piece of metal in the car.,bends forward and pushes the car.,puts on the wrench and shows off many tools in it.,,gold0-orig,pos,unl,unl,unl,n/a,The man shifts the seat of a bike.,The man\nanetv_8EfkFxoXI_4,10144,\"The tool is then inserted into the seat and it begins to get tightened. Once the seat is tight, the man then\",removes it out of the seat and then reinserts it to make sure it is properly positioned.,attaches to pierce the handle of the chain.,takes a rag and begins to measure the floor.,\"takes a tool and screws it in his arm, putting it behind the head.\",pulls a remotely snores out of the wrapping paper and begins to form a hilt.,gold0-orig,pos,unl,unl,unl,unl,The tool is then inserted into the seat and it begins to get tightened.,\"Once the seat is tight, the man then\"\nanetv_8EfkFxoXI_4,10143,A bike then appears and the person starts to move the seat back and forth illustrating its looseness. The tool is then inserted into the seat and it,begins to get tightened.,illuminates the room is displaying again.,gets out to be the vacuum top.,easy using a color to replace it correctly.,bounces across the back of the bicycle frame.,gold0-orig,pos,unl,unl,unl,pos,A bike then appears and the person starts to move the seat back and forth illustrating its looseness.,The tool is then inserted into the seat and it\nanetv_8EfkFxoXI_4,18242,The man puts the seat back on the bike. The man,uses the tool to adjust the seat on the side.,bends down and softly pats the boy on the head.,moves on the back of the bike.,puts on the bike.,falls off the bike again.,gold0-orig,pos,unl,unl,unl,pos,The man puts the seat back on the bike.,The man\nanetv_8EfkFxoXI_4,18237,A man talks while we view an object on the table. The man,picks up and holds the object.,adjusts the settings on a bench to remove his coat.,dips the yellow slide.,throws the darts and collapses and retrieves it.,starts brushing the horses legs.,gold0-orig,pos,unl,unl,unl,pos,A man talks while we view an object on the table.,The man\nlsmdc3092_ZOOKEEPER-45277,6026,Someone holds out her open palm. Someone,puts his hand in hers.,turns to look anxiously as she tries to retreat.,wears a protective noose around their necks.,gives someone a puzzled animal and a five - foot signal breaks up.,\"rolls in the filthy crops, flabbergasted.\",gold0-orig,pos,unl,unl,unl,unl,Someone holds out her open palm.,Someone\nanetv_rmGvgGOkqyk,17761,\"A guy run with a thin, elongated stick and throws the stick. The guy\",sticks out his tongue.,uses an arm sweep and puts one pole in the glass.,puts his sticks up and punches the center of the neck.,stretches in heel and stretches the rope on the field.,gropes the ball with the knife.,gold0-orig,pos,unl,unl,unl,unl,\"A guy run with a thin, elongated stick and throws the stick.\",The guy\nanetv_rmGvgGOkqyk,17760,The audience look on at the games. A guy,\"run with a thin, elongated stick and throws the stick.\",looks in a at crowd then kneels.,bowls a ball and wags baskets.,is standing on a chair a a few people watching from the sidelines.,breaks the paper with a string of warming up.,gold0-orig,pos,unl,unl,unl,unl,The audience look on at the games.,A guy\nanetv_nwBb-WkaCYU,4389,A person is sitting behind a table doing a rubiks cube blind folded. A timer,is on the desk in front of them.,is using his hands to solve his cube.,zooms on a table and then people previous indoors to create a rubik's cube.,touches it and shows some notes.,is giving instructions on a rubix table.,gold0-orig,pos,unl,unl,unl,unl,A person is sitting behind a table doing a rubiks cube blind folded.,A timer\nanetv_nwBb-WkaCYU,4390,A timer is on the desk in front of them. The person,completes the rubiks cube and sets it down on the table.,continues to push leaves.,picks up a contact lens and unscrews it.,crashes over the rocks and is seen breathing hard.,,gold0-orig,pos,unl,unl,unl,n/a,A timer is on the desk in front of them.,The person\nanetv_SipyRTPgdfY,3255,\"Then, the young man lifts the weigh above his head while he kneels. Suddenly, the young man drops the weight which hit his head, and he\",falls to the ground.,prepares to fight by himself.,lands to the floor and grabs his knees again with the weight.,tries to lift it against the wall.,stands and taps his hand until the man then dips and stretches over its head with strike.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the young man lifts the weigh above his head while he kneels.\",\"Suddenly, the young man drops the weight which hit his head, and he\"\nanetv_SipyRTPgdfY,3254,\"A young man kneels to lift a heavy weight. Then, the young man\",lifts the weigh above his head while he kneels.,lifts the weight from his shoulders before dropping it.,pulls off his shirt and release the toy.,helps the weight over him then pull him down.,takes his fingers away.,gold0-orig,pos,unl,unl,unl,unl,A young man kneels to lift a heavy weight.,\"Then, the young man\"\nanetv_SipyRTPgdfY,13306,Man is weightlifting is a roofed gym. blonde man wearing shorts,is in the roofed gym and is lifting weight.,is walking behind a bar holding a heavy weight on his head and walks showing how the bar is enclosed.,\"and shirt is in the bushes and shorts, practicing his karate workout.\",is playing basketball.,,gold0-reannot,pos,unl,unl,pos,n/a,Man is weightlifting is a roofed gym.,blonde man wearing shorts\nanetv_qwxmpiaT-kk,6729,One man starts shoving the other mans hands toward the table. the two,have an arm wrestling match.,continue to walk ahead and wave to other other.,continue running past the dirt and across the lawn.,continue to play for the croquet game.,kick some balls at each other while twisting around and looking disappointed.,gold0-orig,pos,unl,unl,unl,unl,One man starts shoving the other mans hands toward the table.,the two\nanetv_qwxmpiaT-kk,6728,Two men are sitting a ta table holding hands. one man,starts shoving the other mans hands toward the table.,holds a bow and shows it to a man outside and that the sailors stop him.,takes the paper and begins to spread a chair together.,is holding an stretched shirt and is watching talk.,,gold1-orig,pos,unl,unl,pos,n/a,Two men are sitting a ta table holding hands.,one man\nanetv_qwxmpiaT-kk,2357,Two men are sitting at the table with their arms positioned to arm wrestle. The young men,are holding each other's hands as they arm wrestle each other.,throw each other for the object back and forth throughout.,is fencing as another man wins and the referee is standing behind them watching.,hit the ball and jab at one another.,play darts as they continue to hit the ball and ends with several more clips of the man playing and kicking the ball in.,gold0-orig,pos,unl,unl,unl,unl,Two men are sitting at the table with their arms positioned to arm wrestle.,The young men\nanetv_8d7FyPzxzjg,14656,A man flies in the air with on a motorcycle. A man,makes a motocross circuit using a heavy machine.,surfs a far shot.,spins rope in a recreation area.,holds the child in his hand and circles in the trunk.,jumps down and talks about his throw.,gold0-orig,pos,unl,unl,unl,unl,A man flies in the air with on a motorcycle.,A man\nanetv_8d7FyPzxzjg,14658,People runs motocross on an bumpy road. people,\"ride a motorcycle on ramps, and then flies and spin in the air.\",stand on the ground and fight contentedly.,are racing down a street full of foam fitness bikes.,walk across the road through the smaller areas.,,gold0-orig,pos,unl,unl,unl,n/a,People runs motocross on an bumpy road.,people\nanetv_8d7FyPzxzjg,14657,A man makes a motocross circuit using a heavy machine. People,runs motocross on an bumpy road.,are shown getting a paw over jumping up.,walk up and down his supply truck.,are attached behind the wheel of the cars.,throw his belt in a block.,gold1-reannot,unl,unl,unl,unl,unl,A man makes a motocross circuit using a heavy machine.,People\nanetv_Zomv5zlkkEc,9439,A woman is seen standing in the middle of a floor and begins performing a dance routine while others watch her on the sides. The woman,continues dancing all around while the people watch and ends with her holding a pose.,continues dancing around with her arms up as well as swinging herself and dancing several times.,continues to dance around and ends with the other and ends with moving her arms around and back.,performs various moves followed by many impressive moves and ends with that performing the routine.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen standing in the middle of a floor and begins performing a dance routine while others watch her on the sides.,The woman\nanetv_Zomv5zlkkEc,11441,A woman is belly dancing on carpet. People,are behind her watching her.,are doing a choreography on the stage.,are missing in the background.,is seen falling on a dresser.,are doing zumba on a dance floor.,gold0-orig,pos,unl,unl,unl,unl,A woman is belly dancing on carpet.,People\nanetv_Zomv5zlkkEc,11442,People are behind her watching her. She,does a spin and bows.,turns to face her.,gulp after the same woman as his cue.,\"hands him to her squirrel, and they are singing having moment to oddly scrolling music and various store pops up before the camera,\",begins posted in front of the wall band as she leans forward and shakes her arm.,gold1-orig,pos,unl,unl,unl,unl,People are behind her watching her.,She\nanetv_N3WVKg7Q2io,2147,\"Then, there is a team on the filed playing flag football. They\",are running around trying to score for their team.,jump up and down into the audience.,get ready for a race.,perform the high jump and others continue to swap sexual poses.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, there is a team on the filed playing flag football.\",They\nanetv_N3WVKg7Q2io,2145,Some boys are in the pools playing with volleyballs. There,\"is a large swimming team swimming and throwing the ball around to their team mates, scoring.\",are shots of the zoo.,get up one to chase the ball.,are other men who throw stones to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,Some boys are in the pools playing with volleyballs.,There\nanetv_N3WVKg7Q2io,2146,\"There is a large swimming team swimming and throwing the ball around to their team mates, scoring. Then, there\",is a team on the filed playing flag football.,is a competition with a player and other brothers gathered in a ice field by people.,are several players playing soccer with different players on the ice water.,are two teams playing pong at one another as a young kid in blue shirt is serving a trophy.,,gold0-reannot,pos,unl,unl,pos,n/a,\"There is a large swimming team swimming and throwing the ball around to their team mates, scoring.\",\"Then, there\"\nanetv_2Xfigl8xrXc,16845,A woman wearing a black shirt begins talking and then someone getting their legs waxed appears. As she,\"talks, a layer of wax if placed on the leg and then a white piece of paper.\",steps to play a song on the phone and shows off her class.,\"is seated, she begins to smoke is placed in the middle of the room.\",\"completes the transfer of time, she gets up and begins to do sand into the pit.\",runs in front of a crowd of people that reached the ground.,gold0-orig,pos,unl,unl,unl,unl,A woman wearing a black shirt begins talking and then someone getting their legs waxed appears.,As she\nanetv_0h4UT-2XTAw,5710,She brushes her hair out and styles it. She,plays with her hair to show the curls.,then paints her face with the cotton.,pulls into the logo and website on the screen.,looks at herself as she brushes her hair off.,,gold0-orig,pos,unl,unl,pos,n/a,She brushes her hair out and styles it.,She\nanetv_0h4UT-2XTAw,5709,She takes them out of her hair to show her curls. She,brushes her hair out and styles it.,\"describes a ruler sewn with the nape of her hair, and where.\",talks to the camera about the rim in a line.,\"bangs her head with her other hand, throwing the hair upright.\",,gold0-orig,pos,unl,unl,unl,n/a,She takes them out of her hair to show her curls.,She\nanetv_0h4UT-2XTAw,16214,A woman is playing with her hair in front of the camera. She,takes out and shows off foam rollers.,walks down the sidewalk and plays with a hair dryer.,picks it up and brushes it from her fingers.,walks towards her camera and stands motionless.,is standing next to the camera doing using a razor brushing her face.,gold0-orig,pos,unl,unl,unl,unl,A woman is playing with her hair in front of the camera.,She\nanetv_0h4UT-2XTAw,5708,She is showing the rollers she used. She,takes them out of her hair to show her curls.,moves in bed in front of the faucet.,is using a steamer to fix it off with her hands.,is trying to blow her french braid into sections.,,gold0-orig,pos,unl,pos,pos,n/a,She is showing the rollers she used.,She\nanetv_0h4UT-2XTAw,16215,She takes out and shows off foam rollers. She,shows how to apply and remove the curlers.,douses the clothes together.,wallets he carries them onto a hanger and sprays his chest with water to clean the clean drain tool.,eats the tools and presents her teeth to the camera.,puts the soaping paper in the dryer.,gold0-orig,pos,unl,unl,unl,unl,She takes out and shows off foam rollers.,She\nanetv_0h4UT-2XTAw,5707,A woman is showing her curly hair. She,is showing the rollers she used.,is drying her hair with a dryer.,is talking to a camera in a room.,is wearing gloves and talking.,,gold0-orig,pos,pos,pos,pos,n/a,A woman is showing her curly hair.,She\nanetv_szW1c2SGdew,18595,A man swings his leg in the air creating letters and we see an opening screen. two men,are in two different rooms performing capoeira moves.,are practicing with a bowling club.,\"prepare for a hand throw in a field, across coach and ring appears and scissors.\",\"talk about the sport for kids, staring.\",start fighting and men and punching each other.,gold1-orig,pos,unl,unl,unl,unl,A man swings his leg in the air creating letters and we see an opening screen.,two men\nanetv_szW1c2SGdew,18598,The man does a handstand and pauses. We,see the website on a black screen.,see pucks in the water again.,man picks up at a flying rock on the other side of the lake.,is seen speaking to the camera holding a phone and showing off various types of products but speak to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,The man does a handstand and pauses.,We\nanetv_szW1c2SGdew,18599,We see the website on a black screen. We,see four screens with images of men doing capoeira.,see a lady in green with a dog being thrown.,see a replay of his board being shown.,see the lady in a blue shirt play a thumbs up.,see a game of hockey and people interviews javelin players.,gold0-reannot,pos,unl,unl,unl,unl,We see the website on a black screen.,We\nanetv_szW1c2SGdew,18596,Two men are in two different rooms performing Capoeira moves. A man,does a handstand move.,steps onto the stage and looks up to the ground.,is wearing sunglasses and watching them.,tips his approach behind the man again.,,gold1-reannot,pos,unl,pos,pos,n/a,Two men are in two different rooms performing Capoeira moves.,A man\nanetv_szW1c2SGdew,18597,A man does a handstand move. The man,does a handstand and pauses.,swings his arm around his men.,does one handstand on the pommel mat.,mounts the parallel bar.,flips off onto the parallel bars.,gold0-reannot,pos,unl,unl,pos,pos,A man does a handstand move.,The man\nanetv_DvTZ5mmF8NM,819,A pots of bowling water is seen with pasta and a hand stirring the pot. The person,hits the spoon on the side while continuing to stir the pasta.,takes the fork into a pan and plates another pot.,boils the lemonade in a pan.,cheers the pan into a pan and leaves off of the dishes and goes into the kitchen.,picks up a chicken and stirs it around in the pan pan.,gold1-orig,pos,unl,unl,unl,pos,A pots of bowling water is seen with pasta and a hand stirring the pot.,The person\nanetv_DvTZ5mmF8NM,6118,A pot of dried pasta is left to boil on the stove. A person,stirs a bowling pot of past on a stove.,opens the fridge and puts it on.,is making oats into some dirt holding a spoon.,cuts a shaggy lawn owl.,holds up a pan that covers the array of cookies from small plates.,gold1-orig,pos,unl,unl,unl,unl,A pot of dried pasta is left to boil on the stove.,A person\nanetv_DvTZ5mmF8NM,6119,A person stirs a bowling pot of past on a stove. The person,taps the spoon on the side of the pot to remove any stuck on pieces.,adds a liquid into the camera.,puts food on a baking pillow and he brushes the eggs off the table.,uses a chopping water to make a fire.,takes the dough into a vinegar mart.,gold0-orig,pos,unl,unl,unl,unl,A person stirs a bowling pot of past on a stove.,The person\nanetv_ZbFyGkfGFcE,12210,Children are playing on the beach. They,are building a sand castle.,decorate the christmas tree.,\"begin dancing, pushing their way along the ice.\",are sitting on the beach playing a game of volleyball.,,gold0-orig,pos,unl,unl,pos,n/a,Children are playing on the beach.,They\nanetv_ZbFyGkfGFcE,12211,They are building a sand castle. A girl,dumps a bucket full of sand in front of her.,is shown waving to a crowd.,drags an ax on the floor.,wearing dress pants and stilts runs around.,\"goes in fast, and hand goes out of reach to start sand castles.\",gold0-orig,pos,unl,unl,unl,pos,They are building a sand castle.,A girl\nanetv_RTIzzeNaH2Q,3943,\"A bike is being shown in the narrow walkway. An old man wearing gray shirt is putting on and screwing the black handle bars in the front of the bike, then put the front wheel of the bike, tighten the screw, and lastly he\",put the seat on.,continues to flip the tire and use between different rubber gate to make the big cool ramp.,begins to push the bike apart.,shows a new rubber tire.,,gold0-orig,pos,unl,unl,pos,n/a,A bike is being shown in the narrow walkway.,\"An old man wearing gray shirt is putting on and screwing the black handle bars in the front of the bike, then put the front wheel of the bike, tighten the screw, and lastly he\"\nanetv_xmvwhxB1q30,8129,The water gets choppier as they go on. The river,is lined with many trees.,continues steadily and the others clink glasses.,is wake by itself.,drifts past the hard waters of the river.,\"runs down a small, snowy waterfall.\",gold0-orig,pos,unl,unl,unl,pos,The water gets choppier as they go on.,The river\nanetv_uTQyPHg8r0M,8208,A young lady holds a blue glass and talks to the camera and shows a bottle of Listerine and a mirror. We,see the lady drink the listerine and swishes it in her mouth twice and spits in in the kitchen sink.,see the shells standing at the end.,see the bottle on your face.,see images of the man.,,gold1-orig,pos,unl,unl,pos,n/a,A young lady holds a blue glass and talks to the camera and shows a bottle of Listerine and a mirror.,We\nanetv_uTQyPHg8r0M,8284,\"An Asian woman is talking and she picks up a blue cup and drinks something from it, swishes it in her mouth, lifts up a small listerine bottle and shows it to the camera, lifts up a small heart mirror and continues swishing. The woman then\",walks off appears to spit in the sink and then gets another cup to drink out of and swishes more liquid in her mouth.,takes the drink and continues on smile.,begins drinking her drink and showing all the liquids.,pours the glass down a mexican glass then adds the cup and a sip of the red tea and gives the camera for her.,returns from the counter and picks up another drink.,gold0-orig,pos,unl,unl,unl,unl,\"An Asian woman is talking and she picks up a blue cup and drinks something from it, swishes it in her mouth, lifts up a small listerine bottle and shows it to the camera, lifts up a small heart mirror and continues swishing.\",The woman then\nanetv_uTQyPHg8r0M,8285,\"The woman puts a finger under her nose briefly and continues to swish and then goes back to the sink to spit it out, show her teeth, and then rinse out the sink with a bowl. The girl\",\"walks away from the sink, grabs her mirror and looks at her teeth and continues talking to the camera.\",\"places the towel cover over the his face, wipes his mouth with a napkin and kisses his hand.\",\"takes out a liquid, applies solution into the white jean and put it on the top of the coach's legs.\",takes her goggles off and brushes her eyes all clear and shows us the eyeliner she ends and brushes her hair.,is done rolling her camera on the back to reveal the shaving toothbrush before wearing a shirt and rubbing it into her mouth.,gold0-orig,pos,unl,unl,unl,unl,\"The woman puts a finger under her nose briefly and continues to swish and then goes back to the sink to spit it out, show her teeth, and then rinse out the sink with a bowl.\",The girl\nanetv_uTQyPHg8r0M,8211,The lady looks in the mirror at her teeth and points at them and walks in the room. The camera,pans away to the dining room.,shows her face behind the woman.,follows her as she paces all behind the fence.,pans down to the foreground dog.,moves to the right of the door where a large baby is sitting on the floor.,gold1-orig,pos,unl,unl,unl,unl,The lady looks in the mirror at her teeth and points at them and walks in the room.,The camera\nanetv_uTQyPHg8r0M,8209,We see the lady drink the Listerine and swishes it in her mouth twice and spits in in the kitchen sink. The lady,rinses the sink with a blue bowl.,takes a few steps closer and sets the shoes on.,rinses the plate into the sink.,gently stands the zoo and cries.,wipes her teeth on the other side of the mirror.,gold1-reannot,pos,unl,unl,unl,pos,We see the lady drink the Listerine and swishes it in her mouth twice and spits in in the kitchen sink.,The lady\nanetv_tvR1ovqyJZ8,17091,They are dragging a person on water skis. The person,stays upright as they are pulled quickly through the water.,attempts to skateboard through a large snow covered hill.,sledding the slide down the board and follows them.,shows off a triangular portion of a washboard.,paddles between the trees in the river.,gold1-orig,pos,unl,unl,unl,unl,They are dragging a person on water skis.,The person\nanetv_tvR1ovqyJZ8,17090,A person is riding inside a boat on the water. They,are dragging a person on water skis.,begin to snowboard down a river.,fall off the rope onto the waters.,clamber over snow with the boat going overhead.,are riding as they go to.,gold0-reannot,pos,unl,unl,unl,unl,A person is riding inside a boat on the water.,They\nlsmdc1059_The_devil_wears_prada-98930,3421,Someone gets up and salutes his fans. People,smile over at him.,\"in single drink, someone rushes back to the bank, his friends are hanging in for the mouth of the taxi.\",'s guards placed around a gang before him taking photographs of deposit.,approach a dirty skateboard brunette to the driver's side of the car.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gets up and salutes his fans.,People\nlsmdc1059_The_devil_wears_prada-98930,3420,Someone kisses someone before taking her place. Someone,gets up and salutes his fans.,falls to the floor and approaches her two sisters.,looks at the bowler coldly.,loads an assault rifle.,\"dashes through a door, shutting him out.\",gold0-orig,pos,unl,unl,unl,unl,Someone kisses someone before taking her place.,Someone\nlsmdc1059_The_devil_wears_prada-98930,3417,Someone steps down from the podium. Someone,makes her way over from the table she is been sitting at.,holds up his helmet.,carries the fixed equipment to the train.,jogs around a corner and through the open door.,holds up a book.,gold0-orig,pos,unl,unl,pos,pos,Someone steps down from the podium.,Someone\nlsmdc1059_The_devil_wears_prada-98930,3418,They had gathered in a plush banqueting suite with chandeliers hanging from the ceiling. Someone,spies someone sitting with someone.,places the men against the concrete terrace.,\"looks down, at the floor, its timbers still heated.\",sits on the couch at someone's bedside.,faces him on the bed.,gold0-reannot,pos,unl,unl,unl,unl,They had gathered in a plush banqueting suite with chandeliers hanging from the ceiling.,Someone\nanetv_8C1EFngZC3Q,11838,He then skips along with alternating feet across the block. People,are coming down the stairs behind him.,versus more people stand around and end with several pictures of knitting photos.,recoils and plays his saxaphone.,jumps along the balance beam and does his handstand to the board.,drink slim bar out the background walkway and step out.,gold0-orig,pos,unl,unl,unl,unl,He then skips along with alternating feet across the block.,People\nanetv_8C1EFngZC3Q,2370,\"He has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves. With his hands by his waster moving back and forth, he\",continues on in the same manner with the exercise.,smaller pushes himself up and down the bend to the feet spreading the entire body to go back into handsprings.,leans a bit backward and makes peers out.,reaches in front of the camera and begins talking to the camera that is standing next to him.,stops and aware that he is doing how to have used it.,gold0-orig,pos,unl,unl,unl,unl,He has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves.,\"With his hands by his waster moving back and forth, he\"\nanetv_8C1EFngZC3Q,11836,A man is in a studio doing step aerobics along to music on a step block. He,does a routine stepping on the block corners.,is talking at the camera while still on exercise machine.,stands behind people with only his arms raised and say 'in a squat preparing to be a dancing couple with that.,cuts another man out aisle and way.,,gold1-orig,pos,unl,unl,unl,n/a,A man is in a studio doing step aerobics along to music on a step block.,He\nanetv_8C1EFngZC3Q,11837,He does a routine stepping on the block corners. He then,skips along with alternating feet across the block.,\"bends through a pattern into a week muscle, then does flip repeatedly.\",stands and maneuvers the spiral.,twists his left arm then releases a few times in the end as he goes to open it.,bends above the bars and begins to work the agility routine over the bars.,gold1-orig,pos,unl,pos,pos,pos,He does a routine stepping on the block corners.,He then\nanetv_8C1EFngZC3Q,2369,A man is downstairs in what appears to be a basement turned into a gym is working out. He,has a stepping mat in front of him and begins walking left to right going up and down on the step as he moves.,\"continues on, jumping up and down the sidewalk to the stage and setting a dance bar.\",walks up to the band on the camera and looks down.,is working out so he does it.,,gold0-orig,pos,unl,unl,pos,n/a,A man is downstairs in what appears to be a basement turned into a gym is working out.,He\nanetv_iY7bZQnHXlk,16228,A little girl is standing on a chair in front of a sink. She,is doing the dishes in the sink.,wipes the shoe off with a bucket.,gets then using the rag and towel.,is holding a bottle of lipstick.,is drying her hair with a towel.,gold1-orig,pos,unl,unl,unl,pos,A little girl is standing on a chair in front of a sink.,She\nanetv_iY7bZQnHXlk,14025,She dumps the rest of the watet out of the cup and grabs the handsoap. She,struggles to get the soap out of the container but eventually gets some out.,drops her plate to the ground and shuts the door.,grabs the key from the key in the deadbolt and smiles to herself.,knocks over the radio.,,gold0-orig,pos,unl,unl,unl,n/a,She dumps the rest of the watet out of the cup and grabs the handsoap.,She\nanetv_iY7bZQnHXlk,14024,She turns off the water. She,dumps the water in the sink.,turns around in some frustration.,walks back to the building's main doorway where the last old man is been sitting.,bursts into the room where she has sunk.,,gold0-orig,pos,pos,pos,pos,n/a,She turns off the water.,She\nanetv_iY7bZQnHXlk,14023,She turns on the water and fills up the cup. She,turns off the water.,pours it back under the sink.,adds some more paint to the pressure washer.,begins making and mixing make more drink.,puts a coffee cup into a blue cup.,gold0-orig,pos,unl,unl,unl,unl,She turns on the water and fills up the cup.,She\nanetv_iY7bZQnHXlk,14022,A little girl brings a cup to the sink. She,turns on the water and fills up the cup.,takes the beer cup to her mouth.,gets into a bucket of water.,stands holding a dish watch.,,gold0-orig,pos,unl,unl,unl,n/a,A little girl brings a cup to the sink.,She\nanetv_iY7bZQnHXlk,14026,She struggles to get the soap out of the container but eventually gets some out. She,sticks her hand in the sink which has soapy water and plays in the water.,examines its contents as the girl.,flowers on her hands.,starts her then drops her clothes into the bin.,,gold0-orig,pos,unl,unl,unl,n/a,She struggles to get the soap out of the container but eventually gets some out.,She\nanetv_iY7bZQnHXlk,14027,She sticks her hand in the sink which has soapy water and plays in the water. The camerman,grabs a spoon form the sink and hands it to the girl.,turns around to face the water excitedly at the bottom of the stairs.,\"arrive, seems to stay.\",\"finishes the drink and rinses it, continuing to speak.\",goes so that she can be in the water.,gold0-orig,pos,unl,unl,pos,pos,She sticks her hand in the sink which has soapy water and plays in the water.,The camerman\nanetv_iY7bZQnHXlk,16229,She is doing the dishes in the sink. She,puts soap into the water in the sink.,starts back up off the stool and puts them in a plate.,climbs up on her knees and gets to the sink.,\"puts the kettle on a sink and slams it in the sink, as the water suddenly disintegrates.\",,gold0-reannot,pos,unl,unl,pos,n/a,She is doing the dishes in the sink.,She\nanetv_UeuZeIASSPw,6606,Woman is standing in a racetrack and start running to make a long jump. man stands and,marks the space where the woman jumped.,talks in the stands crowd as the man gets the fishbowl at the bar.,talks decorating the side of the grass.,spins forward to ski with her.,throw the javelin back in the basket.,gold0-orig,pos,unl,unl,unl,unl,Woman is standing in a racetrack and start running to make a long jump.,man stands and\nanetv_UeuZeIASSPw,6607,The long jump is repeated and a new woman is running in the race track to make the long jump too and a man sits rise a whie flag. woman is in race trakc while other men are in the background and the woman makes the long jump in the competition and then a repetition,is shown along the results.,is not in action.,is shown and different people ocean.,from the arena in the field.,and rushes to the track.,gold1-orig,unl,unl,unl,unl,unl,The long jump is repeated and a new woman is running in the race track to make the long jump too and a man sits rise a whie flag.,woman is in race trakc while other men are in the background and the woman makes the long jump in the competition and then a repetition\nlsmdc0026_The_Big_Fish-62562,8355,She hands him five dollars out of her pocket. He,is out the door in a flash.,hangs the piece on her upper hand and drops it.,snaps it back into a vase.,leaves the bottle in his jacket.,drops someone's cup in return.,gold0-orig,pos,unl,pos,pos,pos,She hands him five dollars out of her pocket.,He\nlsmdc0026_The_Big_Fish-62562,8356,\"He is out the door in a flash. While someone sips his iced tea, someone\",flips through a form she never expected to see again.,\"strides out of the cafe, climbs down the porch, revealing a blue hoodie and a blue cardigan.\",\"stands, pumps his arms, heaves another sigh, and looks at the camera behind a mirror.\",holds a thermometer to her hand as she notes it and stares at her in the mirror.,,gold0-orig,pos,unl,unl,unl,n/a,He is out the door in a flash.,\"While someone sips his iced tea, someone\"\nanetv_5sUctxaAFrw,16307,Several pictures are shown in the beginning of old roofs as well as new roofs and people working on top of these roofs. More shots,are shown of people spraying down the roofs and looking away from the camera.,are shown of people walking around and having intensely fighting one another.,are shown of people performing with one another and showing more clips of them falling down.,are shown of people riding around and leads into them falling in.,are shown of people charging and pirates and walking around and laughing with one another.,gold0-orig,pos,unl,unl,unl,unl,Several pictures are shown in the beginning of old roofs as well as new roofs and people working on top of these roofs.,More shots\nlsmdc3055_PROMETHEUS-27046,10526,Someone hands someone a cane. Someone and the aid,help the decrepit old man to his feet.,pick up the ducks.,get out.,feed a huge spiders exhibit.,walk toward the trough.,gold0-orig,pos,unl,unl,unl,unl,Someone hands someone a cane.,Someone and the aid\nlsmdc0017_Pianist-55852,16448,\"Someone, also a little shabbier, wends his way through the setters and buyers, the beggars, the passers - by, and reaches someone. Someone\",\"drops the two volumes into the basket, takes a handle one side of the basket, someone the other.\",steps from the green door.,\"has gone, as we see the footsteps, one of the participants went past his horse, and try to climb.\",slides his pirate card.,,gold0-orig,unl,unl,unl,unl,n/a,\"Someone, also a little shabbier, wends his way through the setters and buyers, the beggars, the passers - by, and reaches someone.\",Someone\nanetv_brrf2inGs7E,11479,A person is seen turning on a faucet and rubbing their hands under the water. The person,\"pushes soap into their hands, watching the soap drip down, and then scrubs their hands.\",rinses the glass with the rag and gathers it up.,begins cleaning the window with the rag and wiping out water again.,is then seen spraying around on the screen with a hose and soap afterwards.,then scrubs the items behind the counter on the towel while rubbing off a board.,gold0-orig,pos,pos,pos,pos,pos,A person is seen turning on a faucet and rubbing their hands under the water.,The person\nanetv_x9BN93AXNTQ,9756,A close up of a computer is shown followed by a man stepping into frame and singing into the microphone. The man,continues singing while the camera captures him and fades to black in the end.,begins brushing a person's hair with several hands as well as talks to the end.,continues playing and continuously drums while looking down.,smiles down various steps and begins to demonstrate the karate move together and ends by still speaking to the camera.,continues to change all of the courage in front of himself and continues playing a song.,gold0-orig,pos,unl,unl,unl,unl,A close up of a computer is shown followed by a man stepping into frame and singing into the microphone.,The man\nanetv_gOniW-yEZ0k,17876,A man is sitting in a park with his legs extended. two people,are knelled in front of the man.,are standing in a forest towards a mountain covered with snow.,are standing on a platform overlooking the swimming pool.,are kneeling as he lays on the beach.,are seen doing back ups on a bike.,gold0-orig,pos,unl,unl,unl,unl,A man is sitting in a park with his legs extended.,two people\nanetv_gOniW-yEZ0k,18829,A woman is seen kneeling down next to a man. Another person,is seen kneeling nearby.,pours liquid into a martini glass.,is shown in them jumping as well as begin performing tricks as a laughing.,walks past the camera.,,gold1-orig,pos,unl,unl,pos,n/a,A woman is seen kneeling down next to a man.,Another person\nanetv_gOniW-yEZ0k,17877,Two people are knelled in front of the man. one woman,takes a strip and waxes one of the man's legs.,looks to see new arms properly.,runs towards the camera.,stops walking and climbs in the building.,spreads plaster on a pumpkin and scrapes.,gold1-reannot,pos,unl,unl,unl,unl,Two people are knelled in front of the man.,one woman\nlsmdc0004_Charade-47621,3083,\"Having seen the claw, he rises and walks to the very edge of the level part of the roof. Someone\",turns and leaves going down the stairs.,ripples desperately as he gradually slides down beneath the open platform.,\"turns away and makes out of the view of the burning wreckage beside a flaming car, cutting her windshield again.\",dashes through the revolving gate.,pulls the glaze away from people and smiles.,gold0-orig,pos,unl,unl,unl,unl,\"Having seen the claw, he rises and walks to the very edge of the level part of the roof.\",Someone\nanetv_jXARa4T2G8o,17603,An intro leads into a camera panning around various snow locations with people moving and plows moving. The camera,shows several different people stretching and warming up followed by two people falling over and standing up.,pans out and leads into clips of people falling in pictures and piecing together.,pans around a large dirt track and down the mountain.,continues driving down the road while stopping to talk for more.,pans all around the area and pauses to switch sides afterwards.,gold1-orig,pos,unl,unl,unl,unl,An intro leads into a camera panning around various snow locations with people moving and plows moving.,The camera\nanetv_jXARa4T2G8o,17604,The camera shows several different people stretching and warming up followed by two people falling over and standing up. Several clips,are shown of snow boarders doing tricks on a mountain as well as jumps and grinds.,are shown of people sailing and riding around while the camera pans all around a people tied around the sides.,\"are then shown of people following and jumping around on bikes, then the celebrating chases in their direction.\",are shown of men falling celebrating and waving to the camera.,\"are shown of people playing sit ups, making flips and others watch on the side.\",gold0-reannot,pos,unl,unl,unl,unl,The camera shows several different people stretching and warming up followed by two people falling over and standing up.,Several clips\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15732,\"Nearing a giant statue in the center of the room, she spots a handsome African - American man reading. Someone\",\"ducks into an alcove, then peers back out at him.\",runs an arm across his stomach his clothes wrapped around his ankles.,\"of time, someone leads the others through the last alley and into the garden.\",grins as she pauses in a hotel bar to a computer.,,gold0-orig,pos,unl,unl,unl,n/a,\"Nearing a giant statue in the center of the room, she spots a handsome African - American man reading.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15739,Someone sets down her book and sits. She,\"grimaces, then faces the others at the large table.\",lowers her head as she picks up the fork and tastes it.,pats a back on the seat at the dining table.,glances at the camera as he sits with someone.,gets out and takes a picture.,gold1-orig,pos,unl,unl,unl,unl,Someone sets down her book and sits.,She\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15734,\"Pressing her lips together, someone ducks back into the alcove. Moments later, she\",\"casually steps out, pretending to read a book.\",walks into the kitchen.,\"signals to the civilian, and hurries toward the roof - the 'aircraft, where fuel cruisers arrive.\",glides down a corridor.,tosses a newspaper at her laptop.,gold1-orig,pos,pos,pos,pos,pos,\"Pressing her lips together, someone ducks back into the alcove.\",\"Moments later, she\"\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15737,\"Someone gazes across the room at her ex, who sits engrossed in his work. As a woman\",leaves a seat across from the first.,\"arrives, faces the team's digital press.\",\"turns and walks behind the counter, a message knocks someone over and over.\",stands beside someone she checks on someone.,falls victim someone stands.,gold1-orig,pos,unl,unl,unl,unl,\"Someone gazes across the room at her ex, who sits engrossed in his work.\",As a woman\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15731,\"She gives a man standing guard a little nod, then heads further in. Nearing a giant statue in the center of the room, she\",spots a handsome african - american man reading.,begins surrounded by a horizontal lift.,falls to a nearby tier.,\"heads inside, followed by a shabby white facing executive.\",,gold1-orig,pos,unl,unl,unl,n/a,\"She gives a man standing guard a little nod, then heads further in.\",\"Nearing a giant statue in the center of the room, she\"\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15740,\"She grimaces, then faces the others at the large table. Later, they all\",hold the table under the lip and scoot it across the floor.,stand in a huge elven - argentina sky.,eat breakfast in an indoor cafe.,sit around a table.,arrive to see a dvd and a bottle of cleaner.,gold0-orig,pos,unl,unl,unl,unl,\"She grimaces, then faces the others at the large table.\",\"Later, they all\"\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15742,\"Someone looks past the statue at someone. As they set it down, a lamp\",falls off the edge.,shines out from the sky.,launches back to a table at the table floor.,\"dives toward it, smashing the ceiling to the floor.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone looks past the statue at someone.,\"As they set it down, a lamp\"\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15735,\"Moments later, she casually steps out, pretending to read a book. As she\",races for a seat with a good vantage of someone.,holds a hand over her mouth and slaps down his face.,leafs through the contract to her friends.,\"does so, the aerial shows someone high on her lower cheeks.\",\"turns hurriedly, looking over the kitchen doorway she sees people still staring ahead.\",gold1-orig,pos,unl,unl,unl,pos,\"Moments later, she casually steps out, pretending to read a book.\",As she\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15728,\"In a bubble bath, someone listens and giggles. Someone\",listens to an ipod in one ear.,chats to a woman at a desk.,claps for them as they join someone.,\"looks at him sheepishly, then faces his older friend.\",begins dancing as usual.,gold0-orig,pos,unl,unl,unl,unl,\"In a bubble bath, someone listens and giggles.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15729,\"Someone takes a picture of himself in the bath, holding up the iPod, with a goofy grin, and sends it to someone. She\",grins at the picture on her phone.,jumps up from his own bed and sits up.,walks into the bedroom looking in through the window.,\"appears at the bottom, stops at his sink.\",considers for a moment before offering it to the back.,gold0-orig,pos,unl,unl,unl,unl,\"Someone takes a picture of himself in the bath, holding up the iPod, with a goofy grin, and sends it to someone.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15730,\"Someone enters in her slim gray pantsuit, her hair pulled back into a bun. She\",\"gives a man standing guard a little nod, then heads further in.\",\"is running for him, doing this as she is grieving.\",tries to sit with him.,frowns at her and shrugs at some showroom braids.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone enters in her slim gray pantsuit, her hair pulled back into a bun.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15743,\"As they set it down, a lamp falls off the edge. Someone's jaw goes slack and she\",looks over at someone who grins at her.,glances back at the house.,stares at the raised wing.,somersaults out of the car.,wraps her legs around him.,gold1-reannot,pos,unl,unl,unl,pos,\"As they set it down, a lamp falls off the edge.\",Someone's jaw goes slack and she\nlsmdc3088_WHATS_YOUR_NUMBER-42160,15727,He leans forward to watch her go. Someone,limps on a crowded walkway.,sits at him indignantly.,leans back on her hands and bows his head.,glances toward her family.,leans over a railing as people attempt to help.,gold1-reannot,pos,unl,pos,pos,pos,He leans forward to watch her go.,Someone\nanetv_eH8PT9fzbqU,13596,\"There are two people on a fenced in field and one of them has rope that they're moving, another person is looking down at something in their hands. A boy is standing on the outside of the field with other people just standing there and he\",walks onto the field while the woman who was looking at something in her hands walks off.,reaches for a pen and holds it down to his finger in the same position that you never get to see it.,watches a video some decaying.,turns and the people ready.,walks around the direction of join them.,gold0-orig,pos,unl,unl,unl,unl,\"There are two people on a fenced in field and one of them has rope that they're moving, another person is looking down at something in their hands.\",A boy is standing on the outside of the field with other people just standing there and he\nanetv_eH8PT9fzbqU,12642,A boy in a white shirt walks on to a field. The boy,swings his arms in preparation of throwing a shotput.,falls out of the rope but jumps off of his horse watching scoreboard.,picks up a ball and dips it across the big pile of sand.,hits the ball with a ball and swings it on both sides of the court.,throws frisbees at his head each time.,gold1-orig,pos,unl,unl,unl,unl,A boy in a white shirt walks on to a field.,The boy\nanetv_DAd-joUpMIk,83,There is another woman in the cable car getting ready to jump down. There,\"is a huge crowd standing on the bridge, looking up at the cable car.\",does the same who then goes to help.,are onto the ground.,see a van speed indoors in the competition.,,gold0-orig,pos,unl,unl,unl,n/a,There is another woman in the cable car getting ready to jump down.,There\nanetv_DAd-joUpMIk,79,She is surrounded by two men in yellow shirts. One of the men,is holding a phone camera in his hand to video tape her as she jumps.,sits on workout machines.,starts playing a small drum.,\"is playing leaves, hitting the ball back and forth.\",,gold0-orig,pos,unl,unl,unl,n/a,She is surrounded by two men in yellow shirts.,One of the men\nanetv_DAd-joUpMIk,78,A woman is getting ready too bungee jump from a cable car. She,is surrounded by two men in yellow shirts.,takes a back flip in the air and lands in a sand pit for the other woman.,walks over to a pier in a tunnel and rips her board.,\"dashes for the water, then climbs up the steep hill.\",climbs off the bridge and lands on the lifeboat.,gold1-orig,pos,unl,unl,unl,unl,A woman is getting ready too bungee jump from a cable car.,She\nanetv_DAd-joUpMIk,81,\"The men begin singing to cheer and encourage her to jump. After much hesitation, the woman finally\",jumps and hangs from the rope.,makes the sunny pose and continue dancing in the background.,stirs and folds the blue napkin on the table.,continues her performance behind the home.,,gold0-orig,pos,unl,unl,unl,n/a,The men begin singing to cheer and encourage her to jump.,\"After much hesitation, the woman finally\"\nanetv_DAd-joUpMIk,80,One of the men is holding a phone camera in his hand to video tape her as she jumps. The men,begin singing to cheer and encourage her to jump.,are driving the car in mugs of sticks.,continue to dance together while rinsing their hands.,find a chair and end by doing fire.,finish their dance and continue dancing.,gold0-reannot,pos,unl,unl,unl,pos,One of the men is holding a phone camera in his hand to video tape her as she jumps.,The men\nlsmdc1045_An_education-90339,883,Someone wipes away her tears. She,sobs into her hands.,takes her to a french stereo.,sees someone and dances closer.,dissolves into the dusky space.,removes her dress and peers inside.,gold0-orig,pos,unl,unl,unl,unl,Someone wipes away her tears.,She\nlsmdc1045_An_education-90339,885,Someone puts the tea and biscuits on the floor by the door. Someone,is racked by sobs.,moves outside from it.,jumps up from a pot.,gets up and starts down.,falls onto the table.,gold1-orig,pos,unl,unl,unl,unl,Someone puts the tea and biscuits on the floor by the door.,Someone\nlsmdc1045_An_education-90339,886,\"Someone is racked by sobs. Later, she\",is in the head mistress' office.,smiles at him and smiles politely.,holds up her phone as someone plays.,is visibly frustrated and pain.,drinks from a glass.,gold0-reannot,pos,unl,unl,unl,pos,Someone is racked by sobs.,\"Later, she\"\nlsmdc1045_An_education-90339,884,She sobs into her hands. Someone,puts the tea and biscuits on the floor by the door.,is dragged to a shelf.,picks up her lessons.,glances around then face her scoreboard.,holds his's hand to his lips.,gold0-reannot,pos,unl,pos,pos,pos,She sobs into her hands.,Someone\nanetv_MhWIIdVyWVs,19738,A martial arts artists performs slow moves with her arms and legs simultaneously. A man,speaks to the camera after the woman finishes her martial arts routine.,spins the hammer around the woman's shoulders.,performs one gymnast lines near the parallel bars.,show off his hand.,touches her neck and lifts her legs and back a squat.,gold0-orig,pos,unl,unl,unl,unl,A martial arts artists performs slow moves with her arms and legs simultaneously.,A man\nanetv_V3LvKGRzkeg,861,Other people watch on the sides as the group plays and speaks to one another. The band,continues to play as others around them enjoy themselves.,continues moving around the instrument while then bows to the camera.,plays in a pose and points to the cheering audience.,practice behind them as well as all seated together.,\"plays on the camera as she plays a song in a concert room, jumping into the music while the audience continues to dance.\",gold0-orig,pos,unl,pos,pos,pos,Other people watch on the sides as the group plays and speaks to one another.,The band\nanetv_V3LvKGRzkeg,16866,People are playing music up on a stage. People,are watching them in front of the stage.,are playing drums in front of them.,are at a foosball table talking to the camera.,are dancing with an audience of people.,are playing drums on a bar.,gold0-orig,pos,unl,unl,unl,unl,People are playing music up on a stage.,People\nanetv_V3LvKGRzkeg,16867,People are watching them in front of the stage. People,are dancing in front of the stage.,are on a stool opposite one another.,are sitting in bleachers watching the event.,are in the room getting ready for a race.,are sitting down facing them and interviewed.,gold0-orig,pos,unl,unl,unl,unl,People are watching them in front of the stage.,People\nanetv_V3LvKGRzkeg,860,A small group of people are seen standing on stage playing various instruments. Other people,watch on the sides as the group plays and speaks to one another.,are then seen bending down while standing around while one leads by taking pictures.,are seen dancing with one another in the air.,are seen dancing on stage while another people lead into them playing instruments around.,are seen speaking and holding instruments.,gold1-orig,pos,unl,pos,pos,pos,A small group of people are seen standing on stage playing various instruments.,Other people\nanetv_IAqNteMxXNk,3911,He puts the products into a sink and begins scrubbing around the sides. He,wipes down the counter and shows off the finished sink.,continues riding around with the mop while speaking to the camera.,shots are shown of the bathroom getting over a sink and shows them standing and below a sink.,washes the dishes all over a sink.,,gold0-orig,pos,unl,unl,pos,n/a,He puts the products into a sink and begins scrubbing around the sides.,He\nanetv_IAqNteMxXNk,3910,A man is seen standing behind a counter speaking to the camera and holding up cleaning products. He,puts the products into a sink and begins scrubbing around the sides.,pours all the ingredients into the sink and begins using the sink in the sink.,continues hammering down the car while washing dishes in the sink.,rubs his hands all around the sink and speaks to the camera.,,gold1-orig,pos,unl,unl,pos,n/a,A man is seen standing behind a counter speaking to the camera and holding up cleaning products.,He\nlsmdc3076_THE_SOCIAL_NETWORK-35234,6223,\"Someone drains a glass of brandy. Now in a taxicab, someone\",dozes on her boyfriend's shoulder.,leaps on a blowtorch.,waits on the beach.,gathers a box to find a bike seat.,sways back and forth beside the collapsible.,gold0-orig,pos,unl,unl,unl,unl,Someone drains a glass of brandy.,\"Now in a taxicab, someone\"\nlsmdc3076_THE_SOCIAL_NETWORK-35234,6222,\"As he goes, someone stares after him with an enthralled gaze. Someone\",drains a glass of brandy.,dances on the screen admiringly.,forks against someone's forehead.,appears to discover the other someone lying on top of her.,slides into the dolly.,gold1-reannot,pos,unl,unl,pos,pos,\"As he goes, someone stares after him with an enthralled gaze.\",Someone\nanetv_SIf4H2dqbpg,8929,They are each applying ornaments to the tree. They,get more from the buckets and add them to the tree.,take ornaments on the other picture.,put the dough in top of the christmas tree.,continue to playing with the golden ball.,stroll back and forth between the two men.,gold0-orig,pos,unl,unl,unl,pos,They are each applying ornaments to the tree.,They\nanetv_SIf4H2dqbpg,15579,One man puts on a jacket on while the camera pans around to more people decorating. Close ups of decorations,are shown as well as close ups of people.,is shown followed by a person setting up a christmas tree.,are shown as well as a man wearing dried lights.,are shown as well as other kids speaking and people decorating a tree.,are shown as well as a man kneeling down while speaking.,gold0-orig,pos,unl,unl,unl,pos,One man puts on a jacket on while the camera pans around to more people decorating.,Close ups of decorations\nanetv_SIf4H2dqbpg,15578,Two people are shown decorating a christmas tree followed by several others standing around. One man,puts on a jacket on while the camera pans around to more people decorating.,moves down and down the blue ornaments to the camera and the people continue to play.,continues raking and leads into them performing different tricks and ends by putting the rake down.,dressed in a suit and talks and instructs the finished cake.,dries his hands while the woman cuts back decorating.,gold0-orig,pos,unl,unl,unl,pos,Two people are shown decorating a christmas tree followed by several others standing around.,One man\nanetv_SIf4H2dqbpg,8928,A group of people are gathered around a tall christmas tree. They,are each applying ornaments to the tree.,are playing rock paper scissors.,are on the ground outside by the steel grey trailer.,are standing in front of some fallen tree watching and the clothes are holding up sides.,are floating facing each other.,gold1-orig,pos,unl,unl,unl,unl,A group of people are gathered around a tall christmas tree.,They\nanetv_8Kv7piYg9yc,6231,\"A group of kids in a gymnasium play Rock, Paper, Scissors. A girl wearing a blue jacket\",runs across the gymnasium to the other side.,is standing up by the fire wearing a blue shirt and a hat.,walks into the other girls.,films the boy as her hand stands holding the wooden case in her hand.,jumps up and throw the ball and runs past a group of students.,gold0-orig,pos,unl,unl,unl,unl,\"A group of kids in a gymnasium play Rock, Paper, Scissors.\",A girl wearing a blue jacket\nanetv_8Kv7piYg9yc,6233,A group of boys run across to the other side of the gymnasium. The camera man,pans across the gymnasium where many children are running and playing the game.,has his next racket.,turns a puck to turn on the tennis player.,takes slips and swings the score board and attempts to catch the jump rope.,is kissed back into the class one by one.,gold1-orig,pos,unl,unl,unl,unl,A group of boys run across to the other side of the gymnasium.,The camera man\nanetv_8Kv7piYg9yc,6232,A girl wearing a blue jacket runs across the gymnasium to the other side. A group of boys,run across to the other side of the gymnasium.,leave the basketball court against the top of a rope on a basketball court.,in red shirts perform volleyball and are followed by a girl with a club.,play people in the bleachers.,,gold0-orig,pos,unl,unl,pos,n/a,A girl wearing a blue jacket runs across the gymnasium to the other side.,A group of boys\nanetv_8Kv7piYg9yc,9517,\"They run back and forth, and the loser has to run. They\",continue playing throughout the video.,jump from their feet.,pick up some puppets.,come with the fire and point him across the clearing.,kick the ball away with their racquets.,gold0-reannot,pos,unl,unl,unl,unl,\"They run back and forth, and the loser has to run.\",They\nanetv_b4KrsFjcj-o,17304,People stand around in a room. People,do karate while some play the drums.,load a seat on a bike.,are in bar other riding on donuts.,are in glasses on a basketball court.,is put on a rock and are standing very like men.,gold1-orig,pos,unl,unl,unl,unl,People stand around in a room.,People\nanetv_b4KrsFjcj-o,17305,People do karate while some play the drums. The karate opponents,shake hands and hug.,try to get one through.,are put inside the strip club.,stop their drums in the end.,stand up and talk to each other.,gold0-orig,pos,unl,unl,pos,pos,People do karate while some play the drums.,The karate opponents\nlsmdc3064_SPARKLE_2012-4118,9848,\"She glances up at them with a reassuring look, and continues to the bottom. Waiting near the front door with a huge smile, someone\",holds her white fur coat.,stares with the book's keys.,puts the back of her seat on the canvas and stares at the road.,opens a door where a door opens.,,gold0-orig,pos,unl,unl,unl,n/a,\"She glances up at them with a reassuring look, and continues to the bottom.\",\"Waiting near the front door with a huge smile, someone\"\nlsmdc3064_SPARKLE_2012-4118,9844,Now someone watches someone pack her jewelry into a box. Someone,closes the buckles on her hard case black and white print suitcase.,goes off and bounces off the rolling board.,\"studies this well, a longer embarrassed.\",perches on her bed as she rubs her noses together.,\"catches it and vanishes, putting on the shirt.\",gold1-orig,pos,unl,unl,unl,unl,Now someone watches someone pack her jewelry into a box.,Someone\nlsmdc3064_SPARKLE_2012-4118,9847,They watch someone wind halfway down the wooden staircase with a confident strut. She,\"glances up at them with a reassuring look, and continues to the bottom.\",aims his weapon at someone.,\"sets down his books, sets the bag on a deserted floor - and takes off a lamp, reading a paper.\",\"warmly against the wall as he relaxes, his shadow cast against a shadowy wall.\",rotates the bar and watches.,gold0-orig,pos,unl,unl,unl,unl,They watch someone wind halfway down the wooden staircase with a confident strut.,She\nlsmdc3064_SPARKLE_2012-4118,9851,\"She stares out for a moment toward her oldest daughter, then gently closes the front door. Turning around, she\",\"gazes up at her two remaining daughters, who glare down.\",studies the mutt in them.,passes a blonde young girl separating her way through the french windows.,gets back the passenger seat and smiles.,finds her husband eyes the historic amphitheater and scrap white carpet.,gold0-orig,pos,unl,unl,unl,unl,\"She stares out for a moment toward her oldest daughter, then gently closes the front door.\",\"Turning around, she\"\nlsmdc3064_SPARKLE_2012-4118,9855,\"As he reads a book in a burgundy robe, she serves him coffee and caresses his shoulders. She\",sits on his lap.,shoves the back of her head in the bar and shifts her attention to the music.,steps up to the bedroom door.,\"arrives at another building, where a case twitch over a chest.\",gets to his feet.,gold1-orig,pos,unl,unl,unl,unl,\"As he reads a book in a burgundy robe, she serves him coffee and caresses his shoulders.\",She\nlsmdc3064_SPARKLE_2012-4118,9853,\"Now at a flat roof mansion, identical glass paneled doors line a lengthy balcony. Someone\",emerges from inside and approaches someone in a white baby doll nightie.,opens the room to the windows of the pizzeria.,\"coughs, having eaten food over.\",smashes a plastic box with a machine gun.,presents someone's sad faces.,gold0-orig,pos,unl,unl,unl,unl,\"Now at a flat roof mansion, identical glass paneled doors line a lengthy balcony.\",Someone\nlsmdc3064_SPARKLE_2012-4118,9856,\"As their embrace intensifies, they passionately kiss each other's necks. He\",rubs his hand up her body.,swiftly turns the turn - sharply around.,passes from the forest to someone.,\"flings an arm around someone, ripping her loose shirt.\",kisses her cheek and carries someone away.,gold0-orig,pos,unl,unl,pos,pos,\"As their embrace intensifies, they passionately kiss each other's necks.\",He\nlsmdc3064_SPARKLE_2012-4118,9849,\"Waiting near the front door with a huge smile, someone holds her white fur coat. She hands him a suitcase and they\",continue out the front door.,share the light bulb.,look down at him.,hurry over in confusion.,return to the theater.,gold1-orig,pos,unl,unl,unl,unl,\"Waiting near the front door with a huge smile, someone holds her white fur coat.\",She hands him a suitcase and they\nlsmdc3064_SPARKLE_2012-4118,9858,\"Now inside someone's mansion, someone rubs her nose while smoking a cigarette. A thick head band\",supports her disheveled hair.,burst from the phone.,sits nearby watching the movie home.,carries 10 past bright camels.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now inside someone's mansion, someone rubs her nose while smoking a cigarette.\",A thick head band\nlsmdc3064_SPARKLE_2012-4118,9854,\"Someone emerges from inside and approaches someone in a white baby doll nightie. As he reads a book in a burgundy robe, she\",serves him coffee and caresses his shoulders.,\"clips her shoes, revealing the tin.\",waves the flower to her father.,shifts a net onto an enormous returning chair.,sits with someone and daughters out of the booth.,gold0-orig,pos,unl,unl,unl,unl,Someone emerges from inside and approaches someone in a white baby doll nightie.,\"As he reads a book in a burgundy robe, she\"\nlsmdc3064_SPARKLE_2012-4118,9843,Someone shares a gaze with someone. She,\"glances at the others, then walks out.\",pours a cup of coffee as she jogs into someone's apartment.,turns her head around to look at a cab.,gives a respectful nod.,joins them in the water.,gold1-orig,pos,unl,unl,pos,pos,Someone shares a gaze with someone.,She\nlsmdc3064_SPARKLE_2012-4118,9845,\"Holding back tears, someone separates from someone. With a soft smile, she\",touches someone's cheek and grabs her suitcases.,allows him to cover up a smile.,unzips a jacket and steps down.,pulls away from him after the teapot.,raises her hand in the air.,gold0-orig,pos,unl,unl,unl,pos,\"Holding back tears, someone separates from someone.\",\"With a soft smile, she\"\nlsmdc3064_SPARKLE_2012-4118,9852,\"Turning around, she gazes up at her two remaining daughters, who glare down. Now at night, someone\",\"mounts someone's motorcycle, holding him tight.\",chases a junk dish on a rocky wall.,\"struts across the campus, flanked by their team members, and reaches their pickup through the narrow alley.\",puts water in a wardrobe.,\"drives along the road through the forest, carrying slumped bushes.\",gold0-reannot,pos,unl,unl,unl,unl,\"Turning around, she gazes up at her two remaining daughters, who glare down.\",\"Now at night, someone\"\nlsmdc3064_SPARKLE_2012-4118,9842,Someone meets her daughter's gaze. Someone,wipes tears from her cheeks.,is just taken in.,averts her gaze then lowers his shrug.,considers the question and now.,pats the down general.,gold0-reannot,pos,unl,unl,unl,unl,Someone meets her daughter's gaze.,Someone\nlsmdc3045_LAND_OF_THE_LOST-21340,16030,He heads out of the plaza. Someone,leans wearily against a rock and faces someone.,\"stares at the ringwraith, wide - eyed.\",stows his ax in a cabinet.,faces his neighbor who lowers the window inside a house.,\"locks its door shut, and shuts the door.\",gold1-orig,pos,unl,unl,pos,pos,He heads out of the plaza.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12713,He disappears in a spiral of black smoke. Someone still,\"kneels beside someone, who is lying unconscious.\",lowers the barrel of the gun with a clown.,\"wears his mask, flute.\",lowers the gun nervously.,,gold0-orig,pos,unl,unl,pos,n/a,He disappears in a spiral of black smoke.,Someone still\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12712,\"Appearing from fireplaces, someone and his minions see someone. He\",disappears in a spiral of black smoke.,finds a form of three clicks.,has mixed out of a black limousine.,takes the menacing stick and stares at someone.,flips toward another guy.,gold0-orig,pos,unl,unl,pos,pos,\"Appearing from fireplaces, someone and his minions see someone.\",He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12711,A faint black vapor leaves his body. He,looks up and see someone hovering above him.,exhales it tighter around his neck and fires.,\"opens it, sees somebody.\",grabs the last scroll from the shelf and skims it.,,gold0-orig,pos,unl,unl,pos,n/a,A faint black vapor leaves his body.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95416,12710,Someone makes a last desperate effort. Someone,is thrown onto his back.,falls asleep on the bed.,watches the cat leave.,bows and faces him.,stops and wipes his eyes clasping a swift machine.,gold0-reannot,pos,pos,pos,pos,pos,Someone makes a last desperate effort.,Someone\nanetv_lRB6XvAm_FU,17420,The words Decorating With Attitude appear on screen. Children,open ornaments and place them on the tree.,appear in the background laying out more snow ombre.,cups the palm while a team member takes a picture of an animal.,are speeding down a street.,,gold0-orig,pos,unl,unl,unl,n/a,The words Decorating With Attitude appear on screen.,Children\nanetv_lRB6XvAm_FU,17422,She then purposely breaks another ornament. Credits,roll at the end.,\"in handcuffs, she ends with a photo of a cool soft father exam table.\",she has made a removed letter on a gurney and puts it on her leather jewelry box.,\", the ingredients are once again applied onto the cake.\",,gold0-orig,pos,unl,unl,unl,n/a,She then purposely breaks another ornament.,Credits\nanetv_lRB6XvAm_FU,6495,They are putting ornaments onto the Christmas tree. Words,come onto the screen.,is putting photos onto the christmas tree.,take up a sharp stack of paper on logs.,are being carried by a christmas tree while people are jumping on blankets in the grass.,of them come out onto the sidewalk in front of the grass with a torch.,gold0-orig,pos,unl,unl,unl,unl,They are putting ornaments onto the Christmas tree.,Words\nanetv_lRB6XvAm_FU,6494,Kids are sitting under a Christmas tree. They,are putting ornaments onto the christmas tree.,crash into each other.,do to balance the christmas tree.,are pushing a small mower across the lawn.,,gold1-orig,pos,unl,unl,unl,n/a,Kids are sitting under a Christmas tree.,They\nanetv_lRB6XvAm_FU,17421,Children open ornaments and place them on the tree. The little girl,destroys a glass ornament.,poses between the tree two pillars in the yard.,take them out of the tree and places a can on another tree.,tightens box between sticks and begins to climb up on the beached board.,puts ornaments on the exterior.,gold1-reannot,pos,unl,unl,unl,pos,Children open ornaments and place them on the tree.,The little girl\nanetv_3FUVKpQA6IY,4466,\"Then, she takes a seat and the other guy takes his turn. Then it's the girl on the other teams turn, they\",\"keep taking their turns and drinking away, having a good time.\",go back and pick her up.,continue dancing back and forth then continue playing the game again.,twins going back upstairs in the floor.,talk to each other.,gold0-orig,pos,unl,unl,unl,pos,\"Then, she takes a seat and the other guy takes his turn.\",\"Then it's the girl on the other teams turn, they\"\nanetv_3FUVKpQA6IY,4465,\"Some people are playing beer bong having a good time, the man throws fist and he makes it into the girls cup. She\",drinks her drink and then wets her ball in water before throwing her ball.,wrings the plates and cups on them.,\"moves the colored puck into camera, take it out and return it into the shot.\",is then shown as a little girl in black and a little girl talk to him.,gets in the pitcher filled with snacks and sticks up to smile.,gold0-reannot,pos,unl,unl,unl,unl,\"Some people are playing beer bong having a good time, the man throws fist and he makes it into the girls cup.\",She\nanetv_A4PdcfWqrN8,19410,\"A dog spins around in a circle with her. the woman stops spinning, the dog then\",stands on the woman's back.,grabs something from her and holds back up a little.,closes it onto the screen.,hits a phone to another woman.,rolls the dog down in the field and walks to the fourth room.,gold0-orig,pos,unl,unl,unl,unl,A dog spins around in a circle with her.,\"the woman stops spinning, the dog then\"\nanetv_A4PdcfWqrN8,19409,A woman holding two frisbees spins around in a circle. a dog,spins around in a circle with her.,does a belly dance.,runs around on top of her.,\"walks into a black, green field holding a racket.\",,gold0-orig,pos,unl,unl,pos,n/a,A woman holding two frisbees spins around in a circle.,a dog\nanetv_A4PdcfWqrN8,19411,The woman throws the frisbee and the dog catches it. the woman and the dog,continue to do various tricks.,stand in a kitchen as she plays frisbee.,run back to catch the frisbee as she feeds the dog.,run out of the room and follow the woman.,do fetch frisbee with the dog.,gold1-orig,pos,unl,unl,unl,pos,The woman throws the frisbee and the dog catches it.,the woman and the dog\nanetv_fULvroAfMAo,6312,\"A guy raises a metal ball above his head, spins with a metal ball, and releases the metal ball. A guy cheers after\",releasing the metal ball.,practice darts and the man on the push board.,cheering a men five the four as the score and the coaches start to walk around.,template puts his hands on the ground and the crowd claps.,dodgeball after a ball.,gold0-orig,pos,unl,unl,unl,unl,\"A guy raises a metal ball above his head, spins with a metal ball, and releases the metal ball.\",A guy cheers after\nanetv_fULvroAfMAo,6311,The credits of the clip are shown. A guy,\"raises a metal ball above his head, spins with a metal ball, and releases the metal ball.\",is throwing darts into the net.,holds a plastic glass ball of chips in his left hand with a bat in hand.,is playing a polo game on a basketball court.,starts playing cream on the floor while playing the sax.,gold1-reannot,pos,unl,unl,unl,unl,The credits of the clip are shown.,A guy\nanetv_f-r9g_-5huM,7400,A man and woman are talking. A man,starts playing a harmonica.,is doing a exercise in front of a table in front of him.,reaches for the kids to start talking.,is talking into a microphone.,walks into frame to play curling.,gold0-orig,pos,unl,unl,pos,pos,A man and woman are talking.,A man\nanetv_ZIFxB0gZ5tY,4979,We see a man swinging in a park. The man,stands while holding onto the swing.,holds up percussion instruments.,takes several other objects around to see more surfers break through the water.,hops around and swings himself around.,jumps over obstacles and goes through the woods.,gold0-orig,pos,unl,unl,pos,pos,We see a man swinging in a park.,The man\nanetv_ZIFxB0gZ5tY,4980,The man stands while holding onto the swing. The man stands again and we,see a little girl.,see the ending title credits.,see the men walking away.,see the closing screen.,,gold0-orig,pos,unl,unl,pos,n/a,The man stands while holding onto the swing.,The man stands again and we\nanetv_ZIFxB0gZ5tY,4981,\"The man stands again and we see a little girl. A lady tries to put the girl in the swing, but she\",ends up swinging alone.,catches hold of the rake and jumps between the lovebirds.,goes stick without practicing.,\"moves up quickly, while a white shot of her walks over and joins her.\",puts her chin in the air even then lashes off her legs.,gold0-reannot,pos,unl,unl,unl,unl,The man stands again and we see a little girl.,\"A lady tries to put the girl in the swing, but she\"\nlsmdc3089_XMEN_FIRST_CLASS-43799,9198,Black - and - white footage of someone f. Kennedy appear. Someone,\"pushes his wheelchair, then stops and faces him.\",adjusts someone's office with his associates.,\"and people watch, transfixed.\",\"glares at the glass from her open door, bloody pain spreads on the front of someone's neck.\",goes to the door and finds a private key.,gold1-orig,pos,unl,unl,unl,unl,Black - and - white footage of someone f. Kennedy appear.,Someone\nanetv_LvkqCFRC5Vk,13580,A man in a brown suit is talking. People,are running around on a field playing lacrosse.,are sitting on a slack line.,are inside a ring and talking about their bikes.,walk around on empty grass.,see a white spread across the screen.,gold0-reannot,pos,unl,unl,pos,pos,A man in a brown suit is talking.,People\nanetv_9qOfesI3bGE,10511,A man is seated with an accordian on his lap. He,pulls it in and out as he plays the keyboard with his other hand.,talks to a camera while talking to the camera.,starts playing the guitar.,uses the spoon next to the instrument waiting for him to play.,jumps back down and holds his shoe down.,gold1-orig,pos,unl,unl,unl,unl,A man is seated with an accordian on his lap.,He\nanetv_Gd6YooP1_CU,194,The camera pans around to more people with drinks in their hands. A ma,looks down at his lap with the drink still in front of him.,is shown on the screen and ends by ends with more clips of men playing and playing them.,is then shown hitting a plate with and grabbing a large ball.,is shown posing with a woman.,is shown with the people push around and interact with one another.,gold0-orig,pos,unl,unl,pos,pos,The camera pans around to more people with drinks in their hands.,A ma\nanetv_Gd6YooP1_CU,193,A close up of a coffee drink is shown followed by a man drinking out of the cup. The camera,pans around to more people with drinks in their hands.,is then seen close up with glasses.,speaks to the camera while downcast.,interspersed with a man drinking glasses with the man drinking a drink.,,gold0-orig,pos,unl,unl,pos,n/a,A close up of a coffee drink is shown followed by a man drinking out of the cup.,The camera\nlsmdc0023_THE_BUTTERFLY_EFFECT-59707,17520,Someone screams as blood pours from his nose. Someone,is out of bed at once to help him.,seizes someone's hand.,gazes at a ceiling fan.,fills the cup with blood and blows the smoke.,touches someone's wound.,gold1-orig,pos,unl,unl,unl,pos,Someone screams as blood pours from his nose.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59707,17518,\"We see countless and brief image flashes of someone growing up from the age of thirteen with no arms, and requiring a.. People\",load popcorn and drinks onto someone's lap as someone pushes the wheelchair.,\"pant, someone is haunted.\",\"mill up a hill of sharpening trees, which is covered by other trees.\",strokes the man's hair.,,gold1-orig,pos,unl,unl,pos,n/a,\"We see countless and brief image flashes of someone growing up from the age of thirteen with no arms, and requiring a..\",People\nanetv_z9uVyf0D8eM,15295,A man is seen playing a set of bag pipes to the camera while moving his hands up and down. The man,continues playing the instrument in the room and ends by moving his hands down.,continues playing with the racket and finishes by stopping to speak to the camera.,continues speaking to the camera while still putting down the guitar.,continues speaking and well as the man showing up the violin and kicking him hands in the air.,continues to play with the frisbees and looks back and forth and ends.,gold0-orig,pos,unl,unl,unl,unl,A man is seen playing a set of bag pipes to the camera while moving his hands up and down.,The man\nlsmdc3003_40_YEAR_OLD_VIRGIN-1265,2929,Someone flicks his friend in the crotch. Someone in the groins,slaps him and punches his shoulder.,\", the doctor and his cronies look for crates for them.\",stops the pixie - faced a who considers the com.,hits him again and spits in his face before leaving.,\", gets excited with her phone.\",gold1-orig,pos,unl,unl,unl,unl,Someone flicks his friend in the crotch.,Someone in the groins\nlsmdc3003_40_YEAR_OLD_VIRGIN-1265,2928,Someone sets his drink down. Someone,flicks his friend in the crotch.,tosses the bar to someone who blocks him.,blinks from his apartment.,points his stick sheepishly.,comes out of the cafe - only as someone enters his apartment.,gold1-reannot,pos,unl,unl,unl,unl,Someone sets his drink down.,Someone\nlsmdc3043_KATY_PERRY_PART_OF_ME-20851,5050,Dancers pose around someone as she stands center stage with one arm raised straight up. Fountains of sparking fireworks,shoot up behind them.,\"rip in circles above them, sending crests clouded images of the ocean.\",extend up on the the priest.,\"illuminate a vast street gauge, with tall wrought iron doors.\",float over the factory floor.,gold0-orig,pos,unl,unl,unl,unl,Dancers pose around someone as she stands center stage with one arm raised straight up.,Fountains of sparking fireworks\nlsmdc3043_KATY_PERRY_PART_OF_ME-20851,5051,\"Fountains of sparking fireworks shoot up behind them. With her eyes closed, someone\",\"mouths the words, thank you, god.\",\"speeds off, leaving a wide row of vehicles driving down the lane.\",disintegrates into a puddle.,shakes her head and settles back in his seat.,gets on a black.,gold0-orig,pos,unl,unl,unl,unl,Fountains of sparking fireworks shoot up behind them.,\"With her eyes closed, someone\"\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14803,\"Someone pats him on the shoulder. As he and his assistant head out, someone\",swivels his chair to face them.,points from the passenger seat.,crouches and leads him toward the stairwell.,\"crouches right by the wine bottle, peering across his water's goggles.\",drops his clothes and slips out of sight.,gold0-orig,pos,unl,unl,unl,unl,Someone pats him on the shoulder.,\"As he and his assistant head out, someone\"\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14795,He nods to someone who turns on a fan. He,sprinkles someone with water from a pitcher.,girl hikes out of the river as the four lifeboats from the wrecked boat explode the chasm.,youngsters pass on the letter!,\"takes a deep breath on his own mouth, then turns on a cellphone.\",buttons off his jeans.,gold0-orig,pos,unl,unl,unl,unl,He nods to someone who turns on a fan.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14796,He sprinkles someone with water from a pitcher. Someone,tosses scraps of newspaper.,stares at the bear.,\"squeezes it out with his finger, then rushes out.\",smears his skin and dabs.,watches someone get away from the glass.,gold1-orig,pos,unl,unl,unl,unl,He sprinkles someone with water from a pitcher.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14794,Someone rocks someone's chair. He,nods to someone who turns on a fan.,\"extends helplessly to someone, who sits back down.\",follows someone and him toward the table.,\"manages a little, then stares at the ground.\",glances away then shrugs.,gold0-orig,pos,unl,unl,unl,pos,Someone rocks someone's chair.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14802,\"Someone shuts his eyes, and shakes his head. Someone\",pats him on the shoulder.,hands the two boys.,presses his lips together with a gentle smirk.,tensely shifts his anguished eyes.,opens his mouth slightly and swallows.,gold0-orig,pos,unl,unl,unl,unl,\"Someone shuts his eyes, and shakes his head.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14804,\"As he and his assistant head out, someone swivels his chair to face them. Someone\",turns back with a smile.,leans into someone's mic.,spots him pushing a bedraggled woman over his shoulder.,gets up from the table.,shifts his gaze.,gold1-orig,pos,unl,unl,pos,pos,\"As he and his assistant head out, someone swivels his chair to face them.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14800,He looks at someone who hands him a newspaper hat. He,places the hat on his client's bald head.,enters with an interview and sees the reporters having breakfast.,notices her up a few inches off the floor next to the room.,looks to the spot where someone has been lying and wipes his right forearm.,,gold0-orig,pos,unl,unl,pos,n/a,He looks at someone who hands him a newspaper hat.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14801,He places the hat on his client's bald head. Someone,\"shuts his eyes, and shakes his head.\",\"picks up someone, his mugshot taped to the wall in the next room.\",ducks down to drag his hands out.,hops out of the cab.,,gold0-orig,pos,unl,unl,unl,n/a,He places the hat on his client's bald head.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23804,14798,Someone spins his client's chair. Someone,cocks an eyebrow at his assistant.,uses tape to take cover.,\"and his family sit on the couch, next to the wheelchair.\",\"raises it and sets it in his glasses, then dials the number.\",,gold1-reannot,pos,unl,unl,unl,n/a,Someone spins his client's chair.,Someone\nanetv_kF-J9mKwA8A,8797,Other people walk in and out of frame from the boy while he continuously plays the game on the drum. Another boy holding a drink,walks into frame and watches the boy play the game.,pulls the ball off the screen and finishes with the man.,sits on the altar.,raises the other arm to give them a big shot.,walks into frame while looking back in the camera pans away.,gold1-orig,pos,unl,unl,unl,pos,Other people walk in and out of frame from the boy while he continuously plays the game on the drum.,Another boy holding a drink\nanetv_kF-J9mKwA8A,8796,A young boy playing a large drum game concentrates while the camera watches him play. Other people,walk in and out of frame from the boy while he continuously plays the game on the drum.,walks quietly on the stage by three and off to one another.,stand up and chase him.,are shown playing on a stone and moving to the floor.,flee the surveillance with the photo and the man abs him shirtless.,gold0-orig,pos,unl,unl,unl,unl,A young boy playing a large drum game concentrates while the camera watches him play.,Other people\nanetv_oD45QIOK4z0,13803,The players from Brasil scores while people in the bleaches celebrate. A Brazilian player,\"pass the ball to his playmate who scores and runs to celebrate, other brazilian players scores many times.\",has flags and and looks after them with orange extensions.,reads on a bomber record.,passes between two teams as they charge in and throw their goal.,,gold0-orig,pos,unl,unl,unl,n/a,The players from Brasil scores while people in the bleaches celebrate.,A Brazilian player\nanetv_oD45QIOK4z0,13804,\"After, Brasil plays with other teems and scores many times. Then Brasil\",plays with players from other countries and scores.,form the track and put vines at the edge of the beach.,hops off a rock that flicks on his side.,works and the screen shows a black screen.,is skateboarding and scenes of a new jump and hurling cameras.,gold0-reannot,pos,unl,unl,unl,unl,\"After, Brasil plays with other teems and scores many times.\",Then Brasil\nanetv_mWNTl9Bh7kI,13844,A small group of men are seen standing on a field. The men,playing a game with one another using sticks to hit a ball.,jump around one another while other watch on the side.,continuously circle one another while moving around and adding pucks.,continue fighting with one another while various people are shown.,circle around one another while others watch on the side.,gold1-orig,pos,unl,unl,unl,pos,A small group of men are seen standing on a field.,The men\nanetv_mWNTl9Bh7kI,2724,Kids are running around on the field playing criquet. They all,chase after the ball.,get on the walk and shake hands.,begin talking around the kids.,get around and run out of the park area.,hit the ball with the chase of each other.,gold0-reannot,pos,unl,pos,pos,pos,Kids are running around on the field playing criquet.,They all\nanetv_mWNTl9Bh7kI,2723,A man in a white shirt is standing on a field. Kids,are running around on the field playing criquet.,start playing a game of beer pong.,are talking to the camera watching him.,are pulling on a rope from side to side.,are jumping rope and chasing a ball all around a field.,gold1-reannot,pos,unl,unl,pos,pos,A man in a white shirt is standing on a field.,Kids\nanetv_doNSg6PuKDM,18850,The girl drops her shovel and shovel in the snow. The child,walks over to her family in the yard.,flips once the girls stride out on the concrete walkway.,walks off to a cabin while taking blankets out in front of her.,is taking wet snow from her windshield.,pulls out the jack.,gold0-orig,pos,unl,unl,unl,unl,The girl drops her shovel and shovel in the snow.,The child\nanetv_doNSg6PuKDM,18849,A child shovels the snow in a yard and throws it into the driveway. The girl,drops her shovel and shovel in the snow.,stares down at the snow tree having passed.,\"moves over to face the mower, making along to a sign that is held with the rope still in it.\",gets in the car and walks to the front of the girl home.,walks along the sidewalk again while the girl goes to the front.,gold1-orig,pos,unl,unl,unl,unl,A child shovels the snow in a yard and throws it into the driveway.,The girl\nanetv_yG4C_s7ItA4,2563,She pours lotion onto her hand and puts it on her legs with a towel. She,begins to shave her legs.,rolls on to her side and goes to a window.,repeats the process again and continues shaving her neck.,rubs the lotion onto her hands.,,gold0-orig,pos,unl,unl,pos,n/a,She pours lotion onto her hand and puts it on her legs with a towel.,She\nanetv_yG4C_s7ItA4,2561,A woman sits on a bench shaving her legs. She,pumps lotion out of a bottle and spreads it on her leg.,lets her hair hang with her faces.,flops on her back.,does a gymnastic routine to the balance beam.,shows various locations from around on the ground.,gold0-orig,pos,unl,unl,unl,unl,A woman sits on a bench shaving her legs.,She\nanetv_yG4C_s7ItA4,10532,A woman is sitting wiping her legs. another woman,is sitting in front of the camera talking.,is holding a shoe over her father's face.,places a tattoo on her shoulder.,\"is sitting on the ground, dancing around.\",throw her hand in the air while holding up the camera.,gold1-orig,pos,unl,unl,unl,pos,A woman is sitting wiping her legs.,another woman\nanetv_yG4C_s7ItA4,2562,She pumps lotion out of a bottle and spreads it on her leg. She,pours lotion onto her hand and puts it on her legs with a towel.,\"lifts the weight over the ground, grabs it and holds it with her hands.\",sits up while smacking its lips with an open razor.,shows her hairstyle to a lot of ladies in the stands and standing by the bed.,\"sprays the tattoo onto the chest, and uses two cloth soap to rub her out.\",gold0-orig,pos,unl,unl,unl,unl,She pumps lotion out of a bottle and spreads it on her leg.,She\nanetv_yG4C_s7ItA4,2564,She begins to shave her legs. She,puts shaving cream on her leg and continues to shave.,continues brushing her hair.,has a kick up.,peels her hair up.,,gold0-orig,pos,unl,unl,pos,n/a,She begins to shave her legs.,She\nlsmdc3022_DINNER_FOR_SCHMUCKS-10428,3664,Someone runs a hand through his hair. Someone,starts for the door then stops.,shoves someone's hair in his grasp.,takes out a grenade with someone.,barges him and knocks him forward.,makes his way out of the interrogation booth.,gold1-reannot,pos,unl,unl,unl,unl,Someone runs a hand through his hair.,Someone\nlsmdc3036_IN_TIME-16137,5492,Someone and someone flinch as shots hit the windshield. Someone briefly,takes someone's hand.,fills a cup with water.,follows someone to the corridor.,\"meanders down the road, which explodes sending someone falling.\",looks his expectant look from side to side.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone flinch as shots hit the windshield.,Someone briefly\nlsmdc3036_IN_TIME-16137,5496,\"Meanwhile, outside the Mission, someone waits with the young proprietor. She\",blinks her anxious eyes.,takes a bundle of glue from the ceiling.,\"replaces a hatch on a back wall, then peers at a wall.\",steps away from a barefoot crash.,ducks by the railings as they plummet.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, outside the Mission, someone waits with the young proprietor.\",She\nlsmdc3036_IN_TIME-16137,5486,\"Spinning the wheel, he skids around a grassy island dividing the two directions of traffic. At one end of a bridge, timekeeper vehicles\",line up along the zone's border.,exit into the parking lot.,make their way through a pair of green armored cars.,pass to a stop in front of him.,arrives at a drifting town.,gold1-orig,unl,unl,unl,unl,unl,\"Spinning the wheel, he skids around a grassy island dividing the two directions of traffic.\",\"At one end of a bridge, timekeeper vehicles\"\nlsmdc3036_IN_TIME-16137,5512,A wide view shows someone and someone running on cracked pavement. Someone,glances over his shoulder.,smiles after her as he flops down in a makeshift hammock.,\"rounds a corner, knocking over them.\",\"jerks at the side, his wings trampled by the pergola.\",,gold0-orig,pos,unl,unl,unl,n/a,A wide view shows someone and someone running on cracked pavement.,Someone\nlsmdc3036_IN_TIME-16137,5506,\"He glances over his shoulder. Behind him, someone\",shoves his way past the flood of dayton residents.,bundle his cot.,\"shrugs his arms, then slides his boots soft the water and leads him down a dark corridor.\",nervously uses his flashlight to find the safe.,\"removes his glasses and faces his father, who turns to look at his watch.\",gold0-orig,pos,unl,unl,unl,unl,He glances over his shoulder.,\"Behind him, someone\"\nlsmdc3036_IN_TIME-16137,5508,\"With his gun in one hand, he pumps his arms as he sprints furiously. He\",finds a timekeeper parked on a corner with his driver's side door open.,takes off his helmet.,\"skates through a field, another leaps with a pole down a trail.\",steals an elevator from the driver's office seat.,,gold0-orig,pos,unl,unl,unl,n/a,\"With his gun in one hand, he pumps his arms as he sprints furiously.\",He\nlsmdc3036_IN_TIME-16137,5505,Someone pulls her against the flow of the crowd. He,glances over his shoulder.,tucks the ring away in his pocket.,reaches up and tickles his hold.,trips and falls as someone's gaze drops after the action.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pulls her against the flow of the crowd.,He\nlsmdc3036_IN_TIME-16137,5500,\"Both vehicles skid to a stop, billowing smoke. Someone\",runs over as someone climbs out of the limo.,rushes in and pokes a balloon at someone.,spots the mechanical man descending onto a couch.,pushes a plane into the back.,sprints away in horrified.,gold0-orig,pos,unl,unl,unl,pos,\"Both vehicles skid to a stop, billowing smoke.\",Someone\nlsmdc3036_IN_TIME-16137,5502,He's got an hour. Someone,gets out of his car.,is washed through a busy envelope.,sits up on the chair outside.,is mashed on a rock behind someone.,\"sets down his cue, tries the padlock, and raises his cell phone.\",gold0-orig,pos,unl,pos,pos,pos,He's got an hour.,Someone\nlsmdc3036_IN_TIME-16137,5514,\"Someone parks behind a barricade of concrete blocks across the road which someone the time zone border. Clutching his gun, he\",sprints between the blocks and follows the road down the hill.,uses a paint gun to keep the flame from the flame up which are pointed at its door.,leads the handful of werewolf in the high circle towards the water bank.,scrambles to his feet and stains the vest with his gun.,,gold0-orig,pos,unl,unl,pos,n/a,Someone parks behind a barricade of concrete blocks across the road which someone the time zone border.,\"Clutching his gun, he\"\nlsmdc3036_IN_TIME-16137,5497,She blinks her anxious eyes. As they,speed through an intersection one block from the mission.,\"'ve reached a side of the spaghetti, someone watches her go.\",\"stand, someone faces her and they hug.\",\"zoom in, everyone turns to stare at him.\",\"walk down, he glances toward them.\",gold0-orig,pos,unl,pos,pos,pos,She blinks her anxious eyes.,As they\nlsmdc3036_IN_TIME-16137,5491,\"A barrage of bullets hits the limo, sending sparks off the vehicle's armored body. Someone and someone\",flinch as shots hit the windshield.,\"ride through the motors, dirt trail as three kale soldiers chase the departing brolly.\",pull up positions after hill.,arrive into the sky.,watch as the escalade's locked gate returns to the truck.,gold0-orig,pos,unl,unl,unl,pos,\"A barrage of bullets hits the limo, sending sparks off the vehicle's armored body.\",Someone and someone\nlsmdc3036_IN_TIME-16137,5488,\"Taking shelter behind them, timekeepers aim their weapons over the hoods. Someone\",stares with determined eyes as he speeds toward the barricade.,backs off with his head.,locates the quaffle with the blue fin high above him.,grabs the shield into a slumped horse.,flips to her side.,gold0-orig,pos,unl,unl,unl,unl,\"Taking shelter behind them, timekeepers aim their weapons over the hoods.\",Someone\nlsmdc3036_IN_TIME-16137,5511,\"Meanwhile, the cruiser speeds down a nearby road. A wide view\",shows someone and someone running on cracked pavement.,shows the hearing car approaching.,shows the vehicles flying off.,shows people sprawling on their path and residential pedestrians.,shows the plains luxury men.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, the cruiser speeds down a nearby road.\",A wide view\nlsmdc3036_IN_TIME-16137,5498,As they speed through an intersection one block from the Mission. Someone's cruiser,emerges from the cross street and smashes into them.,touches the snow towards them as he builds.,\"travels down from a classroom, narrowly missing someone's bag.\",lies as metallic convoy.,,gold0-orig,pos,unl,unl,unl,n/a,As they speed through an intersection one block from the Mission.,Someone's cruiser\nlsmdc3036_IN_TIME-16137,5489,Someone stares with determined eyes as he speeds toward the barricade. Someone,\"glances over her shoulder at someone's cruiser, which closes in.\",is watering down the street.,is stunned as they go upstairs.,hits the gunman.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stares with determined eyes as he speeds toward the barricade.,Someone\nlsmdc3036_IN_TIME-16137,5515,\"Someone cuts them off, his gun raised. They\",halt in front of him.,dart through the plastic cover surrounding each other.,lean through the row of targets for vault.,explode in the arena.,rise from the seat as someone gazes at him.,gold0-orig,pos,unl,unl,unl,pos,\"Someone cuts them off, his gun raised.\",They\nlsmdc3036_IN_TIME-16137,5501,Someone runs over as someone climbs out of the limo. He,glances at the cruiser but sees no movement.,\"leans into a dirt walkway, his hands sticking down onto the side of someone's shoulders.\",\", the convulsing, flops on.\",\"jumps out from the ocean's upturned side, crossing the royal vessel in a flashback.\",grabs gotten - up of a big turkey and a slice of butter chocolate dessert.,gold0-orig,pos,unl,unl,unl,unl,Someone runs over as someone climbs out of the limo.,He\nlsmdc3036_IN_TIME-16137,5499,Someone's cruiser emerges from the cross street and smashes into them. Both vehicles,\"skid to a stop, billowing smoke.\",disappear as a pickup lurches and explodes around the ringwraiths.,arrive and someone's rookie eyes up at him.,take off in the stream.,swerve out a magnetic match and stop fire.,gold1-orig,pos,unl,unl,unl,unl,Someone's cruiser emerges from the cross street and smashes into them.,Both vehicles\nlsmdc3036_IN_TIME-16137,5509,\"He finds a timekeeper parked on a corner with his driver's side door open. Grabbing him, he\",hurls him to the ground.,catches up with her.,races through the fashions as hard as the others can.,collapses to the floor.,,gold1-orig,pos,unl,unl,pos,n/a,He finds a timekeeper parked on a corner with his driver's side door open.,\"Grabbing him, he\"\nlsmdc3036_IN_TIME-16137,5490,\"Someone glances over her shoulder at someone's cruiser, which closes in. A barrage of bullets\",\"hits the limo, sending sparks off the vehicle's armored body.\",knocks him off the road.,hit someone who reloads.,smash into the car in the alley parking lot.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone glances over her shoulder at someone's cruiser, which closes in.\",A barrage of bullets\nlsmdc3036_IN_TIME-16137,5487,\"At one end of a bridge, timekeeper vehicles line up along the zone's border. Taking shelter behind them, timekeepers\",aim their weapons over the hoods.,fly off the running lifeboat.,play waiter's former deck.,notices the off clouds skilled.,move on another ladder.,gold1-reannot,pos,unl,unl,unl,pos,\"At one end of a bridge, timekeeper vehicles line up along the zone's border.\",\"Taking shelter behind them, timekeepers\"\nlsmdc3036_IN_TIME-16137,5495,\"Following close behind, someone's cruiser turns a corner. Meanwhile, outside the Mission, someone\",waits with the young proprietor.,attacks a stairwell and grabs his bags.,notices someone staring at her cousin.,rests his dog against someone's chest.,sits between someone and someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Following close behind, someone's cruiser turns a corner.\",\"Meanwhile, outside the Mission, someone\"\nlsmdc3036_IN_TIME-16137,5507,\"Behind him, someone shoves his way past the flood of Dayton residents. With his gun in one hand, he\",pumps his arms as he sprints furiously.,pulls out a stack of bills.,pulls out a small handful of money guns.,\"makes his way past a stone halfway up, to another clearing.\",slowly turns and stabs the guard in the back of the vehicle.,gold0-reannot,pos,unl,unl,unl,unl,\"Behind him, someone shoves his way past the flood of Dayton residents.\",\"With his gun in one hand, he\"\nlsmdc3036_IN_TIME-16137,5494,He weaves the limo between the cruisers. The limo,speeds down a street in the ghetto.,reaches out of reach.,hits the empty overpass into the woods.,\"slams into the center of it, hauling them out.\",opens right next to someone.,gold0-reannot,pos,unl,unl,unl,pos,He weaves the limo between the cruisers.,The limo\nlsmdc3036_IN_TIME-16137,5485,\"Someone finds 44 minutes on his clock. Spinning the wheel, he\",skids around a grassy island dividing the two directions of traffic.,straightens a man's shorts.,drops inside the lock.,starts himself in the general's video.,finds a cement tile.,gold0-reannot,pos,unl,unl,unl,unl,Someone finds 44 minutes on his clock.,\"Spinning the wheel, he\"\nlsmdc3036_IN_TIME-16137,5504,\"On the Mission's sign, the words Out Of turn off. Someone\",pulls her against the flow of the crowd.,peers around at the anxious stone.,jumps over someone who's rolls with her.,grabs it from as he races down a tunnel.,,gold1-reannot,unl,unl,unl,unl,n/a,\"On the Mission's sign, the words Out Of turn off.\",Someone\nlsmdc3036_IN_TIME-16137,5510,\"Grabbing him, he hurls him to the ground. Meanwhile, someone and someone\",\"flee down a street, still holding hands.\",arrive in the roof of someone's house.,pass a framed vendor on the way down to an icy curb.,run to the bridge gate.,arrive at another locked gate.,gold0-reannot,pos,unl,unl,unl,pos,\"Grabbing him, he hurls him to the ground.\",\"Meanwhile, someone and someone\"\nlsmdc3036_IN_TIME-16137,5516,They halt in front of him. He,allows an impressed smile.,grabs the hook off the floor.,brushes his hand away.,walks onward to the grandfather's coffin.,slams a fist into someone's chest.,gold1-reannot,pos,unl,unl,unl,pos,They halt in front of him.,He\nlsmdc1058_The_Damned_united-98534,2260,\"Someone makes to follow someone into the dressing room, but has the door slammed in his face. The players now showered and in their fashionable clothes\",\"join the directors in the long, narrow lounge.\",take in the recessed cubicles.,hang from a couple.,\"moves down the aisle toward the sculpted shop, about to writhe in.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone makes to follow someone into the dressing room, but has the door slammed in his face.\",The players now showered and in their fashionable clothes\nlsmdc1058_The_Damned_united-98534,2258,The Leeds players trudge into their dressing room. Someone,leaves someone with his hands on his hips.,see someone expression intently.,stiffens in the back seat.,returns his throw to them.,rises from the doctor.,gold0-reannot,pos,unl,unl,unl,unl,The Leeds players trudge into their dressing room.,Someone\nlsmdc1058_The_Damned_united-98534,2259,\"Someone leaves someone with his hands on his hips. Someone makes to follow someone into the dressing room, but\",has the door slammed in his face.,stops at one of the other tables out there.,finds no sign of someone.,she jumps out.,stops in front of back.,gold0-reannot,pos,unl,unl,unl,unl,Someone leaves someone with his hands on his hips.,\"Someone makes to follow someone into the dressing room, but\"\nlsmdc3033_HUGO-14437,15005,The station inspector frowns at someone. His dog,sniffs someone's leg.,wears a racing cord under a skirt as the driver is tossed on a car and aiming out a window.,glances at the open door of a house.,steps out of the room.,,gold0-orig,pos,unl,unl,pos,n/a,The station inspector frowns at someone.,His dog\nlsmdc3033_HUGO-14437,15004,Someone takes off someone's beret and places it over his own head. The station inspector,passes them then pauses and turns.,looks out nearby then nods and smiles.,takes off his jacket.,stops and glances over.,,gold1-orig,pos,unl,unl,pos,n/a,Someone takes off someone's beret and places it over his own head.,The station inspector\nlsmdc3033_HUGO-14437,15001,The train station's clock tower rises on the other side of the river. They,walk into the station.,finds the unconscious someone back on shadowfax.,advance through crowds in the house.,disappear into the gap in the door.,are buried in the hole.,gold0-orig,pos,unl,unl,unl,unl,The train station's clock tower rises on the other side of the river.,They\nlsmdc3033_HUGO-14437,15000,He takes a step forward then turns and points into the distance. The train station's clock tower,rises on the other side of the river.,\"flies down, propelling the man in water.\",and someone lowers his wand to a falling metal.,has a complex about four.,zero and looks over many iceberg.,gold1-orig,unl,unl,unl,unl,unl,He takes a step forward then turns and points into the distance.,The train station's clock tower\nlsmdc3033_HUGO-14437,14999,\"Standing on a bridge, someone stares at her. He\",takes a step forward then turns and points into the distance.,crouches into the woman's dark - haired friend.,fires and climbs off toward the back of the unicorn.,tries to tip his chin.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Standing on a bridge, someone stares at her.\",He\nlsmdc3033_HUGO-14437,15003,Brow furrowed the station inspector strides toward them. Someone,takes off someone's beret and places it over his own head.,runs through the windshield.,grins and casts a wild gaze at people as the ship descends briskly from the sea.,runs through the distance in the other direction.,,gold0-reannot,pos,unl,unl,pos,n/a,Brow furrowed the station inspector strides toward them.,Someone\nanetv_Lx_FcKpTZIw,5475,She rinses her hands off in the sink. She,grabs a paper towel and dries her hands.,he steps off the faucet.,and a little of them is white and pink.,opens the window and packs into it with a shield of service.,,gold0-orig,pos,unl,unl,unl,n/a,She rinses her hands off in the sink.,She\nanetv_Lx_FcKpTZIw,5474,A woman is washing her hands over a sink. She,rinses her hands off in the sink.,\"wipes the sink, then dips it in.\",returns to a bag on the floor.,starts packing the dishes in the sink.,walks on the sink next to a sink and washes her hands.,gold0-orig,pos,unl,unl,unl,unl,A woman is washing her hands over a sink.,She\nanetv_zCI36lTmBqY,12220,He takes the hose out of his mouth and start to exhale forming o's in the air. He,starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it.,reappear in on lower underwater camera that this does not show how to push the object in the color.,is sitting on the counter at the end of the small boutique.,finishes his burning lacquer and wipes off the gloves which is dangerously close to it.,\"peels a pair of bowling curves, then tosses iron to plaster and prepare the ribbon.\",gold0-orig,pos,unl,unl,unl,unl,He takes the hose out of his mouth and start to exhale forming o's in the air.,He\nanetv_zCI36lTmBqY,12221,He starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it. It,\"'s pretty cool how he is forming the o's, just relaxing and enjoy simple fun.\",talks to the camera and starts to brush the wall of the objects with paint on it.,pushes the man down a few more times and introduces his brain.,drops his head again.,,gold0-orig,pos,unl,unl,unl,n/a,He starts to blow his smoke in a container and makes some really cool circles i have never seen anything like it.,It\nanetv_zCI36lTmBqY,12219,A man is sitting inside on a chair inhaling from a pipe that looked like it was an oboe. He,takes the hose out of his mouth and start to exhale forming o's in the air.,is smiling like a person while singing are playing a guitar and singing.,is standing bald at the window.,is playing a game of field hockey with camera on his neck.,,gold0-orig,pos,unl,unl,unl,n/a,A man is sitting inside on a chair inhaling from a pipe that looked like it was an oboe.,He\nanetv__8KsVaJLOYI,3721,\"A man is shown running that leads into an intro, followed by a photograph of him. Next\",are clips of the man shown scoring various goals in a sport and celebrating with his team mates.,throw a green ball fom the side and watch walking away.,\", men are seen speaking to each other and speaking to one another.\",are talking to a man that exercise inside.,\", one woman throws a ball.\",gold1-orig,pos,unl,pos,pos,pos,\"A man is shown running that leads into an intro, followed by a photograph of him.\",Next\nanetv__8KsVaJLOYI,3722,Next are clips of the man shown scoring various goals in a sport and celebrating with his team mates. The people in the audience cheer and the shot,is seen again in slow motion.,is shown of men playing basketball and celebrating and celebrating with each winner.,is shown again followed by more clips of the beach soccer.,ends with the closing credits.,,gold0-orig,pos,pos,pos,pos,n/a,Next are clips of the man shown scoring various goals in a sport and celebrating with his team mates.,The people in the audience cheer and the shot\nlsmdc1041_This_is_40-9307,1529,\"Someone smiles at his wife, then leans toward his electric guitar shaped cake. She\",tilts her head with a slight grin.,then sips it.,bites his sleeve in swap pat.,\"stands on the road, watching him, someone enjoying the passive coffee.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone smiles at his wife, then leans toward his electric guitar shaped cake.\",She\nlsmdc1041_This_is_40-9307,1530,\"Someone's triplets attack the cake and lick the frosting tuning pegs. Now, someone\",\"hides behind some bushes with a cigarette in her mouth, desperately flicking and shaking a lighter.\",\"joins her, kisses her boyfriend.\",\"arrives in the stadium with the camels, the tawny trees, in the front of the house.\",\"drives with someone, who does push - ups on the equipment.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone's triplets attack the cake and lick the frosting tuning pegs.,\"Now, someone\"\nlsmdc1041_This_is_40-9307,1528,\"Now, someone leads the guests in song. Someone\",\"smiles at his wife, then leans toward his electric guitar shaped cake.\",summons a deep breath as he awakens to the floor.,sets down the pen case.,grins then kicks open the double doors.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, someone leads the guests in song.\",Someone\nlsmdc1041_This_is_40-9307,1531,She catches her mom and startles her. Someone,drops her cigarette and heads to the house.,makes someone run towards the house and gets in.,shakes his head and wraps his arms around his neck.,slows to a stop by the window.,,gold0-orig,pos,unl,unl,pos,n/a,She catches her mom and startles her.,Someone\nanetv_WmabLngcvas,15358,The man then leads the other around on the camel. The man,stops the camel and gets the other person off while climbing back on.,rides around and the dog jumps on the.,\"holds his dog up above, and pulls out a large white paper scissors.\",continues jumping and pulling the tire off the ground and ends by moving the dog down and pointing at the camera.,,gold0-orig,pos,unl,unl,unl,n/a,The man then leads the other around on the camel.,The man\nanetv_WmabLngcvas,15357,A man is seen sitting on a camel followed by getting off and another man climbing on. The man then,leads the other around on the camel.,moves up and down on the dirt and a cow and eventually taking them out.,begins riding around and a car while another woman records.,begins walking around a waterside area while a dog watches from the side.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen sitting on a camel followed by getting off and another man climbing on.,The man then\nanetv_86S2O0fpX4g,5358,A woman is lying on equipment in a gym. She,has her feet tied with chain to a machine.,walks through the equipment into a gym.,is holding a stick and showing how to adjust a saddle.,is sitting down on a set of uneven bars.,is landing on the floor with an overhead beam.,gold0-orig,pos,unl,unl,unl,unl,A woman is lying on equipment in a gym.,She\nanetv_86S2O0fpX4g,5359,She has her feet tied with chain to a machine. She,holds her head as she pulls her feet back and forth.,puts her hand on and adjusts the camera.,slips around the corner and rolls onto her back.,puts someone's hand on her shoulder.,puts the knife down and puts it on.,gold0-reannot,pos,unl,unl,unl,unl,She has her feet tied with chain to a machine.,She\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14354,\"He takes the top off a tea pot, and picks up a tea bag. Through the kitchen window, he\",notices a light in the big house.,\"can see it, the colorful flowers of the intended, the orchard, etc.\",stands with his back to someone.,can see someone coming from a pantry.,slowly looks across the street to someone.,gold1-orig,pos,unl,unl,unl,pos,\"He takes the top off a tea pot, and picks up a tea bag.\",\"Through the kitchen window, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14359,\"Inside the house, the strong beam of the old man's torch flickers over dusty wooden paneling and a grandfather clock festooned with cobwebs. Grasping the wooden banister, he\",\"starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls.\",dashes towards a staircase.,forces the blood into a light from a man's neck.,\"leaves, then leans inside.\",steps along and hustles from the burning chamber onto flat deck deck.,gold0-orig,pos,unl,unl,pos,pos,\"Inside the house, the strong beam of the old man's torch flickers over dusty wooden paneling and a grandfather clock festooned with cobwebs.\",\"Grasping the wooden banister, he\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14349,The reptile's lithe body shimmers as it glides swiftly along the uneven path. Metallic silver letters,\"appear in the dark, glowering sky.\",float aggressively on the sidewalk in front of him.,\"ventures through the wall, growing larger.\",shine to two tackling knives.,,gold0-orig,unl,unl,unl,unl,n/a,The reptile's lithe body shimmers as it glides swiftly along the uneven path.,Metallic silver letters\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14348,\"Flickering its tongue, it slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery. The reptile's lithe body\",shimmers as it glides swiftly along the uneven path.,\"reaches its left place, its hilt handles in desperation.\",lies thin around the inside of a house with a sling cross on its tail.,\"forms a body over sideways, their eyes watching it.\",is shot as though approaching in the middle of a street.,gold0-orig,pos,unl,unl,unl,unl,\"Flickering its tongue, it slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery.\",The reptile's lithe body\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14352,A light is switched on in a cottage nearby. A disheveled old man,lights the gas and puts on a kettle.,lies on the back in the room.,sits behind a desk in his anger.,steps out from the mansion behind someone.,lifts a book from his perch.,gold0-orig,pos,unl,pos,pos,pos,A light is switched on in a cottage nearby.,A disheveled old man\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14355,\"Through the kitchen window, he notices a light in the big house. He\",throws down the tea bag angrily.,blows out candles as his car trundles down a plasters.,walks over to a house.,strolls down a tall moving corridor leading up to a room.,lands in front of her and glance at someone.,gold0-orig,pos,unl,unl,unl,unl,\"Through the kitchen window, he notices a light in the big house.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14357,\"He takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch. He\",\"stumbles across the uneven ground, towards the big house.\",\"notices in a grey vest and goggles, riding a bmx bike alongside the winding passage.\",\"gets up, shutting the door behind them.\",watches the spiders scroll across the screen.,runs over to the tiller.,gold0-orig,pos,unl,unl,unl,pos,\"He takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14350,\"Metallic silver letters appear in the dark, glowering sky. A huge dilapidated house\",stands silhouetted against the night sky.,is reflected in a wooden archway.,appears sewn barn columned with no trees.,erupts in a campfire!,,gold0-orig,pos,unl,unl,unl,n/a,\"Metallic silver letters appear in the dark, glowering sky.\",A huge dilapidated house\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14351,A huge dilapidated house stands silhouetted against the night sky. A light,is switched on in a cottage nearby.,shines from a vial of liquid luck.,drifts up in the sky as the kids run to a tent.,filtering through the windshield.,\"goes down, then fades to black.\",gold1-orig,pos,unl,unl,unl,pos,A huge dilapidated house stands silhouetted against the night sky.,A light\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14353,A disheveled old man lights the gas and puts on a kettle. He,\"takes the top off a tea pot, and picks up a tea bag.\",starts using the first guy's arm like scissors to pin him down.,continues to wind down something that has an leaves for the dog.,throws then a machine and knocks that other cop off the street.,continues mopping the floor.,gold0-orig,pos,unl,unl,unl,unl,A disheveled old man lights the gas and puts on a kettle.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14347,\"A heap of skulls and bones is piled high behind iron railings. Flickering its tongue, it\",slithers down onto a narrow path and moves silently between the gravestones in a dark and overgrown cemetery.,obscures someone from the back of the shelf and drops it into the toilet.,types through several great banquet pages.,rips its way across the corn silk fuse.,dissolves to a dark river in the distance.,gold0-orig,pos,unl,unl,unl,unl,A heap of skulls and bones is piled high behind iron railings.,\"Flickering its tongue, it\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14356,He throws down the tea bag angrily. He,\"takes a bunch of keys from a hook, and leaves the cottage, lighting his way, with a large torch.\",\"leaves the table to the end of the alley and collides with the blast, who vanishes sharply and takes off.\",glances over at someone who returns someone a wounded gaze.,comes back to stop.,points to a leather case which has been played.,gold0-reannot,pos,unl,unl,pos,pos,He throws down the tea bag angrily.,He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-6508,14360,\"Grasping the wooden banister, he starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls. He\",\"turns off his torch, as he hears voices from an open doorway.\",mounts the light and ambles upward.,steps up and stands at the foot of the steps to the other side of the pool.,\"takes it out, and turns it off.\",reaches for the edge of the divan and looks around the faint glow of the film.,gold0-reannot,pos,unl,unl,unl,unl,\"Grasping the wooden banister, he starts to climb the un - carpeted stairs, his torch casting eerie shadows over the paneled walls.\",He\nanetv_NouHsmaE-xA,2064,\"People are in a rodeo arena while a man on a horse prepares a rope with a loop. Then, the man\",\"spins the loop and throw to catch a calf, then run and tie the calf.\",throws the calf over to an open mat on the ground.,mounts the horse and ties the calf.,recovers his rope and turns.,,gold0-orig,pos,unl,pos,pos,n/a,People are in a rodeo arena while a man on a horse prepares a rope with a loop.,\"Then, the man\"\nanetv_NouHsmaE-xA,2065,\"Then, the man spins the loop and throw to catch a calf, then run and tie the calf. A young man\",enters the arena and untie the calf.,\"grabs both of his rope and attaches it to the rope, trying to balance, with others in the side.\",skates a tight rope over the crowd.,jumps high and catches with him action times.,in the red t - shirt jumps.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the man spins the loop and throw to catch a calf, then run and tie the calf.\",A young man\nanetv_W0EN9JeU66A,4135,A young child is moving back and fourth on a swing while laughing and smiling to the camera. The child,continues pumping their legs and then is stiff while looking off into the distance.,finishes and looks through the window at the camera.,continues speaking to the camera while showing off the finished result.,\"continue to swing, hit and pretend to smile and smile at the camera.\",,gold0-orig,pos,unl,unl,pos,n/a,A young child is moving back and fourth on a swing while laughing and smiling to the camera.,The child\nlsmdc3080_THIS_MEANS_WAR-37086,17629,Two boys face each other. A burly father,watches his son square off with someone's smaller one.,presses his back to watch as the two boys have holes in a basin.,\"sits in his father's seat, watching a child and a man smile at someone.\",sends him back on.,,gold0-orig,pos,unl,unl,unl,n/a,Two boys face each other.,A burly father\nlsmdc3080_THIS_MEANS_WAR-37086,17627,\"Later a woman in a bikini swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling. Entering his bachelor pad, someone\",lifts his gaze to the swimmer.,dips the arm of his wife.,brings a book to his companions.,lifts his gaze into the basin.,,gold0-orig,pos,unl,unl,pos,n/a,\"Later a woman in a bikini swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling.\",\"Entering his bachelor pad, someone\"\nlsmdc3080_THIS_MEANS_WAR-37086,17628,\"Entering his bachelor pad, someone lifts his gaze to the swimmer. He\",removes his sunglasses and stares.,shuts it and smiles again.,\"hops on top of the bench, then sees a person's body sticking out of the ice.\",wakes the source of his concern and frustration.,,gold0-orig,pos,unl,unl,pos,n/a,\"Entering his bachelor pad, someone lifts his gaze to the swimmer.\",He\nlsmdc3080_THIS_MEANS_WAR-37086,17626,Someone gawks at his friend. Later a woman in a bikini,\"swims the breaststroke in a glass bottom pool, which serves as a foyer ceiling.\",rides a trolley driving through a city.,reads her cd's performance.,crosses the bar of a ship.,is in his dish.,gold1-orig,pos,unl,unl,unl,unl,Someone gawks at his friend.,Later a woman in a bikini\nanetv_2GSSuYAWFc8,2040,This is followed by a man disinfecting a woman's belly button. He then,inserts a piercing using a clamp and a rod.,begins to show the correct way about the tattoo on his arm.,proceeds to play a tambourine.,hangs his brace and talks to the camera.,makes his way up and down the stairs.,gold0-orig,pos,unl,unl,unl,unl,This is followed by a man disinfecting a woman's belly button.,He then\nanetv_2GSSuYAWFc8,2041,He then inserts a piercing using a clamp and a rod. The woman,watches as the final studs are in place.,peels the wooden rod so he holds the legs of the board.,uses a pestle to pierce the skin at his throat.,talks to the camera and gives him some more cold text.,,gold0-reannot,pos,unl,unl,unl,n/a,He then inserts a piercing using a clamp and a rod.,The woman\nanetv_V_rril47Z5Q,205,The girls drop the nunchucks then dance around. A third person,joins and then leaves.,drops one of her hand sticks and is blindfolded in slow motion.,pushes a blue puck.,is doing a gymnastics routine on the balance beam while she bounces and jumps.,jumps off the parallel bars.,gold0-orig,pos,unl,unl,unl,unl,The girls drop the nunchucks then dance around.,A third person\nanetv_V_rril47Z5Q,204,Two people choreograph a routine with nunchucks. The girls,drop the nunchucks then dance around.,continue to lift the sean of the class opinion and flips.,show the group doing climb throwing batons.,lift one up to kneel down.,take turns to take some shots about victory.,gold1-orig,pos,unl,unl,unl,unl,Two people choreograph a routine with nunchucks.,The girls\nlsmdc0012_Get_Shorty-53267,19771,He opens it to the middle. Someone,looks out the window as we see a long black stretch limo pull up to the curb down on the street.,\"waves red flag, realizing that he is through some important points and dons a hot d..\",lowers his lips to his finger and grins.,is reading a magazine.,,gold0-orig,pos,unl,pos,pos,n/a,He opens it to the middle.,Someone\nlsmdc0012_Get_Shorty-53267,19773,\"Someone tosses the script on the desk, moves between a pair of fat red leather chairs. As someone\",moves away from the window.,\"turns, she imagines him checking someone's wand.\",\"gazes from the window, his shadow remains on the ceiling.\",\"strolls over, startled talks into his ear.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone tosses the script on the desk, moves between a pair of fat red leather chairs.\",As someone\nlsmdc0012_Get_Shorty-53267,19770,\"Someone examines the cover, the first time he is ever held a movie script. He\",opens it to the middle.,\"snaps up to the third, then is in a remnants of black and blue gold.\",turns and sits down on the shade treads outside.,peers across the room and lashes out over the floor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone examines the cover, the first time he is ever held a movie script.\",He\nlsmdc0012_Get_Shorty-53267,19768,Someone stands looking over some of the old photographs as someone goes through the mess on the desk. Someone,hands a script to someone.,\"looks at local books on the bed, obviously pinning someone to the couch.\",looks up at him.,hits him.,approaches another reception desk and finds the trumpet player on it.,gold1-orig,pos,unl,pos,pos,pos,Someone stands looking over some of the old photographs as someone goes through the mess on the desk.,Someone\nlsmdc0012_Get_Shorty-53267,19774,As someone moves away from the window. Someone,is tugging the string to lower the blinds behind the desk.,scurries off and flips back toward the bathroom.,looks down and lifts his brow.,sings sits on the sofa and watches her walk along.,shoots him a horrified expression.,gold1-orig,pos,unl,unl,unl,unl,As someone moves away from the window.,Someone\nlsmdc0012_Get_Shorty-53267,19769,Someone hands a script to someone. Someone,\"examines the cover, the first time he is ever held a movie script.\",takes the money out of the pocket of his shirt.,hangs him on the table.,leaves it to a temperature gauge.,struggles to get up.,gold0-reannot,pos,unl,unl,unl,unl,Someone hands a script to someone.,Someone\nanetv_EsYsshh2CyA,4952,Finally she mixes grenadine with some sweet and sour mix with soda water. Finally she,mixes all the components together and creates a nice alcoholic beverage.,takes the toothpaste out of the drawer and stirs the spoon of the vanilla.,\"immediately cuts the skillet on an underwater pan, then she is baked with a spatula.\",tastes the pasta and she pours it into a plate for another time.,\"fills the mixture and adds toppings to the it, after she returns.\",gold0-orig,pos,unl,unl,unl,unl,Finally she mixes grenadine with some sweet and sour mix with soda water.,Finally she\nanetv_EsYsshh2CyA,4951,A bartender begins speaking to the camera and pours ice into a glass. She,think instructs to mix rum and lemon juice into the glass and an ounce of different rum.,pours ice into a glass and pours ice into the glass.,adds ingredients to the straw then adds several more juices and pours more vodka into a glass.,fills the container with ice and throws it to the water.,,gold0-reannot,pos,unl,unl,unl,n/a,A bartender begins speaking to the camera and pours ice into a glass.,She\nanetv_-G-sh-NhYtk,17079,A person in a black coat is shoveling show from a driveway. A man,is being shown standing in a garage.,wipes out snow on the top of a roof.,steps out of the car with a shovel.,walks down a sidewalk while a sidewalk is blowing leaves.,is pulling the snow off of the car.,gold0-reannot,pos,unl,unl,unl,pos,A person in a black coat is shoveling show from a driveway.,A man\nanetv_73ZdOEJcsUw,990,An old lady knits with a red needle and red wool. An old lady,stops knitting and talks continuously.,is seen sitting at the bottom of a rollerblading jump.,takes the contact lenses.,sets the front hand back.,shows how to use a machine using ski tools.,gold1-orig,pos,unl,unl,unl,unl,An old lady knits with a red needle and red wool.,An old lady\nanetv_73ZdOEJcsUw,991,An old lady stops knitting and talks continuously. The old lady,knits again and examines her creation.,shows the same strap on the horse.,wears a sparkling sponge.,shows a similarly operated ski.,,gold0-orig,pos,unl,unl,unl,n/a,An old lady stops knitting and talks continuously.,The old lady\nanetv_WSpfyZuoi3A,16328,\"A little girl sled in an inflatable boat hold to a string on front a man, suddenly she falls in a hollow. People carry sled boats and the little girl\",is in a sled boat.,jumps high in the sky.,swims down the hill.,walks in front of the man and opens the inner door of the swimming catch.,,gold0-orig,pos,unl,unl,unl,n/a,\"A little girl sled in an inflatable boat hold to a string on front a man, suddenly she falls in a hollow.\",People carry sled boats and the little girl\nanetv_uLXSOqRSa4A,17572,\"A person climbs onto it, looking down. They\",\"bungee jump, hanging and swinging above the ground.\",carry their padding in the water and standing in place.,go down and wash out their lap.,cleans the area while they are already down.,,gold0-orig,pos,unl,unl,unl,n/a,\"A person climbs onto it, looking down.\",They\nanetv_uLXSOqRSa4A,17571,A group of people are on a lift way above the mountains. A person,\"climbs onto it, looking down.\",is passing a set of rocks.,jumps up on running rope on the rope.,sits walking on the border of the rodeo bars.,jumps on a ramp off a ramp.,gold0-orig,pos,unl,unl,unl,unl,A group of people are on a lift way above the mountains.,A person\nlsmdc0026_The_Big_Fish-62718,14963,\"Then, up ahead, the cars start moving, shoved aside by massive hands. It\",\"'s someone the giant, clearing a path by brute force.\",turns away right of teens.,scrub it all along the ground.,shines out on the road.,fluttering then fingers.,gold0-orig,pos,unl,unl,pos,pos,\"Then, up ahead, the cars start moving, shoved aside by massive hands.\",It\nanetv_CEEJ1gzdmAk,16199,A pile of players lay on a fallen athlete. A player,gets knocked to the ice and his helmet too.,washes cards from the shore.,is sitting on a rocks.,slides backwards and falls sideways.,knocks the toddler to the ground.,gold1-orig,unl,unl,unl,unl,unl,A pile of players lay on a fallen athlete.,A player\nanetv_CEEJ1gzdmAk,16198,Some players are laid out. A pile of players,lay on a fallen athlete.,are seen in black.,rest on their table before engaging in crestfallen position.,are seen playing against an opponent.,,gold0-orig,pos,pos,pos,pos,n/a,Some players are laid out.,A pile of players\nlsmdc3008_BAD_TEACHER-4004,12515,\"With a baffled look, someone tilts his head. On his way out the baffled look\",lingers on his face.,\", someone shakes her head.\",electronic images been disturbed.,\", he pulls quickly out of the clothing to wrap the couch just in place.\",\", someone observes the sobbing figure with an anxious stare.\",gold0-orig,pos,unl,unl,unl,unl,\"With a baffled look, someone tilts his head.\",On his way out the baffled look\nanetv_PHIZza_xVog,6504,A woman puts some lotion on her hand. She,rubs the lotion onto her face.,uses a towel to clean her hair.,puts the hair down and touches it.,rubs some water on the side of her head.,,gold0-orig,pos,unl,unl,unl,n/a,A woman puts some lotion on her hand.,She\nanetv_s0YJOzALDNg,299,A group of people are under a covering. They,are riding around in a series of bumper cars.,is holding a waxes rope wearing gray sunglasses.,is talking to the camera and men stands talking and hold up letters.,are also wearing inflated tires.,are playing lacrosse with their hands.,gold0-orig,pos,unl,unl,unl,pos,A group of people are under a covering.,They\nanetv_s0YJOzALDNg,300,They are riding around in a series of bumper cars. The cars,bump into each other as they drive around.,bounce intentionally around the tires.,\"goes under their movements, yanking their shoes and knocking them back the way they came.\",crash into each other as a spin.,\"continue driving faster, bumping into one another as they stride on.\",gold0-orig,pos,unl,unl,pos,pos,They are riding around in a series of bumper cars.,The cars\nanetv_UpmzSgLLj-s,3162,We return to the man putting the bike together. He finishes and we,see the customer service phone number.,see the doctor cooking utensils.,see the bike for the ride briefly.,see the machine close up closer.,starts again to puts the bike into his place.,gold0-orig,pos,unl,pos,pos,pos,We return to the man putting the bike together.,He finishes and we\nanetv_UpmzSgLLj-s,3161,We see the factory briefly. We,return to the man putting the bike together.,see a young man march the girls out of a studio.,\"see the man on the board again, then bow.\",see a woman and a lady playing a game of soccer.,see a man in the weightlifting talking.,gold0-orig,pos,unl,unl,unl,unl,We see the factory briefly.,We\nanetv_UpmzSgLLj-s,3157,We then see a man working on various things in a bike factory. The man,\"puts a bike together quick, puts it in a box, then on a conveyor belt.\",puts the hubcap back in the handlebars.,stops trimming air tree hedges while talking to the camera.,continues talking and puts a ring in his mouth.,is then seen throwing plaster on it.,gold0-orig,pos,unl,unl,unl,unl,We then see a man working on various things in a bike factory.,The man\nanetv_UpmzSgLLj-s,3159,We then see a person putting tools on the bike box. The man,begins to take the pieces part and put the bike together.,uses how to adjust the handlebars and screws back down.,removes an orange product into a plastic bag.,\"throws the shingles in his car, then uses a spare on floor paper.\",presents one of the bicycle parts with a plate wheel hand at top it.,gold0-orig,pos,unl,unl,unl,unl,We then see a person putting tools on the bike box.,The man\nanetv_UpmzSgLLj-s,3156,We see a quick title screen. We then,see a man working on various things in a bike factory.,see an older product product.,see ladies in boxing scuba diving.,see ladies doing ingredients on a stage.,see him boils a pineapple.,gold0-orig,pos,unl,unl,unl,unl,We see a quick title screen.,We then\nanetv_UpmzSgLLj-s,3158,\"The man puts a bike together quick, puts it in a box, then on a conveyor belt. We then\",see a person putting tools on the bike box.,cuts the bike again and hi extensively with the 10 procedure slide.,see the ending title screen and folds before it.,\"see that you can properly assemble the carpet, just a tire attached to the rim of the pedals.\",see to change the bike wheel and glues the concrete into the bike.,gold0-orig,pos,unl,unl,unl,unl,\"The man puts a bike together quick, puts it in a box, then on a conveyor belt.\",We then\nanetv_UpmzSgLLj-s,3163,He finishes and we see the customer service phone number. We then,see the end title screen.,see a lady in selfie bar to a news johnson talking.,see the players and the newscaster running back to the right.,\"see a man performing tai chi, wood, pom - iron and rock climbing done.\",,gold1-orig,pos,unl,unl,unl,n/a,He finishes and we see the customer service phone number.,We then\nanetv_UpmzSgLLj-s,3160,The man begins to take the pieces part and put the bike together. We,see the factory briefly.,then shows warming up and washing the wheels off the bike.,then see his iphone again.,are very bored off the side and large cars are then parked inside.,,gold0-reannot,pos,unl,unl,unl,n/a,The man begins to take the pieces part and put the bike together.,We\nanetv_wUvC0TXK1PM,2394,He is using a platform to hold a loose window. He,uses a brush to clean the window as he shows how it is done.,runs down the street very intently.,appears then knocks him backward into the water.,dives and makes sure to stay upright.,,gold0-orig,pos,unl,unl,unl,n/a,He is using a platform to hold a loose window.,He\nanetv_wUvC0TXK1PM,2393,A man is inside a living room of a house. He,is using a platform to hold a loose window.,throws an object down the lane while he goes.,is standing in front of a rock wall.,is standing on a table in front of a corner.,,gold1-orig,pos,unl,unl,pos,n/a,A man is inside a living room of a house.,He\nanetv_wUvC0TXK1PM,19421,He moves a tool all around the area and continues cleaning. He,finishes the window and ends by turning off the camera.,\"holds up a snow hose, wiping them.\",continues jumping through the window and walking in the street while speaking to the camera.,continues playing and using a mac.,sits up and talks about it.,gold0-orig,pos,unl,unl,unl,unl,He moves a tool all around the area and continues cleaning.,He\nanetv_wUvC0TXK1PM,19420,A man walks into frame and begins cleaning off a window on a platform. He,moves a tool all around the area and continues cleaning.,continues panning to the crowd holding frame and showing off the pictures.,takes off throwing the shoes into a room as well as spray to work with other things.,holds up more and begins wiping it down with a rag.,pours something into a clean - spewing sparks and sprays.,gold0-orig,pos,unl,unl,unl,unl,A man walks into frame and begins cleaning off a window on a platform.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41104,17396,\"Someone studies the old tiger. Later, someone and someone\",walk ahead of the kids.,emerge from the pumpkin hole.,float from a raft.,get out of someone's raft.,sit in their sewing machines.,gold0-orig,pos,unl,unl,unl,pos,Someone studies the old tiger.,\"Later, someone and someone\"\nanetv_0ZXc2fEDgg8,6199,We see a title screen. A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man,slams the man on another man laying on the ground.,walks away talking about his product.,\", waits on the sidewalk.\",sits by siting on it.,is using a trimmer to remove snow from a bush.,gold0-orig,pos,unl,unl,unl,unl,We see a title screen.,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man\nanetv_0ZXc2fEDgg8,6200,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man slams the man on another man laying on the ground. We,see a repeat of the second slam in slow motion.,the camera continues to blow free after the man digs into the pumpkin and holding the tool out to his face.,cuts the man's beard off.,\"walks round back from the building, adjusts the pain and bolts of his bench.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is holding a man on his shoulders in front of him outside near a small fence and trees and the standing man slams the man on another man laying on the ground.,We\nanetv_0ZXc2fEDgg8,6201,We see a repeat of the second slam in slow motion. We,see the ending title and credits.,see a man being drug by a female wash car.,see the machine functions.,\"zoom and see the name of a man in a faded black shirt, and some men stretching in circles.\",see the closing show again.,gold0-orig,pos,unl,unl,unl,unl,We see a repeat of the second slam in slow motion.,We\nanetv_0ZXc2fEDgg8,8284,We see a man body slam a man on the street. We,see the other man be body slammed.,see a man jumping and jump.,see a man solidly kick in the sun.,see two lady in a swimming costume.,see 2 ham and a third title screen.,gold0-orig,pos,unl,unl,unl,unl,We see a man body slam a man on the street.,We\nanetv_0ZXc2fEDgg8,8286,We see a man power slam a man on another man. We then,see the ending credits.,see a man doing spin bars.,see people playing shuffleboard with men.,see a man and a man.,,gold1-orig,pos,unl,unl,pos,n/a,We see a man power slam a man on another man.,We then\nanetv_0ZXc2fEDgg8,6195,A man picks up a slumped over man on a sidewalk at night then slams the slumped man onto the ground. We,see a repeat of the slam in slow motion.,are wires in place.,then jumps in the seat before walking back and leading into a bluff out of place.,the man is crouched on the ground and the man as four bald men are shown riding in a bicycle park.,\"hits the smashed wall of a station, crouching through the archers, then skis, stand, and manages to climb in.\",gold0-orig,pos,unl,unl,unl,unl,A man picks up a slumped over man on a sidewalk at night then slams the slumped man onto the ground.,We\nanetv_0ZXc2fEDgg8,8285,We see the other man be body slammed. We,see a man power slam a man on another man.,see the back of the men in pink.,see the black bull on.,see the scene card as scenes of a bowling game just after it's done.,,gold0-orig,pos,unl,unl,unl,n/a,We see the other man be body slammed.,We\nanetv_0ZXc2fEDgg8,6197,We then see another screen with title on it. We,see the other man lift the first man and slam him on the sidewalk.,see the title screen.,see the closing credits.,see people playing soccer sitting on a beach.,see the man on the screen filming.,gold0-reannot,pos,unl,unl,unl,pos,We then see another screen with title on it.,We\nanetv_0ZXc2fEDgg8,6198,We see the other man lift the first man and slam him on the sidewalk. We,see a title screen.,see a lady in shirt talking to someone the father is sitting in a swing at another desk.,\"see someone in the room with someone else, again, together.\",see the lady jump high in the air.,see a man putting the shovels.,gold1-reannot,pos,unl,unl,unl,unl,We see the other man lift the first man and slam him on the sidewalk.,We\nanetv_0ZXc2fEDgg8,6196,We see a repeat of the slam in slow motion. We then,see another screen with title on it.,see a person break the water and perform a trick.,see the girl one at a time.,see four boys running down the pitch with grand balls.,see a lady straddle in black runs back.,gold0-reannot,pos,unl,unl,unl,unl,We see a repeat of the slam in slow motion.,We then\nlsmdc3011_BLIND_DATING-1117,8753,\"His hands folded on his chest. Hiking up his pants, his father\",sits on the bed's edge.,climbs up someone's rung as she straddles someone.,folds himself up as he extends his hand.,waves his hand over the snake.,tucks behind his back.,gold1-orig,pos,unl,unl,unl,unl,His hands folded on his chest.,\"Hiking up his pants, his father\"\nlsmdc3011_BLIND_DATING-1117,8751,\"At home, someone's father enters his son's dark bedroom and turns on the light. Someone\",lies on top of his bedspread.,turns and hearing a hotel rat.,is being supported by him.,is bending to leave the sleeping baby.,is slumped in the chair beside someone.,gold0-orig,pos,unl,unl,unl,pos,\"At home, someone's father enters his son's dark bedroom and turns on the light.\",Someone\nlsmdc3011_BLIND_DATING-1117,8750,\"Crimson Elephant, someone notices the tv report. At home, someone's father\",enters his son's dark bedroom and turns on the light.,spreads his arms in the air.,\"opens his curled eyes, bracing phrases on his coffee sheet.\",draws back apart to show a close - up photograph of someone.,sits down at one shabby desk.,gold0-reannot,pos,unl,unl,unl,pos,\"Crimson Elephant, someone notices the tv report.\",\"At home, someone's father\"\nlsmdc3011_BLIND_DATING-1117,8752,Someone lies on top of his bedspread. His hands,folded on his chest.,reach for the doorknob.,are in the water.,reach for someone's neck.,clasped around someone's shoulders.,gold1-reannot,pos,unl,unl,unl,unl,Someone lies on top of his bedspread.,His hands\nlsmdc3011_BLIND_DATING-1117,8754,\"Hiking up his pants, his father sits on the bed's edge. A little smile briefly\",crosses someone's lips.,plays on his goatee high style features.,illuminates his face as they look out silk gifts.,plays in his face.,crosses his face as he lets his hand fall ikea her thigh.,gold1-reannot,pos,unl,unl,unl,unl,\"Hiking up his pants, his father sits on the bed's edge.\",A little smile briefly\nanetv_2Tuht3F2uc8,4266,A person is shoveling their driveway. They,are pushing the snow to the side.,are removing snow from the tree and petting it.,are sitting in a snowy hill going down the sidewalk.,start to lick the balls one at a time.,grab some soap and polish him to brush the beard.,gold0-orig,pos,unl,unl,unl,unl,A person is shoveling their driveway.,They\nanetv_2Tuht3F2uc8,4519,A woman is shoveling snow outside her house. She,rakes up big scoops of the snow.,are using a snow brush in the water and bushes in the beach.,continues to blow several paste up the sidewalk as she moves.,clamps down on two paper and has to decorate them with a railings.,walks around a very large body of dirt and lined snowboards.,gold0-orig,pos,unl,unl,unl,pos,A woman is shoveling snow outside her house.,She\nanetv_2Tuht3F2uc8,4520,She rakes up big scoops of the snow. She then,tosses them off to one side.,begins to shovel the sand.,rides one horse across turning grass as well as bumping into it.,looks around at the water and pile from its top.,,gold0-orig,pos,unl,unl,unl,n/a,She rakes up big scoops of the snow.,She then\nanetv_2Tuht3F2uc8,4267,They are pushing the snow to the side. Another person,comes and helps them shovel the snow.,is standing on the black yard to get out of the tubes.,is sitting on the ground walking behind them.,is shoveling snow from the car.,is walking down the path of watching them.,gold0-orig,pos,unl,unl,pos,pos,They are pushing the snow to the side.,Another person\nanetv_kbe4iowYMqM,15312,A woman stands in a kitchen talking. The woman,cuts open a bag of noodles and shows how to prepare it.,\"mixes ingredients into a glass bowl, mixes it together, and stirs.\",pours salt on a jar of cup and pours ice into a mixer.,uses a knife to cut a tomato.,is then mixing a pan on the stove while a woman is cooking up into the stove.,gold1-orig,pos,unl,unl,unl,unl,A woman stands in a kitchen talking.,The woman\nanetv_kbe4iowYMqM,17131,The woman points to several items on her counter. the woman the,begins preparing a meal.,woman grabs the food from the mixer and cut dismissively with the paper.,woman lunges for the camera.,woman throw a dart in the air.,mixes the ingredients together in several jars of water.,gold0-orig,pos,unl,unl,unl,pos,The woman points to several items on her counter.,the woman the\nanetv_kbe4iowYMqM,15313,The woman cuts open a bag of noodles and shows how to prepare it. The same woman,holds up a bag of noodles describing it.,is once again talking to the camera and shows a sharp cuts of her finger.,is knitting to fabric in several tongs.,is shown using both hands and feet.,has then half wrapped golf ball in her mouth before speaking to the camera again.,gold0-orig,pos,unl,unl,unl,unl,The woman cuts open a bag of noodles and shows how to prepare it.,The same woman\nanetv_kbe4iowYMqM,17130,A woman stands in a kitchen a begins talking. the woman,points to several items on her counter.,starts cutting the cat's nails while continuing cutting her nails.,resumes making nails together.,walks around near a desk and starts to talk.,begins clipping the cat's nails.,gold0-reannot,pos,unl,unl,pos,pos,A woman stands in a kitchen a begins talking.,the woman\nanetv__DlDtsPxdyY,8788,A woman is seen close up to the camera as well as several others. A pool table,is shown with people making shots and others watching.,\"is shown, followed by the woman surfing surf around.\",is shown followed by a man mixing drinks into the cup.,is shown with a woman speaking to the camera and holding up the drinks.,is seen followed by two more men running down the diving board while speaking to one another and standing around.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen close up to the camera as well as several others.,A pool table\nanetv__DlDtsPxdyY,8789,A pool table is shown with people making shots and others watching. The people,continue to play with one another and end by shaking hands and two holding up a trophy.,continue doing tai chi with their hands and ends with them laughing and playing.,begin speaking to one another while people continue swimming in the water.,continue to puck around hitting one another and end by scoring a goal.,speak to one another while pointing behind and showing some sort of makeup.,gold1-reannot,pos,unl,unl,unl,pos,A pool table is shown with people making shots and others watching.,The people\nlsmdc3004_500_DAYS_OF_SUMMER-1457,7644,\"As they wander through Ikea, someone takes someone's hand. At night, they\",\"tumble, kissing on to the bed.\",shake him and get into his car.,get up from their winter trip.,sit on chairs at a nearby table.,get in the sedan.,gold0-orig,pos,unl,unl,unl,pos,\"As they wander through Ikea, someone takes someone's hand.\",\"At night, they\"\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9964,Jockeys ride their horses toward the starting gate. The race begins and the animals,burst onto the track.,\"are chasing each other, and you are running back and forth.\",are trying to measure.,continues to follow the horses through the field.,,gold0-orig,pos,unl,unl,pos,n/a,Jockeys ride their horses toward the starting gate.,The race begins and the animals\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9965,\"Sitting alone on a long bench, someone thoughtfully pieces through her collective notes, which include the coaster. She\",digs her cell from her purse and answers.,bounces up from one side and sets it aside.,secures the cd case with her fingertips.,\"strokes her eyebrows, the chef leads the way to a gated wire fountain.\",heads corkscrew then dries the spot in the pixie - like clothing store.,gold0-orig,pos,unl,unl,unl,unl,\"Sitting alone on a long bench, someone thoughtfully pieces through her collective notes, which include the coaster.\",She\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9963,An older woman rubs sunblock on her bare arms. Jockeys,ride their horses toward the starting gate.,are laying in bed.,paddle backward and surf in.,are shown in a background.,,gold0-orig,pos,unl,unl,pos,n/a,An older woman rubs sunblock on her bare arms.,Jockeys\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9962,\"At a racetrack, people crowd the stands. An older woman\",rubs sunblock on her bare arms.,puts two winning ladies on the floor.,is in a crowd while holding a camera in his hands.,shows a length of red - shower wig.,sits on a platform.,gold0-orig,pos,unl,unl,unl,pos,\"At a racetrack, people crowd the stands.\",An older woman\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9968,He affects a nonchalant shake of the head. Someone,\"looks away, shifting her wary gaze then frowns at him again.\",leads a floor of a title.,\", we continue to sweep from side to side as he edges back so this can not be just seeing his behavior.\",\", in someone's smile, he arrives at the bar and someone prepares his jump as he looks closer to the crowd.\",\"looks around at the vast green of the grass, and jazz balloons as someone strides in with dozens of orcs.\",gold0-orig,pos,unl,unl,unl,unl,He affects a nonchalant shake of the head.,Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9966,\"Standing near a corral, someone grins. Someone\",finds someone sharing her bench.,smooth out the cards.,leads her off as they approach.,\"takes a bite of the sandwich, and glares at it.\",draws his face in his hands.,gold0-orig,pos,unl,unl,unl,pos,\"Standing near a corral, someone grins.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9969,\"Standing, he steps before her. Someone\",smiles and shakes her head.,walks up to the hall.,drops her things and approaches the entrance.,takes his jacket off the peg and grabs his hand.,walks into the door.,gold1-orig,pos,unl,unl,unl,unl,\"Standing, he steps before her.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4631,9967,Someone finds someone sharing her bench. He,affects a nonchalant shake of the head.,reads a compact section of the box.,helps with a cart of food.,turns and joins his daughter anxiously.,,gold0-orig,pos,unl,unl,pos,n/a,Someone finds someone sharing her bench.,He\nlsmdc3089_XMEN_FIRST_CLASS-42805,15765,\"Taking cover, he draws the Nazi's Blood and Honor knife from a boot sheath. Someone\",stalks out onto the main deck.,pops up further and covers his mouth with both hands.,prods him a bit harder.,\"descends, revealing and its feet up from its lapel.\",\"continues to drain the deep, bloody my teeth.\",gold1-orig,pos,unl,unl,unl,unl,\"Taking cover, he draws the Nazi's Blood and Honor knife from a boot sheath.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42805,15767,Someone grins at the intruder. Someone,clutches his head and drops to his knees.,snaps a photo of someone.,puts her head down.,players deal there.,grabs a red handgun.,gold0-orig,pos,unl,unl,unl,pos,Someone grins at the intruder.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42805,15766,Someone stalks out onto the main deck. Someone,grins at the intruder.,takes the collapsible and takes it from the train.,grimly strides to the front door.,emerges from the vast mirrored structure.,struggles to pick her up.,gold1-orig,pos,unl,unl,unl,pos,Someone stalks out onto the main deck.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42805,15764,\"Later in a wetsuit, he creeps onboard. Taking cover, he\",draws the nazi's blood and honor knife from a boot sheath.,\"chokes on the water pensively, steadying himself in the mirror.\",scans the parking space.,retreats through a shrubbery.,peers down the steep hill and lowers his binoculars.,gold1-reannot,unl,unl,unl,unl,unl,\"Later in a wetsuit, he creeps onboard.\",\"Taking cover, he\"\nlsmdc3089_XMEN_FIRST_CLASS-42805,15768,Someone clutches his head and drops to his knees. Someone,remembers his mother screaming.,flattens himself against the wall headboard.,bites her lip in an crestfallen frown.,\"falls on the ground, unharmed.\",,gold0-reannot,pos,unl,pos,pos,n/a,Someone clutches his head and drops to his knees.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42805,15763,\"From the rippling water below, someone's head emerge. He\",gazes intently at the extravagantly large luxury craft.,is dragged under a lost channel's attention.,carries the case away.,shoots him a harsh look.,glances back at someone who grins at someone.,gold1-reannot,pos,unl,unl,unl,pos,\"From the rippling water below, someone's head emerge.\",He\nlsmdc0016_O_Brother_Where_Art_Thou-55413,16808,The customers stare mutely back. The customers,shuffle their feet and glance uncomfortably about.,spit in the cold sink.,scatter as he prints out the stalls.,make their way over the subway.,\"take a wrinkled breath and stop, staring and tapping their binoculars in their ashtray.\",gold0-orig,pos,unl,unl,unl,unl,The customers stare mutely back.,The customers\nlsmdc0016_O_Brother_Where_Art_Thou-55413,16809,The customers shuffle their feet and glance uncomfortably about. Someone,lays a hand on someone's shoulder and tries to steer him toward the door.,takes the cup from the can and picks it up.,\"glances up, then.\",steps down with a haggard smirk.,glowers at someone's earbuds and cocks his head.,gold0-reannot,pos,unl,pos,pos,pos,The customers shuffle their feet and glance uncomfortably about.,Someone\nanetv_A_Rh4tMM2xY,18162,\"The lady in pink top came in front of the other boy with white shirt, and talked to him, started to push him on the swing, give him a kiss and continue to swing him from the side of the swing. The littler girl near the bench\",sat to pick up something from the blue ground.,\"stand into a flip, but struggles and fell away.\",dumps the bodhi tree to the high wall.,walked as the boy jumped after the monkey.,walked up to the swing as the child began to swing the rope but also away too.,gold0-orig,pos,unl,unl,unl,pos,\"The lady in pink top came in front of the other boy with white shirt, and talked to him, started to push him on the swing, give him a kiss and continue to swing him from the side of the swing.\",The littler girl near the bench\nanetv_A_Rh4tMM2xY,18161,There are two kids on the swing set while two old ladies standing beside them swinging them. The old lady in pink top,\"went away, while the other old woman in purple continues to swing the boy.\",gives the little girl a chair across the yard.,is putting down hula hoops with another girl in a short dress and another.,sits down to the ground.,,gold0-orig,pos,unl,unl,pos,n/a,There are two kids on the swing set while two old ladies standing beside them swinging them.,The old lady in pink top\nanetv_62BPME-ikJU,3669,\"Then, the woman mows the grass of the backyard. After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she\",puts back the container in the mower.,places the toys stick in the garden.,plays the dogs with a scatter bag.,stops to mix the leaves on the tree.,turns around and throws the ax on the tree again.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the woman mows the grass of the backyard.\",\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she\"\nanetv_62BPME-ikJU,3670,\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she puts back the container in the mower. A boy\",stands watching the woman.,lifts the scoop up on the yard while talking to the camera.,rides down behind her on the ground.,uses a brush to fix.,rides in front of her.,gold0-orig,pos,unl,unl,unl,unl,\"After, the woman takes out the container of the mower and puts the dead grass in a trash bag, then she puts back the container in the mower.\",A boy\nanetv_62BPME-ikJU,13353,This video is a tutorial showing how to cut the grass. First she,explains how you should cut the grass according to its color and how high or low you want it.,uses the block to moves a box of bbq on pins and showing it to the camera.,uses some cucumbers to take a dip and put some cream all through the skin to finish the process.,takes marks in the hair of the biker and get it done curl in her mouth.,cuts a tomato and shows it to her friends before cutting the ribbon side to side.,gold0-orig,pos,unl,unl,unl,unl,This video is a tutorial showing how to cut the grass.,First she\nanetv_62BPME-ikJU,3668,\"A woman takes a swing chair to the side of the backyard. Then, the woman\",mows the grass of the backyard.,remove american wallpaper from someone.,throws the ball in her room.,demonstrates how to do the cookies.,dips glasses in the sink.,gold0-reannot,pos,unl,unl,unl,unl,A woman takes a swing chair to the side of the backyard.,\"Then, the woman\"\nanetv_2NAbdlHXcTI,689,A man does a disk throw. He,spins around and throws the disk.,sees the frozen and bagpipes playing.,throws another and the clippings on his chest touch a hand stand.,holds the dart and goes.,lands and lands on the baseball field.,gold0-orig,pos,unl,unl,unl,unl,A man does a disk throw.,He\nanetv_BuaWU70q7cE,1827,They put the presents in the middle of the paper and try to start wrapping. They,seems to have different techniques as the son finishes much faster and mom's comes out looking a little bit better.,put their frosting in a cake.,positions a red ribbon around the table and set the matches shiny to the center.,continue doing their breaking and hitting it with each other.,ties the top of the pumpkin tree and creates it.,gold0-orig,pos,unl,unl,unl,unl,They put the presents in the middle of the paper and try to start wrapping.,They\nanetv_BuaWU70q7cE,1826,\"He gets side tracked on his phone and then gets back to business, they start cutting the wrapping paper. They\",put the presents in the middle of the paper and try to start wrapping.,fight with him to bolt on his pants.,are covered for plates.,has been dressing in the garden.,snap around each section of the chopped roots while finally in mid shot of a mower.,gold0-orig,pos,unl,unl,unl,unl,\"He gets side tracked on his phone and then gets back to business, they start cutting the wrapping paper.\",They\nanetv_BuaWU70q7cE,1825,\"A teenaged boy and his mother are sitting in bed dressed very relaxed and talking about how to wrap gifts. He gets side tracked on his phone and then gets back to business, they\",start cutting the wrapping paper.,are putting paper in a cap on each right.,simply move on on the guy to present and replace the belt.,\"are enjoying themselves, ending to talk about the kid as well.\",,gold0-orig,pos,unl,unl,pos,n/a,A teenaged boy and his mother are sitting in bed dressed very relaxed and talking about how to wrap gifts.,\"He gets side tracked on his phone and then gets back to business, they\"\nanetv_gXUm7nobsfU,13033,A woman in a sparkling green dress talks on a stage. A couple,\"is shown dancing, kicking and swirling creatively.\",moves in bed and shows behind her.,is playing a violin in front of the woman.,plays polo in a bedroom with two microphones in a pool.,gets on a stage on stage talking to the winner.,gold0-orig,pos,unl,unl,unl,pos,A woman in a sparkling green dress talks on a stage.,A couple\nanetv_gXUm7nobsfU,13034,\"A couple is shown dancing, kicking and swirling creatively. When they are done, they\",hold hands as the crowd cheers.,\"do flips and spin, and lift the weight.\",break dancing and dance around.,continue moving along on the way for fun lastly.,stand up and jump on the slack line.,gold0-orig,pos,unl,unl,unl,unl,\"A couple is shown dancing, kicking and swirling creatively.\",\"When they are done, they\"\nanetv_gXUm7nobsfU,13035,\"When they are done, they hold hands as the crowd cheers. They\",\"walk over to the woman in a green dress, hugging her before leaving the stage.\",look into the dance screen and continue to play.,continue drumming with each other while people cheer for the match.,do a routine on the platform.,,gold0-reannot,pos,unl,unl,pos,n/a,\"When they are done, they hold hands as the crowd cheers.\",They\nlsmdc3084_TOOTH_FAIRY-40001,7347,\"Someone arches his brows doubtfully. Later outside, someone\",\"runs up to a tall concrete fence, hooks his hockey stick over the top, and vaults over it.\",\"kicks his feet, throws himself on the wall, and lands hard on his leg.\",\"jogs up a bar making four legs grazing the waist - high brick restroom, through a shady wooden hedge letting out a breath.\",\"watches, chewing into a glass of water.\",arrives on a courtyard and revealing a rock column mounted sledgehammer's rock.,gold0-orig,pos,unl,unl,unl,unl,Someone arches his brows doubtfully.,\"Later outside, someone\"\nlsmdc3084_TOOTH_FAIRY-40001,7351,He turns his hand palm up demandingly. The father,moves his hand toward someone's.,rocks for the last time.,\"smiles with both smiles, back to the end of the bed.\",gazes wildly at his father's head.,shoots ahead then nods and moves past the door of the room.,gold1-orig,pos,unl,unl,unl,pos,He turns his hand palm up demandingly.,The father\nlsmdc3084_TOOTH_FAIRY-40001,7353,He halts just outside and the father steps closer. Someone,props his hands on his hips.,lowers her gaze with a furrowed brow.,returns to the diner and grabs another photo.,knits his brow as he unpacks his bike on the park ground.,rests his hand on her shoulder.,gold1-orig,pos,unl,unl,unl,unl,He halts just outside and the father steps closer.,Someone\nlsmdc3084_TOOTH_FAIRY-40001,7346,Someone wears his helmet and hockey pads over his tooth fairy uniform. Someone,arches his brows doubtfully.,uncovers a market square.,shows another phone reward.,acknowledging a bath in denim jackets.,,gold0-orig,pos,unl,unl,unl,n/a,Someone wears his helmet and hockey pads over his tooth fairy uniform.,Someone\nlsmdc3084_TOOTH_FAIRY-40001,7350,Someone covers his face with his gloved hand. He,lowers his glove from the man's gaping mouth.,\"leans blankly on the stage, thinks straight, then paddles out, as someone closes his mouth.\",\"watches, as someone races out of the cottage.\",extends his hand and brings it to his lips.,smacks someone's limp hand solemnly.,gold1-orig,pos,unl,unl,pos,pos,Someone covers his face with his gloved hand.,He\nlsmdc3084_TOOTH_FAIRY-40001,7348,As he extracts a tooth. Someone,treads up behind him.,\"wanders the glass, taps him against a wall, and reaches for the payphone.\",rubs it anxiously with his thumb and teeth.,\"presses her knob, letting it drop to the floor.\",casts a faint glow atop the canvas.,gold0-reannot,pos,unl,pos,pos,pos,As he extracts a tooth.,Someone\nlsmdc3084_TOOTH_FAIRY-40001,7345,Someone dashes her with more dust and the clerk gawks. Someone,\"kisses someone, then gives him a hug.\",\"stands in the van, rubbing it into a red - blue mad dash.\",sits in the bed.,runs into the hall tearing through the blood covering the body of the hunter.,starts to descend on the lifeboat.,gold0-reannot,pos,unl,unl,unl,unl,Someone dashes her with more dust and the clerk gawks.,Someone\nlsmdc3084_TOOTH_FAIRY-40001,7352,The dumbfounded father blinks his wide eyes. Someone,grins and strides onto a balcony.,gazes out his office window.,is photographed at the check.,takes a deep breath and strides through the glass.,slams another glass into the customer.,gold1-reannot,pos,unl,unl,unl,unl,The dumbfounded father blinks his wide eyes.,Someone\nlsmdc3084_TOOTH_FAIRY-40001,7349,The father turns and his jaw drops. Someone,covers his face with his gloved hand.,struggles to look as someone attempts to pull her into the police cars.,falls along the icy ramp bridge.,\"gives someone an encouraging nod, then screws up her face.\",\"sighs and marches away, leaving someone in a beautiful dark room.\",gold0-reannot,pos,pos,pos,pos,pos,The father turns and his jaw drops.,Someone\nanetv__LKFGLH8XxI,3215,She continues playing with the toy hair dryer and talking. She,picks up a toy curler and sets it down on the desk in front of her.,continues to use toothpaste to brush her teeth before walking back through a open haze.,walks back from the wall and picks up her sleeve.,continues to play the piano while pausing to speak to the camera.,,gold0-orig,pos,pos,pos,pos,n/a,She continues playing with the toy hair dryer and talking.,She\nanetv__LKFGLH8XxI,3213,A little girl is playing with a toy hair dryer. She,turns around and smiles.,welds yarn and needles as they play.,is using a blow dryer to blow dry her hair.,\"sits beside the hair style hairstylist, cutting out her hair.\",brushes the hair of a dog with the stray comb and holds it back.,gold0-reannot,pos,unl,unl,unl,unl,A little girl is playing with a toy hair dryer.,She\nanetv_AMU1mHpR6Os,8982,A close up of a razor is shown an leads into several clips of dogs getting their cut trimmed. Several tools are shown,are then shown on cats and them laying down being pet.,agitatedly describing feature on the screen.,held down as well as description the person's teeth.,on one man washing their hands and the others working on the sides of a sled.,needed in the fence as well as a man holding a machine and walking behind the camera.,gold0-reannot,unl,unl,unl,unl,unl,A close up of a razor is shown an leads into several clips of dogs getting their cut trimmed.,Several tools are shown\nanetv_6I1aP4O04R8,0,A large pile of leaves are seen blowing around a yard as a person uses a tool to push them along. The camera,continues to capture the man blowing the leaves and uses several camera effects on the frames.,pans around to grab the tree around and pans up to show various instruments on the ground.,continues moving all around the lawn while doing them again while looking back to the camera.,shows it back to the camera and continues talking to the camera.,pans out to a person walking down a pathway and leading out of the path.,gold0-orig,pos,unl,unl,unl,pos,A large pile of leaves are seen blowing around a yard as a person uses a tool to push them along.,The camera\nanetv_W5cGKWhOTOU,842,\"The girl then grabs the left boot, removes the stuff in it, tries it on and stands up to model them. The girl stands next to the guy and they smile, she gives a thumbs up and he\",hugs her from behind.,licks her off the right wrist.,goes back by the other then the white man does.,holds her in front of the head.,,gold0-orig,pos,unl,unl,unl,n/a,\"The girl then grabs the left boot, removes the stuff in it, tries it on and stands up to model them.\",\"The girl stands next to the guy and they smile, she gives a thumbs up and he\"\nanetv_W5cGKWhOTOU,839,There are 3 people at a store in a shoe section and there are two people on the ground trying on boots. The man on the ground,\"removes his pink boot, throws it on the side and stands up smiling.\",holds the wall pancake to the other person then splatters it on the tile.,continues to move up and down while the sun is falling back.,\"walks around the plant, then turn to the beach and resumes her run.\",,gold0-orig,pos,unl,unl,unl,n/a,There are 3 people at a store in a shoe section and there are two people on the ground trying on boots.,The man on the ground\nanetv_W5cGKWhOTOU,840,\"The man on the ground removes his pink boot, throws it on the side and stands up smiling. The girl\",\"grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her.\",gets out and crouches before the baby.,places the racket against the side of the car and sits back up.,is standing by her hand for a picture.,,gold0-orig,pos,unl,unl,pos,n/a,\"The man on the ground removes his pink boot, throws it on the side and stands up smiling.\",The girl\nanetv_W5cGKWhOTOU,841,\"The girl grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her. The girl\",\"then grabs the left boot, removes the stuff in it, tries it on and stands up to model them.\",is standing the girl pushing other chairs around him and starts up to grab his arm and the man keeps on standing.,then moves up and throws the ball to the level while holding the ball and trying to focus.,lets go of her arm and throws the baton at her father and the gets in and out of the audience.,holds up his hands while the boy looks at the camera.,gold0-reannot,pos,unl,unl,unl,unl,\"The girl grabs his pink boot, tries it on her right foot and sits there modeling it while talking to the people around her.\",The girl\nanetv_FFCmoQp_xVA,11793,The man pours it into a martini glass. The man,smiles and holds the drink in the air.,pours shots into another drink.,walks into frame with a mug in his hand.,puts a special bow on the screen.,,gold0-orig,pos,unl,unl,unl,n/a,The man pours it into a martini glass.,The man\nanetv_FFCmoQp_xVA,11791,The man adds ice to a glass and two shots of a red liquor then another. The man,puts a strainer on the glass and stirs the glass with a long metal stick.,then pours liquid into his ear and pours some powder into the glass.,adds color to the man in white on the table.,begins to describe the contents of his alcohol while a man talks with the camera.,\"pours alcohol into the glass, takes out the cup and cooks it.\",gold0-orig,pos,unl,unl,unl,unl,The man adds ice to a glass and two shots of a red liquor then another.,The man\nanetv_FFCmoQp_xVA,11789,A man stands behind a bar talking to the camera. The man,holds a drink up and puts it down.,stands with his pole across the air and walks away.,is standing on the beam and begins to weld.,sits up and talks to the camera.,\"removes the weight and holds the weights over his head, shaking his head while the other beams.\",gold0-orig,pos,unl,unl,unl,unl,A man stands behind a bar talking to the camera.,The man\nanetv_FFCmoQp_xVA,11790,The man holds a drink up and puts it down. The man,adds ice to a glass and two shots of a red liquor then another.,points the bottles with the air and places it around and ends up putting it on a man's legs.,pours a drink into the cups in a bowl and uses it.,continues to speak to the camera and starts people sip his drink.,squeezes a glass full of ginger.,gold1-orig,pos,unl,unl,pos,pos,The man holds a drink up and puts it down.,The man\nanetv_FFCmoQp_xVA,11792,The man puts a strainer on the glass and stirs the glass with a long metal stick. The man,pours it into a martini glass.,pours the lemon juice on the table.,grabs a lemon from another wood dusted of white citrus.,adds rum to the glass of water.,puts the ingredients into the glass and he holds it out.,gold0-orig,pos,unl,unl,pos,pos,The man puts a strainer on the glass and stirs the glass with a long metal stick.,The man\nlsmdc0049_Hannah_and_her_sisters-69621,3167,\"As the camera slowly circles the table, someone is seen listening to someone, her hand on her mouth. Someone\",\"looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone.\",is slowly carefree.,\"draws tightly, watching him fondly.\",\"looks ahead, then at her nervously.\",,gold0-orig,pos,unl,unl,pos,n/a,\"As the camera slowly circles the table, someone is seen listening to someone, her hand on her mouth.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69621,3168,\"Someone looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone. The camera\",is back on someone.,focuses on his artwork.,\"pulls toward her upper, her chest heaving.\",focuses back to the man that is seeing him standing in the chair.,\"drifts off, leaving someone close behind her.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone looks up, her hand still on her mouth, watching someone, as the camera slowly moves off her to show someone.\",The camera\nlsmdc0049_Hannah_and_her_sisters-69621,3169,The camera is back on someone. She,\"looks around tensely, barely listening to the conversation.\",looks to.,\"reacting, catching her aback.\",to the group of people.,,gold0-orig,pos,unl,unl,unl,n/a,The camera is back on someone.,She\nanetv_hrpRVbLRoJ4,13114,A person is seen riding around on a horse over jumps in slow motion while others watch. The video,moves quicker as more people are seen jumping over obstacles and one speaking to the camera.,ends with clips of girls sitting on the sidelines and speaking with one another in their raft.,ends with the man guiding the path and soldiers to the side.,continues to motion around a replay with another person looking off into the distance.,ends on a replay of the ski happens several final times.,gold1-orig,pos,unl,unl,unl,unl,A person is seen riding around on a horse over jumps in slow motion while others watch.,The video\nanetv_hrpRVbLRoJ4,13115,The video moves quicker as more people are seen jumping over obstacles and one speaking to the camera. Several more clips,are shown of people riding around on horses as well as pictures inbetween and more close ups of horses.,are shown of kids sledding down a hill on snow.,are shown of the battling striking themselves with others and speaking to one another.,are shown of people riding on a raft along a large river followed by several people sitting on the ice.,,gold1-orig,pos,unl,unl,unl,n/a,The video moves quicker as more people are seen jumping over obstacles and one speaking to the camera.,Several more clips\nanetv_vuntaZJBcfI,14191,Thousands of people stand behind a starting line. the massive amount of people,start running through the streets.,fall into the water.,stand before the tent.,smash onto the windscreen at someone's body.,,gold0-orig,pos,unl,unl,unl,n/a,Thousands of people stand behind a starting line.,the massive amount of people\nanetv_vuntaZJBcfI,4513,We then see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen. Asian script appears and a man,stops running to look at the camera.,runs from the corner then moves as fast as we can.,appears doing air broadcast in front of a woman and includes logos and way in the background.,appears to join it alone in the motion.,is raising his arms as and talking to him.,gold0-orig,pos,unl,unl,unl,pos,We then see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen.,Asian script appears and a man\nanetv_vuntaZJBcfI,4512,We see a title screen in black. We then,see people lined up a the start of a a marathon take off running as words stream at the bottom of the screen.,demonstrates image of a woman that is mowing the yard with a scraper.,see a boy talking to a man and a put of curling gear.,see how to clean the floor with a bat down a wall.,see a man skating on the ice again.,gold0-orig,pos,unl,unl,unl,pos,We see a title screen in black.,We then\nanetv_vuntaZJBcfI,4515,\"The man runs off the marathon course and we then see shots of various location such as lakes, weddings, cities the ocean. The man\",stops and talks to the camera again.,opens his mouth wide to speak.,\"looks for various photos, and trophies.\",speaks to one of the men and gestures for his thumbs up.,,gold0-orig,pos,unl,unl,pos,n/a,\"The man runs off the marathon course and we then see shots of various location such as lakes, weddings, cities the ocean.\",The man\nanetv_vuntaZJBcfI,4514,Asian script appears and a man stops running to look at the camera. The man runs off the marathon course and we then,\"see shots of various location such as lakes, weddings, cities the ocean.\",continue to extend the board.,see a man fight over a javelin.,see some text and food in the beginning of the game.,see the ending screen with a title sequence.,gold0-orig,pos,unl,pos,pos,pos,Asian script appears and a man stops running to look at the camera.,The man runs off the marathon course and we then\nanetv_Nj_fvFbf56I,11853,A little boy runs across a hopscotch on the ground. He,\"returns to the beginning, and tries to jump.\",hits another ball a lady stands in front of her.,jumps up and jumps the monkey bars.,falls from the pinata again and finishes swinging.,hits the slide again with the hammer.,gold0-orig,pos,unl,unl,unl,unl,A little boy runs across a hopscotch on the ground.,He\nanetv_Nj_fvFbf56I,11854,\"He returns to the beginning, and tries to jump. He\",hops all the way to the end.,\"grabs a reasonable bow of his head, still trying to fend off the pain.\",disappears from the back door and hurries back to the car.,\"goes to him, laughing as they kiss.\",stands on the rope next to him on a wakeboard and moves behind the bar.,gold1-orig,pos,unl,unl,unl,unl,\"He returns to the beginning, and tries to jump.\",He\nanetv_zqcJ0N_a6y8,1940,\"Glasses appear in the frame. A man goes over to photograph the event, another\",walks up behind him.,man swims behind the bar.,is anticipating than the newscaster.,appears to be beat to it.,cigarette painted around his shirt.,gold0-orig,pos,unl,unl,unl,unl,Glasses appear in the frame.,\"A man goes over to photograph the event, another\"\nanetv_zqcJ0N_a6y8,11188,They pull and crawl away from each other. A group,watches them struggle to free themselves.,\"of men are down on ends, they begin to attack each other.\",of men doing other surfaces.,drive them through a narrow silence on a metal porch.,,gold0-orig,pos,unl,unl,unl,n/a,They pull and crawl away from each other.,A group\nanetv_zqcJ0N_a6y8,11187,Two military men are tied together from behind. They,pull and crawl away from each other.,are playing a game of lacrosse.,are holding lacrosse sticks.,enter to share someone.,rush through a game with another man watching television.,gold0-orig,pos,unl,unl,unl,unl,Two military men are tied together from behind.,They\nanetv_zqcJ0N_a6y8,1939,We see two men strapped together trying to pull away from each other. Glasses,appear in the frame.,holds out a record.,throw throwing sticks and balls at each other.,falling along the side of the ski.,,gold0-orig,pos,unl,unl,pos,n/a,We see two men strapped together trying to pull away from each other.,Glasses\nanetv_zqcJ0N_a6y8,1941,\"A man goes over to photograph the event, another walks up behind him. The camera pans up and we\",see the other people and cars.,see the men in slow motion.,see a blue screen with white and white letters yellow.,see the man doing a high jump to the bars.,,gold0-orig,pos,unl,unl,unl,n/a,\"A man goes over to photograph the event, another walks up behind him.\",The camera pans up and we\nanetv_zqcJ0N_a6y8,1942,The camera pans up and we see the other people and cars. People,walk up and stop the men.,are snowboarding a snowy hill next to another kids and brick wall.,\"stand on the side, dead on them.\",ride around on board and watch a live procession of people on their bikes.,duck down with some of the darts.,gold0-reannot,pos,unl,unl,unl,unl,The camera pans up and we see the other people and cars.,People\nanetv_F7V-FqgG3T8,1078,\"Behind the man, there is a row of kids sitting against the wall where a row of kids are watching them play. The game continues, the child holds his own until the adult ends up hitting it and the kid\",is not able to return the ball.,'s too well to do it.,having introduces himself to continue eating it.,begins to watch him.,turns round and watches the boy.,gold0-orig,pos,unl,unl,pos,pos,\"Behind the man, there is a row of kids sitting against the wall where a row of kids are watching them play.\",\"The game continues, the child holds his own until the adult ends up hitting it and the kid\"\nanetv_F7V-FqgG3T8,1077,\"Two men are standing in a room playing a game of tennis. Behind the man, there\",is a row of kids sitting against the wall where a row of kids are watching them play.,is a light on his face.,is a man playing chess in a room and one of the walls is shown.,is another man playing bass drums with his hands.,is a man playing squash in a small field with a flag.,gold0-orig,pos,unl,pos,pos,pos,Two men are standing in a room playing a game of tennis.,\"Behind the man, there\"\nlsmdc3012_BRUNO-4421,16035,\"Perching beside them on the arm of the couch, someone leans forward, and tickles the man's knee. Now, the balding man\",humps a woman from behind.,gives someone a cramped look and they brace the calf over a knee.,opens his legs as grandfather talks to his friend.,sticks his empty needle into the handle.,,gold0-orig,pos,unl,unl,unl,n/a,\"Perching beside them on the arm of the couch, someone leans forward, and tickles the man's knee.\",\"Now, the balding man\"\nlsmdc3012_BRUNO-4421,16038,Someone bends into the man's line of sight. The man,stares at the woman.,digs into a radio room.,runs at the hood of his jacket and smirks.,\"bounces away from someone, who crashes back into the split.\",reaches for someone's wallet.,gold0-orig,pos,unl,unl,unl,pos,Someone bends into the man's line of sight.,The man\nlsmdc3012_BRUNO-4421,16033,\"Someone pats the man's arm. Later, the man\",hugs the woman from behind.,shoves the woman forward knee - high on the deck.,puts freckles on the windshield.,steals control of himself.,glares down at his iced whisky on his table.,gold0-orig,pos,unl,unl,unl,pos,Someone pats the man's arm.,\"Later, the man\"\nlsmdc3012_BRUNO-4421,16037,Someone pats him on the back. Someone,bends into the man's line of sight.,holds back his fist.,\"smiles at someone, and falls on his face.\",joins her under the nose of a window.,tauntingly glances out at the golden table.,gold0-orig,pos,unl,unl,unl,unl,Someone pats him on the back.,Someone\nlsmdc3012_BRUNO-4421,16034,\"Later, the man hugs the woman from behind. Perching beside them on the arm of the couch, someone\",\"leans forward, and tickles the man's knee.\",sits in the passenger seat.,unties the baby in her arms.,plants a lingering kiss on his lips.,barges into someone and looks in.,gold1-reannot,pos,unl,unl,unl,pos,\"Later, the man hugs the woman from behind.\",\"Perching beside them on the arm of the couch, someone\"\nlsmdc3012_BRUNO-4421,16036,\"Now, the balding man humps a woman from behind. Someone\",pats him on the back.,pulls the sheets from the headboard thread pads upward.,watches someone for a long time.,leans against the command unit.,,gold0-reannot,unl,unl,unl,unl,n/a,\"Now, the balding man humps a woman from behind.\",Someone\nanetv_4kNx9rVwmAg,16722,\"They use steppers to jump up and down, and side to side. Then they\",\"run in place, hopping on and off the steppers.\",do back flips in the same crevasse.,lie back before taking off with the rope tied in the water.,clutch and scratch them and clap their hands.,climb on the ropes.,gold0-orig,pos,unl,unl,unl,unl,\"They use steppers to jump up and down, and side to side.\",Then they\nanetv_4kNx9rVwmAg,16723,\"Then they run in place, hopping on and off the steppers. They\",\"slow down, cooling off before clapping.\",scored sideways again after each other.,join the group to practice as they do.,angle towards the end of another line.,stop landing on the mat and then stops and walks towards the door.,gold0-orig,pos,unl,unl,unl,unl,\"Then they run in place, hopping on and off the steppers.\",They\nanetv_dGxJGvw_sUg,16814,Water sprinklers shoot up out of the ground. We,see men watching as a group of women dance.,shoot from the bottom.,see only a chainsaw attached to its back fall.,someone and the cops lower the rifle.,darts with a hose carrier billowing out.,gold0-orig,pos,unl,unl,unl,unl,Water sprinklers shoot up out of the ground.,We\nanetv_dGxJGvw_sUg,14975,Several women are dancing in sprinklers on a lawn. They,are then seen wearing cheerleader clothes as they do several dance moves.,run to make their point of ensues.,continue to break dance as they come to help them.,run into a net.,are filming them with their hands.,gold1-orig,pos,unl,unl,unl,unl,Several women are dancing in sprinklers on a lawn.,They\nanetv_dGxJGvw_sUg,16816,\"They are then shown on stage, dancing and fighting. They\",are advertised as being in a movie called cheer camp as they dance and fight throughout the video.,are then shown playing another instrument while they went from brown to and are playing the song.,are in several stages of events and they throw into an orchestra.,continue dancing around the floor dancing and applauds.,switch to two women in font to begin to twirling their nails at the master with the hammer strut.,gold1-orig,pos,unl,unl,unl,unl,\"They are then shown on stage, dancing and fighting.\",They\nanetv_dGxJGvw_sUg,16815,We see men watching as a group of women dance. They,\"are then shown on stage, dancing and fighting.\",stop laughing and react abruptly and change.,execute a tango nod and then dance away.,stop to kiss on the side.,hold their noses as their mouths opens.,gold1-reannot,pos,unl,pos,pos,pos,We see men watching as a group of women dance.,They\nanetv_Vtnn6yJqHqM,8957,A pair of hands are shown playing piano. The piano player,is shown playing with another person seated beside him.,plays alone with them as the man's voice speaks.,begins to walk away from the area.,is shown playing piano while playing on the piano.,is being interviewed by the people.,gold0-orig,pos,unl,unl,unl,pos,A pair of hands are shown playing piano.,The piano player\nanetv_Vtnn6yJqHqM,8958,The piano player is shown playing with another person seated beside him. The playing,is seen from a hand close up view again.,keeps playing and the camera focuses on the screen.,keeps looking for the source of the word.,\"begins to play and the winner up with one of the wishers players runs, but the host comforts him.\",plays the harmonica.,gold1-orig,pos,unl,unl,unl,unl,The piano player is shown playing with another person seated beside him.,The playing\nanetv_AS0hqTk_mIs,15668,\"As a timer runs, he solves the puzzle using only one hand. He\",jumps up in victory after only 17 seconds.,pauses and turns away.,sets one finger on the end and turns the key on.,attempts to solve the puzzle.,solves it another moment in slow motion.,gold1-orig,pos,unl,unl,pos,pos,\"As a timer runs, he solves the puzzle using only one hand.\",He\nanetv_AS0hqTk_mIs,15666,\"In 2009, a man is shown sitting at a table. He\",has two rubik's cubes in front of him.,walks into a room using different objects while the lights are shown on a shelf.,gets off the fast ground paper and spreads it again.,is showing how to install it as he opens it to comfort the machine.,puts lotion on his hands.,gold1-orig,pos,unl,unl,unl,pos,\"In 2009, a man is shown sitting at a table.\",He\nanetv_AS0hqTk_mIs,15667,\"He has two rubik's cubes in front of him. As a timer runs, he\",solves the puzzle using only one hand.,turns and continues his routine.,\"completes a land replay, which is puzzles with the goalie.\",hands the rubik back over to his opponent.,reaches out and shakes his hands.,gold0-orig,pos,unl,unl,unl,unl,He has two rubik's cubes in front of him.,\"As a timer runs, he\"\nanetv_N9xp9VbpklQ,4129,The boy picks up the croquet stick and makes his shot. The boy,smiles and heads towards the ball.,holds up the stick.,runs towards the ball.,stops and puts the ball in his palm.,tries to throw ball into the fire.,gold0-orig,pos,unl,unl,unl,unl,The boy picks up the croquet stick and makes his shot.,The boy\nanetv_N9xp9VbpklQ,2496,Woman is standing in front of the kid holding a pole. a crocket field,is in the middle of street in a city.,\"is holding an ax, with a green stick.\",very engaged in the game.,is shown on the street in the middle.,,gold0-orig,pos,unl,unl,pos,n/a,Woman is standing in front of the kid holding a pole.,a crocket field\nanetv_N9xp9VbpklQ,4128,A boy walks backwards on the lawn. The boy,picks up the croquet stick and makes his shot.,\"does a handstand on the skateboard, turns and flips back, crashes as far as someone can.\",runs toward two teens on the grass.,is turning around and flip several times.,,gold0-orig,pos,unl,pos,pos,n/a,A boy walks backwards on the lawn.,The boy\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11010,\"She walks up the steep bank. Later, she\",sits reading by a smoking campfire with her back leaning against a tree.,follows someone through traffic in his office.,climbs onto the roof of a lifeboat and looks over.,wheels someone into an empty road.,,gold0-orig,pos,unl,unl,unl,n/a,She walks up the steep bank.,\"Later, she\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11014,Someone has a blanket over her legs. She,looks up at him.,carries him into the bathroom.,looks up in surprise as it takes over.,comes over and suddenly bends down to pick it up.,,gold1-orig,pos,unl,unl,unl,n/a,Someone has a blanket over her legs.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10964,\"She ruffles his hair, and smiles at him. Someone\",\"nods and grins after her, as she walks away.\",\"marches bed, carrying another bucket.\",looks as she holds the baby in his arms.,\"has put a lantern in his hand, but he has dark framed eyes on his face.\",,gold0-orig,pos,unl,pos,pos,n/a,\"She ruffles his hair, and smiles at him.\",Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11009,Someone fetches water from the river. She,walks up the steep bank.,smile for the man in the bra.,grimaces as her mother writes a letter.,falls into the air.,climbs on the horse's saddle.,gold0-orig,pos,unl,unl,unl,pos,Someone fetches water from the river.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10967,Two villagers come out of an inn behind them. A little gate,leads into the churchyard.,\"burst from behind a cab, then smashes into the flat - topped brick wall.\",is drawn by the charge.,\"enters, grabs someone, then runs across the floor.\",is blown away and peeks around a corner.,gold0-orig,pos,unl,unl,unl,unl,Two villagers come out of an inn behind them.,A little gate\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10975,\"He gazes at the grave. Comforting him, someone\",rests her head on his shoulder.,pulls up the bridge to himself.,stares up at the indifferent lion.,\"sees a seal of nuts down to the peg, boy releases his hand's hair with a sneer.\",strides down the bridge towards a grove.,gold0-orig,pos,unl,unl,unl,pos,He gazes at the grave.,\"Comforting him, someone\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10995,The old woman is waiting for him. He,sees her looking at the locket around his neck.,and the local quiet a bit of laughter; the joke on the voice has heard and's stunned.,\"headquarters, someone leans off an old car in a large and basement hiding taking the surrounding space.\",he is in the living room and a small suburban is surrounded by the fountain of the cooking.,\"the apartment, someone bursts in and he closes the door.\",gold0-orig,pos,unl,unl,unl,unl,The old woman is waiting for him.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10982,Someone's joy is set. They,\"turned to find the old woman, close beside them.\",\"go through different doors, through sides.\",\"dance in the middle of the court, crashing into each other.\",are in a game playing with the trophy.,come to the back of the room and take off the beautiful bride dress.,gold0-orig,pos,unl,unl,unl,pos,Someone's joy is set.,They\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10966,\"They apparate in a quaint, snow covered village. Wearing winter clothes, they\",wander down a deserted street.,enter an abandoned car.,ride among the clips of the family outside the church.,pass under the branch and observe.,,gold0-orig,pos,unl,pos,pos,n/a,\"They apparate in a quaint, snow covered village.\",\"Wearing winter clothes, they\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11006,\"The snake is hit and falls down the stairs. Someone's wand, dropped in the struggle,\",is lying at the top of the stairs.,\"begins for the door, running down the hall.\",comes to the air.,strikes them down off the bed.,starts to reach its massive levers.,gold0-orig,pos,unl,unl,unl,unl,The snake is hit and falls down the stairs.,\"Someone's wand, dropped in the struggle,\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10980,\"Someone slows and stops, beside a burned out, roof - less house. He\",\"looks over the gate, at the overgrown garden.\",leaves the thief striding down the long driveway.,\"grabs his car free, kisses someone in the flatbed, then turns for his bus.\",\"pretends to himself from a dead humping gown, gets up and goes.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone slows and stops, beside a burned out, roof - less house.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11011,\"Later, she sits reading by a smoking campfire with her back leaning against a tree. Someone\",\"comes out of the tent, which is pitched behind her.\",watches her as she walks towards her apartment and chooses a cupcakes.,pulls out a phone in her backyard holding a small stuffed car.,walks in accompanied by april.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, she sits reading by a smoking campfire with her back leaning against a tree.\",Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10974,\"Someone wipes his nose, with his sleeve. He\",gazes at the grave.,looks at someone and his jaw set down.,bumps into his apartment.,swigs from the glasses.,removes the glasses from his room.,gold0-orig,pos,unl,unl,pos,pos,\"Someone wipes his nose, with his sleeve.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10985,As someone turns her attention to someone. Someone,holds up the match beside a framed photograph.,shoots some nearby grain with his bag.,takes the snitch and kisses someone's mouth.,hugs someone and his eyes step into the doorway.,\"watches, wide - eyed.\",gold1-orig,pos,unl,unl,unl,pos,As someone turns her attention to someone.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10999,\"She disturbs a swarm of buzzing flies. Upstairs, someone\",examines a photograph album on a dressing table.,leans a page close around her face putting her hands on her hips.,stands from a rooftop along a row of floating wood.,\"lies in someone's elevator, looking drawn.\",buys the last beat in a coffee lounge.,gold0-orig,pos,unl,unl,unl,unl,She disturbs a swarm of buzzing flies.,\"Upstairs, someone\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10979,\"She turns, and totters slowly away. They\",follow her up the street.,move around them and dance as he carves behind someone in the morning.,charge into the hall.,break into the upstairs.,run toward the window and join people.,gold0-orig,pos,unl,unl,unl,unl,\"She turns, and totters slowly away.\",They\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10993,\"It is a moving picture of a smirking someone. Upstairs, someone\",reaches a dingy bedroom.,trips in a huff.,is carrying the cake bottle.,talks with his rival friend.,,gold1-orig,pos,unl,unl,pos,n/a,It is a moving picture of a smirking someone.,\"Upstairs, someone\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10970,\"She wipes away more snow, and finds a name engraved underneath. He\",is standing at the far side of the graveyard.,wipes off the grin on the corner of her face.,hurries down where some bridesmaids enjoy.,pulls the gps from his deaf ear.,\"takes a finger, then turns to the viewer in his eye.\",gold0-orig,pos,unl,unl,unl,unl,\"She wipes away more snow, and finds a name engraved underneath.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10990,She picks up a book with a note attached to the cover. Someone,\"lifts the note, to read the title.\",picks up the diary and slides it toward someone.,\"drops an envelope inside the pizza box, and finds the card.\",hurls someone into the windscreen as someone climbs into the building and flings it through a window.,,gold0-orig,pos,unl,unl,unl,n/a,She picks up a book with a note attached to the cover.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11012,\"Someone comes out of the tent, which is pitched behind her. They\",are both wearing warm winter sweaters.,leap through a man's window.,grabs the ax and hits him again.,covers her head with one hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone comes out of the tent, which is pitched behind her.\",They\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10989,\"The tip of his wand, lights up. She\",picks up a book with a note attached to the cover.,massages sword down with his arm.,\"stands at her elbow, smiling quite enraptured.\",picks up a silver canister and takes out his lighter and shoots it.,frowns as he spots on the stairs.,gold1-orig,unl,unl,unl,unl,unl,\"The tip of his wand, lights up.\",She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11013,They are both wearing warm winter sweaters. Someone,has a blanket over her legs.,\", cadillac, and indian style, has already dealt someone and is listening to someone last closeup of someone.\",matches the bowlers in a showcase.,\"is in the stairs, holding someone out in his arms.\",shrugs at an overhead performer.,gold0-orig,pos,unl,unl,pos,pos,They are both wearing warm winter sweaters.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10978,\"She is wearing a knitted cape, with a hood. She\",\"turns, and totters slowly away.\",is going down in front of the camera.,removes the sleeve of the dryer and holds it against her temple.,is being drug on a large swing.,\"holds her hand, a gun back in her hand.\",gold1-orig,pos,unl,unl,unl,unl,\"She is wearing a knitted cape, with a hood.\",She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11004,He picks up a brick from the rubble. He,smashes the snake's head with it.,gets out and runs out of the back yard.,holds it open and sits down.,rolls it up to pick it up.,places more angels to the insides and rubs his eyes.,gold0-orig,pos,unl,unl,unl,unl,He picks up a brick from the rubble.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10977,Someone sees an old woman. She,\"is wearing a knitted cape, with a hood.\",makes a lining on the redhead's hat and excitedly over her shoulder.,\"looks down for an empty moment, then notices his forms on the table and begins in slow motion over her work.\",takes out her star - sized form.,sees someone while sitting sitting outside.,gold0-orig,pos,unl,unl,unl,pos,Someone sees an old woman.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10976,She spots a dark figure watching them from a short distance away. Someone,sees an old woman.,takes a dead look.,rises into the air.,\"strides next to the muddy and aides, as he trails the volunteers out to exhibit a masked suede necklace.\",wears a military belt.,gold1-orig,pos,unl,unl,unl,pos,She spots a dark figure watching them from a short distance away.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10969,She brushes snow from it with her gloved hand. She,\"wipes away more snow, and finds a name engraved underneath.\",\"come out over the harbor, around the room.\",does her hand brush it.,grabs a hose from her pocket.,lets go of the handle.,gold0-orig,pos,unl,unl,unl,unl,She brushes snow from it with her gloved hand.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10972,\"Taking out her wand, she draws a circle in the air. She\",produces a wreath of white roses.,\"takes it out of the hole, tosses it over her shoulders.\",points her wand to her right hand.,looks at the four mice.,,gold0-orig,pos,unl,pos,pos,n/a,\"Taking out her wand, she draws a circle in the air.\",She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10988,\"Someone gazes at him, then picks up the candle. She\",eases her way past him.,hides a cigarette in his hand.,awkwardly attached to her train.,works on the panel in the hallway.,takes a drag from her cigarette and slowly turns indoors.,gold1-orig,pos,unl,unl,unl,pos,\"Someone gazes at him, then picks up the candle.\",She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11002,The snake hurls itself at someone. The snake,wraps itself around someone.,spins round the robot then stops.,appears slain and releases someone!,closes its mouth and scrambles back.,slithers from the right of him.,gold1-orig,pos,unl,unl,unl,pos,The snake hurls itself at someone.,The snake\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11008,A tree - lined river flows through a countryside white with frost. Someone,fetches water from the river.,stops to look at the watch.,peaks out of the sky.,stands at the end of a cliff.,casually takes the step outside.,gold0-orig,pos,unl,unl,unl,pos,A tree - lined river flows through a countryside white with frost.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10996,He sees her looking at the locket around his neck. She,\"indicates something, across the room.\",is holding side to side and runs on the other side.,\"has put on the scarf, but she goes back to the kids.\",\"pulls out sign boxes shops other signs hanging from, hung from rules.\",\"slaps his rear again, then claps.\",gold0-orig,pos,unl,unl,unl,pos,He sees her looking at the locket around his neck.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11007,\"Someone's wand, dropped in the struggle, is lying at the top of the stairs. Someone\",reaches out and grabs it.,comes slowly along the stoop.,sags with clothes everywhere lies chained on a couch.,looks up at a small screen.,slides out of view.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's wand, dropped in the struggle, is lying at the top of the stairs.\",Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10971,He is standing at the far side of the graveyard. He,\"looks down at a plain, upright gravestone.\",\"are floating on the same competitors of the race shown sporting some rocks, by yellow supports.\",looks around at him.,is across the street.,stares at the intruder.,gold1-orig,pos,unl,unl,unl,unl,He is standing at the far side of the graveyard.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10991,\"Someone lifts the note, to read the title. She\",turns the book over.,yanks his hand out from under someone.,takes the photo of the people.,\"pauses, brushing the ball away.\",\"runs, taking another picture of someone.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone lifts the note, to read the title.\",She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10968,Someone stops at a grave marked with a horizontal slab. She,brushes snow from it with her gloved hand.,\"is flying across the stage, remain still.\",looks at the open laptop of military photos.,peers it through a gate on the stairway.,looks up at people on the bridge stones.,gold0-reannot,pos,unl,unl,unl,pos,Someone stops at a grave marked with a horizontal slab.,She\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10986,Someone holds up the match beside a framed photograph. It,\"'s of the young thief, who stole someone's elder wand.\",wrenches his cue and lets it drop from someone's hand.,leads the central someone's crowds and street to an office.,pans towards the slot where the door's been piled.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone holds up the match beside a framed photograph.,It\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10984,He captures sight of something over her shoulder. As someone,turns her attention to someone.,stares up at her.,glances up to the toyshop to students.,folds the box open.,\"passes the doorway, her gaze loads him more sleepy.\",gold0-reannot,pos,unl,unl,unl,unl,He captures sight of something over her shoulder.,As someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10997,\"She indicates something, across the room. Downstairs, someone\",walks into another dark room.,turns haughtily at a tv.,sits by the back.,regards someone who shifts in same sleep.,,gold0-reannot,pos,unl,unl,unl,n/a,\"She indicates something, across the room.\",\"Downstairs, someone\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11003,The snake wraps itself around someone. He,picks up a brick from the rubble.,leans close to the side and releases the falcon.,\"runs off, as four guards reach him.\",pretends to punch him.,knocks someone's gun.,gold1-reannot,pos,unl,unl,unl,unl,The snake wraps itself around someone.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10994,\"Upstairs, someone reaches a dingy bedroom. The old woman\",is waiting for him.,leans off in the corridor.,lays an envelope across her chest.,stomps over one of the sound bubbles on the pillow.,lies down with her eyes wet.,gold1-reannot,pos,unl,unl,unl,pos,\"Upstairs, someone reaches a dingy bedroom.\",The old woman\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10983,The wizened old woman studies someone's face. He,captures sight of something over her shoulder.,trails off his share.,and someone give a thumbs for.,\"shrugs, then hides away from someone.\",,gold1-reannot,pos,unl,unl,unl,n/a,The wizened old woman studies someone's face.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,11001,\"Downstairs, someone trips and falls. The snake\",hurls itself at someone.,spreads its wings as he arrives over the slanted mess.,raises as his hand springs from attached to a chain.,slams against the grave.,flies away as the attacks.,gold1-reannot,pos,unl,unl,unl,unl,\"Downstairs, someone trips and falls.\",The snake\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10981,\"He looks over the gate, at the overgrown garden. He\",recalls someone's attack.,watches helplessly as someone drives on.,leaves someone keeping pace with returning pedestrians.,stoops on his way next to a metallic - looking woman.,,gold1-reannot,pos,unl,unl,unl,n/a,\"He looks over the gate, at the overgrown garden.\",He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94219,10973,She produces a wreath of white roses. Someone,\"wipes his nose, with his sleeve.\",rubs the cloth together.,has been blowing around her for that matter.,obliges and eyes him.,pushes in spanish to her.,gold1-reannot,pos,unl,unl,unl,unl,She produces a wreath of white roses.,Someone\nlsmdc1011_The_Help-78246,4339,Someone picks up the cord that someone is trailing behind her. Someone,watches tv as she has her lunch.,\"walks joyfully to someone's face, smiles at someone, and grabs his friend's arm.\",tries to get in the town door but comes out.,breaks into a run.,,gold0-orig,pos,unl,unl,pos,n/a,Someone picks up the cord that someone is trailing behind her.,Someone\nlsmdc1011_The_Help-78246,4338,\"Someone picks up a tray and a tv set, which she carries off towards the lounge. Someone\",picks up the cord that someone is trailing behind her.,\"stirs, bending hungrily towards the door.\",holds his hand out to someone and turns to someone.,\"grabs her arm, followed by her husband.\",\"leans over and kisses him, then shifts his shy gaze.\",gold0-orig,pos,pos,pos,pos,pos,\"Someone picks up a tray and a tv set, which she carries off towards the lounge.\",Someone\nanetv_HHG1kCydLYU,2220,A small group of people are seen standing around a kitchen eating food. They,speak to one another as a man cooks for them in front and mixes ingredients together.,continue to cook and looks into one another with a spoon.,mix ingredients in a bowl and then put on top.,put cookies in a pan and lead into a man holding a sandwich.,pour the ingredients into a bowl and measure all the food into a plate.,gold0-orig,pos,unl,unl,unl,pos,A small group of people are seen standing around a kitchen eating food.,They\nanetv_HHG1kCydLYU,2221,They speak to one another as a man cooks for them in front and mixes ingredients together. he,continues cooking and speaking to the women and showing off his work in the end.,speaks to the camera while riding a dish at the food while still speaking to the camera.,mixes more ingredients and lays them on the water as well as showing how to make a mug.,mixes ingredients together into a pan and leafs them together.,finishes the glass and pours the cilantro in the camera.,gold0-reannot,pos,unl,unl,unl,unl,They speak to one another as a man cooks for them in front and mixes ingredients together.,he\nanetv_bPw2rvCjXUE,2478,\"After, they continue competing, then the boy wearing purple t - shirt fold the hand of his rival. After, the\",continue performing arm wrestling and then free again the hands.,men demonstrate a dry process to clean it.,boy serves the ball on the ground and misses it.,same man shoots the ball while neither takes hold of it.,\"boy plays the boy, continues playing the guitar and beam the wooden stick.\",gold0-orig,pos,unl,unl,unl,unl,\"After, they continue competing, then the boy wearing purple t - shirt fold the hand of his rival.\",\"After, the\"\nanetv_bPw2rvCjXUE,2477,\"Two boys perform arm wrestling while people are watching, suddenly the boys free their hands. After, they continue competing, then the boy wearing purple t - shirt\",fold the hand of his rival.,arrives and continue to do the flips and throws it.,hold the yellow shorts and make a series again to hug.,is helping apply to the other man.,splits in front of wall cones.,gold0-orig,pos,unl,unl,unl,unl,\"Two boys perform arm wrestling while people are watching, suddenly the boys free their hands.\",\"After, they continue competing, then the boy wearing purple t - shirt\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5907,Someone is now behind his desk. He,\"spreads the newspaper out in front of him, muttering as he does so.\",holds someone cover and certificate.,adjusts his hat off his shoulder but sits up.,makes 0 message in his drawer.,rests his hands on the steering wheel.,gold0-orig,pos,unl,unl,unl,unl,Someone is now behind his desk.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5908,\"He spreads the newspaper out in front of him, muttering as he does so. He\",\"sees the envelope, looks inside at the money.\",walks off the front steps and walks out of the living room area.,\"calls out, as people stroll through the back room to look around, reads, reaction cocktails.\",\"can hover above the surf, and his head hangs over the open gate.\",walks a few steps outside the house where posters of the man shine tea.,gold1-orig,pos,unl,unl,unl,unl,\"He spreads the newspaper out in front of him, muttering as he does so.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5909,\"He sees the envelope, looks inside at the money. Someone\",\"opens the door just a little, and peers through into the bank.\",\"shakes someone's hand, sits down on the back area of a bank.\",is about to shave it.,shuts the door and sees a note written in.,\"just stares out at him, leaning against a pen seat.\",gold1-orig,pos,unl,unl,unl,unl,\"He sees the envelope, looks inside at the money.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5911,\"He starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor. Someone\",looks around for the money envelope.,steals sight from her.,opens a second door.,grabs someone's hand and smiles.,,gold0-orig,pos,unl,pos,pos,n/a,\"He starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5904,\"The teller opens it, starts to punch it with rubber stamps. Someone\",searches through every pocket he has.,erupts into bomb that is inside the wall.,touches his cheek forearm on his wrist but lifts the weapon.,\"starts packing the sacks over the bag, then searches for a bottle of the food.\",\"grabs the grate using it, and puts her back down.\",gold0-orig,pos,unl,unl,unl,unl,\"The teller opens it, starts to punch it with rubber stamps.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5910,\"Someone opens the door just a little, and peers through into the bank. He\",\"starts thumping his pockets, with increasing panic, and looks in the waste paper basket on the floor.\",then grabs someone's coat and slides it on someone.,lifts the cover and spots his reflection in the mirror.,closes his eyes as the two pull way past him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone opens the door just a little, and peers through into the bank.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5903,Someone hands the bank book over. The teller,\"opens it, starts to punch it with rubber stamps.\",peers toward his wounded colleague.,brings a sculpting finger into the drink.,woman searches a bag.,\"looks at someone, who shrugs and shakes his head.\",gold0-orig,pos,unl,unl,unl,unl,Someone hands the bank book over.,The teller\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5914,\"He is deep in thought, with a crafty expression on his face. He\",sees someone standing there.,stares out of the window as the rain spills down on his shoulders.,sinks to his father's bedside.,is so angry that he is not.,keeps his gaze fixed on someone.,gold0-orig,pos,unl,unl,unl,pos,\"He is deep in thought, with a crafty expression on his face.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5905,\"Someone searches through every pocket he has. The teller, knowing the old man's vagaries,\",points to one of the numerous string tied around his fingers.,\"has a revolver in hand, then an older man has a finger on her arm.\",drops the robe onto his bed.,\"awakes into place, and loses the light and puts it on.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone searches through every pocket he has.,\"The teller, knowing the old man's vagaries,\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5913,\"He looks puzzled, thinks hard, then a look of concern creeps into his eyes. He finally\",rushes through the door and out into the street.,slips off the blindfold and fall a moment.,\"stuns someone, which he made sure to open.\",takes his stick out and moves around them.,\"administers two punches, then knocks on the throttle.\",gold0-orig,pos,unl,unl,pos,pos,\"He looks puzzled, thinks hard, then a look of concern creeps into his eyes.\",He finally\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5916,\"Someone picks up the phone and speaks distractedly, without knowing what he is saying. He\",\"hangs up agitatedly, muttering to himself as he goes into his own office.\",glances at someone through someone's strange hands.,\"wanders on, keeping his friends at the door.\",grabs a bottle of whiskey and pours it down on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone picks up the phone and speaks distractedly, without knowing what he is saying.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5917,\"He hangs up agitatedly, muttering to himself as he goes into his own office. People\",\"look after him, dumbfounded.\",lead the way to the camera.,is asleep in bed.,\"poke out of the can, weeping from the bedroom, almost on the floor.\",\"open the mailbox, counting the money through half one after the other.\",gold0-orig,pos,unl,unl,unl,unl,\"He hangs up agitatedly, muttering to himself as he goes into his own office.\",People\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5918,\"People look after him, dumbfounded. Someone\",\"has just finished writing something, and is slipping the paper into an envelope.\",lets someone push his hands.,lowers himself in front of someone.,attempts a small look.,,gold1-orig,pos,unl,pos,pos,n/a,\"People look after him, dumbfounded.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5902,Someone smiles triumphantly and goes toward deposit window with his deposit slip. Someone,hands the bank book over.,\"sits in the middle of the living room, occasionally listening to music.\",\"holds the poker undamaged, wide - eyed.\",takes a seat among the others.,returns the song to the clock.,gold0-orig,pos,unl,unl,unl,unl,Someone smiles triumphantly and goes toward deposit window with his deposit slip.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5906,\"The teller, knowing the old man's vagaries, points to one of the numerous string tied around his fingers. Someone\",is now behind his desk.,offers some bubbles so he rushes to the end of the table.,stands at the top of a staircase and tries to walk.,slithers down into the sliding drop.,remembers a man and a dog being dragged into the water.,gold1-reannot,pos,unl,unl,unl,unl,\"The teller, knowing the old man's vagaries, points to one of the numerous string tied around his fingers.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5915,He sees someone standing there. He,\"hears a noise, and sees someone entering the office.\",places a note in the crash.,speaks in the clips.,reward posters for someone.,leans heavily and gives him a big smile to crack his anguished face.,gold1-reannot,pos,unl,unl,unl,unl,He sees someone standing there.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5912,\"Someone looks around for the money envelope. He looks puzzled, thinks hard, then a look of concern\",creeps into his eyes.,appears to be extinguishes.,\", then bounces off his chair.\",is directed over someone.,comes to his brow.,gold1-reannot,pos,unl,unl,pos,pos,Someone looks around for the money envelope.,\"He looks puzzled, thinks hard, then a look of concern\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54824,5900,\"Someone folds someone's paper over the envelope containing his money, and flings his final taunt at the old man. In a cold rage, someone\",grabs his paper and wheels off toward his office.,sits up as a cleaning product is being driven into it.,\"is patiently in a leather armchair, so overhead it is completely dark.\",strides away from the case revealing tracker hand which he drops.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone folds someone's paper over the envelope containing his money, and flings his final taunt at the old man.\",\"In a cold rage, someone\"\nanetv_BgAiDS4fF_I,6504,He lays down on his back and does crunches. He,stands back up and continues talking.,jumps off his bar and does crunches.,ends the footage of the crowd and squats.,\"jumps off the bars and lands back on his chest, then lands and lands the mat.\",turns it around quickly.,gold1-orig,pos,unl,unl,unl,unl,He lays down on his back and does crunches.,He\nanetv_BgAiDS4fF_I,14141,\"First he shows viewers how to properly do a crunch and his feet are apart, arms on his chest, and each time he goes up the elbows touch his legs. When he's done, he\",stands up and tells viewers more helpful information about how to have a good workout.,begins punching the punching bag.,spins himself round and puts the stage he sort of what is happening in a gym where he is all alone again.,\"puts his legs, scrubbing his hands, then picks his up and grabs a cord to be trying to put it on.\",sections her pieces and starts working out with the machine as well moves the camera off the cable.,gold0-orig,pos,unl,unl,unl,unl,\"First he shows viewers how to properly do a crunch and his feet are apart, arms on his chest, and each time he goes up the elbows touch his legs.\",\"When he's done, he\"\nanetv_BgAiDS4fF_I,6503,A man is standing in a room talking. He,lays down on his back and does crunches.,is cleaning shoes off a shot.,looks in a fire pit with some sticks.,picks up a rubik's cube and gives it a picture.,picks up a bag and adjusts it for storage.,gold0-reannot,pos,unl,unl,unl,pos,A man is standing in a room talking.,He\nlsmdc1041_This_is_40-9041,15627,\"Now, they wear robes. They\",scarf down the cookies.,hold outfits on the dance floor.,play smoke on a line.,keep playing shuffle beside the ball.,relax into each embrace on the lips.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, they wear robes.\",They\nanetv_sS-KyhAzeUY,10828,Then many people start to wash their hands using soap or cleaning them using hand sanitizer. There's music playing through the video and people,are shown drying their hands and washing them.,are standing in a room in the extreme watching.,are picked up and prepared to eat the boys cream on their faces.,are in the beach watching them play.,are doing impressive things in their boards.,gold0-orig,pos,unl,unl,unl,pos,Then many people start to wash their hands using soap or cleaning them using hand sanitizer.,There's music playing through the video and people\nanetv_sS-KyhAzeUY,10827,This video shows people how important it is to wash your hands because it keeps down many infections and germs. Then many people,start to wash their hands using soap or cleaning them using hand sanitizer.,circle the sides then give paper to the crowd to make certain they are made for the furniture.,are basically doing tricks off of a beach.,are battling by calm waters.,are swimming and swimming as they both try one more time.,gold0-orig,pos,unl,unl,unl,unl,This video shows people how important it is to wash your hands because it keeps down many infections and germs.,Then many people\nanetv_H6hb3SIqdL4,1907,A man in a striped shirt prepares to throw dart at a dart board. The man,throws three darts at the dartboard.,hit the pins and the man in the red jacket stands in mid - air foosball.,throws after him again.,runs his dart across the area that winds up a hole in the wall.,throws a second shot of the throw.,gold0-reannot,pos,unl,unl,unl,pos,A man in a striped shirt prepares to throw dart at a dart board.,The man\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9078,Someone's face grows pale. He,collapses in slow motion.,swigs from his gun.,walks around the room.,tucks the letters to his brother.,stands up a little.,gold0-orig,pos,unl,unl,unl,pos,Someone's face grows pale.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9074,\"The frames come clattering down in a shower of glass, paper, and splintered wood. People\",\"fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go.\",hide behind the pile of old age - clad children.,hide between the desk drawers and surreptitiously pulling out the grocery bag from under the table.,emerges from the bathroom into a green cloth.,\"scurry around the bed, shaking it naked.\",gold0-orig,pos,unl,unl,unl,unl,\"The frames come clattering down in a shower of glass, paper, and splintered wood.\",People\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9060,Someone invades someone's memories. He,sees someone humiliated by his father.,works her way down to the tearful forest.,leans into a rescue car.,rests a hand on someone's shoulder.,turns to the two black sisters tossing other girls around.,gold0-orig,pos,unl,unl,pos,pos,Someone invades someone's memories.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9068,\"They zoom backwards and forwards, flinging exam papers and whiz bangs into the air. Someone\",gets a firework in his face.,kicks out a writhing twin beneath the floor and strikes a button.,has a high rear - end pistol.,\"contemplates them on all fours, nails dunes and swirling.\",slaps the ball upward and heads down 9 ramps.,gold0-orig,pos,unl,unl,unl,unl,\"They zoom backwards and forwards, flinging exam papers and whiz bangs into the air.\",Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9073,The dragon bursts out after her and explodes destroying the hundreds of decrees that someone has nailed to the wall. The frames,\"come clattering down in a shower of glass, paper, and splintered wood.\",\"begin to move, fold, amazingly, that they are quite visible.\",fall to the ground as tattooed forms are sucked down lines of flames.,are ripped away from one of the pinning shards.,,gold0-orig,pos,unl,unl,pos,n/a,The dragon bursts out after her and explodes destroying the hundreds of decrees that someone has nailed to the wall.,The frames\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9062,\"His face twisted with anger, someone grabs someone viciously and peers into his face. He\",hears crying in the corridor and finds the twins comforting a small boy.,\"opens a window, spies someone with his shield, and opens the curtains.\",jumps off the plane and he flies into the funnel.,finds someone in his own eye.,,gold0-orig,unl,unl,unl,unl,n/a,\"His face twisted with anger, someone grabs someone viciously and peers into his face.\",He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9076,\"Delighted students rush out into the courtyard, applauding the magnificent display. Someone\",is among them looking rather confused.,\"winks at someone, then cheerfully to someone.\",poses beside the suited people as they move on.,turns round and peers towards the classroom.,,gold0-orig,pos,unl,pos,pos,n/a,\"Delighted students rush out into the courtyard, applauding the magnificent display.\",Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9065,Someone strides purposefully down the middle of the hall towards the great wooden doors. Everyone,stops writing and turns to look.,strolls through the counter as someone stands by her window.,\"runs the hall through it, followed by someone.\",looks in someone's direction.,hurry to the dining room and looks around.,gold0-orig,pos,unl,unl,unl,pos,Someone strides purposefully down the middle of the hall towards the great wooden doors.,Everyone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9070,\"His brother flings a large firework into the air. With a flash, the head of a flaming, fiery dragon\",appears and heads for someone.,falls across the carriage of the flashing people.,crashes through around the station.,fills an overpass lit arena cloud.,flies harmlessly at the zebra.,gold1-orig,pos,unl,unl,unl,pos,His brother flings a large firework into the air.,\"With a flash, the head of a flaming, fiery dragon\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9075,\"People fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go. Delighted students\",\"rush out into the courtyard, applauding the magnificent display.\",wrap their robes and pour on over someone's lifeless body.,have antique costumes onto their hands.,take the narrow steps to someone.,stops blown by the sight of a massive golf dog.,gold0-orig,pos,unl,unl,unl,unl,\"People fly from the building and swoop out over the battlements on their broomsticks, flinging fireworks as they go.\",Delighted students\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9064,Several students turn to look at the door behind them. Someone,strides purposefully down the middle of the hall towards the great wooden doors.,\"comes past him and shuts the paper again, holding his coffee.\",is striding across the steps of the pool.,\"moves away clutching someone, who does n't catch it.\",\"skips along and carefully tosses the golden ball paper against someone, who walks out of the room.\",gold1-orig,pos,unl,unl,unl,pos,Several students turn to look at the door behind them.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9067,\"Suddenly, people hurtle over her head on broomsticks. They\",\"zoom backwards and forwards, flinging exam papers and whiz bangs into the air.\",stand looking at the piano.,avoid an coastline in the sky.,surf through the waters at its bottom.,,gold1-orig,pos,unl,unl,unl,n/a,\"Suddenly, people hurtle over her head on broomsticks.\",They\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9071,\"With a flash, the head of a flaming, fiery dragon appears and heads for someone. It\",'s mouth full of white hot teeth.,looms beneath an island.,soars through the titanic.,throws a strike and runs back.,is grabbed from the one standing in front of him.,gold1-orig,pos,unl,unl,unl,pos,\"With a flash, the head of a flaming, fiery dragon appears and heads for someone.\",It\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9066,\"Someone looks anxiously around the empty hallway. Suddenly, people\",hurtle over her head on broomsticks.,enters a suburban town with wennerstrom.,stare at someone!,fall crouched down and swerve visibly before someone.,are entranced by the sound of her.,gold1-reannot,pos,unl,unl,unl,unl,Someone looks anxiously around the empty hallway.,\"Suddenly, people\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9063,She stands on the stage in front of a huge swinging pendulum. Several students,turn to look at the door behind them.,are boiled in flame.,\"leap from the stage, between her legs onto the gate.\",bring up their white uniforms.,ripple as the women march from the dance floor side to side.,gold0-reannot,pos,unl,unl,unl,pos,She stands on the stage in front of a huge swinging pendulum.,Several students\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9069,One of the twins gives a signal. His brother,flings a large firework into the air.,closes the cordless phone.,swoops up in the air.,ignores him and gestures.,turns away from her and walks over the crowd.,gold0-reannot,pos,unl,unl,pos,pos,One of the twins gives a signal.,His brother\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9061,\"He sees someone humiliated by his father. His face twisted with anger, someone\",grabs someone viciously and peers into his face.,turns away and looks up fondly at him.,leans over the couch.,fights to suppress the laughter.,,gold0-reannot,pos,unl,unl,unl,n/a,He sees someone humiliated by his father.,\"His face twisted with anger, someone\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9077,Someone is among them looking rather confused. A huge fiery letter w,appears in the sky.,appears at the end of a sleeping field.,is across the pen.,appears on the screen as a logo of a sickly color.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone is among them looking rather confused.,A huge fiery letter w\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95165,9072,It's mouth full of white hot teeth. She,races for the door.,opens the faucet and hands it over.,looks at his pursed lips.,is scrubbing an ironing board on the ground.,plays with her ears.,gold0-reannot,pos,unl,pos,pos,pos,It's mouth full of white hot teeth.,She\nlsmdc3003_40_YEAR_OLD_VIRGIN-1201,15869,Now at Smart Tech he stands on the sales floor. Someone,approaches with her arms folded.,leans beside a cupboard man.,sits at the dressing table.,g - man squats down to picture o. j.'s head straddling a shiny old thick leg.,walks down the motel aisles.,gold0-orig,pos,unl,unl,unl,unl,Now at Smart Tech he stands on the sales floor.,Someone\nanetv_RO5WKh6dViA,6093,The child gets to the other side bows and runs back to the monkey bars jumping and laughing. The child,jumps around happily and falls down but get right back up.,\"is seen swinging around the swing, back and back hitting the pinata.\",walks away and climbs over the monkey bars.,takes various attempts and continues jumping over and over while hopping over the bar.,,gold0-orig,pos,unl,pos,pos,n/a,The child gets to the other side bows and runs back to the monkey bars jumping and laughing.,The child\nanetv_RO5WKh6dViA,6092,A child swings across the monkey bars. The child,gets to the other side bows and runs back to the monkey bars jumping and laughing.,does a belly dance routine.,swings at the pinata.,swings forward near the child and turns and peers over the monkey bars.,stops bending as she tries to slide her feet away and back again.,gold1-orig,pos,unl,unl,pos,pos,A child swings across the monkey bars.,The child\nanetv_RO5WKh6dViA,6091,A group of children play on playground equipment watched by parents. A child,swings across the monkey bars.,\"sits beside a boy, hiding behind his boat.\",walks into frame and demonstrates how to swing.,\"stands in front of a tree, talking to the camera.\",,gold1-orig,pos,unl,pos,pos,n/a,A group of children play on playground equipment watched by parents.,A child\nanetv_BwR1DPCVsP8,9992,A group is gathered in a basketball gym. They,take turns doing layups with the ball.,are engaged in a game of squash.,start doing somersaults in a gymnasium.,begin playing fetch to the coach.,engage in a game of volleyball.,gold1-orig,pos,unl,unl,unl,pos,A group is gathered in a basketball gym.,They\nanetv_BwR1DPCVsP8,5446,They are playing a game of basketball. We,see them make a multitude of shots in slow motion.,are jumping up and down.,are giving each other several hugs.,are playing a game of cricket.,watch two teams and two teams of cheerleaders playing.,gold0-orig,pos,unl,unl,unl,pos,They are playing a game of basketball.,We\nanetv_BwR1DPCVsP8,5445,A group of boys are on an indoor court. They,are playing a game of basketball.,are in a competition to hit a ball.,are engaged in a game of water polo.,are engaged in a game of volleyball.,are throwing the ball back and forth towards the net.,gold0-orig,pos,unl,unl,pos,pos,A group of boys are on an indoor court.,They\nanetv_BwR1DPCVsP8,5447,We see them make a multitude of shots in slow motion. They,give instructions on how to play the game as they go.,\"teams playing in a soccer game, while the players run toward each other.\",corners indoors action stationary admiringly.,shoot underwater as the people walk around the field and spin until we see a title screen.,see the twelve a field in trees while a bathroom is turned on.,gold0-reannot,pos,unl,unl,unl,unl,We see them make a multitude of shots in slow motion.,They\nanetv_BwR1DPCVsP8,9993,They take turns doing layups with the ball. They,\"run in slow motion, jumping and putting the ball in the basket.\",take cover behind the woman watching.,hit the balls as they hit the ball around.,flip in the air and tumble into a cab.,are looking down at the volleyball.,gold0-reannot,pos,unl,unl,unl,unl,They take turns doing layups with the ball.,They\nanetv_QeL3ScQVelo,15696,The man holds a fish and put it on the pan. the womans erve salad on white plates and the man,put the fish on top and pour a dressing on top.,put the lock on plate.,don the blue coat and smoothen the dog with his hand.,is smacking the ice behind it.,stir the eggs in the pan.,gold0-orig,pos,unl,unl,unl,pos,The man holds a fish and put it on the pan.,the womans erve salad on white plates and the man\nanetv_QeL3ScQVelo,16731,A cookbook is shown followed by a man cooking food in a pan. He then,puts the food on a plate with other ingredients and presents it to the camera while still speaking to the host.,places a tent on top of the fridge and pans around bowls and bread.,pours a lid into a bowl and proceeds to throw it at the plate and continue to walk around.,mixes ingredients into a bowl on a bar and stir it with vanilla.,puts the food in a pan and fried on the stove.,gold0-orig,pos,unl,unl,unl,pos,A cookbook is shown followed by a man cooking food in a pan.,He then\nanetv_QeL3ScQVelo,15695,Woman is talking to the camera in news standing next to a chef. the man,holds a fish and put it on the pan.,dries them with a towel.,raises her hand to congratulate him and talks to them.,gets up and walks out in the office lobby.,,gold0-orig,pos,unl,unl,unl,n/a,Woman is talking to the camera in news standing next to a chef.,the man\nanetv_QeL3ScQVelo,16730,A woman is seen hosting a news segment with a chef standing next to her. A cookbook,is shown followed by a man cooking food in a pan.,is seen laid out by an intro and leads into her giving instructions on how to move a bow.,leads into the girl of knife holding a plate and waving to the camera.,is shown on a field that leads into several clips of people riding around a beach near a river on a trail.,is taken and then is shown in front of a group of people.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen hosting a news segment with a chef standing next to her.,A cookbook\nanetv_QeL3ScQVelo,15697,The womans erve salad on white plates and the man put the fish on top and pour a dressing on top. the man,shows the fish on the pan and keeps talking to the woman.,shows how to braids and sharpen a box with equipment.,folds the egg in the bread and puts graham dough onto a tray.,pours some red hot coffee and puts sink in the scarf.,spreads ice cream over their hands.,gold0-reannot,pos,unl,unl,unl,unl,The womans erve salad on white plates and the man put the fish on top and pour a dressing on top.,the man\nanetv_Sx5MlpX6NIY,3860,A man in a hat is holding a camera in front of the band. They,turn to the side and begin marching off.,put the ornaments on the christmas tree.,\"and playing a game of tug of war, the crowd cheers and the dog claps as it finishes.\",is kneeling on his knees dancing when there's a boy in a blue shirt and wearing green outfit perform on stage.,make a jump into the pit.,gold0-orig,pos,unl,unl,unl,unl,A man in a hat is holding a camera in front of the band.,They\nanetv_Sx5MlpX6NIY,7558,A band is standing together in an outside arena. A woman,drinks from a cup while they prepare to play.,is holding a baton demurely as she talks to her wrestlers.,is standing in an indoor court holding bagpipes.,is crossing volleyball on a stage back and forth.,is sitting on a table with beach tennis.,gold0-orig,pos,unl,unl,unl,unl,A band is standing together in an outside arena.,A woman\nanetv_Sx5MlpX6NIY,3859,A marching band is standing on a track playing. A man in a hat,is holding a camera in front of the band.,talks to the camera while playing the guitar.,is talking to a camera.,is sitting on cushions on his bed.,begins playing the drums.,gold0-orig,pos,unl,unl,unl,pos,A marching band is standing on a track playing.,A man in a hat\nanetv_Sx5MlpX6NIY,7559,A woman drinks from a cup while they prepare to play. The group,starts marching and playing instruments and drums.,changes to paddle alone and for awhile.,strolls into the store.,enters together on the stage carrying a kneeling drink.,continues dancing around a room with one jumping and talk in front.,gold0-reannot,pos,unl,unl,unl,unl,A woman drinks from a cup while they prepare to play.,The group\nlsmdc3063_SOUL_SURFER-31110,17330,They drag someone across the sand. He,puts a leash around someone's wound.,picks at her rear truck and goes back to the track.,\"strides over to the mother, who lies on a boulder at a corridor.\",watches a young man climb a ladder and escape onto the eagle.,spins all on the field while the camera watches them from the background.,gold1-orig,pos,unl,unl,unl,pos,They drag someone across the sand.,He\nlsmdc3063_SOUL_SURFER-31110,17329,He watches the doctors step out. They,drag someone across the sand.,\"withdraws her hand, and gets one's handed.\",clutter his dash and try to light up the panel into the parts.,creep their own gun past someone's mother.,stand on a doorway.,gold1-orig,pos,unl,unl,unl,pos,He watches the doctors step out.,They\nlsmdc3014_CAPTAIN_AMERICA-5470,13131,\"Shielding his eyes with one hand, someone gazes at the pod as it dims, then goes dark. People\",crowd against the windows of the observation booth.,sweep the pendant necklace.,helps someone up the steps to the cooper.,\"peers down from it, lowers a microphone and climbs back into the pilot seat.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Shielding his eyes with one hand, someone gazes at the pod as it dims, then goes dark.\",People\nlsmdc3014_CAPTAIN_AMERICA-5470,13132,People crowd against the windows of the observation booth. Someone,lowers his protective glasses.,stands clad in parody - like suit.,wields a spear with someone.,\"rushes to someone, leading the president.\",,gold1-reannot,pos,unl,unl,pos,n/a,People crowd against the windows of the observation booth.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5470,13133,Someone lowers his protective glasses. Someone,steps up and helps his groggy subject out of the apparatus.,watches with the illuminated sign of his new associates.,peeks at the ceiling.,looks at the brunette then pours them a drink.,stops the van and points to his jacket.,gold1-reannot,pos,unl,pos,pos,pos,Someone lowers his protective glasses.,Someone\nanetv_1jX8p54Dfjs,15125,A woman is seated on a couch in a living room. She,is holding a cat in her lap.,is playing a violin against a wall.,talks with the camera and gets back on the couch.,is playing the accordion on the floor.,is playing an accordion on the table.,gold0-orig,pos,unl,unl,unl,unl,A woman is seated on a couch in a living room.,She\nanetv_1jX8p54Dfjs,11758,A woman sits with her cat and cuts its nails. She shows the proper way to do this and the cat,is pretty calm throughout.,cuts to fit man wearing white while cat.,cuts to her eye cream.,getting painted with the paw in yellow frosting.,shakes her head off.,gold0-orig,pos,unl,unl,unl,pos,A woman sits with her cat and cuts its nails.,She shows the proper way to do this and the cat\nanetv_1jX8p54Dfjs,15126,She is holding a cat in her lap. She,trims the nails on each toe nail.,shakes the cat's paw and rolls.,continues clipping her nails with yarn.,\"walks away a bit, and then studies the cat.\",washes her ears and brushes their teeth.,gold1-reannot,pos,unl,unl,unl,unl,She is holding a cat in her lap.,She\nlsmdc1026_Legion-5769,12184,\"Smiling incredulously, someone wraps the bloody child in a towel and offers it to someone. A tear\",rolls down someone's cheek.,spills down her cheek.,lands on someone's cheek then shuts him off.,drops down someone's cheek and hurries out quickly.,rolls down his cheeks.,gold0-orig,pos,unl,unl,unl,pos,\"Smiling incredulously, someone wraps the bloody child in a towel and offers it to someone.\",A tear\nlsmdc1026_Legion-5769,12186,Someone faces away from the child. Someone,\"carries the baby over to someone, who stares at it, frowning.\",hurries up some stairs and finds only a magnificent crystal chandelier.,\"studies herself from the dances set, making the pranam.\",leaves her apartment and accidentally kisses his mother.,,gold1-orig,pos,unl,unl,unl,n/a,Someone faces away from the child.,Someone\nlsmdc1026_Legion-5769,12183,\"Someone gently lifts the baby. Smiling incredulously, someone\",wraps the bloody child in a towel and offers it to someone.,cautiously strides across the flowers on the broken stone floor.,sidles up and down in the shadows.,smile at them as they head to the gate of two young children.,\"touches her neck, and kisses her forehead - - someone again.\",gold0-orig,pos,unl,unl,unl,unl,Someone gently lifts the baby.,\"Smiling incredulously, someone\"\nlsmdc1026_Legion-5769,12185,A tear rolls down someone's cheek. Someone,faces away from the child.,faces someone who stares at her.,folds his hands behind his back.,wraps the locket around his neck and pushes him back down.,clenches a fist into his fist.,gold1-reannot,pos,unl,unl,unl,unl,A tear rolls down someone's cheek.,Someone\nlsmdc3046_LARRY_CROWNE-21802,10676,Someone gives him three lottery tickets. Two kids,ride past on their bicycles as someone climbs into his suv.,unload the picture of a car.,catch up in a blue swimsuit dress.,wait outside with her mom in a dirt.,sit on a couch together.,gold0-reannot,pos,unl,unl,pos,pos,Someone gives him three lottery tickets.,Two kids\nanetv_3ddoLUFrGsE,18464,\"The woman is putting make up to the boy's face, and then the boy shows his face. Then, the woman\",put make on a girl face.,takes a pair of clippers and applies it to his leg.,is shown playing and singing with a bunch.,shows the floors and how it should clean concrete.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The woman is putting make up to the boy's face, and then the boy shows his face.\",\"Then, the woman\"\nanetv_3ddoLUFrGsE,18465,\"Then, the woman put make on a girl face. The boy and the girl\",look their faces on a mirror making funny faces and waving.,put off indignant into a group's eyelids and colors it out.,attach the child dance.,grab her tubes and stop to help in each other.,stand and face each other.,gold0-reannot,pos,unl,unl,unl,pos,\"Then, the woman put make on a girl face.\",The boy and the girl\nanetv_RpyRgnHdUXc,2308,\"The man begins to exercise on the machine slowly, all while talking to the camera, eventually building up to a more fast paced work out on the same machine. The man\",begins to demonstrate how to use the digital panel on the exercise machine by pointing at it and talking to the camera.,continues to play the area with his foot smiling each other.,\"then put the three feet and the child forward, then he did another while the camera captures him from a different angle.\",melts into the metal frame and ends by pausing and panning faster and faster.,takes a screwdriver and begins to talk as he came on the machine.,gold0-orig,pos,unl,unl,unl,pos,\"The man begins to exercise on the machine slowly, all while talking to the camera, eventually building up to a more fast paced work out on the same machine.\",The man\nanetv_r2oMItb5EVM,12320,\"A young man puts in a pan oil, onions, tomatoes, green leaves and salt, then mix to cook the vegetables. After, the man\",\"puts aside the vegetables, and cooks an omelette in the pan.\",puts slices on the bread.,adds aluminum to the pan.,works on the new element.,,gold0-orig,pos,unl,pos,pos,n/a,\"A young man puts in a pan oil, onions, tomatoes, green leaves and salt, then mix to cook the vegetables.\",\"After, the man\"\nanetv_GWRqx0obKzA,4447,The group go rafting on the water. They,wave again to the camera.,get on the river sleds to land on the river and car.,are shown doing paddles while sitting in the water.,ride on a raft in the river of water.,,gold1-orig,pos,unl,pos,pos,n/a,The group go rafting on the water.,They\nanetv_GWRqx0obKzA,4446,A group wave to the camera while more people in the background walk through the water. The group,go rafting on the water.,then swim in the middle of water around the pool swimming.,continues riding waves to the camera.,then sits in the kayak raft paddling while paddling and pushing the rafts.,continues to kayaks along a rough water and laughing to one another while another walking in.,gold0-orig,pos,unl,unl,unl,unl,A group wave to the camera while more people in the background walk through the water.,The group\nanetv_GWRqx0obKzA,4448,They wave again to the camera. The group,are shown in their raft as they sail along the river.,\"limps off into the room, streaming over someone soaking coffee as he tries to break.\",are even higher than up.,goes to talk and laugh.,,gold0-orig,pos,unl,unl,pos,n/a,They wave again to the camera.,The group\nanetv_GWRqx0obKzA,4449,The group are shown in their raft as they sail along the river. They,are shown taking a break in the river.,\"are paddling down the river, walking close to each other.\",are kayaking through the rapids of rapids.,continue rafting in harbor while attempting to stay afloat.,push an inflatable boat and paddle water.,gold0-orig,pos,unl,unl,unl,unl,The group are shown in their raft as they sail along the river.,They\nanetv_GWRqx0obKzA,4450,Pov footage from one of the rafters. The group,is out of the river and hiking.,rises on people pass between cars.,is turned on.,\"passes, holding her straight then gazes at the rocks.\",put up nunchucks and then stand right back to point the individual to the top of the drip.,gold0-orig,pos,unl,unl,unl,unl,Pov footage from one of the rafters.,The group\nanetv_NBXH7A2EO7Q,18517,A person is seen walking into frame and begins putting handle bars onto a bike frame. The person,tightens the handlebars then begins putting a tire on.,drives up and shows their fencing for the camera.,continues performing gymnastic moves and performs the routine while continuing to speak to the camera.,continues swinging back and fourth on the bike while looking to the camera.,moves back and fourth to a piece of grass and continues to enter the wood.,gold0-orig,pos,unl,unl,pos,pos,A person is seen walking into frame and begins putting handle bars onto a bike frame.,The person\nanetv_NBXH7A2EO7Q,18518,The person tightens the handlebars then begins putting a tire on. The man,finishes putting the tire on and puts on a seat on the frame.,talk while riding around the table and smiling to the camera.,moves quickly on the wax on the torching.,lifts the new tire up on the border of the bike.,inserts the camera on the seat.,gold1-orig,pos,unl,unl,pos,pos,The person tightens the handlebars then begins putting a tire on.,The man\nanetv_NBXH7A2EO7Q,8500,A man is seen talking inside a shop. He,is working on the handle bars of a bicycle.,begins smoking a hookah.,holds various books and carving tools from the ground.,keeps messing up to a tile strapped to a dance kitchen.,sets up a christmas tree on front the shrubs.,gold0-orig,pos,unl,unl,unl,unl,A man is seen talking inside a shop.,He\nanetv_NBXH7A2EO7Q,8501,He is working on the handle bars of a bicycle. He,screws the bars back onto the bike.,dismounts with puts on his steering bike.,goes back to walk on an exercise bike.,lays down on it.,stands off on the monkey bars.,gold0-reannot,pos,unl,unl,unl,unl,He is working on the handle bars of a bicycle.,He\nanetv_JNuVGc8mn54,13536,One of them is playing guitar and two of them are playing the violin. People walk by them and a kid pushing a stroller and some other children,come and stop to watch them for a little by.,are on a outside and a kid in one shirt talks outside.,are nibbling on the side and pointing to the magnificent television.,are standing in front watching him get there.,appear playing with a person behind them.,gold1-orig,pos,unl,unl,unl,pos,One of them is playing guitar and two of them are playing the violin.,People walk by them and a kid pushing a stroller and some other children\nanetv_JNuVGc8mn54,13537,People walk by them and a kid pushing a stroller and some other children come and stop to watch them for a little by. There,\"is a crowd that has actually stopped to watch them play, clapping and one of them leaving money in their case.\",are driving in a little bumper truck.,are and the children continue moving back and forth on the playground!,child come through the gate with the man working out on a string.,can exit his bedroom and see someone too.,gold0-orig,pos,unl,unl,unl,unl,People walk by them and a kid pushing a stroller and some other children come and stop to watch them for a little by.,There\nanetv_JNuVGc8mn54,13535,There men have chairs and are sitting int he subway way making some music. One of them is playing guitar and two of them,are playing the violin.,stand on the other side and explain on his batman movements.,going to have to go kayaking in private cross.,are singing at the same time as they play pool.,are pointing along the website.,gold0-orig,pos,unl,unl,unl,unl,There men have chairs and are sitting int he subway way making some music.,One of them is playing guitar and two of them\nanetv_Gi55CA6ktE8,5997,\"A screen of fighters are shown and then two random images are selected. Once selected, the pictures move to the top corners of the screen and two people dressed in sumo uniforms\",stand in the middle of a round - about and begin fighting as cars travel around them.,are shown performing jump bikes.,get cleaned with a gun behind their back.,walk by black and white.,,gold0-reannot,pos,unl,unl,unl,n/a,A screen of fighters are shown and then two random images are selected.,\"Once selected, the pictures move to the top corners of the screen and two people dressed in sumo uniforms\"\nanetv_yrGietojx78,13893,He starts chopping weeds down in a field. He,stops and puts the tool against a fence.,is getting on a horse and way down into a path.,starts mowing the lawn in the path.,ties the horses back and rides around the camels continuously.,completes a high chimney and looms over him.,gold0-orig,pos,unl,unl,unl,unl,He starts chopping weeds down in a field.,He\nanetv_yrGietojx78,13892,A man in a white shirt is holding a tool in his hand. He,starts chopping weeds down in a field.,shakes the man's hand while talking.,plugs a new layer from the floor.,throws a large piece of paper to the ground.,wipes his face up and picks it up.,gold0-reannot,pos,unl,unl,unl,unl,A man in a white shirt is holding a tool in his hand.,He\nlsmdc0002_As_Good_As_It_Gets-46426,18161,Someone look at her mother - - they share a laugh. Someone,has a hard time stopping.,opens someone by the arm.,gets in his car.,glances across at him.,checks her cellphone.,gold0-orig,pos,unl,pos,pos,pos,Someone look at her mother - - they share a laugh.,Someone\nanetv_h7iCyiNUxeE,4140,The camera turn and we see a blond lady in glasses posing for the camera. The camera,pans back to the man who is holding a towel.,pans to a lady who is shoveling snow.,zooms in on the lady as she drinks from the trainers.,looks over at the cameraman to talk the lady about baked product.,moves to someone as we see the lady getting a lens into the eye.,gold0-orig,pos,unl,unl,unl,unl,The camera turn and we see a blond lady in glasses posing for the camera.,The camera\nanetv_h7iCyiNUxeE,4138,A man is facing a window. the man,turns towards the camera.,is removing shingles from the shoe.,goes underwater while gazing at a camera.,puts lipstick on his lips.,looks up in victory.,gold1-orig,pos,unl,unl,pos,pos,A man is facing a window.,the man\nanetv_h7iCyiNUxeE,4139,The man turns towards the camera. The camera turn and we,see a blond lady in glasses posing for the camera.,see the boy talking and rubs his hands together.,see him riding back in the field.,see a man talking to the camera.,,gold1-orig,pos,unl,unl,pos,n/a,The man turns towards the camera.,The camera turn and we\nanetv_h7iCyiNUxeE,8967,\"A young man is standing in the kitchen in front of a sink washing dishes. Behind him, a young girl with blonde hair\",is smiling and holding the came before recording the young man again.,\"dances with the woman in the canoe, washing a red bucket.\",rubs her back is rinsing her mouth thoroughly.,is standing on a picture and a trashcan.,is shown in a sink and washing his clothes in a sink.,gold1-reannot,pos,unl,unl,unl,unl,A young man is standing in the kitchen in front of a sink washing dishes.,\"Behind him, a young girl with blonde hair\"\nanetv_O0-CRPl0TR0,16707,Two men are inside a gym together. they,are engaged in a game of table tennis.,start playing a game of polo.,use a small piece of equipment and use the equipment to fix their grips.,take turns doing karate at the same time.,,gold0-orig,pos,unl,unl,pos,n/a,Two men are inside a gym together.,they\nanetv_O0-CRPl0TR0,8290,The two players end their game and the referee holds his right arm up to indicate the winner as the two players meet on the right side of the table and give one another a handshake. They both then turn to the referee on the right and give him a handshake and then they,walk to the referee on the left to give him a handshake as well.,continue playing volley ball with the ladies who all sit next to each other.,finish and hug people.,run to the ball to their playing.,take turns and shake on it.,gold0-orig,pos,unl,unl,unl,unl,The two players end their game and the referee holds his right arm up to indicate the winner as the two players meet on the right side of the table and give one another a handshake.,They both then turn to the referee on the right and give him a handshake and then they\nanetv_O0-CRPl0TR0,8289,\"Two players and a referee are standing in a boxed off area that is primarily red and blue, and they are standing around a ping pong table. The referee takes a seat on his blue chair and the two players\",begin hitting the ping pong across the table as two referees are sitting on the sidelines on each side of the table observing.,\"continue playing beer, the little boy practices a hat.\",play with each other on the ground.,start shaking their head for wrestling.,acknowledge his scoring the match together.,gold0-orig,pos,unl,unl,unl,unl,\"Two players and a referee are standing in a boxed off area that is primarily red and blue, and they are standing around a ping pong table.\",The referee takes a seat on his blue chair and the two players\nanetv_O0-CRPl0TR0,8291,They both then turn to the referee on the right and give him a handshake and then they walk to the referee on the left to give him a handshake as well. They both then,proceed to the edge of the boxed in area and leave.,go together and shake beers instead as they talked.,begin to dance together with each other on the field.,begin talking to each other for a brief period of time.,,gold0-orig,pos,unl,pos,pos,n/a,They both then turn to the referee on the right and give him a handshake and then they walk to the referee on the left to give him a handshake as well.,They both then\nanetv_O0-CRPl0TR0,16708,They are engaged in a game of table tennis. They,hit the ball back and forth over the net.,are playing a game of paper scissors.,punch balls to each other.,walk around a tile on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,They are engaged in a game of table tennis.,They\nlsmdc1056_Rambo-96765,11877,\"In the arena, the wrangler teases a cobra. Someone\",stands near wire and wood snake cages as someone and his party approach.,studies his face with laser eyes.,flies through the air.,leaves in a forest spot.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the arena, the wrangler teases a cobra.\",Someone\nlsmdc1056_Rambo-96765,11875,He empties the bag containing the cobra into a wooden crate. A group of Westerners,\"arrive, led by someone, who has thinning hair, and a blonde girl, someone.\",make their way to an stairway and boards off in a stony castle.,\"carries a map which is original with the outline cities the peasants, grimy.\",are getting in the club.,lie together staring out at someone's grave details.,gold0-orig,pos,unl,unl,unl,unl,He empties the bag containing the cobra into a wooden crate.,A group of Westerners\nanetv_MEU83dUao4g,3304,A woman is seen with markings on her tongue and a person placing paper towels on her tongue. The man then pierces the girls tongue and she,looks at the camera smiling.,catches it in the end.,sticks her hand into it.,sticks her legs out to insert contact lenses.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen with markings on her tongue and a person placing paper towels on her tongue.,The man then pierces the girls tongue and she\nlsmdc1047_Defiance-91240,2593,They have a little fire near to a stream. Someone,crouches down next to someone who is the tallest of the three adults.,strides back to someone 'trailer.,grab the gunpowder from one of the cups.,\"grabs the water, then turns and walks around the table.\",is parked in the sand on a slope.,gold0-orig,pos,unl,unl,unl,unl,They have a little fire near to a stream.,Someone\nlsmdc1047_Defiance-91240,2595,Someone pushes a stick into the mud with a curious expression and watches several ants climb onto it. He,brings the stick closer to him and studies their movements.,sees an oncoming car below.,huge shadows into the air.,\"looks at them, quietly.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone pushes a stick into the mud with a curious expression and watches several ants climb onto it.,He\nlsmdc1047_Defiance-91240,2601,His brothers are sitting around the fire. People,look at each other.,are sick the japanese servant.,spinning someone of the stage.,\"go in bowling rooms and farm side with a determined reflective - mixer, people, and some young, bottles and strawberries.\",laugh together as they pull someone bit of life.,gold0-orig,pos,unl,unl,unl,unl,His brothers are sitting around the fire.,People\nlsmdc1047_Defiance-91240,2599,\"Clutching his stick, someone steps towards a mud ditch in the middle of a clearing. The long winding ditch\",is full of dead bodies piled on top of each other.,is replaced with the heavy oar loaded through some populated area.,\"clinging pieces approaching him, sending someone down in the pit.\",lift a ladder at the docks.,,gold0-orig,pos,unl,unl,unl,n/a,\"Clutching his stick, someone steps towards a mud ditch in the middle of a clearing.\",The long winding ditch\nlsmdc1047_Defiance-91240,2598,\"Someone looks in another direction and sees a young man accompanying an old woman. Clutching his stick, someone\",steps towards a mud ditch in the middle of a clearing.,reaches out and lifts his leather jacket onto the sofa.,faces the delivery guy.,steps outside as he hurries toward the set wearing open carriage.,pins someone and his red gore forearm.,gold1-orig,pos,unl,unl,unl,unl,Someone looks in another direction and sees a young man accompanying an old woman.,\"Clutching his stick, someone\"\nlsmdc1047_Defiance-91240,2591,The four of them huddle together in the pouring rain. Someone,sits with a coat on his head listening quietly.,and someone applaud for another montage.,peeks in the room at the rear of the chimes.,paints a tablet to their pod.,,gold0-orig,pos,unl,unl,unl,n/a,The four of them huddle together in the pouring rain.,Someone\nlsmdc1047_Defiance-91240,2597,\"He stops between two silver birch trees and watches the teen girl run towards a gray bearded man in a Homburg hat, shirt and waistcoat and suit trousers sitting on a log with a little girl in his arms. Someone\",looks in another direction and sees a young man accompanying an old woman.,is fitted for the rear door.,\"gets caught, sag for a big turn on the horse, and then gets off the horse.\",runs to a building where several spectators gather below.,gives a thoughtful look.,gold1-orig,pos,unl,unl,pos,pos,\"He stops between two silver birch trees and watches the teen girl run towards a gray bearded man in a Homburg hat, shirt and waistcoat and suit trousers sitting on a log with a little girl in his arms.\",Someone\nlsmdc1047_Defiance-91240,2590,Someone hands someone some vodka. The four of them,huddle together in the pouring rain.,seem slack - jawed.,look disappointed and kind.,are staring away in the dark.,sit a few yards ahead down the stairs.,gold1-orig,pos,unl,unl,unl,unl,Someone hands someone some vodka.,The four of them\nlsmdc1047_Defiance-91240,2592,Someone sits with a coat on his head listening quietly. They,have a little fire near to a stream.,\"over the trio, someone looks sorrowfully as someone stares at her, one hand resting on the banquette.\",notice snakes against a tree.,\"eat their breakfast, then drink in the bowls.\",walk around the house.,gold1-orig,pos,unl,unl,unl,pos,Someone sits with a coat on his head listening quietly.,They\nlsmdc1047_Defiance-91240,2600,Someone's eyes fill with horror. His brothers,are sitting around the fire.,quickly remove the argue.,tumble cover the floor.,light up with their well - wishers.,hold someone's hand.,gold1-reannot,pos,unl,unl,unl,pos,Someone's eyes fill with horror.,His brothers\nlsmdc1047_Defiance-91240,2596,He reels around and spotss a female figure running through the trees some distance away. He,gets to his feet.,jumps again several times in slow motion.,is held down with a siren.,\"obliges, but slowly misses and breaks.\",regains his footing and falls off into the water.,gold0-reannot,pos,unl,unl,unl,pos,He reels around and spotss a female figure running through the trees some distance away.,He\nanetv_AyWXuUCDSjw,11431,We see 5 men walking down the street sides by side. A man,looks at the men.,goes over waterfalls and dives into the ocean.,begins to eat leftovers off a table.,and guy does the same.,wearing a yellow shirt holds a golf racket.,gold1-orig,pos,unl,unl,pos,pos,We see 5 men walking down the street sides by side.,A man\nanetv_AyWXuUCDSjw,11437,The men leave the bar drunk. We,see a gray closing screen.,men play ping pong.,a soldier at the back of the lorry where armed leaders are doing the same.,put photographs of men.,,gold0-orig,pos,unl,unl,unl,n/a,The men leave the bar drunk.,We\nanetv_AyWXuUCDSjw,11433,A lady looks at the men. Two men,turn and look at each other.,are sitting at a table in front of the table.,stand on a stage and switch together.,engage in a game of styrofoam foosball.,,gold0-orig,pos,unl,unl,pos,n/a,A lady looks at the men.,Two men\nanetv_AyWXuUCDSjw,11430,We see an opening title screen. We,see 5 men walking down the street sides by side.,see a person in a track with a razor.,\"see a man playing an acoustic guitar, playing.\",see men dancing on a stage.,see a person sitting at an empty table.,gold1-orig,pos,unl,pos,pos,pos,We see an opening title screen.,We\nanetv_AyWXuUCDSjw,11434,Two men turn and look at each other. One man,buys drinks as everyone stares at them.,flips up the ax.,removes his jacket wearing a helmet.,bends onto the floor.,throws darts at the other.,gold0-orig,pos,unl,unl,pos,pos,Two men turn and look at each other.,One man\nanetv_AyWXuUCDSjw,11436,The five men drink their beers in one gulp. The men,leave the bar drunk.,stride away from the salon.,sip their beers as they leave and drink cigars.,step towards the bus stop.,,gold0-orig,pos,unl,unl,pos,n/a,The five men drink their beers in one gulp.,The men\nanetv_AyWXuUCDSjw,11432,A man looks at the men. A lady,looks at the men.,sits shaking a red hoop in a spin while smiling and talking.,cuts away her hair.,talks below his arms.,,gold0-orig,pos,unl,unl,unl,n/a,A man looks at the men.,A lady\nanetv_AyWXuUCDSjw,11435,One man buys drinks as everyone stares at them. The five men,drink their beers in one gulp.,are tossed into the mic and hand out the cigarettes as far as they can.,are sleeping under the lights outside a winter resort.,drink around a bit as the mustached robber gather.,,gold0-orig,pos,unl,unl,pos,n/a,One man buys drinks as everyone stares at them.,The five men\nanetv_xMEwcb1P6dQ,5078,\"A young girl is sitting in the room positioning her camera. After everything is put into place, she\",begins to play her guitar in her room.,washes as they build up.,begins to take her jacket down very quickly.,gathers her children to take off her beer.,,gold0-orig,pos,unl,unl,unl,n/a,A young girl is sitting in the room positioning her camera.,\"After everything is put into place, she\"\nanetv_xMEwcb1P6dQ,7227,A girl is sitting inside a bedroom. She,puts a guitar onto her lap.,puts on a pair of clippers.,is playing a toy of harmonica while a cat is sitting on the ground.,starts a hairstyle.,is watching her from the bed.,gold0-orig,pos,unl,pos,pos,pos,A girl is sitting inside a bedroom.,She\nanetv_xMEwcb1P6dQ,7228,She puts a guitar onto her lap. She,begins to play the guitar for the camera.,repeats her cycle over and over in frustration.,wraps her hands around her and leads her back on to a music rink.,starts playing the harmonica.,picks up the camera and begins some drinks from the piano.,gold0-orig,pos,unl,unl,unl,unl,She puts a guitar onto her lap.,She\nanetv_xMEwcb1P6dQ,5079,\"After everything is put into place, she begins to play her guitar in her room. When she is finish, she\",looks into the camera smiles and stops playing.,goes to get another black star.,lights up a play on her belly.,is past someone and goes back to her performance.,,gold0-orig,pos,unl,unl,unl,n/a,\"After everything is put into place, she begins to play her guitar in her room.\",\"When she is finish, she\"\nanetv_FRag7CCTP4k,16881,An athlete is shown warming up in front of a pole while several others in the background run around a track. The man eventually,prepares for his jump and jumps over the pole.,jumps over a bar on a pole sticking up a roll.,is running to the pole as an athlete runs down it with a javelin.,performs a small stadium while tossing himself over the bar.,wins the vaults while the man performs a jumping move in slow motion.,gold0-orig,pos,unl,unl,unl,pos,An athlete is shown warming up in front of a pole while several others in the background run around a track.,The man eventually\nanetv_qhnWJ4G5JMA,8762,A woman is seen speaking to the camera while standing around a group of exercise equipment. The woman,shows how to adjust the exercise equipment then climbs on top and begins using it.,begins putting the handle on while speaking to the camera while still speaking to the camera.,continues hitting a machine as with as well as still speaking to the camera.,slowly shows the object of the equipment while the camera pans past taking shots out the area.,watches a girl from several angles and goes back into flips.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while standing around a group of exercise equipment.,The woman\nanetv_qhnWJ4G5JMA,18846,A woman is seen speaking to the camera behind an exercise bike. She,adjusts the settings on the bike while climbing on top.,begins dancing while speaking to the camera and smiling to the camera.,continues dancing around on her coat while still speaking to the camera.,walks over and rides on her bike through a fence.,demonstrates her trainer movements while speaking to the camera and smiling.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera behind an exercise bike.,She\nanetv_qhnWJ4G5JMA,18847,She adjusts the settings on the bike while climbing on top. She then,begins using the bike and climbs off to adjust the bike more.,takes the eggs out of a covered bowl and puts it back in the pot.,shows in more shots of the bike and attempts to kiss back the saddle.,gets off of the bike and puts her feet up on the pedals.,zooms back on the bike while she is standing on the side.,gold1-orig,pos,unl,unl,pos,pos,She adjusts the settings on the bike while climbing on top.,She then\nanetv_qhnWJ4G5JMA,8763,The woman shows how to adjust the exercise equipment then climbs on top and begins using it. The woman,continues riding on the bike while speaking to the camera and climbing off in the end.,bounces the bike together in the air.,shows how she tugs apart the machine.,allows her hands and flips to tools to show a spinning box.,adjusts her settings on the machine.,gold0-orig,pos,unl,unl,unl,pos,The woman shows how to adjust the exercise equipment then climbs on top and begins using it.,The woman\nlsmdc3085_TRUE_GRIT-40586,6552,\"Holding his rifle, someone makes his way to the front of the cabin. All\",is dark apart from a slit of yellow light at a window.,carry the drill out of the chopper.,has fallen asleep on his back.,watches the monitor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Holding his rifle, someone makes his way to the front of the cabin.\",All\nlsmdc3085_TRUE_GRIT-40586,6554,Someone squats down by some tree branches and aims at the dark cabin with his rifle. Smoke,seeps under the front door.,\"from the water, people unload catapults in the back to go over an object.\",drops the lighter into the air.,\"walks away from the door, blocking it from sight.\",emerge from the gloom behind the trees in the dome of the woods.,gold0-orig,pos,unl,unl,unl,pos,Someone squats down by some tree branches and aims at the dark cabin with his rifle.,Smoke\nlsmdc3085_TRUE_GRIT-40586,6553,Someone raises his hand to someone. Someone,squats down by some tree branches and aims at the dark cabin with his rifle.,steps into the nudges door's frame.,walks past a weight table from someone's blindfolded partner.,holds someone's finger phone at someone.,gazes into her sultry eyes.,gold0-orig,pos,unl,unl,unl,unl,Someone raises his hand to someone.,Someone\nlsmdc3085_TRUE_GRIT-40586,6551,\"Holding someone's coat, someone carefully walks onto the roof. Holding his rifle, someone\",makes his way to the front of the cabin.,sees the boy up ahead.,fits his boot under his own boots.,easily pulls someone into a crevasse.,exits the car and pushes someone to the ground.,gold1-reannot,pos,unl,unl,unl,unl,\"Holding someone's coat, someone carefully walks onto the roof.\",\"Holding his rifle, someone\"\nlsmdc3085_TRUE_GRIT-40586,6550,\"That night, someone and someone look down at a cabin lodged into a muddy hillside. Holding someone's coat, someone carefully\",walks onto the roof.,\"strides over and crouches beside someone, clutching his egg.\",puts his socks into the bin.,sips her tea.,takes a seat and pulls a small glass of inside a silver case.,gold1-reannot,pos,unl,unl,unl,unl,\"That night, someone and someone look down at a cabin lodged into a muddy hillside.\",\"Holding someone's coat, someone carefully\"\nlsmdc1010_TITANIC-77746,6543,\"Atop the stairs, someone grips the gate and glares at the armed steward. Someone\",\"glowers and points at the steward, then runs downstairs.\",reaches into someone's tent and grabs his pants.,jumps down in a crevice and presses his body button down.,\"pushes himself along the street which shows someone, the young hydra soldier.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Atop the stairs, someone grips the gate and glares at the armed steward.\",Someone\nlsmdc1010_TITANIC-77746,6536,Someone and other passengers pop open the third - class gangway door and peer out along the ship. Two seamen,pull the passengers back in and close the door.,rise high above his head.,aide walk alongside the cemetery and enjoy a tranquil passing sea with their boards on zoom along the side streets like donut - infested water,climb into the cab.,\"drift away, someone turns around with a cigarette in his mouth.\",gold0-orig,pos,unl,unl,unl,pos,Someone and other passengers pop open the third - class gangway door and peer out along the ship.,Two seamen\nlsmdc1010_TITANIC-77746,6588,\"Someone removes his own coat and places it around someone's shoulders. He starts to caress someone's hair, but she\",backs away from him.,turns to meet him.,turns back and gazes at the chord rigidly.,drops to her knees.,\"murmurs, not looking at him.\",gold0-orig,pos,unl,unl,pos,pos,Someone removes his own coat and places it around someone's shoulders.,\"He starts to caress someone's hair, but she\"\nlsmdc1010_TITANIC-77746,6559,He turns toward a young sailor. Someone,\"loads his revolver, while someone boards the lifeboat.\",presses the front wheel to the rock.,stands and gazes at the priest palms.,spins at a point.,strokes someone's hair.,gold1-orig,pos,unl,unl,unl,pos,He turns toward a young sailor.,Someone\nlsmdc1010_TITANIC-77746,6580,\"Someone turns to people, while someone helps load the collapsible. Someone\",\"stares at the collapsible, then blinks.\",\"'s hand lobs through the side of his tree, its full tone in the drive.\",neighbors in west shares more rooms having a large lake and causing the magistrate to walk ahead.,heaves a cigar as he struggles to regain control of himself.,smooths the dusty surface next to a parked car car.,gold1-orig,pos,unl,unl,pos,pos,\"Someone turns to people, while someone helps load the collapsible.\",Someone\nlsmdc1010_TITANIC-77746,6575,Someone slips money into someone's pocket. Someone,\"glances down at the cash, then exchanges looks with someone and walks off.\",pushes his fist.,\"drives up his face, his pockets encouraging as usual.\",swings a drum kit to his chest.,pulls out some money.,gold0-orig,pos,unl,unl,unl,unl,Someone slips money into someone's pocket.,Someone\nlsmdc1010_TITANIC-77746,6558,He waves the gun at the group of men. He,turns toward a young sailor.,yanks her robe from his face.,looks into someone's eyes and turns away.,moves out of the citadel.,grabs himself on someone.,gold0-orig,pos,unl,unl,unl,unl,He waves the gun at the group of men.,He\nlsmdc1010_TITANIC-77746,6538,Two stewards unlock the gate. A woman and several men,rush through the open gate.,run down two then meet in a sprawling luxury factory.,walk while and borrowed the crate with the letter post.,\"help the child past the cart, revealing her hurrying men leading them on in the rocky slope.\",convoy across the twilight compound on military platforms.,gold0-orig,pos,unl,unl,unl,pos,Two stewards unlock the gate.,A woman and several men\nlsmdc1010_TITANIC-77746,6576,\"Someone glances down at the cash, then exchanges looks with someone and walks off. On the port side, someone\",loads passengers into a boat.,and someone stare at the forest floor.,\"lifts a red collar of his knitted cape, then climbs into the middle of the bed of his own.\",resumes with a meaningful look.,reaches a grill and holds the empty beer.,gold0-orig,pos,unl,unl,unl,unl,\"Someone glances down at the cash, then exchanges looks with someone and walks off.\",\"On the port side, someone\"\nlsmdc1010_TITANIC-77746,6569,They run to the side of the ship. Someone,stands up on the railing and gazes toward the bow.,\"meets the truck, putting a sight on it in someone's room.\",picks at a corner and looks up at the sky.,follows someone out of the study and flings him to the floor.,,gold0-orig,pos,unl,unl,unl,n/a,They run to the side of the ship.,Someone\nlsmdc1010_TITANIC-77746,6587,Someone pulls off the blanket someone is wrapped in and shoves it at someone. Someone,removes his own coat and places it around someone's shoulders.,\"straightens up from his own grasp, revealing the long shoot he kicked through the grass, then pins someone into the limo.\",\"sits down happily - - a very good photo in his hand, gives him a hard look.\",\"jogs near to the windscreen, looks out and sees only the mustached stranger.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone pulls off the blanket someone is wrapped in and shoves it at someone.,Someone\nlsmdc1010_TITANIC-77746,6573,\"Elsewhere, someone and several seamen load a small boat. Someone\",\"glances around, then turns to a sailor.\",licks her lips and shoves something from the table.,\"watches someone advance, and shoot him a hostile glare.\",paddles the guide as someone rides through the waves of his yacht.,is struggling with it.,gold0-orig,pos,unl,unl,unl,unl,\"Elsewhere, someone and several seamen load a small boat.\",Someone\nlsmdc1010_TITANIC-77746,6566,People turn as someone fires his gun in the air. Someone,follows someone toward the bow.,hits the ball wildly.,releases a wire on a cable.,shoves someone against a wall.,sweeps his gloved hand down someone's throat.,gold1-orig,unl,unl,unl,unl,unl,People turn as someone fires his gun in the air.,Someone\nlsmdc1010_TITANIC-77746,6582,\"Someone follows someone, who walks through the bridge. People\",brush past an officer.,\"stare down one that is ancient, suspended from the ceiling.\",sit calmly on her porch.,rush out from him.,walk into a guestroom.,gold0-orig,pos,unl,unl,unl,unl,\"Someone follows someone, who walks through the bridge.\",People\nlsmdc1010_TITANIC-77746,6555,Someone pushes away a group of men. A man,knocks a woman off the deck.,shoves down the road at a crowded parking lot.,joins a ladder from the rooftop.,climbs back into the break room of a building.,kicks a ragged ball.,gold1-orig,pos,unl,unl,pos,pos,Someone pushes away a group of men.,A man\nlsmdc1010_TITANIC-77746,6546,\"Elsewhere, someone and the others run along a crowded corridor. Someone\",leads them down another corridor.,\"walks into a cafe chair, greets him, and sips a cocktail drink.\",\"approaches someone delightedly, then gives her instructions.\",drops his fluttering hand above the man.,draws him aloft as he return to a furtive lobby.,gold0-orig,pos,unl,unl,unl,unl,\"Elsewhere, someone and the others run along a crowded corridor.\",Someone\nlsmdc1010_TITANIC-77746,6534,Someone gazes out at several partially filled lifeboats moving away from the Titanic and motions to waiting passengers. Several full lifeboats,are lowered to the water.,ride forward as people start over - hills.,sit on the island.,\"elven boats have sails along the water, waves to the left town.\",lie on their backs by a pier.,gold0-orig,pos,unl,unl,unl,unl,Someone gazes out at several partially filled lifeboats moving away from the Titanic and motions to waiting passengers.,Several full lifeboats\nlsmdc1010_TITANIC-77746,6584,\"Meanwhile, someone stands by the collapsible. While someone turns away, someone\",slips into a seat on the collapsible.,heads through a hospital corridor where rows of rusty devices slides latex - like fingers.,aims a menu at the house.,finds the second family.,pulls one of the back of someone's neck.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone stands by the collapsible.\",\"While someone turns away, someone\"\nlsmdc1010_TITANIC-77746,6562,\"People peer down the side of the ship. Below, one lifeboat\",is lowered onto another lifeboat sitting in the water but unable to detach.,someone the soldier stands at the far end of the dock.,glides back along a wooden bridge.,goes away toward minas tirith.,lies on a stony on below.,gold1-orig,pos,unl,unl,unl,unl,People peer down the side of the ship.,\"Below, one lifeboat\"\nlsmdc1010_TITANIC-77746,6586,\"As the collapsible drops below the deck, someone glances up. Someone\",grabs a young girl and places her in a lifeboat.,\"rushes to the corpse, then slides on its feet.\",\"glances back then follows, then ahead.\",moves out the sight of writing and disappears off.,stands there with an orderly look.,gold0-orig,pos,unl,unl,unl,unl,\"As the collapsible drops below the deck, someone glances up.\",Someone\nlsmdc1010_TITANIC-77746,6568,\"Meanwhile, people arrive on the upper deck. They\",run to the side of the ship.,lunge at each other.,clamber through muddy coal under water.,do work at the sink.,run down the hill.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, people arrive on the upper deck.\",They\nlsmdc1010_TITANIC-77746,6563,\"Below, one lifeboat is lowered onto another lifeboat sitting in the water but unable to detach. On the other side of the ship, someone\",stands in a lifeboat as it is lowered.,is conducting and trying to hide his face as best he can.,regains control and takes into another ring.,\"falls ahead of the ship's prow, which lies amid its arch.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Below, one lifeboat is lowered onto another lifeboat sitting in the water but unable to detach.\",\"On the other side of the ship, someone\"\nlsmdc1010_TITANIC-77746,6565,He waves his revolver at men on the decks as they try to jump into the boat. People,turn as someone fires his gun in the air.,fingers seize the goblin who soar from the deep in lifeboats.,pushed up behind the boat with their hands clasped together.,hold the boat as someone tries to grab onto the boat.,wave to two ladies.,gold0-orig,pos,unl,unl,unl,unl,He waves his revolver at men on the decks as they try to jump into the boat.,People\nlsmdc1010_TITANIC-77746,6564,\"On the other side of the ship, someone stands in a lifeboat as it is lowered. He\",waves his revolver at men on the decks as they try to jump into the boat.,\"tries to help the jet pass below, but lifts himself up into the air.\",\"quickly hauls himself to his feet but raises his hands in the air, then backs off.\",\"swims to another pool and looks for it, cringing again.\",,gold0-orig,pos,unl,unl,unl,n/a,\"On the other side of the ship, someone stands in a lifeboat as it is lowered.\",He\nlsmdc1010_TITANIC-77746,6567,\"Someone follows someone toward the bow. Meanwhile, people\",arrive on the upper deck.,run off of the cottage.,are in holding water.,write on a map.,\"stare after him, breathless.\",gold1-orig,pos,unl,unl,unl,pos,Someone follows someone toward the bow.,\"Meanwhile, people\"\nlsmdc1010_TITANIC-77746,6535,Several full lifeboats are lowered to the water. Someone and other passengers,pop open the third - class gangway door and peer out along the ship.,\"hang off the train's canopy, which hover about his left.\",extend the horses belly.,get to their feet.,wake up.,gold0-orig,pos,unl,unl,pos,pos,Several full lifeboats are lowered to the water.,Someone and other passengers\nlsmdc1010_TITANIC-77746,6554,\"On the boat deck, passengers swarm around the remaining lifeboats. Someone\",pushes away a group of men.,thrusts the plane toward the sky.,\"lowers his gaze, then turns off his radio.\",spots them pinning someone back.,slides a rope to a face around someone.,gold1-orig,pos,unl,unl,unl,unl,\"On the boat deck, passengers swarm around the remaining lifeboats.\",Someone\nlsmdc1010_TITANIC-77746,6551,Someone rushes over and pulls on a wooden bench nailed to the floor. People,help someone pull up the bench.,turn and rest uncomfortably on the floor.,are doing exercise in a room.,cower on the hood.,,gold0-orig,pos,unl,unl,unl,n/a,Someone rushes over and pulls on a wooden bench nailed to the floor.,People\nlsmdc1010_TITANIC-77746,6553,They charge forward and ram the gate. They,ram the gate again.,climb through to the speedboat.,hook them in the face.,stab their long sticks with their wands.,approach up the front slope and proceed to ropes steam up of th dusty space as they successfully climb roof.,gold1-orig,pos,unl,unl,unl,unl,They charge forward and ram the gate.,They\nlsmdc1010_TITANIC-77746,6541,One steward pulls out a small handgun and points it at the crowd now contained behind the closed gate. People,reach the bottom of the third - class stairs.,sets him to his feet.,\"over traffic, inches of the braces, actions pierce two short as the chain comes in on a expensive new window.\",get out of the truck back it drawn and shoots three more bullets at them.,on his way to his ward.,gold0-orig,pos,unl,unl,unl,unl,One steward pulls out a small handgun and points it at the crowd now contained behind the closed gate.,People\nlsmdc1010_TITANIC-77746,6561,\"On the other side of the ship, people peer down as someone supervises the lowering of a lifeboat. People\",peer down the side of the ship.,climb back to the back.,stands on the deck as someone's jet flies off from the side.,emerge from a pool away into space.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the other side of the ship, people peer down as someone supervises the lowering of a lifeboat.\",People\nlsmdc1010_TITANIC-77746,6549,Someone leads someone and his friends down another corridor and up a stairway to another locked gate. Someone,grabs the gate and shakes it.,\"runs nearby, then jumps down.\",points a gun at someone.,\"takes a deep breath, then view the canvas.\",\"appears, then cuts away.\",gold0-orig,pos,unl,unl,unl,unl,Someone leads someone and his friends down another corridor and up a stairway to another locked gate.,Someone\nlsmdc1010_TITANIC-77746,6539,A woman and several men rush through the open gate. The stewards,\"push back the men, punch them, and hit them with axe handles.\",jump roping and leave someone.,file out of the vault.,file out of the building.,\"lead someone onto the summit behind someone, and the commanding soldiers charge up the front aisle.\",gold1-orig,pos,unl,unl,unl,unl,A woman and several men rush through the open gate.,The stewards\nlsmdc1010_TITANIC-77746,6579,\"Someone moves off through the crowd. Meanwhile, someone\",\"approaches someone, who stands beside the small boat, called a collapsible.\",greets his soldiers and rotund men.,shoots someone in the chest.,peeps out of the closet.,,gold0-orig,pos,unl,unl,pos,n/a,Someone moves off through the crowd.,\"Meanwhile, someone\"\nlsmdc1010_TITANIC-77746,6578,\"In the crowd, someone turns to someone. Someone\",moves off through the crowd.,return to one of the actors.,is taken aback and waving to the audience.,\"swallows, and lowers his head to his lap.\",,gold1-orig,pos,pos,pos,pos,n/a,\"In the crowd, someone turns to someone.\",Someone\nlsmdc1010_TITANIC-77746,6581,\"Someone stares at the collapsible, then blinks. Someone\",turns and walks off.,\"looks at her, embarrassed and stifling her tears.\",strolls office and shuts the door.,faces his son with a wide brow.,sits up from someone.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stares at the collapsible, then blinks.\",Someone\nlsmdc1010_TITANIC-77746,6540,\"The stewards push back the men, punch them, and hit them with axe handles. One steward\",pulls out a small handgun and points it at the crowd now contained behind the closed gate.,enters the courtyard floor and an inn shirt drives it into the outlaws.,aims the scope at another who whirls around and readies his guard.,holds the device to the size of a wing and the armed men crane round.,\"runs along the street, then gazes someone the figure sideways like someone.\",gold0-orig,pos,unl,unl,unl,unl,\"The stewards push back the men, punch them, and hit them with axe handles.\",One steward\nlsmdc1010_TITANIC-77746,6589,\"He starts to caress someone's hair, but she backs away from him. Someone\",steps up to her.,looks slightly dazed as he picks up the receiver as someone flees from the car.,takes off his jacket.,looks up at her.,,gold0-orig,unl,unl,unl,pos,n/a,\"He starts to caress someone's hair, but she backs away from him.\",Someone\nlsmdc1010_TITANIC-77746,6571,\"As he steps down, someone stops the mustached someone. People and the others\",run toward the bow.,\"turn toward an older woman in spar, who stares expressionless.\",are awkwardly enjoying the practice.,look up at someone.,watch someone through the window.,gold1-reannot,pos,unl,unl,pos,pos,\"As he steps down, someone stops the mustached someone.\",People and the others\nlsmdc1010_TITANIC-77746,6547,Someone leads them down another corridor. They,pass a mustached man flipping through a book and studying a sign on the wall.,run through the forest.,hold people in the huge ship.,pick up speed toward the roadside.,follow his gaze to the army site.,gold0-reannot,pos,unl,unl,unl,unl,Someone leads them down another corridor.,They\nlsmdc1010_TITANIC-77746,6542,\"People reach the bottom of the third - class stairs. Atop the stairs, someone\",grips the gate and glares at the armed steward.,bows to his comrade and propel their feet through the air.,kneels beside someone and new someone.,grabs the headboard and races it away.,dives into a crate.,gold0-reannot,pos,unl,unl,unl,unl,People reach the bottom of the third - class stairs.,\"Atop the stairs, someone\"\nlsmdc1010_TITANIC-77746,6556,A man knocks a woman off the deck. He,grabs onto the side of the lifeboat and dangles high above.,throws the pole off and falls off.,helps her onto a leather sofa.,\"uses the hula hoop, then pushes back down.\",,gold1-reannot,unl,unl,unl,unl,n/a,A man knocks a woman off the deck.,He\nlsmdc1010_TITANIC-77746,6560,\"Someone loads his revolver, while someone boards the lifeboat. On the other side of the ship, people\",peer down as someone supervises the lowering of a lifeboat.,remain in the little waters as someone steps between them.,paddle people rough river.,shield themselves as spill fly toward the diner.,are being pulled by a single boat with a crewmen behind them.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone loads his revolver, while someone boards the lifeboat.\",\"On the other side of the ship, people\"\nlsmdc1010_TITANIC-77746,6585,\"While someone turns away, someone slips into a seat on the collapsible. Someone\",\"faces the collapsible and finds himself staring at his mate, who gazes ahead.\",slumps onto the steps of the carriage and climbs through a gate.,\"pulls back a lever, as he weaves his way through the winding air.\",fights the way in the police letters.,peers into the blackness at his cabinet.,gold0-reannot,pos,unl,unl,unl,pos,\"While someone turns away, someone slips into a seat on the collapsible.\",Someone\nlsmdc1010_TITANIC-77746,6545,\"Someone closes the safe, locks it, and walks out. Elsewhere, someone and the others\",run along a crowded corridor.,descend the grand staircase into a small stairway.,step off the bridge of the sun school.,watch as someone finishes his descent.,pick up someone's letter.,gold1-reannot,pos,unl,unl,pos,pos,\"Someone closes the safe, locks it, and walks out.\",\"Elsewhere, someone and the others\"\nlsmdc1010_TITANIC-77746,6557,He grabs onto the side of the lifeboat and dangles high above. A sailor,pulls the woman on deck.,hammers out of the rope.,pulls a lever then shape near the side of the propeller.,\"stops, turns over, and stumbles into the sky.\",whips the string across a group of frightened devices.,gold0-reannot,pos,unl,unl,unl,unl,He grabs onto the side of the lifeboat and dangles high above.,A sailor\nlsmdc1010_TITANIC-77746,6574,\"Someone glances around, then turns to a sailor. Someone\",slips money into someone's pocket.,someone works alone.,\"crouches over to open the window in his hand, and brings back a roll of fluorescent tiles.\",fondly mouths someone's credit card.,pulls someone down on the ship outer deck.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone glances around, then turns to a sailor.\",Someone\nlsmdc1010_TITANIC-77746,6537,Two seamen pull the passengers back in and close the door. Someone and others,stand at the locked gate atop the third - class stairwell.,look at it as they dissolve away.,watch through a window as someone bobs his head.,sit in the swimming sea.,snap off as more bodies march past.,gold0-reannot,pos,unl,unl,unl,unl,Two seamen pull the passengers back in and close the door.,Someone and others\nlsmdc1010_TITANIC-77746,6548,They pass a mustached man flipping through a book and studying a sign on the wall. Someone,leads someone and his friends down another corridor and up a stairway to another locked gate.,\"adjusts the handcuff, pulling the case back, and now everyone jumps into the air.\",\"catches a glimpse of an approaching base painting, cottage with a collection of framed drawings.\",\"removes the pamphlet, opens someone's back, and puts it down.\",sneaks through a thick - ceilinged room and hands her a cigar.,gold0-reannot,pos,unl,unl,unl,unl,They pass a mustached man flipping through a book and studying a sign on the wall.,Someone\nlsmdc1010_TITANIC-77746,6572,\"As the band resumes playing, people run past. Elsewhere, someone and several seamen\",load a small boat.,sing their gaze as someone strides through the crowd.,keep up the party guests.,sit in their waiting room.,\"silhouetted figures in the general's uniform appear, enjoying an entire day.\",gold0-reannot,pos,unl,unl,unl,unl,\"As the band resumes playing, people run past.\",\"Elsewhere, someone and several seamen\"\nlsmdc1010_TITANIC-77746,6544,\"Someone opens his jacket, revealing a handgun in a shoulder holster. Someone\",\"closes the safe, locks it, and walks out.\",opens a silver plastic container on a small vacuum.,takes off a pair of jackets.,spots a run toward the stairwell and opens someone's coat.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone opens his jacket, revealing a handgun in a shoulder holster.\",Someone\nlsmdc1010_TITANIC-77746,6570,\"Someone stands up on the railing and gazes toward the bow. As he steps down, someone\",stops the mustached someone.,turns to a jumper of bearded figures.,spins around and shoots downward.,watches him pass a third level.,turns to the crowd.,gold0-reannot,pos,unl,pos,pos,pos,Someone stands up on the railing and gazes toward the bow.,\"As he steps down, someone\"\nlsmdc0030_The_Hustler-64971,15865,\"He uses the simpler, open hand bridge to support his cue. Someone\",\"enters, and watches him play.\",\"tries, but somewhat glimpses at the old man's reaction.\",turns and watches someone weave in and out of someone.,kills the rockets with his smoke and smiles.,shoves his juice out of his seat and he throws back into the water.,gold0-orig,pos,unl,unl,unl,unl,\"He uses the simpler, open hand bridge to support his cue.\",Someone\nlsmdc0030_The_Hustler-64971,15863,Someone is about to knock on the door to someone's apartment. He,stops for a moment to look at his hands.,throws it over his shoulder.,\"hangs up, and someone drives in.\",is now front of it as he takes the cap off the carton.,walks down the aisle.,gold0-orig,pos,unl,unl,unl,unl,Someone is about to knock on the door to someone's apartment.,He\nlsmdc0030_The_Hustler-64971,15864,\"He knocks on the door with his wrist, as he would if he still had them on. When she opens the door he\",holds them up boyishly before her face.,is too desperate to spot her.,sees the wounded man wearing jungle clothes nyc.,\"finds with the first, and shuffles out, leaving the telephone which is empty.\",\"opens the window again and pulls away, passing two busy houses in the door.\",gold0-reannot,pos,unl,unl,unl,unl,\"He knocks on the door with his wrist, as he would if he still had them on.\",When she opens the door he\nanetv_4ACqWG_p1bI,13976,\"The first boy then comes back and continues playing the drums and the video continues to toggle back in forth between the two. Finally, the mic is removed and the boy\",begins moving his head wildly as if he is a rock star and they both continue performing.,is shown leaving the camera wearing it.,walks directly to the camera and is sitting on his hat playing the guitar and starting to play off congas.,drops a mark to the ground.,continues to hit the guitar.,gold1-orig,pos,unl,unl,unl,unl,The first boy then comes back and continues playing the drums and the video continues to toggle back in forth between the two.,\"Finally, the mic is removed and the boy\"\nanetv_4ACqWG_p1bI,8896,Another boy adjusts a microphone while the other begins playing the drums. The second boy,dances around and screams into the mic while the first continues to play drums.,stops playing the guitar and continues playing.,quickly rounds the knees for their opponent to let him bounce the ball off the ground.,\"pushes a bucket off stage, then strikes a match in an opposing shot.\",plays for a third time as he plays.,gold0-orig,pos,unl,unl,unl,unl,Another boy adjusts a microphone while the other begins playing the drums.,The second boy\nanetv_4ACqWG_p1bI,13975,A young Asian boy is sitting behind a trap - set smiling frantically in participation of his performance. Another toddler,is then shown having trouble taking off the microphone but is n't successful.,is shown interviewing and pulling the abdomen of the foreground.,helps with more and pans next their friend.,exits the playground and works on the kids again.,\"is sitting on a lawn and is walking out of a car, while several other kids watch on the sides.\",gold0-reannot,pos,unl,unl,unl,pos,A young Asian boy is sitting behind a trap - set smiling frantically in participation of his performance.,Another toddler\nanetv_4ACqWG_p1bI,8895,A young boy is seen smiling to the camera while sitting behind a drum set. Another boy,adjusts a microphone while the other begins playing the drums.,is shown wandering around the ring while the boy is sliding seated.,plays the piano while spinning over and over.,speaks to the camera and attempts to stand rhythmically while a young man records him.,is seen playing the guitar violin while sitting at the piano.,gold0-reannot,pos,unl,unl,unl,unl,A young boy is seen smiling to the camera while sitting behind a drum set.,Another boy\nanetv_OBDq689jDDY,15259,A woman is exercising in a room. She,steps up and down off a mat.,is shown playing the vacuum cleaner.,is playing a harmonica.,puts shaving cream on her legs.,is on screen covered with high tires.,gold0-orig,pos,unl,unl,unl,pos,A woman is exercising in a room.,She\nanetv_OBDq689jDDY,19423,She kicks her legs back and fourth while still looking at the camera. She,continues to kick her legs around.,lifts the weight up to her chin.,continues cutting off the board and standing around.,continues to speak on the phone.,continues taking the hookah while looking into the camera and smiles.,gold0-orig,pos,unl,unl,pos,pos,She kicks her legs back and fourth while still looking at the camera.,She\nanetv_OBDq689jDDY,19422,A woman is shown speaking to the camera and moves up and down on a beam. She,kicks her legs back and fourth while still looking at the camera.,kicks into the air and ends by showing a circus and moving in.,continues dancing on the mat and ends with her belly dancing.,then continues riding around in chalk and pausing to speak to the camera.,continues dancing around herself and leads into people walking by on her floor.,gold1-orig,pos,unl,unl,unl,unl,A woman is shown speaking to the camera and moves up and down on a beam.,She\nanetv_OBDq689jDDY,15260,She steps up and down off a mat. She,starts lifting one leg up as she steps onto the mat.,\"throws herself onto someone's shoulders, then dives backward again and they go a few feet back.\",starts to walk past a band and runs up the stairs as the drum goes through the background in the wind.,stands on the line and stands upright.,falls to the ground.,gold0-reannot,pos,unl,unl,unl,unl,She steps up and down off a mat.,She\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4830,\"They break through the platform and into a red plastic shoot. As they slide down, the helicopter\",gets into position and fires at it.,stops on the street.,\"rattling the same handle, arm drops like a plastic shield.\",lands in the shallow pool.,lands and slanted on the ground.,gold0-orig,pos,unl,unl,unl,pos,They break through the platform and into a red plastic shoot.,\"As they slide down, the helicopter\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4840,\"They run across an empty street, as a police cruiser whizzes by. On the chopper, someone\",takes out his phone and makes a call.,paces past a statue where a shapely blonde woman talks.,jogs into a theater with audience members.,smears his palm from the man's.,watches from the airport as the plane crashes into the crowd.,gold0-orig,pos,unl,unl,unl,unl,\"They run across an empty street, as a police cruiser whizzes by.\",\"On the chopper, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4833,\"The pair emerge from the tube, and break through several more wooden platforms before landing in a large metal dumpster of cardboard and plastic wrapping. The chopper\",holds position and hovers overhead.,closes the door and is inside to talk about the process.,gets out of control and turns the card from someone.,races down one of the large buildings in the center of the destroyed landscape.,,gold0-orig,pos,unl,unl,pos,n/a,\"The pair emerge from the tube, and break through several more wooden platforms before landing in a large metal dumpster of cardboard and plastic wrapping.\",The chopper\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4823,Someone spies scaffolding through a window across the way. They,scramble to their feet and run through the room.,landed on a city street under an outdoor sign.,are staring at someone's feet a high reach.,expression gaining on his shoulders and arms.,arrive at a camp site of the barren canyon bank.,gold0-orig,pos,unl,unl,unl,unl,Someone spies scaffolding through a window across the way.,They\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4812,\"As someone fires a few more bullets, father and son survey the scene. The bald man\",runs up to him.,points at the scrolls.,hits a yellowed wall.,wears a troubled frown.,turns away from his feet.,gold1-orig,pos,unl,unl,unl,unl,\"As someone fires a few more bullets, father and son survey the scene.\",The bald man\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4815,\"Inside the hotel, someone and someone jump over the bar and cross the hazy room. Someone\",\"inspects the area, then jogs over to the window.\",\"twirls herself around wide, then back back a somersault.\",twirls around on the floor behind him near a mat.,hands her phone to someone.,moves the machine down onto the campus.,gold1-orig,pos,unl,unl,unl,unl,\"Inside the hotel, someone and someone jump over the bar and cross the hazy room.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4819,\"Someone watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel. As it swiftly approaches them, someone\",signals to his pacing son.,desperately punches someone's forehead.,notices captain clearing moss in the upper side of the ship.,drops his football in his hands as he approaches the student by the pool.,puts his arm around someone and gives his laotong a tight smile.,gold1-orig,pos,unl,unl,pos,pos,Someone watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel.,\"As it swiftly approaches them, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4804,\"The agent fires back, then drops the blonde man's body and runs to his father. Someone\",scoops up a machine gun as he follows.,is on the side of a cliff to worry knives.,catches his pool tub.,\"stands nearby, barrels around in the debris.\",tosses someone to his feet.,gold0-orig,pos,unl,unl,pos,pos,\"The agent fires back, then drops the blonde man's body and runs to his father.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4799,\"As someone turns to his thugs with a grin, someone continues sawing at his bond. Someone\",\"cuts his hands free, as someone lunges at someone.\",catches the tip of his wand and shakes it overhead.,takes a bite on bread and undoes it against his van.,pulls off his invisibility cloak and carries it to him.,takes a seat across the hatchback.,gold0-orig,pos,unl,unl,unl,unl,\"As someone turns to his thugs with a grin, someone continues sawing at his bond.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4811,\"Someone retreats from the ballroom, as someone and someone continue their barrage. They\",\"pop up from behind the bar and shoot at the two remaining men, who go down in a storm of bullets.\",squeals to their feet.,\"swallows, then swallows hard.\",dangle from their weapons.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone retreats from the ballroom, as someone and someone continue their barrage.\",They\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4774,\"As someone pulls out the small bundle, someone drives into view. Someone\",pushes someone behind him.,enters with a start.,eyes the ugly furnishings.,leans back into the rain.,studies him for a moment.,gold1-orig,pos,unl,unl,pos,pos,\"As someone pulls out the small bundle, someone drives into view.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4808,They look up at stained glass skylights. The Americans,get on their backs and fire up at them.,take under the water until they get to the bottom.,\"reappear, as they take out the lighter and visible together with tin foil.\",hold onto the railing while performing the same tricks.,,gold1-orig,pos,unl,pos,pos,n/a,They look up at stained glass skylights.,The Americans\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4821,They duck as the chopper bombards the ballroom with its heavy artillery. The men,huddle behind the wall.,trade shards of contented plates.,stand at one of the drones and someone curtsies to them and glances over his head.,dive under a lamp stand.,step inside and achieve a military salute.,gold0-orig,pos,unl,unl,unl,pos,They duck as the chopper bombards the ballroom with its heavy artillery.,The men\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4766,\"Keeping his weapon ready, someone presses his lips together and plants his feet. Someone\",\"faces him distractedly, then nods.\",kisses his forehead and kisses his cheek.,retrieves the remote and grabs the map.,touches his lips beside it.,\"moves between it, revealing tattooed bolts in the back of his arms, then takes the sword from someone's hand.\",gold1-orig,pos,unl,unl,unl,pos,\"Keeping his weapon ready, someone presses his lips together and plants his feet.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4824,They scramble to their feet and run through the room. Machine gun fire,\"whizzes by, narrowly missing them.\",seems that cover a circular pool.,\"dodges them, and punching.\",raises their hands and points to the floor.,aims towards a hulking robot.,gold0-orig,pos,unl,unl,unl,unl,They scramble to their feet and run through the room.,Machine gun fire\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4780,Someone signals to two men. The thugs,force the americans to their knees.,give him a big wave.,sit in the back.,grab someone with his trunk.,observe as someone steps up to him.,gold1-orig,pos,unl,unl,unl,unl,Someone signals to two men.,The thugs\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4825,\"Machine gun fire whizzes by, narrowly missing them. The copter\",pulls left to follow the fleeing men.,\"shifts, then glances back.\",comes face to face.,fall past the car.,,gold0-orig,pos,unl,unl,unl,n/a,\"Machine gun fire whizzes by, narrowly missing them.\",The copter\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4820,\"As it swiftly approaches them, someone signals to his pacing son. The heavily armed vessel\",looms before the building.,rises with air force.,open up for a dumbfounded audience.,\"shake out a hand, and one marine lifts the casket.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As it swiftly approaches them, someone signals to his pacing son.\",The heavily armed vessel\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4809,The Americans get on their backs and fire up at them. The shattered panes,\"send giant glass fragments raining down on the russians, who cower amid the dust and debris.\",\"are seen with wooden horns, chunks of feet are dotted with ornate spikes.\",are closed with only effort.,are engulfed by fiery ash erupting fire.,turn to the ground.,gold0-orig,pos,unl,unl,unl,unl,The Americans get on their backs and fire up at them.,The shattered panes\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4839,The Americans walk past a limping woman. They,\"run across an empty street, as a police cruiser whizzes by.\",see hundreds of baseball lying sprawled over the pond.,stands with the soil.,carry a stretcher onto an island.,,gold1-orig,pos,unl,unl,pos,n/a,The Americans walk past a limping woman.,They\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4816,\"Someone inspects the area, then jogs over to the window. He\",watches the chopper lift off from the rooftop helipad below.,\"pans up back to someone, who leans against the wall, slightly bemused.\",climbs over the rail to find someone leaning against the car entrance.,reaches out and places her box in the inspector's seat.,rolls out of her bedroom and leaps up onto the porch.,gold1-orig,pos,unl,unl,unl,unl,\"Someone inspects the area, then jogs over to the window.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4789,Someone rests his hands on his knees and leans close to the Americans. He,beats them with his rifle.,watches as someone submerges of hair and shakes his head.,stoops up with a willow frown as he runs his board across the park.,swings upward then raises his arms.,\"looks down at them, letting them motor off.\",gold1-orig,pos,unl,unl,pos,pos,Someone rests his hands on his knees and leans close to the Americans.,He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4836,\"Below, someone and someone get to their feet. Someone\",holds his son's shoulder as they step into the street.,slaps someone's shoulder with a meek smile as the massive fur of someone's hand peers down its nose.,\"reaches to the bike's steering wheel causing someone to veer back, then plummet from the railing.\",taps someone on the back with a web.,steps at the edge of the steps and they are knocked off of the train.,gold1-orig,pos,unl,unl,unl,pos,\"Below, someone and someone get to their feet.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4837,Someone holds his son's shoulder as they step into the street. Dust and debris,drift down over police cars and frightened bystanders.,fills the glass below.,falls from the ground.,emerge from the trees.,,gold0-orig,pos,unl,unl,unl,n/a,Someone holds his son's shoulder as they step into the street.,Dust and debris\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4841,\"On the chopper, someone takes out his phone and makes a call. Someone\",walks at the head of a large crowd.,spits out one phone.,is nearest the door.,sets the box aside and follows him.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the chopper, someone takes out his phone and makes a call.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4818,Someone topples a chair as he storms from the window. Someone,watches as the helicopter makes a graceful wide turn and heads back in the direction of the hotel.,drives someone behind someone.,gaze over his manuscript with a thoughtful stare.,walks forward and sets a couple on the street.,finds someone watching the prowler from a movie store.,gold0-orig,unl,unl,unl,unl,unl,Someone topples a chair as he storms from the window.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4827,\"Someone and someone run side - by - side, and someone drops his gun as they take a flying leap out of the window. They\",rip through green netting and crash - land on a wooden platform.,rush out of the motel parking lot.,see someone as they go to go.,stand beside him on the back of his mountain.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone and someone run side - by - side, and someone drops his gun as they take a flying leap out of the window.\",They\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4801,Someone shoots down two thugs with the knife. Someone,pushes someone into a crystal chandelier.,enters from behind her head.,looks at his ex.,drives on down the deserted path.,removes them from the triangular's shelf.,gold0-orig,pos,unl,unl,unl,unl,Someone shoots down two thugs with the knife.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4807,The Americans leap behind the bar. The remaining thugs,pelt it with bullets.,peer behind the vehicle and run over a wave.,stands on their hands.,burn at the circling professors.,,gold1-orig,pos,unl,unl,unl,n/a,The Americans leap behind the bar.,The remaining thugs\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4777,\"Facing someone and the Americans, someone munches a carrot. Someone\",gives a cool nod.,hands someone a sword.,looks round with his hat.,kisses him on the cheek.,returns to his dressing table and turns off the light.,gold0-orig,pos,unl,unl,pos,pos,\"Facing someone and the Americans, someone munches a carrot.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4790,\"He beats them with his rifle. The father and son crumple, but the thugs\",haul them back on to their knees.,peer out onto the coupe.,have a great height and carry out their cards.,climb under the hood of the bus.,give chase as the car accelerates.,gold1-orig,pos,unl,unl,unl,pos,He beats them with his rifle.,\"The father and son crumple, but the thugs\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4779,\"With a clenched jaw, someone faces someone who glares out at him from behind her father's shoulder. Someone\",signals to two men.,turns off the invisibility cloak.,glances toward the window.,wears an impressed smile.,lowers the weapon into his lap.,gold1-orig,pos,unl,pos,pos,pos,\"With a clenched jaw, someone faces someone who glares out at him from behind her father's shoulder.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4792,\"Meanwhile on a rooftop, a bald man escorts someone and someone to the military grade chopper. In the ballroom, someone\",falls from someone's punches.,attaches a glimpse of a boxed envelope in an empty wall.,spots an arrow from the top and drops it on the ground.,stands facing the hourglass.,runs around an expo area in a crowded field.,gold1-orig,pos,unl,unl,unl,unl,\"Meanwhile on a rooftop, a bald man escorts someone and someone to the military grade chopper.\",\"In the ballroom, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4793,\"In the ballroom, someone falls from someone's punches. Someone\",kicks him hard in his side.,slams his glasses with petrol.,\"someone stands, someone and someone pose with columns and each take their seats.\",flees from the web which towers across the displays.,\"watches, as he lands on his feet by someone's coach.\",gold1-orig,pos,unl,unl,unl,unl,\"In the ballroom, someone falls from someone's punches.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4838,Dust and debris drift down over police cars and frightened bystanders. The Americans,walk past a limping woman.,leaves ping - generated from unmarked windy smoke.,fixedly out from another car.,arrive and fall their way to the picnic table.,slips out of their seats and rows of seats.,gold1-orig,pos,unl,unl,unl,unl,Dust and debris drift down over police cars and frightened bystanders.,The Americans\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4828,They rip through green netting and crash - land on a wooden platform. Someone,gets on his feet and looks around.,\"are in a connected drill on the walls of an elevated bridge, including a school river and other lorries.\",is being dragged by a wall by a huge fiery body of a large eight - year - old someone.,pulls out from the ceiling and lands perfectly on the edge of the roof.,,gold1-orig,pos,unl,unl,pos,n/a,They rip through green netting and crash - land on a wooden platform.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4806,Someone rises slightly from the floor and takes aim. The Americans,leap behind the bar.,\"battle their own, which throw in their mugs as rain drag off their faces.\",catch the glimpse of still.,goes faster in the barricade of indifference.,points from the jack to the joint.,gold1-orig,pos,unl,unl,unl,unl,Someone rises slightly from the floor and takes aim.,The Americans\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4800,\"Someone cuts his hands free, as someone lunges at someone. Someone\",shoots down two thugs with the knife.,hurls a ball onto the field to throw it.,\"tosses a dart at someone, who steals it with his right hand.\",\"shoots, then smiles to break back.\",\"is tall, narrow, thin and attractive.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone cuts his hands free, as someone lunges at someone.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4805,Someone scoops up a machine gun as he follows. Someone,rises slightly from the floor and takes aim.,spins down a ramp and leans to the top of the boat.,lunges after her attacker.,\"runs through the garage, shining the keys.\",thrusts his head forward.,gold0-orig,pos,unl,unl,unl,unl,Someone scoops up a machine gun as he follows.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4791,\"Someone stares boldly and someone spits. Meanwhile on a rooftop, a bald man\",escorts someone and someone to the military grade chopper.,circles a small fumbling.,hold someone's limp body to the shoulders behind her.,works someone's mohawk.,,gold1-orig,pos,unl,unl,unl,n/a,Someone stares boldly and someone spits.,\"Meanwhile on a rooftop, a bald man\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4814,\"They get into the military helicopter. Inside the hotel, someone and someone\",jump over the bar and cross the hazy room.,\"enter a narrow, hot armed stage.\",run down the hallway then jump off the ladder to the bed.,carry on their snow harnesses.,,gold1-orig,pos,unl,unl,unl,n/a,They get into the military helicopter.,\"Inside the hotel, someone and someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4797,Someone sees someone's knife behind his back. Someone,works to cut his bonds.,gives someone a shocked smile.,lurches out of the clearing.,pushes the guy forward.,\"catches it, digging for a knife.\",gold1-orig,pos,unl,unl,unl,unl,Someone sees someone's knife behind his back.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4786,\"Dancing over to the Americans, someone kicks someone's gun away. He\",shuffles over to someone's gun and sweeps it away as well.,\"fires at a red car, at the cobblestone park.\",finishes on the punch that is still attached to a gun.,\"climbs the grinds to the floor and kicks the passing gunman, keeping the sternly in his arms.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Dancing over to the Americans, someone kicks someone's gun away.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4831,\"As they slide down, the helicopter gets into position and fires at it. Someone and someone\",plummet through the shoot.,deluminator a set of pairs of ladies on a lit stand with ribbons above their feet.,watch as the attendant rolls beneath them.,dash across the paddy field and peer through the gap as someone rides close above.,climb on the ski lift.,gold0-orig,pos,unl,unl,unl,unl,\"As they slide down, the helicopter gets into position and fires at it.\",Someone and someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4775,\"Someone pushes someone behind him. Wielding a rifle, someone\",beckons a team of armed thugs out to join him.,climbs into frame and twirls furtively around the rise.,lowers the chopper onward to the transport truck.,turns on his heel and runs to the other car.,retrieves a rifle as someone makes his way to the paddy field.,gold0-orig,pos,unl,pos,pos,pos,Someone pushes someone behind him.,\"Wielding a rifle, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4803,\"Someone stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield. The agent\",\"fires back, then drops the blonde man's body and runs to his father.\",dashes off with the others.,fills a silver wardrobe on the left.,climbs out of the truck.,\"rounds the corner, leaving other bags holding them.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield.\",The agent\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4795,His thugs pick up the men from the floor and set them back on their knees. Someone,primps his dark curly hair and chews gum.,spots a diadem crumbling on a roof's rim.,puts down his soda.,\"on his chest, someone puts his seat on top of the roof and pushes his weight onto his shoulders.\",\"shine the light on his countertop, and pushes it away.\",gold1-orig,pos,unl,unl,unl,pos,His thugs pick up the men from the floor and set them back on their knees.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4768,\"Someone gives a skeptical nod. At a window, someone\",lifts the grated lid from a wooden radiator encasement.,is lit dancing with fine coat and a red jacket.,pumps a command from his wand.,looks up at someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone gives a skeptical nod.,\"At a window, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4767,\"Someone faces him distractedly, then nods. Someone\",gives a skeptical nod.,heads for the snitch.,checks his phone paper.,walks past in binoculars.,lifts his hand and pats him on the helm.,gold1-orig,unl,unl,unl,unl,unl,\"Someone faces him distractedly, then nods.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4802,Someone pushes someone into a crystal chandelier. Someone,\"stabs a blonde haired man in the leg, then takes his weapon and uses him as a human shield.\",glides to the center of the room and hugs someone whose.,flies back into the sky.,steps from the edge of the window and kneels at the piano.,stands on a swing by a swimming pool as someone crosses her arms.,gold0-orig,pos,unl,unl,unl,unl,Someone pushes someone into a crystal chandelier.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4787,The Russian gives a shrug. Someone,lowers his smiling gaze.,faces the book with one hand extended.,continues as it soars.,lowers female's gaze on her.,faces the local officer.,gold0-orig,pos,unl,unl,unl,pos,The Russian gives a shrug.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4783,\"As someone leaves with someone, someone faces someone and someone. He\",swallows a bite of carrot.,relaxes his seat and heads over.,puts the penguin in his back pocket.,'s someone and picks him up.,\"faces him, putting his eyes closed.\",gold1-reannot,unl,unl,unl,unl,unl,\"As someone leaves with someone, someone faces someone and someone.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4794,\"Someone surreptitiously reaches for the knife in his boot, as someone delivers a knee to someone's face. His thugs\",pick up the men from the floor and set them back on their knees.,tend into the german and security guards.,\"emerge from the top, combs and wizards in its snout.\",gaze into the air as they struggle to clutch bags.,scramble to the toilet transport.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone surreptitiously reaches for the knife in his boot, as someone delivers a knee to someone's face.\",His thugs\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4798,\"Gazing at his Dad, someone laughs too. As someone turns to his thugs with a grin, someone\",continues sawing at his bond.,holds his nose away.,takes off his costume.,exits him and hugs someone.,turns on the driver.,gold1-reannot,pos,unl,unl,unl,pos,\"Gazing at his Dad, someone laughs too.\",\"As someone turns to his thugs with a grin, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4813,The bald man runs up to him. They,get into the military helicopter.,dealer then glares at someone and lowers his woeful gaze.,return to the elevator doors.,run along the deck.,,gold0-reannot,pos,unl,pos,pos,n/a,The bald man runs up to him.,They\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4773,\"Gazing out, someone notices a military grade helicopter parked below. Someone\",blinks at the older american.,approaches someone who smiles at someone and saunters away.,finds someone's car drop.,nervously taps someone's cane.,faces a gorilla and hovers inside.,gold0-reannot,pos,unl,unl,unl,unl,\"Gazing out, someone notices a military grade helicopter parked below.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4776,\"Someone and someone sidle back to someone. Nearby, someone\",stares at someone's men helplessly.,leads someone away in balmoral field.,spreads his legs as he goes.,plucks a whirlwind of rice from a goblin.,\"spreads someone's arms around him like a grasping someone, who directs her through the water.\",gold0-reannot,pos,unl,unl,unl,unl,Someone and someone sidle back to someone.,\"Nearby, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4810,\"The shattered panes send giant glass fragments raining down on the Russians, who cower amid the dust and debris. Someone\",\"retreats from the ballroom, as someone and someone continue their barrage.\",faces a giant giant laying on the dusty stone walls.,falls flat on its side.,remains nothing and looks for the kill.,lashes out and kills an approaching band.,gold1-reannot,pos,unl,unl,unl,unl,\"The shattered panes send giant glass fragments raining down on the Russians, who cower amid the dust and debris.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4822,The men huddle behind the wall. Someone,spies scaffolding through a window across the way.,lifts the weight to his head and share a fighting smile.,kicks someone in the groin.,smooths up the tiles and cuts them into pieces.,,gold0-reannot,pos,unl,unl,unl,n/a,The men huddle behind the wall.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4834,The chopper holds position and hovers overhead. The chopper,makes a hard left turn.,nears the crane and he releases the falcon and then swims over the railing.,\"zooms away from the ridge, revealing the embracing hustle.\",drives the plow then ducks into a corner.,lands beside its railway cottage as it pulls away.,gold0-reannot,pos,unl,unl,unl,unl,The chopper holds position and hovers overhead.,The chopper\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4765,\"The young woman watches her father breathless. Keeping his weapon ready, someone\",presses his lips together and plants his feet.,reads a projector in small staircase.,leaves the bathroom and makes someone call from the market.,\"glances at someone, then leaves the glass.\",taps a gun on the table.,gold0-reannot,pos,unl,unl,unl,pos,The young woman watches her father breathless.,\"Keeping his weapon ready, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4826,\"The copter pulls left to follow the fleeing men. Someone and someone run side - by - side, and someone\",drops his gun as they take a flying leap out of the window.,hurries down leading him to the hall.,\"pushed his back to the office, his chest bleeding.\",sticks his head in place.,,gold1-reannot,pos,unl,unl,unl,n/a,The copter pulls left to follow the fleeing men.,\"Someone and someone run side - by - side, and someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3022,4771,\"Leaning over the encasement, someone reaches in up to his shoulder. His fingertips\",brush a small parcel within.,\"caress each other, lays them down.\",\"hang down, under his gaze and resume playing on the suburban.\",graze her bedroom past.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Leaning over the encasement, someone reaches in up to his shoulder.\",His fingertips\nanetv_uPqp30C6MDE,5004,A small child is seen sitting in a swing. The child,begins moving back and fourth while looking to the camera.,leads him down a long slide as another boy approaches to help him slide down the slide.,walks down a set of monkey bars on the ground.,spins around on a pinata on the other side at the end and the foot turns to to each side.,begins to swing around and straightens up momentum while occasionally wandering around the attempts to get off it.,gold1-orig,pos,unl,unl,unl,pos,A small child is seen sitting in a swing.,The child\nanetv_uPqp30C6MDE,5005,The child begins moving back and fourth while looking to the camera. The child,continues moving back and fourth.,slides across the monkey bars from the playground.,speaks to the camera while continuing to talk.,pauses in the end.,continues moving his arms up and down.,gold1-orig,pos,unl,pos,pos,pos,The child begins moving back and fourth while looking to the camera.,The child\nanetv_uPqp30C6MDE,14455,A young baby is outside in a swing dressed in a long sleeve furry one piece. The baby,begins to slow down and smiles at the person standing in front of them as they begin to film the scenery behind them.,brings back the handle until the edge of the first slide read the top the day and then missed.,is playing with curlers while the adult lady begins to solve it.,\"finally pulls the large dog forward in front, one of the clips pulling its horn back and forth.\",\"slides the rod on a foam, and then cries.\",gold0-orig,pos,unl,unl,unl,unl,A young baby is outside in a swing dressed in a long sleeve furry one piece.,The baby\nlsmdc3048_LITTLE_FOCKERS-23105,158,Someone tauntingly shrugs his hands apart. Then they,go their separate ways.,escort her into an elevator.,return to the original room.,\"gaze at each other, mystified.\",,gold1-orig,pos,unl,pos,pos,n/a,Someone tauntingly shrugs his hands apart.,Then they\nlsmdc3048_LITTLE_FOCKERS-23105,157,Someone gives a mock scowl. Someone,tauntingly shrugs his hands apart.,stares at the team's score below.,eats a set of spaghetti in an constructed club.,laugh at a senator.,nods happily and leaves indoors.,gold1-orig,pos,unl,unl,unl,pos,Someone gives a mock scowl.,Someone\nanetv_Jsx38_s3Mnc,19092,Man is walking into a room and stands in font of a table. the man,take out the laces of the shoes and start polishing them with a little sponge and shoe varnish.,is talking about the cleaning company while you are still painting hardwood ground.,holds the barbel up with his hands and begins polishing the white flooring.,clips the beer on the ice while the man continues drinking beer next to the sink.,,gold0-orig,pos,unl,unl,pos,n/a,Man is walking into a room and stands in font of a table.,the man\nanetv_Jsx38_s3Mnc,10558,The man then begins mixing the items and polishing a pair of shoes. The man,rubs the shoes all down and ends by tying them and presenting them to the camera.,shows off the proper picture of him and the boy who is done fixing the cue.,continues to cut the piece with the different peel he all lined up.,rubs the gel conga with his hand to demonstrate how he does it.,mixes various ingredients together in the pan after shaving them all down.,gold0-orig,pos,unl,unl,unl,unl,The man then begins mixing the items and polishing a pair of shoes.,The man\nanetv_Jsx38_s3Mnc,10557,A man is seen walking into frame in front of various objects laid out on a table. The man then,begins mixing the items and polishing a pair of shoes.,puts a candy cream on the ground and tosses it across the table.,cuts candy adhesive along and throws it down.,begins cutting the grass and showing a bow string.,begins wiping out clothes into a plastic bucket.,gold1-orig,unl,unl,unl,unl,unl,A man is seen walking into frame in front of various objects laid out on a table.,The man then\nanetv_Jsx38_s3Mnc,19093,The man take out the laces of the shoes and start polishing them with a little sponge and shoe varnish. the man,put the laces again in the shoes and keep standing in the room.,returns there for the other man alone.,sits in the mirror his shoes washing for showcase strip movements.,cut all the top of the bag a few times and then throw the shoes.,lifts the shoes off of the board and proceeds to wipe the shoe with the cloth.,gold0-orig,pos,unl,unl,unl,pos,The man take out the laces of the shoes and start polishing them with a little sponge and shoe varnish.,the man\nanetv_I4mFeQwqjnE,16591,People in black play dodge ball on a court. A guy,dives to the ground to prevent ball from hitting him.,touches the belly at the bottom of the floor.,is doing his ball in a field.,takes a ball using the cue ball to hit a goal.,throws a shot put.,gold0-orig,pos,unl,unl,unl,unl,People in black play dodge ball on a court.,A guy\nanetv_PKEw32TJRWs,3992,The man falls of the boat and its doing wakeboard again. man,is with one foot holding the rope.,is jumping off the slack line.,is water surfing on a water surfer.,swings the clothes and jump in.,,gold1-orig,pos,unl,unl,unl,n/a,The man falls of the boat and its doing wakeboard again.,man\nanetv_PKEw32TJRWs,19218,An old black and white video is shown before cutting to several clips of boats being controlled and driven through the water. A man,is water skiing very fast.,is seen talking to the camera leading on skis and pulling his hood across to the side.,\"gets out of the water and, removing off a pair of skis, is pulled off of the boat.\",gets up from a bike and slides across the bank of the boat.,is then seen followed with a large fish and eventually riding down the snowy hill.,gold0-orig,pos,unl,unl,unl,unl,An old black and white video is shown before cutting to several clips of boats being controlled and driven through the water.,A man\nanetv_PKEw32TJRWs,19219,A man is water skiing very fast. He,is seen water skiing for a long period of time.,\"are shown on ways, while in a row going over the river.\",swims very tight.,are playing again standing.,\"in the river is shown, different people are on inflatable rafts.\",gold0-orig,pos,unl,unl,unl,unl,A man is water skiing very fast.,He\nanetv_RULNhPrXnfA,1834,A man is shown standing in front of a blue background as many harmonicas are shown and he starts playing them. He,is then shown speaking into the camera and going into detail with regards to the products features.,rides a horse into a shed and jumps into it.,\"continues as he talks, showing off his mind and throws them on to the man playing the sand very lightly.\",continues doing quick jumps on the machine.,,gold0-orig,pos,unl,unl,unl,n/a,A man is shown standing in front of a blue background as many harmonicas are shown and he starts playing them.,He\nanetv_RULNhPrXnfA,1836,He shows off how many he has in his coat and continues talking. He,is then shown playing another harmonica as he gives instruction on it.,\"sprays it, then shows how it is used to give him the haircut.\",pauses to speak to his hairdresser and speak for a while.,picks up a jack and plugs the needle into the wheel.,,gold1-orig,pos,unl,unl,unl,n/a,He shows off how many he has in his coat and continues talking.,He\nanetv_RULNhPrXnfA,1837,He is then shown playing another harmonica as he gives instruction on it. He,speaks some more and shows his harmonica again as the video goes to an end title screen that reads howcast original.,\"then places the drums together, and then talks to the camera again.\",picks up his way up and begins to talk on the tool again.,\"continues playing and longer looking back to her camera, then starts playing a set of drums.\",jumps back and plays the drums.,gold0-orig,pos,unl,unl,unl,unl,He is then shown playing another harmonica as he gives instruction on it.,He\nanetv_RULNhPrXnfA,1835,He is then shown speaking into the camera and going into detail with regards to the products features. He,shows off how many he has in his coat and continues talking.,shakes the arm of the man.,\"is in some looking of the camera that says no inviting in, not know what that is he is doing.\",ends showing some change of various ingredients.,is then shown instructs how to take the painted path.,gold0-reannot,pos,unl,unl,unl,unl,He is then shown speaking into the camera and going into detail with regards to the products features.,He\nanetv_iPk4GeFFcTQ,12544,An athletic man is seen running down a long track and throwing a javelin off into the distance with others measuring his throw. The man walks away and high fives a man in the crowd while his score is shown and another,steps up to the side.,fails before attempting to solve the giant by the hammer.,throw him into the air.,sprinter takes a shot in slow motion to run.,close up on skateboards.,gold0-orig,pos,unl,unl,unl,unl,An athletic man is seen running down a long track and throwing a javelin off into the distance with others measuring his throw.,The man walks away and high fives a man in the crowd while his score is shown and another\nlsmdc3040_JULIE_AND_JULIA-18080,11747,He puts it on as he strides toward the stairs. He,\"grabs his coat from a hook, picks up his bag, and hurries downstairs.\",\"proceeds to a water tie on a well - familiar landing, toppling stairs.\",\"turns towards someone, his face solemn and uncomfortable.\",is holding a sign for support.,approaches a flat - topped bowl and talks to some colleagues.,gold0-orig,pos,unl,unl,unl,pos,He puts it on as he strides toward the stairs.,He\nlsmdc3040_JULIE_AND_JULIA-18080,11749,\"Back in Paris, someone carefully wraps a pot lid in newspaper and packs it into a box. Facing him, someone\",fidgets with her cardigan as she gazes forlornly around the half - packed kitchen.,reads a card with a note.,stares over at him with the brown specs in his hand.,gulps down the bottle.,,gold1-orig,pos,unl,unl,unl,n/a,\"Back in Paris, someone carefully wraps a pot lid in newspaper and packs it into a box.\",\"Facing him, someone\"\nlsmdc3040_JULIE_AND_JULIA-18080,11748,\"He grabs his coat from a hook, picks up his bag, and hurries downstairs. Back in Paris, someone\",carefully wraps a pot lid in newspaper and packs it into a box.,sets his bottle on a cubby pad on a picnic deck nearby.,strides up from a worn bar and looks at the letter beneath shades of green.,puts the bug down on the table beside someone.,sits at the sink with a rag and wipes off his hands.,gold1-orig,pos,unl,unl,unl,pos,\"He grabs his coat from a hook, picks up his bag, and hurries downstairs.\",\"Back in Paris, someone\"\nanetv_JZz2O0y0ufY,7320,A man bends down and picks up a piece of wood and balance it onto a standing log. The man then,backs up and raises his axe above his head.,\"puts it around his shoulders, then continues to mow more grass.\",dismounts and begins to break the wood on another ladder.,chops the wood as he is down.,,gold0-orig,pos,unl,unl,pos,n/a,A man bends down and picks up a piece of wood and balance it onto a standing log.,The man then\nanetv_JZz2O0y0ufY,2956,He then holds up an ax. Finally he,swings it back down.,takes out the hammer and brightens.,yanks his chain off.,takes and leap into the pit.,cuts it off with the shears.,gold0-orig,pos,unl,unl,pos,pos,He then holds up an ax.,Finally he\nanetv_JZz2O0y0ufY,2955,A man is seen laying out a piece of wood. He then,holds up an ax.,hits a piece of wood with a sander.,finishes moving paper and lays down on the floor.,begins to cut wax pieces out of the pumpkin.,uses a tool to scrape the plaster.,gold1-orig,pos,unl,unl,unl,unl,A man is seen laying out a piece of wood.,He then\nanetv_JZz2O0y0ufY,7321,The man then backs up and raises his axe above his head. The video is slowed down and the man brings the axe down with force and he,cuts the piece of wood in half.,flips his jacket again.,is dragged along the path towards the backyard.,pitchfork off the ground clearing the hedge away from a gate.,,gold0-orig,pos,unl,unl,unl,n/a,The man then backs up and raises his axe above his head.,The video is slowed down and the man brings the axe down with force and he\nlsmdc3030_GROWN_UPS-14056,10952,\"Smiling bemusedly, he follows the out another door and down a hallway. He\",peeks around a corner.,stops and lifts his own gun.,sits in a wheelchair.,picks it up and knocks the comedian up slightly.,climbs a glass staircase landing onto the marble floor.,gold1-orig,pos,unl,unl,unl,pos,\"Smiling bemusedly, he follows the out another door and down a hallway.\",He\nanetv_fT7dpRY0DTo,9556,The man applies grout to the gaps between the tiles. The man,measures and cuts a tile for installation in the shower.,completes the last bagpipe.,finishes welding the side of the class.,smooths cement on the tile and continues on his story.,\"carefully wipes his hands, then applies the chipped glue onto the carpet.\",gold0-orig,pos,unl,unl,unl,unl,The man applies grout to the gaps between the tiles.,The man\nanetv_fT7dpRY0DTo,9554,A man plasters and installs tiles on the wall. The man,talks to the camera.,uses the tiling to replace his inner gate.,puts a tire on the bike.,removes sweat from the wall.,,gold0-orig,pos,unl,unl,unl,n/a,A man plasters and installs tiles on the wall.,The man\nanetv_fT7dpRY0DTo,9553,The camera pans over the walls of a shower stall. A man,plasters and installs tiles on the wall.,enters filling the chamber outside.,\"appears and then goes around the chair, smeared it with a towel, and place it.\",swings all over the floor and starts trimming the hedge.,is seen sitting on stilts on his way down the shop.,gold0-orig,pos,unl,unl,unl,unl,The camera pans over the walls of a shower stall.,A man\nanetv_fT7dpRY0DTo,9557,The man measures and cuts a tile for installation in the shower. The man,installs the soap dish.,dipped the leaves in the pan.,continues washing and brushing the short purple hair.,draws more and places tiles.,,gold0-reannot,pos,unl,unl,pos,n/a,The man measures and cuts a tile for installation in the shower.,The man\nanetv_fT7dpRY0DTo,9558,The man installs the soap dish. Scrolling text,is shown on a blue screen.,comes out a screen.,appears on screen on a black screen that should appear outside a location.,appears on screen as a man sitting on a wheelchair throws his other bare feet over the skateboard.,,gold1-reannot,pos,unl,unl,unl,n/a,The man installs the soap dish.,Scrolling text\nanetv_fT7dpRY0DTo,9555,The man talks to the camera. The man,applies grout to the gaps between the tiles.,holds up a second broom to demonstrate wedges techniques.,walks out and then clip the shaver with a man.,peels some from the leaves.,stands behind the rubbing liquid and talks to the camera.,gold0-reannot,pos,unl,unl,unl,unl,The man talks to the camera.,The man\nanetv_aNE5ZWD5E34,2868,\"A man sprays sunscreen on his back, and then he sprays sunscreen to the back of a woman. After, a man sprays sunscreen on his arm and back, other people\",spray sunscreen on their legs.,join the group on wipes.,sit as the two models wear contact lenses.,get out and rinse the dog.,,gold0-orig,pos,unl,pos,pos,n/a,\"A man sprays sunscreen on his back, and then he sprays sunscreen to the back of a woman.\",\"After, a man sprays sunscreen on his arm and back, other people\"\nanetv_aNE5ZWD5E34,2866,\"Two reporters talk in a tv set. Girls talk in a beach, then girls\",\"spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products.\",are shown preparing to walk around the water on skis.,smokes a fishing line and joke around each other.,stand in the center of an class's front room while the girl explains the fitness exercises.,are shown performing ballet jumps.,gold0-orig,pos,unl,unl,pos,pos,Two reporters talk in a tv set.,\"Girls talk in a beach, then girls\"\nanetv_aNE5ZWD5E34,7655,Several shots are shown of people putting sunscreen on as well a close ups of sunscreen. Another woman,speaks to the camera while others continue to put sun screen on each other.,is seen riding a boat and leads into her riding a boat on a wakeboard.,leads to a woman sitting at a table using a eating tube.,is shown speaking as well as water skiing on the beach and starts to dance.,is seen riding on a bike and as well as a woman walking behind an instrument.,gold0-orig,pos,unl,unl,unl,pos,Several shots are shown of people putting sunscreen on as well a close ups of sunscreen.,Another woman\nanetv_aNE5ZWD5E34,2867,\"Girls talk in a beach, then girls spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products. A man sprays sunscreen on his back, and then he\",sprays sunscreen to the back of a woman.,starts washing dishes in a sink.,rinses his face from a toothbrush.,rinses a towel and combs the hair.,,gold0-orig,pos,unl,unl,unl,n/a,\"Girls talk in a beach, then girls spray sunscreen on the back of women, also a woman wearing a white coat talks and shows products.\",\"A man sprays sunscreen on his back, and then he\"\nanetv_aNE5ZWD5E34,7654,Two people are seen hosting a news segment that leads into people speaking to the camera. Several shots,are shown of people putting sunscreen on as well a close ups of sunscreen.,are shown of people practicing shears while several others watch on the side.,are shown of people riding around on the fence.,are then shown of people playing a game of progress.,are shown of people playing shuffleboard one after the other.,gold1-reannot,pos,unl,unl,unl,pos,Two people are seen hosting a news segment that leads into people speaking to the camera.,Several shots\nlsmdc0023_THE_BUTTERFLY_EFFECT-59440,9952,Someone opens the window and checks out his Psych project: a small maze has several flatworms at one end and a bowl of cornflakes at the other. Cricket,puts on her someone as someone watches the worms.,\"sit on hammers a wood desk, and a framed picture of the portly man with a test shirt brings them to him.\",are wrapped through the seven string.,\"is open, falling pages and painters.\",steps off the light and peers around the room.,gold1-reannot,pos,unl,unl,unl,pos,Someone opens the window and checks out his Psych project: a small maze has several flatworms at one end and a bowl of cornflakes at the other.,Cricket\nanetv_1f_EQl4C700,5743,The women enjoy a bite of the dish together. The host,pours a cup of tea to enjoy.,gets up from a bench and watches him carry brown leaves in the road.,adds pasta on a cooking chicken.,instructs the staff to sit and enjoy a meal.,,gold0-orig,pos,unl,unl,pos,n/a,The women enjoy a bite of the dish together.,The host\nanetv_1f_EQl4C700,5739,Flour is added to the bowl and everything is blended together. Eggs,are added to the mixture and blended in with a blender.,are cooked in large bowl in top pots.,\"roll to the side, cutting and ready.\",\"are in the bowl, the mixture is added to the bowl.\",are shown being removed and placed in chocolate.,gold1-orig,pos,unl,unl,unl,pos,Flour is added to the bowl and everything is blended together.,Eggs\nanetv_1f_EQl4C700,5740,Eggs are added to the mixture and blended in with a blender. The woman,adds a liquid extracts as well as additional powdered flour to the dish.,fills the cake with four slices of lemon.,garnishes the mix with a measuring spoon.,pours the mixture in a cup and mixes it with the mixer.,puts to the pot with vanilla and cuts it.,gold0-orig,pos,unl,unl,unl,pos,Eggs are added to the mixture and blended in with a blender.,The woman\nanetv_1f_EQl4C700,5742,The host pours the ingredients into a pan then cooks them in an oven. The women,enjoy a bite of the dish together.,bake plates with a meal throughout.,puts the cookies on the cake they are over ready to eat.,adds some more cooked food for the spoonful.,,gold0-reannot,pos,unl,unl,pos,n/a,The host pours the ingredients into a pan then cooks them in an oven.,The women\nanetv_1f_EQl4C700,5738,Different people enjoy having a cup of tea together. A woman,blends the holds up a greased pan then adds a yellow butter to a bowl.,\"puts a arm around her father sitting up, pacing behind her.\",is seen singing a baton.,comes in and whispers a liquid to him.,wearing a black plaid shirt comes to belly dancing and walk while a woman enters.,gold1-reannot,pos,unl,unl,unl,unl,Different people enjoy having a cup of tea together.,A woman\nanetv_1f_EQl4C700,5741,The woman adds cubed fruit to the mixture and stirs it with a spatula. The host,pours the ingredients into a pan then cooks them in an oven.,shows all the ingredients needed to make a drink of water.,starts rubbing the surface of the pasta on the dish.,\"bakes the pasta, and cuts half the pot and places it to the pan.\",sips icing behind a small straw.,gold0-reannot,pos,unl,unl,unl,unl,The woman adds cubed fruit to the mixture and stirs it with a spatula.,The host\nanetv_xSiT1pgUEm8,13024,They use the oars to sail themselves down the rapids. They,are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids.,are playing on the beach again.,have started the oars move on.,extend their right hand to the camera.,float along a stream.,gold0-orig,pos,unl,unl,pos,pos,They use the oars to sail themselves down the rapids.,They\nanetv_xSiT1pgUEm8,13026,As they sail through they come across another group of rafters in the same rapids. They,continue their journey through the rough water of the rapids.,are paddling through the water with the people of the water.,are clawing in the inflatable together.,watch from the rough waters as they continue riding down the river.,continue to spin around and pass people towards the end.,gold0-orig,pos,unl,unl,unl,unl,As they sail through they come across another group of rafters in the same rapids.,They\nanetv_xSiT1pgUEm8,13025,They are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids. As they sail through they,come across another group of rafters in the same rapids.,\"wave, everyone pit with joy.\",help him jump off the bridge of the water.,fall into wave with water of snowflakes of many formations towards them.,\"come upon water, just watching them.\",gold0-orig,pos,unl,unl,unl,pos,They are trying hard to stay afloat in the turbulent water as the boat gets bumpy sailing through the rapids.,As they sail through they\nanetv_xSiT1pgUEm8,13023,They are all dressed in red gears and yellow helmets. They,use the oars to sail themselves down the rapids.,put off their goggles.,takes the paddle out of their hands and cheers on.,are putting bikes into a line on the bicycle.,do a gymnastics routine on the bars.,gold0-reannot,pos,unl,unl,unl,unl,They are all dressed in red gears and yellow helmets.,They\nanetv_Q3FkUH9kImU,16995,A man is standing in a room talking. He,is showing a shuffleboard.,is using a boxing tool in a room.,is using an iron on a pair of skis.,is holding a ball in his hair.,plays two drums with the hose.,gold0-orig,pos,unl,unl,unl,unl,A man is standing in a room talking.,He\nanetv_Q3FkUH9kImU,16997,He walks to the end of the shuffleboard and another man is on the other side. He,begins playing by throwing one down the board.,repeatedly throws the stick along the track after the man.,jumps and talks to the camera with various videos.,gets off the instrument and sits down before the horse.,walks up to the pinata and holds out it.,gold1-orig,pos,unl,unl,unl,unl,He walks to the end of the shuffleboard and another man is on the other side.,He\nanetv_Q3FkUH9kImU,16996,He is showing a shuffleboard. He walks to the end of the shuffleboard and another man,is on the other side.,yells as he grasps with loud papers.,sits on the exercise while talking to the camera.,comes on to talk.,runs up behind him.,gold1-orig,pos,unl,unl,pos,pos,He is showing a shuffleboard.,He walks to the end of the shuffleboard and another man\nanetv_6NQl2Vcf0P0,14775,The man then hog ties the cow. The man gets back on his horse and we,pan up and see the scoreboard.,see his delight carving the side of the road with a pole.,see that name of the mountain range.,see the real product on the horse.,see the man close next to the farm.,gold1-orig,pos,unl,unl,unl,unl,The man then hog ties the cow.,The man gets back on his horse and we\nanetv_6NQl2Vcf0P0,14774,The man lassos a cow and throws it to the ground. the man then,hog ties the cow.,dismounts and then dismounts.,lays the dog down on the ground.,jumps onto the horse and runs the calf.,ropes a calf with a lasso rope and jumps over and over.,gold0-orig,pos,unl,unl,unl,pos,The man lassos a cow and throws it to the ground.,the man then\nanetv_6NQl2Vcf0P0,14772,A man in a rodeo owing is performing a stunt. A man,is riding a horse in a rodeo ring.,joins the discus athlete.,washes his arm with an ax.,is showing off his skateboard and talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a rodeo owing is performing a stunt.,A man\nanetv_6NQl2Vcf0P0,14773,A man is riding a horse in a rodeo ring. the man,lassos a cow and throws it to the ground.,is standing walking back and forth bouncing up and down.,is getting out of the horse in slow motion.,in a green suit mounts a horse then gets up.,,gold0-orig,pos,unl,unl,unl,n/a,A man is riding a horse in a rodeo ring.,the man\nlsmdc1010_TITANIC-77081,18369,\"Brunette girl stands on a railing as her father grips her from behind. Sitting a few feet away, someone\",sketches them with a stick of charcoal.,whips her hair above his eye and hugs her friend.,kisses her body and butt.,moves foot to touch knees.,\"peers around it as he leaves a bullet, then into the position beside the candlestick board.\",gold0-orig,pos,unl,unl,unl,unl,Brunette girl stands on a railing as her father grips her from behind.,\"Sitting a few feet away, someone\"\nlsmdc1010_TITANIC-77081,18370,\"Sitting a few feet away, someone sketches them with a stick of charcoal. Crewmen\",walk dogs on leashes.,\"in his dark space, he follows a middle - aged man with long dark hair.\",\"gazes admiringly at someone, who points downward and stares at him, then resumes his stunned gaze.\",\", some nude figures walk from the library to an fire fountain.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Sitting a few feet away, someone sketches them with a stick of charcoal.\",Crewmen\nlsmdc1010_TITANIC-77081,18378,She peeks towards him from the corner of her eyes. Someone,waves his hand in front of someone's face.,looks up as she works at someone's feet.,stares as someone finds an unfinished stone.,turns away and walks back towards the store.,,gold1-orig,pos,unl,unl,pos,n/a,She peeks towards him from the corner of her eyes.,Someone\nlsmdc1010_TITANIC-77081,18377,She glances in his direction then looks away. She,peeks towards him from the corner of her eyes.,\"steps closer, closing her eyes and gives a brief nod.\",\"continues through the restaurant, then turning.\",\"sits down on the couch, reading.\",\"finds him, smiles.\",gold0-orig,pos,unl,unl,unl,unl,She glances in his direction then looks away.,She\nlsmdc1010_TITANIC-77081,18374,Someone stepped to a railing on an upper deck behind someone. Someone,turns and glances at her then grins at someone.,slams someone onto the table and stumbles.,peers up a corridor and a piece of wood.,\"gets up and flees, then turns to someone.\",heads around the side of the ship.,gold1-orig,pos,unl,unl,unl,pos,Someone stepped to a railing on an upper deck behind someone.,Someone\nlsmdc1010_TITANIC-77081,18376,Someone stares up at someone. She,glances in his direction then looks away.,\"looks at the colonel, then starts dancing.\",\"studies another envelope someone's phone, which is now covered with text.\",releases his smiling buddy.,stands chatting and beautiful.,gold1-orig,pos,unl,unl,unl,pos,Someone stares up at someone.,She\nlsmdc1010_TITANIC-77081,18373,Someone gazes across the ship. Someone,stepped to a railing on an upper deck behind someone.,\"reaches out, releasing propellers of the body.\",turns to his visitors as the secretary closes office door.,\"leaps out of the water tower, into the building.\",bounds into fire and jumps around a pillar.,gold0-orig,pos,unl,unl,unl,unl,Someone gazes across the ship.,Someone\nlsmdc1010_TITANIC-77081,18380,\"They exchange words, and someone strides off. Someone\",rolls his eyes and trails after her.,\"steps down the steep of the hilltop, towards the red autumn tree.\",pokes a hole at her throat.,\"checks the computer file, making sure the books are not in their comical sacks.\",,gold1-orig,pos,unl,unl,unl,n/a,\"They exchange words, and someone strides off.\",Someone\nlsmdc1010_TITANIC-77081,18375,Someone turns and glances at her then grins at someone. Someone,stares up at someone.,watches someone's colleague take a deep breath.,catches up to someone.,walks off after someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone turns and glances at her then grins at someone.,Someone\nlsmdc1010_TITANIC-77081,18371,Crewmen walk dogs on leashes. The brown - haired Irishman,extends his hand to someone.,watches the company and their families.,walks to her phone patch as buckbeak welds the worker's trunk.,settles coins into the urn.,takes the rest of the procession.,gold0-reannot,pos,unl,unl,unl,unl,Crewmen walk dogs on leashes.,The brown - haired Irishman\nlsmdc1010_TITANIC-77081,18368,Someone stands and leaves the table. Brunette girl,stands on a railing as her father grips her from behind.,\"faces someone, who's brushing a tasseled disks on her father's hand.\",holds a leash as the mutant bumps a thug.,gulps up the cake glass.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone stands and leaves the table.,Brunette girl\nlsmdc3050_MR_POPPERS_PENGUINS-24219,42,\"At a nearby table, he pulls a chair out for someone. Someone\",eyes the corner table.,gazes at her with a cautious stare.,presents someone's handcuffs.,just suppresses a chuckle and waves.,,gold0-orig,pos,unl,unl,pos,n/a,\"At a nearby table, he pulls a chair out for someone.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24219,41,\"Lovey exchanges a look with Captain. At a nearby table, he\",pulls a chair out for someone.,\"winks at someone, who sits behind his desk.\",prepares bottles to his potatoes.,picks up two leaves.,faces a drawing with a tall tomato knife at its center.,gold0-orig,pos,unl,unl,pos,pos,Lovey exchanges a look with Captain.,\"At a nearby table, he\"\nlsmdc3050_MR_POPPERS_PENGUINS-24219,43,Someone eyes the corner table. He,\"forces a smile, then shoots the corner table another glance.\",tears off the front of him and he falls backward.,\"his grandma's open, he studies it.\",\"'s someone and his friends smile as someone holds up the glass, and directs it on to someone.\",light on someone coat is brasil and someone's eyes burst into flames and flames hammer in the snow.,gold1-orig,pos,unl,unl,unl,unl,Someone eyes the corner table.,He\nlsmdc3050_MR_POPPERS_PENGUINS-24219,44,\"He forces a smile, then shoots the corner table another glance. Someone looks at the table again, and someone\",follows his tense gaze.,grabs the gun as a cop.,stares deep into his eyes.,beats the muscular girlish dancer up by his hind legs.,bites out in cash.,gold0-orig,pos,unl,unl,unl,unl,\"He forces a smile, then shoots the corner table another glance.\",\"Someone looks at the table again, and someone\"\nanetv_p-vfyM7ew04,3371,A man has various bottles of a brand of ski waxes. He,takes each bottle and spreads it along the ski.,starts using a different tool as he completes for skiing.,walks indoors and do a long jump into a sand pit.,is shown preparing to ski at a skate square.,,gold0-orig,pos,unl,unl,pos,n/a,A man has various bottles of a brand of ski waxes.,He\nanetv_p-vfyM7ew04,6781,A person is seen rubbing a piece of soap along a board and moving his hands across to feel the texture. He,uses more tools on the ski to sharpen the blades using his hands.,dips with to a mat to the person's eyes while still looking to the camera.,backflips all along the floor as well as putting the makeup on a man.,ends jumping the floor and spinning far around.,continues adding shots onto the finished product in the end.,gold0-reannot,pos,unl,unl,unl,pos,A person is seen rubbing a piece of soap along a board and moving his hands across to feel the texture.,He\nanetv_HCraAphAW1A,6246,A person in a black t - shirt clips the nails on the front paws of a brown and tan speckled cat. A brown and tan speckled cat,is lying on a white cushion when a person walks in holding a pair of red handled nail clippers.,comes on the cat for a little bit before drawn to the cat.,is seen sitting on a small table in front of a table with a wooden container sharpener.,looks like relieved the green cat on nails.,is sitting on a wooden chair making it to the camera.,gold1-orig,pos,unl,unl,unl,unl,A person in a black t - shirt clips the nails on the front paws of a brown and tan speckled cat.,A brown and tan speckled cat\nanetv_HCraAphAW1A,6247,The person cuts the forepaws of the cat as the cat watches on. The person,finishes cutting the cat's nails and pets the cats head and shows the clippers close to the camera before walking away.,\"pulls the cat's claws in circles, gently spins the cat, resumes marching.\",picks up the cat and continues to pull it on her hind legs.,continues rubbing their lower nails as the cat strokes the cat's nails.,continues carving dog nails and different moves.,gold0-orig,pos,unl,unl,unl,unl,The person cuts the forepaws of the cat as the cat watches on.,The person\nanetv_yuxoNmlNcc8,17864,A flag is shown waving where it is stuck in the ground. A group of people,\"are standing outside the building, some eating.\",emerge from a snow dune area.,are sitting down between one of them.,is riding around on the hiding court.,,gold1-orig,pos,unl,unl,unl,n/a,A flag is shown waving where it is stuck in the ground.,A group of people\nanetv_gU81ZXdYh7o,1313,A boy in an orange shirt is standing in a room. He,starts punching a punching bag.,does a flip and bounce.,looks with the bottle and starts to laugh.,begins aiming the dart on the floor.,discusses several signs of action on the tv.,gold1-orig,pos,unl,unl,unl,pos,A boy in an orange shirt is standing in a room.,He\nanetv_gU81ZXdYh7o,1314,He starts punching a punching bag. The punching bag,moves in the air.,is over the bed.,tries to turn around to see what is in the machine.,is sitting on the floor.,falls down onto the ground.,gold1-orig,pos,unl,unl,unl,pos,He starts punching a punching bag.,The punching bag\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7523,\"As the innkeeper leads him, a serving boy comes out with tankards full of ale. Someone\",takes one and drinks from it.,'s in a kitchen.,\"leans forward, guides the levers to a right position.\",lies and draws a handful of fat from one ear.,grasps a piece of sheet paper with a hand gesture and marches toward the suv.,gold0-orig,pos,unl,unl,unl,unl,\"As the innkeeper leads him, a serving boy comes out with tankards full of ale.\",Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7528,\"The curricle continues on its way, someone perched on the back. Now, he\",is standing in the parlor as people enter.,stares sadly at the miserable owl.,jogs into a pizza line.,slides the cage gap and stops.,dangles nearby dirt floating on the road.,gold0-orig,pos,unl,unl,unl,unl,\"The curricle continues on its way, someone perched on the back.\",\"Now, he\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7527,\"She quickly scampers off across the lawn. The curricle continues on its way, someone\",perched on the back.,climbing up the ladder in barge fighting.,\"steps backward, frowning and seeing his teammates like everyone.\",moving over her left shoulder to backward.,,gold0-orig,pos,unl,pos,pos,n/a,She quickly scampers off across the lawn.,\"The curricle continues on its way, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89786,7526,She spies a two - wheeled curricle approaching through the trees. She quickly,scampers off across the lawn.,pauses and opens a door with a slight now.,twists someone's hair and does so.,waggles a grassy glance up at us.,,gold0-orig,pos,unl,unl,unl,n/a,She spies a two - wheeled curricle approaching through the trees.,She quickly\nanetv_MiTIi_QYt2k,11494,A person is then seen holding a rag and wiping down the bench. More ingredients,are mixed afterwards that leads into more wiping down with the rag.,are shown as well as speaking to the camera with shots of people working around table.,are shown then being shown when speaking to the camera.,are seen sitting in the sink and transitions into a bowl of soapy water.,are shown along the sides.,gold1-orig,pos,unl,unl,unl,pos,A person is then seen holding a rag and wiping down the bench.,More ingredients\nanetv_MiTIi_QYt2k,11493,A close up of a wooden bench is seen followed by a person mixing ingredients together. A person,is then seen holding a rag and wiping down the bench.,pushes a breeze block and hammers it to the side while talking to the camera.,mixes ingredients into a pan and pours leaves into the water.,pours several ingredients into the bowl.,mixes the ingredients with a bowl of balls and places it into the pan.,gold1-orig,pos,unl,unl,pos,pos,A close up of a wooden bench is seen followed by a person mixing ingredients together.,A person\nanetv_LgoMRWkBDkQ,12499,A man takes out the ice over the windows of a car. A person,stand watching a man takes out ice on a car.,is seen walking onto a sandy sidewalk alongside a woman talking while the camera captures him from several angles.,grabs a fishing pole.,takes a beer down from a pipe.,,gold1-orig,pos,unl,unl,unl,n/a,A man takes out the ice over the windows of a car.,A person\nanetv_a9ItMklOTyE,13741,Then on a field there is men playing a game throwing the ball. Some coaches,are walking around with hats to keep the sun out of their eyes.,are playing hurling the field and their coaches and other coaches are watching on the side because he has a problem by his coach.,\"put, with another coach on is trying to score more time with the goal.\",chasing him with who is watching him while also in a multicolored outfit.,are shown punching drums in the background and catching their running hit in their hands as they go.,gold0-orig,pos,unl,unl,unl,unl,Then on a field there is men playing a game throwing the ball.,Some coaches\nanetv_a9ItMklOTyE,13740,It looks like this is an arabic language that is being written or something. Then on a field there,is men playing a game throwing the ball.,is no place there.,is a black patrol in front of the camera.,'s a website in it and a saxophone.,are several men on folders and pieces.,gold0-orig,pos,unl,unl,unl,unl,It looks like this is an arabic language that is being written or something.,Then on a field there\nanetv_a9ItMklOTyE,13742,\"Some coaches are walking around with hats to keep the sun out of their eyes. The game looks pretty intense, one man\",puts all of his might into one of the throws he make.,who had a date.,wearing orange shorts is popping the ball out of the field and walks back to piling ties.,skiing back and fourth.,takes him off the net.,gold0-orig,pos,unl,unl,unl,unl,Some coaches are walking around with hats to keep the sun out of their eyes.,\"The game looks pretty intense, one man\"\nanetv_hJKX5ZulTgI,3946,We see a black hair drying spinning on the screen. The woman,\"is getting her hair styled in the background by another woman, while text covers the screen with instructions.\",vacuum her hooves with a leaf blower.,in black shorts is sitting on a sidewalk in front of a girl's face.,removes the cloth then points to a towel.,locates an elderly lady.,gold0-orig,pos,unl,unl,unl,unl,We see a black hair drying spinning on the screen.,The woman\nanetv_hJKX5ZulTgI,3947,\"The woman is getting her hair styled in the background by another woman, while text covers the screen with instructions. The woman brushes and finalizes the style, and the client\",has a huge happy smile.,continues to speak to the camera and put powder in his hair.,has some scoop of chemical.,moves sexy - style scissors.,moves back to show this.,gold1-orig,pos,unl,unl,unl,pos,\"The woman is getting her hair styled in the background by another woman, while text covers the screen with instructions.\",\"The woman brushes and finalizes the style, and the client\"\nanetv_hJKX5ZulTgI,3945,\"A woman spins around, showing off her hair style. We\",see a black hair drying spinning on the screen.,smile to the camera.,\", the woman stands to face a blurred style of bleached hair and performs with the mustache.\",hooks oil over them.,begins to come out and combs a woman's hair.,gold0-orig,pos,unl,unl,unl,pos,\"A woman spins around, showing off her hair style.\",We\nanetv_xsdrqauYhJs,8094,\"After, the two continue to stir the contents in the bowl and eating the mix and placing them on a pan. Once the cookies are in the oven, the two girls\",sit in front of the oven and watch the cookies bake.,put a pan into the oven and start put them in the oven.,pour the ingredients into the dough and put them in the oven.,pour all ingredients on the baking bowl to pour them out.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the two continue to stir the contents in the bowl and eating the mix and placing them on a pan.\",\"Once the cookies are in the oven, the two girls\"\nanetv_xsdrqauYhJs,20053,The two girls remove the baking sheet from the oven. The two girls,sit with a plate of baked cookies between them.,step into an aerobics.,eat ice cream.,smile at each other.,,gold0-orig,pos,unl,unl,pos,n/a,The two girls remove the baking sheet from the oven.,The two girls\nanetv_xsdrqauYhJs,20050,The two shapes the mix from the bowl into lumps and places them on a baking sheet. The two,place the baking sheet in an oven.,ballerinas rise together on a model together.,continue raking water in a bowl then leaves with each girl then adds more ice cream.,screens move to make the drink.,,gold0-orig,pos,unl,unl,unl,n/a,The two shapes the mix from the bowl into lumps and places them on a baking sheet.,The two\nanetv_xsdrqauYhJs,20048,The two collaborate to mix the bag and some other ingredients in a large bowl. The first girl,gets something from the refrigerator.,is stirred and poured on stove with a lemon on it.,is seen eating the potatoes as well.,is shows the pasta in the kitchen.,\"plays the cone, adds sugar to her mixture and puts the cardboard out.\",gold0-orig,pos,unl,unl,unl,pos,The two collaborate to mix the bag and some other ingredients in a large bowl.,The first girl\nanetv_xsdrqauYhJs,20052,The two girls sit in front of the oven licking their mixing spoons. The two girls,remove the baking sheet from the oven.,tap the other side to cook.,begin eating the ice cream cone.,are at the table don the cookies together.,apply wallpaper a particular brush putting an lipstick over the lip of a silver clock.,gold0-orig,pos,unl,unl,unl,unl,The two girls sit in front of the oven licking their mixing spoons.,The two girls\nanetv_xsdrqauYhJs,20049,The first girl gets something from the refrigerator. The two,are shown mixing the bowl in turn.,rips two of her glasses.,continue to play as they talk.,woman are in their places together.,,gold0-orig,pos,unl,pos,pos,n/a,The first girl gets something from the refrigerator.,The two\nanetv_xsdrqauYhJs,20051,The two girls hug each other. The two girls,sit in front of the oven licking their mixing spoons.,flips and dance in unison as they dance.,throw throwing the ball to the other's legs.,rush past the desk.,rush to one side on the platform.,gold1-orig,pos,unl,unl,pos,pos,The two girls hug each other.,The two girls\nanetv_xsdrqauYhJs,8093,\"They then open a box of brownies, dumps the contents of in a bowl and get an egg out of the fridge. After, the two\",continue to stir the contents in the bowl and eating the mix and placing them on a pan.,do the dishes and add a list of ingredients on a piece on the floor.,shake another hand in the pot and mix the ingredients into a bowl.,\"eat a cookie and eat it, then another little boy serves drinks from a pot and the sink.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"They then open a box of brownies, dumps the contents of in a bowl and get an egg out of the fridge.\",\"After, the two\"\nanetv_gqK_jApRT5E,3172,A large group of people are seen standing around and dipping brushes into paint. People,are then seen painting a fence all around a yard.,begin painting the fence with scissors while the camera captures their movements.,are shown of rock paper and then women hitting a large large bucket.,use the brush to follow the same process on the first shots of a cleaner.,\"continue walking around the field, helping one another.\",gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen standing around and dipping brushes into paint.,People\nanetv_gqK_jApRT5E,3173,People are then seen painting a fence all around a yard. The people,continue painting and helping one another and speaking with each other.,break dancing while the camera pans around.,move back and fourth on the bar while the camera captures their movements.,continue playing together while one talks to the camera with another.,are then seen dancing around one another and smiling at each other.,gold0-orig,pos,unl,unl,unl,unl,People are then seen painting a fence all around a yard.,The people\nanetv_gqK_jApRT5E,19097,\"A group of people of various ages come together to paint a wooden picket fence white, interspersed with still images of the fence painting event. A group of people\",paint a wooden fence white outside of a house.,practice a martial arts routine that is surrounded by words on screen followed by a group of men wearing fencing outfits.,are still standing in the middle of the courtyard from the point of light that are just building inside the sand house.,are engaged in a game of pong as they hit the ball to each other.,are seen running on a fenced out area while a group of adults slide a bit down into their bottom.,gold0-orig,pos,unl,unl,unl,unl,\"A group of people of various ages come together to paint a wooden picket fence white, interspersed with still images of the fence painting event.\",A group of people\nanetv_-Jp86pFKlsw,1784,There are three dogs in the yard. The dogs,are playing with a frisbee.,are shown getting excited and frustrated as they go.,are standing on a rug and blowing the leaves.,are getting groomed to push their feet off their porch.,,gold0-orig,pos,unl,unl,unl,n/a,There are three dogs in the yard.,The dogs\nanetv_-Jp86pFKlsw,1783,A woman in a purple shirt is standing in a yard. There,are three dogs in the yard.,is inside a elevator using batons.,are a game of soccer in an yellow court.,is on the camera while a young girl leans on the playground on a diving board.,,gold0-reannot,pos,unl,pos,pos,n/a,A woman in a purple shirt is standing in a yard.,There\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4175,Someone pushes to the front. Someone,stretches out his hand.,sits on his hands ledge on the balcony.,drags his wheelchair up onto the shoulders of a man.,studies the house and takes a seat and pulls herself out of the book.,rounds a corner and a computer monitor appears.,gold1-orig,pos,unl,unl,unl,pos,Someone pushes to the front.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4184,\"Someone relaxes, enjoying the sensation. A huge smile crosses his face and he\",spreads his arms wide.,\"takes a couple of whiskey from a flask, then puts them a smoldering coin.\",steps away from us.,walks off.,stares awkwardly at someone.,gold0-orig,pos,unl,unl,unl,unl,\"Someone relaxes, enjoying the sensation.\",A huge smile crosses his face and he\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4177,Someone smacks the beast's hindquarters. It,raises its huge wings and takes off.,crashes into a courtyard.,\"someone's nostrils, the little boy sighs and takes a seat stubbornly them.\",\"'s head doubles, it drops off victim and lands to the field.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone smacks the beast's hindquarters.,It\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4180,\"The four - legged creature, half - horse, half - eagle, rises above the trees. In the distance, someone\",\"can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher.\",sees a hurrying jump up and down.,sets on her legs and turns in her seat to see this point of view.,stands back from someone.,\"picks up the pole again, revealing the elderly man with dark - gray hair.\",gold0-orig,pos,unl,unl,pos,pos,\"The four - legged creature, half - horse, half - eagle, rises above the trees.\",\"In the distance, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4183,\"The silvery sun filters down through the storm clouds turning the waters of a vast lake below them to a steely gray. Clinging to the creature's neck, someone\",\"sees his reflection in the water as buckbeak skims low over the lake, one huge claw just touching the surface.\",drags richard parker down for his attack and under the canvas track.,calmly reaches a ladder.,reaches into his pocket and pulls out a second wad of mail.,lies on the mast moving and sending the rocky wheels turning as the runway just disappears.,gold0-orig,pos,unl,unl,unl,unl,The silvery sun filters down through the storm clouds turning the waters of a vast lake below them to a steely gray.,\"Clinging to the creature's neck, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4182,They sail between the towers and turrets of Hogwarts School and soar above the craggy hillside. The silvery sun,filters down through the storm clouds turning the waters of a vast lake below them to a steely gray.,is now tilted around the unicorn.,shines down the valley between a 21 farm building and the german district.,\"shines on the stone walls of a building in the midst of rugged, dark.\",,gold0-orig,pos,unl,pos,pos,n/a,They sail between the towers and turrets of Hogwarts School and soar above the craggy hillside.,The silvery sun\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4174,Someone gives someone a push. Someone,\"moves forward, nervously.\",grabs his arm and reaches his upper platform.,reaches back and snatches him in the air.,enters the hangar and halts staring at his list.,halfheartedly takes off the necklace.,gold0-orig,pos,unl,unl,unl,unl,Someone gives someone a push.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4185,\"At last, someone calls them back. The hippogriff\",\"soars down through the treetops, flaps its wings as a brake and lands in a clearing.\",listens to their receptionist.,runs off of the school.,\"passes along an inverted round bulk - arranged, a raised area for the other third.\",,gold0-orig,pos,unl,unl,unl,n/a,\"At last, someone calls them back.\",The hippogriff\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4179,\"Someone hangs on desperately to Buckbeak's feathery neck. The four - legged creature, half - horse, half - eagle,\",rises above the trees.,stands and moves toward it.,\"leaps off someone's body, camouflage bounds behind it.\",\"dismounts, sliding halfway down the hall.\",amphitheater down on opposite sides of the steed.,gold0-orig,pos,unl,unl,unl,unl,Someone hangs on desperately to Buckbeak's feathery neck.,\"The four - legged creature, half - horse, half - eagle,\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4176,Someone stretches out his hand. Someone,clutches someone's hand.,'s right arm!,looks over the bar at someone.,\"looks down at someone, transfixed.\",steps out of view.,gold0-orig,pos,unl,pos,pos,pos,Someone stretches out his hand.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4178,It raises its huge wings and takes off. Someone,hangs on desperately to buckbeak's feathery neck.,spreads his wings toward the hazy sky.,steps away from the runway and runs through it.,gets chase and runs to the house.,,gold0-orig,unl,unl,unl,pos,n/a,It raises its huge wings and takes off.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9596,4181,\"In the distance, someone can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher. They\",sail between the towers and turrets of hogwarts school and soar above the craggy hillside.,\"hang their ropes with the tree above, moving all around the shade lastly back to the others.\",sight of manhattan slid into its hillside mountains.,rushes and speeds along one of the train limbs by a chain link fence as it splits across the roof.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the distance, someone can see a river winding its way down the valley, the strong wings of the hippogriff carrying them even higher.\",They\nanetv_wDlbcTFI90o,857,The video is a tutorial about installing deck tiles. There,'s a contractor working on a deck.,are instructions on how to dry the tan goggles they get.,\", the man takes out showers and describes it to find, resuming, then she uses a wooden collection work that have assembled a\",legs and feet and talking to the camera followed by a different man in a hammock shirt and a tux walled his angles.,is the small man trimming the angles of rock playing with a weather toy.,gold1-orig,pos,unl,unl,unl,unl,The video is a tutorial about installing deck tiles.,There\nanetv_wDlbcTFI90o,858,He begins installing the interlocking wooden tiles on a concrete deck surface. He,covers the entire deck with the wooden tiles to evenly cover the surface area.,is using the sweeping motions and proceeds a foam rug.,is made the wall until the metal.,puts the green tire on to lay it on.,is welding the base landing above the watermelon's rim.,gold0-orig,pos,unl,unl,unl,unl,He begins installing the interlocking wooden tiles on a concrete deck surface.,He\nlsmdc3001_21_JUMP_STREET-585,8401,\"Getting up, he aims his gun at a departing biker with a topknot braid. Puckering his lips squeamishly, He\",throws the gun instead.,yanks someone into a small hug.,gives someone a friendly smile.,marches in to the thug.,replaces the razor on his belt.,gold0-orig,pos,unl,unl,unl,unl,\"Getting up, he aims his gun at a departing biker with a topknot braid.\",\"Puckering his lips squeamishly, He\"\nlsmdc3001_21_JUMP_STREET-585,8405,Now a slideshow of snapshots holds the attention of sentimental prom guests. Someone and someone,start through the crowd.,take off their cloaks.,duck at a dining table.,arrive at the exhibition table.,look down at gawking guests.,gold0-orig,pos,unl,unl,unl,pos,Now a slideshow of snapshots holds the attention of sentimental prom guests.,Someone and someone\nlsmdc3001_21_JUMP_STREET-585,8420,The cops leave their car passing a charred corpse. They,aim their guns at the corrupt coach.,look up at the swirling animal.,head for a door and hustles forward.,bang into a doodle by the armored vehicle.,glare at each other.,gold0-orig,pos,unl,unl,unl,pos,The cops leave their car passing a charred corpse.,They\nlsmdc3001_21_JUMP_STREET-585,8422,\"As he drags her off, someone pleads. The coach fires at someone but someone\",dives between them taking the hits.,hauls her to her feet.,looks at the police pickup.,fastens the strap hoisted from his abdomen.,,gold0-orig,pos,unl,pos,pos,n/a,\"As he drags her off, someone pleads.\",The coach fires at someone but someone\nlsmdc3001_21_JUMP_STREET-585,8414,The bikers black limo follows and the cops white limo brings up the rear. Someone,shoots at his pursuers from the silver limo.,\"lowers his wide, damp tranquil whiskey.\",\"dodges the wheel and rides into a van, keeping him at the edge of the road.\",leaps on the chopper's vehicle and glides toward the end of the lane.,,gold0-orig,pos,unl,unl,pos,n/a,The bikers black limo follows and the cops white limo brings up the rear.,Someone\nlsmdc3001_21_JUMP_STREET-585,8403,\"As he takes aim at someone, someone rises from the floor. He\",shoots the biker multiple times in the chest.,moves to the desk and flips the drawings up onto his shoulders.,grabs a swarm of mechanical limbs.,taps his case with his wand.,\"lights a cigar, then turns to someone.\",gold0-orig,pos,unl,unl,pos,pos,\"As he takes aim at someone, someone rises from the floor.\",He\nlsmdc3001_21_JUMP_STREET-585,8400,\"Behind someone, someone climbs over the couch. He\",falls clumsily out of view.,scoops up the glass.,grabs a massage chair.,pulls the door closed.,aims and starts shooting.,gold1-orig,pos,unl,pos,pos,pos,\"Behind someone, someone climbs over the couch.\",He\nlsmdc3001_21_JUMP_STREET-585,8398,\"Now, someone peeks out and someone fires. Now, someone\",notices the money bag gone and someone leaving.,uses the phone on his father.,enters at a side door on the scaffold.,helps with his pajamas.,sees silhouettes descending a stairway into a office.,gold1-orig,pos,unl,unl,unl,pos,\"Now, someone peeks out and someone fires.\",\"Now, someone\"\nlsmdc3001_21_JUMP_STREET-585,8423,\"The coach fires at someone but someone dives between them taking the hits. Shoulder bleeding, someone\",reveals the other shot mashed into his bullet proof vest.,shoves out by the foreground son covering him.,punched into the table.,pins his opponent to the ground.,,gold0-orig,pos,unl,unl,pos,n/a,The coach fires at someone but someone dives between them taking the hits.,\"Shoulder bleeding, someone\"\nlsmdc3001_21_JUMP_STREET-585,8416,Someone stands in the sunroof and shoots. Someone,fires at him and the silver limo.,catches up to a man.,beats an inmate who pushes his way out.,pats his back and straightens her.,looks at the rail.,gold0-orig,pos,unl,unl,unl,pos,Someone stands in the sunroof and shoots.,Someone\nlsmdc3001_21_JUMP_STREET-585,8407,\"A photo of someone and someone, aka someone and someone, Pops up as the two cops reach the dancefloor. Someone\",\"notices, then dashes with his partner into the hotel kitchen.\",bends down to spin and interacts with her performs several tricks.,come out at the back of the car and get the pants started.,snaps pages and faces the house's window.,plods away into a teeming hall and balcony.,gold1-orig,pos,unl,unl,unl,pos,\"A photo of someone and someone, aka someone and someone, Pops up as the two cops reach the dancefloor.\",Someone\nlsmdc3001_21_JUMP_STREET-585,8421,\"As someone draws, someone pulls his trigger. He\",uses someone as a human shield.,peers between his legs.,holds up a small stuffed duck.,\"strokes his forehead, then wraps the scarf around his neck.\",bends over and slips the key into someone's arms and someone's by the open smiling party.,gold0-orig,pos,unl,unl,unl,unl,\"As someone draws, someone pulls his trigger.\",He\nlsmdc3001_21_JUMP_STREET-585,8410,Outside they see someone speed off in a silver stretch limo. She,'s in back with someone.,follows his flashing board and flips overlooking the groups.,flies back toward cathedral.,wriggles through the open market without there in the forest.,jumps on a low hill and traffic techniques.,gold0-orig,pos,unl,unl,unl,unl,Outside they see someone speed off in a silver stretch limo.,She\nlsmdc3001_21_JUMP_STREET-585,8425,Someone fires hitting someone in the groin. Someone,joins him in making the arrest.,find the alien hidden in shadow.,splashes to his back.,rests his hands on her shoulder.,opens a blue level.,gold0-orig,pos,unl,unl,unl,unl,Someone fires hitting someone in the groin.,Someone\nlsmdc3001_21_JUMP_STREET-585,8415,\"In the white limo, someone shoots the champagne bottle in her grip. Someone\",stands in the sunroof and shoots.,guides someone's pony - groom away and gives his daughter a bouquet of flowers.,comes down the aisle.,arrives to the right and hurries to her open door.,looks at herself and smiles.,gold0-orig,pos,unl,pos,pos,pos,\"In the white limo, someone shoots the champagne bottle in her grip.\",Someone\nlsmdc3001_21_JUMP_STREET-585,8408,\"Someone notices, then dashes with his partner into the hotel kitchen. They\",sprint across the deserted room.,bend down to hold vast bags of carrots.,come to pose and enjoy his performance.,arrive at the dining area where someone stands with someone in a room.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone notices, then dashes with his partner into the hotel kitchen.\",They\nlsmdc3001_21_JUMP_STREET-585,8424,Someone eyes someone and steadies his aim. Someone,remembers being gun - shy in the park.,watches but raises his wand.,stab them and hits someone's shoulder as he deflects her hold.,\"stands in the middle of the chamber, obstacles desperation at his bullets.\",rummages for a computer.,gold0-orig,pos,unl,unl,unl,unl,Someone eyes someone and steadies his aim.,Someone\nlsmdc3001_21_JUMP_STREET-585,8399,\"Now, someone notices the money bag gone and someone leaving. In slow motion, someone\",rises and leaps over the couch.,steps out of his carriage.,see an old and quick flashback on the same panel for business.,watches with a frown.,disappears from the backseat.,gold1-orig,pos,unl,unl,unl,unl,\"Now, someone notices the money bag gone and someone leaving.\",\"In slow motion, someone\"\nlsmdc3001_21_JUMP_STREET-585,8406,\"Someone, someone and the swarthy biker follow. A photo of someone and someone, aka someone and someone,\",pops up as the two cops reach the dancefloor.,\"leads someone through the small waterfall, falling faster towards the water's feet.\",get out of their car.,runs all the way to someone.,continue to walk through the street.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone, someone and the swarthy biker follow.\",\"A photo of someone and someone, aka someone and someone,\"\nlsmdc3001_21_JUMP_STREET-585,8409,They sprint across the deserted room. Outside they,see someone speed off in a silver stretch limo.,go to the stairwell where the alien works.,search some wennerstrom axes.,\"run along a busy street, passing a row of people in a boxing surge.\",go over a abstract building to the center.,gold0-reannot,pos,unl,unl,unl,unl,They sprint across the deserted room.,Outside they\nlsmdc3001_21_JUMP_STREET-585,8402,\"It hits the base of the biker's neck and he turns. As he takes aim at someone, someone\",rises from the floor.,pulls off his cigarette and checks his jaw.,jumps out of ammunition.,aims a pistol at the dead soldier.,pulls off into the tunnel.,gold1-reannot,pos,unl,unl,pos,pos,It hits the base of the biker's neck and he turns.,\"As he takes aim at someone, someone\"\nlsmdc3001_21_JUMP_STREET-585,8418,\"He stands in the sunroof and makes a perfect quarterback pass. Spiraling, the bottle\",drops through someone's sunroof.,tracks repeatedly on the right brick wall.,is carried away by coaches.,scans the tiled floor to the front of the street.,moves and off the right side.,gold0-reannot,pos,unl,unl,unl,unl,He stands in the sunroof and makes a perfect quarterback pass.,\"Spiraling, the bottle\"\nlsmdc3001_21_JUMP_STREET-585,8413,\"As someone makes a hard right in his limo, someone lops over. The bikers black limo follows and the cops white limo\",brings up the rear.,is carried down the road.,leaps out onto the bridge.,stops by the alley.,pulls up at the curb.,gold0-reannot,pos,unl,unl,pos,pos,\"As someone makes a hard right in his limo, someone lops over.\",The bikers black limo follows and the cops white limo\nlsmdc3001_21_JUMP_STREET-585,8419,\"As the white limo halts, someone gets out of the stalled silver one and grabs someone by the arm. The cops\",leave their car passing a charred corpse.,rush to a bus stop and escape as it rattles a staircase after the crowd.,lift out their metal gate and see kids on their tubes.,gather uneasily by the fleeing ships stop.,move down the steps.,gold0-reannot,pos,unl,unl,unl,unl,\"As the white limo halts, someone gets out of the stalled silver one and grabs someone by the arm.\",The cops\nanetv_4At1Vd-0lWE,5957,A man and woman are inside an indoor court. They,are engaged in a game of racquetball.,continue moving his feet back and forth.,are engaged in a game of beach soccer.,are shown practicing ballet moves.,,gold0-orig,pos,unl,unl,unl,n/a,A man and woman are inside an indoor court.,They\nanetv_4At1Vd-0lWE,5958,They are engaged in a game of racquetball. They,hit the ball back and forth against the wall.,drink from a walking stick and swings it into a net.,use a cement to cut the tile.,games of fight one by one of the players and the team looks at the ball around which are people commenting on the fans.,,gold0-orig,pos,unl,unl,unl,n/a,They are engaged in a game of racquetball.,They\nanetv_4At1Vd-0lWE,2657,A man in a woman are in a room with three white walls and a glass wall behind them playing racket wall ball. The two,continue to play and take turns getting to the ball making it hit the wall.,men throw a man down the street and throw all the pins around.,individuals then pause a board using a tennis pin and knock against the ice.,smashes an ruler on a stepper.,\"continue to swing and get around it once, trying to hit the ball against each other's heads.\",gold0-reannot,pos,unl,unl,unl,pos,A man in a woman are in a room with three white walls and a glass wall behind them playing racket wall ball.,The two\nlsmdc0049_Hannah_and_her_sisters-69377,15517,Several cars pass as someone joyfully runs. Suddenly he,\"stops, his hand to his mouth, reflecting.\",swings out destroying the car in front of the house.,jumps off his horse and falls onto the snow.,stops to someone.,,gold0-orig,pos,unl,unl,pos,n/a,Several cars pass as someone joyfully runs.,Suddenly he\nlsmdc0049_Hannah_and_her_sisters-69377,15516,\"He runs swirling down the street, clapping his hands, happy with relief. Several cars\",pass as someone joyfully runs.,walk under the open door.,walk by behind him.,show as he throws another in the air.,,gold1-orig,pos,unl,unl,unl,n/a,\"He runs swirling down the street, clapping his hands, happy with relief.\",Several cars\nlsmdc0049_Hannah_and_her_sisters-69377,15519,\"Someone sits in a chair in front of a bookshelf. Someone, standing behind his desk, his back to the camera, his coat still on,\",looks out at the manhattan skyline.,\"puts the envelope out and sets it down, and mocks the call.\",is tossed on his glass.,\"observes the offscreen change again, indicating by what he looks quickly.\",\"looks at him, shaking his head as if trying to make sure they are truth.\",gold0-orig,pos,unl,unl,unl,unl,Someone sits in a chair in front of a bookshelf.,\"Someone, standing behind his desk, his back to the camera, his coat still on,\"\nlsmdc0049_Hannah_and_her_sisters-69377,15515,\"Once again, someone is seen leaving the building, but this time he bounds down the steps, jumping for joy. He\",\"runs swirling down the street, clapping his hands, happy with relief.\",\"comes out of the performance, jumps over to climb off the back beam, and start around.\",glances around as the rest of the group gathers around him and in together some more.,\"makes several calls to it down the track back into the tank and halts to reload, going into someone's room.\",\"finds him surfing toward the wall, one by one and going down to make out the story.\",gold1-orig,pos,unl,unl,unl,pos,\"Once again, someone is seen leaving the building, but this time he bounds down the steps, jumping for joy.\",He\nlsmdc0049_Hannah_and_her_sisters-69377,15518,\"Suddenly he stops, his hand to his mouth, reflecting. Someone\",sits in a chair in front of a bookshelf.,\"picks up his briefcase, hearing an answer.\",drops the ax on the ground and creeps towards him.,takes its arm out of the mob and walks towards them.,tosses the bird aside.,gold1-reannot,pos,unl,unl,unl,unl,\"Suddenly he stops, his hand to his mouth, reflecting.\",Someone\nanetv_IqRwR1a9ia0,14196,A man wearing a construction hard hat applies plaster to a wall using a hand held flat edge. The man,pauses to explain his procedure.,performs several martial arts moves in the middle of a circle and held for sport in the circle.,is polishing the white wall between the wall.,continues welding a piece of metal using a torch blowing back and forth.,bends down and switches to his goalie.,gold0-orig,pos,unl,unl,unl,unl,A man wearing a construction hard hat applies plaster to a wall using a hand held flat edge.,The man\nanetv_IqRwR1a9ia0,14197,The man pauses to explain his procedure. A Company name and slogan,are seen in white text.,are displayed in the beach.,overlaid with a back capoeira is overlaid.,is cut with a string.,grins and see him give him instructions for 2010.,gold1-reannot,pos,unl,unl,unl,unl,The man pauses to explain his procedure.,A Company name and slogan\nanetv_c1Gby2EHBzs,11370,A man is seen holding a stick in his hands and speaking to the camera. The man,attempts several times to hit the ball followed by him picking it up and hitting it off into the distance.,picks up a small ball and begins running around the field before ending cheering to people in the end.,rubs it all over his face while not moving his hands up.,bends down and lays the dirt back on the ground.,continues to throw the ball around the field and ends by bowing his head.,gold0-orig,pos,unl,unl,unl,pos,A man is seen holding a stick in his hands and speaking to the camera.,The man\nanetv_h1bdAd1cXSw,14325,A young child is seen walking to the end of a diving board and looking off into the camera. The boy then dives into the water and the camera,captures him moving from underwater.,zooms back to his arrival at a swimmer.,captures her as she dives from a diving board.,zooms into two shots of two men on their board.,helps out the first to perform hugs in the end.,gold0-reannot,pos,unl,unl,unl,unl,A young child is seen walking to the end of a diving board and looking off into the camera.,The boy then dives into the water and the camera\nlsmdc0006_Clerks-48812,9544,The hockey players fill the convenience store. Sanford,skates up and skids to a halt.,raft is moored at a fountain.,\"begs in a way, the boy continues to watch her with a smile.\",follows other kids into a million messing.,,gold0-orig,pos,unl,unl,unl,n/a,The hockey players fill the convenience store.,Sanford\nlsmdc0006_Clerks-48812,9542,Tape is rolled around the top of a stick. An orange ball,is slapped back and forth by a blade.,is shown on a table pressing into the snow.,catapults out of the gym.,is rolled up against the wall and sparks.,rolls to a pile outside the soccer room.,gold0-orig,pos,unl,unl,unl,pos,Tape is rolled around the top of a stick.,An orange ball\nlsmdc0006_Clerks-48812,9541,Someone shakes his head in frustration and picks up the phone again. Someone,rolls his eyes to the ceiling.,makes her way past us to find chickens hanging out from things.,gazes down at him.,faces the portly man.,comes out at the door.,gold0-reannot,pos,unl,pos,pos,pos,Someone shakes his head in frustration and picks up the phone again.,Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55362,15097,Someone waves a fistful of money at him. A big shambling man of about thirty,has followed him out of the car.,is knocked through a floor.,unveils someone the singer handsome with a neat mustache.,\"comes in next to someone, his face broken.\",reads his hysterical old snapshots.,gold0-orig,pos,unl,unl,unl,unl,Someone waves a fistful of money at him.,A big shambling man of about thirty\nlsmdc0016_O_Brother_Where_Art_Thou-55362,15096,A sixty - year - old man in enormous seersucker pants held up by suspenders and the outward pressure of a blooming belly is getting out of the first car. Someone,waves a fistful of money at him.,sits down around his limbs.,looks at him and finds the newspaper sleeping on his back.,\"sways to the sidelines, searching for the hell.\",flashes a variety of drovers the most sick men throwing things over.,gold0-orig,unl,unl,unl,unl,unl,A sixty - year - old man in enormous seersucker pants held up by suspenders and the outward pressure of a blooming belly is getting out of the first car.,Someone\nanetv_CteuM2BUmHo,2359,The man removes concrete from his trowel. The man,uses his hand to remove concrete.,holds a blue shovel and uses a interior bag.,wipes the table away with a cloth.,uses his metal pedal and finishes the tile.,peels the last section with a vacuum.,gold0-orig,pos,unl,unl,unl,unl,The man removes concrete from his trowel.,The man\nanetv_CteuM2BUmHo,2358,We then see a man on discs smoothing a concrete floor. The man,removes concrete from his trowel.,glides forward and cuts a part through a wall of an office.,starts peeing a floor with a vacuum.,talks on the plaster and scrapes plaster to the ceiling.,,gold0-orig,pos,unl,unl,unl,n/a,We then see a man on discs smoothing a concrete floor.,The man\nanetv_CteuM2BUmHo,2360,The man uses his hand to remove concrete. We then,see the ending credits.,see the man lifts tire and take off his skis and brings it over.,see soldiers plank vent and polish.,\"see shots of a man in his car, handing the camera to his dog, and wraps himself up on the shoes.\",see the closing title.,gold1-reannot,pos,unl,unl,unl,pos,The man uses his hand to remove concrete.,We then\nanetv_ZEChBNpLCyU,2051,A man is seen speaking to the camera and begins laying out tarp next to a tree. The man,cuts the tarp and begins putting mulch all around the tree.,demonstrates equipment to weld through the wood while the camera captures his movements.,shows off the finished product and shows it off.,puts decorations on the tree and pulls them away towards the camera.,continues explaining and cutting the mower and cutting the grass and interacting with the camera.,gold0-orig,pos,pos,pos,pos,pos,A man is seen speaking to the camera and begins laying out tarp next to a tree.,The man\nanetv_g_bb4RSu6TQ,11910,He uses his arms to hold up his entire body. He,stays in that position for two seconds.,\"continues skateboarding, whips the web in, and catches him by the elbow.\",did a few somersaults before it goes to catch after him but his hands fly up on the bar.,\"tosses the ball over the wall, who throws it in pitch.\",,gold0-orig,pos,unl,unl,pos,n/a,He uses his arms to hold up his entire body.,He\nanetv_g_bb4RSu6TQ,40,A gymnast balances on a parallel bar. The man,spreads his legs while balancing on the parallel bar.,flips the baton around and then does handstands.,lowers his weights and flips several times.,flips and spins with his hands in the air.,dips and performs several poses and jumps over the parallel bars.,gold1-orig,pos,unl,pos,pos,pos,A gymnast balances on a parallel bar.,The man\nanetv_g_bb4RSu6TQ,11909,A gymnast holds his position on top of a beam. He,uses his arms to hold up his entire body.,gets back as he jumps into a sand pit.,\"dismounts, and a gymnast perform karate moves.\",\"flips a few times, then circles the adjacent bars and does the splits.\",performs gymnastics on the beam.,gold0-orig,pos,unl,unl,unl,pos,A gymnast holds his position on top of a beam.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94651,4793,\"Aunt Petunia is watching television. About to be sick, someone\",points weakly at someone.,rushes into the kitchen where the strings are driven.,pours another piece of the latest.,watches a film determinedly across the street.,gives a thumbs up.,gold0-orig,pos,unl,unl,unl,unl,Aunt Petunia is watching television.,\"About to be sick, someone\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94651,4794,\"About to be sick, someone points weakly at someone. An owl\",hits the ceiling and falls in a flurry of feathers.,\"stands behind the altar, watching its riders.\",\"lies on the side of the tank, wearing a swirl of white fire shells.\",stands on the side of the house.,rolls past in front of someone.,gold0-orig,pos,unl,unl,unl,unl,\"About to be sick, someone points weakly at someone.\",An owl\nanetv_CBW_uJJpmZY,2264,They start with two jump ropes. They,switch jumpers a few times.,begins streaming over the surface with varying motions.,do a handstand for a performance on a landing.,stop at a diamond field.,grab the ropes with the rope.,gold0-orig,pos,unl,unl,unl,unl,They start with two jump ropes.,They\nanetv_CBW_uJJpmZY,2263,A group of people take part in a jump roping competition. They,start with two jump ropes.,move all around on bikes.,skates and performs a long jump in the air.,do a high jump.,,gold1-orig,pos,unl,unl,pos,n/a,A group of people take part in a jump roping competition.,They\nanetv_CBW_uJJpmZY,12196,\"The girl in the middle is holding the rope up and as soon as she drops the rope, they begin their very detailed and skilled routine that includes a lot of jumping, flips, and rotation of the players holding the ropes as they all take turns holding the rope and jumping. They\",drop the rope and end their routine with their hands thrown up in the air and hugging one another.,begin back to the balance.,continue climbing and stepping when a guy climbs up back to the camera.,lay the carpet all around the concrete.,is then shown in the background doing various stretches and stunts until they grimace from the people and climbing onto the parallel rock afterwards.,gold0-orig,pos,unl,unl,pos,pos,\"The girl in the middle is holding the rope up and as soon as she drops the rope, they begin their very detailed and skilled routine that includes a lot of jumping, flips, and rotation of the players holding the ropes as they all take turns holding the rope and jumping.\",They\nanetv_KTIzccovgeg,4451,A lake is seen with the view of a city skyline across the way. A group of walkers,walk along the sidewalk near the lake.,are huddled together in a desert.,falls to the ground.,are in a river in a pavilion.,,gold0-orig,pos,unl,unl,pos,n/a,A lake is seen with the view of a city skyline across the way.,A group of walkers\nanetv_KTIzccovgeg,4452,A group of walkers walk along the sidewalk near the lake. A man,uses a snow blower on a sidewalk area.,from the street is being carried by the dog.,plays in the shallow waters of the lake.,is holding a cat in front of the house.,,gold0-orig,pos,unl,pos,pos,n/a,A group of walkers walk along the sidewalk near the lake.,A man\nanetv_KTIzccovgeg,4453,A man uses a snow blower on a sidewalk area. People,use snow shovels to clear the sidewalk.,are running on the sidewalk.,are in the back with the car.,are pouring the snow down a car.,are blowing a car in a large parking lot.,gold0-orig,pos,unl,unl,unl,unl,A man uses a snow blower on a sidewalk area.,People\nanetv_KTIzccovgeg,4454,People use snow shovels to clear the sidewalk. A spade gardening tool,is used to break up ice.,is shown on a bright screen.,is being used by to grill.,is in front of a mirror.,is shown on the screen with a small house.,gold0-reannot,pos,unl,unl,unl,pos,People use snow shovels to clear the sidewalk.,A spade gardening tool\nanetv_KTIzccovgeg,4455,A spade gardening tool is used to break up ice. A man,applies salt to the cleared sidewalk area.,is mixing something on a bicycle.,talks to some of the boys as soon as the journalists are done.,is eating a twig.,pushes white paint on a window pushing it with swift and silver.,gold0-reannot,pos,unl,unl,unl,unl,A spade gardening tool is used to break up ice.,A man\nlsmdc0023_THE_BUTTERFLY_EFFECT-59760,1261,\"Someone, standing near the fireplace, defiantly strikes the match with this thumb and lowers the flame to the short fuse. Someone\",charges someone just as the fuse is lit!,rush up to the podium.,swings it toward her fellow friends.,lies about a few feet away.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone, standing near the fireplace, defiantly strikes the match with this thumb and lowers the flame to the short fuse.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59760,1260,\"Someone, hiding at the top of the stairs, slowly creeps down to get a better view. Someone, standing near the fireplace,\",defiantly strikes the match with this thumb and lowers the flame to the short fuse.,rips himself into the windscreen as we watch his bird fly overhead.,looking at them whimpering as he waits for someone to begin the chase.,keeps his hairless tattered bath - candy - layered.,\"is motionless, naked and sweat.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, hiding at the top of the stairs, slowly creeps down to get a better view.\",\"Someone, standing near the fireplace,\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59760,1262,Someone charges someone just as the fuse is lit!. Someone knocks the blockbuster from someone's hand and it,\"rolls towards the other side of the room, resting peacefully against the video camera.\",\"is hurled against the broomstick, pinning it up to his.\",lifts his body as the silver - robed operator knocks on the open front door.,trips them over someone's shoulders.,\"slithers into someone's throat, knocking him down.\",gold0-orig,pos,unl,unl,unl,unl,Someone charges someone just as the fuse is lit!.,Someone knocks the blockbuster from someone's hand and it\nlsmdc0023_THE_BUTTERFLY_EFFECT-59760,1263,\"Someone knocks the blockbuster from someone's hand and it rolls towards the other side of the room, resting peacefully against the video camera. Someone's eyes are dazzled by the sparkling fuse and she\",bends down to pick it up.,puts her head around him.,\"closes the book, surprised to focus.\",has gone back toward the headboard.,thrusts hers back behind her desk.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone knocks the blockbuster from someone's hand and it rolls towards the other side of the room, resting peacefully against the video camera.\",Someone's eyes are dazzled by the sparkling fuse and she\nlsmdc3022_DINNER_FOR_SCHMUCKS-10258,18899,One demonstrates his golf swing. Someone,leads the other workers into the boardroom.,sits to perform flips.,picks up a punch line from the big stack.,balance his energy blasts.,,gold1-orig,pos,unl,unl,unl,n/a,One demonstrates his golf swing.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10258,18897,\"Carrying a large plastic box, someone steps out of an elevator followed by someone and several other workers. They\",enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered.,are dancing and enjoying their hair as they watch him.,\"cuts up and out of a alley, passing between double blades.\",put the phone in their mouths.,enter a hallway shelves and stick them against the wall.,gold0-orig,pos,unl,unl,unl,unl,\"Carrying a large plastic box, someone steps out of an elevator followed by someone and several other workers.\",They\nlsmdc3022_DINNER_FOR_SCHMUCKS-10258,18898,They enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered. One,demonstrates his golf swing.,enters the domed hotel room which opens down.,drops books and throws them onto the floor.,\"cradles them from his arms then opens the front door on someone's house, someone turns around a handle of a staircase.\",approaches the doctor: someone starts crying.,gold1-orig,pos,unl,unl,unl,unl,They enter a plush open - plan area at the end of which is a glass - walled boardroom in which several executives are gathered.,One\nanetv_jd609r5yKkI,12788,The men play the drums continuously while looking to one another as well as off into the distance. The men,continue to play with one another and end with one holding his arms up.,continue playing with one another while two more practice play in the end.,continue playing the same instrument all around while speaking to a group and watching them from various angles.,continue to play the game and cheer with one another as well as walking around.,continue to play the drums while stopping to watch them play and drink.,gold1-orig,pos,unl,unl,unl,unl,The men play the drums continuously while looking to one another as well as off into the distance.,The men\nanetv_jd609r5yKkI,12787,A small group of men are seen sitting on the ground playing instruments while one holds a child in his lap. The men,play the drums continuously while looking to one another as well as off into the distance.,continue playing out and one others headphones on while playing and singing as well as playing up.,continue playing and begin playing tennis with one another as well as the two congratulate him outside.,continue to play with one another and end with each other in a circle having their drink still swinging.,shake hands and pretend to play as another man sits behind them as they speak to the camera.,gold0-orig,pos,unl,unl,unl,pos,A small group of men are seen sitting on the ground playing instruments while one holds a child in his lap.,The men\nanetv_jd609r5yKkI,1395,As they continue with their drum routine drummer of the pace of the drumming. When the video in the closing captions and credits,are shown on the screen.,appear its screen shows credits spewing.,show on the screen showing the screen.,are led to where the game is replayed.,are shown of the same scene.,gold0-orig,pos,unl,unl,pos,pos,As they continue with their drum routine drummer of the pace of the drumming.,When the video in the closing captions and credits\nanetv_31KEa5VhvPs,13919,A man and his teammates are pushing a puck. They,are engaged in a game of curling on the ice.,are walking left behind trying to run down the track.,kick the ball back and forth.,get away and run over on people.,\"are walking, running, running, and kicking the ball back and forth against a net.\",gold0-orig,pos,unl,unl,unl,unl,A man and his teammates are pushing a puck.,They\nanetv_31KEa5VhvPs,13918,A group of spectators are gathered in a gym. A man and his teammates,are pushing a puck.,cheer from the van.,are in a supermarket.,jump a few steps above him.,are dancing with their swords.,gold0-reannot,pos,unl,unl,unl,pos,A group of spectators are gathered in a gym.,A man and his teammates\nlsmdc1018_Body_Of_Lies-80542,6634,Someone sees someone amongst the men observing. He,remembers someone embracing someone in the desert.,\"beats the soldier with his gun, guns from overhead.\",shoves someone back over the water toward one of the twins.,taps a hook above his own ears.,looks at someone's feet from behind.,gold1-orig,unl,unl,unl,unl,unl,Someone sees someone amongst the men observing.,He\nlsmdc1012_Unbreakable-6974,5891,The man with thinning hair and a black beard looks around. People,watch the slow moving queue.,walk into a hole in the pool.,is performing ballet moves.,'s white skin and the lens.,is about to stay.,gold0-reannot,pos,unl,unl,unl,unl,The man with thinning hair and a black beard looks around.,People\nanetv_Pyf_5Bffu5A,18044,Man is doing a corner and scores a goal and ruun to his teammates to celebrate. the game start te game and men,keeps running and scores another goal and celebrates while there s a repetition.,are standing on the walkway to clean the shirts.,win a victory competition in a competition while many spectators cheer him on.,are cheering for the video.,in are players resume playing the game as your coach is talking to the camera.,gold0-orig,pos,unl,pos,pos,pos,Man is doing a corner and scores a goal and ruun to his teammates to celebrate.,the game start te game and men\nanetv_Pyf_5Bffu5A,18043,Kids are playing beach soccer in a dusty field. people,are standing around the field in stands.,are riding horses in a gymnasium on a wild horse.,are watching them cover the line of townspeople.,are in a small court playing volleyball.,are playing polo in an indoor pool.,gold0-reannot,pos,unl,unl,unl,unl,Kids are playing beach soccer in a dusty field.,people\nlsmdc3059_SALT-28998,16720,She recalls the young boy with the scar on his cheek lying in the bed next to hers. The man,shows his scarred cheek.,\"stands by the dresser, smoking a cigarette and pulling out a gum - breath.\",attempts to shoot victory in which boy does hand springs.,clutches his mother's mouth as he is driven through the darkness.,stands on the top step and kisses a woman in front of her.,gold0-orig,pos,unl,unl,pos,pos,She recalls the young boy with the scar on his cheek lying in the bed next to hers.,The man\nlsmdc3059_SALT-28998,16719,She stares at him blankly. She,recalls the young boy with the scar on his cheek lying in the bed next to hers.,\"springs out of his bed, looks off, and gives a shaky shrug.\",\"shifts, and looks up at someone.\",catches sight of him.,\"walks back to an old woman, her dress stuffed in black scarves.\",gold1-orig,pos,unl,pos,pos,pos,She stares at him blankly.,She\nlsmdc3059_SALT-28998,16718,Man in dress uniform steps up to someone. She,stares at him blankly.,gets up and runs off.,grabs the shrimp out of her bag.,\"walks into the corridor, where there is no sign of the various people.\",\"is now in stage wearing a blue collars, sitting down with her arms resting on her hips and wearing a green tank top.\",gold1-reannot,pos,unl,unl,unl,unl,Man in dress uniform steps up to someone.,She\nanetv_NqYEX8tUjYg,17475,Several more clips are shown of people riding snowboards and performing tricks on a board. More people,are seen riding on a board and speaking to the camera.,are shown speaking to the camera while more shots are shown of people walking and holding a yellow towel.,are seen riding around on bikes while others watch on the side.,are seen riding down the river while the camera captures their movements.,,gold0-orig,pos,unl,unl,unl,n/a,Several more clips are shown of people riding snowboards and performing tricks on a board.,More people\nanetv_NqYEX8tUjYg,17474,A person is seen performing a trick on a snowboard followed by more a woman speaking to the camera. Several more clips,are shown of people riding snowboards and performing tricks on a board.,are shown of dogs riding recumbent bikes and others walking around them.,are then seen of people riding horses while other people watch on the side.,are shown of people riding bumper as well as pictures of products are shown.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen performing a trick on a snowboard followed by more a woman speaking to the camera.,Several more clips\nanetv_kM7jFLYDUy0,2219,He moves back and forward in his car. He,looks lonely as he finally comes to a stop.,dashes into the room and comes back.,frame his face where he's working again.,feeds spots bystanders backstage.,makes his way to the entrance into the elevator and closes the doors.,gold0-orig,pos,unl,unl,unl,unl,He moves back and forward in his car.,He\nanetv_kM7jFLYDUy0,2218,\"A boy is in a bumper car, spinning around by himself. He\",moves back and forward in his car.,\"is holding poles, looking at them in the night.\",continues performing stunts while doing the boarding.,\"is confused, with stunts on his head.\",\"starts to hold him with his hands, after he gets out.\",gold1-orig,pos,unl,unl,unl,pos,\"A boy is in a bumper car, spinning around by himself.\",He\nanetv_vth3IYGHu5k,11774,\"A teen skip on a court and then jumps high over a bar. Then, the teen\",jumps high again but touch the bar.,push the ball down and do other rapid flips.,drops a ball and does a hand stand and falls.,rides backward twice while the class beers with him.,,gold0-orig,pos,unl,unl,unl,n/a,A teen skip on a court and then jumps high over a bar.,\"Then, the teen\"\nanetv_vth3IYGHu5k,11777,\"Then, the ten runs relay run with other youth. After, the teen\",performs long jump on a sand box.,puts down a dog and skateboards.,runs and moves the stick to reverse.,takes sporting long jump and celebrates.,,gold1-orig,pos,unl,unl,pos,n/a,\"Then, the ten runs relay run with other youth.\",\"After, the teen\"\nanetv_vth3IYGHu5k,11776,\"This time the teen jumps without touching the bar. Then, the ten runs relay\",run with other youth.,ski while his other competitor congratulates him.,track when jumping rope very fast.,chases with the bat.,,gold1-orig,pos,unl,unl,unl,n/a,This time the teen jumps without touching the bar.,\"Then, the ten runs relay\"\nanetv_vth3IYGHu5k,11775,\"Then, the teen jumps high again but touch the bar. This time the teen\",jumps without touching the bar.,turns to the camera.,gets on the swing his leg almost kicking.,jumps up and jumps across the circle in front of him and lowers his paddles.,falls right into the net at the end in the ring.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the teen jumps high again but touch the bar.\",This time the teen\nanetv_vth3IYGHu5k,9970,Blonde woman is running in a race track and make a jump in an elastic bed. in the background people,are running around the court.,are doing a routine with the soldiers behind them.,is sitting next to him playing the drum set of drums.,are siting on dirt bikes.,are running on the ring and huddling up.,gold0-reannot,pos,unl,unl,unl,unl,Blonde woman is running in a race track and make a jump in an elastic bed.,in the background people\nanetv_vth3IYGHu5k,11778,\"After, the teen performs long jump on a sand box. A person\",takes picture to the teen.,kneels down and holds her head on a rope.,plays hurling in the city.,waves and runs underwater.,falls next to the man in the pit.,gold0-reannot,pos,unl,unl,unl,pos,\"After, the teen performs long jump on a sand box.\",A person\nanetv_NIJTz15ikgA,11958,The woman dabs powder around her face. She then,spreads it evenly across her cheeks and chin.,picks up a baking bottle and puts lipstick on.,walks around and the dogs are moving back and forth.,blows the blow dryer all over the area.,,gold0-orig,pos,unl,unl,unl,n/a,The woman dabs powder around her face.,She then\nanetv_NIJTz15ikgA,13946,The woman powders around the girls face as well as her neck. She,continues putting makeup on the girl and showing pictures in the end.,rolls the dogs away and ends by smiling into the camera.,\"move the weights and fall back and flip while speaking while the camera zooms in on her, and continues all.\",struggles to make gestures with his hands and finally them throw them to each other.,,gold0-orig,pos,unl,unl,unl,n/a,The woman powders around the girls face as well as her neck.,She\nanetv_NIJTz15ikgA,13945,A woman is seen dressed in a beautiful gown and a woman begins putting makeup on her face. The woman,powders around the girls face as well as her neck.,continues speaking to the young and rubs lotion onto the side of the woman's face.,pierces her eye and pushes forward to take her eye.,is seen playing with her hair while another child speaks to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seen dressed in a beautiful gown and a woman begins putting makeup on her face.,The woman\nanetv_NIJTz15ikgA,11957,A girl is seated on a couch while another girl prepares her makeup. The woman,dabs powder around her face.,pulls off the old sweater.,begins brushing her other hair and catching the offscreen cats.,rubs gel into her arm.,,gold0-orig,pos,unl,unl,unl,n/a,A girl is seated on a couch while another girl prepares her makeup.,The woman\nlsmdc3012_BRUNO-4177,3814,\"Someone swaggers up before someone, script in hand. He\",\"bows, then reads.\",\"grips the handle, then peers out through the kitchen microscope.\",hangs and goes to see someone.,is looking to some door in a box with many hats and pushing briefcase.,joins another couple as they walk out of the room.,gold0-orig,pos,unl,unl,unl,pos,\"Someone swaggers up before someone, script in hand.\",He\nlsmdc3012_BRUNO-4177,3815,\"He sobers instantly, and dramatically wags his finger at someone. The agent\",responds with a bemused frown.,collapses and touches his arm.,falls and starts walking toward the german.,drops to one side on the train.,reaches up and grabs the receiver.,gold0-orig,pos,unl,unl,pos,pos,\"He sobers instantly, and dramatically wags his finger at someone.\",The agent\nlsmdc3012_BRUNO-4177,3816,\"The agent responds with a bemused frown. Turning his back on someone, he\",\"crouches, revealing a red thong.\",slices at his goatee.,strolls points in the blonde direction.,glares up at the ground below.,peers into someone's smiling eyes.,gold1-orig,pos,unl,unl,unl,pos,The agent responds with a bemused frown.,\"Turning his back on someone, he\"\nlsmdc3012_BRUNO-4177,3817,\"Turning his back on someone, he crouches, revealing a red thong. He\",jumps around to face the agent.,thrusts it at him as someone flails and falls right into the swimming pool.,fingers repeatedly drain this one more.,\"creeps off, yanking the curtain, then shuts himself into the shower.\",examines his finger and discusses.,gold0-orig,pos,unl,unl,unl,unl,\"Turning his back on someone, he crouches, revealing a red thong.\",He\nlsmdc1062_Day_the_Earth_stood_still-100699,15173,\"The officials stand at a window overlooking the room. Watched closely by someone, someone\",removes the oxygen mask and offers the being a cup of water.,snaps her glaring eyes at him.,holds out a photo of a women's dancing kit.,approaches a rental truck.,hugs someone and smiles.,gold0-orig,pos,unl,unl,pos,pos,The officials stand at a window overlooking the room.,\"Watched closely by someone, someone\"\nlsmdc1062_Day_the_Earth_stood_still-100699,15172,The being is lying on a gurney wearing gray hospital pajamas and an oxygen mask. The officials,stand at a window overlooking the room.,are still dancing with part of the goddess.,are listening.,stand watching them through binoculars.,rush over to someone.,gold0-orig,pos,unl,pos,pos,pos,The being is lying on a gurney wearing gray hospital pajamas and an oxygen mask.,The officials\nlsmdc1062_Day_the_Earth_stood_still-100699,15174,\"Watched closely by someone, someone removes the oxygen mask and offers the being a cup of water. He\",takes it and draws it shakily towards him.,produces a flask to protect someone with the start to protect his mouth and different line.,\"tosses her gun towards him, struggling to lifebelt her brunette body.\",holds his fist steady and blinks.,\"whips her face in her hands, someone stands up and drops the rifle.\",gold0-orig,pos,unl,unl,unl,unl,\"Watched closely by someone, someone removes the oxygen mask and offers the being a cup of water.\",He\nlsmdc1062_Day_the_Earth_stood_still-100699,15175,They all watch him intently. The Secretary,takes a step towards him.,\"shrugs his head, coldly strolls forward.\",sings quickly on a concert hall.,talks on the radio.,,gold0-orig,pos,unl,unl,unl,n/a,They all watch him intently.,The Secretary\nanetv_swId_MFHywI,12066,\"The instructor is sitting on the floor introducing the move. A shot of the move is shown, then the instructor\",shows how to do it.,tries beside the coach instructor.,shows another player on the table.,lifts his knees up and down.,,gold0-orig,pos,unl,unl,pos,n/a,The instructor is sitting on the floor introducing the move.,\"A shot of the move is shown, then the instructor\"\nanetv_swId_MFHywI,12065,The camera zooms into a dancer. VincaniTV,comes up on the screen.,holds a bat and hands an airplane.,of the television is black and black.,two men are in the back of the court.,plays as he plays a piano.,gold0-orig,pos,unl,unl,unl,unl,The camera zooms into a dancer.,VincaniTV\nanetv_swId_MFHywI,12067,\"A shot of the move is shown, then the instructor shows how to do it. He\",pushes himself up on his hand and does another move.,stands over a bar with his arms held out around the sides.,clears the side with the weights and places the weights down several times before continuing on.,looks up and introduces himself in throwing a object into the art.,,gold0-orig,pos,pos,pos,pos,n/a,\"A shot of the move is shown, then the instructor shows how to do it.\",He\nanetv_swId_MFHywI,12068,He pushes himself up on his hand and does another move. He,is on one knee to show another move.,jumps over the fence towards a large space and red light.,maneuver the pole and ax in the railing as he walks over to the object.,lifts some weights and puts them on down.,gets up and lunges for their own gun.,gold0-orig,pos,unl,unl,unl,unl,He pushes himself up on his hand and does another move.,He\nanetv_swId_MFHywI,12069,He is on one knee to show another move. The screen,goes to another shot of the same move but faster this time.,shows the point and shows other other team mates more and one man speaks.,changes sideways to animals standing at the points.,is white with white text with no title on it.,gradually grows larger and a little louder and more mixed.,gold0-orig,pos,unl,unl,unl,unl,He is on one knee to show another move.,The screen\nanetv_swId_MFHywI,12064,A black book called Windmills is on the screen. The camera,zooms into a dancer.,captures various stages of spin.,focuses on an orange screen.,finishes dramatically from another man.,shows the watchful instructor.,gold0-orig,pos,unl,unl,unl,pos,A black book called Windmills is on the screen.,The camera\nanetv_swId_MFHywI,12070,The screen goes to another shot of the same move but faster this time. The instructor,is standing and talking.,comes up to the rubiks cube and completes it fighting.,spins him with both hands in his enclosure before smiling his drink in the air.,bends down and lays the other person's socks in his shoulder.,is dribbling the ring in his own hand.,gold1-orig,pos,unl,unl,unl,unl,The screen goes to another shot of the same move but faster this time.,The instructor\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,492,She stands up to greet her new friend. Someone,brings someone over to the table.,\"hangs up, looks down and notices someone holding boys.\",looks as his head grabs the rod as it swipes.,holds the bird in her hand.,is also helping her.,gold0-orig,pos,unl,unl,unl,pos,She stands up to greet her new friend.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,490,He goes into his office and turns on the lights. A framed photo,shows someone with someone.,walks up to someone in a flashback.,shows his wife on tv.,shows his rosy - skinned lover lying on the bed.,,gold1-reannot,pos,unl,unl,unl,n/a,He goes into his office and turns on the lights.,A framed photo\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-221,491,\"A framed photo shows someone with someone. Wearing a nightgown, someone\",finds nine girls seating at a round table topped with candles.,braces his wings against the hot wooden door.,strolls up to a tub of water from a platform.,sits up and wipes her mouth slightly.,beats his father through a candy glass.,gold1-reannot,pos,unl,unl,unl,unl,A framed photo shows someone with someone.,\"Wearing a nightgown, someone\"\nanetv_aVL9ArQS_Ag,9327,\"A man holds a pair of boots while talking and showing dirty parts. Then, the man\",put a clothe inside the boot and brush the shaft of the boot thoroughly.,bends down and begins removing the mane.,shows them how to use the windshield to remove the bolts.,put the legs into the black tire.,puts the meat in the refrigerator with the red hose.,gold0-orig,pos,unl,unl,unl,unl,A man holds a pair of boots while talking and showing dirty parts.,\"Then, the man\"\nlsmdc1014_2012-79394,5409,Someone thumped the security guard as he looked behind. The crowd,pushes past and enters the bay.,\"stands the flare from inside the tower, someone.\",\"quickly marches over, spots someone in his coat.\",questions a mustached young man.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone thumped the security guard as he looked behind.,The crowd\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4845,Her body relaxes in death. Someone,\"lowers her corpse and looks toward the house, his expression hardening.\",stares down at these sorcerer wonder.,\"sits slumped on the branch, staring back at someone.\",caresses his chest and forehead.,grabs someone's collar.,gold0-orig,pos,unl,unl,pos,pos,Her body relaxes in death.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4854,Someone heaves a hanging cauldron into the witches face knocking her down. He then,wraps a chain around her neck and hoists her up using the oven door as a pulley.,fades down vacuuming his knees as another runaway propeller whizzes by.,keeps flying off the boat.,hurls someone over the coupled creature.,\"spins all around and attacked the ball, only to fall back.\",gold1-orig,pos,unl,unl,unl,unl,Someone heaves a hanging cauldron into the witches face knocking her down.,He then\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4860,Someone looks for the syringe but can not find it. Someone,starts to wake up.,is still in the phone.,looks wide at the larger tire.,is just being someone.,smiles and jogs out to the taxi.,gold1-orig,pos,unl,unl,unl,pos,Someone looks for the syringe but can not find it.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4852,Someone throws them onto someone and punches the both of them in the face. The crone then,tries to break his neck.,begins to scatter across the sand.,notices the half - embossed someone on the other side.,wipes the knife on a napkin followed by the angry elf.,crashes through the trunk of the fire.,gold0-orig,pos,unl,unl,pos,pos,Someone throws them onto someone and punches the both of them in the face.,The crone then\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4847,He somersaults into the house where the witch attacks him with a shovel. Someone,charges into the house but is swiftly felled by the hag.,lunges through bloody timbers from his injury.,feeds him a cone.,grabs the top of the stand.,fights to her feet.,gold0-orig,pos,unl,unl,unl,pos,He somersaults into the house where the witch attacks him with a shovel.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4849,Someone grabs a knife from a table and moves in to stab someone. They,\"struggle, each trying to gain the upper hand.\",fight it with a blade to protect someone.,\"lift a jersey outside the shop, when he gets in his saloon.\",are frozen at someone's feet.,\", his friends set him up.\",gold0-orig,pos,unl,unl,pos,pos,Someone grabs a knife from a table and moves in to stab someone.,They\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4858,She slowly starts to pas out when someone's wrist - timer goes off. He,is unable to keep his hold on her and collapses to his knees.,flick toward the bedroom windows of the gently crash day: day house.,\"tries to take this off, but when it's groggy, it hangs on the tip of his arm as he trots past.\",hangs up as the agent stands over the captain.,stops a few yards away then turns to him.,gold0-orig,pos,unl,unl,pos,pos,She slowly starts to pas out when someone's wrist - timer goes off.,He\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4855,He then wraps a chain around her neck and hoists her up using the oven door as a pulley. He,starts to punch her relentlessly.,skids to his feet and his eyes dart sideways.,pulls up in front of her pda door.,gets away from a limo and stubs his glove at the photo and tosses the photo onto the box.,begins styling his hair for eventually using a long and worn mattress.,gold0-orig,pos,unl,unl,unl,unl,He then wraps a chain around her neck and hoists her up using the oven door as a pulley.,He\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4861,Someone starts to wake up. She,spots his syringe on the ground.,grabs her by the shoulders and pushes him backwards the kiss.,glares up and goes.,grabs his surfboard and backs away.,slaps a face with her left hand.,gold1-orig,pos,unl,unl,pos,pos,Someone starts to wake up.,She\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4848,Someone charges into the house but is swiftly felled by the hag. Someone,grabs a knife from a table and moves in to stab someone.,fingers the knife within.,takes an raw bite of the bomb which explodes from all clicks like claws.,\"emerges at the far end, clutching her chest.\",slips into his coat and marches up to the open door.,gold0-reannot,pos,unl,unl,pos,pos,Someone charges into the house but is swiftly felled by the hag.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4859,He is unable to keep his hold on her and collapses to his knees. Someone,looks for the syringe but can not find it.,\"is lying on his back, clinging to someone's head.\",has given him a young boy too.,\"laughs joyfully, wakes again, and starts touching her.\",stands on someone and barges out of the building.,gold0-reannot,pos,unl,unl,unl,unl,He is unable to keep his hold on her and collapses to his knees.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-2008,4850,\"They struggle, each trying to gain the upper hand. Someone\",\"leaps into the fight, wrestling with the witch.\",\"starts for a long swing, but even quicker.\",steps over to someone and punches the air.,'s grip over someone's injury.,\"comes to, looking at the block for someone, who is waiting next the reel.\",gold0-reannot,pos,unl,unl,unl,unl,\"They struggle, each trying to gain the upper hand.\",Someone\nanetv_r_n1PfHvKI4,15773,A man is preparing to fly the kite. The kite,gets airborne and soars.,perform different styles and celebration of the video.,is knocked on the kite.,comes flying out onto the green sky.,is used to fly over the kite.,gold0-orig,pos,unl,unl,pos,pos,A man is preparing to fly the kite.,The kite\nanetv_r_n1PfHvKI4,15772,There is a field with a kite laying in it. A man,is preparing to fly the kite.,is standing in front of a building of palm trees with arrows from his hands.,runs his hands through the hole and runs the disc.,is hands trying to get a ball and throw it into the lane.,is floating on the kite in the air surfs and pulling it.,gold0-orig,pos,unl,unl,unl,unl,There is a field with a kite laying in it.,A man\nlsmdc0032_The_Princess_Bride-66373,15305,Someone feels a hand on his back. He,compares it to his own smaller hand.,glances over to someone who holds his hand out of someone's grip.,closes the gun in both hands.,returns his attention to the pages of the fallen general.,gets in the back.,gold1-orig,pos,unl,unl,unl,unl,Someone feels a hand on his back.,He\nlsmdc0032_The_Princess_Bride-66373,15306,\"And as the Assistant Brute is just about to club someone's brains out, someone lets fly with a stupendous punch. The Assistant Brute\",takes the full force of the blow right in the chops.,round cautiously as they run down the stairs along the bricked walkway.,switches off the underground equipment.,speaks one as the group tries to regain his composure.,,gold0-orig,pos,unl,unl,unl,n/a,\"And as the Assistant Brute is just about to club someone's brains out, someone lets fly with a stupendous punch.\",The Assistant Brute\nanetv_gMV5Mso7758,18980,A close up of a man is shown followed by him asking a woman a question on the beach. He then,is shown speaking to several different people holding a frisbee and playing a game.,creates a set the matches into different venues.,\"greats all of the people, leading into pushing the pucks across the lawn.\",presents another rifle and leaves with the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a man is shown followed by him asking a woman a question on the beach.,He then\nanetv_gMV5Mso7758,18981,He then is shown speaking to several different people holding a frisbee and playing a game. Many women laugh with the men and the man,gives several of them a kiss.,hobbles as well as doing another and throwing one person onto the ground.,dealing the accordions to others as well as text from the camera.,moves their hands up and down.,begins making tricks at the dog's place.,gold0-reannot,pos,unl,unl,unl,pos,He then is shown speaking to several different people holding a frisbee and playing a game.,Many women laugh with the men and the man\nlsmdc1012_Unbreakable-7365,1233,\"Head slightly to one side, he looks someone full in the face. Someone\",glances disbelievingly around someone's den.,reaches out back and accepts the arm.,faces others with the horn of a band.,looks the length of the window.,\"watches uneasily, as someone irritably obeys the king who leans against his arm, talking to the audience.\",gold0-orig,pos,unl,unl,pos,pos,\"Head slightly to one side, he looks someone full in the face.\",Someone\nlsmdc1012_Unbreakable-7365,1234,Someone glances disbelievingly around someone's den. Someone,turns and walks away.,\"slides his glass against someone, then turns onto a ledge, his free hand under his jacket.\",fumbles in a cushion lying beside her.,manages to brush his teeth.,talks for room fitness.,gold1-reannot,pos,unl,unl,unl,unl,Someone glances disbelievingly around someone's den.,Someone\nlsmdc1012_Unbreakable-7365,1232,\"Someone swings his chair back to face someone. Head slightly to one side, he\",looks someone full in the face.,stands with his hands drawn on his legs seductively.,lifts his head and stares into the ceiling.,rests his hands on his throat.,sticks out his tongue.,gold1-reannot,pos,unl,unl,pos,pos,Someone swings his chair back to face someone.,\"Head slightly to one side, he\"\nanetv_s84BStnbfK8,6965,They begin to play a game of wall ball. They,are swinging their rackets hitting the ball.,knock the leaves down but the mat.,walk from stage and look toward the audience.,are holding the motion cutting towards them.,take off at the pins.,gold0-orig,pos,unl,unl,unl,unl,They begin to play a game of wall ball.,They\nanetv_s84BStnbfK8,6964,Two people are standing in a room. They,begin to play a game of wall ball.,are holding tennis rackets on the floor.,play a game of crochet and walk around the yard.,begin playing a game of volleyball.,are engaged in a game of curling.,gold0-reannot,pos,unl,unl,pos,pos,Two people are standing in a room.,They\nanetv_3f6G-qzwzfg,18927,A score being shown leads into a game of people playing cricket and reacting positively and negatively. More clips of the game,are shown back to back as well as players cheering and celebrating.,are shown afterwards goals.,are shown and leads into the game of polo.,moves and ends with the closing footage.,,gold0-orig,pos,unl,pos,pos,n/a,A score being shown leads into a game of people playing cricket and reacting positively and negatively.,More clips of the game\nanetv_3f6G-qzwzfg,4591,A team of green and yellow outfitted cricket players pay ball on the field with one player staring another down with a menacing look. The teams,continue to play with the yellow and green team in the end celebrating.,continue to celebrate and one of them cuts a shot and fades out of the scores.,\"tug the game back and forth to the team, and other running to one side.\",continue down taking their positions and aim for each other and a closeup of a player leading into the field.,look to each other and listens.,gold0-reannot,pos,unl,unl,unl,pos,A team of green and yellow outfitted cricket players pay ball on the field with one player staring another down with a menacing look.,The teams\nanetv_3f6G-qzwzfg,4590,Two teams of cricket players play in a odi game in front of a large audience in the bleachers with high lights shown when goals achieve with the green and yellow team celebrating the most throughout the video. A team of green and yellow outfitted cricket players,pay ball on the field with one player staring another down with a menacing look.,drawn themselves on the deck playing the game of matches.,are playing polo with their hockey ring and men reach the goal on the start line in the tournament.,are in the middle of a white area and a bowler on the other is talking to the camera about a game.,are taking pictures to that the players have played various areas that the pole in a field.,gold0-reannot,pos,unl,unl,unl,pos,Two teams of cricket players play in a odi game in front of a large audience in the bleachers with high lights shown when goals achieve with the green and yellow team celebrating the most throughout the video.,A team of green and yellow outfitted cricket players\nanetv_5wOmHw6Boj8,15362,A clear bottle of detergent is shown and a person begins cleaning a mug with a cloth. The person,shows herself putting on the glove and goes back to washing the mug before finally showing her book on the product.,places the sheet down and wipes the sink onto the sink.,wipes the melting wax paste on the clean lens.,begins scrubs the rag all over untouched plate while well as cleaning the window and clothing presented with a brush.,,gold0-orig,pos,unl,unl,unl,n/a,A clear bottle of detergent is shown and a person begins cleaning a mug with a cloth.,The person\nlsmdc3068_THE_BIG_YEAR-3639,12847,\"Pulling his car out of a line of vehicles waiting for the ferry, someone peels off down the road. Someone and someone\",jump into a gray sedan at the front of the line.,stride through a busy recreation alley where she passes some where someone and strides carry her off.,descends off the bridge.,\"sharpen a plain - doh steed, across glassy grass, who rows on a bench - mounted case.\",\"sit at the wheel, towed, halfway up the road, as someone falls.\",gold1-orig,pos,unl,unl,unl,pos,\"Pulling his car out of a line of vehicles waiting for the ferry, someone peels off down the road.\",Someone and someone\nlsmdc3068_THE_BIG_YEAR-3639,12848,Someone and someone jump into a gray sedan at the front of the line. The white haired birder,turns his vehicle around and heads after someone.,sprays his car with a rag.,examines someone's fist across his throat.,extends his hand and pulls someone away.,pushes his bike in the corner of the counter.,gold0-reannot,pos,unl,unl,unl,unl,Someone and someone jump into a gray sedan at the front of the line.,The white haired birder\nlsmdc3068_THE_BIG_YEAR-3639,12846,\"Seeing someone sprint to his car, they head to the ticket booth. Pulling his car out of a line of vehicles waiting for the ferry, someone\",peels off down the road.,looks from her to the bus and both lot of i tilt out of the car.,sees someone's knocking into the desk.,brings another martini and steps over and helps him with his glass in the driver's seat.,comes back to interviewing someone.,gold0-reannot,pos,unl,unl,unl,unl,\"Seeing someone sprint to his car, they head to the ticket booth.\",\"Pulling his car out of a line of vehicles waiting for the ferry, someone\"\nanetv_o_Davs3OrOw,1912,He dives down to the bottom and picks something up off the bottom of the pool. He,swims back to the top and above water.,tries to help him.,wipes down the shirt in the sink while a woman is looking down.,\"catches it and quickly moves the board, turning him back to go in slow motion.\",gets out of the pool and swims around the pool.,gold1-orig,pos,unl,unl,unl,unl,He dives down to the bottom and picks something up off the bottom of the pool.,He\nanetv_o_Davs3OrOw,1911,A little boy wearing goggles jumps into a pool. He,dives down to the bottom and picks something up off the bottom of the pool.,is swimming soccer in the water.,does an adult jump into a of pool.,tries to row someone falls.,runs towards the beach.,gold0-orig,pos,unl,unl,unl,unl,A little boy wearing goggles jumps into a pool.,He\nanetv_daDd48y4x0g,2418,We see lots of plate of fancy food. We then,zoom in on the plates.,see two women standing down a bar for the lion.,see the closing screen.,see the boy smiling on a cake.,see cookies on white ingredients.,gold0-orig,pos,unl,unl,unl,unl,We see lots of plate of fancy food.,We then\nanetv_daDd48y4x0g,2419,We then zoom in on the plates. We,see a shadow on the plates.,see an animated shape beside and slowly affecting a graceful incline.,are cut to astonished the images before the picture is shown.,\"girl holds teenaged boy's hand as we ride backwards and we roll the legs up, extending her arms.\",see the man ironing an ironing handle.,gold1-orig,pos,unl,unl,unl,unl,We then zoom in on the plates.,We\nanetv_daDd48y4x0g,2420,We see a shadow on the plates. A man on the right,picks up a few plates.,takes several shots on break.,puts pieces on the carving sandwich.,is talking while standing behind a counter with the bridge.,walks into the living room.,gold0-orig,pos,unl,unl,pos,pos,We see a shadow on the plates.,A man on the right\nanetv_83a5nOzZU1g,4554,A drink is being poured into a glass followed by a woman grabbing a glass and pouring mixtures into it. She,creates an alcoholic drink by pouring several different mixes together and the camera zooming in on the drink.,takes a drink from a plastic cup and drops it.,mixes items together along with a small spoon near a spoon and blends it down all along with sugar.,continues to hit the pot around the counter while smiling to the camera and presenting the drink.,puts glue around her nails and stirs it in with a liquid.,gold1-orig,pos,unl,unl,unl,unl,A drink is being poured into a glass followed by a woman grabbing a glass and pouring mixtures into it.,She\nlsmdc3013_BURLESQUE-4529,18479,Then she returns her eyes to the stage where the dancers shake their hips. The bartender,interrupts a pink - haired waitress who's busy flirting.,puts a glasses of beer to her lips.,\"grabs a cash from a plastic container, then drinks from a cup.\",instructs someone to finish up her date.,,gold0-orig,pos,unl,unl,unl,n/a,Then she returns her eyes to the stage where the dancers shake their hips.,The bartender\nlsmdc3013_BURLESQUE-4529,18477,\"Tears in her eyes, the blonde woman claps, transfixed. As the band plays, a spotlight\",shines on dancers in silver - sequined outfits.,shines on one of the agents astride them.,gently plays on stage.,strikes someone with a blue spotlight which spins the dancer threatening back in center stage.,snaps the play in helmet light and smiles.,gold0-orig,pos,unl,unl,unl,unl,\"Tears in her eyes, the blonde woman claps, transfixed.\",\"As the band plays, a spotlight\"\nlsmdc3013_BURLESQUE-4529,18478,\"As the band plays, a spotlight shines on dancers in silver - sequined outfits. A handsome toned bartender in eyeliner and a bowler hat\",leans toward the blonde.,walk back down the street.,approaches and takes a seat behind her.,joins him with a box leaflet.,sits on quietly among the young glittering black photos.,gold1-orig,pos,unl,unl,unl,unl,\"As the band plays, a spotlight shines on dancers in silver - sequined outfits.\",A handsome toned bartender in eyeliner and a bowler hat\nlsmdc3013_BURLESQUE-4529,18476,One lifts a leg higher than the singer's head. The posed dancers,frame the smiling diva.,politely raise their bows.,hits the set as they pose.,dips along the drum.,are shown on a dance floor with just one person.,gold0-orig,pos,unl,unl,unl,unl,One lifts a leg higher than the singer's head.,The posed dancers\nlsmdc3013_BURLESQUE-4529,18480,The bartender interrupts a pink - haired waitress who's busy flirting. The blonde,turns back to the bartender.,puts the cap back on.,does a great job and flicks his head.,man lights a joint.,leans over and kisses her.,gold1-orig,pos,unl,unl,pos,pos,The bartender interrupts a pink - haired waitress who's busy flirting.,The blonde\nlsmdc3013_BURLESQUE-4529,18481,The blonde turns back to the bartender. She,points to the stage.,\", meanwhile, someone arrives to a little girl walking toward her, skips across her.\",goes to her line of art.,puts down her cup.,shakes off the bills.,gold0-orig,pos,unl,unl,pos,pos,The blonde turns back to the bartender.,She\nlsmdc3013_BURLESQUE-4529,18483,\"As she leaves, the bartender smiles. Now the blonde\",enters a bustling backstage area.,woman applies sand on her friends.,child answers his own cell.,obese woman faces her clumsily companion.,smiles at someone hitting lunch into a rack.,gold1-reannot,pos,unl,unl,unl,unl,\"As she leaves, the bartender smiles.\",Now the blonde\nanetv_6GGQUpJR5qs,2387,The dog shakes his fur. The person,continues wetting the dog.,finishes the dirt snowy.,throws water from his mower.,shows how to lay paw.,continues to groom the dog.,gold0-orig,pos,unl,unl,unl,unl,The dog shakes his fur.,The person\nlsmdc1046_Australia-90784,18918,\"Someone steps out on the balcony above, and watches him nuzzle the horse affectionately. She\",makes her way downstairs.,stares at his cellphone.,gives an uncertain shake of his head but nods politely.,\"rides around it, delighted.\",\"stares at his son, eyeing his father earnestly.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone steps out on the balcony above, and watches him nuzzle the horse affectionately.\",She\nlsmdc1046_Australia-90784,18917,Someone exercises Capricornia in a small yard. Someone,\"steps out on the balcony above, and watches him nuzzle the horse affectionately.\",leaves someone on the back of someone's tail.,glares at the car as they ride down.,tackles someone to the loop nearby.,turns off a lamp and plants a hungry kiss on the face.,gold0-orig,pos,unl,unl,unl,pos,Someone exercises Capricornia in a small yard.,Someone\nanetv__ekWWP0dQZM,10903,A ballerina is shown in class warming up her feet and walking away crying. Various actors,talk to the camera about filming a movie about ballet and the moves they learned.,are shown that leads into her exercises and leads into some girls grabbing arms and performing hop movements.,are shown riding a red dot in the ring.,are shown of various girls dancing.,can be seen dancing together in the neighborhood as well as performing kickboxing and tricks.,gold0-orig,pos,unl,unl,unl,unl,A ballerina is shown in class warming up her feet and walking away crying.,Various actors\nanetv__ekWWP0dQZM,10905,The ballerinas are moving around the set while the camera is rolling. The actors,continue talking about tricks and what they learned.,\"stand around doing the exercise, making flippers and moving using hands.\",then walk to the stage and a group of kids follow very starts by throwing a baton up into the air.,continue to play and as the batons are.,,gold1-orig,pos,unl,unl,unl,n/a,The ballerinas are moving around the set while the camera is rolling.,The actors\nanetv__ekWWP0dQZM,10904,Various actors talk to the camera about filming a movie about ballet and the moves they learned. The ballerinas,are moving around the set while the camera is rolling.,perform zumba while others stand in the middle.,are then shown using icing and other with lemonade to other players.,are performing martial routines in the field area.,are shown spinning slowly by themselves at the beach.,gold1-reannot,pos,unl,unl,unl,unl,Various actors talk to the camera about filming a movie about ballet and the moves they learned.,The ballerinas\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94137,5843,\"Someone stays glued to the radio. Now, they\",are camped on the shore of a lake.,play amongst guests in a living room.,take the time between a looming wall of chalk.,leave the school and speed off.,combat the lounge in a corner.,gold1-orig,pos,unl,unl,unl,unl,Someone stays glued to the radio.,\"Now, they\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-94137,5841,They are camped under a bridge. Someone,stands alone a little distance from them.,navigates the funeral line.,leans her head back against the scanner.,is deep in thought.,is sitting in front of the house.,gold0-orig,pos,unl,unl,unl,unl,They are camped under a bridge.,Someone\nlsmdc0011_Gandhi-53036,5672,\"It is a comment too grave for glibness, and someone is obviously struck by the pain of it. He\",\"pauses for a moment, staring down at the youth.\",has not heard.,\"stands over with a long beat, then steps up and pushes him hard against the corner of the lifeboat.\",snarls up at the faint sound of his radio.,,gold0-orig,pos,unl,unl,unl,n/a,\"It is a comment too grave for glibness, and someone is obviously struck by the pain of it.\",He\nlsmdc0011_Gandhi-53036,5668,\"It seems a little island of calm in a sea of wild chaos. On the roof of the house, a figure\",moves into the light.,appears with an eagle.,looms over a small glass road.,appears at a window.,holds cigar sticks while smoke covers the floor in front of him.,gold0-orig,pos,unl,unl,unl,unl,It seems a little island of calm in a sea of wild chaos.,\"On the roof of the house, a figure\"\nlsmdc0011_Gandhi-53036,5669,\"He peers down at the dark, rioting streets. A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers,\",are shouting up at the roof.,\"try to work, stuff something in the card sack.\",swing by a city and approach the bowling lobby.,start firing down a passageway.,,gold0-orig,pos,unl,unl,unl,n/a,\"He peers down at the dark, rioting streets.\",\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers,\"\nlsmdc0011_Gandhi-53036,5670,\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers, are shouting up at the roof. We\",see three or four black flags and stains of blood on many of them.,\"zip down a back street, broken up by several headlights.\",\"now in trance, they carry him out of the night of his office, out with drawn paper box of etcetera.\",is someone just flowing his ammunition.,see her leaving her adjoining living room.,gold0-orig,pos,unl,unl,unl,unl,\"A surging gang of youths, many carrying torches, and far outnumbering the little group of police and soldiers, are shouting up at the roof.\",We\nlsmdc0011_Gandhi-53036,5671,\"We see three or four black flags and stains of blood on many of them. It is a comment too grave for glibness, and someone\",is obviously struck by the pain of it.,is suppress for paying yet.,has got up for school.,is over the chanting barricade.,quality coworkers notice the eerily behind.,gold0-orig,pos,unl,unl,unl,unl,We see three or four black flags and stains of blood on many of them.,\"It is a comment too grave for glibness, and someone\"\nlsmdc3014_CAPTAIN_AMERICA-5381,3287,A light - haired soldier saunters forward. Someone,\"punches someone's face, toppling him.\",forces her in a bear hug.,leans against his chin.,sit on an empty bench by a makeup artist and faces a blonde woman and a pale.,flings his arms in the air as the cops and water leave their ankles.,gold0-reannot,pos,unl,unl,unl,unl,A light - haired soldier saunters forward.,Someone\nanetv_Lbdp-HCjWw8,12131,An indication shows on the screen letting you know the different lines. Tips for the game also,show up on the screen.,show hard action on screen shown.,show no cricket strategies.,\", the final man gets out of his disapproving, gaining his skin.\",demonstrated hawk openings and energy.,gold0-orig,pos,unl,unl,unl,unl,An indication shows on the screen letting you know the different lines.,Tips for the game also\nanetv_Lbdp-HCjWw8,12128,An introduction comes onto the screen for a video about how to play squash. Two men,are shown on a squash court playing a game of squash.,\"pose in a pink polo, where a young cube is.\",\"are shaving like their legs, explaining that they are going.\",pass around on the table with a man that is holding a sunscreen and demonstrates how to throw a ball.,,gold0-orig,pos,unl,unl,unl,n/a,An introduction comes onto the screen for a video about how to play squash.,Two men\nanetv_Lbdp-HCjWw8,12132,Tips for the game also show up on the screen. At the end of the video a text box,shows up with a fun fact about squash.,comes next to show the video and screen to play scissors split the screen.,appears: pro and cameras as you can hear what it is.,\"appears on the screen for candy clips, too.\",is shown with people trying to get it together.,gold1-orig,pos,unl,unl,unl,unl,Tips for the game also show up on the screen.,At the end of the video a text box\nanetv_Lbdp-HCjWw8,12130,Text shows up on the screen showing the things you will need for the game. An indication,shows on the screen letting you know the different lines.,introduce a scene with a big screen and words of the view of alcohol that is shown.,is attached to a rope that is pulled by loops on the bottom multiple times to the end.,smokes in the woods.,,gold0-orig,pos,unl,unl,unl,n/a,Text shows up on the screen showing the things you will need for the game.,An indication\nanetv_Lbdp-HCjWw8,12129,Two men are shown on a squash court playing a game of squash. Text,shows up on the screen showing the things you will need for the game.,smoke is drained into a green.,play the bongos and a man in a striped shirt cleans his hat in the end and firing the balls from each other.,aggressively reach way to tips the balls to the ball with no goal.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are shown on a squash court playing a game of squash.,Text\nlsmdc1019_Confessions_Of_A_Shopaholic-80730,10878,\"Like a woman possessed, someone clambers onto the slippery boardroom table on all fours, propelling herself at the phone. Later in his office, with someone in attendance, someone\",looks earnestly into someone's face.,regards his expectant looking.,leads a red haired girl onto the field.,drops his phone in a chair.,wipes his face.,gold1-orig,pos,unl,unl,pos,pos,\"Like a woman possessed, someone clambers onto the slippery boardroom table on all fours, propelling herself at the phone.\",\"Later in his office, with someone in attendance, someone\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80730,10880,\"At her desk, she opens a letter. He\",plunks himself down on an easy chair that tips back.,\"activates a product of her bound notes, then returns his attention to the pamphlet.\",\"takes the note, takes it, and inserts it playfully.\",pulls out a supplies and hands it to someone.,presents it to someone's photo.,gold1-orig,pos,unl,unl,unl,unl,\"At her desk, she opens a letter.\",He\nlsmdc1019_Confessions_Of_A_Shopaholic-80730,10879,\"Later in his office, with someone in attendance, someone looks earnestly into someone's face. Someone\",glances dubiously at someone.,\"cringes then pulls out a citrus juicer, containing a waist - colored liquid.\",\"stays behind archery across two accomplice, stopping at the end of his saddle and holding their picnic noses.\",follows his friend out to their car as as someone's armored suv fires up into the road.,glances at someone and sighs.,gold1-orig,pos,unl,unl,unl,pos,\"Later in his office, with someone in attendance, someone looks earnestly into someone's face.\",Someone\nlsmdc3041_JUST_GO_WITH_IT-18381,5621,\"Someone turns and her jaw drops at the site of the other woman. Moving in slow motion, someone\",blows a kiss to a stranger.,stalks off as the petrified someone approaches.,\"soars backward and positions herself, grabbing the barbed - stick fang.\",calls out of her window.,gets out and reaches the entrance.,gold1-orig,pos,unl,unl,pos,pos,Someone turns and her jaw drops at the site of the other woman.,\"Moving in slow motion, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18381,5620,\"From a stairway, someone ascends into view in a white sheet dress that shows off her long tan legs and graceful curves. Her hair tousled in sexy waves, she\",smirks through glamorous sunglasses.,chuckles to herself as the pretty children are at their mother's door.,\"wears her long, silky lashes.\",pants back and forth with a very stiff leg laying on the floor.,,gold1-orig,pos,unl,unl,unl,n/a,\"From a stairway, someone ascends into view in a white sheet dress that shows off her long tan legs and graceful curves.\",\"Her hair tousled in sexy waves, she\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-349,16025,\"Someone watches her apply lip gloss. From a window, someone\",scans the quad with his binoculars.,looks down the massive window.,grabs her sunglasses and glimpses them.,finds her eyes hidden.,watches her friend closely.,gold1-orig,pos,unl,unl,unl,pos,Someone watches her apply lip gloss.,\"From a window, someone\"\nanetv_QGzrtgTrwiQ,11228,The man jumps into the sand pit continuously while moving in slow motion. He,moves down several more times while jumping further each time.,seems to fit the man's costume around the tree.,see title gopro and a fencers.,goes back up and in slow motion stepping forward and taking the second rung off of the screen.,,gold0-orig,pos,unl,unl,pos,n/a,The man jumps into the sand pit continuously while moving in slow motion.,He\nanetv_QGzrtgTrwiQ,11227,A man is shown performing a long jump in a small frame as leads into him jumping in a large frame. The man,jumps into the sand pit continuously while moving in slow motion.,dance together while the camera captures his movements.,does tricks with demonstrate balances up point in the same bars.,continues throwing the legs of the body and down several tricks and leads by other people underwater.,moves from one length to the camera and others on a path.,gold0-orig,pos,unl,unl,unl,pos,A man is shown performing a long jump in a small frame as leads into him jumping in a large frame.,The man\nanetv_QGzrtgTrwiQ,540,A man is seen long jumping into a pit followed by another man jumping in. More clips,are shown of men running down a track into a pit.,are shown of people riding down the mountain while performing tricks all around.,are shown of people wrestling and on jump roping as well as interacting with people and running on the sides.,are shown of the man doing flips and tricks on the beam while also walking away.,are shown of people performing tricks on skateboards and jumping into another person.,gold0-orig,pos,unl,unl,unl,unl,A man is seen long jumping into a pit followed by another man jumping in.,More clips\nanetv_QGzrtgTrwiQ,541,More clips are shown of men running down a track into a pit. The video,continues on with more clips of men running.,continues riding around the other moving around a area and ends by walking away.,leads into them jumping abruptly and talking to each other.,continues towards the man hitting the stripes while people watch around them.,ends with people warming up and begins performing.,gold1-orig,pos,unl,pos,pos,pos,More clips are shown of men running down a track into a pit.,The video\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6672,A security guard breaks them up. Someone walks away and someone,jumps on his back.,stares at the steward.,opens the door and looks to someone.,drops someone and heads around a corner.,follows someone to him.,gold1-orig,pos,unl,unl,unl,unl,A security guard breaks them up.,Someone walks away and someone\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6673,Someone walks away and someone jumps on his back. The guard runs over to them he,breaks them up a second time.,holds her up while they all get back into the car.,swings to push them upward.,hands back a dozen men.,help her up.,gold0-orig,pos,unl,unl,unl,pos,Someone walks away and someone jumps on his back.,The guard runs over to them he\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6675,Someone drives someone up outside the hospital. They both,sit staring ahead stony faced.,agog at the diner.,\"draw a nurse over someone, who sees the outline of her.\",look up to the window.,look at someone.,gold1-orig,pos,unl,unl,pos,pos,Someone drives someone up outside the hospital.,They both\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6674,The guard runs over to them he breaks them up a second time. Someone,drives someone up outside the hospital.,sips his pistol as someone passes.,\"flings back the motorcycle and lands on someone's knees, as he slams the car.\",stumbles back to his feet.,has been listening to it.,gold0-orig,pos,unl,unl,pos,pos,The guard runs over to them he breaks them up a second time.,Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6678,\"She turns towards someone, but does n't look at him. She\",gets out of the car and walks towards the hospital.,tenses as she mimes.,looks pleased as she looks up at him.,bows and steps forward.,hands him the drink.,gold0-orig,pos,unl,unl,pos,pos,\"She turns towards someone, but does n't look at him.\",She\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6681,Clutching her coat she wanders down the corridor oblivious to dr. Someone,is having a candle lit dinner with someone.,sits in front of.,is joe - aged about eight years old.,\"flips her apron off, revealing her long - cut hair.\",,gold0-orig,pos,unl,unl,pos,n/a,Clutching her coat she wanders down the corridor oblivious to dr.,Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6679,She gets out of the car and walks towards the hospital. She,stops beneath the red and white emergency sign and looks back.,picks up the horn in the windshield.,jumps out of her way to rope up quickly.,slumps over into the waiting car and flings its hood away.,shifts and looks down.,gold0-orig,pos,unl,unl,unl,pos,She gets out of the car and walks towards the hospital.,She\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6677,Someone undoes her seat belt. She,\"turns towards someone, but does n't look at him.\",points her body in between.,hangs the dress forward from the ashtray and rushes as someone stands to the doorway.,pulls a knife from her chair and dangles over the creature's thigh.,taps someone's head with her foot.,gold0-reannot,pos,unl,unl,unl,unl,Someone undoes her seat belt.,She\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6680,\"Still in her pretty silver dress someone walks into the hospital. In a daze, she slowly\",walks past the front desk.,sticks to her feet and returns with her back to him.,glances back to her side.,wakes up with a drink.,hurries to the window of the house.,gold0-reannot,pos,unl,unl,unl,unl,Still in her pretty silver dress someone walks into the hospital.,\"In a daze, she slowly\"\nlsmdc3052_NO_STRINGS_ATTACHED-25384,6676,Tears glistened in someone's eyes. Someone,undoes her seat belt.,is dragged out of the room.,takes the prison key from someone.,looks down as the hidden turn approaches.,adds the powder to his round face.,gold1-reannot,pos,unl,unl,unl,pos,Tears glistened in someone's eyes.,Someone\nlsmdc0009_Forrest_Gump-50557,1976,\"Someone looks at someone, lets go of someone and rolls. Someone\",sits up as someone looks at him.,rushes over and surrounds the fire in a burst of flames which rise into the air.,\"backs face down from his seat, gazing at the table in the empty quarters, the door to someone's room.\",grabs someone awkwardly and shakes him down slowly.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone looks at someone, lets go of someone and rolls.\",Someone\nlsmdc0009_Forrest_Gump-50557,1981,Someone steps up to someone's bed. Someone,stops in mid - sentence as he looks down at the bed.,sits on someone's shoulder.,\"hangs up, and places the ring on someone's finger.\",glow a moat glows behind a illuminated sign and plays.,shoots his hand off but she is gone.,gold1-orig,pos,unl,unl,unl,unl,Someone steps up to someone's bed.,Someone\nlsmdc0009_Forrest_Gump-50557,1979,An officer walks up to him. The officer,holds up an envelope.,\"takes a sip of his coffee, then immediately turns to someone, who's discovered a industrial, slicked pointed stone.\",rides up and addresses someone.,places the ring in his pants.,lays a hand over the bird.,gold1-orig,pos,unl,unl,unl,unl,An officer walks up to him.,The officer\nlsmdc0009_Forrest_Gump-50557,1978,Someone plays ping - pong by himself. An officer,walks up to him.,retrieves a plastic phone and tucks it into her breast pocket.,leads him towards the correspondent bringing up pieces of their english uniforms.,puts the cue stick to the top.,,gold0-orig,pos,unl,unl,unl,n/a,Someone plays ping - pong by himself.,An officer\nlsmdc0009_Forrest_Gump-50557,1982,Someone stops in mid - sentence as he looks down at the bed. Someone,turns and look at the nurse.,picks up his hat with two brass letters.,caresses his sweaty hair as he returns to the bathroom.,\"somersaults across the room, looking down at the branches of the heavy orthanc.\",falls on the bed as he makes his way down the bed and jumps into the water.,gold0-orig,pos,unl,unl,unl,unl,Someone stops in mid - sentence as he looks down at the bed.,Someone\nlsmdc0009_Forrest_Gump-50557,1980,The officer holds up an envelope. Someone,steps up to someone's bed.,sees the elder sword in the top of his blue hat.,gives him a little hug.,\"draws the wings, and picks up a cord.\",leads it down to the toilets.,gold1-reannot,pos,unl,unl,unl,unl,The officer holds up an envelope.,Someone\nanetv_MLU2wreEGIg,1754,The boy then pushes himself along across the monkey bars. He,jumps down in the end and begins walking across a bridge.,lets the boy go back and fourth also.,continuously stalks back and fourth and talks to the camera.,bends down as well as the man going to side dropping away down.,continues to speak to the camera.,gold0-orig,pos,unl,unl,unl,unl,The boy then pushes himself along across the monkey bars.,He\nanetv_MLU2wreEGIg,1753,A small child is seen standing before a set of monkey bars. The boy then,pushes himself along across the monkey bars.,puts an earring through the hole to catch a fish.,begins jumping up and down on the beam.,begins hitting the uneven bars on the playground.,begins to run down a slide.,gold0-reannot,pos,unl,unl,unl,unl,A small child is seen standing before a set of monkey bars.,The boy then\nlsmdc3019_COLOMBIANA-9048,5944,She pauses by the door and raises a detonator. A fire ball,blossoms out from the unit and rolls down the hall.,swims along the shoreline.,pops up from the tent and disappears behind a low swimming pool.,is thrown into reverse.,passes in the passenger window.,gold0-orig,pos,unl,unl,unl,pos,She pauses by the door and raises a detonator.,A fire ball\nlsmdc3019_COLOMBIANA-9048,5975,\"Reaching the kitchen, she bursts into tears. She\",kneels down to the old woman's crumpled body beside the overturned table and chair.,arrives with several others.,extends her hand to someone who walks next to her.,wipes her mouth on a napkin.,scurries into the living room where a lamp shines.,gold0-orig,pos,pos,pos,pos,pos,\"Reaching the kitchen, she bursts into tears.\",She\nlsmdc3019_COLOMBIANA-9048,5967,\"Meanwhile, someone arrives in a changing room and checks a set of lockers. She\",finds one unlocked and opens it.,heads bustling with someone in a salon.,nods accidentally on stage then pads toward someone.,runs past two pins.,lands on the other side of a building with her left leg poised.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone arrives in a changing room and checks a set of lockers.\",She\nlsmdc3019_COLOMBIANA-9048,5928,\"As the elevator approaches the 11th floor, Agent someone draws his gun. Someone\",reaches a stairwell and descends just as the elevator arrives.,hugs some boys to their seats.,eyes someone as he crawls toward him.,takes the top and wallet from his case pocket.,\"glances around, then pauses and grins.\",gold0-orig,pos,unl,pos,pos,pos,\"As the elevator approaches the 11th floor, Agent someone draws his gun.\",Someone\nlsmdc3019_COLOMBIANA-9048,5980,\"The gun drops from her hand. She moves closer, She sinks down before her murdered uncle, and\",sobs against his shoulder.,backhands him into a wall.,looks angrily at traffic.,props a hand on the frame's pillow.,looks under someone's instrument.,gold0-orig,pos,unl,unl,unl,unl,The gun drops from her hand.,\"She moves closer, She sinks down before her murdered uncle, and\"\nlsmdc3019_COLOMBIANA-9048,5988,\"He wearily takes his frozen dinner to the kitchen and puts it tray in the microwave. Turning, he\",finds someone standing nearby in the shadows with her handgun pointed at him.,sees an attractive wavy haired man and a woman.,gets up and walks out to one of the adjoining family's doors.,finds someone sitting alone.,\"puts on a low lamp, lights up.\",gold0-orig,pos,unl,unl,unl,pos,He wearily takes his frozen dinner to the kitchen and puts it tray in the microwave.,\"Turning, he\"\nlsmdc3019_COLOMBIANA-9048,5942,\"She sets a charge on the tiled wall and pushes a button. Taking up her enormous rifle, she\",marches down her neighbor's hallway.,inserts the container into the trunk cabinet and opens the gate.,adjusts them backward and tucks it into.,opens it with her chopsticks.,,gold0-orig,pos,unl,unl,unl,n/a,She sets a charge on the tiled wall and pushes a button.,\"Taking up her enormous rifle, she\"\nlsmdc3019_COLOMBIANA-9048,5953,\"In an elevator, Agent someone speaks into his radio. Someone\",eyes monitors in the lobby.,walks an alarm machine.,zooms in and continues with headphones.,\"watches someone's monitor, then follows him.\",looks up at the alien.,gold1-orig,pos,unl,unl,unl,unl,\"In an elevator, Agent someone speaks into his radio.\",Someone\nlsmdc3019_COLOMBIANA-9048,5939,\"In the bathroom, someone takes a huge assault rifle down from the crawl space. On the 11th floor, a swat officer\",slips a snake camera under a door while agent someone watches its video monitor.,approaches an i flag as he touches the pistol.,\"draws his pistol and opens the door, exposing the exposed brass machine wagon.\",\"hurls out a catapult, then reaches over the shelf and pulls out a black wand.\",,gold0-orig,pos,unl,unl,unl,n/a,\"In the bathroom, someone takes a huge assault rifle down from the crawl space.\",\"On the 11th floor, a swat officer\"\nlsmdc3019_COLOMBIANA-9048,5972,\"Later, she arrives at someone's house. She\",halts at the sight of an unfinished cigar on a side table.,shuts the door and walks home.,\"sit smoking in his sights with a pile of newspaper, food and warming up.\",looks up as he passes a herd of zombies.,turns away from her.,gold0-orig,pos,unl,unl,unl,pos,\"Later, she arrives at someone's house.\",She\nlsmdc3019_COLOMBIANA-9048,5950,\"She lands gracefully at ground level. In her apartment, Agent someone\",peers at her surveillance monitor.,cuts up a doctor's uniform.,\"bends down, putting behind her broken mask.\",slips the card in his pocket.,uses a vodka ash - soaked lighter to a flame.,gold1-orig,pos,unl,pos,pos,pos,She lands gracefully at ground level.,\"In her apartment, Agent someone\"\nlsmdc3019_COLOMBIANA-9048,5969,\"Now as a subway train moves through the tunnel, a uniform clad someone slips out onto a catwalk above it. A worker\",mends a track below as she creeps along.,checks in instant photos.,pushes several limbs aside and his supplies deposit them with a flamethrower.,sets a knife over a table with a metal sideboard.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now as a subway train moves through the tunnel, a uniform clad someone slips out onto a catwalk above it.\",A worker\nlsmdc3019_COLOMBIANA-9048,5943,\"Taking up her enormous rifle, she marches down her neighbor's hallway. She\",pauses by the door and raises a detonator.,\"opens the door, and finds a comics elephant.\",emerges from a black sedan and secures it off the bed.,follows with a little of the lug nuts and sautes it.,lets someone down followed by instructions at the corridor.,gold0-orig,pos,unl,unl,unl,unl,\"Taking up her enormous rifle, she marches down her neighbor's hallway.\",She\nlsmdc3019_COLOMBIANA-9048,5958,Swat officers sweep the space with rifle lights. Someone,climbs backward through the narrow vent hole.,sees a motionless figure working.,moves through the gate towards her school.,sees a dark - skinned agent.,uses a weapon for aiming his pistol through the door.,gold0-orig,pos,unl,pos,pos,pos,Swat officers sweep the space with rifle lights.,Someone\nlsmdc3019_COLOMBIANA-9048,5955,\"Meanwhile, someone shoots out a camera. Arriving at another vent cover, she\",sets her rifle aside and unscrews the grating with her finger.,lets him fall in which she takes her hands off.,takes a strawberry gun out of a rack.,finds a shirtless woman lying around.,peers through a window.,gold1-orig,pos,unl,unl,pos,pos,\"Meanwhile, someone shoots out a camera.\",\"Arriving at another vent cover, she\"\nlsmdc3019_COLOMBIANA-9048,5987,He sets his gun and badge in a drawer. He,wearily takes his frozen dinner to the kitchen and puts it tray in the microwave.,\"gives the waitress a quick look, then sets him down.\",is walking out onto the street.,put the box to his boot and removes the grimhold.,takes out a coffee cup and a handful of colored hookah cleaner.,gold0-orig,pos,unl,pos,pos,pos,He sets his gun and badge in a drawer.,He\nlsmdc3019_COLOMBIANA-9048,5984,\"Later, he passes a neighbor walking his dog. The agent\",heads through an iron security gate and approaches the entrance of a brownstone building.,drives the snow vehicle across a driveway with a fallen tree.,escorts him into a large home kit.,stands in the golf cart.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, he passes a neighbor walking his dog.\",The agent\nlsmdc3019_COLOMBIANA-9048,5935,\"She races to a door, unlocks it, and slips into a living room where a long haired man watches tv. He\",bolts up as she enters.,follows someone out of the spot.,grabs a bottle of whiskey and saunters around the basin.,responds as someone holds her foot.,,gold0-orig,pos,unl,unl,unl,n/a,\"She races to a door, unlocks it, and slips into a living room where a long haired man watches tv.\",He\nlsmdc3019_COLOMBIANA-9048,5934,\"From the stairwell, someone evades the ascending swat team by ducking into a hallway. She\",\"races to a door, unlocks it, and slips into a living room where a long haired man watches tv.\",leads someone through the dark tunnel lined with his desks and shot racks.,finishes and faces someone.,looks up from a wall with massive columns.,,gold0-orig,pos,unl,unl,unl,n/a,\"From the stairwell, someone evades the ascending swat team by ducking into a hallway.\",She\nlsmdc3019_COLOMBIANA-9048,5929,Someone reaches a stairwell and descends just as the elevator arrives. Two swat officers cautiously,scope out the area.,emerges from the road and disappears.,move in their cases.,see the utility drill sergeant.,walk with their doors as someone straps his way through the front doors.,gold0-orig,pos,unl,unl,unl,unl,Someone reaches a stairwell and descends just as the elevator arrives.,Two swat officers cautiously\nlsmdc3019_COLOMBIANA-9048,5957,She turns as the authorities march into the garage. Swat officers,sweep the space with rifle lights.,\"help the barista, who apparently twirl their deadly names.\",chunky decorate the grass.,\"continue to get dressed, unsure spanish.\",lead them towards the hobbits.,gold0-orig,pos,unl,unl,unl,unl,She turns as the authorities march into the garage.,Swat officers\nlsmdc3019_COLOMBIANA-9048,5940,\"On the 11th floor, a swat officer slips a snake camera under a door while Agent someone watches its video monitor. He\",finds someone's living room empty.,approaches the doctor and gives him a polite smile before following his gaze.,inspects the carved symbols on the panel.,\"form an image of an old man in a gray tunic, sitting on either side.\",,gold0-orig,pos,unl,pos,pos,n/a,\"On the 11th floor, a swat officer slips a snake camera under a door while Agent someone watches its video monitor.\",He\nlsmdc3019_COLOMBIANA-9048,5970,A worker mends a track below as she creeps along. She,strides up a walkway toward daylight.,\"engages in deep, brass games.\",packs a briefcase and removes a black sedan from the adult.,uses a tool saw for baby two tubing.,spots a dot on a monitor.,gold0-orig,pos,unl,unl,unl,unl,A worker mends a track below as she creeps along.,She\nlsmdc3019_COLOMBIANA-9048,5986,Now he arrives in a modest apartment. He,sets his gun and badge in a drawer.,gets on the phone and shuts the door.,steps into a bedside carrying a gray silk blouse.,places a glass on a top shelf.,,gold0-orig,pos,unl,unl,unl,n/a,Now he arrives in a modest apartment.,He\nlsmdc3019_COLOMBIANA-9048,5946,A fiery blast rips a hole in the bathroom wall. Agent someone,stands calmly in an elevator that jostles with the force of the explosion.,hands his wand.,\"stands as someone carefully peers near the bone tunnel, his dirty tail sticking open.\",picks up a cd and hears a whimpering groan.,,gold0-orig,pos,unl,unl,pos,n/a,A fiery blast rips a hole in the bathroom wall.,Agent someone\nlsmdc3019_COLOMBIANA-9048,5922,\"One of her monitors reads, Third party on line.. A surveillance feed\",shows the swat truck arriving outside.,flies up to her as she is going to the next room.,crosses a news report.,shows her arriving and carrying a sleek black sticker.,,gold0-orig,pos,unl,unl,unl,n/a,\"One of her monitors reads, Third party on line..\",A surveillance feed\nlsmdc3019_COLOMBIANA-9048,5933,\"Agent someone arrives in another corridor with more gunmen. From the stairwell, someone\",evades the ascending swat team by ducking into a hallway.,watches sympathetically as someone pushes down a gate - locked hangar.,sits at a netted area where the three of them stand.,attaches his wrist.,and someone join someone on a ledge nearby.,gold1-orig,pos,unl,unl,unl,pos,Agent someone arrives in another corridor with more gunmen.,\"From the stairwell, someone\"\nlsmdc3019_COLOMBIANA-9048,5949,\"Someone slides down a cluster of pipes in the shaft, passing several stories. She\",lands gracefully at ground level.,heads down the staircase to a run - net window and someone shines it on the elevator.,\"shows the theater room, where the children watch from music to a hallway while a judge swigs from a bottle.\",pushes him away.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone slides down a cluster of pipes in the shaft, passing several stories.\",She\nlsmdc3019_COLOMBIANA-9048,5963,\"Someone tiptoes through a vent system. As they search, someone\",pads through a shadowy tunnel.,tosses the smoke to someone who takes it and faces it.,leaps toward someone.,finds the knife locked.,swims towards a glowing tunnel.,gold0-orig,pos,unl,unl,unl,unl,Someone tiptoes through a vent system.,\"As they search, someone\"\nlsmdc3019_COLOMBIANA-9048,5956,\"Arriving at another vent cover, she sets her rifle aside and unscrews the grating with her finger. She\",turns as the authorities march into the garage.,shoots the guard in the direction.,watches someone swinging someone in the lid.,puts her head around another woman.,,gold1-orig,pos,unl,unl,unl,n/a,\"Arriving at another vent cover, she sets her rifle aside and unscrews the grating with her finger.\",She\nlsmdc3019_COLOMBIANA-9048,5978,\"Reaching a doorway, she stops and slumps against the frame. She\",shuffles through a living room to a sitting room.,\"looks about, his eyes behind her.\",puts her hand on her shoulder.,wrenches her seat book off and falls back onto the bed.,,gold1-orig,pos,unl,unl,unl,n/a,\"Reaching a doorway, she stops and slumps against the frame.\",She\nlsmdc3019_COLOMBIANA-9048,5954,\"Someone eyes monitors in the lobby. Meanwhile, someone\",shoots out a camera.,places his outlined robotic against a block of light.,glares to the steel tray.,reclined on the deck at the camp table where a valet sits around a television.,,gold0-orig,pos,unl,unl,unl,n/a,Someone eyes monitors in the lobby.,\"Meanwhile, someone\"\nlsmdc3019_COLOMBIANA-9048,5927,Swat officers climb a stairwell. Someone,\"runs barefoot down the hall, gun in hand.\",slides a business card against someone's blazer pocket and covers the utility rod.,crouches in front of someone as he helps an armed wrestler climb the beam.,keeps his dusty gaze trained on a locked gate.,stands at the rear atop the ship and peer through the door as the lead convoy arrives.,gold0-orig,pos,unl,unl,unl,pos,Swat officers climb a stairwell.,Someone\nlsmdc3019_COLOMBIANA-9048,5952,\"Someone crawls out from the shaft. In an elevator, Agent someone\",speaks into his radio.,swings to the far end of the corridor towards a wall.,and someone step inside.,hands the attendant a vial of gas.,aims his foot as the man's unconscious body lies on a bench.,gold0-orig,pos,unl,unl,pos,pos,Someone crawls out from the shaft.,\"In an elevator, Agent someone\"\nlsmdc3019_COLOMBIANA-9048,5961,Her foot retracts from view just as the swat team rounds the corner. Agents someone and someone,arrive and march through the damp garage.,pass while a spar competes quivering pipe with sting.,catch up to their shoes.,eat shelter in an arena by the ark.,lead the group through a wooden bridge over battle like some - river.,gold1-orig,pos,unl,unl,unl,pos,Her foot retracts from view just as the swat team rounds the corner.,Agents someone and someone\nlsmdc3019_COLOMBIANA-9048,5936,He bolts up as she enters. She,\"slams his head against a coffee table, knocking him out.\",\"shoves the paper carrier into the garden, laying her on the bed.\",turns the engine on.,leans to him that look like the tourists.,pulls the door shut.,gold0-orig,pos,unl,unl,unl,pos,He bolts up as she enters.,She\nlsmdc3019_COLOMBIANA-9048,5983,\"At a store, he buys a frozen dinner. Later, he\",passes a neighbor walking his dog.,returns to his professional motel.,packs a garment and cigarette.,leaves several other presents.,\"raises a doll, smiling in a bundle of dresses.\",gold1-orig,pos,unl,pos,pos,pos,\"At a store, he buys a frozen dinner.\",\"Later, he\"\nlsmdc3019_COLOMBIANA-9048,5976,She kneels down to the old woman's crumpled body beside the overturned table and chair. Someone,scrambles to her feet.,leaps in to the foreground and pulls off a chain - string near his ear.,takes it off and sits down beside someone.,is coming toward the ballerina on the floor when she is talking loudly.,stands with her hands up by her chest.,gold1-orig,pos,unl,unl,unl,pos,She kneels down to the old woman's crumpled body beside the overturned table and chair.,Someone\nlsmdc3019_COLOMBIANA-9048,5962,Agents someone and someone arrive and march through the damp garage. Someone,tiptoes through a vent system.,goes to a table overlooking the well - built a.,is in the trunk of four only cars.,\"shoots, then spots a round of cross at the gate.\",,gold0-orig,pos,unl,unl,unl,n/a,Agents someone and someone arrive and march through the damp garage.,Someone\nlsmdc3019_COLOMBIANA-9048,5923,The team storms the building. She,drops her cell and rummages through a drawer.,cuts a long piece of wood.,peeks out of the overhead window at the rear of the window.,climbs a flight of stairs then leaps from the ceiling.,,gold0-orig,pos,unl,unl,unl,n/a,The team storms the building.,She\nlsmdc3019_COLOMBIANA-9048,5979,\"In front of her, a bloody someone sits tied to a chair, his head drooped forward. The gun\",drops from her hand.,is spattered on a wagon.,'s pressed to his chest.,falls from his shoulder.,falls on his hand.,gold0-orig,pos,unl,unl,unl,unl,\"In front of her, a bloody someone sits tied to a chair, his head drooped forward.\",The gun\nlsmdc3019_COLOMBIANA-9048,5932,\"Meanwhile, the swat team accompanying someone reaches her apartment door. Agent someone\",arrives in another corridor with more gunmen.,withdraws a view of the sailors onto the ship's lifeboat.,steps on an upper floor with her corn locked.,follows his gaze to the handcuff pulling out someone's phone.,meets the generator weapon with a cherry mjolnir.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, the swat team accompanying someone reaches her apartment door.\",Agent someone\nlsmdc3019_COLOMBIANA-9048,5926,Someone finds a key then takes a handgun from a table's underside. She,peeks out her apartment door into the hall.,takes the phone out and places it on the bed.,extends it to the shelf of it.,returns with the cigarette as he goes to the kitchen.,buttons up her jacket and heads for him.,gold0-orig,pos,unl,unl,unl,pos,Someone finds a key then takes a handgun from a table's underside.,She\nlsmdc3019_COLOMBIANA-9048,5981,\"She moves closer, She sinks down before her murdered uncle, and sobs against his shoulder. She\",buries her face in his lap.,\"pulls out a rod and pulling him close, forcing her arm upward.\",guides the iv bottle into his hood.,kisses someone's hand.,pats the on florence's shoulder and stands over him.,gold0-orig,pos,unl,unl,unl,unl,\"She moves closer, She sinks down before her murdered uncle, and sobs against his shoulder.\",She\nlsmdc3019_COLOMBIANA-9048,5947,\"The swat team enters her apartment while she approaches the fresh hole in the wall. In the bathroom, someone\",uses a cable to lower her rifle down a now exposed shaft.,takes out her bottle then spaghetti.,lies on the motorcycle with his gun aimed next to his father's chest.,stares at the label - framed window.,,gold0-orig,pos,unl,unl,pos,n/a,The swat team enters her apartment while she approaches the fresh hole in the wall.,\"In the bathroom, someone\"\nlsmdc3019_COLOMBIANA-9048,5941,\"In the bathroom, someone collects a hidden arsenal of weapons. She\",sets a charge on the tiled wall and pushes a button.,moves out of the door and brushes the buttons and critique.,turns and finds blocks with buckles.,pulls someone out of the hold and heads for him.,wraps her arm around her shoulders.,gold0-orig,pos,unl,unl,unl,pos,\"In the bathroom, someone collects a hidden arsenal of weapons.\",She\nlsmdc3019_COLOMBIANA-9048,5971,\"She strides up a walkway toward daylight. Later, she\",arrives at someone's house.,smirks as a fleet of planes sails overhead.,arrives in the sunny market resort.,turns into the promontory streaming from someone's main crib.,sits in a lounge chair in someone's modern office.,gold1-orig,pos,unl,unl,unl,pos,She strides up a walkway toward daylight.,\"Later, she\"\nlsmdc3019_COLOMBIANA-9048,5965,\"A swat Humvee arrives in the garage with its lights flashing, trailed by two police cruisers. Agent someone\",turns to face them.,lies asleep in bed.,brings his massive eye.,turns to another uniformed security guards.,,gold0-orig,pos,unl,unl,unl,n/a,\"A swat Humvee arrives in the garage with its lights flashing, trailed by two police cruisers.\",Agent someone\nlsmdc3019_COLOMBIANA-9048,5925,\"Outside, someone puts on a bulletproof vest. Someone\",finds a key then takes a handgun from a table's underside.,releases a lifeboat into a bin.,gazes out and smashes the knuckles at the white locker.,\"pats someone shoulder, sighs, and slams his shoulder against a wall.\",punches him as someone hurries on.,gold1-orig,pos,unl,unl,unl,unl,\"Outside, someone puts on a bulletproof vest.\",Someone\nlsmdc3019_COLOMBIANA-9048,5964,\"As they search, someone pads through a shadowy tunnel. A swat Humvee\",\"arrives in the garage with its lights flashing, trailed by two police cruisers.\",disappear from sight and landing on his brace.,sits down on top of the slimy mushroom.,appears with someone about her ornate helmet.,and steam shoot from people exit on the range.,gold1-orig,pos,unl,unl,unl,unl,\"As they search, someone pads through a shadowy tunnel.\",A swat Humvee\nlsmdc3019_COLOMBIANA-9048,5977,\"Someone scrambles to her feet. Reaching a doorway, she\",stops and slumps against the frame.,finds someone near the railing.,sees someone's cat.,\"grabs the couch, then closes the door behind her.\",sees someone running at the door.,gold0-orig,pos,unl,unl,unl,pos,Someone scrambles to her feet.,\"Reaching a doorway, she\"\nlsmdc3019_COLOMBIANA-9048,5931,\"In the stairwell, someone pauses briefly, looking down. Meanwhile, the swat team accompanying someone\",reaches her apartment door.,looks onto and the ten turns her back to him.,drones a couple of feet into smaller acolytes.,watches with electronic eyes.,spins two rows in the opposite corner.,gold0-orig,pos,unl,unl,unl,unl,\"In the stairwell, someone pauses briefly, looking down.\",\"Meanwhile, the swat team accompanying someone\"\nlsmdc3019_COLOMBIANA-9048,5968,\"She finds one unlocked and opens it. Now as a subway train moves through the tunnel, a uniform clad someone\",slips out onto a catwalk above it.,walks in hallway through a window as he zooms inside.,emerges from her apartment and undoes the seat belt.,lies on the wet ground beside her.,sits at a charred car.,gold1-reannot,pos,unl,unl,unl,unl,She finds one unlocked and opens it.,\"Now as a subway train moves through the tunnel, a uniform clad someone\"\nlsmdc3019_COLOMBIANA-9048,5951,\"In her apartment, Agent someone peers at her surveillance monitor. Someone\",crawls out from the shaft.,advances at the chute.,helps someone down a cellphone's window.,spots an aide with glasses on her own.,grabs several bottles from his bag.,gold0-reannot,pos,unl,unl,unl,pos,\"In her apartment, Agent someone peers at her surveillance monitor.\",Someone\nlsmdc3019_COLOMBIANA-9048,5930,\"Two swat officers cautiously scope out the area. In the stairwell, someone\",\"pauses briefly, looking down.\",wakes into the cigarette.,paces with someone in his parked car.,heads through the night.,peers behind the barrier.,gold0-reannot,pos,unl,unl,unl,pos,Two swat officers cautiously scope out the area.,\"In the stairwell, someone\"\nlsmdc3019_COLOMBIANA-9048,5960,\"She contorts, struggling to fit her long limbs inside. Her foot\",retracts from view just as the swat team rounds the corner.,drops down to his pants.,\"follows the torch beam, down a deep rapid pace.\",ripples with a deadly look.,pumps as her chest drops repeatedly.,gold0-reannot,pos,unl,unl,unl,pos,\"She contorts, struggling to fit her long limbs inside.\",Her foot\nlsmdc3019_COLOMBIANA-9048,5989,\"Turning, he finds someone standing nearby in the shadows with her handgun pointed at him. He\",sits as she shows the disconnected cameras.,touches the barrel of someone's face.,kicks a window and tosses it out of view.,stops and pulls off the pin.,wields an brake pump full.,gold1-reannot,unl,unl,unl,unl,unl,\"Turning, he finds someone standing nearby in the shadows with her handgun pointed at him.\",He\nlsmdc3019_COLOMBIANA-9048,5937,\"She slams his head against a coffee table, knocking him out. Her gun ready, she\",proceeds to a bathroom.,kicks him off and punches with the camera.,lobs it and aims her gun at him from the ceiling.,\"opens the bottle, then throws it on the table.\",stares into the camera.,gold1-reannot,pos,unl,unl,unl,pos,\"She slams his head against a coffee table, knocking him out.\",\"Her gun ready, she\"\nlsmdc3019_COLOMBIANA-9048,5966,\"Agent someone turns to face them. Meanwhile, someone\",arrives in a changing room and checks a set of lockers.,steps toward a car and uses the phone to insert the chest button.,looks from someone's private courtyard and turns off the light towards a locked door.,walks along the sidewalk past someone's desk.,walks ahead of her scrawny unconscious woman.,gold0-reannot,pos,unl,unl,unl,unl,Agent someone turns to face them.,\"Meanwhile, someone\"\nlsmdc3019_COLOMBIANA-9048,5924,\"She drops her cell and rummages through a drawer. Outside, someone\",puts on a bulletproof vest.,rounds an abandoned wall in an alley.,dumps out his bags from the tent.,reads a magazine in two children.,strolls up to her board.,gold1-reannot,unl,unl,unl,unl,unl,She drops her cell and rummages through a drawer.,\"Outside, someone\"\nlsmdc3019_COLOMBIANA-9048,5959,Someone climbs backward through the narrow vent hole. She,\"contorts, struggling to fit her long limbs inside.\",is almost beyond him.,flings into the elevator and bumps on an awning as someone strikes a pose.,\"approaches someone, who reels on the ledge above it.\",climbs out from the center bunk and meets her rifle.,gold0-reannot,pos,unl,unl,unl,unl,Someone climbs backward through the narrow vent hole.,She\nlsmdc3019_COLOMBIANA-9048,5938,\"Her gun ready, she proceeds to a bathroom. In the bathroom, someone\",takes a huge assault rifle down from the crawl space.,is headphones.,perches on her cot barrier as she watches with a determined expression.,stares at dry grass as she rubs his shoulder.,collects a condom from the nightstand.,gold0-reannot,pos,unl,unl,unl,unl,\"Her gun ready, she proceeds to a bathroom.\",\"In the bathroom, someone\"\nlsmdc3019_COLOMBIANA-9048,5974,\"Nearing the top, she finds someone's shattered sunglasses lying on the second floor, inches from his limp hand. She\",aims her gun upward then ventures on.,rocks down on his knees and hoist a head.,\"jogs down a corridor, barely a maid's dark red shadow.\",watches him on the back and lowers his gaze to the atrium's edge.,makes her way past a brown jeep.,gold1-reannot,pos,unl,unl,unl,unl,\"Nearing the top, she finds someone's shattered sunglasses lying on the second floor, inches from his limp hand.\",She\nlsmdc3019_COLOMBIANA-9048,5945,\"Meanwhile, someone punches her detonator. A fiery blast\",rips a hole in the bathroom wall.,sends a sprawling sweep of the large vase towards a floor.,erupts around the boy and knocks him against a wall.,lands on the battlements as the lights go out.,sends someone from the mound of bullets into the storm.,gold0-reannot,pos,unl,unl,unl,pos,\"Meanwhile, someone punches her detonator.\",A fiery blast\nlsmdc3019_COLOMBIANA-9048,5973,\"She halts at the sight of an unfinished cigar on a side table. Drawing a handgun, she\",proceeds through the foyer.,takes the jigger from the case.,sits on a folding chair.,\"heads away, leaving an attractive young woman sitting alone.\",\"shuts the door, and walks away.\",gold0-reannot,pos,unl,unl,unl,pos,She halts at the sight of an unfinished cigar on a side table.,\"Drawing a handgun, she\"\nlsmdc3015_CHARLIE_ST_CLOUD-829,7066,He stares mesmerized out at the water. Someone,\"looks away sucking in a breath, then returns his gaze to the sailboat.\",\"bows his head, then shifts his gaze to the tiger.\",looks over and pinches her thumb.,covers her face with a blanket.,,gold0-orig,pos,unl,unl,unl,n/a,He stares mesmerized out at the water.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-829,7065,\"Heading toward the harbor, someone lifts his gaze and stops. He\",stares mesmerized out at the water.,raises his gun as a transport crashes through the door of the train.,observes the mustached man approaching.,lumbers wearily to the bed.,sits in someone's chair with the main door.,gold0-orig,pos,unl,unl,unl,unl,\"Heading toward the harbor, someone lifts his gaze and stops.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-829,7067,\"Someone looks away sucking in a breath, then returns his gaze to the sailboat. As he sets his bag in the back of his gater, he\",glances at his watch.,puts thread on his back.,joins the young man at a booth.,clicks his thumb and glowers.,pulls out the folder and finds it empty.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks away sucking in a breath, then returns his gaze to the sailboat.\",\"As he sets his bag in the back of his gater, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-829,7063,\"Now, he strides out of the restaurant, his eyes cast downward. As he steps into the street, a fisherman in waterproof bib pants\",passes him carrying a coil of rope slung over his shoulder.,runs out of the train.,out on a different street as he runs and listens as he speaks.,maneuvers past as sebastian joins him.,kneels down near a car and lowers the blanket from singing.,gold0-orig,pos,unl,unl,unl,unl,\"Now, he strides out of the restaurant, his eyes cast downward.\",\"As he steps into the street, a fisherman in waterproof bib pants\"\nlsmdc3015_CHARLIE_ST_CLOUD-829,7064,\"As he steps into the street, a fisherman in waterproof bib pants passes him carrying a coil of rope slung over his shoulder. Heading toward the harbor, someone\",lifts his gaze and stops.,flies up in his hold.,hikes snowy through a telescope.,carries someone through the large carton of water.,peers out the top wall then checks the vacant spot below.,gold0-orig,pos,unl,unl,unl,pos,\"As he steps into the street, a fisherman in waterproof bib pants passes him carrying a coil of rope slung over his shoulder.\",\"Heading toward the harbor, someone\"\nlsmdc3015_CHARLIE_ST_CLOUD-829,7068,\"As he sets his bag in the back of his gater, he glances at his watch. Someone\",passes the news crew and strides down the pier with his eyes fixed on the boat.,faces someone and leads someone through a flat staircase with his arms raised.,gets on the bars and does the same thing.,bends his head down moving his hands to free itself.,blows out another single one at a time to the crowd.,gold0-reannot,pos,unl,unl,unl,unl,\"As he sets his bag in the back of his gater, he glances at his watch.\",Someone\nanetv_kAmDOTsp5cs,12858,\"Also, the man jump rope criss cross and jumps rope double. Then the man\",jumps rope doing squatting jumps and jump lunges.,spins and flip himself and do tricks.,falls to the ground and the guy helps to swing it over the rope.,stops and gets on the rope and does some higher lifts.,jumps the pommel horse jumping.,gold0-orig,pos,unl,unl,unl,unl,\"Also, the man jump rope criss cross and jumps rope double.\",Then the man\nanetv_kAmDOTsp5cs,12857,\"After, the man holds the rope on his left hand and skip while turning the rope. Next, the man alternate skipping rope and\",flip the rope side to side on front.,show off which a horizontal stance of falls.,jumps on the rope and pulls up rope on his rope.,starts to spin around and walks in another circle.,spinning around with grey rope equipment.,gold0-orig,pos,unl,unl,unl,pos,\"After, the man holds the rope on his left hand and skip while turning the rope.\",\"Next, the man alternate skipping rope and\"\nanetv_kAmDOTsp5cs,12856,\"A man skip rope in a drive way, then the man jumps and skip rope. After, the man\",holds the rope on his left hand and skip while turning the rope.,finishes and the man finishes the horse and spins around the field.,puts his arms in the air and runs past with the jump.,puts his helmet on the ski in a training room.,\"jumps high mountain while kicking, turning another, and jumping a passage at a time.\",gold1-reannot,pos,unl,unl,unl,unl,\"A man skip rope in a drive way, then the man jumps and skip rope.\",\"After, the man\"\nlsmdc3088_WHATS_YOUR_NUMBER-42003,10790,\"He reaches down the front of his pants, then brings his fingers up to his nose. Later, someone\",paces anxiously in her living room.,briskly puts down a box.,rushes out of the lab as someone exits a nearby elevator.,washes his face with a white bandage.,enters a dark dining room.,gold0-orig,pos,unl,unl,unl,unl,\"He reaches down the front of his pants, then brings his fingers up to his nose.\",\"Later, someone\"\nlsmdc3088_WHATS_YOUR_NUMBER-42003,10791,\"Later, someone paces anxiously in her living room. Someone\",opens the door to her neighbor.,\"blinks awake, her eyes fixed on the clock keyboard as he dance on the dance floor.\",\"reads a science book, clutching her notebook, as she looks out of the crib.\",joins her as he uses a massage board.,sits between them and does two yoga ups.,gold1-reannot,pos,unl,unl,unl,unl,\"Later, someone paces anxiously in her living room.\",Someone\nanetv_8RntjHIwMNo,15365,People are standing behind large drums. A man,begins playing the drums.,walks into frame holding an instrument in his hands and begins playing the bagpipes.,is playing the guitar while waving his hands and playing the instrument.,is behind them playing the drums.,plays the drums and talks to one of the men.,gold0-orig,pos,unl,unl,unl,pos,People are standing behind large drums.,A man\nanetv_8RntjHIwMNo,12217,A small group of people are seen standing together and speaking. The group then,begins playing on a set of drums.,begin hitting waves together while smiling to one another.,begins washing a dog's fur with several shoes.,begin moving around the horses and walking off along the road.,begin playing a game of soccer with one another and giving each woman a hug.,gold1-reannot,pos,unl,unl,unl,unl,A small group of people are seen standing together and speaking.,The group then\nanetv_jExOw6W1I3E,12637,Several people are in line at a restaurant waiting to receive something. The camera then moves to a woman behind the bar and she,starts to drink the beer.,gives one a look and papers proceed out.,begins to kneel down and looks down off the camera.,hammers a few flips and walks away.,stands to ride a unicycle.,gold1-orig,pos,unl,unl,unl,unl,Several people are in line at a restaurant waiting to receive something.,The camera then moves to a woman behind the bar and she\nanetv_jExOw6W1I3E,3140,The camera then stops at a man with a tall beer glass. the man,drinks the entire contents of the glass with one swallow.,lacing the yellow shirt and succeeds.,\"pours them in a glass, showing off the cup.\",spits into a cup and then holds the ball directly over the counter board.,plants a long glass on the table and removes the stick.,gold0-orig,pos,unl,unl,unl,pos,The camera then stops at a man with a tall beer glass.,the man\nanetv_jExOw6W1I3E,12638,The camera then moves to a woman behind the bar and she starts to drink the beer. She then,holds up the glass and chugs the beer in one cup.,pours the lemon into the pot and pours her glass into the glass.,sits down and put the arm on her back.,\"shakes the book several more times, aiming it.\",pours the drink into a glass and sips a water drink from the bottle.,gold0-orig,pos,unl,unl,unl,pos,The camera then moves to a woman behind the bar and she starts to drink the beer.,She then\nanetv_jExOw6W1I3E,3139,Different people are introduced to the camera. the camera then,stops at a man with a tall beer glass.,pans to show a snowboarder stepping vertical and again afterwards.,pans and ends an snowboarding.,passes with replay jumping and phonograph.,cuts up a series of screens at the beach.,gold0-reannot,pos,unl,unl,unl,unl,Different people are introduced to the camera.,the camera then\nanetv_Lg-mJS-BZZo,4854,The man pushes the machinery around the lawn while looking into the camera. The man,continues using the machine while looking off into the camera.,looks more up and fourth using the brush and shows more clips of the person as well as talking.,picks up an airplane and gives another thumbs up.,slows to a halt and look past the car by end slowly panning the area.,continues to cut and rust while still pointing to the chair.,gold1-orig,pos,unl,unl,unl,unl,The man pushes the machinery around the lawn while looking into the camera.,The man\nanetv_Lg-mJS-BZZo,4853,A person is seen wearing a funny costume while holding onto a piece of machinery. The man,pushes the machinery around the lawn while looking into the camera.,pulls several pipes down onto his mouth and twists his arms around his waist.,begins playing his flute while the camera captures his movements.,begins trimming one person's leg again while everyone watches.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen wearing a funny costume while holding onto a piece of machinery.,The man\nanetv_sq0cKsoX7mg,8401,A group of people are playing tennis inside a gym. A woman,turns flips and swings her racquet.,is still talking in front of the camera.,uses a rope on a violin.,\"joins them in a red circle, then a woman stands upright.\",,gold0-orig,pos,unl,unl,pos,n/a,A group of people are playing tennis inside a gym.,A woman\nanetv_sq0cKsoX7mg,8402,A woman turns flips and swings her racquet. She then,starts to walk away.,works in various positions.,continues practicing and baton.,walks back and forth between the two.,races forward as she hits the ground.,gold1-reannot,pos,unl,unl,unl,pos,A woman turns flips and swings her racquet.,She then\nanetv_fFoYCI-Si6s,16406,One is in boxing gloves and the other is wearing arm guards. They,show off the different moves in punching and kicking.,are shooting chase and shooting with swords.,are rolling down both pins.,stop and point at each other.,,gold0-orig,pos,unl,unl,pos,n/a,One is in boxing gloves and the other is wearing arm guards.,They\nanetv_fFoYCI-Si6s,16405,Two men are inside a gym. One is in boxing gloves and the other,is wearing arm guards.,is helping him out of the wall.,begins sharpening the lapel of a shirt.,are watching the timer.,,gold0-reannot,pos,unl,unl,unl,n/a,Two men are inside a gym.,One is in boxing gloves and the other\nlsmdc1057_Seven_pounds-97628,11066,\"Someone enters someone's room. Frail and white - haired, someone\",is lying in bed.,holds up a bottle of liquor.,stands with her mouth hanging open.,sits on a bench near a doorway.,stands in the hallway.,gold0-orig,pos,unl,pos,pos,pos,Someone enters someone's room.,\"Frail and white - haired, someone\"\nlsmdc1057_Seven_pounds-97628,11076,Someone nods and writes some more. Someone,looks at someone wearily.,races up to the can and approaches someone.,glances at someone 'gem.,picks up a marker.,,gold1-orig,unl,unl,unl,unl,n/a,Someone nods and writes some more.,Someone\nlsmdc1057_Seven_pounds-97628,11074,\"Someone, who has straggly hair, remains blank. Someone\",turns her head slowly to look at someone.,gets back under the tree and puts a cap over the healthy hood.,looks at the unseen wound.,looks into the darkness at his side.,\"leans off the wall under the stairs, near a desk.\",gold1-orig,pos,unl,pos,pos,pos,\"Someone, who has straggly hair, remains blank.\",Someone\nlsmdc1057_Seven_pounds-97628,11072,He moves gingerly to a chair and turns it towards her bed. Someone,sits down at someone's bedside.,leans over to see her hand scar.,makes to pose for a gypsy.,lowers her hand and caresses his cheek with his thumb.,drops the phone on her stomach in bed.,gold0-orig,pos,unl,unl,pos,pos,He moves gingerly to a chair and turns it towards her bed.,Someone\nlsmdc1057_Seven_pounds-97628,11070,\"She stares ahead, stony - faced. Someone\",puts his briefcase on the floor.,sucks another drag.,slaps her hand on someone's stomach.,turns her head in shame.,sneers at someone as he follows behind in.,gold1-orig,pos,unl,unl,unl,pos,\"She stares ahead, stony - faced.\",Someone\nlsmdc1057_Seven_pounds-97628,11068,She ignores him and merely sighs. Someone,gives a kindly smile.,glances back as someone tosses up her champagne bottle.,leaves the maitre d 'and shrugs.,looks quizzically at her wide - eyed husband.,,gold0-orig,pos,unl,unl,pos,n/a,She ignores him and merely sighs.,Someone\nlsmdc1057_Seven_pounds-97628,11067,\"Frail and white - haired, someone is lying in bed. She\",ignores him and merely sighs.,gets to her feet from the couch.,\"hands the phone to someone, then steps back in bed.\",leads him toward a rundown rooftop.,\"touches her head, showing off her fingers.\",gold1-orig,pos,unl,unl,unl,unl,\"Frail and white - haired, someone is lying in bed.\",She\nlsmdc1057_Seven_pounds-97628,11071,Someone puts his briefcase on the floor. He,moves gingerly to a chair and turns it towards her bed.,puts it in his pocket.,pulls them down and looks down at them.,shows them up to the group's men.,throws someone on the guardrail and some children run up to him.,gold1-orig,pos,unl,unl,unl,pos,Someone puts his briefcase on the floor.,He\nlsmdc1057_Seven_pounds-97628,11075,\"She stares at someone pensively, then turns stiffly and reaches out a bony hand to pick up her writing pad and pen from a surface nearby. Someone\",\"studies someone once more, then begins to write something down.\",takes her bag and covers it to her ear.,talked from someone to people.,sneaks up on someone 'side.,rubs someone's fist if he is completely dead.,gold1-orig,pos,unl,unl,unl,unl,\"She stares at someone pensively, then turns stiffly and reaches out a bony hand to pick up her writing pad and pen from a surface nearby.\",Someone\nlsmdc1057_Seven_pounds-97628,11062,Someone looks awkward and leans forward. Someone,stares at him impassively.,tosses a partially - covered headset into the driver's hand.,sleeps at the station.,covers her eyes with wide eyes.,\"shrugs, and someone giving a thumbs up.\",gold1-orig,pos,unl,unl,unl,pos,Someone looks awkward and leans forward.,Someone\nlsmdc1057_Seven_pounds-97628,11069,Someone gives a kindly smile. She,\"stares ahead, stony - faced.\",looks away from him.,glares at him.,\"gives a plus notice, then moves to hug central cake.\",pats them and hurries off.,gold1-orig,pos,unl,unl,unl,unl,Someone gives a kindly smile.,She\nlsmdc1057_Seven_pounds-97628,11065,\"He straightens up again, smiles faintly and picks up his briefcase. Someone\",enters someone's room.,walks up to him.,\"puts it in a chain pocket, reaches for his wand, then someone.\",holds a pair of keys.,jogs over to more passenger doors.,gold1-orig,pos,unl,unl,unl,unl,\"He straightens up again, smiles faintly and picks up his briefcase.\",Someone\nlsmdc1057_Seven_pounds-97628,11064,Someone nods and cocks his head to one side as he continues staring at someone. He,\"straightens up again, smiles faintly and picks up his briefcase.\",tries to bite himself but instead stops smiling.,reaches for his gun and slaps the back of his neck.,tries to pull them off.,\"sits cross - legged, raised up.\",gold1-orig,pos,unl,unl,unl,unl,Someone nods and cocks his head to one side as he continues staring at someone.,He\nlsmdc1057_Seven_pounds-97628,11063,Someone stares at him impassively. Someone,nods and cocks his head to one side as he continues staring at someone.,\"meets her one gaze, then returns his gaze to the table.\",\"covers his mouth, then looks down at the drink halfway on his drink.\",\"steps onto the balcony and opens the door, but someone steps inside.\",looks up at someone.,gold0-orig,pos,unl,unl,unl,pos,Someone stares at him impassively.,Someone\nlsmdc1057_Seven_pounds-97628,11073,Someone sits down at someone's bedside. She,continues staring vacantly ahead.,sits at the wheel and opens the cabinet.,\"drops her head, then runs to her hair.\",\"wipes her nose, rubs her nose.\",,gold1-reannot,pos,unl,unl,pos,n/a,Someone sits down at someone's bedside.,She\nanetv_pRGlbeqRfM0,11579,The man and the girl are drinking from a white cup. the girl,holds the drink in her mouth and spit it on the grass and the man do the same.,is going into the patio.,is spraying the small dog and her toothbrush.,slams the kid in the floor.,is turning the glass to crawl.,gold0-orig,pos,unl,unl,unl,unl,The man and the girl are drinking from a white cup.,the girl\nanetv_pRGlbeqRfM0,11578,Girl wearing glasses is talking to the camera. the man and the girl,are drinking from a white cup.,are diving into the water.,are standing in the pool in a clearing.,does a flip in the grass.,are mowing the lawn.,gold1-orig,pos,unl,unl,unl,unl,Girl wearing glasses is talking to the camera.,the man and the girl\nanetv_pRGlbeqRfM0,11577,Man weaing a green shirt is standing next to a little girl. girl wearing glasses,is talking to the camera.,is standing in front of a tv set.,is holding a harmonica and talking to the camera.,is wearing a hat jumping and talking to the camera.,,gold1-orig,pos,unl,pos,pos,n/a,Man weaing a green shirt is standing next to a little girl.,girl wearing glasses\nanetv_yhWw7oJrUFo,11567,A girl wearing a black blouse describes how to bake in a kitchen. The baker,pours flour into a clear bowl using a measuring cup.,\"step up and puts the mango on, slicing a half in the wheel oven.\",takes the pan and puts icing on the egg.,peel their lemon over the cookies and place the cookies in the oven.,,gold0-orig,pos,unl,unl,unl,n/a,A girl wearing a black blouse describes how to bake in a kitchen.,The baker\nanetv_moqRG7uwZ4Q,12097,The leaf blower blows brown dried up leaves using the leaf blower. The leaves,are blown away from some lawn furniture and blown towards the middle of the yard.,blow leaves behind it.,fly through the grass next to the tree that falls to the ground.,is blowing dead leaves in a person's yard with a leaf blower.,,gold0-orig,pos,unl,unl,unl,n/a,The leaf blower blows brown dried up leaves using the leaf blower.,The leaves\nanetv_moqRG7uwZ4Q,12096,A view of a leaf blower lays on the ground in a yard. The leaf blower,blows brown dried up leaves using the leaf blower.,rises into the air and is shown again in slow motion.,continues moving across the snow.,becomes a leaf blower.,leaves around the yard.,gold1-orig,pos,unl,unl,unl,unl,A view of a leaf blower lays on the ground in a yard.,The leaf blower\nanetv_EInkc1uEX3c,9201,\"The floor is swept, cleaned, and prepared for the process. The men\",begin to lay the vinyl flooring across the floor one piece at a time.,\"jump out of the corners of the newlyweds and begin to burn, close by as the men turn to face him.\",are running down where the meat is breaking and struggling to keep the snow clean.,all measure the finish doing the viewers that the customers are paying a lot of attention.,put knife ingredients into the wooden bowl and put it on the board before putting it back onto a wooden table while people protesting.,gold1-orig,pos,unl,unl,unl,unl,\"The floor is swept, cleaned, and prepared for the process.\",The men\nanetv_EInkc1uEX3c,9200,An introduction comes onto the screen for a video about laying a floor. The floor,\"is swept, cleaned, and prepared for the process.\",is folding under this arm.,\"is cut thick, and showing how to use it tool.\",is showing other woman supplies to do a tattoo on the wall.,,gold0-orig,pos,unl,unl,unl,n/a,An introduction comes onto the screen for a video about laying a floor.,The floor\nanetv_EInkc1uEX3c,17192,Two men are making measurements on the floor. A man,is mixing adhesive in a bucket.,walks around the wall and mats a wall.,is wiping a car in front of a customer.,is standing on the side of a trampoline.,stands on the veranda of the sink.,gold0-orig,pos,unl,unl,unl,unl,Two men are making measurements on the floor.,A man\nanetv_EInkc1uEX3c,17197,A man polishes the wooden floorboards with a cloth. A man,uses a roller on the floorboards.,stands by a wallpaper.,starts paint onto a wall.,sprays down on the surface using white paint.,looks out to the camera.,gold1-orig,pos,unl,unl,unl,pos,A man polishes the wooden floorboards with a cloth.,A man\nanetv_EInkc1uEX3c,17189,Flooring tools are displayed on a table. A man with a broom and dustpan,is cleaning the floor.,is polishing the floor.,men begin standing in a circle.,a machine is shown.,,gold0-orig,pos,unl,unl,unl,n/a,Flooring tools are displayed on a table.,A man with a broom and dustpan\nanetv_EInkc1uEX3c,17195,The man proceeds to spread the adhesive. A man,is installing wooden floorboards.,stands next to an elliptical machine while the man talks while the woman demonstrates how to uses the machine.,takes the cutting out of the declared and leaves.,cleans a dictaphone carpet with chocolate flooring.,is pressurized at the cement with a block.,gold0-orig,pos,unl,unl,unl,unl,The man proceeds to spread the adhesive.,A man\nanetv_EInkc1uEX3c,17196,A man is installing wooden floorboards. A man,polishes the wooden floorboards with a cloth.,is cleaning the bedroom tiles.,scrapes on the roof when he skiis up.,measures wallpaper to put on a wooden board.,,gold0-orig,pos,unl,unl,unl,n/a,A man is installing wooden floorboards.,A man\nanetv_EInkc1uEX3c,17194,The man pours the adhesive onto the floor. The man,proceeds to spread the adhesive.,removes cement from the wall and tiles the wall.,uses the ax to cut some excess wallpaper from the wall.,adds a silver piece of tile to the carpet.,,gold0-orig,pos,unl,unl,unl,n/a,The man pours the adhesive onto the floor.,The man\nanetv_EInkc1uEX3c,17190,A man with a broom and dustpan is cleaning the floor. The man,is then mopping the floor.,holds up a bottle of bleach.,moves the bucket down and gets it.,is vacuuming the floor with a tiled cleaning.,throws the mop up and down.,gold1-orig,pos,unl,unl,unl,unl,A man with a broom and dustpan is cleaning the floor.,The man\nanetv_EInkc1uEX3c,9202,The men begin to lay the vinyl flooring across the floor one piece at a time. The final result,is shown on the screen.,is a program being used before cut in the end.,is shown on the table.,is shown once another is finished.,,gold0-orig,pos,unl,unl,unl,n/a,The men begin to lay the vinyl flooring across the floor one piece at a time.,The final result\nanetv_EInkc1uEX3c,17191,The man is then mopping the floor. Two men,are making measurements on the floor.,wash the mop and start to mop.,demonstrate different methods to wash their shoes.,are shown lifting weights and changing overhead.,,gold0-reannot,pos,unl,unl,unl,n/a,The man is then mopping the floor.,Two men\nanetv_EInkc1uEX3c,17193,A man is mixing adhesive in a bucket. The man,pours the adhesive onto the floor.,continues vacuuming the carpet.,lowers his hands then removes the iron.,puts a wood bowl on a metal.,turns on tangled wood pieces and pieces into the fire.,gold0-reannot,pos,unl,unl,unl,unl,A man is mixing adhesive in a bucket.,The man\nanetv_qU_605hliNw,2395,A camera pans all around a wooded area and leads into two people riding around on skis. Several shots,are shown of various people riding behind a boat on skis and performing tricks.,are shown of people riding around in bikes as well as falling into obstacles.,are shown of people on boards as well as kids watching the lake people.,are shown of people riding along as well as close ups of horses and people riding motorcycles along the dirt.,,gold1-orig,unl,unl,unl,unl,n/a,A camera pans all around a wooded area and leads into two people riding around on skis.,Several shots\nanetv_Zxi0V2pBPlA,11649,A woman is using wax to clean his legs. Then they,rip the wax off his legs one strip at a time.,move back and forth using moves as a woman steps onto the machine.,rub wax sign over the tile then the woman rubs a head of lotion.,start shining the shoes on the burning boot.,apply foam lipstick on her tongue.,gold0-orig,pos,unl,unl,unl,pos,A woman is using wax to clean his legs.,Then they\nanetv_Zxi0V2pBPlA,14040,Two women are spreading wax onto his legs. They then,\"rip the wax off, removing the hair.\",rub the rubber on their bodies.,lay down on shelter apart.,stencil a new razor.,get gifts and wrap around his shoulders.,gold1-orig,pos,unl,unl,unl,unl,Two women are spreading wax onto his legs.,They then\nlsmdc3025_FLIGHT-12220,15412,\"Someone looks down, his eyes heavy. Someone\",\"closes her file, and slowly walks to her seat.\",is punched in the eye.,is sawing out a spear.,approaches a huge house in the garden by a stone arch.,pulls him backwards.,gold1-orig,pos,unl,unl,unl,unl,\"Someone looks down, his eyes heavy.\",Someone\nlsmdc3025_FLIGHT-12220,15411,\"Someone looks firmly at someone, his face shiny with perspiration. Someone\",\"looks down, his eyes heavy.\",lies still on his chest.,steps forward in position and then sidles back with the circular dagger.,runs up and sees someone lying unconscious on the concrete steps.,\"rests at his knees, arms folded.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone looks firmly at someone, his face shiny with perspiration.\",Someone\nlsmdc3012_BRUNO-4168,6304,\"Later, at a departure gate, he stands by a luggage. He\",\"blows his nose, and tearfully dabs at it.\",notices a car with a brown - topped device behind him.,enters a sign of snug emergency crews outside.,smiles as he runs someone.,opens a partially - fronted door.,gold0-orig,pos,unl,unl,unl,unl,\"Later, at a departure gate, he stands by a luggage.\",He\nlsmdc3012_BRUNO-4168,6303,\"Someone swallows, and shifts his wounded gaze. Later, at a departure gate, he\",stands by a luggage.,hobbles down a school corridor.,finds it quiet his festive are alone.,stops in a darkened marketplace.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone swallows, and shifts his wounded gaze.\",\"Later, at a departure gate, he\"\nlsmdc3012_BRUNO-4168,6302,A blonde man joins someone. Someone,\"swallows, and shifts his wounded gaze.\",backs up to his gloved hands.,hands her a cell phone.,sits across from a table with his dad.,,gold0-orig,pos,unl,unl,unl,n/a,A blonde man joins someone.,Someone\nlsmdc1041_This_is_40-9074,8198,He raises his legs higher. Someone,rolls her eyes and crosses her arms.,hops down with the carnation.,touches his sunlit view with the sun.,becomes aware of someone's presence.,,gold1-orig,pos,unl,unl,pos,n/a,He raises his legs higher.,Someone\nlsmdc1041_This_is_40-9074,8196,\"In the bathroom, someone lies back with his legs in the air. Someone\",enters with an astonished expression.,resumes a arrival from the horrified pout.,'s leg splayed traps him in his chair.,\"roars forward, and slumps against his back.\",skeptically eases someone through her skirt.,gold0-orig,pos,unl,unl,unl,unl,\"In the bathroom, someone lies back with his legs in the air.\",Someone\nlsmdc1041_This_is_40-9074,8201,\"At the boutique, someone watches someone while she folds clothing with someone. She\",looks back at someone.,\"points his finger, then glances back at the doll.\",springs around the hardwood floor as she head toward the marble formations.,\"lowers the handbag, kneels down, and leaves.\",finishes and a young young male poses shining a blond doll through the window with a glass.,gold0-orig,pos,unl,unl,unl,unl,\"At the boutique, someone watches someone while she folds clothing with someone.\",She\nlsmdc1041_This_is_40-9074,8200,Someone stares at her with his legs spread. She,\"takes a brief look, then walks away.\",\"plants their along, then eyes her squarely.\",turns its head to hers.,vanishes in tiny circles with the ax tattooed in her chest.,shifts her eyes to a blonde.,gold0-reannot,pos,unl,unl,unl,pos,Someone stares at her with his legs spread.,She\nanetv_S0Kl5D5mrvQ,5632,A woman in a red shirt is playing a guitar and singing. She,continues to wipe the sink with a towel.,pretends to be playing their maracas.,\"looks up, then hopscotch few of the street.\",stands on the drums and the woman continues to laugh.,pulls the teddy back up and starts singing.,gold1-orig,unl,unl,unl,unl,unl,A woman in a red shirt is playing a guitar and singing.,She\nanetv_S0Kl5D5mrvQ,5631,A person is wiping a sink with a towel. A woman in a red shirt,is playing a guitar and singing.,is sitting on a bench and shows the woman how to clean her tongue.,is standing and stroking down her hair.,is standing next to him.,is standing behind them watching.,gold1-reannot,pos,unl,pos,pos,pos,A person is wiping a sink with a towel.,A woman in a red shirt\nlsmdc0033_Amadeus-67107,18276,She looks at it and recognizes it. She,takes it from his weak hand.,continues to continue with her walking.,\"shakes it harder, and pauses.\",finishes and throws her arms around someone.,looks up and sees the realization cards.,gold1-orig,pos,unl,unl,unl,unl,She looks at it and recognizes it.,She\nlsmdc0032_The_Princess_Bride-66204,6814,We are at the edge of an almost sheer ravine. The drop,is sharp and severe.,come to the surface for its crash.,is enough to tour the length of the castle.,completely hauls off of her.,is carried away off toward the focus.,gold0-orig,pos,unl,unl,unl,unl,We are at the edge of an almost sheer ravine.,The drop\nlsmdc3088_WHATS_YOUR_NUMBER-42446,16834,\"On the dance floor, someone dances gracefully with mr. Someone\",\"wedges between the bride and groom, making someone spill his champagne.\",\"retrieve the cops lunch of the dining table, the players sing friends.\",smacks the face of the indian who folds his way.,laughs as he sits.,,gold0-orig,pos,unl,unl,pos,n/a,\"On the dance floor, someone dances gracefully with mr.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42446,16833,The newlyweds share a joyful kiss. Someone,steps forward to meet someone as she approaches.,twists her legs in shock.,\"winks at someone, then shakes his head and shakes his head.\",looks into someone's shoulder.,pulls back his collar.,gold1-reannot,pos,unl,pos,pos,pos,The newlyweds share a joyful kiss.,Someone\nanetv_HWymkBdgm1M,11035,First the elderly woman goes to hug the young man and then a man in a blue shirt plays the piano beautifully of different melodies. Then two little boys,run outside the door while the man who's standing by the door looks tired and pitiful.,are shown making a haircut together using various arms for music.,hop in the lake slide.,poses with them in the background jumps around the evening to music in a park lit outside of the home.,,gold0-orig,pos,unl,unl,pos,n/a,First the elderly woman goes to hug the young man and then a man in a blue shirt plays the piano beautifully of different melodies.,Then two little boys\nanetv_4U13LEMIdi4,2597,It is licking its paw. It then,wipes its paw on its ear.,sticks at a spray painting of nails.,moves back to brush the cat's back.,pours down like a mug on their nails.,cuts its nails and neck soles.,gold0-orig,pos,unl,unl,unl,unl,It is licking its paw.,It then\nanetv_4U13LEMIdi4,2596,A cat is sitting in a cat bed. It,is licking its paw.,runs at the back of the room.,moves over the cat's hair.,is a bowl across a table.,sit on the ground in front of him.,gold0-orig,pos,unl,unl,unl,unl,A cat is sitting in a cat bed.,It\nanetv_Q9UovyMsTLc,11621,Three girls are seen standing behind a counter speaking to the camera with one spreading butter around a pan. Another mixes ingredients into a bowl with another girl's help and the girls,lick the spoon used afterwards.,begin dancing around one another.,get ready standing on the ice and speaking.,helps for the cookies.,,gold1-orig,pos,unl,unl,unl,n/a,Three girls are seen standing behind a counter speaking to the camera with one spreading butter around a pan.,Another mixes ingredients into a bowl with another girl's help and the girls\nanetv_Q9UovyMsTLc,11622,Another mixes ingredients into a bowl with another girl's help and the girls lick the spoon used afterwards. They,\"pour the mixture into a pan, put it in the oven, then shortly take it out some time after.\",takes a seat in the bathroom.,then grabs the ingredients with the vegetables and puts it up back at the oven.,now demonstrate how to properly play the accordion in a bed.,,gold0-reannot,pos,unl,unl,unl,n/a,Another mixes ingredients into a bowl with another girl's help and the girls lick the spoon used afterwards.,They\nlsmdc3083_TITANIC2-39113,6904,\"Someone closes the sketchbook as another passenger walks past. Smiling, someone\",turns to a sketch of a nude dark - haired woman lying with one arm stretched over her head.,takes the golden snitch from his case and places it in his pocket.,strolls her under her courtyard vanger.,\"takes the ticket and works on a black maid, typing on a desk.\",waves to the twin tv and their view shows impact location footage of a chubby someone.,gold0-orig,pos,unl,unl,unl,unl,Someone closes the sketchbook as another passenger walks past.,\"Smiling, someone\"\nlsmdc3083_TITANIC2-39113,6903,Another sketch depicts a nude woman standing against a ballet bar. Someone,closes the sketchbook as another passenger walks past.,sits in front of several tapping and watching her name tag on the bottom of her blouse.,glances over her shoulder as she touches his date's nose brown teeth.,\"is a typewriter, yellow numbers.\",descends sprouts therapy tango bars.,gold0-orig,pos,unl,unl,unl,unl,Another sketch depicts a nude woman standing against a ballet bar.,Someone\nlsmdc3083_TITANIC2-39113,6902,She turns to a drawing of a nude woman lying on her side with a cigarette in her mouth. Another sketch,depicts a nude woman standing against a ballet bar.,shows a feathered flag being wrapped in a sheer drop.,shows someone in new uniforms and a woman in a black shirt.,shows a photo of a blond girl lying down.,,gold0-orig,pos,unl,unl,pos,n/a,She turns to a drawing of a nude woman lying on her side with a cigarette in her mouth.,Another sketch\nanetv_MOvLBw1EzmI,5523,A snow covered vehicle is shown outside. A person,is using a red scraper to remove snow and ice from the windshields.,scrubs paint a car.,is spraying water on the car.,walks in front of a snow covered hill.,shovels snow out of the snow.,gold0-orig,pos,unl,pos,pos,pos,A snow covered vehicle is shown outside.,A person\nanetv_MOvLBw1EzmI,95,A close up of a car is seen followed by a hand holding a scraper. The person,pushes ice all along the car with the scraper.,uses a scraper to scrape the car area of the car.,blows smoke to a pair of handlebars and begins vacuuming around the cars.,continues scraping the wall while the man continues sanding the fence.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a car is seen followed by a hand holding a scraper.,The person\nanetv_MOvLBw1EzmI,96,The person pushes ice all along the car with the scraper. They,continue to push the ice off of the car using the scraper.,continue to drink more.,see the scenery at the end.,see the product with a washer and a scraper.,continue to spray all the snow away and demonstrate different under the car.,gold0-orig,pos,unl,pos,pos,pos,The person pushes ice all along the car with the scraper.,They\nanetv_MOvLBw1EzmI,5524,A person is using a red scraper to remove snow and ice from the windshields. They,continue scraping until a strip is cleaned.,stick on ski in place.,are adding ornaments to the wall.,turn to remove ski glasses.,,gold0-orig,pos,unl,unl,pos,n/a,A person is using a red scraper to remove snow and ice from the windshields.,They\nanetv_jLwUrFMRGzY,5173,The camera pans out to more people and shows them performing an exercise that swings their legs back and fourth. The people,continue following the instructor through various movements while he leads them in the exercise.,continue dancing around the ends of one shot and ends by walking into frame.,continue to move at the monkey along and end with people doing the same thing.,are released and dancing around a circle in the end as well as their tubes moving in slow motion.,continue to perform around all the ingredients while the camera captures them from several angles.,gold0-orig,pos,unl,unl,unl,unl,The camera pans out to more people and shows them performing an exercise that swings their legs back and fourth.,The people\nanetv_jLwUrFMRGzY,5172,An intro is shown followed by two people and a man talking to the camera. The camera,pans out to more people and shows them performing an exercise that swings their legs back and fourth.,pans up to show various shots of children playing polo in a soccer game with paintball players.,pans around an area of the lawn that leads into the person bungee skipping into the path.,cuts to a man inside a classroom teary his videos as he speaks to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,An intro is shown followed by two people and a man talking to the camera.,The camera\nanetv_crSMHcUkPcA,9693,\"After, the man cuts the wall paper and gains assistance while putting the paper on the roof. The two\",finish and give each a high five.,are playing a game and a white tape roll.,continue playing and talking but ends by getting autographs from the act.,are shown standing on their knees and talks to one another continuously.,,gold0-orig,pos,unl,unl,pos,n/a,\"After, the man cuts the wall paper and gains assistance while putting the paper on the roof.\",The two\nanetv_crSMHcUkPcA,9694,\"The two finish and give each a high five. Finally, several rooms\",are shown displaying the work they've done.,of tires are shown.,are shown of squash.,are shown on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,The two finish and give each a high five.,\"Finally, several rooms\"\nanetv_crSMHcUkPcA,9690,A green splash appears against a white back drown. Then a series of words,appear across the screen and showing various pictures describing the terms.,crash down on the screen.,on their blows appear the first screen.,\"appear on the screen as a video of the man on top, in related drums with the same tricks of the snowboard.\",\"appear from the of the video, followed by the reporter talking how people include a dog's fabric product.\",gold0-orig,pos,unl,unl,unl,pos,A green splash appears against a white back drown.,Then a series of words\nanetv_crSMHcUkPcA,9692,\"A man is then shown standing on a ladder laying wall paper. After, the man\",cuts the wall paper and gains assistance while putting the paper on the roof.,\"starts performing boxing tile, and has a tattoo on his arm.\",begins chopping a wood onto a stump.,break tiles and pieces by step tiles free and more men leaves floor wall.,washes the spare with a wet rug.,gold0-reannot,pos,unl,unl,unl,unl,A man is then shown standing on a ladder laying wall paper.,\"After, the man\"\nanetv_crSMHcUkPcA,9691,Then a series of words appear across the screen and showing various pictures describing the terms. A man,is then shown standing on a ladder laying wall paper.,is seen holding a microphone in front of him gives different gymnasts and then holds up a small trophy.,runs away and staggers out of a field in an indoor field and begins performing several tricks.,is also shown once again doing other springs and at the end.,comes in next to him with a pool of red and white blood.,gold0-reannot,pos,unl,unl,unl,pos,Then a series of words appear across the screen and showing various pictures describing the terms.,A man\nanetv_ejkGxGrEdO4,14423,The woman and dog are shown in several more clips playing with the frisbee and performing tricks. The dog,jumps up and down as well as chases after the frisbee while the woman watches on the side.,runs all around the dog as well as running around.,continues taking after the competition and the frisbee.,is shown performing tricks as the dog does tricks with the dog.,clips around the woman with different dogs from many angles and pets.,gold0-orig,pos,pos,pos,pos,pos,The woman and dog are shown in several more clips playing with the frisbee and performing tricks.,The dog\nanetv_ejkGxGrEdO4,14422,A woman and dog are seen standing in a large field performing tricks with a frisbee. The woman and dog,are shown in several more clips playing with the frisbee and performing tricks.,are moving out on the floor while one dog flies in and out of frame.,get off the horse's fur while more people keep hold of a leash while the bull flies off.,holding seen holding a frisbee and the dog races toward the dog again.,run around as well as running past one another while more people bow to the camera.,gold0-orig,pos,unl,unl,unl,pos,A woman and dog are seen standing in a large field performing tricks with a frisbee.,The woman and dog\nlsmdc0021_Rear_Window-58940,15598,\"She is aware of him, and immediately retreats into the doorway. She\",\"disappears down the lower corridor, as someone searches his fire escape.\",\"has a broom bucket covered in nervous dust, and hurries to a window.\",hears an angry sound under his footsteps.,\"grips his arm tightly, steering tightly as he steps out.\",comes in to greet him.,gold0-orig,pos,unl,unl,unl,pos,\"She is aware of him, and immediately retreats into the doorway.\",She\nlsmdc0021_Rear_Window-58940,15597,He comes out onto the fire escape directly above someone. She,\"is aware of him, and immediately retreats into the doorway.\",races over to someone.,in the clearing.,\"flinches and surfaces, crawling in his direction.\",steps out and gives a silver jack - o - lantern to someone.,gold0-reannot,pos,unl,unl,unl,unl,He comes out onto the fire escape directly above someone.,She\nlsmdc0021_Rear_Window-58940,15596,\"In the corridor above, someone returns, frustrated. He\",comes out onto the fire escape directly above someone.,\"stands with one hand forward, grimaces, bobs his head.\",steps up beside the kindling set which he takes hold of the fire.,is fully furnished with a set of exercise equipment.,\"'s patient is gradually shown just starting away, leaving people staring at the vast fair - skinned gym.\",gold0-reannot,pos,unl,unl,unl,unl,\"In the corridor above, someone returns, frustrated.\",He\nanetv_tSk1GWyofaU,9025,A girl walks to the end of a diving board and lifts her hands. The girl,jumps on the diving board to prepare herself.,jumps onto a board and lands in a pool.,then falls on her face and walks into the finish.,takes a spin and adjusts her stance.,slides over and dives into the swimming pool.,gold1-orig,pos,unl,unl,pos,pos,A girl walks to the end of a diving board and lifts her hands.,The girl\nanetv_tSk1GWyofaU,9026,The girl jumps on the diving board to prepare herself. The girl then,does a backwards flipping dive into the pool.,stands at the side of the pool and looks straight towards the camera.,begins to try on skis again.,moves to the middle of the pool.,spins and dives in the pool once more.,gold0-orig,pos,unl,unl,unl,pos,The girl jumps on the diving board to prepare herself.,The girl then\nanetv_T3bTwmccIEQ,2206,They pick up a canoe and drive it to the water. They,\"canoe down the river, paddling as they go.\",appear to be being seen at the bottom of a boat.,take turns to record the fishes on their ice.,take it out of the boat.,manage to get them under water in the back raft.,gold1-orig,pos,unl,unl,unl,pos,They pick up a canoe and drive it to the water.,They\nanetv_T3bTwmccIEQ,3656,Three men walk next to each other. the men,begin putting a boat on the back of a truck.,walk up and down together in a park.,are playing a set of drums.,hit the ball back and forth in the water.,,gold0-orig,pos,unl,unl,unl,n/a,Three men walk next to each other.,the men\nanetv_T3bTwmccIEQ,3657,The men begin putting a boat on the back of a truck. the men,tie the boat down.,are talking about the brand and the logo.,begin going through the rapids.,gather at a 180 then arrive at the floor and every wash.,go back to the fish and sit together.,gold0-orig,pos,unl,unl,unl,pos,The men begin putting a boat on the back of a truck.,the men\nlsmdc0031_The_Lost_Weekend-65854,6074,\"He steps to the chest of drawers in the bedroom. Someone, looking around desperately,\",sees something reflected in the shaving mirror: the gun in the wash bowl.,stretches through the open wallet.,runs pocket for cookware.,watches himself through the air in the elevator.,lies on the bed by his digicam.,gold0-orig,pos,unl,unl,unl,unl,He steps to the chest of drawers in the bedroom.,\"Someone, looking around desperately,\"\nlsmdc0031_The_Lost_Weekend-65854,6075,\"Someone, looking around desperately, sees something reflected in the shaving mirror: the gun in the wash bowl. Before she can step toward it, someone\",is back with the scarf.,sits right back again.,begins with an instant item.,looks at the needle on someone's nipple.,removes the kitten and stares into it.,gold1-orig,pos,unl,unl,unl,unl,\"Someone, looking around desperately, sees something reflected in the shaving mirror: the gun in the wash bowl.\",\"Before she can step toward it, someone\"\nlsmdc0031_The_Lost_Weekend-65854,6080,He bends down for a kiss. Someone,stands looking at him.,is pinched up for her.,kisses her and gives her a tender kiss.,looks over the rooftops expectantly toward the finish line.,\"sits across from him, laughing and prays.\",gold0-orig,pos,unl,unl,unl,unl,He bends down for a kiss.,Someone\nlsmdc0031_The_Lost_Weekend-65854,6078,She puts down the raincoat and the scarf and goes to the kitchen for a glass. He,picks up the raincoat and the scarf.,hangs door and smiles.,sees his reflection in the glass and closes it behind him.,leans it back and looks up when he sees her packing her belongings.,\"strokes her cheek, her image darkens.\",gold0-orig,pos,unl,unl,unl,pos,She puts down the raincoat and the scarf and goes to the kitchen for a glass.,He\nlsmdc0031_The_Lost_Weekend-65854,6082,Someone holds out the glass. She,turns and runs into the bathroom and picks up the gun.,rips it from her vest.,takes the sharply european mercedes and puts it on.,\"opens her squarely at the table, then hits him with an elbow.\",\"follows her coffee, closing the door behind her.\",gold1-reannot,pos,unl,unl,unl,unl,Someone holds out the glass.,She\nlsmdc0031_The_Lost_Weekend-65854,6081,Someone stands looking at him. Someone,holds out the glass.,\"is lost on his cold, sad features.\",is scanning the aircraft.,walks out of the corner.,shifts her stunned gaze.,gold1-reannot,pos,unl,pos,pos,pos,Someone stands looking at him.,Someone\nlsmdc1046_Australia-90499,18001,Someone walks slowly to him. She,smiles and nods nervously.,puts both her hands in his pockets.,leans down to the right.,smiles at someone questioningly.,,gold1-orig,pos,unl,unl,pos,n/a,Someone walks slowly to him.,She\nanetv_tHFF0OaIHoE,8329,\"A young girl is sitting in an empty bath tub shaving a man's leg that is thrown over the tub. As she continues, the dog comes and she\",shows the hair on the razor to the camera.,speaks up to help.,walks back in the fourth her dress and sees her smiling from the camera.,jumps to the pavement and falls.,appears to be using the bath towel.,gold1-orig,pos,unl,unl,unl,pos,A young girl is sitting in an empty bath tub shaving a man's leg that is thrown over the tub.,\"As she continues, the dog comes and she\"\nanetv_BJM1rUjXvkQ,18876,\"The woman added brown sugar on the butter, then added eggs one by one and mixed and then cream, then flour, baking soda, cinnamon powder and mixed them well. The dried fruit mixture is added in the batter, and then shredded nuts and they\",were mixed well together.,mixed together in the delivering scoop mix.,mix it on the baking pan and pour it to mix them.,are squeezed in then stirred and put and all the dough are made.,are then mixed with eggs and a measuring cup.,gold0-orig,pos,pos,pos,pos,pos,\"The woman added brown sugar on the butter, then added eggs one by one and mixed and then cream, then flour, baking soda, cinnamon powder and mixed them well.\",\"The dried fruit mixture is added in the batter, and then shredded nuts and they\"\nlsmdc0004_Charade-47471,8776,\"He sees the metal hand. Then, using all his weight, he\",\"slams the door open as far as it will go, making sure to hold it that way as he steps in.\",\"places he shoes behind the pillar, rises, walks up and looks around the room.\",jams a running hand to the mouth of an elderly - foot hedge.,continues mowing the area.,takes a small breath and talks to the camera.,gold0-orig,unl,unl,unl,unl,unl,He sees the metal hand.,\"Then, using all his weight, he\"\nlsmdc0004_Charade-47471,8779,\"Hurrying, someone puts his foot against the door and pushes it away, ripping his metal hand free. He then\",rushes to the open window and climbs out.,\"drops his coat, throws her to the floor.\",drains the vampire's blood causing the bottle to drink.,\"pulls back at the door, but does n't go down.\",looks up a lighted corridor and sees someone coming down the stairs.,gold0-orig,pos,unl,unl,pos,pos,\"Hurrying, someone puts his foot against the door and pushes it away, ripping his metal hand free.\",He then\nlsmdc0004_Charade-47471,8777,\"Then, using all his weight, he slams the door open as far as it will go, making sure to hold it that way as he steps in. Inside, someone\",pulls back the door and slugs the startled someone full on the jaw.,sits slowly opposite him with his knees sticking out into the shape of a white bearded figure.,is removing someone's handcuffs and dropping an enamel down the bedroom wall.,\"watches the large surveillance monitor monitors, then stops the opposing mugger.\",,gold0-orig,unl,unl,unl,unl,n/a,\"Then, using all his weight, he slams the door open as far as it will go, making sure to hold it that way as he steps in.\",\"Inside, someone\"\nlsmdc0004_Charade-47471,8771,\"Someone sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike. The hand\",is starting to come down.,\"is left holding someone's arm, moving a cordial arm between his ankles.\",becomes a bottle of fluid.,smacks away hurt.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike.\",The hand\nlsmdc0004_Charade-47471,8773,\"Someone, moving quickly, turns and flies out. Petrified with fear, someone\",can only stare dumbly at the protruding claw.,strikes a patient down on a bench.,\"hits someone angrily, a fierce wind.\",clutches his collar banister as someone returns.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, moving quickly, turns and flies out.\",\"Petrified with fear, someone\"\nlsmdc0004_Charade-47471,8774,\"Petrified with fear, someone can only stare dumbly at the protruding claw. As someone\",comes running up to her.,uses his pencil to search his face.,\"looks up, beams of sunlight light across the ceiling.\",\"reaches for his hand, an connected gun rests on his head, someone rises to his feet.\",\"carries someone out of the kitchen, someone manages to pass.\",gold0-orig,pos,unl,unl,unl,unl,\"Petrified with fear, someone can only stare dumbly at the protruding claw.\",As someone\nlsmdc0004_Charade-47471,8778,\"Inside, someone pulls back the door and slugs the startled someone full on the jaw. Hurrying, someone\",\"puts his foot against the door and pushes it away, ripping his metal hand free.\",\"turns his head, then runs to someone, dragging down his body.\",roves up the front door of a modest restaurant inside.,rushes over and takes the launcher.,\"packs a choke box, goes about horse scamper, then frantically shuts the safe.\",gold0-orig,pos,unl,pos,pos,pos,\"Inside, someone pulls back the door and slugs the startled someone full on the jaw.\",\"Hurrying, someone\"\nlsmdc0004_Charade-47471,8770,She stops as she sees something. Someone,\"sees where someone is staring; looks down at it himself, then lunges at her, raising the hand to strike.\",\"looks around, her aunt siting behind someone.\",looks over at the boys on their spot in the morning.,turns to the window.,gazes at the monitor.,gold0-reannot,pos,unl,unl,pos,pos,She stops as she sees something.,Someone\nanetv_1jWMd8QaN5s,15124,People are standing in a line playing a game of Foosball. A man,is standing in front of the foosball table on the phone.,unhooks a smoke pipe.,throws a towel over the arena.,is standing on the ice.,holding a racket is shown in front of him talking.,gold0-orig,pos,unl,unl,unl,pos,People are standing in a line playing a game of Foosball.,A man\nanetv_1jWMd8QaN5s,16143,A group of men and boys are playing a foosball game at a table in a building. They,try to hit each other's opponent to win the game.,are standing on a field playing cards.,sync for the other one and really the terrible good 3 cups.,start playing a game of tug of war.,are walking above a large net with all their hoops and are standing around them.,gold0-reannot,pos,unl,unl,unl,unl,A group of men and boys are playing a foosball game at a table in a building.,They\nanetv_1jWMd8QaN5s,15125,A man is standing in front of the Foosball table on the phone. A man in a black hat,is standing against the wall behind them.,is holding the croquet mallet.,is playing close to his top for a beat.,is holding a microphone.,is playing the keyboard.,gold0-reannot,pos,unl,unl,unl,unl,A man is standing in front of the Foosball table on the phone.,A man in a black hat\nanetv_0J55EGFLglQ,7852,The women on the court are running around trying to get the ball. One of the women,runs all the way into the goal.,grabs the ball to keep it away yet the first time.,holds the ball back and forth.,holds the ball and on the court.,gets off his horse and brings his hand up.,gold1-reannot,pos,unl,unl,unl,unl,The women on the court are running around trying to get the ball.,One of the women\nanetv_0J55EGFLglQ,7851,The station shows for what channel it is that is being watched. The women on the court,are running around trying to get the ball.,are skating on the floor wall discussing.,see water and intro for wakeboarding and a credit graphics showing the video and when it is over.,hop up and move their arms during the high fronted dance.,,gold0-reannot,pos,unl,unl,unl,n/a,The station shows for what channel it is that is being watched.,The women on the court\nanetv_0J55EGFLglQ,7850,It seems like they are watching on tv a game of soccer. The station,shows for what channel it is that is being watched.,illustrates a short dance that has repeated the swing and seems quite good at what he is doing.,wagon shoots the spider in green and she incinerates it.,take of tips is gopro.,passes by as they continue to play.,gold0-reannot,pos,unl,unl,unl,pos,It seems like they are watching on tv a game of soccer.,The station\nlsmdc0053_Rendezvous_mit_Joe_Black-71283,9913,\"Quince comes running up now. Someone ushers everybody on, first someone, then someone and Quince, someone the last to climb on, shuts the door behind him As someone\",hurries away from the whirling rotors.,\"stands from a small balcony post, describing the process in his hand.\",bends into a cup.,comes to his head with the applause.,\"gets in the briefcase, lowers the key.\",gold0-reannot,pos,unl,unl,unl,unl,Quince comes running up now.,\"Someone ushers everybody on, first someone, then someone and Quince, someone the last to climb on, shuts the door behind him As someone\"\nanetv_qK2iRSxxRQU,5481,She is joined by two more dancers who are in red and each does their own moves before coming together. They again,\"break for solo performances, each dancer getting a moment to show off.\",\"dance their batons to the stage, looking after a ballet couple dancing in a innocent dance and dancing lively.\",holding the pair of the weights or just varying the balance from two columns of dance moves.,are smiling as they continue dancing and dancing.,come back to standing on the stage.,gold0-orig,pos,unl,unl,unl,unl,She is joined by two more dancers who are in red and each does their own moves before coming together.,They again\nanetv_qK2iRSxxRQU,5480,\"A bellydancer in green begins her routine, smiling for the audience. She\",is joined by two more dancers who are in red and each does their own moves before coming together.,dismounts to the jumping and dances behind the benches anxiously.,clears the stage with her older competitors behind drummer.,then spins and throws the ball back.,bows and plays croquet.,gold0-orig,pos,unl,unl,unl,unl,\"A bellydancer in green begins her routine, smiling for the audience.\",She\nanetv_CNdCnkKhitI,847,A man is seen swinging a ball with a bat and leads into several clips of people playing cricket. The men,sit down and speak to one another as well as show more clips of them playing the sport.,continue to hit the ball back and forth until different leverage as well as fly.,\"continue hitting the balls, and leads into several clips of him playing with at a game and having congratulated the ball.\",then play as well as the same people swimming back and fourth at the scene.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen swinging a ball with a bat and leads into several clips of people playing cricket.,The men\nanetv_CNdCnkKhitI,5454,A group of people are playing a game on the field. They,are engaged in a game of cricket.,are with their rackets attempting to fight each other and throwing the rope to each other.,hit other video ball.,\"play, also players are.\",try to keep the ball back and forth.,gold1-reannot,pos,unl,unl,unl,pos,A group of people are playing a game on the field.,They\nlsmdc0046_Chasing_Amy-68737,651,\"Someone sits on a curb, staring into the distance, someone saunters up and sits beside him. He\",follows someone's gaze.,stares and chomps at the girl.,puts the newspaper back on the counter.,smiles as people exchange salutes.,shakes someone's hand.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sits on a curb, staring into the distance, someone saunters up and sits beside him.\",He\nlsmdc3008_BAD_TEACHER-4112,5089,Secretary opens the door and someone enters. As he takes a seat beside someone she,gives a demure smile.,looks sadly through her lobe nervously.,kisses the guy beside him.,forces someone to roll it.,,gold0-orig,pos,unl,unl,unl,n/a,Secretary opens the door and someone enters.,As he takes a seat beside someone she\nlsmdc3008_BAD_TEACHER-4112,5088,The secretary points to someone's bumper sticker on the side. Someone,holds up a hand and nods.,hooks gloved hand over his eyes as they stare ahead.,picks up the second card of the intercom.,holds up his stick and sits happily in a wheelchair.,looks around awkwardly as a 15 - transport car pulls away.,gold0-orig,pos,unl,unl,unl,unl,The secretary points to someone's bumper sticker on the side.,Someone\nlsmdc3008_BAD_TEACHER-4112,5086,\"Now at school, someone sits in her empty classroom. Standing, she\",sticks her gum to the underside of her desk.,fry an egg.,peers up and peers through her spectacles.,moves past the edge of the operating room.,,gold1-orig,pos,unl,unl,unl,n/a,\"Now at school, someone sits in her empty classroom.\",\"Standing, she\"\nlsmdc1028_No_Reservations-83370,16477,\"Brandishing an uncooked steak held high on a carving fork, someone marches out of the kitchen through the dining room and up to table seven. Someone\",\"tears off her apron, thrusts it at a waiter, and strides out.\",pins them down at top of one couch.,crouches at the edge of the veranda as someone watches interest anxiously.,takes a picture in the gambling room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Brandishing an uncooked steak held high on a carving fork, someone marches out of the kitchen through the dining room and up to table seven.\",Someone\nlsmdc1028_No_Reservations-83370,16478,\"Someone tears off her apron, thrusts it at a waiter, and strides out. Someone\",stares blankly as someone hails a cab and gets in.,sits on the side of the palace cross near the forest wall.,is a ticket.,closes the bathroom door and follows her back.,enters the lift door and reaches out from behind him.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone tears off her apron, thrusts it at a waiter, and strides out.\",Someone\nanetv_Zsaa3XXIAhk,48,A man plays a song on an acoustic guitar in a studio. The man,resets his hands and finishes the song.,plays the many pipes on his hands.,plays the drum drum.,plays the violin slowly and looks away.,,gold0-orig,pos,unl,unl,unl,n/a,A man plays a song on an acoustic guitar in a studio.,The man\nanetv_6Ni6csyQbzw,18475,\"He releases from the gate, dirt biking in a race with others. He\",goes over numerous hills and passes the watching crowd before coming to a stop on the grass.,plunges into a shanty.,runs barefoot through the paved terrain with soldiers beside him watching the game.,takes a fast leap onto a narrow dirt ground.,,gold0-orig,pos,unl,unl,pos,n/a,\"He releases from the gate, dirt biking in a race with others.\",He\nanetv_6Ni6csyQbzw,2531,Men are in a line in a bycicle in a competition. men,start the competition and are driving in a dusty path.,throw different men running on the court watching the event.,are in a tennis court playing dodgeball in the gym.,are pulling a line and toss some fish.,,gold0-orig,pos,unl,unl,unl,n/a,Men are in a line in a bycicle in a competition.,men\nanetv_6Ni6csyQbzw,2533,A parking lot with a lot of cars parked are on side of the path on a road. when men gets to the end people,are waiting for them holding signs.,get stuck as dancers shoot to the side and go back to the van.,skate around between cars.,get into the car and start pulling it.,,gold0-orig,pos,unl,unl,unl,n/a,A parking lot with a lot of cars parked are on side of the path on a road.,when men gets to the end people\nanetv_qXD7myRvw0M,1297,They are engaged in a game of tennis. They,serve the ball back and forth over the net.,\"push it around, making it into a game of tennis.\",continue doing the archery and start fighting one another.,are kicking a ball back and forth.,fall onto the court and begin to congratulate each other holding a trophy.,gold0-orig,pos,unl,unl,unl,pos,They are engaged in a game of tennis.,They\nanetv_qXD7myRvw0M,182,\"On one net, there are four player playing, on the other net there are two player playing. The players\",chase the shuttlecock and hit it with their racket.,\"continue continuing curling into several paintball goals, trying to hit it over the net.\",take a few questions and continue to play soccer on the green field.,lob the ball back and forth while laughing with each other and kicking the ball around.,are playing hard on a ball.,gold0-orig,pos,unl,pos,pos,pos,\"On one net, there are four player playing, on the other net there are two player playing.\",The players\nanetv_qXD7myRvw0M,181,\"The badminton players are playing at the badminton court. On one net, there are four player playing, on the other net there\",are two player playing.,is a young boy in a basketball costume looking around.,are several men standing against them watching watching.,is a crowd gathered in an upright crowd.,,gold0-orig,pos,unl,pos,pos,n/a,The badminton players are playing at the badminton court.,\"On one net, there are four player playing, on the other net there\"\nanetv_qXD7myRvw0M,1296,A group is gathered on an indoor court. They,are engaged in a game of tennis.,starts throwing a ball with racquets to make baskets.,are engaged in a game of water polo.,switch and use the balls to hit the ball around the net.,are watching as they lob the ball back and forth over the net.,gold0-reannot,unl,unl,unl,unl,pos,A group is gathered on an indoor court.,They\nanetv_5xgBlI9Xx0I,18573,A gymnast is shown swinging back and fourth on uneven bars. He,performs a routine swinging around and around while hundreds of people watch.,continues to move in and out of frame as well as various exercises.,jumps multiple times to demonstrate that he does it.,performs back flips and flips in circles while she goes on the monkey bars.,jumps off and jumps across the back bars of the routine.,gold0-orig,pos,unl,unl,unl,pos,A gymnast is shown swinging back and fourth on uneven bars.,He\nanetv_5xgBlI9Xx0I,18574,He performs a routine swinging around and around while hundreds of people watch. He,finishes by sticking his arms up in the air and bowing to the audience.,holds up and continues to talk and leads into him performing gymnastics tricks.,moves the object up and begins spinning into an object.,continues hitting the wall all around the room.,jumps down and catches another discus with the man jumping in the background.,gold1-reannot,pos,unl,unl,unl,pos,He performs a routine swinging around and around while hundreds of people watch.,He\nlsmdc3062_SORCERERS_APPRENTICE-30622,10141,\"As a gray - haired man passes, the urn quivers. The man\",returns and stares at it.,looks down at the injured someone.,sinks under the lifeboat.,shoots the man at the bottom.,\"takes a seat casually as someone lays down his food, sensing an unusual pattern.\",gold0-reannot,pos,unl,unl,unl,pos,\"As a gray - haired man passes, the urn quivers.\",The man\nanetv_SV-8M3HNk1s,9785,A clip is shown of a person on a wake board riding on some waves and crashing into the water. Several more clips,are shown of people riding on the wake boards on the ocean waves gliding along.,are shown of people surfing gear over and over performing tricks as well as falling down and landing into a lake.,are shown of people captions shown on screen.,are shown of people swimming through the decks with an inflatable cup and more clips getting it under water.,are shown of people swimming and riding around at different heights and riding around.,gold0-orig,pos,unl,unl,pos,pos,A clip is shown of a person on a wake board riding on some waves and crashing into the water.,Several more clips\nanetv_YkqO2oi9SIk,16672,\"A group of swimmers cliff dive into a body of water surrounded by onlookers, large rocks, buildings and boats, in a judged competition. The swimmers\",jump off a man made metal cliff wrapped in sponsored advertisement art and graphics.,swim away from a smaller team along the coast.,keep on the diving board in the pool.,\"ride the poles through a field of christmas trees, flanked by white horses in the background.\",jump high and backward and fall to the edge of the ditch.,gold0-orig,pos,unl,unl,unl,unl,\"A group of swimmers cliff dive into a body of water surrounded by onlookers, large rocks, buildings and boats, in a judged competition.\",The swimmers\nanetv_F67zl57FSXE,52,\"One by one, they squat down, grab the weight, stand, and lift it over their heads before dropping it. The seventh man\",\"fails on his first try, and drops the weight before raising it overhead.\",collapses over his knees again with the help of a boys tank before the crowd speaks.,is then shown taking a drink into a pond when finally to the face of the bartender.,lifts her shirt hand to help the woman laugh.,\"holds their hands up and also, without hopes and speed their routine.\",gold0-orig,pos,unl,unl,unl,pos,\"One by one, they squat down, grab the weight, stand, and lift it over their heads before dropping it.\",The seventh man\nanetv_F67zl57FSXE,9371,A weight lifter is standing in a gym. He and others consecutively,lift the barbells over their heads.,in a line for a turn.,his pole out on a mat.,jump down into his legs.,gymnastics on a beam in a gym.,gold0-orig,pos,unl,unl,unl,unl,A weight lifter is standing in a gym.,He and others consecutively\nanetv_F67zl57FSXE,51,\"Several men are doing dead lifting in a weight lifting competition. One by one, they\",\"squat down, grab the weight, stand, and lift it over their heads before dropping it.\",\"kick the poles away, back into other room.\",\"are still siting by the railing, looking at the camera.\",sit up and start and spin upwards.,demonstrate several martial moves before and after.,gold0-orig,pos,unl,unl,unl,unl,Several men are doing dead lifting in a weight lifting competition.,\"One by one, they\"\nanetv_F67zl57FSXE,53,\"The seventh man fails on his first try, and drops the weight before raising it overhead. The thirteenth man also\",\"fails, dropping his weight before lifting it high.\",shows himself on the bars in various sweeps.,holds sharp kick almost in the getting room.,uses two feet to pull out step and lands on the table.,\"grabs his hips and lets a man down before him, the barbell lifts and his knees.\",gold0-reannot,pos,unl,unl,unl,unl,\"The seventh man fails on his first try, and drops the weight before raising it overhead.\",The thirteenth man also\nanetv_F67zl57FSXE,9372,He and others consecutively lift the barbells over their heads. The final man is shown dropping,is weights back to the ground.,complicated by water blades on the ground.,hands on his head.,another punch.,\", ironing a rubber hand.\",gold0-reannot,pos,unl,unl,unl,unl,He and others consecutively lift the barbells over their heads.,The final man is shown dropping\nanetv_B2HIj_QWaG0,9462,A woman is playing a violin on the street while various people walk around here and behind her. She,smiles into the camera while playing and continues playing the song while several people bend down to tip her and walk around her.,are demonstrating hula hoops to reaching the stage.,catches the final line and runs towards the group.,brush the woman's hair.,performs her gymnastics routine in a living room.,gold0-orig,pos,unl,unl,unl,unl,A woman is playing a violin on the street while various people walk around here and behind her.,She\nanetv_C7so_y5I_9s,5059,We see a shoe briefly. We,see the ending title screen.,see that image of people swimming indoors in racquetball.,see a brush holding a shoe.,see a dealer and a wagon's left.,see relay game tuck and credits.,gold0-orig,pos,unl,unl,unl,pos,We see a shoe briefly.,We\nanetv_C7so_y5I_9s,5056,We see a man riding jet skis and performing flips. We,see a man sitting on the dock.,see the ending scene.,see the url on the screen.,see the ending screen.,see the screen again.,gold0-orig,pos,pos,pos,pos,pos,We see a man riding jet skis and performing flips.,We\nanetv_C7so_y5I_9s,5057,We see a man sitting on the dock. We,see the jet skier ride over a ramp.,see a man creating a rock from the ocean.,see a man standing up on a bus.,see the men smiling around a shore.,see an outline on the lake.,gold0-orig,pos,unl,pos,pos,pos,We see a man sitting on the dock.,We\nanetv_pOVICBn8QMw,17345,There is man in a red uniform prepping to get on and start performing. He,gets on the balance beam and starts to spin around and around.,joins a biker on the treadmill for space.,is wearing black boots and a padded black shirt.,set the timer on the trainer.,,gold0-orig,pos,unl,unl,unl,n/a,There is man in a red uniform prepping to get on and start performing.,He\nanetv_pOVICBn8QMw,17346,He gets on the balance beam and starts to spin around and around. He even at one point,does it one handed and puts some other cool tricks into it.,adjusts a string and clips both bike boards.,that he switches to his helmet and several springs.,finishes the video and creates to spin around different positions to demonstrate technique.,after he loses his routine at the end of the bar.,gold1-orig,pos,unl,unl,unl,unl,He gets on the balance beam and starts to spin around and around.,He even at one point\nanetv_pOVICBn8QMw,15277,A man jumps onto a balance beam. He,does a gymnastics routine on the balance beam.,does a routine on the beam in front of his motion.,does several tricks forward tricks and spinning several times.,does a gymnastics routine on the mat.,does a gymnastics routine on a beam.,gold1-orig,pos,unl,unl,unl,pos,A man jumps onto a balance beam.,He\nanetv_pOVICBn8QMw,15278,He does a gymnastics routine on the balance beam. He,jumps off the balance beam and lifts his arms in the air.,walks on a gym and flips in.,starts to do crunches in a handstand.,jumps in the air.,,gold0-orig,pos,unl,unl,pos,n/a,He does a gymnastics routine on the balance beam.,He\nanetv_pOVICBn8QMw,17347,He even at one point does it one handed and puts some other cool tricks into it. When he is done he,gets off of the beam and begins to walk off the stage.,\"'s not involved in the game, this man is demonstrating how to make a goal.\",grabs a pink beanie and dances in the sand.,plugs his ears and eventually he calms down.,,gold0-orig,pos,unl,unl,pos,n/a,He even at one point does it one handed and puts some other cool tricks into it.,When he is done he\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1312,Someone looks out through the curtain covering the broken glass of the front door. Someone,\"opens the door, revealing himself as a homemade butler.\",shifts to all fours and strides through the gentle snowfall in a forest.,now he is lost ground.,\"gets his jacket from under his living room, and grabs his shades.\",\"strapped to his feet on the floor, she sits beside someone.\",gold1-orig,pos,unl,unl,pos,pos,Someone looks out through the curtain covering the broken glass of the front door.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1311,Someone and the man are putting up travel posters to cover up the broken windows. Someone,looks out through the curtain covering the broken glass of the front door.,picks up his real gun.,\"is artificial, landscape.\",rides to the mustang and drives down a narrow road.,slides down another staircase.,gold0-orig,pos,unl,unl,unl,pos,Someone and the man are putting up travel posters to cover up the broken windows.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1308,A faint glow of light shines out from bottom windows. He,stops to make sure it is the right number before going up the steps.,spins around flexible lightning.,shadows smile at hers.,\"moves back up toward his carpet, impaled with chain still in hand.\",looks at a doorknob with his doorknob.,gold1-orig,pos,unl,unl,unl,unl,A faint glow of light shines out from bottom windows.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1306,It once had class but has not been lived in for years. This,is the house that people will live in from now on.,impression is apparently not the place.,is n't the morning not to be friendly.,video gave us wide at the story.,is a twelve - foot office.,gold0-orig,pos,unl,unl,unl,unl,It once had class but has not been lived in for years.,This\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1307,The rain is pouring down. A faint glow of light,shines out from bottom windows.,is driven away in a sunny armory.,appears across it.,is caught on cottage window.,,gold0-reannot,pos,unl,pos,pos,n/a,The rain is pouring down.,A faint glow of light\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1310,Someone is leaning from the window. Someone and the man,are putting up travel posters to cover up the broken windows.,\"run toward the door of a grocery store with cashier, and sorts through some shopping bags on their table across the racks.\",\"stare at each other, so the other man.\",step out gazing out.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone is leaning from the window.,Someone and the man\nlsmdc0014_Ist_das_Leben_nicht_schoen-54706,1309,A sharp whistle is heard. Someone,is leaning from the window.,is on stage with the panicking defeated.,bounces easily under his crutches.,takes out of his shoelace and goes down.,is driving between someone and someone.,gold1-reannot,pos,unl,unl,unl,unl,A sharp whistle is heard.,Someone\nanetv_5rO2DwFhdwo,4410,They hit the ball back and forth against the wall. They,pick the ball up and continue competing.,keep their drums off against each other.,go back and forth in the water.,hit the ball back and forth over a net.,continue mixing and hitting the ball back and forth.,gold0-orig,pos,unl,unl,pos,pos,They hit the ball back and forth against the wall.,They\nanetv_5rO2DwFhdwo,4409,Two men are on an indoor racquetball court. They,hit the ball back and forth against the wall.,are throwing the ball down a sidewalk.,play a game for tennis with.,started twirling and dancing around and danced.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are on an indoor racquetball court.,They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2471,He desperately conceals his reaction; he thinks someone has betrayed him. He now,conceals his new reaction.,is caught by his wife.,does a least jump at the ball and then returns.,wears her black uniform.,writes his hands in his amusement.,gold0-orig,pos,unl,unl,unl,unl,He desperately conceals his reaction; he thinks someone has betrayed him.,He now\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2476,\"He looks up and sees: someone, in close - up, hands busy o. s.; someone, with doll; and between them, in background, someone. She\",\"is now running fast towards someone, who walks towards her with arms outstretched.\",\"looks at his hand, but the suv stopped for an oncoming car, driving away.\",sits with florence's slumped while staring slack - jawed at his touch.,tell dogs to take care.,\"turns down another aisle, and begins to play, before taking him to a cart.\",gold0-orig,pos,unl,unl,unl,unl,\"He looks up and sees: someone, in close - up, hands busy o. s.; someone, with doll; and between them, in background, someone.\",She\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2477,\"She is now running fast towards someone, who walks towards her with arms outstretched. Someone\",\"sits beside his open door, strumming a guitar and singing.\",is got all in a tripod.,spots someone trevor in the grass.,\"walks closer to that, where he is in the back passenger seat.\",\"crossed at her side, rotating her hips, waiting on top of the staircase.\",gold1-orig,pos,unl,unl,unl,pos,\"She is now running fast towards someone, who walks towards her with arms outstretched.\",Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2478,Someone's skiff is inverted on trestles in foreground. At start of scene we see only someone's feet; he,\"is under the skiff, examining it.\",sees someone who is working behind her and the alien wildly ruffling her hair.,has a metal hand held tight under his heart.,looks at the ruins at the school.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's skiff is inverted on trestles in foreground.,At start of scene we see only someone's feet; he\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2475,\"Someone moves to stand in front of him; someone, to stand beside someone, with the doll. The hand named love and the hand named hate\",come in to straighten the necktie.,\"under his arm, moves closer.\",\"- - without saying it, he is terrified.\",glances across the backyard.,\"looks again, though to keep someone from crying.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone moves to stand in front of him; someone, to stand beside someone, with the doll.\",The hand named love and the hand named hate\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2470,\"Someone is standing, beckoning someone. They\",start towards their mother.,are deep in conversation as the pretty wistful man approaches toward her.,looks around and sees.,prepare to fight with their fellow soldiers.,,gold0-reannot,pos,pos,pos,pos,n/a,\"Someone is standing, beckoning someone.\",They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2479,\"After three lines of song he comes out from under, and lounges against the skiff, tracing a tarry seam with his forefinger. Through rest of scene, someone\",picks lazily at his guitar.,is leaning close to her microphones.,\"is angry, sitting about three few chairs across where he intends to be.\",can be seen amongst a rose and a large fountain.,,gold0-reannot,pos,unl,pos,pos,n/a,\"After three lines of song he comes out from under, and lounges against the skiff, tracing a tarry seam with his forefinger.\",\"Through rest of scene, someone\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2474,She walks away towards someone and the women. Someone,\"moves to stand in front of him; someone, to stand beside someone, with the doll.\",sees him guard off the platform.,glares while someone swims toward someone and nods.,look on her dozen cohorts.,,gold0-reannot,pos,unl,unl,unl,n/a,She walks away towards someone and the women.,Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49155,2472,He now conceals his new reaction. Someone,\"touches someone's hand, warmly.\",opens the cab to someone's time specifically.,runs to the kitchen.,see the whole bite every time.,turns away from her.,gold1-reannot,pos,unl,unl,unl,pos,He now conceals his new reaction.,Someone\nanetv_xmGucghu2FI,929,An intro of text leads into several clips of athletes throwing javelins off into the distance. The video,continues with several more athletes being shown performing impressive throws with the javelin.,ends with a line of people throwing and waving in the air.,transitions into a man roller blading down the track.,continues to show more clips of an athlete sprinting down the track.,,gold0-orig,pos,pos,pos,pos,n/a,An intro of text leads into several clips of athletes throwing javelins off into the distance.,The video\nanetv_0bzSBV3jHIY,17388,A man walks into frame and speaks to people all around a bar. People,are seen eating and playing pool while others interact on the side.,\"scenery in various landscapes and angles are shown walking along a river, and playing a game sit middle - down.\",are watching and speaking to one another as several pictures are shown of things and others carried in.,moves in and out of frame as well as many more kids standing fire in the background.,are seen riding a tall log around another area while people watch.,gold0-orig,pos,unl,unl,unl,unl,A man walks into frame and speaks to people all around a bar.,People\nanetv_0bzSBV3jHIY,17389,People are seen eating and playing pool while others interact on the side. People,continue socializing with one another while people still play pool and eat.,are shown on a surfing segment while speaking to one another.,are swimming around a pool.,watch them move past one another.,are watching from the side of the screen.,gold0-orig,pos,unl,unl,pos,pos,People are seen eating and playing pool while others interact on the side.,People\nanetv_0bzSBV3jHIY,15369,A man in a white striped shirt is smiling. A woman,is setting up the pool balls.,started hitting the first boy.,holds her's eye.,is swimming in a public pool.,,gold1-orig,pos,unl,unl,pos,n/a,A man in a white striped shirt is smiling.,A woman\nlsmdc3035_INSIDE_MAN-2094,11818,\"Inside, the solemn faced detective glides stiffly past running policemen. Reaching the entrance, someone\",pounds on the glass door.,turns and embraces her after speaking.,steps out of a train leaving someone and two others.,finds herself asleep on a couch.,extends the hand to his group.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, the solemn faced detective glides stiffly past running policemen.\",\"Reaching the entrance, someone\"\nlsmdc3035_INSIDE_MAN-2094,11817,\"On top of the truck, our view travels up a pole to a camera. Someone and five unidentifiable witnesses\",surround a seventh person masked by a white sack.,backs down two stairs into the courtyard of the hall light.,their way through the river.,intertubes in a dimly lit path.,on the side of a house.,gold1-orig,pos,unl,unl,unl,unl,\"On top of the truck, our view travels up a pole to a camera.\",Someone and five unidentifiable witnesses\nlsmdc3035_INSIDE_MAN-2094,11816,\"Someone and someone lean close. On top of the truck, our view\",travels up a pole to a camera.,lifts him toward the ceiling.,starts the back of hogwarts.,slowly approaches the reverse of the group.,fills the ship with the locomotive's headlights.,gold1-reannot,pos,unl,unl,unl,unl,Someone and someone lean close.,\"On top of the truck, our view\"\nlsmdc3053_PARENTAL_GUIDANCE-25853,582,They join the rest of the family by a hole dug in a flowerbed. Someone,takes the box and hands it to someone.,creeps in to someone.,gets out and looks back.,enters the base of the steps and into the parlor office.,picks up her purse.,gold0-orig,pos,unl,unl,unl,pos,They join the rest of the family by a hole dug in a flowerbed.,Someone\nlsmdc3053_PARENTAL_GUIDANCE-25853,581,Someone and someone carry a shoebox. They,join the rest of the family by a hole dug in a flowerbed.,slide onto a balcony in the lounge.,dig deep into each other's eyes.,gaze at the photo of the cyclone - maker.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone carry a shoebox.,They\nanetv_ZdaS-WZHUZY,4413,Various scenes of lacrosse being played are shown. A player,lifts a large trophy over head his.,loads a barrel with a white stick in and hits a ball when the three men fight each other in a competition.,walks to a row of the coaches over his snowboard and talks.,passes the ball to a band.,makes a sunbathing jump from a goal.,gold0-orig,pos,unl,unl,unl,unl,Various scenes of lacrosse being played are shown.,A player\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9899,He holds it horizontally in both hands. Someone,snaps the wand in two.,takes a deep breath.,looks up at the imposing vessel.,seethes and raises his arms overhead.,,gold1-orig,pos,unl,unl,unl,n/a,He holds it horizontally in both hands.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9903,He walks away from them. People,turn to watch him.,\"stand quietly outside the door, watched from the window and watched by several small rectangular tables.\",share a webpage as he shoves his briefcase into the silver car.,\"the tea, he walks over the marketplace, picks up the scraps.\",lead friends across the room down a corridor.,gold0-orig,pos,unl,unl,unl,pos,He walks away from them.,People\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9898,Someone studies the wand closely. He,holds it horizontally in both hands.,finds someone alone beneath the branching's map.,scrapes the red stone from his face.,removes the blade from bringing it to his eye.,\"angrily turns away as he lowers his gaze, leaving it off with a shield.\",gold1-orig,pos,unl,unl,unl,pos,Someone studies the wand closely.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9901,\"He flings both parts off the bridge, into the chasm below. Once again he\",\"nods to himself, then turns to the others, before jumping down onto the bridge.\",fills the wreckage with the structure.,starts to jog under the water.,waits with the water and lands heavily on the sand in front of him.,,gold0-orig,pos,unl,unl,unl,n/a,\"He flings both parts off the bridge, into the chasm below.\",Once again he\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9909,\"She looks down and takes someone's hand. The ruined school behind them, they\",stand on the rubble - strewn bridge and gaze ahead.,\"applies rivers with close maize, left on.\",stroll into the darkness.,zoom out of view.,walk a profile around each section.,gold0-orig,pos,unl,unl,unl,unl,She looks down and takes someone's hand.,\"The ruined school behind them, they\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9908,Someone follows her and stands on her other side. She,looks down and takes someone's hand.,\"saunters across the dining table toward someone, and his wife grins.\",twists the shimmies in one of someone's gloved hands.,stares at the big bird.,follows the man to the other bedroom.,gold1-orig,pos,unl,unl,unl,unl,Someone follows her and stands on her other side.,She\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9904,People turn to watch him. He,glances back at them.,throws two pens at him.,\"backs away, then faces with her neighbor.\",\"picks up a ball, then tosses it aside.\",is standing in the dining room.,gold0-orig,pos,unl,unl,pos,pos,People turn to watch him.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9905,He glances back at them. Someone,strides up to someone and takes his hand.,throws the faint into his light.,lifts his silver - colored shotgun.,enters the meeting room and steps out of the corridor.,glances over his shoulder.,gold0-orig,pos,unl,unl,unl,pos,He glances back at them.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9906,Someone strides up to someone and takes his hand. She,looks at him admiringly.,looks on the mirror anxiously.,jerks a foot away.,picks up several glasses of wine.,,gold0-orig,pos,unl,unl,unl,n/a,Someone strides up to someone and takes his hand.,She\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9902,\"Once again he nods to himself, then turns to the others, before jumping down onto the bridge. He\",walks away from them.,turns them to go in.,gets up and walks out.,wanders off to meet his distant gaze.,looks up the road and sees people riding along with someone.,gold1-reannot,pos,unl,unl,unl,unl,\"Once again he nods to himself, then turns to the others, before jumping down onto the bridge.\",He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100485,9900,Someone snaps the wand in two. He,\"flings both parts off the bridge, into the chasm below.\",\"thrusts his sword upward, trying to hit someone against his bullwhip.\",turns on the light.,posts a tracing sheet.,glances back at someone.,gold0-reannot,pos,unl,unl,unl,pos,Someone snaps the wand in two.,He\nanetv_EuIBTFqVOt8,9931,Two men are shown performing an arm wrestling match with many watching on the sidelines and a ref calling who the winner is. Several more men,battle back and fourth with one another and more people stepping in and out of frame to watch.,are shown grabbing your gun while the referee is also cheering and fighting around one another.,are shown fighting around themselves and fighting with each other to the end and attempts to roll past one another.,and horses are shown clapping the guys arm in their hands.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are shown performing an arm wrestling match with many watching on the sidelines and a ref calling who the winner is.,Several more men\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13565,Someone eats edamame beans and sushi at the desk in his office. He,\"tries to ignore someone, who's tapping a notebook with a pen.\",\"approaches to a bed hidden, pauses before the photo, and lies in a heap.\",notices someone massive map taped around them.,enters the living room.,,gold0-orig,pos,unl,unl,unl,n/a,Someone eats edamame beans and sushi at the desk in his office.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13563,He prods someone's arm. Someone,rises from his seat at the head of the table and walks out.,\"scoots over her laptop, holds him close, then zips up his dress.\",steadies his winnings near someone's huge window.,leg hits her nose and elbows her.,face her hungrily.,gold0-orig,pos,unl,unl,unl,unl,He prods someone's arm.,Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73185,13564,Someone rises from his seat at the head of the table and walks out. Someone,raises a palm to someone.,is standing by an oncoming car.,shuffles back in a bathrobe.,runs to him and touches her arm.,averts her gaze and eyes her reflection in the mirror.,gold1-reannot,pos,unl,unl,pos,pos,Someone rises from his seat at the head of the table and walks out.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60169,10096,\"Someone busily tries to stuff more and more things into his already full pack. pots and pans, blankets, cooking utensils, provisions, clothes. Someone\",\"looks up, startled.\",\"lifts the door over his head, kicking it into pieces.\",paces as he stabs him with his wand.,skulks up past the thickly packed walls of a house.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone busily tries to stuff more and more things into his already full pack. pots and pans, blankets, cooking utensils, provisions, clothes.\",Someone\nanetv_2mVwrM0qOGw,8092,Man is standing in a room holding a bow and talking to another man. manis,practicing shots with a bow to a board in a large field.,keeps making huge jump in place.,hold a brown bow and put it while the camera gains across the horse.,throws the knife on the ground.,walking down the top of the stairs in the middle of stage.,gold0-orig,pos,unl,unl,unl,unl,Man is standing in a room holding a bow and talking to another man.,manis\nanetv_jW1isCO6MYk,17287,A young child is seen holding onto a set of monkey bars with an adult in front of her. The man then,helps her climb on the bars by holding onto her waist.,throws her down against the bars without looking away.,plays a set of bars on the bars.,swings all around a bags and begins holding a log and moving the steps back and fourth.,,gold0-orig,pos,unl,unl,unl,n/a,A young child is seen holding onto a set of monkey bars with an adult in front of her.,The man then\nanetv_jW1isCO6MYk,6323,The young male hold the little girl's chest as she go through the monkey bar. The young boy,assisted the little girl as she go down the ladder.,is joined by two skateboarders practicing by moving his arms and legs to the rake.,watches and throws her arms over her face.,turns off with the boy.,,gold0-orig,pos,unl,unl,unl,n/a,The young male hold the little girl's chest as she go through the monkey bar.,The young boy\nanetv_mzxz0EQy1pY,8595,Several people seen riding kayaks around the pool as well as people swimming around and watching on the sidelines. The men,continue moving around in various angles as well as being shown swimming underwater and playing with one another.,go all around the yard as well as the various young people still riding their board.,are shown showing more shots of the man performing different steps with the person filming him.,continuously wrestle on the swing as well as do various stunts and other drone rides along the side as well as more performing.,\"hit the ball back and fourth to each other, hitting each other as well as moving in and out of frame.\",gold0-orig,pos,unl,unl,unl,pos,Several people seen riding kayaks around the pool as well as people swimming around and watching on the sidelines.,The men\nanetv_mzxz0EQy1pY,8594,A camera pans all around a heated pool and leads into a person climbing in a kayak and moving around the pool. Several people,seen riding kayaks around the pool as well as people swimming around and watching on the sidelines.,are seen playing a spoon and then in a pool dive by in the water while looking at the camera.,watch on the side as they swim and walk up in the air.,are seen sitting on the rowing boards as well as speaking in the water while the camera zooms to the side.,watch on the sides as more people are seen riding on a tube and performing for the camera.,gold0-orig,pos,unl,unl,pos,pos,A camera pans all around a heated pool and leads into a person climbing in a kayak and moving around the pool.,Several people\nlsmdc1012_Unbreakable-6839,5450,\"Dressed only in his shirt and trousers, someone looks around uncertainly. A white coated man carrying a clipboard, who has been standing by the other figure,\",walks towards someone and is replaced by other medical staff.,leaves them to dinner.,\"begins to walk past the elevator door, snout up.\",sits in her bed rumpled and sits up.,folds her hands clasped in front of her.,gold0-orig,pos,unl,unl,unl,unl,\"Dressed only in his shirt and trousers, someone looks around uncertainly.\",\"A white coated man carrying a clipboard, who has been standing by the other figure,\"\nlsmdc1012_Unbreakable-6839,5449,\"Someone slowly swings his legs over the side of a hospital trolley and sits up. In front of him, a white bandaged figure\",is lying on another trolley.,sits by a machine chair.,carries a rifle up the grass.,\"sits at his knee, his arms wrapped around his torso.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone slowly swings his legs over the side of a hospital trolley and sits up.,\"In front of him, a white bandaged figure\"\nlsmdc1012_Unbreakable-6839,5453,He examines someone's eyes. Someone,stares at the other trolley.,approaches a cabinet mounted with small hoses.,takes the lanes bravely and chews on the sticks.,leans to someone's son.,,gold0-reannot,pos,unl,unl,unl,n/a,He examines someone's eyes.,Someone\nlsmdc1012_Unbreakable-6839,5451,\"A white coated man carrying a clipboard, who has been standing by the other figure, walks towards someone and is replaced by other medical staff. He\",holds up a torch.,has her ear to one of the two german policemen.,\"is being pushed to his desk by the pew, a neatly - wrapped book in a book.\",cuts away four other rooms.,adjusts the ingredient on the log.,gold1-reannot,pos,unl,unl,unl,unl,\"A white coated man carrying a clipboard, who has been standing by the other figure, walks towards someone and is replaced by other medical staff.\",He\nlsmdc1012_Unbreakable-6839,5452,He holds up a torch. He,examines someone's eyes.,stirs the next light.,adds a second paper torch the syringe of the gun.,takes his ax out of the ax.,starts playing the keys on the table.,gold0-reannot,pos,unl,unl,unl,unl,He holds up a torch.,He\nlsmdc3053_PARENTAL_GUIDANCE-25811,14962,\"The couple's eyes widen. At home, someone\",searches a digital jukebox.,\"glares at his dresser, then faces the circle on the banker downstairs.\",sits with his mom in his white surfboards with a soldier in his arms.,mouths his cell phone.,practices 7 - five.,gold1-reannot,pos,unl,unl,unl,unl,The couple's eyes widen.,\"At home, someone\"\nanetv_b3mJ5rPzDv8,10454,An intro leads into an older man with a handlebar mustache speaking to the camera while his name and business is captioned on the side. He,continues speaking to the camera with conviction and ends with his business and phone number posted across his face.,continues knocking off the window as more shots continue to play and the men continue showing the cards.,is seen cutting up more and cutting down guys.,introduces the two and enters with a conductor.,,gold0-orig,pos,unl,unl,pos,n/a,An intro leads into an older man with a handlebar mustache speaking to the camera while his name and business is captioned on the side.,He\nanetv_b3mJ5rPzDv8,6009,\"A guy that is sitting, speaks. The clip flips, and the guy\",is closer to the camera.,leaves it and speaks.,does his own trick in the kitchen.,heads up some steps.,,gold1-orig,pos,unl,unl,unl,n/a,\"A guy that is sitting, speaks.\",\"The clip flips, and the guy\"\nanetv_b3mJ5rPzDv8,6010,The phone number and credits associated with the clip are shown. The guy,stops talking and looks straight at the camera.,drops on the course and ends by ending.,welds the welding pattern.,applies the liquid to a smaller one with orange and white balls.,,gold0-orig,pos,unl,unl,unl,n/a,The phone number and credits associated with the clip are shown.,The guy\nlsmdc3023_DISTRICT_9-11262,9154,\"The levitating rocks and someone plummet downward. In the module, someone's son\",watches lights blink on throughout the interior.,are having a huge argument.,drops his weapon and heads up the dragon's high carving.,drops the young girl in the dirt restroom.,sharpens a tall cloth rot on the breeze.,gold0-orig,pos,unl,unl,unl,unl,The levitating rocks and someone plummet downward.,\"In the module, someone's son\"\nlsmdc3023_DISTRICT_9-11262,9149,\"Hundreds of feet above, the command module continues its steady ascent. Inside, someone's son\",\"clings to him, gazing upward.\",sits in a white cot.,\"lies in his bed, scattering manuscripts.\",is dragged by a sidewalk in front of the flood formation.,,gold0-orig,pos,unl,unl,unl,n/a,\"Hundreds of feet above, the command module continues its steady ascent.\",\"Inside, someone's son\"\nlsmdc3023_DISTRICT_9-11262,9150,\"The machine sinks down, and black fluid pours. Someone\",stares dully as the main components around him part.,stops in front of his hut and peers out the window on the tunnel area.,see the distant black screen and a liquid on a person like rolling surface.,walks beside her and stares down.,,gold0-orig,pos,unl,unl,pos,n/a,\"The machine sinks down, and black fluid pours.\",Someone\nlsmdc3023_DISTRICT_9-11262,9151,Someone stares dully as the main components around him part. The robot,topples backward and lies motionless.,opens the window as the water billows out.,turns toward her then removes them.,scales a circular grate on the floor.,mounts an electrical propeller.,gold0-orig,pos,unl,unl,unl,unl,Someone stares dully as the main components around him part.,The robot\nlsmdc3023_DISTRICT_9-11262,9152,The robot topples backward and lies motionless. Someone,unsteadily pushes himself up on his elbows.,holds up a binder.,\"elbows someone and bounces him with his chest, then removes beneath the surface.\",finds the creature's body and moves in.,,gold1-orig,pos,unl,unl,unl,n/a,The robot topples backward and lies motionless.,Someone\nlsmdc3023_DISTRICT_9-11262,9153,\"Someone unsteadily pushes himself up on his elbows. On his belly, someone\",continues doggedly through a patch of yellow weeds.,is seated at the desk.,runs from the alter.,resumes his violence.,steps between his cheer dancing.,gold0-reannot,pos,unl,unl,unl,unl,Someone unsteadily pushes himself up on his elbows.,\"On his belly, someone\"\nanetv_KNpeiKm3xyM,4380,One of the players hits the ball to his opponent by punching it with his fist. Another player,returns the ball by kicking it across the net.,holds a net in front of him and the hits him in the head.,hits the white ball that is made out of the goal.,throws it into a car.,,gold0-orig,pos,unl,unl,pos,n/a,One of the players hits the ball to his opponent by punching it with his fist.,Another player\nanetv_KNpeiKm3xyM,4378,A group photograph of a many people of different age groups is shown. There,are some people playing beach volley ball in the sand on a sunny day with several people watching them.,dogs are seen playing a game of soccer with one another.,\", they go playing a game of martial pong at one game.\",are a fish aquarium and a container of snow.,moves a boy and puts an arm in a sling.,gold0-orig,pos,unl,unl,unl,unl,A group photograph of a many people of different age groups is shown.,There\nanetv_KNpeiKm3xyM,4379,There are some people playing beach volley ball in the sand on a sunny day with several people watching them. One of the players,hits the ball to his opponent by punching it with his fist.,runs and herded into the field with a person in a high jacket t - shirt behind the opponent.,deals a person out.,fall down to the floor as soccer players take their shots.,throws a stick into a goal and points to one end of the field.,gold0-orig,pos,unl,unl,unl,unl,There are some people playing beach volley ball in the sand on a sunny day with several people watching them.,One of the players\nanetv_KNpeiKm3xyM,4381,Another player returns the ball by kicking it across the net. The players,continue playing the game by punching the ball across the net.,cheer and throw swords again.,retract the blocks and score a point.,put on their hands while one of the team hits the ball to make a goal.,throw the game into teams.,gold1-orig,unl,unl,unl,unl,unl,Another player returns the ball by kicking it across the net.,The players\nanetv_1nXLVjfupto,1404,Two men are seen standing behind a table speaking to the camera and then hold up various objects to the camera. They,use tools on a tin can and then are seen sitting outside holding up more tools.,take off one bike while holding the objects and laughing and speaking to the camera.,push two boys on the bar showing how to make a drink.,continues to brush the hair as well as showing off various accordions.,continue throwing more balls out the pins.,gold0-reannot,pos,unl,unl,unl,unl,Two men are seen standing behind a table speaking to the camera and then hold up various objects to the camera.,They\nanetv_D707ZMWH7jQ,5703,\"A man in a red shirt begins talking in front of a wall of tool consisting of wrench, screws, ax and drills. He then\",holds up a small silver piece and begins sticking it into the chain of the bike.,solves the cube in various rupee and shows off the bike model material.,holds a push and put croquet across the ground.,opens the wood of the top of his ladder and the camera is inside.,,gold1-orig,pos,unl,unl,unl,n/a,\"A man in a red shirt begins talking in front of a wall of tool consisting of wrench, screws, ax and drills.\",He then\nanetv_D707ZMWH7jQ,5704,\"He then holds up a small silver piece and begins sticking it into the chain of the bike. Next, he\",\"takes a black utensil, moves the pedals around and takes the chain completely off.\",sits back in the machine and attempts to move his body next to the iron.,\"picks it up out of the container, picks up a small piece of leather.\",sets back on the land tire and removes the sides of the wall to remove it properly.,,gold0-orig,pos,unl,unl,unl,n/a,He then holds up a small silver piece and begins sticking it into the chain of the bike.,\"Next, he\"\nanetv_D707ZMWH7jQ,5705,\"Next, he takes a black utensil, moves the pedals around and takes the chain completely off. He then\",takes a box with a new chain in it and puts it back on the bike and begins tightening the chain.,uses a measuring tool to rub the tire over the surface with the tool board in slow motion.,prepares for the appliance as he types the subway.,continues cutting on and begins clipping cut specs with a large hole.,puts the stick outside and starts fast again.,gold1-orig,pos,unl,unl,unl,unl,\"Next, he takes a black utensil, moves the pedals around and takes the chain completely off.\",He then\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10904,Someone gazes into her dark eyes. Their lips,meet in a gentle kiss.,meet in a tight embrace.,smile at each other.,meet in a quick kiss.,spread into a smile.,gold1-orig,pos,pos,pos,pos,pos,Someone gazes into her dark eyes.,Their lips\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10903,Someone looks up as something green and white appears above their heads. Someone,gazes into her dark eyes.,stands on the wet yard and runs out of a landing.,takes his arm and heads off.,joins the red - cloaked figure.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone looks up as something green and white appears above their heads.,Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95012,10901,People leave the Room of Requirement. Someone,joins someone in front of the mirror.,looks at the scrapbook on the desk.,place a hand in each.,is about to keep them from his brother son in other girls.,walks by quick out of the back door.,gold0-reannot,pos,unl,unl,unl,pos,People leave the Room of Requirement.,Someone\nanetv__Yt94ffXcCE,11909,\"A boy welds a piece of metal in an indoor shop while wearing a protective coat, helmet, goggles and gloves. A boy in a shop\",talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld.,stands and sits on the ice with something in hand.,shows some of how to clean the ground's body with a paper towel.,demonstrates how to make heat by using a rowing machine.,kneels behind the camera and gives form a layer of ski lying on the ground.,gold0-orig,pos,unl,unl,unl,unl,\"A boy welds a piece of metal in an indoor shop while wearing a protective coat, helmet, goggles and gloves.\",A boy in a shop\nanetv__Yt94ffXcCE,11910,A boy in a shop talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld. The boy,begins to weld creating extreme sparks of fire like reactions in front of him over the material being welded.,\"removes a helmet and adjusts the wax on straight line, moves it in between lifts and touches it.\",sits inside a body and welds a long metal hammer until the corner of an arc wins cover over a tanker.,pulls two polish in a workshop and uses the tool to place a piece of wood onto an open block.,appears by holding a weld necktie as a large city is shown with japanese domes glancing around him.,gold0-orig,pos,unl,unl,unl,unl,A boy in a shop talks to the camera while standing in front of a piece of metal and handling welding tools in preparation to weld.,The boy\nlsmdc0021_Rear_Window-58349,14326,Someone realizes she is getting nowhere. We,see someone's hand coming to the foreground with a restraining gesture.,see her doing a bit of him in the park.,struggles to grab someone.,is several quirks in someone's attitude.,are at the door.,gold0-orig,pos,unl,unl,unl,unl,Someone realizes she is getting nowhere.,We\nlsmdc0021_Rear_Window-58349,14327,\"Someone, still looking out into the room, and without turning, says. She\",\"turns at last, and looks across at him.\",walks out of the passageway.,makes her way to a railing inside the short apartment.,sits up the wall clock -.,closes her mouth in pain.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, still looking out into the room, and without turning, says.\",She\nlsmdc0021_Rear_Window-58349,14323,\"After a moment of silence, someone says earnestly. Someone\",\"says, as if remembering some old experience.\",smiles at someone stomps off with it.,stops as a giant punch sends him sprawling.,sweeps an image off someone's neck.,is stabbing an arrow.,gold1-orig,pos,unl,unl,unl,unl,\"After a moment of silence, someone says earnestly.\",Someone\nlsmdc0021_Rear_Window-58349,14325,\"Someone turns on her side, and stares into the room, angrily. Someone\",realizes she is getting nowhere.,presses her back to the window hanging in the shed.,emerges from under her pillow.,\"smiles, fights back tears.\",turns and goes in his pocket.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone turns on her side, and stares into the room, angrily.\",Someone\nlsmdc0021_Rear_Window-58349,14324,\"Someone says, as if remembering some old experience. Someone\",\"turns on her side, and stares into the room, angrily.\",sits atop the bed next to her.,watches that someone is watching.,does the same thing.,stares down at someone and gets out of the car.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone says, as if remembering some old experience.\",Someone\nanetv_QE80ROTC_fI,15558,A man and dog are seen standing outside in a field with a man playing fetch with a dog. The man,throws the frisbee around with the dog while the animal brings it back.,pulls in the rope and swings the back around the dog as attached to another boat.,continues doing tricks with the frisbees the dog jumps off of their equipment.,jumps onto the another while the dog.,continues showing the dogs while people watch and watch.,gold0-orig,pos,unl,unl,unl,unl,A man and dog are seen standing outside in a field with a man playing fetch with a dog.,The man\nanetv_QE80ROTC_fI,15559,The man throws the frisbee around with the dog while the animal brings it back. The man,performs several more tricks with the dog using several frisbees.,loses the dog and throws it onto a stage to a stage.,continues out swinging back and fourth after all and beating the dog back and fourth.,continues playing while the dog attempts to turn and fetch the frisbee.,,gold0-orig,pos,unl,unl,pos,n/a,The man throws the frisbee around with the dog while the animal brings it back.,The man\nlsmdc3062_SORCERERS_APPRENTICE-30834,15624,He gives the floor a scuffing kick. He,grabs someone by the collar.,\", someone runs along the track and lands in a sand cage at an airport, forcing his brother onto the ground.\",\"tries to run, but the ball smacks him in the groin.\",charges and gathers up more than the rest.,\"hurries back, leaving someone standing alone on the porch and looks out.\",gold1-orig,pos,unl,unl,unl,pos,He gives the floor a scuffing kick.,He\nlsmdc3062_SORCERERS_APPRENTICE-30834,15623,\"Later in a men's room, someone approaches him. He\",gives the floor a scuffing kick.,peeks at the distracted someone.,looks from someone to the carnies.,follows the receptionist to the desk.,stares at his white in amused amusement.,gold0-reannot,pos,unl,unl,unl,unl,\"Later in a men's room, someone approaches him.\",He\nanetv_62Dwj4l7_qs,11511,More and more people continuously lift weights above their shoulders and heads while a man coaches them on the side. Several people,are seen in the end performing stretches and looking around with one man helping another in the end.,are cheering in the other.,are shown sailing along the fond public stadium.,perform another routine that lead into a group of dancers in a slow motion environment followed by more names of different angles.,take weights and cheer while jumping.,gold0-orig,pos,unl,unl,unl,unl,More and more people continuously lift weights above their shoulders and heads while a man coaches them on the side.,Several people\nanetv_62Dwj4l7_qs,11510,A large group of people are seen sitting around a gym with many seen on the side lifting weights over their heads. More and more people,continuously lift weights above their shoulders and heads while a man coaches them on the side.,are shown throwing an object off into the distance.,are seen walking backwards with one another while people watch on the side.,are seen stepping around on the other side followed by the person interviewing other women.,,gold0-orig,pos,unl,pos,pos,n/a,A large group of people are seen sitting around a gym with many seen on the side lifting weights over their heads.,More and more people\nanetv_62Dwj4l7_qs,18709,The woman lifted the barbel as the coach is watching. The man in white shirt,\"lifted the barbel, paused on his chest and let go.\",falls to the floor.,walked away from the baby and kick his leg while talking.,threw the single pole on the floor.,raise the foot of the large balance beam.,gold1-orig,pos,unl,unl,unl,unl,The woman lifted the barbel as the coach is watching.,The man in white shirt\nanetv_62Dwj4l7_qs,18708,The woman in blue shirt lifted the barbel and put it down. The woman,lifted the barbel as the coach is watching.,\"climbs the bench and began spinning on the kicks, wooden bench.\",walked on the the track and walked to the ground.,walked across the stool and started doing the job.,,gold0-reannot,pos,unl,unl,unl,n/a,The woman in blue shirt lifted the barbel and put it down.,The woman\nanetv_62Dwj4l7_qs,18710,\"The man in white shirt lifted the barbel, paused on his chest and let go. The man in green shirt\",lifted the barbel and put it down and then try again.,\"chaotic held there for the man to see - ahead man constantly, smooth it out.\",drop the sand ball into a net.,puts kneeling few sections to one side hold hands that he was controlling.,threw the frisbee to the second man in the orange shirt.,gold0-reannot,pos,unl,unl,unl,unl,\"The man in white shirt lifted the barbel, paused on his chest and let go.\",The man in green shirt\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7124,Someone joins her in the singing as they proceed down the street. They,have stopped walking and now face one another.,'re in the corner of an apartment building.,\"are all milling around on bicycles, bouncing and kicking.\",\"look, and reach the end of a brotherly kiss.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone joins her in the singing as they proceed down the street.,They\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7104,Some are so engrossed in dancing they continue at top speed. Teachers and elders,start to scurry off.,are being cast in patterned blankets.,play using big strokes to get them going around and forcing if a can to enter.,are individually out singing and dancing that running side the end.,are keeping hello through the huddle of office buildings.,gold0-orig,pos,unl,unl,unl,unl,Some are so engrossed in dancing they continue at top speed.,Teachers and elders\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7111,As they near the camera we hear them singing. Camera,moves with them as they proceed down the street.,\"closes the door, and there's separate red little balls that hang on this front of the mob.\",takes a topcoat from the tower.,turns off the tv.,keeps counting the coins.,gold0-orig,pos,unl,unl,unl,unl,As they near the camera we hear them singing.,Camera\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7122,\"She finally stoops down and picks up a rock, weighting it in her hand. Someone throws her rock, and once more we\",hear the sound of breaking glass.,see three of the rafters in the sand.,are knocked back in the bay.,see the couple falling away.,,gold0-orig,pos,unl,unl,pos,n/a,\"She finally stoops down and picks up a rock, weighting it in her hand.\",\"Someone throws her rock, and once more we\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7115,\"In his confusion someone steps on the end of the belt of someone's bath robe, which is trailing along behind her. She\",gathers the robe around her.,watches with an admiring stare.,tries to work on a lip - gloss and its dark out.,gazes out across the wintry landscape.,\"reaches the front of a locked cupboard, pulls her hand away, and removes her hand to the open door.\",gold0-orig,pos,unl,unl,unl,unl,\"In his confusion someone steps on the end of the belt of someone's bath robe, which is trailing along behind her.\",She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7106,\"People are so busy dancing they don't notice the floor opening. As the floor opens, it\",\"reveals an attractive, lighted swimming pool.\",is hard on a cuff.,finds a layer of painted furniture floor and cabinets.,applies its right foot and twists it.,closes through the door.,gold0-orig,pos,unl,unl,unl,unl,People are so busy dancing they don't notice the floor opening.,\"As the floor opens, it\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7116,She gathers the robe around her. He,picks up the belt and throws it over her arm.,\"looks from the mirror, flared and smiling as she hurries out, waving her arms over her head.\",sets it down on the base of the stair and she lights her performance.,\"loosens her neck and throws her to the ground, then turns away.\",\"throws her down the hall, pulling the curtain aside.\",gold0-orig,pos,unl,unl,unl,unl,She gathers the robe around her.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7108,\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order, finally clasps his hands like a diver and leaps in himself. The night\",is warm with a bright moon.,is a circular melody.,falls but finally the men kneel down.,rides very fast along the path.,,gold0-orig,pos,unl,unl,unl,n/a,\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order, finally clasps his hands like a diver and leaps in himself.\",The night\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7103,Dancers begin to scream as they try to get off. Some,are so engrossed in dancing they continue at top speed.,is heard for being extremely guarded by the master.,shows his father's grotesque ugly footprints between his sorrowful blue eyes.,are put on the crate on their heads.,\"introduction comes to them apparently nervous and scared, people are trying to get fun.\",gold0-orig,pos,unl,unl,unl,unl,Dancers begin to scream as they try to get off.,Some\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7120,We see a grumpy old man in shirt sleeves in a rocking chair on the porch. He,looks up as he hears the breaking glass.,dismounts from the bars and get on his bike.,\", shaking his head, puts down his nest comment like a thoughts.\",blows down the heavy slide then drops it on a bench on the sofa.,see a man standing and laying on the floor putting the wallpaper on the back.,gold0-orig,pos,unl,unl,unl,unl,We see a grumpy old man in shirt sleeves in a rocking chair on the porch.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7109,Someone is dressed in jersey sweater and oversize football pants that keep wanting to come down. Someone,is in an old white bath robe.,pushes his time the sheer button.,has to have no control.,\"ducks down, looking hiding.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone is dressed in jersey sweater and oversize football pants that keep wanting to come down.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7117,He picks up the belt and throws it over her arm. Someone looks after her; then,picks up a rock from the street.,slides at her glass.,hits herself with the butt of his pistol.,flings himself into a sling as the unconscious platoon slowly breaks away.,lifts the gun up slightly.,gold0-orig,pos,unl,unl,unl,unl,He picks up the belt and throws it over her arm.,Someone looks after her; then\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7119,Someone hurls the rock at the house. We,see a grumpy old man in shirt sleeves in a rocking chair on the porch.,\"up the chimney, he comes down a hill.\",finds a wooden stick.,eyes someone and someone recedes from the veranda past the fallen oak.,exchange little ones he takes a sip.,gold0-orig,pos,unl,unl,unl,unl,Someone hurls the rock at the house.,We\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7114,\"Someone, to cover his embarrassment, talks quickly on. In his confusion someone\",\"steps on the end of the belt of someone's bath robe, which is trailing along behind her.\",is dressed gingerly and does not standards correctly own him.,starts to walk up the stairs among the people in front of him.,tensely frowns and takes it with a steward towards the entrance.,squeezes his eyes shut.,gold0-orig,pos,unl,pos,pos,pos,\"Someone, to cover his embarrassment, talks quickly on.\",In his confusion someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7121,\"He looks up as he hears the breaking glass. As he talks, someone\",has been listening intently.,'s prowls in bed.,is sweating with frustration.,wrinkles her face.,,gold0-orig,pos,unl,pos,pos,n/a,He looks up as he hears the breaking glass.,\"As he talks, someone\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7113,He takes the bundle of clothes from someone. They,stop and look at each other.,\"stand at the end of the steps and stop beside someone, hanging the back of her skirt.\",\"looks up to someone, whom lies in his hands, as he looks at the camera.\",backs out with a faint smile as they reach the porch.,,gold0-orig,pos,unl,unl,pos,n/a,He takes the bundle of clothes from someone.,They\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7118,Someone looks after her; then picks up a rock from the street. Someone,hurls the rock at the house.,\"is sitting in front of the couch, knitting her shawl.\",rolls up the window with a half - smile.,\"turns someone's head on, and allows someone to faint.\",pushes the door shut behind them.,gold0-orig,pos,unl,unl,unl,unl,Someone looks after her; then picks up a rock from the street.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7107,\"They move backwards until finally they reach the edge of the floor and fall into the pool below. People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order,\",finally clasps his hands like a diver and leaps in himself.,\"grab the rope, grab it and grab down the creature fall and jump.\",begin to crowd again and catch it.,\"exposing the glass in their hands, forcing a fiery pitcher to a pile of nature.\",shooting into alarmed meeting in the mud of the pool.,gold0-reannot,pos,unl,unl,unl,unl,They move backwards until finally they reach the edge of the floor and fall into the pool below.,\"People still trying to dance in the water the crowd on the edge cheering them some of the crowd leap into the pool the principal trying to restore order,\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7105,They mistake the screams for cheers. People,are so busy dancing they don't notice the floor opening.,begin to play and resigned at everyone.,\"are both lying on the ground, waiting for them.\",look at the the forest below.,leap onto the water.,gold1-reannot,pos,unl,unl,pos,pos,They mistake the screams for cheers.,People\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7112,Camera moves with them as they proceed down the street. He,takes the bundle of clothes from someone.,have his arm around her for a big pushing effect.,moves over to the bed of someone's motorcycle.,stares at the mitt - - buffalo.,proudly walks in the foreground towards his room.,gold1-reannot,pos,unl,unl,unl,unl,Camera moves with them as they proceed down the street.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54458,7110,Someone is in an old white bath robe. Each,is carrying their wet clothes tied into a bundle that leaves a trail of dripping water.,laces is quickly removed.,\"comes seated beneath the edge of the chair, arm outstretched and knees.\",brings out her shoes.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone is in an old white bath robe.,Each\nanetv_Dx4LpX-X9JY,7311,Several people are gathering and talking to the camera. They,are at an outdoor event.,are playing a game of curling on a court.,crouch down on a platform in front of a large crowd.,are talking to the people and firing to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,Several people are gathering and talking to the camera.,They\nanetv_Dx4LpX-X9JY,4594,They are preparing to run a race. They,\"take off, running the marathon as a group.\",\"race to different times, then they run.\",race off numerous times on the track.,go out and jump over a mountain and sand holes in the sand and other people come into the c's too.,\"pull up bottle of clear cloth, about steps to get water for a full dive.\",gold1-orig,pos,unl,unl,unl,unl,They are preparing to run a race.,They\nanetv_Dx4LpX-X9JY,4593,A group of runners are gathered in the woods. They,are preparing to run a race.,are involved in a game of lacrosse.,are playing a game of tug of war.,engage in a game of arm wrestling.,\"sail in a city, parasailing at the pro sea.\",gold0-orig,pos,unl,unl,unl,unl,A group of runners are gathered in the woods.,They\nanetv_Dx4LpX-X9JY,7312,They are at an outdoor event. The people,engage in a foot race.,perform stunts and doing tricks.,are going down the river for a long time.,in the stadium are shoving into the crowd at the list trying to get scores.,continue walking and cheerleading while the other is out watching them in the area.,gold1-reannot,pos,unl,unl,unl,unl,They are at an outdoor event.,The people\nlsmdc3077_THE_VOW-35576,9308,\"Her gaze anguished, someone shuts her eyes. Someone\",gets up and leaves the room.,sadly wipes his eyes.,watches as the leeds players rolls off of the line.,wraps his arm around her son.,,gold1-orig,pos,unl,unl,pos,n/a,\"Her gaze anguished, someone shuts her eyes.\",Someone\nlsmdc3077_THE_VOW-35576,9321,Someone sits at a place setting. Someone,nods and sets down a newspaper.,responds with a scissor expression.,\"watches the teen, wide - eyed and walks into the front passenger area.\",\"sits on a bench, facing a makeup mirror.\",walks through a doorway wearing a large apron over her head and hair.,gold0-orig,pos,unl,unl,pos,pos,Someone sits at a place setting.,Someone\nlsmdc3077_THE_VOW-35576,9320,\"Someone notices fresh fruit, coffee, and French toast on the island. Someone\",sits at a place setting.,listens with a considerable journalist.,sets his other down.,\"finds his glasses, and starts to inspect him with an extended hand.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone notices fresh fruit, coffee, and French toast on the island.\",Someone\nlsmdc3077_THE_VOW-35576,9324,Someone stares at the bacon. She,sets it down and picks bacon bits off her tongue.,takes a dogs stem out of the drawer and places it into the slices.,wipes out her nose and glances at him with surprise in her eyes.,\"nods in approval, and takes the syringe.\",averts her silent gaze.,gold0-orig,pos,unl,unl,unl,unl,Someone stares at the bacon.,She\nlsmdc3077_THE_VOW-35576,9312,\"She props her chin on her fist. An artfully made, queen sized bed\",lies unoccupied behind her.,sits up by the ceiling's artwork.,sits with four tall columns.,\"is installed, followed by people laying in bed.\",,gold0-orig,pos,unl,unl,unl,n/a,She props her chin on her fist.,\"An artfully made, queen sized bed\"\nlsmdc3077_THE_VOW-35576,9311,Someone remains at the dressing table. She,props her chin on her fist.,glances uneasily at the tree.,types in a sketchbook.,is a kung fu trainer seated at his desk.,,gold0-orig,pos,unl,unl,pos,n/a,Someone remains at the dressing table.,She\nlsmdc3077_THE_VOW-35576,9322,Someone nods and sets down a newspaper. Someone,bites his lip and stifles a boyish smile.,returns the spilled coffee and leans back in the vehicle.,\"looks to his father, sitting curled up at the lunch table by a twenty.\",removes a bag and sets down an earpiece.,leans across the window and starts to stack the notes.,gold1-orig,pos,unl,unl,pos,pos,Someone nods and sets down a newspaper.,Someone\nlsmdc3077_THE_VOW-35576,9318,\"Someone steps away from the mirror. On the living room couch, someone\",stirs groggily and wakes.,\"sits on the bed, ignoring he.\",wears his suit sunglasses and watches intently as the timekeeper.,\"clasped his late night cut, and she's on the phone.\",\"sits, eating his breakfast, fully spurts with his bed filling with something else in his pants.\",gold0-orig,pos,unl,unl,unl,unl,Someone steps away from the mirror.,\"On the living room couch, someone\"\nlsmdc3077_THE_VOW-35576,9323,As someone gets the coffee pot his wife bites into a strip of bacon. Someone,stares at the bacon.,puts the phone to the seat on the floor.,is on him with mussed hair.,reaches for the phone.,tosses him a candy.,gold0-orig,pos,unl,unl,pos,pos,As someone gets the coffee pot his wife bites into a strip of bacon.,Someone\nlsmdc3077_THE_VOW-35576,9313,\"An artfully made, queen sized bed lies unoccupied behind her. On the couch, someone\",stares off with a melancholy gaze.,hands a band to someone.,lies low on her chair.,climbs the staircase to someone's snuggles.,,gold0-orig,pos,unl,unl,unl,n/a,\"An artfully made, queen sized bed lies unoccupied behind her.\",\"On the couch, someone\"\nlsmdc3077_THE_VOW-35576,9316,Someone approaches in a towel and spies a photo of her tattooed back. She anxiously,locates the swirling crescent shaped fish tattoo on her actual back.,in his ear.,glances at the seeping then cocks her head and peers inside.,cocks her head then narrows her eyes.,,gold0-orig,pos,unl,unl,pos,n/a,Someone approaches in a towel and spies a photo of her tattooed back.,She anxiously\nlsmdc3077_THE_VOW-35576,9317,She anxiously locates the swirling crescent shaped fish tattoo on her actual back. Someone,steps away from the mirror.,stares into delightedly eyes.,\"sits a little vertical, her jaw clenched.\",attacks another fully exposed.,,gold0-orig,pos,unl,unl,unl,n/a,She anxiously locates the swirling crescent shaped fish tattoo on her actual back.,Someone\nlsmdc3077_THE_VOW-35576,9315,\"The frame of a much larger wall mirror is home to several more candids, lovingly tucked in place. Someone\",approaches in a towel and spies a photo of her tattooed back.,is seated on the porch with a thick chain collar around him.,\"approaches the brush, looking between his notes.\",put another paint into deep snow.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The frame of a much larger wall mirror is home to several more candids, lovingly tucked in place.\",Someone\nlsmdc3077_THE_VOW-35576,9309,\"Someone gets up and leaves the room. In the living room, a shirtless someone\",covers his bare feet with a nappy blanket and curls up beneath it on a couch.,tosses a pile of dirt across it.,picks up a large rope and tries to swing it from him.,puts the chair on his bedside table.,paints a fake booth with a green and rubber tooth.,gold1-reannot,pos,unl,unl,unl,unl,Someone gets up and leaves the room.,\"In the living room, a shirtless someone\"\nlsmdc3077_THE_VOW-35576,9319,\"On the living room couch, someone stirs groggily and wakes. He\",sits up and throws off the blanket.,minces around it is a dimly lit hall.,drops down on a couch.,pauses and joins in earbuds music with his dreamy eyes.,,gold0-reannot,pos,unl,unl,unl,n/a,\"On the living room couch, someone stirs groggily and wakes.\",He\nlsmdc3019_COLOMBIANA-8922,16836,Someone reads a note written in a sketchbook. She,slides off her jacket and falls back on his bed.,reappears mashing a doubt providing a letter.,enters her apartment video frowning with students.,watches as someone stares at her beams up at a priest's portrait.,chases the stranger across the field.,gold0-orig,pos,unl,unl,unl,unl,Someone reads a note written in a sketchbook.,She\nlsmdc3019_COLOMBIANA-8922,16834,\"Later, she enters someone's apartment. A drop cloth\",covers half of the canvas.,lies on her mother's heart.,covers the next room.,is delivered.,hangs on the wall around her.,gold0-orig,pos,unl,unl,unl,pos,\"Later, she enters someone's apartment.\",A drop cloth\nlsmdc3019_COLOMBIANA-8922,16839,\"Two clips show someone at the police station, her face obscured. Agent someone\",hits a command on his computer then sips from a travel mug.,watches her mother fondly.,fights to regain her composure.,hikes along a darkening wintry road outside.,,gold1-orig,pos,unl,unl,unl,n/a,\"Two clips show someone at the police station, her face obscured.\",Agent someone\nlsmdc3019_COLOMBIANA-8922,16835,A drop cloth covers half of the canvas. Someone,reads a note written in a sketchbook.,rips a sheet of scrap paper paper with heart and a heart.,slips down and closes the lid on the box.,stares at the handkerchief.,sees someone crouching on a gurney as he takes out a slip of yellow tape.,gold1-orig,pos,unl,unl,pos,pos,A drop cloth covers half of the canvas.,Someone\nlsmdc3019_COLOMBIANA-8922,16837,She slides off her jacket and falls back on his bed. She,\"turns on to her side, adjusting the pillow under her head.\",\"hands someone her shoes, then falls straight into the ground.\",lands on her back and roars past someone.,\"escapes, shutting the door behind her.\",grabs the doorknob with both hands and pushes us both in and pulls her at the table.,gold0-orig,pos,unl,unl,unl,unl,She slides off her jacket and falls back on his bed.,She\nlsmdc3019_COLOMBIANA-8922,16832,\"Now someone descends a staircase from a train platform. As a man passes, she\",\"bows her head, letting her hair shield her face.\",spots an outdoor hillside.,stops beside her father and raises her hands.,plucks a large shopping bag off the mohawked man's shoulder.,\"takes a long leap into the air, swings it, and hails it.\",gold1-orig,pos,unl,unl,unl,unl,Now someone descends a staircase from a train platform.,\"As a man passes, she\"\nlsmdc3019_COLOMBIANA-8922,16838,\"Lifting it to her face, she smells it. Two clips\",\"show someone at the police station, her face obscured.\",of month ribbons fly in her direction.,her glasses from her pocket.,from outside in burning barn.,crests the line in his expression.,gold0-reannot,pos,unl,unl,unl,unl,\"Lifting it to her face, she smells it.\",Two clips\nlsmdc3019_COLOMBIANA-8922,16833,\"As a man passes, she bows her head, letting her hair shield her face. Later, she\",enters someone's apartment.,enters with a twelve inch flat needle.,speaks to the boy as she walks past a modest baby and an exquisite puritan girl.,unhappily slides the paddy laps in the bin.,lands on the floor below.,gold1-reannot,pos,unl,unl,unl,pos,\"As a man passes, she bows her head, letting her hair shield her face.\",\"Later, she\"\nlsmdc3019_COLOMBIANA-8922,16831,He climbs into the front passenger seat. Now someone,descends a staircase from a train platform.,watches as his baseball teen races away from survivors.,walks up a bank of snowy steps and gives him a big hug.,playfully taps his ankle on the shoulder over the deck.,arrives in her apartment complex.,gold1-reannot,pos,unl,unl,unl,pos,He climbs into the front passenger seat.,Now someone\nanetv_c8GFfLcwFrE,15341,The water and the sky is red. Several people,are surfing on the water.,jump and do tricks on the terrain.,are seen standing around a sandy pit with one person sitting on the far sand.,are walking and skiing.,,gold0-orig,pos,unl,unl,pos,n/a,The water and the sky is red.,Several people\nlsmdc3084_TOOTH_FAIRY-39601,14464,\"Someone blinks helplessly as lights glimmer on his frightened face. Now, in his pretty dress, someone\",stands in a grand hall.,leans over a toilet and punches over.,faces the vanger mulling.,sits on a couch.,\"stands completely on the street, then squints toward a security sign in front of him.\",gold0-orig,pos,unl,unl,unl,pos,Someone blinks helplessly as lights glimmer on his frightened face.,\"Now, in his pretty dress, someone\"\nlsmdc3084_TOOTH_FAIRY-39601,14460,\"Someone sits up on the edge of his bed, flips on a lamp, and reads the summons. As he chuckles, a pair of fluffy - edged wings\",spread open on his back.,fall into a chandelier above him.,fill a waitress beside him.,emerge from the side of her left hand above her sailing puppet.,appear on either side of the table and sits down at the couple's feet.,gold1-orig,pos,unl,unl,unl,unl,\"Someone sits up on the edge of his bed, flips on a lamp, and reads the summons.\",\"As he chuckles, a pair of fluffy - edged wings\"\nlsmdc3084_TOOTH_FAIRY-39601,14467,Someone watches a flying female collect files from office worker fairies. She,flies up to a map of the world and touches her wand to a location over eastern europe.,\"puts the grateful potato into her pack, before polishing off the plates for plastic.\",\"replies, dashing roughly at home.\",spots a news vendor in the relay terminal passing through a thick metal barrier.,points to the footboard of her friend's chair.,gold0-orig,pos,unl,unl,unl,pos,Someone watches a flying female collect files from office worker fairies.,She\nlsmdc3084_TOOTH_FAIRY-39601,14465,\"Now, in his pretty dress, someone stands in a grand hall. Male and female fairies\",\"pass by, some with wings, some without.\",approaches a building set with a historic appointed cafeteria set.,walk to the back of the cart to get up.,walk several paces behind them.,sit down watching him with her arms folded.,gold0-orig,pos,unl,unl,unl,pos,\"Now, in his pretty dress, someone stands in a grand hall.\",Male and female fairies\nlsmdc3084_TOOTH_FAIRY-39601,14455,\"The woman kisses her cheek, then glares at someone. She\",hands him his jacket.,\"lowers the barrel of the gun, then puts his hand in his waistband.\",smiles and kisses him.,kisses someone's cheek.,shifts her eyes as he enters the front office.,gold1-orig,pos,unl,pos,pos,pos,\"The woman kisses her cheek, then glares at someone.\",She\nlsmdc3084_TOOTH_FAIRY-39601,14458,He rolls onto his back. He,stirs under the covers and rolls onto his stomach.,seizes him in a hug.,places his elbows on his knees.,grabs his shoulder as he tries to open the door.,braces herself and wraps his arms around him.,gold1-orig,pos,unl,unl,unl,unl,He rolls onto his back.,He\nlsmdc3084_TOOTH_FAIRY-39601,14453,Her mom holds up a dollar. Someone,smiles and hugs her mother.,lifts it to her nostrils.,slaps her very hard.,pulls out a hoodie and opens the box door.,,gold0-orig,pos,unl,unl,unl,n/a,Her mom holds up a dollar.,Someone\nlsmdc3084_TOOTH_FAIRY-39601,14463,\"Someone looks up, peering through a seemingly endless funnel of energy. Someone\",blinks helplessly as lights glimmer on his frightened face.,\"exits the stage, picks up his foot, and leaps onto a wall.\",grabs someone's wand.,runs through plumes of smoke dancing beneath a chain - link fence.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone looks up, peering through a seemingly endless funnel of energy.\",Someone\nlsmdc3084_TOOTH_FAIRY-39601,14466,A female fairy flies overhead. Someone,watches a flying female collect files from office worker fairies.,heads towards the other side of the expo.,gapes at their wedding competitors on the upper deck.,stops to arm herself.,,gold0-orig,pos,unl,unl,pos,n/a,A female fairy flies overhead.,Someone\nlsmdc3084_TOOTH_FAIRY-39601,14459,Its heading reads Department of Dissemination of Disbelief. Someone,\"sits up on the edge of his bed, flips on a lamp, and reads the summons.\",is trying to hold the powder suddenly up in the morning.,changes his mind and strikes him.,breaks it open a paper stalk.,goes to take his outside.,gold0-reannot,pos,unl,unl,unl,unl,Its heading reads Department of Dissemination of Disbelief.,Someone\nlsmdc3084_TOOTH_FAIRY-39601,14456,\"Now, his Corvette sits outside an apartment complex, where a second story light goes out. In a darkened bedroom, someone\",lies on his side and rubs his shoulder.,is being drug by his father.,checks the tv radio then dials.,sits at a laptop with an beiber - handheld device on her belly.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Now, his Corvette sits outside an apartment complex, where a second story light goes out.\",\"In a darkened bedroom, someone\"\nlsmdc3084_TOOTH_FAIRY-39601,14462,Loose papers fly and a wind blows blankets off the bed. Someone,\"looks up, peering through a seemingly endless funnel of energy.\",\"nods, then turns, revealing dresses in a shelf.\",struggles to climb the boat back.,knocking the table from someone.,,gold1-reannot,pos,unl,unl,unl,n/a,Loose papers fly and a wind blows blankets off the bed.,Someone\nlsmdc3084_TOOTH_FAIRY-39601,14461,\"As someone grimaces, the magical smoke swirls overhead. Loose papers fly and a wind\",blows blankets off the bed.,roll through the wings.,sends a man alone socializing.,catches up to someone.,,gold1-reannot,pos,unl,unl,pos,n/a,\"As someone grimaces, the magical smoke swirls overhead.\",Loose papers fly and a wind\nlsmdc3084_TOOTH_FAIRY-39601,14452,She mouths the word stop. Her mom,holds up a dollar.,twists his husband's wrist.,\"hangs up and sits in the used car, staring at someone.\",walks up to her.,,gold1-reannot,pos,unl,pos,pos,n/a,She mouths the word stop.,Her mom\nlsmdc3084_TOOTH_FAIRY-39601,14457,\"In a darkened bedroom, someone lies on his side and rubs his shoulder. He\",rolls onto his back.,prepares to carry her off.,pulls his legs up in his lap.,turns and turns away.,\"shaves, then looks up at the tv.\",gold0-reannot,pos,unl,unl,unl,unl,\"In a darkened bedroom, someone lies on his side and rubs his shoulder.\",He\nlsmdc3084_TOOTH_FAIRY-39601,14454,Someone smiles and hugs her mother. The woman,\"kisses her cheek, then glares at someone.\",pulls someone up again.,spreads her arms ruefully.,grins and lays his head on someone's lap.,looks over to someone.,gold1-reannot,pos,unl,pos,pos,pos,Someone smiles and hugs her mother.,The woman\nanetv_J3DxJ8gI95U,5435,\"A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually begins to catch on fire. Once the fire simmers down, the man throws red sauce on top of the food and he\",shuffles it around the skillet.,then wipes it along and smiles.,stirs several more food off.,finished to his eating life and then pans back to the nightstand.,adds some salt into the bowl.,gold0-orig,pos,unl,unl,unl,pos,A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually begins to catch on fire.,\"Once the fire simmers down, the man throws red sauce on top of the food and he\"\nanetv_J3DxJ8gI95U,5436,\"Once the fire simmers down, the man throws red sauce on top of the food and he shuffles it around the skillet. The camera then\",zooms in on the dish as the chef continues to shuffle the food and cook the meal.,adds a small amount of alcohol into the bowl and takes the pasta for a press.,shifts his cinnamon turn to the small plane and all of the cricketers are doing an egg sandwich on and front dough.,switches to the sheepish looking someone and continues talking.,flips to the whole yard and is swinging it in one box and grabs the camera hands.,gold0-orig,pos,unl,unl,unl,unl,\"Once the fire simmers down, the man throws red sauce on top of the food and he shuffles it around the skillet.\",The camera then\nanetv_J3DxJ8gI95U,935,He is cooking in several pots and skillets as he talks. He,gives instructions on how to cook a dish.,\"is displaying a salad on the bread, showing off and off the eggs while he talks in the last plate.\",\"dumps the bottles into the mixer, adds some lime to the finished salad then pours the powder into the pan.\",talks about what he is about to do before making out.,,gold0-orig,pos,unl,unl,unl,n/a,He is cooking in several pots and skillets as he talks.,He\nanetv_J3DxJ8gI95U,5434,A stove is shown with a skillet on an eye with a flame. A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually,begins to catch on fire.,wins while smiling into the camera.,puts a piece of a hot sandwich in the pan and he continues to mix the ingredients on the bowl.,added to a combat while pausing after they all charged the mixture on three dogs.,,gold0-reannot,pos,unl,unl,unl,n/a,A stove is shown with a skillet on an eye with a flame.,A chef is then visible and begins stirring a liquid in a pot and cooks something else in another skillet and it eventually\nanetv_NbTlXQLScRo,951,A man is seen speaking to the camera followed by him laying several ingredients out and boiling them in some water. He then,pours more food items under water and into a pot filled with water.,adds various ingredients together while kitchen a man talking and mixing ingredients into a pan and stirring it into a pan.,cuts some butter off a ball and mixes them together while others stand afterwards.,picks up a cup and places it in a pan again mixing it back and presenting it to the dish.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen speaking to the camera followed by him laying several ingredients out and boiling them in some water.,He then\nanetv_7gRbYNWSUjk,12051,\"Then, the man leans on her hands to spin his body and make turns. After, the man\",stands on his hands and tilt his body to the sides and front.,speaks in front of him and spin in circles.,begins doing right flips then continues taking slow movements.,begins to dance and flip in the air with air cameron.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the man leans on her hands to spin his body and make turns.\",\"After, the man\"\nanetv_7gRbYNWSUjk,12050,\"A man practice martial arts in a gym turning and spinning around. Then, the man\",leans on her hands to spin his body and make turns.,grips hands with a baton and stopping to scatter it.,kicks from parallel parallel bars.,continues on with the pommel horse and continues in between 3.,turns the closer as he dunk their hockey shoes.,gold1-reannot,unl,unl,unl,unl,unl,A man practice martial arts in a gym turning and spinning around.,\"Then, the man\"\nanetv_bMWWSk_YFY8,11038,The ox charge at the trainers lined up against the wall. Spectators,watch and walk in the stands during the event.,\"curl the passengers around the room, someone balances easily on the side of the crate.\",attacks with special waiters.,look on their side.,,gold0-orig,pos,unl,unl,unl,n/a,The ox charge at the trainers lined up against the wall.,Spectators\nanetv_bMWWSk_YFY8,11037,Two ox duel with horns in a corral while trainers guide them. The ox charge at the trainers,lined up against the wall.,shows the dogs making a sympathetic gesture.,makes dart in the full center.,have a red tube by a high eye.,dashes around the path and is seen.,gold0-reannot,pos,unl,unl,unl,unl,Two ox duel with horns in a corral while trainers guide them.,The ox charge at the trainers\nanetv_opGZh9nUlWA,12560,The lady performs a ballet dance. The lady,lifts her leg up behind her and moves it to the front and rests it on her leg.,sits down on the first arbor and the teacher raises her left hand in a continuous frown.,walks slowly around the stage wearing stage.,switches her hips to the music.,,gold0-orig,pos,unl,unl,pos,n/a,The lady performs a ballet dance.,The lady\nanetv_opGZh9nUlWA,12559,A lady stands in a dance studio. the lady,performs a ballet dance.,finishes and walks around the stage.,waves her arms in front of him.,does pink dance moves doing zumba and dancing on her belly.,stops rubbing the hand drinks.,gold0-orig,pos,unl,unl,unl,unl,A lady stands in a dance studio.,the lady\nanetv_opGZh9nUlWA,12561,The lady lifts her leg up behind her and moves it to the front and rests it on her leg. The lady,stands in front of the camera facing the mirror.,puts the corner of her leg and peels it with some exercise equipment.,rubs additional black cuts on the right side.,\"peels her body off the tank, walks the tube backwards shortly after to remove a towel and balances her legs.\",lifts the weights over her head and wipes it off.,gold0-orig,pos,unl,unl,unl,unl,The lady lifts her leg up behind her and moves it to the front and rests it on her leg.,The lady\nanetv_opGZh9nUlWA,12562,The lady stands in front of the camera facing the mirror. We,see a person sitting on the left side of the room.,see the lady working up view.,see the lady screen.,\"then lifts up the camera, leaving the directory and poised in her dim shot for a pruning.\",see a black screen.,gold1-orig,pos,unl,unl,unl,pos,The lady stands in front of the camera facing the mirror.,We\nanetv_U0Q10ZdqnJo,2691,There's a woman in a white shirt in an indoor tennis court hitting balls across the court. She,bounces the ball on the ground and then serves the ball across the net.,continues rolling the ball around while other people cheers as balls - like arrow begins at the end.,uses his hose to hit the ball to the ground and still punching.,\"is ni a ball court on the side, and then solemnly makes a triangle and hit a ball back and forth.\",throws the ball down onto the ground.,gold0-orig,pos,unl,unl,unl,pos,There's a woman in a white shirt in an indoor tennis court hitting balls across the court.,She\nanetv_bJ695Pp7Vng,7798,There are various still pictures of girls playing water polo. There,are two black screens with white text that show up after the video.,is peeled back in the auditorium using blonde glitter.,are many people who watch kites experience.,\"are shown getting very still as a man in a suit talks with the instructor, and occasionally a person does sit ups.\",is wearing a blue suit suit on the pair in a grey shirt squatting performing on the wicker beach with another person in tow.,gold0-orig,pos,unl,unl,unl,unl,There are various still pictures of girls playing water polo.,There\nanetv_bJ695Pp7Vng,2066,\"Several images of girls are shown as they compete against teams playing Water polo. As the pictures continue, several girls\",\"are shown making faces, holding their arms up and getting hit by their opponents.\",are shown running after a team running out and raising them to start a game.,plays cricket in an indoor critique in the big red bar.,are on the road demonstrating various game.,appear and begin skating against each other.,gold1-orig,pos,unl,unl,unl,unl,Several images of girls are shown as they compete against teams playing Water polo.,\"As the pictures continue, several girls\"\nanetv_bJ695Pp7Vng,7797,A black screen appears then white text appears coming in from the left and right side of the screen. There,are various still pictures of girls playing water polo.,lady starts opening a silver cone bowl with red varnish and begins a bowl with white liquid over the surface.,is writing on a desk in front of one.,close up of the man and a group of players are seen sitting across a field and field performing tricks.,,gold0-reannot,pos,unl,unl,pos,n/a,A black screen appears then white text appears coming in from the left and right side of the screen.,There\nanetv_v4KygkYPdp0,6534,The person claps their hands. The person,puts his fingers together.,takes the flute away and leaves the room.,spins and flips around in the air.,claps a hand over their mouths.,,gold1-orig,pos,unl,unl,pos,n/a,The person claps their hands.,The person\nanetv_v4KygkYPdp0,6532,The credits of the clip are shown. A person,rests his hands on the top of drums.,is driving behind a restaurant counter.,puts a tube on a machine and uses a stick.,rides his board down through the sand.,dumps several darts into the ice.,gold0-orig,pos,unl,unl,unl,unl,The credits of the clip are shown.,A person\nanetv_9WOvWFdA7lY,7859,3 The guy puts a second ring in the girl's lip. 4 The guy,cleans up the girls lip.,\"blows the girls nails, and a guy stirs on his arms with the information of the video.\",puts an arrow repeatedly.,hits the girl with a big smile.,,gold0-orig,pos,unl,unl,pos,n/a,3 The guy puts a second ring in the girl's lip.,4 The guy\nanetv_9WOvWFdA7lY,13729,A tattooed man with tools appears and pierces her lower lip. He,finishes and gives her a drink.,is drumming intently as a red cable cars blur on the other side.,returns weights with oil and paints.,continues to talk and talks.,uses a wand to wash of his belly.,gold0-orig,pos,unl,unl,unl,unl,A tattooed man with tools appears and pierces her lower lip.,He\nanetv_9WOvWFdA7lY,13728,A woman is seated in a beauty chair. A tattooed man with tools,appears and pierces her lower lip.,is shown under the grooming table.,is behind his back and brushing his hair down.,runs out cutting the woman's hair.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seated in a beauty chair.,A tattooed man with tools\nanetv_9WOvWFdA7lY,7860,4 The guy cleans up the girls lip. 5 The guy,gives the girl something to gargle.,stops the box and holds the cigarette when the guy puts her nail in.,drinks from its mouth before turning off the pair.,puts the contact lens in the dark mark.,,gold0-orig,pos,unl,unl,pos,n/a,4 The guy cleans up the girls lip.,5 The guy\nanetv_9WOvWFdA7lY,7858,2 a guy comes and puts a ring through the lip. 3 The guy,puts a second ring in the girl's lip.,raises a blindfold to hug the little girl who lets go of the set.,applies it to his belt and hugs the handle.,holds another pole and shows it on her belt.,,gold0-orig,pos,unl,unl,unl,n/a,2 a guy comes and puts a ring through the lip.,3 The guy\nlsmdc0020_Raising_Arizona-57319,17618,Pulling the Biker from a distance as he levels the two shotguns. The tracking camera,pulls back further to reveal a running jack - rabbit keeping pace with us in the foreground.,stops with the two boys clearly throwing the seeing behind the chief.,shows the completed pumping.,moves silently as someone runs along the welcome cliff edge.,flips off the mountains.,gold0-orig,pos,unl,unl,unl,unl,Pulling the Biker from a distance as he levels the two shotguns.,The tracking camera\nlsmdc0020_Raising_Arizona-57319,17616,\"As the Biker roars into frame, his rear tire laying down a wake of fire. As he\",roars along a ribbon of desert highway.,\"reaches out to take the last preserver parker out of the light, spiders everywhere.\",\"gets out of a train hut, grimaces cover someone intercepts the chief on top.\",\"makes his escape, people flee towards someone in pursuit of a gun flies.\",,gold0-orig,pos,unl,unl,pos,n/a,\"As the Biker roars into frame, his rear tire laying down a wake of fire.\",As he\nlsmdc0020_Raising_Arizona-57319,17609,There is an awkward silence as she leaves and slams the bedroom door. Someone is carefully studying his thumbnail; someone,stares fixedly at the ceiling.,moves back and forth on the photographs.,\"looks at the bedroom window, and turns out insistently.\",adjusts his reflection when he approaches someone.,\"stands in his room looking in, puzzled.\",gold1-orig,pos,unl,unl,unl,pos,There is an awkward silence as she leaves and slams the bedroom door.,Someone is carefully studying his thumbnail; someone\nlsmdc0020_Raising_Arizona-57319,17614,Its driver is a huge leather - clad hellion. The Biker,roars out of frame.,wears a sweet elderly black cap.,pulls someone's mask away from the steward and enters.,steps up to the driver seat.,,gold0-orig,pos,unl,unl,pos,n/a,Its driver is a huge leather - clad hellion.,The Biker\nlsmdc0020_Raising_Arizona-57319,17608,\"Someone leans in close to someone, a look of sincere concern on his face, and says under his breath. There\",is an awkward silence as she leaves and slams the bedroom door.,places his mouth closer.,\", someone stands up, picks up her cell and begins doing it, somewhat with her lost friend, obviously romantic.\",\"works his way through the various, soft martial - comforted music.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone leans in close to someone, a look of sincere concern on his face, and says under his breath.\",There\nlsmdc0020_Raising_Arizona-57319,17607,He is looking at the baby. People,\"look up at someone, dumbstruck.\",are talking to someone how they bring back plates and peanuts.,\"are getting up, and they are carrying nunchucks.\",foremen his friends and onramp.,are covered with inflated tires.,gold1-orig,pos,unl,unl,unl,unl,He is looking at the baby.,People\nlsmdc0020_Raising_Arizona-57319,17612,\"Someone is momentarily startled, then goes on playing with the baby. Someone finally\",turns to face him.,\"shakes himself up, starts grinning something on the bars, throws himself down in the track by his two friends.\",has to keep him on his feet.,calms down and starts the kiss again.,shoots someone on the tracks.,gold0-orig,pos,unl,unl,unl,unl,\"Someone is momentarily startled, then goes on playing with the baby.\",Someone finally\nlsmdc0020_Raising_Arizona-57319,17619,The Biker slues the other gun around. The Biker,is approaching in the distant background.,pulls on a third handle.,reverses above the pool.,hands him a green drill that is balanced on their feet.,is kicked out of the other pool.,gold0-orig,pos,unl,unl,unl,unl,The Biker slues the other gun around.,The Biker\nlsmdc0020_Raising_Arizona-57319,17632,\"The singing that the building scream covered, however, is now audible again. Perspiration\",beads someone's forehead.,race while someone is secured this time.,bursts through a hole in the dead.,moves the stuffed sample to his mouth.,continues to sweep the floor.,gold0-orig,pos,unl,unl,unl,unl,\"The singing that the building scream covered, however, is now audible again.\",Perspiration\nlsmdc0020_Raising_Arizona-57319,17625,The roar of his engine and clank of his chains recede as the Biker gradually dissolves into thin air. We,are left looking at the empty street and the faraway arizona house.,are people jogging down the hill and down a thick path into the companies building trudging by dirt.,pull up on bulky computers as he speeds past the plaza and through a tumbling series of revolving doors.,pushes the deck back as he drives past.,\", the turns grows flat and additional black, then explodes, and someone screams and his marched.\",gold0-orig,pos,unl,unl,unl,unl,The roar of his engine and clank of his chains recede as the Biker gradually dissolves into thin air.,We\nlsmdc0020_Raising_Arizona-57319,17611,\"Someone sits gingerly on the edge of the bed and, smiling, sticks a finger through the bars of the crib to play with the baby. Someone\",\"is momentarily startled, then goes on playing with the baby.\",approaches the cinema door.,\"joins someone, flipping herself back and forth to dance on the piano wrapped in her arms.\",stirs and looks at the bar.,gently inserts his handkerchief from the seat as the song ends.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits gingerly on the edge of the bed and, smiling, sticks a finger through the bars of the crib to play with the baby.\",Someone\nlsmdc0020_Raising_Arizona-57319,17627,\"The camera starts floating forward very close to the ground, moving slowly toward the Arizona house. The high - pitched drone\",is becoming less faint under the singing.,\"is now lying, horrified by terror.\",pops up on the arizona bed screen.,can be seen walking along an empty passageway.,flies past the cartoon face.,gold1-orig,pos,unl,unl,unl,pos,\"The camera starts floating forward very close to the ground, moving slowly toward the Arizona house.\",The high - pitched drone\nlsmdc0020_Raising_Arizona-57319,17623,As he crashes back down to earth in the foreground and roars away. Only now we are no longer in the desert: We,are looking down a twilight street at the end of which is the arizona house.,they stare at each other.,as someone reaches towards him.,no further than it is.,into the lake's hull.,gold0-orig,pos,unl,unl,unl,unl,As he crashes back down to earth in the foreground and roars away.,Only now we are no longer in the desert: We\nlsmdc0020_Raising_Arizona-57319,17617,He is reaching for the two sawed - off shotguns which are strapped crisscross across his back. Pulling the Biker from a distance as he,levels the two shotguns.,runs towards the little master hut.,scrambles up the steps to mount the train.,enters a crunch desk.,is caught by several trees.,gold0-orig,pos,unl,unl,unl,unl,He is reaching for the two sawed - off shotguns which are strapped crisscross across his back.,Pulling the Biker from a distance as he\nlsmdc0020_Raising_Arizona-57319,17631,\"We reach the top and hurtle - thwap! - through the white curtains of the open second - story window into the nursery to reveal Florence Arizona, her back to us, screaming over the crib. We\",are rocketing toward her.,\"are running in ikea, people running on a small field.\",slip above her from her husband's room.,come in to change the ornaments.,,gold0-orig,pos,unl,pos,pos,n/a,\"We reach the top and hurtle - thwap! - through the white curtains of the open second - story window into the nursery to reveal Florence Arizona, her back to us, screaming over the crib.\",We\nlsmdc0020_Raising_Arizona-57319,17622,\"With the crane down we momentarily lose him from view over the rise; then suddenly - roar - he tops the rise and, wheels spinning, is airborne. As he\",crashes back down to earth in the foreground and roars away.,\"sees the pendant, we see an intersection, the expanding of audio, over the message on the monitor.\",\"faces the suv, some passengers push toward him.\",hauls himself up the mountain to see a huge map of rocks and flowers starting from the window.,\"opens it and a frustrated flash, it goes into cuba.\",gold0-orig,pos,unl,unl,unl,unl,\"With the crane down we momentarily lose him from view over the rise; then suddenly - roar - he tops the rise and, wheels spinning, is airborne.\",As he\nlsmdc0020_Raising_Arizona-57319,17624,Only now we are no longer in the desert: We are looking down a twilight street at the end of which is the Arizona house. The roar of his engine and clank of his chains,recede as the biker gradually dissolves into thin air.,is joined under the north outer 8.,are smashed through the lock!,are suddenly struggling as it begins to stoop open.,,gold0-reannot,pos,unl,unl,unl,n/a,Only now we are no longer in the desert: We are looking down a twilight street at the end of which is the Arizona house.,The roar of his engine and clank of his chains\nlsmdc0020_Raising_Arizona-57319,17610,Someone is carefully studying his thumbnail; someone stares fixedly at the ceiling. Someone lies in bed facing the wall; we,see only the back of her head.,\"see someone at the wall, struggling up the above.\",\"cut down the thin staircase, across the room.\",follow them past the chair.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone is carefully studying his thumbnail; someone stares fixedly at the ceiling.,Someone lies in bed facing the wall; we\nlsmdc0020_Raising_Arizona-57319,17615,\"The Biker roars out of frame. As the Biker roars into frame, his rear tire\",laying down a wake of fire.,replayed again in slow motion.,bears a sharp man.,swerves and slugs on a truck.,rises into a bucks city.,gold0-reannot,pos,unl,unl,unl,unl,The Biker roars out of frame.,\"As the Biker roars into frame, his rear tire\"\nlsmdc0020_Raising_Arizona-57319,17621,\"As the Biker roars away, the foreground flower bends with his draft and then bursts into flame. We\",are approaching the crest of a rise.,\"goes right to his left, but sits in the other.\",shine into all his faces.,moves from the dagger to the man's body and somehow dims out the fire repeatedly.,follow someone into the arena.,gold0-reannot,pos,unl,unl,unl,pos,\"As the Biker roars away, the foreground flower bends with his draft and then bursts into flame.\",We\nlsmdc0020_Raising_Arizona-57319,17630,We are moving quite fast now. We,\"are rushing toward the house, toward the base of the ladder, the sustained scream drawing us on.\",see the fat tank who is watching.,are from the top of a huge large donut.,slow past over and our view ahead.,\"move up, slowly.\",gold0-reannot,pos,unl,unl,unl,unl,We are moving quite fast now.,We\nlsmdc1008_Spider-Man2-75576,8786,She turns to her costar. People,walk down the street side - by - side.,dance through the crowd of dancing.,\"shoves the bully's weapon away and unscrews on it, but it won't budge.\",huddle together in the darkness.,apparate near the bottom of the green shrouded overlook.,gold1-orig,pos,unl,unl,unl,unl,She turns to her costar.,People\nanetv_hDpYoAAFwOA,2708,\"A man performs stunts on the back of a motorcycle, falls off, and injures himself at which point he falls to the ground and looks hurt. A man\",is hanging off of a moving bicycle on a down ramp.,is then shown skiing in front of a kickboxing fence.,lay on the outside of a skateboard and skateboarder in the water with his skateboard and skateboard.,\"attempts to use a skateboard, but several judges talk to them and they hit on each other.\",,gold0-orig,pos,unl,unl,pos,n/a,\"A man performs stunts on the back of a motorcycle, falls off, and injures himself at which point he falls to the ground and looks hurt.\",A man\nanetv_hDpYoAAFwOA,2709,A man is hanging off of a moving bicycle on a down ramp. The man,falls off of the bike and onto the ground with torn clothes.,continues to skate multiple times.,jumps down the diving board and grabs a pole.,flutters the flags then falls after other is given in.,is jumping high in the air moving bounce.,gold0-orig,pos,unl,unl,unl,pos,A man is hanging off of a moving bicycle on a down ramp.,The man\nanetv_DV1ITGBfo5w,13437,He continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh. Then the other person in black shorts,kneels down on his left knee and holds up a long metal pole with his hands to raise it.,slides again to change positions and begins to recover them.,\"does the same thing very as well as another woman sat in the chair, farther over course he was introduced.\",takes the ball with instructions at the top with his hat.,describing the techniques of putting it on between the machines.,gold0-orig,pos,unl,unl,unl,unl,He continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh.,Then the other person in black shorts\nanetv_DV1ITGBfo5w,13434,There are two men standing in an indoor gym wearing gray athletic shirts and black and red shorts. They,are demonstrating and talking about workout routines.,are trying to push each other with a jump rope.,continue skateboarding and playing hockey.,begin to approach the parallel bars.,\"are practicing the interview, watching the game.\",gold0-orig,pos,unl,unl,unl,unl,There are two men standing in an indoor gym wearing gray athletic shirts and black and red shorts.,They\nanetv_DV1ITGBfo5w,13438,Then the other person in black shorts kneels down on his left knee and holds up a long metal pole with his hands to raise it. The person in the red short,explains what core muscles he is exercising while doing the workout.,chair the nails and then kicks a microphone.,pushes their bangs forward.,walks with the five on his left to holds their pointed body foot in their direction.,throws the other hand to the wall.,gold0-orig,pos,unl,unl,unl,unl,Then the other person in black shorts kneels down on his left knee and holds up a long metal pole with his hands to raise it.,The person in the red short\nanetv_DV1ITGBfo5w,13436,The man in the red shorts is raising his right hand up to show a stretching exercise move while the other person is watching him. He,continues to show some more workout exercises by flexing his chest muscles and and pointing to his thigh.,looks up and stands up to show little more support.,is standing in someone and there's a boy in a room with doing a disk on his hand.,as he does the walk he continues to slip behind the man and continue with the man playing the legs on the line.,,gold0-orig,pos,unl,unl,unl,n/a,The man in the red shorts is raising his right hand up to show a stretching exercise move while the other person is watching him.,He\nanetv_DV1ITGBfo5w,112,Two men are at a gym to demonstrate proper form for the exercise. The man in the black shorts,gets on one knee as the instructor gives instructions on what to do.,continues on the exercise machine and starts to demonstrate how to do crunches.,stretches its right hand over his right arm and imitates the boy.,hits a weight before the crowd.,turns to the other guy who is alone and displaying camera equipment.,gold1-orig,pos,unl,unl,unl,unl,Two men are at a gym to demonstrate proper form for the exercise.,The man in the black shorts\nanetv_DV1ITGBfo5w,13435,They are demonstrating and talking about workout routines. The man in the red shorts,is raising his right hand up to show a stretching exercise move while the other person is watching him.,is not getting the eyes removed from the wall.,is wearing a slow white hoodie and they both bow and move.,runs a marathon carrying solemn women to ride a stage.,rips the intertube down on his helmet and drags the orange.,gold0-orig,pos,unl,unl,unl,unl,They are demonstrating and talking about workout routines.,The man in the red shorts\nanetv_DV1ITGBfo5w,13439,The person in the red short explains what core muscles he is exercising while doing the workout. Then they both,stand up and complete their tutorial on the workout.,stand close to two groups to talk to each other and come back together.,demonstrate how to stand by and shake the clothes out.,sit together on benches forever.,wears the tattoo for force and then snatch it up and performance.,gold0-orig,pos,unl,unl,unl,unl,The person in the red short explains what core muscles he is exercising while doing the workout.,Then they both\nanetv_DV1ITGBfo5w,113,The man in the black shorts gets on one knee as the instructor gives instructions on what to do. The man in black shorts,lifts a bar from the kneeling position.,has the upper body.,gets to his knees and walks out of the gym holding a hammer.,\"takes the pail up to the man, and begins to talk about how to do it using the guitar.\",picks up a blue karate glove then tosses it.,gold1-reannot,pos,unl,unl,unl,unl,The man in the black shorts gets on one knee as the instructor gives instructions on what to do.,The man in black shorts\nanetv_c2ejr7Lci8s,8376,A person is seen riding a unicycle in the middle of a forest while holding an instrument. The man,continues riding down the path as the camera follows his movements.,throws the frisbee on the court while others watch on the sides.,stops playing while the woman inspects him.,continues speaking to the camera while playing his instruments as well as out.,continues to play the instrument while others watch on the side.,gold1-orig,pos,unl,pos,pos,pos,A person is seen riding a unicycle in the middle of a forest while holding an instrument.,The man\nanetv_VA8SXILXTj0,7431,A couple of lemons are seen sitting on a table with glasses and plates and leads into a person putting the lemons in a container. He,mixes ingredients with the lemons and shakes them up in another glass.,cuts the cookies with the pan in close the oven.,\"puts the vanilla in a glass, and pours it carefully in a martini glass.\",moves the counter around and ends by speaking into the camera and smiling to the camera.,,gold1-orig,pos,unl,unl,pos,n/a,A couple of lemons are seen sitting on a table with glasses and plates and leads into a person putting the lemons in a container.,He\nanetv_VA8SXILXTj0,7432,He mixes ingredients with the lemons and shakes them up in another glass. He,finishes the lemonade and presents it to the camera while also taking a sip.,continues to pour the foil in a shaker one at a time and another time.,adds the powdered sugar into the cup then holds up a pitcher in front of him.,\"use the spoon to cook the glass and peel it, shaking it with whipped cream, watching it.\",drink lemons in a bowl and pours ingredients into a bowl and he brings it out with the rest of it stuff.,gold0-orig,pos,unl,unl,unl,unl,He mixes ingredients with the lemons and shakes them up in another glass.,He\nanetv_x39KxoQHEp4,5572,Several people float down a river in tubes. They,pass through several rocks.,push the boat over the water back going into the water all together.,take on tubes down intertubes.,can climb in the trees before going down the stairs towards another boat in front of them.,are put in position to stay afloat in the river.,gold1-orig,pos,unl,unl,unl,pos,Several people float down a river in tubes.,They\nanetv_x39KxoQHEp4,5574,The water gets rough as the past through some rocks. Several people,stand up in the river.,are driving his canoe down the inflated boats.,are seen clearing it.,are in the ocean surfing.,go past the end of the river.,gold1-reannot,pos,unl,unl,pos,pos,The water gets rough as the past through some rocks.,Several people\nlsmdc1041_This_is_40-8950,17441,\"Later, someone ducks down in her car as she smokes a cigarette. She\",blows smoke out the window and pulls away.,leaps from the van.,sways back and forth.,puts out her hand.,pours a glass of beer into a glass of water.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone ducks down in her car as she smokes a cigarette.\",She\nlsmdc0030_The_Hustler-65138,12929,\"He pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking. Someone\",\"is there, seated primly on the bed.\",is just a little french.,ushers someone to a hearing box.,is the first woman from empty glasses and possibly even revealing a gentleman.,begins to tie his hands with napkin.,gold0-orig,pos,unl,unl,unl,unl,\"He pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking.\",Someone\nlsmdc0030_The_Hustler-65138,12932,\"Someone's voice is subdued, controlled. He\",\"stands over her, pulling a wad of bills from his pocket.\",\"emerges from the window, and tugs his hand to the top of his head.\",steps to them.,picks up a clock.,\"takes the reactor out of the trash can, tosses it upside down, and panel.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone's voice is subdued, controlled.\",He\nlsmdc0030_The_Hustler-65138,12927,\"Someone enters his suite, removes his overcoat, then looks at the door that divides his room from someone's. He\",\"seems hesitant, unsure of himself.\",places two hooks on the computer.,reaches up with something written on his sleeves.,has led him to where multiple copies are stacked.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone enters his suite, removes his overcoat, then looks at the door that divides his room from someone's.\",He\nlsmdc0030_The_Hustler-65138,12928,\"He seems hesitant, unsure of himself. He\",\"pours himself a drink and downs it in one gulp, walks to the door, listens, and opens it himself without knocking.\",\"stops down the steps and walks to the rail, where the general stands staring behind the lantern.\",approaches the man's hand surrounding his man.,struggle to pull himself from the cage hung animal pipe.,turns slightly and sees a smiling someone.,gold0-orig,pos,unl,unl,unl,pos,\"He seems hesitant, unsure of himself.\",He\nlsmdc0030_The_Hustler-65138,12931,Someone enters her suite and confronts her. Someone's voice,\"is subdued, controlled.\",pours over a counter.,rises from the head of the two women raising scrubbing.,comes over the screen.,is heard over the scene.,gold0-reannot,pos,unl,unl,unl,unl,Someone enters her suite and confronts her.,Someone's voice\nlsmdc0030_The_Hustler-65138,12926,Someone abruptly turns and walks out of the house. Someone,watches him for a moment then follows.,enters and whispers in her ear.,\"stares into her soft eyes, her promise bored on her plate.\",watches as they take their seats in open the tents.,walks down some dirt road and looks up at a plate on a table covered with brown paper towels.,gold0-reannot,pos,unl,unl,unl,unl,Someone abruptly turns and walks out of the house.,Someone\nlsmdc0030_The_Hustler-65138,12930,\"Someone is there, seated primly on the bed. Someone\",enters her suite and confronts her.,holds on to the love seat.,looks at the tv.,has been asleep on the couch.,is rooted to the spot.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone is there, seated primly on the bed.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26062,12120,\"A pristine replica of the long, multi columned Parthenon stands. Now children\",play around a man making giant soap bubbles on the park lawn.,\"square in - seats, as the penguins start to tour the.\",soar among the surrounding bushes.,talk as the spotlight lamps illuminate their solid pillars.,\"make up the stairs, holding a shawl, papers off at their feet.\",gold0-orig,pos,unl,unl,unl,unl,\"A pristine replica of the long, multi columned Parthenon stands.\",Now children\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26062,12119,Someone shuts the curtains and faces him. Later the truck,turns down a road bordered with well - tended flowering trees and shrubs.,\"arrives, and the others halt in front of them.\",strides into an interrogation room.,tv children set some down.,approaches a cafe.,gold1-reannot,pos,unl,unl,unl,pos,Someone shuts the curtains and faces him.,Later the truck\nanetv_Z6l2Yu9Q0mU,6446,He then sings a song while hula hooping and transitions into him speaking to the camera. More shots of him singing and hula hooping,are shown and ends with him asking viewers to subscribe.,remain in the end and stops in the end.,captures the ending credits.,are shown as well as the people waving to him.,,gold0-orig,pos,unl,unl,unl,n/a,He then sings a song while hula hooping and transitions into him speaking to the camera.,More shots of him singing and hula hooping\nanetv_Z6l2Yu9Q0mU,6445,A man wearing glass is seen speaking into a microphone and picks up a hula hoop while speaking into the camera. He then,sings a song while hula hooping and transitions into him speaking to the camera.,plays the instrument while pausing to speak to the camera and the man walks through the water.,begins to play beer in a sort of hoop while moving his hand so he does n't speak.,speaks to another woman and leads into her playing beer pong as well as several players across her own.,goes down motions while moving his hands up and down then playing in the camera.,gold0-orig,pos,unl,unl,unl,pos,A man wearing glass is seen speaking into a microphone and picks up a hula hoop while speaking into the camera.,He then\nanetv_Z6l2Yu9Q0mU,10582,He is holding a microphone and wearing sunglasses. He then,spins a hula hoop around himself while singing into the mic.,places the flute to his mouth and begins to play the guitar.,begins playing a song on the pre - controlled video.,begins playing the harmonica as he goes.,,gold1-orig,pos,unl,unl,pos,n/a,He is holding a microphone and wearing sunglasses.,He then\nanetv_Z6l2Yu9Q0mU,10581,A man is standing in a room. He,is holding a microphone and wearing sunglasses.,is scrubbing the shoe with a mop.,is sitting on a piece of exercise equipment.,\"starts doing exercise moves, going up and down.\",is holding a bag over his head.,gold1-orig,pos,unl,unl,pos,pos,A man is standing in a room.,He\nanetv_Z6l2Yu9Q0mU,10583,He then spins a hula hoop around himself while singing into the mic. He then,sits down and talks to the camera.,plays cautiously and beat by pausing to speak to the camera.,throws again and spins in dribbling the match as more.,continues hitting with another man sitting close to him.,dismounts and spins and kneels back before talking to the camera.,gold1-reannot,pos,unl,unl,unl,pos,He then spins a hula hoop around himself while singing into the mic.,He then\nlsmdc0026_The_Big_Fish-62571,7375,\"Three catfish swim in front of his headlights. Realizing his plight, someone\",tries to remain calm.,is lifted off the floor and falls back in a heap plops to the floor.,shoots the mutants a look.,leaves someone's car.,,gold0-orig,pos,unl,unl,pos,n/a,Three catfish swim in front of his headlights.,\"Realizing his plight, someone\"\nlsmdc0026_The_Big_Fish-62571,7377,That's when he sees her - -. She,is swimming outside the car.,hits: a huge fancy flower of colorful flowers.,turns back to his brave daughter.,brushes lightly upon her hair.,accompanies her up the steps to the stage.,gold0-orig,pos,unl,unl,unl,pos,That's when he sees her - -.,She\nlsmdc0026_The_Big_Fish-62571,7373,\"Just as suddenly, the sound changes - - no longer pounding, but softly splashing. The world\",\"is close and echoing, because the car is underwater.\",seems less complicated than high.,\"has suddenly completely distorted, is fear, as if to halt himself from his presence.\",is blurred as the chill wind sends a cloud of dust ensues outside.,,gold0-orig,pos,unl,unl,pos,n/a,\"Just as suddenly, the sound changes - - no longer pounding, but softly splashing.\",The world\nlsmdc0026_The_Big_Fish-62571,7374,\"The tires are still on the road, but where there used to be air is water. Three catfish\",swim in front of his headlights.,fills the helmeted men allowed the black man to spread them away.,are standing at an center in the room that is gathered at their feet.,are on the sidewalk next to the bike and unmarked are on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,\"The tires are still on the road, but where there used to be air is water.\",Three catfish\nlsmdc0026_The_Big_Fish-62571,7372,Someone turns on the wipers. It,'s like being caught in a waterfall.,aims their rifle at him.,billows as buster lies on the ground.,holds a long stick attached to his mouth and it reaches his ear.,\"is a warm, sunny memory.\",gold1-orig,pos,unl,unl,unl,unl,Someone turns on the wipers.,It\nlsmdc0026_The_Big_Fish-62571,7378,\"She is swimming outside the car. While we never see her face exactly, she\",\"remains just as beautiful, just as mysterious, as the first time we saw her.\",tries to pick up the cup but someone is flaxen too.,can say anything else properly.,\"takes a breath and now when she is another, talking.\",is wiping off the long clothes from the sink.,gold0-orig,pos,unl,unl,unl,unl,She is swimming outside the car.,\"While we never see her face exactly, she\"\nlsmdc0026_The_Big_Fish-62571,7376,\"Realizing his plight, someone tries to remain calm. Water\",\"is trickling in through the crack between the window and the door, but very slowly.\",opens the crack and looks at someone.,rushes her across the corridor.,is drawn into someone's mouth.,is in his eyes.,gold0-orig,pos,unl,unl,pos,pos,\"Realizing his plight, someone tries to remain calm.\",Water\nlsmdc0026_The_Big_Fish-62571,7371,The first raindrops hit the windshield. Someone,turns on the wipers.,\"and his aide follow the car to his car, one marked outside and finds the door vacant.\",leans toward a white - haired man.,\"stands at a second angle, listening.\",sends the marks: rolling shooting toward the fizzing eyes and toward his forehead.,gold0-orig,pos,unl,unl,unl,unl,The first raindrops hit the windshield.,Someone\nlsmdc0026_The_Big_Fish-62571,7379,\"While we never see her face exactly, she remains just as beautiful, just as mysterious, as the first time we saw her. She\",puts her hand to the windshield.,is holding a key and another girl and she is just squeezing the front and chest.,\"places her head onto his shoulders, gently pulls his head and pulls her close behind him.\",\"looks back in this book: another, rummaging among the narrator phrases that idly does not world.\",tilt down her back as she stares at the wall and taps the questioningly on his bosom.,gold1-orig,pos,unl,unl,unl,unl,\"While we never see her face exactly, she remains just as beautiful, just as mysterious, as the first time we saw her.\",She\nlsmdc0026_The_Big_Fish-62571,7380,She puts her hand to the windshield. He,puts his up to meet hers.,sees some others standing just at her.,heads cautiously forward and tenderly touches his shoulder.,\"puts his fingers on her thigh and stares at her, then touches her breasts.\",looks round at people in the water.,gold0-reannot,pos,unl,unl,unl,unl,She puts her hand to the windshield.,He\nanetv_u5ri43qbi1A,6058,\"First, he searches the internet to find a pikachu character's face to fit the cake he's making. Then, he explains the name of the pikachu and he\",shows viewers which frosting to put first all in order and when he's done he shows the entire cake finished.,cuts to this mess and then how to wrap a cake piece in white and soft red.,walks out and talking about gold shining eyes.,shows down the tile.,,gold0-orig,pos,unl,unl,unl,n/a,\"First, he searches the internet to find a pikachu character's face to fit the cake he's making.\",\"Then, he explains the name of the pikachu and he\"\nanetv_u5ri43qbi1A,15700,\"He then takes out a tablet that has a picture of Pikachu on it and begins decorating the cake with its face. The cake is finally finished, and the man\",begins talking and picks up the cake to show the final product.,is cutting the red shoes.,\"quickly takes the rake away, touching down liners, putting the paintbrush out into the flowers.\",\"begins to say something, not looking at it.\",,gold0-orig,pos,unl,unl,pos,n/a,He then takes out a tablet that has a picture of Pikachu on it and begins decorating the cake with its face.,\"The cake is finally finished, and the man\"\nanetv_u5ri43qbi1A,6057,\"This video gives the audience a step by step guide of how to make a pikachu cake. First, he\",searches the internet to find a pikachu character's face to fit the cake he's making.,adds some beers from the stick and an ounce of fruit appears that he is mixing into a white experience.,starts by peeling a chisel.,incinerates the batter and adds various treats.,,gold0-orig,pos,unl,unl,unl,n/a,This video gives the audience a step by step guide of how to make a pikachu cake.,\"First, he\"\nanetv_u5ri43qbi1A,15699,A man is standing in a kitchen taking with a white box in front of him with a silver doily in front of him. He then,takes out a tablet that has a picture of pikachu on it and begins decorating the cake with its face.,clips out his shoes and lays them on the table.,\"puts the soda to a table and continues eating, cookie, smiles, and mops the table with the bucket.\",begins by talking to the camera while the picture is in his room.,puts detergent in and then sprays the poodle onto a toothbrush.,gold0-reannot,pos,unl,unl,unl,unl,A man is standing in a kitchen taking with a white box in front of him with a silver doily in front of him.,He then\nanetv_Tbo7I63oIms,12940,\"A person ski over a ski rail and spins in the air, then land stand on the snow. The person\",ski over a ramp and fly in the air very high.,ski down a motor hill and glides up to the right.,ski down the lake.,drop the rope and snowboard off to the other side.,,gold0-orig,pos,unl,unl,unl,n/a,\"A person ski over a ski rail and spins in the air, then land stand on the snow.\",The person\nanetv_Tbo7I63oIms,12942,\"Then, the person ski over the rails of a home turning ans spinning and then land on the street. Then, a person\",ski over the fence of a walking bridge and also ski on the stairs.,\"lift their tires, pass one string, and flip and land on street.\",\"goes out class, breathing at the back of the bike.\",makes shapes and stands on the grass.,\"climb up the canoe, then hop onto the diving board and perform a jump.\",gold0-reannot,pos,unl,unl,unl,unl,\"Then, the person ski over the rails of a home turning ans spinning and then land on the street.\",\"Then, a person\"\nanetv_Tbo7I63oIms,12941,\"The person ski over a ramp and fly in the air very high. Then, the person\",ski over the rails of a home turning ans spinning and then land on the street.,irons knocking the rider off the motorcycle.,puts wires across the water.,goes down ramps or went to the foreground a buck is skateboarding.,lifts the power hose over the closing gate and lands on a string.,gold0-reannot,pos,unl,unl,unl,unl,The person ski over a ramp and fly in the air very high.,\"Then, the person\"\nanetv_oL1gGyMz79s,6748,The man switches balls and bowls several more rounds getting mostly strikes. He,changes his ball again and bowls two more strikes.,\"drives around together, showing several games of rock tools.\",shoots him again in sharp technique.,slides the board in the air making a line before the skateboarders.,pulls out the puck again while he demonstrates how to set it slower.,gold0-orig,pos,unl,unl,unl,unl,The man switches balls and bowls several more rounds getting mostly strikes.,He\nanetv_oL1gGyMz79s,6746,A man is bowling and misses one pin with his first ball. He,gets all strikes for the next six rounds.,takes off his gloves and has a bullet nick to a tall man in front of him.,\"goes into the garage, throwing and throwing the ball.\",bowls out of the lane and pins this to one of the pins.,gets out of a bowling and is about to do throw when she is ready.,gold1-reannot,pos,unl,unl,unl,unl,A man is bowling and misses one pin with his first ball.,He\nanetv_oL1gGyMz79s,6747,He gets all strikes for the next six rounds. The man,switches balls and bowls several more rounds getting mostly strikes.,picks up a puck.,is congratulated by the throw the right way as well and blocked multiple balls of other balls.,loses the cap outside and then runs while marching in place with his bow and arrow.,continues some rounds past the landing and start again doing fun and throws.,gold0-reannot,pos,unl,unl,unl,pos,He gets all strikes for the next six rounds.,The man\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5540,\"Someone flings his hands forward. The someone fires, but the water\",rushes in at him.,blasts the flame into the water.,shoots to his hip.,gives the man a recreation and rams him forward.,shoots behind his back.,gold1-orig,pos,unl,unl,unl,pos,Someone flings his hands forward.,\"The someone fires, but the water\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5541,\"The someone fires, but the water rushes in at him. It\",douses the charge and engulfs him.,does someone that grinds off all fours.,hits someone's fingers.,goes to the missing planks.,\"freezes, and tries again, but goalkeeper falls in shock as roaches swoop toward him.\",gold0-orig,pos,unl,unl,unl,unl,\"The someone fires, but the water rushes in at him.\",It\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5528,\"Someone swings at someone's face, then pins him against the building. Someone\",lands on a slanted roof.,charges him as people slip onto the bed and help him slip away.,passing through a park near two police cars.,spreads around and sees someone's window.,glances up at the cruiser.,gold1-orig,pos,unl,unl,unl,pos,\"Someone swings at someone's face, then pins him against the building.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5535,It tumbles toward a rooftop with a glowing skylight. He weakly,pushes himself up on all fours.,\"destroys the boot, sends a skip on the giant's shoulder, then lands clumsily out of someone's grasp.\",\"slides his fingers over his head with his foot, and reaches out onto the sheer cliff root.\",turns toward the ominous ominous goblin armed on the stone blocking out flames.,,gold0-orig,pos,unl,unl,unl,n/a,It tumbles toward a rooftop with a glowing skylight.,He weakly\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5537,\"The tank's cap flies off and its contents gush out in a swirling arc. Someone unleashes water from two more tanks, and it all\",combines to form a giant flowing barrier around the rooftop.,ends as four trucks descend toward the foot of the truck.,winds out to reveal the cupcakes he had left.,unwraps and a small stream of bullets appears all around the sedan.,,gold0-orig,pos,unl,unl,unl,n/a,The tank's cap flies off and its contents gush out in a swirling arc.,\"Someone unleashes water from two more tanks, and it all\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5531,Someone shoots it with lightning as someone swoops through an open floor. Someone,bursts through a wall and grabs him.,blocks the fire and flings it with his shield.,\"leans on it with his stick resting on his hand, then examines it.\",sees someone running through the jungle.,,gold0-orig,pos,unl,unl,pos,n/a,Someone shoots it with lightning as someone swoops through an open floor.,Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5530,He steers himself toward an unfinished skyscraper. Someone,shoots it with lightning as someone swoops through an open floor.,pulls side puffed out under the front window.,strides through the darkened office.,'s bars mirrors him.,,gold1-orig,unl,unl,unl,unl,n/a,He steers himself toward an unfinished skyscraper.,Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5525,Someone scrambles to his backpack and pulls out his own pair of flying sneakers. He,spots a helicopter rising in his direction and takes aim with the bolt.,barges into the truck which purposefully drops.,\"enter, get the truck.\",pokes them in his trousers in the roof.,lunges as the spider dies.,gold0-orig,pos,unl,unl,unl,unl,Someone scrambles to his backpack and pulls out his own pair of flying sneakers.,He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5523,\"The three companions fall to the floor as lightning zaps the safety barrier behind them. With a power hungry smile, someone\",blasts away a chunk of the deck.,pulls the submarine up to the hidden basin.,turns on someone's them.,folds his arms tighter.,sweeps his fingers under the keys.,gold0-orig,pos,unl,unl,pos,pos,The three companions fall to the floor as lightning zaps the safety barrier behind them.,\"With a power hungry smile, someone\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5527,\"A flying someone knocks him from the ledge, and they plummet past the observation deck, circle each other and come together again in a fierce grasp. Someone\",\"swings at someone's face, then pins him against the building.\",draws steps towards a makeshift line.,rises as he gulps down the mug.,runs away in a lifeboat as little boat whizzes by behind someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"A flying someone knocks him from the ledge, and they plummet past the observation deck, circle each other and come together again in a fierce grasp.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5538,\"Someone unleashes water from two more tanks, and it all combines to form a giant flowing barrier around the rooftop. The son of Poseidon\",holds the water at bay on either side of himself.,hops down then gets to his feet.,steps out onto the narrow balcony.,'s spectators watch at the side.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone unleashes water from two more tanks, and it all combines to form a giant flowing barrier around the rooftop.\",The son of Poseidon\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5526,\"He spots a helicopter rising in his direction and takes aim with the bolt. A flying someone knocks him from the ledge, and they\",\"plummet past the observation deck, circle each other and come together again in a fierce grasp.\",fly from the cannon to smashing through the dives at the feet.,give handcuffed to each other as he flies.,float into a cloud of smoke and landing on the rock.,crash into the wall.,gold0-reannot,pos,unl,unl,pos,pos,He spots a helicopter rising in his direction and takes aim with the bolt.,\"A flying someone knocks him from the ledge, and they\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5542,It douses the charge and engulfs him. The maelstrom,tosses someone about like a toy and the bolt wrenches from his grasp.,throws the man toward his feet and commanding.,serpent repeatedly garnishes the blade.,combines a coaster and then explodes as the raft slides towards someone.,unravels down the hole but stops.,gold0-reannot,pos,unl,unl,unl,pos,It douses the charge and engulfs him.,The maelstrom\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5529,Someone lands on a slanted roof. He,steers himself toward an unfinished skyscraper.,\"sits on the mast, and a wave opens on a string.\",sticks to the roof as a barbell covers the room.,runs up a cardboard gangplank out of the woods.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone lands on a slanted roof.,He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5533,It tumbles out of the building. He,\"soars back toward the empire state building, his shoes' wings beating furiously.\",flips off the baseball in the cab.,\"takes the wheel away, which looks nervous.\",runs into the crowd and down the alley through a ingot of 20's guests.,,gold0-reannot,unl,unl,unl,unl,n/a,It tumbles out of the building.,He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5536,\"Turning, someone sees water jet from its splitting seams. The tank's cap flies off and its contents\",gush out in a swirling arc.,drop onto the necks of another wheelchair.,returns over the splash glass.,confer with the matter someone limp to someone.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Turning, someone sees water jet from its splitting seams.\",The tank's cap flies off and its contents\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26220,5539,The son of Poseidon holds the water at bay on either side of himself. Someone,flings his hands forward.,leads someone up to the somersaults.,picks up a seemingly triangular bottle.,\"looks down, unharmed, puffing on his cigar.\",\"grins unsteadily to his right and climbs up the cross, strung - out, into someone.\",gold0-reannot,pos,unl,unl,unl,unl,The son of Poseidon holds the water at bay on either side of himself.,Someone\nanetv_qb_5_9xDYqc,2628,\"The man continues touching the rock and begins stretching. After, he begins to actively and ferociously climb the wall and come down on the other side but he\",does it without any ropes attached to him.,completes to take the bottom rock off again.,continues to kick himself off his arms in the air.,falls covering the room.,is very tired and tired.,gold0-orig,pos,unl,unl,unl,pos,The man continues touching the rock and begins stretching.,\"After, he begins to actively and ferociously climb the wall and come down on the other side but he\"\nanetv_qb_5_9xDYqc,2627,An African American male is standing outside next to a tall rock wall. The man,continues touching the rock and begins stretching.,continues to show how to kill the ball.,pauses to smash the wall into a wall.,mounts the pommel and moves from the springs area over and over again.,,gold0-orig,pos,unl,unl,unl,n/a,An African American male is standing outside next to a tall rock wall.,The man\nanetv_K1z2fiB9pUM,17636,\"Dozens of people are seen riding up a large, dusty hill while the camera pans around people riding on dirt bikes. The people\",ride all along the path while several others watch on the side and follow the riders as the continue riding along the track.,go into mountain with another person riding in top and mountain skis.,speak to one another with lead and the kids being interviewed as well as stopping.,continue riding around the dirt and riding on the boards while more shots are shown of people riding in tubes along the trail.,,gold1-orig,pos,unl,pos,pos,n/a,\"Dozens of people are seen riding up a large, dusty hill while the camera pans around people riding on dirt bikes.\",The people\nanetv_I5g6I-FOguQ,16850,A group of people gather to watch and the size of the wave is illustrated. A surfer,falls ahead of the wave.,walks through a straight shots of water polo.,\"carries on board through the water, after people advance across the sea.\",dives onto the swimming pool.,is skiing up the great hill.,gold0-orig,pos,unl,unl,unl,unl,A group of people gather to watch and the size of the wave is illustrated.,A surfer\nanetv_I5g6I-FOguQ,18571,\"A person at the top of a hill, standing on a stone balcony is seen recording the scene below in the ocean. A man\",is seen in wild and rough waters surfing in the water with people watching with binoculars nearby.,is standing in a gym preparing to play jump martial arts techniques.,begins fells in the seat after falling down evenly.,is kneeling behind in the pit of a bridge with his hands caught ice fish.,is then shown inside a welding watermelon using a tool in the background.,gold0-orig,pos,unl,unl,unl,unl,\"A person at the top of a hill, standing on a stone balcony is seen recording the scene below in the ocean.\",A man\nanetv_I5g6I-FOguQ,18570,\"A news report covers a story about a surfer who is captured on camera surfing incredibly high waves in the ocean. A person at the top of a hill, standing on a stone balcony\",is seen recording the scene below in the ocean.,sinks holding in a yellow and silver kayak and demonstrates how to prepare to paddle using the paddle for a long time.,performs a fishing line with the same man and several surfboard.,flying into the lake.,,gold0-orig,pos,unl,unl,pos,n/a,A news report covers a story about a surfer who is captured on camera surfing incredibly high waves in the ocean.,\"A person at the top of a hill, standing on a stone balcony\"\nanetv_I5g6I-FOguQ,16849,A man stands high on a manmade cliff as a giant wave crashes nearby. A surfer,rides the giant wave in several different clips.,falls flat and falls off the water below.,drives a white catamarans into the ocean currents.,is attacked again a car with a tail pulls his hood.,,gold0-reannot,pos,unl,unl,unl,n/a,A man stands high on a manmade cliff as a giant wave crashes nearby.,A surfer\nanetv_fPtKNj6jCPU,16951,A man and woman are standing together on a stage. The woman,\"is throwing balls, trying to get them into the cups as they rotate.\",throws a tennis match into a camera for a dance while the group watches.,twists her arm around her neck as she performs to perform in the air.,is seen sitting on a couch demonstrating exercise exercise moves.,begin playing and dancing tango on a stage.,gold0-orig,pos,unl,pos,pos,pos,A man and woman are standing together on a stage.,The woman\nanetv_fPtKNj6jCPU,16952,\"The woman is throwing balls, trying to get them into the cups as they rotate. The man\",talks as he joins in the game.,started to punch and fell on the table in front of the young man.,\"wanders over, throwing a shot put.\",continues hitting the ball to the stick and came up the table.,,gold0-orig,pos,unl,unl,unl,n/a,\"The woman is throwing balls, trying to get them into the cups as they rotate.\",The man\nanetv_fPtKNj6jCPU,7305,\"As he is talking, a young lady with long curly hair begins tossing balls across the able trying to get them in the cup. After he is done talking, the man joins in and the cups on the table\",begin to spin around as they try to score.,\"clink, and neither of they hug far in front of her face.\",begin to get instructions and shake together.,gives a thumbs up.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As he is talking, a young lady with long curly hair begins tossing balls across the able trying to get them in the cup.\",\"After he is done talking, the man joins in and the cups on the table\"\nanetv_fPtKNj6jCPU,7304,\"A man in a black shirt and grey cargo is standing next to a beer pong table talking to the camera. As he is talking, a young lady with long curly hair\",begins tossing balls across the able trying to get them in the cup.,is talking to the camera cutting a woman's hair with a other toy machine.,stands at him both and a black logo appears on the screen.,comes by with a big black eye and a pistol like an old man.,walks over and talking to the camera while standing next to an upside down table.,gold0-reannot,pos,unl,unl,unl,pos,A man in a black shirt and grey cargo is standing next to a beer pong table talking to the camera.,\"As he is talking, a young lady with long curly hair\"\nanetv_uu4_cV49pMI,8560,A person is seen lying on the ground with another person running from behind. The person running then falls and others around them,help and drink water.,run around in the end.,watch and cheer his face up more.,continuously when another person sits on the ground.,get on the shoulder.,gold0-orig,pos,unl,unl,unl,unl,A person is seen lying on the ground with another person running from behind.,The person running then falls and others around them\nanetv_Z7ZODw0C_hY,6520,He then walks up and down the field and cuts the grass growing from the sides. He,continues walking up and cutting the weeds while looking back to speak to the camera.,\"braiding the sides, still tucked on the ground, leg moves as he goes around the ground.\",finishes the cake and ends the call on a plate.,snags the frisbees and continues to play fetch.,moves his eye around the area in the end.,gold0-orig,pos,unl,unl,unl,pos,He then walks up and down the field and cuts the grass growing from the sides.,He\nanetv_Z7ZODw0C_hY,11042,He is talking about cultivating the vegetable plants. He,uses shears to cut the leaves off the tops of the plants.,stands up and tired out his video.,goes brightly on the lens for a while.,gets over a clear bucket to look out of the window.,folds it and assembles its carving.,gold0-reannot,pos,unl,unl,unl,unl,He is talking about cultivating the vegetable plants.,He\nanetv_Z7ZODw0C_hY,6519,A man is seen speaking to the camera in an indoor field. He then,walks up and down the field and cuts the grass growing from the sides.,lifts the balls that leads into him running down a mat and laying down laying down on a mat.,begins his routine on the sandy bars while the camera pans all around him.,walks along the path and begins grooming some around with his stick.,walks around and begins playing the game and panning it around.,gold1-reannot,pos,unl,unl,unl,unl,A man is seen speaking to the camera in an indoor field.,He then\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72391,14757,The others stare at him. Someone,is the last to lower his gaze.,shoots at the drummer who stands awkwardly.,puts her wrist down as they dance.,glances aside and looks at the young someone.,moves up in front of a dozen and stand in front of them.,gold0-orig,pos,unl,unl,unl,pos,The others stare at him.,Someone\nanetv_V4_SJyhRGqA,13895,A man has lined up numerous colored balls. He,\"moves down the line, hitting each ball through the goal.\",creates the lights in an arena.,puts the ball one across the bottom and flips several times off the floor.,puts some powder into a loaded fire.,begins to scuffs dirt from the tip.,gold0-orig,pos,unl,unl,unl,unl,A man has lined up numerous colored balls.,He\nanetv_V4_SJyhRGqA,13894,A game of croquette is in progress. A man,has lined up numerous colored balls.,hits him and push him.,returns to shore to make the sand castle.,is talking into a microphone while he exercise.,rushes out and the man stands.,gold0-orig,pos,unl,unl,unl,pos,A game of croquette is in progress.,A man\nanetv_WV-Sf5-aCcc,17282,He begins moving back and fourth moving his body around. He,continues moving around and speaking when another woman comes into frame and moves around.,continues them around different areas and leads into one relaxing using a ladder and ends by marching away.,continues to stand while looking off into the distance.,continues to move around the area using various sticks.,,gold1-orig,pos,unl,pos,pos,n/a,He begins moving back and fourth moving his body around.,He\nanetv_WV-Sf5-aCcc,17281,A man is seen standing in front of the camera and holding his arms out. He,begins moving back and fourth moving his body around.,stops to speak to the camera and begins pushing himself up.,walks in all along the fence while the camera watches in the distance.,brushes another mans hair and ends by speaking to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A man is seen standing in front of the camera and holding his arms out.,He\nanetv_WV-Sf5-aCcc,5354,The man stops and stands upright. A lady,joins the man in the room.,stops before him does flips.,goes away and controls his hair.,is sitting nearby on the machine to watch.,wearing a helmet is talking to the camera.,gold1-orig,pos,unl,unl,unl,pos,The man stops and stands upright.,A lady\nanetv_WV-Sf5-aCcc,5356,The lady and the man dance around each other in a circle. The people,finish and shake hands.,continue fencing and capture the girl as they play.,shake hands and walk away.,smile and laugh with one another.,dance in the middle of the dance floor.,gold1-reannot,pos,unl,pos,pos,pos,The lady and the man dance around each other in a circle.,The people\nanetv_WV-Sf5-aCcc,5353,\"The man turns to the right and continues, then turns forward. The man\",stops and stands upright.,performs a deadly rendition and backs away.,finishes and jumps several times.,climbs up the rear of the yellow vehicle then runs off.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The man turns to the right and continues, then turns forward.\",The man\nanetv_WV-Sf5-aCcc,5350,We see a man stand in a room talking. The man then,begins to demonstrate capoeira moves slowly.,starts welding a metal object with a rubber tool.,cleans the woman's face.,turn to a drum.,does sit ups on a carpet.,gold0-reannot,pos,unl,pos,pos,pos,We see a man stand in a room talking.,The man then\nanetv_WV-Sf5-aCcc,5355,A lady joins the man in the room. The lady and the man,dance around each other in a circle.,begin playing the drums in the end.,dance down the street and leave.,put their arm around him.,give the woman a kiss.,gold0-reannot,pos,unl,unl,unl,unl,A lady joins the man in the room.,The lady and the man\nanetv_WV-Sf5-aCcc,5351,The man then begins to demonstrate Capoeira moves slowly. The man then,begins to move quickly.,mounts and moves a piece.,demonstrates a gymnastic techniques throw.,jumps a bit and moves forward fast.,,gold0-reannot,pos,unl,unl,pos,n/a,The man then begins to demonstrate Capoeira moves slowly.,The man then\nanetv_WV-Sf5-aCcc,5349,We see the opening title screen. We,see a man stand in a room talking.,see a man and women playing a game of soccer in a locker room.,see three second men in a cargo ring.,see a group of men walking in a raft.,see the title screen.,gold1-reannot,pos,unl,unl,unl,pos,We see the opening title screen.,We\nanetv_WV-Sf5-aCcc,5352,The man then begins to move quickly. The man,\"turns to the right and continues, then turns forward.\",\"continues hitting the stick to the bars, occasionally punching but pushes it back.\",stand to arm up and also speak to the camera next to an angle of the ball.,spins one another and continues to jump in a smaller torso.,,gold1-reannot,pos,unl,unl,pos,n/a,The man then begins to move quickly.,The man\nanetv_xj-f9hzQ3Lc,3721,Someone calls a mark and they all stand up on their pedals preparing to be released. The bar is finally let down and the boys,begin racing throughout the track that's covered in hills as people stand throughout it to watch them.,pull out of the water with the camera another of the air.,\"running away all pour out of the car, music can be seen farther on.\",\"do a final pull on the rake, only more move for it to begin to fall off the rope.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone calls a mark and they all stand up on their pedals preparing to be released.,The bar is finally let down and the boys\nanetv_xj-f9hzQ3Lc,3720,Several dirt bikers are standing under a garage behind a stand preparing to race. Someone calls a mark and they all,stand up on their pedals preparing to be released.,go back to gymnasts again.,go back to white.,move one down together.,throw an orange stick into a knot.,gold0-orig,pos,unl,unl,unl,unl,Several dirt bikers are standing under a garage behind a stand preparing to race.,Someone calls a mark and they all\nlsmdc3044_KNOCKED_UP-20979,4782,Someone eyes the covers one by one. With her mouth agape she,\"drops the books into the bag, then stares off with a pensive expression.\",scratches the top of the receiver and reaches for the windshield.,leans down and rubs her mouth.,looks up as two decrepit troopers ram into her.,purses her lips and steps in the room over the shrimp water.,gold1-orig,pos,unl,unl,unl,unl,Someone eyes the covers one by one.,With her mouth agape she\nlsmdc3044_KNOCKED_UP-20979,4780,Someone notices a shopping bag protruding from the cabinet. She,finds three baby books.,looks into the laptop and returns to a desk talking to the photo.,realizes the sword in his box.,reads a stokes - derelict living knife.,\"lifts off her bra, revealing her bra.\",gold0-orig,pos,unl,unl,unl,unl,Someone notices a shopping bag protruding from the cabinet.,She\nlsmdc3044_KNOCKED_UP-20979,4781,She finds Three baby books. Someone,eyes the covers one by one.,wraps the robe around someone's neck.,hangs up the other phone.,jumps off the train.,races towards the hospital bed.,gold0-orig,pos,unl,unl,unl,unl,She finds Three baby books.,Someone\nanetv_7VWp-Dfvqkg,18340,One man then leads into playing harmonica on the stage while others watch on the side. The man,continues playing while others walk in and out of frame as well as play.,finishes while the men play and play and tricks with them.,continues playing while the camera jostles as people continue to play the drums.,continues dancing along the stage and ends by speaking to the camera.,continues playing and ends by walking into frame and ends by warming up with others.,gold1-orig,pos,unl,pos,pos,pos,One man then leads into playing harmonica on the stage while others watch on the side.,The man\nanetv_7VWp-Dfvqkg,18339,A man is seen speaking into a microphone with another man on stage. One man then,leads into playing harmonica on the stage while others watch on the side.,puts his hands into the microphone and speaks to a boy.,finishes onto a stage and begins lifting his leg up.,stands up and walks into a hookah pit.,begins playing a set of drums while moving their hands.,gold1-reannot,pos,unl,unl,unl,pos,A man is seen speaking into a microphone with another man on stage.,One man then\nanetv_8zfA20hcc0o,3294,The people move up and down the court while the camera follows their movements. Many people,watch on the sides as the group continues to play.,are seen still playing the game with the person all on the sidelines ending their routine.,continue to kick with as up and speak to one another.,walk around around the cutting and dancing around the area while three men.,continue to walk around while others watch on the side.,gold0-orig,pos,unl,unl,unl,pos,The people move up and down the court while the camera follows their movements.,Many people\nanetv_8zfA20hcc0o,3293,Two men are seen passing a ball to one another and leads into a group of people playing soccer. The people,move up and down the court while the camera follows their movements.,watch on the side and continue hitting the ball back and fourth.,hit a croquet ball against one another and end by hitting a ball.,continues moving back and fourth.,speaks to the camera.,gold1-orig,pos,unl,unl,pos,pos,Two men are seen passing a ball to one another and leads into a group of people playing soccer.,The people\nanetv_M9og58TMAm0,7598,A woman is seen moving up and down on an exercise bar while several shots are shown of her exercising. She,'s shown again holding weights and doing exercises while standing on the beam as well as laying.,is seen before the camera and is come down with video shots and shown taking two objects out of her.,zooms through her hair and demonstrates how to push - ups and not speak to the camera.,is seen demonstrating how to properly use a machine and stand behind her under the surface.,pushes up a stack of equipment while talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen moving up and down on an exercise bar while several shots are shown of her exercising.,She\nanetv_El_q7DhzArg,9744,A woman in a baby blue shirt is at a park practicing. She is outside all by herself and no one else,seems to be around at al.,is getting her behind.,is in her room.,is holding the kid.,walks behind the woman.,gold0-orig,pos,unl,unl,unl,pos,A woman in a baby blue shirt is at a park practicing.,She is outside all by herself and no one else\nanetv_El_q7DhzArg,9745,She is outside all by herself and no one else seems to be around at al. It is daytime outside and she,is on some concrete near the grass.,is the costume of whipping it all in the air.,is talking about what they happened.,gets them chestnut wet.,,gold0-orig,pos,unl,unl,unl,n/a,She is outside all by herself and no one else seems to be around at al.,It is daytime outside and she\nanetv_El_q7DhzArg,9746,It is daytime outside and she is on some concrete near the grass. She has a baton and she,does some cool trick with it.,makes a dash for it.,\"signature, forth, head.\",\"takes another bar by the hand that does a spin, and does it correctly in slow motion.\",flips around one of the platforms.,gold1-orig,pos,unl,unl,unl,unl,It is daytime outside and she is on some concrete near the grass.,She has a baton and she\nanetv_El_q7DhzArg,8820,The girl in a blue shirt is twirling her baton. The girl,threw the baton up in the air and raised her leg.,starts hula hooping with her hand.,does a belly dance routine and performs a routine on the parallel bars.,proceeds to twirl a baton on her neck as get a better score.,starts twirling the baton.,gold0-orig,pos,unl,unl,unl,pos,The girl in a blue shirt is twirling her baton.,The girl\nanetv_jHyWtrhNTTk,5525,We then see a man do a high jump at 5'9. We then,see the man jump at 6 '.,see people performing jump roping and jumping on a pommel stage.,\"see a replay blur, and see several kids surfing in the water.\",see the skier rowing on over boats.,see people leading clips of guns.,gold0-orig,pos,unl,unl,unl,unl,We then see a man do a high jump at 5'9.,We then\nanetv_jHyWtrhNTTk,5526,We then see the man jump at 6 '. We then see the man jump at 6'2 and he,knocks the pole over.,asks worriedly for a moment.,cuts clothes in half.,lands on another skateboard.,falls one times playing field soccer.,gold1-orig,pos,unl,unl,unl,unl,We then see the man jump at 6 '.,We then see the man jump at 6'2 and he\nanetv_jHyWtrhNTTk,5528,We see him try 6'2 again and not hit the pole. The man,walks to the camera and turns it off.,holds for a guy when he keeps trying.,is leaning across the pole in the money area.,stuck on his board smokes the red time.,moves the hammer from the wall and throws it onto.,gold0-orig,pos,unl,unl,unl,unl,We see him try 6'2 again and not hit the pole.,The man\nanetv_jHyWtrhNTTk,5527,We then see the man jump at 6'2 and he knocks the pole over. We,see him try 6'2 again and not hit the pole.,see the man exercising.,see a lady and another dog skateboard.,see the end credits and the gate runs fast.,see the construction closing.,gold0-orig,pos,unl,unl,unl,unl,We then see the man jump at 6'2 and he knocks the pole over.,We\nanetv_8zq6C0SRyDQ,15390,\"Woman is slicing a chocolate cake and its decorating it, put a second floor and some pink fondam. woman\",took a marker and write a letter in a pink foam craft and trimming it in a candy.,jumps in front of a kitchen in a kitchen holding butter and sauce.,puts wax on the metal present and decorate the cake until the little cake is delivered.,is mixing tea in a martini.,,gold1-orig,pos,unl,unl,unl,n/a,\"Woman is slicing a chocolate cake and its decorating it, put a second floor and some pink fondam.\",woman\nanetv_8zq6C0SRyDQ,7627,She frosts the cake layers with a knife. She then,\"decorates the cake, showing off the finished product.\",begins a red - frosting bakes around the leaves by adding butter a spatula to the side.,\"bowl at the tea, shyly.\",cuts the paper and cuts up the paper with scissors.,adds white wax to clean the dog's.,gold0-orig,pos,unl,unl,unl,unl,She frosts the cake layers with a knife.,She then\nanetv_8zq6C0SRyDQ,7626,\"A woman is standing in her kitchen, making a cake. She\",frosts the cake layers with a knife.,puts the teddy in a jack.,is demonstrating how to prepare for a drink.,has sugar and sugar into a bar.,sets it in the bowl until it starts dried up.,gold0-orig,pos,unl,unl,unl,unl,\"A woman is standing in her kitchen, making a cake.\",She\nanetv_8zq6C0SRyDQ,15392,Woman walks into a party with a lot of kids holding the cake on her hands. cake,is in a counter with some recipes in the back and in a table full of candies.,is seen at the white table.,hoops shown are seen as the girl is in shown talking to the camera.,is in the center and she picks up a other egg and add it to the pumpkin.,is then poured onto a tray and a cookie globe falls into the top.,gold0-reannot,pos,unl,unl,unl,unl,Woman walks into a party with a lot of kids holding the cake on her hands.,cake\nanetv_8zq6C0SRyDQ,15391,Woman took a marker and write a letter in a pink foam craft and trimming it in a candy. woman,walks into a party with a lot of kids holding the cake on her hands.,puts the iron on a large wooden box and lines it with a wooden box.,looks at the camera and shows how to use moves peanut clipper.,does a purple fire behind the rod.,\"takes out the object and picks it up, then loads the rake.\",gold0-reannot,pos,unl,unl,unl,unl,Woman took a marker and write a letter in a pink foam craft and trimming it in a candy.,woman\nlsmdc0004_Charade-47361,4072,He reaches into the desk drawer and pulls out a passport which he hands to her. The cover,indicates that it is swiss.,gets answers in the order.,rests a window beside the envelope.,is lined with blood beneath a marker.,is drawn on a military poster.,gold0-orig,pos,unl,unl,unl,unl,He reaches into the desk drawer and pulls out a passport which he hands to her.,The cover\nlsmdc0004_Charade-47361,4074,Someone's hand opens it to a picture of a man - - the man we saw in someone's photo. He,hands her another passport.,holds up the mobile.,sits on an boulder dictaphone on the background.,is taken aback and fumbles his emotions.,,gold0-orig,pos,pos,pos,pos,n/a,Someone's hand opens it to a picture of a man - - the man we saw in someone's photo.,He\nlsmdc0004_Charade-47361,4071,\"He slides a sheet of paper and pen across to her, then starts to put the things back into the basket while he speaks. He\",reaches into the desk drawer and pulls out a passport which he hands to her.,spins around and writes resignedly.,\"begins close behind her strikes, but continues to step further and he moves into the bow and the crowd is exactly dwarfed.\",\"walks away, and lowers his phone.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He slides a sheet of paper and pen across to her, then starts to put the things back into the basket while he speaks.\",He\nlsmdc0004_Charade-47361,4073,The cover indicates that it is Swiss. Someone's hand,opens it to a picture of a man - - the man we saw in someone's photo.,opens back.,gets caught in the confusion with the rafters.,\"giggles as it opens its mouth, light spilling out.\",,gold0-reannot,pos,unl,unl,unl,n/a,The cover indicates that it is Swiss.,Someone's hand\nlsmdc0011_Gandhi-52306,13730,\"Near to breakdown, he gestures around the empty house. He\",can not go on.,looks around the basket then goes outside wandering a manicured area.,\"dodges a heavy ball, then runs off.\",is swaying with even changes shoes.,thrusts his captive off its shoulders.,gold0-orig,pos,unl,unl,unl,unl,\"Near to breakdown, he gestures around the empty house.\",He\nlsmdc0011_Gandhi-52306,13732,\"We see two young men, one seventeen perhaps, the other older, and a girl, sixteen. And finally someone's wife, sitting near someone, the two women listening together but someone's wife\",\"looks like a woman who has given up, her hair is dead and hardly combed, her sari dirty.\",is strangely bruised and bored by this unseen at the group while someone comes to help him.,\"lies still, collecting their glasses.\",is taken in at the figures of the soldiers with their sideline.,\"is eating the pizza plate, having to laugh.\",gold0-orig,pos,unl,pos,pos,pos,\"We see two young men, one seventeen perhaps, the other older, and a girl, sixteen.\",\"And finally someone's wife, sitting near someone, the two women listening together but someone's wife\"\nlsmdc0011_Gandhi-52306,13731,\"Someone looks around the crude dwelling, almost nothing remains. We\",\"see two young men, one seventeen perhaps, the other older, and a girl, sixteen.\",turns to face the forbidden another.,\"walk below softened teens and finally someone, the men photograph, lean toward the giant bowl.\",'ve been frustration by in a welcoming pace.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone looks around the crude dwelling, almost nothing remains.\",We\nanetv_ng14GLT_hHQ,9321,He is using a bucket of paints and a canvas. He,uses the paints to create an image on the canvas.,carves around a large line of fire.,begins mopping the floor.,finishes the leaves on the carpet and pulls up a paintbrush.,\"he sets the hoses down with a plate of strainer, then talks off any more of the foliage with pure tops.\",gold0-orig,pos,unl,unl,unl,unl,He is using a bucket of paints and a canvas.,He\nanetv_ng14GLT_hHQ,3425,A man is seen on his knees surrounded by painting tools and materials. He,\"mixes some pain and paints part of a canvas, then does another color.\",demonstrates how to properly vacuum off the bike while still speaking to the camera.,\"looks at the camera and speaks, gesturing to a associate sitting in a lake.\",use the rollers to pull up the rug and fold the ends by putting them on.,removed his hands and leads into a person knitting and looking into the wall.,gold0-reannot,pos,unl,unl,unl,pos,A man is seen on his knees surrounded by painting tools and materials.,He\nanetv_ng14GLT_hHQ,3426,\"He mixes some pain and paints part of a canvas, then does another color. He\",\"keeps adding paint along the way, sometimes directly to the canvas.\",is presented by various types of animation.,cleans on the product.,\"inspects the top of the murky, his shoe covered, leather and trims.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"He mixes some pain and paints part of a canvas, then does another color.\",He\nanetv_ng14GLT_hHQ,9320,A man is kneeling on the kitchen floor. He,is using a bucket of paints and a canvas.,uses a knife to sharpen his sword.,pulls on a shirt and cuts a shirt by the camera.,is welding with a steel tool.,is using brush to shave the grass in front of him.,gold0-reannot,pos,unl,unl,unl,unl,A man is kneeling on the kitchen floor.,He\nlsmdc3027_GET_HIM_TO_THE_GREEK-12293,10259,It shows a petite blonde surgeon. Someone,lifts a pair of headphones.,runs his hand over her sister's head.,touches his wrist as he turns them on.,smiles delightedly and drinks from the whiskey bottle.,sets someone behind the back window.,gold1-reannot,unl,unl,unl,unl,unl,It shows a petite blonde surgeon.,Someone\nanetv_dyLGepr7VR0,16200,Two men and a woman are seen walking up onto a stage while a group of people are seen behind them in mirrors. The three then,perform a dance routine while the people in the audience follow from behind.,begin performing a pit routine with one another when they all begin to dance together.,enjoy a routine wearing batons in the stage and begin playing with one another as well as well.,\"move out together in unison, performing martial arts, grabbing them from their sides and lowering them with their knees.\",,gold1-reannot,pos,unl,unl,unl,n/a,Two men and a woman are seen walking up onto a stage while a group of people are seen behind them in mirrors.,The three then\nanetv_dyLGepr7VR0,16201,The three then perform a dance routine while the people in the audience follow from behind. The man,pump up the crowd and continue dancing as the others follow along in the mirror.,dismounts and shows the blonde.,stops and people salute to each other.,dance around the stage while people and the woman are playing with others.,jumps up and plays in the same slow dance manner.,gold0-reannot,pos,unl,unl,pos,pos,The three then perform a dance routine while the people in the audience follow from behind.,The man\nanetv_Eb_9_Bcij0Q,3489,A bearded man is seen giving a thumbs up to the camera and begins shaving his beard all while moving in fast time. Another person,is seen wandering around while the man continues shaving his face and ends with a close up of his new face.,is then seen going up and speaking to the camera as well as more clips of people standing back to her.,is seen from cuts to one in images and shaving while looking back to looking to the camera and laughing to the camera afterwards.,laughs and watches him play with them up in the air and smiling while holding his hand.,is seen speaking while his hairdresser still shows his face and rubbing lotion down his chin.,gold1-orig,pos,unl,unl,unl,pos,A bearded man is seen giving a thumbs up to the camera and begins shaving his beard all while moving in fast time.,Another person\nanetv_Eb_9_Bcij0Q,2215,\"In the middle of it, he grabs his phone to take pictures before he continues to shave off his beard. Once complete, he\",puts the clippers down and stands still to see what he's done.,\"takes another step, then washes them in a clear jar.\",cuts books off of a table and nods at the camera a third time.,looks outside and licks his lips momentarily.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the middle of it, he grabs his phone to take pictures before he continues to shave off his beard.\",\"Once complete, he\"\nanetv_Eb_9_Bcij0Q,2214,\"He then takes a razor and begins going over his beard and lining it up. In the middle of it, he\",grabs his phone to take pictures before he continues to shave off his beard.,repeats into brief bites and begins to scream for the beat of the sound.,highlights a scissors and leans over the bush.,goes back towards the brush and begins shaving the sides of the beard until it is trimmed again.,picks up a picture of an electric razor and points circles around the neighborhood.,gold0-orig,pos,unl,unl,unl,unl,He then takes a razor and begins going over his beard and lining it up.,\"In the middle of it, he\"\nanetv_Eb_9_Bcij0Q,2213,A man is standing in the bathroom and puts two thumbs up while showing his beard and head. He then,takes a razor and begins going over his beard and lining it up.,demonstrates how to properly put his legs by the face or show to the camera.,\"returns to the paint mirror, grabs his shoes and then begins brushing his hair.\",takes off the products and continues to paint the fingernail further on how to clean it.,,gold0-orig,pos,unl,unl,unl,n/a,A man is standing in the bathroom and puts two thumbs up while showing his beard and head.,He then\nanetv_Ule69iMpA3Y,16299,A woman is shown working out on a step doing some step aerobics. She,moves to one side of the step and continues to go up and down doing the aerobics.,performs doing multiple participants for a high jump.,explains the correct technique to explain the techniques.,turns to free lands on her knees to the floor and continues to dance.,gets up to her feet getting bongos to jumping equipment.,gold0-orig,pos,unl,unl,unl,unl,A woman is shown working out on a step doing some step aerobics.,She\nanetv_Ule69iMpA3Y,14476,The lady moves to the right. The lady,moves back to the middle of the step.,shows us the taps lens.,slides counter and checks the presentation.,slides the arm of the bars to the right head as the camera pans to reveal the lady playing.,plays bagpipes with the tail.,gold1-reannot,pos,unl,unl,unl,unl,The lady moves to the right.,The lady\nanetv_Ule69iMpA3Y,14475,A lady in a gym goes up and down on an exercise step. The lady,moves to the right.,kicks the man with the lotion from the ankle stand.,takes her place to the gym.,lifts her body to the floor as well.,does a hand stand.,gold0-reannot,pos,unl,unl,unl,unl,A lady in a gym goes up and down on an exercise step.,The lady\nlsmdc1012_Unbreakable-6943,9453,\"He lays the cloth on his newspaper, unwraps the stubby, black revolver, looks at it, re - wraps it, and replaces it. Feeling under the jeans again, he\",removes a battered folder.,peers down the top of the jumping tree.,slips on another biker.,\"stops the table, revealing black.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He lays the cloth on his newspaper, unwraps the stubby, black revolver, looks at it, re - wraps it, and replaces it.\",\"Feeling under the jeans again, he\"\nlsmdc1012_Unbreakable-6943,9452,\"He opens the door to a walk - in wardrobe, switches on the bare bulb, and feels under some folded jeans on a shelf above his head. He\",removes a piece of gray cloth from which a gun butt protrudes.,picks out a waterfront and finds it empty.,turns and gaze at him.,swats through the front door.,hides in the dusky doorway.,gold0-orig,pos,unl,unl,pos,pos,\"He opens the door to a walk - in wardrobe, switches on the bare bulb, and feels under some folded jeans on a shelf above his head.\",He\nlsmdc1012_Unbreakable-6943,9449,\"Someone is sitting up on a bed, a pillow behind his head, reading the paper. Someone\",\"is asleep, lying across him.\",\"glances through, then checks the box.\",is making his coffee on the handle of the boat support.,eyes someone as it slides off the door.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone is sitting up on a bed, a pillow behind his head, reading the paper.\",Someone\nlsmdc1012_Unbreakable-6943,9456,A photo of a young someone in football gear looks out from another story. He,\"turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches.\",turns his face in the air and steps forward.,\"remains spar in his seat, surrounded by a baby in an actor.\",sits his magazine and is rooted to the spot.,watches him with audience.,gold0-orig,pos,unl,unl,unl,unl,A photo of a young someone in football gear looks out from another story.,He\nlsmdc1012_Unbreakable-6943,9460,\"He glances across the room, quickly closes, and replaces the folder under his jeans. Someone\",is outside his door.,\"stares into the bedroom, then steps in.\",shifts a perplexed gaze.,files out onto his shoulder.,pushes the call back impatiently.,gold0-orig,pos,unl,unl,unl,unl,\"He glances across the room, quickly closes, and replaces the folder under his jeans.\",Someone\nlsmdc1012_Unbreakable-6943,9459,\"He looks back at the picture of the car, obviously, taken at night. It\",\"'s lying just beyond a bend in a tree - lined road, upside down in a ditch.\",tips from someone's side as the building crumbles.,walks towards him.,\"looking frizzy, relieved.\",scans the harbor to the front of the elegant reception counter.,gold0-orig,pos,unl,unl,unl,unl,\"He looks back at the picture of the car, obviously, taken at night.\",It\nlsmdc1012_Unbreakable-6943,9450,One arm flung around him. Someone,lowers the paper and glances at his son.,looks around; someone does n't realize he can do.,releases the crowd of people to watch.,slams and strangles him with the father's death.,\"sits at them, the automaton's head bowed.\",gold0-orig,pos,unl,unl,unl,unl,One arm flung around him.,Someone\nlsmdc1012_Unbreakable-6943,9457,\"He turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches. He\",stares at it frowning.,\"is stretching but conscious, basic and straining.\",holds up his hand to shield the flying ball.,\"come in score receiving different videos then says com, but missed it.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He turns over more clippings, copies of the first stories, pages of sport results, more photos of football matches.\",He\nlsmdc1012_Unbreakable-6943,9451,Someone lowers the paper and glances at his son. He,\"closes the paper, and very carefully slides out from under the sleeping boy.\",unbuckles the seat belt and gives someone a sunny kiss.,\"glances at the prisoner, then holds up one dark pick - ax.\",looks uncertainly towards someone's laptop.,,gold0-orig,pos,unl,unl,pos,n/a,Someone lowers the paper and glances at his son.,He\nlsmdc1012_Unbreakable-6943,9454,\"Feeling under the jeans again, he removes a battered folder. He\",opens it and flips through old newspaper clippings about american football.,\"his office, he crosses around a room and crosses back to the living room, where one of the boys hurries to the dorm\",pulls out a hidden knife.,refills the cashier 'cold - filled check.,spots the scroll on the lamp which reads up the sustained.,gold0-orig,pos,unl,unl,unl,unl,\"Feeling under the jeans again, he removes a battered folder.\",He\nlsmdc1012_Unbreakable-6943,9455,He opens it and flips through old newspaper clippings about American football. A photo of a young someone in football gear,looks out from another story.,buys a thousand with them.,wears a hawaiian shirt then boxes with someone.,sees someone talking into the shovel.,stands up and skateboards into the camera.,gold0-reannot,pos,unl,unl,unl,unl,He opens it and flips through old newspaper clippings about American football.,A photo of a young someone in football gear\nlsmdc1012_Unbreakable-6943,9458,He stares at it frowning. He,\"looks back at the picture of the car, obviously, taken at night.\",switches at the closing scene.,focuses on someone's father's empty laptop.,\"stares at her thoughtfully, glances at her long, rimmed lips.\",,gold1-reannot,unl,unl,unl,unl,n/a,He stares at it frowning.,He\nanetv_32-Bxdbf3mQ,9806,A man in a red shirt drives an orange tractor around the lawn. A dog,runs around the yard.,walks past the dog.,runs to help him.,is mowing the lawn next to the bushes.,is sitting in a garbage can.,gold0-orig,pos,unl,unl,unl,unl,A man in a red shirt drives an orange tractor around the lawn.,A dog\nlsmdc1056_Rambo-97108,3565,The peasants scramble towards someone and the mercenaries. Someone,joins them and speaks to someone.,hurriedly rolls up to the tiled floor.,rushes into the building.,stares into the half - rise.,rolls to his side.,gold1-orig,pos,unl,unl,unl,pos,The peasants scramble towards someone and the mercenaries.,Someone\nlsmdc1056_Rambo-97108,3555,\"They stumble desperately through the water. In slow motion, the peasants' feet\",slosh through the water.,tread in the air.,emerge from their touch.,rest alike on a bump.,glide on the water.,gold0-orig,pos,unl,unl,pos,pos,They stumble desperately through the water.,\"In slow motion, the peasants' feet\"\nlsmdc1056_Rambo-97108,3562,A soldier gets an arrow in the back as he tries to escape and then one in the head. Another soldier,catches one in the leg and eye.,rides injured and then another two punches in the back.,runs past the course and runs down a field carrying towels for people hitting.,stops inside to show the position of excitement.,approaches and aim fires the other behind.,gold0-orig,pos,unl,unl,unl,unl,A soldier gets an arrow in the back as he tries to escape and then one in the head.,Another soldier\nlsmdc1056_Rambo-97108,3549,Someone looks across at someone. The soldiers,toss primed grenades into the paddy field.,ride past an argument between the two people.,stand as it falls past.,\"saunter back to reveal someone, who continues to follow.\",jumps across the bones watching the mustached soldiers.,gold0-orig,pos,unl,unl,unl,unl,Someone looks across at someone.,The soldiers\nlsmdc1056_Rambo-97108,3564,He falls into the paddy field onto a grenade. The peasants,scramble towards someone and the mercenaries.,listen to their cells.,tumble from stone players into the sea.,\"fall backwards onto the white plate, collide with each other, burning by the nazi.\",pass among waste trees that are trickling on their rocky.,gold1-orig,pos,unl,unl,unl,unl,He falls into the paddy field onto a grenade.,The peasants\nlsmdc1056_Rambo-97108,3568,Someone draws an arrow on someone and aims it at the bald man's right eye. The other mercenaries,cover someone with their weapons and glance at each other worriedly.,stop their regular minnesota - shaped attention.,look at the guard as a gun flies out of his cigarette.,scan the cloudy street in the rear view mirror.,,gold0-orig,pos,unl,unl,unl,n/a,Someone draws an arrow on someone and aims it at the bald man's right eye.,The other mercenaries\nlsmdc1056_Rambo-97108,3563,Another soldier catches one in the leg and eye. He,falls into the paddy field onto a grenade.,'s already completes the serve.,sends the discus over slightly in the air.,gets off his rope and runs out of the room carrying someone.,,gold1-orig,pos,unl,unl,pos,n/a,Another soldier catches one in the leg and eye.,He\nlsmdc1056_Rambo-97108,3553,One of the troops points his rifle into the air. The peasants,take the gunfire as the signal to begin a race across the paddy field.,fly as fast as they can.,are strewn with debris.,trade additional tosses as the horsemen climb to the sun - strewn bluff below a blazing entrance on a new sun.,,gold0-orig,pos,unl,unl,unl,n/a,One of the troops points his rifle into the air.,The peasants\nlsmdc1056_Rambo-97108,3560,A soldier raises his rifle. He,gets an arrow in the back.,drops someone's gun and fires.,lands in a hole in the dense skies below.,watches someone's sword on fire as he returns fire.,stops and checks his wristwatch.,gold1-orig,pos,unl,unl,unl,pos,A soldier raises his rifle.,He\nlsmdc1056_Rambo-97108,3552,Someone frowns and glances at the hanging severed head. One of the troops,points his rifle into the air.,files out into the middle later also looking unconvinced.,falls onto the rooftop.,limps with a nearby map.,lifts a flag over a woman's face.,gold0-orig,pos,unl,unl,pos,pos,Someone frowns and glances at the hanging severed head.,One of the troops\nlsmdc1056_Rambo-97108,3558,One of the soldiers raises his rifle. Bullets,hit the ground near the peasants.,\"someone, someone attacks kicks at someone, who bursts him with his feet.\",\"holes, the goal.\",shoots a missile across the field just at a time of like four.,fly with power and heat in their roof.,gold1-orig,pos,unl,unl,unl,pos,One of the soldiers raises his rifle.,Bullets\nlsmdc1056_Rambo-97108,3550,The soldiers toss primed grenades into the paddy field. The peasants,are lined up at the edge of the paddy field.,peasants down to the coated floor in a small gray room.,hit a bundle of pipes into the alien.,scatter as he chases the soldiers.,cover both their prisoners.,gold0-orig,pos,unl,unl,pos,pos,The soldiers toss primed grenades into the paddy field.,The peasants\nlsmdc1056_Rambo-97108,3547,Someone and the mercenaries take cover behind charred sticks of timber framework. They,watch as a military lorry with a covered tail pulls into view and drives along the edge of the paddy field.,put their music sanford around their heads so they can almost hear.,perform an artillery piece on a device.,skiis along a central track towards traffic.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and the mercenaries take cover behind charred sticks of timber framework.,They\nlsmdc1056_Rambo-97108,3557,They all make it successfully to the other side of the field and slump on the bank. A soldier,shouts angrily and kicks one of the peasants in the head.,advances blade aside the thin material.,stands in his corner.,enters and hits double - stone.,throws a hammer at him target.,gold1-orig,pos,unl,unl,unl,unl,They all make it successfully to the other side of the field and slump on the bank.,A soldier\nlsmdc1056_Rambo-97108,3561,He gets an arrow in the back. Someone,\"runs through the trees, letting fly with arrows from his bow.\",returns several times to the left of the board.,closely uses his cane.,turns around and digs his gun and pointing it at someone.,lies on the mat in front of him.,gold0-orig,pos,unl,unl,unl,pos,He gets an arrow in the back.,Someone\nlsmdc1056_Rambo-97108,3546,\"Someone leads them away, but he is suddenly alerted. Someone and the mercenaries\",take cover behind charred sticks of timber framework.,go hurry and look on the carpets.,look at each other amiably.,struggle throwing weapons after people.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone leads them away, but he is suddenly alerted.\",Someone and the mercenaries\nlsmdc1056_Rambo-97108,3559,Bullets hit the ground near the peasants. The troops,angrily gesture to the frightened men to cross the field again.,surround the army as they in and escape towards a conference room in front of a police entrance.,scatter up for a tower festival.,are lowered into the fire.,blast down buildings and speed back.,gold1-reannot,pos,unl,unl,unl,pos,Bullets hit the ground near the peasants.,The troops\nlsmdc1056_Rambo-97108,3554,The peasants take the gunfire as the signal to begin a race across the paddy field. They,stumble desperately through the water.,look into the rottweiler and turns.,make way around as the maintenance man raises his sword.,ducks outward and smash and collect their seats.,battle the bulls when they are downs.,gold0-reannot,pos,unl,unl,unl,unl,The peasants take the gunfire as the signal to begin a race across the paddy field.,They\nlsmdc1056_Rambo-97108,3556,\"In slow motion, the peasants' feet slosh through the water. They all\",make it successfully to the other side of the field and slump on the bank.,\"lean forward, listening to the brakes.\",take the podium at the foot of the stand.,stop and watch him through the barrier of the surf.,\"stand before the fire, staring towards a spinning propeller.\",gold1-reannot,pos,unl,unl,pos,pos,\"In slow motion, the peasants' feet slosh through the water.\",They all\nlsmdc1056_Rambo-97108,3567,Someone turns his back on someone. Someone,draws an arrow on someone and aims it at the bald man's right eye.,stares as someone shoves someone.,sits on a bench facing the west defender - beast.,\"gets up, his looking badly injured.\",turns and aims his pistol at the dead man in the dust.,gold0-reannot,pos,unl,unl,pos,pos,Someone turns his back on someone.,Someone\nlsmdc1056_Rambo-97108,3551,The peasants are lined up at the edge of the paddy field. Someone,frowns and glances at the hanging severed head.,pushes him through the high obstacles at the base of the wharf.,\"climbing the long path, silhouetted against a light crack of light brush.\",steers the crew away as someone circles the end of the wharf.,continue the procession and someone's horse makes no move.,gold0-reannot,pos,unl,unl,unl,pos,The peasants are lined up at the edge of the paddy field.,Someone\nanetv_2FjaU9wfxaU,9606,A woman is seen hosting a news segment with a man and leads into a person bring out a dog and petting the dog. The man then,demonstrates how to properly groom the dog while the host continues to speak and pet the dog.,begins riding around while speaking to the camera while riding around.,begins riding leaves around another dog while still riding a horse.,speaks to the camera while continuing to throw frisbee out and cutting the dog and holding various frisbees behind girls.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen hosting a news segment with a man and leads into a person bring out a dog and petting the dog.,The man then\nlsmdc3014_CAPTAIN_AMERICA-5544,4429,\"Later, he makes a film with American troops. The chorus of marching women in short skirts\",joins someone on another stage.,emerge in the hotel room.,has heard over from the counter and completes the steak.,float around capoeira place in circles by an closed gate.,\"rise up, people pass on.\",gold0-orig,pos,unl,unl,unl,pos,\"Later, he makes a film with American troops.\",The chorus of marching women in short skirts\nlsmdc3014_CAPTAIN_AMERICA-5544,4431,\"The women salute as they march. Sitting in the audience, the senator\",gazes behind himself at the applauding crowd and nods to his assistant.,blows on her nose.,presses his lips to the woman's face.,adjusts his tie and leaves.,studies someone as he walks past.,gold1-orig,pos,unl,unl,pos,pos,The women salute as they march.,\"Sitting in the audience, the senator\"\nlsmdc3014_CAPTAIN_AMERICA-5544,4433,\"Later, children buy comics featuring Captain America from a newsstand. A gi\",reads a captain america comic on his bunk.,holds the runner screen to a german police officer.,\", someone is rooted to the spot.\",of them greets a woman.,flies into the sky.,gold0-orig,pos,unl,unl,unl,unl,\"Later, children buy comics featuring Captain America from a newsstand.\",A gi\nlsmdc3014_CAPTAIN_AMERICA-5544,4428,\"Someone poses for photographs with a baby and then the senator. Later, he\",makes a film with american troops.,wipes wax from his face.,stops on someone's station desk.,joins someone outside the restaurant.,passes a magic box metal within.,gold0-orig,pos,unl,unl,unl,unl,Someone poses for photographs with a baby and then the senator.,\"Later, he\"\nlsmdc3014_CAPTAIN_AMERICA-5544,4435,\"Sitting in an audience, someone grins as people around him cheer. Later, he\",\"signs an autograph for a boy backstage, then pauses as a blonde woman steps up to him.\",finds a plane in the sand.,knocks someone's phone off the couch.,addresses her to closed gate.,carries his jog across the walkway toward the outfield.,gold0-orig,pos,unl,unl,unl,unl,\"Sitting in an audience, someone grins as people around him cheer.\",\"Later, he\"\nlsmdc3014_CAPTAIN_AMERICA-5544,4430,The chorus of marching women in short skirts joins someone on another stage. The women,salute as they march.,are wide - eyed - like someone.,raise to sing and exchange a laugh and the officers sits beside her.,hurry clear of the room and onto the bar.,\"have white hair, looking at an audience.\",gold0-orig,pos,unl,unl,unl,pos,The chorus of marching women in short skirts joins someone on another stage.,The women\nlsmdc3014_CAPTAIN_AMERICA-5544,4434,\"In the finished movie, someone blocks bullets with his arrowhead - shaped shield, then fires a machine gun as he leads a squad of soldiers into battle. Sitting in an audience, someone\",grins as people around him cheer.,aims a pistol behind the racecar - goateed thug and spots her top through a dirt road.,shakes someone's hand as a second officer helps the queue.,fixes a sizable case on the shorter man.,scrambles back and gets a rifle and follows the campaign bus into the dark interior of the enormous home hall with colorful plastic bags.,gold0-orig,pos,unl,unl,unl,unl,\"In the finished movie, someone blocks bullets with his arrowhead - shaped shield, then fires a machine gun as he leads a squad of soldiers into battle.\",\"Sitting in an audience, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5544,4432,\"Senator someone smiles and nods. Later, children\",buy comics featuring captain america from a newsstand.,flock down a set.,\"share the table with someone, then someone touches a terrible flap to the desktop.\",\"skates through the streets, and a young boy walks in.\",pair up and race on dirt humps in the corner.,gold1-orig,pos,unl,unl,unl,unl,Senator someone smiles and nods.,\"Later, children\"\nanetv_Ul8qLMmszx4,19942,The man speaks to the camera while still scraping off his car. He,cleans off another car while the cameraman shows his face and pans back to the man cleaning off the car.,finishes to wipe the tire off with a dirt tool.,goes back to the indian man and shows alcohol shots to the camera.,rides all along the rails and looking off into the distance.,walks back down the hill and starts vacuuming up the driveway to clean a dirt car.,gold0-orig,pos,unl,unl,unl,unl,The man speaks to the camera while still scraping off his car.,He\nanetv_Ul8qLMmszx4,18485,A person is seen using a scraper to clean the snow off his car while the camera captures him from several angles. He,pushes windshield wipers down and wipes snow off other cars and the lights on the car turn on.,continues putting the clients hair into the contacts while speaking to the camera while wiping the back wheel into the middle.,sprays the styled product discreetly onto his back.,continues as more clips are shown of beaches as well as moving down a hill and snow shoveling.,\"demonstrates how to ride a face, and how to find it and demonstrates how to use a vacuum on a tire chain.\",gold0-orig,pos,unl,unl,unl,unl,A person is seen using a scraper to clean the snow off his car while the camera captures him from several angles.,He\nanetv_Ul8qLMmszx4,19941,A person is seen pushing snow off of a car. The man,speaks to the camera while still scraping off his car.,takes a spare tire off of a large box and tightens the lug fist.,performs tricks with the bike a distance.,melts shovels all along the fence while one records them and wipes paint off his face.,is seen speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A person is seen pushing snow off of a car.,The man\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6147,\"Someone's mother, someone, is standing outside by a pretty rose garden. Someone\",\"walks someone to his car, a blue bmw.\",sits back while wearing his ring.,is asleep and is talking about someone again.,sits over one of the friends.,\"is leaning wearily against the wall, staring about.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone's mother, someone, is standing outside by a pretty rose garden.\",Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6146,\"Two boys run down the stairs. Someone's mother, someone,\",is standing outside by a pretty rose garden.,sits at a 3d table.,is joined by a guard.,smiles at someone slowly with excitement.,joins someone at her desk.,gold0-orig,pos,unl,unl,pos,pos,Two boys run down the stairs.,\"Someone's mother, someone,\"\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6149,\"Looking slightly lost he drives away. Pretty, dark - haired someone\",watches him with her arms folded.,stands up in her apartment.,casually inspects him as they approach.,arrives at the restaurant.,,gold0-orig,pos,unl,unl,pos,n/a,Looking slightly lost he drives away.,\"Pretty, dark - haired someone\"\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6150,\"Pretty, dark - haired someone watches him with her arms folded. People\",mill about at a farmer's market by an artificial lake.,\"climbs the ladder, turning another booth on two young children entering and closing in on someone.\",glimpse the last toss.,and someone look up at someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Pretty, dark - haired someone watches him with her arms folded.\",People\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6145,\"Mourners gather at someone's family home, a colonial - style mansion with white walls, shuttered windows, and a red - tiled roof. Two boys\",run down the stairs.,sit on either side of the door stacked back on the lips.,leave in a door at a top.,are laying in the bed with a man holding a toddler to hold up a white paper with safety paper.,,gold0-orig,pos,unl,unl,unl,n/a,\"Mourners gather at someone's family home, a colonial - style mansion with white walls, shuttered windows, and a red - tiled roof.\",Two boys\nlsmdc3052_NO_STRINGS_ATTACHED-25199,6148,\"Someone walks someone to his car, a blue bmw. He gets in the driving seat and someone\",leans by the door.,takes out someone's waiting car.,holds onto his mind.,walks through with a smile.,lets him skateboard on the street.,gold0-orig,pos,unl,unl,pos,pos,\"Someone walks someone to his car, a blue bmw.\",He gets in the driving seat and someone\nlsmdc1060_Yes_man-99062,3975,He is wide - eyed and disheveled. He,stares into space miserably and swallows.,moves over and sits down in an armchair.,\"stares at someone, who waves, then looks away.\",\"looks away, with an angry sigh.\",,gold0-orig,pos,unl,pos,pos,n/a,He is wide - eyed and disheveled.,He\nlsmdc1060_Yes_man-99062,3973,Someone wakes from his nightmare and sits up with a start. He,is on the couch.,continues to go along the pavement.,crosses the street next to the bus.,is outside with great embers on his face.,pulls her to her knees in the empty corner.,gold0-orig,pos,unl,unl,unl,pos,Someone wakes from his nightmare and sits up with a start.,He\nlsmdc1060_Yes_man-99062,3974,He is on the couch. He,is wide - eyed and disheveled.,sits down and puts the brush with a measuring spoon.,turns and walks back into the security room.,\"is playing the pipes in the car, behind his car.\",\"is lying down on the bed, washing his shirt.\",gold0-reannot,pos,unl,unl,unl,unl,He is on the couch.,He\nlsmdc3037_IRON_MAN2-16899,1773,An Army drone stomps up to a young child wearing an Iron Man mask. The drone's camera,focuses on the mask.,is clicking above a roaring volcano.,follows from the paintball swing.,drifts from someone to a point - view only which covering his face.,shows the footage of divers mountain through mountains.,gold0-orig,pos,unl,unl,unl,unl,An Army drone stomps up to a young child wearing an Iron Man mask.,The drone's camera\nlsmdc3037_IRON_MAN2-16899,1757,\"The Army and Navy drones march through the still crowded arena. Backstage, someone\",\"runs up to someone, who holds a telephone.\",\"arrives the range of entered sailors, passes someone, and someone in baited breath.\",walks to his left.,picks up a basket and finds a fallen made pose.,grabs a pillow and beats furiously at his sword.,gold1-orig,pos,unl,unl,unl,unl,The Army and Navy drones march through the still crowded arena.,\"Backstage, someone\"\nlsmdc3037_IRON_MAN2-16899,1769,\"Metal anchors fall down from their feet, securing them to the ground. The drones\",raise their guns toward the sky and fire at someone as he flies toward them.,go back losing the structure.,drop off their boards and swoop down into the deep tunnel at the end zone.,\"drop towards one of the great pillars, which leads into an painter operating the shape of a large creature.\",fly into the air as they move through the rapids.,gold1-orig,pos,unl,unl,unl,unl,\"Metal anchors fall down from their feet, securing them to the ground.\",The drones\nlsmdc3037_IRON_MAN2-16899,1747,\"Behind him, the drones and someone also salute. Someone\",gazes off into the night sky.,\"glances down, at someone, and walks off.\",eyes someone's sad quarters.,shoots him and holds him on the hand.,bites down on the sticky page.,gold1-orig,pos,unl,unl,unl,unl,\"Behind him, the drones and someone also salute.\",Someone\nlsmdc3037_IRON_MAN2-16899,1751,Someone and the drones fire their guns at someone. Commands,\"pop up on his computer screen: deploy, deploy, deploy.\",shoot out from under a tree.,leads a trooper - worker in his cart.,\"approach someone and someone, hiding behind the open door.\",charges up to them.,gold0-orig,pos,unl,unl,unl,unl,Someone and the drones fire their guns at someone.,Commands\nlsmdc3037_IRON_MAN2-16899,1753,\"The Air Force drones fly through the roof, breaking more glass. The Air Force drones\",follow someone as he speeds up after someone.,try to guide the cockatoo onto the deck with someone.,plummet down someone waters.,reaches to put them onto the it and heads onto the street again.,gets knocked back again and explodes when police officers enter.,gold0-orig,pos,unl,unl,unl,pos,\"The Air Force drones fly through the roof, breaking more glass.\",The Air Force drones\nlsmdc3037_IRON_MAN2-16899,1742,\"As footage of military aircraft and ships appear on the screen, eight drones rise from the floor on a platform at the back of stage left. More drones with wing - like panels atop their shoulders\",rise from the back of the stage left.,hold the marines points to her feet.,are suspended down the ceiling in the thick bar.,are covered and piled mr.,are stacked up to the sky.,gold1-orig,pos,unl,unl,unl,unl,\"As footage of military aircraft and ships appear on the screen, eight drones rise from the floor on a platform at the back of stage left.\",More drones with wing - like panels atop their shoulders\nlsmdc3037_IRON_MAN2-16899,1743,\"More drones with wing - like panels atop their shoulders rise from the back of the stage left. Stage right, eight more drones\",rise from the floor.,bow in still unhurried before whistle.,sit on either side and roughly opposite each other in the obstacle.,shoot six degrees in the smoke.,\"rip apart, rope plank off the side step, at the edge of the equipment complex.\",gold0-orig,pos,unl,unl,unl,unl,More drones with wing - like panels atop their shoulders rise from the back of the stage left.,\"Stage right, eight more drones\"\nlsmdc3037_IRON_MAN2-16899,1786,\"As the two men fight, someone enters a second set of doors and runs past another guard. Turning as she slides across the floor, she\",\"throws taser darts at the second guard, who collapses.\",knocks a weapon out on the corner of the room.,makes a shot at the end of the stage with a model flag.,\"stares at the pavement in a corridor, just leaning against the bars and smiles into shadowy someone on her other side.\",steps to another end of the corridor and runs away.,gold0-orig,pos,unl,unl,unl,pos,\"As the two men fight, someone enters a second set of doors and runs past another guard.\",\"Turning as she slides across the floor, she\"\nlsmdc3037_IRON_MAN2-16899,1781,Someone fires at someone again and sets dozens of parked vehicles on fire. The vehicles,\"explode and flip into the air behind someone, who darts toward the expo.\",line up to reveal a trail with shacks over the campfire.,arrive at the end of the road.,\"drive to a stop at the roadside, then get out of the way.\",\"drive off, leaving each other by the truck and into the night sky.\",gold0-orig,pos,unl,unl,unl,unl,Someone fires at someone again and sets dozens of parked vehicles on fire.,The vehicles\nlsmdc3037_IRON_MAN2-16899,1760,Someone turns to the tech. Someone,twists someone's arm behind his back and slams him against a desk.,\"grabs the phone, then pull her into the scene.\",looks around his body as he types.,coolly steps down from view.,,gold0-orig,pos,unl,unl,unl,n/a,Someone turns to the tech.,Someone\nlsmdc3037_IRON_MAN2-16899,1752,\"Commands pop up on his computer screen: Deploy, deploy, deploy.. The Air Force drones\",\"fly through the roof, breaking more glass.\",\"stand around furtively, the snow becoming dark.\",shoots and wraps his arm around his ankle.,wait in front of the collapsible landing in a handgun and punches someone by.,\"hold a five - handed and the figure of a long clock mid - form, half nude behind this trolley.\",gold0-orig,pos,unl,unl,unl,unl,\"Commands pop up on his computer screen: Deploy, deploy, deploy..\",The Air Force drones\nlsmdc3037_IRON_MAN2-16899,1754,The Air Force drones follow someone as he speeds up after someone. Someone's suit,\"fires the gatling gun at someone, who maneuvers through the sky.\",hits the ground in a pair of hug.,\"features crumpled, someone's eyes shift from his seat.\",smooths out strange and light slips his fingers into the workshop itself.,smokes against the observation counter.,gold1-orig,pos,unl,unl,pos,pos,The Air Force drones follow someone as he speeds up after someone.,Someone's suit\nlsmdc3037_IRON_MAN2-16899,1764,\"The drones on the Expo grounds stand on steps and fire missiles at people as they run away. In his control room at Hammer Industries, the smiling someone\",watches the mayhem on two large computer monitors.,washes a chair in the lobby of the room where someone uses the phone phone demurely.,looks stranger up a spiral staircase.,lowers his astonished gaze.,,gold0-orig,pos,unl,pos,pos,n/a,The drones on the Expo grounds stand on steps and fire missiles at people as they run away.,\"In his control room at Hammer Industries, the smiling someone\"\nlsmdc3037_IRON_MAN2-16899,1755,\"Someone's suit fires the Gatling gun at someone, who maneuvers through the sky. They\",follow him toward an expo building while firing bullets through the windows.,\"begin swimming around, while the passengers stare at someone.\",shoot out of the blue glow of a raised light.,swings as fast as they can and walks up to the back roof.,see the van with pools of yellow yards.,gold0-orig,pos,unl,pos,pos,pos,\"Someone's suit fires the Gatling gun at someone, who maneuvers through the sky.\",They\nlsmdc3037_IRON_MAN2-16899,1777,\"Below, someone makes a sharp turn onto a city street. Someone\",stares into the rear - view mirror as someone changes clothes.,of a hydra mansion is suspended on a wooded platform.,shoots herd the gunmen in.,then burst into snowflakes.,creeps over it.,gold0-orig,pos,unl,unl,unl,unl,\"Below, someone makes a sharp turn onto a city street.\",Someone\nlsmdc3037_IRON_MAN2-16899,1745,\"All the drones are equipped with different weapons. In a dark room, someone\",controls a drone by a computer.,shoots to several duct.,mounts a flight of uneven bars with an exposed metal gate.,is dressed in a unmasked case labeled uniform.,opens the barricade and pulls out a long nailed key.,gold0-orig,pos,unl,unl,unl,pos,All the drones are equipped with different weapons.,\"In a dark room, someone\"\nlsmdc3037_IRON_MAN2-16899,1782,\"The vehicles explode and flip into the air behind someone, who darts toward the Expo. Meanwhile, the silver car\",pulls up outside hammer industries and parks.,arrives at a bank v - parks and a truck parked beneath them.,smashes through a ship hitting debris and send into a karateka.,approaches a burning pit where several swimmers are thrown on a diving board and swiftly overturns.,hits the van's pedal and hits a cliff gate.,gold1-orig,unl,unl,unl,unl,unl,\"The vehicles explode and flip into the air behind someone, who darts toward the Expo.\",\"Meanwhile, the silver car\"\nlsmdc3037_IRON_MAN2-16899,1758,\"Backstage, someone runs up to someone, who holds a telephone. A bespectacled it man\",works at a computer.,peers out a window that reflects out his client's face.,comes outside of the last door to the someones house.,draws his arm and salutes his wife.,shows his foot up on the table while an older man break someone.,gold0-orig,pos,unl,unl,unl,unl,\"Backstage, someone runs up to someone, who holds a telephone.\",A bespectacled it man\nlsmdc3037_IRON_MAN2-16899,1780,\"On the screen, three triangles representing Air Force drones move off together. Someone\",fires at someone again and sets dozens of parked vehicles on fire.,downs the jack and approaches the fire.,and another person films himself.,sets his boarding on a track.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the screen, three triangles representing Air Force drones move off together.\",Someone\nlsmdc3037_IRON_MAN2-16899,1791,He falls as a fifth guard appears. Someone,jumps over the downed fourth guard and kicks the fifth guard in the head.,interviews his apprentice someone in a file suit.,hurries to the fence and makes several calls.,gets close to him.,screams and runs to block him.,gold0-orig,pos,unl,unl,pos,pos,He falls as a fifth guard appears.,Someone\nlsmdc3037_IRON_MAN2-16899,1761,Someone twists someone's arm behind his back and slams him against a desk. Someone,lets go of someone and leaves.,interrupts a pretty hobbit.,\"stares at someone, who sits at his laptop framed at the fair.\",raises his makeshift liquor bottle in his hand and peers around.,'s lifeless head freezes against his arm as he maintains the letters in his own lap.,gold0-orig,pos,unl,unl,unl,unl,Someone twists someone's arm behind his back and slams him against a desk.,Someone\nlsmdc3037_IRON_MAN2-16899,1778,\"In the sky, someone and the drones follow someone as he flies along a freeway. Someone\",zips into a huge parking garage and around tall concrete columns.,distant a limo someone's car stop at which tracks: hands ride through the raised clearing.,\"leaps at the river, parked at the picnic shelter.\",\"levels out the shaft of sky, gun out to south america.\",\"dashes through the ruins of the titanic, off its mountainside.\",gold0-orig,pos,unl,unl,unl,unl,\"In the sky, someone and the drones follow someone as he flies along a freeway.\",Someone\nlsmdc3037_IRON_MAN2-16899,1746,\"In a dark room, someone controls a drone by a computer. Someone, wearing the war machine suit, the someone ii heavily modified with weapons,\",rises from the floor of the circular main stage.,\"reach into the twenty with her necklace, pushed it with all his might.\",is pinned to someone's sit.,passes his frustrated guard across the study.,walks into the great hall.,gold1-orig,pos,unl,unl,unl,pos,\"In a dark room, someone controls a drone by a computer.\",\"Someone, wearing the war machine suit, the someone ii heavily modified with weapons,\"\nlsmdc3037_IRON_MAN2-16899,1790,She slides between the legs of a fourth approaching guard and punches him in the groin. He,falls as a fifth guard appears.,runs toward him and flicks the javelin over.,drops the phone on his ear.,glares at the screen of the matador.,bangs him from the door.,gold0-orig,pos,unl,unl,unl,unl,She slides between the legs of a fourth approaching guard and punches him in the groin.,He\nlsmdc3037_IRON_MAN2-16899,1765,\"In his control room at Hammer Industries, the smiling someone watches the mayhem on two large computer monitors. People\",hurry past someone as she strides out of the expo's main entrance and approaches someone.,speed by with the boat.,sets him down on the counter and runs up the stairs.,\"joins in the floor, eating a cupcake and eating pizza.\",stares as he finds someone flirting.,gold0-orig,pos,unl,unl,unl,pos,\"In his control room at Hammer Industries, the smiling someone watches the mayhem on two large computer monitors.\",People\nlsmdc3037_IRON_MAN2-16899,1768,\"The Army drones march double - time behind the fleeing crowd, then stop. Metal anchors\",\"fall down from their feet, securing them to the ground.\",fly fire as they run across from the ark.,\"paddle straight from the burning wreck, along the wires with a nest that sprayed onto their backs.\",come to the floor with someone with them.,,gold0-orig,pos,unl,unl,unl,n/a,\"The Army drones march double - time behind the fleeing crowd, then stop.\",Metal anchors\nlsmdc3037_IRON_MAN2-16899,1770,The drones raise their guns toward the sky and fire at someone as he flies toward them. One of the bullets,\"strikes an air force drone, which crashes and bounces across the ground in flames.\",leaps out to shreds the unisphere.,knocks them aside at all.,crashes over the track.,puts someone into the shell which is aimed.,gold0-orig,pos,unl,unl,unl,unl,The drones raise their guns toward the sky and fire at someone as he flies toward them.,One of the bullets\nlsmdc3037_IRON_MAN2-16899,1744,\"Stage right, eight more drones rise from the floor. All the drones\",are equipped with different weapons.,raise their rifles in a silent fire.,finish their routine and congratulate each other.,are fall back to the military fire and tumble.,,gold1-orig,pos,unl,pos,pos,n/a,\"Stage right, eight more drones rise from the floor.\",All the drones\nlsmdc3037_IRON_MAN2-16899,1785,\"Someone punches a muscular guard. As the two men fight, someone\",enters a second set of doors and runs past another guard.,holding the pipe pump up a shotgun.,blocks a bullets and knocks the floor in.,throws a grenade.,draws a sculpted face.,gold0-orig,pos,unl,unl,unl,unl,Someone punches a muscular guard.,\"As the two men fight, someone\"\nlsmdc3037_IRON_MAN2-16899,1794,\"Someone watches on a monitor as someone runs out of view. At the Expo, Air Force drones\",follow someone as he zooms overhead.,erupts into an oncoming mass.,retrieve balls as someone plane makes a routing gathering.,show men and women on a runway.,flash as the plane walks up.,gold0-orig,pos,unl,unl,unl,unl,Someone watches on a monitor as someone runs out of view.,\"At the Expo, Air Force drones\"\nlsmdc3037_IRON_MAN2-16899,1784,Someone stands watch while someone swipes a card through a security system. Someone,opens the building's door and sprints inside.,stares after the hand in front of her with the card.,leans in the door and approaches someone with his hands in his pockets.,indicates a framed photo.,,gold0-orig,pos,unl,unl,unl,n/a,Someone stands watch while someone swipes a card through a security system.,Someone\nlsmdc3037_IRON_MAN2-16899,1787,\"Turning as she slides across the floor, she throws Taser darts at the second guard, who collapses. Someone\",runs down a hallway while someone exchanges punches with the first guard near the entrance.,\"whips out his hand gun, thrusts his tank menacingly at him, then lifts his shotgun barrel.\",collects her thrown aside from the groceries flask.,\"looks at him, as he lifts his shoulder warily, then gives down.\",leaps up after landing.,gold0-orig,pos,unl,unl,unl,unl,\"Turning as she slides across the floor, she throws Taser darts at the second guard, who collapses.\",Someone\nlsmdc3037_IRON_MAN2-16899,1779,\"Someone zips into a huge parking garage and around tall concrete columns. As someone and the drones zoom over parked vehicles, car alarms\",set off flashing tail lights.,stacks of whipped fish on the side of the road.,continues to the offices and lowers the gate.,watches as the creatures snakes at him.,\"view, rolling their eyes toward someone, standing around a corner.\",gold0-orig,pos,unl,unl,unl,unl,Someone zips into a huge parking garage and around tall concrete columns.,\"As someone and the drones zoom over parked vehicles, car alarms\"\nlsmdc3037_IRON_MAN2-16899,1771,The bullets hit a building. Concrete,showers down on running people.,\"speed through a marketplace, a collage of broken lies appears in front of him.\",\"leaves his face and vanishes, aiming his shoot at the window.\",\"the biker traffic, someone pushes a fire canister out of the building then gets up and aims his torch.\",blocks and gets up.,gold0-orig,pos,unl,unl,unl,unl,The bullets hit a building.,Concrete\nlsmdc3037_IRON_MAN2-16899,1763,\"Firing their guns, the Air Force drones trail someone around Expo buildings as they zip through the sky. The drones on the Expo grounds\",stand on steps and fire missiles at people as they run away.,\"are quickly vanishing through the trio with various others, go into sailing.\",\"are only long shot of the parade, overlooking the road opposite.\",are hauled down from the hulking fluid - like weapons.,\", including with two men, one on the other side, pushing them towards them.\",gold0-orig,pos,unl,unl,unl,unl,\"Firing their guns, the Air Force drones trail someone around Expo buildings as they zip through the sky.\",The drones on the Expo grounds\nlsmdc3037_IRON_MAN2-16899,1776,\"Air Force drones follow someone as he zooms high into the sky. Below, someone\",makes a sharp turn onto a city street.,checks his watch as someone dives into a blaze beneath the domed zeppelin.,loops his rope along furiously.,sees a group of men arriving to join her.,,gold0-orig,pos,unl,unl,pos,n/a,Air Force drones follow someone as he zooms high into the sky.,\"Below, someone\"\nlsmdc3037_IRON_MAN2-16899,1756,\"Inside the building, people duck for cover. The Army and Navy drones\",march through the still crowded arena.,carry a flying can.,tread as cheer soldiers them outcrop.,tread hung on their heads.,\"fall backwards, sawed off together in the pool's dawn light over a goal.\",gold1-reannot,pos,unl,unl,unl,pos,\"Inside the building, people duck for cover.\",The Army and Navy drones\nlsmdc3037_IRON_MAN2-16899,1767,Someone sits in the driver's seat while someone climbs behind him in the back seat. The Army,\"drones march double - time behind the fleeing crowd, then stop.\",\"teen plays the passenger, his hands.\",of men leave toned the jam to her front room.,\"lean, mesmerized by the magnificent skyline, allowing a faint shade of the clouds in the sky.\",faces someone and they move on to someone's passenger seat.,gold0-reannot,pos,unl,unl,unl,unl,Someone sits in the driver's seat while someone climbs behind him in the back seat.,The Army\nlsmdc3037_IRON_MAN2-16899,1750,Someone flies out through the opening in the glass roof. Someone and the drones,fire their guns at someone.,get out of the command truck.,explode on top of myrtle.,go fast on crates.,are dropping guards at the front of the cave.,gold1-reannot,pos,unl,unl,unl,pos,Someone flies out through the opening in the glass roof.,Someone and the drones\nlsmdc3037_IRON_MAN2-16899,1793,He also falls and lies motionless. Someone,watches on a monitor as someone runs out of view.,gazes at the tv under the man's pillow.,continues dreaming of someone as they drive into people's tent.,lifts the bottle lying directly above his head.,turns around and stares at someone in horror.,gold1-reannot,pos,unl,unl,unl,pos,He also falls and lies motionless.,Someone\nlsmdc3037_IRON_MAN2-16899,1789,\"Someone leaps over a cart and kicks him in the face, knocking him unconscious. She\",slides between the legs of a fourth approaching guard and punches him in the groin.,\"leaps up at him, then plunges harmlessly off the water.\",\"kisses the boy, cousins a third man.\",tosses the ball to the one thug dressed in spanish.,\"smacks the syringe, landing in a command.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone leaps over a cart and kicks him in the face, knocking him unconscious.\",She\nlsmdc3037_IRON_MAN2-16899,1749,\"Someone walks over to someone. Elsewhere, someone\",types a command: engage.,\"and someone share a small, silver - lit armory.\",pauses in a kitchen and looks at inch pack of contents.,\", someone, someone, and someone watch the bright grass table with food and someone, with the finished trash.\",,gold1-reannot,pos,unl,unl,unl,n/a,Someone walks over to someone.,\"Elsewhere, someone\"\nlsmdc3037_IRON_MAN2-16899,1759,A bespectacled it man works at a computer. Someone,turns to the tech.,is given a man list.,lifts a bar onto the train.,knits engrossed in someone's office.,brings a mock - check.,gold0-reannot,pos,unl,unl,pos,pos,A bespectacled it man works at a computer.,Someone\nlsmdc3037_IRON_MAN2-16899,1748,\"The suit's thrusters shut off. With his back to the audience, someone\",lands in front of someone.,stands the other guys with the six lifeboats mounted.,puts both leg back on the rail.,brings off his drink then turns it back on the display.,steps out of the arena.,gold1-reannot,pos,unl,unl,unl,unl,The suit's thrusters shut off.,\"With his back to the audience, someone\"\nlsmdc3037_IRON_MAN2-16899,1783,\"Someone and someone, wearing a form - fitting black leather outfit, step out. Someone\",stands watch while someone swipes a card through a security system.,leads someone to a middle - aged child and falls into the water.,glances between his parents.,walks up on a deck carrying a clipboard.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone and someone, wearing a form - fitting black leather outfit, step out.\",Someone\nlsmdc3037_IRON_MAN2-16899,1788,Someone runs down a hallway while someone exchanges punches with the first guard near the entrance. Someone,\"leaps over a cart and kicks him in the face, knocking him unconscious.\",pats someone's cheek and drags his boater to one of his fellow students.,tumbles down the corridor being watched by a guard and sees a woman with tall black hair let him high.,wraps her arms around his neck and flings her on the floor.,frowns at his enemy.,gold0-reannot,pos,unl,pos,pos,pos,Someone runs down a hallway while someone exchanges punches with the first guard near the entrance.,Someone\nlsmdc3037_IRON_MAN2-16899,1774,The drone's camera focuses on the mask. The child,\"raises his left arm, revealing a glowing light in his hand.\",climbs on the couch.,\"glances up, then appears beside him noticing all the pictures we saw before.\",picks up the chainsaw canister's mask.,throws the object towards it in the bottom to the right.,gold0-reannot,pos,unl,unl,unl,unl,The drone's camera focuses on the mask.,The child\nlsmdc3037_IRON_MAN2-16899,1766,People hurry past someone as she strides out of the Expo's main entrance and approaches someone. Someone,sits in the driver's seat while someone climbs behind him in the back seat.,slips the key out.,runs to her through the back door.,leans anxiously from her parked car.,sets down her shopping bag.,gold0-reannot,pos,unl,unl,pos,pos,People hurry past someone as she strides out of the Expo's main entrance and approaches someone.,Someone\nlsmdc3037_IRON_MAN2-16899,1772,Concrete showers down on running people. An Army drone,stomps up to a young child wearing an iron man mask.,is freely coming right beside the mustached.,\"crawls with tiled, burgundy motorcycles and pastel frames.\",skates over a race as wild winner reporter interviewed.,is shown upon the screen.,gold0-reannot,pos,unl,unl,unl,pos,Concrete showers down on running people.,An Army drone\nanetv_tOCFOu8eOkU,17299,Little kid is sitting in a Babies eating chair. an adult person,is holding an ice cream and is offering it to the baby.,is guiding the girl.,sits in the sidewalk with their kids chatting and eating.,is laying in bed.,,gold0-orig,pos,unl,unl,unl,n/a,Little kid is sitting in a Babies eating chair.,an adult person\nanetv_tOCFOu8eOkU,19407,A toddler is given an ice cream cone to eat by an unseen subject while sitting in a high chair. A toddler,is sitting in a high chair reaching for an ice cream cone.,carries a small axe in marley's hand as other pushes in and out of frame.,takes a drink from a mixer.,is eating ice cream and is helping someone to pick up a textbook.,,gold0-orig,pos,unl,unl,pos,n/a,A toddler is given an ice cream cone to eat by an unseen subject while sitting in a high chair.,A toddler\nanetv_tOCFOu8eOkU,19409,A hand holding the cone approaches the girl with the cone and gives it to her. The toddler,takes the ice cream cone and begins to eat it.,\"throws the red ball into a cup, and the woman sticks the sugar into the ice with cream.\",stands in front of a net while holding a candy tool through her mouth.,puts toothpaste on the woman and brush the teeth.,puts her hand out and waves her hand on the boy again.,gold0-orig,pos,unl,unl,unl,unl,A hand holding the cone approaches the girl with the cone and gives it to her.,The toddler\nanetv_tOCFOu8eOkU,17300,An adult person is holding an ice cream and is offering it to the baby. the kid,grabs the ice cream and start eating.,pours an ice cream cone in its mouth and smiles.,looks out of the window.,turns and walks away.,,gold0-orig,pos,unl,pos,pos,n/a,An adult person is holding an ice cream and is offering it to the baby.,the kid\nanetv_tOCFOu8eOkU,19408,A toddler is sitting in a high chair reaching for an ice cream cone. A hand holding the cone,approaches the girl with the cone and gives it to her.,gently hits it and stirs it.,is laying around while sitting on the bed.,is placed on the table.,,gold1-reannot,pos,unl,unl,pos,n/a,A toddler is sitting in a high chair reaching for an ice cream cone.,A hand holding the cone\nanetv_JfF80Uho8U8,10521,\"Then he tops it with chopped lettuce and a few tomato and pickle slices, some jalapenos and onions. Then he\",seasons it with pepper and some spicy sauce over the meat.,points onions and carrots.,\"adds salt and pepper in hot sauce, salt covers the squirrel and chopped with a different plate and stirred them.\",\"pours the eggs into a small pot, adds some cheese and tomatoes.\",,gold1-orig,pos,unl,unl,pos,n/a,\"Then he tops it with chopped lettuce and a few tomato and pickle slices, some jalapenos and onions.\",Then he\nanetv_JfF80Uho8U8,10519,There's a person in a commercial kitchen wearing a gray shirt and a gray hat demonstrating and talking about how to make a sandwich. He,begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices.,is shown with them.,mixes ingredients together in a bowl with the oven.,turns and talks while he does some different moves.,begins to mix everything in the bowl and then adds it to the pan and is prepared for it.,gold0-orig,pos,unl,unl,unl,unl,There's a person in a commercial kitchen wearing a gray shirt and a gray hat demonstrating and talking about how to make a sandwich.,He\nanetv_JfF80Uho8U8,10522,Then he seasons it with pepper and some spicy sauce over the meat. He then,proudly shows the finished sandwich that is loaded with meat and cheese.,bob it with his wooden stick.,prepares the pasta dish with some good chopping.,puts some pasta into the pot and cooks it.,\"sprinkles those on top, creating sauce and toasting.\",gold1-orig,pos,pos,pos,pos,pos,Then he seasons it with pepper and some spicy sauce over the meat.,He then\nanetv_JfF80Uho8U8,10520,He begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices. Then he,\"puts cheese slices and cold lunch meat slices inside the sandwich, followed by a few slices of salami.\",\"measures, adding onions, salt, wax and tomatoes.\",adds to the slice of bread and takes it off the floor.,adds the chicken to all bug to grab it and gets them wet.,cuts the slices of vegetables and cuts them together.,gold0-reannot,pos,unl,unl,unl,pos,He begins by slicing a hoagie bread into two pieces and applying some mayonnaise on the slices.,Then he\nanetv_JfF80Uho8U8,13194,A large white man is sitting in front of a restaurant freezer talking. The male then,begins making a list on his hands and takes a twelve inch sub and cuts it in half.,takes some polish for the cleaning product and wipes on all the table.,uses the iron to brush the back of someone's head.,comes into another pyramid and begins to move it around while the bartender speaks.,,gold0-reannot,pos,unl,unl,unl,n/a,A large white man is sitting in front of a restaurant freezer talking.,The male then\nlsmdc0023_THE_BUTTERFLY_EFFECT-59481,15986,\"Suddenly a car appears from down the street and slowly pulls into the driveway. Someone, 24, an attractive young mother,\",gets out of the car and walks to the mailbox.,wears a red raincoat in the winter clothes and press paper.,is held aloft and normally exaggerated around.,stands looking out of the brothel as he approaches.,seems confused and gets out into bed.,gold0-orig,pos,unl,unl,unl,pos,Suddenly a car appears from down the street and slowly pulls into the driveway.,\"Someone, 24, an attractive young mother,\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59481,15987,\"Someone, 24, an attractive young mother, gets out of the car and walks to the mailbox. Someone\",walks back to the car.,\"is standing on the sales counter, then crouches as the friend moves in.\",stares at the guard standing in front of him.,taps the strap at his ex's shoulder.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone, 24, an attractive young mother, gets out of the car and walks to the mailbox.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59481,15985,\"When someone comes to in this memory, the lit cigarette absently drops from his mouth and nestles into the folds of his shirt. Suddenly a car\",appears from down the street and slowly pulls into the driveway.,snaps in and someone spots him.,pulls up and look down at their stained hats.,pulls up from the fallen train who slowly slides through the street until late at night.,,gold0-orig,pos,unl,unl,unl,n/a,\"When someone comes to in this memory, the lit cigarette absently drops from his mouth and nestles into the folds of his shirt.\",Suddenly a car\nlsmdc0023_THE_BUTTERFLY_EFFECT-59481,15984,\"People, all thirteen, watch the mailbox across the street with intense anticipation. When someone comes to in this memory, the lit cigarette\",absently drops from his mouth and nestles into the folds of his shirt.,pours back into the window.,\"is right behind her, watching it.\",from his mouth is lit.,,gold0-orig,pos,unl,unl,pos,n/a,\"People, all thirteen, watch the mailbox across the street with intense anticipation.\",\"When someone comes to in this memory, the lit cigarette\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59481,15983,\"Furthermore, the walls behind him vibrate, slightly worse than before. People, all thirteen,\",watch the mailbox across the street with intense anticipation.,\"stand on one of the towers, carried all the way to the hotel.\",are flung into the operating room surrounded by people; over people.,\"are struggling to dive off their stomachs and aimed from the dunes, into the water.\",are watching them and stare at someone.,gold1-reannot,pos,unl,unl,unl,pos,\"Furthermore, the walls behind him vibrate, slightly worse than before.\",\"People, all thirteen,\"\nanetv_MN0YWduOEHk,2600,Men are standing in big field pulling a thick rope. men,are walking on sides of the rope and preparing themselves to pull the rope.,walk out of a grassy field raking.,jump together and land in big sports field.,are in a black court playing games.,are standing behind crowds watching people enjoying the competition.,gold0-orig,pos,unl,unl,unl,pos,Men are standing in big field pulling a thick rope.,men\nanetv_XH-YlSbgxkY,11076,A large auditorium is seen with a young dancer walking out on stage. The woman,begins dancing a routine using a baton and twirling it around.,continues performing while instructing one girl and throwing the baton on the instrument.,throws a dagger to the older woman who stands on stage.,turns back to the athlete and begins moving up and down to a balance beam.,grips hands with the boy for the first man to break.,gold0-orig,pos,unl,unl,unl,unl,A large auditorium is seen with a young dancer walking out on stage.,The woman\nanetv_XH-YlSbgxkY,11407,She is putting on a performance with a baton. She,twirls and dances with the baton.,is standing in front of the audience and the judges facing her time.,tries to catch her arm as she dances faster and dances to the baton.,spins by throwing the baton in the air and doing her tricks.,picks up a baton and begins to twirl it several times.,gold1-orig,pos,unl,unl,pos,pos,She is putting on a performance with a baton.,She\nanetv_XH-YlSbgxkY,11077,The woman begins dancing a routine using a baton and twirling it around. The girl,continues her routine and ends with her bowing and walking off stage.,continues jumping up and down and ends by swinging back and fourth and singing through the audience afterwards.,spins the twirls continuously in preparation motion followed by dancing with others.,spins herself around the rope in more and ends with her holding off.,flips the baton back up while the others continue to watch.,gold0-orig,pos,unl,unl,unl,pos,The woman begins dancing a routine using a baton and twirling it around.,The girl\nanetv_XH-YlSbgxkY,11406,A girl is on a basketball court in front of a crowd. She,is putting on a performance with a baton.,is interviewed at older boys.,does a high jump several times in a hoop.,brings a girl down and jumps.,stands on the balance beam.,gold1-orig,pos,unl,unl,unl,pos,A girl is on a basketball court in front of a crowd.,She\nlsmdc1038_The_Great_Gatsby-87451,5294,They rest against a pillar and their fingers touch. They,look at each other.,fold over their back and fling it on their head.,\"run toward them, heading around a dragon house.\",situations through her hand.,gondorian someone from here legs!,gold1-orig,pos,unl,unl,unl,unl,They rest against a pillar and their fingers touch.,They\nlsmdc1038_The_Great_Gatsby-87451,5293,They step out onto the porch. They,rest against a pillar and their fingers touch.,run into the lobby and enter the elevator.,picks someone up on the bed.,peer out of the front windows.,rush frantically under the floorboards.,gold1-orig,pos,unl,unl,unl,unl,They step out onto the porch.,They\nlsmdc1038_The_Great_Gatsby-87451,5290,\"Someone gives up, walks in and takes off his coat. Her dark eyes\",return his gaze adoringly.,remain glued to her face as he hears her approach.,follow him as she walks outside.,remain locked on her as she storms out of the house.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone gives up, walks in and takes off his coat.\",Her dark eyes\nlsmdc1038_The_Great_Gatsby-87451,5284,\"He smooths it back with his hand. Finally, appearing confident and relaxed and with the old familiar glint in his eyes, someone\",steps towards the room.,falls on onto the pole's high vault landing.,repeats the process slowly.,begins to wake up.,\"lifts someone up, walks away, with the scope of his holster, slows his gaze down to the phone.\",gold0-orig,pos,unl,unl,unl,unl,He smooths it back with his hand.,\"Finally, appearing confident and relaxed and with the old familiar glint in his eyes, someone\"\nlsmdc1038_The_Great_Gatsby-87451,5292,\"Someone smiles, gets up and opens the French windows. They\",step out onto the porch.,are surrounded by broadcast officers.,leave the darkness of which window.,'s rectangles tousled in white.,are led from a foot to the edge of a concrete floor.,gold1-orig,pos,unl,unl,unl,unl,\"Someone smiles, gets up and opens the French windows.\",They\nlsmdc1038_The_Great_Gatsby-87451,5300,People swim on his private beech. Someone,dives from a diving pontoon out in the water.,calmly crosses the beach under the fixture and extinguishes a big wad of sand.,see nature in the distance.,has his arm over his blazer.,stares at two hunched sailors.,gold0-orig,pos,unl,pos,pos,pos,People swim on his private beech.,Someone\nlsmdc1038_The_Great_Gatsby-87451,5288,He rattles a bowl in the sink to make his presence known. People,\"don't notice and continue looking deep into each other's eyes, smiling at each other.\",are being played in a swimming pool in various locations.,are riding around a dirt track on a skateboard.,have already been washing over the water.,,gold0-orig,pos,unl,unl,pos,n/a,He rattles a bowl in the sink to make his presence known.,People\nlsmdc1038_The_Great_Gatsby-87451,5280,\"On the porch, someone holds up a hand. He\",nods to someone and takes a deep breathe.,pulls the lid open.,\"sets it aside, and shuts the curtains with a frown.\",licks it and shakes it.,fires them at a multitude of 4 filled doors.,gold0-orig,pos,unl,unl,unl,unl,\"On the porch, someone holds up a hand.\",He\nlsmdc1038_The_Great_Gatsby-87451,5283,\"Watching from the door, someone takes off his boater and gestures for someone to tidy his hair. He\",smooths it back with his hand.,\"is now in someone's pink outfit, putting the back of her hand up by her cloak sleeves.\",\"moves on, then turns towards the doorway.\",sniffs his jacket pockets and spots the woman in a sunny stall.,strides into the cavernous living room and enters the pajamas.,gold0-orig,pos,unl,unl,unl,unl,\"Watching from the door, someone takes off his boater and gestures for someone to tidy his hair.\",He\nlsmdc1038_The_Great_Gatsby-87451,5287,\"Drenched, he returns and sees people deep in conversation. He\",rattles a bowl in the sink to make his presence known.,faces the water and sees well and bends down to make a one - gesture.,smiles on the gran torino.,baby takes his hand.,,gold1-orig,pos,unl,unl,unl,n/a,\"Drenched, he returns and sees people deep in conversation.\",He\nlsmdc1038_The_Great_Gatsby-87451,5297,\"Someone looks up in wonder. Surrounded by gushing fountains and ornamental palms, they\",look up at the house.,are filling out rock.,dip right into the murky depths.,climb the wooden suvs behind someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks up in wonder.,\"Surrounded by gushing fountains and ornamental palms, they\"\nlsmdc1038_The_Great_Gatsby-87451,5299,\"Someone looks at someone, framed by the fountain. It\",'s an orange - squeezing machine.,sees the game cameraman amid a.,\"goes to someone, pinned.\",carnies from left wars stage.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone looks at someone, framed by the fountain.\",It\nlsmdc1038_The_Great_Gatsby-87451,5281,He nods to someone and takes a deep breathe. Someone,sneaks furtively into the kitchen area and peers through the flowers into the room.,leans up beside someone and stamps out the letters.,blows someone's lips and leaves.,returns his eye to someone.,stares at the room.,gold1-reannot,pos,unl,unl,unl,unl,He nods to someone and takes a deep breathe.,Someone\nlsmdc1038_The_Great_Gatsby-87451,5296,They walk up the drive. Someone,looks up in wonder.,is on his soft couch near the trunk of a car door.,reaches into a wooden rail and slips across the red stair edge.,pauses using a jail cell.,instantly fades as the picture fades toward black.,gold1-reannot,pos,unl,unl,unl,pos,They walk up the drive.,Someone\nlsmdc1038_The_Great_Gatsby-87451,5298,\"Surrounded by gushing fountains and ornamental palms, they look up at the house. Someone\",\"looks at someone, framed by the fountain.\",\"leans in close, then watches a bolt die down.\",puts one arm around his shoulders.,puts on someone's coat and goes around to the refrigerator.,\"looks back over her shoulder, then sees someone climbing outside.\",gold1-reannot,pos,unl,pos,pos,pos,\"Surrounded by gushing fountains and ornamental palms, they look up at the house.\",Someone\nlsmdc1038_The_Great_Gatsby-87451,5291,Her dark eyes return his gaze adoringly. Someone,\"smiles, gets up and opens the french windows.\",\"nods slowly, and then lifts her back up.\",stares at someone as they board the tv.,gazes at her as she unbuttons her tie.,breaks into a smile.,gold0-reannot,pos,unl,unl,pos,pos,Her dark eyes return his gaze adoringly.,Someone\nanetv_YnFDzvuDJSQ,8505,She grabs some red ribbon and begins to tie into a bow. She then,goes to place it on to the christmas tree and continues to speak about it.,shows how to hold lenses in several ways to dip it in the water.,fastens it and places the metal together.,tries hard to hold a it minutes any longer.,ties a rubber band over her side and smiles while looking at the camera.,gold1-orig,pos,unl,unl,unl,unl,She grabs some red ribbon and begins to tie into a bow.,She then\nanetv_YnFDzvuDJSQ,8504,She puts her hand on the christmas tree and talks some more about it. She,grabs some red ribbon and begins to tie into a bow.,squares are on the table facing the seemingly evening shirt.,\"comes out in an arcade of rain and picks up an ashtray, gripping it in her hand.\",starting to turn around and chimney scotch while spreading out in frame.,is still seated at the far end of the platform where she helps to remove her hair product.,gold0-orig,pos,unl,unl,unl,unl,She puts her hand on the christmas tree and talks some more about it.,She\nanetv_YnFDzvuDJSQ,8503,A woman in red is standing beside a table explaining some things. she,puts her hand on the christmas tree and talks some more about it.,jumps in and watches them.,plays around the corner very quickly as he runs.,\"bends down, puts up objects in the trash.\",\"opens the door, presents a glass, then talks to people.\",gold1-reannot,pos,unl,unl,pos,pos,A woman in red is standing beside a table explaining some things.,she\nanetv_9PRK4oy1hhY,3754,\"A reporter interview two boys and a little boy. Then, the big boys and the small boys\",play soccer table while the reporter continue the interview.,run for their goal in poles and then bounce balls at a pinata of a beach.,enters a gym and play soccer.,run back and forth over the vegetable shop.,go to 50 public interviews with the player pushed forward on the left.,gold1-orig,pos,unl,unl,unl,unl,A reporter interview two boys and a little boy.,\"Then, the big boys and the small boys\"\nanetv_J4vq7MLMAtY,15456,Several people are shown at a party playing different games and having fun. A man,begins to talk to one of the women as she is playing one of the games.,is now speaking to a camera while two people are sitting behind them standing upright.,is sitting down playing a set of drums while holding other drums.,\"walks back to the man, takes a basketball and starts dancing with the middle's men.\",is seen kneeling down on a trampoline while his son playing beer pong.,gold0-orig,pos,unl,unl,unl,pos,Several people are shown at a party playing different games and having fun.,A man\nanetv_J4vq7MLMAtY,15457,A man begins to talk to one of the women as she is playing one of the games. The game,begins to get heated while several of the women laugh and joke around.,cuts to table that goes very hard on the court on the beach.,continues to be played in the end zone.,is ending with people sitting and playing a game of soccer.,,gold1-orig,pos,unl,pos,pos,n/a,A man begins to talk to one of the women as she is playing one of the games.,The game\nanetv_J4vq7MLMAtY,15459,One of the women takes a picture of the laughing women playing the game. A man,helps as the women try to get the hang of playing the game.,talks to her while she's talking.,pokes her look around.,serves the women ball and throw them into the cups.,\"in a red shirt is standing in a room, he starts to play the drums.\",gold0-orig,pos,unl,unl,unl,unl,One of the women takes a picture of the laughing women playing the game.,A man\nanetv_J4vq7MLMAtY,15458,The game begins to get heated while several of the women laugh and joke around. One of the women,takes a picture of the laughing women playing the game.,laughs and is hit by the reporter passing a ball that is reeling with him.,looks in a booth two kids and a few riding team begin to cool.,shows one than the other while the host dances the cymbals.,picks up a ball and wipes the surface with his hand.,gold0-orig,pos,unl,unl,unl,unl,The game begins to get heated while several of the women laugh and joke around.,One of the women\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-307,12337,\"In the dorm, the girls lead someone down a hall. They\",follow red droplets on the floor.,hurl their furniture into a dumpster.,are hot on their shoulders.,pick up the bikes and head inside.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the dorm, the girls lead someone down a hall.\",They\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-307,12338,They follow red droplets on the floor. Someone,\"sits up in bed, her hair dyed bright red.\",does not notice what they were talking to each other.,finds space gawking at the end.,pops out his shrugs.,observes from wearing a gray shirt.,gold0-orig,pos,unl,unl,unl,unl,They follow red droplets on the floor.,Someone\nanetv_BGHQbw5HZ9Y,11242,A man speaks to several women and plays a game with them. He,rubs lotions on their butts when he wins and gets a smack when he loses.,stares contemplatively into the distance.,continues playing with the dogs while their continuously play around each other's enclosure.,puff is shown in the background.,pauses while speaks to the camera.,gold1-orig,pos,unl,unl,unl,pos,A man speaks to several women and plays a game with them.,He\nanetv_BGHQbw5HZ9Y,9019,A man then plays a game with various girls while rubbing down their bodies. More clips,are shown of women playing the game and a man putting sunscreen on them.,are shown of people pushing puck and running around shooting paintball with one another.,are shown of people fencing around after the dogs following them along.,are shown of people practicing interacting around a bowling game.,are shown of them holding their sticks together and talking to one another.,gold0-orig,pos,unl,unl,unl,unl,A man then plays a game with various girls while rubbing down their bodies.,More clips\nanetv_do_AQlxV9SI,12750,A large man is doing behind the neck shoulder presses. He is holding his breath doing them and then he,stands up and starts to walk.,raises the baton upwards.,puts the straight strap on and opens it to join the other bodyguard.,leans back down side to side.,,gold1-orig,pos,unl,unl,pos,n/a,A large man is doing behind the neck shoulder presses.,He is holding his breath doing them and then he\nanetv_do_AQlxV9SI,12751,\"He gets back on the bench and does a few more pf the shoulder presses again. Then, he\",goes outside and practices spinning and throwing.,twists his legs and pulls his legs back towards us.,moves on to the next line and begins to kick and runs on the jump perfectly.,presses the mans left knee and paste on the bench against the wall behind his head which fumbles with the whole action.,,gold0-orig,pos,unl,unl,unl,n/a,He gets back on the bench and does a few more pf the shoulder presses again.,\"Then, he\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19793,\"He gestures with a raised hand. Smiling, someone\",strolls up to him.,looks at the table.,lifts the older men head.,raises her right hand towards his mouth then nervously lifts her neck.,leads an fbi official down an street.,gold1-orig,pos,unl,unl,unl,unl,He gestures with a raised hand.,\"Smiling, someone\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19792,He flings the blue shirts onto a desk and peers down his nose at them. He,gestures with a raised hand.,opens the door to someone's house.,\"crosses to another assistant, then closes the door.\",smiles and stares at her.,,gold0-orig,pos,unl,unl,unl,n/a,He flings the blue shirts onto a desk and peers down his nose at them.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19799,\"Someone fidgets as he tries to get comfortable on a sofa in the spacious white lobby. A tall, slender woman\",emerges from a lift to find him struggling with the cushion.,lies on her side with her glasses closed behind her back.,steps up with interest and picks up one jacket from under a recliner.,comes out of the next door and approaches a collection of streamers.,approaches a shelf dining bathed in blue light.,gold0-orig,pos,unl,unl,unl,unl,Someone fidgets as he tries to get comfortable on a sofa in the spacious white lobby.,\"A tall, slender woman\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19795,\"Back at his apartment, he types on a laptop at his coffee table. Grinning proudly, he\",scratches his chin and looks down at a pile of magazines on the table.,opens the book and reads it through the technology - in notebook book.,\"stands, picks up his file, and places it together.\",selects a photo and returns it to the calendar.,proceeds to record control of its enclosure.,gold1-reannot,pos,unl,unl,unl,unl,\"Back at his apartment, he types on a laptop at his coffee table.\",\"Grinning proudly, he\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19796,\"He takes some of someone's promotional literature from the pile and regards it with a grimace. It's Chihuahua, someone\",stares back at him from the page.,'s someone 'first journey.,picks up the cup as he hits it.,glances around the corner.,\"has matter to himself, but deep in the rain.\",gold1-reannot,pos,unl,unl,unl,unl,He takes some of someone's promotional literature from the pile and regards it with a grimace.,\"It's Chihuahua, someone\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19798,A van sweeps past the Soho Grand Hotel. Someone,fidgets as he tries to get comfortable on a sofa in the spacious white lobby.,looks at station startled.,soberly ignores her approaching furniture.,holds a sword at his chest.,,gold0-reannot,pos,unl,unl,unl,n/a,A van sweeps past the Soho Grand Hotel.,Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73236,19797,\"It's Chihuahua, someone stares back at him from the page. He\",dials a number on his cell phone.,sips the apple and stops to stare at it.,leads it into the act of a toy giant hand.,\"pulls his cigarette from his mouth and sucks through his cigarette, smoking.\",looks in the rear open window and finds a colleague filling a container.,gold0-reannot,pos,unl,unl,pos,pos,\"It's Chihuahua, someone stares back at him from the page.\",He\nlsmdc1017_Bad_Santa-7509,2423,\"She pours out a shot for herself as well as someone's. They knock their drinks back, and someone\",puffs on his cigarette.,holds the bottle out of her other hand.,laughs without shaking hands.,breathes it out as well as a fresh cigarette of indignant someone on her cheek.,looks directly at her again.,gold0-orig,pos,unl,unl,unl,unl,She pours out a shot for herself as well as someone's.,\"They knock their drinks back, and someone\"\nlsmdc1017_Bad_Santa-7509,2419,The barmaid comes over to join them and sniffs his empty glass. The barmaid,refills his glass and gives him a sunny smile.,\"is called his french cooking, and approaches the breakfast counter.\",waves his bottle delicately off a blender and answers the door.,replays his heading for the window.,hands her the white glasses.,gold0-orig,pos,unl,unl,unl,unl,The barmaid comes over to join them and sniffs his empty glass.,The barmaid\nlsmdc1017_Bad_Santa-7509,2413,\"Still in his someone suit, someone sits alone at the counter in a bar and lights a cigarette. He\",chews some gum and looks resentfully around the bar.,pom himself as he listens to music.,survivor turns to look at him.,opens it to an old woman in the room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Still in his someone suit, someone sits alone at the counter in a bar and lights a cigarette.\",He\nlsmdc1017_Bad_Santa-7509,2425,She nods and looks at his glass. She,\"pours him another shot, and then one for herself.\",moves to the end of the hallway and finds someone and her tired cat.,sways her hips and sings.,\"is looking offscreen at someone, listening.\",\"paces, her lips together knowingly.\",gold0-orig,pos,unl,pos,pos,pos,She nods and looks at his glass.,She\nlsmdc1017_Bad_Santa-7509,2414,He chews some gum and looks resentfully around the bar. He,takes in the usual collection of festive social drinkers out enjoying a christmas drink.,is on his coffee table.,arrives two rows shots.,lets go of a boom looking from the school turret.,,gold0-orig,pos,unl,unl,unl,n/a,He chews some gum and looks resentfully around the bar.,He\nlsmdc1017_Bad_Santa-7509,2428,\"And he does, in his beaten up old car. After the festive fornication, someone\",leans against the car having a smoke.,gives the release of a kick.,lies on a small table by the bright bedroom window.,watches one of the sweets gifts.,,gold0-orig,pos,unl,unl,unl,n/a,\"And he does, in his beaten up old car.\",\"After the festive fornication, someone\"\nlsmdc1017_Bad_Santa-7509,2416,\"He drags on his cigarette and his gaze falls on a bald, goatee - bearded Indian guy giving him the evil eye across the bar. Someone\",stares back at him.,draws him to a stop in the crowded courtyard and composes himself.,lifts a sidewalk outside and heads inside.,winds a hand around her human form.,,gold0-orig,pos,unl,unl,unl,n/a,\"He drags on his cigarette and his gaze falls on a bald, goatee - bearded Indian guy giving him the evil eye across the bar.\",Someone\nlsmdc1017_Bad_Santa-7509,2424,\"They knock their drinks back, and someone puffs on his cigarette. She\",nods and looks at his glass.,turns to someone and her parents.,\"regards him a moment, then sits up again.\",gives an uncertain look.,removes her glasses and shuts the door.,gold0-orig,pos,unl,unl,unl,unl,\"They knock their drinks back, and someone puffs on his cigarette.\",She\nlsmdc1017_Bad_Santa-7509,2412,\"At the end of the day, someone is sitting in the car park outside the mall as people come out. Someone\",gives someone the finger as he walks away across the car park.,\"comes out of an elevator, holding a clipboard.\",fills the picture with a little smile.,\"waves, showing off to go.\",\"switches on the wipers as he maintains his time, turning away from the window.\",gold0-orig,pos,unl,unl,pos,pos,\"At the end of the day, someone is sitting in the car park outside the mall as people come out.\",Someone\nlsmdc1017_Bad_Santa-7509,2421,He knocks back his drink. She,\"frowns, then smiles.\",lifts his arm and saunters in.,takes a sip of mouthwash and rushes back to the bedroom.,\"comes up to the table, smoking and looking at someone.\",glances around in confusion.,gold1-reannot,pos,unl,unl,pos,pos,He knocks back his drink.,She\nlsmdc1017_Bad_Santa-7509,2418,The Indian guy keeps his malevolent gaze on someone and looks away. The barmaid,comes over to join them and sniffs his empty glass.,\"signals to their weapons and unscrews the roll of sandwiches, which point open the oven.\",smacks him playfully with his cue cue.,puts his head down.,turns up looking at her with complete trust.,gold0-reannot,pos,unl,unl,unl,unl,The Indian guy keeps his malevolent gaze on someone and looks away.,The barmaid\nlsmdc1017_Bad_Santa-7509,2420,The barmaid refills his glass and gives him a sunny smile. He,knocks back his drink.,walks through the downpour.,\"enters the corridor with two black slips and hands in his pockets, followed by people.\",mumbles in his ear.,hurries over the line and gets in one.,gold0-reannot,pos,unl,unl,unl,unl,The barmaid refills his glass and gives him a sunny smile.,He\nlsmdc1017_Bad_Santa-7509,2417,Someone stares back at him. The Indian guy,keeps his malevolent gaze on someone and looks away.,emerges and makes his way towards the lip of the market.,raises his head and gives a wink.,leads his girlfriend out of the office.,taps him on the head.,gold0-reannot,pos,unl,unl,unl,pos,Someone stares back at him.,The Indian guy\nlsmdc1017_Bad_Santa-7509,2422,\"She frowns, then smiles. She\",pours out a shot for herself as well as someone's.,notices a meter sign on a monitor.,takes her keys from a coffee bag.,is timed out.,stares into her open eyes.,gold0-reannot,pos,unl,unl,unl,unl,\"She frowns, then smiles.\",She\nlsmdc1017_Bad_Santa-7509,2415,He takes in the usual collection of festive social drinkers out enjoying a Christmas drink. He drags on his cigarette and his gaze,\"falls on a bald, goatee - bearded indian guy giving him the evil eye across the bar.\",narrows toward the screen.,captures the trident on the table.,lowered over his teach students.,,gold0-reannot,pos,unl,unl,unl,n/a,He takes in the usual collection of festive social drinkers out enjoying a Christmas drink.,He drags on his cigarette and his gaze\nanetv_vLJz4a4NvRI,18628,We see a c emblem screen. We,see the man continue to deal cards.,see kids working out on tubes.,shows all the maps and trees standing behind the fence.,see an illustration of badminton.,then see his screen showing images and businessmen.,gold1-orig,pos,unl,unl,unl,unl,We see a c emblem screen.,We\nanetv_vLJz4a4NvRI,18626,We see an opening title screen and a man and lady look happy and the lady throws her hands in the air. We,see a man dealing blackjack in front of a screen.,\"a long wildly of slow motion, the lady adjusts it disappointed and zooms into the man above the door.\",see fiery images of the people struggling.,see the closing screen.,see colorful mulch in the stadium with various groves and backgrounds.,gold0-orig,pos,unl,unl,unl,unl,We see an opening title screen and a man and lady look happy and the lady throws her hands in the air.,We\nanetv_vLJz4a4NvRI,18627,We see a man dealing blackjack in front of a screen. We,see a c emblem screen.,\"see a man playing playing racket ball, walking on stage.\",see a man at a bar and wearing oversized gear.,see two men drying it in the center.,,gold1-orig,pos,unl,unl,unl,n/a,We see a man dealing blackjack in front of a screen.,We\nanetv_vLJz4a4NvRI,18629,We see the man continue to deal cards. We,see the ending screen.,see the boy playing make gestures.,see the dealer's score.,man adds the product to the shoulder of the girls.,see the audience clapping.,gold1-orig,pos,unl,unl,unl,pos,We see the man continue to deal cards.,We\nlsmdc1029_Pride_And_Prejudice_Disk_One-83822,15174,Someone smiles hopefully at someone. She,beams back at him.,\"heaves a roundhouse kick and lunges at one of the tables, inadvertently, then faces the barricade again.\",begins massaging his chest.,smiles with a muted smile then takes off.,,gold0-orig,pos,unl,pos,pos,n/a,Someone smiles hopefully at someone.,She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83822,15173,\"As someone takes someone's arm, and someone is escorted away by someone. Someone\",smiles hopefully at someone.,reaches the end of his bed and continues reading.,stands and hands the baby to someone.,\"pauses and blinks, then sips.\",,gold0-orig,pos,unl,pos,pos,n/a,\"As someone takes someone's arm, and someone is escorted away by someone.\",Someone\nanetv_oEZToisRw4w,389,\"Various women are seen walking around with shot puts in their hands followed by more shots of athletes walking around, throwing the ball, and waving to the crowd. The video\",continues on with several different shots of female athletes throwing shot puts as well as cheering to the crowd and moving around.,transitions into people kids playing cricket as well as scoring and cheering with one another.,ends with a close up of a man.,ends with the closing credits shown on the screen.,shows various footage showing the replays as well as other people playing volleyball and others wandering.,gold0-orig,pos,unl,unl,unl,unl,\"Various women are seen walking around with shot puts in their hands followed by more shots of athletes walking around, throwing the ball, and waving to the crowd.\",The video\nanetv_iRwRwpVLE_Y,14344,The girl interacts with some containers of ingredients on the table. The girl,mixes the ingredients into a bowl with the camera looking down from a top down view.,organize and moves them in on her back.,teaches the lady how to use the slat staring.,mixes the lemonade in measuring cup.,,gold0-orig,pos,unl,unl,pos,n/a,The girl interacts with some containers of ingredients on the table.,The girl\nanetv_iRwRwpVLE_Y,14348,An adult man walks into the screen and tastes something from the table. The girl,tastes something from the table.,walks to the slide and starts playing the bag.,takes a pacifier to himself and begins to play in a pot.,stops eating ice cream cone.,takes her knife and starts cutting it's nails.,gold0-orig,pos,unl,unl,unl,unl,An adult man walks into the screen and tastes something from the table.,The girl\nanetv_iRwRwpVLE_Y,14345,The girl mixes the ingredients into a bowl with the camera looking down from a top down view. The girl,adds oats into the bowl an mixes it.,folds another section of the board right into the pan.,puts on one flat of a box and pours soda again into a glass.,taking the pan at a bowl of stirred together with a sugar bowl with pasta.,shakes a glass and decorates it to the camera.,gold1-orig,pos,unl,unl,unl,unl,The girl mixes the ingredients into a bowl with the camera looking down from a top down view.,The girl\nanetv_iRwRwpVLE_Y,14343,The girl talks some more. The girl,interacts with some containers of ingredients on the table.,walks behind her gloved hands to an older man.,plays a curling game.,dismounts from the pole.,,gold0-orig,pos,unl,unl,pos,n/a,The girl talks some more.,The girl\nanetv_iRwRwpVLE_Y,14342,The girl adds a series of ingredients into a mixing bowl. The girl,mixes the content of the bowl.,adds ingredients into the lemons.,mixes ingredients into the bowl of baking.,puts a piece of lemon in the bowl.,stirs multiple ingredients into a bowl.,gold0-orig,pos,unl,pos,pos,pos,The girl adds a series of ingredients into a mixing bowl.,The girl\nanetv_iRwRwpVLE_Y,19092,She mixes the ingredients together and an older man comes in to taste test the balls she rolled. The girl,takes a bite as well while continuing to smile and laugh to the camera.,demonstrates several ups bobby extensions.,puts her lemons into a cookie and pierces the dough.,peels all the colors of dough and sticks all under the cookies until she finishes eating.,,gold0-orig,pos,unl,pos,pos,n/a,She mixes the ingredients together and an older man comes in to taste test the balls she rolled.,The girl\nanetv_iRwRwpVLE_Y,19091,A young girl is seen speaking to the camera and leads into her pouring out ingredients into a bowl. She mixes the ingredients together and an older man,comes in to taste test the balls she rolled.,uses lunch to cover up more ingredients she is sharing them to then cuts them off.,brings the food and puts it in her pocket.,approaches while many small bottles sit on the counter.,mixes another as she adds to a cup of juice.,gold0-orig,pos,unl,unl,unl,unl,A young girl is seen speaking to the camera and leads into her pouring out ingredients into a bowl.,She mixes the ingredients together and an older man\nanetv_iRwRwpVLE_Y,14346,The girl adds oats into the bowl an mixes it. The girl,talks while wandering back and forth near the bowl.,mixes the pasta together with a spoon.,stirs the layers with food.,peels the eggs from it.,stirs as the girl adds the sugar to a pitcher.,gold1-orig,pos,unl,unl,unl,unl,The girl adds oats into the bowl an mixes it.,The girl\nanetv_iSHPVCBsnLw,9921,Two men are seen sitting on a couch watching tv and speaking back and fourth to one another. Another walks into frame speaking and holding a drink and the two men,continue speaking to one another.,mock each other while several people watch on the side.,play a guitar while wearing boxing clothes.,continue playing with one another.,move the chair towards the camera and lead into an interview with a man sitting in a chair.,gold0-orig,pos,unl,unl,unl,unl,Two men are seen sitting on a couch watching tv and speaking back and fourth to one another.,Another walks into frame speaking and holding a drink and the two men\nanetv_SOyOank50IY,19034,We see an opening screen on black. We,see a man and woman washing dishes and talking.,\"see kids face from the snow, in a clothes in the hallway getting ready to go in.\",see the four shots.,see two girls and a woman talking to one another as we continue skating all over the accordian.,see the boat go empty and we see the man on the screen behind him.,gold1-orig,pos,unl,unl,unl,unl,We see an opening screen on black.,We\nanetv_SOyOank50IY,19039,\"We see them from a darker, higher camera. We\",see them from the higher camera again.,see the passageway where the lady's unsolved rubik takes.,see jungle gym with the kind of scuba riding.,\", someone comes up behind someone in the dining room.\",girls get their guns ready.,gold0-orig,pos,unl,unl,unl,unl,\"We see them from a darker, higher camera.\",We\nanetv_SOyOank50IY,19036,An image of a lady pops up on the screen. We,see the ladies image again.,see a title screen and a title screen.,see a person shake the ball with a rag.,see the camera with a hundred characters.,see the boat being lifts.,gold0-orig,pos,unl,unl,unl,unl,An image of a lady pops up on the screen.,We\nanetv_SOyOank50IY,19035,We see a man and woman washing dishes and talking. An image of a lady,pops up on the screen.,washes them with both hands.,is a product and transitions into a man washing dishes on the sink.,is seen followed by a woman in a bathtub.,washes her car between a faucet.,gold1-orig,pos,unl,unl,unl,unl,We see a man and woman washing dishes and talking.,An image of a lady\nanetv_SOyOank50IY,19038,The lady pops up in the subtitles. We,\"see them from a darker, higher camera.\",see the dollop holes of the roof and brick wall.,thanks with her final.,see the bunny body again.,see two men kneel on the surfboards.,gold1-reannot,unl,unl,unl,unl,unl,The lady pops up in the subtitles.,We\nlsmdc1046_Australia-90879,9618,Someone watches his arrival from the verandah. He,\"stops his horse, checks his herd, then gallops off.\",marches out to someone.,sets his briefcase down.,\"is a young dancer suspiciously stunned, giggling.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone watches his arrival from the verandah.,He\nlsmdc1046_Australia-90879,9619,\"She wakes up in bed, frowns and then looks across at someone lying next to her and smiles, running a hand down his bearded cheek. She\",\"runs a hand down his hairy, muscular chest.\",\"his head gracefully, he lets her go, giving her a determined gaze.\",\"ignores the grieving off, looking at her eyes.\",tears out her cheeks.,\"peeps through smoke, and sees cars pull away.\",gold0-orig,pos,unl,unl,unl,unl,\"She wakes up in bed, frowns and then looks across at someone lying next to her and smiles, running a hand down his bearded cheek.\",She\nlsmdc1046_Australia-90879,9617,Someone stands up on top of a water tower. Someone,watches his arrival from the verandah.,grabs his camera from the top.,turns to look out the water.,stands up and lets someone fall into the pool.,stares after the steward as she steps towards the facility.,gold1-orig,pos,unl,unl,unl,unl,Someone stands up on top of a water tower.,Someone\nlsmdc1046_Australia-90879,9615,Someone comes slowly back into the room. Someone,turns anxiously to her.,stares at his reflection.,takes out another record.,is been right up into the living room as someone walks down a hall.,\"is looking at someone, goes up again, tries to zip's it.\",gold0-orig,pos,unl,unl,unl,unl,Someone comes slowly back into the room.,Someone\nlsmdc1046_Australia-90879,9614,She frowns as he leaves. Someone,comes slowly back into the room.,hesitates abruptly and withdraws her hand.,shrugs his brow vigorously.,joins his parents in a seat.,,gold0-orig,pos,unl,unl,pos,n/a,She frowns as he leaves.,Someone\nlsmdc1046_Australia-90879,9620,\"She runs a hand down his hairy, muscular chest. A wild horse\",\"is ridden, bucking, around a training ring.\",reaches out and buries his face with his eyes.,\"poised in his palm, looking up at the figure he has moved over the light.\",prepares to scoop up branches before someone steals someone.,is being taunted by that little cave as another man crawls through the door for her.,gold0-orig,pos,unl,unl,unl,unl,\"She runs a hand down his hairy, muscular chest.\",A wild horse\nanetv_zwQYVBQnn4o,11305,\"Then another man does the same thing and he lifts it successfully. When he's done, someone\",comes on stage and gives him a hug.,walks onboard.,\"trips over his head, causing him to fall steadily.\",levitates over sides of the tents and darts through with the ball.,goes to stop and he hugs his arms and he walks to st the guitar.,gold0-orig,pos,unl,unl,unl,unl,Then another man does the same thing and he lifts it successfully.,\"When he's done, someone\"\nanetv_zwQYVBQnn4o,11306,\"When he's done, someone comes on stage and gives him a hug. He\",is then given a medal.,stops drinking a drink.,falls into the middle of a grassy park.,dashes off from the door and carries his briefcase into the dining room.,opens the door and moves slowly away with the handle.,gold0-orig,pos,unl,unl,unl,unl,\"When he's done, someone comes on stage and gives him a hug.\",He\nlsmdc1011_The_Help-78584,4674,\"With a sigh, someone sits down on the chair someone has set out for her. Someone gently\",dabs the cut with a cloth.,swallows the ordered dish.,\"places his hands on his table lip, waits after they come out.\",spreads her father's contemplative gaze.,cuts paint in her face.,gold1-orig,unl,unl,unl,unl,unl,\"With a sigh, someone sits down on the chair someone has set out for her.\",Someone gently\nanetv_sOL5ksIFX50,9088,Curlers ar shown as they take different shot and sweep down the ice. The video,ends with the closing credits and graphics.,begins with more shots of shows and the girls laughing followed by drumsticks and speaking to one another.,pans to different variations of the girl seen talking while showing off her bottle and occasionally talking.,is completed when a man in the back starts shining the shoe around the top of a bush.,ends with the final credits shown on the screen.,gold1-orig,pos,unl,unl,unl,pos,Curlers ar shown as they take different shot and sweep down the ice.,The video\nanetv_sOL5ksIFX50,9087,An introduction comes onto the screen for a video about the winter sport curling. Curlers ar,shown as they take different shot and sweep down the ice.,poured on a counter.,tied back and neatly and in various scenes.,at an outdoor gym using and clone work hammer and social media effects.,next to several strands squeezing at a beach.,gold0-orig,pos,unl,unl,unl,unl,An introduction comes onto the screen for a video about the winter sport curling.,Curlers ar\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33554,15874,They're in a cafe. She,gives an unnerved look.,kicks her hand off the counter.,comes to a halt at a shabby brick house.,walks over to herself.,places one of the sculptures into the cage.,gold1-reannot,pos,unl,unl,unl,unl,They're in a cafe.,She\nlsmdc3068_THE_BIG_YEAR-3693,19009,He smiles as he gazes at the photo. His father,gives him a thoughtful look.,wipes tears from her eyes.,is reading earlier in the hall.,\"moves to the center of his office, his hands tucked in the pockets.\",,gold0-orig,pos,unl,unl,pos,n/a,He smiles as he gazes at the photo.,His father\nlsmdc3068_THE_BIG_YEAR-3693,19011,Someone drinks from a canteen as he waits on a rocky mountainside. He,hurries after the sound.,mounts the boat's prow and gestures to gait.,passes the supper as someone enters the arena and pads towards the tower.,runs out quickly until him collapses.,tries one after one.,gold0-orig,pos,unl,unl,unl,unl,Someone drinks from a canteen as he waits on a rocky mountainside.,He\nlsmdc3068_THE_BIG_YEAR-3693,19010,His father gives him a thoughtful look. Someone,drinks from a canteen as he waits on a rocky mountainside.,kneels to pick up the grimhold.,lifts his head and points it at the puritan woman.,\"holds the roll check, then gives the seasoned look.\",leaves a mark with freckles on his gloved wrist.,gold1-reannot,pos,unl,unl,unl,unl,His father gives him a thoughtful look.,Someone\nanetv_Ckkf840HZE4,16453,A man is seen riding around on the water wake boarding behind a boat. The man,is shown in several clips performing a trick with camera affects point to his movements.,continues skateboarding in an evening area and is performing back and fourth.,walks away and speaks to the camera while he talks.,continuously waves with his hands and ends by stopping to split the two.,slams off his goggles and waves out the camera.,gold0-orig,pos,unl,pos,pos,pos,A man is seen riding around on the water wake boarding behind a boat.,The man\nanetv_Ckkf840HZE4,16454,The man is shown in several clips performing a trick with camera affects point to his movements. The man,continues to ride around on the board while text appears to give instructions.,ends the javelin and gets point to a trainer and the older man stands in the middle and perform several other tricks with the players,resets his hands and ends by adjusting his heel stand.,then begins diving and across the grass and picks up a camera.,continues skating and performing tricks on the tube and putting keys in a park.,gold0-orig,pos,unl,unl,unl,unl,The man is shown in several clips performing a trick with camera affects point to his movements.,The man\nlsmdc3023_DISTRICT_9-10934,1876,He ducks lower into the grass as the truck pulls out of the clearing. He,\"stands, gazes out of the city, then hurries away.\",sees someone approaching and stands.,\"finishes, pulls the trunk off the steering wheel and takes a seat.\",runs through the house.,reaches out towards the car.,gold1-orig,pos,unl,unl,unl,unl,He ducks lower into the grass as the truck pulls out of the clearing.,He\nlsmdc3023_DISTRICT_9-10934,1871,\"Someone stands on a hill, using the stolen phone. He\",hangs up with a frustrated look.,stares in horror as the bandages fall around him.,swings the key in the tire and flips it open.,strolls obliviously at someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone stands on a hill, using the stolen phone.\",He\nanetv_NQyAC1aweec,10626,A cat is shown close up with a person's hand cutting the nails on the cat. The person,continues cutting the claws while the cat attempts to get up several times.,is then shown thoroughly and pets the cat's nails.,shakes the cat's nail with the cat and continues clipping the cat's nails.,continuously claws one another.,walks to the back of the cat's claws and continues cutting the cat's claws.,gold0-orig,pos,unl,unl,unl,unl,A cat is shown close up with a person's hand cutting the nails on the cat.,The person\nanetv_aCknCFmU0sA,17200,A man is seen looking to the camera holding up a brush. The man then,begins brushing his hair all along the sides.,begins to shave his beard while speaking.,begins shaving the razor while pointing.,begins moving his feet up and down.,holds up various tools and tools while talking to the camera.,gold0-orig,pos,unl,unl,pos,pos,A man is seen looking to the camera holding up a brush.,The man then\nanetv_aCknCFmU0sA,7299,The man brushes his hair all around while still looking down at the camera. The man,turns around to finish brushing his hair and ends by waving to the camera.,continues wiping snow off the ski as well as cleaning it up and speaking to the camera.,picks up the rag then dips the brush onto the bucket and demonstrates how to properly brush it.,finishes by picking up the product.,stands and turns to the side continuing to speak and speak.,gold1-orig,pos,unl,unl,pos,pos,The man brushes his hair all around while still looking down at the camera.,The man\nanetv_aCknCFmU0sA,7298,A man with long hair is seen looking at the camera and begins brushing his hair. The man,brushes his hair all around while still looking down at the camera.,then begins brushing his hair as well as speaking to the camera.,continues brushing the woman's hair as well as pushing him off.,walks out of the bathroom and shows shaving of his hair and speaking to the camera then holds it up.,continues braiding and shows off more text in the end.,gold0-orig,pos,unl,unl,unl,pos,A man with long hair is seen looking at the camera and begins brushing his hair.,The man\nanetv_aCknCFmU0sA,17201,The man then begins brushing his hair all along the sides. He,turns around to show the back and continues brushing and waves.,looks off into the distance and continues walking back to the camera.,begins getting it all shaved again and ends up pausing.,speaks to his horse as well with others and movements.,continues speaking to the camera and showing his hair to the camera as well as a tool.,gold0-orig,pos,unl,unl,unl,pos,The man then begins brushing his hair all along the sides.,He\nanetv_uqiMw7tQ1Cc,2715,A weight lifting tutorial is given. The coach,helps the guy in red with the proper body placement and lifting technique.,demonstrates how to make different technique.,explains the techniques of weightlifting equipment.,explains the instructions stepper exercises.,demonstrates how to use an exercise machine in a class.,gold0-orig,pos,pos,pos,pos,pos,A weight lifting tutorial is given.,The coach\nanetv_uqiMw7tQ1Cc,16108,\"One man is holding onto a rope attached to a machine, and the other man instructs him to bend down on his left knee while still holding onto the rope and he showing the man how to have proper form. The man then instructs the man holding the rope to pull the row down a few times and he\",'s talking the whole time.,amounts on the rope he's able.,circles it all for his body and moves back towards the other others.,stops and jumps up and looks at it in his hand.,rides the rope around with the other piece of exercise.,gold0-reannot,pos,unl,unl,unl,pos,\"One man is holding onto a rope attached to a machine, and the other man instructs him to bend down on his left knee while still holding onto the rope and he showing the man how to have proper form.\",The man then instructs the man holding the rope to pull the row down a few times and he\nanetv_3YdmY4oPE5s,11098,A small group of people are seen standing around a field when one lady hits a ball. The people,continue playing crochet on the lawn while walking around.,cheer as the audience cheers at the end.,hold the ball and throw the ball down at the end.,play more games with the ball to frame the players.,continue to play chase the ball while one another to their left.,gold0-orig,pos,unl,unl,unl,unl,A small group of people are seen standing around a field when one lady hits a ball.,The people\nanetv_qp9OcGPufEc,14149,The man performs tricks with the dog while the dog jumps on his back. He,continues to roam around with the dog performing tricks with the dog and frisbee.,continues walking around with another dog.,man gets in the snow and runs to dog.,continues rolling the dog up in it with his frisbee.,runs down a rocky track.,gold1-orig,pos,unl,unl,unl,unl,The man performs tricks with the dog while the dog jumps on his back.,He\nanetv_qp9OcGPufEc,14148,A dog is seen running around a man in the middle of an open field. The man,performs tricks with the dog while the dog jumps on his back.,follows his horse around with more dogs catching people.,bend down the right with a frisbee and skate around behind it.,bends down and throws the frisbee into another area.,,gold0-orig,pos,unl,unl,pos,n/a,A dog is seen running around a man in the middle of an open field.,The man\nanetv_uyzQkTArIwU,7182,One man in blue pants joined the dance then the other man went off the stage. One man will join the dance and then other man,will get off the stage.,picks a harmonica off the ground.,\"turns and walked, and they started dancing.\",started to dance during a dance.,is hitting the stage too.,gold1-orig,pos,unl,unl,unl,pos,One man in blue pants joined the dance then the other man went off the stage.,One man will join the dance and then other man\nanetv_uyzQkTArIwU,7181,Two men are playing kick dance at the center of the circle. One man in blue pants joined the dance then the other man,went off the stage.,put their leg on the next stage.,approaches to shuffle them.,walks over to a red solo ball.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are playing kick dance at the center of the circle.,One man in blue pants joined the dance then the other man\nanetv_uyzQkTArIwU,4002,A large group of people are seen sitting around a circle when two men perform kicks and tricks around one another. More people,enter the circle pit and transition with one another still performing various flips and kicks around one another.,are shown running down the mountain and kicking and waving for the camera.,are shown running around around them performing and sitting on a punching background interviewing one another.,jump up and eventually run by while others still watch him.,continue wiping down the sides and captures making slow shots.,gold0-reannot,pos,unl,unl,unl,unl,A large group of people are seen sitting around a circle when two men perform kicks and tricks around one another.,More people\nanetv__f0S0vQZ9JM,4323,The people then begin mixing ingredients with one another and speaking to one another. The people,continue mixing drinks with one another and presenting them to the camera.,run all around the area while walking around and playing one more time with one another.,ride in on the objects as well as ash and the food.,speak to one another while mixing food and others them in the end.,,gold0-orig,pos,unl,unl,unl,n/a,The people then begin mixing ingredients with one another and speaking to one another.,The people\nanetv__f0S0vQZ9JM,4322,Two people are seen speaking to the camera followed by several drinks laid out. The people then,begin mixing ingredients with one another and speaking to one another.,begin dancing and warming gifts while others watch on the side.,begin playing another game of volleyball and ends by putting it out.,speak to one another while and show more shots of the people and resumes knitting.,push the man around and lead into another person walking.,gold1-reannot,pos,unl,unl,unl,unl,Two people are seen speaking to the camera followed by several drinks laid out.,The people then\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61302,6726,\"A small party of orcs and uruk - hai heading down the stairs from the watch tower. shagrat leads the uruk - hai, and someone leads the orcs. Someone\",spies someone's body.,grabs his hat free and grabs his police car.,\"snap back and place, trying to keep their grip on the shield.\",supports someone on hand.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A small party of orcs and uruk - hai heading down the stairs from the watch tower. shagrat leads the uruk - hai, and someone leads the orcs.\",Someone\nanetv_kShrO0yutUQ,17567,The man unlatches a bikes brake cable. The man,takes the back wheel of a bike off of the frame.,works on thick rope.,gets four bike and swings it.,gets rock and twists of a rider before doing tricks.,skates past the skater.,gold0-orig,pos,unl,unl,unl,unl,The man unlatches a bikes brake cable.,The man\nanetv_kShrO0yutUQ,17569,The man uses wrenches to looses a nut on the back wheel axle. The man,puts the back wheel back on the chain and locks the axle into place.,goes to the window and picks up the gas nozzle and throws it into the blue seat.,takes off his roller and drops the heavy pole.,bends to raise the handlebars and starts to cut off the bike.,,gold0-orig,pos,unl,unl,unl,n/a,The man uses wrenches to looses a nut on the back wheel axle.,The man\nanetv_kShrO0yutUQ,17568,The man takes the back wheel of a bike off of the frame. The man,uses wrenches to looses a nut on the back wheel axle.,cleans the door aggressively.,zooms the ax down the lane of small logs.,uses the handle and jumps the seat and into the car.,inserts the metal into the specialized bike then sands it wood.,gold0-orig,pos,unl,unl,unl,unl,The man takes the back wheel of a bike off of the frame.,The man\nanetv_kShrO0yutUQ,12583,Oregon daily emerald logo and title card pops up. The word bike,is overlaid on a mountain scene.,print let appears on the screen.,lies past a building in the empty below.,is in the center of the gym is shown.,flies out from the gym before it fades.,gold0-orig,pos,unl,unl,unl,unl,Oregon daily emerald logo and title card pops up.,The word bike\nanetv_kShrO0yutUQ,17566,A man stands in front of a display of bikes. The man,unlatches a bikes brake cable.,works at the top of a bike.,gets to a low parallel track and shine basketball around it.,cleans up red paper shovel.,uses a javelin to clear the yard.,gold1-orig,pos,unl,unl,unl,unl,A man stands in front of a display of bikes.,The man\nanetv_kShrO0yutUQ,12584,The word bike is overlaid on a mountain scene. Repair,\"is then overlaid under bike, becoming bike repair.\",appears on screen with a man in a bathroom bullfighting and talking.,see a man walking through one of the cars.,continues running back and forth on a wet dirt trail on a dirt road.,\"is then shown outside to a long cave, along with some of the skis where get multiple wires and snow shears in tunnels.\",gold0-reannot,pos,unl,unl,unl,unl,The word bike is overlaid on a mountain scene.,Repair\nanetv_kShrO0yutUQ,17570,The man puts the back wheel back on the chain and locks the axle into place. The man,latches the brake cable back into place.,\"uses the tools to scrape dirt from it, and then returns to object the damaged roof.\",stops the introductions and finishes precisely with the final product before moving it out of the driveway.,then shakes one move to the metal and grinds it into the bike.,,gold0-reannot,pos,unl,pos,pos,n/a,The man puts the back wheel back on the chain and locks the axle into place.,The man\nanetv_CiCNA-Nr1QQ,14588,\"The man grabs the ball from the return and holds the ball and stands there for a while staring down the lane, and when he finally rolls it he makes a strike. When the strike is over, it then\",replays in slow motion.,goes down to big bit of the knife grabbing in the hand of the man.,leaves and lands on the wall for the crowd.,\"throws it and hits it down, then grabs the ball, as an audience chases this time.\",does n't strike again and the same man hits the play again and begins to steady the ball.,gold0-orig,pos,unl,unl,unl,unl,\"The man grabs the ball from the return and holds the ball and stands there for a while staring down the lane, and when he finally rolls it he makes a strike.\",\"When the strike is over, it then\"\nlsmdc3062_SORCERERS_APPRENTICE-30792,10073,\"He eyes someone with a furrowed brow, then springs up and hurries after her. Someone and someone\",enter a subway station.,share a faint smile.,step up onto a platform.,hurry away and follow him.,\"ride the crane down and exit into the surrounding horribly, but the wind trolls half a million zombies cover the motor.\",gold1-reannot,pos,unl,unl,unl,unl,\"He eyes someone with a furrowed brow, then springs up and hurries after her.\",Someone and someone\nanetv_BOOX9aGlSEs,7590,The man jumps into the snow and are skiing down a snowy slope. people,are snowboarding down a snowy mountain hill.,sit at the front of the hill as they walk on to snowboard.,are riding bmx bikes under a very pile of snow.,\"are skiing down the hill of snow covered mountains, going into the snow.\",are skiing under snow.,gold0-orig,pos,unl,pos,pos,pos,The man jumps into the snow and are skiing down a snowy slope.,people\nanetv_BOOX9aGlSEs,7589,People are siting on cabins above a snowy hill. the man,jumps into the snow and are skiing down a snowy slope.,pass the horse and get standing in the dirt.,is teaching a truck to swing on a car that runs behind the car.,is flying in the snow with a snow shovel.,,gold1-orig,pos,unl,unl,unl,n/a,People are siting on cabins above a snowy hill.,the man\nanetv_BOOX9aGlSEs,215,The rider is still and starts skiing again. The skier,passes a person laying in the snow.,repeats low until six glancing on the tracks.,rocks back and forth from the truck.,is helping his kayak.,continue riding the bike down and jumping quickly.,gold1-orig,pos,unl,unl,unl,unl,The rider is still and starts skiing again.,The skier\nanetv_BOOX9aGlSEs,217,The skier has stopped and starts skiing again. The skier,flips in slow motion.,goes off through the high water.,\"go up twice, then solves again.\",does several flips and down in red sand.,keeps tossing the cameraman around.,gold0-orig,pos,unl,unl,unl,unl,The skier has stopped and starts skiing again.,The skier\nanetv_BOOX9aGlSEs,214,The rider skis and goes of ramps as he skis. The rider,is still and starts skiing again.,falls over the boat.,falls and ski slope.,stands on ropes in a shower and ties up the motorcycle.,accelerates and rides off with his skateboard.,gold1-orig,unl,unl,unl,unl,unl,The rider skis and goes of ramps as he skis.,The rider\nanetv_BOOX9aGlSEs,216,The skier passes a person laying in the snow. The skier,has stopped and starts skiing again.,gets into water on the river.,continues to wipe down the camera while grabbing the shovel.,goes down a hill from behind.,goes skiing over the hill.,gold1-orig,pos,unl,unl,unl,unl,The skier passes a person laying in the snow.,The skier\nanetv_BOOX9aGlSEs,213,Men wait and then ride the ski lift while talking to the camera. The men,are off the lift and at the top of the hill.,demonstrate snowboarding and snowboarding.,go rafting and cheer from the camera to the class.,drives the bike down the street.,ride down the hill snow on a snowboard.,gold0-reannot,pos,unl,unl,unl,unl,Men wait and then ride the ski lift while talking to the camera.,The men\nanetv_BOOX9aGlSEs,218,The skier flips in slow motion. We,see a person jump a ramp on their skis.,see the attachment lady next to her.,watch the dog beam in slow motion.,see the lady in the bathroom.,see the end credits.,gold1-reannot,pos,unl,unl,unl,pos,The skier flips in slow motion.,We\nanetv_1KKVWzCwRSA,832,Many different people are in the background watching and doing different things in the snow. The man that were falling,give up and stay in a sitting position.,is another swimmer on the beach went to the rock.,comes in a van where other men do flips.,is still crying in the background nod.,down abyss is shown looking desert someones.,gold0-orig,pos,unl,unl,unl,unl,Many different people are in the background watching and doing different things in the snow.,The man that were falling\nanetv_1KKVWzCwRSA,831,\"Several different men are seen trying to snow board but, falling down over and over. Many different people\",are in the background watching and doing different things in the snow.,are then seen bmx cars all around a track.,walk in and out when one walks off to the side.,\"are shown in the end, flipping and kicking out a set of things.\",are shown on the ground attempting to talk.,gold0-orig,pos,unl,unl,unl,unl,\"Several different men are seen trying to snow board but, falling down over and over.\",Many different people\nanetv_l8aaaDY4ehA,13003,He stands on the stairs to mow. It,switches to a woman mowing.,goes on with his lawn mower as he goes in the light on the cylinder.,walks behind him holding an ax.,- blistered someone speaks through a stony dwarf graffiti.,whizzes down the volume of the shop.,gold1-orig,pos,unl,unl,unl,unl,He stands on the stairs to mow.,It\nanetv_l8aaaDY4ehA,13004,It switches to a woman mowing. It,goes back to the man mowing.,walks forward and bumps.,sit at the couch.,a tree in the corner line of trees.,,gold0-orig,pos,unl,unl,pos,n/a,It switches to a woman mowing.,It\nanetv_l8aaaDY4ehA,13005,It goes back to the man mowing. The man,puts the mower in the shed and goes into the house.,runs down a swinging lawn and lawn at a tree and running in circles.,glides on and turns the mower back to the tree.,takes a comb off his helmet and removes his hand with orange and gold color.,\"is painting a motorcycle, and was holding out a nice tool.\",gold1-orig,pos,unl,unl,unl,unl,It goes back to the man mowing.,The man\nanetv_l8aaaDY4ehA,13002,We see a man mowing a lawn. He,stands on the stairs to mow.,laughs and tugs at the calf.,is holding a leaf blower.,walks to the top of the camel and sit down in front of a damage area.,,gold0-reannot,pos,unl,unl,unl,n/a,We see a man mowing a lawn.,He\nanetv_ZTtPztql5jM,7665,Many people are in the stands. Several athletes,stand in the arena.,are pulling out the rope.,jump dramatically on the beach.,are seen running a marathon.,are sitting on the skis.,gold0-orig,pos,unl,unl,unl,unl,Many people are in the stands.,Several athletes\nanetv_ZTtPztql5jM,7666,Several athletes stand in the arena. The athletes,throw discs on the field.,track around a track.,go inside each one and stand at the end of the competition.,moves through a pit and onto a mat.,go alongside their guns.,gold0-orig,pos,unl,unl,pos,pos,Several athletes stand in the arena.,The athletes\nanetv_ZTtPztql5jM,7664,Rain falls on a large auditorium. Many people,are in the stands.,arrive in a hole.,set up liquors and countries and their miniature medals.,\"are watching, hundreds its feet being loaded, etc.\",get out of the church.,gold1-orig,pos,unl,unl,unl,pos,Rain falls on a large auditorium.,Many people\nanetv_bpB0GiH6uDw,19176,A rack of tools is shown followed by a man pulling the items off and a close up of a lawn mower. The person,continues cutting the grass and ends by having dogs on his lawn and walking away with a toy.,swings around and then uses a paintbrush to warm the new wallpaper in the paint.,continues to ride off the dirt bike.,rides the camel while the camera captures girl movements.,,gold0-orig,pos,unl,unl,unl,n/a,A rack of tools is shown followed by a man pulling the items off and a close up of a lawn mower.,The person\nanetv_bpB0GiH6uDw,1033,\"He walks up and down his entire lawn, pushing his lawn mower as he cuts the grass. He\",walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass.,tracks his feet as he goes.,takes hold of his brush and turns to them.,stops beside a toddler.,,gold0-orig,pos,unl,unl,pos,n/a,\"He walks up and down his entire lawn, pushing his lawn mower as he cuts the grass.\",He\nanetv_bpB0GiH6uDw,1032,He brings out the lawn mowing equipment from his garage and begins mowing the lawn. He,\"walks up and down his entire lawn, pushing his lawn mower as he cuts the grass.\",slowly pulls out a piece of lumber.,rides a lawn mower on the sandy grass around the yard and he goes over to the lawn.,continues to make the lawn basket as he prepares to lay round the lawn.,,gold0-orig,pos,unl,unl,unl,n/a,He brings out the lawn mowing equipment from his garage and begins mowing the lawn.,He\nanetv_bpB0GiH6uDw,1034,\"He walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass. After he's done mowing, he\",plays with his two black and white dogs in his backyard.,jumps off the tree and walks back to the yard.,is never donning the toy mower.,uses some grass to cut out the paper.,\"spreads waste and jumps across the table, some grass and grass.\",gold0-orig,pos,unl,unl,unl,unl,He walks throughout his backyard as he makes sure he covers the entire area as the rotating blades of the lawn mower cut the grass.,\"After he's done mowing, he\"\nanetv_bpB0GiH6uDw,1031,There's a man in a green shirt mowing his lawn with a lawn mower. He,brings out the lawn mowing equipment from his garage and begins mowing the lawn.,finds a small parcel and continues to throw it on the lawn mower.,is riding on a lawn mower and jumping up.,looks back around with the lawn mower.,,gold0-reannot,pos,unl,pos,pos,n/a,There's a man in a green shirt mowing his lawn with a lawn mower.,He\nanetv_TrRsujPlt5w,161,An elderly man is using an elliptical trainer inside a gym. He,pedals and pushes back and forth as he talks to the person with the camera.,shows an event to a man and does tricks.,is embarrassed and stands on the edge as he starts doing crunches.,\"sits on a tightrope, high and traditional, suspended over the bars.\",,gold0-orig,pos,unl,unl,unl,n/a,An elderly man is using an elliptical trainer inside a gym.,He\nlsmdc1001_Flight-71933,14890,\"He finds it stocked with juices and nonalcoholic beverages. Later, he\",eats a meal alone in his room.,exits a car with a painted maroon and green hide.,arrives at the edge of the ring.,shakes them out again.,rides along the city street.,gold0-orig,pos,unl,unl,pos,pos,He finds it stocked with juices and nonalcoholic beverages.,\"Later, he\"\nlsmdc1001_Flight-71933,14896,He gets out of bed and goes to a side door. He,\"holds his ear to it, then pulls it open.\",rummages through an elegant mini - faded letter.,tries to move the furniture free of his bedroom as he sprints up the stairs and goes upstairs.,is carrying a box of products on a brawny case and closes the box.,,gold0-orig,pos,unl,unl,pos,n/a,He gets out of bed and goes to a side door.,He\nlsmdc1001_Flight-71933,14894,He looks around for the source of the knocking. Lying in bed he,is awakened by the same sound.,pulls out his wand.,runs his fingers through his drum.,scratched in his tail.,,gold0-orig,pos,unl,unl,unl,n/a,He looks around for the source of the knocking.,Lying in bed he\nlsmdc1001_Flight-71933,14898,A plane's beacon lights flash in the night sky. Someone turns around and his eyes,fall on a fridge.,\"widen, as he approaches sailboat waterfalls.\",land boldly to the left.,dart at the street.,,gold0-orig,unl,unl,unl,pos,n/a,A plane's beacon lights flash in the night sky.,Someone turns around and his eyes\nlsmdc1001_Flight-71933,14899,Someone turns around and his eyes fall on a fridge. He,opens the door to reveal rows of miniature bottles of alcohol on the shelves.,rests his head on the boy's hands.,sees a coughing colleague shooting an arranged round.,\"taps the wooden desk, then holds her arm.\",dries and exits the bathroom.,gold0-orig,pos,unl,unl,unl,unl,Someone turns around and his eyes fall on a fridge.,He\nlsmdc1001_Flight-71933,14889,Someone looks around the spacious room. He,picks up a can of coke and goes over to the fridge.,shifts over her shoulder then walking.,turns to the red stained wet door and looks out.,sits side by side in front of her.,,gold1-orig,pos,unl,unl,pos,n/a,Someone looks around the spacious room.,He\nlsmdc1001_Flight-71933,14895,Lying in bed he is awakened by the same sound. He,gets out of bed and goes to a side door.,fetches drawers it spreads out at a radiator.,makes his way back to the suite and collects the pages.,\"crouches underneath the couch, then begins to slip.\",,gold1-orig,pos,unl,unl,unl,n/a,Lying in bed he is awakened by the same sound.,He\nlsmdc1001_Flight-71933,14892,He sits over the toilet smoking as the bath fills. The clock,shows 2.,continues on the pantry area.,gives the topless woman a different part of the shoulder haircut.,has been hammered up.,shows 6 minutes of 30.,gold0-orig,pos,unl,unl,unl,pos,He sits over the toilet smoking as the bath fills.,The clock\nlsmdc1001_Flight-71933,14897,Someone walks over and gazes at the skyline. A plane's beacon lights,flash in the night sky.,illuminate the dimly lit hallway.,glide down the middle over the water.,glow in the dark sky above the sunken crater.,,gold0-orig,pos,unl,unl,pos,n/a,Someone walks over and gazes at the skyline.,A plane's beacon lights\nlsmdc1001_Flight-71933,14891,\"Later, he eats a meal alone in his room. He\",lies in bed surfing channels on the tv.,stands in a bathroom with the rest of his team.,tilts his head furtively and spits a light.,stands with a picnic basket in front of himself.,finds a paper bag then takes a bite of his sandwich and brings his face up.,gold1-orig,pos,unl,unl,pos,pos,\"Later, he eats a meal alone in his room.\",He\nlsmdc1001_Flight-71933,14893,The clock shows 2. 08 am as he hangs a suit in a wardrobe. He,looks around for the source of the knocking.,\"slides up his hairy, weighted balls on his shoulders and shifts his gaze over the farmhouse.\",wears an electric t in one cuff.,\"wraps the iron, silver letter in his hand.\",,gold0-reannot,pos,unl,unl,unl,n/a,The clock shows 2. 08 am as he hangs a suit in a wardrobe.,He\nanetv_jdfe-CV_cpE,1094,He sits down and gets his hair cut. He,is sleeping in the chair.,sticks the trumpet to the back of the dock.,flips the paper in the sink.,goes to an end.,,gold1-orig,pos,unl,unl,unl,n/a,He sits down and gets his hair cut.,He\nanetv_jdfe-CV_cpE,1096,Him and the man start fighting. The man,pulls a gun and points it at the other man.,is laughing with the weight while they fight.,lifts his head and throws it on the floor.,watches a movement and holds up his hands.,,gold0-orig,pos,unl,unl,pos,n/a,Him and the man start fighting.,The man\nanetv_jdfe-CV_cpE,1093,A man gets up and walks into a barber shop. He,sits down and gets his hair cut.,puts the machine near the circles.,starts to solve a rubik's cube.,\"is holding two dogs and smiles, occasionally combing his hair.\",,gold0-orig,pos,unl,unl,pos,n/a,A man gets up and walks into a barber shop.,He\nanetv_jdfe-CV_cpE,1097,The man pulls a gun and points it at the other man. He runs into another mans arms and they,walk out the door.,are shown in several shots.,bring him back to the table.,go across in the field.,lay him back down.,gold1-orig,pos,unl,unl,unl,unl,The man pulls a gun and points it at the other man.,He runs into another mans arms and they\nanetv_jdfe-CV_cpE,1095,He is sleeping in the chair. He,wakes up and looks in a mirror.,slowly turns back to the bucket and begins taking care.,hangs around and walks across the room.,goes along a wall.,\"stops the timer and bends down, resting the drummer's guitar beside it.\",gold0-orig,pos,unl,pos,pos,pos,He is sleeping in the chair.,He\nanetv_jdfe-CV_cpE,1092,Three men sit together on a couch. A man,gets up and walks into a barber shop.,stretches on a ring extremely far.,fixes weights on other person's necks.,lifts a bar with another tool.,,gold1-reannot,unl,unl,unl,unl,n/a,Three men sit together on a couch.,A man\nanetv_QEfXMtnI6rw,11964,The man also holds up a razor and begins writing on the paper. The man,is then seen shaving his face and ending with credits.,looks around the page and leads into a man speaking to the camera.,removes the jacket while still speaking.,continues cutting several sides and further palms along with the hr brush.,is once again demonstrating how used it lense with archery the the ear.,gold1-orig,pos,unl,unl,unl,unl,The man also holds up a razor and begins writing on the paper.,The man\nlsmdc0033_Amadeus-67091,2808,Someone is asleep in the bed. Someone,is dozing on the nearby child's bed.,makes a call.,sits with someone at the door.,awakes in his seat.,,gold0-orig,pos,unl,unl,pos,n/a,Someone is asleep in the bed.,Someone\nlsmdc0033_Amadeus-67091,2806,\"It is as disordered as before, save that the table, previously littered with pages, is now completely bare. Someone\",looks at it with surprise and enters the bedroom.,walks over to comfort him.,\"sits upon the wheel, waiting directly for the woman.\",jogs behind the door far enough to the opposite location.,\"rises from the window and pushes it open, following him to the rest of the room.\",gold1-orig,pos,unl,unl,unl,unl,\"It is as disordered as before, save that the table, previously littered with pages, is now completely bare.\",Someone\nlsmdc0033_Amadeus-67091,2805,The child's bed is obviously too small for him and he is forced in to a cramped position. People,arrive at the door.,\"plug his headphone, head up, ron county shows someone's throat.\",are seen dancing in the bathroom.,\"spin around until both fall, then belly down and spin.\",bouncing in and out of the archway that accost him and coming down a stairwell on their conversation.,gold0-orig,pos,unl,unl,unl,unl,The child's bed is obviously too small for him and he is forced in to a cramped position.,People\nlsmdc0033_Amadeus-67091,2807,Someone looks at it with surprise and enters the bedroom. Someone,is asleep in the bed.,opens a front door and watches his ransacked roommate in bed.,\"smiles at someone, then vanishes.\",\"climbs up and straddles someone, but does n't rush to him.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone looks at it with surprise and enters the bedroom.,Someone\nlsmdc0033_Amadeus-67091,2804,Someone lies across from him on someone's small bed in his shirt sleeves and waistcoat. The child's bed is obviously too small for him and he,is forced in to a cramped position.,is a much younger than his age boy.,can see their fingers grow up and writer grins at the neighboring clapping.,has instantly stopped his eyelids.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lies across from him on someone's small bed in his shirt sleeves and waistcoat.,The child's bed is obviously too small for him and he\nlsmdc0033_Amadeus-67091,2803,\"Someone lies asleep in the bed, holding the last pages of the manuscript. Someone\",lies across from him on someone's small bed in his shirt sleeves and waistcoat.,kisses the people on her back.,hangs over the police and read the book.,\"turns, sees someone come in.\",stares at him as if playing a small - set with dramatic satisfaction.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone lies asleep in the bed, holding the last pages of the manuscript.\",Someone\nanetv_IytPbGtfo14,6348,The lady adds some red stuff. The lady,holds the glass and smiles.,puts detergent into a glass of it.,adds ingredients into a cup.,shows off her nails.,puts paste onto the soap.,gold0-orig,pos,unl,unl,unl,unl,The lady adds some red stuff.,The lady\nanetv_IytPbGtfo14,6346,The lady pours other stuff in and shakes it. The lady,pours the pours the drink into a glass.,adds the presenter and fruits to the site.,pulls the juice out of the oven.,takes the baby down and continues the dishes.,holds a dough battery.,gold0-orig,pos,unl,unl,unl,unl,The lady pours other stuff in and shakes it.,The lady\nanetv_IytPbGtfo14,6347,The lady pours the pours the drink into a glass. The lady,adds some red stuff.,runs into the ice and stir.,places the plastic placed weight over the dish.,raises a box and stirs.,pulls three liquids from glass on the table.,gold0-orig,pos,unl,pos,pos,pos,The lady pours the pours the drink into a glass.,The lady\nanetv_IytPbGtfo14,6345,The lady pours three shots of liquor into a cup. The lady,pours other stuff in and shakes it.,mixes cubes contents in the strawberries.,gives the cup then takes a drink.,mixes the cake juice along with the liquid briefly.,adds another bit and fills it juice.,gold0-orig,pos,unl,unl,unl,unl,The lady pours three shots of liquor into a cup.,The lady\nanetv_IytPbGtfo14,6343,We see a lady behind a bar talking. The lady,pours ice in glass.,takes a bottle of mouthwash.,picks up a ball and talks about it.,lifts her leg up.,finishes plastering and picks up the serving plate.,gold0-orig,pos,unl,unl,pos,pos,We see a lady behind a bar talking.,The lady\nanetv_IytPbGtfo14,6344,The lady pours ice in glass. The lady,pours three shots of liquor into a cup.,dumps the ice into a glass glass bowl.,adds a thinly cork.,gives lemons in a jar.,,gold1-reannot,pos,unl,unl,unl,n/a,The lady pours ice in glass.,The lady\nanetv_fpVaXCwccNk,9071,A lady is standing and holding a hammer. The lady,spins with the hammer and throws the hammer.,\"wipes a paint ball on the wall, then uses a grappling tool to clear off the wall again.\",shaves cream off her leg and puts it down into the end of his braid.,is talking while holding a shovel.,performs bicycles atop its wheels.,gold0-orig,pos,unl,unl,unl,unl,A lady is standing and holding a hammer.,The lady\nanetv_fpVaXCwccNk,9072,The lady spins with the hammer and throws the hammer. The lady,leaves after releasing the hammer.,runs away and we still see the results throughout.,takes then wrenches the elastic band from her grasp.,picks up and releases throws.,removes his blindfold when she runs off.,gold0-orig,pos,unl,unl,unl,unl,The lady spins with the hammer and throws the hammer.,The lady\nlsmdc0011_Gandhi-52085,14066,A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we can't yet see that person. Someone,\"is smiling, trying to move on, but answering the questions of an indian journalist.\",\"looks around and notices that someone has just lost her mind's edge, just missing.\",is so hovering by the cross.,spies someone making out faces at longbourn.,,gold0-orig,pos,unl,unl,unl,n/a,A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we can't yet see that person.,Someone\nlsmdc0011_Gandhi-52085,14065,\"Third Class passengers are disembarking here, and on shore, separated by a wire fence from the rest of the pier. A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we\",can't yet see that person.,can only hear the splashing of water on the tiles.,can slip out that he is with her.,hear only the sound of words.,,gold0-orig,pos,unl,unl,unl,n/a,\"Third Class passengers are disembarking here, and on shore, separated by a wire fence from the rest of the pier.\",A large crowd of Indians is reacting excitedly to someone coming down the gangplank but we\nlsmdc0011_Gandhi-52085,14067,\"He speaks with an uncertainty and tentativeness that he had lost in South Africa, patently overwhelmed by the reception. An English journalist\",catches him as he turns.,trots out of a busy gaming area.,sits up on the street.,is wearing a lot of red robes.,\"sits down, book to the table, and picks up the receiver.\",gold1-orig,pos,unl,unl,pos,pos,\"He speaks with an uncertainty and tentativeness that he had lost in South Africa, patently overwhelmed by the reception.\",An English journalist\nlsmdc0011_Gandhi-52085,14062,The General has taken the salute and moves to inspect the troops to the accompaniment of the military band. He,is suddenly aware of a well - dressed indian half - listening to their conversation.,is the captain again with his fatigue cut and quiet.,men progress from their seats.,runs upstairs to a shop.,guards bring his guards so numerous people join him towards the plains of the forest and porcini rohan begins to blow dry them.,gold1-orig,unl,unl,unl,unl,unl,The General has taken the salute and moves to inspect the troops to the accompaniment of the military band.,He\nlsmdc0011_Gandhi-52085,14068,An English journalist catches him as he turns. An exuberant woman,puts a garland over his shoulders.,passes himself and leads them down a corridor.,watches her hand staring mr.,comes back from the direction holding an remote.,walks calmly in the olympic arena room.,gold0-orig,pos,unl,unl,unl,pos,An English journalist catches him as he turns.,An exuberant woman\nlsmdc0011_Gandhi-52085,14063,He is suddenly aware of a well - dressed Indian half - listening to their conversation. He glances at him and the well - dressed Indian,simply nods slightly and moves off a little.,in that suit and staring in the same direction.,item has now decent.,are standing peddle by the jumble of beaten soldiers.,,gold0-orig,pos,unl,unl,unl,n/a,He is suddenly aware of a well - dressed Indian half - listening to their conversation.,He glances at him and the well - dressed Indian\nlsmdc0011_Gandhi-52085,14059,\"Still a little confused, someone reaches in his pocket and produces a shilling. He\",hands it to someone.,rips a hunk of cash from a rusty plastic bag and holds it over his wallet.,\"files the envelope, put it in his coat pocket.\",is hearing something behind him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Still a little confused, someone reaches in his pocket and produces a shilling.\",He\nlsmdc0011_Gandhi-52085,14060,He hands it to someone. The prison guard,\"appears in the doorway, looking off in confusion at someone, then back at the office for guidance.\",grabs someone who bends down for him at the bottom.,uses a flashlight of light to form a thick arc around the room.,\"plows into the auction, using the box.\",captures his parents from lack of masculine bonds.,gold0-orig,pos,unl,unl,unl,unl,He hands it to someone.,The prison guard\nlsmdc0011_Gandhi-52085,14064,He glances at him and the well - dressed Indian simply nods slightly and moves off a little. The second Englishman,grimaces at the young englishman and looks down again.,\"comes to him, flexes his arms, takes another copy of his justice and begins to read the name.\",starts to beginning his routine as someone tapping his backside.,pushes the coughing out of his mouth with the tip of his left hand and seems to increase in light.,\"is more than autographed, but half - garbed.\",gold0-reannot,pos,unl,unl,unl,unl,He glances at him and the well - dressed Indian simply nods slightly and moves off a little.,The second Englishman\nlsmdc0011_Gandhi-52085,14061,\"The prison guard appears in the doorway, looking off in confusion at someone, then back at the office for guidance. A British general\",is coming down the gangplank accompanied by his adc.,\"appears, firing a needle into a toll drying mechanism.\",\"has hidden his manager, opens a gate, closes the door in vain for 60 years.\",is shown at the door that is also about eight years old.,,gold1-reannot,pos,unl,unl,unl,n/a,\"The prison guard appears in the doorway, looking off in confusion at someone, then back at the office for guidance.\",A British general\nanetv_FK73jqIGUzE,5100,\"A boy welds on a piece of metal making sparkles. Then, the boy\",raise his helmet and talks.,puts plaster all around himself and talks.,kicks with his hammer.,\"puts on a dark tool, and fights a bag of citrus to the level of the enclosed operated chair.\",puts freckles on a tree.,gold1-orig,pos,unl,unl,unl,unl,A boy welds on a piece of metal making sparkles.,\"Then, the boy\"\nanetv_o3yvGAz5IJ8,2344,She gathers some soapy water and begins to scrub the counter down. She,dries the counter and or some oil on to the wood and begins to rub it in.,is back to her coat and her back are still in the tub.,mixes some caviar into her drink as she stirs them.,\"starts putting the solution down and scrubbing with a cloth, ruler and clean at a time.\",grabs two of the red dishes and sets them on the ground next to her.,gold1-orig,pos,unl,unl,pos,pos,She gathers some soapy water and begins to scrub the counter down.,She\nanetv_o3yvGAz5IJ8,14554,A woman is seen speaking to the camera while walking around a counter and pouring liquid out into a bucket. The woman then,scrubs down the counter with a sponge and wiping oil along the top as well as her hands.,sprays liquid soap along a cloth and leads into a person washing laid out to tissue cup.,begins using the toothbrush to clean up the sink.,\"puts a pillow into buckets and begins to bowl her contents, smiling happily.\",presents a large mixing tray and pours it into a bucket as well as takes a drink.,gold1-orig,unl,unl,unl,unl,unl,A woman is seen speaking to the camera while walking around a counter and pouring liquid out into a bucket.,The woman then\nanetv_o3yvGAz5IJ8,2343,A woman comes onto the screen and begin to explain the process. She,gathers some soapy water and begins to scrub the counter down.,\"sets a dvd for soap and a picture of her, talks to the camera, lays it on her back.\",puts the soap into the closet and ends by lifting a metal surface to keep cleans on the boards.,makes several videos to a gym that is shown for where she works.,cuts it as parts of it and tastes it.,gold0-orig,pos,unl,unl,unl,unl,A woman comes onto the screen and begin to explain the process.,She\nanetv_o3yvGAz5IJ8,2345,She dries the counter and or some oil on to the wood and begins to rub it in. The video,ends with the closing caption shown on the screen.,ends with text shown off the screen while the gymnast leave down to the woman on the side.,ends with her applying paper to the equipment and continues putting it.,ends with the closing captions shown on the screen.,begins from the still flashes.,gold1-reannot,pos,unl,unl,unl,unl,She dries the counter and or some oil on to the wood and begins to rub it in.,The video\nanetv_o3yvGAz5IJ8,2342,An introduction comes onto the screen for a video about how to clean a butcher block. A woman,comes onto the screen and begin to explain the process.,uses a cake nozzle to clean the windows.,is then shown holding a shoe with a long knife and sharpening the knife using a knife.,is washing a sticker off the counter with a pink knife.,put a ticket on the counter counter before the man can not cut it properly.,gold0-reannot,pos,unl,unl,unl,unl,An introduction comes onto the screen for a video about how to clean a butcher block.,A woman\nlsmdc3014_CAPTAIN_AMERICA-5365,3019,\"Someone returns Rogers' enlistment form, now stamped 1a. Someone\",lets out a deep sigh.,\", exhausted, touches it as he stands.\",fights he from his mouth.,hangs a large fusion balloon to his left and holds it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone returns Rogers' enlistment form, now stamped 1a.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-41979,2309,She draws a slip two inches. Someone,unfolds a slip of paper.,narrows her eyes as someone sits.,wears a brief sweater as she watches the derby players.,gazes at the gran torino.,swallows then turns to someone.,gold0-orig,pos,unl,unl,unl,pos,She draws a slip two inches.,Someone\nanetv_yRswMXWCcrI,10005,\"Then, other man skies on the hill and flat areas covered with snow. Also, skiers\",makes a flip from in the air while other people watch.,ride horses with rafts in the mountains and ski to the water.,are skiing over obstacles with bad soil.,ski the ski hill to climb the slopes of the tubers.,shake off of the snow as the man skis on a slope.,gold0-reannot,pos,unl,pos,pos,pos,\"Then, other man skies on the hill and flat areas covered with snow.\",\"Also, skiers\"\nanetv_yRswMXWCcrI,10004,\"A person stands on a hill covered wit snow, then the person ski down the hill and fall. A skier\",comes down a hill makes a jump over stones and falls and rolls on the snow.,bends into position and resumes polishing with his skateboard.,falls over but that a person can be sitting next to the snow as the man continues for the boat steps.,\"shows the bull on the way, and the child continues on toward some rocks.\",falls across the water while another person gets on the skis and slide down the hill.,gold1-reannot,pos,unl,unl,unl,pos,\"A person stands on a hill covered wit snow, then the person ski down the hill and fall.\",A skier\nlsmdc3025_FLIGHT-12113,18297,\"He steps out of the car, and walks up a foot path to a house. A man\",\"watches someone from a parked car, and speaks into his cell phone.\",runs down a sidewalk as a lit car drives by.,stands on the sidewalk next to a basket of tree roots.,runs onto a snowy road.,,gold1-orig,pos,unl,unl,unl,n/a,\"He steps out of the car, and walks up a foot path to a house.\",A man\nlsmdc3025_FLIGHT-12113,18296,He chugs on the bottle of juice. He,\"steps out of the car, and walks up a foot path to a house.\",use a wallpaper blazer and paint the cars.,puts the bottle on the kitchen and pours it onto the table.,jerks his head toward the cords still in his face.,taps his fingers in a pitcher of water.,gold1-orig,pos,unl,unl,unl,pos,He chugs on the bottle of juice.,He\nlsmdc3025_FLIGHT-12113,18294,\"Someone speeds down the mud road, splashing slush to the side. He\",brakes when he sees news crews outside the farm house.,\"abruptly turns around, the demon rolls over and makes his way into a shop.\",continues to sprint forward.,notices someone silhouette and rugged across the fence icon to him.,turns back to someone next and leaves someone staring at the plain old orange cover.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone speeds down the mud road, splashing slush to the side.\",He\nlsmdc3025_FLIGHT-12113,18295,He stops opposite a house in a quiet neighborhood. He,chugs on the bottle of juice.,strolls in the dusty streets but never have any customers.,chuckles to delight from across the front of the van.,turns on an umbrella.,swings against the streets.,gold1-reannot,pos,unl,unl,unl,unl,He stops opposite a house in a quiet neighborhood.,He\nlsmdc3025_FLIGHT-12113,18293,Someone turns and walks away. Someone,\"speeds down the mud road, splashing slush to the side.\",hangs from dipping her file.,goes back to the kitchen oven.,enters with his glasses slung over his shoulder.,ducks one last moment.,gold1-reannot,pos,unl,unl,unl,unl,Someone turns and walks away.,Someone\nanetv_Q5kU3DUXXZg,17838,Numerous different pictures of fitness people flash on the screen and the logo la muscle flashes quickly. A group of people appear and they,are on bicycles pedaling and are doing a cardio workshop while the man in front wearing a headband is talking the whole time.,surf on shore with long paddles and grab pool deposits in their paddles and wave goodbye.,come in quick clerical threads and shows the players practicing and ending the wrestling clips.,finally both a team wearing hockey boards from a white background in the stadium.,,gold0-orig,pos,unl,unl,unl,n/a,Numerous different pictures of fitness people flash on the screen and the logo la muscle flashes quickly.,A group of people appear and they\nanetv_YCdPa5gJYmc,12038,The guy releases the item. A guy,moves away from the descending item.,works in the vault and adjusts a screw.,wraps his arms around the boy as he holds up the coffee.,grabs boxes and supplies.,uses white letters to introduce the video video.,gold0-orig,pos,unl,unl,pos,pos,The guy releases the item.,A guy\nanetv_m_ST2LDe5lA,261,Two people wearing scuba gear are underwater. They,\"look at each other, remove their mouth pieces, then kiss.\",stop then it shows a young girl wearing a gray suit and a sharp trainer with short haircut.,are being chopped in the cold water.,are trying to hold people facing each other.,boy sitting in a red raft and a rope to behind the boat is shown underwater and he flips with two men.,gold0-orig,pos,unl,unl,unl,unl,Two people wearing scuba gear are underwater.,They\nanetv_m_ST2LDe5lA,262,\"They look at each other, remove their mouth pieces, then kiss. The man\",places his mouth piece back in.,raises his right hand toward his chest.,kisses people on the cheek.,drinks their ice cream other with soap.,tightens loose notes under the typewriter.,gold0-orig,pos,unl,unl,unl,unl,\"They look at each other, remove their mouth pieces, then kiss.\",The man\nanetv_E7C91KoML-o,10363,A man is seen bending down before a weight. He,lifts the weight up by his head.,pauses to speak to the camera in slow motion.,starts walking up and forward with his arms up.,speaks to the camera while holding up large weights and smiling.,lifts it over his head and drops it on a bar.,gold0-orig,pos,unl,unl,pos,pos,A man is seen bending down before a weight.,He\nanetv_E7C91KoML-o,5403,\"He squats down kind of and picks it up, it looks very heavy and kind of painful. He\",lifts up above his head and jumps his feet apart.,\"slips it in her pocket, closing it and letting it come toward him.\",demonstrates a benefits of trimming the birds around a tree at the end.,\"stops an electronic noise from the trunk, listening to other things.\",,gold1-orig,unl,unl,unl,unl,n/a,\"He squats down kind of and picks it up, it looks very heavy and kind of painful.\",He\nanetv_E7C91KoML-o,10364,He lifts the weight up by his head. He,lifts it over his head and drops it back down.,folds the heavy weight on his shoulders.,\"swings around, letting it fall back into place.\",drops it on the ground and sits up front.,,gold0-orig,pos,unl,pos,pos,n/a,He lifts the weight up by his head.,He\nanetv_E7C91KoML-o,5402,\"A man is bent over holding on to a weight with lots of weight on it. He squats down kind of and picks it up, it\",looks very heavy and kind of painful.,kneels down on the weights going to the floor.,pours away and gets back on the exercise machine.,drops and his chest is left in the chest lifting weights straight up over the chair.,let in to the ground.,gold0-reannot,pos,unl,unl,unl,pos,A man is bent over holding on to a weight with lots of weight on it.,\"He squats down kind of and picks it up, it\"\nanetv_zYQ-WdosIwI,17388,The woman then gets on knees and sits backwards. She,looks forward while sitting up and does this several times while speaking to the camera.,is able to get any more.,starts to move away from the foam until almost falls over.,does a flip and lands at ground level.,lifts the water up to her shoulder in excitement.,gold0-orig,pos,unl,unl,unl,unl,The woman then gets on knees and sits backwards.,She\nanetv_zYQ-WdosIwI,6499,\"Then she kneels down on the yoga mat and then she sits on her feet. Next, she\",comes up and comes back down doing a kneeling squat.,feels like she should throw the sheet down on the floor.,\"jumps up on the bed, and sets down exercises.\",begins to spin her legs around and raise her entire body to the end.,begins a careful stretching motion.,gold0-orig,pos,unl,unl,pos,pos,Then she kneels down on the yoga mat and then she sits on her feet.,\"Next, she\"\nanetv_zYQ-WdosIwI,17387,A woman is seen standing on a pink may while speaking to the camera. The woman then,gets on knees and sits backwards.,plays a tennis match while others sit and watch.,begins rubbing her face and ending by laying a bow around as well as stick for him and continues talking.,begins performing various routine in a front jump.,starts brushing her nails and using a rag in a bucket.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen standing on a pink may while speaking to the camera.,The woman then\nanetv_zYQ-WdosIwI,6498,First the woman greets everyone through the camera and she tells what she will be doing. Then she kneels down on the yoga mat and then she,sits on her feet.,grabs a bar pause and spins high for her high kick and and flips.,takes off an iron.,moves her legs away and begins to dance with effort.,begins cautiously performing with yarn.,gold0-reannot,pos,unl,unl,pos,pos,First the woman greets everyone through the camera and she tells what she will be doing.,Then she kneels down on the yoga mat and then she\nanetv_RnN4BXyOtxU,16940,A lemon is cut on a counter. They,juice the lemon and pour it into a pot.,are sticking out in a silver cup pitcher.,are then added to a scale.,adds butter and butter and lemon juice.,,gold0-orig,pos,unl,unl,unl,n/a,A lemon is cut on a counter.,They\nanetv_RnN4BXyOtxU,16941,They juice the lemon and pour it into a pot. They,pour it into a plastic pitcher.,use the mixer to pour the mixture them into a toast.,clink their glasses together.,put the dough into a pan.,\"lastly tastes the drink and brutish, then shakes the lemon juice then places it on the cup as she pours into another pitcher.\",gold1-orig,pos,unl,unl,unl,pos,They juice the lemon and pour it into a pot.,They\nanetv_RnN4BXyOtxU,18578,\"A person cuts lemons and squeeze the juice. Then, the person\",\"pours the juice in a pot through a strainer, and adds sugar and heat for 5 min.\",mashes a small piece of turkey and pours them into a bowl.,measures the ingredients to place all the ingredients together on a plate and then adds mix and syrup.,pours the rum to the lemonade.,adds sugar and mix the solution in milk.,gold0-orig,pos,unl,pos,pos,pos,A person cuts lemons and squeeze the juice.,\"Then, the person\"\nanetv_RnN4BXyOtxU,18579,\"Then, the person pours the juice in a pot through a strainer, and adds sugar and heat for 5 min. After, the woman\",\"adds soda water, after they boys drink the lemonade.\",eats another chocolate and add to lemon cup and bakes a lemon.,takes a lemonade to a pitcher.,\"irons the lemon and mix them together, then mix in a metal.\",adds a cherry producing sugar and a pitcher.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the person pours the juice in a pot through a strainer, and adds sugar and heat for 5 min.\",\"After, the woman\"\nanetv_RnN4BXyOtxU,16942,They pour it into a plastic pitcher. They,start to drink the drink.,end the bottle and wipe it with the cup.,get out of her car and continue off unrolling their hand.,toss a ball over the corner of the surface.,put the bread in the glass.,gold0-reannot,pos,unl,unl,unl,unl,They pour it into a plastic pitcher.,They\nanetv_Relgb880pRI,16924,A cartoon of an archway is shown and leads into a man placing tomatoes onto a plate. He,puts onions and other ingredients onto a plate and cuts up several more ingredients.,moves up and up and looks up as he speak to the camera.,is then seen dipping sugar into the pan and adding more shots.,continue to throw the ice white and the dog goes to stuff it away.,presents various ingredients and mixing them into a oven.,gold0-orig,pos,unl,unl,unl,unl,A cartoon of an archway is shown and leads into a man placing tomatoes onto a plate.,He\nanetv_Relgb880pRI,16925,He puts onions and other ingredients onto a plate and cuts up several more ingredients. He,places the final ingredients into the bowl while talking to the camera and pans out on the meal he made.,as he finishes the ingredients and makes an omelette from a plate to another.,shows off two still finished slices.,dips the ingredients into noodles and pours it over again.,the eggs are complete to go in.,gold1-reannot,pos,unl,unl,unl,unl,He puts onions and other ingredients onto a plate and cuts up several more ingredients.,He\nanetv_BWqsgYhgUbI,13381,He tries again with another match. The fire then starts quickly and flames,leap up toward the sky.,engulf a burst of fire.,shoot out towards a large hole.,burst through inside the box.,fly above the bomb - like submarine.,gold0-orig,pos,unl,unl,unl,unl,He tries again with another match.,The fire then starts quickly and flames\nanetv_BWqsgYhgUbI,19222,The man knells down to the wood. the man,strikes a match and starts a fire.,picks up a paper and picks it up.,swings his hands chest and down.,throws the cushion behind the man who turns on his back.,,gold0-orig,pos,unl,unl,unl,n/a,The man knells down to the wood.,the man\nanetv_BWqsgYhgUbI,13380,\"He bends down and tries to start a fire, but it does n't light. He\",tries again with another match.,\"starts to pound the wall against the open log, then grabs the mans books.\",moves slowly into a typical empty courtyard.,\"is old and he becomes aware of a sharp, dusty hole.\",jerks his head at someone's window.,gold0-orig,pos,unl,unl,unl,unl,\"He bends down and tries to start a fire, but it does n't light.\",He\nanetv_eTVzSwuCfd8,18807,Then with a brush dry the hair with an animal print hair dryer. then with her hands the woman,put the hair on place.,uses and shave her long hair.,uses a hair blow dryer.,began blow drying her hair.,takes the contact lens out.,gold1-orig,pos,unl,unl,unl,pos,Then with a brush dry the hair with an animal print hair dryer.,then with her hands the woman\nanetv_eTVzSwuCfd8,18806,Woman is standing in frnot of a mirror with the wet hair and its separating it into parts. then with a brush,dry the hair with an animal print hair dryer.,cleaning the lady liquid black and show a plastic paper container.,\"in loose hair, then starts juicing back your hair using a hair braids with batons.\",\"of red paint and curling blonde is shown, she begins running into the paper with a shovel.\",and metal brush.,gold1-orig,pos,unl,unl,unl,unl,Woman is standing in frnot of a mirror with the wet hair and its separating it into parts.,then with a brush\nanetv_eTVzSwuCfd8,9906,A woman is brushing her hair. She,starts blow drying her hair with a rolling brush.,is using a blow dryer to groom the hair of the woman below and neck for her.,is wheeling the steel wall.,starts brushing her hair in front of her face.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is brushing her hair.,She\nanetv_eTVzSwuCfd8,9907,She starts blow drying her hair with a rolling brush. She,finishes and styles her hair.,walks back to the tent and joins her coach.,throws the product over the hair of the man and pins it in place.,uses a blow dryer to spray her hair and hair.,begins blow drying her hair.,gold0-orig,pos,unl,unl,unl,pos,She starts blow drying her hair with a rolling brush.,She\nanetv_xv8OYJ7t7-E,18147,A girl sitting in a chair is covered in red goo and melted ice cream and whipped cream. We,see the girl without the goo covering her.,girl grabs onto a red sheet and lays it over her head and drops it in her pile.,are shown in the studio.,woman is standing in front of her wearing a lot of white as the camera cuts the happy girl and ends the scene.,,gold0-orig,pos,unl,pos,pos,n/a,A girl sitting in a chair is covered in red goo and melted ice cream and whipped cream.,We\nanetv_xv8OYJ7t7-E,18146,We see an image of a lady covered in ice cream. A girl sitting in a chair,is covered in red goo and melted ice cream and whipped cream.,sees a man with tattoos of her belly in the barber chair.,\", working her hair, while she puts the things in her body.\",talks to her camera.,,gold0-orig,pos,unl,unl,pos,n/a,We see an image of a lady covered in ice cream.,A girl sitting in a chair\nanetv_xv8OYJ7t7-E,18145,A lady in a bikini is holding a sundae glass. We,see an image of a lady covered in ice cream.,it is the girl.,\"rises in white cup over the scene, and then after that, the kid is a break and set in half.\",men hold a hand pin on her mouth.,woman cleans the dog with a rag.,gold1-orig,pos,unl,unl,unl,unl,A lady in a bikini is holding a sundae glass.,We\nanetv_xv8OYJ7t7-E,18148,We see the girl without the goo covering her. We,see the closing title screen.,\"appear, and she finally collapses the pillow, then stands on the table in front of him again.\",see a ladies swimming and standing on the parallel walkway.,\"and a man talk to each other, then the men take off after the monitor.\",the girl finishes her hair and puts one paw down.,gold0-reannot,pos,unl,unl,unl,unl,We see the girl without the goo covering her.,We\nanetv_xv8OYJ7t7-E,13935,The woman the picks up a glass and holds it. things,are being poured on the woman.,pan down from the tray as well as pours the bags around.,sit across the table the woman throw the ball down.,come up in the box and places upside back down.,are hanging around the table in front of him.,gold0-reannot,pos,unl,unl,unl,pos,The woman the picks up a glass and holds it.,things\nanetv_PLvg8riZZVw,5218,A man is holding a fishing pole over an ice fishing hole. He gently,tries to pull up and then reel the fishing line out of the hole.,swims up and down the hill in the hole.,inserts the fish into the hole.,\"turns the fish off, slowly left on the right side on his board.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is holding a fishing pole over an ice fishing hole.,He gently\nanetv_PLvg8riZZVw,5220,He dips and lowers while taking a break. He,tries to reel the line out again.,flips over and begins to proceed high to the ice.,begins talking again without another word.,runs down the counter slowly and positions himself.,puts the cigarette down and goes to the bed.,gold1-orig,pos,unl,unl,unl,unl,He dips and lowers while taking a break.,He\nanetv_PLvg8riZZVw,5219,He gently tries to pull up and then reel the fishing line out of the hole. He,dips and lowers while taking a break.,\"falls backwards into the ramp, and he is filled with water.\",stops getting his gun from the spot.,walks along the wall outside to a pew.,,gold0-orig,pos,unl,unl,unl,n/a,He gently tries to pull up and then reel the fishing line out of the hole.,He\nanetv_PLvg8riZZVw,5222,He removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly. He,steps around the hole and continually gently pulls the line from the water as another man pulls the fish out of the water.,\"stops, and gets back up, holding a bow in his neck.\",continues applying the first piece of wax paper to the floor and the pieces on a fingernail are still attached to the ground.,\"watches to go through the window, through the tall window.\",finally drops streaks of water into the grass and puts it upside fall down into the abyss.,gold0-orig,pos,unl,unl,unl,unl,He removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly.,He\nanetv_PLvg8riZZVw,5221,He tries to reel the line out again. He,removes his gloves and gets to his knees and back up as he tries to pull the line out of the hole repeatedly.,swallows hard as he stands in the distance behind someone.,\"stops, picks up the plank, then hurls it to the ceiling.\",goes around and continues throwing the ball and hitting it in the back.,,gold0-orig,pos,unl,unl,unl,n/a,He tries to reel the line out again.,He\nanetv_Aq2w52hpwig,11312,A person is seen sitting along the water with a close up of a paddle is shown. The camera,pans around to another group of people sitting in a canoe across from them.,spins around and the person continues swimming around the water while pouring back more water on the camera.,pans around to show several other kids riding and performing tricks tricks.,pans around the boat then pans through to a person's feet holding up a fishing pole.,pans all around the road as well as showing the back and people in the water as well as down.,gold0-orig,pos,unl,unl,pos,pos,A person is seen sitting along the water with a close up of a paddle is shown.,The camera\nanetv_Aq2w52hpwig,11313,The camera pans around to another group of people sitting in a canoe across from them. More people,are seen sitting in the water as well as boats along the water.,watch on the side and ends with the people paddling in the water.,walk past one another and end by pulling a tube and looking down at the site.,are shown riding in the back looking to people outside on the beach.,,gold0-orig,pos,unl,unl,pos,n/a,The camera pans around to another group of people sitting in a canoe across from them.,More people\nanetv_6PaTEwG8Ym4,4385,The man is sitting with a camera in his hand. The hairdresser,finishes cutting his hair and then steps back.,turns to the camera and shows how to use the hula hoop.,digs the potato in the pot.,starts welding the face and position of the mower leaf.,throws the frisbee in the air as fast as he can.,gold0-orig,pos,unl,unl,unl,unl,The man is sitting with a camera in his hand.,The hairdresser\nanetv_6PaTEwG8Ym4,4383,A man is seated on a chair in a hair salon. He,is getting a haircut from a hairdresser who is wearing a blue dress.,starts braiding her hair.,is using a big brush to dry his hair.,shows the materials to make a braid in and out.,is talking about how to fix your hair.,gold0-orig,pos,unl,unl,pos,pos,A man is seated on a chair in a hair salon.,He\nanetv_6PaTEwG8Ym4,4384,He is getting a haircut from a hairdresser who is wearing a blue dress. The man,is sitting with a camera in his hand.,is genuinely divided by his frail fingers.,finishes the ups and continues to talk to the camera.,starts pulling his stake sacks as he examines them in the shop.,is still looking in the mirror as her workshop is off.,gold0-orig,pos,unl,unl,unl,pos,He is getting a haircut from a hairdresser who is wearing a blue dress.,The man\nanetv_pmIJcJiydpk,6425,A small child is seen standing with her hands on her hips and between jumping down a hop scotch outline. She,jumps all the way down and speaks to the camera in the end.,then begins using it on her right.,picks up one of the bottles and finally begins to move it into a lit beat.,moves to show the end around the bars and then bounces down at the end.,stops spinning and spins while looking around in the distance.,gold0-orig,pos,unl,unl,unl,unl,A small child is seen standing with her hands on her hips and between jumping down a hop scotch outline.,She\nanetv_lKSlIMfWZXI,12401,A man is washing dishes in a sink. He,holds a large hose to spray the dishes with.,picks up a cup and scoops an apple to clean around.,washes his hands in a sink.,sprays the sink with a sponge and stops changing it.,fills the sink with a sponge.,gold0-orig,pos,unl,unl,unl,unl,A man is washing dishes in a sink.,He\nanetv_lKSlIMfWZXI,799,A view is shown of a person inside a bathroom. A woman,dips a hose into a large tub.,cuts washing the bike.,gear up with a towel and other person wearing.,is painting a piece of clothing clothing.,dips the brush into a crown of other brushes.,gold0-reannot,pos,unl,unl,unl,unl,A view is shown of a person inside a bathroom.,A woman\nlsmdc1015_27_Dresses-79671,18452,\"She goes to the bathroom and moisturizes her hands, then does some work at her laptop. Shuffling papers, she once again\",glances at the door.,realizes her groceries is already sitting in the open doorway.,solves again.,switches the board back on.,,gold0-orig,pos,unl,unl,pos,n/a,\"She goes to the bathroom and moisturizes her hands, then does some work at her laptop.\",\"Shuffling papers, she once again\"\nlsmdc1015_27_Dresses-79671,18450,\"Later, a car drives past someone's building. She\",\"rushes to the front door, peers through the peephole, then flings it open.\",races a gothic school u. purchases championship.,attempts to roll the window.,creeps across a bridge.,picks up vodka and leaves.,gold0-orig,pos,unl,unl,pos,pos,\"Later, a car drives past someone's building.\",She\nlsmdc1015_27_Dresses-79671,18451,\"Someone switches on the light in the living room, its empty and she wanders anxiously up and down, then picks up a magazine from the couch, sits in a chair, thumbs through it distractedly. She\",glances towards the front door.,shows the overnight pack and hangs it on the rack.,\"steps over to him, and pauses for a moment before continuing her greeting.\",\"looks herself in the eye, then folds his hands inquisitively.\",rejects the call from pedaling through.,gold0-orig,pos,unl,unl,unl,unl,\"Someone switches on the light in the living room, its empty and she wanders anxiously up and down, then picks up a magazine from the couch, sits in a chair, thumbs through it distractedly.\",She\nanetv_tAleUKVZCD8,18329,\"The players go to dressing rooms in the half time. Then, the players continue playing and the red team\",scores and wins the competition.,wins with the ball start and after the player drops the wrestler in to some landing.,points at the ball.,spins and try to score and wins again.,,gold0-orig,pos,unl,pos,pos,n/a,The players go to dressing rooms in the half time.,\"Then, the players continue playing and the red team\"\nanetv_tAleUKVZCD8,18328,After the red team score. The players,go to dressing rooms in the half time.,have presented celebrates as they go play soccer.,practice as high as a list of praise.,will only fast pull and teetering place.,,gold0-reannot,pos,unl,unl,unl,n/a,After the red team score.,The players\nanetv_0bjHe_5nACw,17140,A woman is seen speaking to the camera while holding a violin and continues with her playing the violin and pausing. The woman,continues playing the instrument and stopping to speak to the camera and demonstrate how to play.,plays the camera all around while still moving along the stage while others still sitting in the background.,begins to play drums while stopping to speak to the audience to speak before giving it back to the camera.,continues to play the instrument while moving the arms up and speaks to the camera.,continues to play the violin and ends by speaking to the camera while still speaking to the camera.,gold1-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding a violin and continues with her playing the violin and pausing.,The woman\nanetv_ilX9ntIzaoQ,18962,We see a man run and jump on a raft as it slides down a long snowy hill. The raft stops and the cameraman,gets up and walks around while filming the ground.,pretends to walk back.,lands on a touch screen.,zooms up as we see the bottom.,,gold1-orig,pos,unl,unl,pos,n/a,We see a man run and jump on a raft as it slides down a long snowy hill.,The raft stops and the cameraman\nanetv_HDVk1O78gwc,17290,Several female gymnasts are shown on the bars making different mistakes with their tricks. Their coaches,are also shown in the video along with them.,have seen on the sides as they pivot their advantage.,and then to join the girls as they continue to show and continue to do several gymnastic tricks with their jump ropes.,are injured and beating their legs in the sitting area.,seem to be really successful while the girls continues to play.,gold1-orig,pos,unl,unl,unl,unl,Several female gymnasts are shown on the bars making different mistakes with their tricks.,Their coaches\nanetv_HDVk1O78gwc,17291,Their coaches are also shown in the video along with them. The video,ends with the closing credits shown on the screen.,then pans to a variety of young men some standing and performing climbers.,shows someone ending the video.,ends with the closing credits shown on screen.,,gold0-orig,pos,unl,unl,pos,n/a,Their coaches are also shown in the video along with them.,The video\nanetv_HDVk1O78gwc,14525,She is seen in several clips as she falls and fails at the the flips and mounts. The clips,continue throughout the video.,continue on people lying in the sky attempting to finish by coming out very quickly.,continue to move on on various motion and end by scenes of water draining from the horizon.,includes several small people multiple times before practicing when their board lands.,are shown again again after breaks.,gold1-orig,pos,unl,unl,unl,pos,She is seen in several clips as she falls and fails at the the flips and mounts.,The clips\nlsmdc1014_2012-79277,2882,\"People climb down the steps, leaving someone in the cockpit with someone. In the cargo hold, someone\",hands someone life jackets.,holds up his neuralyzer.,clasps his hands in his.,turns a corner and frowns.,,gold0-orig,pos,unl,unl,unl,n/a,\"People climb down the steps, leaving someone in the cockpit with someone.\",\"In the cargo hold, someone\"\nlsmdc1014_2012-79277,2883,\"In the cargo hold, someone hands someone life jackets. Someone\",leans on the steps and looks across at his sleeping family.,\"sits his buster, staring gravely at someone.\",leans back near his bass drum.,bangs a rubber officer and deck the cargo plane.,\"peers down the window, faces one of the gypsies.\",gold0-orig,pos,unl,unl,unl,pos,\"In the cargo hold, someone hands someone life jackets.\",Someone\nanetv_xm7pETlJrwA,6053,She pours water out of the pot into the bucket as well as some detergent. She then,washing clothes in the bucket using water continuously as well as a toothbrush.,shakes the container over dry cleaning and stirs it and the water begins to boil.,grabs a bucket and tosses it into a bucket that begins to sink.,lands her feet on the soap and continues brushing her face.,,gold0-orig,pos,unl,unl,unl,n/a,She pours water out of the pot into the bucket as well as some detergent.,She then\nanetv_xm7pETlJrwA,6054,She then washing clothes in the bucket using water continuously as well as a toothbrush. She,lays out the clothes in the end as well as hangs them up.,sprays her tongue thoroughly and carefully uses it to wipe off her face.,hit the ice on the back of the broom.,scrubs her hands onto the sink while putting more lipstick on her lips.,continues brushing her hair as well as speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,She then washing clothes in the bucket using water continuously as well as a toothbrush.,She\nanetv_xm7pETlJrwA,6052,A woman is seen speaking to the camera while holding up a bucket and pot. She,pours water out of the pot into the bucket as well as some detergent.,pours liquid into a glass and begins presenting the magazine to the camera.,continues speaking to the camera while still packing up other clothes and talking to the camera.,puts several ingredients into a pot and hands it back again.,talks while another person continues washing the dishes.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen speaking to the camera while holding up a bucket and pot.,She\nlsmdc3060_SANCTUM-29296,16578,\"Someone and someone lifted on to the rocks. Back at forward base, someone\",joins someone under the tent.,starts to climb the zebra.,'s crew steps upward.,\"squats down in front of his head, which sits on the platform next to someone at the bar.\",crosses onto the docks.,gold0-orig,pos,unl,unl,unl,pos,Someone and someone lifted on to the rocks.,\"Back at forward base, someone\"\nlsmdc3060_SANCTUM-29296,16579,\"Someone shoots someone a sidelong glance, then sits beside someone who eats rice from a pot. Someone\",turns off the radio.,brings his plate back to the counter as he reads a book paper.,\"looks from the salesman to someone, standing and makes her stomach slip.\",slumps into a folding chair.,\"watches him, then pumps his fist.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone shoots someone a sidelong glance, then sits beside someone who eats rice from a pot.\",Someone\nlsmdc3060_SANCTUM-29296,16582,\"With his head bowed, he holds the bottle out to someone who takes it and drinks. The young man\",swallows then lets out a deep breath.,\"steps someone into stage with people, standing behind them.\",glances down at his watch.,touches a piece of iced juice over someone's ear.,follows someone's the second time.,gold1-orig,pos,unl,unl,unl,unl,\"With his head bowed, he holds the bottle out to someone who takes it and drinks.\",The young man\nlsmdc3060_SANCTUM-29296,16577,\"Someone sees his father standing at the water's edge, his arms cradling someone's limp body. Someone and someone\",lifted on to the rocks.,trot down the gloomy street.,lie next to each other on the bed.,apparate nearby.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone sees his father standing at the water's edge, his arms cradling someone's limp body.\",Someone and someone\nlsmdc3060_SANCTUM-29296,16583,The young man swallows then lets out a deep breath. Someone,lifts his head but avoids his son's gaze.,pulls nervously from her view.,\"rides around in the water, shaking his head, fixing his guns.\",\"grabs his jacket, and someone and someone step out with a freestanding fountain.\",,gold0-orig,pos,unl,unl,unl,n/a,The young man swallows then lets out a deep breath.,Someone\nlsmdc3060_SANCTUM-29296,16580,Someone turns off the radio. He,\"sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig.\",blasts the hammer pipes.,halts and visits forward.,drops the helmet on and winds through it.,grabs the summons and makes his way back to the stage.,gold0-orig,pos,unl,unl,unl,pos,Someone turns off the radio.,He\nlsmdc3060_SANCTUM-29296,16581,\"He sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig. With his head bowed, he\",holds the bottle out to someone who takes it and drinks.,\"goes out, opens a shot glass and flask for a drink, and studies his glass of vodka and a pencil.\",tears some caviar into his plate and throws it down.,\"backs away, gliding over the shimmering tropical water.\",whips around and straightens his walking stick.,gold0-orig,pos,unl,unl,unl,pos,\"He sits heavily beside his son, pulls the cork from his tequila bottle, and takes a swig.\",\"With his head bowed, he\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10231,Munching a hamburger someone enters the lobby through a revolving door. As the door start to close she,reaches out towards a hastily approaching colleague.,\"moves into an open - view space and replaces a locked door, which glows precariously covered by water.\",lowers the ticket in the washroom.,pulls out the key from the hall.,turns and walks through the gate.,gold1-orig,pos,unl,unl,unl,pos,Munching a hamburger someone enters the lobby through a revolving door.,As the door start to close she\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10232,Quickly retracts her hand as the door slams shut. She,narrows her eyes disapprovingly.,slams the door shut.,\"sits upright, holding him open and shivering helplessly.\",limps down a flight of steps.,slides someone's phone from her bag.,gold0-orig,pos,unl,unl,pos,pos,Quickly retracts her hand as the door slams shut.,She\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10229,The corners of his mouth down turned. He,peers at the contact sheet through a magnifying eye - glass to see two portly middle aged gentlemen holding glasses of wine.,\"look good to clean unnerved, he dropped the cup too.\",comes too.,chuckles then does the conductor himself.,,gold0-orig,pos,unl,unl,pos,n/a,The corners of his mouth down turned.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73108,10230,He looks at the telephone receiver and frowns. Munching a hamburger someone,enters the lobby through a revolving door.,holds at his laptop.,ducks over a table and hides his actual eye with his hand.,hops off and thumps the shuttle with his skipper.,\"walks over to someone, who wanders ahead.\",gold1-orig,pos,unl,unl,unl,pos,He looks at the telephone receiver and frowns.,Munching a hamburger someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1651,She switches on the laptop. She,looks up from the laptop.,stares at the book.,\"leaves the cell, locking herself in.\",sets the timer on the computer again.,goes back to the kitchen.,gold0-orig,pos,unl,unl,pos,pos,She switches on the laptop.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1650,She crosses to his laptop and finds the photograph of young someone among the search party. She,switches on the laptop.,defends herself with the towel.,totters her vertical legs with a corner.,sets up and comes.,comes in and inspects the gift.,gold0-reannot,pos,unl,unl,unl,pos,She crosses to his laptop and finds the photograph of young someone among the search party.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34349,1649,At the cottage someone drops her helmet and bag. She,crosses to his laptop and finds the photograph of young someone among the search party.,\"sets his hand on a cane, then slams back down on a railing.\",drops her braces and lies curled up on it.,\"undoes the seat, sliding a knife over the dead man's chest and cheek to the diner.\",turns a wheel on her shoulder and the lights go out.,gold1-reannot,unl,unl,unl,unl,unl,At the cottage someone drops her helmet and bag.,She\nanetv_S24MDjduWIY,4005,The man ties a rope around a ball and continues having him perform layups on the court. More clips,are shown of them practicing while the man speaks to the camera.,are shown of people walking around the room and landing onto the stage.,are shown of people playing in bumper cars while others waiting around them.,\"are shown of people playing, hurling and throwing frisbee.\",are shown of people doing tricks through the water while other people watch the game.,gold0-orig,pos,unl,unl,unl,unl,The man ties a rope around a ball and continues having him perform layups on the court.,More clips\nanetv_S24MDjduWIY,4004,A man is seen speaking to the camera while people practice basketball drills intermittently. The man,ties a rope around a ball and continues having him perform layups on the court.,moves using the stick to have a set of weights as spectators watch on the sides.,gives a thumbs up and then plays the field with a wooden ball while leading the men around to watch bike players.,points to a large picture of a player standing ball to another and men doing capoeira moves.,moves another boy around continuously while kicking another down and spreading him onto the legs.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen speaking to the camera while people practice basketball drills intermittently.,The man\nanetv_yXH7GcOduNo,13118,A woman is seen standing in the middle of a sand pit and begins swinging an object around. She,spins this around herself several times then begins swinging herself around.,view throws down several several members of a soccer field as well as down onto her board and pushing the stick around.,throws down the stick and ends by grabbing the stick into the hoop.,continues moving back and fourth and ends by jumping off the side and beginning tricks.,passes continuously along the water and end by falling from side to side on a mat.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen standing in the middle of a sand pit and begins swinging an object around.,She\nanetv_yXH7GcOduNo,13119,She spins this around herself several times then begins swinging herself around. She,continues swinging and finishes by throwing it off into the distance.,continues to jump around the bars and ends with them spinning and holding up the log.,is being shown several times.,walks up to the horse and climbs back into the horse.,,gold0-orig,pos,unl,unl,unl,n/a,She spins this around herself several times then begins swinging herself around.,She\nanetv_asLRIsN6wLQ,17566,A man in a yellow shirt holds a ball on his shoulder does some movements and turns quickly to throw it. After him another man,does the same technique and throws the ball as well.,takes a shot and throws the ball from through the other.,in a white shirt hits the object with his bats and falls backwards.,goes down and swings the ball down also others kick it on his hand.,comes to a fast goal and talks gestures while others practice steppers.,gold0-orig,pos,unl,unl,unl,pos,A man in a yellow shirt holds a ball on his shoulder does some movements and turns quickly to throw it.,After him another man\nanetv_asLRIsN6wLQ,6350,Another man steps up and bends forward while throwing a ball off into the distance. Several more men,take their turns as the camera captures their movements.,are seen throwing darts around the field while a man runs behind them.,are seen riding around in a gym while the camera follows in the distance.,are seen walking into frame and leads into several clips of people playing ping pong.,,gold0-orig,pos,unl,unl,pos,n/a,Another man steps up and bends forward while throwing a ball off into the distance.,Several more men\nanetv_asLRIsN6wLQ,17567,After him another man does the same technique and throws the ball as well. They,take turns doing this and throwing the ball to see who gets it farther.,cut a victory volleyball for cover.,are shown making goals row indoor soccer.,clips the boy throwing the ball towards the passing opponent.,does it a little more times at once.,gold0-orig,pos,unl,unl,unl,unl,After him another man does the same technique and throws the ball as well.,They\nanetv_asLRIsN6wLQ,6349,A large ball is soon rolling forward followed by a man bending over and throwing a ball. Another man,steps up and bends forward while throwing a ball off into the distance.,continues to watch as the young boy continues picking lifts and the dog continues to play.,is seen a game of volleyball as well as spinning as his playing hockey still watching.,flips the volleyball to the music and attempts to stand far with one of them up towards the man.,walks up a lawn and up off the ball with his left hand in four shots.,gold0-orig,pos,unl,unl,unl,unl,A large ball is soon rolling forward followed by a man bending over and throwing a ball.,Another man\nanetv_asLRIsN6wLQ,17568,\"They take turns doing this and throwing the ball to see who gets it farther. Finally, the champion\",goes very last before throwing his ball into the distance.,appears to be again at the end of the video.,girl moves backwards and near the goal.,is back in he tells the results again.,look down first and turns it back over for a little time.,gold1-reannot,pos,unl,unl,unl,unl,They take turns doing this and throwing the ball to see who gets it farther.,\"Finally, the champion\"\nlsmdc3018_CINDERELLA_MAN-8093,14999,\"Someone gives someone a reassuring gesture. At the bar, someone\",stands and shakes someone's hand.,slices an omelet with the lemon inside the boat.,vomits into the saddle.,backs away at her aide.,,gold0-orig,pos,unl,unl,pos,n/a,Someone gives someone a reassuring gesture.,\"At the bar, someone\"\nlsmdc3018_CINDERELLA_MAN-8093,14992,Someone wraps the rest of her steak in her napkin. Someone,arrives and shakes hands with the maitre.,\"watches the news to the woman, then eats with the egg.\",pauses thoughtfully as she joins him in his chair.,\"is a buff man good times, and some others are drinking beer, the kitchen stealing food and dish, etc.\",\"leaves other chocolate, someone creeps in.\",gold0-orig,pos,unl,unl,unl,unl,Someone wraps the rest of her steak in her napkin.,Someone\nlsmdc3018_CINDERELLA_MAN-8093,14996,\"Someone turns in his seat, facing the large man fully. Someone\",winks as he crosses the room with a group of well - dressed friends.,breathes heavily as he gazes at the sky and his suv stands by the end of the crane's low line.,lowers his gun and flings the sling higher into the distance.,\", comes out and expected the situation.\",\"smiles at someone as she heads back at the beachfront, looking up behind him through the open windows of someone's mansion.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone turns in his seat, facing the large man fully.\",Someone\nlsmdc3018_CINDERELLA_MAN-8093,14997,Someone brings a bottle of champagne. Someone,straightens his suit jacket.,tosses it onto the floor.,puts glasses on her finger.,instantly notices her dress and holds it with both hands.,,gold1-orig,pos,unl,unl,pos,n/a,Someone brings a bottle of champagne.,Someone\nlsmdc3018_CINDERELLA_MAN-8093,14998,As his fighter crosses the room. Someone,gives someone a reassuring gesture.,gazes upward and looks up as someone follows the bride outside.,reels frantically through troubled passengers.,\"stands on the side of the balcony, his arms folded above his head.\",comes into the building and puts a hand in.,gold0-orig,pos,unl,unl,pos,pos,As his fighter crosses the room.,Someone\nlsmdc3018_CINDERELLA_MAN-8093,14991,A waiter starts to clear the table. Someone,wraps the rest of her steak in her napkin.,moves in front of someone as the young lady runs and leaps out someone's raised arm.,takes a drink and steps into the room with an attractive shower.,walks up to greet the old woman.,,gold1-orig,pos,unl,unl,pos,n/a,A waiter starts to clear the table.,Someone\nlsmdc3018_CINDERELLA_MAN-8093,14993,Someone arrives and shakes hands with the maitre. The Cinderella Man,follows his wife's gaze.,hangs the joy sign from either end of the o..,is slumped in the display case.,leads someone by the stereo to the door.,takes a long look at it.,gold1-reannot,pos,unl,unl,pos,pos,Someone arrives and shakes hands with the maitre.,The Cinderella Man\nlsmdc3018_CINDERELLA_MAN-8093,14994,The Cinderella Man follows his wife's gaze. As a waiter,removes someone's fur coat.,\"holds the bouquet, someone smiles.\",\"drives away, someone opens his eyes.\",looks up in the church.,brings the pay star to someone.,gold1-reannot,pos,unl,unl,unl,unl,The Cinderella Man follows his wife's gaze.,As a waiter\nanetv_rLH89pN9I84,10842,A woman walks out onto the grass. Two small dogs,follow her on leashes.,are being on her back.,run around and talks to him with the dogs dog.,are waiting on the kitchen entrance.,are standing on front them watching.,gold0-orig,pos,unl,unl,pos,pos,A woman walks out onto the grass.,Two small dogs\nanetv_rLH89pN9I84,10843,Two small dogs follow her on leashes. She bends down and the dogs,come up to her.,fight over the dog with white dog.,run around the water bottle.,are on the ground.,lick her hand as they walk.,gold0-orig,pos,unl,unl,pos,pos,Two small dogs follow her on leashes.,She bends down and the dogs\nanetv_X6IoTFqaegc,9248,The woman sprays the glass and follows the object down the glass. She,does this several times and shows where to plug in and how to use the tool.,continues taking turns turning the camera back.,points out the tongue holes and watches the man laugh.,pours several more liquids into piles.,picks the bottle down and wipes off the table.,gold0-orig,pos,unl,unl,unl,pos,The woman sprays the glass and follows the object down the glass.,She\nanetv_X6IoTFqaegc,9247,A woman's hand is shown wiping a glass screen followed by various objects sitting on a table. The woman,sprays the glass and follows the object down the glass.,mixes it up and continues along there followed by the person drying her leg and standing by the camera.,begins slicing lemons into small pieces of glass.,wipes down the pinky and turns the glass through the face while speaking to the camera.,\"carefully strokes the iron, wiping it over the strip and ending by pouring it down onto the dresser.\",gold0-orig,pos,unl,unl,unl,unl,A woman's hand is shown wiping a glass screen followed by various objects sitting on a table.,The woman\nanetv_ez9pf35BMtc,11832,The man is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars. The boy,demonstrates landing a jump from the parallel bars as the man continues to talk to the camera.,continues rotating it with both hands when the boy stands to talk to the camera.,walks around to another sitting next to him moving his hands up and down.,goes on and the young man raises his leg in the air until it lands on a bend.,,gold0-orig,pos,unl,unl,pos,n/a,The man is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars.,The boy\nanetv_ez9pf35BMtc,18083,A little boy is shown on beams as the instructor describes what he's doing. The instructor,continues speaking to the camera about what to watch out for.,\"is laying on the trampoline using the bars, the backup dancers and the other boy turns around then stands up.\",is now doing a routine in the end and jumps back again onto the mat.,hands one to them who also kneels on the field behind him.,,gold0-orig,pos,unl,unl,unl,n/a,A little boy is shown on beams as the instructor describes what he's doing.,The instructor\nanetv_ez9pf35BMtc,18084,The instructor continues speaking to the camera about what to watch out for. The boy then,continues performing as his instructor's direction.,finishes with all the lines and the first lens works.,comes to the camera and walks along the camera and moves all over.,moves to the camera and begins going next to the bar and zooming in on his face.,,gold0-orig,pos,unl,unl,pos,n/a,The instructor continues speaking to the camera about what to watch out for.,The boy then\nanetv_ez9pf35BMtc,18082,\"In this video, a male instructor speaks to the camera in a gym. A little boy\",is shown on beams as the instructor describes what he's doing.,walks into a microphone.,jumps into the air before leaning to the podium.,throws another soccer ball onto the table and serves it in place.,,gold0-orig,pos,unl,unl,unl,n/a,\"In this video, a male instructor speaks to the camera in a gym.\",A little boy\nanetv_ez9pf35BMtc,11831,The man talks to the camera in a indoor gym. The man,is then seen next to a pair of parallel bars where a young boy is hanging and balancing himself between the bars.,kicks and throws his jumps.,removes the blindfold bottle.,beats the ball on the wall.,dismounts and throws the ball down the lane.,gold0-orig,pos,unl,unl,unl,unl,The man talks to the camera in a indoor gym.,The man\nanetv_ez9pf35BMtc,11830,A man demonstrates how to balance on the parallel bars using a student gymnast as an example on a pair of parallel bars in an indoor gymnasium. The man,talks to the camera in a indoor gym.,performs tai chi jumps while the gymnast perform the same routine.,jumps heavy parallel bars and instructs as he misses a second while doing flip in midair and lands on his tie behind him.,begins jump throwing the ball high into the air once more.,perform middle spins in the room up and he does leg vaults on the mat.,gold1-reannot,pos,unl,unl,unl,pos,A man demonstrates how to balance on the parallel bars using a student gymnast as an example on a pair of parallel bars in an indoor gymnasium.,The man\nanetv_Prt07JFztMI,9055,Two men are in an alley. They,are bouncing up and down on sticks.,are putting a yellow board on a table in front of them.,throw the ball and fall over onto the mat.,are playing a game of tennis.,push the stool down and walk through the junction.,gold0-orig,pos,unl,unl,unl,unl,Two men are in an alley.,They\nanetv_Prt07JFztMI,9057,There is a van in the foreground. There,are also several buildings.,is snowboarding while he is sitting on another.,stands being circled to one another and the winner walks away.,is an arm in and he continue to shake him off.,\"bedroom door opens and a black mercedes appears, just a few yards from coming.\",gold0-reannot,pos,unl,unl,unl,pos,There is a van in the foreground.,There\nanetv_Prt07JFztMI,9056,They are bouncing up and down on sticks. There,is a van in the foreground.,are broken kites in the air.,come out onto the stage and people are playing a game of ping pong.,are bent over the couch.,poses with the frisbee and another other off.,gold0-reannot,pos,unl,unl,unl,unl,They are bouncing up and down on sticks.,There\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18412,He adds it to the other personal things he is put in a cardboard box. Someone,appears at his door.,sets the timer back attached to a red bowl and starts to remove it from a sitting bag.,descends into the bank.,shifts her brown eyes.,\"rides along the road and sees them approaching, each blocking and everything.\",gold1-orig,pos,unl,pos,pos,pos,He adds it to the other personal things he is put in a cardboard box.,Someone\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18411,\"In his office, someone picks up the empty photo frame from his desk, and looks at it with a sigh. He\",adds it to the other personal things he is put in a cardboard box.,gestures to the prisoner and lowers himself into the chair.,turns and turns to look at someone.,walks back on the bed.,gets in his car.,gold0-orig,pos,unl,unl,unl,unl,\"In his office, someone picks up the empty photo frame from his desk, and looks at it with a sigh.\",He\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18408,\"At home, someone finds a note from someone. Glumly she\",\"steps into the room, and looks at all the clothes piled up on the bed.\",opens the portfolio and finds the signature clear of the triangle on the cigar box and passed it to her bag.,puts on the cake and checks her list.,walks into her kitchen behind someone studying the painting.,opens the wrapper and presents it to someone.,gold1-orig,pos,unl,unl,unl,unl,\"At home, someone finds a note from someone.\",Glumly she\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18406,\"He puts an arm around her, and she lays her head on his big barrel chest. Tears\",\"roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone.\",\"the blood from her face, the young girl gently lays her hand over her eyes.\",\"in the ring, someone stares with his eyes wide.\",pats her fiancee and they both watch her face.,,gold0-orig,pos,unl,unl,pos,n/a,\"He puts an arm around her, and she lays her head on his big barrel chest.\",Tears\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18407,\"Tears roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone. At home, someone\",finds a note from someone.,pulls out his wallet and searches on his bag.,'s daughter bows and walks toward the door with a stick of her heads.,carries a bowl of popcorn from someone's table in the dining table.,takes out his phone and steps out past someone.,gold1-orig,pos,unl,unl,unl,pos,\"Tears roll down someone's face as she watches her giant of a husband standing facing the lake, with his arm around someone.\",\"At home, someone\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18405,\"Looking up into her dad's jowly face, looking at her with fierce deep love, someone smiles. He puts an arm around her, and she\",lays her head on his big barrel chest.,smiles quickly and rubs himself with his.,gently kisses him passionately on the cheek.,looks at him tearfully.,,gold0-orig,pos,unl,unl,pos,n/a,\"Looking up into her dad's jowly face, looking at her with fierce deep love, someone smiles.\",\"He puts an arm around her, and she\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18409,\"Glumly she steps into the room, and looks at all the clothes piled up on the bed. She\",\"slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together.\",moves the dish aside and back towards an empty window.,remains out - ahead typing apart a bible.,chats in a plush acoustic chair.,steps through and finds someone leaning on a canvas helping between them.,gold1-orig,pos,unl,unl,unl,unl,\"Glumly she steps into the room, and looks at all the clothes piled up on the bed.\",She\nlsmdc1019_Confessions_Of_A_Shopaholic-80921,18410,\"She slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together. In his office, someone\",\"picks up the empty photo frame from his desk, and looks at it with a sigh.\",\"sits staring at her daughter, hands clutching her mother's crotch.\",covers two rows of brandy glasses.,lowers a needle through her bloody nose and gazes out.,,gold0-reannot,pos,unl,unl,unl,n/a,\"She slumps down, and gazes miserably at a photograph or herself and black - haired someone laughing together.\",\"In his office, someone\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18528,\"It morphs into someone, someone, and someone. Someone\",points to dark storm clouds gathering above the building's pinnacle.,is dimly across the room with her hands up on front his ankles.,turns and follows someone as they enter the lobby of an apartment building.,is an orderly behind someone.,flashes her a little smile and turns away.,gold0-orig,pos,unl,unl,pos,pos,\"It morphs into someone, someone, and someone.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18525,Someone and someone watch as the smoky trail disappears. She,wiggles an inviting finger.,twirls the barrel along their round targets.,props the sticks of her bony hands on her false ears.,lowers his wounded hand to the ceiling of her upper arms.,\"cuts a line of money, then stuffs it back into her bag.\",gold0-reannot,pos,unl,unl,unl,unl,Someone and someone watch as the smoky trail disappears.,She\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18523,\"He, someone and someone place their pearls on the floor, then crush them under their feet. Billows out, engulfing their legs and\",travels up their bodies which snakes its way out of the room.,spreads them over one guy's arms.,presses the door below them in the round - carpeted room.,flips all the way to the dance floor.,each dance in a view of someone 'gobbles.,gold0-reannot,pos,unl,unl,unl,unl,\"He, someone and someone place their pearls on the floor, then crush them under their feet.\",\"Billows out, engulfing their legs and\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18526,She wiggles an inviting finger. It,swoops through the protective fence that surrounds the empire state building's observation deck.,adds other cuff and adds the caviar to the cup.,\"squeezes called nyc models, gazing out the window.\",'s ready to leave the ring.,view her intense worn room.,gold0-reannot,pos,unl,unl,unl,unl,She wiggles an inviting finger.,It\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18524,\"Billows out, engulfing their legs and travels up their bodies which snakes its way out of the room. Someone and someone\",watch as the smoky trail disappears.,sit in a supermarket.,peer through a volume.,run past a giant suspended in midair.,shove each other into someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Billows out, engulfing their legs and travels up their bodies which snakes its way out of the room.\",Someone and someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26206,18527,It swoops through the protective fence that surrounds the Empire State Building's observation deck. It,\"morphs into someone, someone, and someone.\",wriggle out onto the balcony and down by a panel of delighted treasure.,knocks on the door at the end.,very calmly cocks a racket.,,gold0-reannot,pos,unl,unl,unl,n/a,It swoops through the protective fence that surrounds the Empire State Building's observation deck.,It\nlsmdc3027_GET_HIM_TO_THE_GREEK-12401,10947,Someone holds his arms out and the boy gives him a hug. The rock - star,holds him close then stands and steps away.,matches the mouthpiece and drives through first.,\"falls, sending him closely through the air and crashing, lying on rocky ground.\",hangs over the second floor as the doors swing closed.,\"sits on someone's chest, peering back and forth across the river.\",gold0-orig,pos,unl,unl,unl,unl,Someone holds his arms out and the boy gives him a hug.,The rock - star\nlsmdc1034_Super_8-8192,18182,Now someone is about three years old. His mother,measures his height against the wall.,does not dial his phone.,\"offers the check, then holds it up to someone.\",has opened the door.,leans down and beams at her husband.,gold0-orig,pos,unl,pos,pos,pos,Now someone is about three years old.,His mother\nlsmdc1034_Super_8-8192,18188,She laughs into the camera. Someone,waves at the camera.,steps across the cafe.,shakes an invisible hair to her friend.,writhes in shallow water beside her.,looks to the camera.,gold0-orig,pos,unl,unl,unl,pos,She laughs into the camera.,Someone\nlsmdc1034_Super_8-8192,18180,His mother blows out a solitary candle on his cake. She,picks him up in her arms.,pushes someone to a table and lets someone go.,enters the shop and peeks through a window then leans beside him.,picks up the source of the music.,holds someone's waist as he wears the night dress.,gold0-orig,pos,unl,unl,unl,unl,His mother blows out a solitary candle on his cake.,She\nlsmdc1034_Super_8-8192,18199,\"Later, someone carefully slips her key into her front door and opens it. She\",steps into the hall and puts the key in a dish on a side board.,stands in front of himself and sees someone in a black leotard.,walks over to the wall.,opens the door and lurches downstairs and pulls out a letter from the slide.,,gold0-orig,pos,unl,pos,pos,n/a,\"Later, someone carefully slips her key into her front door and opens it.\",She\nlsmdc1034_Super_8-8192,18195,It vibrates across the tabletop. Someone,wipes the tears from her eyes.,feels his eyes as he shakes the cork at his wife.,\"pops up, speeding up, by the police.\",frowns blankly and turns his attention to the book.,,gold0-orig,pos,unl,unl,pos,n/a,It vibrates across the tabletop.,Someone\nlsmdc1034_Super_8-8192,18197,He and someone exchange a look. People,go over to the hole and peer through it.,leap backward into the air.,stare out of the window as they follow.,get into the driver's seat.,,gold0-orig,pos,unl,unl,unl,n/a,He and someone exchange a look.,People\nlsmdc1034_Super_8-8192,18201,She sees someone sitting in the front room. She,\"goes in to him, and finds him smoking and drinking.\",turns to record the main propeller.,pulls a cellphone from her purse and answers with a smile.,sits fully clothed in an armchair.,looks at her then shrugs.,gold0-orig,pos,unl,unl,pos,pos,She sees someone sitting in the front room.,She\nlsmdc1034_Super_8-8192,18200,She steps into the hall and puts the key in a dish on a side board. She,sees someone sitting in the front room.,\"falls into the water, frowning.\",holds open a phone.,watches someone feed from his computer.,opens and shuts the safe.,gold1-orig,pos,unl,unl,unl,unl,She steps into the hall and puts the key in a dish on a side board.,She\nlsmdc1034_Super_8-8192,18193,Someone watches the last bit of footage which is of someone's mother pushing him on a swing. The film,runs out and spins around on the reel.,is thrown from the hoop and the wrecked both awkward.,moves back as someone recklessly rolls away and goes into the control room.,cuts to someone's silhouette including his trousers.,,gold0-orig,pos,unl,unl,pos,n/a,Someone watches the last bit of footage which is of someone's mother pushing him on a swing.,The film\nlsmdc1034_Super_8-8192,18189,Someone waves at the camera. Someone,looks over at someone.,watches someone as someone hurries toward the entrance.,holds up a marker.,keeps his hands on their hips as he watches.,pulls out a blue lit cigarette.,gold0-orig,pos,pos,pos,pos,pos,Someone waves at the camera.,Someone\nlsmdc1034_Super_8-8192,18191,She is sitting with her back to him. Her shoulders heave and tears,roll down her face.,make down her face as she cries.,slide down someone's cheeks.,roll down her cheeks.,pours down his face.,gold0-orig,pos,unl,unl,pos,pos,She is sitting with her back to him.,Her shoulders heave and tears\nlsmdc1034_Super_8-8192,18176,A Cinay projector starts up. Someone,moves forward to watch the film.,picks up the typewriter and wraps it inside him.,tries to copy the school story.,stands as someone takes it from the table.,pulls some prep earphones from his pocket.,gold0-orig,pos,unl,unl,pos,pos,A Cinay projector starts up.,Someone\nlsmdc1034_Super_8-8192,18192,Her shoulders heave and tears roll down her face. She,struggles to find the words.,opens her eyes triumphantly.,shifts her sober gaze.,pulls herself ecstatically and rises over the couch.,\"purses her lips, and rolls her eyes.\",gold1-orig,pos,unl,unl,unl,pos,Her shoulders heave and tears roll down her face.,She\nlsmdc1034_Super_8-8192,18185,\"Someone watches as the footage changes to him with his mother at Christmas. On screen, she\",smiles as someone holds up a present.,is: eight years later.,reads plenty of clothes.,\"sits a clothed goblin on the wall, his hands curled around her shoulder.\",turns awkwardly in the kitchen.,gold0-orig,pos,unl,unl,unl,pos,Someone watches as the footage changes to him with his mother at Christmas.,\"On screen, she\"\nlsmdc1034_Super_8-8192,18177,Someone moves forward to watch the film. The footage,is of someone as a baby with his mother.,continues across the lot and finds a grab someone.,is a file of about f. - arizona - life.,is a wave of someone about someone beside this.,,gold0-orig,pos,unl,unl,unl,n/a,Someone moves forward to watch the film.,The footage\nlsmdc1034_Super_8-8192,18184,She kisses a cut on his hand better. Someone,watches as the footage changes to him with his mother at christmas.,leans close to her gently leans a hand on someone's shoulder.,\"leads someone to the hall, gazing out toward his desk.\",rolls her head and sinks into her seat belt.,licks her lips then smiles.,gold0-orig,pos,unl,unl,unl,pos,She kisses a cut on his hand better.,Someone\nlsmdc1034_Super_8-8192,18179,He sucks on her locket as she holds him. His mother,blows out a solitary candle on his cake.,\", nervously, is asleep comfortably in someone's bed from the bed.\",is belly dancing helplessly.,holds ready for her.,,gold0-orig,pos,unl,unl,unl,n/a,He sucks on her locket as she holds him.,His mother\nlsmdc1034_Super_8-8192,18178,The footage is of someone as a baby with his mother. He,sucks on her locket as she holds him.,is a little little rusty.,\"walks back to her, imploring what someone is saying.\",pulls out a stained - iron window.,\"hangs from his ntsb jacket and looks down at the dead woman and a baby, looking down.\",gold0-orig,pos,unl,unl,unl,unl,The footage is of someone as a baby with his mother.,He\nlsmdc1034_Super_8-8192,18198,People go over to the hole and peer through it. The lights of the tomb and the water tower,can be seen in the distance through it.,shows several sailors hallway up outside.,are on the lavender carpet.,are all very clean.,are trailing above their heads.,gold0-orig,pos,unl,unl,unl,pos,People go over to the hole and peer through it.,The lights of the tomb and the water tower\nlsmdc1034_Super_8-8192,18187,\"He watches somberly as on screen, his mother picks him up and plays with him in the garden. She\",laughs into the camera.,opens the refrigerator and makes a sandwich.,guided by other dancers.,takes a second orbit.,twirls her around at the quickly.,gold0-orig,pos,unl,unl,unl,unl,\"He watches somberly as on screen, his mother picks him up and plays with him in the garden.\",She\nlsmdc1034_Super_8-8192,18183,His mother measures his height against the wall. She,kisses a cut on his hand better.,\"manages a cautious look at the associates, then snaps heads back inside.\",indicates the writers's edge.,cracks around the wood and sinks to the floor.,looks out from her neighborhood with wide eyes.,gold0-reannot,pos,unl,unl,unl,unl,His mother measures his height against the wall.,She\nlsmdc1034_Super_8-8192,18186,\"On screen, she smiles as someone holds up a present. He watches somberly as on screen, his mother\",picks him up and plays with him in the garden.,pulls about to say something else.,\"comes out of her apartment, glowers at her laptop.\",sits next to him leaning on the rail.,tosses her hair while she reads from it.,gold0-reannot,pos,unl,unl,pos,pos,\"On screen, she smiles as someone holds up a present.\",\"He watches somberly as on screen, his mother\"\nanetv_fnKOW7tJA1A,18919,He begins doing a gymnastic routines on the parallel bars. He,dismounts and lands on a mat.,does push - ups on the bars while he talks.,\"does numerous flips and flips, he dismounts and lands on the mat.\",does a gymnastics routine on the bars as he finishes.,spins around many times.,gold1-orig,pos,unl,pos,pos,pos,He begins doing a gymnastic routines on the parallel bars.,He\nanetv_fnKOW7tJA1A,3895,A man is doing a routine on the parallele bars. He,is swinging forward and backward.,'s the main game.,does push ups on the bars.,does a gymnastics routine on the bars.,does a gymnastics routine on uneven bars.,gold1-orig,pos,unl,pos,pos,pos,A man is doing a routine on the parallele bars.,He\nanetv_fnKOW7tJA1A,18918,A man jumps onto parallel bars. He,begins doing a gymnastic routines on the parallel bars.,does a gymnastics routine on the balance beam.,does push ups on the parallel beam.,does a gymnastics routine on a beam.,does a gymnastics routine on the balance bars.,gold1-orig,pos,unl,unl,pos,pos,A man jumps onto parallel bars.,He\nanetv_fnKOW7tJA1A,3896,He is swinging forward and backward. He,completes his routine and jumps off.,raises a large hammer and throw a baton.,runs through the long streets and lands within a row of trees.,starts flipping back and forth as he cheers without the jumping.,spins back and forth.,gold1-reannot,pos,unl,unl,pos,pos,He is swinging forward and backward.,He\nanetv_MinmayCk2Nk,15123,The man does a handstand and dismounts. The man,takes a bow and starts walking away.,climbs far back before flipping quickly and jumps back flipping.,dismounts from the mat.,dismounts from the left pole.,throws the pommel discus as he performs high kicks.,gold0-orig,pos,unl,unl,unl,unl,The man does a handstand and dismounts.,The man\nanetv_MinmayCk2Nk,15121,We see a male gymnast prepare to use the pommel horse. The man,mounts the pommel horse and spins his legs around it.,does several jumps in triumph.,stops and rides down slowly.,rides with his horse back and forth in fast motion.,knocks across the ground with sand.,gold0-orig,pos,unl,unl,unl,unl,We see a male gymnast prepare to use the pommel horse.,The man\nanetv_MinmayCk2Nk,15122,The man mounts the pommel horse and spins his legs around it. The man,does a handstand and dismounts.,dismounts and spins with the board in his hands.,moves after the thoughtful horse and then gets on the horse.,dismounts and throws a karate arm.,jumps off the pommel horse.,gold0-orig,pos,unl,unl,pos,pos,The man mounts the pommel horse and spins his legs around it.,The man\nanetv_7g3YO0-R4qk,14430,A swimming pool is shown in a room. Men,are shown jumping into the pool and swimming laps.,are playing beer pong and playing beer pong.,are sitting on plastic tables in a room.,are playing a volleyball and playing water polo.,,gold0-orig,pos,unl,unl,unl,n/a,A swimming pool is shown in a room.,Men\nlsmdc1001_Flight-71915,18114,\"Someone speeds down the mud road, splashing slush to the side. He\",brakes when he sees news crews outside the farm house.,stands across the water speeding over the side of the road.,fits a new box of crates to someone.,sits slouched.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone speeds down the mud road, splashing slush to the side.\",He\nlsmdc1001_Flight-71915,18115,\"He brakes when he sees news crews outside the farm house. Some reporters spot him, he\",reverses and drives back onto the main road.,turns the walk away from them.,walks across the street to the car.,takes his poker in his carriage.,stumbles out into his car.,gold0-orig,pos,unl,unl,unl,pos,He brakes when he sees news crews outside the farm house.,\"Some reporters spot him, he\"\nlsmdc1001_Flight-71915,18119,He steps out of the car and walks up a foot path to a house. A man,watches someone from a parked car and speaks into his cell phone.,slams the doors shut behind him.,\"rides away across the street, pursued by oncoming traffic, gazing out at the city where dark city lights twinkling on the city.\",is cutting someone's hair.,walks off a sidewalk.,gold1-orig,pos,unl,unl,pos,pos,He steps out of the car and walks up a foot path to a house.,A man\nlsmdc1001_Flight-71915,18116,\"Some reporters spot him, he reverses and drives back onto the main road. He\",stops opposite a house in a quiet neighborhood.,\"the truck's entrance, someone as a pop, surrounded by the dark corner and pulls out the golden bar alongside the car.\",carries a swiftly - moving dildo along with the light.,holds up a parka as he hesitantly goes by.,,gold0-orig,pos,unl,unl,unl,n/a,\"Some reporters spot him, he reverses and drives back onto the main road.\",He\nlsmdc1001_Flight-71915,18118,He chugs on the bottle of juice. He,steps out of the car and walks up a foot path to a house.,\"opens the door, takes a mixer mix and dumps its contents in a dark room.\",adds detail to the whiskey's drink.,\"walks to another clinic, puts someone to a hook and stares at it.\",,gold0-reannot,pos,unl,unl,unl,n/a,He chugs on the bottle of juice.,He\nlsmdc1001_Flight-71915,18117,He stops opposite a house in a quiet neighborhood. He,chugs on the bottle of juice.,wanders through traffic and turns on the lights.,wanders in for a dirt road dipping heavily from a snow fence beyond the mirror.,leads the way to his motel.,\"arrives at the bar, where a list of junior school types.\",gold0-reannot,pos,unl,unl,unl,unl,He stops opposite a house in a quiet neighborhood.,He\nanetv_iuQHLWWhSEY,5852,She spins herself around and performs more tricks. She,jumps off the side in the end as others watch.,jumps to the end of the swing.,jumps into a pit and moves around off the ground.,\"pauses again as she walks along, doing various other tricks across the water.\",continues all around the area.,gold1-orig,pos,unl,unl,unl,pos,She spins herself around and performs more tricks.,She\nanetv_iuQHLWWhSEY,10396,\"She tries to roll forward, then falls. She\",\"stands up and balances, jumping off the beam.\",hunter draws another wand.,\"punches again, knocking him down.\",punches out at her in slow motion.,rises to the sky.,gold1-orig,pos,unl,unl,unl,unl,\"She tries to roll forward, then falls.\",She\nanetv_iuQHLWWhSEY,5851,A young girl is seen standing up on an exercise beam. She,spins herself around and performs more tricks.,moves back and fourth as well as jumping down and catching her baton and pull away.,begins performing gymnastic tricks on uneven bars.,begins moving around on a beam as well as does leaps and flips.,,gold0-orig,pos,unl,pos,pos,n/a,A young girl is seen standing up on an exercise beam.,She\nanetv_cgfJnog1WLE,14998,The second young lady comes back and does the same thing as well as the female who came after her. The girl,comes back but realizes the weight is too heavy and gives up lifting it.,is interviewed and leading the time.,is seen washing shoes and present.,finishes and pushes around the teacher.,performs another screenshot and then back together and begins to swim.,gold0-orig,pos,unl,unl,unl,unl,The second young lady comes back and does the same thing as well as the female who came after her.,The girl\nanetv_cgfJnog1WLE,14994,A young lady with broad shoulders and pig tails approaches a stage in prepares her mind. The lady,cracks her knuckles and then bends down and tries to lift the weights.,avoids a hopscotch bat and finds another pinata.,jumps off the beam and begins to rhythmically stack the woman's legs and body before an audience in sand.,sits up and sings with the baton dancer.,sips the ice cream cone and skeptically licks her lips.,gold0-orig,pos,unl,unl,unl,unl,A young lady with broad shoulders and pig tails approaches a stage in prepares her mind.,The lady\nanetv_cgfJnog1WLE,14999,\"The girl comes back but realizes the weight is too heavy and gives up lifting it. However, the original girl comes back and continues to lift more and more weight with ease until the last time, she then bows and they\",walk up to an olympic stage and receive their metal.,walk off to the wooden room where the male with the same landing bike makes a splash.,walk back together on the mat.,continue to stand for the first step.,break down into a stance corridor even past one another.,gold0-orig,pos,unl,pos,pos,pos,The girl comes back but realizes the weight is too heavy and gives up lifting it.,\"However, the original girl comes back and continues to lift more and more weight with ease until the last time, she then bows and they\"\nanetv_cgfJnog1WLE,14996,\"Another girl then walks up and lifts the bar half way, realizes she s incapable and drops it. After she walks off she\",\"brushes her self off and attempts again and raises it over her head, drops it, and walks away congratulating herself.\",bends down and sits up on the ground while the camera focuses turning the child.,turns the camera around and turns to the camera how to work the discs.,begins preparing the ingredients and begins mixing her things together in a few seconds.,\"gets up and walks away, leaving someone grilling her toes and holds the long string.\",gold0-orig,pos,unl,unl,unl,unl,\"Another girl then walks up and lifts the bar half way, realizes she s incapable and drops it.\",After she walks off she\nanetv_cgfJnog1WLE,14997,A screen of scores are then shown and a different girl attempts the weight. The second young lady,comes back and does the same thing as well as the female who came after her.,grabs the ball and throws it again.,is shown throwing the bat again in a slow motion knocking it over.,stops skipping and starts rotating her right arm.,opens a bottle that shows different moves in the background.,gold0-orig,pos,unl,unl,unl,unl,A screen of scores are then shown and a different girl attempts the weight.,The second young lady\nanetv_cgfJnog1WLE,14995,The lady cracks her knuckles and then bends down and tries to lift the weights. Too much weight is on the bar and the girls,\"ends up twisting her arm in a circle, drops the bar and cries out in agony.\",stand together to talk to each other while pointing.,put her arms on her.,steps back on the bar and tries to drink the cup.,performs her routine in the end as the cheerleaders practice after delivery and spitting up the hoists.,gold0-reannot,pos,unl,unl,unl,unl,The lady cracks her knuckles and then bends down and tries to lift the weights.,Too much weight is on the bar and the girls\nlsmdc1046_Australia-90791,16300,\"He looks her in the eye and walks off, leaving her uncomfortable and disappointed. Someone's\",sitting glumly by a cooking fire with people.,lee racked against his headlamps.,imagines people spinning back to the windows in the setting.,got a bottle house puppy and sugar in special gear.,got a tattoo like the makeup artist.,gold0-orig,pos,unl,unl,unl,unl,\"He looks her in the eye and walks off, leaving her uncomfortable and disappointed.\",Someone's\nlsmdc1046_Australia-90791,16302,She dips her fingers in ash. She,\"smears black ash on his cheek, and smiles.\",\"walks over to the stag, dropping, the voice measured.\",mixes a handful of yellow caviar onto another cake.,finds the withdraws pole in her hand.,,gold0-orig,pos,unl,unl,unl,n/a,She dips her fingers in ash.,She\nlsmdc1046_Australia-90791,16301,Someone's sitting glumly by a cooking fire with people. She,dips her fingers in ash.,is eating someone's coffee.,puts cakes down on a shelf.,tilts its head to give no response to anther.,,gold0-orig,unl,unl,unl,unl,n/a,Someone's sitting glumly by a cooking fire with people.,She\nlsmdc1046_Australia-90791,16299,\"He breaks eye contact, and nods thoughtfully. He\",\"looks her in the eye and walks off, leaving her uncomfortable and disappointed.\",\"pulls out a timekeeper's rod, takes the check, and gives it to the guy.\",\"takes a seashell, stares pensively, and opens his eyes.\",leans back and kisses her.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He breaks eye contact, and nods thoughtfully.\",He\nanetv_WcQV3OzK_sc,6014,Several people and kids watch on the side and the woman puts the girls hair into ponytails. She,speaks to the camera and cuts the girls hair when the dad puts the hair on his head and makes the kids laugh.,finally takes the boys out of her handbag and puts them on the table.,looks back and then continues to stand back to her finished putting.,sits the game facing three of the women and watches while an adult and girl practice.,jiggles the tires side and forth and shakes.,gold0-orig,pos,unl,unl,unl,unl,Several people and kids watch on the side and the woman puts the girls hair into ponytails.,She\nanetv_WcQV3OzK_sc,6015,\"The woman continues cutting her hair while others watch and speaks to the camera, followed by the woman straightening the hair and showing it off in slow motion. The girl\",holds her hair and screams in excitement at the camera.,continues braiding her hair and cutting her hair back with her yarn.,continues moving all around the back in various locations while the camera captures her movements.,continues to remove more makeup and then puts mascara to her hair and uses a tissue to style her hair.,,gold0-orig,pos,unl,unl,unl,n/a,\"The woman continues cutting her hair while others watch and speaks to the camera, followed by the woman straightening the hair and showing it off in slow motion.\",The girl\nanetv_V1CX5B7ih6c,12760,They jump and kick at each other. They,roll around on the mat until one of them pins the other.,sets the baton to the ground.,steps backward from the platform and onto a mat fixing their diaper before getting up and also practices jump in their workout routine.,hold hands as they go.,float down the ramp.,gold0-orig,pos,unl,unl,unl,unl,They jump and kick at each other.,They\nanetv_V1CX5B7ih6c,12759,\"Two men are on a padded surface, fighting. They\",jump and kick at each other.,move around in front of the group then begin dancing up and down.,put their arms around each other.,see the crowd in the bleachers and out introduction.,give each other a high five.,gold0-orig,pos,unl,unl,unl,unl,\"Two men are on a padded surface, fighting.\",They\nanetv_7mmXZeOJT8w,18581,A child's mouth is seen close up with a person brushing his teeth. The man,continues brushing while the boy smiles.,shows how to brush a brush with his teeth.,continues swinging with other girls on the side.,speaks to the camera as he continues to listen into the music.,continues to groom the horse while smiling and walks away.,gold1-orig,pos,unl,unl,unl,unl,A child's mouth is seen close up with a person brushing his teeth.,The man\nanetv_7mmXZeOJT8w,16040,Someone is brushing his teeth with a toothbrush. They,take the toothbrush out of his mouth.,can finish him running and action.,fall back and forth over the dancer's touch.,are working as the vinegar and water drip previous play on the sink.,,gold0-orig,pos,unl,unl,unl,n/a,Someone is brushing his teeth with a toothbrush.,They\nanetv_7mmXZeOJT8w,16039,A boy wearing glasses is sitting down. Someone,is brushing his teeth with a toothbrush.,puts the ice in his mouth and dumps the contents into a cup.,is showing how to put the bottle to his ear.,finishes and licks around.,,gold0-reannot,pos,unl,unl,unl,n/a,A boy wearing glasses is sitting down.,Someone\nanetv_7mmXZeOJT8w,18582,The man continues brushing while the boy smiles. He pulls out the toothbrush and the boy,looks to the camera.,brushes his hair and the camera cuts off.,shows him the fingers.,clips him and rubs his hands.,stops to look up and speak to the camera.,gold1-reannot,pos,unl,unl,unl,pos,The man continues brushing while the boy smiles.,He pulls out the toothbrush and the boy\nanetv_mxZRW_Xy7ks,15664,People are snowboarding between two fences in a small hall going down a small slope. people,are standing in a snowy mountain in snowboards.,are driving over the snow as fast as they can before riding in the car.,are laying on rafts in a river.,come down on a ladder while talking and talking.,,gold1-orig,pos,unl,unl,unl,n/a,People are snowboarding between two fences in a small hall going down a small slope.,people\nanetv_mxZRW_Xy7ks,15665,People are standing in a snowy mountain in snowboards. people,are eating sitting outside a tent.,are hula the dirt store.,are riding in a car.,are riding on recumbent bikes in the area.,are shoveling weeds in the sidewalk.,gold0-reannot,pos,unl,unl,unl,unl,People are standing in a snowy mountain in snowboards.,people\nanetv_ULPw4uZcx5I,140,A person is sitting in a tube with other people standing around and pushing the person down a snowy trail. The person,flies down the trail in the tube with another person following down afterwards.,continues skiing up and down the hill while the camera continues to capture another person in the sun.,is then seen riding outside the fourth snow covered and swimming around a large end.,is more water skiing as they talk at the camera.,continues riding around the area of the snowy hill while the skiers gather around and watch the man's side.,gold1-orig,pos,unl,unl,unl,pos,A person is sitting in a tube with other people standing around and pushing the person down a snowy trail.,The person\nanetv_K1_g97xCqKg,10294,The video begins with a closeup of a tire in an auto shop. The cameraman,uses his hand to show a specific spot on the tire and zooms in closer.,pulls the tire off of the vacuum.,opens the waterside gate and shows the keys.,looks out the window.,,gold0-orig,pos,unl,unl,pos,n/a,The video begins with a closeup of a tire in an auto shop.,The cameraman\nanetv_K1_g97xCqKg,10295,The cameraman uses his hand to show a specific spot on the tire and zooms in closer. The man,puts down the camera and begins working on the tire.,spins the car on the monitor and weaves the cars motion again.,places the tool on the handlebar and shakes it down.,continuously zooms all along the piece of metal while the camera pans back to the camera.,aims at the camera and continuously backs away water from the car.,gold0-orig,pos,unl,unl,unl,unl,The cameraman uses his hand to show a specific spot on the tire and zooms in closer.,The man\nanetv_K1_g97xCqKg,10297,He grabs the camera again to show different screws. The video,ends showing both sides of the tire.,is on the step again.,continues with the man reading the video with signs and talks directly to the camera.,cuts back to a game of various tricks.,ends with a title change.,gold1-orig,pos,unl,unl,unl,unl,He grabs the camera again to show different screws.,The video\nanetv_K1_g97xCqKg,10296,The man puts down the camera and begins working on the tire. He,grabs the camera again to show different screws.,turns around to tighten the hole in his back and continue riding his bike.,continues to speak to the camera and continues to ski around it.,runs his hand through his pocket and looks at the camera in the mirror.,,gold0-reannot,pos,unl,unl,pos,n/a,The man puts down the camera and begins working on the tire.,He\nlsmdc3046_LARRY_CROWNE-21673,10604,\"Later, someone rides glumly as her husband drives. A dessert box\",sits on the dashboard.,passes under the curb past someone.,is filled with happy children.,moves out of the palace.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, someone rides glumly as her husband drives.\",A dessert box\nanetv_qBvQjv1XyfQ,18239,A man is shown talking to the camera and leads into an athletic girl swinging around on uneven bars. She,hops down while the man talks again and switches back and fourth to him talking and her performing.,is then shown spinning and jumping on a bike performing various jumps.,is then shown throwing a javelin across the field and throwing her arms in the air.,finishes flipping and less to herself by speaking to the camera.,slumps and finishes by jumping down various exercise while others do hit ups on the side.,gold1-reannot,pos,unl,unl,unl,unl,A man is shown talking to the camera and leads into an athletic girl swinging around on uneven bars.,She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10465,Now two bodyguards flank a man in a tacky suit as he heads up a winding stone stairway. Camera flashes,erupt around him as he ends a call on his cellphone.,burn through the trees.,revealing a pair of white stoops.,visible in the fingers of a graceful sun.,follow it down a cavernous gloomy lobby.,gold0-orig,pos,unl,unl,unl,pos,Now two bodyguards flank a man in a tacky suit as he heads up a winding stone stairway.,Camera flashes\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10467,\"He heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform. Below, a fighter\",faces a hog on a leash.,fires a lamp at the cordon.,\"is seen in a room, wearing a welding helmet.\",smooths out fluid from his pipe.,holds one body broadcast from above.,gold0-orig,pos,unl,unl,unl,unl,He heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform.,\"Below, a fighter\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10469,\"Now as someone's associate lights a cigarette, someone approaches. Someone shoves him against a wall and someone\",holds up a knife.,offers a quick look.,returns on a corridor.,hops onto the platform.,sits on the ground holding him.,gold0-orig,pos,unl,unl,pos,pos,\"Now as someone's associate lights a cigarette, someone approaches.\",Someone shoves him against a wall and someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10468,\"Below, a fighter faces a hog on a leash. In a back room, the tacky man\",addresses thugs counting cash.,opens a passionately spattered boot.,leaps out of the way.,waves his hand against someone nets.,have two mowers on his arm.,gold0-orig,pos,unl,unl,unl,unl,\"Below, a fighter faces a hog on a leash.\",\"In a back room, the tacky man\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10471,\"Cringing, someone shakes his head. Part of his face\",becomes skeletal then morphs back.,shows his charcoal gesture.,reaches out to reveal someone.,twists and then falls to rest.,grows very rigid and somber.,gold0-orig,pos,unl,unl,pos,pos,\"Cringing, someone shakes his head.\",Part of his face\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12761,10466,Camera flashes erupt around him as he ends a call on his cellphone. He,heads up another flight of stone steps to a crowded warehouse floor where two men face off on a round platform.,presses his mouth to the dashboard and takes a seat at the phone.,\"folds his arms, gazes at the paper remains lying on the bench and hangs the sheet.\",grabs the items from someone.,\"shakes her head again, then leaves the pen.\",gold1-reannot,pos,unl,unl,unl,unl,Camera flashes erupt around him as he ends a call on his cellphone.,He\nanetv_7o-2My6U3GU,6320,The man begins by taking the shovel and shoveling off some of the snow from his walkway and dumping it on the side lawn while his dog plays around in the snow. He,walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow.,\"walks in, speeding off and falls off the hood and not looking at the clock.\",shovels wearing a green towel and wipes it with his sleeve.,runs under the hill and wipes down the snow with a shovel.,remains in the water.,gold0-orig,pos,unl,unl,unl,unl,The man begins by taking the shovel and shoveling off some of the snow from his walkway and dumping it on the side lawn while his dog plays around in the snow.,He\nanetv_7o-2My6U3GU,6321,\"He walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow. After he's done, he\",keeps the shovel down and walks back into the house.,\"puts and starts shoveling the driveway, leaving the snow falls while blowing snow.\",passes the back of the house away from the path he came.,takes and cuts off the hedge as he blower from the snow.,takes off his gloves and begins climbing down a hill.,gold1-orig,pos,unl,unl,unl,pos,He walks down his pathway as he picks up the snow in his shovel and piles it up on top of the heap of snow.,\"After he's done, he\"\nanetv_7o-2My6U3GU,17454,A close up of snow is seen with a shovel next to it. A person then,begins pushing the snow along the area.,lays down on the ground next to a row of grass.,\"fumbles around, wheels back and fourth, sits up and talks to the camera.\",brushes snow from a car with a hose.,,gold0-reannot,pos,unl,unl,pos,n/a,A close up of snow is seen with a shovel next to it.,A person then\nanetv_2FRzNpVz6f8,18893,A bunch of teammates are riding horses on the field. They,are playing a game of polo.,look around and find coaches waiting at net for pictures.,are involved in a game of volleyball.,are engaged in a game of field hockey.,are engaged in a game of volleyball.,gold0-orig,pos,unl,unl,unl,unl,A bunch of teammates are riding horses on the field.,They\nanetv_2FRzNpVz6f8,18894,They are playing a game of polo. The people,\"run on their horses, trying to hit the ball.\",use open hands to turn the ball back and forth between the puck on top of the net.,swim off to the side and one of them clap their hands.,continuously kick the ball back and forth in front of each other.,\"performs a slow dance routine, around the stage.\",gold0-orig,pos,unl,unl,unl,unl,They are playing a game of polo.,The people\nanetv_K8XNOs0AwaE,17383,He takes off his helmet to talk. The men are then shown engaged in a fight and several others,try to tear them apart.,scores opponent and other kids nearby.,repeat the actions with text across the screen.,fight down the cross.,,gold0-orig,pos,unl,unl,pos,n/a,He takes off his helmet to talk.,The men are then shown engaged in a fight and several others\nanetv_K8XNOs0AwaE,17382,A man rides a bmx dirt bike next to a tree. He,takes off his helmet to talk.,climbs on top of it and raises the horse.,rides into the parking lot.,ride around on blue t - jump and ride on skateboards.,rides backwards and falls.,gold0-orig,pos,unl,unl,unl,unl,A man rides a bmx dirt bike next to a tree.,He\nanetv_K8XNOs0AwaE,13308,\"The camera man shows the other guys on motorcycles continue on riding and one stops and talk to the first guy who took off his helmet while a guy takes pictures in the back ground. Both men gets off there bike and start to fight each other, they\",\"start swinging at each other, grabs each other and falls to the ground.\",are now working on the new model.,move on and adjust the right position on the mat.,\"continue on and skateboard the jumping some bit and gets on a surfboard who good american people watch, one carrying a c logo.\",continue riding together on the road.,gold0-orig,pos,unl,unl,unl,unl,The camera man shows the other guys on motorcycles continue on riding and one stops and talk to the first guy who took off his helmet while a guy takes pictures in the back ground.,\"Both men gets off there bike and start to fight each other, they\"\nanetv_K8XNOs0AwaE,13309,\"Both men gets off there bike and start to fight each other, they start swinging at each other, grabs each other and falls to the ground. Many other guys rush to the fight and breaks in up, one of the guys\",is bleeding from him forehead while the other walks away with a female.,helps them onto the mat.,punches his green friends and helps him push the old woman into either side.,gets on his knees and tries to pull the line back.,hits the other behind two.,gold1-orig,pos,unl,unl,unl,unl,\"Both men gets off there bike and start to fight each other, they start swinging at each other, grabs each other and falls to the ground.\",\"Many other guys rush to the fight and breaks in up, one of the guys\"\nlsmdc1042_Up_In_The_Air-88712,8149,Someone drives up to his old school. He and someone,get out of the car.,drive down a driveway.,sit at the edge.,stand facing in the opposite directions.,surround a building with a gate on its end.,gold0-orig,pos,unl,unl,unl,pos,Someone drives up to his old school.,He and someone\nlsmdc1042_Up_In_The_Air-88712,8155,They both clamber into a classroom. They,look at old newspaper photos of the basketball team.,hang over the wall drinking posters while dressed as the front door.,speed out of a motorboat will not pass.,knocks on the door.,\"arm is one out of shape, drop him, revealing the ring in someone's hand and the examined lens in his eye.\",gold0-orig,pos,unl,unl,unl,unl,They both clamber into a classroom.,They\nlsmdc1042_Up_In_The_Air-88712,8152,She goes to a window. Someone,undoes a catch with a credit card and pulls the window open.,deflates as she hurries past the bus.,waves a tug alongside her.,comes over to someone.,sits on the porch with his hand resting on someone's knees.,gold1-orig,pos,unl,unl,pos,pos,She goes to a window.,Someone\nlsmdc1042_Up_In_The_Air-88712,8150,He and someone get out of the car. He,\"looks at the long, low building.\",answers the phone.,takes a seat next to her and looks at the door.,finds someone staring at the window floor.,\"swerves away, spilling some molten water at him.\",gold1-orig,unl,unl,unl,unl,unl,He and someone get out of the car.,He\nlsmdc1042_Up_In_The_Air-88712,8151,\"He looks at the long, low building. They\",tramp across some snow and walk up to the entrance.,carry a group of chairs below them.,comes out over the sales table.,flick straight up to each fly.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He looks at the long, low building.\",They\nlsmdc0009_Forrest_Gump-50625,15101,Someone looks down at someone. He,pulls his medal of honor from around his neck.,looks down at his floor.,looks at the man who forces a grin and puts his arms around someone's neck.,scratches the back of his head.,,gold1-orig,pos,pos,pos,pos,n/a,Someone looks down at someone.,He\nlsmdc0009_Forrest_Gump-50625,15105,They walk toward the entrance of the bus. Someone,smiles as someone looks at her.,\"is in a open - plan office, almost alone.\",looks relieved at pleasure.,\"pulls in after someone, who watches him hurry away.\",\"stands, watching in frustration.\",gold1-orig,pos,unl,unl,unl,pos,They walk toward the entrance of the bus.,Someone\nlsmdc0009_Forrest_Gump-50625,15102,He pulls his Medal of Honor from around his neck. Someone,places the medal of honor in someone's hand.,comes in to a plate and glares at the kung fu master.,gestures him towards the band.,turns and walks off.,,gold0-orig,pos,unl,pos,pos,n/a,He pulls his Medal of Honor from around his neck.,Someone\nlsmdc0009_Forrest_Gump-50625,15108,Someone gives someone the peace sign as the bus pulls away. Someone,gives someone the peace sign.,arrives at an fbi suite transport facility and union soldiers.,sits at someone's side.,walks past the girls' office.,,gold1-orig,pos,unl,pos,pos,n/a,Someone gives someone the peace sign as the bus pulls away.,Someone\nlsmdc0009_Forrest_Gump-50625,15103,Someone places the Medal of Honor in someone's hand. Someone,looks up at him.,rushes down to the bottle of glasses to her eyes.,looks at someone and studies her hand.,points to someone and extends a hand to the burner.,hugs her and relaxes into someone's embrace.,gold1-orig,pos,unl,pos,pos,pos,Someone places the Medal of Honor in someone's hand.,Someone\nlsmdc0009_Forrest_Gump-50625,15106,Someone smiles as someone looks at her. Someone,climbs up into the bus.,sees someone via a blue dress.,turns to the bedside.,\"seethes, wide - eyed.\",\"rotates her arm, her gaze hardening.\",gold1-reannot,pos,unl,pos,pos,pos,Someone smiles as someone looks at her.,Someone\nlsmdc0009_Forrest_Gump-50625,15107,Someone looks up and smiles sadly. Someone,gives someone the peace sign as the bus pulls away.,looks over the lobby as someone comes inside.,looks in someone's direction.,stares at an unhatched egg.,\"turns away and glances around, then loads to the side.\",gold1-reannot,pos,unl,pos,pos,pos,Someone looks up and smiles sadly.,Someone\nlsmdc0009_Forrest_Gump-50625,15104,Someone turns and walks up to someone. They,walk toward the entrance of the bus.,belong through the exchanges.,sack their hand to someone.,tries to pick themselves up.,get out of the car.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns and walks up to someone.,They\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2711,\"He is seeping out across the blood red sky, his face grave. He\",spurs his horse on.,looks down and sees the water's glass.,struggles to lean forward and strike in both arms.,blasts him out of pries cage window.,sits with his hands down against the back of his chair.,gold0-orig,pos,unl,unl,unl,pos,\"He is seeping out across the blood red sky, his face grave.\",He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2710,The main highway south to Minas Tirith. he looks toward the saw toothed mountains of Mordor. He,\"is seeping out across the blood red sky, his face grave.\",wiped his skies and skies.,\"heavily, someone steps away from the distant helicopters and stops, its head shining as a young someone lowers his head.\",swerves his head up with his oxygen mask.,\"steps out at the army truck, decent and wigs is used to be normal again.\",gold0-orig,pos,unl,unl,unl,unl,The main highway south to Minas Tirith. he looks toward the saw toothed mountains of Mordor.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2713,His eyes settle on one old parchment. He,\"murmurs hurriedly to himself, reading.\",gives an impassive look.,looks at something under his stunned eye.,\"steps to the booth and stares at the photo, awarded to their headlamps.\",looks down at the stove.,gold0-orig,pos,unl,unl,unl,pos,His eyes settle on one old parchment.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2709,Nine black riders burst out of Minas Morgul and charge toward Camera. The main highway south to Minas Tirith. he,looks toward the saw toothed mountains of mordor.,\"jumps, banging on one of the restaurants when he arrives.\",turns and walks off into the jungle.,attaches the buckles to the deck pipe.,,gold0-reannot,pos,unl,unl,unl,n/a,Nine black riders burst out of Minas Morgul and charge toward Camera.,The main highway south to Minas Tirith. he\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59905,2712,Making is way down into the lower depths of the Citidel. His eyes,settle on one old parchment.,are cramped under the water.,\"are still on the landing handle, which has the process grandfather be firmly closed.\",scan no human bodies.,remain on top of a naked corpse.,gold1-reannot,pos,unl,unl,unl,unl,Making is way down into the lower depths of the Citidel.,His eyes\nlsmdc1055_Marley_and_me-96617,2192,They use torches to search the rainy night. Someone,switches the light on in the barn.,and someone making their way through the city.,scowls on the woman's finger.,blows open the stubs behind them.,falls dead in snow.,gold0-orig,pos,unl,unl,unl,pos,They use torches to search the rainy night.,Someone\nlsmdc1055_Marley_and_me-96617,2194,The children are gathered together at a window. She,picks up someone with a reassuring smile.,seems oblivious to the letters on the screen.,\"searches through them window, knocking stereo down on the far side.\",shines a baking sheet over the wooden display.,looks up at the japanese tree.,gold0-orig,pos,unl,unl,unl,pos,The children are gathered together at a window.,She\nlsmdc1055_Marley_and_me-96617,2193,Someone switches the light on in the barn. The children,are gathered together at a window.,wears flower voices upstairs.,shambles a stack of papers at the parcel.,carry his penguin away from a shelter.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone switches the light on in the barn.,The children\nanetv_BDQHEemWnSk,15546,\"A young woman is skating along a boardwalk and bridge. Some men join her, and they\",do several stunts as they skate.,begin to go downhill in front of each other.,struggle back and forth from the other side.,bend in and expose the top then bowling up again.,,gold0-orig,pos,unl,unl,unl,n/a,A young woman is skating along a boardwalk and bridge.,\"Some men join her, and they\"\nanetv_BDQHEemWnSk,15547,\"Some men join her, and they do several stunts as they skate. They\",go over bridges and city sidewalks.,\"move forward and further across the quarry, as they return to the coaches.\",\"fast jumping at high speed, they advance hold each other as a line launches into a bridge.\",pass someone into the water.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Some men join her, and they do several stunts as they skate.\",They\nanetv_A8KtrGjBodw,7518,A woman is seen opening a bottle of alcohol and pouring it into a class while speaking to the camera. The woman,continues speaking to the camera while holding up the glass of alcohol and ending by speaking more.,sits around in her while soaping her hands up with soap and leads into her putting her hands on her hips.,is continues mopping the floor with a large brush and kneeling down on another man speaking to the camera.,walks out of frame and zooms shot on the woman's cheeks and ends with the closing credits shown.,then shows several shots of the water being poor and then begins putting gas on her shoes.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen opening a bottle of alcohol and pouring it into a class while speaking to the camera.,The woman\nanetv_A8KtrGjBodw,14641,A woman walks into frame and pours herself a glass of wine. She,speaks to the camera while holding up the bottle.,covers and blows a batch of basil first.,pours liquid to her glass then pours more into the bucket.,then wraps an apron around her mouth as she bops herself.,pours the other drink onto a glass.,gold0-orig,pos,unl,unl,unl,pos,A woman walks into frame and pours herself a glass of wine.,She\nanetv_A8KtrGjBodw,14642,She speaks to the camera while holding up the bottle. She,drinks from the bottle while still speaking to the camera.,looks in the mirror and begins shaving his face and dancing to the camera.,laughs to the camera and laughs.,stands up and picks up a cup of coffee.,stops and looks around at the camera.,gold0-orig,pos,unl,unl,unl,unl,She speaks to the camera while holding up the bottle.,She\nlsmdc3085_TRUE_GRIT-40536,10903,\"He grabs the kid with the broom, throws him to the ground. Someone\",boots the kid with the stick off the porch and goes into the shack.,points to a pile of exposed embers on the big wooden bed.,\"pounces on someone, swinging back and forth against the sinuous old branches.\",stick the cake and places it in a counter its size and smooth it out.,runs into the bathroom.,gold0-orig,pos,unl,unl,unl,pos,\"He grabs the kid with the broom, throws him to the ground.\",Someone\nlsmdc3085_TRUE_GRIT-40536,10904,Someone boots the kid with the stick off the porch and goes into the shack. A bell,hangs from the porch roof.,patron tries the food which she drops for him to end the spider.,drops in the wire following him to talk.,\"is then caught, trying to go for it.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone boots the kid with the stick off the porch and goes into the shack.,A bell\nlsmdc3085_TRUE_GRIT-40536,10902,He cuts the donkey's rope and sets it free. He,\"grabs the kid with the broom, throws him to the ground.\",holds another stethoscope to his ear.,is put onto the pumpkin for the cookies and threw it.,stops at the edge of the bureau and looks at his gloved hands.,,gold1-orig,pos,unl,unl,unl,n/a,He cuts the donkey's rope and sets it free.,He\nlsmdc3085_TRUE_GRIT-40536,10907,The two kids sit staring at someone through narrowed eyes. Someone,comes out of the shack and shoves one of the kids to the ground.,\"shifts her eyes, then wipes her mouth with a pencil.\",drops his beer on the desk at the table and sits up.,'s in a garage with a police lamp stuck next.,leads a small van into a quaint carriage house.,gold1-orig,pos,unl,unl,unl,unl,The two kids sit staring at someone through narrowed eyes.,Someone\nlsmdc3085_TRUE_GRIT-40536,10899,Someone and someone ride side by side along by some rocks. They,head towards a wooden shack.,follow them down a street followed by several other people behind.,push themselves through the tide of pyramids and deeper into the river.,emerge off the horse and run into the cruiser.,,gold1-orig,pos,unl,unl,unl,n/a,Someone and someone ride side by side along by some rocks.,They\nlsmdc3085_TRUE_GRIT-40536,10908,Someone comes out of the shack and shoves one of the kids to the ground. He,flips a square of gold to someone.,takes a bite out of her sketchpad.,bundle his off in the dirt and goes out.,lift the people over onto the cliff shaft.,is about to reach the rock sack.,gold1-orig,unl,unl,unl,unl,unl,Someone comes out of the shack and shoves one of the kids to the ground.,He\nlsmdc3085_TRUE_GRIT-40536,10900,Two Native American kids sit on the porch tormenting a tied up donkey. He,\"stomps over to the kids, holding a big knife.\",leads following behind the distant girls.,spins in a goofy youthful ways.,walks through the smoke.,takes cover and hits them.,gold1-orig,pos,unl,unl,pos,pos,Two Native American kids sit on the porch tormenting a tied up donkey.,He\nlsmdc3085_TRUE_GRIT-40536,10901,\"He stomps over to the kids, holding a big knife. He\",cuts the donkey's rope and sets it free.,rolls into a building's parking lot.,looks to the right and the boy starts to disappear.,hands over her heart.,drops to the fruit and picks up a bottle of polish.,gold1-reannot,pos,unl,unl,unl,unl,\"He stomps over to the kids, holding a big knife.\",He\nlsmdc3085_TRUE_GRIT-40536,10898,\"Someone watches, frowning as someone rides off across the plains. Someone and someone\",ride side by side along by some rocks.,find another huge mass of monks.,move closer to her.,watch the retreating boys surround him.,run past the fallen gangster.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone watches, frowning as someone rides off across the plains.\",Someone and someone\nlsmdc3009_BATTLE_LOS_ANGELES-392,13725,\"He sits back in the doorway, clutching a radio. Someone\",\"watches from his position, several yards away.\",turns on his cell in the street behind him.,\"looks from the mouse to it to the ground, its eyes shifting to the invisible covers.\",lifts his brow and leaves.,,gold0-orig,pos,unl,unl,pos,n/a,\"He sits back in the doorway, clutching a radio.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-392,13729,\"He lifts his head and gazes over his shoulder and his men. Lowering his eyes and tightening his lips, he\",heads back toward the group.,gazes up at the present site of crystal gray.,rests his head on his hand.,turns and walks up to someone who turns and looks around.,lulls his head and narrows his eyes.,gold0-orig,pos,unl,unl,unl,unl,He lifts his head and gazes over his shoulder and his men.,\"Lowering his eyes and tightening his lips, he\"\nlsmdc3009_BATTLE_LOS_ANGELES-392,13727,Someone gingerly approaches the wreckage. He,finds some charred remains by the door.,places his lapel over a baby.,is being pulled in.,uses it to gently brush.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gingerly approaches the wreckage.,He\nlsmdc3009_BATTLE_LOS_ANGELES-392,13730,\"Lowering his eyes and tightening his lips, he heads back toward the group. He\",\"marches pass the soldiers, who stand there, staring at him.\",keeps gazing back at the hammer.,\"spots them, raindrops glistening in his face.\",glances around as the zookeeper looks around her.,\"looks at him for a moment, then nods and turns to go.\",gold0-orig,pos,unl,unl,unl,pos,\"Lowering his eyes and tightening his lips, he heads back toward the group.\",He\nlsmdc3009_BATTLE_LOS_ANGELES-392,13732,\"Now, as they walk amid burning buildings, a battle rages overhead. They\",arrive in a supermarket.,jog to a large rocky canteen.,are still too big on the buffet music.,are holding basket balls.,have been tight - lipped.,gold0-orig,pos,unl,unl,unl,pos,\"Now, as they walk amid burning buildings, a battle rages overhead.\",They\nlsmdc3009_BATTLE_LOS_ANGELES-392,13728,He finds some charred remains by the door. He,lifts his head and gazes over his shoulder and his men.,leans on his desk with an expression.,\"pulls his way upstairs, then takes out his cell.\",\"stops beer their water pours, sets it down, and drags someone toward the table.\",takes his hand and throws it down.,gold0-orig,pos,unl,unl,unl,unl,He finds some charred remains by the door.,He\nlsmdc3009_BATTLE_LOS_ANGELES-392,13719,The Marines stare gravely into each other's eyes. Someone,takes the letter from his pocket.,puts a sack over his shoulders and attacks someone.,glances down at someone.,catches the teen's right eye.,,gold0-orig,pos,unl,unl,unl,n/a,The Marines stare gravely into each other's eyes.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-392,13720,Someone takes the letter from his pocket. Someone,looks him in the eye and gives a slight nod.,eyes someone and reaches to the heart.,gulps down the whispered as he tiptoes away through the window into the backyard.,snatches the passport as he strolls in.,falls to his knee.,gold1-orig,pos,unl,unl,pos,pos,Someone takes the letter from his pocket.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-392,13733,They arrive in a supermarket. The injured man,\"winces, his face pale and sweaty.\",sits down from the driver's passenger seat.,returns to step forlornly at her.,drags up a police pump.,tosses a coin through his pockets and shows off his old toy mask.,gold0-orig,pos,unl,unl,unl,unl,They arrive in a supermarket.,The injured man\nlsmdc3009_BATTLE_LOS_ANGELES-392,13722,Someone takes his pack for more ammo. He,aims a bag of c - 4.,rounds the corner and heads back to the principal's office.,passes and sees someone paddling behind him.,goes back into the field.,swats out a strike of guard.,gold0-orig,pos,unl,unl,unl,pos,Someone takes his pack for more ammo.,He\nlsmdc3009_BATTLE_LOS_ANGELES-392,13724,Someone watches the aliens draw closer. He,\"sits back in the doorway, clutching a radio.\",\"sneers and shoots over the locked gate of a binding, which leaps out of the hole.\",uses his wand as he peers through the pages.,nimbly shoves someone through his line of vision.,pulls her coat shut and glares at him.,gold0-reannot,pos,unl,unl,unl,unl,Someone watches the aliens draw closer.,He\nlsmdc3009_BATTLE_LOS_ANGELES-392,13735,\"In a backroom, someone sweeps his rifle past storage boxes and an office desk. She\",picks up a phone.,searches with a pencil.,gives someone a high five to someone.,finds a number of military agents.,,gold1-reannot,pos,unl,unl,pos,n/a,\"In a backroom, someone sweeps his rifle past storage boxes and an office desk.\",She\nlsmdc3009_BATTLE_LOS_ANGELES-392,13731,\"He marches pass the soldiers, who stand there, staring at him. Someone\",\"stays motionless, following the staff sergeant with his eyes.\",has a good time.,\"leaves, leaving someone quizzical right behind.\",\"rows away, where a brave boyish deputies gives a flagpole.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"He marches pass the soldiers, who stand there, staring at him.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-392,13726,\"As the rest of the group slowly rise to their feet, someone gazes solemnly toward the bus. The vet\",looks over her shoulder.,closes the door behind someone.,looks from someone to someone.,\"crouches in front of her, holding his head against his hand.\",rests her head on his shoulder before walking out.,gold0-reannot,pos,unl,unl,unl,unl,\"As the rest of the group slowly rise to their feet, someone gazes solemnly toward the bus.\",The vet\nlsmdc3009_BATTLE_LOS_ANGELES-392,13734,\"The injured man winces, his face pale and sweaty. In a backroom, someone\",sweeps his rifle past storage boxes and an office desk.,switches on a set of sketch album.,\"studies a map and checks on the bank, then turns to look between the targets.\",glows through a stormy body.,measures in the command of a digital hologram.,gold0-reannot,pos,unl,unl,unl,unl,\"The injured man winces, his face pale and sweaty.\",\"In a backroom, someone\"\nanetv_AffS41W1Jgg,15064,A man is seen speaking to the camera and leads into him laying up wallpaper on the wall. He,continues speaking to the camera while still spreading paper on the wall.,continues putting paint all over the item onto the bowl and wiping shadows down the wall.,continues to work around the carpet and showing it off together in the end.,then stands up and continues speaking while using his hand to remove a piece of wallpaper from a closet.,continues moving around all areas of the floor and ends by looking back.,gold1-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and leads into him laying up wallpaper on the wall.,He\nlsmdc3089_XMEN_FIRST_CLASS-42864,2107,\"Smiling warmly, someone steps in close to someone. Now a tv in a living room\",shows a news broadcast.,shows the man's photo of someone on a phone at the breakfast table.,shows an envelope of an old woman.,watches someone curl up a window.,shows the cartoon of someone's dinner.,gold0-orig,pos,unl,unl,unl,unl,\"Smiling warmly, someone steps in close to someone.\",Now a tv in a living room\nlsmdc3089_XMEN_FIRST_CLASS-42864,2109,He opens it and pulls out a sleek shiny helmet the color of pewter. He,\"puts it on, leaving only his eyes, nose, mouth, and chin exposed.\",'s screen displays new size.,hog ropes the cattle then he troopers.,watches one of a low six - colored leather clock on a shelf.,,gold0-orig,pos,unl,unl,unl,n/a,He opens it and pulls out a sleek shiny helmet the color of pewter.,He\nlsmdc3089_XMEN_FIRST_CLASS-42864,2114,Someone holds up a glass of liquor. She,takes the glass and crosses the stylish room to a hatch.,pours a drink into the glass.,is giving someone a haircut.,turns back to someone.,rises and pours the drink.,gold0-orig,pos,unl,unl,pos,pos,Someone holds up a glass of liquor.,She\nlsmdc3089_XMEN_FIRST_CLASS-42864,2105,He swings gently as his feet grip the model tightly. He,\"stares, slack - jawed.\",manages to bring the young girl back to the back.,opens a cab so we can see on the freeway running.,\"grabs a rope from her pass, creating a massive coil.\",sits up with a pained wave.,gold0-orig,pos,unl,unl,unl,unl,He swings gently as his feet grip the model tightly.,He\nlsmdc3089_XMEN_FIRST_CLASS-42864,2117,\"Now standing in an open upper hatch, someone's diamond hand cuts a plum - sized chunk of ice from a large formation. As it\",plops into someone's drink.,\"lands in his basement in a glass oom, our view shoots through another window.\",\"shakes his head, richard parker begins to rise.\",reaches the lower level of an alley.,nears in the rear right of the desk.,gold0-orig,pos,unl,unl,unl,unl,\"Now standing in an open upper hatch, someone's diamond hand cuts a plum - sized chunk of ice from a large formation.\",As it\nlsmdc3089_XMEN_FIRST_CLASS-42864,2102,\"He gives a little shrug of the head, then kicks off his shoes. He\",peels off his socks.,looks down at the bruno and stomps.,hurries to the side of the boxcar.,\"pauses, looking down at the apartment.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He gives a little shrug of the head, then kicks off his shoes.\",He\nlsmdc3089_XMEN_FIRST_CLASS-42864,2103,He peels off his socks. Someone,notices the blonde someone beaming radiantly at him.,queasily picks up the broken box.,peeks into the trailer.,stands and stretches his arms draped around his arms.,'s shoulders heave.,gold0-orig,pos,unl,unl,unl,pos,He peels off his socks.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-42864,2106,\"He stares, slack - jawed. Smiling warmly, someone\",steps in close to someone.,faces him steadily and gives his emotional nod as she nods.,looks over at someone who shakes his head and looks at someone silently who turns.,gazes at his brother awkwardly.,returns his gaze to someone and wets his lips thoughtfully.,gold0-orig,pos,pos,pos,pos,pos,\"He stares, slack - jawed.\",\"Smiling warmly, someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42864,2110,\"He puts it on, leaving only his eyes, nose, mouth, and chin exposed. As someone faces someone, she\",exhales and lowers her chin.,\"smiles at him, her lips parted with tenderness.\",shifts his gaze sympathetically.,lowers her eyes toward the shirt.,grins broadly at crying.,gold1-orig,pos,unl,unl,unl,unl,\"He puts it on, leaving only his eyes, nose, mouth, and chin exposed.\",\"As someone faces someone, she\"\nlsmdc3089_XMEN_FIRST_CLASS-42864,2101,The slim charmingly disheveled young man shifts his uncertain gaze. He,\"gives a little shrug of the head, then kicks off his shoes.\",wags his hand vigorously.,\"rushes past someone and pauses, hesitantly slapping a bird's head.\",shifts his gaze regarding him with a knitted brow.,,gold0-orig,pos,unl,unl,unl,n/a,The slim charmingly disheveled young man shifts his uncertain gaze.,He\nlsmdc3089_XMEN_FIRST_CLASS-42864,2115,\"She takes the glass and crosses the stylish room to a hatch. Opening the door, she\",heads into the submarine bridge.,sees herself in a doorway.,\"takes a sweater from the case, pulls a turkey sitting on her desk.\",gives someone a reassuring glance then grins.,shuts the door and turns out.,gold0-reannot,pos,unl,unl,pos,pos,She takes the glass and crosses the stylish room to a hatch.,\"Opening the door, she\"\nlsmdc3089_XMEN_FIRST_CLASS-42864,2113,\"Relaxing, she tilts her head and cocks an eyebrow. Someone\",holds up a glass of liquor.,peeps in through the top of one of the slots.,thrusts a fake rope between her legs.,\"approaches them, sensing some kind of someone the background, walking up then down to a rest restroom.\",\"raises her head, regarding him with a smile.\",gold1-reannot,pos,unl,unl,unl,pos,\"Relaxing, she tilts her head and cocks an eyebrow.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-42864,2116,\"Opening the door, she heads into the submarine bridge. Now standing in an open upper hatch, someone's diamond hand\",cuts a plum - sized chunk of ice from a large formation.,climbs across the train platform at an angle on the wall.,sits on the penguin on a nightstand.,runs to a cracked surface completely into the steely pool.,answers the bottom rim of a cataleya orchid.,gold0-reannot,pos,unl,unl,unl,unl,\"Opening the door, she heads into the submarine bridge.\",\"Now standing in an open upper hatch, someone's diamond hand\"\nlsmdc3089_XMEN_FIRST_CLASS-42864,2111,\"As someone faces someone, she exhales and lowers her chin. She\",\"stares piercingly at someone, her eyes narrowing.\",shrugs her gloved hand.,walks through a doorway.,turns away from the family tree and observes buckbeak's trust.,kicks her eyes dry again then steps away.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone faces someone, she exhales and lowers her chin.\",She\nanetv_tGHLUWWm_zU,700,A close up of a corner of a room is shown. A man,applies plaster to a wall with tools.,starts scrubbing the wall with glue.,is cutting a cat's nails.,walks into frame hitting a lawn mower and still looking around.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a corner of a room is shown.,A man\nanetv_tGHLUWWm_zU,16353,We see the man as he puts the plaster on the wall. The man,bends over and works on the bottom part.,returns to throw the croquet ball down the lane.,celebrates as a chain is running through the center.,throws a white ball and jumping into the air.,,gold1-orig,pos,unl,unl,unl,n/a,We see the man as he puts the plaster on the wall.,The man\nanetv_tGHLUWWm_zU,16351,We see a wall in bad shape. We,see a person putting plaster on it.,see a man in costume jumping off the roof.,see them riding up kick exercise.,see the man puma twice.,then switch and get a sign on a stroller.,gold0-orig,pos,unl,unl,unl,pos,We see a wall in bad shape.,We\nanetv_tGHLUWWm_zU,16352,We see a person putting plaster on it. We,see the man as he puts the plaster on the wall.,\"a man rubs it along the plaster, a wood - nailed tool is painted and tiles with his face.\",continue being injured in a green grassy field.,\"glimpse the new, ugly, shiny body.\",see the people in blue fire together.,gold0-orig,pos,unl,unl,unl,unl,We see a person putting plaster on it.,We\nanetv_tGHLUWWm_zU,701,A man applies plaster to a wall with tools. The man,applies plaster to a different wall with tools.,put back more tiles on a chair attached to the ceiling by covering material.,glows on the screen and the man begins to apply plaster on the wall.,working tools puts tiles on a mat and switching out black fabric.,vacuums the plaster some more.,gold0-reannot,pos,unl,unl,unl,pos,A man applies plaster to a wall with tools.,The man\nanetv_at8e-jBBU5E,18059,A man is climbing up a rock wall. He,jumps to the top and gives a thumbs up.,attaches a blue interior to the roof.,moves onto the board in front of him.,is using a hammer in a tower.,rides out on a beam in a workout.,gold0-orig,pos,unl,unl,unl,unl,A man is climbing up a rock wall.,He\nanetv_at8e-jBBU5E,9678,\"Next, he shows an example of the rock climbing maneuver that he will teach. Lastly, he\",proceeded to show how to do the rock climbing maneuver in the example.,\"shows us the string, and continues putting the hammer balance more.\",continues to sharpen the hair.,takes some tools out of a wall and places it atop a set of wooden bars.,stands backwards using a wrench to hit the end and iv out of it.,gold0-orig,pos,unl,unl,unl,unl,\"Next, he shows an example of the rock climbing maneuver that he will teach.\",\"Lastly, he\"\nanetv_at8e-jBBU5E,9677,\"A man introduces a video about rock climbing while showing several different examples rock of climbing maneuvers. Next, he\",shows an example of the rock climbing maneuver that he will teach.,shows how to use a body paper to adjust on the piano.,continues controlling the exercise machine and holds his movements further and further at show the position.,\"flashes several different directions to the other, including his fully in action, standing on different levels to raft at the park.\",holds up a fish which the harness moves on.,gold0-orig,pos,unl,unl,unl,unl,A man introduces a video about rock climbing while showing several different examples rock of climbing maneuvers.,\"Next, he\"\nanetv_at8e-jBBU5E,18060,He jumps to the top and gives a thumbs up. He,stands at the bottom and talks to the camera.,\"rises from his fingertips, then gets out of his carriage.\",paused and started to walk and gets ready to do very high jump wags blowing him.,continues to lay on the ground with his legs.,flips back to the drummer.,gold1-reannot,pos,unl,unl,unl,unl,He jumps to the top and gives a thumbs up.,He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83864,5933,\"Someone continues to dance with someone, smiling contentedly. Winter has arrived and the ground outside Longbourn\",is crisp with a white layer of frost.,is just falling off into the rain.,has been leaning to the side of the boat.,is just being battered.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone continues to dance with someone, smiling contentedly.\",Winter has arrived and the ground outside Longbourn\nanetv_znhZPUF6xQw,8596,Several clips are shown of various girls performing gymnastics tricks on a large mat. The girls,continue jumping and flipping around the area while the camera continues to capture their movements.,continue performing and end with their legs clapping.,continue exercise as others watch in the background.,continue performing a routine performing some exercises while looking off into the distance.,,gold1-orig,pos,unl,pos,pos,n/a,Several clips are shown of various girls performing gymnastics tricks on a large mat.,The girls\nanetv_QxsELAtsSWE,6020,The female news reporter continues talking to the fitness instructor. She,speaks to the anchor back in the studio.,applies a bucket to a can and clips the wallpaper up.,talks a apply form into a adverts of blue ink.,grind onto the tile and apply a product with a crack on some wall surface.,,gold0-orig,pos,unl,unl,unl,n/a,The female news reporter continues talking to the fitness instructor.,She\nanetv_QxsELAtsSWE,6018,\"A female news reporter speaks to a fitness instructor inside a gym, where cyclists are riding fitness bikes. Exercises such as yoga and bicycling\",are demonstrated by those in the gym.,begins to get to work.,for training are displayed.,\"text leading, doing a same.\",\", after the clips begin to stepper and gears for doing cycling and handstands and disturbing athletes are on a court performing multiple spots.\",gold0-orig,pos,unl,unl,unl,unl,\"A female news reporter speaks to a fitness instructor inside a gym, where cyclists are riding fitness bikes.\",Exercises such as yoga and bicycling\nanetv_QxsELAtsSWE,6019,Exercises such as yoga and bicycling are demonstrated by those in the gym. The female news reporter,continues talking to the fitness instructor.,\"performs working shooting in the busy gym, after woman are shown talking to her helping.\",continues doing several routines in front of her campaign students.,does then serve the client's back and arm the time.,shows several kisses weapons displayed in the workout.,gold1-orig,pos,unl,unl,unl,unl,Exercises such as yoga and bicycling are demonstrated by those in the gym.,The female news reporter\nanetv_5MjAgMF_FzA,11771,\"When the egg is almost fully cooked, the man begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet. He\",rolls the omelet back and forth in the pan.,assembles a piece of white fruit with orange energy.,puts butter in a pan and adds a pan to it.,\"hands the woman dry soup on a tray, stirred, with cut potatoes, struck off his feet and all fried eagerly.\",play and then make them bowl chopped.,gold0-orig,pos,unl,unl,unl,unl,\"When the egg is almost fully cooked, the man begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet.\",He\nanetv_5MjAgMF_FzA,11768,A cook is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame. The cook now,scoops a large portion of mixed egg from a large metal pot into the small metal pan.,follows behind them.,cooks a pan to cook as she looks ready a pan cooling in a cabinet.,looks off and continues to stir it.,puts the ingredients into an instant plate.,gold0-orig,pos,unl,unl,unl,unl,A cook is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame.,The cook now\nanetv_5MjAgMF_FzA,11770,\"He begins to whisk the egg mixture with two wooden sticks, holding the pan over the burner. When the egg is almost fully cooked, the man\",begins to shape the egg inside of the pan with the wooden sticks in the shape of an omelet.,is now poured out a sandwich and begins to boil it.,\"treads around the stove, sitting on the lap sweeping some leaves of the yellow pan.\",serves the chocolate and drinks the flour.,appears and picks up the barbel next to him.,gold0-orig,pos,unl,unl,unl,unl,\"He begins to whisk the egg mixture with two wooden sticks, holding the pan over the burner.\",\"When the egg is almost fully cooked, the man\"\nanetv_5MjAgMF_FzA,11767,A black screen with a white title appears. A cook,is in front of a professional stove putting seasoning into a metal pan and warming a pan over a gas lit blue flame.,\"appears and two girls goes to a basketball in the front on their horses, drinking and bowls.\",sets a board in a sink and stands in a room and puts a towel in her wet legs.,stands on a counter and covers food.,is standing on a stove top.,gold0-orig,pos,unl,unl,unl,unl,A black screen with a white title appears.,A cook\nanetv_Zhf052cWrv8,14184,A man is standing and walking in the gym. The man,sat on the rowing machine and put his feet on the pedal.,jumps and turns backwards and does a handstand then completes a high flip jumps handstand.,picks up a long pole and proceeds to cut the hair.,jumps a wire bar using a slab.,enters with a set of large windows following a person.,gold0-orig,pos,unl,unl,unl,unl,A man is standing and walking in the gym.,The man\nanetv_Zhf052cWrv8,14185,The man sat on the rowing machine and put his feet on the pedal. The man,began to pull the belt.,moves the machine behind the tent back and fourth.,started with the rope and another person went off the camaro.,stopped the rope once stuck.,,gold0-reannot,pos,unl,unl,unl,n/a,The man sat on the rowing machine and put his feet on the pedal.,The man\nlsmdc1046_Australia-91082,4678,His eyes fill with tears of self - pity. Bomb ships,burn in the bay.,descend the police officer.,is loaded into an open fire.,take off the plane into the cliffs.,swoop down at the head of the bagged land.,gold0-orig,pos,unl,unl,unl,pos,His eyes fill with tears of self - pity.,Bomb ships\nlsmdc1046_Australia-91082,4683,Someone is up on the wreck of someone Cattle Company water tower. Someone,reaches into his pocket and pulls out someone's harmonica.,jacks up a coaster.,people are suspended outside a white sky.,rides an overweight fat along a firm road.,surprised to get more balloons from his school from the resort.,gold1-orig,unl,unl,unl,unl,unl,Someone is up on the wreck of someone Cattle Company water tower.,Someone\nlsmdc1046_Australia-91082,4681,Someone tearfully watches the evacuation. Someone,looks at the ruins of the territory hotel and sighs.,cascades down someone's body.,'s eyes widen and someone's eyes widen.,stands back in his seat and waits his news.,gives an amused look.,gold0-orig,pos,unl,unl,unl,unl,Someone tearfully watches the evacuation.,Someone\nlsmdc1046_Australia-91082,4680,\"Someone comes up to someone's room. Eyes closed, tears\",roll down her cheeks.,\"stream down her mouth, but her eyes remain open.\",welling into his eyes.,stream down someone's pale cheeks.,run down and someone answers with an earnest expression.,gold0-reannot,pos,unl,unl,unl,pos,Someone comes up to someone's room.,\"Eyes closed, tears\"\nlsmdc1046_Australia-91082,4679,Bomb ships burn in the bay. Someone,comes up to someone's room.,pulls the radio up.,\"has a large casket on him, as they hike into the pale light of sunset.\",takes off past the school.,,gold1-reannot,pos,unl,unl,unl,n/a,Bomb ships burn in the bay.,Someone\nanetv_78je-JBAqxQ,3132,\"They are playing beer pong with several red solo cups, drinking in between plays. A blonde woman\",\"watches as a man wins the game, hugging the woman next to him.\",is standing across from her to an interview holding it and holding her drink.,waching her and puts her black fist on the audience.,follows them in hitting the main presence for the next watch.,helped the kid on what tape she was wearing.,gold0-orig,pos,unl,unl,unl,unl,\"They are playing beer pong with several red solo cups, drinking in between plays.\",A blonde woman\nanetv_78je-JBAqxQ,3131,A man is blowing a whislet in front of a room filled with people. They,\"are playing beer pong with several red solo cups, drinking in between plays.\",\"play their instruments, rowing, and playing at the end.\",are walking on a rope.,is by the mouth of a fruit dish.,,gold1-orig,pos,unl,unl,unl,n/a,A man is blowing a whislet in front of a room filled with people.,They\nlsmdc1019_Confessions_Of_A_Shopaholic-80792,19010,\"Someone turns away, trying to mask her disappointment. New York, she\",sits glumly in the back of a yellow cab as it crosses times square.,makes a phone call.,\"pops up, then takes a clean - inch travel mirror from her broken hair.\",sits at a booth.,leads people in the ambulance.,gold1-orig,pos,unl,unl,unl,unl,\"Someone turns away, trying to mask her disappointment.\",\"New York, she\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80792,19011,\"Her chin resting on one blue cashmere - gloved hand, she answers her mobile. Someone\",dives to the floor of the cab.,\"continues her silent blow, then follows.\",falls a window reading and waves to others as a cameraman shows his crowded gardens.,lowers her gaze on a covered drawing tool in a mirror and put his arms around her.,,gold1-orig,pos,unl,unl,pos,n/a,\"Her chin resting on one blue cashmere - gloved hand, she answers her mobile.\",Someone\nanetv_2kx--bbqXHg,18508,Cotton balls are being set on fire and put out in various ways. An ax,is used to put out the fire.,rests on the back of her head.,is lit from snow.,is next to the last strap.,is dropped in a park.,gold0-orig,pos,unl,unl,unl,unl,Cotton balls are being set on fire and put out in various ways.,An ax\nlsmdc0002_As_Good_As_It_Gets-46415,16516,\"As she enters the apartment. The worst confirmed, she\",\"moves down the narrow hallway, her innards squirting the same chemicals that drives elk on opening day of the hunting season.\",takes a small fruit out of her bag and stands in a steaming case.,opens a scarf to reveal some patrons and a wrappings made on the kitchen table.,\"smokes, looks down here the old paper windows.\",\"carries a bag over her shoulder as she enters, first key someone relieved on the ignition.\",gold0-orig,pos,unl,unl,unl,unl,As she enters the apartment.,\"The worst confirmed, she\"\nlsmdc0002_As_Good_As_It_Gets-46415,16517,\"She is ebullient which, if life allowed, would be her natural state. Someone 'reaction her mother\",adds a saving grace.,is snowing months now.,\"is still removing his clothes, picking up the bag.\",\"and smiles, eyes coldly.\",is clearly relieved to take it.,gold1-orig,pos,unl,unl,pos,pos,\"She is ebullient which, if life allowed, would be her natural state.\",Someone 'reaction her mother\nanetv_KA6YYIl2z4E,14662,\"The woman then reaches back into her left eye first, then into her right to remove the contact lenses and a shot of them sitting in the contact lens container appears. Video\",ends with a screen telling you to subscribe to their youtube channel for more helpful videos.,is then shown.,\", porter show a website serpentine about a engagement ring.\",the items form a drawer while the person puts the contact lens into her eye.,\"see a woman explaining a tattoo on white, who then applies contact lens to someone's lips and ends with another model.\",gold0-orig,pos,unl,unl,unl,unl,\"The woman then reaches back into her left eye first, then into her right to remove the contact lenses and a shot of them sitting in the contact lens container appears.\",Video\nanetv_KA6YYIl2z4E,14661,The video begins with various words and instructions on how to insert & remove Halloween contact lenses. A contact lens container,is then filled with contact solution and the contacts into both sides of the container.,on top is that spoke with a vodka platter.,is shown followed by a man in a suit and a tattoo phone.,\"is shown and two man shake their fingers, and then the woman quickly takes the contact lens away.\",has shot.,gold0-orig,pos,unl,unl,unl,unl,The video begins with various words and instructions on how to insert & remove Halloween contact lenses.,A contact lens container\nanetv_OzjjQ4SZ8PY,9931,A woman wearing scuba diving gear is under the water. She,\"explores the ocean floor, looking at the fish and wildlife as a man swims behind her.\",badly jumps on a long platform and pulls over a tube which can't reach upon deep water.,throws a large fish in the water.,jumps off a diving board in a pool of water.,,gold0-orig,pos,unl,unl,pos,n/a,A woman wearing scuba diving gear is under the water.,She\nanetv_OzjjQ4SZ8PY,9932,\"She explores the ocean floor, looking at the fish and wildlife as a man swims behind her. They\",give ok signals to the person with the camera.,sets it on the ground and lifts the blade off the spear.,raise an egg between her hands.,\"appear busily painting, and through the bottom.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"She explores the ocean floor, looking at the fish and wildlife as a man swims behind her.\",They\nanetv_gIhVeU8xbrs,19261,\"Another man wearing black shorts and a red and white shirt is also taking his turn at lifting the heavyweights on the barbell, then briefly over his head then drops them to the ground and does this four times in a row. A smaller man is now attempting to lift the barbell with the heavyweights, but he\",can only lift them three times to his waist level then drops them.,\"drops it on the bar onto a heavy weight in keeping up on his height for slow motion, before it is shown again in\",pulled back away while using it.,\"jumps off his side and does a stand up, then joins in and begins to lift the weight.\",,gold0-orig,pos,pos,pos,pos,n/a,\"Another man wearing black shorts and a red and white shirt is also taking his turn at lifting the heavyweights on the barbell, then briefly over his head then drops them to the ground and does this four times in a row.\",\"A smaller man is now attempting to lift the barbell with the heavyweights, but he\"\nanetv_gIhVeU8xbrs,19262,\"A smaller man is now attempting to lift the barbell with the heavyweights, but he can only lift them three times to his waist level then drops them. A larger shirtless man is standing in front of a mirror and he\",\"'s also only lifting them to his waist a four times, then drops them and walks off.\",begins spinning his body all over the bike.,has pulled the gun side free.,is people practicing his moves.,stands with her shaving weight arm.,gold0-orig,pos,unl,unl,unl,unl,\"A smaller man is now attempting to lift the barbell with the heavyweights, but he can only lift them three times to his waist level then drops them.\",A larger shirtless man is standing in front of a mirror and he\nanetv_gIhVeU8xbrs,3633,\"A slightly smaller guy approaches the bar but he never gets the bar off the ground. After him, a shirtless man tries to lift it but he\",can't get it off the ground either.,is knocked to his knees by the others around him.,also catches it so he falls.,collapses and falls to the ground.,yanks it onto his belt and continues on.,gold0-orig,pos,unl,unl,pos,pos,A slightly smaller guy approaches the bar but he never gets the bar off the ground.,\"After him, a shirtless man tries to lift it but he\"\nanetv_gIhVeU8xbrs,3630,\"Two men are in a weight room, one is sitting in a chair, and the other is standing on a mat about to jerk the bar. Another man then\",comes along and attempts the weight and struggles at first but then gets it in the air before he drops it.,opens a box and begins sharpening two other darts.,picks up a row of exercise drills.,jumps in the air from the man five the first man who were while kneeling in the middle of the stage.,\"speaks into an archive, begins to lift the weights up in each hand followed by another individual pulling him from the area.\",gold0-orig,pos,unl,unl,unl,unl,\"Two men are in a weight room, one is sitting in a chair, and the other is standing on a mat about to jerk the bar.\",Another man then\nanetv_gIhVeU8xbrs,3631,Another man then comes along and attempts the weight and struggles at first but then gets it in the air before he drops it. The same male then,lifts the bar four times and is successful at each attempt.,comes off the back and does the same thing once again but this time he is done again.,\"throws the ball backward as the crowd cheers and goes all over again, finishing the jump.\",gets up on the skateboard and begins moving it up and down.,begins to demonstrate some momentum against one another and tries again.,gold0-orig,pos,unl,unl,unl,pos,Another man then comes along and attempts the weight and struggles at first but then gets it in the air before he drops it.,The same male then\nanetv_gIhVeU8xbrs,3632,The same male then lifts the bar four times and is successful at each attempt. A slightly smaller guy approaches the bar but he never,gets the bar off the ground.,fails to speak for anything.,gives a backward look at the net on the ground.,grabs the rope.,,gold1-orig,pos,unl,unl,unl,n/a,The same male then lifts the bar four times and is successful at each attempt.,A slightly smaller guy approaches the bar but he never\nanetv_fBov3cwPEho,8163,The child drops the blue bulb and goes for another. The child,adds another blue bulb to the tree.,slides down a soft wooden slide.,replaces the black mop against wooden rim.,gets her hands in her hair and hurries away.,,gold0-orig,pos,unl,unl,pos,n/a,The child drops the blue bulb and goes for another.,The child\nanetv_fBov3cwPEho,8161,The dad puts it back and the baby takes it again. The child turns towards the camera and the dad,walks to a counter.,resumes the walk.,gets in and shakes the fork.,lays his arm alone on the table.,picks up the camera.,gold1-orig,pos,unl,unl,unl,pos,The dad puts it back and the baby takes it again.,The child turns towards the camera and the dad\nanetv_fBov3cwPEho,8164,The child adds another blue bulb to the tree. The camera,pans up to show the tree and then shows the stockings.,pans up to one as a young child looks back at the camera.,turns to the left.,shows us the ocean shyly.,moves in for another display and pans up a close up of the tree.,gold0-orig,pos,pos,pos,pos,pos,The child adds another blue bulb to the tree.,The camera\nanetv_fBov3cwPEho,8160,We see a man and a baby decorating a Christmas tree. The baby,takes a blue bulb off the tree.,is finished decorating the tree.,kneels up and steps around the tree.,skates back and forth between the christmas tree.,gets the roots tree in the middle of the ground.,gold0-orig,pos,unl,unl,unl,unl,We see a man and a baby decorating a Christmas tree.,The baby\nlsmdc1047_Defiance-91481,5187,\"In the distance, they spot Kissely the milkman running ahead of a unit of armed men in black uniforms. The two youngsters\",dive behind a rock.,stand on the doors to aim.,run through the smoke.,stand on and look like the gun.,listen on a rack with two rifles.,gold0-orig,pos,unl,unl,unl,unl,\"In the distance, they spot Kissely the milkman running ahead of a unit of armed men in black uniforms.\",The two youngsters\nlsmdc1047_Defiance-91481,5186,\"This time, she looks someone straight in the eye. Tentatively, he\",\"raises his hand and touches her cheek with his fingers, gently pulling at her bottom lip with his thumb.\",trips on the love seat.,sees them in her open dance grasp and holds her.,eyes people from behind.,\"pulls over, takes a champagne buds up, tries to vodka the brown, then skips off.\",gold0-reannot,pos,unl,unl,unl,unl,\"This time, she looks someone straight in the eye.\",\"Tentatively, he\"\nanetv_WFbUBMgOMn8,12773,She is in the process of making a dessert. She,mixes all the ingredients and then shows the final product.,shows the video how to make jars on unstable pops.,a drag she is being taken out of a cup.,\"her body on the chair, she tightens her laces and ties the box tied to her back and continues putting a defeated leg on\",begins playing the violin.,gold0-orig,pos,unl,unl,unl,unl,She is in the process of making a dessert.,She\nanetv_WFbUBMgOMn8,12314,A kitchen is shown followed by various ingredients and a woman speaking to the camera. She,begins showing the ingredients and putting them into a hot boiling pot and stirring around.,mixes the ingredients and mixes it into a bowl.,demonstrates how to boil the pot and add to it.,mixes up ingredients and mixes more ingredients into the bowl.,finishes by pouring butter into a plate and mixing them together.,gold0-orig,pos,unl,unl,unl,unl,A kitchen is shown followed by various ingredients and a woman speaking to the camera.,She\nanetv_WFbUBMgOMn8,12315,She begins showing the ingredients and putting them into a hot boiling pot and stirring around. She,\"continues mixing up more ingredients and then puts them all together in a bowl, serving the dish ad sprinkling olive oil around it.\",\"begins with salad and lemon sticks, then she puts all the ingredients into a bowl and pours it into a pot.\",then pours the curlers into a bowl containing the mix and she spreads the cookies into the oven.,mixes various ingredients into the bowl and begins to cook various vegetables and adds together to a plate with food and ingredients.,,gold0-orig,pos,unl,unl,pos,n/a,She begins showing the ingredients and putting them into a hot boiling pot and stirring around.,She\nanetv_WFbUBMgOMn8,12772,A woman is talking in her kitchen. She,is in the process of making a dessert.,shows how to bake a salad.,is holding a pot of liquor and putting it in a pot.,is cleaning out food.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is talking in her kitchen.,She\nanetv_Gms3Yt6RrV4,7329,A third man is seen in a car next to the man talking. The man wearing the helmet,starts down the street on a skateboard.,screws his blade up and grabs a tire.,takes off a sweater and hammers the table.,opens his mouth to speak to the camera and sits.,taps his hands on the shiny metal bar.,gold1-orig,pos,unl,pos,pos,pos,A third man is seen in a car next to the man talking.,The man wearing the helmet\nanetv_Gms3Yt6RrV4,7333,\"The man with the camera and the man in the car follow filming the man on the skateboard. After the stop sign, the car\",passes the man on the skateboard.,approaches and takes the digital supplies.,is shown showing underwater left wash path.,approaches the car right and closes up behind him.,jog several cars in the street.,gold0-orig,pos,unl,unl,unl,unl,The man with the camera and the man in the car follow filming the man on the skateboard.,\"After the stop sign, the car\"\nanetv_Gms3Yt6RrV4,7332,The man rides past a stop sign. The man with the camera and the man in the car,follow filming the man on the skateboard.,tells him to go and sign him.,plays a game of table tennis.,makes a call adjustments.,,gold1-orig,unl,unl,unl,unl,n/a,The man rides past a stop sign.,The man with the camera and the man in the car\nanetv_Gms3Yt6RrV4,7331,The man goes down a few very steep hills on his skateboard. The man,rides past a stop sign.,stands over the fallen bike on the second ramp.,skids to the border of the tubes.,shakes his head apologetically and brushes.,begins to try and jumps before on the rake and fall down the slope.,gold0-orig,pos,unl,unl,unl,unl,The man goes down a few very steep hills on his skateboard.,The man\nanetv_Gms3Yt6RrV4,7334,\"After the stop sign, the car passes the man on the skateboard. The car stops and the man on the skateboard\",stops just past them and picks up his skateboard.,stops the man from the bike.,runs onto the street before slamming into the other lady.,moves through the middle of the road.,,gold0-orig,pos,unl,pos,pos,n/a,\"After the stop sign, the car passes the man on the skateboard.\",The car stops and the man on the skateboard\nanetv_Gms3Yt6RrV4,7328,Another man with a helmet on is standing near by. A third man,is seen in a car next to the man talking.,is shown on a long board.,does a handstand while another man is entering.,bends down and throws a light on the trunk.,stands on the bar.,gold1-orig,pos,unl,unl,unl,pos,Another man with a helmet on is standing near by.,A third man\nanetv_Gms3Yt6RrV4,7330,The man wearing the helmet starts down the street on a skateboard. The man,goes down a few very steep hills on his skateboard.,stops and adjusts the line next to a red car.,ride down drums but has n't bounced in circles.,chases the laces then takes out the red neon keys and is skating on the top of the motorcycle.,raises his leg in the air and lands on the bumper.,gold0-orig,pos,unl,unl,unl,unl,The man wearing the helmet starts down the street on a skateboard.,The man\nanetv_Gms3Yt6RrV4,7327,A man is seen talking with a camera very close to his face. Another man with a helmet on,is standing near by.,joins him on a camel who then walks away.,is then shown running around holding a pan.,is walking on an outdoor road.,talks while holding the camera attached into the fence.,gold1-orig,pos,unl,unl,unl,unl,A man is seen talking with a camera very close to his face.,Another man with a helmet on\nanetv_QjFioni0uCM,12071,A man is standing behind a woman sitting in a chair. He,is putting a product into her hair.,is using a tool to draw her mother's face and faces her.,takes a paintbrush out of her hair.,leans down onto a rock and leans over to brush the girl's hair.,puts something on a sunset board and puts it in his mouth.,gold0-orig,pos,unl,unl,unl,unl,A man is standing behind a woman sitting in a chair.,He\nanetv_QjFioni0uCM,12073,He begins to blow dry her hair. She,starts to blow dry her hair herself.,\"straightens her high, dark hair and rolls it on top of her head.\",avoids his gaze and he returns the kiss.,begins brushing his hair with his fingers.,starts to blow dry her hair by blowing her nose.,gold0-orig,pos,unl,unl,unl,unl,He begins to blow dry her hair.,She\nanetv_QjFioni0uCM,12072,He is putting a product into her hair. He,begins to blow dry her hair.,\"pours the liquid into the mirror, and she looks down.\",begins to shave it's hair for the camera.,combs out and trying to straighten it.,places the braids on her hair at the end.,gold0-reannot,pos,unl,unl,pos,pos,He is putting a product into her hair.,He\nanetv_j_vP89LZlp8,435,The woman gets up and turns away. The person,turns around walks out of view.,hands her a piece of tape from a pocket.,eyes a woman with 2 faster shoes and talks in the end.,finishes recording the rest of the body.,,gold0-orig,pos,unl,unl,unl,n/a,The woman gets up and turns away.,The person\nanetv_j_vP89LZlp8,434,The woman sits down on the sofa. The woman,gets up and turns away.,\"sits in front of the trailer, taking a letter.\",walks to the edge of the chair and starts knitting.,pours the buckets in the pail.,takes her hand off.,gold1-reannot,pos,unl,unl,unl,pos,The woman sits down on the sofa.,The woman\nanetv_j_vP89LZlp8,433,A woman brushes her long hair at home. The woman,sits down on the sofa.,brushes the woman's hair.,looks at the large screen.,trims the woman's hair.,wears a white blouse and a raincoat pale with delicate decorations.,gold1-reannot,pos,unl,unl,unl,unl,A woman brushes her long hair at home.,The woman\nanetv_3I4EzlMo124,16751,\"Once she is on, she begins kicking her legs up and down and doing several flips along the bar. For her final trick, she flips off the bar and her foot goes further than expected but she\",quickly gathers herself and sticks her landing.,barely jumps up into the acetone net.,flops on a board multiple times.,steps into the ropes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Once she is on, she begins kicking her legs up and down and doing several flips along the bar.\",\"For her final trick, she flips off the bar and her foot goes further than expected but she\"\nanetv_3I4EzlMo124,16750,\"A teenage girl is dressed in a long sleeve red leotard and jumps up on a balance beam. Once she is on, she\",begins kicking her legs up and down and doing several flips along the bar.,is slowly jumping out of her way.,turns a circular beam and begins to run her way over the pole.,jumps off the balance beam and lands on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,A teenage girl is dressed in a long sleeve red leotard and jumps up on a balance beam.,\"Once she is on, she\"\nanetv_3I4EzlMo124,10696,A gymnast walks up to a beam and holds her hands out. She,begins performing a gymnastics routine on the beam.,spins around and hits people.,flips through the bars and lands on a mat next to her.,does a side flip and starts up as the rope begins.,,gold0-orig,pos,unl,pos,pos,n/a,A gymnast walks up to a beam and holds her hands out.,She\nanetv_3I4EzlMo124,10697,She begins performing a gymnastics routine on the beam. She,spins and twirls herself around and ends by jumping down with her arms up.,moves while still speaking to the camera.,then picks up a ball and begins talking on camera.,has trouble smiling at the camera.,,gold1-reannot,pos,unl,unl,pos,n/a,She begins performing a gymnastics routine on the beam.,She\nlsmdc0008_Fargo-50053,13325,Both of them are watching the tv as someone reaches out to rest a hand on top of her stomach. Someone absently,rests her own hand on top of his shoulder.,pushes him down and covers her face.,lifts her hair and puts his mohawk down.,makes himself to close the door.,takes another bite of the sweet and washes off.,gold0-orig,pos,unl,unl,unl,unl,Both of them are watching the tv as someone reaches out to rest a hand on top of her stomach.,Someone absently\nlsmdc0008_Fargo-50053,13324,Her eyes go back to the tv. Both of them,are watching the tv as someone reaches out to rest a hand on top of her stomach.,ride along the side - by - side in a cramped neighborhood.,begin to grapple with the brunette.,continue to face and stare at the table with jars.,sit across the seat at each other.,gold0-orig,pos,unl,unl,unl,pos,Her eyes go back to the tv.,Both of them\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7373,Someone begins scanning the journal entry. He,hands the journal back to someone.,heads towards a cubicle and water appears.,looks troubled as he eyes a cartoon.,spots a blocking on the next page.,,gold0-orig,pos,unl,unl,unl,n/a,Someone begins scanning the journal entry.,He\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7380,Someone struggles with the zipper of a shabby coat as she exits. Someone,steps out of the shadows.,looks at it through a window.,turns to find a welcoming turnstile there.,grabs someone's coat as she takes the drink.,looks at someone's bed.,gold0-orig,pos,unl,unl,unl,unl,Someone struggles with the zipper of a shabby coat as she exits.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7374,He hands the journal back to someone. Someone,opens it and begins reading it silently.,inhales from a pensive pencil.,buries his face in his neck.,bob fires the man.,,gold0-orig,pos,unl,unl,unl,n/a,He hands the journal back to someone.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7379,Someone closely studies her reaction to the offense. She,flinches uncomfortably but then composes a smile for the customer.,hurls the ball upward.,stabs the creature again.,peers at the sky anxiously.,,gold0-orig,pos,unl,unl,pos,n/a,Someone closely studies her reaction to the offense.,She\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7377,Someone pulls into a parking lot of a country diner. Someone,is about to enter when he spots someone coming out of the kitchen with a tray full of food.,drives off down the street and sits at the beach.,'s pony - inspects and dangles chickens float above the windows.,\"picks up the rear door and sees a motorcycle coming out onto a street, someone.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone pulls into a parking lot of a country diner.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7378,\"As she brings the mess inside the kitchen, a customer pinches her ass. Someone\",closely studies her reaction to the offense.,slips into the passenger seat.,reads a note from someone.,\"continues to look away when someone finally strolls in, as an examination table is close.\",faces her desk with a smile.,gold0-orig,pos,unl,unl,unl,unl,\"As she brings the mess inside the kitchen, a customer pinches her ass.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7372,Someone jumps off the bed and snatches the journal away. Someone,begins scanning the journal entry.,flings a letter inside and carries him away.,shakes his head and nods.,returns to sleep again.,,gold0-orig,pos,unl,unl,pos,n/a,Someone jumps off the bed and snatches the journal away.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7371,\"Someone, lying on his bed, quietly watches someone with growing concern. Someone\",jumps off the bed and snatches the journal away.,gives him a surprised look on the face and heads off to the side of the house.,become shaking with frightening fever.,comes up beside someone.,stares at him for a moment at the door for the moment.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, lying on his bed, quietly watches someone with growing concern.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7370,\"Someone hastily hunts through his journals, tearing up the room looking for a certain book. Someone, lying on his bed,\",quietly watches someone with growing concern.,thrusts himself into the toilet.,goes to his office.,\"straightens his suit, wearing his pajamas.\",beckons the letter against his chest.,gold0-orig,pos,unl,unl,unl,unl,\"Someone hastily hunts through his journals, tearing up the room looking for a certain book.\",\"Someone, lying on his bed,\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7381,Someone steps out of the shadows. She,\"is startled at first, but eventually recognizes him.\",\"slides onto the third tracks, tapping the escalade's knob.\",takes their mugs and walks into the kitchen.,\"stays on his feet, his eyes glued to the overhead reflection.\",arrives at his shadow tenderly.,gold0-orig,pos,unl,unl,unl,pos,Someone steps out of the shadows.,She\nlsmdc0023_THE_BUTTERFLY_EFFECT-59492,7375,Someone opens it and begins reading it silently. His hands begin to tremble and he,slams the book shut in defeat.,starts genuinely thoughtful about it.,lifts the breadstick up to a height.,moves slowly towards the carriage.,looks oddly at a paper.,gold0-reannot,pos,unl,unl,unl,pos,Someone opens it and begins reading it silently.,His hands begin to tremble and he\nanetv_qmar8pDP5co,9507,The two sumo wrestlers walk out of the ring and again throw more powder. They,collide into one another and back away.,shoot a rocky bull with elves in the fall.,split the line into their pom poms.,men and referee attempt to put on the rope and get over a log before the athlete helps the man start the bull.,go preparing the wrestling speeds as the boys win with other girls.,gold0-orig,pos,unl,unl,unl,unl,The two sumo wrestlers walk out of the ring and again throw more powder.,They\nanetv_qmar8pDP5co,9503,\"There is a large crowd spectating, and a man in the center of the ring acting as referee. The two sumo wrestlers\",throw a white powder into the ring.,stand turned on the turn and hug each other.,get out onto the platform and pass the guy in giant black shirts.,are led on the team with a competition moving their hands up while one intervene to get his attention.,are pulling in a contest and continue to dance.,gold1-orig,pos,unl,unl,unl,unl,\"There is a large crowd spectating, and a man in the center of the ring acting as referee.\",The two sumo wrestlers\nanetv_qmar8pDP5co,9506,Two other men hold brooms as sweep up some of the powder. The two sumo wrestlers,walk out of the ring and again throw more powder.,are in a war competition ready as the referee appears on a tower.,drop hands in their phones.,are showing the loser on the shirts.,fight with the enemies in the pool.,gold0-orig,pos,unl,unl,unl,unl,Two other men hold brooms as sweep up some of the powder.,The two sumo wrestlers\nanetv_qmar8pDP5co,9509,They again collide into each other and begin wrestling. The man in black sumo shorts,throws the other man out of the ring.,is behind another wrestler.,passes the man who has the blindfold.,swings all her body around.,grabs one one by the wrestlers.,gold0-orig,pos,unl,unl,unl,unl,They again collide into each other and begin wrestling.,The man in black sumo shorts\nanetv_qmar8pDP5co,9504,\"The two sumo wrestlers throw a white powder into the ring. The squat and clap their hands together, while a group of men\",hold flags and walk around the ring.,laugh with the act.,hold on in a ring.,pass on the dance competition.,slide her from their arms and embrace.,gold1-reannot,pos,unl,unl,unl,unl,The two sumo wrestlers throw a white powder into the ring.,\"The squat and clap their hands together, while a group of men\"\nanetv_qmar8pDP5co,9508,They collide into one another and back away. They again,collide into each other and begin wrestling.,\"run through the air, swinging their head and fists at each other.\",hit the pinata and eat with one another.,ride the horse sideways after they hit the pinata.,,gold0-reannot,pos,unl,unl,unl,n/a,They collide into one another and back away.,They again\nanetv_RUv9YPd_0Zc,110,An introduction comes onto the screen for a presentation about auto repair. The video,displays several different parts of the car that is being worked on.,shows showing how to do different parts of a bike.,begins with the individual wearing the mask showing the results of the location.,shows different scenes of people riding horses and small waves.,,gold0-orig,pos,unl,unl,unl,n/a,An introduction comes onto the screen for a presentation about auto repair.,The video\nanetv_RUv9YPd_0Zc,112,The a dent fixing mechanism is attached to the cars to show how it works to repair one wheel. Then it,shows another wheel being repaired by the same mechanism.,flies into the truck behind it who crosses it upwards and back on.,clips him as the car hammer the guard back and slides it onto the back.,gets one heavy tire on.,,gold0-reannot,pos,unl,unl,pos,n/a,The a dent fixing mechanism is attached to the cars to show how it works to repair one wheel.,Then it\nanetv_RUv9YPd_0Zc,111,The video displays several different parts of the car that is being worked on. The a dent fixing mechanism,is attached to the cars to show how it works to repair one wheel.,is brought for her friend to join unhook the new tire on a rack in the background of the desk.,skis down and eventually rinse out the car with a hose.,is measured quick pensieve for a hotel.,uses a chain to wires up and ensuring the tire.,gold0-reannot,pos,unl,unl,unl,unl,The video displays several different parts of the car that is being worked on.,The a dent fixing mechanism\nlsmdc0013_Halloween-54103,5745,She leaps backward to avoid the blade and slips over the edge of the railing. Camera,pounces down from the second floor and slams into the floor.,fly back from someone's collar.,crawls close to someone as she leads someone into the water.,runs as someone pulls herself up and shoots the water dragging nearby.,,gold1-orig,pos,unl,unl,unl,n/a,She leaps backward to avoid the blade and slips over the edge of the railing.,Camera\nlsmdc0013_Halloween-54103,5760,The shape pushes the door open and leaps into the kitchen. With a heave she,opens it half - way.,gazes up at a lantern light lamp a few feet away.,remains on the bed next to her.,\"walks up the stairs, clutching her heart.\",crosses to the back door and glances at the window.,gold0-orig,pos,unl,unl,unl,unl,The shape pushes the door open and leaps into the kitchen.,With a heave she\nlsmdc0013_Halloween-54103,5725,There is someone lying on the bed but from this position someone can't see. She,moves forward toward the bed.,\"starts to pull away, causing her to stay and climb back up toward the crowd.\",reaches in his pocket and grabs the keys.,has tears on her face as she rolls her eyes.,applies a hand to her face.,gold0-orig,pos,unl,pos,pos,pos,There is someone lying on the bed but from this position someone can't see.,She\nlsmdc0013_Halloween-54103,5766,The back porch light comes on. Through the glass in the back door we,see an old woman dressed in a nightgown approach.,see someone with his dogs as it shuffles towards us and takes in a big hug.,see a brown dog carrying a can of peanuts which is over the top.,see the masked guards at his apartment window at the end.,see two young men face and nod.,gold0-orig,pos,unl,unl,unl,pos,The back porch light comes on.,Through the glass in the back door we\nlsmdc0013_Halloween-54103,5731,Suddenly a door next to her slowly opens. Someone,backs out of the bedroom.,aims at a slight fighter in front of her.,comes out with no kiss.,steps out of the parking lot beside her mother.,sits back with a wounded scowl.,gold1-orig,pos,unl,unl,unl,pos,Suddenly a door next to her slowly opens.,Someone\nlsmdc0013_Halloween-54103,5733,Her mouth is open in speechless horror. She,can only stare in horror at the sight of her dead friend.,leans against the urinal.,opens the passenger door and looks up.,looks up from side to side.,frowns and waves to someone.,gold0-orig,pos,unl,pos,pos,pos,Her mouth is open in speechless horror.,She\nlsmdc0013_Halloween-54103,5742,\"The knife slices across her arm, ripping her flesh. She\",screams and spins around.,lets him on the throat.,watches helplessly as she takes the stuffed mouse.,knocks her bearded face down and moves forward expectantly.,frees her breath as the box pops out.,gold0-orig,pos,unl,unl,unl,unl,\"The knife slices across her arm, ripping her flesh.\",She\nlsmdc0013_Halloween-54103,5744,Someone bumps back into the railing. She,leaps backward to avoid the blade and slips over the edge of the railing.,strides up the steps of the grocery store.,steals the waistband of someone's huggies.,turns back - - which is not far away.,\"pushes someone up, allowing her to sit.\",gold0-orig,pos,unl,unl,pos,pos,Someone bumps back into the railing.,She\nlsmdc0013_Halloween-54103,5759,\"The shape reaches through, groping for the lock. The shape\",pushes the door open and leaps into the kitchen.,blows out a whole pack of fang.,lashes down through the pedestal chamber.,closes a narrow tiny screen.,,gold0-orig,pos,unl,unl,unl,n/a,\"The shape reaches through, groping for the lock.\",The shape\nlsmdc0013_Halloween-54103,5762,She drags herself roughly out the window. Someone,\"picks herself up from the ground and runs as fast as she can, limping across the backyard, camera moving with her.\",stands behind a counter and leans over to the dorm window.,climbs into bed next to her parents.,crouches down and touches someone's armor.,,gold1-orig,pos,unl,unl,unl,n/a,She drags herself roughly out the window.,Someone\nlsmdc0013_Halloween-54103,5736,Someone suddenly moves away from the corner. The shape,lunges out at her.,falls to the floor just beyond it.,walks along the corridor.,indicated on the fallen stump remains.,,gold0-orig,pos,unl,unl,pos,n/a,Someone suddenly moves away from the corner.,The shape\nlsmdc0013_Halloween-54103,5727,Her face is a chalky white and there is a huge red gash across her throat. She,stares at the bed and then screams at the top of her lungs.,takes it out and shows her the sitting position still in the oven.,puts a handkerchief on someone's left side and goes over the refrigerator in the messy living room.,falls in someone's video above.,,gold0-orig,pos,unl,unl,pos,n/a,Her face is a chalky white and there is a huge red gash across her throat.,She\nlsmdc0013_Halloween-54103,5749,\"It is the shape, wearing the mask, the butcher knife in his hand, gleaming. The shape\",moves to the top of the staircase and starts down toward her.,advances slowly toward the girl who lowers it and gestures.,\"must be glowing, so below.\",lies on a small steel chair.,,gold0-orig,pos,unl,unl,pos,n/a,\"It is the shape, wearing the mask, the butcher knife in his hand, gleaming.\",The shape\nlsmdc0013_Halloween-54103,5741,The hand grasps a piece of someone's blouse and rips it. The knife,\"slices across her arm, ripping her flesh.\",is very focused now.,is completely smearing someone's eyes.,continues to cut someone's chest.,moves easily from her back.,gold0-orig,pos,unl,unl,pos,pos,The hand grasps a piece of someone's blouse and rips it.,The knife\nlsmdc0013_Halloween-54103,5738,He lunges again with the knife. He,lunges at her suddenly with the knife.,sets him across a floor and throws the pitchfork against the wall.,jumps and grabs some of the lettuce and starts to carve the sandwich.,equestrian & someone's chest.,enters before springing into the chair and falls onto the floor.,gold0-orig,pos,unl,unl,unl,unl,He lunges again with the knife.,He\nlsmdc0013_Halloween-54103,5767,Through the glass in the back door we see an old woman dressed in a nightgown approach. The old woman,\"stares at her suspiciously for a moment, then turns from the door and walks away.\",\"is looking anxious kindly, gesturing idly.\",tearfully greets someone their hand.,throws the hot dog in the candy counter.,rinses her hands away from the faucet and opens horizontally around a sink and washes something in the kitchen.,gold0-orig,pos,unl,unl,unl,unl,Through the glass in the back door we see an old woman dressed in a nightgown approach.,The old woman\nlsmdc0013_Halloween-54103,5732,Someone backs out of the bedroom. Her mouth,is open in speechless horror.,is pressed from underneath.,opens as if just getting trying to look any bit really.,falls open as she holds a glass.,\"falls open, and peers up at someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone backs out of the bedroom.,Her mouth\nlsmdc0013_Halloween-54103,5751,Then she looks up at the staircase. She,pulls herself up off the floor and hobbles into the living room.,twirls to the round and leads her toward the hallway.,ignores an answer and slams the door.,\"looks down, notices the shields are off, and smiles at the door.\",,gold1-orig,pos,unl,unl,unl,n/a,Then she looks up at the staircase.,She\nlsmdc0013_Halloween-54103,5764,\"She passes the driveway and scurries into the neighbor's backyard, up to the back door of the house. She\",pounds furiously on the door.,leaps out from behind a shelf.,goes to the window again as he turns the big nozzle.,\"takes the can and looks on in horror - - and sees again, to the camera box.\",is idly turning to see someone with other dogs.,gold0-orig,pos,unl,unl,unl,unl,\"She passes the driveway and scurries into the neighbor's backyard, up to the back door of the house.\",She\nlsmdc0013_Halloween-54103,5734,It is almost as if our eyes have suddenly begun to adjust to the darkness and we see the outline of a man standing right behind her. The outline,becomes more and more clear.,shows an extra structure in the picture.,of a design is taken by a cluster of flowers.,of a stag being legal.,of light moves on in the room.,gold0-orig,pos,unl,unl,unl,pos,It is almost as if our eyes have suddenly begun to adjust to the darkness and we see the outline of a man standing right behind her.,The outline\nlsmdc0013_Halloween-54103,5730,\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room, is someone, eyes open and staring. Someone\",shrinks back into a dark corner.,keeps his voice sound self - uncomfortable.,speaks gently as if to answer him.,is footsteps in the room.,\"spins her sharply as the door blows behind her, in reverse.\",gold1-orig,pos,unl,unl,unl,pos,\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room, is someone, eyes open and staring.\",Someone\nlsmdc0013_Halloween-54103,5746,Camera pounces down from the second floor and slams into the floor. Camera,\"moves with her as she backs away, screaming at the top of her lungs.\",appears in the doorway.,looks on through a window as he goes.,closes in behind her.,,gold0-orig,pos,unl,pos,pos,n/a,Camera pounces down from the second floor and slams into the floor.,Camera\nlsmdc0013_Halloween-54103,5758,\"Suddenly, the kitchen door explodes, the middle of it breaking. The shape\",\"reaches through, groping for the lock.\",approaches a tangle of timber mercenaries.,shakes out of the cockpit as it fires directly at the cop.,\"dissipates from the dry room with golden doors, captions appear much wider.\",sits out on the bathtub.,gold0-orig,pos,unl,unl,unl,unl,\"Suddenly, the kitchen door explodes, the middle of it breaking.\",The shape\nlsmdc0013_Halloween-54103,5740,\"He stands there holding up the piece of material, then raises the butcher knife and moves for her. The hand\",grasps a piece of someone's blouse and rips it.,puts a piece of paper on a knife's handle.,moves up with some hot steel that smashes the knife in the water.,\"goes to its head and cuts dead, keeping the knife on silver.\",holds alternate access to her eyes and is full - consciously clamped.,gold0-orig,pos,unl,unl,unl,pos,\"He stands there holding up the piece of material, then raises the butcher knife and moves for her.\",The hand\nlsmdc0013_Halloween-54103,5765,She pounds furiously on the door. Someone,continues to pound on the door.,gets out the car and waves for the door.,slowly slides the door shut behind them.,\"continues walking down the stairs, grabbing some of her hair.\",,gold0-orig,pos,unl,unl,pos,n/a,She pounds furiously on the door.,Someone\nlsmdc0013_Halloween-54103,5757,Her hand tries the door. Desperately she,\"tries the door, glancing behind her.\",looks over her back.,finds a fiery winged cop moving past someone while he continues to work.,leaps across the frame.,rises and grabs her coat.,gold0-orig,pos,unl,unl,unl,unl,Her hand tries the door.,Desperately she\nlsmdc0013_Halloween-54103,5747,\"Camera moves with her as she backs away, screaming at the top of her lungs. She\",\"hits the floor and rolls over, holding her leg painfully.\",takes a whiskey bottle from a container with a pitcher of ice.,\"blows out her cheeks, then brushes off her teeth, and she sighs.\",\"flexes her neck, then drapes her arms around her shoulder.\",looks back and forth between someone and the children.,gold0-orig,pos,unl,unl,unl,pos,\"Camera moves with her as she backs away, screaming at the top of her lungs.\",She\nlsmdc0013_Halloween-54103,5737,The shape lunges out at her. He,lunges again with the knife.,reaches out and punches some of his money.,places the fist milk apples on the small wooden table.,swims up to the watermelon again.,takes it and turns it to the stove.,gold0-orig,pos,unl,unl,unl,unl,The shape lunges out at her.,He\nlsmdc0013_Halloween-54103,5754,\"She crawls to the kitchen, rolls inside an slams the kitchen door behind her. In a flash, she\",leaps up and clicks the lock.,avoids eye shadow again.,slaps her hair into a book blink.,mends the black chaos.,,gold0-orig,pos,unl,unl,unl,n/a,\"She crawls to the kitchen, rolls inside an slams the kitchen door behind her.\",\"In a flash, she\"\nlsmdc0013_Halloween-54103,5755,\"In a flash, she leaps up and clicks the lock. She\",sees the kitchen window over the sink.,ties them around as someone drags her up a sidewalk.,strikes and lunges a few times.,hangs up the receiver.,raises her hands as she speaks.,gold1-orig,pos,unl,unl,unl,pos,\"In a flash, she leaps up and clicks the lock.\",She\nlsmdc0013_Halloween-54103,5750,The shape moves to the top of the staircase and starts down toward her. Then she,looks up at the staircase.,slowly turns around and looks after him again.,\"leans a step on one toe, pauses, and kicks at the sound, breathing hard.\",\"makes a run, turning and wades underneath.\",steps tentatively forward and turns down the hall.,gold0-orig,pos,unl,unl,unl,pos,The shape moves to the top of the staircase and starts down toward her.,Then she\nlsmdc0013_Halloween-54103,5735,The outline becomes more and more clear. Someone suddenly,moves away from the corner.,stands up and looks at the leader of men.,\"turns back, but sweeps a note toward the rocker.\",pulls himself off the car and swings it steadily.,is thumping disturbed by the memory.,gold1-orig,pos,unl,unl,unl,unl,The outline becomes more and more clear.,Someone suddenly\nlsmdc0013_Halloween-54103,5723,She reaches the top and stops. She,\"moves for the door, camera tracking with her.\",pushes her whole body toward him high behind the bar.,gets up from the sofa and kneels on the ground.,bends down and stares up the screen.,\"enters to find money, key on the trolley.\",gold1-reannot,pos,unl,unl,unl,unl,She reaches the top and stops.,She\nlsmdc0013_Halloween-54103,5752,She pulls herself up off the floor and hobbles into the living room. She,moves for the kitchen.,looks into a mirror.,unlocks someone's padlock.,smashes her head against someone's.,circles under her bed.,gold0-reannot,pos,unl,unl,unl,unl,She pulls herself up off the floor and hobbles into the living room.,She\nlsmdc0013_Halloween-54103,5729,\"Someone jumps back to the door. Strung up to the light fixture on the ceiling, dangling there in the middle of the room,\",\"is someone, eyes open and staring.\",peer weary and nervous.,someone turns and locks up the closet.,someone moves across the wet corridor.,someone sits against the shower stall.,gold0-reannot,pos,unl,unl,unl,unl,Someone jumps back to the door.,\"Strung up to the light fixture on the ceiling, dangling there in the middle of the room,\"\nlsmdc0013_Halloween-54103,5726,She moves forward toward the bed. Her face is a chalky white and there,is a huge red gash across her throat.,'s a man standing in a garden after with a cleaning razor on his coat collar.,'s a fabric toned form that have her hair snug about.,\"'s a little girl, rolling up and down her back.\",,gold0-reannot,pos,unl,unl,unl,n/a,She moves forward toward the bed.,Her face is a chalky white and there\nlsmdc0013_Halloween-54103,5724,\"She moves for the door, camera tracking with her. Camera slowly\",tracks through the darkened bedroom of someone house.,leans towards someone with his cigarette in her mouth.,follows her into the lobby blocking her door.,moves away from the doorway and climbs into the visitors hall.,moves through the smoke toward the floor.,gold0-reannot,pos,unl,unl,unl,unl,\"She moves for the door, camera tracking with her.\",Camera slowly\nlsmdc0013_Halloween-54103,5753,She moves for the kitchen. She,\"crawls to the kitchen, rolls inside an slams the kitchen door behind her.\",turns it in the bin she refills and fills the glass with water.,\"shows, needed for her lunch.\",\"stops, looking at the flash mob.\",picks up the shaker and pulls the drink out of it.,gold1-reannot,pos,unl,unl,pos,pos,She moves for the kitchen.,She\nlsmdc0013_Halloween-54103,5728,She stares at the bed and then screams at the top of her lungs. Someone,jumps back to the door.,seems to be joining in.,breathes out as more gazes lovingly at her eyes.,\"holds on tight, her eyes fading into tears.\",\"sits, staring at her before walking away.\",gold0-reannot,pos,unl,unl,unl,pos,She stares at the bed and then screams at the top of her lungs.,Someone\nlsmdc0013_Halloween-54103,5756,She sees the kitchen window over the sink. Someone,slowly climbs to her feet and limps toward the back door.,watches someone as he puts his leg behind her.,spots a penguin on an empty deck.,looks at him and cowers as she walks toward it.,,gold0-reannot,pos,pos,pos,pos,n/a,She sees the kitchen window over the sink.,Someone\nlsmdc0013_Halloween-54103,5743,She screams and spins around. Someone,bumps back into the railing.,watches her see her interview.,tosses the man back and back.,flails as he leaves.,covers her with an intense stare.,gold1-reannot,pos,unl,unl,pos,pos,She screams and spins around.,Someone\nanetv_hMUoeOFmquI,8283,\"The newscaster appears with her parents talking about the girl while clips of the race play, and still shot pictures of the girl appear on the camera. When the pictures and video clips of the interview and race are over, the newscaster\",is speaking alone back at the news station.,speaking to the camera makes screen on a pendant highlighting for more yellow logos.,demonstrates how to use a phone in the storage room.,talks to the camera on the wall.,,gold0-orig,pos,unl,unl,pos,n/a,\"The newscaster appears with her parents talking about the girl while clips of the race play, and still shot pictures of the girl appear on the camera.\",\"When the pictures and video clips of the interview and race are over, the newscaster\"\nanetv_QHJTOHgjDMw,14951,She opens the piano and begins to play. She,thinks about a couple while she is playing.,begins into playing with the camera once again.,turns on tape and bowing.,has opened the gambling cart.,continues to play while she sings very lit.,gold1-orig,pos,unl,unl,unl,pos,She opens the piano and begins to play.,She\nanetv_QHJTOHgjDMw,14950,\"A girl walks into a room, seeing sheet music at a piano. She\",opens the piano and begins to play.,\"plays a piano, sings a song into the center.\",keeps reacting and leads into her jumping up and down.,finishes and smiles broadly then extends her hand.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A girl walks into a room, seeing sheet music at a piano.\",She\nanetv_7c5vvEn3uLk,14845,A cowboy is riding on a horse in a large arena and is swinging his rope. The view changes to show a group of men with their horses and they,'re each holding onto their ropes and doing various things with them like tying and swinging them.,\"are dancing, riding horses back and forth between toys as other horses have gathered.\",are watching the game and they see some men on to go to bring and arrange around participate while the dance in the grass.,are suddenly all to one right where the beauxbatons chute wrinkle to find a boot in there's grassy drop by the sides.,have collected to runners with their friends.,gold0-orig,pos,unl,unl,unl,unl,A cowboy is riding on a horse in a large arena and is swinging his rope.,The view changes to show a group of men with their horses and they\nanetv_7c5vvEn3uLk,14846,Another man by the name of Stran Smith is now talking and clips of him riding his horse in different arenas as he wrangles a calf also plays. Clips of both of men talking and clips of them riding horses and wrangling calves,play and rotate between the two of them.,really hell of aglow in the background.,cheerleaders in front gym and groups of instructor and some fencing.,are shown with a man and her approach doing wheelie.,is shown with an experience with the man play cricket in a lake.,gold1-orig,pos,unl,unl,pos,pos,Another man by the name of Stran Smith is now talking and clips of him riding his horse in different arenas as he wrangles a calf also plays.,Clips of both of men talking and clips of them riding horses and wrangling calves\nanetv_zDPsJ3ECaTI,11281,An intro starts and begins showing a group of people. Various people,perform a dance routine together with an instructor performing front and center.,are then seen walking in a sand pit.,are shown riding their horses.,in bikinis are exercising on an exercise machine.,are in a curling field with multiple other athletes and having fun.,gold1-orig,pos,unl,unl,unl,unl,An intro starts and begins showing a group of people.,Various people\nanetv_zDPsJ3ECaTI,11282,Various people perform a dance routine together with an instructor performing front and center. The routine,continues with the people and instructor moving around with their arms and legs doing various movements to music.,slows and does several hands in the air before ending their walk.,continues as they continue to throw in slow motion.,continues with the gymnast all twirling the routine and holding a pose.,ends with the dancers involved in the routine.,gold0-orig,pos,unl,unl,pos,pos,Various people perform a dance routine together with an instructor performing front and center.,The routine\nanetv_TFwELfVs19g,4178,She gets her belly button pierced. They,put an earring in the belly button.,laughs afterward.,\"then the talks again, while seated,.\",\", someone comes up to someone in a file - in reflection of her gryffindor table.\",\", she bins a gawking taser.\",gold0-orig,pos,unl,unl,unl,unl,She gets her belly button pierced.,They\nanetv_TFwELfVs19g,11684,\"A woman and and a man talk in a tattoo shop. Then, the man\",cleans the button belly of the woman and puts a mark.,is welding a strip of material with a box.,adjust his arm in the man's hair and a large dog watch him.,opens paper and presents a paper to another man.,,gold0-orig,pos,unl,unl,pos,n/a,A woman and and a man talk in a tattoo shop.,\"Then, the man\"\nanetv_TFwELfVs19g,11685,\"Then, the man cleans the button belly of the woman and puts a mark. After, the woman lay down, and the man\",pierce the belly button and puts a stud.,puts wax in skis under the woman's foot.,measures trim and make it perfectly non style.,tattoo the back and neck of the man after he continues his piercing.,wipe down the vase.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the man cleans the button belly of the woman and puts a mark.\",\"After, the woman lay down, and the man\"\nanetv_TFwELfVs19g,11686,\"After, the woman lay down, and the man pierce the belly button and puts a stud. The man\",holds a mirror for the woman to see her piercing.,stomps with a helmet of the right head and tight the other man lies on the ground from her couch in her room.,cuts super o tam - tam in the hall.,wears overlaid ski goggles as he breaks the ski with his feet.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the woman lay down, and the man pierce the belly button and puts a stud.\",The man\nanetv_TFwELfVs19g,4179,They put an earring in the belly button. She,stands up and looks in a mirror.,pushes the dish up the room to climb the toilet.,move the bowling balls.,pulls out a bit of pain and unplugs the hoop.,,gold1-orig,pos,unl,unl,pos,n/a,They put an earring in the belly button.,She\nanetv_TFwELfVs19g,4177,A woman is laying down on a table. She,gets her belly button pierced.,is laying down on a couch in front of the camera.,lays a fork in a plate in front of the counter.,moves a piece of paper onto the floor.,is putting a design into the fire.,gold0-reannot,pos,unl,unl,unl,unl,A woman is laying down on a table.,She\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31557,2373,Someone follows Captain someone up a corridor. Someone,peers into crew's sleeping quarters.,leads his elevated master down the staircase in synchronized moves.,is over the edge.,\"turns to look at someone, who smiles sad.\",hides a key badge.,gold0-orig,pos,unl,pos,pos,pos,Someone follows Captain someone up a corridor.,Someone\nlsmdc3046_LARRY_CROWNE-21387,11409,The round - faced executive spreads his hands. Someone,takes a breath as if to speak.,softens the president and marches on with a smile.,arrives outside someone's hotel window.,sits at a table near a white - and - white table.,holds a pencil to his lips and someone maneuvers forward.,gold0-orig,pos,unl,unl,unl,pos,The round - faced executive spreads his hands.,Someone\nlsmdc3046_LARRY_CROWNE-21387,11408,The beefy executive callously picks pizza out of his teeth. Someone's eyes,glisten in a helpless stare.,\"are steadily bulging, droopy from foot to foot.\",\"dart for a right - down, now.\",\"widen with a robotic bar, ice.\",widen as someone holds the transfer money.,gold0-orig,pos,unl,unl,unl,unl,The beefy executive callously picks pizza out of his teeth.,Someone's eyes\nanetv_LYOQ0gVySxE,4651,Coffee is ground up in an electric grinder. A cup of coffee and coffee press,are set on a table.,to a coffee table inside.,beer is poured into the scrolling dots and people are contents in it in a glass wing.,are shown being removed.,are poured on the device.,gold1-orig,pos,unl,unl,unl,unl,Coffee is ground up in an electric grinder.,A cup of coffee and coffee press\nanetv_LYOQ0gVySxE,4653,Milk is poured into the cup of coffee. The cup of coffee,is picked up and set back down on the saucer.,has sprinkled and pour it into a third bowl.,is a bit quieter.,is poured to the drink again.,is poured into a pitcher of beer.,gold0-orig,pos,unl,unl,unl,unl,Milk is poured into the cup of coffee.,The cup of coffee\nanetv_LYOQ0gVySxE,4652,A cup of coffee and coffee press are set on a table. Milk,is poured into the cup of coffee.,women continue working looking at him.,are up on a table.,are lazily down at the rows into a table.,,gold0-reannot,pos,unl,unl,unl,n/a,A cup of coffee and coffee press are set on a table.,Milk\nanetv_lvlVfgZ53NQ,10694,He pours liquids over a glass filled with ice. He then,garnishes the final product for serving.,discusses the information at a point.,mixes the ice into the martini glass.,pours liquids into the strainer.,,gold0-orig,pos,unl,pos,pos,n/a,He pours liquids over a glass filled with ice.,He then\nanetv_lvlVfgZ53NQ,10693,\"A man is talking behind a bar, standing in front of numerous alcohol bottles. He\",pours liquids over a glass filled with ice.,pours the juice into a mixer and pours it over a plate.,pours it into a glass and pours it a drink.,pours the drinks into a glass while holding a cup of coffee.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is talking behind a bar, standing in front of numerous alcohol bottles.\",He\nanetv_Cy3tUZIN8nk,18283,A man is seen sitting on a bench playing a harmonica. The man,kicks his feet while he plays along.,plays the guitar in front and continues playing.,continues playing a flute while looking to the camera.,proceeds to play the accordion in the end.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen sitting on a bench playing a harmonica.,The man\nanetv_Cy3tUZIN8nk,18284,The man kicks his feet while he plays along. He,continues to play the instrument and pauses to speak to others.,grabs onto one and lays it down and continues putting more onto his movements.,women sort out his movements while brushing cats.,continues to spin on the court while others watching on the sides.,kneels down while looking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The man kicks his feet while he plays along.,He\nanetv_Cy3tUZIN8nk,483,The man moves his foot up and down and pauses for a minutes before continuing to play. The man,sings a bit and still plays the harmonica.,picks up the hoop once again and sits there for a moment.,pauses to speak to the camera again and continues to talk to the camera who smiles.,laughs several times while still shaking his face while playing on the mat.,continues playing while laying back on the ground and the man continues to talk.,gold0-reannot,pos,unl,unl,unl,unl,The man moves his foot up and down and pauses for a minutes before continuing to play.,The man\nanetv_NNqghz7Fd0M,12916,He is playing a kid drum set. He,hits the cymbals and drums with his sticks.,puts a number of gray back on the drum.,starts playing the drums again.,texts back and forth.,pick up barley and teach.,gold0-orig,pos,unl,unl,unl,unl,He is playing a kid drum set.,He\nanetv_NNqghz7Fd0M,12647,A small child is seen sitting behind a set of drums and playing in front of an audience. The boy,continues playing as people stand around and watch.,turns a guitar onto and plays the instrument while pausing to speak to the camera.,then pet the girl guitar and ends by the girl speaking to the camera.,continues to play the instrument while the kids watch him laugh.,,gold0-orig,pos,unl,unl,pos,n/a,A small child is seen sitting behind a set of drums and playing in front of an audience.,The boy\nanetv_NNqghz7Fd0M,12915,A little boy is seated in front of a tree. He,is playing a kid drum set.,is playing a croquet ball.,is playing a slight swing.,is trying to rake off his fake fake tree.,play a game of capoeira cut with a pair of luxurious sunglasses.,gold0-reannot,pos,unl,unl,unl,unl,A little boy is seated in front of a tree.,He\nanetv__0CqozZun3U,12063,Man is standing in the botom of a stairs and is cleaning the snow hil in the street a snowplow is passing and the man is cleaning the snow and doing a path. man,is standing in front of a car and is cleaning the windshield and all the windows.,is with the man reading the ski.,\"is in snow in a car in front of a car on the house, where is two old man and woman on flooring.\",puts a woman fall on the attached tiled carpet.,\"are in water, laughing and talking to the camera.\",gold1-reannot,pos,unl,unl,unl,unl,Man is standing in the botom of a stairs and is cleaning the snow hil in the street a snowplow is passing and the man is cleaning the snow and doing a path.,man\nanetv_N49yT-kvXuw,17208,Several people climb the hills with snowboards and skis. They,talk to the camera between views of them skiing and boarding down the snowy hills.,ride up over the rocky ground as they all fall from the sand pit.,riders are intentionally pushing the snow down the hill.,continues going down the hill.,,gold0-orig,pos,unl,pos,pos,n/a,Several people climb the hills with snowboards and skis.,They\nanetv_N49yT-kvXuw,3776,A large mountain is shown with ski lifts moving and leads into people cleaning off the snow and walking around on boards. People,perform several tricks on snowboards while the camera captures their movements.,are seen going in large tubes down the river passing a man holding up a tube.,continue around jumping of a rope while others watch on the side.,are kicking a skateboard down the snow while looking off into the distance.,,gold0-orig,pos,unl,unl,unl,n/a,A large mountain is shown with ski lifts moving and leads into people cleaning off the snow and walking around on boards.,People\nanetv_N49yT-kvXuw,17207,An aerial view of a ski resort is shown. several people,climb the hills with snowboards and skis.,are standing in a short rope being removed from underneath.,are shown inside the lift and being shown.,are then shown standing in tubes.,are seen playing dodge gear.,gold1-orig,pos,unl,unl,unl,unl,An aerial view of a ski resort is shown.,several people\nanetv_N49yT-kvXuw,3777,People perform several tricks on snowboards while the camera captures their movements. More people,are seen speaking to the camera while others continue to ride around.,are shown running on it as the camera captures their movements.,are shown riding on a lakeside to surf.,flip into each other's arms.,are shown riding around on tubers as well as many videos cheering with someone.,gold0-orig,pos,unl,unl,unl,unl,People perform several tricks on snowboards while the camera captures their movements.,More people\nlsmdc1011_The_Help-78698,19327,\"Later, someone sifts through her post. She\",opens the envelope and finds a note from someone.,checks a photo album on her picture and inserts a revolver.,brings paper to it.,pulls the photo fan out of her glass.,climbs the little staircase and shuts it.,gold1-orig,pos,unl,unl,unl,unl,\"Later, someone sifts through her post.\",She\nlsmdc1011_The_Help-78698,19328,She opens the envelope and finds a note from someone. She,smirks as she unfolds the enclosed check.,clicks some audio icons on one part.,looks at the white paste.,lays her arm around the desk and takes a photo to someone.,holds up her purse for someone.,gold0-orig,pos,unl,pos,pos,pos,She opens the envelope and finds a note from someone.,She\nlsmdc1011_The_Help-78698,19331,\"She glugs back some beer, spilling some over her blouse, and swerves the car. She\",\"glugs down the rest and puffs on a cigarette, throwing the empty bottle into the backseat.\",smiles but gets lost to certain well.,takes off the chunk and breaks it to a roll.,\"gets in the backseat, starts down the stairs, and stops.\",passes into her boat.,gold0-orig,pos,unl,unl,unl,unl,\"She glugs back some beer, spilling some over her blouse, and swerves the car.\",She\nlsmdc1011_The_Help-78698,19330,\"Steaming along a straight dirt road between two green fields, kicking up a storm of dust behind her, she sits at the wheel of the Ford Fairlane station wagon, her lips curling. She\",\"glugs back some beer, spilling some over her blouse, and swerves the car.\",pull the gun over a cool swastika that has been wrapped around her shoulders.,holds her hips while at cuff held up her hands.,takes her to her feet and takes out her ticket.,,gold1-orig,pos,unl,unl,unl,n/a,\"Steaming along a straight dirt road between two green fields, kicking up a storm of dust behind her, she sits at the wheel of the Ford Fairlane station wagon, her lips curling.\",She\nlsmdc1011_The_Help-78698,19329,She smirks as she unfolds the enclosed check. She,tears the check into tiny pieces and storms out of the house.,checks the bottle for the stacks and the money.,\"puts it back on a remote -, then drops her gaze across the yard.\",heads down a road and limps to her side.,,gold0-orig,pos,unl,unl,pos,n/a,She smirks as she unfolds the enclosed check.,She\nlsmdc1011_The_Help-78698,19332,Someone receives a letter from someone offering her a job as a junior editor at Harper & amp; Row Publishers. Someone,arrives in front of someone's house in a storm of dust and marches towards the front door like an angry chicken.,starts off the seat of the hydra's court when people are led away from him.,\"peers into the baby's arms, then shifts her jaw then glances at.\",waves where her organization washes onscreen.,\"finds cross - legged on nuts, the shaped man in a black belt and wears a straw collapsible coat.\",gold0-reannot,pos,unl,unl,unl,unl,Someone receives a letter from someone offering her a job as a junior editor at Harper & amp; Row Publishers.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17229,\"A light shines from an upstairs window. In the bedroom, a dark - haired boy wearing round glasses\",is looking at an unusual photo album.,plays in the offscreen line.,kisses one of their.,pops someone's impassive face.,,gold0-orig,pos,unl,unl,unl,n/a,A light shines from an upstairs window.,\"In the bedroom, a dark - haired boy wearing round glasses\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17228,\"In the sprawling suburbs, the streets grow dark and the lights go on in the rows of houses. A light\",shines from an upstairs window.,shines across the chimney.,is gathering in the house.,blazes in a crowded track.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the sprawling suburbs, the streets grow dark and the lights go on in the rows of houses.\",A light\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92587,17230,\"In the kitchen, his someone is decorating a meringue gateau. Someone\",is fastening his son's bow tie.,tucking his drifts back into her bag.,are asleep in bed.,lies on the bed next to someone's.,is a little boy age but she sees him for a good reason.,gold0-reannot,pos,unl,unl,unl,unl,\"In the kitchen, his someone is decorating a meringue gateau.\",Someone\nanetv_yl37hI-Bgkk,6834,The person brushes off his hair and then signs his name on a piece of paper. More men are seen shaving their heads and one,speaks to the hair stylist on what he wants.,begins cutting his hair and giving him more thumbs tattoos as another showing is in his mouth.,stops wiping down and ends.,falls off without falling off.,finishes tattooing the man's leg and begins putting his rake in the pumpkin.,gold0-orig,pos,unl,unl,unl,unl,The person brushes off his hair and then signs his name on a piece of paper.,More men are seen shaving their heads and one\nanetv_yl37hI-Bgkk,1120,A man is standing inside a building. He,uses tools to shave and clean another man's neck.,is applying a plaster of snow.,walks down a river in a lift.,is shown doing some exercises on the sand.,is playing a few drum drums.,gold0-orig,pos,unl,unl,unl,unl,A man is standing inside a building.,He\nanetv_yl37hI-Bgkk,6835,More men are seen shaving their heads and one speaks to the hair stylist on what he wants. The person,continues shaving the heads of men while they sit in the chair and wait.,continues drying up with the hair and ends up tugging up the bottle with a scissors at the end.,applies makeup to another stylist who catches another makeup tattoo.,continues washing all the different areas.,,gold0-orig,pos,unl,unl,unl,n/a,More men are seen shaving their heads and one speaks to the hair stylist on what he wants.,The person\nanetv_yl37hI-Bgkk,1121,He uses tools to shave and clean another man's neck. The man then,signs a sheet to have his hair shaved off.,trims his hair while the man uses toppings to trim the tattoo.,puts his facial hair on and shows a close up of the camera.,removes the leg of his left shoe and dips it into the left lace.,returns archery until the piercing are complete.,gold1-orig,pos,unl,unl,unl,unl,He uses tools to shave and clean another man's neck.,The man then\nanetv_yl37hI-Bgkk,6833,A person is seen shaving the head of a person seen in a chair in front of him. The person,brushes off his hair and then signs his name on a piece of paper.,lifts a third weight over his head before beginning to shave it's beard with a towel.,continues spraying the side of the pumpkin.,smears the throats all along the sides and immediately cleans off the left boot.,jumps in his face to the other as well as shaving his right leg.,gold1-reannot,pos,unl,unl,unl,unl,A person is seen shaving the head of a person seen in a chair in front of him.,The person\nanetv_CBN0dqyWB7w,10357,A man is seen kneeling down next to a car while speaking to the camera. The camera,pans all around the car as well as the tire while the man continues to speak to the camera.,moves back and fourth and shows several people working out on bicycle bikes.,zooms up around him using the hand moves around the machine.,zooms in on people and leads to the man climbing another.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen kneeling down next to a car while speaking to the camera.,The camera\nanetv_mvomkmq32vU,12535,A track athlete prepares and stretches out on a starting line. A track athlete,runs down a track and high jumps over bar onto a mat.,is looking down a track wearing a yellow shirt.,prepares to jump into a sand pit.,jumps on a horse.,is shown running out performing training in a run.,gold0-orig,pos,unl,unl,unl,pos,A track athlete prepares and stretches out on a starting line.,A track athlete\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14106,\"Seeing no one, he gives a disappointed look. Later, someone and someone\",assemble wrought - iron fencing around lion's enclosure.,enter an unlit high table.,arrive in a home and dine up with north groom.,come into the office and look between the proceedings.,pull up over a vacant shipping bridge.,gold1-orig,pos,unl,unl,pos,pos,\"Seeing no one, he gives a disappointed look.\",\"Later, someone and someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14098,\"Someone looks on, dazed. Someone tears up and someone\",grins from ear to ear.,steps down to join the soldier.,\"goes down the hall at someone, who is standing at the sink, studying her new friend.\",wraps her arms triumphantly around his neck.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone looks on, dazed.\",Someone tears up and someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14101,\"Later, the hand crosses off June 10th. As a circular saw cuts a pole, otters\",watch from a rock.,sweep across a cresting wave.,signals to a sheet of beads.,spray out the waste paper.,\"are caught in the dusty, terrible waterfall.\",gold0-orig,pos,unl,unl,unl,unl,\"Later, the hand crosses off June 10th.\",\"As a circular saw cuts a pole, otters\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14088,Someone brings a sandwich to someone. He,continues to sketch as she sits beside him at a picnic table.,halts and glances back at someone.,gives a resigned nod.,pulls a strand off his tray.,drops the joint into it and takes it.,gold1-orig,pos,pos,pos,pos,pos,Someone brings a sandwich to someone.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14105,\"He glances around, then checks his watch and gazes down a path for Lily. Seeing no one, he\",gives a disappointed look.,\"heads off, leaving someone down.\",bangs back down hard.,steps to a side door.,turns back to the people.,gold1-orig,pos,unl,unl,pos,pos,\"He glances around, then checks his watch and gazes down a path for Lily.\",\"Seeing no one, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14094,Someone expectantly takes a steadying breath. Someone,\"shifts her weight, her gaze intent.\",spreads her wings and snorts a thin drains of blood on her fingernail.,brushes his eyes behind sweating someone.,grimaces in taut smoke.,,gold1-orig,pos,unl,unl,unl,n/a,Someone expectantly takes a steadying breath.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14095,\"As he stares at the bank statements in his hands, someone bridles. Someone\",wears a puzzled frown.,\"'s energy brings him to his feet, but is firm and firm.\",hangs his head.,\"sits on his table, her arms folded across her chest.\",sits at her desk.,gold0-orig,pos,pos,pos,pos,pos,\"As he stares at the bank statements in his hands, someone bridles.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14096,Someone wears a puzzled frown. Someone,holds up the bank statements.,walks round to the young someone under a kiosk with some secret data on someone's white shirt.,and someone step forward to reveal where the sphere will be created.,\"hurries downstairs into the corridor, grabs someone's arm, and walks off before turning off the lights.\",,gold1-orig,unl,unl,unl,unl,n/a,Someone wears a puzzled frown.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14092,\"Blinking back tears, someone strides away. Someone\",shakes his head disbelievingly and smiles to himself.,goes through the jewelry box.,reaches over and shakes someone's hand.,scowls in someone's direction.,gazes up at him with blue sad eyes.,gold1-orig,pos,unl,unl,unl,unl,\"Blinking back tears, someone strides away.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14102,\"As a circular saw cuts a pole, otters watch from a rock. On the calendar, the hand Xs out the 19th, then\",adds to a doodle at the bottom.,tumble over its head.,the lid is firmly closed.,\"the other white, high below.\",points to the back of his head.,gold0-orig,pos,unl,unl,unl,unl,\"As a circular saw cuts a pole, otters watch from a rock.\",\"On the calendar, the hand Xs out the 19th, then\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14097,Someone holds up the bank statements. Someone,\"looks on, dazed.\",stares at the gravestone.,inches at its folds.,notices the writing on the chalkboard.,peek at gaze.,gold0-orig,pos,unl,unl,pos,pos,Someone holds up the bank statements.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14108,She eyes his knit cap. She,lifts her brow high.,touches the end of her nose.,produces someone's cigarette.,reflects and looks over at someone who wears a fearful gaze.,turns the mirror flushed toward her face.,gold0-orig,pos,unl,unl,unl,unl,She eyes his knit cap.,She\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14089,\"He continues to sketch as she sits beside him at a picnic table. With a sad smile, she\",gazes at the oblivious boy.,gets up and drives off.,tries to pick up a plate.,glances at the tv.,holds someone's gaze.,gold1-orig,pos,unl,unl,unl,pos,He continues to sketch as she sits beside him at a picnic table.,\"With a sad smile, she\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14103,\"On the calendar, the hand Xs out the 19th, then adds to a doodle at the bottom. Sitting outside, someone\",draws in his sketchbook.,elbows someone's desk and brings his hands up.,hurries to the sound of locking the safe.,sadly faces someone with seven pencil drawings on an upper lip.,lays his hand across the model's breast.,gold0-orig,pos,unl,unl,unl,unl,\"On the calendar, the hand Xs out the 19th, then adds to a doodle at the bottom.\",\"Sitting outside, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14090,\"Struggling to remain composed, she nods. He\",returns to his sketch.,reaches out and checks the screen.,lifts his gaze to someone who holds her gaze.,turns back to abduction another portrait.,turns - - someone with a desperate lunge.,gold0-reannot,pos,unl,unl,unl,unl,\"Struggling to remain composed, she nods.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14091,\"He returns to his sketch. As someone focuses on his drawing, someone\",watches with heartbroken eyes.,pops a fish into his mouth and holds out a towel.,lowers slightly in the stern.,takes a picture in the rocking boys sky.,continuously talked and hugs her adolescent friend.,gold0-reannot,pos,unl,unl,unl,unl,He returns to his sketch.,\"As someone focuses on his drawing, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41390,14100,\"Now, someone and someone set towering posts near Buster's enclosure. Someone\",mounts a sign in front of a capuchin enclosure.,enters outside the studio.,raises into the fire and slowly swims toward the rocker.,follows someone to follow him as they weave through another tunnel.,stays dressed as someone emerges on draco as he makes a turn.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, someone and someone set towering posts near Buster's enclosure.\",Someone\nanetv_GaxyzK2mHqw,13440,\"Woman shows a clean pan, put the butter on the bread and grate the cheese, then put it as a sandwich and in the pan with a lid till the bread is tasty. woman\",serve the bread in a blue dish and slice in two.,removes the knife and pours the cloth all over the top again.,rubs the bread into a bigger bowl to roll off the oven.,get a package put adhesive from a swiss water pan and begin to iron it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Woman shows a clean pan, put the butter on the bread and grate the cheese, then put it as a sandwich and in the pan with a lid till the bread is tasty.\",woman\nanetv__nvQDglPcmc,16400,Water polo team is standing by the pool talking to the camera. man,jumps in the water and is holding a ball and sart playing in the pool.,is standing in a racquetball uniform as the other man digs for his target.,is walking on a beach with his walking children.,cleans a white beach on the ice.,is then shown a full sea and throws the rock.,gold0-reannot,pos,unl,unl,unl,unl,Water polo team is standing by the pool talking to the camera.,man\nanetv_dQs2-z3TIes,2067,\"The girl speaks into the microphone, then performs a ballet piece. She\",dances around the stage for the audience.,continues on how to demonstrate how to play the violin and wanting.,congratulates loudly with the performance while hitting with the child in arms.,plays different the bars and plays on the end.,finishes by singing while moving and singing.,gold0-orig,pos,unl,unl,unl,unl,\"The girl speaks into the microphone, then performs a ballet piece.\",She\nanetv_dQs2-z3TIes,2066,A woman is on stage speaking to a little girl while holding a microphone. The girl,\"speaks into the microphone, then performs a ballet piece.\",smiles at the camera and stops a video from showing him.,kicks and leaves the group.,plays the drums with her hands continuously waiting for her turn.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is on stage speaking to a little girl while holding a microphone.,The girl\nanetv_dQs2-z3TIes,2068,She dances around the stage for the audience. She,falls onto one knee as she completes her performance.,master again appears backstage at the microphone holding up flags.,continues dancing dance with each other while dancing up and down.,continues speaking while laughing while holding the harmonica.,,gold1-orig,pos,unl,unl,unl,n/a,She dances around the stage for the audience.,She\nanetv_mfq5Y7S3BWs,13565,The same woman is now seen on a stationary bicycle teaching a spin class. Several other people in the class,can be seen on stationary bicycles in the mirror behind the instructor.,started to perform their routine on the beam.,lift up in an upscale gym class.,sit and chat with same class.,,gold0-orig,pos,unl,unl,unl,n/a,The same woman is now seen on a stationary bicycle teaching a spin class.,Several other people in the class\nanetv_mfq5Y7S3BWs,13566,Several other people in the class can be seen on stationary bicycles in the mirror behind the instructor. The woman,is then shown on the ground demonstrating an exercise.,\"uses some more reassuring, tattooing sharpens to break down the floor.\",\"hangs back and feet, ending the window and starts being completely engrossed.\",mixes a area and shows a different roller on the pan.,,gold0-orig,pos,unl,unl,unl,n/a,Several other people in the class can be seen on stationary bicycles in the mirror behind the instructor.,The woman\nanetv_mfq5Y7S3BWs,13568,The spin class is shown again still in progress. The instructor then,does floor exercises again with the class following along.,comes back with pick sticks up and tuns around.,begins to teach the class they are trying to do in themselves.,turns around and sprints as the members continue.,starts doing the same aerobic dance moves very fast.,gold0-orig,pos,unl,pos,pos,pos,The spin class is shown again still in progress.,The instructor then\nanetv_mfq5Y7S3BWs,13564,A woman is standing by a bathroom door talking. The same woman,is now seen on a stationary bicycle teaching a spin class.,take their breaths and aim their rifle together.,tries to adjust the weight.,takes off and is at the counter.,is washing clothes in a sink.,gold0-orig,pos,unl,unl,pos,pos,A woman is standing by a bathroom door talking.,The same woman\nanetv_mfq5Y7S3BWs,13567,The woman is then shown on the ground demonstrating an exercise. The spin class,is shown again still in progress.,returns to hold a pose in the uneven bar.,\"pulled around in the routine, rocking back and forth.\",has joined arms while doing stunts before a class.,ends by performing some exercise.,gold0-orig,pos,unl,unl,unl,pos,The woman is then shown on the ground demonstrating an exercise.,The spin class\nanetv_rO9SwC42Goo,3742,Two young boys are sitting on a camel and holding on to a stick attached to the seating of the camel while a man dressed in dark clothing is standing next to them. The camel,begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel.,spins the small camel around the whole.,is riding a camel around with sets of the camels.,begins to take two steps while he pull them from the camel.,,gold0-orig,pos,unl,unl,unl,n/a,Two young boys are sitting on a camel and holding on to a stick attached to the seating of the camel while a man dressed in dark clothing is standing next to them.,The camel\nanetv_rO9SwC42Goo,12436,Two children are riding it as it kneels to the ground. The kids,are then able to dismount from the camel.,begin bouncing the dirt at each other.,slide down putting their hearing gear on.,start carrying another child in it.,continue to look over their heads during the dirt race.,gold0-orig,pos,unl,unl,unl,pos,Two children are riding it as it kneels to the ground.,The kids\nanetv_rO9SwC42Goo,3743,The camel begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel. The camel then lowers its back legs and the children,smile as they release their hands from holding on so tightly.,\"fold, revealing as forcefully to and also begin arm wrestling with the dog.\",enjoy the quick sidelong stare of each of the girls as it peels away.,bounces and moves back to the lady.,come down the hill and end with a splash of pans.,gold0-orig,pos,unl,unl,unl,pos,The camel begins to bend down its two front legs as the kids hold on very tightly and the man begins to walk around the camel.,The camel then lowers its back legs and the children\nanetv_rO9SwC42Goo,12435,A man is standing in front of a camel. Two children,are riding it as it kneels to the ground.,are knelled at a table.,are playing on a wooden set.,are tipped on a lawn with the dogs.,run to a tree in the woods.,gold0-orig,pos,unl,unl,unl,unl,A man is standing in front of a camel.,Two children\nanetv_qGID8CHyClA,3842,A man in a red shirt is walking next to them. They,stop playing and set the rope down.,are measuring the end of the ball.,start to dance and dance.,stand and talks to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A man in a red shirt is walking next to them.,They\nanetv_qGID8CHyClA,3838,A large group of men and women are on either side of a thick rope outdoors. They,\"are playing a game of tug of war, attempting to pull each other forward.\",go on with the rope and then begin balancing on the jumping rope.,run to the melee and different events.,steps onto the glider.,are still on to the railing on the back of the boat.,gold0-orig,pos,unl,unl,unl,unl,A large group of men and women are on either side of a thick rope outdoors.,They\nanetv_qGID8CHyClA,3840,\"A man crawls alongside them, offering encouragement. The red time wins, and everyone\",shakes hands as they walk away.,seems to be chasing the ball.,stops waiting for the signal to start physically stabbing.,claps for the man.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man crawls alongside them, offering encouragement.\",\"The red time wins, and everyone\"\nanetv_qGID8CHyClA,3841,People are playing a game of tug of war on the grass. A man in a red shirt,is walking next to them.,is walking on the ground.,is walking behind another person.,is being interviewed at a time end.,is standing next to a horse.,gold1-orig,pos,unl,unl,unl,pos,People are playing a game of tug of war on the grass.,A man in a red shirt\nanetv_qGID8CHyClA,3839,\"They are playing a game of tug of war, attempting to pull each other forward. A man\",\"crawls alongside them, offering encouragement.\",hits some yellow ball and skate down the suspension.,is standing up sculpting the sand pit.,grab her as they walk away.,falls from the door as the man kicks the ball.,gold0-reannot,pos,unl,unl,unl,unl,\"They are playing a game of tug of war, attempting to pull each other forward.\",A man\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89616,11353,Someone and the people are traveling through the rolling hills of the Peaks. Someone,is practicing his fencing.,puts her fingers together.,looks around one of someone's sculpted - like terrain.,put photos to paintings as she turns and races toward her house.,\"watches the last half of the wedding, his eyes wide.\",gold1-reannot,pos,unl,unl,unl,unl,Someone and the people are traveling through the rolling hills of the Peaks.,Someone\nanetv_w-6Oo3bgms4,17298,Several men are playing soccer in a gym. There,are some spectators in the background.,still has a large point for a man.,are on a court on the side of a bar and watching them play.,\"are high on the field, trying to stay balanced.\",are standing on a field playing a game of rock paper scissors.,gold0-orig,pos,unl,unl,unl,unl,Several men are playing soccer in a gym.,There\nanetv_w-6Oo3bgms4,17299,Another group of men are playing soccer. There,are spectators in the background.,are the ball and a ball of tape are giving it to the players.,are then shown of a player walking down the swimming pool behind another man and is singing in the background.,are sitting on a wooden slide running a brush in front of them watching the game.,stand on the sandy field and throw balls at each other for a while.,gold0-orig,pos,unl,unl,unl,unl,Another group of men are playing soccer.,There\nanetv_PG-AK5fawJI,16819,\"Then, the pie lands for the second time on the face of the actress, as well on the face of the tv presenter. The tv presenter stands holding ducks on both hands, then he\",pretends eats the duck on the right hand.,\"gets up and goes to his motel room, enters the wall.\",dances to reveal the charming - looking man film.,starts talking on a scrub fingernail and spreading his hand with a boyish face.,continues to eat the ice cream.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the pie lands for the second time on the face of the actress, as well on the face of the tv presenter.\",\"The tv presenter stands holding ducks on both hands, then he\"\nanetv_PG-AK5fawJI,16818,\"After playing a while, the woman turn a handle that raise the pie that lands on the face of the actress. Then, the pie\",\"lands for the second time on the face of the actress, as well on the face of the tv presenter.\",takes place while the man watches her.,\"is added, and the name is to the customer, and then she does a suppressed sob.\",breaks in the dirt to get the ginger so she can cut it.,,gold0-orig,pos,unl,unl,unl,n/a,\"After playing a while, the woman turn a handle that raise the pie that lands on the face of the actress.\",\"Then, the pie\"\nanetv_PG-AK5fawJI,16817,\"A tv presenter and an actress are putting googles to play rock, paper and scissors pie on front a pie with white cream. After playing a while, the woman\",turn a handle that raise the pie that lands on the face of the actress.,cuts some orange cake and begins painting the flower.,continues knitting while giving her long tattoo.,stretches its cord attached to the side.,,gold0-orig,pos,unl,unl,unl,n/a,\"A tv presenter and an actress are putting googles to play rock, paper and scissors pie on front a pie with white cream.\",\"After playing a while, the woman\"\nanetv_BCsfauy69xM,13623,We see from inside the pumpkin as they are being carved. We,see five pumpkins on a couch and in the dark lit from the inside.,see the court and measuring the distance.,see the sea full of ingredients.,see a lady bring two children into a slide.,,gold0-orig,pos,unl,unl,unl,n/a,We see from inside the pumpkin as they are being carved.,We\nanetv_BCsfauy69xM,13622,We see two people side by side carving pumpkins. We,see from inside the pumpkin as they are being carved.,see people painting close window while walking past.,see the grass's fingernails.,see aerial closing screens.,see a barren and tanned bird.,gold1-orig,unl,unl,unl,unl,unl,We see two people side by side carving pumpkins.,We\nanetv_BCsfauy69xM,13621,A person is carving a pumpkin. We,see two people side by side carving pumpkins.,hands in protective scarves on a pumpkin.,whip croutons in a pot.,then see the cat's wings and the word emblem on it.,,gold0-orig,pos,unl,unl,pos,n/a,A person is carving a pumpkin.,We\nanetv_BCsfauy69xM,13624,We see five pumpkins on a couch and in the dark lit from the inside. We,see a closing title screen.,see a conference room with a lot of people in a room while a man is pointing.,see a man standing on a wall and talking to the camera and we see a website on the screen.,see people dancing inside a stage.,see a pile of small letters on black door.,gold1-reannot,pos,unl,unl,unl,unl,We see five pumpkins on a couch and in the dark lit from the inside.,We\nlsmdc1043_Vantage_Point-88905,6867,\"On a preview monitor, the gnn gallery crew watch footage of an assassination attempt on someone. Someone\",takes the bullets for someone.,jumps over and sits in the operating room.,looks inside a window as someone walks the cockpit.,attacks a chubby lad.,\"heads for the bridge, stopping as someone as fireworks.\",gold0-orig,pos,unl,unl,unl,unl,\"On a preview monitor, the gnn gallery crew watch footage of an assassination attempt on someone.\",Someone\nanetv_OqA83jGQtfg,4196,An introduction comes onto the screen for a video about fishing lures. Several men,show off the different lures they are using for ice fishing.,are then shown from different angles of horses a bit as well as a boy laughing to people.,fly through one after another until a man runs fishing and pours pigs into a bin.,are shown engaging in standing outfits.,,gold0-orig,pos,unl,unl,unl,n/a,An introduction comes onto the screen for a video about fishing lures.,Several men\nanetv_OqA83jGQtfg,805,The men are seen sitting over a hole fishing on the ice and holding up fish. The men,continue pulling fish out of the water presenting it to the camera and moving in slow motion.,finally get the fish into fish and carry him into the water.,drink many more shots of the men playing beer with one another.,pull the fish back out and begin hitting the ball back and fourth shooting at the camera.,continue to fire in the water and begin playing fish too.,gold1-orig,pos,unl,unl,pos,pos,The men are seen sitting over a hole fishing on the ice and holding up fish.,The men\nanetv_OqA83jGQtfg,804,Men are seen holding hooks up to the camera followed by a fish moving under water and a close up of a fishing hole. The men,are seen sitting over a hole fishing on the ice and holding up fish.,are then seen sitting on a trampoline in a large swimming pool while speaking to each other.,then swim to each other in various shots in the end while the camera panning back to the other man.,will speak to the camera that lead to several clips of people floating with kayaks along the water.,,gold0-orig,pos,unl,unl,pos,n/a,Men are seen holding hooks up to the camera followed by a fish moving under water and a close up of a fishing hole.,The men\nanetv_OqA83jGQtfg,4198,The action of the lures is shown underwater as several different fish go after the lures. The men,are also shown above the ice working their poles and catching several fish.,continue welding themselves in the air again.,are turning the vacuum to catch the frisbee as they move.,appear and run through the water.,,gold0-orig,pos,unl,unl,pos,n/a,The action of the lures is shown underwater as several different fish go after the lures.,The men\nanetv_OqA83jGQtfg,4199,The men are also shown above the ice working their poles and catching several fish. The video,ends with the closing credits and graphics shown on the screen.,ends and one scores a goal and they throw themselves onto a field.,continues with several shots of men moving up and down in the area of a pool.,ends with the closing captions shown on the screen.,,gold0-reannot,pos,unl,unl,pos,n/a,The men are also shown above the ice working their poles and catching several fish.,The video\nanetv_OqA83jGQtfg,4197,Several men show off the different lures they are using for ice fishing. The action of the lures,is shown underwater as several different fish go after the lures.,closes down the gap into the pole.,is repeated several times.,is surrounded by the cavalry.,is shown being played by various women attempting to perform several variations.,gold0-reannot,pos,unl,unl,unl,unl,Several men show off the different lures they are using for ice fishing.,The action of the lures\nanetv_kNAgK0nC9Ig,10740,People are seen walking on the beach that leads into a man surfing on the water. The man,moves along the ocean on a surfboard while people watch on the side.,runs around various flips and people in place and give shots to the camera.,puts down a ski and gives it a rub.,is shown performing arm gestures and begins bouncing up and down.,continues speaking as the camera captures various angles and he dives underneath the water and continues swimming.,gold0-orig,pos,unl,unl,pos,pos,People are seen walking on the beach that leads into a man surfing on the water.,The man\nanetv_kNAgK0nC9Ig,10741,The man moves along the ocean on a surfboard while people watch on the side. Several shots,are shown of the man riding waves while others watch from the side.,are shown of the diver falling spinning the river.,\"are shown of landscapes around buildings and leads to him in the water, grabbing fish and divers speaking to the camera.\",shows the man warming up with his hands.,are shown of people riding along the ocean as well as people riding the kayaks.,gold1-orig,pos,unl,unl,unl,pos,The man moves along the ocean on a surfboard while people watch on the side.,Several shots\nanetv_kNAgK0nC9Ig,12128,The video leads into several shots of people riding surf boards along the water. More clips,are shown of people surfing along the water and moving with the waves.,are shown of water surfing on a wave and waving to the camera.,are shown of people riding around on bikes.,are shown of people riding and riding along the water as well as surfing.,are shown of people moving back and fourth on the ocean.,gold0-orig,pos,unl,unl,unl,pos,The video leads into several shots of people riding surf boards along the water.,More clips\nanetv__s20ZN8WZbo,9674,A man stands behind a bar with several mixed drinks. He,pours ice into a glass and tops it with different liquors.,pours a drink on the glass to make lemons and pours it into a glass glass.,has a drink on it.,rubs the bowl in his hand and stirs on the lemonade in the glass.,,gold0-orig,pos,unl,pos,pos,n/a,A man stands behind a bar with several mixed drinks.,He\nanetv__s20ZN8WZbo,9675,He pours ice into a glass and tops it with different liquors. He then,adds a small straw.,attaches it to a plate and drains it on a salad.,compares it to the glass and adds.,uses a shaker to cuts the lemons and lemon in one.,grabs a handful of the syrup.,gold0-orig,pos,unl,unl,unl,pos,He pours ice into a glass and tops it with different liquors.,He then\nanetv_legHHtPK5fA,3689,They are throwing darts at targets. The people,converse as they try to hit their targets.,are standing on his hut hiding behind rocks.,avoided the bulls at the target.,are using paintball guns.,kick the ball against each other along the board.,gold0-orig,pos,unl,unl,unl,unl,They are throwing darts at targets.,The people\nanetv_legHHtPK5fA,3688,A group of men are standing in a row. They,are throwing darts at targets.,are playing scotch tape enclosed.,cheering and doing some scores by outside.,engage in a game using paintball gear.,,gold0-orig,pos,unl,unl,pos,n/a,A group of men are standing in a row.,They\nanetv_zwa44U585FE,5300,They are playing a game of croquette. They,\"hit the balls, trying to get them through the small loops.\",hit the ball back and forth against the batter.,hit the ball off of the court.,continue playing some cards as well as the crowd of people.,pick up the shoes and continue to play.,gold0-orig,pos,unl,unl,unl,pos,They are playing a game of croquette.,They\nanetv_zwa44U585FE,13075,The men walk a little on the grass and they each briefly hit different balls. The men,are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course.,play paintball with white chasing young themselves.,continue to play hop scotch while performing flips in a large gymnasium skating rings.,stand and walk to the edge of the ping pong platform.,continue to play the harmonica together as the girl explains the technique.,gold0-orig,pos,unl,unl,unl,unl,The men walk a little on the grass and they each briefly hit different balls.,The men\nanetv_zwa44U585FE,5299,A couple of men are shown in a backyard. They,are playing a game of croquette.,are several different fencing matches on the ground in various city locations.,are sitting on blankets and showing some blood stains.,begin to play a game of racquetball.,are engaged in a game of curling.,gold0-orig,pos,unl,unl,unl,unl,A couple of men are shown in a backyard.,They\nanetv_zwa44U585FE,13076,The men are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course. The men are now playing croquet in the large grassy area and they,\"'re taking turns hitting the croquet balls, smiling, and talking the whole time.\",are continuously hitting game of stilts.,are trying the deserted yard as they watch.,try hard to push the ball against a wall.,get way up to the corners.,gold0-reannot,pos,unl,unl,unl,pos,The men are back in the area where they first started talking and are pointing in areas that look like they're pointing out their course.,The men are now playing croquet in the large grassy area and they\nanetv_aKacWW7Mn2c,14336,A man walks up to the edge of a diving board. He,\"dives off into the water, flipping as he goes down.\",flips through a harness and catches some fish.,does several times several times.,picks up the pole and flips it along the beam.,runs to the side of the pool and stretches off to one side.,gold1-orig,pos,unl,unl,unl,pos,A man walks up to the edge of a diving board.,He\nanetv_aKacWW7Mn2c,4508,The swimmer dives into an Olympic pool from the platform. The swimmer,surfaces and swims over the side of the pool.,jumps on his knees and scores a dive into the pool below.,throws down into the water beneath the surface of a wave.,goes over the river to get the water and swims away across the pool.,jumps in the air to wave fans to the camera.,gold1-orig,pos,unl,unl,unl,pos,The swimmer dives into an Olympic pool from the platform.,The swimmer\nanetv_aKacWW7Mn2c,4507,A swimmer lifts his arms before and prepares for a dive on the platform. The swimmer,dives into an olympic pool from the platform.,gets up and hurries off the poop.,jumps off the bridge and runs backwards across the diving board.,does a high dive as he moves his body into the water.,\"jumps on the border, then dives off the board into a swimming pool.\",gold0-orig,pos,unl,unl,unl,unl,A swimmer lifts his arms before and prepares for a dive on the platform.,The swimmer\nanetv_aKacWW7Mn2c,14337,\"He dives off into the water, flipping as he goes down. He\",\"lands into the water, splashing everywhere as people clap.\",falls and falls out of the water.,\"jumps off the diving board, landing in the water.\",jumps several more times before falling down.,\"dashes through the murky, winding river.\",gold1-orig,pos,unl,pos,pos,pos,\"He dives off into the water, flipping as he goes down.\",He\nlsmdc1045_An_education-90239,10225,They climb the stands to a private suite. Someone,shakes hands with a man by the door.,strides down a gangplank with a young woman in front of the man.,climbs up his sleeve as he enters the chopper's glowing monitoring chambers.,looks in on the second desk with a furrowed brow and steps up against the wall.,,gold0-orig,pos,unl,unl,unl,n/a,They climb the stands to a private suite.,Someone\nlsmdc1045_An_education-90239,10226,Someone gives her coat to someone. Their contact,is holding court in a white dinner jacket.,bears splattered on the front of the truck.,shakes and she see a senator's face.,finds two twins grinning.,\"hangs below him, and he tensely rubs her shiny black cheeks.\",gold0-orig,pos,unl,pos,pos,pos,Someone gives her coat to someone.,Their contact\nanetv_YddPa1ujWuk,10950,The woman then begins cutting the news paper and place the box in the middle. The women,wraps up the box with the news paper and tapes it down on the sides.,puts the box onto a table and begins wrapping the box.,push the paper around the room while the woman sits next to a tree trunk and speaks to the camera.,talk to the camera while continuing to speak to one another.,,gold0-orig,pos,unl,unl,pos,n/a,The woman then begins cutting the news paper and place the box in the middle.,The women\nanetv_YddPa1ujWuk,10949,A woman is seen speaking to the camera while holding up a box and newspaper. The woman then,begins cutting the news paper and place the box in the middle.,begins cutting a little piece of paper with a throw object.,lays down some knitting shoes and places it up on ends around the man while continuing to look in the distance.,shows off making a file and a girl pours a cup of water onto it and sits down.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen speaking to the camera while holding up a box and newspaper.,The woman then\nlsmdc0043_Thelma_and_Luise-68408,6691,\"Someone passes him and, as she does, he honks. They look up and he\",is wildly pointing to his lap.,grins and gazes off sadly.,sees the speedo someone swinging on the knees.,\"wipes them open, dropping their playful one.\",meets someone's smile with the others in the same direction.,gold1-orig,unl,unl,unl,unl,unl,\"Someone passes him and, as she does, he honks.\",They look up and he\nlsmdc3038_ITS_COMPLICATED-17520,14315,As she places it in her shallow vegetable basket someone strolls into the garden. She,nods irritably to herself.,takes out her slip and marches up the steps.,\"scans the air, finds the skillet of softened pie and tilts it.\",\"returns his eyes at her, then pauses in a sudden frown.\",,gold0-orig,pos,unl,unl,unl,n/a,As she places it in her shallow vegetable basket someone strolls into the garden.,She\nlsmdc3038_ITS_COMPLICATED-17520,14314,She hunts around a five - foot plant then locates a tomato and sniffs it. As she places it in her shallow vegetable basket someone,strolls into the garden.,crouches and steps up on a trampoline.,takes a bite of peanuts.,places someone's head on the table.,,gold0-orig,pos,unl,unl,unl,n/a,She hunts around a five - foot plant then locates a tomato and sniffs it.,As she places it in her shallow vegetable basket someone\nlsmdc3038_ITS_COMPLICATED-17520,14313,\"Later, wearing a wide - brimmed hat she stands in one of the plots of her spacious garden. She\",hunts around a five - foot plant then locates a tomato and sniffs it.,slips off her peter kindly shirt.,turns her watch clock.,rides it in her hands.,steps a partially hidden door in the cool house and turns around.,gold1-orig,pos,unl,unl,unl,unl,\"Later, wearing a wide - brimmed hat she stands in one of the plots of her spacious garden.\",She\nlsmdc3038_ITS_COMPLICATED-17520,14311,He turns away and covers his face with one hand. Someone,squints at him doubtfully.,lifts his head to see he is clearly sleeping.,sighs and his shoulders heave.,gets up and goes to kiss him.,rests his head on someone's shoulder.,gold1-reannot,pos,unl,pos,pos,pos,He turns away and covers his face with one hand.,Someone\nanetv_nKPkHO9ajs8,15415,\"A boy is outside, running with a net. He\",hits a ball away from the goal.,hits the ball back and forth towards the other players.,is running in a game of animal masks.,pushes the soccer ball into his skin and gets it to propel him out.,\"throws some webs around the camera, then is stopped in the motion.\",gold1-orig,pos,unl,unl,unl,unl,\"A boy is outside, running with a net.\",He\nanetv_nKPkHO9ajs8,13454,He runs to a goal in the yard. He,pretends to shoot and score goals.,continues a bat on the wall.,is going to hit the pinata.,grabs a camera and slides its off the ground.,runs up and down and jumps in the field ball.,gold0-orig,pos,unl,unl,unl,unl,He runs to a goal in the yard.,He\nanetv_nKPkHO9ajs8,13452,A boy is playing in the yard. He,is holding a bat.,is watching a dvd set by talking to himself.,tears up hopscotch on the ground.,started to play a boy behind him.,is playing a new set of bagpipes.,gold0-reannot,pos,unl,unl,unl,pos,A boy is playing in the yard.,He\nanetv_PL1JmxPH7y4,2308,The man then begins moving up and down continuously. He,gets up and walks back to the camera.,continues playing the drums while continuing to play.,continues looking along the street while walking away.,continues raising his hands and ends by taking off his shirt.,continues flipping along the track while looking off into the distance.,gold1-orig,pos,unl,unl,unl,unl,The man then begins moving up and down continuously.,He\nanetv_PL1JmxPH7y4,2307,A person walks into frame and lays down on an exercise equipment. The man then,begins moving up and down continuously.,starts spinning around while using the object.,runs down a track with a pole and pointing to the pole.,moves around the machine and does in the end.,kneels and begins stretching down on the mat's feet.,gold0-orig,pos,unl,unl,unl,unl,A person walks into frame and lays down on an exercise equipment.,The man then\nanetv_PL1JmxPH7y4,8287,\"A man then comes and lays down on his back and starts to do crunches with the machine. After a short of amount of time, the man then\",gets up and grabs the camera and leaves.,bends over and begins to give the fists down before turning to a bend.,shaves his shin brace and lets it fall when he's done.,holds and leads the way out on the open deck and begins to move forward and forward.,lifts the weight over his head.,gold1-orig,pos,unl,unl,unl,pos,A man then comes and lays down on his back and starts to do crunches with the machine.,\"After a short of amount of time, the man then\"\nlsmdc3077_THE_VOW-35778,10418,\"As he steps away, someone beams after him. Now, someone\",\"strolls the patio, sipping a glass of red wine.\",rides off his training trainers.,packs a sorting handgun.,\"sleeps peacefully in her lap, her lips parted above her cheek.\",carries groceries out of the kitchen.,gold0-orig,pos,unl,unl,unl,unl,\"As he steps away, someone beams after him.\",\"Now, someone\"\nanetv_z-94IUxC4Xc,6282,Several shots of scenery are shown followed by a person performing a trick on a skateboard and others riding down a hill. Several shots,are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in.,are shown of people riding around on a platform while others watch on the side as well as falling down and looking around.,are shown of people performing capoeira moves and more shots are shown of people running around the clothing.,are then shown of the person riding around on the bikes as well as skaters.,,gold0-orig,pos,unl,unl,pos,n/a,Several shots of scenery are shown followed by a person performing a trick on a skateboard and others riding down a hill.,Several shots\nanetv_z-94IUxC4Xc,6283,Several shots are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in. One man falls in the end and his board,crashes along the side.,drops before the camera shows his movements following behind.,is shown again in his solo clip.,is shown with flying like tires.,falls off into the distance.,gold1-orig,pos,unl,unl,unl,unl,Several shots are shown of people riding down the street on skateboards and doing several tricks while the camera zooms in.,One man falls in the end and his board\nanetv_FNHoSA0hLgM,3743,They hit the ball back and forth against the wall. They,\"continue fighting over the ball, trying to beat each other in the game.\",are trying to break on the floor.,try to hit it but make sure it is not hit.,hops up in a circle and do several more springs while raising their arms.,,gold0-orig,pos,unl,unl,unl,n/a,They hit the ball back and forth against the wall.,They\nanetv_FNHoSA0hLgM,3742,An older boy and a younger one are on a racquetball court. They,hit the ball back and forth against the wall.,ripped the tennis ball from one cup in to hit the puck on the wall as well.,begin to play and serve the two fresh pins.,are trying to kick the ball back and forth.,,gold0-orig,pos,unl,pos,pos,n/a,An older boy and a younger one are on a racquetball court.,They\nanetv_6GYdu5G61g8,6523,\"People in two boats meet and start to throw water each other using the oars, then some rafters jump into the water. Persons\",jump from a balcony on the rocks to the water while other people continues rafting.,are in awe on high replays behind spectators.,\"dissolves in a group of people, only to keep a small canopy with people.\",prepare to keep boats from the water.,,gold1-orig,unl,unl,unl,unl,n/a,\"People in two boats meet and start to throw water each other using the oars, then some rafters jump into the water.\",Persons\nanetv_6GYdu5G61g8,6522,\"Then, people in a boat raft down the choppy waters of a river while paddling. People in two boats meet and start to throw water each other using the oars, then some rafters\",jump into the water.,get to the edge of the ocean in life - a in white suit.,stream into the rafters.,strain to pull the fish off.,are on top a helicopter flying.,gold0-reannot,pos,unl,unl,unl,unl,\"Then, people in a boat raft down the choppy waters of a river while paddling.\",\"People in two boats meet and start to throw water each other using the oars, then some rafters\"\nanetv_6GYdu5G61g8,6521,A group of people transport a boat on their heads. People,jumps backwards on the river and floats on their backs.,\"appear, to find someone.\",come onto the plane via the camera.,are moored on waiting by a river.,eat together in a small raft.,gold1-reannot,pos,unl,unl,pos,pos,A group of people transport a boat on their heads.,People\nlsmdc3073_THE_GUILT_TRIP-34793,838,Someone winces as she pauses to remove her jacket. She,sees him and whispers.,looks down at his hands.,accelerates the crane right off the van.,looks at a nearby coin and share a smile.,brushes past little people out of the room.,gold0-orig,pos,unl,unl,unl,unl,Someone winces as she pauses to remove her jacket.,She\nlsmdc3073_THE_GUILT_TRIP-34793,834,Someone applauds from the nearby bar. Someone,\"holds up her hands, overwhelmed.\",darts behind a table.,\"tiptoes into a bathroom, as sunlight works on someone's hair.\",looks at the teen.,\"smiles, then returns his drunken gaze to the plates and shakes her head.\",gold1-orig,pos,unl,unl,unl,pos,Someone applauds from the nearby bar.,Someone\nlsmdc3073_THE_GUILT_TRIP-34793,837,\"There's around a quarter of her steak remaining, as she stuffs a forkful of potato and a piece of bread into her mouth and struggles to chew. Someone\",winces as she pauses to remove her jacket.,\"grabs one, and rides it to the crate to the back inside.\",pan at the other man is too chemical; his blonde eyes watches nearby.,is washing down eggs and pleasure as someone searches her belongings.,holds a rifle over her shoulder.,gold1-orig,pos,unl,unl,unl,unl,\"There's around a quarter of her steak remaining, as she stuffs a forkful of potato and a piece of bread into her mouth and struggles to chew.\",Someone\nlsmdc3073_THE_GUILT_TRIP-34793,833,He hands her an enormous charred steak. Someone,applauds from the nearby bar.,drops the dog and places it with the card.,moves out a flaming gps graphic.,presents the suit scrunches past the waist.,\"freezes, dumping the lock at the dragon.\",gold0-orig,pos,unl,unl,unl,unl,He hands her an enormous charred steak.,Someone\nlsmdc3073_THE_GUILT_TRIP-34793,840,\"He blocks someone's view, who strains to look around him. Someone\",lulls back in her chair.,drops his hat on the peg.,passes someone in the police.,blinks at the motionless survivor.,,gold0-orig,pos,unl,unl,unl,n/a,\"He blocks someone's view, who strains to look around him.\",Someone\nlsmdc3073_THE_GUILT_TRIP-34793,836,Someone readies a napkin and picks the greens off her plate. She,\"holds up a morsel on her fork, then pops it into her mouth.\",tosses the filling tin across frosting grass.,takes both one of her dad's pants.,looks around; someone runs out into the hall and hurries out of the bathroom.,watches someone roll over before arriving at it.,gold0-orig,pos,unl,unl,unl,unl,Someone readies a napkin and picks the greens off her plate.,She\nlsmdc3073_THE_GUILT_TRIP-34793,839,She sees him and whispers. He,\"blocks someone's view, who strains to look around him.\",\"pats himself on the shoulder, then runs up to stands.\",watches her nuzzle her husband.,is back in the kitchen.,bashes him under the back.,gold0-reannot,pos,unl,unl,unl,unl,She sees him and whispers.,He\nanetv_MkKUQ4MMHd8,5304,People are riding camels on the sand. People,are walking next to the camels leading them.,are riding in tubes down the mountain.,is sitting on the street in a store carrying a bunch of water.,are on horses on an unpaved field.,is riding the camels.,gold1-orig,pos,unl,pos,pos,pos,People are riding camels on the sand.,People\nanetv_MkKUQ4MMHd8,5305,People are walking next to the camels leading them. A building,is shown in the background.,is shown riding the camels.,is then shown for several clip.,with a rifle is leading them.,is then seen next to the curb.,gold0-orig,pos,unl,unl,unl,unl,People are walking next to the camels leading them.,A building\nanetv_MkKUQ4MMHd8,13431,People are riding camels in a desert area. Two individuals that are leading the camels,give each other high fives.,\"are in different places, people are leading camels in their feet and also.\",do some push camels.,gets up in the air.,are playing the bagpipes.,gold0-orig,pos,unl,unl,unl,unl,People are riding camels in a desert area.,Two individuals that are leading the camels\nanetv_MkKUQ4MMHd8,13432,Two individuals that are leading the camels give each other high fives. A man and woman riding different camels,give each other high fives.,form a small ridge.,are standing in the middle of a beach.,goes down a slide and a waterfall into the river.,stands up in front of a crowd.,gold1-orig,pos,unl,unl,pos,pos,Two individuals that are leading the camels give each other high fives.,A man and woman riding different camels\nanetv_26qGsfI9tZ8,731,\"A toddler climbs the steps of a playground. Then, the boy\",slides down until to reach the ground.,flips and takes the slide to the slide.,\"counts on the child, buries his head in the water and jumps down.\",hobbles unto the swings using a blanket.,dives into the water.,gold0-reannot,pos,unl,unl,unl,unl,A toddler climbs the steps of a playground.,\"Then, the boy\"\nanetv_QrQN-Hm5xew,3180,A man is wearing a large gold necklace. Several people,are shown inside a warehouse.,are standing in the garden behind them.,are standing behind others watching.,are on a beach playing football.,\"get back on, going down with sails.\",gold1-orig,pos,unl,unl,unl,unl,A man is wearing a large gold necklace.,Several people\nanetv_QrQN-Hm5xew,3181,Several people are shown inside a warehouse. They,begin skateboarding up and down the ramps.,weld stacked together in a locations.,kisses begin to get out of a car.,are playing a game of volleyball.,are talking about two blades.,gold0-orig,pos,unl,unl,unl,pos,Several people are shown inside a warehouse.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8766,\"Someone stands in front of someone. Pushing someone aside, someone\",knocks the man down and threatens him with his wand.,turns her skiing with a big smile.,takes a big bite of the sandwich he is holding.,shrugs him to a wall.,draws up a torch and holds the palm upwards.,gold0-orig,pos,unl,unl,unl,unl,Someone stands in front of someone.,\"Pushing someone aside, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8743,They hide behind a huge pile of giant orange pumpkins. A crow,lands beside them as they anxiously watch the cottage.,atop a crow's nest slowly approaches.,'s nest breaks and the commander flies into the air.,watches from the side.,flies up to the left of them.,gold0-orig,pos,unl,unl,pos,pos,They hide behind a huge pile of giant orange pumpkins.,A crow\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8745,Someone spins round and peers into the forest. They,run as fast as they can away from the cottage and up the grassy slope.,leap into the sphere as they hurtle over the rising water.,stops at a roof with a intro fish.,charge through the chamber with his sword and miss it.,gives him a pleading look.,gold0-orig,pos,unl,unl,pos,pos,Someone spins round and peers into the forest.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8755,\"Still holding Scabbers, someone is dragged under the roots. Someone\",makes a grab for him.,\"rolls back someone, lying on top of someone.\",places the palms on the palm of the automaton's hand.,\"smacks him in the face, then drops it.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Still holding Scabbers, someone is dragged under the roots.\",Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8753,Someone catches Scabbers and slumps down near the Whomping Willow with its twisted trunk. Someone,\"points, his hand shaking.\",grabs her leg off the railings.,rides off along the wide trail.,runs alongside the boulder.,,gold0-orig,pos,unl,pos,pos,n/a,Someone catches Scabbers and slumps down near the Whomping Willow with its twisted trunk.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8767,\"Pushing someone aside, someone knocks the man down and threatens him with his wand. Someone's wand\",flies out of his hand.,catches someone's hand.,lights the creature up and backs him as it scurries up.,snaps out of his grasp.,falls out of her grasp.,gold1-orig,pos,unl,unl,pos,pos,\"Pushing someone aside, someone knocks the man down and threatens him with his wand.\",Someone's wand\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8756,\"Someone jumps over a swinging branch, but the next one lifts her off the ground. Someone\",rolls over as the tree lashes out.,kicks herself down onto the runway and falls over a fake brick wall.,launches the rope onto her to reach the end of her blanketed hand.,clasps his back on his elbows.,lies still on the beach.,gold0-orig,pos,unl,unl,unl,unl,\"Someone jumps over a swinging branch, but the next one lifts her off the ground.\",Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8763,They hurtle around until someone lets go and someone falls down the hole under the tree roots. Someone,lands on top of him.,\"rotates in rage, extinguishing them.\",is managed to fall into a chain chain.,scales the winged block down the branches.,,gold0-orig,pos,unl,unl,unl,n/a,They hurtle around until someone lets go and someone falls down the hole under the tree roots.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8765,Huge paw prints on the dusty floor lead across the room to a wild - eyed man with matted hair and a ragged convict's uniform. Someone,stands in front of someone.,shakes his head.,leans his head against a chair while an older men steps out and shuts the door behind him.,walks up to his laptop.,room is nearby darkness.,gold1-orig,pos,unl,unl,unl,unl,Huge paw prints on the dusty floor lead across the room to a wild - eyed man with matted hair and a ragged convict's uniform.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8749,People come out of the cottage with the Executioner. He,\"walks across the garden, carrying his sharp axe over his shoulder.\",\"pulls himself up and goes to the greenhouse, knocking the camera upright.\",rides alongside the gran torino.,is making sure to tuck the rope together.,steams toward his taxicab.,gold0-orig,pos,unl,unl,unl,unl,People come out of the cottage with the Executioner.,He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8757,\"He sprints off into flailing branches as someone is whirled above his head. Scratched by the sharp twigs, someone\",is twisted this way and that as she clings to the branch.,tosses a package to the ground before him.,falls to his dying family.,picks his arm over a tree branch.,,gold1-orig,pos,unl,unl,unl,n/a,He sprints off into flailing branches as someone is whirled above his head.,\"Scratched by the sharp twigs, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8751,They watch horrified as the Executioner raises his axe. Someone,\"hides her face on someone's shoulder, putting her arms around his neck.\",holds the sword out.,holds a ball in one hand and throws it back.,removes a monster from behind him and knocks him into a fireplace.,might raise a finger in a discreet gesture.,gold0-orig,pos,unl,unl,unl,unl,They watch horrified as the Executioner raises his axe.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8758,\"Scratched by the sharp twigs, someone is twisted this way and that as she clings to the branch. She\",is turned upside down.,\"drives off, trying to follow her whipping out her wand.\",\"throws the car pitiful of the house, as it goes backwards.\",drops the last bits to the ground.,claps her hands in the air like a stick.,gold0-orig,pos,unl,unl,unl,pos,\"Scratched by the sharp twigs, someone is twisted this way and that as she clings to the branch.\",She\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8742,People escape from the cottage and run down the garden path. They,hide behind a huge pile of giant orange pumpkins.,see someone's attache case.,watch someone fall as three children come and lean.,is lying on the floor as the handsome guy steps from the front of the room.,move out of the shadows.,gold0-orig,pos,unl,unl,unl,pos,People escape from the cottage and run down the garden path.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8760,\"Someone finds his glasses and puts them on to see someone flying towards him. Desperately, she\",grabs hold of his t - shirt.,turns for someone's sedan.,lets her head drop into the water around him.,launches her gun through the air and gets thrown at the ground.,walks over to him.,gold0-orig,pos,unl,unl,pos,pos,Someone finds his glasses and puts them on to see someone flying towards him.,\"Desperately, she\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8750,\"He walks across the garden, carrying his sharp axe over his shoulder. They\",watch horrified as the executioner raises his axe.,pauses on the plain as the train follows by.,sit on a small couch.,smile and make sharp pranam in prayer.,,gold0-orig,pos,unl,unl,unl,n/a,\"He walks across the garden, carrying his sharp axe over his shoulder.\",They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8764,People climb up through a trapdoor under bare floorboards. They,go up a rickety staircase and along a dingy landing.,lie down and clean their hands that has been on to carpet.,private fish supplies have been hanging next to tv off of hardwood floors.,cover them into huge rocks similar to a metal ladder.,pull the fish underneath the stemmed wets.,gold0-orig,pos,unl,unl,unl,unl,People climb up through a trapdoor under bare floorboards.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8744,A crow lands beside them as they anxiously watch the cottage. Someone,spins round and peers into the forest.,is hauled as he tackles the chunky caretaker.,sticks his cloak in flames.,must have been left on the edge below the bridge at center of darkness.,slips his gun into his waistband.,gold0-orig,pos,unl,unl,unl,unl,A crow lands beside them as they anxiously watch the cottage.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8746,\"Someone glances back at the hippogriff still chained to a post in the pumpkin patch, then he follows his friends. Halfway up the hill, they\",stop and look back towards the cottage.,kiss until the top of someone's bed lies on the grass.,swarm around to the base of the tree.,\"find a row of spiders climbing into the heavyset enclosure, holding a large enormous book in the fire.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone glances back at the hippogriff still chained to a post in the pumpkin patch, then he follows his friends.\",\"Halfway up the hill, they\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8769,Someone helps someone to his feet. The children,\"stare, horrified, as someone embraces him.\",return to his feet.,step out of someone's kitchen.,hoist up his rear.,\"walk off, then fall onto the balcony.\",gold0-reannot,pos,unl,unl,unl,unl,Someone helps someone to his feet.,The children\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8747,\"Halfway up the hill, they stop and look back towards the cottage. Smoke\",rises from the stone chimney.,\"looks over at the glowering clouds of mumbai, and taps on the window.\",\", someone sits clutching a book on a cardboard tube, gazing down at us.\",fills the city from afar.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Halfway up the hill, they stop and look back towards the cottage.\",Smoke\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8768,Someone's wand flies out of his hand. Someone,helps someone to his feet.,surfaces and frees the watermelon.,runs along the bare forest path towards a mass of ancient structures at water.,honks his car horn as the destroyer reaches someone either side.,hauls himself against a window and wakes.,gold0-reannot,pos,unl,unl,unl,unl,Someone's wand flies out of his hand.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8761,\"Desperately, she grabs hold of his T - shirt. He\",is hauled into the air.,aims at the backseat.,sends someone's blood hitting the ground.,takes him down and kisses them desperately.,dives into the air.,gold1-reannot,pos,unl,unl,unl,pos,\"Desperately, she grabs hold of his T - shirt.\",He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9807,8759,She is turned upside down. Someone,finds his glasses and puts them on to see someone flying towards him.,'s at the engine underneath.,stand at the top.,laughs as another man takes his ad and gives her the money.,comes down off the veranda where the camera was sucking it out.,gold1-reannot,unl,unl,unl,unl,unl,She is turned upside down.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83978,8579,Someone turns and walks from the room. Someone's composure deserts her and she,\"takes long, deep breath to try and calm herself.\",\"puts the paper back on it, which gradually vanishes in the end.\",gets more scrunched on her body as she makes her way toward the bar.,covers both of her breasts.,heads off - - facing her father.,gold0-orig,pos,unl,unl,pos,pos,Someone turns and walks from the room.,Someone's composure deserts her and she\nanetv_H306mUUJ5BE,507,A man is seen speaking to the camera while sitting in a chair and putting his arms up every now and then. He then,plays a harmonica moving his hands around while pausing to speak to the camera and ends up speaking and pointing.,begins doing several twists on the bike while speaking to the camera.,points to the camera and begins doing sit ups and several others stand in the background.,takes a small sandwich and begins putting the box on top and moving it around the table then rubbing his brow and speaking again.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera while sitting in a chair and putting his arms up every now and then.,He then\nlsmdc0038_Psycho-67416,5239,\"Suddenly he rises, starts quickly out of the room, tries to switch off the lamp as he goes and in so doing succeeds only in knocking the bird off the shade. Then he\",\"puts out the lamp, goes out, crosses the darkened office and goes outside.\",grabs another letter so that someone can be easily placed it on the lips of a settee.,takes an apple from his briefcase and opens it.,\"blow back the canoe he just missed, high enough to find his frustration, listening, and even not - -.\",\"turns the music around in celebration, then throws over the key and dashes off into the living room.\",gold0-orig,pos,unl,unl,unl,unl,\"Suddenly he rises, starts quickly out of the room, tries to switch off the lamp as he goes and in so doing succeeds only in knocking the bird off the shade.\",Then he\nlsmdc0038_Psycho-67416,5241,\"Someone comes off the porch, walks to the path and directly up to the house, opens the door and goes in. Someone\",\"goes up, pauses one moment outside his mother's door, then opens it and goes in, leaving the door open.\",walks across the park with a new one.,\"is still in as usual, though we've not heard this before.\",is standing a red haired young baby and strapped to bed.,makes a love ride.,gold0-orig,pos,unl,unl,unl,unl,\"Someone comes off the porch, walks to the path and directly up to the house, opens the door and goes in.\",Someone\nlsmdc0038_Psycho-67416,5240,\"Then he puts out the lamp, goes out, crosses the darkened office and goes outside. Someone\",\"comes off the porch, walks to the path and directly up to the house, opens the door and goes in.\",wipes out the sign.,\"halts at the top of the stairs and goes through the door of the archives, followed by the police's office window.\",\", disgust, is dragged out of the room.\",turns toward the apartment.,gold1-orig,pos,unl,unl,unl,pos,\"Then he puts out the lamp, goes out, crosses the darkened office and goes outside.\",Someone\nlsmdc3071_THE_DESCENDANTS-5360,6837,\"Surrounding by dead floating leaves, the teen looks away. She\",sinks down beneath the water and holds her head in her hands.,blows out the hookah.,leans into the train and plucks a section of rock from his.,rests her head on someone's shoulder and walks away.,,gold1-orig,pos,unl,unl,unl,n/a,\"Surrounding by dead floating leaves, the teen looks away.\",She\nlsmdc3071_THE_DESCENDANTS-5360,6842,\"Her father approaches with a compassionate frown. Wheeling around, someone\",finds him with his arms spread open to her.,holds the line to her chest.,flips back flips and spins in circles.,stares bitterly after her father.,glances across the room in someone's direction.,gold1-orig,pos,unl,unl,pos,pos,Her father approaches with a compassionate frown.,\"Wheeling around, someone\"\nlsmdc3071_THE_DESCENDANTS-5360,6841,She climbs out and buries her face in a colorful towel. Her father,approaches with a compassionate frown.,\"reaches for her, then carries it to a laundry tin.\",awkwardly bites her lip.,closes a door while his daughter look beside him.,,gold0-orig,pos,unl,unl,pos,n/a,She climbs out and buries her face in a colorful towel.,Her father\nlsmdc3071_THE_DESCENDANTS-5360,6836,\"She looks away, stricken. Blinking back tears, someone\",meets his imploring gaze.,presses her cheek shut and smiles.,watches as someone from the light with a candle illuminating his face.,walks further across.,crawls onto a sofa.,gold1-orig,pos,unl,unl,unl,unl,\"She looks away, stricken.\",\"Blinking back tears, someone\"\nlsmdc3071_THE_DESCENDANTS-5360,6838,She sinks down beneath the water and holds her head in her hands. Large air bubbles,escape her gaping mouth as her body shakes with sobs.,pop out of her mouth and then see his tubes in his hand.,swims with them as she pours them in the water.,drift over a railing at one end of the hall.,form a small bar within herself.,gold0-orig,pos,unl,unl,unl,unl,She sinks down beneath the water and holds her head in her hands.,Large air bubbles\nlsmdc3071_THE_DESCENDANTS-5360,6840,Someone walks alongside her as her head emerges. She,climbs out and buries her face in a colorful towel.,takes out a bag and turns it off.,\"puts someone to a tube, then shoots from the top of the tank.\",hops off the couch to be swept up.,,gold1-orig,pos,unl,unl,unl,n/a,Someone walks alongside her as her head emerges.,She\nlsmdc3071_THE_DESCENDANTS-5360,6839,Large air bubbles escape her gaping mouth as her body shakes with sobs. Someone,walks alongside her as her head emerges.,twirl her hips up in sync.,grabs her bags out and pulls way to the kitchen door.,swinging and linen covers up from over the wall with her eyes shut by her husband.,glimpse an instructional video collection.,gold1-reannot,pos,unl,unl,unl,unl,Large air bubbles escape her gaping mouth as her body shakes with sobs.,Someone\nlsmdc3064_SPARKLE_2012-4340,13164,Someone gets to her feet. Someone,pushes her out of the room.,\"looks up, tears brimming in her eyes.\",knocks on the door.,looks her in the eye.,,gold1-orig,pos,pos,pos,pos,n/a,Someone gets to her feet.,Someone\nlsmdc3064_SPARKLE_2012-4340,13172,\"Someone rests her head across her arm, as she lies face down on her bed. Someone\",\"comes and lies beside her sister, looking into her face.\",steps through the room.,reaches in and pulls free.,\"stands, wet from his local life.\",blurry vision shows her sleeping on her bed as it shows the girl lies bedside.,gold0-orig,pos,unl,unl,unl,pos,\"Someone rests her head across her arm, as she lies face down on her bed.\",Someone\nlsmdc3064_SPARKLE_2012-4340,13173,\"Someone comes and lies beside her sister, looking into her face. She\",wipes a tear running down the bridge of someone's nose.,turns to the portrait.,\"removes her cigarette, glances back at the empty mirror, and gives someone a confused look.\",\"pushes her arms in his neck, then spreads her arms over her head.\",\"sees everything, goes to his desk, pushes open the window door, pushes the door open and disappears on the stairs.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone comes and lies beside her sister, looking into her face.\",She\nlsmdc3064_SPARKLE_2012-4340,13169,\"Outside, two uniformed men carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights. A heavy - set man with glasses\",leads someone from the house in a long black coat.,\"walks beside the cracked bumper, flanked by piles of singed identical metal bodyguards.\",leans forward before his suit shooting the cameras.,approaches him as he rolls off the hood and climbs on top of a high table.,approaches the first boy who wears him and cleaning supplies at his collar.,gold0-orig,pos,unl,unl,unl,unl,\"Outside, two uniformed men carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights.\",A heavy - set man with glasses\nlsmdc3064_SPARKLE_2012-4340,13168,\"Now at night, she smokes on the banquette. Outside, two uniformed men\",\"carry a body - bag from the house, past policemen and parked patrol cars with flashing blue lights.\",\"stroll across the street, holding 2 - finger phones.\",enter a apartment through the door in an intercom.,stand at a table polishing her chin with wet hair and a t - shirt.,break into a building.,gold1-orig,pos,unl,unl,unl,pos,\"Now at night, she smokes on the banquette.\",\"Outside, two uniformed men\"\nlsmdc3064_SPARKLE_2012-4340,13170,A heavy - set man with glasses leads someone from the house in a long black coat. She,glances at the body - bag as he guides her into the backseat of a patrol car.,\"is drying her hair, he is still brushing her long, thin hair.\",presses his belt up.,leans out of the car and peers out.,,gold0-orig,pos,unl,unl,unl,n/a,A heavy - set man with glasses leads someone from the house in a long black coat.,She\nlsmdc3064_SPARKLE_2012-4340,13171,She glances at the body - bag as he guides her into the backseat of a patrol car. Someone,\"rests her head across her arm, as she lies face down on her bed.\",picks up an anti afro.,has a small half - opened crate beside her.,wearily clasps his natural pocket and stabs the ground with a hypodermic.,,gold1-reannot,pos,unl,unl,unl,n/a,She glances at the body - bag as he guides her into the backseat of a patrol car.,Someone\nlsmdc3064_SPARKLE_2012-4340,13166,She caresses his lifeless face. We,fade to a black and white snapshot of someone she holds in her hands.,gives him a passionately kiss from the cheek.,presses his lips in a tight line then hurries over.,kiss each other on the cheek.,\", someone looks up to the bed.\",gold0-reannot,pos,unl,unl,unl,unl,She caresses his lifeless face.,We\nanetv_Ou24uqaFRPg,14483,The man carefully touches the paint brush to an old table coloring portions of the table that have been damaged. A different man in an apron and face mask,sands an old table.,looks up and washes his face.,fills the fire and gets in the chair.,lays on the ground and picks up a wheelbarrow.,is welding his plaid shoe.,gold1-orig,pos,unl,unl,unl,unl,The man carefully touches the paint brush to an old table coloring portions of the table that have been damaged.,A different man in an apron and face mask\nanetv_Ou24uqaFRPg,14485,The man then puts polish on a rag and polishes the table. The man,polishes a different old table.,dabs the spoon in the paint.,cuts and cuts the liquid as well as the man's shirt.,shows another strip of shoe polish and put it in front of him.,puts on his cloth and drains a shoe.,gold0-orig,pos,unl,unl,unl,unl,The man then puts polish on a rag and polishes the table.,The man\nanetv_Ou24uqaFRPg,14482,The man mixes two of the different colored substances with a paint brush. The man carefully,touches the paint brush to an old table coloring portions of the table that have been damaged.,applies an excess wax over an wall and holds it up and back to his smiling.,washes it all across the room.,shaves the excess excess fingernail on the table.,rubs the wax on his face.,gold0-orig,pos,unl,unl,unl,unl,The man mixes two of the different colored substances with a paint brush.,The man carefully\nanetv_Ou24uqaFRPg,14484,A different man in an apron and face mask sands an old table. The man then,puts polish on a rag and polishes the table.,turns to place the purple cloth on the wall.,stops the car then circles it up.,leaves and proceed while the tattoo while a man monitor walks in and out of the frame.,begins the climber paper neatly over the hill of grass.,gold0-reannot,pos,unl,unl,unl,unl,A different man in an apron and face mask sands an old table.,The man then\nanetv_P4Z4sQNQtJM,9989,A woman is standing outdoors in a pink martial arts outfit. She,\"moves slowly, showing various martial arts moves.\",is standing with her hands up while trying to take her legs from getting into the bathtub.,cuts up to her camera.,retreats onto the dance with a baton.,is using both cane batons talking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman is standing outdoors in a pink martial arts outfit.,She\nanetv_P4Z4sQNQtJM,9990,\"She moves slowly, showing various martial arts moves. She\",continues moving slowly as the names of the moves appear onscreen.,explains how to hold several different areas of propped wood onto a wood bar.,smooths off the woman's washed nails.,steps back across the aisle.,blinks and turns towards the camera again.,gold0-orig,pos,unl,unl,unl,pos,\"She moves slowly, showing various martial arts moves.\",She\nlsmdc1060_Yes_man-99492,6444,\"Someone catches her eye, smiles and waves. Someone\",points around the room and gives someone a big thumbs - up.,\"rolls her nightie, silky - - like hers.\",sits alone with someone in the vegetable booth.,gulps him back then returns to work.,stares straight ahead with a hand folded.,gold1-orig,pos,unl,unl,unl,pos,\"Someone catches her eye, smiles and waves.\",Someone\nlsmdc1060_Yes_man-99492,6445,Someone points around the room and gives someone a big thumbs - up. They,share a fond smile.,\", they're at all the cash in the safe, trying to bite them.\",\"commences her way back at night, till one time,.\",share a smile as he grabs a pen to put sand in his pocket.,\"finish playing, head for the bar while cradling her fingertip in his hand.\",gold0-orig,pos,unl,unl,unl,pos,Someone points around the room and gives someone a big thumbs - up.,They\nlsmdc1060_Yes_man-99492,6442,\"With his hand on someone's shoulder, someone dances around as they walk off. Someone\",'s with a group of friends.,\"looks like a nightclub in the daytime, on the beach.\",takes a turn and pulls a large candy from his pants.,carries someone on to his hand.,\"regards someone with a bright smile, then cups her t - face.\",gold1-orig,pos,unl,unl,unl,unl,\"With his hand on someone's shoulder, someone dances around as they walk off.\",Someone\nlsmdc1060_Yes_man-99492,6449,She opens then closes her phone. A woman,'s looking at the photo of someone sprawled on the ground.,puts her ear in to a test.,opens a door and opens it.,enters her iv section.,tastes someone's addresses.,gold1-orig,unl,unl,unl,unl,unl,She opens then closes her phone.,A woman\nlsmdc1060_Yes_man-99492,6443,Someone's with a group of friends. Someone,\"catches her eye, smiles and waves.\",family crowd lies side - by - side.,stares down at someone.,and someone trade a look.,\", an asian model, on tv with pop looks.\",gold0-orig,pos,unl,pos,pos,pos,Someone's with a group of friends.,Someone\nlsmdc1060_Yes_man-99492,6446,\"They share a fond smile. Sitting alone at a table, someone\",makes a phone call.,stacks pages in a book.,waits for another box to return.,leans into the fountain.,stares down at the comic.,gold1-reannot,pos,unl,unl,pos,pos,They share a fond smile.,\"Sitting alone at a table, someone\"\nlsmdc1060_Yes_man-99492,6450,\"Someone smiles tightly, and the woman raises her eyebrows. Someone\",sits next to someone.,\"in a wedding dress, she rests her head on someone's shoulder.\",sits down and stares ahead.,looks toward his office.,sulks away and touches his chest.,gold1-reannot,pos,unl,pos,pos,pos,\"Someone smiles tightly, and the woman raises her eyebrows.\",Someone\nanetv_yUSo_xjyGhM,9621,One of the boys has no hands. He,is washing the dishes.,washes his shoe thoroughly.,moves drink from the boy's hand.,\"walks toward the front door, carrying someone behind him.\",,gold1-reannot,unl,unl,unl,unl,n/a,One of the boys has no hands.,He\nlsmdc3013_BURLESQUE-5138,13610,Someone lies in bed with a camera as someone pulls a black stocking over her knee. She,pulls the stocking back down her leg.,straddles someone's suit.,climbs into the backseat.,\"peers up at us and looks out, blackness.\",,gold1-reannot,pos,unl,unl,pos,n/a,Someone lies in bed with a camera as someone pulls a black stocking over her knee.,She\nanetv_RYyGvn4MOr0,11097,\"A little girl follows a boy in a yellow bumper car. Then, the boy and the girl\",hit other bumper cars.,skateboard down a couple of steps.,kick up the big jump.,removes the gloves and enter the corner offices in the quarry.,go crush monkey or skip a hopscotch.,gold0-orig,pos,unl,unl,unl,unl,A little girl follows a boy in a yellow bumper car.,\"Then, the boy and the girl\"\nanetv_RYyGvn4MOr0,11096,People drive bumper cars in a carnival. A little girl,follows a boy in a yellow bumper car.,walks onto a street and passes a man before a row of houses.,leaps on the front of a parked van while people go.,falls onto the sand.,,gold0-orig,pos,unl,unl,unl,n/a,People drive bumper cars in a carnival.,A little girl\nanetv_owLv-_CPNJI,15426,\"A man walked towards the folded back, unfolded the handlebar, seat and wheels and tightening the screw. He\",folded back the bike by unscrewing them and folded them.,grabs the phone and starts to make a u wheel turn down the street without using it.,demonstrates and demonstrates how hr hip is used in the barber.,talks the other moves in the graph for words to prepare.,finishes after he last carried the ladder.,gold1-orig,pos,unl,unl,unl,unl,\"A man walked towards the folded back, unfolded the handlebar, seat and wheels and tightening the screw.\",He\nanetv_owLv-_CPNJI,548,A folded up exercise bike is shown in a living room. A man,\"unfolds the bike, putting it into place.\",vacuums the marching floor the sink.,steps into an exercise bike.,demonstrates weightlifting and weightlifting.,is working on an escalator.,gold1-orig,pos,unl,unl,unl,unl,A folded up exercise bike is shown in a living room.,A man\nanetv_owLv-_CPNJI,549,\"A man unfolds the bike, putting it into place. He\",shows how it can fold and unfold.,sets the check of the dealer and gives it a vicious job.,\"opens it, and brings out other supplies.\",comes out on an ironing board and begins ironing.,cuts the ribbon off a shoe then ties it up.,gold0-orig,pos,unl,unl,unl,unl,\"A man unfolds the bike, putting it into place.\",He\nlsmdc1060_Yes_man-99320,18649,Someone picks up a basket that someone's food was in. Someone,stands to kiss someone.,\"turns the stick around to reveal a human hand, then shrugs.\",is gathered in the double - paneled office.,jumps to her feet and someone eyes her lovingly.,is someone climbing through a set of double doors.,gold0-orig,pos,unl,unl,pos,pos,Someone picks up a basket that someone's food was in.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16647,\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he gives a contented smile. Next morning, people\",are late for class.,stand alone at cafe dinner tables.,have sex on a sofa.,are hurrying through the foyer.,are asleep in bed.,gold1-orig,pos,unl,unl,pos,pos,\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he gives a contented smile.\",\"Next morning, people\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16644,All the boys are fast asleep except for someone. He,is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin.,cleans the convenience store nearby.,\"stands at a doorway into a different wall, to make them more sophisticated.\",\"watches the battlefield, which has been holstered in his arms.\",motions himself to be taking turns on anything.,gold0-orig,pos,unl,unl,unl,unl,All the boys are fast asleep except for someone.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16645,\"He is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin. Sitting beside him, his pet snowy owl\",\"turns its head as he gently strokes its soft, white feathers.\",rolls out and finds him in the water boiler room.,stands astride a perch and waves.,holds a toy toy lion by the window and someone lets a loose woman come through.,is dead.,gold0-orig,pos,unl,unl,unl,pos,He is sitting in his pajamas on the wide - stone sill gazing out of the window with his knees tucked up under his chin.,\"Sitting beside him, his pet snowy owl\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16650,It looks up as they open the classroom door. Someone,looks at them disapprovingly as they hurry into the room.,\", still in the kitchen, aims at someone, who laughs against the tv.\",carries the four vehicles inside.,\"strides toward them, at someone's ear, as if in a trance.\",\"steps off a ledge, heads back to the door as she enters.\",gold0-orig,pos,unl,unl,unl,pos,It looks up as they open the classroom door.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16649,A tabby cat is sitting on the teacher's desk. It,looks up as they open the classroom door.,'s got beaten up by a pink cat.,\"goes and looks up at him warily, then rushes to her table to get the handcuff key to the floor.\",\"yanks, and pulls down.\",rubs the cat's side and slides it onto the cat.,gold0-orig,pos,unl,unl,unl,unl,A tabby cat is sitting on the teacher's desk.,It\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16648,\"Next morning, people are late for class. A tabby cat\",is sitting on the teacher's desk.,spots a tree stacked as it slides into place.,slithers around the corner of the path.,flies through the ceiling.,chases someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Next morning, people are late for class.\",A tabby cat\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16651,Someone looks at them disapprovingly as they hurry into the room. The cat,leaps off of the table and turns into someone.,\"slaps the guy at a table, and leaves.\",gets unsteadily in the car as someone opens the door.,lies on the bed.,sits at someone's desk.,gold0-reannot,pos,unl,unl,pos,pos,Someone looks at them disapprovingly as they hurry into the room.,The cat\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95756,16646,\"Sitting beside him, his pet snowy owl turns its head as he gently strokes its soft, white feathers. As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he\",gives a contented smile.,falls into the floor.,finds someone lying in the pig's lap.,stares at the crowd from the top of the high rim.,reaches a gold cake and places it on the back of the stone.,gold0-reannot,pos,unl,unl,unl,unl,\"Sitting beside him, his pet snowy owl turns its head as he gently strokes its soft, white feathers.\",\"As someone looks out through the diamond shaped window panes across the moonlit courtyard at the school, he\"\nlsmdc3012_BRUNO-4306,16588,Someone rides the exercise bike. Someone,catches up to him.,reclines and pulls down his pants.,drives out of view.,rubs the strap over his chest.,bounces and looks off.,gold0-orig,unl,unl,unl,unl,unl,Someone rides the exercise bike.,Someone\nlsmdc3012_BRUNO-4306,16592,\"He sits the baby on the scooter. Turning abruptly into the street, he\",\"cuts off a speeding car, which skids.\",sees someone on the clock and steps forward.,\"pulls a bag from his coat pocket, and blows some of him across her stomach.\",comes down the steps and past the rear door.,\"sits up slowly, releasing traffic.\",gold0-orig,pos,unl,unl,unl,unl,He sits the baby on the scooter.,\"Turning abruptly into the street, he\"\nlsmdc3012_BRUNO-4306,16590,He lifts the baby's headphone. He,hands in the baby to him who straddles a scooter.,\"rolls on her mother's face, knocking him to sleep.\",shows it covers on his brow.,rests his head on the oar.,holds on and whizzes past a group of people in the room.,gold0-orig,pos,unl,unl,unl,unl,He lifts the baby's headphone.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7822,The boy sits in front of someone on the gas tank with his legs draped over the handlebars. Someone,\"sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot.\",reaches for his gun.,helps someone to his feet and taps his long chain around the club with his fingertip.,\"stare little earnest, then nods slightly, his mouth drop.\",pulls off his mask and points to his sunglasses.,gold1-orig,pos,unl,unl,unl,pos,The boy sits in front of someone on the gas tank with his legs draped over the handlebars.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7843,Someone notices more monks surrounding their group. The tattoo,faced monk shifts his intense gaze to someone who lifts his chin.,is flop around all sides.,shines at the painted ceiling in the vast chamber.,is addressed on their throne.,continues on the matches.,gold0-orig,pos,unl,unl,unl,unl,Someone notices more monks surrounding their group.,The tattoo\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7845,The monk twitches a tight smile. Someone,turns to his companion.,extends his hand to it.,catches his breath and turns away.,gives him a gentle pat.,gives someone a questioning look.,gold1-orig,pos,unl,pos,pos,pos,The monk twitches a tight smile.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7830,\"It grows moldy and disintegrates at his gloved touch. Glancing into the lunch box, he\",takes out an apple and watches the bright green fruit turn grey and crumble.,\"pulls out a flicking knife, takes it with a minute hand.\",rocks his hands in the pockets book.,finds the door ajar.,finds the sixth one in 19 noose.,gold0-orig,pos,unl,unl,unl,unl,It grows moldy and disintegrates at his gloved touch.,\"Glancing into the lunch box, he\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7818,\"Riding a motorbike, someone catches up to them. He\",pulls up to the driver's side window.,pulls the rope from richard parker's mouth and flips the arrow over one side.,aims his appropriate longer at the tiger.,strikes him with a machete.,hurries into the game as fast as possible.,gold1-orig,pos,unl,unl,unl,unl,\"Riding a motorbike, someone catches up to them.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7847,A monk reaches for him. He,touches someone's cheek.,hands someone the diary.,aims at someone's gun.,hauls him pass out to the city.,points his wand at the sorcerer.,gold0-orig,pos,pos,pos,pos,pos,A monk reaches for him.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7825,\"Someone shifts his motorcycle onto only its front wheel. As the bike comes to a full stop, its rear wheels\",stay up in the air for a moment then drops back to the ground.,\"completely off the side of the boat, almost perfectly intact.\",ripple along the rough wheel as by contrast.,reveals a masked japanese like biker - nosed rear inside it.,,gold0-orig,pos,unl,unl,unl,n/a,Someone shifts his motorcycle onto only its front wheel.,\"As the bike comes to a full stop, its rear wheels\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7841,Someone's fingers caress the cross hanging around his neck. They,embrace then switch sides and embrace again.,share someone's firm gaze.,put in a subdued smile on his face.,\"of wrap, shirts, and men get out of theirs in the limo.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone's fingers caress the cross hanging around his neck.,They\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7840,He places a hand on someone's head. Someone's fingers,caress the cross hanging around his neck.,are gently ruffled by her hair.,dig into the wet lens.,fall on the wheel.,caress his right arm as he reads over his shoulder.,gold1-orig,pos,unl,unl,unl,unl,He places a hand on someone's head.,Someone's fingers\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7834,\"He shoves half of the remaining sheathed Twinkie into his mouth, then bites down on the wrapper using his teeth to hold the cake in place. He\",slides the wrapper out.,\"empties a few more inside, and he grinds a metal into it.\",\"gets her eye, she dances, and he puts her hand on her chin.\",looks up down the street - - - - stunned - up.,\", someone steps up to drink someone on the bed.\",gold0-orig,pos,unl,unl,unl,unl,\"He shoves half of the remaining sheathed Twinkie into his mouth, then bites down on the wrapper using his teeth to hold the cake in place.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7828,\"Driving it, someone reaches into a lunch box on the seat beside him. He\",pulls out a sandwich.,\"tosses a book in a bag, opens, and stares at the photo.\",\"turns and runs back to the apartment, and then nods.\",sways back and forth.,parks the car and drives off.,gold0-orig,pos,unl,unl,unl,unl,\"Driving it, someone reaches into a lunch box on the seat beside him.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7827,\"Now someone's motorcycle catches up to someone again. Driving it, someone\",reaches into a lunch box on the seat beside him.,\"looks the other way, firing.\",spies someone following by the driver's door.,fires a blast of energy.,finds himself in his car.,gold1-orig,pos,unl,unl,unl,unl,Now someone's motorcycle catches up to someone again.,\"Driving it, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7836,\"It's now empty plastic smeared with cream. Later, in the desert, someone\",\"leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings.\",waits with his legs wide open.,drives with some drinks and cigarette.,rolls past the back of the home.,,gold0-orig,pos,unl,unl,pos,n/a,It's now empty plastic smeared with cream.,\"Later, in the desert, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7837,\"Later, in the desert, someone leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings. They\",\"approach towering rock formations that appear constructed into, creating buildings within their natural structures.\",peer through a rocky canopy of trees.,\"walk along a narrow bridge pulled through a harsh, damp valley.\",\"sets down a wet drink off a stair pipe, then returns to meet someone.\",\"reach under a curved bridge, then drop onto the bridge next - and above.\",gold0-orig,pos,unl,unl,unl,unl,\"Later, in the desert, someone leads someone, someone, and someone along a path between jutting cliffs and barren mountains with cave - like openings.\",They\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7839,The one in front removes his hood revealing tattooed writing covering his face and bald scalp. He,places a hand on someone's head.,blow out someone's body and kisses someone's bare legs.,sits on his back on the desk and holds someone 'legs.,\"puts a younger woman's skeleton costume, tries to retrieve some pliers.\",\"maintains his eyes fixed light, then turns off his radio.\",gold0-orig,pos,unl,unl,unl,unl,The one in front removes his hood revealing tattooed writing covering his face and bald scalp.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7829,He pulls out a sandwich. It,grows moldy and disintegrates at his gloved touch.,\"is sharpening the carrot, then picks it up, moves it down next to her, she examines it for a moment.\",leans against the bathroom curtain.,slams someone's jeans down and flops back against someone.,\"supporters with the casual family watch, then skids away at a semi - circle.\",gold1-orig,pos,unl,unl,unl,unl,He pulls out a sandwich.,It\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7820,\"Grinning, he speeds ahead of the truck. It\",pulls up beside then passes someone who shakes his head at someone.,smashes the cage which blocks someone's view.,hides behind the mechanism.,relaxes up in the driver's seat as he turns the wheel backward.,cuts its spinning and disappears.,gold0-orig,pos,unl,unl,unl,unl,\"Grinning, he speeds ahead of the truck.\",It\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7844,The tattoo faced monk shifts his intense gaze to someone who lifts his chin. The monk,twitches a tight smile.,grabs someone's sword.,gives someone another shake then joins someone.,\"lifts his small knees to the floor, then shakes his head.\",is covered with dirt.,gold1-orig,pos,unl,unl,unl,unl,The tattoo faced monk shifts his intense gaze to someone who lifts his chin.,The monk\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7823,\"Someone sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot. Popping a wheelie, they\",glide along on only the bike's rear wheel.,turn back to see the zoo cop away.,jog across the road toward the edge of the station and approach the street outside.,stare at each others as he questions them.,catch sight of a man in someone's cage.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sets a bent knee at the rear of his seat then straightens it, pushing his weight onto his back foot.\",\"Popping a wheelie, they\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7833,He finds a plastic wrapped Twinkie and examines it then gives it a squeeze. Someone,bites into the still fresh snack and chews thoughtfully.,strokes the side of his head then turns it down.,uses the mixer to block the bell until he finds the usual beautiful place.,smiles tightly as someone leans onward.,,gold0-orig,pos,unl,unl,unl,n/a,He finds a plastic wrapped Twinkie and examines it then gives it a squeeze.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7831,\"Glancing into the lunch box, he takes out an apple and watches the bright green fruit turn grey and crumble. He\",rubs his gloved fingers against each other cleaning the dust from them.,eagerly approaches and takes the plate of spaghetti from his lips as though seeking anything else.,swivels the car into a mud driveway and race to the window.,breaks away and pours his martini glass.,,gold1-orig,pos,unl,unl,unl,n/a,\"Glancing into the lunch box, he takes out an apple and watches the bright green fruit turn grey and crumble.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7838,A group of monks greets them. The one in front,removes his hood revealing tattooed writing covering his face and bald scalp.,throws it as if at this restaurant.,swings a shy ball from the sidecar.,\"gives her a boxy, open - plan bedroom.\",,gold0-orig,pos,unl,unl,unl,n/a,A group of monks greets them.,The one in front\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7819,\"He pulls up to the driver's side window. Grinning, he\",speeds ahead of the truck.,steals a suitcase from a closet.,turns and glances at the mansion.,looks across at a camera beside her.,,gold0-orig,pos,unl,unl,unl,n/a,He pulls up to the driver's side window.,\"Grinning, he\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7842,They embrace then switch sides and embrace again. Someone,notices more monks surrounding their group.,opens and heads down from the floor back doorway.,lies face down against his bed.,sticks her tongue out and her eyes widen.,is on the phone.,gold0-reannot,pos,unl,pos,pos,pos,They embrace then switch sides and embrace again.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7826,\"As the bike comes to a full stop, its rear wheels stay up in the air for a moment then drops back to the ground. Now someone's motorcycle\",catches up to someone again.,\"comes off to strap someone against the bluff, barely coming face.\",drives away from the brothel.,travels down a deserted street.,rolls out onto the road.,gold0-reannot,pos,unl,pos,pos,pos,\"As the bike comes to a full stop, its rear wheels stay up in the air for a moment then drops back to the ground.\",Now someone's motorcycle\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7821,It pulls up beside then passes someone who shakes his head at someone. The boy,sits in front of someone on the gas tank with his legs draped over the handlebars.,gives her a shy smile.,joins his dad at a desk.,\"wears a worried look, then lifts his head back.\",,gold0-reannot,pos,pos,pos,pos,n/a,It pulls up beside then passes someone who shakes his head at someone.,The boy\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7835,He slides the wrapper out. It,'s now empty plastic smeared with cream.,points around the neck to reveal someone's curly - hearted expression and glistening eyes.,'s back to the hall.,shut off the car's engine.,pokes holes and mounts the handle.,gold0-reannot,pos,unl,unl,unl,unl,He slides the wrapper out.,It\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7849,Now they walk through a vast wine cellar. Someone,grabs a bottle from a table in the middle of a rotunda.,'s up close to her desk.,closes the door on the house's leading back into the hall.,reaches and bravely and saunters out of the balloons.,\"comes out of a door to someone, and looks over his shoulder.\",gold0-reannot,pos,unl,unl,unl,unl,Now they walk through a vast wine cellar.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-12958,7832,He rubs his gloved fingers against each other cleaning the dust from them. He,finds a plastic wrapped twinkie and examines it then gives it a squeeze.,looks shocked and then back to someone.,someone gazes away pensively.,leans to the counter and leans in to the ear.,,gold0-reannot,pos,unl,unl,unl,n/a,He rubs his gloved fingers against each other cleaning the dust from them.,He\nlsmdc1012_Unbreakable-6965,4299,\"He watches her turn and start down the stairs before he shuts the door. In a huge football stadium, someone\",is on duty holding a walkie - talkie.,is talking to someone at his desk as someone scoots out of bed.,stands in front of a mirror and snarls.,walks quickly to a nearby fence as the policemen dive into the vehicles.,,gold0-orig,pos,unl,pos,pos,n/a,He watches her turn and start down the stairs before he shuts the door.,\"In a huge football stadium, someone\"\nanetv_hKE7vI--XGU,6393,A woman wearing a shawl stands in front of a tropical plant outdoors. A woman,presents a band on stage for a performance.,stands at a bar in chalk.,sits in front of a mirror speaking to a dog.,gets a drink from a metal pot and starts rubbing it in place.,,gold0-orig,pos,unl,unl,unl,n/a,A woman wearing a shawl stands in front of a tropical plant outdoors.,A woman\nanetv_hKE7vI--XGU,6394,A woman presents a band on stage for a performance. A flute player,plays a part of a song during the performance.,sings on two stage in front of the microphone above judge.,does karate behind her while the orchestra plays.,poses for the audience.,talks to the camera.,gold0-orig,pos,unl,unl,pos,pos,A woman presents a band on stage for a performance.,A flute player\nanetv_hKE7vI--XGU,6395,A flute player plays a part of a song during the performance. The band,plays a song together during the performance.,continues to play with the sticks.,resumes going down the ice and the group practices to salsa.,collides with a musician.,is hitting the cymbals with the rhythm men are hitting the drums at the palms of the drums.,gold1-orig,pos,unl,unl,unl,pos,A flute player plays a part of a song during the performance.,The band\nanetv_-jl_v7zi17A,17291,A woman is seen riding on a piece of exercise equipment followed by several shots of her adjusting the equipment and moving it around. More shots,are shown of her riding the equipment and changing the settings on the front.,are shown of people riding along the bike as well as a life speaking to the camera.,are shown of women sticking objects in the end while other people watch on the side.,are shown of people using equipment and kit sitting around people in tubes as well as tubes in the area.,are shown of people adjusting the equipment as well as speaking to the camera.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen riding on a piece of exercise equipment followed by several shots of her adjusting the equipment and moving it around.,More shots\nanetv_Yd98o-oEGvI,11795,\"The game continues and the two continues to play with the frisbee while the owner puts his legs up for the dog to get. Now, the human\",has four or five frisbees and starts to throw them rapidly for the dog to get.,arm while other two wake up the too busy sometimes ride off themselves.,orbits the wing of the baking glass and pins it on the waves.,continues to pull the rope residential and ends with it back.,do several other things as the dog deep in the ground and kicks.,gold0-orig,pos,unl,unl,unl,pos,The game continues and the two continues to play with the frisbee while the owner puts his legs up for the dog to get.,\"Now, the human\"\nanetv_Yd98o-oEGvI,11794,A man and a dog is out in a field and the dog holds the frisbee between his legs and the dog jumps over the person's back and fetches the frisbee. The game continues and the two,continues to play with the frisbee while the owner puts his legs up for the dog to get.,continue with the dog.,continue walking and waxing the sidewalk around while other people watch on the side.,continue performing tricks as the frisbees turn around in circles as they in the end with their dogs in a queue.,begin passionately around the grass.,gold0-reannot,pos,unl,unl,unl,unl,A man and a dog is out in a field and the dog holds the frisbee between his legs and the dog jumps over the person's back and fetches the frisbee.,The game continues and the two\nlsmdc1045_An_education-90119,12108,Someone grins and closes the book. Later she,is getting ready for bed.,changes back to april.,sits up to someone.,unrolls a large knitting box.,washes her sister's face.,gold0-orig,pos,unl,unl,unl,unl,Someone grins and closes the book.,Later she\nlsmdc1045_An_education-90119,12109,Later she is getting ready for bed. Someone,'s on the bed fully clothed.,lies on the sofa and has a blanket draped around it.,sits in front of the tv filled with toilet paper.,takes out her suitcase.,,gold0-orig,pos,pos,pos,pos,n/a,Later she is getting ready for bed.,Someone\nlsmdc1045_An_education-90119,12111,She comes out of the bathroom. She,\"looks at him, shifting awkwardly.\",is licking her reflection for a long time.,looks in the mirror and spins herself around.,takes a bullet in the bath.,scrambles into the shower.,gold1-orig,pos,unl,unl,unl,unl,She comes out of the bathroom.,She\nanetv_X9Z9uqrb9EY,16082,\"Various shots and angles of them performing are shown, while others look on. They\",\"continue playing their rhythm and are having a great time, before the video ends.\",and spectators dancing on front of the credits.,people are seen playing bleachers on a stage.,follow her movements in slow motion.,,gold0-orig,pos,unl,unl,unl,n/a,\"Various shots and angles of them performing are shown, while others look on.\",They\nanetv_X9Z9uqrb9EY,9870,People are sitting down on chairs. They,are playing drums with their hands.,are dancing salsa stunts in the street.,are playing tug of war.,put hats on their heads.,,gold1-orig,pos,unl,unl,pos,n/a,People are sitting down on chairs.,They\nanetv_X9Z9uqrb9EY,16081,They are very into it and there are wine barrels behind them. Various shots and angles of them performing,\"are shown, while others look on.\",jump about clothes prepped.,layups on the beach.,turns and being shown being played.,,gold1-orig,pos,unl,unl,pos,n/a,They are very into it and there are wine barrels behind them.,Various shots and angles of them performing\nanetv_X9Z9uqrb9EY,9871,They are playing drums with their hands. People,are standing next to them behind a table watching.,bend their foot to the wall.,are trying to get back into the water.,are playing the drums in front of someone.,are playing the drums in front of them.,gold1-orig,pos,unl,unl,pos,pos,They are playing drums with their hands.,People\nanetv_X9Z9uqrb9EY,16080,Three men perform conga drums inside of a room. They are very into it and there,are wine barrels behind them.,'s a standing weight.,'s a game preparing to play and celebrates a song.,'s a strings to guitars.,are two dancing as they go under a fast beat.,gold1-reannot,pos,unl,unl,unl,unl,Three men perform conga drums inside of a room.,They are very into it and there\nanetv_FLL06mU-ua8,10271,A man gives tips on outdoor physical training. He,demonstrates on the monkey bars going back and forth with upper body strength.,pauses and turns around before and celebrates.,unwraps a razor and loosens a long chain.,talks about a demonstration.,holds his arms in an encouraging force.,gold0-reannot,pos,unl,unl,pos,pos,A man gives tips on outdoor physical training.,He\nanetv_PofMK_beoR8,3962,\"Several people begin walking into a room wearing Kangaroo shoes and bouncing around. On the left side of the room, there\",is a bar on two poles that is about five feet high that each person takes turns jumping over.,'s a closeup pulling the cloth down to pick up the earring.,'s white children running swinging the boards in their way until turning and extending their arms.,\"are several young boys playing around them, making sounds different.\",,gold0-orig,pos,unl,pos,pos,n/a,Several people begin walking into a room wearing Kangaroo shoes and bouncing around.,\"On the left side of the room, there\"\nanetv_qrvPTE0kb5U,17307,A man is talking on a cell phone. He,begins talking to another man.,has a tattoo on his arm and changes details.,is playing a accordion in a office.,picks up a hat and puts it on his ear.,,gold1-orig,pos,unl,unl,unl,n/a,A man is talking on a cell phone.,He\nlsmdc1005_Signs-4628,15291,The young shop assistant comes to the counter with a paper prescription bag. She,leans pensively on the counter.,crosses to the door.,spots a speeding car.,goes off to pick it up.,,gold0-orig,pos,unl,unl,pos,n/a,The young shop assistant comes to the counter with a paper prescription bag.,She\nanetv_Vhf-vNRYQEg,2849,A close up of a sign is shown followed by the camera capturing many guitars on shelves around him. A man,is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding.,is seen getting out of a car.,takes a drink containing a glass of beer while continuing to speak to the camera.,walks back and fourth while others watch and end with a couple.,moves a racquet along between balls hitting a ball and speaking to the camera as well.,gold0-orig,pos,unl,unl,unl,unl,A close up of a sign is shown followed by the camera capturing many guitars on shelves around him.,A man\nanetv_Vhf-vNRYQEg,1006,A man sits on a cardboard box and plays an accordion. He,stops playing and lifts his hand up.,holds the saxophone up.,steps into the song.,stops playing and talks to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A man sits on a cardboard box and plays an accordion.,He\nanetv_Vhf-vNRYQEg,1005,Guitars are hanging on a wall of a shop. A man,sits on a cardboard box and plays an accordion.,is inside a gym.,puts a stick and stomps on his microphone.,talks to another woman.,talks to the camera and starts holding a guitar.,gold0-orig,pos,unl,unl,pos,pos,Guitars are hanging on a wall of a shop.,A man\nanetv_Vhf-vNRYQEg,2850,A man is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding. He,continues playing more while smiling to the camera and pauses to speak more and hold onto his instrument.,stands between him and on the playground and playing on the accordion.,pleads with the camera and then turning off the light as well as swimming in between him.,continues to demonstrate how to apply the wallpaper when a man talks while standing on a chair in front of the shop.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen sitting down playing an accordion and pauses to speak to the camera and show off the instrument he is holding.,He\nanetv_2OEc8kPVn_Y,2870,An Asian woman is standing outside in a large field wearing a pink loose linen like outfit. She,then puts her legs and hands out and begins to move like a ninja throughout the field.,strolls cautiously through the parlor.,is hanging in the wall of the convention room.,is playing the instrument sitting on her lap.,is using a small hammer to get a purse.,gold0-orig,pos,unl,unl,unl,unl,An Asian woman is standing outside in a large field wearing a pink loose linen like outfit.,She\nanetv_2OEc8kPVn_Y,2871,\"She then puts her legs and hands out and begins to move like a ninja throughout the field. After she has moved left and right across the field, she\",then comes back to the middle of the field and stands still to complete her routine.,hands the game to sticks.,moves in the front bends back and begins to do what she does bends over.,puts the shaker down.,\"let go of the hurdle with the foot, leaving her supplies behind.\",gold0-orig,pos,unl,unl,unl,pos,She then puts her legs and hands out and begins to move like a ninja throughout the field.,\"After she has moved left and right across the field, she\"\nanetv_jqLwYHwYYPM,16095,The man is back on the ground with a long tape measure and measuring the ground. The man is now holding a tile with ridges on all four sides and he,takes a mallet and a tool to gently pound the pieces together.,is silently counting the blades together.,begins to throttle himself.,wants to know how to do it.,,gold0-orig,pos,unl,unl,pos,n/a,The man is back on the ground with a long tape measure and measuring the ground.,The man is now holding a tile with ridges on all four sides and he\nanetv_jqLwYHwYYPM,16097,\"When the man reaches the wall he uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it. The man is back in the house and piecing a small tile near some cabinets, then the man\",\"begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout.\",shins up carpet materials and hangs it together in place under the sheet cover.,puts the lighter on and cuts tiles to apply it to the other side of the floor.,put one onto the fourth roller.,kneel on the side of view as he walks back to where he started.,gold1-orig,pos,unl,unl,unl,unl,\"When the man reaches the wall he uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it.\",\"The man is back in the house and piecing a small tile near some cabinets, then the man\"\nanetv_jqLwYHwYYPM,16092,A black screen appears and the yellow words appear on them read Extreme How - To presents. The second black screen,has yellow words that read installing heated floor tile.,shows manual access floss and feigns for attention.,appears with white words that include a logo with barely white words and finally began the website down the channel to the cursor.,appears with green letters that say rocking secretary in the air in the center of the square.,appears that reads writing throughout the location and doing on his mouthpiece.,gold0-orig,pos,unl,unl,unl,unl,A black screen appears and the yellow words appear on them read Extreme How - To presents.,The second black screen\nanetv_jqLwYHwYYPM,16093,\"The man walks away from the corner and the next view is of a kneeling man using a tool to remove base molding from a wall, using a drill gun, measuring with a long ruler, then laying on the ground gray pieces of fabric with some wires attached to it. The man is then shown pressing buttons on a little white box and the man is now pointing to those wires attached to those gray pieces of fabric and the man\",starts putting wires into a gray pipe that is now shown on the wall.,places a bloody strip on the tool and puts a spare tire on it.,appears in a still showing it then scribbles several flat tiles with a metal row.,finishes up the tool with the smoke in it to show how it works on physical with equipment.,shows off the tool which is attached to the wall and now he to make the tiles all disconnected.,gold1-reannot,pos,unl,unl,unl,unl,\"The man walks away from the corner and the next view is of a kneeling man using a tool to remove base molding from a wall, using a drill gun, measuring with a long ruler, then laying on the ground gray pieces of fabric with some wires attached to it.\",The man is then shown pressing buttons on a little white box and the man is now pointing to those wires attached to those gray pieces of fabric and the man\nanetv_jqLwYHwYYPM,16096,The man is now holding a tile with ridges on all four sides and he takes a mallet and a tool to gently pound the pieces together. When the man reaches the wall he,\"uses a pencil to measure the tile, takes it to a wet tile cutter and cuts it.\",gets up and starts spinning the piece of wood in the arms and raking it all around the ground.,\"moves around the surface of the small pole to show on the wall, goes back and forth digitally talks again.\",begins to create sticky tape.,begins to turn into the wall and then drops it on tight climbing wall.,gold0-reannot,pos,unl,unl,unl,unl,The man is now holding a tile with ridges on all four sides and he takes a mallet and a tool to gently pound the pieces together.,When the man reaches the wall he\nanetv_jqLwYHwYYPM,16098,\"The man is back in the house and piecing a small tile near some cabinets, then the man begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout. The talking man from earlier\",appears back in the corner talking and yellow words appear on the screen that contain websites.,is interrupted by a blue background with pictures of his feet laying on the ground.,is rolling a copy of fake tile that takes out the bottom of the wooden boots that he must draw from.,starts to put down the ski with alternating complete scrub while now a male is shown and next he scraping and starts talking.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The man is back in the house and piecing a small tile near some cabinets, then the man begins to grout, and uses a large, wet, yellow sponge to clean up the excess grout.\",The talking man from earlier\nanetv_GfSGZZSGH6g,9311,There are two roofers standing top of a building roof removing working on old roof removal. They,are using roofing shovel to remove the shingles and tarp.,are in front of a roof in an intricate pile of snow.,are demonstrating how to clean the side of the roof for the whole time.,'re standing on their black roof.,,gold0-orig,pos,unl,pos,pos,n/a,There are two roofers standing top of a building roof removing working on old roof removal.,They\nanetv_GfSGZZSGH6g,9312,They are using roofing shovel to remove the shingles and tarp. One of the roofers,is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp.,uses a large knife to trim the snow as he's trying to block.,is onto a bridge and over the towel head.,sands the floor with foam.,,gold0-orig,pos,unl,unl,unl,n/a,They are using roofing shovel to remove the shingles and tarp.,One of the roofers\nanetv_GfSGZZSGH6g,9313,One of the roofers is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp. The other roofer,is helping him roll up the tarp as he peels it off.,\"scramble to their knees, drive off the road with fireworks high with rails and balls.\",is revealed as he comes to.,cleans the ground but he throws the tree up to get a dead.,hide in the snow and begin rinsing the dirt on the rag and mounds it out with a room full of ground life.,gold0-orig,pos,unl,unl,unl,unl,One of the roofers is peeling off the tarp from the rooftop as he digs in the shovel underneath the tarp.,The other roofer\nanetv__ajGnJjNUX0,13032,An ad for Floorworks appears on the screen. A guest room,\"is shown, displaying the dirty carpets.\",is shown sitting in a chair.,begins to peel off and a woman goes in front of him making it exercise.,is filled with marching guitar supplies.,enters the room and continues talking to a group of people.,gold0-orig,pos,unl,unl,unl,unl,An ad for Floorworks appears on the screen.,A guest room\nanetv__ajGnJjNUX0,13034,Men are shown replacing and repairing the floors with wooden slats that don't need glue to install. Final photos,are shown of the new hardwood floors in the guest room.,are shown of people at the bottom of a roof line some advertisements.,are shown as a white bike car is parked on the side of a rocky desert.,\"are shown of plaster, replica or beautiful.\",are asked as they work.,gold0-orig,pos,unl,unl,unl,unl,Men are shown replacing and repairing the floors with wooden slats that don't need glue to install.,Final photos\nanetv__ajGnJjNUX0,13033,\"A guest room is shown, displaying the dirty carpets. Men\",are shown replacing and repairing the floors with wooden slats that don't need glue to install.,explain how to prepare d. a product for pads.,are applying ornaments to another tree.,are being interviewed for a woman who has fallen with his own and then continues packing and the window in the bathroom.,lay furniture in the laundry room.,gold0-orig,pos,unl,unl,unl,pos,\"A guest room is shown, displaying the dirty carpets.\",Men\nlsmdc1018_Body_Of_Lies-80345,16491,He smiles and raises his eyebrows at someone. They,walk out to the street.,smile at his wife like someone.,walk inside the kitchen.,stare at the envelope but this time he speaks to her.,\"share a brief smile, then shrugs.\",gold1-orig,pos,unl,pos,pos,pos,He smiles and raises his eyebrows at someone.,They\nlsmdc1018_Body_Of_Lies-80345,16490,She waves a white napkin. He,smiles and raises his eyebrows at someone.,spins up and touches them.,puts her hand on her mouth then looks over at each.,\"swerves on front a huge, brick breaking woman.\",places her hand in front of her.,gold0-orig,pos,unl,unl,unl,pos,She waves a white napkin.,He\nlsmdc3021_DEATH_AT_A_FUNERAL-1309,12739,Someone childishly claps his bare bent legs together. He,ads to the rhythm by tapping his knees with his hands.,walks through the crowds towards the house.,and someone get into the warehouse.,rests the head in his hand and stands.,tosses his head on a shelf.,gold0-orig,pos,unl,unl,unl,unl,Someone childishly claps his bare bent legs together.,He\nlsmdc3034_IDES_OF_MARCH-2904,9916,\"Ending the call, he crosses a tarmac to a private jet. Later in flight, he\",works beside someone who sits facing someone.,signals the homeless man.,rolls onto a patio set where someone sits with his parents.,crosses the blue - white house to the high school balcony setting.,,gold0-orig,pos,unl,unl,unl,n/a,\"Ending the call, he crosses a tarmac to a private jet.\",\"Later in flight, he\"\nlsmdc3034_IDES_OF_MARCH-2904,9918,Turbulence jostles the aircraft causing someone to look up from his work. He,braces himself and shuts his eyes.,speeds off.,points at someone's reactor.,see the clergyman below.,lifts it above his head.,gold0-orig,pos,unl,unl,unl,pos,Turbulence jostles the aircraft causing someone to look up from his work.,He\nlsmdc3034_IDES_OF_MARCH-2904,9917,\"Later in flight, he works beside someone who sits facing someone. Turbulence\",jostles the aircraft causing someone to look up from his work.,sweeps a bare hand over someone's lap.,reads an accepting card.,closes his eyes and squints as he sticks out his tongue.,consists a cozy and dappled quality.,gold0-orig,pos,unl,unl,unl,pos,\"Later in flight, he works beside someone who sits facing someone.\",Turbulence\nlsmdc3034_IDES_OF_MARCH-2904,9919,\"He braces himself and shuts his eyes. With a wry smile, someone\",glances out his window.,goes to a window and follows his friend.,watches him flip again.,shakes himself at the sight of someone and enters.,closes the hatch on his wheels.,gold0-orig,pos,unl,unl,unl,unl,He braces himself and shuts his eyes.,\"With a wry smile, someone\"\nanetv_Ck-9AHZNkq4,2819,\"A boy looks at a smart phone while pedaling a stationary bike, and other boys continue biking. A boy\",lowers his cap to cover his eyes.,pushes a bull across the yard and does several stand ups before jumping down from the driveway.,starts for the match.,kneels down on the street.,\"comes on a bike at the front of a playground, jumps a boy and discusses it when he continues.\",gold1-orig,pos,unl,unl,unl,unl,\"A boy looks at a smart phone while pedaling a stationary bike, and other boys continue biking.\",A boy\nanetv_Ck-9AHZNkq4,12310,Three people are shown sitting on a bicycle machine and moving their legs. More people,are seen riding on the exercise machine while the camera pans around their movements.,are shown riding around preparing and moving around the track.,dance ready and get the weights up all the way back down when they're done.,are seen riding around on exercise bikes while others watch on the side.,are shown doing women then they see shots of the riding on the train.,gold0-orig,pos,unl,unl,unl,unl,Three people are shown sitting on a bicycle machine and moving their legs.,More people\nanetv_Ck-9AHZNkq4,12311,More people are seen riding on the exercise machine while the camera pans around their movements. A person shows off his watch and a woman,is looking at her phone.,is shown on the sidelines continuing to kick it up that leads into several runners turning around and running around as well.,leans near them and wipe the vehicle off.,walks behind him smiling.,captures him from several angles.,gold1-reannot,pos,unl,unl,pos,pos,More people are seen riding on the exercise machine while the camera pans around their movements.,A person shows off his watch and a woman\nanetv_CaQkeVwKiUs,10539,A man hits the individual pointing guns with a bowling pin. The guy,pulls the head of the individual not pointing guns.,shakes the guy over the shaken levels of the tank.,stands up and shoots the ball very quickly around each mans left.,rushes to members opposite people and pin him with their medals.,,gold1-orig,unl,unl,unl,unl,n/a,A man hits the individual pointing guns with a bowling pin.,The guy\nanetv_CaQkeVwKiUs,10536,A guy enters a building through a door. A guy,greets two sitting individuals.,talks with the camera.,taps his finger on the guy.,is running around holding cones.,,gold0-orig,pos,unl,unl,pos,n/a,A guy enters a building through a door.,A guy\nanetv_CaQkeVwKiUs,5718,From behind a suited black man walks behind them and he hits the taller guy in the head and they begin talking to the shorter man. The white man,walks to the shorter man and pulls his head off of his body and hands it to the black man.,is talking about the wetsuit.,once again return to the black fencing toy and does a clamp on the left side and eventually push on surround well to each.,\"walks back to the hot cake and puts the ball inside the cup, happy attention followed by presenting them to the cups.\",takes the right coin and starts the game.,gold0-orig,unl,unl,unl,unl,unl,From behind a suited black man walks behind them and he hits the taller guy in the head and they begin talking to the shorter man.,The white man\nanetv_CaQkeVwKiUs,10541,The man bowls with the individual's head. The man,tosses the head which the guy catches in a bag and shakes.,paints the man's nose with his right fist.,stretches a missing bite from one of the horses.,puts several glasses on his glass.,stares at the other and dodges all the leaves.,gold0-orig,pos,unl,unl,unl,unl,The man bowls with the individual's head.,The man\nanetv_CaQkeVwKiUs,10537,A guy greets two sitting individuals. The guy,point a gun at the individual pointing three guns.,runs to it and stands above.,lifts his overlooking sequence.,heats a chair after he catches the ball.,,gold0-reannot,pos,unl,unl,unl,n/a,A guy greets two sitting individuals.,The guy\nanetv_CaQkeVwKiUs,5717,\"As soon as the suited man walks past them, the taller man and the suited man pulls out futurist guns and point it at one another. From behind a suited black man walks behind them and he hits the taller guy in the head and they\",begin talking to the shorter man.,bounce to kick their captive in the air.,draw him up in a circle.,ride over in a small circle.,hug and face each other.,gold0-reannot,pos,unl,unl,unl,unl,\"As soon as the suited man walks past them, the taller man and the suited man pulls out futurist guns and point it at one another.\",From behind a suited black man walks behind them and he hits the taller guy in the head and they\nanetv_CaQkeVwKiUs,10538,The guy point a gun at the individual pointing three guns. A man,hits the individual pointing guns with a bowling pin.,holds an egg and cuts it in four.,takes something out of his hand and pushes the board across the board.,holds open a tool's broken hatch.,,gold0-reannot,pos,unl,unl,unl,n/a,The guy point a gun at the individual pointing three guns.,A man\nlsmdc3051_NANNY_MCPHEE_RETURNS-24505,10948,\"They pass a pristine white, estate house. Someone\",takes a deep breath.,writes in front of a limp - faced player.,slides a chain over a skyscraper.,opens the champion stew house in darkness.,\", the bare - sized drummer catches a girl washes over the beach and lifts her hair.\",gold0-orig,pos,unl,unl,unl,unl,\"They pass a pristine white, estate house.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24505,10949,Someone takes a deep breath. In a muddy yard a fallen sign,reads - deep valley.,\"stands across him, touching a riverside.\",reads four: seven.,jolts a gaggle of people.,reads the title page.,gold1-orig,pos,unl,unl,unl,unl,Someone takes a deep breath.,In a muddy yard a fallen sign\nlsmdc3051_NANNY_MCPHEE_RETURNS-24505,10950,In a muddy yard a fallen sign reads - Deep Valley. Dirty water,gets launched from a barn doorway.,holds a room between them people.,floods the lobby which look deformed and wrinkled.,reaches on the snowy road.,carries twenty - party children brawl on pews.,gold0-orig,pos,unl,unl,unl,unl,In a muddy yard a fallen sign reads - Deep Valley.,Dirty water\nlsmdc3051_NANNY_MCPHEE_RETURNS-24505,10951,Flywheels and belts turn an axle. A horizontal assembly of pipes,is shaped like a castle.,starts to go out into the air and then to it.,\"is grated with a small rushing in the mortar, which is slid onto the floor inside the pumping socket.\",stands on the bridge of someone's clock at the drop.,is adjusted on its base.,gold0-orig,pos,unl,unl,unl,unl,Flywheels and belts turn an axle.,A horizontal assembly of pipes\nlsmdc1041_This_is_40-9367,7917,A window shows someone on a bed. He,\"sports a bruised, swollen eye.\",is on the couch while looking down on the street.,frowns as someone gets out.,crosses out of his room and holds out a newspaper.,carries someone up a hallway.,gold1-orig,pos,unl,unl,unl,unl,A window shows someone on a bed.,He\nlsmdc1041_This_is_40-9367,7915,\"On the island, the hero someone lies dying with someone the dog at his side. Someone\",watches with the girls and someone.,watches his son pair the hat.,deftly dumps the triangle out of a vampire's body.,stares on a helmet burns the wounded man before driving him towards the edge.,,gold0-orig,pos,unl,unl,pos,n/a,\"On the island, the hero someone lies dying with someone the dog at his side.\",Someone\nlsmdc1041_This_is_40-9367,7918,\"He sports a bruised, swollen eye. Someone\",walks in with a sympathetic smile.,bends down to break the cloth over his head.,leads a man open the door to an apartment.,takes a breath as someone approach.,drops the bottle to someone's handkerchief and nods.,gold1-orig,pos,unl,pos,pos,pos,\"He sports a bruised, swollen eye.\",Someone\nlsmdc1041_This_is_40-9367,7914,\"As he shuffles off, someone watches him go with a little smile. On the island, the hero someone\",lies dying with someone the dog at his side.,hands someone a collar or arrow: as his daily self slowly returns to the screen.,reads expecting another second - view film.,scales the burning building with his left foot.,has not moved since he stops.,gold0-reannot,pos,unl,unl,unl,unl,\"As he shuffles off, someone watches him go with a little smile.\",\"On the island, the hero someone\"\nlsmdc3089_XMEN_FIRST_CLASS-42643,15465,\"In a European city, someone arrives at an austere building. Now we\",face a gold bar marked with a swastika.,watch a group of professional girls playing a wig.,drift high above the landing.,find several people behind the back of the jet.,,gold1-orig,pos,pos,pos,pos,n/a,\"In a European city, someone arrives at an austere building.\",Now we\nlsmdc1011_The_Help-78503,17187,\"Outside the diner, someone grabs her hand. He\",steps towards her and kisses her on the lips.,'s framing his wrists.,hurls it aside and fires motorcycle.,gets up.,lies still.,gold0-orig,pos,unl,unl,pos,pos,\"Outside the diner, someone grabs her hand.\",He\nlsmdc1011_The_Help-78503,17191,She pushes aside a press photographer. Toilets,are scattered on the yard.,watch the roof collapse.,uncaps a white sample album.,\"answering the bludger, someone scans the carton, then cranks it up from the box post.\",,gold0-orig,unl,unl,unl,unl,n/a,She pushes aside a press photographer.,Toilets\nlsmdc1011_The_Help-78503,17186,He reaches across and takes her hand. She,responds with a smile.,poses for them with a layered - bladed revolver.,takes out a wad of cash.,tries to free him.,,gold0-orig,pos,unl,pos,pos,n/a,He reaches across and takes her hand.,She\nlsmdc1011_The_Help-78503,17192,\"Toilets are scattered on the yard. Someone, with her knickers down,\",proudly sits on one of the many toilets scattered across the lawn.,is in pajamas and a big leather shirt.,reaches out to her striding across the floor.,rushes onto the awning and goes to the window.,gets down some items and marches back out.,gold0-orig,pos,unl,pos,pos,pos,Toilets are scattered on the yard.,\"Someone, with her knickers down,\"\nlsmdc1011_The_Help-78503,17190,Someone comes out of her house grimacing. She,pushes aside a press photographer.,\"drives through the path, panicking children.\",turns on their heels.,wrenches the toy thestral to its ground.,loosens her belt and sits down.,gold0-orig,pos,pos,pos,pos,pos,Someone comes out of her house grimacing.,She\nlsmdc1011_The_Help-78503,17193,\"Tenderly carrying someone in her arms, someone sets her down on the lawn surrounded by a dozen toilets. She\",kneels in front of her.,\"looks up to see the portrait leaving his son, apparently in front of the wall.\",\"wears a dress, someone attempts to climb the camel.\",\"surveys her work, waiting.\",looks up and faces the class.,gold0-orig,pos,unl,unl,unl,unl,\"Tenderly carrying someone in her arms, someone sets her down on the lawn surrounded by a dozen toilets.\",She\nlsmdc1011_The_Help-78503,17197,\"On a bus on her way home, someone is napping. Someone, sitting nearby,\",looks up from his book.,\"shoots the older man, then looks off smiling.\",watches two men playing.,holds a phone to her ear.,,gold0-orig,pos,unl,unl,pos,n/a,\"On a bus on her way home, someone is napping.\",\"Someone, sitting nearby,\"\nlsmdc1011_The_Help-78503,17196,Someone grabs someone by the hand. Someone,pulls away and goes.,steps past the weakened woman.,is now lying unconscious beneath a canvas.,clutches someone's back.,pulls someone shirt back down.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs someone by the hand.,Someone\nlsmdc1011_The_Help-78503,17195,\"At someone's, someone, josefo and Pascagoula are watching civil rights activist someone on tv. Someone\",turns off the tv.,\"stands with a laptop, and leads them down a hallway.\",opens the wooden barred gate and steps inside.,looks at the open - mouthed spotted coins.,,gold0-orig,pos,unl,unl,unl,n/a,\"At someone's, someone, josefo and Pascagoula are watching civil rights activist someone on tv.\",Someone\nlsmdc1011_The_Help-78503,17194,\"Someone, watching coldly from the front door, goes inside. At someone's, someone, josefo and Pascagoula\",are watching civil rights activist someone on tv.,trailing chips into his pockets.,grooming a silver container fruit comes along.,stick in an descending dancer.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone, watching coldly from the front door, goes inside.\",\"At someone's, someone, josefo and Pascagoula\"\nlsmdc3073_THE_GUILT_TRIP-34839,8079,Someone's face falls and she looks down. Someone,nods slowly and closes her eyes.,reaches for the scarf.,looks up to his eye and smiles.,goes to the car in front of her.,,gold0-orig,pos,unl,unl,pos,n/a,Someone's face falls and she looks down.,Someone\nlsmdc3073_THE_GUILT_TRIP-34839,8080,Someone nods slowly and closes her eyes. She,joins her hands together and rests them against her forehead.,holds her gaze above his forehead.,\"takes a breathing tube through her eyes, then uses her arm.\",stops at a door and starts for the door.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone nods slowly and closes her eyes.,She\nanetv_3ArMGKnxlcU,5352,They are going around poles in the water. They,go under a bridge.,do jump roping and flipping each other to the side.,jump down two times and continue to talk.,do their stunts as they dance.,take turns jumping into a water.,gold0-reannot,pos,unl,unl,unl,pos,They are going around poles in the water.,They\nanetv_3ArMGKnxlcU,5351,People are canoeing down a river of water. They,are going around poles in the water.,are involved in a game of beach soccer.,are going in a river in small kayaks.,smile in the waters.,,gold0-reannot,pos,unl,pos,pos,n/a,People are canoeing down a river of water.,They\nanetv_sCxGclun1E0,9698,Two children are standing behind a counter stirring ingredients in pots. A person in a white shirt,comes up in front of them.,is sitting behind them.,picks up the bowl with a little cup then picks it up and slams it away.,is mopping the floor behind them.,,gold0-orig,pos,pos,pos,pos,n/a,Two children are standing behind a counter stirring ingredients in pots.,A person in a white shirt\nanetv_sCxGclun1E0,15600,A kid uses their hands to scrape off the spatula. Another person,stands in front of them and licks his finger.,lands silverware around the tree before getting them into the bowl.,drawing cards with pictures in the background.,runs across a track to get some snow rolls.,,gold0-orig,pos,unl,unl,unl,n/a,A kid uses their hands to scrape off the spatula.,Another person\nanetv_sCxGclun1E0,9699,A person in a white shirt comes up in front of them. He,dips his finger in the bowl and licks it.,\"is holding his hands, but his arms don't plan him.\",is wearing a red shirt.,stops at the bar and turns.,starts playing the drums.,gold0-orig,pos,unl,unl,unl,unl,A person in a white shirt comes up in front of them.,He\nanetv_sCxGclun1E0,15599,Two kids are sitting behind a counter stirring the ingredients in the bowls. A kid,uses their hands to scrape off the spatula.,walks around to a table and pushes it.,is then seen standing together and talking about them.,is scrubbing the dishes in a bin and washes their hands.,is holding a plastic plate with salt in front of him.,gold0-orig,pos,unl,unl,unl,pos,Two kids are sitting behind a counter stirring the ingredients in the bowls.,A kid\nlsmdc1057_Seven_pounds-98195,4596,It languidly wraps its tentacles around his forearm and stings him. His body instantly,goes into shock from the poison.,binds the floor as it gets long and relieved.,expands like a glowing accordian.,slows and he rises once more.,,gold0-orig,pos,unl,unl,unl,n/a,It languidly wraps its tentacles around his forearm and stings him.,His body instantly\nlsmdc1057_Seven_pounds-98195,4609,Someone is wheeled down a hospital corridor on a gurney. Someone,comes to see her in an operating room.,is now fully blonde as people stand by the doorway looking through.,\"looks at it lying sideways, watching him.\",smiles out for herself.,\"faces someone, whispering tensely as someone grasps her hands.\",gold0-orig,pos,unl,unl,unl,unl,Someone is wheeled down a hospital corridor on a gurney.,Someone\nlsmdc1057_Seven_pounds-98195,4603,\"In a hospital, medics try to resuscitate someone. Someone\",is in deep conversation with an official.,goes to climb out.,\"doubles back, then returns to his teammates.\",has the club slung over her abdomen and someone stares lifelessly at her.,straightens in his direction.,gold0-orig,pos,unl,unl,unl,unl,\"In a hospital, medics try to resuscitate someone.\",Someone\nlsmdc1057_Seven_pounds-98195,4604,\"Someone's pager wakes her. Lying on her stomach, she\",\"reaches out for the pager, then raises herself a little to look at it.\",folds her arm in pain.,crosses to some sticky slab and creeps up the stairs.,rubs a pillow under her knee.,looks up at a ceiling in a clearing.,gold0-orig,pos,unl,unl,unl,unl,Someone's pager wakes her.,\"Lying on her stomach, she\"\nlsmdc1057_Seven_pounds-98195,4587,\"As someone emails a response to the message he received, the Corvette wanders into the opposite lane, narrowly missing an oncoming car. The van\",\"flips several times, throwing its passengers about like rag dolls.\",drives a few feet away and drives between two vehicles.,\"slows to a second stop as someone, prone on the wall, sits high in the bed.\",hits the lot faster.,\"is festooned with light as he drives off woods, off the rug where someone's life is in on.\",gold1-orig,pos,unl,unl,unl,unl,\"As someone emails a response to the message he received, the Corvette wanders into the opposite lane, narrowly missing an oncoming car.\",The van\nlsmdc1057_Seven_pounds-98195,4607,\"In an operating room, someone's body is lifted onto a table. A square of his chest\",is bare beneath a sheet.,is taped above church.,rises and bounces restlessly back down.,hangs by the bare - ceiling ceiling.,shakes as he fights before laying down at the table.,gold0-orig,pos,unl,pos,pos,pos,\"In an operating room, someone's body is lifted onto a table.\",A square of his chest\nlsmdc1057_Seven_pounds-98195,4608,A square of his chest is bare beneath a sheet. Someone,is wheeled down a hospital corridor on a gurney.,pulls the document out of the manuscript and looks up at it.,takes a long seat as someone lays someone down.,\"raises his eyes momentarily, then watches the older man leave.\",,gold1-orig,pos,unl,unl,unl,n/a,A square of his chest is bare beneath a sheet.,Someone\nlsmdc1057_Seven_pounds-98195,4580,\"Someone, now sitting on the side of his bed in shadowy light, lowers the phone slowly from his ear and swallows hard. In the motel, someone\",pulls a large bag of ice from the freezer.,lies on the floor near a sparking circuit breaker.,removes an off rolls of surveillance footage of someone's children!,'s clock shows five seconds.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, now sitting on the side of his bed in shadowy light, lowers the phone slowly from his ear and swallows hard.\",\"In the motel, someone\"\nlsmdc1057_Seven_pounds-98195,4589,The Corvette someone was driving bounces and rolls down a steep embankment. The Corvette,comes to rest as a mangled heap among bushes.,attempts to wash as fast as possible.,\"propel him down, wearing a clear blue dress.\",passes a slanting un - urban neighborhood.,,gold0-orig,pos,unl,unl,unl,n/a,The Corvette someone was driving bounces and rolls down a steep embankment.,The Corvette\nlsmdc1057_Seven_pounds-98195,4595,He surfaces from the memory and reaches for a plastic bucket on the side of the bath. He,pours the contents into the water.,swings his shirt leg over a cotton ball.,\"takes someone over, accidentally to the pool, and stops to look backwards.\",rubs the surface of the page.,opens it and stares after him with a fearful gaze.,gold0-orig,pos,unl,unl,unl,pos,He surfaces from the memory and reaches for a plastic bucket on the side of the bath.,He\nlsmdc1057_Seven_pounds-98195,4583,\"He checks his watch, which is on the side of the bath, then makes a call. Someone\",covers his face with his hand and nods as he weeps.,turns around and opens someone's door.,slides his short pair into his leather jacket.,draws up his cell phone.,,gold1-orig,pos,unl,unl,pos,n/a,\"He checks his watch, which is on the side of the bath, then makes a call.\",Someone\nlsmdc1057_Seven_pounds-98195,4612,\"Someone, anesthetized and wearing a theater cap, lies on the operating table. Someone's new heart\",lies still in the open cavity of her chest.,is ripped in the television.,pounds on someone's shoulder.,looks up for someone.,lies pressed against the carpet.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, anesthetized and wearing a theater cap, lies on the operating table.\",Someone's new heart\nlsmdc1057_Seven_pounds-98195,4610,A surgeon lifts someone's heart out of his body and carefully passes it to a colleague. Someone and her colleagues,are operating on someone.,find out both their seats straight.,are in the gift cabin.,watch someone introduce the u. s. signature.,fold into their room.,gold0-orig,pos,unl,unl,unl,unl,A surgeon lifts someone's heart out of his body and carefully passes it to a colleague.,Someone and her colleagues\nlsmdc1057_Seven_pounds-98195,4601,\"In a flashback, he reaches out to touch someone's inert, bloody hand. He\",\"lies on the road, cuddling her and weeping.\",leans his head against the pillow.,\"opens his eyes and locks his eyes on someone, who shoots mississippi.\",\"bumps in, her full lover faint.\",ushers him through the grail.,gold0-orig,pos,unl,unl,unl,unl,\"In a flashback, he reaches out to touch someone's inert, bloody hand.\",He\nlsmdc1057_Seven_pounds-98195,4592,He is wearing the jeans and polo shirt. He slowly,lowers himself into the tub.,dances with a ball and a dish in the stands.,is looking disappointed on the field.,walks down the table.,,gold1-orig,pos,unl,pos,pos,n/a,He is wearing the jeans and polo shirt.,He slowly\nlsmdc1057_Seven_pounds-98195,4582,\"He slits it open, dumps it into the bathtub, and turns on the shower. He\",\"checks his watch, which is on the side of the bath, then makes a call.\",\"wipes her nose, then wets another hook on the vanity.\",runs into the room.,\"licks the plate, puts his mouth up and turns back and forth.\",looks around beneath the water.,gold1-orig,pos,unl,unl,unl,pos,\"He slits it open, dumps it into the bathtub, and turns on the shower.\",He\nlsmdc1057_Seven_pounds-98195,4581,\"In the motel, someone pulls a large bag of ice from the freezer. He\",\"slits it open, dumps it into the bathtub, and turns on the shower.\",follows someone's gaze along the road ahead.,beats the passenger door.,\"enters and tugs down the bush, then begins instinctively connected to the guitar.\",starts to open his whiskey bottle and starts to open the door.,gold0-orig,pos,unl,unl,unl,pos,\"In the motel, someone pulls a large bag of ice from the freezer.\",He\nlsmdc1057_Seven_pounds-98195,4586,\"Someone, admires her engagement ring. As someone emails a response to the message he received, the Corvette\",\"wanders into the opposite lane, narrowly missing an oncoming car.\",soldier is punched in the head.,looks down at someone.,voice message appears with a message which he reads!,\", too much for seeing family.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, admires her engagement ring.\",\"As someone emails a response to the message he received, the Corvette\"\nlsmdc1057_Seven_pounds-98195,4605,\"Lying on her stomach, she reaches out for the pager, then raises herself a little to look at it. Suddenly noticing the empty space beside her in the bed, she\",sits up and scans about.,\"rises the spoon, a large billboard of her packet baring most of it to her face.\",stops and lowers her head.,flops down onto the bed.,drops it and her wedding gown.,gold0-orig,pos,unl,unl,unl,unl,\"Lying on her stomach, she reaches out for the pager, then raises herself a little to look at it.\",\"Suddenly noticing the empty space beside her in the bed, she\"\nlsmdc1057_Seven_pounds-98195,4613,Someone's new heart lies still in the open cavity of her chest. Someone,\"looks up at the monitor, which is flat - lining.\",\"spots someone, still looking at the ghost.\",is plugged in and appears on the bed of someone's room.,'s dad jumps in.,\"stares up sadly, her arms wrapped around her head.\",gold0-orig,pos,unl,unl,unl,unl,Someone's new heart lies still in the open cavity of her chest.,Someone\nlsmdc1057_Seven_pounds-98195,4600,\"Someone spasms begin to subside. In a flashback, he\",\"reaches out to touch someone's inert, bloody hand.\",steps into a room and pulls out a wet handful of apple.,humps someone with brandy.,gets up and straightens up so his arms are dangling above his head.,watches the stroll burn into the note.,gold1-orig,pos,unl,unl,unl,unl,Someone spasms begin to subside.,\"In a flashback, he\"\nlsmdc1057_Seven_pounds-98195,4597,\"His body instantly goes into shock from the poison. As he spasms, he\",grabs hold of the shower curtain around the bath.,stops at his throat then turns.,\"straightens up, going down and is very gently.\",twists aside and glances at a second lifelessly.,\"slows still, looks at the stepmother.\",gold1-orig,pos,unl,unl,pos,pos,His body instantly goes into shock from the poison.,\"As he spasms, he\"\nlsmdc1057_Seven_pounds-98195,4602,\"He lies on the road, cuddling her and weeping. In the motel, someone\",lies on his back in the tub.,lies asleep among another picture of myrtle.,lies asleep beside her on the bed.,closes someone's eyes on someone.,\"lies down, lies down on the bed's footboard.\",gold0-reannot,pos,unl,pos,pos,pos,\"He lies on the road, cuddling her and weeping.\",\"In the motel, someone\"\nlsmdc1057_Seven_pounds-98195,4606,\"Suddenly noticing the empty space beside her in the bed, she sits up and scans about. In an operating room, someone's body\",is lifted onto a table.,rolls into a corner.,sags on the cell floor.,slam shut on the bath floor.,rolls dreamily along the mirrored door.,gold0-reannot,pos,unl,unl,unl,unl,\"Suddenly noticing the empty space beside her in the bed, she sits up and scans about.\",\"In an operating room, someone's body\"\nlsmdc1057_Seven_pounds-98195,4591,\"In his motel room, someone steps gingerly into the bathtub of iced water. He\",is wearing the jeans and polo shirt.,\"rises onto his bed and looks at someone, who sits down in the toilet.\",dries his wet hair from someone's face.,applies a hardened substance to the right side of the bench.,,gold0-reannot,pos,unl,unl,pos,n/a,\"In his motel room, someone steps gingerly into the bathtub of iced water.\",He\nlsmdc1057_Seven_pounds-98195,4588,\"The van flips several times, throwing its passengers about like rag dolls. The Corvette someone\",was driving bounces and rolls down a steep embankment.,\"heads for a taxi, as someone runs pointing.\",arrive at their grandma home.,is now swiping over the tank and rushes into the elevator.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The van flips several times, throwing its passengers about like rag dolls.\",The Corvette someone\nlsmdc1057_Seven_pounds-98195,4590,\"The Corvette comes to rest as a mangled heap among bushes. In his motel room, someone\",steps gingerly into the bathtub of iced water.,notices someone light shines on the man's garage door.,brings a blonde cellphone to his ear.,works at the windows of a university building.,notices his office list too.,gold0-reannot,pos,unl,unl,unl,pos,The Corvette comes to rest as a mangled heap among bushes.,\"In his motel room, someone\"\nlsmdc1057_Seven_pounds-98195,4593,He slowly lowers himself into the tub. He,is left a note on the floor beside the tub.,helps to a blanket and sits up.,enters the shot and giggles.,starts to climb the stairs and wades in the tub while she talks.,pulls up and flicks from his jacket.,gold0-reannot,pos,unl,unl,unl,unl,He slowly lowers himself into the tub.,He\nlsmdc1057_Seven_pounds-98195,4611,\"A medic opens the door of the operating room to let in another medic who is carrying someone's heart, which is in a stainless steel bowl. Someone, anesthetized and wearing a theater cap,\",lies on the operating table.,runs his arm through it.,\"walks in to the open window, and unzips her coat.\",wears a bandage around his ankle.,,gold0-reannot,pos,unl,unl,pos,n/a,\"A medic opens the door of the operating room to let in another medic who is carrying someone's heart, which is in a stainless steel bowl.\",\"Someone, anesthetized and wearing a theater cap,\"\nlsmdc1057_Seven_pounds-98195,4594,Someone recalls a blissful - looking someone lying in bed with him and stroking his face. He,surfaces from the memory and reaches for a plastic bucket on the side of the bath.,deflects the current cocaine.,breathes lightly and caresses his hair.,looks back at the beaming master.,gently cups her face to one side.,gold0-reannot,pos,unl,unl,unl,pos,Someone recalls a blissful - looking someone lying in bed with him and stroking his face.,He\nlsmdc1057_Seven_pounds-98195,4585,\"Someone rocks back a forth. Someone,\",admires her engagement ring.,\"in red, recalls his mark.\",\"wearing her suit, watches as she turns on.\",someone and someone haul in.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone rocks back a forth.,\"Someone,\"\nlsmdc1057_Seven_pounds-98195,4599,\"He tears up the shower curtain, bringing it and the rail down on himself. Someone\",\"lurches toward someone, who's been thrown from the car and lies on the dark road.\",\"stares onto the place, before spinning himself around himself.\",\"steps out of jetting telegraph equipment and approaches it, his hands up behind the desk.\",strolls toward a lit gate.,is left buffing his feet on some rocks.,gold1-reannot,pos,unl,unl,unl,unl,\"He tears up the shower curtain, bringing it and the rail down on himself.\",Someone\nlsmdc0001_American_Beauty-45548,11664,\"Someone stands in front of the mirror, wearing her suit once more, applying lipstick. She\",stares at her reflection critically.,\"enters and descends the stairs, looking in.\",\"smiles sadly at him, then tries her own.\",screams and spreads his hands over his face.,averts her eyes as someone hugs them.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stands in front of the mirror, wearing her suit once more, applying lipstick.\",She\nlsmdc0001_American_Beauty-45548,11669,\"The woman wrinkles her face, skeptical. Someone\",\"enters, followed by a different couple in their fifties.\",stops fast and stares at it.,licks her fingers and glances at album.,shifts and shifts uncomfortably.,,gold1-orig,pos,unl,pos,pos,n/a,\"The woman wrinkles her face, skeptical.\",Someone\nlsmdc0001_American_Beauty-45548,11667,\"Smiling, someone leads a man and woman into the living room. They are thirtyish, and they\",'ve seen a lot of houses today.,are dressed too wearing her hoodie.,begin to iron a robe behind the counter.,prepare for their rooms.,seem to be trying to happen.,gold1-orig,pos,unl,unl,unl,unl,\"Smiling, someone leads a man and woman into the living room.\",\"They are thirtyish, and they\"\nlsmdc0001_American_Beauty-45548,11661,\"Throughout all this, she keeps repeating to herself. She\",\"neatly arranges her sales materials on a desk, then strips down to her undergarments.\",is cocked and pain.,whacks her with the was - rubbed and furious.,does moving shoulder ceilings and is once again staring in a pose.,fingers harold the short blonde girl.,gold1-orig,unl,unl,unl,unl,unl,\"Throughout all this, she keeps repeating to herself.\",She\nlsmdc0001_American_Beauty-45548,11666,\"The front door opens to reveal someone, greeting us with the smile she thinks could sell ice to an Eskimo. Smiling, someone\",leads a man and woman into the living room.,spots someone and covers him with his hands.,\"looks through the surprised, then locks the door to a music store.\",gives a bitter smile and dashes to the garden.,\"catches up to someone, who looks him in the eye.\",gold1-orig,pos,unl,unl,pos,pos,\"The front door opens to reveal someone, greeting us with the smile she thinks could sell ice to an Eskimo.\",\"Smiling, someone\"\nlsmdc0001_American_Beauty-45548,11670,\"Someone enters, followed by a different couple in their fifties. Someone\",\"stands with a different couple: african american, late twenties.\",takes his cell phone from his pocket and hangs it on the phone.,\"notices, searching his face.\",moves to her car.,drinks from a mug - sized mug.,gold0-orig,pos,unl,unl,unl,unl,\"Someone enters, followed by a different couple in their fifties.\",Someone\nlsmdc0001_American_Beauty-45548,11662,\"She neatly arranges her sales materials on a desk, then strips down to her undergarments. And\",vacuums a dirty carpet that will never be clean.,blond remain on her own.,guides the reptile stick upward.,\", she sits with an exposed tactical team and grabs her underwear.\",\"center coach, she bows, holding a tiny, disheveled kitchen and a chainsaw.\",gold1-orig,unl,unl,unl,unl,unl,\"She neatly arranges her sales materials on a desk, then strips down to her undergarments.\",And\nlsmdc0001_American_Beauty-45548,11663,And vacuums a dirty carpet that will never be clean. Someone,\"stands in front of the mirror, wearing her suit once more, applying lipstick.\",tiles is seen as the chemical.,\"feet still in sparkly parts, pattern pet parts in more parts appear.\",sands on his face and explains together to move about them assembling.,looks amazed and does the washing back and running dishes.,gold1-orig,pos,unl,unl,unl,unl,And vacuums a dirty carpet that will never be clean.,Someone\nlsmdc0001_American_Beauty-45548,11668,\"They are thirtyish, and they've seen a lot of houses today. The woman\",\"wrinkles her face, skeptical.\",puts ornaments onto a tree and begins to add a pair of cute brown shoes shaped icing.,helps the two art out.,stands up at the ready and waves to the floor.,defiantly inspects the stands in her finger.,gold0-reannot,pos,unl,unl,unl,unl,\"They are thirtyish, and they've seen a lot of houses today.\",The woman\nlsmdc0001_American_Beauty-45548,11665,She stares at her reflection critically. She,\"says this as if it were a threat, then notices a smudge on the mirror and wipes it off.\",\"takes several steps, still creating sneezes, then returns to the canvas.\",\"shakes revealing, dotting her shoulder tips from under the veil.\",strides out to meet someone.,presents a toy flower.,gold1-reannot,pos,unl,unl,pos,pos,She stares at her reflection critically.,She\nanetv_7coVNZXiU6U,13887,The camera pans to a close up of the woman in the kitchen chair who has had most of her hair cut off and now how a very short haircut. The camera,cuts again to the man who first appears in the film and a shot of a digital clock displaying the time.,zooms back into the hair mirror.,moves across the tight around several braids as she braids the bangs on her knees while pausing to comb the side of her hair.,\"shows individual ingredients in person's hands, easily putting it on a piece that cuts up to a large hair bun.\",,gold0-orig,pos,unl,unl,unl,n/a,The camera pans to a close up of the woman in the kitchen chair who has had most of her hair cut off and now how a very short haircut.,The camera\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10101,He soars into the barn. Someone,knits her brow and follows him inside.,\"grabs a lantern, finds a weapon raised in its position.\",he pulls out his pen and hands it to him.,puts his wings on his elbow and inspects them.,looks at someone's mom with a determined gaze.,gold0-orig,pos,unl,unl,unl,unl,He soars into the barn.,Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10100,\"Later, he flies to a fence and burps. He\",soars into the barn.,throws a snowball from the steeple.,peeks in at someone's prom date.,wears a welcoming grin as they approach the wall below.,,gold0-orig,pos,unl,unl,pos,n/a,\"Later, he flies to a fence and burps.\",He\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10103,\"Now inside, someone repairs the window. She\",smooths putty at the seam.,\"picks up the handgun, staring at someone, who takes his gun.\",gets into a car.,glances over her shoulder then crosses.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now inside, someone repairs the window.\",She\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10099,\"He eyes someone suspiciously as she cooks, then strides to a seat at the head of the table. Someone\",stares at his headgear and cocks her head.,drives her own bandaged hand.,escorts her to the observation booth.,takes a dressing owner's sarcastic paw and hits them closely.,checks gotten out from some pills and hands it back to someone.,gold0-orig,pos,unl,unl,unl,unl,\"He eyes someone suspiciously as she cooks, then strides to a seat at the head of the table.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10098,Someone marches downstairs in purple pajamas and a full - face gas mask with a single snout - like filter. He,\"eyes someone suspiciously as she cooks, then strides to a seat at the head of the table.\",pushes open the parlor lamp.,\"inspects the cut, flinging it out of his open window.\",performs tricks on the long grass.,,gold1-orig,pos,unl,unl,unl,n/a,Someone marches downstairs in purple pajamas and a full - face gas mask with a single snout - like filter.,He\nlsmdc3051_NANNY_MCPHEE_RETURNS-24705,10102,Someone knits her brow and follows him inside. She,peeks into the hole.,picks someone up from the phone.,\"touches his face, then wanders toward his house.\",\"heads back toward someone, who gently caresses his shoulders.\",,gold1-reannot,pos,unl,unl,pos,n/a,Someone knits her brow and follows him inside.,She\nlsmdc0001_American_Beauty-45583,1387,\"Someone, watching from the stands, picks out his daughter. Someone\",\"performs well, concentrating.\",looks at things tears in his eyes.,sees the school woman.,touches someone's cheeks.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone, watching from the stands, picks out his daughter.\",Someone\nlsmdc0051_Men_in_black-71253,4153,Someone watches as the Bug continues its howl of triumph. he feels totally defeated. Someone,knows what he has to do.,whirls around with the silvery white man.,knocks the glass down some more.,\"is spiraling - impatient as he makes his way between the ascending, railing.\",points in someone's direction.,gold0-orig,pos,unl,unl,unl,pos,Someone watches as the Bug continues its howl of triumph. he feels totally defeated.,Someone\nanetv_rSGgal9LtDk,11933,\"In front of the toaster, a block of white cream and a banana is sitting on a white plate. Next, two slices of bread\",are in the toaster going up and down.,\"takes place and rubs them on holograph cheese, then spread the bread into a long platter of onion cheese and cheese on the.\",gets on the table and takes a bite out of a sandwich.,are shown that are the ingredients that are attached to the counter.,,gold1-orig,pos,unl,unl,unl,n/a,\"In front of the toaster, a block of white cream and a banana is sitting on a white plate.\",\"Next, two slices of bread\"\nanetv_rSGgal9LtDk,11932,\"A white Breville toaster is sitting on a counter being plugged. In front of the toaster, a block of white cream and a banana\",is sitting on a white plate.,is then shown on the spaghetti.,appears and discusses out of the viewers.,is including presenting the knife on full face.,is placed on a table of flour in a shower.,gold0-orig,pos,unl,unl,unl,unl,A white Breville toaster is sitting on a counter being plugged.,\"In front of the toaster, a block of white cream and a banana\"\nanetv_B5Ea3Bs8hC4,3267,\"The man goes back to the pink bucket to wash another dark item clothing, he wrings it out in the pink bucket, throws it in the yellow bucket, then wrings his hands together a few times while staring at the camera. There\",are people walking behind the man as he's washing and wringing out the clothing.,are a drawing of him making wiping down and taking an envelope into the box.,is a wall of dust with him.,man is putting a cloth on the table as he moves the process and puts it in the pack.,\"enter and then he shakes hands by himself, while the man is on the other gazes, starts to release his hair then collapse\",gold0-orig,pos,unl,unl,unl,unl,\"The man goes back to the pink bucket to wash another dark item clothing, he wrings it out in the pink bucket, throws it in the yellow bucket, then wrings his hands together a few times while staring at the camera.\",There\nlsmdc1041_This_is_40-9230,11808,\"Entering the parking lot together, someone moves in front of someone and heads to her silver suv. Someone\",strolls toward his blue sedan and pulls the keys from his pocket.,exits with a taxi and fixes their mugs instead.,climbs lazily with a cold stare.,shifts her amusement towards someone's bed.,\"abrupt her breath, the elevator slowly opens.\",gold0-orig,pos,unl,unl,unl,unl,\"Entering the parking lot together, someone moves in front of someone and heads to her silver suv.\",Someone\nlsmdc1041_This_is_40-9230,11809,Someone strolls toward his blue Sedan and pulls the keys from his pocket. The couple,enters separate vehicles at the same time.,takes the wheel off.,presents a tag to someone.,walk out with their guns drawn.,watch as someone approaches a building building flanked by various vendors.,gold0-orig,pos,unl,pos,pos,pos,Someone strolls toward his blue Sedan and pulls the keys from his pocket.,The couple\nlsmdc1041_This_is_40-9230,11806,\"Now, they exit the school and walk side by side, both wearing mischievous grins. They\",\"continue walking, coyly avoiding each other's gaze.\",\"shrieks almost muscled, and seems to be stopped by a pool.\",are walking in front of a huge map and step into a gymnasium.,\"stares at the pedestal for a moment, then crosses gliding through the glittering maze marble gradually in the gravel pit.\",proceed to the front door where one of them blocks them.,gold0-orig,pos,unl,unl,unl,unl,\"Now, they exit the school and walk side by side, both wearing mischievous grins.\",They\nlsmdc1041_This_is_40-9230,11807,\"They continue walking, coyly avoiding each other's gaze. Entering the parking lot together, someone\",moves in front of someone and heads to her silver suv.,joins someone and someone at the fast dining table.,crosses the other room and allows a brief smile.,nods as she heads over to the window and leaves.,puts his arm around someone's shoulders.,gold0-orig,pos,unl,unl,unl,pos,\"They continue walking, coyly avoiding each other's gaze.\",\"Entering the parking lot together, someone\"\nanetv_B-6kP8M_GmM,19090,He is shown playing a game with a virtual sumo wrestler. The shorter man,stops to talk to the camera for an extended period.,speaks to the camera smiling.,\"looks to the judge, kicks them then makes them work.\",bounces into a man's head to a man in the last harness to do motocross moves.,,gold1-orig,pos,unl,unl,unl,n/a,He is shown playing a game with a virtual sumo wrestler.,The shorter man\nanetv_B-6kP8M_GmM,19087,A man walks up holding a basketball. Scenes,\"are shown of him playing the game, along with several images of him standing.\",are about writing on it.,see the blue team rush to.,man walks to him.,of the sentence are shown.,gold0-orig,pos,unl,unl,unl,pos,A man walks up holding a basketball.,Scenes\nanetv_B-6kP8M_GmM,19088,\"Scenes are shown of him playing the game, along with several images of him standing. He\",is talking to a man much shorter than him.,sprays them together with a bat.,follows a acrobatic skating road with an wheeler of holographic cameras in a field.,is shown using tennis pads as he walks into the plaza.,\"is next in the snow, playing with the robot and smiling to him.\",gold1-orig,pos,unl,unl,unl,pos,\"Scenes are shown of him playing the game, along with several images of him standing.\",He\nanetv_B-6kP8M_GmM,15184,The men then begin playing basketball while constantly bumping into one another. The men continue hitting one another and the host,speaks to the camera.,kicks another ball accidentally hits them.,speaking to the camera.,puts his feet in the air.,shows off the nerds posing with a shot in slow motion.,gold0-reannot,pos,unl,unl,unl,pos,The men then begin playing basketball while constantly bumping into one another.,The men continue hitting one another and the host\nanetv_0y_5NIIvUzI,15199,A man holding a beer talks to two men on a ski slope. A man,wearing a yellow sweater and holding a beer stretches on a ski slope.,takes all of the ramp with him.,puts silver sticks on the fake kindling in front of a house.,puts his shoes in the foot and watches them perform.,skateboard in a yellow shirt and irons the front hood.,gold0-orig,pos,unl,unl,unl,unl,A man holding a beer talks to two men on a ski slope.,A man\nanetv_0y_5NIIvUzI,15202,A large crowd of spectators standing on the slopes watching the skiing athletes compete in different competitions. A skier,performs a free style skiing performance as he falls and rolls down hill.,swings a rope in acrobatic flips.,skate on the board show a different man with men interviewed and other locations.,boy is bungee jumping on it and climbs back off the mountain onto a wakeboard.,\"reverses turns a wave making a high jump, jump over the horizontal line of a bridge, then jump up.\",gold0-orig,pos,unl,unl,unl,pos,A large crowd of spectators standing on the slopes watching the skiing athletes compete in different competitions.,A skier\nanetv_0y_5NIIvUzI,15200,A man wearing a yellow sweater and holding a beer stretches on a ski slope. Scenes of different skiers,jumping and performing tricks on the ski slopes.,begin to plant the wires about the exasperated press.,reaches snowboarders on back.,do jump rope and tricks alongside various whale vibrant living animals.,hiding as well as a tool shown on the ice.,gold0-orig,pos,unl,unl,unl,unl,A man wearing a yellow sweater and holding a beer stretches on a ski slope.,Scenes of different skiers\nanetv_0y_5NIIvUzI,2480,A close up of a news paper is shown that leads into several shots of people talking and a skier falling off a jump. More shots,are shown of skiers falling off jumps as well as falling down the snowy hill while others watch.,are shown of people swinging on kayaks while shooting a pose and waving off more signs.,are shown of different people riding around and doing tricks with firearms showing someone captures the parts.,are shown of people riding in the water as well as showing more riding around around water.,are shown of people playing an tug of war while the camera captures his movements.,gold0-orig,pos,unl,unl,unl,unl,A close up of a news paper is shown that leads into several shots of people talking and a skier falling off a jump.,More shots\nanetv_0y_5NIIvUzI,15201,Scenes of different skiers jumping and performing tricks on the ski slopes. A large crowd of spectators,standing on the slopes watching the skiing athletes compete in different competitions.,runs around the area as a man illuminates stunts on her watch.,assists their skills in the background.,cleans a landscape in snow.,gather around the gym.,gold0-orig,pos,unl,unl,unl,pos,Scenes of different skiers jumping and performing tricks on the ski slopes.,A large crowd of spectators\nanetv_wH-uaN8gL_k,17623,Many kids are in a gym playing dodge ball. The camera,goes to one of the kids showing them making a throw.,falls out of a basket.,pans back to the man as they perform and walk.,hits a ball in front of the pins.,,gold1-orig,pos,unl,unl,unl,n/a,Many kids are in a gym playing dodge ball.,The camera\nanetv_wH-uaN8gL_k,17624,The camera goes to one of the kids showing them making a throw. The kids,run back and forth as the game persists.,go with their arms as they begin to run and across the ground.,step back and fourth while still hanging the cricket ball.,are also playing and talking to each other.,,gold0-orig,pos,unl,unl,pos,n/a,The camera goes to one of the kids showing them making a throw.,The kids\nanetv_wH-uaN8gL_k,6357,The group plays a game of dodgeball against other kids. The group,continue playing with one another while the camera moves around.,juggles a lacrosse game.,goes down the slide.,hits the ball hitting each other.,,gold0-orig,pos,unl,pos,pos,n/a,The group plays a game of dodgeball against other kids.,The group\nanetv_wH-uaN8gL_k,6356,A large group of people are seen running around a gym. The group,plays a game of dodgeball against other kids.,continues to stand around in the end.,speak to one another before jumping down.,are then seen moving around and down the middle of the track.,runs down the track and ends with them jumping down.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen running around a gym.,The group\nanetv_5aMigcn2cU8,18203,They are then shown performing an art exercise called zumba inside a building. They,\"dance back and forth in unison, then are shown posing together at the end as musical notes float across the screen.\",are showing techniques on them.,kick at a camera as other people watch straight.,\"all stand up together, moving their hands in the air with them.\",do additional words to each other and then stops and keeps dancing together.,gold1-orig,pos,pos,pos,pos,pos,They are then shown performing an art exercise called zumba inside a building.,They\nanetv_5aMigcn2cU8,18202,A group of two women and two men pose together. They,are then shown performing an art exercise called zumba inside a building.,\", a man appears reporter jack a wall with photographers.\",are playing a shuffleboard on the ice.,begin playing a game of table hockey.,advance and jump toward one another.,gold1-orig,pos,unl,unl,unl,pos,A group of two women and two men pose together.,They\nanetv_MXbwIfqSq_Q,17904,The man in gray out is standing in a room and started to rotate his hands forward and backward. The man,is swaying side to side and move his arms in front of him.,is on the parallel bars on the bars.,does an iron once more.,is crossing the closely painted wooden bars.,finishes his drink routine.,gold0-orig,pos,unl,unl,unl,unl,The man in gray out is standing in a room and started to rotate his hands forward and backward.,The man\nanetv_MXbwIfqSq_Q,17903,A picture of a man is shown and then drawings of human vertebrae. The man in gray out,is standing in a room and started to rotate his hands forward and backward.,is shown using the scissors to move themselves along a wall.,in a suit while the camera is seen holding the lens from his face.,is standing on the field to full beach.,begins showing various tools and elliptical products.,gold0-reannot,pos,unl,unl,unl,unl,A picture of a man is shown and then drawings of human vertebrae.,The man in gray out\nlsmdc1041_This_is_40-8962,4100,\"Someone leans in, devours the treat, and throws the last bite away. Now, he\",jogs on a treadmill with electrodes dotting his bare chest.,sniffs the viewer and lurches the new flower in its nostril.,takes the page by a large book which stands staring at it.,has slipped a finger in it and opens it to you.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone leans in, devours the treat, and throws the last bite away.\",\"Now, he\"\nlsmdc1041_This_is_40-8962,4092,She breaks up a pack of cigarettes and throws them away. She,overturns a small pouch into the bin.,looks up and sees someone facing her with the other burning cameras.,\"falls across the street, stunned by a figure huddled motionless.\",pours over her fingers friend the phone.,\"steals the popcorn, and eats chips.\",gold0-orig,pos,unl,unl,unl,unl,She breaks up a pack of cigarettes and throws them away.,She\nlsmdc1041_This_is_40-8962,4104,\"His doctor bends close from behind, thrusts his finger out of view and works it around. Now, someone\",sits with her feet in stirrups.,\"sits by the truck with his eyes fixed on a neighboring window, with a broad smile on his face.\",\"spots someone opposite a car, smiling onstage.\",sits in her bedroom working on the canvas jogging by herself.,,gold0-orig,pos,unl,unl,unl,n/a,\"His doctor bends close from behind, thrusts his finger out of view and works it around.\",\"Now, someone\"\nlsmdc1041_This_is_40-8962,4095,He throws the cupcakes in one at a time. Someone,pauses at the last cupcake and takes a deep breath.,plays someone's house as she returns.,blinks on the wine.,hastily tosses down pieces of smaller pieces and finds them empty.,puts the plate down and flips off the salad.,gold0-orig,pos,unl,unl,unl,pos,He throws the cupcakes in one at a time.,Someone\nlsmdc1041_This_is_40-8962,4096,Someone pauses at the last cupcake and takes a deep breath. He,\"unwraps the cupcake, then takes a large bite.\",does a hand stand.,takes a fish out of his mouth and lets it fall.,continues to take off his coat.,passes the bar.,gold0-orig,pos,unl,unl,pos,pos,Someone pauses at the last cupcake and takes a deep breath.,He\nlsmdc1041_This_is_40-8962,4094,\"Setting it aside, he opens the trash bin and overturns a large jar of candy. He\",throws the cupcakes in one at a time.,approaches her through the window that leans inside.,looks into the suv and brings the food out.,takes off his seed and tosses it away.,,gold1-orig,pos,unl,unl,unl,n/a,\"Setting it aside, he opens the trash bin and overturns a large jar of candy.\",He\nlsmdc1041_This_is_40-8962,4098,\"He starts to throw the rest in, then hesitates and takes another bite. Chewing blissfully, he\",holds the remainder over the trash.,turns to figure out his erect - eyed routine.,turns back into the auditorium.,\"steps forward, his expression grim.\",collapses a sad slit.,gold0-orig,pos,unl,unl,unl,unl,\"He starts to throw the rest in, then hesitates and takes another bite.\",\"Chewing blissfully, he\"\nlsmdc1041_This_is_40-8962,4101,\"Now, he jogs on a treadmill with electrodes dotting his bare chest. A doctor\",stands close with his hand up someone's hospital gown.,runs towards him and holds up another ax.,presses a photo on the monitors page several steps with him.,pulls up revealing a menu overlooking the map.,\"pulls a camisole off, revealing a molding human foot and a civilian's video size.\",gold0-orig,unl,unl,unl,unl,unl,\"Now, he jogs on a treadmill with electrodes dotting his bare chest.\",A doctor\nlsmdc1041_This_is_40-8962,4103,\"Now, she sits in a dentist's chair. His doctor\",\"bends close from behind, thrusts his finger out of view and works it around.\",nods now.,knocks the wife 'utensils on the ground.,stares up at the ceiling.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, she sits in a dentist's chair.\",His doctor\nlsmdc1041_This_is_40-8962,4099,\"Chewing blissfully, he holds the remainder over the trash. Someone\",\"leans in, devours the treat, and throws the last bite away.\",is seen jumping rope on the camera.,grabs the window covers and falls leaping onto the bed.,gives a jazz ticket to someone.,,gold0-orig,unl,unl,unl,unl,n/a,\"Chewing blissfully, he holds the remainder over the trash.\",Someone\nlsmdc1041_This_is_40-8962,4097,\"He unwraps the cupcake, then takes a large bite. He\",\"starts to throw the rest in, then hesitates and takes another bite.\",garnishes the pasta with a big scoop.,takes a spoonful of caviar off the sandwich.,\"finishes the spoonful, still no shaking his hand.\",,gold1-orig,pos,unl,pos,pos,n/a,\"He unwraps the cupcake, then takes a large bite.\",He\nlsmdc1041_This_is_40-8962,4090,\"Leaving the door open, someone sulks away. Now, someone\",steps out of a side door and opens a trash bin.,drives a hospital corridor.,bolts out of the hall then returns to the front sweaty wall and peeks over.,steps into groggily briefs.,strides down the hallway to the kitchen outside her mother 'apartment building.,gold0-orig,pos,unl,unl,unl,unl,\"Leaving the door open, someone sulks away.\",\"Now, someone\"\nlsmdc1041_This_is_40-8962,4087,Her own hand snatches her out of view and she collapses with her feet sticking out. They slowly,drag out of view.,climb the steps to the street.,turn together toward the pictures.,position up and drop the needle.,,gold0-reannot,pos,unl,unl,pos,n/a,Her own hand snatches her out of view and she collapses with her feet sticking out.,They slowly\nlsmdc1041_This_is_40-8962,4086,\"Now, someone bounces in the doorway across the bathroom between the girls' rooms. Her own hand snatches her out of view and she\",collapses with her feet sticking out.,glances across to the gun behind her.,yanks off the tape.,lowers the door as the elevator enters.,lets him as they play ping.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, someone bounces in the doorway across the bathroom between the girls' rooms.\",Her own hand snatches her out of view and she\nlsmdc1041_This_is_40-8962,4091,\"Now, someone steps out of a side door and opens a trash bin. She\",breaks up a pack of cigarettes and throws them away.,glances at the long blonde woman.,turns around it all and slams the side door shut.,\"opens the foyer and finds someone standing there, staring in wonder.\",leans in and kisses him.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, someone steps out of a side door and opens a trash bin.\",She\nlsmdc1041_This_is_40-8962,4085,\"She hits someone with a pillow. Now, someone\",bounces in the doorway across the bathroom between the girls' rooms.,lies awake in bed and lies in bed beside him.,\"steps out of the house, and both drag the bottle out of the top of a garbage can.\",\"leads his skis down the stream, where it's tires, and he an elderly civilian, turns uneasily to someone.\",,gold1-reannot,pos,unl,unl,unl,n/a,She hits someone with a pillow.,\"Now, someone\"\nlsmdc1041_This_is_40-8962,4088,They slowly drag out of view. Someone,focuses on her homework.,is on this morning at the motel.,stuffs a black robe into a fabric together.,\"sways back and forth, firing at the openings.\",takes his sunglasses off then runs it off in the evening sky.,gold0-reannot,pos,unl,unl,unl,unl,They slowly drag out of view.,Someone\nlsmdc1041_This_is_40-8962,4089,\"Someone focuses on her homework. Playing air guitar, someone\",\"advances toward someone's bed, then retreats to the doorway and flings one arm out.\",is wide - eyed as she reads.,returns to the laptop.,lifts a arms of someone's chain and rubs the back of his neck with his hands.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone focuses on her homework.,\"Playing air guitar, someone\"\nlsmdc3023_DISTRICT_9-10710,8406,\"Later, soldiers bag their comrade's arm. Someone\",holds out a form.,switches on a kiosk.,\"rush into defeated grasp, firing their swords.\",\"stands, grabs his jacket and bows its tie.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"Later, soldiers bag their comrade's arm.\",Someone\nlsmdc3023_DISTRICT_9-10710,8407,Someone holds out a form. Someone,sets the can down.,aims his wand and aims people at the wall.,finds the identical spider inside.,approaches someone's hand.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone holds out a form.,Someone\nanetv_EbGq9gXcXLQ,16198,\"He is sitting on a black stool and he is in between two microphones to record what is going on. In the end of the video, he\",slows down and stops playing the drums.,continues someone frantically in front of him.,is still seated again.,wipes his face with a towel.,is playing a set of pipes on an imaginary set of drums.,gold1-orig,pos,unl,pos,pos,pos,He is sitting on a black stool and he is in between two microphones to record what is going on.,\"In the end of the video, he\"\nanetv_EbGq9gXcXLQ,16197,This man is beating on the congas using the palms of his hands and he also makes fists sometimes to make a deeper sound. He is sitting on a black stool and he,is in between two microphones to record what is going on.,is conceals his mood.,\"begins hitting the drums again, gets up and looks away from the increase of waste.\",\"has mans hair sneakers, brown with a blue headset white and grey shirt and a rock and black leather shirt.\",begin hitting a football set for drum going as a contractor goes to trying to hit him.,gold0-orig,pos,unl,unl,unl,unl,This man is beating on the congas using the palms of his hands and he also makes fists sometimes to make a deeper sound.,He is sitting on a black stool and he\nanetv_EbGq9gXcXLQ,5299,The man moves his hands all along the drum set while the camera captures his movements. He,continues to play on the set and look off into the distance.,begins to advance on the drum while speaking to the camera in slow motion.,continues to play his harmonica on the side while pausing for the game.,continues playing in the end and ends by walking away and playing up to its side.,points at the camera while continuing to push the instrument back and forth.,gold1-reannot,pos,unl,unl,unl,unl,The man moves his hands all along the drum set while the camera captures his movements.,He\nanetv_gSeE_Ms-2TI,16988,A man is seen kneeling down on a roof and speaking to the camera. The camera,pans all around the roof while the man is seen sitting and still speaking.,pans all the room while a woman speaks to the camera.,pans several pictures on the wall and ends by a man speaking to the camera.,moves around the yard while holding up various tools and smiling to the camera.,leads to a large building and leads into a man laying out on a roof.,gold0-orig,pos,unl,unl,unl,pos,A man is seen kneeling down on a roof and speaking to the camera.,The camera\nanetv_gSeE_Ms-2TI,16989,The camera pans all around the roof while the man is seen sitting and still speaking. The camera pans all around the roof and,shows the man still sitting.,leads into a man lifting a man off the ground.,leads into the two of the men washing.,shows the video ending.,leads into her smiling at the camera.,gold0-reannot,pos,unl,unl,unl,pos,The camera pans all around the roof while the man is seen sitting and still speaking.,The camera pans all around the roof and\nanetv_QQe2n2yjJuc,437,A man falls and a coach speaks to the team that leads into a player scoring a goal and being shown again in slow motion. More shots,are shown of the game being played and end with the team cheering and one man laying on the ground.,are shown of a hockey player scoring on the screen.,\"are shown of people bringing and throwing trophies as well as talking to the camera before a host introduces people, watching the event.\",are shown of people speak to the camera while people watch on the sides.,,gold0-orig,pos,pos,pos,pos,n/a,A man falls and a coach speaks to the team that leads into a player scoring a goal and being shown again in slow motion.,More shots\nanetv_QQe2n2yjJuc,210,People are playing indoor soccer in an arena. People,are cheering in the crowd watching.,are playing polo in a field.,are snowboarding down a snowy slope in a competition.,play a game of rock paper scissors.,are throwing a ball after the ball.,gold0-orig,pos,unl,unl,unl,pos,People are playing indoor soccer in an arena.,People\nanetv_QQe2n2yjJuc,436,A large group of people are seen playing a soccer match as well as audience members watching their reactions. A man falls and a coach,speaks to the team that leads into a player scoring a goal and being shown again in slow motion.,wearing green stands behind him and once the host cheers and demonstrates how to play with the men as well as spectators.,captures one man from the end of the ship.,and a laugh as the video begins.,,gold0-reannot,pos,unl,unl,unl,n/a,A large group of people are seen playing a soccer match as well as audience members watching their reactions.,A man falls and a coach\nlsmdc0017_Pianist-56436,5783,\"Someone lies inert on the bed, weak, starving, ill. Someone, no longer pregnant, and someone enter,\",come to the bed.,wearing exactly tunic - beautifully heels.,generally lingering in her embrace.,glancing up at the boy.,unnoticed by the d.,gold0-orig,pos,unl,unl,pos,pos,\"Someone lies inert on the bed, weak, starving, ill.\",\"Someone, no longer pregnant, and someone enter,\"\nlsmdc0017_Pianist-56436,5785,\"Someone goes to the kitchen, wets a towel, comes back to the bed, kneels it, places the towel on someone's brow. He\",\"focuses on her, smiles.\",slides along the wall.,picks up his bag and hesitates.,\"starts talks into his stomach, and on a worktop.\",looks at someone for a better look.,gold0-orig,pos,unl,unl,unl,unl,\"Someone goes to the kitchen, wets a towel, comes back to the bed, kneels it, places the towel on someone's brow.\",He\nlsmdc0017_Pianist-56436,5784,\"Someone, no longer pregnant, and someone enter, come to the bed. Someone\",barely has strength to open his eyes and focus on them.,pulls a holder on the popcorn.,slaps him awake and writhes.,sits parked in her car.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone, no longer pregnant, and someone enter, come to the bed.\",Someone\nanetv_hXjxOvlNxQM,6787,\"The wrestler lifts him up into the air. Lastly, the wrestler\",drops him hard onto the floor.,gives a guy a shake of weight.,hugs his teammates and tenses.,lifts both hands in triumph.,,gold0-orig,pos,unl,unl,pos,n/a,The wrestler lifts him up into the air.,\"Lastly, the wrestler\"\nanetv_hXjxOvlNxQM,6786,A wrestler picks up another wrestler from the ground. The wrestler,lifts him up into the air.,jumps off the mat and positions himself on the corner.,jumps off the back of the falls.,tries to sit down while another man hugs the other man.,throws spins up into the air and then runs back his opponent.,gold1-orig,pos,unl,unl,unl,unl,A wrestler picks up another wrestler from the ground.,The wrestler\nanetv_WdC6dVbfTvs,15819,Afterwards the girl stands up talks to he friend and looks in the mirror. In the end the camera man,turns around and speaks to the camera with authority.,returns to shave his body.,applies a false beard to the camera.,gives an interview while walking with balls.,helps a little young man.,gold0-orig,pos,unl,unl,pos,pos,Afterwards the girl stands up talks to he friend and looks in the mirror.,In the end the camera man\nanetv_WdC6dVbfTvs,15816,Initially he uses a piercing tool to make the incision on the belly button. Afterwards he,inserts the piercing and makes sure its secure.,is sitting back in the bath tub with his water helmet on.,\"washes the white rinsed out with the liquid, then to brush his teeth.\",talks about with pants and a red cloth over his mouth.,keeps playing the belly button and staring off into the distance.,gold0-orig,pos,unl,unl,unl,pos,Initially he uses a piercing tool to make the incision on the belly button.,Afterwards he\nanetv_WdC6dVbfTvs,15818,Than he uses a wipe and cleans the area. Afterwards the girl,stands up talks to he friend and looks in the mirror.,takes his hand and paint and paints it to a man mowing.,clips the styled hair in the face and ends with more text shown on the screen.,looks over an cutter and begins kicking.,shots some white paint on a rag.,gold1-orig,pos,unl,unl,pos,pos,Than he uses a wipe and cleans the area.,Afterwards the girl\nanetv_WdC6dVbfTvs,15817,Afterwards he inserts the piercing and makes sure its secure. Than he,uses a wipe and cleans the area.,grooms the hands and the brushes and checks it around his finger.,can not clean the camera section.,wipes the words to his teeth.,,gold0-reannot,pos,unl,unl,unl,n/a,Afterwards he inserts the piercing and makes sure its secure.,Than he\nanetv_0S0fNrI4oVs,12859,A group of usa olympic fencing champions are shown competing in fencing interspersed with images and graphics advertising an upcoming fencing tournament in nyc. Several images of fencers,are shows interspersed with video of the fencers walking.,are show on the gym grass.,are shown fighting in dim sports.,are shown as they do measuring for cards and one seat together.,,gold0-orig,pos,unl,unl,unl,n/a,A group of usa olympic fencing champions are shown competing in fencing interspersed with images and graphics advertising an upcoming fencing tournament in nyc.,Several images of fencers\nanetv_XhqFJNRt-5g,3285,He ropes a calf and throws it down onto the ground. He,ties the legs of the calf and stands up.,lands on top of someone.,ties the calf while still tying the calf and ties it up for calf.,climbs on to the horse.,tries to release the calf.,gold0-orig,pos,unl,unl,unl,pos,He ropes a calf and throws it down onto the ground.,He\nanetv_XhqFJNRt-5g,3284,Behind the fence a man is riding a horse. He,ropes a calf and throws it down onto the ground.,glances around and gets to his feet.,is pulling the plow behind the object.,\"gets off the horse and jumps on its back, then rides back to several others.\",\"rubs his mouth, pretending to brush his teeth.\",gold0-orig,pos,unl,unl,unl,unl,Behind the fence a man is riding a horse.,He\nanetv_XhqFJNRt-5g,3286,He ties the legs of the calf and stands up. He,gets back on his horse.,catches a cow and escapes across the bridge.,\"heads off, undoes the overcoat, and gently touches the front of someone's head.\",ropes and swings his legs up the calf rope.,hold and watch an instructor scowl.,gold0-orig,pos,unl,pos,pos,pos,He ties the legs of the calf and stands up.,He\nanetv_XhqFJNRt-5g,3283,People are walking in front of a white fence. Behind the fence a man,is riding a horse.,is painting a fence.,is around the side of a fence.,speaks into a microphone.,,gold0-orig,pos,pos,pos,pos,n/a,People are walking in front of a white fence.,Behind the fence a man\nlsmdc1024_Identity_Thief-82571,11058,\"He inputs the code and they slide open. As he quickly enters, someone\",finds the room vacant.,pulls out the keys.,snaps it in half.,puts his arm up.,,gold0-orig,pos,unl,unl,unl,n/a,He inputs the code and they slide open.,\"As he quickly enters, someone\"\nlsmdc1024_Identity_Thief-82571,11057,\"The burner finishes processing and prints out the card. Smiling, someone\",hands it to someone.,nods to his fellow students.,goes to study someone.,is standing by him and lays him on the ground.,rides along past him.,gold0-orig,pos,unl,unl,unl,unl,The burner finishes processing and prints out the card.,\"Smiling, someone\"\nlsmdc1024_Identity_Thief-82571,11060,\"He steps toward the computer with wide eyes. Now, people\",exit the building through an unmarked alley door.,run past his house and walk to a plaza where agent someone watches from a booth into the kitchen.,pick up the notebook as the wind rings above him.,show a nightclub day and leafy in shades.,hurry on past a small robotic wall.,gold0-orig,pos,unl,unl,unl,unl,He steps toward the computer with wide eyes.,\"Now, people\"\nlsmdc1024_Identity_Thief-82571,11055,He sits at his computer and logs into company records. Someone,enters someone's information into a card burner and inserts a blank card.,\"leans forward and withdraws the head, keeping his hands tied around a desk.\",ushers a coffee shop.,covers the pages of his manuscript.,rolls up a note.,gold0-orig,pos,unl,unl,unl,pos,He sits at his computer and logs into company records.,Someone\nlsmdc1024_Identity_Thief-82571,11052,He finds someone's records in a box. Someone,plugs a flash drive into the credit card burner.,\"closes the cruiser, his eyes widen.\",walks up on sunny auditorium building.,picks up the automaton's pages and frowns.,is trying to make himself this.,gold1-orig,unl,unl,unl,unl,unl,He finds someone's records in a box.,Someone\nlsmdc1024_Identity_Thief-82571,11053,\"Someone plugs a flash drive into the credit card burner. On the records computer, someone\",logs into the network.,hands a plate to an elderly woman.,glares at someone with his binoculars.,answers his cell phone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone plugs a flash drive into the credit card burner.,\"On the records computer, someone\"\nlsmdc1024_Identity_Thief-82571,11054,\"In his office area, someone stares off with a furrowed brow. He\",sits at his computer and logs into company records.,bellows a decision in the stone bucket house.,shoves someone into his room.,tosses him back in front of someone.,shines his flashlight from a rag.,gold0-orig,pos,unl,unl,unl,unl,\"In his office area, someone stares off with a furrowed brow.\",He\nlsmdc1024_Identity_Thief-82571,11056,\"Someone enters someone's information into a card burner and inserts a blank card. On someone's computer, he\",sees someone's actual photo.,rubs his back on it.,dials some paperwork.,picks up the phone and kneels down to the open door.,,gold0-orig,pos,unl,unl,unl,n/a,Someone enters someone's information into a card burner and inserts a blank card.,\"On someone's computer, he\"\nlsmdc1024_Identity_Thief-82571,11051,\"On a security monitor, someone enters the code. Our view\",lowers inside the records room as a glass door and metal gate slide open.,stops as the guy spies him on the stairwell and the two men step out onto a catwalk.,focuses on the three captives as two wheel reward weapons in the ground.,drifts to a figure completely lost in a flying position.,sweeps over the tactical vest over the dark - haired perimeter.,gold0-reannot,pos,unl,unl,unl,unl,\"On a security monitor, someone enters the code.\",Our view\nlsmdc1034_Super_8-7965,13685,\"Someone stops sponging on the makeup and stares at her uncertain of how to respond. She does so, and he\",dabs makeup onto her eyelids.,\"backs off, sometimes in silence.\",turns his head to see someone watch it.,walks away as someone walks through the dressing room.,,gold0-orig,pos,unl,unl,pos,n/a,Someone stops sponging on the makeup and stares at her uncertain of how to respond.,\"She does so, and he\"\nlsmdc1034_Super_8-7965,13684,Someone gently applies someone's makeup with a sponge. Someone,stops sponging on the makeup and stares at her uncertain of how to respond.,turns her head tearfully and bleary eyes on someone as she heads out of the room.,hangs on tight helplessly.,slumps to the floor.,looks at the wheel.,gold0-orig,pos,unl,unl,unl,unl,Someone gently applies someone's makeup with a sponge.,Someone\nlsmdc1034_Super_8-7965,13683,She ties her hair back from her face. Someone,gently applies someone's makeup with a sponge.,swims out of the shower.,walks lost in thought.,slaps herself in the back.,,gold0-orig,pos,unl,unl,pos,n/a,She ties her hair back from her face.,Someone\nlsmdc1034_Super_8-7965,13682,He starts gently sponging it on. She,ties her hair back from her face.,pushes him angrily and hugs back his tears.,angles he tells himself arrogantly now moves easily.,runs his hand over the strings.,,gold0-orig,pos,unl,unl,unl,n/a,He starts gently sponging it on.,She\nanetv_zKYqEsVfEnU,291,Two men are seen standing together with one speaking to the camera and the other laying on the floor. The man,kneels behind him and points to his body while the man laying door moves his arms and legs to demonstrate proper exercises.,continue bouncing around on the floor while holding up a small tennis racket in the middle of the room.,continues grabbing the table and turning around and ends with him running along.,speaks to the camera while the camera man zooms in on the product and the man wipes away of the stick and speaks again.,plays on the wall while looking at the camera.,gold1-orig,pos,unl,unl,unl,unl,Two men are seen standing together with one speaking to the camera and the other laying on the floor.,The man\nanetv_FQEGKGn9vnU,18103,A little girl climbs to the top of a slide. She then,\"sits down, and slides to the bottom.\",hops over monkey bars in the end.,flips on monkey bars.,slides down the rope.,mounts down and moves on to monkey bars.,gold0-orig,pos,unl,unl,unl,pos,A little girl climbs to the top of a slide.,She then\nanetv_FQEGKGn9vnU,17059,A girl climbs up stairs on the playground. People,are sitting on a hill watching them play.,walk next to her.,slide under the water slide to slide backward.,practice to jump in the spotlight beam.,slide down on a slide.,gold1-orig,pos,unl,unl,unl,pos,A girl climbs up stairs on the playground.,People\nanetv_FQEGKGn9vnU,17058,A girl climbs up a slide and goes back down several times. A girl,climbs up stairs on the playground.,gets on the hopscotch board and tries to get off the camera.,lifts a baby rope and pumps.,puts a blue top onto it.,jumps at the end.,gold1-orig,pos,unl,unl,unl,pos,A girl climbs up a slide and goes back down several times.,A girl\nanetv_cdpPn-7R3GQ,3269,A group of balls are on a pool table being shot. Two men,\"are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink.\",retreat until they reach the cup.,are talking in front of the large bedding where they are preparing to throw balls.,are in a circle holding rackets.,hit the ball back and forth over the net.,gold0-orig,pos,unl,unl,unl,unl,A group of balls are on a pool table being shot.,Two men\nanetv_cdpPn-7R3GQ,17965,A cue hits a stack of pool balls. Two men,are shown playing a game of pool and talking.,are dancing on a basketball court.,are swimming in a swimming pool.,are standing in a field lined with white ball.,are sitting behind a copper pong table.,gold0-orig,pos,unl,unl,unl,unl,A cue hits a stack of pool balls.,Two men\nanetv_cdpPn-7R3GQ,3270,\"Two men are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink. The man\",is shown interviewing numerous different people while talking about the drink.,holds up the blue reeling and shows assistance as well as they captures showing their fitness items and using their hands.,comes to the room and makes a point and cheer as well as people sitting on the sides.,speaks to the camera with several shots of the surrounding rocks and under touches of the contents in the end.,continues doing how to play whiskey and mixing it several other times trying to act exactly a drink.,gold0-reannot,pos,unl,unl,unl,unl,\"Two men are shown playing a game of pool, then standing and talking with their sticks and drinking an energy drink.\",The man\nanetv_4mRdgV8t4KY,9091,People are riding horses in an indoor arena. People,are sitting outside the arena watching them.,wash bow and arrows in a field.,are riding horses in a park.,are riding in a game of tug of war.,,gold0-orig,pos,unl,unl,unl,n/a,People are riding horses in an indoor arena.,People\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19231,\"Now on the arm of a groomsman, someone leads the bridal procession down a grassy aisle. She\",\"grins girlishly at someone, who smiles from his seat among the guests.\",\"beckons a student, and someone squats in front of him and continues to speak.\",looks at the twister and nods.,trudges up a sidewalk toward someone as she glares at him.,points towards a sugar - hula fountain in the ground.,gold0-orig,pos,unl,unl,unl,unl,\"Now on the arm of a groomsman, someone leads the bridal procession down a grassy aisle.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19230,\"Someone grabs it and takes a grateful bite. Now on the arm of a groomsman, someone\",leads the bridal procession down a grassy aisle.,sits alone with someone.,\"cooks with approval, as he works.\",stares off his entire classroom.,balances on a comfortable spot by a boat with a woman's view.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs it and takes a grateful bite.,\"Now on the arm of a groomsman, someone\"\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19229,Someone pops up from behind a sofa with a Croissan'wich. Someone,grabs it and takes a grateful bite.,turns and approaches the bank.,and someone run to the stairs.,brings someone a bottle of whiskey.,,gold0-orig,pos,unl,unl,unl,n/a,Someone pops up from behind a sofa with a Croissan'wich.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19232,\"She grins girlishly at someone, who smiles from his seat among the guests. Nearby, someone's father\",aims his cell phone camera.,appears behind his desk and smiles at his partner.,gives a sad relief.,looks hard at his cellphone.,,gold0-orig,pos,unl,unl,unl,n/a,\"She grins girlishly at someone, who smiles from his seat among the guests.\",\"Nearby, someone's father\"\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19234,The guests stand as someone's mother walks her down the aisle. The bridal veil catches in a flower arrangement and a guest,helps them untangle it.,juts from his nostrils.,with the stick outside the door.,house is destroyed.,shows both of her own formed crystal perched on it.,gold0-orig,pos,unl,unl,unl,unl,The guests stand as someone's mother walks her down the aisle.,The bridal veil catches in a flower arrangement and a guest\nlsmdc3088_WHATS_YOUR_NUMBER-42402,19233,The wedding planner plays a tuba. The guests,stand as someone's mother walks her down the aisle.,turn toward a grave buffalos in the olympics.,make themselves toward the carriage.,sip her drumsticks and face at the tv.,do the shore a then moves back.,gold0-orig,pos,unl,unl,unl,unl,The wedding planner plays a tuba.,The guests\nlsmdc0006_Clerks-48909,9013,\"She joins them, latching on to someone's arm, lovingly. People\",\"stare at someone, confused.\",are never seen further across.,close into their mouths.,\"takes his keys off the bench, then undoes the belt on his suit jacket.\",\"the next to the violin, someone hand green glock locks are watching them both ni air.\",gold0-orig,pos,unl,unl,unl,unl,\"She joins them, latching on to someone's arm, lovingly.\",People\nanetv_VOyKKN3NdXM,16759,\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people are talking either together or alone. The woman from before who is dressed in an orange and red dress\",appears again and is still holding the white paper as she talks.,is explaining how to make a coffee.,is seen on a skateboard runners she all skateboard his pulling with the matches in slow motion.,is shown falling when they all continue performing this in different locations.,is walking next to them racing with two men.,gold0-orig,pos,unl,unl,unl,unl,\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people are talking either together or alone.\",The woman from before who is dressed in an orange and red dress\nanetv_VOyKKN3NdXM,16758,\"The woman is no longer shown and there are various pictures flashing that seem to be about speed car wash. A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people\",are talking either together or alone.,are line the car while the lips are visible.,can fix it on the roof to have very steamed photos.,are well and after the car.,,gold1-orig,pos,unl,unl,unl,n/a,The woman is no longer shown and there are various pictures flashing that seem to be about speed car wash.,\"A few short video clips begin and they all take place at the speed car wash company where cars are driving, products are shown, a man is washing a car and various people\"\nanetv_VOyKKN3NdXM,16756,A colorful intro with a lot of flashing words flash across the screen along with a logo and a banner with foreign language written on it. A woman dressed in an orange and red dress and scarf is standing and talking has she,hold white paper in her hands.,demonstrates a ballet floor exercise woman and another woman turns up a perfect finish workout.,makes a choreography in her loose hair.,\"walked with the empties, and after dancing are shown with the girl is in a white plate.\",,gold1-reannot,pos,unl,unl,unl,n/a,A colorful intro with a lot of flashing words flash across the screen along with a logo and a banner with foreign language written on it.,A woman dressed in an orange and red dress and scarf is standing and talking has she\nanetv_VOyKKN3NdXM,16760,The woman from before who is dressed in an orange and red dress appears again and is still holding the white paper as she talks. Flashing words,appear after the woman is talking and continues to the end.,come through her mind.,appear across the screen with colorful clips from the camera.,appear on screen in a row.,are seen on the screen.,gold0-reannot,pos,unl,pos,pos,pos,The woman from before who is dressed in an orange and red dress appears again and is still holding the white paper as she talks.,Flashing words\nanetv_uzgIBU9arcU,5106,A baby is seen swinging back and fourth on a swing while laughing and smiling to the camera. The baby,continues moving back and fourth while looking up to the camera and smiling.,is then seen standing in a swing and then continues on smiling to kids and back to the camera.,continues to swing around on its back and ends by bowing and swinging over the child.,walks into frame and then up to the camera and continues talking for the camera.,continues pulling the ball across the monkey bars.,gold0-reannot,pos,unl,unl,unl,unl,A baby is seen swinging back and fourth on a swing while laughing and smiling to the camera.,The baby\nanetv_3792wPKkdXI,14988,A man and a woman are arm wrestling on top of a table in middle of stage and the woman wins. people,are in stands around the stage watching the competition.,are laying on a table loading the piano and watching a woman with the children.,\"continue to dance together, after one of the women falls.\",dance and dance around the stage.,shake their hands with interviews with her in front of a crowd in the background with an interview cheering and applauding.,gold0-orig,pos,unl,unl,unl,pos,A man and a woman are arm wrestling on top of a table in middle of stage and the woman wins.,people\nlsmdc0027_The_Big_Lebowski-62799,13568,Hairy legs emerge from his khaki shorts. He also,wears a khaki army surplus shirt with the sleeves cut off over an old bowling shirt.,paddles down the steep mangled demon between circling stone platforms.,wears a peach biking styles.,speeds off into the ring as the crowd watches in terror.,,gold0-orig,pos,unl,unl,unl,n/a,Hairy legs emerge from his khaki shorts.,He also\nlsmdc0027_The_Big_Lebowski-62799,13566,We are tracking in on the circular bench towards a big man nursing a large plastic cup of Bud. He,has dark worried eyes and a goatee.,\", apparently covered with a magical shield, does nothing as thick as possible.\",\", someone is already being replaced apprehensively at and now dispute his bags on the ground.\",leans forward as if chatting.,,gold0-orig,pos,unl,unl,pos,n/a,We are tracking in on the circular bench towards a big man nursing a large plastic cup of Bud.,He\nlsmdc0027_The_Big_Lebowski-62799,13564,\"The music turns into boomy source music, coming from a distant jukebox, as the credits end over a clattering strike. A lanky blonde man with stringy hair tied back in a ponytail\",turns from the strike to walk back to the bench.,sits with an old man in the cockpit of a red representing dancefloor.,takes off her tie.,appears on the building.,,gold0-orig,pos,unl,unl,unl,n/a,\"The music turns into boomy source music, coming from a distant jukebox, as the credits end over a clattering strike.\",A lanky blonde man with stringy hair tied back in a ponytail\nlsmdc0027_The_Big_Lebowski-62799,13567,He has dark worried eyes and a goatee. Hairy legs,emerge from his khaki shorts.,flail under the spotlight.,blow out of two opened windows.,\"lie on a construction floor bordering a landscape, held by bare letters.\",,gold0-orig,pos,unl,unl,unl,n/a,He has dark worried eyes and a goatee.,Hairy legs\nanetv_oG4zf8dAQKw,2741,A close up of products are shown followed by a woman open the package in front of a mirror. The woman,\"puts the package into her mouth, swishes it around, then spits it out.\",walks with a rag while looking to the camera and pointing to the camera and blending it in her clothing.,pour a bottle of paint into the case and wipes out her eyes.,places peanut butter onto a plate and then sprays something along the liquid.,moves a brush over the brush and shows off a spray product.,gold1-orig,pos,unl,unl,unl,unl,A close up of products are shown followed by a woman open the package in front of a mirror.,The woman\nlsmdc1040_The_Ugly_Truth-8759,6989,He takes her by the hand and throws his jacket aside. Someone,leads someone onto the dance floor and spins her.,\"picks up the bottle, which is now on a plate.\",stands awkwardly in the doorway.,emerges from a living room.,moving from an office window and penguins running to a desk.,gold0-orig,pos,unl,unl,unl,unl,He takes her by the hand and throws his jacket aside.,Someone\nlsmdc1040_The_Ugly_Truth-8759,7009,\"Someone presses someone against the edge of the open door. Someone's mouth hangs open, and he\",\"walks off, looking shocked.\",unbuttons his t - shirt.,clutches the chain around his head.,reaches over the front door.,drops his gaze to the tile beneath.,gold0-orig,pos,unl,unl,unl,pos,Someone presses someone against the edge of the open door.,\"Someone's mouth hangs open, and he\"\nlsmdc1040_The_Ugly_Truth-8759,6997,\"They hold hands above their heads, and someone sinks down. Someone\",sways rhythmically to the music as someone caresses her hair and runs his hands down her sides.,spins in his surfboard.,gives her a hug.,runs over to someone and sits down again.,straightens and punches her back.,gold0-orig,pos,unl,unl,pos,pos,\"They hold hands above their heads, and someone sinks down.\",Someone\nlsmdc1040_The_Ugly_Truth-8759,7001,Someone forces himself to nod. Someone,smiles nervously and heads off.,walks comical on someone.,holds back up and looks at her father.,puts his hands on each's chest.,finds two flowers and gentlemen taking seats at the appeared of the first floor.,gold0-orig,pos,unl,unl,unl,unl,Someone forces himself to nod.,Someone\nlsmdc1040_The_Ugly_Truth-8759,6992,\"They smile and dance together, back and forth. Someone\",spins someone and leads her.,ogles someone's dark green collar binding them in death.,\"takes two strained breaths, drops one hand, and strikes someone with a ref.\",touches one arm - - someone's fingers steaming along the back of the sphere.,\"clicks his fingers, also looking emotional.\",gold0-orig,pos,unl,unl,unl,pos,\"They smile and dance together, back and forth.\",Someone\nlsmdc1040_The_Ugly_Truth-8759,7012,\"She lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning. She\",takes off her shoes and flings them aside.,\"rises, covering her hands with his.\",stares wide - eyed at someone.,\"pauses for a moment, looking bored.\",,gold0-orig,pos,unl,pos,pos,n/a,\"She lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning.\",She\nlsmdc1040_The_Ugly_Truth-8759,6994,\"She steps away, holding his hands, and returns with her back to him. They\",\"sink down, moving their shoulders seductively from side to side.\",\"tears her pants and musters a slight smile at herself, then wraps the curtains over him and gazes at someone in the audience.\",sits up in her chair.,flips over the headboard and carries her to the bedroom where the pumpkin is lying behind the maize and others look at her.,see the closing credits.,gold1-orig,pos,unl,unl,unl,pos,\"She steps away, holding his hands, and returns with her back to him.\",They\nlsmdc1040_The_Ugly_Truth-8759,7011,\"Someone lets herself into her room, looking equally surprised. She\",\"lets her jacket and bag fall to the floor, drops her key on a table, and flops onto a couch, frowning.\",opens the door to take off her coat and she does it.,rubs someone's face and wraps her arm around his niece.,steps past someone onto the porch and starts to leave.,digs out her cell and shot the check.,gold0-orig,pos,unl,unl,unl,unl,\"Someone lets herself into her room, looking equally surprised.\",She\nlsmdc1040_The_Ugly_Truth-8759,7000,People's noses almost touch. They,\"gaze at each other, with their mouths slightly open, as if they are about to kiss.\",glare at their retreating horses.,licks his lips then switches off.,headstones hurriedly and collapse in front.,burst back over on.,gold0-orig,pos,unl,unl,unl,unl,People's noses almost touch.,They\nlsmdc1040_The_Ugly_Truth-8759,7007,Someone presses buttons and loosens his jacket. She,flashes a smile at him.,opens the garage door.,leans in and kisses her shoulders.,stares at the receiver then closes it.,glances down at the photo.,gold1-orig,pos,unl,unl,unl,unl,Someone presses buttons and loosens his jacket.,She\nlsmdc1040_The_Ugly_Truth-8759,6999,\"Someone wraps her arms around someone's neck, and they dance close. He\",\"spins her back and forth, then pulls her closer.\",\", she steers her head against his shoulder.\",\"up her back, he lifts her off her feet and someone falls to the floor.\",steps aside and faces her with his glazed eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone wraps her arms around someone's neck, and they dance close.\",He\nlsmdc1040_The_Ugly_Truth-8759,7005,He presses the call button. Someone,turns and faces someone.,climbs onto the elevator and opens the door in surprise.,\"points his radio, abruptly.\",\"gets on his feet, walks away.\",,gold1-orig,pos,unl,unl,unl,n/a,He presses the call button.,Someone\nlsmdc1040_The_Ugly_Truth-8759,6993,Someone spins someone and leads her. She,\"steps away, holding his hands, and returns with her back to him.\",\"stares with disdain, her eyes wide.\",heads to the door of a glowering someone.,takes her place by the beam.,spies someone in a room.,gold0-orig,pos,unl,unl,unl,unl,Someone spins someone and leads her.,She\nlsmdc1040_The_Ugly_Truth-8759,6995,\"They sink down, moving their shoulders seductively from side to side. They\",\"turn, round and round, moving smoothly to the music.\",\"as we drift over the rocks where they are smoking, someone's attention is drawn on the bed.\",\", someone lays his hands down her entire body and leans back as if watching for another deep kiss.\",look at each other.,step forward and lay carpet on the carpet.,gold1-orig,pos,unl,unl,pos,pos,\"They sink down, moving their shoulders seductively from side to side.\",They\nlsmdc1040_The_Ugly_Truth-8759,7004,Someone carries her shoes as she walks with someone to an elevator. He,presses the call button.,is in a gym.,opens the door and walks in.,turns down the front of the house.,punches a delighted someone.,gold0-orig,pos,unl,unl,unl,unl,Someone carries her shoes as she walks with someone to an elevator.,He\nlsmdc1040_The_Ugly_Truth-8759,7013,She takes off her shoes and flings them aside. Someone,\"leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door.\",gently dabs the fur of the hair.,and a cameraman watch them jog to the side.,jumps up from the top of the balcony.,continues out of the door for someone.,gold0-orig,pos,unl,unl,unl,pos,She takes off her shoes and flings them aside.,Someone\nlsmdc1040_The_Ugly_Truth-8759,7008,People suddenly wrap their arms around each other and kiss hungrily. Someone,presses someone against the edge of the open door.,later someone kissing someone and her sister.,\"rushes to someone, and the girl reaches for her shoe.\",removes the ring from his nose.,\"has to get some of someone's whiskey, which someone will keep smiling, ruminating, screaming.\",gold0-orig,pos,unl,unl,unl,unl,People suddenly wrap their arms around each other and kiss hungrily.,Someone\nlsmdc1040_The_Ugly_Truth-8759,7010,\"Someone's mouth hangs open, and he walks off, looking shocked. Someone\",\"lets herself into her room, looking equally surprised.\",leans forward and puts his hands in his pockets.,dons his sunglasses as he opens his door.,\"takes off his jacket, takes the gun and drops it down.\",,gold0-orig,pos,pos,pos,pos,n/a,\"Someone's mouth hangs open, and he walks off, looking shocked.\",Someone\nlsmdc1040_The_Ugly_Truth-8759,7003,\"Someone follows, looking dazed. Someone\",carries her shoes as she walks with someone to an elevator.,takes the pen from the gangsters and tosses up a letter.,leaps back and fires on him.,heads for the front window.,whirls away as he walks down through cocktail debris and scans the sparse sidewalk.,gold0-orig,pos,unl,unl,pos,pos,\"Someone follows, looking dazed.\",Someone\nlsmdc1040_The_Ugly_Truth-8759,7006,They step into the elevator and stand side by side. Someone,presses buttons and loosens his jacket.,\"peers down at her dead friend, then leans back in his seat.\",\"places his right hand over someone's chest, pulling him down.\",bangs her hat.,closes the curtain door.,gold1-orig,pos,unl,unl,unl,unl,They step into the elevator and stand side by side.,Someone\nlsmdc1040_The_Ugly_Truth-8759,6991,He turns and ducks under her arm and pulls her close. They,\"smile and dance together, back and forth.\",waste's laser light radiate standing in the woods.,\"strokes his forehead, removes her dark shoes then hands the woman a long silver cup.\",keep his waistband from their back as she storms back into the kitchen.,,gold0-orig,pos,unl,unl,unl,n/a,He turns and ducks under her arm and pulls her close.,They\nlsmdc1040_The_Ugly_Truth-8759,7014,\"Someone leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door. She\",opens the door and looks horrified.,smiles at the joke.,crouches down from her position while she anxiously presses her ear to the door.,hurries stealthily into the warehouse.,,gold1-orig,pos,unl,pos,pos,n/a,\"Someone leaps to her feet, smooths out her tight - fitting beige dress, and goes to the door.\",She\nlsmdc1040_The_Ugly_Truth-8759,6990,Someone leads someone onto the dance floor and spins her. He,turns and ducks under her arm and pulls her close.,\"bangs her head over, propelling herself against the glass balustrade.\",whacks it on the table.,reaches back and takes her water hand.,\"rises higher, lowering his arms, his arms folded.\",gold0-orig,pos,unl,unl,unl,unl,Someone leads someone onto the dance floor and spins her.,He\nlsmdc1040_The_Ugly_Truth-8759,7002,Someone smiles nervously and heads off. Someone,\"follows, looking dazed.\",turns onto the pavement and spots her reflection in the mirror.,holds her hand over her ears.,enter to the truck's med pod.,sits with the rest of the band.,gold0-reannot,pos,unl,unl,unl,pos,Someone smiles nervously and heads off.,Someone\nlsmdc1040_The_Ugly_Truth-8759,6996,\"They turn, round and round, moving smoothly to the music. Someone leans back on someone's arm, and they\",dance with their hands held palm to palm.,look under 15 expressions.,\"caress each other's faces, then gently pulls his chin from her hand.\",look blank.,find a big kiss of approval.,gold0-reannot,pos,unl,unl,unl,pos,\"They turn, round and round, moving smoothly to the music.\",\"Someone leans back on someone's arm, and they\"\nlsmdc3016_CHASING_MAVERICKS-6246,15075,\"Someone jogs into view, carrying a surfboard. He\",points to the two long paddleboards.,\"and very bored suction squats down in the water, holding his baby.\",\"flips to the side of the road and lets thoughtful gaze collide, then steps away from the ticket area.\",stretches out in the bed.,watches her down a sweaty white spiral staircase.,gold0-orig,pos,unl,unl,unl,pos,\"Someone jogs into view, carrying a surfboard.\",He\nlsmdc3016_CHASING_MAVERICKS-6246,15076,\"Now in wetsuits, they each carry a board. Someone\",taps a car with his board.,strapping above half of the bush.,shows their egg for the mutants.,conditions it curiously.,puts down a large parcel.,gold0-orig,pos,unl,unl,unl,pos,\"Now in wetsuits, they each carry a board.\",Someone\nlsmdc3016_CHASING_MAVERICKS-6246,15074,\"Now, someone's watch reads 6: 30 as he waits in the doorway of his shed. Someone\",\"jogs into view, carrying a surfboard.\",is behind her as she wheel to work out.,carries someone in luggage into the shop.,\"walks quickly out of view, finding a package and envelope lying inside.\",runs through a chain link fence and starts to cross someone street.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, someone's watch reads 6: 30 as he waits in the doorway of his shed.\",Someone\nlsmdc0043_Thelma_and_Luise-68251,13500,Someone's head moves almost imperceptibly. Someone,studies someone's face.,stops to answer it.,pulls himself up and stares at it.,sits at a restaurant restaurant.,lies with his eyes closed.,gold0-orig,pos,unl,unl,pos,pos,Someone's head moves almost imperceptibly.,Someone\nlsmdc0043_Thelma_and_Luise-68251,13501,Someone studies someone's face. Someone,looks at someone for a long time.,squeezes her flushed eyes.,holds someone's gaze.,stares out over the night sky.,glances back and catches his breath.,gold1-orig,pos,unl,pos,pos,pos,Someone studies someone's face.,Someone\nlsmdc1057_Seven_pounds-97865,6352,He stops outside her room and looks at her through the window. Someone,\"lies fast asleep, surrounded by machines and monitors.\",turns back to someone.,sees a figure walking up.,pulls the bottle from the seat.,,gold0-orig,pos,unl,unl,pos,n/a,He stops outside her room and looks at her through the window.,Someone\nlsmdc1057_Seven_pounds-97865,6356,Someone slowly and gently pulls the phone out and shuts it. Someone,\"stands, looking down at her tenderly.\",tucks his fist into a temple and pats his cheeks.,\"comes out, as a fat young woman comes downstairs and looks at her father's chest.\",awakens to his feet.,faces a flooded stairway.,gold0-orig,pos,unl,unl,unl,pos,Someone slowly and gently pulls the phone out and shuts it.,Someone\nlsmdc1057_Seven_pounds-97865,6355,\"Her ear pressed against her phone, which lies on a pillow beneath her. Someone\",slowly and gently pulls the phone out and shuts it.,pushes the duffle bag at her mouth.,keeps pausing for a long moment before rolling his eyes.,sets down his gaze and turns off as he does so.,lies in his bed and sits on the edge of a rocking chair.,gold0-orig,pos,unl,unl,unl,unl,\"Her ear pressed against her phone, which lies on a pillow beneath her.\",Someone\nlsmdc1057_Seven_pounds-97865,6357,\"Someone stands, looking down at her tenderly. Someone\",\"puts someone's phone on the bed, draws up a chair and sits at her bedside.\",turns her eyes back as it widens sharply.,puts his arm around him.,leads the others into hiding.,steps out on the kitchen.,gold0-orig,pos,unl,unl,pos,pos,\"Someone stands, looking down at her tenderly.\",Someone\nlsmdc1057_Seven_pounds-97865,6350,The glass doors slide apart and he enters. Someone,walks down a hospital corridor towards someone's room.,\"steps outside, her eyes looking.\",strides furtively around the room and comes up to leave.,brings her to a machine that knocks open the door.,reaches into his cap and cap looks at the empty box.,gold0-orig,pos,unl,unl,unl,unl,The glass doors slide apart and he enters.,Someone\nlsmdc1057_Seven_pounds-97865,6351,Someone walks down a hospital corridor towards someone's room. He,stops outside her room and looks at her through the window.,april and faces worriedly before hugging two children.,wakes up and dials a number.,hands over a document book.,\"is shown coming down the stairs, a still headwaiter with his untie.\",gold0-orig,pos,unl,unl,unl,pos,Someone walks down a hospital corridor towards someone's room.,He\nlsmdc1057_Seven_pounds-97865,6353,Someone closes his clamshell mobile phone. Someone,lies on her side.,goes into the humps apartment.,stands at his computer and turns off the radio.,lowers an alert gaze.,,gold1-orig,pos,unl,unl,unl,n/a,Someone closes his clamshell mobile phone.,Someone\nlsmdc1057_Seven_pounds-97865,6358,\"Someone puts someone's phone on the bed, draws up a chair and sits at her bedside. Someone\",\"stares down at her peaceful, but bruised face.\",steps out from the glove box onto a display counter.,picks the secure photo of his father and casts him on the bedroom.,looks into his mirror as he gets in.,suddenly go with the ex who's wearing a satchel of clothing.,gold0-orig,pos,unl,unl,unl,unl,\"Someone puts someone's phone on the bed, draws up a chair and sits at her bedside.\",Someone\nlsmdc1057_Seven_pounds-97865,6354,Someone lies on her side. Her ear,\"pressed against her phone, which lies on a pillow beneath her.\",avoids her gaze as he glides his hand over her own thigh.,presses as she plugs her body into tight.,brushing her chin pressing the back of her auburn hair just a few inches away.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone lies on her side.,Her ear\nlsmdc0032_The_Princess_Bride-66009,17923,\"He is impossibly far behind, but the way he goes you'd think he didn't know that because he is flying up the rope, hand over hand like lightning. He\",\"prods someone, who nods, increases his pace.\",retreats from blue winds to wind his long green hair.,hugs his busty blond friend.,\"continues inside the house, moving his arms and legs and a long beat drum that comes with choppy waters in the background.\",,gold0-orig,unl,unl,unl,unl,n/a,\"He is impossibly far behind, but the way he goes you'd think he didn't know that because he is flying up the rope, hand over hand like lightning.\",He\nlsmdc0032_The_Princess_Bride-66009,17925,Someone is cutting deeply into someone's lead. And his arms,begin moving much more slowly.,grow seductively as they follow her inside.,is plastic - bare.,are folded across his chest.,take hold of the table.,gold0-reannot,pos,unl,unl,pos,pos,Someone is cutting deeply into someone's lead.,And his arms\nlsmdc3081_THOR-37886,7104,\"Seemingly unaffected, the agent lands a series of jabs then tackles someone through the back of a tunnel. They\",land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead.,see the sphere outside.,fight over the high - backed carriage.,thrusts him down like an old.,try to bite someone.,gold0-orig,pos,unl,unl,unl,unl,\"Seemingly unaffected, the agent lands a series of jabs then tackles someone through the back of a tunnel.\",They\nlsmdc3081_THOR-37886,7095,\"With a flurry of punches, someone fights off two more agents then kicks a third through the tunnels plastic sheathing. Outside, the crane\",raises the man with the crossbow above the crater with a direct view of mjolnir.,\"crashes away, barefoot.\",put down a tritium undercarriage and fly over his nostrils.,swerves a limping man.,turns toward g person.,gold0-orig,pos,unl,unl,unl,unl,\"With a flurry of punches, someone fights off two more agents then kicks a third through the tunnels plastic sheathing.\",\"Outside, the crane\"\nlsmdc3081_THOR-37886,7088,Someone crouches as more agents armed with assault rifles join the search. Someone,looks up at the night sky and grins.,finds an ornament.,hands through a bottle of smoke.,\"screws his feet with his arms, clasping his knees.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone crouches as more agents armed with assault rifles join the search.,Someone\nlsmdc3081_THOR-37886,7093,\"The man runs outside and climbs into a basket dangling at the end of a crane. Meanwhile, someone\",kicks an agent in the face sending him toppling down a ladder into his teammates.,hurries straight through the thick bar.,jumps firing into the large barred hangar.,leads someone from the bank's side to the lake.,,gold1-orig,pos,unl,unl,pos,n/a,The man runs outside and climbs into a basket dangling at the end of a crane.,\"Meanwhile, someone\"\nlsmdc3081_THOR-37886,7109,\"Standing over the motionless agent, someone wipes his muddy forearm across his chin, then stares at Mjolnir's silhouette. Someone\",\"rips down a sheet of plastic, then walks up to someone and smiles.\",runs along a false ridge which sways back and forth against a framed parked pool.,\"climbs onto a small, gray rock and stares up at the storm's wings.\",looks at the empty approaching vault.,\"arrives, closes the door.\",gold0-orig,pos,unl,unl,unl,pos,\"Standing over the motionless agent, someone wipes his muddy forearm across his chin, then stares at Mjolnir's silhouette.\",Someone\nlsmdc3081_THOR-37886,7094,\"Meanwhile, someone kicks an agent in the face sending him toppling down a ladder into his teammates. Someone\",\"leaps down and kicks one agent, then ducks into a side tunnel as more agents give chase.\",reveals his name and his name.,tumbles off his glider and crouches down at the edge.,screws up a u - turn.,,gold0-orig,pos,unl,unl,unl,n/a,\"Meanwhile, someone kicks an agent in the face sending him toppling down a ladder into his teammates.\",Someone\nlsmdc3081_THOR-37886,7110,\"Someone rips down a sheet of plastic, then walks up to someone and smiles. Standing in the rain, agent someone\",stares down at him.,looks around the room.,stands alone on someone's apartment.,lifts the blue and blue slip over her shoulder.,sits on the top of a crystal perched near the window.,gold0-orig,pos,unl,unl,unl,unl,\"Someone rips down a sheet of plastic, then walks up to someone and smiles.\",\"Standing in the rain, agent someone\"\nlsmdc3081_THOR-37886,7113,His smile turns to a frown as the hammer remains embedded in the rock. Someone,\"grabs the handle with both hands, and pulls to no avail.\",stares at someone's reflection.,unload the rickety tarp out of the box and place a rental on hand to wheel of a pack.,walks away from a car.,\"shells are big at the heat, and rocket sweeps inside.\",gold0-orig,pos,unl,unl,unl,unl,His smile turns to a frown as the hammer remains embedded in the rock.,Someone\nlsmdc3081_THOR-37886,7091,\"As the first agent stands, someone slams the second agent into him and flees. More agents\",join the pursuit as someone races through the tunnel.,search a camp where a helicopter flies out and lands in the cold water.,\"and guards surround their table, pulling someone into the doorway frame.\",peer down a hallway.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the first agent stands, someone slams the second agent into him and flees.\",More agents\nlsmdc3081_THOR-37886,7101,He smiles as he strides toward the hammer. A large agent,steps out and punches someone to the ground.,pushes him hard in the gut.,touches someone's hand with his gun.,\"sits beside him, his lips hanging open.\",pushes someone down just behind him.,gold0-orig,pos,unl,unl,unl,pos,He smiles as he strides toward the hammer.,A large agent\nlsmdc3081_THOR-37886,7103,\"Someone leaps to his feet and punches the agent in the face. Seemingly unaffected, the agent\",lands a series of jabs then tackles someone through the back of a tunnel.,lets people into the brick barbershop.,fires two squeegees at the cameraman.,\"disarms someone, knocking the unconscious.\",\"scrambles back, grabbing the grenade.\",gold1-orig,pos,unl,unl,unl,unl,Someone leaps to his feet and punches the agent in the face.,\"Seemingly unaffected, the agent\"\nlsmdc3081_THOR-37886,7090,\"Someone rushes an agent in the tunnel and flips him over his back. As the first agent stands, someone\",slams the second agent into him and flees.,runs behind the alien.,trips over a model.,puts down his rifle and hits someone out.,,gold0-orig,pos,unl,unl,pos,n/a,Someone rushes an agent in the tunnel and flips him over his back.,\"As the first agent stands, someone\"\nlsmdc3081_THOR-37886,7112,\"In slow motion, someone smiles as he reaches out and grabs the hammer's handle. His smile\",turns to a frown as the hammer remains embedded in the rock.,is measured and half of the stunned times at someone.,fades as he turns off someone.,is taken by the casket as a trail of light shines around him lying there.,slowly fades as someone looks down on the woman woman.,gold0-orig,pos,unl,unl,unl,pos,\"In slow motion, someone smiles as he reaches out and grabs the hammer's handle.\",His smile\nlsmdc3081_THOR-37886,7100,Mjolnir lies just a few yards ahead in the center of the crater. He,smiles as he strides toward the hammer.,puts the walk figure down in the sewer.,goes back to the motel.,jumps up from the tank and looks out on the night spot.,clambers up to read the name.,gold0-orig,pos,unl,unl,unl,pos,Mjolnir lies just a few yards ahead in the center of the crater.,He\nlsmdc3081_THOR-37886,7105,\"They land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead. The large agent puts someone into a headlock, but someone\",swings one elbow repeatedly into the agent's stomach.,collapses on the ground.,goes and does nothing.,manages a big tear.,,gold0-orig,pos,unl,unl,unl,n/a,They land outside and wrestle in mud as someone aims his drawn bow at them from his vantage point overhead.,\"The large agent puts someone into a headlock, but someone\"\nlsmdc3081_THOR-37886,7107,\"As both men stand, someone jumps and kicks the agent in the chest with both feet. He\",kicks the agent again as he tries to rise.,raises his arms as he rows.,stares at the dead man.,\"aims his wand, shielding his ears.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As both men stand, someone jumps and kicks the agent in the chest with both feet.\",He\nlsmdc3081_THOR-37886,7106,\"The large agent puts someone into a headlock, but someone swings one elbow repeatedly into the agent's stomach. As both men stand, someone\",jumps and kicks the agent in the chest with both feet.,holds up his hand over someone's face.,shoots someone off the wall.,takes two cans from his bags.,leaps onto a rooftop with his hands in his pockets.,gold0-orig,pos,unl,unl,unl,unl,\"The large agent puts someone into a headlock, but someone swings one elbow repeatedly into the agent's stomach.\",\"As both men stand, someone\"\nlsmdc3081_THOR-37886,7096,\"Outside, the crane raises the man with the crossbow above the crater with a direct view of Mjolnir. Agent someone\",jogs into a command center.,\"turns to the handle with the plank, gun with target and hidden up the ladder's handle.\",\"blinks off his clothes wincing pensively, then approaches examines the android's lapels.\",lays stones on a narrow patch.,watches on an amused monitor.,gold0-orig,pos,unl,unl,pos,pos,\"Outside, the crane raises the man with the crossbow above the crater with a direct view of Mjolnir.\",Agent someone\nlsmdc3081_THOR-37886,7102,A large agent steps out and punches someone to the ground. Someone,leaps to his feet and punches the agent in the face.,whips the sweeps agents out.,\"scrutinizes a man, who punches men to be sick and gored.\",punches someone through the nose.,struts out of the warehouse with his hands raised in the air.,gold0-orig,pos,unl,unl,pos,pos,A large agent steps out and punches someone to the ground.,Someone\nlsmdc3081_THOR-37886,7089,He runs into a tunneled plastic sheathing leading to the crater's center. Someone,rushes an agent in the tunnel and flips him over his back.,\"presses himself up against the wall, and sparks up from the ground.\",stands beside a strap - o - shaft.,takes a chair across a flap of putty and tosses it down.,,gold0-orig,unl,unl,unl,unl,n/a,He runs into a tunneled plastic sheathing leading to the crater's center.,Someone\nlsmdc3081_THOR-37886,7092,\"In an armory, a man reaches for a sniper rifle then grabs a composite bow instead. The man\",runs outside and climbs into a basket dangling at the end of a crane.,points the rocket in the distance and then ride on boards to the truck.,\"whips, paper, and hovers the pistol in the man's throat.\",holds up his knapsack to create the sniper.,\"squints, his eyes fall on the cat and trigger it hidden.\",gold0-reannot,pos,unl,unl,unl,unl,\"In an armory, a man reaches for a sniper rifle then grabs a composite bow instead.\",The man\nlsmdc3081_THOR-37886,7098,Someone draws back his bow. Someone,\"dashes around a corner, then pauses.\",clutches the collar of his high collar.,bows to his friend.,extends his hand to meet someone.,looks him in the eyes.,gold0-reannot,pos,unl,unl,unl,pos,Someone draws back his bow.,Someone\nanetv_bX-PSFlwV5s,808,A person is then seen peeling off a roof using the roof and speaking out loud. The man,continues to take apart the roof.,continues braiding and the men run in and out of frame.,continues printing the ladder tiles tiles onto the floor.,dips the shovel into the car and cuts the exterior.,tapes up the side of the house and continues shoveling.,gold0-orig,pos,unl,unl,unl,pos,A person is then seen peeling off a roof using the roof and speaking out loud.,The man\nanetv_bX-PSFlwV5s,807,A man is seen speaking to the camera while holding up a tool. A person,is then seen peeling off a roof using the roof and speaking out loud.,sticks an object off of the machine as well as fading by.,is then seen riding around on a mat while the camera zooms in.,is seen pushing down a tire and rubbing it on the side paper.,throws more objects all over a yard.,gold0-reannot,pos,unl,unl,unl,pos,A man is seen speaking to the camera while holding up a tool.,A person\nanetv_u02UsNRxclU,8504,A guy breaths in the smoke circles. A male,blows the smoke into a light blow plastic container and uses it to blowout the smoke.,does a girls dance flip under a bridge.,is bouncing with his weightlifting mop as he does a handstand and washes his hands.,demonstrates bars on his bike.,,gold0-orig,pos,unl,unl,unl,n/a,A guy breaths in the smoke circles.,A male\nanetv_u02UsNRxclU,8503,Guys smoke a Hookah pipe and blowout smoke. A guy,breaths in the smoke circles.,enters the phone talking.,puts on a laptop.,\"glances around, listening.\",blows blowing smoke a dust.,gold0-orig,pos,unl,unl,unl,unl,Guys smoke a Hookah pipe and blowout smoke.,A guy\nanetv_u02UsNRxclU,11867,Differente men are sitting on couches smoking hokaah. men,are doing tricks wih the smoke.,mixing bowls up and hits through their shields.,are painting a new carpet in a van in front of the camera.,are on stage watchnig a game.,,gold0-reannot,pos,unl,unl,pos,n/a,Differente men are sitting on couches smoking hokaah.,men\nanetv_HdgVytIzu4s,18322,A man is seen holding a tennis racket and begins hitting a ball around a room. Another man,is in frame also holding a tennis racket and hitting a ball around.,is seen kicking his hands and pulling the racket as another person walks in and out of frame.,walks over and throws an object off into the distance.,is seen speaking to the camera and leads into him throwing the darts.,hits a person holding the racket while the woman claps.,gold0-orig,pos,unl,unl,unl,unl,A man is seen holding a tennis racket and begins hitting a ball around a room.,Another man\nanetv_HdgVytIzu4s,18323,Another man is in frame also holding a tennis racket and hitting a ball around. The men,continue to play with one another around the room while the camera follows their movements.,continue to play all the cards and end with them hitting it.,play a game of poker sitting and laughing at the same time.,hit a bowling ball onto the table and also all chase the ball.,continue to walk around while dancing with one another and others watching on the side.,gold0-reannot,pos,unl,unl,unl,unl,Another man is in frame also holding a tennis racket and hitting a ball around.,The men\nanetv_C03QJbrKzaw,12316,The video takes place in a man's yard as he uses a hedge trimmer in various ways. It,begins with a title showing the trimmer's name and the various equipment that comes with the trimmer.,'s on the ground like a snake and bunny is hanging from the tree.,\"is clean, gesturing for the rest of the empty area.\",lands on the line as it passes along the grass.,,gold0-orig,pos,unl,unl,pos,n/a,The video takes place in a man's yard as he uses a hedge trimmer in various ways.,It\nanetv_C03QJbrKzaw,12317,It begins with a title showing the trimmer's name and the various equipment that comes with the trimmer. The man,climbs a ladder and starts hedging.,is moving in different ways on a man as well as a design on the beam.,is in standing with the pain disgusted off having mixed the length of the hedge with his palm.,ends with her cutting the hair off he messes with the spaghetti and cabin as well.,lifts the boys with his hands and begins to carry the board out.,gold0-orig,pos,unl,unl,unl,unl,It begins with a title showing the trimmer's name and the various equipment that comes with the trimmer.,The man\nanetv_C03QJbrKzaw,12318,The man climbs a ladder and starts hedging. The video then,cuts to various other ways the man is using the trimmer.,shows trophies and officials.,moves between the people falling into a bedroom.,shows several other fish being dirty.,cuts to people kneeling in front.,gold0-orig,pos,unl,unl,unl,pos,The man climbs a ladder and starts hedging.,The video then\nanetv_C03QJbrKzaw,9241,A bunch of tools for trimming the hedge are displayed. A man,shows how to trim the hedge and shape it.,holding a knife sharpener shows instructions on how to properly sharpen the knife repeatedly.,touches a wire and speaks.,happens to be the roller to demonstrate a necessary moves and footwork.,,gold0-orig,pos,unl,unl,unl,n/a,A bunch of tools for trimming the hedge are displayed.,A man\nanetv_C03QJbrKzaw,12319,The video then cuts to various other ways the man is using the trimmer. The video,ends with the equipment being showcased on stones and again shows the name of the hedge trimmer.,shows some of the individuals putting it all into line into various areas.,shows some other riders supporting their methods with the skateboarders as well as many tying and riding around on their bikes.,cuts to several different people jumping up and down with spectators flipping.,is repeated in slow motion.,gold0-orig,pos,unl,unl,unl,pos,The video then cuts to various other ways the man is using the trimmer.,The video\nlsmdc3074_THE_ROOMMATE-4182,14292,\"Someone leads someone into a sizable bedroom decorated in shades of gray and periwinkle, and shuts the door. Someone\",crawls onto a luxurious bed and rolls over on her back.,\"stands at ames alone, sits in front of the camera, sees a briefly iron man's face.\",watches him gratefully through the window set.,\"gazes off, then gives a pensive look.\",walks into the room wearing dark stylish pendant.,gold0-orig,pos,unl,unl,unl,pos,\"Someone leads someone into a sizable bedroom decorated in shades of gray and periwinkle, and shuts the door.\",Someone\nlsmdc3074_THE_ROOMMATE-4182,14289,\"Later, the car passes working gardeners as it travels up a driveway to the gorgeous Greek - style home. Someone\",leads her guest into a sunny foyer.,steps out from the water.,is lying in bed with someone.,struggles to his feet.,,gold0-orig,pos,pos,pos,pos,n/a,\"Later, the car passes working gardeners as it travels up a driveway to the gorgeous Greek - style home.\",Someone\nlsmdc3074_THE_ROOMMATE-4182,14291,A crystal chandelier hangs from the vaulted ceiling. A tall man with thinning hair,arrives with a petite elegant redhead.,falls a huge slithers on its head.,walks up beside him.,watches closely behind it sits a white cloth haired man bearing him.,separates the room from the couch.,gold1-orig,pos,unl,unl,unl,unl,A crystal chandelier hangs from the vaulted ceiling.,A tall man with thinning hair\nlsmdc3074_THE_ROOMMATE-4182,14295,Someone notices a collection of drawings on a wall. They all,feature the same brunette with almond - shaped eyes.,turn in a dress.,walk up a sidewalk and through the marketplace.,gaze down at each other.,,gold0-orig,pos,unl,unl,unl,n/a,Someone notices a collection of drawings on a wall.,They all\nlsmdc3074_THE_ROOMMATE-4182,14290,Someone leads her guest into a sunny foyer. A crystal chandelier,hangs from the vaulted ceiling.,glows on a row of stone pillars.,skates around the perimeter of the room.,hangs high above the clouds.,rises to its feet.,gold0-orig,pos,unl,unl,unl,unl,Someone leads her guest into a sunny foyer.,A crystal chandelier\nlsmdc3074_THE_ROOMMATE-4182,14296,\"They all feature the same brunette with almond - shaped eyes. Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone\",responds with a warm appreciative smile.,begins squeezing the suds from the pitcher.,points down at the oven door.,gives a relieved grimace.,,gold0-orig,pos,unl,pos,pos,n/a,They all feature the same brunette with almond - shaped eyes.,\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone\"\nlsmdc3074_THE_ROOMMATE-4182,14297,\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone responds with a warm appreciative smile. Both parents\",stare at their plates.,peer out across the gap.,stroll past someone through the pouring rain as the kitchen window beside the window shows someone staring at him.,run to a desk where they set tv on a couch.,continue to dance around the room.,gold1-orig,pos,unl,unl,unl,pos,\"Now in a dining room, someone takes a big bite of Thanksgiving turkey, and someone responds with a warm appreciative smile.\",Both parents\nlsmdc3074_THE_ROOMMATE-4182,14293,Someone crawls onto a luxurious bed and rolls over on her back. Someone,\"steps farther in, taking in her surroundings.\",lies on the edge of the floor at the step.,writes pensively and cuts it with a skimmer.,puts her jacket on her shoulders and jerks her head forward.,crosses his floor to the apartment area with an open box.,gold0-orig,pos,unl,unl,unl,unl,Someone crawls onto a luxurious bed and rolls over on her back.,Someone\nlsmdc3074_THE_ROOMMATE-4182,14294,\"Someone steps farther in, taking in her surroundings. Someone\",notices a collection of drawings on a wall.,turns on her bathing dress and listens as someone strokes her belly.,\"goes into the kitchen, staring directly at her, fully curled up as someone approaches.\",\"stands next to him, waiting.\",is still looking up and sees.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone steps farther in, taking in her surroundings.\",Someone\nlsmdc3074_THE_ROOMMATE-4182,14288,\"Someone shifts her uncomfortable gaze. Later, the car\",passes working gardeners as it travels up a driveway to the gorgeous greek - style home.,brushes a concrete box across the floor at a set of doors and passes under water.,arrives before shed.,\"rolls through the crowds, slowing as she passes a few feet and the front door collapses.\",knocks someone's body up down to the track.,gold0-reannot,pos,unl,unl,unl,unl,Someone shifts her uncomfortable gaze.,\"Later, the car\"\nanetv_D9A_9FH7e-A,8606,The lady adds drops of nail polish to a glass of fluid and pulls it through. The lady,puts her nail in the cup and uses a stick to remove the polish.,shows us her cigarette.,stops knitting and turns.,removes the pair of pipes and uses a machine to drink the down.,\"takes a piece of polish in a scraper on powder, then proceeds to wipe it with a paint brush and lights a candle.\",gold1-orig,pos,unl,unl,unl,unl,The lady adds drops of nail polish to a glass of fluid and pulls it through.,The lady\nanetv_D9A_9FH7e-A,8603,We see an opening title screen. We,see a ladies hands with nail polish on them.,see people bouncing out and out on the grass.,see men running down the street on skateboards and leading someone from street to street.,see a man flips and gesturing for a third big boy and flip over a big foot.,see a man who exercise the rubik's cube.,gold0-orig,pos,unl,unl,unl,unl,We see an opening title screen.,We\nanetv_D9A_9FH7e-A,8608,The lady pulls the tape of then puts a clear coat over her fingernails. We then,see the ending title screen.,see a product written in black.,see the finished product and see the finished product.,see the end title screen and shots.,see the lady use a knife to insert a new one and wait with it.,gold1-orig,pos,unl,unl,unl,unl,The lady pulls the tape of then puts a clear coat over her fingernails.,We then\nanetv_D9A_9FH7e-A,8604,We see a ladies hands with nail polish on them. The lady,puts tape on her finger around her nail and puts clear and white polish on them.,removes the cats arm.,maneuvers her hair into pieces.,holds up a bottle to cook.,paints the lady shoe with the nail.,gold1-orig,pos,unl,unl,unl,unl,We see a ladies hands with nail polish on them.,The lady\nanetv_D9A_9FH7e-A,8607,The lady puts her nail in the cup and uses a stick to remove the polish. The lady,pulls the tape of then puts a clear coat over her fingernails.,looks the young lady and then she smiles and rubs her palms with white soap.,removes the product two times.,puts the polish on the other end product and uses lastly to make a nail see is shown.,,gold0-orig,pos,unl,unl,unl,n/a,The lady puts her nail in the cup and uses a stick to remove the polish.,The lady\nanetv_f4s1ngeK5P4,15035,The person then begins walking around a room pushing the ball around with the stick. The person,continues hitting the ball while walking around the room.,moves up on the beam while the camera watches from the side of the gym.,continues playing the instrument while looking to the camera.,blows the object back and forth and smiles to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The person then begins walking around a room pushing the ball around with the stick.,The person\nanetv_f4s1ngeK5P4,15034,A person is seen wearing slippers and holding a stick in their hands. The person then,begins walking around a room pushing the ball around with the stick.,rubs the back down on a towel while others help the frame.,shows the foot of the door and kneels.,begins jumping around the sides while people watch on the side.,turns off one foot while looking in.,gold0-orig,pos,unl,unl,unl,unl,A person is seen wearing slippers and holding a stick in their hands.,The person then\nanetv_sGTDKZuG1vE,13111,He takes a white towel and wipes off the counter and sink. He,sprays the mirror with windex and wipes the mirror off.,uses a sink to wash his face in the sink.,shows the knife while washing the hair clean.,adds oranges to the water and sets it in the sink.,,gold0-orig,pos,unl,unl,pos,n/a,He takes a white towel and wipes off the counter and sink.,He\nanetv_sGTDKZuG1vE,13109,A man is kneeling down in front of a sink. He,starts scrubbing the inside of the sink with a sponge.,walks out of the room and begins to wash them.,is wiping the polish with a sponge.,picks up a brush and talks to the camera.,begins shaving his beard.,gold0-orig,pos,unl,pos,pos,pos,A man is kneeling down in front of a sink.,He\nanetv_sGTDKZuG1vE,13110,He starts scrubbing the inside of the sink with a sponge. He,takes a white towel and wipes off the counter and sink.,puts the towel under the sink.,takes a sponge and spits on the sink.,wipes the sink with a paper towel.,starts scrubbing with a towel.,gold1-reannot,pos,unl,pos,pos,pos,He starts scrubbing the inside of the sink with a sponge.,He\nanetv_MEbEcvzdytY,11024,Then a demonstration of how the legs must move on the elliptical is shown. The woman in red further,explains benefits of the workout with an elliptical.,is taking a break and turning to the side of her face.,is standing up preparing for the competition.,pauses to zoom around the stepper.,,gold0-orig,pos,unl,unl,pos,n/a,Then a demonstration of how the legs must move on the elliptical is shown.,The woman in red further\nanetv_MEbEcvzdytY,11025,The woman in red further explains benefits of the workout with an elliptical. The woman on the machine,continues to show the viewers the correct way to exercising on the elliptical.,begins ironing the shirt.,tries to work a smooth rhythm.,begins doing the same 360 step.,gets out of a machine while people walk in and out of frame.,gold1-orig,pos,unl,unl,unl,unl,The woman in red further explains benefits of the workout with an elliptical.,The woman on the machine\nanetv_MEbEcvzdytY,11022,A woman in a red workout shirt is talking about the benefits of an elliptical cross trainer. Another woman in a pink tank top,is demonstrating the use of the elliptical.,looks in the mirror.,is standing on the other side of a workout routine.,is working on an exercise stationary elliptical machine.,is demonstrating how to use the weights.,gold0-reannot,pos,unl,unl,unl,pos,A woman in a red workout shirt is talking about the benefits of an elliptical cross trainer.,Another woman in a pink tank top\nanetv_MEbEcvzdytY,11023,Another woman in a pink tank top is demonstrating the use of the elliptical. The woman in red,continues explaining the use of the elliptical.,holds a rock sweater after.,is catching her hair and the bar moved on the bar.,is now jumping bars exercising and doing sport in weightlifting moves.,puts her head on her hands as she goes.,gold0-reannot,pos,unl,unl,unl,pos,Another woman in a pink tank top is demonstrating the use of the elliptical.,The woman in red\nanetv_COeXmBZpLSE,9250,They twirl around a large stage surrounded by hundreds of people watching them dance. The man,picks her up and twirls her around the music and ends with audience clapping.,\"in white falls to the ground in front of him, eventually falling with joy.\",\"engulfed with red and yellow blows, then pushes himself onto the ground.\",\"stops to speak, and the couple proceeds to dance with them across the room.\",,gold0-orig,pos,unl,unl,pos,n/a,They twirl around a large stage surrounded by hundreds of people watching them dance.,The man\nanetv_COeXmBZpLSE,9249,The woman begins playing the piano when the man standing plays and grabs her. They,twirl around a large stage surrounded by hundreds of people watching them dance.,plays and bunny to the music while judges applaud and the man start a series of video shots.,watch as she pauses to look at the camera.,continues playing the instrument and singing while moving his smiling hands with the camera as he plays the instrument.,,gold0-orig,pos,unl,unl,pos,n/a,The woman begins playing the piano when the man standing plays and grabs her.,They\nanetv_MiOJxYa5Nt4,7333,A man is seen stepping into a circle and grabbing onto an object. The man then,begins spinning around in circles with the object.,throws a hammer and object off into the distance while the camera captures him from several angles.,moves the object all around the frame while looking up into the distance.,spins his body around and then stands up and continues jumping towards the camera.,shows the side of the bike as well as it and ends by putting it on the ground and speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen stepping into a circle and grabbing onto an object.,The man then\nanetv_MiOJxYa5Nt4,563,The guy releases the hammer throw object. The guy,walks toward the green net.,flashes the closing credits on the screen.,takes pictures of a clip and pirate.,spins and catches it to himself.,works on his thumbs.,gold0-orig,pos,unl,unl,unl,unl,The guy releases the hammer throw object.,The guy\nanetv_MiOJxYa5Nt4,559,A guy is practicing a hammer throw. The guy,walks forward as he grips the steel wire attached to the metal ball.,uses a blowtorch while the trophy displays outside.,put a metal tub on the back.,is balancing on the bars.,,gold0-orig,pos,unl,unl,unl,n/a,A guy is practicing a hammer throw.,The guy\nanetv_MiOJxYa5Nt4,561,The guy spins the hammer throw object. The guy,spins with the hammer throw object.,gives up certain parts of the track.,gets off the rake.,looks at the right arm and walks towards it and eats his top cream.,throws darts at the shot far.,gold1-orig,pos,unl,unl,unl,unl,The guy spins the hammer throw object.,The guy\nanetv_MiOJxYa5Nt4,7334,The man then begins spinning around in circles with the object. He finally,throws the object off into the distance.,throws a disc and begins spinning around and spinning around.,performs more backflips on the floor and lays back throwing pucks hammer at the object.,does a series of sideways flips and scrolls off.,spins and spins himself around several times.,gold1-orig,pos,unl,unl,unl,pos,The man then begins spinning around in circles with the object.,He finally\nanetv_MiOJxYa5Nt4,562,The guy spins with the hammer throw object. The guy,releases the hammer throw object.,spins the disk.,does a running move.,releases the discus.,asks that to his right client.,gold0-orig,pos,unl,unl,unl,unl,The guy spins with the hammer throw object.,The guy\nanetv_MiOJxYa5Nt4,560,The guy walks forward as he grips the steel wire attached to the metal ball. The guy,spins the hammer throw object.,starts to go out again and the guy lifts the man with leg & ram.,looks to see a man flying a giant chain.,puts on pliers and shakes his leg.,,gold0-reannot,pos,unl,unl,unl,n/a,The guy walks forward as he grips the steel wire attached to the metal ball.,The guy\nanetv_8M_RipfsJI8,10930,The man splashes the worker with water. A woman,looks on and laughs at the man.,places a coffee tray on the plate.,takes a bucket and takes a torch from a bucket.,climbs onto the roundabout.,talks to the camera.,gold1-orig,pos,unl,unl,unl,pos,The man splashes the worker with water.,A woman\nanetv_8M_RipfsJI8,10929,A woman is working on the otherside of the water. The man,splashes the worker with water.,is cleaning the window in a bathroom.,stands and waves her arms.,smells some more - something.,drags steam into a bucket.,gold0-reannot,pos,unl,unl,unl,unl,A woman is working on the otherside of the water.,The man\nanetv_CIJp-SG3sWE,5825,The girl dives into pool. The girl,swims to the edge of the pool.,dives backwards into the pool.,dives off and misses the pool.,continuously throws the ball into the pool.,dives into the girl swimming pool.,gold0-orig,pos,unl,unl,unl,unl,The girl dives into pool.,The girl\nlsmdc1014_2012-79298,15679,People are standing behind the others as the plane approaches to land. Someone,struggles with the controls to keep the aircraft level.,partially anchored the pile of water on the roof.,grabs a cup of vodka and the bullet driver.,\"turns through a web, desperately trying to keep his stub, then lodged in the ice with the other person.\",sets up three bags.,gold0-orig,pos,unl,unl,unl,unl,People are standing behind the others as the plane approaches to land.,Someone\nlsmdc3047_LIFE_OF_PI-22907,11120,The younger insurance rep solemnly faces his partner. The older man,\"shifts his grim, compassionate gaze.\",\"regards the mother inquiringly, and she lowers his gaze.\",\"flexes his injured hands, then falls out of his chair.\",downs his legs and the young boy closes his eyes.,slips out then studies him again.,gold0-orig,pos,unl,unl,unl,unl,The younger insurance rep solemnly faces his partner.,The older man\nlsmdc3047_LIFE_OF_PI-22907,11119,Someone lowers his eyes and shakes his head. He,bites his lower lip.,gives a wide grin.,fixes the widower's gaze on someone with a solemn gaze.,tenderly binds someone's face with his.,is leaning against a wall.,gold0-orig,pos,unl,unl,unl,pos,Someone lowers his eyes and shakes his head.,He\nlsmdc3023_DISTRICT_9-11287,993,\"Someone makes selections from the blue graph, and the map hones in on a galaxy. He\",brings up a blue planet.,unlocks the safe and carries out several dollars.,ruffles his hair in a couple of directions and falls on her's nails.,turns on the light.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone makes selections from the blue graph, and the map hones in on a galaxy.\",He\nlsmdc3023_DISTRICT_9-11287,991,He casts his earnest gaze upward. It,carries him to the holographic navigation frame.,stops to the other side of his screen.,'s done row doubles.,slithers into the lid.,\", someone nervously climbs briskly sideways through someone's apartment, pulling him to a stop in the strip.\",gold1-orig,pos,unl,unl,unl,unl,He casts his earnest gaze upward.,It\nlsmdc3023_DISTRICT_9-11287,995,It shows a saucer - like jet at its perimeter. Someone,watches with a heaving chest.,feels his way down the street.,launches through the air.,hurls someone through the chopper squeezing over to the platform outside the lion's cage.,begins to waterski and sits up.,gold1-orig,pos,unl,unl,unl,unl,It shows a saucer - like jet at its perimeter.,Someone\nlsmdc3023_DISTRICT_9-11287,989,\"From a bird's eye view, we watch the aliens dismember someone and devour his flesh. He gradually\",manages to collect himself.,loses his head at someone's hand.,speaks into his security camera.,reverts his gaze as someone peeks across the chevy.,,gold0-orig,pos,unl,pos,pos,n/a,\"From a bird's eye view, we watch the aliens dismember someone and devour his flesh.\",He gradually\nlsmdc3023_DISTRICT_9-11287,990,He gradually manages to collect himself. He,casts his earnest gaze upward.,reaches down and knocks in the mouth of someone's candy cage.,\"furrows his brow, then chuckles as he stops giving the mic.\",drives the train out of the way of the street.,\"swings through something, then bursts in back.\",gold1-orig,pos,unl,unl,unl,unl,He gradually manages to collect himself.,He\nlsmdc3023_DISTRICT_9-11287,996,Someone watches with a heaving chest. He,\"swallows, allowing a faint smile.\",breaks into a swaying position.,punches a laundry bag.,lifts a slack - jawed gaze to someone.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone watches with a heaving chest.,He\nlsmdc3023_DISTRICT_9-11287,986,\"Someone stares through one blue eye and one yellow eye, double its previous size. He\",trails his arm down someone's body.,knocks the masked zombie into someone's shoulder.,gives a unsettled nod before moving to someone's ear.,\"slides off the shoes, and stops.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone stares through one blue eye and one yellow eye, double its previous size.\",He\nanetv_JguB9cLEXGY,8801,A person is seen holding up a stick followed by several clips of people throwing a javelin. More shots,are shown of athletes throwing the javelin great distances while screaming each time after their throw.,are shown of many people hit the goal with one one in various movements.,are shown of people running around cars and then time around the field.,are shown of people riding down the track as well of people dancing with them and walking around.,are shown of the man standing around more members of the camera playing dodgeball as well as people watching on the sides.,gold0-orig,pos,unl,unl,unl,unl,A person is seen holding up a stick followed by several clips of people throwing a javelin.,More shots\nlsmdc0033_Amadeus-67102,18146,\"He sees someone and smiles with real joy. Forgetting someone, she\",goes to her husband.,throws out her hand.,purses her lips and raises her head.,puts on her jacket.,walks up to the street.,gold0-orig,pos,unl,unl,unl,pos,He sees someone and smiles with real joy.,\"Forgetting someone, she\"\nlsmdc0033_Amadeus-67102,18147,\"Forgetting someone, she goes to her husband. She\",throws herself on the bed.,kicks him across the face.,pushes back across the driveway.,holds out a thick cloth.,,gold0-orig,pos,unl,unl,pos,n/a,\"Forgetting someone, she goes to her husband.\",She\nlsmdc3056_PUBLIC_ENEMIES-3485,13522,Agent someone fires at someone empties his pistol into the man. Baby Face,drops onto his back.,is taken away from him.,rises out of the shot.,hangs on its cot.,darts around the corner.,gold0-orig,pos,unl,unl,pos,pos,Agent someone fires at someone empties his pistol into the man.,Baby Face\nlsmdc3056_PUBLIC_ENEMIES-3485,13521,He arrives and riddles someone with bullets. Agent someone,fires at someone empties his pistol into the man.,\"speeds overhead, sending the crew flying in the air.\",runs his hand through his hair.,\"lifts his gaze from someone, who turns and walks away.\",exits the corner wearing a captain's uniform.,gold0-reannot,pos,unl,pos,pos,pos,He arrives and riddles someone with bullets.,Agent someone\nanetv_DU36SNYN-rw,15363,The man starts playing with the dog by throwing the think and having him bring it back. He then,claps for the dog.,throws the ball back and fourth towards the camera while he is now.,videotapes several people moving on one way to the right.,fills it at the end.,showing how to play wall tennis again.,gold0-orig,pos,unl,unl,unl,unl,The man starts playing with the dog by throwing the think and having him bring it back.,He then\nanetv_DU36SNYN-rw,15362,A man walks up with a disk and a dog hold onto it as he passes a few people. The man,starts playing with the dog by throwing the think and having him bring it back.,\"walks back to the racquet, raise his bow, raises his arms.\",stops and puts on the handlebars of the man on the machine.,begins to talk to one of his men and zooms by on the fourth man.,\"begins to run through, flipping on the street as several more people walk in and out of frame.\",gold0-orig,pos,unl,unl,unl,unl,A man walks up with a disk and a dog hold onto it as he passes a few people.,The man\nanetv_DU36SNYN-rw,15361,The tile screen plays with a picture of a long field. A man,walks up with a disk and a dog hold onto it as he passes a few people.,shows a long white beard and a mane of a cast.,\"appears in an orange salon with scissors, the shoes, and microphone.\",walks past an open screen.,,gold1-orig,pos,unl,unl,pos,n/a,The tile screen plays with a picture of a long field.,A man\nlsmdc3077_THE_VOW-35621,7454,\"At a store across the street, someone pays a florist. Outside someone Mnemonic, someone\",\"glances around without seeing him, then heads down a sidewalk.\",feeds a pair of kids.,\"coolly someone from a gold suit, then marches inside.\",sits with a woman.,points to someone.,gold0-orig,pos,unl,unl,pos,pos,\"At a store across the street, someone pays a florist.\",\"Outside someone Mnemonic, someone\"\nlsmdc3077_THE_VOW-35621,7453,\"Later, she clutches a hard - covered book to her chest, as she strides into Cafe Mnemonic. Crouching in front of a display case, she\",\"eyes shelves of pastries, then straightens.\",\"checks a watch cabinet full from curtains, and finds a seat.\",pulls out her headlights and answers it.,\"slides a letter into the dimly square box, then strides into the living room.\",pulls out a fur brush.,gold0-orig,pos,unl,unl,unl,unl,\"Later, she clutches a hard - covered book to her chest, as she strides into Cafe Mnemonic.\",\"Crouching in front of a display case, she\"\nlsmdc3077_THE_VOW-35621,7458,\"Meanwhile, someone arrives at their apartment. Elsewhere in the city, someone\",stands at a bustling intersection and blinks her frustrated eyes.,gives a proud laugh as someone looks in nottingham's windshield.,holds snow running past her daughter.,\"looks out of the cars, avoiding people and surging backwards nervously.\",watches someone take a seat before a scooter with three officers.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone arrives at their apartment.\",\"Elsewhere in the city, someone\"\nlsmdc3077_THE_VOW-35621,7460,\"At the apartment, someone spots his wife's cellphone left on the kitchen island. He\",\"picks it up and checks its display, then heads outside.\",watches as she opens the glass door and storms out of the hall.,takes a pair of balls out of his passenger pocket.,picks up a pigeon.,stands in an messy kitchen.,gold0-orig,pos,unl,unl,unl,pos,\"At the apartment, someone spots his wife's cellphone left on the kitchen island.\",He\nlsmdc3077_THE_VOW-35621,7461,\"He picks it up and checks its display, then heads outside. On the sidewalk out front, he\",\"glances around, then breaks into a run.\",\"pauses to watch someone enter the stocky young man, wearing a fierce blue cowboy outfit.\",\"walks out of it, passes the splits, then stops and slams him against the door, looking away from a deep bowl.\",spots two kids standing in a narrow pub while guys stand two yards ahead.,stops in profile.,gold0-orig,pos,unl,unl,unl,unl,\"He picks it up and checks its display, then heads outside.\",\"On the sidewalk out front, he\"\nlsmdc3077_THE_VOW-35621,7448,\"At the apartment, someone slides aside a grated door, protecting shelves of records, books, and dvds. She\",\"finds a sticky note from someone attached to one disc's box, it reads, more evidence.\",\"shows someone a candy box, hits the bottle against her friend, which breaks out.\",\"crosses the stairs, where someone enters a large supply room.\",retrieves his bottles from a stack of black paper and takes out a life briefcase.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the apartment, someone slides aside a grated door, protecting shelves of records, books, and dvds.\",She\nlsmdc3077_THE_VOW-35621,7450,She winces as she watches. Someone,laughs at her recorded comment.,glances at someone then sets down her cue.,maintains a warm smile.,regards him for a moment.,,gold1-orig,pos,pos,pos,pos,n/a,She winces as she watches.,Someone\nlsmdc3077_THE_VOW-35621,7457,\"Later, someone stands by a stairway to an L - train platform and looks around in confusion. Meanwhile, someone\",arrives at their apartment.,chases his wife across the room.,heads out a door.,watches footage of someone holding a flare in the rain.,enters the house with two children.,gold0-orig,pos,pos,pos,pos,pos,\"Later, someone stands by a stairway to an L - train platform and looks around in confusion.\",\"Meanwhile, someone\"\nlsmdc3077_THE_VOW-35621,7449,\"She finds a sticky note from someone attached to one disc's box, it reads, More Evidence. She\",winces as she watches.,falls at the coffee pump.,'s huge golden eyes are now lighted to the bottom now.,leaves as a taxi arrives at rain.,,gold0-reannot,pos,unl,unl,unl,n/a,\"She finds a sticky note from someone attached to one disc's box, it reads, More Evidence.\",She\nlsmdc3077_THE_VOW-35621,7456,\"Someone takes his bouquet of flowers and hurries in another direction. Later, someone\",stands by a stairway to an l - train platform and looks around in confusion.,lies on the floor with her arms wrapped around her.,enters his room and photographs the news reporter standing outside the salon.,stops and looks to someone.,turns down a long corridor leading to the pond and stares at the rain.,gold1-reannot,pos,unl,unl,pos,pos,Someone takes his bouquet of flowers and hurries in another direction.,\"Later, someone\"\nlsmdc3077_THE_VOW-35621,7452,\"Someone sorrowfully covers her mouth. Later, she\",\"clutches a hard - covered book to her chest, as she strides into cafe mnemonic.\",unscrews a fruit carton from a carton and sticks her tongue out.,carries a bunch of bags of flowers and bucket bursting with plastic bags.,steps out a room wearing a tasteful denim dress.,carries someone down a narrow corridor and out a door followed by a gorilla following behind.,gold1-reannot,unl,unl,unl,unl,unl,Someone sorrowfully covers her mouth.,\"Later, she\"\nlsmdc3077_THE_VOW-35621,7451,\"Someone laughs at her recorded comment. In the video, someone\",holds up her menu.,rides on the road path.,lies alone on a bench in a snow covered living room.,starts past a large stuffed animal in a helping.,jogs towards the quad.,gold1-reannot,unl,unl,unl,unl,unl,Someone laughs at her recorded comment.,\"In the video, someone\"\nlsmdc3077_THE_VOW-35621,7459,\"Elsewhere in the city, someone stands at a bustling intersection and blinks her frustrated eyes. At the apartment, someone\",spots his wife's cellphone left on the kitchen island.,\"attaches a box to her window, presses a call, then takes her seat next to his.\",stares at her apartment cathedral as he paces with continuing to talk with someone.,\"finds a news video report on a folder of the artist, followed by someone.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Elsewhere in the city, someone stands at a bustling intersection and blinks her frustrated eyes.\",\"At the apartment, someone\"\nanetv_XsCND4lDiqA,17812,An old man threw the yellow ball in the cup and it bounced back on the table. The old man in black shirt,threw the ball and landed on the table.,kicked the ball and cheered.,is talking and the camera follows.,threw the bowling ball and walked to the audience.,threw the bolt and ran for the billiard.,gold0-reannot,pos,unl,unl,unl,unl,An old man threw the yellow ball in the cup and it bounced back on the table.,The old man in black shirt\nanetv__3xMhj4mbsk,7040,\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then adds wax on top. There\",are more items that the paint was used on shown at the end.,the man who applies whimpering off someone nearby with bottles on top of the ironing board.,are finished and blue paper is shown next into it.,is seen a video all around a drum set.,,gold0-orig,pos,unl,unl,unl,n/a,\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then adds wax on top.\",There\nanetv__3xMhj4mbsk,12803,A lady paints the end table with a greenish paint. We,see furniture products all lined up.,see earth in the garden of the base of the mountains.,see a picture of the lady.,see the design's carved object in the heart.,,gold0-orig,pos,unl,unl,unl,n/a,A lady paints the end table with a greenish paint.,We\nanetv__3xMhj4mbsk,12802,We see a table with scratches. A lady,paints the end table with a greenish paint.,kissing the little boy is lying in a pink chair.,peels out potatoes on both other dishes.,dressed in black talks in front of a blindfolded with different females.,is holding the peppers.,gold0-orig,pos,unl,unl,unl,unl,We see a table with scratches.,A lady\nanetv__3xMhj4mbsk,12805,We see the lady sand the table. The lady,rubs wax on the table.,shows us the liquid on something.,releases the poles and runs down to grab it.,removes the shoe using a cloth.,hands the dog to the child.,gold0-orig,pos,unl,unl,unl,pos,We see the lady sand the table.,The lady\nanetv__3xMhj4mbsk,12807,We see decor and the table in a house. We,see a blue screen then products.,see a cloth in a yard.,see the men on fire.,see a man playing and apply it on a chair.,see a man and a boy grooming their arm and talk.,gold1-orig,unl,unl,unl,unl,unl,We see decor and the table in a house.,We\nanetv__3xMhj4mbsk,12804,We see furniture products all lined up. We,see the lady sand the table.,see shops on the flamethrower.,see a man on a barber beard and trimming a bush.,see the red ending screen.,see the ending screen.,gold0-orig,pos,unl,unl,unl,unl,We see furniture products all lined up.,We\nanetv__3xMhj4mbsk,7039,\"There is a worn table shown, then a woman proceeds to paint the table with green paint while music plays, then he table is shown finished and then another coat is added on top. Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then\",adds wax on top.,uses another white scraper to sit about.,stands up and throws the outro button.,picks up the scuff and flips it into a chair.,begins to hopping on it.,gold0-orig,pos,unl,unl,unl,unl,\"There is a worn table shown, then a woman proceeds to paint the table with green paint while music plays, then he table is shown finished and then another coat is added on top.\",\"Afterwards the products are shown and then the woman uses a tool to give the end table a distressed look, and the woman then\"\nanetv__3xMhj4mbsk,12806,The lady rubs wax on the table. We,see decor and the table in a house.,see the leaf again.,peels across the entire surface of the tarmac.,see a welder and a needle.,see the end screen on a black screen.,gold1-orig,pos,unl,unl,unl,pos,The lady rubs wax on the table.,We\nanetv__3xMhj4mbsk,12808,We see a blue screen then products. We,see closing screens and credits.,finish the 1600 and a machine appears from different angles.,are uncovered falling from a float.,continue to see a face with bowling words on a black graphic.,,gold0-reannot,pos,unl,unl,unl,n/a,We see a blue screen then products.,We\nlsmdc3009_BATTLE_LOS_ANGELES-527,11443,Someone steps away from the corporal. Someone,wipes a tear from his scarred cheek and hangs his head.,tries the clergyman but someone manages to stay balanced.,goes down shack and tosses him on the dirt.,takes a few breaths as someone comes round behind them and looks things quickly among themselves.,is adjustment on the spot while someone stares just ahead.,gold0-orig,pos,unl,unl,unl,unl,Someone steps away from the corporal.,Someone\nanetv_vynLNpomc30,17286,The other two men play bag pipes. all four men,dance and play in unison.,shoot it at the starting line.,take turns to play guitar.,\"are playing, banging each other.\",look down and shake hands.,gold0-orig,pos,unl,unl,unl,pos,The other two men play bag pipes.,all four men\nanetv_vynLNpomc30,15540,A small group of people are seen standing on a stage playing instruments and wearing scotsman uniforms. The people,continue playing with one another and move to the center of the stage.,\"dance in circles and celebrating with one another, then people pretend to run.\",walk around and hold their hands up.,continue dancing with one another and end by walking around a table and speaking to one another.,continues playing the flute together and leads into a man speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A small group of people are seen standing on a stage playing instruments and wearing scotsman uniforms.,The people\nlsmdc3076_THE_SOCIAL_NETWORK-35125,2398,\"Someone grins and follows someone outside into an alley. Wearing shorts, he briefly\",hugs himself then hops around and faces his warmly dressed friend.,aims at the shaft overlooking the sunset.,glances around and shows the two other dogs on the lawn.,opens his shirt and stares at someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone grins and follows someone outside into an alley.,\"Wearing shorts, he briefly\"\nanetv_Hv3We5wjaJE,119,A couple are in the flowing water of a river. They,are sitting next to several buckets.,are getting to get out of a truck.,rushes through a hydra forest courtyard.,are moving encouraging boats of the water.,watch people hop down the river.,gold1-orig,pos,unl,unl,pos,pos,A couple are in the flowing water of a river.,They\nanetv_U2u9JboK97A,18924,We see a title card on black. A man,is shooting basketball in a gym.,pushes a ball towards the prisoner.,is explaining the name of the cross.,turns around and sees the lady dancing.,plays with a horse in a yard.,gold1-orig,pos,unl,unl,pos,pos,We see a title card on black.,A man\nanetv_U2u9JboK97A,18921,We see a man playing basketball. The shot he made,is seen in reverse.,are shown many times.,is the hallways of a classroom with a bat that is hanging from the ground.,is interviewed with the nazi player.,,gold1-orig,pos,unl,unl,unl,n/a,We see a man playing basketball.,The shot he made\nanetv_U2u9JboK97A,18920,We see an image and a title card. We,see a man playing basketball.,see the ladies hair behind it.,see the loads of men fencing to see various shots.,see two people kneeling in a field in the desert.,,gold1-orig,pos,unl,unl,pos,n/a,We see an image and a title card.,We\nanetv_U2u9JboK97A,18926,We see a man dunk the ball twice. We,see the ending title card on black.,see a man measure the distance.,see the soccer players on band.,see the family taking the shot.,see the man fall and more fall and falls from the wall.,gold0-reannot,pos,unl,unl,unl,unl,We see a man dunk the ball twice.,We\nanetv_bPZRYmr7p1k,13011,\"Then, an army of horsemen shoot arrows with a bow and dead people lye on the ground. After, a group of people\",cross the meadow of a forest.,begin a race race in winter competition.,are carried on a forest.,sticks arrows in black in a watermelon attacks.,run to a field bearing pumpkins.,gold1-orig,pos,unl,unl,unl,unl,\"Then, an army of horsemen shoot arrows with a bow and dead people lye on the ground.\",\"After, a group of people\"\nanetv_bPZRYmr7p1k,13010,\"A man holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor. Then, an army of horsemen\",shoot arrows with a bow and dead people lye on the ground.,falls backward and land on the ground with a target.,rides in slow motion with a man being interviewed and two opponents.,hoop in a tournament and jumps to shoot arrows at their friend.,approach the base of the airplane as they go and walk along the field towards the tire.,gold0-orig,pos,unl,unl,unl,unl,\"A man holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor.\",\"Then, an army of horsemen\"\nanetv_bPZRYmr7p1k,13660,\"One man hit the man's back and fell off the horse. The man is in the battle field fighting other men and, and then they\",ride the horses in the field.,engage in a game with each other.,speed around the motion of the boat to miss the jump and keep him at the end of the bridge.,continue to fight until the cookies are gone.,show the man preparing to arm wrestle.,gold0-orig,pos,unl,unl,unl,unl,One man hit the man's back and fell off the horse.,\"The man is in the battle field fighting other men and, and then they\"\nanetv_bPZRYmr7p1k,13659,A man riding the horse and shot is arrow using a bow. One man,hit the man's back and fell off the horse.,\"looks directly at a man on the sides, several people assemble and perform a bow and arrow.\",fastens a bow and then throws down the bow.,passes his arrow and shoots the arrow forward.,ducks down and ties a red rope.,gold1-reannot,pos,unl,unl,pos,pos,A man riding the horse and shot is arrow using a bow.,One man\nanetv_bPZRYmr7p1k,13009,\"Men shoot arrows when riding horse and two men falls from a horse, then four men riding horses cross the meadow of a forest. A man\",\"holds an arrow in a bow, and then a cavalry fight and throw arrows to a man wearing an armor.\",is chopping a plateau off an ice cream pit.,points to the left while talking and drinks from the car.,gets in a large surf in the mountains where a group of men are behind them.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Men shoot arrows when riding horse and two men falls from a horse, then four men riding horses cross the meadow of a forest.\",A man\nanetv_XnvaW1HQyg4,1103,First the man swings the ball and looks to see how far it goes. Then he,goes to take a picture with two other people.,breaks by until he's thrown.,holds a circle and plays with the tall stone.,takes his arm and begins walking across the field.,makes the final throw on the ground.,gold1-orig,pos,unl,unl,pos,pos,First the man swings the ball and looks to see how far it goes.,Then he\nanetv_XnvaW1HQyg4,15195,A logo for a sports even is shown. There,is a man in a net in blue.,are then shown being interviewed.,competition turns a stick for the camera and it stops a few inches until the bottom is moving from the bottom.,man is shown in a room with a woman standing next to him.,see different websites and a series of images of the first vaulters.,gold0-reannot,pos,unl,unl,unl,pos,A logo for a sports even is shown.,There\nanetv_0GWJ-VHFlTk,6642,An intro leads into a basketball player holding a ball and then running up and shooting a basket. The man,continues running back and fourth while shooting the baskets and ends with text across the screen.,continues to play on his tennis racket against another wall in the front net.,kicks it into a ball once more and shows it off again.,then kicks the ball but is able to throw as far as he can.,,gold0-orig,pos,unl,unl,unl,n/a,An intro leads into a basketball player holding a ball and then running up and shooting a basket.,The man\nanetv_0GWJ-VHFlTk,7766,A young man stands on a basketball court holding two basketballs. the man then,runs toward the hoop and shoots.,hits the ball on his racket several times.,throws the ball in the air into a pit.,runs towards the field and the man hits the ball into the field.,,gold1-orig,pos,unl,unl,unl,n/a,A young man stands on a basketball court holding two basketballs.,the man then\nanetv_0GWJ-VHFlTk,7767,The man then runs toward the hoop and shoots. the man,retrieves the ball & shoots the ball again.,looks for the ring in the end.,does back flip on the floor.,falls and hugs a second person.,is shown who poses and throws the dart into the distance.,gold0-orig,pos,unl,unl,unl,unl,The man then runs toward the hoop and shoots.,the man\nanetv_QjoEYtjPa3w,8328,Two sets of Instructions appear an the person removes the left and right lens. the person,waves bye to the camera.,readies an ink plunger taped neatly.,uses a knife to polish cylinder.,removes the lens on the side of the head and puts it in a charger.,,gold0-orig,pos,unl,unl,unl,n/a,Two sets of Instructions appear an the person removes the left and right lens.,the person\nanetv_QjoEYtjPa3w,8326,We see another instruction screen and see the person inserts the lens on the left. Another screen of instructions and the person,inserts the right lens.,urges the individual to water ski.,takes a brake from the machine.,switch to the title over more.,pierces a wall of wood.,gold0-orig,pos,unl,unl,unl,pos,We see another instruction screen and see the person inserts the lens on the left.,Another screen of instructions and the person\nanetv_QjoEYtjPa3w,8325,We see a person holding a contact lens. We,see another instruction screen and see the person inserts the lens on the left.,see a device light up and down a silver objects.,see a car's door and iron man picking up a lady.,see the camera again.,,gold1-orig,pos,unl,unl,pos,n/a,We see a person holding a contact lens.,We\nanetv_QjoEYtjPa3w,8327,Another screen of instructions and the person inserts the right lens. Two sets of Instructions,appear an the person removes the left and right lens.,players sharpen a contact and customer the senses reason.,hold fabric to the side and rip off the credits.,appear addressed to front briefly using product.,on the machine and playing woman shakes hands with a video camera.,gold0-reannot,pos,unl,unl,unl,unl,Another screen of instructions and the person inserts the right lens.,Two sets of Instructions\nanetv_H-PhEsI9njQ,2989,People are standing in a court playing shufleboard while people is in the terraces are watching the game. a lot of people wearing red uniforms,are walking and sitting around the court.,are standing behind them playing lacrosse.,hit the ball as they go down the court.,are laying in a track during a party.,are standing in a field game playing soccer.,gold0-orig,pos,unl,unl,unl,pos,People are standing in a court playing shufleboard while people is in the terraces are watching the game.,a lot of people wearing red uniforms\nanetv_trV2ycq9rkU,12684,\"One turns to the side, using a piece of equipment. They\",appear to be building a roof.,balances all along the obstacles while going down the river.,open a hatch that runs down the length of the way like the turbulent ocean.,descend off an upper floor and descends.,,gold0-orig,pos,unl,unl,unl,n/a,\"One turns to the side, using a piece of equipment.\",They\nanetv_trV2ycq9rkU,12683,Two men are shown on the side of a building roof. One,\"turns to the side, using a piece of equipment.\",sits in step from the other on the floor.,throws at the roof and yells to the camera.,uses the scraper and wax paint in lamps to cover the roof of the car.,is laying out a window and into the car.,gold0-reannot,pos,unl,unl,unl,unl,Two men are shown on the side of a building roof.,One\nlsmdc1005_Signs-4981,7455,\"He reaches over and stabs his fork into a piece of molten toast, then, sits back down. Someone\",watches in disbelief as someone tucks into his mount of food.,winces as she drains from the table.,brings back the flask.,climb out of the boat.,,gold0-orig,pos,unl,unl,unl,n/a,\"He reaches over and stabs his fork into a piece of molten toast, then, sits back down.\",Someone\nlsmdc1005_Signs-4981,7471,\"Someone lifts up a plank and hold across the door. Together, the two men\",hammered nails through the plank into the door frame.,dangle off the roof of his lighted car.,flanking him as the other agent rise out of control and scurry through the front door.,walk in and move toward.,\"watch a hallway video feed with a boy, while the men enter the darkened house and leave.\",gold1-orig,pos,unl,pos,pos,pos,Someone lifts up a plank and hold across the door.,\"Together, the two men\"\nlsmdc1005_Signs-4981,7459,\"Someone leans into his father who hugs him tightly, then, pulls someone to his other side. Someone\",\"is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace.\",points his wand.,averts the waves at someone's face.,watches the mysterious man.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone leans into his father who hugs him tightly, then, pulls someone to his other side.\",Someone\nlsmdc1005_Signs-4981,7472,\"Together, the two men hammered nails through the plank into the door frame. Turning to get another mail, someone\",stops and stares at someone before helping someone with another plank.,looks up to see the peeking skyline behind them with a sleek blonde hair and a ponytail.,ducks a step into the basement stairs.,climbs into the room to find someone watching with a look and its steppers.,,gold0-orig,pos,unl,unl,unl,n/a,\"Together, the two men hammered nails through the plank into the door frame.\",\"Turning to get another mail, someone\"\nlsmdc1005_Signs-4981,7465,It's displaying a test card. He,turns to look back at the others and swallows.,stares after her to zero.,\"tilts the light, pretending to silhouette her.\",toss out some of someone's magic tools.,looks around the corner.,gold1-orig,pos,unl,unl,unl,pos,It's displaying a test card.,He\nlsmdc1005_Signs-4981,7463,Someone walks slowly across the polished wooden floor into the front hallway. He,looks at the tv set inside.,watches the bound paper slip and covers two of blue old leather.,lowers the rear keys without answering.,\"enters the room, dressed in someone frock coat, a dress as usual.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone walks slowly across the polished wooden floor into the front hallway.,He\nlsmdc1005_Signs-4981,7458,\"Observing him, someone gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably. Someone\",\"leans into his father who hugs him tightly, then, pulls someone to his other side.\",notices someone's ring.,are running quickly to small - the children walks towards the open congregation doritos.,\"rolls his hood up of the carpet beneath the trees to uncover it, then takes it in place.\",looks at him tenderly.,gold0-orig,pos,unl,unl,unl,pos,\"Observing him, someone gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably.\",Someone\nlsmdc1005_Signs-4981,7461,\"At the other end of the table, the red lines on the baby monitor begin to flash. Someone and his family\",look up and stare at.,find their own shapes circle.,take burning numbers and talk overhead.,arrive at the austin lair swanky apartment in a movie cottage.,find its contents and display what an needed to react.,gold0-orig,pos,unl,unl,unl,pos,\"At the other end of the table, the red lines on the baby monitor begin to flash.\",Someone and his family\nlsmdc1005_Signs-4981,7460,\"Someone is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace. Someone's body\",rocks as he cries.,is covered with worms.,has become a little boy's backside.,falls limp from her grasp.,falls to the floor.,gold0-orig,pos,unl,unl,pos,pos,\"Someone is staring self - consciously at his plate when someone's hand reaches out, and tucks him in the family embrace.\",Someone's body\nlsmdc1005_Signs-4981,7468,\"Across the landing in his room, someone cautiously approaches the window and looks out over the maize field. His eyes widening and becoming fixed in a fearful stare, he\",backs towards the bedroom door.,hurtles down another steep entertain tangled technique.,places the bloody box into the man's pocket pocket key.,rises around his side.,stares saddened and backlit.,gold0-orig,pos,unl,unl,unl,unl,\"Across the landing in his room, someone cautiously approaches the window and looks out over the maize field.\",\"His eyes widening and becoming fixed in a fearful stare, he\"\nlsmdc1005_Signs-4981,7469,\"His eyes widening and becoming fixed in a fearful stare, he backs towards the bedroom door. Someone\",looks over at him.,arrives at a booth and watches a detective type out.,\"swings someone's fedora into the end whose hair, nearly hit him back with his wand.\",\"turns, totally amused and amused.\",rides purposefully down a hallway.,gold0-orig,pos,unl,unl,unl,unl,\"His eyes widening and becoming fixed in a fearful stare, he backs towards the bedroom door.\",Someone\nlsmdc1005_Signs-4981,7462,Someone and his family look up and stare at. Someone,walks slowly across the polished wooden floor into the front hallway.,shifts to catch someone's shoelaces.,glances around warily and sees his body covered in blood.,grins as someone swaggers away.,sees him staring at her in astonishment.,gold1-orig,pos,unl,pos,pos,pos,Someone and his family look up and stare at.,Someone\nlsmdc1005_Signs-4981,7464,He looks at the tv set inside. It,'s displaying a test card.,quickly packs up the suitcase.,comes to a halt.,paws takes the hunting basket and peers through the hole at big apartment.,,gold0-orig,pos,unl,unl,unl,n/a,He looks at the tv set inside.,It\nlsmdc1005_Signs-4981,7467,\"Later, someone is upstairs, hammering boards the door to the children's bedroom. Across the landing in his room, someone\",cautiously approaches the window and looks out over the maize field.,finds tears of fountains of concentrating on his computer.,sits across from someone and scans the square.,bounces on his stool as it sits.,reverses over someone music.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone is upstairs, hammering boards the door to the children's bedroom.\",\"Across the landing in his room, someone\"\nlsmdc1005_Signs-4981,7473,\"Turning to get another mail, someone stops and stares at someone before helping someone with another plank. Someone\",\"remains motionless, clinging to her brother.\",shows someone soft pink wine.,\"turns, shining his eyes.\",slammed the door open.,blinks coolly as someone heads off and joins him.,gold1-orig,unl,unl,unl,unl,unl,\"Turning to get another mail, someone stops and stares at someone before helping someone with another plank.\",Someone\nlsmdc1005_Signs-4981,7454,Someone's eyes are swollen. He,\"reaches over and stabs his fork into a piece of molten toast, then, sits back down.\",\"is holding a thin, long - focus lens.\",\"twists free, then pulls away and marches on.\",slips into his grasp then turns back to the bedroom where someone manages to hit him.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone's eyes are swollen.,He\nlsmdc1005_Signs-4981,7457,\"Upset, someone winces as he eats. Observing him, someone\",gets up from his chair and goes to his dad who is now throwing down his fork and is sobbing uncontrollably.,leaves someone's box and folds his arms with both hands.,raises his eyebrows and looks on.,licks him wide and wipes his mouth.,purses his lips and arches his brows.,gold0-reannot,pos,unl,unl,unl,unl,\"Upset, someone winces as he eats.\",\"Observing him, someone\"\nlsmdc1005_Signs-4981,7476,\"Someone slaps another plank across the bedroom door. Someone in his arms, someone\",go downstairs into the front hallway.,returns to the ceiling.,leaves the ransacked floor.,shoots someone with a taser.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone slaps another plank across the bedroom door.,\"Someone in his arms, someone\"\nlsmdc1005_Signs-4981,7456,\"Someone watches in disbelief as someone tucks into his mount of food. Upset, someone\",winces as he eats.,glances over his shoulder and answers the adjacent door.,\"rushes to the kitchen counter where the teacher enters, follows yells to someone.\",draws a roadster from a jack - testing bike and enters the loft facility.,looks at an bloodstained typewriter and holds out a personal cabinet.,gold0-reannot,pos,unl,unl,unl,unl,Someone watches in disbelief as someone tucks into his mount of food.,\"Upset, someone\"\nanetv_iFJaqDgYsp0,17735,The man returns and lifts the weight to his shoulders then over his head. The man,drops the weight and laughs and pumps his fist.,jumps on the floor and start performing tai chi in his room.,speaks once more closely in his eyes.,lifts his weight over his head down and lifts it above his head.,,gold0-orig,pos,unl,unl,pos,n/a,The man returns and lifts the weight to his shoulders then over his head.,The man\nanetv_iFJaqDgYsp0,17734,\"The man drops the weight, pumps his fist, and walks off. The man\",returns and lifts the weight to his shoulders then over his head.,spins again with his arms extended.,get off the stool away.,\"walks off, shakes dusts off the weight and continues on the exercise.\",,gold0-orig,pos,unl,unl,pos,n/a,\"The man drops the weight, pumps his fist, and walks off.\",The man\nanetv_iFJaqDgYsp0,8113,A man is seen kneeling down before a set of weights while another watches on the side. He,lifts up the weights and throws them back down.,continues the routine in front of the crowd and ends with several more men walking down the frame.,continues moving around and throwing his arms off the side.,moves to the side and does several martial arts moves.,continues dancing and ends by moving off the mat and smiling.,gold0-orig,pos,unl,unl,unl,unl,A man is seen kneeling down before a set of weights while another watches on the side.,He\nanetv_iFJaqDgYsp0,17732,A man walks to a barbell and grips the handle. The man then,lifts the weight over his head and stands up.,lifts himself onto his knees and tightens the weight.,spins and slows down when throws himself.,places his hands around the seat of the machine.,starts lifting the barbell all over his head when landed.,gold0-orig,pos,unl,unl,unl,pos,A man walks to a barbell and grips the handle.,The man then\nanetv_iFJaqDgYsp0,17733,The man then lifts the weight over his head and stands up. The man,\"drops the weight, pumps his fist, and walks off.\",lift the weight against his head.,drops into a ball.,is also water skiing.,,gold0-orig,pos,unl,unl,unl,n/a,The man then lifts the weight over his head and stands up.,The man\nanetv_iFJaqDgYsp0,8114,He lifts up the weights and throws them back down. He,is again shown lifting the weights over his head.,is pulling the amplifier with a green object.,grabs more weight and rocks around some of the weight.,stands in front of the judges to take the weights off of him.,drops his weights and drops them onto the floor.,gold0-reannot,pos,unl,unl,unl,pos,He lifts up the weights and throws them back down.,He\nanetv_1RVu0qNtWCc,8003,A man is seen looking in the mirror and adjusting a camera. The man then,begins shaving his facial hair using a razor.,puts the hair back in his eyes and speaking to the camera.,begins kicking up the hair and showing them all to the camera.,pauses to speak to the camera and continues walking.,shaves the boy's leg while speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen looking in the mirror and adjusting a camera.,The man then\nanetv_1RVu0qNtWCc,6435,He smiles and then continues on with the trim of his beard until it is shown and turns into a goatee. He then,speaks into the camera as the video ends.,picks up the nails and begins painting them down with paint.,falls down and dries up off the ground.,turns to show adjustments to drying his hair.,places an iron over an iron to put shoes on.,gold0-orig,pos,unl,unl,unl,unl,He smiles and then continues on with the trim of his beard until it is shown and turns into a goatee.,He then\nanetv_1RVu0qNtWCc,6434,He moves very quickly and trims the beard very precisely. He,smiles and then continues on with the trim of his beard until it is shown and turns into a goatee.,uses the shears to carve the blade.,demonstrates how to use the sides of the hedge by making his way across a path and cutting snow off a hedge.,turns his tube on to the lady's blanketed leg and then zooms off.,sprays the back of the hair all the way.,gold0-orig,pos,unl,unl,unl,unl,He moves very quickly and trims the beard very precisely.,He\nanetv_1RVu0qNtWCc,6433,He begins to shave his long beard with an electric razor. He,moves very quickly and trims the beard very precisely.,uses part brush to shave his beard off.,lifts the barbell back up and shaves the bottom out.,then wipes it away with a razor.,shaves his beard off and talks to the camera first.,gold0-orig,pos,unl,unl,unl,pos,He begins to shave his long beard with an electric razor.,He\nanetv_1RVu0qNtWCc,6432,A young man is shown in a bathroom and he is setting up a camera in front of a mirror. he,begins to shave his long beard with an electric razor.,talks about the throw for a tutorial on how to make hair work.,rubs the gloves with cloth soap and rubs glasses over the sink.,then scrubs a small table with a scraper with the packet showing the finished product.,demonstrates how to use a razor to shave your legs over.,gold0-reannot,pos,unl,unl,unl,unl,A young man is shown in a bathroom and he is setting up a camera in front of a mirror.,he\nanetv_1RVu0qNtWCc,8004,The man then begins shaving his facial hair using a razor. He,continues shaving and looking up then down at his hair.,picks up the razor and continues shaving the man's hair.,uses the razor to clean a beard.,fades the action while still working his hat off.,continues to shave the beard as the man continues on his beard.,gold1-reannot,pos,unl,unl,unl,pos,The man then begins shaving his facial hair using a razor.,He\nlsmdc1023_Horrible_Bosses-81938,6766,He tries to sweep it off. Someone,picks up someone's razor.,opens it and peers inside.,\"turns and sharp, clean, straggly.\",screams in fear of someone.,pins the death eater away.,gold1-orig,pos,unl,unl,unl,unl,He tries to sweep it off.,Someone\nlsmdc1023_Horrible_Bosses-81938,6760,Someone enters the bedroom where there's a large Japanese style portrait of someone brandishing nunchucks. He,pockets something from the dresser.,\"steps away from the church, a portrait of his mother.\",holds an umbrella over his chest.,chases them through the window.,,gold0-orig,pos,unl,unl,unl,n/a,Someone enters the bedroom where there's a large Japanese style portrait of someone brandishing nunchucks.,He\nlsmdc1023_Horrible_Bosses-81938,6768,\"In the open plan living space, someone dumps the contents of the Dustbuster into the cocaine tray. The tray\",\"is now full of dust, cocaine and debris.\",explodes into an empty glass.,is still on the floor.,is on the floor.,carries the rest of the group.,gold1-orig,pos,unl,unl,unl,unl,\"In the open plan living space, someone dumps the contents of the Dustbuster into the cocaine tray.\",The tray\nlsmdc1023_Horrible_Bosses-81938,6769,\"The tray is now full of dust, cocaine and debris. Someone\",is stony - faced.,rides the other way down some stairs.,are there in an illuminated hallway.,props up on the blood - spattered window.,,gold0-orig,pos,unl,unl,pos,n/a,\"The tray is now full of dust, cocaine and debris.\",Someone\nlsmdc1023_Horrible_Bosses-81938,6765,Someone's hoody is dusted with cocaine. He,tries to sweep it off.,places it in a folded canvas in the courtyard.,gets out of bed and takes the phone out.,turns off his light.,,gold0-orig,pos,unl,unl,pos,n/a,Someone's hoody is dusted with cocaine.,He\nlsmdc1023_Horrible_Bosses-81938,6759,A cocaine cloud hangs in the air. Someone,enters the bedroom where there's a large japanese style portrait of someone brandishing nunchucks.,fly back into the van.,\"hangs on the bush, slightly tilted up the sides of the road.\",'s cellphone to an intercom dial.,watches and her eyes widen in surprise.,gold1-orig,pos,unl,unl,unl,pos,A cocaine cloud hangs in the air.,Someone\nlsmdc1023_Horrible_Bosses-81938,6767,Someone picks up someone's razor. He,pops it down the back of his trousers.,\"puts it on to his chest, and releases us.\",sharpens the knife on someone's head.,hangs a whip on someone's hair.,leans on the bed.,gold0-orig,pos,unl,unl,unl,pos,Someone picks up someone's razor.,He\nlsmdc1023_Horrible_Bosses-81938,6763,Someone uses his sleeve gloves to turn the light on in someone's on - suite bathroom. He,spots someone's toothbrush.,\"hustles someone to the curtain on the shower, releasing it in the spins.\",stands beside the clothes yanking on a pink thong with dirt.,opens his boot and looks out through the back doors.,points in the concentrate and takes a left - finger.,gold0-orig,pos,unl,unl,unl,unl,Someone uses his sleeve gloves to turn the light on in someone's on - suite bathroom.,He\nlsmdc1023_Horrible_Bosses-81938,6771,Someone finishes up in the bathroom. He,turns the light off and leaves.,\"goes into the living room, and someone's face lands on the bed.\",approaches the bathroom where someone lies in the bed.,handfuls a pill in the pot.,throws his napkin to his lips and laughs.,gold0-orig,pos,unl,unl,unl,unl,Someone finishes up in the bathroom.,He\nlsmdc1023_Horrible_Bosses-81938,6761,\"He pockets something from the dresser. Someone, who wears a short sleeved t shirt,\",watches someone pick up the tray.,\"straightens her white, unbuttoned ear.\",\"drops her silver dress and scarf, then drinks a bottle of champagne.\",stands over caboose volumes.,is wearing stubble faced rubbing pushed over.,gold1-orig,pos,unl,unl,unl,unl,He pockets something from the dresser.,\"Someone, who wears a short sleeved t shirt,\"\nlsmdc1023_Horrible_Bosses-81938,6764,He spots someone's toothbrush. He,\"takes it from his holder, slides it down his ass crack and has a good scrub.\",\"folds his coat, fixing a cherry over the table.\",\"hit the ground with the nervous thread as he glares at someone, then bends over over.\",wheels the boat around to find it empty.,sprays him with an electric shaver.,gold0-reannot,pos,unl,unl,unl,unl,He spots someone's toothbrush.,He\nanetv_G0vkQmcalvk,17047,A woman plays the drums and sings on stage. The camera,pulls back on the scene.,is the woman playing harmonica being shown.,tips above the marching band.,continues to countdown once more.,is still playing on the mattress as she smiles.,gold0-orig,pos,unl,unl,unl,unl,A woman plays the drums and sings on stage.,The camera\nanetv_G0vkQmcalvk,17048,The camera pulls back on the scene. The woman,finishes and stands up.,opens the window again and smokes.,shuts the panel and smooths a button.,lies on the edge of the bed knitting.,swings back in park.,gold0-reannot,pos,unl,unl,unl,pos,The camera pulls back on the scene.,The woman\nanetv_jqZg_FK2OlM,5233,A camera pans around a fenced in are and leads into a woman holding a paint brush. She,brushes the side of the fence up and down while the camera continues looking around the side.,continues to speak to the camera and shows a river brushing under the water.,continues to speak to the camera as she puts her hair into place.,mixes up various dishes in a bowl.,stylist cuts up a picture and shows more clips of people riding.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a fenced in are and leads into a woman holding a paint brush.,She\nanetv_twQbAuWVxlU,18878,Each of the figures is walking a dog. The clip,seems to be a loop.,who pictured playing is shown.,is presented being groomed with several other dogs.,stops and laughs back.,,gold0-orig,pos,unl,unl,unl,n/a,Each of the figures is walking a dog.,The clip\nanetv_CV9n0jgThLY,13609,\"Smoke comes near a table. People stand on front the barn watching, also two women and two children\",stand on front the barn.,sit down beside him.,pour some in the sidewalk.,pull up to the floor.,standing around little nose.,gold1-orig,pos,unl,unl,unl,unl,Smoke comes near a table.,\"People stand on front the barn watching, also two women and two children\"\nanetv_CV9n0jgThLY,13608,\"A person is in the basket of crane on a roof of a barn, while a man stands on the truck holding a rope. Smoke\",comes near a table.,see the boat ski through a city on a concrete road.,is in a jungle to other boys.,see a black bench under the van next to the white van.,jump up and down on jump ropes.,gold0-orig,pos,unl,unl,unl,unl,\"A person is in the basket of crane on a roof of a barn, while a man stands on the truck holding a rope.\",Smoke\nanetv_DkiJwIJQKaM,12332,A woman holding two Frisbee is standing over a dog. the dog,runs around in a circle around the woman.,throws the frisbee off the table.,and dog begin to clap for the dog.,is holding a leash from the leash.,,gold0-orig,pos,unl,unl,unl,n/a,A woman holding two Frisbee is standing over a dog.,the dog\nanetv_DkiJwIJQKaM,12333,The dog runs around in a circle around the woman. the woman and dog,continue to perform several tricks with frisbee.,continue performing with one another with the bow at the head.,help through and catch the calf.,keep laying on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,The dog runs around in a circle around the woman.,the woman and dog\nanetv_DkiJwIJQKaM,15590,\"Person is holgding blue frisbees and is plying with a dog in a closed field, the doing tricks while is trying to catch the frisbee. the dog\",holds a frisbee on his mouth and starts running around the girl doing tricks.,is standing on the snowy mountain and is going down a pile of sand.,is riding in a green chair and there is a plucked off the hair.,falls and the person is watching him throw the frisbee to the man who's standing in the wheels.,,gold0-orig,pos,unl,unl,unl,n/a,\"Person is holgding blue frisbees and is plying with a dog in a closed field, the doing tricks while is trying to catch the frisbee.\",the dog\nanetv_Paj9y9YMSg0,15490,People are riding horses in a field. They,are playing polo on horses.,are pulling behind the ropes.,run behind the stone.,are jumping up and down.,are playing volleyball in a green net.,gold0-orig,pos,unl,unl,unl,unl,People are riding horses in a field.,They\nanetv_Paj9y9YMSg0,15491,They are playing polo on horses. A person standing on the sidelines,waves a white flag.,watching them is helping two little girls spin the monkey at a pinata.,is shooting or surfing.,hands another picture of the man in his red jacket.,runs in front of them.,gold0-orig,pos,unl,unl,unl,pos,They are playing polo on horses.,A person standing on the sidelines\nanetv_HnCUykqco5M,817,A large group of people are seen moving along the river in a raft. Another group,is seen riding along the river in front.,continues walking around the water on the wake boards.,is seen paddling by themselves as well as pausing to speak to the camera and walking on the bumpy.,are seen down the rough water at the same time.,is seen putting paddles and people riding boards on a bridge over the river.,gold0-orig,pos,unl,pos,pos,pos,A large group of people are seen moving along the river in a raft.,Another group\nanetv_HnCUykqco5M,2317,Text speaks of an event that is coming up. Several people,are sitting on rafts as they float gently down stream.,get in a roofed gym practicing drills.,are standing holding a bull as a person runs a finger over the animal.,start taking their stuff.,are shown doing gymnastics at the same event.,gold0-orig,pos,unl,unl,unl,unl,Text speaks of an event that is coming up.,Several people\nanetv_HnCUykqco5M,2318,Several people are sitting on rafts as they float gently down stream. The people,\"hit the rapids hard, and begin paddling their way through.\",start snowboarding down a hill of snow.,are also down and crashes as the water is taken above.,wipe their boards in the intense water.,in yellow hoodie get into the water.,gold0-orig,pos,unl,unl,unl,pos,Several people are sitting on rafts as they float gently down stream.,The people\nanetv_HnCUykqco5M,818,Another group is seen riding along the river in front. The people,swim around and laugh with one another as well as jumping off cliffs and riding their bodies down the river.,begin shoveling with others riding in front and ends with a man riding a skateboard down a mountain.,begin rowing canoes as he rides.,ride past one another with obstacles.,,gold0-orig,pos,unl,pos,pos,n/a,Another group is seen riding along the river in front.,The people\nanetv_HnCUykqco5M,2319,\"The people hit the rapids hard, and begin paddling their way through. They\",are shown jumping off cliffs into the water before rafting again.,see a river near the river.,continue to bow around the river in choppy water as a car closes up behind him.,continue to slide across the ocean.,\"spin around as the person quickly comes off the skis, and boarding down the water to further follows.\",gold1-reannot,pos,unl,unl,unl,unl,\"The people hit the rapids hard, and begin paddling their way through.\",They\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10951,\"Someone stands still for a moment, gazing at himself. To his surprise, two shadowy figures gradually\",\"appear in the mirror, standing one on each side of him.\",form the cluster of hundreds of cobwebs to spot it nervously.,appear in the ocean and a tube.,space the room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stands still for a moment, gazing at himself.\",\"To his surprise, two shadowy figures gradually\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10954,\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone puts a hand on his own shoulder. His mother fondly\",smiles at him again.,takes aim and shoot off on the bus.,kisses him gently.,sets someone up and gives him a loving smile.,lays her hand on his shoulder and glances at someone eyes.,gold0-orig,pos,unl,unl,pos,pos,\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone puts a hand on his own shoulder.\",His mother fondly\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10949,\"He stops in front of it, and tries to read the writing carved around the wooden frame. But the words\",are strange and unfamiliar.,belong to someone in eight.,are on it.,are written back from left.,,gold0-orig,pos,unl,pos,pos,n/a,\"He stops in front of it, and tries to read the writing carved around the wooden frame.\",But the words\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10930,\"Then he puts the light down. As he takes down a book and opens it, a screaming face\",burst violently out of the pages.,is angry as he hears bored blood on his face.,appears with breathing apparatus.,appears at the belt of sir someone's corpse.,,gold0-orig,pos,unl,pos,pos,n/a,Then he puts the light down.,\"As he takes down a book and opens it, a screaming face\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10937,\"Hidden by the invisibility cloak, someone feels his way across the dark room. He\",\"stops for a moment, as someone passes by with his lantern.\",\"shifts his disgruntled gaze, then peers out at the apartment building.\",helps a section of the engineer rail up into the river.,steps into the dark room where someone's helmet sits in his lap.,\"hits a guard on her shoulder, which closes into the corridor.\",gold0-orig,pos,unl,unl,unl,pos,\"Hidden by the invisibility cloak, someone feels his way across the dark room.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10929,Someone takes off the cloak and holds the lantern closer to a shelf. Then he,puts the light down.,looks down cautiously into the solitary figure.,takes the wooden blade through flared flame.,gets up and turns to face someone.,,gold1-orig,pos,unl,unl,pos,n/a,Someone takes off the cloak and holds the lantern closer to a shelf.,Then he\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10931,\"As he takes down a book and opens it, a screaming face burst violently out of the pages. Someone\",slams the book shut.,levitates along wood and hides.,\"facing slurps, he pulls a unit off the ground and snags her lying on the ground.\",shuts the cell door behind him.,\"wrenches her wand from her grasp, turns, and grabs her hand.\",gold0-orig,pos,unl,unl,pos,pos,\"As he takes down a book and opens it, a screaming face burst violently out of the pages.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10927,\"Under the invisibility cloak, someone peers about him wearily. Inside, he\",searches along more dark bookshelves.,disappears under the girder.,flies into the sunlight amid soaking debris.,uses his phone on the sofa below.,,gold0-orig,pos,unl,unl,pos,n/a,\"Under the invisibility cloak, someone peers about him wearily.\",\"Inside, he\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10947,\"Through a stone arch, he glimpses a large mirror and a carved frame that goes down a few steps into the room beyond. As he walks slowly towards the mirror, he\",sees his own reflection getting closer.,steps into the camera and separates.,opens his legs and stands onto his side.,sees the black walking figure on his way up the stairs.,looks up at someone.,gold0-orig,pos,unl,unl,pos,pos,\"Through a stone arch, he glimpses a large mirror and a carved frame that goes down a few steps into the room beyond.\",\"As he walks slowly towards the mirror, he\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10921,\"Someone's snowy owl turns its head, as he leaps out of bed and puts on his spectacles. Down in the Gryffindor common room, someone\",is standing in front of a blazing fire.,falls off the before.,stares at his own body and nose.,swigs from a bottle's pill bottle.,wields a box of assignments.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's snowy owl turns its head, as he leaps out of bed and puts on his spectacles.\",\"Down in the Gryffindor common room, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10955,His mother fondly smiles at him again. Someone,looks at her sadly.,\"holds an inflated lantern, then leaves casually, leaning over a tree, holding a poles.\",'s lingering hand caresses her crotch.,looks up his face.,walk on the sunny beach beside a river - a lake.,gold0-orig,pos,unl,pos,pos,pos,His mother fondly smiles at him again.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10953,\"Someone stretches out a hand towards them, but his fingers only touch his reflection in the glass. As his mother puts her hand on the shoulder of his reflection in the mirror, someone\",puts a hand on his own shoulder.,wears his jumpsuit and strikes his body with the wrist stick.,\"pulls off her dress, revealing a sleeved shirt and panties.\",\"starts to pace, but does n't quite pulls him in.\",bangs his head against the far wall.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stretches out a hand towards them, but his fingers only touch his reflection in the glass.\",\"As his mother puts her hand on the shoulder of his reflection in the mirror, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10958,\"In the empty classroom, they take off the invisibility cloak. They\",run to the mirror.,walk down a gangplank through the magnificent packed quidditch stadium.,begin to sing as they enter the telegraph office.,struggle to guide someone into the passageway.,see someone on a street.,gold1-orig,pos,unl,unl,unl,unl,\"In the empty classroom, they take off the invisibility cloak.\",They\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10928,\"Inside, he searches along more dark bookshelves. Someone\",takes off the cloak and holds the lantern closer to a shelf.,studies it through chrome spray.,massages the electric cat's cage.,attaches a cutting tool and two sharpening knives.,,gold0-orig,pos,unl,unl,pos,n/a,\"Inside, he searches along more dark bookshelves.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10932,\"Someone slams the book shut. Grabbing his cloak, someone\",knocks over the lamp.,dodges by moving someone's hand.,grasps someone by the mouth.,knocks him out to the floor.,climbs over the wall.,gold0-orig,pos,unl,unl,unl,unl,Someone slams the book shut.,\"Grabbing his cloak, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10957,\"Someone pulls the cover off someone's bed. In the empty classroom, they\",take off the invisibility cloak.,find someone asleep in his sleep.,come into someone's apartment.,find someone standing at a vacant central cubicle.,sit together and stare down at her.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls the cover off someone's bed.,\"In the empty classroom, they\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10936,\"The lamp light shows up his thin lips. Hidden by the invisibility cloak, someone\",feels his way across the dark room.,stares at someone slowly.,joins someone's face in a walled window and hurry away from someone.,'s cold eyes gaze nervously through the narrow stained cheeks.,,gold0-orig,pos,unl,unl,unl,n/a,The lamp light shows up his thin lips.,\"Hidden by the invisibility cloak, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10945,\"A door, in the far wall seems to open and close by itself. In the classroom next door, someone\",reappears as he takes off the invisibility cloak.,\"enters the pizza with the briefcase of someone, who stands with him.\",is pointing at a crystal poster.,tosses a book in revolving pencil.,sits on her bed and shakes his head.,gold0-orig,pos,unl,unl,unl,unl,\"A door, in the far wall seems to open and close by itself.\",\"In the classroom next door, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10941,\"Someone makes a grab, but only snatches a hand full of air. Someone\",takes a step backwards.,dives underneath the bar.,\"runs with his heavy stick, trying to get the firewood.\",leans down and grabs the mace.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone makes a grab, but only snatches a hand full of air.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10944,\"People rush away down the corridor. A door, in the far wall\",seems to open and close by itself.,\"is a battered old bearded man, first one from the corner.\",\"remains, can no one thing.\",\"passes a short window of someone completely broken, and forces people out over the courtyard, onto the floor floor.\",\", comes out of the foyer.\",gold0-orig,pos,unl,unl,unl,unl,People rush away down the corridor.,\"A door, in the far wall\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10923,Someone runs bare foot down the stone stairs towards a pile of presents on the Christmas tree. Someone,\"picks up a parcel, while someone dips into a box of every flavor beans.\",flees off the sand.,blows on their entrance.,gently scraping buster's foot with a dainty hand.,takes a look to someone who blinks ahead.,gold1-orig,pos,unl,unl,unl,pos,Someone runs bare foot down the stone stairs towards a pile of presents on the Christmas tree.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10939,\"He breathes a sigh of relief, as the caretaker goes out through a far door way. Someone\",\"creeps into a moon lit corridor, where someone's red - eyed cat is lurking.\",\"and someone plays a second assortment of metal, sliding out beside him with a candle.\",peers over the food.,\"scratches his tail, then waddles over to her grandmother at the edge of the stone entrance and down to her grave.\",watches with his confused sleep.,gold0-orig,pos,unl,unl,unl,unl,\"He breathes a sigh of relief, as the caretaker goes out through a far door way.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10933,\"Grabbing his cloak, someone knocks over the lamp. He\",quickly puts on the invisibility cloak over his head and disappears.,ducks back and retrieves the flame.,yanks out someone's weapon and moves his hand away.,walks past onto someone's pistol barrel and leaps to his feet.,,gold0-orig,pos,unl,unl,pos,n/a,\"Grabbing his cloak, someone knocks over the lamp.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10922,\"Down in the Gryffindor common room, someone is standing in front of a blazing fire. Someone\",runs bare foot down the stone stairs towards a pile of presents on the christmas tree.,sits up on a cigar that the lights have risen on the ground.,\"apparate in a dark rivers - lit with oak, buildings, etc.\",makes a little trying to win the movie.,watches with horror as he floats out of the hole into the night.,gold0-orig,pos,unl,unl,unl,pos,\"Down in the Gryffindor common room, someone is standing in front of a blazing fire.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10948,\"As he walks slowly towards the mirror, he sees his own reflection getting closer. He\",\"stops in front of it, and tries to read the writing carved around the wooden frame.\",gets an inch from her husband's cheek.,\"tosses the large portico to the vent, and goes the other way.\",awakes down in a courtyard to the couch on the porch.,gets to the back bar and raises his ornate hand above someone's head.,gold0-orig,pos,unl,unl,unl,unl,\"As he walks slowly towards the mirror, he sees his own reflection getting closer.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10946,\"In the classroom next door, someone reappears as he takes off the invisibility cloak. The moon light, filtering through the snow on the window panes,\",gives the empty classroom a mysterious air.,stares down into the night between buildings.,sits in the dusty flat.,hangs by a hedge and staring at the others.,comes on to the opposite side of the building.,gold0-orig,pos,unl,unl,unl,unl,\"In the classroom next door, someone reappears as he takes off the invisibility cloak.\",\"The moon light, filtering through the snow on the window panes,\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10950,But the words are strange and unfamiliar. Someone,\"stands still for a moment, gazing at himself.\",gets out of the bed where someone was sitting on the car.,holds only three feet.,\"comes briefly and presses his lips together, then throws someone's crotch down.\",,gold1-orig,pos,unl,unl,unl,n/a,But the words are strange and unfamiliar.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10926,\"In the library, a floating hand carries a lantern between the bookshelves. Under the invisibility cloak, someone\",peers about him wearily.,dances into the back too.,rides a dark figure past the front door.,carries onto a stretcher.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the library, a floating hand carries a lantern between the bookshelves.\",\"Under the invisibility cloak, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10924,He puts down the letter and unties the string on the parcel. He,\"unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern.\",leaves and finds rustling glisten in the floorboards.,\"awakens, then creeps stands and touches the back of the baby's cap along with the brush.\",walks back to the cabinet for the book and withdraws.,\"looks back at someone, opens the door with a smile, and walks away.\",gold0-orig,pos,unl,unl,unl,pos,He puts down the letter and unties the string on the parcel.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10938,\"He stops for a moment, as someone passes by with his lantern. He\",\"breathes a sigh of relief, as the caretaker goes out through a far door way.\",\"runs through the trees, picks up his rucksack and starts across the lawn toward her apartment.\",\"chucks his flashlight aside, then looks down at his cellphone on his desk.\",picks up a large flaming torch.,sits on a chair in the foyer.,gold0-orig,pos,unl,unl,unl,pos,\"He stops for a moment, as someone passes by with his lantern.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10942,Someone takes a step backwards. Someone,turned sharply back to someone.,bounces off his wrists and swings at the thumper post knocking someone over.,points about his body to the shield.,springs up and stumbles.,,gold0-orig,pos,unl,unl,pos,n/a,Someone takes a step backwards.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10952,\"Someone turns, but the room behind him is completely empty. He\",\"looks back at the pretty young woman, and swallows nervously.\",tries to explode himself all around the room and leaps in the other way.,\"across the street, he rests his hands on his shoulders, closing the door, then goes back to the locker room.\",\"slides a backpack up to someone's head, shaking his brow for a moment.\",turns to his imaginary guest.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone turns, but the room behind him is completely empty.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10934,\"He quickly puts on the invisibility cloak over his head and disappears. Someone, the caretaker,\",holds up a lantern.,runs in with her and cuffs someone with the shield.,leaves his house and the tree is undamaged.,is unable to rise.,comes back beside her.,gold0-reannot,pos,unl,unl,unl,pos,He quickly puts on the invisibility cloak over his head and disappears.,\"Someone, the caretaker,\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10943,Someone turned sharply back to someone. People,rush away down the corridor.,\"and someone trade share a look, and savagely fly until they are wearing a cheerful blue mask.\",take off where the kids were.,\", with him standing against the door, glances at the others, as they stare at the exam table.\",take her hand and dance slowly back and forth.,gold0-reannot,pos,unl,pos,pos,pos,Someone turned sharply back to someone.,People\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10925,\"He unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern. Someone\",swings it on to his shoulders.,\"'s name, the love, is a lightly on a heart of someone's heart.\",\"holds up his thumb, then at the art.\",\"continues to blow until he is done, the video fades screen for some reason.\",looks at the pile of papers and screws them up.,gold0-reannot,pos,unl,unl,unl,unl,\"He unfolds the silver wrapping paper, and takes out some soft material with a rich dark pattern.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96018,10956,Someone looks at her sadly. Someone,pulls the cover off someone's bed.,sits on someone's back.,steps two from beside her former executive.,is wide - eyed and smitten.,\"bites her lip, her gaze all over.\",gold1-reannot,pos,unl,unl,unl,pos,Someone looks at her sadly.,Someone\nanetv_UYGiq0CsYEs,18151,A man performs on stage standing and playing a drum set while singing. The crowd,waves their hands in the air.,\"claps for the audience, while the rest of the audience greet the man behind him.\",continues dancing and another man in the blue shirt watches from the bed.,claps for a crowd as people applaud.,,gold0-orig,pos,unl,unl,unl,n/a,A man performs on stage standing and playing a drum set while singing.,The crowd\nanetv_UYGiq0CsYEs,18693,He appears to be singing at the same time. A bright light,shines from behind him.,runs out from the artificial lake where he is sitting on a grave.,fills the air as someone walks along to the front door and looks out to the floor.,is coming from the window.,filters through the streets.,gold0-orig,pos,unl,pos,pos,pos,He appears to be singing at the same time.,A bright light\nanetv_UYGiq0CsYEs,18691,A man is standing at a microphone in front of a crowd. He,is playing the drums on stage.,continues by cutting the grass.,is wearing a blue shirt and purple hat.,spins around in the air.,is playing with a bass drum.,gold0-orig,pos,unl,unl,unl,pos,A man is standing at a microphone in front of a crowd.,He\nanetv_UYGiq0CsYEs,18692,He is playing the drums on stage. He,appears to be singing at the same time.,plays the guitar several times.,\"walks around the darkness, some laughing.\",lifts his legs as to go over the room.,stands in front of singer playing behind the musician.,gold0-orig,pos,unl,unl,unl,unl,He is playing the drums on stage.,He\nanetv_QuEHZ2Y3H40,12073,A close up of a wave is shown leading into a woman surfing. More clips,are shown of people surfing as well as swimming in the ocean.,are shown of people paddling in surf rafts as the boats listen to their paddles.,are shown of various people jumping up and down rocks.,are shown of people surfing on the lake.,are shown of people speaking.,gold0-orig,pos,unl,unl,pos,pos,A close up of a wave is shown leading into a woman surfing.,More clips\nanetv_QuEHZ2Y3H40,12074,More clips are shown of people surfing as well as swimming in the ocean. The,continue surfing around the water and swimming underneath.,dolphins walk in and out of frame.,rafters ride down the river.,bounce in the water as the camera pans to show the floor.,shots of the swim are shown.,gold0-orig,pos,unl,unl,unl,pos,More clips are shown of people surfing as well as swimming in the ocean.,The\nanetv_QuEHZ2Y3H40,18989,People are swimming under the water. A woman,surfs on a yellow surf board.,holds out a rock to use and begins pulling ice out.,is seen standing on skis in front of a river.,is sitting in a lake.,puts a basket of water in front of her face.,gold0-orig,pos,unl,unl,unl,pos,People are swimming under the water.,A woman\nlsmdc3023_DISTRICT_9-10785,11097,\"He opens the door for the little one to go out. Outside their doorway, the little alien\",plays with an empty cat food can.,takes his phone onto the bed and shuts it.,is still tearing off the cage mountain with pulling horrible out of it.,hands the gun back to someone and shoots.,watches the vehicle suddenly close under water.,gold0-reannot,pos,unl,unl,unl,unl,He opens the door for the little one to go out.,\"Outside their doorway, the little alien\"\nlsmdc3023_DISTRICT_9-10785,11098,He throws the alien child a candy. The child,throws it back in his face.,swoops down to stop dead.,loses and returns it to the little boy.,\"runs towards them, but people no one.\",,gold0-reannot,pos,unl,unl,unl,n/a,He throws the alien child a candy.,The child\nlsmdc3023_DISTRICT_9-10785,11099,The child throws it back in his face. Someone,aims his shotgun at the kid.,lowers the covers from his mouth.,grabs his hand and someone cracks him from the mushrooms.,\"looks on for himself, breathing hard.\",drapes it all over the pillow.,gold0-reannot,pos,unl,unl,unl,pos,The child throws it back in his face.,Someone\nanetv_5K-soRkdGDs,14834,\"A dog is shown running up steps to a building. They go inside, and it\",'s a dog grooming salon.,jumps on the ladder.,is tackled by a matador.,gets into yellow leap.,seems to be sped up in an outdoor area.,gold0-orig,pos,unl,unl,unl,unl,A dog is shown running up steps to a building.,\"They go inside, and it\"\nanetv_5K-soRkdGDs,14835,\"They go inside, and it's a dog grooming salon. Several signs in another language\",are shown before the equipment is turned on.,\"appears, with a petite man of haircut, clippers, a well dressed man.\",appears include a dog and make a celery leash that makes the dog three grooming.,appears on screen whom she talks about what she did after they were done.,appear to be user.,gold0-reannot,pos,unl,unl,unl,unl,\"They go inside, and it's a dog grooming salon.\",Several signs in another language\nlsmdc0051_Men_in_black-70927,8574,\"Someone whirls around to see someone 'body, growing another head. Someone\",\"raises the weapon again, threatening.\",has consumed his courage at it and does n't limps for the moment.,grabs his guitar from behind and sends someone's picture.,bounds down the stairs but finds more estate behind.,\"and someone flee into a clearing, except the leader.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone whirls around to see someone 'body, growing another head.\",Someone\nlsmdc0051_Men_in_black-70927,8570,\"At the sound of someone's voice, someone suddenly pales, a look of fear coming over his face. He\",pulls his own gun and aims it at someone 'forehead.,is unable to slide him down.,returns to the office building where three prisoners huddle together in a hallway.,lowers the binoculars to his own.,turns to someone who gives her a half - smile.,gold1-orig,pos,unl,unl,unl,pos,\"At the sound of someone's voice, someone suddenly pales, a look of fear coming over his face.\",He\nlsmdc0051_Men_in_black-70927,8573,Someone pulls his own weapon and points it at someone's head. Someone,\"whirls around to see someone 'body, growing another head.\",\"looks into someone's white notebook, much more to himself.\",slides down the barrel.,puts a ring on his jaw and his chest heaves.,blows a fang into the creature's chest and hurries it backwards.,gold1-orig,unl,unl,unl,unl,unl,Someone pulls his own weapon and points it at someone's head.,Someone\nlsmdc0051_Men_in_black-70927,8572,\"Someone, seeing that someone is getting somewhere, joins in the routine. someone blows someone 'head off and someone' body\",collapses to the floor.,tries to block his way.,begins to touch with laughter.,turns around the nappy.,drops almost to the ground.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, seeing that someone is getting somewhere, joins in the routine.\",someone blows someone 'head off and someone' body\nlsmdc0051_Men_in_black-70927,8569,Someone opens the door and gets out of the car. They,get out of the car.,bump to open the door.,knock the snow off the ground.,look over at someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone opens the door and gets out of the car.,They\nlsmdc0051_Men_in_black-70927,8575,\"Someone raises the weapon again, threatening. Someone\",\"nods, point taken.\",looks down at the pasta in front of someone.,turns heading towards someone's car standing straight ahead to the left.,creep alongside his cells.,lies bound at the side of the deck.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone raises the weapon again, threatening.\",Someone\nanetv_G9m5zxl2f08,18371,A person is seen putting their hands in a sink full of dirty water and pressing his face up against the water. The man,continues wiping the mud off of his face as the mud drips down into the sink.,rinses off the soap and pulls onto the brush on a toothbrush followed by a piercer afterwards.,continues washing powder in the sink with a towel then rubs it down under the sink and wipes it on the side.,wipes his face and wipes his face with a rag then runs his hair over his face while looking off into the distance.,stirs with a sponge and continues cleaning up water from the bottom of the sink.,gold0-reannot,pos,unl,unl,unl,unl,A person is seen putting their hands in a sink full of dirty water and pressing his face up against the water.,The man\nlsmdc1011_The_Help-78540,2033,\"She burst through the bathroom door and finds someone sitting in a pool of blood. Hastily picking up the fallen towel rack, someone\",calmly takes in the situation.,slaps it and dances wildly.,grasps it and ironed his shirt.,comes back to her father.,ushers it around the tile.,gold1-reannot,pos,unl,unl,unl,unl,She burst through the bathroom door and finds someone sitting in a pool of blood.,\"Hastily picking up the fallen towel rack, someone\"\nanetv_EoQgUlLb3U4,3294,The man throws the discus really hard. The man,watches ahead after his discus.,goes between the ball and hits it.,flexibility platinum the talked dna contain his.,shows the sparks from anh to.,combs the ground using a javelin.,gold0-orig,pos,unl,unl,unl,unl,The man throws the discus really hard.,The man\nanetv_EoQgUlLb3U4,3293,\"A man turns his body around, preparing to throw his discus. The man\",throws the discus really hard.,throws discus and mimes flying back and forth as they jump into the air.,turns them around and ends with credits rolling.,continues throwing and ends by shaking cups.,\"throws the pole in the fly air and spins it, falling onto the ground.\",gold0-orig,pos,unl,unl,unl,unl,\"A man turns his body around, preparing to throw his discus.\",The man\nanetv_Z8yKTJeRMOE,11606,\"A man professionally paints several pieces of furniture using a spray painter in a paint shop while wearing overalls, a denim shirt and a paint mask. The man\",begins by painting a wooden armchair metallic gray with a gold spray paint can.,forms a mustache of green polish and screws the etched substance over his face.,\"sits at a keyboard outside the car, talking as he opens the drawer while the light crashed on the machine.\",\"talks, then dry and shows how to wrap a box.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A man professionally paints several pieces of furniture using a spray painter in a paint shop while wearing overalls, a denim shirt and a paint mask.\",The man\nanetv_Z8yKTJeRMOE,11608,The man then paints a side table black with lights shining off of the black painted wood. The man,ends with painting a dresser drawer pink before the scene fades to a black marketing graphic.,uses an orange paint brush to rub the skin all along the wooden block.,starts cutting the grass with a long torch.,continues to paint around the men.,,gold0-orig,pos,unl,unl,pos,n/a,The man then paints a side table black with lights shining off of the black painted wood.,The man\nanetv_Z8yKTJeRMOE,11607,The man begins by painting a wooden armchair metallic gray with a gold spray paint can. The man then,paints a side table black with lights shining off of the black painted wood.,demonstrates how to apply the mud left part out on the paint pipe.,sands that way on the driveway and applies powdered cream all over it.,scrubs the glitter the dog several points to the camera while other man watches him showcase.,rubs the stone rogers with the artwork out and then returns to speak to the camera.,gold0-orig,pos,unl,unl,unl,pos,The man begins by painting a wooden armchair metallic gray with a gold spray paint can.,The man then\nanetv_99A2KqvfBLI,10009,The keyboardist plays a spirited solo during the song. The man,congratulates and gives a high five to the keyboardist at the end of the song.,plays the band as the band plays.,turn to throw for the camera.,looks up into the air.,breaks but the man wins his back.,gold0-orig,pos,unl,unl,unl,unl,The keyboardist plays a spirited solo during the song.,The man\nanetv_99A2KqvfBLI,10008,A man walks onto the stage to join a band. A man,plays up front of a band with a harmonica.,stands in a crowd and dismounts.,performs on the green in front of a crowd of judges.,steps on stage and drinks straight from the drumsticks.,sits in front of the object laughing and talking.,gold0-reannot,pos,unl,unl,unl,unl,A man walks onto the stage to join a band.,A man\nlsmdc1001_Flight-71882,15183,\"Still wearing his tie, his shirt's sleeves rolled up. He\",\"jumps off a ladder and hustles over to someone, kissing her.\",boy does a wheelie in his direction and his new tricks as he passes in the traffic.,sits down and lifts his hands up to his chest.,glares at her mom first.,\"nods, stops, nods.\",gold1-orig,pos,unl,pos,pos,pos,\"Still wearing his tie, his shirt's sleeves rolled up.\",He\nlsmdc1001_Flight-71882,15181,\"He takes someone's hands. Later at someone's family farm, someone\",sees the lights on in the hangar.,\"emerges on a labeled, machine - coaster bike.\",lies a table covered in a stuffed alligator.,\"stands on a bread stand, smoking a cigarette in his hand, sniffing around his teeth.\",sprints away from her boss.,gold0-orig,pos,unl,unl,unl,pos,He takes someone's hands.,\"Later at someone's family farm, someone\"\nlsmdc1001_Flight-71882,15180,Someone's eyes dart up and down. He,takes someone's hands.,glances back at someone and shakes her head.,jumps them as it loops around his waist.,finds something under a t - shirt.,returns to the dining table.,gold1-reannot,pos,unl,unl,unl,pos,Someone's eyes dart up and down.,He\nlsmdc1001_Flight-71882,15182,\"Later at someone's family farm, someone sees the lights on in the hangar. Someone\",leans over the cessna.,brings someone's car to a halt beside one.,turns her pursue gloves and slowly climbs onto a narrow river in a pit.,swigs the papers from someone sitting on her desk.,drives into runway packed and decorated ships.,gold0-reannot,pos,unl,unl,unl,unl,\"Later at someone's family farm, someone sees the lights on in the hangar.\",Someone\nanetv_VLmZ3M3wSbo,5919,He drops the lens on the sink and again tries to put the contact into his eye. He,drops the lens again and continues trying to put it into his eye and the camera moves around in the end.,places the shaving brush on the lathered again and shaves his lip.,checks his watch then puts on her glasses and gives the doctor a aspiring look.,puts his hand on the side to stop the lens.,shaves his face and rolls his jaw.,gold0-orig,pos,pos,pos,pos,pos,He drops the lens on the sink and again tries to put the contact into his eye.,He\nanetv_VLmZ3M3wSbo,5918,A young man is seen holding his eye open in front of a mirror and attempting to put a contact lens in. He,drops the lens on the sink and again tries to put the contact into his eye.,points to the camera.,\"someone goes to the camera for a very moment, showing himself checking out the various thing that he is missing.\",stops and takes a shot.,,gold1-orig,pos,unl,unl,unl,n/a,A young man is seen holding his eye open in front of a mirror and attempting to put a contact lens in.,He\nanetv_1517CiM5c0A,2928,Several people stand on the street. They,are playing instruments together.,are then shown playing the cymbals while dancing.,run on chasing a ball.,float down with the children in the background.,go back and forth.,gold0-orig,pos,unl,unl,unl,unl,Several people stand on the street.,They\nanetv_1517CiM5c0A,7887,A main with a small video camera shoots footage of the musical group. One of the men in the group,walks away from the group to talk to a man who is at a yellow table and points something out on the table.,speaks to another man with bows hanging from his lap.,continues to try to wrestle while he ropes several more more.,makes their way down the aisle of the goal center bridge.,,gold1-orig,pos,unl,unl,unl,n/a,A main with a small video camera shoots footage of the musical group.,One of the men in the group\nanetv_1517CiM5c0A,7886,A native american tribe are on the street in full native dress playing woodwind instruments in front of shops as people walk by on the sidewalk. A main with a small video camera,shoots footage of the musical group.,is seen from the screen.,shows the judges wit in various sports as well approaches the pommel and narrates it.,leads the entrance of an outdoor outdoor street.,crosses the front porch to an older woman also dressed in a huge orange shirt and large red bulky skirt topped with matching eyes.,gold0-orig,pos,unl,unl,unl,unl,A native american tribe are on the street in full native dress playing woodwind instruments in front of shops as people walk by on the sidewalk.,A main with a small video camera\nanetv_1517CiM5c0A,2929,They are playing instruments together. A man,is video taping them.,talks to the camera while a band is playing for music.,wearing a white shirt is playing wall pipes.,is seen playing a record on the sidewalk.,dressed in a yellow shirt is shown playing a flute.,gold0-reannot,pos,unl,unl,unl,pos,They are playing instruments together.,A man\nanetv_2Ua6E2a6kT4,14621,A man is seen speaking to the camera while standing out in a back yard. He,pans to a man spraying down a fence with a hose and another man watching on the side.,is then shown cleaning products onto his mower while he combs along the sides.,uses a towel around the dog while speaking to the camera.,mixes it together with several clips of him playing forward back and laughing.,speaks to the camera and begins laughing in the living room.,gold1-orig,pos,unl,unl,pos,pos,A man is seen speaking to the camera while standing out in a back yard.,He\nanetv_2Ua6E2a6kT4,14622,He pans to a man spraying down a fence with a hose and another man watching on the side. The man,continues to spray down the hose while another watches on the side and pans back to the camera man.,continues moving the tires along the fence while using a tool to scrape down.,uses his feet to push along the moving wall and runs around afterwards.,cleans the snow all around the car.,,gold0-orig,pos,unl,unl,pos,n/a,He pans to a man spraying down a fence with a hose and another man watching on the side.,The man\nlsmdc1031_Quantum_of_Solace-84359,4783,Cia agent someone watches from a sofa. They,look down from a stone balustrade.,look dark and increasingly nervous as they pass behind the urns and buzz up.,walk out of a blazing truck.,follow him around the hallway.,file up past the shelf.,gold1-orig,pos,unl,unl,unl,unl,Cia agent someone watches from a sofa.,They\nanetv_M6O-QNDUdwU,16689,\"Several swimmers walk past each other, shaking hands. They\",\"gather in the pool, then engage in a game of water polo.\",are practicing on with their swords.,continue to surf in toward the soccer man.,stand at balance with guns on their feet.,kneel on the floor.,gold0-orig,pos,unl,unl,unl,unl,\"Several swimmers walk past each other, shaking hands.\",They\nanetv_M6O-QNDUdwU,16690,\"They gather in the pool, then engage in a game of water polo. They\",\"hit the ball back and forth, trying to get it into the net.\",feast and people are practicing different colors.,ride the ski surfboard and swim towards the shore.,turn on as the others start to celebrate.,go to the center of an outdoor pool practicing the game of pool.,gold0-orig,pos,unl,unl,unl,unl,\"They gather in the pool, then engage in a game of water polo.\",They\nanetv_Imui46JTe7s,16085,We then see a man talking to the camera and sitting and laying on a exercise ball. The man,performs sits ups while on the ball and talking.,walks in front and hands us a tattoo casually.,\"shoots the tool again, catches it again, demonstrating how to properly lay it down again.\",walks over to the box and uses it to perform the number.,,gold0-orig,pos,unl,unl,unl,n/a,We then see a man talking to the camera and sitting and laying on a exercise ball.,The man\nanetv_Imui46JTe7s,16084,We see a fitness center sign. We then,see a man talking to the camera and sitting and laying on a exercise ball.,see the bungee jump on a lift and a person in a panic stand laying on the ground as a performer hops on deck.,see several boys jumping up on the trampoline while one man begins wetting their hand.,see the bus where a group of people start to sail on a river in a lake.,see photos of the man adding a tool to the skater un - equips.,gold0-orig,pos,unl,unl,unl,unl,We see a fitness center sign.,We then\nanetv_Imui46JTe7s,16086,The man performs sits ups while on the ball and talking. The man,sits up and talks to the camera.,throws the woman up in the air and walks away.,lifts the weight and raises it in the air.,continues to move his fencing fencer while the men watch or demonstrate.,sits and cuts a bit of the tools he had dropped.,gold0-orig,pos,unl,unl,unl,unl,The man performs sits ups while on the ball and talking.,The man\nanetv__dLbtK8_SHo,2841,The player is shuffling behind the net and turning the racquet upside down in between the shots. Then the players,demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls.,continue competing to pass it around for team mates.,continue playing receiving the red score and show their team mates.,hit in the goalie and return to the players without hitting the ball again.,,gold0-orig,pos,unl,unl,unl,n/a,The player is shuffling behind the net and turning the racquet upside down in between the shots.,Then the players\nanetv__dLbtK8_SHo,2840,There are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner. The player,is shuffling behind the net and turning the racquet upside down in between the shots.,yells about the teammate and is carefully torn away by throwing a ball through the turkish arm.,starts playing the racket with an electric tool raised in his hands.,\"hit the ball with his racket, send down basket blocks for the winning team.\",for the bag is done winning and doing replay thoroughly as it glides into the goal.,gold0-orig,pos,unl,unl,unl,unl,There are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner.,The player\nanetv__dLbtK8_SHo,2842,Then the players demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls. The player,bounces the ball back with the tip of the racquet handle.,walked with the coach and the coach took a dive in the empty bowls.,continues move on the cards to show how to properly hit the ball in the locker room.,spins around and ends by chasing the ball around the net in the end.,,gold1-orig,pos,unl,unl,unl,n/a,Then the players demonstrate another drill as they shuffle on the tennis court in between shots and returning the balls.,The player\nanetv__dLbtK8_SHo,2839,The video is about a tennis tutorial and drill by Edgar Giffenig. There,are two lady tennis players on a clay court who are demonstrating how to throw the ball up high to the partner.,are about what they previously do.,explains it showing random techniques on how to properly serve the balls during perfect stunts.,is tea dishes in the main room of the pool.,is a click ka - on.,gold0-orig,pos,unl,unl,unl,unl,The video is about a tennis tutorial and drill by Edgar Giffenig.,There\nanetv_8j75QYV-iCg,268,A young girl in a yellow outfit poses with a baton. She,\"begins to dance, twirling the baton as she goes.\",\"pushes several hoop onto her shoulders, twirl, does cartwheels around it as if she were doing hesitates.\",takes her dancing and singing.,grabs her baton.,,gold0-orig,pos,pos,pos,pos,n/a,A young girl in a yellow outfit poses with a baton.,She\nanetv_8j75QYV-iCg,270,\"The girl spins, sits, slides, and twirls as she performs. She\",falls to the ground in a pose and smiles as she finishes.,kicks it in the air.,ends - - a last and colorful print shows explodes upward - - lots more speed.,\"clenches the sash around her teeth, turns her around, and runs off with the arms of a lair.\",begin dancing on the stage before ending the dance.,gold1-orig,pos,unl,unl,unl,pos,\"The girl spins, sits, slides, and twirls as she performs.\",She\nanetv_8j75QYV-iCg,269,\"She begins to dance, twirling the baton as she goes. The girl\",\"spins, sits, slides, and twirls as she performs.\",performs flip - flips off the trampoline.,begins to belly dance in her room.,stops and claps her hands as she finishes and claps.,,gold1-orig,pos,unl,unl,unl,n/a,\"She begins to dance, twirling the baton as she goes.\",The girl\nanetv_J3qC2hqRhPc,16426,Elmo pulls out a toothbrush and begins dancing while Bruno Mars appears brushing his teeth on the mirror. Elmo,is singing along as bruno mars continues to brush his teeth and the multicolored lights on the mirror flicker.,enjoys course and he just laughs at the camera and says to help him.,uses a toothpaste brush on the tap.,\"sure he stays seated, speaks very softly.\",is combing his hair next to cutting her hair.,gold0-orig,pos,unl,unl,unl,unl,Elmo pulls out a toothbrush and begins dancing while Bruno Mars appears brushing his teeth on the mirror.,Elmo\nanetv_J3qC2hqRhPc,16425,Elmo from Sesame Street is presenting how to brush teeth along with singer Bruno Mars. Elmo,pulls out a toothbrush and begins dancing while bruno mars appears brushing his teeth on the mirror.,has a sharp look on the direction of the statement.,the video shows she's grabbing the toes a shoe when she is so done.,recovers a little of the paintbrushes and slowly tugs on it next.,,gold0-orig,pos,unl,unl,unl,n/a,Elmo from Sesame Street is presenting how to brush teeth along with singer Bruno Mars.,Elmo\nanetv_J3qC2hqRhPc,16427,Elmo is singing along as Bruno Mars continues to brush his teeth and the multicolored lights on the mirror flicker. Elmo and Bruno Mars,continue to dance along as they teach little kids the importance of brushing teeth.,demonstrate both martial arts.,sit at a instrument on a portable that makes a drip.,appear to intervals across the screen as the white breathing continues.,up in images of his videos.,gold0-orig,pos,unl,unl,unl,unl,Elmo is singing along as Bruno Mars continues to brush his teeth and the multicolored lights on the mirror flicker.,Elmo and Bruno Mars\nlsmdc3014_CAPTAIN_AMERICA-5712,11941,\"An explosion inside the chamber blows out the glass and sends someone and the engineer flying backward across the room. At headquarters, someone\",approaches a blonde woman reading a newspaper.,talks colonel 50 distance away on an am.,fires bowling off a shelf - ground with no one can touch.,\"and the gang of men try to free themselves, but he loses his grip on someone.\",commands a microphone to show someone sleeping and wiping his unconscious guard.,gold0-orig,pos,unl,unl,unl,unl,An explosion inside the chamber blows out the glass and sends someone and the engineer flying backward across the room.,\"At headquarters, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5712,11939,\"In a lab, someone examines a glowing blue pellet. Shielded behind a blast screen, someone\",uses mechanical claws to touch a wire to the glowing pellet.,sees a form from a cabinet.,spies someone wading the fifth floor.,dodges a cartoon agent.,,gold0-orig,pos,unl,unl,unl,n/a,\"In a lab, someone examines a glowing blue pellet.\",\"Shielded behind a blast screen, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5712,11947,She grabs his tie and pulls him behind a bookcase. She,pulls him closer and kisses him.,climbs out from the bedroom window and into the toilet.,watch a twelve - year - old woman behind her.,takes a sharp peck around his sides.,,gold0-orig,pos,unl,unl,unl,n/a,She grabs his tie and pulls him behind a bookcase.,She\nlsmdc3014_CAPTAIN_AMERICA-5712,11948,She pulls him closer and kisses him. Someone,walks up behind them.,nods then gives him a doleful look.,leans over someone and stares off.,grabs someone and kisses him repeatedly and then walks away.,,gold1-orig,pos,unl,unl,unl,n/a,She pulls him closer and kisses him.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5712,11946,The woman sashays to someone who folds his arms and glances away. She,grabs his tie and pulls him behind a bookcase.,accepts the shower towards her.,grips the revolver at his chest.,fires as he emerges under the suit.,,gold1-orig,pos,unl,unl,unl,n/a,The woman sashays to someone who folds his arms and glances away.,She\nlsmdc3014_CAPTAIN_AMERICA-5712,11940,\"Shielded behind a blast screen, someone uses mechanical claws to touch a wire to the glowing pellet. An explosion inside the chamber\",blows out the glass and sends someone and the engineer flying backward across the room.,becomes very orderly and squeezed out.,spreads the mist with gleaming and snakes.,activates someone with a flame.,explodes as a choke savagely measures someone level.,gold0-orig,pos,unl,unl,unl,unl,\"Shielded behind a blast screen, someone uses mechanical claws to touch a wire to the glowing pellet.\",An explosion inside the chamber\nlsmdc3014_CAPTAIN_AMERICA-5712,11942,\"At headquarters, someone approaches a blonde woman reading a newspaper. Someone\",nods and stands with his hands behind his back.,approaches the front of the station.,still does n't give up.,\"hops onto a bench and approaches someone, who stands behind the closing partition.\",gets to his feet and picks up the frustrated driver.,gold1-reannot,pos,unl,unl,unl,unl,\"At headquarters, someone approaches a blonde woman reading a newspaper.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5712,11943,Someone nods and stands with his hands behind his back. The woman,looks up from her paper and smiles at him.,'s hand picks up the basin as water pours between her legs.,pulls out of the parking lot and a man walks up a ladder outside a daybreak gate.,takes off his jacket.,picks up her drink.,gold1-reannot,pos,unl,unl,pos,pos,Someone nods and stands with his hands behind his back.,The woman\nlsmdc3014_CAPTAIN_AMERICA-5712,11944,\"As someone leans against the table, the woman holds up her newspaper, 400 Prisoners Liberated. The secretary\",flexes the foot of her crossed - leg as she eyes someone.,continues along and disbelieving the offer.,makes her way to the chaise lounge.,opens a tumbler on the table as she offers a tender look.,closes her eyes as she throws the jacket in the next room.,gold0-reannot,pos,unl,unl,unl,pos,\"As someone leans against the table, the woman holds up her newspaper, 400 Prisoners Liberated.\",The secretary\nlsmdc3014_CAPTAIN_AMERICA-5712,11945,The secretary flexes the foot of her crossed - leg as she eyes someone. The woman,sashays to someone who folds his arms and glances away.,listens remorsefully and runs her hands over her beaded sweep hair.,faces someone and raises her arms and points at the mirror.,turns the key to the bathroom.,sets aside the cellphone and takes out a photo album.,gold1-reannot,pos,unl,unl,unl,pos,The secretary flexes the foot of her crossed - leg as she eyes someone.,The woman\nanetv_bh6VHVHMoo8,6279,A man in a blue shirt kneels on the ground and slowly pulls a weight. The camera,pans right to the front of the man.,is repeated again with the little action.,pans around a man on the cardio machine.,moves underneath the back of the bars.,focuses on a section of the ceiling.,gold0-orig,pos,unl,pos,pos,pos,A man in a blue shirt kneels on the ground and slowly pulls a weight.,The camera\nanetv_bh6VHVHMoo8,6280,The camera pans right to the front of the man. We,see a lady in the background working our on her knees.,see the man with the handles on a front.,see the man see the mans throw.,see various sitting up screens.,move through the walls beside.,gold0-orig,pos,unl,unl,unl,unl,The camera pans right to the front of the man.,We\nanetv_bh6VHVHMoo8,6281,We see a lady in the background working our on her knees. The ending title screen,has a website on it.,appears with people on screen.,displays a text intro advertising the job.,appears on a fifth screen.,,gold1-orig,pos,unl,unl,unl,n/a,We see a lady in the background working our on her knees.,The ending title screen\nanetv_bh6VHVHMoo8,3837,The man is kneeling on a board. The man,releases the silver cable.,jumps up next to a trampoline.,lifts the weights to his head.,gently rolls the handlebar and ties it around and secures him with the handcuff handle while stopping.,is standing in a blue chair.,gold0-reannot,pos,unl,unl,unl,unl,The man is kneeling on a board.,The man\nanetv_bh6VHVHMoo8,3836,The man pulls the silver cable toward him. The man,is kneeling on a board.,works for the dictaphone.,clears and backs away from the kayak and hooks it on the tarp.,stands on the roof of the boat.,switches back to the bike.,gold1-reannot,pos,unl,unl,unl,unl,The man pulls the silver cable toward him.,The man\nanetv_bh6VHVHMoo8,6278,There is an opening title screen with words. A man in a blue shirt,kneels on the ground and slowly pulls a weight.,plays a walking stick.,is playing rock paper out.,plays a game on how to properly throw them onto the screen interspersed with the video shown.,is standing around him.,gold1-reannot,pos,unl,unl,unl,pos,There is an opening title screen with words.,A man in a blue shirt\nanetv_wjcCl0jPxO4,19197,An aesthetician is talking about skin care routines and giving tips on how to keep facial skin clean. The model,washes her face and then dabs it dry gently with a towel.,is wearing against the inside of machine gun fire.,veterinarian holds the pan to the first time showing other different other location when he was done.,is using a shaver and tutorial assignment way to draw an image of the kid's hair using the other title and elongated brush.,,gold0-orig,pos,unl,unl,unl,n/a,An aesthetician is talking about skin care routines and giving tips on how to keep facial skin clean.,The model\nanetv_wjcCl0jPxO4,19196,There's a woman in a maroon shirt washing her face in the sink. An aesthetician,is talking about skin care routines and giving tips on how to keep facial skin clean.,is standing on the sidewalk beside her.,gets shot on the tile behind her.,is taking a pack of tissue paper from the sink.,,gold0-orig,pos,unl,unl,pos,n/a,There's a woman in a maroon shirt washing her face in the sink.,An aesthetician\nanetv_9PqYL4zTnxY,10939,\"A woman is in a driveway, doing tricks and stunts as she jumps rope. She\",\"increases speed, then stops as a man approaches her to discuss her technique.\",wraps a towel around her leg and holds her up.,takes a few turns and walks out of the ropes in park.,pauses on the same side of the research board where the track is shown in a close up.,walks past a group of people on the sidewalk and how to jump roping poles.,gold0-orig,pos,unl,unl,unl,pos,\"A woman is in a driveway, doing tricks and stunts as she jumps rope.\",She\nanetv_9PqYL4zTnxY,10940,\"She increases speed, then stops as a man approaches her to discuss her technique. She then\",\"returns to demonstrating how to jump rope, and the various names of the moves.\",seems to go through a routine and continues against what to do about what they do.,\"jumps up and down, and flips over the rapidly.\",sits gracefully on the mat for a while and straightens up.,,gold0-orig,pos,unl,unl,pos,n/a,\"She increases speed, then stops as a man approaches her to discuss her technique.\",She then\nlsmdc3049_MORNING_GLORY-23566,16196,A guy delivers a note to someone. She,glances disapprovingly at someone.,hands another man in.,bows and faces him.,kisses her back and leaves.,looks at someone with glistening eyes.,gold1-orig,pos,unl,pos,pos,pos,A guy delivers a note to someone.,She\nanetv_ybF4RykZxK8,3225,A man is seen riding down on a skateboard while the camera follows his movements. The man,skates around the street through obstacles and down the street.,continues riding back and fourth while a camera captures them from behind.,continues running over and over while number one is shown again and continues riding.,continues to unload the bike with people standing behind him.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen riding down on a skateboard while the camera follows his movements.,The man\nanetv_ybF4RykZxK8,3226,The man skates around the street through obstacles and down the street. More people,continue riding down the street while the camera follows them.,walk underneath as well as the camera panning around the street.,arrive together to them and back again.,are seen running around the area as well as falling in and off the side.,work hitting the cars and shown on sidewalks including burned shingles and there's people running down the street.,gold0-orig,pos,unl,unl,unl,unl,The man skates around the street through obstacles and down the street.,More people\nanetv_AR6_PW1um-I,2006,A man with shades on rolls around on two longboards. White text,is seen at the bottom of the screen.,appear on the screen showing the same man bowling.,appears on the screen and is filming.,appears on the screen as two.,appears on the screen and then begins more.,gold1-orig,pos,unl,unl,unl,unl,A man with shades on rolls around on two longboards.,White text\nanetv_AR6_PW1um-I,2005,A man with a helmet and a longbord walks ahead as he helps the girl in the roller blades get across grass. The girls,skates around in the parking lot as the man helps her move and with balance.,start to get to the bottom of the diving board at the end of the rink.,hold a blue parka and reach out to flatten it with each hand.,approach to acknowledge the younger woman as he steps on the lawn.,,gold0-orig,pos,unl,unl,unl,n/a,A man with a helmet and a longbord walks ahead as he helps the girl in the roller blades get across grass.,The girls\nanetv_AR6_PW1um-I,18206,She joins a man on a skateboard. Together they,perform various stunts on their equipment.,skateboard into several other cars.,ride bikes back on a road board passing the same hoola pattern by their bikes.,photograph the brunette woman as they game.,take each other's fuselage and start jumping off.,gold1-orig,pos,unl,unl,unl,unl,She joins a man on a skateboard.,Together they\nanetv_AR6_PW1um-I,2004,A black screen appears with white letters. A man with a helmet and a longbord,walks ahead as he helps the girl in the roller blades get across grass.,- old man is sitting in a chair doing a timer.,explains how to sharpen the knife.,waits on the outside hill.,,gold0-orig,pos,unl,unl,pos,n/a,A black screen appears with white letters.,A man with a helmet and a longbord\nanetv_AR6_PW1um-I,2003,A man and a woman are at a parking lot as the woman is learning how to roller blade. A black screen,appears with white letters.,appears with a yellow intro of her working on a bicycle.,appears in the background.,appears with a blue backdrop in gold and green and green.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman are at a parking lot as the woman is learning how to roller blade.,A black screen\nanetv_AR6_PW1um-I,18205,A woman is wearing a pair of inline skates. She,joins a man on a skateboard.,slides along a coat rack behind the closed areas.,makes a third call.,turns around and starts walking around the field.,bounces in the water using a shovel.,gold0-orig,pos,unl,unl,unl,unl,A woman is wearing a pair of inline skates.,She\nanetv_AR6_PW1um-I,2007,White text is seen at the bottom of the screen. The man on the longboard and the girl in the inline skates,roll around in the parking lot.,spinning spinning and throwing a ball.,is a tube under his nipple.,walks past trying to stay upright.,,gold1-reannot,pos,unl,unl,pos,n/a,White text is seen at the bottom of the screen.,The man on the longboard and the girl in the inline skates\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5835,\"As the four white horses come to a halt, the footman comes over to open the carriage door and help someone out. Briefly greeting the children, someone\",\"hurries inside, where someone has come to meet her.\",takes out a photo of himself and guides her to a centaur at the front of the church line.,crosses to the bars.,\"sees someone, his face sad - faced, handheld stating about the activity by his client.\",\"gallops out of sight through the cathedral sign, forming a golden light with a mighty wooden light.\",gold0-orig,pos,unl,unl,unl,unl,\"As the four white horses come to a halt, the footman comes over to open the carriage door and help someone out.\",\"Briefly greeting the children, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5834,\"They quickly hurry over to greet it. As the four white horses come to a halt, the footman\",comes over to open the carriage door and help someone out.,reach the floor and look up.,\"steps out of one of the lifeboats but moves forward, looking toward the audience.\",backs up and motions them off.,,gold0-orig,pos,unl,unl,unl,n/a,They quickly hurry over to greet it.,\"As the four white horses come to a halt, the footman\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5832,\"With a look of utter contempt, someone leaves the room. At Longbourn, the people 'four children\",are playing on the lawn when the carriage pulls into the driveway.,are keeping their noses on someone's white house.,sit at a table at their apartment.,\"gaze skywards, down on them, moving quickly.\",\"go out, with one foot inflates.\",gold1-orig,pos,unl,unl,unl,unl,\"With a look of utter contempt, someone leaves the room.\",\"At Longbourn, the people 'four children\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5833,\"At Longbourn, the people 'four children are playing on the lawn when the carriage pulls into the driveway. They quickly\",hurry over to greet it.,shut out the lights.,\"do the same, they are in the dorm, looking nervously at each other.\",get back onto the dance floor.,\"stop, as they are led back along the road to the front garden.\",gold0-orig,pos,unl,unl,unl,pos,\"At Longbourn, the people 'four children are playing on the lawn when the carriage pulls into the driveway.\",They quickly\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89758,5831,\"She climbs into the carriage. At someone, someone\",\"is sitting in the drawing room, watching someone practice her piano playing.\",warms up to a boulder at the top of the rock and gazes about wearily.,\"bumps the second guard, student smirks.\",storms into a room passing by one of the windows.,\"is seated down the hallway, watching.\",gold1-reannot,pos,unl,pos,pos,pos,She climbs into the carriage.,\"At someone, someone\"\nlsmdc3077_THE_VOW-35659,13759,\"Someone eyes someone who mouths, It's okay. Already seated, someone\",\"stands awkwardly, then sits again.\",zips up his jacket.,\"sits on the edge of the bed, covering his face with his hand.\",points at the boy.,moves his head to his desk and studies one of his friends.,gold0-orig,pos,pos,pos,pos,pos,\"Someone eyes someone who mouths, It's okay.\",\"Already seated, someone\"\nanetv_HSEnmPWF5GY,17442,A montage of a priest is giving communion to people. Jesus and Mother Teresa,are shown as a montage continues.,stand and talk to the camera.,explode place atop the crow's nest.,are gathered on the border of the boat.,replace their opponent necks to pull on the ropes.,gold0-reannot,pos,unl,unl,unl,unl,A montage of a priest is giving communion to people.,Jesus and Mother Teresa\nlsmdc3056_PUBLIC_ENEMIES-3114,2387,\"The three newcomers make their way down the platform, suitcases in hand. Now, travelers\",mill about on a vast terminal's marble floors.,\"appear coming through the entrance, followed by a large picture of women.\",\"streams down city streets and thames, montana.\",make their way into the library lobby.,,gold0-orig,pos,unl,unl,unl,n/a,\"The three newcomers make their way down the platform, suitcases in hand.\",\"Now, travelers\"\nlsmdc3056_PUBLIC_ENEMIES-3114,2386,He peers down the platform. The three newcomers,\"make their way down the platform, suitcases in hand.\",in the stroll line are now heavily bound.,pose faces back outside.,lift his wrists and go out into the hallway.,follow him down the hall and into a dark room.,gold0-orig,pos,unl,unl,unl,unl,He peers down the platform.,The three newcomers\nlsmdc3056_PUBLIC_ENEMIES-2774,18715,\"In a farmhouse, gang members change clothes while eating. A woman\",wraps food in newspapers and brings it over to their table.,helps the others out for the matter with takes care.,stands in a kitchen and talks to one of the children.,studies a toy tin with a spoon.,\"scrubs someone, who wears a white silky jacket and blue blazes.\",gold0-orig,pos,unl,unl,unl,unl,\"In a farmhouse, gang members change clothes while eating.\",A woman\nlsmdc3056_PUBLIC_ENEMIES-2774,18717,\"Outside, someone walks alone. Without his overcoat, he\",wears a black vest and a leather gun holster.,strolls down a narrow path at the mountains.,watches the gaps in the stairs.,glances back at someone with a coy smile.,,gold1-orig,unl,unl,unl,unl,n/a,\"Outside, someone walks alone.\",\"Without his overcoat, he\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18702,\"Shot in the back, someone collapses. Standing on the running board he\",sticks to his arm as they drive away.,\"grabs his wrist and drops the chain again, pulling someone's attention out.\",lets himself into a cloud of mini pipes with a firework attached to his face.,takes a clown gun.,,gold0-orig,pos,unl,unl,unl,n/a,\"Shot in the back, someone collapses.\",Standing on the running board he\nlsmdc3056_PUBLIC_ENEMIES-2774,18705,Someone struggles to keep his grip while holding on to the moving car himself. Someone,looks up to his old friend and grins.,comes out after him with it.,\"swings the wheel, rusty and rattle.\",\"flips off the ski, one gets back to the water.\",holds up a plate of cereal as he takes it out.,gold1-orig,pos,unl,unl,unl,unl,Someone struggles to keep his grip while holding on to the moving car himself.,Someone\nlsmdc3056_PUBLIC_ENEMIES-2774,18712,\"Now, someone stands below an overcast sky. Strands of his greasy black hair\",hang over his forehead.,tumble into the rain.,hang and hang back.,are dwarfed by parts of his tall wool vest.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, someone stands below an overcast sky.\",Strands of his greasy black hair\nlsmdc3056_PUBLIC_ENEMIES-2774,18709,\"Someone closes the sedan's door. Gathering himself, he\",\"sniffs, flaring his nostrils.\",digs his journal into a vent bin.,swerves to the young man.,peeks around a corner and into his apartment.,,gold1-orig,pos,unl,unl,unl,n/a,Someone closes the sedan's door.,\"Gathering himself, he\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18719,\"As someone turns and walks away from the farmhouse, the woman continues to gaze after him. A little boy in overalls\",comes up and takes her hand.,holds it up to the pierced man.,\"is sitting with an old fridge, a tread room.\",is sitting at his desk in a white house.,\"stands from the hedge, looking intently at the dog.\",gold0-orig,pos,unl,unl,pos,pos,\"As someone turns and walks away from the farmhouse, the woman continues to gaze after him.\",A little boy in overalls\nlsmdc3056_PUBLIC_ENEMIES-2774,18718,\"They hold eye contact, and she lets go. As someone turns and walks away from the farmhouse, the woman\",continues to gaze after him.,walks beside her to her.,'s jaw drops slack.,is careful not to approach the window.,,gold0-orig,pos,unl,unl,pos,n/a,\"They hold eye contact, and she lets go.\",\"As someone turns and walks away from the farmhouse, the woman\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18724,\"Now, a man in a blue suit hurries through lush green woods with a someone gun. He\",\"trips, then climbs to his feet and runs on.\",\"freezes, throws someone under a horizontal barricade and runs through an obstacle.\",\"turns over, studying her surroundings.\",stares earnestly at someone's head and places his beer on the cradle.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, a man in a blue suit hurries through lush green woods with a someone gun.\",He\nlsmdc3056_PUBLIC_ENEMIES-2774,18725,\"He trips, then climbs to his feet and runs on. A group of armed lawmen\",\"follow behind, charging up a hill.\",confer from the germans.,leads men of chocolates out of the roof.,fall from a red police car.,talk as they follow someone down a flight of stairs.,gold0-orig,pos,unl,unl,pos,pos,\"He trips, then climbs to his feet and runs on.\",A group of armed lawmen\nlsmdc3056_PUBLIC_ENEMIES-2774,18721,\"Together, they wander a few steps without taking their eyes off of him. Now in the car as someone drives, someone\",looks back at someone.,sits in her passenger seat.,observes with his two handed sisters and his winnings.,enters through one of the windows and looks away.,gives his mother small pats.,gold0-orig,pos,unl,unl,unl,pos,\"Together, they wander a few steps without taking their eyes off of him.\",\"Now in the car as someone drives, someone\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18723,\"He faces forward and glances at someone. Now, a man in a blue suit\",hurries through lush green woods with a someone gun.,shows the one who gives her instructions.,rolls out her basement end.,crawls up the ring.,\"arrives on a high school parking spot and watches a small boy in his hands, holding a few pose and follow.\",gold1-orig,unl,unl,unl,unl,unl,He faces forward and glances at someone.,\"Now, a man in a blue suit\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18720,\"A little boy in overalls comes up and takes her hand. Together, they\",wander a few steps without taking their eyes off of him.,go down a road and fall into a tree of snow.,shake balls and hit each other in the stomach.,\"stop, and then they start the dance.\",\"continue hitting each other, then autumn's hands bravely drift toward someone.\",gold1-orig,pos,unl,unl,unl,unl,A little boy in overalls comes up and takes her hand.,\"Together, they\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18727,The lawman's shot misses and someone runs off. Someone,sprints through the trees.,lets someone fly in the air.,\"throws his balls, and someone scores a point.\",watches someone play on tv as he strides past others.,is sitting by a window watching him.,gold0-orig,pos,unl,unl,unl,pos,The lawman's shot misses and someone runs off.,Someone\nlsmdc3056_PUBLIC_ENEMIES-2774,18726,\"A group of armed lawmen follow behind, charging up a hill. Soeone\",runs backwards firing wildly.,steps back and forth.,strike him as the library closes.,hang onto them as they look at each other.,someone puts their hands back.,gold0-orig,pos,unl,unl,unl,pos,\"A group of armed lawmen follow behind, charging up a hill.\",Soeone\nlsmdc3056_PUBLIC_ENEMIES-2774,18713,Strands of his greasy black hair hang over his forehead. His gaze,drifts to a road which cuts through a desolate field toward the flat horizon.,turns to a frown on his face.,hovers over someone as he raises his head and face.,remains fixed on the ground side.,,gold0-reannot,pos,unl,unl,pos,n/a,Strands of his greasy black hair hang over his forehead.,His gaze\nlsmdc3056_PUBLIC_ENEMIES-2774,18714,\"His gaze drifts to a road which cuts through a desolate field toward the flat horizon. In a farmhouse, gang members\",change clothes while eating.,ride down a slide down the slope.,stand outside on the stairs or chat lockers.,pass someone and drain some cash and cash on his shoulders.,run down a hill.,gold0-reannot,pos,unl,unl,unl,unl,His gaze drifts to a road which cuts through a desolate field toward the flat horizon.,\"In a farmhouse, gang members\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18716,Someone buttons up next to another escapee. Someone,puts out a cigarette.,reaches forward and grabs someone.,appears shaking his head.,waves her hand to the window.,,gold0-reannot,pos,pos,pos,pos,n/a,Someone buttons up next to another escapee.,Someone\nlsmdc3056_PUBLIC_ENEMIES-2774,18703,\"Standing on the running board he sticks to his arm as they drive away. His body dragging across the dirt, someone\",\"hangs onto someone's arm, grimacing in pain.\",pulls someone to the ground and supports him clean.,\"turns back to the horse, who gazes back at her.\",screeches to the halt on his tracks.,gets out of the car.,gold1-reannot,pos,unl,unl,pos,pos,Standing on the running board he sticks to his arm as they drive away.,\"His body dragging across the dirt, someone\"\nlsmdc3056_PUBLIC_ENEMIES-2774,18722,\"Now in the car as someone drives, someone looks back at someone. He\",faces forward and glances at someone.,\"goes over to someone, who sits between the untouched stacks of scrap paper.\",\"steps down, grabs his jacket and rolls on his side and pushing it a few feet.\",makes his way towards his silver sedan.,places his kitty bag on a table and puts a key inside.,gold0-reannot,pos,unl,unl,unl,unl,\"Now in the car as someone drives, someone looks back at someone.\",He\nlsmdc3090_YOUNG_ADULT-44150,13401,She types in her hotel. She,rips hair removal tape from someone 'upper lip.,\"'flashes, someone returns.\",places it toward the attendant's display and shifts his serene gaze.,information on how can exhibit formation ends with the gym door.,,gold1-orig,unl,unl,unl,unl,n/a,She types in her hotel.,She\nlsmdc3090_YOUNG_ADULT-44150,13402,\"She rips hair removal tape from someone 'upper lip. Wearing a towel around her head, someone\",lies with her eyes closed.,removes her gloved hands in the room.,particles a piece of metal against the side of someone's head.,holds onto her wrist.,squeezes her thigh and a hand glows against a collapsible.,gold0-orig,pos,unl,unl,unl,unl,She rips hair removal tape from someone 'upper lip.,\"Wearing a towel around her head, someone\"\nlsmdc3090_YOUNG_ADULT-44150,13409,Someone follows someone through a doorway then up several steps. She,glances over her shoulder.,\"takes down the viewer, as if he is holding it to him.\",\"gazes upwards from the railing, scrawny someone.\",\"extends one hand, and a zombie creeps toward him.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone follows someone through a doorway then up several steps.,She\nlsmdc3090_YOUNG_ADULT-44150,13404,\"Later, she strides into a Buy Buy Baby store. She\",passes a rack of items resembling teddy bears then rows of pink dresses.,stops and bounces on as someone watches her.,takes her sunglasses off as she approaches the car.,inhales frantically and screws up her sleeve.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, she strides into a Buy Buy Baby store.\",She\nlsmdc3090_YOUNG_ADULT-44150,13403,\"Wearing a towel around her head, someone lies with her eyes closed. Back in her room, someone\",pins up her hair.,applies her fingernails on top of someone's face.,wears a quizzical gaze.,uses newspapers in the laundry to carry them inside.,bangs her head on his shoulder.,gold0-orig,pos,unl,unl,unl,pos,\"Wearing a towel around her head, someone lies with her eyes closed.\",\"Back in her room, someone\"\nlsmdc3090_YOUNG_ADULT-44150,13407,Someone climbs the front steps. She,takes off her sunglasses then slowly moves through the living room.,sets down his wallet.,grabs the hood of the trailer from the car.,passes with someone's friend.,hands it after her.,gold0-orig,pos,unl,unl,unl,unl,Someone climbs the front steps.,She\nlsmdc3090_YOUNG_ADULT-44150,13406,\"Later, she walks toward someone's house where guests stand in the driveway or walk into the backyard. Someone\",climbs the front steps.,is playing food with his mother.,turns calmly and looks up on the porch in his apartment.,enters the burlesque circuit lounge and plays a cigarette.,looks at the sky.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, she walks toward someone's house where guests stand in the driveway or walk into the backyard.\",Someone\nanetv_QHd9bJOuvIU,7035,He is standing in front of a house talking. Men,are putting new shingles onto a roof.,is actually playing a sport.,starts talking about bowling times in an open field in a park.,is outside on a swing.,are going down the slope with them cleaning gear and washing the snow.,gold0-orig,pos,unl,unl,unl,unl,He is standing in front of a house talking.,Men\nlsmdc1056_Rambo-96803,14007,\"He stops grinding, drops the blade and runs a hand through his hair. A rusty metal fan on a rod\",lies on a bench nearby.,tries to catch the snitch.,pulls out of his wrist restraint.,shoots out and closes the vault door flat.,,gold0-orig,pos,unl,unl,pos,n/a,\"He stops grinding, drops the blade and runs a hand through his hair.\",A rusty metal fan on a rod\nlsmdc1056_Rambo-96803,14017,He walks down a wooden walkway to the boat. Someone,is sitting under the boat's canopy.,is carrying a grape - colored turkey.,opens up a set of wooden poles in front of the camels.,pulls an infant down the rear of a raft.,looks into the water.,gold0-orig,pos,unl,unl,unl,unl,He walks down a wooden walkway to the boat.,Someone\nlsmdc1056_Rambo-96803,14012,He deftly lifts the assembly off the bench and puts it down. He,\"leaves the workshop and walks out into the night air, where it's raining heavily.\",tosses it and wheels.,removes it made from the rack.,turns it thick and crooked.,,gold0-orig,pos,unl,unl,pos,n/a,He deftly lifts the assembly off the bench and puts it down.,He\nlsmdc1056_Rambo-96803,14009,He removes a nut from the rod and discards the fan. He,\"replaces it with his creation, a new fan.\",rolls to a different corner and approaches an adjacent sidewalk.,leaps to the side but does it for someone.,lines coated the cavern until the alien hammers a small circle with a stone.,\"say, and the man's blue logo will release the shot and the credits of the video are shown.\",gold0-orig,pos,unl,unl,unl,unl,He removes a nut from the rod and discards the fan.,He\nlsmdc1056_Rambo-96803,14014,His boat is moored below at the water's edge. He,looks down at it.,lies out on the train on the water deck behind him.,tilts his head and gazes at the tritium.,looks markings on the river.,\"presses on the hem of her skirt as she stands up, smiles helplessly.\",gold0-orig,pos,unl,unl,pos,pos,His boat is moored below at the water's edge.,He\nlsmdc1056_Rambo-96803,14013,\"He leaves the workshop and walks out into the night air, where it's raining heavily. His boat\",is moored below at the water's edge.,\"is eating busy, having a lunch.\",\"is through the floor, clouds of steam.\",pulls out from her side and climbs up.,\"eyes the podium, other man, a small stocky man with a deafening wink and steps to the front.\",gold1-orig,pos,unl,unl,unl,unl,\"He leaves the workshop and walks out into the night air, where it's raining heavily.\",His boat\nlsmdc1056_Rambo-96803,14008,A rusty metal fan on a rod lies on a bench nearby. He,removes a nut from the rod and discards the fan.,opens his palm to reveal the letters just below someone's chest.,eyes a cutting board just as a logo icon goes out.,\"hurries up an aisle, and hesitates.\",\"grasps it with his hands, reveals the core of its hand human - like tiny body.\",gold0-orig,pos,unl,unl,unl,unl,A rusty metal fan on a rod lies on a bench nearby.,He\nlsmdc1056_Rambo-96803,14011,He picks up a spanner and tightens the nut. He,deftly lifts the assembly off the bench and puts it down.,sets it back on his shoulders.,slices the bread removed and slices.,slowly takes a breath and moves his head to his mouth.,is working on the house next to the bushes.,gold0-orig,pos,unl,unl,unl,pos,He picks up a spanner and tightens the nut.,He\nlsmdc1056_Rambo-96803,14005,\"In someone's fort, sparks fly as he grinds round blades on a spinning wheel. Veins\",stand out on his muscular arms.,appear on his hood.,lift two men in the air and bounce in the arms.,fly in his hair harder.,cubicles use a car to them through a hole in the darkness.,gold0-orig,pos,unl,unl,unl,unl,\"In someone's fort, sparks fly as he grinds round blades on a spinning wheel.\",Veins\nlsmdc1056_Rambo-96803,14006,Veins stand out on his muscular arms. He,\"stops grinding, drops the blade and runs a hand through his hair.\",whips the doctor's belt with his open foot.,puts a red stain down onto their curved skin.,\"downs the poison stream, then rocks through his body to the strap of his injured foot.\",eases a new position into a smaller space.,gold0-reannot,pos,unl,unl,unl,unl,Veins stand out on his muscular arms.,He\nlsmdc1056_Rambo-96803,14010,\"He replaces it with his creation, a new fan. He\",adds a nut to the thread at the end of the rod and reaches onto a bench.,takes the keys of the envelope from her.,hands the envelope to the officer and takes his father's autograph.,grabs the mountain manager.,touches his lips in a frown and shakes her head.,gold0-reannot,pos,unl,unl,unl,unl,\"He replaces it with his creation, a new fan.\",He\nanetv_i-8vfNV-klk,11568,A man is using a pair of hedge trimmers on trees. He,is talking to the camera as he goes.,begins using the clothes down of the hedge.,is moving up and down on a covered lawn.,about just seconds to dig that vine from make wood.,plays with the woman using the shears.,gold0-orig,pos,unl,unl,unl,unl,A man is using a pair of hedge trimmers on trees.,He\nanetv_i-8vfNV-klk,11569,He is talking to the camera as he goes. He,trims the trees with the shears.,continues playing while going off to the camera.,are standing in the background.,\"cups his face into his hand, then leans forward and kisses.\",is holding the shovel outside.,gold0-orig,pos,unl,unl,unl,pos,He is talking to the camera as he goes.,He\nanetv_H0gSWEElh6A,1458,He is hammering nails into a wooden bar. He,uses the tool to properly align the nails before hammering it in.,is squeezing the dirt back into the trailer.,puts a fire in the fire flaming wood.,lays two more goblin books on how to have.,shows how to properly clean the floor to clean the tile.,gold1-orig,pos,unl,unl,unl,pos,He is hammering nails into a wooden bar.,He\nanetv_H0gSWEElh6A,1457,There's a man demonstrating how to use a hand setting tool. He,is hammering nails into a wooden bar.,demonstrates the trimmer for planting an extremely detailed scale.,goes backwards throwing a knife.,pours a layer of wax over the hedge.,starts using it to repair.,gold0-orig,pos,unl,unl,unl,pos,There's a man demonstrating how to use a hand setting tool.,He\nanetv_tTEAlDsmZrA,16710,They begin cutting a hedge with a saw. A man,is standing on a ladder cutting the top of a tree.,is shown climbing up a tree in front of a tree.,is scrubbing a snow bike downhill.,uses a brush to brush the grass.,carves one with a strip comb.,gold1-orig,pos,unl,unl,unl,unl,They begin cutting a hedge with a saw.,A man\nanetv_tTEAlDsmZrA,3613,More men are seen cutting hedges on the lawn as well as the trees up high. Several men work together on the home and the camera,pans around the yard in the end.,pans around various fooseball tables and well.,pans back in the scene continuing to show you touching your shoes.,shows panning back to him doing several shots of the fence.,pans up to one man walking around soil all their shoulders.,gold1-orig,pos,unl,unl,unl,unl,More men are seen cutting hedges on the lawn as well as the trees up high.,Several men work together on the home and the camera\nanetv_tTEAlDsmZrA,3612,A man is seen cutting trees in a backyard while the camera pans around the area. More men,are seen cutting hedges on the lawn as well as the trees up high.,are seen from behind the hedge in the woods while still speaking to the camera.,are seen speaking to the camera and speaking to one another.,follows the man out of frame following fire.,are seen walking on the track while a woman follows close behind.,gold0-orig,pos,unl,unl,unl,unl,A man is seen cutting trees in a backyard while the camera pans around the area.,More men\nanetv_tTEAlDsmZrA,16709,People are standing in a back yard. They,begin cutting a hedge with a saw.,carve a pumpkin with a green paint.,are performing flips and jumps.,are being pulled back and fourth on the grass.,are sitting around working back and pushups.,gold1-reannot,pos,unl,unl,unl,unl,People are standing in a back yard.,They\nlsmdc0041_The_Sixth_Sense-67604,1072,His eyes drift down to someone's arms. Someone's arms,are covered in tiny cuts and bruises.,\"spread out around his neck, gazing at her young laotong.\",\"relax slightly as he turns around, crumbles.\",propped up on her shoulders and seductively uncoils around her head.,loosens in deep hesitate and opens it.,gold0-orig,pos,unl,unl,unl,unl,His eyes drift down to someone's arms.,Someone's arms\nanetv_sjyZWmvTGA4,19221,Several men are blowing leaves in front of a home. One man,is going all throughout the yard to blow the leaves.,is using the hose not to get chopped and blows into a room.,uses the blower to catch them.,pushes the mower out of the window and walk out onto the board.,throws over the table.,gold0-orig,pos,unl,unl,unl,unl,Several men are blowing leaves in front of a home.,One man\nanetv_sjyZWmvTGA4,19223,He clears out in front of the home. He also,clears out by the shed.,suggests a tomato that sits on the table in front of him.,solves a few times.,reels around a heap.,returns to demonstrating how to tennis in a squash game.,gold0-orig,pos,unl,unl,unl,unl,He clears out in front of the home.,He also\nanetv_sjyZWmvTGA4,19224,He also clears out by the shed. Another man,is shown wandering through the yard.,walks past him to his horse.,shows how to use the object.,pays out to shoot the recruits are fading quickly.,comes to help the kid from it.,gold0-orig,pos,unl,unl,unl,unl,He also clears out by the shed.,Another man\nanetv_sjyZWmvTGA4,19222,One man is going all throughout the yard to blow the leaves. He,clears out in front of the home.,is thrown up pictures other girls and older men are assisting him.,goes to the yard to take the leashes off.,\"throws a frisbee over the person, and then catches the ball.\",see a boy being put into the tree.,gold1-reannot,pos,unl,unl,unl,pos,One man is going all throughout the yard to blow the leaves.,He\nanetv_B69Fkd_L9gA,4540,He is getting ready to get into his hot tub on his deck. He,walks bare foot through the snow to get into his hot tub.,\"leans against the railing, gazing downward, and faces his father.\",stops in the door to find a girl waiting for him upstairs.,adds soap to the faucet and smears it on his face.,,gold0-orig,pos,unl,unl,unl,n/a,He is getting ready to get into his hot tub on his deck.,He\nanetv_B69Fkd_L9gA,4542,He begins to shovel the snow off the deck to make it easier for him to walk. He,clears the snow from the deck to create a pathway to the hot tub.,stops and began removing the helmet.,moves down and shows that last tube where the slide is parked.,stretches it out to the ground.,climbs down the set towards the end and continues with this other instruction.,gold0-orig,pos,unl,unl,pos,pos,He begins to shovel the snow off the deck to make it easier for him to walk.,He\nanetv_B69Fkd_L9gA,4541,He walks bare foot through the snow to get into his hot tub. He,begins to shovel the snow off the deck to make it easier for him to walk.,\"leans back in the window, then stares at himself in the mirror.\",\"walks through a forested area where he opened the refrigerator, and the sink pulling back to the second floor.\",starts to take the package to someone's as he reaches for the washing toothbrush.,,gold0-orig,pos,unl,unl,unl,n/a,He walks bare foot through the snow to get into his hot tub.,He\nanetv_B69Fkd_L9gA,4539,There's man standing on his deck that is covered with snow. He,is getting ready to get into his hot tub on his deck.,goes off a beach street and jumps into waves.,is using radio sticks despairingly to be more indoors.,is riding a ladle's water and sitting and talking to the camera.,\"talks to the camera, then on his snowboard and begins teaching the camel how that works.\",gold0-reannot,pos,unl,unl,unl,unl,There's man standing on his deck that is covered with snow.,He\nanetv_rDlPcW_2nG0,12657,\"Two women standing in the kitchen, one girl is wearing a black top and the other one is wearing a beige top. The woman in beige\",\"showed a sandwich on the kitchen counter, then started peeing the green cucumber using a peeler, then start slicing the cucumber.\",shorts escorts the girls team on the other side of the room.,stops drumming the ball.,is looking down the woman's middle.,\"is dipping at the hose, then the woman started to talk to the camera.\",gold1-reannot,pos,unl,unl,unl,unl,\"Two women standing in the kitchen, one girl is wearing a black top and the other one is wearing a beige top.\",The woman in beige\nanetv_jvQU6RyhY7I,9062,A woman has a bandana tied around her eyes. She,uses a stick to swing at a pinata.,rubs her head briefly then totters her face.,puts the needle through her chest and explains a very sexy way.,\"takes a pistol from the hanger, chugs the bottle and tosses the bottle onto the counter.\",,gold0-orig,pos,unl,unl,unl,n/a,A woman has a bandana tied around her eyes.,She\nanetv_jvQU6RyhY7I,9063,She uses a stick to swing at a pinata. She,hits the pinata numerous times.,goes up the stairs and hits her.,picks up the baton and twirls around in circles.,does a flip then drops it to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,She uses a stick to swing at a pinata.,She\nanetv_czh5nNO_Eow,14819,\"The man stops painting, and begins talking as he points at a few things on the door. A black screen\",appears with white words that include a website if someone wants more information.,appears and he is holding a card.,on black frosted buildings.,with another appears with the paper slowly explaining.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man stops painting, and begins talking as he points at a few things on the door.\",A black screen\nanetv_czh5nNO_Eow,14818,The man then grabs a paint brush and begins painting on paints various parts of the door while continuing to talk. The man,\"stops painting, and begins talking as he points at a few things on the door.\",continues turning around and showing off the instrument.,then shows several more points on the lawn while her stifles to the camera while her fingers are still still around them.,continues cutting the ends of the wall and walking around while looking a little more lines.,use the tool to paint the piano and the wall ends with his fingers pushing paint all over the wall.,gold0-orig,pos,unl,unl,unl,unl,The man then grabs a paint brush and begins painting on paints various parts of the door while continuing to talk.,The man\nanetv_czh5nNO_Eow,14817,\"A man then appears in front of a red door that is leaning up against a wall that has plastic on it, and he's talking and touching the door. The man then\",grabs a paint brush and begins painting on paints various parts of the door while continuing to talk.,stands in the shower with the dog and pours it in the dried particles around to the window.,gets a tattoo from a marble machine and begins with only one stylized out of the window and showing.,puts a black strap on his head to rub it on his face then make sure that tie operates your tires and adjusts the settings,stands in the end and starts to climb down the dirt again and begins to put the rock on.,gold0-reannot,pos,unl,unl,unl,unl,\"A man then appears in front of a red door that is leaning up against a wall that has plastic on it, and he's talking and touching the door.\",The man then\nanetv_3PC5_h68qkc,4182,\"We see the location name and the resort shots of the restaurants, bathrooms and more. We\",see people dance and play games outdoors and in a room in groups with balloons and dancing.,cleans cars and the kids keeping grab umbrellas.,are several switches and backing scenes.,suddenly is attire with names and ehow.,are all off the screen.,gold1-orig,pos,unl,unl,unl,unl,\"We see the location name and the resort shots of the restaurants, bathrooms and more.\",We\nanetv_3PC5_h68qkc,4180,We see the opening title screen. People,are putting on their supplies and riding in rafts down a river.,are shining a pumpkin with it.,see sumo sumo uniforms.,is playing guitar while smoking a pipe.,,gold1-orig,pos,unl,unl,unl,n/a,We see the opening title screen.,People\nanetv_3PC5_h68qkc,4181,People are putting on their supplies and riding in rafts down a river. We,\"see the location name and the resort shots of the restaurants, bathrooms and more.\",slide down a hill leading by a large group of people on boats.,rewind all the fish shells.,are shown in games petting a bike.,are running out and sled the.,gold1-reannot,pos,unl,unl,unl,unl,People are putting on their supplies and riding in rafts down a river.,We\nlsmdc0026_The_Big_Fish-62008,17357,\"Someone laughs a little, which becomes a cough. Taking the half - empty Ensure, someone\",gets up to go.,comes inside revealing someone.,rushes to a wall block.,enters the dining room.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone laughs a little, which becomes a cough.\",\"Taking the half - empty Ensure, someone\"\nlsmdc0026_The_Big_Fish-62008,17356,Someone won't commit to someone's assessment. Someone,\"laughs a little, which becomes a cough.\",\"takes her hand out, and puts them together.\",\"starts paddling slowly, then returning to the crowd.\",climbs down from the truck.,leaves the club and faces the boys.,gold0-orig,pos,unl,pos,pos,pos,Someone won't commit to someone's assessment.,Someone\nlsmdc0026_The_Big_Fish-62008,17360,\"He smiles at his joke. Shutting the door behind himself, someone\",drinks the rest of the ensure himself.,irritably takes another of his hands.,looks up and picks up letters.,runs into the dining room.,,gold0-orig,pos,unl,unl,pos,n/a,He smiles at his joke.,\"Shutting the door behind himself, someone\"\nlsmdc0026_The_Big_Fish-62008,17359,He is at the door when. He,smiles at his joke.,flips his weapon down a passageway and tries to fish out.,takes out a jutting brush.,steps past cell phones and tries the lock.,pushes past and falls down into it.,gold1-orig,pos,unl,unl,unl,unl,He is at the door when.,He\nanetv_xmW27Mi-jbg,298,A boy is standing in front of a picture. We,see a fire flaming from rocks.,is playing in a newspaper.,are on a chalk screen on a dark grounds.,are giving a lot of ingredients after giving his instructions.,are sitting behind him.,gold1-orig,pos,unl,unl,unl,unl,A boy is standing in front of a picture.,We\nanetv_xmW27Mi-jbg,300,\"Several steps are then shown for building a fire, including the pile of wood and paper. The fire is lit, and two boys\",roast marshmallows over it.,are taking out each other after the man lay them on the ground.,play a hole together.,get ready to talk to each other on the return table.,,gold0-orig,pos,unl,unl,unl,n/a,\"Several steps are then shown for building a fire, including the pile of wood and paper.\",\"The fire is lit, and two boys\"\nanetv_xmW27Mi-jbg,10393,They light the sticks with a lighter. A fire,starts in the fire pit they made.,is surrounding the flame.,glows in the intense rippling water.,is attached to the fire.,erupts in the orb.,gold0-orig,pos,unl,unl,unl,unl,They light the sticks with a lighter.,A fire\nanetv_xmW27Mi-jbg,299,We see a fire flaming from rocks. Several steps,\"are then shown for building a fire, including the pile of wood and paper.\",are hammered into wood.,are close to someone and the man is sweeping the floor.,are shown near the fire.,,gold0-orig,pos,unl,unl,pos,n/a,We see a fire flaming from rocks.,Several steps\nanetv_xmW27Mi-jbg,10392,A person puts sticks into a pile. They,light the sticks with a lighter.,pause the game before the match.,put on sticks in the pile.,carry them all over the roof.,,gold0-orig,pos,unl,unl,pos,n/a,A person puts sticks into a pile.,They\nlsmdc3084_TOOTH_FAIRY-39995,9521,\"Later, someone walks someone out. They\",halt near the front desk.,buy items as they drive through a shapeless white house.,run to technique on different moves.,stop outside the most cheerful troops.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Later, someone walks someone out.\",They\nanetv_lkC_md7KKq0,7927,A woman is standing next to a man in the kitchen as she sharpens a knife with a mug. The man,hands her another knife.,tests colored liquid from trying to sharpen an eyeball.,begins wrapping a clipper two more cutting with the knife.,pours into a large buffet and makes an omelette.,trims the potato on the board before drops it.,gold0-orig,pos,unl,unl,unl,pos,A woman is standing next to a man in the kitchen as she sharpens a knife with a mug.,The man\nanetv_lkC_md7KKq0,7916,Text appears across the white screen. Two people,are shown in a kitchen.,play volleyball in a court watching the game.,are posing following the crowd quickly.,are shown on the dance floor.,,gold0-orig,pos,unl,pos,pos,n/a,Text appears across the white screen.,Two people\nanetv_lkC_md7KKq0,7918,They are both holding knives. They,sharpen the knives on the bottom of a mug.,does something as if she is a live technician.,mount up and high on the crystals.,bump each other.,,gold1-orig,pos,unl,unl,pos,n/a,They are both holding knives.,They\nanetv_lkC_md7KKq0,7928,The man hands her another knife. The woman,sharpens the knife with the mug.,shows alfredo tips on the console panel.,removes the needle and removes the shoes.,extends to the orange box and lunges easily.,talks to her dressing table and puts it in the wrap.,gold1-reannot,pos,unl,unl,unl,unl,The man hands her another knife.,The woman\nanetv_6it_yeIb_L0,8905,\"A spinning ad appears, before changing to two men standing in a skateboarding building in Bali. Several people\",are shown skating down a city street before they are doing skateboarding tricks indoors.,are shown sitting on a beach drinking and playing a game of ping pong.,go down the steep hill and then start performing several tricks of their bike while on their course on bikes.,are standing in car a parking harness and is playing the wrestling item.,are shown crashing up and falling in the road situated up both up and then before being repeated.,gold0-orig,pos,unl,unl,unl,pos,\"A spinning ad appears, before changing to two men standing in a skateboarding building in Bali.\",Several people\nanetv_6it_yeIb_L0,8906,Several people are shown skating down a city street before they are doing skateboarding tricks indoors. We,see several shots of a man dressed as the incredible hulk between skaters.,th road and passing in the street.,\"are at angles going over a video, passing it to distance.\",drive into the road of a highway.,,gold0-orig,pos,unl,unl,unl,n/a,Several people are shown skating down a city street before they are doing skateboarding tricks indoors.,We\nanetv_6it_yeIb_L0,6733,Several shots of scenery are shown as well as people smiling to the camera. More clips,are shown of people riding skateboards around areas and people waving to the camera.,are shown of people riding along the beach while riding down the river.,are shown of various individuals attempting a bike play soccer with others watching on top.,are shown of people riding along as well as ending with more clips of people going happy.,,gold0-orig,pos,unl,unl,pos,n/a,Several shots of scenery are shown as well as people smiling to the camera.,More clips\nanetv_6it_yeIb_L0,6734,More clips are shown of people riding skateboards around areas and people waving to the camera. Several clips,are shown of people performing tricks on boards and holding up boards to the camera.,are shown of kids in front of people riding motorcycles.,are shown of people riding around on their bikes while others watch them turn.,are shown of people riding with skateboard rope as well as jumping off the skateboard and ends with another man playing at a end.,are shown of people performing wheelie equipment holding paintball.,gold0-orig,pos,unl,unl,unl,unl,More clips are shown of people riding skateboards around areas and people waving to the camera.,Several clips\nanetv_7o7hL0VccJQ,7103,\"A man on the street corner outside a venue, standing on stilts plays a bagpipe as people go by. Someone in a blue jacket\",comes by and leaves a tip in a bucket.,is walking down the sidewalk in a ballet venue.,is throwing a spoon toward the pier.,is holding the microphone while the man in a white shirt is standing and playing the drums.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man on the street corner outside a venue, standing on stilts plays a bagpipe as people go by.\",Someone in a blue jacket\nanetv_7o7hL0VccJQ,7104,A person in a hat leaves a tip. The person,filming zooms in on a sign.,moves a liquid and herbs to the person.,adds a rolled up dough.,slips a coating on the hedge.,steps away from the back behind where they are holding a target.,gold0-orig,pos,unl,unl,unl,unl,A person in a hat leaves a tip.,The person\nanetv_7o7hL0VccJQ,11708,A man on stilts is playing the bag pipes on a street. A bus,passes on the street behind the man.,hops down the people behind him and they enter the side of the street.,jumps through the open garage door.,spits up on both of them.,backs up to a very long drive.,gold0-reannot,pos,unl,unl,unl,pos,A man on stilts is playing the bag pipes on a street.,A bus\nanetv_xIG7FQWBWZU,16011,We see inside an ice rink with supplies for curling. A lady throws the stone and other ladies,sweep the ground in front of it.,bend over and shake the score.,hit the serving darts.,eat around in a circle.,,gold0-orig,pos,unl,unl,pos,n/a,We see inside an ice rink with supplies for curling.,A lady throws the stone and other ladies\nanetv_xIG7FQWBWZU,14912,An ice rink and sports gear is shown. huge pucks,are pushed across the the rink.,slide across the park track.,lay around the field.,slide at the end of the gym.,,gold0-orig,pos,unl,unl,pos,n/a,An ice rink and sports gear is shown.,huge pucks\nanetv_xIG7FQWBWZU,16012,A lady throws the stone and other ladies sweep the ground in front of it. A lady,jumps up and down with her hands in the air.,\"takes the frisbee off and hold it up, and then its chain.\",puts the bow on top.,aims at the screen and nothing appears in the screen.,talks to the man again.,gold0-orig,pos,unl,unl,unl,unl,A lady throws the stone and other ladies sweep the ground in front of it.,A lady\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11361,\"Then the two carriages lurch away, the crowd of well wishers waving them off. The ground\",is covered with a light dusting of snow.,bunch and danced on the ground as they burst into the bottom.,shelves are turned looking dusty.,is a mouse stamped in a explosion with floating tractor blowing dust mushroom.,squeezes themselves very dark as scattered.,gold0-orig,pos,unl,unl,unl,unl,\"Then the two carriages lurch away, the crowd of well wishers waving them off.\",The ground\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11357,\"Outside the church, two young girls hold up an arch of green foliage and berries for people to walk under. They\",\"step up into the waiting carriage, well wishers surrounding them on every side.\",see an image emerge.,tip - on water lands parking across a hospital room.,banks twisted curves at its length.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside the church, two young girls hold up an arch of green foliage and berries for people to walk under.\",They\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11358,\"They step up into the waiting carriage, well wishers surrounding them on every side. Behind them, people also\",pass beneath the arch.,take the pictures and plates.,\"stand up, angry by the goon, assisting horses.\",sit back in sleep.,\"look towards the window, site area.\",gold0-orig,pos,unl,pos,pos,pos,\"They step up into the waiting carriage, well wishers surrounding them on every side.\",\"Behind them, people also\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11360,\"Someone's face is a picture of joy, while even someone's usual stern expression has softened into a beaming smile. They two\",step up into the carriage that awaits them.,\"backs away slowly, walking on their horses direction.\",begin to enjoy each other's strokes.,are all engaged in a game of jousting as they go in.,start to dance together right back and end together.,gold1-orig,pos,unl,unl,unl,pos,\"Someone's face is a picture of joy, while even someone's usual stern expression has softened into a beaming smile.\",They two\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11359,\"Behind them, people also pass beneath the arch. Someone's face\",\"is a picture of joy, while even someone's usual stern expression has softened into a beaming smile.\",is set up as a fifth pig image.,is shaped by frost.,drops as he sprints through the rolling grey - stone structure which rains down.,\"is pinched, moving his hand upward rapidly.\",gold0-orig,pos,unl,unl,unl,unl,\"Behind them, people also pass beneath the arch.\",Someone's face\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89976,11362,\"The ground is covered with a light dusting of snow. People gaze tenderly into each other's eyes, and slowly he\",leans forward and kisses her gently on the lips.,glares at the ailing woman.,reaches for her hips.,reaches to wraps his arms around someone's neck.,,gold1-orig,pos,unl,unl,pos,n/a,The ground is covered with a light dusting of snow.,\"People gaze tenderly into each other's eyes, and slowly he\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8509,Two of the three angles show the someone entering the cottage through a wooden side door. Someone,puts the monitor down and heads off.,is seen across the table.,descends to the hilton shuttle reception.,\"has a house, small furniture, and paints on a wall.\",\"is on the deserted, dilapidated estate house.\",gold0-orig,pos,unl,unl,pos,pos,Two of the three angles show the someone entering the cottage through a wooden side door.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8508,She holds its screen up close viewing someone at the front door. Two of the three angles,show the someone entering the cottage through a wooden side door.,\"start towards their hotel's doors, one by one.\",\"are n't visible, moving in a hiding spot.\",are closer with their fingers bent over it.,,gold0-orig,pos,unl,unl,unl,n/a,She holds its screen up close viewing someone at the front door.,Two of the three angles\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8507,In the cottage someone studies surveillance feeds on the portable monitor. She,holds its screen up close viewing someone at the front door.,lowers the laptop with a map of auto - wars.,watches the blanket as the kidnapper faces the room.,spots someone with a donut cop 3 hero.,waves its tail as the troll flails her.,gold0-orig,pos,unl,unl,unl,unl,In the cottage someone studies surveillance feeds on the portable monitor.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34367,8510,\"Someone puts the monitor down and heads off. In the basement, someone\",switches on a reel - to - reel tape player.,finds someone's ascending housing reactor.,\"picks up a bag of cash from his bag, gets out.\",carries his bags slung in his hand and makes his way up a staircase to a stairwell.,,gold0-orig,pos,unl,unl,pos,n/a,Someone puts the monitor down and heads off.,\"In the basement, someone\"\nanetv_Y76yy0chbhU,15887,They are playing lacrosse together. They,\"run around, trying to hit the ball.\",stop each other in the race track.,throw their hands in and out of sync.,play a game of tug of war.,roll the ball back and forth and do tricks.,gold0-orig,pos,unl,unl,unl,unl,They are playing lacrosse together.,They\nanetv_Y76yy0chbhU,15886,A couple of teams are on an open field. They,are playing lacrosse together.,throw various darts into the basket.,are dancing in a circle around the center of the room.,are playing a game of field hockey.,are playing a game of polo.,gold1-reannot,pos,unl,unl,pos,pos,A couple of teams are on an open field.,They\nanetv_RTD_JWmhNkA,390,The man on the right is playing a guitar the traditional way. They man on the right,is singing while he is playing.,takes a break and puts the baby down.,is doing the same dancing a little more.,are controlling their drums.,finishes putting the lights line on his accordion.,gold0-orig,pos,unl,unl,unl,unl,The man on the right is playing a guitar the traditional way.,They man on the right\nanetv_RTD_JWmhNkA,388,Two man a in a room sitting. A man on the left,is playing a guitar that lays on a table.,picks up a crocodile.,joins a ping pong match.,walks between the drums with a hand moving on the boy's lap.,turns to the other side of a circle and paints the ground of a blue slip.,gold1-orig,pos,unl,unl,unl,unl,Two man a in a room sitting.,A man on the left\nanetv_RTD_JWmhNkA,2087,One man uses his hands and another uses tools to play. The men,continue playing with one another and end by looking to the camera.,move off quickly and rip each other across the camera frame.,stand again again and talk to the camera and continue talking.,walk into the field and cheer for the crowd.,connect the knife protective green.,gold0-orig,pos,unl,unl,unl,unl,One man uses his hands and another uses tools to play.,The men\nanetv_RTD_JWmhNkA,389,A man on the left is playing a guitar that lays on a table. The man on the right,is playing a guitar the traditional way.,holds his arm from the bongos and begins to walk to the wall.,hits the drum then plays an accordian.,is playing the piano.,spin around the stage playing the saxophone.,gold0-orig,pos,unl,unl,pos,pos,A man on the left is playing a guitar that lays on a table.,The man on the right\nanetv_RTD_JWmhNkA,2086,Two men are seen sitting down playing guitar with one another. One man uses his hands and another,uses tools to play.,pushing the objects around for the band.,is finished playing the violin.,break up a cigarette while laughing.,shows the machine to play.,gold0-orig,pos,unl,unl,unl,pos,Two men are seen sitting down playing guitar with one another.,One man uses his hands and another\nlsmdc1017_Bad_Santa-7779,18342,Someone backs away from between the car and the van as someone starts the van up. Someone,leans back against the grill of the chevy and lights himself a smoke.,\"pulls on a long gray gas mask, with a bitter syringe and a red sock.\",runs up a staircase while someone rounds a corner.,goes after the van and speeds into the cab.,,gold0-orig,pos,unl,pos,pos,n/a,Someone backs away from between the car and the van as someone starts the van up.,Someone\nlsmdc1017_Bad_Santa-7779,18359,Someone comes out of the house and walks over to someone as one of the bags catches alight. Someone,stamps out the blazing bag.,heads towards the gravel driver.,\"breaks, not looking spotted.\",lifts a fallen lamp and runs off.,calls someone.,gold0-orig,pos,unl,unl,unl,pos,Someone comes out of the house and walks over to someone as one of the bags catches alight.,Someone\nlsmdc1017_Bad_Santa-7779,18336,\"Up ahead he sees a light swinging from side to side. As he gets closer, he\",sees it's someone waving a torch.,\"undoes a turn in the ignition, headed to the bed.\",approaches the river and inspects it.,\"bends his side as if, knocking someone's feet.\",slows down and looks over the machine.,gold0-orig,pos,unl,unl,unl,pos,Up ahead he sees a light swinging from side to side.,\"As he gets closer, he\"\nlsmdc1017_Bad_Santa-7779,18332,At night people sit in the van in the deserted mall car park watching the staff entrance. They,see someone come out.,go and leave the house.,load in trolleys back into a dark living room.,\"shovel, led into the front yard of suburban house, passing one of the bare - clad boys, as they pass.\",\"stop her, and slowly turn back toward the door.\",gold0-orig,pos,unl,unl,unl,unl,At night people sit in the van in the deserted mall car park watching the staff entrance.,They\nlsmdc1017_Bad_Santa-7779,18348,\"Back at someone's, someone opens the front door to someone, who's got a bag of groceries. He\",eyes her figure appreciatively.,\"starts to cross the threshold, walks up to him, and gets into the bed.\",picks up a bag of luggage.,places her bag around a corner to collects her purse.,gets released from the car and looks back at the house.,gold0-orig,pos,unl,unl,unl,unl,\"Back at someone's, someone opens the front door to someone, who's got a bag of groceries.\",He\nlsmdc1017_Bad_Santa-7779,18354,\"In the lounge, someone has conked out on the sofa. Someone\",\"carefully removes her slippers and then peels off her sheer, hold - up socks.\",\"climbs up, fully clothed and pushed down the floor.\",hold up both to her - she nods and kisses her parents' lips.,hurries across the room and sees three police cars clearly after them.,stops facing the adjoining desk warmly and moves to someone sullenly.,gold0-orig,pos,unl,unl,unl,pos,\"In the lounge, someone has conked out on the sofa.\",Someone\nlsmdc1017_Bad_Santa-7779,18340,\"Someone lifts the bonnet of his Chevy. Bonnet up, someone\",steps back from the car.,picks up a chunk from her stove.,follows someone through a crowded corridor.,bounds up the stairs as he slams someone's head.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lifts the bonnet of his Chevy.,\"Bonnet up, someone\"\nlsmdc1017_Bad_Santa-7779,18350,\"In the kitchen, people make necklaces out of pieces of popcorn. She\",adds it to a big bowl.,\"drink into their glasses, pours the liquid into the glass.\",whips a hole in a charger.,opens the glass door and peeks inside.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the kitchen, people make necklaces out of pieces of popcorn.\",She\nlsmdc1017_Bad_Santa-7779,18335,Someone drives down a deserted unlit road. Up ahead he,sees a light swinging from side to side.,watches someone building up.,races across a barren jungle blanketed with forest green grass.,sees white snow lying across the hangar.,,gold1-orig,unl,unl,unl,unl,n/a,Someone drives down a deserted unlit road.,Up ahead he\nlsmdc1017_Bad_Santa-7779,18355,\"Someone carefully removes her slippers and then peels off her sheer, hold - up socks. She hands one to someone, and they\",pin the socks up at the fireplace.,begin towards the door of consequence lift drops her short skirt.,rub their noses together.,resume their own box.,start at the elevator.,gold0-orig,pos,unl,unl,unl,unl,\"Someone carefully removes her slippers and then peels off her sheer, hold - up socks.\",\"She hands one to someone, and they\"\nlsmdc1017_Bad_Santa-7779,18331,\"Someone watches him go, a thoughtful expression crossing his face. At night people\",sit in the van in the deserted mall car park watching the staff entrance.,are driving red's raft.,\"fight at the elevator, carrying barriers - - - - - someone snatches the phone.\",walk down the street at night.,stand by a group of police vehicles in the main street.,gold0-orig,pos,unl,unl,pos,pos,\"Someone watches him go, a thoughtful expression crossing his face.\",At night people\nlsmdc1017_Bad_Santa-7779,18353,\"She pushes his hand away, so he reaches up and unzips the back of her skirt. She\",quickly does it back up and gives someone a kiss.,puts one hand on one of the japanese apples.,pulls off her pants and puts it in someone's mouth.,scoops up his dress and spreads it under her eyes.,sinks on a towel - deep putting plastic covers and applies it to someone.,gold1-orig,pos,unl,unl,unl,unl,\"She pushes his hand away, so he reaches up and unzips the back of her skirt.\",She\nlsmdc1017_Bad_Santa-7779,18341,\"Bonnet up, someone steps back from the car. Someone\",backs away from between the car and the van as someone starts the van up.,steps back from his wagon and leaves closer to the bar.,stops beside the subway and sits.,\"leaps up into the fence, signaling for the people to get out of an elevator.\",is now approaching from the corkscrew.,gold1-orig,pos,unl,unl,unl,unl,\"Bonnet up, someone steps back from the car.\",Someone\nlsmdc1017_Bad_Santa-7779,18338,He shakes his head wierdly. Someone,gives him a helpless look.,throws the axe to drag someone around.,shoebox looks up and hoists.,crumples up a rock.,closes his eyes then glances up.,gold0-orig,pos,unl,unl,unl,pos,He shakes his head wierdly.,Someone\nlsmdc1017_Bad_Santa-7779,18333,They see someone come out. People,watches as someone gets in his big chevrolet car and drives off.,\"is on the stairs, beneath the green and flowing water.\",come out from the camp and drive around a corner.,move up into the sky.,,gold0-orig,pos,unl,unl,unl,n/a,They see someone come out.,People\nlsmdc1017_Bad_Santa-7779,18349,\"He eyes her figure appreciatively. In the kitchen, people\",make necklaces out of pieces of popcorn.,are staring at someone in his whites.,go over to section style portico.,listen to watch someone slide marks in the journal.,,gold1-orig,unl,unl,unl,unl,n/a,He eyes her figure appreciatively.,\"In the kitchen, people\"\nlsmdc1017_Bad_Santa-7779,18356,\"She hands one to someone, and they pin the socks up at the fireplace. They\",exchange a smile and leave someone to slumber on.,to the cave and the hatch closes.,\"kneel on to someone, someone pressing her feet together, dazed.\",dough is rolled on a plate.,mean like pupil and tease him.,gold0-orig,pos,unl,unl,unl,unl,\"She hands one to someone, and they pin the socks up at the fireplace.\",They\nlsmdc1017_Bad_Santa-7779,18334,People watches as someone gets in his big Chevrolet car and drives off. Someone,drives down a deserted unlit road.,goes to the base.,gaining his seat off the road and crosses to the road.,moves near the doorway.,,gold0-orig,pos,unl,unl,pos,n/a,People watches as someone gets in his big Chevrolet car and drives off.,Someone\nlsmdc1017_Bad_Santa-7779,18344,Someone reverses and someone slithers down the grill of the Chevy onto the ground. someone,walks up to him.,peers into a barred window.,collapses over the mouthful.,slaps himself out of his feet.,pulls herself up.,gold1-orig,pos,unl,unl,unl,pos,Someone reverses and someone slithers down the grill of the Chevy onto the ground.,someone\nlsmdc1017_Bad_Santa-7779,18330,Someone picks up his report card and heads out of the kitchen. Someone,\"watches him go, a thoughtful expression crossing his face.\",wraps his arms around the activist.,\"watches him go, then leans down to kiss a couple.\",\"moves off the table, gesturing for her to sit down.\",has a thoughtful expression.,gold0-orig,pos,unl,unl,unl,pos,Someone picks up his report card and heads out of the kitchen.,Someone\nlsmdc1017_Bad_Santa-7779,18358,\"Later, someone is at the front of the house lighting the candle bags someone had come around organizing. Someone\",comes out of the house and walks over to someone as one of the bags catches alight.,\"pulls the tin out through the door, extending the package then throws it into the shelf.\",watches as she swim away across the rocky - - a number of shirtless pairs.,steals a t - thoughtfully from a hole and dumps it on a wall.,\"drains his wine and hold it up, obviously hankie himself.\",gold0-reannot,pos,unl,unl,unl,unl,\"Later, someone is at the front of the house lighting the candle bags someone had come around organizing.\",Someone\nlsmdc1017_Bad_Santa-7779,18357,\"They exchange a smile and leave someone to slumber on. Later, someone\",is at the front of the house lighting the candle bags someone had come around organizing.,sleeps with the quilt in his eyes.,lays on a couch and exercise awakes.,\"enters, strolls in an elegant apartment, in an ominous print dress.\",,gold0-reannot,pos,unl,unl,pos,n/a,They exchange a smile and leave someone to slumber on.,\"Later, someone\"\nlsmdc1017_Bad_Santa-7779,18346,Someone sighs and walks to the van. He,\"removes the jump start cables from the van, returns to someone and clips them onto his ears.\",walks out of the car carrying them.,looks at the framed portrait of st.,puts the gangsters on the ground.,stops and picks her up for a bit at the moment.,gold1-reannot,pos,unl,unl,pos,pos,Someone sighs and walks to the van.,He\nlsmdc1017_Bad_Santa-7779,18347,\"He removes the jump start cables from the van, returns to someone and clips them onto his ears. Back at someone's, someone\",\"opens the front door to someone, who's got a bag of groceries.\",goes to lie alone in the bathroom wall with a lanky and pensive device supporting his dark coat.,finds green blue troops waiting beside a pole.,sets down the rifle and fires.,,gold1-reannot,pos,unl,unl,unl,n/a,\"He removes the jump start cables from the van, returns to someone and clips them onto his ears.\",\"Back at someone's, someone\"\nlsmdc1017_Bad_Santa-7779,18339,Someone heads back to his car and someone smiles. Someone,lifts the bonnet of his chevy.,opens it and gets up.,lurches toward his car and dashes off older his new convoy.,climbs off his car and creeps down a driveway.,\"takes a swig, then walks away.\",gold0-reannot,pos,unl,unl,pos,pos,Someone heads back to his car and someone smiles.,Someone\nlsmdc1017_Bad_Santa-7779,18352,\"In the hall, someone stands on a chair to put decorations on the tree. She pushes his hand away, so he\",reaches up and unzips the back of her skirt.,takes out his necklace and gives the woman a hug.,is never getting away.,begins to put his lighter on her.,,gold0-reannot,pos,unl,unl,unl,n/a,\"In the hall, someone stands on a chair to put decorations on the tree.\",\"She pushes his hand away, so he\"\nlsmdc1017_Bad_Santa-7779,18343,\"Someone nods to someone and she drops the van into gear, hits the gas, and crushes someone between the two vechicles. Someone reverses and someone\",slithers down the grill of the chevy onto the ground.,grabs a breather as someone thrusts a hand to her mouth.,leaps out of someone and grabs her.,\"aims the gun at someone as it moves closer, hands on his lead.\",looks at the driver in the passenger seat.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone nods to someone and she drops the van into gear, hits the gas, and crushes someone between the two vechicles.\",Someone reverses and someone\nanetv_mwndGBRpOPg,4906,The person pushes themselves up into the air and flips back down. He,continues riding along the water.,continues smoking a cigarette while laughing to the camera.,continues flipping the skateboard's board together and ends by preparing to turn off the camera.,goes over to the tortilla while also putting on the shoes.,continues to gets the others on a tree as well as performing some different tricks on a inner board.,gold0-reannot,pos,unl,unl,unl,unl,The person pushes themselves up into the air and flips back down.,He\nanetv_OdLcbH2H_zI,13200,An arrow graphic is seen and title text. A woman,stands on a dark lit room holding an accordion and demonstrating how to play it.,is siting down holding a tattoo that shows her nails.,stands outside a barn talking and hugs two ice glasses.,is then shown playing foosball.,runs on stage at a hip professional dance event.,gold1-orig,pos,unl,unl,pos,pos,An arrow graphic is seen and title text.,A woman\nanetv_OdLcbH2H_zI,13201,A woman stands on a dark lit room holding an accordion and demonstrating how to play it. The woman,begins to play a song pressing in the keys.,hold the cigarette without taking her fingers to the man.,how to play the flute and put a bow together.,puts the violin under her arm and begins to play it.,begins to attempt tennis around the room and look to the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman stands on a dark lit room holding an accordion and demonstrating how to play it.,The woman\nanetv_OdLcbH2H_zI,13203,The woman pauses to discuss then plays more of the song. The woman,finishes and closes the accordion.,continues the drums and ends by moving by with a bow to her.,continues to play and the woman not successful hula in movements.,continues her play and changes her song on.,plays the flute again.,gold0-orig,pos,unl,unl,unl,pos,The woman pauses to discuss then plays more of the song.,The woman\nanetv_OdLcbH2H_zI,13202,The woman begins to play a song pressing in the keys. The woman,pauses to discuss then plays more of the song.,continues to show the play.,pushes her strings numerous while laughing at the same time.,stops playing and smiles at the camera.,takes a harmonica from outside her mouth and places it in her hand.,gold1-orig,pos,unl,unl,pos,pos,The woman begins to play a song pressing in the keys.,The woman\nanetv_PAiJNr97C6g,17776,A man is shown speaking to the camera and begins riding around on a snowboard. Several other people,are seen riding snowboards and speaking to the camera.,are shown riding around on skateboards as well as speaking to the camera and take the mountain.,are shown riding attached to a car and leads into several others riding on boards and performing tricks.,laugh as well as people standing and speaking to the camera.,are shown riding on toy bikes on sunny day in an area.,gold0-orig,pos,unl,unl,unl,unl,A man is shown speaking to the camera and begins riding around on a snowboard.,Several other people\nanetv_PAiJNr97C6g,17777,Several other people are seen riding snowboards and speaking to the camera. The people,ride on the snow as well as on and off the lift and ends with a man speaking.,continue riding and people ski down the river and ride along.,ride around a track while more people are seen riding on the bikes and riding in the area.,ride camels on the field while the camera captures them from several angles.,continue riding down the river while the camera captures their movements.,gold1-orig,pos,unl,unl,unl,unl,Several other people are seen riding snowboards and speaking to the camera.,The people\nanetv_PAiJNr97C6g,13095,\"A snowboard instructor on a snow slope area demonstrates through live example and via talking to the camera how to snowboard on a ski slope. A man in goggles, coat and\",holding a snowboard talks into the camera while standing on a snow covered slope.,\"canvas fall, goes out on a patch.\",skis slide down the snow and a snowy hill that sits on his knees.,skiers ski down the slope holding the hose in the water.,,gold0-orig,pos,unl,unl,unl,n/a,A snowboard instructor on a snow slope area demonstrates through live example and via talking to the camera how to snowboard on a ski slope.,\"A man in goggles, coat and\"\nanetv_PAiJNr97C6g,13096,\"The people snowboarding are then seen on a ski lift, beginning the snowboarding exercise by getting off the ski lift and snowboarding using he ski lift as a catapult. The snowboard instructor then\",\"returns to talk to the camera, alone, again.\",begins walking down the path wearing a pair of shorts.,\"is on the set of water with his hands and walking, paddling up past.\",comes up to the boats sledding down the mountain on the other side a bit away from the slope in fast speeds.,begins skiing up the river going back to the top of po perched on his shoulder.,gold0-reannot,pos,unl,unl,unl,unl,\"The people snowboarding are then seen on a ski lift, beginning the snowboarding exercise by getting off the ski lift and snowboarding using he ski lift as a catapult.\",The snowboard instructor then\nanetv_ktYgm8bRK-g,11317,\"She progresses and adds another hula hip and both of them go on at the same time. In her next setting, she\",has about five around her body and continues to dance.,talks with a little one of the bottles and then discusses for herself.,holds up the picture of her own.,straightens her injured spinning throw and walks towards the show at president lane and does a spin routine.,holds up her hands before moving her arms back.,gold0-orig,pos,unl,unl,unl,pos,She progresses and adds another hula hip and both of them go on at the same time.,\"In her next setting, she\"\nanetv_ktYgm8bRK-g,11316,\"With the hula hoop, the girl begins flipping and dancing with it between her legs. She progresses and adds another hula hip and both of them\",go on at the same time.,gather it to shake hands.,sit in the middle of a hula.,stand and applaud at the end.,,gold0-orig,pos,unl,unl,pos,n/a,\"With the hula hoop, the girl begins flipping and dancing with it between her legs.\",She progresses and adds another hula hip and both of them\nanetv_ktYgm8bRK-g,11318,\"She continues to do the same thing with different amounts and with other body parts as people come and take pictures of her displaying her talent. Lastly, another small videos\",appears showing advertisements for the jump rope sisters youtube page.,shows as applications at the end.,shows each performance for them to perform for the fencers.,watches some young men practice jumping around coming on and finally speaking to the other at the end.,,gold1-reannot,pos,unl,pos,pos,n/a,She continues to do the same thing with different amounts and with other body parts as people come and take pictures of her displaying her talent.,\"Lastly, another small videos\"\nanetv_ktYgm8bRK-g,11315,\"A woman begins walking down a cobble stone sidewalk with brown boots and then she is seen twirling a hula hoop. With the hula hoop, the girl\",begins flipping and dancing with it between her legs.,moves her feet out of the top and begins trimming her nail.,stands on the swings swinging the bat while the other woman watches her.,hoists her extension hula hoop to land on on the ground as the audience cheers the woman beneath.,continues to do traditional poses but their eyes give no jerk or pause.,gold0-reannot,pos,unl,unl,unl,unl,A woman begins walking down a cobble stone sidewalk with brown boots and then she is seen twirling a hula hoop.,\"With the hula hoop, the girl\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7703,She eyes him and shuts the door. A flashback,shows a young woman on the beach.,shows a photo of someone on tv.,shows her getting out on the bed.,shows a man looking at someone and her mother.,shows someone smiling at her cellphone.,gold0-orig,pos,pos,pos,pos,pos,She eyes him and shuts the door.,A flashback\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7702,She holds out her hand to take it back. She,eyes him and shuts the door.,juts out her black lips and lets her face drift beneath.,\"wears a square lace, no sunglasses.\",sets the lashes aside.,opens the car door to the pretty boy.,gold1-orig,pos,unl,unl,pos,pos,She holds out her hand to take it back.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33293,7701,She hands him some money and he examines it. She,holds out her hand to take it back.,asks someone named tattoo.,looks around the ballroom at someone.,\"removes her hair, revealing her ashen toned features in someone's portrait.\",\"presses one finger on her finger, then pats her face.\",gold0-orig,pos,unl,unl,unl,unl,She hands him some money and he examines it.,She\nanetv_BNQPVf2Ia5Y,13047,The man trims a smaller light green hedge with the trimmer. The man,trims another hedge with trimmer.,walked away from the roll of paper.,uses the painted sheet upon the first half.,cleans snow off the first person exhibits sharpening block.,bends over to adjust the parts of the seat.,gold0-orig,pos,unl,unl,unl,unl,The man trims a smaller light green hedge with the trimmer.,The man\nanetv_BNQPVf2Ia5Y,13046,\"A man wearing black pants, a plaid shirt and baseball cap trims a dark green hedge with an electric hedge trimmer. The man\",trims a smaller light green hedge with the trimmer.,then turns on the foot of a tall fence in a yard and walks in front of it.,proceeds to dry the snow from the house.,shows in front of the camera.,,gold1-reannot,pos,unl,unl,pos,n/a,\"A man wearing black pants, a plaid shirt and baseball cap trims a dark green hedge with an electric hedge trimmer.\",The man\nanetv_ZdwkA72VMKE,15118,One man follows behind and the two shuffling eventually move the puck into a hole. The three men,cheer with each other and give each other big hugs.,exchange one shot after another.,continue speaking and swim around behind them.,finish as his chest crashes around the other boy on the sand as the boys try to point the ball forwards.,pick up the paddle and pull balls onto their own as they hit the ball back and forth to assist each other.,gold0-reannot,pos,unl,unl,unl,unl,One man follows behind and the two shuffling eventually move the puck into a hole.,The three men\nanetv_ZdwkA72VMKE,15117,Two men are shuffling brooms across a floor with another pulling it on a string. One man follows behind and the two shuffling eventually,move the puck into a hole.,change a zero in the end.,clap themselves in between the men.,begin to head turns the side.,lead him back in one.,gold0-reannot,pos,unl,unl,unl,unl,Two men are shuffling brooms across a floor with another pulling it on a string.,One man follows behind and the two shuffling eventually\nanetv_wOZdXVdiB04,10192,A large group of people are seen playing dodgeball against one another and throwing the ball back and fourth. Many people,watch the game on the sidelines as people continue to play while some fall and walk in and out of frame.,are seen running around the field using guns as well as celebrating.,help one another as they hit circle against the object and people while others watch on the side.,hit the ball back and fourth as the men continue playing tennis with one another.,stand around and end by bumping into one another as well as cheering.,gold0-orig,pos,unl,unl,unl,pos,A large group of people are seen playing dodgeball against one another and throwing the ball back and fourth.,Many people\nanetv_uOUjBTlwoxg,7107,A house is shown with piles of snow in front. A person,drags a skateboard through the snow.,is mopping the grass with a brush.,is holding a plastic ornament attached to a sticker.,is wiping the shoes of a long car.,,gold0-orig,pos,unl,unl,unl,n/a,A house is shown with piles of snow in front.,A person\nanetv_uOUjBTlwoxg,7108,A person drags a skateboard through the snow. He,is then seen doing several stunts and falls through the yard.,\"diver is skateboarding alone on the road manipulating the snowboard heavily, full of buildings, carwash, and slate streets.\",falls into a pile of sand.,lunges down the alrge with it.,,gold0-orig,pos,unl,unl,unl,n/a,A person drags a skateboard through the snow.,He\nanetv_uOUjBTlwoxg,2635,A person is seen moving around on a snowboard around a yard. The person,falls and gets back up riding on the board.,continues moving down the hill and watches on the side.,rides around and running around the room.,proceeds in front of several people looking down into the grass.,continues over snow over and over again.,gold1-orig,pos,unl,unl,unl,pos,A person is seen moving around on a snowboard around a yard.,The person\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12805,\"Someone steps aside, as a vinyl disk returns to a record player. Books\",\"fly back onto shelves, and a grand piano rights itself.\",slams the doors shut behind her as she gazes downward.,wander through the bar as she stares at the door.,player appears on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone steps aside, as a vinyl disk returns to a record player.\",Books\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12807,\"He raises his foot, and it zooms up to its rightful place. Someone\",wears pajamas made from upholstery fabric.,gazes down at someone swinging on his wheelchair.,shakes his head as he lifts it over his head.,casts the jolting aside.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He raises his foot, and it zooms up to its rightful place.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72105,12806,\"The missing plaster renews itself on the ceiling, and someone smiles. He\",looks down at his feet.,steps to the hall and gets to his feet.,gives someone a heart - interested look.,takes off his sunglasses and cocks it.,watches as he clenches his fingers against the lever.,gold1-reannot,pos,unl,unl,unl,unl,\"The missing plaster renews itself on the ceiling, and someone smiles.\",He\nanetv_IV5llWEEfAw,19258,A sailboat sails through rough waters in the ocean. The skipper,is seen manning the steering wheel at the back of the boat.,\"passes by large trees in the pool, friends of kayakers.\",pushes a muddy valley into them river in front.,falls off the ground by the water on the cliff.,,gold0-orig,pos,unl,unl,unl,n/a,A sailboat sails through rough waters in the ocean.,The skipper\nanetv_IV5llWEEfAw,19259,The skipper is seen manning the steering wheel at the back of the boat. The mast of the ship,is seen in full view.,sails on to its stern.,is reflected beneath the horizon.,rises into the river.,fires the lense mop of the dangling compartments.,gold0-orig,pos,unl,unl,unl,unl,The skipper is seen manning the steering wheel at the back of the boat.,The mast of the ship\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3797,They're all of someone's stuffed mice. The first,shows two mice getting married.,\", pauses, to someone, who smiles.\",nappy is a little chocolate of their kitchen.,pets someone away on his right looked drawn.,see two column from the pier.,gold0-orig,pos,unl,unl,unl,unl,They're all of someone's stuffed mice.,The first\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3793,He gets up and goes in the living room. Someone,has finally fallen asleep on the sofa.,leans her against the wall of the fireplace and takes off his shades.,takes a shirt out in a sweatshirt.,stands still holding someone's ball.,goes up the phone and turns away from someone.,gold1-orig,pos,unl,unl,unl,pos,He gets up and goes in the living room.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3795,Someone picks some photographs up off the floor. He,sits down and studies them.,notes the details pinned.,marks the junior league.,puts lipstick in someone's crotch.,walks towards the woman.,gold0-orig,pos,unl,unl,unl,unl,Someone picks some photographs up off the floor.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3791,The alarm clock says it's just after 4: 30 in the morning. Someone,lies awake in bed.,stares blankly at the black costco sign that reads.,\"sits watching tv sullenly on the kitchen computer, as someone dances with a young man and wipes her new ear.\",desperately swims around himself as the giant lays them under his arm.,can't say a word.,gold0-orig,pos,unl,unl,unl,pos,The alarm clock says it's just after 4: 30 in the morning.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3798,The next shows the specky boy mouse returning home and finding the girl mouse in bed with a bearded mouse that wears a polo neck bib. The next,shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him.,girl is the same with the woman from the rodeo boy and also wearing the blue dress.,'s feet begin to put in the form and the man dropped both socks.,morning someone returns to an apartment eating a cigarette and looks around.,,gold0-orig,pos,unl,unl,unl,n/a,The next shows the specky boy mouse returning home and finding the girl mouse in bed with a bearded mouse that wears a polo neck bib.,The next\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3789,Someone puts someone in front of the tv with snacks and sticks headphones on him. Someone,pulls a pillow over his head to block out someone's laughter.,is still in shock.,plunges into the kitchen.,returns and stares at a mirror angle.,notices it as someone waits.,gold0-orig,pos,unl,unl,unl,pos,Someone puts someone in front of the tv with snacks and sticks headphones on him.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3792,Someone lies awake in bed. He,gets up and goes in the living room.,\"stares sadly, then lowers his hands from his pocket.\",\"sets his head down on her shoulder, then surveys some sign for the exhibit.\",leans against the wall and shakes his head.,wears an orange t - shirt.,gold1-orig,pos,unl,unl,pos,pos,Someone lies awake in bed.,He\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3799,The next shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him. Portions of cheese,are in front of him and the photo.,are quickly made around three more cardboard on the box.,is show behind the room when finally out of a small board.,is put in the floor and adds more bread to it.,counts down on a plate.,gold0-reannot,pos,unl,unl,unl,unl,The next shows the boy mouse sitting alone at the kitchen table with a photo of the girl mouse propped up in front of him.,Portions of cheese\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3790,Someone pulls a pillow over his head to block out someone's laughter. The alarm clock,says it's just after 4: 30 in the morning.,stands on the corner of the loft away from any time the last things is moving toward: he gets a key with one.,reads 1 minute.,shows four minutes to fifteen.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone pulls a pillow over his head to block out someone's laughter.,The alarm clock\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3802,\"The next morning, someone gets someone some cereal. Someone\",picks up someone's mobile by mistake and goes out.,watches him from the painfully seat.,offers her a napkin then taps all at her husband.,sets over half the water.,goes out and stands upside down in the bushes.,gold0-reannot,pos,unl,unl,unl,unl,\"The next morning, someone gets someone some cereal.\",Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3786,Someone goes into his bedroom. Someone,settles down on the couch.,goes to the kitchen window.,points at his reflection in the mirror.,cocks his head restlessly.,\"is in the case, under him.\",gold0-reannot,pos,unl,unl,unl,unl,Someone goes into his bedroom.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10455,3794,Someone has finally fallen asleep on the sofa. Someone,picks some photographs up off the floor.,walks up to find someone's pickup.,\"is gasping, more slowly toward the diary also glinting.\",\"is being wounded who lies in her raft ahead, not the people who stand up, not quite close.\",has reached for it.,gold0-reannot,pos,unl,unl,unl,unl,Someone has finally fallen asleep on the sofa.,Someone\nanetv_7UrJuhFvlQ4,9712,The leaves fly up in the air but stick largely together as the the leaf blower wipes the ground clean of brown leaves and starts to form piles on the lawn. The camera occasionally and finally,settles on a yellow riding lawn mower sitting in the yard beyond the piles of leaves.,ends with a person picking off the leaves.,puts leaves in suburban brown cabins to show the offscreen animals.,\"walks the car to different dirt towards the gate that go to the angles of the house, and go down.\",appears now and passes the leaf blower adding down the grass over and over again once again.,gold0-orig,pos,unl,unl,unl,unl,The leaves fly up in the air but stick largely together as the the leaf blower wipes the ground clean of brown leaves and starts to form piles on the lawn.,The camera occasionally and finally\nanetv_4x08i2_AYKo,1806,The man speeds up then returns to his initial speed. The man,reaches the park's sign and comes to a stop.,looks up and prepares the machine in slow stream.,pulls up traffic on ibs.,gets down from the leaves again and the man does a big flip.,returns to speak to the camera with the front of his right hand.,gold0-orig,pos,unl,unl,unl,unl,The man speeds up then returns to his initial speed.,The man\nanetv_4x08i2_AYKo,1805,Turns to his right and walks pass a row of benches. The man,speeds up then returns to his initial speed.,\"swings open and along the building hat following his crane and going back to a regular angle, then stands outside.\",lowers the binoculars as the crowd looks un - upon in atlantic city.,\"sits beside someone, studies his wand, then notes him to review the golden papers.\",,gold0-orig,pos,unl,pos,pos,n/a,Turns to his right and walks pass a row of benches.,The man\nanetv_4x08i2_AYKo,1804,A man walks on stilts into a park. Turns to his right and,walks pass a row of benches.,picks up the camera.,runs as another man can follow after him.,jumps back to finish.,starts running across the path.,gold1-orig,pos,unl,unl,unl,unl,A man walks on stilts into a park.,Turns to his right and\nlsmdc3009_BATTLE_LOS_ANGELES-539,14134,Someone cranks the stirring wheel. Someone,comforts the blonde girl.,flashes a woman couple of african dressed.,puts the wires in the safe.,\"bounces his leg, marking speed.\",whips solution to the surface of the glass.,gold1-orig,pos,unl,unl,unl,unl,Someone cranks the stirring wheel.,Someone\nlsmdc1058_The_Damned_united-98441,7038,Someone follows someone into the Leeds dressing room. Someone,takes a note from his blazer pocket.,crosses to a small waiting cafe where its left door stands.,\"smiles, who stares forward, horrified.\",\"notes on an just nearby cabinet feature, its shadows at its sides.\",,gold0-reannot,pos,unl,unl,unl,n/a,Someone follows someone into the Leeds dressing room.,Someone\nanetv_M_E1i4S8Vp0,13415,A girl talks in front of a swing. She,starts to swing and then goes higher for the whole video.,lays a large log on the floor.,enters from behind the boy using a pair of shears.,jumps off of a beam on the bike.,hits a white ball with a cotton tool.,gold0-orig,pos,unl,unl,unl,unl,A girl talks in front of a swing.,She\nanetv_M_E1i4S8Vp0,7124,A young girl is seen dancing around in front of a swing. The jumps on the swing and,moves herself back and fourth.,jumps onto the bars in the end.,ends by taking a few shots on the ground.,catches her swinging all around the room.,begins moving her hips around gracefully.,gold1-orig,pos,unl,unl,unl,pos,A young girl is seen dancing around in front of a swing.,The jumps on the swing and\nanetv_M_E1i4S8Vp0,7125,The jumps on the swing and moves herself back and fourth. She,continues riding up and down on the swing.,catches up with his right leg up and flips them all all together on both sides.,moves away to speak to other people and continues to walk on the road.,moves along the side and ends by walking away from the camera.,ends by swinging the rope and jumping over the trampoline.,gold0-orig,pos,unl,unl,unl,unl,The jumps on the swing and moves herself back and fourth.,She\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14768,He pulls down the blind. He,moves toward the bed.,curls his fingers thoroughly to the wall.,looks down at the lake.,looks back at the workstation.,,gold0-orig,pos,unl,unl,pos,n/a,He pulls down the blind.,He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14767,He has moved over to the coat on back of chair. His hand,goes into the pocket and brings the knife out.,folds and looks up at the camera.,has perhaps six inches from his hand.,is firmly beside the camera.,,gold0-orig,pos,unl,unl,unl,n/a,He has moved over to the coat on back of chair.,His hand\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49273,14766,He has heard the voice and starts to move out of close shot. He,has moved over to the coat on back of chair.,holds the mic on his neck and claps it.,see the clothes slapping forward by a tree - escape.,is still being arrested and the other door is then attacked.,\", but the stranger in the stands picks someone away, starts for the door and freezes.\",gold1-orig,unl,unl,unl,unl,unl,He has heard the voice and starts to move out of close shot.,He\nanetv_H8MY7XGrN6Q,4223,A person is seen roller balding around a street while many people are seen walking around him. A man,is then being interviewed by reporters and ends with the camera panning away.,is seen walking down the street squishing a ball into a cup while looking off into the distance.,is swinging the back of a bicycle while others.,pushes into the keys and grabs his hands while looking off to the camera.,rolls down a track and ties it on the ground and several walking on some residential areas.,gold0-orig,pos,unl,unl,unl,unl,A person is seen roller balding around a street while many people are seen walking around him.,A man\nlsmdc1001_Flight-72032,16807,Someone opens a writing pad. Someone,\"shifts, his hands resting on the table.\",\"clear liquid, he picks up.\",strokes on someone's knee.,covers the panel with the hand.,dashes out through marked floored hall.,gold1-orig,pos,unl,unl,unl,unl,Someone opens a writing pad.,Someone\nanetv_hru57dsi0N0,1570,She shows off her bare feet and their shape. She then,puts on and tries to lace her shoes around the swollen feet.,takes the earring off the needle.,cartwheels down the grand hallway.,finishes her routine casually.,,gold0-orig,pos,unl,unl,pos,n/a,She shows off her bare feet and their shape.,She then\nanetv_hru57dsi0N0,1569,A woman is seated in a chair in a dining room. She,shows off her bare feet and their shape.,are pedaling in her room and dries her hair.,has her hands on her hips.,is using a trainer to talk about how to braid the hair and style her hair.,is applauding in a case.,gold0-reannot,pos,unl,unl,unl,unl,A woman is seated in a chair in a dining room.,She\nanetv_eCXiGAChev4,9145,Woman is cleaning utensils in a bucket. woman,is standing on the field wearing a black dress.,is on a appliance and start washing a little.,uses a gun to clean the mop.,is putting ingredients in a pot bowl.,,gold1-orig,pos,unl,unl,unl,n/a,Woman is cleaning utensils in a bucket.,woman\nanetv_eCXiGAChev4,10438,A person is sitting down in front of a bucket. Another person,is standing on the grass in front of them.,is laying down talking and lead into him kicking the ball in a green room.,is rubbing a hole in the board.,\"stops, talking about it.\",does the same thing around a gray chair.,gold0-orig,pos,unl,unl,pos,pos,A person is sitting down in front of a bucket.,Another person\nanetv_QBJelFFVJu0,10,A person holds a harmonica between his hands a plays a song. The person,finishes the song and holds up the harmonica.,plays the piano while the camera captures his movements.,plays a game of grass on his violin as he watches it play.,plays the guitar around the band.,finishes playing the flute.,gold0-orig,pos,unl,unl,unl,unl,A person holds a harmonica between his hands a plays a song.,The person\nanetv_QBJelFFVJu0,9,The harmonica is held up and shown. A person,holds a harmonica between his hands a plays a song.,walks by in front of the camera.,hug her side briefly and continue riffles.,is working rural materials against the paint wall.,is then seen speaking to the camera again with a beer and then several shots of him practicing knife blocks.,gold0-orig,pos,unl,unl,unl,unl,The harmonica is held up and shown.,A person\nlsmdc3055_PROMETHEUS-27099,8064,Someone takes off her helmet. Someone and someone,watch from the bridge.,reach the plane holding circus equipment.,run down a corridor.,walk out and reach a second river with a clear tube of a carrier ramp.,get into their car.,gold1-orig,pos,unl,unl,unl,pos,Someone takes off her helmet.,Someone and someone\nlsmdc3055_PROMETHEUS-27099,8073,\"The aide shoots the engineer, and he drops the head. The engineer\",\"turns someone around and palms her chest, knocking her off the platform.\",drags out her cigarette.,heaves the sheet back onto the bed.,opens slightly above the window and stares down in horror.,\"starts to pound on the scale, then straightens.\",gold1-orig,pos,unl,unl,unl,unl,\"The aide shoots the engineer, and he drops the head.\",The engineer\nlsmdc3055_PROMETHEUS-27099,8066,\"Someone steps past his aide who lowers a gun. As the engineer sits up, several tubes\",detach from his oxygen mask.,walk from the gates of the titanic.,slide down beneath them.,come from one line and through the volume like u's been potion.,emerge from the back door.,gold0-orig,pos,unl,unl,unl,unl,Someone steps past his aide who lowers a gun.,\"As the engineer sits up, several tubes\"\nlsmdc3055_PROMETHEUS-27099,8083,\"A holographic sphere emerges around him, and widening outer rings flip into place. Someone\",stops to catch her breath.,\"flinches, revealing the bandage someone dropped from another.\",flips the hurdle and falls to the ground and throws down into a fetal position.,winks with pride in it and well.,,gold0-orig,pos,unl,unl,unl,n/a,\"A holographic sphere emerges around him, and widening outer rings flip into place.\",Someone\nlsmdc3055_PROMETHEUS-27099,8093,\"Running for Prometheus, someone jumps another gap, but falls short and grabs hold of the opposite ledge. She\",\"pulls herself up, then finds her path blocked for certain.\",\"motionless, people completely want them.\",nudges at his underling.,looks at the roof.,,gold0-orig,pos,unl,unl,pos,n/a,\"Running for Prometheus, someone jumps another gap, but falls short and grabs hold of the opposite ledge.\",She\nlsmdc3055_PROMETHEUS-27099,8062,He leads them to the working pod. Someone,collapses to her knees in pain.,watches impassively as an alien crawls forward.,prepare themselves to clean out and see it.,leans over to see the tile roof slide off.,steps to find him holding his remote at the radio.,gold1-orig,pos,unl,unl,unl,unl,He leads them to the working pod.,Someone\nlsmdc3055_PROMETHEUS-27099,8080,\"The center of the disc drops, then rotates counter clockwise and opens for a head and pillar to emerge. Someone\",tries to look in its direction.,'s face falls.,runs back into the jungle.,leads his huge body down a rocky staircase.,,gold1-orig,pos,unl,unl,unl,n/a,\"The center of the disc drops, then rotates counter clockwise and opens for a head and pillar to emerge.\",Someone\nlsmdc3055_PROMETHEUS-27099,8063,Someone collapses to her knees in pain. Someone,takes off her helmet.,holds the dagger up to someone.,is lying in bed.,\"spins around, straightens up and closes her arms.\",picks up someone's canister.,gold1-orig,pos,unl,unl,unl,unl,Someone collapses to her knees in pain.,Someone\nlsmdc3055_PROMETHEUS-27099,8084,\"Someone stops to catch her breath. As the engineer works the controls, a brief flash\",illuminates his crescent shaped ship.,shows the two men lying around.,is right before her.,appears in the water.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stops to catch her breath.,\"As the engineer works the controls, a brief flash\"\nlsmdc3055_PROMETHEUS-27099,8088,As our view retracts through the star map a holographic line sets out from the gunner chair and targets hologram of the planet earth. She,\"rises to her feet, standing beside one of the erupting plumes.\",pushes into the opening.,leads two civilians back into a brown diner.,\"cautiously returns, cradling a gun.\",steps back to side platform and regains consciousness.,gold1-orig,unl,unl,unl,unl,unl,As our view retracts through the star map a holographic line sets out from the gunner chair and targets hologram of the planet earth.,She\nlsmdc3055_PROMETHEUS-27099,8070,The engineer looks at someone who eagerly waits for a reply. He,gently lays his hand on the top of someone's head.,\"repeats the same action, then climbing.\",takes out his cellphone and takes out the newspaper.,\"strides past a hulking, empty figure of a figure standing in front of windows.\",picks it over and sets it down.,gold1-orig,unl,unl,unl,unl,unl,The engineer looks at someone who eagerly waits for a reply.,He\nlsmdc3055_PROMETHEUS-27099,8086,\"The exhaust hurls her through passage leading outside. Through a window, the crew\",watches thin plumes of smoke rise from the ground.,are looking at a marketplace at her painting.,stares down at the podiums.,proceeds through a wooden roof.,are focused on someone as people catch up walking.,gold0-orig,pos,unl,unl,unl,pos,The exhaust hurls her through passage leading outside.,\"Through a window, the crew\"\nlsmdc3055_PROMETHEUS-27099,8078,Someone's head lies about a foot away. On the bridge someone,watches a video feed showing her father's heart rate.,peers into a patch of corn boxes.,leans on the rail stick in front of him.,remains motionless as he returns to the supply room.,watches the girls with his baseball briefly.,gold1-orig,pos,unl,unl,unl,unl,Someone's head lies about a foot away.,On the bridge someone\nlsmdc3055_PROMETHEUS-27099,8090,\"She runs for Prometheus, but the ground fissures, threatening to cut her off from the ship. As the gap widens she\",jumps the fissure and runs on.,stumbles and runs down the narrow slope.,\"reaches the railing, slides into the water.\",knocks the light from the gym and sees a sign in the distance.,,gold0-orig,pos,unl,unl,unl,n/a,\"She runs for Prometheus, but the ground fissures, threatening to cut her off from the ship.\",As the gap widens she\nlsmdc3055_PROMETHEUS-27099,8077,Now someone lies wounded on the floor. Someone's head,lies about a foot away.,lies on chest.,is turned in red.,does supported by the guests.,lies on his side.,gold1-orig,pos,unl,unl,unl,pos,Now someone lies wounded on the floor.,Someone's head\nlsmdc3055_PROMETHEUS-27099,8087,\"Through a window, the crew watches thin plumes of smoke rise from the ground. As our view retracts through the star map a holographic line\",sets out from the gunner chair and targets hologram of the planet earth.,shows the elder girl in a pale blue dress with asgard.,looms over someone and nestled near a branch of yellowstone.,glows along a narrow ridge toward a slate - grey rooftop jutting to los atlantic skyscrapers.,,gold1-orig,pos,unl,unl,unl,n/a,\"Through a window, the crew watches thin plumes of smoke rise from the ground.\",As our view retracts through the star map a holographic line\nlsmdc3055_PROMETHEUS-27099,8067,\"As the engineer sits up, several tubes detach from his oxygen mask. He\",takes off his headgear and hunches over.,rides through the upper windows with his foot on the oar.,holds a cloth out coat over the body.,tackles someone forward and backward to the doors on the tomb.,looks at someone with a quill.,gold0-orig,pos,unl,unl,unl,unl,\"As the engineer sits up, several tubes detach from his oxygen mask.\",He\nlsmdc3055_PROMETHEUS-27099,8071,\"He gently lays his hand on the top of someone's head. With both hands, he\",\"grabs someone by the throat, then lifts him off his feet and breaks his neck.\",walks back to her with a kiss on his cheek.,rests his head on his shoulder.,stares at her sprinkle sweets.,rests the top on it.,gold0-orig,pos,unl,unl,unl,unl,He gently lays his hand on the top of someone's head.,\"With both hands, he\"\nlsmdc3055_PROMETHEUS-27099,8072,\"With both hands, he grabs someone by the throat, then lifts him off his feet and breaks his neck. He\",rips someone's head off and strikes someone with it.,punches someone in the gut and falls off.,manages to break out of the window throwing the seat back into the car.,\"reaches up, pats his arms, then spins his neck.\",raises his bent legs around his shoulders and pulls it away.,gold1-orig,pos,unl,unl,unl,unl,\"With both hands, he grabs someone by the throat, then lifts him off his feet and breaks his neck.\",He\nlsmdc3055_PROMETHEUS-27099,8081,\"Running through a tunnel, someone glances back. As the engineer climbs onto the gunner chair, we\",glimpse someone's motionless face in profile.,follow someone taking out the manuscript.,hear her breathing continuing.,watch someone go sideways.,see his arrow crewman carrying a torch.,gold1-orig,pos,unl,unl,unl,pos,\"Running through a tunnel, someone glances back.\",\"As the engineer climbs onto the gunner chair, we\"\nlsmdc3055_PROMETHEUS-27099,8091,As the gap widens she jumps the fissure and runs on. We,glimpse the ceiling opening up over the crescent shaped ship.,are circling outside of the mountainside gate.,scuttles off where approaching a tree.,at the bottom of the stairs.,,gold0-orig,pos,unl,unl,unl,n/a,As the gap widens she jumps the fissure and runs on.,We\nlsmdc3055_PROMETHEUS-27099,8075,\"He strikes the aide, flings him into a wall across the chamber. Someone\",slows to a stop and braces herself on a wall.,\"drops into a body of water, rubbing a hand over his face and knees.\",stretches as his catapult flails downwards.,tries to escape the hydraulic reactor during the mace.,rips the penguin off his clothing.,gold0-orig,pos,unl,unl,unl,unl,\"He strikes the aide, flings him into a wall across the chamber.\",Someone\nlsmdc3055_PROMETHEUS-27099,8085,\"The helmet shields his face, then more armor shields his body. The exhaust\",hurls her through passage leading outside.,heaves and falls in the rigid floor.,pours out to reveal people buzz around.,fronted which contains many armed sailors.,,gold1-reannot,pos,unl,unl,unl,n/a,\"The helmet shields his face, then more armor shields his body.\",The exhaust\nlsmdc3055_PROMETHEUS-27099,8068,The engineer looks at someone. The aide,strikes someone in the gut with his gun.,opens the door to reveal his mother's pink spikey face.,\"strides off, leaving the family carrier and chips through a window.\",\"exchanges it with the skiptracer, someone at his side.\",\"grabs his wand, then holds his ax under someone's leg.\",gold0-reannot,pos,unl,unl,unl,unl,The engineer looks at someone.,The aide\nlsmdc3055_PROMETHEUS-27099,8092,\"We glimpse the ceiling opening up over the crescent shaped ship. Running for Prometheus, someone\",\"jumps another gap, but falls short and grabs hold of the opposite ledge.\",jumps down the pole deck and catches someone crouched in the knee.,fastens the glinting sparks on someone's lips and takes web address.,sniffs a sample of the mortar's chains.,\"garnishes a large silver pie, startling a baby.\",gold0-reannot,pos,unl,unl,unl,unl,We glimpse the ceiling opening up over the crescent shaped ship.,\"Running for Prometheus, someone\"\nlsmdc3055_PROMETHEUS-27099,8079,\"Someone looks at his rattled shipmate, then lowers his gaze. He\",\"licks his lips, then shifts in his seat.\",smacks someone's head.,\"passes a window and pulls back, with his pipe loosened.\",glances to someone who gets to her feet and points her wand to her lips.,reverses up from his dead body.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone looks at his rattled shipmate, then lowers his gaze.\",He\nlsmdc3055_PROMETHEUS-27099,8074,\"The engineer turns someone around and palms her chest, knocking her off the platform. He\",\"strikes the aide, flings him into a wall across the chamber.\",follows the door and finds the suv pulling away.,fade to the moon.,jumps from the toilet and into another opening.,leans out of the sidecar.,gold0-reannot,pos,unl,unl,unl,unl,\"The engineer turns someone around and palms her chest, knocking her off the platform.\",He\nlsmdc3055_PROMETHEUS-27099,8082,\"As the engineer climbs onto the gunner chair, we glimpse someone's motionless face in profile. The engineer\",\"takes a seat, then activates the star map.\",cringing someone's tracking jet.,\"dangles above the guy's head, it roars above his head.\",turns slowly and looks at someone as he walks in on the ground.,\"'s chin remains jutting out from its raised supports around the now perfectly black skull, and it glides along the dark chamber.\",gold1-reannot,unl,unl,unl,unl,unl,\"As the engineer climbs onto the gunner chair, we glimpse someone's motionless face in profile.\",The engineer\nlsmdc3055_PROMETHEUS-27099,8076,Someone slows to a stop and braces herself on a wall. Now someone,lies wounded on the floor.,picks the pasta from a noodles bin.,spots someone's phone on her laptop.,flips through a wall book.,\"creeps into the dark garage and sits beside someone, who sits down on an electronic device.\",gold0-reannot,pos,unl,unl,unl,unl,Someone slows to a stop and braces herself on a wall.,Now someone\nlsmdc3055_PROMETHEUS-27099,8089,\"She rises to her feet, standing beside one of the erupting plumes. She runs for Prometheus, but the ground fissures,\",threatening to cut her off from the ship.,timber over the rooftops.,\"winding curves all the way to the blackness, looking down.\",sending it running out from behind.,while foreheads have no room.,gold0-reannot,pos,unl,unl,unl,unl,\"She rises to her feet, standing beside one of the erupting plumes.\",\"She runs for Prometheus, but the ground fissures,\"\nlsmdc3001_21_JUMP_STREET-226,18409,\"Now in his office, the Captain slowly chews a sandwich in his hands. Holding someone and someone in a disapproving glare he\",points at them accusingly.,goes into an interrogation room.,gives two tequila shots.,fixes them with a serving smile.,moves one hand away to demonstrate a mounting award.,gold0-orig,pos,unl,unl,unl,unl,\"Now in his office, the Captain slowly chews a sandwich in his hands.\",Holding someone and someone in a disapproving glare he\nlsmdc3001_21_JUMP_STREET-226,18407,Someone dry humps someone with a full duffle bag. Someone,smiles at her phone.,turns on the x - rays and sees it's someone.,\"lurches, picks to his knees, and looks out.\",ran after it and exit the gate.,rolls over on a couch with the windows on the warehouse.,gold1-orig,pos,unl,unl,unl,unl,Someone dry humps someone with a full duffle bag.,Someone\nlsmdc3001_21_JUMP_STREET-226,18406,Someone pounds someone's crotch with a stuffed giraffe's head. Someone dry,humps someone with a full duffle bag.,hands at the patrons.,\"leaves, turning on all lights of the car.\",balls at a table in a latrine.,leaves into the lot.,gold0-orig,pos,unl,unl,unl,pos,Someone pounds someone's crotch with a stuffed giraffe's head.,Someone dry\nlsmdc3001_21_JUMP_STREET-226,18405,He pounces on someone playfully. He,sits on his head.,crawls to his face.,throws him again as he hops onto a stage.,disappears down from someone's statue's face.,stabs the agent's father in the neck.,gold0-orig,pos,unl,unl,unl,unl,He pounces on someone playfully.,He\nanetv_j_IJQAywTuU,377,A young boy is seen riding along a skateboard followed by several more shots of people riding on boards. The boys,perform several tricks while the camera pans into the sky and move up and down the track.,swim around the area with a group of people and watch people on the hills.,ride around during bikes as well as racing around the track riding their bikes and riding a lawnmower.,get in a bike and walk down a snowy mountain.,ride past one another while shots of the landscapes and men skateboard in jump.,gold0-orig,pos,unl,unl,unl,pos,A young boy is seen riding along a skateboard followed by several more shots of people riding on boards.,The boys\nlsmdc0021_Rear_Window-58359,5113,Someone begins to move around the room assembling her possessions preparatory to leaving. Someone,begin to get desperate.,is falling from the rocker.,turns into the fierce frustration.,stares down at her prize.,holds someone's hands like a lasso.,gold1-orig,unl,unl,unl,unl,unl,Someone begins to move around the room assembling her possessions preparatory to leaving.,Someone\nlsmdc0021_Rear_Window-58359,5116,\"Someone starts to say something then thinks better of it, and remains silent. Someone\",turns in the half - opened door.,gets to the buffet and trips without noticing.,\"looks back from the safe, disgruntled, and grabs his phone.\",slams someone's door shut.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone starts to say something then thinks better of it, and remains silent.\",Someone\nlsmdc0021_Rear_Window-58359,5111,\"Someone starts to rise from the divan, the camera panning up. Someone\",looks across at her with some concern.,\"has her sharp sunglasses bouncing, someone stands frozen in silhouette.\",switches to someone and places one hand on her head.,\"enters and picks up a few mops, then takes a drink.\",strides toward the bottom of the stairs.,gold0-orig,pos,unl,unl,unl,pos,\"Someone starts to rise from the divan, the camera panning up.\",Someone\nlsmdc0021_Rear_Window-58359,5115,Someone's eyes follow her up the steps toward the door. Someone,\"starts to say something then thinks better of it, and remains silent.\",\"leans his face close to hers, as if locked on dynamite.\",\"stands stroking someone's apartment door, then.\",ambles down a long corridor but the doors swing open.,turns and walks towards the front door.,gold1-orig,pos,unl,unl,unl,pos,Someone's eyes follow her up the steps toward the door.,Someone\nanetv_y7i-jRmrwnI,10828,She takes a drink out of a wine glass. She,continues doing dishes in the sink.,\"spots a bottle for doughnut, and puts a coffee cup down to the table gently using her arm.\",pours down the cup.,\"pours out the blender, tastes it, and leaves it in her mouth.\",,gold1-orig,pos,unl,pos,pos,n/a,She takes a drink out of a wine glass.,She\nanetv_y7i-jRmrwnI,12201,A woman is standing at a sink. She,is washing dishes in the sink.,instructs on how to start shaving the furniture.,is applying the paint on the sole covering her breasts.,opens a shirt and puts them in the bin.,puts shampoo on his hair.,gold1-orig,pos,unl,unl,unl,unl,A woman is standing at a sink.,She\nanetv_y7i-jRmrwnI,10829,She continues doing dishes in the sink. She,looks out the window in front of her.,puts several lights on the grill.,dips into the water under the sink.,\"pans all around the bar, washing dishes.\",pauses to move her hands in the water.,gold1-reannot,pos,unl,unl,unl,unl,She continues doing dishes in the sink.,She\nanetv_y7i-jRmrwnI,12202,She is washing dishes in the sink. She,picks up a wine glass and takes a drink.,\"cleans up the sink, washing them.\",dumps a mug into the sink and starts wiping the sink.,\"soaps up beneath the soap, then uses the shower to rinse it.\",washes her hands in a sink and rubs her face.,gold0-reannot,pos,unl,unl,unl,pos,She is washing dishes in the sink.,She\nanetv_y7i-jRmrwnI,12203,She picks up a wine glass and takes a drink. She,continues to do the dishes in the sink.,takes a glass and drinks.,serve his coffee in a smaller glass.,uses a spoon to complete the drink and continues to mix the drink.,lifts him to his feet and takes a swig.,gold0-reannot,pos,unl,unl,unl,unl,She picks up a wine glass and takes a drink.,She\nanetv_y7i-jRmrwnI,10827,A woman is standing over a sink doing dishes. She,takes a drink out of a wine glass.,'s washing her hands by different woman.,is washing dishes in a sink.,is standing up washing dishes in the sink.,grabs a black bucket and begins mopping around the sink with a towel.,gold0-reannot,pos,unl,unl,pos,pos,A woman is standing over a sink doing dishes.,She\nlsmdc3038_ITS_COMPLICATED-17334,1274,She digs out her cell phone. Screwing her mouth to one side she,lowers the phone and looks away.,straddles her alarm clock.,puts it down on her handheld.,watches her hit her gun back and forth in front of her.,inserts the sim card through the hole.,gold0-orig,pos,unl,unl,unl,unl,She digs out her cell phone.,Screwing her mouth to one side she\nlsmdc3038_ITS_COMPLICATED-17334,1273,She reaches for her bag then hesitates. She,digs out her cell phone.,dumps the groceries off.,waves on the news.,averts her eyes as she goes forward.,\"looks at him, then back at her.\",gold1-orig,pos,unl,unl,unl,unl,She reaches for her bag then hesitates.,She\nlsmdc3038_ITS_COMPLICATED-17334,1275,Screwing her mouth to one side she lowers the phone and looks away. She,manages a brief tearful smile and continues.,holds it open and looks up at the young women.,lets out a sigh and opens the lid.,takes one of the 21 photos.,starts laughing and smiling.,gold1-orig,pos,unl,unl,unl,pos,Screwing her mouth to one side she lowers the phone and looks away.,She\nlsmdc3038_ITS_COMPLICATED-17334,1276,She manages a brief tearful smile and continues. Lifting her brow someone,gives a wide - eyed nod.,\"sets down the bow, smiling, then goes to the bar where he sat his hands in his pocket, and twirls his jacket\",waves victoriously and lowers her weapon.,puts her fingers together and leans over desperately on the window.,looks down out her anxious little blonde.,gold1-orig,pos,unl,unl,unl,unl,She manages a brief tearful smile and continues.,Lifting her brow someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41755,3014,Someone wraps his arms around her and they share a warm heartfelt embrace. The teen boy,\"leans diagonally into someone window, his feet planted in a flowerbed as he holds her.\",\"bows his head, and flings his arms around his gaunt son.\",holds a coin and a brand.,parks his family.,skeptically looks up as the bully wears a bee - stung gaze.,gold1-reannot,unl,unl,unl,unl,unl,Someone wraps his arms around her and they share a warm heartfelt embrace.,The teen boy\nanetv_XSNenkxgryQ,18623,A news anchor presents a story behind a desk in a large newsroom. People,are seen smoking regular cigarettes and electric cigarettes.,try to play a game of polo and end with team mates.,starts climbing a tree with a large shovel as she goes to push snow.,are on the decks each with one seated the flaming cars.,,gold0-orig,pos,unl,unl,unl,n/a,A news anchor presents a story behind a desk in a large newsroom.,People\nanetv_XSNenkxgryQ,18625,The news anchor talks with a guest in the newsroom. Professionals,are seen in there offices discussing the subject.,sit at tables together under great pews.,are clapping for the japanese skateboards.,is sitting on the kitchen table as they play clean.,,gold1-orig,pos,unl,unl,unl,n/a,The news anchor talks with a guest in the newsroom.,Professionals\nanetv_XSNenkxgryQ,18624,People are seen smoking regular cigarettes and electric cigarettes. The news anchor,talks with a guest in the newsroom.,streams with a news record.,lies back beside the radioman.,is seen sailing in the water.,,gold0-orig,pos,unl,unl,unl,n/a,People are seen smoking regular cigarettes and electric cigarettes.,The news anchor\nanetv_XSNenkxgryQ,18626,Professionals are seen in there offices discussing the subject. Text,is seen against a red background with a website and information.,demonstrates different martial arts shoes and how to properly use the gaming tiles in order to clean out in leaded windows.,and taunts are shown of a group of people in the car and competing in a wrestling match.,follows behind doing it in the pumpkin.,woman is outside easel and talking about something.,gold0-reannot,pos,unl,unl,unl,unl,Professionals are seen in there offices discussing the subject.,Text\nlsmdc1005_Signs-5152,10231,Someone's bedroom window looks out over the scene. The family,huddled together on the grass near the picnic table and brick barbecue.,\"remains crowded crowded by the children, their eyes glued to the darkness.\",look up at two paintings from the ceiling.,\"dark, people still glanced to each other and tightly straining for their breath.\",room is cluttered with bright white foam.,gold0-orig,pos,unl,unl,unl,pos,Someone's bedroom window looks out over the scene.,The family\nlsmdc1005_Signs-5152,10225,He slams the bat into the alien. The creature,\"topples over, landing on his back and knocking against a small sideboard.\",snaps the claws up in a circle.,watches from a gap.,\"knocks out the driver's hand, but catches him in the eye.\",slams on the dead animal and pushes it at him.,gold0-orig,pos,unl,unl,unl,unl,He slams the bat into the alien.,The creature\nlsmdc1005_Signs-5152,10211,\"His eyes glazed with tears, someone stares at the alien as it rocks back and forth, leaning over its captive hanging limply over its arm. Someone\",\"turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother.\",\"drags the gun down from his jaws, then collapses, snapping his arms.\",goes slowly under the screen door and returns to the other side of the room.,lays his hand on someone's back.,,gold0-orig,pos,unl,unl,pos,n/a,\"His eyes glazed with tears, someone stares at the alien as it rocks back and forth, leaning over its captive hanging limply over its arm.\",Someone\nlsmdc1005_Signs-5152,10223,The alien recoils as its skin is splashed with liquid. Someone,prepares for another strike.,rolls its head back and forth by a foam crotch.,spreads the surface causing the killer to face the object.,licks a slice of lemon and chews.,,gold0-orig,pos,unl,unl,unl,n/a,The alien recoils as its skin is splashed with liquid.,Someone\nlsmdc1005_Signs-5152,10218,\"As the water spills onto its shoulder, an angry red wound erupts in its green gray skin. People\",stare around the room at the collection of discarded glasses of water.,\"move onto the couch, listening.\",try to push each other in a blanket.,lie unconscious.,,gold0-orig,pos,pos,pos,pos,n/a,\"As the water spills onto its shoulder, an angry red wound erupts in its green gray skin.\",People\nlsmdc1005_Signs-5152,10235,\"Someone comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck. He\",\"pulls the bathroom door closed, does up his shirt cuff buttons and puts on his watch.\",pulls up the cab of a cinema cafe and walk him towards the entrance.,\"opens the door to the luxury apartment building, looking tough in black.\",is using a pair of clippers in the supply bag with all of them.,flings an arm around someone's backside.,gold0-orig,pos,unl,unl,unl,unl,\"Someone comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck.\",He\nlsmdc1005_Signs-5152,10234,The door to the on suite bathroom is ajar. Someone,\"comes out of the bathroom dressed in black trousers and shirt, a white clerical collar around his neck.\",\"lifts up the barbells and examines them carefully, then jogs up to the side of the closet.\",opens the door and goes inside.,stands in the corner and sees someone still in the gym.,,gold0-orig,pos,unl,unl,unl,n/a,The door to the on suite bathroom is ajar.,Someone\nlsmdc1005_Signs-5152,10228,\"The alien takes deep, difficult breaths. Someone\",hurries out into the garden and crouches down by people.,breaks the curtain in.,has last his handkerchief into an awkward can.,remains face the groin.,sucks in a pipe and answers his cell.,gold1-orig,pos,unl,unl,unl,unl,\"The alien takes deep, difficult breaths.\",Someone\nlsmdc1005_Signs-5152,10226,\"The creature topples over, landing on his back and knocking against a small sideboard. The broken head of the bat\",\"lies on the floor, shards of glass around it.\",flies away from the cloud.,hits a blossoming tree.,swats someone into the trunk.,are on the edge.,gold0-orig,pos,unl,unl,unl,unl,\"The creature topples over, landing on his back and knocking against a small sideboard.\",The broken head of the bat\nlsmdc1005_Signs-5152,10227,\"The broken head of the bat lies on the floor, shards of glass around it. The alien\",\"takes deep, difficult breaths.\",lifts the glass to the glass of two as he walks.,glances up at the receptionist sitting in her bed.,stops before the van.,,gold0-orig,pos,unl,unl,pos,n/a,\"The broken head of the bat lies on the floor, shards of glass around it.\",The alien\nlsmdc1005_Signs-5152,10232,Early morning sunshine floods the lawn. The light brown curtains,flap in the breeze like loosened sails.,gather on the taj wall.,seem to be present and there is a little more as we talk.,\"blows the wind, revealing people other ornate wooden buildings.\",crosses the scene and wraps her arms around it.,gold0-orig,pos,unl,unl,unl,unl,Early morning sunshine floods the lawn.,The light brown curtains\nlsmdc1005_Signs-5152,10233,The board across another window in the room remain intact. And large flakes of fresh white snow,drift down outside the repaired windows of the room.,float up out on the scene.,float from the craft.,swarm in the dark behind a boy walking dead.,float across the street.,gold0-orig,pos,unl,unl,unl,unl,The board across another window in the room remain intact.,And large flakes of fresh white snow\nlsmdc1005_Signs-5152,10220,\"Someone turns to someone in astonishment. On the veranda, someone\",looks back into the living room through a broken window as someone heads out onto the lawn.,is staring gravely out of his bedroom.,stands several paces ahead of her.,leans in close as someone's face dashes forward.,,gold0-orig,pos,pos,pos,pos,n/a,Someone turns to someone in astonishment.,\"On the veranda, someone\"\nlsmdc1005_Signs-5152,10216,Someone strikes the creature in its abdomen. It,\"falls into a side table, knocking over a glass of water.\",settles against the wall of someone's room.,swings into someone's arms.,lifts it as it soars and loses its fake wings.,,gold0-orig,pos,unl,unl,pos,n/a,Someone strikes the creature in its abdomen.,It\nlsmdc1005_Signs-5152,10212,\"Someone turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother. He\",turns back around to stare with stern determination at the alien.,\"leaps down to the ledge and swings his leg up against his, his butt illuminated with firelight.\",sidles someone on the shoulder toward the morgul.,reaches his dead nose and opens his eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone turns slowly from the creature to face someone, spotting the baseball bat in its rack mounted on the wall by his brother.\",He\nlsmdc1005_Signs-5152,10219,People stare around the room at the collection of discarded glasses of water. Someone,turns to someone in astonishment.,cia agents file in.,opens the paper to reveal a private file.,shields her eyes from each side.,,gold1-orig,pos,unl,unl,pos,n/a,People stare around the room at the collection of discarded glasses of water.,Someone\nlsmdc1005_Signs-5152,10230,\"Someone, his eyes closed, cradles his limp son. Someone\",presses someone's neck and recoils.,lets go of someone's spear.,\"climbs up the grand staircase and reclines, staring off at someone.\",trades a glance on the spot.,watches as the ambulance rounds a halt in a diner.,gold1-orig,pos,unl,unl,pos,pos,\"Someone, his eyes closed, cradles his limp son.\",Someone\nlsmdc1005_Signs-5152,10222,Someone swings the bat at glasses on the coffee table. The alien,recoils as its skin is splashed with liquid.,grabs a lamp post and goes down a boom.,stops him from swerve.,gets back in the pool.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone swings the bat at glasses on the coffee table.,The alien\nlsmdc1005_Signs-5152,10224,Someone prepares for another strike. He,slams the bat into the alien.,sits on the basement's elevated platform.,remembers the sword back at someone's chest.,'s a first man with the sword up.,kicks and kicks the ball.,gold1-reannot,pos,unl,unl,unl,unl,Someone prepares for another strike.,He\nlsmdc1005_Signs-5152,10213,Its small eyes glowing green in their sunken sockets. Someone,takes the bat down.,\"disappear from view as the limbs part, screwing one.\",\"can still face him suddenly, but does n't think only they would do this for a few seconds.\",watches him exit the mansion.,\"leaps toward marley, lying down in it.\",gold1-reannot,pos,unl,unl,unl,unl,Its small eyes glowing green in their sunken sockets.,Someone\nlsmdc1005_Signs-5152,10214,Someone takes the bat down. The alien,lowers its hand over someone's face.,throws it out of the ice.,is dragged away from someone.,walks slowly past the biker.,escapes over the ground.,gold0-reannot,pos,unl,unl,pos,pos,Someone takes the bat down.,The alien\nanetv_99Mk5a8Tvyk,5519,\"There are several other people in that park with their dogs, sitting under canopies. The man\",is throwing a frisbee for the dog to fetch.,get into the back of the car and continues snowboarding.,\"ground a little band, and the fun is practicing playing again with these dogs.\",in brown talks to the camera after the scene while ending a throw.,\"stands, picks up the basket, throws it and holds it up as he walks down the yard.\",gold0-orig,pos,unl,unl,unl,unl,\"There are several other people in that park with their dogs, sitting under canopies.\",The man\nanetv_99Mk5a8Tvyk,5518,There's a man wearing a red hat and a black shirt training and playing with his dog in a dog park. There,\"are several other people in that park with their dogs, sitting under canopies.\",people chases the dog holding a man and a dog running up in a field and with the dog.,then comes one effect of a big walk in several locations and enter a yard.,\"a like leotards begins spinning the dog, sometimes spinning around and doing tricks in sped up way out to the alley.\",dog is riding on the leash again and he is using the dog to sit on his bumper.,gold0-orig,pos,unl,unl,unl,unl,There's a man wearing a red hat and a black shirt training and playing with his dog in a dog park.,There\nanetv_99Mk5a8Tvyk,5523,The man also throws a ball to the dog for him to fetch. The man,lifts the dog up and walks away with it.,throws frisbees with his frisbee while standing on the right side.,continues to mop the horse and cuts the grass in half.,throws the ball backwards on both sides of the court.,,gold1-orig,pos,unl,unl,unl,n/a,The man also throws a ball to the dog for him to fetch.,The man\nanetv_99Mk5a8Tvyk,5521,The dog is running around and fetching the Frisbee for its owner. The dog,jumps up high to catch the frisbee.,jumps up and throws the frisbee to the dog.,then blows with a candle as the friend man examines it.,drops to the ground and shows more movement.,,gold1-orig,pos,unl,unl,pos,n/a,The dog is running around and fetching the Frisbee for its owner.,The dog\nanetv_99Mk5a8Tvyk,5520,The man is throwing a Frisbee for the dog to fetch. The dog,is running around and fetching the frisbee for its owner.,gives him the dog as he returns with the man.,is trying to get the man off his feet.,runs back sedately across the counter as a dog runs on the beach.,picks up his dog and puts them on the mouse.,gold0-reannot,pos,unl,unl,unl,unl,The man is throwing a Frisbee for the dog to fetch.,The dog\nanetv_99Mk5a8Tvyk,5522,The dog jumps up high to catch the Frisbee. The man also,throws a ball to the dog for him to fetch.,brushes the dog with the frisbee.,catches the frisbee with a dog toy.,uses a frisbee to catch the frisbee.,throws frisbees at several bystanders.,gold0-reannot,pos,unl,unl,unl,unl,The dog jumps up high to catch the Frisbee.,The man also\nanetv_ma9R2AjCRZE,10637,Two sumos are wrestling in a big green field in a competition while people are taking pictures of them. referee,decide the winner and rise their hands.,is walking behind people.,fells in the middle of the ring trying to win the ring.,shows his back standing and shaking his head as referee talks.,continue to swing them on their shoulders.,gold0-orig,pos,unl,unl,unl,unl,Two sumos are wrestling in a big green field in a competition while people are taking pictures of them.,referee\nanetv_ma9R2AjCRZE,7848,They engage in a wrestling match togheter. They,push and pull as people watch.,give the other a high five.,demonstrate a demonstration of the cat swings.,sit forward watching the video.,,gold1-orig,pos,unl,unl,unl,n/a,They engage in a wrestling match togheter.,They\nanetv_2Q0WGQbJbso,12796,A person plays a violin in front of a huge crowd of people. The people,give him a standing ovation at the end.,finish playing the instruments together as the crowd claps.,jump around the lake and smiles while people talk to the camera.,continue fencing with one another while the crowd continues to sing.,,gold0-reannot,pos,unl,unl,unl,n/a,A person plays a violin in front of a huge crowd of people.,The people\nanetv_h0R04AFnor4,7935,A person touches the skin with a green light while cleaning the area. The person,clean the leg with cotton.,scrubs the large ski with red snow.,puts cream on a brush and covers it's ears.,attaches the blue paw over the equipment.,parts the exterior of a black car.,gold0-orig,pos,unl,unl,unl,unl,A person touches the skin with a green light while cleaning the area.,The person\nanetv_h0R04AFnor4,7936,The person clean the leg with cotton. The person,continues applying the green light.,stirs and vacuums his nails.,fill the glass using soap.,shave their legs with a machine.,applies a soap to the floor.,gold1-reannot,pos,unl,unl,pos,pos,The person clean the leg with cotton.,The person\nanetv_BK8yiRJkfcU,8882,A large arena is seen with a person running by and pointing to the camera. Several shots,are shown of the athlete playing football and leads into him standing.,are shown of the hat as well as the man put on the area.,are shown of people knitting gear and close to the camera as well as several clips of people practicing jumping off in the distance.,are shown of people walking down a casino and singing as well as speaking to their diplomas.,are seen of people riding horses through a city.,gold0-reannot,pos,unl,unl,unl,unl,A large arena is seen with a person running by and pointing to the camera.,Several shots\nlsmdc3089_XMEN_FIRST_CLASS-43661,19042,\"She runs to the crashed x - jet. Onboard, she\",radios the american ship.,grabs his ring and dials.,ads items over the letters.,talks into a larger file.,waddles into the scene.,gold0-orig,pos,unl,unl,unl,unl,She runs to the crashed x - jet.,\"Onboard, she\"\nlsmdc3089_XMEN_FIRST_CLASS-43661,19039,The triple - barreled cannons aim at the shore. Someone,\"lowers his fingertips from his temple, breathing heavily.\",disintegrates a large fire - like wave.,plows through the older man as someone climbs up into the water.,holds up a knife that was loaded into a sack.,fires in the chopper.,gold1-orig,unl,unl,unl,unl,unl,The triple - barreled cannons aim at the shore.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19028,The helmet descends into someone's hands. Someone,puts on the helmet.,enters and looks down.,leans back on his elbows to keep his balance.,\"grabs someone, then hurries over to the cleared path.\",\"falls over him, helpless.\",gold0-orig,pos,unl,pos,pos,pos,The helmet descends into someone's hands.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19031,\"In the x - jet, someone breathes strenuously. Someone\",looks on behind him.,lies on the roof.,puts on his tee - shirt.,'s friends stroll nearby.,,gold1-orig,pos,unl,unl,unl,n/a,\"In the x - jet, someone breathes strenuously.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19071,\"Someone, someone, and the cyclone master join someone and someone. They\",\"stand in a line, all holding hand.\",lift their heads and hands them down to someone.,\"walk past someone, who holds out the letter.\",stop by the curb in front of the car door.,spin in circles toward the stage.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, someone, and the cyclone master join someone and someone.\",They\nlsmdc3089_XMEN_FIRST_CLASS-43661,19034,Now the coin emerges from the back of the villain's head. Someone's parted lips and glistening eyes,show his gaze to be strangely tense and tranquil.,fill it with tears.,remain on his form.,spot a big drop to his upper cheek.,\", someone raises both hands and walks forward, the lid falls from the burner and their eyes float sideways.\",gold0-orig,pos,unl,unl,unl,unl,Now the coin emerges from the back of the villain's head.,Someone's parted lips and glistening eyes\nlsmdc3089_XMEN_FIRST_CLASS-43661,19063,\"Someone addresses the other mutant. Someone, someone, someone and someone\",look on as one group.,\"step into the car, running along the corridor and into the roadway.\",hurry outside.,fight each other as the general slowly hurries into the back hall and flees.,,gold0-orig,pos,unl,pos,pos,n/a,Someone addresses the other mutant.,\"Someone, someone, someone and someone\"\nlsmdc3089_XMEN_FIRST_CLASS-43661,19070,\"Someone rises and takes someone's hand. Someone, someone, and the cyclone master\",join someone and someone.,the door's office.,him into the fray.,kneel in their compartment.,emerge to measure the distance of someone.,gold1-orig,pos,unl,unl,pos,pos,Someone rises and takes someone's hand.,\"Someone, someone, and the cyclone master\"\nlsmdc3089_XMEN_FIRST_CLASS-43661,19046,\"He peers at them, his eyes framed by the helmet. All of the missiles\",remain suspended in the sky.,fly back and forth as he raps into the hole in a split.,seems to advance as it runs.,are mounted with drug explosions.,are identified for instant control.,gold0-orig,pos,unl,unl,unl,pos,\"He peers at them, his eyes framed by the helmet.\",All of the missiles\nlsmdc3089_XMEN_FIRST_CLASS-43661,19053,As the American admiral and Russian captain observe resignedly. Someone,fires a bullet at someone's helmet.,offers a russian then marches someone at a map in his office.,continues to command themselves.,\"uses a hat, he halts toward the people.\",,gold0-orig,pos,unl,pos,pos,n/a,As the American admiral and Russian captain observe resignedly.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19029,Someone puts on the helmet. He,takes two steps toward someone and tilts his head.,blows his whistle and she blows it.,\"finds the watch controls, with a happy smile.\",watches as the engineer reaches over and pulls someone close.,,gold0-orig,pos,unl,unl,unl,n/a,Someone puts on the helmet.,He\nlsmdc3089_XMEN_FIRST_CLASS-43661,19056,Someone hurries to someone and holds a hand over the wound. Someone,\"grimaces as someone extracts the bullet, which rolls into his palm.\",tears at her.,looks deep in thought.,glares at his reflection.,,gold0-orig,pos,unl,pos,pos,n/a,Someone hurries to someone and holds a hand over the wound.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19026,The girder trapping someone falls and he steps around the villain to face him. Someone,\"stands frozen, arm outstretched, reaching for his helmet.\",yells from a high kick.,smooths his arm behind his back then draws back to watch on.,finds the envelope with his gun.,lifts it above his head and cowers surface onto the ice.,gold0-orig,pos,unl,unl,unl,unl,The girder trapping someone falls and he steps around the villain to face him.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19057,\"Someone grimaces as someone extracts the bullet, which rolls into his palm. Over the sea, the rockets\",\"fall from the sky, some bursting in mid - air.\",are lined with narrow wooden obstacles.,fly in the air sending soaring upwards.,swarm at the devices.,hit the growing titanic.,gold0-orig,pos,unl,pos,pos,pos,\"Someone grimaces as someone extracts the bullet, which rolls into his palm.\",\"Over the sea, the rockets\"\nlsmdc3089_XMEN_FIRST_CLASS-43661,19032,Someone looks on behind him. The coin,approaches someone's forehead.,glisten in his ear.,swings repeatedly at someone who crumples to the floor watching him.,turns but the last go out.,drops from the paper.,gold1-orig,pos,unl,unl,unl,pos,Someone looks on behind him.,The coin\nlsmdc3089_XMEN_FIRST_CLASS-43661,19035,\"On the beach, someone and someone step outside. Someone's body\",levitates out of the submarine.,drifts following a limb blocking deeper it.,returns to rest bare.,\"falls limp as they mustached, who kisses a bride's hand, then chats in a bathrobe.\",flattens stone as someone stands near a door.,gold1-orig,unl,unl,unl,unl,unl,\"On the beach, someone and someone step outside.\",Someone's body\nlsmdc3089_XMEN_FIRST_CLASS-43661,19064,\"Someone, someone, someone and someone look on as one group. Someone\",\"peers in someone's direction, then reaches out to her.\",bows proudly and tosses.,\"is watching her board across the deck, crew at the ready.\",leads someone up to the hut and clutches his unconscious brother in his arms.,pats her sister's belongings.,gold0-orig,pos,unl,unl,pos,pos,\"Someone, someone, someone and someone look on as one group.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19030,\"Across the room from someone, someone holds up the Nazi coin. Someone\",keeps a finger to his temple.,places the key above the bow.,closes her eyes and knits her brow.,brings someone a full view of staff.,,gold0-orig,pos,unl,unl,pos,n/a,\"Across the room from someone, someone holds up the Nazi coin.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19036,Someone's body levitates out of the submarine. Someone,lets him drop onto the sand.,\"crawls beside someone who drops husband, arm - face on light.\",pins a rod onto someone's knee.,moves sticking a figure behind them.,speeds past the busy terminal.,gold1-orig,pos,unl,unl,unl,unl,Someone's body levitates out of the submarine.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19060,\"Someone looks at someone, who lies in his arms. He lowers his hand and someone\",drops to her knee.,releases the canoe on.,trades a look to people out of the corner of his eye.,swigs from a bottle stick.,,gold1-orig,unl,unl,unl,unl,n/a,\"Someone looks at someone, who lies in his arms.\",He lowers his hand and someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19049,The rockets fall from the sky. Someone,reaches for someone's helmet.,dives into a blue pool of green water.,stabs a serpentine creature in the wings towards the fire.,reels helplessly as the nazi flare soars.,is dragged away with on crutches.,gold1-orig,pos,unl,unl,unl,unl,The rockets fall from the sky.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19055,Someone deflects each bullet fired by her and one strikes someone in the back. The wounded mutant,\"hits the sand, belly down.\",flies over to the witch and shoots.,drops above his face beaten by metal.,\"faces the audience, who launches their fists.\",uses the spear as someone fires an arrow to kill someone.,gold0-orig,pos,unl,unl,unl,unl,Someone deflects each bullet fired by her and one strikes someone in the back.,The wounded mutant\nlsmdc3089_XMEN_FIRST_CLASS-43661,19054,Someone fires a bullet at someone's helmet. Someone deflects each bullet fired by her and one,strikes someone in the back.,\"mad, hitting each other accidentally and aiming away, the gang's guns disappear, missing.\",strikes the meeting with number nine.,strikes him with his burning key.,partner easily jumps up into the air.,gold0-orig,pos,unl,unl,unl,pos,Someone fires a bullet at someone's helmet.,Someone deflects each bullet fired by her and one\nlsmdc3089_XMEN_FIRST_CLASS-43661,19045,Someone raises a hand and the rockets stop in mid - air within a 100 feet of the shore. He,\"peers at them, his eyes framed by the helmet.\",slides down the stairs three times before leaping onto the roof.,leads someone into a dark tank.,reaches into its pocket then turns toward people from taking the sphere towards him.,climbs off the mostly black roof and closes the window to as the ark slides open.,gold0-orig,pos,unl,unl,unl,unl,Someone raises a hand and the rockets stop in mid - air within a 100 feet of the shore.,He\nlsmdc3089_XMEN_FIRST_CLASS-43661,19040,\"Someone lowers his fingertips from his temple, breathing heavily. He\",looks at someone and nods.,\"stares at one bug, then hits it against an 8 wall.\",clutches his father's arm.,\"bows open his head, and rapidly rips the locket away from someone's ear pocket.\",looks down at his bloody hands.,gold1-orig,pos,unl,unl,unl,pos,\"Someone lowers his fingertips from his temple, breathing heavily.\",He\nlsmdc3089_XMEN_FIRST_CLASS-43661,19061,Someone mournfully tightens his jaw. Someone,holds his tender gaze.,yawns as someone resumes his rifle.,\"looks up toward someone, who sits down in front of the ex - artist someone.\",musses the top of his head.,,gold1-orig,pos,unl,unl,unl,n/a,Someone mournfully tightens his jaw.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19058,\"In slow motion, both the Russians and Americans celebrate. Someone\",runs over to someone.,tries to kick and strikes someone.,wavers on his phone.,raises his arms overhead.,is a wealthy young middle age.,gold1-orig,pos,pos,pos,pos,pos,\"In slow motion, both the Russians and Americans celebrate.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19033,As someone expels strained breaths. Someone,stays focused on someone.,\"spins, pacing between his two knees.\",gets on a back seat and sits at a black stretch.,rips up her pants.,lashes out as the doctor approaches.,gold1-orig,pos,unl,unl,unl,pos,As someone expels strained breaths.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19052,The American and Russian commanders each watch them returning. As someone,punches someone in the face.,eyes several red tinted glasses staring at him.,\"ducks down the bar, spar readies his superior.\",heads towards the entrance.,\"leans down, people start their run.\",gold0-reannot,pos,unl,unl,pos,pos,The American and Russian commanders each watch them returning.,As someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19067,She looks to someone again. Someone,kneels down beside someone.,enters the tent sitting in a small patch of rock.,\"looks uneasily at someone, his to black.\",follows beside the others.,shoots her a glance.,gold1-reannot,pos,unl,unl,pos,pos,She looks to someone again.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19037,\"With open arms, someone levitates down from a blast hole near the top of the submarine. Someone and someone\",step forward as he lands on the beach.,ride down the banks of an intersecting link between line two.,take her carcass out of her by the arms.,shoot the frog at people.,run out of the petrol tank.,gold1-reannot,pos,unl,unl,unl,unl,\"With open arms, someone levitates down from a blast hole near the top of the submarine.\",Someone and someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19048,Someone and someone stand before the hovering missiles. As someone slowly,twists his left hand.,\"swings a remote, we glimpse that the face.\",\"leaps into the dark, an alien man.\",\"removes the gun - - seven third, his weapons precision, the others are able to have a contact on it.\",takes a step near the group.,gold0-reannot,pos,unl,unl,unl,pos,Someone and someone stand before the hovering missiles.,As someone slowly\nlsmdc3089_XMEN_FIRST_CLASS-43661,19044,Our view follows the rockets. Someone raises a hand and the rockets,stop in mid - air within a 100 feet of the shore.,explode across someone's.,are drawn to the roof and roof of the van.,shoot through several brisk ravine.,glides up unto the magnificent gold lawns and towering statue.,gold0-reannot,pos,unl,unl,unl,unl,Our view follows the rockets.,Someone raises a hand and the rockets\nlsmdc3089_XMEN_FIRST_CLASS-43661,19065,\"Someone peers in someone's direction, then reaches out to her. She\",\"limps forward, leaving someone and the others behind.\",frowns and sucks her fist.,\"tries to laugh, but someone opens the windscreen in a fireball.\",\"map outlines each waiting, stories - accomplishment.\",\"eyes lower to a lovely patient, who gazes forlornly at the towering vessel.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone peers in someone's direction, then reaches out to her.\",She\nlsmdc3089_XMEN_FIRST_CLASS-43661,19027,\"Someone stands frozen, arm outstretched, reaching for his helmet. The helmet\",descends into someone's hands.,fires a powerful burst of flame.,moves on to the hillside.,reaches down and buckles.,is attached to the firebolt.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone stands frozen, arm outstretched, reaching for his helmet.\",The helmet\nlsmdc3089_XMEN_FIRST_CLASS-43661,19043,The American commander peers sternly. The mutants,watch from the shore.,stretch out from a seats.,points a flare as a picture.,gallop to his horse.,hold a line up.,gold0-reannot,pos,unl,unl,unl,unl,The American commander peers sternly.,The mutants\nlsmdc3089_XMEN_FIRST_CLASS-43661,19069,\"She kisses his forehead, then looks to someone. Someone\",rises and takes someone's hand.,is washing his face in a sink.,stares at his sister who sits at a laptop.,\"stares at him, his eyes wide.\",eyes someone again then lowers his head and lowers his gaze.,gold0-reannot,pos,pos,pos,pos,pos,\"She kisses his forehead, then looks to someone.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43661,19051,\"Someone elbows him and sends the other mutants flying across the beach. As he holds someone down, he\",regains control of the missiles.,swims to the lip of the boat.,\"hops up on the railing they reach the side of the wharf, his last time 'splash.\",helps someone up as he races like a elf and seizes someone.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone elbows him and sends the other mutants flying across the beach.,\"As he holds someone down, he\"\nanetv_NjTk2naIaac,18479,A group of adults are sitting in bumper cars. the cars all,start at the same time.,get out of the cars.,begin to dirt around the cars.,look around and bumping into each other.,look around each other.,gold0-orig,pos,unl,unl,unl,unl,A group of adults are sitting in bumper cars.,the cars all\nanetv_NjTk2naIaac,18480,The cars all start at the same time. the adults then,begin to chase and bump each other.,quickly slide the slide down the hill before riding back under the water again.,\"drives with the other boys, and finally the bikes continue jumping and falling down.\",talks to someone again.,,gold0-orig,pos,unl,pos,pos,n/a,The cars all start at the same time.,the adults then\nanetv_NjTk2naIaac,17100,A man is seen spinning around a ride and leads into people sitting in bumper car seats. The people then,ride around playing bumper cars while the camera man spins in circles and leaves once done.,ride around the object as well as people friends pushing the cars.,drive around a mountain and eventually hard in the snowy terrain.,walk back and fourth on the stilts as others watch on the side while one man drives ahead.,go back in on the cars while paddle up and down as well as the camera shows the passing scenery.,gold1-orig,pos,unl,unl,unl,unl,A man is seen spinning around a ride and leads into people sitting in bumper car seats.,The people then\nanetv_NjTk2naIaac,17101,The people then ride around playing bumper cars while the camera man spins in circles and leaves once done. More people,are seen hugging and talking to the camera and panning around a theme park.,are seen shoveling snow in the snow as well as washing their car down the street.,are seen walking on a beach showing people watches.,are shown on screen on the side and ends with some cars running.,are seen wandering around a circle and shown outside away in the middle.,gold1-reannot,pos,unl,unl,pos,pos,The people then ride around playing bumper cars while the camera man spins in circles and leaves once done.,More people\nanetv_EwoxOKwqUPI,1604,The woman scores a shot and celebrates. The two players,hug each other and raise the woman's arm in victory.,run towards the woman down from the grassy field.,are back to the camera.,ram the black wall.,hug each other with their arms up.,gold0-orig,pos,unl,unl,unl,pos,The woman scores a shot and celebrates.,The two players\nanetv_EwoxOKwqUPI,1602,A woman plays a game of beer pong with a short man dressed as a leprechaun. A dj,plays spins a pair of turntables on stage for the crowd.,shows shots of underwater parade and people sailing.,holds a ping pong saucer while the man sit behind a table.,prepares to play volleyball with a young player.,,gold0-reannot,pos,unl,unl,pos,n/a,A woman plays a game of beer pong with a short man dressed as a leprechaun.,A dj\nanetv_EwoxOKwqUPI,1603,A dj plays spins a pair of turntables on stage for the crowd. The woman,scores a shot and celebrates.,plays the harmonica in front of her then pauses.,plays a violin and lies in the air.,\"waves to the audience, does push ups, and is drinking.\",,gold0-reannot,pos,unl,unl,pos,n/a,A dj plays spins a pair of turntables on stage for the crowd.,The woman\nanetv_44htu_ovvLs,3919,A woman is seen looking off into the distance followed by shots of her riding a horse and looking off into the distance. The woman,continues riding around on the horse and ends with her walking away and waving to the camera.,continues driving around the track and ends by holding up the camera to her face while the camera zooms in on them.,continues to ride the horse all along her body while holding herself back and fourth by moving herself on the horse and arms away.,continues to jump along the horse with her hand and the girl continues smiling the fight and ends by showing off her horse.,continues to perform and use the horses mane and show various dogs interacting with the dogs.,gold0-reannot,pos,unl,unl,unl,unl,A woman is seen looking off into the distance followed by shots of her riding a horse and looking off into the distance.,The woman\nanetv_iA2Q4t-o58w,16774,\"One does several back flips, then a group begins throwing girls into the air, practicing flips. Several clips\",are shown of people doing gymnastics and falling down.,are shown of the divers doing impressive flips and tricks in backward flips move sideways.,slide down the field past each other.,\"are shown of kids falling backwards, jumping and flipping.\",,gold1-orig,pos,unl,unl,pos,n/a,\"One does several back flips, then a group begins throwing girls into the air, practicing flips.\",Several clips\nanetv_iA2Q4t-o58w,16772,\"Several blocks fall, forming a black and white picture of two girls. The girls\",are shown in a gymnasium.,\"run for a run, racing to get the winner.\",finish their playing and shake hands.,crouch down and fall on top of the bar.,are attempting to climb the monkey bars.,gold1-orig,pos,unl,unl,unl,pos,\"Several blocks fall, forming a black and white picture of two girls.\",The girls\nanetv_iA2Q4t-o58w,16773,\"The girls are shown in a gymnasium. One does several back flips, then a group\",\"begins throwing girls into the air, practicing flips.\",of people run and build up a ballet routine.,completes several purple mats.,of girls stands at the end.,,gold0-orig,pos,unl,unl,pos,n/a,The girls are shown in a gymnasium.,\"One does several back flips, then a group\"\nanetv_iA2Q4t-o58w,12681,A girl is seen in the tub as well as back at the gym getting hurt and playing with others. More clips,are shown of people performing gymnastics and falling out of their tricks or hurting another.,are shown of people playing bar together while people sit around her while trying to help her up.,are shown of people working roller in the storage gear.,are shown of people playing and sometimes their hands and hands around as they go.,are shown of the man playing the flute when standing and looking back to watch.,gold0-reannot,pos,unl,unl,unl,pos,A girl is seen in the tub as well as back at the gym getting hurt and playing with others.,More clips\nanetv_KxAxMZ6dYa4,11959,People gathered around a shuffleboard begin playing. a few people,speak to the camera as the other people play shuffle board.,are trying to crawl by singing throughout the video.,\"are seen hitting a ball around the field, hitting the ball around the areas while people watch in the side.\",occasionally seen playing instruments and smiling towards the camera while the camera captures their movements.,dance in the area while hugging.,gold0-orig,pos,unl,unl,unl,unl,People gathered around a shuffleboard begin playing.,a few people\nanetv_KxAxMZ6dYa4,11958,An anchorman beings talking to the camera. People,gathered around a shuffleboard begin playing.,turn quickly down a snowy hill.,are in rafts performing a choreography.,are sitting to bed together wearing a blue skirt.,are on a lit stage in the dirt track.,gold0-orig,pos,unl,unl,unl,unl,An anchorman beings talking to the camera.,People\nanetv_KxAxMZ6dYa4,10258,A group is shown outside playing a game of curling. The people,push the pucks and talk to the camera.,continue running around with the ball as well as holding the ball.,play with one another while tying up various presents.,kick the ball back and fourth back and fourth.,play kicking the ball as far as they can.,gold1-reannot,pos,unl,unl,unl,unl,A group is shown outside playing a game of curling.,The people\nanetv_RrEJ2-TfWCI,10262,Two men are seen speaking to the camera holding lacrosse sticks. The men,pretend to hit and push one another while still speaking.,\"begin arm wrestling, one by one.\",begin playing ping pong and smiling to one another and speaking.,inspect them closely and stop as they talk.,,gold0-orig,pos,unl,unl,pos,n/a,Two men are seen speaking to the camera holding lacrosse sticks.,The men\nanetv_RrEJ2-TfWCI,12571,Two men are seen holding lacrosse sticks and speaking to the camera with one holding a stick. The men,demonstrate how to properly push another player with sticks and hitting the other person with a stick.,continue playing with one another while a large group of them play and move against one another.,continue to push the puck around while their movements are shown again in slow motion and one can not speak to the camera.,continue to play the ball back and fourth with one another while the camera pans around a player drinking.,continue hitting the ball back and fourth while the camera pans in the distance.,gold0-orig,pos,unl,unl,unl,unl,Two men are seen holding lacrosse sticks and speaking to the camera with one holding a stick.,The men\nanetv_RrEJ2-TfWCI,10263,The men pretend to hit and push one another while still speaking. They,continue to demonstrate moves while looking to the camera.,continue to dance up and across the yard as fast as they can.,continue to spin around the room together and end by turning off a camera.,throw their hand out and continue playing with one another.,continue hitting the balls around the head.,gold0-orig,pos,unl,unl,unl,unl,The men pretend to hit and push one another while still speaking.,They\nanetv_gmnwqOPcOo0,1566,A woman breaks a Guiness book of world records by hula hooping with 107 hula hoops in front of an audience and then giving an interview. The interior of an event showcase,is shown including the signs involved.,chefs perusing deal activities.,professional festival gymnast is shown also performing with a narrow chair towards it.,\"is shown, while people continue to enjoy.\",is shown from various perspective on women who look out and down a platform.,gold0-orig,pos,unl,unl,pos,pos,A woman breaks a Guiness book of world records by hula hooping with 107 hula hoops in front of an audience and then giving an interview.,The interior of an event showcase\nanetv_gmnwqOPcOo0,875,She starts to hula hoop with all of them. She,shakes a mans hand.,does n't know how to make the drink.,lands on her knees and in her arms.,knocks a man back shots of her.,files out then shatters the yellow balls.,gold1-orig,pos,unl,unl,unl,unl,She starts to hula hoop with all of them.,She\nanetv_gmnwqOPcOo0,876,She shakes a mans hand. She,is talking to a camera.,whacks him with his hands.,shuts her eyes and buries her face in a pillow.,hands someone a cellphone.,,gold0-orig,pos,unl,unl,pos,n/a,She shakes a mans hand.,She\nanetv_gmnwqOPcOo0,873,A woman is stacking up hula hoops around her. She,lifts them up with the help of another woman.,sways flipping in the air two times.,keeps cutting a second piece of furniture as well as another child tossing a piece of paper down and landing to his feet.,finishes playing a flute.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is stacking up hula hoops around her.,She\nanetv_gmnwqOPcOo0,874,She lifts them up with the help of another woman. She,starts to hula hoop with all of them.,gets up and chops something.,swivels her feet backwards going another and forward as she can.,continues to nail the course with them.,takes a handful of fruit from their tongue.,gold0-reannot,pos,unl,unl,unl,unl,She lifts them up with the help of another woman.,She\nanetv_gmnwqOPcOo0,1567,The interior of an event showcase is shown including the signs involved. A woman,piles hula hoops around another woman on a red and white stage.,\"goes into a big gym, doing various exercises and various moves to jumping speed.\",\"enters a suite and approaches the shoreline, while a woman and a man, dancing together.\",is practicing gymnastics she does a gymnastics routine on a balance beam in a gym.,prepare to play outside as people skate boards together on the show.,gold0-reannot,pos,unl,unl,unl,unl,The interior of an event showcase is shown including the signs involved.,A woman\nanetv_cxIfpBvuk0E,17445,She is saying something to the camera as she smokes. She,thumps her ashes and continues to smoke.,tries to solve her cube.,shaves her head with some clippers.,\"continues scraping snow off, taking tango shots.\",,gold0-orig,pos,unl,unl,unl,n/a,She is saying something to the camera as she smokes.,She\nanetv_cxIfpBvuk0E,17447,She turns around and then back to smoking. She,sticks her tongue out.,brushes water off the side.,runs out of the parking lot.,is dressed in a hospital gown and black sweater cut and black.,gets up and skips away with the box.,gold1-orig,pos,unl,unl,unl,pos,She turns around and then back to smoking.,She\nanetv_cxIfpBvuk0E,17449,She pans over to a picture of a crazy looking woman and tries to imitate it. She,continues to smoke and talk to the camera.,suddenly turns the water again and raises back - laughs.,\"tapestry slashing at one of someone's names, but back remains perches on the end of the tape.\",continues mixing the ingredients in a bowl while throwing it into a cup and presenting it for the camera.,,gold0-orig,pos,unl,unl,pos,n/a,She pans over to a picture of a crazy looking woman and tries to imitate it.,She\nanetv_cxIfpBvuk0E,17443,An arm comes into view and the girl smells it. She smokes some more and,blows smoke as she plays with her hair.,grinds it down.,shows us her method.,pulls the ski away.,looks around in frustration.,gold1-orig,pos,unl,unl,unl,pos,An arm comes into view and the girl smells it.,She smokes some more and\nanetv_cxIfpBvuk0E,17451,She makes faces at the camera. She,gets up close to the camera as someone walks behind her.,skateboards in a long very dark road.,throws another item at the screen.,places the lights all over the floor.,,gold0-orig,pos,unl,pos,pos,n/a,She makes faces at the camera.,She\nanetv_cxIfpBvuk0E,17444,She smokes some more and blows smoke as she plays with her hair. She,is saying something to the camera as she smokes.,rolls across the chair to face the clown.,waits for her to have to pick smoke out.,looks throughout the office as she talks into the camera.,turns her body towards the man.,gold1-orig,pos,unl,unl,unl,pos,She smokes some more and blows smoke as she plays with her hair.,She\nanetv_cxIfpBvuk0E,17450,She continues to smoke and talk to the camera. She,makes faces at the camera.,finishes and goes to sit up.,starts to talk on the phone and keeps walking.,continues shows the finished product.,smiles and then put her hands up.,gold0-orig,pos,unl,unl,pos,pos,She continues to smoke and talk to the camera.,She\nanetv_cxIfpBvuk0E,17446,She thumps her ashes and continues to smoke. She,turns around and then back to smoking.,then shows a painting of the tiger to recover the duration from other ballet class.,shows the gurgling pit.,the lights go out.,turns to a ladder of bowling surfaces.,gold0-orig,pos,unl,unl,unl,unl,She thumps her ashes and continues to smoke.,She\nlsmdc1010_TITANIC-77386,4867,\"Someone signs and dates the drawing, then blows on it. He\",closes his sketchbook and hands it to someone.,\"reads from the office, as he hands the man to a alex.\",finds someone sitting at the back of his tent.,frowns at his drawing.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone signs and dates the drawing, then blows on it.\",He\nlsmdc1010_TITANIC-77386,4870,She hands him the case holding the Heart of the Ocean. Someone,walks into the next room and slides the case into the safe.,glares as he runs the length of the water.,is already innocent to it.,flying as the plane rocks from the train slowly to south lion's hulls draped over the other side of the boat.,sets a descending hand on the water.,gold0-orig,pos,unl,unl,unl,unl,She hands him the case holding the Heart of the Ocean.,Someone\nlsmdc1010_TITANIC-77386,4868,\"Later, someone writes on a sheet of paper. Someone\",steps up to her.,lies back down with a blanket.,emerges from the cut and gazes downward.,takes out a stack of mail.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Later, someone writes on a sheet of paper.\",Someone\nlsmdc1010_TITANIC-77386,4871,\"Someone walks into the next room and slides the case into the safe. In the first class smoking room, someone\",\"approaches someone, who stands.\",opens the front door.,\"enters the interrogation room, holding someone's arm.\",stares into the lecture hall.,is drawing out a sea bomb.,gold1-reannot,pos,unl,unl,unl,unl,Someone walks into the next room and slides the case into the safe.,\"In the first class smoking room, someone\"\nlsmdc1055_Marley_and_me-96370,10470,Someone pulls into the driveway. There,'s a patrol car and people gathered on the street.,looks at the police card.,\"eyes someone, who's throw in a middle - aged man as he puts a beer in his lap.\",is a man in a garden tie with woman.,,gold0-orig,pos,unl,unl,unl,n/a,Someone pulls into the driveway.,There\nlsmdc1055_Marley_and_me-96370,10469,A police car drives past. Someone,pulls into the driveway.,runs into a patrol car and picks up a gas grenade.,\"leans in, outside at the gas station.\",parks up on a brick building and stalks off.,watches from a window.,gold0-orig,pos,unl,unl,pos,pos,A police car drives past.,Someone\nlsmdc1055_Marley_and_me-96370,10471,There's a patrol car and people gathered on the street. He,\"gets out of the car, holding the pup.\",is talking to the camera with a harmonica on.,grabs a wet paper sticks.,\"drives a car, then runs down the road and jumps into the snow.\",has a tray of breakfast on them.,gold0-reannot,pos,unl,unl,unl,unl,There's a patrol car and people gathered on the street.,He\nanetv_qgasVDGUw3E,6251,A truck is shown parked in a driveway with words on the front bumper. Shingles on the roof,are being detached and removed.,are set to planks along the wall.,is shown being washed off white.,are from half - dozen ways doing automatic on windows down the street.,,gold0-orig,pos,unl,unl,unl,n/a,A truck is shown parked in a driveway with words on the front bumper.,Shingles on the roof\nanetv_qgasVDGUw3E,10883,\"A red truck parks on front a house, a ladder is on the rood of the truck. A person\",is taking off damaged shingles of a roof.,dressed in black gear present a wooden training tire with a hanger on it.,takes a shot on how to make an alcoholic drink.,starts shoveling snow on someone's motorcycle.,,gold0-orig,pos,unl,unl,unl,n/a,\"A red truck parks on front a house, a ladder is on the rood of the truck.\",A person\nanetv_qgasVDGUw3E,10884,\"A person is taking off damaged shingles of a roof. Then, the person\",is nailing and gluing new shingles in the roof.,'s car is struggling to fix the roof from a house and enter the house.,walks down a bouncy new wallpaper.,continues shoveling the snow off the roof with a shovel.,\"step out on a roof to take it down, and a person one on a tool to shutter it.\",gold0-orig,pos,unl,unl,unl,pos,A person is taking off damaged shingles of a roof.,\"Then, the person\"\nanetv_Ub88_ql0B78,984,Another girl is shown doing a separate baton routine. a boy,is then shown performing on another court.,throws her cell at a pinata with a bat.,hands the ring on her neck.,sits up against a wall instructing her name before moving down.,is then shown hitting a ball with her sleeve.,gold1-orig,pos,unl,unl,unl,unl,Another girl is shown doing a separate baton routine.,a boy\nanetv_Ub88_ql0B78,983,A girl is on a basketball court performing a routine with a baton. another girl,is shown doing a separate baton routine.,walks around the bar then mounts a proper beam.,appears and smiling as she does another girl.,is joined by the first and musicians walking with people in the end her other way.,performs her routine with the baton and back to the camera.,gold0-orig,pos,unl,unl,unl,pos,A girl is on a basketball court performing a routine with a baton.,another girl\nanetv_Ub88_ql0B78,3755,The girl continues spinning and twirling around. The girl,continues spinning in different shots and leads into clips of her by herself as well as with others.,flips on the bar and dances through the judges.,throws a twirl while the end flips.,walks to a stage pit.,is doing a belly dancing routine on the end.,gold0-reannot,pos,unl,unl,pos,pos,The girl continues spinning and twirling around.,The girl\nanetv_b8eqn-GTdcc,16422,She picks up a bottle and a green rag. She,sprays the chair and starts wiping it with the rag.,wipes a rag with a rag.,\"cleans it with a towel, then scrubs it in a plastic lock tissue.\",enters the bathroom and scrubs it with the toothbrush.,\"sets the pan down and puts rollers onto the handlebars, speaks to the camera, talking again.\",gold0-orig,pos,unl,unl,unl,unl,She picks up a bottle and a green rag.,She\nanetv_b8eqn-GTdcc,1776,A woman is shown speaking to the camera and standing next to a chair. She,holds up various products and begins spraying down a chair.,continues speaking to the camera while sitting down on his back.,bends over and places her hands down and begins scrubbing her eyelashes.,gets out lotion and begins working out on the machine.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is shown speaking to the camera and standing next to a chair.,She\nanetv_b8eqn-GTdcc,16421,A woman is standing up next to a chair talking. She,picks up a bottle and a green rag.,twirls the patterns padding and beside her bed.,\"rubs her hands up and down, showing how to lift with the rope.\",puts on a gray hoodie and begins to examine it.,,gold1-orig,pos,pos,pos,pos,n/a,A woman is standing up next to a chair talking.,She\nanetv_b8eqn-GTdcc,16423,She sprays the chair and starts wiping it with the rag. She,pulls a wipe out of a bottle and wipes down the chair.,\"adds ice to the sink, lifting it to the floor.\",continues scrubbing the windows as she climbs over the surface to the surface.,comes out on a towel and washes her hands.,,gold0-orig,pos,unl,unl,pos,n/a,She sprays the chair and starts wiping it with the rag.,She\nanetv_b8eqn-GTdcc,1777,She holds up various products and begins spraying down a chair. She,wipes down the chair with a rag and presents it in the end.,uses a clamp to cut the hair and brushes it off the table.,\"sleeps on her bed, facing her parents.\",begins blow drys her hair while looking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,She holds up various products and begins spraying down a chair.,She\nanetv_3CJW0qBwwx4,6315,A man is seen kneeling down beside a car spraying a hose on the car. He,uses a sponge to clean around the car while others clean around the sides.,continues shoveling up the road as well as showing how it works.,continues speaking to the camera as well as the pump and objects.,\"takes a breath, then straightens and lowers the blade through the lenses.\",pins the dog all over the car while still speaking to the camera.,gold1-orig,pos,unl,unl,unl,unl,A man is seen kneeling down beside a car spraying a hose on the car.,He\nanetv_3CJW0qBwwx4,6316,He uses a sponge to clean around the car while others clean around the sides. More shots,are shown of them cleaning the inside as well as under the hood while the camera pans around.,are shown of the man skiing and criss screw on the bicycle as well as driving down the highway.,are shown shown of him smoking and smiling.,are shown of the description.,are shown of him cleaning a car.,gold1-orig,pos,unl,unl,unl,pos,He uses a sponge to clean around the car while others clean around the sides.,More shots\nanetv_C-M4L_WDzK8,14667,A group of women play field hockey on an outdoor field covered in grass. The women,run after a white ball on the field while holding hockey sticks.,talk to one another while the graphics advertising cheers.,kick a ball into the goal.,continue doing martial arts moves on the mounted horses.,observe from the audience.,gold0-orig,pos,unl,unl,unl,unl,A group of women play field hockey on an outdoor field covered in grass.,The women\nanetv_C-M4L_WDzK8,14668,The women run after a white ball on the field while holding hockey sticks. The red team and blue team,continue to play field hockey while a referee watches on and a guard guards the goal.,wins behind the man holding the soccer ball as he tries to congratulate them.,are scoring a goal but the batter is n't happy.,makes the ball off the far side of the gym again.,get in the net and score multiple goal while the winners receive instructions.,gold0-orig,pos,unl,pos,pos,pos,The women run after a white ball on the field while holding hockey sticks.,The red team and blue team\nanetv_wfy5UXaAVnQ,17486,\"Multiple groups battle high violent waters. At one point, the violent waters\",seem to almost topple one of the groups.,\"are shown as well as divers, from some flying scientists and vests to activities.\",are crowded across the river.,are to be thrown back by itself.,continue to bounce the water with the windy waters.,gold1-orig,pos,unl,unl,unl,unl,Multiple groups battle high violent waters.,\"At one point, the violent waters\"\nanetv_wfy5UXaAVnQ,17484,Wind blows the trees in the Grand Canyon. A group of people on a white boat,paddle away at the waters in the river.,float to the ship.,glances at them from their wands.,swims along the beach.,is heard and a head shows bubbles.,gold1-orig,pos,unl,unl,unl,unl,Wind blows the trees in the Grand Canyon.,A group of people on a white boat\nanetv_wfy5UXaAVnQ,17487,\"At one point, the violent waters seem to almost topple one of the groups. A brave, single kayaker\",paddles away at the waters.,want the hiking bark at someone.,is draped over the open balloon as he drops the grip of a large wave.,comes from the subway to a long railing.,,gold0-orig,pos,unl,unl,pos,n/a,\"At one point, the violent waters seem to almost topple one of the groups.\",\"A brave, single kayaker\"\nanetv_wfy5UXaAVnQ,17485,A group of people on a white boat paddle away at the waters in the river. Multiple groups,battle high violent waters.,perform the same thing and arrange a cake on a set of calm flame.,are directs their rafters to vault in a saucer.,of women dive in kayaks then jump with obstacles.,float around their yacht behind the kids who stand on top of rocks.,gold1-reannot,pos,unl,unl,unl,unl,A group of people on a white boat paddle away at the waters in the river.,Multiple groups\nlsmdc0013_Halloween-53568,1403,\"Someone, 18, he wears a Halloween mask and a costume. She\",giggles as the boyfriend jumps into the room.,markings an old someone 'belt with his baseball cap.,\"has only form, cocky crotch.\",takes a photograph of someone from someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone, 18, he wears a Halloween mask and a costume.\",She\nlsmdc0013_Halloween-53568,1402,\"Into the bedroom comes the sister, 18, very pretty. Someone, 18, he\",wears a halloween mask and a costume.,watches the two of her finishes up.,is someone has red dress.,\"disguise, walks in someone's bathroom.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Into the bedroom comes the sister, 18, very pretty.\",\"Someone, 18, he\"\nlsmdc0013_Halloween-53568,1404,She giggles as the boyfriend jumps into the room. They,\"kiss again, this time with more passion.\",meet by someone.,talk someone in.,are talking in the closet.,set someone on the bed.,gold0-orig,pos,unl,unl,unl,pos,She giggles as the boyfriend jumps into the room.,They\nlsmdc0013_Halloween-53568,1401,The boyfriend grabs the sister and kisses her. Into the bedroom,\"comes the sister, 18, very pretty.\",\", someone turns on a lamp.\",and digs into the wood.,\", someone watches a cop, her tv chase.\",,gold0-orig,pos,unl,unl,unl,n/a,The boyfriend grabs the sister and kisses her.,Into the bedroom\nlsmdc0013_Halloween-53568,1405,\"They kiss again, this time with more passion. He\",is a handsome young man underneath.,looks to her daughter when he's gone.,\"looks up, shooting at someone, who crawl away.\",drinks in one last time - one time.,looks about himself in awe.,gold1-reannot,pos,unl,unl,pos,pos,\"They kiss again, this time with more passion.\",He\nanetv_1Om21fCH1sI,7291,Various clips are shown of people riding around on bikes as well as sitting on bikes ready to race. Several clips,are shown of people up close as well as them riding around on bikes.,are shown of people riding together using thousands and ends with text explaining the tips and curves.,are shown of people riding around on skateboards and bumping into one another while a man speaks.,are shown of people riding around on dirt bikes and are shown bouncing around.,are shown of people fencing together as well as spins and wetting in various locations.,gold0-reannot,pos,unl,unl,unl,unl,Various clips are shown of people riding around on bikes as well as sitting on bikes ready to race.,Several clips\nanetv_5koLOwu786I,8660,The young man is wiping his hair with towel. The young man,\"is blow drying his hair, rubbing his hair with blow dry.\",starts finishing his work and arrives.,walks on with the dog in the backyard.,is washing his clothes in the sink.,,gold1-orig,pos,unl,unl,unl,n/a,The young man is wiping his hair with towel.,The young man\nanetv_5koLOwu786I,1829,\"After he grabs a silver blow dryer and continues to shake his hair until its done. As he continues, a small circle\",comes off the screen with words as the boy begins to look into the mirror.,appears and makes tattoos with their fingers.,of nothing falls around.,begins draw on the drums and pauses to show some badminton on the deck.,is shown across the screen for a brief moment in the photo row.,gold0-orig,pos,unl,unl,unl,pos,After he grabs a silver blow dryer and continues to shake his hair until its done.,\"As he continues, a small circle\"\nanetv_5koLOwu786I,8661,\"The young man is blow drying his hair, rubbing his hair with blow dry. The young boy\",is shaking his head as he blow dry his hair.,begins using his hands along underneath a table while he continues to blow dry his hair.,rubs his rags across his dryer to trim a mischievous look.,finishes combing his hair and rubs it all over it.,,gold1-reannot,pos,unl,unl,pos,n/a,\"The young man is blow drying his hair, rubbing his hair with blow dry.\",The young boy\nanetv_5koLOwu786I,1828,Justin Beiber is standing in front of the mirror shaking and towel drying his hair. After he,grabs a silver blow dryer and continues to shake his hair until its done.,is finished the tattoo and hits the star in it.,\"got the bottle, he begins to lay down the fork showing another section of his hair.\",\"continues styling the lady's hair, the reporter wins.\",,gold0-reannot,pos,unl,unl,unl,n/a,Justin Beiber is standing in front of the mirror shaking and towel drying his hair.,After he\nlsmdc1045_An_education-90081,11213,\"The woman shakes her head. And again, someone\",'s reaching with excitement.,\"kisses his head, and someone.\",looks say something else in the eye.,does food through a glass door.,rolls through to the room out of the corridor.,gold0-reannot,pos,unl,unl,unl,pos,The woman shakes her head.,\"And again, someone\"\nlsmdc0028_The_Crying_Game-63722,3187,He leaps up from the bed. She,brings her lips close to his so they touch.,\"gives someone a sly smile, then lifts his face to his mouth and digs back.\",watches him stamping the living floor.,jerks away from him.,shakes her head.,gold0-orig,pos,unl,unl,unl,pos,He leaps up from the bed.,She\nlsmdc0028_The_Crying_Game-63722,3193,She smiles brightly at something behind someone. He,turns and sees someone is there.,holds out a restraining hand.,sits down with his supplies.,squishes his ears one ear.,,gold0-orig,pos,unl,unl,unl,n/a,She smiles brightly at something behind someone.,He\nlsmdc0028_The_Crying_Game-63722,3192,\"He sees someone looking at him, smiling brightly, then talking back to someone. She\",smiles brightly at something behind someone.,\"digs back with one finger, and goes out.\",holds the ticket for her.,takes out the envelope as someone comes inside.,turns the tv on.,gold0-orig,pos,unl,pos,pos,pos,\"He sees someone looking at him, smiling brightly, then talking back to someone.\",She\nlsmdc0028_The_Crying_Game-63722,3190,Someone stands in the darkness. He,\"stands outside watching, the flowers behind his back.\",groggily turns upside and walks up to the trucks.,glances up at the locket around his neck and still breathing deeply.,comes up the stone steps to the porch.,puts on his spectacles and addressing them.,gold1-orig,pos,unl,unl,unl,unl,Someone stands in the darkness.,He\nlsmdc0028_The_Crying_Game-63722,3188,She brings her lips close to his so they touch. He,grabs her hair and pulls her head back.,\"lifts an slender cake to meet his lips, then shifts his sad stare.\",starts to sit in front of him.,brings a tool to her cheek.,smiles after him and raises his hands in triumph.,gold0-orig,pos,unl,unl,unl,unl,She brings her lips close to his so they touch.,He\nlsmdc0028_The_Crying_Game-63722,3189,He grabs her hair and pulls her head back. She,pulls a gun and sticks it between his teeth.,comments in front of a banana.,falls from the repaired window.,takes her tongue as she goes.,sprays as she pushes back her hair.,gold1-reannot,pos,unl,unl,unl,unl,He grabs her hair and pulls her head back.,She\nlsmdc0028_The_Crying_Game-63722,3194,In the background we see someone rising. People,making their way to their seats at the bar.,keep food into the kitchen.,signs off to dances in more two shapes.,moves back a door before a white narsil someone returns to a collection of petite fairies toward a wall where they are used.,run toward the police.,gold0-reannot,pos,unl,unl,unl,unl,In the background we see someone rising.,People\nlsmdc0028_The_Crying_Game-63722,3191,\"He stands outside watching, the flowers behind his back. Then the chair turns and we\",see it is someone.,see some advances square.,see someone's reflection in the doorway cutting his legs.,see someone coming opening.,see the cross close to the window.,gold1-reannot,pos,unl,unl,unl,unl,\"He stands outside watching, the flowers behind his back.\",Then the chair turns and we\nanetv_GZjNt2TsChs,13948,A young child is seen climbing up a playground and then going down a slide. She,goes back to the top again followed by another go down the slide and back to the stairs again.,is then seen standing in a park followed by several people speaking to one another.,climbs a foot of stairs and slides down a slide.,walks back and fourth down the slide while the camera follows her movements.,continues to ride more on the rope while speaking to the camera.,gold1-orig,pos,pos,pos,pos,pos,A young child is seen climbing up a playground and then going down a slide.,She\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17017,\"In a car, someone flips through a binder of property listings as he rides besides a dimple - chinned man in glasses. In the back seat, someone\",plays with a digital camera.,holds out a wooden box and drains it into a straw.,sits on a platform next to him watching.,struts into the woods and spots a bartender.,,gold0-orig,pos,unl,unl,unl,n/a,\"In a car, someone flips through a binder of property listings as he rides besides a dimple - chinned man in glasses.\",\"In the back seat, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17003,\"In the next sketch, a boy sits with his elbows on a table, his face buried in his hands. The sketch on the opposite page\",shows a woman cradling a baby while a figure watches from a doorway.,shows a giant turtle painted surface.,shows the name of the vanger family.,\", he stuffs it in his pocket and examines a gold picture of a smiling boy.\",,gold0-orig,pos,unl,unl,unl,n/a,\"In the next sketch, a boy sits with his elbows on a table, his face buried in his hands.\",The sketch on the opposite page\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16995,\"On the storage bag's white label, someone writes pb and a backwards j.. Now, someone\",pushes open someone's bedroom door and finds his son asleep on top of the covers.,frantically vent her phone to her ear and ear.,lies in a static tube until either side.,straps full pink on.,\"climbs a flight of stairs at a quick clerk intersection, then spies an attractive look.\",gold0-orig,pos,unl,unl,unl,unl,\"On the storage bag's white label, someone writes pb and a backwards j..\",\"Now, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17012,\"Picking her up, someone carries her into her bedroom. Reaching a bed piled high with stuffed animals, he\",sits on its edge and sets someone on his lap.,reaches for it to grab her intently and others be led back along the loft.,lifts someone up off her bed.,unlocks the door and faces her.,,gold0-orig,pos,unl,unl,unl,n/a,\"Picking her up, someone carries her into her bedroom.\",\"Reaching a bed piled high with stuffed animals, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16992,He watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen. She,\"combines the slices to make two sandwiches, then grabs storage bags.\",stares at him thoughtfully.,returns one eggs and a decanter.,\"reveals a flower with a pretty bearded, dark skinned editor.\",ask images to three immaculate women when other have their beachfront and cut off a chocolate trading.,gold1-orig,unl,unl,unl,unl,unl,He watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen.,She\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16998,\"He sits on the edge of the bed and shoots someone a perplexed glance. Furrowing his brow, he\",opens the book to a pair of skillfully drawn sketches.,smirks a little as he climbs to one of the twins's feet.,swallows at a meal with straws.,shifts away from the first server.,tears it from his pocket then strides away.,gold1-orig,pos,unl,unl,unl,unl,He sits on the edge of the bed and shoots someone a perplexed glance.,\"Furrowing his brow, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17011,\"Someone stands in the doorway. Picking her up, someone\",carries her into her bedroom.,slams her on the stairs and pumps her fist.,follows him to the edge of the fort.,finds a fallen area beside someone.,knocks on someone's door.,gold0-orig,pos,unl,unl,unl,unl,Someone stands in the doorway.,\"Picking her up, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17014,He gazes out a window at a party in the yard next door. She,watches them with a doleful look.,fixes a big grin on his face as he strides outside.,\"looks down the aisle, then turns.\",furrows his brow and unties the top off its top.,,gold0-orig,pos,unl,unl,unl,n/a,He gazes out a window at a party in the yard next door.,She\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17005,Someone finds a drawing filling up both sides. Someone,sets the sketchbook aside and caresses his son's shaggy brown bangs.,smiles at someone's mother.,writes the final picture of the hero in the dragon ring.,crosses the finished table slides.,reads over reading years.,gold0-orig,pos,unl,unl,unl,unl,Someone finds a drawing filling up both sides.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16985,\"With concerned looks, both men shift their eyes back to someone's drawing, where the bald decapitated man's tongue juts from his mouth in agony, as his head flies away from his body. The principal\",\"shoots the father a horrified glance, then heads off.\",pumps his hands like a flier.,slams the suit's magazine over his desk and starts to punch him with his hand.,\"hauls up a drink of milk, sticks the filter over the cupboard, shakes it and rises through the window.\",,gold0-orig,pos,unl,unl,unl,n/a,\"With concerned looks, both men shift their eyes back to someone's drawing, where the bald decapitated man's tongue juts from his mouth in agony, as his head flies away from his body.\",The principal\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16984,A drawing shows a man with his head flying off his sliced neck. He,holds someone's gaze.,starts on playing the drums with his paddle.,then joins the group of people indoors.,is flat on the dart board.,is surrounded by a white horse.,gold0-orig,pos,unl,unl,pos,pos,A drawing shows a man with his head flying off his sliced neck.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17013,\"Reaching a bed piled high with stuffed animals, he sits on its edge and sets someone on his lap. He\",gazes out a window at a party in the yard next door.,sets the cross in front of him.,crumples to its knees.,keeps stepping between someone's legs as he tests the top of a bar.,\"strap the boys sitting up as they hear its descent, suds on their legs and behind their backs.\",gold0-orig,pos,unl,unl,unl,unl,\"Reaching a bed piled high with stuffed animals, he sits on its edge and sets someone on his lap.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16999,\"Furrowing his brow, he opens the book to a pair of skillfully drawn sketches. One\",shows a bald burly man with a menacing look.,looks up at them.,\"wears a long, white bathrobe.\",\"swallows hard, his eyes widening.\",sits as he watches the clip.,gold1-orig,pos,unl,unl,unl,unl,\"Furrowing his brow, he opens the book to a pair of skillfully drawn sketches.\",One\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17016,\"She rests her head against his shoulder and closes her eyes. As he returns his attention to the young partygoers next door, a blonde woman holding a beer\",spots him and gives a friendly wave.,stands next to him.,watch with a backpack.,sits on a table beside him.,,gold0-orig,pos,unl,unl,unl,n/a,She rests her head against his shoulder and closes her eyes.,\"As he returns his attention to the young partygoers next door, a blonde woman holding a beer\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16987,\"Turning thoughtfully to his son, someone sees him leaning against the bank of lockers with his arms crossed. As his father approaches, someone\",hoists his backpack onto his shoulder.,shakes his hand in front of him and shifts his grim gaze.,clasps a hand fondly of his wife's brow.,drapes one arm around someone's shoulders.,faces him and shifts his eyes.,gold0-orig,pos,unl,unl,unl,pos,\"Turning thoughtfully to his son, someone sees him leaning against the bank of lockers with his arms crossed.\",\"As his father approaches, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16986,\"The principal shoots the father a horrified glance, then heads off. Turning thoughtfully to his son, someone\",sees him leaning against the bank of lockers with his arms crossed.,gives an unnerved shake of the head as he waddles over to someone and kneels nearby.,snorts a line of cocaine in his mouth as he removes his point to the magazine and mouths someone at him.,gives him a look then climbs to her feet with her dog.,\"beats his perplexed eyes and raises his fist in the air, finally taking a seat.\",gold1-orig,pos,unl,unl,unl,pos,\"The principal shoots the father a horrified glance, then heads off.\",\"Turning thoughtfully to his son, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16989,\"Someone strides out of the school with his son right behind him. At home, someone\",opens the fridge to reveal stacks of plastic containers with notes on them.,'s boat hauls a bass into a cage.,sets her suitcase near the closed suite window followed by someone and someone chatting with a waitress.,sits down at a picnic table and looks at some old postcards lying on the floor beside him.,,gold0-orig,pos,unl,unl,pos,n/a,Someone strides out of the school with his son right behind him.,\"At home, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17008,He stares at his weary defeated reflection. He,shifts his gaze to a cluster of pill bottles filling a shelf.,quietly puts a thief in the mans shoes.,tilts up the side mirror as it cuts to his reflection.,\"turns backward, his back against the water.\",stares wide - eyed.,gold0-orig,pos,unl,unl,unl,pos,He stares at his weary defeated reflection.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16993,\"Holding a marker, someone draws a check someone in the air. She\",smiles as she resumes her work.,pokes through a drawer.,swings someone in the air with another hammer.,fidgets with his closed mouth.,,gold0-orig,pos,unl,unl,unl,n/a,\"Holding a marker, someone draws a check someone in the air.\",She\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17002,\"At the center of the table, tiny people stand around a gaping chasm. In the next sketch, a boy\",\"sits with his elbows on a table, his face buried in his hands.\",tries to break his hair across.,sits at the books with dark cursive written on its back.,is seen staring at a mirror covering a wedding ring on her finger.,,gold1-orig,pos,pos,pos,pos,n/a,\"At the center of the table, tiny people stand around a gaping chasm.\",\"In the next sketch, a boy\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16997,\"Entering the room, someone gently lifts his son's hand and takes the book. He\",sits on the edge of the bed and shoots someone a perplexed glance.,returns to his radio.,\"faces someone, someone bites his lip.\",waddles to him.,\"purses his lips and turns to his friend, who points boyishly in his seat.\",gold0-orig,pos,unl,unl,unl,unl,\"Entering the room, someone gently lifts his son's hand and takes the book.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17006,\"Someone sets the sketchbook aside and caresses his son's shaggy brown bangs. Later in a bathroom, he\",\"dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink.\",looks down at the sorting chain which his fallen father sits on an easel and gazes down at his dead body.,picks up a white stocking shaving machine lying on the floor.,swings around a stove and lights a cigarette.,watches the older man's headphones in the bedroom.,gold0-orig,pos,unl,unl,unl,unl,Someone sets the sketchbook aside and caresses his son's shaggy brown bangs.,\"Later in a bathroom, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17015,\"Turning from the window, someone holds her tighter. She\",rests her head against his shoulder and closes her eyes.,pries her finger out of his mouth.,grasps his hold and they kiss.,wraps his arms around her shoulders.,reaches out and gives him a loving smile.,gold0-orig,pos,unl,unl,pos,pos,\"Turning from the window, someone holds her tighter.\",She\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16991,\"Sitting at a table in a breakfast nook, he smiles. He\",watches his daughter spread peanut butter and jelly on slices of bread in the adjoining kitchen.,goes up to someone's side as they take off their coats.,sprinkles of more part of his olive garland.,studies the book of it as someone waits as he gets up.,turns to the others breakfast.,gold0-orig,pos,unl,unl,pos,pos,\"Sitting at a table in a breakfast nook, he smiles.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16996,\"Now, someone pushes open someone's bedroom door and finds his son asleep on top of the covers. Entering the room, someone\",gently lifts his son's hand and takes the book.,lifts his binoculars again and sees someone walking among the bushes.,removes a rag from a drawer and heads off.,sits motionless with his gaze fixed on the patient on his lap.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone pushes open someone's bedroom door and finds his son asleep on top of the covers.\",\"Entering the room, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16990,\"At home, someone opens the fridge to reveal stacks of plastic containers with notes on them. His daughter\",watches as he fits the new casserole dish inside.,\"leaves the house with his jacket, as someone answers.\",tries capsule a plate on the pan.,slides the sandwich into the pan as he answers the phone.,\"regards it up, his brow shift smugly.\",gold0-orig,pos,unl,unl,unl,pos,\"At home, someone opens the fridge to reveal stacks of plastic containers with notes on them.\",His daughter\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16988,\"As his father approaches, someone hoists his backpack onto his shoulder. Someone\",strides out of the school with his son right behind him.,observes the other people with a digital look.,picks up the receiver and places it on the back door.,\"drops the boy's head in the floor, then lands with his eyes.\",beams at the chopper.,gold0-reannot,pos,unl,unl,unl,unl,\"As his father approaches, someone hoists his backpack onto his shoulder.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17000,One shows a bald burly man with a menacing look. Dark - smudged pencil work,creates gloomy shading around both figures.,emerge from a cue case.,out in the original place.,sharpening at a table marked unto a array of oak paintings with electric sculptures.,\"with an array of a haircut on a wicker table, he knocks a mouse over with its logo.\",gold0-reannot,pos,unl,unl,unl,unl,One shows a bald burly man with a menacing look.,Dark - smudged pencil work\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,16983,He beckons someone into the hall and leads him past artwork posted above the lockers. A drawing,shows a man with his head flying off his sliced neck.,page emerges from his pocket.,scrolls out on someone's chest.,unit addresses the same boy.,,gold0-reannot,pos,unl,unl,unl,n/a,He beckons someone into the hall and leads him past artwork posted above the lockers.,A drawing\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17009,\"The shelf below contains jewelry, knick - knacks, and a framed photo of him and someone. Someone\",lowers his heartbroken eyes.,puts a new designer makeup on.,lifts her facing stone and looks around.,looks down at the sidewalk table.,slides the red sketch capsules to someone's half lit window.,gold0-reannot,pos,unl,unl,unl,unl,\"The shelf below contains jewelry, knick - knacks, and a framed photo of him and someone.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-40952,17007,\"Later in a bathroom, he dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink. He\",stares at his weary defeated reflection.,\"salutes for a, someone, closes the fridge door and heads back to the living room.\",\"stares slack - jawed, and sees the children getting into his arms chatting.\",\"takes himself back to a plastic bathroom bathroom, holds it empty and puts it in his pocket.\",reaches up and touches a substance to his wounds.,gold0-reannot,pos,unl,unl,unl,pos,\"Later in a bathroom, he dabs his mouth with a towel and wipes his hands, then lifts his eyes to a mirror above the sink.\",He\nlsmdc1059_The_devil_wears_prada-98688,14517,She crosses in heavy traffic. Someone,\"struggles back into the office, carrying big bags and four coffees.\",\"stands in the upper side mirror, looking down into a thin jacket.\",reaches the front with the door and is on a platform cutting the air several times.,works his way up the street.,,gold1-orig,pos,unl,unl,pos,n/a,She crosses in heavy traffic.,Someone\nlsmdc1059_The_devil_wears_prada-98688,14518,\"Someone struggles back into the office, carrying big bags and four coffees. Someone\",waltzes in and drops her coat and bag onto someone's desk.,looms over the revolving gate then at the gate over the rear of the car.,\"freezes, occurring the blinds and looking through the lobby.\",takes a bow.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone struggles back into the office, carrying big bags and four coffees.\",Someone\nlsmdc1059_The_devil_wears_prada-98688,14516,A sleek chauffeur - driven car brings someone to someone showroom on 7th Avenue. She,crosses in heavy traffic.,\"halt at an brothel, its pitch black and white.\",\"visits her, paces carrying her folders.\",climbs a po tower staircase.,,gold1-reannot,pos,unl,unl,unl,n/a,A sleek chauffeur - driven car brings someone to someone showroom on 7th Avenue.,She\nanetv_AG6Rpvxxetg,5791,The video takes place in a gymnastics arena. A man,is performing gymnastics on a beam while several others are watching.,catches more athletes and targets them over the crowd.,spins with a rope attached to his feet.,performs clears dive equipment from a coach's coach.,spins in the air while doing a handstands on the beam.,gold0-orig,pos,unl,unl,unl,unl,The video takes place in a gymnastics arena.,A man\nanetv_AG6Rpvxxetg,5792,A man is performing gymnastics on a beam while several others are watching. The man,begins on the beam upside down.,jumps into the air and gets caught while on ropes.,jumps high on the mat while people watch.,continues to push off around the disc while moving his hands around to aim.,,gold0-orig,pos,unl,unl,unl,n/a,A man is performing gymnastics on a beam while several others are watching.,The man\nanetv_AG6Rpvxxetg,5793,He then does several flips. The video,ends as he performs a final flip and hops off the beam.,\"ends with quince falling back, releasing the white disk across the screen and then runs into the circle lying on the field.\",does in slow motion.,ends with the closing graphics shown on the screen.,ends with the closing captions shown on the screen.,gold0-orig,pos,unl,unl,pos,pos,He then does several flips.,The video\nanetv_Zl3YebXhXC0,5184,A young boy is in the driveway in front of his house. He,is wearing a pair of headphones.,rolls a plastic snowstorm all over the car.,mows a small patch of grass.,is dancing on a city street.,,gold0-orig,pos,unl,pos,pos,n/a,A young boy is in the driveway in front of his house.,He\nanetv_Zl3YebXhXC0,15356,A boy blows dead leaves using a blowing machine in the driveway of a house. A man,sits on the porch of the house.,walks along a sidewalk watching him from a window.,plays a set of wood.,sits in the yard next to a pile of brushes and leaf blower.,talks to the camera while moving.,gold1-reannot,pos,unl,unl,pos,pos,A boy blows dead leaves using a blowing machine in the driveway of a house.,A man\nanetv_Zl3YebXhXC0,5185,He is wearing a pair of headphones. He,is using a leaf blower to blow leaves.,walks to the table and whispers something.,is playing a set of bagpipes.,eyes the only section of the carved face.,holds a bag in his hands.,gold1-reannot,pos,unl,unl,unl,pos,He is wearing a pair of headphones.,He\nanetv_5X7zeOps9uA,12006,The man backs away from the lady. The lady,takes off her blindfold and walks away.,falls to the floor with a knife.,lands in a carriage letting go.,wave her hands in the air.,cheers her hands in place.,gold1-orig,pos,unl,unl,unl,unl,The man backs away from the lady.,The lady\nanetv_5X7zeOps9uA,12004,The lady in orange leaves the other. The lady,moves from the pinata toward the man and swings.,uses the pole to stand outside the perimeter clapping.,brings the motorcross up in front of the shop and blows the window.,puts the contact lens in her eye.,puts on the spare tire.,gold0-orig,pos,unl,unl,pos,pos,The lady in orange leaves the other.,The lady\nanetv_5X7zeOps9uA,9079,The woman in orange shirt left the woman and the woman in blue shirt starts to hit the pinata. The woman,missed the pinata as she walked backwards and continue to hit the air.,bounces and rhythmically while holding it in between air her legs.,kneels and grabs her head while holding a silver cup.,starts doing a.,,gold0-orig,pos,unl,unl,unl,n/a,The woman in orange shirt left the woman and the woman in blue shirt starts to hit the pinata.,The woman\nanetv_5X7zeOps9uA,12005,The lady moves from the pinata toward the man and swings. The man,backs away from the lady.,grabs another boy and helps her on to the bars.,removes the ball from his smaller finger.,puts on blindfold again.,,gold0-orig,pos,unl,unl,pos,n/a,The lady moves from the pinata toward the man and swings.,The man\nanetv_5X7zeOps9uA,9078,The woman with blindfold is being guided by other woman. The woman in orange shirt left the woman and the woman in blue shirt,starts to hit the pinata.,continue playing with the shoes.,spreads her arms round her head and takes a break before.,goes back to talk.,take their turns laughing over the camera.,gold0-orig,pos,unl,unl,unl,unl,The woman with blindfold is being guided by other woman.,The woman in orange shirt left the woman and the woman in blue shirt\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10670,\"Someone puts down her basket and rushes off, quickly followed by someone. The two girls\",\"hurry around the outside of the house, then across the wide expanse of lawn, looking for their father.\",heads down the corridor.,stare after each other as someone strolls ahead stage.,\"walk past the restaurant and approach the guests, someone.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone puts down her basket and rushes off, quickly followed by someone.\",The two girls\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10672,\"They spot him, arms behind his back, strolling pensively into the shade of the trees. They\",rush over to him.,follow back with someone's mood.,turn their tail and bend down to take a drag.,stop at a hazy window.,,gold0-orig,pos,unl,unl,unl,n/a,\"They spot him, arms behind his back, strolling pensively into the shade of the trees.\",They\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10666,\"He pulls a letter out of his saddlebag, dismounts, and gives it to her in exchange for a few coins. She\",\"heads back inside, studying the unopened letter, and goes to knock on the door of someone's study.\",\"comes to someone's room, puts the alien gun in its pockets, and locks the door.\",\"completes a high throw and falls but lands on her hands, but fails.\",\"peers down into the kitchen, after she speaks again, tentatively.\",\"leaves the motel, and pauses to answer the door.\",gold0-orig,pos,unl,unl,unl,unl,\"He pulls a letter out of his saddlebag, dismounts, and gives it to her in exchange for a few coins.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10668,She goes inside and hands over the letter. Someone,leaves the letter on the desk until the housekeeper has left.,buckles as someone straightens the trunk.,looks back up and pleased.,leans back into the lifeboat.,hangs back and starts to drop her hand.,gold0-orig,pos,unl,unl,unl,pos,She goes inside and hands over the letter.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10663,\"Someone, meanwhile, is getting more and more bored by the minute. She\",gets up off the bed and wanders over to the window.,has pictured young's butler.,hears him calling to the bell.,\"suddenly seems to be pulled off the road, so they are very subdued.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, meanwhile, is getting more and more bored by the minute.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10667,\"She heads back inside, studying the unopened letter, and goes to knock on the door of someone's study. She\",goes inside and hands over the letter.,\"halts visibly satisfied, then walks to her car, grabs a book from a chair, and places it into a cooker.\",\"leaves the room, followed by her friend as he heaves his wristwatch from his chair and lifts his head with a gentle smile.\",\"taps the bench and sits next to someone, smiling down at new rising dust.\",watches as a red sedan drives by.,gold0-orig,pos,unl,unl,unl,pos,\"She heads back inside, studying the unopened letter, and goes to knock on the door of someone's study.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10669,Someone leaves the letter on the desk until the housekeeper has left. The housekeeper now,makes her way out into the garden to take down the washing.,turns to find someone holding a baby with one of them.,\"looks in a mirror, and hears a simple, bench voice.\",has an envelope of water beside her.,starts back in and goes off with someone in bed drunk.,gold1-orig,pos,unl,unl,unl,unl,Someone leaves the letter on the desk until the housekeeper has left.,The housekeeper now\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10665,A young man is galloping along on horseback in the bright sunshine. The housekeeper,\"peers out of the window at longbourn, and seeing the messenger arriving, quickly hurries out to meet him.\",is in several grey dark mountains giving different characteristics or dusting.,strolls through the hotel and into the water where someone sits beside her.,leads his group onward the other way.,extends a bobble up to see the bird near him.,gold0-orig,pos,unl,unl,unl,unl,A young man is galloping along on horseback in the bright sunshine.,The housekeeper\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10673,They rush over to him. Someone,sits down with the letter.,falls as she shields her friend and whirls her around.,grips him cues to someone.,grabs another boot and pulls it off his leg.,,gold0-orig,pos,unl,unl,unl,n/a,They rush over to him.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10660,\"Seeing someone's distress, someone's face falls, and he leaves the room. Meanwhile, someone\",\"is back out, searching the darkened streets, clutching a piece of paper in his hand.\",wakes over his shoulder.,has walked through the house garden.,meets someone's handwritten book.,lifts a trash can.,gold0-orig,pos,unl,unl,unl,unl,\"Seeing someone's distress, someone's face falls, and he leaves the room.\",\"Meanwhile, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10661,\"Meanwhile, someone is back out, searching the darkened streets, clutching a piece of paper in his hand. He\",gazes up at a house.,brings his hand into a pocket and talks for a minute to recognize the words again.,cocks his head at someone as he cocks his head.,takes out the gps and rams its fangs out and close it.,strikes again several times.,gold0-reannot,pos,unl,unl,unl,unl,\"Meanwhile, someone is back out, searching the darkened streets, clutching a piece of paper in his hand.\",He\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10671,\"The two girls hurry around the outside of the house, then across the wide expanse of lawn, looking for their father. They\",\"spot him, arms behind his back, strolling pensively into the shade of the trees.\",wraps a chain around someone's neck then tumbles all over.,walk home as someone studies them.,stare at each other.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The two girls hurry around the outside of the house, then across the wide expanse of lawn, looking for their father.\",They\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89826,10664,She gets up off the bed and wanders over to the window. A young man,is galloping along on horseback in the bright sunshine.,jogs across the living room to a vacant station.,sits on a sofa on a couch.,sheds a thick raven with damp hair.,stands in the doorway and shakes his tangled hair.,gold0-reannot,pos,unl,unl,unl,pos,She gets up off the bed and wanders over to the window.,A young man\nlsmdc1040_The_Ugly_Truth-8816,7503,Someone's smile gives way to a hardened expression. Someone,\"watches him go with an anxious, thoughtful expression.\",attacks a goblin glare.,puts on her question melons.,pan around close and setting him aside.,is sweating.,gold0-orig,pos,unl,unl,unl,pos,Someone's smile gives way to a hardened expression.,Someone\nlsmdc1040_The_Ugly_Truth-8816,7506,Someone returns to her room. Someone,walks into the room.,stares at the young who lies on his back.,pats with his suitcase.,steps up into the lounge as she serves a drink.,,gold0-orig,pos,unl,unl,unl,n/a,Someone returns to her room.,Someone\nlsmdc1040_The_Ugly_Truth-8816,7504,\"Someone watches him go with an anxious, thoughtful expression. Someone\",wanders off with his hands in his pockets.,becomes irritated as he sits beside a stove.,walks up to the wardrobe.,glares at someone as someone takes someone's hand in the back.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone watches him go with an anxious, thoughtful expression.\",Someone\nlsmdc1040_The_Ugly_Truth-8816,7505,Someone wanders off with his hands in his pockets. Someone,returns to her room.,picks up a cup and holds it apart as he fumbles.,leans back in studiously.,is lowering from a solemn sky above it.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone wanders off with his hands in his pockets.,Someone\nanetv_DXOKFXlx84M,7372,A dog is seen laying comfortably in a large bowl with a man beside him. The man,is seen kneeling down next to the dog and begins rubbing him down.,circles around and speaks to the woman on the ground.,moves the potatoes all along the table while continuing to eat.,turns the hair around and continues playing with one another.,,gold0-orig,pos,unl,unl,pos,n/a,A dog is seen laying comfortably in a large bowl with a man beside him.,The man\nanetv_DXOKFXlx84M,7373,The man is seen kneeling down next to the dog and begins rubbing him down. The man,continues to clean off the dog in the bath.,continues to pull off the machine while pausing to speak to the camera and brushing.,continues brushing back and fourth while continuing to work and cutting the leaves.,finishes and ends by pointing out the camera.,continues to speak to the camera.,gold1-orig,pos,unl,unl,unl,pos,The man is seen kneeling down next to the dog and begins rubbing him down.,The man\nanetv_PqP3JIJEU5I,11434,He moves quickly to smooth out dents. The man,moves to the bottom and smooths back up the top.,snaps a piece of paper.,\"moves toward the table, picks up a clipboard, talks to someone, who takes a selection of green shards.\",stops laying his balls together and continues to talk about the gliding surroundings.,,gold0-orig,pos,unl,unl,unl,n/a,He moves quickly to smooth out dents.,The man\nanetv_PqP3JIJEU5I,11435,The man moves to the bottom and smooths back up the top. He,finishes and walks away.,lays the book on a paper towel.,turns again while still still speaking to him.,brushes the hair and uses it to wipe across the fence.,,gold0-orig,pos,unl,unl,unl,n/a,The man moves to the bottom and smooths back up the top.,He\nlsmdc3079_THINK_LIKE_A_MAN-36603,14352,\"Steadying himself on someone, someone lifts his leg and shoots the ball with one hand. It\",bounces off the rim.,falls from someone's face.,lands into two inflatable cones.,\"crawls downstairs into the water, as someone buzzes someone through a revolving gate.\",whacks the puck against his shoulder.,gold1-orig,pos,unl,pos,pos,pos,\"Steadying himself on someone, someone lifts his leg and shoots the ball with one hand.\",It\nanetv_Atdxx_Pxnd4,6799,He uses a lasso to rope a calf. He,\"tries to tie up the calf, losing his rope.\",gapes at the japanese kite in midair.,\"a line, he puts it on his horse.\",walks back to the railing.,,gold0-orig,pos,unl,unl,pos,n/a,He uses a lasso to rope a calf.,He\nanetv_Atdxx_Pxnd4,6798,A cowboy runs out of a gate on a horse. He,uses a lasso to rope a calf.,gets to his feet and begins gathering up the calf on top of a cow.,chases after the calf and jumps down and around.,lassos and raise the cow.,chambers a cow to get in the dirt and runs to the horse line as a calf the calf is released.,gold1-orig,pos,unl,unl,unl,unl,A cowboy runs out of a gate on a horse.,He\nlsmdc0029_The_Graduate-64227,10298,Someone steps in beside someone. Someone,steps in beside the others.,wears his sparkling gown.,\"snatches the robe off and waves his hand, gills passing after him.\",turns her head and gawks at each other.,turns to see someone.,gold0-orig,pos,unl,unl,pos,pos,Someone steps in beside someone.,Someone\nlsmdc0029_The_Graduate-64227,10299,Someone steps in beside the others. They,blot out the sun.,run to the hide.,peer up at the titanic.,sits with her rear to one side.,,gold0-orig,pos,unl,unl,unl,n/a,Someone steps in beside the others.,They\nlsmdc0029_The_Graduate-64227,10300,They blot out the sun. Someone,steps in beside them.,moves to his father.,joins a tree in the castle.,\"wanders around the room, one then backtracks, just sitting.\",,gold0-orig,pos,unl,unl,pos,n/a,They blot out the sun.,Someone\nanetv_1o-Fx2dGfpc,19513,She lifts the violin up and starts playing it. She,finishes and lowers the violin.,takes the drums and lays it down.,starts playing the drums several times.,leans back in the chair and begins playing the keyboard.,\"continue playing, and ends with her sticks.\",gold0-orig,pos,unl,unl,unl,unl,She lifts the violin up and starts playing it.,She\nanetv_1o-Fx2dGfpc,19512,A woman is sitting down holding a violin. She,lifts the violin up and starts playing it.,picks up a violin and starts playing her piano.,is playing a violin.,begins dancing with little dogs at the end.,picks it up and hands several batons in her mouth.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting down holding a violin.,She\nlsmdc0043_Thelma_and_Luise-68384,1194,\", all are gesticulating wildly. Someone\",hangs up the phone.,looks around as she stops playing on the elegant platform.,\"scrambles over to the truck, into the gurgles with a bystander.\",\"places his palms together and cheers, to wake stunned.\",toss or dodge their wraps.,gold0-reannot,pos,unl,unl,unl,unl,\", all are gesticulating wildly.\",Someone\nlsmdc0043_Thelma_and_Luise-68384,1199,Someone is fumbling with the phone. Someone,gives people a look as if he is got it completely under control.,drops to the windows.,\"is struggling to keep control of him, seeing him dart the archway.\",\"drives away with someone, wearing his t - shirt and flying the truck's tire.\",is at a truck in front of him and vampire wearing dumb steadies and troopers rollerblading to the balcony.,gold1-reannot,pos,unl,unl,unl,unl,Someone is fumbling with the phone.,Someone\nlsmdc0043_Thelma_and_Luise-68384,1195,\"Everyone is very disappointed, taking off their headsets, turning off tape recorders and looking at someone like he is an idiot. Someone still\",holds the phone in his hand.,does n't react in the same situation.,can't hear what he is saying.,\"has not, yet.\",\"chews the gum but drinks juts air, looking sheepish.\",gold0-reannot,pos,unl,unl,unl,unl,\"Everyone is very disappointed, taking off their headsets, turning off tape recorders and looking at someone like he is an idiot.\",Someone still\nlsmdc0043_Thelma_and_Luise-68384,1197,People are staring at each other intently. Someone,steps up to the phone.,turns over and lifts the seat to his neck.,kisses his daughter suddenly and pulls her lips tight.,\"walks up to the parlor, where he'd been listening to someone 'realization.\",,gold0-reannot,pos,unl,pos,pos,n/a,People are staring at each other intently.,Someone\nlsmdc0043_Thelma_and_Luise-68384,1198,Again everybody springs into action. Someone,is fumbling with the phone.,spins the camera away.,rests his hand against someone's forehead.,knocks the booze on the pearl.,stands in the hallway.,gold1-reannot,pos,unl,unl,unl,pos,Again everybody springs into action.,Someone\nlsmdc0043_Thelma_and_Luise-68384,1196,Someone still holds the phone in his hand. People,are staring at each other intently.,\", his home now at his motel, comes with a box.\",\"close up, reads an beside guardian who now wears a stretcher.\",\"put his fingers at the faucet, then walk past them toward an elevator.\",\"stares at her, her eyes fixed on him, his mouth agape.\",gold0-reannot,pos,unl,unl,unl,pos,Someone still holds the phone in his hand.,People\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4839,\"The locomotive's wheels spin kicking up sparks. Before the engine reaches the end, the bridge underneath it\",splits from the final portion of the track.,is covered with cloaks and churning patterns.,\"lands pale and muddy, amid the hayseeds.\",swoops for her: moving faster and faster.,\"comes to a stop, just going through it.\",gold0-orig,pos,unl,unl,unl,unl,The locomotive's wheels spin kicking up sparks.,\"Before the engine reaches the end, the bridge underneath it\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4829,\"Jostling inside a railcar, someone braces himself and someone rises to his knees. Someone\",leaves the downed railcar.,has a ring in his hand.,\"streak in the ocean, totally straight.\",lifts one of the rocks and couch climbing.,has his vomit on someone.,gold0-orig,pos,unl,unl,unl,unl,\"Jostling inside a railcar, someone braces himself and someone rises to his knees.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4823,\"He spots someone unconscious on his back, then looks up through the open ceiling. Turning around, he\",finds himself face to face with someone.,\"briefly raises his arms towards a double cage, the couple blinking curtly.\",crashes over the window as he reaches it.,gets a quick glimpse then hides underneath the sedan.,glimpses a sort of hovering light as it sinks in the water.,gold0-orig,pos,unl,unl,unl,unl,\"He spots someone unconscious on his back, then looks up through the open ceiling.\",\"Turning around, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4825,Someone grabs someone's throat. Someone and someone,arrive to see someone bite into someone's neck.,follow him down the hall toward the jungle.,fall with a kiss.,dance as they flash steadily.,hold hands as they surround someone's room.,gold1-orig,pos,unl,unl,unl,unl,Someone grabs someone's throat.,Someone and someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4834,\"He drives his fist through the vampire's chest then pulls it out awash with blood. His mouth agape, someone\",falls flat on his back.,sucks back a white trigger before smashing the curtained opening.,finds someone hanging out of its crumbling choosing patterns.,\"shouts out a condom, pulls it off his shirt and swipes it with the gun.\",stabs himself and knocks someone over a feather - powerful knocking wail.,gold1-orig,pos,unl,unl,unl,pos,He drives his fist through the vampire's chest then pulls it out awash with blood.,\"His mouth agape, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4835,\"His mouth agape, someone falls flat on his back. Someone and someone\",notice the track collapsing above them.,approach the cab and follow both officer out.,stride through an elegant room.,pull off the blankets and cover him with their horns.,drop off of the road.,gold0-orig,pos,unl,unl,unl,unl,\"His mouth agape, someone falls flat on his back.\",Someone and someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4806,\"Meanwhile, someone exhales a puff of thick smoke. With a match, she\",lights a rope sending flames up a beam.,takes a bottle from it.,blows out a green smoke.,puts the bite on her pipe.,knocks someone's hat back.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone exhales a puff of thick smoke.\",\"With a match, she\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4815,\"Someone boots someone back into a corner. As the train nears the burning bridge, someone\",eyes the blaze from the locomotive.,commands the wings to make him.,stares at the fruit for a moment.,peers at the iceberg.,,gold0-orig,pos,unl,unl,unl,n/a,Someone boots someone back into a corner.,\"As the train nears the burning bridge, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4812,He pulls out a common rock. He,tosses the rock and crosses to another crate.,watches the robed chasing disperse.,drilled it around a hole.,pins it onto the rooftops and sending him tumbling throughout the lobby.,brings them up to the jukebox.,gold0-orig,pos,unl,unl,unl,pos,He pulls out a common rock.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4831,\"Emerging from thick smoke, he crosses the support structure and kicks out a beam. The track under the last railcar gives out and the railcar\",flips forward forcing someone and someone to run on to the next.,melts away from the bars.,slide of the shimmering surface of the water.,\"draws the diary to him, his gave him in its sitting position.\",moves down the woods from behind the clouds.,gold1-orig,pos,unl,unl,unl,unl,\"Emerging from thick smoke, he crosses the support structure and kicks out a beam.\",The track under the last railcar gives out and the railcar\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4816,\"As the train nears the burning bridge, someone eyes the blaze from the locomotive. He\",\"pulls back a lever, uses a piece of wood to keep it in place then leaves the controls.\",fires a fire pump.,jumps into the air and fires.,\", people sit at the table, facing each other.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As the train nears the burning bridge, someone eyes the blaze from the locomotive.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4805,\"As someone ducks a punch, the pair gets jostled atop the last railcar. Meanwhile, someone\",exhales a puff of thick smoke.,hurries inside the canvas shelter and stares at the back screens to someone.,\"glances aside, as someone makes the grimhold jauntily on her chest sending sketches of a column - clad her own.\",applauds someone as someone retrieves the blue van coat and makes a mad dash for someone.,\"steps up to the bull, as a black suv pulls down the street in the other direction.\",gold1-orig,pos,unl,unl,unl,pos,\"As someone ducks a punch, the pair gets jostled atop the last railcar.\",\"Meanwhile, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4809,Someone catches someone's arm then flips him. Someone,rises to his feet and slams someone's face through the top of a wooden crate.,tosses the shard and rolls it under his arm.,\"looks over at someone, who shakes someone's hand.\",is still on the yellow board.,,gold0-orig,pos,unl,pos,pos,n/a,Someone catches someone's arm then flips him.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4836,Someone and someone notice the track collapsing above them. They,jump into the open trailer of the locomotive's coal car.,get up and lean close to a fence to watch someone.,follow a suit and two men inside.,are in their way hurrying past the lockers.,find the trooper in place spotting a lifeboat on a riverside.,gold1-orig,pos,unl,unl,unl,pos,Someone and someone notice the track collapsing above them.,They\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4826,Someone and someone arrive to see someone bite into someone's neck. The vampire,looks up at them.,brings one ax on his side.,holds up his human coworkers.,takes a few deep breaths and dabs his brow with his latex gloves.,\"escapes the powerful blow, knocking him off the ground.\",gold0-orig,pos,unl,unl,unl,unl,Someone and someone arrive to see someone bite into someone's neck.,The vampire\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4822,\"Making his way through the railcars, someone finds a floor strewn with broken wood. He\",\"spots someone unconscious on his back, then looks up through the open ceiling.\",bends down as if locked on fire.,find a bunch of three night birds as a level up.,\"stands nearby for a moment, then stands and moves towards the door.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Making his way through the railcars, someone finds a floor strewn with broken wood.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4821,\"They run back across the rooftops. Making his way through the railcars, someone\",finds a floor strewn with broken wood.,mournfully chops a piece of steam.,spots him and lock a chain.,and another youth lie upon their fields.,pushes along.,gold0-orig,pos,unl,unl,unl,pos,They run back across the rooftops.,\"Making his way through the railcars, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4827,\"The vampire looks up at them. Now, as the train passes over the burning bridge, the track splits and the last railcar\",breaks loose from the train.,\"go out, leaving only a beat.\",flies into his pocket.,surfaces into the darkness.,is balanced on the mountains.,gold0-orig,pos,unl,unl,pos,pos,The vampire looks up at them.,\"Now, as the train passes over the burning bridge, the track splits and the last railcar\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4840,\"Before the engine reaches the end, the bridge underneath it splits from the final portion of the track. Someone and someone\",\"brace themselves, clinging to the engine.\",rush up and pulls him up.,get cigarette from the floor.,arrive on the other side.,,gold0-orig,pos,unl,unl,pos,n/a,\"Before the engine reaches the end, the bridge underneath it splits from the final portion of the track.\",Someone and someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4838,He and someone make their way across the engine. The locomotive's wheels,spin kicking up sparks.,\"seem to emerge, moving forward.\",wheel up a gurney.,spin to move against someone.,,gold0-orig,pos,unl,unl,unl,n/a,He and someone make their way across the engine.,The locomotive's wheels\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4819,\"Meanwhile, someone helps someone onto the roof. They\",rise to their feet and spot the burning bridge up ahead.,peer out the tunnel.,try to hold their house as hard as they can.,take him down in a ditch.,,gold0-orig,pos,unl,unl,pos,n/a,\"Meanwhile, someone helps someone onto the roof.\",They\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4807,\"With a match, she lights a rope sending flames up a beam. As she marches off, a massive fire\",consumes the entire support structure of a bridge.,flares both glamorous shoes.,shines in the trees around him.,creature runs out of the water.,\"leaps into the sphere, costumed its breath.\",gold0-orig,pos,unl,unl,unl,unl,\"With a match, she lights a rope sending flames up a beam.\",\"As she marches off, a massive fire\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4810,Someone rises to his feet and slams someone's face through the top of a wooden crate. Someone,lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself.,\"twitches a smile, hushed and flexes.\",\"shuts the door and pauses, watching the four men.\",tears down someone's vest.,runs out of the room and brings a letter with a letter.,gold0-orig,pos,unl,unl,unl,unl,Someone rises to his feet and slams someone's face through the top of a wooden crate.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4811,Someone lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself. He,pulls out a common rock.,turns side to side and hobbles around the vegetables.,looks round and leaves the house.,\"glares at the key, then backs away.\",looks down from the window and heads above it.,gold0-orig,pos,unl,unl,unl,unl,Someone lifts the laughing vampire from the box then shoves him aside and peeks in the hole himself.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4828,\"About to fall into the blaze below, they daringly leap across the divide and land on the next rail car's roof. Jostling inside a railcar, someone braces himself and someone\",rises to his knees.,turns on his wipers.,smashes her car door into the concrete.,weaves his motorcycle through.,climbs the back of the plane.,gold0-reannot,pos,unl,unl,unl,unl,\"About to fall into the blaze below, they daringly leap across the divide and land on the next rail car's roof.\",\"Jostling inside a railcar, someone braces himself and someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4808,\"As she marches off, a massive fire consumes the entire support structure of a bridge. Someone\",catches someone's arm then flips him.,watches her from behind a photo of a statue.,picks up the third manual in one hand and turns it out.,washes more out of the tank and holds it out.,watches the men stride forward around the bar.,gold0-reannot,unl,unl,unl,unl,unl,\"As she marches off, a massive fire consumes the entire support structure of a bridge.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4814,\"He kicks open another crate, spilling rocks on the floor. Someone\",boots someone back into a corner.,is caught in the water.,carries the chicken to land.,grabs his photo from the backseat.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He kicks open another crate, spilling rocks on the floor.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4832,The track under the last railcar gives out and the railcar flips forward forcing someone and someone to run on to the next. Someone,kicks out another support beam.,stops in a white hug.,lowers some discs from his boot.,\"is now standing, standing.\",\", shaking her legs to the floor, turns back to her open eyes.\",gold0-reannot,pos,unl,unl,unl,unl,The track under the last railcar gives out and the railcar flips forward forcing someone and someone to run on to the next.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4813,\"He tosses the rock and crosses to another crate. Inspecting the cargo, he\",finds more rocks in place of the silver.,darts down the hallway.,tosses a parcel in front of someone.,heads down a long rocky hill with two coats.,,gold0-reannot,pos,pos,pos,pos,n/a,He tosses the rock and crosses to another crate.,\"Inspecting the cargo, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4804,\"He kicks off the passing rock wall and lands facing his rival. As someone ducks a punch, the pair\",gets jostled atop the last railcar.,gets on and someone fires into the outside.,shoots wall jacks across the table.,sinks a helicopter in the field.,,gold1-reannot,pos,unl,unl,unl,n/a,He kicks off the passing rock wall and lands facing his rival.,\"As someone ducks a punch, the pair\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4830,\"Someone leaves the downed railcar. Emerging from thick smoke, he\",crosses the support structure and kicks out a beam.,dives onto a high platform to meet the elder man foe.,stirs a pot of popcorn next to a straight pipe.,stands and picks sparks bag from the shoulders of his bunk.,hunches into the vampire scuba pool.,gold0-reannot,pos,unl,unl,unl,unl,Someone leaves the downed railcar.,\"Emerging from thick smoke, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4817,\"He pulls back a lever, uses a piece of wood to keep it in place then leaves the controls. He\",enters the first railcar and staggers past the dummy cargo.,rises and flips out the tv.,careens faster and closer to the still pit.,is in a middle of the desert and chop up a carpet.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He pulls back a lever, uses a piece of wood to keep it in place then leaves the controls.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4818,\"He enters the first railcar and staggers past the dummy cargo. Meanwhile, someone\",helps someone onto the roof.,joins the deejay as he strides away.,stops and faces a soldier on top of the box.,stands at the far side of the building's front door.,,gold0-reannot,pos,unl,unl,unl,n/a,He enters the first railcar and staggers past the dummy cargo.,\"Meanwhile, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2575,4833,Someone kicks out another support beam. Someone and someone,fall to the structure under the track then hurry along its beams.,move in and out of the hop - open audience.,share someone's sad kiss.,\"are on the other side of a chain, holding a bar of someone with a model.\",lure the gun from his ankle.,gold1-reannot,pos,unl,unl,unl,unl,Someone kicks out another support beam.,Someone and someone\nanetv_clSku91LoQQ,12513,A man is wearing sunglasses and singing on stage. Another man,is playing an electric guitar to his right.,picks up his guitar and begins to play the bongos.,is seen rollerblading through the middle of a large group of people and leads into more people jumping on the beach.,is outside singing into the microphone.,plays drums with his hand while the band plays the saxophone.,gold0-orig,pos,unl,unl,pos,pos,A man is wearing sunglasses and singing on stage.,Another man\nanetv_clSku91LoQQ,12514,Another man is playing an electric guitar to his right. A little boy,\"joins them, singing and playing an accordian.\",is sitting in bed holding his guitar.,plays the drums while a guitar also plays guitar.,is asleep in his chair playing the accordian.,sits on the piano as the young man walks to the stage.,gold0-orig,pos,unl,unl,unl,unl,Another man is playing an electric guitar to his right.,A little boy\nanetv_clSku91LoQQ,10744,A band is seen performing on a stage in front of a large audience with a small child singing and playing the harmonica. The boy,continues playing with the band as the audience claps.,continuously lays down the guitar while still looking at the camera as well as holding him along and out in slow dancing.,continues playing while holding up his hands and moving his arms.,stops watching while he rotates around the baton before another group of dogs running around him.,continues playing his instruments and ends by playing it in the microphone followed by another person taking it.,gold0-orig,pos,unl,unl,unl,pos,A band is seen performing on a stage in front of a large audience with a small child singing and playing the harmonica.,The boy\nlsmdc0029_The_Graduate-64314,4418,He turns the key in the ignition and starts the car. He,freezes with his hand still on the key.,\"stands up, letting someone pass.\",\"goes to trunk, and notices it's someone.\",walk down the street.,,gold0-orig,pos,unl,unl,unl,n/a,He turns the key in the ignition and starts the car.,He\nlsmdc0029_The_Graduate-64314,4419,He freezes with his hand still on the key. He,turns off the engine.,looks up as someone removes his cap.,checks to cross the pan.,slides the catalog back in to place.,shows a tattoo that's forever lit up.,gold0-orig,pos,unl,unl,unl,unl,He freezes with his hand still on the key.,He\nanetv_ZG4ApSk5iKw,7521,He raises the back on his work out machine and starts doing crunches again. He,sits up and continues talking to the camera.,speeds off and peers at the mailbox.,lifts the foot up before coming to the piece.,smiles back at the camera and lets him go.,,gold1-orig,pos,unl,unl,pos,n/a,He raises the back on his work out machine and starts doing crunches again.,He\nanetv_ZG4ApSk5iKw,7519,A man is doing various tasks while doing crunches. He,stops and talks to the camera.,stands up and walks on behind the beam as he dismounts.,have flips in his hands and shown.,is using gear in the tattoo gear.,\"jumps off the swing, down on top of the bars and moves off.\",gold0-orig,pos,unl,unl,unl,unl,A man is doing various tasks while doing crunches.,He\nanetv_ZG4ApSk5iKw,7520,He stops and talks to the camera. He,raises the back on his work out machine and starts doing crunches again.,is only in full gym fighting.,starts throwing over a glass of water.,runs toward the camera.,,gold1-reannot,pos,unl,unl,pos,n/a,He stops and talks to the camera.,He\nlsmdc3055_PROMETHEUS-27233,5077,\"Someone opens the air locked doors with her back and hand, then jumps out and lands in a hard roll. Yet another tentacle\",reaches out and wraps around his head.,\"reaches someone, narrowly missing a cab with a blue sheet.\",\"comes running in, flanked by long women.\",enters at the rail of the cabin.,emerges out of the air.,gold0-orig,pos,unl,unl,pos,pos,\"Someone opens the air locked doors with her back and hand, then jumps out and lands in a hard roll.\",Yet another tentacle\nlsmdc3055_PROMETHEUS-27233,5079,The mouth launches a serpentine appendage down the engineer's throat. It,\"pulls him close, then lowers itself on top of him.\",\"slashes a monk with a knife, then punches the air and staggers back at the thug.\",\"fly backward with chunks of flaming debris, running to litter the road.\",lowers his attention screen and steps back on the balustrade forward.,fades to reveal someone's silhouette toward the rising flag of dead moon.,gold0-orig,pos,unl,unl,unl,pos,The mouth launches a serpentine appendage down the engineer's throat.,It\nlsmdc3055_PROMETHEUS-27233,5081,It eventually relaxes and grows still. Someone,weeps on her back.,gets on the shoulder and does a good move.,contemplates the hotel.,pitches into her face and hauls her up off the ground.,wrinkles her head at it.,gold1-orig,pos,unl,unl,unl,unl,It eventually relaxes and grows still.,Someone\nlsmdc3055_PROMETHEUS-27233,5078,Yet another tentacle reaches out and wraps around his head. The buds,shoot out tendrils that lash around his skull and hold him still.,stops someone for a moment lowering the drink.,freezes just one time too.,unique softens through the ingredient and tips them along.,continues on as someone stands by the doorway looking at it.,gold1-orig,pos,unl,unl,unl,pos,Yet another tentacle reaches out and wraps around his head.,The buds\nlsmdc3055_PROMETHEUS-27233,5074,\"The creature lifts the engineer off the floor. Grabbing her helmet, someone\",rushes back to the airlock compartment.,shows someone the subs again.,opens through a door and lowers the dragon to her head.,hits the panel.,raises her fist at the mere figure of a woman who nods.,gold1-orig,pos,unl,unl,pos,pos,The creature lifts the engineer off the floor.,\"Grabbing her helmet, someone\"\nlsmdc3055_PROMETHEUS-27233,5072,\"As the creature wraps its tentacles around the engineer, she wriggles out from beneath them both. A spare tentacle wraps around her ankle, but she\",kicks it lose and scrambles away.,\"gently yanks it open, closing her teeth.\",can't keep up.,can't hold it away.,yanks her own goggles to her mouth.,gold0-orig,pos,unl,unl,unl,unl,\"As the creature wraps its tentacles around the engineer, she wriggles out from beneath them both.\",\"A spare tentacle wraps around her ankle, but she\"\nlsmdc3055_PROMETHEUS-27233,5071,\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and tackles him, taking someone down with them. As the creature wraps its tentacles around the engineer, she\",wriggles out from beneath them both.,\"finds a license receiver on the wall, complete with an image of a diver of forty - eight men wearing jeans.\",\"lunges around to grab someone's station stick, then places it on either side of the bed.\",watches his human body fall on top of her.,,gold0-orig,pos,unl,unl,pos,n/a,\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and tackles him, taking someone down with them.\",\"As the creature wraps its tentacles around the engineer, she\"\nlsmdc3055_PROMETHEUS-27233,5070,\"Charging, he backs her against a wall. She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and\",\"tackles him, taking someone down with them.\",places her mouth on bank's cover - lens.,turns her back to the guard in a gum - infested tank below.,swoops in with his back help with a tray.,makes it stand like a statue of a shark.,gold0-orig,pos,unl,unl,unl,unl,\"Charging, he backs her against a wall.\",\"She pounds a touchscreen, a tentacle shoots out through the med pod station doors lashes around the engineer's throat and\"\nlsmdc3055_PROMETHEUS-27233,5075,\"In the lifeboat, the engineer struggles pitily against the grasp of the giant squid - like creature. The engineer\",braces his legs against the door frame.,eyes the approaching ship.,takes a few steps back and someone pulls the dagger down thoughtfully from the threads of the wand.,sits back upright to face the automaton.,tries to pull upward until it follows his injured knee.,gold1-orig,pos,unl,unl,unl,unl,\"In the lifeboat, the engineer struggles pitily against the grasp of the giant squid - like creature.\",The engineer\nlsmdc3055_PROMETHEUS-27233,5080,\"It pulls him close, then lowers itself on top of him. It eventually\",relaxes and grows still.,swerves like a locomotive.,trots away to the ground railway.,\"brings him to the ground, followed by loose bolts.\",,gold0-reannot,pos,unl,pos,pos,n/a,\"It pulls him close, then lowers itself on top of him.\",It eventually\nanetv_ZgVmS-AhYgA,7396,A group of rafters carries a raft down a path. Groups of rafters,ride down a river going over small waterfalls.,\"are rushing through the water, with kayaks that are tied around the yard.\",turn under the water as the water is thrown from their way into the water.,lands themselves down the river.,,gold1-orig,pos,unl,unl,pos,n/a,A group of rafters carries a raft down a path.,Groups of rafters\nanetv_ZgVmS-AhYgA,7397,Groups of rafters ride down a river going over small waterfalls. The rafters,climb out from there boat onto the shore and walk up the path.,paddle one fast down the river and land on a rivers.,\"are tearing through the rapids, sail boats straight of their hands.\",are surfing the waves as they bounce along.,move through the waters.,gold0-orig,pos,unl,unl,pos,pos,Groups of rafters ride down a river going over small waterfalls.,The rafters\nanetv_ZgVmS-AhYgA,7398,The rafters climb out from there boat onto the shore and walk up the path. People,jump from rocks into a swimming hole of the river.,on water skis at the top of a steep shore.,are there as they kayak through the choppy water with their surf side - sail on it.,\"are standing at the front of the tree, crashing into the camera.\",take off your boards in the lake.,gold0-orig,pos,unl,unl,unl,unl,The rafters climb out from there boat onto the shore and walk up the path.,People\nanetv_nLdRqOTb0Ik,14738,A man is siting behind a desk doing a Rubik's cube. He,sets the rubik's cube down and stands up.,is then seen mixing yet again with a crunch machine along the street.,\"of drill is shown, and the person starts away down on the left.\",is directing the cube in front of him.,starts to solve the puzzle.,gold0-orig,pos,unl,unl,pos,pos,A man is siting behind a desk doing a Rubik's cube.,He\nanetv_nLdRqOTb0Ik,18024,The man solves it quickly as the timer catches him and a man writes down his score and shakes his hand. His solve,is shown again in slow motion.,\"is finally made again, broken out with two words.\",is now completely intact.,is shown in progress.,,gold1-orig,pos,unl,unl,pos,n/a,The man solves it quickly as the timer catches him and a man writes down his score and shakes his hand.,His solve\nanetv_nLdRqOTb0Ik,14739,He sets the Rubik's cube down and stands up. He,sits down again and does the rubik's cube again.,\"stands up and goes to the stairs, covering his face with the cloth.\",pain seems to be a distant lot of warm leaves.,knocks.,to the elderly man shows someone keyhole in the back.,gold1-orig,pos,unl,unl,unl,unl,He sets the Rubik's cube down and stands up.,He\nanetv_nLdRqOTb0Ik,18023,A young man is seen sitting at a table and beginning to solve the rubix cube. The man,solves it quickly as the timer catches him and a man writes down his score and shakes his hand.,speaks to the camera and ends the game with the man.,solves the puzzle while also pushing the objects all around the table while still speaking.,continues flipping and turning away in the end and ends with it close up.,demonstrates how to solve the cube while the person solves the puzzle and holds it on his finger.,gold0-reannot,pos,pos,pos,pos,pos,A young man is seen sitting at a table and beginning to solve the rubix cube.,The man\nlsmdc0016_O_Brother_Where_Art_Thou-55308,7167,The doors slam shut and the boy grinds into gear. He,\"has wood blocks strapped to his feet so that he can reach accelerator, brake and clutch.\",opens a cupboard door and pulls out a blueprint.,climbs off of the hills.,spins his yet another chamber.,\"steps into the water, and wraps his arms around someone's neck.\",gold0-orig,pos,unl,unl,unl,unl,The doors slam shut and the boy grinds into gear.,He\nanetv_d3RF0qC6RJs,18932,A man performs with his dog in a frisbee catching spectacle on a large grass covered lawn in front of an audience of people on the sidelines. A man,throws frisbee after frisbee in the air each of which his dog catches in mid air.,performs a routine while riding the horse and jumping on his horse before walking off to the ground as he walks along.,comes chasing frisbee while another man clips the fur tags in each hand and after two others join them.,throws a frisbee for the dog to throw it.,spins his horse and ties the calf together until the wrestler takes the cow to let it fly in.,gold0-orig,pos,unl,unl,unl,unl,A man performs with his dog in a frisbee catching spectacle on a large grass covered lawn in front of an audience of people on the sidelines.,A man\nanetv_d3RF0qC6RJs,8485,He throws frisbees and plays with a dog. The guy,picks up the dog and carries it.,grabs the leash with the dogs hair.,continues to stretch with the dog pet.,starts playing the accordion and clapping his hands.,,gold0-orig,pos,unl,unl,unl,n/a,He throws frisbees and plays with a dog.,The guy\nanetv_d3RF0qC6RJs,18933,The man then has the dog jump off of his back and perform many other tricks and stunts on the field in the middle of catching the frisbees. An audience in front on the sidelines,erupts in applause at the final frisbee catch.,\"wait a short time, landing and ends with the video with a topcoat.\",\"pan around to get applause from the trots, which finally crashes ahead of them.\",watch the people watch the man throw more tricks.,,gold0-orig,pos,unl,unl,pos,n/a,The man then has the dog jump off of his back and perform many other tricks and stunts on the field in the middle of catching the frisbees.,An audience in front on the sidelines\nanetv_d3RF0qC6RJs,8484,A man is standing on a field. He,throws frisbees and plays with a dog.,starts removing a ball into the dirt.,runs up and jumps into a large sand pit.,goes over a pole in the center of the track.,does a gymnastics routine in front of an audience.,gold1-orig,pos,unl,unl,unl,pos,A man is standing on a field.,He\nanetv_aZQWCEejbk8,13129,\"A girl walks up to a slide, sits down, then goes down the slide. She\",walks back to do it again.,lifts her cheek to her head and smiles.,slide down the wooden slide and then checked over and over.,goes to a railing and sits on a bench.,sits on the bed talking to her.,gold0-orig,pos,unl,unl,unl,unl,\"A girl walks up to a slide, sits down, then goes down the slide.\",She\nlsmdc3041_JUST_GO_WITH_IT-18318,3938,\"The frowning beauty arrives beside someone and accidentally drops her purse. As he sets it on the bar, she\",spies his wedding ring.,lifts it and faces her side.,flips back a newspaper.,returns to the dance studio.,stops just in front of him.,gold0-orig,pos,unl,unl,unl,pos,The frowning beauty arrives beside someone and accidentally drops her purse.,\"As he sets it on the bar, she\"\nanetv_4T8uFygBeNo,9402,Two people are seen kicking around a skateboard and lead into clips of them riding down a road. The camera,follows the boys from several angles skating down a street and performing various tricks.,continues while people walk in spare wheels pans all around.,pans around and a person stands on a ladder at a sand.,continues to walk up while more shots are shown of the man holding several frisbees and picking it up.,pans around the track then ends with their legs swinging shown in the distance and visible into the camera.,gold0-orig,pos,unl,unl,unl,pos,Two people are seen kicking around a skateboard and lead into clips of them riding down a road.,The camera\nanetv_4T8uFygBeNo,4442,First the man steps onto his skateboard and a car rides past. Then both of the men,ride the skateboards at the same time in the middle of the streets.,walk to a patch of bare road and on a dirt landscape.,get out of the car and race off the vehicle.,ride the skateboard into the plastic cruiser.,,gold0-orig,pos,unl,unl,unl,n/a,First the man steps onto his skateboard and a car rides past.,Then both of the men\nanetv_4T8uFygBeNo,9403,The camera follows the boys from several angles skating down a street and performing various tricks. The men,continue moving around the city through obstacles and moving along the road.,continue to beat and talk to each other and cheer for the camera.,prepares to ride around quickly but leads off the rough waves as they turn around and perform the tricks on the area.,continue riding around on the stilts and performing tricks while the camera pans around it.,\"continue going down the track, bouncing up and down with their sticks.\",gold0-orig,pos,unl,unl,unl,unl,The camera follows the boys from several angles skating down a street and performing various tricks.,The men\nanetv_lPCl1ZYH2xI,3464,The lady is dressed in a long beige jacket and ear muffs and she is scraping the snow off of the other end of the car. A boy then appears and he is shoveling snow out from behind the car and then another person,comes to help them.,is shown trying to slide on the back.,comes and put up on the chair.,is drinking from the car with a snow shovel.,,gold1-orig,pos,unl,unl,unl,n/a,The lady is dressed in a long beige jacket and ear muffs and she is scraping the snow off of the other end of the car.,A boy then appears and he is shoveling snow out from behind the car and then another person\nanetv_lPCl1ZYH2xI,1192,They lift open the trunk of the car. Another person in a tan coat,is cleaning off the front of the car.,grabs them and shovels them.,\"approaches the cab, takes out the shoes, and goes into a cluttered room.\",pulls someone up from the row two trailer.,gets through and hurries out the front gate.,gold0-orig,pos,unl,unl,unl,unl,They lift open the trunk of the car.,Another person in a tan coat\nanetv_lPCl1ZYH2xI,3466,\"As the snow picks up, the first female leaves and now there are only two people outside each brushing off dirt on two different cars. Once the first car is finished, the lady leaves and now the boy\",is left outside by himself getting the rest of the snow off of the vehicle.,walks on the left spraying glue on the tip of the wheel.,stops and jumps in a competition on a corner distance ahead by the bull alley.,begins riding downhill on the snow casually and going a bit on the ground and dropping her hand.,melted on the tire and tries to remove snow from the other woman's shoe.,gold1-orig,pos,unl,unl,unl,unl,\"As the snow picks up, the first female leaves and now there are only two people outside each brushing off dirt on two different cars.\",\"Once the first car is finished, the lady leaves and now the boy\"\nanetv_lPCl1ZYH2xI,1193,Another person in a tan coat is cleaning off the front of the car. A man in a white jacket,starts to clear the snow off of another car.,is standing in the driver's car.,is talking in front of a wall.,is standing outside smoking and talking to the camera.,walks out shoveling snow off the side of the car.,gold1-orig,pos,unl,unl,unl,pos,Another person in a tan coat is cleaning off the front of the car.,A man in a white jacket\nanetv_lPCl1ZYH2xI,1191,A person in a red coat is cleaning the snow off their car. They,lift open the trunk of the car.,'re barefoot and two cars are tubing down a driveway with a woman on frisbees.,\", the people wears in the sidewalk and look at a patch of legs in all of the table.\",\"get in the garage and get out in the snow as they wander off in the same direction, cars are creepy.\",are running around in the dust with a brush in front of a cooking car.,gold1-orig,pos,unl,unl,unl,unl,A person in a red coat is cleaning the snow off their car.,They\nanetv_lPCl1ZYH2xI,3463,\"Once all the snow is gone, she opens the truck and begins talking to another lady. The lady is dressed in a long beige jacket and ear muffs and she\",is scraping the snow off of the other end of the car.,gets a partially blow dryer off the side.,vigorously working her back on the tire.,is doing some stunt.,dials an number on her purse.,gold0-orig,pos,unl,unl,unl,unl,\"Once all the snow is gone, she opens the truck and begins talking to another lady.\",The lady is dressed in a long beige jacket and ear muffs and she\nanetv_lPCl1ZYH2xI,1194,A man in a white jacket starts to clear the snow off of another car. They,open the door to the car.,start spray scrubbing the car's metal.,begin to play while attached to a leash.,are using spray jack and fire as the camera brings them to the counter.,stop and talk to the others.,gold1-orig,pos,unl,unl,unl,pos,A man in a white jacket starts to clear the snow off of another car.,They\nanetv_lPCl1ZYH2xI,3465,\"A boy then appears and he is shoveling snow out from behind the car and then another person comes to help them. As the snow picks up, the first female leaves and now there\",are only two people outside each brushing off dirt on two different cars.,are another girl dressed of a park.,is applying electrical fire hose of his car's car too.,are some people in the bedroom outside the car.,,gold0-orig,pos,unl,unl,unl,n/a,A boy then appears and he is shoveling snow out from behind the car and then another person comes to help them.,\"As the snow picks up, the first female leaves and now there\"\nanetv_lPCl1ZYH2xI,1195,They open the door to the car. They,continue clearing the snow from the car.,comes to the door.,give an angry shove.,\"people stare blankly, dumbfounded.\",,gold0-reannot,pos,unl,unl,pos,n/a,They open the door to the car.,They\nanetv_lPCl1ZYH2xI,3462,\"A woman in a red jacket is outside of the garage brushing off the snow on her trunk. Once all the snow is gone, she\",opens the truck and begins talking to another lady.,picks up her shovel and starts snow off of the van.,places the paint on right on it's face.,sits down and picks the snow up.,turns the wheel back and forth around and begins to wet snow.,gold1-reannot,pos,unl,unl,unl,unl,A woman in a red jacket is outside of the garage brushing off the snow on her trunk.,\"Once all the snow is gone, she\"\nanetv_7rd23-3wEyU,18583,A man is seen speaking to the camera while leading into various pictures of speaking as well as smoking. The man,continues speaking while showing pictures intermittently of smoking and cigarettes close up.,finishes by speaking to the camera and leads into several shots of him riding on.,continues to around and various shots of objects are shown as well as people speaking to the camera again.,continues speaking to one another while more shots are shown of dogs laying on a table.,,gold0-reannot,pos,unl,unl,pos,n/a,A man is seen speaking to the camera while leading into various pictures of speaking as well as smoking.,The man\nanetv_f2LGG2ocbu8,3338,People around him clap while more stand around and talk as well as watch the balls be thrown. The people,grab the ball from the ground over and over again while occasionally looking over to the camera and panning back to the large crowd.,continue to roller around on the sand car as well as close ups of the person filming.,continue to spin around while clips move around one another and end by moving off.,continue hitting and taking all the field of balls and shooting them into red cups.,sit and eventually end with the host in several cheering cameramen walking on game.,gold0-orig,pos,unl,unl,pos,pos,People around him clap while more stand around and talk as well as watch the balls be thrown.,The people\nanetv_f2LGG2ocbu8,3337,A large group of people are seen sitting around a pit with one man spinning around and throwing a ball off into the distance. People around him,clap while more stand around and talk as well as watch the balls be thrown.,walks quickly as the person just turns around and dives into a bin.,bump him back and fourth on the side celebrating and ends by smiling to others.,throw the ball over as well as their movements during shots are shown and shown again in slow motion.,are seen hitting the ball around two other while still tossing a ball and cheering.,gold0-orig,pos,unl,unl,unl,pos,A large group of people are seen sitting around a pit with one man spinning around and throwing a ball off into the distance.,People around him\nanetv_TUPCQpyoSbI,12583,They look at the various wares for sale. Then they,\"are shown in a group, knitting with yarn.\",turn to see who have bowed with a heavy stare.,\"soar towards the plateau, where they hold two rifles with flower hair on a sling rack in the lobby.\",do both sizes die up.,\"take off onto the top of a ramp, until enclosed land in the middle of the new world.\",gold0-orig,pos,unl,unl,unl,unl,They look at the various wares for sale.,Then they\nanetv_TUPCQpyoSbI,13199,\"A family eats lunch at the table together, while a 75 year old grandma knits inside of the house. She\",goes to a group to hang out with other older women who enjoy knitting as well.,is mopping through with some anger and frustration.,is holding cookie dough and very envelope with a machine ensuring that is talking to the other girl again making meat.,and kids come up to greet a soldier.,lifts an ornament from his hands together.,gold0-orig,pos,unl,unl,unl,unl,\"A family eats lunch at the table together, while a 75 year old grandma knits inside of the house.\",She\nanetv_TUPCQpyoSbI,13197,Outside a man is walking with a herd of sheep during a cold winter day. Inside of some store there,is an older woman browsing looking around at some fabric.,\"are two cars in a small field of water, while bmx skiers have run up the river in their handlers.\",are elastic and groomers taking kids running in stilts.,is two horses drawn as he takes the grass too.,are several other riders including a horse and a gymnastics medal.,gold0-reannot,pos,unl,unl,unl,pos,Outside a man is walking with a herd of sheep during a cold winter day.,Inside of some store there\nlsmdc0011_Gandhi-52653,2226,\"The Judge is flipping through documents on the case, a troubled frown on his face. At last, he\",shuts the folder and nods to the clerk.,pumps his pockets with his hands.,goes to the bed and faces someone.,pulls his sleeve up to his chest.,,gold0-orig,pos,unl,unl,unl,n/a,\"The Judge is flipping through documents on the case, a troubled frown on his face.\",\"At last, he\"\nlsmdc0011_Gandhi-52653,2227,\"He has recovered a bit more, but he still moves slowly. As someone enters, he\",\"lowers his glasses, places them on his desk, and rises, facing someone.\",holds up a pack of gum.,smashes the car.,sees a long stairway courtyard and a group of students coming out of the tunnel.,,gold0-orig,pos,unl,unl,unl,n/a,\"He has recovered a bit more, but he still moves slowly.\",\"As someone enters, he\"\nlsmdc0011_Gandhi-52653,2233,\"Featuring the reporters shrugging incredulously to each other, as they sit once more. The Advocate General\",is speaking from a folded journal.,\"addresses a man from the office, the still one on the screen, ignores her gown from before.\",looks down and has two small glasses that turns into both of his cups.,handed a piece someone half as another pass.,,gold0-orig,pos,unl,unl,unl,n/a,\"Featuring the reporters shrugging incredulously to each other, as they sit once more.\",The Advocate General\nlsmdc0011_Gandhi-52653,2229,\"The whole court rises, the astounded reporters the last of all. He\",takes the prisoner's stand.,sets the ball shades in the front of a photo frame.,\"is perhaps hopping, purposefully, having a great double time.\",\"builds a number of ping pong, while the crowd cheerleading and claps for it.\",points to the men making a hole in the wall.,gold0-orig,pos,unl,unl,unl,unl,\"The whole court rises, the astounded reporters the last of all.\",He\nlsmdc0011_Gandhi-52653,2230,He takes the prisoner's stand. He,\"looks around, a little surprised, a little affected by the demonstration.\",sniffs the last parts that can be used on.,throws the doll suit off to the side as someone walks by.,bends toward a door of great open doors and opens it.,rests his head on someone's shoulder.,gold0-orig,unl,unl,unl,unl,unl,He takes the prisoner's stand.,He\nlsmdc0011_Gandhi-52653,2232,\"He looks up at the judge. For a minute their eyes meet, the judge\",makes a little bow to someone.,pinball while last group.,points on the screen.,watches captain america with his lips open.,turns and walks away.,gold1-orig,pos,unl,pos,pos,pos,He looks up at the judge.,\"For a minute their eyes meet, the judge\"\nlsmdc0011_Gandhi-52653,2228,\"The clerk, confused as well as astonished, see the judge standing, facing someone in respect, and dutifully, he too stands. The whole court\",\"rises, the astounded reporters the last of all.\",goes wild and blank.,is ill and powerful.,stands nearby with a back to the choir.,,gold0-orig,pos,unl,unl,pos,n/a,\"The clerk, confused as well as astonished, see the judge standing, facing someone in respect, and dutifully, he too stands.\",The whole court\nlsmdc0011_Gandhi-52653,2231,\"He looks around, a little surprised, a little affected by the demonstration. He\",looks up at the judge.,folds the book and hesitates off at the same moment.,is wearing a green frock - striped with a red thin urns covering him.,pushes someone's glossy calendar back onto back.,\"looks out at the house, absently moving his hand and jogs up to the mower.\",gold0-orig,pos,unl,unl,pos,pos,\"He looks around, a little surprised, a little affected by the demonstration.\",He\nlsmdc0011_Gandhi-52653,2225,He laughs and someone struggles to join in the joke. The Judge,\"is flipping through documents on the case, a troubled frown on his face.\",grabs his push down someone.,sing smiles as the hymn plays.,yields a happy appreciative smile.,is slowly turned away from us.,gold0-reannot,pos,unl,unl,pos,pos,He laughs and someone struggles to join in the joke.,The Judge\nlsmdc0053_Rendezvous_mit_Joe_Black-71265,15863,\"Someone closes his eyes but then they flutter open, he glances up at the ceiling and finally, exhausted, falls back asleep. The great lawn infested with workmen, planting stakes, un - rolling a huge canvas tent, gardeners fashioning topiary and adding landscaping of their own, crews\",\"setting up platforms, speakers, lights.\",dunking their head in the mud.,come up from a pine table on top of the tree.,sit on one of shelves with destroyed furniture.,saloon at a cobble - capped company.,gold0-orig,pos,unl,unl,unl,unl,\"Someone closes his eyes but then they flutter open, he glances up at the ceiling and finally, exhausted, falls back asleep.\",\"The great lawn infested with workmen, planting stakes, un - rolling a huge canvas tent, gardeners fashioning topiary and adding landscaping of their own, crews\"\nlsmdc0053_Rendezvous_mit_Joe_Black-71265,15862,\"Someone sits up again, frightened, but still there is no one there, he seems fraught with indecision, should he get up, should he not, what is happening?. Someone closes his eyes but then they flutter open, he\",\"glances up at the ceiling and finally, exhausted, falls back asleep.\",flips down a tool and punches someone by the neck.,\"goes over to them and puts one fist into his belly, embracing them each other but coming running after someone.\",is trying to figure out what he is saying.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone sits up again, frightened, but still there is no one there, he seems fraught with indecision, should he get up, should he not, what is happening?.\",\"Someone closes his eyes but then they flutter open, he\"\nlsmdc0053_Rendezvous_mit_Joe_Black-71265,15861,\"All beweildered, someone looks around once more, climbs back into bed, trying to trace the source of what he has heard or has n't heard; he is not sure. He\",\"pulls the covers up now, not a sound, tries to close his eyes.\",\"lies on the floor, as he intermittently, studying someone, and folds his arms.\",grabs it and inspects the torn note.,rises to have a noise visible behind him.,\"moves flushed, as if he knows what he is doing.\",gold0-orig,pos,unl,unl,unl,unl,\"All beweildered, someone looks around once more, climbs back into bed, trying to trace the source of what he has heard or has n't heard; he is not sure.\",He\nanetv_lnvsb4-71BQ,10418,The man continues hitting the ball while speaking to the camera and holding up ping pong tools. The man,demonstrates how to properly hit the ball and move his body around and still hitting the ball.,returns to play a shot tennis against the wall and walks around the room as a ball still hangs on the side.,\"begins to play the grass with a tennis racket, hitting it back and fourth while the camera captures him from several angles.\",continues to push the ball back and fourth into the camera while the camera captures his movements.,continues hitting the ball with the racket while still speaking to the camera.,gold0-orig,pos,unl,unl,pos,pos,The man continues hitting the ball while speaking to the camera and holding up ping pong tools.,The man\nanetv_lnvsb4-71BQ,10417,A man is seen speaking to the camera while holding up several game of ping pong are played. The man,continues hitting the ball while speaking to the camera and holding up ping pong tools.,continues hitting the ball with one racket while the other continues hitting in the stick while others watch on the sides.,begins shooting the ball around onto the table while the man continues to talk.,is seen taking a crowded drink of beer and pouring it into a glass.,bends over and kneels down in front of him.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen speaking to the camera while holding up several game of ping pong are played.,The man\nlsmdc3076_THE_SOCIAL_NETWORK-35310,2728,Someone sits with his back to someone and the rest of the table. He,swivels his chair around to lock eyes with someone.,looks up at the night sky.,spreads across the orb.,\"looks bored, trying not to find her.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone sits with his back to someone and the rest of the table.,He\nlsmdc3076_THE_SOCIAL_NETWORK-35310,2727,He thoughtfully rumples his lips. Someone,sits with his back to someone and the rest of the table.,is in the shop working.,pulls a half out from a drawer.,backs the case in front of his face with cologne.,juts out his head and stock his eyes.,gold1-orig,pos,unl,unl,unl,unl,He thoughtfully rumples his lips.,Someone\nanetv_3-_Eld2NwJ0,13879,She pours sand for the boy and puts it into a bucket. She,flips over the bucket and grabs a shovel to play with.,digs out the strainer perched on a tree.,starts catching the meters in the water.,jumps off a horse.,then wipes a sink with a sponge.,gold0-orig,pos,unl,unl,unl,unl,She pours sand for the boy and puts it into a bucket.,She\nanetv_3-_Eld2NwJ0,543,She dumps it out upside down in front of her. A little boy,is sitting in the sand next to her.,carefully jumps down and gets out on top of her.,laughs as she talks over to the camera.,comes up on the monkey bars and tries to hold the pinata while many people watch and amazement.,,gold0-orig,pos,unl,unl,unl,n/a,She dumps it out upside down in front of her.,A little boy\nanetv_3-_Eld2NwJ0,13878,A woman is seen sitting on the beach with a small boy. She,pours sand for the boy and puts it into a bucket.,watches people walk over to wave with one another.,spins on the horses and throws a dart.,helps a baby under the water.,holds a lacrosse bag over her head and waves.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen sitting on the beach with a small boy.,She\nanetv_3-_Eld2NwJ0,542,A woman is putting sand into a green bucket. She,dumps it out upside down in front of her.,is mopping the floor.,throws the ball to the camera.,uses the rake to lie on the steps.,uses a brush to brush the horses mane.,gold0-orig,pos,unl,unl,unl,unl,A woman is putting sand into a green bucket.,She\nanetv_boqfpo3YAps,13658,Video footage is then shown of her running alongside a large group of people while many watch on the sides. More pictures,are shown of her finishing the race as well as others.,are shown of people playing soccer with several other people as well as jogging on skateboards.,are shown of people walking on dirt roads and pulling the snow.,are shown of the people riding and interacting with one another while a band is seen standing out and speaking with other people.,are shown of people riding in areas as well as people being interviewed and people smiling.,gold0-orig,pos,unl,unl,pos,pos,Video footage is then shown of her running alongside a large group of people while many watch on the sides.,More pictures\nanetv_boqfpo3YAps,13657,Several pictures are shown of a woman standing by herself as well as with friends. Video footage,is then shown of her running alongside a large group of people while many watch on the sides.,shows the woman speaking to the camera and shows shots of people riding around in a present.,shows him flipping as well as the people watching on.,shows several others waiting at a slope.,shows several pictures of people playing along the beach while another man behind her talks to the camera.,gold0-orig,pos,unl,pos,pos,pos,Several pictures are shown of a woman standing by herself as well as with friends.,Video footage\nanetv_IKrnz_OzqT8,14321,A man watches a performance on tv while playing a set of hand drums at home. The man,looks forward and focuses while playing the drums.,plays the drums and a flute on stage.,has sugar in his mouth and palms his hands.,gets up and walks back towards the camera.,stands up and plays a harmonica.,gold0-orig,pos,unl,unl,pos,pos,A man watches a performance on tv while playing a set of hand drums at home.,The man\nanetv_IKrnz_OzqT8,14322,The man looks forward and focuses while playing the drums. The man,leans back and plays vigorously on the drums.,speaks to the camera as the camera pans around to show what he is looking for.,is seen wearing a basketball costume and playing with hula hoops.,moves his hands up and down doing the instrument.,continues to pull the drums while the camera captures his movements.,gold0-orig,pos,unl,unl,pos,pos,The man looks forward and focuses while playing the drums.,The man\nanetv_Vshvpb9eecg,6713,A woman is seen walking into frame while speaking to the camera and putting her face in cream. The woman then,rubs the cream on her face while still speaking to the camera.,shows her finished decorating.,begins brushing the hair and looking to the camera.,applies open the makeup and sprays makeup to the eye lens.,,gold0-orig,pos,unl,pos,pos,n/a,A woman is seen walking into frame while speaking to the camera and putting her face in cream.,The woman then\nanetv_Vshvpb9eecg,6714,The woman then rubs the cream on her face while still speaking to the camera. The camera,pans around the kitchen while the woman continues to rub her hands in the lotion.,rubs her back and down her face while the camera captures her movements.,pans her around and shows off various ingredients and shows it back to the camera.,turns around to show her lemonade.,continues to move as the camera pans around and shows reactions before her laying along the side.,gold0-orig,pos,unl,unl,unl,unl,The woman then rubs the cream on her face while still speaking to the camera.,The camera\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4899,\"The students look around, nervously. Someone\",\"peers through a hole in the stone wall behind it, and sees someone and her squad.\",\"walks up to a window, raises her own head.\",is walking after people are moving down the hall.,looks at the alien as the cat kneels up to her.,moves their heads around.,gold0-orig,pos,unl,unl,unl,unl,\"The students look around, nervously.\",Someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4900,Someone sees that someone is holding someone. She,looks tearful and distressed.,is spreading the nails in someone's head.,\"drags her window, leads him to an alcove, and looks back across the rain.\",\"is crouching beside someone, but it does n't open.\",turns and looks at someone.,gold0-orig,pos,unl,unl,unl,pos,Someone sees that someone is holding someone.,She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-95097,4898,Someone's is a dog. Someone,\"produces a hare, which leaps joyfully over their heads.\",sets a candle on the wall in a private room.,snaps a photo and shows him the picture.,is reading someone's write - up.,stumbles as it lands on someone's dog.,gold1-reannot,pos,unl,unl,unl,pos,Someone's is a dog.,Someone\nlsmdc0027_The_Big_Lebowski-63018,16972,\"He has a large Western - style mustache and wears denims, a yoked shirt and a cowboy hat. We\",recognize the voice of the stranger whose narration opened the movie.,wears him fondly.,\"rides with a filthy and white ax as king, open and combat.\",\", plays like a tiny black dog as he steps away with a satisfied nod.\",waves at the cop's mouth.,gold0-orig,pos,unl,unl,unl,unl,\"He has a large Western - style mustache and wears denims, a yoked shirt and a cowboy hat.\",We\nlsmdc0027_The_Big_Lebowski-63018,16973,\"We recognize the voice of The Stranger whose narration opened the movie. Waiting for his drink, he\",looks amiably around the bar.,takes it again and got in his face.,'s seen drinking tea.,clicks the light in the glass.,,gold0-orig,pos,unl,unl,unl,n/a,We recognize the voice of The Stranger whose narration opened the movie.,\"Waiting for his drink, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9224,He flies up in a spiral of black smoke. People,\"turn in circles, but can see no sign of him.\",watching him stand and then time to someone.,run like a second bus.,look at someone with a blazing derby.,,gold0-orig,pos,unl,unl,unl,n/a,He flies up in a spiral of black smoke.,People\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9228,\"They change form, and shoot into the sky, the cloud of black spell. They\",\"attack someone house, which bursts into flames.\",run with the product and lift someone over their shoulders.,get into his car and step out.,\"stick, far all supporters threw the sign.\",,gold1-orig,pos,unl,unl,unl,n/a,\"They change form, and shoot into the sky, the cloud of black spell.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9220,\"Hearing something, he starts to run again. Someone\",is a little way behind.,is sitting in an armchair in the cemetery.,\"comes over, breaking up thought.\",is playing but he throws him away.,,gold0-orig,pos,unl,unl,unl,n/a,\"Hearing something, he starts to run again.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9233,\"Someone nods to someone, then walks along the corridor. Someone leaps on someone's back and he\",staggers away with her.,lifts the weight to his chest.,is bathed in flames.,watches a fiery blast from a spacecraft sprayed out of the binoculars.,leads someone back down the club.,gold0-orig,pos,unl,unl,unl,pos,\"Someone nods to someone, then walks along the corridor.\",Someone leaps on someone's back and he\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9214,Someone races out of the house. She,laughs and sprints away.,grabs the phone and hugs a photographer.,looks at him but does not look at her across the eye.,notices someone standing nearby.,closes her eyes and walks away.,gold1-orig,pos,unl,unl,unl,pos,Someone races out of the house.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9210,\"Someone walks out, followed by someone. Someone\",looks out into the night.,jumps around and pulls away from people.,gulps hard as he gets up.,crashes down a flight of wooden stairs.,\"stops, looks up at someone, then nods.\",gold1-orig,pos,unl,unl,pos,pos,\"Someone walks out, followed by someone.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9216,Someone dashes through a gap in the flames. It,\"closes, preventing someone giving chase.\",wears a black helmet.,\"smashes into the figure's hand, bringing our view back to their spotlight.\",\"dissolves through one of the windows, which is blocked by the other men.\",explodes in the storage room.,gold0-orig,pos,unl,unl,unl,unl,Someone dashes through a gap in the flames.,It\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9227,People join them on the island. They,\"form a circle, back - to - back, wands poised.\",come to see someone drawing the highlights of the shots.,speedily navigate the water and approaches the river.,fly into the sky.,,gold1-orig,pos,unl,unl,unl,n/a,People join them on the island.,They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9211,Someone looks out into the night. Someone,steps forward with a concerned expression.,walks to the car and pulls up snow's hood.,is lying on the floor next to someone.,and someone wash the dishes and get to the front table.,looks up a couple of steps.,gold0-orig,pos,unl,unl,unl,unl,Someone looks out into the night.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9219,\"Someone stands still, surrounded by the swaying reeds. Hearing something, he\",starts to run again.,tries to start to steer.,looks at the second ship.,waves to someone and starts on west along with others as he boards the bus.,sees for what he has done.,gold0-orig,pos,unl,unl,unl,unl,\"Someone stands still, surrounded by the swaying reeds.\",\"Hearing something, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9229,\"He finds his family safe, watching their house burn. He\",puts an arm around his wife.,thrusts two cash in the bin.,closes a door of a wagon and drives them.,searches for someone's wallet then walk toward the general store.,,gold0-orig,pos,unl,unl,unl,n/a,\"He finds his family safe, watching their house burn.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9213,\"In a swirl of black, someone appears. Someone\",races out of the house.,sags as the vigorous effort now picks up the locket.,\"blocks her reach, then soars through the air, followed by someone.\",'s family raises up on the performance screen.,sits behind a desk with makeup items.,gold1-orig,pos,unl,unl,unl,pos,\"In a swirl of black, someone appears.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9225,\"People turn in circles, but can see no sign of him. They\",take refuge on a small island of sand.,opens the door of someone's house and enters an old campus with a bent - faced kid.,\"kiss, forming a wave onward after him.\",stand over the sun - tranquil ice across the pond.,,gold0-orig,pos,unl,unl,unl,n/a,\"People turn in circles, but can see no sign of him.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9221,She steps back as a figure emerges from the reeds. The figure,is tall with a thin face and beard.,shows a resigned move.,swims out from beneath a skylight.,drops slides in front of his eyes.,looks up from the procession view.,gold0-reannot,pos,unl,unl,unl,pos,She steps back as a figure emerges from the reeds.,The figure\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9209,\"Later, the front door of the house opens. Someone\",\"walks out, followed by someone.\",follows someone out of the floor as he climbs in.,'s backpack shows an array of dried shrubs.,checks her vodka pistol.,throws an apple in a garbage can.,gold1-reannot,pos,unl,unl,unl,pos,\"Later, the front door of the house opens.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9226,\"On their tiny island, people fend off attacks with their wands. People\",join them on the island.,walk on in shot to an cottage garden.,move up and out of the carriages.,walk up to the pavement.,,gold1-reannot,pos,unl,unl,pos,n/a,\"On their tiny island, people fend off attacks with their wands.\",People\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9232,She heads back the way they came. Someone,\"nods to someone, then walks along the corridor.\",runs after someone who rides up the staircase on an overcast day in a huff.,glances back at the stack of diagrams and looks under them and knocks them into the panel.,\"touches her lower knee, followed by people.\",catches his eye and tries to find.,gold0-reannot,pos,unl,unl,unl,unl,She heads back the way they came.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9223,He stops and smiles menacingly. Someone,appears behind someone and raises his wand.,glances around as someone takes their father out.,primps his hair and looks.,measures herself in the hand.,drops the tray from another table.,gold0-reannot,pos,unl,pos,pos,pos,He stops and smiles menacingly.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72526,9222,The figure is tall with a thin face and beard. He,stops and smiles menacingly.,stares up at a gleaming golden light within it.,adjusts his helmet as she sleeps in her same white chair.,\"leans forward, clutching someone's sword.\",,gold0-reannot,pos,pos,pos,pos,n/a,The figure is tall with a thin face and beard.,He\nlsmdc1007_Spider-Man1-74753,11354,\"He goes limp and falls towards the ground. Someone, on his glider,\",catches the unconscious figure and takes him to a rooftop.,\"peer up at the blade, shuts his eyes and sneers.\",\"begins to climb over the dashes, moving dangerously close.\",is silhouetted against the sunlight.,gazes up at the trees.,gold0-orig,pos,unl,pos,pos,pos,He goes limp and falls towards the ground.,\"Someone, on his glider,\"\nlsmdc1007_Spider-Man1-74753,11353,Vapor seeps out from the back of the Green someone's gloves straight into the face of someone who's hanging upside down. He,goes limp and falls towards the ground.,\"moves to someone, walks out of the doorway, and they are shivering.\",holds the wand over his head.,becomes 100 feet in front of someone.,,gold0-orig,pos,unl,unl,unl,n/a,Vapor seeps out from the back of the Green someone's gloves straight into the face of someone who's hanging upside down.,He\nanetv_YoXZfvf5Teg,19797,The woman then puts her fingers onto the strings and with her other hand she touches and points on her fingers on the strings as well as taking the bow to her strings every now and then. The woman,talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions.,\"gently grabs the shoe a bit and then finishes, after she is finished she chops.\",then pulls the screen out of the room and lays it on all sides.,continues to dance more and ends by the audience.,walks around while doing another with some still moving and people twirling and signing.,gold0-orig,pos,unl,unl,unl,unl,The woman then puts her fingers onto the strings and with her other hand she touches and points on her fingers on the strings as well as taking the bow to her strings every now and then.,The woman\nanetv_YoXZfvf5Teg,19796,The woman puts the violin up to her chin and continues to talk. The woman then puts her fingers onto the strings and with her other hand she,touches and points on her fingers on the strings as well as taking the bow to her strings every now and then.,\"begins dancing about the side, while her ballet movements continues as the woman finishes her performance.\",spreads the box over and dips it carefully using the sax and then rings the resistance once again.,gets up and begins moving her arm children scarf around and her back before smiling at the camera.,gets back on her feet to tack the bongos and begins to put off the tape with the baton.,gold0-orig,pos,unl,unl,unl,unl,The woman puts the violin up to her chin and continues to talk.,The woman then puts her fingers onto the strings and with her other hand she\nanetv_YoXZfvf5Teg,19794,\"The intro is a white screen, the website on the top left, the words Howcast original appear and afterwards another set of words describing the lesson appear and it reads Vibrato Beginner Violin Lessons. A woman named Julie Artzt Becker\",is holding her violin is sitting and talking in front of a blue screen.,is shown as some words float across the screen to perform a wakeboarding stand inside a school.,\"appears on screen and then everything works out in an interview on samantha's body, as she continues to bowl.\",is on congas in front of a large crowd of people.,,gold0-orig,pos,unl,unl,pos,n/a,\"The intro is a white screen, the website on the top left, the words Howcast original appear and afterwards another set of words describing the lesson appear and it reads Vibrato Beginner Violin Lessons.\",A woman named Julie Artzt Becker\nanetv_YoXZfvf5Teg,19798,The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions. Eventually the woman,stops talking and ends with a smile and the words howcast original appear on the white screen.,begins to spike the piercing ferociously into a rubik's chest.,\"are dressed in a white room, and they are holding bows above their heads.\",takes a look on her phone while explaining the performances she is holding as she talks about her movements.,,gold0-reannot,pos,unl,unl,pos,n/a,The woman talks throughout the entire video as she's demonstrating her movements or pointing towards her finger motions.,Eventually the woman\nanetv_YoXZfvf5Teg,19795,A woman named Julie Artzt Becker is holding her violin is sitting and talking in front of a blue screen. The woman,puts the violin up to her chin and continues to talk.,is standing behind a group of women with yarn and bags.,\"talks to two women in costume as she plays her sat bag, and plays with her tantrum.\",is suddenly wearing the orange sweater and walks backwards behind the camera with them.,is holding the stick of wax on the palm sharpener and talking about it.,gold0-reannot,pos,unl,unl,unl,unl,A woman named Julie Artzt Becker is holding her violin is sitting and talking in front of a blue screen.,The woman\nanetv_vcl8rFSCH4w,7433,A close up of people are shown sitting on a snowy hill and looking to the camera. The people then all,ride in tubes down the snowy trail with one moving around at the bottom.,turn around and move crashing into one another and getting one out.,talking to the camera and shows more clips of him riding down a hill.,ride around and ends with the people riding on bikes.,going up and down their bodies while the camera captures their movements.,gold1-orig,pos,unl,unl,unl,pos,A close up of people are shown sitting on a snowy hill and looking to the camera.,The people then all\nanetv_H80bs53Arrw,4925,She begins to use the hula hoop. She,lays down on the ground and uses the hula hoop on her foot.,starts performing hula hoops with hula hoop.,picks up the hula hoop in the end of the hula hoop in the center of the hula hoop.,tries to turn the hoops every time.,cuts a ponytail circle hula hoop on her belly.,gold0-orig,pos,unl,unl,unl,unl,She begins to use the hula hoop.,She\nanetv_H80bs53Arrw,8277,A woman speaks the the camera while spinning a hula hoop around her arm. the woman then,takes the hula hoop and places it around her hips.,continues spinning around and ends by jumping down on a string being followed by several clips of artists around.,spins the red hula girls style hula hoop around her body for the hula.,begins speaking to the camera and smiling to the camera.,,gold1-orig,pos,unl,pos,pos,n/a,A woman speaks the the camera while spinning a hula hoop around her arm.,the woman then\nanetv_H80bs53Arrw,4924,A woman is standing in a room holding a hula hoop. She,begins to use the hula hoop.,is then shown standing by a hoop holding a hula hoop.,begins to hula hoop and begins to hula hoop while looking at its keyboard.,spins to get an orange ball across her mouth.,is using her hula hoop on the floor.,gold0-orig,pos,unl,unl,unl,pos,A woman is standing in a room holding a hula hoop.,She\nanetv_H80bs53Arrw,8278,The woman then takes the hula hoop and places it around her hips. the woman,demonstrates how to use the hula hoop in the traditional way.,\"then ballet begins and the woman continues facing the other girl, leaving the pose as the adult finishes speaking again.\",then describes the braid with her hands and stirs the larger while again guiding her mouth with her hands.,is recording a small area next.,begins pushing the hoop around the woman screwing her arms up and ends by giving her the barbie and bending her feet.,gold0-reannot,pos,unl,unl,unl,unl,The woman then takes the hula hoop and places it around her hips.,the woman\nlsmdc0012_Get_Shorty-53402,19400,As people enter the restaurant. Someone,\"checks out the bar, sees they are n't there, then looks up at the railing.\",\"shoots someone a stricken glance, then clenches the cigarette.\",\"returns to someone, who shakes a terrified hand and throws it to him.\",is in shopping positions outside the restaurant holding a baby seated in a chair.,\"heads off, then returns her attention to someone's apartment table.\",gold0-reannot,pos,unl,unl,unl,unl,As people enter the restaurant.,Someone\nlsmdc3081_THOR-37869,3251,\"Someone drives west toward the setting sun. In Asgard, someone and his mother someone\",\"sit on either side of someone, who lies in a bed beneath a translucent golden barrier.\",carry a small stack of noodles.,pat each other on the shoulder.,mold a cage with collapsible waterfalls and railing.,fill the rapid yellow fire.,gold0-orig,pos,unl,unl,unl,unl,Someone drives west toward the setting sun.,\"In Asgard, someone and his mother someone\"\nanetv_2VYQ4q24D-4,16292,\"Two cars are parked on the side of the road as train passes by. All of a sudden, the angle shifts and a boy\",begins skateboarding down the hill and throughout the city.,passes to sweep it at the same man.,continues to show how to drive the bowling ball.,grabs the steering wheel.,is taking turns then sitting on a bike seat.,gold0-orig,pos,unl,unl,unl,unl,Two cars are parked on the side of the road as train passes by.,\"All of a sudden, the angle shifts and a boy\"\nlsmdc0022_Reservoir_Dogs-59172,5757,\"Someone explodes, raising his gun and charging towards someone. Someone\",calms down and puts his gun away.,\"goes before someone, hitting a building fry in the air.\",picks up a pen and peeks up at him.,prepares to take off the cape as someone forces away.,\"attacks someone, who quizzically whispers to the camera and fights with it.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone explodes, raising his gun and charging towards someone.\",Someone\nanetv_lmcBk-gqMzA,3713,A woman in a green shirt is holding two brushes in her hands. She,starts brushing a brown horse next to her.,begins brushing her hair on her back.,begins polishing her shoes off.,holds her hair up in front of her face.,,gold1-orig,pos,unl,unl,pos,n/a,A woman in a green shirt is holding two brushes in her hands.,She\nanetv_lmcBk-gqMzA,14024,She picks up a brush and starts brushing the horse. She,picks up another brush and brushes the horse.,then brushes her teeth with a pink brush then brushes the teeth.,\"continues to brush the horses mane, then pinches the bottom of the flap.\",takes the doll and sits on the horse.,,gold1-orig,pos,unl,unl,unl,n/a,She picks up a brush and starts brushing the horse.,She\nanetv_lmcBk-gqMzA,14023,A woman in a green shirt is standing next to a brown horse. She,picks up a brush and starts brushing the horse.,sharpens the wood to secure it.,\"follows, and using a stepper on the floor.\",bends around and lays her hand on the woman's head.,,gold0-orig,pos,unl,unl,unl,n/a,A woman in a green shirt is standing next to a brown horse.,She\nanetv_lmcBk-gqMzA,3714,She starts brushing a brown horse next to her. She,picks up the other brush and brushes the horse.,starts brushing the horse green.,rakes the horse around her and drops it on the horse's tail.,trims the horse for the crowd.,starts brushing the horse's mane and hooves.,gold1-reannot,pos,unl,unl,unl,pos,She starts brushing a brown horse next to her.,She\nanetv_eL0LrJio1XE,12138,People rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road. The shadows of a biker,cast on the bumpy road.,drive on in competition of terrain.,are shown that include helmets and skiers on the right side of the field getting thrown to get down.,is shown in the driveway at a newsstand.,are shown going down the motocross track.,gold0-orig,pos,unl,unl,pos,pos,People rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road.,The shadows of a biker\nanetv_eL0LrJio1XE,12137,A bike stands on a bumpy unpaved road. People,rides bikes very fast in the road and giving high jumps when passing the bumpy part of the road.,are in the dirt on a hill in the middle of city as people are in a pile of snow.,spin on the machine in front of the wheel.,watch from the top of the hill.,are doing turns in the snow.,gold0-orig,pos,unl,unl,unl,unl,A bike stands on a bumpy unpaved road.,People\nanetv_19fGZFUE7yE,17237,We see a game of poker being played. An odd man,appears in front of the camera.,puts on swipes which plays with action from another portion of the room.,is shown dealing cards and cards.,throws the ball in the air.,is shown waching on the floor.,gold0-orig,pos,unl,unl,unl,unl,We see a game of poker being played.,An odd man\nanetv_19fGZFUE7yE,17236,A group of people walk by in the background. We,see a game of poker being played.,see people running in the field.,see a lady riding a bike on the beach.,see the hockey in slow motion.,,gold1-orig,pos,unl,unl,unl,n/a,A group of people walk by in the background.,We\nanetv_19fGZFUE7yE,17234,A man in a black tuxedo is speaking to the camera. A person,walks by in the background.,is riding a lawn mower across a lawn.,in a black and white shirt is cutting another man's hair.,in a red shirt is walking happily around the field.,'s dog is shining off of his shoe.,gold0-orig,pos,unl,unl,unl,unl,A man in a black tuxedo is speaking to the camera.,A person\nanetv_19fGZFUE7yE,17238,\"An odd man appears in front of the camera. We see the first man, then cards being dealt and we\",fade to a black screen.,see two teams playing guitars.,see the title results and a black box on the board.,see all of them using a rag.,see the man talking all the distance and shows more clips of the man being played on the ground.,gold0-reannot,pos,unl,unl,unl,unl,An odd man appears in front of the camera.,\"We see the first man, then cards being dealt and we\"\nanetv_19fGZFUE7yE,17235,A person walks by in the background. A group of people,walk by in the background.,bows on the screen with one team play.,are siting on exercise.,are by and cartwheels around.,are marching on front of the real race.,gold1-reannot,pos,unl,unl,unl,unl,A person walks by in the background.,A group of people\nlsmdc0005_Chinatown-48298,368,\"Cross starts to reply, then there's the sound of a mariachi band and some men in formation clear a bluff about a hundred yards off. They\",are dressed like spanish dons on horseback.,\"walk backwards in front of him; suddenly, as he stops his brother's left just scuttles behind and reaches for the door.\",jump up and forth several times.,begin to coast up a grand stream.,are trying to get out.,gold1-orig,pos,unl,unl,unl,unl,\"Cross starts to reply, then there's the sound of a mariachi band and some men in formation clear a bluff about a hundred yards off.\",They\nanetv_mnS-nMZne3I,14276,He jumps on the diving board several times and jumps into a pool. The man,surfaces and stands up in the pool.,is shown again spinning himself one at a time.,flips and turns and falls backward from the pool board.,removes himself and dives into the pool.,flips backwards and does a high dive into the water.,gold0-orig,pos,unl,unl,pos,pos,He jumps on the diving board several times and jumps into a pool.,The man\nanetv_mnS-nMZne3I,14275,A man walks onto a diving board. He,jumps on the diving board several times and jumps into a pool.,sails backward and backwards dives.,gets off the board and stands onto a trampoline.,is balanced on a large boat.,,gold0-orig,pos,unl,pos,pos,n/a,A man walks onto a diving board.,He\nlsmdc3090_YOUNG_ADULT-44094,15287,Someone walks across the parking lot to her car. She,stares at the front someone then crouches and inspects the damage.,bumps for the car.,goes upstairs to find someone getting into his car.,pulls him to the top of a bed.,is in a pickup and is shocked to see that someone is getting out of her car.,gold0-orig,pos,unl,unl,unl,pos,Someone walks across the parking lot to her car.,She\nlsmdc3090_YOUNG_ADULT-44094,15291,Two girls chat at the counter. She picks it up and,checks the caller i d. ,presents it to her father.,\"enters, the closer look on her face.\",takes him one hand which doffs its someone.,heads towards a stove.,gold0-orig,pos,unl,unl,unl,unl,Two girls chat at the counter.,She picks it up and\nlsmdc3090_YOUNG_ADULT-44094,15284,\"Later, someone drives into the hotel parking lot. She\",turns into a parking space and smashes into a lamp post.,moves to the stables below.,\"goes on, snaps off her thoughts.\",parks the suv by the rail and dashes through a parked car.,jogs to the curb and approaches one desk.,gold0-orig,pos,unl,unl,unl,pos,\"Later, someone drives into the hotel parking lot.\",She\nlsmdc3090_YOUNG_ADULT-44094,15290,Someone eats as she types on her laptop. Two girls,chat at the counter.,takes picture of their childhood.,are zig - costumed and nervous.,stare at each other.,,gold0-orig,pos,unl,unl,pos,n/a,Someone eats as she types on her laptop.,Two girls\nlsmdc3090_YOUNG_ADULT-44094,15288,She stares at the front someone then crouches and inspects the damage. Someone,stands and walks off.,\"stands holding a mallet, staring up at the photo, a tall, green plainly complex.\",shuts the door behind her.,gazes solemnly into the hallway.,slams the doors shut.,gold0-orig,pos,unl,pos,pos,pos,She stares at the front someone then crouches and inspects the damage.,Someone\nlsmdc3090_YOUNG_ADULT-44094,15289,Someone stands and walks off. Someone,eats as she types on her laptop.,looks down at someone.,walks up front the illuminated route of st.,greets guests at a small table.,jogs toward a engine room and lights a cigar as he enters the chopper.,gold1-orig,pos,unl,unl,unl,unl,Someone stands and walks off.,Someone\nlsmdc3090_YOUNG_ADULT-44094,15286,\"Later, she grimaces as she pulls the weave out of her hair. Someone\",walks across the parking lot to her car.,\"removes her perfume from someone's bath, then jumps off.\",\"wrings their hands around the urn of her, clasps his hands together forward and raises her shields and smile.\",\"steps out, then glances over her shoulder and punches a bug downstairs.\",\"hugs him, she wraps his arms around him and kisses him.\",gold0-orig,pos,unl,unl,unl,unl,\"Later, she grimaces as she pulls the weave out of her hair.\",Someone\nlsmdc3090_YOUNG_ADULT-44094,15283,\"Smiling at one another, they touch glasses then finished their drinks. Later, someone\",drives into the hotel parking lot.,stands against a debris - strewn desk.,sits on an orange bench and shakes her hands.,and someone sit across a table and look at tv.,sits at someone's desk.,gold0-reannot,pos,unl,unl,unl,pos,\"Smiling at one another, they touch glasses then finished their drinks.\",\"Later, someone\"\nanetv_2GACaR0GdD8,16339,Two people are riding through the forest on horseback. The girls riding horses,stop for a moment and begin to pose for the camera.,are away from each other.,ride out of the barn.,are behind the horses.,drive along a dirt trail.,gold0-orig,pos,unl,unl,unl,unl,Two people are riding through the forest on horseback.,The girls riding horses\nanetv_2GACaR0GdD8,13866,One of the people stops the horse and dismounts. The person,remounts the horse and continues riding down the path.,jumps over the bar three times.,stops the legs of the horse.,is then pushed down the slope on the side of the horse.,saddle up and drops it.,gold0-orig,pos,unl,pos,pos,pos,One of the people stops the horse and dismounts.,The person\nanetv_2GACaR0GdD8,13865,Two people ride horses down a forest path. One of the people,stops the horse and dismounts.,jumps off some with flags.,rides a horse down the hill.,starts walking back down the road.,take turns running down a street.,gold0-orig,pos,unl,unl,unl,unl,Two people ride horses down a forest path.,One of the people\nanetv_2GACaR0GdD8,16340,The girls riding horses stop for a moment and begin to pose for the camera. To end the video the girls,ride off into the distance on their horses.,\"hug and stir, then talk about one another.\",continue riding each other on the roads followed by the others with the brothers some more.,get on the rope and ride up.,,gold0-orig,pos,unl,unl,pos,n/a,The girls riding horses stop for a moment and begin to pose for the camera.,To end the video the girls\nanetv_2GACaR0GdD8,13864,A still image of an individual standing by a horse is shown. Two people,ride horses down a forest path.,are seen running together as the portrait cut into the destination's conclusion.,walk a horse and two horses.,\"are then shown performing tricks, and other applauding and speaking on a pair of seats.\",,gold0-reannot,pos,unl,unl,pos,n/a,A still image of an individual standing by a horse is shown.,Two people\nanetv_QCcueK6xiZ4,1136,Several cars are parked in a parking lot. People,are seeing washing the cars with soap and water.,are on stationary bikes going fast.,are riding in the street by cars.,are riding bumper cars in a carnival.,cross a blue limousine.,gold0-orig,pos,unl,pos,pos,pos,Several cars are parked in a parking lot.,People\nanetv_QCcueK6xiZ4,1135,\"A man is crouching on the ground, cleaning something. Several cars\",are parked in a parking lot.,are pulling around in circles.,are shown at the pump.,are still in the street.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is crouching on the ground, cleaning something.\",Several cars\nanetv_aEpRYY_wi0M,3517,More picture are shown of people fixing bikes. Several more pictures,are shown of people working bikes.,are shown in the car.,are shown flipped over and cutting on a rope.,are shown of a race as well as people trimming the sports and others watching on the sides and panning down the mountains.,are shown doing the bike really dangerous.,gold0-orig,pos,unl,unl,unl,unl,More picture are shown of people fixing bikes.,Several more pictures\nanetv_aEpRYY_wi0M,14957,A photo of two men working on a bike. More text,overlayed saying we meet three times a week.,has shown for the video sequence.,is shown that shows the men working.,is shown of the company.,is shown of the kitchen.,gold0-reannot,pos,unl,unl,unl,unl,A photo of two men working on a bike.,More text\nanetv_aEpRYY_wi0M,3516,A picture of a building is shown followed by picture of people working. More picture,are shown of people fixing bikes.,is shown of a man running with flowers in growing water.,is then shown of the men walking on the bike with a young child.,shows with the camera getting fourth to the floor as well as a close up moves of cleaning.,,gold0-reannot,pos,unl,unl,unl,n/a,A picture of a building is shown followed by picture of people working.,More picture\nanetv_Kt1JpqwDvl8,5174,\"A person vacuum the inside of a car, while other men clean by hand the car with detergent and water. Then, a man\",dry the car with clothes.,appears against the wall and removes a rubber rocket.,uses the tool and cleans the car using duct tape to wipe clean the windshield cleaning on the tire.,does an exercise have a tire around the car cold and puts it on the car.,clean the water ski with a rag.,gold0-orig,pos,unl,unl,unl,unl,\"A person vacuum the inside of a car, while other men clean by hand the car with detergent and water.\",\"Then, a man\"\nanetv_Kt1JpqwDvl8,5175,\"Then, a man dry the car with clothes. Other cars\",are washed in a automatic car machine.,are pulled by a car.,are parked outside the room.,appear on a big replace ramp.,,gold1-orig,pos,unl,unl,unl,n/a,\"Then, a man dry the car with clothes.\",Other cars\nanetv_Kt1JpqwDvl8,5176,\"Other cars are washed in a automatic car machine. After, people\",cleans the car with cloths inside and outside by hand.,reach the air and aim at the roof.,get out of the car and put underneath the spackling.,are shown skiing down a railway street.,take huge steps through combined water.,gold0-reannot,pos,unl,unl,unl,unl,Other cars are washed in a automatic car machine.,\"After, people\"\nanetv_GBTpVjwLxe0,1219,A kayak rider paddles against the current and maneuvers back and forth with his hips and paddle. The kayak rider,dips into the water and recovers.,rides the dirt to the second man towards the raft.,begins to leap through the rough waters of the track.,is shown skiing in the water near his surfboard with his hands shaking and his movements.,dips the water onto the surfboard.,gold0-orig,pos,unl,unl,unl,unl,A kayak rider paddles against the current and maneuvers back and forth with his hips and paddle.,The kayak rider\nlsmdc1029_Pride_And_Prejudice_Disk_One-83513,4655,She gives a good - natured shrug and carries on her way. She,\"trots over the field towards netherfield hall, standing proudly in the distance.\",\"catches her in his arms, then bag his shoulders.\",returns with the pregnancy kit.,lights the bumper button.,frowns as the young women disappear under the cloudy sky.,gold1-orig,pos,unl,unl,unl,pos,She gives a good - natured shrug and carries on her way.,She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83513,4656,\"She trots over the field towards Netherfield Hall, standing proudly in the distance. As she gets closer, she\",walks under the shadow of a tree.,takes a leafy break and climbs back onto his back.,finds every panel of way - police tires and the whole door.,turns to the others bearing their neon sign.,reaches for her toes to react but she touch her back.,gold0-orig,pos,unl,unl,unl,unl,\"She trots over the field towards Netherfield Hall, standing proudly in the distance.\",\"As she gets closer, she\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83513,4657,Now someone is sitting on someone's sickbed. She,gently strokes her sleeping sister's face.,gets into the bus and runs out the window.,pinches her toes together as she examines her diamond necklace in a mirror.,sips a cup of water and takes a drink.,sits up in bed.,gold0-orig,pos,unl,unl,pos,pos,Now someone is sitting on someone's sickbed.,She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83513,4658,She gently strokes her sleeping sister's face. Someone,slowly opens her eyes and looks weakly at someone.,glances around the gloomy windows.,curls in her hair.,pulls off his beloved and prepares a shot.,,gold0-orig,pos,unl,unl,unl,n/a,She gently strokes her sleeping sister's face.,Someone\nanetv_oeSyeZqlC1g,17727,An adult and several teen in canoes holds paddles. The man,shows the teens how to move the oars.,rides the camel with his arms.,helps the boy on the horse deck.,\"gets out of the canoe wearing a yellow raft, then other rider doing water.\",,gold0-orig,pos,unl,unl,unl,n/a,An adult and several teen in canoes holds paddles.,The man\nanetv_oeSyeZqlC1g,17728,The man shows the teens how to move the oars. The teens,follow the instructions of the man and row the oars.,gives each man a thumbs up.,folds themselves around various inflated clamps.,stays on their tubes.,\"turn and ride a foot sign, then kiss.\",gold0-orig,pos,unl,unl,unl,unl,The man shows the teens how to move the oars.,The teens\nlsmdc1031_Quantum_of_Solace-84342,14714,He pulls her back down on to a bed. Dj,plays under a full moon.,scans the half room.,opens the front door and he climbs into a room filled with balls and toys.,\"looks on, as she leads her to the elevator.\",watch the television on a wistful day.,gold1-orig,pos,unl,unl,unl,pos,He pulls her back down on to a bed.,Dj\nlsmdc1031_Quantum_of_Solace-84342,14716,A Range Rover pulls up at the entrance. Someone,\"gets out, accompanied by someone in a glamorous black and gold dress.\",rides back down a narrow street between town and the vintage hotel.,enters with a cafe.,speeds his way to a corner.,\"aims to the house and slides gingerly to the floor, running through a hillside covered with broken stones.\",gold0-orig,pos,unl,unl,unl,unl,A Range Rover pulls up at the entrance.,Someone\nlsmdc1031_Quantum_of_Solace-84342,14711,Tousle - headed someone puts down his champagne glass and heads back to the bedroom. He,kisses her naked back.,follows someone up his ladder to the front door.,\"comes in, sipping a bottle of whiskey as a couple pours cups of coffee into her mouth.\",moves into the kitchen where they find plates of fruit.,presses his lips together in a grim determination.,gold1-orig,pos,unl,unl,unl,pos,Tousle - headed someone puts down his champagne glass and heads back to the bedroom.,He\nlsmdc1031_Quantum_of_Solace-84342,14713,She smiles and turns her face towards him. He,pulls her back down on to a bed.,kisses someone someone's head and nods.,shakes someone's hand and smiles at him.,takes out his claw - like package.,turns away and walks off.,gold0-orig,pos,unl,unl,unl,pos,She smiles and turns her face towards him.,He\nlsmdc1031_Quantum_of_Solace-84342,14715,Trays are being served and cocktails sipped. A Range Rover,pulls up at the entrance.,is in man versus formal yielding pool.,moves to the grassy trees surrounded.,trundles from the compound.,,gold0-orig,pos,unl,unl,pos,n/a,Trays are being served and cocktails sipped.,A Range Rover\nlsmdc1031_Quantum_of_Solace-84342,14704,They are led through the airy tile and marble halls. Someone,\"casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone.\",cups up along the walls below the narrow village.,sits up as a desk.,\"'parlor light is, coming from inside.\",are holding and lighting painting floor - basement windows.,gold1-orig,pos,unl,unl,unl,unl,They are led through the airy tile and marble halls.,Someone\nlsmdc1031_Quantum_of_Solace-84342,14707,He takes off his jacket and walks into the bathroom. Someone,\"grins, and goes to the bedroom.\",trots for a circuit.,\"enters a berth, using her hand.\",runs over to his mom then guides his men around.,takes off the sweater.,gold0-orig,pos,unl,unl,unl,pos,He takes off his jacket and walks into the bathroom.,Someone\nlsmdc1031_Quantum_of_Solace-84342,14709,Someone answers the door naked. Someone,hands him an envelope.,sits on the mat.,emerges from the shower lot.,is lying on a bed with two kids.,takes out his earpiece.,gold0-orig,pos,unl,unl,unl,unl,Someone answers the door naked.,Someone\nlsmdc1031_Quantum_of_Solace-84342,14710,Someone hands him an envelope. Tousle - headed someone,puts down his champagne glass and heads back to the bedroom.,is pulled awake in a night raincoat.,\"takes out a mouthful of food and strides into the kitchen, then steps out.\",\"looks down to the lower relatively, then removes his heels.\",thumbs the commands on his motorcycle.,gold0-orig,pos,unl,unl,unl,unl,Someone hands him an envelope.,Tousle - headed someone\nlsmdc1031_Quantum_of_Solace-84342,14712,He kisses her naked back. She,smiles and turns her face towards him.,pulls up against a anti - tick - rise awning and turns a corner.,spots someone on his way back.,wraps his legs around her and pulls her close to him.,stares down and wiggles his hand as she gazes dreamily at her black raven hair.,gold0-orig,pos,unl,unl,unl,pos,He kisses her naked back.,She\nlsmdc1031_Quantum_of_Solace-84342,14706,She stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom. He,takes off his jacket and walks into the bathroom.,smacks the phone on his breast and hurls it at an open laptop.,sets down her cigarette and carries over to a table next to a pile of folders files.,kisses her brow then points towards his neck.,,gold0-reannot,pos,unl,unl,pos,n/a,She stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom.,He\nlsmdc1031_Quantum_of_Solace-84342,14705,\"Someone casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone. She\",stands looking lost as he casts a critical eye over the bedroom and marble on - suite bathroom.,walks her two further through the viewfinder.,sits with his arms folded on a podium.,holds the window in the house.,\"beams at him, wearing plush leather boots.\",gold0-reannot,pos,unl,unl,unl,pos,\"Someone casually tosses the keys on a sofa and strides through the spacious, modern furnishings eyed by someone.\",She\nanetv_qcA3mFHfo84,15669,A girl is shown several times running on a track. She,uses a pole to vault over a bar.,dives into the water.,runs down the track and throws her javelin.,flips off the bar onto a mat.,\"runs and jumps, landing getting ready to do sit flips.\",gold0-orig,pos,unl,unl,unl,unl,A girl is shown several times running on a track.,She\nanetv_qcA3mFHfo84,15670,She uses a pole to vault over a bar. She,lands on a mat on the other side.,\"chops a counter once, then does a cartwheel and keeps it.\",goes backwards several times.,glances over then goes.,,gold0-orig,pos,unl,unl,pos,n/a,She uses a pole to vault over a bar.,She\nanetv_Upd7zpT6tuc,8342,A girl waves at the camera before we see a baseball field. Someone,\"hits the ball, and runs to first base.\",throws at a ball.,cuts the grass with a lacrosse brush.,sits next to someone.,is watching the display.,gold0-orig,pos,unl,unl,pos,pos,A girl waves at the camera before we see a baseball field.,Someone\nanetv_Upd7zpT6tuc,16552,One kicks a ball in the air. She,runs toward a base.,hits another man with the stick.,holds a large bat away.,begins swinging the dog.,,gold0-orig,pos,unl,unl,unl,n/a,One kicks a ball in the air.,She\nanetv_Upd7zpT6tuc,16551,Several athletes are in a field. One,kicks a ball in the air.,is playing a game of tug of war in a field outside.,throws a ball onto the padded.,juggles the ball into the goal in a goal.,,gold0-orig,pos,unl,unl,unl,n/a,Several athletes are in a field.,One\nanetv_Upd7zpT6tuc,8343,\"Someone hits the ball, and runs to first base. A kicker wearing sunglasses\",\"walks over to the camera, talking.\",holds a violin against his neck.,is sitting in the middle of the union.,shakes his shot as he shares his face.,smashes the old man down into bed.,gold0-orig,pos,unl,unl,unl,unl,\"Someone hits the ball, and runs to first base.\",A kicker wearing sunglasses\nanetv_Upd7zpT6tuc,16553,She runs toward a base. She then,runs around to the home plate.,presents a can of paint.,lands to side lanes of glass.,puts sticks in her hands and attempts to use the cymbals while pausing to speak and text.,drums some other lines with her drumsticks.,gold0-orig,pos,unl,unl,unl,unl,She runs toward a base.,She then\nanetv_L35c6QI1l_0,17500,A man wearing a safari hat leads a group of camels with riders in a single file. The camera,pans a close up of the camels lying in the sand with their riding saddles on.,owners watch on the side as the driver walks by the group.,pans to a still view of a man and a woman riding next to another woman.,shows how they carve on a white horse toward the group.,pans across the people dancing the people walking past the camels.,gold0-orig,pos,unl,unl,unl,pos,A man wearing a safari hat leads a group of camels with riders in a single file.,The camera\nanetv_L35c6QI1l_0,17502,A rider captures the view of the sand dunes leading to the ocean. The camel caravan,arrives to a camp on the beach.,engage in front of a airport van.,pulls in a roll and walks away.,watch closely around the wooded area.,,gold0-orig,pos,unl,unl,unl,n/a,A rider captures the view of the sand dunes leading to the ocean.,The camel caravan\nanetv_L35c6QI1l_0,17498,A scene of sand dunes leading to a beach shoreline. A girl in a blue blouse,walks and poses in the sand.,is performing a curling set off a christmas tree.,demonstrates how to ride the trees.,is playing hop scotch.,is brushing his teeth tooth with a glove.,gold0-orig,pos,unl,unl,unl,unl,A scene of sand dunes leading to a beach shoreline.,A girl in a blue blouse\nanetv_L35c6QI1l_0,17501,The camera pans a close up of the camels lying in the sand with their riding saddles on. A rider,captures the view of the sand dunes leading to the ocean.,speaks on the cottage followed by more uniformed people riding down the mountain.,is seen standing with a camera as well as close ups.,is shown afterwards walking along a sign.,,gold1-orig,pos,unl,pos,pos,n/a,The camera pans a close up of the camels lying in the sand with their riding saddles on.,A rider\nanetv_L35c6QI1l_0,17499,A girl in a blue blouse walks and poses in the sand. A man wearing a safari hat,leads a group of camels with riders in a single file.,runs next to him and serves his bowler.,flies into the air and jumps into the air in a pile.,approaches the top then does the same thing again.,watches several girls in the street with the girl interviewing.,gold0-orig,pos,unl,unl,unl,pos,A girl in a blue blouse walks and poses in the sand.,A man wearing a safari hat\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4945,Someone walks towards something lying on the ground. A necklace of blue stones,\"lies on the snow, tipped out of its box.\",is written on the back of someone's grooming procession.,\"appears on the bow, tethered to a graph just below the surface.\",\"holds a torch, which cuts around someone's neck.\",shine on the child's face.,gold0-orig,pos,unl,unl,unl,unl,Someone walks towards something lying on the ground.,A necklace of blue stones\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4940,\"Ahead of them, someone lies on her back in the snow. Her body\",is wrenched from side to side.,\"ecstatically, she faces the water as her eyes slide around as she takes a deep breath.\",falls like a dead pig.,carried into the vortex.,,gold1-orig,unl,unl,unl,unl,n/a,\"Ahead of them, someone lies on her back in the snow.\",Her body\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4941,Her body is wrenched from side to side. She,\"shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream.\",gets in the front with someone.,pulls them down into the basement.,\"is someone, gripping her arms above her head, her eyes seen.\",leans over the last page and splashes her mouth.,gold1-orig,pos,unl,unl,unl,unl,Her body is wrenched from side to side.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4938,\"On the way back, people are walking ahead of them. Someone\",\"puts one arm over someone's shoulder, the other over someone's.\",continues a winding path along an empty road to where the small houses are behind them.,looks in her right eye and smirks unpleasantly.,are wearing fancy outfits.,\"glances quickly at someone, then faces him.\",gold0-orig,pos,unl,pos,pos,pos,\"On the way back, people are walking ahead of them.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4937,\"Someone wipes the butterbeer froth from her lip with her sleeve, then gazes at someone. On the way back, people\",are walking ahead of them.,walk together in kind.,slow to a wide - eyed glare.,find comfort - - fall.,are drawn a shopping grassy area under a white picket fence towering a modern of upscale neighborhood.,gold0-orig,pos,unl,unl,unl,unl,\"Someone wipes the butterbeer froth from her lip with her sleeve, then gazes at someone.\",\"On the way back, people\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4948,\"Back inside its box, the necklace lies on a desk. Someone\",\"studies it, then turns to someone.\",spots the clock on his surfboard.,finds a drawing on a log using a cane.,digs out his notes.,\"sits by the bed, behind someone.\",gold0-orig,pos,unl,unl,pos,pos,\"Back inside its box, the necklace lies on a desk.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4943,\"She crashes down onto the snow and lies on her back, her head shaking. Someone\",arrives on the scene.,\"looks at him, leans in, hearing her.\",\"leans over the grave, sway with someone.\",yawns anxiously as she passes above the building's furnishings.,rushes past her to a beat.,gold0-orig,pos,unl,unl,unl,pos,\"She crashes down onto the snow and lies on her back, her head shaking.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4934,Someone clenches his jaw and scowls at someone. Someone,leans on the table.,takes someone's blouse off.,sits open behind someone.,stands in the doorway.,holds up his hands and feels his stomach.,gold0-orig,pos,unl,pos,pos,pos,Someone clenches his jaw and scowls at someone.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4939,\"Someone puts one arm over someone's shoulder, the other over someone's. Ahead of them, someone\",lies on her back in the snow.,pushes a gallon of mud onto his spear.,sweeps past a nearby warehouse.,sits on the back of the backseat.,,gold1-orig,unl,unl,unl,unl,n/a,\"Someone puts one arm over someone's shoulder, the other over someone's.\",\"Ahead of them, someone\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4942,\"She shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream. She\",\"crashes down onto the snow and lies on her back, her head shaking.\",leans on the balcony gardens close and tries to wave as the door frames and disappears.,gets another bottle of water.,\"lays her arms on a desk like a woman leaning forward so that someone can see someone's sword, head off sideways.\",,gold0-orig,pos,unl,unl,unl,n/a,\"She shoots up into the air and hovers with arms outstretched, her mouth open in a muted scream.\",She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4947,\"Someone folds back the wrapping paper. Back inside its box, the necklace\",lies on a desk.,unrolls a new shard of bacon from its jar.,wields a snatched cake.,lights a candle as he leaves.,moves a small jar decorated with pink roses.,gold0-orig,pos,unl,unl,unl,unl,Someone folds back the wrapping paper.,\"Back inside its box, the necklace\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4944,\"They step aside, and the giant someone picks someone up. Someone\",walks towards something lying on the ground.,casts a grotesque sorrow at him.,\"shakes her head, then swims toward someone and wraps her arms around her neck.\",holds the kindling for a dish so it won't clean through the windows.,beams at someone's necklace.,gold0-reannot,pos,unl,unl,unl,pos,\"They step aside, and the giant someone picks someone up.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72369,4935,Someone leans on the table. He,\"raises his eyebrows, as he glances at someone.\",fills a tray then finds a sofa covered with white food.,pours a shot of vodka.,notes the ball in his pocket.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone leans on the table.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10821,He enters to find that the room has been trashed. And upturned furniture,is strewn about the room.,is wedged against a wall.,is stacked in the pensieve.,is been torn in strips.,sprays the floor of someone's room.,gold0-orig,pos,unl,unl,pos,pos,He enters to find that the room has been trashed.,And upturned furniture\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10822,\"And upturned furniture is strewn about the room. Unseen, someone\",trots out of the hotel room and scurries down a corridor to a lift.,goes to speak to the alien and bashes him with the wall.,moves it out of its sheeting on someone.,removes the rear and climbs on to the wooden table.,goes after him for a moment.,gold0-orig,pos,unl,unl,unl,unl,And upturned furniture is strewn about the room.,\"Unseen, someone\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10824,\"She gives him a sultry look, and he grins. As he\",lets out a bashful sigh disturbing the fake mustache.,\"heads skyward, someone intercepts him to meet her.\",stares so brightly she can see someone's face.,reaches for his shirt he yanks it up.,starts toward him once more.,gold1-reannot,pos,unl,unl,unl,unl,\"She gives him a sultry look, and he grins.\",As he\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73001,10823,She bursts out laughing and pats him at the thigh. Someone,wanders out of the lift.,bangs the poker on his forehead.,\"does the flip, then shimmies his hips.\",adjusts the mechanical arms with her right hand.,\"wraps her arms around her neck, then looks him in the eye.\",gold1-reannot,pos,unl,unl,unl,pos,She bursts out laughing and pats him at the thigh.,Someone\nanetv_HVfr9FnEj-Q,4719,The ladies dip down and toss their hair backwards. They,swing their dipped bodies.,stand up and paints their faces.,finish and return the drink to the floor and lay it rhythmically.,move forward when they see the hit and jump very slow walking against the sand.,,gold0-orig,pos,unl,unl,unl,n/a,The ladies dip down and toss their hair backwards.,They\nanetv_HVfr9FnEj-Q,4718,The ladies are belly dancing. The ladies,dip down and toss their hair backwards.,play a song of singing some on stage.,\"end the dance in unison, then dance.\",begin clapping and singing.,dance out in unison.,gold1-orig,pos,unl,unl,pos,pos,The ladies are belly dancing.,The ladies\nanetv_HVfr9FnEj-Q,4722,The ladies throw their hair back and forth. 2: 43 a man,is in the room in the back and bends down.,are inside and begin sumo dancing in the middle of the ring.,\"approach the first class, then left many medals together.\",throw a man in an attempt to throw a ball open.,drops a long rope.,gold1-orig,pos,unl,unl,unl,unl,The ladies throw their hair back and forth.,2: 43 a man\nanetv_HVfr9FnEj-Q,4720,They swing their dipped bodies. The ladies,dip and bend backwards.,\"swing, then swing at an affectionate bat.\",\"move towards their breasts, smiling to each other, facing their trio.\",flip into a log.,fall down hard as they struggle.,gold0-orig,pos,unl,unl,unl,pos,They swing their dipped bodies.,The ladies\nanetv_HVfr9FnEj-Q,4721,The ladies dip and bend backwards. The ladies,throw their hair back and forth.,laugh and clap for his head.,notice and give their bows.,fall backwards the ball.,,gold0-reannot,pos,unl,unl,unl,n/a,The ladies dip and bend backwards.,The ladies\nanetv_HVfr9FnEj-Q,4723,2: 43 a man is in the room in the back and bends down. The ladies,finish dancing and take a bow.,are being shown in the water.,are wrestling with the swords.,lift the weight up and the head down.,zoom in on the left of the women.,gold0-reannot,pos,unl,unl,unl,unl,2: 43 a man is in the room in the back and bends down.,The ladies\nanetv_Oc8ACBiwIyE,6972,More tiles are pushed off of the roof as they pull away items. They,finish pulling off the tiles.,scrubs the clothing with their hands and knees.,is shown vacuuming the floor in the concrete room.,swing back and fourth on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,More tiles are pushed off of the roof as they pull away items.,They\nanetv_Oc8ACBiwIyE,15017,Every time he removes a tile several bats fly out. Many bats,fly out from the roof.,hover before it are thrown to the ground.,fly from the mouse.,go down and stare at one another.,spill onto the sides of the alley.,gold0-orig,pos,unl,unl,unl,pos,Every time he removes a tile several bats fly out.,Many bats\nanetv_Oc8ACBiwIyE,6971,A camera pans around a roof and shows a person pushing up tiles. More tiles,are pushed off of the roof as they pull away items.,are shown as they wipe the tiles and cracks up the wall.,fall out while a camera pans in show photos of him standing around.,are shown in the end and ending by a woman laying on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,A camera pans around a roof and shows a person pushing up tiles.,More tiles\nanetv_Oc8ACBiwIyE,15016,A man stands ono a clay roofed house. One by one he,removes the clay tiles.,stands against the wall.,jumps onto the balcony and disappears into a house.,lets play on the front.,,gold0-orig,pos,unl,unl,unl,n/a,A man stands ono a clay roofed house.,One by one he\nanetv_D2TQ_RR2Q50,3357,Clips are shown of people running down the street while the women continue to speak. The girls,talk more and more while people are still shown running down the road.,continue playing and walk away and one of the boys struggles with a ball as well as others.,\"continue to play with another man on the sidelines, as well as people dancing and attempting various tricks with the camera crowd.\",continuously perform various jumps while others watch and walk away.,continue playing and laughing after more people standing around her and posing.,gold0-orig,pos,unl,unl,pos,pos,Clips are shown of people running down the street while the women continue to speak.,The girls\nanetv_D2TQ_RR2Q50,4760,Three women are seen speaking to the camera while people run in the background. More clips,are shown of people running a marathon while others still speak to the camera.,is shown of the people dancing back and fourth while others watch on the sides.,are shown of people performing around performing different tricks on their skateboards.,are shown of different girls doing their tricks by laughing and waving to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,Three women are seen speaking to the camera while people run in the background.,More clips\nanetv_D2TQ_RR2Q50,3356,Three women are seen speaking to the camera and answering questions that the hosts ask. Clips,are shown of people running down the street while the women continue to speak.,and people play game of soccer in a field together in a field with many people in the background.,are playing on a game while they are laying games in the net.,continue to walk on the ice and continue playing hop approvingly.,home to each take the garments off the shirts.,gold0-orig,pos,unl,unl,unl,unl,Three women are seen speaking to the camera and answering questions that the hosts ask.,Clips\nanetv_D2TQ_RR2Q50,4761,More clips are shown of people running a marathon while others still speak to the camera. The women,continue speaking while others still run around.,continue training on end people interviews in the news.,are also spotting the flags and show more afterwards.,continue along the road while others speak and pass by the driver and then stop to protect their faces.,ride back and fourth and running through mud crowds while other people are running.,gold0-orig,pos,unl,unl,unl,unl,More clips are shown of people running a marathon while others still speak to the camera.,The women\nanetv_64vbnwtL7I8,7992,People in recorded video of the bowling match. Spectators,sit and stand behind the railing watching the event.,are playing the game; courts of the playing gets hit.,use a hula hoop to perform a competition performance on a large stage.,are flying the waves from another country man.,are in the living room sitting and dancing.,gold0-orig,pos,unl,unl,unl,unl,People in recorded video of the bowling match.,Spectators\nanetv_64vbnwtL7I8,7994,A man bowls a his turns standing backwards. People in the stands,cheer for the bowler.,are white behind the man.,\"peer into his sides, trying to keep the ball down.\",gather in front of musicians dancing in the air.,\"looks around him for the performance situated before taking the gift, bowing to the man.\",gold0-orig,pos,unl,unl,unl,unl,A man bowls a his turns standing backwards.,People in the stands\nanetv_Hc--KcdMkEA,14631,A man stands in front of a podium talking. Two other men,stand next to him.,are unable to lift his legs.,are chasing the ball.,stand then talk to each other.,are in stylish uniforms and a man plays.,gold0-orig,pos,unl,unl,pos,pos,A man stands in front of a podium talking.,Two other men\nanetv_Hc--KcdMkEA,14632,Two other men stand next to him. One of the two men,digs in a fire pit where there was a fire and then pours water on it.,begin hopping over each other.,spins him all over his head and one woman throws him out of the way.,wipe the other's face.,,gold0-orig,pos,unl,unl,pos,n/a,Two other men stand next to him.,One of the two men\nanetv_Hc--KcdMkEA,14633,One of the two men digs in a fire pit where there was a fire and then pours water on it. The same man,digs around in the pit with his hand looking for burning embers.,is now standing in a square of wood with his hand and holding the large stick.,is first to grab the fish and rubbing it into his mouth.,gets off the ornament of the chair.,is dead down and is lying around the fire at the same time.,gold0-orig,pos,unl,unl,unl,unl,One of the two men digs in a fire pit where there was a fire and then pours water on it.,The same man\nanetv_eDMv3IHGpnA,18315,A man wearing very large glasses is talking into a black microphone while people behind him are dancing until he points into their direction and they all scatter off the dance floor. Men are dressed in red suits and each are,taking turns break dancing alone as words on the screen are possibly naming the dancer.,making hand movements with sharp swords.,showing the yet winning host.,gathered in a classroom as contorts three wooden cups moving their hands rapidly illustration.,walking in a red room.,gold0-reannot,pos,unl,unl,unl,pos,A man wearing very large glasses is talking into a black microphone while people behind him are dancing until he points into their direction and they all scatter off the dance floor.,Men are dressed in red suits and each are\nanetv_6yVhTyPaaLQ,655,\"Then, the woman paints two canvas using a bottle, when it is necessary the woman rotates the canvas. Then, the woman\",puts the canvas on the floor and continues painting with the bottle.,picks up a bow and put a satisfied star on brown coats.,gives an final hand.,put white paints and paint then warm paints.,,gold0-orig,pos,unl,pos,pos,n/a,\"Then, the woman paints two canvas using a bottle, when it is necessary the woman rotates the canvas.\",\"Then, the woman\"\nanetv_6yVhTyPaaLQ,654,\"A woman stands on front a paint holding a bottle, and then paintings on canvas are shown in a slideshow. Then, the woman\",\"paints two canvas using a bottle, when it is necessary the woman rotates the canvas.\",interviews the child while she speaks to him.,adds to the paint and continues to paint it with an iron.,\"shows how to lever spacers, then put it on the vase, and show how she is doing it.\",adds a paint vacuum wallpaper and then overlaid.,gold0-orig,pos,unl,unl,unl,unl,\"A woman stands on front a paint holding a bottle, and then paintings on canvas are shown in a slideshow.\",\"Then, the woman\"\nanetv_6yVhTyPaaLQ,656,\"Then, the woman puts the canvas on the floor and continues painting with the bottle. After, the woman hangs the paintings on the, then she\",puts the paintings on the floor and then hang on the wall to continues painting.,bends down and grabs it and shows how to sit on the sofa.,uses a brush to remove stacks of substance across the floor.,paints the front nails.,\"continues talking, the woman plays the paint and mulch with a brush.\",gold1-orig,pos,unl,unl,unl,pos,\"Then, the woman puts the canvas on the floor and continues painting with the bottle.\",\"After, the woman hangs the paintings on the, then she\"\nanetv_pizl41xmw7k,19036,A child mops the floor of a hallway in a house. The child,sets the mop down and plays with her family member.,\"walks through frame covering the cookies on the hardwood floor, then turns back to two watching.\",uses a hand blocking brush to clean the cat while a man uses a leaf to clean it to the camera.,empties a cement bucket on top of the lake and then wets the floor.,uses a hose to spy food on the bathroom.,gold0-orig,pos,unl,unl,unl,unl,A child mops the floor of a hallway in a house.,The child\nanetv_pizl41xmw7k,19037,The child sets the mop down and plays with her family member. The child,walks into the bedroom area and continues to mop the floor.,makes a small call.,returns the pinata and is blindfolded while the child laughs.,looks away from the camera then falls back below some seats.,stops and throws her face in the pocket.,gold1-orig,pos,unl,unl,unl,unl,The child sets the mop down and plays with her family member.,The child\nanetv_E1AVyl1RwF8,8290,They are using boxing gloves and equipment. One man,is kicking and punching as the other blocks.,demonstrates long jumps uses a course to collect the field.,uses a glove to hit the ground and shows some other screaming techniques.,\"throws a ball, then another begins to break his arm inside.\",pulls out the weight over his head.,gold0-orig,pos,unl,unl,unl,pos,They are using boxing gloves and equipment.,One man\nanetv_E1AVyl1RwF8,199,One man is seen holding boxing gloves and hitting a man standing in front of him. A man,is seen blocking the other with pads while the man continues to punch and kick.,places held on his hands by starting a wrestling match.,is then seen speaking to the camera while various shots are shown of people help.,walks into frame followed by a man performing tricks and laughing to the camera.,is then seen standing on a court while a woman behind him spins around.,gold0-orig,pos,unl,pos,pos,pos,One man is seen holding boxing gloves and hitting a man standing in front of him.,A man\nanetv_E1AVyl1RwF8,8289,A couple of men are fighting inside a gym. They,are using boxing gloves and equipment.,are engaged in a game of rock paper scissors.,lob the ball back and forth against each other.,are engaged in a game of jousting.,are engaged in a game of cricket.,gold0-orig,pos,unl,unl,pos,pos,A couple of men are fighting inside a gym.,They\nanetv_5kdiJ2cC5_w,16475,The woman plays the violin. The woman,stops playing the violin.,plays on her violin.,plays a conga violin and applaud.,sings at the end of the broom then plays with it.,finishes the piano and stops for a few seconds before talking again.,gold0-orig,pos,unl,unl,unl,unl,The woman plays the violin.,The woman\nanetv_RWir3muDHg0,8669,Suddenly the men start pulling on the rope as other men are instructing them and the spectators are cheering. The men in the yellow and blue shirts are easily pulling the rope and they,have won while the people around them cheer.,sit in a hot steel tying men on how to pole wrestle.,\"'re attacking in blue, the men make the first wave to jump him as they run.\",continue to play tug of war with the weights.,'re in the costume room and are using a rope to jump on on the other side with hand in the air.,gold0-orig,pos,unl,unl,pos,pos,Suddenly the men start pulling on the rope as other men are instructing them and the spectators are cheering.,The men in the yellow and blue shirts are easily pulling the rope and they\nanetv_RWir3muDHg0,8668,A lot of men are standing outdoors on a dirt field and there are two teams standing along a rope while a lot of people are standing around watching them. The men wearing yellow and blue shirts,pick up the rope and are getting in position to play tug o war.,run down an shooting track and part of the land stopped to stop jumping while.,are playing large hockey with arrows on their hands.,\"progresses and heavily off several other lays, trying to sit on the grass.\",falls back and walk away.,gold0-orig,pos,unl,unl,unl,unl,A lot of men are standing outdoors on a dirt field and there are two teams standing along a rope while a lot of people are standing around watching them.,The men wearing yellow and blue shirts\nanetv_Hev5Vj0Jjuk,3387,A girl stands on top of the platform with a rope and harness and prepares to jump. A pop band,is seen singing a song and dancing.,comes behind the men and we see several girls riding on the horses.,is seen doing her jump while on a stage with a defeated audience.,moves off a line and the performers perform a high jump and walk back.,,gold1-orig,pos,unl,pos,pos,n/a,A girl stands on top of the platform with a rope and harness and prepares to jump.,A pop band\nanetv_Hev5Vj0Jjuk,3389,The girl jumps from the platform and bounces on the bungee cord in the air. The girl,is met by the group members who congratulate her for the jump.,gives her mother a hug then dances back.,\", the end twisting, rises to the ground.\",in jumps up and touches her feet by herself.,is pulled to a back again.,gold0-orig,pos,unl,unl,pos,pos,The girl jumps from the platform and bounces on the bungee cord in the air.,The girl\nanetv_Hev5Vj0Jjuk,3385,The girls put on safety harnesses. The group,climb up the stairs to the top of the platform.,runs in every direction.,continues to teach the girl they are riding.,leaves some area offering a sign for the coast.,continues search their windows at the menacing floodlights.,gold0-orig,pos,unl,unl,unl,unl,The girls put on safety harnesses.,The group\nanetv_Hev5Vj0Jjuk,3384,A group of girls look up at an amusement park ride and wave there hands in fear and anticipation. The girls,put on safety harnesses.,\"proceed to walk faster from the parking lot, and two children stand for the van, jumping side to side sideways.\",continue to climb wave in the air as each scene ends.,is going down and maintaining an argument as activity on the grassy green grassy field.,walk past the building in a parking lot wearing stilts running and kicking and dancing on the porch.,gold0-orig,pos,unl,unl,unl,unl,A group of girls look up at an amusement park ride and wave there hands in fear and anticipation.,The girls\nanetv_Hev5Vj0Jjuk,3386,The group climb up the stairs to the top of the platform. A girl,stands on top of the platform with a rope and harness and prepares to jump.,holds a new box in better hands.,in a black shirt is walking on a gymnastics table.,falls down when a young man picks them up.,,gold0-reannot,pos,unl,unl,pos,n/a,The group climb up the stairs to the top of the platform.,A girl\nanetv_bPkk-z5n8MY,16489,A large group of people are seen spinning and twirling batons in the city. A large group of people,are seen sitting around the group watching.,are seen wandering around an audience with their neck spinning and walking around.,are seen running around a gym following a team of people as well as others.,are seen dancing around a gymnasium before walking away.,are seen standing around a kitchen floor by dipping towards the camera and bowing to the camera.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen spinning and twirling batons in the city.,A large group of people\nlsmdc3038_ITS_COMPLICATED-17652,9824,Workers gather their things and hurry. He,nods at her beaming.,stands next to the roof of broken rock.,\"holds her boot in his t - vision, opening the door.\",\"looks at the bearded, unshaven man then tops it with a large distant table.\",slips down the stairs.,gold1-orig,pos,unl,unl,unl,pos,Workers gather their things and hurry.,He\nlsmdc3038_ITS_COMPLICATED-17652,9825,He nods at her beaming. Someone,smiles and looks away.,gives her a loving smile.,turns and kisses her nephew.,pouts at her sister and then takes off her clothes and their eyes meet.,gives a cool nod and bows his head.,gold1-orig,pos,unl,unl,unl,unl,He nods at her beaming.,Someone\nanetv_c9bvuUO9Q0Q,11861,A person then pulls up a pinata and begins swinging at the object. The boy,moves his hands around and continues to swing at the object.,grabs a calf and walks on the lawn while a man helps a dog and help down the street.,\"finishes, scores a shadow and walks away.\",with the her stick is shown from several angles when a close up of another girl is seen kicking his legs around.,continues swinging in the crowd holing up the hands while throwing to the camera.,gold0-orig,pos,unl,unl,unl,unl,A person then pulls up a pinata and begins swinging at the object.,The boy\nanetv_c9bvuUO9Q0Q,11860,A small group of people are seen standing outside with one being blindfolded and holding a bat. A person then,pulls up a pinata and begins swinging at the object.,attempt the pinata and the girl tries too hard to miss the ball but the woman tries to catch it.,begins throwing frisbees into the air while others hit the side.,begins mixing and throwing a knife around throwing a dough into a pan and kicking the ingredients into the pan.,,gold0-orig,pos,unl,unl,unl,n/a,A small group of people are seen standing outside with one being blindfolded and holding a bat.,A person then\nanetv_cDe2GlvMEQg,15400,He points to several objects while leading into dirt being shown as well as plaster. People,are seen putting plaster all over the walls while the man continues to speak.,are seen attempting to lay down more in the time.,walk up and speak to the camera as they continue to mow.,\"still shots of the man sitting while a pool sits on top of the machine, continues to stir while others in the stands.\",,gold0-orig,pos,unl,unl,unl,n/a,He points to several objects while leading into dirt being shown as well as plaster.,People\nanetv_cDe2GlvMEQg,15399,A man is seen speaking to the camera indoors as well as outdoors. He,points to several objects while leading into dirt being shown as well as plaster.,begins down the path while welding.,adjusts the settings on the horse and shows off his helper.,is then seen exercising on the bike as well as people pulling out the seat storage.,speaks to the camera and cuts back his shoveling and showing off the tools.,gold0-orig,pos,unl,unl,pos,pos,A man is seen speaking to the camera indoors as well as outdoors.,He\nanetv_6fgk5PKVS2o,776,The people are then shown in various angles riding up a snowy mountain and going down a hill. Close ups of the people's faces,are shown as they go up and down the hill several times and landing at the bottom of a hill.,are shown as well as the kids dancing.,are shown as well as people performing in unison as well as performing tricks at the end.,are shown on pans as well as performing tricks on top of the mountain and falling off in the snow.,,gold0-reannot,pos,unl,pos,pos,n/a,The people are then shown in various angles riding up a snowy mountain and going down a hill.,Close ups of the people's faces\nanetv_6fgk5PKVS2o,775,A person's car is shown from several angles with a person inside and leads into the car driving with people inside. The people,are then shown in various angles riding up a snowy mountain and going down a hill.,continue to ride around on the street while jumping around areas and zooming to the camera.,are riding around and working on the camels.,are shown back and fourth around well as others shoveling raking.,,gold0-reannot,pos,unl,unl,pos,n/a,A person's car is shown from several angles with a person inside and leads into the car driving with people inside.,The people\nlsmdc3057_ROBIN_HOOD-27848,9677,\"King someone winces thoughtfully, then leans toward someone. He\",looks out to the crowd.,folds his arms around someone.,eyes someone and strokes her hand.,steps out wearing a ripped shirt.,\"takes the filter out of his own pocket,.\",gold0-reannot,pos,unl,unl,unl,unl,\"King someone winces thoughtfully, then leans toward someone.\",He\nanetv_51XRujaBAbE,19008,\"A toddler stands on the hay and grabs the leg of a woman. Then, men\",push the motorcycles with the children while a man takes notes.,enter the field and turn back to one of the people.,wearing red shoes perform the same karate moves.,carry on horses then push the woman through the trees down a grassy slope.,,gold1-orig,unl,unl,unl,unl,n/a,A toddler stands on the hay and grabs the leg of a woman.,\"Then, men\"\nanetv_51XRujaBAbE,19007,\"A man carry a child, a woman applaud and a man takes pictures. A toddler\",stands on the hay and grabs the leg of a woman.,play off her words and trophies with a subscribe screen.,plays in front of a car with a woman in arm talk.,stands in line down.,is sitting on a chair playing with wire.,gold0-orig,pos,unl,unl,unl,unl,\"A man carry a child, a woman applaud and a man takes pictures.\",A toddler\nanetv_51XRujaBAbE,19009,\"Then, men push the motorcycles with the children while a man takes notes. Then, the children\",line on the start line and then run.,help a man who score the stand.,play large drums while two men cross.,split together and sail in a circle.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Then, men push the motorcycles with the children while a man takes notes.\",\"Then, the children\"\nanetv_JQavlg895jU,15174,The group picks up one after the other and dances around the stage while others spot. The group,continues dancing in front of the crowd and ends by walking off stage.,continues to throw the ball on the sides while people watch on the sides.,continues to play more and ends by stopping them in circles.,dismounts and moves high off the mat before getting back on the rope.,,gold0-orig,pos,unl,unl,unl,n/a,The group picks up one after the other and dances around the stage while others spot.,The group\nanetv_JQavlg895jU,15173,A large group of people are seen standing on a stage and begin performing a cheerleading routine. The group,picks up one after the other and dances around the stage while others spot.,continues performing a routine on the stage while looking through the laces on the side doing hands.,continues spinning around the other and a group hugs each other.,end by panning away from each other and hitting one another with the camera.,walks around and leads sitting down on a stage.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen standing on a stage and begin performing a cheerleading routine.,The group\nanetv_JQavlg895jU,6473,\"The group are lined up then they throw the ladies up in the air, catched them and scattered around. The cheer dancing\",started to perform their cheer dance as people run behind them with flags.,continues as they jump skyward and go.,takes their entire routine as they show the winner while the other throws the conductor into the air to catch it.,continues as they end and people push the opponent over with the bow.,,gold0-orig,pos,unl,unl,unl,n/a,\"The group are lined up then they throw the ladies up in the air, catched them and scattered around.\",The cheer dancing\nlsmdc0053_Rendezvous_mit_Joe_Black-71547,14529,\"Someone halts, in the distance a figure is approaching from over the crest of the hill where people disappeared. He is heading straight for her, she\",\"tries to make him out, seems to recognize him, starts to walk towards him as if pulled by a magnet.\",looks up to see someone climbing.,sees a group of loose tubes moving up in front of her body.,\"hangs up, exhales softly as she sways in the sunshine.\",\"is up the stone slope, towards the scar on someone's back.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone halts, in the distance a figure is approaching from over the crest of the hill where people disappeared.\",\"He is heading straight for her, she\"\nlsmdc0053_Rendezvous_mit_Joe_Black-71547,14530,\"It is a man, he keeps coming, and now that he is close and recognizes him. Something about him\",makes someone slightly tentative.,is taking place for doing karate job for barefoot.,\"is - - full of pale satin hair, palette and ink.\",takes him down a path and seems really enjoying it.,is there by beginning the hall.,gold0-reannot,pos,unl,unl,unl,unl,\"It is a man, he keeps coming, and now that he is close and recognizes him.\",Something about him\nanetv_peoMXSP3VgY,7593,Skateboarders ride down through a parking garage together. The skateboards,ride down a hill the skid at the bottom.,are waved off from the bikes.,are shown ski while they sit on the bikes and are talking.,take off in the competition on the swings.,stand in top of the road afterwards.,gold1-orig,pos,unl,unl,unl,pos,Skateboarders ride down through a parking garage together.,The skateboards\nanetv_peoMXSP3VgY,7592,Mountains are seen in the background and a boy rides in a car. Skateboarders,ride down through a parking garage together.,jumps onto his bike to join his ride.,seen walking on the face of cars and giving clips in the game.,boys are seen standing next to them and begins to play and others watch him work.,,gold0-orig,pos,unl,unl,unl,n/a,Mountains are seen in the background and a boy rides in a car.,Skateboarders\nanetv_peoMXSP3VgY,7594,The skateboards ride down a hill the skid at the bottom. The boy,sets his board standing upright.,shines a snow over.,rides down the dirt road near the end selected.,skates pushing the snow wrathfully in the puddles.,,gold0-orig,pos,unl,pos,pos,n/a,The skateboards ride down a hill the skid at the bottom.,The boy\nanetv_peoMXSP3VgY,7595,The boy sets his board standing upright. A boy,skateboards through the bleachers of a stadium.,pulls up a fish and puts his hands in the water.,takes a glass of water out of the ocean.,walks to the beach and shows several finished flips.,,gold0-reannot,pos,unl,unl,pos,n/a,The boy sets his board standing upright.,A boy\nlsmdc0027_The_Big_Lebowski-62970,7840,\"Someone gets out, still holding his drink. His eyes on the rearview mirror, someone\",jerks a thumb over his shoulder.,notices someone holding someone's arm.,hastily reaches inside and shuts the door.,\"swallows hard, and swallows.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone gets out, still holding his drink.\",\"His eyes on the rearview mirror, someone\"\nlsmdc0027_The_Big_Lebowski-62970,7841,Halfway up the block a Volkswagon bug has pulled over to the curb. In the driver's seat we,see a fat man's shape.,\"see a second person, sitting behind him.\",see the squad car enter across the street.,see people across the street.,,gold1-orig,unl,unl,unl,unl,n/a,Halfway up the block a Volkswagon bug has pulled over to the curb.,In the driver's seat we\nlsmdc0027_The_Big_Lebowski-62970,7836,\"Someone sits in back holding a White Russian, listening to the chauffeur, a man of about the same age from whose livery cap a ponytail emerges. He\",\"takes a sip of a freshly - mixed white russian, which leaves milk on his mustache.\",\"starts away from the iron shop and flies across the colorful, disheveled street.\",is going to take a bow.,\"rushes to him, grabs someone, and then hugs him close.\",looks at someone.,gold0-orig,pos,unl,pos,pos,pos,\"Someone sits in back holding a White Russian, listening to the chauffeur, a man of about the same age from whose livery cap a ponytail emerges.\",He\nlsmdc0027_The_Big_Lebowski-62970,7837,\"He takes a sip of a freshly - mixed White Russian, which leaves milk on his mustache. I was feeling really shitty earlier in the day, i'd lost a little money, I\",was down in the dumps.,things you want to kill throughout the movie.,taylor being here because of the circles.,indicates that someone is easy to be out.,,gold0-orig,pos,unl,unl,pos,n/a,\"He takes a sip of a freshly - mixed White Russian, which leaves milk on his mustache.\",\"I was feeling really shitty earlier in the day, i'd lost a little money, I\"\nlsmdc0027_The_Big_Lebowski-62970,7839,The limo has rolled to a stop. Someone,\"gets out, still holding his drink.\",presses a fist back against his door and tries to split the windows.,waddles over as someone lowers his gun.,lies semi - slumped.,,gold0-orig,pos,unl,unl,unl,n/a,The limo has rolled to a stop.,Someone\nlsmdc0027_The_Big_Lebowski-62970,7843,The waiting limo's back door is flung open. Someone,is shoved in and awkwardly takes a seat facing the rear.,watches the rich man through a sedan drain.,sits behind items and starts talking.,opens his lips and rows of gum down.,jogs off in a blue shirt.,gold0-reannot,pos,unl,unl,unl,unl,The waiting limo's back door is flung open.,Someone\nlsmdc0027_The_Big_Lebowski-62970,7838,\"I was feeling really shitty earlier in the day, i'd lost a little money, I was down in the dumps. The limo\",has rolled to a stop.,\"rushes up to someone, reaches for someone.\",\"pulls away, which protrude from someone 'hand.\",fell outside the grave.,,gold0-reannot,pos,unl,unl,unl,n/a,\"I was feeling really shitty earlier in the day, i'd lost a little money, I was down in the dumps.\",The limo\nanetv_7aydawW3AfE,13070,A little girl is sitting on a bed with her eyes closed. A woman,kneels down and puts eye liner on the girl.,sits in a chair eating a cream cone.,is standing in front of the tub with a pink razor.,is sitting behind the couch putting mousse into the mohawk lock.,stands on her right next to another.,gold0-orig,pos,unl,unl,unl,unl,A little girl is sitting on a bed with her eyes closed.,A woman\nanetv_7aydawW3AfE,13071,A woman kneels down and puts eye liner on the girl. The girl,opens her eye and smiles.,rubs her hand all over the girl with her hair on the left side then head.,releases a knife on the lady's leg and wipes her face.,uses a toothbrush to wash her face.,sprays makeup on her face.,gold0-orig,pos,unl,unl,unl,pos,A woman kneels down and puts eye liner on the girl.,The girl\nanetv_VAKQMtYrl4I,445,Several dogs walk down a street. They,are on leashes held by their owners.,are performing on the grass then they get up on the rake stage.,stop and gets hands.,play hopscotch at their feet while trying to catch frisbee.,are engaged in a game of leather.,gold0-orig,pos,unl,unl,unl,unl,Several dogs walk down a street.,They\nanetv_nuqxJvTbG9w,7924,A woman is seen kicking a ball out into a field of people and then running back to the home plate. She then,kicks the ball again while others around her run and grab the ball from the field.,takes the camera off and continues with the dogs by serving.,takes several more balls behind her and pushes it around the chair as well as them celebrating their throw.,pans many times performing the jumps and jumping to the end of the field to begin a run.,pushes a woman holding the tennis ball to others holding and hitting a ball around him.,gold0-reannot,pos,unl,unl,unl,unl,A woman is seen kicking a ball out into a field of people and then running back to the home plate.,She then\nlsmdc1029_Pride_And_Prejudice_Disk_One-83474,250,\"Having heard everything, someone looks at someone out the corner of her eye. Then, with a mischievous smile, she\",gets up and crosses the room in front of him.,\"takes it completely and holds it in her pants, wei turns to the eagles by the door.\",looks on as someone's mouth fills with tears.,walks past someone as she goes past a window.,\"nods and leaves, shuffling to catch up.\",gold1-orig,pos,unl,unl,unl,pos,\"Having heard everything, someone looks at someone out the corner of her eye.\",\"Then, with a mischievous smile, she\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83474,252,\"Resplendent in her green silk gown and fashionable feather hat, someone is tolerating the dancing, wheeling in and out with a haughty air. Someone\",is up with someone and having a much better time of it.,comes into him sitting behind a golden table with his front door open.,looks up at someone and someone in a blonde witch's uniform.,dances with the red queen backwards when someone has provided the trio.,uses his cell to rest in the floor where someone is waiting for her.,gold1-orig,pos,unl,unl,unl,unl,\"Resplendent in her green silk gown and fashionable feather hat, someone is tolerating the dancing, wheeling in and out with a haughty air.\",Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83474,251,\"Then, with a mischievous smile, she gets up and crosses the room in front of him. Watching her pass by, his eyes\",linger on her for a long moment as she talks to someone.,fall away as someone swings her chain loose at him.,flash back to the top shelf.,\"glazed over as tears glisten in his eyes, which rises up to his chest.\",are closed as he desperately nods his head.,gold0-orig,pos,unl,pos,pos,pos,\"Then, with a mischievous smile, she gets up and crosses the room in front of him.\",\"Watching her pass by, his eyes\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83474,253,\"Someone is up with someone and having a much better time of it. Whilst people watch the moment with disgust,\",slumped in a chair.,scooped up in coffee from all their beers has heard the performance.,speech between someone and the first four.,\"canned laughter - - tight from him, saddened.\",watch the sheriff take turns speaking to one of them.,gold0-orig,pos,unl,unl,unl,unl,Someone is up with someone and having a much better time of it.,\"Whilst people watch the moment with disgust,\"\nanetv_v2iIR1YLdz4,5589,He is doing hand stands on a couple of bars on the ground. The bars,are made from pvc pipes.,are shown in slow motion.,begins to spin the same several times on the back.,take out on one foot and then does a final flip.,are trimmed by a man holding an object.,gold1-orig,pos,unl,unl,unl,pos,He is doing hand stands on a couple of bars on the ground.,The bars\nanetv_v2iIR1YLdz4,5588,A man is doing gymnastics in a living room. He,is doing hand stands on a couple of bars on the ground.,is sitting up on a martial arts set.,is sitting with a accordion in his lap.,turns around on stage and picks up a microphone.,is playing a set of bongo drums.,gold0-orig,pos,unl,unl,unl,unl,A man is doing gymnastics in a living room.,He\nanetv_e0Qj2F3V6fM,5867,She then puts it into the tray and into the oven to bake. Afterward she,takes it out and shows the finished product.,puts the pieces out onto cookie dough and puts it on.,allows the cake and bake in the oven.,places the cookies into a cookie sheet before putting it back inside.,,gold0-orig,pos,unl,unl,pos,n/a,She then puts it into the tray and into the oven to bake.,Afterward she\nanetv_e0Qj2F3V6fM,5866,She mixes everything together and stirs it up with seasoning. She then,puts it into the tray and into the oven to bake.,\"grabs the utensils, picks the dish up in the trash, and begins to clean it out with the bag.\",begins mixing the dough into the dough.,boils some sauce and placed in the dishwasher.,puts them in the salad and is shown.,gold0-orig,pos,unl,unl,unl,pos,She mixes everything together and stirs it up with seasoning.,She then\nanetv_e0Qj2F3V6fM,5865,She shows the ingredients and tell what to set the oven to. She,mixes everything together and stirs it up with seasoning.,puts her clr into a pot.,pours the liquid into the oven.,shows the lemons into the bowl.,,gold1-orig,pos,unl,unl,unl,n/a,She shows the ingredients and tell what to set the oven to.,She\nanetv_e0Qj2F3V6fM,5864,The video stats explaining how to make Omelette muffins. She,shows the ingredients and tell what to set the oven to.,demonstrates how to repair pieces of clothing.,and explains about the new methods.,demonstrates how to apply the sandwich to the pan.,,gold0-reannot,pos,unl,unl,unl,n/a,The video stats explaining how to make Omelette muffins.,She\nanetv_UxlSiLBleX4,5155,He begins to play an acoustic guitar. He,finishes playing the guitar and standing up.,\"dominates the room with someone, whose eyes are rimmed with black blood.\",holds a violin to his lips.,also uses his ear to drop the guitar.,,gold1-orig,pos,unl,unl,unl,n/a,He begins to play an acoustic guitar.,He\nanetv_UxlSiLBleX4,16557,A seated man wearing headphones plays a guitar. The man,stops playing and leans forward.,plays the piano while the piano.,plays a drum set and spread band on his hands.,begins playing the guitar while left on the right.,dips the harmonica in his face.,gold0-orig,pos,unl,unl,unl,unl,A seated man wearing headphones plays a guitar.,The man\nanetv_UxlSiLBleX4,5154,A man is sitting down in a chair. He,begins to play an acoustic guitar.,has shaving cream on his leg.,is dancing in front of a flute.,is cutting down on the ground in front of him.,is standing in front of him.,gold1-orig,pos,unl,unl,unl,unl,A man is sitting down in a chair.,He\nlsmdc3021_DEATH_AT_A_FUNERAL-1227,8852,\"As the guest heads off, someone appears. Someone\",leads him into the study where someone takes in the refined decor.,waits for a hat for a whole party.,closes the porch door and tries to open the door.,\"sobs both her thighs as she catches, then rises swing her outstretched arms.\",continues to play gazing out through the sunglasses.,gold0-orig,pos,unl,unl,unl,pos,\"As the guest heads off, someone appears.\",Someone\nlsmdc3021_DEATH_AT_A_FUNERAL-1227,8855,He eyes its title page. Someone,flips the manuscript over.,takes it and clips it.,presses her chamber to his chest and sings.,finds a cardboard box and starts urinating its pages.,,gold0-orig,pos,unl,unl,unl,n/a,He eyes its title page.,Someone\nlsmdc3021_DEATH_AT_A_FUNERAL-1227,8854,The dwarf spots a manuscript on the coffee table. He,eyes its title page.,takes out his cards and looks at it.,throws a blank copy back to the man.,holds onto the pup.,glances at a bottle.,gold0-orig,pos,unl,unl,unl,unl,The dwarf spots a manuscript on the coffee table.,He\nlsmdc3021_DEATH_AT_A_FUNERAL-1227,8853,Someone leads him into the study where someone takes in the refined decor. The dwarf,spots a manuscript on the coffee table.,gyrates harshly against the bed.,is lifted to the tower.,\"looks to someone, who addresses someone.\",,gold0-reannot,pos,unl,unl,pos,n/a,Someone leads him into the study where someone takes in the refined decor.,The dwarf\nanetv_2-xMWBQA7iM,18089,We see a title screen. We,see the man stop rowing and walks and gets the camera.,see an opening screen.,see someone making lacrosse on stilts.,see titles in the screen.,see a lady punching him in the face.,gold1-orig,pos,unl,unl,unl,pos,We see a title screen.,We\nanetv_2-xMWBQA7iM,18087,The man drink from his water. The man,rows fast on the machine.,brakes the sailboat with his skiers.,switches clothes and adjusts the surface.,pokes him and stands upright.,swallows the bowl in the pool.,gold0-orig,pos,unl,unl,unl,pos,The man drink from his water.,The man\nanetv_2-xMWBQA7iM,18090,We see the man stop rowing and walks and gets the camera. The man then,shows the screen on the rowing machine.,goes to work and jumps on front of his board.,return to the car with his gear attached.,points again to the pool set.,drys her rear and ducks behind her.,gold0-orig,pos,unl,unl,unl,unl,We see the man stop rowing and walks and gets the camera.,The man then\nanetv_2-xMWBQA7iM,18088,The man rows fast on the machine. We,see a title screen.,see the man peel the seat in front of him.,see the shot again in the end.,see the man and the client.,guy continues to wheel on the metal seat next to the machine.,gold1-reannot,pos,unl,pos,pos,pos,The man rows fast on the machine.,We\nanetv_2-xMWBQA7iM,18086,We see a man walk over and sits on a rowing machine. The man,drink from his water.,pierces a needle from his head.,spins and pulls the machine down the pole.,stops and holds her position.,speaks to the boat and pauses.,gold1-reannot,pos,unl,unl,unl,unl,We see a man walk over and sits on a rowing machine.,The man\nanetv_iH659QSrcDc,6103,A man stands on a roof and drills pieces of wood down. Credits,are seen for the video with a website.,is sitting on the ground next to him.,are standing on the floor.,look over the area and see two men throwing knives on their escape.,shingles with shingles on top of a roof.,gold0-orig,pos,unl,unl,unl,unl,A man stands on a roof and drills pieces of wood down.,Credits\nanetv_iH659QSrcDc,6102,A text graphic is seen with a title and description. A man,stands on a roof and drills pieces of wood down.,draws an object to the body.,runs down a track and falls in a sand pit.,sits leaving headphones talking and playing a cut accordian.,steps up next to the fire.,gold0-reannot,pos,unl,unl,unl,pos,A text graphic is seen with a title and description.,A man\nlsmdc3037_IRON_MAN2-17002,9218,Someone watches security camera videos. He,types on the keyboard.,lifts his eyes to a statue then moves her head downward and glares hard.,climbs out of the car and stops.,holds up cans as soldiers stand smoking appraisingly.,feeds with his droopy stare.,gold0-orig,pos,unl,unl,unl,unl,Someone watches security camera videos.,He\nlsmdc3037_IRON_MAN2-17002,9233,Someone's face appears on the monitor. Someone,appears on another monitor.,\"sits on the bed, her head turned up and crystal half - filled.\",\"thrusts a finger furiously at someone then hurries into the dance room, which tears its letters from the door.\",puts the sheet down.,receives food across a coffee table.,gold0-orig,pos,unl,unl,unl,pos,Someone's face appears on the monitor.,Someone\nlsmdc3037_IRON_MAN2-17002,9232,Someone falls off a small cliff and lands on his back in the stream below. Someone's face,appears on the monitor.,is no larger than someone fearful.,buried in the snow.,drops from the mud road as he hits the hole in the water.,dangles over the lower deck.,gold1-orig,pos,unl,unl,unl,unl,Someone falls off a small cliff and lands on his back in the stream below.,Someone's face\nlsmdc3037_IRON_MAN2-17002,9228,Someone aims and fires the Gatling gun at someone. Bullets,ricochet off someone's suit.,\"fires his weapon from its barrel, then checks the shotgun.\",kicks someone aside with a warm smile.,whacks the dead thug.,walk out of the hatchback garage.,gold1-orig,pos,unl,unl,unl,unl,Someone aims and fires the Gatling gun at someone.,Bullets\nlsmdc3037_IRON_MAN2-17002,9213,\"She lifts a can of mace and sprays a twelfth guard in the eyes as he steps out of a doorway. In the lobby, someone\",bites the first guard's ear.,pulls over and steps inside it.,sways pleasantly to listen to him.,pries someone into a u - turn.,sits beside a collection of framed photographs.,gold0-orig,pos,unl,unl,unl,pos,She lifts a can of mace and sprays a twelfth guard in the eyes as he steps out of a doorway.,\"In the lobby, someone\"\nlsmdc3037_IRON_MAN2-17002,9230,Someone works at the computer. A message,appears onscreen: system access.,appears next to the tv.,sits on the bedside table.,comes from the computer.,,gold0-orig,pos,unl,unl,pos,n/a,Someone works at the computer.,A message\nlsmdc3037_IRON_MAN2-17002,9223,\"Inside, the two guards hang by their necks from the ceiling. Someone\",hurries across the room toward someone's computer station.,\"stands at someone's shoulder, parting her with a coin.\",\"tries to throw someone in the mall, and the ambulance starts to ride through the bus - rail car.\",takes someone's head and runs back up the passageway in the night.,watches as someone carries himself out of the plane.,gold1-orig,pos,unl,unl,unl,pos,\"Inside, the two guards hang by their necks from the ceiling.\",Someone\nlsmdc3037_IRON_MAN2-17002,9215,\"Someone punches the guard's face, sending him sailing backward onto the floor. Someone\",gazes down the hallway at the many guards lying on the floor.,launched from another train's landing.,practices his rendition and tense living room.,grabs a black ball and checks the other quickly as the bomb bomb lands into a pile.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone punches the guard's face, sending him sailing backward onto the floor.\",Someone\nlsmdc3037_IRON_MAN2-17002,9209,\"Still holding the cord, someone knocks one guard out and releases the cord. The eighth guard\",falls to the floor.,begins to pound on the roof shutters.,kisses him firmly on the forehead.,loses control of the car.,tries the door and jumps down.,gold0-orig,pos,unl,unl,unl,unl,\"Still holding the cord, someone knocks one guard out and releases the cord.\",The eighth guard\nlsmdc3037_IRON_MAN2-17002,9212,Someone breaks his right arm and knocks him out with a kick. Someone,strides down the corridor.,aims the head against a giant wave.,wraps his arms around her.,\"rams the pole, knocking the defending players off.\",lays the stick against the wall grate.,gold0-orig,pos,unl,unl,unl,unl,Someone breaks his right arm and knocks him out with a kick.,Someone\nlsmdc3037_IRON_MAN2-17002,9214,\"In the lobby, someone bites the first guard's ear. Someone\",\"punches the guard's face, sending him sailing backward onto the floor.\",creeps him from a bush in a third class classroom.,taps her bag on the desk outside the printing office.,shifts his jaw to the driver and scans to the ceiling.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the lobby, someone bites the first guard's ear.\",Someone\nlsmdc3037_IRON_MAN2-17002,9216,\"Someone gazes down the hallway at the many guards lying on the floor. With a cord around his neck, one guard\",flails as he dangles from the ceiling.,flies him out of the shower.,puts the passengers back on the couch.,slips his trousers up along the side and shuts the ground then raises his gun.,takes off his coat.,gold0-orig,pos,unl,unl,unl,unl,Someone gazes down the hallway at the many guards lying on the floor.,\"With a cord around his neck, one guard\"\nlsmdc3037_IRON_MAN2-17002,9210,The eighth guard falls to the floor. Someone,slams the remaining guard onto the floor.,pumps her fist through the air.,\"takes someone's hand, his fingers locked on it's bright lid.\",\"on the ground, someone tosses someone to the ground.\",rise off the train.,gold1-orig,pos,unl,unl,unl,unl,The eighth guard falls to the floor.,Someone\nlsmdc3037_IRON_MAN2-17002,9211,An eleventh guard rounds a corner. Someone,breaks his right arm and knocks him out with a kick.,lies down in the open and cups her face in his hands.,gets up and hurries after the witch.,\"rushes, followed by a man, his nazi than completely kneeing, and searches a small shopping trailer.\",emerges peacefully from his pocket and kicks out a fire.,gold0-orig,pos,unl,unl,unl,unl,An eleventh guard rounds a corner.,Someone\nlsmdc3037_IRON_MAN2-17002,9227,\"Inside the dome, someone hurls someone onto a rocky stream bed. Someone\",aims and fires the gatling gun at someone.,sees someone stumble off over the edge of the bus.,crowds wildly the decks 10 feet from side to side.,slides through the bridge by a park roof which lands directly above someone's face.,\"elbows himself, someone splashes water on the hyena.\",gold0-orig,pos,unl,unl,unl,unl,\"Inside the dome, someone hurls someone onto a rocky stream bed.\",Someone\nlsmdc3037_IRON_MAN2-17002,9206,\"As dark smoke rises from the pellets, the guards cover their eyes. Someone\",kicks the guards and knocks them out.,takes a final puff.,grabs someone's radio and stands in tight.,skips down a corridor.,grabs her bag and heads off.,gold0-orig,pos,unl,unl,unl,unl,\"As dark smoke rises from the pellets, the guards cover their eyes.\",Someone\nlsmdc3037_IRON_MAN2-17002,9207,Someone deflects the nightstick with a steel cord. She,punches the guard and wraps the cord around his neck.,manages the wings and starts to fall out.,\"blows, moving her body.\",sits at the edge of the exercise machine.,grabs someone by the head and carries him over the fire.,gold0-orig,pos,unl,unl,unl,pos,Someone deflects the nightstick with a steel cord.,She\nlsmdc3037_IRON_MAN2-17002,9208,\"Two more guards charge someone. Still holding the cord, someone\",knocks one guard out and releases the cord.,snaps passengers from from the vault.,inserts his machine gun.,\"hugs the villain over his head, then lifts someone's locket from his mouth.\",resumes walking and leaps off.,gold1-orig,pos,unl,unl,pos,pos,Two more guards charge someone.,\"Still holding the cord, someone\"\nlsmdc3037_IRON_MAN2-17002,9219,He types on the keyboard. A rolling list of data and the graphic outline of an arc reactor suit,displays on a monitor.,writes but the local finger six points at a poster.,appears to cover an image.,sits on the wooden floor.,,gold0-reannot,pos,unl,unl,unl,n/a,He types on the keyboard.,A rolling list of data and the graphic outline of an arc reactor suit\nlsmdc3037_IRON_MAN2-17002,9217,\"With a cord around his neck, one guard flails as he dangles from the ceiling. Someone\",watches security camera videos.,'s face knocking someone out back and he lies with his wand.,arrives and turns with his back against the moving railing.,\"brings the boy to his feet, who carries him to his back and his legs, his elbows on his hips.\",\"with someone, they lift him up to finish out the gramophone.\",gold1-reannot,pos,unl,unl,unl,unl,\"With a cord around his neck, one guard flails as he dangles from the ceiling.\",Someone\nlsmdc3037_IRON_MAN2-17002,9221,\"The drones follow someone inside, crash into continents, and explode. Someone\",\"follows someone, who holds two cocked pistols, into the room.\",uses an electric tool to shoot a light's energy at the flamethrower.,bounces against the pool high above him and dunks him at his feet.,retreating from the tank.,plods running towards her.,gold1-reannot,pos,unl,unl,unl,pos,\"The drones follow someone inside, crash into continents, and explode.\",Someone\nlsmdc3037_IRON_MAN2-17002,9224,\"Above the Expo grounds, someone flies alone. Someone\",zooms down and tackles someone in the sky.,averts his uncertain - pointed bow.,removes flaming fuse from the tree beside them.,finds notes on the tv.,dodges on a shiny marble floor.,gold0-reannot,pos,unl,unl,unl,unl,\"Above the Expo grounds, someone flies alone.\",Someone\nlsmdc3037_IRON_MAN2-17002,9231,A message appears onscreen: System Access.. Someone,falls off a small cliff and lands on his back in the stream below.,stares out at the windowed office where an old woman checks someone's desk.,opens his eyes and rushes back to bluish so he'll kill him.,wields a cat cover.,turns from 1 in color.,gold0-reannot,pos,unl,unl,unl,unl,A message appears onscreen: System Access..,Someone\nlsmdc3037_IRON_MAN2-17002,9220,A rolling list of data and the graphic outline of an arc reactor suit displays on a monitor. Someone,flies faster and faster toward the unisphere.,lifts the screen around a boot making the first floor up.,is sunscreen buckingham convicts leaving a kids hanging under a bridge with a brown face.,pokes the hook on the fan.,soberly watches the news report.,gold1-reannot,pos,unl,unl,unl,pos,A rolling list of data and the graphic outline of an arc reactor suit displays on a monitor.,Someone\nlsmdc3037_IRON_MAN2-17002,9222,\"Someone follows someone, who holds two cocked pistols, into the room. Inside, the two guards\",hang by their necks from the ceiling.,stare up at the defeated boy who catches him holding a spear under his upper hand.,pile to the far corner of the room.,make their way through the break room.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Someone follows someone, who holds two cocked pistols, into the room.\",\"Inside, the two guards\"\nanetv_kkjBLmM6KEg,18559,A woman speaks to the camera while holding a card. A couple,appears on a professional stage under a spotlight and performs a dance routine.,presents a happy cookie pops are shown and they talk to the woman with it.,lie apart while knitting and knitting.,holds up a photograph of a man walking behind a camera.,of people are there to watch.,gold0-orig,pos,unl,unl,unl,pos,A woman speaks to the camera while holding a card.,A couple\nlsmdc3070_THE_CALL-32949,12099,\"She turns the lock and rests her head, then spots something across the room. She\",\"steps forward, her jaw hanging slack.\",shuts the door behind him.,aims at a shelf.,fly from the deck.,,gold0-orig,pos,unl,unl,unl,n/a,\"She turns the lock and rests her head, then spots something across the room.\",She\nlsmdc3070_THE_CALL-32949,12088,\"Now, the killer slides a cassette tape into an old boom box. Someone\",springs someone's chair into the upright position and circles her with his hand on her head.,follows someone to a new door and dashes to the wrecked room building.,puts a swiffer towel over the basement roof.,tommy spits out the contents and works his way up to the mouth of his tank.,puts a recorder to his lips.,gold0-orig,unl,unl,unl,unl,pos,\"Now, the killer slides a cassette tape into an old boom box.\",Someone\nlsmdc3070_THE_CALL-32949,12087,\"Someone presses it against her until she calms. Now, the killer\",slides a cassette tape into an old boom box.,rolls stop by the gate and slips inside.,swims out toward the camera.,drives forward through a wounded someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone presses it against her until she calms.,\"Now, the killer\"\nlsmdc3070_THE_CALL-32949,12080,\"Now, four wheels, the front two large and the back two tiny, roll across a dingy concrete floor. Her right eye\",\"shifts as someone lowers the high chair back, creating a gurney.\",lies in a dimly lit corridor surrounded by the hydraulic leaded windows.,sweeps to create a flower shape inside the apartment.,scans the parking lot where a unicorn pop is posted on the beach.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, four wheels, the front two large and the back two tiny, roll across a dingy concrete floor.\",Her right eye\nlsmdc3070_THE_CALL-32949,12081,\"Gripping the top of her head, he roughly keeps the mask in place. Now, someone\",\"cuts off her shirt, stripping her down to her bra.\",runs away in a national and flurry things.,emerges at the opposite end of a hall shop.,rides his surfboard down a promontory.,comes and sees someone rolling up a switch.,gold0-orig,pos,unl,unl,unl,unl,\"Gripping the top of her head, he roughly keeps the mask in place.\",\"Now, someone\"\nlsmdc3070_THE_CALL-32949,12100,\"She steps forward, her jaw hanging slack. Someone\",\"breaks through the door and grabs her, covering her mouth.\",leaps back in the passenger seat.,comes out from the deck with a cardigan.,narrows her eyes as he turns to her and him.,goes out the door.,gold1-orig,pos,pos,pos,pos,pos,\"She steps forward, her jaw hanging slack.\",Someone\nlsmdc3070_THE_CALL-32949,12097,\"He falls back and she frees her other hand. In the hall, someone\",reaches a dead end and backtracks.,lies unconscious on someone's bed asleep.,pulls a red one around her neck.,hides a handgun in front of her.,breaks into a smile.,gold0-orig,pos,unl,unl,unl,pos,He falls back and she frees her other hand.,\"In the hall, someone\"\nlsmdc3070_THE_CALL-32949,12086,\"Later, he holds his hand over her mouth, then replaces it with a gas mask. Someone\",presses it against her until she calms.,slumps backwards and bursts his gun.,puts her tinted glasses in another.,bends on another branch as he slowly walks through the grass.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, he holds his hand over her mouth, then replaces it with a gas mask.\",Someone\nlsmdc3070_THE_CALL-32949,12093,\"Her hair still in her face, someone cringes as someone strokes her cheeks. He\",brushes the hair away from her right eye.,\"glances into his eyes, as he holds his gaze at the set of farm doors first.\",walks across the checkered floor.,covers his ear with his finger and leaves.,\"kisses her, then pulls her close, slapping her back himself.\",gold0-orig,pos,unl,unl,unl,pos,\"Her hair still in her face, someone cringes as someone strokes her cheeks.\",He\nlsmdc3070_THE_CALL-32949,12079,\"Now darkness obscures our view. Now, four wheels, the front two large and the back two tiny,\",roll across a dingy concrete floor.,ripped out paper securely in time.,silver signs fade to black.,all passenger - side the drapes.,,gold0-orig,pos,unl,unl,unl,n/a,Now darkness obscures our view.,\"Now, four wheels, the front two large and the back two tiny,\"\nlsmdc3070_THE_CALL-32949,12096,The killer turns away and someone squeezes her left hand free from the wrist restraint. He falls back and she,frees her other hand.,scoots away into the open water.,lands in a flurry of dust.,watches the men go.,,gold0-orig,pos,unl,unl,unl,n/a,The killer turns away and someone squeezes her left hand free from the wrist restraint.,He falls back and she\nlsmdc3070_THE_CALL-32949,12084,\"Now, someone lowers her head back over the lip of the sink and sprays down her hair. As he massages her scalp with shampoo, he\",keeps his face close to hers.,pretends to rain her hands coming down her dress.,sees his staring doe eye.,browses contemporary steps inside the plane.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone lowers her head back over the lip of the sink and sprays down her hair.\",\"As he massages her scalp with shampoo, he\"\nlsmdc3070_THE_CALL-32949,12082,\"Now, someone cuts off her shirt, stripping her down to her bra. He\",removes her sandals and grips her ankles as she pulls away.,\"treads cream on someone's stomach, touching his look, half slumps on the counter.\",strides toward the nesting - covered apartment.,throws a bag aside then steps back.,,gold1-orig,pos,unl,unl,unl,n/a,\"Now, someone cuts off her shirt, stripping her down to her bra.\",He\nlsmdc3070_THE_CALL-32949,12090,\"He Sits beside her, she looks away as he takes a comb off the tray. The disturbed man gently\",combs her hair in front of her face.,shakes the boy's hand.,presses a button on someone's tattoo.,lifts the sleeve up around his shoulders.,,gold0-orig,pos,unl,unl,unl,n/a,\"He Sits beside her, she looks away as he takes a comb off the tray.\",The disturbed man gently\nlsmdc3070_THE_CALL-32949,12095,Someone flashes a tight smile as someone stares with a horrified gaze. The killer turns away and someone,squeezes her left hand free from the wrist restraint.,is leaning over the car.,recoils as he leans over a bloody wall as the truck pulls in.,\"stalks over to the troll who shoots out, eyes narrowed.\",shoves the bouncer onto her side.,gold0-reannot,pos,unl,unl,unl,unl,Someone flashes a tight smile as someone stares with a horrified gaze.,The killer turns away and someone\nlsmdc3070_THE_CALL-32949,12098,\"In the hall, someone reaches a dead end and backtracks. She\",\"turns the lock and rests her head, then spots something across the room.\",picks up a scaffolding containing a pair of flowers.,pauses and's by us the painted wooden book.,\"lands on the bed, then lies with a pillow under one arm.\",floats into the puddle of milk instantly.,gold1-reannot,pos,unl,unl,unl,unl,\"In the hall, someone reaches a dead end and backtracks.\",She\nlsmdc3070_THE_CALL-32949,12101,\"Now, an officer patrols the hive as several workstations lie quiet and vacant. Someone\",sits at her desk working a recorder's controls.,slumps to his couch with a crackle of metal.,leads soldiers down a motorboat in a narrow river.,wipes the car with her thumb.,eyes the car gas on.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, an officer patrols the hive as several workstations lie quiet and vacant.\",Someone\nlsmdc3070_THE_CALL-32949,12092,\"Someone tries squeezing her left hand out from the thick restraint strap as someone trims a little of her hair. Her hair still in her face, someone\",cringes as someone strokes her cheeks.,sees someone's feigning stare.,puts it on the ground.,seems to glimpse her body's balance.,\"'s nose furrows and underneath his father, now pulling the fan suddenly in hand.\",gold1-reannot,pos,unl,unl,unl,unl,Someone tries squeezing her left hand out from the thick restraint strap as someone trims a little of her hair.,\"Her hair still in her face, someone\"\nlsmdc3070_THE_CALL-32949,12085,\"As he massages her scalp with shampoo, he keeps his face close to hers. Later, he\",\"holds his hand over her mouth, then replaces it with a gas mask.\",lathers his chest with his clippers and carefully holds up his chest to reveal a dry staring face.,'s using a plastic tool as he skims its contents.,\"puts on his jacket at the end of his bed, and lays a baby bike up onto the sofa.\",\"sits, stares at someone, then lowers his gun on someone's lap and spreads into the crowd.\",gold1-reannot,pos,unl,unl,unl,unl,\"As he massages her scalp with shampoo, he keeps his face close to hers.\",\"Later, he\"\nanetv_FsXl6whrCWk,680,Two people are sitting on a bean bag chair. A man,is drinking from a mug.,runs around while holding onto a big machine.,gets to their feet and starts pulling off him close with the closing.,is standing in a room holding a handle.,,gold0-orig,pos,unl,unl,unl,n/a,Two people are sitting on a bean bag chair.,A man\nanetv_FsXl6whrCWk,679,A man sits behind a desk. Two people,are sitting on a bean bag chair.,are sitting on mats on two children doing weightlifting.,play table ping pong in front of a window.,sit in a tattoo shop.,are seen sitting behind a desk while looking into the camera.,gold1-reannot,pos,unl,pos,pos,pos,A man sits behind a desk.,Two people\nanetv_FsXl6whrCWk,678,A woman in a black shirt is sitting on a bench. A man,sits behind a desk.,is shown explaining a machine called tools.,is dancing on a stage.,works in the bathroom.,is sitting behind a chair talking to the camera.,gold1-reannot,pos,unl,pos,pos,pos,A woman in a black shirt is sitting on a bench.,A man\nanetv_aAY_M6M26TI,17935,Two people play a ping pong match in a room. The person,scores multiple points in the game in a row.,strikes a large ball at the target.,shows the ball inside the base and cheers them on.,is seen hitting the balls all in his hands.,hits a ball around and hits the ball.,gold1-orig,pos,unl,unl,unl,pos,Two people play a ping pong match in a room.,The person\nanetv_aAY_M6M26TI,14198,A man and woman are inside a house. They,are playing a game of table tennis.,are putting the bike's equipment into the air at the roadside as several other people watch the other leave of bikes.,are looking around at the ice as windows.,are engaged in a game of kickball.,are sitting on intertubes.,gold0-orig,pos,unl,unl,unl,unl,A man and woman are inside a house.,They\nanetv_aAY_M6M26TI,14199,They are playing a game of table tennis. They,hit the ball back and forth over the net.,kick a ball back and forth.,are engaged in a game of dodgeball.,pull the cloth off the table and return to the table.,\"hit a ball across the ice and people stand in the arena, patiently.\",gold0-orig,pos,unl,unl,unl,unl,They are playing a game of table tennis.,They\nanetv_aAY_M6M26TI,17936,The person scores multiple points in the game in a row. People,are seen watching the game.,take pictures as the two continue to spin.,play soccer on the skate field.,lift their hands up until the four of them dive in.,,gold0-reannot,pos,unl,unl,unl,n/a,The person scores multiple points in the game in a row.,People\nanetv_aAY_M6M26TI,17937,People are seen watching the game. The lady,holds the ping pong ball while discussing before she leaves.,puts contacts lens into her eye as well as a guy.,put down the lights up their dips and a skirts in entrance will be put out.,walks over and begins hitting the ball with the blower as well as others.,lifts the stick above the bow.,gold1-reannot,pos,unl,unl,pos,pos,People are seen watching the game.,The lady\nanetv_Uj1QtIM8500,12079,A woman is seen speaking to the camera while holding up a contact lens. She,moves her hands around while still speaking to the camera.,puts contacts of contacts into her hair and shows off her contacts.,continues pushing the crew along her car while turning the lens off.,puts a contact lens in her eye and jumps down.,removes the contact lens from her eye.,gold1-orig,pos,unl,unl,pos,pos,A woman is seen speaking to the camera while holding up a contact lens.,She\nanetv_Uj1QtIM8500,11085,A woman is seen speaking to the camera and holding a contact lens. She,moves her hands around while holding onto the lens and leads into her demonstrating how to put one in your eye.,speaks to the camera and begins holding up a contact lens.,is seen speaking to the camera.,smiles at a camera and places two lens in her eye.,then attempts to flip a single lens into the eye.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera and holding a contact lens.,She\nanetv_Uj1QtIM8500,12080,She moves her hands around while still speaking to the camera. She,holds open her eye and puts a contact in her eye.,\"her the robe, she starts to hula hoop.\",move to go.,man takes a picture of her and pick it up and removes her key from her hand.,,gold0-reannot,pos,unl,unl,unl,n/a,She moves her hands around while still speaking to the camera.,She\nanetv_UCBAyJpXuCw,9689,A man in a black shirt is playing a drum set. A man in a green shirt,plays a guitar at the front of the stage.,is talking in front of the microphone and talks.,is talking in front of the camera.,begins talking and holding a harmonica.,,gold0-orig,pos,unl,pos,pos,n/a,A man in a black shirt is playing a drum set.,A man in a green shirt\nanetv_UCBAyJpXuCw,9688,People are on a stage playing instruments. A man in a black shirt,is playing a drum set.,plays the saxophone again while talking to the camera.,walks into the room and starts playing another drum.,is talking into a microphone.,stands behind drums.,gold0-reannot,pos,unl,unl,pos,pos,People are on a stage playing instruments.,A man in a black shirt\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1644,4495,Someone's buying clothes at a local shop. He,rolls up the boy's garment as someone approaches him from behind.,\"enters the house ignoring her, turns the second, passes it to her and goes off.\",leads someone through the doorway with two small vibrating toys.,sets out a blue trash bag.,,gold0-orig,pos,unl,unl,pos,n/a,Someone's buying clothes at a local shop.,He\nlsmdc3002_30_MINUTES_OR_LESS-920,13937,He sets his cellphone on the table. He,slides it to someone.,stands and watches from the rack.,puts it onto someone's ear and the boy listens on his radio.,removes his tatty hair.,\"goes to the counter, and looks behind him.\",gold0-orig,pos,unl,unl,unl,unl,He sets his cellphone on the table.,He\nlsmdc0004_Charade-47420,5923,\"The glass is held over the first, magnifying the face. It\",'s a photo of a young someone.,is splattered with red foam.,\"collapses along the floor, everything in low, rust billowing and whipping.\",put his arm around master glass.,is moved and somewhat used.,gold0-reannot,pos,unl,unl,unl,pos,\"The glass is held over the first, magnifying the face.\",It\nanetv_k_gjsTv-jy8,9183,A person is standing behind a counter putting food onto a tray. They,put the tray into an oven.,continue to put the insides and the brush up and using a hand to brush.,are walking putting the mix into a pan and placing the cakes together on the tray.,pour down the tray and put them back on the counter.,taste the vegetables as well as instructions and cheese on the top.,gold0-orig,pos,unl,unl,unl,unl,A person is standing behind a counter putting food onto a tray.,They\nanetv_k_gjsTv-jy8,9184,They put the tray into an oven. They,take the tray out of the oven and lift cookies onto a plate.,dance in unison.,use the cookies around the counter.,pick up the carrots and have a recipe roll.,pan around the oven.,gold0-orig,pos,unl,unl,unl,unl,They put the tray into an oven.,They\nanetv_k_gjsTv-jy8,9185,They take the tray out of the oven and lift cookies onto a plate. They,wash off the mat in the sink.,get in the mix and put the lights back on.,put the cookies into a oven and go down the fence.,step out of the room.,make soup and cuts limes.,gold1-reannot,unl,unl,unl,unl,unl,They take the tray out of the oven and lift cookies onto a plate.,They\nanetv_je6wJ_Ky5wg,7062,We pan left and see the class without the teacher. The lady in pink in the back right,is lost and stops trying.,walks away and the lady throws her back at the pinata.,gets slapped and steps inside.,opens the door and finds an apron.,takes up screen the top screen.,gold0-orig,pos,unl,unl,unl,unl,We pan left and see the class without the teacher.,The lady in pink in the back right\nanetv_je6wJ_Ky5wg,2578,A number of women exercise together using a stepping type of implement. The camera,pans slightly to the right.,moves the finish line as they do fast stand of different workouts.,follows the closing in the video with a final stop.,moves to a large freeway on the left of a large table.,zooms in on the ladies side shows her step close.,gold0-orig,pos,unl,unl,unl,unl,A number of women exercise together using a stepping type of implement.,The camera\nanetv_je6wJ_Ky5wg,2579,The camera pans slightly to the right. The camera,pans back slightly to the left.,shows another girl throwing darts on a table at the bottom.,changes to a young man sitting on a large kayak.,moves like a sign through the air.,\"captures the emergency movement, as the camera cuts up windows.\",gold0-orig,pos,unl,unl,unl,unl,The camera pans slightly to the right.,The camera\nanetv_je6wJ_Ky5wg,7060,A lady in a sports bra leads a glass in aerobics using a exercise step. The instructor,raises her am in the air.,reaches for the dance and dances around before continuing to speak.,drags her into an elliptical as she lifts his hands up and down.,holds up a piece of exercise machine and produces a stick.,mounts an exercise instructor spanning her exercise wooden and moves the class.,gold0-orig,pos,unl,unl,unl,unl,A lady in a sports bra leads a glass in aerobics using a exercise step.,The instructor\nanetv_je6wJ_Ky5wg,7061,The instructor raises her am in the air. We,pan left and see the class without the teacher.,\"her face powdered, she puts a wreath on the top of her purse, sits it near, and brings it to the poker\",\"the motor, someone walks her and.\",to the lyrics of the band routine as someone plays the drums.,,gold0-reannot,pos,unl,unl,unl,n/a,The instructor raises her am in the air.,We\nanetv_Dzj5X11anrk,11829,We see an animated opening screen. We,\"see trees, leaves, and mulch.\",see an cartoon being moldy and pray.,see a boy on a horse standing side by side on the stage.,see a person talking to the camera.,see a man talking in a room.,gold1-orig,pos,unl,unl,pos,pos,We see an animated opening screen.,We\nanetv_Dzj5X11anrk,4331,Mulch is poured around the tree. then mulch,is then spread evenly around the tree.,are covered in mulch and.,are placed inside the cutting piece.,have been chopped up on top of the tall christmas tree.,,gold0-orig,pos,unl,unl,unl,n/a,Mulch is poured around the tree.,then mulch\nanetv_Dzj5X11anrk,4330,Two woman and man start scraping a dirt away from a tree. mulch,is poured around the tree.,gives used to repair a snow angel on the roof.,crashes over the orange on the ground.,are seen floating on the branches above the fence.,is torn all around the christmas tree in front of the tree.,gold1-orig,pos,unl,unl,unl,unl,Two woman and man start scraping a dirt away from a tree.,mulch\nanetv_Dzj5X11anrk,11830,A black pot contains mulch and three people are putting mulch around the base of a sapling. We,see the ending credits screen.,\"is two of the in between placing tomatoes of pasta, after they get a venom from it and take off the paper.\",are zooms in and through and taking the left tool.,\", the man demonstrates to log it on fire after taylor while he then proceeded to cut.\",,gold0-reannot,pos,unl,unl,unl,n/a,A black pot contains mulch and three people are putting mulch around the base of a sapling.,We\nanetv_b_iUgvzb1-0,13874,\"A woman bends forward extending her left left arm on front and raising her leg up while having the right hand over her shoulder. Then, the woman\",turns to the left and throw a ball and spin her body.,dances in the wrestling studio with a wrestling roll on her arm.,\"dance on the floor, who does slytherins dance with several others.\",is doing her hand with the rod while she stands and stops while the woman loudly laughs.,,gold0-orig,pos,unl,unl,unl,n/a,A woman bends forward extending her left left arm on front and raising her leg up while having the right hand over her shoulder.,\"Then, the woman\"\nanetv_xmStXpxlG_I,6055,A toddler hits a pinata with a bat while it is spinning. A person,is near the boy showing an arm.,is seen swinging bounces on the grass.,plays hurling a blue ball into the bag on the ground.,spins a small pinata in a foam.,,gold0-orig,pos,unl,unl,unl,n/a,A toddler hits a pinata with a bat while it is spinning.,A person\nlsmdc3032_HOW_DO_YOU_KNOW-2239,10937,Someone picks up her menu and someone nods. Someone,\"rolls her eyes, then studies her menu.\",edges his chair away and stirs.,\"comes along the aisle, stops someone, and goes to her.\",does a few sit ups and tells the proper information about the same.,goes to a table in front of other people.,gold0-reannot,pos,unl,unl,unl,pos,Someone picks up her menu and someone nods.,Someone\nanetv_cA2ZLOZcCyc,9304,A person is riding the bike on the dirt road. The biker,jumped into high ramps.,does several tricks on their skateboards.,is driving a red car and small dog is riding a car.,falls onto the back of the vehicle to a right to get up the hill.,walk an alley holding a stick but holding a leash.,gold1-reannot,pos,unl,unl,unl,unl,A person is riding the bike on the dirt road.,The biker\nanetv_oS7Twj3Pou0,11444,A person walks in the street holding an umbrella. A woman wearing a hooded shirt,jumps near the man.,sits suspended across the street.,continues sweeping the floor.,is playing his skateboard.,sits on a bench in a kitchen.,gold0-orig,pos,unl,unl,unl,unl,A person walks in the street holding an umbrella.,A woman wearing a hooded shirt\nanetv_oS7Twj3Pou0,1027,Man is carrying an umbrella that is brown in color. Woman,is holding a black umbrella.,begins to wash the car.,are sitting in a sunny park in the green grassy grass.,in a gray is sitting on a small chair in a garden.,,gold0-orig,pos,unl,unl,unl,n/a,Man is carrying an umbrella that is brown in color.,Woman\nanetv_oS7Twj3Pou0,11443,A man wearing Arab clothes talks on front a crow while holding a large umbrella. A person,walks in the street holding an umbrella.,reaches over his knees on the sheets.,runs on a deck with a person on the right.,takes a ties tied against a horse and is attached to a rope.,instructs a board to the bow and bow.,gold0-reannot,pos,unl,unl,unl,unl,A man wearing Arab clothes talks on front a crow while holding a large umbrella.,A person\nanetv_ScWdvpS6epQ,6344,People are standing on a blue mat. They,begin doing a cheerleading routine on the mat.,sits on a bench.,\"kick their legs off, trying to get off of the horse.\",hoodie and a white shirt is sitting next to a woman standing in front of her to be recording her and giving her a mouthpiece,are running on gym ice.,gold1-orig,pos,unl,unl,unl,unl,People are standing on a blue mat.,They\nanetv_CbfgZlo0Ut4,15970,\"A man talks inside a car dealer. After, a car\",exits a car wash.,is seen in a plaza area where a girl alongside part of the company.,wash a lot of presented cards.,driving and after the man with a new bottle.,,gold0-orig,pos,unl,unl,unl,n/a,A man talks inside a car dealer.,\"After, a car\"\nanetv_CbfgZlo0Ut4,15971,\"After, a car exits a car wash. A crew of people\",clean a car by hand.,are inside the facility.,brushes her tires out of the car.,ride the camels along the sidewalk.,are near a barn by a man holding a yellow check boat.,gold0-orig,pos,unl,unl,unl,unl,\"After, a car exits a car wash.\",A crew of people\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19283,Where high - ranking Officers of the Third Reich stand flanking someone as they oversee the rally. Someone,\"is walking away in an open area, background of torches, vehicles, nazi officers.\",runs across the launch and lands but falls back in slow motion and falls to the platform.,sits staring down at the wall with both hands clasped behind fists.,\"follows someone, who sets people on the crowd, while someone stands.\",\"stares at someone, who is standing behind the table with his hands on his hips.\",gold0-orig,pos,unl,unl,unl,unl,Where high - ranking Officers of the Third Reich stand flanking someone as they oversee the rally.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19291,They move off and almost run headlong into someone and his entire entourage coming down from the Podium. 50 kids,push their autograph books for someone's signature.,run into the chic building that slanted all that direction.,do to open someone's tank taking bayonet belts.,huddle behind the row of drones dancing bystanders.,,gold0-orig,pos,unl,unl,unl,n/a,They move off and almost run headlong into someone and his entire entourage coming down from the Podium.,50 kids\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19292,50 kids push their autograph books for someone's signature. Someone,pauses to sign them.,starts to answer the front door.,looks away from the young girl.,\"rides close behind someone, who wears a helmet.\",,gold0-orig,pos,unl,unl,unl,n/a,50 kids push their autograph books for someone's signature.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19284,\"Someone is walking away in an open area, background of torches, vehicles, Nazi Officers. Someone\",pushes someone against a column and begins to search her clothing for the diary.,circles someone behind his desk.,stop in a building full view of a statue.,collects supplies in a dark driveway.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone is walking away in an open area, background of torches, vehicles, Nazi Officers.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19296,Someone's motorcycle pulls up to the main terminal. A Plainclothes Agent,distributes leaflets bearing someone's picture to people inside the terminal.,approaches the foggy structures.,spots someone's emblazoned with an invisible force.,moves up to behind grey desk.,approaches someone's ring keys.,gold1-orig,pos,unl,unl,unl,unl,Someone's motorcycle pulls up to the main terminal.,A Plainclothes Agent\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19285,Someone pushes someone against a column and begins to search her clothing for the Diary. He,pulls the book from someone's pocket.,she picks through the book.,\"throws a candle at someone and bows his head, as the fireballs explode behind her.\",looks irritated and uses her handheld recorder.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pushes someone against a column and begins to search her clothing for the Diary.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19282,Someone wears the uniform of a Nazi Soldier. He,is now buttoning up the tunic - - which happens to be several sizes too big.,cannons assault rifles.,lifts the glass out of her files.,\"strides on a cable under a huge, wooden bridge and stares into space.\",\"looks down, and then thunders him and raises his arms.\",gold1-orig,pos,unl,unl,unl,unl,Someone wears the uniform of a Nazi Soldier.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19288,Someone releases her and backs away. She,looks at him with a lover's pain.,rips from her skirt.,hits the man down the platform toward someone's face.,leaps down after the noose.,sends her sprawling herself.,gold0-orig,pos,unl,unl,pos,pos,Someone releases her and backs away.,She\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19294,\"Someone breaks the spell by taking the Grail Diary from him, opens it to the first page and signs his autograph. He\",hands it back and moves on.,\"clears the page, studies it closely, then scans the page.\",\"wins the same battle with his wand, and over the other team.\",puts his hands in it.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone breaks the spell by taking the Grail Diary from him, opens it to the first page and signs his autograph.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19287,His hands fly to her neck. Someone,releases her and backs away.,pensively tears the jello out.,picks up a glass of champagne and puts it in a pocket.,gives him a passionate kiss and kisses her hand.,straightens off his advances.,gold0-orig,pos,unl,unl,unl,pos,His hands fly to her neck.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19297,A Plainclothes Agent distributes leaflets bearing someone's picture to people inside the terminal. Someone,leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder.,touches his cheek again.,flashes himself to eye the photo as he passes between pedestrians.,walks in the sweaty officers' office.,helps someone to his feet.,gold1-reannot,pos,unl,unl,unl,unl,A Plainclothes Agent distributes leaflets bearing someone's picture to people inside the terminal.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19289,She looks at him with a lover's pain. He,moves over to someone.,holds it over his eyes for a moment.,lowers his head and sits by his chair.,\"claps a hand, then jumps in place.\",glares at the automaton.,gold1-reannot,pos,unl,unl,unl,pos,She looks at him with a lover's pain.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19286,He pulls the book from someone's pocket. His hands,fly to her neck.,continue to curl around someone's body.,are led out to the patio line.,run out to its side.,are now covered in ice.,gold1-reannot,pos,unl,unl,unl,unl,He pulls the book from someone's pocket.,His hands\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19298,Someone leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder. They,begin to walk toward the boarding gates.,\", someone gets a scrap of paper from someone's wedding box and hangs it on a piece of paper.\",\"his full breath, a bearded man and red woman curls his fingers around his weary muscular jaw, and aims out the window.\",\"pauses, going blankly into space where someone skids to a stop beside his bed and leans his head on his desk.\",,gold0-reannot,unl,unl,unl,unl,n/a,Someone leans in a doorway reading a newspaper as someone enters down the stairs and taps someone's shoulder.,They\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19293,Someone pauses to sign them. Someone,looks someone's way.,glares at the newcomers.,sits on the fire.,shakes his head again.,\"smiles, turns his head.\",gold1-reannot,pos,unl,unl,pos,pos,Someone pauses to sign them.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19295,He hands it back and moves on. Someone's motorcycle,pulls up to the main terminal.,is now parked circled by bushes and various rocks.,helps him into the water and rides in behind the steep cliffs.,follows him below the truck where someone removes its roaring wheels.,,gold0-reannot,pos,unl,unl,unl,n/a,He hands it back and moves on.,Someone's motorcycle\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70439,19290,He moves over to someone. They,move off and almost run headlong into someone and his entire entourage coming down from the podium.,exit up a tunnel.,walk through in front of the house.,spot her bad husband.,,gold0-reannot,pos,unl,unl,unl,n/a,He moves over to someone.,They\nanetv_Jd3D2d-RwL0,4930,A close up of a leaf blower is shown followed by the camera looking around the area. A hand,is then seen starting the machine and pushing the machine around the yard.,walks in and continuing to smoke while two of them standing watch.,is seen followed by a person combing her hair.,takes out a rake and cuts leaves.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a leaf blower is shown followed by the camera looking around the area.,A hand\nanetv_Jd3D2d-RwL0,4932,The man turns off the machine and looks around the front while pointing to the top of the machine. The camera pans around the machine and the man,is shown giving a thumbs up.,holds the machine upright.,stepping up and down on the machine again.,continues to walk into the machine.,continues moving around and leads into him posing and speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The man turns off the machine and looks around the front while pointing to the top of the machine.,The camera pans around the machine and the man\nanetv_Jd3D2d-RwL0,4931,A hand is then seen starting the machine and pushing the machine around the yard. The man,turns off the machine and looks around the front while pointing to the top of the machine.,goes back down and continues to hit the leaves.,then sits up and adjusts the machine.,continues to ride the bike back and fourth while the camera captures his movements.,finishes and shows how to use the machine using an exercise stick to hit the pins again.,gold1-orig,pos,unl,unl,pos,pos,A hand is then seen starting the machine and pushing the machine around the yard.,The man\nanetv_YQfJWGJ75Pk,133,\"The man then goes to the right side of the dresser and sprays there, then goes back to the front, then the top, and then on the left side. The dresser the man is spraying\",is on a moving platform that is on wheels.,\"the coverage bag and talks, then the man talks and spits up the hose.\",the window with his rag doing with the sponge and shines the waves.,something with his finger paint on the earlobe.,,gold0-orig,unl,unl,unl,unl,n/a,\"The man then goes to the right side of the dresser and sprays there, then goes back to the front, then the top, and then on the left side.\",The dresser the man is spraying\nanetv_YQfJWGJ75Pk,17586,A man demonstrates how to spray varnish a chest of drawers using a spray nozzle varnish hose. A man,sprays a chest of drawers with varnish while standing barefoot outdoors.,\"stands in his kitchen, shaving her legs whipping brown.\",is cleaning a mug while a woman in a pink sweatshirt gets in a cart.,lifts a blue towel off the chair and begins to lay a rug on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,A man demonstrates how to spray varnish a chest of drawers using a spray nozzle varnish hose.,A man\nanetv_YQfJWGJ75Pk,132,A man is standing with his legs apart and is holding a sprayer in his right hand and spraying a dresser with many drawers as a man walks past him and looks at what he's doing. The man brings his legs closer together while still spraying and he,begins closing the drawers.,\"smiles and takes his high jump into the air and inserts are first, in slow motion.\",\"looks toward the camera as he speaks to the camera, scrubbing his face with trembling hands.\",is about to off his feet instead.,continues to bulge himself and his hands move off furniture.,gold0-orig,pos,unl,unl,unl,pos,A man is standing with his legs apart and is holding a sprayer in his right hand and spraying a dresser with many drawers as a man walks past him and looks at what he's doing.,The man brings his legs closer together while still spraying and he\nanetv_YQfJWGJ75Pk,17587,The man covers the entire chest from the very top to the bottom with the spray varnish which is coming from a long hose attached to a metal pump. The man,finishes spraying the chest and hangs the nozzle up and walks away as the camera focuses on the finished product.,grabs the boot and begins to blow over the roof that is hanging from the end wall.,takes the substance from the boy in the bath.,\"removes something from his pocket and slips into the car, creating a bigger time above on the side of the car.\",fizzing a second piece of material on a brick holder.,gold0-reannot,pos,unl,unl,unl,unl,The man covers the entire chest from the very top to the bottom with the spray varnish which is coming from a long hose attached to a metal pump.,The man\nanetv_3PiN6rDgg_E,16089,The camera shows different makeup pieces with accompanying descriptions cards in between cutting back to the woman talking. The woman,\"begins to apply some of the makeup to her face, including lips and to her nails via nail polish.\",continues speaking to the camera while next to the elliptical and showing a picture about a storage channel.,applies the clamp to her head and continues decorating the edges of the paper.,continues talking extensively about the entire ward and people working at a table to have two other ladies.,instructs more boys how to use the carton nearby.,gold1-orig,pos,unl,unl,unl,unl,The camera shows different makeup pieces with accompanying descriptions cards in between cutting back to the woman talking.,The woman\nanetv_3PiN6rDgg_E,16090,\"The woman begins to apply some of the makeup to her face, including lips and to her nails via nail polish. The woman\",uses some of the makeup to make hair streaks in another persons hair.,\"uses a paintbrush to form the powdered spray, which wraps around the eyelids of the camera window.\",continues talking and looks out followed by putting his hair well.,starts blow drying her hair by giving it to her ear.,washes her makeup and then about the polishing shoe in her pants mouth.,gold1-orig,unl,unl,unl,unl,unl,\"The woman begins to apply some of the makeup to her face, including lips and to her nails via nail polish.\",The woman\nanetv_3PiN6rDgg_E,16088,\"A woman demonstrates how to use one container of powdered pigment to make many different hair, nail, and face makeup products. A woman\",talks to the camera in front of a counter filled with makeup.,is then shown brushing the hair of the dog with white combs that used to brush by a model's nails.,\"holds a matte towel on her arm, shaves it, then polishes its smooth arc across the side of the table.\",peels a partial lens into her hand on a silver tube.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman demonstrates how to use one container of powdered pigment to make many different hair, nail, and face makeup products.\",A woman\nanetv_gA0m7YUH408,11116,A man hits a ball with a club. He,puts his hands in the air to celebrate.,man serves the ball.,hits the ball with his stick.,throws the balls down onto the table.,picks the ball up and hits it.,gold1-orig,pos,unl,unl,unl,unl,A man hits a ball with a club.,He\nanetv_gA0m7YUH408,2289,A young man is standing bent over on a grassy field. The man hits a croquet ball with a mallet and it,strikes a wooden stick.,'s caught in a fling.,falls off his feet.,'s a big hole.,,gold1-orig,pos,unl,unl,unl,n/a,A young man is standing bent over on a grassy field.,The man hits a croquet ball with a mallet and it\nanetv_gA0m7YUH408,11117,He puts his hands in the air to celebrate. People,are walking on the grass behind him.,\"see him get to see her, but his dog is standing by him.\",spins his bat around and makes a dash for the helmet from the shoulders of his opponent.,see the man standing in a black shirt case talking.,are alone in the arena watching the court.,gold1-orig,pos,unl,unl,unl,unl,He puts his hands in the air to celebrate.,People\nanetv_gA0m7YUH408,2290,The man hits a croquet ball with a mallet and it strikes a wooden stick. The man,celebrates by repeatedly raising his hands in victory.,throws the ball and throws it into a white ball.,points to a fence in the corner with a racket while staying near the window.,rolls the bow and hits it repeatedly.,misses the racquet and misses.,gold0-orig,pos,unl,unl,unl,unl,The man hits a croquet ball with a mallet and it strikes a wooden stick.,The man\nanetv_8gUKEh27AFM,15037,A man stands behind a cage. He,is standing on a small circle.,\"stops the camera and stands, resting on a hand top.\",bends to pick up the top tiles.,gets a tools into his mouth.,lifts the sword back and forth.,gold1-reannot,pos,unl,pos,pos,pos,A man stands behind a cage.,He\nanetv_8gUKEh27AFM,14523,A man swings a ball on a chain around his body and throws it behind him. A man in a blue shirt,stands behind a fence behind him.,lifts the pole and walks away to hit it professionally.,runs in a path with some males.,jumps through the air like more discus.,goes down when rubs on the bar.,gold1-reannot,pos,unl,unl,unl,unl,A man swings a ball on a chain around his body and throws it behind him.,A man in a blue shirt\nanetv_8gUKEh27AFM,15039,He has a ball on a rope. He then,spins and throws the ball.,rubs it over the ball.,throws it over the net.,rides the log playing an game.,throws the ball to the ball.,gold1-reannot,pos,unl,unl,unl,unl,He has a ball on a rope.,He then\nanetv_OMRu1rPRBHo,7185,A man is talking to another man in a parking lot. They,take tubes to the top of a hill.,cheer him on while others watch from below.,parked cars in the front of each other by three cars and driving.,lift shingles on the ground.,are then shown back inside the pole.,gold1-orig,pos,unl,unl,unl,unl,A man is talking to another man in a parking lot.,They\nanetv_OMRu1rPRBHo,7186,They take tubes to the top of a hill. They then,tube down the snowy hill.,ride him on the hill.,get down on tubes and start bouncing down a mountain together.,ride off of tubing down a rapid river.,,gold0-orig,pos,unl,unl,unl,n/a,They take tubes to the top of a hill.,They then\nanetv_OMRu1rPRBHo,15609,People are walking around on the snow. People,are going down the hill of snow in tubes.,pull their tubes behind the horses and one of them starts the building.,are watching a game of beach soccer.,are taking cars from the drive behind the car.,are riding horses horses on a field together.,gold0-orig,pos,unl,unl,unl,unl,People are walking around on the snow.,People\nanetv_OMRu1rPRBHo,15610,People are going down the hill of snow in tubes. People,are coming up the hill attached to a rope.,are going down the mountain into the tubes.,are riding on tubes in a parking lot.,go down a snowy hill.,,gold0-reannot,pos,unl,unl,pos,n/a,People are going down the hill of snow in tubes.,People\nanetv_Uw_4gKpmAhI,18901,The other contractor is breaking an existing wall in the living room. The entire house,is under renovation with furniture and boxes lying around the house with dust.,is moved by the father watch and points a finger at the camera.,is covered with shaving cream.,is pictured in white and the cuting glass.,,gold0-orig,pos,unl,unl,unl,n/a,The other contractor is breaking an existing wall in the living room.,The entire house\nanetv_L67RSiR2X78,9013,A man is waxing and buffing his skies. He,rubs wax over the ski again.,are engaged in a game of polo.,are on bow enjoying a demonstration.,goes to see remembrall.,,gold0-orig,pos,unl,unl,unl,n/a,A man is waxing and buffing his skies.,He\nanetv_L67RSiR2X78,9014,He rubs wax over the ski again. He,uses the buffer on the ski again.,breaks and gives the paper to the rope player.,wets the wax seals and cleans out it with his fingers.,show how to apply wax to tape and put it on a ironing board.,finishes his hair and washes up in surprise.,gold0-orig,pos,unl,unl,unl,unl,He rubs wax over the ski again.,He\nanetv_L67RSiR2X78,9017,He is buffing it with a fine buffer. He,is done with buffing the ski.,ripping the legs back turns away before throwing him out.,fills the cover with sand.,\"spins around, looking out over the room with the ferry.\",\"looks up into the bare air to see someone standing, mesmerized by what he sees.\",gold0-orig,pos,unl,unl,unl,pos,He is buffing it with a fine buffer.,He\nanetv_L67RSiR2X78,18230,Man is showing how to wax skis with a machine. with a sponge the man,is putting wax in the ski and then is polishing it.,uses a measuring tape to polish the white piece of foam.,is using a tool to remove tiles.,uses the dry wax to assemble a hanger on the center of the counter.,,gold0-orig,pos,unl,unl,unl,n/a,Man is showing how to wax skis with a machine.,with a sponge the man\nanetv_L67RSiR2X78,9012,An advertisement for snowculture is on the screen. A man,is waxing and buffing his skies.,throws the pole into a lane.,is cleaning up a kitchen sink.,is shown being an airplane.,gets a top hole in the water.,gold0-orig,pos,unl,unl,unl,unl,An advertisement for snowculture is on the screen.,A man\nanetv_L67RSiR2X78,9016,He is scrapping off the excess wax from the ski. He,is buffing it with a fine buffer.,shaves the items in different clothing and smiles.,pushes the chains to secure the snowy tire.,shows the same process as he skiis.,ski when there is the flower on the board.,gold0-orig,pos,unl,unl,unl,unl,He is scrapping off the excess wax from the ski.,He\nanetv_L67RSiR2X78,9015,He uses the buffer on the ski again. He,is scrapping off the excess wax from the ski.,\"is so strong that he falls and he is right, and the camera moves angles along the scene.\",grips his sprayer better.,continues up the path until his legs are bare.,succeeds polishing the ski off using his power cap.,gold0-orig,pos,unl,unl,unl,pos,He uses the buffer on the ski again.,He\nlsmdc1010_TITANIC-77002,5052,Someone stands behind her grandmother as someone climbs out of her wheelchair. The crew,watches someone as she shuffles to a video monitor displaying footage of the titanic wreck.,places a piece of the cases together.,\"travels through the night, holds her father's eyes as he takes the seat towards her.\",\"backs out, dragging a massive shield.\",of the pew converge around her.,gold0-orig,pos,unl,unl,unl,pos,Someone stands behind her grandmother as someone climbs out of her wheelchair.,The crew\nlsmdc1010_TITANIC-77002,5054,\"On the video monitor, grayish growth covers the window's ornate scrollwork. Someone\",places her hands over her mouth.,lies at work and watches more stonily while people stare ahead and stare hard.,\"dyes her hands from the infant, then faces the open screen.\",climbs to the top on the platform and stares down in the sleeping gorilla.,leans in beside the gap.,gold0-orig,pos,unl,unl,unl,unl,\"On the video monitor, grayish growth covers the window's ornate scrollwork.\",Someone\nlsmdc1010_TITANIC-77002,5057,Someone switches on a tape recorder as he sits across from someone. Someone,\"grins, then nods.\",stacks a stack of papers onto a nearby desk.,looks around a bit as he nears for class.,gently puts a light beneath her reflection.,,gold0-reannot,pos,pos,pos,pos,n/a,Someone switches on a tape recorder as he sits across from someone.,Someone\nlsmdc1010_TITANIC-77002,5053,The crew watches someone as she shuffles to a video monitor displaying footage of the Titanic wreck. Someone,\"blinks and inhales sharply as the door with the ornate, leaded glass window comes into view.\",restarts their lifeboat up in the sunken announcers position.,glances around the controls and sees a boat wheel down.,crouches down from the ship's railing just below the platform as the engineer smiles.,\"vomits on the deck as she puts pressure in his tank, then answers a door.\",gold0-reannot,pos,unl,unl,pos,pos,The crew watches someone as she shuffles to a video monitor displaying footage of the Titanic wreck.,Someone\nlsmdc1010_TITANIC-77002,5056,Someone turns away from the monitor and returns to her wheelchair. Someone,switches on a tape recorder as he sits across from someone.,'s sitting on a big mat next to her and keeps holding the strap strapped to her face.,\"someone's case, someone removes someone's business hair and steps up onto the floor situated on the floor floor.\",\"watches with an embarrassed smirk, then slips as she hands him her move.\",\"unravels her hair, removes her gloves, then throws her arms overhead, and stares at the dark reflection on the table.\",gold0-reannot,pos,unl,unl,unl,pos,Someone turns away from the monitor and returns to her wheelchair.,Someone\nanetv_QUJXOFPJ_YI,17540,Three people play racquetball really badly. They,do not have court skills or an awareness of how the ball will bounce.,throw the ball on the game croquet between two pins.,is engaged in a game of fencing.,bounce a ball and falls towards a goal in a large net.,,gold0-orig,pos,unl,unl,unl,n/a,Three people play racquetball really badly.,They\nanetv_QUJXOFPJ_YI,5464,They are hitting a ball against the wall with racquets. They,continue playing as a man joins in.,are in a game of water polo.,are involved in a game of volleyball.,engage in roller blading.,begin rafting down a line together and a man eventually steps into frame.,gold0-reannot,pos,unl,unl,unl,unl,They are hitting a ball against the wall with racquets.,They\nanetv_QUJXOFPJ_YI,5463,Two girls are inside a gym in a building. They,are hitting a ball against the wall with racquets.,walk down he first landing on a sidewalk.,are doing a choreography on the couch.,are standing in front of a counter and they are jumping over a stack of mats in front of them.,take turns jumping up.,gold1-reannot,pos,unl,unl,unl,pos,Two girls are inside a gym in a building.,They\nlsmdc1004_Juno-6700,13145,\"He brings the up to his neck. With his hands round her waist, her belly touching his, she\",\"closes her eyes and rests her head on his chest, as they slowly sway together.\",folds his pants tightly across her chest.,tosses them back to the ceiling and backs away.,\"goes along side to side with her hands in his belt pockets, running over to him.\",,gold0-orig,pos,unl,unl,unl,n/a,He brings the up to his neck.,\"With his hands round her waist, her belly touching his, she\"\nanetv_5yqHTGQm2B0,12814,They are walking on the pogo sticks and jumping a bit too. They,try to get the ball in the hoop and continue bouncing around the court.,come up and then cut their grass and can.,man in blue shorts ties the hoop back to the man releases the boy and the camera follows as the woman performs higher too.,perform trick and a man is skating fast down.,come up and start solving the cube.,gold1-orig,pos,unl,unl,unl,unl,They are walking on the pogo sticks and jumping a bit too.,They\nanetv_5yqHTGQm2B0,12815,They try to get the ball in the hoop and continue bouncing around the court. A man in green,does a flip in the air and shoots the ball into the hoop.,walks with a ball on the net.,does a different trick and begins on how to properly make the pit.,begins to kick the ball into the circle.,goes left and right to start the game.,gold0-reannot,pos,unl,pos,pos,pos,They try to get the ball in the hoop and continue bouncing around the court.,A man in green\nanetv_5yqHTGQm2B0,12813,Men on these robotic looking pogo sticks are playing basketball inside of a court. They,are walking on the pogo sticks and jumping a bit too.,are in seashore playing the game together.,\"are playing a game of war behind shambling kids, and fighting blankets of the ball.\",are playing a game of soccer on the croquet court.,are fighting in a red barn with three men sitting on a rock wall watching them.,gold0-reannot,pos,unl,unl,unl,unl,Men on these robotic looking pogo sticks are playing basketball inside of a court.,They\nanetv_gDexNGeZln0,18435,A person is seen speaking to the camera and leads into a close up of the ground and another person sitting on the side. More shots,are shown of logs and sticks as well as a fire pit and a boy cutting a stick.,are shown of people riding out and around in intertubes in a large pit with her and various others.,are shown of people putting plaster on the roof as well as lighting and presenting the camera.,are shown of people getting ready and sitting down on a raft.,are shown of the boys playing with one another and celebrating with their arms and pointing.,gold0-orig,pos,unl,unl,pos,pos,A person is seen speaking to the camera and leads into a close up of the ground and another person sitting on the side.,More shots\nanetv_gYvYh9aMohY,19881,\"Then, Another boy is jumping rope as well and swirling it around and he eventually throws his rope. There\",is a larger group of 5 that jump rope in sync and do a lot of cool tricks.,\", the man finishes his routine and finishes the rope with the rope in his hand.\",\", the rope has entered the obstacle perfectly and is followed by the boy jumping around.\",\", he does it again then walks away.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Then, Another boy is jumping rope as well and swirling it around and he eventually throws his rope.\",There\nlsmdc3083_TITANIC2-38930,3170,Someone stands behind her grandmother as someone climbs out of her wheelchair. The crew,watches someone as she shuffles to a video monitor displaying footage of the titanic wreck.,set up with her long tow pole.,stoops over a tiny van as the driver opens its car door.,manmade the heavy water stamps the contents until he sees a large spill crowd around the ship.,offer her via a card.,gold0-orig,pos,unl,unl,unl,unl,Someone stands behind her grandmother as someone climbs out of her wheelchair.,The crew\nlsmdc3083_TITANIC2-38930,3173,Someone turns away from the monitor and returns to her wheelchair. Someone,switches on a tape recorder as he sits across from someone.,\"joins the nerds on the floor, then lowers her arms without taking her purse.\",looks nervously at someone.,turns away with her eyes closed.,picks up a hat.,gold0-reannot,pos,unl,unl,unl,pos,Someone turns away from the monitor and returns to her wheelchair.,Someone\nanetv_wAt_OsQe-qM,18394,A man is talking inside a room in a house. He,is holding a stick and violin.,goes to a workshop and places on the scale.,puts some clothes into a bucket.,is holding a flower under the handle.,begins using his cigarette to remove his shoes.,gold0-orig,pos,unl,unl,unl,unl,A man is talking inside a room in a house.,He\nanetv_wAt_OsQe-qM,18395,He is holding a stick and violin. He then,demonstrates how to play the violin.,returns to playing the flute.,begins playing the drums in place.,spins himself in circles.,shows the ball on the box several times.,gold0-orig,pos,unl,unl,unl,unl,He is holding a stick and violin.,He then\nanetv_pON-g7IJKEY,6089,There is a Disney princess pinata hanging from a tree. The kids,are enjoying hitting the pinata with a blue stick.,\"are playing croquet nonchalantly, trying to reach a goal.\",are playing poker on the ground and cheer her across.,are under several tables.,,gold0-orig,pos,unl,unl,unl,n/a,There is a Disney princess pinata hanging from a tree.,The kids\nanetv_pON-g7IJKEY,6088,There are many kids ranging from toddlers to teenagers enjoying themselves at a backyard birthday party. There,is a disney princess pinata hanging from a tree.,are several and people on lights.,is a different person than the large group of some children riding in their lunch.,are parents playing with the students at the beach playground in the backyard.,,gold0-orig,pos,unl,unl,pos,n/a,There are many kids ranging from toddlers to teenagers enjoying themselves at a backyard birthday party.,There\nanetv_pON-g7IJKEY,6090,The kids are enjoying hitting the pinata with a blue stick. they kids,take turns to hit the pinata.,are side to side playing with the kids.,\"continue laughing, trying to keep the poles away and unable to hit the pinata away from the other.\",\"start throwing one of the limbs high in the air, trying not to pick it up.\",,gold0-orig,pos,unl,unl,unl,n/a,The kids are enjoying hitting the pinata with a blue stick.,they kids\nanetv_pON-g7IJKEY,6091,They kids take turns to hit the pinata. A little girl dressed in a purple skirt,tries to tear the pinata by hitting it hard with the stick.,are running around talking.,\"throws the long, closed bat.\",throws the ball to another boy playing it as the person is missing.,comes into the room and continues ironing.,gold0-orig,pos,unl,unl,unl,unl,They kids take turns to hit the pinata.,A little girl dressed in a purple skirt\nanetv_6lIi6-Y6q10,12471,He slices some lemons and puts the lemons along with a cherry on a toothpick. Then he,puts a slice of cucumber that is cut lengthwise into the cocktail.,adds onions and tomato juice and turns right before he loses the jet to add on the lemon.,\"pours three different liquors in a lemon, added vodka and grape tomatoes to stir it into a small cup.\",finishes the finished process and manages to poke another light into the dough then stir it with.,sprays water on his face and continues looking out and taking the glass one by one.,gold1-orig,pos,unl,unl,unl,unl,He slices some lemons and puts the lemons along with a cherry on a toothpick.,Then he\nanetv_6lIi6-Y6q10,12470,He puts some ice cubes in a talll glass and then adds some Pimms in it. He,slices some lemons and puts the lemons along with a cherry on a toothpick.,lifts the glass out into the bottom of the martini glass.,chop the beers in the nuts then in the water and the man attempts to jam the sandwich into it.,mixes the speed of the pasta and still looks in the pan.,continues cleaning the cooker and pours on the battery.,gold0-reannot,pos,unl,unl,unl,unl,He puts some ice cubes in a talll glass and then adds some Pimms in it.,He\nanetv_RnRUwLtR33g,5733,The lady jumps rope on the pavement. The lady,swings the rope to the side.,gets on the pommel horse again.,struggles to bring it up on the water.,smiles and walks away.,,gold0-orig,pos,unl,unl,pos,n/a,The lady jumps rope on the pavement.,The lady\nanetv_RnRUwLtR33g,1596,\"A young girls talks into the camera and demonstrates several jump rope stunts and techniques from an outdoor paved park ground, surrounded by houses and foliage. The girl\",talks to the screen and smiles while the camera has a close up.,is shown in the class smiling for pictures as people continue run across the walls while others are in the background.,is taking turns in an indoor cafeteria with a group of judges.,starts to meet with each of them filming squats are shown in front of them.,\"descends to the floor, and now shown in different separate positions.\",gold1-orig,pos,unl,unl,unl,pos,\"A young girls talks into the camera and demonstrates several jump rope stunts and techniques from an outdoor paved park ground, surrounded by houses and foliage.\",The girl\nanetv_RnRUwLtR33g,1597,The girl talks to the screen and smiles while the camera has a close up. The girl,begins to jumprope on the park ground exhibiting rope work and leg work within the techniques.,laughs really trying to keep the composure moving off.,\"bends, and takes plaster tools and begins braiding the girl's braid.\",moves her hands behind and over her body while talking to the camera.,,gold0-reannot,pos,unl,unl,pos,n/a,The girl talks to the screen and smiles while the camera has a close up.,The girl\nanetv_RnRUwLtR33g,5732,A lady speaks while outside on a windy day. The lady,jumps rope on the pavement.,shows happy pigtails stepping up and down down the street.,tries a small bit.,talks to the camera operator and a butterfly knife.,,gold0-reannot,pos,unl,unl,unl,n/a,A lady speaks while outside on a windy day.,The lady\nanetv_lJRwUE12drE,11176,The gymnast then moves himself around the bars and jumps down afterwards. Another man,steps up to the bars and attempts to spin around.,joins the staircase leading onto a slack line.,slows down a little bit and then kicks himself.,follows his opponent to two dance while flipping one another while stopping to lift his arms up and kick back.,is then seen running down a track with people stretching on the sides.,gold1-orig,pos,unl,unl,pos,pos,The gymnast then moves himself around the bars and jumps down afterwards.,Another man\nanetv_lJRwUE12drE,11175,People are seen walking around a gymnasium and leads into one standing in between bars. The gymnast then,moves himself around the bars and jumps down afterwards.,balances on jump ropes by teammates and people cheer them on.,perform several tricks with after posing around themselves while walking by people.,runs performing gymnastics once again and eventually jumping up and down on a bridge facing others.,begins jumping all around the bars and ends by jumping up and down.,gold1-reannot,pos,unl,unl,unl,unl,People are seen walking around a gymnasium and leads into one standing in between bars.,The gymnast then\nlsmdc0029_The_Graduate-64175,3447,He undoes the zipper at her neck. She,turns and looks at him.,checks his pulse.,climbs in and brushes past them.,stares after her apron then places her hand on the front of his own thigh.,fixes her head on her pillow.,gold0-orig,pos,unl,unl,pos,pos,He undoes the zipper at her neck.,She\nanetv_CtQ25XC45As,136,The kids then play a game of dodgeball against one another. One team,wins and cheers with one another as they line up to receive a trophy.,scores a goal when another poses and many others watch on the sidelines.,dives into the net.,hits a goal and hits one of the pucks.,shoots the ball to the goal.,gold0-reannot,pos,unl,unl,unl,unl,The kids then play a game of dodgeball against one another.,One team\nanetv_-DGsqL65o4k,9627,A car is seen stuck in some water while another car drive past with a person riding skis on the back. The camera,captures the water skier from several angles as the car flies past others.,captures more videos of people riding the leaves staring back towards the camera.,pans to a group of men shoveling the man's fur and a reporter fighting with tires.,shows several pictures of people riding down a steep hill on tubes going down the hill.,zooms in on the tourists enjoying the view as a man skateboards and end the lift and jumps at the end.,gold0-orig,pos,unl,unl,unl,unl,A car is seen stuck in some water while another car drive past with a person riding skis on the back.,The camera\nanetv_-DGsqL65o4k,1558,Two people are standing on the side walk of a flooded street. a car,speeds through the street.,is parked in a busy street.,is one of them watching them.,drives with a man who is getting down into a boat.,stands behind the woman.,gold0-reannot,pos,unl,unl,unl,unl,Two people are standing on the side walk of a flooded street.,a car\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26041,19245,\"She shoves the statue, which knocks into another, creating a domino effect that topples an entire row. As someone reaches for his sword, someone\",\"kicks it away, hauls him to his feet and pulls him close.\",gently pulls the boy's body towards the rather human child.,speeds down a steep run past a dead soldier.,pulls herself up and immediately goes to collapsing.,,gold0-orig,pos,unl,pos,pos,n/a,\"She shoves the statue, which knocks into another, creating a domino effect that topples an entire row.\",\"As someone reaches for his sword, someone\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26041,19244,\"Chasing him, someone halts at an intersection, then instinctively turns. Someone\",crouches behind a statue and holds up his phone.,can not notice the van arrives.,remembers its eyes scanning captivated areas together.,starts the tiger straight curving across the top of a bluff.,sees him helpless too.,gold1-reannot,pos,unl,unl,unl,unl,\"Chasing him, someone halts at an intersection, then instinctively turns.\",Someone\nanetv_MYzG-TsW8w8,2849,Four men are outside in a field throwing a baseball to each other. A ball then rolls into a pond and a little boy,grabs it and throws it.,grabs the unmasked boy in her side.,rushes onto an arm.,runs out into the opposite side.,,gold0-orig,pos,unl,unl,pos,n/a,Four men are outside in a field throwing a baseball to each other.,A ball then rolls into a pond and a little boy\nanetv_MYzG-TsW8w8,2851,The scene moves to a playground and the boys begin going down the slide. More kids are shown and they,\"are doing various activities as they play such as the see saw, monkey bars and swings.\",begin to bump into each other.,end up doing flips and tricks.,fall off their socks.,\"continue playing with one another, as they go around jumping back and forth.\",gold0-orig,pos,unl,unl,unl,pos,The scene moves to a playground and the boys begin going down the slide.,More kids are shown and they\nanetv_MYzG-TsW8w8,2850,A ball then rolls into a pond and a little boy grabs it and throws it. The scene moves to a playground and the boys,begin going down the slide.,mill around the yard several times.,are playing a game with one another using as pretend boys how to score.,are both walking on.,,gold0-reannot,pos,unl,unl,pos,n/a,A ball then rolls into a pond and a little boy grabs it and throws it.,The scene moves to a playground and the boys\nanetv_ZsqjU0X3mxY,5546,The lady washes her hairs and begins cutting it with a pair of shears to a very short length. The girl,sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands.,\"places a blade in the sand, then her gratitude, then twists off the side to the floor and reads the trainer.\",does a few splits and shows on her upper lip and bends down.,turns with the walked springboard and does two more quick flips before her opens it the splits again.,,gold0-orig,pos,unl,unl,unl,n/a,The lady washes her hairs and begins cutting it with a pair of shears to a very short length.,The girl\nanetv_ZsqjU0X3mxY,5543,\"She stands up, flips her pony tail and the camera pans her outfit and she has on a black shirt and blue shorts and begins walking up the stairs. Next, she\",goes into a room and begins talking to a woman with a black shirt and blonde hair.,\"hangs off down the floor, holding a stick and playing the violin while a little girl in a yellow bikini watches.\",hops down the bar while dancing pose at the end holding the pose.,stops at the fish off the screen.,adds the mops to her hair as she cuts up the pattern where the haircut was on her private body.,gold0-orig,pos,unl,unl,unl,unl,\"She stands up, flips her pony tail and the camera pans her outfit and she has on a black shirt and blue shorts and begins walking up the stairs.\",\"Next, she\"\nanetv_ZsqjU0X3mxY,5545,The lady holds up a white index card with sketches of two heads. The lady,washes her hairs and begins cutting it with a pair of shears to a very short length.,puts the menu in a pen and discusses it.,adds graffiti to a hair brush.,peels cleaner out the front of the wrapping paper.,stops the weld and tastes it from it.,gold0-orig,pos,unl,unl,unl,unl,The lady holds up a white index card with sketches of two heads.,The lady\nanetv_ZsqjU0X3mxY,5541,A pale young woman in a white dress is standing in the forest with long curly brownish - reddish hair and begins skipping. Then she,is shown with a black shirt and long hair and begins talking in a dark staircase.,\"leaves the mans playing, approaches the same door, continues to about the braid is petite.\",does at the whole front such along with her skirt and darts and fun.,smiles a little harder at it and then gets it off and places it down.,turns around and the girl and the black horse begin making moves while hugging the other.,gold1-reannot,pos,unl,unl,unl,unl,A pale young woman in a white dress is standing in the forest with long curly brownish - reddish hair and begins skipping.,Then she\nanetv_ZsqjU0X3mxY,5547,The girl sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands. The hairdresser,\"begins blow drying her hair, cutting it and styling it.\",speaks as the stylist continuously braids and lays there the ribbon on her hands as she applies her makeup.,leans forward and pauses to show the hairstyle and begins.,stops and wipes her face with yellow cloth.,,gold0-reannot,pos,unl,unl,pos,n/a,The girl sits in the chair and begins shaking her ear length hair and holding up the cut off hair in her hands.,The hairdresser\nanetv_ZsqjU0X3mxY,5544,\"Next, she goes into a room and begins talking to a woman with a black shirt and blonde hair. The lady\",holds up a white index card with sketches of two heads.,\"irons her iron faster, then trouble brushing her teeth.\",is sitting down while flipping and drying her hair out of the white space.,\"begins with a dance routine with her dad, on upper hand.\",,gold1-reannot,pos,unl,unl,pos,n/a,\"Next, she goes into a room and begins talking to a woman with a black shirt and blonde hair.\",The lady\nanetv_ZsqjU0X3mxY,5542,\"Then she is shown with a black shirt and long hair and begins talking in a dark staircase. She stands up, flips her pony tail and the camera pans her outfit and she\",has on a black shirt and blue shorts and begins walking up the stairs.,is walking toward on the step and still holding it for her.,resumes ironing the final skirts.,shows to do the hair tricks then numerous times.,,gold1-reannot,pos,unl,pos,pos,n/a,Then she is shown with a black shirt and long hair and begins talking in a dark staircase.,\"She stands up, flips her pony tail and the camera pans her outfit and she\"\nanetv_ZsqjU0X3mxY,5549,She continues to get her hair down while her hair is panned over on the counter and the floor. Then she,sits on a bench and smiles at the thought of her short hair cut.,clips the hair and trims her hair.,shows some of her very hairy work.,grabs the bar and shoulders her up and explaining as she is speaking.,picks the hair up with a brush and then applies some for her.,gold1-reannot,pos,unl,unl,unl,unl,She continues to get her hair down while her hair is panned over on the counter and the floor.,Then she\nlsmdc1048_Gran_Torino-92416,1741,Someone stubs a cigarette out on someone's cheek. Someone,meets someone near the house.,folds her paws next to the tree.,crumples the paper and holds it against someone's face.,\"stares off, shyly, then walks off.\",,gold1-orig,unl,unl,unl,unl,n/a,Someone stubs a cigarette out on someone's cheek.,Someone\nanetv_NfTfLk1D-tI,15171,The person sits down in front of the drums and begins playing them continuously. The man,continues playing the drums faster and faster while the camera captures his movements.,continues rubbing down the drums while speaking to the camera.,continues playing and ends with the man standing down with the ends at his back.,playing the guitar and then plays several shots while pausing to speak to the camera.,continues to play and waves to the camera.,gold0-orig,pos,unl,unl,unl,pos,The person sits down in front of the drums and begins playing them continuously.,The man\nanetv_NfTfLk1D-tI,15170,A close up of drums are seen followed by a person walking into frame. The person,sits down in front of the drums and begins playing them continuously.,plays sticks with a drum and leads into more clips.,flips over and over speaking and looking away from a camera.,continues walking around while the camera captures their movements.,continues to play the drums while others watch on the side and stop to watch.,gold0-orig,pos,unl,unl,unl,pos,A close up of drums are seen followed by a person walking into frame.,The person\nanetv_xDD9rWISPpk,14538,He turns around and runs the other direction. He,runs down the street.,holds tightly in his hands as he carries the box.,hears a noise and hears the bedroom door closing.,knock a note to the ground before driving through.,\"stands aside, a determined look on his face.\",gold0-orig,pos,unl,unl,unl,unl,He turns around and runs the other direction.,He\nanetv_xDD9rWISPpk,14537,A man is running down the street wearing stilts. He,turns around and runs the other direction.,lays on the ground trying to build the fire.,class from the start of parallel park.,runs down the women pavement on ramps with her.,thinks continue to climb up to go on a ramp blind to start whether or attempt to take a break.,gold0-orig,pos,unl,unl,unl,unl,A man is running down the street wearing stilts.,He\nanetv_xDD9rWISPpk,5273,A man is running in pogo stilts. He,turns around and then walks back.,stops and jumps off the board.,\"dismounts, running fast and circles in the air.\",has put his foot high on a hilly street.,pays to walk the stilts.,gold0-orig,pos,unl,unl,unl,pos,A man is running in pogo stilts.,He\nanetv_lvAXZEUE0m8,18644,He jumps off the bridge and bungee jumps over a body of water. A boat,drives up and puts him in the boat.,stands in the background where there's a man behind a square.,skiing in the water skiing appears.,passes along the trail.,rides toward the boat.,gold0-orig,pos,unl,unl,unl,unl,He jumps off the bridge and bungee jumps over a body of water.,A boat\nanetv_lvAXZEUE0m8,18643,A man puts a harness on and steps on a bridge. He,jumps off the bridge and bungee jumps over a body of water.,is holding a darkened pole and raiser him to the wire.,resets the boat with a rope.,removes his mask and smiles into the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A man puts a harness on and steps on a bridge.,He\nanetv_Gkv5ibx0tYw,4587,She holds up a hair curler and puts it in her hair. She,takes it out and continues talking.,shakes her head and sets it in front of screen.,stands and talks while holding the camera.,begins leaving the camera behind her.,is also preparing to braids and styling her hair.,gold1-orig,pos,unl,unl,unl,pos,She holds up a hair curler and puts it in her hair.,She\nanetv_Gkv5ibx0tYw,4586,A woman with short blonde hair is sitting in a chair talking. She,holds up a hair curler and puts it in her hair.,\"is at the floor of the building, and she has a ball of lotion in her hands.\",holds up a pair of clippers to apply tattoos on her legs.,is with her actor and swimsuit sophisticated hairstyle.,,gold0-orig,pos,unl,unl,pos,n/a,A woman with short blonde hair is sitting in a chair talking.,She\nanetv_Jxhz1ln7UXk,5764,A person is seen walking around a yard as well as many people standing. The people then,beginning playing a game with one another and running around the yard.,ride around a wooden bridge while people watch on the sides.,begin climbing on a sofa and moving up around the water.,play around surfing as well as surfing along the water and riding side to side and speaking to the camera.,throw an object in front to a camera making off into the distance.,gold0-reannot,pos,unl,unl,unl,pos,A person is seen walking around a yard as well as many people standing.,The people then\nlsmdc1040_The_Ugly_Truth-8536,8865,\"Names appear beside the white silhouetted symbols for a woman, then a man. The symbols\",have red hearts on them.,stares at his depiction of keys.,is applying skulls and symbols.,\"flip open, revealing someone lying on the ground nearby.\",are floating on the walls of the netted stone building.,gold0-reannot,pos,unl,unl,unl,unl,\"Names appear beside the white silhouetted symbols for a woman, then a man.\",The symbols\nlsmdc1040_The_Ugly_Truth-8536,8866,The symbols have red hearts on them. A young woman,\"comes out of her house, talking on her phone.\",holds a large cake into a bowl with a woman in it.,sits on the arm of a bed.,arrives to a lawn plot.,,gold0-reannot,pos,unl,unl,pos,n/a,The symbols have red hearts on them.,A young woman\nlsmdc0011_Gandhi-52846,9459,\"People's secretary, someone, waving goodbye from the boat deck of their ship as it sails - - someone is holding the tether of a goat - - all of them smiling at the camera like voyagers everywhere. Someone on the steps of someone in the East End of London\",being greeted by a cheering crowd.,\", holding the letter long out to the between.\",\", the still view of their village that is tweed.\",deck and gasp some discussion with the slyly.,,gold0-orig,pos,unl,unl,unl,n/a,\"People's secretary, someone, waving goodbye from the boat deck of their ship as it sails - - someone is holding the tether of a goat - - all of them smiling at the camera like voyagers everywhere.\",Someone on the steps of someone in the East End of London\nanetv_ux4iT6vQQb0,6340,People run motocross on a bumpy road in the wood. A person,climbs a bump with a motorcycle.,cuts the legs of the boat around the mountain and track it on the ground.,lifts up a large ax tire and passes it to each other.,is twisting the rope high and forward.,pass some snow in the dirt.,gold1-orig,pos,unl,unl,pos,pos,People run motocross on a bumpy road in the wood.,A person\nanetv_ux4iT6vQQb0,6341,A person climbs a bump with a motorcycle. Also people,rides motorcycles on an unpaved flat surface.,catch the horses elliptical on a dirt arena.,get in curlers and stumbles back.,push their raft over the river and fall.,skate in a room and a dog jumps on the other skateboard.,gold0-orig,pos,unl,unl,pos,pos,A person climbs a bump with a motorcycle.,Also people\nlsmdc1010_TITANIC-77579,3289,He hands the message to dark - haired someone. Someone,takes off his hat and glances at the door.,takes off someone's violin and sets it horizontally in the middle of the dance floor.,\"switches warily to the man, wearing red gloves and a black sweeping shirt.\",sits in front of the photos of the flowers on each easel.,,gold0-orig,pos,unl,unl,pos,n/a,He hands the message to dark - haired someone.,Someone\nlsmdc1010_TITANIC-77579,3292,\"Someone puts on a headset and sends a telegraph. On the boat deck, officers\",supervise and swing them out over the water.,appear at the immaculately overlooking neighboring structures.,\"depart in the undulating morgul, spain on the sob.\",peer faintly from the inflated deck as someone rushes out to steadily double over.,rush around shuttle reception.,gold1-orig,pos,unl,unl,unl,unl,Someone puts on a headset and sends a telegraph.,\"On the boat deck, officers\"\nlsmdc1010_TITANIC-77579,3293,\"On the boat deck, officers supervise and swing them out over the water. Someone\",stands at lifeboat four.,\"retreats to the entrance of the ship, aiming underwater.\",\"checks the new - view panel, then finds a sailor plowing with the passages.\",\"walks in the aisle, watching closely.\",,gold0-orig,pos,unl,unl,pos,n/a,\"On the boat deck, officers supervise and swing them out over the water.\",Someone\nlsmdc1010_TITANIC-77579,3294,Someone stands at lifeboat four. Someone,yells to a man on an upper deck.,lowers the bottle and moves the board towards captain someone.,return the mustached passengers onto the bus's wheel frame.,shoots as someone spots someone slain on the surface.,gazes solemnly at the woman.,gold1-orig,pos,unl,unl,pos,pos,Someone stands at lifeboat four.,Someone\nlsmdc1010_TITANIC-77579,3290,\"Slack - jawed, someone stares at someone. Someone\",puts his hat back on and walks out.,lifts his gaze to the cafe owner.,laughs and shakes his head.,moves to a table in an office.,drops his head and nods angrily.,gold0-reannot,pos,pos,pos,pos,pos,\"Slack - jawed, someone stares at someone.\",Someone\nlsmdc1010_TITANIC-77579,3291,Someone puts his hat back on and walks out. Someone,puts on a headset and sends a telegraph.,is something in her tv.,looks up and smiles down at him.,faces in his folded newspaper.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone puts his hat back on and walks out.,Someone\nanetv_qVHazdU4_vY,15076,A woman is sitting cross legged on the floor. She,talks as she stretches her legs.,continues rotating her legs rapidly.,begins to spin as they start a dance.,works a cardio machine machine and checks a flashlight beam.,walks into the pile and puts the pedals on.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting cross legged on the floor.,She\nanetv_qVHazdU4_vY,14552,She lays down and demonstrates how to perform a break dancing move. She,spins around continuously while still speaking to the camera.,guides the instrument to a split screen.,\"twists in turns and grapes left, with a cashier behind her talking while talking and looking about.\",continue to talk and finish by jumping off and talking on the stage for a while.,walks forward and steps forward and pushes her hips backwards.,gold0-orig,pos,unl,unl,unl,unl,She lays down and demonstrates how to perform a break dancing move.,She\nanetv_qVHazdU4_vY,14551,A woman is sitting on the floor and speaking to the camera while moving her legs around. She,lays down and demonstrates how to perform a break dancing move.,put her right leg up and the woman continues to do several lay ups.,continues swinging the machine across the room in the same direction.,continues the exercise and jumps off the mat and ends by pointing behind the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is sitting on the floor and speaking to the camera while moving her legs around.,She\nanetv_qVHazdU4_vY,15077,She talks as she stretches her legs. She,\"reaches her legs around in a circle, stretching her calves.\",\"watches, cleaning her legs as they approach.\",recovers a smile and shaves her neck.,wets the area over and over again and uses the bristle brush to remove the hooves in the sidewalk.,moves on the balance beam and lands on the beam.,gold0-orig,pos,unl,unl,unl,pos,She talks as she stretches her legs.,She\nlsmdc3036_IN_TIME-16029,12055,\"Inside, he finds a lone time capsule on a pedestal. Its time balance\",reads one million years.,passes all the stories above his head.,begins to form lifts with several forces within.,\", lingers under the chair.\",turns up as someone steps over the footpath.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, he finds a lone time capsule on a pedestal.\",Its time balance\nlsmdc3036_IN_TIME-16029,12027,Someone eyes someone's clock. Someone,\"lifts his chin, smirking triumphantly as he maintains eye contact with his rival.\",begins to get her hair back.,frowns tight and grips his cell.,goes to the window.,,gold0-orig,pos,unl,pos,pos,n/a,Someone eyes someone's clock.,Someone\nlsmdc3036_IN_TIME-16029,12039,He stands with his back to someone. She,gives him an exasperated look.,shakes her head and withdraws her hands.,\"sidesteps for her dressing room, where an attractive lotus cat lies between it.\",touches her face and leaves.,,gold0-orig,pos,unl,unl,unl,n/a,He stands with his back to someone.,She\nlsmdc3036_IN_TIME-16029,12022,He rolls up his sleeve. As he,reaches his other hand out.,sets down his shawl.,\"approaches, someone reluctantly stretches his forehead to the floor.\",\"starts absently, someone's mother looks imploringly at him.\",,gold0-orig,pos,unl,pos,pos,n/a,He rolls up his sleeve.,As he\nlsmdc3036_IN_TIME-16029,12048,\"Among them, someone aims a gun at someone's head. Someone\",gives a shocked look.,\"turns, ready to sweep.\",smiles at someone as he looks down at someone black and red arms.,\"faces the boy, who lies still on her back.\",\"sits in the chamber, wrapped in a sling.\",gold0-orig,pos,unl,unl,unl,unl,\"Among them, someone aims a gun at someone's head.\",Someone\nlsmdc3036_IN_TIME-16029,12049,\"As the guards set their weapons on the floor, someone removes his sunglasses. Someone\",picks up her gun and strides up to her father.,raises the flame to.,clamps her arm gently on his forehead.,\"points it at someone, who stands beside him.\",gives the address girls a rack.,gold0-orig,pos,unl,unl,unl,unl,\"As the guards set their weapons on the floor, someone removes his sunglasses.\",Someone\nlsmdc3036_IN_TIME-16029,12046,\"Pushing aside two guards, someone emerges from behind their protective wall. She\",sets her gun on the floor.,knocks after a dusk which illuminates the room.,\"walks in, then close to someone.\",takes out the glock holding one of the rifles.,casts a look of horror at his dusty 'green space suit.,gold0-orig,pos,unl,unl,unl,pos,\"Pushing aside two guards, someone emerges from behind their protective wall.\",She\nlsmdc3036_IN_TIME-16029,12028,Someone struggles futilely to free himself. Someone and the thugs,\"lean forward, watching intently.\",begin with the lantern.,run toward a large crowd of uniformed ladies.,\"hurry up, firing someone's gun.\",drag him off someone.,gold0-orig,pos,unl,pos,pos,pos,Someone struggles futilely to free himself.,Someone and the thugs\nlsmdc3036_IN_TIME-16029,12051,Someone guides the businessman inside. He,glances at the digital map and data tables as someone leads them past.,strides briskly down the street after her husband.,crosses stairs with one flashlight.,\"peeks into her apartment, then wraps her jacket around her shoulders and ties her laces together.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone guides the businessman inside.,He\nlsmdc3036_IN_TIME-16029,12053,Someone trains her gun on her father. Someone,turns the vault's dial.,leans on one of his cohorts.,faces with the guards.,dismounts expertly brushing his curved legs.,,gold1-orig,pos,unl,unl,unl,n/a,Someone trains her gun on her father.,Someone\nlsmdc3036_IN_TIME-16029,12054,\"He turns the vault's wheel and heaves the door open. Inside, he\",finds a lone time capsule on a pedestal.,puts down an electronic music type.,carries his news tray.,arrives at a gallery where another brother rushes through.,opens a large window to revealing of drawers first.,gold0-orig,pos,unl,unl,unl,pos,He turns the vault's wheel and heaves the door open.,\"Inside, he\"\nlsmdc3036_IN_TIME-16029,12043,Three limos pulled into the semi - circular driveway in front of a towering skyscraper. The suited men surround their charge and the group,heads up a broad flight of stairs in the building's lobby.,carries weapons around the other sides of the roof and under their door.,flips them backwards then towers over them.,jogs toward the building.,,gold0-orig,pos,unl,unl,pos,n/a,Three limos pulled into the semi - circular driveway in front of a towering skyscraper.,The suited men surround their charge and the group\nlsmdc3036_IN_TIME-16029,12033,\"Now, someone gazes at the four dead minutemen who lie face down on a sidewalk. Someone\",\"blinks, his back to someone.\",drives a car over the welcome birthday trees.,takes a bus away as someone drives off into the opposite van.,whips from someone's g - automatic and hesitates.,,gold1-orig,pos,unl,pos,pos,n/a,\"Now, someone gazes at the four dead minutemen who lie face down on a sidewalk.\",Someone\nlsmdc3036_IN_TIME-16029,12041,\"She stares off thoughtfully, then shifts her eyes back to him. Someone\",shoots her a questioning glance.,walks over with the captain.,watches them with wide eyes.,\"sighs, deep in thought.\",\"swallows, then turns away awkwardly.\",gold1-orig,pos,pos,pos,pos,pos,\"She stares off thoughtfully, then shifts her eyes back to him.\",Someone\nlsmdc3036_IN_TIME-16029,12047,She sets her gun on the floor. He,stares with wide eyes.,sweeps his rich hair off of her face.,lays his head on someone's shoulder.,\"steps tensely, rubbing his neck.\",,gold0-orig,pos,unl,unl,unl,n/a,She sets her gun on the floor.,He\nlsmdc3036_IN_TIME-16029,12030,The gangster flies back in his chair. Someone and someone,join hands and escape to a dimly lit hallway.,watch the screen disappear.,run out into their room.,\"sit in the dimly lit train, as if in a trance.\",,gold1-orig,pos,unl,unl,unl,n/a,The gangster flies back in his chair.,Someone and someone\nlsmdc3036_IN_TIME-16029,12044,\"The suited men surround their charge and the group heads up a broad flight of stairs in the building's lobby. Toting a gun in one hand, someone\",strides in after them.,takes a gun stroll across a large street and stops by the window.,carries up the ladder and exits.,\"lifts his hand, his arms protruding from the small hulk.\",hurries down another corridor.,gold0-orig,pos,unl,unl,unl,pos,The suited men surround their charge and the group heads up a broad flight of stairs in the building's lobby.,\"Toting a gun in one hand, someone\"\nlsmdc3036_IN_TIME-16029,12045,\"The other guards aim at her as well. Pushing aside two guards, someone\",emerges from behind their protective wall.,shoots his pistol into the chamber of retrieved burning fires.,pins the bag aside.,leads the blond to her.,,gold1-orig,pos,unl,unl,unl,n/a,The other guards aim at her as well.,\"Pushing aside two guards, someone\"\nlsmdc3036_IN_TIME-16029,12038,\"Someone leads someone by the hand across a roof. Reaching a chest - high wall at its edge, they\",peer down at the street.,bump a protective shield stacked to the sides of a city street.,stop at a closed - topped menu.,pose at the dining table.,watch the van lamp.,gold0-orig,pos,unl,unl,unl,unl,Someone leads someone by the hand across a roof.,\"Reaching a chest - high wall at its edge, they\"\nlsmdc3036_IN_TIME-16029,12023,As he reaches his other hand out. Someone,takes a deep breath.,leads someone to the bench.,walks up to someone.,opens the door to someone.,,gold0-orig,pos,unl,unl,unl,n/a,As he reaches his other hand out.,Someone\nlsmdc3036_IN_TIME-16029,12034,\"Someone blinks, his back to someone. With his hands\",clasped calmly behind his back.,\"apart, someone shakes his head and returns.\",\"gripping her shoulders, someone raises his hands and gently interlaces his forehead.\",\"drawn on someone's face, he cringes tearfully.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone blinks, his back to someone.\",With his hands\nlsmdc3036_IN_TIME-16029,12052,\"Reaching a vault in an adjacent room, he releases someone. Someone\",trains her gun on her father.,whips away fans then pulls him on himself by the elbow.,drops her pistol between her boot.,reverses the new deck.,steels himself and knocks her down.,gold1-orig,pos,unl,unl,unl,unl,\"Reaching a vault in an adjacent room, he releases someone.\",Someone\nlsmdc3036_IN_TIME-16029,12042,Someone shoots her a questioning glance. Three limos,pulled into the semi - circular driveway in front of a towering skyscraper.,hop from the platform inside.,arrive at their home in plain smoking search.,gaze her from the bed strewn about.,walk up a set of stairs.,gold0-orig,pos,unl,unl,unl,unl,Someone shoots her a questioning glance.,Three limos\nlsmdc3036_IN_TIME-16029,12050,\"At her father's office, she enters a pass code. Someone\",guides the businessman inside.,'s mother enters his office.,picks up his phone and crosses toward some cards and taking a bite from the table.,'s computer chip in his mirror's head.,shakes a sponge before him.,gold1-orig,pos,unl,unl,unl,pos,\"At her father's office, she enters a pass code.\",Someone\nlsmdc3036_IN_TIME-16029,12036,Someone shifts his attention to the bystanders gathered in a wide circle around him. He,strolls up to a group of them.,\"watches the horse swagger off, knocking advances to reveal someone again.\",presses his lips together as if to speak.,\"looks up to the woman, then lowers the mic.\",\"stands surrounded by someone, who grins at her as she passes.\",gold0-orig,pos,unl,unl,unl,unl,Someone shifts his attention to the bystanders gathered in a wide circle around him.,He\nlsmdc3036_IN_TIME-16029,12025,Someone stares at the men's clocks. Someone,gazes steadily at his foe and breathes deeply through flared nostrils.,eventually spots a car wedged on his wall.,picks up a frost report on a table.,pushes him down.,\"walks beside him, cupping a hand in his.\",gold1-reannot,pos,unl,unl,unl,unl,Someone stares at the men's clocks.,Someone\nlsmdc3036_IN_TIME-16029,12040,She gives him an exasperated look. She,\"stares off thoughtfully, then shifts her eyes back to him.\",\"nods, rocking her hips, sexily counts our number.\",grabs someone from his lip and pushes a line of paperwork down the lane.,\"stands beside him, shuts her eyes and waves.\",stares longingly after him.,gold1-reannot,pos,unl,unl,pos,pos,She gives him an exasperated look.,She\nlsmdc3036_IN_TIME-16029,12037,He strolls up to a group of them. Someone,leads someone by the hand across a roof.,smiles wistfully at her reflection and someone takes to the settee.,steps back to look at the finished characters.,strides down on a stage with other women.,meet his father's gaze.,gold1-reannot,pos,unl,unl,unl,pos,He strolls up to a group of them.,Someone\nlsmdc3036_IN_TIME-16029,12031,Someone and someone join hands and escape to a dimly lit hallway. They,hurry up a stairwell.,watch a bird decorating a tree covered with green grass.,wander through the village as they find house sound.,buy a set of keys then exit the room.,shows more sinister guards at one finger of the wife's head.,gold1-reannot,pos,unl,unl,unl,unl,Someone and someone join hands and escape to a dimly lit hallway.,They\nlsmdc3036_IN_TIME-16029,12032,\"They hurry up a stairwell. Now, someone\",gazes at the four dead minutemen who lie face down on a sidewalk.,wears his protective helmet.,joyfully leads the fellowship onto someone's shoulder.,arrives at a dignified house with her shopping bag slung over her shoulder.,dances a slow - motion hotel to a patient stained with a dark white ahead with his exact build.,gold1-reannot,pos,unl,unl,unl,unl,They hurry up a stairwell.,\"Now, someone\"\nlsmdc3036_IN_TIME-16029,12026,Someone gazes steadily at his foe and breathes deeply through flared nostrils. He,starts to rotate his arm over the gangster's.,draws a strand of thin metal flies across his chest and draws a wavy stone upward back a few inches.,\"grapples with a broken tower, unable to keep up any longer.\",closes his eyes.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone gazes steadily at his foe and breathes deeply through flared nostrils.,He\nanetv_OYPyiUC4h68,9755,\"The man, now wearing life jacket, with his wife float down a river in the middle of a large group. A group from behind floats next to the man and woman as they\",slow down near the side of the river.,swing at the wooden eye on the water board and watch a man lake and.,get in the raft and ride down a slide together.,\"float in the grass, including people, cooking in and out to sea.\",\"jumps back and forth, while the words glide down on them.\",gold1-orig,pos,unl,unl,unl,unl,\"The man, now wearing life jacket, with his wife float down a river in the middle of a large group.\",A group from behind floats next to the man and woman as they\nanetv_OYPyiUC4h68,9753,A man in bathing suit and his wife float down a river on intertubes. The man,falls from his intertube and walks over to the waters edge.,carries a long motor raft along the trail as the ark leaves the cliff.,lets line other people swims through a small river that smooth perfectly made ice and water on the skis.,is water skiing and talking to the camera.,gets the wet hole in the window and paddles the ball towards the breaking fish.,gold0-orig,pos,unl,unl,unl,unl,A man in bathing suit and his wife float down a river on intertubes.,The man\nanetv_OYPyiUC4h68,9754,\"The man falls from his intertube and walks over to the waters edge. The man, now wearing life jacket, with his wife\",float down a river in the middle of a large group.,stand in the sailors behind him and seizing him to turn on landing with both arms to the man in knee.,stained with a thinning green light.,dressed in green intermittently standing with the little white dog lost his costume.,\"standing by an vision of the four traders, has his hands on his shoulders up the slope slack.\",gold0-orig,pos,unl,unl,unl,unl,The man falls from his intertube and walks over to the waters edge.,\"The man, now wearing life jacket, with his wife\"\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60305,10541,Someone rushes to someone's side as he slumps to the floor. someone appears to be dead. Suddenly someone,coughs.,starts a gasp and sits down locket by the outskirts of a table.,\"providing grooves to someone, extended someone raised leg.\",passes the end of the bikes and follows her out with her friends behind.,is crouching out.,gold0-reannot,pos,unl,unl,unl,unl,Someone rushes to someone's side as he slumps to the floor. someone appears to be dead.,Suddenly someone\nanetv_WmOTDAim7XM,6387,A man is holding a chain saw over his head. He,starts clipping the top of the hedge.,is holding onto popsicles with parts.,catches the ball and throws it to the ground.,uses sticks to cut someone's nails.,,gold0-orig,pos,unl,unl,unl,n/a,A man is holding a chain saw over his head.,He\nanetv_WmOTDAim7XM,6388,He starts clipping the top of the hedge. People,are walking on the sidewalk behind him.,leaves frame shoulder first.,draw along the left.,lifts it up to the roof of the house as he touches it.,\"guy jumps to the bottom, puts them back to the ironing frame.\",gold0-orig,pos,unl,unl,unl,unl,He starts clipping the top of the hedge.,People\nanetv_gYBIX_tGaXo,19239,Betty Haidler seems really focused and determined to go home with a prize. Betty Heidler starts spinning and then with all the momentum,tossed the hammer really far away.,throwing some music into the room.,rules of the game going throughout.,throwing them down and talking to the camera holding the camera.,,gold0-orig,pos,unl,unl,pos,n/a,Betty Haidler seems really focused and determined to go home with a prize.,Betty Heidler starts spinning and then with all the momentum\nlsmdc0041_The_Sixth_Sense-67684,2333,\"All we see is the top of his head. Every now and then we get glimpses of things someone is playing with peeking over the back of the couch, but we\",can't quite make out what he is doing.,can not really appear in the eye.,can see someone's leg moves in of the way.,can see the spheres fall from the shelf behind him.,,gold0-orig,pos,unl,unl,unl,n/a,All we see is the top of his head.,\"Every now and then we get glimpses of things someone is playing with peeking over the back of the couch, but we\"\nlsmdc0041_The_Sixth_Sense-67684,2332,Someone is playing behind the couch. All we see,is the top of his head.,is his money raised.,\"see from the corner as the crowd reaches the room, where inside come play - break dancing, watched by three group, subdued\",\"someone opening his eyes, bracing blasting in the cement.\",are someone frowning.,gold0-orig,pos,unl,unl,unl,unl,Someone is playing behind the couch.,All we see\nlsmdc1057_Seven_pounds-97688,2340,The file appears to be full of newspaper cuttings. Someone,opens it and studies the first cutting intently.,\"turns to someone, who is sitting with a basket on it.\",grows concerned from his position in his chair to gag someone's four fist area.,remembers the arguing 500 someone.,\"throws down the newspaper, her eyes widening.\",gold0-orig,pos,unl,unl,unl,pos,The file appears to be full of newspaper cuttings.,Someone\nlsmdc1057_Seven_pounds-97688,2338,He puts his keys on a table and shuts the door. Someone,sits on his bed in dim lamp light and takes a book and a file out of his bag.,comes to the bathroom.,\"undoes the lights on his cuffs, storms out, and switches off the plane light.\",\"follows with someone, who stands in the doorway, observing him.\",\"stares at him reassuringly, then sits back down on a used couch.\",gold0-orig,pos,unl,unl,unl,pos,He puts his keys on a table and shuts the door.,Someone\nlsmdc1057_Seven_pounds-97688,2332,Someone pulls up in his saloon outside the slightly seedy - looking motel. He,gets out of the car and goes to the reception window.,enters the classroom finishing his meal.,chats in the thick dark room.,poses before he lowers the glass.,towers to his wolf.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls up in his saloon outside the slightly seedy - looking motel.,He\nlsmdc1057_Seven_pounds-97688,2337,Someone lets himself into a dark room and carries in his cases. He,puts his keys on a table and shuts the door.,unlocks the door and onto the corridor to a lab level.,sits as someone stares at someone with a knitted brow.,\"halts, who enters a video and practices the game.\",follows her out the door.,gold0-orig,pos,unl,unl,unl,unl,Someone lets himself into a dark room and carries in his cases.,He\nlsmdc1057_Seven_pounds-97688,2330,Someone puts her files back in his briefcase and leaves with a polite smile. Someone,remains sitting at the table.,grins and shrugs her head.,talks into a cell phone.,lifts her brow sadly.,leans forward in his seat.,gold0-orig,pos,unl,unl,unl,pos,Someone puts her files back in his briefcase and leaves with a polite smile.,Someone\nlsmdc1057_Seven_pounds-97688,2335,A pudgy bearded guy spots him and comes out from behind a lacy curtain. Someone,returns to the reception window where the guy now greets him.,\"throws the pig's tail outside, watches a briefly white male trot up, and glances over to the humanoid giant.\",heads across the city ways through the rear door of the art class.,watches over his peer.,helps the girl head off.,gold1-orig,pos,unl,unl,pos,pos,A pudgy bearded guy spots him and comes out from behind a lacy curtain.,Someone\nlsmdc1057_Seven_pounds-97688,2339,Someone sits on his bed in dim lamp light and takes a book and a file out of his bag. The file,appears to be full of newspaper cuttings.,can be strangers outside.,lowers four rows of folders and sharp gold shades of silver hand - carved metal.,\"reads, reading, do - - half - inch the sack with a indian hand and heavy paper.\",rolls away revealing someone asleep with someone on the bed.,gold0-orig,pos,unl,unl,unl,pos,Someone sits on his bed in dim lamp light and takes a book and a file out of his bag.,The file\nlsmdc1057_Seven_pounds-97688,2334,Someone goes to look through an open door. A pudgy bearded guy,spots him and comes out from behind a lacy curtain.,spots something on the stereo stair.,answers an explosion nestor.,knocks down a piece of mortar.,walks past two women on a red felt table in a kitchen.,gold1-reannot,pos,unl,unl,unl,pos,Someone goes to look through an open door.,A pudgy bearded guy\nlsmdc1057_Seven_pounds-97688,2336,Someone returns to the reception window where the guy now greets him. Someone,lets himself into a dark room and carries in his cases.,helps another technician guys out onto the boat.,'s nose rests on strands of chinese plumes.,remains on the back of the room.,smiles and he realizes that it's beautiful.,gold1-reannot,pos,unl,unl,unl,unl,Someone returns to the reception window where the guy now greets him.,Someone\nanetv_r1mrueEHDDE,199,\"She is holding a flute, which she then begins to play. When she is done, she\",lowers the flute away from her mouth and walks over to the camera.,reaches out and catches the ball.,\"puts her hands down, continues about the song, and then enjoys the song.\",turns and begins playing a set of violin.,\"presses a drum and then begins talking and parade by, that say has already hurt you to you.\",gold0-orig,pos,unl,unl,unl,unl,\"She is holding a flute, which she then begins to play.\",\"When she is done, she\"\nanetv_r1mrueEHDDE,198,A girl walks over in front of a stand with music. She,\"is holding a flute, which she then begins to play.\",then starts talking on the phone while others watch.,play beach volleyball with some female opponents.,starts demonstrating how to do hand exercises.,demonstrates how to do a routine.,gold0-orig,pos,unl,unl,unl,unl,A girl walks over in front of a stand with music.,She\nlsmdc3061_SNOW_FLOWER-30408,13276,\"We see someone sitting in a red tinted bathtub. Back at the desk, Shutting the notebook, she\",notices a photograph tucked beneath the scattered pages of a manuscript draft.,leans back in her chair and leans her head a moment.,enters her book.,\"wanders over a keypad and a button with its closed disheveled panel, then looks back and forth between his scanner.\",,gold0-orig,pos,unl,unl,unl,n/a,We see someone sitting in a red tinted bathtub.,\"Back at the desk, Shutting the notebook, she\"\nlsmdc1024_Identity_Thief-82335,2739,\"They toast and down their shots. Now, they\",sit at a table with several empty shot glasses.,get out of the car and exit the tunnel and make their way down the stairwell.,\"arrive at home, eating their dinner together in the sunshine.\",get into a car.,play a game of tug of war with each other.,gold0-orig,pos,unl,unl,unl,unl,They toast and down their shots.,\"Now, they\"\nlsmdc1024_Identity_Thief-82335,2738,He wears a turquoise bolo. They,toast and down their shots.,complies.,\"hold the milkman's down, someone walks down to the deck.\",\"row the tall boats into the rough waters, followed by images of furniture and bushes.\",climb along the lines around the top.,gold0-orig,pos,unl,unl,unl,pos,He wears a turquoise bolo.,They\nlsmdc1024_Identity_Thief-82335,2737,A husky bearded man in a cowboy hat notices her. He,nods to himself as someone sips her green beverage.,leads him to a corridor leading to a suite.,is playing her and one of them likes her is braided to one side.,carries a meeting of blue to the slender gray section of the building.,ignores the onscreen man.,gold0-reannot,pos,unl,unl,unl,unl,A husky bearded man in a cowboy hat notices her.,He\nlsmdc1024_Identity_Thief-82335,2740,\"As they drink another shot, someone slaps the table. Someone\",enters and scans the room.,knocks over his face.,spots a metal cruiser in the loft's dusty room.,loads a cup of coffee and sets it on the table.,hands someone the matches.,gold0-reannot,pos,unl,unl,pos,pos,\"As they drink another shot, someone slaps the table.\",Someone\nlsmdc1046_Australia-90830,7861,Birds take flight over a land which has turned green. The dusty plains,\"have been replaced by rivers, lakes and islands.\",is balmoral with california and formal banners one carrying someone.,appears in the shape behind a brick motorcycle.,flow through the country followed by the dawn sunlight.,\"soars across the beach, propels a wooden train.\",gold1-orig,pos,unl,unl,unl,unl,Birds take flight over a land which has turned green.,The dusty plains\nlsmdc1046_Australia-90830,7846,Someone holds her hands joyfully in the air. Someone,remains in his seat at the theater smiling happily at the down pour.,snickers as he averts his gaze.,bursts in through the budweiser stand.,rise from the boat's deck.,,gold1-orig,pos,unl,unl,unl,n/a,Someone holds her hands joyfully in the air.,Someone\nlsmdc1046_Australia-90830,7858,\"She pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed. They\",\"lie in each other's arms, naked, covered by just a sheet.\",\"suit pulls onto a freeway racked by a strong current of military broomsticks, then heads down the streets, heading straight toward an widening\",hurry up a staircase.,\"enter the darkened house, with the club.\",lie climbing over the scratch - o - matic.,gold0-orig,pos,unl,unl,unl,unl,\"She pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed.\",They\nlsmdc1046_Australia-90830,7862,\"The dusty plains have been replaced by rivers, lakes and islands. Waterfalls\",tumble down the rocks of the previously dry canyon.,are bundled unto a lawns and low on top.,\", people walk along a cliff toward horizontal tracks.\",is using hand utensil while is being walking by the camera.,appear among the duplex packed kids.,gold0-orig,pos,unl,unl,unl,unl,\"The dusty plains have been replaced by rivers, lakes and islands.\",Waterfalls\nlsmdc1046_Australia-90830,7845,People dance around people in the rain - soaked street. Someone,holds her hands joyfully in the air.,holsters a pistol at him.,\"looks toward someone, pulls herself away from the mountainside, and carries two other bags.\",trudges wearily to the basement.,helps someone up further.,gold0-orig,pos,unl,unl,unl,unl,People dance around people in the rain - soaked street.,Someone\nlsmdc1046_Australia-90830,7854,\"On the screen, someone clicks her emerald heels together. People\",run up the stairs to someone's room with the balcony.,is steeping feet by inch square.,watch mama's princess castle.,moves the room behind her.,are wearing swim outfits.,gold1-orig,unl,unl,unl,unl,unl,\"On the screen, someone clicks her emerald heels together.\",People\nlsmdc1046_Australia-90830,7863,Waterfalls tumble down the rocks of the previously dry canyon. People,are bathing in a pool in each other's arms.,float along the river along a street.,are pulled carrying flags on canoes.,walk down the path in nice wooden hills.,,gold1-orig,pos,unl,unl,pos,n/a,Waterfalls tumble down the rocks of the previously dry canyon.,People\nlsmdc1046_Australia-90830,7842,\"She turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain. They\",kiss as it starts to pour down.,have now drawn the driveway to cut out the door.,\"land on her bed in the rain, and take a behavior from on the hallway.\",\"smiles away, nods her head towards her tablet.\",kisses his forehead earnestly and a long sigh.,gold0-orig,pos,unl,unl,pos,pos,\"She turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain.\",They\nlsmdc1046_Australia-90830,7856,They break apart and stare at one another. They,look longingly at each other.,look for longer bats.,pause for a moment.,turn back; someone lowers his head and nods.,,gold0-orig,pos,unl,unl,unl,n/a,They break apart and stare at one another.,They\nlsmdc1046_Australia-90830,7855,\"Indoors, they kiss passionately. They\",break apart and stare at one another.,dance passionately.,face their natural form.,juggle a warm structure.,,gold0-orig,pos,unl,unl,unl,n/a,\"Indoors, they kiss passionately.\",They\nlsmdc1046_Australia-90830,7852,He scowls at his drunken son - in - law and walks off. Someone,\"nods slowly, watching him go.\",helps someone strip down its surfboard.,halts reluctantly and heads back to the bench.,glances at a bearded visitor.,sits at the dining table.,gold0-orig,pos,unl,pos,pos,pos,He scowls at his drunken son - in - law and walks off.,Someone\nlsmdc1046_Australia-90830,7860,\"The door to the room swings closed, as lightning flashes and the rain pours down on nighttime someone. Birds\",take flight over a land which has turned green.,sit on the couch.,someone stands in the passenger seat of a bus.,are shown in the back seat as someone knocks on the door.,,gold0-orig,pos,unl,unl,unl,n/a,\"The door to the room swings closed, as lightning flashes and the rain pours down on nighttime someone.\",Birds\nlsmdc1046_Australia-90830,7857,He slides the dress off her shoulders and she opens the front of his shirt. She,\"pulls the shirt off his muscled torso and, in just her petticoat, pulls him down onto the bed.\",gives a relieved wave.,enters a large crowd of protesters.,\"stops staring at another single moment, then shuts it.\",tosses the skirt onto the grass and kneads it around himself.,gold0-orig,pos,unl,unl,unl,unl,He slides the dress off her shoulders and she opens the front of his shirt.,She\nlsmdc1046_Australia-90830,7853,\"Someone nods slowly, watching him go. On the screen, someone\",clicks her emerald heels together.,leans against a wall and gazes thoughtfully at her reflection's reflection on leaves.,is in the reading room.,turns to show a pause.,looks relieved and directly ducks.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone nods slowly, watching him go.\",\"On the screen, someone\"\nlsmdc1046_Australia-90830,7843,They kiss as it starts to pour down. The crowds at the pub,cheer the rain's arrival and dance in the street.,go for a brief moment and wait.,grab their own feet.,starts to cheer as someone makes to cry slightly.,,gold0-reannot,pos,unl,unl,pos,n/a,They kiss as it starts to pour down.,The crowds at the pub\nlsmdc1046_Australia-90830,7841,He looks at her seriously. She,\"turns and looks up at the storm clouds then closes her eyes, tilting her face up to catch the rain.\",spreads her arms and wraps the litter around someone's waist.,\"releases her lcd - scan gaze, smoothes her hat and moves another picture to her friend.\",gives her a look.,moves her hand to her forehead.,gold0-reannot,pos,unl,unl,pos,pos,He looks at her seriously.,She\nanetv_ycBFz2RdgoY,495,A park sign that reads Welcome to Kanaha Beach Park is shown. More windsurfers,are shown racing across the water.,float on the beach.,are shown swimming around the fountain.,are shown on the black screen.,fly through the sky.,gold0-orig,pos,unl,unl,pos,pos,A park sign that reads Welcome to Kanaha Beach Park is shown.,More windsurfers\nanetv_IwViXKNNBEU,13192,A man prepares himself to throw a discus. Multiple people,walk around and talk in the background.,are shown shooting arrows for the target.,stand on a street and watch them upside a skateboard.,are rollerblading on a large slack - pole track.,begin working out with them like a movie.,gold0-orig,pos,unl,unl,unl,unl,A man prepares himself to throw a discus.,Multiple people\nanetv_IwViXKNNBEU,13193,Multiple people walk around and talk in the background. The man,spins and throws the discus.,sliding quickly addresses the people.,waves to the music.,stops and lifts the handles readying his feet.,,gold0-orig,pos,unl,unl,pos,n/a,Multiple people walk around and talk in the background.,The man\nanetv_kQoGS3YjBXk,15418,He points to the frame while speaking to the camera and leads into him screwing objects into place. The person,continues to screw the frame as well as the chain while turning and speaking to the camera.,continues dancing around the side of the tire as well as showing more ornaments on the object.,\"continues wrapping the object, pushing logs onto the paper and ends with the camera panning on the wall.\",shows furniture on the roof and properly pull up.,presents camera handlebars to the machine and shows stuck to the window frame.,gold0-orig,pos,unl,unl,unl,unl,He points to the frame while speaking to the camera and leads into him screwing objects into place.,The person\nanetv_kQoGS3YjBXk,15417,A man is shown speaking to the camera and leads into him standing in front of a bike frame. He,points to the frame while speaking to the camera and leads into him screwing objects into place.,has a busy bike on its left.,uses the blue bicycle to mark the corner of the bike with the pedals and paper biking.,shows off the tire and speaking to the camera.,holds the bike and then goes on to a bike.,gold1-orig,pos,unl,pos,pos,pos,A man is shown speaking to the camera and leads into him standing in front of a bike frame.,He\nanetv_QV4E2B0AdGw,506,A man receives a tattoo in a tattoo parlor from a male tattoo artist interspersed with video of a waiting woman showing her neck tattoo. A man,lays on a tattoo table and receives a color tattoo from a tattoo artist.,and a woman are on a stage and playing a violin for a few seconds.,in a white coat on congas watch a signs.,in a red shirt is walking and is talking to a man standing up to her.,,gold0-orig,pos,unl,unl,pos,n/a,A man receives a tattoo in a tattoo parlor from a male tattoo artist interspersed with video of a waiting woman showing her neck tattoo.,A man\nanetv_QV4E2B0AdGw,7110,She shows off her tattoos and the artist continues working. The in the end he,shows off his new tattoo.,picks up an iron and shows how to unhook the chair in the shirt.,puts the ring on her finger and sprays it on the tip of her wand.,wakes for her upper response.,is drying her hair back.,gold0-orig,pos,unl,unl,unl,unl,She shows off her tattoos and the artist continues working.,The in the end he\nanetv_QV4E2B0AdGw,508,The two men talk and laugh as the tattoo is issued and the camera cuts to a woman who talks and shows her neck tattoo to the camera. The man who received the tattoo stands and,shows the fish tattoo he just received before the camera cuts to a marketing graphic.,removes the tattoo on the man's effectively to remove his leg and put it on the end board.,pierces the man's ear.,stands on the hill looking at the camera.,puts the cream in her eye the woman zooms in as it cuts and the girl continues explaining to the camera.,gold0-orig,pos,unl,unl,unl,unl,The two men talk and laugh as the tattoo is issued and the camera cuts to a woman who talks and shows her neck tattoo to the camera.,The man who received the tattoo stands and\nanetv_QV4E2B0AdGw,507,A man lays on a tattoo table and receives a color tattoo from a tattoo artist. The two men talk and laugh as the tattoo is issued and the camera,cuts to a woman who talks and shows her neck tattoo to the camera.,demonstrates on the drink of the man.,is over to the head.,continues to talk about it.,put the tattoo on his right arm.,gold0-reannot,pos,unl,unl,unl,unl,A man lays on a tattoo table and receives a color tattoo from a tattoo artist.,The two men talk and laugh as the tattoo is issued and the camera\nanetv_I1P5GuVHFQA,1599,\"The man then puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object. He\",pauses to speak more to the camera and looking down at the object to see how it turned out.,continues to take puffs out of the pipe and blows out smoke pieces of the hookah.,woman irons the back and continues ironing to find the place dazzling.,leaves the man hanging out of the frame to demonstrate how to properly do various moves.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man then puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object.\",He\nanetv_I1P5GuVHFQA,1598,A man is seen speaking to the camera while holding up various objects and sharpening a stick. The man then,\"puts a helmet on and attached the stick to a holder, leading into the man creating a spark and cutting an object.\",mixes up the ingredients and continues to play the game while the camera pans around him.,begins cutting up the ribbon using a box.,begins moving it around and leads into the man speaking to the camera.,,gold1-reannot,pos,unl,unl,pos,n/a,A man is seen speaking to the camera while holding up various objects and sharpening a stick.,The man then\nlsmdc3015_CHARLIE_ST_CLOUD-1181,7424,He pours some water from a pitcher and hands it over. Someone,nods and offers his friend a smile.,grabs the cake and puts it in a strainer.,returns to his bedroom and looks at the hole.,looks into someone's building and gives a cocky grin.,jumps out of the water making a small splash.,gold0-orig,pos,unl,unl,unl,pos,He pours some water from a pitcher and hands it over.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1181,7422,\"He blinks, then gives a faint wince and furrows his brow. He\",\"swallows repeatedly, grabs a cup from a nearby table and downs its contents.\",shifts his haunted gaze.,\"briefly averts his gaze, he reaches up and slaps a paper down the charts.\",sit on kitchen talking to a slumbering man.,turns towards the door.,gold0-orig,pos,unl,unl,unl,pos,\"He blinks, then gives a faint wince and furrows his brow.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1181,7423,\"He swallows repeatedly, grabs a cup from a nearby table and downs its contents. He\",pours some water from a pitcher and hands it over.,\"drinks the beer as he chugs off a spoon, then deposits the drink to a showroom.\",\"shows his plate for someone, who catches it by the pixie - faced man.\",\"faces someone, and suddenly yellow misty leaves swirl about him.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"He swallows repeatedly, grabs a cup from a nearby table and downs its contents.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1181,7421,Three butterflies cover a laceration on his temple. He,\"blinks, then gives a faint wince and furrows his brow.\",raises his neck as we soar through an arched window in a dark overgrown beach.,watches several paces carefully out on the board.,\"is shot ahead, his eyes wide with horror.\",\"stares at the grass, then answers.\",gold1-reannot,pos,unl,unl,unl,pos,Three butterflies cover a laceration on his temple.,He\nlsmdc3015_CHARLIE_ST_CLOUD-1181,7425,\"Someone nods and offers his friend a smile. Grinning to himself, Charlie\",settles back on his pillows.,\"rushes across the room to someone, who sniffs from his mug.\",leaves the door and jogs right after her.,squeezes a silky chunk from a sack.,watches as someone strokes her son's hair.,gold0-reannot,pos,unl,unl,unl,unl,Someone nods and offers his friend a smile.,\"Grinning to himself, Charlie\"\nanetv_3jZq0UaDIks,864,\"Suddenly, two men appears sailing in inflatable boats while the woman takes pictures. Other people\",sail on individual boats in the choppy waters in the river.,are cheered in te boats and a dog walks below them while the children continue doing the leaning current and sailing to the water.,\"pull the kayaks under the water, driving the boats and travel to the water.\",sail on the beach.,,gold0-orig,pos,unl,unl,pos,n/a,\"Suddenly, two men appears sailing in inflatable boats while the woman takes pictures.\",Other people\nanetv_3jZq0UaDIks,863,\"A woman walks to the bank of a river holding a camera. Suddenly, two men\",appears sailing in inflatable boats while the woman takes pictures.,unload a dolly from a clipboard.,hug the men next to the podium.,are kayaking outside and get out of a lift.,are seen walking by diving two and standing in a raft.,gold0-orig,pos,unl,unl,unl,unl,A woman walks to the bank of a river holding a camera.,\"Suddenly, two men\"\nanetv_3jZq0UaDIks,11961,We film as people come over a small waterfall in black rafts. The cameraman,turns and walks away from the shore as another man walks past.,skis the platform with their raft.,stops a line gliding down the river.,turns the water with water and pauses to look around.,\"takes the fall, and then goes for his image.\",gold1-orig,pos,unl,unl,unl,unl,We film as people come over a small waterfall in black rafts.,The cameraman\nanetv_3jZq0UaDIks,11959,A person holds their phone as they walk in a field near a river bank and films the river as it runs. We,see a ladies head.,\"the people begin rowing and driving, while a text intro shows la being shown.\",the various are in shining and sirens that are being free.,\"pick up every flowing sand dunes, wands, and singers kayaks on the rapids.\",self on the kayakers and a sea person floating boards on the water and swim in a big wave.,gold1-orig,pos,unl,unl,unl,unl,A person holds their phone as they walk in a field near a river bank and films the river as it runs.,We\nanetv_3jZq0UaDIks,865,Other people sail on individual boats in the choppy waters in the river. Two people,stand on the bank of the river.,are riding down a boat with fun and boats while driving.,waves in front of the boat and bow.,\"are gathered, preparing, rafting or sailing with their school clothes.\",go through the first water 'boats to the water fall.,gold0-orig,pos,unl,unl,unl,pos,Other people sail on individual boats in the choppy waters in the river.,Two people\nanetv_8rimo9x4qqw,9058,A snowboarder gives a tutorial for how to hit a jump. A few techniques,are shown in four parts.,are shown working under the water.,are interviewed near a dirt field.,are shown by different skills.,,gold1-orig,pos,unl,unl,unl,n/a,A snowboarder gives a tutorial for how to hit a jump.,A few techniques\nanetv_6qynXM937V0,18024,\"He continues playing his harmonica to a soothing tune. After he stops playing, he\",puts his hands down.,slows a bit and turns off.,comes back playing the drums.,starts left the drums.,takes notes while playing them.,gold0-orig,pos,unl,unl,unl,unl,He continues playing his harmonica to a soothing tune.,\"After he stops playing, he\"\nanetv_6qynXM937V0,18023,There's a man wearing a hat and a beige colored shirt standing on the banks of a river playing his harmonica. There,is a still river behind him.,large gray man is rappelling down the road from the point as two people are skateboarding in front of gear.,are all on video of the children and the men who are walking.,is recording the video news and name subtitles one guy has n't navigates the line down his entire shoulder.,is wearing sunglasses and a cigarette.,gold0-orig,pos,unl,unl,unl,pos,There's a man wearing a hat and a beige colored shirt standing on the banks of a river playing his harmonica.,There\nlsmdc0002_As_Good_As_It_Gets-46632,3722,Someone still walking with his usual attention to where he steps. Someone walking and though we can see an improvement it,is still decidedly strange as he conspicuously avoids stepping on the lines.,is about to be much home.,is an impressive part of someone house.,has much smaller clothing.,is as a small bunk room.,gold0-orig,pos,unl,pos,pos,pos,Someone still walking with his usual attention to where he steps.,Someone walking and though we can see an improvement it\nlsmdc0002_As_Good_As_It_Gets-46632,3723,\"Someone looks at her, Embarrassed, self - conscious, His habits making him appear unworthy. It\",forces him to half - whisper something he has n't at all said to himself.,swims across the desk.,stabs weakly over the wreckage of a circular uniform.,walks through the door and tries to pull on the female ambulances.,\"goes to catch a support pole before swinging it open again, with someone pinned up.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone looks at her, Embarrassed, self - conscious, His habits making him appear unworthy.\",It\nanetv_M6xFXdXOzzc,2265,There are 4 people who are all playing badminton and the boy in the white shirt is the first one to serve to the man in the black shirt. Then the man wearing the black shirt,serves to the boy whose wearing the gold shirt.,retrieves the ball in middle of him and begins the ball down the beers.,catches the ball and throws a frisbee at the paper to start a fiery game cordoned off.,is throwing the ball at a different ball while hitting it.,shows once he's done and cuts the woman's ball.,gold0-orig,pos,unl,unl,pos,pos,There are 4 people who are all playing badminton and the boy in the white shirt is the first one to serve to the man in the black shirt.,Then the man wearing the black shirt\nlsmdc1012_Unbreakable-6884,17222,A cape hooded figure stands motionless in an archway silhouetted black against the teeming rain. He,is watching an american football training session.,leans over on the horn office.,leans to the nearby stereo and leans underwater.,retrieves his bag from his shoulder and leaves.,opens the wooden door and peers into the house.,gold0-orig,pos,unl,unl,unl,unl,A cape hooded figure stands motionless in an archway silhouetted black against the teeming rain.,He\nlsmdc1012_Unbreakable-6884,17229,\"Someone stares at the locker door, and then glances at someone. In a darkened room, a hand\",reaches out and switches on a bedside lamp.,\"on the dresser, someone frowns as it covers her leans back.\",\"reaches over and raises a bottle of champagne, then grins to himself.\",pulls out a green toilet from a boot and wipes down with a towel and a handful.,appears on the nightstand.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stares at the locker door, and then glances at someone.\",\"In a darkened room, a hand\"\nlsmdc1012_Unbreakable-6884,17228,An older man is in the doorway. Someone,\"stares at the locker door, and then glances at someone.\",goes through the misty knot.,is standing at the front of the building and dives onto a board.,is in the kitchen following him.,,gold1-orig,pos,unl,unl,pos,n/a,An older man is in the doorway.,Someone\nlsmdc1012_Unbreakable-6884,17220,\"She returns to her work, still ignoring him. He\",pulls on his baseball cap and goes.,goes forward with his utility knife.,rips the tiny piece out in front of someone's hands.,rushes over to leave someone who sits looking after her.,goes to the window by the front and the crosswalk sign.,gold0-orig,pos,unl,unl,unl,unl,\"She returns to her work, still ignoring him.\",He\nlsmdc1012_Unbreakable-6884,17227,He puts his towel away and glances to his right. An older man,is in the doorway.,applies bubbles from his nose.,knocks on a window.,knocks the step forward.,stand and faces his guest.,gold0-orig,pos,unl,unl,unl,unl,He puts his towel away and glances to his right.,An older man\nlsmdc1012_Unbreakable-6884,17219,\"She makes a note and puts down the pen, still without looking at him. She\",\"returns to her work, still ignoring him.\",\"moves around and sits down, pretending to read as he goes.\",\"sits on his back, turns the pages on.\",opens her book and someone reaches for his phone.,closes the door with a worried look.,gold0-orig,pos,unl,unl,pos,pos,\"She makes a note and puts down the pen, still without looking at him.\",She\nlsmdc1012_Unbreakable-6884,17224,He captures the ball thrown from behind and dives over the line. He,tosses the ball to another player and trots back again.,fails and walks onto the diving board.,goes to the far end and cuts an object off into the distance.,goes into the fight as the goalie by the red hits and gallops fast.,continues to fly alone on the ice through a volt of water.,gold0-orig,pos,unl,unl,unl,unl,He captures the ball thrown from behind and dives over the line.,He\nlsmdc1012_Unbreakable-6884,17232,A clock on the other side of the bed says a quarter to one. Someone,stands at his wife's closed door.,\"clicks their fingers, while a murmur of concentration plays.\",\"the edge of the stairs, someone stomps in front of a mirror, lined up for his work besides the seating.\",presses the phone to his ear.,\"closes in on her, without knowing what she is saying.\",gold1-orig,pos,unl,unl,unl,unl,A clock on the other side of the bed says a quarter to one.,Someone\nlsmdc1012_Unbreakable-6884,17218,She picks up a pen. She,\"makes a note and puts down the pen, still without looking at him.\",labels an address on the kitchen floor.,dives for a line beneath the dark bunk.,puts the bag down.,,gold0-orig,pos,unl,unl,pos,n/a,She picks up a pen.,She\nlsmdc1012_Unbreakable-6884,17231,\"Someone, head on a pillow, looks sideways at his son who's sleeping peacefully. A clock on the other side of the bed\",says a quarter to one.,pulls to his right.,bounces up in the air.,\"shows someone, now fully clothed.\",\"reads reader, buzzer five days.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, head on a pillow, looks sideways at his son who's sleeping peacefully.\",A clock on the other side of the bed\nlsmdc1012_Unbreakable-6884,17225,\"Protected from the rain by the hood of his cape, someone sighs deeply. In the locker room, someone\",towels his head and face.,works to assorted purchases.,talks to someone's house.,passes home window with a radio.,loads spare tire bags.,gold0-orig,pos,unl,unl,unl,unl,\"Protected from the rain by the hood of his cape, someone sighs deeply.\",\"In the locker room, someone\"\nlsmdc1012_Unbreakable-6884,17230,\"In a darkened room, a hand reaches out and switches on a bedside lamp. Someone, head on a pillow,\",looks sideways at his son who's sleeping peacefully.,\"leans through the curtains, coming up the stairs holding the second, and then we hear someone whispering.\",begins reading over dramatically.,picks up a clear bottle and then run on a bedside table.,stands up or listens to music.,gold1-orig,pos,unl,unl,unl,unl,\"In a darkened room, a hand reaches out and switches on a bedside lamp.\",\"Someone, head on a pillow,\"\nlsmdc1012_Unbreakable-6884,17223,\"One player suddenly erupts into a sprint, sidestepping opponents without losing speed. He\",captures the ball thrown from behind and dives over the line.,is dragged by the base of the contestant.,pauses as someone tries to cheer again as he hugs a young man by the head with it.,\"tries on the pole mnu motion rebels, though a refuge in the pursuit.\",loops the ball around.,gold0-orig,pos,unl,unl,unl,pos,\"One player suddenly erupts into a sprint, sidestepping opponents without losing speed.\",He\nlsmdc1012_Unbreakable-6884,17226,\"In the locker room, someone towels his head and face. He\",puts his towel away and glances to his right.,moves forward and someone listens.,kicks the fan from the spray bottle.,breaks into a grin.,sits back in his seat with someone and someone.,gold0-orig,pos,unl,unl,pos,pos,\"In the locker room, someone towels his head and face.\",He\nlsmdc1012_Unbreakable-6884,17221,He pulls on his baseball cap and goes. A cape hooded figure,stands motionless in an archway silhouetted black against the teeming rain.,with large features overlaid splayed over one railway.,hangs from a wire supporting an asian man.,\"watches, riding the long board across the water beside him.\",\"sits at a window, an angry expression, someone leaps open a rock and lands on the ground.\",gold0-reannot,pos,unl,unl,unl,unl,He pulls on his baseball cap and goes.,A cape hooded figure\nanetv_MC0L0ljTUiw,4120,\"She puts her arms out, shaking her hips to music. When she is done, she\",smiles and points toward the camera with both hands.,has her wand drawn off.,turns around and stands up shaking in his hands.,steps closer and kisses his temple.,offers the camera to someone.,gold0-orig,pos,unl,unl,unl,pos,\"She puts her arms out, shaking her hips to music.\",\"When she is done, she\"\nanetv_MC0L0ljTUiw,2820,A woman walks into a room as people watch. She,goes into a pose and begins dancing.,adjusts the settings on the couch.,is sitting down in a chair.,kicks the snow off of the women.,\"claps her hands as she looks across at idly, then working fu moves.\",gold0-orig,pos,unl,unl,unl,unl,A woman walks into a room as people watch.,She\nanetv_MC0L0ljTUiw,2821,She goes into a pose and begins dancing. She,performs several belly dancing moves as she dances.,stops dancing and starts belly dancing.,finishes the song by taking out her phone and stops playing.,kicks a ball up the wooden bars and is seen once again performing by dancing with a man that he has fun.,\"moves down the rest of the mat, moving her bodies and legs across the floor, steppers for the act.\",gold0-orig,pos,unl,unl,unl,unl,She goes into a pose and begins dancing.,She\nanetv_MC0L0ljTUiw,4119,A woman walks gracefully into a room wearing a belly dancer outfit. She,\"puts her arms out, shaking her hips to music.\",poses with the young ballerina baton and striking a pose.,walks in front of a host of dogs as she gets out of the studio.,starts hula hooping with her legs above the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A woman walks gracefully into a room wearing a belly dancer outfit.,She\nanetv_CsvEXvHlO3M,18057,A man is seen smiling to the camera and leads into several clips of people walking with tubes. A person,rides down a snowy hill with a child on a tube.,pushes the pucks all along the water and continues to use while pushing themselves along the water.,\"holds their skateboard in their hands as they continue to ride around, as well as performing tricks.\",continues riding down a mountain while sitting in a kayak.,is still speaking and pans around having a glances in the boat entrance.,gold0-orig,pos,unl,unl,unl,pos,A man is seen smiling to the camera and leads into several clips of people walking with tubes.,A person\nanetv_CsvEXvHlO3M,16570,People are going down a hill in a tube. A baby,is sitting in a tube going down the hill.,jumps off of the diving board.,is starting to fall in sync.,in the river is interviewed.,is standing behind them.,gold1-orig,pos,unl,unl,unl,unl,People are going down a hill in a tube.,A baby\nanetv_CsvEXvHlO3M,16569,A man is standing in the snow. People,are going down a hill in a tube.,is brushing his hair.,land in the skies behind them.,sail on a boarding amidst a small crowd.,are talking about how to make lemonade in cups.,gold0-orig,pos,unl,unl,unl,unl,A man is standing in the snow.,People\nanetv_CsvEXvHlO3M,18058,A person rides down a snowy hill with a child on a tube. Several more shots,are shown of people riding down the mountain and smiling to one another.,are shown of him riding along the water as well as snowboarding down the hill.,are shown of the boys jumping down a hill in slow motion.,are shown of people riding on the trail as well as the water below.,are shown of people riding on down the mountain.,gold1-reannot,pos,unl,unl,unl,pos,A person rides down a snowy hill with a child on a tube.,Several more shots\nanetv__i6yjCO8nzQ,17532,A boy's gymnastics team lines up. They,take turns doing flips down a mat.,pick a line for kids and their boys.,are flying up in different momentum.,work a name on an ad for a picture.,stop playing the piano.,gold0-orig,pos,unl,unl,unl,unl,A boy's gymnastics team lines up.,They\nanetv__i6yjCO8nzQ,11209,The men begin performing gymnastic tricks one after the other down a mat. The men,continue flipping and a man helping them at the end.,perform several martial arts moves in a gymnastics competition.,continue to cheer to the instructor.,\"switch to the mixing routine, then up and down ladder.\",continue to demonstrate proper actions.,gold0-orig,pos,unl,unl,unl,pos,The men begin performing gymnastic tricks one after the other down a mat.,The men\nanetv__i6yjCO8nzQ,11208,A large group of people are seen standing around with the audience clapping. The men,begin performing gymnastic tricks one after the other down a mat.,continue dancing while the camera pans around the woman exercising on the stage.,move to flip off stage and begin dancing with one another.,applaud and lead into a group of men standing across the stage on edge.,,gold1-orig,pos,unl,pos,pos,n/a,A large group of people are seen standing around with the audience clapping.,The men\nanetv_sIYRsGZm2XY,6,A man is smoking a hookah in a booth. A man in a suit,is holding a bowl of food.,demonstrates how to put a face in the window.,is standing in front of a fire in front of him.,walks back behind him.,before a crowd is shown.,gold0-orig,pos,unl,unl,pos,pos,A man is smoking a hookah in a booth.,A man in a suit\nanetv_sIYRsGZm2XY,8,A doctor is talking to the camera. Two women,are sitting behind a desk.,are seen in a bar talking about the game.,are sitting on front a table throwing knives.,are talking inside a large room.,shake hands and turn around.,gold0-orig,pos,unl,unl,pos,pos,A doctor is talking to the camera.,Two women\nanetv_sIYRsGZm2XY,7,A man in a suit is holding a bowl of food. A doctor,is talking to the camera.,approaches with another man in his arms.,shakes a mans hand.,speaks in front of him.,is shown showing how to make a drink.,gold0-orig,pos,unl,pos,pos,pos,A man in a suit is holding a bowl of food.,A doctor\nanetv_sIYRsGZm2XY,11172,A man is seated inside a booth. He,is smoking from a hookah pipe.,is playing an acoustic saxophone.,begins dealing the cards around an outdoor table.,is playing the instrument on the sidewalk.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seated inside a booth.,He\nanetv_B3fiiuk0EqE,15340,A man shovels snow from a driveway. The camera pans,to show another man using an electric shoveling machine to clear show from his driveway.,\"direction and show the rhythm of the house nearby, and continues several times.\",to a massive circular pole spanning up hills.,to help him hedge.,to a place in the structure that leads to a person clearing.,gold0-orig,pos,unl,unl,unl,unl,A man shovels snow from a driveway.,The camera pans\nanetv_B3fiiuk0EqE,15341,The camera pans to show another man using an electric shoveling machine to clear show from his driveway. The man,finishes clearing snow and turns to the camera.,pauses inside his garage and puts his torn dress on.,wets the shovel again using the gearing trimmer.,continues shoveling the snow from the sidewalk and's continuing shoveling the sides while speaking to the camera until his head gets obscured.,,gold0-orig,pos,unl,unl,pos,n/a,The camera pans to show another man using an electric shoveling machine to clear show from his driveway.,The man\nanetv_Yh9eGll8fYQ,10392,Two people are seen speaking to one another and leads into a man standing on the edge and jumping. The man's jump,is shown several times from different camera as he jumps off the side and back up again.,is shown again in slow motion and the man falls up.,is shown again times in slow motion followed by several more clips of people spinning and jumping.,is shown as well as the man throwing flips and tricks while moving his hands very quickly and past the camera.,is shown again while more people watch on the sidelines and then the pommel horse backward is shown again and again again.,gold1-reannot,pos,unl,unl,unl,unl,Two people are seen speaking to one another and leads into a man standing on the edge and jumping.,The man's jump\nanetv_LTmYxVYBa90,11379,A group of people are sitting on camels in the sand beside a hill. A man,reaches for the chain on the camels mouth as the camel sits.,is standing in front of a large bulge and his hundreds of hands.,falls the slope with snow as he snowboards on the building.,stands kayaking in a river.,is standing in kayaks on the boat holding a paddle water.,gold0-orig,pos,unl,unl,unl,unl,A group of people are sitting on camels in the sand beside a hill.,A man\nanetv_LTmYxVYBa90,11380,A man reaches for the chain on the camels mouth as the camel sits. The man in light blue,assists the man in dark blue to untie.,feeds the man hand to eat something.,pulls on the bottom part of the upper platform.,is handed the cushion.,,gold0-orig,pos,unl,unl,pos,n/a,A man reaches for the chain on the camels mouth as the camel sits.,The man in light blue\nanetv_DmTI8y6Anvo,12854,A basketball player is seen jumping under a basketball ball net and shooting a ball continuously at the net. She continues shooting and the video,ends with various text across the screen.,ends with the closing medal being presented.,ends with the closing captions shown on the screen.,ends with the closing graphics shown on the screen.,,gold1-reannot,pos,unl,pos,pos,n/a,A basketball player is seen jumping under a basketball ball net and shooting a ball continuously at the net.,She continues shooting and the video\nanetv_4-BW75h1D1A,5581,The woman shakes her hips as she dances. Credits,appear on the screen.,lays on the floor as everyone looks up.,dance in an d'oeuvre with another woman behind her.,play similar to the sound test.,,gold0-orig,pos,unl,unl,pos,n/a,The woman shakes her hips as she dances.,Credits\nanetv_4-BW75h1D1A,5580,A woman in a white dress belly dances outside near columns and trees. The woman,shakes her hips as she dances.,stops singing and notices something in her hands.,watches the woman eavesdrops and dance on the ocean.,moves forward and presents the bride with flowers.,,gold0-orig,pos,unl,unl,pos,n/a,A woman in a white dress belly dances outside near columns and trees.,The woman\nlsmdc3064_SPARKLE_2012-4445,5045,As she plays on with her eyes closed someone steps out from the wings with a plate. It,\"bears a single serving cake with white frosting, lit with one candle.\",\"arrives with her, rooted to the spot and watches her as she and the wind pelt her hair.\",grabs his hat and ruffles his hair.,eats some of his cereal.,\", the agent runs through the chase.\",gold0-orig,pos,unl,unl,unl,unl,As she plays on with her eyes closed someone steps out from the wings with a plate.,It\nlsmdc3011_BLIND_DATING-1030,11160,A monitor shows a transmitter fitted in to someone's temple. Dr. Sato,removes a power pack wired with a pair of modified sunglasses.,sits on the stereo's top bunk and listens hard.,steers a boat into the light then over.,reaches for the back of someone's hand.,flanked by small fire torches.,gold0-orig,pos,unl,unl,unl,unl,A monitor shows a transmitter fitted in to someone's temple.,Dr. Sato\nlsmdc3011_BLIND_DATING-1030,11152,\"Now, in recovery, someone lies with his eyes closed. A bandage\",\"wraps his head, and a tube and wire trail from his hand.\",is draped over a sheet lying on his chest.,\"flies from his face, beside someone and his in the backseat.\",hangs over someone's head.,swims in his chin.,gold0-orig,pos,unl,unl,unl,unl,\"Now, in recovery, someone lies with his eyes closed.\",A bandage\nlsmdc3011_BLIND_DATING-1030,11154,His chest rises and falls steadily. Someone,arrives outside the glass pane door.,sinks to the tank.,\"gets out of his car and sits in his car with a satchel, string, and heavy handle wheel.\",lifts the bones hovering blind.,,gold0-orig,pos,unl,unl,unl,n/a,His chest rises and falls steadily.,Someone\nlsmdc3011_BLIND_DATING-1030,11161,Dr. Sato removes a power pack wired with a pair of modified sunglasses. The tiny camera,sits mounted on the right lens.,sinks down off someone.,catches light up the woman's cheek.,points cautiously up the window at the two - by - two's.,pans down to a stack of boxes from a searchlight nearby.,gold0-orig,pos,unl,unl,unl,pos,Dr. Sato removes a power pack wired with a pair of modified sunglasses.,The tiny camera\nlsmdc3011_BLIND_DATING-1030,11149,Someone folds his hands in the waiting room. Someone,fidgets in the waiting room.,raises hands and plugs him into an embrace.,watches him on the monitor.,gets up and leads her along the staircase.,looks at someone with tears in her eyes.,gold0-orig,pos,unl,unl,pos,pos,Someone folds his hands in the waiting room.,Someone\nlsmdc3011_BLIND_DATING-1030,11153,\"A bandage wraps his head, and a tube and wire trail from his hand. His chest\",rises and falls steadily.,bears a mallet stuck to his wand.,\"lies one foot on his bleeding knee, his back to follow outside.\",rises and falls as she screams on the water.,heaves as he locks his door in a hotel.,gold0-orig,pos,unl,unl,pos,pos,\"A bandage wraps his head, and a tube and wire trail from his hand.\",His chest\nlsmdc3011_BLIND_DATING-1030,11159,Someone crouches down beside a conscious someone as someone looks on. A monitor,shows a transmitter fitted in to someone's temple.,of steps spreads across horned dirt.,shows someone gazes off the lookout new position.,fires at a approaching soldier.,shows someone smiling to his home.,gold1-orig,pos,unl,unl,unl,unl,Someone crouches down beside a conscious someone as someone looks on.,A monitor\nlsmdc3011_BLIND_DATING-1030,11151,\"Inside, someone approaches the family. Now, in recovery, someone\",lies with his eyes closed.,approaches a diamond engagement.,watches someone with her arms folded.,holds his thumbnail to the strain of mature eggs.,brings up the flowers.,gold1-orig,pos,unl,unl,unl,unl,\"Inside, someone approaches the family.\",\"Now, in recovery, someone\"\nlsmdc3011_BLIND_DATING-1030,11150,\"A microscopic view shows blood flow along a Y - shaped pathway. In the waiting room, someone\",puts on her glasses and exhales.,lies beside a framed photo of himself.,taps the water under his glass.,peeks over the hole of the door and gawks.,,gold0-orig,pos,unl,pos,pos,n/a,A microscopic view shows blood flow along a Y - shaped pathway.,\"In the waiting room, someone\"\nlsmdc3011_BLIND_DATING-1030,11147,Someone puts his arm around her. Someone,uses his cell phone.,places her bent hand between her neck and legs.,holds him at gunpoint.,wags his finger toward someone.,holds a hand over his face.,gold1-reannot,pos,unl,pos,pos,pos,Someone puts his arm around her.,Someone\nlsmdc3011_BLIND_DATING-1030,11162,The doctors follow his gesture. It,'s a hazy window.,scratches the heads of his chin accidentally.,\"raise two couples at his fingers, and the man points at his foot and gasps.\",touches his temple as he turns to approach.,tears off his face.,gold0-reannot,pos,unl,unl,unl,unl,The doctors follow his gesture.,It\nlsmdc3011_BLIND_DATING-1030,11156,\"Wearing a peaceful gaze, she strides eagerly to his bedside. She\",\"lets her brow brush his in a brief nuzzle, then straightens.\",looks up at the noises hovering overhead.,covers the coffee mug full of coffee.,throws an arm around his son and breaks into a muted embrace.,takes out his phone and steps down.,gold0-reannot,pos,unl,unl,unl,unl,\"Wearing a peaceful gaze, she strides eagerly to his bedside.\",She\nanetv_tBGeBbO8gh0,17717,They have made holes through the ice. They,fish with long poles in the water.,are shown polo on the background.,are flaming cups out of a rock.,push their bodies in a large hole.,continue to hit betty wood back and forth with mud.,gold0-orig,pos,unl,unl,unl,unl,They have made holes through the ice.,They\nanetv_tBGeBbO8gh0,10014,Three men are standing are outdoors standing around two holes ice fishing. The men,catch a large fish and pull it out of the hole.,are then shown sitting down onto the ice fishing.,begin showing a cow throwing a flint outside the hole.,are demonstrating different moves to make a bow.,get ready to jump rope.,gold0-orig,pos,unl,unl,unl,unl,Three men are standing are outdoors standing around two holes ice fishing.,The men\nanetv_tBGeBbO8gh0,17716,A couple of men are standing on an iced over lake. They,have made holes through the ice.,are going through the river.,are rafting on the big tubes.,cut up a cake and put in the back of a fire.,are in a race among the beggars.,gold0-orig,pos,unl,unl,unl,unl,A couple of men are standing on an iced over lake.,They\nanetv_6EWzgWd72Cs,6966,There are two news reporters talking about dog grooming as part of their news segment. A lady dressed in a blue dress,is talking about the extreme dog grooming company that grooms dogs.,is practicing the exercise on a stationary bench.,is walking down the stairs.,is to wash a bucket to clean the ground.,,gold0-orig,pos,unl,unl,unl,n/a,There are two news reporters talking about dog grooming as part of their news segment.,A lady dressed in a blue dress\nanetv_6EWzgWd72Cs,880,People are Dying the dogs hair different colors by using some kind of liquid material. Then the dogs,are being entered into a contest for the best groomed looking dogs.,\"nails, also removed and are shown in by joking and oil nails, after the person is finished drying the women's hair.\",move the third adult to turn around and then show each other.,can be shown away in a wind towards the christmas little party.,are shown in different angles while their dogs are shown and starts riding out the dogs.,gold0-orig,pos,unl,unl,unl,unl,People are Dying the dogs hair different colors by using some kind of liquid material.,Then the dogs\nanetv_6EWzgWd72Cs,6970,Some other dog is shown painted to resemble a zebra. The woman in blue,comes back to talk more about the dog grooming salon.,turns the child on the back in the mirror.,applies as if to a client dragged along with the drying - screen.,turns and looks back at the people going down the tube.,braids is doing that leave by the camera.,gold0-orig,pos,unl,unl,unl,unl,Some other dog is shown painted to resemble a zebra.,The woman in blue\nanetv_6EWzgWd72Cs,879,\"New reports are giving news about extreme dog grooming, people are cutting dogs hair and trimming there nails. people\",are dying the dogs hair different colors by using some kind of liquid material.,\"are done in costco, applying dogs to a very annual training marathon at quick jump.\",\"are chasing a bowling ball in a big, indoor field.\",\"are shown trotting in intertubes, trying to not wake them on horses.\",,gold0-orig,pos,unl,unl,unl,n/a,\"New reports are giving news about extreme dog grooming, people are cutting dogs hair and trimming there nails.\",people\nanetv_6EWzgWd72Cs,6968,She shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers. One lady,grooms a poodle and then dyes its fur with different colors.,speaks and bows to the camera.,speaks to the camera.,comes to a garage and demonstrates how to do the dogs brush.,chases after the dog by continuing grooming.,gold0-orig,pos,unl,unl,unl,unl,She shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers.,One lady\nanetv_6EWzgWd72Cs,6967,A lady dressed in a blue dress is talking about the Extreme Dog Grooming company that grooms dogs. She,shows some women working in the dog grooming salon where couple of dogs are being groomed with shears by professional dog groomers.,is doing the exterior to make a home column.,cuts the salon version of the blow dryer while explaining.,dog sits on a table and talks to the camera.,walks through her neighbor's extremely bonnet.,gold0-orig,pos,unl,unl,unl,unl,A lady dressed in a blue dress is talking about the Extreme Dog Grooming company that grooms dogs.,She\nanetv_6EWzgWd72Cs,6969,Several kids sit with the dog and pet the dog as part of a behavioral therapy session. Some other dog,is shown painted to resemble a zebra.,flips together like a horse.,skirts around hers practicing the dog back.,is being led by the dog around the beach.,walk then stand and talk like video dogs.,gold0-reannot,pos,unl,unl,unl,unl,Several kids sit with the dog and pet the dog as part of a behavioral therapy session.,Some other dog\nanetv_aBmKEmXVCqM,257,A man is standing on a elliptical working out. He,moves his arms back and forth.,is playing a violin with an electric electric guitar.,begins sharpening the knives with a knife.,comes down a track and begins talking.,is doing a tutorial on how to lift weight.,gold0-orig,pos,unl,unl,pos,pos,A man is standing on a elliptical working out.,He\nanetv_aBmKEmXVCqM,258,He moves his arms back and forth. There,is a lake behind him.,he hurriedly lumbers down the stairs as the water rises as water spills toward them.,is a nervous smile and he walks to her and opens her eyes.,\", the man lowers his body and plays a beat.\",,gold0-orig,pos,unl,pos,pos,n/a,He moves his arms back and forth.,There\nlsmdc0017_Pianist-56178,14399,\"Again someone tries, but someone, her profile to him, does n't see. He\",goes back to work.,follows behind her as she walks past the campus.,appears on the television screen with his father's name on the screen.,shows his teeth together.,crosses to the door.,gold1-orig,pos,unl,unl,unl,pos,\"Again someone tries, but someone, her profile to him, does n't see.\",He\nlsmdc0017_Pianist-56178,14404,\"He jumps down, is about to dash towards someone, but stops dead. Someone\",is no longer there.,takes the sound beside it.,jams a barrel into the orb.,\"throws hands, a white table.\",stares through the windshield.,gold0-orig,pos,unl,unl,unl,unl,\"He jumps down, is about to dash towards someone, but stops dead.\",Someone\nlsmdc0017_Pianist-56178,14400,He goes back to work. The German policemen,wander over to one of the stalls to buy fruit.,are stepping on quiet piles of books.,have opened front of the spanish ruins.,sit at the train site.,fly out of control where people mill in the background.,gold1-orig,pos,unl,unl,unl,unl,He goes back to work.,The German policemen\nlsmdc0017_Pianist-56178,14403,He comes to a decision. He,\"jumps down, is about to dash towards someone, but stops dead.\",turns away and wanders out to the basin.,pushes himself up and doubles over.,pulls himself out of the darkness.,opens the door and immediately turned to an old man.,gold0-orig,pos,unl,unl,pos,pos,He comes to a decision.,He\nlsmdc0017_Pianist-56178,14401,The German policemen wander over to one of the stalls to buy fruit. Someone glances across the square: someone,is still at the stall.,sees nestor right through a barrier of tents.,hands the man photos to someone.,linger on the window opposite end of the observation porch.,stands stiffly at the table and checks his pulse.,gold0-reannot,pos,unl,unl,unl,pos,The German policemen wander over to one of the stalls to buy fruit.,Someone glances across the square: someone\nanetv_ZKtjyZhRB6E,3656,A group of older people are seen sitting on a bus speaking to one another. The camera,pans around the bus to show more people sitting and speaking.,is then seen in a container while the inflatable is shown in several clips people using snow to cut in.,pans to show several people riding horses in a gym.,pans around to show the kids walking away.,continues to walk up and down the game while the camera pans around.,gold0-orig,pos,unl,unl,unl,unl,A group of older people are seen sitting on a bus speaking to one another.,The camera\nanetv_ZKtjyZhRB6E,3657,The camera pans around the bus to show more people sitting and speaking. A woman,is seen speaking to a man next to her while he knits.,is seen speaking to the camera followed by a boy riding a rough wave with the help of a woman.,smokes and demonstrates how to properly hit the swing with the racket several times while taking a mat and laying in the field.,talks to the camera and leads into a camera that leads into people riding beach skiers.,is shown looking off into the distance when the woman in the car begins.,gold0-orig,pos,unl,unl,unl,pos,The camera pans around the bus to show more people sitting and speaking.,A woman\nanetv_xzmcOKHP-sM,7680,We see hospital scenes then a room of women knitting and a lady talking. We,see kids looking through and wearing the knitted hats.,speaks to a male man in a bar talking and demonstrating various dance moves.,see the screen for a video for a video about the performance.,see the ending screen title and accompanies.,see men fighting gear in a boat and looking on a turntable.,gold0-orig,pos,unl,unl,unl,unl,We see hospital scenes then a room of women knitting and a lady talking.,We\nanetv_xzmcOKHP-sM,7679,We see a hospital in an opening scene. We,see hospital scenes then a room of women knitting and a lady talking.,see a surfer with a string.,see a couple of men drinking a drink.,see the ladies moping a floor and part of the room.,,gold0-orig,pos,unl,pos,pos,n/a,We see a hospital in an opening scene.,We\nanetv_xzmcOKHP-sM,7346,A woman then talks to the camera. Several people,do arts and craft.,jump out of a locker.,are talking in the background.,are shown segment of water.,,gold1-orig,pos,unl,pos,pos,n/a,A woman then talks to the camera.,Several people\nanetv_xzmcOKHP-sM,7682,We see people looking through and wearing the hats. A lady,walks down a hallway with the hats in a wagon.,reaches down squares and starts eating a soda.,stands behind a desk demonstrating the proper way to approach the wheel while a girl dances with the people behind the more players.,pulls a black dress off a tower mirror.,talks to the camera while winning.,gold0-reannot,pos,unl,unl,unl,unl,We see people looking through and wearing the hats.,A lady\nanetv_xzmcOKHP-sM,7684,We see a boy in a mask wearing the hat. We,see the ending screen.,see something and being engulfed.,see arrows and arrow from various angles.,see a man ski off a ski.,see a man screaming.,gold1-reannot,pos,unl,unl,unl,pos,We see a boy in a mask wearing the hat.,We\nanetv_xzmcOKHP-sM,7681,\"We see a lady talking we see the hats, people knitting, and the lady talks again. We\",see people looking through and wearing the hats.,see a group of children filled large inflatable rings.,see a black title screen in pictures.,see a lady being interviewed and we see him briefly.,see the ladies standing next to the cake.,gold0-reannot,pos,unl,unl,unl,pos,\"We see a lady talking we see the hats, people knitting, and the lady talks again.\",We\nanetv_xzmcOKHP-sM,7345,People walk through a large lobby. A woman then,talks to the camera.,rides down a sidewalk.,works on top when coming down the ladder.,\"bends down and picks up the groceries, taking off their expensive clothes.\",,gold1-reannot,pos,unl,unl,unl,n/a,People walk through a large lobby.,A woman then\nlsmdc3067_THE_ART_OF_GETTING_BY-32129,16871,Someone touches someone's leg. He,jolts spilling his beer.,smears crumbs down on his cheek.,rests his cheek on his foot.,knocks the man off.,,gold0-orig,pos,unl,unl,pos,n/a,Someone touches someone's leg.,He\nlsmdc1039_The_Queen-88159,12171,\"Someone climbs into bed next to someone. Thursday, someone\",\"sits in bed, watching tv.\",sees a light hanging inside the door and holds the gun down.,begins to take two tickets from her pocket.,hurries past another woman.,stuffs her luggage into his clothing satchel and hands it to a co - worker.,gold0-orig,pos,unl,unl,unl,unl,Someone climbs into bed next to someone.,\"Thursday, someone\"\nlsmdc1039_The_Queen-88159,12172,\"Thursday, someone sits in bed, watching tv. Newspapers\",are strewn all over someone's bed.,- dimensional photos show in the tv zookeeper's office.,earrings he breaks up highlighting someone's credit.,photos show: naked.,sticks his head into a tree and blows apart.,gold0-reannot,pos,unl,unl,unl,unl,\"Thursday, someone sits in bed, watching tv.\",Newspapers\nanetv_hL11sP4Hlrg,182,A person is then seen wiping polish onto a pad and rubbing the object all over her nails. She then,puts a coating over the nail and shows it off again.,adds a paint brush along the wood and puts them on top end.,applies the polish along it and ends with polish and false nails.,lifts it back up down again while still speaking to the camera.,,gold1-orig,pos,unl,pos,pos,n/a,A person is then seen wiping polish onto a pad and rubbing the object all over her nails.,She then\nanetv_hL11sP4Hlrg,3314,Someone is adding nail polish to a sponge to create an ombree paint. then a thin layer of paint in the sponge,is put in the nails and two more layer.,hits the smaller object and turns it on top.,is shown to cut the top of the pumpkin.,is cleaned with dried metal.,\"play it again, and after getting a nail mask on.\",gold1-orig,pos,unl,unl,unl,unl,Someone is adding nail polish to a sponge to create an ombree paint.,then a thin layer of paint in the sponge\nanetv_hL11sP4Hlrg,181,A close up of nails are seen followed by a shot of brushes and nail polish. A person,is then seen wiping polish onto a pad and rubbing the object all over her nails.,is seen bending down and putting an face down using polish.,holds a pumpkin across the screen and begins cutting the nails.,is shown coming in a jump throw with cutting about her course followed by speaking to her and showing off several points.,brushes between cracks and other paint in.,gold0-orig,pos,unl,unl,unl,pos,A close up of nails are seen followed by a shot of brushes and nail polish.,A person\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5338,Someone sits on a swing lost in thought. He,sees his cousin someone with his gang.,runs to a charred door and shuts it.,looks out the window.,picks it up and dashes off his bag then answers it.,\"watches, his eyes wide and someone snaps one needle out of him, holding someone smile with someone's face.\",gold1-orig,pos,unl,unl,unl,unl,Someone sits on a swing lost in thought.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5336,\"Cars speed along a duel carriageway beside a field, where the grass is scorched and dry. A teenage boy, someone,\",walks across the field.,watches from the table.,sits on a bulldog in the corner of someone's whimpering.,walks down the aisle.,\"is staggering at the hundreds of spiders hovering on a spot in front of him, followed by someone.\",gold1-orig,pos,unl,unl,unl,unl,\"Cars speed along a duel carriageway beside a field, where the grass is scorched and dry.\",\"A teenage boy, someone,\"\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94601,5337,\"A teenage boy, someone, walks across the field. A boy\",gets off the roundabout.,pours something under his nose.,\"lies in his garage, between two beams.\",pauses on his way.,stands on an ornamental mat.,gold1-reannot,pos,unl,unl,unl,unl,\"A teenage boy, someone, walks across the field.\",A boy\nanetv_a0bj_vVpK9s,10648,A man pushes a tube down a hill. Another person,sleds down the hill on a tube.,turns off his skateboard.,is riding through the water on top of a hill.,walks on the snow.,takes a snow mobiles off of the vehicle.,gold1-orig,pos,pos,pos,pos,pos,A man pushes a tube down a hill.,Another person\nanetv_a0bj_vVpK9s,10649,Another person sleds down the hill on a tube. A person in a red jacket,is standing at the bottom.,leads the person down a hill.,is shown skiing down a hill.,is standing on a snow covered slope.,,gold0-orig,pos,unl,pos,pos,n/a,Another person sleds down the hill on a tube.,A person in a red jacket\nlsmdc0002_As_Good_As_It_Gets-46472,12412,He rises and makes an awkward exit. She,is trying to express her gratitude.,takes someone from a jacket.,holds up a knife.,shoots into a taxi.,shakes her head and looks down at her sitting up.,gold0-orig,pos,unl,unl,unl,pos,He rises and makes an awkward exit.,She\nlsmdc0002_As_Good_As_It_Gets-46472,12413,She is trying to express her gratitude. An enormous sheaf of completed pages,sit next to her.,grow homes in a single cardboard bucket in the next room.,fill the criss - cycle equipment.,is tossed into a dirt scraping debris and eventually stops on the tracks as a countdown appears.,and shiny words appear.,gold0-orig,pos,unl,unl,unl,unl,She is trying to express her gratitude.,An enormous sheaf of completed pages\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1589,3696,\"Inside, He throws the boot on the table. The Sheriff\",sits facing a few burly men.,chases the man through the collar.,knocks himself down on the floor.,looks down at the baby mouse.,blows his feet on the first floor.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, He throws the boot on the table.\",The Sheriff\nanetv__vUE7PhDBcA,6221,He sprays himself with water while continuing to run. He,continues speaking to the camera while running all over.,rides through a tall crop.,draws on the stone surface and continues.,continues making and losing the castle evenly.,\"continues to paint the fence, continues scraping.\",gold0-orig,pos,unl,unl,unl,unl,He sprays himself with water while continuing to run.,He\nanetv__vUE7PhDBcA,6220,A man is shown running down a track and smiling to the camera. He,sprays himself with water while continuing to run.,continues riding down the slopes while others watch.,skates around the track and continues skating.,rides down the track back to the score and up on her.,minces around and jumps to the ground.,gold0-orig,pos,unl,unl,unl,unl,A man is shown running down a track and smiling to the camera.,He\nanetv__vUE7PhDBcA,17380,A man is running in a field. The man,drinks from a water bottle.,turns around and lighting a cow.,stands on the field.,runs to the other end of the rope and it lands in the field.,throws a ball throwing the field.,gold0-reannot,pos,unl,unl,unl,unl,A man is running in a field.,The man\nanetv_OFe8toY6Ch4,4201,After other men throws the heavy ball. Next a man,throws a heavy ball that goes very fast and hits other balls.,in the top shows a scale strength advantage and lay on top.,flies up and hits the ball with his head.,grabs up a watch drill until scored.,dives back into the pool while some old teammate makes a performance against the white ball.,gold0-orig,pos,unl,unl,unl,pos,After other men throws the heavy ball.,Next a man\nanetv_OFe8toY6Ch4,4200,\"Then, a woman throws the ball and other women brush the floor. After other men\",throws the heavy ball.,are cleaning the fence.,get out to the table and watch a game.,grab guns and throws the ball to each other.,,gold0-orig,pos,pos,pos,pos,n/a,\"Then, a woman throws the ball and other women brush the floor.\",After other men\nanetv_OFe8toY6Ch4,4321,An animated white title screen with a logo is shown. A man,\"walks away from the camera frame, transitioning to a white screen with a logo.\",from the camera watch her in the background.,talks about how to cut skin up nails.,is shown wearing a ski mask.,,gold0-orig,pos,unl,unl,pos,n/a,An animated white title screen with a logo is shown.,A man\nlsmdc3004_500_DAYS_OF_SUMMER-1703,6129,He's drawn a girl holding a dagger dripping blood. Brother and sister,look at one another.,leap out of the car and swim around locker room.,are brushing his own teeth in soap.,knock themselves down on the floor.,are arm wrestling in a reception room.,gold0-orig,pos,unl,unl,unl,unl,He's drawn a girl holding a dagger dripping blood.,Brother and sister\nlsmdc3004_500_DAYS_OF_SUMMER-1703,6127,\"Someone stops, realizing he's alone in appreciating someone's performance. Someone\",\"exits the lift past a sign that reads, thank you for 75 years.\",puts himself in on his hat.,feebly reaches for the coffee at the table and slips it into his pocket.,shifts his lips in a choreographed twist.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone stops, realizing he's alone in appreciating someone's performance.\",Someone\nanetv_B_PhHrBEeNI,13698,Several shots are shown of a band playing together on stage and a man speaking to the camera and playing the harmonica. The man,continues speaking while playing the harmonica while still showing clips of the band playing.,continues speaking to the camera and the man continues holding up dough while still speaking to the camera.,continues to play the saxophone while holding his mouthpiece and speaks to the camera.,continues playing the saxophone while the camera captures his movements.,continues to play the guitar at the end while the camera pans up many to continue faster while others play.,gold0-orig,pos,unl,unl,unl,unl,Several shots are shown of a band playing together on stage and a man speaking to the camera and playing the harmonica.,The man\nanetv_B_PhHrBEeNI,4032,A man is seen speaking to the camera and begins playing on a stage with people. He then,plays the harmonica while speaking and showing clips of him singing.,\"sits down on the floor and begins playing, singing and singing again.\",moves around a large area and shows several clips from the camera.,drinks his water and pouring liquid into the cups before speaking to the camera.,lifts up his leg quickly and begins spinning himself around while smiling to the camera.,gold1-orig,pos,unl,pos,pos,pos,A man is seen speaking to the camera and begins playing on a stage with people.,He then\nanetv_B_PhHrBEeNI,4033,He then plays the harmonica while speaking and showing clips of him singing. He,continues to speak and play as well as showing him on stage.,continues playing with his shirt and ends with text.,plays the instrument with her hands and continues speaking.,continues to play his instrument with a different bow as he watches.,stops playing and continues playing the instrument to one another.,gold0-reannot,pos,unl,unl,unl,unl,He then plays the harmonica while speaking and showing clips of him singing.,He\nlsmdc1019_Confessions_Of_A_Shopaholic-80756,9273,Someone leaves her to it. She,peers blankly at someone.,kisses him from behind.,leans back to a chair.,spots an attendant and hostess.,follows someone and someone off.,gold0-orig,pos,unl,unl,unl,pos,Someone leaves her to it.,She\nlsmdc1019_Confessions_Of_A_Shopaholic-80756,9275,Someone glancing oversees him waiting for an answer. She,slaps someone's face.,takes her coat in hand as they jump to the door.,\"sways on him, unaware.\",closes her eyes and waves.,escorts him into the kitchen.,gold1-orig,pos,unl,unl,pos,pos,Someone glancing oversees him waiting for an answer.,She\nlsmdc1019_Confessions_Of_A_Shopaholic-80756,9276,\"She slaps someone's face. Someone, pouring champagne,\",misses the glass as she watches in horror.,holds his arms out and aim behind a drink.,\"closes his mouth, does n't speak.\",rushes out to join them.,,gold0-orig,pos,unl,pos,pos,n/a,She slaps someone's face.,\"Someone, pouring champagne,\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80756,9274,She peers blankly at someone. Someone glancing,oversees him waiting for an answer.,between the ar and the case.,\"aside, then bows.\",swirling in his left direction brings his hand back his foot and stops when he hears something strange.,very cautiously and runs down the hallway.,gold1-orig,pos,unl,unl,unl,pos,She peers blankly at someone.,Someone glancing\nanetv_33SI8z8PovA,16995,A black female is shown in a room with a black scarf around her head. Black spots on her faced are then zoomed in on and she,begins to apply something on it.,begins toward the camera with hula hoops.,puts her arm around the bristle do turn on the snowboard.,begins to blow dance.,begins explaining the ground faster.,gold0-orig,pos,unl,unl,unl,unl,A black female is shown in a room with a black scarf around her head.,Black spots on her faced are then zoomed in on and she\nanetv_33SI8z8PovA,16996,\"Black spots on her faced are then zoomed in on and she begins to apply something on it. Next, she takes some spray and it makes her skin extremely oily and she\",continues to talk until the video is over.,looks herself in the mirror and flings in several different dresses and sections.,brushes this out from a fingernail.,puts some blush in her brush sealife.,gets it to pray with her legs.,gold0-orig,pos,unl,unl,unl,unl,Black spots on her faced are then zoomed in on and she begins to apply something on it.,\"Next, she takes some spray and it makes her skin extremely oily and she\"\nlsmdc0013_Halloween-53623,13793,People continue walking down the street. Someone,breaks stride and runs across the street.,walks away to where he is holding his headphones.,reacts and walks out of the mall.,is running to a street set.,looks onto the path.,gold0-orig,pos,unl,unl,pos,pos,People continue walking down the street.,Someone\nlsmdc0013_Halloween-53623,13792,\"As she walks back to someone at the street the shape moves to watch them, then fades back into the interior of the house. People\",continue walking down the street.,\"sit on the sidelines, observing and laughing.\",are sleeping the roof of the military hut.,were fighting in the middle of street bordering a small obstacle on the street as the front row cruises by.,are standing in the doorway at the bottom of the stairs.,gold1-orig,pos,unl,unl,unl,pos,\"As she walks back to someone at the street the shape moves to watch them, then fades back into the interior of the house.\",People\nlsmdc0013_Halloween-53623,13787,Someone walks through the front gate and starts up toward the porch. Someone,strolls up to the front porch.,\"walks across the bed to her window, smiling softly.\",\"follows, wonders if she wants it.\",\"looks to herself as she eyes someone as he pulls away, wearily.\",walks down the hall toward someone.,gold0-orig,pos,unl,unl,unl,unl,Someone walks through the front gate and starts up toward the porch.,Someone\nlsmdc0013_Halloween-53623,13786,Someone holds up a key. Someone,walks through the front gate and starts up toward the porch.,hurries away stairs and joins someone on someone's bed.,wakes up with a start.,shoves the door open.,climbs up a ladder and leaves the basement.,gold0-orig,pos,unl,unl,pos,pos,Someone holds up a key.,Someone\nlsmdc0013_Halloween-53623,13794,Someone breaks stride and runs across the street. We,see someone walking off down the street in the distance.,shoot through the brightness from the ship's occupants.,\"silently topple, a baby past, then hangs and falls on the ground.\",submarine demurely up the front and back as each gun gets dragged below.,,gold0-orig,pos,unl,unl,unl,n/a,Someone breaks stride and runs across the street.,We\nlsmdc0013_Halloween-53623,13788,Someone strolls up to the front porch. She,\"bends down, lifts the welcome mat and places the key under it.\",opens her door to find marley dead on the dirt.,winks and enters off with a sour look on his face.,spots him from the nearby window and grins at the door.,,gold0-orig,pos,unl,unl,pos,n/a,Someone strolls up to the front porch.,She\nlsmdc0013_Halloween-53623,13790,\"Through a frost window, we see someone bending over the welcome mat. Suddenly a dark shape, the outline of a man,\",\"leans forward, watching her.\",pops up through the timbers and glimpses someone in the bedroom.,is in the burning present by a circus board.,sits erect by the crowd of the students.,stands close by in the flash on the cluttered bed.,gold0-orig,pos,unl,unl,unl,unl,\"Through a frost window, we see someone bending over the welcome mat.\",\"Suddenly a dark shape, the outline of a man,\"\nlsmdc0013_Halloween-53623,13789,\"She bends down, lifts the welcome mat and places the key under it. Through a frost window, we\",see someone bending over the welcome mat.,glimpse the figure of moving appraisingly on the train.,see two uniformed policemen walking a hospital corridor.,see a bunch of employee kids.,watch the van go down the driveway.,gold0-orig,pos,unl,unl,unl,pos,\"She bends down, lifts the welcome mat and places the key under it.\",\"Through a frost window, we\"\nlsmdc0013_Halloween-53623,13791,\"Suddenly a dark shape, the outline of a man, leans forward, watching her. As she walks back to someone at the street the shape moves to watch them, then\",fades back into the interior of the house.,clutching another small dog to her left and puts her head on someone's lap.,walks in close to the window.,someone throws and reaches out to him.,the creature emerge.,gold0-orig,pos,unl,unl,unl,unl,\"Suddenly a dark shape, the outline of a man, leans forward, watching her.\",\"As she walks back to someone at the street the shape moves to watch them, then\"\nlsmdc0013_Halloween-53623,13785,\"They walk up to the front of the old, two - story someone house set back from the street. Someone\",holds up a key.,looks up towards the editor 'name devastation.,comes down the slide.,closes the door behind her.,looks at her father.,gold0-orig,pos,unl,unl,pos,pos,\"They walk up to the front of the old, two - story someone house set back from the street.\",Someone\nanetv_laeOL4ipHck,16153,An introduction comes onto the screen for a video about vacationing. Some women,are shown playing volleyball on the beach while sending the ball back and forth.,are swimming between people in the living room knitting something with the same functions.,stand areas outside doing homework.,join an instructor for performers and led to dance on the dance stage.,take picture of the child that has an oil wetsuit in her hand.,gold0-orig,pos,unl,pos,pos,pos,An introduction comes onto the screen for a video about vacationing.,Some women\nanetv_laeOL4ipHck,16154,Some women are shown playing volleyball on the beach while sending the ball back and forth. The video,ends with the closing caption shown across the screen.,shows more city clips performing tricks and turning and ends with the interview seen on the screen.,ends with the team dressed in white uniform playing over hockey with a number of hockey players.,continues as the girls continue to dance with one another as well as letting more fly.,returns to the store in slow motion as a yellow belt is shown in slow motion.,gold1-orig,pos,unl,unl,unl,unl,Some women are shown playing volleyball on the beach while sending the ball back and forth.,The video\nanetv_laeOL4ipHck,4785,They are engaged in a game of volleyball. They,lob the ball back and forth over the net.,are playing lacrosse on a field.,cling to their competitive.,shake hands and serve to a pitcher.,game teams have gathered in a game of dodge ball.,gold0-orig,pos,unl,unl,unl,unl,They are engaged in a game of volleyball.,They\nanetv_laeOL4ipHck,4784,A group of girls are on a sandy beach. They,are engaged in a game of volleyball.,shake hands on ice on the ground.,run and swim across the ice.,run down the beach and throw the ball towards the water.,,gold0-orig,pos,unl,unl,pos,n/a,A group of girls are on a sandy beach.,They\nanetv_RUAWJc2OIJY,18393,\"He shows a video of a man break dancing, he brings this man out on the stage. The audience claps for him and him and Steve\",talk for a little while.,do the sit ups.,cheers on more times.,are shown falling down behind him.,practice their stunts and dancing as the trumpet match performs.,gold0-orig,pos,unl,unl,unl,pos,\"He shows a video of a man break dancing, he brings this man out on the stage.\",The audience claps for him and him and Steve\nanetv_RUAWJc2OIJY,7075,Two men shake hands and the audience claps. The man,starts to dance on the stage.,stands and claps his hands.,picks up a weight and hands it to the man.,prepares to perform dance participants on an arched platform.,prepares and claps his hands.,gold0-orig,pos,pos,pos,pos,pos,Two men shake hands and the audience claps.,The man\nanetv_RUAWJc2OIJY,18392,\"Steve harvey on his talk show talking to the audience and clapping his hands while he speaks. He shows a video of a man break dancing, he\",brings this man out on the stage.,shows entire badminton selfies.,stops using the energetic fetch bear.,hustles past people dancing.,,gold0-orig,pos,unl,unl,unl,n/a,Steve harvey on his talk show talking to the audience and clapping his hands while he speaks.,\"He shows a video of a man break dancing, he\"\nanetv_RUAWJc2OIJY,7074,A man in a suit is talking to the camera. A man,starts break dancing on the floor.,is kneeling on a platform outside the gym.,starts skateboarding with another man wearing stilts.,\"is standing behind a bar on a skateboard, sitting in front of a roller.\",is holding a bow and arrow in his hand.,gold0-reannot,pos,unl,unl,unl,pos,A man in a suit is talking to the camera.,A man\nlsmdc3045_LAND_OF_THE_LOST-21324,947,\"He picks up a rock and throws it at her. With a hurt gaze, someone\",\"walks down the steps, past grumpy.\",kisses the screw driver's head and opens it.,glares again and speaks quince good - bye.,leaps out diamond weld bordering the train.,looks across the rocky snow head creature.,gold1-orig,unl,unl,unl,unl,unl,He picks up a rock and throws it at her.,\"With a hurt gaze, someone\"\nlsmdc3045_LAND_OF_THE_LOST-21324,944,Someone notices the dot of his laser pointer on his chest. It,works its way up to his forehead.,pulls itself up and drags it away.,has a nearby fixed sketch of someone.,\"bends forward, trying to catch him.\",'s in the chaos.,gold0-orig,pos,unl,unl,unl,unl,Someone notices the dot of his laser pointer on his chest.,It\nanetv_Rvx2EoMScKg,10176,A boy sits down at a keyboard in a room. The person,plays a song on the keyboard.,takes the iron and applies lotion to the shoe.,moves his drums on drum sticks while still recording his play.,pauses by the right corner of the room and holds his right hand then taps him directly on the counter.,holds shaving cream to his face and neck.,gold0-orig,pos,unl,unl,unl,unl,A boy sits down at a keyboard in a room.,The person\nanetv_Rvx2EoMScKg,10862,A boy plays piano in a living room where there are two people. A person,next to the boy film the boy playing the piano.,plays guitar as the guy plays the guitar.,picks with instruments and a camera captures.,is holding a string to the piano.,carves a bed in front of his display.,gold0-orig,pos,unl,unl,unl,unl,A boy plays piano in a living room where there are two people.,A person\nanetv_Rvx2EoMScKg,10177,The person plays a song on the keyboard. The friends,watch as the boy plays a song.,play a long montage on stage.,plays with the camera at the end.,continue playing on each other as they play.,\"walk off, smiling to the camera.\",gold0-orig,pos,unl,unl,unl,pos,The person plays a song on the keyboard.,The friends\nanetv_Rvx2EoMScKg,10178,The friends watch as the boy plays a song. The boy,gets frustrated and leans forward after he stops playing.,blows off and grabs a plastic bag.,picks up motion with a stick to play.,leans closer to the person.,picks up his microphone and whispers into his microphone.,gold1-orig,pos,unl,unl,pos,pos,The friends watch as the boy plays a song.,The boy\nanetv_Rvx2EoMScKg,10863,\"A person next to the boy film the boy playing the piano. then, boy\",talk behind the boy.,stops playing and playing in the background.,plays the drums and dance with a tool.,plays a red bag as he and other boy play instruments.,,gold1-reannot,pos,unl,unl,unl,n/a,A person next to the boy film the boy playing the piano.,\"then, boy\"\nanetv_HktZZPJMU8s,2281,\"Then, the man opens the legs and practice Tai Chi miving his whole body. After, the man moves around his upped body, then he\",moves around while holding the rod.,holds an instrument displaying his legs.,lifts weights and drops the weights straight to his chest.,gets a fifth camera forwards.,swings on it banging till it becomes a complete half.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man opens the legs and practice Tai Chi miving his whole body.\",\"After, the man moves around his upped body, then he\"\nanetv_HktZZPJMU8s,19878,He then begins dancing around the room with the object moving his body all around. He,continues to move around the room with his body.,continues down the entire while holding his arms up while looking off into the distance.,continues dancing up the side while stopping to speak to the camera.,leads into a game of it hitting a player on a rope.,continues moving in and out of frame before moving in.,gold0-orig,pos,unl,unl,unl,pos,He then begins dancing around the room with the object moving his body all around.,He\nanetv_HktZZPJMU8s,19877,A man is seen standing in front of the camera with an object in his hands. He then,begins dancing around the room with the object moving his body all around.,dives off of a second board and flips the board in the end.,continues throwing the ball up and down while continuing to speak.,shows the camera several times several times and zooms it back into the container.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen standing in front of the camera with an object in his hands.,He then\nanetv_v0NEZPgjcXI,11989,\"A video game for wwe professional wrestling starts, showing a three on one match. The player controlling Roman Reigns hits a big move on his opponent, and his team\",comes in for a big coordinated attack.,'s team burns the match.,fights his passage between concentration and replayed.,before urinating on down a table.,,gold0-orig,pos,unl,unl,unl,n/a,\"A video game for wwe professional wrestling starts, showing a three on one match.\",\"The player controlling Roman Reigns hits a big move on his opponent, and his team\"\nanetv_WWyGnNfcj8Q,14919,A man is seen decorating a cake blindfolded while a small group of people watch. The man,adds frosting to the cake while others continue to watch as well as other ingredients.,pans to different objects as well as text in the end.,continues to curl leaves in place while the camera pans around to all of movements.,continues to skate around a road as well as winner watch his shoes.,walks slowly in an tan shirt and begins performing with a rope of things that was painted two pieces.,gold0-orig,pos,unl,unl,unl,unl,A man is seen decorating a cake blindfolded while a small group of people watch.,The man\nlsmdc1014_2012-79028,15543,\"Someone can see them from the dressing room. Someone, the waiter,\",pours someone the double.,runs from the room past someone.,takes a seat at a table facing the restaurant.,is on his way back from the doorway.,has a bottle in his hand.,gold0-reannot,pos,unl,unl,pos,pos,Someone can see them from the dressing room.,\"Someone, the waiter,\"\nanetv_TI3WqIauOYs,1867,A man takes off his shirt. He,starts doing karate moves on a blue mat.,is crossing his arms using a sword and physical strength.,drops a weight to the floor in front of him.,picks up a bottle and sprays it with his foot.,hops back down on the beam.,gold0-orig,pos,unl,unl,unl,pos,A man takes off his shirt.,He\nanetv_TI3WqIauOYs,1868,He starts doing karate moves on a blue mat. He,does several flips in the air.,\"presses a camera, also holding a pole in his hand.\",\"turns over the machine and walks around, looking off at the end before walking off.\",starts doing his karate moves.,moves very fast and finishes with them.,gold0-orig,pos,unl,unl,pos,pos,He starts doing karate moves on a blue mat.,He\nanetv_94w7SEcPDho,12463,Man is standing on a side of the path next to his bicycle. in the start people,are driving down the path.,are skiing on 2014.,are sitting on exercise bikes.,are standing by the car.,,gold1-orig,pos,unl,unl,unl,n/a,Man is standing on a side of the path next to his bicycle.,in the start people\nanetv_94w7SEcPDho,14792,It goes up and down hills. They,pass another biker on the trail.,mounted her crazed costume comes racing against the ledge.,figure of a baby in had shimmies by an old couple.,'ve squares on the fallen tree.,get off someone's playground and a young girl turns her family house and peek at her door.,gold0-orig,pos,unl,unl,unl,unl,It goes up and down hills.,They\nanetv_94w7SEcPDho,14791,A bike is going down a dirt track. It,goes up and down hills.,was in bangs at home.,graphic is shown and on.,is using the trimmer to cut the bike in half.,put the rubber tires in a wooden bin.,gold0-orig,pos,unl,unl,unl,unl,A bike is going down a dirt track.,It\nanetv_94w7SEcPDho,12462,Man riding a bike is going down a dirty path. man,is standing on a side of the path next to his bicycle.,is laying down snow on the floor.,is sitting in front of a bar talking to the camera.,is running in a house walking along a dirt highway.,,gold0-orig,pos,unl,unl,unl,n/a,Man riding a bike is going down a dirty path.,man\nanetv_94w7SEcPDho,14793,They pass another biker on the trail. The,get back to the finish line.,reporter speaks to the viewers.,girls run out of the range.,zombie drops out of the view.,fight laughs and giggles.,gold0-reannot,pos,unl,unl,unl,unl,They pass another biker on the trail.,The\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89705,8800,Someone sets the music out for her. Then she,makes her way across the room.,claps her hand and goes toward an apartment camp.,scans around herself and rests her head on an empty table.,\"slides out of bed, siting by her daughter, not to cry.\",hears the sound of the music and the room grows.,gold0-orig,pos,unl,unl,unl,unl,Someone sets the music out for her.,Then she\nanetv_qlqF8K072UU,6495,\"A second participant perform long jump successfully in the competition. However, the third participant\",\"runs, but fails to perform the long jump.\",of a rope falls off.,is longer than an athlete from first training to fly a string.,allows another single giant green handle to rail competition in another attempt.,is a parting necklace to the first.,gold0-orig,pos,unl,unl,unl,unl,A second participant perform long jump successfully in the competition.,\"However, the third participant\"\nanetv_qlqF8K072UU,8049,An athletic girl is seen standing ready and jumps down a long track into a pit. Many watch from the sidelines and men,rake up the sand and score the athletic score.,make a snack throughout the field.,follow her with the javelin.,flip back and try to steer straight from reach.,come back and end to the bar.,gold0-orig,pos,unl,pos,pos,pos,An athletic girl is seen standing ready and jumps down a long track into a pit.,Many watch from the sidelines and men\nanetv_qlqF8K072UU,6494,\"A woman runs on the track and then jumps long on a sand box, after she walks and a man shows her performance. A second participant\",perform long jump successfully in the competition.,is dropped off in front of her.,pushes a frisbee to the final woman who walked by.,\"performs a successful jump on a small parallel beam and doing flips, then she walks forward.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A woman runs on the track and then jumps long on a sand box, after she walks and a man shows her performance.\",A second participant\nanetv_qlqF8K072UU,8050,Many watch from the sidelines and men rake up the sand and score the athletic score. Several more women,are seen running down the track into the pit with their score being shown immediately afterwards.,are shown running around on a lacrosse field and hitting the ball in the ground with shots of someone on the sidewalk.,are seen sitting around a table.,are shown returning to measure a distance in the end.,,gold0-orig,pos,unl,pos,pos,n/a,Many watch from the sidelines and men rake up the sand and score the athletic score.,Several more women\nanetv_Io8EwPbNUbE,7276,A video tutorial is shown of a family doing dishes at a campsite. Everything,is thrown into two buckets.,is shown swimming deserted.,begin to form the correct location where they are shown on how to exercise.,is also talking about swimming.,,gold0-reannot,pos,unl,unl,pos,n/a,A video tutorial is shown of a family doing dishes at a campsite.,Everything\nanetv_cKFARm4dsws,8296,He kicks his feet back and forth getting pretty high. He just,enjoys his time swinging back and forth outside enjoying the day.,mounts the balls off as the audience gets more yelling.,throws down on the ground and hits him twice.,stands up and looks at the camera.,leaps onto the side of the tracks before landing on the centre.,gold1-orig,pos,unl,pos,pos,pos,He kicks his feet back and forth getting pretty high.,He just\nanetv_cKFARm4dsws,8294,A little boy is getting on the swinging closing his little safety guard. He,closes it and builds up some momentum to start going fast.,go smoothly on his feet on the stairs also.,is wildly pushing the wall up.,shoots him in the neck.,,gold0-orig,pos,unl,unl,unl,n/a,A little boy is getting on the swinging closing his little safety guard.,He\nanetv_cKFARm4dsws,8295,He closes it and builds up some momentum to start going fast. He,kicks his feet back and forth getting pretty high.,does a break and seems quite happy when he falls off and the green warriors quickly run.,sends high balls off.,is completely holding his picture.,is able to roll over and over a pommel he passes it really fast.,gold1-reannot,pos,unl,unl,unl,unl,He closes it and builds up some momentum to start going fast.,He\nlsmdc3033_HUGO-15023,2152,The audience rises to its feet. He,nods to the audience then bows to someone.,fishes some cash from someone.,works his way up behind it.,readies his knife against the man.,,gold1-orig,pos,unl,unl,unl,n/a,The audience rises to its feet.,He\nlsmdc3033_HUGO-15023,2150,\"On stage, someone steps aside as a spotlight illuminates a curtain. The curtain parts and someone\",walks out wearing a tuxedo.,lowers it and ventures nervously over the railing.,steps very close to the water.,steps out of the elevator.,floats out of the sky.,gold0-orig,pos,unl,unl,unl,unl,\"On stage, someone steps aside as a spotlight illuminates a curtain.\",The curtain parts and someone\nlsmdc3033_HUGO-15023,2151,The curtain parts and someone walks out wearing a tuxedo. The audience,rises to its feet.,men walk toward the podium.,is chained to the floor.,watches with a flickering admiringly across his face.,of the audience cheer in the same.,gold0-orig,pos,unl,unl,unl,unl,The curtain parts and someone walks out wearing a tuxedo.,The audience\nlsmdc3033_HUGO-15023,2149,\"Sitting with someone and someone, someone smiles as he applauds. On stage, someone\",steps aside as a spotlight illuminates a curtain.,slows down and sprints off.,faces a doctor's smiling daughters.,nods at his young mother and applauds.,,gold0-orig,pos,unl,unl,unl,n/a,\"Sitting with someone and someone, someone smiles as he applauds.\",\"On stage, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3212,10546,\"Now, someone faces the bars in the back of his cell. The lawyer, someone,\",sits in a corridor on the other side.,stands in a courtyard.,leads the group to a priest.,opens the trunk on a tech.,reads an enlarged cartridge for someone's logo.,gold1-orig,pos,unl,unl,unl,pos,\"Now, someone faces the bars in the back of his cell.\",\"The lawyer, someone,\"\nlsmdc3056_PUBLIC_ENEMIES-3212,10543,The hulking man leans to someone's ear. Someone,\"scowls toward his cell, then heads over.\",tucks inside and locks himself in a crate.,remains on the mangled wall.,pulls a record aside.,lays her back on him.,gold0-orig,pos,unl,unl,unl,unl,The hulking man leans to someone's ear.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3212,10545,\"He waves two prisoners on. Now, someone\",faces the bars in the back of his cell.,lands in the x - jet.,longingly reflects the soapy complexion.,\"enters someone's bedroom, and closes the door behind him.\",takes the floor of an ambulance as the janitor shines his shoes in.,gold1-orig,pos,unl,unl,unl,unl,He waves two prisoners on.,\"Now, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3212,10544,\"Someone scowls toward his cell, then heads over. He\",waves two prisoners on.,maintains a sharp peering beyond its outer guardrail.,leads someone to a bank.,goes in toward the door.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone scowls toward his cell, then heads over.\",He\nlsmdc3056_PUBLIC_ENEMIES-3212,10542,The lawyer nonchalantly follows a second guard farther ahead. The hulking man,leans to someone's ear.,sits with his soldier around the two watch.,records her as she closes the door.,brings through a hanger in a gully behind people.,climbs to the back edge and inches forward.,gold1-orig,pos,unl,unl,unl,unl,The lawyer nonchalantly follows a second guard farther ahead.,The hulking man\nanetv_QRdQ8KIVf40,18051,A man and a child walk in a living room on back the table pool. A woman,walks with a stick next to the men.,sleeps next to a dog.,stands at a piano smoking a pipe.,is sitting on an elliptical.,,gold0-orig,pos,pos,pos,pos,n/a,A man and a child walk in a living room on back the table pool.,A woman\nanetv_ESlUzrtqC98,18909,A lady in pink picks up a ball off the ground. The man in white shirt,picks up a ball off the ground.,is in a blue yellow uniform cheering for someone.,is sitting in a chair.,walks away from the camera.,gets up and starts to walk around.,gold0-orig,pos,unl,pos,pos,pos,A lady in pink picks up a ball off the ground.,The man in white shirt\nanetv_ESlUzrtqC98,18911,The man in white picks up a ball. The lady in pink,needs to bend down to pick up a ball.,suddenly hits a ball throw the ball.,\"t then put the black shirt, the woman in red shirt sports a hat.\",is doing a high jump.,hits the ball and lands in front of her.,gold1-orig,pos,unl,unl,pos,pos,The man in white picks up a ball.,The lady in pink\nanetv_ESlUzrtqC98,18907,The camera is turned right side up. A group of people,are playing beer pong.,are off at the side of the river.,are seen sitting around continuing to play croquet in the middle.,sit skating on street and darts.,are playing ping pong.,gold0-orig,pos,unl,unl,unl,pos,The camera is turned right side up.,A group of people\nanetv_ESlUzrtqC98,18906,The camera is on it's side. The camera,is turned right side up.,continues around piercing the animal's face.,zooms shot on the red motorcycle.,cuts shot in half.,is slowly moving into the room.,gold0-orig,pos,unl,unl,pos,pos,The camera is on it's side.,The camera\nanetv_ESlUzrtqC98,2193,The camera is righted as the game continues. The video,ends with the one team getting two consecutive balls in cups.,ends with someone walking along a white trail.,matches the video of the woman playing the keyboard.,starts with the website.,ends with the closing captions shown on the screen.,gold0-orig,pos,unl,unl,unl,pos,The camera is righted as the game continues.,The video\nanetv_ESlUzrtqC98,18908,A group of people are playing beer pong. A lady in pink,picks up a ball off the ground.,is walking on the sitting at an back desk.,hit by a ball.,walks off playing his flute.,removes her glasses and smiles.,gold0-orig,pos,unl,unl,unl,pos,A group of people are playing beer pong.,A lady in pink\nanetv_ESlUzrtqC98,18912,The man in white drinks from a cup. The man and the lady,jump up and down and hug.,blow the ice cream and pour cream to the kid's face.,walk with their hands raised towards the ready.,interact ping - pong.,step out of frame and drink drinks.,gold1-reannot,pos,unl,unl,unl,pos,The man in white drinks from a cup.,The man and the lady\nanetv_BmZwZLKxHCY,17142,She puts on compact makeup from a case. She then,applies eye shadow and lipstick.,pierces fasten through another nail and holds the pliers stuck to her skin by waving her hands at the camera.,shows it to a doctor at the service entrance.,lights a pumpkin as she holds a shot cut and cut before serving it.,places a contact lens into the container.,gold0-orig,pos,unl,unl,unl,pos,She puts on compact makeup from a case.,She then\nanetv_BmZwZLKxHCY,17141,A little girl is sitting in a rocking chair. She,puts on compact makeup from a case.,is holding some sort of balance ribbon.,lifts up a letter and attaches it to the paper.,begins to do a trick on a third swing.,has her hair braided by another stylist.,gold1-orig,pos,unl,unl,unl,unl,A little girl is sitting in a rocking chair.,She\nanetv_-MldnTjJ-zE,526,A girl is standing next to a white horse. She,begins to brush the horse.,gets up and walks away.,talks as she rides a horse with a single club.,is pulling a woman up and doing some rope tricks on the horse.,is chasing a calf while the calf runs.,gold0-orig,pos,unl,unl,unl,unl,A girl is standing next to a white horse.,She\nanetv_-MldnTjJ-zE,14258,She goes to the horses face and tries to brush but he moves his face to the other direction so she continues in different places. She,walks around to the other side of the horse and starts brushing that side of him.,is riding in the distance as video is zooming along showing her very great sport.,continues walking around the grass the camera goes over the side of the road to make her look failing work.,looks to the camera in the kitchen.,,gold0-orig,pos,unl,unl,pos,n/a,She goes to the horses face and tries to brush but he moves his face to the other direction so she continues in different places.,She\nanetv_-MldnTjJ-zE,14257,She steps back and talks about how she does it and then gets back to brushing. She goes to the horses face and tries to brush but he,moves his face to the other direction so she continues in different places.,continues telling her story.,does more practice at her.,'s another shot of the horse.,moves back and forth to make sure to brush the horse.,gold0-orig,pos,unl,unl,unl,unl,She steps back and talks about how she does it and then gets back to brushing.,She goes to the horses face and tries to brush but he\nanetv_-MldnTjJ-zE,14256,\"A little girl is standing next to a white horse, she is brushing the horse. She\",steps back and talks about how she does it and then gets back to brushing.,\"is walking behind the horse, brushing a horse in her tail.\",bend down to the horse to remove her legs.,\"takes the horse out followed by her arms, using her teeth and running down the horse's neck with hammer.\",speaks as the horse approaches.,gold0-orig,pos,unl,unl,unl,pos,\"A little girl is standing next to a white horse, she is brushing the horse.\",She\nanetv_-MldnTjJ-zE,527,She begins to brush the horse. She,walks around the horse and brushes the other side of the horse.,she reaches for the tether in the right hand and drops it on the ground.,the horse is blow into his mouth to dry off the horse.,wipes the horse away with her cloth.,\"it is disconnected, and the image fades.\",gold0-orig,pos,unl,unl,unl,unl,She begins to brush the horse.,She\nanetv_YtPZMBePf5c,6308,\"The man teases the boy with a cone and lets the boy have it, only to be taken away again. The man then\",puts ice cream on the cone and smiles at the boy while he walks away and other's watch.,\"proceeds to hit a pinata inside, all with a loop in his hand.\",slides to the level finally and then comes back to cut the game.,plays the same games with others the other people watch on the side as the boy lets go of her hand.,,gold1-orig,pos,unl,unl,pos,n/a,\"The man teases the boy with a cone and lets the boy have it, only to be taken away again.\",The man then\nanetv_YtPZMBePf5c,6307,A man is seen swirling a stick around a pot while a young boy on the side watches him work. The man,\"teases the boy with a cone and lets the boy have it, only to be taken away again.\",motions all along the instrument while looking off into the distance and stops to speak.,walks on the logs into the pile.,gets on the arm and throws himself while the man laughs he picks up several pieces of liquor and shakes it down.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen swirling a stick around a pot while a young boy on the side watches him work.,The man\nanetv_6QImnhUemH0,12952,The man puts the mop into the blue mop bucket first and then he starts mopping. First he,mops near the stove and the counter.,takes off the vacuum and ties the laces.,mops the mop of contac he is up to starts cutting and stroking it off his hand.,wipes himself with the towel in the can.,pushes aside the mop that is clean.,gold0-orig,pos,unl,unl,pos,pos,The man puts the mop into the blue mop bucket first and then he starts mopping.,First he\nanetv_6QImnhUemH0,12953,First he mops near the stove and the counter. Then he,mops on the floor that between the refrigerator and another counter.,puts some potatoes in the pan and leaves it at a pan.,\"adds another cupcake, pours it into line and cooks the mix in it when it begins with a heated drink.\",goes up and pulls a clipboard along alongside corridor.,\"puts a syrup in the white glass, pours out the cheese, and grabs another spoonful of squeezing it and goes back.\",gold0-orig,pos,unl,unl,unl,unl,First he mops near the stove and the counter.,Then he\nanetv_6QImnhUemH0,12954,Then he mops on the floor that between the refrigerator and another counter. Then he,mops the center of the kitchen floor.,grabs a powder tank and and water went under a wall with it in the tank.,\"make a sudden for a drink, the weather of which that has several ingredients and plates and lemon.\",finds some type of metallic hot noodles with sponge and huts.,turns to make sure someone is straight in the sitting room.,gold0-orig,pos,unl,unl,unl,pos,Then he mops on the floor that between the refrigerator and another counter.,Then he\nlsmdc3051_NANNY_MCPHEE_RETURNS-24521,11373,Someone joins her behind the counter. It,'s piled waist high.,stamps a cloth through one of the other rooms!,egg his attention on a mobile bowl and a solution on the mantelpiece.,up someone then runs up.,form a semi - circle within a tree cabinet.,gold0-orig,pos,unl,unl,unl,unl,Someone joins her behind the counter.,It\nanetv_GcEutQTeAnA,5871,A man carefully washes the side of a car with a sponge. The man,stands up and washes the windshield.,folds the camera and measures it in several sections.,lifts a towel into a sink and continues scrubbing the door.,adds some text on the keyboard to complete the procedure.,picks up the solution to the sink.,gold0-orig,pos,unl,unl,unl,pos,A man carefully washes the side of a car with a sponge.,The man\nanetv_OM0jqPYx700,12920,The white lights are reflected on the table. The man,wipe the edge of the table with white rag.,takes on the canvas coat in the room and takes off the mask.,is writing on a broken piece of paper.,polished off his shoes.,,gold0-orig,pos,unl,pos,pos,n/a,The white lights are reflected on the table.,The man\nanetv_OM0jqPYx700,12919,A man in black shirt wipe the table with white cloth. The white lights,are reflected on the table.,put the sunscreen on his leg.,are in the man's hands.,put on on the table.,extend out and he slowly lights up a beard.,gold0-orig,pos,unl,unl,unl,unl,A man in black shirt wipe the table with white cloth.,The white lights\nanetv_3pBldeB3uaE,19120,A large group of people are seen standing around a pool as well as people writing on paper and speaking to one another. More people,are seen diving on a board and jumping off onto the side.,continue playing their instruments together followed by one speaking to a man and speaking.,continue their soup and speaking as well as various people speaking to one another and many people.,are seen close up watching them with the video.,take turns playing with one another and ends with text on the screen.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen standing around a pool as well as people writing on paper and speaking to one another.,More people\nanetv_3pBldeB3uaE,19121,More people are seen diving on a board and jumping off onto the side. Several people,are seen watching on the side as the kids continue to dive.,are then interviewed to one another and are shown performing in slow motion.,fall onto the diving board.,continue surfing in the water flipping and spinning around.,,gold0-orig,pos,unl,unl,pos,n/a,More people are seen diving on a board and jumping off onto the side.,Several people\nanetv_tVC_5_SgseY,14536,\"Then, the man fries an egg and puts it on the bread as well the mortadella, green leaves, cheese and ketchup. After, the man\",cuts the sandwich in two and eat one.,add white slices of bread in the pan until it cuts to the bread bread.,curl the bread with a plate and put it on a plate.,puts dough on a tray of flowers and takes them off of the salad.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the man fries an egg and puts it on the bread as well the mortadella, green leaves, cheese and ketchup.\",\"After, the man\"\nanetv_tVC_5_SgseY,17591,When the egg is ready the man form a sandwich and spread ketchup. sliced in the hald and,serve it on white plate.,put chocolate on top of the mixture.,put it on the pumpkin.,add another half of an eggs with sugar and green lock cheese coloring to.,sliced it from the sandwich extensively in the white rim.,gold0-orig,pos,unl,unl,unl,unl,When the egg is ready the man form a sandwich and spread ketchup.,sliced in the hald and\nanetv_tVC_5_SgseY,17590,The man grabs a bread slice and spread butter and put them on a griddle. when the egg is ready the man,form a sandwich and spread ketchup.,starts ironing and put it in the oven.,\"spread, then peel spaghetti and put it on a sandwich into the tomato pan.\",cleans the sandwich with a cat tool.,,gold1-orig,pos,unl,unl,unl,n/a,The man grabs a bread slice and spread butter and put them on a griddle.,when the egg is ready the man\nanetv_tVC_5_SgseY,17589,Chef is standing in front of a counter talking to the camera. the man,grabs a bread slice and spread butter and put them on a griddle.,discusses a cup with coffee and bright ingredients that are displayed on the table.,\"begins sharpening the knife, sharpening a piece of paper by sharpening a knife.\",then is presenting the bottle with instructions remover to the point that the window has finally seen.,pulls out a black container of board behind his shirt.,gold0-orig,pos,unl,unl,unl,unl,Chef is standing in front of a counter talking to the camera.,the man\nanetv_7QxUtHqQdbY,19866,A man is seen standing in the woods holding an ax and walking closer to a log. The man,steps on the log a bit followed by him swinging the ax on the log.,begins using a tool to cut the area off.,lifts the claw and fans the tree and the camera pans out to the man who is standing in the area.,uses a hose to a tree.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen standing in the woods holding an ax and walking closer to a log.,The man\nanetv_7QxUtHqQdbY,3100,He is pushing around a log. He,uses a large ax to chop the log.,then bowls several times.,uses the ax to trim the hedges.,\"reach a second motorbike, but he leaps from the ground holding his legs.\",goes back and forth over the mat and covered it to the ground.,gold0-orig,pos,unl,unl,unl,unl,He is pushing around a log.,He\nanetv_v8Dqgro-f-U,191,We see people on bleachers and kids jumping. We then,see the blue ending screen.,see a swings slide in the distance.,see the ending title title sequence with copyright text on a screen.,see people playing soccer on the beach.,,gold1-orig,pos,unl,pos,pos,n/a,We see people on bleachers and kids jumping.,We then\nanetv_v8Dqgro-f-U,187,We see a gym filled with people watching as people jump rope. We see the outside of the building and a man,is interviewed with shots of the inside cut in.,pumping his hands and legs in the air.,throws a yellow t rope off the end of the park.,jumping off on the uneven bars on the field.,jumps over a long bar doing the tricks.,gold0-orig,pos,unl,unl,pos,pos,We see a gym filled with people watching as people jump rope.,We see the outside of the building and a man\nanetv_v8Dqgro-f-U,190,We see girls interviewed outside the main room and scenes from inside the gym. We,see people on bleachers and kids jumping.,see a girl striking a pose as she is dancing ad on the floor.,see a man mixing bottles for a bottle.,see the title title screen.,,gold0-orig,pos,unl,unl,unl,n/a,We see girls interviewed outside the main room and scenes from inside the gym.,We\nanetv_v8Dqgro-f-U,189,We watch girl perform see ladies serving snacks and watch another person perform. We,see girls interviewed outside the main room and scenes from inside the gym.,older girls ride down the hills among the rest of the lead ages.,enter the competition in la.,see the lady leg up high.,,gold0-reannot,pos,unl,unl,unl,n/a,We watch girl perform see ladies serving snacks and watch another person perform.,We\nlsmdc3025_FLIGHT-12234,12602,\"Someone shifts, his hands resting on the table. Someone\",turns on his cell phone recorder.,hurriedly converses with someone as someone chucks it.,begins to play without turning away from a mirror.,winces as he gives her a potion then looks away.,presses his lips together.,gold1-orig,pos,unl,unl,unl,unl,\"Someone shifts, his hands resting on the table.\",Someone\nlsmdc3025_FLIGHT-12234,12601,Someone opens a writing pad. Someone,\"shifts, his hands resting on the table.\",elbows her with the arm.,stands on the center frame holding her sister's bag.,purse for a gap.,makes to talk about what was in the book.,gold0-orig,pos,unl,unl,unl,pos,Someone opens a writing pad.,Someone\nlsmdc3025_FLIGHT-12234,12600,They're seated at a table. Someone,opens a writing pad.,bounces from a table and holds on outside.,disgustedly lets out a troubled breath.,sits down near a table.,\"opens from a case, adjusts the buttons, and pulls out a chair.\",gold0-orig,pos,unl,pos,pos,pos,They're seated at a table.,Someone\nanetv_CX5QUmM97DI,7052,A man is trimming a damaged bush using a machette. The man,continues chopping the cut branch on a deck.,starts cutting the wood for speed.,is kayaking around a large yard.,continuously demonstrates using the contraptions from removing the hedge trimmer.,,gold0-orig,pos,unl,unl,pos,n/a,A man is trimming a damaged bush using a machette.,The man\nanetv_E6ePEI4UOtU,8855,A person absorbs all the water from a bowl using a mop. Water,is poured into a large bucket.,does various moves into several of them that is able to leave the floor.,goes around the table and sets a slat on the counter.,is sitting on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,A person absorbs all the water from a bowl using a mop.,Water\nanetv_E6ePEI4UOtU,8856,Water is poured into a large bucket. The mop in dunked in the bucket of water then,spun dry in the tray.,pour on the furniture.,lifts the wheels off a table and begins lifting it to the floor.,pours the water while harry is watching.,pours down the tower.,gold0-orig,pos,unl,unl,unl,unl,Water is poured into a large bucket.,The mop in dunked in the bucket of water then\nanetv_E6ePEI4UOtU,8854,A mop stands upright next to a bucket. A person,absorbs all the water from a bowl using a mop.,in a chair walks out to measure when a weight is then shown on the ground.,is holding a mop that prays as she speaks to the camera.,\"is scrubbing the chair, using various notes.\",mops the bottom of the shoe with him.,gold0-reannot,pos,unl,unl,pos,pos,A mop stands upright next to a bucket.,A person\nlsmdc0008_Fargo-49872,7640,\"Someone is on her hands and knees by a body down in the ditch, again looking at footprints in the snow. She\",\"gets up, clapping the snow off her hands, and climbs out of the ditch.\",runs a foot up.,follows him through a square doorway.,struggles to secure guidance again.,stares out the window toward the roulette table.,gold0-orig,pos,unl,unl,unl,unl,\"Someone is on her hands and knees by a body down in the ditch, again looking at footprints in the snow.\",She\nlsmdc0008_Fargo-49872,7641,\"She is looking at the prowler, which still idles on the shoulder. Someone is driving; someone\",sits next to her.,\"walks around the car, to the sound of someone's voices.\",walks up to her.,is leaving.,is sleeping as it 10 degrees visor.,gold0-orig,pos,unl,unl,unl,unl,\"She is looking at the prowler, which still idles on the shoulder.\",Someone is driving; someone\nlsmdc0008_Fargo-49872,7639,She calls up to the road. Someone,\"is on her hands and knees by a body down in the ditch, again looking at footprints in the snow.\",almost seems to be getting more leverage.,knocks herself out.,\", in the raft, climbs all the raft, sitting morose.\",'s family nervously follows.,gold0-reannot,pos,unl,unl,unl,pos,She calls up to the road.,Someone\nlsmdc1009_Spider-Man3-76742,17210,Lit by the glow from the fire someone turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat. Someone,\"looks impassively at someone, then shakes his head.\",is 10 stories high.,\"watches off for a moment, facing himself.\",keeps shooting and glances over her shoulder.,,gold1-orig,pos,unl,unl,unl,n/a,Lit by the glow from the fire someone turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat.,Someone\nlsmdc1009_Spider-Man3-76742,17211,Someone turns away rebuffed and leaves by the balcony. In the goblin layer someone,picks up the green goblin sword from among the debris on the floor.,has rolled up the front of his vampire's cloak.,he keeps his back at a gas plant.,leaves to a top coat and holds a jar of cocaine.,leaves his hand smoky trail by his face.,gold0-orig,pos,unl,unl,unl,unl,Someone turns away rebuffed and leaves by the balcony.,In the goblin layer someone\nlsmdc1009_Spider-Man3-76742,17209,He half turns his head to look at someone who is in his someone suite but without the mask. Lit by the glow from the fire someone,turns round fully to face someone revealing ugly burns on his right cheek and a scar across his eye and throat.,\"leans forward and stands the flaming torch to the light, but it explodes, destroying the room.\",\"plays paintball but someone keeps his back to someone, who is watching closely for a moment.\",\"is sitting behind him as it raises its hands, creating a burst of flames.\",,gold0-orig,pos,unl,unl,unl,n/a,He half turns his head to look at someone who is in his someone suite but without the mask.,Lit by the glow from the fire someone\nlsmdc1009_Spider-Man3-76742,17207,Up in his mansion someone turns off the tv and paces past a roaring fire with a hand clasped to his forehead. He,stops in front of the portrait of his father.,\"grabs his hand then goes after him again, multiple years in slow motion.\",\"turns, for someone, then slowly climbs back into the room.\",\"paces up to someone in his lap, his head resting on someone's shoulder.\",listens with a roar of frustration as she across the floor.,gold0-orig,pos,unl,unl,unl,unl,Up in his mansion someone turns off the tv and paces past a roaring fire with a hand clasped to his forehead.,He\nanetv_-FWGLSfI13Q,2005,\"Next, they use a knife to cut the face into the pumpkin. A boy in a black shirt\",makes funny faces to the camera while another boy plays with the insides of the pumpkin.,puts a cloth on top of a larger dish.,is standing inside a workshop with a small snow block.,is talking to her and adding a normal lawn.,throws two bags at a brown potato and grabs the knife with both hands.,gold0-orig,pos,unl,unl,unl,unl,\"Next, they use a knife to cut the face into the pumpkin.\",A boy in a black shirt\nanetv_-FWGLSfI13Q,18621,Another person plays in the distance and leads into a man helping the boy draw. The man then,cuts out the outline with the boys help and shows the pumpkin in the dark.,begins playing with one another while still speaking to the camera.,plays the instrument while still speaking to the camera while the camera moves off of the water.,begins parting the dog from under a blanket and holding the leaf.,begins to swing across the net as well as from the tree and continue to pile their leaves.,gold0-orig,pos,unl,unl,unl,unl,Another person plays in the distance and leads into a man helping the boy draw.,The man then\nanetv_-FWGLSfI13Q,2002,A little boy in a kitchen is scooping out the inside of a pumpkin while another boy sits a the table. The boy's dad,comes over to help him get the insides out of the pumpkin.,starts washing the bottom.,is the first girl rakes it with an ice cream cone.,is being very frustrated.,,gold0-orig,pos,unl,unl,pos,n/a,A little boy in a kitchen is scooping out the inside of a pumpkin while another boy sits a the table.,The boy's dad\nanetv_-FWGLSfI13Q,2004,\"They begin to use a marker to draw a face on the pumpkin. Next, they\",use a knife to cut the face into the pumpkin.,put a pumpkin into cookie dough on the pumpkin and rolling it around to find the seeds.,add sticks all the christmas decorations on the christmas tree.,begin to throw the lipstick blood on a tiny girl.,put parts onto the nails and remove them from view.,gold0-orig,pos,unl,unl,unl,unl,They begin to use a marker to draw a face on the pumpkin.,\"Next, they\"\nanetv_-FWGLSfI13Q,2003,The boy's dad comes over to help him get the insides out of the pumpkin. They,begin to use a marker to draw a face on the pumpkin.,turn the pumpkin taking fires.,are mixed by all the colors.,are made from the house.,adds seasoning and eggs to a plate and a sauce.,gold0-reannot,pos,unl,unl,unl,unl,The boy's dad comes over to help him get the insides out of the pumpkin.,They\nanetv_-FWGLSfI13Q,2006,A boy in a black shirt makes funny faces to the camera while another boy plays with the insides of the pumpkin. The family,turns the lights off and lights up the pumpkin before the video ends.,continues to play a game of croquet while the credits of the video are shown.,puts an earring inside the ring.,continues to break together and end by showing a pumpkin at the end.,,gold0-reannot,pos,unl,unl,pos,n/a,A boy in a black shirt makes funny faces to the camera while another boy plays with the insides of the pumpkin.,The family\nlsmdc3084_TOOTH_FAIRY-39649,3566,Someone grabs the stocky fairy's magic wand. Someone,throws someone a wand.,puts eye light on the pumpkin.,falls out of it.,slides it down front of the hedges and back.,looks over at someone.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs the stocky fairy's magic wand.,Someone\nlsmdc3084_TOOTH_FAIRY-39649,3564,The stocky fairy pantomimes flying. Fairies,point magic wands and drag him back to someone.,steps out with a meeting drawn on a road.,eyes the boys spot the boys.,steps toward the driver's door.,,gold1-orig,pos,unl,unl,pos,n/a,The stocky fairy pantomimes flying.,Fairies\nlsmdc3084_TOOTH_FAIRY-39649,3567,\"Someone throws someone a wand. As he flexes his arms, his wand\",shoots fairy dust in his eyes.,disappears instantly he disappears into the darkness of the sight.,releases one hand and knocks him over.,adds a mask to someone's eyelid.,,gold0-orig,pos,unl,unl,unl,n/a,Someone throws someone a wand.,\"As he flexes his arms, his wand\"\nlsmdc3084_TOOTH_FAIRY-39649,3568,\"As he flexes his arms, his wand shoots fairy dust in his eyes. Someone\",pokes him with his wand.,falls under the ring as the trudge lashes out.,stares after the portrait.,\"walks into the room, then looks at someone.\",dodges this and punches him.,gold0-reannot,pos,unl,unl,unl,pos,\"As he flexes his arms, his wand shoots fairy dust in his eyes.\",Someone\nlsmdc3084_TOOTH_FAIRY-39649,3565,He rolls his shoulders and someone glances at the crowd. Someone,takes off his glasses.,withdraws his hand from her mouth.,'s sunglasses twinkle brightly as a teeters sea reflected in the starry sky.,eyes the little old man as he heads into a safe parking space.,\"strides toward the bed, his eyes filling with tears.\",gold0-reannot,pos,unl,unl,unl,pos,He rolls his shoulders and someone glances at the crowd.,Someone\nanetv_zGTqXydTuQs,1679,We see the names of the boys. We,see the ending title screens.,children appear surfing the screen.,\"see a red product of a title thrower, on a black and white court.\",interviewed and youtube.,music do a lift.,gold0-orig,pos,unl,unl,unl,unl,We see the names of the boys.,We\nanetv_zGTqXydTuQs,1675,Two boys in scuba gear sit in a van and preparing to scuba dive. We,\"see three people in the water, two under water.\",'re images of someone.,\"zoom in on the icy blue, their mouth swimming and talking.\",see the man skating over ice.,,gold0-orig,pos,unl,unl,pos,n/a,Two boys in scuba gear sit in a van and preparing to scuba dive.,We\nanetv_zGTqXydTuQs,1676,\"We see three people in the water, two under water. We\",see under water and above intermittently.,see the man laying down on stilts.,see people out of wrapping wrapping.,see a person pulling leaves on a boat.,see everything dropped on the lake.,gold0-orig,pos,unl,unl,pos,pos,\"We see three people in the water, two under water.\",We\nanetv_zGTqXydTuQs,1677,We see under water and above intermittently. A boy,talks to the camera and lifts his goggles.,sprays up a pumpkin and rubs his hands through his hair.,is kneeling on a cabin.,holds a plastic broom stand over the sink.,is seen working out in a bathroom lifting an object.,gold0-orig,pos,unl,unl,unl,unl,We see under water and above intermittently.,A boy\nanetv_zGTqXydTuQs,1674,\"We see a house, a van and a title screen. Two boys in scuba gear\",sit in a van and preparing to scuba dive.,appear natural as their feet backs into armed blasts.,run off with the shoes uphill climbing the snow.,are skating and going down the hill.,play through dense trees in the woods.,gold0-orig,pos,unl,unl,unl,unl,\"We see a house, a van and a title screen.\",Two boys in scuba gear\nanetv_zGTqXydTuQs,4001,An instructor takes them underwater. They,swim around in shallow water.,push bright water on them.,are handed roller parts.,are joined by a man next to a rope.,,gold0-orig,pos,unl,unl,pos,n/a,An instructor takes them underwater.,They\nanetv_zGTqXydTuQs,1678,A boy talks to the camera and lifts his goggles. We,see the names of the boys.,see a rod shaped tool.,see a match indoors.,see a person snowboarding lying.,see the man swirling a tube with it.,gold0-reannot,pos,unl,unl,unl,unl,A boy talks to the camera and lifts his goggles.,We\nanetv_KWeZbXoX8Ys,6169,There is a very tall and steep slide running through some trees in a large open ground. There,is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down.,'s dancing trouble with stick names hung up on the sidewalk using it.,sits with their head on the ground and doing slow splits by a man hopscotch high.,are several other people lined up with volts machines on the ground.,are now a child and group rollerblading along the street.,gold0-orig,pos,unl,unl,unl,unl,There is a very tall and steep slide running through some trees in a large open ground.,There\nanetv_KWeZbXoX8Ys,6171,A young boy wearing black shorts and a shirt comes sliding down in full force. He,lands far from the slide as he tumbles down and off of the slide.,does fast jump - down as they run across the busy music parlor.,lifts his head and continues dancing.,is using a little racket!,\"stops, jumping off of the balance string.\",gold0-orig,pos,unl,unl,unl,unl,A young boy wearing black shorts and a shirt comes sliding down in full force.,He\nanetv_KWeZbXoX8Ys,6170,There is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down. A young boy wearing black shorts and a shirt,comes sliding down in full force.,is sitting next to him solving the cube.,is followed by the crowd before the race.,comes running over toward the man with both hands and leads the tight little girl in circles.,,gold0-reannot,pos,unl,unl,pos,n/a,There is a rubber surface running lengthwise at the bottom end of the slide to protect people from getting hurt as they land down.,A young boy wearing black shorts and a shirt\nanetv_IajP-SB2D5c,2858,A young man in a blue tank top faces a camera and talks on a sports field while other athletes stretch in the background. The young man then,performs a long jump which is followed by two replays of the high jump in slow motion.,begins wrestling with each other with swords resembling a fencing match.,dives around a ball on the lower board.,demonstrates the exercises explaining that he is high and turns the cable around the left just alternating back to remove his jumping ramp.,returns his high to dinette high on a rope while a ref loses his score.,gold0-orig,pos,unl,unl,unl,unl,A young man in a blue tank top faces a camera and talks on a sports field while other athletes stretch in the background.,The young man then\nanetv_IajP-SB2D5c,7340,A man is talking in front of a camera on a track. He,takes a long running jump.,pulls the rock and begins swinging it around.,is then shown walking around and blowing sand in a town car.,is seen performing backwards while kneeling down.,uses a shovel to scrape snow snow from his hand.,gold0-orig,pos,unl,unl,unl,unl,A man is talking in front of a camera on a track.,He\nanetv_IajP-SB2D5c,7341,He takes a long running jump. He lands in the sand pit and it,is measured for distance.,lands in a pile of sand.,closes a few times.,falls off the beach.,tumbles off the deck.,gold0-orig,pos,unl,unl,unl,unl,He takes a long running jump.,He lands in the sand pit and it\nanetv_MwQTeFD0OKQ,2667,The credits of the clip are shown. A guy,is approaching a weight on a stage.,gets some letters around the wall.,is welding a piece of welding equipment.,stands in front of a wall.,,gold0-orig,pos,unl,unl,unl,n/a,The credits of the clip are shown.,A guy\nanetv_MwQTeFD0OKQ,12047,The credits of the clip is shown. A guy,moves in front of weights.,uses it to pull it off.,stands inside an enclosure full of supplies.,is rubbing her electric shoes with yellow shorts.,cleans a dog's fur with a clipper.,gold1-orig,pos,unl,unl,unl,pos,The credits of the clip is shown.,A guy\nanetv_MwQTeFD0OKQ,2669,A man massages a guy's shoulders. The man,smells something a person holds up in their hands.,interacts and ties while bouncing onto a trainer.,easily knocks the older man in.,sits on the man's back and gestures to the legs holding the weight.,walk down the corridor apparatus.,gold0-orig,pos,unl,unl,unl,unl,A man massages a guy's shoulders.,The man\nanetv_MwQTeFD0OKQ,12049,A male smells something in a person hands while someone touches his shoulders. Guys,lift weights and some celebrate.,\", the man carries the other around while rubbing his hands but get hit to the camera.\",come over to the volunteers shelter next to the little edge where the little kid jumps up.,\"pour the sugar, then pours juice to a vanilla content.\",are shown on a screen.,gold1-orig,pos,unl,unl,unl,unl,A male smells something in a person hands while someone touches his shoulders.,Guys\nanetv_MwQTeFD0OKQ,2671,A guy The audience cheers and claps. A guy,cheers and kisses the weight plates.,spots them playing soccer together.,jumps down the street and lands in the sand.,bows his hands on the mat.,sweeps a boulder sideways with his back to the opponent in a gym.,gold0-orig,pos,unl,unl,unl,unl,A guy The audience cheers and claps.,A guy\nanetv_MwQTeFD0OKQ,2668,A guy is approaching a weight on a stage. A man,massages a guy's shoulders.,walks over his point of struts to the stage.,uses a kick - ball from a machine onto a field below.,crunches it over in his hand.,shows a girl in salsa style.,gold1-orig,pos,unl,unl,unl,unl,A guy is approaching a weight on a stage.,A man\nanetv_MwQTeFD0OKQ,2670,The man smells something a person holds up in their hands. A male,rubs a white powder on his hand and chest.,appears over him and he finally stops to put up his hands.,stands in a chair with a blue cloth.,does a hand stand.,picks up a flower from a chair.,gold0-orig,pos,unl,pos,pos,pos,The man smells something a person holds up in their hands.,A male\nanetv_MwQTeFD0OKQ,12048,A man massages a male. A male,smells something in a person hands while someone touches his shoulders.,lifts his leg with the needle.,runs down without breaking a barbell.,putting pops in on the man's mouth.,takes a worktop and tries to pull the surgeon out of his body.,gold1-orig,unl,unl,unl,unl,unl,A man massages a male.,A male\nanetv_MwQTeFD0OKQ,2672,A guy is benching pressing. A guy,is captured kissing his thigh on a stage with a weight on the floor.,removes the congas off a hand table.,steps and ties his shoe.,drives a bike bike down the lane.,,gold0-reannot,pos,unl,unl,unl,n/a,A guy is benching pressing.,A guy\nlsmdc3007_A_THOUSAND_WORDS-3546,7656,\"Someone stares at someone, then gazes up at the tree. Someone\",storms off then returns with an axe.,turns towards a group of spiders.,waves to herself and rolls up her sleeve.,tosses her flowers to the crowd.,\"looks at the webbing, licking his bloody lips.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone stares at someone, then gazes up at the tree.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3546,7658,\"Someone swings the axe, he hits the trunk and flies through the air and lands in a patch of spiky plants. Lying on the ground someone\",\"pulls down his waistband, revealing a dark bruise.\",cocks a red wand at him.,lets herself push on a back rail while people watch on the side.,plants her arms by his waist and gently clasps her at his back.,can't see the baby attached to him.,gold1-orig,pos,unl,unl,unl,unl,\"Someone swings the axe, he hits the trunk and flies through the air and lands in a patch of spiky plants.\",Lying on the ground someone\nlsmdc0028_The_Crying_Game-63381,18401,He has a cut lip where someone struck him. Someone,prods him on with the gun.,\"is his belt, striking a roman development of his picked off the competition event.\",open it and see the interior of someone's apartment dried with bundles of parchment.,blinks sharply at her.,\"looks at someone, then grins.\",gold0-orig,pos,unl,unl,pos,pos,He has a cut lip where someone struck him.,Someone\nanetv_LLLuBjEVHI8,19379,A teenage boy wearing a white shirt and black track pants is shooting hoops in an outdoor basketball court. There,are a few cones arranged around the court.,is a man who has a body nearly fights to competitors.,is a small shot of the ball and the hoop fighting in the first ring.,are shown the girl without different small dress standing on bottom of a diving board.,taunt the croquet ball as a annabelle wears a dagger walled aimlessly in front of him like arrows.,gold0-orig,pos,unl,unl,unl,unl,A teenage boy wearing a white shirt and black track pants is shooting hoops in an outdoor basketball court.,There\nanetv_LLLuBjEVHI8,19380,There are a few cones arranged around the court. The boy,\"continues running, dribbling and shooting hoops with the basketball.\",\"is playing two drums, trying to hear the voice, but there is another band playing in the background.\",is in a giant art costume and appears to take their turn shot off.,from the white team is waving for the crowd as the kid approaches the young toddler.,,gold0-orig,pos,unl,unl,unl,n/a,There are a few cones arranged around the court.,The boy\nanetv_LLLuBjEVHI8,19381,\"The boy continues running, dribbling and shooting hoops with the basketball. He\",hits a shot and makes a basket and then stops playing.,throws a ball at the pins.,shoots the ball towards the door and then returns again.,flings his legs around and pulls his eye closed.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The boy continues running, dribbling and shooting hoops with the basketball.\",He\nanetv_8ulb1O_5gRs,6144,He begins shooting the gun against a target on a tree. He,continues shooting the gun and showing off his shots in the end.,rides the unicycle and turns around.,removes his arrows with a bow.,\"stands up on a bow stretches, using his stick to jump the jump concepts clear to someone.\",continues torching the grass while blowing his whistle.,gold0-orig,pos,unl,unl,unl,unl,He begins shooting the gun against a target on a tree.,He\nanetv_8ulb1O_5gRs,17117,The man stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below. We,see the drawing from ground level as it is covered with paint.,watch the ladies striking fire at a man in costume.,see the dense title screen.,\"propel him into the water, then only doing another move to.\",,gold0-orig,pos,unl,unl,unl,n/a,The man stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below.,We\nanetv_8ulb1O_5gRs,6143,A man is seen speaking to the camera while holding a paintball gun and aiming it off in the distance. He,begins shooting the gun against a target on a tree.,takes off in a second followed by several shots of him chasing a dart.,speaks into clips of a man shooting the bow and arrow by speaking to the camera.,continues to hit the ball while moving himself around and blowing the water out of his mouth.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera while holding a paintball gun and aiming it off in the distance.,He\nanetv_8ulb1O_5gRs,17119,The man is shooting the target from ground level. The camera lens,is covered with paint as the man shoots it.,has been drawn about the foot of the roof.,is given to masse.,close as it drives into the range.,,gold1-orig,pos,unl,unl,unl,n/a,The man is shooting the target from ground level.,The camera lens\nanetv_8ulb1O_5gRs,17116,A man with a paintball stands on a deck holding a large red paintball gun. The man,stands on the deck and shoots paintball at a stick figure drain on a wood board on the ground below.,hits a series of jump boards and begins running out and behind him while standing next to him.,looks up and shakes his head at passenger.,turns to talks to the camera again.,runs off in the distance moving far backwards and throws in some of the cameras.,gold0-orig,pos,unl,unl,unl,unl,A man with a paintball stands on a deck holding a large red paintball gun.,The man\nanetv_8ulb1O_5gRs,17118,We see the drawing from ground level as it is covered with paint. The man,is shooting the target from ground level.,starts cutting the weeds of the nails.,spots an image of the cat laying next to the hedges.,continues all along the cat's nails and brushes off the big cat before continuing to brush the pad.,does a handstand causing the rowing mechanism.,gold1-orig,pos,unl,unl,unl,unl,We see the drawing from ground level as it is covered with paint.,The man\nlsmdc0008_Fargo-49955,3841,\"After hitting him several times, She yanks someone's belt out of his dangling pants and strangles him with it. Someone\",\"knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt.\",lands at a dead dead in someone's ring.,tears up from her face.,\"squints up at the spider, which head off angrily.\",smiles briefly as she stares at him.,gold0-orig,pos,unl,unl,unl,unl,\"After hitting him several times, She yanks someone's belt out of his dangling pants and strangles him with it.\",Someone\nlsmdc0008_Fargo-49955,3842,\"Someone knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt. His face\",is deeply bruised and cut.,\"falls out from the floor of the building twisting its neck and spinning while he's on a bike, mounted on a thread.\",lies in the grass as someone lifts the needle at his head.,is a spread of flames.,is very small and severe.,gold0-orig,pos,unl,unl,unl,unl,\"Someone knees someone repeatedly, then dumps him onto the floor and starts whipping him with the buckle end of the belt.\",His face\nlsmdc0008_Fargo-49955,3845,\"A door slams off - screen. Someone, briefcase in hand,\",\"gets into his cadillac, slams the door and peels out.\",walks the knife over to her faced king.,\"the guys, dragging a raised horseman door, walk down the street.\",runs out the door.,\"looks closely at someone 'hairy face, looking out an other window.\",gold1-orig,pos,unl,unl,pos,pos,A door slams off - screen.,\"Someone, briefcase in hand,\"\nlsmdc0008_Fargo-49955,3844,Someone is at the kitchen phone. Through the door to the dining room we,see someone picking up an extension.,\"see men lying huddled, drinking.\",see an apartment entrance.,watch him on the couch.,see someone peering at the door.,gold0-orig,pos,unl,unl,unl,pos,Someone is at the kitchen phone.,Through the door to the dining room we\nlsmdc0008_Fargo-49955,3843,His face is deeply bruised and cut. Someone,is at the kitchen phone.,looks around for the locket.,straightens and looks down at someone.,watches him and walks out of the bathroom.,,gold1-reannot,pos,unl,unl,pos,n/a,His face is deeply bruised and cut.,Someone\nanetv_o6lTgyb_AkM,10641,\"She sits in her studio, speaking. She\",\"grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree.\",\"enters beautifully in ballet outfits, spinning and dancing.\",is a black woman and a chinese girl standing behind someone.,changes to a business n icon.,,gold0-orig,pos,pos,pos,pos,n/a,\"She sits in her studio, speaking.\",She\nanetv_o6lTgyb_AkM,10643,She grabs a sponge and dips it into green and blue paint while painting the leaves on the tree. She,\"moves on to grab the paintbrush and dips it into black paint repeatedly, and moves on to paint another tree.\",then walks back to the camera to showing that product should be the wrong way.,stops to rake some wallpaper over demonstrating how to install the descent from the wax.,continues to brush the thread through the wall while she continues talking.,,gold0-orig,pos,unl,unl,unl,n/a,She grabs a sponge and dips it into green and blue paint while painting the leaves on the tree.,She\nanetv_o6lTgyb_AkM,10644,\"With the same paint brush, this time dipping it into green paint, she paints the pines of three. She\",finishes her painting and speaks for a bit.,blow out of her hair to rembrandt whom he'd on how not to blow.,emerges from plastic wrap of paper onto the bed and moves it to the front of the house.,\"halts, cleans the bloody nails and studies the gray.\",picks up the paint using a brush and begins clipping the nails.,gold0-orig,pos,unl,unl,unl,unl,\"With the same paint brush, this time dipping it into green paint, she paints the pines of three.\",She\nanetv_o6lTgyb_AkM,10640,A painter demonstrates various art pieces in her studio. She,\"sits in her studio, speaking.\",pushes her hands on the back of his chair.,shows by little wallpaper and some closing individually.,lifts a triangular position to help as ladders appear.,talks about smiling at the end.,gold1-orig,pos,unl,unl,unl,unl,A painter demonstrates various art pieces in her studio.,She\nanetv_o6lTgyb_AkM,10642,\"She grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree. She\",grabs a sponge and dips it into green and blue paint while painting the leaves on the tree.,points and cuts up the paint.,continues using the paint to paint a fence to the other side and put it onto all inside of the finish square.,continues to brush all along her nails.,and the woman add more paint to the paint block.,gold0-orig,pos,unl,unl,unl,pos,\"She grabs a paintbrush and dips it into black paint repeatedly, as she paints a black tree.\",She\nlsmdc1040_The_Ugly_Truth-8612,17731,\"Tall, thick - set someone follows someone to her office. Sitting at her desk, someone\",\"gives someone a challenging look, picks up a card and the phone, and dials.\",\"pops a pot of water, takes it, and places it in her jacket.\",\"sips a glass from a coffee cup, and sips a glass of milk.\",leans over and faces her sisters with a warm smile.,\"steps past the bullies, picks up the menus, and pops it in her mouth.\",gold0-orig,pos,unl,unl,unl,unl,\"Tall, thick - set someone follows someone to her office.\",\"Sitting at her desk, someone\"\nanetv_s7ajQRC7w9w,3973,She steps onto the board and starts wind surfing. She,holds onto the kite of the wind surf.,moves closer to her dog on the belly of the boat while people wave on cameras.,waves announcer walks viewers to join them.,hits its button two times.,finishes her performance and walks to the top of the platform.,gold0-orig,pos,unl,unl,unl,pos,She steps onto the board and starts wind surfing.,She\nanetv_s7ajQRC7w9w,3972,A woman is holding onto a wind surfboard in the water. She,steps onto the board and starts wind surfing.,\"surfs on the ocean, adding to the water.\",are standing next to a young woman in canoes.,puts it in the water and removes it from the animals.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is holding onto a wind surfboard in the water.,She\nanetv_xbWAmySRE88,1571,\"A lady then grabs weave, a needle and begins to sew in the hair. Once she shows how the sew - in is secured, the finished product is shown and the girl now\",has long curly hair.,gets a contact gel out of a pair of scissors.,tries to remove the lenses.,is able to apply her makeup properly.,,gold0-orig,pos,unl,unl,unl,n/a,\"A lady then grabs weave, a needle and begins to sew in the hair.\",\"Once she shows how the sew - in is secured, the finished product is shown and the girl now\"\nanetv_xbWAmySRE88,1569,\"The video begins with a title page showing that a video of a versatile sew - in is about to be done. First image, the braid pattern\",is shown on the individuals head as some of her hair is left out around the perimeter of her head.,sits on a bun.,man adds carrots and slices clouds around cake.,\"is now displayed, a man wearing a blue wash shirt, a pink leotards.\",,gold0-orig,pos,unl,unl,unl,n/a,The video begins with a title page showing that a video of a versatile sew - in is about to be done.,\"First image, the braid pattern\"\nanetv_xbWAmySRE88,1570,\"First image, the braid pattern is shown on the individuals head as some of her hair is left out around the perimeter of her head. A lady then\",\"grabs weave, a needle and begins to sew in the hair.\",walks her on the sidewalk.,goes across a long static strapping set and removes her hair and puts her arms around in the air.,descends her knees at the end of the braid in the water and fell on her hair.,\"looks down at the woman, who is done as the tutorial shows him talking while the man talks.\",gold0-orig,pos,unl,unl,unl,unl,\"First image, the braid pattern is shown on the individuals head as some of her hair is left out around the perimeter of her head.\",A lady then\nlsmdc1024_Identity_Thief-82498,17931,\"Someone grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck. Someone\",tosses the snake away and shakes her hands.,'s sword glows with its red light in a high white arc.,\"sticks his own hand at someone, and swaggers towards the outer courtyard.\",\"dodges its tentacles, incinerating someone as she steps through the house.\",\"watches, sister's gaze frozen, as someone wiggles and shifts his confused gaze.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck.\",Someone\nlsmdc1024_Identity_Thief-82498,17928,\"The snake watches the flame, then bites into someone's neck. Someone whacks it with a stick, and someone\",drops to the ground.,shoves the boy through a straw.,jabs back in the cell.,makes it into the room.,presses its paw up to cheek.,gold0-orig,pos,unl,unl,unl,unl,\"The snake watches the flame, then bites into someone's neck.\",\"Someone whacks it with a stick, and someone\"\nlsmdc1024_Identity_Thief-82498,17924,He pushes his pants off. Someone,tosses his jeans into the woods.,lowers his head and gives his troubled wounded look.,shows a normally a weapon.,wraps the cord around the robot's neck.,watches from a boat's length outside as the light illuminates the skyline.,gold0-orig,pos,unl,unl,unl,pos,He pushes his pants off.,Someone\nlsmdc1024_Identity_Thief-82498,17930,\"She hits it a few more times, then tosses away the stick. Someone\",\"grabs the snake and tugs at it, as someone pries the reptile's teeth from his neck.\",appears to be seen at the far end of the raft.,takes two long leap down the lane her hands dry.,does a few steps before walking away.,turns and walks out the entire room.,gold1-orig,unl,unl,unl,unl,unl,\"She hits it a few more times, then tosses away the stick.\",Someone\nlsmdc1024_Identity_Thief-82498,17932,\"Someone tosses the snake away and shakes her hands. In the morning, a cargo train\",passes by a rusty disheveled station.,continues to create walls inside the building.,sprints down a street.,shows up for the airport.,,gold0-orig,pos,unl,unl,pos,n/a,Someone tosses the snake away and shakes her hands.,\"In the morning, a cargo train\"\nlsmdc1024_Identity_Thief-82498,17923,He springs up and fumbles with his jeans. He,pushes his pants off.,leaves a store and answers.,taps a buzzer over the dashboard.,puts it down on the table.,\"shuffles back over the rough steps and swings to the rear side of the building, smiling.\",gold0-orig,pos,unl,unl,unl,unl,He springs up and fumbles with his jeans.,He\nlsmdc1024_Identity_Thief-82498,17925,Someone tosses his jeans into the woods. It,drops onto his shoulders.,passes in front of him.,wags his lower toes.,continues through the flames.,fires flashing flashing lights he watch on the back.,gold0-orig,pos,unl,unl,unl,unl,Someone tosses his jeans into the woods.,It\nlsmdc1024_Identity_Thief-82498,17927,The snake tightens around his neck. The snake,\"watches the flame, then bites into someone's neck.\",rips off someone's right throat then stands apart.,\"smashes the cash trunk, leaving the hole in its infantry.\",lays out its tongue and strokes the young serpent.,slithers back toward him.,gold1-orig,pos,unl,unl,unl,pos,The snake tightens around his neck.,The snake\nlsmdc1024_Identity_Thief-82498,17929,\"Someone whacks it with a stick, and someone drops to the ground. She\",\"hits it a few more times, then tosses away the stick.\",delivers her hand to him and fixes it on her stomach.,draws a few feet back toward the boy before drops it onto the table.,slides over to the table.,leaps from the water onto someone and scrambles.,gold0-orig,pos,unl,unl,unl,unl,\"Someone whacks it with a stick, and someone drops to the ground.\",She\nlsmdc1024_Identity_Thief-82498,17922,He glances back at someone as the snake slithers into his pants. He,springs up and fumbles with his jeans.,\"hits him, then bounces him on the ground.\",clutches the locket around someone's neck.,sweeps up his lifeless body.,puts more star on the cake.,gold0-orig,pos,unl,unl,unl,unl,He glances back at someone as the snake slithers into his pants.,He\nlsmdc1024_Identity_Thief-82498,17933,\"In the morning, a cargo train passes by a rusty disheveled station. Someone\",applies makeup while someone lies on a bench in a pair of dirt - covered khakis.,are attacked in a field.,agents swarm through the trees with a cloud of dust.,blanket comes in narrow streets beneath trees.,gets out of the curtained windows.,gold0-reannot,pos,unl,unl,unl,pos,\"In the morning, a cargo train passes by a rusty disheveled station.\",Someone\nlsmdc1024_Identity_Thief-82498,17936,He moves to the ticket booth. He,looks back at someone and paces.,sets the surveillance phone aside.,\"is sitting at a small desk, sipping his coffee.\",hands the vodka bottle to someone.,glances to someone to the audience and cheers back - someone hands him the money the man handed the money.,gold0-reannot,pos,unl,unl,unl,unl,He moves to the ticket booth.,He\nlsmdc1024_Identity_Thief-82498,17934,Someone applies makeup while someone lies on a bench in a pair of dirt - covered khakis. Someone,wakes up and reaches for his neck.,throws rice primed in a bin.,\"glances at a document beside him, discreetly takes off his fedora.\",hurries up to someone.,slows to a stop as he peers down at the young american who narrows his eyes.,gold0-reannot,pos,unl,unl,pos,pos,Someone applies makeup while someone lies on a bench in a pair of dirt - covered khakis.,Someone\nlsmdc1024_Identity_Thief-82498,17921,\"Someone lies on his side next to the fire, and someone snuggles up behind him. She\",pulls her arm away.,hikes around the television station.,reaches down and picks up the hammer.,\"rolls it up behind the two windows, unlocking the door.\",starts pacing with his hands over his own ears.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone lies on his side next to the fire, and someone snuggles up behind him.\",She\nlsmdc1024_Identity_Thief-82498,17935,Someone wakes up and reaches for his neck. Someone,watches him with a smile.,pulls someone back and slams her hand against his stomach.,zips down someone's visor.,is beside us as they stare at each other.,is asleep in his chair.,gold1-reannot,pos,unl,unl,unl,pos,Someone wakes up and reaches for his neck.,Someone\nanetv_0qTzoVjsMpQ,10964,He pokes a hole in the top of the tin foil several times. He,puts that onto the top of the hookah.,reaches a hole in a box and picks it up.,removes his belt and gazes after it.,catches themselves in his hand and ties it along the surface of the automaton.,takes a cigarette out of his mouth.,gold0-orig,pos,unl,unl,unl,pos,He pokes a hole in the top of the tin foil several times.,He\nanetv_0qTzoVjsMpQ,10962,A man fills a hookah with water and sets it on a table. He,puts tobacco in a device and covers it with tin foil.,\"sets the cup down before leans into the cooler water, left it empty, and wipes off.\",takes only yellow spray before trimming the hedge in an ascending and men.,the camera shows a serves lying on the glass.,\"sit, working on the table, then lifts his head with the hand, and holds the scissor through to his hand.\",gold0-orig,pos,unl,unl,unl,unl,A man fills a hookah with water and sets it on a table.,He\nanetv_0qTzoVjsMpQ,10965,He puts that onto the top of the hookah. He,takes a smoke off the hookah and blows the smoke.,finishes welding and piercing the eyes.,uses a paint brush to wipe his face with the brush.,demonstrates how to properly put a fishing pole on the ice.,grabs the towel and places it on the rack.,gold0-orig,pos,unl,unl,unl,unl,He puts that onto the top of the hookah.,He\nanetv_0qTzoVjsMpQ,10963,He puts tobacco in a device and covers it with tin foil. He,pokes a hole in the top of the tin foil several times.,puts the egg in a pan.,unwraps the shirt and shows pictures to the wall while speaking to the camera.,continues playing and talking to the camera.,tightens screws over the sandwich of the paper he peels off the paper.,gold1-orig,pos,unl,unl,unl,unl,He puts tobacco in a device and covers it with tin foil.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1917,2825,Someone notices an ax outside. Now he,carries the ax over his shoulder as someone leads him through the woods.,steps over his spear and finds the poison lying in the ground.,enters past filled pit zombies.,arrives at the town table.,holsters his gun and places the barrel of his waistband downward.,gold0-orig,pos,unl,unl,unl,pos,Someone notices an ax outside.,Now he\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1917,2826,\"Now he carries the ax over his shoulder as someone leads him through the woods. Wearing his sunglasses, someone's new mentor\",stops at a tree and gazes up the towering trunk.,\"walks away, revealing a gold - open case filled with cannons.\",sits in his hammock as he peers through the porthole.,\"leans over someone, demonstrating his new strength to carry the pups back.\",waddles sideways with one foot.,gold0-orig,pos,unl,unl,unl,pos,Now he carries the ax over his shoulder as someone leads him through the woods.,\"Wearing his sunglasses, someone's new mentor\"\nlsmdc3080_THIS_MEANS_WAR-37395,608,It shifts to James Monroe Elementary. Someone,comes out from the school.,rules maximilian's sleeves.,gets her back on the towel and furrows her brow.,watches nervously as someone watches with astonishment.,keeps his gaze downward.,gold0-orig,pos,unl,unl,pos,pos,It shifts to James Monroe Elementary.,Someone\nlsmdc3080_THIS_MEANS_WAR-37395,610,\"At the Smart Consumer offices, someone sits before a toy fire truck. Someone\",gives him a hammer and lets him smash it to pieces.,slips the five - dollar lighter into a mud embossed slot on an asphalt pouch.,\"averts her, a giant aircraft disturbing on her spot.\",maids gingerly from the underground cruiser.,hurries up to the house.,gold0-orig,pos,unl,unl,unl,unl,\"At the Smart Consumer offices, someone sits before a toy fire truck.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37395,613,Someone's ex comes out of her and watches him give someone a hug. Someone,smiles as he returns to his truck.,switches the tape with his fingers.,makes a call and wheels around.,goes up and runs up the street.,\"hugs someone to someone, who turns her face at her parents.\",gold1-orig,pos,unl,unl,unl,unl,Someone's ex comes out of her and watches him give someone a hug.,Someone\nlsmdc3080_THIS_MEANS_WAR-37395,609,Someone comes out from the school. Someone,stands by smiling as someone gives his son a hug.,\"goes into the garden, starting to work on the balcony of a large hallway.\",walks over to a piano.,comes into a hand ride.,is holding someone's hands.,gold1-orig,pos,unl,unl,unl,pos,Someone comes out from the school.,Someone\nlsmdc1027_Les_Miserables-6446,12617,\"Someone turns and walks away. Wearing a troubled frown, someone\",\"stares at the pistol for a moment, then drops it into the sewer.\",turns her blearily off.,sets down his bike steel with a finishing drawing.,watches the two members making a word for her.,watches from a flashback and takes a swig of a human castle.,gold0-orig,pos,unl,unl,unl,pos,Someone turns and walks away.,\"Wearing a troubled frown, someone\"\nlsmdc1027_Les_Miserables-6446,12615,\"Covered in sewerage, someone holds someone onto his shoulder and climbs up steps out of the sewer. Someone\",aims a pistol at him.,takes a step closer to a boy's legs.,\"gently slides back along the walls, propelling himself into a seizing shaft of fells.\",\"turns and scans his office, ending continuing on.\",stares into his adoring eyes.,gold0-orig,pos,unl,unl,unl,pos,\"Covered in sewerage, someone holds someone onto his shoulder and climbs up steps out of the sewer.\",Someone\nlsmdc1027_Les_Miserables-6446,12618,\"Wearing a troubled frown, someone stares at the pistol for a moment, then drops it into the sewer. Someone\",starts to walk away.,\"reaches down towards the mannequin, shutting the door.\",uses it to climb over the broken metal hatch.,\"continues to pound it stuck, as someone reaches the control box.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Wearing a troubled frown, someone stares at the pistol for a moment, then drops it into the sewer.\",Someone\nlsmdc1027_Les_Miserables-6446,12616,Someone aims a pistol at him. Someone,\"turns to someone, who holds the pistol steady.\",'s body is motionless and he looks back at someone.,swarm swiftly along the desert.,grabs someone and drags the inspector around.,puts his hands on someone's face.,gold0-orig,pos,unl,unl,unl,pos,Someone aims a pistol at him.,Someone\nanetv_xXj-oQm-NbE,1088,A man in a tie and suit is standing in front of a building talking. He then,stands next to a woman talking.,begins using the tool to match a small brush.,demonstrates how to weld it using metal with a tool.,sits on a beam and begins to weld.,begins skating through a city and parks on a sunny road.,gold0-orig,pos,unl,unl,unl,unl,A man in a tie and suit is standing in front of a building talking.,He then\nanetv_xXj-oQm-NbE,1089,He then stands next to a woman talking. The woman,starts to wrap a small blue box in wrapping paper.,puts shampoo on the woman's back.,walks onto the soda table and talks to the camera.,puts her shoe in and drops her t hunter outfit.,points at the pool.,gold0-orig,pos,unl,unl,pos,pos,He then stands next to a woman talking.,The woman\nanetv_xXj-oQm-NbE,12075,We see a decorative image then see a man talking outside a house. We,see title screens and the man in various rooms in the house.,see a man run down a track.,see a man in baseball gear walking on the field.,see a dilapidated carving.,see the picture of the child.,gold0-orig,pos,unl,unl,unl,pos,We see a decorative image then see a man talking outside a house.,We\nanetv_xXj-oQm-NbE,1090,The woman starts to wrap a small blue box in wrapping paper. A man holds up a wooden block and the other man,carves something in it.,closes in with him.,puts it on the wrapping piece.,explains how to get it properly for the company.,removes the jack from the bar.,gold1-orig,pos,unl,unl,unl,unl,The woman starts to wrap a small blue box in wrapping paper.,A man holds up a wooden block and the other man\nanetv_xXj-oQm-NbE,12077,We see the man and a lady girt warp a box with dollar bill wrapping paper. A title screen appears and we,see the man outside talking.,see kids knitting fencing.,see the lady walk into a blue screen.,see a graphic with red letters.,,gold0-reannot,pos,unl,unl,pos,n/a,We see the man and a lady girt warp a box with dollar bill wrapping paper.,A title screen appears and we\nanetv_xXj-oQm-NbE,12079,We see novelty items such as a sword and we see a Texas shaped cutting board as the man pretends to cut it. the man talks in the woods and we,see an ending title screen.,\"see a man hand duel the boy and father, then throw the dog behind him.\",see a hole in the seam.,see the lady pick up a tire from the table and stick it to the ground.,see the opening screen for a pet race.,gold1-reannot,pos,unl,unl,pos,pos,We see novelty items such as a sword and we see a Texas shaped cutting board as the man pretends to cut it.,the man talks in the woods and we\nanetv_xXj-oQm-NbE,12078,A title screen appears and we see the man outside talking. We see novelty items such as a sword and we,see a texas shaped cutting board as the man pretends to cut it.,see two men in white alley going shot and other throwing their arrows to see away in the distance.,see the boy running and a man in blue yard attempt to draw the dust from his shoes.,\"see shots of oak basil, seagulls, and onions.\",see a picture of the group of kids wearing young and welding gear.,gold0-reannot,pos,unl,unl,unl,unl,A title screen appears and we see the man outside talking.,We see novelty items such as a sword and we\nanetv_xXj-oQm-NbE,12076,We see title screens and the man in various rooms in the house. The man,stands outside of the house talking.,smiles and shakes his hips round.,leans forward on the steps and then continues exercising.,wipes his hands while still putting his hands onto his coat.,turns over their face while some man is shown using the axe.,gold0-reannot,pos,unl,unl,unl,unl,We see title screens and the man in various rooms in the house.,The man\nanetv_xOmfJGR5fBw,5514,She begins cutting the cat's claws while the cat squirms around a bit. She,continues cutting the claws while speaking to the camera.,moves along on the ground as well as pushing begins pushing the cat away and walking up the cat.,cuts one of the cat's claws then pets the dog's claws as she shakes to the camera.,stomps back a few times and continues clipping the cat's claws.,uses the tool to cut the cat's claws.,gold0-orig,pos,unl,unl,unl,pos,She begins cutting the cat's claws while the cat squirms around a bit.,She\nanetv_xOmfJGR5fBw,7603,We see a lady sitting holding a cat and talking. The lady,shows us nail clippers.,blows smoke rings outside the kitchen.,begins cutting the cat's claws with the right hand.,starts clipping the cats nails.,,gold0-orig,pos,unl,pos,pos,n/a,We see a lady sitting holding a cat and talking.,The lady\nanetv_xOmfJGR5fBw,7606,The lady shows us a clipped claw. We,see a paw's claw up close.,a line of corn field a dancer approaches her.,\"it to the paper, she turns when someone started to ads her other side and xs out the contents of it.\",goes to the same view of the roof and its rear edge of the roof.,\"wearing a brush a third time, she takes out some green toothpaste and shakes it from another brush.\",gold0-orig,pos,unl,unl,unl,unl,The lady shows us a clipped claw.,We\nanetv_xOmfJGR5fBw,5513,A woman is seen holding on a cat on a coach and holding up a pair of nail clippers. She,begins cutting the cat's claws while the cat squirms around a bit.,lays shoes on and continues brushing the shoes.,continues moving her around and demonstrating how to properly dance and ends by waving them all around while she continues playing.,grabs a cat from head to head.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen holding on a cat on a coach and holding up a pair of nail clippers.,She\nanetv_xOmfJGR5fBw,7605,The lady clips her cats claws. The lady,shows us a clipped claw.,puts her paw again in the blue lotion.,stops and licks her face.,continues hula hoop with her hips.,pat the cat on the other leg.,gold0-orig,pos,unl,unl,unl,pos,The lady clips her cats claws.,The lady\nanetv_xOmfJGR5fBw,7608,The lady finishes and talks to the camera. We,see the ending screen with video clips.,focus on the record and see an ending title screen.,see men stretching and do paper while one guy and woman jump rope on the rope.,patch is shown in the screen and we see the lady in the other portraits.,in the distance and we see the lady return with a dog.,gold1-orig,pos,unl,unl,pos,pos,The lady finishes and talks to the camera.,We\nanetv_xOmfJGR5fBw,7607,We see a paw's claw up close. The lady,finishes and talks to the camera.,cleans the brown flowerbed.,is laying down on the white folds.,then then empties the dog on the ground.,applies product to the face and applies it to the face of the man before then applying it behind a face.,gold1-reannot,pos,unl,unl,unl,unl,We see a paw's claw up close.,The lady\nanetv_xOmfJGR5fBw,7604,The lady shows us nail clippers. The lady,clips her cats claws.,covers her mouth with polish and paints the lady's nails until she finishes cutting up.,gives designs for the pumpkin of food.,shows a nail polish that sprays our blue product.,shaves the ladies nails before tattooing.,gold0-reannot,pos,unl,unl,unl,unl,The lady shows us nail clippers.,The lady\nanetv_sCj-ME5RkLY,1684,People are paying volleyball on a court. A girl,falls down going for the ball.,jumps onto a small square.,is holding a medal on the street.,hits a ball on a court.,stands on the sidelines.,gold0-orig,pos,unl,unl,unl,unl,People are paying volleyball on a court.,A girl\nanetv_THOLslLjRqs,3577,\"The woman stops painting and talks, then she continues painting. Two kids\",stands on front the woman.,are talking about the grooming services.,are on the dogs side of the large fence and brushing her nails while the people are laying on their shoulders in images.,drive in a machine getting very involved in a blade painting.,writes something on a cake.,gold0-orig,pos,unl,unl,unl,unl,\"The woman stops painting and talks, then she continues painting.\",Two kids\nanetv_THOLslLjRqs,18256,A woman is painting a drawer orange. She,dips the paint brush into a paint can and continues painting.,is talking outside of a beer bottle.,has some point to the people on how to look at her.,are laying on the blue tiles.,paint chop across it.,gold0-orig,pos,unl,unl,unl,unl,A woman is painting a drawer orange.,She\nanetv_THOLslLjRqs,18257,She dips the paint brush into a paint can and continues painting. Two kids,are watching her in front of her.,are shown painting the nail in the same location.,gather in the house before the camera is smiling.,walk up and down a hose along the side.,switch their hands down.,gold0-reannot,pos,unl,unl,unl,unl,She dips the paint brush into a paint can and continues painting.,Two kids\nlsmdc3030_GROWN_UPS-14022,5220,They playfully fight over in a churning motion. They,turn their chairs away.,\"scramble over their heads, grabbing bottles of high - colored debris.\",have been board - diving in a pits warming pool.,spot the demonic creature with their weapons.,lad appears at the top of the gurgling pool.,gold1-orig,pos,unl,unl,unl,unl,They playfully fight over in a churning motion.,They\nlsmdc3030_GROWN_UPS-14022,5215,\"Later, someone, someone, someone, and someone sit in chairs watching as someone leans over her car to fix it. They\",ogle someone's long legs and butt.,locks someone's seat down to the attendant photograph.,are put in the office.,kiss the female alien's body out in front of the tank.,moves away from the wall and finds someone baking in a cup.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone, someone, someone, and someone sit in chairs watching as someone leans over her car to fix it.\",They\nlsmdc3030_GROWN_UPS-14022,5219,Someone watches flapping in the breeze. They playfully,fight over in a churning motion.,crash into each other while fondling their backs.,toss through the champagne.,slide the other in.,grab the cloth of the wrestle.,gold1-orig,pos,unl,unl,pos,pos,Someone watches flapping in the breeze.,They playfully\nlsmdc3030_GROWN_UPS-14022,5217,\"Using pliers, she removes a lid out. His hair\",blows backwards and forward.,\"catches in place, adjusting his hair.\",is put inside his head.,is now close to the mask.,,gold1-orig,pos,unl,unl,pos,n/a,\"Using pliers, she removes a lid out.\",His hair\nlsmdc3030_GROWN_UPS-14022,5216,\"She dons her glasses and peers under the hood. Using pliers, she\",removes a lid out.,lies on her back.,flings its brush past her.,looks into the mirror.,\"aims someone at someone, who squints around from a nearby window.\",gold1-reannot,unl,unl,unl,unl,unl,She dons her glasses and peers under the hood.,\"Using pliers, she\"\nlsmdc3030_GROWN_UPS-14022,5214,\"Someone and someone watch from inside someone's car. Later, someone, someone, someone, and someone\",sit in chairs watching as someone leans over her car to fix it.,pull off the freeway through a huge waterfall.,walk down the overturned police station.,walk along a corridor in a middle - class tiled room.,haul the kids to the airport and exit the alley.,gold0-reannot,pos,unl,unl,unl,unl,Someone and someone watch from inside someone's car.,\"Later, someone, someone, someone, and someone\"\nanetv_I0yNAIWHcQQ,599,2 girls are sitting and swinging on the same swing. The camera pans,to show the rest of the playground.,goes to people playing as the toddler joins her.,to end with the ending camera.,\"left, but immediately stop.\",,gold0-orig,pos,unl,unl,unl,n/a,2 girls are sitting and swinging on the same swing.,The camera pans\nanetv_I0yNAIWHcQQ,601,Another girls talks into the camera. The camera,pans back to the 2 girls swinging.,focuses all on another woman's information.,focuses on people on the screen.,pans up to show girls watching their performance as they swim.,,gold0-orig,pos,unl,unl,unl,n/a,Another girls talks into the camera.,The camera\nanetv_I0yNAIWHcQQ,9124,A woman is swinging on a swing set. A woman,holding the camera smiles.,is in the park watches.,surfs on the bars.,is swinging around and twirling it.,is sitting down playing the bagpipes.,gold1-orig,pos,unl,unl,unl,pos,A woman is swinging on a swing set.,A woman\nanetv_I0yNAIWHcQQ,9125,A woman holding the camera smiles. Another person,is standing next to her.,watches from behind an open car and the women poke the dogs out.,helps sister flip a cookie in her playground.,is seen standing in a stable with a large dog.,,gold0-reannot,pos,unl,unl,pos,n/a,A woman holding the camera smiles.,Another person\nanetv_-wFNUGYf298,16418,A young adult male punches and kicks a suspended punching bag. The young male then,starts to move around the punching bag while still punching and kicking it.,hurries into his arms and tries to walk up.,slides back forward on the swing and spins.,falls to his side and tackles the man on the ground.,flips the skateboard over the bar and knocks over it over.,gold0-orig,pos,unl,unl,unl,unl,A young adult male punches and kicks a suspended punching bag.,The young male then\nanetv_-wFNUGYf298,16419,The young male then starts to move around the punching bag while still punching and kicking it. The young male then,walks away while removing his gloves.,grabs the frame and begins performing a squat routine on the floor.,stops to hit the ball back and fourth against another wall while the man aims again.,jumps into the lift and spins around.,comes back and then gets up and walks away.,gold1-orig,pos,unl,unl,unl,pos,The young male then starts to move around the punching bag while still punching and kicking it.,The young male then\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60059,19126,People wake with a start. People,have been sleeping on someone's bed.,are standing in the large room.,start snowboarding down a hill.,pull a fish from the shore.,wave their hands in the air.,gold0-orig,pos,unl,unl,unl,pos,People wake with a start.,People\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10987,\"Hearing someone cross the office, he darts for a fire exit, setting off the alarm. He\",closes the door and turns back.,\"shoves someone behind his desk, then jogs up to them.\",marches past someone and marches him out of the window.,hangs his head as his hostages shove past.,takes two more steps and crosses into a kitchen.,gold1-orig,pos,unl,unl,unl,unl,\"Hearing someone cross the office, he darts for a fire exit, setting off the alarm.\",He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10988,He closes the door and turns back. He,taps the sign on the door.,opens a glass cabinet.,remains at his feet.,grabs it and looks him from the closet.,turns off the lamp.,gold0-orig,pos,unl,unl,unl,unl,He closes the door and turns back.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10990,The crowd disperses but someone remains. She,watches him head off.,\"dangles out back over the launcher stands, his mouth dangling at the sides.\",\"tries to step away, then slowly bows his head.\",fails at this moment as he struggles and stands hastily.,comes to a decision.,gold1-orig,pos,unl,unl,unl,pos,The crowd disperses but someone remains.,She\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10989,He taps the sign on the door. He,takes a wildlife book from a shelf.,nods sadly as someone drives.,\"stare at him, soft - delighted.\",brings the phone to his ear and presses a button on an ironing handle.,,gold0-orig,unl,unl,unl,unl,n/a,He taps the sign on the door.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10992,A person with someone custome kisses a nun. He,\"heads over to someone, who wears a black wig and holds a cigarette in a long.\",\"grabs the mended bird, and slowly forward.\",puts soap on a bucket.,reaches for the cover and runs out as the tire rolls slowly off the vehicle.,demonstrates and steps on the legs.,gold1-reannot,pos,unl,unl,unl,unl,A person with someone custome kisses a nun.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73377,10991,She watches him head off. He,sticks some fake fangs in.,tucks his ear to someone's neck and smiles to herself.,slows as he searches men getting out of his car.,flings both arms around him.,picks her up and turns off.,gold1-reannot,pos,unl,unl,unl,unl,She watches him head off.,He\nanetv_aVJRaXUjsEE,6842,\"The other man with him throws a ball across the table, too. Two other men stand on the far right side of the beer pong table, and one of the men reaches to grab the cup where the ball fell into, and the other man\",bends down to catch a ball that has fallen on the floor.,in the ball hits the ball with his paddle then gets it in place.,both bows and slams it onto the table.,continue playing with him and a scores!,,gold0-orig,pos,unl,unl,pos,n/a,\"The other man with him throws a ball across the table, too.\",\"Two other men stand on the far right side of the beer pong table, and one of the men reaches to grab the cup where the ball fell into, and the other man\"\nanetv_aVJRaXUjsEE,6841,\"One of the men throws a beer pong ball across the table, into a cup. The other man with him\",\"throws a ball across the table, too.\",takes the ball in the pins and hits it across the ring knocking the balls into a bowl.,is up on the table.,throws off a piece of paper to shoot.,drinks from another whiskey bottle and holds the crowd.,gold0-orig,pos,unl,unl,unl,pos,\"One of the men throws a beer pong ball across the table, into a cup.\",The other man with him\nanetv_aVJRaXUjsEE,6840,Two men stand on the far left of a beer pong table. One of the men,\"throws a beer pong ball across the table, into a cup.\",holds up two hands in the red tam against the side in front of them.,takes the cup in the floor.,plays then throws a hit that's five to every left of the floor.,plays ping pong on the ice.,gold0-orig,pos,unl,unl,unl,unl,Two men stand on the far left of a beer pong table.,One of the men\nanetv_DTprdtsGCts,9252,A large rock wall is shown. The man,continues playing the instrument.,performs to move around the yard on a park with pads on the bottom.,is seen cooking on a stage until a set of blocks is shown.,\"picks up a black - cloth statuette and removes his dressing sandals, then returns the plaster to the wall.\",points to a lot on the same board.,gold1-orig,pos,unl,unl,unl,unl,A large rock wall is shown.,The man\nanetv_DTprdtsGCts,9248,Pipes are being shown on a rock. A man,is walking on a trail.,is seen playing the drums then begin playing the drums.,is kneeling down behind the drums.,gets up from his chair and starts playing the harmonica.,appears in the lake interviewed.,gold1-orig,pos,unl,unl,unl,pos,Pipes are being shown on a rock.,A man\nanetv_DTprdtsGCts,9251,A man sits on top of a rock. A man,starts playing an instrument.,puts his hands on the horse.,holds up the microphone.,is working behind a boat.,walks to a trailer on the ground.,gold1-orig,pos,unl,unl,unl,unl,A man sits on top of a rock.,A man\nanetv_DTprdtsGCts,9249,A large structure behind a fence is shown. A boat,is in the water surrounding a rock.,is around the four locked with a stick.,is being pulled above an inflated boat.,snowmobiles the basin as a person paddles.,is shown with the explosion a few seconds.,gold0-orig,pos,unl,unl,unl,unl,A large structure behind a fence is shown.,A boat\nanetv_DTprdtsGCts,9250,A boat is in the water surrounding a rock. A man,sits on top of a rock.,goes water skis near the water.,lifts the feet out of the machine.,is pulled by a fish of water.,rides in front sail water surfing.,gold0-reannot,pos,unl,unl,unl,unl,A boat is in the water surrounding a rock.,A man\nanetv_GQdkuWJGYFg,18466,We see a lady talking and standing in a kitchen. The lady waves to the camera and we,see the title screen.,see the cameraman outside.,see them shoveling the sidewalk.,see colorful title screens.,see the lady washing dishes.,gold1-orig,pos,unl,unl,pos,pos,We see a lady talking and standing in a kitchen.,The lady waves to the camera and we\nanetv_GQdkuWJGYFg,6057,She puts strawberries in to a glass. She,adds juice to it.,picks them up and ushers her into the bathroom.,fills the glass with food.,holds her up and looks around.,adds juice into a glass and drinks it over a box.,gold0-orig,pos,unl,unl,unl,pos,She puts strawberries in to a glass.,She\nanetv_GQdkuWJGYFg,18467,The lady waves to the camera and we see the title screen. The lady talks and we,see her add strawberries to a glass.,see a girl taking turns and scissors on circles.,see the ending screen with a closing intro.,see credits wakeboarding and another screen.,see the lady and the baby jumping.,gold0-orig,pos,unl,unl,unl,unl,The lady waves to the camera and we see the title screen.,The lady talks and we\nanetv_GQdkuWJGYFg,18469,\"The lady juices a lemon, stirs it and pours the lemon juicer over the strawberries. The lady\",talks and drinks the juice from the glass.,demonstrates the items in the beginning of the pot.,\"pours the mixture into a pan, then pours syrup into the cinnamon bowl.\",tosses the salad hard.,puts liquid into a seat while shows the ingredients he tastes from the pan.,gold0-orig,pos,unl,unl,unl,unl,\"The lady juices a lemon, stirs it and pours the lemon juicer over the strawberries.\",The lady\nanetv_GQdkuWJGYFg,18468,The lady talks and we see her add strawberries to a glass. The lady,\"juices a lemon, stirs it and pours the lemon juicer over the strawberries.\",holds her finger up then rubs in her eye.,picks up a container and eats it.,adds dry ingredients to the bowl.,,gold0-orig,pos,unl,unl,pos,n/a,The lady talks and we see her add strawberries to a glass.,The lady\nanetv_GQdkuWJGYFg,18471,\"The lady throws her arms in the air, and points to the corner before waving. The title screen re - appears and we\",see the lady speak with a video in the upper right corner.,see two ladies holding an ice cream cone.,see a lady bouncing up violently and running out of the city.,see a lady in a black shirt and black hat.,,gold1-orig,pos,unl,unl,pos,n/a,\"The lady throws her arms in the air, and points to the corner before waving.\",The title screen re - appears and we\nanetv_GQdkuWJGYFg,6056,A woman is standing in a kitchen. She,puts strawberries in to a glass.,begins to make pasta in a sink.,is holding a drink of coffee.,is holding a knife on a table.,,gold1-reannot,pos,unl,pos,pos,n/a,A woman is standing in a kitchen.,She\nanetv_GQdkuWJGYFg,18470,The lady talks and drinks the juice from the glass. The lady,\"throws her arms in the air, and points to the corner before waving.\",squeezes lemons and adds jaw to the bowl.,sprays items and pours them into a martini glass with ice.,mixes lemonade in two glasses and then places it on her lips and dumps them several cups on the tent table.,shakes her bottle of the cup in the end.,gold1-reannot,pos,unl,unl,unl,unl,The lady talks and drinks the juice from the glass.,The lady\nanetv_o6Xr1PiL-Jg,5590,\"The woman attempts to rake leaves, but then she falls and gets back up holding the rake and a man takes it from her. Then she walks away and comes back again and he\",rakes the leaves on top of her.,begins to align it back into the case.,stops to talk to the camera.,throws the baby back on camera.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The woman attempts to rake leaves, but then she falls and gets back up holding the rake and a man takes it from her.\",Then she walks away and comes back again and he\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14912,\"Someone is riding his horse through the woods, a picture of elegance in his top hat and frock coat. Spying someone, he\",\"brings his horse to a halt, never once taking his eyes off her.\",dumps a pile of rucksack onto the observatory.,whispers in his ear.,watches the city from below.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone is riding his horse through the woods, a picture of elegance in his top hat and frock coat.\",\"Spying someone, he\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14908,Someone makes no effort to make any further inquiries. He,strides slowly and pointedly over to the window.,notices a pretty hobbit.,\"crashes through the fleeing teens, which smashes into someone's car, sending him reeling.\",stands up to run to the roof window.,rests his hand on the washroom's metal soldering display and reads.,gold1-orig,pos,unl,unl,pos,pos,Someone makes no effort to make any further inquiries.,He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14915,They set off down the avenue of trees at a trot. Someone,watches them not quite knowing what to make of the encounter.,\"stands on a bridge, watching the man shoot.\",notices the commander staring at the unmoving pup.,steps up to a fog - mounted lake and flies through.,,gold0-orig,pos,unl,unl,unl,n/a,They set off down the avenue of trees at a trot.,Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14909,\"It's a bright, sunny day. The wooded green fields of the English countryside\",stretch out to the horizon.,seems to stretch out as he runs toward the moonlit countryside.,are drawn off to one side.,is filled with colorful balloons.,are carried by before the funeral.,gold0-orig,pos,unl,unl,unl,unl,\"It's a bright, sunny day.\",The wooded green fields of the English countryside\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14910,\"Someone wanders alone, taking in the sumptuous view. She\",idly pats the trunk of a large tree as she passes by.,is gliding across the table with her sister.,pass down a narrow archway leading to an early apartment for an outdoor party.,stretches in his hand out to someone.,takes the glass from him.,gold0-orig,pos,unl,unl,unl,unl,\"Someone wanders alone, taking in the sumptuous view.\",She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14914,\"Looking awkward, someone kicks his horse on. They\",set off down the avenue of trees at a trot.,\"the ropes, someone and her companions stare at someone, who walks barefoot along a circular platform, becoming visible in a reflection.\",\"walk up a couple of steps, side by side.\",walk along a beach.,gaze into the cabin.,gold0-orig,pos,unl,pos,pos,pos,\"Looking awkward, someone kicks his horse on.\",They\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14916,\"Someone watches them not quite knowing what to make of the encounter. Later, Fitzwilliam\",sits with someone as she plays the piano.,is in the storeroom with some of the timers.,closes his study while someone is still in her dressing gown.,hangs s a archbishop's suited.,is heading down a long corridor at the front entrance.,gold1-reannot,pos,unl,unl,unl,unl,Someone watches them not quite knowing what to make of the encounter.,\"Later, Fitzwilliam\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14911,She idly pats the trunk of a large tree as she passes by. She,takes her time staring up into the branches that shield her from the glare of the sun.,sits in a chair.,stops someone watching her.,pats him affectionately and stands.,walks the pug mower over the yard.,gold0-reannot,pos,unl,unl,unl,unl,She idly pats the trunk of a large tree as she passes by.,She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14917,\"In an adjoining room, someone is listening. People\",are sitting in a sofa near her.,is watching and watching him.,regards her with a big grin.,walk on unused household.,is suddenly eager to hear him lie playing.,gold0-reannot,pos,unl,unl,unl,unl,\"In an adjoining room, someone is listening.\",People\nlsmdc1029_Pride_And_Prejudice_Disk_One-83906,14913,\"Nonchalantly crossing her arms in front of her, she stares up defiantly at someone. Looking awkward, someone\",kicks his horse on.,glances down at her younger brother and refuses.,turns to the black man to greet him.,steps toward the bodhi tree.,turns to face him.,gold0-reannot,pos,unl,unl,unl,unl,\"Nonchalantly crossing her arms in front of her, she stares up defiantly at someone.\",\"Looking awkward, someone\"\nlsmdc3079_THINK_LIKE_A_MAN-36936,10282,\"He frowns and someone stifles a smile. Taking the ring from its box, he\",slides it onto someone's finger.,\"plucks it into the note then turns around to someone, tentatively.\",opens his diary and reads a paper bundle of paper.,peeks into the pocket in her dress.,\"puts it into his pants pocket, and turns.\",gold1-orig,pos,unl,unl,unl,pos,He frowns and someone stifles a smile.,\"Taking the ring from its box, he\"\nlsmdc3079_THINK_LIKE_A_MAN-36936,10285,Now Sonia and someone enter the cafe during another open mic event. Sonia,sees someone taking the stage.,\"waits for his maid, showing someone again.\",someone behind someone an who sits leaning against his desk.,reads someone's letter as he sits.,,gold0-orig,pos,unl,unl,pos,n/a,Now Sonia and someone enter the cafe during another open mic event.,Sonia\nlsmdc3079_THINK_LIKE_A_MAN-36936,10284,The three of them watch as the engaged couple kisses. Now Sonia and someone,enter the cafe during another open mic event.,play phone number three.,are hit in the head with the other team.,strut into space.,,gold1-orig,pos,unl,unl,unl,n/a,The three of them watch as the engaged couple kisses.,Now Sonia and someone\nlsmdc3079_THINK_LIKE_A_MAN-36936,10283,\"Taking the ring from its box, he slides it onto someone's finger. Someone\",lifts his glistening eyes to hers.,\"beats a grid of a few letters on the gleaming wooden walls, then steps forward to find someone with a ball.\",finds someone at the sight of her wife on the bed.,guides someone through the great stone gate.,shifts his gaze thoughtfully.,gold1-orig,pos,unl,unl,unl,pos,\"Taking the ring from its box, he slides it onto someone's finger.\",Someone\nanetv_1BWF1U1dJ_w,8524,\"A large platter of prepared sandwiches displays. A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients\",include rolls and lunch meat.,are scattered next a drains.,needed to assemble the cranberry cup.,are done and almost blends them up.,prepares and a timer is shown.,gold0-orig,pos,unl,unl,unl,unl,A large platter of prepared sandwiches displays.,\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients\"\nanetv_1BWF1U1dJ_w,8525,\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients include rolls and lunch meat. A person\",is then seen putting a sandwich of cheese and meat together on white bread rolls with lettuce on a counter top.,adds various eggs with a pitcher and some cheese then places it on the table and brings it.,begins mixing the ingredients into a smart bowl with butter glass.,kicks chopsticks out of the oven dough and cuts them.,,gold0-orig,pos,unl,unl,unl,n/a,\"A persons hands is seen throwing different sandwich making ingredients into a shopping cart inside of a grocery store, the ingredients include rolls and lunch meat.\",A person\nanetv_57cM1GcKktw,14883,A heavy man in a blue shirt is playing the bag pipes. He,blows into the pipe while making the notes with his fingers.,\"gets up, looks down at his phone and sits on the next bed.\",continues pulling on one drum after another.,starts playing another drum.,,gold0-orig,pos,unl,unl,pos,n/a,A heavy man in a blue shirt is playing the bag pipes.,He\nanetv_57cM1GcKktw,14885,He adjusts the bag pipe and continues to play. He,finishes his song and reaches to turn off the camera.,puts the shoe down and starts laying it down.,is pats the back of the car.,pauses and looks up at the shimmering birds taking off two.,plays while another man walks around it.,gold0-orig,pos,unl,unl,unl,unl,He adjusts the bag pipe and continues to play.,He\nanetv_57cM1GcKktw,14884,He slightly dances as he plays. He,adjusts the bag pipe and continues to play.,eyes someone as the goats eyes start to eat.,\"freezes, holding his mouth open, and instantly, as it turns.\",pats his fresh head.,slams one into a fireplace.,gold0-reannot,pos,unl,unl,unl,unl,He slightly dances as he plays.,He\nlsmdc3058_RUBY_SPARKS-28521,717,Someone covers her face with her hands and glances aside. Someone,adds a page to the typewriter.,slaps it with shock and goes on.,eyes her son's lap.,eyes the receiver on her phone.,taps the needle on one knee.,gold0-orig,pos,unl,pos,pos,pos,Someone covers her face with her hands and glances aside.,Someone\nlsmdc3070_THE_CALL-32832,7253,\"Frozen in place, his frenzied gaze softens on the trunk. Holding her headset, someone\",\"shifts her wide, frantic eyes to the gps locator screen.\",sits and places his hands on his hips.,holds the surfboard tent home to its tail.,spots the prisoner elder father.,steps out of the ring and peers out his window at someone riding along the sidewalk with a strange expression.,gold0-orig,pos,unl,unl,unl,pos,\"Frozen in place, his frenzied gaze softens on the trunk.\",\"Holding her headset, someone\"\nlsmdc3070_THE_CALL-32832,7255,\"From overhead, we narrow in on the parking lot. Now, two squad cars\",speed toward the abandoned sedan and screech to a halt.,walk along a busy road.,arrive at the end of a carousel.,emerge into the hydraulic park.,,gold0-orig,pos,unl,unl,pos,n/a,\"From overhead, we narrow in on the parking lot.\",\"Now, two squad cars\"\nlsmdc3070_THE_CALL-32832,7254,\"Holding her headset, someone shifts her wide, frantic eyes to the gps locator screen. From overhead, we\",narrow in on the parking lot.,find someone writing on a platform.,drift close to the whispered cross.,watch the sleek aircraft still masse behind them.,zoom in on the elephant's cell display.,gold0-orig,pos,unl,unl,unl,unl,\"Holding her headset, someone shifts her wide, frantic eyes to the gps locator screen.\",\"From overhead, we\"\nlsmdc3070_THE_CALL-32832,7244,The kidnapper bashes the driver's head and stands glaring at the motionless body. The enraged man,\"starts off, then turns as the helpless driver crawls away.\",emerges with his twitching stick and aims at a man in shorts.,pulls the shorthaired box from a shelf then wheels himself around to the watch.,looms over against the crates and the rear passenger door opens.,,gold0-orig,pos,unl,unl,pos,n/a,The kidnapper bashes the driver's head and stands glaring at the motionless body.,The enraged man\nlsmdc3070_THE_CALL-32832,7248,They fall from his trembling hand. He,shifts an anxious gaze between his trunk and the body.,takes a sip then shoves it into her mouth.,touches the scar on the face of his temple.,tries to pull off the trunk.,,gold0-orig,pos,unl,unl,unl,n/a,They fall from his trembling hand.,He\nlsmdc3070_THE_CALL-32832,7256,\"Now, two squad cars speed toward the abandoned sedan and screech to a halt. With their guns aimed, the officers\",rush toward the sedan.,rush down the street and walk with agents.,aim their guns at the recruits.,aim the pistol at them.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, two squad cars speed toward the abandoned sedan and screech to a halt.\",\"With their guns aimed, the officers\"\nlsmdc3070_THE_CALL-32832,7247,The kidnapper removes a handful of glass shards from his back pocket. They,fall from his trembling hand.,\"stick it in its mouth, screws it in one hand.\",\"fend off the alarm gryffindors, who shakes their fists together.\",rip off the rack.,,gold0-orig,pos,unl,unl,unl,n/a,The kidnapper removes a handful of glass shards from his back pocket.,They\nlsmdc3070_THE_CALL-32832,7251,The killer faces the sedan with his mouth hanging open. The terrified teen,keeps her eyes on the roof.,returns a professional feed.,tries a long - focus lens.,falls down with his slides closed.,,gold0-orig,pos,unl,unl,unl,n/a,The killer faces the sedan with his mouth hanging open.,The terrified teen\nlsmdc3070_THE_CALL-32832,7252,\"The terrified teen keeps her eyes on the roof. Frozen in place, his frenzied gaze\",softens on the trunk.,finds two supply agents from her bottom.,takes back at the cross's mangled springing.,\"sweeps towards her, casting long shadows on the ground.\",slides around the box with the slip.,gold1-reannot,pos,unl,unl,unl,unl,The terrified teen keeps her eyes on the roof.,\"Frozen in place, his frenzied gaze\"\nlsmdc3070_THE_CALL-32832,7245,\"The enraged man starts off, then turns as the helpless driver crawls away. Backing away, he\",drops the shovel and turns.,glances down at their dolphins.,dismounts and manages a puzzled look.,cautiously hooks a knife on his elbow again.,sees someone dropping a towel.,gold0-reannot,pos,unl,unl,unl,pos,\"The enraged man starts off, then turns as the helpless driver crawls away.\",\"Backing away, he\"\nlsmdc3070_THE_CALL-32832,7250,\"Ripping off his blood - stained shirt, he wipes blood from his undershirt and tosses it down. The killer\",faces the sedan with his mouth hanging open.,parts his bloody nose.,lies on his stomach and swallows.,drops someone's luggage in front of someone.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Ripping off his blood - stained shirt, he wipes blood from his undershirt and tosses it down.\",The killer\nlsmdc3070_THE_CALL-32832,7246,\"Backing away, he drops the shovel and turns. The kidnapper\",removes a handful of glass shards from his back pocket.,\"takes a launcher and goes, shattering all of its boxes.\",aims the gun at a man hustling him role out of their way.,gets up on its roof and reaches out.,pulling on the road which we have driven up with them parks their bicycles.,gold0-reannot,pos,unl,unl,unl,unl,\"Backing away, he drops the shovel and turns.\",The kidnapper\nlsmdc3070_THE_CALL-32832,7249,\"He shifts an anxious gaze between his trunk and the body. Ripping off his blood - stained shirt, he\",wipes blood from his undershirt and tosses it down.,rubs columns of five screens with his left hand and gives an encouraging nod.,knocks it between the shop shelves and heads down a hallway.,stares off.,looks up at someone with bloodshot eyes and stares his way past a dripping canvas.,gold1-reannot,pos,unl,unl,pos,pos,He shifts an anxious gaze between his trunk and the body.,\"Ripping off his blood - stained shirt, he\"\nlsmdc3034_IDES_OF_MARCH-2848,14447,He returns the folder to her. She,gives a mocking grin.,pours off the spilled wine.,shakes someone's hand.,takes a page from the bag.,holds his hand up to his throat.,gold0-orig,pos,unl,unl,unl,unl,He returns the folder to her.,She\nlsmdc3019_COLOMBIANA-9321,118,\"At the fbi, Agent someone turns to someone. Someone\",takes his cell back and heads out of the room.,is practicing some nex pyramid.,is a document underneath.,meets someone's gaze.,\"thinks better of it as it passes someone, then looks up to find someone sitting behind a parked car.\",gold0-orig,pos,unl,unl,pos,pos,\"At the fbi, Agent someone turns to someone.\",Someone\nlsmdc3019_COLOMBIANA-9321,119,\"As he leaves, Agent someone bows his head. Meanwhile, someone\",brushes a tear from her eye then slides on a pair of sunglasses.,\"rides a four - foot camel along with both passengers in a boat, watching the bird.\",enters a command module.,heads out of the ceremony as someone loads the manager.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he leaves, Agent someone bows his head.\",\"Meanwhile, someone\"\nlsmdc3019_COLOMBIANA-9321,123,Its door closes after her and the vehicle pulls into the road. The bus,trails billows of exhaust as it trundles into the distance.,pulls into the night by the house.,\"pulls back as the car barrels over someone, then snatches it.\",\"pulls away, passing a splash - across road which opens across the city corner.\",,gold0-orig,pos,unl,unl,pos,n/a,Its door closes after her and the vehicle pulls into the road.,The bus\nlsmdc3019_COLOMBIANA-9321,114,\"She allows a tiny smile. At the fbi, Agent someone\",shoots his partner a frustrated look.,reads a letter in an airplane setting.,presses his thumb to a glass of wine.,stares at his bearded daughter with dazed eyes.,,gold0-orig,pos,unl,unl,unl,n/a,She allows a tiny smile.,\"At the fbi, Agent someone\"\nlsmdc3019_COLOMBIANA-9321,113,\"Depressing the payphone's hook, someone hangs up. She\",allows a tiny smile.,\"nods, then follows her gaze.\",peers out and points frantically.,adjusts someone's helmet.,stares gratefully at him.,gold1-orig,pos,pos,pos,pos,pos,\"Depressing the payphone's hook, someone hangs up.\",She\nlsmdc3019_COLOMBIANA-9321,122,She strides toward a bus parked at the side of the road. Its door closes after her and the vehicle,pulls into the road.,stops in a waiting area by the rear door.,comes to a halt.,rolls to a stop.,\"pulls out, leaving the trailer behind.\",gold1-orig,pos,unl,unl,unl,unl,She strides toward a bus parked at the side of the road.,Its door closes after her and the vehicle\nlsmdc3019_COLOMBIANA-9321,121,Golden sunlight glows down on her as she turns away from the phone and dons a hat. She,strides toward a bus parked at the side of the road.,\"closes her eyes, then quietly turns on her cell and pulls a purse from her pocket.\",stairs to the left.,averts her stunned gaze.,gently picks it up and climbs back in the pile.,gold1-orig,pos,unl,unl,pos,pos,Golden sunlight glows down on her as she turns away from the phone and dons a hat.,She\nlsmdc3019_COLOMBIANA-9321,117,Someone lets out a whisper. She,wipes away a tear then replaces the receiver.,stops far behind her.,shakes his head and fans himself.,gives a stiff nod.,slaps his shoulder.,gold1-orig,pos,unl,unl,pos,pos,Someone lets out a whisper.,She\nlsmdc3019_COLOMBIANA-9321,120,\"Meanwhile, someone brushes a tear from her eye then slides on a pair of sunglasses. Golden sunlight\",glows down on her as she turns away from the phone and dons a hat.,rises from the approaching vehicle.,glows on someone's face as she wears a white string of her gown.,glows through her window as she remembers doing her walk in front of the harbor.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Meanwhile, someone brushes a tear from her eye then slides on a pair of sunglasses.\",Golden sunlight\nlsmdc3019_COLOMBIANA-9321,116,With the phone's receiver cradled against her neck. Someone,lets out a whisper.,\"drops the rest of the class, her hair hanging loose from her fingers.\",hangs in her chair.,wakes him and pushes himself into her.,,gold0-reannot,pos,unl,pos,pos,n/a,With the phone's receiver cradled against her neck.,Someone\nanetv_-wcSkAAeOK8,1028,A woman is seen speaking to the camera while standing in front of an exercise bike. The woman,continues speaking and begins climbing onto the bike.,takes the skateboard down and adjusts again.,continues speaking to the man while the man continues to speak and shows several tattoos about these things.,continues to use the exercise and showing how to adjust the tire.,continues riding along the elliptical while looking and speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera while standing in front of an exercise bike.,The woman\nanetv_-wcSkAAeOK8,1029,The woman continues speaking and begins climbing onto the bike. She,spins herself around on the bike while sitting and standing and the camera panning around the girl.,fails to demonstrate how to use the tire to lift the tire off.,begins climbing an wall on the sides.,continues dancing around and swinging her arms around.,,gold0-reannot,pos,unl,unl,unl,n/a,The woman continues speaking and begins climbing onto the bike.,She\nanetv_d40Tv56RrnA,3442,A girl in a pink blouse and a girl in a white t - shirt wash clothes in large tubs just outside the thatched roof house. The camera man,pans the front of the washing area while the girl in the white t - shirt rinses the clothes.,notices a quick cd on the floor and shows the moves very fast.,washes to the side of a t - shirts and shows how to use lie in a gun while the dog brushes about.,pushes the door open and walks into the trees.,,gold0-orig,pos,unl,unl,unl,n/a,A girl in a pink blouse and a girl in a white t - shirt wash clothes in large tubs just outside the thatched roof house.,The camera man\nanetv_7VvcQNSAd24,10586,A man is seen standing in front of a mirror holding a razor. He then,begins shaving his face while still looking in the mirror.,moves one shaving design onto his legs and performing a shaving.,puts in lotion into his hair and brushes some of his hair down.,puts detergent on the mane and shaving off of his beard using a tool.,begins shaving the razor while speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen standing in front of a mirror holding a razor.,He then\nanetv_7VvcQNSAd24,10587,He then begins shaving his face while still looking in the mirror. He,finishes shaving his face and looks back smiling at the camera.,continues to throw himself into the sink while the camera stares.,continues to shave and is shaving cream on the razor.,continues by shaving his beard to show how to properly shave the sink before setting them again.,,gold0-orig,pos,unl,unl,unl,n/a,He then begins shaving his face while still looking in the mirror.,He\nanetv_dRqbDamDLT0,14849,\"The wheel is taken off, tire irons are put in, and the tube is removed. A new tube\",is inserted and is pumped up.,is then shown with a plastic evenly leaning onto it.,pulls up and then removed.,is removed and then it's enough to ski.,,gold0-orig,pos,unl,unl,unl,n/a,\"The wheel is taken off, tire irons are put in, and the tube is removed.\",A new tube\nanetv_dRqbDamDLT0,3751,He is working to replace the tire on a bike. He,removes the rubber tread and replaces it.,is bent over to wipe the paste from the vehicle.,is using a big tire tire on it quickly.,uses his chore to achieve it.,,gold0-orig,pos,unl,unl,unl,n/a,He is working to replace the tire on a bike.,He\nanetv_dRqbDamDLT0,3750,A man is inside a work shop. He,is working to replace the tire on a bike.,continues to exercise around on an elliptical.,is going using his window as he talks.,is cleaning a can of windex.,begins going down the steep stairs and talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,A man is inside a work shop.,He\nanetv_Zf3RcqHO82M,13698,They are talking about the tango dance. They,spin and twirl before an audience.,\", holding her hips and singing, she leaves the place by a river taxi.\",do some dancing and dance.,clap their hands together as they go.,smile and then go.,gold0-orig,pos,unl,pos,pos,pos,They are talking about the tango dance.,They\nanetv_Zf3RcqHO82M,13697,A man and woman are sitting on a stage together. They,are talking about the tango dance.,hold the cross around her and push them away.,resumes moving her hands faster and faster.,begin dancing around with the equipment.,begin to move up the stage.,gold1-orig,pos,unl,unl,unl,pos,A man and woman are sitting on a stage together.,They\nanetv_rBVbsbJJcyM,8898,An introduction comes onto the screen for a fine linen company. A woman,explains that she will describe how to fold cloth napkins.,walks to the side.,appears on the counter and shows how her braid is used in detail.,is then shown talking about how to make a sandwich.,talks in news about her.,gold0-orig,pos,unl,unl,unl,unl,An introduction comes onto the screen for a fine linen company.,A woman\nanetv_rBVbsbJJcyM,8901,She folds the napkin and continues to press it some more. The video,ends with the closing credits.,ends with a logo on the screen.,ends with a website on the screen.,ends with the closing graphics shown on the screen.,ends with the closing credits shown on screen.,gold1-orig,pos,pos,pos,pos,pos,She folds the napkin and continues to press it some more.,The video\nanetv_rBVbsbJJcyM,8900,She starts by pressing the napkin with a hot iron. She,folds the napkin and continues to press it some more.,holding a piece of the chemical.,rinses a full of powder white water and wipes them off with a cloth.,takes a pan from the oven and finishes the sauce.,starts changing past once.,gold0-orig,pos,unl,unl,unl,unl,She starts by pressing the napkin with a hot iron.,She\nanetv_rBVbsbJJcyM,8899,A woman explains that she will describe how to fold cloth napkins. She,starts by pressing the napkin with a hot iron.,smiles and applies the cleaner on top of her as she lathers the chest with the roll up cloth and lays it down.,demonstrates how to wear the rollers.,proceeds to apply the power mix in a nurse pan.,,gold0-orig,pos,unl,unl,unl,n/a,A woman explains that she will describe how to fold cloth napkins.,She\nanetv_nE0_PaRBXeA,8682,There are a few other people running on the treadmill behind the man. He,starts off by pulling the handles of the machine and then goes back and forth to exercise.,shoots and deals his backpack as he stands up.,begin bouncing each other with baskets as they bounce up and down.,is holding two long poles in his hands.,,gold0-orig,pos,unl,unl,unl,n/a,There are a few other people running on the treadmill behind the man.,He\nanetv_nE0_PaRBXeA,8681,There's a man in a blue shirt using the lat pull machine in a gym. There,are a few other people running on the treadmill behind the man.,are standing by.,with a signs peeler and then he is very hard to cut into the human bind that almost to be accidentally closed.,communicate in the back together manicurist nuts.,is in the workout anorak by trembling the bars paddle.,gold0-orig,pos,unl,unl,unl,unl,There's a man in a blue shirt using the lat pull machine in a gym.,There\nlsmdc1055_Marley_and_me-96609,6921,He leaves the editor's glass - fronted office. The children,are playing ball in the garden with someone when someone arrives home.,\"sit in their new pew, then sit before a lifting pole.\",\"peer over his binoculars, then enter through bright display.\",watch a woman surround an elevator across the floor.,stare out at the room.,gold0-reannot,pos,unl,unl,unl,unl,He leaves the editor's glass - fronted office.,The children\nlsmdc1060_Yes_man-99449,14531,Someone marches through the busy terminal building. People,walk some way behind her.,are standing in front of the visitors entrance.,enter the conference room area at people.,\", from parade photographs piano, slides but someone stops between her and someone.\",\"are in the middle behind the truck, waving her backpack back from the train to join men.\",gold0-orig,pos,unl,unl,unl,unl,Someone marches through the busy terminal building.,People\nlsmdc1060_Yes_man-99449,14530,A jet touches down in la. Someone,marches through the busy terminal building.,holds someone with a breathless kiss.,finds a photo pulled up.,approaches someone and presents several hydra soldiers.,\", her nephew, appears in the doorway.\",gold0-orig,pos,unl,unl,unl,unl,A jet touches down in la.,Someone\nlsmdc1060_Yes_man-99449,14529,\"Without looking at him, she leaves the room. A jet\",touches down in la.,glows with a photo.,arrives at the prow of the ship.,stops in front of her.,squeezes its along with a nearby log.,gold1-orig,pos,unl,unl,unl,unl,\"Without looking at him, she leaves the room.\",A jet\nlsmdc1060_Yes_man-99449,14528,Someone stares at her wretchedly. Someone,walks in and unlocks someone's handcuffs.,sits in his bed followed by someone.,opens his eye for a moment and raises his arms.,stares eyes watch her own son.,takes her bent forearm to steady herself.,gold0-reannot,pos,unl,unl,unl,unl,Someone stares at her wretchedly.,Someone\nlsmdc3068_THE_BIG_YEAR-3582,1955,\"She falls on her behind as the birds continue their assault. Now, as the birders file toward a waiting air taxi, someone\",storms past them with her expensive luggage.,shoves an open check into the view.,grimaces as he raises the gun toward a rifle in her purse.,\"addresses pedestrians, then monitors him.\",,gold1-orig,pos,unl,unl,pos,n/a,She falls on her behind as the birds continue their assault.,\"Now, as the birders file toward a waiting air taxi, someone\"\nlsmdc3068_THE_BIG_YEAR-3582,1950,He wipes the counter with a scarf. The birders,flock to the windows.,ride with the soldier.,pass him in a public doorway.,listen at the fbi guilty conduct.,,gold0-orig,pos,unl,unl,unl,n/a,He wipes the counter with a scarf.,The birders\nlsmdc3068_THE_BIG_YEAR-3582,1952,\"As someone takes her scarf to a water pump, gulls swoop down all around her. She\",flails wildly in a futile attempt to defend herself.,pats forth riders on her shoulders.,approaches someone and leaps as he unveils her.,grabs a towel and gives it to her lips.,are underwater going back to the white tops.,gold0-orig,pos,unl,unl,unl,unl,\"As someone takes her scarf to a water pump, gulls swoop down all around her.\",She\nlsmdc3068_THE_BIG_YEAR-3582,1956,\"Now, as the birders file toward a waiting air taxi, someone storms past them with her expensive luggage. One guy\",looks back and points to a rooftop.,takes off her helmet.,opens the stripe having a good drag on us.,remains motionless as someone and someone follow.,hangs up the phone.,gold1-orig,pos,unl,unl,unl,pos,\"Now, as the birders file toward a waiting air taxi, someone storms past them with her expensive luggage.\",One guy\nlsmdc3068_THE_BIG_YEAR-3582,1951,\"The birders flock to the windows. As someone takes her scarf to a water pump, gulls\",swoop down all around her.,swarm the staircases and apparate.,\"fly from the middle of her head, dragging her hands out.\",scatter out of the pond.,glide across the rock.,gold0-orig,pos,unl,unl,pos,pos,The birders flock to the windows.,\"As someone takes her scarf to a water pump, gulls\"\nanetv_AnPLZtJs7zE,18046,The man dips the paintbrush into a bucket of paint and starts painting the fence. The man,moves along the fence painting it.,continues painting the bike with short strokes and a painting of his picture board out of place.,continues to polish and cuts the wood with a picture of the camera.,pulls out the lawn torch and continues painting.,uses dabbing tools and paint.,gold0-orig,pos,unl,unl,unl,pos,The man dips the paintbrush into a bucket of paint and starts painting the fence.,The man\nanetv_AnPLZtJs7zE,18045,The man is holding a paintbrush. The man,dips the paintbrush into a bucket of paint and starts painting the fence.,vacuums the rug.,uses a knife to cut a piece of paper with several wall paper.,is playing the the paper.,,gold0-orig,pos,unl,unl,unl,n/a,The man is holding a paintbrush.,The man\nanetv_AnPLZtJs7zE,18047,The man moves along the fence painting it. The man,finishes painting and steps away from the fence.,cuts to the scene paper and ends up showing hands moving to collect grown soccer shoes.,switches off his helmet then aims at the camera again.,continues cutting down the painting and looks off into the distance.,uses the hose to pull the bottom away from the fence.,gold0-orig,pos,unl,unl,unl,pos,The man moves along the fence painting it.,The man\nanetv_AnPLZtJs7zE,18044,A man is talking to the camera next to a fence. The man,is holding a paintbrush.,put a tire onto the bike.,puts glasses on the black table of the man.,starts brushing the horses hair.,walks away from the camera.,gold0-orig,pos,unl,unl,unl,pos,A man is talking to the camera next to a fence.,The man\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19535,Two horses are charging across the English countryside. Their riders,stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance.,\"are now shown, and one of them is galloping with vast arrives.\",die out and are prepared to eat it.,ripple over a car.,,gold0-orig,pos,unl,unl,unl,n/a,Two horses are charging across the English countryside.,Their riders\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19540,\"Having picked a posy of wild flowers from the woods, someone crosses a small field where a chestnut mare and her foal are grazing in the sunshine. She\",\"walks on, towards the village beyond.\",bends down to pick up the flames.,\"is drinking, barking at the dog.\",opens the front door and talks about some clothes.,is now mowing the lawn.,gold0-orig,pos,unl,unl,unl,unl,\"Having picked a posy of wild flowers from the woods, someone crosses a small field where a chestnut mare and her foal are grazing in the sunshine.\",She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19536,\"Their riders stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance. With a broad smile, someone\",\"rides on towards his new property, followed by his companion, someone.\",scrambles to a stairway railing and drops his head feet.,backs away from the waters.,reaches his dead spot.,crosses the balcony and takes a seat behind a verdant boot.,gold0-orig,pos,unl,unl,unl,unl,Their riders stop at a vantage point from where they can see a sizable mansion nestling between trees at a distance.,\"With a broad smile, someone\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19544,\"Someone dons someone's bonnet. Now, outside church, someone\",is in deep conversation with a neighbor.,sits atop a decorated softball.,drives someone faces the policeman.,makes a call in short letters facing the kids.,,gold0-orig,pos,unl,unl,unl,n/a,Someone dons someone's bonnet.,\"Now, outside church, someone\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19541,\"Now approaching her house, Longbourn, she bypasses the entrance when she hears her sisters arguing inside. Someone\",peers into her father's study.,peeks around two restaurant table in the kitchen.,reads a document titled with her printed on the title page.,approaches and someone following someone out of a trench.,,gold1-orig,pos,unl,unl,unl,n/a,\"Now approaching her house, Longbourn, she bypasses the entrance when she hears her sisters arguing inside.\",Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19546,\"Her five daughters set off behind their father. So, someone\",prizes herself away and runs to catch up with them.,hurls his beer at someone.,\"paces, watching her from paper mug across the table.\",watches with a black eye.,\"lies asleep in bed, his back to his work.\",gold1-orig,unl,unl,unl,unl,unl,Her five daughters set off behind their father.,\"So, someone\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19537,\"With a broad smile, someone rides on towards his new property, followed by his companion, someone. Watching from a distance, as the two horses thunder across the fields,\",\"is a young woman, someone.\",chase and fire breath.,line the crest of an elevated road between surfboards.,keeping the enemy features down above their heads.,more kids are swinging in their boards.,gold0-orig,pos,unl,unl,unl,unl,\"With a broad smile, someone rides on towards his new property, followed by his companion, someone.\",\"Watching from a distance, as the two horses thunder across the fields,\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19545,\"Now, outside church, someone is in deep conversation with a neighbor. Her five daughters\",set off behind their father.,sit a few younger kids up quickly in a park.,are both sitting under the covers.,arrive at the nearby coffee shop as students watch tensely.,studies someone's hand with her gq stylish hair.,gold0-orig,pos,unl,unl,unl,unl,\"Now, outside church, someone is in deep conversation with a neighbor.\",Her five daughters\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19542,Someone peers into her father's study. Father and daughter,roll their eyes amd smile.,celebrate their hand in a flowery engagement ring.,enter a decanter and dining room.,move toward the barrier.,,gold0-orig,pos,unl,unl,pos,n/a,Someone peers into her father's study.,Father and daughter\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19539,\"Up on the hillside, she turns away from the scene with a smile playing on her lips. Wearing a straw bonnet and simple day dress, someone\",sets off down a country lane.,swings out from a cart and checks his friend's suitcases.,tosses her clipboard down.,walks to the curb.,strides in and takes out some rocks.,gold0-reannot,pos,unl,unl,pos,pos,\"Up on the hillside, she turns away from the scene with a smile playing on her lips.\",\"Wearing a straw bonnet and simple day dress, someone\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83400,19538,\"Watching from a distance, as the two horses thunder across the fields, is a young woman, someone. Up on the hillside, she\",turns away from the scene with a smile playing on her lips.,pulls him to the far side of the rocky deck.,spies someone outside the basket table.,sees a boy french cooking next to someone.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Watching from a distance, as the two horses thunder across the fields, is a young woman, someone.\",\"Up on the hillside, she\"\nanetv_Oz4q98BhqKo,11485,The man in red walks off to the left. The class,finishes and stop dancing.,start it slightly behind.,pursues the dojo one of the students.,rubs his palms together and rubs his arms.,raises their hands in a shorter line at a workout table.,gold1-orig,pos,unl,unl,unl,pos,The man in red walks off to the left.,The class\nanetv_Oz4q98BhqKo,11483,While standing on the step the people swing their hands. The class,swings their arms again.,begins to go out like a stroller.,is going slow again.,walks down towards the edge of the mat.,begins their routine in two.,gold0-orig,pos,unl,unl,unl,unl,While standing on the step the people swing their hands.,The class\nanetv_Oz4q98BhqKo,11486,The class finishes and stop dancing. The teacher,walks to turn off the camera.,comes over and styles her books.,shows the names of the fencers.,puts the violin on his right hand and stands.,shuffles to the mat.,gold1-reannot,pos,unl,unl,pos,pos,The class finishes and stop dancing.,The teacher\nanetv_ruNII4WvE3k,2272,A person stands behind as the woman continues to groom the dog. She,continuously cuts the dogs fur while the man speaks to the camera.,continues to polish the bush and continues to slow her back to the camera.,\"continues toward the water, and with him standing behind him heads towards her.\",is helping her friends to groom the back of the horse.,,gold0-orig,pos,unl,unl,unl,n/a,A person stands behind as the woman continues to groom the dog.,She\nanetv_ruNII4WvE3k,277,A couple of people are shown inside a grooming facility. They,have a dog on the table to groom.,walk onto a water platform as some rocks.,are wearing weightlifting outfits as they take pictures.,start walking along a river.,,gold0-orig,pos,unl,unl,unl,n/a,A couple of people are shown inside a grooming facility.,They\nanetv_ruNII4WvE3k,278,They have a dog on the table to groom. They carefully,trim his fur and nails.,work out with balls under the water.,wipe the tire off.,ties the laces up and slap it.,pass the ball of water to the surface.,gold0-orig,pos,unl,unl,unl,unl,They have a dog on the table to groom.,They carefully\nanetv_ruNII4WvE3k,2271,A small dog is seen standing on a table with a woman cutting it's fur. A person,stands behind as the woman continues to groom the dog.,is seen holding up a cat and eating it's claws.,continues cutting the cat's claws and shots into the camera.,is seen sitting on a female and begins shaving her legs.,,gold0-orig,pos,unl,unl,unl,n/a,A small dog is seen standing on a table with a woman cutting it's fur.,A person\nanetv_KYtV2vpwuVw,18304,1 a camera man watches men on bikes that are about to race. 2 The race,begins with the guys on bikes.,is tidying in the center of the video with the flow of the bowling cap.,starts with the kids enjoying the ride.,is driving down the road on a dirt track.,has a row of stunts off of the bumper.,gold0-orig,pos,unl,unl,unl,unl,1 a camera man watches men on bikes that are about to race.,2 The race\nanetv_4OfhHE72V8c,1715,\"A person is sitting a a mirror putting eye makeup on, alternating from left eye to right eye. They then\",apply blush with a sponge and brush.,\"run down their cheeks, then wave to one another as they walk.\",zooms a woman's hair blow and applies eye makeup on briefly before turning on the others.,swish the right eye and pitying it with a yellow razor on the eye.,appear again on a makeup pumpkin on a table and following the instructions of the product.,gold0-orig,pos,unl,unl,unl,unl,\"A person is sitting a a mirror putting eye makeup on, alternating from left eye to right eye.\",They then\nanetv_4OfhHE72V8c,13722,\"Then, the woman puts make up on the lower eyelid using the brush. After, the woman\",takes a sponge to powder her cheeks.,cleans the water the young girl faces down off the bars.,combs a white and white paint.,brushes the top of the shoe.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the woman puts make up on the lower eyelid using the brush.\",\"After, the woman\"\nanetv_4OfhHE72V8c,13721,\"A woman paints dark the top of her eyelid using a brush. Then, the woman\",puts make up on the lower eyelid using the brush.,bends down to face a tree.,stands up and applies the lens to the trowel.,shapes black rubs on nails.,,gold0-orig,pos,unl,unl,unl,n/a,A woman paints dark the top of her eyelid using a brush.,\"Then, the woman\"\nanetv_0z7qHOca3D4,18996,The group rides through loose sand and the horses kick it up into the air. The group,rides along a dune section and through some low vegetation.,\"go back in the horses, then make their way through the water.\",walked backwards during the final run.,continues to run over to do a calf jam while on the grass.,walks over to an area where more picnic still appears.,gold0-orig,pos,unl,unl,unl,unl,The group rides through loose sand and the horses kick it up into the air.,The group\nanetv_0z7qHOca3D4,18991,A large empty beach is seen seen from the shore. A bird,is seen walking along the shoreline.,is surfing back in the water and a person continues surfing and going on the water.,comes up and hits the ball.,is setting at one end of the bow.,,gold0-orig,pos,unl,unl,pos,n/a,A large empty beach is seen seen from the shore.,A bird\nanetv_0z7qHOca3D4,18992,A bird is seen walking along the shoreline. A group,rides horses along the coast line together.,of men are seen riding around on horses stuck and taking pictures down the horses.,of people are sitting in a kayak on the water near the edge.,of runners is shown in the background showing wild animals.,,gold0-orig,pos,unl,unl,unl,n/a,A bird is seen walking along the shoreline.,A group\nanetv_0z7qHOca3D4,18994,The group rides up along the bluffs. A female rider,rides near the waters edge.,splashes the boat in the gloomy channel.,shows a ferris bike.,does a wheelie and the television shows her stripped bare.,,gold0-orig,pos,unl,unl,pos,n/a,The group rides up along the bluffs.,A female rider\nanetv_0z7qHOca3D4,18993,Different species of flowers are seen. The group,rides up along the bluffs.,is still playing intertubes on a water hill.,plays different places in the area together.,approaches clothes and leaves together.,begins to services for the forest.,gold0-orig,pos,unl,unl,unl,unl,Different species of flowers are seen.,The group\nanetv_0z7qHOca3D4,18990,An introduction graphic is seen with title. A large empty beach,is seen seen from the shore.,are shown passing through the snowy mountains.,is shown and a woman shows how to throw the balls.,is shown with many kids talking and throwing darts.,is shown followed by a person playing a game of polo.,gold1-reannot,pos,unl,unl,unl,unl,An introduction graphic is seen with title.,A large empty beach\nanetv_0z7qHOca3D4,18997,The riders ride slowly and then it becomes later in the day and the sun is getting low. The beach,is seen from a distance as the sun has set.,is extremely peaceful with it as it rides down to the desert.,\"is showing a batch of sponsors and shiny dust filled in a post of foliage, a fire and it reloading the snow.\",is still in the ocean several different clips with surfers getting ready for the boat.,,gold0-reannot,pos,unl,unl,unl,n/a,The riders ride slowly and then it becomes later in the day and the sun is getting low.,The beach\nanetv_0z7qHOca3D4,18995,A female rider rides near the waters edge. The group rides through loose sand and the horses,kick it up into the air.,with a stick to the set.,ride through a snowy snow.,moves down the storm.,perform fast together in slow motion.,gold0-reannot,pos,unl,unl,unl,pos,A female rider rides near the waters edge.,The group rides through loose sand and the horses\nanetv_BbFCkDdq3S0,16457,He takes a huge leap into the air. He,lands in a giant sand pit.,shuts the door alone.,gives his routine to his broomstick.,jumps up off the stage and head to the judges.,\"raises the staff, catching his speed and throwing him away.\",gold1-orig,pos,unl,unl,unl,unl,He takes a huge leap into the air.,He\nanetv_BbFCkDdq3S0,16456,A boy runs slowly down a path. He,takes a huge leap into the air.,throws the board upside down.,makes his way across the field in some colorful circles and as it passes around a teen mannequin reading his globe.,stops by a line and starts to make many of the bold lines from different angles.,is using a tool to peel heat.,gold0-orig,pos,unl,unl,unl,unl,A boy runs slowly down a path.,He\nlsmdc3039_JACK_AND_JILL-2533,16670,He takes out a four - foot stick. He,tosses someone the ball.,takes off his pants.,uncovers a reed and settles onto the chairs.,holds up the stone shoe.,,gold0-reannot,pos,unl,unl,unl,n/a,He takes out a four - foot stick.,He\nanetv__7JooVc_sCQ,1,A close up shot of a bike is done while a man puts his gear on to ride. One rider,is shown riding around while another does various tricks.,runs down and up onto a dirt track.,zooms in on a bike that hurries to him and the man continues talking.,throws another person over the snow while another man watches.,,gold0-reannot,pos,pos,pos,pos,n/a,A close up shot of a bike is done while a man puts his gear on to ride.,One rider\nanetv__7JooVc_sCQ,2,One rider is shown riding around while another does various tricks. Several different bikers,are shown riding up and down tracks and flying through at record speeds.,watch on front the ride then run off in a different direction.,are shown riding down a hill together as they skateboard.,take the race down the track through a competition.,are shown as well as using the skateboards in various areas.,gold0-reannot,pos,unl,unl,unl,unl,One rider is shown riding around while another does various tricks.,Several different bikers\nanetv_kgPvfYhmn54,2743,They are paddling the rafts through harsh white water rapids. The people,\"fall out, and are pulled back in by other rafters before continuing on their way.\",\"clamber through the rapids, deep in water with riders doing water at the bottom of the river.\",blocked only a few rows to turn the top under the water.,begin to look toward a large waterfall and slowly turn to the surfer who also continues into the water to wave her.,are on an underwater raft paddling on the rocks.,gold0-orig,pos,unl,unl,unl,unl,They are paddling the rafts through harsh white water rapids.,The people\nanetv_kgPvfYhmn54,2742,A group of people are floating on rafts on a river. They,are paddling the rafts through harsh white water rapids.,start kayaking at the bottom of the hill.,paddle through the water in an arena.,are soaking small kayaks along the river.,reach up to rafts floating in the ocean water.,gold0-orig,pos,pos,pos,pos,pos,A group of people are floating on rafts on a river.,They\nanetv_lOtplLrtapE,450,\"A man shows a video of himself training for the weightlifting events in the Olympics. Several times, he\",picks up weight and lifts it over his head.,grabs the bike and vaults a few times.,jumps off the bar and doing several jumps.,\"does the same, but this time the whole time.\",jumps up and lands on the ground.,gold0-orig,pos,unl,unl,unl,unl,A man shows a video of himself training for the weightlifting events in the Olympics.,\"Several times, he\"\nanetv_spAlIMm8jSg,13926,A replay of her performance is shown. Words,are then shown on the screen.,each go down afterwards.,church is shown with a white background.,is studying the screen by her performance.,wakeboard with a sailboat in front of the crowd watching.,gold0-orig,pos,unl,unl,unl,unl,A replay of her performance is shown.,Words\nanetv_spAlIMm8jSg,13924,A woman jumps onto two bars and does a gymnastics routine. The audience,is watching her perform.,give their high tips.,starts to do balance routine.,clapping for the gymnast before the gymnast stands up and practices the routine.,,gold1-orig,pos,unl,unl,unl,n/a,A woman jumps onto two bars and does a gymnastics routine.,The audience\nanetv_spAlIMm8jSg,13925,The audience is watching her perform. She,jumps off the bars and lands on the mat with her hands in the air.,\"is talking to the audience, but the audience is ecstatic.\",spins herself around and falls on the stage and does a little dance.,stops playing it put her arms together.,is in a gymnastics dance stance.,gold0-orig,pos,unl,unl,unl,pos,The audience is watching her perform.,She\nanetv_eNE8O5cgYuE,2572,\"It was scenic and beautiful out there, flowers blossoming and everything. A few of the runners\",talk about their experience to reporters.,soberly bounding out and started playing close together.,is shown in the garden.,casually puting their shoes as she makes them.,\"dressed, is a dense wet pine field; is about to go down snow in the snow.\",gold0-orig,pos,unl,unl,unl,unl,\"It was scenic and beautiful out there, flowers blossoming and everything.\",A few of the runners\nanetv_eNE8O5cgYuE,2571,There is ia group of runners starting a marathon taking their time. It,\"was scenic and beautiful out there, flowers blossoming and everything.\",plays a marathon of time.,is field in a screen with running individuals making a path in the middle of the field.,is a quiet facility of water.,,gold0-orig,pos,unl,unl,unl,n/a,There is ia group of runners starting a marathon taking their time.,It\nanetv_xAI1y9izXOM,2095,Two men sit across a table and begin an arm wrestling match. They both,struggle a bit until the man on the left eventually wins.,begin playing the game with their sticks.,begin to cheer and spin.,\"have a drink, and the two continue playing with one another during the video.\",,gold0-orig,pos,unl,unl,pos,n/a,Two men sit across a table and begin an arm wrestling match.,They both\nanetv_SKMVLKmgxAw,17015,\"A man is shown seated, banging on a pair of bongo drums. He\",alternates between the drums as he plays a tune.,plays a different set of buttons on the violin.,picks up the guitar.,continues strumming the guitar as he continues to play.,is coloring all the drums to himself.,gold0-orig,pos,unl,unl,unl,unl,\"A man is shown seated, banging on a pair of bongo drums.\",He\nanetv_SKMVLKmgxAw,17014,White text on a black screen appears. A man,\"is shown seated, banging on a pair of bongo drums.\",is stretching a coat on a dance floor.,starts talking to a man how to make a coffee mug at them.,reads the detailed information.,is very talking about the events.,gold1-orig,pos,unl,unl,pos,pos,White text on a black screen appears.,A man\nanetv_SKMVLKmgxAw,306,He is using his hands to play a pair of drums. He,continues to play throughout the video.,hangs the frisbees in his locker.,is sitting on the flooring on the floor.,takes one hammer off the cue.,is playing the red drum drum.,gold0-orig,pos,unl,unl,unl,pos,He is using his hands to play a pair of drums.,He\nanetv_SKMVLKmgxAw,17016,He alternates between the drums as he plays a tune. There,is a close up of the man banging the drums with his hands.,\", a man plays on a bell on a blue carpet in a gym.\",music starts from his list.,is shown with his playing.,,gold0-reannot,pos,unl,unl,unl,n/a,He alternates between the drums as he plays a tune.,There\nlsmdc0053_Rendezvous_mit_Joe_Black-71277,14506,But someone only pours coffee. Someone,gazes at the going - on outside which are increasing in intensity.,has lumber and has been too burned to dead.,eats a dance as they stand on a dock burning.,\"spots someone, pulls himself around his hotel desk, and starts for the shot.\",sees the vehicle disappear and swerves into the corner of the road.,gold1-orig,pos,unl,unl,unl,unl,But someone only pours coffee.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41529,18141,\"He gazes after her gratefully. Going into the house, he\",\"finds someone sitting at the foot of the stairs, in tears.\",grins at the flowers and a flock of birds in his wake.,\"groggily removes the phone from her ear, slipping it off.\",finds someone lying in bed underneath his big bed.,,gold0-orig,pos,unl,unl,unl,n/a,He gazes after her gratefully.,\"Going into the house, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41529,18140,Someone gives a stoic shrug. She,\"regards him compassionately, then gets up, pats his leg, and looks him in the eye.\",\"lays in a seat, and peeks under the door.\",packs a suit.,climbs out of the limo.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone gives a stoic shrug.,She\nlsmdc0031_The_Lost_Weekend-65391,12846,\"Someone, an empty jigger in his hand, stands at the same spot, only now leaning with his back against the bar. The place\",\"is about half filled - - eight customers at the bar, five tables occupied.\",is motionless on the ground as the red wavy haired men continue their step closer with the seething mass of evergreens behind them.,\", the g., is thrown among the students.\",\"stores are bare, two pursue colored balls pointed out at the shadow of a naked man standing on either side.\",has three and a blue protective peer taped by a heavy elaborate empty backdrop including orange.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, an empty jigger in his hand, stands at the same spot, only now leaning with his back against the bar.\",The place\nanetv_RK8VF2pL72I,10758,A woman is sitting in a chair knitting. She,looks up and talks to someone.,sits up and shows how to use makeup.,points her arm at the camera without amused.,begins playing the saxophone in the distance.,is facing a woman of statuesque machines.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting in a chair knitting.,She\nanetv_RK8VF2pL72I,10759,She looks up and talks to someone. She,continues knitting in her hands.,limps slowly to her horse in the doorway.,notices the low - colored bullet with a key from la boots.,leans heavily against the wall and his pillows bent behind her.,slams in a barbell between both hands.,gold1-reannot,pos,unl,unl,unl,pos,She looks up and talks to someone.,She\nanetv_QDjaaUtepHo,18916,A pink and yellow logo with lips appears on screen. A male hairdresser,works on the hair of a seated woman in a luxury beauty salon.,gets off the counter with a medal.,does a call on her black hair.,shows how to make a face that wear that picture.,,gold0-orig,pos,unl,unl,pos,n/a,A pink and yellow logo with lips appears on screen.,A male hairdresser\nanetv_QDjaaUtepHo,18917,A male hairdresser works on the hair of a seated woman in a luxury beauty salon. The man,dries and applies product to the woman's hair.,talks to the camera and shows her knife moving powders.,squeezes in and receives the pictures.,talks to the camera and brushes her hair with a sad red blow dryer.,,gold1-orig,pos,unl,unl,pos,n/a,A male hairdresser works on the hair of a seated woman in a luxury beauty salon.,The man\nlsmdc0030_The_Hustler-64667,13309,Someone rises and confronts someone almost scornfully. Someone,\"looks down at his own dirty, disheveled shirt.\",grabs him and lifts him.,\"stands nearby, taking a pen from his companion's feet and staring pensively at it.\",\"hands a crossbow to someone, who leaves.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone rises and confronts someone almost scornfully.,Someone\nlsmdc0030_The_Hustler-64667,13308,Someone opens his palms for the sprinkling of the talcum powder. Someone,\"rubs his hands together, then takes out his cigarette case.\",sees a black pistol gun in a battered leather sack half pipe with a bottle of spirits.,is rinsed in a basin and mixed with water and salt to the head.,is all happy with it.,,gold0-orig,pos,unl,unl,pos,n/a,Someone opens his palms for the sprinkling of the talcum powder.,Someone\nlsmdc0030_The_Hustler-64667,13307,\"Someone emerges from the washroom, dries his hands, looks at someone and then at someone who nods. Someone\",helps someone into the jacket with the carnation still in the lapel.,\"starts the other way, quickly, for her own defense with the gun and turns to the bed.\",unbuckles his seat belt and takes off.,\"stands with his hand in his pockets, cradles something in his hands.\",staring back at his clock.,gold1-reannot,pos,unl,unl,pos,pos,\"Someone emerges from the washroom, dries his hands, looks at someone and then at someone who nods.\",Someone\nlsmdc0030_The_Hustler-64667,13310,\"Someone looks down at his own dirty, disheveled shirt. Someone\",moves to put on his jacket.,stays drowsily on the monitor and underwater.,sees a light surging outside of the stall.,picks up a stack of cocktail crates.,does some karate moves in and out of frame.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone looks down at his own dirty, disheveled shirt.\",Someone\nlsmdc0030_The_Hustler-64667,13306,Someone starts to put away someone's cue stick. Someone,\"emerges from the washroom, dries his hands, looks at someone and then at someone who nods.\",\"watches, as the killer points to two foot wave blasts toward their opponents.\",shoves the remainder back into his trouser pocket.,pushed someone across the room.,tosses someone a candy.,gold0-reannot,pos,unl,unl,unl,pos,Someone starts to put away someone's cue stick.,Someone\nanetv_9wRQsxVFwkE,4909,A child is seen pushing a lawn mower along the side of a lawn while looking and laughing the camera. The man,turns around and continues mowing along the grass while the camera captures his movements.,continues mowing the lawn as well as the boy bending all around the area while looking into the camera.,continues driving and he continues speaking to the camera while the cop outside pours spilling pool and smiles to the camera.,is then seen putting more tape down the grass while showing different products in the end.,,gold1-orig,pos,unl,unl,unl,n/a,A child is seen pushing a lawn mower along the side of a lawn while looking and laughing the camera.,The man\nanetv_9wRQsxVFwkE,15496,A young man is seen pushing a lawn mower and smiling to the camera. The man,looks over his shoulder and walks back and fourth.,continues mixing on lawn mower while the camera pans around him.,moves to the other table while looking around and smiling.,then begins pushing the mower while he bends around all over the body to continue mowing.,walks around behind the yard while still speaking to the camera.,gold1-reannot,pos,unl,unl,unl,pos,A young man is seen pushing a lawn mower and smiling to the camera.,The man\nanetv_9wRQsxVFwkE,15497,The man looks over his shoulder and walks back and fourth. He,walks past one more time with the mower.,continues with one man performing with the hula hoop.,then peels off his arm and leads into more speaking.,keeps playing with the cymbals and bows as he continues to skate.,bends up to jump in a set of exercise bars while sitting down.,gold1-reannot,pos,unl,unl,unl,unl,The man looks over his shoulder and walks back and fourth.,He\nlsmdc1027_Les_Miserables-6069,3169,\"Once finished, he gets off her and saunters away, leaving her on her back. She\",\"lies motionless, her head on a pillow.\",turns but gives her a kindly hug and kisses her ear.,goes into the room.,trails his fingertips down her cheek through deep finer.,has the baby in his arms.,gold0-orig,pos,unl,unl,unl,unl,\"Once finished, he gets off her and saunters away, leaving her on her back.\",She\nlsmdc1027_Les_Miserables-6069,3168,\"He lies on top of someone, and her lips tremble. Once finished, he\",\"gets off her and saunters away, leaving her on her back.\",is down and absently glimpses the hair stylists.,removes his false profile.,takes the cup again and walks past.,puts the candy ball between her lips and dances.,gold0-orig,pos,unl,unl,pos,pos,\"He lies on top of someone, and her lips tremble.\",\"Once finished, he\"\nlsmdc1027_Les_Miserables-6069,3170,\"She lies motionless, her head on a pillow. Her rouged face\",is grim and somber.,is yanking up from the tank.,is covered in sweat.,is beaded with soot.,,gold0-orig,pos,unl,pos,pos,n/a,\"She lies motionless, her head on a pillow.\",Her rouged face\nlsmdc1027_Les_Miserables-6069,3167,The captain pushes her down and turns her over. He slowly,raises the hem of her dress.,puts his hand in the air on his tower.,\"sits up, cradling some resting positions and rests his head on his elbow.\",strides toward the counter.,hands over a book.,gold0-orig,pos,unl,unl,unl,unl,The captain pushes her down and turns her over.,He slowly\nlsmdc3081_THOR-38184,12914,\"Someone walks to someone, who stands on a balcony and looks out over his sprawling kingdom. Someone\",stares straight ahead then looks down.,\"screams as he walks through the crowd, he goes down over the impatient ground as if to steer his thoughts.\",surfaces as the bright light turns to shine.,\"caps his helmet, the marching band man smells his hat and they then relax.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone walks to someone, who stands on a balcony and looks out over his sprawling kingdom.\",Someone\nlsmdc3081_THOR-38184,12911,\"Someone walks up to his mother and takes her hand briefly, then continues on. As someone watches her son walk away, someone\",steps up beside her.,searches for the arriving guests.,softly shuts the door behind her.,shakes her hand.,takes a deep breath.,gold0-orig,pos,unl,pos,pos,pos,\"Someone walks up to his mother and takes her hand briefly, then continues on.\",\"As someone watches her son walk away, someone\"\nlsmdc3081_THOR-38184,12910,\"Sitting at the table, someone smiles then stiffens as someone passes through the crowd behind her. Someone\",\"walks up to his mother and takes her hand briefly, then continues on.\",is squeezing her breast with his palm.,arrives by the house as someone makes his way through the doorway.,'s eyes are wide open.,,gold1-orig,pos,unl,pos,pos,n/a,\"Sitting at the table, someone smiles then stiffens as someone passes through the crowd behind her.\",Someone\nlsmdc3081_THOR-38184,12912,\"As someone watches her son walk away, someone steps up beside her. Someone\",offers a small smile and touches someone's bare arm.,turns the tv off.,shakes someone's piece.,\"sitting in the high bed, she drags the woman out the alcove and someone leaves at another door.\",drops the wooden tin with her finger.,gold0-orig,pos,unl,unl,unl,unl,\"As someone watches her son walk away, someone steps up beside her.\",Someone\nlsmdc3081_THOR-38184,12913,Someone offers a small smile and touches someone's bare arm. Someone,\"walks to someone, who stands on a balcony and looks out over his sprawling kingdom.\",helps duke drag someone into the water.,\"wears a overcoat and his crumpled fedora, then wears a backpack and of black jacket.\",\"makes a kind of shrug, then briefly opens her eyes to share a warm smile.\",,gold0-reannot,pos,pos,pos,pos,n/a,Someone offers a small smile and touches someone's bare arm.,Someone\nanetv_U1nvAxorOPQ,6393,A woman is seen speaking to the camera while holding up tools and another woman standing behind her brushing a horse. The woman,uses a tool on the horse's hooves and then cleans off the front with a brush.,is then seen brushing the horse close while still touching the horse.,continues brushing the horse's mane and leads the horse away while more speaking.,continues to speak to the camera again and then rinses her hair back in the end.,continues brushing her hair and ends by looking at the camera and smiling to the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding up tools and another woman standing behind her brushing a horse.,The woman\nanetv_U1nvAxorOPQ,6394,The woman uses a tool on the horse's hooves and then cleans off the front with a brush. The,continues cleaning off the hooves and ends with her looking at the camera.,\"girl spreads over, and is then shown scrubbing a stone.\",woman gets change from the bucket and cleans down the dog.,\"instructions again, once more after it repeatedly cleaning.\",,gold0-orig,pos,unl,unl,pos,n/a,The woman uses a tool on the horse's hooves and then cleans off the front with a brush.,The\nanetv_U1nvAxorOPQ,16196,A woman is seen speaking to the camera while standing next to another woman. The first then,begins lifting a horse's hoof and cleaning off the bottom.,holds up a match and begins applying it up in the cup.,begins washing a brush on the rag.,begins painting her nails with an electric tool.,begins washing her face and looking very close to the camera.,gold1-orig,pos,unl,unl,pos,pos,A woman is seen speaking to the camera while standing next to another woman.,The first then\nanetv_tOEomEC1rY8,3006,A woman is sitting in a chair while a woman behind her is holding a hair dryer. She,begins drying the woman's hair.,continues to brush the woman's hair.,dries the hair back with her hand and works on out.,finishes her hair and walks away.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is sitting in a chair while a woman behind her is holding a hair dryer.,She\nanetv_tOEomEC1rY8,3007,She begins drying the woman's hair. The woman,is talking to the camera pointing at a hair dryer.,puts her hair down in front of her beard.,places a large comb on her hair.,continues to rub her face and holds her hair.,,gold1-orig,pos,unl,unl,unl,n/a,She begins drying the woman's hair.,The woman\nanetv_83WXP5z80Y0,12355,The woman demonstrates using a hula hoop in a large room while another person talks. Another person,looks in through the window of the door.,shows how to properly bounce on the bongos.,sits in a mirrored table and types facing the camera.,approaches but the woman can seen this.,,gold0-orig,pos,unl,unl,unl,n/a,The woman demonstrates using a hula hoop in a large room while another person talks.,Another person\nanetv_83WXP5z80Y0,12354,Title screens are shown on the video. The woman,demonstrates using a hula hoop in a large room while another person talks.,runs and talks to the camera again.,is speaking to her friend.,takes the jump and begins a laughs as a crowd watches.,\"gets on the ironing board in front of a kayak, and raises a board high into the air.\",gold0-orig,pos,unl,unl,unl,unl,Title screens are shown on the video.,The woman\nlsmdc0028_The_Crying_Game-63890,5336,She falls into a deep sleep. Someone,\"looks down at her, almost fondly.\",\"stretches her arm, and notices the text facing through the photos.\",hurries out of sight scattering people.,\"closes her eyes, then lowers her gaze on the ground below.\",,gold0-orig,pos,unl,unl,pos,n/a,She falls into a deep sleep.,Someone\nlsmdc0028_The_Crying_Game-63890,5334,She woozily tries to hit him round the face. Someone,raises an unsteady hand and points it at him.,holds it with both arms and knocks.,\"is up for both someone then, sweeping his wand before stirring the trigger again.\",brings herself to a large arm chair beside him.,steps in and she heads to the reception desk where he throws.,gold0-orig,pos,unl,unl,unl,unl,She woozily tries to hit him round the face.,Someone\nlsmdc0028_The_Crying_Game-63890,5339,She searches through the pockets and takes out the gun. An alarm sounds; she,reaches to turn it off.,is so excited for her someone.,starts to climb the stairs.,does n't think what can happen.,feels like a very deep asleep.,gold0-orig,pos,unl,unl,unl,unl,She searches through the pockets and takes out the gun.,An alarm sounds; she\nlsmdc0028_The_Crying_Game-63890,5335,She says very slowly and sleepily. She,falls into a deep sleep.,shows her earring and pauses to look at the cube.,drops inside her arms several times.,\"sits down on the bed and lies sleeping, her head partially pressed against his chest.\",,gold0-orig,pos,unl,unl,pos,n/a,She says very slowly and sleepily.,She\nlsmdc0028_The_Crying_Game-63890,5338,\"She rises very quietly and goes to his coat, thrown across a chair. She\",searches through the pockets and takes out the gun.,\"has her back against his shoulder, followed by someone, who is at the piano.\",\"rushes up at someone, collecting her things on the floor.\",is flying back on crumpled clothes.,glides towards the manuscript!,gold0-orig,pos,unl,unl,unl,unl,\"She rises very quietly and goes to his coat, thrown across a chair.\",She\nlsmdc0028_The_Crying_Game-63890,5337,\"Someone looks down at her, almost fondly. They\",\"are lying on the bed together, fully clothed.\",kiss and kiss tenderly.,leave the bar.,share a look.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone looks down at her, almost fondly.\",They\nlsmdc0028_The_Crying_Game-63890,5341,Someone takes several silk stockings out of a drawer and ties them very securely to each corner of the brass bed. She,\"ties them round both of someone's feet, very gently, so as not to wake him.\",visit illuminate the rooms filled stage.,appear on the piano.,picks it right up to sit in the chair and opens the slipping door after the sitting man.,\"drops a chair on a luggage stand, then picks up the long, ornate front steps as he stands in it.\",gold0-reannot,pos,unl,unl,unl,unl,Someone takes several silk stockings out of a drawer and ties them very securely to each corner of the brass bed.,She\nanetv_6PnPu_cLCvE,13432,A boy stands in front of a garage. the boy then,\"takes a cigarette, lights and smokes it.\",sprays a white roller on the face.,grabs a piece of wood to set down a bars.,leads the right friend.,picks up two empty hula boards.,gold0-orig,pos,unl,unl,unl,unl,A boy stands in front of a garage.,the boy then\nanetv_6PnPu_cLCvE,13433,\"The boy then takes a cigarette, lights and smokes it. the boy\",puts the cigarette out on the ground.,turns his face in fire.,takes another puff of the hookah.,speaks again to the man and girl painting the porch.,,gold0-orig,pos,unl,unl,pos,n/a,\"The boy then takes a cigarette, lights and smokes it.\",the boy\nlsmdc0003_CASABLANCA-47081,15971,\"Someone, sitting at a table with her German officer, stares down into her drink. Someone\",speaks to the orchestra.,pulls the bottle down from his cuff and holds a tray of toast.,puts luscious bits of vodka in a glass jar.,\"makes it to someone, who is sitting in front of a young girl in a large white dress.\",\"frowns repeatedly, too, not sure what to do.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone, sitting at a table with her German officer, stares down into her drink.\",Someone\nlsmdc0003_CASABLANCA-47081,15966,People hear male voices singing downstairs. Someone,stands at the balcony outside his office and watches the germans below.,opens her rear door.,situated over a seat in a prominently courtyard.,stops running as someone jogs quickly off all night.,remains at the door for a moment.,gold1-orig,pos,unl,unl,unl,pos,People hear male voices singing downstairs.,Someone\nlsmdc0003_CASABLANCA-47081,15964,\"Someone gets up, as does someone. Someone\",\"looks at him, puzzled.\",walks into the dim corridor for someone's suv.,snatches up the table.,gets out of the car and stands still with the lights.,\"steps onto the desk, only a few feet away all to reach someone.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone gets up, as does someone.\",Someone\nlsmdc0003_CASABLANCA-47081,15968,\"At the bar, someone watches with raised eyebrow. Someone's lips\",are very tight as he listens to the song.,\"move, someone takes a deep breath.\",are spread in front of someone's face.,curl into a churning smile.,curl into a modest smile.,gold1-orig,pos,unl,unl,unl,pos,\"At the bar, someone watches with raised eyebrow.\",Someone's lips\nlsmdc0003_CASABLANCA-47081,15977,\"Someone jumps up and sings with tears in her eyes. Someone, overcome with emotion,\",\"looks proudly at someone, who sings with passion.\",puts down her top finger and looks at people again.,stands thoughtfully between his eye - hole total.,does the last second with the sound of his life.,\"quickly moves both of his eyes as he heads back over, how to be quite plan.\",gold0-orig,pos,unl,unl,unl,unl,Someone jumps up and sings with tears in her eyes.,\"Someone, overcome with emotion,\"\nlsmdc0003_CASABLANCA-47081,15967,\"Someone stands at the balcony outside his office and watches the Germans below. At the bar, someone\",watches with raised eyebrow.,is asleep with someone.,tends to his overalls.,finds the hotel colonel still pinned to the floor.,,gold1-orig,pos,unl,unl,unl,n/a,Someone stands at the balcony outside his office and watches the Germans below.,\"At the bar, someone\"\nlsmdc0003_CASABLANCA-47081,15970,\"He starts down the step. Someone, sitting at a table with her German officer,\",stares down into her drink.,is about to follow her.,sits down in a chair.,is standing in front of a tv camera.,quietly looking through the window with the defiant expression on her face.,gold0-orig,pos,unl,unl,unl,unl,He starts down the step.,\"Someone, sitting at a table with her German officer,\"\nlsmdc0003_CASABLANCA-47081,15973,Someone passes the table where someone sits and goes straight to the orchestra. People,sing as they start to play.,gather outside a cafeteria and crowded tables and file out.,\"stand slowly someone, who looks up from the bathroom.\",arrive behind the island.,play in the game.,gold0-orig,pos,unl,unl,unl,unl,Someone passes the table where someone sits and goes straight to the orchestra.,People\nlsmdc0003_CASABLANCA-47081,15978,\"Someone, overcome with emotion, looks proudly at someone, who sings with passion. Finally the whole cafe\",\"stands, singing, their faces aglow.\",is busy with the distressed lemonade.,begins laughing as the shape is wrenched away.,someone arrives holding white guitar playing drummers on the battlefield.,\"is finished, before someone is down.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, overcome with emotion, looks proudly at someone, who sings with passion.\",Finally the whole cafe\nlsmdc0003_CASABLANCA-47081,15980,Someone's face is exalted. She,shouts at the top of her lungs.,\", she suddenly rises and gestures with her chest.\",starts wiping the baby's face with the napkin.,is completely intent at the words.,leans up on the fireplace frame and rests her head on someone's shoulder.,gold1-orig,pos,unl,pos,pos,pos,Someone's face is exalted.,She\nlsmdc0003_CASABLANCA-47081,15975,\"Someone conducts the German singing in an attempt to drown out the competition. After a while, someone and his officers\",give up and sit down.,throw someone to each other.,arrive in the queensboro bridge surrounded by someone who is by the ferry.,rush the zoo to another cafe where a man holds his older brother.,follow the anchor into the choir.,gold0-orig,pos,unl,unl,unl,unl,Someone conducts the German singing in an attempt to drown out the competition.,\"After a while, someone and his officers\"\nlsmdc0003_CASABLANCA-47081,15981,She shouts at the top of her lungs. She deliberately,faces the alcove where the germans are watching.,steps up and has her belly down.,wags her chair high.,\"catches a section, then smashes into the ship with a thud.\",\"pushes it away, then comes into her bedroom.\",gold0-orig,unl,unl,unl,unl,unl,She shouts at the top of her lungs.,She deliberately\nlsmdc0003_CASABLANCA-47081,15969,Someone's lips are very tight as he listens to the song. He,starts down the step.,comes the passenger door.,sprinkles on the top.,\"stands on the stool, hunched over to dance, thoughtfully.\",looks between someone and their teacher.,gold1-reannot,pos,unl,unl,unl,unl,Someone's lips are very tight as he listens to the song.,He\nlsmdc0003_CASABLANCA-47081,15982,She deliberately faces the alcove where the Germans are watching. Several French officers,\"surround someone, offering him a drink.\",stand behind one of them in a wheelchair.,sit at a table leisurely at one row of their identical sculptures.,sit on a couch.,,gold0-reannot,pos,unl,unl,pos,n/a,She deliberately faces the alcove where the Germans are watching.,Several French officers\nlsmdc0003_CASABLANCA-47081,15972,Someone speaks to the orchestra. Someone,passes the table where someone sits and goes straight to the orchestra.,turns to someone and takes off as a band from a band plays.,\"loops his stick around, over and over.\",stands and ambles inside of the office.,points inside through front doors.,gold0-reannot,pos,unl,unl,unl,pos,Someone speaks to the orchestra.,Someone\nlsmdc0003_CASABLANCA-47081,15979,\"Finally the whole cafe stands, singing, their faces aglow. The song\",\"finishes on a high, triumphant note.\",comes down the little kid's pace.,is playing set in silence.,ends with the little girl waving something on the grass.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Finally the whole cafe stands, singing, their faces aglow.\",The song\nlsmdc0003_CASABLANCA-47081,15976,\"After a while, someone and his officers give up and sit down. Someone\",jumps up and sings with tears in her eyes.,\"uncurls the trunk on front of him, then man hugging someone, who holds the child's wallet.\",looks up the watchtower to the front of the school.,bust through the restroom through.,\"watches them, pulling on their linen class and chatting.\",gold1-reannot,pos,unl,unl,unl,unl,\"After a while, someone and his officers give up and sit down.\",Someone\nlsmdc1060_Yes_man-99278,13077,\"Someone sits at the bar with a bottle of beer. Smiling, someone\",sashays up beside him.,runs away from her front shot.,takes a sip from a hip flask.,walks through the crowd.,gazes out the window.,gold0-orig,pos,unl,unl,pos,pos,Someone sits at the bar with a bottle of beer.,\"Smiling, someone\"\nlsmdc1060_Yes_man-99278,13079,\"Someone sits at the bar, smiling and waiting. She\",glances over and beams.,hugs no seems to be particular parcels.,looks at the mastermind.,looks up from her table and notices someone heading toward his office.,steps closer to someone.,gold1-orig,pos,unl,pos,pos,pos,\"Someone sits at the bar, smiling and waiting.\",She\nlsmdc1060_Yes_man-99278,13078,\"Smiling, someone sashays up beside him. Someone\",\"sits at the bar, smiling and waiting.\",\"coolly glares at someone, then faces his own powerfully.\",and her other girls join him and wave to him.,sits up in bed then slides his pants back on her belly.,pulls up in a shiny dress with a string of string ties.,gold1-orig,pos,unl,unl,unl,unl,\"Smiling, someone sashays up beside him.\",Someone\nlsmdc1060_Yes_man-99278,13075,She wears a spangly mini top hat. Someone,stands with his hand on his heart.,extends someone's hand then claps.,steps ahead the huge campaign.,looks from the study of a framed photo of someone on a picturesque couch.,walks through the alley where there are the piles of people on the pavement.,gold0-reannot,pos,unl,unl,unl,unl,She wears a spangly mini top hat.,Someone\nlsmdc1060_Yes_man-99278,13076,\"She pouts at the crowd, then furrows her brow. Someone\",sits at the bar with a bottle of beer.,finds a bridesmaid with a smile.,blinks her tears and blinks her tears.,\"wrings his arms, then spots someone.\",\"regards her, then blinks back tears.\",gold0-reannot,pos,unl,unl,unl,pos,\"She pouts at the crowd, then furrows her brow.\",Someone\nanetv_wqZzLAPmr9k,10773,\"Water is salted and boiled for the pasta, and vegetables are sauteed in olive oil. Sardines\",\"are added, then mixed with the spaghetti noodles, creating a finished dish.\",person is mixing the ingredients in a pot with a mixer and the man cuts a cucumber and pours it into a bowl.,lift out in a garlic setting.,juice are being mixed and someone speaks to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,\"Water is salted and boiled for the pasta, and vegetables are sauteed in olive oil.\",Sardines\nanetv_hPJw9_nPo_s,1787,\"The view is now from the first persons point of view and a person is waterboarding very quickly, going on ramps and all over a large area of water while holding onto the handle that is connected to the rope that is pulling the person. The water boarder then\",approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him.,pulled out of the water as the ocean is seen from several angles.,\"turn on the wheels, and the dog retreats.\",pulls off completely for a long time to the diving board gliding and sideways.,flash across the water spilling onto the back of the tank while talking into the camera.,gold0-orig,pos,unl,unl,unl,pos,\"The view is now from the first persons point of view and a person is waterboarding very quickly, going on ramps and all over a large area of water while holding onto the handle that is connected to the rope that is pulling the person.\",The water boarder then\nanetv_hPJw9_nPo_s,1788,The water boarder then approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him. The water boarder continues to waterboard and the outro screen,\"appears of the aerial shot of the area with the company name, website and facebook address.\",begins to white words explain the youtube channel.,gives way to light the stickers on the video to clean it up.,\"gets colored and the screen fades to black, blue and yellow and grey words appear over the black screen.\",,gold0-orig,pos,unl,unl,pos,n/a,The water boarder then approaches a man standing in the water to the right side and splashes a lot of water onto that person as they pass him.,The water boarder continues to waterboard and the outro screen\nanetv_hPJw9_nPo_s,11575,A close up of a wakeboard is seen as well as a person's hands grabbing onto string. The person,rides around the water on the board while doing jumps.,then jumps down the mountain and continues jumping all around the area.,continues waterskiing around on the rope and ends by jumping it down and laughing.,continues holding the rope as another person watches.,,gold0-reannot,pos,unl,pos,pos,n/a,A close up of a wakeboard is seen as well as a person's hands grabbing onto string.,The person\nanetv_J9OSz5iCwNU,7674,The boy roller blades criss cross style around some orange cones. The boy,\"does it again, this time weaving in and out of the cones.\",begins blowing a blade strip out of his shoes.,grabs the strings and skis again and switches different angles of the blue skier over it.,does the same thing with the horse and puts it back together.,stands on his skateboard.,gold0-orig,pos,unl,unl,unl,unl,The boy roller blades criss cross style around some orange cones.,The boy\nanetv_J9OSz5iCwNU,7672,\"Later, the boy roller blades onto another ramp. The young boy\",\"is seen in another outfit, performing spins at the end of his roller blading.\",stops swinging and awkwardly slides across the field.,uses his right hand with the scraper finding the metal bars.,hops up the shadowfax platform to safety.,,gold0-orig,pos,unl,pos,pos,n/a,\"Later, the boy roller blades onto another ramp.\",The young boy\nanetv_J9OSz5iCwNU,7673,\"The young boy is seen in another outfit, performing spins at the end of his roller blading. The boy roller blades\",criss cross style around some orange cones.,lifts the javelin across a field and jumps on it!,getting out of the way.,bounces low and he leads his jacket across the floor to one of the horses.,change form between several many others including him.,gold0-orig,pos,unl,unl,unl,unl,\"The young boy is seen in another outfit, performing spins at the end of his roller blading.\",The boy roller blades\nanetv_J9OSz5iCwNU,7671,A young boy roller blades off a ramp and onto another ramp. The boy,\"speeds off onto a ramp and jumps off it, landing on the cement.\",falls down a ramp it lands in the sand track.,runs down a ramp onto a cliff.,jumps after the edge of the building and kicks his foot in the slide.,,gold0-orig,pos,unl,unl,unl,n/a,A young boy roller blades off a ramp and onto another ramp.,The boy\nanetv_hV9sBYo342M,7532,A man is running down a track. He,jumps onto a blue mat.,throws a javelin at the group of people.,runs across the track and catches the ball.,runs down the track while holding a frisbee.,jumps and lands on his skateboard.,gold0-reannot,pos,pos,pos,pos,pos,A man is running down a track.,He\nanetv_hV9sBYo342M,7533,He jumps onto a blue mat. He,jumps over a high bar and lands on the blue mat.,jumps off the beam and falls onto the floor.,captures the deadly technique.,jumps off of the beam.,,gold1-reannot,pos,unl,unl,unl,n/a,He jumps onto a blue mat.,He\nanetv_0SmA1cGocz4,5719,The word curling appears on the screen numerous times. A woman,\"is shown having her hair dried, brushed, and curled by a specialist.\",talks about a game of jerseys and pictures of her game being shown.,begins playing the harmonica.,walks on the parallel bars with a baton in front of her.,is showing her hair braided by the girl.,gold0-orig,pos,unl,unl,unl,pos,The word curling appears on the screen numerous times.,A woman\nanetv_0SmA1cGocz4,5721,\"He places her hair is rollers, then takes them down and styles it. Then she\",poses with her new hair style.,cuts them and places it in the brushes.,puts it down the drain until its time.,shows how to wrap it up and kiss them.,,gold0-orig,pos,unl,unl,unl,n/a,\"He places her hair is rollers, then takes them down and styles it.\",Then she\nanetv_0SmA1cGocz4,5720,\"A woman is shown having her hair dried, brushed, and curled by a specialist. He\",\"places her hair is rollers, then takes them down and styles it.\",starts mopping the floor while taking a step of jumping on the wall.,cuts the braided hair into sections with shots with a hair styling.,put the scissors around the woman's hair.,,gold1-orig,pos,unl,pos,pos,n/a,\"A woman is shown having her hair dried, brushed, and curled by a specialist.\",He\nanetv_RLdlDewtKbE,8332,Several players begin to play a cricket game on a field. A man,stumbles over one of the cricket posts.,\"starts running, several men and are running.\",runs towards the net.,walks over and pulls a ball from his bench.,is hit as he gives the ball a bow.,gold0-orig,pos,unl,unl,pos,pos,Several players begin to play a cricket game on a field.,A man\nanetv_RLdlDewtKbE,8331,An intro is shown for a cricket game. Several players,begin to play a cricket game on a field.,are on lacrosse of field playing.,are shown on a screen to hold of the polo shots.,demonstrate several goals using yelling to participate during a game of game.,,gold0-orig,pos,unl,unl,pos,n/a,An intro is shown for a cricket game.,Several players\nanetv_RLdlDewtKbE,8333,A man stumbles over one of the cricket posts. The players,shake hands as the game ends.,hit the balls back and forth and onlookers hold up the ball and wait for another throw.,take turns practicing their karate moves.,continue to play darts.,jump up and back up again.,gold0-orig,pos,unl,unl,unl,pos,A man stumbles over one of the cricket posts.,The players\nanetv_nMiXX2jqI40,18495,\"He looks at various fish under the water. Another man dressed as an elf appears, and they\",look at the ocean life together.,fish on to the fish.,\"of scuba diving confronts the diver, showing giving another's help.\",scrape off all of the man's dark hair.,are wearing scuba gear.,gold0-orig,pos,unl,unl,unl,unl,He looks at various fish under the water.,\"Another man dressed as an elf appears, and they\"\nanetv_nMiXX2jqI40,3128,He swims at the bottom of the ocean. He,explores old ship wrecked items and fish.,smiles then produces a line.,stands out straight from the water in front of him.,makes a sound they can break.,,gold0-orig,pos,unl,unl,unl,n/a,He swims at the bottom of the ocean.,He\nanetv_nMiXX2jqI40,18493,A man dressed as santa claus is wearing scuba gear. He,is swimming through and looking at the debris and wreckage on the ocean floor.,begins fighting several people from a protective jacket and falling.,is fishing on a large piece of equipment as he guides a young girl in an open box.,begins cleaning a fence.,puts down an orange belt.,gold0-orig,pos,unl,unl,unl,unl,A man dressed as santa claus is wearing scuba gear.,He\nanetv_nMiXX2jqI40,18494,He is swimming through and looking at the debris and wreckage on the ocean floor. He,looks at various fish under the water.,\"begins to move, jumping down on parallel stairs, high above him swiftly.\",\"slams people around the pool, and they all disappear into the water.\",juts out his lip.,,gold0-orig,pos,unl,unl,unl,n/a,He is swimming through and looking at the debris and wreckage on the ocean floor.,He\nanetv_nMiXX2jqI40,3127,A man is dressed like santa claus and wearing scuba gear. He,swims at the bottom of the ocean.,\"grimaces in front of the camera, taking off his jacket and waving his hair.\",takes a step into a tub and pushes on at a bar.,is going up to a hole on the sand.,starts showing how to rinse a selfie ice next to the sink.,gold0-orig,pos,unl,unl,unl,unl,A man is dressed like santa claus and wearing scuba gear.,He\nanetv_lsgB3WU-1r0,13419,Several businesses are shown from the outside. A fencing match,commences inside a building.,is put in.,is over shown in different locations.,is displayed to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,Several businesses are shown from the outside.,A fencing match\nanetv_lsgB3WU-1r0,13418,A city skyline appears in front of a large river. Several businesses,are shown from the outside.,race down a dark trail.,are then shown sitting around a canvas.,are then seen sitting at the side of a mountain with a long rope.,and a pool are seen at the end.,gold1-orig,pos,unl,unl,unl,unl,A city skyline appears in front of a large river.,Several businesses\nanetv_CkC1wxAaDjM,17988,An archery tournament begins and the montage shows the players hiding behind shields and firing back and forth. The parents of the children,are shown watching the battle.,fight and recording them as they move off the spectator.,eat on the seesaw over the indoor soccer team.,are in a pool in green shorts demonstrating as they play a game of outdoor polo.,have another rooftop with a red flag.,gold0-orig,pos,unl,unl,unl,unl,An archery tournament begins and the montage shows the players hiding behind shields and firing back and forth.,The parents of the children\nanetv_kZXVFSjRt5g,6122,They get ins the boat with paddles and some others next to them in a kayak. They,\"use the paddle to try to control the boat, but get splashed by the very brown water.\",go up and talk to the camera.,wave at the ocean back to the camera.,leap into the waters of the lake as well as the closing.,run after them with the oar as water splashes.,gold0-orig,pos,unl,unl,unl,pos,They get ins the boat with paddles and some others next to them in a kayak.,They\nanetv_kZXVFSjRt5g,6121,A few people are sitting down indian style with life vest on watching a man inside of a float boat talk. They,get ins the boat with paddles and some others next to them in a kayak.,are doing steps while going by behind their boat.,start to walk during as if you'll swim.,are in a game of water.,begin to walk down the sidewalk.,gold0-orig,pos,unl,unl,unl,unl,A few people are sitting down indian style with life vest on watching a man inside of a float boat talk.,They\nanetv_kZXVFSjRt5g,6123,\"They use the paddle to try to control the boat, but get splashed by the very brown water. Another little boat comes and bumps into them, they\",paddle until they are about to reach back to land.,climb the rock until very high.,finally leap through the air onto the precipice as they continue to push the waves off the choppy waters.,are doing the same thing.,are all settling together in the bottom of the river.,gold0-orig,pos,unl,unl,unl,unl,\"They use the paddle to try to control the boat, but get splashed by the very brown water.\",\"Another little boat comes and bumps into them, they\"\nlsmdc3001_21_JUMP_STREET-47,10357,\"The biker knocks him over and runs off. Straddling the leader's rear, someone\",humps him as he cuffs him.,sees the zombies still beside him.,spins the wheeler away.,grabs someone by the throat.,,gold0-orig,pos,unl,unl,pos,n/a,The biker knocks him over and runs off.,\"Straddling the leader's rear, someone\"\nlsmdc3001_21_JUMP_STREET-47,10356,\"Elsewhere, someone vaults off a post and tackles the leader. The biker\",knocks him over and runs off.,sits on a pair of white horses.,\"trots off, pleasantly looking for sight.\",hops into one of the lifeboats and waves their arms overhead as her dances.,\"lifts them up with his own head, throwing him onto the ground.\",gold0-orig,pos,unl,unl,unl,pos,\"Elsewhere, someone vaults off a post and tackles the leader.\",The biker\nlsmdc3001_21_JUMP_STREET-47,10359,Someone leaps into someone's arms and the athletic cop swings his partner around. They,face the gang leader.,slap at his mother.,follow someone out from the living room.,doors slam shut as the snow closes outside.,embrace until the blast is knocked grabbed collapses.,gold1-orig,pos,unl,unl,unl,unl,Someone leaps into someone's arms and the athletic cop swings his partner around.,They\nlsmdc3001_21_JUMP_STREET-47,10354,Someone gets on his bike. Someone,chases the leader on foot.,comes down the stairs.,dives into another pit.,climbs out of the limo.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gets on his bike.,Someone\nlsmdc3001_21_JUMP_STREET-47,10361,As someone pretends to hump him someone kneels by his face. Nearby young families,gawk with horrified expressions.,hold out his walkie - talkie.,walk his young home in a blazing theater.,grow up at a velvet table.,rush out onto the sidewalk.,gold0-reannot,pos,unl,unl,unl,unl,As someone pretends to hump him someone kneels by his face.,Nearby young families\nlsmdc3001_21_JUMP_STREET-47,10355,\"Pulling out in front of the bearded bikers, someone gets off his bike and draws his gun. Elsewhere, someone\",vaults off a post and tackles the leader.,knocks at a gate and lets go of a bunch of riders.,shows a phone to a penis inspecting matveyev's services.,\"answers his rear window, cupping a charred limb and gives a wince.\",wears a dirty suit.,gold0-reannot,pos,unl,unl,unl,pos,\"Pulling out in front of the bearded bikers, someone gets off his bike and draws his gun.\",\"Elsewhere, someone\"\nanetv_FKl0077EUoY,18204,The person turns it on and then off off. We,see the man talking to the camera.,see the time being played by a castle.,see blue kayaks on the shore.,see a flash of a credits.,inserted a key into a thick metal drill to create a explain formation.,gold0-orig,unl,unl,unl,unl,unl,The person turns it on and then off off.,We\nanetv_FKl0077EUoY,18203,The person touches it and turns it off. The person,turns it on and then off off.,puts a marker into the cone.,throws an orange and fades to silhouette.,grabs the old bowl and styles it.,turns the metal shingle on the rock and back again.,gold0-orig,pos,unl,unl,unl,pos,The person touches it and turns it off.,The person\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86789,3128,The nurse ends her call. Someone,rises to his feet and enters a hospital ward where he strolls past bed - bound patients.,releases her bloody hand away.,takes off someone's shirt and lowers her by the defensive.,hangs out her phone and goes into the living room.,\"enters, grabs her clock, and leaves her apartment smiling, then steps away.\",gold1-orig,pos,unl,unl,unl,unl,The nurse ends her call.,Someone\nanetv_MFeI2mRg6Ho,2722,\"The guy from the yellow team has the ball on the stick, he's running quickly with it and he scores. They\",put the trophy in the air and yell with excitement.,\"are shown about soccer together using a change to kick a ball over a goal, but he keeps the broom to hold blocked and\",\"play the game of against the other team, and the two men demonstrate basketball players and play.\",skate across the squares toward the young school the others are running as the process is paused.,continue talking while showing the faces and how there are 3 players.,gold0-orig,pos,unl,unl,unl,pos,\"The guy from the yellow team has the ball on the stick, he's running quickly with it and he scores.\",They\nanetv_MFeI2mRg6Ho,2721,\"Some team is playing a game on the field, one of them scores. The audience goes crazy and then the teams\",are back to trying to score into the goal.,start clapping the match.,play a game back on a gymnasium while a young team of the players give the coach an interview.,begin to cut mordor.,,gold1-orig,pos,unl,unl,unl,n/a,\"Some team is playing a game on the field, one of them scores.\",The audience goes crazy and then the teams\nanetv_lrM8LSnXmSw,6951,A woman is seen speaking to the camera while standing in front of a board. She,begins moving up and down the board while spinning herself around and moving her body.,uses a pole to iron a piece while speaking to the camera.,begins speaking to the camera while speaking to the camera while showing off various dishes.,shows a close up of the board on the side and is seen speaking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seen speaking to the camera while standing in front of a board.,She\nanetv_lrM8LSnXmSw,6952,She begins moving up and down the board while spinning herself around and moving her body. She,continues to move and stops to face the camera in the end.,continues moving along the beam while the camera captures her movements.,continues walking around the woman and ends with her moving back and fourth by clapping her hands.,continues moving all around the yard while showing off her hands in the end.,moves up and down a bit while still looking off into the distance.,gold0-orig,pos,unl,unl,unl,unl,She begins moving up and down the board while spinning herself around and moving her body.,She\nanetv_gCDpUPvD3s4,1948,One person makes a goal. A person walking on the ground,grabs a ball with a mallet.,runs lots of chalk.,runs along the sides.,is chained on the other.,gives them the ball.,gold1-orig,pos,unl,unl,unl,pos,One person makes a goal.,A person walking on the ground\nanetv_gCDpUPvD3s4,14846,\"People rides horses holding polo sticks as well people that walk next to the horsemen. A person from the horse hit a ball with the polo stick, also a player\",hit the ball while walking.,is led to come on for the man.,gives way to the ball.,comes and walks the man is balancing talks.,,gold0-orig,pos,unl,pos,pos,n/a,People rides horses holding polo sticks as well people that walk next to the horsemen.,\"A person from the horse hit a ball with the polo stick, also a player\"\nanetv_3CO7fRiJOy4,4973,One of them continuously spins in circles. She,rides alone after the others have left.,players are along after another tile backing and the girls kick a ball back and fourth.,is knocked backward and eventually join into a lot of sand.,\"loses the first female drummer, and walks away.\",continues swinging and the man in the cheek while performing cheer and tricks on his feet.,gold0-orig,pos,unl,unl,unl,unl,One of them continuously spins in circles.,She\nlsmdc3071_THE_DESCENDANTS-5675,1004,\"On a small stage, three male singers perform on stools as they strum a guitar, a ukulele, and a bass. Scanning the restaurant, someone\",\"spots a man with grey, shoulder - length hair at the bar.\",\"gives a potion goodbye, then twirls behind a bass drum, music singing.\",sees someone hurtling up the river to join the crowd and other members.,peers over a balcony.,peers across a row of framed broken glasses before the taxi.,gold0-orig,pos,unl,unl,unl,unl,\"On a small stage, three male singers perform on stools as they strum a guitar, a ukulele, and a bass.\",\"Scanning the restaurant, someone\"\nlsmdc3071_THE_DESCENDANTS-5675,1005,\"Scanning the restaurant, someone spots a man with grey, shoulder - length hair at the bar. Someone\",\"sidles down the narrow gap between the bar and a wall, then rounds a corner to the other side and joins someone.\",looks out the bar at someone's night.,pushes open a closed display door and looks out from a new door.,\"claps her hands, then walks away.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Scanning the restaurant, someone spots a man with grey, shoulder - length hair at the bar.\",Someone\nlsmdc3071_THE_DESCENDANTS-5675,1003,\"The family pauses near the threshold, taking in the thriving casual hot spot. On a small stage, three male singers\",\"perform on stools as they strum a guitar, a ukulele, and a bass.\",line up from stage.,stand in a circle waiting for the second goateed young female.,sit and lunch together.,leave the waiting room.,gold1-orig,pos,unl,unl,unl,pos,\"The family pauses near the threshold, taking in the thriving casual hot spot.\",\"On a small stage, three male singers\"\nlsmdc3071_THE_DESCENDANTS-5675,999,\"The mother faces the water. Watching her, someone\",adopts a breezy demeanor.,surfaces in her stomach.,\"finishes, ignoring himself.\",hurriedly edges in sullenly.,smiles and wipes her knees.,gold1-reannot,pos,unl,unl,unl,unl,The mother faces the water.,\"Watching her, someone\"\nlsmdc3071_THE_DESCENDANTS-5675,1002,\"Raindrops plop into the placid water, dotting it with tiny percolations. Someone\",\"leads the way up to the porch, then through the doorway.\",zooms in near another rider on a kick.,springs into his victim and tosses the dagger away.,fill their alarmed eyes.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Raindrops plop into the placid water, dotting it with tiny percolations.\",Someone\nlsmdc3071_THE_DESCENDANTS-5675,998,Someone bites back a comment and faces the water. The woman,offers a sincere concerned frown.,\"grabs her sister, hugs her and arrives up.\",\"fetches a lanky curtain, and rubs it with the toe of her foot.\",shoves someone's hands in the dish.,looks out to him.,gold1-reannot,pos,unl,unl,pos,pos,Someone bites back a comment and faces the water.,The woman\nlsmdc3071_THE_DESCENDANTS-5675,1001,Someone twitches himself out of a statue - like hold. Someone,marches from the water.,spurs the horse on his shoulders.,lands murder on the eye.,draws in her face.,shields his eyes off his gun as someone scurries toward the pecks wagon.,gold1-reannot,pos,unl,unl,unl,unl,Someone twitches himself out of a statue - like hold.,Someone\nanetv_p6ea3QpXryw,5241,\"A man lifts his arm in slow motion, throwing darts one after another at the board. He\",walks up to the board and reaches for it.,then stands up and approves side - by - side.,\"falls, then walks to the end of the room.\",continues instructing the young man before they reach the ladder and begin to get close.,\"'s show effort, a not really getting successful.\",gold0-orig,pos,unl,unl,pos,pos,\"A man lifts his arm in slow motion, throwing darts one after another at the board.\",He\nanetv_p6ea3QpXryw,5240,A dart board is shown against a wall. A man,\"lifts his arm in slow motion, throwing darts one after another at the board.\",takes several darts and darts.,applies plaster to a wall.,is playing a phone of a musical a game.,shows how to shoot dart board.,gold0-orig,pos,unl,unl,unl,pos,A dart board is shown against a wall.,A man\nanetv_tIbSsad0z9U,12418,Several clips are shown of a man swimming around in a pool and speaking to the camera. The man,continues moving around in the pool demonstrating how to do proper technique while still speaking to the camera.,is then seen swinging back and fourth on the board.,paddles around and zooms in on the fire.,is then seen swimming around in pool with his arms up.,,gold0-orig,pos,unl,unl,unl,n/a,Several clips are shown of a man swimming around in a pool and speaking to the camera.,The man\nanetv_tIbSsad0z9U,15396,The water is shown crashing against ocean rocks. Then we,see the man demonstrating swim moves in the pool again.,see the waterfall boys stand behind a row.,see the bikers running and plunge to a platform right ahead of them.,see the side in water to see as the tractor is thrown back from the wave.,see people arm surfing.,gold1-reannot,unl,unl,unl,unl,unl,The water is shown crashing against ocean rocks.,Then we\nanetv_tIbSsad0z9U,15395,A man is swimming in an indoor pool. The water,is shown crashing against ocean rocks.,is five feet away.,sports springboard by wide laser.,goes under behind the person.,kicks a spring board off the pool.,gold1-reannot,unl,unl,unl,unl,unl,A man is swimming in an indoor pool.,The water\nlsmdc3075_THE_SITTER-35026,671,\"Shrugging a sad smile, she averts her gaze. He\",hands her some tissues.,snaps the photo together.,points at her breasts.,glances back at his wife.,stares through a window above.,gold0-orig,pos,unl,unl,pos,pos,\"Shrugging a sad smile, she averts her gaze.\",He\nlsmdc3075_THE_SITTER-35026,668,\"She shifts her lips thoughtfully, then climbs out of the minivan. As someone watches her head up to the house, someone\",unbuckles her seatbelt and climbs into the seat beside him.,steps out and with someone waving an attacker walks in beside her.,takes the padlock on her ramp as it comes up to the story of an upscale foyer house.,\"bombed out tickets, followed by a tall woman who sits atop them smiling, and eyes someone.\",parks the limousine car ahead of the contac tunnel and bolts down to the rear.,gold1-orig,unl,unl,unl,unl,unl,\"She shifts her lips thoughtfully, then climbs out of the minivan.\",\"As someone watches her head up to the house, someone\"\nlsmdc3075_THE_SITTER-35026,673,With a sheepish grin she takes the tissues and wipes her cheeks. Someone,blinks her thoughtful eyes.,rests the two photos in her hand then extends her ear to his shoulders.,leans over him with her arms extended.,turns to the girls and whispers into his arm.,leans away from the display and looks down repeatedly.,gold0-orig,pos,pos,pos,pos,pos,With a sheepish grin she takes the tissues and wipes her cheeks.,Someone\nlsmdc3075_THE_SITTER-35026,666,She turns to him tearfully and he nods. He,gives her a kind look.,wipes the doll's safety off as he digs through her suitcase.,gives his father a long look.,stops at the sidewalk and picks up the glass of whiskey.,allows a faint smile and smiles bitterly.,gold0-orig,pos,unl,pos,pos,pos,She turns to him tearfully and he nods.,He\nlsmdc3075_THE_SITTER-35026,672,He hands her some tissues. With a sheepish grin she,takes the tissues and wipes her cheeks.,marches into the room and transitions from tools to someone.,leans on a tight - coated mat.,puts one hand in her pockets as serves drinks into the martini glass.,steps over to pull up a material bag.,gold0-orig,pos,unl,unl,pos,pos,He hands her some tissues.,With a sheepish grin she\nlsmdc3075_THE_SITTER-35026,665,\"She wakes up and glances outside, avoiding someone's gaze. She\",averts her eyes as he watches her.,gives someone a difficult look.,presses her fingers to her ears.,wakes her roommate in a fluffy shoulder pout and steps onto a balcony.,gives her a brief smile and for another hug.,gold1-orig,pos,unl,unl,unl,unl,\"She wakes up and glances outside, avoiding someone's gaze.\",She\nlsmdc3075_THE_SITTER-35026,667,He gives her a kind look. She,\"shifts her lips thoughtfully, then climbs out of the minivan.\",joins a group of male girls who watches him gaze closely.,\"gives him a little look, then turns to his dad.\",\"looks away and shakes his head, trying to take out his joke.\",,gold0-reannot,pos,unl,pos,pos,n/a,He gives her a kind look.,She\nanetv_mwUP1yZQsh0,3287,A screen with text is shown. Two children,play with a slide.,are then shown on a screen in the gym.,are tubing in a room.,are shown fighting various children.,are cleaning a car by a window.,gold1-orig,pos,unl,unl,pos,pos,A screen with text is shown.,Two children\nanetv_mwUP1yZQsh0,3288,Two children play with a slide. The two children,play in a small toy house.,play tam - tams on the other side.,are making card movements.,talk about the dogs.,,gold0-orig,pos,unl,unl,pos,n/a,Two children play with a slide.,The two children\nanetv_mwUP1yZQsh0,3289,The two children play in a small toy house. The two children,return to playing with the slide.,play paintball on their small field.,are on a swing performing.,\"turn to the pinata, blown to see it as the boys watch.\",decorate the tree and her back together.,gold0-orig,pos,unl,pos,pos,pos,The two children play in a small toy house.,The two children\nanetv_-VexUX6OJBM,18287,\"The boys are outside in the grass, one of them has on jumping shoes and the other one is walking around bare foot. The male with the shoes\",begins to flip and lands on the mat and sits down while the other boy does a flip.,is very excited about their shoes being they high on the seat and is groomed to get them done.,leads to the middle of the lawn towards the other window.,runs down a street in his dead direction.,begin jumping and stepping on the ground trying to catch one of the shoes and leaving his shoe close to the side.,gold0-orig,pos,unl,unl,unl,unl,\"The boys are outside in the grass, one of them has on jumping shoes and the other one is walking around bare foot.\",The male with the shoes\nanetv_-VexUX6OJBM,18290,\"Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there is an instant replay. Lastly, the other boy\",begins to do back flips alone in the grass.,begins running fast and hard into the goal rink and 20 pins have run over in ill green green grass.,scores all the players into the goal by winning the game.,does the same to the other one for one final time.,is looking back at the camera.,gold1-orig,pos,unl,unl,pos,pos,Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there is an instant replay.,\"Lastly, the other boy\"\nanetv_-VexUX6OJBM,17820,The man in the red pants performs somersaults while the other man with the jumping extensions watches on and gets instruction. The man with the jumping extensions,practices with the help of the man wearing red pants and completes a somersault.,walks out and makes throw a skate from the falcon and drop it to the ground.,watches as an older man attempts to stick with his arms and does another jump as everyone back watches and stands.,goes to help her up the arm then throws him to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,The man in the red pants performs somersaults while the other man with the jumping extensions watches on and gets instruction.,The man with the jumping extensions\nanetv_-VexUX6OJBM,18289,\"The male without the shoes, does many flips and the boy with the jumping repeats them as well but with the shoes. Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there\",is an instant replay.,'s a young man standing in the corner of the living room swinging and into four alternate sticks.,'s a very finished shake of his solo as the people continue to walk out.,'s also a man.,\"'s a boy behind him, and judges of them jumping along the parallel.\",gold0-orig,pos,unl,unl,pos,pos,\"The male without the shoes, does many flips and the boy with the jumping repeats them as well but with the shoes.\",Once the boy has finally done the flip successfully with the shoes he stops and is congratulated by his friend and there\nanetv_-VexUX6OJBM,18288,\"The male with the shoes begins to flip and lands on the mat and sits down while the other boy does a flip. The male without the shoes, does many flips and the boy with the jumping\",repeats them as well but with the shoes.,end walks over his talking.,throws his arms.,start in the air.,jumps to get him and then jumps.,gold0-orig,pos,unl,unl,unl,unl,The male with the shoes begins to flip and lands on the mat and sits down while the other boy does a flip.,\"The male without the shoes, does many flips and the boy with the jumping\"\nanetv_-VexUX6OJBM,17819,The man with the jumping extension does a flip and misses the landing and ends up on his but. The man in the red pants,performs somersaults while the other man with the jumping extensions watches on and gets instruction.,jumps out of a newspaper and falls down to the floor.,gets a piercing and begins to jump again.,jumps up and down as he does it with his other hand on the other side as the two continue to cheer.,laughs and a person pauses for a high jump to introduce the class.,gold1-reannot,pos,unl,unl,unl,unl,The man with the jumping extension does a flip and misses the landing and ends up on his but.,The man in the red pants\nanetv_5YVN5d8DkSk,14358,The camera pans around several pitting sitting at a bar as well as bartenders attending to people's needs. More shots,are shown of people interacting in the restaurant and finally people speaking to the camera.,are shown of people with their arms laid out.,are shown of a bunch of shoes playing hoops with one another while holding back to the camera.,is shown of the man running on a pier holding a pink coat hand and going to a study floor.,are shown of the men playing together as others in fun.,gold1-orig,pos,unl,unl,unl,pos,The camera pans around several pitting sitting at a bar as well as bartenders attending to people's needs.,More shots\nlsmdc3018_CINDERELLA_MAN-7860,6595,\"He scans the locker room then leans over and eats out of the bowl. As a balding man signals to someone, the boxer\",looks back at his surprise visitor.,resumes his old rt adjustment.,'s fingers begin to talk.,quickly puts his embarrassment to his chin.,\"slides the suits over his head, then raises a hand in triumph.\",gold1-orig,pos,unl,unl,unl,unl,He scans the locker room then leans over and eats out of the bowl.,\"As a balding man signals to someone, the boxer\"\nlsmdc3018_CINDERELLA_MAN-7860,6596,\"As a balding man signals to someone, the boxer looks back at his surprise visitor. Someone\",wipes his face with a towel.,throws the gun on the other man's head.,flashes a faint smile.,holds someone's hands out.,,gold0-orig,pos,unl,pos,pos,n/a,\"As a balding man signals to someone, the boxer looks back at his surprise visitor.\",Someone\nlsmdc3018_CINDERELLA_MAN-7860,6594,\"With a bowl of hash sitting in front of him, someone paces. He\",scans the locker room then leans over and eats out of the bowl.,\"flips, and performs a series of somersaults.\",\"hands the ax to someone, who drags it into his pocket.\",\"stands on his board, with a tall jar of potatoes on his back.\",\"rises from the washroom, puts his jacket on the floor.\",gold0-reannot,pos,unl,unl,unl,unl,\"With a bowl of hash sitting in front of him, someone paces.\",He\nanetv_nIfYhQHFWZI,10238,A young man is seen standing before a mat. He then,runs down the mat and performs flips.,begins throwing an object off into the distance.,begins playing a game of drums to his partner.,rides down on onto the mat.,begins wiping the cars with a rag.,gold0-orig,pos,unl,unl,unl,unl,A young man is seen standing before a mat.,He then\nanetv_nIfYhQHFWZI,10239,He then runs down the mat and performs flips. He,continues running down and jumping into a mat.,jumps down and lifts weights up high.,does the routine and other jump ropes.,lands back and jumps back on the mat.,\"dismounts and dismounts, lands one leg on the mat.\",gold0-orig,pos,unl,pos,pos,pos,He then runs down the mat and performs flips.,He\nanetv_JavaLreBqtI,14390,We watch the lady pull rollers our out her braids. We,see her hair up close.,\", the woman puts a hair onto her hair and the man speaks.\",see two men in the arms in sandy.,then put her hair back on the bun.,shows the lady braid the braid in the hair.,gold0-orig,pos,unl,unl,unl,unl,We watch the lady pull rollers our out her braids.,We\nanetv_JavaLreBqtI,14388,We see a lady sitting on a couch talking. The lady,makes faces and claps her hands.,hands the children to other children and pay their child.,films herself to a mirror and talks before moving a hand to her middle.,sprays her right hair on the ground.,throws blue leaves in the camera.,gold0-orig,pos,unl,unl,unl,pos,We see a lady sitting on a couch talking.,The lady\nanetv_JavaLreBqtI,14389,The lady makes faces and claps her hands. We,watch the lady pull rollers our out her braids.,see a person spin off the side.,see the ending title screen.,see a lady standing in front of a fence with her trowel.,,gold1-reannot,pos,unl,pos,pos,n/a,The lady makes faces and claps her hands.,We\nanetv_JavaLreBqtI,14391,We see her hair up close. The lady,makes a quote sign with her fingers.,rips out two mans legs and begins to remove his shoe from the floor.,\"speaks gently, gently.\",poses for pictures in front of helpful camera.,,gold1-reannot,pos,unl,unl,unl,n/a,We see her hair up close.,The lady\nlsmdc0003_CASABLANCA-46997,15247,Someone reaches the entrance to the cafe as someone comes out. He,stops and addresses someone politely.,steps away from someone.,turns the chair toward someone.,\"turns back to someone, who stands back.\",walks in with someone.,gold0-orig,pos,unl,unl,unl,pos,Someone reaches the entrance to the cafe as someone comes out.,He\nlsmdc0003_CASABLANCA-46997,15250,Someone walks up behind someone. She,\"looks briefly at someone, then turns away.\",lays her on the floor close to her.,pulls an envelope from his pocket and finds it inside.,glances back toward someone and tries to see the doorknob.,tosses a large black rucksack over her shoulder.,gold0-orig,pos,unl,unl,unl,unl,Someone walks up behind someone.,She\nlsmdc0003_CASABLANCA-46997,15248,\"He stops and addresses someone politely. As he exits, someone\",looks after him with a puzzled expression.,clambers up to his seat as he makes a call.,and someone seating in its front booth.,points before him like an airport.,stares in the carriage.,gold0-orig,pos,unl,unl,unl,unl,He stops and addresses someone politely.,\"As he exits, someone\"\nlsmdc0003_CASABLANCA-46997,15249,\"At the linen stall, someone examines a tablecloth which an Arab vendor is endeavoring to sell. Someone\",walks up behind someone.,peers out among the trees.,slowly gets out of the boat and frowns.,soars towards the students.,,gold1-reannot,pos,unl,unl,unl,n/a,\"At the linen stall, someone examines a tablecloth which an Arab vendor is endeavoring to sell.\",Someone\nanetv_aMexiSP5Vjc,10241,A young child is seen using an elliptical while watching a computer video in front of her. The girl,controls the moves on the video using the machine while the camera zooms in and out of the area.,continues moving around and moves to the camera showing more clips of her performing proper dance moves.,is seen skating in on her hands and spinning and ends by braiding her hair off to the side.,\"watches with hoops behind the people, jumping back and fourth and ends by smiling with her arms up in the air.\",is shown demonstrating how to clean sumo outfits and continues to speak to the camera.,gold0-orig,pos,unl,unl,unl,unl,A young child is seen using an elliptical while watching a computer video in front of her.,The girl\nanetv_kFmOtf_Ew1w,14587,Several clips are shown of people swimming in the water leading into a woman looking at the camera and still moving around under the water. The woman,continues floating in the water followed by grabbing a boogie board and performing various moves around the water.,throws several more poles and jumps in the air to stand while several clips are shown of people running through the water.,continues putting the ball down and ends with a person speaking to the camera.,is holding the pole to her performance frantic and roping while gesturing the side and jumping.,asks the girl a winter group while using inter ropes with their feet in the water.,gold0-reannot,pos,unl,unl,unl,unl,Several clips are shown of people swimming in the water leading into a woman looking at the camera and still moving around under the water.,The woman\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,400,Lines run through the words bulletproof and never break. Chandeliers,crash to the floor.,passes the camera into the smoke stained hood with shiny outer lights underneath it.,\"is arm wrestling and then prepare the rest of the present, then ticks up a good time and irons it flat on.\",cluster of tree reads blocking the boy's picture.,appear into formation and have been so great.,gold1-orig,pos,unl,unl,unl,unl,Lines run through the words bulletproof and never break.,Chandeliers\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,396,Someone snatches the scroll from the air. He,\"gazes from the bottle to the scroll, then slams the bottle onto a nearby table.\",adds it to the bianca.,\"swerves off the ship, lands in the trash.\",watches as he runs across the deck at the door.,,gold0-orig,pos,unl,unl,unl,n/a,Someone snatches the scroll from the air.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,397,\"Inside, someone gazes up at a figure standing at balcony railing. From the balcony someone\",gazes through round eyeglasses at someone.,peers inside and run upstairs.,turns a sails wheel to the canvas.,swings toward a building.,is and steps forward.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, someone gazes up at a figure standing at balcony railing.\",From the balcony someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,398,\"Someone peers through his opera glasses at someone and the falcon, then turns his head sharply and looks at the glass case holding the Unicorn model. Someone\",focuses on the label reading bulletproof.,\"hold hands, like maps, as a of model skinny musical extensions.\",puts it on the cousin and steps towards him.,stands at the pavement.,falls onto the main building and rolls down a wall.,gold0-orig,pos,unl,unl,unl,pos,\"Someone peers through his opera glasses at someone and the falcon, then turns his head sharply and looks at the glass case holding the Unicorn model.\",Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,402,\"The falcon breaks of its center mast, grabs a metal tube in its beak then flies off. It\",soars to the balcony and lands on someone's arm.,bursts onto the surface before it crashes onto black of minas tirith.,\"spreads it free, then throws it upwards, letting hands fly as he leaps off the car.\",turns and heads straight to the road.,shoots the shot at the interior of the truck which looms open the door.,gold0-orig,pos,unl,unl,unl,unl,\"The falcon breaks of its center mast, grabs a metal tube in its beak then flies off.\",It\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,394,\"Someone stumbles out of the audience, runs to a banquet table then yanks off the table cloth. He\",drapes it over his head then hurries outside to a sunny courtyard by a pool.,returns to the pump.,reaches into someone's hand.,\"glances toward someone's hut, then dives towards a hall.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stumbles out of the audience, runs to a banquet table then yanks off the table cloth.\",He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,390,Someone Salaad watches someone through thick eyeglasses. Someone,bangs his head on the seat in front of him.,emerges at a blood - soaked boy.,\"twirls her up and thrusts her arms around, twisting her gracefully attacker the forehead.\",sweeps in towards a stairwell.,has curled up beside the syringe.,gold0-orig,pos,unl,unl,unl,unl,Someone Salaad watches someone through thick eyeglasses.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,393,Snowy writhes then covers his ears with his paws. Someone,\"stumbles out of the audience, runs to a banquet table then yanks off the table cloth.\",stares meanwhile still a drone flying into the air above his head.,passes it to the inspector with his thumb toward someone.,fumbles with his life belt.,\"stands with the hooded figure, then turns and runs off.\",gold0-reannot,pos,unl,unl,pos,pos,Snowy writhes then covers his ears with his paws.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,395,He drapes it over his head then hurries outside to a sunny courtyard by a pool. Someone,pulls a bottle from an inner pocket.,\"watches his father sleeping in her bed as someone paces to find someone sleeps couch staring up at him, motionless.\",sits slumped by the table covering his smart shoes as he struggles to avoid carrying the orb.,gazes at a mirror then keeping an intensely - skinned window in the mirror.,\"notices the third woman, who is twirled in a daze.\",gold0-reannot,pos,unl,unl,unl,pos,He drapes it over his head then hurries outside to a sunny courtyard by a pool.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,391,Someone bangs his head on the seat in front of him. People,turn and look at him.,\"spots someone, smirks, then weaves his seatbelt as the bus pulls up outside of it.\",\", slowly, slips and casually digs out his phone and dials a number.\",has a gathering of presents so we change to seeing and person walking.,smile gradually disappears and someone finishes a cross.,gold0-reannot,pos,unl,unl,unl,unl,Someone bangs his head on the seat in front of him.,People\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,403,It soars to the balcony and lands on someone's arm. Someone,plucks the tube from the bird's beak.,flies back and lands on the shallow floor of the river.,shoots the bearded man.,turns to look merely dubiously in his eyes.,\", carrying another, raises his briefcase in a flourish.\",gold1-reannot,unl,unl,unl,unl,unl,It soars to the balcony and lands on someone's arm.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,389,Someone puts his fingers in his ears. Someone Salaad,watches someone through thick eyeglasses.,stands and rolls them on.,strokes her head in the streams.,gently towards his flushed cheeks.,butts the ball in his shoulder.,gold0-reannot,pos,unl,unl,unl,unl,Someone puts his fingers in his ears.,Someone Salaad\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31884,401,Chandeliers crash to the floor. Someone,\"releases the falcon, which swoops over the crowd.\",sprints inside and increases the volume on the girder.,\"gets out of bed, searching her face for a moment.\",activates a packaged plug.,,gold0-reannot,pos,unl,unl,unl,n/a,Chandeliers crash to the floor.,Someone\nanetv_tSR4Pj_muN0,8925,The men with the skin harness jump off a crane high above a forest. We,see the ground below.,leaps over the front of the van in front of us to the pilot.,see a vast next screen.,see the dog jump a deep end.,,gold0-orig,pos,unl,unl,unl,n/a,The men with the skin harness jump off a crane high above a forest.,We\nanetv_tSR4Pj_muN0,8923,We see his back and see blood and a harness in his skin and another two men one who has the skin harness. We,see the men climbing and standing on a crane high in the sky.,see the person in gray shorts add a thermometer over the right.,shot tips and someone runs along with his help but it has n't gone on a second time until he's done.,\"focus on a bra, a piece of paper, and boxer tops that he is with and how he is.\",,gold1-reannot,unl,unl,unl,unl,n/a,We see his back and see blood and a harness in his skin and another two men one who has the skin harness.,We\nanetv_8Da6w-Eg3Ko,2052,A man starts up a gas powered hedger and hands it to someone standing on a platform. The man on the platform,trims the top of a hedge with the hedge trimmer.,starts a marathon on all the people together.,gets liquid into a tray and begins to play with in his hands.,sits on the ground in a circle.,,gold0-orig,pos,unl,unl,unl,n/a,A man starts up a gas powered hedger and hands it to someone standing on a platform.,The man on the platform\nanetv_8Da6w-Eg3Ko,19234,A man starts a chainsaw on the ground. He hands it to a man on a makeshift platform above him and he,starts trimming tall hedges.,hits a ball to the ground.,gives a nasty look.,\"starts, rotate, and starts briefly thrust his paw in the air.\",stows it in his hand.,gold0-orig,pos,unl,unl,unl,unl,A man starts a chainsaw on the ground.,He hands it to a man on a makeshift platform above him and he\nanetv_8Da6w-Eg3Ko,2053,The man on the platform trims the top of a hedge with the hedge trimmer. The platform,is towed with a tractor alongside the hedge while the man continues to trim it.,is hooked and picked up and down on his lap.,leans off his back and is using the shears to draw the hedges back.,cuts to foliage and the hedge tools are depositing on the gray canvas.,,gold0-orig,pos,unl,unl,pos,n/a,The man on the platform trims the top of a hedge with the hedge trimmer.,The platform\nanetv_8Da6w-Eg3Ko,19235,He hands it to a man on a makeshift platform above him and he starts trimming tall hedges. The first man,is on on a tractor pulling the platform forward so the man on top can cut another area of the hedge.,uses the clock to use the trimmer.,reaches the bush and uses the brush to trim leaves.,is standing in the walkway to trim his hedges.,,gold0-orig,pos,unl,unl,unl,n/a,He hands it to a man on a makeshift platform above him and he starts trimming tall hedges.,The first man\nanetv_W74AfHdwWhM,19032,There is a woman shown throwing knives into wood and taking them out. In the end the other people who are there all,sit down and eat popsicles.,measure the distance and grab them easily and shoot her at the end.,are then shown fighting with trampolines.,begins dropping into the air.,that tight stands on the barbecue.,gold0-reannot,pos,unl,unl,unl,unl,There is a woman shown throwing knives into wood and taking them out.,In the end the other people who are there all\nanetv_lW4OZ8eP3ns,8668,\"He is playing a violin, and another man is playing a guitar. They walk offscreen as they play, and we\",see rows of empty seats.,see the whispered foreign snowfall.,see a man in black shorts doing a little trick.,see it in the background.,see him talking in his dimly lit cup.,gold0-orig,pos,unl,unl,unl,unl,\"He is playing a violin, and another man is playing a guitar.\",\"They walk offscreen as they play, and we\"\nanetv_lW4OZ8eP3ns,8667,\"A man is inside a shop building. He is playing a violin, and another man\",is playing a guitar.,is standing to jump with his hammer.,is off the stage.,cleans the bottles for him.,starts to play drums.,gold1-orig,pos,unl,unl,pos,pos,A man is inside a shop building.,\"He is playing a violin, and another man\"\nanetv_lW4OZ8eP3ns,10942,He and a man with a guitar continue to play. A row of seats,blocks the view as they play.,strut around a microphone.,lights in the sky.,are shown between people singing.,lie on a table and leads into a couple of people play with one another.,gold1-orig,pos,unl,unl,unl,unl,He and a man with a guitar continue to play.,A row of seats\nanetv_lW4OZ8eP3ns,8669,\"They walk offscreen as they play, and we see rows of empty seats. The men\",\"walk into view, in front of the seats, then away.\",\"race off, leaving someone alone in front of a fence crowded in chaos.\",are their canoes down atop the shack.,take puffs on a organizing signaling a signal.,turn to each other.,gold0-reannot,pos,unl,unl,unl,pos,\"They walk offscreen as they play, and we see rows of empty seats.\",The men\nlsmdc0011_Gandhi-52415,10693,\"They all look at him with some surprise. As he speaks, he\",rises and walks to the servant.,reacts to the sound.,allows him to ride his horse.,can't say any.,looks at the collar awkwardly.,gold1-reannot,pos,unl,unl,unl,unl,They all look at him with some surprise.,\"As he speaks, he\"\nanetv_18qVzfQ9VAs,2370,A woman is standing while wearing a pair of black boots. Her boots,begin to move and kick as she starts dancing.,are tied next to a rocks on the ground.,are then using poles and attachments on a bike.,are moving on the correct ground.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is standing while wearing a pair of black boots.,Her boots\nanetv_18qVzfQ9VAs,2371,Her boots begin to move and kick as she starts dancing. She,\"moves side to side, kicking in and out.\",winces so she can't see that.,\"leans back in her chair, throwing her arms back.\",\"continues her workout, acting elegantly as the rest of the students are dancing.\",then steps away.,gold1-orig,pos,unl,unl,pos,pos,Her boots begin to move and kick as she starts dancing.,She\nanetv_18qVzfQ9VAs,2372,\"She moves side to side, kicking in and out. The woman\",is fully shown as she stops dancing and begins to speak to the camera.,continues riding around the swimming area while turning to the camera and ends by walking around and smiling to camera.,is again shown moves again when the woman walks back.,\"walks away, turning more times and talks on the way as her hands jerk on the floor.\",\"does dancing and wringing it, then put three feet on the floor and twirl.\",gold1-orig,pos,unl,unl,unl,unl,\"She moves side to side, kicking in and out.\",The woman\nlsmdc3062_SORCERERS_APPRENTICE-30978,8150,\"Back in the foyer, someone holds out someone's ring and someone magically snatches it. He\",offers up the grimhold.,laughs and accepts the tools.,is sitting in a chair at the foosball table.,stands behind someone and now copy him from the women.,slams his fist into a glass of milk.,gold0-orig,pos,unl,unl,unl,unl,\"Back in the foyer, someone holds out someone's ring and someone magically snatches it.\",He\nlsmdc3062_SORCERERS_APPRENTICE-30978,8151,He offers up the Grimhold. Someone,draws it to himself.,wakes with a start.,grabs the boy and strikes him.,jumps into a burst of flame.,stares at his anxious mother.,gold0-reannot,pos,unl,pos,pos,pos,He offers up the Grimhold.,Someone\nlsmdc1028_No_Reservations-82895,10572,\"Hearing singing, someone slows down as she nears the kitchen. She\",meets someone coming out with two plates.,glances over his shoulder and his eyes alight all the way pass him.,spits the alcohol in a clink and casts one last look.,lowers the glove onto her skirt.,\"runs off, someone removes the light from her car.\",gold0-orig,pos,unl,unl,unl,unl,\"Hearing singing, someone slows down as she nears the kitchen.\",She\nlsmdc1028_No_Reservations-82895,10573,She meets someone coming out with two plates. Someone,walks into the kitchen.,sets a lobster on one and faces him.,presses a hand to her lower lip.,turns to watch them.,,gold0-orig,pos,unl,unl,pos,n/a,She meets someone coming out with two plates.,Someone\nlsmdc1028_No_Reservations-82895,10570,\"Someone rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers. Someone\",makes her way through the crowded dining area.,places a hand in someone's lap.,looks around and checks the license pad.,comes up behind him with her arm around the young woman.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers.\",Someone\nlsmdc1028_No_Reservations-82895,10571,\"Someone makes her way through the crowded dining area. Hearing singing, someone\",slows down as she nears the kitchen.,drags one of the girls over.,slides her fist into her mouth.,holds the bagpipe to a lady.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone makes her way through the crowded dining area.,\"Hearing singing, someone\"\nlsmdc1028_No_Reservations-82895,10569,\"Someone looks sadly down at her doll, as someone goes. Someone\",\"rounds a corner and enters the restaurant, walking straight past someone who's standing by the door chatting to two customers.\",\"leaps from the tent with someone holding someone, someone is smiling, quite contentedly.\",\"glances at him, then addresses the first dog.\",\"stares at the gap in the ceiling, studying her names.\",\"comes up back in, on the other side, people sing intensely.\",gold1-reannot,pos,unl,unl,unl,unl,\"Someone looks sadly down at her doll, as someone goes.\",Someone\nanetv_LoBjzA2z2Ls,5070,Croutons are in a bowl and chopped ingredients are separated. theman,\"mix all the ingredients in a bowl to make the dressing, put plastic wrap as a lid.\",cup is boiled and mixed in sugar.,\"are drizzles, and spatula are helped assembling a shaking pan and stirred.\",freckles are sliced on a shuffleboard.,are mixed in sauce and one woman stands in the product to stirring down soil in the mix.,gold1-orig,pos,unl,unl,unl,unl,Croutons are in a bowl and chopped ingredients are separated.,theman\nanetv_LoBjzA2z2Ls,12330,Several ingredients are shown being put into a bowl and as well as cut up and wrap put on top. The woman,cooks the food as and mixes it together with the salad and stirs it up.,puts more items underneath the sheet and folds it into container.,talks in the kitchen while still speaking.,is then seen putting the bag on top and presenting it to a pot.,is then shown sitting at a table making various food and things the bags in focus.,gold1-orig,pos,unl,unl,unl,pos,Several ingredients are shown being put into a bowl and as well as cut up and wrap put on top.,The woman\nanetv_LoBjzA2z2Ls,12329,A close up of a salad is shown with a spoon mixing it around. Several ingredients,are shown being put into a bowl and as well as cut up and wrap put on top.,are shown along with more ingredients laid close while a person is seen sitting in the tub.,are cut off the plate.,are laid on a table with the ingredients sliced up.,,gold1-reannot,pos,unl,unl,pos,n/a,A close up of a salad is shown with a spoon mixing it around.,Several ingredients\nanetv_LoBjzA2z2Ls,5069,A cesar salad is eady and its served in a bowl. croutons,are in a bowl and chopped ingredients are separated.,displays a skewered - and cake handle.,is seen in a bowl on top and make a bowl in a spoon.,are rappelling up a cutting bowl and mix mixture.,content is placed onto a cake stool and then it is removed.,gold0-reannot,pos,unl,unl,unl,unl,A cesar salad is eady and its served in a bowl.,croutons\nanetv_X1bmeq4u6YE,15472,The curry is in a pan and the bread and butter are on a tray. The man,\"applies the butter, then the curry to the bread before toasting it.\",presents the ingredients on the side of the cake scale.,secures the mixer in a bowl.,is poking the pasta in the cup.,pets the oil and put pasta into a syrup.,gold0-orig,pos,unl,unl,unl,unl,The curry is in a pan and the bread and butter are on a tray.,The man\nanetv_X1bmeq4u6YE,15473,\"The man applies the butter, then the curry to the bread before toasting it. A cartoon charicature of a stick person\",dances at the end.,appears at the table in front of him.,is seen with injury being slid on a white plate.,shows a dish breakfast.,is drilling at a man.,gold0-orig,pos,unl,unl,unl,unl,\"The man applies the butter, then the curry to the bread before toasting it.\",A cartoon charicature of a stick person\nanetv_X1bmeq4u6YE,15471,A video shows how to make curry toast. The curry is in a pan and the bread and butter,are on a tray.,are added cut into place by citrus and meter.,\"is poured, with a machete on the sides.\",is treading water to reigns the little pot of water.,are added and displayed on with the fork.,gold0-orig,pos,unl,unl,unl,unl,A video shows how to make curry toast.,The curry is in a pan and the bread and butter\nanetv_G5frRzhSNJ8,7860,A boy is in a salon chair. a woman,is cutting the boy's hair.,is polishing the shoe with a brush.,flashes to the camera.,braids her hair before putting it into a hold.,is cutting a woman's hair and trying to wipe down her hair.,gold0-orig,pos,unl,unl,unl,unl,A boy is in a salon chair.,a woman\nanetv_G5frRzhSNJ8,13970,The young man shows off his new hair cut. The two hairstylists and the man,sit down and chat.,bend down and hug the ball.,zoomed in by writing a shot of his product.,puts out his shirt and lay down on it.,,gold1-orig,pos,unl,unl,unl,n/a,The young man shows off his new hair cut.,The two hairstylists and the man\nanetv_G5frRzhSNJ8,13968,She smears the pomade onto her hands and rubs it all over the hair of the young man. She,styles the hair of young man with the use of her hands and a comb.,\"stands at the top of the high, holding on rope securely in one hand.\",hangs up and puts her head down on the beam.,rests her chin on the water and pulls back her hair.,sits up on her camel and looks at pictures of people.,gold0-orig,pos,unl,unl,unl,unl,She smears the pomade onto her hands and rubs it all over the hair of the young man.,She\nanetv_G5frRzhSNJ8,13965,The female hair stylists begins by shampooing the hair of the young man. He,sits and has his cut by the hair stylists.,'s neck is being combed.,curls up and styling her hair as she talks to the camera again.,male reporter is shown interviewed.,is talking on the phone in front of a large tv screen.,gold1-orig,pos,unl,unl,unl,unl,The female hair stylists begins by shampooing the hair of the young man.,He\nanetv_G5frRzhSNJ8,13967,She juggles a few pomades. She,smears the pomade onto her hands and rubs it all over the hair of the young man.,opens her purse and flashes as she tosses the disc past the patient.,picks it up and passes it to someone.,\"grabs the hair from his face, then rocks her ankle to dry her dry hair.\",drinks from a bottle and proceeds to sip the energy from the glass.,gold0-orig,pos,unl,unl,unl,pos,She juggles a few pomades.,She\nanetv_G5frRzhSNJ8,13969,She styles the hair of young man with the use of her hands and a comb. The young man,shows off his new hair cut.,touches her hair with the wand and ruffles his hair with her long hair.,drops the blades off and hangs it on her legs.,smiles while holding a shot glass through someone's hand.,spins her hair from underneath her face and places the braids up to work her hair.,gold0-orig,pos,unl,unl,unl,unl,She styles the hair of young man with the use of her hands and a comb.,The young man\nanetv_G5frRzhSNJ8,13964,\"A woman sprays mist onto the hair of young man and she continues on to cut his hair, blow dry it, and finishes off by styling it. Two hair stylists\",stand next to a young man as they speak to a camera about justin bieber's hairstyle look.,get out of the bath and back to pink.,is shown smiling at each sitting canvas.,show a slow finer pattern on the hand to remove the contact lens lens.,,gold1-orig,pos,unl,unl,unl,n/a,\"A woman sprays mist onto the hair of young man and she continues on to cut his hair, blow dry it, and finishes off by styling it.\",Two hair stylists\nanetv_G5frRzhSNJ8,7861,A woman is cutting the boy's hair. the woman then,washes the boys hair.,combs the brushes with scissors.,styles the hair with her hair.,demonstrates how to cut the grass.,wipes the hair out of his face.,gold1-orig,pos,unl,unl,unl,pos,A woman is cutting the boy's hair.,the woman then\nanetv_G5frRzhSNJ8,13966,He sits and has his cut by the hair stylists. She,sprays a product throughout the hair of the man.,takes the cloth out from someone's hand.,leads someone across the deck and into a drill tunnel which leads into people.,\"peers at the door, showed it, and goes inside.\",,gold0-orig,pos,unl,unl,unl,n/a,He sits and has his cut by the hair stylists.,She\nlsmdc0043_Thelma_and_Luise-68511,8516,The dust from the cars is blowing across them. They just,sit looking at the grand canyon.,add the tail to the car door.,get out of the car preventing the car from entrance.,have sight of something that has no sense.,douse their cars from the same direction.,gold1-orig,pos,unl,pos,pos,pos,The dust from the cars is blowing across them.,They just\nlsmdc0043_Thelma_and_Luise-68511,8519,Someone sees people for the first time. They,\"are sitting in the car, oblivious in a way, to all the activity around them.\",sees only the man behind.,come into to the tree.,fright someone through walking.,stand behind a row of vehicles at their doors.,gold1-orig,pos,unl,unl,unl,pos,Someone sees people for the first time.,They\nlsmdc0043_Thelma_and_Luise-68511,8515,The police cars stop in a line about two hundred yards behind them. The dust from the cars,is blowing across them.,explode down the lane.,slams to a halt.,drifts onward and bumps the trucks stop.,looks up like a sky.,gold0-orig,pos,unl,unl,unl,unl,The police cars stop in a line about two hundred yards behind them.,The dust from the cars\nlsmdc0043_Thelma_and_Luise-68511,8517,\"They just sit looking at the Grand Canyon. From the canyon, the fbi helicopter\",rises up in front of the car.,shows someone walking across the beach.,\"sits on a map, which shows the surface of his computer.\",\"opens briefly, revealing a cattle below.\",heads to a sign framed by a white map.,gold0-orig,pos,unl,unl,unl,unl,They just sit looking at the Grand Canyon.,\"From the canyon, the fbi helicopter\"\nlsmdc0043_Thelma_and_Luise-68511,8520,\"They are sitting in the car, oblivious in a way, to all the activity around them. He only\",takes his eyes off of them long enough to look at someone.,\"solves the puzzle, then attempts to hammer out more and notes on the test he was in.\",see a small full of people rising up into the night.,\"makes his turn in several different motions, pans his face to have people.\",drives the car against an issue of a black safety vest.,gold0-reannot,pos,unl,unl,unl,unl,\"They are sitting in the car, oblivious in a way, to all the activity around them.\",He only\nlsmdc3060_SANCTUM-29216,10640,\"Someone greets a camera crew. In a tent office, they\",view a computer animation of the complex cave system.,find a flower camp behind both trees.,play ping - pong.,aim their lifeboats toward the loading dock.,,gold0-orig,pos,unl,unl,unl,n/a,Someone greets a camera crew.,\"In a tent office, they\"\nlsmdc3060_SANCTUM-29216,10639,\"The brunette notices a penned - in wild boar, a local woman sitting on a path, and two young men wearing grass skirts. Someone\",greets a camera crew.,opens his head back wider to reveal someone.,flips her cellphone away.,returns a t - shirt.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The brunette notices a penned - in wild boar, a local woman sitting on a path, and two young men wearing grass skirts.\",Someone\nanetv_7X_wgaRaJYQ,14386,Another person passes her under the water. Words,come onto the screen at the end.,struggle around to shoulder to the music.,a group of people head boarding in the gathering of cannons fire on the lower perimeter.,are then the back ground going it with stolen cash and hitting.,\"in the end, a person rides in a race, and closer to the camera.\",gold0-orig,pos,unl,unl,unl,unl,Another person passes her under the water.,Words\nanetv_7X_wgaRaJYQ,6886,A lady is swimming in a large pool. The lady,is dipping in and out of the water.,moves the shampoo around.,flips and dives on the water.,spins and dives into the water.,presents herself on board lathering with the camera.,gold1-orig,pos,unl,unl,unl,unl,A lady is swimming in a large pool.,The lady\nanetv_7X_wgaRaJYQ,6885,We see the opening title on the screen. A lady,is swimming in a large pool.,inserts the contact lens into the woman's hand.,stands on a sink and discusses.,holds up a bottle of ice and mixing cups.,stands upright and positions the children against a fence.,gold1-orig,pos,unl,unl,pos,pos,We see the opening title on the screen.,A lady\nanetv_7X_wgaRaJYQ,14385,A woman is swimming laps in a swimming pool. Another person,passes her under the water.,is kneeling next to her.,is outside in the ocean.,is knitting in the other's hands.,is behind her from the other side of the pool.,gold0-orig,pos,unl,unl,unl,unl,A woman is swimming laps in a swimming pool.,Another person\nanetv_2UbwK1Qtveg,9038,A man sits in a barber chair. another man with clippers,cuts the sitting man's beard.,is cutting the man's nails.,sits on the row table.,is standing in front of the mirror.,is blow drying his hair.,gold1-orig,pos,unl,unl,unl,pos,A man sits in a barber chair.,another man with clippers\nanetv_2UbwK1Qtveg,14942,A man is shaving another man's beard. The shaving it,has an excited expression on his face.,shaves off his face.,fades from black to color.,has tattoos on them.,shows all the teeth.,gold1-orig,pos,unl,unl,unl,unl,A man is shaving another man's beard.,The shaving it\nanetv_2UbwK1Qtveg,9039,Another man with clippers cuts the sitting man's beard. a third man,is shown making faces at the camera.,walks away with a coffee platform and completes it in a fifth attempt.,is lying on top of the cat to give the tattoo.,kneels something down on a pad.,shows how to cut the leg properly.,gold0-reannot,pos,unl,unl,unl,unl,Another man with clippers cuts the sitting man's beard.,a third man\nlsmdc0031_The_Lost_Weekend-65817,13681,\"Just as he is slipping out, comes. Someone\",shuts the door behind him.,slips underneath a white robe.,open the toilet paper near the fingers.,\"sits closer to the recessed wizard and nods, beside the window.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Just as he is slipping out, comes.\",Someone\nlsmdc0031_The_Lost_Weekend-65817,13679,On the armchair near the kitchen door lies someone's leopard coat. Someone,\"lies asleep on the couch, using the pillow and the comforter from someone's bed.\",washes a shoe off onto a cloth.,weeping and someone watches her get.,puts the tumbler into a welcome counter.,,gold0-orig,pos,unl,unl,unl,n/a,On the armchair near the kitchen door lies someone's leopard coat.,Someone\nlsmdc0031_The_Lost_Weekend-65817,13682,Someone shuts the door behind him. She,flings open the door and runs out.,wags an ice cigarette and hat.,sits on an empty bench as someone sips from a car.,disappears as the students step up past the violence hallway.,backtracks into the dress.,gold0-orig,pos,unl,unl,unl,unl,Someone shuts the door behind him.,She\nlsmdc0031_The_Lost_Weekend-65817,13684,She is wearing someone's foulard dressing gown. Someone,runs to the banister and looks down.,wears his long - bangs head on the train's bench.,is lying down on a bench.,steps into the elevator and moves across the hall to a bedroom.,,gold1-orig,pos,unl,pos,pos,n/a,She is wearing someone's foulard dressing gown.,Someone\nlsmdc0031_The_Lost_Weekend-65817,13686,Someone is just coming from it. He,walks down the street about ten steps when someone comes up to him.,\"is brought up to a patient, doubles over, and pumps a fist.\",tries to be exposed in the lavatory.,\"follows, shoving his nephew.\",\"is replaced by an invisible strike, the white hot - odd man's head, which means us to panic.\",gold0-orig,pos,unl,unl,unl,unl,Someone is just coming from it.,He\nlsmdc0031_The_Lost_Weekend-65817,13687,\"Someone disregards her, tries to go on. Someone\",overtakes him and blocks his way.,turns straight back to the shadows.,tosses her rifle through the air.,comes out and joins her.,is watching inside of someone's office.,gold0-reannot,pos,pos,pos,pos,pos,\"Someone disregards her, tries to go on.\",Someone\nlsmdc0031_The_Lost_Weekend-65817,13680,Very cautiously he begins to tiptoe toward the chair. He,picks up the leopard coat and starts towards the entrance door.,\"swings the hammer to fist, jumps still, open and then fall off into the dark tunnel below.\",\"runs down it, taking deep breaths and sniffing the air.\",pulls the drawer back and leads up to where someone is wounded.,has to hold back the card and meet someone's gaze.,gold0-reannot,pos,unl,unl,unl,unl,Very cautiously he begins to tiptoe toward the chair.,He\nlsmdc0031_The_Lost_Weekend-65817,13683,She flings open the door and runs out. She,is wearing someone's foulard dressing gown.,throws open a suitcase.,grabs her shoulders and punches him in the groin.,shoots as she helps someone with her back.,shows off her watch.,gold1-reannot,unl,unl,unl,unl,unl,She flings open the door and runs out.,She\nlsmdc3014_CAPTAIN_AMERICA-5348,14356,\"In a nearby recruitment booth, a man steps in front of a mirror which shows his reflected face on a body of a soldier. As a woman pulls the man away, someone steps up, only his eyes and forehead\",are reflected above the soldier's collar.,beaming tenderly as he watches people switch.,clipped to his arm.,are stained with pale blood.,,gold0-orig,pos,unl,unl,pos,n/a,\"In a nearby recruitment booth, a man steps in front of a mirror which shows his reflected face on a body of a soldier.\",\"As a woman pulls the man away, someone steps up, only his eyes and forehead\"\nlsmdc3014_CAPTAIN_AMERICA-5348,14354,An Army recruitment poster featuring Uncle someone hangs on a column. Someone,turns to where someone was standing but finds him gone.,slings a case onto the side of an armored vehicle.,poses to former promoter.,and his men file out.,timidly works her glares on a dingy motel coffee table.,gold1-orig,pos,unl,unl,unl,unl,An Army recruitment poster featuring Uncle someone hangs on a column.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5348,14355,\"Someone turns to where someone was standing but finds him gone. In a nearby recruitment booth, a man\",steps in front of a mirror which shows his reflected face on a body of a soldier.,drops a swaggers over a plush bed and turns behind him.,raises his hands in a fashion towards the door he leans toward.,\"knocks over a mustached, which pulls both pairs of his own.\",stares at a burst of junk that's held up onto the stage.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns to where someone was standing but finds him gone.,\"In a nearby recruitment booth, a man\"\nanetv_p4qZGZenAoU,11821,\"She then dances in the living room with the moisturizer on. Finally, she\",returns to the bathroom and washes her face.,\"is dancing, her camera still on the field, quickly lighting the color that none of the girl in and walks with her,\",\"picks up the hula hoop again and walks out onto the stage, dancing backward time and again.\",finishes and the camera follows a woman in a studio gym that.,comes into the screen to see a woman sitting on a bench with someone standing behind her.,gold0-orig,pos,unl,unl,unl,unl,She then dances in the living room with the moisturizer on.,\"Finally, she\"\nanetv_p4qZGZenAoU,11820,She applies a moisturizer to her face while dancing around. She then,dances in the living room with the moisturizer on.,moves upright while continuing and looking off into the distance.,brushes her hand from his face and licked the glistening makeup.,grabs wallpaper from multiple angles and whisks it up and have a bit of hairspray.,jumps down while down her nose and leaves with one shoe on.,gold0-orig,pos,unl,unl,unl,unl,She applies a moisturizer to her face while dancing around.,She then\nanetv_p4qZGZenAoU,11819,A woman with her hair up in a towel introduces her video showing how she washes her face. She,applies a moisturizer to her face while dancing around.,spreads two cucumbers onto a box before pouring it onto a present.,takes part out to wash them in a hot tub.,looks up and is talking to someone as he is seated on knitting.,shaves his face and begins clipping her clothes.,gold1-reannot,pos,unl,unl,unl,unl,A woman with her hair up in a towel introduces her video showing how she washes her face.,She\nlsmdc0030_The_Hustler-65021,18911,People just stare at him. They,\"are at a table, sipping drinks.\",take turns as someone runs out of the car.,look troubled as someone takes the injection.,stand side by side at the table.,hurry down the hall toward the tank.,gold0-orig,pos,pos,pos,pos,pos,People just stare at him.,They\nlsmdc0030_The_Hustler-65021,18910,\"She stands there, lips pursed, absorbing the insult. Someone\",gets up and reaches in his pocket for his billfold.,slips off of the card and folds his finger for a scrap of paper.,looks around as someone draws her gun and aims.,grabs her wrap and points out a stack of books in the air.,\"holds up her finger and reads it, then cringes.\",gold0-orig,pos,unl,unl,unl,unl,\"She stands there, lips pursed, absorbing the insult.\",Someone\nlsmdc0030_The_Hustler-65021,18912,\"They are at a table, sipping drinks. Someone\",shuffles a deck of cards as he talks.,puts herself another cup in someone's wine.,looks up at the captain who faces someone who nods again.,leans in close to the seat.,comes up the table and starts to leave as someone approaches the door.,gold1-orig,pos,unl,unl,pos,pos,\"They are at a table, sipping drinks.\",Someone\nlsmdc0030_The_Hustler-65021,18909,Someone is in the washroom. Someone,makes her way down the aisle and joins them at the table.,turns the blood on his head.,comes into the attic where someone is in someone's bedroom.,blazer rapidly starts its way.,opens the driver's screens.,gold0-orig,pos,unl,unl,unl,unl,Someone is in the washroom.,Someone\nlsmdc0030_The_Hustler-65021,18913,\"Someone, like a schoolboy, listens intently. Someone\",\"sits apart, watching them both.\",finds him as if she is no makeup.,returns to the collapsible.,gives the camera a screwdriver.,cocks her head back and eyes him.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone, like a schoolboy, listens intently.\",Someone\nanetv_f9eW4rFQG-A,1776,Two men are on a boat and they are sailing across the water over fish. An underwater view is then shown and you,can see the bottom of the ducks body.,will have to go over.,can see the water boat coming on.,can see two people standing and kayaking.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are on a boat and they are sailing across the water over fish.,An underwater view is then shown and you\nanetv_f9eW4rFQG-A,1777,\"Several men and boats are then shown and one mail catches a fish. After, a man dressed in all black is underwater and a water helicopter is\",shown then the man goes back under water holding the camera and playing with large fish.,held a large boat in water surrounded with other person in the river.,flying a jet and the water covered the sail in the water.,talking to the two dogs and talking on the jet.,repeated on a near land trail.,gold0-reannot,pos,unl,unl,unl,unl,Several men and boats are then shown and one mail catches a fish.,\"After, a man dressed in all black is underwater and a water helicopter is\"\nanetv_VEXswbPrwxE,9571,The man runs around dodging the charging bull. The man,drops his hat in the ring.,does the karate stance as the young man swings the croquet stick and places his orange bat round the table.,grimaces spiked and felled.,runs up and catches the frisbee to the bull.,swings wildly when another woman comes to him.,gold0-orig,pos,unl,unl,unl,unl,The man runs around dodging the charging bull.,The man\nanetv_VEXswbPrwxE,9569,A bull comes out of the gate at a rodeo and man in the ring jumps on then off his back. The man,picks up his fallen hat in the ring.,\"continues running down the track around the dirt, shooting him once again after another moment.\",grabs the frisbees and jumps off of the harness.,runs to the male and pulls him to distract the bull by the bull in people.,ties up the cow and pauses to speak to the camera.,gold0-orig,pos,unl,unl,unl,pos,A bull comes out of the gate at a rodeo and man in the ring jumps on then off his back.,The man\nanetv_VEXswbPrwxE,9570,The man picks up his fallen hat in the ring. The man,runs around dodging the charging bull.,lifts his right hand and bows it in his goateed hands.,starts to tighten the colored strap on his jacket.,spins as he stretches his arm through the.,continues to demonstrate how to drum the drum up as the rake.,gold0-orig,pos,unl,unl,unl,unl,The man picks up his fallen hat in the ring.,The man\nanetv_VEXswbPrwxE,9572,The man drops his hat in the ring. The man,jumps on the wall to avoid the bull.,talks into the screen and pours the drink.,attempts to brush his teeth.,is ironing the spike mask.,finishes and resumes martial.,gold0-reannot,pos,unl,unl,unl,unl,The man drops his hat in the ring.,The man\nanetv_VEXswbPrwxE,9573,The man jumps on the wall to avoid the bull. Another man,opens the gate and calls to the bull to enter the pin.,runs back down and shoots the man.,spins around tricks on the room ramp.,comes down the stairs towards the men.,crashes into the ground.,gold0-reannot,pos,unl,unl,unl,unl,The man jumps on the wall to avoid the bull.,Another man\nanetv_br8Ao_UBEZA,8546,Two men enter the racquetball room. The two men,\"start playing racquetball, running around the room trying to hit the ball.\",kneel at each other in the wrestling ring and begin fighting.,run up and stand on his line.,stand at the crotch wrestling line.,run two men forward and side on stage on a raised bench.,gold0-orig,pos,unl,unl,unl,unl,Two men enter the racquetball room.,The two men\nlsmdc3020_DEAR_JOHN-10126,14342,Someone's eyes remain downcast. He,\"lifts his head and glances at someone, blinking pensively.\",stares at someone as he drops his hand to his hands and knees.,\"stands, then stands up and turns toward a doorway.\",lays the ring on his fingers and quickly puts it in his pocket and dials a number.,stares back at isildur.,gold0-orig,pos,unl,unl,unl,pos,Someone's eyes remain downcast.,He\nlsmdc3020_DEAR_JOHN-10126,14340,Someone watches someone as she stands with someone at a snack kiosk. Someone,\"bows his head, avoiding someone's gaze.\",gently closes someone's hands as they shake hands.,\"pulls her close beside someone, gazing out at the vast expanse of city with other pedestrians.\",\"saunters along a sidewalk, while two women watch in his chaise.\",passes outside.,gold1-orig,pos,unl,unl,unl,unl,Someone watches someone as she stands with someone at a snack kiosk.,Someone\nlsmdc3020_DEAR_JOHN-10126,14341,\"Someone bows his head, avoiding someone's gaze. The patient's lips\",twitch into a wincing smile.,creep up of a faint near - wind.,spread into a professional smirk.,spread into a slightly smile.,form a thoughtful expression.,gold0-orig,pos,unl,pos,pos,pos,\"Someone bows his head, avoiding someone's gaze.\",The patient's lips\nlsmdc3013_BURLESQUE-5061,15351,As someone backs out of her spot. Someone,takes out a crowbar and smashes someone's passenger window as she drives past.,slips down on a chain with a box around it and pulls it off.,looks directly at the tv.,\"flinches, then gets a bracelet.\",chases at the server.,gold0-orig,pos,unl,unl,unl,unl,As someone backs out of her spot.,Someone\nlsmdc3013_BURLESQUE-5061,15350,Someone gives an incredulous stare. As someone,backs out of her spot.,approaches for someone as she runs.,returns to the pruning plant.,\"blinks, someone smiles and shrugs.\",\"lingers on us, someone looks a little pleased in himself.\",gold0-orig,pos,unl,unl,unl,unl,Someone gives an incredulous stare.,As someone\nlsmdc3013_BURLESQUE-5061,15355,She finds someone sleeping in the bed. Someone,rolls her eyes resentfully and pulls the doors shut.,\"closes his eyes, pensively.\",crosses to a pair of metal doors swinging.,sits in a chair watching her.,gingerly covers her face then folds her arms across her chest.,gold0-orig,pos,unl,unl,pos,pos,She finds someone sleeping in the bed.,Someone\nlsmdc3013_BURLESQUE-5061,15353,\"Now someone arrives home in a red clingy dress. Eyeing the daybed, she\",\"pauses briefly, then crosses to the french doors and opens them.\",lifts her gaze from his daughter in a beaded blue dress.,sets her reflection down and bites her lower lip.,approaches a disgruntled black - cut brunette.,pulls open her file.,gold1-orig,pos,unl,unl,unl,unl,Now someone arrives home in a red clingy dress.,\"Eyeing the daybed, she\"\nlsmdc3013_BURLESQUE-5061,15354,\"Eyeing the daybed, she pauses briefly, then crosses to the French doors and opens them. She\",finds someone sleeping in the bed.,\"shifts herself licks, and stops.\",removes one glasses from her mouth and exhales.,sees someone's look that she is standing in the doorway.,carries a slim six - odd penguin downstairs.,gold0-reannot,pos,unl,unl,unl,unl,\"Eyeing the daybed, she pauses briefly, then crosses to the French doors and opens them.\",She\nlsmdc3013_BURLESQUE-5061,15352,\"With an indignant gape, she peels off. Someone\",flings the crowbar back into her trunk.,pauses and peers up to the ambulance with a wagon still facing the second policeman.,\"looks a little admiring, then gazes at himself in a mirror.\",\", on the front of the tower, watches someone down the engraved alley.\",watches from from the gate aboard the band then joins four military guests at a base.,gold0-reannot,pos,unl,unl,unl,unl,\"With an indignant gape, she peels off.\",Someone\nanetv_gnZssGiQC7A,333,A man at a professional sports event performs a long jump over a pit of sand in front of a stadium filled with people. The man,begins by encouraging the audience to clap by throwing his hands up at the crowd and gesturing for applause.,speaks to the screen very close with what you can see he ends several athletes engaging in an indoor soccer game.,begins to go around a building with his stilts and competing as athletes perform martial competitions.,walks wild alongside people in the same rough and shop of a heighten stadium.,continues to stretch successfully with images of the man and fencing moves and measure in slow motion.,gold0-reannot,pos,unl,unl,unl,unl,A man at a professional sports event performs a long jump over a pit of sand in front of a stadium filled with people.,The man\nlsmdc1029_Pride_And_Prejudice_Disk_One-83425,3984,\"Upstairs, someone is leaning on her dressing table, studying her own reflection. She\",\"practices a few facial expressions, smiles.\",\"stares nervously at the fbi, which turns away.\",\"appears filling her long skirt for a gem, for her.\",\"smiles coyly as her older brother watches, pleasantly glazed and amused.\",\"makes a good move, cupping the back of her head with her hands.\",gold0-orig,pos,unl,unl,pos,pos,\"Upstairs, someone is leaning on her dressing table, studying her own reflection.\",She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83425,3981,\"Meanwhile, downstairs, someone is working late in his study, poring over the household accounts. He\",\"marks up a book, puts his quill back in its pot.\",\"slips the canoe past an upper section of the passageway, quickly emerges as through the chopper door.\",\"rolls onto the control platform, his shotgun in hand.\",carries number dogs down to the hall.,'s on new equipment again.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, downstairs, someone is working late in his study, poring over the household accounts.\",He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83425,3983,\"With a sly look to the side, he reaches for a drinks decanter. Upstairs, someone\",\"is leaning on her dressing table, studying her own reflection.\",\"wears a wide club that lies on the ground, his face splattered with sweat.\",sets the tray case down in front of someone's mallet.,\"walks out of the canvas room, carrying an envelope.\",,gold0-orig,pos,unl,unl,unl,n/a,\"With a sly look to the side, he reaches for a drinks decanter.\",\"Upstairs, someone\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83425,3982,\"He marks up a book, puts his quill back in its pot. With a sly look to the side, he\",reaches for a drinks decanter.,pulls out someone's hat and dials another number.,dashes down the hall.,scoops up the kitten.,finds the locket he is holding.,gold0-reannot,pos,unl,unl,unl,unl,\"He marks up a book, puts his quill back in its pot.\",\"With a sly look to the side, he\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19190,\"Someone tries to clamber up onto the ledge. As he does, the ring\",slips out of his shirt and dangles in full view of someone!,slows to a stop.,manages to fall off the road.,moves in whirlwind.,lands someone at the throat.,gold0-orig,pos,unl,unl,unl,unl,Someone tries to clamber up onto the ledge.,\"As he does, the ring\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19196,\"Someone blinks, masking the malice of his eyes with their heavy pale lids. Someone\",creeps close to someone and whispers in his ear.,picks someone up to cut someone hard.,pulls him into an enormous square tower.,\"sighs tearfully, awkwardly despairingly at someone.\",aims his wand at someone.,gold0-orig,pos,unl,pos,pos,pos,\"Someone blinks, masking the malice of his eyes with their heavy pale lids.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19195,Someone's out - stretched hand suddenly grasps someone's arm pulling him safely onto the ledge. Someone,glares down at someone.,\"stops, picks up and winds up.\",gawks with his shoulder appraisingly then removes the other sunglasses and undoes the handcuffs.,runs along the walkway and gets out of bed.,grabs a thread by his finger and wraps it on his wrist.,gold0-orig,pos,unl,pos,pos,pos,Someone's out - stretched hand suddenly grasps someone's arm pulling him safely onto the ledge.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19194,\"Startled, someone looks down at someone, losing his footing in the process. Someone's out - stretched hand\",suddenly grasps someone's arm pulling him safely onto the ledge.,tries to deliberately ominously towards someone.,\"enters the mic, and plants his paddle on it.\",gets his head to a dive.,,gold0-orig,pos,unl,unl,unl,n/a,\"Startled, someone looks down at someone, losing his footing in the process.\",Someone's out - stretched hand\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19191,\"As he does, the ring slips out of his shirt and dangles in full view of someone!. Lose on: someone\",rears back in shock tenses like a cat.,lugs off the tank towards the people.,manages to release it as the video closes in.,and someone rush out to dance.,\"kneels nearby, coming toward two other trucks.\",gold1-orig,pos,unl,unl,unl,unl,\"As he does, the ring slips out of his shirt and dangles in full view of someone!.\",Lose on: someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60864,19193,\"Someone, head bowed, trying to pull himself up. Startled, someone\",\"looks down at someone, losing his footing in the process.\",gulps back some relief.,\"spots the man, quickens jumps on the edge of the stage.\",\"stares inside, listening.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone, head bowed, trying to pull himself up.\",\"Startled, someone\"\nlsmdc1059_The_devil_wears_prada-98816,2262,\"Someone's wearing a black, off - the - shoulder gown. Someone\",spots someone with a chic lady on his arm.,\"walks to his room, staring at ames, and plods away, looking at the ceiling of an approaching ceiling.\",\"bites through her straw, obscuring her hair but instantly becomes still.\",returns to the operations room to paddleboards esu staying behind.,\", still hugging someone, sits again, close by the mirror, someone out the ring.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone's wearing a black, off - the - shoulder gown.\",Someone\nlsmdc1059_The_devil_wears_prada-98816,2261,\"Inside at the benefit, people follow someone around as she greets guests, prompting her as to who they are. Someone\",\"'s wearing a black, off - the - shoulder gown.\",gazes at the group of blonde women standing before him.,plays in a circle as two women stand in the other.,edges out of the way as he meets someone by the mouth of steps.,\"returns as he walks past her, disappearing into the murky depths.\",gold0-reannot,pos,unl,unl,unl,unl,\"Inside at the benefit, people follow someone around as she greets guests, prompting her as to who they are.\",Someone\nanetv_SvYeqLg4dQU,18574,A replay with overlaid graphics is shown. The man,continues to play pool.,celebrates by washing hands.,pushes briefly and comes over to the end of the fallen.,rides up the coach and stretches.,looks over to show a score wave.,gold1-orig,pos,unl,unl,unl,pos,A replay with overlaid graphics is shown.,The man\nanetv_SvYeqLg4dQU,18573,An overhead view of a blue pool table is shown. A man,takes shot with the cue.,talks to the camera about swimming.,is laying stone onto the ground.,weaves his body while wearing a surf board.,is shown on a stone court and begins to spin himself around the net.,gold0-orig,pos,unl,unl,unl,unl,An overhead view of a blue pool table is shown.,A man\nanetv_SvYeqLg4dQU,16991,The man holds out his billiards stick to line up a shot then takes the shot. The man,chalks the end of his pool cue and walks to the corner of the table.,continues to talk while laughing to one another.,brings the sack toward a truck and places it on his cricket case.,makes the same shot at the other for his own.,enters and hands across the table.,gold1-orig,pos,unl,unl,unl,unl,The man holds out his billiards stick to line up a shot then takes the shot.,The man\nanetv_SvYeqLg4dQU,16990,Professional pool players play a game of billiards in a competition. The man,holds out his billiards stick to line up a shot then takes the shot.,throw a javelin and lands very far about dropping rear the ground.,extends his hand and turns to the big orchestra.,sat on the parallel bar to keep the lanka on his belt and stand in front the crowd.,,gold0-orig,pos,unl,unl,unl,n/a,Professional pool players play a game of billiards in a competition.,The man\nanetv_SvYeqLg4dQU,16992,The man chalks the end of his pool cue and walks to the corner of the table. The man,leans over pumps the cue stick between his fingers before taking a shot.,bounces and taps the goalie on the shoe.,carves a cheap circle floor with the wrapping paper.,moves a flip into the sand and slides a goal out to peel them off.,\"is talking and shake wooden drumsticks for his performance, without stops.\",gold0-orig,pos,unl,unl,unl,unl,The man chalks the end of his pool cue and walks to the corner of the table.,The man\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13093,He looks at someone with surprise. The man in the chair,\"gets to his feet and turns, revealing himself to be someone.\",\"ticks up, a junior cut of a man followed by an old civil tumbled hurrying down some stairs.\",\"looks at him, and continues to swing his hands under her chin.\",\"walks out of shot, taking his charcoal and covering the orb with of index finger.\",stands for a moment then looks over and directly hands the camera to someone.,gold1-orig,pos,unl,unl,pos,pos,He looks at someone with surprise.,The man in the chair\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13081,Someone grabs him and pushes him ahead. Someone,leads someone down the hallway as he searches for someone.,hobbles painfully against the grave area.,\"looks awkwardly, then leans closer and puts his wife's arm in his back, which is now set against one shoulder.\",sees someone's back in the room.,,gold0-orig,pos,unl,unl,unl,n/a,Someone grabs him and pushes him ahead.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13092,They only see a hand reach out. He,looks at someone with surprise.,is in hand.,notices the broken keys of a fish as he watches the man feed.,reach the office.,gives one to the two of them which a man has caught.,gold0-orig,pos,unl,unl,unl,unl,They only see a hand reach out.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13088,Someone releases his grip on someone and shoves her toward someone. She,is propelled directly into his arms.,slams the weapon against the pavement.,puts her hand behind someone's head.,gets up and steps down into the sunlight.,,gold0-orig,pos,unl,unl,pos,n/a,Someone releases his grip on someone and shoves her toward someone.,She\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13082,Someone leads someone down the hallway as he searches for someone. He,opens a door and enters.,runs to it and looks up.,closes the kitchen door behind her.,backs away.,\"drops to her knees, and looks around.\",gold1-orig,pos,unl,unl,unl,unl,Someone leads someone down the hallway as he searches for someone.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13078,\"He is so pissed off, he literally rips a machine gun from the hands of one of the startled soldiers. He\",\"turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room.\",\"faces someone, who had been standing in her doorway, making three fingers high into the glass.\",\"peer down from it, shaking to recent time by a distant flying youtube panel.\",\"approaches an empty partition paneled door, tries a knob from the corner and shoots it.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He is so pissed off, he literally rips a machine gun from the hands of one of the startled soldiers.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13083,He opens a door and enters. People,\"rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage.\",\"dismount to round someone, reaches up and moves it.\",writhe in ashes and the turn round revealing someone smoking from a cereal box.,come through the glass doors and circle an empty street.,arrive in a third office - - one of the six - class crates.,gold0-orig,pos,unl,unl,unl,unl,He opens a door and enters.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13097,She takes the Grail Diary from him. Someone,takes a look for herself - - then glances up at someone.,\"reaches out his hand, kisses it up, then kisses it.\",\"looks at the matches, then finds the pen written in pink letters.\",covers a big book.,speaks to the clerk.,gold1-orig,pos,unl,unl,unl,unl,She takes the Grail Diary from him.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13079,\"He turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room. Someone\",looks shocked and horrified.,\"looks at the first woman, a better determined look at her on the side and take a step back away.\",blaster someone is lighter and the same nervous getting into the elevator.,doles out more balls.,switches to the stereo and gets off his board.,gold0-orig,pos,unl,unl,unl,unl,\"He turns and sprays the room with machine gun fire, cutting all three someone to ribbons and blowing them backwards across the room.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13090,Someone crosses the room toward a high - backed chair facing the fireplace. People,do not have the advantage of seeing who is sitting in that chair.,- view meet her in a berth.,steps more as a bus faces the screen.,\"set with a deep frown, someone glances up at the crowd.\",share a passionate kiss.,gold1-orig,pos,unl,unl,unl,pos,Someone crosses the room toward a high - backed chair facing the fireplace.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13084,\"People rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage. He\",\"looks at someone, then back to his father.\",writhes in pain as if in an angry line of his brain.,turns quickly to the two men standing above him and walks past boss and footprints.,\"runs out of her office, locks her eyes to the door, smashes him into the wall.\",\"is an alert and shabby - looking sergeant on earth, about semi - darkness of time.\",gold0-orig,pos,unl,unl,unl,unl,\"People rush back into the room where someone had been left, only to find: a nazi colonel holding someone hostage.\",He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13095,Someone smiles benignly and flips through the Grail Diary. Someone,rushes to someone's side.,places a paper box of piece paper in a box and pokes the letter with a palm.,arrive at the fire with him.,\"enters, leaving someone getting into her father's study.\",uncoils the interrogator's eyes then points wildly.,gold0-orig,pos,unl,unl,unl,unl,Someone smiles benignly and flips through the Grail Diary.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13080,Someone looks shocked and horrified. Someone,grabs him and pushes him ahead.,glances down at missing someone's hand then hands the giant to someone.,pulls a bow ring from his pocket.,eyes his depiction: golf outfit and a black.,eyes him suspiciously then suddenly shifts his thoughtful gaze.,gold0-orig,pos,unl,unl,unl,pos,Someone looks shocked and horrified.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13085,\"He looks at someone, then back to his father. Everyone\",is yelling at once.,looks up at someone and nods.,\"walks out of the kitchen, towards someone, coffee 45 in his hands.\",\"looks on, then sees someone coming out of the hall as someone walks into the common room.\",watches someone go to the gathering room.,gold0-reannot,pos,unl,unl,pos,pos,\"He looks at someone, then back to his father.\",Everyone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70315,13087,\"He drops the machine gun to the table and it slides across, shattering glass. Someone\",releases his grip on someone and shoves her toward someone.,\"walks out with the audience of his students, screaming.\",finds the prone spot under a plastic cover.,\"sits on someone, gazing up at the ceiling.\",looks up at someone as he looks around him.,gold1-reannot,pos,unl,unl,unl,pos,\"He drops the machine gun to the table and it slides across, shattering glass.\",Someone\nanetv_0gLAhptj34w,1157,A close up of a fooseball table is shown with two people playing. The people,move the poles all along the table pushing a ball.,continue to play the drums on the stage.,continue playing with one another while stands underneath to speak to the camera.,plays cards and two people walk back into small groups.,continue playing getting led down the road while people watch on the sidelines.,gold0-orig,pos,unl,unl,unl,unl,A close up of a fooseball table is shown with two people playing.,The people\nanetv_0gLAhptj34w,14180,Two people are playing against each other in a game of Foosball. The left person,reaches down and grabs the ball.,lays down onto a table behind another man.,\"drops the ball in the net, and tries to keep up.\",lifts his right hand in circles with the paddle.,,gold0-orig,pos,unl,unl,unl,n/a,Two people are playing against each other in a game of Foosball.,The left person\nanetv_0gLAhptj34w,1158,The people move the poles all along the table pushing a ball. The two,continue to play back and fourth.,begin hitting each other to one another.,continue playing volleyball and play with one another.,continue hitting the ball and speak to each other.,continue to play while walking away from one another.,gold1-orig,pos,unl,unl,pos,pos,The people move the poles all along the table pushing a ball.,The two\nanetv_0gLAhptj34w,14182,The left person spins the left pole fast. We,see the white team score a goal.,man hugs his guys side.,wee the right hand and the zest's become visible.,see the fish vapor cross.,\"the hydraulic new bulb, we see the end title screens.\",gold1-orig,pos,unl,unl,unl,unl,The left person spins the left pole fast.,We\nlsmdc0009_Forrest_Gump-50574,7596,Someone pulls someone up onto the stage. The other vets,follow someone pushes onto the stage and push him toward the microphones.,girls follow him as someone descends.,agent flexes her other leg.,bigger surrounds the official 'tail.,,gold1-orig,pos,unl,unl,unl,n/a,Someone pulls someone up onto the stage.,The other vets\nlsmdc0009_Forrest_Gump-50574,7597,The other vets follow someone pushes onto the stage and push him toward the microphones. Someone,raises his fist as the crowd cheers wildly.,\"sits in a chair, staring at his window.\",shifts someone's troubled gaze.,buries his face in people's shoulder.,,gold0-orig,pos,unl,unl,pos,n/a,The other vets follow someone pushes onto the stage and push him toward the microphones.,Someone\nanetv_RWTLd_0BeAg,12414,One of the girls leaves and the other girl continues dancing alone. She,starts throwing the batons in the air.,watches her after her mother do cartwheels and does other gymnasts.,\"then 2 dance, salsa leaves.\",turns to the someone and sister standing up.,holds the boy to the end and they speak together to dance again.,gold0-orig,pos,unl,unl,unl,unl,One of the girls leaves and the other girl continues dancing alone.,She\nanetv_MSSb3wPd5hM,9022,People in a marching band are standing on an open area playing cymbals and drummers. people,are standing in the background watching the matching band.,are standing in front of the judges watching.,\"are talking to the camera and a man begins speaking, over and over on the stage.\",are doing a routine on a stage trying to place a picture in the wall.,are standing on the sidewalk watching the band.,gold1-orig,pos,pos,pos,pos,pos,People in a marching band are standing on an open area playing cymbals and drummers.,people\nanetv_MSSb3wPd5hM,11387,A group of people are seen playing instruments next to one another. The,continue to play while the front row turns around.,continue playing while the camera zooms in on one's television.,shake their fingers to each other.,plays and play around as well as speaking to the camera.,play a song with one another while playing the drums.,gold1-orig,pos,unl,unl,pos,pos,A group of people are seen playing instruments next to one another.,The\nanetv_MSSb3wPd5hM,11388,The continue to play while the front row turns around. The front row,moves all around one another as they continue to play.,shows the three again in the building.,is repeated back and forth.,makes the first jump from the room.,is shown and it's displaying wheelie eyes.,gold0-orig,pos,unl,unl,unl,unl,The continue to play while the front row turns around.,The front row\nanetv_bNwrAuu0qiQ,11558,An intro leads into several pictures of a tennis player and leaders into video footage of the player playing matches. The tennis player,is shown in several shots of games performing incredible stunts and clenching his fists to celebrate in the end.,shows him how to play a game of hockey moving with one another when powdered more pom effects are taken.,\"attempts to walk down one after, tossing and banging with one another.\",\"comes after him, misses and flips a few times and continues to climb the lane in the whole game.\",\"is shown by a ball, one being played by the teams he is trying to solve.\",gold0-reannot,pos,unl,unl,unl,unl,An intro leads into several pictures of a tennis player and leaders into video footage of the player playing matches.,The tennis player\nanetv_c7fu7RcM2iE,1584,Each man does a set of multiple jumps in a continuous line. The filming,is interrupted by building staff.,crashes the wheel onto the ground.,slows down as he heads away.,lowers for the first time.,,gold0-orig,pos,unl,pos,pos,n/a,Each man does a set of multiple jumps in a continuous line.,The filming\nanetv_c7fu7RcM2iE,1583,The men run together in a group. Each man,does a set of multiple jumps in a continuous line.,takes up and adds a fire.,lowers the hands to the ground as they run.,pours mops together in a bucket.,spins round and leads the others around the left both.,gold0-orig,pos,unl,unl,unl,unl,The men run together in a group.,Each man\nanetv_c7fu7RcM2iE,1582,A group of men do freestyle running jumps throughout the city. The men,run together in a group.,all walk along the sidelines to watch another event.,perform backstroke chi while others stand around.,race into the black capped steel.,leap onto a building for the first time.,gold0-orig,pos,unl,unl,unl,pos,A group of men do freestyle running jumps throughout the city.,The men\nlsmdc0016_O_Brother_Where_Art_Thou-55592,1412,\"He tackles him and, with his hands wrapped round someone's throat, the two roll over. They have rolled through some brush and their bodies\",are now halfway into a clearing.,are kissing on the floor.,\"are moving angrily on each other, then ogles the two men's legs.\",lie all down around the floor.,,gold0-orig,pos,unl,pos,pos,n/a,\"He tackles him and, with his hands wrapped round someone's throat, the two roll over.\",They have rolled through some brush and their bodies\nanetv_4_3m_-SGzXw,3292,Man is in a room with a digital paper machine and the machine is printing a sign. men,are sticking the wallpaper to a white wall.,is in a long room in the middle of the screen.,are going in front of the blower.,stand on the front of a house.,,gold1-orig,pos,unl,unl,pos,n/a,Man is in a room with a digital paper machine and the machine is printing a sign.,men\nanetv_4_3m_-SGzXw,3291,Graphic about how to do digital wallpaper is shown. man is in a room with a digital paper machine and the machine,is printing a sign.,is being hung low.,is cleaning construction paper.,goes using an object on a treadmill on the wall.,is painting ski uses.,gold0-orig,pos,unl,unl,unl,unl,Graphic about how to do digital wallpaper is shown.,man is in a room with a digital paper machine and the machine\nanetv_98OypfeTKEc,18160,Thre women are swinging on the yard of a school. women,are in courtyard of a school having fun on swings.,are mowing the grass while doing a dance dance with the ladies who enjoy fencing just watch.,walk around to the customer while his to the two children.,are raking up raking a dirt path.,are practicing the heat dribble and don't have to stop.,gold0-orig,pos,unl,unl,unl,unl,Thre women are swinging on the yard of a school.,women\nanetv_98OypfeTKEc,1271,People are swinging on a swing set. A woman in a black jacket,is on the first swing.,walks out of the room.,bends down near her pinata.,walks into the girl.,stands walking behind her.,gold0-orig,pos,unl,unl,pos,pos,People are swinging on a swing set.,A woman in a black jacket\nanetv_98OypfeTKEc,1272,A woman in a black jacket is on the first swing. A woman in white pants and a brown shirt,is on the last swing.,walks through her.,\"is shoveling, while still laughing.\",is standing next to tyler.,,gold0-reannot,pos,unl,pos,pos,n/a,A woman in a black jacket is on the first swing.,A woman in white pants and a brown shirt\nlsmdc1057_Seven_pounds-97616,16820,He pulls up in a parking spot outside a large institutional - looking building with the stars and stripes hanging over the door. Someone,gets out of his car and admires a shiny bmw convertible parked beside him.,\"peers out of the forecourt, watches as harry snakes its way along the shelves.\",enters the perfect place as the huge figure sits with his back over him.,watches in horror as he struggles the street way.,gapes as someone follows.,gold0-orig,pos,unl,unl,unl,unl,He pulls up in a parking spot outside a large institutional - looking building with the stars and stripes hanging over the door.,Someone\nlsmdc1057_Seven_pounds-97616,16821,\"Someone gets out of his car and admires a shiny bmw convertible parked beside him. Elderly ladies, one on a Zimmer,\",shuffle down a corridor.,leave the door as the man exits the building.,watch moonlit monks through a pile of trees.,watch them push the club.,lets himself onto the bike.,gold0-orig,pos,unl,unl,unl,unl,Someone gets out of his car and admires a shiny bmw convertible parked beside him.,\"Elderly ladies, one on a Zimmer,\"\nlsmdc1057_Seven_pounds-97616,16824,Someone reaches for a pad. But he,\"grabs her wrist, then is aware of someone.\",guides someone to the elevator.,does n't sound - - he continues singing on the sidewalk.,climbs the first scout ladder.,points towards the door.,gold0-orig,pos,unl,unl,unl,pos,Someone reaches for a pad.,But he\nlsmdc1057_Seven_pounds-97616,16823,A suited man sits on the edge of someone's bed. Someone,reaches for a pad.,kisses a guy shirt.,\"lies on his side in the bath, only to rub his face.\",\"lies on the bed fully clothed, drenched in eyed.\",flips over the bar.,gold1-reannot,pos,unl,unl,unl,unl,A suited man sits on the edge of someone's bed.,Someone\nanetv_Qre7RVxEn78,14041,The man pierces both of his ears. He,gets up off the table and looks at his piercings in the mirror.,presses a button on the gas lighter.,hands the woman the wound but he can't speak.,claws over the camera.,keeps his fire left on goal.,gold0-orig,pos,unl,unl,unl,unl,The man pierces both of his ears.,He\nanetv_Qre7RVxEn78,10276,A man's ear is shown close up. A man,shows the tool he is going to use to pierce his ear.,is shown standing in front of a bike in a room.,is talking in the bathroom as he lifts the weight over his head before forcing his face into the toilet basin.,is equipped on a large bar.,takes drinks from the drinks.,gold0-orig,pos,unl,unl,unl,unl,A man's ear is shown close up.,A man\nanetv_Qre7RVxEn78,10277,A man shows the tool he is going to use to pierce his ear. He,\"inserts the needle, piercing his ear.\",is using an electric razor to shave a horse on his legs.,points around the car to the other side.,\"advances on a panel, pulling him up from the ground.\",uses the binoculars to talk about the video he is about.,gold0-orig,pos,unl,unl,unl,unl,A man shows the tool he is going to use to pierce his ear.,He\nanetv_Qre7RVxEn78,14039,A young man with a marked dot for ear piercing is laying on a medical table. Another young man,shows a large ear piercing tool to the camera.,washes in front of several cars of cars.,is in the organ standing and holding a harmonica.,takes picture as he washes the dog.,,gold0-orig,pos,unl,unl,unl,n/a,A young man with a marked dot for ear piercing is laying on a medical table.,Another young man\nanetv_Qre7RVxEn78,10278,\"He inserts the needle, piercing his ear. He then\",\"adds a tube, creating a gauge.\",\"lies down, banging his eyes shut in confusion.\",grabs a razor and toothpaste.,thumps his fist to his mouth.,,gold0-orig,pos,unl,unl,unl,n/a,\"He inserts the needle, piercing his ear.\",He then\nanetv_Qre7RVxEn78,14040,Another young man shows a large ear piercing tool to the camera. The man,pierces both of his ears.,holds his paw and points at his father's ear.,uses his toothbrush from a bathroom in front of the camera.,removes the mans legs and sharpens the metal leg.,,gold0-reannot,pos,unl,unl,unl,n/a,Another young man shows a large ear piercing tool to the camera.,The man\nanetv_1sA-lEbrgak,4465,The man lifts it over his head and his score his shown afterwards. He,does this several more times.,see a bike and a man welding right below blue.,forces another and starts by walking out to the sand and turning it over.,comes out and poses for the player to throw a black discuss against a guy.,male man appears with javelins and then landing into the center of the ring.,gold0-orig,pos,unl,unl,unl,unl,The man lifts it over his head and his score his shown afterwards.,He\nanetv_s9Wop4PMZaw,15088,Two young children are seen riding on a camel past a group of people and a man leading them along. The man,continues to lead the camel around with the children on top and ends with them climbing down and others walking up.,rubs a truck with the missed rope to get a horse down and ends with a woman speaking to the camera.,is then seen brushing the paper and leads into several clips of people riding by dogs.,bends down and takes the phone off.,maneuvers in the water and shows a camel with some bloody camels.,gold0-orig,pos,unl,unl,unl,unl,Two young children are seen riding on a camel past a group of people and a man leading them along.,The man\nanetv__WMRdq7yFpA,17730,\"He swims away from the camera, looking back. He then\",\"turns sideways, still watching and swimming.\",sees people picking up a pole and pulling down several other other people.,moves his eyes off himself.,holds his kayak by lifting lifts above his head.,,gold0-orig,pos,unl,unl,pos,n/a,\"He swims away from the camera, looking back.\",He then\nanetv__WMRdq7yFpA,11414,He breathes bubbles as he goes through the water. He,looks back momentarily at the camera.,takes a deep breath.,\"leads them down a bridge, a view of upraised torso and flying along the platform.\",\"stands on the main deck, leaning against a wall of lockers in the icy ground.\",,gold0-orig,pos,unl,unl,unl,n/a,He breathes bubbles as he goes through the water.,He\nanetv__WMRdq7yFpA,11413,A man is diving deep into the ocean. He,breathes bubbles as he goes through the water.,uses the open hand to bomb the fish into the hole.,grins back and forth as he walks up into the bass wax and begins to smooth out dance.,jumps off the diving board.,is surfing the waves in the water.,gold0-orig,pos,unl,unl,unl,unl,A man is diving deep into the ocean.,He\nanetv__WMRdq7yFpA,17729,A man is diving under the ocean water. He,\"swims away from the camera, looking back.\",does a spin stand in the water.,gets a pole off a ledge.,\"dismounts, and falls into the sea.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is diving under the ocean water.,He\nlsmdc0004_Charade-47730,10423,\"Who, like everyone else, leave the table and stand together at the rail watching. She rises on tip - toes and kisses him gently; his only reaction\",is to look at her.,\"is to apply his mind to life, but someone's laughter has glum.\",would n't take in her.,has a soft spot of her lips.,goes on his lips and his expression hardening.,gold0-orig,pos,unl,unl,unl,unl,\"Who, like everyone else, leave the table and stand together at the rail watching.\",She rises on tip - toes and kisses him gently; his only reaction\nlsmdc3088_WHATS_YOUR_NUMBER-42303,12907,\"Under a bright lamp, she painstakingly works on one of her sculptures. She\",picks up a cell phone and reads a string of text messages starting with someone's phone number.,\"pulls it off, exposing her breasts.\",spots the ball and makes his way to the perimeter of the court.,\"turns the vibrating back on the table, then rubs her double.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Under a bright lamp, she painstakingly works on one of her sculptures.\",She\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15752,\"In a dressing room, someone watches someone put on make - up. She\",stands and faces him.,\"ventures through the glass into the vacant lounge, pulling two shelves full of equipment.\",\"beams at someone, who raises his eyebrows.\",\"trots to the corner of the room, where the six men gathered and mimics someone.\",trots past a dining room.,gold0-orig,pos,unl,unl,unl,unl,\"In a dressing room, someone watches someone put on make - up.\",She\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15756,\"Someone watches someone step out onto stage. On stage, she\",glances at someone and takes a seat at the piano.,comes across the surface of the piano.,plays the air and walks to the street.,\"leans backwards, facing someone.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone watches someone step out onto stage.,\"On stage, she\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15753,Someone notices the young man. He,\"points, then leaves.\",pulls up the phone.,stands over the piano.,removes someone's cap off.,walks over to someone.,gold1-orig,pos,unl,unl,unl,pos,Someone notices the young man.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15751,\"Someone flutters her arms overhead. In a dressing room, someone\",watches someone put on make - up.,\"vacuums a fireplace, slashing with a disturbed look as she strolls past doorway.\",finds someone forgotten above all the beach trunks.,performs in little bang - class whites un - in.,,gold0-orig,pos,unl,unl,unl,n/a,Someone flutters her arms overhead.,\"In a dressing room, someone\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15754,They peer into the auditorium. Someone,\"bows, then exits the stage with the other dancers.\",fill the mic with a brief knowing gaze.,hurries out and leads someone into the hallway.,eyes the masked agents shyly.,turns and looks up at a woman.,gold0-orig,pos,unl,pos,pos,pos,They peer into the auditorium.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15757,\"On stage, she glances at someone and takes a seat at the piano. On stage, someone\",sets her fingers on the keys and nervously looks over the crowd.,sits on a bench and watches her sister playing with the doll.,\"stands over the waves of the crowd, wildly watching the dancers.\",dances with someone as she dances.,,gold0-orig,pos,unl,unl,unl,n/a,\"On stage, she glances at someone and takes a seat at the piano.\",\"On stage, someone\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15755,The house is full of enthused faces. Someone,watches someone step out onto stage.,takes the boy out from the frame.,walks to the auditorium.,opens it and gawks.,steps out through the building and out the door.,gold1-reannot,pos,unl,unl,unl,pos,The house is full of enthused faces.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-522,15750,\"As someone hurries onstage with several dancers, someone heads off. Someone\",flutters her arms overhead.,faces him with a forgotten gait.,\"grabs his hand and walks with him, holding up on him.\",strolls into a workshop and sits at a desk.,looks alternately at the high - rise and fires a dazzling blaze of light to them.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone hurries onstage with several dancers, someone heads off.\",Someone\nanetv_g2uL6H3fP1c,19994,\"The man finishes, grabs his shirt, and walks off. We\",see video clips in the closing screen.,fence behind him and we see a scraper tiles the man's back on the carpet.,\"see the man on the man, rogers' metal squeezer and put guy cloth on the floor.\",\", his fasten tail with a sub makes several other runs and the little girl from the clip did on green.\",we see a skate park reception and the man turns to the start to press his beer.,gold0-orig,pos,unl,unl,unl,unl,\"The man finishes, grabs his shirt, and walks off.\",We\nanetv_g2uL6H3fP1c,19992,The man flips around and does Capoeira moves. We,see the man do a handstand on one hand.,guy steps in and back to.,\"couple walks back to the camera, flipping upside down.\",see the man throw a discus.,,gold0-orig,pos,unl,unl,pos,n/a,The man flips around and does Capoeira moves.,We\nanetv_g2uL6H3fP1c,19989,We see a man walking in a parking lot. The man,starts performing martial arts moves.,makes it and the man sits down in the corner.,skates around and plays the bagpipes.,takes off the tire and pulls a skateboard into it.,clear his shovel shingles shovel with a tool.,gold0-orig,pos,unl,unl,unl,pos,We see a man walking in a parking lot.,The man\nanetv_g2uL6H3fP1c,19988,We see an animated opening screen. We,see a man walking in a parking lot.,see a person riding a raft in a kayak.,see the melon products inside and see the logo website.,see the man using the machine in the game.,see a bunch of men jump on the screen.,gold0-orig,pos,unl,unl,unl,unl,We see an animated opening screen.,We\nanetv_g2uL6H3fP1c,19991,The man removes his shirt and necklace. The man,flips around and does capoeira moves.,takes a few drinks off of the bowling toy.,throws the disk to the lady.,stretches his arms and returns to his bike.,turns the sign to a cameraman.,gold1-orig,pos,unl,unl,unl,unl,The man removes his shirt and necklace.,The man\nanetv_g2uL6H3fP1c,19990,The man starts performing martial arts moves. The man,removes his shirt and necklace.,begins singing and cheering and smiling.,continues talking to grab shoes.,kneels down and stands weights.,,gold0-reannot,pos,unl,unl,unl,n/a,The man starts performing martial arts moves.,The man\nanetv_g2uL6H3fP1c,19993,We see the man do a handstand on one hand. The man,\"finishes, grabs his shirt, and walks off.\",lifts his hair off his shoulders.,gets into the man and curls his blindfold.,finishes gesturing talking and takes off the hubcap.,wrestles the man with the glasses.,gold0-reannot,pos,unl,unl,unl,unl,We see the man do a handstand on one hand.,The man\nanetv_R4yz8nXO5hI,7111,A person paints flowers onto a white canvas with a fine brush. The person,removes the painting from the table and shows the finished product.,put sand on the surface.,then uses paint lines to sprinkle more paint on it.,is cleaning the woman's hair with a spray brush before cutting it with paint.,,gold0-reannot,pos,unl,unl,unl,n/a,A person paints flowers onto a white canvas with a fine brush.,The person\nanetv_mDaZqz7lB0o,2423,An intro of what seems to be an Indian man is shown and documenting his everyday life. The man,is then shown playing on a small organ with a microphone attached to it.,appears with white signs next to him then takes the knife to cut the knife.,plays a first man miners christmas with a painting.,uses his tools how to ski and ski down the steep mountain after his equipment exercising.,,gold1-orig,pos,unl,unl,unl,n/a,An intro of what seems to be an Indian man is shown and documenting his everyday life.,The man\nanetv_mDaZqz7lB0o,17878,A man sits a piano with his hands placed on the keys. the man,begins playing the piano.,plays a song over and over.,adjusts the radio while the camera captures his movements.,enters a set of keys.,switches off the lights on the band.,gold0-orig,pos,unl,unl,unl,unl,A man sits a piano with his hands placed on the keys.,the man\nanetv_mDaZqz7lB0o,2424,The man is then shown playing on a small organ with a microphone attached to it. The camera then moves to capture the vacancy of the room and the man,is shown playing the flute.,laying on the ground while he flies toward the camera and ends with his routine.,lying on the floor assisting him and silently.,lets go of the hook and turns off a frame.,,gold1-reannot,pos,unl,unl,pos,n/a,The man is then shown playing on a small organ with a microphone attached to it.,The camera then moves to capture the vacancy of the room and the man\nanetv_M2OoQFcDflU,15232,A tray of chips are shown on a table. A person,is dealing cards onto the table.,is using a dish washer to clean its ingredients.,pouring ingredients into a small pot.,is rubbing small bowls with pumpkins.,beats sticks axes and makes a goal.,gold1-orig,pos,unl,unl,unl,unl,A tray of chips are shown on a table.,A person\nanetv_M2OoQFcDflU,15233,A person is dealing cards onto the table. People sitting at the table,give each other high fives.,start to dance and start to drink in the cups as a judge leaves hand on top.,is putting stuff in their glasses.,\", holding wrapping paper supplies.\",is by drinking smoke.,gold0-orig,pos,unl,unl,unl,unl,A person is dealing cards onto the table.,People sitting at the table\nanetv_H9ekrZnisUI,13194,Outside in the yard there is a lady dressed like a cupcake and she is playing a game of cricket. She hits the yellow ball but it,does not move very far at all.,'s hard for the goal.,'s not for it as she gets a cup of flattened and shoves it into the oven to throw it into the background.,is trying to recover the ball.,bounces in the air and blow away from it.,gold0-orig,pos,unl,unl,unl,unl,Outside in the yard there is a lady dressed like a cupcake and she is playing a game of cricket.,She hits the yellow ball but it\nanetv_H9ekrZnisUI,13196,She has a little bit of trouble trying to get a good position to hit the ball again. When she finally hits it again it,does not go through the course like she was expecting so she is disappointed.,scores and lands in the trash can that is still been successful.,pins the ball out of the box.,ends like a turban twisting.,drops in the sand and does n't fall off a chair.,gold0-reannot,pos,unl,unl,unl,unl,She has a little bit of trouble trying to get a good position to hit the ball again.,When she finally hits it again it\nanetv_H9ekrZnisUI,13195,She hits the yellow ball but it does not move very far at all. She,has a little bit of trouble trying to get a good position to hit the ball again.,is playing wooden ball.,flips away from a side of the field.,moves and moves into the field.,can be seen at once.,gold0-reannot,pos,unl,unl,unl,unl,She hits the yellow ball but it does not move very far at all.,She\nanetv_PXBcPu2_KOo,4347,An athlete climbs on the pommel horse to perform jumps and flips. The athlete,flips backwards and then continues with her routine.,does a final jump and runs over the gym.,pounces on him and takes up speed and handsprings.,\"does many forward flips in his maneuvers, spins and spins.\",does a flip and lands near the bars.,gold1-reannot,pos,unl,unl,pos,pos,An athlete climbs on the pommel horse to perform jumps and flips.,The athlete\nlsmdc3016_CHASING_MAVERICKS-6136,17781,\"Wearing an ear - to - ear grin, he paddles toward shore. He\",nears a younger surfer as a swell creeps up behind them.,spots him at the lighthouse.,climbs onto a barn barn and opens a door to some small children standing behind her.,pulls out a massive wave.,,gold0-orig,pos,unl,unl,unl,n/a,\"Wearing an ear - to - ear grin, he paddles toward shore.\",He\nlsmdc3016_CHASING_MAVERICKS-6136,17782,He nears a younger surfer as a swell creeps up behind them. The novice,gets to his feet.,shifts his mill gaze.,bops their heads standing before someone steps off.,meets someone's open eyes.,\"boxer sits up behind them, sharing a lingering gaze.\",gold1-orig,pos,unl,unl,pos,pos,He nears a younger surfer as a swell creeps up behind them.,The novice\nlsmdc3016_CHASING_MAVERICKS-6136,17783,\"The scowling boy sits with his pals at the top of the steps, tapping a bat in his hand. Someone\",gives it a light tap and walks on.,steps onto a catwalk and leaps over a railing.,\"steps up to someone, covering his face with his hands.\",\"looks down for a moment, then returns in the main room.\",looks behind him as he picks his car up.,gold1-orig,pos,unl,unl,unl,unl,\"The scowling boy sits with his pals at the top of the steps, tapping a bat in his hand.\",Someone\nanetv_TcrLMpMA1WM,16594,A man is kneeling down in front of a pile of sticks. He,lights the sticks on fire.,pushes a plaster to the wall.,takes them off then goes under a pile of sand.,turns around and stares at it.,\"begins as playing it, as he shows it and throw it as far as he can.\",gold0-orig,pos,unl,unl,unl,unl,A man is kneeling down in front of a pile of sticks.,He\nanetv_TcrLMpMA1WM,16595,He lights the sticks on fire. He,takes sticks out of a bucket and starts another fire.,limps away from the burning embers in the burning house.,covers the floor with a red fire as he does so.,takes a small puff of his cigarette.,,gold0-orig,pos,unl,unl,pos,n/a,He lights the sticks on fire.,He\nanetv_TcrLMpMA1WM,797,\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it will help bring it back up. With a pocket bellow even when its wet it will still build a fire really well back up it just\",takes more time and patience.,seems like a drink from a radiator.,seems it is getting cleaned.,seems like an journey.,,gold0-orig,pos,unl,unl,pos,n/a,\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it will help bring it back up.\",With a pocket bellow even when its wet it will still build a fire really well back up it just\nanetv_TcrLMpMA1WM,795,The man is hunched over on the the ground trying to build a fire by himself. It,'s all about adding oxygen at the right time once you have started a nice fire.,hands the device over its full head.,is then seen in a arts manner he runs and turns very pretty and reclined in the grass.,fly out of the fire.,is the means of fever that there has been actually altogether way.,gold0-orig,pos,unl,unl,unl,unl,The man is hunched over on the the ground trying to build a fire by himself.,It\nanetv_TcrLMpMA1WM,796,\"It's all about adding oxygen at the right time once you have started a nice fire. Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it\",will help bring it back up.,flows from the container near the top of a pipe.,takes him very hard.,would look great if it were the midst of the swimming goal.,turns around and put on his back.,gold0-orig,pos,unl,unl,unl,unl,It's all about adding oxygen at the right time once you have started a nice fire.,\"Also, if the fire is dead or dying you just hit it with a little bit more oxygen and it\"\nanetv_0H_9zlnmW4U,2361,A man is seen standing in a large field and leads into him moving his arms and legs around the area. The man,continues moving around the area moving his hands up and down and looking off into the distance.,then begins riding down a fourth board in the pit while others watch on the side.,continues moving around the gym using a camera and moving around the area.,continues to play with the drums and ends with him walking away to demonstrate clips of him playing and doing moves.,still throws the ball into the man while a man lining up the area with the other hand.,gold0-reannot,pos,unl,unl,unl,pos,A man is seen standing in a large field and leads into him moving his arms and legs around the area.,The man\nlsmdc3069_THE_BOUNTY_HUNTER-4686,3675,\"Outside, the thug makes a call. Reaching his suv, he\",ends the call and gets in.,lands at a split.,draws up his gun and aims at an unseen zombie someone.,offers someone a slip.,grabs a gun and aims.,gold0-orig,pos,unl,unl,unl,pos,\"Outside, the thug makes a call.\",\"Reaching his suv, he\"\nlsmdc3069_THE_BOUNTY_HUNTER-4686,3677,\"Later, he pops the trunk. Someone\",throws the flare aside and punches someone in the crotch.,turns an armored case toward the land of cirith 2013.,meets his daughter's gaze.,answers her calendar.,stands and pushes the mower away.,gold1-orig,pos,unl,unl,unl,unl,\"Later, he pops the trunk.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4686,3676,\"He sets down a newspaper article featuring someone's name and photo as the credited writer. In his car, someone\",notices smoke wafting from the back.,\"walks off with a dejected look, then walks over.\",makes his way towards the front door.,sinks to the floor.,tosses down a bundle of cash.,gold1-orig,pos,unl,unl,unl,pos,He sets down a newspaper article featuring someone's name and photo as the credited writer.,\"In his car, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-4686,3680,\"As he arrives at a desk, an aging blonde swivels to face him. Someone\",shifts his sheepish gaze.,hauls her niece to the floor.,\"watch someone approach, then switches off his lights.\",presses his knuckles gently.,,gold0-orig,pos,unl,pos,pos,n/a,\"As he arrives at a desk, an aging blonde swivels to face him.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4686,3679,\"Now, In Atlantic City, a storefront sign reads, Souvenirs, someone's Gifts. The hulking goateed guy, someone,\",arrives sporting two black eyes and a gash across his nose ,watches a bizarre memory file through his eyes.,sits in a shabby room.,\"climbs to a table, then wades down a corridor.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Now, In Atlantic City, a storefront sign reads, Souvenirs, someone's Gifts.\",\"The hulking goateed guy, someone,\"\nlsmdc0030_The_Hustler-64820,17259,\"She unloads liquor and canned goods from the carton, then goes to join someone by the window. Someone\",takes a cigarette lighter out of her purse and hands it to someone.,places someone's hand resting on the back of the chair as she lays her hand on his shoulders and strokes his arm.,\"gallops along a polished sidewalk, with party buildings in central square.\",runs across the office to her first graduate student.,,gold1-orig,pos,unl,unl,pos,n/a,\"She unloads liquor and canned goods from the carton, then goes to join someone by the window.\",Someone\nlsmdc0030_The_Hustler-64820,17258,He pulls her schoolbooks out of the carton and takes her purse. She,\"unloads liquor and canned goods from the carton, then goes to join someone by the window.\",waits under someone's pillow as he digs out a phone.,knocks down the last taste of a rag and looks out.,tosses it on the floor and draws it in his pointy cup.,\"rolls down it, then wipes a wood mark on the splendid splinter.\",gold0-orig,pos,unl,unl,unl,unl,He pulls her schoolbooks out of the carton and takes her purse.,She\nlsmdc0005_Chinatown-48024,13845,\"Move along the red tiled roof and down to a lower level of the roof where someone 'feet are hooked over the apex of the roof and someone himself is stretched face downward on the tiles, pointing himself and his camera to a veranda below him where the girl and someone are eating. Someone\",is clicking off more shots when the tiles his feet are hooked over come loose.,carries the box of coins into a pocket beside them.,watches as someone gets in from the car.,\"by frame, the pretty girl raises her cigarette in front of her face then strides off.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Move along the red tiled roof and down to a lower level of the roof where someone 'feet are hooked over the apex of the roof and someone himself is stretched face downward on the tiles, pointing himself and his camera to a veranda below him where the girl and someone are eating.\",Someone\nlsmdc0005_Chinatown-48024,13844,Someone and the girl seem blissfully unaware of them. Turns again and they,\"row past someone and the girl, someone again clicking off several fast shots.\",quickly get this haircut.,'re both amd smile.,trot down one side.,see us stare back with horror into the eye of someone.,gold1-orig,pos,unl,unl,unl,pos,Someone and the girl seem blissfully unaware of them.,Turns again and they\nlsmdc0005_Chinatown-48024,13854,The Customer is shrinking back into the chair. Someone,\"comes bursting in, slapping a newspapers on his thigh.\",gazes sadly at an old factory and watch him gravely.,has a gun and starts scrubbing it up.,\"steps stiffly silently, and looks at them confidently.\",,gold0-orig,pos,unl,unl,unl,n/a,The Customer is shrinking back into the chair.,Someone\nlsmdc0005_Chinatown-48024,13843,\"He shoots past someone, expertly running off a couple of fast shots. Someone and the girl\",seem blissfully unaware of them.,duel after the cops stroll across lush woodland.,zoom out and prone.,climbs the grand staircase.,,gold0-orig,pos,unl,unl,pos,n/a,\"He shoots past someone, expertly running off a couple of fast shots.\",Someone and the girl\nlsmdc0005_Chinatown-48024,13847,But a fragment off the cracked edge of the tile falls. He,tries to slow himself down.,tosses a empty whiskey bottle onto the dock.,comes onto the blazing screen.,uses his hands to wash his face.,,gold0-orig,pos,unl,unl,pos,n/a,But a fragment off the cracked edge of the tile falls.,He\nlsmdc0005_Chinatown-48024,13846,Someone is clicking off more shots when the tiles his feet are hooked over come loose. Someone,begins a slow slide down the tile to the edge of the roof and possibly over it to a three - story drop.,slap down a wall.,raises his hands in grim air.,strains in her feet.,,gold0-orig,pos,unl,pos,pos,n/a,Someone is clicking off more shots when the tiles his feet are hooked over come loose.,Someone\nlsmdc0005_Chinatown-48024,13851,\"In the style of the Hearst yellow press, there is a heart - shaped drawing around one of the photos that someone had taken. A self - satisfied smile\",comes to someone 'face.,is seen on her forehead.,is facing someone's face.,is within her rippling gaze.,is built inside the gallery.,gold0-orig,pos,unl,pos,pos,pos,\"In the style of the Hearst yellow press, there is a heart - shaped drawing around one of the photos that someone had taken.\",A self - satisfied smile\nlsmdc0005_Chinatown-48024,13849,\"He rises, looks up to the roof. He\",looks to the girl.,takes off a jacket with a hair tie.,tin down; a little door is closed in the front door.,turns to the helicopters and starts right off.,manages to keep the room open.,gold0-orig,pos,unl,unl,unl,unl,\"He rises, looks up to the roof.\",He\nlsmdc0005_Chinatown-48024,13852,\"Someone gets out of the chair. Someone, a little concerned,\",\"tries to restrain him, holding onto the barber sheet around someone 'neck.\",goes outside to greet him.,walks through the room.,coolly starts to off the building.,is now at someone's side.,gold0-reannot,pos,unl,unl,unl,unl,Someone gets out of the chair.,\"Someone, a little concerned,\"\nlsmdc0005_Chinatown-48024,13850,\"He looks to the girl. In the style of the Hearst yellow press, there\",is a heart - shaped drawing around one of the photos that someone had taken.,are spectators clapping and clapping as the competition begin.,\"is a shop entrance where someone hotel, lights in an apartment.\",is a padded quality with the name of her horror.,are several clips of characters involved in curling outfits.,gold0-reannot,pos,unl,unl,unl,pos,He looks to the girl.,\"In the style of the Hearst yellow press, there\"\nanetv_nEcOF04KK0g,14834,He prepares the shoe for shining. He,explains his method of shoe shining.,uses the machine to practice up more and points.,licks from his fingers and puts his face in the pan.,\"strums, showing each drink steadily.\",\"darts across the grass, passing a long field of plants.\",gold0-orig,pos,unl,unl,unl,unl,He prepares the shoe for shining.,He\nanetv_nEcOF04KK0g,14833,A man stirs shoe shine crafting materials into a jar. He,prepares the shoe for shining.,enters the hot embers and next to the insides.,retrieves a welding match in the lock.,lays it on the tight wall.,films the drinks correctly in a room inside.,gold0-orig,pos,unl,unl,unl,unl,A man stirs shoe shine crafting materials into a jar.,He\nanetv_nEcOF04KK0g,14835,He explains his method of shoe shining. The man,shines the top of a shoe and finishes by fixing the laces of the shoe.,has white lotion back then ads gel to it and applies the applies to the mans leg.,moves the slide his shoe.,begins wiping the shoe.,,gold0-orig,pos,unl,unl,pos,n/a,He explains his method of shoe shining.,The man\nlsmdc0009_Forrest_Gump-50495,2685,Three planes dive down toward the jungle. Someone,\"runs, carrying someone.\",props down a gun and contemplates her hands.,throws someone among the literature.,holds out the ship's engineer.,hangs with one knee.,gold0-orig,pos,unl,unl,unl,unl,Three planes dive down toward the jungle.,Someone\nlsmdc0009_Forrest_Gump-50495,2675,\"Someone drops someone down at the bank, next to the other wounded soldiers. Someone\",\"grabs someone by the shirt, angry.\",\"flings up a sip of water, holds the torch over the boat doors and becomes a massive tank for his fellow students.\",puts two rifles down the.,\"stands and stares at the casket, which stands, forming beneath his toes.\",\"strides out the open window, his hands shaking.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone drops someone down at the bank, next to the other wounded soldiers.\",Someone\nlsmdc0009_Forrest_Gump-50495,2680,Someone removes the frond to look at the wound. Someone's chest,has been blown open.,is heard and open.,knits as someone tries to pull himself free.,heaves as they sit on the surface.,,gold1-orig,pos,unl,unl,unl,n/a,Someone removes the frond to look at the wound.,Someone's chest\nlsmdc0009_Forrest_Gump-50495,2689,Someone and the other wounded soldiers wait for a rescue helicopter. Someone,looks down at someone.,pays someone and puts the emergency ticket outside.,\"turns to someone, the back of the plane.\",shoots a dart from their seats.,,gold0-orig,pos,unl,unl,pos,n/a,Someone and the other wounded soldiers wait for a rescue helicopter.,Someone\nlsmdc0009_Forrest_Gump-50495,2681,Someone's chest has been blown open. Someone,looks around as he hear the voices of the enemy.,\"looks at her grave, then glowers, nods slowly, commenting on the typed notes.\",throws the bowl - shaped tray into the oven.,throws someone out of the door and into the ring.,\"looks up at the crowd, staring at his own notes.\",gold0-orig,pos,unl,unl,unl,unl,Someone's chest has been blown open.,Someone\nlsmdc0009_Forrest_Gump-50495,2674,Someone fires his pistol at the unseen enemy as someone pulls him away. Someone,\"drops someone down at the bank, next to the other wounded soldiers.\",\"someone, she tricks with a new shield.\",reaches for his weapon and kicks at the retreating attacker with his sword.,struggles to pull his in.,lifts his head slightly.,gold1-orig,pos,unl,unl,pos,pos,Someone fires his pistol at the unseen enemy as someone pulls him away.,Someone\nlsmdc0009_Forrest_Gump-50495,2684,Someone looks up in fear. Three planes,dive down toward the jungle.,explode out of the station which are led between the two.,have softened through the forest.,\"are apart from cars, including someone.\",stop her from leaving behind.,gold0-orig,pos,unl,unl,unl,unl,Someone looks up in fear.,Three planes\nlsmdc0009_Forrest_Gump-50495,2677,Someone gets up and runs as someone yells after him. Someone,runs through the jungle searching for someone.,takes her hand and starts to dance at the fireplace.,\"drags him to the collar of the suit, snags it hard and grips someone by the scruff.\",sneaks with all the other students walk backstage and sings.,saunters down a white corridor.,gold0-orig,pos,unl,unl,unl,pos,Someone gets up and runs as someone yells after him.,Someone\nlsmdc0009_Forrest_Gump-50495,2678,Someone runs through the jungle searching for someone. Someone,slows down and looks around carefully.,spots the flaming snatching.,stares nervously at him as he makes his way into an elevator.,shakes someone's hand then steps away.,,gold0-orig,pos,unl,unl,unl,n/a,Someone runs through the jungle searching for someone.,Someone\nlsmdc0009_Forrest_Gump-50495,2688,Someone carries someone to the bank of the river. Someone and the other wounded soldiers,wait for a rescue helicopter.,get into the bus.,tread water in the other way.,sit down from the dock.,,gold0-orig,pos,unl,pos,pos,n/a,Someone carries someone to the bank of the river.,Someone and the other wounded soldiers\nlsmdc0009_Forrest_Gump-50495,2679,Someone slows down and looks around carefully. Someone,looks up as he lies on the ground.,appears on the phone with a needle.,sashays away into the courtyard.,kisses someone at the top of the neck and in the temple.,'s footprints appear on the homestead windows facing the upper window.,gold1-orig,pos,unl,unl,pos,pos,Someone slows down and looks around carefully.,Someone\nlsmdc0009_Forrest_Gump-50495,2686,The fireballs explode behind him. The entire jungle area,is in flames as someone runs.,is filled with troopers.,blocks her as it explodes and waves over its movements.,clears as the skiff flies backwards.,is covered by sailors people.,gold1-orig,pos,unl,unl,unl,unl,The fireballs explode behind him.,The entire jungle area\nlsmdc0009_Forrest_Gump-50495,2687,The entire jungle area is in flames as someone runs. Someone,carries someone to the bank of the river.,picks up a metal shield and strides off.,\"watches them run, picking by their roommates.\",stands with his hands in his pockets and flashes a faint smile.,is racing in the swarm.,gold0-orig,pos,unl,unl,unl,pos,The entire jungle area is in flames as someone runs.,Someone\nlsmdc0009_Forrest_Gump-50495,2673,Someone gets up as someone yells. Someone,fires his pistol at the unseen enemy as someone pulls him away.,shredded breeches and travels off with their oxygen masks.,bobs his hips and shakes someone's hand.,\"drives away from someone, but he looks shocked.\",goes to the heavyset female executive.,gold0-orig,pos,unl,unl,pos,pos,Someone gets up as someone yells.,Someone\nlsmdc0009_Forrest_Gump-50495,2676,\"Someone grabs someone by the shirt, angry. Someone\",gets up and runs as someone yells after him.,gets off of a car into the large parking lot and hits the police button on a van.,keeps an eye on someone.,dashes off down the busy street and drives away into the dark traffic.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Someone grabs someone by the shirt, angry.\",Someone\nlsmdc0009_Forrest_Gump-50495,2682,Someone looks around as he hear the voices of the enemy. Someone,carries someone through the jungle.,lifts his locket from his hand and holds his wife in his hand.,glances over someone's shoulder to back off.,begins to drift back and forth across the floor.,launches rapidly to someone.,gold0-reannot,pos,unl,unl,unl,unl,Someone looks around as he hear the voices of the enemy.,Someone\nlsmdc0009_Forrest_Gump-50495,2683,The roar of approaching planes is deafening. Someone,looks up in fear.,stares into the venom amiably beside him.,unplugs an overhead projector as someone breaks.,fills the sky like a spear.,'s flames engulf the atrium which launches under the skyscraper's roof.,gold0-reannot,pos,unl,unl,unl,unl,The roar of approaching planes is deafening.,Someone\nanetv_9IvKkq9k81o,410,A person is seen sitting at a table and cutting out an outline on the pumpkin. The man continues cutting the pumpkin and the camera,zooms in on it's face in the light and in the dark.,captures the nails on her hands.,zooms in on a pumpkin in the end.,pans out to the man speaking to the package.,pans around on a couch and begins cutting through cats nails.,gold1-orig,pos,unl,unl,unl,unl,A person is seen sitting at a table and cutting out an outline on the pumpkin.,The man continues cutting the pumpkin and the camera\nanetv_9IvKkq9k81o,6324,A man is seen sitting in a chair carving a pumpkin. The man,pushes a knife along the pumpkin.,turns around and stops cutting the grass with a bobble.,puts on his dots and resumes clipping.,continues carving it into the pumpkin.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen sitting in a chair carving a pumpkin.,The man\nanetv_9IvKkq9k81o,6325,The man pushes a knife along the pumpkin. He,looks to the camera and continues cutting.,continues carving a pumpkin pumpkin in the pumpkin.,carves to see the barber again.,pushes it across the table before clipping the twigs down.,presents the next piece of sliced apple.,gold0-orig,pos,unl,unl,unl,unl,The man pushes a knife along the pumpkin.,He\nanetv_9WmsYbZl1pw,7901,\"A purple onion, celery and parsley then get chopped up individually and each individually gets thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more. A finger dips into the bowl to get a sample out and mixing\",continues for a bit longer.,boiling water in a spoonful pot that was now extremely heated.,tops with half cooked vegetables and sharp it.,contents onto it's bread.,,gold0-orig,pos,unl,unl,unl,n/a,\"A purple onion, celery and parsley then get chopped up individually and each individually gets thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more.\",A finger dips into the bowl to get a sample out and mixing\nanetv_9WmsYbZl1pw,7904,\"Some white shredded food gets thrown onto the grill and is stirred around by a black spatula. Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food\",is scooped up and put onto the meat and cheese.,is cooker and then continues at the bottom.,is placed and sliced with paints on it.,end is applied onto the bread.,are shown left finished on the table.,gold0-orig,pos,unl,unl,unl,unl,Some white shredded food gets thrown onto the grill and is stirred around by a black spatula.,\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food\"\nanetv_9WmsYbZl1pw,7899,An introduction of 6 different small videos of foods appear and there's text below that say's Steve's cooking. A large piece of raw meat appears on a white plate and the word Reuben,flashes a few times on it as it's shown in various different angles.,comes to the screen and original poodle.,appears on between the two men with a pan of garlic.,is peddling for a little about how to get it.,\"appears on the screen, different words cooking logos onscreen.\",gold1-orig,pos,unl,unl,unl,pos,An introduction of 6 different small videos of foods appear and there's text below that say's Steve's cooking.,A large piece of raw meat appears on a white plate and the word Reuben\nanetv_9WmsYbZl1pw,7903,A small brush with melted butter begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled. Some white shredded food,gets thrown onto the grill and is stirred around by a black spatula.,lie on a counter and moved to it then put the sugar part under the bowl.,are placed on a red - cake table and then the girls more time peeps the postcards.,\", the lid is white.\",,gold1-orig,pos,unl,unl,unl,n/a,A small brush with melted butter begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled.,Some white shredded food\nanetv_9WmsYbZl1pw,7900,\"An empty large clear bowl is shown and mayonnaise, ketchup, relish, worcesterchire sauce, and hot sauce get spooned into the bowl. A purple onion, celery and parsley then get chopped up individually and each individually gets\",thrown into the bowl where it begins to get mixed by a whisk and then seasoned with salt and pepper and mixed some more.,\"loosely cut from round, with about four bowls of pepper before it goes to a different effect.\",sharpened by lettuce and placed between it using tools until chopped like knives.,cut and add a tray of tomatoes to sharpen the knife.,placed on a pan in the empty bowl with the cookies to them.,gold0-orig,pos,unl,unl,unl,pos,\"An empty large clear bowl is shown and mayonnaise, ketchup, relish, worcesterchire sauce, and hot sauce get spooned into the bowl.\",\"A purple onion, celery and parsley then get chopped up individually and each individually gets\"\nanetv_9WmsYbZl1pw,7905,\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food is scooped up and put onto the meat and cheese. The mixed sauce from the clear bowl is then shown being spread onto the bread with a spoon and the meat, cheese and shredded white food\",\"is put onto the bread, topped with the other bread, and then sliced in half diagonally.\",items together and two more and spirits are shaped on top to the mix.,is grilled on the into the top.,is placed in the pan with a bolt of bread.,is placed on top of a napkin and placed and on the bread.,gold0-orig,pos,unl,unl,unl,unl,\"Thin slices of meat appear next to the white shredded food and they get topped with 3 slices of swiss cheese and covered with a white bowl until the cheese melts, then the white shredded food is scooped up and put onto the meat and cheese.\",\"The mixed sauce from the clear bowl is then shown being spread onto the bread with a spoon and the meat, cheese and shredded white food\"\nanetv_9WmsYbZl1pw,7897,There's a sandwich that is still whole and has been cut in half into a triangular shape and white words pop up on the screen noting that it's a Reuben sandwich. A man in the kitchen appears and he's putting seasonings into a pan and he,starts swishing the pan around.,is then shown socks on top of it.,takes it and begins mixing it to replace the best pasta dish.,stirs the ingredients for properly.,slices the sandwich with a velvet bowl.,gold0-orig,pos,unl,unl,unl,unl,There's a sandwich that is still whole and has been cut in half into a triangular shape and white words pop up on the screen noting that it's a Reuben sandwich.,A man in the kitchen appears and he's putting seasonings into a pan and he\nanetv_9WmsYbZl1pw,7902,A finger dips into the bowl to get a sample out and mixing continues for a bit longer. A small brush with melted butter,begins to butter bread on both sides which gets put onto a flat grill and flipped until both sides are grilled.,\"is bottled and the edges are put in the oven, added to the bowl.\",\"is shown, puts all the ingredients on the plate and blends it together.\",is being added to the bowl.,,gold0-reannot,pos,unl,unl,pos,n/a,A finger dips into the bowl to get a sample out and mixing continues for a bit longer.,A small brush with melted butter\nanetv_4ImpZRtbzYw,5578,The girl is then seen outside sanding down the table and leads into her painting the table. Several shots of the table,\"are shown as well as lists drawn out, paper being rolled, and laid out onto the table.\",are shown followed by shows fans in large glasses sitting on the floor.,are shown as well as a woman moving up and down with her hands standing on each side of a bar.,are shown followed by the person decorating in various colors and braids while others gift theirs to the camera.,are shown followed by interviews symphony members following a choreographed dance.,gold1-orig,pos,unl,unl,unl,unl,The girl is then seen outside sanding down the table and leads into her painting the table.,Several shots of the table\nanetv_4ImpZRtbzYw,2721,She then sands down the table and dips a brush into paint. She then,paints all around the table while sanding more and finally laying down wax.,measures it in white paper and places it on the beams.,sprays the baking soda with a sponge and trails down the top of it.,cleans her brush on a nail and gives up a final product.,uses a paper brush with fire paints and paint to paint it.,gold1-orig,pos,unl,unl,unl,pos,She then sands down the table and dips a brush into paint.,She then\nanetv_4ImpZRtbzYw,2720,A woman is seen speaking to the camera and shows off a wooden table. She then,sands down the table and dips a brush into paint.,presents herself to another person.,holds the pumpkin onto her mobile and speaks to the camera.,puts on dresser and begins using a hula hoop using her hands and coming to a surface.,puts various items into a glass and sets them on a table.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera and shows off a wooden table.,She then\nanetv_4ImpZRtbzYw,5579,\"Several shots of the table are shown as well as lists drawn out, paper being rolled, and laid out onto the table. Finally the table\",is complete and is shown again inside next to a dress while the woman finishes speaking.,is shown with a person moving a circle from underneath.,is shown as the man lays back in place while a woman walks into it.,is shown then the person towels a rag to clean the wipe all over the floor and with a towel.,is shown with a spoon showing the middle lady everything.,gold0-reannot,pos,unl,unl,unl,unl,\"Several shots of the table are shown as well as lists drawn out, paper being rolled, and laid out onto the table.\",Finally the table\nanetv_4ImpZRtbzYw,5577,A woman is seen speaking to the camera and pans around an old table. The girl,is then seen outside sanding down the table and leads into her painting the table.,holds up on the rag and shows how to solve a rubix cube.,moves the sheets all along the fire while the camera captures her on the side.,begins moving up and down and moving her hands up and down.,shows more ingredients again while finally landing on a sheet and speaking to the camera.,gold1-reannot,pos,unl,unl,unl,unl,A woman is seen speaking to the camera and pans around an old table.,The girl\nanetv_4ImpZRtbzYw,2722,She then paints all around the table while sanding more and finally laying down wax. She,measures the table and cuts out paper to put on top and shows off the table in the end her speaking more.,begins by using the paint in a paper cut while still looking out.,continues to sit on the cake and sits next to the camera looking away from the camera and ends by looking at the camera.,continues wrapping the present together end by speaking to one another.,continues cutting the wallpaper in the pile and letting the wall work.,gold0-reannot,pos,unl,unl,unl,pos,She then paints all around the table while sanding more and finally laying down wax.,She\nanetv_K-t4tUTq_Ik,12205,People are standing on a tennis court. They,are playing a game of tennis.,play pool on the court.,throw the soccer ball down the center of the court.,begin playing a game of badminton.,hit a tennis ball and run into the crowd behind them.,gold1-orig,pos,unl,unl,unl,pos,People are standing on a tennis court.,They\nanetv_K-t4tUTq_Ik,12206,They are playing a game of tennis. A man in a white shirt,hits the tennis ball.,is sitting next to her.,is playing the bass drum.,is standing next to him.,is sitting next to them.,gold0-orig,pos,unl,unl,pos,pos,They are playing a game of tennis.,A man in a white shirt\nanetv_hzU9--vcDMY,5537,\"Men duck behind trees, plywood walls and fences on a paintball field. Men\",shoot back and forth at each other.,are in distress by other countries.,are lifted in front of someone.,notice the neon sign above them.,,gold0-orig,pos,unl,unl,pos,n/a,\"Men duck behind trees, plywood walls and fences on a paintball field.\",Men\nanetv_hzU9--vcDMY,5538,Men shoot back and forth at each other. Men,run and duck looking for a place to hide.,are across the park.,sale on a wall scored in slow motion.,cheering to the man.,distract the bull and distract the bulls teeth.,gold1-orig,pos,unl,unl,unl,unl,Men shoot back and forth at each other.,Men\nanetv_hzU9--vcDMY,5536,A man puts on paintball gear in a mirror grabs his gun and runs through the snow. Men,\"duck behind trees, plywood walls and fences on a paintball field.\",standing on a sandy field making water skies.,continues boiling with the camera.,are shown swimming in the snow as the man pours water into a large black cup.,,gold0-orig,pos,unl,unl,unl,n/a,A man puts on paintball gear in a mirror grabs his gun and runs through the snow.,Men\nanetv_hzU9--vcDMY,5539,Men run and duck looking for a place to hide. The men,sit on either side of the wall looking for each other then stand up and face each other.,shake hands and the men talk.,line around in the dirt measuring and bow to each other.,start to jump and the men get in the back.,,gold1-orig,pos,unl,unl,pos,n/a,Men run and duck looking for a place to hide.,The men\nanetv_hzU9--vcDMY,5540,The men sit on either side of the wall looking for each other then stand up and face each other. A man,talks in front of a paintball park sign.,saunters with a stick spray which has fallen on his head.,wearing gray sweater walks across a set of stairs and plays bagpipes.,slumps onto the man's legs and the people look on each other's faces in the room.,,gold0-orig,pos,unl,unl,pos,n/a,The men sit on either side of the wall looking for each other then stand up and face each other.,A man\nanetv_fqoEZaCd7hU,5934,A person with no arms is seen sitting in a chair and playing the guitar with his feet. He,continues playing while singing along and moving his feet up and down the guitar.,drags him into the water and paddles out.,leads into another clips of other men playing and laughing and showing clips of him winning.,continues to speak while moping and pushing his clothes all around.,speaks and then ends playing a set of drums on a stage down once again as he leads them on.,gold0-orig,pos,unl,unl,unl,unl,A person with no arms is seen sitting in a chair and playing the guitar with his feet.,He\nanetv_UXX8k68S3_g,11212,A person is seen drawing on the side of a pumpkin and then leads into cutting out the outlines. The person then,wipes a rag all over the pumpkin cleaning off its sides.,peeps under the pumpkin while pointing to pumpkin sling and looking around the yard.,holds up the pumpkin and cuts it from a square plate.,puts noodles into a smaller bowl.,,gold0-orig,pos,unl,pos,pos,n/a,A person is seen drawing on the side of a pumpkin and then leads into cutting out the outlines.,The person then\nanetv_ZZ71FIfxX-c,18646,\"Scenes of two men playing beer pong are shown, interspersed with the two talking to each other exaggeratedly from across the table. One of the men\",drinks from a cup and falls down unconscious on the floor.,puts water and numbers into a bucket and other men play beer pong.,uses the cross to both of the men as a hint of a man's success.,throws a ball landed in another room.,is shown kicking a cup out of a coffee cup and shakes on the man.,gold1-orig,pos,unl,unl,unl,pos,\"Scenes of two men playing beer pong are shown, interspersed with the two talking to each other exaggeratedly from across the table.\",One of the men\nanetv_ZZ71FIfxX-c,18647,One of the men drinks from a cup and falls down unconscious on the floor. The second man,\"kicks the first man, places a ball on the first man's chest, an leaves.\",\"walks to the ice, then the breech and the man stand on the other side square and gets someone on the ice.\",pours a bottle on the surfer's stripe and he swims very slowly with the other level.,rolls himself up onto the bench.,wrings out the lemons and sprays them back with the same color and the other two drinks.,gold0-orig,pos,unl,unl,pos,pos,One of the men drinks from a cup and falls down unconscious on the floor.,The second man\nanetv_ZZ71FIfxX-c,4748,The second guy makes shot while holding his hand over his eyes. The first guy drinks a beer then passes out and the second guy,puts a pong ball on his chest before leaving.,helps him from his mouth.,starts to pay him out.,raises left and over and knocks against the pinata.,blows smoke from her mouth.,gold1-orig,pos,unl,unl,unl,unl,The second guy makes shot while holding his hand over his eyes.,The first guy drinks a beer then passes out and the second guy\nanetv_ZZ71FIfxX-c,4746,Another man appears at the other end of the table then the men speak. The second man,magically has two pong balls in his hands then magically adds 10 cups to the table for beer pong.,walks away laughing of his big hand and the man holds another bottle of mouthwash.,gets a bag out.,\"kicks off the second man, then the child still goes.\",,gold0-reannot,pos,unl,unl,unl,n/a,Another man appears at the other end of the table then the men speak.,The second man\nanetv_ZZ71FIfxX-c,4747,The second guy makes shot after shot and the first guy drinks beers. The second guy,makes shot while holding his hand over his eyes.,looks at the floor as listlessly interviews while talk about it.,tries to hit balls in the ice cup.,gets it and winces in excitement.,throws some frisbees to their orders.,gold0-reannot,pos,unl,pos,pos,pos,The second guy makes shot after shot and the first guy drinks beers.,The second guy\nanetv_qVy_WDpLHRM,12832,She begins vacuuming the carpet. She,takes off the hose attachment and cleans a lamp and the stairs.,turns her back to show off her work.,grabs the mop and starts scrubbing down the back of the hose.,unrolls the wallpaper with a cloth.,continues to wipe the snow and irons it down to a black tarp.,gold0-orig,pos,unl,unl,unl,unl,She begins vacuuming the carpet.,She\nanetv_qVy_WDpLHRM,12833,She takes off the hose attachment and cleans a lamp and the stairs. She,empties the filter of the vacuum into the trash can.,turns the toilet on a blue rag and shows how to use the surface.,is being patted sitting on a table and she reaches into the drawer with a tool while a smaller fish take breath.,put the object into a washer and put the temperature on a foam.,see the dog on a ledge on a coffee table.,gold0-orig,pos,unl,unl,unl,unl,She takes off the hose attachment and cleans a lamp and the stairs.,She\nanetv_qVy_WDpLHRM,12831,A woman is standing behind a vacuum. She,begins vacuuming the carpet.,puts oil on it.,is swiping two leaves off of him.,mixes the wood on to the wall and starts nails.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is standing behind a vacuum.,She\nlsmdc3082_TITANIC1-38590,15552,\"Onrushing water surges up an empty corridor, splintering furniture and knocking doors off their hinges. Some passengers\",\"leap off the back of the titanic, which is now tilted up several stories above the ocean surface.\",on a coat stand behind them.,\"are grappling underneath one of the bathroom windows, revealing a sunlit bed.\",\"step down, including the young child.\",\"pull into the previa for a moment, one one still in the escalade.\",gold0-orig,pos,unl,unl,unl,unl,\"Onrushing water surges up an empty corridor, splintering furniture and knocking doors off their hinges.\",Some passengers\nlsmdc3082_TITANIC1-38590,15561,\"Several kneeling people grab one of the priest's hand. Shivering, someone\",clings to someone as she looks down at the sinking ship.,slams someone against the docks.,\"fires a club at his brother, then spots people running beside him.\",peers back at the dead creature.,\"turns, revealing a narrow green grassy patch in the shadows.\",gold0-orig,pos,unl,unl,unl,unl,Several kneeling people grab one of the priest's hand.,\"Shivering, someone\"\nlsmdc3082_TITANIC1-38590,15498,\"Carrying their instruments, three of the quartet members walk away as people run past. Someone, the violin player\",places his instrument against his neck and resumes playing.,takes a step toward himself.,approaches the fire firing up the center of the court to join them.,pats someone's shoulder.,,gold0-orig,pos,unl,unl,pos,n/a,\"Carrying their instruments, three of the quartet members walk away as people run past.\",\"Someone, the violin player\"\nlsmdc3082_TITANIC1-38590,15504,\"In the smoking room, someone checks his pocket watch as a glass slides off the mantle. He\",opens a clock on the mantle and adjusts the time.,\"eyes someone skeptically, then hugs her lips anxiously.\",remains watches tv at the restaurant.,cuts the top of a grave queen.,kisses someone's cheek.,gold0-orig,pos,unl,unl,unl,unl,\"In the smoking room, someone checks his pocket watch as a glass slides off the mantle.\",He\nlsmdc3082_TITANIC1-38590,15503,\"Water pours in beneath the door. In the smoking room, someone\",checks his pocket watch as a glass slides off the mantle.,sees two young girls staring fives.,walks to the table with a tray of food.,stirs a few refills.,spies someone playing nearby.,gold0-orig,pos,unl,unl,unl,unl,Water pours in beneath the door.,\"In the smoking room, someone\"\nlsmdc3082_TITANIC1-38590,15562,\"Shivering, someone clings to someone as she looks down at the sinking ship. Her breath\",smokes in the cold air.,is reflected in the empty glass.,is loose in the tank.,forms a swirl of flames.,,gold0-orig,pos,unl,unl,unl,n/a,\"Shivering, someone clings to someone as she looks down at the sinking ship.\",Her breath\nlsmdc3082_TITANIC1-38590,15529,\"Someone climbs on to the high side of the capsizing lifeboat. All along the sinking ship, people\",struggle to hang on to railings or pull themselves onto pieces of floating debris.,\"sit with it, standing beside it.\",\"make their way past someone, someone slumped on someone's boat deck.\",lead the puck over the rail.,\"sit in their midst, facing towards each other.\",gold0-orig,pos,unl,unl,unl,pos,Someone climbs on to the high side of the capsizing lifeboat.,\"All along the sinking ship, people\"\nlsmdc3082_TITANIC1-38590,15539,The suction slams him against the side of the ship. But he,braces himself against the window frame.,lies half - bloody on earth in his bunk.,\"quickly backs away, smashing someone onto a parachute and hatch.\",appears stock - still.,succeeds as he opens it.,gold1-orig,pos,unl,unl,unl,unl,The suction slams him against the side of the ship.,But he\nlsmdc3082_TITANIC1-38590,15577,\"Also in a lifeboat someone turns away from the carnage and squeezes his eyes shut. In the engine room, a crewman\",reaches towards a sparking circuit breaker.,leads someone into the hauled office followed by the police officer.,holds a flat - brimmed hat on a luggage rack.,streams down the helicopter's open hatch.,,gold0-orig,pos,unl,unl,unl,n/a,Also in a lifeboat someone turns away from the carnage and squeezes his eyes shut.,\"In the engine room, a crewman\"\nlsmdc3082_TITANIC1-38590,15520,Someone backs away from the rushing water. Someone and others,slice at the thick ropes.,run out the door with their luggage.,get into the tarp of the boat.,climb out of view.,fall off the balcony.,gold1-orig,pos,unl,unl,unl,unl,Someone backs away from the rushing water.,Someone and others\nlsmdc3082_TITANIC1-38590,15568,People slide down the slanted deck. Someone's eyes,widen as he watches.,lift stone as a figure draws near.,dangle limply over his back.,are moving toward the low ceiling.,widen as plane dark clouds toward someone.,gold0-orig,pos,unl,unl,pos,pos,People slide down the slanted deck.,Someone's eyes\nlsmdc3082_TITANIC1-38590,15544,\"In one of the lifeboats, someone beats off paniced passengers with an oar. Several cables\",holding a funnel snap and flail against the water like whips.,snap apart under the water.,fly in the cable deck itself.,fall off of the fall.,,gold0-orig,pos,unl,unl,unl,n/a,\"In one of the lifeboats, someone beats off paniced passengers with an oar.\",Several cables\nlsmdc3082_TITANIC1-38590,15526,\"In the wheelhouse, someone stares wide - eyed as water covers the glass windows. Water\",gushes in and engulfs him.,stands as a spotlight move to the raindrops shining them over their heads.,runs across the bay.,has lifted to rest on the deck.,\"watches as he heads away from someone, who staggers back to the end of the trench, with his belt on his back.\",gold0-orig,pos,unl,unl,unl,unl,\"In the wheelhouse, someone stares wide - eyed as water covers the glass windows.\",Water\nlsmdc3082_TITANIC1-38590,15509,\"As people scramble about, someone unties the life belt on someone's body. People\",rush away from the rising water.,repels upward onto his shoulders and lays him on the ground.,find other fighting thugs.,\"screams as the boy swoops after him but the vampire blocks and climbs hard, stabbing someone in the groin.\",dance on the field.,gold0-orig,pos,unl,unl,unl,unl,\"As people scramble about, someone unties the life belt on someone's body.\",People\nlsmdc3082_TITANIC1-38590,15521,\"Someone and others slice at the thick ropes. Inside, people\",slip and fall near the grand staircase.,stroll through a row of spaced homes.,run from thin soldiers with their spears.,walk past a registration store.,fly over the wall thread at a railing at the base of a steep cliff.,gold1-orig,pos,unl,unl,unl,unl,Someone and others slice at the thick ropes.,\"Inside, people\"\nlsmdc3082_TITANIC1-38590,15500,A viola player glances back then returns and joins in. The bass player,carries his bass back then stands on the other side of someone.,leaves his hands under the water.,returns to the waitress's right side where the slip stand with the dad on hand.,serves the ball to the left.,reaches for the ball.,gold0-orig,pos,unl,unl,unl,unl,A viola player glances back then returns and joins in.,The bass player\nlsmdc3082_TITANIC1-38590,15535,Someone climbs over a railing and helps someone climb over. They,drop onto the deck below.,\"descend the staircase, following the jump off the sidecar.\",show shots of the vehicle hitting an oar tank.,\"duck down among the oncoming trees, still carrying the collapsible.\",follow her to high - rise apartment.,gold0-orig,pos,unl,unl,unl,unl,Someone climbs over a railing and helps someone climb over.,They\nlsmdc3082_TITANIC1-38590,15572,Several people climb over the railing at the back of the ship. One man,\"jumps and free falls into the icy water, where small groups of survivors cling to floating debris.\",watches two pilots and begin to raft across the road.,jumps onto a board and listens without paddling.,\"falls over, finishing another person.\",attempts to jump to do the same.,gold0-orig,pos,unl,unl,unl,pos,Several people climb over the railing at the back of the ship.,One man\nlsmdc3082_TITANIC1-38590,15515,Water rushes over the listing ship causing some people to fall into the water. People,struggle to free a lifeboat from its falls.,walk with fluorescent lights.,scramble through the water toward their snowboards.,are on a plane across the bay.,move forwards down the ship.,gold0-orig,pos,unl,unl,pos,pos,Water rushes over the listing ship causing some people to fall into the water.,People\nlsmdc3082_TITANIC1-38590,15570,\"A brunette woman slips out of a man's grasp and slides down the deck on her stomach. All along the Titanic, people\",\"dangle from ropes, spill from railings, or slide down into the ocean.\",\"share a look as the plane sinks further into the lifeboat, hovering at its edge.\",stare out from the waves.,splash water and wave to her.,,gold0-orig,pos,unl,pos,pos,n/a,A brunette woman slips out of a man's grasp and slides down the deck on her stomach.,\"All along the Titanic, people\"\nlsmdc3082_TITANIC1-38590,15554,\"Gripping someone's hand, someone weaves through the crowd. They\",move to a railing and watch as several passengers plunge overboard.,hem bumps the boyfriend parker's shoulder.,\"and someone are grapple for the ball, which being played on the back of the bank and fleeing.\",shake their bearded mates.,tap their gun at tag.,gold1-orig,pos,unl,unl,unl,unl,\"Gripping someone's hand, someone weaves through the crowd.\",They\nlsmdc3082_TITANIC1-38590,15540,But he braces himself against the window frame. He,reaches up for a railing but slips.,stands with someone at the handkerchief water chamber.,starts running down the track into deep.,opens his door and sees people watching the accident.,,gold0-orig,pos,unl,unl,unl,n/a,But he braces himself against the window frame.,He\nlsmdc3082_TITANIC1-38590,15580,\"Inside the ship, a ceiling collapses as several support columns fail. A crack\",opens down the side of the titanic.,stabs pumpkins upside down.,pops out of frame and heads off.,appears as the men lie at the door.,,gold1-orig,pos,unl,unl,pos,n/a,\"Inside the ship, a ceiling collapses as several support columns fail.\",A crack\nlsmdc3082_TITANIC1-38590,15524,\"Outside, people fall into the water. Others\",run up the deck from the approaching water.,men watch in the darkness as more lava outward like a pitcher of lava.,sit ahead and drive up the massive residential area of the abandoned cottage.,see closely on the snow covered faces.,strapped to a man about double - swept cover and spots people uncertainly down a tunnel.,gold0-orig,pos,unl,unl,unl,unl,\"Outside, people fall into the water.\",Others\nlsmdc3082_TITANIC1-38590,15564,\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier. Her gauzy dress\",billowing in the currents.,forms out a silk robe.,breaks down and turns over.,jumps up and flees.,has reached the edge of the room to read someone's bowed head.,gold0-orig,pos,unl,unl,unl,unl,\"Inside a submerged portion of the ship, a woman's lifeless body drifts beneath a large chandelier.\",Her gauzy dress\nlsmdc3082_TITANIC1-38590,15543,The ship's baker helps her up. Someone and someone,reunite in the crowd.,walk up at her.,get out of the ship and land the top of the breaking dance.,make their way down the corridor.,arrive in the lifeboat.,gold0-orig,pos,unl,unl,unl,pos,The ship's baker helps her up.,Someone and someone\nlsmdc3082_TITANIC1-38590,15531,\"Several people run toward the back end of the Titanic, which is now tilted up at a slight angle. Some passengers\",hang from ropes or leap into the icy sea.,drift along the railroad tracks on the opposite corner of the hangar.,around dotted places lead out of the waters in water.,try to pull themselves towards what looks like the rest of the story.,stand on the edge of the bridge as a large owl flies out at its unicorn.,gold0-orig,pos,unl,unl,unl,unl,\"Several people run toward the back end of the Titanic, which is now tilted up at a slight angle.\",Some passengers\nlsmdc3082_TITANIC1-38590,15542,\"He turns and swims toward open water. Meanwhile, someone\",drops on to a lower deck.,\"slides down a waterfall with jars: admiration, beads, and stalls, and recognizes him.\",dives onto a couch then dives into the pool.,kisses a volunteer in a brown - walled corridor.,and someone land amid the bushes.,gold1-orig,pos,unl,unl,unl,pos,He turns and swims toward open water.,\"Meanwhile, someone\"\nlsmdc3082_TITANIC1-38590,15557,\"A few dozen people tread water near the propellers, which have now risen completely out of the water. Someone\",\"pulls someone up the poop deck, which is now slanted at about a 45 - degree angle.\",'s rear is suspended in the environment as they approach staff all approaching their instructor.,\"'s head presses in the back of someone's suv, and someone screams squirting horror through the water.\",paddling buoys the speed of the wave as it moves closer.,\"bashes of the nature, followed by someone who leans back on the railing, looking down into the ocean.\",gold0-orig,pos,unl,unl,unl,pos,\"A few dozen people tread water near the propellers, which have now risen completely out of the water.\",Someone\nlsmdc3082_TITANIC1-38590,15507,The man kisses the woman. A red - haired woman,leans over two young children lying in a bed.,sits with his back to the couch.,raps on the door with her hands up.,steps to the edge.,does a break dance.,gold1-orig,pos,unl,pos,pos,pos,The man kisses the woman.,A red - haired woman\nlsmdc3082_TITANIC1-38590,15511,The young girl in someone's arm looks around herself wide - eyed. People,work to right the overturned lifeboat.,follow her the directions.,sits on the edge of the bed.,stare at each other.,are outside the door.,gold0-orig,pos,unl,pos,pos,pos,The young girl in someone's arm looks around herself wide - eyed.,People\nlsmdc3082_TITANIC1-38590,15528,\"Someone slices through the rope with his pocketknife partially freeing the boat, but causing it to tip on to its side. Someone\",climbs on to the high side of the capsizing lifeboat.,smirks at someone's resume.,\"runs to the shaft of the center and hits it against the wall, meeting chest weeps, squishing away from the curls.\",stares down at someone who is peaceful on rocks.,\"goes into the water, using his cane for gryffindor.\",gold0-orig,pos,unl,unl,pos,pos,\"Someone slices through the rope with his pocketknife partially freeing the boat, but causing it to tip on to its side.\",Someone\nlsmdc3082_TITANIC1-38590,15513,One sailor slides down a rope. Someone,puts on the life belt as water surges around him.,plunges into a water bunk behind a fire escape.,grabs into another hold.,gets off the water and jumps down to the railing next to someone.,examines the railing and holds him tight to the railing's railing.,gold0-orig,pos,unl,unl,unl,unl,One sailor slides down a rope.,Someone\nlsmdc3082_TITANIC1-38590,15533,Someone and someone make their way to a railing near the rear of the ship and peer over the side. Someone,grabs someone's hand and leads her through the crowd.,joins them as someone gracefully descends to the underside of the sea.,pulls back towards an old dark clapboard house.,\"snuggles up alongside them, her head lulls around her own shoulder.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone make their way to a railing near the rear of the ship and peer over the side.,Someone\nlsmdc3082_TITANIC1-38590,15502,He gazes through a window at the rising water then places one hand on the helm. Water,pours in beneath the door.,\", he runs both hands over his.\",\", someone reaches over to someone, then swims to the edge of the pool.\",\"into the abyss, someone places a hand down behind his back.\",grins from the boat as it floats above him on the water.,gold0-orig,pos,unl,unl,unl,unl,He gazes through a window at the rising water then places one hand on the helm.,Water\nlsmdc3082_TITANIC1-38590,15558,\"Someone pulls someone up the poop deck, which is now slanted at about a 45 - degree angle. They\",grab onto the railing at the exact spot they first met.,dashes to the side of the booth and turns to see the abdomen.,tread as he peers in the car direction.,\"stop a few feet from someone, who a shark pass behind him.\",take steps to the kitchen.,gold1-orig,pos,unl,unl,pos,pos,\"Someone pulls someone up the poop deck, which is now slanted at about a 45 - degree angle.\",They\nlsmdc3082_TITANIC1-38590,15553,\"Some passengers leap off the back of the Titanic, which is now tilted up several stories above the ocean surface. Gripping someone's hand, someone\",weaves through the crowd.,helps someone to the canvas.,gives it a kiss.,turns to face him.,topples over in deep difficulty.,gold1-orig,pos,unl,unl,pos,pos,\"Some passengers leap off the back of the Titanic, which is now tilted up several stories above the ocean surface.\",\"Gripping someone's hand, someone\"\nlsmdc3082_TITANIC1-38590,15512,People work to right the overturned lifeboat. One sailor,slides down a rope.,climbs hard besides a sailor.,flaps her boat and drags on furniture.,pushes them through a ship and falls into a cable.,knocks the other several.,gold0-orig,pos,unl,unl,unl,unl,People work to right the overturned lifeboat.,One sailor\nlsmdc3082_TITANIC1-38590,15525,\"Others run up the deck from the approaching water. In the wheelhouse, someone\",stares wide - eyed as water covers the glass windows.,fishes someone against someone clothesline.,reaches into the sack and gets into a truck full of armed vehicles.,\"gets cautiously out of another water, slowly, crouches, as someone aims out of the hole on captain ridge.\",,gold0-orig,pos,unl,unl,pos,n/a,Others run up the deck from the approaching water.,\"In the wheelhouse, someone\"\nlsmdc3082_TITANIC1-38590,15518,Someone hands the girl to a woman. People,wade toward the stern as the titanic sinks.,take to them to cheer him off.,are kissing on the back in a green wig.,stand for the camera that is in profile.,follow her through the metal venue.,gold1-orig,pos,unl,unl,unl,unl,Someone hands the girl to a woman.,People\nlsmdc3082_TITANIC1-38590,15532,Some passengers hang from ropes or leap into the icy sea. Someone and someone,make their way to a railing near the rear of the ship and peer over the side.,continue leading the way to the water.,are ushered into the sphere.,pose as the brunette woman prepares to leave.,,gold0-orig,pos,unl,unl,unl,n/a,Some passengers hang from ropes or leap into the icy sea.,Someone and someone\nlsmdc3082_TITANIC1-38590,15563,\"Someone hugs her tight and kisses her forehead. Inside a submerged portion of the ship, a woman's lifeless body\",drifts beneath a large chandelier.,runs deeper into the predator's tent.,sits sprawled on the island.,is encased in chemical against another knee.,hangs from a shallow shake of the ocean.,gold0-orig,pos,unl,unl,unl,pos,Someone hugs her tight and kisses her forehead.,\"Inside a submerged portion of the ship, a woman's lifeless body\"\nlsmdc3082_TITANIC1-38590,15551,\"Water gushes in through the glass skylights, sweeping people across tiled floors, or pinning them against wooden railings. Onrushing water\",\"surges up an empty corridor, splintering furniture and knocking doors off their hinges.\",\"falls onto the cover of their caps, then drops out, leaving several dust and debris on the ground below.\",comes down through to prevent the coach trying to defend someone that someone knocks them off.,drips down someone surrounding them and disappears.,,gold0-orig,pos,unl,unl,unl,n/a,\"Water gushes in through the glass skylights, sweeping people across tiled floors, or pinning them against wooden railings.\",Onrushing water\nlsmdc3082_TITANIC1-38590,15541,He reaches up for a railing but slips. He,turns and swims toward open water.,chases her as she runs down the sole.,stands right behind the track and reaches a long white sedan behind him.,\"steps through the bottom, as back above the stage.\",creeps up behind him.,gold1-orig,pos,unl,unl,unl,unl,He reaches up for a railing but slips.,He\nlsmdc3082_TITANIC1-38590,15501,The cello player also returns. He,gazes through a window at the rising water then places one hand on the helm.,rushes across the finish line where local women walk from behind.,\"flashes a fencing smile, slow to action.\",finds a way to keep hold.,ties a pin to his legs and aim.,gold1-orig,pos,unl,unl,unl,unl,The cello player also returns.,He\nlsmdc3082_TITANIC1-38590,15545,Several cables holding a funnel snap and flail against the water like whips. Someone's eyes,widen as the huge funnel tips over.,widen as a cop fires a firework in his face.,widen as the flames pull free.,are closed on the rocking trophy.,fall to the ground as they tread water.,gold0-orig,pos,unl,unl,unl,unl,Several cables holding a funnel snap and flail against the water like whips.,Someone's eyes\nlsmdc3082_TITANIC1-38590,15548,The impact creates a wave which washes away several people. A man climbs into someone's lifeboat but someone,pushes him back into the ocean.,attempts to get off the prow.,takes his keys and looks down at.,is too far away.,,gold0-orig,pos,unl,unl,unl,n/a,The impact creates a wave which washes away several people.,A man climbs into someone's lifeboat but someone\nlsmdc3082_TITANIC1-38590,15505,He opens a clock on the mantle and adjusts the time. He,shuts the clock then leans against the mantle gazing downward.,resumes his work as he drops restlessly into his rock houses.,\"is at first, silhouetted against the cold sun, then slowly opens the door and walks inside.\",pulls the notebook out and switches off the address.,\"stands over and steering the wheel, keeping his eyes locked.\",gold0-orig,pos,unl,unl,unl,unl,He opens a clock on the mantle and adjusts the time.,He\nlsmdc3082_TITANIC1-38590,15514,Someone puts on the life belt as water surges around him. Water,rushes over the listing ship causing some people to fall into the water.,swims through his skin.,comes across the river.,\", someone goes through a tunnel.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone puts on the life belt as water surges around him.,Water\nlsmdc3082_TITANIC1-38590,15547,\"Swimming in the water with several others, someone looks up as the giant funnel falls on to him. The impact\",creates a wave which washes away several people.,becomes very violently glassy as the giant races up to someone and looms out of view.,sends the torch flying into the night sky.,throw orange scoop of darkness towards ships.,sends the massive storm clouds gathering inside the paddy field.,gold0-orig,pos,unl,unl,unl,unl,\"Swimming in the water with several others, someone looks up as the giant funnel falls on to him.\",The impact\nlsmdc3082_TITANIC1-38590,15567,\"A lifeboat full of people rows away from the rear of the ship, which rises several stories into the night sky. People\",slide down the slanted deck.,steps onto an forest road and starts toward the new - haired passage of the complex.,emerges from the great hall and windows to a blackface balcony.,\", perusing someone, kneel to the edge of the circle, paddle away from the water.\",\"soldiers and plows across the ground, one of them scar passed out.\",gold1-orig,pos,unl,unl,unl,unl,\"A lifeboat full of people rows away from the rear of the ship, which rises several stories into the night sky.\",People\nlsmdc3082_TITANIC1-38590,15530,\"All along the sinking ship, people struggle to hang on to railings or pull themselves onto pieces of floating debris. Several people\",\"run toward the back end of the titanic, which is now tilted up at a slight angle.\",fly into the sky.,\", minas suddenly, and stare from one another to kids.\",rush to the ship sprawls over the bay.,,gold0-orig,pos,unl,unl,unl,n/a,\"All along the sinking ship, people struggle to hang on to railings or pull themselves onto pieces of floating debris.\",Several people\nlsmdc3082_TITANIC1-38590,15516,People struggle to free a lifeboat from its falls. Someone,opens a knife and cuts at a rope.,brings it up to someone's head.,gulps hard as he gives a parting glance at someone.,clambers over the cliff face.,slides down an embankment through rough water.,gold1-orig,pos,unl,unl,pos,pos,People struggle to free a lifeboat from its falls.,Someone\nlsmdc3082_TITANIC1-38590,15527,\"Water gushes in and engulfs him. Outside on one of the decks, passengers\",wade through waist deep water to a lifeboat in the middle of the ship.,erupt throughout the compound.,stare out as a huge sky splashes at the end of the canyon.,hang one hand a third time and fell six feet through a row of other boats.,wave to someone's side and dash for someone to help someone.,gold0-orig,pos,unl,unl,pos,pos,Water gushes in and engulfs him.,\"Outside on one of the decks, passengers\"\nlsmdc3082_TITANIC1-38590,15537,\"As the water rises, some are carried up the staircase while others are trapped against the ceiling of the room below. Wearing a life vest, someone\",swims pass one of the broken windows.,crosses to a foosball table grinning.,steps on the control machine.,crawls off onto the bed.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the water rises, some are carried up the staircase while others are trapped against the ceiling of the room below.\",\"Wearing a life vest, someone\"\nlsmdc3082_TITANIC1-38590,15510,People rush away from the rising water. The young girl in someone's arm,looks around herself wide - eyed.,\"throws an alien to him, who tosses it down to a base of dirt leaning against the wall.\",crouches on the bench.,joins underwater with a younger someone behind her.,joins the young girls.,gold0-orig,pos,unl,pos,pos,pos,People rush away from the rising water.,The young girl in someone's arm\nlsmdc3082_TITANIC1-38590,15566,\"Elsewhere, stacks of plates slide off their shelves and smash on the floor. A lifeboat full of people\",\"rows away from the rear of the ship, which rises several stories into the night sky.\",hurtle through clouds after some canyon.,lies back at the bottom.,watch as people dance out.,spill out on the front side of the balcony.,gold0-orig,pos,unl,unl,unl,pos,\"Elsewhere, stacks of plates slide off their shelves and smash on the floor.\",A lifeboat full of people\nlsmdc3082_TITANIC1-38590,15519,People wade toward the stern as the Titanic sinks. Someone,backs away from the rushing water.,goes and shoots someone with a smoldering look.,\"falls over someone, but not even in the mud.\",finds someone holding someone then wanders past the cliff's edge deck.,,gold0-orig,pos,unl,unl,unl,n/a,People wade toward the stern as the Titanic sinks.,Someone\nlsmdc3082_TITANIC1-38590,15576,\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance. Also in a lifeboat someone\",turns away from the carnage and squeezes his eyes shut.,sinks to the sand of his mother who raise the head and look at him.,\"soars onto the ship deck, furrowing her veil, her hair pulled back.\",scans the water and sets it on a sea of floating donuts.,,gold0-orig,pos,unl,unl,unl,n/a,\"Sitting beside someone in a lifeboat, someone's eyes are glassy as she watches from a distance.\",Also in a lifeboat someone\nlsmdc3082_TITANIC1-38590,15522,\"Inside, people slip and fall near the grand staircase. Someone wearing a top hat and formal wear\",sits in a chair watching with wide eyes.,slippers as he races circles.,are tentatively drawn together before him.,and limps onto the sidewalk.,cut with potential men.,gold1-orig,pos,unl,unl,unl,unl,\"Inside, people slip and fall near the grand staircase.\",Someone wearing a top hat and formal wear\nlsmdc3082_TITANIC1-38590,15549,A man climbs into someone's lifeboat but someone pushes him back into the ocean. Someone and someone,continue to fight their way through the crowd which slowly funnels up another staircase.,walk up the sunken gangplank netting as tree goers are parked nearby.,\"in the cockpit, then climb out of the lifeboat.\",soar up to the helipad on the lower deck.,look around him as he scurries and hurries to the wooden stairway.,gold0-reannot,pos,unl,pos,pos,pos,A man climbs into someone's lifeboat but someone pushes him back into the ocean.,Someone and someone\nlsmdc3082_TITANIC1-38590,15546,\"Someone's eyes widen as the huge funnel tips over. Swimming in the water with several others, someone\",looks up as the giant funnel falls on to him.,pushes a cramped boat across the way.,sees several smiling warriors in her scuba chamber as one lifeboat crashes down sliding below.,moves up at them.,stumbles to the back of the pool.,gold0-reannot,pos,unl,unl,pos,pos,Someone's eyes widen as the huge funnel tips over.,\"Swimming in the water with several others, someone\"\nlsmdc3082_TITANIC1-38590,15573,\"One man jumps and free falls into the icy water, where small groups of survivors cling to floating debris. The baker\",pulls a flask out of his pocket and takes a drink.,\"helps the woman downstream both to her fingertips, then falls to the bottom of it.\",\"gives a hopeful inlet dance before someone, misty, watches him buy a few times, then continues to walk.\",uses the paddles to navigate the titanic buildings in the current.,holds a large stick to his head.,gold0-reannot,pos,unl,unl,unl,unl,\"One man jumps and free falls into the icy water, where small groups of survivors cling to floating debris.\",The baker\nlsmdc3082_TITANIC1-38590,15517,Someone opens a knife and cuts at a rope. Someone,hands the girl to a woman.,is also trimmed by the horse.,stuffs the diary in his box.,drags someone's hair back into her hand with her own.,,gold1-reannot,unl,unl,unl,unl,n/a,Someone opens a knife and cuts at a rope.,Someone\nlsmdc3082_TITANIC1-38590,15499,\"Someone, the violin player places his instrument against his neck and resumes playing. A viola player\",glances back then returns and joins in.,\"holds his hand and ignores his rhythm, staring straight towards the rocking child set against the wall.\",\"walks down the street behind him, with a bewildered sound leading to him.\",enters his house dressed in white shorts while a man joins her friend and glances at his empty hand.,plays a song in a postcard.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone, the violin player places his instrument against his neck and resumes playing.\",A viola player\nlsmdc3082_TITANIC1-38590,15538,\"Wearing a life vest, someone swims pass one of the broken windows. The suction\",slams him against the side of the ship.,caresses his ankles and legs easily.,slide down the other's shoulder into someone's study.,disappears as much as as dust out of someone's eyes.,scoops all the soap off of someone.,gold0-reannot,pos,unl,unl,unl,unl,\"Wearing a life vest, someone swims pass one of the broken windows.\",The suction\nlsmdc3082_TITANIC1-38590,15574,The baker pulls a flask out of his pocket and takes a drink. Someone,wraps his arms around someone as she grips on to the railing.,slouches and ushers his men out through the crowd.,looks up from pier heights and smiles.,steps towards the apartment and takes a step with someone.,walks at the table.,gold0-reannot,pos,unl,unl,unl,pos,The baker pulls a flask out of his pocket and takes a drink.,Someone\nlsmdc3082_TITANIC1-38590,15571,\"All along the Titanic, people dangle from ropes, spill from railings, or slide down into the ocean. Several people\",climb over the railing at the back of the ship.,climb rails and go up to the opposite side of the road.,move into the water to try out splashes.,\"hold on, screaming, grabbing them, swinging their arms and throwing each other up and down.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"All along the Titanic, people dangle from ropes, spill from railings, or slide down into the ocean.\",Several people\nlsmdc3082_TITANIC1-38590,15559,They grab onto the railing at the exact spot they first met. Water,streams down the exposed propellers as they continue to tilt upward.,\"down, they fall down the top of the lifeboat, deep in the water with someone.\",formation before the opposing team hidden below the uneven displays.,fire.,,gold0-reannot,pos,unl,unl,unl,n/a,They grab onto the railing at the exact spot they first met.,Water\nlsmdc3082_TITANIC1-38590,15534,Water swamps the base of the first funnel as it sinks below the ocean's surface. Someone,climbs over a railing and helps someone climb over.,sucking the rest of the knife deeper.,\"lifts his visor, revealing the royal moon, which's prow.\",explode outside the impact who falls off.,climbs to the pilot's toes and breathes against it.,gold1-reannot,pos,unl,unl,unl,unl,Water swamps the base of the first funnel as it sinks below the ocean's surface.,Someone\nlsmdc3082_TITANIC1-38590,15550,\"Someone and someone continue to fight their way through the crowd which slowly funnels up another staircase. Inside, people\",cling to columns at the top of the grand staircase.,dash towards one another and open their tires.,hold onto them as they advance by a row of varied rafts.,emerge into a factory area and wait for a gate.,step through the forward door.,gold1-reannot,pos,unl,unl,pos,pos,Someone and someone continue to fight their way through the crowd which slowly funnels up another staircase.,\"Inside, people\"\nlsmdc3082_TITANIC1-38590,15579,\"Blood streaming down his forehead, someone grips a side railing as it splits apart. Inside the ship, a ceiling\",collapses as several support columns fail.,is airplanes over a massive body of water.,rises up beneath the surface.,fills the full view of the painting.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Blood streaming down his forehead, someone grips a side railing as it splits apart.\",\"Inside the ship, a ceiling\"\nlsmdc3082_TITANIC1-38590,15506,He shuts the clock then leans against the mantle gazing downward. An elderly couple,lies in bed as water streams beneath them.,\"called light clothes joins in, shutting the door behind him.\",sits at a piano and look like a nursery accordian.,sits by the elegant gardens of balmoral architecture with a group of college girls filled him.,comes in through a small window overlooking the family room of?,gold0-reannot,pos,unl,unl,unl,unl,He shuts the clock then leans against the mantle gazing downward.,An elderly couple\nlsmdc3082_TITANIC1-38590,15578,\"In the engine room, a crewman reaches towards a sparking circuit breaker. Blood streaming down his forehead, someone\",grips a side railing as it splits apart.,hands to his lips to flame.,sits up the triangular out spire and writes.,holds up the photo of someone and herself.,crawls over the side of his small bed.,gold0-reannot,pos,unl,unl,unl,unl,\"In the engine room, a crewman reaches towards a sparking circuit breaker.\",\"Blood streaming down his forehead, someone\"\nanetv_M2pxaQiBbXA,12806,A man dressed in white walks back and forth by the poolside in the background. A man dressed in white,is shown standing in the foreground and gesturing.,stands up several walks behind the machines.,walks on the side of the lane and spins off both bars.,stands in front of a nearby fence.,,gold0-orig,pos,unl,unl,pos,n/a,A man dressed in white walks back and forth by the poolside in the background.,A man dressed in white\nanetv_hSq0yL5AB40,8663,Several clips of people are shown waving to the camera and watch people riding bikes. Many people,are shown riding around on bikes around a long track and the camera panning around.,are seen walking on horses and moving back and fourth to one another.,are in their shoes as well as people walking out trees and pausing to the chase.,are seen riding on the lake.,walk along and watch people riding on a running track.,gold1-orig,pos,unl,unl,unl,pos,Several clips of people are shown waving to the camera and watch people riding bikes.,Many people\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,77,The captain opens his door and punches out the attacker. They,move the man into the captain's cabin.,\"pauses for a moment, then turns to someone with his cane.\",fight under their horns.,coil him down.,open the door and the door falls.,gold0-orig,pos,unl,unl,unl,pos,The captain opens his door and punches out the attacker.,They\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,76,Someone punches the bigger man as Snowy jumps on his back. The captain,opens his door and punches out the attacker.,looks down at the ancient humanoid corpse.,grabs the air pistol from his grip.,opens his front door to a taunting tank.,,gold0-orig,pos,unl,unl,unl,n/a,Someone punches the bigger man as Snowy jumps on his back.,The captain\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31548,74,\"Someone opens the cabin door then peers at the captain. In the hall, someone\",bumps into a crew member who attacks him.,opens the door open.,watches the lift as the priest give up wide - eyed.,turns to a mirror.,reaches a reception building with a group of friends seated someone.,gold1-reannot,pos,unl,unl,unl,unl,Someone opens the cabin door then peers at the captain.,\"In the hall, someone\"\nlsmdc3092_ZOOKEEPER-45332,14865,She holds the door for Griffins ex who climbs in with him. Someone,looks up at someone who nods.,has never been any more.,starts to follow someone's gaze.,presses a button and looks at the building digital clock.,,gold1-orig,pos,unl,pos,pos,n/a,She holds the door for Griffins ex who climbs in with him.,Someone\nlsmdc0002_As_Good_As_It_Gets-46396,5803,\"She closes the door in his face, then walks to her son and leads him back to his room. Camera\",moves toward mother and son sitting on the edge of someone's bed.,grabs the phone frame to see out the screen.,\"comes out of the bathroom and grabs someone's things, walks away, and starts toward the door of his home.\",\", someone sits, smiling at someone, stows her handbag, looks down at the file.\",\"dead from his car, he is momentarily in the air as the three guards stop at the machine - elevator platform.\",gold1-orig,pos,unl,unl,unl,unl,\"She closes the door in his face, then walks to her son and leads him back to his room.\",Camera\nlsmdc0002_As_Good_As_It_Gets-46396,5804,Camera moves toward mother and son sitting on the edge of someone's bed. She,holds a digital thermometer to his ear.,narrows her eyes as her clock cast low on someone's neck.,walks up to the stage and sings.,removes a handheld pattern from a low table light.,gazes up the screen and he boards attached to a statue.,gold0-orig,pos,unl,unl,unl,unl,Camera moves toward mother and son sitting on the edge of someone's bed.,She\nlsmdc0002_As_Good_As_It_Gets-46396,5805,She holds a digital thermometer to his ear. They both,count down the seconds.,stare blankly up the upholstery.,look at each other then take a contact out of his eye.,look over at the dock.,stand tall and stares at each other.,gold0-orig,pos,unl,unl,unl,unl,She holds a digital thermometer to his ear.,They both\nlsmdc1062_Day_the_Earth_stood_still-100687,9899,She descends three steps from the gallery area where she was watching and cautiously approaches the tent. She,peers in and sees the man's eyes fluttering.,\"steps back, takes a step toward her wedding, then twirls behind her shoulder.\",crosses her knee in black.,lets someone out of her hands.,,gold0-orig,pos,unl,unl,unl,n/a,She descends three steps from the gallery area where she was watching and cautiously approaches the tent.,She\nlsmdc1062_Day_the_Earth_stood_still-100687,9901,Patient is thrashing around inside the tent. Someone,comes in and checks a monitor.,breaks open the door into the room open.,lets a large butt drop to the floor.,\"meets behind someone, waving arms on the glider.\",\"is immobile and shaken, child or unconscious.\",gold0-orig,pos,unl,unl,unl,unl,Patient is thrashing around inside the tent.,Someone\nlsmdc1062_Day_the_Earth_stood_still-100687,9900,She peers in and sees the man's eyes fluttering. Patient,is thrashing around inside the tent.,leaves the confounded board.,steps up to the patient who picks her bag up.,spots a plane outside the front entrance.,stops and makes a cross.,gold0-reannot,pos,unl,unl,pos,pos,She peers in and sees the man's eyes fluttering.,Patient\nanetv_dLLvpM-gB8Q,16037,Two kids are playing in the back of a truck. People,are standing around a yellow ice cream truck.,are sitting in bumper cars.,\"are in an alley behind statues, long wooden sweaters and yellow sweaters.\",are walking down a street and near the other side of the street.,,gold0-orig,pos,unl,unl,pos,n/a,Two kids are playing in the back of a truck.,People\nanetv_dLLvpM-gB8Q,16038,People are standing around a yellow ice cream truck. Two kids,are sitting down on a sidewalk eating ice cream.,can walk down the yard.,stop in front of the camera watching.,are skating outdoors by end in the road watching the ground.,,gold0-orig,pos,unl,unl,pos,n/a,People are standing around a yellow ice cream truck.,Two kids\nanetv_Mdt2E8KYpCg,19590,He throws the man down on top of the table as hard as he can. He,holds up a mallet above the man on the ground.,\"moves, head first, then jumps in the floor throwing the ball.\",takes out the empty wrapping paper and begins tapes it with a cloth.,is stretching and pulling across the safety of a wire.,,gold0-orig,pos,unl,unl,unl,n/a,He throws the man down on top of the table as hard as he can.,He\nanetv_Mdt2E8KYpCg,19589,He lifts him up as two other wrestlers clean off a table. He,throws the man down on top of the table as hard as he can.,enters a small white room with people lying in front the seated man.,bounce around the bars and rip across the squares on it.,goes to remove the weight of the object which falls back on the ground.,,gold0-orig,pos,unl,unl,pos,n/a,He lifts him up as two other wrestlers clean off a table.,He\nanetv_Mdt2E8KYpCg,19588,A man is helped off the floor by another wrestler. He,lifts him up as two other wrestlers clean off a table.,grabs his jacket and drummer down along with the rest of the crowd.,begins to put the ball down as large slides fastens the end.,are pushed in an attempt washing in turns dancing between the men and his web like hammer dancing around it.,attempts to wrestle him punch wrestling until a wrestler attempts to hold him.,gold1-reannot,pos,unl,unl,unl,unl,A man is helped off the floor by another wrestler.,He\nanetv_Mdt2E8KYpCg,6291,A wrestler stands up outside a ring. Other wrestlers,pick him up and prepare to put him through a table.,practice arm wrestling like cameras.,lay in middle of benches.,are beside the floor.,,gold0-reannot,pos,unl,pos,pos,n/a,A wrestler stands up outside a ring.,Other wrestlers\nanetv_zJNYqTVWqyY,3072,We see a small dog in a bathtub with the title over the top. A person,wets the dog and puts shampoo on it.,is brushing the mans hair.,approaches a dog and sprays him with cloth.,talks to the camera in a scrubbing epee.,walks by a dog in the tub.,gold0-orig,pos,unl,unl,unl,pos,We see a small dog in a bathtub with the title over the top.,A person\nanetv_zJNYqTVWqyY,3074,The person washes the dog with their hands. They,stand the dog up and wash him.,are in the cockpit with the vacuum attachment.,see the closing screen.,\"speed them, and then person dries them off with their hands.\",hit the man with a loose rod.,gold0-orig,pos,unl,unl,unl,unl,The person washes the dog with their hands.,They\nanetv_zJNYqTVWqyY,3073,A person wets the dog and puts shampoo on it. The person,washes the dog with their hands.,continues walking from the bathroom and the man rinses all the clothes.,cuts the leaves in a mess.,trims its black hair.,drags the dog out of frame with a towel.,gold1-orig,pos,unl,unl,unl,pos,A person wets the dog and puts shampoo on it.,The person\nanetv_zJNYqTVWqyY,3075,They stand the dog up and wash him. They,rinse the soap off the dog.,ends the play with the shower with a silky pink toothbrush.,take a ladies swing with a rope.,are in front of a man cleaning a window.,see the pajamas listed in both hands.,gold0-orig,pos,unl,unl,unl,unl,They stand the dog up and wash him.,They\nanetv_zJNYqTVWqyY,3076,They rinse the soap off the dog. We,see the wet little dog from above.,see the person on the faucet cleaning the shoe.,see a man across the ocean.,continues cleaning the bathroom.,\"the dog fills with night, then wash up and eat the last of a steak.\",gold0-reannot,pos,unl,unl,unl,unl,They rinse the soap off the dog.,We\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3538,\"A hissing whisper from behind draws people's attention. Someone, jaw hanging open,\",\"can only stare, as if at a ghost.\",reaches out to read.,falls on her face.,\"remain motionless, staring blankly at the peaceful night sky.\",\"runs up to someone, his eyes on her.\",gold0-orig,pos,unl,pos,pos,pos,A hissing whisper from behind draws people's attention.,\"Someone, jaw hanging open,\"\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3535,He walks halfway down the aisle and stops several rows behind people. He,\"scans the theater, then brings a whistle to his lips.\",\"slaps one of the men, who are already at the back of the car.\",\"walks back to work, and is joined by a girl with three fellow gymnast eventually pushing them to the benches.\",\"starts to climb up and down the steps, then stops and looks.\",\"hears a sound like the machine coming from behind him, opens - and - almost as if he does n't for a bit sinister\",gold0-orig,pos,unl,unl,unl,unl,He walks halfway down the aisle and stops several rows behind people.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3537,At his whistle the back doors burst open and a line of chained men trot in at double - time. They,remain silently on their feet.,walk at someone's house.,tread water on a jar.,turn and go through a lonely stretches.,,gold0-orig,pos,unl,unl,pos,n/a,At his whistle the back doors burst open and a line of chained men trot in at double - time.,They\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3534,A man carrying a shotgun enters the auditorium. He,walks halfway down the aisle and stops several rows behind people.,throws his open stick.,throws out the ladies.,joins someone's crew.,,gold0-orig,pos,unl,pos,pos,n/a,A man carrying a shotgun enters the auditorium.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3541,\"Someone O'Daniel sits on the veranda of the Governor's Mansion, smoking a cigar and sipping from a glass of bourbon as the evening sun goes down. With his mouth forming an o around his dropping cigar, someone\",\"looks sadly from one to the other, like a spectator at a particularly boring tennis match.\",\"keeps his eyes trained on someone, then rises, holding it around with the glowing strainer.\",\"pushes the imaginary scarf aside and steps closer, flashing the candle under the lights.\",puts his wings onto frame.,raps the songs to his lips and makes a bow.,gold0-orig,pos,unl,unl,unl,pos,\"Someone O'Daniel sits on the veranda of the Governor's Mansion, smoking a cigar and sipping from a glass of bourbon as the evening sun goes down.\",\"With his mouth forming an o around his dropping cigar, someone\"\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3536,\"He scans the theater, then brings a whistle to his lips. At his whistle the back doors burst open and a line of chained men\",trot in at double - time.,\"onto open balcony approaches the men, then someone whips a soldier with his rifle.\",fight over a man behind someone.,\"are seen in red, followed by a large tree.\",get into the men's car.,gold1-orig,pos,unl,unl,unl,unl,\"He scans the theater, then brings a whistle to his lips.\",At his whistle the back doors burst open and a line of chained men\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3539,\"Someone, jaw hanging open, can only stare, as if at a ghost. Someone\",\"stares also, but finally brings out another.\",turns on an edge towards a lamppost.,continues to file through the wall.,swats his hands defensively and goes look.,is struck and immediately appalled.,gold0-orig,pos,unl,unl,unl,pos,\"Someone, jaw hanging open, can only stare, as if at a ghost.\",Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55557,3540,\"Someone's face remains frozen in horrified disbelief, but someone finally accepts someone's corporeal reality. Someone\",\"squints and cocks his head as if to say, what was that?\",\"grabs a napkin, then drops it over the sink and removes the slipper.\",in the position we've given him up and he is ready to measure.,punches someone across the face steadily.,looks down as he hears running again.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone's face remains frozen in horrified disbelief, but someone finally accepts someone's corporeal reality.\",Someone\nanetv_wDFpFJ1CP9g,17948,\"Next, they show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them. As the girl wakeboards several people\",cheer for her from the boat.,are in life grips that the girl catches and jumps up on her knees and also starts doing it.,are kayaking down the hill in ice.,move and climb rope - board and there are many fish sitting on.,are shown talking and talking under different medals and watching.,gold0-orig,pos,unl,unl,unl,pos,\"Next, they show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them.\",As the girl wakeboards several people\nanetv_wDFpFJ1CP9g,17947,\"Next, they are shown practicing how to wakeboard in a pool while the man discusses the techniques. Next, they\",show the girl back at the lake wakeboarding while her father continues to explain the proper way to teach them.,swim in different cliffs to swells.,are shown posing and all over the adult with the drumsticks on their hands.,finishes and start moving the pieces around the floor start doing an interview together.,grab a drink and start showing a thumbs up.,gold0-orig,pos,unl,unl,pos,pos,\"Next, they are shown practicing how to wakeboard in a pool while the man discusses the techniques.\",\"Next, they\"\nanetv_wDFpFJ1CP9g,17946,\"A man is explaining the key concepts behind making a child comfortable enough to wakeboard while his daughter is shown wakeboarding in a lake at the same time. Next, they\",are shown practicing how to wakeboard in a pool while the man discusses the techniques.,\"are standing upright together, laughing and on doing sit ups in front of a stadium.\",'re doing some flips in the swimming pool and almost a lot of amazing people on skating.,swim the boat's waters between the dog and struggles on the boat.,are shown smiling and doing a tutorial on how to properly jump on equipment to go diving backwards.,gold0-orig,pos,unl,unl,unl,unl,A man is explaining the key concepts behind making a child comfortable enough to wakeboard while his daughter is shown wakeboarding in a lake at the same time.,\"Next, they\"\nanetv_wDFpFJ1CP9g,9940,A man in a blue shirt is standing by the water talking. The girl and guy,are in a swimming pool practicing wake boarding.,get together to sing.,are sitting at the table talking about the game.,\"pick up a red rock, then receive them.\",are showing various ballet moves.,gold1-orig,unl,unl,unl,unl,unl,A man in a blue shirt is standing by the water talking.,The girl and guy\nanetv_wDFpFJ1CP9g,17949,As the girl wakeboards several people cheer for her from the boat. The video,ends with the closing graphics and captions shown at the end of the video.,shows a girl standing on a trampoline when she jumps off of the water boat.,ends with a closing view of one of the rafters falling heavily together with oars.,ends with them closing words on a screen for a video about shuffleboard.,,gold0-reannot,pos,unl,unl,unl,n/a,As the girl wakeboards several people cheer for her from the boat.,The video\nanetv_wDFpFJ1CP9g,9939,A girl is wake boarding behind a boat. A man in a blue shirt,is standing by the water talking.,is standing while holding onto a small rope in his hands as he enters.,gets stuck while his friends watch.,is sitting down watching them.,,gold0-reannot,pos,unl,unl,pos,n/a,A girl is wake boarding behind a boat.,A man in a blue shirt\nlsmdc0033_Amadeus-66612,5485,The wagon is galloping through the snowy streets of the city. Inside the conveyance we,\"see someone wrapped in blankets, half - conscious, being held by the hospital attendants.\",\"stand on a circular warehouse ahead, as an alien approaches with a individual's coat on.\",see people riding skateboards and throwing up lights cover range.,\"see loads of people with military clothing, mounted instruments and feet.\",,gold0-orig,pos,unl,unl,pos,n/a,The wagon is galloping through the snowy streets of the city.,Inside the conveyance we\nlsmdc0033_Amadeus-66612,5484,\"The driver whips up the horse, and the wagon dashes off through the still - falling snow. The wagon\",is galloping through the snowy streets of the city.,is completely empty as the danger becomes a small street exiting the exit.,\"pulls away, followed with someone limping forward.\",stops and cars fall beneath the speeding car ahead of them.,,gold1-orig,pos,unl,unl,unl,n/a,\"The driver whips up the horse, and the wagon dashes off through the still - falling snow.\",The wagon\nlsmdc0033_Amadeus-66612,5486,\"Inside the conveyance we see someone wrapped in blankets, half - conscious, being held by the hospital attendants. Someone\",stares at him grimly.,sleeps resting on a nearby bench.,turns slowly and looks across: spar.,gets in the getaway car and retrieves it from someone.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Inside the conveyance we see someone wrapped in blankets, half - conscious, being held by the hospital attendants.\",Someone\nlsmdc0019_Pulp_Fiction-56873,15368,\"Someone lowers his voice, which only serves to make him more menacing. He\",bends down in front of the woman who has sunk to the floor.,closes the door.,is no longer playing the scraps of any of the head staff about their simple sculptures.,\"turns up the volume on the television, only his head rising away from him.\",kicks in the shin and run into the fighting end.,gold0-orig,pos,unl,unl,unl,pos,\"Someone lowers his voice, which only serves to make him more menacing.\",He\nlsmdc0019_Pulp_Fiction-56873,15367,Someone is crying and scared. Someone,\"lowers his voice, which only serves to make him more menacing.\",sees the boy staring.,walks into her room.,looks into her eyes.,,gold0-orig,pos,unl,pos,pos,n/a,Someone is crying and scared.,Someone\nanetv_tFjGMdff3WM,18402,Several pictures are shown of a machine as well as tools laid out. A man,is seen using the tool in another picture.,is then seen doing push ups on a bike while others watch on the side.,speaks to the camera while pointing alcohol to the camera.,holds up noodles and shows the materials to drink it.,shows a man installing tiles and then sets off the washer and shaving.,gold0-orig,pos,unl,unl,unl,unl,Several pictures are shown of a machine as well as tools laid out.,A man\nanetv_tFjGMdff3WM,18403,A man is seen using the tool in another picture. Several more clips,are shown of the same ones over and over.,are shown of people doing various lines.,is shown of him sitting next to him.,are shown of kites that have targets.,are shown of him riding around as another person riding on.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen using the tool in another picture.,Several more clips\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3282,\"The person sitting on the stool reaches down and pets a small white dog. The dog, Snowy,\",sits and watches the crowd.,brushes its teeth and takes its hand.,stands back in the chair.,goes down the dog.,continues to run on his face.,gold0-orig,pos,unl,unl,unl,unl,The person sitting on the stool reaches down and pets a small white dog.,\"The dog, Snowy,\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3284,\"Tilting his head, Snowy steps forward. Strolling through the crowd, the man\",deftly picked several people's pockets.,moves toward his friend to escort his pass.,turns with his partner.,gazes up at his player.,\"follows someone through view, as someone sits up on a bench.\",gold1-orig,pos,unl,unl,unl,pos,\"Tilting his head, Snowy steps forward.\",\"Strolling through the crowd, the man\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3290,The young man wanders through the crowded square. Two man wearing bowlers,peer through holes punched through the same newspaper.,play together in a ring and belly struggle.,are playing an indoor wrestling ring.,lays out on a blue mat in a short rhythm.,,gold0-orig,pos,unl,unl,unl,n/a,The young man wanders through the crowded square.,Two man wearing bowlers\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3286,The thief takes a man's wallet out of the back of his pants. The man,pats his empty pocket then glances around himself.,scrutinizes the elevated model's head.,dabs at the coin then bobs his head.,climbs to another balustrade.,,gold0-orig,pos,unl,pos,pos,n/a,The thief takes a man's wallet out of the back of his pants.,The man\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3291,Two man wearing bowlers peer through holes punched through the same newspaper. Snowy,runs up to the young man.,are riding but not running down a road.,\"yard a row of figures, stopping nearby as they gather.\",fly an orange along the hood.,golf club is then shown in the rock and the man in the white shirt intercepts him.,gold1-orig,pos,unl,unl,unl,unl,Two man wearing bowlers peer through holes punched through the same newspaper.,Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3289,\"The thief steals a mustached man's lighter, then lights the man's cigarette. The young man\",wanders through the crowded square.,\"sits on a bench, staring at the gran torino.\",smokes the cigarette and lights the cigarette pipe.,\"leans in the shadows, his hands back on his smoking.\",holds his injured fist to his chest.,gold1-orig,pos,unl,unl,unl,unl,\"The thief steals a mustached man's lighter, then lights the man's cigarette.\",The young man\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3285,\"Strolling through the crowd, the man deftly picked several people's pockets. The thief\",takes a man's wallet out of the back of his pants.,picks it up to spanish meat.,in his suit disconnects and his stepfather try on mournfully.,covers one of the letters.,produces the bottle of garbage.,gold0-orig,pos,unl,unl,unl,unl,\"Strolling through the crowd, the man deftly picked several people's pockets.\",The thief\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3287,The man pats his empty pocket then glances around himself. The thief,\"taps another man on the shoulder, then reaches into his breast pocket as he turns.\",gives the monitor a cold smile.,\"hesitates, tucking his hair in his pockets.\",takes off his unlit work glasses and chugs.,,gold1-orig,pos,unl,unl,pos,n/a,The man pats his empty pocket then glances around himself.,The thief\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3288,\"The thief taps another man on the shoulder, then reaches into his breast pocket as he turns. The thief\",\"steals a mustached man's lighter, then lights the man's cigarette.\",rips up the limb.,picks up the papers.,slips a ring over his wand then grabs the bloody end of it.,aims his pistol at someone.,gold0-orig,pos,unl,unl,unl,pos,\"The thief taps another man on the shoulder, then reaches into his breast pocket as he turns.\",The thief\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31381,3283,\"The dog, Snowy, sits and watches the crowd. A nearby man\",\"slips on a pair of leather gloves, then wiggles his fingers.\",\"spots a pair of tall men in an original room, tapestry with intricate white flakes.\",\"holds a leash for someone, who bounds up the stairs to the ground awaiting screaming steps.\",\"grabs his bag and sits down, eating down newspaper.\",holds his shoes by the fire.,gold0-reannot,pos,unl,unl,unl,unl,\"The dog, Snowy, sits and watches the crowd.\",A nearby man\nlsmdc3070_THE_CALL-32675,4419,\"Blurry - eyed, she puts a hand on her temple and looks away from him. The man\",leaves and shuts the door.,measures himself in close with the hand that slowly pulls him very close.,\"peers out at them from the raft, then waves to someone.\",notices a blonde woman wearing a striped dressing gown and a black - yellow bowtie.,\"enters, revealing a network of coffins.\",gold0-orig,pos,unl,unl,unl,pos,\"Blurry - eyed, she puts a hand on her temple and looks away from him.\",The man\nlsmdc3070_THE_CALL-32675,4418,\"She opens a door marked Quiet Room and bursts in on a lounging coworker. Blurry - eyed, she\",puts a hand on her temple and looks away from him.,\"stares up into someone's notebook, trying to calm herself.\",carries the fridge door to the room.,\"faces down from the artists, then idly styles his hair.\",\"stares at someone, nods, and pulls her sweater out.\",gold0-orig,pos,unl,unl,unl,pos,She opens a door marked Quiet Room and bursts in on a lounging coworker.,\"Blurry - eyed, she\"\nlsmdc3070_THE_CALL-32675,4413,She brings a hand to her headset. Someone's boss,watches her from across the room.,picks up her from a bed.,looks across the aisle to someone.,peers down from a man unresponsive.,is leaning in and looks outside the window.,gold0-orig,pos,unl,unl,unl,pos,She brings a hand to her headset.,Someone's boss\nlsmdc3070_THE_CALL-32675,4416,She turns to her coworker. She,rises and rushes out.,spots a picture of himself and another photo.,holds up a copy of french fries.,considers tearfully.,is reading her story.,gold0-orig,pos,unl,unl,pos,pos,She turns to her coworker.,She\nlsmdc3070_THE_CALL-32675,4420,The man leaves and shuts the door. Someone,\"grips her head with both hands, pacing.\",pulls out a sheet of old school and carries them to a hotel room.,\"sighs, slips on a shirt, and hauls up a pair of jeans.\",grimaces as the apartment fades.,opens the safe and shuts the door.,gold0-reannot,pos,unl,unl,unl,unl,The man leaves and shuts the door.,Someone\nlsmdc3070_THE_CALL-32675,4417,She rises and rushes out. She,opens a door marked quiet room and bursts in on a lounging coworker.,drops her overhang and hurriedly runs her hand across the bed.,steps forward as she digs her hands in an assistant as she walks away.,sits up to look at someone.,picks up her pants and hurries through a house in another system.,gold1-reannot,pos,unl,unl,unl,unl,She rises and rushes out.,She\nlsmdc3070_THE_CALL-32675,4415,Someone's eyes dart about frantically. She,turns to her coworker.,has her pushing away.,runs the marathon until two tables filled with teammates.,reaches for his phone and hurry.,\"gets out of the car, holding someone in his arms.\",gold1-reannot,pos,pos,pos,pos,pos,Someone's eyes dart about frantically.,She\nanetv_Tu1oKxyfHTs,3115,\"A male is wearing black and white swimming shorts, standing at the edge of a diving board, bounces a few times and then jumps out of view and into the water. An older shirtless man wearing black shorts\",begins to walk on the same board of the male who previously jumped but then stops.,skates beside a bar covered with blue are doing where he flips over the parallel bar and does incredible stunts.,takes off the camera and eventually the start of the pool are visible amidst the pool.,climbs onto the wakeboard as the instructor pushes him on the stilts and loses and jumps back in the water.,\"is kneeling down next to a may wave, later wearing his cap and he stands in a chair that has an area in his\",gold0-orig,pos,unl,unl,unl,unl,\"A male is wearing black and white swimming shorts, standing at the edge of a diving board, bounces a few times and then jumps out of view and into the water.\",An older shirtless man wearing black shorts\nanetv_Tu1oKxyfHTs,3117,\"On a shorter board a male wearing blue swim underwear walks to the edge of the board jumps a few times, stops, turns around and walks back. The male\",\"walks to the edge of the board again, jumps a few times, then once again turns around and walks back.\",men spin around and ends with a guy waiting in a row for workout.,then begins riding in the lawn again.,\"pauses from for a moment as he nears, her face moving up and down.\",begins to leap up and down.,gold0-orig,pos,unl,unl,pos,pos,\"On a shorter board a male wearing blue swim underwear walks to the edge of the board jumps a few times, stops, turns around and walks back.\",The male\nanetv_Tu1oKxyfHTs,3116,An older shirtless man wearing black shorts begins to walk on the same board of the male who previously jumped but then stops. On a shorter board a male wearing blue swim underwear walks to the edge of the board,\"jumps a few times, stops, turns around and walks back.\",trying to wrangle as his movements faster as he can.,to adjust the doubt on his lower why behind it while a camera zooms in to show the side of his face.,and attacks another tug in the water.,to get his hand on the board but it is actually some concrete lining with water.,gold1-orig,pos,unl,unl,unl,pos,An older shirtless man wearing black shorts begins to walk on the same board of the male who previously jumped but then stops.,On a shorter board a male wearing blue swim underwear walks to the edge of the board\nlsmdc0011_Gandhi-53166,13985,\"Someone turns to the person; he makes the pranam. Someone is making the pranam to him and he suddenly,\",wildly draws his gun and fires.,to meet his outburst.,it rolls stand but breaks the silence.,as quickly as they are with his dad.,\"looking down with his broomstick so that we can't tell the names, sinking into his.\",gold1-reannot,pos,unl,unl,unl,pos,Someone turns to the person; he makes the pranam.,\"Someone is making the pranam to him and he suddenly,\"\nanetv_rBCf1qjOwCc,12599,Litle kids are standing in front of a ouse talking to the camera and making lemonade. the kid,\"opens a pot and grab sugar and poured into a cup of water, lemon juice and mix it with a spoon.\",takes the tray and pours the ham into it in bowls.,pours a fruit into the pot and pours another mix with a mixer.,is standing in the large bathroom and picks up a bottle of soda.,rests and takes a drag on a cigarette.,gold0-orig,pos,unl,unl,unl,unl,Litle kids are standing in front of a ouse talking to the camera and making lemonade.,the kid\nlsmdc1010_TITANIC-77165,13075,He pulled her to a different section of the railing. Someone,leans forward and spits.,stands and paddles towards the car's engine.,\"blocks this, he peeks out in a mirror.\",runs across the deck of the ship.,stumbles down the steep steps and scrambles upstairs.,gold1-reannot,pos,unl,unl,pos,pos,He pulled her to a different section of the railing.,Someone\nlsmdc1010_TITANIC-77165,13074,Someone takes someone's hand. He,pulled her to a different section of the railing.,presses his report card back toward the envelope.,follows behind the fiddle with a piece of paper.,twirls someone's suit.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone takes someone's hand.,He\nlsmdc1010_TITANIC-77165,13076,Someone's mother and her friends stroll nearby. He,turns around and swallows.,notices the black card.,accepts the envelope then turns the trunk.,shrugs her brow as he steps into an office.,grabs her phone and recognizes her.,gold0-reannot,pos,unl,unl,unl,pos,Someone's mother and her friends stroll nearby.,He\nlsmdc1010_TITANIC-77165,13079,\"Smiling at someone, someone points to her own chin. Someone quickly\",wipes saliva off his own chin.,takes off his specs.,\"swallows, she sucks.\",\"slaps someone's cheek, dreamily away.\",composes himself and joins people.,gold0-reannot,pos,pos,pos,pos,pos,\"Smiling at someone, someone points to her own chin.\",Someone quickly\nlsmdc0027_The_Big_Lebowski-63028,1057,They are wearing severe but modishly retro suits. A bed of nails,is the only set dressing on the cover.,is being held up by cardboard and a couple.,stands through rags and heat.,is shown that leads into several cars hitting a parked car at a small angle.,,gold0-orig,pos,unl,unl,unl,n/a,They are wearing severe but modishly retro suits.,A bed of nails\nlsmdc0027_The_Big_Lebowski-63028,1056,Someone stops between two albums. Someone,pulls out an album with a worn sleeve.,stands against the bow and waits.,lifts his own book to look on sympathetically.,keeps a nail master resting on a wall.,slips politely on a tray.,gold0-orig,pos,unl,unl,unl,unl,Someone stops between two albums.,Someone\nlsmdc0027_The_Big_Lebowski-63028,1055,\"She strides toward us, naked under a robe which she is just cinching shut. Someone\",stops between two albums.,disappears when her running hair hits his face.,sets and we and slip on the stairs.,throws the colonel down the floor.,,gold0-reannot,unl,unl,unl,unl,n/a,\"She strides toward us, naked under a robe which she is just cinching shut.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37066,19921,She gives a dispirited look then heads over. One of the chef,hands her a warm towel as she sits.,in her flaps takes a breath.,'s women looks up from the dolls.,wearing pliers is being smudged on dirty figures.,is now eating food and eating the food.,gold0-orig,pos,unl,unl,unl,pos,She gives a dispirited look then heads over.,One of the chef\nlsmdc3080_THIS_MEANS_WAR-37066,19922,One of the chef hands her a warm towel as she sits. She,drops her face in the towel.,lowers her seat from him and steps away.,sticks a lemon out of her mouth.,takes her coat and places it on the stove.,stands her little feet and extends her hand.,gold0-orig,pos,unl,unl,unl,unl,One of the chef hands her a warm towel as she sits.,She\nlsmdc3080_THIS_MEANS_WAR-37066,19920,\"Later, she enters a sushi restaurant. She\",gives a dispirited look then heads over.,stares at her as she walks slowly.,makes her way out.,opens a door for him.,smiles at him with a smile.,gold0-orig,pos,unl,unl,unl,unl,\"Later, she enters a sushi restaurant.\",She\nlsmdc3080_THIS_MEANS_WAR-37066,19923,\"She drops her face in the towel. Lifting her face from the towel, someone\",sees someone and someone.,wipes away from the board.,stands in front of the electrical counter and checks her cell.,\"twists around, wipes cloth and looking off.\",finds the door shakily inches from someone's face.,gold1-reannot,pos,unl,unl,unl,unl,She drops her face in the towel.,\"Lifting her face from the towel, someone\"\nlsmdc3033_HUGO-15030,7526,A carriage drives into the mouth of a volcano spewing smoke and embers. A train,crashes onto a fiery landscape of jagged rocks.,flies through an empty propeller stop by a wind.,\"logo appears, the inspectors someone.\",\"approaches, and people stand in step.\",crashes hard against the rock wall which explodes free and falls into the air onto the destroyer.,gold0-orig,pos,unl,unl,unl,pos,A carriage drives into the mouth of a volcano spewing smoke and embers.,A train\nlsmdc3033_HUGO-15030,7521,Someone holds up his arms then bows and steps backward toward a movie screen. He,\"puts on a top hat and places a cigarette in his mouth, then ducks off stage.\",sits and touches the same dancer with interest as they are kissing them.,\"crawls in, and they notice the helmeted man who is now sitting.\",looms over the monitor and zooms in on the clerk.,,gold0-orig,pos,unl,unl,pos,n/a,Someone holds up his arms then bows and steps backward toward a movie screen.,He\nlsmdc3033_HUGO-15030,7523,\"Wearing a coat and tails, young someone throws a music clefs. He\",takes off his own head and throws it onto the wires where it hovers like a musical note.,leans back and eats chewing.,\"joins him on the front lawn, alone.\",kicks the guy away in the ground.,snatches a support and shoves someone over someone.,gold0-orig,unl,unl,unl,unl,unl,\"Wearing a coat and tails, young someone throws a music clefs.\",He\nlsmdc3033_HUGO-15030,7525,\"Outside a castle, a magician conjures a pair of green imps who twirl batons of fire. A carriage\",drives into the mouth of a volcano spewing smoke and embers.,pulls into the house below.,turns as two men run across a bridge.,\"stands there, wide enough for them to approach, avoiding them one by one.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Outside a castle, a magician conjures a pair of green imps who twirl batons of fire.\",A carriage\nlsmdc3033_HUGO-15030,7522,\"He puts on a top hat and places a cigarette in his mouth, then ducks off stage. Next, a fleet of airships, dirigibles, and hot air balloons\",fly across a cloudy sky.,bears his building as he carries a report through his date.,are tethered the street at the frat room.,\"explode in the air, bathed in golden smoke.\",float across the small field to a farmers pad.,gold0-reannot,pos,unl,unl,unl,pos,\"He puts on a top hat and places a cigarette in his mouth, then ducks off stage.\",\"Next, a fleet of airships, dirigibles, and hot air balloons\"\nlsmdc3033_HUGO-15030,7524,\"In other clips, revelers push a chariot across the sky. A magician\",\"lifts a giant hat, revealing a woman with butterfly wings.\",leaps two fabric blows.,bodied hits the pirate's cricket cheek.,gets up from his box and snaps the pumpkin.,,gold1-reannot,pos,unl,unl,unl,n/a,\"In other clips, revelers push a chariot across the sky.\",A magician\nanetv_Iuk7PNmG3tQ,6890,\"Again, another animated example is shown to explain how the game works. The black team player\",hits the puck on the opposite corner of the ice.,changes into the cricket actions.,walks off one of the people day go by stair and down the gate then vaults over the plant.,followed and their backup dancers wins the side.,darts the ice puck in half.,gold0-orig,pos,unl,unl,unl,pos,\"Again, another animated example is shown to explain how the game works.\",The black team player\nanetv_Iuk7PNmG3tQ,6888,An animated version of the game is shown on screen. Then the focus,is back on the real game where a black team player is highlighted as he takes a shot on the goal.,is on mail to do so.,goes is the man talk to the camera and a young man standing on the side is holding a paintball bow.,shows a gymnast standing on a field where a man walks up on front a large audience.,cuts to a fooseball table for the proper winner to manage.,gold0-orig,pos,unl,unl,unl,pos,An animated version of the game is shown on screen.,Then the focus\nanetv_Iuk7PNmG3tQ,6886,One of the players from the black team hits the puck away from his opponent. The players from the white team,try to prevent him from hitting a goal.,take their own turn and see their game on a new screen.,are pressing the team boys while their game wins.,scores the same goal for the opposing team.,plays tug of war over and over.,gold0-orig,pos,unl,unl,unl,unl,One of the players from the black team hits the puck away from his opponent.,The players from the white team\nanetv_Iuk7PNmG3tQ,6889,\"Then the focus is back on the real game where a black team player is highlighted as he takes a shot on the goal. Again, another animated example\",is shown to explain how the game works.,\"appear in paradise, finally the color overlays and the words disappear.\",is shown to capture the ball from sandy ice on the scene most of the time before finally dropping the ball.,appears on some say as the video ends with the words in pursuit of them.,,gold0-orig,pos,unl,unl,unl,n/a,Then the focus is back on the real game where a black team player is highlighted as he takes a shot on the goal.,\"Again, another animated example\"\nanetv_Iuk7PNmG3tQ,6887,The players from the white team try to prevent him from hitting a goal. An animated version of the game,is shown on screen.,is pushed across the screen.,is cheering for the teams.,is replayed from elk.,is repeated in slow motion.,gold0-orig,pos,unl,unl,unl,unl,The players from the white team try to prevent him from hitting a goal.,An animated version of the game\nanetv_Iuk7PNmG3tQ,6885,Several players from the black and white team are playing ice hockey in the arena. One of the players from the black team,hits the puck away from his opponent.,hits the ball all over the net.,begins to have a lacrosse game.,makes the shot with two hitting their goal.,,gold0-orig,pos,unl,unl,pos,n/a,Several players from the black and white team are playing ice hockey in the arena.,One of the players from the black team\nanetv_Iuk7PNmG3tQ,6892,\"As the black moves fast and towards the goal, it cause the goalie to fall down. The black team\",wins the goal and gets the victory in the game.,\"reaches for a gap in the wall, causing it to attempt again.\",goes over the black ropes and the red team celebrate.,catches his catches and tries to switch after the ball.,is screams at one another before sticking there and weaving over the competitor.,gold0-orig,pos,unl,unl,unl,unl,\"As the black moves fast and towards the goal, it cause the goalie to fall down.\",The black team\nanetv_Iuk7PNmG3tQ,6891,\"The black team player hits the puck on the opposite corner of the ice. As the black moves fast and towards the goal, it\",cause the goalie to fall down.,fills a pit with both palms.,shows right drills with it's results.,hits the goalie - - a game of hockey player.,bursts around the room and hits racquetball.,gold0-reannot,pos,unl,unl,unl,unl,The black team player hits the puck on the opposite corner of the ice.,\"As the black moves fast and towards the goal, it\"\nanetv__9e948mdwrs,1988,A man blows dead leaves of a backyard. A person,makes a pile of dead leaves.,puts oil into a pan on the rocks.,starts cutting the grass with a knife.,slides sand in a leaf.,,gold0-orig,pos,unl,unl,unl,n/a,A man blows dead leaves of a backyard.,A person\nanetv_w8gNl6HWctA,4234,\"The man becomes irate as he plays and begins stomping, yelling, wildly gesturing and pushing the woman down on the floor when she falls as they play the game. When the game ends the woman leaves, looking upset and the man\",looks satisfied as he begins doing wild stretches in front of the doorway and talking to another person.,finishes her call and laughs.,begins to smile and walk away at the end of the session.,tethered its legs around appropriate covers.,shows her how to hit the balls precisely.,gold0-orig,pos,unl,unl,unl,unl,\"The man becomes irate as he plays and begins stomping, yelling, wildly gesturing and pushing the woman down on the floor when she falls as they play the game.\",\"When the game ends the woman leaves, looking upset and the man\"\nanetv_w8gNl6HWctA,4233,A woman approaches him and the two begin to talk. The man and woman,begin to play tennis in a closed gym room by hitting the tennis ball against a wall with their tennis racket.,are walking in on a path with a human in their hand.,is behind a table about some type of stuff.,ducks ropes and laces for a lobster.,\"appear and see the knife, then sliced a cucumber, one with an orange bread spoon.\",gold1-orig,unl,unl,unl,unl,unl,A woman approaches him and the two begin to talk.,The man and woman\nlsmdc0041_The_Sixth_Sense-67756,11471,The two boys are statues as someone's blood - chilling yells fill. Someone,is one of them.,heaves two metal red drink at his hands.,is in a cot.,stares as someone raises his spear.,surge through the rotting house.,gold1-orig,pos,unl,unl,unl,unl,The two boys are statues as someone's blood - chilling yells fill.,Someone\nlsmdc3081_THOR-38159,14814,\"Someone beats the bridge repeatedly, creating fracture lines which spiderweb through the glassy material. Behind someone, someone\",stands and runs at his brother with his spear in his hands.,gazes up with his limp broken speedos.,steps down a city street and lands on a cliff above.,\"swats someone by the chin, knocking him around.\",kneels down from the old on the plastic rock and ducks behind the base.,gold1-orig,unl,unl,unl,unl,unl,\"Someone beats the bridge repeatedly, creating fracture lines which spiderweb through the glassy material.\",\"Behind someone, someone\"\nlsmdc3081_THOR-38159,14819,\"As someone falls he grabs someone's spear. Standing on the ragged edge of the bridge, someone\",grabs someone's leg.,floats on the platform backwards.,quickly searches the roof.,lunges wildly at someone.,signals for the others.,gold1-orig,pos,unl,unl,unl,pos,As someone falls he grabs someone's spear.,\"Standing on the ragged edge of the bridge, someone\"\nlsmdc3081_THOR-38159,14816,Someone leaps at someone as he swings down his war hammer. The explosion,carries someone and someone high into the air.,explodes as the floor hurtles away from them.,pass power tower into the spar.,lurches off and fighting someone wearing his green satin jacket.,\"pushes to the ground and leaps, swinging him backwards into the air.\",gold1-orig,pos,unl,unl,unl,pos,Someone leaps at someone as he swings down his war hammer.,The explosion\nlsmdc3081_THOR-38159,14828,Someone stands motionless then slowly follows the others. A low sun,illuminates the glittering kingdom of asgard.,shines in the night sky.,dappled day covers the sun.,shines across the deck with the pale hood right.,,gold1-orig,pos,unl,unl,unl,n/a,Someone stands motionless then slowly follows the others.,A low sun\nlsmdc3081_THOR-38159,14821,\"The two brothers dangle over an endless expanse of deep space. Below someone, someone\",hangs onto his spear with one hand.,leads someone through a busy street.,stops by the platform.,leans back against the dune.,smiles as the others follow to him.,gold1-orig,pos,unl,pos,pos,pos,The two brothers dangle over an endless expanse of deep space.,\"Below someone, someone\"\nlsmdc3081_THOR-38159,14815,\"Behind someone, someone stands and runs at his brother with his spear in his hands. Someone\",leaps at someone as he swings down his war hammer.,\"the armies soldiers leave the field, a soldier kicks him from the wall and she fights his way through the shield.\",slows three crisp removes the time.,jumps over the helicopter and notepaper.,\"picks up a lighter and corporate his rifle, which carries the basket of cash from a hook.\",gold0-orig,pos,unl,unl,unl,unl,\"Behind someone, someone stands and runs at his brother with his spear in his hands.\",Someone\nlsmdc3081_THOR-38159,14820,\"Standing on the ragged edge of the bridge, someone grabs someone's leg. The two brothers\",dangle over an endless expanse of deep space.,\"sway together as they ride the boat, landing in the boat swerve.\",burst onto the crowded deck past a pool.,rush out to the window.,,gold0-orig,pos,unl,unl,unl,n/a,\"Standing on the ragged edge of the bridge, someone grabs someone's leg.\",The two brothers\nlsmdc3081_THOR-38159,14818,\"As the end of the bridge collapses, flames rip apart the spinning observatory, which then crashes into the water. As someone falls he\",grabs someone's spear.,picks up his own match and picks it up.,stalks off onto a calm curtsy.,straightens up by its head.,snaps on the alarm system.,gold1-orig,pos,unl,unl,unl,unl,\"As the end of the bridge collapses, flames rip apart the spinning observatory, which then crashes into the water.\",As someone falls he\nlsmdc3081_THOR-38159,14826,\"The gas clouds stop swirling and expand slightly. Back on earth, someone, someone and someone\",stare up at a blue sky marbled with fluffy white clouds.,stroll between crags's towering ruin.,follow a sharp corner.,watch the plane crash into a ditch.,,gold0-orig,pos,pos,pos,pos,n/a,The gas clouds stop swirling and expand slightly.,\"Back on earth, someone, someone and someone\"\nlsmdc3081_THOR-38159,14822,\"Below someone, someone hangs onto his spear with one hand. Someone\",stares up at his father.,punches him and runs an overhand around someone.,raises the gun and heads to people's table ok.,is thrusting a substance into the baby's face.,\"stares at the ring in his hand, as the demon rises in the pit itself.\",gold1-orig,pos,unl,unl,unl,pos,\"Below someone, someone hangs onto his spear with one hand.\",Someone\nlsmdc3081_THOR-38159,14825,\"Releasing his grip, someone falls into outer space toward a swirling cloud of flashing gas. The gas clouds\",stop swirling and expand slightly.,stay harmlessly with ominous smoke.,rise and the crystalline intensity points.,\"gathers itself as he descends, then stops.\",grow brighter and he waves a revolver at someone.,gold0-reannot,pos,unl,unl,unl,unl,\"Releasing his grip, someone falls into outer space toward a swirling cloud of flashing gas.\",The gas clouds\nlsmdc3081_THOR-38159,14827,Someone shuffles back toward their truck. Someone,stands motionless then slowly follows the others.,grabs sister out of the car.,gives a wide - face smile.,stops in the tracks.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone shuffles back toward their truck.,Someone\nanetv_FYhB2rQwfCc,12122,Two people are playing wall ball in a room. A woman,drops her racket onto the ground.,is standing in front of an audience.,is practicing how to make a fire.,takes a baseball and lays.,standing next to him holds up a cup of mouthwash.,gold1-orig,pos,unl,unl,unl,unl,Two people are playing wall ball in a room.,A woman\nanetv_FYhB2rQwfCc,7322,Two players compete in a racquetball match indoors. The man,drops the ball and his racket on accident.,lands on the shot ignoring the player.,kicks the ball and dances off after the team cheer.,throws a ball all over the goal.,shows a orange volley.,gold0-orig,pos,unl,unl,unl,unl,Two players compete in a racquetball match indoors.,The man\nanetv_FYhB2rQwfCc,7324,The players stretch out before the ball is served. The man,jumps off of the wall while hitting the ball.,lifts the barbel and the crowd cheers.,walked to one knee.,\"cheer and celebrate, run to celebrate, and compete shown together again.\",scores and talk others one another.,gold1-orig,pos,unl,unl,unl,unl,The players stretch out before the ball is served.,The man\nanetv_FYhB2rQwfCc,7323,The man drops the ball and his racket on accident. The players,stretch out before the ball is served.,are crowned all right together.,run and land on the dock.,started to play on the other and listen to each other.,continue fighting and throw balls at the past players.,gold1-reannot,pos,unl,unl,unl,unl,The man drops the ball and his racket on accident.,The players\nlsmdc3081_THOR-37672,75,\"Someone throws someone at the armored giant, striking his face. Meanwhile, another giant knocks down someone, but someone\",dispatches him with a flying knife.,\"rolls on someone's side, leaps into the air.\",catches him gaining with a.,shoots a guard at the.,is unable to stop.,gold1-orig,pos,unl,unl,unl,pos,\"Someone throws someone at the armored giant, striking his face.\",\"Meanwhile, another giant knocks down someone, but someone\"\nlsmdc3081_THOR-37672,73,\"Someone swings someone at an armored giant, but the feen grabs someone's wrist and headbutts him. The giant\",punches someone and sends him sailing backward.,lands lightly over someone's head.,leaps into the air and kicks him off the ground.,glares down at her.,leaps over her entire body.,gold0-orig,pos,unl,unl,pos,pos,\"Someone swings someone at an armored giant, but the feen grabs someone's wrist and headbutts him.\",The giant\nlsmdc3081_THOR-37672,93,\"He thrusts Mjolnir skyward imbuing it with a bolt of lightning, then slams the hammer into the ground. A huge shockwave\",ripples outward and sweeps away the giants in a swell of shattered earth.,leans over the table destroyed.,looms in the center of the plaza.,is engulfed in flames.,,gold0-orig,pos,unl,unl,pos,n/a,\"He thrusts Mjolnir skyward imbuing it with a bolt of lightning, then slams the hammer into the ground.\",A huge shockwave\nlsmdc3081_THOR-37672,88,Flakes of frost fall from a huge creature encased in ice. Someone's allies,\"watch as the beast shakes its head free, revealing a wide mouth filled with fangs.\",fall by grinding lines.,animation in the mansion morphs into someone of someone's anchor positioned like a zebra.,disappears by the spell.,,gold0-orig,pos,unl,unl,unl,n/a,Flakes of frost fall from a huge creature encased in ice.,Someone's allies\nlsmdc3081_THOR-37672,74,The giant punches someone and sends him sailing backward. Someone,\"throws someone at the armored giant, striking his face.\",points on her reflection in the mirror.,\"doubles in several cocks, then drops his arms first, then kicks him away.\",shoots down but tries to follow him down another tunnel.,pulls a flashlight from under someone's head.,gold1-orig,pos,unl,unl,unl,unl,The giant punches someone and sends him sailing backward.,Someone\nlsmdc3081_THOR-37672,64,\"His chest heaving, someone continues to stare at the Jotun, then turns his back to him. Someone\",\"smiles as he spins and smashes the giant with someone, sending the giant flying backward.\",tips it back on him.,leads her to the elevator.,\"listens intently, then lowers his gaze and turns his attention to someone gratefully.\",\"stands behind them, tears glistening in the eyes.\",gold0-orig,pos,unl,unl,unl,pos,\"His chest heaving, someone continues to stare at the Jotun, then turns his back to him.\",Someone\nlsmdc3081_THOR-37672,91,\"Smashing through boulders of rock and ice in its path, twirling his hammer so fast that it blurs, someone flings chunks of the ground like projectiles. The creature\",\"swings its spiked tail toward someone, but misses.\",flies closer to the fire with its tail light underneath.,retreats after the fighting wand which is no less than person.,\"appears atop its perimeter, keeping great looking down and breaking something.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Smashing through boulders of rock and ice in its path, twirling his hammer so fast that it blurs, someone flings chunks of the ground like projectiles.\",The creature\nlsmdc3081_THOR-37672,102,\"Smiling, someone turns to his companions then frowns. Sitting atop a black war horse, someone\",appears in full battle armor.,trips off the horse and ease the bully.,walks along the crest of the gangplank to the sky.,pauses as the two of them move off.,,gold0-orig,pos,unl,unl,pos,n/a,\"Smiling, someone turns to his companions then frowns.\",\"Sitting atop a black war horse, someone\"\nlsmdc3081_THOR-37672,83,\"Someone retreats a few steps, then runs forward and slides through the giant's legs. Someone\",grabs his sword again and thrusts it into the giant's throat.,\"helps someone to her feet, as the small, gentle woman approaches a ship, preparing to dive.\",\"continues to swing past his women, continually by one wave, staring at each other, startled.\",spots some gold tendrils from his sword.,\"runs to someone's side, and climbs up from the railing as a brake near someone's neck.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone retreats a few steps, then runs forward and slides through the giant's legs.\",Someone\nlsmdc3081_THOR-37672,94,A huge shockwave ripples outward and sweeps away the giants in a swell of shattered earth. The shockwave,\"spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet.\",draw onto a repeat of her previous pyramid.,\"looms through a jungle, dotting to amber sky.\",and the windows go dark.,'s highest blue - stone searchingly.,gold0-orig,pos,unl,unl,unl,unl,A huge shockwave ripples outward and sweeps away the giants in a swell of shattered earth.,The shockwave\nlsmdc3081_THOR-37672,79,\"Someone smashes his war hammer into a giant's chest. Nearby, someone\",stabs a bare chested giant with a dagger.,\"vomits with sheer divide, and gradually backs up and watertight a clear window outside the ship.\",dangles a few posts over the bound flowerbed.,watches the giant slam a monk with his western - lipped mouth.,rubs his fingers on his spear.,gold0-orig,pos,unl,unl,unl,pos,Someone smashes his war hammer into a giant's chest.,\"Nearby, someone\"\nlsmdc3081_THOR-37672,69,\"Someone throws a weapon which shatters a giant's ice weapon, while someone swings his hefty ax into another giant's torso. Someone\",kicks a giant across the ground and looks up at someone.,\"kicks the cow again and runs him along a fence, then ducks and faces as people come out of the gate.\",hit a boy painfully as someone takes the wand out of his fallen brother and whips him off.,\"fires a hurtling ropes at him, aggressively trying to hit him with impact.\",\"beats it against the tree, while tail whips explode and float into him.\",gold1-orig,unl,unl,unl,unl,unl,\"Someone throws a weapon which shatters a giant's ice weapon, while someone swings his hefty ax into another giant's torso.\",Someone\nlsmdc3081_THOR-37672,96,The warriors stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them. The creature,\"pulls itself up, narrows its beady red eyes and roars.\",breaks into a gap.,walks away painfully as ducks digging holes in the firewood.,leaps out tendrils its wings.,\"flies backward, joins someone in a sphere, stares dumbfounded at the iceberg.\",gold0-orig,pos,unl,unl,unl,pos,The warriors stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them.,The creature\nlsmdc3081_THOR-37672,85,Someone and someone pull someone off the spikes. Someone,\"smashes another giant with someone, then hurls his hammer across the battlefield striking down several enemies.\",slings down the fire on the wall.,rise onto the ground beneath the zombie.,hits a jagged log on the demon's tortured foot.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone pull someone off the spikes.,Someone\nlsmdc3081_THOR-37672,65,\"Someone smiles as he spins and smashes the giant with someone, sending the giant flying backward. Someone\",swings his hammer into another frost giant then fends of several attacks.,watches as the plane speeds off.,turns to look at him.,turns away from someone.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone smiles as he spins and smashes the giant with someone, sending the giant flying backward.\",Someone\nlsmdc3081_THOR-37672,99,\"As the beast rears up onto its hind legs, someone flies like a missile into the creature's open mouth and out through the back of its head. The beast's eyes\",roll backward as it collapses onto the ground.,shake steadily and the rich black zombie drops into view.,\"turn slowly open, revealing a sleepy, dark - haired spiders.\",widen as its blade flies over a burning tunnel.,peer through the drawing o someone's body on the floor as if to speak to the fire.,gold0-orig,pos,unl,unl,unl,unl,\"As the beast rears up onto its hind legs, someone flies like a missile into the creature's open mouth and out through the back of its head.\",The beast's eyes\nlsmdc3081_THOR-37672,66,Someone swings his hammer into another frost giant then fends of several attacks. Someone,takes out a spiked mace as someone slashes with a double - bladed sword.,'s jaws go free.,and his companions smile happily.,cups both hands and squeezes it.,,gold0-orig,pos,unl,unl,unl,n/a,Someone swings his hammer into another frost giant then fends of several attacks.,Someone\nlsmdc3081_THOR-37672,87,\"He flicks his hand, sending out a bolt of blue energy which races through the rocky terrain. Flakes of frost\",fall from a huge creature encased in ice.,\"spreads on the long, white walls.\",\"spreads from the back door, which someone lies in his arms, hovering on the rug.\",swirl across the field.,float steadily through the trees.,gold0-orig,pos,unl,unl,unl,unl,\"He flicks his hand, sending out a bolt of blue energy which races through the rocky terrain.\",Flakes of frost\nlsmdc3081_THOR-37672,82,The giant knocks someone's sword out of his hand. Someone,\"retreats a few steps, then runs forward and slides through the giant's legs.\",draws away leaving the crowd staring at him impassively.,grabs someone's wand from his pocket.,shoots the attacker from behind his.,punches him and punches him in the face.,gold0-orig,pos,unl,unl,unl,unl,The giant knocks someone's sword out of his hand.,Someone\nlsmdc3081_THOR-37672,95,\"The shockwave spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet. The warriors\",stop at the edge of a cliff as one of the beast's clawed hands reaches up in front of them.,cautiously scramble out of the wood - trap.,stand with place as someone moves towards them.,\"line in front of one of the devil's towers, which towering and towers over him.\",,gold1-orig,pos,unl,unl,pos,n/a,\"The shockwave spreads, toppling rock formations and collapsing the ground beneath the frost giant's feet.\",The warriors\nlsmdc3081_THOR-37672,71,More frost giants race out of the Citadel and leap down into the courtyard below. One Jotun,punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet.,stick runs over the gryffindor tent and finds a guard hustling the three of them.,picks him up and propels it over someone's shoulders.,crawls along in the whirlwind.,\"strides up to the bully's temple, where he breathes heavily.\",gold0-orig,pos,unl,unl,pos,pos,More frost giants race out of the Citadel and leap down into the courtyard below.,One Jotun\nlsmdc3081_THOR-37672,77,Someone retreats to the edge of a cliff as a burly Jotun races toward him. The giant,\"leaps at someone, who turns translucent, then passes straight through him before tumbling into a deep ravine.\",leaps from the back of the kicker into the pit.,hurls a trooper through the floor and smashes its head with the pole.,\"leaps up onto shadowfax, then pulls off the hood and makes its way into the alien.\",\"flings him through the slot, which backs off, leaving the vanishing below.\",gold0-orig,pos,unl,unl,unl,unl,Someone retreats to the edge of a cliff as a burly Jotun races toward him.,The giant\nlsmdc3081_THOR-37672,72,\"One Jotun punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet. Someone swings someone at an armored giant, but the feen\",grabs someone's wrist and headbutts him.,gets suspended and falls as more guards scurry into position.,blocks ahead of someone.,hit the prisoners as they attempt to reach the river.,pulls him into the air to embrace him.,gold0-orig,pos,pos,pos,pos,pos,One Jotun punctures the ground creating a shockwave that thrusts a shard of ice up out of the rock and knocks someone off his feet.,\"Someone swings someone at an armored giant, but the feen\"\nlsmdc3081_THOR-37672,86,\"From his thrown, someone watches the conflict. He\",\"flicks his hand, sending out a bolt of blue energy which races through the rocky terrain.\",emerges up beside a parked truck.,waves after him and punches a port guy in the head.,\"looks away into the distance, then advances to the pumpkin with his wand.\",,gold1-orig,pos,unl,unl,unl,n/a,\"From his thrown, someone watches the conflict.\",He\nlsmdc3081_THOR-37672,100,The beast's eyes roll backward as it collapses onto the ground. Someone,lands in front of the dead creature as it slides over the edge of the cliff and disappears.,lower the catapults and up to someone's feet.,\"stares at someone, his smile leaving its clock.\",runs over to her.,looks apprehensive as someone emerges up the stairs.,gold1-orig,pos,unl,unl,unl,unl,The beast's eyes roll backward as it collapses onto the ground.,Someone\nlsmdc3081_THOR-37672,81,\"Meanwhile, someone parries another giant's attacks. The giant\",knocks someone's sword out of his hand.,\"throws stick to the bat, dragging around.\",\"strikes a fight and thuds into someone as he rushes in, who briefly flees.\",spins him across the bars.,catches the bird and tosses the animal up.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone parries another giant's attacks.\",The giant\nlsmdc3081_THOR-37672,80,\"He stabs the frost giant in the heart and wrenches himself free, then watches as his arm gradually returns to normal. Meanwhile, someone\",parries another giant's attacks.,stirs awake and then briefly closes his eyes.,lays out her luggage.,crosses to the table where he'd been holding all the patients he'd used.,uses several bomber cameras to seize someone in stage.,gold0-orig,pos,unl,unl,unl,unl,\"He stabs the frost giant in the heart and wrenches himself free, then watches as his arm gradually returns to normal.\",\"Meanwhile, someone\"\nlsmdc3081_THOR-37672,98,\"Spinning his hammer, someone leaps high into the air. As the beast rears up onto its hind legs, someone\",flies like a missile into the creature's open mouth and out through the back of its head.,stares up at the stars.,swoops through a dirt room.,swoops down the trap door.,,gold1-orig,unl,unl,unl,pos,n/a,\"Spinning his hammer, someone leaps high into the air.\",\"As the beast rears up onto its hind legs, someone\"\nlsmdc3081_THOR-37672,89,\"Someone's allies watch as the beast shakes its head free, revealing a wide mouth filled with fangs. Spinning like a whirlwind, someone\",continues to battle frost giants as his friends flee.,is beginning to head off at a gap.,takes air from it landing and hands it over to its dangling rider.,grabs a drone by the unicorn which flies overhead.,sends someone flying across the field.,gold0-orig,pos,unl,unl,unl,pos,\"Someone's allies watch as the beast shakes its head free, revealing a wide mouth filled with fangs.\",\"Spinning like a whirlwind, someone\"\nlsmdc3081_THOR-37672,78,Someone grapples with an ice giant who grips someone's arm searing the flesh as it burned. Someone,smashes his war hammer into a giant's chest.,flops her cover on the ground beside them.,\"looks up, revealing someone's face, his helmet, and his belt shaped - baseball should just look at someone with amazement.\",\"see in horror, swooping around the desert.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone grapples with an ice giant who grips someone's arm searing the flesh as it burned.,Someone\nlsmdc3081_THOR-37672,92,\"The creature swings its spiked tail toward someone, but misses. Still twirling his hammer, someone\",watches as frost giants close in around him.,laughs with his tongue flicking its neck and shudders with him.,runs and grabs the broomstick.,\"stretches the vampire's neck into the fighter's neck and slashes him, forcing his assault to the side.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"The creature swings its spiked tail toward someone, but misses.\",\"Still twirling his hammer, someone\"\nlsmdc3081_THOR-37672,97,\"The creature pulls itself up, narrows its beady red eyes and roars. Spinning his hammer, someone\",leaps high into the air.,leaps onto a narrow ledge off a train and lands on another side of the floor.,thrust his knife for her.,opens its right pocket revealing the fire.,finds him half - buried in the hedge.,gold0-reannot,pos,unl,unl,unl,unl,\"The creature pulls itself up, narrows its beady red eyes and roars.\",\"Spinning his hammer, someone\"\nlsmdc3081_THOR-37672,101,\"Someone lands in front of the dead creature as it slides over the edge of the cliff and disappears. Smiling, someone\",turns to his companions then frowns.,eyes the dashboard skeptically.,looks over at the packed surf.,begins to hold someone's neck.,uses his wand to lightly hinged the mountain.,gold0-reannot,pos,unl,unl,unl,unl,Someone lands in front of the dead creature as it slides over the edge of the cliff and disappears.,\"Smiling, someone\"\nlsmdc3081_THOR-37672,67,Someone takes out a spiked mace as someone slashes with a double - bladed sword. Someone,laughs as he wields his sword.,looks from someone to the landlord.,\"rushes through the injured side, which stops beside a neighboring building.\",runs steadily down the red - walled street towards tall brick bushes.,clings to the chains.,gold1-reannot,pos,unl,unl,unl,unl,Someone takes out a spiked mace as someone slashes with a double - bladed sword.,Someone\nlsmdc3081_THOR-37672,63,\"Someone stares at his brother then pulls his arm free, and with his teeth bared glares at the giant. His chest heaving, someone\",\"continues to stare at the jotun, then turns his back to him.\",\"turns and stares, continuing his descent.\",struggles to his feet and touches his temple at the hand over his head.,raises his brow imitating the same height.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone stares at his brother then pulls his arm free, and with his teeth bared glares at the giant.\",\"His chest heaving, someone\"\nlsmdc3081_THOR-37672,84,Someone grabs his sword again and thrusts it into the giant's throat. Someone and someone,pull someone off the spikes.,\"stand by the barrier, firing round the spherical storm.\",tumble through the crumbling mass.,fall down onto the fire.,rush to the railing and start going.,gold1-reannot,pos,unl,pos,pos,pos,Someone grabs his sword again and thrusts it into the giant's throat.,Someone and someone\nlsmdc3081_THOR-37672,90,\"Spinning like a whirlwind, someone continues to battle frost giants as his friends flee. Carried by someone, someone\",looks back as the beast races toward them on four legs.,holds someone by his arms.,lands safely on the ground.,stabs the prisoners for battle.,stands among the throng clutching his wand.,gold0-reannot,pos,unl,pos,pos,pos,\"Spinning like a whirlwind, someone continues to battle frost giants as his friends flee.\",\"Carried by someone, someone\"\nlsmdc3045_LAND_OF_THE_LOST-21078,14478,Someone finds a makeshift electronic device on his desk. He,grabs a french fry.,finds someone sitting with the other roadster's rifles.,removes a capsule then drops it.,opens it to reveal a sharp piece of someone.,,gold1-orig,pos,unl,unl,unl,n/a,Someone finds a makeshift electronic device on his desk.,He\nanetv_7VbXyfF3kEw,2324,Two women wearing matching outfits are on their microphones and kind of half watching a boy play with a rubix cube. The boy,is solving the cube pretty quickly the girl seems pretty shocked.,throws the black bottle down and looks as more or the members of the the dance.,bends down and releases the poles while sitting with their arms.,lets go of a 17 disc and slides it onto the other side.,goes up to the wall and starts indoors puzzle.,gold0-orig,pos,unl,unl,unl,unl,Two women wearing matching outfits are on their microphones and kind of half watching a boy play with a rubix cube.,The boy\nanetv_uYqNIBbz4_Q,16192,A man is seen standing outside holding a rope and tying it around a tree bark. He then,axes the log on the ground and breaks it into two.,throws the object back and fourth while holding up a calf.,picks up a tool on the horse and ties and ties the cow.,ties the ropes onto the calf that lead him down the field.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is seen standing outside holding a rope and tying it around a tree bark.,He then\nanetv_JHITVq5zJOM,9839,They are playing a game of volleyball. They,hit the ball back and forth over the net.,pour mud for the cup.,claim the game while trying to score the ball.,continue talking to each other as they continue to play.,,gold0-orig,pos,unl,unl,unl,n/a,They are playing a game of volleyball.,They\nanetv_JHITVq5zJOM,9838,Several people are gathered around a net on the beach. They,are playing a game of volleyball.,are involved in a game of lacrosse.,roll the ball back and forth.,play a game of volleyball.,,gold0-orig,pos,unl,unl,pos,n/a,Several people are gathered around a net on the beach.,They\nanetv_JHITVq5zJOM,18611,\"Several kids are playing beach volleyball on an enclosed, sand volleyball court. One of the boys\",falls down after trying to go for the ball.,takes the ping pong coaches him and walks to shake the ball.,\"in the audience takes it, directing it on the border.\",starts to hit a goal and high fives an opponent.,coaches is able to hit the ball back and forth.,gold0-orig,pos,unl,unl,unl,unl,\"Several kids are playing beach volleyball on an enclosed, sand volleyball court.\",One of the boys\nanetv_ZMTi498qnPc,2922,A young child is seen sitting on a bar with another girl showing her teeth to the camera. The girl,opens the box to take an object out while the young girl laughs to the camera.,talks in front of a mirror and speaks to the makeup artist.,keeps dancing as the trainer prepares.,spins and dips her hands in the pool.,continues shaving her legs and ends by showing off her body to the camera.,gold1-orig,pos,unl,unl,unl,unl,A young child is seen sitting on a bar with another girl showing her teeth to the camera.,The girl\nanetv_ZMTi498qnPc,2923,The girl opens the box to take an object out while the young girl laughs to the camera. The girl,continues taking items out of the box while the girl looks and laughs.,continues moving the hula hoop around with her hands hanging along and holding her breaths out.,flips her body around and gives a happy shrug.,stares down at the children as the girl picks up food and continues hitting him with a stick.,,gold0-orig,pos,unl,unl,unl,n/a,The girl opens the box to take an object out while the young girl laughs to the camera.,The girl\nanetv_ZMTi498qnPc,220,A little girl is sitting on a bench in front of a wall. A woman,is painting her toe nails with polish.,is sitting on the ground waiting for a hula.,is painting her nails in a bed.,starts going back on touching her hair.,is shown sitting on an ottoman smiling at the camera.,gold0-orig,pos,unl,unl,unl,unl,A little girl is sitting on a bench in front of a wall.,A woman\nlsmdc0010_Frau_Ohne_Gewissen-51426,6210,\"Someone is wearing his vest and hat, no coat. He\",is carrying a file of papers and smoking a cigar.,puts on a sweatshirt and a t - shirt.,lassos the wheel and runs on it.,runs for the door and comes right next to him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone is wearing his vest and hat, no coat.\",He\nanetv_-qXqnltHWtE,2279,Men ride horses out of a gates and ropes a bull before dismounting and tying their its legs. The winner,waves his hat and is congratulated by the other riders.,stands up and makes his teeth while doing a trick of a disc and uses it to run.,rides the horses and horses and hugs them several times riding back and forth over the obstacle.,is against a woman then runs.,lassos a large calf and ropes a calf.,gold0-orig,pos,unl,unl,unl,pos,Men ride horses out of a gates and ropes a bull before dismounting and tying their its legs.,The winner\nanetv_-qXqnltHWtE,2278,Cowboys compete in a rodeo competition. Men,ride horses out of a gates and ropes a bull before dismounting and tying their its legs.,are building wrestling on the field.,are standing on the rope.,are standing around playing tug and war.,gathers around a gate slack and gets in.,gold1-orig,pos,unl,unl,unl,unl,Cowboys compete in a rodeo competition.,Men\nanetv_TK5FnYshy10,478,We see kids across the beach working on their castles in the wet sand. We,see a teen and two small kids filling a large square bucket with sand.,then see the raft down the hill.,see a lady close up dipping a huge brush in a wake board and begins to pick that up.,see a replay out of the jump.,,gold0-orig,pos,unl,unl,unl,n/a,We see kids across the beach working on their castles in the wet sand.,We\nanetv_TK5FnYshy10,476,We see an opening title screen. A group of kids,is building a moat filled with water around a sand castle.,are playing curling in a field rink.,are running in a bowling field.,see playing on a gym floor.,,gold0-orig,unl,unl,unl,unl,n/a,We see an opening title screen.,A group of kids\nanetv_TK5FnYshy10,12408,They gather sand and pack it around the center. The children across the beach,\"are putting sand in buckets, proud of their work.\",are shown as a company take their ornaments.,gather their belongings as she narrates.,are floating around in the sand.,begin to get over their heads.,gold0-orig,pos,unl,unl,unl,unl,They gather sand and pack it around the center.,The children across the beach\nanetv_TK5FnYshy10,12411,A line of buckets filled with items are displayed on the beach as the kids gather behind them. A woman,opens a piece of paper and reads it to the group before handing the buckets to the kids.,is seen speaking speak to the camera while holding up various objects in holding it.,in a red coat enters with the dirty laundry.,is tubing down a grassy slope.,\"eyes someone, holding up a cotton ball.\",gold0-orig,pos,unl,unl,unl,unl,A line of buckets filled with items are displayed on the beach as the kids gather behind them.,A woman\nanetv_TK5FnYshy10,12407,\"A group of kids are at the beach, trying to build a sand castle. They\",gather sand and pack it around the center.,toss their freedom on their friends.,hit the water in the mountains.,wave over one ball and cartwheel into the water.,are standing at the top of a hill.,gold0-orig,pos,unl,unl,unl,unl,\"A group of kids are at the beach, trying to build a sand castle.\",They\nanetv_TK5FnYshy10,12410,A girl dumps sand into a large bucket. A line of buckets filled with items,are displayed on the beach as the kids gather behind them.,is washed from a bucket along a bucket.,are flying and fall on them.,comes up to join her.,is rolled to the boat.,gold0-orig,pos,unl,unl,unl,unl,A girl dumps sand into a large bucket.,A line of buckets filled with items\nanetv_TK5FnYshy10,480,We see prize buckets in the sand and the kids run over to the camera man. A lady in black,reads names a man hands her and passes out prize buckets to the kids.,gives someone a thumbs up.,goes in to an aerial shot.,is skiing on the snow.,picks them up and then practices.,gold0-orig,pos,unl,unl,unl,unl,We see prize buckets in the sand and the kids run over to the camera man.,A lady in black\nanetv_TK5FnYshy10,477,A little girl with floaters on pour water in the moat. We,see kids across the beach working on their castles in the wet sand.,\", the technician walks the gate.\",is also knitting at the back.,come to the area holding people.,,gold0-orig,pos,unl,unl,pos,n/a,A little girl with floaters on pour water in the moat.,We\nanetv_TK5FnYshy10,12409,\"The children across the beach are putting sand in buckets, proud of their work. A girl\",dumps sand into a large bucket.,sits in front of a pile of snow.,is then seen standing a line and eating a baby.,stands on a bench wearing a fresh towel and rolls to her knees in the sand.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The children across the beach are putting sand in buckets, proud of their work.\",A girl\nanetv__D9oML1HvVw,12939,More people are shown performing flips off rope and picnic tables. The men,take turns jumping off the rope and looking to the camera.,continue moving and bounces in the water as the man water surfing.,continue swinging one over and padded down the aisle.,fly off throwing the board until it is a fire.,continue to paddle around while people walk from the camels.,gold0-orig,pos,unl,unl,unl,unl,More people are shown performing flips off rope and picnic tables.,The men\nanetv__D9oML1HvVw,6426,A guy flips off a slack line and lands on his body. A man,walks on a slack line and falls off.,make up over a proper backflip.,lifts up a kid with a pole.,throws a bowling ball sitting on a mat.,,gold0-orig,pos,unl,unl,unl,n/a,A guy flips off a slack line and lands on his body.,A man\nanetv__D9oML1HvVw,6427,A man walks on a slack line and falls off. A person,does flips around the slack line.,jumps over a hill of snow and sits across a hector assisted by a girl.,brushes a flaming boat and does a spectacular flip in the water.,fells on the grass and falls down.,walks over a rope until complete.,gold0-orig,pos,unl,unl,unl,unl,A man walks on a slack line and falls off.,A person\nanetv__D9oML1HvVw,6428,A person does flips around the slack line. A male,\"flips off a brown, picnic table.\",falls down onto the motorbike.,and a woman walk out of the bend.,slices the side of the field and slices a hundred foot.,takes a elongated flip on a score flag.,gold0-orig,pos,unl,unl,unl,unl,A person does flips around the slack line.,A male\nanetv__D9oML1HvVw,12938,A man is seen standing up on a rope and jumping off doing a flip. More people,are shown performing flips off rope and picnic tables.,pull on the string and end up walking out.,stand by the edge as well as running into the crowd and holding up the rope.,are seen running around in different clips as well as performing tricks and leads off into people congratulating themselves and jumping.,are seen performing a routine with various arms and jumping around as well as he exercises.,gold1-orig,unl,unl,unl,unl,unl,A man is seen standing up on a rope and jumping off doing a flip.,More people\nanetv_4VVIFV6XmKo,518,\"They continue fighting and hitting one another as a person stands in the corner showing them. After some time, they\",finish fighting and stand still across from one another in the gym.,do another black break and begin to talk to each other.,continue to continue to hit the ball together as far as they can.,ride the bicycle through the living passing and move on to celebrate.,\"practice their final moves, hitting and doing erupts in the rink.\",gold0-orig,pos,unl,unl,unl,unl,They continue fighting and hitting one another as a person stands in the corner showing them.,\"After some time, they\"\nanetv_4VVIFV6XmKo,517,Two men are in a small gym boxing and fighting one another. They,continue fighting and hitting one another as a person stands in the corner showing them.,walk up and down the room.,hang on and proceed to play soccer.,move around the room and arm wrestle with one another.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are in a small gym boxing and fighting one another.,They\nanetv_z_ojmuWzMWo,10123,A dog plays behind and with the groomed dog. The dog now,is getting a haircut.,starts walking with it for the dog.,puts something on the screen.,runs through a market.,chases after the comb.,gold0-orig,pos,unl,unl,unl,unl,A dog plays behind and with the groomed dog.,The dog now\nanetv_z_ojmuWzMWo,10120,The woman is spraying water on the small dog with a hose. She,is now blow drying the dog.,helps a dog alongside the dog who not fetch.,smiles at the camera while in her cap.,gets it into the bucket when the dog comes.,brings the dog in to her and turns back.,gold0-orig,pos,unl,unl,unl,unl,The woman is spraying water on the small dog with a hose.,She\nanetv_z_ojmuWzMWo,10119,A dog is being bathed by a woman. The woman,is spraying water on the small dog with a hose.,sprays the fire with a heavy hose.,is wiping the shoe with a cloth.,throws a letter to the dog.,,gold0-orig,pos,unl,unl,unl,n/a,A dog is being bathed by a woman.,The woman\nanetv_z_ojmuWzMWo,10121,She is now blow drying the dog. The dog,is placed in the kennel next to a woman's feet.,washes her face with the shampoo.,\"tried to cut her face, so she is trying to do something very close to her face.\",walks into frame and walks towards the dog she also comes to.,\"begins to run about the dog, then she is shown where she brushes using leaves and inflatable gloves.\",gold1-reannot,pos,unl,unl,unl,unl,She is now blow drying the dog.,The dog\nanetv_c3SJUucMqJQ,12606,The person pets the belly of the cat. They,take the cat back and set it in a chair.,put the core on the back couch.,push the pov's paws into the area.,finish searching each other.,walk by a red cat.,gold1-orig,pos,unl,unl,unl,unl,The person pets the belly of the cat.,They\nanetv_c3SJUucMqJQ,12603,They lay the cat down on their lap. They,begin to clip the nails of the cat.,play between sticks of the pigeons.,spray some baking nuts and place another.,put a face on the wall.,,gold0-orig,pos,unl,unl,unl,n/a,They lay the cat down on their lap.,They\nanetv_c3SJUucMqJQ,12602,A person picks up a cat off of a chair. They,lay the cat down on their lap.,set up a bicycle and place them on a wooden bench.,use the ax to pick it off.,put the cat down on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,A person picks up a cat off of a chair.,They\nanetv_c3SJUucMqJQ,12605,A person is sitting next to them on a laptop. The person,pets the belly of the cat.,switches on the water back at a fire.,is painting the wall on front of the camera.,puts a candle in the oven.,begins riding her bike back and forth.,gold0-orig,pos,unl,unl,unl,unl,A person is sitting next to them on a laptop.,The person\nanetv_5QbiJmDyoM0,17777,A female gymnast mounts a beam in a gym. She,does several flips and springs across the beam.,demonstrates re doing gymnastics on the balance beam.,mounts the gymnastics beam and starts jumping on flips.,\"mounts, flips and flips several times before jumping back onto the routine.\",does the same routine on the bars with the help of the woman.,gold0-orig,pos,unl,unl,unl,pos,A female gymnast mounts a beam in a gym.,She\nanetv_5QbiJmDyoM0,17778,She does several flips and springs across the beam. She then,dismounts and raises her arms.,dismounts and lands happily at the end.,performs several flips and tricks towards the mat.,does various stunts on the beam.,jumps down on the balance beam.,gold1-orig,pos,pos,pos,pos,pos,She does several flips and springs across the beam.,She then\nanetv_aqQ7-J9kbUE,19331,People are standing around the campfire. A man,picks up sticks from the ground.,showers and they start stepping across the floor.,holds a rope on a fire.,removes mulch from the boat.,,gold1-orig,pos,unl,unl,pos,n/a,People are standing around the campfire.,A man\nanetv_aqQ7-J9kbUE,6913,A man is fueling the fire. The fire,dies down a bit.,starts to return fire.,is bound and skewered.,scrolls into the screen.,is filled with pictures of the mumakil with background.,gold0-orig,pos,unl,unl,unl,unl,A man is fueling the fire.,The fire\nanetv_aqQ7-J9kbUE,19332,A man picks up sticks from the ground. The man,goes closer to the campfire and adds a stick to it.,holds the bat that came with a mallet.,jumps right off of his skateboard.,drops the clippings into the water.,,gold1-orig,pos,unl,unl,unl,n/a,A man picks up sticks from the ground.,The man\nanetv_aqQ7-J9kbUE,6914,The fire dies down a bit. The man,gets it roaring again.,turns on an empty radio and turns around.,lights it on fire.,spills harmlessly into the hole and swerves into the hole.,takes a drill striking the clown.,gold0-orig,pos,unl,unl,unl,unl,The fire dies down a bit.,The man\nanetv_aqQ7-J9kbUE,19330,A guy is making a campfire with a blowtorch. People,are standing around the campfire.,are cooking behind them.,are irritated by a tree.,is dancing in his living room.,,gold0-reannot,pos,unl,unl,unl,n/a,A guy is making a campfire with a blowtorch.,People\nlsmdc0001_American_Beauty-45680,563,\"Someone is smiling, enjoying the show; someone just stares. Someone\",chuckles at a joke and startles her.,runs up from his board and starts to wave.,stares at the reverence.,\"lay someone, shivering, flat and sullen, to someone's seat.\",\"is a dark - haired general, someone on that and he is a beautiful, beautiful, beautiful, in blue winter outfit.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone is smiling, enjoying the show; someone just stares.\",Someone\nlsmdc0001_American_Beauty-45680,569,\"She smiles her most winning smile at him. He knows this persona well, only it\",'s never pissed him off as much as it does right now.,'s not of the kind and making him smile.,keeps keeping him waiting.,has not been at all.,is good with it.,gold0-orig,pos,unl,unl,unl,unl,She smiles her most winning smile at him.,\"He knows this persona well, only it\"\nlsmdc0001_American_Beauty-45680,566,\"We follow them as they pass a sign that reads. Inside the ballroom, well - dressed real estate professionals\",\"stand in clumps, chatting.\",enter a spiral between two.,are shown a high bow in a alley.,claim the wedding spectacle with a long purple curtain.,,gold1-orig,pos,unl,unl,unl,n/a,We follow them as they pass a sign that reads.,\"Inside the ballroom, well - dressed real estate professionals\"\nlsmdc0001_American_Beauty-45680,568,She drags someone toward a silver - haired man and his much younger wife. We,\"recognize the man as someone, the real estate king.\",\"her from her seat, someone hops into a van and slips into a trail.\",looks up and sees someone lying sleeping with his head resting against the foot of the bed.,switch place to find the inside.,stares down at someone.,gold0-orig,pos,unl,unl,unl,unl,She drags someone toward a silver - haired man and his much younger wife.,We\nlsmdc0001_American_Beauty-45680,565,\"The three of them stare at the tv, like strangers in an airport. We\",follow them as they pass a sign that reads.,\", now in, and calm's are someone and someone, walk at the crib.\",world suppresses a nervous - growing - awake; vamp raises a head.,\"in town with someone, someone stops in the doorway, listening quietly.\",play colleagues as teenagers.,gold0-orig,pos,unl,unl,unl,unl,\"The three of them stare at the tv, like strangers in an airport.\",We\nlsmdc0001_American_Beauty-45680,567,Catering waiters serve hors d'eouvres. She,drags someone toward a silver - haired man and his much younger wife.,pours fire into a jug.,tries to fight off his white fur boater.,\"brings someone to the bathroom, then swings at us as she passes.\",,gold1-reannot,unl,unl,unl,unl,n/a,Catering waiters serve hors d'eouvres.,She\nlsmdc3057_ROBIN_HOOD-27711,5771,She crouches beside someone and draws the blanket up over his shoulder. Her gaze,lingers on someone as she sidles away.,dances lovingly over her body.,\"drifts to an unoccupied window, then lowers its gaze into the barred opening of a towering building.\",frown wistfully as she positions her finger at someone.,focuses on her bra.,gold0-orig,pos,unl,unl,unl,unl,She crouches beside someone and draws the blanket up over his shoulder.,Her gaze\nlsmdc3057_ROBIN_HOOD-27711,5769,\"It starts gently, then quickly gathers force as lightning flashes overhead. Someone\",sits by the hearth in the banquet hall.,continues its advocate as she takes a deep breath.,\"wakes, leaning over and dribbling her friend.\",jerks the massive shell back and forth as punches in the brilliant flames.,,gold0-orig,pos,unl,unl,unl,n/a,\"It starts gently, then quickly gathers force as lightning flashes overhead.\",Someone\nlsmdc3057_ROBIN_HOOD-27711,5770,\"Someone sits by the hearth in the banquet hall. At her feet, someone\",\"sleeps on the floor in an undershirt, a blanket covering him from the waist down.\",belts up a staircase.,gazes up at the large hotel room of his family.,watches uncomfortably as she pulls the boy back into the dining room.,\"moves to remove his shirt in a solemn expression, then beams at someone.\",gold1-orig,pos,unl,unl,unl,unl,Someone sits by the hearth in the banquet hall.,\"At her feet, someone\"\nlsmdc3057_ROBIN_HOOD-27711,5766,\"Now, puffy clouds reflect the moonlight, casting a gentle glow on Nottingham's fields as the Merry Men plot to reclaim the grain. In slow motion, someone\",\"marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder.\",lovingly uses his arms and walks his head between his fingertips.,pulls up at the's dorm and watches as someone glides on.,\"throws the dogs at someone, keeping his eyes on someone as they follow someone in the dusty suit.\",ambles across a vast paddy between banyan trees.,gold0-orig,pos,unl,unl,unl,unl,\"Now, puffy clouds reflect the moonlight, casting a gentle glow on Nottingham's fields as the Merry Men plot to reclaim the grain.\",\"In slow motion, someone\"\nlsmdc3057_ROBIN_HOOD-27711,5767,\"In slow motion, someone marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder. Little someone\",works beside someone who wears a joyful grin.,scowls at the boy.,rests someone and her son the in a concerned expression.,puts the dead wrapper back down.,ducks in bed as someone ushers the children out through a window.,gold0-orig,pos,unl,unl,unl,unl,\"In slow motion, someone marches down a row of furrowed soil, tossing seed by the handful from a sack slung over his shoulder.\",Little someone\nlsmdc3057_ROBIN_HOOD-27711,5772,Her gaze lingers on someone as she sidles away. She,\"turns her back to him and strides across the great hall, her arms swinging stiffly at her sides.\",throws her head away then watches her arms crossed.,gives a hug in glistening eyes.,finds her in her office.,takes someone 'arm.,gold1-reannot,pos,unl,unl,unl,unl,Her gaze lingers on someone as she sidles away.,She\nlsmdc3057_ROBIN_HOOD-27711,5768,Little someone works beside someone who wears a joyful grin. It,\"starts gently, then quickly gathers force as lightning flashes overhead.\",\", someone sits in a bench, watches the glint in the ashes.\",\"back to his parents, the fairy gives a news card.\",smiles and takes a seat.,raises his lips and clenches his jaw.,gold0-reannot,pos,unl,unl,unl,unl,Little someone works beside someone who wears a joyful grin.,It\nlsmdc3057_ROBIN_HOOD-27711,5775,\"She glances back toward someone with parted lips, then continues out. Now, as legions of soldiers\",march double time through the woods.,\"arrive, displaying a shady sculpture of dark stone many with gleaming brown doors with every color - toned eye.\",pass by and near the rows of glass panels.,\"cross a street, night, someone uses a golden disk on to a toy.\",\"throw a gate to the golden gates, people get up with a passing taxi.\",gold0-reannot,pos,unl,unl,unl,unl,\"She glances back toward someone with parted lips, then continues out.\",\"Now, as legions of soldiers\"\nlsmdc3057_ROBIN_HOOD-27711,5774,He watches from the floor as she pauses. She,\"glances back toward someone with parted lips, then continues out.\",touches her skin over her niece.,rubs her hands together.,glances at a chair pushed along the wall.,closes his eyes tenderly.,gold1-reannot,pos,unl,pos,pos,pos,He watches from the floor as she pauses.,She\nanetv_ErEr4Sxdprw,4365,A man is in the gym in tight he bends over picks up a weight over his head and drops it back down. He,walks back and loosens up before walking back up and doing it again adding more weight.,begins to do stops jumping at his knees again and taking a few more forward breaths.,lifts the weight on his head and finally punching the air by lifting it over his head and touching it.,struggles to successfully get the weight down and lifts it over his head so it falls over when he strikes again.,walks past the bar and moves himself to his knees and rapidly does some flips off the bar.,gold0-orig,pos,unl,unl,unl,unl,A man is in the gym in tight he bends over picks up a weight over his head and drops it back down.,He\nanetv_ErEr4Sxdprw,4366,He walks back and loosens up before walking back up and doing it again adding more weight. He,does this multiple times adding more and more weight to the rack.,heads out of the room.,formations jumps in the air at the end!,does not even realize that she was okay.,watches her shift around while dancing with his arms and speaking to the camera.,gold0-reannot,pos,unl,unl,unl,unl,He walks back and loosens up before walking back up and doing it again adding more weight.,He\nanetv_UGKGBBAckJw,1122,Children are standing on mats in a large basketball court. They,do exercises lead by an instructor that can not be seen and music is playing.,are watching and watching the dog.,are playing instruments together in front of running building.,dart on the table together.,are standing in a foosball court practicing practicing moves.,gold0-orig,pos,unl,unl,unl,pos,Children are standing on mats in a large basketball court.,They\nanetv_UGKGBBAckJw,4034,The students step onto the mat with alternating feet. The students,step side to side while stepping on the mat.,listen in the fearful light.,take small steps towards the public table.,push their bundles along the wall and into the gym.,rush straight to his side.,gold0-orig,pos,unl,unl,unl,unl,The students step onto the mat with alternating feet.,The students\nanetv_UGKGBBAckJw,4032,A group of children stand on mats together with an instructor waiting to begin. The students,work out first raising their arms up and down.,\"moves back and fourth, landing on the rope and ends by jumping out and bowing.\",step back from position to perform as the instructor uses a stepper to clap.,kneel down together and move.,twirl and move between the two bars with their hands in the air.,gold1-orig,pos,unl,unl,unl,unl,A group of children stand on mats together with an instructor waiting to begin.,The students\nanetv_UGKGBBAckJw,4033,The students work out first raising their arms up and down. The students,step onto the mat with alternating feet.,bow for their final move.,are very frustrated and someone starts gathering the field.,turn and gaze around a dark office.,return their act and start the team.,gold0-orig,pos,unl,unl,unl,unl,The students work out first raising their arms up and down.,The students\nanetv_UGKGBBAckJw,1124,\"The children start to do steps back and forth onto and then off of the mats, in between moving their arms. The children then\",\"go right and left, stepping off and on the mats.\",\"continue again on their trainer, half turns up to each other again.\",slide down the slide while the children stand on.,turns around and looks over a city of kids clapping and helping and clapping.,moves batons all around the room and then continue to perform to the camera.,gold0-reannot,pos,unl,unl,unl,unl,\"The children start to do steps back and forth onto and then off of the mats, in between moving their arms.\",The children then\nanetv_Ls8ha6c0ye8,15791,He gets a pass into a park area. He,\"is shown driving, walking, and riding horses as he explores the area.\",stands outside a bush.,waves his phone into the air and picks it up.,takes a cigarette and ads answers on it.,,gold1-orig,pos,unl,unl,unl,n/a,He gets a pass into a park area.,He\nanetv_Ls8ha6c0ye8,15790,A man is driving a car through a window. He,gets a pass into a park area.,is holding a microphone attached to a train.,is cleaning the garage using a hose.,has some tools in his hand.,gets out of the parking lot and goes into frame.,gold0-reannot,pos,unl,unl,unl,pos,A man is driving a car through a window.,He\nanetv_Qlh-VSBxcJs,5857,She continues dancing around while moving all around the floor whipping her hair and grabbing her skirt. She,finishes by sitting down on the floor and looking into the mirror.,continues walking around it with a stick.,continues speaking while looking off into the distance.,finishes playing and looks up to the camera and woman speaking to another woman while walking back to the music.,stands up as a woman begins to solve the puzzle.,gold1-orig,pos,unl,unl,unl,unl,She continues dancing around while moving all around the floor whipping her hair and grabbing her skirt.,She\nanetv_Qlh-VSBxcJs,5856,An intro leads into a belly dancer performing a routine in front of a mirror. She,continues dancing around while moving all around the floor whipping her hair and grabbing her skirt.,has the dance back in her knees on the stage and begins bending down to the floor.,continue performing around the court performing ballet movements as she performs.,begins stepping up and down and ends by falling while a man in a robe is standing next.,is seen jumping on the stage and makes her dance up to the baton.,gold0-orig,pos,unl,unl,unl,unl,An intro leads into a belly dancer performing a routine in front of a mirror.,She\nanetv_nK7XMj4gYJs,3626,A man is demonstrating a gymnastics performance on two bars. There,are spectators watching the performance.,tries to jump off the beam.,doing tricks for footing several perpendicular bars while browsing a few times.,swings his hands as she learns.,is doing gymnastics gear on a very uneven mat.,gold1-orig,pos,unl,unl,unl,unl,A man is demonstrating a gymnastics performance on two bars.,There\nanetv_YDwHdB6MBrE,17959,A woman in a blue jacket is standing on the field watching them. The kids,are chasing around a yellow ball.,in the gym are wearing flippers.,begin bouncing up and down as they try to climb the tree.,are standing on the side watching dance.,begin looking at each other.,gold0-orig,pos,unl,unl,unl,pos,A woman in a blue jacket is standing on the field watching them.,The kids\nanetv_YDwHdB6MBrE,17958,Kids are playing lacrosse on a field. A woman in a blue jacket,is standing on the field watching them.,is playing a game of hop scotch.,is standing around in a clearing stretching ahead.,is standing on the camels talking to the camera.,is standing on a stationary horse.,gold0-orig,pos,unl,unl,unl,unl,Kids are playing lacrosse on a field.,A woman in a blue jacket\nanetv_fSA-eTz3GkU,6498,A man in the stands claps for him. Another man,spins and throws a ball onto the field.,throws a man back to the camera.,walks by along a road doing several tricks.,comes out of the bar.,breaks the pole as a man talk to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man in the stands claps for him.,Another man\nanetv_dDmc6n79ek0,15940,Finally there are two players face to face with a referee and a pick in the middle of them and then a game begins with multiple different views and multiple different people hitting the puck and skating. A man is quickly skating across the rink and when he collides with an opposing player he,hits him very hard with his stick until the man falls to the rink.,falls around and three kicked out.,appears and gives up a website that is thrown from afar.,puts two piece back with a goal and scores three more before waving.,,gold0-orig,pos,unl,unl,pos,n/a,Finally there are two players face to face with a referee and a pick in the middle of them and then a game begins with multiple different views and multiple different people hitting the puck and skating.,A man is quickly skating across the rink and when he collides with an opposing player he\nanetv_dDmc6n79ek0,11936,The group leads into a large game of ice hockey. People,skate around furiously with one man sweeping in the end.,hit the ball back and fourth.,are running in the bases as the team practice with a team.,are seen playing volleyball beside the ice while speaking to people watching one game.,begin throwing up the balls in a pitcher of snow.,gold0-orig,pos,unl,unl,unl,unl,The group leads into a large game of ice hockey.,People\nanetv_dDmc6n79ek0,15941,A man is quickly skating across the rink and when he collides with an opposing player he hits him very hard with his stick until the man falls to the rink. The man gets up and the fast paced game,continues on and ends with men manually smoothing out the ice.,starts next giving him a few of the videos.,\"begins, while the increasingly large number of men march up and interviews.\",continues as the player continues skating and doing various spins in the competition.,,gold0-orig,pos,unl,unl,pos,n/a,A man is quickly skating across the rink and when he collides with an opposing player he hits him very hard with his stick until the man falls to the rink.,The man gets up and the fast paced game\nanetv_dDmc6n79ek0,15939,\"A vintage, black ad white poor quality video plays and it shows a lot of hockey players on an ice rink just skating around. Finally there are two players face to face with a referee and a pick in the middle of them and then a game\",begins with multiple different views and multiple different people hitting the puck and skating.,appears on the screen of them.,is made while the players start wrestling at the table.,put out of the field.,of others on the side tear down and the team continues fighting.,gold0-orig,pos,unl,unl,unl,unl,\"A vintage, black ad white poor quality video plays and it shows a lot of hockey players on an ice rink just skating around.\",Finally there are two players face to face with a referee and a pick in the middle of them and then a game\nanetv_dDmc6n79ek0,11935,Several people are seen skating around the ice in black and white. The group,leads into a large game of ice hockey.,does several push ups while people watch on the sidelines.,continues to play the game with other instruments.,pursues the shots from a large car riding together.,starts sprinting down the track of the chasing.,gold0-orig,pos,unl,unl,unl,unl,Several people are seen skating around the ice in black and white.,The group\nlsmdc3009_BATTLE_LOS_ANGELES-525,18949,He points to his temple then gets into someone's face. Someone,keeps his glaring eyes steady.,puts down his candle.,turns away from someone.,\"hurries back to people, where someone's asleep.\",,gold0-orig,pos,unl,unl,unl,n/a,He points to his temple then gets into someone's face.,Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9628,5525,Someone stares at the picture of someone in the newspaper. He,\"sees a raging man with wild, staring eyes struggling violently with his prison guards.\",is in a coat and sits down while holding a paper box.,studies the screen for a second and then tears it off.,\"lies on the ground beside someone, legged fake blood beneath.\",\"turns to someone and smiles, and takes his seat.\",gold0-orig,pos,unl,unl,unl,pos,Someone stares at the picture of someone in the newspaper.,He\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9628,5526,\"He sees a raging man with wild, staring eyes struggling violently with his prison guards. A foxglove\",grows in stony ground.,is heard coming from the gloom.,\"bolt slips from the view, as the rider walk away.\",knocks a woman out of the toppling.,,gold0-orig,pos,unl,unl,unl,n/a,\"He sees a raging man with wild, staring eyes struggling violently with his prison guards.\",A foxglove\nlsmdc0002_As_Good_As_It_Gets-46299,3001,He leads the way back toward the studio. And he,turns and sees the naked model.,fiddles with hair behind the collar until it's black.,\"grabs her heels, and joins someone in the bloodstained room.\",\"hears possible footsteps, clicking through another door with a fixture.\",,gold0-orig,pos,unl,unl,unl,n/a,He leads the way back toward the studio.,And he\nlsmdc0002_As_Good_As_It_Gets-46299,3003,Someone is striking blatantly sexual poses to the increasingly uneasy someone. Someone,has instinctively put someone on the defensive.,\"dances over with the word, not wanting to get a certain way.\",is putting on a black coat and full - length leather jacket.,\"is puzzled by the noise, and roars with some stores.\",is much witnessed behind then it fails.,gold0-orig,pos,unl,unl,unl,unl,Someone is striking blatantly sexual poses to the increasingly uneasy someone.,Someone\nlsmdc0002_As_Good_As_It_Gets-46299,3002,And he turns and sees the naked model. Someone,moves back to retrieve his clothes.,is seated in a side chair.,has a ball that he'll need for.,\"turns a channels on someone, not wearing a rustic helmet.\",\"dozes off a small desk, looking down with interest.\",gold0-reannot,pos,unl,unl,unl,unl,And he turns and sees the naked model.,Someone\nlsmdc1020_Crazy_Stupid_Love-81510,6492,She gazes at him and smiles. She,\"props herself up in bed, leans over and kisses him on the cheek.\",places her arms around her back.,\"looks down, then tenderly.\",takes his shirt off and she grins.,,gold1-orig,pos,unl,pos,pos,n/a,She gazes at him and smiles.,She\nlsmdc1009_Spider-Man3-76699,3705,Someone tears up the tattered skin tight black fabric across his chest. A slither of Symbiote,falls onto someone's shoulder.,lies in the ring beneath her wig.,\"appears on the bottom of his headset, and disappears in a soft wind.\",bathes his face as he proceeds to the portrait.,rises as he gazes longingly tenderly at the moon.,gold0-orig,pos,unl,pos,pos,pos,Someone tears up the tattered skin tight black fabric across his chest.,A slither of Symbiote\nlsmdc1009_Spider-Man3-76699,3713,He prices the door open with his fingertips. Someone,looks around his shabby room.,dumps his once water out of a mud trailer.,runs through the ruins.,see him in position below.,,gold1-orig,pos,unl,unl,unl,n/a,He prices the door open with his fingertips.,Someone\nlsmdc1009_Spider-Man3-76699,3710,\"Later in his room, someone is in the shower with the water streaming over his tightly closed eyes. A short time later, he\",is sitting on his floor for lonely leaning against the french windows.,lies with a bandage wrapped around his left shoulder.,opens the hedging and looks through.,\"drives down a highway and through a leafy, dual neighborhood digs.\",\"spots a young girl on the beach back in the edge of the water, where they engine some a lot of home ornaments.\",gold0-orig,pos,unl,unl,unl,unl,\"Later in his room, someone is in the shower with the water streaming over his tightly closed eyes.\",\"A short time later, he\"\nlsmdc1009_Spider-Man3-76699,3709,\"Like a wild cat with ferocious jagged teeth, he lurches forward as venom. Later in his room, someone\",is in the shower with the water streaming over his tightly closed eyes.,is listening to someone.,writes in a book.,\"wipes a powder up his nose, then lifts the clamps to his chest.\",turns through the open bedroom door and peers inside.,gold0-orig,pos,unl,unl,unl,unl,\"Like a wild cat with ferocious jagged teeth, he lurches forward as venom.\",\"Later in his room, someone\"\nlsmdc1009_Spider-Man3-76699,3701,\"He falls against the bell in a struggle. For a second, the mask\",seems to disintegrate then snaps back into place.,rises off its sepoys as it flies.,of a large roof is shown.,snaps off and someone throws a leather sweatshirt under a twin tank.,goes slowly towards someone.,gold0-orig,pos,unl,unl,unl,pos,He falls against the bell in a struggle.,\"For a second, the mask\"\nlsmdc1009_Spider-Man3-76699,3707,\"Above him, someone tears the unraveling Symbiote from his body. The slimy black Symbiote\",slithers off the edge of the ledge that someone's on and snakes down the bell tower.,rises until a cake is flung aside.,takes out his rich outline and winks at someone.,\"shines on bloodshot, with large maintenance man working in it.\",faces someone at the glowering sky.,gold0-orig,pos,unl,unl,unl,pos,\"Above him, someone tears the unraveling Symbiote from his body.\",The slimy black Symbiote\nlsmdc1009_Spider-Man3-76699,3703,Someone looks up at the sound. Someone,\"pulls up the mask, ripping it across his contorted features.\",slams her foot against the wall and primping at the bottom.,bites a popsicle and stares down after it.,turns and walks up the hall to the bottles beside him.,grabs someone's bag and proffers it with foot.,gold0-orig,pos,unl,unl,pos,pos,Someone looks up at the sound.,Someone\nlsmdc1009_Spider-Man3-76699,3706,\"A slither of Symbiote falls onto someone's shoulder. Above him, someone\",tears the unraveling symbiote from his body.,watches a man lying on his back in his room.,is struggling desperately to pull back himself.,lands shield over the man and his mother.,clasps his hands against his head.,gold0-orig,pos,unl,unl,unl,pos,A slither of Symbiote falls onto someone's shoulder.,\"Above him, someone\"\nlsmdc1009_Spider-Man3-76699,3711,\"A short time later, he is sitting on his floor for lonely leaning against the French windows. He\",\"trudges to the door and holds the door, which comes off in his hand.\",presses liquid on his lips and tenses.,crosses a lush - and - blue lawn.,looks away from his brother and starts to lift a racket from a shelf.,,gold1-reannot,pos,unl,unl,unl,n/a,\"A short time later, he is sitting on his floor for lonely leaning against the French windows.\",He\nlsmdc1009_Spider-Man3-76699,3704,He looks up the vertiginous tower as if he were at the deep of a deep well. Someone,tears up the tattered skin tight black fabric across his chest.,works on a fish at a leisurely pace as it just overtakes the water.,\"stands in the doorway - - component charger, under the lists and feeling for someone.\",\"steps to the explodes and looks at them, satisfied, and takes a step forward.\",,gold0-reannot,pos,unl,unl,unl,n/a,He looks up the vertiginous tower as if he were at the deep of a deep well.,Someone\nlsmdc1009_Spider-Man3-76699,3702,\"For a second, the mask seems to disintegrate then snaps back into place. Someone\",looks up at the sound.,adds a feather into the sweatshirt and up.,flips across the bars several times.,\"sighs, as his father dive out of the corner center.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"For a second, the mask seems to disintegrate then snaps back into place.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59945,3551,Someone is preparing to leave. Someone,\"looks at the young hobbit, moved by his courage.\",is just away from him.,is over to her.,\"leans over by the door, watching someone coldly.\",hurries out of the room.,gold0-reannot,pos,unl,unl,pos,pos,Someone is preparing to leave.,Someone\nanetv_K8W0PtyPlD4,9655,Rules are shown for the game. A group of girls,play a volley ball game.,play volleyball over stage.,are shown playing hockey.,are shown gathered in studio gymnasium.,,gold0-orig,pos,pos,pos,pos,n/a,Rules are shown for the game.,A group of girls\nanetv_K8W0PtyPlD4,9656,A group of girls play a volley ball game. A group of adults,play a volleyball game on an overcast day.,carry a curling boat with the classmates.,stands interviewed with the boy.,watch a boy 'score.,play hurling in a shallow field.,gold0-orig,pos,unl,unl,pos,pos,A group of girls play a volley ball game.,A group of adults\nanetv_K8W0PtyPlD4,9653,A group of adults plays a game of beach volleyball. Groups of children of kids,play a game of beach volleyball.,performs five people in the big rear waves.,appear to be from different elliptical machines on white shacks.,play beer pong in a large gymnasium.,stand on the side of the field.,gold0-orig,pos,unl,unl,unl,pos,A group of adults plays a game of beach volleyball.,Groups of children of kids\nanetv_K8W0PtyPlD4,9654,Groups of children of kids play a game of beach volleyball. Rules,are shown for the game.,are nerdist as people ride.,\"join them, they use a wash to show the game.\",strains against the playground.,and instructors are running in car like participants.,gold0-orig,pos,unl,unl,unl,unl,Groups of children of kids play a game of beach volleyball.,Rules\nanetv_AZaSkc1gnhY,3700,\"After, the man plays guitar indoor on front an audience. Next, the man\",plays harmonica and guitar at the same time.,hits the saxophone and the ball.,stops jump and talks and after a closeup of the instrument close and then shows the machine closeup.,plays tam - tams while wearing a hat.,,gold0-orig,pos,unl,unl,pos,n/a,\"After, the man plays guitar indoor on front an audience.\",\"Next, the man\"\nanetv_AZaSkc1gnhY,3699,\"Then, the man hols a cup of coffee and a guitar in the street. After, the man\",plays guitar indoor on front an audience.,wash a can and take a spoon.,stops a campfire while taking a beer and lighting the fire.,put a cigarette on the electronic chamber and stretch iron tape.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the man hols a cup of coffee and a guitar in the street.\",\"After, the man\"\nanetv_AZaSkc1gnhY,3698,A man drinks coffee and then plays guitar indoor. The man,makes a pause and takes his coffee.,jogs up to another room of people behind someone.,stops playing a harmonica and smiles from someone.,\"sits, drinks mouthwash and swallows.\",edges into the room.,gold0-reannot,pos,unl,unl,unl,unl,A man drinks coffee and then plays guitar indoor.,The man\nanetv_juLxWt_3omw,5618,Then she lifts the heavy yellow weight and someone who's watching her shows peremptory by yelling. She,holds it up for a good second and then drops it back down to the ground.,\"is very high, and there are a black screen where the women are shown throwing the discus and yelling.\",raises two blades to her chest as she holds an unseen door to him and calls out.,jogs into the narrow hallway.,holds a dazzling necklace in her hand before scooping tassels out as someone at the same time making her husband's braid.,gold0-orig,pos,unl,unl,unl,unl,Then she lifts the heavy yellow weight and someone who's watching her shows peremptory by yelling.,She\nanetv_juLxWt_3omw,18446,A woman is seen standing ready in front of a set of weights. She,lifts the bar up over her head and begins to throw it down in the end.,\"puts her arms out, then leans on a set of weights.\",lifts weights all over her shoulders while the camera captures her movements.,walks in and out of frame while still jumping onto a camera.,begins to do a bar routine.,gold1-reannot,pos,unl,unl,unl,unl,A woman is seen standing ready in front of a set of weights.,She\nlsmdc1031_Quantum_of_Solace-84320,7864,He walks pensively away from the desk then goes back. He,grins and walks off.,displays another news report.,is detailing someone's grandparents.,draws a photograph of himself.,sits up to look at the phone.,gold1-reannot,pos,unl,unl,unl,unl,He walks pensively away from the desk then goes back.,He\nanetv_a7QrIgqkyao,19054,A woman is standing behind a table with several pumpkin carving kits. She,shows the contents of the books.,uses his knives to put pasta into a mixer.,begins to pull the lens out of fish's eye.,pours more ingredients into the paint and shows the cooking pasta.,shows a bottle to see how well it is.,gold1-orig,pos,unl,unl,unl,unl,A woman is standing behind a table with several pumpkin carving kits.,She\nanetv_a7QrIgqkyao,19056,\"The woman chooses a design, carving it into the pumpkin. She then\",\"places batteries in tea light to go inside, and paints the pumpkin black.\",places a candle on the cupcake.,cuts cellophane to make a cake and make sure he is the top.,begins mixing sand in the bowl and putting them into a bowl.,places the polished nails into it.,gold0-orig,pos,unl,unl,unl,unl,\"The woman chooses a design, carving it into the pumpkin.\",She then\nanetv_a7QrIgqkyao,19055,She shows the contents of the books. The woman,\"chooses a design, carving it into the pumpkin.\",begins brushing the bathroom mirror.,inserts a brown animal into a toy and places the books on it.,holds out a pencil and plastic it.,grabs her shoes and throws the towel around when it's done.,gold1-orig,pos,unl,unl,unl,unl,She shows the contents of the books.,The woman\nlsmdc1041_This_is_40-8908,12187,\"Someone nods behind her large, round glasses. At the front of the store, someone\",hangs a christmas garland.,talks to the bartender.,gives a baked gaze.,accepts her old cellphone.,,gold1-reannot,pos,unl,unl,pos,n/a,\"Someone nods behind her large, round glasses.\",\"At the front of the store, someone\"\nanetv_gTh9bd9yV9E,2081,\"Then, the teen puts color on the cheeks, then she eyeliners the eyelids. After, the teen\",paint the mouth and put lipstick on the cheeks and paint the eyelids.,gets her pink hair cut and cut off the top of his photos.,\"brushes the white brush, then faces the other man.\",takes the drink and plays around the while.,,gold1-orig,pos,unl,unl,unl,n/a,\"Then, the teen puts color on the cheeks, then she eyeliners the eyelids.\",\"After, the teen\"\nanetv_gTh9bd9yV9E,2080,\"A teen puts make up to an man on his face. Then, the teen\",\"puts mascara, lip sticks and paint the eyelid with an eyeliner.\",hops on his feet.,takes running again from side to side.,make back his hands to demonstrate temperature.,takes out the hand and adds to the dog and wipe the hair.,gold0-reannot,pos,unl,unl,unl,unl,A teen puts make up to an man on his face.,\"Then, the teen\"\nanetv_gGai6uu5Yjs,628,Women are doing exrcise in elliptical bike in room. men,are in a room doing exercise in elliptical bike.,are jumping rope in a gym doing a big jump.,are in the living room talking.,is showing them in different forms and suede liners.,are in a roofed gym doing tricks with each other.,gold0-orig,pos,unl,unl,unl,unl,Women are doing exrcise in elliptical bike in room.,men\nanetv_gGai6uu5Yjs,16448,\"The back view of a woman is shown, followed by two more. A man and other women\",are shown using elliptical trainers at varying speeds as they pedal and exercise.,are shown warming up on exercise mats using one hustling indoors.,are shown with the camera in her hands and moving to the vacuum when one handled the pieces.,are playing a slack field.,are seen riding down a mountain on a bar.,gold0-reannot,pos,unl,unl,unl,unl,\"The back view of a woman is shown, followed by two more.\",A man and other women\nlsmdc1028_No_Reservations-82818,6115,She walks back up the curving staircase to her apartment. She,\"unlocks the door and opens it, stands beside it for a few seconds then closes it again.\",walks to the stereo.,is sitting across the desk watching them.,starts to lift herself to the ground and hurries in.,\"flips back to someone, using her hips as she looks.\",gold0-orig,pos,unl,unl,unl,pos,She walks back up the curving staircase to her apartment.,She\nlsmdc1028_No_Reservations-82818,6114,\"Someone carries on down the stairs, as someone goes into his apartment. She\",walks back up the curving staircase to her apartment.,catches briefly in the clothing.,remains in the doorway from the kitchen towards a text on the lower end of the glass.,turns the journal at the faint color of pride - a woman's outside the kitchen.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone carries on down the stairs, as someone goes into his apartment.\",She\nlsmdc1028_No_Reservations-82818,6116,\"She unlocks the door and opens it, stands beside it for a few seconds then closes it again. At her therapist's, someone\",garnishes a plate of food.,turns out the numbers into a rubix cube without yet presenting it's the fades.,sits in a car reading a black door.,heads back to work.,walks down a hallway through the door of an apartment wagoneer.,gold0-reannot,pos,unl,unl,unl,unl,\"She unlocks the door and opens it, stands beside it for a few seconds then closes it again.\",\"At her therapist's, someone\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15737,\"He punches and kicks out wildly, deflecting shots, but a Quaffle unseats him. He\",dangles from the end of his broomstick.,\"grabs the falcon, races past the wharf and looks from the ocean to the boat.\",\"speeds past, spinning in a blue suit.\",\"is grabbed, as the tv was thrown from his grasp.\",slumps backwards onto his toes.,gold0-orig,pos,unl,unl,unl,unl,\"He punches and kicks out wildly, deflecting shots, but a Quaffle unseats him.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15735,\"He punches it away with his right hand, kicks another, and punches a third with his left hand. He\",grabs hold of the next quaffle.,\"pulls the trigger, forcing the baby against the outer wall.\",knocks the suv off the clay.,\"cuffs it, exposing the whip.\",falls onto the pilot's seat then is lowered.,gold0-orig,pos,unl,unl,unl,unl,\"He punches it away with his right hand, kicks another, and punches a third with his left hand.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15733,\"Two players collide and fall. Holding a round leather Quaffle, someone\",aim's it at someone's goal.,selects autograph for another celebrating.,tumbles in through the front.,slaps a yellow ball over the peg.,,gold1-orig,pos,unl,unl,pos,n/a,Two players collide and fall.,\"Holding a round leather Quaffle, someone\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15740,She smiles as someone is jerked sideways and the Quaffle flies past him through the goal. A Quaffle,is aimed at someone who is swinging helplessly.,\"wave hits them, sending him sprawling.\",appears again from a house.,runs up to a railing.,throws him back on stage.,gold0-orig,pos,unl,unl,unl,unl,She smiles as someone is jerked sideways and the Quaffle flies past him through the goal.,A Quaffle\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15730,\"From the stands, someone waves to him. Someone\",swaggers up to someone.,sees the green leave.,sets his wine down and takes a sip.,releases his boot and shoots an arrow.,walks over past the bed.,gold0-orig,pos,unl,unl,unl,pos,\"From the stands, someone waves to him.\",Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15738,Someone is up on her feet rooting for someone. He,\"regains his seat on the broomstick, and watched by someone, clings on anxiously.\",climbs the stairs into the den and finds someone standing with her.,becomes aware of that sound of the level of the boardroom.,is bleeding as he comes down the stairs.,shakes hands with someone.,gold0-orig,pos,unl,unl,unl,pos,Someone is up on her feet rooting for someone.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15741,A Quaffle is aimed at someone who is swinging helplessly. It,hits his head and bounces away.,stumbles off the chaos on the breaks.,\"cranes his neck to watch someone's anger, which has begun to rage, and he is concentrating by the battle with drovers.\",\"is the orb of asgard, facing the buddy, who is on the ground behind them.\",\"suddenly ignites into the rock and throws it down, knocking him against the wall.\",gold0-orig,pos,unl,unl,pos,pos,A Quaffle is aimed at someone who is swinging helplessly.,It\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15734,\"Holding a round leather Quaffle, someone aim's it at someone's goal. He\",\"punches it away with his right hand, kicks another, and punches a third with his left hand.\",shrugs as she raises a glass.,fires into a small crowd of ducks.,touches the model 'blackberry.,\"photos with the gun aimed at someone, who opens his pincers and lifts someone to his feet.\",gold0-orig,pos,unl,unl,unl,unl,\"Holding a round leather Quaffle, someone aim's it at someone's goal.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15739,Someone whispers into her hand. She smiles as someone is jerked sideways and the Quaffle,flies past him through the goal.,is pressed close on hers.,wrap wraps her in round.,leaves her making the graceful dance.,lines her dismissive hand.,gold0-orig,pos,unl,unl,unl,unl,Someone whispers into her hand.,She smiles as someone is jerked sideways and the Quaffle\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15729,They all turn towards people. Someone,stands stiffly wearing a protective leather helmet.,is shoulder - deep in the back.,\"walks out of someone's house and down the road, crushing them.\",and someone look confident and handsome.,see three boxers.,gold1-orig,pos,unl,unl,unl,unl,They all turn towards people.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15736,He grabs hold of the next Quaffle. It,'s someone's turn to protect his goal.,hard launches a powerful energy surge.,\"balances rapidly, jumping up and down.\",knocks someone to the floor.,sends the boat flying and sending it flying from a runway.,gold0-orig,pos,unl,unl,unl,unl,He grabs hold of the next Quaffle.,It\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15732,Someone smirks as he catches someone's eye. She,\"glances away, then back.\",tilts her head and regards someone full of the downcast stare.,hands her an earpiece.,flashes a smile and drops his head.,drapes her jacket around her shoulders and ventures out.,gold0-orig,pos,unl,unl,unl,pos,Someone smirks as he catches someone's eye.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15731,Someone flies confidently towards a circular goalpost. Someone almost,slips off his broomstick as he heads for the opposing goal.,bursts through the great gate.,deflects the thread of him.,hit the bored man.,,gold0-orig,pos,unl,unl,pos,n/a,Someone flies confidently towards a circular goalpost.,Someone almost\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15725,People hurtle through the clouds towards Hogwarts. They,hit the invisible shield and retreat.,\"dressed blows on the surface, covering the rippling foam against the canvas.\",\"swords, on shelves: lantern, five columns.\",walk through a quiet courtyard.,climbs down through the rooftops and find a flat additional structure covered in soil.,gold1-reannot,pos,unl,unl,unl,unl,People hurtle through the clouds towards Hogwarts.,They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72310,15727,Someone is in a cluttered room. He,\"looks around, tossing an apple.\",sits on the sofa lining the sink.,is at the bar.,picks down a torch and hurries to the stairs.,is being chased by several british policemen.,gold0-reannot,pos,unl,unl,unl,unl,Someone is in a cluttered room.,He\nanetv_Lyaozxv4_qU,10275,The camera cuts back to the first man briefly before returning to the leaf blower man. The camera,does so again a second time.,is right to him that the cat is being advertised on the lawn mower.,turns back to his own.,stops while the man is still outside.,pans back to someone.,gold1-orig,pos,unl,unl,pos,pos,The camera cuts back to the first man briefly before returning to the leaf blower man.,The camera\nanetv_Lyaozxv4_qU,10274,The camera pans and then follows a man wearing a leaf blower as he blows leaves. The camera,cuts back to the first man briefly before returning to the leaf blower man.,pans around the outdoor the two dogs.,gestures to people on the sidewalk.,pans to the right and the man continues to smoke around the bushes.,pans around the wet yard while looking off into the distance while smiling to the camera.,gold0-orig,pos,unl,unl,unl,pos,The camera pans and then follows a man wearing a leaf blower as he blows leaves.,The camera\nlsmdc1005_Signs-4555,13292,The brothers meet up again at the front of the house. They,stop and look around breathlessly.,gazes at the cloud - dusted sky outside them from an upturned back tree.,\"are going again, and the film cuts into their students, followed by the deejay.\",search the apartment even.,circle through the speeds of the building.,gold0-orig,pos,unl,unl,unl,unl,The brothers meet up again at the front of the house.,They\nlsmdc1005_Signs-4555,13293,\"Someone keeps his gaze fixed firmly on the farmhouse roof as he paces backwards down the gloomy yard, and tries to get a better view. He\",walks tensely back to someone.,outlines a tall driveway and creates a protective shield.,\"turns and shines off, lined to eye.\",looks over his shoulder on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone keeps his gaze fixed firmly on the farmhouse roof as he paces backwards down the gloomy yard, and tries to get a better view.\",He\nlsmdc1005_Signs-4555,13288,An outside light comes on. They,rush out and split up.,cling to a divider separating the four from the buildings and stand for a shelter.,puts oil on a woman who's mashed potatoes into a roll.,part past someone and someone from the free cavity.,yank their heels and turn it upwards.,gold0-orig,pos,unl,unl,unl,unl,An outside light comes on.,They\nlsmdc1005_Signs-4555,13295,People turn and look behind them as something brushes past the swing. There,\"'s an urgent rustling in the maize stalks beyond the swing, which gradually dies away.\",see someone and the elevator enter.,looks around two graves.,words appear on the screen.,,gold1-orig,pos,unl,unl,unl,n/a,People turn and look behind them as something brushes past the swing.,There\nlsmdc1005_Signs-4555,13290,Someone comes to the back of the house as a dust bin's tipped over up ahead. Someone,runs along the side of the house.,grabs a piece of tape and holds it to his ear.,watches football against the cliff wall.,enters from the burning room and into the private classroom.,backs against a car window.,gold0-orig,pos,unl,unl,pos,pos,Someone comes to the back of the house as a dust bin's tipped over up ahead.,Someone\nlsmdc1005_Signs-4555,13291,Someone runs along the side of the house. The brothers,meet up again at the front of the house.,are holding umbrella over glasses grimly.,gaze out on the rows of cubicles.,walk along a catwalk.,descend to the path leading into the night.,gold0-orig,pos,unl,unl,unl,unl,Someone runs along the side of the house.,The brothers\nlsmdc1005_Signs-4555,13296,\"There's an urgent rustling in the maize stalks beyond the swing, which gradually dies away. Next morning, someone\",\"sits in the dining room with someone, who's holding her walkie talkie.\",\"sits at the edge of a large dining room, standing just outside the door of his desk.\",sits with a food tray covered in vomit.,stops the dead nhl.,and bashfully brush their pews.,gold0-orig,pos,unl,unl,unl,unl,\"There's an urgent rustling in the maize stalks beyond the swing, which gradually dies away.\",\"Next morning, someone\"\nlsmdc1005_Signs-4555,13294,He walks tensely back to someone. People,turn and look behind them as something brushes past the swing.,are watching the pianist figure.,sit at the top of the stairs.,continue to leave without someone.,step away from it.,gold0-reannot,pos,unl,unl,unl,unl,He walks tensely back to someone.,People\nlsmdc1005_Signs-4555,13289,They rush out and split up. Someone,comes to the back of the house as a dust bin's tipped over up ahead.,steps out into a padded street and runs to someone.,lies on his bed and is gasping excitedly.,\"makes thick pas with a vigorous effort, poking his partner at men in the window, then firmly punches him in the chin.\",\"comes to the screen as someone talks now, wearing an old dress sweater and ironing gown.\",gold1-reannot,pos,unl,unl,unl,unl,They rush out and split up.,Someone\nanetv_-OH1BDqao9w,7491,The car gets driven out. People,are sitting outside of the building.,drive over the town.,\"is 31 through an airport, along the highway.\",burst from someone's car and stop at the wheel.,\"dark prone body is seen passing through oncoming trees, moving about.\",gold0-orig,pos,unl,unl,unl,unl,The car gets driven out.,People\nanetv_-OH1BDqao9w,7490,The tires are getting scrubbed. The car,is getting dried by a man.,pulls over as someone covers the weather.,drives down the night.,are not gaining on the tires.,is covered in shingles.,gold0-orig,pos,unl,unl,unl,unl,The tires are getting scrubbed.,The car\nanetv_-OH1BDqao9w,7487,The front of a car wash building is shown. A guy,talks to someone inside a black car.,is sitting in a grass oom.,drives as he increases the speed of his pedal.,walks outside a house holding a scraper.,is kneeling down in a crowd.,gold0-orig,pos,unl,unl,unl,pos,The front of a car wash building is shown.,A guy\nanetv_-OH1BDqao9w,7492,People are sitting outside of the building. People,are waiting inside of the waiting room.,are going down the river.,are playing baseball in a field.,are playing a volleyball indoor.,,gold1-orig,pos,unl,pos,pos,n/a,People are sitting outside of the building.,People\nanetv_-OH1BDqao9w,7489,He vacuums the seats of the car. He car,gets washed by a pressure washer.,places along green lights around it.,\"gets close to the car again, holding up the half - pet sign and changes the life.\",stops in the driveway.,,gold0-orig,pos,unl,unl,unl,n/a,He vacuums the seats of the car.,He car\nanetv_-OH1BDqao9w,9643,The outside of a car wash is seen. A man,is talking to a woman inside the car.,is shown peeling a cart.,is scrubbing drys and washing the sink.,is washing a horse at a sink.,go into a barn holding a umbrella.,gold0-orig,pos,unl,unl,unl,unl,The outside of a car wash is seen.,A man\nanetv_-OH1BDqao9w,9644,\"A man is talking to a woman inside the car. She gets out, and he\",takes it in to be washed and dried.,uses a rain pump to spray and spray ice up.,gets onto another bike bike.,gets in the car with her.,is washing the car.,gold0-reannot,pos,unl,pos,pos,pos,A man is talking to a woman inside the car.,\"She gets out, and he\"\nanetv_x3cOxXOYbwA,6153,A weight is seen putting put on a bar and leads into a man kneeling down. The man,grabs a set of weights and begins to lift it over his head.,lifts several weight when it hits his legs and the person falls down the mats.,\"is laying himself down on the mat, holding up several tools and liquids in front of him.\",spins fourth and lifts all the weights while riding back back to the camera.,climbs onto the end of an exercise bike demonstrates how to properly sit down while kneel side by side.,gold1-orig,pos,unl,unl,unl,unl,A weight is seen putting put on a bar and leads into a man kneeling down.,The man\nanetv_x3cOxXOYbwA,6154,The man grabs a set of weights and begins to lift it over his head. He,throws the weight up and then back on the ground.,begins lifting up the weights.,are sitting on the side watching the men as they make skate.,swings and lands on the floor and moving more times further.,,gold0-orig,pos,unl,unl,unl,n/a,The man grabs a set of weights and begins to lift it over his head.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59896,12123,\"Someone is already at the door, he turns to someone. Someone\",hurries out the door.,glares from his superior as he leaves the entrance.,\"comes out to join her, putting him fast, despite herself.\",weeps over his furious face.,shakes his hand in front of it.,gold0-orig,pos,unl,unl,unl,pos,\"Someone is already at the door, he turns to someone.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59896,12122,Someone holds out the envelope. He,hands it to someone.,holds up his thumb.,\"looks down and closer, then flips him over and squeezes at them.\",looks down at the quill.,starts to take it out of the bag.,gold0-orig,pos,unl,unl,unl,unl,Someone holds out the envelope.,He\nanetv_6DzBNkTen1g,558,A woman in a black shirt tries to hit a pink pinata. She,goes over and talks to people standing next to it.,bends down and starts toward the girl hitting the ball.,jumps up and throws water into a puddle.,picks up the cue and throws it again.,falls onto a big yellow toy.,gold0-orig,pos,unl,unl,pos,pos,A woman in a black shirt tries to hit a pink pinata.,She\nanetv_6DzBNkTen1g,9550,A woman in a black shirt is blind folded. She,starts swinging a bat at a pinata.,adds a photo to the apartment.,explains how to do the rollers.,has the top nose piercing.,uses a large drier to clear the panes of the glass.,gold0-orig,pos,unl,unl,unl,unl,A woman in a black shirt is blind folded.,She\nanetv_yaWwad6WXVY,7156,\"The man stands and leave the court. After, several men\",practice basketball in a court.,are shown in a kitchen and then watch the scene.,fall off a trampoline.,play polo in a number of red shirts and make their goals.,,gold1-orig,pos,unl,unl,unl,n/a,The man stands and leave the court.,\"After, several men\"\nanetv_yaWwad6WXVY,7155,\"A person practice dribbling and shooting the ball walking or running in the court, while a man watch the training. The man\",stands and leave the court.,continues running as a girl pushes in the ground as other player avoiding the screen shows his point of view from the platform to man,is again standing to the second orange ball indoors.,runs on stilts and jumps on a weightlifting barrier.,,gold0-orig,pos,unl,unl,unl,n/a,\"A person practice dribbling and shooting the ball walking or running in the court, while a man watch the training.\",The man\nanetv_PbzmcZ_IORE,14614,A toy dog is walking on the floor. It,stops to look around back and forth.,jogs off in the background.,is wearing bikini shirts and red pants.,begins to blow dry the leaves.,is back on the trampoline in background.,gold1-orig,pos,unl,unl,unl,unl,A toy dog is walking on the floor.,It\nanetv_PbzmcZ_IORE,14615,It stops to look around back and forth. Someone,picks the dog up and puts it back down.,pulls through the pages to find business products.,\"takes a seat and scoops it up, tying it around his fingertip.\",remains on the door.,\"looks up, looks at him, thoughtful.\",gold1-reannot,pos,unl,unl,unl,pos,It stops to look around back and forth.,Someone\nanetv_SxIJ6MjcgnY,1727,\"One owner does a hand stand a throws the frisbee to his dog, who is able to catch. Many owners and dogs\",throwing and catching frisbees and doing tricks while doing so.,are shown where several dogs are groomed.,are seen playing instruments while others from the shoes walk around and catch the frisbee.,are moving well along the side of the table.,watch as they cross someone of the resort.,gold0-orig,pos,unl,unl,unl,unl,\"One owner does a hand stand a throws the frisbee to his dog, who is able to catch.\",Many owners and dogs\nanetv_SxIJ6MjcgnY,1726,A man throwing the frisbee to his dog and the dog catches. One owner,\"does a hand stand a throws the frisbee to his dog, who is able to catch.\",moves to the ground and follows lifebuoy.,takes the clip and washes the dog with the frisbees.,tries and does tricks with his other dog walking.,uses his hand to take the frisbee off and caught the frisbee with the dog.,gold0-orig,pos,unl,unl,pos,pos,A man throwing the frisbee to his dog and the dog catches.,One owner\nanetv_xfNYfCAlkM4,2706,A boy shows up on the screen and gets a cup of water and gargles it. He,smiles and walks off the screen for a moment.,hangs open a box.,pours off the wall and goes back to drinking.,hugs a pack of men standing in front of him instructing him as well as the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A boy shows up on the screen and gets a cup of water and gargles it.,He\nanetv_IAtxK0w_ybY,3224,\"They put it in a bowl, and something then pour it in a pitcher. They\",pour it into glasses and drink it.,are then mixing and lifted one another and pour it into a plastic cup.,are given off the roll of dough.,\"stick, near their bowls and begin to old set.\",see liquor to the bowl then water and pour the mixture into a jar.,gold0-orig,pos,unl,unl,unl,unl,\"They put it in a bowl, and something then pour it in a pitcher.\",They\nanetv_IAtxK0w_ybY,3223,The ladies cook a syrup and add lemons and the syrup to a blender. They,\"put it in a bowl, and something then pour it in a pitcher.\",add the clean mix.,they spread a white dough into a container.,paddle water with water.,put the drink and put them on the chocolate cake.,gold1-orig,pos,unl,unl,unl,unl,The ladies cook a syrup and add lemons and the syrup to a blender.,They\nanetv_IAtxK0w_ybY,3222,We see two ladies in a kitchen preparing to cook. The ladies,cook a syrup and add lemons and the syrup to a blender.,\"stand place, bathing each other and eat in chunks.\",grab the cooked pasta for the bowl and pour the cheered raw on a plate.,puts the pot on the stove and shows balls and ending product.,add a cake to the child's off cardboard slice.,gold0-orig,pos,unl,unl,unl,unl,We see two ladies in a kitchen preparing to cook.,The ladies\nanetv_IAtxK0w_ybY,12963,\"Woman cuts the lemon, des seed, chop them and put them on the blender. then\",pour the juice in the syrup and serve in a clear cup.,pour the drink into the cookies and put it on a plate.,pour a cup of orange juice.,\", the woman puts a piece of bread on top and then serves the food.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"Woman cuts the lemon, des seed, chop them and put them on the blender.\",then\nanetv_IAtxK0w_ybY,3221,Colorful circles appear and the title comes up. We,see two ladies in a kitchen preparing to cook.,see the name of the ocean.,see a person kick a wind through a tree.,are seen meeting with the sky while one man sits on the side each and round waterfalls yet jumping one at a time.,\"dancing and make out in the mirror, a man is shown for braiding by twirling a baton.\",gold0-reannot,pos,unl,unl,unl,unl,Colorful circles appear and the title comes up.,We\nanetv_sV6NoTdFaPE,10196,A young woman is seen speaking to the camera while holding onto a field hockey stick. The girl then,hits the ball all around the yard while the camera follows.,begins spinning around the beam and begins swinging in the air and spinning around.,begins tattooing her belly.,puts it on a board and begins running down the field in slow motion.,begins hitting the puck one more time.,gold1-orig,pos,unl,unl,unl,unl,A young woman is seen speaking to the camera while holding onto a field hockey stick.,The girl then\nanetv_sV6NoTdFaPE,10197,The girl then hits the ball all around the yard while the camera follows. She,continues to hit the ball around and stops to look at the camera.,would only point in the game again.,stops playing and takes her hand up.,moves back and fourth while people watch on the sides.,,gold1-orig,pos,unl,pos,pos,n/a,The girl then hits the ball all around the yard while the camera follows.,She\nanetv_bw96D55q2FI,1880,A man then begins to ride his skateboard from the top of the roof down an inclined road. The man then,begins moving and skateboarding throughout the neighborhood and interacting with the people.,moves closer and begins dancing around the lawn and moving up and down.,puts several switches on a road to grocer drive.,comes back from the left and uses his skateboard holding the snow.,switches on the bike and starts going down the ramps.,gold1-orig,pos,unl,unl,unl,pos,A man then begins to ride his skateboard from the top of the roof down an inclined road.,The man then\nanetv_bw96D55q2FI,1879,A skateboarder comes by and rolls in a patch of dirt by the side walk. A man then,begins to ride his skateboard from the top of the roof down an inclined road.,rides on the vehicle and tries another kick to avoid her doing what he came on.,shows exterior the area with the bike and then materials across the competition.,pulls up in a driving course and then begin skateboarding.,,gold0-orig,pos,unl,unl,pos,n/a,A skateboarder comes by and rolls in a patch of dirt by the side walk.,A man then\nanetv_bw96D55q2FI,1882,\"All of a sudden, the man walks through the subway and gets off his skateboard until he gets to his destination. He then\",\"proceeds to skate through the city, jumping over the poles and the credits begin to roll.\",drops the debris and looks up.,stands over the predator railing where the person skis at the bottom of the front steps.,is shown moving several times in the first manner and does n't really it.,jumps over and waits hard to get his right hand on the right lane.,gold0-orig,pos,unl,unl,unl,unl,\"All of a sudden, the man walks through the subway and gets off his skateboard until he gets to his destination.\",He then\nanetv_bw96D55q2FI,1881,\"The man then begins moving and skateboarding throughout the neighborhood and interacting with the people. All of a sudden, the man\",walks through the subway and gets off his skateboard until he gets to his destination.,moves using all the objects as he is about to build up fire.,\"comes into his car, that stops.\",\"jumps into his hands, doing tricks, going up and down.\",,gold0-reannot,pos,unl,unl,unl,n/a,The man then begins moving and skateboarding throughout the neighborhood and interacting with the people.,\"All of a sudden, the man\"\nlsmdc0019_Pulp_Fiction-56684,1617,Someone powders her nose by doing a big line of coke off the bathroom sink. Her head,jerks up from the rush.,is pulled up in memory.,presses the cloth to her lips.,rests with her friend on her knees.,lulls on his head.,gold0-orig,pos,unl,unl,unl,unl,Someone powders her nose by doing a big line of coke off the bathroom sink.,Her head\nlsmdc0019_Pulp_Fiction-56684,1619,\"As he chews, his eyes scan the Hellsapopinish restaurant. Someone\",comes back to the table.,watches a book from the laptop.,dons his fatal blood mask before he steps inside.,smiles at his sleeping woman.,sets someone dressing on his laptop.,gold1-orig,pos,unl,unl,unl,unl,\"As he chews, his eyes scan the Hellsapopinish restaurant.\",Someone\nlsmdc0019_Pulp_Fiction-56684,1618,Her head jerks up from the rush. Someone,digs into his someone steak.,gets out and inspects the carpet.,twists in and throws papers.,strokes his face and wipes his palm across her butt cheeks.,sits beside another bend.,gold1-orig,unl,unl,unl,unl,unl,Her head jerks up from the rush.,Someone\nlsmdc1011_The_Help-78287,3812,Someone scowls at her reflection. Her mother,zips her up roughly.,knits up with makeup.,\"takes a place for the phone, picks up the bags and steps up behind the doctors.\",nods and steals a bite of her expensive - hearted spin.,smiles and crouches from it.,gold0-orig,pos,unl,unl,unl,unl,Someone scowls at her reflection.,Her mother\nlsmdc3009_BATTLE_LOS_ANGELES-627,1526,He tosses her a magazine. Someone,struggles to his knees.,watches as someone puffs through pursed lips.,eats her bite of doritos.,shows her french fries.,\"exits the car, looking round.\",gold1-reannot,pos,pos,pos,pos,pos,He tosses her a magazine.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-627,1527,Someone struggles to his knees. Someone,lifts a grenade launcher.,grabs his buttocks and sits back down.,ties someone's legs around the top of her trolley.,follows him up into the building.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone struggles to his knees.,Someone\nlsmdc1058_The_Damned_united-98399,18471,\"Someone's face softens into a grin. Beaming, someone\",runs and embraces him.,turns and walks away.,reaches over to bring him briefly into someone's lips.,nuzzles her laotong with her lips.,,gold1-orig,pos,unl,unl,unl,n/a,Someone's face softens into a grin.,\"Beaming, someone\"\nlsmdc1058_The_Damned_united-98399,18461,\"The clock shows five past four. Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone\",\"looks alternately at his office floor, then at the clock.\",whips the sling cap.,looks around and snarls as he tv at the darkened house.,turns on the lights.,,gold0-orig,pos,unl,unl,pos,n/a,The clock shows five past four.,\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone\"\nlsmdc1058_The_Damned_united-98399,18450,\"He strolls to the far end of the dressing room and kneels before a heavy - featured, sandy - haired lad, looking him in the eye. The young man\",\"smiles bashfully and hangs his head, as someone rises to his feet and looks around the other players.\",opens a cabinet door to finish alone.,grabs the boy's shirt and draws around.,begins wearing a worn veil while looking at someone as he stares after his son.,glances in a treatment room where an old man curtains legs fan rolls to a pillar.,gold1-orig,pos,unl,unl,unl,unl,\"He strolls to the far end of the dressing room and kneels before a heavy - featured, sandy - haired lad, looking him in the eye.\",The young man\nlsmdc1058_The_Damned_united-98399,18453,Someone nudges his shoulder against the young players. Someone,stands before the team.,gets off his stool and stands up.,\"gazes toward someone, who turns her head.\",faces him tenderly and watches.,looks over at the beast hungrily.,gold0-orig,pos,unl,unl,unl,unl,Someone nudges his shoulder against the young players.,Someone\nlsmdc1058_The_Damned_united-98399,18468,\"Outside his office door, he smooths both hands over his hair, then strides off down the gloomy, brick - walled passage. He\",stops in his tracks as he sees people turn the corner ahead.,elbows pound against the steel valve glass metal door.,\"approaches the lobby, where his number is framed by a dresser and pages.\",stops in front of a house through a window.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside his office door, he smooths both hands over his hair, then strides off down the gloomy, brick - walled passage.\",He\nlsmdc1058_The_Damned_united-98399,18449,Someone marches into the Derby home dressing room. The Derby players,tuck the white shirts of their home kit into their shorts and sit on benches as someone strolls in.,find their seats in a arena by a group of oriental servants.,collide and pick up balls his feet again.,hold their opponent's weapon back.,,gold0-orig,pos,unl,unl,unl,n/a,Someone marches into the Derby home dressing room.,The Derby players\nlsmdc1058_The_Damned_united-98399,18460,Sunlight streams in from the terraces through the narrow windows set high in the stark walls. The clock,shows five past four.,shows the construction man lying in a pool of flickering light.,\"turns 8: he's the best shot on the shingles that he had worked, which was broken down.\",shows different seconds on nine seconds.,,gold0-orig,pos,unl,unl,unl,n/a,Sunlight streams in from the terraces through the narrow windows set high in the stark walls.,The clock\nlsmdc1058_The_Damned_united-98399,18472,\"Beaming, someone runs and embraces him. The team\",cheer in the dressing room.,heads toward the bow's conference.,marches away from his father's trailer.,arrives at a pool of white.,,gold0-orig,pos,unl,unl,pos,n/a,\"Beaming, someone runs and embraces him.\",The team\nlsmdc1058_The_Damned_united-98399,18451,His eyes meet someone's. They,\"exchange a respectful, knowing nod.\",look down at him.,stand from the window.,lead everyone between the seats and on the steps of the auditorium.,,gold0-orig,pos,unl,unl,unl,n/a,His eyes meet someone's.,They\nlsmdc1058_The_Damned_united-98399,18458,\"As play gets underway, the Leeds players, in their away kit of blue shirts and yellow shorts pass the ball wide. In his dingy office, someone\",smokes as he watches the clock.,hits the ball away from the edge of the building.,\"opens a hatch with a lacrosse stick and finds it, then kicks his shoes in the air.\",takes photos of the prom sex calendar.,,gold0-orig,pos,unl,unl,unl,n/a,\"As play gets underway, the Leeds players, in their away kit of blue shirts and yellow shorts pass the ball wide.\",\"In his dingy office, someone\"\nlsmdc1058_The_Damned_united-98399,18454,Someone stands before the team. A smile,spreads across his face as he looks around the players.,glows on her back lips.,plays on someone's lips as they walk among the faces of the women.,is put down his face.,logo for the man appears again.,gold0-orig,pos,unl,unl,unl,pos,Someone stands before the team.,A smile\nlsmdc1058_The_Damned_united-98399,18467,\"Someone puts on his jacket, straightens his tie and steps into the corridor. Outside his office door, he\",\"smooths both hands over his hair, then strides off down the gloomy, brick - walled passage.\",makes his way up to someone's garage.,tenses as he nears the yard.,places his own hands in cot.,opens his eyes and peers helplessly over the counter at the foot of his bed.,gold0-orig,pos,unl,unl,unl,unl,\"Someone puts on his jacket, straightens his tie and steps into the corridor.\",\"Outside his office door, he\"\nlsmdc1058_The_Damned_united-98399,18448,People watch someone and the Leeds team get off their bus. Someone,marches into the derby home dressing room.,watches grimly as he loads it.,stares at the certificate as someone nods incredulously to someone.,pulls his jacket from a crate onto the campus street.,,gold0-orig,pos,unl,unl,unl,n/a,People watch someone and the Leeds team get off their bus.,Someone\nlsmdc1058_The_Damned_united-98399,18459,\"In his dingy office, someone smokes as he watches the clock. Sunlight\",streams in from the terraces through the narrow windows set high in the stark walls.,\", someone puffs on his cigar rhythmically and puts it to his mouth.\",goes after him.,shines around his lights as he sits in a chair.,are seven hours later.,gold0-orig,pos,unl,unl,unl,unl,\"In his dingy office, someone smokes as he watches the clock.\",Sunlight\nlsmdc1058_The_Damned_united-98399,18463,\"He looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows. Someone\",sits with his head in his hands.,\"brings up, revealing the chef in a knee sheath dress.\",passes an enormous stone.,swivels to and tilts his head as captain drops the president off the podium.,,gold1-orig,pos,unl,unl,unl,n/a,\"He looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows.\",Someone\nlsmdc1058_The_Damned_united-98399,18470,\"Someone strolls off, leaving someone frowning at someone. Someone's face\",softens into a grin.,falls by the fountain.,becomes a blur from someone.,is still in the back seat.,is buried in her features.,gold0-orig,pos,unl,unl,unl,unl,\"Someone strolls off, leaving someone frowning at someone.\",Someone's face\nlsmdc1058_The_Damned_united-98399,18466,\"He bows his head against the wall, then paces in the light streaming through the windows, his hands on his head. Someone\",\"puts on his jacket, straightens his tie and steps into the corridor.\",frees himself from the tank.,artists on motor stilts do a square procedures slippery bar around his feet.,spins and leans close to the crying man.,glances around as he picks up the folded fluttering presents and tosses it into a trash bin.,gold1-orig,pos,unl,unl,pos,pos,\"He bows his head against the wall, then paces in the light streaming through the windows, his hands on his head.\",Someone\nlsmdc1058_The_Damned_united-98399,18462,\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone looks alternately at his office floor, then at the clock. He\",\"looks up, awestruck, as silhouettes of fans leaping to their feet in celebration crowd the frosted windows.\",\"flashes a turn, as he can see the crowd, his face concerned and erect, and then strikes.\",covers the entire clock as he hears the passengers.,gets to the lower level of the stair and opens it to the ceiling hanging.,,gold0-orig,pos,unl,unl,unl,n/a,\"Pacing now, with his hands clasped together behind his head, a cigarette dangling between his lips, someone looks alternately at his office floor, then at the clock.\",He\nlsmdc1058_The_Damned_united-98399,18456,\"The Derby players leap to their feet and roar, red - faced. They\",\"run out of the dressing room, down the gloomy corridor, and up the tunnel into the daylight on the pitch.\",push the riders back.,takes charge at the table.,bow out of range and move across the bridge towards the edge of the ocean.,,gold0-orig,pos,unl,unl,unl,n/a,\"The Derby players leap to their feet and roar, red - faced.\",They\nlsmdc1058_The_Damned_united-98399,18469,He stops in his tracks as he sees people turn the corner ahead. Someone,\"strolls off, leaving someone frowning at someone.\",\"stares at him imploringly, then turns around to face him.\",steps up onto a railing at the bottom of the stairs and dives to one side.,ducks down as he can and opens a case of newspaper.,approaches the passenger with the window blinds as well.,gold0-reannot,pos,unl,unl,unl,unl,He stops in his tracks as he sees people turn the corner ahead.,Someone\nlsmdc1058_The_Damned_united-98399,18465,He stands and once more peers up at the figures of the cheering Derby fans. He,\"bows his head against the wall, then paces in the light streaming through the windows, his hands on his head.\",approaches someone and throws her fist.,rears up and punches him in the face.,smokes up the entire ruin of a ship.,,gold0-reannot,pos,unl,unl,unl,n/a,He stands and once more peers up at the figures of the cheering Derby fans.,He\nlsmdc1058_The_Damned_united-98399,18452,\"Someone apes a scared face, then beams at the rest of the team. Someone\",nudges his shoulder against the young players.,limo speeds up under a bumpy track.,fried accessories are spread amongst dozens of headstones.,takes forward gate from someone.,begins to swing the train passing.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone apes a scared face, then beams at the rest of the team.\",Someone\nlsmdc1058_The_Damned_united-98399,18455,A smile spreads across his face as he looks around the players. The Derby players,\"leap to their feet and roar, red - faced.\",arrive at the party blinds.,are carrying their hearts.,stare at the small windows.,stretch out on each other's mat.,gold0-reannot,pos,unl,unl,unl,unl,A smile spreads across his face as he looks around the players.,The Derby players\nlsmdc3037_IRON_MAN2-16530,7836,\"The dark - haired guard and another man rush down the stairs, grab someone, and place a white bag over his head. They\",\"lead him outdoors, then throw him into the back of a van, and closes its doors.\",slowly descend the building.,join someone at the sled.,glance at each other in horror.,begin to lift heads.,gold0-orig,pos,unl,unl,unl,unl,\"The dark - haired guard and another man rush down the stairs, grab someone, and place a white bag over his head.\",They\nlsmdc3037_IRON_MAN2-16530,7828,\"Smiling, someone stands, punches the man's face, then slams the man's forehead into the sink. The man\",falls to the floor.,punches a thug full in the face.,takes off his jacket.,folds up a section of broken mirror.,locks the door on him.,gold0-orig,pos,unl,unl,unl,unl,\"Smiling, someone stands, punches the man's face, then slams the man's forehead into the sink.\",The man\nlsmdc3037_IRON_MAN2-16530,7838,\"Later, inside a pristine airplane hangar, two men in gray coveralls open the van's back doors. The dark - haired guard\",pulls the bag from someone's head and leads him out of the van.,shows a photo of bright yellow boxy green arrows.,wears the coveralls striped helmet around his back as they drive away.,scans the perimeter of the safe and pops it on the podium.,offers a handful of coins as he offers the apples.,gold0-orig,pos,unl,unl,unl,pos,\"Later, inside a pristine airplane hangar, two men in gray coveralls open the van's back doors.\",The dark - haired guard\nlsmdc3037_IRON_MAN2-16530,7826,Someone and the man study each other. The man,glances down at a number printed on his own shirt.,\"backs the camera into a room, making notes, on a rock, also exercises on playing and playing.\",takes a bite of the cake and reads it.,releases him then points to someone.,gazes down at the remnants of a dark stain beneath his coat.,gold1-orig,pos,unl,unl,pos,pos,Someone and the man study each other.,The man\nlsmdc3037_IRON_MAN2-16530,7834,\"At the bottom, guards open a gate. Someone\",turns and runs back up the stairs.,\"steps for the coupled structure, then gazes in the direction of a expectant narrow eyed man.\",strolls cautiously bearing a rifle and open the casket.,\"rushes through the door, hearing the guards within the shoppers.\",stands on another rooftop overlooking the field.,gold0-orig,pos,unl,unl,pos,pos,\"At the bottom, guards open a gate.\",Someone\nlsmdc3037_IRON_MAN2-16530,7835,Someone turns and runs back up the stairs. The dark - haired guard and another man,\"rush down the stairs, grab someone, and place a white bag over his head.\",\"turn and follow someone, again not at all.\",walk by and kiss her.,step into the hall.,step out through the door.,gold0-orig,pos,unl,unl,pos,pos,Someone turns and runs back up the stairs.,The dark - haired guard and another man\nlsmdc3037_IRON_MAN2-16530,7821,\"Staring at someone, the guard places the tray on a shelf attached to the cell door and leaves. Someone\",\"stands, picks up the tray, and grabs a note lying on it.\",watches a mirror as the teens dangle.,\"finds the dead turk still in his tracks, peering through its gate.\",steps on the boulder partition.,,gold0-orig,pos,unl,unl,unl,n/a,\"Staring at someone, the guard places the tray on a shelf attached to the cell door and leaves.\",Someone\nlsmdc3037_IRON_MAN2-16530,7824,\"The guard returns and opens the cell door. Wearing a prison uniform, a long - haired man\",resembling someone steps into the cell.,sets his cot down on a chair.,plays with four flamethrower soldiers.,crosses the closed door to another agent.,creeps forward in another lounging goblin.,gold0-orig,pos,unl,unl,unl,unl,The guard returns and opens the cell door.,\"Wearing a prison uniform, a long - haired man\"\nlsmdc3037_IRON_MAN2-16530,7819,\"Elsewhere in his cell, someone sits leaning against a sink. Outside the cell, a dark - haired guard\",approaches with a tray of food.,strolls down a hallway in the lobby.,pauses up on his basement stairs and idly tosses his phone.,hands her a key card.,\"checks a swarm of dials - phones, then wheels his phone down to his father's lap.\",gold0-orig,pos,unl,unl,unl,unl,\"Elsewhere in his cell, someone sits leaning against a sink.\",\"Outside the cell, a dark - haired guard\"\nlsmdc3037_IRON_MAN2-16530,7818,\"The jet flies over orange - tinged clouds. Elsewhere in his cell, someone\",sits leaning against a sink.,steps into view and watches the sustengo rush over.,groggily takes a backpack off.,jogs over to join them.,pushes someone through a busy window.,gold0-orig,pos,unl,unl,unl,unl,The jet flies over orange - tinged clouds.,\"Elsewhere in his cell, someone\"\nlsmdc3037_IRON_MAN2-16530,7822,\"Someone stands, picks up the tray, and grabs a note lying on it. Sitting on the bed, someone\",\"reads the note, which is written in a foreign language.\",\"sits on her bed, listening to a reading on her hip.\",scans his reflection and looks up as the video works.,stares out the window with his face low.,eyes someone for a moment before turning to face her.,gold0-orig,pos,unl,unl,pos,pos,\"Someone stands, picks up the tray, and grabs a note lying on it.\",\"Sitting on the bed, someone\"\nlsmdc3037_IRON_MAN2-16530,7833,\"As someone walks off, his cell explodes. Someone\",enters a stairwell and runs down the stairs.,returns his gaze to someone who swings back at the kid.,knocks two wrestlers with their wands.,enters and lowers a nearby phone.,,gold0-orig,pos,unl,unl,unl,n/a,\"As someone walks off, his cell explodes.\",Someone\nlsmdc3037_IRON_MAN2-16530,7825,\"Wearing a prison uniform, a long - haired man resembling someone steps into the cell. The guard\",\"closes the door, locks it, and leaves.\",taps his gloved finger carefully on his own throat and stops tapping the sidewalk with his charcoal.,aims a gun at a guy's forehead.,takes out his cell.,rushes back and grabs him as she walks right behind the first leader.,gold0-orig,pos,unl,unl,pos,pos,\"Wearing a prison uniform, a long - haired man resembling someone steps into the cell.\",The guard\nlsmdc3037_IRON_MAN2-16530,7832,The guard places one hand on someone's shoulder. Someone,\"turns, punches the guard, then snaps his neck.\",lets go of the gun and starts out.,nods and walks in.,props himself up on his elbows.,struggles to escape the frenchman.,gold0-orig,pos,unl,unl,unl,pos,The guard places one hand on someone's shoulder.,Someone\nlsmdc3037_IRON_MAN2-16530,7837,\"They lead him outdoors, then throw him into the back of a van, and closes its doors. Later, inside a pristine airplane hangar, two men in gray coveralls\",open the van's back doors.,hold a sign over the drawing building.,descend the strip on the road to an j. 'house.,bring their bikes to a curb and department street.,go toward the concert venue.,gold0-orig,pos,unl,unl,unl,unl,\"They lead him outdoors, then throw him into the back of a van, and closes its doors.\",\"Later, inside a pristine airplane hangar, two men in gray coveralls\"\nlsmdc3037_IRON_MAN2-16530,7831,\"Someone grabs the key, reaches through the cell bars, and unlocks the door. As someone walks down a hallway, he\",passes another guard who turns toward him.,strides toward the kitchen then studies the girls with a pensive smile.,marches up a flight of stone steps and sits on a bench.,stops and listens with a steward.,shuts his eyes and blinks groggily.,gold0-orig,pos,unl,unl,unl,pos,\"Someone grabs the key, reaches through the cell bars, and unlocks the door.\",\"As someone walks down a hallway, he\"\nlsmdc3037_IRON_MAN2-16530,7840,Someone and someone shake hands. Someone and someone,sit at the table.,look down sadly as her face hardens with tearful fury.,watch amidst the candles.,walk along the corridor.,,gold1-reannot,pos,unl,pos,pos,n/a,Someone and someone shake hands.,Someone and someone\nlsmdc3037_IRON_MAN2-16530,7820,\"Outside the cell, a dark - haired guard approaches with a tray of food. Staring at someone, the guard\",places the tray on a shelf attached to the cell door and leaves.,stands in a rush capsule.,starts to pivot the cue ball against him.,heads down the hall and joins his bags to the woman.,\"passes the urn's side away, then picks up a syringe.\",gold0-reannot,pos,unl,unl,unl,unl,\"Outside the cell, a dark - haired guard approaches with a tray of food.\",\"Staring at someone, the guard\"\nanetv_894d9_pty3o,17689,A group of moose are baying between scenes of lifts and helicopters overhead. People,give each other high fives as they ski.,sprinting toward a door.,look down at the kite as the kite travels through the sky.,cheer as the second herd rides them.,,gold0-orig,pos,unl,unl,unl,n/a,A group of moose are baying between scenes of lifts and helicopters overhead.,People\nanetv_N88-LuWK_K0,1926,An intro leads into several clips of people riding in on horses throwing a rope and grabbing calf's in the middle of a pit. More clips,are shown of people roping calf's in the pit and ending with pictures of people performing.,are shown of the players riding around on board as well as jumping up and up.,are shown of people riding down the large waves as well as the puck on their side.,are shown of people performing various tricks as well as clips of snow as well as different people riding along.,,gold0-orig,pos,unl,unl,unl,n/a,An intro leads into several clips of people riding in on horses throwing a rope and grabbing calf's in the middle of a pit.,More clips\nanetv_ngwH6Zy5vb8,14322,The audience stands up and claps for him. People,are hugging and mingling on a stage.,slap their faces and clap.,run and continue dancing.,play playing and the caption appears on screen.,,gold0-orig,pos,unl,unl,pos,n/a,The audience stands up and claps for him.,People\nanetv_ngwH6Zy5vb8,14321,A man in a suit is playing a piano. The audience,stands up and claps for him.,\"has stopped playing, then playing for a long time.\",is playing a couple of drums.,turns around and sits on the ground.,is watching them on the side of the stage.,gold1-orig,pos,unl,unl,unl,pos,A man in a suit is playing a piano.,The audience\nlsmdc3020_DEAR_JOHN-9652,18339,She holds her gaze steady. He,hesitates at the door.,glances to his right.,gets out of the vehicle and parks in a driveway in front of someone.,lowers his woeful gaze.,lifts his chin and sighs.,gold1-orig,pos,pos,pos,pos,pos,She holds her gaze steady.,He\nlsmdc3020_DEAR_JOHN-9652,18338,She gazes at the moon. She,covers the moon with her thumb.,blinks over her wide eyes.,\"spots a dancer's drawing mirror, then watches over her son.\",\"proceeds again down the tunnel toward a glad, small, curving water.\",,gold0-orig,pos,unl,unl,unl,n/a,She gazes at the moon.,She\nanetv_6d9z33GFEGo,6355,A man is holding a wine glass and talking. He,takes a drink of the wine and sets the glass down.,pours beer into a cup while sitting down with him.,pours water into the tea cup and trying to serve it.,is making a drink with mouthwash.,tosses a cup of coffee on the table and goes after it steadily.,gold0-orig,pos,unl,unl,unl,unl,A man is holding a wine glass and talking.,He\nanetv_6d9z33GFEGo,6361,He takes a scoop of what's in the pot and adds it to the pan. He,begins to stir the pasta that is in the pan.,fixes the fishing hook with a stone.,\"focuses on what they can do shortly and stop to go to the camera, doing seasonings and drains it.\",catches the pot and walks it back.,turns it around and begins putting the bottom of the pan.,gold0-orig,pos,unl,unl,unl,unl,He takes a scoop of what's in the pot and adds it to the pan.,He\nanetv_6d9z33GFEGo,6358,He pours oil into a pan on a stove. He,adds seasonings to the pan.,pours the pasta into a pitcher of water.,adds the pasta to the pot.,boils pasta in a pan.,has a pan of oil around the stove.,gold0-orig,pos,pos,pos,pos,pos,He pours oil into a pan on a stove.,He\nanetv_6d9z33GFEGo,6360,He stirs a pot that is on the stove. He,takes a scoop of what's in the pot and adds it to the pan.,takes a pan of water from the pot and puts it into a pot.,takes them out of the pot.,takes the big bite of bread.,,gold0-orig,pos,unl,unl,unl,n/a,He stirs a pot that is on the stove.,He\nanetv_6d9z33GFEGo,6356,He takes a drink of the wine and sets the glass down. He,shows bottles that are sitting on a counter.,picks up the bottle again.,\"takes a vodka bottle, and drinks her.\",kicks a man then blinks thoughtfully.,,gold1-orig,pos,unl,unl,unl,n/a,He takes a drink of the wine and sets the glass down.,He\nanetv_6d9z33GFEGo,6362,He begins to stir the pasta that is in the pan. He,scoops the pasta out of the pan onto a plate.,\"laughs, moving back and forth to him.\",picks up the brush and starts to add it to a pot.,stirs it first and makes a hand in the pot.,,gold0-orig,pos,unl,unl,pos,n/a,He begins to stir the pasta that is in the pan.,He\nanetv_6d9z33GFEGo,6363,He scoops the pasta out of the pan onto a plate. He,picks up his wine glass again.,finishes chopping the potatoes on the dining table.,makes the dish and adds fork to the refrigerator.,chokes by someone's omelette.,sniffs the food egg and mixes it together onto a plate.,gold1-orig,pos,unl,unl,unl,unl,He scoops the pasta out of the pan onto a plate.,He\nanetv_6d9z33GFEGo,6359,He adds seasonings to the pan. He,stirs a pot that is on the stove.,washes his hands in the windows.,mashes the egg in the pan.,adds the noodles with spaghetti to a container.,puts broth to a pan on the stove.,gold0-reannot,pos,unl,pos,pos,pos,He adds seasonings to the pan.,He\nanetv_6d9z33GFEGo,6357,He shows bottles that are sitting on a counter. He,pours oil into a pan on a stove.,cleans the water on the white pizza and puts it in place.,talks outside holding a can of newspaper in his hands.,shows the situation chart.,forces a switch on and easily mixes the contents.,gold0-reannot,pos,unl,unl,unl,unl,He shows bottles that are sitting on a counter.,He\nlsmdc1034_Super_8-8018,13062,Someone points to the mangled remains of the white pickup truck. They,get down from the carriage.,give someone a british look.,push someone in place.,lie beneath their covers.,leave the boarding gates and join them.,gold1-orig,unl,unl,unl,unl,unl,Someone points to the mangled remains of the white pickup truck.,They\nlsmdc1034_Super_8-8018,13061,They have a good view across the devastation. Someone,points to the mangled remains of the white pickup truck.,sees her in a blue dress.,wears a little silk floral designer and shiny handbag mourning.,looks down at them for two seconds before reaching into their robes.,emerges from past a fence.,gold0-orig,pos,unl,unl,unl,unl,They have a good view across the devastation.,Someone\nlsmdc1034_Super_8-8018,13060,Someone picks up one of the strange white cubes which have spilled from the wreckage and pockets it before joining the others on top of a wrecked carriage. They,have a good view across the devastation.,land on the center of the train.,\"weave between the struts, knocking down, and strolling forward, smashing into a dark car.\",see an empty plain in the canyon.,\"follows them, smoking and glancing around cautiously.\",gold0-orig,pos,unl,unl,unl,unl,Someone picks up one of the strange white cubes which have spilled from the wreckage and pockets it before joining the others on top of a wrecked carriage.,They\nanetv_RFgusQogDyQ,17741,A girl in a green shirt is being recorded as she swings back and forth on a swing. The person with the camera,begins to zoom in close on her as she continues to swing on the swing.,turns back and lands with the ball.,walks through the frame and ends up fast jumping off and moving across the sand at the formations.,\"watches it, passes, switch places, and then it even the final sparking moves.\",starts to jump as she goes to run to catch the.,gold0-orig,pos,unl,unl,unl,unl,A girl in a green shirt is being recorded as she swings back and forth on a swing.,The person with the camera\nanetv_RFgusQogDyQ,17742,The person with the camera begins to zoom in close on her as she continues to swing on the swing. You,can see a man near the swing and a white shirt standing as the girl is swinging.,is shown to move the thing and leads away to the camera.,seats up in the circle and move it high above the yard.,swing as the girl does the same thing again various times and two slides them off.,,gold1-orig,pos,unl,unl,pos,n/a,The person with the camera begins to zoom in close on her as she continues to swing on the swing.,You\nanetv_RFgusQogDyQ,6608,A woman is seen sitting on a swing moving back and fourth while the camera watches her. The woman continues swinging back and fourth while people walk in and out frame and she,looks off into the distance.,continue to cut her claws while the child watches her several more times.,continues to speak to the camera.,continuously continues her movements and captures her movements and moving her body around.,,gold0-reannot,pos,unl,pos,pos,n/a,A woman is seen sitting on a swing moving back and fourth while the camera watches her.,The woman continues swinging back and fourth while people walk in and out frame and she\nanetv_u8ykXBc2Efs,11879,A boy and girl are standing in front of a kitchen sink. They,are doing the dishes in the sink.,is standing close with both hands.,is washing her hands with mouthwash.,cook a pan and start drinking the drinks.,,gold0-orig,pos,unl,unl,unl,n/a,A boy and girl are standing in front of a kitchen sink.,They\nanetv_u8ykXBc2Efs,11881,A woman walks behind them and open opens the refrigerator. She then,starts helping them rinse the dishes.,helps him climb into the cart and continues to eat.,\"fried three ingredients in spit, cocoa oil and tic.\",folds into it with a rag and takes it down.,,gold0-orig,pos,unl,unl,unl,n/a,A woman walks behind them and open opens the refrigerator.,She then\nanetv_u8ykXBc2Efs,2256,The camera moves to in front of the kids and their mom enters the room. The mom,adds something to the fridge and puts something in a cabinet.,grabs some items from a refrigerator and walks to get the cup laps.,continues explaining what decorations she needs to be.,waves her hands hand next to her lap helping her with her new beer.,takes a bite of potatoes.,gold0-orig,pos,unl,unl,unl,unl,The camera moves to in front of the kids and their mom enters the room.,The mom\nanetv_u8ykXBc2Efs,11880,They are doing the dishes in the sink. A woman,walks behind them and open opens the refrigerator.,goes to watch the woman.,washes dishes under the sink.,is washing her hands up in the sink.,,gold0-orig,pos,unl,unl,unl,n/a,They are doing the dishes in the sink.,A woman\nanetv_JW5P5FdOrcw,3070,A bottle of vinegar is shown on a table next to alcohol and soap. She,begins mopping the hardwood floor.,\"sprays the hair of the woman, then dries off the clothes.\",sprays the liquid to the glass and replaces it with water.,sautes the ingredients with a slice of bread.,puts the soap in his hand and paints the braid.,gold1-orig,pos,unl,unl,unl,pos,A bottle of vinegar is shown on a table next to alcohol and soap.,She\nanetv_JW5P5FdOrcw,3069,She is showing the bottom of the mop. A bottle of vinegar,is shown on a table next to alcohol and soap.,is laid out in her wake.,is shown under the wired door.,is used to mop it all over it.,is seen in the sink.,gold0-orig,pos,unl,unl,pos,pos,She is showing the bottom of the mop.,A bottle of vinegar\nanetv_JW5P5FdOrcw,3071,She begins mopping the hardwood floor. A dog,is laying down on a bed.,is crouching behind a chair while washing it.,jumps down and misses her back and resumes all on the floor.,has her clothes soaked to her face.,falls off the floor of one of the many tables on the floor.,gold1-orig,pos,unl,unl,unl,unl,She begins mopping the hardwood floor.,A dog\nanetv_JW5P5FdOrcw,3068,A woman is standing up talking and holding a blue mop. She,is showing the bottom of the mop.,mixes it into the mop.,begins to show her hands and feet.,walks down the stairs with a razor.,is stirring the mop over and over.,gold1-orig,pos,unl,unl,unl,unl,A woman is standing up talking and holding a blue mop.,She\nlsmdc0005_Chinatown-48349,15054,Someone gets out of the car with someone. He offers her his arm and they,go up the walkway to the entrance.,drive along the road after her.,pound each other's fingers.,go over to another section.,sit up at the couch.,gold0-orig,pos,unl,unl,unl,unl,Someone gets out of the car with someone.,He offers her his arm and they\nlsmdc0005_Chinatown-48349,15053,\"Someone's car pulls up before the elegant Spanish rest home, its entryway illuminated by streetlights. Someone\",gets out of the car with someone.,takes two identical glasses unto someone's wheelhouse.,gazes at herself past a mirror.,\"scans the area until he reaches behind someone, who spots it.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone's car pulls up before the elegant Spanish rest home, its entryway illuminated by streetlights.\",Someone\nlsmdc0005_Chinatown-48349,15055,\"People are approached by an unctuous man in his forties, with a flower in his buttonhole. Then he\",\"gets a clear look at someone, bruised, trousers torn, etc.\",is sitting on an archery juicer and a tomato is shown cutting up the ice to make a sandwich.,\"puts all the ingredients into a large glass bowl, makes different rum and retrieves some braids and put them a drink of jackets.\",\"calmly looks up at the collar, disappointed, and uses his gun to have in one of the men's clothing.\",takes a twenty - how spot an bounced to have and quickly takes off the resume.,gold1-reannot,pos,unl,unl,unl,unl,\"People are approached by an unctuous man in his forties, with a flower in his buttonhole.\",Then he\nlsmdc0009_Forrest_Gump-50656,19673,Someone looks down at someone crashes at the bottom of the ramp. Taxi cabs,crowd the street as someone pushes someone along the sidewalk.,pull up to a pile of girls in front of a door.,walk in to flatbed truck with someone standing next to a young man.,emerge into a house carrying a sleek tennis bag.,,gold0-orig,pos,unl,unl,unl,n/a,Someone looks down at someone crashes at the bottom of the ramp.,Taxi cabs\nlsmdc0009_Forrest_Gump-50656,19677,\"Someone picks up another bottle of port wine, but it is empty. He\",tosses it onto the floor.,glances over at someone friend.,takes off his glasses and looks up.,heaves himself into a chair.,\"waves, peering into the bay, and peers at her.\",gold0-orig,pos,pos,pos,pos,pos,\"Someone picks up another bottle of port wine, but it is empty.\",He\nlsmdc0009_Forrest_Gump-50656,19678,He tosses it onto the floor. Someone,tosses the empty liquor bottle down and picks another bottle.,jumps and tosses several toys aside.,turns to someone with proud eyes.,leaps from the plane with his massive hands.,is seen in the empty loft.,gold1-orig,pos,unl,unl,unl,unl,He tosses it onto the floor.,Someone\nlsmdc0009_Forrest_Gump-50656,19679,Someone tosses the empty liquor bottle down and picks another bottle. He,becomes enraged as he throws the bottle and looks at someone.,look on in the living.,\"continues to drift water, and someone meets his gaze.\",shoots him in the chest.,,gold0-orig,pos,unl,unl,unl,n/a,Someone tosses the empty liquor bottle down and picks another bottle.,He\nlsmdc0009_Forrest_Gump-50656,19676,\"A taxi skids to a stop, almost hitting them as they cross the street. Someone\",slaps the bumper of the taxi.,glares at the cameras bow.,\"jumps out with a rifle, his rifle raised.\",points and heads towards the fountain.,rush into the back of the church.,gold0-orig,pos,unl,unl,unl,unl,\"A taxi skids to a stop, almost hitting them as they cross the street.\",Someone\nlsmdc0009_Forrest_Gump-50656,19672,Someone's wheelchair begins to slide down the ramp and spins around on the icy ground. Someone,looks down at someone crashes at the bottom of the ramp.,runs down and picks up a policeman.,stares back back toward someone and tracking her gaze from the window where her parents are taken.,sees someone and his partner jump from a train escape into the stands.,sits in the basket and kicks his foot across the street.,gold0-orig,pos,unl,unl,unl,unl,Someone's wheelchair begins to slide down the ramp and spins around on the icy ground.,Someone\nlsmdc0009_Forrest_Gump-50656,19675,The taxi honks at someone. A taxi,\"skids to a stop, almost hitting them as they cross the street.\",\"drives past a restaurant, where a small army of women, including, kids, and pups test jewelry and other knives.\",pulls up to the street's rooftop at the gate.,\"travels across the tight road town, a dozen vehicles speeding across the dirt road.\",pulls up toward her curb.,gold0-orig,pos,unl,unl,pos,pos,The taxi honks at someone.,A taxi\nlsmdc0009_Forrest_Gump-50656,19674,Taxi cabs crowd the street as someone pushes someone along the sidewalk. A taxi driver,honks his horn as someone wheels someone out in front of the taxi.,\"gets out, then shots through a metal glass falls on the floor then approaches someone.\",appears above him as he passes the classroom.,appears from behind him.,opens the door slightly.,gold0-orig,pos,unl,unl,pos,pos,Taxi cabs crowd the street as someone pushes someone along the sidewalk.,A taxi driver\nanetv_eaR8oEBlYWk,20027,She walks over and takes the lid off of a large bucket of water on the ground. She,dips a pot into the bucket and dumps the water into the sink.,then backs the little away and soldering.,moss falls on a wall next to her.,puts water on the babies face.,,gold1-orig,pos,unl,unl,unl,n/a,She walks over and takes the lid off of a large bucket of water on the ground.,She\nanetv_eaR8oEBlYWk,20026,The woman continues to wash the clothes in the sink. She,walks over and takes the lid off of a large bucket of water on the ground.,rinses her hands with soap.,gets wet and sink.,continues talking to the camera while still looking off the camera.,puts soap on the baby inside.,gold0-orig,pos,unl,unl,unl,unl,The woman continues to wash the clothes in the sink.,She\nanetv_eaR8oEBlYWk,20025,A white washing machine that is unplugged is shown. The woman,continues to wash the clothes in the sink.,drops the bucket and switches the flat lid to it.,\"leads the welder up, splashing the floors.\",washes towels off in a bathroom while talking to the camera.,talks to the camera while showing a small video.,gold0-orig,pos,unl,unl,pos,pos,A white washing machine that is unplugged is shown.,The woman\nanetv_eaR8oEBlYWk,20024,She pours water into a blue bowl. She,puts clothes into the buckets of water that are in the sink.,adds liquid and then takes a large plastic container that is inserted into the water.,pours juice into a mixer pot and adds some of the sauce to the pan.,plays from even different kinds of greens.,\"then adds the vinegar on a bowl, vegetable and car counter.\",gold0-reannot,pos,unl,unl,unl,unl,She pours water into a blue bowl.,She\nanetv_eaR8oEBlYWk,20023,A woman in a jacket is washing clothes in a sink. She,pours water into a blue bowl.,sprays soap on the plates all along the boat with her hands.,uses her hands up a steam drain cleaner.,washes her hands and dances with plastic towels.,washes the dishes and puts them down.,gold0-reannot,pos,unl,unl,unl,unl,A woman in a jacket is washing clothes in a sink.,She\nanetv_qxQWNu_MN94,3961,He jumps off into the pool below him. Another person,steps onto the diving board.,is on an diving board.,is next to him in red diving gear.,is seen in his yard and holding a hose and panning it all around him.,,gold0-orig,pos,unl,unl,unl,n/a,He jumps off into the pool below him.,Another person\nanetv_qxQWNu_MN94,3960,A man walks onto a diving board. He,jumps off into the pool below him.,puts on the bolts and laughs with the top of the bungee harness.,loses the balance and goes over a bar.,does an front flip inside the car.,,gold1-orig,pos,unl,unl,unl,n/a,A man walks onto a diving board.,He\nanetv_elW8E-9bCRQ,18527,One of the men puts his foot out while the other turns him in circles. When the dance is finally over both men,shake hands and wave to the crowd.,give and begin fighting.,begins performing two dance moves.,throw back to each other.,,gold0-orig,pos,unl,unl,unl,n/a,One of the men puts his foot out while the other turns him in circles.,When the dance is finally over both men\nanetv_elW8E-9bCRQ,18525,Two very tall men in tuxedos are dancing outside of a store. People,are standing back watching them do their dance.,start along the extreme steps of the crowd.,are struggling in a park with a lot of spectators watching them.,are watching him with a moving picture.,,gold0-orig,pos,unl,unl,unl,n/a,Two very tall men in tuxedos are dancing outside of a store.,People\nanetv_elW8E-9bCRQ,18526,People are standing back watching them do their dance. One of the men,puts his foot out while the other turns him in circles.,does a flip into the water.,\"is putting the stick over their mouth and starts burning the sides, they climb to it, most trying to contain it.\",throws one plow under the other and spreads his arms as the crowd cheers.,,gold0-orig,pos,unl,unl,pos,n/a,People are standing back watching them do their dance.,One of the men\nanetv_nQM5LT1-ZRU,2263,We then see the man adjusting the handle bar of the bike. The man,demonstrates how the levers sit and adjusts the brake levers.,puts a sock back on the bike.,spins the tire repeatedly and pulls us the pin.,\"lifts the bike tire, puts it in the garbage, and passes it to a lady.\",puts his arm in the air and then loosens the straps on the bike.,gold0-orig,pos,unl,unl,unl,unl,We then see the man adjusting the handle bar of the bike.,The man\nanetv_nQM5LT1-ZRU,2262,We see a title screen. We then,see the man adjusting the handle bar of the bike.,see people biking on a ski slope.,see a man washing up a ski target.,see the man shining a vacuum on a hardwood floor.,,gold1-orig,pos,unl,unl,unl,n/a,We see a title screen.,We then\nanetv_nQM5LT1-ZRU,2261,We see a man in a room talking about a bike. We,see a title screen.,see the ending credits.,see the man's name and arranges.,see the play and the ending title screens.,,gold1-reannot,pos,unl,unl,unl,n/a,We see a man in a room talking about a bike.,We\nanetv_nQM5LT1-ZRU,2264,\"The man demonstrates the sitting positions and braking and screws them tight. The man then, and\",adjusts the shifter lever.,catch a person from the equipment cylinder.,move both legs gracefully.,plays the piano outside.,,gold0-reannot,pos,unl,unl,unl,n/a,The man demonstrates the sitting positions and braking and screws them tight.,\"The man then, and\"\nanetv_nQM5LT1-ZRU,2265,\"The man then, and adjusts the shifter lever. We\",see a recap and the closing scene of the video.,\", the man removes the shoes and the man in white in front of the camera.\",briefly shows the difference still solar.,ride in eats while a man and a guy carry a bike on a track.,the man begins waggling the leg behind the handle while the male readies full speed on the steps to one side.,gold0-reannot,pos,unl,unl,unl,unl,\"The man then, and adjusts the shifter lever.\",We\nanetv_IHPb-JPIhg8,3165,He jumps off and puts his hands in the air. He,gets back on the balance beam.,does several tricks with him.,throws the darts on the pipe.,flies to his back and wraps his legs in the air.,lands in the water of the water.,gold0-orig,pos,unl,unl,unl,unl,He jumps off and puts his hands in the air.,He\nanetv_xNiYjTyCTtg,13225,The two girls acknowledge the girl holding the camera. They each,show their ears that they are wanting to be pierced.,take turns and punch again.,have a hard time clapping and drink.,take a second and have a good blow.,makes more fake curls and ends her face.,gold0-orig,pos,unl,unl,unl,unl,The two girls acknowledge the girl holding the camera.,They each\nanetv_xNiYjTyCTtg,13227,\"The woman working in the shop straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces. The woman\",looks shocked as the worker talks to her and holds the mirror for h er to see the ear.,continues to talk holding the phone and the mirror at the other side.,shakes the smoke off alone.,makes her way to the right.,,gold0-orig,pos,unl,unl,pos,n/a,\"The woman working in the shop straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces.\",The woman\nanetv_xNiYjTyCTtg,13226,They each show their ears that they are wanting to be pierced. The woman working in the shop,\"straightens the girls head and marks her ear and pierces her right ear, as the girl makes faces.\",\"is being washed and lathered with toothpaste and making a toothbrush to hold a button n the toothbrush, then keeps looking about.\",are speaking to her with sister.,starts to pound their teeth in a drain and the third ladies come out.,\", having piercing while some heroic women are pacing across the young, the watching.\",gold1-orig,pos,unl,unl,unl,unl,They each show their ears that they are wanting to be pierced.,The woman working in the shop\nanetv_xNiYjTyCTtg,13229,To be continued is shown on the screen. The girl,shows her ear as she sits in the chair and tries not to cry as the camera zooms in on her ear.,does several more sit ups.,towels with her fingers to brush her hair.,once again showing the girl up on a fake side.,,gold0-orig,unl,unl,unl,unl,n/a,To be continued is shown on the screen.,The girl\nanetv_xNiYjTyCTtg,13228,The woman looks shocked as the worker talks to her and holds the mirror for h er to see the ear. To be continued,is shown on the screen.,\", a system speaks to the camera while the woman leans from the camera and speaks.\",to draw some lotion out of the skin you want her to be.,\"the tub, which is very dark.\",,gold0-orig,pos,pos,pos,pos,n/a,The woman looks shocked as the worker talks to her and holds the mirror for h er to see the ear.,To be continued\nanetv_xNiYjTyCTtg,13224,Two girls are standing in a shop and hug each other. The two girls,acknowledge the girl holding the camera.,are standing in bed together.,begin swimming several times.,are entering and prepare to ballroom dancing together.,grab each other together with the ring.,gold1-reannot,pos,unl,unl,unl,unl,Two girls are standing in a shop and hug each other.,The two girls\nanetv_Y-CZasxVlx4,17861,The girl plays the guitar as she sits on the sofa. The girl,stops playing and talks to the camera again while demonstrating.,starts to play and picks her flute up.,plays the violin and plays with her rest.,stands and plays on the drums.,,gold0-orig,pos,unl,unl,unl,n/a,The girl plays the guitar as she sits on the sofa.,The girl\nanetv_Y-CZasxVlx4,17860,A girl holding a guitar talks to the camera. The girl,plays the guitar as she sits on the sofa.,puts something into the basket.,speaks to the camera while dancing on the side.,begins skating around a row of other cars.,punches and spins while looking at him.,gold0-orig,pos,unl,unl,unl,unl,A girl holding a guitar talks to the camera.,The girl\nlsmdc3067_THE_ART_OF_GETTING_BY-32529,3303,\"Inside the softly lit bar, someone and someone share a booth, each with a bottle of beer on the table. Her friend\",musters a tight smile.,wears a lover's uniform.,gives a glamorous nod.,points the two at the rows of seats along the platform.,follows a dark haired woman.,gold0-orig,pos,unl,unl,unl,unl,\"Inside the softly lit bar, someone and someone share a booth, each with a bottle of beer on the table.\",Her friend\nlsmdc3067_THE_ART_OF_GETTING_BY-32529,3302,\"Now an illuminated awning over an entry way reads, Lou's. Inside the softly lit bar, someone and someone\",\"share a booth, each with a bottle of beer on the table.\",recognize her as they walk by.,stroll inside of the expo.,look up at the ceiling of the dance floor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now an illuminated awning over an entry way reads, Lou's.\",\"Inside the softly lit bar, someone and someone\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32529,3301,\"Vivian admires her son as she shakes her head. Later, someone\",strolls into his room where only his twin size bed remains.,\"sits with a girl in a brown cap, who holds a pencil in her mouth.\",pays the new man and the young attorney.,crawls multiple boxes through a pile under an zip rack to gear a belt bar that displays behind a chair.,brings water to a box of headquarters.,gold0-orig,pos,unl,unl,unl,unl,Vivian admires her son as she shakes her head.,\"Later, someone\"\nanetv_75xhANnCOEg,12539,A boy and girl performing dojo are shown in various images. They,\"are then shown in video, as the little girl kicks a bag over and over.\",are wearing scuba gear.,pose and clap as they use their blows to play the instruments.,are using red paddles to make a little christmas in the sand in a room.,\"watch the man, seen standing at the bottom of the stairs.\",gold0-orig,pos,unl,unl,unl,pos,A boy and girl performing dojo are shown in various images.,They\nanetv_75xhANnCOEg,15989,A grey screen appears with black letters about the video about a Dojo. While a song plays there,are still pictures with children practicing as well as video of the instructor and a girl practicing kicks.,is a male how to play the saxophone next in a hands basket.,is a group of white contestants standing together by an multicolored field.,are several large tennis player on the court who are cheering with white capes.,\", the youth begins playing, while the judge receives the commentary.\",gold0-orig,pos,unl,unl,unl,unl,A grey screen appears with black letters about the video about a Dojo.,While a song plays there\nlsmdc3049_MORNING_GLORY-23263,966,\"A male presenter, someone Pollard, sits next to her. She\",listens to one of them.,is demonstrating a bobby pin and manipulating new stuff.,wears a black coat over her wavy brown hair.,gives a faint smile as he brushes his lips.,,gold1-orig,pos,unl,pos,pos,n/a,\"A male presenter, someone Pollard, sits next to her.\",She\nlsmdc3049_MORNING_GLORY-23263,969,\"The female presenter, someone, is onscreen. The studio, now empty, someone\",stands in it with a pile of papers in one hand and two mugs in the other.,\"flipped upside down, admires the populated techniques.\",\"is in the old shot, alone.\",watches with an awestruck expression.,,gold0-orig,pos,unl,pos,pos,n/a,\"The female presenter, someone, is onscreen.\",\"The studio, now empty, someone\"\nlsmdc3049_MORNING_GLORY-23263,968,\"In the studio, someone has fallen asleep. Someone\",holds a headphone to her ear.,slams excitedly on his bureau and gives 45 year a sniff.,\"weeps, and answers his phone.\",is happier than a television.,gets out of bed.,gold0-orig,pos,unl,unl,unl,pos,\"In the studio, someone has fallen asleep.\",Someone\nlsmdc3049_MORNING_GLORY-23263,964,A guy in the meeting has fallen asleep in front of his computer. Someone,chuckles with one of her colleagues.,jumps into a seat on the roof of the building as the biker rips out of his room.,sits beside the rough - looking man.,fixes his hands on the attache case.,searches notes and shifts into a drawer.,gold0-orig,pos,unl,unl,unl,unl,A guy in the meeting has fallen asleep in front of his computer.,Someone\nlsmdc3049_MORNING_GLORY-23263,973,\"It's a red t - shirt with the words,. Someone\",puts it on under a denim jacket.,steps behind a closed door and follows someone inside.,stands in a chokehold.,wipes off the fake mustache from the sleeves.,is a good - humored man in a usa blazer.,gold0-orig,pos,unl,unl,unl,unl,\"It's a red t - shirt with the words,.\",Someone\nlsmdc3049_MORNING_GLORY-23263,963,The meeting room is behind a studio. A guy in the meeting,has fallen asleep in front of his computer.,starts up the stairs with a cup strapped to the glider.,looks at him triumphantly.,is at a microphone.,,gold0-orig,pos,unl,unl,unl,n/a,The meeting room is behind a studio.,A guy in the meeting\nlsmdc3049_MORNING_GLORY-23263,967,She listens to one of them. Staff,listen to headphones and watch screens.,takes a break while still temporarily resting of the word.,sit next to a brick up house.,are crawling above the door.,adds occasional comment to his roommates.,gold1-orig,pos,unl,unl,unl,pos,She listens to one of them.,Staff\nlsmdc3049_MORNING_GLORY-23263,962,She talks manically in a meeting. The meeting room,is behind a studio.,is too much for him.,shows one hours sync.,is displaying a fairly good drink.,meets someone's parents.,gold0-orig,pos,unl,unl,unl,unl,She talks manically in a meeting.,The meeting room\nlsmdc3049_MORNING_GLORY-23263,961,Someone hurries into a building. She,walks down a corridor.,walks out of the system.,looks at the pinata.,pats down on a snow - covered ground.,grabs a flamethrower and hangs from the tree.,gold0-reannot,pos,unl,unl,unl,unl,Someone hurries into a building.,She\nlsmdc3049_MORNING_GLORY-23263,965,\"Someone chuckles with one of her colleagues. A male presenter, someone Pollard,\",sits next to her.,is suddenly tossed on a couch.,sits up to someone.,creeps up behind her.,is gazing at the screen.,gold0-reannot,pos,unl,unl,pos,pos,Someone chuckles with one of her colleagues.,\"A male presenter, someone Pollard,\"\nlsmdc3049_MORNING_GLORY-23263,970,\"The studio, now empty, someone stands in it with a pile of papers in one hand and two mugs in the other. She\",smiles and turns to leave.,takes off his glasses.,shakes someone's hand.,hands the watermelon to a wealthy woman.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The studio, now empty, someone stands in it with a pile of papers in one hand and two mugs in the other.\",She\nlsmdc3049_MORNING_GLORY-23263,972,Someone takes a t - shirt from a gift bag. It,\"'s a red t - shirt with the words, \",hangs with a lighter in his house.,wears an oxygen mask as she steps out of the car.,wears a grave expression as he watches it leave.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone takes a t - shirt from a gift bag.,It\nlsmdc3049_MORNING_GLORY-23263,960,Someone drives through dark streets and pulls into a car park. Someone,hurries into a building.,waves his hand as someone down a hall.,gathers around his parks.,leads a woman down an rv.,see a mechanic cooking some vegetables.,gold0-reannot,pos,unl,unl,unl,unl,Someone drives through dark streets and pulls into a car park.,Someone\nanetv_l4LFSd-7hxU,7,A close up of a fooseball table is shown with two people on the sides. The people,grab onto poles and begin playing the game.,sweep the ball all around the field as well as being around the side.,throw the ball back and fourth to one another.,continue to speak and speak to one another as well as stopping to speak to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A close up of a fooseball table is shown with two people on the sides.,The people\nanetv_l4LFSd-7hxU,8,The people grab onto poles and begin playing the game. A woman walks into the room and the men,continue playing on the table.,pretend to watch as they speak.,grab the ball and run around the pool.,continue to ride around.,watches him walk away.,gold0-reannot,pos,unl,unl,unl,unl,The people grab onto poles and begin playing the game.,A woman walks into the room and the men\nanetv_zM1-aiWdPvY,8718,A woman is seen speaking to the camera while standing next to a horse and holding a brush. She,begins brushing all along the horse while still speaking to the camera.,points to the horse while also brushing the horse's mane and zooming it around.,puts her long hair on the side and begins riding her horse with shears.,then brushes up her horse's mane and begins throwing it over the dog with a purse.,grabs a spray bottle and continues brushing her hair.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera while standing next to a horse and holding a brush.,She\nanetv_zM1-aiWdPvY,8719,She begins brushing all along the horse while still speaking to the camera. She,pauses for a moment to end while speaking to the camera.,continues grooming the dog as well as washing her onion pathways and collecting it into a bowl with a brush.,continues brushing the dog with the brush and brushing up over the horse's mane.,continuously uses her feet to brush and brush the horse's mane.,continues riding while the camera captures her movements.,gold0-reannot,pos,unl,unl,unl,unl,She begins brushing all along the horse while still speaking to the camera.,She\nlsmdc1020_Crazy_Stupid_Love-81080,6979,\"He wears smart, polished brown leather shoes and a maroon suit. A guy\",strides confidently through the bar.,carries a necklace in its large overalls.,checks his way in an anonymous - type shop.,approaches his daughter and distantly.,acts as a battle vest on boxer.,gold0-orig,pos,unl,unl,unl,unl,\"He wears smart, polished brown leather shoes and a maroon suit.\",A guy\nlsmdc1020_Crazy_Stupid_Love-81080,6977,\"The other one, someone, eyes her with concern. The one who's getting a talking to, someone,\",sags her shoulders and pouts.,\"lets him go, then scowls.\",starts climbing with a second.,is sitting close the street behind.,switches a note on a laptop.,gold0-orig,pos,pos,pos,pos,pos,\"The other one, someone, eyes her with concern.\",\"The one who's getting a talking to, someone,\"\nlsmdc1020_Crazy_Stupid_Love-81080,6978,\"The one who's getting a talking to, someone, sags her shoulders and pouts. He\",\"wears smart, polished brown leather shoes and a maroon suit.\",\"is freed, but someone is all staring into the night.\",is busy with his competitors in his gear and stops him.,\"looks down at him, back, and twists her head back.\",smiles faintly and nods off.,gold1-reannot,pos,unl,unl,unl,pos,\"The one who's getting a talking to, someone, sags her shoulders and pouts.\",He\nanetv_eEfvYiuGULM,3954,Athletes throw a javelin across the field during a competition in a stadium. The athlete,is not pleased with his throw and slaps his legs in frustration.,stands with some people watching on the sidelines.,slides behind the hard base of each mat.,throws a javelin across the field.,,gold1-orig,pos,unl,unl,pos,n/a,Athletes throw a javelin across the field during a competition in a stadium.,The athlete\nanetv_eEfvYiuGULM,3955,The athlete is moderately pleased with his throw and claps his hands walking away and nods his head. A scoreboard,is seen with the results of the competition.,is shown of a man wearing a track uniform and a 360 begins.,appears to be seen hurling short.,appears across the screen.,is in slow motion through a segment of the man with a medal and some information.,gold0-orig,pos,unl,unl,unl,unl,The athlete is moderately pleased with his throw and claps his hands walking away and nods his head.,A scoreboard\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1197,Someone remembers back to earlier. He applies lipstick in the corridor and the conductor,walks past him as he stands outside the lavatory.,rings through a walkie - talkie.,helps someone up with his bucket.,notice on the mail.,can be seen describing the same actions.,gold0-orig,pos,unl,unl,unl,unl,Someone remembers back to earlier.,He applies lipstick in the corridor and the conductor\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1207,\"Bullets rip through the walls of the first class compartments, showering people with debris. Someone\",hands someone a pistol.,hurls a stack at shield and a green shield which swings for exam vehicles.,opens the entryway cabinets.,ducks down as he tries to crawl.,runs over to someone as he dives back onto the platform and swings himself safely to his feet.,gold0-orig,pos,unl,unl,unl,unl,\"Bullets rip through the walls of the first class compartments, showering people with debris.\",Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1205,Someone closes the exterior door and sees someone is lying down. He,pulls someone down beside him then lights a pipe.,is snug on his back.,\"turns, as if trying to not pull off a running trigger.\",steps out the mobile from his reverie and looks through it through a stack of papers.,holds a pair of sunglasses and thrusts it open.,gold1-orig,pos,unl,unl,unl,pos,Someone closes the exterior door and sees someone is lying down.,He\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1198,He takes the chain of the cistern then removes one of the taps from the basin. He,uses the tap to open the cover on a gas valve.,stops for a half minutes behind them.,can be shown on a table.,\"removes it, pressing it to the frost and absently puts it aloft.\",,gold0-orig,pos,unl,unl,unl,n/a,He takes the chain of the cistern then removes one of the taps from the basin.,He\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1202,He steps into a compartment. Someone,looks into the corridor.,unscrews the window from his hand and examines it.,do not pda them.,descends the stairs and startles him.,hands someone a glass.,gold1-orig,pos,unl,unl,pos,pos,He steps into a compartment.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1195,\"Someone looks out of the window then at someone. As someone grapples with someone, he\",rips his blouse off.,brimmed hat rolls over.,crushes it with both hands.,tilts his chair round.,bends over on front of them.,gold1-orig,pos,unl,unl,unl,unl,Someone looks out of the window then at someone.,\"As someone grapples with someone, he\"\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1196,One aims a rifle at someone. Someone,remembers back to earlier.,unplugs her family phone and runs.,bashes at the retreating young someone and him.,\"leans forward, letting her son drop a penguin on the floor.\",,gold1-orig,pos,unl,unl,unl,n/a,One aims a rifle at someone.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1200,\"A soldier makes his way into someone's compartment, unwittingly triggering the booby - trapped grenade. It\",\"goes off, throwing the soldier off the train.\",wakes up with a white wet towel.,notice him as they hike a little distance.,goes to the body of his life jacket.,,gold0-orig,pos,unl,unl,pos,n/a,\"A soldier makes his way into someone's compartment, unwittingly triggering the booby - trapped grenade.\",It\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1206,A soldier opens a crate and takes out a Maxim machine gun. The weapon,is fixed onto its tripod and the belt - fed ammunition loaded into the breech.,sinks as someone casually thrusts it and grips the knife.,hits the floor and tackles her.,jostles someone's metal body by swinging the door closed.,,gold0-orig,pos,unl,unl,unl,n/a,A soldier opens a crate and takes out a Maxim machine gun.,The weapon\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1193,Someone shoves her out of the carriage as they go over a bridge. Someone,shuts the door to the corridor and sees someone has gone.,makes his way past the retreating revelers draped overhead in the bay.,pops out of her peak and bites a chunk of ice.,are running past and thoughtful.,drives through the rain.,gold1-orig,pos,unl,unl,pos,pos,Someone shoves her out of the carriage as they go over a bridge.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1194,Someone shuts the door to the corridor and sees someone has gone. Someone,looks out of the window then at someone.,\"opens his door to the other driver from the inside, shuts the door, and turns back outside.\",strides across the stage where a blonde man chases man.,keeps the treadmill behind us.,,gold0-orig,pos,unl,unl,unl,n/a,Someone shuts the door to the corridor and sees someone has gone.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1210,He hits a soldier who drops a grenade. The soldier someone hit,realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades.,gunfire and the men drop the gun.,his head and someone slips forward.,and throws his hands in front of him.,,gold0-reannot,pos,unl,pos,pos,n/a,He hits a soldier who drops a grenade.,The soldier someone hit\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1209,Someone shoots through the hole created by the machine gun bullets. He,hits a soldier who drops a grenade.,gets out and runs toward the woman.,\"runs to a wall, unscrews a padlock, and slides it out.\",\"rounds past him, his helmet reeling against the protective shield.\",sees a car approaching.,gold0-reannot,pos,unl,unl,unl,unl,Someone shoots through the hole created by the machine gun bullets.,He\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1211,The soldier someone hit realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades. People,sit in the ruined lavatory of their carriage which is at the end of those still attached to the engine.,pulls a ball from a closet.,land around him and beats a flat ball.,soldiers auction it up makes them sick.,enters a group rather building and windmills them before pushing him down.,gold0-reannot,pos,unl,unl,unl,unl,The soldier someone hit realizes he is inadvertently pulled the pin out of the grenade which then dropped back into a bag full of grenades.,People\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1208,\"The lipstick he put in the machine gun belt is fed into the breech, jamming the gun. Someone\",shoots through the hole created by the machine gun bullets.,needs electric contact lenses while examining the people working pre - session with colleagues.,is on the phone.,\", in a keypad, walks through the door to join his aide, wearing an armful of weapons.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"The lipstick he put in the machine gun belt is fed into the breech, jamming the gun.\",Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1203,Someone looks into the corridor. He,shoos the elderly couple out of their compartment.,builds up gradually.,\"burns his comforter, then grabs someone roughly around his waist and fires him with the machine.\",points her head at someone's.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone looks into the corridor.,He\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-84885,1201,\"It goes off, throwing the soldier off the train. He\",steps into a compartment.,backs up several trees.,gets more sideways and sends him off down the road.,runs back to the safe and turns it over.,hurls it through the air and fumes.,gold0-reannot,pos,unl,unl,unl,unl,\"It goes off, throwing the soldier off the train.\",He\nanetv_ND9mMyNjm5M,18161,The groomer cleans the horses hooves with a pick and brush. The groomer,brushes the horses tail.,brushes off the mans hooves.,brushes the hooves in the back of the black dog.,brushes the horses hooves.,brushes the mane on the dog.,gold1-orig,pos,unl,unl,pos,pos,The groomer cleans the horses hooves with a pick and brush.,The groomer\nanetv_ND9mMyNjm5M,18157,The blond girl brushes the horse vigorously with a brown hand brush. The blond girl,wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes.,has her face put to the ground.,attempts to pat the horse and stares off into the distance.,holds her hand and then begins to ride the horses.,,gold1-orig,pos,unl,pos,pos,n/a,The blond girl brushes the horse vigorously with a brown hand brush.,The blond girl\nanetv_ND9mMyNjm5M,18156,A blond girl dressed in a blue hoodie grooms a black horse. The blond girl,brushes the horse vigorously with a brown hand brush.,takes turns bouncing the white dog.,dunks her other boy and braids her hair.,smiles at the camera as her walk to the front.,uses a little brush.,gold0-orig,pos,unl,unl,pos,pos,A blond girl dressed in a blue hoodie grooms a black horse.,The blond girl\nanetv_ND9mMyNjm5M,16077,The woman is seen doing something with the horses hoof. The woman,brushes the horses neck and then starts to brush out the horses tail and mane.,picks up an ax to get off the horse.,spins the camera around the leaves with ease.,kneels down on the ground and rocks back and forth.,,gold0-orig,pos,unl,unl,pos,n/a,The woman is seen doing something with the horses hoof.,The woman\nanetv_ND9mMyNjm5M,18162,The groomer brushes the horses tail. The groomer,brushes the horses mane.,combs the cattle's tail.,shakes the dogs fur and walks away.,uses a brush to lower the mane.,brushes the mane of the dog.,gold1-orig,pos,unl,unl,unl,unl,The groomer brushes the horses tail.,The groomer\nanetv_ND9mMyNjm5M,16076,The woman starts brushing the horses legs. The woman,is seen doing something with the horses hoof.,continues to talk in pain.,rides to the side of the horse.,begins mowing the belly of the horse.,back camera focuses on her face and the woman is brushing her teeth.,gold1-orig,pos,unl,unl,unl,unl,The woman starts brushing the horses legs.,The woman\nanetv_ND9mMyNjm5M,18158,The blond girl wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes. The blond groomer,wipes down the black horse with a striped cloth.,rubs her chin with a rag and applies more white paint on the paw.,brushes into the mans hair.,brushes her hair while holding up a razor.,,gold1-orig,pos,unl,unl,unl,n/a,The blond girl wipes down the black horse with a blue wipe brush removing excess hair switching back and forth to different brushes.,The blond groomer\nanetv_ND9mMyNjm5M,18160,The blond groomer proceeds to brush the horses legs. The groomer,cleans the horses hooves with a pick and brush.,brushes the dogs fur.,brushes the dogs fur as well as more clipper pets.,dries the dogs fur and begins brushing the dog's fur.,watches the horse up then rides away.,gold0-orig,pos,unl,unl,unl,unl,The blond groomer proceeds to brush the horses legs.,The groomer\nanetv_ND9mMyNjm5M,16075,A woman brushes out and scratches a big black horse. The woman,starts brushing the horses legs.,combs her tail while the horse follows the motions.,reach outside to faucet the water.,holds a gentle brush in her curling bedroom.,puts on an orange green brush and rinse the horses.,gold0-orig,pos,unl,unl,unl,unl,A woman brushes out and scratches a big black horse.,The woman\nanetv_ND9mMyNjm5M,18159,The blond groomer wipes down the black horse with a striped cloth. The blond groomer,proceeds to brush the horses legs.,brushes the cat.,brushes the dogs's hair with a orange clipper.,brushes the dog's fur.,walks the dog back and forth in her loose shoes.,gold0-orig,pos,unl,unl,unl,unl,The blond groomer wipes down the black horse with a striped cloth.,The blond groomer\nanetv_XKOeu8n7R7s,4232,A small group of men are seen running around a basketball court playing a game of basketball. One player,moves all around the net holding the ball and demonstrates how to properly shoot a hoop.,kicks the ball between goals and the ball moves on it as they continue hitting them.,kicks off the ball to hit it several times before stopping to hit the ball back.,hit a ball and the ball hitting the other in the other.,throws a ball after the other as well as another player rounds him to play.,gold0-orig,pos,unl,unl,unl,unl,A small group of men are seen running around a basketball court playing a game of basketball.,One player\nanetv_jIsGq431gBs,15853,\"They all go for a long walk together, including down a large flight of stairs. They\",\"reach a long line of rafts by the water, where they get in and begin rafting.\",\"steps into the room with her son firmly tied back in front of someone, who now lifts the far covers.\",kneel on the platform of people and look up at the small stacks.,are about exhausted from coffee.,can be led by the small white handle of a wreck.,gold0-orig,pos,unl,unl,unl,unl,\"They all go for a long walk together, including down a large flight of stairs.\",They\nanetv_jIsGq431gBs,15852,They all meet in a room to put on helmets and get together their equipment. They all,\"go for a long walk together, including down a large flight of stairs.\",continue to show off the bike and land on the ground next to one near their ankle.,\"stand round to do a few candy salutes, not make or patrol it.\",\"are high in their bikes, pulling even rope, at their path.\",bending back to do a choreographed performance routine using the arts.,gold1-orig,pos,unl,unl,unl,unl,They all meet in a room to put on helmets and get together their equipment.,They all\nanetv_jIsGq431gBs,15851,A bunch of people are meeting in a raft shop. They all,meet in a room to put on helmets and get together their equipment.,get into the water.,get into the water with a skis before they are unable to turn back and continue to work out.,have binoculars to change the surface of the body of water.,,gold0-orig,pos,unl,unl,unl,n/a,A bunch of people are meeting in a raft shop.,They all\nanetv_jIsGq431gBs,15854,\"They reach a long line of rafts by the water, where they get in and begin rafting. The people\",\"are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together.\",follow in a stiff boat route as they attempt to walk on sticks.,get out of the river onto a raft and paddle on a dock.,looks up the river.,finish interviews and go surfing in the water.,gold0-orig,pos,unl,unl,unl,unl,\"They reach a long line of rafts by the water, where they get in and begin rafting.\",The people\nanetv_jIsGq431gBs,15855,\"The people are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together. They all\",stop to have lunch under an outdoor pavilion at the end of their adventure.,take turns right across the wave of one person and a yellow.,\"go into the kayaks steady, but they stay locked on the boats.\",go around the rivers and enjoy themselves as far as they can stay upright.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The people are white water rafting down a turbulent river, using their paddles in unison, going down small waterfalls together.\",They all\nlsmdc1001_Flight-71654,13531,She slides the side - stick forward. One wheel,gets stuck while retracting.,\"makes calls up to someone, who twirls toward the back.\",\"off cautiously, then chops as one of the ringwraiths lashes off.\",\"gets caught with one hand, dropping it and then an backwards.\",,gold0-orig,pos,unl,unl,pos,n/a,She slides the side - stick forward.,One wheel\nlsmdc1001_Flight-71654,13530,The plane turns upside down. She,slides the side - stick forward.,attempts to strap a rod up her rear.,leans over the table with his eye resting on his back.,glances around the broomstick.,,gold1-orig,unl,unl,unl,unl,n/a,The plane turns upside down.,She\nanetv_8L1xXJvKuv4,11118,A group of people are swimming in an indoor pool with other swimmers standing on the side of the pool watching. The children on the sidelines,are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim.,show a vinyl multitude of kids playing the curling motions on a video game.,swims in the rapids as another teen hangs on their skateboards on a jump line going through the water.,talk to the camera and are near the net to separate looks.,stumble a little more.,gold0-orig,pos,unl,unl,pos,pos,A group of people are swimming in an indoor pool with other swimmers standing on the side of the pool watching.,The children on the sidelines\nanetv_8L1xXJvKuv4,11119,The children on the sidelines are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim. A person,walks by the camera as the shaky camera focuses on the people who are already in the pool swimming.,\"enters and hugs them as the band continues, in the distance more shots and the water applauding the others in the queue.\",\"carrying a raft leap across to the river and holds on to the end with shoes, jim soaking alone.\",throws a ball across the field where a young boy chases in a swimming pool as a teenage boy watches with the boy in black,zooms over to everything ends as the group continue.,gold0-reannot,pos,unl,unl,unl,unl,The children on the sidelines are jumping up and down with swim caps and swimsuits on as they watch the people who are already in the pool swim.,A person\nanetv_Mnhg-VEP69U,14536,A man is seen assembling a tire on a lift and taking the rubber off using a machine. He then,puts the rubber back on using the machine and ends by moving back from the tire.,takes a screw on the tire wheel and spreads it.,uses the tool and tape around to tighten the slat up on the machine.,moves the machine to the other man who takes out the tire and climbs closer from the car.,,gold1-orig,pos,pos,pos,pos,n/a,A man is seen assembling a tire on a lift and taking the rubber off using a machine.,He then\nanetv_AZn294ubbps,2967,Man is sitting in a kayak in the lakeside in front of the man talking. the man,sits on the kayak behind the man and start rowing in the lake.,is putting water up in a boat before squeezing the water for the kid sitting in office next to the boat.,is using a straw in pits over a day.,is sitting next to a horse and puts on his gloves.,,gold1-orig,pos,unl,unl,unl,n/a,Man is sitting in a kayak in the lakeside in front of the man talking.,the man\nanetv_AZn294ubbps,10080,\"A man wearing sunglasses is standing at the edge of the ocean on a beach in front of a man seated in a kayak. He gets into the kayak, and they\",\"paddle away as they demonstrate how to use the paddles, then turn back to shore as he continues talking.\",do jump over a pier on sail rafters.,continue to wave in unison making no move to the wave that continue to stay around and builds template with his surfers as they start,begin skiing down the rapids on a small hill in web.,\"begin throwing what, he ends up to ride in the waves and walks along with others.\",gold0-orig,pos,unl,unl,unl,unl,A man wearing sunglasses is standing at the edge of the ocean on a beach in front of a man seated in a kayak.,\"He gets into the kayak, and they\"\nanetv_AZn294ubbps,2966,Man is standing in a lakeside talking to the camera and holding a row nex to a kayak. man,is sitting in a kayak in the lakeside in front of the man talking.,is sitting in a kayak in a kayak holding the sail of a boat.,is sitting behind a boat canoe drinking from a coffee board.,is talking while holding a camera pole in his hand.,is rafting the river in the stands and takes turns talking to the camera in the boat.,gold1-reannot,pos,unl,unl,pos,pos,Man is standing in a lakeside talking to the camera and holding a row nex to a kayak.,man\nanetv_wv2baWJtSoc,17933,A man in a blue shirt is sitting down holding a bar on an exercise machine. He,pushes off and uses the exercise machine.,works out on the machine and out to his regular neck and correct exercise.,pulls back the instrument and walks on with the machine.,is standing in a gym showing a sword in the man's hands.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a blue shirt is sitting down holding a bar on an exercise machine.,He\nlsmdc1005_Signs-4441,1295,\"A dark haired girl of about six - years - old stands a little further down the path. The two men run over to her, and someone\",grabs her by the arms.,points to paws.,smothers up the embrace.,comes to the other side.,,gold0-orig,pos,unl,pos,pos,n/a,A dark haired girl of about six - years - old stands a little further down the path.,\"The two men run over to her, and someone\"\nlsmdc1005_Signs-4441,1293,They stop when they reach a gap. And,\"look along a clear pathway, which cuts through the crop.\",\"another flashback, someone finds someone inside the bank.\",now look dead in blue.,are eating from a car.,,gold0-orig,pos,unl,unl,unl,n/a,They stop when they reach a gap.,And\nlsmdc1005_Signs-4441,1282,\"Suddenly, the same man leans up on his elbows in bed. His eyes\",darting feverishly around the simply furnished room.,are glued to the music.,remain all over the road.,\"never leave someone, but all around him is silent.\",flit in groggy corners.,gold0-orig,pos,unl,unl,unl,pos,\"Suddenly, the same man leans up on his elbows in bed.\",His eyes\nlsmdc1005_Signs-4441,1289,\"Someone crosses the bathroom and stares out of the door, his toothbrush in his mouth. He\",\"strides across the landing, opens the door to the children's room and glances around.\",\"stares at the floor, looking slightly bemused.\",flips a switch and slides the syringe back to the girl.,\"stares, then leans back on the cushion.\",knocks down a slice of fruit and swigs from the paper to someone.,gold1-orig,pos,unl,unl,unl,unl,\"Someone crosses the bathroom and stares out of the door, his toothbrush in his mouth.\",He\nlsmdc1005_Signs-4441,1292,\"Someone and the young man, someone, charge through a field of tall green maize. They\",stop when they reach a gap.,hurtle forwards the whirling staircase.,\"look up at the bashful place, then their nose animates another line.\",continue either side of a cliff and walking alongside a massive group of mourners.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone and the young man, someone, charge through a field of tall green maize.\",They\nlsmdc1005_Signs-4441,1284,\"He relaxes and sits up. The man, someone,\",comes out of his bedroom wearing a black t - shirt and pajama bottoms.,\"smiles at someone, and he hands her to her, then snatches her by her stuff.\",fires out the whole rear of the tent and follows a carriage around the lawn.,dodges a punch as best he can.,hands the phone to her mom.,gold0-orig,pos,unl,unl,unl,unl,He relaxes and sits up.,\"The man, someone,\"\nlsmdc1005_Signs-4441,1290,\"He strides across the landing, opens the door to the children's room and glances around. He\",jumps to his feet and strains to listen.,looks down from the shaft of the key.,\"raises his wand and quill falls completely over it, gradually returning.\",sets the keys and hurries up to the metropolitan room.,wears an automatic winter jacket.,gold1-orig,pos,unl,unl,unl,unl,\"He strides across the landing, opens the door to the children's room and glances around.\",He\nlsmdc1005_Signs-4441,1286,He walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it. Someone,pauses for a moment to listen at the door.,\"twirls a wand over someone's head, bites the apple, and scratches his ass.\",hurries into the chase.,moves the bicycle towards the door and enters.,,gold0-orig,pos,unl,unl,pos,n/a,He walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it.,Someone\nlsmdc1005_Signs-4441,1288,He is in his mid - 40s with short dark hair and a rugged handsome face. Someone,\"crosses the bathroom and stares out of the door, his toothbrush in his mouth.\",\"runs down the street, stopping in a slight charming look.\",is in her car.,puts down his dark coat and gets walking.,,gold0-orig,pos,unl,pos,pos,n/a,He is in his mid - 40s with short dark hair and a rugged handsome face.,Someone\nlsmdc1005_Signs-4441,1283,His eyes darting feverishly around the simply furnished room. He,relaxes and sits up.,finds someone's in the rear.,replaces a pump on his toned chest.,places himself in the drain.,stands there with his arms folded up.,gold1-orig,pos,unl,unl,unl,pos,His eyes darting feverishly around the simply furnished room.,He\nlsmdc1005_Signs-4441,1287,Someone pauses for a moment to listen at the door. He,is in his mid - 40s with short dark hair and a rugged handsome face.,swings to the fireplace.,\"is quiet, staring at the sight for a moment.\",\"moves from the window, says nothing and is just seen enough to hear it.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone pauses for a moment to listen at the door.,He\nlsmdc1005_Signs-4441,1304,\"A path leads from the side of the circle, splitting into two prongs. A third crop circle has two straight lines at either side, and a circle of maize\",\"remaining in the center, with another path leading off from its side.\",has licking the handle.,are being painted amongst the lines.,turns and cradles in the heart of the ice.,\"rears up, dancing, and crawls into the room.\",gold0-orig,pos,unl,unl,unl,unl,\"A path leads from the side of the circle, splitting into two prongs.\",\"A third crop circle has two straight lines at either side, and a circle of maize\"\nlsmdc1005_Signs-4441,1302,He swallows hard and tentatively steps forward onto a sea of flattened maize stalks. Someone,\"stares in wonder as he, people come to the perimeter of a vast circular expanse of flattened maize.\",moves on to the dirt and his legs wrapped in a suit strap.,\"folds his hands in his own device to cover the whole, summit of mount doom.\",appears at the far side of the room as he finds men practicing in the mercenaries.,adorns a brick wall.,gold0-orig,pos,unl,unl,unl,unl,He swallows hard and tentatively steps forward onto a sea of flattened maize stalks.,Someone\nlsmdc1005_Signs-4441,1303,Another crop circle lies beside it. It,\"'s the same size, but has a small semi - circle of maize still standing within it.\",lies down by someone.,slides their belts down over one knee.,\"play baseball, lighted by lug moss poopsie bows obituary tree.\",\"above, goes black.\",gold0-orig,pos,unl,unl,unl,unl,Another crop circle lies beside it.,It\nlsmdc1005_Signs-4441,1297,\"He reaches a fair haired boy of about 10, who stares glassily across the field. Someone\",turns someone's head to face him.,stands in an outdoor arena as spectators work off at different stances.,peers into a bearded someone sitting tensely on stage.,notices the arena sitting beside him.,walks forward in vain to reveal a high - school staff inside.,gold0-reannot,pos,unl,unl,unl,unl,\"He reaches a fair haired boy of about 10, who stares glassily across the field.\",Someone\nlsmdc1005_Signs-4441,1300,\"Someone stands and slowly walks through the maize, followed by someone, who's still carrying someone in his arms. Someone\",stops and glances around anxiously.,looks up from his briefcase.,\"shakes his head, another ducks in the outside, while other boys fetch the club.\",\"join from the camp, passing the indian - to - infested water, looking in at the collection of books.\",\"takes two books off his back, picks it up and throws it.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone stands and slowly walks through the maize, followed by someone, who's still carrying someone in his arms.\",Someone\nlsmdc1005_Signs-4441,1285,\"The man, someone, comes out of his bedroom wearing a black t - shirt and pajama bottoms. He\",walks along the landing in his bare feet and comes to a closed door with some hand drawn children's pictures stuck to it.,show the clip starting off the farm half through the door.,tries a pillow on a chair under the window.,\"reaches down a pair of stilts, wrings his hands, and rubs it wet before.\",\"sighs, takes it in his hands, narrowed eyes, and gazes out at lion's enclosure.\",gold0-reannot,pos,unl,unl,unl,unl,\"The man, someone, comes out of his bedroom wearing a black t - shirt and pajama bottoms.\",He\nlsmdc1005_Signs-4441,1301,Someone stops and glances around anxiously. He,swallows hard and tentatively steps forward onto a sea of flattened maize stalks.,glances up then reaches back and wrestles the lid off the edge.,\"then grips his jacket and moves closer to him, his eyes shaking.\",emerges from a sphere's view and holds his unit upright.,gazes through a window at the mansion directly below him.,gold1-reannot,pos,unl,unl,unl,pos,Someone stops and glances around anxiously.,He\nlsmdc1005_Signs-4441,1294,\"And look along a clear pathway, which cuts through the crop. A dark haired girl of about six - years - old\",stands a little further down the path.,\"is talking in a basement room, holding no old zippo.\",\", someone is a beginning to leave her table.\",come out from her kitchen.,\", barely shorter, appears into the opposite back of the school.\",gold0-reannot,pos,unl,unl,unl,unl,\"And look along a clear pathway, which cuts through the crop.\",A dark haired girl of about six - years - old\nlsmdc1005_Signs-4441,1305,\"It splits into three larger prongs, the central one of which points towards a smaller circle. Someone\",is on the phone as he looks out of his window at the yard.,hands him around in a synchronized manner.,\"softens momentarily, one of someone's feet keeps getting closer.\",collapses on the dead.,,gold0-reannot,pos,unl,unl,pos,n/a,\"It splits into three larger prongs, the central one of which points towards a smaller circle.\",Someone\nlsmdc1005_Signs-4441,1291,\"Someone rushes out of his wooden farmhouse and heads towards a whitewashed barn, while the younger man runs down a flight of steps from the other floor. Someone and the young man, someone,\",charge through a field of tall green maize.,drags him to the side of a roof.,observe from the front seat of the humvee.,watch as empty stalls rush onto the canopied area.,watch him gallop along the street.,gold1-reannot,pos,unl,pos,pos,pos,\"Someone rushes out of his wooden farmhouse and heads towards a whitewashed barn, while the younger man runs down a flight of steps from the other floor.\",\"Someone and the young man, someone,\"\nlsmdc3071_THE_DESCENDANTS-5235,18151,\"Sharing her mother's round face and sullen pout, she faces her visitors. Her mother\",\"looks to them indignantly, hands on her hips.\",brings a thoughtful frown.,leans close and plants his arms around her waist.,sips a tub and shakes the bottle of mouthwash.,\"proudly meets the others gaze, then smothers a smile.\",gold1-orig,pos,unl,unl,unl,unl,\"Sharing her mother's round face and sullen pout, she faces her visitors.\",Her mother\nlsmdc3071_THE_DESCENDANTS-5235,18150,\"As it passes, we glimpse someone riding shotgun. The car\",arrives at a house.,crashes into each other.,stop just inside of a house.,is taken off of someone's car.,\"is now covered with a blue and blue substance which he sizes up, as a car jerks a wheel at his chest.\",gold0-orig,pos,unl,unl,unl,unl,\"As it passes, we glimpse someone riding shotgun.\",The car\nlsmdc3071_THE_DESCENDANTS-5235,18148,Someone sees someone hurl lawn chairs into a pool. Someone,briefly lowers the phone and glowers at it.,takes a shot by the woman.,rests his head on a vacant course.,takes the ladder and tosses them onto the ground.,stops on a lawn umbrella and puts her heavy jacket on.,gold1-orig,unl,unl,unl,unl,unl,Someone sees someone hurl lawn chairs into a pool.,Someone\nlsmdc3071_THE_DESCENDANTS-5235,18149,\"Someone briefly lowers the phone and glowers at it. As it passes, we\",glimpse someone riding shotgun.,see two rows of policeman block rifle microphones behind them.,watch a vanger visit from someone.,watch the static from last view of a parked car.,,gold0-orig,pos,unl,unl,unl,n/a,Someone briefly lowers the phone and glowers at it.,\"As it passes, we\"\nlsmdc0009_Forrest_Gump-50819,12471,Someone lies in his bed as the door opens. Someone,gets into bed next to someone.,slips his eyes back.,sees the cab pull up.,sits across from her.,\"enters the room, shouts through the doors.\",gold0-orig,pos,unl,unl,unl,pos,Someone lies in his bed as the door opens.,Someone\nlsmdc0009_Forrest_Gump-50819,12484,Someone runs down the drive away from his house. Someone,\"runs to the end of the drive, then turns right and runs down the highway.\",looks up as someone creeps past the office.,looks out across the minivan at a guy leaning against the wall.,\"is being worked along the roads, trying to stay upright.\",\"trudges down the shadowy walkway toward a family road, where a bloody pillow is lying on the ground.\",gold0-orig,pos,unl,unl,unl,unl,Someone runs down the drive away from his house.,Someone\nlsmdc0009_Forrest_Gump-50819,12481,He walks off the porch. He,begins to jog across the lawn.,sees someone in the bathroom.,comes up and shuts the door behind her.,comes outside and opens a door for him.,\"crosses the street with a faint, metal sign.\",gold0-orig,pos,unl,unl,unl,unl,He walks off the porch.,He\nlsmdc0009_Forrest_Gump-50819,12475,The Congressional Medal lies on a table by a ping - pong paddle. Someone,holds a glass of milk and wears his bathrobe.,hands him a bag of mustard as he talks.,blows out flames as he taps another wooden cup.,rolls it and prays.,,gold1-orig,pos,unl,unl,unl,n/a,The Congressional Medal lies on a table by a ping - pong paddle.,Someone\nlsmdc0009_Forrest_Gump-50819,12469,Someone turns and walks toward the door. Someone,turns and walks up the stairs.,someone briskly after him and follows him from some open gates.,is looking down at someone with gray coasts on the arm of the street.,is at the door packed for her locker and shutting the door behind her.,\"slowly opens a door, takes out an empty desk.\",gold1-orig,pos,unl,unl,unl,pos,Someone turns and walks toward the door.,Someone\nlsmdc0009_Forrest_Gump-50819,12474,The cab drives away as someone is asleep in his bed. The Congressional Medal,lies on a table by a ping - pong paddle.,fill a huge container in four white emergency hoses.,\"'s front page, someone's handsome girlfriend catches him as the two boys arm furtively around of men who are busy table reporters.\",flows to one eye.,\"puts one hand on his shoulder, pulls his father's head close to the soaking bed.\",gold0-orig,pos,unl,unl,unl,unl,The cab drives away as someone is asleep in his bed.,The Congressional Medal\nlsmdc0009_Forrest_Gump-50819,12482,He begins to jog across the lawn. His speed,increases as he runs farther away.,\"is familiar, on someone.\",\"'s finished, as the driver pass him.\",\"is new, and makes a shot.\",moves up and gradually brushes his feet.,gold0-orig,pos,unl,unl,unl,unl,He begins to jog across the lawn.,His speed\nlsmdc0009_Forrest_Gump-50819,12477,Someone's bed is made. Someone,stands in the doorway looking at the room and bed where someone had been.,and someone are both in dull black cars.,\"trembles, sinking her hands there.\",smart tech wears jeans and walkie - talkie.,looks away from someone and sees the door she is looking at.,gold0-reannot,pos,unl,unl,unl,pos,Someone's bed is made.,Someone\nlsmdc0009_Forrest_Gump-50819,12470,The house stands in the rain. Someone,lies in his bed as the door opens.,\"is seated beside a cart, looking sputtering to the camera.\",picks up a parcel and hurls it down into the pool.,stands and leaves by.,\"gunman locks a wall, grinds a metal bell on the center, then stalks off.\",gold0-reannot,pos,unl,unl,unl,unl,The house stands in the rain.,Someone\nlsmdc0009_Forrest_Gump-50819,12483,His speed increases as he runs farther away. Someone,runs down the drive away from his house.,runs to the back of someone's body.,crosses himself before falling into a wide bed.,looks down at the receiver then on his hand.,quickly snatches it from him.,gold0-reannot,pos,unl,unl,unl,unl,His speed increases as he runs farther away.,Someone\nlsmdc0009_Forrest_Gump-50819,12473,Someone carries her purse and walks toward a waiting cab. The cab,drives away as someone is asleep in his bed.,gets up as someone enters.,passes into the opposite wing at the cottage outside the door.,comes out for her.,arrives to a dilapidated curb leading to the front steps.,gold0-reannot,pos,unl,unl,pos,pos,Someone carries her purse and walks toward a waiting cab.,The cab\nlsmdc0009_Forrest_Gump-50819,12478,Someone stands in the doorway looking at the room and bed where someone had been. He,\"is still, as if in a trance.\",\"tries to open it, revealing a man's shirt.\",picks up the emergency result from inside.,turns to him as the casket turns back to normal.,\"looks up, nods, hands him the papers, and leaves.\",gold0-reannot,pos,unl,unl,unl,unl,Someone stands in the doorway looking at the room and bed where someone had been.,He\nanetv_kuv1yEeNQzQ,5606,\"Two teams play soccer beach, and players scores while men hug to celebrate. Then, the teams\",continue playing and scoring close to the goal area.,play beach soccer with players and the score riders graphic.,swim fast and throw with all transitioning opponents.,stretch their horses and chase the ball on the field.,\"take outdoor flips, sometimes one team shows their high fives to a team and performs an interview with the polo team.\",gold1-orig,pos,unl,unl,unl,unl,\"Two teams play soccer beach, and players scores while men hug to celebrate.\",\"Then, the teams\"\nanetv_kuv1yEeNQzQ,5977,\"The black screen with the same colorful logos briefly appear again and it's followed by more clips of people playing soccer in the sand making goals after goals while people cheer them on, and the winners cheer themselves on. Once again the black screen with the logos appears and various clips of the ones shown before\",are shown again until it ends with a screen of the logos.,\", but it ends with black and white trophies and other logos spectators.\",\"launches the game to the court, then the players lining up the ball once more and the field.\",having a jump competition.,,gold0-orig,pos,unl,unl,unl,n/a,\"The black screen with the same colorful logos briefly appear again and it's followed by more clips of people playing soccer in the sand making goals after goals while people cheer them on, and the winners cheer themselves on.\",Once again the black screen with the logos appears and various clips of the ones shown before\nanetv_kuv1yEeNQzQ,5608,\"After, the teams continue playing and scoring and the players wearing red t - shirt win and receives a trophy. Teams\",play beach soccer in the beach in a competition.,\"are jumping rope in a room, one player and long lacrosse stick.\",\"serve the scores then people, that woman wins and a man in the same uniform scores.\",\"practices a commentators point putting different teams over victory, and ends with them running into the game and making run with the ball.\",\"hit again, finishing a sign of the youth of japanese citizens who take a break talk and a role everyone is sitting on.\",gold1-orig,pos,unl,unl,unl,unl,\"After, the teams continue playing and scoring and the players wearing red t - shirt win and receives a trophy.\",Teams\nanetv_kuv1yEeNQzQ,5605,\"People plays beach soccer in front the sea. Two teams play soccer beach, and players\",scores while men hug to celebrate.,keep remaining lacrosse on the field.,are shown on the beach in hockey.,are watching.,play a game of indoor indoor soccer.,gold0-reannot,pos,unl,unl,unl,unl,People plays beach soccer in front the sea.,\"Two teams play soccer beach, and players\"\nanetv_kuv1yEeNQzQ,5607,\"Then, the teams continue playing and scoring close to the goal area. A player wearing a black t - shirt\",kick the ball to move in an elliptical trajectory and scores.,runs through a team and grabs his opponent both in a hug.,answers an overhand shot of the ball.,scour the hockey unicycle on the ice as he goes to do it.,dive into the net.,gold0-reannot,pos,unl,unl,unl,pos,\"Then, the teams continue playing and scoring close to the goal area.\",A player wearing a black t - shirt\nanetv_vutxJfF0Rlg,14109,Several pictures are shown of people measuring themselves and a cup of coffee. Text,is shown as well as pictures of people smiling to each other.,use a poured can.,is using nail polish.,shots of the ingredients are shown with several ingredients added in flash glass along with bowl and plates being mixed in close.,are shown on a roof.,gold0-orig,pos,unl,unl,unl,unl,Several pictures are shown of people measuring themselves and a cup of coffee.,Text\nanetv_vutxJfF0Rlg,19296,\"The coffee helps you to burn fat and boost metabolism and seemed to help a person lose 5 lbs in 1 week. the coffee help to eliminated craving, give energy, and you\",can also get in the coffee free every month.,do the power line victoriously but sing.,can't wash your ears.,ca the crawl part of the side.,try to avoid the fight while both town inflatable attacked.,gold0-orig,pos,unl,unl,unl,unl,The coffee helps you to burn fat and boost metabolism and seemed to help a person lose 5 lbs in 1 week.,\"the coffee help to eliminated craving, give energy, and you\"\nanetv_vutxJfF0Rlg,19297,\"The coffee help to eliminated craving, give energy, and you can also get in the coffee free every month. If you refer 3 people you\",can get free coffee every month and other free prizes as well.,actually take a bath and again for the cubicle.,'re feeling this then is working on the video and make a decide stand just taking time with a metal leather wall.,start doing core surprise waking quickly doing a little really and combo before sing and plays together as if to play.,,gold0-orig,pos,unl,unl,unl,n/a,\"The coffee help to eliminated craving, give energy, and you can also get in the coffee free every month.\",If you refer 3 people you\nanetv_vutxJfF0Rlg,14110,Text is shown as well as pictures of people smiling to each other. Cars and money,are shown as well as more text and pictures of people drinking coffee.,\"are shown in a gazebo, with people walking around and talking to other people.\",are shown resting on the roof as well as looking through photographs.,are shown and the woman talks with and one man in out to the camera.,are shown with rocks as well as statues.,gold0-orig,pos,unl,unl,pos,pos,Text is shown as well as pictures of people smiling to each other.,Cars and money\nlsmdc3025_FLIGHT-11972,6046,\"She takes the glass from his hand, and sets it carefully on the nearby table. She\",pushes herself towards him.,\"waits on the sidewalk as someone escorts her to the bike, and looks her inside.\",gives a little pat then crosses to someone who walks over to another booth.,\"stares at her colleagues's parents, then turns to his voice.\",,gold1-orig,pos,unl,pos,pos,n/a,\"She takes the glass from his hand, and sets it carefully on the nearby table.\",She\nlsmdc3025_FLIGHT-11972,6042,\"Carrying the pillow, she walks to someone. She\",\"lifts his leg, and places the cushion under it.\",climbs from the bus.,turns in back and glances at him.,spots a family photo for two.,shakes hands with the woman.,gold0-orig,pos,unl,unl,pos,pos,\"Carrying the pillow, she walks to someone.\",She\nlsmdc3025_FLIGHT-11972,6044,\"He raises the glass, as if to take a drink, but stops midway. Someone\",\"hesitates, her gaze steady on him.\",straightens up on a sofa to remove his jacket.,\"nods touched, and he smiles wildly.\",drops to his knees sideways.,,gold0-orig,pos,unl,unl,unl,n/a,\"He raises the glass, as if to take a drink, but stops midway.\",Someone\nlsmdc3025_FLIGHT-11972,6043,Someone is laid back in the armchair. He,\"raises the glass, as if to take a drink, but stops midway.\",\"kicks in the glass, then brings it back behind his table to catch his attention.\",\"slowly wraps her arm around his neck, kisses his chest and turns him on but they have gone.\",seizes her and plants her foot on her belly.,\"holds at the base of the boy light on the branch, and heaves.\",gold0-orig,pos,unl,unl,unl,unl,Someone is laid back in the armchair.,He\nlsmdc3025_FLIGHT-11972,6045,\"Someone hesitates, her gaze steady on him. She\",\"takes the glass from his hand, and sets it carefully on the nearby table.\",eyes a flat iron.,\"tries to stop, but struggles to remain composed.\",pushes her purse top off as she walks deeper into the salon.,\"undoes the seat belt and gazes calmly toward the glass, then heads over.\",gold1-reannot,pos,unl,unl,unl,pos,\"Someone hesitates, her gaze steady on him.\",She\nanetv_QjMNQxu3Zf8,18528,A woman is brushing her teeth in a bathroom. She,laughs and continues to brush her teeth.,spits the toothpaste on her toothbrush.,is brushing her teeth and beginning to brush her teeth.,uses shaving brushes to shave her leg.,starts brushing her teeth on a toothbrush.,gold0-orig,pos,unl,unl,unl,unl,A woman is brushing her teeth in a bathroom.,She\nanetv_QjMNQxu3Zf8,6744,The lady is in the bathroom brushing her teeth while talking to the camera. The lady,started dancing and laughing then brush her teeth.,brushes her fingers and trims the lady's legs.,picks the girls up and frowns.,attempts to put the glasses back in her mouth and continues to do anything more moves.,puts the toothbrush to her mouth and is now shaving foundation to her ear.,gold0-orig,pos,unl,unl,unl,unl,The lady is in the bathroom brushing her teeth while talking to the camera.,The lady\nanetv_QjMNQxu3Zf8,18529,She laughs and continues to brush her teeth. She then,bends over and spits into a sink.,shows different facial hair.,rubs on her chin and dabs.,is brushing her teeth as well as looking at the tv.,,gold0-orig,pos,unl,unl,unl,n/a,She laughs and continues to brush her teeth.,She then\nlsmdc0043_Thelma_and_Luise-68518,18347,He sees people in the car. Some of the police sharpshooters,are sporting semi - automatic rifles.,explode in the town and the kids flee.,are still trained on their vehicles.,get out of the car's truck and drive away.,are on him behind him.,gold0-orig,pos,unl,unl,unl,unl,He sees people in the car.,Some of the police sharpshooters\nlsmdc0043_Thelma_and_Luise-68518,18346,He can't stop looking. He,sees people in the car.,gets out of bed and stares into it.,\"stands in his seat seat, protectively bent with someone.\",loads a photograph in his raft.,\"looks up at the big window, and smiles.\",gold0-orig,pos,unl,unl,unl,unl,He can't stop looking.,He\nlsmdc0043_Thelma_and_Luise-68518,18345,The helicopter lands behind the row of police cars. He,sees people facing each other.,is hauling on its wheels with waves parked on a 7 - wheeler farm.,sees the roof being blown up by its dead.,falls on the radio.,starts keeping pace with someone.,gold1-orig,pos,unl,unl,unl,pos,The helicopter lands behind the row of police cars.,He\nanetv_-Kmx-BCAsQc,19024,A man on the right takes a photo. The man,swings one leg at a time.,stands filming the man and starts to play a set of drums.,shows how he will play properly.,stands and with the discuss in front of the audience.,in gray hits the red clay.,gold1-orig,pos,unl,unl,unl,pos,A man on the right takes a photo.,The man\nanetv_-Kmx-BCAsQc,19026,The man does a handstand then dismounts. The man,walks away as another walks to the pommel horse.,jumps onto his back and then dismounts.,throws large legs across the court.,laughs and raises his arms as tall others crowd behind him.,performs hula pommel as the woman dismounts.,gold1-orig,pos,unl,unl,pos,pos,The man does a handstand then dismounts.,The man\nanetv_-Kmx-BCAsQc,19023,A man in orange waves then mounts a pommel horse. The man,spins around and around on the pommel horse.,spins it around with the other leg by which then catches his other with his body and catches it.,throws the pole down and ropes the second calf.,does a handstand as the cow shoots throughout the stadium.,spins and kicks the horse.,gold0-orig,pos,unl,unl,unl,pos,A man in orange waves then mounts a pommel horse.,The man\nanetv_-Kmx-BCAsQc,19025,The man swings one leg at a time. The man,does a handstand then dismounts.,gives a cool pistol.,jumps away from backwards.,lets the gray jacket rolls over and knocks it against the wall.,,gold0-orig,pos,unl,unl,unl,n/a,The man swings one leg at a time.,The man\nanetv_EYIYohKR0Qo,10894,Several girls are then shown deep underwater doing a shimmy motion and then back stroking in the pool. One female,\"then begins breast stroking, waves to the camera and then gets out.\",beneath her begins to get ready to play.,is seen holding up a shot and warming up talking to the camera.,swimmer dives into the water to stay on the ball by the audience.,,gold0-orig,pos,unl,unl,unl,n/a,Several girls are then shown deep underwater doing a shimmy motion and then back stroking in the pool.,One female\nanetv_EYIYohKR0Qo,4327,A woman is preparing to dive into a pool. She,goes to the diving board and leans forward.,throws the ball and throws it onto the field.,does the hula hoop.,takes drinks from a bottle.,jumps off the diving.,gold1-orig,pos,unl,unl,unl,pos,A woman is preparing to dive into a pool.,She\nanetv_EYIYohKR0Qo,10893,The screen then flashes between several girls as they prepare to jump dive in the water. Several girls,are then shown deep underwater doing a shimmy motion and then back stroking in the pool.,throw paddles at each other while then swim in the water.,dance in front of the camera as the women continue performing.,are wearing multi 14.,take an aerial drive quickly.,gold1-orig,pos,unl,unl,unl,unl,The screen then flashes between several girls as they prepare to jump dive in the water.,Several girls\nanetv_EYIYohKR0Qo,10892,A young female dressed in a white jersey and purple shorts is standing on the edge of a pool stretching. The screen then,flashes between several girls as they prepare to jump dive in the water.,puts on a blank screen.,stops running up and she is jumping multiple times.,begins to show her giving high fives.,,gold1-orig,pos,unl,unl,unl,n/a,A young female dressed in a white jersey and purple shorts is standing on the edge of a pool stretching.,The screen then\nanetv_EYIYohKR0Qo,4328,She goes to the diving board and leans forward. She,\"jumps into the water, swimming like a fish.\",teaches her how to sweep the rim of the stash so that his knees are frozen with water.,makes a shot and approaches in slow motion.,does a flip backwards throughout the board.,drops the diving ball into the pool.,gold1-orig,pos,unl,pos,pos,pos,She goes to the diving board and leans forward.,She\nanetv_EYIYohKR0Qo,10895,\"One female then begins breast stroking, waves to the camera and then gets out. Two other girls then\",stand side by side on the outside of the pool and jump in together and race to the other side of the pool.,holds up the hoop and places it on the arc hoop.,begin to stand and begin skating together in a game of tug o war.,\"begin taking shots by pushing and leaping, attempting to wind up while performing.\",,gold0-orig,pos,unl,unl,unl,n/a,\"One female then begins breast stroking, waves to the camera and then gets out.\",Two other girls then\nanetv_yvTmIulkl7c,8299,She swings a baton at a small pinata. She,is blindfolded as she continues to swing again and again.,throws it onto the board.,continues swinging the ax as she takes the swing.,cones up her forward lip.,rolls down a slide and falls onto the ground.,gold1-orig,pos,unl,unl,unl,unl,She swings a baton at a small pinata.,She\nanetv_P9qhbSYblG4,1239,A close up is seen of a fancy bowling ball. A man,walks up to a lane with a ball in his hand.,throws a bowling ball across a park.,puts several balls in the cups.,attempts to hit the ball around the lane.,is throwing bowling balls.,gold0-orig,pos,unl,unl,unl,pos,A close up is seen of a fancy bowling ball.,A man\nanetv_P9qhbSYblG4,1240,A man walks up to a lane with a ball in his hand. He,\"throws the ball, knocking down pins.\",suddenly shoots one ball onto the floor and frees it from the air.,\"starts doing the ups, scoop it up and drops it, and rolls into the ball.\",\"spins the hoop, then takes the ball and pins it on the table.\",gets a hit of pins and knocks a man back into the goal.,gold0-orig,pos,unl,unl,unl,unl,A man walks up to a lane with a ball in his hand.,He\nanetv_P9qhbSYblG4,15831,A colorful bowling ball rests in a rack. A boy,bowls strikes down a lane in a bowling alley.,attempts a shot in a circle.,rolls his stick on the ground.,\"sits down on it, holding a silencer then puts his hand on his face.\",is carving a white wall.,gold0-orig,pos,unl,unl,unl,unl,A colorful bowling ball rests in a rack.,A boy\nanetv_GBdj6erXjDM,6366,The girl laughs while trying to eat the ice cream. The girl,licks the ice cream cone with the tip of her tongue.,measures dishes in her bathroom.,splashes into the man's crotch.,nods and comes back towards the monkey bar.,,gold0-orig,pos,unl,unl,unl,n/a,The girl laughs while trying to eat the ice cream.,The girl\nanetv_GBdj6erXjDM,6365,A girl sits in the drivers seat of a car and enjoys a ice cream cone. The girl,laughs while trying to eat the ice cream.,\"and a man walk towards each other, then they talk about the car.\",obscures her nose ice in a hole in an ice cream cone.,puts a cream cone over her lip and continues to fix the flower.,covers her mouth and looks on her ice cream cone.,gold0-orig,pos,unl,unl,unl,pos,A girl sits in the drivers seat of a car and enjoys a ice cream cone.,The girl\nanetv_rG-WlnAoc3M,15466,\"Then, the man cleans again with soap and water the car for the second time. The man\",cleans with a cloth and rinse with water the rims of the car.,dressed while sitting around putting his right hands into a container.,removes the heavy hose of the mop and put it off the washing machine to clean more water.,puts the light on a sink in a lake then clean the corner of the table.,runs a brush underneath in front of the chef's face.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man cleans again with soap and water the car for the second time.\",The man\nanetv_rG-WlnAoc3M,15467,\"The man cleans with a cloth and rinse with water the rims of the car. After, the man\",dry the car manually with a cloth.,cleans the tent and shows his spare tire.,opens the door and walks in the window using his thumb to wipe the drain.,pulls up the dry snow on a black boot and adds other cleaning materials.,put in shirt motion the gopro lawn that keeps detailing him clean.,gold0-orig,pos,unl,unl,unl,unl,The man cleans with a cloth and rinse with water the rims of the car.,\"After, the man\"\nanetv_rG-WlnAoc3M,15465,\"The man rinses the car with water. Then, the man\",cleans again with soap and water the car for the second time.,uses a rug to crawl on the carpet near a tree.,uses a brush to remove the clean water surface.,\"rinse his hands off the water, and dries off the ski wash as he rinses the dogs.\",puts dishes in the sink and pour water.,gold0-orig,pos,unl,unl,unl,unl,The man rinses the car with water.,\"Then, the man\"\nanetv_rG-WlnAoc3M,15464,\"A person wet a car with water, then he puts detergent to the car using a long squeegee. The man\",rinses the car with water.,began painting the insides in the box to make sure it is clean and clean and clean.,takes the wheel off and cleans out its other side.,wipes down the hose with an iron sprayer.,lifts the wash robe off of a chair.,gold0-orig,pos,unl,unl,unl,unl,\"A person wet a car with water, then he puts detergent to the car using a long squeegee.\",The man\nanetv_rG-WlnAoc3M,15468,\"After, the man dry the car manually with a cloth. Next, the man\",\"cleans inside the car, then drives the car.\",puts a piece of cloth over the border of the ski.,takes out his brush and brush and apply the shoe to another man.,puts a rod inside the tools and removes the snowboard under a covered ski container.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the man dry the car manually with a cloth.\",\"Next, the man\"\nanetv__B3Q8bTJWG4,6536,A man rides a horse into an arena. He,jumps off the horse and ties a calf.,use field fruits and snowboard placed.,uses a horse steps.,mounts the horse.,,gold0-orig,pos,unl,unl,unl,n/a,A man rides a horse into an arena.,He\nanetv__B3Q8bTJWG4,6538,He stands up and gets back on his horse. Two people,come and lay the calf down on the arena.,sit at a table having a meal and by moments of shaving the other.,get out of the carriage.,are riding on roller blades.,are coming down the slope with a hose.,gold0-orig,pos,unl,unl,unl,unl,He stands up and gets back on his horse.,Two people\nanetv__B3Q8bTJWG4,6537,He jumps off the horse and ties a calf. He,stands up and gets back on his horse.,starts walking along the aisle towards the horses.,ropes a calf and drops it.,\"jumps down and grabs the calf, then jumps off the horse.\",ties up the calf and ties the calf.,gold0-reannot,pos,unl,unl,unl,unl,He jumps off the horse and ties a calf.,He\nanetv_7DJDUzdw_I4,3913,\"The man then grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd. As he finishes, another person\",approaches the bars as well as a coach.,is seen running in slow motion letting him go by the glider.,builds up arms and blows to kneel.,appears and it stops.,gets off the stage and clapping.,gold0-orig,pos,unl,unl,unl,pos,The man then grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd.,\"As he finishes, another person\"\nanetv_7DJDUzdw_I4,3912,A male African American gymnast is in a large arena full of people preparing for a performance. The man then,grabs the bar and does a series of flips and turns and then jumps off and nods to the crowd.,spins around and lifts his rope to an obstacle in a gym.,begins to lift the bar all around the track and begins performing a gymnastics routine on different uneven bars several more times.,\"performs the number, walks back, and then does a body stand with a repeated bar before landing back on the stage.\",,gold1-orig,pos,pos,pos,pos,n/a,A male African American gymnast is in a large arena full of people preparing for a performance.,The man then\nanetv_LslQvR_4bkk,15239,\"A man practice ice hockey throwing a disc with a stick. Then, the player scores in a game and he\",is congratulated by teammates.,walks back for matches.,changes from the team to start the game.,multiple scores a goal.,,gold0-orig,pos,unl,unl,unl,n/a,A man practice ice hockey throwing a disc with a stick.,\"Then, the player scores in a game and he\"\nanetv_MzqovHjEKE4,6777,A man is seen speaking to the camera and leads into him holding up a tool and pointing to several bushes. The man then,trims along the bush while stopping to speak to the camera and holding up the tool.,begins brushing a person's hair.,puts onto the object and begins cutting the grass around the area.,puts the boy down and begins putting sticks into a paint pan.,moves up and down a fence using a trimmer as well as trimmer.,gold0-orig,pos,unl,unl,unl,pos,A man is seen speaking to the camera and leads into him holding up a tool and pointing to several bushes.,The man then\nanetv_9uieGqu2TYA,6867,\"Various short clips of different men on different parallel bars in gymnasiums are doing handstands, swinging on them and doing various other tricks as spectators look on. The last man on the parallel bars\",seems to be practicing in a gym with no large group of spectators looking on.,wins and lays forward.,is successful and then a second where there is a dirt background.,shows up spinning between jumps in the water.,,gold1-orig,pos,unl,unl,unl,n/a,\"Various short clips of different men on different parallel bars in gymnasiums are doing handstands, swinging on them and doing various other tricks as spectators look on.\",The last man on the parallel bars\nanetv_9uieGqu2TYA,6866,\"A black intro screen appears and it contains white words that say Named Gymnastic Elements Parallel bars, then music: Nightwish Where were you last night, and the last screen includes foreign words an email and a website. Various short clips of different men on different parallel bars in gymnasiums\",\"are doing handstands, swinging on them and doing various other tricks as spectators look on.\",\", front of the firm, and capoeira with different gears.\",\"preparing to break in one different location, with them jumping and just how to do it in the first club.\",having just participating and ends with 2 different people doing different reasons.,dodgeball area either seen spinning during martial arts as well as speaking to the camera is showing more of what he is doing.,gold1-orig,pos,unl,unl,unl,unl,\"A black intro screen appears and it contains white words that say Named Gymnastic Elements Parallel bars, then music: Nightwish Where were you last night, and the last screen includes foreign words an email and a website.\",Various short clips of different men on different parallel bars in gymnasiums\nlsmdc0012_Get_Shorty-53327,16594,\"Someone watches as someone picks up a copy of the script, begins flipping through it. Someone\",\"flips through the script, sees a name.\",sits at a picture of a pack on someone's desk.,\"comes into the apartment, then hands him the cup of coffee.\",\", drops the cardigan in the center of the yard, who in colorful.\",looks touched then smiles again and tilts his head off the set.,gold0-orig,pos,unl,unl,unl,pos,\"Someone watches as someone picks up a copy of the script, begins flipping through it.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4597,Now someone peers through the binoculars. People,ride into the canyon.,is sitting and looming down on the bridge.,approach a nazi cruiser.,catch up beside his stomach.,are running across the street behind them.,gold1-orig,pos,unl,unl,unl,pos,Now someone peers through the binoculars.,People\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4587,\"He just looks at someone, overcome with emotion. Finally, he\",throws his arms around him.,takes another teacup in drinks that will be his next.,begins with someone's new results.,hugs him so that he can take his hands.,walks down the middle of the dance floor.,gold0-orig,pos,unl,unl,unl,unl,\"He just looks at someone, overcome with emotion.\",\"Finally, he\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4596,He lowers the binoculars and turns to someone. Now someone,peers through the binoculars.,addresses a physician who's holding a clipboard.,waits with the grocer on the screen.,fights his way through a soggy loft working in a storm lawn.,stands on a hilltop.,gold1-orig,pos,unl,unl,unl,pos,He lowers the binoculars and turns to someone.,Now someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4588,\"Finally, he throws his arms around him. And he\",becomes aware of his father's embrace.,begins to toss him around and then smooth slapped his shoulder.,\"eyes his face for steady, not speechless.\",\"holds a garment in his hand, without his shirt missing.\",\"makes his break down the gate, squats in front of the giant, ignoring the demon and carries it down the hall.\",gold0-orig,pos,unl,unl,unl,unl,\"Finally, he throws his arms around him.\",And he\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4595,Someone peers through binoculars to see the canyon of the crescent moon. He,lowers the binoculars and turns to someone.,reads his hand covered in mock blood.,lowers it and slithers bree to a cliff.,bends down behind him.,joins his father in the beach outside the door.,gold0-orig,pos,unl,unl,pos,pos,Someone peers through binoculars to see the canyon of the crescent moon.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4586,\"Finally, someone becomes aware of his presence. He just\",\"looks at someone, overcome with emotion.\",stares at the brown hued.,looks back at her and motions for her to escape.,keeps someone's hand among its lifeless surface.,\"stares at her, as if transfixed.\",gold0-orig,pos,unl,unl,unl,pos,\"Finally, someone becomes aware of his presence.\",He just\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4599,Now we turn a corner and they see the hidden city. Its spectacular Grecian facade,is carved directly into the rock.,\"illuminate the tall, metal buildings.\",shows an island of chinese stones.,sits posted outside the massive building.,shows a bright light emanating expertly in the distance.,gold1-orig,pos,unl,unl,unl,pos,Now we turn a corner and they see the hidden city.,Its spectacular Grecian facade\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4585,\"He joins the others at the edge of the cliff, looking down at the wreckage below with a bewildered expression. Finally, someone\",becomes aware of his presence.,walks down the street.,turns away without starting his cold expression.,comes back onto the bridge and runs through the woodland with him.,gets onto his feet and heads into the water.,gold0-orig,pos,unl,unl,unl,unl,\"He joins the others at the edge of the cliff, looking down at the wreckage below with a bewildered expression.\",\"Finally, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4589,And he becomes aware of his father's embrace. He,hugs his father back.,pushes the boy back.,\"kisses the boy still hugging, then kisses him back.\",notices his friends looking at him then reaches out to shovel a pose.,,gold0-orig,pos,unl,unl,unl,n/a,And he becomes aware of his father's embrace.,He\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4593,\"Someone turns and walks toward the horse with people. Suddenly someone, borne on the wind,\",blows into scene and lands at someone's feet.,chases them through a concrete wall.,turns to the shock.,looks down to the precipice.,is water clothes behind him.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns and walks toward the horse with people.,\"Suddenly someone, borne on the wind,\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4591,\"Someone pats someone on the back and someone collapses, sitting hard on the rocky cliff edge. Unaware, people\",start to walk away.,creep up the steep ridge of the rohan one.,are hauled down by other hydra soldiers.,gather around to watch the bomber plow down the cliff.,sit in the pacific - capped river.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone pats someone on the back and someone collapses, sitting hard on the rocky cliff edge.\",\"Unaware, people\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4592,\"Unaware, people start to walk away. Someone\",turns and walks toward the horse with people.,\"dodges a zombie, trying to fend the dancers.\",slowly scoops up the foot of the bed.,grabs a dark piece of shrimp.,watches from a bed.,gold1-reannot,pos,unl,unl,pos,pos,\"Unaware, people start to walk away.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4598,People ride into the canyon. Now we turn a corner and they,see the hidden city.,find an plowing valley west.,look into a state of papers.,stand up through the ministry of magic.,adjust to craggy coastline.,gold0-reannot,pos,unl,unl,unl,unl,People ride into the canyon.,Now we turn a corner and they\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70667,4590,People are moved by this sudden reconciliation. Someone pats someone on the back and someone,\"collapses, sitting hard on the rocky cliff edge.\",slams him into a mass of cave animals.,is at the other end.,gets someone free literature.,grins at him.,gold0-reannot,pos,unl,unl,unl,pos,People are moved by this sudden reconciliation.,Someone pats someone on the back and someone\nanetv_l9mvKfKACio,18346,\"A group of people are outside a ski resort entitled Boulder ridge and they begin to wait in line with their tubes. As they are waiting, they\",can see several people going down the hill and tubing before it is finally their turn.,brace themselves over the vine and begin going across a large wooded path.,go back to the first time who is hard at the altar of their slide.,\"are close together at the same slope, all in the same spot, their riders turn.\",,gold0-orig,pos,unl,unl,unl,n/a,A group of people are outside a ski resort entitled Boulder ridge and they begin to wait in line with their tubes.,\"As they are waiting, they\"\nanetv_l9mvKfKACio,18347,\"As they are waiting, they can see several people going down the hill and tubing before it is finally their turn. Once they reach the bottom, they\",grab their tube and begin to walk off the slope.,change up an lose in the sky above the alien.,\"begin riding down the road, very fast and then can trotting by the bottom of the hill.\",race off an dirt ramp and tear around a staircase that falls behind the big piece of concrete.,begin to climb down the ceiling and move along the road.,gold0-orig,pos,unl,unl,unl,unl,\"As they are waiting, they can see several people going down the hill and tubing before it is finally their turn.\",\"Once they reach the bottom, they\"\nanetv_MlkXsUDCoww,4700,The person pushes the mower along the edge of the grass and throughout the rest of the grass. The man then,grabs a weed wacker and cuts the weeds along the edge.,cuts out more plants and begins to step up what he just done when the dog returns to skateboarding in a field of grass.,finishes his the mower and begins mowing the lawn and ending up mowing the lawn.,scoops the person in front and lights the blade while trimming the exterior of the bushes.,,gold0-orig,pos,unl,unl,unl,n/a,The person pushes the mower along the edge of the grass and throughout the rest of the grass.,The man then\nanetv_MlkXsUDCoww,4699,A person is seen pushing a lawn mower all across the yard. The person,pushes the mower along the edge of the grass and throughout the rest of the grass.,continues decorating around the tree while still in the grass.,continues shoveling along the yard while the camera captures his movements.,waves to the camera and pushes the mower all around the yard.,turns around while the camera captures them play.,gold1-orig,pos,unl,unl,unl,unl,A person is seen pushing a lawn mower all across the yard.,The person\nanetv__vVKdZM5Cy8,15007,A man is shown holding a volleyball talking to the camera and leads into showing various jumps. He,continues talking to the camera and moving around the gym hitting the ball.,has trouble jumping up and down in a circle.,continues pushing the horse back and fourth while the man continues to speak to the camera.,is seen again performing a cheer in slow motion thrown in the end as well as clips on playing tennis.,,gold1-orig,unl,unl,unl,unl,n/a,A man is shown holding a volleyball talking to the camera and leads into showing various jumps.,He\nanetv_5gBRDguUe8U,16433,A person is seen sitting on a stool and piecing together several parts of a bike. The person,continues piecing the bike together and pans around the finished product in the end.,begins moving its tail all around and ends by jumping off of the roof and looking to the camera.,is seen separating the ice with a machine and holding it up to create a product.,leads him along a rope while moving back and fourth to the chain and work.,continues jumping over the top of the tire.,gold0-orig,pos,unl,unl,unl,unl,A person is seen sitting on a stool and piecing together several parts of a bike.,The person\nlsmdc3015_CHARLIE_ST_CLOUD-696,9327,\"He quietly opens the driver's side door and gets behind the wheel. As he starts the engine, the headlights\",reveal someone standing in his path.,moves the limousine reverses away.,tap the right of the car.,are out in the plain.,shine outside one of the extravagantly beautiful logos.,gold0-orig,pos,unl,unl,unl,unl,He quietly opens the driver's side door and gets behind the wheel.,\"As he starts the engine, the headlights\"\nlsmdc3015_CHARLIE_ST_CLOUD-696,9325,\"He hops down to the Splendid Splinter which sits with its sails lowered, then jumps down to the shadowy driveway. Creeping alongside the house, he\",makes his way to the family car.,climbs out someone's craning 2 door.,finds the brown - cat path inside the mansion.,gazes out of the window.,,gold0-orig,pos,unl,unl,unl,n/a,\"He hops down to the Splendid Splinter which sits with its sails lowered, then jumps down to the shadowy driveway.\",\"Creeping alongside the house, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-696,9322,\"As the boy obeys, their mother comes out in scrubs. She\",runs after a bus.,walks out of the room with her leg raised.,spits water from the t - board.,offers them some cash on the door.,waves more to the sisters than the man inside.,gold1-orig,pos,unl,unl,pos,pos,\"As the boy obeys, their mother comes out in scrubs.\",She\nlsmdc3015_CHARLIE_ST_CLOUD-696,9326,\"Creeping alongside the house, he makes his way to the family car. He\",quietly opens the driver's side door and gets behind the wheel.,takes it as the bus rumbles.,waits by the door where someone and someone sit aside and stare at the open door above.,\"notices the abandoned money on a desk and starts for it, driving it in the center of the room.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Creeping alongside the house, he makes his way to the family car.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-696,9329,\"Someone glares, then begrudgingly beckons his younger brother. He\",gets into the car beside him.,shakes one cell in his shirt.,turns to a sitting audience.,punches someone in the face.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone glares, then begrudgingly beckons his younger brother.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-696,9328,\"As he starts the engine, the headlights reveal someone standing in his path. He\",\"wears a red sox jacket, his mitt, and a giant foam finger.\",leads them back out to the road.,\"stares down, observing the ltd of the serpentine height.\",is lying on top of another couch.,stays on the helicopter before reaching the shore of the warehouse.,gold0-reannot,pos,unl,unl,unl,unl,\"As he starts the engine, the headlights reveal someone standing in his path.\",He\nanetv_ZXlJIrRiXrA,14032,\"He continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it. He\",picks it up to show off to the camera.,walks over to the decorated and slides it hand fish through the opening.,pulls the slices of a piece from the hole and tosses it on the wall.,begins lying on top and that you're by summoning a lunge and hitting the board.,holds up his right hand again and takes down more wooden objects attached to the rope.,gold0-orig,pos,unl,unl,unl,unl,\"He continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it.\",He\nanetv_ZXlJIrRiXrA,14031,A man is pulling something up from a hole in the snow as he appears to be fishing. He,\"continues pulling a long rope up from the hole until finally, a large fish is revealed at the end of it.\",retrieves the fishing fish from the fishing hole in the hole.,swims in the water.,walks up to remove a thread out of a can.,jumps up and puts the rope in his hole.,gold0-orig,pos,unl,unl,pos,pos,A man is pulling something up from a hole in the snow as he appears to be fishing.,He\nanetv_ZXlJIrRiXrA,14030,A nice show is a snowy landscape is shown with a campsite right along the tree line. A man,is pulling something up from a hole in the snow as he appears to be fishing.,is going down raking the driveway in a backyard then is shown using a large tree and mulch together on a tree.,is seen standing around a dirt cutting field pushing the trimmer on top.,is watching the author with a trophy.,,gold0-orig,pos,unl,unl,pos,n/a,A nice show is a snowy landscape is shown with a campsite right along the tree line.,A man\nanetv_ZXlJIrRiXrA,18642,A view is seen of snow covered ground and people on the ice. A man,sets up a fishing line in a hole in a lake.,drives a car with a cardboard bar and drinks from the glass.,pushes a man who emerges in a big parking environment.,stands up and begins to ride a stationary bike in the woods.,\"is demonstrating how to drive his skateboard, tricks while different skateboards under his stilts.\",gold0-orig,pos,unl,unl,unl,unl,A view is seen of snow covered ground and people on the ice.,A man\nanetv_ZXlJIrRiXrA,18643,A man sets up a fishing line in a hole in a lake. He then,pulls a fish through the hole.,focuses on the mixes and ends by demonstrating how to use a waterfall.,cleans the river bowl he takes the tarp and folds it around it.,uses a cutter to spread over the tile.,,gold0-orig,pos,unl,unl,unl,n/a,A man sets up a fishing line in a hole in a lake.,He then\nanetv_s1E6EKs1MZw,11372,A man in a gorilla suit is playing a saxophone in the middle of a store. The employees,look on and laugh at the person playing and use their phones to take pictures.,are gathering at the cordon.,join an audience in front of a crowd of people watching the man in all of them.,continue to cheer and holding a microphone.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a gorilla suit is playing a saxophone in the middle of a store.,The employees\nanetv_s1E6EKs1MZw,11373,The employees look on and laugh at the person playing and use their phones to take pictures. The gorillas reaches out to grab one of the employees hands and the man,is very embarrassed by it.,squats over in their pocket facing one another.,begins out of the situation lather up.,is not even celebrating.,,gold0-orig,pos,unl,unl,unl,n/a,The employees look on and laugh at the person playing and use their phones to take pictures.,The gorillas reaches out to grab one of the employees hands and the man\nanetv_s1E6EKs1MZw,11375,They talk to each other a bit and the other employees begin to clap excitedly. The Gorilla suit man,plays the sax some more as everyone is still laughing.,points to the harmonica and they go in.,continues in the blackness of licking them and withdrawing the song.,is playing a humvee.,begins scrubbing the tango.,gold0-orig,pos,unl,unl,unl,unl,They talk to each other a bit and the other employees begin to clap excitedly.,The Gorilla suit man\nanetv_s1E6EKs1MZw,11374,The gorillas reaches out to grab one of the employees hands and the man is very embarrassed by it. They talk to each other a bit and the other employees,begin to clap excitedly.,do hands with the middle men by the table.,begin to congratulate him.,than begin to live.,shake does not leave.,gold1-orig,pos,unl,unl,unl,unl,The gorillas reaches out to grab one of the employees hands and the man is very embarrassed by it.,They talk to each other a bit and the other employees\nanetv_s1E6EKs1MZw,11376,The Gorilla suit man plays the sax some more as everyone is still laughing. He,plays and plays to the camera as the video comes to an end.,follow someone's gaze as he notices conductor - white dog trick behind them.,\"comes out of the room, right by a ring of glittery juice.\",opens the box album to jam his revolver and put him to the fire.,,gold0-orig,pos,unl,unl,unl,n/a,The Gorilla suit man plays the sax some more as everyone is still laughing.,He\nanetv__XRJk2oFwZw,6438,\"The fielders on the side field are waiting to guard the ball and prevent the batter from making runs. After the bowler causes batter get out by hitting the stumps behind him, the entire team\",cheers for their runs.,goes into a wrong corner of the circle.,heads towards the teams.,hits the children surfboard.,runs up a platform.,gold1-orig,pos,unl,unl,unl,unl,The fielders on the side field are waiting to guard the ball and prevent the batter from making runs.,\"After the bowler causes batter get out by hitting the stumps behind him, the entire team\"\nanetv__XRJk2oFwZw,6436,The bowler from the blue teams hits an overhand ball to the batter. The bowler,raises his hand to claim that the batter has not made a run.,\"runs and goes on his bagpipe, while stretching.\",lets the ball throw on the teammates and scores.,reaches for the pole.,,gold0-orig,pos,unl,unl,pos,n/a,The bowler from the blue teams hits an overhand ball to the batter.,The bowler\nanetv__XRJk2oFwZw,6437,The bowler raises his hand to claim that the batter has not made a run. The fielders on the side field,are waiting to guard the ball and prevent the batter from making runs.,is turning to catch into the crowd.,\"are bleeding, showing a appearance to slow down and talking about the game.\",are also sprinting perfect.,shakes the ball and goes to it successfully before turning hunter again and stops it again.,gold0-orig,pos,unl,unl,unl,unl,The bowler raises his hand to claim that the batter has not made a run.,The fielders on the side field\nanetv__XRJk2oFwZw,6441,The blue team continues playing as the bowler bowls more overhand balls to the batter. The batter then walks out and another batter from his team,comes on the field while the blue team waits to start another round.,hits the finished goal.,hits on a bar.,blows on the cricket and volleys one in through the scores.,,gold0-orig,pos,unl,unl,unl,n/a,The blue team continues playing as the bowler bowls more overhand balls to the batter.,The batter then walks out and another batter from his team\nanetv__XRJk2oFwZw,6439,\"After the bowler causes batter get out by hitting the stumps behind him, the entire team cheers for their runs. The bowler bowls an overhand again to the batter and the batter\",hits it straight across.,is shot and scores.,hits the outdoor ball.,knocks the other man away.,misses off hitting but bounce about it.,gold1-orig,pos,unl,unl,unl,pos,\"After the bowler causes batter get out by hitting the stumps behind him, the entire team cheers for their runs.\",The bowler bowls an overhand again to the batter and the batter\nanetv__XRJk2oFwZw,20034,A small group of people are seen standing around an indoor gym playing a game of crochet with one another. The people,continue playing with one another as they hit the ball and run around and walk away in the end.,are seen performing hockey on the sideline while a man in the back speaks.,continue riding around one another while others watch on the side.,continue with their hands and move around with one another while the camera follows.,continue to play without stopping and stopping and pointing to one another.,gold1-orig,pos,unl,unl,unl,pos,A small group of people are seen standing around an indoor gym playing a game of crochet with one another.,The people\nanetv__XRJk2oFwZw,6440,\"Again when the bowler hits an overhand, the batter tries to run to make a run but is stopped by the fielders who hit the ball on the stumps. The blue team\",continues playing as the bowler bowls more overhand balls to the batter.,is kicking a ball across the field in front of the girls who lowered them to the wall.,in the white shirt go the ball and runs and bounces his stick over the net.,scores as the boys continue to play and the judge watch the game and see him at the sport.,struggles to bend to catch his ball to the other.,gold0-reannot,pos,unl,unl,unl,unl,\"Again when the bowler hits an overhand, the batter tries to run to make a run but is stopped by the fielders who hit the ball on the stumps.\",The blue team\nanetv__XRJk2oFwZw,6434,There are two teams playing cricket in an indoor cricket field that is covered by net on two sides. The two teams,are represented by blue color and white color.,play against each other while someone volleys the ball on the wall.,are playing volleyball as they march slowly.,stand in the field to celebrate with each other.,,gold0-reannot,pos,unl,unl,pos,n/a,There are two teams playing cricket in an indoor cricket field that is covered by net on two sides.,The two teams\nanetv_O5vpeIfQxLQ,8509,The graphic Ice Cream Eating Competition appears on screen. Three people,are eating ice cream out of cups with their fingers.,\"cheer doing jump, trying to score.\",standing on a track celebrating are sitting on the rink.,are inside badminton at a track.,,gold0-orig,pos,unl,unl,unl,n/a,The graphic Ice Cream Eating Competition appears on screen.,Three people\nanetv_O5vpeIfQxLQ,10008,A man eats ice cream with his hands while a girl eating ice cream next to him watches and laughs. A woman on the man's other side,is also eating ice cream with her hands.,shows his finger around buckbeak's neck and holding the ice cream.,is holding a red napkin once he is carried away.,flips him a watermelon five.,,gold0-orig,pos,unl,pos,pos,n/a,A man eats ice cream with his hands while a girl eating ice cream next to him watches and laughs.,A woman on the man's other side\nanetv_O5vpeIfQxLQ,8510,Three people are eating ice cream out of cups with their fingers. The woman on the far end,\"finishes hers first, followed by the other two.\",put their glasses on the mouths of a man up on the bottom of the cross.,is being turned in the machine.,gather up and spits her teeth into her mouth.,is a red bottle of a green muzzle.,gold0-orig,pos,unl,unl,unl,unl,Three people are eating ice cream out of cups with their fingers.,The woman on the far end\nanetv_O5vpeIfQxLQ,10009,A woman on the man's other side is also eating ice cream with her hands. Another woman,watches as they each hold up their empty cup.,\"is shown in the kitchen wearing her skin with noodles, and standing shaking brown cream, little cake is around small ice cream and\",is already licking the ice cream out with the hose.,is standing on the side of the court with a small residue in a green center as other other colored balls in a photo.,takes her sunglasses off her eye and shoots them in the eye.,gold0-orig,pos,unl,unl,unl,unl,A woman on the man's other side is also eating ice cream with her hands.,Another woman\nanetv_O5vpeIfQxLQ,8511,Credits animate on the screen. The collage,reappears with the end on it.,wipes water before his eyes as he speaks.,\"stands petals and flowers, items tied back and forth across a shed, beyond the house.\",demonstrates taking tips to hold incredible extensions.,,gold1-reannot,pos,unl,unl,unl,n/a,Credits animate on the screen.,The collage\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6714,\"People are on the porch of the new house, with someone lined up before them. Someone\",is standing in front of his big black town car.,sits glumly on a curb.,raises a fist to her lips.,\"holds over a large, creepy cat.\",,gold0-orig,pos,pos,pos,pos,n/a,\"People are on the porch of the new house, with someone lined up before them.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6717,\"His rent collector, someone, is talking, pointing to maps spread out on the desk. A buzzer is heard, and someone\",snaps on the dictaphone on his desk.,sits hunched in a chair near the sofa.,gets into her car.,tries on the broke.,,gold1-orig,pos,unl,unl,unl,n/a,\"His rent collector, someone, is talking, pointing to maps spread out on the desk.\",\"A buzzer is heard, and someone\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6705,\"People, assisted by three of someone children, are carrying out the last of the furniture. The family\",\"consists of someone, his wife and four kid of various ages, from two to ten.\",strolls out with a towel wrapped while one player places the bottle down.,is drunkenly getting into the car.,cuts put down their embroidery to watch.,,gold1-orig,pos,unl,unl,unl,n/a,\"People, assisted by three of someone children, are carrying out the last of the furniture.\",The family\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6706,\"The family consists of someone, his wife and four kid of various ages, from two to ten. People\",are helping someone move.,acknowledge someone with ease.,follow him as he holds the cash in his palm.,do a butterfly party dancing in front of a large green sheet.,sit with someone on the street taking pictures.,gold0-orig,pos,unl,unl,unl,unl,\"The family consists of someone, his wife and four kid of various ages, from two to ten.\",People\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6709,\"In front of one of the miserable shacks that line the street are two vehicles. One of them is someone's rickety car, and the other\",is an even more rickety truck piled high with household goods.,stuff in the road on it.,\"is flat - blanketed, only by an adult's.\",\"has a snow counter, suites on and now at school a small, grassy crust.\",cars quickly carrying someone and luggage to a mailbox outside the zoo.,gold0-orig,pos,unl,unl,unl,unl,In front of one of the miserable shacks that line the street are two vehicles.,\"One of them is someone's rickety car, and the other\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6716,\"Someone cross themselves, shaking hands all around. His rent collector, someone,\",\"is talking, pointing to maps spread out on the desk.\",is carried behind him.,overlooks the busy city and following someone and travels fast through the city streets.,appears in the doorway of someone's closet.,\"writes on the tip of his wand, his fingers terrified.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone cross themselves, shaking hands all around.\",\"His rent collector, someone,\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6713,It has the promise when built up of being a pleasant little middle class section. People,\"are on the porch of the new house, with someone lined up before them.\",\"are done her school, sits at the bottom of a floating bar, looking off, sadly.\",move slowly towards the others and each going down the dark without seeing to watch.,are shown inside a house using a wooden frame to hit a concrete using the hoop.,,gold0-orig,pos,unl,unl,unl,n/a,It has the promise when built up of being a pleasant little middle class section.,People\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6715,\"His wife, in the car, is a very attractive, sophisticated - looking lady, dripping with furs and jewels. Someone\",is watching someone across the street.,advances and are both escorted by the police.,gives him a hug then peers out.,\"has someone in a bikini, watching the music.\",comes to her makeup mirror.,gold0-orig,pos,unl,unl,unl,unl,\"His wife, in the car, is a very attractive, sophisticated - looking lady, dripping with furs and jewels.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6707,About a dozen neighbors crowd around. Someone,\"gets in the front seat of the car, with the baby in her arms.\",crashes into the seemingly shooting second.,jumps on her back.,turns a gaze off someone.,indicating to the rich man.,gold0-orig,pos,unl,unl,unl,unl,About a dozen neighbors crowd around.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6711,\"The rickety caravan starts off down the street, to the cheers of the neighbors. The kids\",\"enter, with screams of delight.\",are belly duty on the island.,\"do the fist, turn as they arrive.\",get up and hold up for their services.,are watching from the volume of children's panic.,gold0-orig,pos,unl,unl,unl,unl,\"The rickety caravan starts off down the street, to the cheers of the neighbors.\",The kids\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6712,\"The kids enter, with screams of delight. It\",has the promise when built up of being a pleasant little middle class section.,starts to wander up and away from the people.,manages to crawl away from the tiger.,fires some of the students.,,gold0-reannot,unl,unl,unl,unl,n/a,\"The kids enter, with screams of delight.\",It\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6710,\"One of them is someone's rickety car, and the other is an even more rickety truck piled high with household goods. The rickety caravan\",\"starts off down the street, to the cheers of the neighbors.\",throws doll - like wood properly can they participate in circles.,repeats the moves in one solitary moment.,fly over her from the porch.,carry the piglets on their heads.,gold0-reannot,pos,unl,unl,unl,unl,\"One of them is someone's rickety car, and the other is an even more rickety truck piled high with household goods.\",The rickety caravan\nlsmdc0014_Ist_das_Leben_nicht_schoen-54721,6708,\"Someone gets in the front seat of the car, with the baby in her arms. The family goat\",gets in the back seat with the three kids.,stands on either side of the elevator.,stands on a residential street by a mini back door.,crosses the room and heads for someone's friends as they enter the house.,,gold1-reannot,pos,unl,pos,pos,n/a,\"Someone gets in the front seat of the car, with the baby in her arms.\",The family goat\nanetv_5kmGgH4xFW0,18070,\"Two people from the group are dressed in winter gear, go down the slope in their tubes. The other two group members\",follow them in their tubes as they go down the mountain slope.,canoe down some water hill and while on their snowboard mounted on top while a man in blue follows behind.,\"race around a small cricket area, where a lot of kids wait behind in the white car.\",stand up off the wall to a profound time a time machine.,shake their hands while the baby and their mother then talk for the time.,gold0-orig,pos,unl,unl,unl,unl,\"Two people from the group are dressed in winter gear, go down the slope in their tubes.\",The other two group members\nanetv_5kmGgH4xFW0,18071,The other two group members follow them in their tubes as they go down the mountain slope. The group members,enjoy themselves in the tubes are the go downhill.,steer the animals as a man pushes them up the hill.,are shown snowboarding out of the first hole over a ski slope.,float along the hill and smoke rings in the sky.,are wearing glasses watching the camels stretch out to the parking lot.,gold1-orig,pos,unl,unl,unl,unl,The other two group members follow them in their tubes as they go down the mountain slope.,The group members\nanetv_5kmGgH4xFW0,15212,They get into intertubes they carried to the top. They then,slide down the hillside in the intertubes.,take off skis under the waterfall.,wave after them as they finish their lesson.,slide putting on obstacles on a sidewalk.,ripple over the hill.,gold0-orig,pos,unl,unl,unl,unl,They get into intertubes they carried to the top.,They then\nanetv_5kmGgH4xFW0,18074,The snowy mountain slopes have several other tubers enjoying themselves as they go down the slopes. The group,shares a picture of themselves standing next to their snow tubes at the bottom of the mountain slope.,lift up a cloister that gets pushed up to the mountain and weeps over it by walking a ramp and doing another super speed removal,lanky tubes on tubes slowly down slope.,\"sits around in snowslides and paddles off, still trying to stay afloat.\",is holding onto a tube as it has the tubes.,gold1-orig,pos,unl,unl,unl,pos,The snowy mountain slopes have several other tubers enjoying themselves as they go down the slopes.,The group\nanetv_5kmGgH4xFW0,18072,The group members enjoy themselves in the tubes are the go downhill. They,share some pictures of their tubing adventure.,\"sit down while the tubes raft over ramps, falling into their feet and reaching the edge.\",are riding in a dimly - bmx country paddling and performing how to stay in the water.,begin to race faster as they go around the tree.,,gold0-orig,pos,unl,unl,unl,n/a,The group members enjoy themselves in the tubes are the go downhill.,They\nanetv_5kmGgH4xFW0,18073,They share some pictures of their tubing adventure. The snowy mountain slopes,have several other tubers enjoying themselves as they go down the slopes.,breaks open in the mountain river in balmoral and stop a skier car on a slope fast the hill.,is a network of trees.,\"drifts up another high, snow covered hill.\",is lined with white squares and mountains are shown at a distance.,gold0-reannot,pos,unl,unl,unl,unl,They share some pictures of their tubing adventure.,The snowy mountain slopes\nanetv_5kmGgH4xFW0,15211,A couple of people are on the top of a snowy hill. They,get into intertubes they carried to the top.,are in a walking green cloud of smoke.,begin chasing a ball down the track.,are performing ski resort riding down a hill.,are large boarding down water and riding down a hill.,gold1-reannot,pos,unl,unl,unl,unl,A couple of people are on the top of a snowy hill.,They\nanetv_tT7ljH8GCl8,12130,We get a first hand view of the person's lawn being mowed as they turn and push the mower all over. The man's face,is shown just before he turns off the camera.,is shown again before returning to the vacuum.,is lit with sweat from an old wooden patio.,is shown again with the child jumping down into the snow as the man stops the mower.,stops by a quiet child at the side of the road.,gold0-orig,pos,unl,unl,unl,unl,We get a first hand view of the person's lawn being mowed as they turn and push the mower all over.,The man's face\nanetv_tT7ljH8GCl8,12128,A lawnmower is outside next to a line of round rocks. A person,starts the mower and begins pushing it alongside the rock border.,takes a blower in a man.,is along a ground looking man standing on a row next to a yellow hedges.,is standing on top something on a brown board.,is putting on the top of he bush.,gold0-orig,pos,unl,unl,unl,unl,A lawnmower is outside next to a line of round rocks.,A person\nanetv_tT7ljH8GCl8,12129,A person starts the mower and begins pushing it alongside the rock border. We,get a first hand view of the person's lawn being mowed as they turn and push the mower all over.,\"catch the mower and grab a bow, where the man started.\",are holding loads of the frisbee playing the game.,see a hole in the tree.,get out and the waves are placed on the ocean.,gold0-orig,pos,unl,unl,unl,unl,A person starts the mower and begins pushing it alongside the rock border.,We\nlsmdc0021_Rear_Window-58644,10498,She listens a moment to the songwriter's melody. She,\"comments on it to the songwriter, who starts from the beginning again, playing it more fully.\",\"grins at someone, who freezes.\",glares tearfully at her own phone.,moves her head downward and shifts her disappointed gaze.,\"walks slowly to the jeep, peering through the paddle into the auditorium.\",gold0-orig,pos,unl,unl,unl,unl,She listens a moment to the songwriter's melody.,She\nlsmdc0021_Rear_Window-58644,10518,He piles these on the beds. Someone,lowers the camera quickly.,unrolls a plumed captive.,peeks into the deserted area.,continue as the rough alien appears at the ground below them.,fixes his sober glance on someone.,gold0-orig,pos,unl,unl,unl,unl,He piles these on the beds.,Someone\nlsmdc0021_Rear_Window-58644,10510,\"He lowers the lens, and we see someone's eyes travel across the screen, as he imagines someone's progression. Then sharpening his look, he\",\"picks up the long - focus lens, and easing himself back cautiously, begins watching someone.\",remembers giving the sword to someone.,takes a last breath and hits the neon switch.,smooths his outline across the boys' porch.,soars over the clerk's surface to cover his mouth.,gold0-orig,pos,unl,unl,unl,unl,\"He lowers the lens, and we see someone's eyes travel across the screen, as he imagines someone's progression.\",\"Then sharpening his look, he\"\nlsmdc0021_Rear_Window-58644,10495,\"Someone lowers the long - focus lens, and turns his head to the right as he hears the first notes of the songwriter's melody which we have heard him trying to complete. He\",\"is in black tie, and from the looks of the apartment he is preparing for guests.\",\"goes to tiptoe toward the public telephone, then holds on to each other, frowning it at him as he lands.\",\"begins to spring back to the gallery on the side of the mountain echoing in, more relaxed.\",whispers to someone again.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone lowers the long - focus lens, and turns his head to the right as he hears the first notes of the songwriter's melody which we have heard him trying to complete.\",He\nlsmdc0021_Rear_Window-58644,10480,The sun has just set. We,follow the basket down to the yard which brings someone's apartment into view.,\"coming into flies, nearly nine from us.\",\"is gathering on the winter, so if the courtyard of the waterfront is being shown.\",\"are inside, driving around the wrecked daytime.\",is taking a marker.,gold1-orig,pos,unl,unl,unl,unl,The sun has just set.,We\nlsmdc0021_Rear_Window-58644,10485,\"Satisfied, she takes off the glasses, and examines her face as a whole, through squinting eyes. Her hair - do makes her\",seem middle - aged.,turn down even more than she just can.,sticky turn to move her dark hair to a french braid and braid.,\"braid down and over her hair, looks at someone.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Satisfied, she takes off the glasses, and examines her face as a whole, through squinting eyes.\",Her hair - do makes her\nlsmdc0021_Rear_Window-58644,10489,\"Putting the glass down, she squints to see if she has disturbed the lipstick. Unable to see clearly, she\",\"puts on the glasses again, looks, and touches up her lips slightly.\",is directly - - in her twenties.,moves to the kitchen and takes a sip of tea.,\"smiles, then carves and examines the page.\",is warmly left by a minute someone.,gold0-orig,pos,unl,unl,unl,unl,\"Putting the glass down, she squints to see if she has disturbed the lipstick.\",\"Unable to see clearly, she\"\nlsmdc0021_Rear_Window-58644,10486,Her hair - do makes her seem middle - aged. She,\"has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing.\",turns her body from the harpsichord and clutches her thighs.,\"goes to the door, amazed at this topic.\",looks for some goods then reaches into a bag and bends over to pick it up.,,gold0-orig,pos,unl,unl,pos,n/a,Her hair - do makes her seem middle - aged.,She\nlsmdc0021_Rear_Window-58644,10494,\"Then she leaves the apartment, with a show of determination. She\",turns out the lights behind her.,\"leans backward, peering through the helicopter's open window.\",pulls out a baking sheet of paper.,lies on a towel on his desk where her legs are bent.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then she leaves the apartment, with a show of determination.\",She\nlsmdc0021_Rear_Window-58644,10493,\"She goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off. Then she\",\"leaves the apartment, with a show of determination.\",widens the eyes of a glass scraping into the door.,starts to drink the drink.,\"closes it, creating the menacing bottle for set.\",,gold0-orig,pos,unl,pos,pos,n/a,\"She goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off.\",Then she\nlsmdc0021_Rear_Window-58644,10520,\"He picks up the phone and dials a number, still keeping his eyes on someone. The phone\",\"buzzes on filter, then is picked up and answered by a woman.\",rests after the receiver.,starts to fall again.,is now falling from its wake.,laughs on a phone.,gold1-orig,pos,unl,unl,unl,unl,\"He picks up the phone and dials a number, still keeping his eyes on someone.\",The phone\nlsmdc0021_Rear_Window-58644,10483,\"He turns, and we see him raise the long - focus camera to his eye. The long - focus lens\",brings someone into an enlarged picture which reveals details we have not previously noticed.,\"comes onto the page, seems to draw on his skin, still close to cedar.\",is held up to his ear as the crowd begins to play.,chalk beside us and leaves his gaze shadowy pierce its small opening in his right eye and hand.,\"backs from view, his eyes glowing.\",gold0-orig,pos,unl,unl,unl,unl,\"He turns, and we see him raise the long - focus camera to his eye.\",The long - focus lens\nlsmdc0021_Rear_Window-58644,10490,\"Unable to see clearly, she puts on the glasses again, looks, and touches up her lips slightly. She\",\"puts her glasses in a handbag, then stands to put out the lights.\",keeps talking as the gorilla scowls at her.,pushes the armoire forward and puts it on the rod.,\"breaks the spoon in the pitcher and picks the lemon to her mouth, then presents it to him.\",takes a business card from his pocket.,gold1-orig,pos,unl,unl,unl,unl,\"Unable to see clearly, she puts on the glasses again, looks, and touches up her lips slightly.\",She\nlsmdc0021_Rear_Window-58644,10481,\"She seems to be putting on the final touches of her make - up, prior to going out. She\",\"is wearing a kelly green suit, and is seated at her dressing table.\",\"walks to a rack, then goes down it and uses her hands to wipe down each section of the aisle.\",is just closing with quick braiding the chain.,is trying to make some escape but conclude is trapped in the pools of a dome.,moves closer to the removal truck and looks ahead.,gold0-orig,pos,unl,unl,unl,unl,\"She seems to be putting on the final touches of her make - up, prior to going out.\",She\nlsmdc0021_Rear_Window-58644,10503,He quickly raises his long - focus camera to his eye. We,are now given a waist - high shot as the focus is adjustment by someone.,\"relax to be closer, her phone cracks.\",pass the other side.,turns slowly towards her and puts a hand on his lips.,continues to help someone run away.,gold0-orig,pos,unl,unl,unl,unl,He quickly raises his long - focus camera to his eye.,We\nlsmdc0021_Rear_Window-58644,10502,She nervously looks at a couple of men passers by. He quickly,raises his long - focus camera to his eye.,arcs dark clothing for his dining area.,puts another notebook in podiums.,\"bows his head, looking down to the night story window.\",,gold0-orig,pos,unl,unl,unl,n/a,She nervously looks at a couple of men passers by.,He quickly\nlsmdc0021_Rear_Window-58644,10487,\"She has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing. She\",\"reaches for a tall glass of liquor next to her, and takes a long drink.\",is running up through others.,\"is gorgeous and fashionable, the beauty which remain is rubber on her well - muscled hair.\",\"opens and corpulent she comes out, rubs her head on her hand as she enters, and picks up a red cellphone.\",stumbles to her doorway.,gold1-orig,pos,unl,unl,unl,pos,\"She has faded good looks, has fairly nice clothes, but is badly in need of advice on hair dressing.\",She\nlsmdc0021_Rear_Window-58644,10513,\"As he hesitates, we are able to see the cardboard box he is carrying has the name of a laundry on it. He\",enters the apartment turns on the living room lights.,is talking to the wall fast.,\"looks at him, then: slowly.\",\"glances back, as if to make it into his pocket.\",comes onto the screen.,gold1-orig,pos,unl,unl,unl,unl,\"As he hesitates, we are able to see the cardboard box he is carrying has the name of a laundry on it.\",He\nlsmdc0021_Rear_Window-58644,10517,\"Then he goes to the dresser, and instead of putting the laundry away, he proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc. He\",piles these on the beds.,goes out into a vast room of water.,reveals a old result of a pal with bright sunlight.,\"heaves a hole, as he opens the envelope.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Then he goes to the dresser, and instead of putting the laundry away, he proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc.\",He\nlsmdc0021_Rear_Window-58644,10515,A number of suits and top coats are lying on an orderly pile on the bed. He,takes the laundry out of the box and puts in on the bed next to the suits.,props up his pistol and runs and polish them.,dances along on the radio.,picks up the sorting hat and carries it to a bag.,,gold0-orig,pos,unl,unl,unl,n/a,A number of suits and top coats are lying on an orderly pile on the bed.,He\nlsmdc0021_Rear_Window-58644,10504,We are now given a waist - high shot as the focus is adjustment by someone. The figure,is that of someone.,is david close to someone.,wears a red polo outfit.,of an agent in a silver train jump.,stops and slips his hand out.,gold1-orig,pos,unl,unl,unl,pos,We are now given a waist - high shot as the focus is adjustment by someone.,The figure\nlsmdc0021_Rear_Window-58644,10492,\"She walks into the living room, finishing the drink. She\",\"goes straight for a bottle of liquor, and pours out a final neat slug, and tosses it off.\",takes the shrimp out of the cup and puts it on the table.,studies the envelope in her hand.,tosses her popcorn on the floor.,\"heads to the front door, with her shoulders hunched.\",gold0-orig,pos,unl,unl,unl,pos,\"She walks into the living room, finishing the drink.\",She\nlsmdc0021_Rear_Window-58644,10514,\"He proceeds to the bedroom, and the lights go on there. A number of suits and top coats\",are lying on an orderly pile on the bed.,are parked near him.,run into a building in a dancing room.,slide out of the mall.,hang on a wall covered in netting.,gold0-orig,pos,unl,unl,unl,pos,\"He proceeds to the bedroom, and the lights go on there.\",A number of suits and top coats\nlsmdc0021_Rear_Window-58644,10488,\"She reaches for a tall glass of liquor next to her, and takes a long drink. Putting the glass down, she\",squints to see if she has disturbed the lipstick.,takes the drink and drinks a glass of milk.,steps out from the window.,taps one window and sits down on the edge of the counter.,opens a slim tee - wrapped umbrella and heads to the car.,gold0-orig,pos,unl,unl,unl,pos,\"She reaches for a tall glass of liquor next to her, and takes a long drink.\",\"Putting the glass down, she\"\nlsmdc0021_Rear_Window-58644,10482,\"Someone looks down, he smiles to himself. He turns, and we\",see him raise the long - focus camera to his eye.,gaze up over the rippling surface of his thin dark ceiling.,can see it a second later.,see that he's here.,see tears from the sun deep in her eyes.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks down, he smiles to himself.\",\"He turns, and we\"\nlsmdc0021_Rear_Window-58644,10516,\"He takes the laundry out of the box and puts in on the bed next to the suits. Then he goes to the dresser, and instead of putting the laundry away, he\",\"proceeds to take out the contents of the drawers - - pajamas, shirts, sox, etc.\",reaches through on the approach to get it tangled while the first scrubber is stuck.,sees a greenhouse cap sewing a child's coat on a couch.,stops several few inches from the edge and carries a large amount of clean of his shoes and shoes.,grabs a tray and puts it to his hands.,gold0-orig,pos,unl,unl,unl,pos,He takes the laundry out of the box and puts in on the bed next to the suits.,\"Then he goes to the dresser, and instead of putting the laundry away, he\"\nlsmdc0021_Rear_Window-58644,10507,\"It is someone, carrying a light - weight cardboard box under his arm. The camera\",pans him over to the right until he is lost behind the building.,rises as he goes from a church where the kids have walked passed him.,is wearing someone's uniform.,pulls towards a sandy walkway lit by fleeting lights of a candle.,,gold0-orig,pos,unl,unl,unl,n/a,\"It is someone, carrying a light - weight cardboard box under his arm.\",The camera\nlsmdc0021_Rear_Window-58644,10506,She is suddenly blotted out by a figure of a man who enters the picture from the left side. It,\"is someone, carrying a light - weight cardboard box under his arm.\",peers around into the wall.,is approaching on the screen.,has to cry for s. to scream or scream.,is an online branching.,gold0-orig,pos,unl,unl,unl,unl,She is suddenly blotted out by a figure of a man who enters the picture from the left side.,It\nlsmdc0021_Rear_Window-58644,10511,\"Then sharpening his look, he picks up the long - focus lens, and easing himself back cautiously, begins watching someone. Someone\",\"comes up the corridor, and stands unlocking his door.\",\"is unable, weeping, and sobs.\",has her eye drawn too.,\"nods a bit, then smiles, slightly bemused at his remark.\",looks up as someone gets there as someone is pulled away.,gold0-orig,pos,unl,unl,unl,unl,\"Then sharpening his look, he picks up the long - focus lens, and easing himself back cautiously, begins watching someone.\",Someone\nlsmdc0021_Rear_Window-58644,10508,The camera pans him over to the right until he is lost behind the building. He,\"is much nearer the lens, because he is on this side of the street.\",\"frowns, followed by a man sitting on a spinning spot.\",are then seen jumping across the snow and ends up falling quickly falling and running in the snow.,reappears in his beach and he appears on the screen as the man.,,gold1-orig,pos,unl,unl,unl,n/a,The camera pans him over to the right until he is lost behind the building.,He\nlsmdc0021_Rear_Window-58644,10496,\"An attractive girl is setting out trays of canap s, glasses, ice and liquor. She\",pauses as she crosses the room carrying a tray of food.,\"breaks out into the container, holding around, about to put the contact into her ear.\",mixer is eaten to second fat lemonade.,begins in preparation to spray the cup and contents a kid out of the bowl.,begins talking in front of the camera and chatting a meal with a foreign lettering on her belly.,gold1-orig,pos,unl,unl,unl,pos,\"An attractive girl is setting out trays of canap s, glasses, ice and liquor.\",She\nlsmdc0021_Rear_Window-58644,10501,\"By her gestures, she is obviously a professional choreographer. She\",\"seems to be trying to figure out what to do, or where to go.\",loads the clerk with a black bar.,\"speeds at the bottom, looks for the women in the of sweaters, which she explains a technique of how worse both wear.\",walks away on the beach which is decorated with flowers.,,gold0-reannot,pos,unl,unl,pos,n/a,\"By her gestures, she is obviously a professional choreographer.\",She\nlsmdc0021_Rear_Window-58644,10505,\"The figure is that of someone. Getting no reaction, she\",\"crosses the street, and seats herself at an empty table in front of the cafe.\",notices the group about someone ride a reflection in her head.,looks for a little bit of way.,glances at his ex - mixed colleague.,forces someone to speak.,gold0-reannot,pos,unl,unl,pos,pos,The figure is that of someone.,\"Getting no reaction, she\"\nlsmdc0021_Rear_Window-58644,10484,\"The long - focus lens brings someone into an enlarged picture which reveals details we have not previously noticed. Satisfied, she\",\"takes off the glasses, and examines her face as a whole, through squinting eyes.\",\"glances at someone's designer handbag, walks up and takes an apple from the shelf.\",steps away stoically and brushes past her.,\"indicates her breasts, then runs her thumb over her coldly stricken teacher's lips.\",tears the pages off her manuscript and gazes off.,gold1-reannot,pos,unl,unl,unl,unl,The long - focus lens brings someone into an enlarged picture which reveals details we have not previously noticed.,\"Satisfied, she\"\nlsmdc0021_Rear_Window-58644,10509,\"He is, therefore, slightly out of focus. He lowers the lens, and we\",\"see someone's eyes travel across the screen, as he imagines someone's progression.\",hear that down the glass door.,\"see someone's left and far left eye, right about him.\",hear a close shot of an alien.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He is, therefore, slightly out of focus.\",\"He lowers the lens, and we\"\nlsmdc0021_Rear_Window-58644,10499,\"Her expression shows that it pleases her, and moves her romantically. Someone's head\",turns in this new direction.,mopes to her mouth.,becomes embarrassed when she runs a loop over her head and flops on her side.,sits four stories above the easel.,comes though the door then hops behind the partition barriers.,gold0-reannot,pos,unl,unl,unl,unl,\"Her expression shows that it pleases her, and moves her romantically.\",Someone's head\nlsmdc0021_Rear_Window-58644,10497,She pauses as she crosses the room carrying a tray of food. She,listens a moment to the songwriter's melody.,runs to a set of stairs and fishes some china sack from his pocket.,chugs a beer and throws down his jacket.,\"look around the room, then cuts the rack of little kids.\",finds an enclosed turkey.,gold0-reannot,pos,unl,unl,unl,unl,She pauses as she crosses the room carrying a tray of food.,She\nlsmdc0021_Rear_Window-58644,10478,The camera is concentrating on the long - focus lens camera which fills the screen. Someone's hand,\"comes in, picks it up.\",appears at the end of the hill.,is shown from the girl's face.,has a bag over his left arm.,goes under the tap.,gold0-reannot,pos,unl,unl,unl,unl,The camera is concentrating on the long - focus lens camera which fills the screen.,Someone's hand\nlsmdc0021_Rear_Window-58644,10512,\"Someone comes up the corridor, and stands unlocking his door. As he hesitates, we\",are able to see the cardboard box he is carrying has the name of a laundry on it.,see the couple opening the doors and the door close behind him.,\"can see the light switch, the roach mutant fluttering in the air overhead.\",glimpse the living hinge across wall and strewn around them.,\"pull the bare oars protruding from the bag, moving the end of the metal body.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone comes up the corridor, and stands unlocking his door.\",\"As he hesitates, we\"\nlsmdc0021_Rear_Window-58644,10519,Someone lowers the camera quickly. He,\"picks up the phone and dials a number, still keeping his eyes on someone.\",\"tracks the forward steps leading aim, blocking and climbing with energy.\",\"looks back at the detonator room, then the door opens.\",sends another car along a walkway into the darkness.,\"runs away from the apartments, someone, and tips face down.\",gold0-reannot,pos,unl,pos,pos,pos,Someone lowers the camera quickly.,He\nlsmdc1014_2012-79368,15074,Someone glances up and sees someone watching them. Someone,stares ahead and speaks without looking at someone.,watches from above as he returns to his sleep.,crawls over the other side.,stares down at the monitor.,focuses on his glasses on the brim.,gold0-orig,pos,unl,unl,unl,unl,Someone glances up and sees someone watching them.,Someone\nlsmdc1014_2012-79368,15069,They are deep in prayer as the tidal wave comes closer. Someone and his wife,hug their son between them as someone listens.,are competing on horses by a pier.,stare blankly at the stained glass ceiling.,look up and gaze at someone's castle.,watch from the wall.,gold0-orig,pos,unl,unl,unl,pos,They are deep in prayer as the tidal wave comes closer.,Someone and his wife\nlsmdc1014_2012-79368,15072,\"In the back, someone is with is family, people. Someone lies asleep, his head\",resting on someone's shoulder.,leaning against his house.,bent over his rib cage.,pinned with soot and ash.,tucked in the blanket.,gold1-orig,pos,unl,unl,unl,pos,\"In the back, someone is with is family, people.\",\"Someone lies asleep, his head\"\nlsmdc1014_2012-79368,15070,A revised countdown appears on their screens. Someone,drives the truck with his grandparents in the cab with him.,sumo yellow sumo wrestlers stand in a v formation in the middle of a arena.,and a man in a instructions outfit are mixing ingredients into a bowl and adding chips.,\", barely applauding with another man, someone kicks someone in the face as he rolls into a pool.\",\", a man, an athletic man and a woman of a gleaming dog and a dog are in a bath.\",gold0-reannot,pos,unl,unl,unl,unl,A revised countdown appears on their screens.,Someone\nlsmdc1014_2012-79368,15073,\"Someone lies asleep, his head resting on someone's shoulder. Someone\",glances up and sees someone watching them.,gives her a sweet passionate kiss then kisses her neck.,looks from someone to someone.,looks up from the letter.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Someone lies asleep, his head resting on someone's shoulder.\",Someone\nanetv_kkXSGwesZ0U,8078,Two people have their legs tied together and then receive instructions. They,walk out to a ledge and then go bungee jumping over the edge.,continue fighting in different gym style men are seen in the bleachers.,come out to sing on the middle of the canyon.,are shown kissing on the side and sitting at a stop.,,gold0-reannot,pos,unl,unl,unl,n/a,Two people have their legs tied together and then receive instructions.,They\nanetv_cdP8_KujTCE,12283,The man in the suit come through the gate. A man in red,walks past the camera.,jumps over his horse.,runs down some stairs.,rides while the man makes his way.,come up behind him.,gold1-orig,pos,unl,unl,pos,pos,The man in the suit come through the gate.,A man in red\nanetv_cdP8_KujTCE,12281,We then see people in a room and outdoors at a fancy party. A woman,walks through the door.,talks and hugs the lady.,inspects a couple of people.,walks at the camera.,,gold1-orig,pos,unl,unl,pos,n/a,We then see people in a room and outdoors at a fancy party.,A woman\nanetv_cdP8_KujTCE,12280,We see a colorful and playful title screen. We then,see people in a room and outdoors at a fancy party.,see the ending title screen.,see people playing volleyball in the water.,see the ending screen and advertisement.,,gold0-orig,pos,unl,unl,unl,n/a,We see a colorful and playful title screen.,We then\nanetv_cdP8_KujTCE,12284,A man in red walks past the camera. The lady in white,sees the camera and hides.,throws his hands in the air.,turns with a row of white arrows.,walks past the camera.,begins looking at the camera.,gold0-orig,pos,unl,unl,unl,pos,A man in red walks past the camera.,The lady in white\nlsmdc3053_PARENTAL_GUIDANCE-25831,6729,Someone's eyes shift to someone and someone. He,looks at his daughter who stares back with a disappointed gaze.,looks around the gym bathroom.,slings someone over his shoulder and draws him close.,rises and holds her hand over his lap.,\"looks at her thoughtfully, then lowers her tearful eyes.\",gold0-orig,pos,unl,unl,unl,unl,Someone's eyes shift to someone and someone.,He\nanetv_pwoy7UXdnAE,2897,The dog stands to catch the Frisbee the leans on the man. The dog,jumps into the man's arms.,picks the dog up as well.,\"comes back, merry and get a good straw.\",takes off to the right car as the dog goes.,pet the dog in the dog and throws it.,gold0-orig,pos,unl,unl,unl,unl,The dog stands to catch the Frisbee the leans on the man.,The dog\nanetv_pwoy7UXdnAE,2896,The man throws Frisbees for the dog to catch. The dog,stands to catch the frisbee the leans on the man.,cheered while people ride up near the tree.,jumps onto the street.,\"falls right with the detergent, which lies in the water.\",,gold0-orig,pos,unl,unl,unl,n/a,The man throws Frisbees for the dog to catch.,The dog\nanetv_pwoy7UXdnAE,2895,A man and a dog walk in a training room. The man,throws frisbees for the dog to catch.,uses the shaver as he touches the wall before lifting it out of one.,in the cage licks the top of a horse.,leaves the other then outdoors with soil.,\"spins and spins on a falling back, while the man leads the man pass the dog.\",gold0-orig,pos,unl,unl,unl,unl,A man and a dog walk in a training room.,The man\nanetv_pwoy7UXdnAE,2898,The dog jumps into the man's arms. We,see the ending title screen.,see people spinning around and america seeing the money in slow motion.,see the dog being played by light and frisbees.,\", he uses the ax to chop the wood.\",,gold0-orig,pos,unl,unl,unl,n/a,The dog jumps into the man's arms.,We\nanetv_mAfp5ABlKyM,1851,The men hit the ball back and forth. The winner,raises his hands as the crowd cheers.,kicks the ball out of the water.,kicks the ball into the goal.,laughs as the crowd cheers.,,gold0-orig,pos,unl,pos,pos,n/a,The men hit the ball back and forth.,The winner\nanetv_mAfp5ABlKyM,1850,Two men are playing table tennis while two judges sit at either end. The men,hit the ball back and forth.,shake hands and look at each other.,shake hands as the coach plays.,shake hands and turn around to look at the team.,begin hitting the ball back and forth.,gold0-orig,pos,unl,unl,unl,pos,Two men are playing table tennis while two judges sit at either end.,The men\nanetv_mAfp5ABlKyM,1852,The winner raises his hands as the crowd cheers. The scene,is replayed of his successful hit.,shows a couple of scenes performing incredible stunts in slow moves.,continues with a group of men wandering curling and watching all.,shows extreme stills of a dog and the man shaking the woman's leg.,fades to black as the screen fades to black.,gold0-orig,pos,unl,unl,unl,pos,The winner raises his hands as the crowd cheers.,The scene\nlsmdc3059_SALT-28832,11665,She woefully meets his gaze. Someone,gives a loving smile.,looks sad and contented.,wraps her arms around him and they share a tender kiss.,takes a deep breath and holds her gaze.,plants his lips against hers.,gold1-orig,pos,unl,unl,pos,pos,She woefully meets his gaze.,Someone\nanetv_O7SljQqahy8,17522,The person then uses the towel to rub the surface of the sink. The person,drops the towel and picks it up.,washes clothes with the towel while cleaning the floor.,pours a can of clean liquid into the sink.,begins mopping the floor.,,gold1-orig,pos,unl,pos,pos,n/a,The person then uses the towel to rub the surface of the sink.,The person\nanetv_O7SljQqahy8,17521,A person pours vinegar in a sink on a towel. The person then,uses the towel to rub the surface of the sink.,uses a sponge to clean surface and place it together.,rinses the ladies face with a sponge.,rinse a sponge in a sink before wiping it with sponge.,dumps the mop into the water in a sink.,gold1-orig,pos,unl,unl,unl,pos,A person pours vinegar in a sink on a towel.,The person then\nlsmdc0021_Rear_Window-58051,11599,The woman sits up as the man enters. She,takes a wet cloth off her forehead.,pats a lady on the belly.,\"opens the front door, studying it.\",dismounts and turns to the woman.,strides into the office behind her.,gold0-orig,pos,unl,unl,unl,pos,The woman sits up as the man enters.,She\nlsmdc0021_Rear_Window-58051,11614,\"In one hand the man carries a small garden hoe and rake, and in the other a pair of trimming shears. He\",\"goes to a small patch of flowers, perhaps three feet square.\",is skiing on a winter sidewalk and chatting up as five other are in the garden.,tries the dust and the dolls continue to pound against it and echo through the grass.,\"twists its large round, pauses the pole at the object and bows.\",tends to a peaceful spot they have come on together.,gold0-orig,pos,unl,unl,unl,pos,\"In one hand the man carries a small garden hoe and rake, and in the other a pair of trimming shears.\",He\nlsmdc0021_Rear_Window-58051,11631,\"She takes off her hat coat, and hangs them on a chair. It\",\"is worn, and looks as if it belongs more to a fighter than a nurse.\",\"eyes a mirror, still searching her face.\",solemnly watches the lady from behind.,waddles up a hill.,,gold0-orig,pos,unl,unl,unl,n/a,\"She takes off her hat coat, and hangs them on a chair.\",It\nlsmdc0021_Rear_Window-58051,11630,She puts her bag down on a table. She,\"takes off her hat coat, and hangs them on a chair.\",\"walks into the door, to a table with her hand on it.\",punches him in the stomach and then slams it into the ground.,pours a container into a mug.,put her foot on the floor close to him.,gold0-orig,pos,unl,unl,unl,pos,She puts her bag down on a table.,She\nlsmdc0021_Rear_Window-58051,11603,He hangs up and resumes his attention on the apartment of the salesman. The salesman,\"looks toward the bedroom door, hesitates, then reluctantly walks toward it.\",has already been put on his back and looks glumly at his hostile though brother.,can be seen in his kitchen numerous small glass cups at his feet.,is now covering an suntan blanket and a magazine cover.,\"sits in his headset, peering over a coffee cup, brushing screws, and some old glasses.\",gold1-orig,pos,unl,unl,unl,unl,He hangs up and resumes his attention on the apartment of the salesman.,The salesman\nlsmdc0021_Rear_Window-58051,11595,\"He sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand. He\",takes off his coat and tie.,makes his way down past someone's things and takes a corner.,walks towards the counter and a man walks over to the closed door.,\"stands by the stairs, ready to jump, then turns and puts his hat on.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand.\",He\nlsmdc0021_Rear_Window-58051,11605,\"He shouts back at her, turns and goes out of the room. His attitude\",\"changes to weary patience, then irritation, then anger.\",is much about someone in his uniform.,\"fills our view as he does, toward the pool table.\",makes her preoccupied is a little sad.,\"chalks his gun exchanged, and sniffs, runs into the kitchen, which has already taken behind the sink.\",gold0-orig,pos,unl,unl,unl,unl,\"He shouts back at her, turns and goes out of the room.\",His attitude\nlsmdc0021_Rear_Window-58051,11610,\"Carefully, and with considerable ingenuity, he works it under the cast. He scratches, and a look of sublime relief\",comes over his face.,appears on his former neighbor's features.,approaches the bald guy's nose.,comes on the screen.,shows someone on a giant's scale.,gold0-orig,pos,unl,unl,unl,unl,\"Carefully, and with considerable ingenuity, he works it under the cast.\",\"He scratches, and a look of sublime relief\"\nlsmdc0021_Rear_Window-58051,11596,\"He takes off his coat and tie. With his eyes still focused on the distant apartments, someone\",continues talking with someone.,turns his head to look at it.,comes fast - clicking on his heels.,picks up his wand from the fire.,,gold0-orig,pos,unl,unl,unl,n/a,He takes off his coat and tie.,\"With his eyes still focused on the distant apartments, someone\"\nlsmdc0021_Rear_Window-58051,11611,\"Satisfied, he takes the scratcher out. As he replaces it on the windowsill, his attention\",is drawn back to the scene outside the window.,crumbles to the view beneath someone's shrubs.,switches to a dangling glimpse of a naked body lying over the bed.,drifts to his crossover.,drifts to the silver curtain near the dancer's adjoining.,gold0-orig,pos,unl,unl,unl,unl,\"Satisfied, he takes the scratcher out.\",\"As he replaces it on the windowsill, his attention\"\nlsmdc0021_Rear_Window-58051,11615,\"They are beautiful, multi - colored three foot high zinnias. Someone's attention\",is turned to something else of interest.,is calm and if the pebble rises as the python releases itself.,\"has been taken by her view, oblivious from the noise.\",observes about the school museum.,,gold0-orig,pos,unl,pos,pos,n/a,\"They are beautiful, multi - colored three foot high zinnias.\",Someone's attention\nlsmdc0021_Rear_Window-58051,11621,\"His anger seems to have left him, replaced by the kind of peace that flowers bring many people. He\",\"notices her, but does n't speak.\",is obviously amazed at the things he has n't.,lifts up his helmet.,\"continues to read through the envelopes, not seeing someone driving.\",straightens up slowly and keeps his gaze fixed on the shot.,gold0-orig,pos,unl,unl,unl,unl,\"His anger seems to have left him, replaced by the kind of peace that flowers bring many people.\",He\nlsmdc0021_Rear_Window-58051,11618,\"She settles into a folding, canvas deck chair. She\",\"gets up, walks to the fence, and looks over.\",closes her eyes as she rests neatly beside the woman's breasts.,chats to a alien who holds the pill in her mouth and looks at her hands.,\"runs downward then face the promontory, taking a large row of light patterns.\",looks up at the sleeping man and pokes her head.,gold0-orig,pos,unl,unl,unl,pos,\"She settles into a folding, canvas deck chair.\",She\nlsmdc0021_Rear_Window-58051,11612,\"As he replaces it on the windowsill, his attention is drawn back to the scene outside the window. We\",see the man who left his apartment in anger come out of the doorway into the backyard.,\"see the rafts, beat down the buildings.\",play to the door and open the door.,don't see his wife in the passenger seat.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he replaces it on the windowsill, his attention is drawn back to the scene outside the window.\",We\nlsmdc0021_Rear_Window-58051,11598,The man enters the bedroom. The woman,sits up as the man enters.,raises an eyebrow at him.,walks in the bathroom and opens the door.,stops and looks at the door.,wears her shoes and pink socks.,gold0-orig,pos,pos,pos,pos,pos,The man enters the bedroom.,The woman\nlsmdc0021_Rear_Window-58051,11591,At this moment we hear the sounds of a piano playing. Someone,glances out across to the other apartments as he sees.,disbelievingly shakes her head and rocks the girl around the island.,stands on the platform with his feet between his knees.,is louder than the sound of singing.,\"sits on the couch on his back, his mouth open.\",gold1-orig,pos,unl,unl,pos,pos,At this moment we hear the sounds of a piano playing.,Someone\nlsmdc0021_Rear_Window-58051,11601,\"Before the man even reaches her, she begins talking, somewhat vigorously. We\",can see a woman lying on the far bed.,moves and then begins to move her fingers around gently gently stroke the hula till she missed it.,has her hands behind her head sensing what she has addressed.,catches himself running so that he can reach the bag.,\"increase in their conversation, not wanting to know it.\",gold0-orig,pos,unl,unl,unl,unl,\"Before the man even reaches her, she begins talking, somewhat vigorously.\",We\nlsmdc0021_Rear_Window-58051,11609,\"He reaches for a long, Chinese back scratcher lying on the windowsill. Carefully, and with considerable ingenuity, he\",works it under the cast.,sits at the master 'desk.,drags someone to the parlor door.,looks down at her scalp.,,gold0-orig,pos,unl,unl,unl,n/a,\"He reaches for a long, Chinese back scratcher lying on the windowsill.\",\"Carefully, and with considerable ingenuity, he\"\nlsmdc0021_Rear_Window-58051,11600,\"She takes a wet cloth off her forehead. Before the man even reaches her, she\",\"begins talking, somewhat vigorously.\",nestles out of her panties and fetches herself in.,holds up the cut but huge dragon sword.,goes mighty grabbed and swings back.,intervenes with and two men open the door to see her.,gold0-orig,pos,unl,unl,unl,unl,She takes a wet cloth off her forehead.,\"Before the man even reaches her, she\"\nlsmdc0021_Rear_Window-58051,11597,\"With his eyes still focused on the distant apartments, someone continues talking with someone. His shirt\",is stained with sweat underneath.,swats as someone takes off his pants.,is drawing on the headboard.,half like someone does n't say what to do.,,gold0-orig,pos,unl,unl,unl,n/a,\"With his eyes still focused on the distant apartments, someone continues talking with someone.\",His shirt\nlsmdc0021_Rear_Window-58051,11617,\"She carries a copy of the Herald Tribune, and still wears her hearing aid. She\",\"settles into a folding, canvas deck chair.\",\"gets to his feet, pushes his way along the corridor into a corridor that keeps people on her side.\",\", someone is in a marathon.\",is the girl of a different girl with a large fat one that has brought a fuss.,couples dance out of a door.,gold0-orig,pos,unl,unl,unl,unl,\"She carries a copy of the Herald Tribune, and still wears her hearing aid.\",She\nlsmdc0021_Rear_Window-58051,11590,\"It is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song. At this moment we\",hear the sounds of a piano playing.,\"see someone and someone enter the house, alone.\",hear the tone of the husky's voice calling.,hear him buzz throughout his school.,,gold0-orig,pos,unl,unl,unl,n/a,\"It is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song.\",At this moment we\nlsmdc0021_Rear_Window-58051,11593,He carries a large aluminum sample case common to salesmen. The brick,is weather - worn and faded.,break pins to the floor of a hallway; someone's eyes widen.,\"returns to the third room, then lights a laptop.\",has a pergola decorated with flawless feathers.,emerge through the door on the other side.,gold0-orig,pos,unl,unl,unl,unl,He carries a large aluminum sample case common to salesmen.,The brick\nlsmdc0021_Rear_Window-58051,11629,She carries a small black bag. She,puts her bag down on a table.,picks up a man in chair.,\"leans forward, watching him with a breezy smile.\",waves to the window inside picks up the wallet - dish signed.,sits on a chair and pulls a revolver out of the chancellor.,gold0-orig,pos,unl,unl,unl,unl,She carries a small black bag.,She\nlsmdc0021_Rear_Window-58051,11637,As she leaves him holding the thermometer the camera pulls back as she crosses to a divan. She,\"takes a sheet from underneath, and covers the divan with it.\",tosses it over her shoulder.,\"opens it with her hands, but smiles and stands up staring up at him.\",lands at the edge of the bed.,\"looks up, sees someone.\",gold0-orig,pos,unl,unl,unl,pos,As she leaves him holding the thermometer the camera pulls back as she crosses to a divan.,She\nlsmdc0021_Rear_Window-58051,11623,She begins gesturing to him how to take care of his flowers. He,\"listens for a moment, then looks directly at her.\",eyes that the black mark her left eye and blindly succeeds that she has really hurt him.,plays the details in the shed.,\"comes back, not genuinely upset by now.\",attempts to stop her and walks by and she continues putting and brushing in the end.,gold0-orig,pos,unl,unl,unl,unl,She begins gesturing to him how to take care of his flowers.,He\nlsmdc0021_Rear_Window-58051,11628,\"As she comes down the stairs of the landing, holding on the wrought iron railing with one hand. She\",carries a small black bag.,has turned around some machinery and continues to show her strength to balance on it.,\"frantically packs on the curtain leading, and runs across the room.\",rises from a rocker on the floor and drops onto the floor.,is guided by her patio by the front door which has a lot of tall christmas trees.,gold1-orig,pos,unl,unl,unl,pos,\"As she comes down the stairs of the landing, holding on the wrought iron railing with one hand.\",She\nlsmdc0021_Rear_Window-58051,11625,The strong movements of his mouth show us that he objects vigorously to the annoyance of her comments. She,\"moves away from the fence, started and a little shocked.\",\"raises a skirt, twirling around to start him as he takes.\",leaps and races through the fallen figure on his own while he approaches behind.,walks up to someone and whispers something else.,,gold0-orig,pos,unl,unl,pos,n/a,The strong movements of his mouth show us that he objects vigorously to the annoyance of her comments.,She\nlsmdc0021_Rear_Window-58051,11619,\"She gets up, walks to the fence, and looks over. He\",\"kneels down, inspects them, touches them affectionately and with some pride.\",is covered with a newspaper.,does n't seem to be mad about what to happen.,has her veil too.,picks up the barbells and clings to her as she enters.,gold1-orig,unl,unl,unl,unl,unl,\"She gets up, walks to the fence, and looks over.\",He\nlsmdc0021_Rear_Window-58051,11635,\"She takes the thermometer out of its case, shakes it down. She\",talks as she works.,\"puts it in a strainer, tastes it, and drinks some more.\",enters and answers the phone.,runs back into her office.,gets to her feet.,gold1-orig,pos,unl,unl,pos,pos,\"She takes the thermometer out of its case, shakes it down.\",She\nlsmdc0021_Rear_Window-58051,11607,For a moment he is hidden by the wall. Someone,shifts his look more to the right.,seems to go for a trellis.,\"gently touches his arm, holding it up in his gloved hand.\",appear over a dozen shots of him gasping in water.,turns to see someone running out from underneath.,gold1-orig,pos,unl,unl,unl,pos,For a moment he is hidden by the wall.,Someone\nlsmdc0021_Rear_Window-58051,11633,A look at his face shows he does n't think much of it. She,swings the wheelchair around abruptly to face her.,\"shifts her eyes, and takes a kitty in her eyes.\",comes in a short black sweater with a white color.,writhes and the rhythm busts.,,gold1-orig,pos,unl,unl,pos,n/a,A look at his face shows he does n't think much of it.,She\nlsmdc0021_Rear_Window-58051,11584,The camera is now focused on the window of the small building where we earlier saw the girl behind the oscillating fan. Loud ballet music,is pouring from her open window.,is heard yet low on the floor.,comes onto the screen for a moment as the laughing debris reveals.,is heard coming from behind a guy coming.,\"follows the sound of someone dancing in the living room, which still lies in the open backyard.\",gold0-orig,pos,unl,unl,unl,unl,The camera is now focused on the window of the small building where we earlier saw the girl behind the oscillating fan.,Loud ballet music\nlsmdc0021_Rear_Window-58051,11581,Someone's eyes become set upon something else in the neighborhood he sees. Someone's attention,is now drawn to another feature of his backyard entertainment.,lit up the flowers as they all follow.,pans to the burnt - soaked street beyond.,drifts to a pair of green cabs but and opens it.,is suddenly too much for mother.,gold0-orig,pos,unl,unl,unl,pos,Someone's eyes become set upon something else in the neighborhood he sees.,Someone's attention\nlsmdc0021_Rear_Window-58051,11592,\"It irritates someone as he looks in the direction of the new music. On the second floor, a man\",has entered the living room from a hallway door.,carries three coat on between battlefield shields.,gets out and passes to another man.,steps over the bars and out of view.,,gold0-orig,pos,unl,unl,unl,n/a,It irritates someone as he looks in the direction of the new music.,\"On the second floor, a man\"\nlsmdc0021_Rear_Window-58051,11620,\"He kneels down, inspects them, touches them affectionately and with some pride. His anger\",\"seems to have left him, replaced by the kind of peace that flowers bring many people.\",is taking place in the end.,is growing intermittent as he freezes with their seats now as they share a bundle together someone.,\"etched across someone's face, he returns a tender look.\",clenches out from hell.,gold0-orig,pos,unl,unl,unl,unl,\"He kneels down, inspects them, touches them affectionately and with some pride.\",His anger\nlsmdc0021_Rear_Window-58051,11613,He is easy to identify through the color of his garish necktie. In one hand the man,\"carries a small garden hoe and rake, and in the other a pair of trimming shears.\",is listening to the number on the piano.,touches his knees as he puts his arm around the woman.,is dressed with stationed harnesses and begin arm wrestling.,,gold0-orig,pos,unl,unl,unl,n/a,He is easy to identify through the color of his garish necktie.,In one hand the man\nlsmdc0021_Rear_Window-58051,11636,She talks as she works. As she leaves him holding the thermometer the camera,pulls back as she crosses to a divan.,stays calm with the soft glow on the travel.,sees a welded tire.,makes a swirl of honey to peel chips off her plate.,goes to the mantle.,gold0-reannot,pos,unl,unl,unl,pos,She talks as she works.,As she leaves him holding the thermometer the camera\nlsmdc0021_Rear_Window-58051,11627,\"She is a husky, unhandsome, dark - haired woman who is dressed like a district nurse, with dark coat, dark felt hat, with a white uniform showing underneath the coat. As she\",\"comes down the stairs of the landing, holding on the wrought iron railing with one hand.\",\"steps inside, someone puts a cut down between a brown robe, then picks it into her apartment.\",\"steps inside, our view spies some police birders emerge from the mansion out over the dead soldiers.\",arrives at the apartment.,\"turns, her voice quivers at her loss.\",gold1-reannot,pos,unl,unl,unl,pos,\"She is a husky, unhandsome, dark - haired woman who is dressed like a district nurse, with dark coat, dark felt hat, with a white uniform showing underneath the coat.\",As she\nlsmdc0021_Rear_Window-58051,11587,Someone's eyes drop from the ballet dancer's room to the one underneath. She,looks up in the direction of the music and in a calm routine fashion adjusts the volume of her hearing aid.,\", her eyes widen.\",\"continues low to her chat, apparently dragged to her feet.\",\"puts his hand on someone's shoulders and presses him on his chest, using his hands.\",\"hugs the dancer, who straightens her leg and sets her knuckles on a table.\",gold0-reannot,pos,unl,unl,unl,unl,Someone's eyes drop from the ballet dancer's room to the one underneath.,She\nlsmdc0021_Rear_Window-58051,11589,\"She is a faded, refined type. It\",\"is a simple, but broken, melody as if someone was just learning to play the piano, or carefully composing a song.\",is lying on someone's lap as her parents are talking to someone in an actual environment.,\"is a slinky, plane with white toy reflects horses.\",reads the newspaper and the 13 bazaar actually.,\"is dark with dark and leather - cola - - quick tracking and she hits her, about it.\",gold0-reannot,pos,unl,unl,unl,unl,\"She is a faded, refined type.\",It\nlsmdc0021_Rear_Window-58051,11624,\"He listens for a moment, then looks directly at her. The strong movements of his mouth\",show us that he objects vigorously to the annoyance of her comments.,are coming out of frame.,are alive that sound as someone watches his son press himself in the dirt.,pained them all deeply.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He listens for a moment, then looks directly at her.\",The strong movements of his mouth\nlsmdc0021_Rear_Window-58051,11586,\"She picks up both bread and chicken leg and continues her interpretive dance, alternately munching the bread and butter and chicken leg. Someone's eyes\",drop from the ballet dancer's room to the one underneath.,shift close to plants as his eyes widen with someone as he stares at scotty's sleeping body.,relax throughout her quickly.,clap and she frowns.,,gold1-reannot,unl,unl,unl,unl,n/a,\"She picks up both bread and chicken leg and continues her interpretive dance, alternately munching the bread and butter and chicken leg.\",Someone's eyes\nlsmdc0021_Rear_Window-58051,11583,\"Someone asks, eagerly and alertly. She\",\"gracefully moves across the room to the rhythm of the music and dance, toward the ice box.\",\"steps toward it, and plucks from the note.\",replies warmly and pours himself a beer.,wanders up by night time.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone asks, eagerly and alertly.\",She\nlsmdc0021_Rear_Window-58051,11594,\"Each apartment has three windows facing the back, one showing a hallway, one a living room, and the window on the right opening into a bedroom. He\",\"sets down the case heavily, removes his hat, and slowly wipes his brow with the back of his right hand.\",head trapping someone.,\", they belong to someone.\",sunlight shine across the ashen announcers plate to show whole residential mansion.,lies him down.,gold0-reannot,pos,unl,unl,unl,unl,\"Each apartment has three windows facing the back, one showing a hallway, one a living room, and the window on the right opening into a bedroom.\",He\nlsmdc0021_Rear_Window-58051,11608,\"His leg, under the cast, begins itching. He\",\"squirms, tries to move the leg a little.\",throw adhesive parts of the rug onto the floor.,returns out the railing.,shifts on the windows and blows out a lamp.,,gold0-reannot,pos,unl,unl,unl,n/a,\"His leg, under the cast, begins itching.\",He\nlsmdc0021_Rear_Window-58051,11632,\"Satisfied, she walks to someone. A look at his face\",shows he does n't think much of it.,\"is shown drawing his skull, tinted imperceptibly.\",gets out of his apartment and puts his t - shirt in the bed.,shows someone's hair being lowered with the jacket.,addresses someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Satisfied, she walks to someone.\",A look at his face\nanetv_bd3Df5_QMNw,10096,A picture of a dog in shown in a tub and leads into hands holding tools and a dog wandering around a tub. The person,puts toothpaste onto a brush and brushes the dog's teeth back and fourth.,continues rubbing out on the dog as well as showing how to properly wash him.,then begins to brush a dog while the dog continues to rub the fur with dogs.,uses a towel all around the area while the camera pans around to the sides.,,gold1-orig,pos,unl,unl,pos,n/a,A picture of a dog in shown in a tub and leads into hands holding tools and a dog wandering around a tub.,The person\nanetv_bd3Df5_QMNw,10097,The person puts toothpaste onto a brush and brushes the dog's teeth back and fourth. Finally she puts gel in the dog's mouth and the dog,is seen sitting on a bed waving to the camera.,gets contact and condensation easily.,is toothpaste in the liquid like a suit.,appears revealed in the eye.,is brushing his long legs and teeth.,gold0-reannot,pos,unl,unl,unl,unl,The person puts toothpaste onto a brush and brushes the dog's teeth back and fourth.,Finally she puts gel in the dog's mouth and the dog\nanetv_cRDXBF2RcYI,541,A person puts wax on their leg. They,put paper on it and rip off the hair.,are using two sticks to paint onto a scanner.,continue to the latino boy removes a t.,lay it up by gently putting plaster on their leg.,are installing the lemon tiles on the floor.,gold0-orig,pos,unl,unl,unl,unl,A person puts wax on their leg.,They\nanetv_cRDXBF2RcYI,540,A person is laying back on a bed. A person,puts wax on their leg.,irons a shoe at the sink.,puts sand onto a shoe.,puts the camera on top of the doctor.,talks in a set of snow as she smiles on camera.,gold0-orig,pos,unl,unl,unl,unl,A person is laying back on a bed.,A person\nanetv_zSCZphJS2vA,2772,An athlete is seen walking up to a platform and begins spinning himself around and throwing an object off into the distance. His throw is shown again in slow motion and another man,is seen spinning around then throwing the object with his hands up afterwards.,\"catches a ball, then holds up with a javelin over his head and attempts to stand over the edge of the roof.\",spins out of frame and spins around several times.,is seen in slow motion.,is back shown running out onto the screen in slow motion afterwards.,gold0-orig,pos,unl,unl,pos,pos,An athlete is seen walking up to a platform and begins spinning himself around and throwing an object off into the distance.,His throw is shown again in slow motion and another man\nanetv_1XtjXqqPvyQ,5644,A dog runs onto grass. a man,throws a frisbee towards the dog.,throws a frisbee to the camera.,is also holding frisbee with the guy.,emerges to exchange the dog.,throws a frisbee on the pavement.,gold0-orig,pos,unl,unl,unl,pos,A dog runs onto grass.,a man\nanetv_1XtjXqqPvyQ,5646,The man runs towards the dog. the man and dog,perform several tricks as a crowd watches.,are off behind the man.,celebrates on the sidewalk.,grab a flower from the floor.,run over to the horse and run.,gold0-orig,pos,unl,unl,unl,pos,The man runs towards the dog.,the man and dog\nanetv_1XtjXqqPvyQ,5645,The dog catches the frisbee. the man,runs towards the dog.,does sit ups with the dog.,catches the dog again.,throws the frisbee for the dog.,,gold1-orig,pos,unl,pos,pos,n/a,The dog catches the frisbee.,the man\nanetv_1XtjXqqPvyQ,5243,He tries to get the dog to catch one of the frisbees in his hands as the dog frantically tries to get one. The man,stands with a frisbee in his hand as the dog runs away.,tries to sweep catch and catch the wad of dust from the dog to catch the frisbee.,runs back and fourth to one another and talks to the camera while the dog is caught away.,\"continues to talk to the camera without talking, end with his mouth being caught.\",jumps down with his elbows but finishes off throwing the frisbee off his head.,gold0-reannot,pos,unl,unl,unl,unl,He tries to get the dog to catch one of the frisbees in his hands as the dog frantically tries to get one.,The man\nanetv_1XtjXqqPvyQ,5241,A dog runs across a field with a frisbee. A man,\"follows suit, playing with the boy in front of a crowd.\",catches a frisbee and plays at the bagpipe.,talks while the man stands side to side.,walks off with a camera while talking.,stops to catch the frisbee and the dog offers a hand.,gold0-reannot,pos,unl,unl,unl,unl,A dog runs across a field with a frisbee.,A man\nlsmdc0005_Chinatown-48397,2118,\"With the heel of his shoe, he kicks at the right rear taillight of the car. He\",\"shatters the red lens, gets up.\",switches on a towel and puts a scarf around the sleeve.,levitates his other hand as the vampire smashes his head on someone beside the barrel.,\"bursts, righting them but can not.\",,gold1-orig,unl,unl,unl,unl,n/a,\"With the heel of his shoe, he kicks at the right rear taillight of the car.\",He\nlsmdc0005_Chinatown-48397,2119,\"He carefully pulls the red lens off the taillight, exposing the white light beneath it. He\",tosses the red lens into the shrubbery and hurries back toward the house.,\"finds him in the back and flops into his bed, bowing his head off.\",\"a moment his stands up, he finds possessed of what is dark.\",\"is seen in the strip, and wears a piece of metal at it.\",bashes the boy with his sword.,gold1-orig,pos,unl,unl,unl,unl,\"He carefully pulls the red lens off the taillight, exposing the white light beneath it.\",He\nlsmdc1028_No_Reservations-82792,3364,\"The woman, someone, raises her eyebrows. She\",checks some orders attached to a shelf.,makes her way through a glass of narrowed areas.,tilts her head back shut.,\"regards him coolly, then puts out the teacup.\",rubs the doll's forehead and screws up her eyes.,gold1-reannot,pos,unl,unl,unl,pos,\"The woman, someone, raises her eyebrows.\",She\nanetv_KAbo60mowhw,7859,The man holds out the Frisbee in his hand to the dog. A woman,plays catch with the dog throwing a frisbee in a grassy park.,vacuums the ground with dry leaves standing while a man and dogs are walking behind him and recording on the highway.,rides the dog with the dog.,picks up the dog after the dog runs down.,walks past the camera.,gold0-orig,pos,unl,unl,pos,pos,The man holds out the Frisbee in his hand to the dog.,A woman\nanetv_KAbo60mowhw,7858,A man plays catch with a dog in a dirt field while throwing a Frisbee. The man,holds out the frisbee in his hand to the dog.,runs between two frisbees from his mouth and walks round to a side playing.,\"kicks up frisbee on the ground, then his dog pick up the dog and ties it up to wrap it in the man.\",picks up the frisbee and smokes while talking to the camera.,does a long throw on the floor while the dog trots away with a pink frisbee.,gold0-orig,pos,unl,unl,unl,pos,A man plays catch with a dog in a dirt field while throwing a Frisbee.,The man\nanetv_V1IHwwpyFUE,12297,\"Then, the teen throws the ball to a child who throws back it and runs away. After, the teen\",throws again the ball to a girl who kicks back the ball and runs.,\"lifts the weight hanging back out, keeps it on waves and cheers.\",jumps and spins how to hold a frisbee in front of it.,falls on the beam and spins in a ball that fell as a biker is hit.,\"does a hand dive, then high jumps in the air.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, the teen throws the ball to a child who throws back it and runs away.\",\"After, the teen\"\nanetv_V1IHwwpyFUE,12296,\"Three children run on the street followed by the teen, then she stands on the street holding a ball. Then, the teen\",throws the ball to a child who throws back it and runs away.,takes pictures with the child.,performs long jumps while the guy claps.,pushes between the children.,,gold1-orig,pos,unl,unl,pos,n/a,\"Three children run on the street followed by the teen, then she stands on the street holding a ball.\",\"Then, the teen\"\nanetv_V1IHwwpyFUE,12295,\"A teen throws a ball to a child, who throws back it to the teen and run away. Three children run on the street followed by the teen, then she\",stands on the street holding a ball.,stops through a really well rock store.,dips the 10 and put it down in the last position.,gets across the monkey bars.,runs again chased by walk into an indoor living room.,gold0-orig,pos,unl,unl,unl,unl,\"A teen throws a ball to a child, who throws back it to the teen and run away.\",\"Three children run on the street followed by the teen, then she\"\nanetv_V1IHwwpyFUE,3447,The girl kicks a ball when another boy runs in and out of frame as well as other children. The girl,continues running around with the ball as well as in and out of frame.,continues performing while the pinata flings the girls around and then stands up.,begins to play with one another while swinging.,flips the ball back and fourth to one another as well as his opponent in cheering.,walks away while the camera zooms to her face as well.,gold1-orig,pos,unl,unl,unl,pos,The girl kicks a ball when another boy runs in and out of frame as well as other children.,The girl\nanetv_V1IHwwpyFUE,12298,\"After, the teen throws again the ball to a girl who kicks back the ball and runs. The teen follows the girl, then she\",stands in the street.,does it again in her victory.,walks back over the net she received.,retrieves a baseball ball and throws it in the air.,catches her arm and pushes him down a lane.,gold0-reannot,pos,unl,unl,unl,unl,\"After, the teen throws again the ball to a girl who kicks back the ball and runs.\",\"The teen follows the girl, then she\"\nlsmdc3043_KATY_PERRY_PART_OF_ME-20787,18448,\"Peering at the phone, someone holds her hand to her head. Elsewhere, a mass of people\",moves through a parking lot.,\"cross a vast wintry field, surrounded by golden green.\",follow a couple of armored bears lying on the floor.,sees ships working on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Peering at the phone, someone holds her hand to her head.\",\"Elsewhere, a mass of people\"\nlsmdc3043_KATY_PERRY_PART_OF_ME-20787,18449,\"Elsewhere, a mass of people moves through a parking lot. Backstage, someone\",lies curled on her side on a massage table.,exits a building with his cellphone hanging on hands.,takes a basket of spectacle.,strolls downstairs through a sign drawn on a coastal walkway.,spots a mustached lady in a black suit and tie falling.,gold1-orig,pos,unl,unl,unl,pos,\"Elsewhere, a mass of people moves through a parking lot.\",\"Backstage, someone\"\nlsmdc3043_KATY_PERRY_PART_OF_ME-20787,18447,\"Someone picks up her cellphone. Peering at the phone, someone\",holds her hand to her head.,glances at the technical sergeant.,faces the boys near her laptop.,watches it disappears revealing a red with gold stains cover it.,,gold1-orig,pos,unl,unl,unl,n/a,Someone picks up her cellphone.,\"Peering at the phone, someone\"\nlsmdc3003_40_YEAR_OLD_VIRGIN-1116,1366,The beautician applies more wax. She,lays down another cloth.,kicks through the water.,takes the rubber helmet out of a shaped gear and clamps it safely on a rubber.,lays over the glider.,,gold0-orig,pos,unl,unl,unl,n/a,The beautician applies more wax.,She\nanetv_8twDb4CdhE0,14022,A close up of a woman is shown speaking to the camera holding an ice cream in front of her face. She,takes multiple bites of the ice cream while the camera pans around her body and several other people surround her.,continues to wipe off a razor and ends by styling the tattoo.,puts a knife into the basin and spreads it out.,begins cutting the cats claws while showing off her hair while still speaking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a woman is shown speaking to the camera holding an ice cream in front of her face.,She\nlsmdc1027_Les_Miserables-6456,18231,Someone leans forward and drops into the abyss. Someone,is washed away into the swirling foam.,returns to his uniform and watches.,moves on and takes a sheet off.,takes off his pad.,lands in a line of carriages.,gold0-orig,pos,unl,unl,unl,unl,Someone leans forward and drops into the abyss.,Someone\nlsmdc1027_Les_Miserables-6456,18232,\"Someone sits alone in a room, scarred by battle. His left arm\",is in a sling.,stops a few inches from him.,rests anxiously on its back.,rotates on his feet.,lies just below his knee.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits alone in a room, scarred by battle.\",His left arm\nlsmdc1027_Les_Miserables-6456,18233,His left arm is in a sling. He,stares into space thoughtfully.,\"leaps towards it, trying to see if someone is injured.\",catapult as the salvage pod hangs over side of the wrought iron structure.,is laying on a table.,,gold0-orig,pos,unl,unl,pos,n/a,His left arm is in a sling.,He\nanetv_hu714U34avg,17692,\"The instructor then walks in and they all begin doing a routine together. In the beginning, they start out moving their arms but they eventually\",increase the workout by adding in the stepper and walking around the room.,come to squeeze their chains as they continue to move.,fall off the side.,climb it back to the waist near a standing pit.,take out their arms.,gold0-orig,pos,unl,unl,unl,pos,The instructor then walks in and they all begin doing a routine together.,\"In the beginning, they start out moving their arms but they eventually\"\nanetv_hu714U34avg,11330,The women start adding leg movements along with arm movements and they continue this routine going around their stepper and occasionally stepping onto the stepper. The women finish with a strong step onto the stepper then the dancing stops and they all,walk away from their steppers.,begin taking their set using their completed exercise.,listen to the labored breathing of his feet.,begin themselves into the exercise routine.,begin dancing a little jive.,gold0-orig,pos,unl,unl,unl,pos,The women start adding leg movements along with arm movements and they continue this routine going around their stepper and occasionally stepping onto the stepper.,The women finish with a strong step onto the stepper then the dancing stops and they all\nanetv_hu714U34avg,17693,\"In the beginning, they start out moving their arms but they eventually increase the workout by adding in the stepper and walking around the room. Once the ladies have completed their workout, one\",\"remains in the room, grabs her water and walks around in a circle to calm her heart rate.\",\"has slouched her black foot, now and a little trouble vigorously.\",\"takes a long jump, and then do their ballet routine on a stack.\",\"touches her other hand, push the pants back on the body, and driving back.\",is barbells in the same position.,gold0-orig,pos,unl,unl,unl,unl,\"In the beginning, they start out moving their arms but they eventually increase the workout by adding in the stepper and walking around the room.\",\"Once the ladies have completed their workout, one\"\nanetv_hu714U34avg,17691,\"A group of women are walking around in a workout room, one is making steps in place while talking to her friend and the other one is looking at herself in the mirror. The instructor then walks in and they all\",begin doing a routine together.,rubs their hands together.,begin to perform with the cameras basically once more.,cheer and cheer with one another.,go around laughing to keep their moves.,gold0-orig,pos,unl,unl,pos,pos,\"A group of women are walking around in a workout room, one is making steps in place while talking to her friend and the other one is looking at herself in the mirror.\",The instructor then walks in and they all\nanetv_hu714U34avg,11329,A woman steps up to her stepper and starts doing arm movements and the other women start following her. The women start adding leg movements along with arm movements and they,continue this routine going around their stepper and occasionally stepping onto the stepper.,put the up on the them as they continue to exercise.,'re shown talking about mini fans about pools that all have machines as doors roll in the room.,go back to the other tattoo to unload on the injury with the leg.,continue dancing until the time.,gold0-orig,pos,unl,unl,unl,pos,A woman steps up to her stepper and starts doing arm movements and the other women start following her.,The women start adding leg movements along with arm movements and they\nanetv_hu714U34avg,11328,There are women in a mirrored exercise room with wooden floors and are getting ready to do exercises. A woman,steps up to her stepper and starts doing arm movements and the other women start following her.,stands in the room in front of the bedroom.,and a man sit in the stands in a hallway talking.,next to a walk and in a dress starts dancing ballet and holding a pose.,falls on to the man next to her.,gold0-reannot,pos,unl,unl,unl,unl,There are women in a mirrored exercise room with wooden floors and are getting ready to do exercises.,A woman\nanetv_0drl-yrfBAA,13927,A group of marching band drummers ready themselves starts performing while audience are encircling them. Another group of drummers,\"join them, put down their hats and plays with them while the first group walks around while playing.\",play with their skis along the side of the stage.,are standing on stage and holding beers by playing drums.,plays in the background with spectators watching in the background as the group talks about the song.,,gold0-orig,pos,unl,unl,pos,n/a,A group of marching band drummers ready themselves starts performing while audience are encircling them.,Another group of drummers\nanetv_0drl-yrfBAA,13928,\"Another group of drummers join them, put down their hats and plays with them while the first group walks around while playing. A third set of drummers arrives followed by the cymbals players and they all\",played their instruments together.,play across a sandy court to run.,are done.,look up at the drummer.,look at each other.,gold0-orig,pos,unl,pos,pos,pos,\"Another group of drummers join them, put down their hats and plays with them while the first group walks around while playing.\",A third set of drummers arrives followed by the cymbals players and they all\nanetv_0drl-yrfBAA,2094,Another group of musicians holding timbals an cymbals enter the scenario to play with the other musicians. A person,takes picture to the marching band.,rings the tip of them and up over the shown scene.,watch the band and bongo man makes the menacing point.,kisses the boy in different ways of peolpe blowing karate related moves.,is doing gymnastics on a set of uneven bars.,gold1-reannot,pos,unl,unl,unl,unl,Another group of musicians holding timbals an cymbals enter the scenario to play with the other musicians.,A person\nanetv_0drl-yrfBAA,2093,\"Five youth play drums in a field full of people. Then, a group of boys holding bass drums\",put their hats on the ground then start to play.,begin playing in a gymnasium.,meet each other on a city street.,\"stand up to someone as they walk across the finish line on a turbulent, sunny street.\",appear indoors in dim dimly lit room.,gold1-reannot,pos,unl,unl,unl,unl,Five youth play drums in a field full of people.,\"Then, a group of boys holding bass drums\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2209,10816,\"Later, the smiling bride and groom clink their glasses and sip champagne. Someone\",shakes someone's hand.,\"comes, age two - thirty.\",tries to reach the door between her fingers.,pounds on the window; her head lulls back and forth.,takes sips his drink in a gulp.,gold0-orig,pos,unl,unl,unl,pos,\"Later, the smiling bride and groom clink their glasses and sip champagne.\",Someone\nanetv_Jth2Zlpr1gQ,3622,The woman in red top is standing. The woman,stretches her arms one side first then the next one.,is helping wile person bits earth in the boat or pushed the fitness board.,reaches up and wrings her hands before swinging her sat postcard time.,is bowling and comes out to shoot at them.,\"climbs on the back of the car, staying outside with her body next to her.\",gold0-orig,pos,unl,unl,unl,unl,The woman in red top is standing.,The woman\nanetv_Jth2Zlpr1gQ,3623,The woman stretches her arms one side first then the next one. The woman,\"put her arms in front of her, then stretch out and turned around.\",\"dismounts and do tricks and flip overboard, while still swinging.\",dismounts her leg and stands on the bar.,finishes shaving and dries his face with his hands.,,gold0-orig,pos,unl,unl,unl,n/a,The woman stretches her arms one side first then the next one.,The woman\nlsmdc1005_Signs-4813,9732,Someone gently releases the handle. He,turns and treads calmly along the wooden veranda surrounding the house.,whips off his shirt.,lifts someone off his feet.,reaches for a plate of food.,crosses to the stage under his falls.,gold1-orig,pos,unl,unl,unl,unl,Someone gently releases the handle.,He\nlsmdc1005_Signs-4813,9735,Someone views the scene with restrained alarm. He,\"turns and spots the brown chevy 4x4 parked on a short driveway, a figure the wheel.\",picks up the phone and checks his iphone.,pauses at the corner of the station with a hand on his head.,crosses the road and shuts the door behind him.,hits the gas which starts to get worse.,gold0-orig,pos,unl,unl,unl,unl,Someone views the scene with restrained alarm.,He\nlsmdc1005_Signs-4813,9734,\"The compact ruin is deserted, the solid dark wood desk clattered with papers. Someone\",views the scene with restrained alarm.,\"appears to be covered numerous places, featuring someone twister to put on a piece of paper.\",dumps the metal down onto an adjoining roof.,is missing.,is crouched on a dark instruction module.,gold0-orig,pos,unl,unl,pos,pos,\"The compact ruin is deserted, the solid dark wood desk clattered with papers.\",Someone\nlsmdc1005_Signs-4813,9739,\"In the back are bundles of clothes which someone eyes questioningly. Returning his attention to the front, he\",notices a blood stain on someone's check shirt.,\"finds the bishop behind him, grabbing surprised and spaces.\",pulls out his masked trunks.,\"clears his top, slows to a stop, staring at a stone statue, which heaves down the mountain path.\",stares at the stares.,gold0-orig,pos,unl,unl,unl,unl,In the back are bundles of clothes which someone eyes questioningly.,\"Returning his attention to the front, he\"\nlsmdc1005_Signs-4813,9729,Someone knocks at the house of Vet. He,opens the screen door.,blows smoke into someone's mouth.,steps aside and joins someone in another doorway.,\"aims his revolver at someone, who tosses it aside.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone knocks at the house of Vet.,He\nlsmdc1005_Signs-4813,9733,\"He turns and treads calmly along the wooden veranda surrounding the house. Reaching the closed window, he\",stops and looks through the glass into an office.,finds someone sitting on a stone balcony alone.,climbs a flight of stairs.,waddles up beside the penguin on their way.,,gold0-orig,pos,unl,unl,unl,n/a,He turns and treads calmly along the wooden veranda surrounding the house.,\"Reaching the closed window, he\"\nlsmdc1005_Signs-4813,9737,\"Someone puts both hands on the sill and leans in with an inquisitive frown. Someone, the Asian man who stayed in town,\",\"sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead.\",is just raised discreetly to be calm and enjoying what he did in his arm.,turns off the front porch.,\"has gathered people, staring deep into the river.\",,gold1-orig,pos,unl,pos,pos,n/a,Someone puts both hands on the sill and leans in with an inquisitive frown.,\"Someone, the Asian man who stayed in town,\"\nlsmdc1005_Signs-4813,9728,\"Takes a coat from the closet, where someone is still glued to the tv. From the bedroom, someone\",'s looking at clouds through a telescope.,\"is pulling a car through the window's side window, then smokes the engine.\",goes to a box of hotel clothes and picks a small glass.,sees a man in a casino with someone.,is awakened for the first time of the neon sign realizing the distant door.,gold1-orig,pos,unl,unl,unl,unl,\"Takes a coat from the closet, where someone is still glued to the tv.\",\"From the bedroom, someone\"\nlsmdc1005_Signs-4813,9738,\"Someone, the Asian man who stayed in town, sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead. In the back\",are bundles of clothes which someone eyes questioningly.,\"seat, scraping lad's clay tattooed all around the cop's head and forehead, neither brakes or less and seats.\",\"seat, the men drink toward the entrance of the van.\",\"chamber, the mourners rush anxiously the remaining bagged, heading for the highway.\",\"enters another section of the cubicles, someone leans over peers at his glass.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, the Asian man who stayed in town, sits with one hand clamped to the steering wheel, rocking nervously and staring numbly ahead.\",In the back\nlsmdc1005_Signs-4813,9741,Someone is still staring ahead. He,lowers his eyes then frowns.,\"moves up, his eyes on her.\",sees no sound coming out of his old dog pantry.,\"turns, shifting his eyes to his aunt.\",,gold1-orig,pos,unl,unl,pos,n/a,Someone is still staring ahead.,He\nlsmdc1005_Signs-4813,9736,\"He turns and spots the brown Chevy 4x4 parked on a short driveway, a figure the wheel. Someone\",\"approaches the vehicle cautiously across a lawn, leaning over to get a view of its occupant.\",rushes into the cab and heads towards a cab with the cross standing before him.,compares it to the wheel sheath and stacked slightly in the eyes.,pats someone on the shoulder then heads back to the car.,\"reaches for the gun, then dashes around a bend in the ferry.\",gold1-orig,pos,unl,unl,pos,pos,\"He turns and spots the brown Chevy 4x4 parked on a short driveway, a figure the wheel.\",Someone\nlsmdc1005_Signs-4813,9740,\"Returning his attention to the front, he notices a blood stain on someone's check shirt. Someone\",is still staring ahead.,glances down as he takes a sawed off pipe.,\"slithers out into his room, concealed by one stick.\",sits down and sprays the muddy flowerbed.,spreads her arms wide.,gold1-reannot,pos,unl,unl,unl,pos,\"Returning his attention to the front, he notices a blood stain on someone's check shirt.\",Someone\nlsmdc1005_Signs-4813,9730,He opens the screen door. He,\"peers through slats in the wooden door behind it, then, gingerly closes the screen.\",\"wields shears, bringing it down with his gloved hands, then electrocutes!\",walks across the darkened foyer as the cabinets across the floor have emptied.,climbs a staircase and places his hands on the table.,leads the class to the restaurant's reception desk.,gold1-reannot,pos,unl,unl,pos,pos,He opens the screen door.,He\nlsmdc1005_Signs-4813,9726,\"On another page is a picture of a bluey green alien with an angular jaw, and black almond shaped eyes. Flames\",pouring from the upstairs windows.,falls curled in the center of someone's lap.,\"with clouds and light flash, several images appear.\",\"rushes from the church and grabs four sons in his arms, as they throw it onto the pavement.\",\"paints on top, and the stylist touches the maze with the printed white hair, many more headlines the image parts.\",gold0-reannot,pos,unl,unl,unl,unl,\"On another page is a picture of a bluey green alien with an angular jaw, and black almond shaped eyes.\",Flames\nlsmdc1005_Signs-4813,9731,\"He peers through slats in the wooden door behind it, then, gingerly closes the screen. Someone\",gently releases the handle.,laughs and is actually racked up a completed supply.,opens it and puts on a pair of blue slacks on the other side.,\"sits on the ground, his head covered with blood, the light of overhead light reflected in the sky.\",sit at the long tables.,gold0-reannot,pos,unl,unl,unl,pos,\"He peers through slats in the wooden door behind it, then, gingerly closes the screen.\",Someone\nlsmdc1005_Signs-4813,9727,Flames pouring from the upstairs windows. People,are staring at the picture.,run over the dimly lit house in the loft under the stairs.,run across the cover of minas tirith.,walk up a stairwell.,on the makeshift roaming get out.,gold0-reannot,pos,unl,unl,unl,unl,Flames pouring from the upstairs windows.,People\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,385,The flag outside flies at half - mast. Music,plays from a gramophone beside a grave.,\"fall in the air over a balcony, then someone bursts and the men watch helplessly.\",goes to control as people leap into the opening.,\", at the slopes, it floats into the air and dives onto it's boat.\",is instantly on his feet.,gold0-orig,pos,unl,unl,unl,unl,The flag outside flies at half - mast.,Music\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,387,\"People are amongst the mourners. As the song ends, a man\",claps two cymbals together.,begins sporting a quill.,puts a small pipe.,makes his way through the flashing rooms.,is alone at viewers appear on the stairs.,gold0-orig,pos,unl,unl,unl,unl,People are amongst the mourners.,\"As the song ends, a man\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,386,Music plays from a gramophone beside a grave. People,are amongst the mourners.,creep back inside the house with a smoking snacks.,watch around the jumpers and then a title screen.,\"people are watching them, one - box, people is top of hogwarts.\",,gold0-orig,pos,unl,unl,unl,n/a,Music plays from a gramophone beside a grave.,People\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86311,388,\"As the song ends, a man claps two cymbals together. Someone\",eavesdrops on a conversation.,sets down her body using the baton to speak.,screams in rage as frustration.,\"smiles at her father, then grin.\",applies the cream to his palm.,gold1-reannot,pos,unl,unl,pos,pos,\"As the song ends, a man claps two cymbals together.\",Someone\nanetv_2_KTq85YQcY,3191,\"Then, the woman iron the shirt carefully. After, the woman puts the shirt on a hanger and button the shirt, then she\",coil the wire around the iron.,puts her hair to her arm.,shows the man to clean dresser.,tosses it an iron and boots over.,uses the handles with plenty of flips to do the thighs then explains.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the woman iron the shirt carefully.\",\"After, the woman puts the shirt on a hanger and button the shirt, then she\"\nanetv_2_KTq85YQcY,10480,A woman appears and fills the iron with water. She then,demonstrates how to iron clothing with it.,lifts the wind bottle up to her face and sweeps the shaving cream over her eyes.,sprays cleaner on a pink towel.,shows a shot of a jumbo drone.,pours paint on the glass.,gold0-orig,pos,unl,pos,pos,pos,A woman appears and fills the iron with water.,She then\nanetv_2_KTq85YQcY,10479,An iron is shown sitting on a counter top. A woman,appears and fills the iron with water.,showing how to use a clean toothbrush and iron the cut legs.,walks up the stairs to an exercise machine and begins talking.,is wiping the water with a cloth.,,gold0-orig,pos,unl,unl,unl,n/a,An iron is shown sitting on a counter top.,A woman\nanetv_2_KTq85YQcY,3190,\"A woman fills the container of an iron with water, after she reads the tag of a shirt to set up the iron temperature. Then, the woman\",iron the shirt carefully.,resumes preparing the hair process.,talks to the camera again at the end.,puts a pair of yellow polo on her chest.,,gold0-orig,pos,unl,pos,pos,n/a,\"A woman fills the container of an iron with water, after she reads the tag of a shirt to set up the iron temperature.\",\"Then, the woman\"\nlsmdc1011_The_Help-78235,17961,\"At her home, a well groomed brunette in a flowery, sleeveless, '60s style dress pulls out a length of toilet paper and marks it with dots. Someone, a stout, well - cushioned maid,\",trots to the bottom of the stairs and shouts up.,drops a newspaper as she waits in.,rises so they are given an antique.,strides up to the table and pulls out her shoes.,rejoins her new class.,gold1-orig,pos,unl,unl,unl,unl,\"At her home, a well groomed brunette in a flowery, sleeveless, '60s style dress pulls out a length of toilet paper and marks it with dots.\",\"Someone, a stout, well - cushioned maid,\"\nanetv_UcnzlGqUEyA,20022,A person picks up a piece of fruit. A brush,is shown on the screen.,is used to brush the wax.,is shown on the floor and a man grabs her arm.,is added to the chocolate.,,gold0-orig,pos,unl,unl,unl,n/a,A person picks up a piece of fruit.,A brush\nanetv_UcnzlGqUEyA,20023,A brush is shown on the screen. A man,is shaving his beard.,demonstrates how to play a saxophone.,holds a razor above her.,bends down to remove the shoes.,holds up a horse to stop from doing a jump.,gold0-reannot,pos,unl,unl,unl,unl,A brush is shown on the screen.,A man\nanetv_ah3tGziTbds,5304,A close up of a board is shown with a person pointing around. This,leads into boats boats riding along the water with people steering.,cuts around the ring and various people push around the side as well as the various keys and more people around the back.,shifts like a dog on the floor attached to a board.,are interviewed again across the table.,speaks to the camera and begins playing on top of a board.,gold1-orig,pos,unl,unl,unl,pos,A close up of a board is shown with a person pointing around.,This\nanetv_ah3tGziTbds,5305,This leads into boats boats riding along the water with people steering. The people,continue to ride along the water and leads back to the man with the board.,are then seen standing it in foreground and chasing down a rough leash.,moving around one another and ends by speaking and pointing to the camera.,speak to the camera while doing parts and raising the bottles into the water.,narrow the raft while looking off into the distance.,gold1-orig,pos,unl,unl,unl,unl,This leads into boats boats riding along the water with people steering.,The people\nanetv_ah3tGziTbds,9167,Video of people sailing on large bodies of water is shown. The man,is standing by the whiteboard and speaks to the camera.,continues skating around the snowy area while more kids are shown so well.,\"holds waves on a machine, waves and drinks games.\",is shown holding a hand and bringing the man down.,has no effect as the other logo is seen.,gold1-reannot,pos,unl,unl,pos,pos,Video of people sailing on large bodies of water is shown.,The man\nlsmdc3008_BAD_TEACHER-4053,1037,\"Someone takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple. Later, someone\",enters her full classroom.,opens a box album filled with tiny black dots.,kneels near the man's house shoulder.,\"stands clothed with someone, carrying his wife's blood signature.\",gathers his winnings to his money.,gold1-orig,unl,unl,unl,unl,unl,Someone takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple.,\"Later, someone\"\nlsmdc3008_BAD_TEACHER-4053,1036,She puts down her purse and puts on a pair of rubber gloves. Someone,takes a leafy sprig from a plastic baggie and rubs the plant over the surface of a large red apple.,gets off the faucet and puts his hand on his shoe.,steps into her bedroom and puts her feet down.,\"struggles to pick the key colonial instinctively reach for someone, and snags it against the back of her car.\",presses a button on the door and pulls down the sleeve.,gold1-orig,pos,unl,unl,unl,pos,She puts down her purse and puts on a pair of rubber gloves.,Someone\nlsmdc3008_BAD_TEACHER-4053,1035,She takes out a few credit cards. She,puts down her purse and puts on a pair of rubber gloves.,pours beer into jars.,looks at every ensemble and resume looking at the cloisters.,uses it to drop a syringe.,takes an extra coffee.,gold0-reannot,pos,unl,unl,unl,pos,She takes out a few credit cards.,She\nanetv_4BRCZaaITn0,12414,\"He walks back and forth, avoiding the rocks. He\",turns at the driveway and returns again.,makes a few baskets and moves followed.,gazes straight into view and shakes his head.,stands in the crowd while the crowd watches.,,gold1-orig,pos,unl,unl,unl,n/a,\"He walks back and forth, avoiding the rocks.\",He\nanetv_4BRCZaaITn0,12413,A man is mowing his lawn around a tree in front of his house. He,\"walks back and forth, avoiding the rocks.\",is using the rake to put shoes down when he says so.,sets the mower down and walks away watching her.,walks down a city street.,puts his hand on top of a tree.,gold0-reannot,pos,unl,unl,unl,pos,A man is mowing his lawn around a tree in front of his house.,He\nlsmdc0019_Pulp_Fiction-56938,10266,Someone steps in with a fire extinguisher and sprays both guys until they are wide awake and wet as otters. The two prisoners,look up at their captors.,stop kissing then cross his blonde wolf.,put up a glass - pong table.,\"follow suit, lingering on their headlamps, and smile.\",are loaded with weapons and ammo.,gold0-orig,pos,unl,unl,unl,unl,Someone steps in with a fire extinguisher and sprays both guys until they are wide awake and wet as otters.,The two prisoners\nlsmdc0014_Ist_das_Leben_nicht_schoen-54440,13576,\"She is standing talking to one of the boys, Freddie, a glass of punch in her hand. She\",turns around and for the first time she sees someone.,\"is slightly distorted on the bar, and looks like he is a boy.\",sets the sun upright with her hands in the towel.,talks about how to serve the glass with water.,,gold0-orig,pos,unl,unl,pos,n/a,\"She is standing talking to one of the boys, Freddie, a glass of punch in her hand.\",She\nlsmdc0014_Ist_das_Leben_nicht_schoen-54440,13578,\"A whistle is heard offscreen, and the music stops. As the music starts and couples begin dancing once more, they\",look at each other.,stop and smile and cheering to her.,continue into the tunnel taking place.,get excited to give him water.,hear german voices singing.,gold0-orig,pos,unl,unl,unl,unl,\"A whistle is heard offscreen, and the music stops.\",\"As the music starts and couples begin dancing once more, they\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54440,13575,\"He stops suddenly as he sees someone, staring at her. She\",\"is standing talking to one of the boys, freddie, a glass of punch in her hand.\",\"steps forward, starts to run.\",\"lunges, his legs swinging.\",\"looks to her at the hall, then turns and looks at her.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"He stops suddenly as he sees someone, staring at her.\",She\nanetv_lGKUEUBeo8U,4662,The man walked to the blue platform. The man,steps up and down on the platform as he moves around it.,walked to the edge and positioned the ball.,sat on the ground next to the man in black and shake hands.,\"hit the floor in the air once the girl started, then pushed to the ground when he cheered.\",walked toward the gate.,gold0-orig,pos,unl,unl,unl,pos,The man walked to the blue platform.,The man\nanetv_lGKUEUBeo8U,4663,The man steps up and down on the platform as he moves around it. The man,move his arms around him as he moves.,walks to the end of the rope and stops it and begins to help.,continues to work up the wall as well.,steps away from the case and continues looking at him in the mirror.,continues to move around in a circle.,gold1-orig,pos,unl,unl,unl,pos,The man steps up and down on the platform as he moves around it.,The man\nanetv_lGKUEUBeo8U,227,A boy walks into frame and begins stepping up and down on a small stairs moving his arms and legs around. He,spins around the board still moving up and down adding kicks in the end and bowing while running away.,continues speaking and moving an object on the bars while still speaking to the camera.,smooths after his legs several times and jumps over the material.,continues to pull and continues to walk around as the camera captures him from several angles.,,gold1-orig,pos,unl,unl,unl,n/a,A boy walks into frame and begins stepping up and down on a small stairs moving his arms and legs around.,He\nanetv_QSV7f5XHohE,6988,\"The woman makes holes in the center of four cakes, then pile the cakes putting frosty between them. Then, the woman\",cut to make a small cake that put on top of the piled cakes.,picks up the glitter and adds it to a circle and shows the finished nails in the pan.,puts vegetables on a tray and continue cutting the meat and putting the cutters next to them.,cut them and eat the insides of a sandwich.,\"puts the three apples, and presents it to the woman, who adds more ingredients in the cake.\",gold0-orig,pos,unl,unl,unl,pos,\"The woman makes holes in the center of four cakes, then pile the cakes putting frosty between them.\",\"Then, the woman\"\nanetv_QSV7f5XHohE,12210,Several photos of cakes are shown. A women,is then shown making a cake.,is seen using a toy cooking pot.,turns to a table with a handful of five bodies and a lot of knives.,is in a field holding a clipping potato.,is putting something onto a table.,gold0-orig,pos,unl,unl,unl,pos,Several photos of cakes are shown.,A women\nanetv_QSV7f5XHohE,6989,\"After, the woman putss a barbie head on top the cake and cut them to give a dress form. Next, the woman\",\"puts white frosty around the cake and even the dress, then make groves.\",\"takes two lemon slices, a sharpening put and take a bite of strawberries.\",moves the ball and shows and enter the background.,brings back plates strawberry cake to groom the present while another looks and makes sprouts.,puts the cloth polish in white until all the stencil finally is to help the girls cut.,gold1-orig,pos,unl,unl,unl,unl,\"After, the woman putss a barbie head on top the cake and cut them to give a dress form.\",\"Next, the woman\"\nanetv_QSV7f5XHohE,12211,She intersts a doll on top of the cake. She then,makes it look like the cake is a dress.,walks forward trying to brush it again.,creates a curly chocolate and candies on a tree.,uses the bulbs to bake cookies.,walks out of the kitchen.,gold1-orig,pos,unl,unl,unl,pos,She intersts a doll on top of the cake.,She then\nanetv_QSV7f5XHohE,6987,A woman stands on front cakes and a barbie with a beautiful dress. The woman,\"makes holes in the center of four cakes, then pile the cakes putting frosty between them.\",turns the flower and mix it in a blender.,turns the hula hoop.,finishes wallpaper and smiles.,,gold1-reannot,pos,unl,unl,pos,n/a,A woman stands on front cakes and a barbie with a beautiful dress.,The woman\nanetv_B1DNoole3Wo,12957,A young girl is shown speaking to the camera with an older man smoking a cigarette in the background. More text is shown and another child,is seen speaking to the camera while her mom smokes and she breathe in an inhaler.,plays along the camera while two are skating behind plaster.,is shown in a picture getting all into a girl.,is shown with a woman on front her side.,is walking up a beach in the background.,gold0-orig,pos,unl,unl,unl,pos,A young girl is shown speaking to the camera with an older man smoking a cigarette in the background.,More text is shown and another child\nanetv_B1DNoole3Wo,14575,A little girl walks out of a house talking. Her mom,is smoking a cigarette in the background.,gets to her feet.,hits the ball upside down and resumes her bath.,comes out to fuss her castles.,is blindfolded in a backyard on a lawn mower.,gold0-orig,pos,unl,unl,unl,pos,A little girl walks out of a house talking.,Her mom\nanetv_B1DNoole3Wo,14576,Her mom is smoking a cigarette in the background. The girl,is shown through the years becoming sick because of her mother's smoking.,holds an harmonica above her ear and touches it while looking compass and pointing.,talks to the camera and does several more comments that it's did not quite a bit of fun.,went back to recording.,takes a few puffs and vodka puffs out of her mouth.,gold0-orig,pos,unl,unl,unl,unl,Her mom is smoking a cigarette in the background.,The girl\nanetv_2cUJTeArPsI,19275,Little kid is hanging from a pole in a playground. playground,is shown in a dusty field in a big park.,is jumping past the kid as a child on to the kid's playground.,is doing hopscotch on a hardwood floor in a park.,\"is hitting the playground, swinging in it.\",,gold0-orig,pos,unl,unl,unl,n/a,Little kid is hanging from a pole in a playground.,playground\nanetv_bCD6_kGsF9A,6416,A woman wearing blue jeans skates on one leg. Woman wearing blue jeans,spins around on skates.,are swimming in the pool.,gets behind the wheel.,and white shirt is practicing the rope moves.,,gold0-orig,pos,unl,unl,pos,n/a,A woman wearing blue jeans skates on one leg.,Woman wearing blue jeans\nanetv_bCD6_kGsF9A,8987,Woman is on roller skate in a competition doing tricks around cones. people,is sitting on chairs under tents watching the girl.,are in the bumper cars with a bull standing behind them.,peddle in and lift each other together.,are shown riding tubes on the field in a race.,are bouncing up and down on a walk while sitting in front of the pans.,gold0-orig,pos,unl,unl,unl,unl,Woman is on roller skate in a competition doing tricks around cones.,people\nanetv_bCD6_kGsF9A,8988,People is sitting on chairs under tents watching the girl. people,is standing next to the fence watching the girl.,are standing in the middle of the room watching them.,are standing on the beach in a white yellow helium.,are marching on the wooden field in front of the audience.,are standing on a standing position watching.,gold1-orig,pos,unl,unl,unl,pos,People is sitting on chairs under tents watching the girl.,people\nanetv_LbXhdPZakpo,1074,A large group of girls are seen running around a field playing field hockey. Coaches,yell to the women on the sides as they continue to play.,watching them come to the end and talk to one another.,try to stay while others watch on the sides.,continues with one of them watching horses and begins to play with the game.,are shown with various sand scoring play with their team mates.,gold1-orig,pos,unl,unl,unl,unl,A large group of girls are seen running around a field playing field hockey.,Coaches\nanetv_LbXhdPZakpo,14273,A large group of people are seen running around a field. They,are shown playing a game of field hockey with one another.,hit the ball back and fourth on the floor.,try to get out the balls.,are playing a large game of basketball.,continue to run out of the way and walk around.,gold0-reannot,pos,unl,unl,unl,pos,A large group of people are seen running around a field.,They\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7656,\"Clutching the letter, he peers in through a window. The young man\",steps inside and lets the door swing shut behind him.,sits up and reading a cigar.,describes a sheer collie grin.,takes the grail diary from its pocket and lets go of it.,stretches behind the hood.,gold1-orig,pos,unl,unl,unl,unl,\"Clutching the letter, he peers in through a window.\",The young man\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7651,It bears a wax seal. Someone,watches someone as he takes it behind the counter and rips it open.,is having a deserted long time.,transforms into a paper mini carving.,reads the map of honor and wears a red stamp.,stands reading english from reading file.,gold0-orig,pos,unl,unl,unl,pos,It bears a wax seal.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7677,\"As someone approaches, he puts the remainder back in a bowl and dusts his hands off on his pants. She\",\"looks down at him with a sweet, coy smile.\",myrtle's on top of someone's foot who starts to spin forward.,\"into one hole, he spots a man with a pair of shoes, and starts to go down the sleeves.\",\"continues the buttons on a shirt tee, gazing at the island, then lights a play piece of paper on the wall.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As someone approaches, he puts the remainder back in a bowl and dusts his hands off on his pants.\",She\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7665,\"He binds someone's wrists. As the trapped hunter looks on, the vampire\",\"opens a gleaming straight razor, turns it over and touches the blade.\",\"looks at someone's blood, then lowers his arm, and irons the string smoking his wand.\",\"raises his tank companion at him and hesitates, as if he is a newfound charge for the ticket.\",rips the wire wings and climbs twice onto the door.,loses his tank sprouting and succeeds in the flames.,gold0-orig,pos,unl,unl,unl,unl,He binds someone's wrists.,\"As the trapped hunter looks on, the vampire\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7675,\"Facing someone, someone discreetly jerks his head aside. She\",turns and scans the room.,bends over to try to drag her away.,turns towards the other toast on the spot.,tosses a leaf box down.,leans her face against her bonds.,gold1-orig,pos,unl,unl,unl,unl,\"Facing someone, someone discreetly jerks his head aside.\",She\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7668,\"He catches it in his mouth, then slashes the vampire's throat. Contracting his abdomen, he\",curls upward and cuts through the snare rope.,rips off a pair of gloomy helmets.,\"sees marley, planting a small shoulder spear in a the unlit neon cauldron.\",collapses to the couch.,\"grabs her leg, bumps her, and caresses her throat.\",gold1-orig,pos,unl,unl,unl,pos,\"He catches it in his mouth, then slashes the vampire's throat.\",\"Contracting his abdomen, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7660,\"The dust clears revealing someone's distorted, monstrous features. He\",knocks someone back then activates a trapdoor.,smokes his cigarette as he sets down his beer.,goes to the window.,falls from the collision into oncoming vehicles.,,gold1-orig,pos,unl,unl,pos,n/a,\"The dust clears revealing someone's distorted, monstrous features.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7669,\"Contracting his abdomen, he curls upward and cuts through the snare rope. Someone\",\"falls to the floor, frees his wrists and retrieves his ax.\",\"faces the dead man, then walks off.\",pulls someone to a stop and lies on top of someone.,walks to the location and the screen fades to black.,\"tightens his entire body supporting a padded rope, then leaps through the air to reveal his toned crop.\",gold0-orig,pos,unl,unl,unl,unl,\"Contracting his abdomen, he curls upward and cuts through the snare rope.\",Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7652,Someone watches someone as he takes it behind the counter and rips it open. Someone,hands her list to him with a friendly smirk.,walks around a corner and then up at another floor with panes filled with bowls.,studies the envelope with paste.,opens the door and steps inside.,\"nods, his smile fading.\",gold0-orig,unl,unl,unl,unl,unl,Someone watches someone as he takes it behind the counter and rips it open.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7661,He knocks someone back then activates a trapdoor. The vampire hunter plunges through and a rope snare,catches him around the ankle.,pumps his fevered leg.,surges up a fetal position.,extends over its head.,stunts on the lower level of the zombies.,gold0-orig,pos,unl,unl,unl,unl,He knocks someone back then activates a trapdoor.,The vampire hunter plunges through and a rope snare\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7667,\"Crouching low, the vampire slips the bowl beneath the hunter. He\",\"catches it in his mouth, then slashes the vampire's throat.\",turns and reaches for the automaton shaped bird.,notices the rider's black eye.,peers toward the ship then turns to it as it rides away.,lumbers off on the deck below.,gold1-orig,pos,unl,unl,unl,unl,\"Crouching low, the vampire slips the bowl beneath the hunter.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7663,\"His ax lies beside them. Arriving, someone\",kicks it away and strikes him.,shoots someone by his side.,finds grappling hooks together.,pauses and moves to them.,,gold0-orig,pos,pos,pos,pos,n/a,His ax lies beside them.,\"Arriving, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7657,\"He crosses the floor between two service counters quickening his pace as he nears the back. In the pharmacy workroom, a bespectacled man with sizable sideburns\",grinds a pestle in a mortar.,is escorted to the floor with a woman and someone's seen in close shots.,and a modest mouth arrives.,lays his pinned strands of a chain aside.,,gold0-orig,pos,unl,unl,unl,n/a,He crosses the floor between two service counters quickening his pace as he nears the back.,\"In the pharmacy workroom, a bespectacled man with sizable sideburns\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7676,\"Beyond a circle of waltzing couples, someone sits snacking on nuts. As someone approaches, he\",puts the remainder back in a bowl and dusts his hands off on his pants.,addresses someone and the other two.,reaches down and grabs another phone.,turns his back to someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Beyond a circle of waltzing couples, someone sits snacking on nuts.\",\"As someone approaches, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7662,\"The vampire hunter plunges through and a rope snare catches him around the ankle. As we pull back to find someone in a room full of victims, each suspended upside down, the young hunter futile\",reaches for the floor.,orders passionately on a platform.,trying to free the intertube.,effort to win a game in broken.,,gold0-orig,pos,unl,unl,unl,n/a,The vampire hunter plunges through and a rope snare catches him around the ankle.,\"As we pull back to find someone in a room full of victims, each suspended upside down, the young hunter futile\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7674,\"Someone pulls out dress pants. Wearing a tuxedo with his stovepipe hat, someone\",follows someone into a mansion.,walks on to his drink.,stands in shock on his cell.,strolls up to a mirror wearing a white bikini.,,gold0-orig,pos,unl,unl,unl,n/a,Someone pulls out dress pants.,\"Wearing a tuxedo with his stovepipe hat, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7672,\"Spraying blood soaks half his face. Using his hand, someone\",wipes it away with a horrified expression.,turns to find his shaver on the table.,steps into view as his gills still pressed on the register.,follows in removing the stick.,spots an uncomfortable light in someone's forehead.,gold0-orig,pos,unl,unl,unl,unl,Spraying blood soaks half his face.,\"Using his hand, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7664,\"Arriving, someone kicks it away and strikes him. He\",binds someone's wrists.,presses the remote control on the bus.,throws it with his opponent.,rushes over to the seat.,laughs in the end.,gold0-orig,pos,unl,unl,unl,pos,\"Arriving, someone kicks it away and strikes him.\",He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7673,He tosses someone a parcel. Someone,pulls out dress pants.,turns to the waiter.,pokes someone with his staff as he shows.,grabs a magnetic tool from the box and continues to iron over the papers.,,gold0-orig,pos,unl,unl,unl,n/a,He tosses someone a parcel.,Someone\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7654,\"At dusk, as someone leaves, someone locks up then throws down his apron and hurries to action. In his room, he\",\"slaps down the letter, dons an overcoat and gets his ax.\",strides around a large packed living room and paces.,looks up into a utility room and connects walls to toned darkness.,walks on a road through obstacles and a large examples of trees.,studies a poster accelerator.,gold0-orig,pos,unl,unl,unl,unl,\"At dusk, as someone leaves, someone locks up then throws down his apron and hurries to action.\",\"In his room, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7666,\"Someone resumes his struggle to free himself as Stibble sharpens the blade against the porcelain bowl's ornate rim. Crouching low, the vampire\",slips the bowl beneath the hunter.,grabs his stomach and slides down in the final position to spot wooded surroundings.,\"tests the facial muscles in his hand, then lowers his leg.\",\"flexes his free foot, his weapon wincing.\",relaxes at the refugees quickens his pace.,gold0-reannot,pos,unl,unl,unl,unl,Someone resumes his struggle to free himself as Stibble sharpens the blade against the porcelain bowl's ornate rim.,\"Crouching low, the vampire\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7658,\"As he turns, someone narrows his eyes. Stibble\",rests the pestle against the mortar's rim.,\", someone walks into the room and shuts him into a pillar.\",\", someone greets his friends and someone leaves some leaves.\",\"the wall, someone thrusts, and someone hands he throwing someone to the sheer window material.\",shoot flies across the field like a shooting target.,gold1-reannot,pos,unl,unl,unl,pos,\"As he turns, someone narrows his eyes.\",Stibble\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7653,\"Someone hands her list to him with a friendly smirk. At dusk, as someone leaves, someone\",locks up then throws down his apron and hurries to action.,leads an opponent with a thoughtful look.,stands at a window rubbing fluffy white back into view.,smiles at the cooler of bills and a row of silverware.,reappears at the waterfront railing.,gold0-reannot,pos,unl,unl,pos,pos,Someone hands her list to him with a friendly smirk.,\"At dusk, as someone leaves, someone\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7671,\"As somone charges, he delivers a mighty upward blow. Spraying blood\",soaks half his face.,\"from someone's leg, someone swings him back down.\",\", he lies on a floor that bears the silverware and treatment.\",gushes through the giant.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As somone charges, he delivers a mighty upward blow.\",Spraying blood\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7659,\"Someone charges, but the vampire throws powder. The dust\",\"clears revealing someone's distorted, monstrous features.\",rises into the solders position.,\"clears, and wearing a hand face as he swims.\",\"clears, and there's cue tabletop jutting up at the feet of the toolbox.\",blasts the attacker in.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone charges, but the vampire throws powder.\",The dust\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7655,\"At night, we swoop low over the streets of Springfield passing smoking chimneys as lightning flashes in the distance. Clutching the letter, he\",peers in through a window.,passes fountains and numbers.,scans the devastation but finds himself on the deserted spot.,finds someone lying on the ground by a window overlooking the city.,looks up at a house framed by a tree standing there.,gold1-reannot,pos,unl,unl,pos,pos,\"At night, we swoop low over the streets of Springfield passing smoking chimneys as lightning flashes in the distance.\",\"Clutching the letter, he\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1970,7670,\"Someone falls to the floor, frees his wrists and retrieves his ax. As somone charges, he\",delivers a mighty upward blow.,flails and drags him onto a high boulder.,\"feels his ankle, and turns around.\",tosses the scroll to the deck.,pounces from the door.,gold1-reannot,pos,unl,pos,pos,pos,\"Someone falls to the floor, frees his wrists and retrieves his ax.\",\"As somone charges, he\"\nlsmdc1014_2012-78908,3939,A crack appears on the supermarket floor. Cereal boxes,shake as someone reaches out for them.,are tossed on a closed drawer.,are stacked around a pot until a face in multiple windows displays a triangle of liquor and powerful furniture and fresh plates.,decorate the corner of the underneath.,\"lie against the wall cabinets, desks, desks.\",gold0-reannot,pos,unl,unl,unl,unl,A crack appears on the supermarket floor.,Cereal boxes\nlsmdc1014_2012-78908,3938,\"At the checkout, a customer's trolley rolls slowly away. A crack\",appears on the supermarket floor.,emerges from the doorway open and firmly opens.,enters a coastal town.,\"opens, then a snowy bird.\",is heard over the bar.,gold0-reannot,pos,unl,unl,unl,unl,\"At the checkout, a customer's trolley rolls slowly away.\",A crack\nanetv_kzbQWKUMyS0,17908,The man mounts a tightrope and performs on it. The man,dismounts from the tightrope and hops around the stage.,dismounts and lands on the rocks.,plays the drums from side to side.,does a handstand and dismounts with both hands.,,gold0-orig,pos,unl,unl,pos,n/a,The man mounts a tightrope and performs on it.,The man\nanetv_kzbQWKUMyS0,17909,The man dismounts from the tightrope and hops around the stage. The man,mounts the rope again and performs tricks.,has black is jumping on the bars.,\"grabs the boy, knocking him into the crowd.\",hops on the bench and walks into the room.,walks away while the conductor jumps up.,gold0-orig,pos,unl,unl,unl,unl,The man dismounts from the tightrope and hops around the stage.,The man\nanetv_kzbQWKUMyS0,17911,The man dismounts from the rope and performs some kicks on stage. The man,mounts the rope once more and performs more tricks.,is seen standing together in the air performing the same thing.,moves the horse jumping up and down with his partner.,finishes and cleans his hands and ends with the two people fencing together.,,gold0-orig,pos,unl,unl,unl,n/a,The man dismounts from the rope and performs some kicks on stage.,The man\nanetv_kzbQWKUMyS0,17912,The man mounts the rope once more and performs more tricks. The man briefly,dismounts from the rope.,moves forward to assist several angles.,does another bronze routine in the park section.,turns again entering another game.,crashes the calf and talks to the camera.,gold0-orig,pos,unl,unl,unl,unl,The man mounts the rope once more and performs more tricks.,The man briefly\nanetv_kzbQWKUMyS0,17910,The man mounts the rope again and performs tricks. The man,dismounts from the rope and performs some kicks on stage.,spins and throws the animal as it swings to the floor.,dismounts and lands in the balance beam.,runs after the calf and films.,grabs the rope while many watch on the side.,gold0-orig,pos,unl,unl,unl,pos,The man mounts the rope again and performs tricks.,The man\nanetv_kzbQWKUMyS0,2437,\"After the split, the man jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it. The circus show continues, and the man\",continues doing jumps on top of the slack line and clapping to get the audiences' participation.,is shown again and making several circles before jumping high on a mat and signing it to adjust head.,vanishes behind the pedestrian than run in the street before outside the gym.,is congratulated by the words on the screen.,,gold0-orig,pos,unl,unl,unl,n/a,\"After the split, the man jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it.\",\"The circus show continues, and the man\"\nanetv_kzbQWKUMyS0,17914,The man briefly dismounts from the rope again. The man,dismounts a final time and poses for the audience.,turns and stokes on the land.,walks to the right and grabs a ball.,flips back and flips in the water.,uses the rope to hop down the platform on the ground.,gold0-reannot,pos,unl,unl,pos,pos,The man briefly dismounts from the rope again.,The man\nanetv_kzbQWKUMyS0,2436,\"As he dances, the man jumps on top of a rope and starts teetering back and forth until he slides down into a split. After the split, the man\",jumps up and begins doing flips up and down on the line before finally getting off and flipping underneath it.,put in the rope and let the flight of balance go over the bar.,twists him off the side and spins him around.,jump back up and goes over the bar to high level to his head and jump off the bows to the man that continue bellhop,grabs it and pulls himself back to land.,gold0-reannot,pos,unl,unl,unl,unl,\"As he dances, the man jumps on top of a rope and starts teetering back and forth until he slides down into a split.\",\"After the split, the man\"\nanetv_kzbQWKUMyS0,2435,\"A young man appears out of the corner doing a flip on a large stage and clapping to the audience. As he dances, the man\",jumps on top of a rope and starts teetering back and forth until he slides down into a split.,with a accordian begins to maintain the dance.,jumps some claps and the audience applauds him for his own performance.,\"gets in a red squares, stands up quickly and dances as the point of the city is so happy.\",performs sitting on the platform and begins performing the tricks with the baton while another performer dismounts from the stage.,gold1-reannot,pos,unl,unl,unl,unl,A young man appears out of the corner doing a flip on a large stage and clapping to the audience.,\"As he dances, the man\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83882,13113,\"Hearing a noise from the hall, he looks up from his book to see trunks being moved. She\",comes in to see him.,pushes him forward with fear and drunkenly not to go.,\"eyes him briefly, and quickly takes the phone.\",leans against the canvas bale.,,gold0-orig,pos,unl,unl,pos,n/a,\"Hearing a noise from the hall, he looks up from his book to see trunks being moved.\",She\nlsmdc1029_Pride_And_Prejudice_Disk_One-83882,13112,\"Indoors, someone is reading. Hearing a noise from the hall, he\",looks up from his book to see trunks being moved.,turns sharply toward someone with the crowd of greeting.,\"lowers to someone's sitting car, adjusts the receiver, and fumbles.\",goes back to listen.,\"creeps out of the store, looking left.\",gold0-orig,pos,unl,unl,pos,pos,\"Indoors, someone is reading.\",\"Hearing a noise from the hall, he\"\nanetv_JKa3jnnowNo,19228,A man is on a ladder drilling something. Another man,is kneeling down in front of him and hammers nails into the ceiling.,is seen seated inside a bowling alley.,puts a reproachful bag in a large pile.,is snowboarding the snowy bush.,is shown blowing his garbage around.,gold0-orig,pos,unl,unl,unl,unl,A man is on a ladder drilling something.,Another man\nanetv_JKa3jnnowNo,19227,Two men are standing on a roof of a house. A man,is on a ladder drilling something.,dumps water in the sitting room.,holds a man tight over their bodies.,is using a bucket of wet wax weed.,walks towards a brick building on a wall.,gold0-orig,pos,unl,unl,unl,unl,Two men are standing on a roof of a house.,A man\nanetv_JKa3jnnowNo,1563,A man puts nails to new planks in the roof. A man,holds a flame while putting covers to the roof.,puts down the blanket on a chair hanging silently from the wall.,uses a ladder to remove ice from a disc.,shows off a layer of cement while uses a brush to polish a pair of metal pieces with a metal stick hanging and typewriter.,is on a wall outside the gym.,gold0-orig,pos,unl,unl,unl,unl,A man puts nails to new planks in the roof.,A man\nlsmdc3041_JUST_GO_WITH_IT-18400,16613,Someone sucks on his straw as if it's a cigarette. The girl,picks up her slice and winces at it.,dumps into his rental and strokes someone's hand.,\"swings her arms around, then touches the mannequin's head and places lightly on her heart.\",\"waggles her long, long fingers.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone sucks on his straw as if it's a cigarette.,The girl\nlsmdc3037_IRON_MAN2-16378,8367,Two officers on motorcycles escort a black luxury car along a city street. The car,stops outside a building's ornate facade.,drives down the street and makes it a group packed past.,travels down one of the aisles.,travels down the side of a building on an elevated central street.,passes two police cars parked by the plastic black lorry.,gold0-orig,pos,unl,unl,pos,pos,Two officers on motorcycles escort a black luxury car along a city street.,The car\nlsmdc3037_IRON_MAN2-16378,8368,The car stops outside a building's ornate facade. Someone,steps out of the car and waves to onlookers.,goes upstairs and approaches someone.,watches as he purses his lips.,holds up two pieces of paper.,,gold0-orig,pos,unl,unl,pos,n/a,The car stops outside a building's ornate facade.,Someone\nlsmdc3037_IRON_MAN2-16378,8370,\"Someone and someone step out and join someone as he enters the hotel. Inside, someone\",walks off while someone and someone step into a restaurant.,finds someone standing in his bedroom.,stands at his desk desk and packs a can of paper.,delivers up in front of someone.,runs out the door.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone step out and join someone as he enters the hotel.,\"Inside, someone\"\nlsmdc3037_IRON_MAN2-16378,8366,\"Someone smiles at someone, who turns away. Two officers on motorcycles\",escort a black luxury car along a city street.,take come out of their duplex.,stand in the doorway of a car.,scramble out of their vehicles.,\"fall on the street, the mother two vehicles.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone smiles at someone, who turns away.\",Two officers on motorcycles\nlsmdc3037_IRON_MAN2-16378,8363,\"In a photo, someone, wearing a dark bikini, lies on her side. Someone\",stands and walks slightly bent over.,seems a bit longer playing the sea for her.,grabs a clipboard and turns off the faucet.,stands and unbuttons her shirt.,comes face first into the water.,gold1-orig,pos,unl,pos,pos,pos,\"In a photo, someone, wearing a dark bikini, lies on her side.\",Someone\nlsmdc1028_No_Reservations-82944,14582,\"In someone's room, someone searches through a cardboard box. She\",pulls out a scarf.,sits at the kitchen table.,takes a notice from someone's bag and sits up.,draws out her pen and hands it back.,,gold0-orig,pos,unl,unl,pos,n/a,\"In someone's room, someone searches through a cardboard box.\",She\nlsmdc1028_No_Reservations-82944,14584,Someone follows someone into the hallway. Someone,picks up her keys and grabs her coat.,\"hurdles the counter, then staggers away and grabs him by the throat.\",\"opens her eyes, her eyes fill with flames.\",takes a bite of food.,walks through the open plastic doors.,gold0-orig,pos,unl,unl,unl,pos,Someone follows someone into the hallway.,Someone\nlsmdc1028_No_Reservations-82944,14585,Someone picks up her keys and grabs her coat. Someone,stands and stares at the door.,goes into the living room and switches off the helmet lamp.,is still working on someone's cell.,leaves and walks wearily onto a concrete.,removes her glasses and points.,gold1-orig,pos,unl,unl,unl,unl,Someone picks up her keys and grabs her coat.,Someone\nlsmdc1028_No_Reservations-82944,14583,\"Someone puts the pink, stripy scarf back and begins to look through a second box. Someone\",follows someone into the hallway.,places the tallies seals box.,is into the fact that it is almost a horrible evening.,\"walks over to the older woman reading, then beams proudly.\",goes down and leans on the canvas.,gold1-reannot,pos,unl,unl,pos,pos,\"Someone puts the pink, stripy scarf back and begins to look through a second box.\",Someone\nlsmdc3058_RUBY_SPARKS-28223,14170,Someone looks up at the house and shakes his head. Someone,takes his phone back.,\"stands, looks at the clock.\",\"walks along the corridor, smiling holding his cell phone.\",spots someone watching him from outside the house.,reaches the top of the ladder and sets down railings.,gold1-orig,pos,unl,unl,unl,pos,Someone looks up at the house and shakes his head.,Someone\nlsmdc3058_RUBY_SPARKS-28223,14175,He steps around the desk and whispers in his brother's ear. Someone,shoots him an incredulous look.,\"stands, wearing her hat and a doctor's cap.\",shots of someone's smile reveals if most of the women were already hard behind.,\"takes out his phone, and places a slip of paper into his pocket.\",pulls someone towards the floor and pushed him to a second section.,gold1-orig,pos,unl,unl,pos,pos,He steps around the desk and whispers in his brother's ear.,Someone\nlsmdc3058_RUBY_SPARKS-28223,14179,He looks up from his typewriter then hurries out. He,returns to the kitchen presenting a bottle of wine.,\"runs some waves as he heads back toward the square, and turns with his new assistant.\",watches the valet stand anxiously.,glances over his shoulder and looks at his sister who's still hanging her nightie.,\"picks out a message, with a telegram which is in the wall before setting it back on the table.\",gold0-orig,pos,unl,pos,pos,pos,He looks up from his typewriter then hurries out.,He\nlsmdc3058_RUBY_SPARKS-28223,14177,\"Someone notes their perplexed grins. Left alone with her, someone\",backs against a wall.,appears on the chalkboard.,tucks into her panties.,answers her bedside clock.,gives her a goblet.,gold0-orig,pos,unl,unl,unl,unl,Someone notes their perplexed grins.,\"Left alone with her, someone\"\nlsmdc3058_RUBY_SPARKS-28223,14171,Someone takes his phone back. Someone,leads the way up the staircase.,drives someone's car into her drive.,\"clenches his fist, dropping it to the ground and forgetting.\",\"smiles at him, unhappily someone in his seat.\",\"unzips his tie, then strides back inside.\",gold1-reannot,pos,unl,unl,unl,unl,Someone takes his phone back.,Someone\nlsmdc3058_RUBY_SPARKS-28223,14176,The brothers trade a look. Someone,notes their perplexed grins.,slips out of the cab and faces a door.,strides over to the couch and places her back to him.,is windsurfing in the lake parking lots.,leaves someone standing in place as the chopper speeds off her normal road.,gold0-reannot,pos,unl,unl,unl,unl,The brothers trade a look.,Someone\nlsmdc3058_RUBY_SPARKS-28223,14173,\"From the kitchen counter, someone watches someone and someone return to the balcony. They\",cross to the door with an affected breezy air.,dump a banana in front of someone.,roll down a window.,walks toward the door which opens it.,,gold0-reannot,pos,unl,unl,pos,n/a,\"From the kitchen counter, someone watches someone and someone return to the balcony.\",They\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5928,The witch dodges the bolts. As she,soars through the forest.,\"leaps away, it collapses.\",\"watches, the shape opens the door.\",stops clutching a cake.,,gold1-orig,unl,unl,unl,unl,n/a,The witch dodges the bolts.,As she\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5929,\"As she soars through the forest. Someone, a young muscular man with dark hair,\",stands nearby with his gun on his shoulder.,sits in the back of a home.,comes up behind him.,\"sits on the road with his legs crossed, waiting for the answer.\",,gold0-orig,pos,unl,pos,pos,n/a,As she soars through the forest.,\"Someone, a young muscular man with dark hair,\"\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5927,She points her crossbow at a witch with scaly skin and black hair who turns. The hag,throws a dagger at someone.,knocks her arm back and runs off.,rewinds the bar to calm her.,smashes someone's vase in a steel grip.,looks up from her and aims.,gold1-orig,pos,unl,unl,unl,pos,She points her crossbow at a witch with scaly skin and black hair who turns.,The hag\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1549,5926,\"Someone, a young woman with dark hair and an athletic build, kicks down the door of an isolated cottage in the woods. She\",points her crossbow at a witch with scaly skin and black hair who turns.,\"has set it on the tree and mows the lawn, back towards his house in his head!\",knows what's wrong then shines at her.,\"pauses for a moment, then turns back in someone's direction.\",looks around them uneasily.,gold0-orig,pos,unl,unl,pos,pos,\"Someone, a young woman with dark hair and an athletic build, kicks down the door of an isolated cottage in the woods.\",She\nanetv_itgR5a-hH_o,16274,A man is seen playing piano and smiling to the camera. He,continues playing while looking down at his hands.,points at the camera again.,continues decorating the object and walking along the aisle.,continues speaking while smiling to the camera.,pauses to speak to the camera while the camera captures it in the movements.,gold0-orig,pos,unl,unl,pos,pos,A man is seen playing piano and smiling to the camera.,He\nanetv_itgR5a-hH_o,11042,A man is smiling and playing a piano. The camera,shows all the keys inside the piano as he plays.,shows he started to play the guitar.,zooms in on the break dancing had.,stands in a close up with a white screen.,is walking to a table.,gold1-orig,pos,unl,unl,unl,unl,A man is smiling and playing a piano.,The camera\nanetv_itgR5a-hH_o,16275,He continues playing while looking down at his hands. People,walk in and out of frame as he continues to play.,continues playing as the audience cheers him to the music.,go down and sitting to the end.,man looks up at a black screen showing that he will win a game while sitting.,are collecting papers on the street.,gold0-orig,pos,unl,unl,unl,unl,He continues playing while looking down at his hands.,People\nanetv_EU-IdUKbLSg,16222,Shots of people playing are shown when one hits the other. The coaches,yell to one another while people still play the game.,are then seen kicking onto a park and running around while holding another ball.,begin to play the drums wall while they all pass to the camera.,are then several other laughing and they eventually disappear to measure the distance.,continuing to speak to the camera while gesturing to the camera.,gold1-orig,pos,unl,unl,unl,unl,Shots of people playing are shown when one hits the other.,The coaches\nanetv_ghFOHoBiyD8,3999,A man wearing glasses is holding a book and talking. He,is shown entering a bowling alley.,is throwing a dart before them.,is standing on a triangular pier as the man prepares his harmonica.,reads a paper onto a box.,,gold1-orig,unl,unl,unl,unl,n/a,A man wearing glasses is holding a book and talking.,He\nanetv_ghFOHoBiyD8,4000,He is shown entering a bowling alley. The man,interviews players and joins them in a game of bowling.,skates through a belly shop.,takes the third magazine.,loads the first one go.,\"holds two balls, some of them dead as he speaks.\",gold0-orig,pos,unl,unl,unl,unl,He is shown entering a bowling alley.,The man\nanetv_ghFOHoBiyD8,4001,The man interviews players and joins them in a game of bowling. A player,explains the techniques he uses.,loses his game and does another cheer.,throws his feet up onto the field.,blocks his punch with a third attempt.,grabs the ball and tries to bounce but throws it on the ground.,gold0-reannot,pos,unl,unl,unl,unl,The man interviews players and joins them in a game of bowling.,A player\nanetv_lsvZBtYMXZM,1447,\"The man in the suit and the woman continue to dance alone. The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit\",dodges the punch and pushes the man in the tank top out of the dance floor.,does the back turning off the music.,instructs his opponent who stand and talk watching them in the end.,blows him the beat.,,gold0-orig,pos,unl,unl,unl,n/a,The man in the suit and the woman continue to dance alone.,\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit\"\nanetv_lsvZBtYMXZM,1444,Two people are standing face to face under a spotlight. The man wearing a black and white suit,simulates a slap to the woman wearing a dress on the right.,is skating down on outdoor street.,is holding on a tennis tile.,joins the man in a room.,is singing as people talks to the camera.,gold1-orig,pos,unl,unl,unl,pos,Two people are standing face to face under a spotlight.,The man wearing a black and white suit\nanetv_lsvZBtYMXZM,1445,The man wearing a black and white suit simulates a slap to the woman wearing a dress on the right. A man wearing a black tank top immediately runs into the spotlight to stand between the two and they all,begin to dance as the room is lit up to show a large dancing area with people in the audience watching them.,made their pointe back and forth from the first store.,meet on their escape.,run around with the water magazine that platforms dive in the aisle holding dancers too hold on as they wave together.,pose with a whistle.,gold0-orig,pos,unl,unl,unl,pos,The man wearing a black and white suit simulates a slap to the woman wearing a dress on the right.,A man wearing a black tank top immediately runs into the spotlight to stand between the two and they all\nanetv_lsvZBtYMXZM,1446,The three continue to dance until the man in the black tank top picks the woman up and throws her to the ground and leaves the dance floor. The man in the suit and the woman,continue to dance alone.,clap and sit on the mat as the smokey party begins.,put water around in the hoop near view.,keep dancing on the mat.,perform various dance moves throughout the whole class.,gold1-orig,pos,unl,unl,pos,pos,The three continue to dance until the man in the black tank top picks the woman up and throws her to the ground and leaves the dance floor.,The man in the suit and the woman\nanetv_lsvZBtYMXZM,1448,\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit dodges the punch and pushes the man in the tank top out of the dance floor. The man in the suit and the woman in the dress continue to dance alone and they\",end dramatically in a pose with her back on the ground and the man hovering above her.,start recording the two people with the towel around each other.,pretend they were zooming a tablecloth.,\"are almost on wearing, after the men turn one of them on one of them.\",hold each other up.,gold0-orig,pos,unl,unl,unl,pos,\"The man in the tank top returns to the dance floor and tries to punch the man in the suit, but the man in the suit dodges the punch and pushes the man in the tank top out of the dance floor.\",The man in the suit and the woman in the dress continue to dance alone and they\nlsmdc1060_Yes_man-99381,5886,He looks into the room and sees a guitar. Someone,points at the guy and goes inside.,looks shifty as he steps away from her.,steps down to a balcony.,pretends to be asleep.,is drinking from the bottle.,gold1-orig,pos,unl,unl,pos,pos,He looks into the room and sees a guitar.,Someone\nlsmdc1060_Yes_man-99381,5881,The desperate man is standing on a ledge outside the top floor. Someone,bursts into an apartment.,moves a stack of boxes down off his feet.,is hit in the stomach in action.,\"starts moving very slowly and still, then gets up and slams the bar shut.\",clatters down the stairs.,gold0-orig,pos,unl,unl,unl,unl,The desperate man is standing on a ledge outside the top floor.,Someone\nlsmdc1060_Yes_man-99381,5887,\"Someone points at the guy and goes inside. On the street, people\",\"are standing in the crowd, looking up anxiously.\",'s wife uses a roll of toilet paper to wrap an essay in the pages.,cower from their fat men and throws in the garbage car.,\"watch other horseman struggle out a door and alertly calm their easy gaze, and wave before dismounting.\",wander to a bus in a park.,gold0-orig,pos,unl,unl,unl,unl,Someone points at the guy and goes inside.,\"On the street, people\"\nlsmdc1060_Yes_man-99381,5883,Someone goes into the cluttered living room and looks around. He,leans out of an arched window and looks at the guy on the ledge.,squeezes through a pillow then sits up and finds herself staring at him with a tight face.,sees someone entering into a crate.,\"hangs on either side of the corridor, waiting for his trip to eat.\",does someone's rather bouncy throw appearing on around the stage and taking a bite from a flask.,gold1-orig,unl,unl,unl,unl,unl,Someone goes into the cluttered living room and looks around.,He\nlsmdc1060_Yes_man-99381,5879,\"Standing on the street, someone stares into the distance with a steely resolve. He\",\"bursts into the tall, red brick apartment building and runs up a central staircase.\",downs a long long drink then twists it into the waistband of his left glasses and turns back to someone.,checks his hand then glances out with the light from the car.,crouches down beside someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Standing on the street, someone stares into the distance with a steely resolve.\",He\nlsmdc1060_Yes_man-99381,5880,\"He bursts into the tall, red brick apartment building and runs up a central staircase. The desperate man\",is standing on a ledge outside the top floor.,goes over high raindrops.,lands on the train and sings in someone's offices.,flings himself off the car and somersaults into his center.,,gold0-orig,pos,unl,unl,unl,n/a,\"He bursts into the tall, red brick apartment building and runs up a central staircase.\",The desperate man\nlsmdc1060_Yes_man-99381,5882,Someone bursts into an apartment. Someone,goes into the cluttered living room and looks around.,\"enters, waking up by his slippers.\",\"the scaffolding, someone struggles to balance upright.\",studies a simple garden pot and finding someone in a kitchen door.,throws someone into the couch onto the bed as someone and someone step out of the room.,gold1-orig,pos,unl,unl,pos,pos,Someone bursts into an apartment.,Someone\nlsmdc1060_Yes_man-99381,5884,He leans out of an arched window and looks at the guy on the ledge. He,\"is a casually dressed, portly guy with thick, black hair.\",\"sits rocking back and forth as he reads the medal, which has gone from his torso.\",partially falls off beside the bed while a black - haired woman looks him out the window.,shakes the ground like a penis.,\"opens the door, pays his someone, and gives the driver the bat.\",gold0-reannot,pos,unl,unl,unl,unl,He leans out of an arched window and looks at the guy on the ledge.,He\nlsmdc1060_Yes_man-99381,5885,\"He is a casually dressed, portly guy with thick, black hair. He\",looks into the room and sees a guitar.,has a blow mustache and wears a cool usual beard mustache.,makes her way to the desk where she silently hears the telephone call which the woman keeps on.,is combed out out of his folders and white barber pecks.,looks at someone at a loss.,gold0-reannot,pos,unl,unl,unl,pos,\"He is a casually dressed, portly guy with thick, black hair.\",He\nanetv_waF8oGaQqvI,9145,\"The woman stands up to show her tattoo and the woman is briefly shown sunbathing with the tattoo covered up. A close up of her tattoo is shown and words appear over it that say's Democrats are more likely to have tattoos, then a white screen\",appears with the blue words in the middle that say howcast.,appears with white words that read left me cut in to day com dot com.,appears with white text that displays the gel colored sparkles.,\"appears with green text appear, then leap two zero across the screen.\",,gold1-orig,pos,unl,unl,pos,n/a,The woman stands up to show her tattoo and the woman is briefly shown sunbathing with the tattoo covered up.,\"A close up of her tattoo is shown and words appear over it that say's Democrats are more likely to have tattoos, then a white screen\"\nanetv_waF8oGaQqvI,9144,When he's done tattooing her he holds up a white bottle with a green cap and talks to her while showing it and white words appear on the screen giving a warning that Applying too much topical anesthetic and then covering the tattoo can cause seizures. The woman stands up to show her tattoo and the woman,is briefly shown sunbathing with the tattoo covered up.,is not holding the contact lens into her hand.,lit the shirt is watching.,has her item in her hand and strands of the tattoo in her hands and in her flickering settings.,is laying away on the kitchen floor.,gold1-orig,pos,unl,unl,unl,unl,When he's done tattooing her he holds up a white bottle with a green cap and talks to her while showing it and white words appear on the screen giving a warning that Applying too much topical anesthetic and then covering the tattoo can cause seizures.,The woman stands up to show her tattoo and the woman\nanetv_waF8oGaQqvI,9142,A special effect intro appears and a blue word appears in the middle of the screen and say's Howcast. A woman is lying on a bed in a business with a man sitting next to her and a list of things,pop up on the screen under the words you will need appear on the screen.,he is about to cross and the address of her name is shown.,and a website address.,on the counter in front of her.,immediately is shown.,gold1-reannot,pos,unl,unl,pos,pos,A special effect intro appears and a blue word appears in the middle of the screen and say's Howcast.,A woman is lying on a bed in a business with a man sitting next to her and a list of things\nanetv_zdaD55zVNdQ,10547,\"A man throws a hammer throw in a judged sports performance, outside, on a grass covered field with a group of onlookers on the side lines. A man\",\"approaches a square, paved, white surface surrounded by black netting.\",lifts the ball goes black and falls to the ground multiple times.,demonstrates how to do karate on the court.,has a microphone running through a plaza and an course on a track.,throws a ball and hits submerged.,gold1-orig,pos,unl,unl,pos,pos,\"A man throws a hammer throw in a judged sports performance, outside, on a grass covered field with a group of onlookers on the side lines.\",A man\nanetv_zdaD55zVNdQ,10548,Two people emerge with a long tape measure to measure the distance the hammer ball was thrown. The athlete,runs off jumping and smiling and chest bumps another player.,lands in the sun and packed with the standing title.,start to throw ball at the goal with the mallet.,quickly steps up on the discuss in the competition while smiling jim the matches.,swings the steel bar but the little one girl grab it.,gold0-orig,pos,unl,unl,unl,unl,Two people emerge with a long tape measure to measure the distance the hammer ball was thrown.,The athlete\nlsmdc1055_Marley_and_me-96673,16683,He runs his hand down Marley's beige coat. He,\"strokes the dog's tail, which is n't wagging now.\",lobs his flashlight from the direction of someone.,treads along the top of the stairs.,\"picks one, then turns back slowly.\",\"chucks it on a corner, then stirs his pizza.\",gold0-orig,pos,unl,unl,unl,unl,He runs his hand down Marley's beige coat.,He\nlsmdc1058_The_Damned_united-98362,18900,\"Derby players hit a ball, then run up and down the stands. Someone\",joins someone on the terraces.,calls the japanese and talks.,kicks the ball and runs from the opposing sandy and pumps a somersault while bouncing.,swimmers get across from it and shake their hands for an victory.,runs in front of a home and throws a ball.,gold1-reannot,pos,unl,unl,unl,pos,\"Derby players hit a ball, then run up and down the stands.\",Someone\nlsmdc3058_RUBY_SPARKS-28112,12937,\"Reaching the upstairs landing, he peers over the railing. Someone\",finds no sign of the woman downstairs.,spits into the basin.,looks through the same tunnel.,launches a boat on the line and slips.,faces the other officer as he steadies himself.,gold1-orig,pos,unl,unl,unl,pos,\"Reaching the upstairs landing, he peers over the railing.\",Someone\nlsmdc3058_RUBY_SPARKS-28112,12940,\"He dashes through doorway and slams it shut behind him. Now in his bathroom, someone\",dials a call on his cellphone and paces.,sleeps on someone's lap.,lies in only briefs and drops to the floor.,smiles into his shoulder.,,gold1-orig,pos,unl,unl,unl,n/a,He dashes through doorway and slams it shut behind him.,\"Now in his bathroom, someone\"\nlsmdc3058_RUBY_SPARKS-28112,12942,\"He removes his glasses briefly and rubs his eyes. Ending the call, he\",braces both hands on the counter and leans over breathlessly.,sits down at the table and leaves the room.,joins the marines on the golden floor.,\"smiles slightly, then gives a shy smile.\",\"takes off his jacket, and heads toward his door.\",gold0-orig,pos,unl,pos,pos,pos,He removes his glasses briefly and rubs his eyes.,\"Ending the call, he\"\nlsmdc3058_RUBY_SPARKS-28112,12936,\"He ventures cautiously from his office. Reaching the upstairs landing, he\",peers over the railing.,grins at him remorsefully.,sees someone lying on the bed.,hurries to the door.,finds someone sitting nearby.,gold0-orig,pos,unl,unl,pos,pos,He ventures cautiously from his office.,\"Reaching the upstairs landing, he\"\nlsmdc3058_RUBY_SPARKS-28112,12941,\"Now in his bathroom, someone dials a call on his cellphone and paces. He\",removes his glasses briefly and rubs his eyes.,adjusts her seat belt.,\"bites his lip as he wakes up, his eyes still closed.\",leaves someone's truck with one of the cabs parked by the parking lot.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now in his bathroom, someone dials a call on his cellphone and paces.\",He\nlsmdc3058_RUBY_SPARKS-28112,12938,Someone finds no sign of the woman downstairs. Someone,\"turns away, his body relaxing.\",hops behind the counter and grabs a cellphone.,\"starts the truck driver, just as someone is walking to the windshield.\",walks over to his truck and climbs the stairs.,climbs out of bed and goes to door.,gold1-orig,pos,unl,pos,pos,pos,Someone finds no sign of the woman downstairs.,Someone\nlsmdc3058_RUBY_SPARKS-28112,12932,Someone backs up and sinks to the floor. He,springs from her touch.,falls down into the chair.,is raised and falls to the ground.,feels his son's knee.,pulls his jacket to his bachelor board and writes.,gold1-orig,pos,unl,unl,unl,unl,Someone backs up and sinks to the floor.,He\nlsmdc3058_RUBY_SPARKS-28112,12945,\"As she adds hot sauce, someone creeps downstairs and musters a casual demeanor. She\",steps out of the kitchen.,collapses to her knees in disgust.,hands the patrolman to someone.,hurries to an strawberries display.,,gold0-orig,pos,unl,unl,pos,n/a,\"As she adds hot sauce, someone creeps downstairs and musters a casual demeanor.\",She\nlsmdc3058_RUBY_SPARKS-28112,12935,His wide eyes magnified by his glasses. He,ventures cautiously from his office.,solemnly the concern on their faces.,gapes and holds notes.,raises his fingers to his temple.,,gold1-orig,pos,unl,unl,unl,n/a,His wide eyes magnified by his glasses.,He\nlsmdc3058_RUBY_SPARKS-28112,12943,\"Ending the call, he braces both hands on the counter and leans over breathlessly. Someone\",whisks eggs in a glass mixing bowl.,shoots his radio in the shoulder and the man move alongside.,slams down a slice of punch.,sits up and flips some switches.,shows a bartender given cash.,gold0-orig,pos,unl,unl,unl,unl,\"Ending the call, he braces both hands on the counter and leans over breathlessly.\",Someone\nlsmdc3058_RUBY_SPARKS-28112,12930,\"On his way out, someone freezes. Someone\",\"stands in his kitchen, eating a bowl of cereal.\",crosses the street and approaches a door at the end of the corridor.,turns on the phone.,\"reaches up, touches one.\",,gold1-orig,pos,unl,unl,unl,n/a,\"On his way out, someone freezes.\",Someone\nlsmdc3058_RUBY_SPARKS-28112,12934,He runs upstairs and into his office. Someone,looks around with his hand on his chest.,\"is n't interested, talking to others for activities to know.\",stops at the phone door and hangs up.,\"picks up his bag and dials, then walks inside.\",\"emerges from a blue van, overlooking the road.\",gold0-reannot,pos,unl,unl,unl,unl,He runs upstairs and into his office.,Someone\nlsmdc3058_RUBY_SPARKS-28112,12944,\"Someone whisks eggs in a glass mixing bowl. As she adds hot sauce, someone\",creeps downstairs and musters a casual demeanor.,sits inside a brown onion.,dumps the juice out of his mouth.,sits on a couch staring at the map.,spots someone and eats some soup then cracker glasses.,gold0-reannot,pos,unl,unl,unl,unl,Someone whisks eggs in a glass mixing bowl.,\"As she adds hot sauce, someone\"\nlsmdc3058_RUBY_SPARKS-28112,12931,\"Someone stands in his kitchen, eating a bowl of cereal. Someone\",backs up and sinks to the floor.,lowers her tearful gaze and closes the egg.,\"gets out of the limo, and addresses his staff.\",walks up a staircase to someone's apartment.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone stands in his kitchen, eating a bowl of cereal.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-630,18752,The soaring missile hits the craft. He,falls onto his back and watches as fire builds inside the vessel.,hurls both st into another fan.,breaks into a grin.,carefully tosses the plane into the sky.,\"threatens someone, knocking him to the ground.\",gold0-orig,pos,unl,unl,unl,unl,The soaring missile hits the craft.,He\nlsmdc3009_BATTLE_LOS_ANGELES-630,18750,\"Climbing up the concrete's slab, he spot the box. Someone\",fires at an alien which explodes and knocks someone.,collects a stack of strategy packets from the dividing section and walks on.,averts his defeated gaze and shakes his head.,rides up to his suv.,,gold0-orig,pos,unl,pos,pos,n/a,\"Climbing up the concrete's slab, he spot the box.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-630,18751,Someone fires at an alien which explodes and knocks someone. Someone,grabs the grenade launcher.,spins to someone and someone.,starts the fire and someone chases after someone.,slams him on the chopper.,stares at the authorities then stops.,gold0-reannot,pos,unl,unl,unl,pos,Someone fires at an alien which explodes and knocks someone.,Someone\nanetv_bM5VpCdPOrw,2129,A man speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area. He,puts white clothing all over his body and several others and leads into the people riding camels with others leading in front.,group are seen riding all around a city while speaking to the camera and showing off grinding and crashing.,like animals are seen on screen.,begin to wipe the window with a solution and show the changes.,zooms back onto the metal on the beach.,gold1-orig,pos,unl,unl,unl,unl,A man speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area.,He\nanetv_bM5VpCdPOrw,2128,A man is seen speaking to he camera and leads into clip of his truck driving and people riding behind. A man,speaks to the ground with a stick as they wander around a deserted area and showing off various plants and wildlife in the area.,drives the bike down the road with a man walking to the end of the bus.,races past the camera and gets off the boat while still speaking.,is seen speaking to the camera and leads into several stills of him riding on the surface.,slides up the back of a bike and the man uses water to walk in the can.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen speaking to he camera and leads into clip of his truck driving and people riding behind.,A man\nlsmdc3020_DEAR_JOHN-9557,16181,\"As he steps away, someone methodically sets the silverware aside. He\",picks up the plate in both hands.,meticulously drops his head and drops onto the floor.,wraps his arms around someone's limp body and holds her in position.,sits on the vanity chair on the bench.,\"returns softly to someone, who lies beside her.\",gold0-orig,pos,unl,unl,unl,unl,\"As he steps away, someone methodically sets the silverware aside.\",He\nlsmdc3020_DEAR_JOHN-9557,16183,\"Later, we watch through a doorway, as father and son eat at the dining room table. Someone\",\"gazes off as he chews, then looks down at his plate.\",in a wooden cafe hurries across a punching bag as he escorts his toiletries to a stage.,\"watches her tick up to show her looks as if she is sick, quite alone, etc.\",watches proudly as she vacantly rides past.,sledding face down the river mountains after adventure.,gold0-orig,pos,unl,unl,unl,unl,\"Later, we watch through a doorway, as father and son eat at the dining room table.\",Someone\nlsmdc3020_DEAR_JOHN-9557,16185,His father picks at his food. Someone,watches him with a concerned expression.,sits to watch the contestants.,pretends to be asleep with his eyes closed.,walks on to the dance floor.,don't notice someone's servant.,gold0-orig,pos,unl,unl,unl,unl,His father picks at his food.,Someone\nlsmdc3020_DEAR_JOHN-9557,16175,Someone shuffles into the dining room. His father,\"closes the oven door, crosses to an island counter and watches him.\",gives him a towel.,goes to wipe her robe but collapses on her bed.,keeps her gaze fixed on a woman in a cricket cage.,is strolling down a street.,gold1-orig,pos,unl,unl,unl,unl,Someone shuffles into the dining room.,His father\nlsmdc3020_DEAR_JOHN-9557,16172,\"Now an oven door opens, revealing two pans of lasagna. A pair of hands and oven mitts\",take them out and sets them on a stove.,\"are next, hauling food up a pot.\",shows a toaster attached to the ceiling.,sit around a table.,,gold0-orig,unl,unl,unl,unl,n/a,\"Now an oven door opens, revealing two pans of lasagna.\",A pair of hands and oven mitts\nlsmdc3020_DEAR_JOHN-9557,16171,\"Someone nods, and steps away. Now an oven door\",\"opens, revealing two pans of lasagna.\",flies open as someone waves at him.,shows the young woman standing in a short booth.,opens into a large bewildered entryway and clatters.,is locked behind the first.,gold0-orig,pos,unl,unl,unl,unl,\"Someone nods, and steps away.\",Now an oven door\nlsmdc3020_DEAR_JOHN-9557,16178,\"Taking it into the kitchen, he sets the plate, place mat and glass on the island. His father\",looks on as he starts to put the silverware away.,\"staggers idle, then ducks down by the dressing table and takes a bite.\",\"hangs his head and takes some paste, then eyes someone sweep her empty clothes.\",drops a glass into the pantry counter's empty linen refrigerator.,looks at his handiwork.,gold0-orig,pos,unl,unl,unl,unl,\"Taking it into the kitchen, he sets the plate, place mat and glass on the island.\",His father\nlsmdc3020_DEAR_JOHN-9557,16188,\"He turns, facing a window. Someone\",follows his gaze to find someone's car pulling up outside.,works her jaw to face him.,looks down and sees.,makes his way down the street into the busy living area and people arrive behind him.,goes from the old carriage to the counter where someone studies full of boxes.,gold1-orig,pos,unl,pos,pos,pos,\"He turns, facing a window.\",Someone\nlsmdc3020_DEAR_JOHN-9557,16187,\"With a melancholy stare, someone scoops a large fork full of lasagna into his mouth and chews. He\",\"turns, facing a window.\",lumbers down his steps.,\"runs over to a open window, which shatters.\",drinks from a bloody bottle of wine.,puts one hand on someone's bonnet.,gold1-orig,pos,unl,unl,unl,unl,\"With a melancholy stare, someone scoops a large fork full of lasagna into his mouth and chews.\",He\nlsmdc3020_DEAR_JOHN-9557,16184,\"Someone gazes off as he chews, then looks down at his plate. His father\",picks at his food.,looks up from his book.,spots the plate in the garden outside.,gives her a perplexed smile.,opens someone's egg.,gold0-orig,pos,unl,unl,unl,unl,\"Someone gazes off as he chews, then looks down at his plate.\",His father\nlsmdc3020_DEAR_JOHN-9557,16176,\"His father closes the oven door, crosses to an island counter and watches him. The young man\",clears one of three place settings from the dining room table.,lowers his glasses and looks at the car.,follows someone to the front of the restaurant and props a cigar on his lap.,pushes past a penguin.,picks up a roll of toilet paper and sets it down onto the table.,gold1-orig,pos,unl,unl,unl,unl,\"His father closes the oven door, crosses to an island counter and watches him.\",The young man\nlsmdc3020_DEAR_JOHN-9557,16179,His father looks on as he starts to put the silverware away. Someone,puts the silverware back down.,pushes himself up the battered preacher.,follows him as he strides out waves.,puts the sandwich in the toilet and climbs into slips out of frame.,peers closely at his reflection.,gold0-orig,pos,unl,unl,unl,pos,His father looks on as he starts to put the silverware away.,Someone\nlsmdc3020_DEAR_JOHN-9557,16177,\"The young man clears one of three place settings from the dining room table. Taking it into the kitchen, he\",\"sets the plate, place mat and glass on the island.\",\"shakes it again, then stands and reaches for a stack of bills.\",goes to the table and picks up a light rising from the top of the milk.,\"finds it stocked with milk, and pulls out the dead drawer.\",shuffles toward a house with a grim - faced woman in a basement downtown.,gold0-orig,pos,unl,unl,unl,unl,The young man clears one of three place settings from the dining room table.,\"Taking it into the kitchen, he\"\nlsmdc3020_DEAR_JOHN-9557,16182,\"He picks up the plate in both hands. Later, we\",\"watch through a doorway, as father and son eat at the dining room table.\",\"take back the bag, opens the room.\",walk into a vanishing truck.,wander through someone's loft as someone goes up the stairs and goes upstairs.,move to the top of the steps and retrieve some books.,gold0-orig,pos,unl,unl,unl,unl,He picks up the plate in both hands.,\"Later, we\"\nlsmdc3020_DEAR_JOHN-9557,16189,\"Standing, he leaves the table. He\",goes outside and jogs down off the porch.,goes back to his shirt and takes her hand.,points to the owners with hanky.,sets the knife by the campfire and takes a stuffed bite.,,gold0-orig,pos,unl,unl,unl,n/a,\"Standing, he leaves the table.\",He\nlsmdc3020_DEAR_JOHN-9557,16180,\"Someone puts the silverware back down. As he steps away, someone methodically\",sets the silverware aside.,tugs at the back of his neck.,\"hostility his shoelace with brown oversized gloves, then lifts his arms in a shrug.\",creeps out from another glamorous boy dress.,picks up a pair of blue cotton darts.,gold0-orig,pos,unl,unl,unl,unl,Someone puts the silverware back down.,\"As he steps away, someone methodically\"\nlsmdc3020_DEAR_JOHN-9557,16186,\"Someone watches him with a concerned expression. With a melancholy stare, someone\",scoops a large fork full of lasagna into his mouth and chews.,notices back at him as he walks away.,munches his breakfast and follows someone down the street.,squirms slightly toward her.,,gold0-orig,pos,unl,unl,pos,n/a,Someone watches him with a concerned expression.,\"With a melancholy stare, someone\"\nlsmdc3020_DEAR_JOHN-9557,16173,A pair of hands and oven mitts take them out and sets them on a stove. Someone,wanders into the kitchen.,puts with a knife in an oven.,wins and takes big gulps of water.,\"bites the sandwich, turns, and carries him out.\",clink into the frying pan and leave the kitchen.,gold0-orig,pos,unl,unl,unl,unl,A pair of hands and oven mitts take them out and sets them on a stove.,Someone\nlsmdc3020_DEAR_JOHN-9557,16190,\"He goes outside and jogs down off the porch. Getting out of her car, someone\",faces him with an affectionate smirk.,drives off with someone and someone.,spots the suv as he races away.,follows someone out weaving the rainy traffic.,,gold0-orig,pos,unl,unl,unl,n/a,He goes outside and jogs down off the porch.,\"Getting out of her car, someone\"\nlsmdc3020_DEAR_JOHN-9557,16170,Someone meets the kind man who hands him the paper with a pen. Someone,\"nods, and steps away.\",looks over his shoulder and sees someone who had been shot.,opens the cottage and slides the foot down the stairs.,\"stares at him, concerned.\",,gold0-reannot,pos,unl,unl,pos,n/a,Someone meets the kind man who hands him the paper with a pen.,Someone\nlsmdc3020_DEAR_JOHN-9557,16174,Someone wanders into the kitchen. Someone,shuffles into the dining room.,passes a sign featuring someone.,locks the table for her at the kitchen.,grabs a dollop and cuts someone off.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone wanders into the kitchen.,Someone\nlsmdc3020_DEAR_JOHN-9557,16169,Someone fishes a scrap of paper from the trash bin. Someone,meets the kind man who hands him the paper with a pen.,sees a pill in the glass.,puts in his ash bag and holds the ball on his shoulder.,opens a cabinet and fills a bottle of whiskey.,walks up to sit on a boulder at either end of the street.,gold1-reannot,pos,unl,unl,unl,unl,Someone fishes a scrap of paper from the trash bin.,Someone\nanetv_xqzsv8VpaNM,18316,A woman on a sail boat is coursing through the lake. the man then,returns to talk to the camera.,uses the sail washing while sitting on board on a boat.,fills a large round and the water pours on.,wipes the boat with his sail.,,gold1-orig,pos,unl,unl,unl,n/a,A woman on a sail boat is coursing through the lake.,the man then\nanetv_xqzsv8VpaNM,10256,Directions explain the wind functions. The man,is seen speaking again before disappearing.,is picking up a large blanket from the side and smoothing it hard placed while finishing it.,proceeds to clip the person with a bigger stick.,talks about music for a microphone.,,gold0-orig,pos,unl,unl,pos,n/a,Directions explain the wind functions.,The man\nanetv_xqzsv8VpaNM,10255,He is sailing on a boat in the water. Directions,explain the wind functions.,are at the rapids speed of the river.,see a man on fish.,is in the large lake of the rafters.,floats on the water for a few minutes.,gold0-orig,pos,unl,unl,unl,unl,He is sailing on a boat in the water.,Directions\nanetv_td15Nx9J0a4,6648,The referee calls a penalty on him for touching the ground and the man gets very upset and is protesting. There,is a replay shown.,are cheering and gesturing wildly for him to cut out.,is a man on a screen at the march.,are again as who were waiting.,man talks to the camera and see him coming to the entrance leading the other man.,gold0-orig,pos,unl,unl,unl,unl,The referee calls a penalty on him for touching the ground and the man gets very upset and is protesting.,There\nanetv_td15Nx9J0a4,6649,There is a replay shown. The man,walks around afterwards upset and picks up a towel pacing around afterwards.,\"is running down the track, then still hitting riding a swing.\",points to work the bike pedal is performed.,stops playing with a towel and starts to get in.,looks so happy and running and gives up to return.,gold0-orig,pos,unl,unl,unl,unl,There is a replay shown.,The man\nanetv_td15Nx9J0a4,2883,He then points to himself and the crowd looking confused and finally his score being shown. He,hits the ground angrily and then walks away still speaking to the coaches and pointing to the ground.,is shown skating in some water as well as several soccer players.,climbs back and finishes some speed.,stands up and scores and his opponent cheer.,,gold0-orig,pos,unl,unl,pos,n/a,He then points to himself and the crowd looking confused and finally his score being shown.,He\nanetv_td15Nx9J0a4,2882,An athletic man is seen standing ready holding a shot put and then throws the ball off into the distance. He then,points to himself and the crowd looking confused and finally his score being shown.,moves it back and down to the tree while others watch on the sidelines.,continues doing down the alley and ends with him running into the field.,spins around a capture while holding tennis rackets and hands him more weights.,is seen running along a track and moving around the court with his jump.,gold0-orig,pos,unl,unl,unl,pos,An athletic man is seen standing ready holding a shot put and then throws the ball off into the distance.,He then\nanetv_T4ZeB_TvS68,6379,An elderly man is standing inside a casino. He,talks about the decks and the way they are dealt.,is demonstrating how to make looks of a parked bike.,is holding a spoon of food to one another.,is using an iron to tai keys on the floor.,is shown inside a piece of box.,gold0-orig,pos,unl,unl,unl,unl,An elderly man is standing inside a casino.,He\nanetv_T4ZeB_TvS68,6380,He talks about the decks and the way they are dealt. A female dealer,is standing next to him as he gives the demonstration.,\"is shown followed by his coaches, then grilling and high kicks in a large grassy field.\",is given money and a bowling plate talks to the man.,is shown skating down a field in sand.,\"is files away, his talk about how to do your chords.\",gold0-orig,pos,unl,unl,unl,unl,He talks about the decks and the way they are dealt.,A female dealer\nanetv_T4ZeB_TvS68,15709,A female dealer waits patiently beside him. He,shows how to deal the hands during the game.,checks his phone with a grateful smile.,\"looks indifferent as he tips his hat to on, looking up at the police car screen.\",\"grabs a glass of wine, takes up a bottle of petrol, and walks into the apartment.\",puts a large wad of money in his hands and hangs up.,gold0-orig,pos,unl,unl,unl,pos,A female dealer waits patiently beside him.,He\nanetv_hfk93bEIjwc,18110,\"Some people are rafting on the river, paddling along with the currents. They\",\"follow several small waterfalls, trying to stay upright.\",wave at the side and begin to relax with all their might.,are riding themselves through the water as they go.,start to fall into place and go back to their raft.,\"go down, carrying something into inflatable rafts as they go into the rapids.\",gold0-orig,pos,unl,unl,unl,unl,\"Some people are rafting on the river, paddling along with the currents.\",They\nanetv_hfk93bEIjwc,18109,A raft is seen parked alongside a river. Some people,\"are rafting on the river, paddling along with the currents.\",paddle out and waves at the boat in the water.,are sailing in the water next to water.,are seen riding down the river while others gather around them.,paddle around a kayak with several tubers also hitting the water.,gold0-orig,pos,pos,pos,pos,pos,A raft is seen parked alongside a river.,Some people\nanetv_hfk93bEIjwc,2661,Several people are on a raft in the water. They,pass by many rocks.,use more rocks to recover.,go back and forth after the people.,are people on rafts rafting down the water.,,gold0-orig,pos,unl,unl,pos,n/a,Several people are on a raft in the water.,They\nanetv_w3N0Pyz2-m0,5227,A woman plays the violin in various outdoors settings. The woman,\"talks to someone off camera while seated indoors, interspersed with dramatic cuts of the woman playing the violin in outdoor environments.\",begins to play the flute.,shows many in fencing outfits while pulling the instrument.,perform wearing a red colored sweater while speaking to the band.,plays a violin in the crowd.,gold0-orig,pos,unl,unl,pos,pos,A woman plays the violin in various outdoors settings.,The woman\nanetv_w3N0Pyz2-m0,184,We see a lady playing a violin. We,see a lady taking in a brick room and playing the violin outside.,are listening to the person with their trophy.,then see a woman playing hopscotch.,see the lady pick up a violin and pose it from a return.,see a band with a band.,gold0-orig,pos,unl,unl,unl,unl,We see a lady playing a violin.,We\nanetv_w3N0Pyz2-m0,187,We see the lady playing in front of fire. W,see the ending title and video clips.,lady snatches the ball from the hands.,look across the cabinet from the camera.,moves now on the sidewalk.,,gold0-orig,pos,unl,unl,unl,n/a,We see the lady playing in front of fire.,W\nanetv_w3N0Pyz2-m0,183,We see a dark title screen. We,see a lady playing a violin.,see a lady sitting in front of an open sink.,see a player holding a large ball in the air.,see a lady in the mop head.,see a man dipping a finger on a lake and showing how he explains.,gold1-orig,pos,unl,unl,unl,unl,We see a dark title screen.,We\nanetv_p3PEMCN4h_g,11355,A large group of people appear at the starting point and being running through various different scenery's while many people are cheering them on. The people are now starting to approach the finish line and some,have ribbons placed around their neck.,kids riding her down the field.,fall off of the bar while the men walk away.,are crossing the waves together when they are underwater and performing different tricks along either side of them.,,gold1-orig,pos,unl,unl,unl,n/a,A large group of people appear at the starting point and being running through various different scenery's while many people are cheering them on.,The people are now starting to approach the finish line and some\nanetv_p3PEMCN4h_g,13050,A close up of a person running is shown in a public place. More people,are seen running down a track while several watch on the side.,are in fencing gear and instructs them.,are seen riding in a boat with horses in teh cheers still in sunscreen.,are seen sitting down on the steps.,are seen moving around the side and pointing to the camera.,gold0-orig,pos,unl,unl,pos,pos,A close up of a person running is shown in a public place.,More people\nanetv_p3PEMCN4h_g,11354,\"A lot of people appear in a large area, hanging out, walking and talking and the words on the screen say omaha Marathon Inaugural hits Running Festival. A large group of people\",appear at the starting point and being running through various different scenery's while many people are cheering them on.,are seen skiing and their bumper cars ride down of snowy hill.,\"are crashing, one of the individuals waits and the ball breaks and starts going back up.\",are shown at the bottom on a diving board and a plane falls between the rapids.,,gold0-orig,pos,unl,unl,unl,n/a,\"A lot of people appear in a large area, hanging out, walking and talking and the words on the screen say omaha Marathon Inaugural hits Running Festival.\",A large group of people\nanetv_p3PEMCN4h_g,13049,A group of people are seen wandering around as well as a man speaking to the camera. A close up of a person running,is shown in a public place.,is shown followed by a person crashing down onto a board in the middle.,is shown followed by many pictures of people riding around in them.,is seen motion leads by people throwing the ball and crashing into each other.,with a box and being blindfolded.,gold1-reannot,pos,unl,unl,unl,unl,A group of people are seen wandering around as well as a man speaking to the camera.,A close up of a person running\nanetv_p3PEMCN4h_g,11356,The people are now starting to approach the finish line and some have ribbons placed around their neck. The outro screen appears and it,includes the logo along with the twitter handles and facebook contact information.,\"includes with pictures of the person, three fifty, some very old, including red can and a military top and shown that the\",'s shown to different clips of trees just above the food area where waterfalls are selling with a lemon.,and the website are passing next to a white screen with the name and website.,changes to 1 person.,gold0-reannot,pos,unl,unl,pos,pos,The people are now starting to approach the finish line and some have ribbons placed around their neck.,The outro screen appears and it\nlsmdc1055_Marley_and_me-96497,15276,\"On the pavement, the people 'bin is surrounded by chewed empty boxes of baby equipment. Someone, accompanied by Marley,\",comes out of the house with another bin bag as the bin men arrive.,brings back from someone.,is sitting down by a couch with just a blanket on.,is lying on top of one of the dead trees.,,gold0-orig,pos,unl,pos,pos,n/a,\"On the pavement, the people 'bin is surrounded by chewed empty boxes of baby equipment.\",\"Someone, accompanied by Marley,\"\nlsmdc1055_Marley_and_me-96497,15275,\"Marley offers up a welcoming paw. On the pavement, the people 'bin\",is surrounded by chewed empty boxes of baby equipment.,can be seen with a friendly welcome.,'s with alter and other restaurant knob.,lowers its side door and catch him.,,gold0-orig,pos,unl,unl,unl,n/a,Marley offers up a welcoming paw.,\"On the pavement, the people 'bin\"\nlsmdc1055_Marley_and_me-96497,15273,Marley jumps up at the table with the baby on it. Someone,gets marley to sit as someone lifts the baby out of the carrier.,\"gets into his dusty apartment, munching a sandwich.\",climbs back onto the bed then stands.,is throwing a ball in the balls and hitting the ball walks around to the kids hit it once more.,is standing in the near aisle at a table in a big court on a of the boys.,gold0-orig,pos,unl,unl,unl,unl,Marley jumps up at the table with the baby on it.,Someone\nlsmdc1055_Marley_and_me-96497,15284,\"From the driver's seat, someone looks up and through a window, sees someone cuddling someone and singing to him. She\",\"notices the car, shows someone, and waves to her husband, who waves back with a smile.\",hikes around dirt and intervals across a neighborhood street.,sits down and shakes the trip off.,\"see someone's face and shirt with the back of his head, leaving only his right fist, and clutching his platinum wig.\",\"slaps him again, then looks over at him.\",gold0-orig,pos,unl,unl,unl,pos,\"From the driver's seat, someone looks up and through a window, sees someone cuddling someone and singing to him.\",She\nlsmdc1055_Marley_and_me-96497,15282,\"In the evening, someone and Marley drive up to the house with the headlights on. Marley's\",looking out of the rear passenger window.,crossed back on his pants as he approaches the front door.,hands comes into view and slides off her car.,posted in the ambulance.,sitting on the couch by a large pumpkin.,gold0-orig,pos,unl,unl,unl,unl,\"In the evening, someone and Marley drive up to the house with the headlights on.\",Marley's\nlsmdc1055_Marley_and_me-96497,15279,The big dog sits calmly and watches as a young couple kiss and cuddle on the sand. He,notices the dog watching the young couple.,\", the man dives on the water and makes a play.\",faces him briefly as someone leafs in.,looks down and notices a couple in her getting a package of popcorn from a convertible van.,slowly pushes his hair open and finishes putting the dog around him.,gold0-orig,pos,unl,unl,unl,unl,The big dog sits calmly and watches as a young couple kiss and cuddle on the sand.,He\nlsmdc1055_Marley_and_me-96497,15281,\"He wistfully chews a toothpick as Marley lies down on the sand. In the evening, someone and Marley\",drive up to the house with the headlights on.,leave on each of their seats.,swim all around the diner.,join a band at the center of a business procession where couples are watching.,fall away from the sun.,gold0-orig,pos,unl,unl,unl,unl,He wistfully chews a toothpick as Marley lies down on the sand.,\"In the evening, someone and Marley\"\nlsmdc1055_Marley_and_me-96497,15274,Someone gets Marley to sit as someone lifts the baby out of the carrier. Marley,offers up a welcoming paw.,\"slows to a stop, his body convulsing.\",'re sit in the foyer.,accepts the ford operator and throws a bicycle around.,is watched by a baggage animal.,gold0-orig,pos,unl,unl,unl,unl,Someone gets Marley to sit as someone lifts the baby out of the carrier.,Marley\nlsmdc1055_Marley_and_me-96497,15280,He notices the dog watching the young couple. He,wistfully chews a toothpick as marley lies down on the sand.,breaks fling the dog and admires her skirt and sneers.,bumps into a bell.,puts by the door light.,sets down and picks off a pile of flowers.,gold0-orig,pos,unl,unl,unl,pos,He notices the dog watching the young couple.,He\nlsmdc1055_Marley_and_me-96497,15278,Someone sits with Marley under a palm tree. The big dog,sits calmly and watches as a young couple kiss and cuddle on the sand.,sits alone in the hall.,holds into a couple of pie.,smiles and shows him his tooth cane.,sits on the bed next to her.,gold0-orig,pos,unl,unl,unl,pos,Someone sits with Marley under a palm tree.,The big dog\nlsmdc1055_Marley_and_me-96497,15283,\"Marley's looking out of the rear passenger window. From the driver's seat, someone\",\"looks up and through a window, sees someone cuddling someone and singing to him.\",\"'s face is pressed to a bottle, still looking at someone, who now drives him in the snow.\",stops down and sits upright.,\"pulls a blanket over the frame, exposing the partly open door.\",,gold0-reannot,pos,unl,unl,unl,n/a,Marley's looking out of the rear passenger window.,\"From the driver's seat, someone\"\nlsmdc0043_Thelma_and_Luise-68129,119,\"Reveal someone, standing in front of a closet, trying to decide what else to bring, as if she is forgotten something. The room\",looks like it was decorated entirely from a sears catalog.,\"is removed, though she is changed, but now wearing the same black dress.\",is very hewn with cages.,has been completely trashed.,,gold0-orig,pos,unl,unl,pos,n/a,\"Reveal someone, standing in front of a closet, trying to decide what else to bring, as if she is forgotten something.\",The room\nlsmdc0043_Thelma_and_Luise-68129,121,She is debating whether to take an extra pair of socks. She,decides not to and closes the suitcase.,is slipping over the dresser and starts to pick himself up.,\"places them on the ground, moving the reptile off their backs.\",pets her date to go after james affection.,,gold0-orig,pos,unl,unl,unl,n/a,She is debating whether to take an extra pair of socks.,She\nlsmdc0043_Thelma_and_Luise-68129,122,She decides not to and closes the suitcase. She,\"goes to the phone, picks it up and dials.\",opens her suitcase and rings out.,peeks over and points it at someone.,\"stares quietly out of sight, then turns back to him.\",goes to a coat on her bare feet and looks down at it.,gold1-orig,pos,unl,pos,pos,pos,She decides not to and closes the suitcase.,She\nlsmdc0043_Thelma_and_Luise-68129,120,She could be packing for camp. Her room,is as orderly as the suitcase.,is filled with people in the living room.,is pretty music as well as they were playing.,is covered with rain.,\"is somewhat wet, as usual.\",gold0-orig,pos,unl,unl,unl,unl,She could be packing for camp.,Her room\nanetv_IrTqW6Qn8mI,7938,A person is blowing leaves with a leaf blower. They,continue blowing the leaves across the yard.,see her leg wrapped in.,\"step to the grass and a bag falls from all the members, then, someone starts to blow out the leaves.\",are going in green grass and people begin to gather around the plants.,wake around high down above their heads.,gold0-orig,pos,unl,unl,unl,unl,A person is blowing leaves with a leaf blower.,They\nanetv_IrTqW6Qn8mI,7937,A close up is shown of leaves being blown. A person,is blowing leaves with a leaf blower.,is seen shoveling her leaves.,carves along the ground to catch type.,rides in a tube and gets further in and is able to get it done.,is seen applying large paint off into the distance while still moving back and fourth.,gold0-orig,pos,unl,unl,unl,unl,A close up is shown of leaves being blown.,A person\nanetv_r3dM-5cZ7e8,11426,A group of swimmers stand ready on a platform and bend down to their feet. Several men,stand behind them when they all jump in at the same time.,are also performing martial arts in a gymnasium with others as well as varied things.,crash as them spinning around and dives onto the ground.,are then seen sitting in the water holding weights.,are doing a routine on an outdoor diving board in the pool.,gold0-orig,pos,unl,unl,pos,pos,A group of swimmers stand ready on a platform and bend down to their feet.,Several men\nanetv_r3dM-5cZ7e8,11427,Several men stand behind them when they all jump in at the same time. The men,race back and fourth doing a butterfly movement back and fourth until they all reach the end.,continue to advance and on the pole they begin to jump back and forth as they jump.,run on the platform and push metal with toe move.,take pictures while others stand and stands at the end.,continuously twirl around a bit while others cheer and jump on afterward.,gold0-orig,pos,unl,unl,unl,pos,Several men stand behind them when they all jump in at the same time.,The men\nlsmdc0032_The_Princess_Bride-66587,3719,And his smile is enough. As The Grandfather,steps out the door.,reaches a corner they find someone talking to a dorm wearing surgical camp caps.,faces someone who stomps off.,throws the door just another door opens.,comes to the front page later someone quietly takes a seat with a stack of papers.,gold1-orig,pos,unl,unl,unl,unl,And his smile is enough.,As The Grandfather\nanetv_WMx0-3GZGUI,7304,The girl then removes what she made from the oven. A younger boy,watches while eating a cupcake.,dismounts from a beam and runs into the indoor sidelines and does a cartwheel and spins repeatedly.,in red and pink form join him at the bottom of the slide.,is next to beating a thanksgiving shaped cake when they talk.,enters the room where the blond boy is washing the same image with the orange sponge.,gold0-orig,pos,unl,unl,unl,unl,The girl then removes what she made from the oven.,A younger boy\nanetv_WMx0-3GZGUI,7303,The girl puts her mixture into the pans and puts them in an easy bake oven. The girl then,removes what she made from the oven.,bites the bread and pulls her out of the water looking.,\"takes a pan around cake, incinerating it.\",shows how to bake the salad and put the bake in a bowl.,whisks out a little while peeling the potatoes while still cutting the potato.,gold0-orig,pos,unl,unl,unl,unl,The girl puts her mixture into the pans and puts them in an easy bake oven.,The girl then\nanetv_WMx0-3GZGUI,7302,An adult helps the girl spray her baking pans. The girl,puts her mixture into the pans and puts them in an easy bake oven.,begins to shave her legs.,opens the bathroom door and talks.,\"paints the blue clear, and rubs on her belly.\",returns to a glass.,gold0-reannot,pos,unl,unl,unl,unl,An adult helps the girl spray her baking pans.,The girl\nanetv_WMx0-3GZGUI,7301,The girl mixes several things from small bowls in a bigger bowl. An adult,helps the girl spray her baking pans.,pulls up ingredients on a cookie sheet.,grabs her ground hand and crosses herself to the camera.,whisks the cup off the floor.,cuts the shape part of the piece.,gold1-reannot,pos,unl,unl,unl,unl,The girl mixes several things from small bowls in a bigger bowl.,An adult\nanetv_WMx0-3GZGUI,7300,A little girl is in a kitchen talking. The girl,mixes several things from small bowls in a bigger bowl.,is on skis in the kitchen.,swings and swings at the pinata.,almost takes the ball.,is talking next to a pair of socks.,gold0-reannot,pos,unl,unl,pos,pos,A little girl is in a kitchen talking.,The girl\nanetv_WMx0-3GZGUI,7305,A younger boy watches while eating a cupcake. The young girls,cuts the desert she made and eats it.,consider each other and play with someone in front of the bar.,pretend to go over a bowl of biscuits and fall to the top.,stare expectantly at each other then strolls across the living room.,takes a bite of cone and waits.,gold1-reannot,pos,unl,unl,pos,pos,A younger boy watches while eating a cupcake.,The young girls\nanetv_u2329Chp6IY,16085,\"A room is shown with a small rink and a bunch of adults going around in a small oval in bumper cars. Since they are in a small area, they\",get congested and start hitting each other and spinning in a circle.,walk back a little to watch the school of exercise in the next room.,get off their bikes and tumble and begin clipping their legs across the dirt.,begin to fight each other and a man cheers.,go down a rough hill while their peer down on the road.,gold0-orig,pos,unl,unl,unl,unl,A room is shown with a small rink and a bunch of adults going around in a small oval in bumper cars.,\"Since they are in a small area, they\"\nanetv_u2329Chp6IY,10877,They begin bumping into each other. A green car,spins around and hits a gray car.,passes on the end.,\"is driving behind the cars, looking around the metal sign.\",is driven in a skate park.,rolls across the driveway.,gold1-orig,pos,unl,unl,unl,pos,They begin bumping into each other.,A green car\nanetv_u2329Chp6IY,10876,People are riding around in bumper cars. They,begin bumping into each other.,are being interviewed on sidewalk.,appear in front of a computer.,is embarrassed in a market.,,gold0-orig,pos,unl,unl,unl,n/a,People are riding around in bumper cars.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9769,10756,Someone touches it with his wand. Writing,appears on the parchment.,\", someone fetches the flame and finds it to the kitchen floor, revealing someone who runs to someone again.\",\"shows him sword blade, blade on the chain.\",\"comes down flat, before him, on the ground, and reaches to grab someone's arm once again.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone touches it with his wand.,Writing\nlsmdc0030_The_Hustler-64513,8133,\"He downs his bourbon, weaves a bit, bends over the table, and awkwardly pokes at the white cue ball with his stick, missing an easy shot. Several more townspeople\",have come in from the street and are following the play.,\"are shown in the trashed, hitting it in neat si.\",join the boys running out of the empty town.,\"drop his gun in a slug, then swoop between the two back then seizes it in half.\",kick their gloved feet at each other.,gold0-orig,pos,unl,unl,unl,unl,\"He downs his bourbon, weaves a bit, bends over the table, and awkwardly pokes at the white cue ball with his stick, missing an easy shot.\",Several more townspeople\nlsmdc0030_The_Hustler-64513,8135,The bartender refills the glasses as soon as they are emptied. Two balls,lay side by side on the table.,drain together at the end.,come out of the elevator doorways.,fly back and forth as the septum lawrence trainer gets out.,are thrown to the floor.,gold0-orig,pos,unl,unl,unl,pos,The bartender refills the glasses as soon as they are emptied.,Two balls\nlsmdc0030_The_Hustler-64513,8138,\"But someone pats the corner pocket confidently, leans over, and raps out his shot. He\",pounds his pal someone on the shoulder and collapses into a nearby chair.,opens the middle of an ornate ladder and opens it.,is still drilling into him.,\"stops, closes the window and sighs.\",,gold0-orig,pos,unl,unl,pos,n/a,\"But someone pats the corner pocket confidently, leans over, and raps out his shot.\",He\nlsmdc0030_The_Hustler-64513,8137,Some of the onlookers seem skeptical. But someone,\"pats the corner pocket confidently, leans over, and raps out his shot.\",is strapped to his back.,\", jumping down, screams at a group of two men in the huddle.\",attention is now returned to a listening barbecue.,,gold1-orig,pos,unl,unl,unl,n/a,Some of the onlookers seem skeptical.,But someone\nlsmdc0030_The_Hustler-64513,8132,The game is in mid - progress. It,'s someone's shot.,makes his progress to the center of a pond to make the record.,team performs very conga and a yellow helmet with metal mallets and yellow polo.,is.,continues playing with a pencil and sending it down to someone in the picture.,gold0-orig,pos,unl,unl,unl,unl,The game is in mid - progress.,It\nlsmdc0030_The_Hustler-64513,8134,Several more townspeople have come in from the street and are following the play. The bartender,refills the glasses as soon as they are emptied.,takes a drink and pours oil into one glass of dr.,makes a joke and tugs it out of his mouth.,gets two drinks from his cup.,pulls the shot ball.,gold0-orig,pos,unl,unl,unl,unl,Several more townspeople have come in from the street and are following the play.,The bartender\nlsmdc0030_The_Hustler-64513,8136,Two balls lay side by side on the table. Someone,\"peers at them, trying to figure his shot, blinking his eyes to focus better.\",scoots over to someone next to her.,peers at them with a shabby ring.,throw them and hit the ball.,takes his liquor out of his beer glass and pours the contents.,gold1-orig,pos,unl,unl,unl,unl,Two balls lay side by side on the table.,Someone\nlsmdc0030_The_Hustler-64513,8131,Someone rises from his barstool. Someone,is already at the table.,is being fired in anger as he lies beside the stage.,reaches for the car door.,watches over her wounded head.,grabs off the unresponsive child.,gold0-reannot,pos,unl,unl,unl,unl,Someone rises from his barstool.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51451,19178,He turns back to people. People,start to get up.,come along as someone walks past a tall stone.,\"walks to a table, sitting under pebbles, practicing, and backtracks.\",come out to meet him.,stand around in front of a truck.,gold0-orig,pos,unl,unl,pos,pos,He turns back to people.,People\nlsmdc0010_Frau_Ohne_Gewissen-51451,19185,He turns a little towards someone. Someone,has placed a chair.,notices that someone finds security in the warmly lit room.,reaches over sister's hand.,\", a good - humored, someone, looks away with her mouth open, letting go of his neck.\",\"makes his way toward a building, surrounded.\",gold1-orig,pos,unl,unl,unl,pos,He turns a little towards someone.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51451,19182,\"She wears a gray tailored suit, small black hat with a veil, black gloves, and carries a black bag. The secretary\",closes the door behind her.,\"picks up her hands, reaches him to change the dummy string, then bends down.\",hands the money to someone.,sits up and looks at it.,,gold0-orig,pos,unl,unl,unl,n/a,\"She wears a gray tailored suit, small black hat with a veil, black gloves, and carries a black bag.\",The secretary\nlsmdc0010_Frau_Ohne_Gewissen-51451,19183,The secretary closes the door behind her. Someone,goes to meet her.,stands watching him go.,\"runs over to the open door, but does n't budge.\",heads toward one of the trucks.,jerks her nose up and down.,gold0-orig,pos,unl,unl,unl,unl,The secretary closes the door behind her.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51451,19179,People start to get up. The secretary,has opened the door.,\"turns away, cranes in toward the crowd, and snatches money.\",suddenly gets out of bed and immediately reacts to the noise.,is walking down a corridor on which the chaos celebrate the ship's performance.,opens his cubicle once more.,gold0-orig,pos,unl,unl,unl,pos,People start to get up.,The secretary\nlsmdc0010_Frau_Ohne_Gewissen-51451,19180,The secretary has opened the door. Someone,stands staring at the door.,finds a pillow on a closet.,opens the passenger door and enters.,turns around and frowns into the floor.,is pitched ready.,gold0-reannot,pos,unl,unl,unl,unl,The secretary has opened the door.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51451,19181,Someone stands staring at the door. He,relaxes with an obvious effort of will.,pulls out a magic card and takes his dress off.,looks down and sees a large house baled with chandeliers hanging from the frame.,steps inside and takes the aston.,\"steps forward, glances sadly, then shoulders.\",gold1-reannot,pos,unl,unl,unl,unl,Someone stands staring at the door.,He\nanetv_UCndppz9rWc,15028,Kid is standing in the field watching the man with the lawnmower. man,stands and extends the hand to hold the kid.,is holding a score stick and falls to a yellow rock.,is in the gym talking while sitting in a chair.,is sitting back behind the rope swinging an arrow and kick the ball all around the field while holding a green flag.,is in with a white shirt talking to the camera and begins to fence intensely.,gold1-reannot,pos,unl,unl,unl,unl,Kid is standing in the field watching the man with the lawnmower.,man\nanetv_UCndppz9rWc,15027,Manis wearing a white shirt and is walking in a green grass carrying a lawnmower. kid,is standing in the field watching the man with the lawnmower.,is standing up in a barn next to a horse how to do it.,is walking in a snowy path doing high jump.,is brushing the dog next to a tree in a field.,is in a backyard playing in a box grooming a dog in a barn with a leash.,gold0-reannot,pos,unl,unl,pos,pos,Manis wearing a white shirt and is walking in a green grass carrying a lawnmower.,kid\nanetv_5Owjrx-YjjM,8760,\"After he's done completing the kite, they go out in the open to fly the kite. The father\",is holding the kite in his hand as the wind blows strongly.,smiles as a school of dog lights don't go off.,is amazed with the propellers.,continues again with more difficulty trying to get a new target.,,gold0-orig,pos,unl,unl,unl,n/a,\"After he's done completing the kite, they go out in the open to fly the kite.\",The father\nanetv_5Owjrx-YjjM,8761,The father is holding the kite in his hand as the wind blows strongly. The girl,holds the string of the kite and begins flying the kite high up in the air.,and someone are seen unable to stand in her left side.,walks past the body and sees her baby lying still.,\"walks in front of a ski board, surfing storm clouds.\",'s surfboard crashes into the boat with a glacier.,gold0-orig,pos,unl,unl,unl,unl,The father is holding the kite in his hand as the wind blows strongly.,The girl\nanetv_5Owjrx-YjjM,8759,\"A little girl is sitting on the porch floor with her dad as he puts together a blue butterfly kite for her. After he's done completing the kite, they\",go out in the open to fly the kite.,begin to pick them up that gets stuck into place.,announce different aglow and kiss more often in their kitchen while she continues.,go inside and sweep his yard.,go to a red base camp beside a tabby and surfboard.,gold0-reannot,pos,unl,unl,unl,unl,A little girl is sitting on the porch floor with her dad as he puts together a blue butterfly kite for her.,\"After he's done completing the kite, they\"\nanetv_bTE3HEy_kVk,16313,We then see images of one roof. We,see the roof up close and see moss growing on it.,see giving animation pause and after a repeat.,see the title vehicle one lot.,see the opening opening screen.,,gold0-orig,pos,unl,unl,unl,n/a,We then see images of one roof.,We\nanetv_bTE3HEy_kVk,16312,We see two roof images side by side. We then,see images of one roof.,see a welding tool on a handle.,see a man on karate moves.,see riding dirt bikes in a gym.,see people practicing skateboarding with their hands in victory.,gold0-orig,pos,unl,unl,unl,unl,We see two roof images side by side.,We then\nanetv_bTE3HEy_kVk,16316,We see the finished new roof. We,see the ending screen credits.,lay in and see the carved finished pumpkin showing the shaver.,orbit the plastic pieces.,man and man walk on outside start by doing many bicycles on the buildings.,\"see the two, doing break - ups.\",gold0-orig,pos,unl,unl,unl,unl,We see the finished new roof.,We\nanetv_bTE3HEy_kVk,16314,We see the insulation and the roof as it is being installed. A man,is screwing the roof into place.,takes the kettle bell and places it on the ground.,goes behind a closet and cleans the wallpaper with a squeegee.,stands before the fire talking to the camera.,smashes into the wood.,gold1-orig,pos,unl,unl,pos,pos,We see the insulation and the roof as it is being installed.,A man\nanetv_bTE3HEy_kVk,16315,A man is screwing the roof into place. We,see the finished new roof.,\"walks from the battle on the rim of the jump mask, high in the air.\",are presenting product to a pile of metal in the trunk.,across something behind him as a man is part of the truck.,clean it with a measuring tape and puts his own on and cuts it up.,gold0-reannot,pos,unl,unl,unl,pos,A man is screwing the roof into place.,We\nanetv_sGGnEgCnEt8,5912,The athletes eventually wind up stomach down on the floor. The crowd,erupts in cheers as the match ends.,is dancing through the crowded crowd.,starts to race throughout the shop.,cheers and cheer on the waves before getting up and running out.,watch and observe in the background.,gold0-orig,pos,unl,unl,unl,pos,The athletes eventually wind up stomach down on the floor.,The crowd\nanetv_sGGnEgCnEt8,5911,The competitors make all kind of faces as they grimace. The athletes eventually,wind up stomach down on the floor.,goes into the exercise class.,thrust the knife up.,bring out and do stationary.,give each other a hug.,gold0-orig,pos,unl,unl,unl,pos,The competitors make all kind of faces as they grimace.,The athletes eventually\nanetv_sGGnEgCnEt8,5910,People are gathered as two men arm wrestle. The competitors,make all kind of faces as they grimace.,move to win on the last line.,\"continue throwing pucks, sending balls crashing.\",are twirled and lifted and wins.,,gold0-orig,pos,unl,unl,unl,n/a,People are gathered as two men arm wrestle.,The competitors\nanetv_8OSnT8UvJkU,12853,The person cuts around the sides and the woman is seen wearing glasses and posing with her new style. More shots of a person cutting,is shown while the woman speaks to the camera.,nails themselves on squeezing the skin underneath.,skin are shown as well as a pumpkin.,are shown as well as the end logo.,are seen cutting up wrapping paper and writing on it.,gold1-orig,unl,unl,unl,unl,unl,The person cuts around the sides and the woman is seen wearing glasses and posing with her new style.,More shots of a person cutting\nanetv_8OSnT8UvJkU,12852,A woman with a nose ring is seen speaking to the camera and leads into someone cutting her hair. The person cuts around the sides and the woman,is seen wearing glasses and posing with her new style.,continues speaking to the camera and pushing the leaves on.,begins sections her hair and ends by smiling at the camera.,laughs as she clips the other shoe instrument and smiling to the camera.,continues to comb the nails and ends by putting another one.,gold0-orig,pos,unl,unl,unl,unl,A woman with a nose ring is seen speaking to the camera and leads into someone cutting her hair.,The person cuts around the sides and the woman\nanetv_v9APkG4il4Q,15330,A person is seen walking across a long rope. Several more clips,are shown of the person walking from various angles.,are shown of people riding and closer to one another.,are shown of people surfing away backstage.,are shown of people climbing off of the boat.,are shown of people riding around on skateboards.,gold0-orig,pos,unl,unl,unl,unl,A person is seen walking across a long rope.,Several more clips\nanetv_v9APkG4il4Q,9288,\"The man walks with a shaky carriage, slowly across a high suspended rope. The man waivers but\",makes it to the other side where he celebrates by smiling into the camera.,is able to move momentarily to indicate this time.,falls it out to the ground before it ending.,\"is swiftly moving under the water, to the bottom place.\",stops moving and tips around and starts walking quickly across the pavement.,gold0-orig,pos,unl,unl,unl,unl,\"The man walks with a shaky carriage, slowly across a high suspended rope.\",The man waivers but\nanetv_v9APkG4il4Q,9287,\"A man walks across a rope stretched between two mountain tops high above land, balancing himself with both arms and hands, before making it to the other side of the rope. The man\",\"walks with a shaky carriage, slowly across a high suspended rope.\",moves back and forth across the rock before doing the girl fall and round times.,lifts around the throws and walks off the boat while doing flips on front of four right as he goes on the hill.,flips the two back until he holds onto the rope rope and falls backwards to the runway.,finishes the jump pass as the person begins doing the jump off balance horse for the 50 time.,gold0-reannot,pos,unl,unl,unl,unl,\"A man walks across a rope stretched between two mountain tops high above land, balancing himself with both arms and hands, before making it to the other side of the rope.\",The man\nanetv_v9APkG4il4Q,15331,Several more clips are shown of the person walking from various angles. The man,finishes to the other side and smiles to the camera.,continue dancing as several people throw the object.,moves his arms around the structure spinning around multiple sides.,walks away toward the camera and then pans back to the camera and passes the clip downhill.,continues dancing in slow motion and performing several tricks.,gold0-reannot,pos,unl,unl,unl,unl,Several more clips are shown of the person walking from various angles.,The man\nanetv_hniQpwn3Ob4,18831,An intro leads into several clips of different athletes performing shotput throws in a circle. More men,continue to step up and throw the object while many watch on the sidelines.,perform tricks around another team performing tricks while others watch on the sides.,are seen with bulls enjoying the sport.,continue jumping with one another and ends with several goal dives.,are seen fighting around one another in the end speaking into unison and laughing to one another.,gold0-orig,pos,unl,unl,pos,pos,An intro leads into several clips of different athletes performing shotput throws in a circle.,More men\nanetv_5WWvCSCGXmc,15915,A group of dirt bike riders race along a path. They,are engaged in a bmx dirt bike race.,see the snowboards and changing.,\"get out of their cars, then start to ride down the hill.\",crawl over the road and wait in the back.,begin shooting back and forth throughout the wired gates.,gold0-orig,pos,unl,unl,unl,unl,A group of dirt bike riders race along a path.,They\nanetv_5WWvCSCGXmc,15916,They are engaged in a bmx dirt bike race. They,go over hills and around the curves to the finish line.,begin to use the bikes on these pedals and a house and a garage.,\"flips past each other, then skies and rides across the snow covered driveway while more skateboarders ride away.\",are engaged in a game of tug of war.,are going up and down on grass when they continue on the trick.,gold0-orig,pos,unl,unl,unl,pos,They are engaged in a bmx dirt bike race.,They\nanetv_5WWvCSCGXmc,91,A small group of people are seen riding bikes around a track completing a race with one another. The people,continue riding around as others watch and fades to black.,continue running down the track and end by jumping down on a mat.,ride the bikes on the side while pausing to crowd around the table.,ride around on the track and end by jumping on the ground and jumping into the pit.,perform a routine while more shots are shown of people riding bikes.,gold0-orig,pos,unl,unl,unl,pos,A small group of people are seen riding bikes around a track completing a race with one another.,The people\nanetv_l-YtPYZ_534,1369,We see tools and tips for croquet. The two men,argue about the game.,demonstrate how to remove wallpaper from a wall.,talk to the camera inside the casino.,start welding wood and metal together.,talk to the camera.,gold1-orig,pos,unl,unl,unl,pos,We see tools and tips for croquet.,The two men\nanetv_l-YtPYZ_534,1373,The man has his foot on a red ball. We,see a man laugh and dance while another is upset.,is in the forest across the screen and the man in the blue shirt starts sliding down.,\"leave the boat and a man in the black shirt with a red hat grabs the surfboard, then begins to go into the water\",show the interior of the white car that cleaned the car in the parking lot.,start a match then the scene goes right and the man points.,gold0-orig,pos,unl,unl,unl,unl,The man has his foot on a red ball.,We\nanetv_l-YtPYZ_534,1374,We see a man laugh and dance while another is upset. We,see the ending title screen.,\"zoom up and closer the camera frame, but does n't follow the man.\",switch with end credits playing.,see two children sitting on a paved slope.,see the angles of the machine.,gold0-orig,pos,unl,unl,unl,unl,We see a man laugh and dance while another is upset.,We\nanetv_l-YtPYZ_534,1370,The two men argue about the game. We,see the men playing croquet.,few players walk away as the third shows the game.,\", the play - the players walk.\",are shown on the screens with instruction screen.,see cheering them in action.,gold0-orig,pos,unl,unl,unl,unl,The two men argue about the game.,We\nanetv_l-YtPYZ_534,1367,We see a white opening screen. We,see two men sitting then shaking their heads.,see a man talking with iron man playing the saxophone with a screen.,see men riding on a track for a race.,see a man putting welding metal on the floor.,see the board and exit.,gold1-orig,pos,unl,pos,pos,pos,We see a white opening screen.,We\nanetv_l-YtPYZ_534,1372,We see a diagram on the screen. The man,has his foot on a red ball.,starts dancing and playing a saxophone hitting us.,plays round a faster spin.,sits in the darkened room to talk.,,gold1-orig,pos,unl,pos,pos,n/a,We see a diagram on the screen.,The man\nanetv_l-YtPYZ_534,1371,We see the men playing croquet. We,see a diagram on the screen.,see the arrows and the board.,see the car with logo tv.,see the lady and the man wrestle again.,see the ending title screen.,gold0-reannot,pos,unl,unl,unl,pos,We see the men playing croquet.,We\nlsmdc1006_Slumdog_Millionaire-73827,13811,Someone steals the tourists' shoes as they pose for someone. The boys,sell the shoes from a store.,get the jacket and lead it toward the entrance into the library.,run along the toilets as someone sits with the man.,hide their distress as someone gallops toward a stable with flames.,,gold0-orig,pos,unl,unl,unl,n/a,Someone steals the tourists' shoes as they pose for someone.,The boys\nlsmdc1006_Slumdog_Millionaire-73827,13816,He shows her a picture of someone in the same spot. Security guards,spot the boys and chase them off.,are shown on the wall at the site.,straighten the fighting soldiers then pick up their supplies for the search.,push down with their wrinkled writhe in the side.,\"turn to face someone on the bike, then use someone's tobacco.\",gold1-orig,pos,unl,unl,unl,unl,He shows her a picture of someone in the same spot.,Security guards\nlsmdc1006_Slumdog_Millionaire-73827,13814,\"By day, someone touts for tourists as a guide as someone counts wads of cash. Someone\",photographs an asian tourist outside the taj.,is cutting rigidly before his performance.,skips up - toting her list.,'s face clips the company room.,\", his wife, someone, steps out, determinedly buttoning the broken cow of an sprints.\",gold0-orig,pos,unl,unl,unl,unl,\"By day, someone touts for tourists as a guide as someone counts wads of cash.\",Someone\nlsmdc1006_Slumdog_Millionaire-73827,13813,\"At night, people sit smoking a hookah pipe and drinking with friends around a campfire. Someone\",wears fancy leather cowboy boots.,seeming not from all activity.,pulls someone away amid the debris.,blows out the sight of more people.,,gold0-orig,pos,unl,unl,unl,n/a,\"At night, people sit smoking a hookah pipe and drinking with friends around a campfire.\",Someone\nlsmdc1006_Slumdog_Millionaire-73827,13815,Someone photographs an Asian tourist outside the Taj. He,shows her a picture of someone in the same spot.,adjusts dirt from the car.,\"is outside on choppers, surveying a desert.\",punches his aide with her feet.,,gold0-orig,pos,unl,unl,unl,n/a,Someone photographs an Asian tourist outside the Taj.,He\nlsmdc1006_Slumdog_Millionaire-73827,13812,\"The boys sell the shoes from a store. At night, people\",sit smoking a hookah pipe and drinking with friends around a campfire.,are taking pictures of the chemical company.,\"are back home out of the theater singing, smiling happily, except someone's is n't the only one there.\",\"stand peacefully beneath food, each baby enraged, both hands pointed.\",spray hands sex in a bowl as they wear their clothes.,gold0-orig,pos,unl,unl,unl,unl,The boys sell the shoes from a store.,\"At night, people\"\nlsmdc1006_Slumdog_Millionaire-73827,13810,\"Outside the Taj Mahal, someone takes Polaroid photographs of tourists. Someone\",steals the tourists' shoes as they pose for someone.,pulls up and sits on the blonde while she drives out the window.,looks over the sofa at someone who is there.,aims a red bar.,\"the clay length, someone puts down the hats on a lakeside field gazing at the surfers.\",gold0-orig,pos,unl,unl,unl,unl,\"Outside the Taj Mahal, someone takes Polaroid photographs of tourists.\",Someone\nanetv_FRJLhGFpCGE,1472,Pictures are shown of people running. A person,is running down a trail.,\"is seen playing her violin, holding a frisbee.\",runs and jumps into a pit.,is seen standing before a game of kickball.,throws the ball all over the field.,gold1-orig,pos,unl,unl,pos,pos,Pictures are shown of people running.,A person\nanetv_FRJLhGFpCGE,1473,A person is running down a trail. X - rays,are shown on the screen.,blow the windows and shown with boats that are nearby.,are shown onto the screen.,are shown in the snow.,are shown followed by a video being shown.,gold1-orig,unl,unl,unl,unl,unl,A person is running down a trail.,X - rays\nanetv_FRJLhGFpCGE,1474,X - rays are shown on the screen. A person's feet is shown and they,are tapping their feet on the carpet.,are cleaned off their feet.,continue playing ping pong.,are polishing large dried utensils as they appear to inserted on the tier of the dog.,,gold0-orig,pos,unl,unl,unl,n/a,X - rays are shown on the screen.,A person's feet is shown and they\nanetv_FRJLhGFpCGE,1220,Still and clips of a man running marathons are shown with overlaid graphics showing angles. Strides used during a marathon,are shown and illustrated.,are shown spraying power whatever is now in slow motion.,appears and displays several different angles giving the logos before laying down the same croquet table.,\"are shown quickly spanning the city, running very fast.\",,gold0-orig,pos,unl,unl,pos,n/a,Still and clips of a man running marathons are shown with overlaid graphics showing angles.,Strides used during a marathon\nanetv_FRJLhGFpCGE,1219,The words Dathan Ritzenhein nyc Marathon 2010 appear on a black screen. Still and clips of a man running marathons,are shown with overlaid graphics showing angles.,howcast followed by a cheer agents approaching behind.,made in the same setting where many have the people bulls and cheering a cup of soccer.,and white flips into a messes.,,gold0-reannot,pos,unl,unl,unl,n/a,The words Dathan Ritzenhein nyc Marathon 2010 appear on a black screen.,Still and clips of a man running marathons\nlsmdc3035_INSIDE_MAN-2199,15054,\"Someone and the lanky robber take shallow breaths. Now, in a police station conference room, someone\",sits at the long table.,\"drives across a sprawling hotel, unaware of a running pickup parked beside another car.\",sits at his bedside desk.,sits on the main bus at the back of the jury.,,gold1-orig,pos,unl,unl,unl,n/a,Someone and the lanky robber take shallow breaths.,\"Now, in a police station conference room, someone\"\nanetv_0dgmG3h9RLA,3956,A man and two boys watching from a far. The camera,shoots areas all around the park while the bagpipes play.,cuts into a still view of the camera.,pushes up behind him as he kneels on top.,pans to the man on the platforms back and fourth.,cuts to the man as they snowboards.,gold0-reannot,pos,unl,unl,pos,pos,A man and two boys watching from a far.,The camera\nanetv_0dgmG3h9RLA,3955,A person is playing bagpipes out in a park. A man and two boys,watching from a far.,walk alongside a house and drive back in.,walk in the street playing polo.,are standing in front of each other.,skate past a small falls.,gold0-reannot,pos,unl,unl,unl,unl,A person is playing bagpipes out in a park.,A man and two boys\nanetv_uID_HFDKFKw,6262,A large group of people are seen standing around a lawn while one jumps into a water pit and the others throw a ball around. More people,slide around in the water while some stand around and others kick and chase a ball.,walk on side as the camera captures their perspective and ends with people walking and flipping them in there.,are seen running and running around one another while running down the track.,are shown taking pictures of people playing soccer from one another while people walking around the ball.,are shown putting the ball back and fourth to the camera with one another.,gold0-orig,pos,unl,unl,unl,pos,A large group of people are seen standing around a lawn while one jumps into a water pit and the others throw a ball around.,More people\nanetv_uID_HFDKFKw,123,A large group of people are gathered on a field. They,are running and kicking balls back and forth.,are playing a game of cheerleading on the sand.,are playing various drums and skis.,are throwing from a ball that's left onto the ground.,,gold0-reannot,pos,unl,unl,unl,n/a,A large group of people are gathered on a field.,They\nanetv_9gU5be5YCVw,14346,The man performs a routine on the parallel bars. The man,finishes his routine and dismounts.,jumps and runs move but goes back over the finish successfully.,does a karate routine on stage.,does several times and jumps up and down.,jumps onto the bars and jumps back and forth.,gold0-orig,pos,unl,unl,pos,pos,The man performs a routine on the parallel bars.,The man\nanetv_9gU5be5YCVw,14345,\"A man walks up to parallel bars while spectators, competitors, and officials are in the background. The man\",performs a routine on the parallel bars.,throws the javelin successfully.,attempts to get one together but does n't successful.,knocks an athlete from the bars and lands back on the bar.,is pole volting down with his arms in the air.,gold0-orig,pos,unl,unl,unl,unl,\"A man walks up to parallel bars while spectators, competitors, and officials are in the background.\",The man\nanetv_axoyB4pypWY,7467,A couple of cages are on the ground. There,are dogs sleeping in each cage.,can be a someone.,they move through it and a group of people on platform keep blowing rope.,bursts in a gym!,,gold0-orig,pos,unl,unl,unl,n/a,A couple of cages are on the ground.,There\nanetv_axoyB4pypWY,7469,A man is shown on a field performing tricks with a dog and a bunch of frisbees. The dog,\"catches, flips, and chases the frisbees.\",catches the animal while attached to a frisbee.,zooms in on frisbees and a dog catches the frisbees.,hops out of the grass and the man takes the frisbee off a hook.,performs tricks on his skateboard as others watch on the sides.,gold0-orig,pos,unl,unl,pos,pos,A man is shown on a field performing tricks with a dog and a bunch of frisbees.,The dog\nanetv_axoyB4pypWY,7468,There are dogs sleeping in each cage. A man,is shown on a field performing tricks with a dog and a bunch of frisbees.,\"is standing in a corner stands and wearing a blue outfit trophies set in menacing colors, talking to the camera.\",sits on a rocking chair.,sits in his lap in front of the camera.,open turntables against the woman sitting from down another line on the platform.,gold1-reannot,pos,unl,unl,unl,unl,There are dogs sleeping in each cage.,A man\nanetv_y-OZ45FQZ0g,7777,\"A man is sitting on the couch wearing jeans a shirt, and he's holding a guitar on his lap, strumming with his right hand and tapping the upper strings with his left hand. The man\",slows down and stops strumming and tapping on his guitar.,gives a great flip to the music as he continues to explain to the camera that he is teaching how to play.,\"waves the harmonica sound and starts to play on the guitar, the end of the song pipe.\",sticks up objects and white balls that attaches to the harmonica and then slides down a bit.,makes to stand near the man while someone sits at a portrait with two fingers spread like a guitar that walks in the window.,gold0-orig,pos,unl,unl,unl,unl,\"A man is sitting on the couch wearing jeans a shirt, and he's holding a guitar on his lap, strumming with his right hand and tapping the upper strings with his left hand.\",The man\nanetv_y-OZ45FQZ0g,7778,\"The man slows down and stops strumming and tapping on his guitar. A colorful screen appears and it displays a cartoon picture of a Pokemon standing outdoors near a tree while it's snowing, and red words\",read pokemon - pallet - town.,\"showing above, first night.\",appear on the screen switch courses and interacts with him and chips.,buy in the town.,appear quickly and citrus.,gold0-reannot,pos,unl,unl,unl,unl,The man slows down and stops strumming and tapping on his guitar.,\"A colorful screen appears and it displays a cartoon picture of a Pokemon standing outdoors near a tree while it's snowing, and red words\"\nlsmdc1011_The_Help-78260,662,\"As platinum blonde someone, in a yellow playsuit, rings off, her husband creeps up behind her. He\",nuzzles her neck and bends her backwards by the edge of their swimming pool.,lifts his jacket on the peg.,eats her pursed lip and rests her head on her back.,\"she closes the door, opening it.\",keeps her chin bowed.,gold0-orig,pos,unl,unl,unl,unl,\"As platinum blonde someone, in a yellow playsuit, rings off, her husband creeps up behind her.\",He\nlsmdc3056_PUBLIC_ENEMIES-3702,2798,\"At the storefront, someone stand ready. Near the cinema door, someone\",watches movie patrons exiting the lobby.,finds someone hunched on the couch.,is in a slot at the dining table.,is still in pursuit of someone.,slowly turns slightly from the limo.,gold0-orig,pos,unl,unl,unl,unl,\"At the storefront, someone stand ready.\",\"Near the cinema door, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2776,\"Outside, the agents take their positions. In the movie house, someone\",watches the screen with a furrowed brow.,zips her a beer beside a cup.,turns with the phone from someone.,strolls through the busy marketplace.,flings a medal at his head.,gold0-orig,pos,unl,unl,unl,unl,\"Outside, the agents take their positions.\",\"In the movie house, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2788,He dons a cocky smile. Someone,watches with a defiant smirk.,stares at his son.,looks towards the london canister basket.,allows a cheery smile.,gives a tight smile.,gold0-orig,pos,unl,unl,pos,pos,He dons a cocky smile.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2786,Someone and someone wait patiently in the recessed storefront. Someone,\"turns, gazing toward the cinema lobby.\",fires the barrel at them.,\"is about pink pass by, gazing at the homestead.\",grouped a sign for a partially sideboard that reads what you have noticed that several men are standing.,turns and looks down at us as a flatbed truck swipes the spaghetti and weed out of the corner.,gold0-orig,pos,unl,unl,unl,unl,Someone and someone wait patiently in the recessed storefront.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2784,\"Outside, someone checks his watch. Posted near the box office, he\",looks across the street.,marches down a staircase.,swerves to avoid someone.,types in his drawings.,reads on a laptop in a nearby room.,gold0-orig,pos,unl,unl,unl,unl,\"Outside, someone checks his watch.\",\"Posted near the box office, he\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2792,\"Outside the theater, someone digs a box of matches from his pocket and takes one out. From his breast pocket, he\",produces a cigar and holds it ready.,writes some documents over an empty table.,slices his path through the barley rink.,gazes out of the window as he takes another bite of the piece.,scowls at his old leeds clown suit and frowns.,gold0-orig,pos,unl,unl,unl,unl,\"Outside the theater, someone digs a box of matches from his pocket and takes one out.\",\"From his breast pocket, he\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2791,\"A guard follows, closes a prison door, and locks it. Outside the theater, someone\",digs a box of matches from his pocket and takes one out.,pretends to amble up for the other teacher to train her.,sits behind a lectern as she makes her way forward.,hunches over a box draped over a stereo.,\"sits in an office, talking with homework as someone walks upstairs to find his family that posted in the door.\",gold1-orig,pos,unl,unl,unl,unl,\"A guard follows, closes a prison door, and locks it.\",\"Outside the theater, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2805,Someone notices and roughly Across the street. Someone and someone,leave the recessed storefront.,try arms to protect bad beach someone.,can see someone leaping up and hopping on until someone barges in hand.,play by her cars.,,gold0-orig,pos,unl,unl,unl,n/a,Someone notices and roughly Across the street.,Someone and someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2775,\"Sitting in her own, someone turns, peeking nervously over her shoulder. She\",\"faces the screen again, her chest heaving.\",comes in to quince with a rolling.,\"spots the piano, then steps into a night green fog.\",finds the handle of her mom and lifts it over her head.,\"sees someone fully dressed, rinses the drawer, and takes out a bottle.\",gold0-orig,pos,unl,unl,unl,unl,\"Sitting in her own, someone turns, peeking nervously over her shoulder.\",She\nlsmdc3056_PUBLIC_ENEMIES-3702,2801,\"Now, someone steps into plain view walking between someone and someone. Younger friend\",wears a carefree grin.,notices his bald car.,helps him to his knees.,watches from the beach as someone works on a parked bench.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now, someone steps into plain view walking between someone and someone.\",Younger friend\nlsmdc3056_PUBLIC_ENEMIES-3702,2787,\"On the movie screen, someone Gable faces someone Powell. He\",dons a cocky smile.,waddles on an outdoor television.,smiles off his back.,clerk packs a notebook's pages from a different compact.,casts her gaze to the painting.,gold0-orig,pos,unl,unl,unl,unl,\"On the movie screen, someone Gable faces someone Powell.\",He\nlsmdc3056_PUBLIC_ENEMIES-3702,2777,\"In the movie house, someone watches the screen with a furrowed brow. Someone\",gazes at her with a knitted brow and clenched jaw.,\"wheels her way down an escalator, carefully shutting the door.\",lifts someone's shiny spilled victim on top of rotten skin.,moves his grip and looking a little tired.,eats the phial from a wound by someone's neck.,gold1-orig,pos,unl,unl,unl,unl,\"In the movie house, someone watches the screen with a furrowed brow.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2794,\"On the movie screen, someone makes his way down the cell block flanked by guards. Someone\",wears a faint sad smile.,steps onto the cage and faces a doll with others ahead.,\"spots the barrel of the security light, which lights up.\",\"steps through the campus, looks around at someone and notices a guard bending over.\",lays a silver dagger on the floor and presses the buckles of his back.,gold0-orig,pos,unl,unl,unl,unl,\"On the movie screen, someone makes his way down the cell block flanked by guards.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2800,\"With a hostile sneer, the burly agent rushes out of the car. Now, someone\",steps into plain view walking between someone and someone.,\"stands in a corner facing the roadside, leaning his hand on the ground.\",\"'s thug pierce the window, and someone rolls down a mouthful.\",quietly climbs the second flight of stairs and stairs.,crosses the bank battlements and rolls across the street to a radio station as she nods inside.,gold1-orig,unl,unl,unl,unl,unl,\"With a hostile sneer, the burly agent rushes out of the car.\",\"Now, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2803,\"A bystander aside, someone heads down the sidewalk after them. Burly agent\",joins the flow of foot traffic with his gun raised.,drives the thug through a passenger door and into his nose.,flings a mossy bar at her.,sits in the hallway and someone curtsies as a leave.,hurls his car through open door leading toward the burnham's driveway.,gold1-orig,pos,unl,unl,unl,unl,\"A bystander aside, someone heads down the sidewalk after them.\",Burly agent\nlsmdc3056_PUBLIC_ENEMIES-3702,2783,Someone Gable stares after her. Someone,watches with shining eyes.,shakes his head knowingly and looks through a magazine.,gives someone a couple of turns.,'s on two children staring at her.,reads the first note on his phone.,gold0-orig,pos,unl,unl,pos,pos,Someone Gable stares after her.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2774,\"Someone gazes at the screen with a boyish smirk. Sitting in her own, someone\",\"turns, peeking nervously over her shoulder.\",puts a tender smile.,pops him in her mouth.,stares at him disapprovingly.,allows a tender smile.,gold1-orig,pos,unl,unl,pos,pos,Someone gazes at the screen with a boyish smirk.,\"Sitting in her own, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2802,\"Younger friend wears a carefree grin. A bystander aside, someone\",heads down the sidewalk after them.,refuses in the blackness.,finds a hidden photo of a teen girl playing a projector.,swims to a wrecked stall with two gear tied.,stomps someone an as he passes.,gold0-orig,pos,unl,unl,unl,unl,Younger friend wears a carefree grin.,\"A bystander aside, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2795,Someone wears a faint sad smile. Someone,\"wears a faint half - smile, his eyes shining.\",\"his way between the rows of darting maize, he pauses to pick up his pockets.\",the neighbor follows him.,\", an security guard watches.\",she pulls on her chain as an escorts eyes crew up open.,gold0-orig,pos,unl,unl,unl,unl,Someone wears a faint sad smile.,Someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2797,\"The patrons stand, filing out of their rows. A few rows down, someone\",stands with someone and don his straw hat.,waits by someone as as waiter walks toward the dining room table.,spots someone and blinks then looks back.,spots someone converses holding an umbrella.,,gold1-orig,pos,unl,pos,pos,n/a,\"The patrons stand, filing out of their rows.\",\"A few rows down, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2790,\"Onscreen, someone turns away from someone. A guard\",\"follows, closes a prison door, and locks it.\",shouts at him as he opens the captain's cannon.,\"steals a teapot from the open bag and ducks through a doorway, then returns his gaze to someone.\",\"rushes out, followed by someone, who is in the garden back up with a pensive smile.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Onscreen, someone turns away from someone.\",A guard\nlsmdc3056_PUBLIC_ENEMIES-3702,2785,\"Posted near the box office, he looks across the street. Someone and someone\",wait patiently in the recessed storefront.,turn into the state park.,interview the couples in a dance studio.,burst into the house.,follow someone through a door.,gold0-orig,pos,pos,pos,pos,pos,\"Posted near the box office, he looks across the street.\",Someone and someone\nlsmdc3056_PUBLIC_ENEMIES-3702,2796,\"In the movie house, words on the screen read The End. The patrons\",\"stand, filing out of their rows.\",laugh as someone holds the bouquet in brandy.,walk around to a huge cheese airport.,smile as they stare up at stone.,rush toward the digital turret outer bar and strut out of the studio.,gold0-orig,pos,unl,unl,unl,unl,\"In the movie house, words on the screen read The End.\",The patrons\nlsmdc3056_PUBLIC_ENEMIES-3702,2781,\"Later still, she turns away from a door, clad in black. Taking a deep breath, she\",manages a brave nod.,screws her eyes shut.,prepares at the event where the vessel sways.,hands over the table.,hands him a cordless.,gold0-reannot,pos,unl,unl,unl,unl,\"Later still, she turns away from a door, clad in black.\",\"Taking a deep breath, she\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2778,\"Someone gazes at her with a knitted brow and clenched jaw. In a fur - collared coat, the exotically pretty actress\",wears a pensive expression.,laughs with mother and children.,head a long and clean black nose.,sits on top of the gawking crowd.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone gazes at her with a knitted brow and clenched jaw.,\"In a fur - collared coat, the exotically pretty actress\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2789,\"Someone watches with a defiant smirk. Onscreen, someone\",turns away from someone.,runs her fingers through someone's hair as she strums the guitar strings.,goes to the station.,jerks his fists to his neck.,leads someone into a mobile office.,gold1-reannot,pos,unl,unl,unl,pos,Someone watches with a defiant smirk.,\"Onscreen, someone\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2780,\"Later, she shifts her sober gaze. Later still, she\",\"turns away from a door, clad in black.\",slumps over a bar.,takes her notebook aside as she makes out.,is absent from a nearby table.,makes it to a door to her open doorway.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, she shifts her sober gaze.\",\"Later still, she\"\nlsmdc3056_PUBLIC_ENEMIES-3702,2806,Someone and someone leave the recessed storefront. Agent,\"scowls, holding his aim as he gains on the crime boss.\",steps to the french window and strokes the half - naked passengers from the bridge and exits.,gaze boldly overlooking the second line.,'s law taps her gold red visor on someone's forehead.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone and someone leave the recessed storefront.,Agent\nlsmdc3056_PUBLIC_ENEMIES-3702,2793,\"From his breast pocket, he produces a cigar and holds it ready. On the movie screen, someone\",makes his way down the cell block flanked by guards.,dips a chain around someone's neck and pulls him up to a sprint.,crawls through a small movie set at a photo booth.,\"peers out of the window, to see lights peeking around behind them open.\",\"glances between the shelves, then squints.\",gold0-reannot,pos,unl,unl,unl,pos,\"From his breast pocket, he produces a cigar and holds it ready.\",\"On the movie screen, someone\"\nanetv_KUejIghF6K4,5204,A young child is seen hitting a pinata with a baseball bat as the person moves it around on strings. The boy,continues swinging at the pinata and pauses to speak to the camera nervously.,continues swinging around and hitting the ball around frame when the two continue around.,continues hitting the pinata on the spring.,continues to throw the ball around while holding it out as well as shots hitting a pinata in the end.,,gold1-orig,pos,unl,unl,unl,n/a,A young child is seen hitting a pinata with a baseball bat as the person moves it around on strings.,The boy\nanetv_KUejIghF6K4,15131,\"A toddler hits a pinata with a baseball bat, sometimes the pinata moves up. The toddler\",falls trying to hit the pinata that went up.,picks a pinata from a pile of shit and waves it in the air.,went back carrying a toddler muffin tray and gets a hair ball.,uses a hammer and terms to hit and swing it.,drops the dog over the net.,gold0-orig,pos,unl,unl,unl,unl,\"A toddler hits a pinata with a baseball bat, sometimes the pinata moves up.\",The toddler\nanetv_KUejIghF6K4,15132,\"The toddler falls trying to hit the pinata that went up. After, the toddler rise and\",continues hitting the pinata.,punches a woman in the back.,falls down next to the blue cloth.,walked away.,,gold0-orig,pos,unl,pos,pos,n/a,The toddler falls trying to hit the pinata that went up.,\"After, the toddler rise and\"\nanetv_BSlVLi81VGM,834,The woman is seen using a razor on the man's leg. She,continues to shave his legs as others watch around him.,proceeds to follow her but her back is held out on her hands.,stops and looks at the room.,sees the man putting gel on his chin.,,gold0-orig,pos,unl,pos,pos,n/a,The woman is seen using a razor on the man's leg.,She\nanetv_BSlVLi81VGM,833,A person is seen bending down on the floor with a man sitting on a couch. The woman,is seen using a razor on the man's leg.,helps herself draw plaster and place it in her hands.,is then seen boxing in the middle working around a room while the camera focuses on the man.,then lifts a set of bars and continues to put his shoulders on.,continuously shaves his face while looking off into the distance.,gold1-reannot,unl,unl,unl,unl,unl,A person is seen bending down on the floor with a man sitting on a couch.,The woman\nanetv_P2Fcv3cC8bI,995,The man lifts the wallpaper and hands it to another man standing on a chair. The second man,places the wallpaper on a wall with help from the first man.,is explaining a black cutting process session and is seen the man entering his makeshift office.,applies liquid to the case.,opens the cabinet and rubs clean a few parts from the slit.,blows other pieces of wood through the sheets.,gold0-orig,pos,unl,unl,unl,unl,The man lifts the wallpaper and hands it to another man standing on a chair.,The second man\nanetv_P2Fcv3cC8bI,994,A man uses a brush on bundled wallpaper on the floor. The man,lifts the wallpaper and hands it to another man standing on a chair.,spins partway up and leaves.,stands at the tiles.,sits and lays hand on the back nails.,sits up on a railing.,gold0-orig,pos,unl,unl,unl,unl,A man uses a brush on bundled wallpaper on the floor.,The man\nanetv_aHzNMe-VKfE,12124,He has a little hockey stick and he is using it to swing at a rolling back. The ball keeps coming toward him and he,keeps swinging trying to hit it.,gets hit by a rope.,attempts to pass the pinata off.,gets closer to the proper size.,catches it very quickly.,gold0-orig,pos,unl,unl,unl,pos,He has a little hockey stick and he is using it to swing at a rolling back.,The ball keeps coming toward him and he\nanetv_aHzNMe-VKfE,12123,A little boy is in the house playing in his shirt and diaper. He has a little hockey stick and he,is using it to swing at a rolling back.,plays a harmonica before the harmonica.,is playing beach soccer in a parting of waves.,passes him so he can buy it.,,gold1-reannot,unl,unl,unl,unl,n/a,A little boy is in the house playing in his shirt and diaper.,He has a little hockey stick and he\nanetv_PY6WgOIZlhw,9785,A man wearing black clothesis lifting weight in a corer of a room. wmoan,is on side of th room lifting weight.,talks to the camera with a woman on the bridge.,throws in a chair with a woman sitting.,is gathered in the middle of the court.,,gold0-orig,pos,unl,unl,unl,n/a,A man wearing black clothesis lifting weight in a corer of a room.,wmoan\nanetv_PY6WgOIZlhw,9787,In front musculous man is kneeling in floor trying to lifting weight. men,are in room lifting weight on the middle of mats.,are in gym making baskets and hitting pool ball.,play at gym while sitting on an exercise machine.,are in a gym performing walking across the ice.,bend down to tip the weight in each arm.,gold0-orig,pos,unl,unl,unl,pos,In front musculous man is kneeling in floor trying to lifting weight.,men\nanetv_PY6WgOIZlhw,8580,Three bodybuilders lift barbells at the knees. They,\"raise them to their chests, then over their heads very quickly, doing several sets.\",do high five on the street.,\"climb above the shoulders, as fans run as someone swoops through the balcony.\",\"look out the window, then at a moved pace.\",,gold0-orig,pos,unl,unl,unl,n/a,Three bodybuilders lift barbells at the knees.,They\nanetv_PY6WgOIZlhw,8581,\"They raise them to their chests, then over their heads very quickly, doing several sets. They\",set the barbells down before showing another man doing the same.,proudly rolling up the hula hoop with a hand tightening rose beside it.,switches the light going on a light dusting off the porch steps using the glow as the light remains dark.,turns to the side of the room.,\"are done, altogether, and some of which have been decorated for a really good time.\",gold0-orig,pos,unl,unl,pos,pos,\"They raise them to their chests, then over their heads very quickly, doing several sets.\",They\nanetv_PY6WgOIZlhw,8582,They set the barbells down before showing another man doing the same. They,\"lay down on mats, using exercise balls to do sit ups, then doing arm lifts.\",tie the bend over to his side and take out some flexing.,continue to hit the ball while another does jumps off the little.,ride and skate around together.,move up - clockwise and glide over the adhesive to join them.,gold0-orig,pos,unl,unl,unl,unl,They set the barbells down before showing another man doing the same.,They\nanetv_PY6WgOIZlhw,9786,Wmoan is on side of th room lifting weight. in front musculous man,is kneeling in floor trying to lifting weight.,is eating an ice cream cone.,are standing with two of them fixing their undergarments.,is with a bar to iron few things.,people starts lifting two heavy weight.,gold0-reannot,pos,unl,unl,unl,unl,Wmoan is on side of th room lifting weight.,in front musculous man\nlsmdc1040_The_Ugly_Truth-8576,12432,\"The French windows are open. Inside, a handsome, muscular guy\",is wrapping a towel around his waist.,wears a white machine - sized badge.,stands before his open door.,holds a long bandanna.,,gold0-orig,pos,unl,pos,pos,n/a,The French windows are open.,\"Inside, a handsome, muscular guy\"\nlsmdc1040_The_Ugly_Truth-8576,12428,\"Light streams through open French windows. In her bathroom, someone\",\"runs her fingers through her long, blonde hair.\",\"ventures down the hallway carrying her flashlight, carrying a huge metal object.\",faces flannel spattered clothing.,puts on her lower lip and wipes her nose with a cloth.,,gold0-orig,pos,unl,unl,pos,n/a,Light streams through open French windows.,\"In her bathroom, someone\"\nlsmdc1040_The_Ugly_Truth-8576,12433,\"Inside, a handsome, muscular guy is wrapping a towel around his waist. Someone\",clamps her hand over the cat's snout and ogles the guy.,plucks off his keys on his hand and walks toward the door.,leans on a banister as his neighbor brushes himself by.,\"comes up and kneels next to him, pulling next to him.\",\"walks across to the salon now, opening out his bone and glimpse his toys with flowers or flowers above the sleeping structure.\",gold0-orig,pos,unl,unl,unl,unl,\"Inside, a handsome, muscular guy is wrapping a towel around his waist.\",Someone\nlsmdc1040_The_Ugly_Truth-8576,12431,He is up a tree. Someone,stands underneath the tree.,is eating some cereal.,grabs a flower from a paper.,is at a pool table holding a cup and there was a bottle in his hand.,is on a dog in the grass.,gold1-orig,pos,unl,unl,unl,unl,He is up a tree.,Someone\nlsmdc1040_The_Ugly_Truth-8576,12427,The upstairs of someone's apartment has a balcony. Light,streams through open french windows.,dozes off the bed.,fireballs start across someone's chest and shoulder.,\"the bedroom, someone swigs from a bottle without it, then shakes it in a sink.\",,gold0-orig,pos,unl,unl,unl,n/a,The upstairs of someone's apartment has a balcony.,Light\nlsmdc1040_The_Ugly_Truth-8576,12429,\"In her bathroom, someone runs her fingers through her long, blonde hair. D'Artagnan\",trots out of the window.,\"leans forward, leaning against a glass of white wine.\",falls out and she snatches the magazine from her hand.,spots her on the sidewalk.,,gold1-reannot,pos,unl,unl,pos,n/a,\"In her bathroom, someone runs her fingers through her long, blonde hair.\",D'Artagnan\nlsmdc3077_THE_VOW-35788,15275,\"Someone smiles at someone, then looks around uncertainly. Her husband\",regards her with a tender gaze.,looks up at her own old window.,stands tight and stares.,\"shuts the closet, and then glances away.\",,gold0-orig,pos,unl,pos,pos,n/a,\"Someone smiles at someone, then looks around uncertainly.\",Her husband\nlsmdc3077_THE_VOW-35788,15274,\"Later, under gleaming skyscraper windows, the suv pulls into a space in a deserted civic parking lot situated before a crosswalk. Someone\",\"smiles at someone, then looks around uncertainly.\",sits a third youth at a table.,marks rustic rustic store with bench parks.,returns a few steps away and stares with an admiring look.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, under gleaming skyscraper windows, the suv pulls into a space in a deserted civic parking lot situated before a crosswalk.\",Someone\nanetv_aObyxa8gdAo,15723,One of the players deals the cards as the others have their drinks. The player,distributes the cards evenly among the three players as they position their tokens on the table.,hits high five in red and white.,returns and hugs his team mates.,hit the ball hard while other people are drinking beer.,,gold1-orig,pos,unl,unl,unl,n/a,One of the players deals the cards as the others have their drinks.,The player\nanetv_aObyxa8gdAo,15725,The other player carefully and thoughtfully makes his move. Then the person who dealt the cards,picks up his stack of cards and tokens that he has won.,return with the measuring down the food money.,and takes it away.,and points to it.,,gold0-orig,pos,unl,unl,pos,n/a,The other player carefully and thoughtfully makes his move.,Then the person who dealt the cards\nanetv_aObyxa8gdAo,7502,One man deals cards and chips while speaking to one another. They,continue playing and speaking to one another.,are smiling and talking while serving tennis balls at each other.,see more people practicing mixing balls.,are then seen standing around a bar talking to one another.,,gold0-orig,pos,unl,unl,pos,n/a,One man deals cards and chips while speaking to one another.,They\nanetv_aObyxa8gdAo,15724,The player distributes the cards evenly among the three players as they position their tokens on the table. The person dealing the card,lays down a six of diamonds and waits for the other players to make their move.,\"picked at each other, and members sing a parmesan file.\",contains a british theory pen printed on its hand.,\"shut over chips each other, a reporter talks in front of a family.\",,gold0-orig,pos,unl,unl,unl,n/a,The player distributes the cards evenly among the three players as they position their tokens on the table.,The person dealing the card\nanetv_aObyxa8gdAo,15722,There are three men sitting a small room playing poker on a table. One of the players,deals the cards as the others have their drinks.,throws the shot into the left to start the match.,is shown playing in the shop by men.,is taking a photo and signing autographs.,stops the ball and points to the camera.,gold0-orig,pos,unl,unl,unl,unl,There are three men sitting a small room playing poker on a table.,One of the players\nanetv_aObyxa8gdAo,7501,A man is seen looking at the camera and leads into him playing a poker game with others. One man,deals cards and chips while speaking to one another.,is then seen running around with a man woman who is watching him playing paintball.,\"speaks to the camera with a woman walking on front a few other athletes, then are shown again in slow motion.\",speaks to the camera while a man speaks to the audience and leads into more shots of him speaking and looking into the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen looking at the camera and leads into him playing a poker game with others.,One man\nanetv_Xq9ueKle4fY,8432,A woman is seen leaning over a tub scrubbing a dog. She,dries off the dog with a towel and then blow dries him.,speaks into the camera while still speaking to the camera.,holds the back of her toothbrush and speaks to the camera.,sprays sunscreen on her face and continues mopping her face.,is then looking into the camera again.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen leaning over a tub scrubbing a dog.,She\nanetv_Xq9ueKle4fY,8433,She dries off the dog with a towel and then blow dries him. She,brushes him and trims his nails and gives him kisses.,\"pulls away, then puts her arm around his sides and rearranges the top of his head with his fingers.\",continues to take off the shoes and blow dries her hair.,stands right next to her wet face.,,gold1-orig,pos,unl,unl,unl,n/a,She dries off the dog with a towel and then blow dries him.,She\nanetv_Xq9ueKle4fY,2820,This woman is bathing the dog to make him clean again and when she walks away the dog shakes a little bit. Then she comes back and dries the dog off using a towel and then she,blow dries the dog and combs it's hair.,turns off of the window and looks back at the dog.,gets comfortable and lotion on her head.,begins to blow drys her hair.,,gold0-orig,pos,unl,unl,pos,n/a,This woman is bathing the dog to make him clean again and when she walks away the dog shakes a little bit.,Then she comes back and dries the dog off using a towel and then she\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89868,1009,People are sitting in the back. Someone family,come out to greet them.,is standing on a beach talking.,is preparing to skate.,\"stands in on the other side, looking out at it.\",stands at the bottom.,gold1-orig,pos,pos,pos,pos,pos,People are sitting in the back.,Someone family\nanetv_zqXJkZgKmSk,2726,The runner stops on the home base and turns around. We,see the people at the back of the field.,cuts up more snow and the camera cuts from path up the man's front legs.,knocked hurriedly by.,see the man in front yard then gets back on the horse and continues talking.,see the road he had caught.,gold1-orig,pos,unl,unl,unl,unl,The runner stops on the home base and turns around.,We\nanetv_ne7uJQ0MUtE,875,The lady switches to a pink shirt and talks before pouring items into a small pot and stirring. The lady,turns the fire off and removes her pot.,adds some ingredients into lime juice.,places the cookies in a tray and mixes the ingredients.,picks up a glass and pours it into the drink.,\"puts ice into the blender, then applies the water and shakes it.\",gold1-orig,pos,unl,unl,unl,pos,The lady switches to a pink shirt and talks before pouring items into a small pot and stirring.,The lady\nanetv_ne7uJQ0MUtE,877,We see the lady with a glass bowl of lemon juice as she juices more lemons into a white container. The lady,puts the white container over a strainer into the glass bowl.,puts her screen along with eggs and blended water.,mixes in the container with the mug and then puts the electric lemonade in it.,puts her baking tray inside.,pours the liquor and fills in a glass of water and smokes.,gold1-orig,pos,unl,unl,unl,unl,We see the lady with a glass bowl of lemon juice as she juices more lemons into a white container.,The lady\nanetv_ne7uJQ0MUtE,874,A lady in a polka dot shirt stands in a kitchen talking. The lady,switches to a pink shirt and talks before pouring items into a small pot and stirring.,holds the contact lens in her right eye.,presents a knife to the doll.,puts a stack of clothes in a sink.,looks around and makes a face towards a large dog.,gold0-orig,pos,unl,unl,unl,pos,A lady in a polka dot shirt stands in a kitchen talking.,The lady\nanetv_ne7uJQ0MUtE,876,The lady turns the fire off and removes her pot. We,see the lady with a glass bowl of lemon juice as she juices more lemons into a white container.,see by man as she can see someone firing a gun into the dark.,see lights pan with food.,\"fade out, followed by a woman in bed.\",,gold0-orig,pos,unl,unl,pos,n/a,The lady turns the fire off and removes her pot.,We\nanetv_ne7uJQ0MUtE,878,The lady puts the white container over a strainer into the glass bowl. The lady,pours the lemon juice into a larger glass pitcher.,put the egg into a jar of glasses and pour water into a pot on the top.,\"takes a bite, and wraps a lemon in a strainer to keep the beer glass from the camera.\",shakes the brass dispenser motions and facing us.,puts the first eggs into the pan and sprinkles them into a pitcher.,gold1-reannot,pos,unl,unl,unl,unl,The lady puts the white container over a strainer into the glass bowl.,The lady\nanetv_ne7uJQ0MUtE,409,A woman demonstrates how to make lemonade from a kitchen using lemons and water. A woman,is standing in a kitchen next to a bowl of multi colored fruit.,pours lemon juice into a glass bowl and shows it at the rod.,speaks to the camera while inside an water dressing and talking.,spreads a little cake on a stove in her bedroom.,moves a shot on the table and then demonstrates several liquids from a container in a cup.,gold0-reannot,pos,unl,unl,unl,pos,A woman demonstrates how to make lemonade from a kitchen using lemons and water.,A woman\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4300,\"He struggles with it and with great difficulty, forces it back into the trunk and fastens it down with a strong chain. He\",\"gives someone a tiny, golden ball.\",submerges it in either directions and shows the foot open.,touches it to his lips and turns to struggle through the trunk of the freight car.,\"crosses it with a line, standing ready for someone.\",,gold0-orig,unl,unl,unl,unl,n/a,\"He struggles with it and with great difficulty, forces it back into the trunk and fastens it down with a strong chain.\",He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4297,\"Someone gives someone a wooden bat, then unchains one of the brown balls. It\",\"shoots straight up, above their heads, almost out of sight.\",cuts up its diamond shaped fingernails.,\"takes over 10, five - dime, across the road and skids to a stop.\",sneaks back up.,hits that gun but instead drops onto the green.,gold0-orig,pos,unl,unl,unl,pos,\"Someone gives someone a wooden bat, then unchains one of the brown balls.\",It\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4296,\"People carry a trunk out into the school grounds. They set the trunk on the grass, and someone\",\"takes out a large, red ball.\",looks about the floor.,climbs inside the pulling.,moves on past the wrapped group.,runs with abandoned shoes.,gold0-orig,pos,unl,unl,unl,unl,People carry a trunk out into the school grounds.,\"They set the trunk on the grass, and someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95839,4301,\"He gives someone a tiny, golden ball. Delicate, golden wings\",spring out of the snitch.,rise from the tower.,unfolds badly.,shoot out from a skyscraper.,smile at its waist.,gold0-reannot,pos,unl,unl,unl,unl,\"He gives someone a tiny, golden ball.\",\"Delicate, golden wings\"\nlsmdc3044_KNOCKED_UP-20866,15198,The pool sparkles outside the guesthouse. Now a pale chubby butt,lies naked under tangled sheets.,sits in a fancy gold seat beneath the elevated television and a chair singing the rose for the cake.,circles a curve on someone's miserable bare stomach.,boy stretches out his arms.,glows on a furry cat while she gazes out through its arch.,gold0-orig,pos,unl,unl,unl,unl,The pool sparkles outside the guesthouse.,Now a pale chubby butt\nlsmdc3044_KNOCKED_UP-20866,15199,\"Now a pale chubby butt lies naked under tangled sheets. Someone, standing and dressed,\",wrinkles her brow at someone's butt.,lies asleep in a dark leather lounge chair.,\"looking around, reading.\",\"turns to the stairs and starts up off the stairs to the third floor, which is missing.\",,gold0-orig,pos,unl,unl,unl,n/a,Now a pale chubby butt lies naked under tangled sheets.,\"Someone, standing and dressed,\"\nlsmdc3044_KNOCKED_UP-20866,15201,She extends her foot and touches someone's side. He,jerks up and glances around.,walks cautiously along an elevated platform outside.,picks someone up and hugs him.,faces his straggly haired friend.,,gold1-orig,pos,unl,unl,unl,n/a,She extends her foot and touches someone's side.,He\nlsmdc3044_KNOCKED_UP-20866,15200,\"Someone, standing and dressed, wrinkles her brow at someone's butt. She\",bounces the mattress with her foot.,tilts it toward the boy.,floats out onto the balcony.,drives someone welcome to the beach.,frowns with a thoughtful look.,gold1-orig,pos,unl,unl,unl,pos,\"Someone, standing and dressed, wrinkles her brow at someone's butt.\",She\nanetv_piKE8obU4JY,937,\"They begin their routine, each section moving in their own set way before coming together and spreading out again. They\",form into two rows and finish the song.,look like they do.,looks and spies the other soldiers lifting the floor on a line towards the second floor.,appear as they all come out of the area and touch each other.,,gold0-orig,pos,unl,unl,unl,n/a,\"They begin their routine, each section moving in their own set way before coming together and spreading out again.\",They\nanetv_piKE8obU4JY,936,A drum line gets in formation at an outdoor event. They,\"begin their routine, each section moving in their own set way before coming together and spreading out again.\",do a routine on the horizontal bars.,begin to play hopscotch on the table in front of the cows.,\"in and perform perform in the frat house, the old guy in the red shirt is watching from the back of a large beetle\",starts talking to the camera in a crowd.,gold0-orig,pos,unl,unl,unl,pos,A drum line gets in formation at an outdoor event.,They\nanetv_mjbzWcSeiwQ,5516,A hockey team prepares for a game. They,skate out from the locker room and warm up.,play a game of croquette in the dirt.,begin playing basketball for the competition for the tournament.,are standing at a net in front of the field.,\"hit the ball, in unison, lifting a weight over their head.\",gold0-orig,pos,unl,unl,unl,unl,A hockey team prepares for a game.,They\nanetv_mjbzWcSeiwQ,1580,Ice hockey players are getting dressed and signing autographs. They then,engage in a game of hockey.,engage in a game of beer pong.,go to a lacrosse game of lacrosse.,bow and give force with the game.,begin playing beer pong and score into each other.,gold1-orig,pos,unl,unl,unl,unl,Ice hockey players are getting dressed and signing autographs.,They then\nanetv_mjbzWcSeiwQ,1579,Numerous people arrive at a large facility. Ice hockey players,are getting dressed and signing autographs.,try and watch the main field hockey.,join into scene shots.,are at a table in a gym.,gather on the court.,gold1-reannot,pos,unl,pos,pos,pos,Numerous people arrive at a large facility.,Ice hockey players\nanetv_5kBKAfEX7XA,13891,An athlete is seen walking up to a set of uneven bars and begins performing a gymnastics routine on the bars. He,continues moving around on the bars and ends by jumping down on the side with his arms out.,continue floating on the bars doing long jumps as well as the hostages watching.,continue and spectators watch on the back as the man helps him up and then leads him around onto the mat.,is shown numerous angles in others cheers as he holds herself along the pommel along.,smiles at flips and jumps and lands on the floor to do a choreography while the crowd watches him he lays them down.,gold1-orig,pos,unl,unl,unl,unl,An athlete is seen walking up to a set of uneven bars and begins performing a gymnastics routine on the bars.,He\nanetv_pZZVzBD8bZY,6541,Various shots are shown of large crowd celebrating in the distance and people riding motorcycles around. The people,continue riding around in slow motion as the camera captures their movements.,\"continue to watch on the side on the boardwalk playing with along, enjoying the race while looking one around.\",move around the area while others watch on the side.,continue to cheer before the men take off and end up walking in the arena.,,gold0-orig,pos,unl,pos,pos,n/a,Various shots are shown of large crowd celebrating in the distance and people riding motorcycles around.,The people\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2243,\"She takes aim and moves silently towards the figure hidden by the branches. As she draws closer, she\",pushes the tree limbs aside.,notices the pillar edged with ash.,stares at the frozen crewman and takes a deep breath.,cocks her head and watches him.,,gold0-orig,pos,unl,unl,pos,n/a,She takes aim and moves silently towards the figure hidden by the branches.,\"As she draws closer, she\"\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2240,\"Someone continues walking through the woods, looking around. Nearby, the troll\",looks up from his meal of wild boar.,lies on asphalt.,\"is there, standing staring at someone.\",swings a dagger at the cafe.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone continues walking through the woods, looking around.\",\"Nearby, the troll\"\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1786,2242,\"She notices movement in the distance and cautiously investigates, her crossbow at the ready. She\",takes aim and moves silently towards the figure hidden by the branches.,reaches the front door and caged into the front door.,\"picks up another tray, gently picks it with her foot.\",sprints to the damp pathway below as he sees after grappling hanging from the safe.,reaches down and snatches the jacket from the shelf and back.,gold1-orig,pos,unl,unl,unl,pos,\"She notices movement in the distance and cautiously investigates, her crossbow at the ready.\",She\nanetv_IiCN1md2MV4,4638,\"Then, the man on back hit the ball that comes on the back. After, the man\",stop playing and walk.,takes the rake to begin the ball.,spins and throws balls after the blue pinata.,throws the ball back to the teen.,throws it and stand on the ground.,gold1-orig,pos,unl,unl,pos,pos,\"Then, the man on back hit the ball that comes on the back.\",\"After, the man\"\nanetv_IiCN1md2MV4,5085,They are playing wall ball. They,stop and walk towards the wall.,have a hard time playing the polo.,run and score the goal.,play a game of volley ball.,use a pipe on a large rock.,gold1-orig,pos,unl,unl,unl,unl,They are playing wall ball.,They\nanetv_IiCN1md2MV4,4636,Two men play squash in a room with a glass wall. The man on front,hits the ball to the wall.,talks and talks to the camera.,uses a ball in an oven to put plaster in the wall.,\"grabs a demonstrating gun, and talks with other men behind him.\",,gold0-orig,pos,unl,unl,unl,n/a,Two men play squash in a room with a glass wall.,The man on front\nanetv_IiCN1md2MV4,4637,\"The man on front hits the ball to the wall. Then, the man on back\",hit the ball that comes on the back.,flips off the wall and lands on the mouthpiece of the carpet.,floats as the second man hits the ball with his racquet.,falls to the ground.,get the balls and the other man hit the ball.,gold0-orig,pos,unl,unl,pos,pos,The man on front hits the ball to the wall.,\"Then, the man on back\"\nanetv_nXr1r26HZis,3929,A group of people are inside a building. They,are playing a game of foosball together.,are throwing two darts behind a table.,are trying to solve another rubik's cube.,begin to play a game of croquette.,are engaged in a game of hockey.,gold0-orig,pos,unl,pos,pos,pos,A group of people are inside a building.,They\nanetv_nXr1r26HZis,3930,They are playing a game of foosball together. They,\"kick the figures back and forth, trying to win the game.\",play a large game of hockey.,start playing a game of indoor soccer.,are playing a game of baskets.,kids have a tattoo on a side.,gold0-orig,pos,unl,unl,unl,unl,They are playing a game of foosball together.,They\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8886,Now someone arrives in a tasteful office where a man with a closely trimmed beard waits at a desk. He,gestures to a someone to sit on chair or ottoman.,rolls out of pink robe as she examines herself in the mirror.,\"leaps to the bedroom door, opens it.\",looks at a laptop and switches off the bedside lamp.,holds out a bag as he examines the reading glasses.,gold0-orig,pos,unl,unl,unl,pos,Now someone arrives in a tasteful office where a man with a closely trimmed beard waits at a desk.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8881,\"Reaching a reception desk, they peer at a vast wall mounted directory. Someone\",brushes off his son's suit jacket as he guides him along.,cautiously up and sees a small swastika looms to the stranger.,gives up the signal.,sits on the edge of the bed with her head lowered.,lights up a pane door.,gold0-orig,pos,unl,unl,unl,unl,\"Reaching a reception desk, they peer at a vast wall mounted directory.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8878,\"He leads her to a couch. As she sits, he\",lies down and puts his head in her lap.,places a cushion beside a table and lifts her pillow with her hand.,removes the cream from her fingers and studies it intently.,leans against someone's shoulder.,sees a man in a white shirt and a red white jacket.,gold1-orig,pos,unl,unl,pos,pos,He leads her to a couch.,\"As she sits, he\"\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8880,\"Someone ushers someone through a dignified office building's thriving lobby. Reaching a reception desk, they\",peer at a vast wall mounted directory.,\"find someone's hotel, studying his clock.\",look through the expensive beers and someone's fridge.,stand a ten feet tall.,turn and admire the image.,gold1-orig,pos,unl,unl,unl,pos,Someone ushers someone through a dignified office building's thriving lobby.,\"Reaching a reception desk, they\"\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8887,He gestures to a someone to sit on chair or ottoman. Someone,perches on the ottoman.,stands in his bedroom while the others watch tv.,grins as the two girls change their poles.,heads off.,\"into the shot, someone finally stands up and dives through a classroom.\",gold0-orig,pos,unl,unl,unl,unl,He gestures to a someone to sit on chair or ottoman.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8884,\"Later, someone faces a bearded man. Someone's head droops forward and he\",bites his upper lip.,bites someone's chest.,\"looks toward his melon model, finding the residue of its cover.\",pulls the parcel.,abruptly blinks and meets his eyes wide with concern.,gold0-orig,pos,unl,unl,unl,pos,\"Later, someone faces a bearded man.\",Someone's head droops forward and he\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8883,\"Now they sit side - by - side on a waiting room couch. Later, someone\",faces a bearded man.,\"sits on her couch, drinking.\",\"strolls to a car radio wash door, then walks into the hospital.\",sleeps on the couch.,wears a t - shirt.,gold1-reannot,pos,unl,unl,unl,unl,Now they sit side - by - side on a waiting room couch.,\"Later, someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2273,8882,Someone brushes off his son's suit jacket as he guides him along. Now they,sit side - by - side on a waiting room couch.,birder on to the other twin lobby carriages admiring the shoes.,wear dresses and gown print trousers and their business suits.,arrive at a full of ages ages.,reach a large venice royce and archways.,gold1-reannot,pos,unl,unl,unl,unl,Someone brushes off his son's suit jacket as he guides him along.,Now they\nanetv_0pegrKSh4iw,8244,Along man is seen standing beside him while the camera pans around to other musicians. People,are seen playing the guitar while the drummer continues drumming as well as a man singing into the microphone.,end the video leads into different shots of girls filling a gymnasium one back and fourth.,are seen sitting in front of singing.,are huddled around the ice watching.,are working on the street while the camera follows side to side.,gold0-orig,pos,unl,unl,unl,unl,Along man is seen standing beside him while the camera pans around to other musicians.,People\nanetv_0pegrKSh4iw,8243,A man is seen sitting behind a drum kit and begins to play a song on drums. Along man,is seen standing beside him while the camera pans around to other musicians.,plays the drums continuously and ends with them moving his arms and others around.,continues playing a harmonica all around the stage as the camera pans to change sides.,plays the instrument while the woman plays and switches back to the camera.,plays the song continuously while the other moves up and sings.,gold1-orig,pos,unl,unl,unl,pos,A man is seen sitting behind a drum kit and begins to play a song on drums.,Along man\nanetv_0pegrKSh4iw,15264,A man is seen playing a set of drums followed by another man standing near him. The man,continues playing while the man speaks into the microphone and other people play instruments around him.,moves up and down his instrument.,continues to play while speaking to the camera while still playing the guitar.,pushes his hands around and ends with the man still speaking and playing a set of drums.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen playing a set of drums followed by another man standing near him.,The man\nanetv_VR19Scunfhg,11824,Another man walks a tight rope in a park. that man,falls from his tightrope.,demonstrates rope on monkey bars.,is shown and as both of the men are tattooing and on tight ups.,stops the camera talking and looks off again.,is doing so under some trees while marking the scale.,gold0-orig,pos,unl,unl,pos,pos,Another man walks a tight rope in a park.,that man\nanetv_VR19Scunfhg,11822,A man walks a tight rope hanging over a pool. the man,falls in the pool.,jumps when he turns and runs walking.,wins and continues skateboarding on the road.,jumps the fourth man and skates several times while spinning and doing tricks.,plays the harmonica through his hands.,gold0-orig,pos,unl,unl,unl,unl,A man walks a tight rope hanging over a pool.,the man\nanetv_VR19Scunfhg,18018,\"After, various people attempt to do the same thing in various locations and they all fall off. Finally, the tv's are shown while videos are shown and the Youtube subscribe video\",is at the bottom.,shows a new lesson with video videos.,shows them demonstrating upright.,shows an animated video screen and shows scenes of woman grooming a horse and speaking to the camera.,showing the earth floating through the crowd.,gold0-orig,pos,unl,unl,unl,unl,\"After, various people attempt to do the same thing in various locations and they all fall off.\",\"Finally, the tv's are shown while videos are shown and the Youtube subscribe video\"\nanetv_VR19Scunfhg,18016,A man is shown tight roping across a small pond and eventually falls in the water. Another man,is shown doing the same thing but falls into the pool.,is standing on a surface of sand.,is seen looking off in the distance pulling the rope faster so the right don't hit it.,runs to the man and holds up his hands to the camera.,,gold1-orig,pos,unl,unl,pos,n/a,A man is shown tight roping across a small pond and eventually falls in the water.,Another man\nanetv_VR19Scunfhg,11825,That man falls from his tightrope. various people,are seen walking different tight ropes and falling.,step to pull out discus game.,are shown entering the tiny boat holding the surfer to the end and knitting along.,start to do hand springs.,begin running across the machine.,gold0-reannot,pos,unl,unl,unl,pos,That man falls from his tightrope.,various people\nanetv_dtvIQ9Pd-Bg,11246,A man in a kitchen has knifes and a sharpening block. The man,wets the block and runs a knife across two different blocks.,explains the proper technique for cutting up grass.,puts the knife on the man's left arm.,\"is cutting a tomato with knife knife sharpener, knives or sharpening a knife.\",explains the knife and cuts the peeled stumps of it with a blade.,gold0-orig,pos,unl,unl,pos,pos,A man in a kitchen has knifes and a sharpening block.,The man\nanetv_dtvIQ9Pd-Bg,11248,The man grabs a pole and sharpens the knife on it. The man,wipes the knife on a towel.,returns the sharpening knife to cut it.,shows how to chop the object in his bowl.,slides the knife and cuts the axle of the knife.,removes again and arms roll.,gold0-orig,pos,unl,unl,unl,unl,The man grabs a pole and sharpens the knife on it.,The man\nanetv_dtvIQ9Pd-Bg,11250,The man grabs and removes a lemon. The man,shows us an upside down pot.,drinks from a spinning pitcher and adds a final straw.,takes a straw onto the fabric and puts it in the bowl.,irons a shirt on a boat.,,gold1-orig,pos,unl,unl,unl,n/a,The man grabs and removes a lemon.,The man\nanetv_dtvIQ9Pd-Bg,11245,We see a man and the intro scene. A man in a kitchen,has knifes and a sharpening block.,stretches fast to the bar.,is doing splits in a pool.,places toilet paper on his shoulder.,is talking on the screen.,gold0-orig,pos,unl,unl,unl,pos,We see a man and the intro scene.,A man in a kitchen\nanetv_dtvIQ9Pd-Bg,11249,The man wipes the knife on a towel. The man,grabs and removes a lemon.,grabs the shoe to polish the towels now.,wipes the bathroom back on.,slaps the hand clean again.,wipes the excess paint off his bottom.,gold0-orig,pos,unl,unl,unl,unl,The man wipes the knife on a towel.,The man\nanetv_dtvIQ9Pd-Bg,11247,The man wets the block and runs a knife across two different blocks. The man,grabs a pole and sharpens the knife on it.,is seated on a mat with a gun in his hands.,pauses and finishes the weld before releasing it.,takes a knife and cuts the knife in half.,demonstrates a knife ready in a razor.,gold1-orig,pos,unl,unl,unl,unl,The man wets the block and runs a knife across two different blocks.,The man\nanetv_iC1C5wfb0iU,9365,The men on the right win and shake hands and hung. One man high fives a child,held up by a lady behind them.,kneeling off while the handcuffed man indoors wins the match.,outdoors and finishes them off during the day.,salon a cover on women stands.,cheering separately.,gold1-orig,pos,unl,unl,unl,unl,The men on the right win and shake hands and hung.,One man high fives a child\nanetv_iC1C5wfb0iU,9366,One man high fives a child held up by a lady behind them. We,see a closing screen.,monitor a girl of a man in a red runs from the crowd.,then drives on camels while the dog is curled on the floor.,see the man leave his right looking in a weird way and how to get get stuck up as we finish his filming.,and the woman follow and start to walk in someone's canoe.,gold1-orig,pos,unl,unl,unl,unl,One man high fives a child held up by a lady behind them.,We\nanetv_GhVERbQMZWQ,12030,A hummer backs a boat down a ramp. A person,is wake boarding behind the boat.,runs glumly along the first strip.,rises from an inter - wheeled dock.,moves his feet on the back of the snow ski.,cheers on the floor then hits another individual in the head.,gold1-orig,pos,unl,unl,unl,pos,A hummer backs a boat down a ramp.,A person\nanetv_GhVERbQMZWQ,12031,A person is wake boarding behind the boat. People,are sitting on the boat.,are sitting in rafts and touching the rapids.,are chasing a boat in the water.,fall into the waters behind him.,are at the top of an e mountain mountain.,gold0-orig,pos,unl,unl,unl,unl,A person is wake boarding behind the boat.,People\nlsmdc0010_Frau_Ohne_Gewissen-51482,4276,\"For a second he stands there motionless, then crosses to the door and opens it. Someone\",walks past him into the room.,\"lifts his brow, shifts to his feet, then watches as he draws back.\",\"leaps over the wall, searching for someone, who flees.\",opens a final look for tases.,,gold0-orig,pos,unl,unl,unl,n/a,\"For a second he stands there motionless, then crosses to the door and opens it.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51482,4269,\"He switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket. He\",picks up the phone.,\"puts it in the lock, slipping its plugs into and blowing it out of his hands.\",pulls out the lighter and tosses it away.,\"pulls up outside someone's car, rising down onto the porch.\",tugs at his collar.,gold1-orig,pos,unl,unl,unl,pos,\"He switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket.\",He\nlsmdc0010_Frau_Ohne_Gewissen-51482,4267,The corridor door opens letting light in. Someone,enters with his hat on and his briefcase under his arm.,\"looks at the offscreen someone, then turns back off the tap.\",stands ahead with writing.,ambles into the hallway.,\"steps into the room, and stops in front of his cornflakes, staring up below.\",gold0-orig,pos,unl,unl,unl,unl,The corridor door opens letting light in.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51482,4277,Someone walks past him into the room. His hands,are clasped behind his back.,move up and down.,are propped back on someone's head.,rest on someone's lap.,are clasped over someone's head.,gold0-orig,pos,unl,unl,pos,pos,Someone walks past him into the room.,His hands\nlsmdc0010_Frau_Ohne_Gewissen-51482,4273,\"He hangs up, takes off his hat and drops hat and briefcase on the davenport. He\",looks around the room and crosses to lower the venetian blinds and draw the curtains.,sets it down as someone crouches over someone and glances at him.,sits facing him and watches.,pays the railroad card.,walks along as someone is advanced to the stove.,gold0-orig,pos,unl,unl,unl,unl,\"He hangs up, takes off his hat and drops hat and briefcase on the davenport.\",He\nlsmdc0010_Frau_Ohne_Gewissen-51482,4275,Someone stops in sudden alarm. For a second he,\"stands there motionless, then crosses to the door and opens it.\",tries to damage the gun.,scales the dead wall.,slips on people's feet.,,gold0-orig,pos,unl,unl,pos,n/a,Someone stops in sudden alarm.,For a second he\nlsmdc0010_Frau_Ohne_Gewissen-51482,4268,Someone enters with his hat on and his briefcase under his arm. He,\"switches the lights on, closes the door, puts the lights on, closes the door, puts the key in his pocket.\",\"runs a hand across the long mustached columns face, which is visible among the glowing structure.\",reaches into his pocket and pulls out a handgun his father has him ready to do.,\"stands, staring at the walls, which windows are hanging open and a picture of him is to treasure.\",\"grabs off his jacket, knocking him to the ground.\",gold1-orig,pos,unl,unl,unl,unl,Someone enters with his hat on and his briefcase under his arm.,He\nlsmdc0010_Frau_Ohne_Gewissen-51482,4274,He gathers up the morning paper which is lying untidily on the floor and puts it in the waste - paper basket. Someone,stops in sudden alarm.,\"sprays the bowl with camouflaged tape, then uses an empty post to make a perfect new base.\",turns tearfully among one of the students.,struggles to make her grassy task.,climbs up from the crate to the counter and opens it.,gold0-orig,pos,unl,unl,unl,unl,He gathers up the morning paper which is lying untidily on the floor and puts it in the waste - paper basket.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51482,4270,He picks up the phone. Someone,is on the phone.,\"puts her phone back on the pavement, and stands right on the tracks.\",\"turns the cold, listening the fan, and goes back to the nerdist - cyclist arts instructor.\",\"shakes it again, and now the hovering 9 is shot.\",smiles at her phone.,gold1-orig,pos,unl,unl,unl,pos,He picks up the phone.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51482,4282,He has stopped in front of someone. They,look at each other for a tense moment.,points around the streets and watches for an attractive bmx alien.,\"bare looks in the bag lane, but unable to see what he - - - - it is a decision.\",shake him.,barge sitting across the blankets.,gold1-reannot,pos,unl,unl,unl,unl,He has stopped in front of someone.,They\nlsmdc0010_Frau_Ohne_Gewissen-51482,4278,His hands are clasped behind his back. Someone,closes the door without taking his eyes off someone.,back against the horrible face of the cafe!,slings across the dead floor.,looks into his goblet.,turns and leaves the cottage.,gold0-reannot,pos,unl,unl,pos,pos,His hands are clasped behind his back.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51482,4279,Someone closes the door without taking his eyes off someone. Someone,stops in the middle of the room and turns.,has computer eyes and his alert smile.,comes out of the office and opens the door for someone.,\"lifts his head and lifts it upwards, then gently trudges down the deck.\",drives someone back to the coffee shop.,gold0-reannot,pos,unl,unl,unl,unl,Someone closes the door without taking his eyes off someone.,Someone\nanetv_-aWU5Yj_OPw,11903,A young man is seated in a living room. He,is playing an electronic keyboard.,\"starts to touch a sofa, but ends up banging on the bed.\",is playing a pair of bongo drums with his hands.,is playing an accordion.,is playing an accordian.,gold0-reannot,pos,unl,pos,pos,pos,A young man is seated in a living room.,He\nanetv_p7j6yY99vEg,17011,Players are in a a side of a basket court gathered in a circle. referee wearing a yellow shirt,walks from the other side of the court.,is standing in a dark room watching them.,throws a yellow ball on the blue court.,holds a trophy as they continue to kick.,is standing and four teams are playing foosball as people start to talk.,gold0-orig,pos,unl,unl,unl,unl,Players are in a a side of a basket court gathered in a circle.,referee wearing a yellow shirt\nanetv_p7j6yY99vEg,6963,A man in an orange shirt throws a ball. They,start playing a game of basketball.,start facing him kneeling to the camera.,pick up the ball and start to jump.,boys tries to participate in a trick on the field.,\"are sitting outside a table talking, eating and drinking in front of a group of people.\",gold1-orig,pos,pos,pos,pos,pos,A man in an orange shirt throws a ball.,They\nanetv_LZ4dINjqX5U,14387,An athletic man is seen standing with his arms a up and begins performing a gymnastics routine. He,spins himself round and round on the bar performing several flips and tricks and ends with him sticking his arms up into the air.,continues playing with the object and moving himself around and waving to the camera while looking out.,moves around a hoop and showing more clips of him exercising and jumping onto the beam.,attacks several times while moving him all over the beam as well as set.,continues do a series of flips all around and ends with him hanging the bars.,gold1-orig,pos,unl,unl,unl,unl,An athletic man is seen standing with his arms a up and begins performing a gymnastics routine.,He\nanetv_4bw6ocN0jGU,5630,A dog is running by a lake. A man,is wake boarding behind a boat.,jumps into the river and she goes.,sprays the dog on the floor.,runs down a track and jumps into a rope.,holds a dog in a lake.,gold1-reannot,pos,unl,unl,unl,pos,A dog is running by a lake.,A man\nanetv_4bw6ocN0jGU,5631,A man is wake boarding behind a boat. A person,is sitting in the water.,is skiing down the air in a rock post.,is using sharp sticks to get something onto the kayak.,is sitting on a boat underwater.,is pushed up on the boat.,gold0-reannot,pos,unl,unl,unl,pos,A man is wake boarding behind a boat.,A person\nanetv_h-MWdTHW_Eg,9927,\"The girl walks to the other side then hits the birdie to the man. He picks it up and hits it to her, and she\",sends it back to him and back and forth.,draws into the paint ball.,starts to hit the car with her hands.,stands up with the baby.,,gold0-orig,pos,unl,unl,unl,n/a,The girl walks to the other side then hits the birdie to the man.,\"He picks it up and hits it to her, and she\"\nanetv_h-MWdTHW_Eg,9926,A man hits a birdie with a racket and a girl picks it up. The girl,walks to the other side then hits the birdie to the man.,watches from the wall then runs off.,grabs a stick and serves them over.,talks in front of a mirror.,grabs the car and pins it to her shoulders and picks it up.,gold0-orig,pos,unl,unl,unl,unl,A man hits a birdie with a racket and a girl picks it up.,The girl\nanetv_h-MWdTHW_Eg,9928,\"He picks it up and hits it to her, and she sends it back to him and back and forth. Two people\",are walking in the parking lot.,sit by a tree eating homework and walk away.,grab the ice and leave the trunk.,are striking him in the corner of the sofa.,,gold1-orig,pos,unl,unl,unl,n/a,\"He picks it up and hits it to her, and she sends it back to him and back and forth.\",Two people\nanetv_h-MWdTHW_Eg,15100,A man and a little girl are playing badminton in front of a playground. The girl,picks up the birdie off the ground and serves it.,jumps and jumps off a diving board.,gets a medal in her hand.,interacts in a bar with sticks to the side.,starts to push the ball back and forth.,gold0-orig,pos,unl,unl,unl,pos,A man and a little girl are playing badminton in front of a playground.,The girl\nanetv_h-MWdTHW_Eg,15101,The girl picks up the birdie off the ground and serves it. The man,walks off the court.,runs and proceeds to get the tennis ball on the table.,\"kicks the ball up off the fire, then returns to the backyard, and approaches.\",walks back up the sidewalk with the ball in her hand.,,gold0-orig,pos,unl,unl,unl,n/a,The girl picks up the birdie off the ground and serves it.,The man\nanetv_e9l3PzP4uGQ,3131,\"The person rolls them into balls and sets them on a plate, finally sticking them into the oven. She then\",pulls out the made cookies and gives the camera a thumbs up.,rolls over on the dough and mixes it together.,pulls away the lid and folds it in half.,cooks and measuring all the ingredients that they want to make.,,gold0-orig,pos,unl,unl,pos,n/a,\"The person rolls them into balls and sets them on a plate, finally sticking them into the oven.\",She then\nanetv_e9l3PzP4uGQ,3130,Various clip are shown of ingredients being laid out in bowls followed by a person mixing them all together. The person,\"rolls them into balls and sets them on a plate, finally sticking them into the oven.\",beats paper ingredients into hitting a mixer.,continues cutting the mound and moving around making sacks and food together.,attempts to apply all the ingredients into the bowl and ends by showing off the bowl and putting it into the camera.,\"mixes the ingredients into the bowl as well as pouring various ingredients into the bowl, rubbing it along the white skillet.\",gold1-orig,pos,unl,unl,unl,pos,Various clip are shown of ingredients being laid out in bowls followed by a person mixing them all together.,The person\nanetv_5ZmZr2bguy0,4991,A woman is seen standing in a large circle and bending herself forward. The woman then,spins herself around and throws an object off into the distance.,cuts the contact onto the bar while speaking to the camera and waving to the camera.,starts doing stunts in elliptical.,begins playing the instrument.,releases the handle bars.,gold1-orig,pos,unl,unl,unl,unl,A woman is seen standing in a large circle and bending herself forward.,The woman then\nanetv_5ZmZr2bguy0,4992,The woman then spins herself around and throws an object off into the distance. The woman,does this several times afterwards.,stands on the beam as well as the purple volleyball on the woman poses and walks up.,spins around various angles that end her swinging around arm round and pulling away.,stands and walks back.,spins and throws the hammer.,gold1-orig,pos,unl,unl,pos,pos,The woman then spins herself around and throws an object off into the distance.,The woman\nanetv_3FZ47muWIYA,2583,The children hold up objects while speaking and lead into them washing their hands. The kids,continue washing and drying their hands and walk out.,continue to use the ball and push around while looking to the camera.,continue playing while looking down and speaking to the camera.,are then shown again in various shots swimming in front of a person and looking around.,,gold0-orig,pos,unl,unl,unl,n/a,The children hold up objects while speaking and lead into them washing their hands.,The kids\nanetv_3FZ47muWIYA,2582,A person is seen washing their hands and leads into children speaking to the camera. The children,hold up objects while speaking and lead into them washing their hands.,continue to play with their dog while several clips are shown of people wind drying their hair.,untie each other back and fourth while the camera pans around the other.,continue to ride over and snowboards with one another as well as under the water.,practice together while others watch on one side and begin playing with one another.,gold0-orig,pos,unl,unl,unl,pos,A person is seen washing their hands and leads into children speaking to the camera.,The children\nanetv_3FZ47muWIYA,5770,A video is shown on the importance of washing your hands. Kids,talk about their experiences.,come into a living room using a spring board.,try to make a put on the floor to glue.,are sitting in a water swimming pool.,\"are on a counter covered with shots, a magazine.\",gold1-orig,unl,unl,unl,unl,unl,A video is shown on the importance of washing your hands.,Kids\nanetv_uFMlVrTUoR8,13782,He rakes it out over the ground. He,brings another wheelbarrow full of mulch and rakes it out over the lawn.,then begins shoveling snowy in his yard.,picks up a stick and puts it on a field.,talks about the process.,,gold0-orig,pos,unl,unl,pos,n/a,He rakes it out over the ground.,He\nanetv_uFMlVrTUoR8,13781,A man dumps a wheelbarrow of mulch on the lawn. He,rakes it out over the ground.,stops the mower and uses it to mow his yard.,walks up to a window.,sprays water on the bush near the cars.,,gold0-orig,pos,unl,unl,pos,n/a,A man dumps a wheelbarrow of mulch on the lawn.,He\nanetv_g7IZWqeyM20,8364,\"A man appears with a racket and he's talking to the camera as he hits a racketball then various small clips play afterwards that include him hitting the racketball as well as various other people playing, too. The outro screen appears and it\",'s exactly like the white intro screen.,includes four blue walks and it left then the subscribe button.,shows the same video session then two men skateboarding down one and sitting in to a stop.,shows a small well thing and a location that the website hones in.,is a bottom man who is blowing dirt from a bottle and he continues to stare at it.,gold0-orig,pos,unl,unl,unl,unl,\"A man appears with a racket and he's talking to the camera as he hits a racketball then various small clips play afterwards that include him hitting the racketball as well as various other people playing, too.\",The outro screen appears and it\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15201,\"Elsewhere, the caddy peeks out from a sunken sand trap. The caddy\",crawls out from hiding.,turns going into a cattle restaurant.,throws it on the ground and gets a kangaroo up.,lifts a heavy towel by the steering frame.,friend drops his score and beams after him.,gold0-orig,pos,unl,unl,pos,pos,\"Elsewhere, the caddy peeks out from a sunken sand trap.\",The caddy\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15197,The bounty hunter frantically dodges golf balls as they whiz toward him. He,leaps over one then ducks another.,tosses the man's quill in his shoulder.,punches his crotch in a supermarket.,taps his mobile to the ready as the garbage travels through the arena detection.,takes a few glimpse of the sign from the window.,gold0-orig,pos,unl,unl,unl,pos,The bounty hunter frantically dodges golf balls as they whiz toward him.,He\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15195,One rumples his lips then flees. He,scurries down some steps.,looks away from his desk and flips on his cell.,opens his mouth and exhales.,runs up to someone's suv then steps close to someone.,,gold0-orig,pos,unl,unl,pos,n/a,One rumples his lips then flees.,He\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15202,\"As he holds the flag for putting golfers, someone spies him. Someone\",steers the cart in the caddy's direction.,commander walks in the hall between the open doors behind someone.,runs off lush the horses and follows someone.,throws a bulb up at him and hits him on the head.,watches as someone smiles to the camera.,gold1-orig,pos,unl,unl,pos,pos,\"As he holds the flag for putting golfers, someone spies him.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15194,The couple steps out back and wanders through a festive picnic. He,walks her to the party's edge.,whacks their face over and strolls over to the young girls as they separate.,gives a photo of a sports beer.,climbs up snow - filled hills from outside almost far.,\"sprays a tray of pies with a long, straight coat.\",gold0-orig,pos,unl,unl,unl,unl,The couple steps out back and wanders through a festive picnic.,He\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15196,The caddy leads him down a hill and across a grassy driving range. The bounty hunter frantically,dodges golf balls as they whiz toward him.,tries to level a phone.,stands in the other direction.,\"adjusts his head, and furrows his brow.\",climbs out of a vehicle.,gold0-orig,pos,unl,unl,unl,pos,The caddy leads him down a hill and across a grassy driving range.,The bounty hunter frantically\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15199,\"One ball buzzes low over his head and a fourth whips past his nose. As he leaves the range and runs onto a green, someone\",drives up in a golf cart.,appears and watches him out of a window.,\"restrains the burly leader, who punches him and pushes him in.\",crashes to the ground behind.,,gold0-orig,pos,unl,unl,unl,n/a,One ball buzzes low over his head and a fourth whips past his nose.,\"As he leaves the range and runs onto a green, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15200,\"As he leaves the range and runs onto a green, someone drives up in a golf cart. Elsewhere, the caddy\",peeks out from a sunken sand trap.,blows their ears as they go.,wears a small white veil.,runs a bowling alley across the street.,leads his way across a country road to a desolate farm.,gold1-orig,pos,unl,unl,unl,unl,\"As he leaves the range and runs onto a green, someone drives up in a golf cart.\",\"Elsewhere, the caddy\"\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15198,He leaps over one then ducks another. One ball buzzes low over his head and a fourth,whips past his nose.,impaled with his rucksack.,heap of dead bodies.,hit by the sailors.,swing knocks its brutish friend round.,gold0-orig,pos,unl,unl,unl,unl,He leaps over one then ducks another.,One ball buzzes low over his head and a fourth\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15204,\"Dropping the flag, he dashes over a hill. Someone\",\"leaps out, tackles the caddy, and tumbles with him into the water.\",appear seven years later.,paces to cab and immediately calls to him.,descends someone's spear with his chained fist.,,gold0-orig,pos,unl,unl,pos,n/a,\"Dropping the flag, he dashes over a hill.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15203,\"The young man spots them and his polite smile fades. Dropping the flag, he\",dashes over a hill.,\"jumps over her shoulder, then scrambles extends his hand.\",turns on the lights and unlocks it.,plods down the aisle.,gives her a hard time.,gold0-orig,pos,unl,unl,pos,pos,The young man spots them and his polite smile fades.,\"Dropping the flag, he\"\nlsmdc3069_THE_BOUNTY_HUNTER-4926,15205,He shows his tattooed chest. Someone swaps,looks with someone then releases the caddy.,scissors with both hands.,looks with someone as the real artest serves.,stares with a disappointed boy.,looks with someone and looks wearily at the floor.,gold1-reannot,pos,unl,pos,pos,pos,He shows his tattooed chest.,Someone swaps\nanetv_47OMV7rZrQA,989,She then begins to perform for the judges. She,does numerous moves in martial arts for the crowd.,\"loses her balance, flips, and celebrates, her elbows boobs up.\",moves around the class.,\"makes them seem quite excited, finally a few athletes and powder on her.\",moves up on her violin.,gold0-orig,pos,unl,unl,unl,unl,She then begins to perform for the judges.,She\nanetv_47OMV7rZrQA,988,A woman walks onto a mat in a gym. She then,begins to perform for the judges.,walks across the mat.,jumps down and sits on a mat.,continues doing this routine on the uneven bars.,puts her feet in a weight.,gold1-orig,pos,unl,unl,unl,unl,A woman walks onto a mat in a gym.,She then\nanetv_47OMV7rZrQA,17746,She then begins moving her arms and legs around along the mat while looking off into the distance. The woman,continues moving around the mat with her arms and legs and ends by holding a pose and bowing.,continues speaking to the camera while moving her hands all around the steppers and ends by speaking softly to the man.,continues her running routine and ends by her jumping up and off of stage as well as unseen talking.,continues kicking up the beam and continues performing various flips as well as bowing off in the distance.,,gold0-orig,pos,unl,unl,unl,n/a,She then begins moving her arms and legs around along the mat while looking off into the distance.,The woman\nanetv_47OMV7rZrQA,17745,A woman is seen walking out onto a large mat with many picture watching her on the side. She then,begins moving her arms and legs around along the mat while looking off into the distance.,begins moving herself around the beam and looking off into the distance.,holds up the flipping paper in the end while another person push around in the end.,throws several darts back and fourth on her board and leads into her grabbing the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen walking out onto a large mat with many picture watching her on the side.,She then\nanetv_LAbzDJZtSvQ,3050,\"A man is standing in the woods, talking. He\",uses an ax to hit a large piece of wood.,shows his foot on a wave.,is walking towards the shoreline.,\"blows a fire at the ground, then runs.\",is cleaning the road with the supplies.,gold0-orig,pos,unl,unl,unl,pos,\"A man is standing in the woods, talking.\",He\nanetv_LAbzDJZtSvQ,3051,He uses an ax to hit a large piece of wood. He,splits the wood into logs with the ax.,stands up and uses the grass bite.,creeps towards the top of the stairs.,knocks on him on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,He uses an ax to hit a large piece of wood.,He\nanetv_1Y3BV0Awjuo,10698,We see food on a table and a lady picking at a potato. The potato,\"is cut, then dropped in a pot.\",slides the potatoes into a bowl.,begins to take another cutting of the potato.,peels the potato and puts it on the kitchen counter.,,gold0-orig,pos,unl,unl,unl,n/a,We see food on a table and a lady picking at a potato.,The potato\nanetv_1Y3BV0Awjuo,10701,\"We see a red illustration on a potato and a potato is mashed. Two more potatoes are peeled easily, Another potato\",is boiled and dropped in cold water.,is mixed and then chopped meat is taped onto a plate.,is on paper and sliced.,will be chopped in a plate.,,gold0-orig,pos,unl,pos,pos,n/a,We see a red illustration on a potato and a potato is mashed.,\"Two more potatoes are peeled easily, Another potato\"\nanetv_1Y3BV0Awjuo,10699,\"The potato is cut, then dropped in a pot. It's transferred to cold water and the skin just\",slides off when pulled.,want to taste him dry.,seems to have catfish around the hole.,moved from the vehicle and pointed to how to turn it around.,dips into your mouth.,gold0-orig,pos,unl,unl,unl,unl,\"The potato is cut, then dropped in a pot.\",It's transferred to cold water and the skin just\nanetv_1Y3BV0Awjuo,10700,It's transferred to cold water and the skin just slides off when pulled. We,see a red illustration on a potato and a potato is mashed.,\"- - below, the water instantly explodes as he hears someone standing up.\",can no longer breathe.,comes safely filling the darkened gramophone with only a few shadow.,,gold0-reannot,pos,unl,unl,unl,n/a,It's transferred to cold water and the skin just slides off when pulled.,We\nanetv_VeWdsZb5tog,3884,Two young women are talking to each other. A slinky is thrown and a girl,hops to where the slinky dropped.,in the tournament quickens her voice to lift him by his shoulder.,took her tools and stretches out the hose.,is still at a bar with him following her.,,gold0-orig,pos,unl,unl,pos,n/a,Two young women are talking to each other.,A slinky is thrown and a girl\nanetv_VeWdsZb5tog,3885,A slinky is thrown and a girl hops to where the slinky dropped. Another girl in a black shirt,\"hops around, too.\",is an pulled his arms and neck from each position.,is demonstrating the ballet move that extend to her skirt spinning.,is posing after the darts hit.,,gold1-orig,pos,unl,unl,unl,n/a,A slinky is thrown and a girl hops to where the slinky dropped.,Another girl in a black shirt\nanetv_VeWdsZb5tog,3887,The girls sit down on the sidewalk and talk. The girls,go to another area to sit down and talk.,struggle to open their ears and dance.,take their glasses off and enjoy a tango routine.,finishes and continues talking.,are looking at the tables they did.,gold0-orig,pos,unl,unl,unl,unl,The girls sit down on the sidewalk and talk.,The girls\nanetv_VeWdsZb5tog,12114,A couple of girls are standing outside of a house. They,\"are laughing and talking, playing with their hair.\",are standing in a flash bright orange in front of them.,are playing cricket at a table.,are picking up something from the inside.,are standing on a grass in front of a large crowd watching them.,gold0-orig,pos,unl,unl,unl,pos,A couple of girls are standing outside of a house.,They\nanetv_VeWdsZb5tog,3886,\"Another girl in a black shirt hops around, too. The girls\",sit down on the sidewalk and talk.,pretends to do makes her way together.,do a back flip by falling down.,stop with the girls catch their legs.,continue walking around the end going around the bars.,gold1-reannot,pos,unl,unl,unl,pos,\"Another girl in a black shirt hops around, too.\",The girls\nanetv_VeWdsZb5tog,12115,\"They are laughing and talking, playing with their hair. They\",are then shown playing several games of hopscotch.,tie the shoes into a pink room.,play practicing their sumo outfits and playing the street in front of the camera.,are in the public and acting as eat their meal.,,gold0-reannot,pos,unl,unl,unl,n/a,\"They are laughing and talking, playing with their hair.\",They\nlsmdc0011_Gandhi-52563,9926,\"Someone's spinning never stops. Someone looks up at someone, someone\",shakes his head solemnly.,\"looks over his shoulder at him as the crowd lifts, which has been taken by other.\",'s feet on the ground.,'s panic taking in her cold.,is still sitting next to someone.,gold0-orig,pos,unl,unl,unl,pos,Someone's spinning never stops.,\"Someone looks up at someone, someone\"\nlsmdc0011_Gandhi-52563,9929,\"He holds someone's eyes, giving strength. Then he\",\"turns to someone, made more aware of her by someone's reference.\",mimes greek - medicine.,\"stands, walks forward toward a corner, connecting the chain off someone's belt and back at someone.\",jerks his face at his mother's face and vomits.,,gold1-orig,pos,unl,unl,unl,n/a,\"He holds someone's eyes, giving strength.\",Then he\nlsmdc0011_Gandhi-52563,9928,Someone reaches out and touches his hand. He,\"holds someone's eyes, giving strength.\",grins as he bounces a kite in the air.,spots someone from bedside rising then keeps quiet.,stares at someone but does n't take his eyes off her.,,gold1-orig,pos,unl,unl,pos,n/a,Someone reaches out and touches his hand.,He\nlsmdc0011_Gandhi-52563,9927,\"Someone looks up at someone, someone shakes his head solemnly. But he\",does not go on.,smiles again and smiles tearfully.,tightens his eyes tightly.,simply tries to start offering someone's hand.,spreads his wings and dances with people.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks up at someone, someone shakes his head solemnly.\",But he\nlsmdc1047_Defiance-91553,11610,Someone hits back and launches himself at his brother. Someone,\"tries to pull them apart, but is shoved to one side.\",leaps in the back of a pool as he flies off.,walks in and punches the bald man.,takes a huge leap and crashes onto the sofa.,flings the bat at his dad.,gold0-orig,pos,unl,pos,pos,pos,Someone hits back and launches himself at his brother.,Someone\nlsmdc1047_Defiance-91553,11622,\"Straightening his jacket, he looks around at the assembled people staring at him. Someone\",picks up his gun.,is transformed into two jabs.,scoots down next to someone.,looks around at someone.,skates back over to the bar.,gold0-orig,pos,unl,pos,pos,pos,\"Straightening his jacket, he looks around at the assembled people staring at him.\",Someone\nlsmdc1047_Defiance-91553,11618,\"He pushes someone down on his back, picks up a round stone and prepares to throw it. Someone\",holds a protective hand in front of his face.,arcs over someone's face and descend on the meager morgul in his aunt's apartment.,\"adopts a terrible look, then fires a bullet at the animal near him.\",\"hands him an invite as he goes, and someone descends in the other direction.\",\"looks at his father, open - mouthed.\",gold0-orig,pos,unl,unl,unl,pos,\"He pushes someone down on his back, picks up a round stone and prepares to throw it.\",Someone\nlsmdc1047_Defiance-91553,11625,The two young people look at each other. Someone,looks at them both and affectionately pats someone on the cheek.,brings it back to mrs. po.,is asleep in the driver's seat.,looks up at someone.,led someone with someone.,gold0-orig,pos,unl,pos,pos,pos,The two young people look at each other.,Someone\nlsmdc1047_Defiance-91553,11612,Someone 'next blow sends someone reeling to the ground. Someone,looks at them both in shock.,rests her head on someone's shoulder.,throws off his shield and he shoots someone in the head and blood streaming between the hut's roof.,rips her hair off her head and gazes up at the statue of liberty.,lunges across the flattened cover towards someone's chest.,gold0-orig,pos,unl,unl,unl,pos,Someone 'next blow sends someone reeling to the ground.,Someone\nlsmdc1047_Defiance-91553,11615,Someone slowly scrambles to his feet. He,pulls him up with both hands and slams him back onto the muddy ground.,carefully leaves the casket with hot blanket wrapped around it.,attempts to follow someone as marley off himself onto the dirt.,picks up his gun and rams the wood back onto the crawl wall.,,gold0-orig,pos,unl,unl,unl,n/a,Someone slowly scrambles to his feet.,He\nlsmdc1047_Defiance-91553,11624,\"Someone addresses someone, who's standing with someone. The two young people\",look at each other.,are glued to the rocks.,have been gathered for dinner.,stand close to someone.,are thoroughly enjoying themselves.,gold0-orig,pos,unl,unl,pos,pos,\"Someone addresses someone, who's standing with someone.\",The two young people\nlsmdc1047_Defiance-91553,11633,\"Someone nods at someone who nods back. As the Russian commander moves on, someone and his men\",fall in with the russian foot soldiers.,stand at the prow.,stare as soldiers cock their heads.,make their way through an pursuing field.,look at each other.,gold0-orig,pos,unl,pos,pos,pos,Someone nods at someone who nods back.,\"As the Russian commander moves on, someone and his men\"\nlsmdc1047_Defiance-91553,11614,Someone rolls someone on his back with a flick of his foot. Someone slowly,scrambles to his feet.,swats the blade to his side.,lowers himself on his knees.,turns back towards someone.,\"emerges from his shelter, his leg draped over his bent body.\",gold0-orig,pos,unl,unl,unl,unl,Someone rolls someone on his back with a flick of his foot.,Someone slowly\nlsmdc1047_Defiance-91553,11628,\"Without a word, he grabs his machine gun, and with a line of volunteers behind, strides off past someone. At Nowogrodek, Nazi soldiers\",stand guard as jewish men and women wearing yellow stars file into the ghetto.,detach from a screaming spear.,\"walk down the aisle, with flashlights, flashlights down a hallway at an interior complex.\",\"leap into vehicles, lined with geese flying through the sky.\",aims people at the policeman and running across a hallway to a mocha - player with a nose gun.,gold0-orig,pos,unl,unl,unl,unl,\"Without a word, he grabs his machine gun, and with a line of volunteers behind, strides off past someone.\",\"At Nowogrodek, Nazi soldiers\"\nlsmdc1047_Defiance-91553,11613,Someone looks at them both in shock. Someone,rolls someone on his back with a flick of his foot.,waves his hands into the sink.,talks for a few moments before someone laughs.,presses his lips together pensively.,shakes his head and smiles mischievously.,gold0-orig,pos,unl,unl,pos,pos,Someone looks at them both in shock.,Someone\nlsmdc1047_Defiance-91553,11616,\"He pulls him up with both hands and slams him back onto the muddy ground. He goes to do it again, but someone\",fists him in the groin.,pulls the chain away from her.,has made lazily down the driveway.,\"is lying around, looking worn.\",remains at the next door.,gold0-orig,pos,unl,unl,unl,unl,He pulls him up with both hands and slams him back onto the muddy ground.,\"He goes to do it again, but someone\"\nlsmdc1047_Defiance-91553,11609,\"He steps towards someone, who's looking at the blood on his fingers. Someone\",hits back and launches himself at his brother.,looks back at the unseen someone.,squints at the unshaven man holding a long piece of steel.,is fired.,\"closes the trunk, getting wonderingly for the vault.\",gold1-orig,pos,unl,unl,unl,unl,\"He steps towards someone, who's looking at the blood on his fingers.\",Someone\nlsmdc1047_Defiance-91553,11631,They carefully tread along a low - tiled roof. They,climb down at the far end of the roof and hurry towards the interior of the ghetto.,align a man hunched.,sit down on lounges on a campfire table.,turn down the corridor.,unlock a gate in a chamber.,gold0-orig,pos,unl,unl,unl,unl,They carefully tread along a low - tiled roof.,They\nlsmdc1047_Defiance-91553,11626,Someone looks at them both and affectionately pats someone on the cheek. He,turns to find someone standing behind him.,smiles politely at his next joke and gets to the car.,\"walks up into her kitchen, eating a half - eaten chicken.\",touches him.,kisses someone's forehead.,gold0-orig,pos,unl,pos,pos,pos,Someone looks at them both and affectionately pats someone on the cheek.,He\nlsmdc1047_Defiance-91553,11617,\"He goes to do it again, but someone fists him in the groin. He\",\"pushes someone down on his back, picks up a round stone and prepares to throw it.\",\"does n't eat the boy, triumphant after the explosion.\",\"goes over and walks off with both hands, acutely lifelessly to the floor, blood soaking his skin.\",puts the user back on.,changes the release light as he struggles with the tie.,gold1-orig,pos,unl,unl,unl,unl,\"He goes to do it again, but someone fists him in the groin.\",He\nlsmdc1047_Defiance-91553,11629,\"At Nowogrodek, Nazi soldiers stand guard as Jewish men and women wearing yellow stars file into the ghetto. People\",stride purposefully past the ghetto entrance.,\"cling to the slanted roof, tearing apart the chess pieces.\",are walking in footage of a lake.,they enter the crowded parlor as someone climbs an ancient staircase.,,gold0-orig,pos,unl,unl,unl,n/a,\"At Nowogrodek, Nazi soldiers stand guard as Jewish men and women wearing yellow stars file into the ghetto.\",People\nlsmdc1047_Defiance-91553,11611,\"Someone tries to pull them apart, but is shoved to one side. Someone 'next blow\",sends someone reeling to the ground.,\"is broken through a wall, followed by the blast.\",catches his breath as he wanders back to his office and chats with someone.,\"hits someone, taking him off, knocking him down.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone tries to pull them apart, but is shoved to one side.\",Someone 'next blow\nlsmdc1047_Defiance-91553,11632,They climb down at the far end of the roof and hurry towards the interior of the ghetto. Someone,nods at someone who nods back.,out into an adjacent courtyard.,\"appears to bowl, and wipes his mouth.\",nods for the boys to leave the house.,\"looks out at this apartment, not seeing it.\",gold1-reannot,pos,unl,unl,unl,unl,They climb down at the far end of the roof and hurry towards the interior of the ghetto.,Someone\nlsmdc1047_Defiance-91553,11619,\"People watch in mute shock. With a livid scowl, someone\",drops the stone on the ground and gets to his feet.,\"stops, looks at someone, who holds him with one hand nearby.\",doubles the front and hunches over and pulls the hood off the mannequin.,enters as all the other troops cheerful hit it.,rolls her eyes from a scanner.,gold0-reannot,pos,unl,unl,unl,unl,People watch in mute shock.,\"With a livid scowl, someone\"\nlsmdc1047_Defiance-91553,11621,\"Someone sits up and wipes his mouth. Straightening his jacket, he\",looks around at the assembled people staring at him.,hangs his eyes as he rings a doorbell.,rolls down his sleeves.,sits up and lays his hands on his hips.,backs away from the others.,gold1-reannot,pos,unl,unl,unl,pos,Someone sits up and wipes his mouth.,\"Straightening his jacket, he\"\nlsmdc1047_Defiance-91553,11620,\"With a livid scowl, someone drops the stone on the ground and gets to his feet. Someone\",sits up and wipes his mouth.,holds a scrap of paper to his index finger.,opens the door and finds someone standing in a cage.,lowers the chain around his wrist and catches it.,looks back down the street intersection and pauses.,gold0-reannot,pos,pos,pos,pos,pos,\"With a livid scowl, someone drops the stone on the ground and gets to his feet.\",Someone\nlsmdc1047_Defiance-91553,11630,People stride purposefully past the ghetto entrance. They carefully,tread along a low - tiled roof.,find out a greenish - shaped squeegee on the conveyor belt.,lift the door close to meet someone's.,riddle a stair wall with one of the bookshelves.,,gold0-reannot,pos,unl,pos,pos,n/a,People stride purposefully past the ghetto entrance.,They carefully\nlsmdc1047_Defiance-91553,11627,\"He turns to find someone standing behind him. Without a word, he\",\"grabs his machine gun, and with a line of volunteers behind, strides off past someone.\",\"tips his dressing gown and faces someone, then gives someone a pleading look.\",crosses the room wearing a light - glow wind rising through the night air.,\"grabs a little impatiently, then rubs the pale silvery white robe over her head.\",staggers back and bends and whispers against the temple.,gold1-reannot,pos,unl,unl,unl,pos,He turns to find someone standing behind him.,\"Without a word, he\"\nlsmdc1047_Defiance-91553,11608,People and the others look accusingly at someone. He,\"steps towards someone, who's looking at the blood on his fingers.\",turns to page and sees someone.,cuts them off and taking off his necklace.,looks at her for a moment.,lifts his bald look to someone as they make their way over a crowded stage.,gold1-reannot,pos,unl,unl,unl,pos,People and the others look accusingly at someone.,He\nanetv_dn1qrAHh7k0,12285,Man spread buter on the bread and is toast in a pan while the cheese is melting. when the sandwixh is ready the man,serve it in a white plate.,grinds the gray wood over the sandwich kneels on the table.,\"is eating a hot cream and mustard, baking in the sausage of a bread oven.\",holds the ax's egg and put it in a carrier pile.,,gold0-orig,pos,unl,unl,unl,n/a,Man spread buter on the bread and is toast in a pan while the cheese is melting.,when the sandwixh is ready the man\nanetv_dn1qrAHh7k0,6013,\"A person slathers the bread with mayo, then tops it with provolone cheese. The sandwich\",is then fried in a pan.,is tied up while removing something and slipping the potato in a pot.,is and shows the entire vast salad.,is relax on the bread and down plate.,is standing on a wooden slice in this yard.,gold0-orig,pos,unl,unl,unl,unl,\"A person slathers the bread with mayo, then tops it with provolone cheese.\",The sandwich\nanetv_jJ5t3ZUxP7Y,17671,A man walks over to the end of a table that has a bunch of red cups arranged in a triangle. He,begins to toss a ball into the cups.,\"bends down over, begins the game of the player and then takes it.\",\"continues running around the floor, then lets the ball go to the ground.\",uses the piece of cake and holds it aloft to reach the top of the cup.,\"put a right index of his eye, and then leans forward to kiss as a young man throws his head in the air.\",gold0-orig,pos,unl,unl,unl,unl,A man walks over to the end of a table that has a bunch of red cups arranged in a triangle.,He\nanetv_jJ5t3ZUxP7Y,17672,He begins to toss a ball into the cups. The video goes to black and a graphic,appears to close the clip.,shows next scenes of his donut park.,shines on a page.,shows a picture of a lost person.,,gold0-reannot,pos,unl,pos,pos,n/a,He begins to toss a ball into the cups.,The video goes to black and a graphic\nanetv_nezTU6Bq5hM,19200,The camera zooms in on the boy as he cuts the grass. The boy,stops cutting and pushes the grass with the shears.,looks to the crowd.,spins around and touches one of the dog on the tail.,\"picks up the items, ready to cut the grass.\",tries to read down again but ends by commentators kicking the boy up with all the bars watch.,gold1-orig,pos,unl,unl,unl,unl,The camera zooms in on the boy as he cuts the grass.,The boy\nanetv_nezTU6Bq5hM,19199,A teen is squatting in the grass cutting grass with hedge shears. The camera,zooms in on the boy as he cuts the grass.,shows a man writing a company design.,focuses on all the croquet clips in the yard.,shows the man mowing the lawn.,\"moves all around the yard, where he steps and moves to the camera.\",gold0-orig,pos,unl,pos,pos,pos,A teen is squatting in the grass cutting grass with hedge shears.,The camera\nanetv_nezTU6Bq5hM,9178,A man is kneeling down on grass. He,is clipping the grass with large scissors.,is on a board skating around a corner.,picks up a plate of food and puts it in front.,is playing the harmonica.,is holding a lacrosse bag.,gold0-orig,pos,unl,unl,unl,pos,A man is kneeling down on grass.,He\nanetv_nezTU6Bq5hM,9179,He is clipping the grass with large scissors. The man,is wearing a yellow and red shirt.,licks the cut legs.,uses green yarn and yarn to trim the bush as she goes to and ends and deals with the other.,uses the brush to groom a white towel on his section.,is painting the fence with numbers when he's done shaving his neighbor.,gold0-orig,pos,unl,unl,unl,unl,He is clipping the grass with large scissors.,The man\nanetv_GNg5kjnJlOE,19292,A close up of stilts are shown followed by a man bouncing around. Several people,are shown jumping up and down on the stilts past one another.,riding on bumper cars and bumping into one another.,are seen walking around on a building playing traditional instruments.,are shown jumping on a motorcycle while others watch on the stilts.,watch on the side as the man continues jumping down and smiling to the camera.,gold0-orig,pos,unl,unl,unl,pos,A close up of stilts are shown followed by a man bouncing around.,Several people\nanetv_GNg5kjnJlOE,19293,Several people are shown jumping up and down on the stilts past one another. They,continue bouncing around as well as with other people.,continue performing several tricks and ends with walking back on stage.,are also seen doing tricks and tricks back with the head while raising them over and catching the public.,wave to other people in the pool as well as members performing a tango routine.,are then seen speaking to one another while speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,Several people are shown jumping up and down on the stilts past one another.,They\nlsmdc1057_Seven_pounds-98053,11344,She nods and smiles at him. Someone,scratches his eyebrow shyly.,\"stands, her hands on someone's face.\",leans in front of her as she runs off.,lowers his lip briefly and stares down at someone.,gives her a potion.,gold1-orig,pos,unl,unl,unl,unl,She nods and smiles at him.,Someone\nlsmdc1057_Seven_pounds-98053,11346,They are still at the table. Someone,frowns as she listens to someone humming.,has a paddle in his hand on his shoulder.,holds out a hand to protect herself.,crosses to the bed and folds her arms.,,gold0-orig,pos,unl,unl,unl,n/a,They are still at the table.,Someone\nlsmdc1057_Seven_pounds-98053,11345,Someone scratches his eyebrow shyly. Someone,stretches out her upturned palm and gestures for someone to sit at the table.,opens an office bottle.,follows his gaze towards the house.,presses his hand to someone's parted lips.,glances up as he leaves with a preppy editor.,gold1-orig,pos,unl,pos,pos,pos,Someone scratches his eyebrow shyly.,Someone\nlsmdc1057_Seven_pounds-98053,11335,\"Someone, wearing his customary gray suit and shirt and tie, enters someone's bedroom carrying the gift. One of the walls\",\"is covered in photos, some of someone at different ages.\",\"climbs out, followed by a long row of cluttered houses and dark veiled gray lawns and dark corners.\",is made taped open on a dark brick wall.,is very tiny and the middle - action thief shoos someone from the room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, wearing his customary gray suit and shirt and tie, enters someone's bedroom carrying the gift.\",One of the walls\nlsmdc1057_Seven_pounds-98053,11339,Someone puts the box down and catches sight of himself in a full - length mirror. Someone,comes out of the bedroom wearing polo shirt and jeans.,\"drops the light, which glows from the crystal light on his fingertips.\",drops the box onto his hand and starts to leave.,hikes up in his jacket and grabs the bar outside a window.,walks over to someone and pulls the curtain aside.,gold1-orig,pos,unl,unl,unl,pos,Someone puts the box down and catches sight of himself in a full - length mirror.,Someone\nlsmdc1057_Seven_pounds-98053,11337,\"He watches as someone carries the casserole she took out of the oven to a candlelit table. On another table, the flame of a tea light\",glows in the darkness.,flashing four months earlier.,turns up in color.,is licking a flame.,is turned to the side.,gold0-orig,pos,unl,unl,unl,unl,He watches as someone carries the casserole she took out of the oven to a candlelit table.,\"On another table, the flame of a tea light\"\nlsmdc1057_Seven_pounds-98053,11340,Someone comes out of the bedroom wearing polo shirt and jeans. He,stands at the opened french windows.,rolls onto his back.,notices a tag hang from his suitcase.,puts two plates on the counter.,,gold0-orig,pos,unl,unl,unl,n/a,Someone comes out of the bedroom wearing polo shirt and jeans.,He\nlsmdc1057_Seven_pounds-98053,11336,\"Someone moves slowly over to the window, which has a fine net curtain over it. He\",watches as someone carries the casserole she took out of the oven to a candlelit table.,\"sits with her hands on her knees, then hurries out.\",leads the way through the vault of the motorcycle and up the flooded staircase.,walks through the living room holding an empty red jewelry awning.,\"stands by the flowers, watching him anxiously.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone moves slowly over to the window, which has a fine net curtain over it.\",He\nlsmdc1057_Seven_pounds-98053,11341,He stands at the opened French windows. Someone,is sitting at the table.,goes inside and closes the door behind her.,lugs his life jacket.,is now about ten.,stops at the door.,gold0-orig,pos,unl,unl,unl,pos,He stands at the opened French windows.,Someone\nlsmdc1057_Seven_pounds-98053,11342,Someone is sitting at the table. Someone,looks down at his outfit.,\"smiles, and blinks peach tears.\",plants a joint over her cheek.,is on a white.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone is sitting at the table.,Someone\nanetv_f0lxilPpXeM,10108,A man and woman are sitting behind a desk talking. A doctor,is performing surgery in a room.,starts painting on a blade on the wall.,is holding another piece of pancake to the head.,holds a martini paper and a paper.,is taking a chair and putting it on a couch.,gold1-orig,unl,unl,unl,unl,unl,A man and woman are sitting behind a desk talking.,A doctor\nanetv_f0lxilPpXeM,10110,A woman in a red shirt is standing at a counter talking. A woman,wipes her mouth with a napkin.,walks into frame and begins painting and the front of a hedge.,picks her shirt up and begins holding a shovel snow and putting it in her hand.,is standing on a green hot bed with her hands up.,is doing something on a table.,gold0-orig,pos,unl,unl,unl,pos,A woman in a red shirt is standing at a counter talking.,A woman\nanetv_Ygt3z-K-ZMQ,17591,Women mix a variety of alcoholic drinks for consumption. Steps,are shown for a beautiful whiskey sour.,get some sugar d'oeuvres for money.,\"in the square, the woman enters from the highway.\",dishes make the charges very narrow in the street with the food items.,,gold0-orig,pos,unl,unl,unl,n/a,Women mix a variety of alcoholic drinks for consumption.,Steps\nanetv_sCzauf2u4dc,12238,We see one lady in a sunny field with a hose. We,see a small dog on the back of the horse.,to two men in red.,see a brunette entrance behind a human and the woman split to the right girl.,\", people, and other children ride past areas on a bench as a party watches by the barn.\",see a lady shooting fans.,gold1-orig,unl,unl,unl,unl,unl,We see one lady in a sunny field with a hose.,We\nanetv_sCzauf2u4dc,12240,\"We see the small dog, then two ladies and the small dog. The lady\",is sitting playing with the dog.,parts the cigarette with one paw.,strokes the dog with a cord and lets spin.,places the hand on the cat.,,gold0-orig,pos,unl,unl,unl,n/a,\"We see the small dog, then two ladies and the small dog.\",The lady\nanetv_sCzauf2u4dc,12236,We see the emblem on the opening screen. We,switch to images of two ladies with horses.,see a title screen and deposit information on an counter perfect.,see the cats hand in red zips.,see a man jump on an back beam.,see the man giving a warm up to the camera.,gold0-reannot,pos,unl,unl,pos,pos,We see the emblem on the opening screen.,We\nanetv_sCzauf2u4dc,12239,We see a small dog on the back of the horse. We,\"see the small dog, then two ladies and the small dog.\",go behind a tree.,see a green ending title screen.,then see the person speak to the camera.,see the black screen and a second man on the right.,gold0-reannot,pos,unl,pos,pos,pos,We see a small dog on the back of the horse.,We\nanetv_sCzauf2u4dc,12237,We switch to images of two ladies with horses. We,see one lady in a sunny field with a hose.,see the right lady jumping off the concrete.,see a lady taking a paint brush from an image of a raft.,then see a man doing dishes using a large knife.,,gold0-reannot,pos,unl,unl,unl,n/a,We switch to images of two ladies with horses.,We\nanetv_nHkVfEKklJA,15803,A young boy jokes around sitting at a drum set. A boy,plays a drum set at home.,talks while by using the rake.,plays a set of drums while hammering a drum with hands in the background.,takes out playing a flute with his friends.,,gold1-orig,pos,unl,unl,unl,n/a,A young boy jokes around sitting at a drum set.,A boy\nanetv_nHkVfEKklJA,15804,A boy plays a drum set at home. The parents,watch the boy play the drums.,leave the room within scale 15.,kick on drums while play.,put the elephant on a trunk and leans on the christmas tree.,listen with his back to the camera.,gold0-orig,pos,unl,unl,unl,pos,A boy plays a drum set at home.,The parents\nlsmdc3059_SALT-28828,2017,She remembers riding in the back of an suv in Korea with someone's concerned gaze fixed on her. She,\"faces him, revealing her bruised swollen eye.\",\"looks at him, the woman before him.\",\"is listening, but someone catches her breath and hangs up the phone in front of her.\",slams her left hand on its right and lunges at the action.,,gold0-orig,pos,unl,unl,unl,n/a,She remembers riding in the back of an suv in Korea with someone's concerned gaze fixed on her.,She\nanetv_NH2TVi42xDE,11512,The words do You Have a Dog that Can't Be Groomed? appear in a comic font on screen. A woman is holding a little yorkie on a couch and it,becomes very upset when it sees a grooming brush.,'s mouthwash to take something out of the adjacent room.,is lit on lawn.,manuscripts waiting for them to be left.,is then mopping a different floor.,gold0-orig,pos,unl,unl,unl,unl,The words do You Have a Dog that Can't Be Groomed? appear in a comic font on screen.,A woman is holding a little yorkie on a couch and it\nanetv_NH2TVi42xDE,3969,The person then begins brushing the dog while the dog fights back. The person,continues grooming the dog and ends by cuddling him.,jumps around on the side and glides away from the fence.,continues brushing and then brushing the horses hooves as he goes on completing the ride.,continues to brush the horse while she brushes the horse's fur.,ties the brush to the new shoe and back to the horse.,gold0-orig,pos,unl,unl,unl,unl,The person then begins brushing the dog while the dog fights back.,The person\nanetv_NH2TVi42xDE,3968,A person is seen sitting on a coach holding a brush as well as dog in their hands. The person then,begins brushing the dog while the dog fights back.,begins grooming the dogs in a wrap while the girl continues riding around.,pulls the hair down and begins glancing to the camera.,pushes a camel around and leads into several clips of the dogs flying around.,continues grooming and ends by brushing off the horse.,gold1-reannot,pos,unl,unl,unl,unl,A person is seen sitting on a coach holding a brush as well as dog in their hands.,The person then\nanetv_NH2TVi42xDE,11513,The woman uses positive reinforcement over several days and is able to brush the dog with little fuss. The woman,cuddles and kisses the dog and credits roll.,gives a little smile as she steps off.,begins talking to the camera while several dogs hang from a tree trimmer.,smells with the disclaimer and continues to spray the dog.,lays down again to look behind the camera when the judge walks her.,gold0-reannot,pos,unl,unl,unl,unl,The woman uses positive reinforcement over several days and is able to brush the dog with little fuss.,The woman\nlsmdc0006_Clerks-48947,18017,\"He grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle. Someone\",grabs italian bread and smacks it into someone's face as he rushes him blindly.,\"hurtles out the polished wood, tilting back.\",smiles as he gazes up at the open shelf beside him.,\"stops, then sees someone standing on the sidewalk, entering.\",walks up the night to the dining room.,gold0-orig,pos,unl,unl,unl,unl,\"He grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle.\",Someone\nlsmdc0006_Clerks-48947,18015,Someone jumps to his feet as someone comes at him again. Someone,tumbles into the cakes as someone's products scatter beneath and around him.,\"steals a calf, then swings and is nearly just in the doorway.\",is lifted over his head.,leaps from his back to the large metal door and steps down beside it.,pulls out of someone's sight.,gold1-orig,pos,unl,unl,pos,pos,Someone jumps to his feet as someone comes at him again.,Someone\nlsmdc0006_Clerks-48947,18016,Someone tumbles into the cakes as someone's products scatter beneath and around him. He,\"grabs a pound cake and hits someone in the head with it, using the opportunity to scurry down the middle aisle.\",wraps the designer scarf around another lens.,tables bears him deep vulture.,pulls someone's cap off showing crushed tile on the floor.,\"bends closer to someone's neck, his helmet light shines in through the marbled ceiling of someone's clapboard.\",gold1-orig,pos,unl,unl,unl,unl,Someone tumbles into the cakes as someone's products scatter beneath and around him.,He\nlsmdc0006_Clerks-48947,18014,\"Someone throws his fists into someone's midriff, throwing him back into the magazine rack. Someone\",jumps to his feet as someone comes at him again.,\"ignores him, starts up the stairs.\",watches someone on his shoulder.,takes off a folded piece of paper.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone throws his fists into someone's midriff, throwing him back into the magazine rack.\",Someone\nlsmdc0006_Clerks-48947,18018,\"Someone leaps at his feet, and someone grabs the shelves, knocking aspirin over until SOMEONE - shrieking - sprays something in someone's face. Someone\",chases him out of the frame.,coral in the side compartment 'which fill the darkness of the night.,knocks from the door in the bolt and misses.,looks down at someone lying out of bed.,looks around cautiously then heads for the slide.,gold0-orig,pos,unl,unl,unl,unl,\"Someone leaps at his feet, and someone grabs the shelves, knocking aspirin over until SOMEONE - shrieking - sprays something in someone's face.\",Someone\nlsmdc0006_Clerks-48947,18012,Someone lies on the floor alone. Someone,\"throttles someone, choking him to the ground.\",slides from the room.,helps someone's arm.,drags someone out from under it.,turns to the others.,gold0-reannot,pos,unl,unl,unl,pos,Someone lies on the floor alone.,Someone\nlsmdc0006_Clerks-48947,18013,\"Someone throttles someone, choking him to the ground. Someone\",\"throws his fists into someone's midriff, throwing him back into the magazine rack.\",holds his pursuers out and slams him on the beam.,lands in his fighter's arms.,hits the women in the head and whacks him with a black cape.,grabs the guard by the throat and starts spinning him toward the bedroom.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone throttles someone, choking him to the ground.\",Someone\nanetv_t5Br7yOUe4g,15307,There's a gymnast wearing red leotards performing gymnastics on a horse bar in a large stadium with spectators and a panel of judges. She,begins by getting onto the horse bar and does a front flips and a couple back flips.,performs forward roping a jump in a professional stadium as she dismounts by jumping off.,jumps up and down on a beam.,\"get thrown, and the person does a ballet forward routine.\",mounts a bar and performs a high jump and vaults fives to a small crowd.,gold0-orig,pos,unl,unl,unl,pos,There's a gymnast wearing red leotards performing gymnastics on a horse bar in a large stadium with spectators and a panel of judges.,She\nanetv_t5Br7yOUe4g,15309,Then she continues twisting her legs and does another side flips by twisting her body. She then,gracefully does few more continuous back flips and jumps off the bar and walks away.,wins and jumps down under a large bin and stands over to the right and walks across the finish line.,begins to shave her legs while still looking not.,\"does to tie the harness, and s three zoom in.\",jumps up on the bar where she does and jumps back on her shoulders.,gold0-orig,pos,unl,unl,unl,unl,Then she continues twisting her legs and does another side flips by twisting her body.,She then\nanetv_t5Br7yOUe4g,15308,She begins by getting onto the horse bar and does a front flips and a couple back flips. Then she,continues twisting her legs and does another side flips by twisting her body.,\"performs on the bag and performs several stunts and stunts, going around and twirling.\",\"lassos, ties a lasso, and ties something off of her sides.\",shakes it up and spits it into the air.,,gold0-orig,pos,unl,unl,pos,n/a,She begins by getting onto the horse bar and does a front flips and a couple back flips.,Then she\nanetv_qL7kMgxpFJY,8593,The person flattens the plaster and begins rubbing it on the wall. He,continues putting plaster on the wall while looking back to the camera.,uses the tool to do wax over the ski to repair the ski process between skis.,takes a circular wooden bucket that is placed on the metal floor.,shows off the piece of chalks and moving its wings at the end he begins speaking quickly.,continues wiping it down and ends with a more plaster.,gold0-orig,pos,unl,unl,unl,pos,The person flattens the plaster and begins rubbing it on the wall.,He\nanetv_qL7kMgxpFJY,8592,A person is seen kneeling over a bucket and laying plaster on a board. The person,flattens the plaster and begins rubbing it on the wall.,kicks a tool one by one while another casts the discs on the ground.,moves the vacuum off back and fourth to the wall.,makes several attempts as well as padding to the wall.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen kneeling over a bucket and laying plaster on a board.,The person\nanetv_qL7kMgxpFJY,6201,A man pours concrete onto a plate. He,is wearing a blue uniform.,grabs the bowl and rubs it on the sandwich.,proceeds to clean the sink.,runs holding a large axe.,shows the rollers blinking.,gold1-orig,pos,unl,unl,unl,unl,A man pours concrete onto a plate.,He\nanetv_qL7kMgxpFJY,6203,He then spreads it onto a wall. He,spreads it around evenly.,places the powder down one of the furnished paper onto a large wooden table.,uses a tool to release the rod.,smooths the sews with a brush.,lays down on the floor.,gold0-orig,pos,unl,unl,unl,unl,He then spreads it onto a wall.,He\nanetv_gV6W0rAHyZg,1810,He is holding a lacrosse stick in his hands as he explains the techniques of the game. He,makes hand gestures to demonstrate the correct method of holding the lacrosse stick for effective playing technique.,plays it for fun as they cross to the trees.,goes up and over multiple times in several techniques.,continues the process while finally talking back to the camera.,talk and teams gather around in a circle as the game continues.,gold0-orig,pos,unl,unl,pos,pos,He is holding a lacrosse stick in his hands as he explains the techniques of the game.,He\nanetv_gV6W0rAHyZg,1809,There's a man in a white shirt standing in an open field doing a tutorial for Expert Village on how to play lacrosse. He,is holding a lacrosse stick in his hands as he explains the techniques of the game.,takes turns to shot at the camera.,stands up and walk back to pet players.,explains his technique of holding the hammer and starts driving back the game of croquet throughout the field.,,gold0-reannot,pos,unl,unl,pos,n/a,There's a man in a white shirt standing in an open field doing a tutorial for Expert Village on how to play lacrosse.,He\nlsmdc0009_Forrest_Gump-50566,7406,The television reveals someone as he is awarded the Medal of Honor by someone. Someone,leans and whispers into someone's ear.,\"leans back with a smile and his gun, watching the set of false lips getting louder.\",takes a seat in front of a colored elephant.,gently averts his eye as a warm smile spreads across his face.,,gold1-orig,pos,unl,unl,pos,n/a,The television reveals someone as he is awarded the Medal of Honor by someone.,Someone\nlsmdc0009_Forrest_Gump-50566,7410,The three men in the barber shop look up in disbelief. Someone,looks up in shock.,\"hikes down the hall, smiling off his two friends before he goes.\",\", except with his hands on his fist, struggling to acknowledges a movement.\",\"embeds himself in someone's body, lunges backward, and collapses to the ground.\",\"are down, and ok - witnesses already staring closely at someone.\",gold0-orig,pos,unl,unl,unl,unl,The three men in the barber shop look up in disbelief.,Someone\nlsmdc0009_Forrest_Gump-50566,7408,\"The television revealing someone as he drops his pants, bends over and shows the bullet wound on his bare buttocks. Someone\",looks down and smiles.,\"freezes as the thug pounds someone's left knee, smashing his face.\",bends down and grabs the boy's tattoo.,returns to the news roll.,takes a few breaths further away.,gold0-orig,pos,unl,unl,unl,pos,\"The television revealing someone as he drops his pants, bends over and shows the bullet wound on his bare buttocks.\",Someone\nlsmdc0009_Forrest_Gump-50566,7409,Someone looks down and smiles. The three men in the barber shop,look up in disbelief.,begin polishing the floor with the foot waterfall.,fill several rows of taxis.,\"watch stunned, wide - faced with mr.\",,gold0-reannot,pos,unl,unl,pos,n/a,Someone looks down and smiles.,The three men in the barber shop\nanetv_r-xtiGmrKxA,12478,A man is standing in the gym alone and begins talking to the camera. He then,puts his fist up and begins shadow boxing as he moves around the room.,talks with a man who is showing the harmonica going effortlessly.,begins inside the bar explaining.,kneels down and picks up the weights and holds it up.,,gold0-orig,pos,unl,pos,pos,n/a,A man is standing in the gym alone and begins talking to the camera.,He then\nanetv_r-xtiGmrKxA,12480,\"Next, he adds his feet and starts to kick the air and does twist as if someone is there hitting him. Finally, he\",comes back to the screen slightly out of breath to end the video.,\"knocks loose, goes back onto the mat and drops the tile in and out again.\",turns on his living room and goes back to pretend he is playing and stops by an object.,drives up to the end and rapidly turns high in the air without raising his head.,turns his attention to the right of his hand entranceway to shot at that point.,gold0-orig,pos,unl,unl,unl,unl,\"Next, he adds his feet and starts to kick the air and does twist as if someone is there hitting him.\",\"Finally, he\"\nanetv_r-xtiGmrKxA,12479,\"He then puts his fist up and begins shadow boxing as he moves around the room. Next, he\",adds his feet and starts to kick the air and does twist as if someone is there hitting him.,begins playing the saxophone with several people who are holding hands and hitting it back and forth as he approached them.,continues to change different settings for all the drums.,dismounts and lands on the ground in front of his mother.,,gold1-orig,pos,unl,unl,unl,n/a,He then puts his fist up and begins shadow boxing as he moves around the room.,\"Next, he\"\nanetv_nibek2g971I,12845,\"A man is walking a very low, red tightrope. Another man\",joins him on the rope as they walk back and forth on it.,is resting on a man's shoes.,is very still playing at the end of a course.,is wresting his feet quickly in the finish line.,is casually sleeping on the ground while the other name is on the wall.,gold0-orig,pos,unl,unl,unl,unl,\"A man is walking a very low, red tightrope.\",Another man\nanetv_nibek2g971I,2004,He is then shown balancing on a rope in front of a crowd. He,walks across the rope.,walks in and practices his routine.,is shown wearing a smaller indian suit and white uniform.,gets up and walks away from a camera.,stops a road and continues to jump down at the end.,gold0-orig,pos,unl,unl,unl,unl,He is then shown balancing on a rope in front of a crowd.,He\nanetv_nibek2g971I,2002,A picture of a man with a hat is shown. The same man,is shown without a hat.,is followed by several clips of people playing around in the field.,\"talks to the cameraman, paper and uses a hammer to make a wall.\",is wake boarding above the beach.,is then shown playing a game of polo.,gold0-orig,pos,unl,unl,unl,unl,A picture of a man with a hat is shown.,The same man\nanetv_nibek2g971I,12844,A photo of clowns and foreign language is shown. A man,\"is walking a very low, red tightrope.\",is lifting off a bike back and forth and using it.,is doing a tutorial on how to assemble pole stances.,is seen through the front in his tire with a spear.,joins with a baseball in his hands.,gold1-orig,pos,unl,unl,unl,pos,A photo of clowns and foreign language is shown.,A man\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1543,They sip their drinks and stare straight ahead. Someone,looks at someone and sighs.,\"lies fully clothed on a bed, then turns his head back to look asleep.\",are torn from the bones on the ice.,lands in a horizontal line.,turns back to someone as he enters.,gold0-orig,pos,unl,unl,unl,pos,They sip their drinks and stare straight ahead.,Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1551,Someone smiles at the driver. The car,\"pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer.\",crosses to a vendor.,knocks on the door.,slides out of the parking lot.,,gold0-orig,pos,unl,unl,pos,n/a,Someone smiles at the driver.,The car\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1553,His long cape hangs in a puddle on the pavement. He,looks up at an electronic billboard from which someone stares at him.,\"steps into the room, clutching his eyes with his hand.\",plods down a corridor with his head bowed.,races toward his cottage.,,gold1-orig,pos,unl,unl,unl,n/a,His long cape hangs in a puddle on the pavement.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1552,\"The car pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer. His long cape\",hangs in a puddle on the pavement.,\"has his arms crooked at his sides, and then wonders what he is doing.\",\"is completely dead by the tree roots, and the figure is about to reach the grass.\",\"is tied up against the barred white half of a window, his trousers rushed to a pile.\",crawls in front of someone's lapels as someone's blood flow through it.,gold0-orig,pos,unl,unl,unl,unl,\"The car pulls away, leaving a dispirited someone at the roadside, his hands clasped together, as if in prayer.\",His long cape\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1548,People sit in the back. Someone,winds the window down.,gets on a stool and walks off.,guides someone from the box.,turns toward the pool.,\"looks over his shoulder, then deflates.\",gold1-reannot,pos,unl,unl,pos,pos,People sit in the back.,Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1547,Someone has her back to him. People,sit in the back.,receive a slip of paper.,helps samantha up someone.,walk over to underling road.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone has her back to him.,People\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1546,\"He raises his glass, then turns away, popping the fangs back in his mouth as he makes his way through the crowd. Someone\",has her back to him.,\"offscreen, wearing black suit shorts strides down the aisle, someone darts through a musical - link bar by someone.\",leaps from the railing.,follows him toward the water.,stands and shakes his hand.,gold0-reannot,pos,unl,unl,unl,pos,\"He raises his glass, then turns away, popping the fangs back in his mouth as he makes his way through the crowd.\",Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73392,1549,\"Someone steps back from the car window and knits his hands together by his chin. Drenched by the rain, he\",stares at them with window glides up.,sits with his body on his platform.,opens another worried door.,stumbles back towards the parking window.,spots the head man approaching the factory.,gold0-reannot,pos,unl,unl,unl,unl,Someone steps back from the car window and knits his hands together by his chin.,\"Drenched by the rain, he\"\nlsmdc3011_BLIND_DATING-824,14950,Someone takes another bite of his sandwich and chews it thoughtfully. Someone,\"freezes mid chew, then swallows hard.\",lowers his cell phone.,pulls out a sandwich then lifts the truffles over his head.,spread out the cheeks.,,gold0-orig,pos,unl,unl,unl,n/a,Someone takes another bite of his sandwich and chews it thoughtfully.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13829,Someone enters through the living room archway with someone behind her. She,leads him towards the door.,climbs down and comes to the door of a stall.,passes altogether through the lawn.,sees people and trots over to the desk.,,gold0-orig,pos,unl,unl,pos,n/a,Someone enters through the living room archway with someone behind her.,She\nlsmdc0010_Frau_Ohne_Gewissen-51175,13834,Someone opens the door a crack. Both,\"look at the stairs, where someone is going up.\",leaps fast and up for support.,start to drop their arms on each other.,are bursting in the room.,sit on the floor.,gold0-orig,pos,unl,pos,pos,pos,Someone opens the door a crack.,Both\nlsmdc0010_Frau_Ohne_Gewissen-51175,13833,People move close to the door. Someone,opens the door a crack.,\"stands nearby, pointing at a neighbor's boy.\",hands her her wand.,is transfixed by the mysterious troll.,turns and steps out of his window.,gold0-orig,pos,unl,unl,unl,unl,People move close to the door.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13832,\"In the background someone begins to ascend the stairs, carrying his coat and glass. People\",move close to the door.,are exchanging torches as they draw guns.,\"takes a few steps, whose mist smeared with dust.\",notices someone watching him and carries the money case to the altar.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the background someone begins to ascend the stairs, carrying his coat and glass.\",People\nlsmdc0010_Frau_Ohne_Gewissen-51175,13831,On the way he picks up his hat. In the background someone,\"begins to ascend the stairs, carrying his coat and glass.\",pushes a flying suitcase out in the office.,glances into the room at the other.,plays with her hair.,,gold1-orig,pos,unl,pos,pos,n/a,On the way he picks up his hat.,In the background someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13830,She leads him towards the door. On the way he,picks up his hat.,unfastens the cotton bag that he used to tie the zipper.,walks downstairs into the hallway.,can crush the room.,\"finds a sharp tooth, a knife.\",gold0-orig,pos,unl,unl,unl,unl,She leads him towards the door.,On the way he\nlsmdc0010_Frau_Ohne_Gewissen-51175,13825,He gathers up his coat and tie and picks up his glass. Someone,is zipping up his briefcase.,gives an opportunity to approach someone.,walks into the curling room.,is in some way going through the mall watching.,,gold1-orig,pos,unl,unl,unl,n/a,He gathers up his coat and tie and picks up his glass.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13821,He withdraws the top copy barely enough to expose the signature line on the supposed duplicate. Again people,exchange a quick glance.,are walking in the cafeteria.,watch the rest of the animal.,look at each other.,,gold1-orig,pos,unl,unl,pos,n/a,He withdraws the top copy barely enough to expose the signature line on the supposed duplicate.,Again people\nlsmdc0010_Frau_Ohne_Gewissen-51175,13835,\"Both look at the stairs, where someone is going up. Someone\",takes her hand off the doorknob and holds on to someone's arm.,is running very fast and pinned to the ground.,\"'s someone stands at the doorway, forcing a teenage friend to force her way to her elbows to prod at her own body.\",\"slowly scramble up to his feet but flings onto the tile, leaving a garbage bag on, under the area yelling.\",\"is shown loading dolly, mud, and cleaning salt into hoses.\",gold1-orig,pos,unl,unl,unl,unl,\"Both look at the stairs, where someone is going up.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13827,Someone trundles off towards the archway. Someone leads the way and someone,\"goes after her, his briefcase under his arm.\",shoves the sheriff into the widely furnished room.,\"sees someone, holding a corner nervously.\",begins to crash through the walls.,,gold0-orig,pos,unl,unl,pos,n/a,Someone trundles off towards the archway.,Someone leads the way and someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13819,Someone has unscrewed his fountain pen. He,hands it to someone.,steps in and the two nearby wistfully look around.,looks tense and waggles.,notices people struggling to keep up.,addresses someone's listed.,gold0-orig,pos,unl,unl,unl,unl,Someone has unscrewed his fountain pen.,He\nlsmdc0010_Frau_Ohne_Gewissen-51175,13823,Casually someone lifts the briefcase and signed applications off someone's lap. Someone,has poured some more whisky into his glass.,wears a red roller.,\"looks from left to right, she sits back down, picks up the singed script and adjusts one.\",races up the stairs up to the father.,male gets in line smoking concealed by the fire and the man addresses someone.,gold0-reannot,pos,unl,unl,unl,unl,Casually someone lifts the briefcase and signed applications off someone's lap.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13828,\"Someone leads the way and someone goes after her, his briefcase under his arm. Someone\",enters through the living room archway with someone behind her.,marches back to someone.,steps toward the table and stands.,is nowhere to be seen.,,gold1-reannot,pos,pos,pos,pos,n/a,\"Someone leads the way and someone goes after her, his briefcase under his arm.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13826,Someone is zipping up his briefcase. Someone,trundles off towards the archway.,\"pin him, is politely at the door.\",gives his son his own smile.,watches angrily as someone races toward the car.,stumbles up a staircase into a short corridor.,gold0-reannot,pos,unl,unl,pos,pos,Someone is zipping up his briefcase.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51175,13824,He tries the siphon but it is empty. He,gathers up his coat and tie and picks up his glass.,grabs the meat and fumbles.,\"drops into the abyss, making his way through the crowd.\",\"attempts to hit the ball, teasing the thug for a moment.\",\"digs a duck from the shorts, puts his coat down and ties it.\",gold0-reannot,pos,unl,unl,unl,unl,He tries the siphon but it is empty.,He\nlsmdc3081_THOR-37871,14159,\"On Earth, someone and someone drive through the desert at night. They\",approach the impact crater now lit by floodlights and swarming with shield agents.,fuss on someone and answer side to side.,stares down at a tree on the sunny beach.,\"play, grin, table beside bed.\",can not walk side by side into the forest.,gold1-orig,pos,unl,unl,unl,unl,\"On Earth, someone and someone drive through the desert at night.\",They\nanetv_GyOLWizKXaE,6429,A man is outside with a lawn utensil and he begins cutting the yard. He moves a knob and then continues to cut the grass and another woman,is shown cutting the yard.,is then seen walking in front of him.,walking inside and cuts the grass to pieces.,runs and walks very much when it's done.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is outside with a lawn utensil and he begins cutting the yard.,He moves a knob and then continues to cut the grass and another woman\nanetv_ZMG8WE3Y22k,11267,Men then arrive in a field and take the rafts out before more pictures are shown. The men then,stand in the field with their paddles and actually get in the raft demonstrating the proper way to row.,continue skiing down the river while folding the instruments and instruments or taking an underwater shot of jump.,begin to play paintball with various men walking to the river by a camera in the end.,walk to the goalie holding the cow and is tied into the boat like butter.,race down an aisle by a pool.,gold0-orig,pos,unl,unl,unl,unl,Men then arrive in a field and take the rafts out before more pictures are shown.,The men then\nanetv_ZMG8WE3Y22k,11266,Several pictures of different individual are shown white water rafting as an intro for a video. Men then,arrive in a field and take the rafts out before more pictures are shown.,perform a routine in a large pool field make an flips and bang goals while walking them into the swimming pool.,begin milling around on landing on stilts place while running.,do the hills in front of a house.,fight different types of speed and precision on performing a different thrust.,gold0-orig,pos,unl,unl,unl,pos,Several pictures of different individual are shown white water rafting as an intro for a video.,Men then\nanetv_ZMG8WE3Y22k,11268,\"The men then stand in the field with their paddles and actually get in the raft demonstrating the proper way to row. Finally, they are in the water and all of them\",begin to paddle throughout the water.,stop surfing and look at each other.,fall to the ground and continue kayaking.,are seen walking on the water as others sails.,,gold0-orig,pos,unl,unl,unl,n/a,The men then stand in the field with their paddles and actually get in the raft demonstrating the proper way to row.,\"Finally, they are in the water and all of them\"\nanetv_ZMG8WE3Y22k,11269,\"Finally, they are in the water and all of them begin to paddle throughout the water. More people join them and they eventually\",get out of the water and walk back to land.,get some water off the boat as they fish to pan behind them.,begin rafting under the water.,get preparing for a swim to dive in slow motion.,,gold1-reannot,pos,unl,unl,pos,n/a,\"Finally, they are in the water and all of them begin to paddle throughout the water.\",More people join them and they eventually\nlsmdc3057_ROBIN_HOOD-27678,6215,\"Someone grabs someone's sword. Later, someone\",rides the king's white steed.,\"brushes his hair to the side, stopping to see his long hair.\",storms into his office.,climbs to the sub.,runs down the pier and collides with someone who also holds onto an umbrella.,gold1-orig,pos,unl,unl,unl,unl,Someone grabs someone's sword.,\"Later, someone\"\nanetv_lSbbzsOjwno,743,A young girl is seen scrubbing a small dog down with soap next to a tub full of water. She,pours more soap onto the dog and drags him over and leads into pictures of the dog all cleaned.,sprays cream on her face with a brush while cleaning her water and using a towel to clean out her bare hands.,\"are pausing some ballet moves, then gets to the side of the faucet and rubs soap on her legs.\",continues cleaning the potato as well as holding up the brush.,takes another tool and begins brushing it with an electric toothbrush.,gold1-orig,pos,unl,unl,unl,unl,A young girl is seen scrubbing a small dog down with soap next to a tub full of water.,She\nanetv_Cy56IkwsQVs,17872,\"A young man stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling. A small white balls\",is thrown across the table as the people attempt to throw the balls in the blue cups from across the table.,are shown side by side and the woman finishes and talks to the camera.,are in the middle of a young man demonstrating the class and his friend.,are shown behind a bar while more other women look bored.,,gold0-orig,pos,unl,unl,pos,n/a,\"A young man stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling.\",A small white balls\nanetv_Cy56IkwsQVs,17871,\"Several young people, talk and laugh while standing around a table covered in beer cans and blue plastic cups. A young man\",\"stands around a table in a room talking to two two women and some more men, occasionally laughing and smiling.\",speaks to the camera while the people begin sweeping in the ice.,\"lifts a bowling ball, while the crowd cheers for them.\",\"in red cap is talking to the other, ready to talk to the camera about how to make another drink.\",is shown standing at a table with a cup of food and a glass as he plays.,gold1-orig,pos,unl,pos,pos,pos,\"Several young people, talk and laugh while standing around a table covered in beer cans and blue plastic cups.\",A young man\nanetv_Cy56IkwsQVs,17873,A small white balls is thrown across the table as the people attempt to throw the balls in the blue cups from across the table. In the final moments of the clip a ball flies across the table and the men,react in a triumphant way throwing their arms in the air in celebration.,waving and different techniques begin.,side to hit.,begin to pong from other shot.,,gold0-orig,pos,unl,unl,pos,n/a,A small white balls is thrown across the table as the people attempt to throw the balls in the blue cups from across the table.,In the final moments of the clip a ball flies across the table and the men\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17941,She grabs a dummy remote from a coffee table and pretends to watch tv. Someone,jumps up from the sofa they've been sitting on and walks off.,\"frowns, funny, and gets a bottle up next to his vest.\",removes her sunglasses as she makes its way through a main door.,\"passes, stops, turns around and mounts the stairs.\",,gold1-orig,pos,unl,unl,unl,n/a,She grabs a dummy remote from a coffee table and pretends to watch tv.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17949,A whole Chinese family is indeed staring at them from the on - suite bathroom display. They,face each other on the bed.,hold someone locked as they kiss.,attempts to open a large propeller as it flicks its tongue further.,\"bartender tiptoes onto the bed and someone leans in the chair, holding a phone to his ear.\",\"are in front, with a bent curtain covering the door with the un - scraping painting behind one unloading man.\",gold0-orig,pos,unl,unl,unl,unl,A whole Chinese family is indeed staring at them from the on - suite bathroom display.,They\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17946,Someone dives onto a double bed. Someone,crawls on after her.,presses our hand to his cluttered chest.,sees a rumpled man.,hooks his open mic onto the bars.,sees a third inside.,gold0-orig,pos,unl,unl,unl,unl,Someone dives onto a double bed.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17947,Someone crawls on after her. They,\"look around, slowly.\",grabs something above the railing and slips in.,escape into the side of the hut and look around.,peer down into the trapped shaft.,\"hide, guns strewn beneath the bed.\",gold0-orig,pos,unl,pos,pos,pos,Someone crawls on after her.,They\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17945,Someone chases her through the huge furniture store. Someone,dives onto a double bed.,continues on and posing for a manicure on a table.,sharply sweeps through with cigar books.,shuts a satchel in the unit.,is consumed by smoke.,gold0-orig,pos,unl,unl,unl,unl,Someone chases her through the huge furniture store.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17943,\"He clowns, sitting at a table. He\",walks through to another display.,wipes the end with her own knife.,carries a piece of biscuits in the basement.,turns to the half - poster.,,gold1-reannot,pos,unl,unl,unl,n/a,\"He clowns, sitting at a table.\",He\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17938,Someone nods awkwardly and has no idea what to say. Someone,\"dismisses him with a salute, then turns to someone.\",is brought up on the pavement.,\"extends his hand and nods, and hugs it back.\",looks tense and put away.,goes to the table.,gold0-reannot,pos,unl,unl,pos,pos,Someone nods awkwardly and has no idea what to say.,Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1430,17948,\"They look around, slowly. A whole Chinese family\",is indeed staring at them from the on - suite bathroom display.,\"is crossing the tight ropes that they can see, heads in hand and mouth.\",\"is mounted on the sidewalk, practicing their huddle.\",sits serenely at a birthday table.,,gold0-reannot,pos,unl,unl,pos,n/a,\"They look around, slowly.\",A whole Chinese family\nanetv_pv73L2pQX1s,14381,A flame exit a tube and a light sparkles form the welding machine. Two men,weld to join to big cylinders.,work out a gun and take them above their numbers.,pass on the ground from the center of the room.,begin scraps in the cables.,turn each other on two steppers.,gold0-orig,pos,unl,unl,unl,unl,A flame exit a tube and a light sparkles form the welding machine.,Two men\nanetv_pv73L2pQX1s,14380,A person is welding a small square metal object. A flame exit a tube and a light sparkles,form the welding machine.,float from throughout the tower.,light cloud rises into the air.,is shown again outside.,,gold0-orig,pos,unl,unl,unl,n/a,A person is welding a small square metal object.,A flame exit a tube and a light sparkles\nanetv_fX3tcnTdAN4,10409,The boys lacrosse team is shown working out. They,are then running drills on the gravel.,are getting bigger and bigger.,\"is home with their name, and chains on the sides.\",are practicing bull fighting in a ring.,stop playing and begins to fight.,gold0-orig,pos,unl,unl,unl,pos,The boys lacrosse team is shown working out.,They\nanetv_fX3tcnTdAN4,10410,\"Next, the team is in a scrimmage on the field. After that they\",\"were shown playing an actual game, running back and forth.\",get into each other who posed waiting.,walk down the field and jump into a field.,begin to take their turns while scores the ball.,put the puck down for the goal.,gold0-orig,pos,unl,pos,pos,pos,\"Next, the team is in a scrimmage on the field.\",After that they\nanetv_fX3tcnTdAN4,10411,\"After that they were shown playing an actual game, running back and forth. Lastly a few members\",are at a professional game.,begin smiling and showing moves to protect their faces and interviews.,are in dream of playing soccer at a curling game.,watch and music as well hula skating around doing many flips.,,gold1-reannot,unl,unl,unl,unl,n/a,\"After that they were shown playing an actual game, running back and forth.\",Lastly a few members\nlsmdc1004_Juno-6559,14336,\"In class, someone swallows some Tic Tacs as someone appears by his side clutching her folders. Another boy\",stands on the other side of the work table.,leaps out through a roof window.,tries to bite someone.,looks around and finds his wallet filled with letters.,,gold0-orig,pos,unl,unl,unl,n/a,\"In class, someone swallows some Tic Tacs as someone appears by his side clutching her folders.\",Another boy\nlsmdc1027_Les_Miserables-6334,4378,Someone looks up to the heavens. Someone,\"looks around, thoughtfully.\",walks through dark banners above the courtyard and runs up.,takes a mustached american's hand and holds it up in front of him.,moves toward her and crouches down beside someone.,takes it from someone's hand and hands it to someone.,gold0-orig,pos,unl,unl,pos,pos,Someone looks up to the heavens.,Someone\nlsmdc1027_Les_Miserables-6334,4379,\"Outside, someone steals a dead soldier's jacket, peaked cap and musket. Disguised as a soldier, he\",makes his way to the barricade where students keep watch.,strides through irregular holsters.,begins to scratch in shabby across - armed belly eyes.,struggles a pull on his boys hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside, someone steals a dead soldier's jacket, peaked cap and musket.\",\"Disguised as a soldier, he\"\nlsmdc1027_Les_Miserables-6334,4382,\"He is let in, and guns are aimed at him. Someone\",has a noose around his neck.,jumps into another cab.,scrambles through the rising water.,slams through the windows with the foot of gunfire hands someone.,\"pauses, looks at someone as he steps up and then ambles toward the foyer.\",gold1-orig,pos,unl,unl,unl,pos,\"He is let in, and guns are aimed at him.\",Someone\nlsmdc1027_Les_Miserables-6334,4380,\"Disguised as a soldier, he makes his way to the barricade where students keep watch. He\",takes off his cap.,sits at a window with no one watching him.,scans the produce chamber then glances over his shoulder and spots the magazine.,reaches into his pocket.,,gold0-orig,pos,unl,unl,pos,n/a,\"Disguised as a soldier, he makes his way to the barricade where students keep watch.\",He\nlsmdc1027_Les_Miserables-6334,4381,\"He takes off his cap. He is let in, and guns\",are aimed at him.,fall off the ground.,disappear out of the machine.,\"ready, chalks down the lorry to the ground.\",falls down with his hand.,gold0-orig,pos,unl,unl,unl,unl,He takes off his cap.,\"He is let in, and guns\"\nanetv_XKvzx2cD9KY,13162,A line of men are then shown wearing sumo wrestling outfits. Two people,get inside of the ring and begin fighting.,are shown playing ping pong at a ping pong table.,throw the blue ball back and forth.,are shown fencing with one another while people walk on.,are seen seated on stage together and walk together.,gold0-orig,pos,unl,unl,unl,pos,A line of men are then shown wearing sumo wrestling outfits.,Two people\nanetv_XKvzx2cD9KY,13163,Two people get inside of the ring and begin fighting. The two people,grab each other's necks and try to knock their opponent down to the ground.,bow argue with each other after the tug of war.,talk to the camera as the man laughs and they fight him.,tie up the dragon created by one wolf inside as it loses their own winner.,break fighting and give each other a high five.,gold0-orig,pos,unl,unl,unl,pos,Two people get inside of the ring and begin fighting.,The two people\nanetv_XKvzx2cD9KY,13161,There is a large crowd shown clapping and two hosts speaking in the beginning. A line of men,are then shown wearing sumo wrestling outfits.,engage up a high jump rope.,\"dressed in fencing uniforms are shown on a patio, engage in a wrestling match.\",play beer pong continuously.,,gold1-reannot,pos,unl,unl,unl,n/a,There is a large crowd shown clapping and two hosts speaking in the beginning.,A line of men\nanetv_P4dx0xrr6fM,2486,He spins in circles around a platform. He,\"tosses a ball a great distance, and walks away.\",turns on the pommel and throws another again in slow motion.,sits in the middle of the parking lot.,\"continuously kicks and spins, grabbing each other for good measure.\",spins and spins up and down the beam.,gold0-orig,pos,unl,unl,unl,pos,He spins in circles around a platform.,He\nanetv_P4dx0xrr6fM,2485,An athlete walks onto a field. He,spins in circles around a platform.,is being ready with some javelin defenders on the bar.,\"is surrounded by a white, yellow, green ball.\",performs his cartwheels in the air.,spins around and throws the skateboard across the field.,gold1-reannot,pos,unl,unl,unl,unl,An athlete walks onto a field.,He\nlsmdc3083_TITANIC2-38853,4623,The man smiles at a bearded crewmate. They,pass alongside upper balconies running down the side of the ship.,see the man on right sides.,face someone's face.,see a man on a table.,arrive at the shore where the waves are.,gold0-orig,pos,unl,pos,pos,pos,The man smiles at a bearded crewmate.,They\nanetv_2WyRPSKFUi8,10294,He is blowing leaves away while he is moving. He,continues in a circle as he keeps blowing the leaves.,drops the bar and walks in a pattern to the ground.,is cutting the dog all around.,dips the cat in covered turn.,is using a leaf blower to blow leaves in his yard.,gold0-orig,pos,unl,unl,unl,pos,He is blowing leaves away while he is moving.,He\nanetv_2WyRPSKFUi8,18725,A man is riding a riding lawn mower backwards. He,is blowing leaves across the yard as he goes.,stands over the mower and lands on the yard.,cameraman in a black slanting into a home actions.,pushes a lawn mower along a path.,walks up next to him when he reaches a plastic tractor.,gold0-orig,pos,unl,unl,unl,unl,A man is riding a riding lawn mower backwards.,He\nanetv_2WyRPSKFUi8,18726,He is blowing leaves across the yard as he goes. He then,\"rolls back forward, doing the same pattern back and forth until the yard is clear of debris.\",climbs in dark again and sits back a little.,\"puts on immaculately waxing goggles and run to picking himself up as he is being lay on a large, white shovel.\",jumps in and seats on the ground.,,gold0-reannot,pos,unl,unl,unl,n/a,He is blowing leaves across the yard as he goes.,He then\nanetv_2WyRPSKFUi8,10293,A man is riding a lawn mower backward down a hill. He,is blowing leaves away while he is moving.,goes through the open trailer all over the yard.,starts shaving his dad's arm.,goes to the long grass then skips in an aisle.,is using the shovel to make a fire.,gold0-reannot,pos,unl,unl,unl,unl,A man is riding a lawn mower backward down a hill.,He\nanetv_RAmQyeaBu-k,18874,Several shots are shown of signs and landscapes and leads into a person tying a rope. Several people,are seen wandering around and smiling to the camera as well as climbing up a rock.,are shown jumping up and down the long rope.,are seen moving around on the sides while others watch on the sides.,rides around in a circle while the camera pans around the area.,are seen walking on the rope while looking off into the distance and leading into several more people running over.,gold1-orig,pos,unl,unl,unl,unl,Several shots are shown of signs and landscapes and leads into a person tying a rope.,Several people\nanetv_RAmQyeaBu-k,18875,Several people are seen wandering around and smiling to the camera as well as climbing up a rock. More people,are seen climbing up the rock as well as a man climbing down.,are shown riding onto a bridge and leads into a man paddling past.,ride around the boats while the camera zooms in and then zooms in and out.,surf down moving land and snowboarding again.,are seen riding around on the water as well as hitting rocks and playing more around in water.,gold1-orig,pos,unl,unl,unl,pos,Several people are seen wandering around and smiling to the camera as well as climbing up a rock.,More people\nanetv_BnkUgUQBED0,5326,A man holding a cat sits down on the chair. The man,clips the cats fingernails.,begins talking to his phone.,wipes his face with a rag.,stops and looks him right in the eye.,,gold1-orig,pos,pos,pos,pos,n/a,A man holding a cat sits down on the chair.,The man\nanetv_BnkUgUQBED0,5325,We see a chair with a pillow on it. A man holding a cat,sits down on the chair.,is on the ground next to him.,is sitting in front of it.,stands in its paws.,is seen on the bed.,gold0-orig,pos,unl,unl,unl,pos,We see a chair with a pillow on it.,A man holding a cat\nanetv_BnkUgUQBED0,5327,The man clips the cats fingernails. The man,strokes the cat's head.,lifts his clipper and beard.,\"picks up a skeletal torch and it trims the front, with its visual grooms.\",puts part of the man's leg.,continues clipping the paws.,gold0-orig,pos,unl,unl,unl,pos,The man clips the cats fingernails.,The man\nanetv_BnkUgUQBED0,5328,The man strokes the cat's head. The man,plays with the cat rocking it back and forth.,continues to mow the lawn with a mower.,rubs his brow with it.,puts the rake on the dirt.,holds the cat with his feet.,gold0-reannot,pos,unl,unl,unl,unl,The man strokes the cat's head.,The man\nanetv_U37UAWdI-vY,9127,A group of people are seated around a dining table. A man,is playing a harmonica for the group.,is standing next to a pot standing next to them.,has a match in front of them.,is talking to a camera in a dark room.,,gold0-orig,pos,unl,unl,unl,n/a,A group of people are seated around a dining table.,A man\nanetv_U37UAWdI-vY,3301,\"As he plays, more of the young kids gather around to watch him play as he switches the two harmonicas. When he is finished, the young boys\",begin smiling and start to clap in amazement.,finishes with one regular racecars.,laugh to himself as they continue to play.,are shown singing in the water and they are playing the guitars at a computer.,go all the way to the back of others at their speed as many other members watch on the sides.,gold0-orig,pos,unl,unl,unl,unl,\"As he plays, more of the young kids gather around to watch him play as he switches the two harmonicas.\",\"When he is finished, the young boys\"\nanetv_U37UAWdI-vY,3300,\"A family is sitting at a table and the grandpa begins positioning himself as if he is clapping his hands but he is really playing the harmonica. As he plays, more of the young kids\",gather around to watch him play as he switches the two harmonicas.,sit together and start playing the drums.,walk up and walk around him while jumping all the way to the man.,join him and start playing games with him.,,gold0-orig,pos,unl,unl,unl,n/a,A family is sitting at a table and the grandpa begins positioning himself as if he is clapping his hands but he is really playing the harmonica.,\"As he plays, more of the young kids\"\nanetv_U37UAWdI-vY,9128,A man is playing a harmonica for the group. They,sit and listen intently as he plays.,play the guitar and stand up.,hold the blended raft over and a thumbs up.,talk onto the microphone and then dance.,see instruments blowing in the distance.,gold0-orig,pos,unl,unl,pos,pos,A man is playing a harmonica for the group.,They\nanetv_3Z4b34lBnyU,5374,\"A referee walks past the man, a man from the ground stands up and the very large man kicks him, picks him up, then slams him onto the rink. The man just\",lays there writhing in pain.,attempts to get back to the end and gestures backwards.,raises his javelin to a man sitting in front of it and then hits his throat.,remains and then moves back and forth again.,knocks the floor to the ground.,gold0-orig,pos,unl,unl,unl,unl,\"A referee walks past the man, a man from the ground stands up and the very large man kicks him, picks him up, then slams him onto the rink.\",The man just\nanetv_3Z4b34lBnyU,5373,\"A very large man wearing a black speedo is standing in a wrestling rink huffing and puffing. A referee walks past the man, a man from the ground stands up and the very large man\",\"kicks him, picks him up, then slams him onto the rink.\",throw 16 inch cones on the left of his left and begins to win.,is catching the discus.,in black walks across the table to him.,chases one of them.,gold1-reannot,pos,unl,unl,unl,unl,A very large man wearing a black speedo is standing in a wrestling rink huffing and puffing.,\"A referee walks past the man, a man from the ground stands up and the very large man\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7185,127,\"Leaving someone's room, someone hears voices from the open door of someone's store room. Someone\",sees the dark mark on someone's arm.,sits by a window with a bunch of flowers.,is now seen wheeled under a padded swing of bed mattress.,makes a low - sunk sketch then looks back in the mirror.,\"leads them into an office, and walks up to the front desk to pick up the table.\",gold0-reannot,pos,unl,unl,unl,unl,\"Leaving someone's room, someone hears voices from the open door of someone's store room.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7185,126,\"He puts his wand to his temple and drops a thread of memory into the pensieve. Leaving someone's room, someone\",hears voices from the open door of someone's store room.,\"pauses and runs up the bedroom, his arms draped around his waist.\",\"waits by his reading glasses, breathing deeply.\",takes off the pink dress and stares at the necklace through beaches.,notices a butterfly pileup.,gold0-reannot,pos,unl,unl,unl,unl,He puts his wand to his temple and drops a thread of memory into the pensieve.,\"Leaving someone's room, someone\"\nanetv_fgoXpih2Kws,8447,A boy is standing in an empty room. another boy,walks up to the first boy.,congratulates them as they finish.,is walking onto the stands.,puts two beer balls in his back.,is playing with a big bottle of mouthwash.,gold0-orig,pos,unl,unl,unl,unl,A boy is standing in an empty room.,another boy\nanetv_fgoXpih2Kws,13893,One boy gets the other one pinned to the floor. One boy,starts slapping the other boy's head and then picks him up upside down.,hits the ball with his racket until the other men hit him.,has an arm from the right after his punches and walks away.,throws a disc and sprints away.,\"crouches above someone, throwing someone into the air, and drops it.\",gold0-orig,pos,unl,unl,unl,unl,One boy gets the other one pinned to the floor.,One boy\nanetv_fgoXpih2Kws,13892,Two young boys play fight in a room with a black and white checkered floor. One boy,gets the other one pinned to the floor.,spins the baton and stadium his baton.,throws a ball towards the camera and slides to the ground.,gets up and swims to the other edge.,\"comes to a table with the weight bar in his lap, reading the position.\",gold0-orig,pos,unl,unl,unl,unl,Two young boys play fight in a room with a black and white checkered floor.,One boy\nlsmdc0029_The_Graduate-64159,13222,He pushes the card and a pen toward someone. Someone,\"writes his name on the card and then stares at it for a moment, crumples it up and fills out a second card.\",notices a black photo at the end of the screen.,whacks him with its michelle art.,stands up and walks back to the railing.,takes the page and sets it down.,gold0-orig,pos,unl,unl,pos,pos,He pushes the card and a pen toward someone.,Someone\nlsmdc0029_The_Graduate-64159,13221,Someone walks to the front desk and stands there. He,pushes the card and a pen toward someone.,crosses to the piano and takes a pistol.,walks over to the kitchen table where someone reads from the cracks.,notices his date on one of the screens.,,gold0-orig,pos,unl,unl,pos,n/a,Someone walks to the front desk and stands there.,He\nlsmdc0029_The_Graduate-64159,13220,Someone walks out of the Veranda Room and into the lobby. Someone,walks to the front desk and stands there.,lies in bed next to someone and sits next to someone.,\"shakes his head, head at his business people.\",\"stands in front of the police car parked, then turns to shut off the light.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone walks out of the Veranda Room and into the lobby.,Someone\nanetv_p2C4MeV02GU,7114,Woman is talking to the camera holding a big cat on her legs that is sitting in a cat cushion and its caressing his head. woman,is holding a nail clipper and cut the cat's nails explaining the right way to do it.,is wearing white sweater and yellow sweater and is pretending to put makeup on them.,\"is doing a serious mitten and then begins doing makeshift crunches, whips and others gymnasts in a living room.\",is making curlers biting his lip.,is playing the harmonica with a dog in her hand while the man is standing next to her.,gold0-orig,pos,unl,unl,unl,unl,Woman is talking to the camera holding a big cat on her legs that is sitting in a cat cushion and its caressing his head.,woman\nanetv_6VT2jBflMAM,8577,A camera pans all around a backyard and leads into a large group of people playing kickball. The camera,pans around to the cameraman as well as close ups of the others and people running around.,pans around a arena walking and holding up balls in their hands.,continues to capture the kids sitting on the other side skating and laughing back and fourth and smiling.,capturing her reaction and spins himself around while standing up and walking out past the crowd.,pans around the pool cutting and ends with one person standing near them.,gold0-orig,pos,unl,unl,unl,unl,A camera pans all around a backyard and leads into a large group of people playing kickball.,The camera\nanetv_6VT2jBflMAM,8578,The camera pans around to the cameraman as well as close ups of the others and people running around. More clips,are shown of the game being played with people running around and catching the ball with one another.,are shown of look back and ends with another person on the side.,are shown of them moving with sad colors and speaking to one another.,are shown of athletes throwing paintball sport and shooting shots to a distance.,are shown of people kayaking.,gold1-orig,pos,unl,pos,pos,pos,The camera pans around to the cameraman as well as close ups of the others and people running around.,More clips\nanetv_6VT2jBflMAM,18026,Several people are in a backyard playing a game of kickball and having a great time. A kid,is recording the game and showing himself the camera at the same time.,is taking a bat and look at the camera in smart a..,\"stands on the field, then joins introduces the hammer throw.\",is laying cement on the goal and is getting it in the air.,gets a head of her she used to get over and she makes it.,gold0-orig,pos,unl,unl,unl,pos,Several people are in a backyard playing a game of kickball and having a great time.,A kid\nlsmdc3032_HOW_DO_YOU_KNOW-2306,13302,Someone gives him a nod. Someone,pours blueberries over their cereal.,leads his head away.,is lying in the kitchen.,rubs a forehead with his hands.,moves toward another desk.,gold1-orig,pos,unl,unl,pos,pos,Someone gives him a nod.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2306,13301,He adds Life cereal to their bowls. Someone,gives him a nod.,looks over at people.,hammers his fist against a shelf.,hides in the van.,pulls up outside a gate with him.,gold0-orig,pos,unl,unl,unl,unl,He adds Life cereal to their bowls.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2306,13300,He grins and someone gives him an irritated look. Standing behind her he,wraps his arms around her waist.,\"leans over the card, which falls halfway through the pavement.\",gives her a thin box.,puts his hand for her to go straight under her touch.,,gold0-orig,pos,unl,unl,unl,n/a,He grins and someone gives him an irritated look.,Standing behind her he\nanetv_o8ja3mhecQI,4999,A kid is hanging from a bar. They,put a red rope over the bar.,have trouble going on the stilts.,swings at a pinata.,continue on onto the board.,,gold1-orig,unl,unl,unl,unl,n/a,A kid is hanging from a bar.,They\nanetv_o8ja3mhecQI,5782,A girl is swinging on pull up bars and she jumps down. While on the ground she,\"grabs a resistance band, loops it around her arm and climbs back on the pull up bars.\",kicks her feet in the air and kicks her feet down.,ends she stands up and grips the pole with both hands as another man appears.,hangs up the side and then runs.,climbs up onto her brother while jumping.,gold0-orig,pos,unl,unl,unl,pos,A girl is swinging on pull up bars and she jumps down.,While on the ground she\nanetv_o8ja3mhecQI,5000,They put a red rope over the bar. They,put the black handles of the rope onto their legs.,perform the splits onto the court.,clap their hands and swing.,start to raise the cup to their chests.,made up and jumped down onto a carpet.,gold0-orig,pos,unl,unl,unl,unl,They put a red rope over the bar.,They\nanetv_Sx7YgFLnwfM,6318,A woman is sitting in a chair talking. A persons hand,is playing rock paper scissors with a robot.,punching in a small shop and the girl customers.,talks into a large drum match.,is shown with hopscotch equipment.,is seen filling the client's hair.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting in a chair talking.,A persons hand\nanetv_Sx7YgFLnwfM,6319,A persons hand is playing rock paper scissors with a robot. A man in a white shirt,is talking to the woman.,is filming a man holding a bat.,is holding smoke from a hookah.,is standing behind the wall looking into a mirror.,is hitting the guitar.,gold0-reannot,pos,unl,unl,unl,unl,A persons hand is playing rock paper scissors with a robot.,A man in a white shirt\nanetv_nYlAXMmPWw0,3559,They dance around in a circle. They,continue dancing together in the room.,talk to each other as they play their song.,have brought a hug and start playing the music.,switch with the back of their hand up against each other's chest.,collide and spin and twirl their arrows and jump.,gold1-orig,pos,unl,unl,unl,unl,They dance around in a circle.,They\nanetv_nYlAXMmPWw0,3558,Five women are in a room dancing. They,dance around in a circle.,play foosball and dance in a studio.,sit in a chair and start dancing on the floor.,start dancing with batons as they play.,are holding batons in a competition.,gold0-orig,pos,unl,unl,unl,pos,Five women are in a room dancing.,They\nanetv_xq7Gr0FUwpo,4395,\"Then, people water ski in the water pulling by a boat. A woman water ski while two men\",explains the movements made by the girl.,ski on the lift.,watch on the side of a boat.,get to exercise behind a boat.,get it out from the water.,gold1-orig,pos,unl,pos,pos,pos,\"Then, people water ski in the water pulling by a boat.\",A woman water ski while two men\nanetv_xq7Gr0FUwpo,4397,\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he falls in the water. After, a person water ski and then\",falls in the water.,takes off in the rowing machine and starts working out on the machine.,continue to water ski in their land.,\"starts surfing, then flips.\",lie down to water ski.,gold1-orig,pos,unl,unl,pos,pos,\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he falls in the water.\",\"After, a person water ski and then\"\nanetv_xq7Gr0FUwpo,4396,\"A woman water ski while two men explains the movements made by the girl. After, a man water ski holding a water sky rope tie to a pole while a person watch, then he\",falls in the water.,adds attachment to cameras on the street.,puts a metal on the boat.,succeeds in the moves.,dive into a small group near an ocean where he is sitting on the boat.,gold1-orig,pos,unl,pos,pos,pos,A woman water ski while two men explains the movements made by the girl.,\"After, a man water ski holding a water sky rope tie to a pole while a person watch, then he\"\nanetv_xq7Gr0FUwpo,4394,\"Scientist writes a formula on a board, then the scientists run and jumps in the water. Then, people\",water ski in the water pulling by a boat.,are standing on the water and shakes the mop with water.,play water polo inside a house in a circular town.,turn and see the screen.,,gold0-orig,pos,unl,unl,pos,n/a,\"Scientist writes a formula on a board, then the scientists run and jumps in the water.\",\"Then, people\"\nanetv_xq7Gr0FUwpo,4393,\"Two scientist throws stones in the water while talking. Scientist writes a formula on a board, then the scientists\",run and jumps in the water.,begin to teach their name.,talk in an oil using a flight marker.,march to the front of it display the subscribe links.,gather in an open room and watch them test down fast.,gold1-reannot,unl,unl,unl,unl,unl,Two scientist throws stones in the water while talking.,\"Scientist writes a formula on a board, then the scientists\"\nanetv_5BAvlsHfTLk,5043,\"He starts with the main body and then goes to attach the wheels, the handle and the pedals. Then he\",goes ahead and attaches the rubber tires.,pushes the wheel clockwise and begins skiing several times.,goes through green range with cable bike wheels.,goes with some pliers and begins measuring the wall while hundreds of feet around also and round on the machine are down.,pushes himself higher up and stands upright on the pommel mat.,gold0-orig,pos,unl,unl,unl,unl,\"He starts with the main body and then goes to attach the wheels, the handle and the pedals.\",Then he\nanetv_5BAvlsHfTLk,5041,Santa Cruz Nomad Bike company is demonstrating how to install a bike. The company representative,is putting together the bike parts piece by piece.,comes and cuting the mounds of alcohol to make the pedal together.,shows the riders how they should reach for the links.,is removing twister supplies there.,is shown doing several different contraptions called that.,gold0-orig,pos,unl,unl,unl,unl,Santa Cruz Nomad Bike company is demonstrating how to install a bike.,The company representative\nanetv_5BAvlsHfTLk,5042,The company representative is putting together the bike parts piece by piece. He,\"starts with the main body and then goes to attach the wheels, the handle and the pedals.\",replaces his wheelchair using an oriental rock to brush on the board.,precision the oversized rod and using a tool to fit the bolts.,leans wearily on the machine.,replaces the spare tire off of a bike.,gold0-orig,pos,unl,pos,pos,pos,The company representative is putting together the bike parts piece by piece.,He\nanetv_5BAvlsHfTLk,5044,Then he goes ahead and attaches the rubber tires. After that he,fixes the handles of the bike with black rubber tops.,picked up the little nut and landed it upright with a strap on his head.,runs all the piling off his bike and replaces the screws.,shows the pawn and put the handle on the bike.,releases the machine and cuts the padlock off the snowboard.,gold0-orig,pos,unl,unl,unl,unl,Then he goes ahead and attaches the rubber tires.,After that he\nanetv_5BAvlsHfTLk,5045,\"He finally reinforces all the parts and ensures the bike is ready for use. when he's done, he\",gets on the bike and rides it.,sets it on a plate and gets in in front of him again with the food.,starts to form the middle for it.,gets some more and continues to iron the coat.,lifts the man up and turns off him.,gold0-orig,pos,unl,unl,unl,unl,He finally reinforces all the parts and ensures the bike is ready for use.,\"when he's done, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3035,\"It's someone, wearing the blue and white Spectrespecs, advertised on the quibbler. She\",sees a cloud of silvery dust hovering above the floor and pulls out her wand.,turns back towards someone shades slowly.,\"appears different while man and - little grated in the ocean is seeing his mom activate the spinner, but he sounds weird.\",\"walk to the shops airfield, hats, and sandals.\",,gold1-orig,pos,unl,unl,unl,n/a,\"It's someone, wearing the blue and white Spectrespecs, advertised on the quibbler.\",She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3034,He steps onto the almost deserted platform and glances along it. Steam,rises as he walks away.,falls from the floor.,moves up from the mops.,slows as a door closes.,,gold0-orig,pos,unl,unl,pos,n/a,He steps onto the almost deserted platform and glances along it.,Steam\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3029,Someone stands swinging a lantern on the Hogwarts platform as the express pulls up. People,\"wait for someone at the carriage door, finally leave their compartment.\",applauds from the dining room.,stand in the middle of the courtyard.,\"mistress looks out the window but gets up to see someone, still standing alone, with his hands folded.\",are now the front windows of the house.,gold0-orig,pos,unl,unl,unl,unl,Someone stands swinging a lantern on the Hogwarts platform as the express pulls up.,People\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3033,Someone flings the invisibility cloak back over someone and walks out of the carriage. He,steps onto the almost deserted platform and glances along it.,faces the elf's arms.,looks to someone and slips.,hurries out to the door.,faces a beautiful faced woman.,gold0-orig,pos,unl,unl,pos,pos,Someone flings the invisibility cloak back over someone and walks out of the carriage.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3030,He pulls down the blind. Something,falls from the rack and crashes to the floor.,looks around the man.,clicks in half.,runs at the bottom of the room.,,gold1-orig,pos,unl,unl,pos,n/a,He pulls down the blind.,Something\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3036,Someone's nose is broken and bloody. They,reach the school gates.,\"opens his eyes, peering down over the trailer's inscription.\",people get out of the mercedes and walk out across a wharf for uniformed soldiers.,watch the draw anxiously.,,gold0-reannot,unl,unl,unl,unl,n/a,Someone's nose is broken and bloody.,They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72210,3032,He stamps on the helpless someone. Someone,flings the invisibility cloak back over someone and walks out of the carriage.,grabs one of the dead trots.,\"gazes at his reflection in the mirror, and closes it on its back, then lifts it to his chest.\",looks at his mentor.,reaches out behind the door to arms them.,gold0-reannot,pos,unl,unl,pos,pos,He stamps on the helpless someone.,Someone\nanetv_ufBz1xfqQoM,2889,A host is seen speaking into a microphone and a couple walks out on stage. The couple,begin dancing with one another while others walk on stage.,continue dancing while the group pans around to around them continues to dance.,continues to sit and speak to one another while a microphone plays.,begin playing the drums while looking to each other.,then begin dancing with one another while looking to the camera.,gold0-orig,pos,pos,pos,pos,pos,A host is seen speaking into a microphone and a couple walks out on stage.,The couple\nanetv_ufBz1xfqQoM,19344,We see a lady close up. A man,spins a woman round and round.,enters a bathroom and walks up steps to second level.,performs a split mark while we see the man making long jumps and at the neck.,speaks before the kitchen and we see a man sitting on the floor.,on a yellow broom shines his legs at a table outside.,gold0-orig,pos,unl,unl,unl,unl,We see a lady close up.,A man\nanetv_ufBz1xfqQoM,19342,We then see other people waiting to dance. We,see 6 couples dancing together.,see the christmas tree on the swing.,see a game on tv.,see people hitting a ball near the goal.,,gold0-orig,pos,unl,unl,unl,n/a,We then see other people waiting to dance.,We\nanetv_ufBz1xfqQoM,19340,The lady hops in place. A bunch of men,walk out onto the stage.,wash dishes in a court.,perform a long jump.,stand on the field.,walk together on a row.,gold0-orig,pos,unl,unl,pos,pos,The lady hops in place.,A bunch of men\nanetv_ufBz1xfqQoM,19339,We see two people enter a dance floor. The people then,take their turn dancing in a competition.,enter a room as the camera moves on a light.,switch and back dancing.,see the lady perform their exotic routine and belly dancing together.,do a dance in the crowd.,gold0-orig,pos,unl,unl,pos,pos,We see two people enter a dance floor.,The people then\nanetv_ufBz1xfqQoM,19341,A bunch of men walk out onto the stage. We then,see other people waiting to dance.,see a man walking towards swings and ax.,see more people wearing boxing wrestler pads.,see them jumping from ankle stilts.,see a player in blue outfits playing two.,gold1-orig,pos,unl,unl,unl,unl,A bunch of men walk out onto the stage.,We then\nanetv_ufBz1xfqQoM,2890,The couple begin dancing with one another while others walk on stage. People,cheer as they audience stands around and leads into more people dancing together.,dance while everyone watches them break and leave with their hands.,are then seen dancing on stage and holding one another in front of them.,cheer and ends up speaking to the camera as people dance and laugh.,,gold0-reannot,pos,unl,pos,pos,n/a,The couple begin dancing with one another while others walk on stage.,People\nanetv_ufBz1xfqQoM,19343,We see 6 couples dancing together. We,see a lady close up.,see the girls do karate points.,see a man stage a stage.,see a man in a large field playing a drums.,see a lady hanging and in a water skiing surfboard.,gold0-reannot,pos,unl,unl,unl,unl,We see 6 couples dancing together.,We\nanetv_Jz7bt59z6Qg,16451,A woman turns the camera around to show the back of her horse. She then,turns the camera back around to show herself and her friends.,brushes her hair back and brushes.,takes another kite while piece of telephoto lens still visible beneath her shoulder.,undoes the ring and puts it in her mouth.,begins to clip the cats claws with the woman's hair.,gold0-orig,pos,unl,unl,unl,unl,A woman turns the camera around to show the back of her horse.,She then\nanetv_Jz7bt59z6Qg,9957,Three women and one man ride horses on an unpaved road in the forest. A man riding a horse,follows the three women.,walks beside a calf.,jumps on a dirt road.,uses a lasso to guide his child on the grass.,,gold0-orig,pos,unl,unl,unl,n/a,Three women and one man ride horses on an unpaved road in the forest.,A man riding a horse\nanetv_Jz7bt59z6Qg,16450,Some people are shown horseback riding on a trail. A woman,turns the camera around to show the back of her horse.,is seen riding a horse on a pier.,is shown riding a horse as she dances.,walks forward as she ties the laces of one of the horses.,stands on the side of the skiing gate and jumps over hills.,gold0-orig,pos,unl,unl,unl,unl,Some people are shown horseback riding on a trail.,A woman\nlsmdc3067_THE_ART_OF_GETTING_BY-32177,2745,\"Someone and someone peer around the nose of a truck and watch him enter a coffee shop called, The Cup & Saucer. Someone\",takes a seat at a window.,removes a substance from a rag bottle.,glances to the desk.,roll his eyes at someone's place.,\"is added in a mixer, all of them adds the ingredients together.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone and someone peer around the nose of a truck and watch him enter a coffee shop called, The Cup & Saucer.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32177,2744,Wearing his trench coat someone slowly ambles along with a briefcase in hand. Someone and someone,\"peer around the nose of a truck and watch him enter a coffee shop called, the cup & saucer.\",sit together in the vortex.,rush over to the table where a reverend approaches.,walk along the station.,,gold0-orig,pos,unl,unl,pos,n/a,Wearing his trench coat someone slowly ambles along with a briefcase in hand.,Someone and someone\nanetv_Qg3Lih9PTBM,12744,\"Two sumos wrestle fiercely while a judge watch them. Then, the sumo wearing black slip\",pushed out of the ring the other sumo.,\"away, and hug to the women.\",and tie hector into a barber chair.,into each other and twist off the paper.,,gold0-orig,pos,unl,unl,unl,n/a,Two sumos wrestle fiercely while a judge watch them.,\"Then, the sumo wearing black slip\"\nanetv_Qg3Lih9PTBM,12745,\"Then, two sumo wrestle and trip with the judge, one of them falls. After, the sumosn continue wrestling and the sumo with black slip\",falls out the ring.,fails then throw them to their opponent.,is repeated and kneeling down on the counter.,involves the performance covering it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, two sumo wrestle and trip with the judge, one of them falls.\",\"After, the sumosn continue wrestling and the sumo with black slip\"\nanetv_BcMHGhxdMl4,9696,\"As he talks, a variety of people from different ages and genders are moving around and hitting each other. The action keeps going, and the man\",talks about the events and extends his arm about the cars.,talks to the camera with a woman in full costume taking a turn.,continues to cycle at the debris still falling.,performs the same thing.,,gold1-orig,pos,unl,unl,unl,n/a,\"As he talks, a variety of people from different ages and genders are moving around and hitting each other.\",\"The action keeps going, and the man\"\nanetv_BcMHGhxdMl4,16959,People are driving bumper cars in a amusement park. old man,is standing next to man watching the people in bumper cars.,holds behind a baseball net.,is standing with a friends in front of a man with bumper with his arms behind him as dealer.,is in a back tractor in a snow.,is roller - skating on rollerblades outside in the parking lot.,gold0-orig,pos,unl,unl,unl,pos,People are driving bumper cars in a amusement park.,old man\nanetv_BcMHGhxdMl4,16958,Man is standing behind the fence talking to the camera watching people in driving in bumper cars. people,are driving bumper cars in a amusement park.,are sitting near the front of the van going down the road.,are in bleachers watching them on the side of the court watching.,are standing in a parking lot on the road in ski gear.,,gold0-orig,pos,unl,unl,unl,n/a,Man is standing behind the fence talking to the camera watching people in driving in bumper cars.,people\nanetv_BcMHGhxdMl4,9695,\"A man with short black curly hair is standing in the corner of a bumper car room talking. As he talks, a variety of people from different ages and genders\",are moving around and hitting each other.,are shown in front of a house and amid dried freebies.,\"are shown on the screen, including tricks.\",are shown competing in enlarged photos of the scene a group of men out on stairs outdoors with various group performing.,,gold0-orig,pos,unl,unl,unl,n/a,A man with short black curly hair is standing in the corner of a bumper car room talking.,\"As he talks, a variety of people from different ages and genders\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41078,12589,\"He marches off, but the staff heads in the opposite direction. An entry gate sign\",\"reads, rosemoor wildlife park.\",gives someone as they enter.,falls open across the room to someone.,appears with teller owners of them.,is shown on the walls.,gold0-orig,pos,unl,unl,unl,pos,\"He marches off, but the staff heads in the opposite direction.\",An entry gate sign\nlsmdc3087_WE_BOUGHT_A_ZOO-41078,12587,\"He rubs someone's shoulder, causing him to turn away in embarrassment. Sitting on someone's shoulder, Crystal\",slaps a hand over her head.,spins in someone's arms.,catches his eye on someone.,flies up from a chair around him.,presses a hand to his brow.,gold1-orig,pos,unl,unl,unl,pos,\"He rubs someone's shoulder, causing him to turn away in embarrassment.\",\"Sitting on someone's shoulder, Crystal\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41078,12588,\"Sitting on someone's shoulder, Crystal slaps a hand over her head. He marches off, but the staff\",heads in the opposite direction.,are close behind chevy.,are already across the room.,bites his arm again.,with someone lies behind someone.,gold0-reannot,pos,unl,unl,unl,unl,\"Sitting on someone's shoulder, Crystal slaps a hand over her head.\",\"He marches off, but the staff\"\nanetv_Bg526A61c1w,7900,\"He then practices for the event by lifting the big Olympic sized weights. At the competition, he\",picks up the weights from a squatting position before rising up and then throwing the weights down on completion.,throws the discus in confusion and after several balanced down discus rubiks technique.,turns his discus and sits up on his feet.,jumps over a bar with his head on who starts to jab and knocks and wrenches.,\"peeks around with additional grain, attached to equipment set.\",gold0-orig,pos,unl,unl,unl,unl,He then practices for the event by lifting the big Olympic sized weights.,\"At the competition, he\"\nanetv_Bg526A61c1w,7899,\"Before an Olympic weight lifting event, a Chinese competitor is shown preparing by working out in a gym. He then\",practices for the event by lifting the big olympic sized weights.,throws a discus as man.,talks to the camera while bending forward and to show how to properly put the weight on the shoulders for the discus.,engages in discus throw in front of a small crowd.,\"speaks to the camera and performs multiple flips of the equipment, fighting others, fighting and with the effects of his movements.\",gold0-orig,pos,unl,unl,unl,unl,\"Before an Olympic weight lifting event, a Chinese competitor is shown preparing by working out in a gym.\",He then\nanetv_PFn7a6eEhb4,6667,The camera zooms in on a baby cow with various title pages shown across the screen. A group of men,run around a calf while others hold him down.,hold onto the men in the back.,walk through and dressed with pumpkins on a wooden table.,ride the black horses riding and side by side.,fall down a dirt track with a small waterfall.,gold0-orig,pos,unl,unl,unl,unl,The camera zooms in on a baby cow with various title pages shown across the screen.,A group of men\nanetv_PFn7a6eEhb4,6670,Several men drag him out while a tourist attempts to draw the bull in. The bull nearly grabs him but the boy,makes it on the fence and throws the red blanket on the bull.,holds another leash and holds onto the dog and holds him up.,puts it in his mouth.,brings him to lift the upright while still holding a gun.,gets better and throws his feet into the air to straighten him down.,gold0-orig,pos,unl,unl,unl,unl,Several men drag him out while a tourist attempts to draw the bull in.,The bull nearly grabs him but the boy\nanetv_PFn7a6eEhb4,6669,A drunk man attempts to interact with a bull and is flipped into the air. Several men,drag him out while a tourist attempts to draw the bull in.,catch them walk on the ground and finish watching the match.,pump their fists and one of the men get up and begin doing different things as the man did the same.,stand in place with the dog and others and try to get a whistle from the screen.,\"are getting dressed together, sitting in.\",gold0-orig,pos,unl,unl,unl,unl,A drunk man attempts to interact with a bull and is flipped into the air.,Several men\nanetv_PFn7a6eEhb4,6668,A group of men run around a calf while others hold him down. A drunk man,attempts to interact with a bull and is flipped into the air.,talks on front a horse.,jumps up and helps him down.,holds out a toy and gives him a thumbs up.,snatches a ball with a pen.,gold0-reannot,pos,unl,unl,unl,unl,A group of men run around a calf while others hold him down.,A drunk man\nanetv_nJMS8jN3uU4,6662,The girl in pink kicks the ball to her brother in the orange shirt while the little kids run around and play. There,'s a little baby sitting on the ground in a baby bouncer watching them play.,girl finishes a routine and walks off down the street.,\", the girl on her hopscotch runs on the hopscotch and onto his back and is watching from the side on the pavement.\",picks her girls arms out and throws her arms down.,see the girls play volleyball going back and forth.,gold0-orig,pos,unl,unl,unl,unl,The girl in pink kicks the ball to her brother in the orange shirt while the little kids run around and play.,There\nanetv_nJMS8jN3uU4,6661,There are four kids of varying ages playing kick ball in their backyard. The girl in pink,kicks the ball to her brother in the orange shirt while the little kids run around and play.,looks around the room reassuringly showing the boy playing sadly in her chair.,stops watching and jumps and makes the basket in her.,picks up two more balls and gives the girl a high five.,is being interviewed in the beginning.,gold0-orig,pos,unl,unl,unl,unl,There are four kids of varying ages playing kick ball in their backyard.,The girl in pink\nlsmdc3041_JUST_GO_WITH_IT-18392,5613,She abruptly gets in the limo. Someone,\"turns to someone, who stares agog at him.\",bites out in front of the car window as the driver pulls out.,peers out from the bank bus.,leaps up outside the building and calls to someone as they slide across the floor.,is flat on her stomach.,gold0-orig,pos,unl,unl,unl,pos,She abruptly gets in the limo.,Someone\nanetv_agZNSscDJww,19104,People are playing a game of lacrosse outside. A man in a blue shirt,is talking to the camera.,is standing next to him.,is skateboarding on a sidewalk.,speaks and sitting down talking.,,gold0-orig,pos,unl,unl,pos,n/a,People are playing a game of lacrosse outside.,A man in a blue shirt\nanetv_agZNSscDJww,19103,A man is playing the bagpipes. People,are playing a game of lacrosse outside.,move both legs from the room and out of the front of the room.,are playing inside a foosball shop.,are glued to the camera as his introduction goes on to stuff to the right.,,gold1-reannot,pos,unl,pos,pos,n/a,A man is playing the bagpipes.,People\nanetv_sX8Rr1o4XWM,2029,A close up of a sign is shown followed by a person dipping paint. The person,is then seen spreading paint all around the area while another smiles to the camera.,\"starts cutting the shoe block, then wipes paint on the back of the car.\",brushes the paint into a pick and puts them against a tree.,puts paint on the shaver and continues painting the fence.,puts paint on another paper then covers it with a paint brush.,gold0-orig,pos,unl,unl,pos,pos,A close up of a sign is shown followed by a person dipping paint.,The person\nanetv_sX8Rr1o4XWM,2030,The person is then seen spreading paint all around the area while another smiles to the camera. The men,continue to lay plaster down on the walls.,continue to race around the sides while we see his movements.,continue their search and leads into a room of a rolling and block.,then begins to play together while speaking with one another.,continue to use bushes to paint the fence.,gold0-reannot,pos,unl,unl,unl,pos,The person is then seen spreading paint all around the area while another smiles to the camera.,The men\nanetv_sTtFSpelQk4,5199,The man drifts to the side slightly while talking using the paddle as an anchor in the water and seemingly demonstrating how to paddle using the paddle and hand gestures to explain how to move the paddle and canoe in the water. The man then,pushes away from the camera with the paddle and drifts out into the water before paddling back to the camera again.,appears again with his wake and walks up the slope while paddling it to jump on the board and pulling over the machine.,takes off along the pier and does the kayak on the waves in slow motion.,\"is entered several people riding past the camera, and we then see people riding on a board surfing the waves.\",,gold0-orig,pos,unl,pos,pos,n/a,The man drifts to the side slightly while talking using the paddle as an anchor in the water and seemingly demonstrating how to paddle using the paddle and hand gestures to explain how to move the paddle and canoe in the water.,The man then\nanetv_sTtFSpelQk4,5198,A man in a red life vest demonstrates how to paddle in a canoe through gestures and through talking to the camera from a canoe in a body of water. A man in a red canoe,is paddling with one oar in a small body of water while talking to the camera.,walks down a turbulent river like a kayak fighting after one on a right.,and a canoe sits in a canoe paddling while the man climbs the rock next to his lake.,\"raft on the river and in an underpass, they walk next to the kayak carrying kayaks into the ocean.\",swims under the water.,gold0-reannot,pos,unl,unl,unl,unl,A man in a red life vest demonstrates how to paddle in a canoe through gestures and through talking to the camera from a canoe in a body of water.,A man in a red canoe\nlsmdc1062_Day_the_Earth_stood_still-100616,15671,She tentatively opens the toilet cubicle door. She,looks nervously at the woman in military uniform and nods.,\"passes out and front door, opens door and shuts it.\",\"smiles at herself, then turns to look at his car.\",\"climbs inside, leaving a quick photography vision around.\",,gold0-orig,pos,unl,unl,unl,n/a,She tentatively opens the toilet cubicle door.,She\nanetv_OabVylOVys4,12603,\"One person gets pushed off of the boat, but the others keep going. when they get to shore, they\",see other people who they know.,manage to get off the wheel of the boat.,have paused for the large raft.,launch again and into the kayaks.,are shown practicing as the tubes together.,gold0-orig,pos,unl,unl,unl,unl,\"One person gets pushed off of the boat, but the others keep going.\",\"when they get to shore, they\"\nanetv_OabVylOVys4,19926,The people speak to one another and eat food as well as swim in the river. People,\"ride in kayaks, eat and cook more food as well as continuing to ride down the river.\",continue speaking with one another and grabbing the instrument.,jump out and watch the titanic.,fall off as they wave to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The people speak to one another and eat food as well as swim in the river.,People\nanetv_NulnzF8avMI,4057,The audience watches and cheers as the announcers give their commentary. He,goes up to a hand stand.,crawls up an arm in a swingset area.,spots someone who walks in and feeds someone.,turns up their hands to pick up the food.,,gold1-orig,pos,unl,unl,unl,n/a,The audience watches and cheers as the announcers give their commentary.,He\nanetv_NulnzF8avMI,4056,\"The gymnast gathers his focus, and mounts the pommel horse to begin his event. The audience\",watches and cheers as the announcers give their commentary.,then dismounts his legs and cheer and dismounts and finishes her routine.,watches him expectantly for a little while.,cheers with mounting glee as the gymnast stand and performs the high jump.,,gold0-orig,pos,unl,pos,pos,n/a,\"The gymnast gathers his focus, and mounts the pommel horse to begin his event.\",The audience\nanetv_NulnzF8avMI,4059,He picks up his speed once he comes back down from the hand stand. The gymnast,has a nice dismount.,walks alongside himself and jumps.,is reeling away around the bars.,gets a higher plate while the power & and graphic quickly pans to a human.,steps to a second stop and sets down the ax as the ladder is seen.,gold0-orig,pos,unl,unl,unl,unl,He picks up his speed once he comes back down from the hand stand.,The gymnast\nanetv_NulnzF8avMI,4058,He goes up to a hand stand. He,picks up his speed once he comes back down from the hand stand.,that's burmese brand on its tail toward a figure of a faraway man.,\"submerges in the water in a pool of water, and pulls back into the water and is drug out by a swimming pool.\",'s bumps and shadows.,follows smoke as the nurse's mother draws.,gold0-orig,pos,unl,unl,unl,unl,He goes up to a hand stand.,He\nanetv_qz47x5-R-BU,3639,Band is in stage and the front man is singing. woman,is playing drums wearing a black cap.,is showing how to play hopscotch on stage.,has an iron and plays the violin.,is playing harmonica while dancing on a business runway.,,gold1-orig,pos,unl,unl,unl,n/a,Band is in stage and the front man is singing.,woman\nlsmdc1023_Horrible_Bosses-81820,9859,Someone smashes him through a window. He,plummets onto the roof of a parked car.,snatches his drink.,rocks back and forth as he's recorded pouch.,hits his other half.,flings someone to the ground as the aircraft drops down below.,gold0-orig,pos,unl,unl,unl,pos,Someone smashes him through a window.,He\nlsmdc1023_Horrible_Bosses-81820,9858,Someone drags someone through the office by his tie. Someone,smashes him through a window.,\"approaches someone, who gives a sincere look.\",\"slide down the rug, looking down from it.\",zooms into the recording unit.,,gold1-orig,pos,unl,unl,unl,n/a,Someone drags someone through the office by his tie.,Someone\nlsmdc1023_Horrible_Bosses-81820,9860,He plummets onto the roof of a parked car. Someone,snaps to from his reverie.,'s suv gets caught by a bullet in the car's roof.,strokes the car as he reverses.,hits him and unconscious him to the floor outside.,opens her eyes and fires.,gold0-reannot,pos,unl,unl,unl,pos,He plummets onto the roof of a parked car.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89601,12011,Officers from someone's regiment are taking tea at Longbourn. Someone,is having the time of her life.,pulls his chubby butt into the.,drops his bags and leaves with paper bags in a grassy area to shoot them into the back.,is walking fast along the snow path with a skateboarder sitting on the subway lot.,,gold0-reannot,pos,unl,unl,unl,n/a,Officers from someone's regiment are taking tea at Longbourn.,Someone\nlsmdc3063_SOUL_SURFER-31152,6870,The minivan drives over a bridge. They,pass by some restaurants then spots a few surfers.,hurtle down from the window toward the house.,see a man chasing break.,wave at the worker someone.,,gold1-reannot,unl,unl,unl,unl,n/a,The minivan drives over a bridge.,They\nanetv_9PP5_HGpu4c,10998,A man is shown in a kitchen segment with a female newscaster. He,shows her several different ingredients on the table in front of them.,removes his finger from a pen sheet and slides them down.,\"skates, while now a record is seen.\",reporter is talking and talking onscreen.,continues explaining about scrubbing the gully and discussing.,gold0-orig,pos,unl,unl,unl,unl,A man is shown in a kitchen segment with a female newscaster.,He\nanetv_9PP5_HGpu4c,10999,He shows her several different ingredients on the table in front of them. He then,shows her how to make a stir fry.,instructs them on a hot method.,\"grabs a glass, adds some ginger cubes with her.\",finds the full tennis and dips the glass into a glass.,begins to pour the mixture in the glass and glass.,gold0-orig,pos,unl,unl,unl,pos,He shows her several different ingredients on the table in front of them.,He then\nanetv_9PP5_HGpu4c,16541,\"The chef then begins to describe the food in front of him and cuts the food to go into the pan. Once completed, he\",cuts eggs in half and cuts up small green things as the woman assists him by turning the food in the pan.,puts on his coat and uses the ingredients he show about how to wash the man.,\"mixes it around in a plate, turns it for a bowl, and places it on the plate.\",begins to stir the guitar as the shaker drops into small pieces.,dumps some food all around a pot and then begins to stir the ingredients in the pan next with for a bit.,gold1-orig,pos,unl,unl,unl,pos,The chef then begins to describe the food in front of him and cuts the food to go into the pan.,\"Once completed, he\"\nanetv_9PP5_HGpu4c,16540,The a male and female are shown on a television production stage behind an island with cooking ingredients. The chef then,begins to describe the food in front of him and cuts the food to go into the pan.,takes a bite of the peanut butter and pulls off the sandwich.,begins cleaning the bologna from the screen revealing a few bill - michele.,hurriedly setting something on a baking stove and places a baking pan on the painting.,begins vacuuming the top of a bowl and holding it with the spatula in front of him.,gold0-orig,pos,unl,unl,pos,pos,The a male and female are shown on a television production stage behind an island with cooking ingredients.,The chef then\nanetv_9PP5_HGpu4c,16539,A red title screen is shown where a man is tossing food in a frying pan. The a male and female,are shown on a television production stage behind an island with cooking ingredients.,bowl cooks the drinks.,is seen laying in a table and other lifts and puts a parrot on top of the plate.,chef is holding a small bowl and talking.,,gold0-reannot,pos,unl,unl,pos,n/a,A red title screen is shown where a man is tossing food in a frying pan.,The a male and female\nanetv_9uitA8tmSfE,1390,A woman jumps into a pool. A woman,is holding a large camera laughing.,kneels next to the woman.,stands on her swings and does several poses.,jumps onto the water then dives in.,\"spins around, then catches the ball.\",gold1-reannot,pos,unl,unl,pos,pos,A woman jumps into a pool.,A woman\nlsmdc3068_THE_BIG_YEAR-3301,16932,\"Someone abruptly turns away, listening. Climbing down off a boulder, he\",loses his footing and falls.,backs up and drags someone off his feet.,lets a piece of drinking whisky into his mantel.,picks himself up and grabs over them.,bangs his cane on the canvas's canvas window.,gold0-orig,pos,unl,unl,unl,unl,\"Someone abruptly turns away, listening.\",\"Climbing down off a boulder, he\"\nlsmdc3068_THE_BIG_YEAR-3301,16930,\"His jaw drops as the emerald hued bird hovers over his head. In slow motion, we\",watch the beats of its tiny wings.,drift - up into the sky.,glimpse an animated mountain cartoon faces.,see a a moon set in the moon.,,gold0-orig,pos,unl,unl,unl,n/a,His jaw drops as the emerald hued bird hovers over his head.,\"In slow motion, we\"\nlsmdc3068_THE_BIG_YEAR-3301,16929,Someone turns to find the hummingbird flying over the gate. His jaw,drops as the emerald hued bird hovers over his head.,falls as he swallows hard.,drops as he crashes into the deflect of someone's knocking.,drops at the end of the engine.,,gold0-orig,pos,unl,unl,unl,n/a,Someone turns to find the hummingbird flying over the gate.,His jaw\nlsmdc3068_THE_BIG_YEAR-3301,16933,\"Climbing down off a boulder, he loses his footing and falls. Landing, he\",\"crawls along the ground, then flops over and snaps photos of a bird in flight.\",\"stumbles onto a poop deck, as richard parker peers into the lifeboat, lands back in front and binoculars.\",puts on his dry t - shirts.,falls off the running.,pass one intros to the distant shark.,gold0-orig,pos,unl,unl,unl,unl,\"Climbing down off a boulder, he loses his footing and falls.\",\"Landing, he\"\nanetv_JDg--pjY5gg,12279,People are shown throwing ping pong balls into beer filled cups. A group of people,accept trophies at the event as onlookers celebrate and drink beer and the man returns to speak briefly into the camera.,are seen sitting on small chairs and playing one another while looking back to good camera.,are seen hitting balls all around a court while a person walking next to them watches.,do 'games and play soccer as the men are laughing and drinking their beers.,are seen playing with one another as a woman jumps up to their area.,gold1-orig,pos,unl,pos,pos,pos,People are shown throwing ping pong balls into beer filled cups.,A group of people\nanetv_JDg--pjY5gg,12889,\"The man is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots. Several people\",\"hold up award cards, hug and cheer before one last interview with the man and a fade out to marketing material.\",switch to bowling contents and hit the ball as well as many watch.,are shown riding around in a chair when speaking to one another talking in front of a news segment all playing.,are shown dressed up in tennis and ends with one upcoming volleyball jumping down and throws them back.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots.\",Several people\nanetv_JDg--pjY5gg,12888,A man in a red shirt talks to a camera before the camera cuts away to a room full of people playing professional beer pong and competitive social event. The man,\"is seen talking again interspersed with people playing beer pong, winning beer pong trophies and posing with him for still shots.\",dips light balls in the air and the girl grabs the bowling ball and throws it.,continues to play the harmonica while the woman adjusts the camera.,solves a rubix cube and begins hopping on the wall while he records it watching the man with red and black men playing games.,points to the man in the black shirt with him on his back also holding the gun and pass by his celebrities.,gold0-orig,pos,unl,pos,pos,pos,A man in a red shirt talks to a camera before the camera cuts away to a room full of people playing professional beer pong and competitive social event.,The man\nanetv_JDg--pjY5gg,12278,A man in a red and black shirts talks to the camera in a close up shot before the scene cuts away to a room filled with people playing or watching people plat beer pong. People,are shown throwing ping pong balls into beer filled cups.,\"man celebrates the video and jumps off one of the drums behind a man, then walks past his opponent.\",are close in stretching elder arms and other with swords and a safety video clips.,are then shown standing and playing bowling.,,gold0-reannot,pos,unl,unl,unl,n/a,A man in a red and black shirts talks to the camera in a close up shot before the scene cuts away to a room filled with people playing or watching people plat beer pong.,People\nanetv_6DYQHmsezUw,15239,A man and woman in front of the barrel are moving sideways in the water near a man with legs exposed. A woman,screams due to waves.,is seen standing in front of an parallel watching revelers as she bounces.,stands behind the bar talking.,reaches a hanging above a mountain covered in snow.,stands in the doorway watching the couple struggle against each other.,gold0-orig,pos,unl,unl,unl,unl,A man and woman in front of the barrel are moving sideways in the water near a man with legs exposed.,A woman\nanetv_6DYQHmsezUw,15238,A wave moves a barrel in an inner tube up out of the water near three people. A man and woman in front of the barrel,are moving sideways in the water near a man with legs exposed.,sailing on a tube while people watch them.,are passing large waterfall on side the boat.,are cheering and then a car rolls to the shore of the river.,help a man push the woman into the water.,gold1-orig,pos,unl,unl,unl,pos,A wave moves a barrel in an inner tube up out of the water near three people.,A man and woman in front of the barrel\nanetv_6DYQHmsezUw,1802,Several people are floating on tubes down a river. They,\"lay back in the tubes, riding the waves as they go.\",are then shown riding and kayaks down a river.,are skiing down a hill and crashing into each other.,hold a small board down the river as they go.,\"get on to them and capture them, as they get in tubes as they are surrounded.\",gold0-orig,pos,unl,unl,unl,unl,Several people are floating on tubes down a river.,They\nanetv_6DYQHmsezUw,1803,\"They lay back in the tubes, riding the waves as they go. They\",\"struggle to stay in the tubes, holding onto each other.\",then go after the rope in the river and eventually flip to the escalator.,break on the dusty sled and the boat slides down the slope.,fall across the water from them.,have the kites shown in the sky.,gold0-orig,pos,unl,unl,unl,unl,\"They lay back in the tubes, riding the waves as they go.\",They\nlsmdc1023_Horrible_Bosses-81814,3773,Someone spots a hot chick. Staff,are gathered in a meeting room.,sprints over a warm - up dock in the middle of the aisle.,reports names on the text.,\", a three guys unlocks a bike door, dragging him inside.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone spots a hot chick.,Staff\nanetv_u9aFICSj7zw,7401,A boy is ice fishing on a frozen lake in the winter time. He,pulls up a fish as his parents watch him pull it in.,takes another turn of the cat.,\"watches as he is in the water, rolling on a rock to the river.\",is then a man in a red suit demonstrating how to do a paddle using the big tire while holding water and wakeboard.,drives with the racquet in front of the boy as he went with his head and shifts his body to the ground.,gold0-orig,pos,unl,unl,unl,unl,A boy is ice fishing on a frozen lake in the winter time.,He\nanetv_u9aFICSj7zw,17070,\"A toddler pulls a string from a hole in the ice while a man is kneels on the ice. Then, a fish\",come out the hole.,is boiled in person on sea.,hit an ice puddle.,rolls down the ice.,\"appears next to a fish, while the young man grabs two fishing hooks with fish.\",gold0-orig,pos,unl,unl,pos,pos,A toddler pulls a string from a hole in the ice while a man is kneels on the ice.,\"Then, a fish\"\nanetv_u9aFICSj7zw,7402,He pulls up a fish as his parents watch him pull it in. He finally gets the fish up onto the ice and he,sees that it is a really big catch.,picks the fish up to push it with the other man who was caught.,serves it for a few times about what he will be doing.,goes back to the large fish.,falls to his back.,gold0-orig,pos,unl,unl,unl,pos,He pulls up a fish as his parents watch him pull it in.,He finally gets the fish up onto the ice and he\nanetv_81F42Yyw_iY,3378,She lands on a yellow mat under her. Words,come onto the screen at the end.,opens her eyes and stares back behind her.,leans on a pole and struggles as her friend slides his shirt backward and backward.,alternating between two lanes and a white line.,,gold0-orig,pos,unl,unl,pos,n/a,She lands on a yellow mat under her.,Words\nanetv_81F42Yyw_iY,3377,A woman pole vaults over a tall bar. She,lands on a yellow mat under her.,is shown doing long jump in slow motion for several downs.,stands in front of the screen regaining her balance as she tries to loosen the screws.,performs its jump in several different angles.,,gold0-orig,pos,unl,unl,unl,n/a,A woman pole vaults over a tall bar.,She\nanetv_WtWw-GNpr4E,14210,Two people are seen playing badminton when one man speaks to the camera. The man,moves his body around and demonstrates how to properly hit the birdie.,grabs a stick and swings around the other followed by captions.,then begins playing the game and ends with text across a screen.,finishes and holds up a stick and cheers the match over.,,gold0-orig,pos,unl,unl,pos,n/a,Two people are seen playing badminton when one man speaks to the camera.,The man\nanetv_WtWw-GNpr4E,14211,The man moves his body around and demonstrates how to properly hit the birdie. He,continues to speak and demonstrate on how to play.,looks on the screen for the show.,continues taking turns turns and showing the man playing the piano.,catches it again and continues playing it.,grabs a few balls then hits it with the stick.,gold0-orig,pos,unl,unl,unl,unl,The man moves his body around and demonstrates how to properly hit the birdie.,He\nlsmdc0033_Amadeus-66917,8984,Inside we see one gold snuff box: it is the one we saw someone being presented with as a child in the Vatican. Someone,turns to look around him.,leaps from the rail on the pavement.,\"takes to the end of the laundry room containing her own items, which depicts a young girl.\",\"lies breathlessly on the roof, wearing lopes and looking across the street.\",turns to sit facing someone.,gold1-orig,pos,unl,unl,unl,pos,Inside we see one gold snuff box: it is the one we saw someone being presented with as a child in the Vatican.,Someone\nlsmdc0033_Amadeus-66917,8985,Someone turns to look around him. She,points across the room to the workroom.,\"blinks down, but reluctantly heavily.\",enters and turns on a light as someone descends the stairs.,\"moves through the observation tower, looking back at the street.\",,gold1-orig,pos,unl,pos,pos,n/a,Someone turns to look around him.,She\nlsmdc0033_Amadeus-66917,8980,\"Someone is sitting up on the box beside the driver. Inside the vehicle, we\",glimpse the figure of someone.,can only hear the curtain shaking off the composure.,\"can see its deep floor, a six - story brick wall.\",see someone in the doorway dressed in a gorilla outfit.,see someone falls up into the mud.,gold0-orig,pos,unl,unl,unl,unl,Someone is sitting up on the box beside the driver.,\"Inside the vehicle, we\"\nlsmdc0033_Amadeus-66917,8983,Someone stands looking about him with tremendous curiosity. She,opens a drawer in a sideboard.,drops the fish into the mouth.,salute someone backstage at him.,solemnly studies his fur.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone stands looking about him with tremendous curiosity.,She\nlsmdc0033_Amadeus-66917,8986,She points across the room to the workroom. Someone,crosses and goes in alone.,gets onto her feet and looks up.,stares at it as she lies in dazed prayer.,jumps off the stage and picks up the script.,,gold0-reannot,pos,unl,unl,pos,n/a,She points across the room to the workroom.,Someone\nlsmdc0033_Amadeus-66917,8987,\"He moves slowly into the 'holy of holies' picking up objects with great reverence - a billiard ball; a discarded wig; a sock; a buckle - then objects more important to him. Standing at someone's desk, strewn with manuscripts, he\",picks up someone's pen and strokes the feather.,sees a black gray letters ad red in.,turns to someone and gives the other a sidelong look.,glances around at the pages of a daily movie.,opens it and gets a 360 from his soup.,gold0-reannot,pos,unl,unl,unl,unl,He moves slowly into the 'holy of holies' picking up objects with great reverence - a billiard ball; a discarded wig; a sock; a buckle - then objects more important to him.,\"Standing at someone's desk, strewn with manuscripts, he\"\nlsmdc0033_Amadeus-66917,8981,\"Inside the vehicle, we glimpse the figure of someone. Someone\",is conducting and playing in a reflective mood.,spots a hound carrier inside a ledge.,crouches and smells their hands.,lies meticulously under the mask.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Inside the vehicle, we glimpse the figure of someone.\",Someone\nlsmdc0033_Amadeus-66917,8982,The room is considerably tidier as a result of someone's ministrations. Someone,stands looking about him with tremendous curiosity.,are taking the file out of the drawer and tossing a newspaper.,steps out and watches someone surrounding him.,looks out from behind a bed with gray hair and beard.,,gold0-reannot,pos,unl,pos,pos,n/a,The room is considerably tidier as a result of someone's ministrations.,Someone\nanetv_0PnAEoMx-v0,19095,A person is playing an acoustic guitar. There,is a christmas tree behind him.,'s hands are standing on the edge of the stage.,is wearing a black shirt and a brown shirt and a white mask on it next to him.,band is lying on the floor watching the boys speak and watch the news.,is playing a song on the screen.,gold0-orig,pos,unl,unl,unl,pos,A person is playing an acoustic guitar.,There\nanetv_0PnAEoMx-v0,19096,There is a Christmas tree behind him. A logo with words,comes onto the screen.,come across the screen.,come onto the screen.,come up the screen.,explain the marathon from the gathered outside.,gold0-reannot,pos,unl,unl,unl,unl,There is a Christmas tree behind him.,A logo with words\nanetv_y4PXBhxpZHk,12528,A large group of people are shown in several shots playing a sport's game while hundreds of people watch on the sides. The men,continue running around the field while close ups of coaches are shown and one scores a goal.,continue jumping up and down in the sand while another group from various side watch on the side.,kick the ball back and fourth over one another and ends with a person playing caught a pool.,throw on the balls as well as shooting performing a shot and ends by celebrating their balance.,continue to play paintball while pointing to one another while taking back and waving to the camera.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are shown in several shots playing a sport's game while hundreds of people watch on the sides.,The men\nanetv_y4PXBhxpZHk,12529,The men continue running around the field while close ups of coaches are shown and one scores a goal. One man kneels down and the others,shake hands with players.,drinks the water out afterwards.,run around the circle until jump up ball and team goes to the field.,chasing him to another from land mate gear.,take from the ball close to the ball.,gold1-reannot,pos,unl,unl,unl,unl,The men continue running around the field while close ups of coaches are shown and one scores a goal.,One man kneels down and the others\nlsmdc1057_Seven_pounds-97705,14268,\"Someone opens French windows and goes outside. Looking shocked, someone\",goes around the side of the house to find someone feeding someone.,sees the door and enters the apartment.,runs sideways in his porch and walks toward a closed door.,enters the gym door.,straightens his leather tie.,gold1-orig,pos,unl,unl,unl,pos,Someone opens French windows and goes outside.,\"Looking shocked, someone\"\nlsmdc1057_Seven_pounds-97705,14266,Someone puts the phone down. She,scans about the room.,drops his hat onto someone.,shakes her head pensively.,struts off with the others.,follows him as they wander the stairs.,gold1-orig,pos,unl,pos,pos,pos,Someone puts the phone down.,She\nlsmdc1057_Seven_pounds-97705,14267,She scans about the room. Someone,opens french windows and goes outside.,pulls up a bunch of policemen and kisses someone.,turns to a padded guard.,steps up quickly and gets off the divan bed.,,gold0-reannot,pos,unl,unl,pos,n/a,She scans about the room.,Someone\nanetv_PoamN_DEInI,9090,A woman is doing hopscotch on a sidewalk outside a fence. She,is then shown posing for pictures.,is dragging a friends up and cooking her up.,talks and shows different locations of the dog.,gets a dart and walks past two cars.,starts peeling the snow off the ground.,gold1-orig,pos,unl,unl,unl,unl,A woman is doing hopscotch on a sidewalk outside a fence.,She\nanetv_5cTnHXcD7DE,17352,A large group of people are seen running down the street while many watch on the sides. Several people,are seen speaking to the camera as more shots are shown of people running.,walk towards the door walking around.,walk in front of them and the man throws objects into the man's face.,are seen warming up with one another while others watch on the sides.,skate and speak to the camera with one another.,gold0-orig,pos,unl,unl,pos,pos,A large group of people are seen running down the street while many watch on the sides.,Several people\nanetv_5cTnHXcD7DE,17353,Several people are seen speaking to the camera as more shots are shown of people running. People,cheer others on on the sides as well as marching bands playing and people still running.,are seen in a sand puck as well as others walking around the area and laughing with one another.,working out along the girls and walking back and speaking to the camera.,is then seen walking around on the field and leads into people walking along the field.,are seen speaking and taking pictures.,gold0-orig,pos,unl,pos,pos,pos,Several people are seen speaking to the camera as more shots are shown of people running.,People\nanetv_LVub7uinY-4,18728,A small group of people are seen playing a baseball game on a field and leads into several more shots of them playing. The video,continues with several clips of people hitting and catching the ball and ends with text across the screen.,cuts to clips of athletes playing field hockey with one another and dancing playing with one another.,continues on a approaches around in middle of a circle and ends with people walking in and past other people in front.,continues with several more shots of people playing instruments to one another and ends by looking back to the other men in team fight.,continues as well as the video and ends with the closing captions shown on the screen.,gold0-orig,pos,unl,unl,unl,unl,A small group of people are seen playing a baseball game on a field and leads into several more shots of them playing.,The video\nlsmdc0013_Halloween-53927,7150,Someone turns and walks back to the street. A car,pulls up in front of the house and parks.,is parked at some large.,drives down a highway.,pulls up at the corner just inside the garage door.,is passing down directly in front of someone.,gold1-orig,pos,unl,unl,pos,pos,Someone turns and walks back to the street.,A car\nanetv_tCfu0LplM64,13359,The man then begins to clean and shine the shoes. the man then,holds the finished shoes up to the camera.,begins to remove a pair of shoes.,lathers his skin with a cloth.,takes a cigarette out of his mouth.,is sitting in the shower and brushes his shoes.,gold0-orig,pos,unl,unl,unl,unl,The man then begins to clean and shine the shoes.,the man then\nanetv_tCfu0LplM64,6467,A man is sitting behind a table. He,has a little brush and starts shining his shoes.,is trying to pour a liquid into his neck.,applies the liquid to his face with a large paint brush.,is drinking beer from a cup of tea.,sets the two discs on a table.,gold1-orig,pos,pos,pos,pos,pos,A man is sitting behind a table.,He\nanetv_tCfu0LplM64,13358,A man holds a pair of shoes up to the camera. the man then,begins to clean and shine the shoes.,begins to walk back to the center of the yard.,bungee jump on it while the camera also runs front and spins.,applies shaving cream up on the side of his face.,cuts the man's hair and applies it to her face.,gold0-orig,pos,unl,unl,unl,unl,A man holds a pair of shoes up to the camera.,the man then\nanetv_9L-aeZsgwZs,9735,A group is gathered on a field in front of a crowd. They,\"are leaning back, playing a game of tug of war.\",are working on the beach playing a game of rackets.,are in the field playing water polo.,begin to play a game of blue polo.,bend over and smash the floor.,gold1-orig,pos,unl,unl,unl,unl,A group is gathered on a field in front of a crowd.,They\nanetv_9L-aeZsgwZs,9108,A coach instructs his team on what to do. Teams and referees,walk around the field.,are sitting in the first event participate.,make a perfect formation.,are competing on a street with a red background after christmas in the rink.,are playing volleyball during the field.,gold1-orig,pos,unl,pos,pos,pos,A coach instructs his team on what to do.,Teams and referees\nanetv_9L-aeZsgwZs,9107,A large crowd of people outside the field watch the game. A coach,instructs his team on what to do.,runs up and throws the ball and scores.,runs after the ball and throws it off into the net.,looks away and cheers for his parents.,holds his hand up to the skateboarders.,gold0-orig,pos,unl,unl,unl,unl,A large crowd of people outside the field watch the game.,A coach\nanetv_AWPlbtK7afY,343,\"A group of people is learning how to rollerblade. Some peeople go in groups, but generally they\",are slow and awkward.,stand back to get thrown.,'re about to use their fishing.,have lost a grip.,are making the sandwich.,gold0-orig,pos,unl,unl,unl,unl,A group of people is learning how to rollerblade.,\"Some peeople go in groups, but generally they\"\nanetv_2ji02dSx1nM,16248,He goes through the waves as they crash around him. He,continues riding the waves and talking to the camera in an interview.,heaves a deep sigh as he slides back down the stairs.,\"watches a moment intently, then looks out at the open window on his desk, frowning.\",and keep attempting to win the rest of the race when day glides and people stand patched up if he's getting a full bike,pauses for a moment to look in amazement remember the place: fold his hand out of the boy's nostril.,gold1-orig,pos,unl,unl,unl,unl,He goes through the waves as they crash around him.,He\nanetv_2ji02dSx1nM,16247,A surfer is riding on a surf board in the ocean. He,goes through the waves as they crash around him.,\"holds up his surfboard, and sail at the ocean's edge.\",runs onto a pier and skis to rest behind the boat.,falls onto the sea from the surf waves and pans around the passing wind wave waves.,,gold0-orig,pos,unl,unl,unl,n/a,A surfer is riding on a surf board in the ocean.,He\nanetv_-bzI8_hCbWk,4092,A large group of people are seen standing around a large gymnasium playing a game of dodge ball with one another. One man,performs an impressive flip that leads to a man speaking to the camera and showing more shots of impressive dodgeball play.,kicks the puck several blocks while and pans around.,\"comes over more times and pauses, actually hitting the blue net in the end.\",throws a ball into the goal while other people stand at the end.,wins a more slow motion and leads into them running and celebrating with people audience watching.,gold0-reannot,pos,unl,unl,unl,unl,A large group of people are seen standing around a large gymnasium playing a game of dodge ball with one another.,One man\nanetv_6jgWCFWtCfU,19486,A group from a band is marching down a street. They girls,are cheerleading as the band follows.,leap across the sand to rain down at the end.,bend over and look around the house.,play the drums and marching.,begin singing and play the drums in front of an audience.,gold1-orig,pos,unl,unl,unl,pos,A group from a band is marching down a street.,They girls\nanetv_6jgWCFWtCfU,6879,A large group of people are seen marching together with cheerleaders in the front and a marching band behind them. The group,continues marching along the street followed by a man on a bike behind them.,continue riding forward along the waves while others watch on the side and watch them play.,continues to play together as the clips be shown as well as dance.,walks onto a formation together and begin performing various martial arts in the middle they walk into and playing the instruments.,continues playing instruments and ends with text shown of a succession of people running and singing in the audience.,gold1-orig,pos,unl,unl,unl,unl,A large group of people are seen marching together with cheerleaders in the front and a marching band behind them.,The group\nanetv_T8mTuW85NNo,392,A tv news anchor reports on a story. A variety of people,\"are shown watching their hands, as the report speaks on germs.\",are inside several enclosed bowls.,gather and set up on records display.,are in gym shit.,are kickboxing while taking in a club.,gold0-orig,pos,unl,unl,unl,unl,A tv news anchor reports on a story.,A variety of people\nanetv_AdnLY0a6yn0,11378,Once he lands in the sand he goes back to start again. He,does this over and over each time starting farther back.,\"rides his bike into a lawn, at home.\",waves to people and leaves the bus.,jumps up from his raft when the action of the action has gone somewhere.,,gold0-orig,pos,unl,unl,unl,n/a,Once he lands in the sand he goes back to start again.,He\nanetv_AdnLY0a6yn0,11377,\"A man is practicing indoors, he is doing intervals of jumping while running. Once he lands in the sand he\",goes back to start again.,does jump down and high speed.,chases after him with his hands.,rolls onto his back and spins.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is practicing indoors, he is doing intervals of jumping while running.\",Once he lands in the sand he\nlsmdc0032_The_Princess_Bride-66456,6924,\"Someone can't even do that, but after a bit of rocking back and forth, he manages to get enough momentum to catapult his arm over and onto his friend's. People\",kneel before the clergyman.,'s hand hovers to the top of her hand.,sit at the edge of the great hall surrounded by trees just deep in pitch.,\"slipped a few feet up to reveal someone, one of the supports.\",talks to the crowd as people try to stop.,gold0-orig,pos,unl,unl,unl,unl,\"Someone can't even do that, but after a bit of rocking back and forth, he manages to get enough momentum to catapult his arm over and onto his friend's.\",People\nlsmdc0032_The_Princess_Bride-66344,8186,The trees are unusual in one respect: all of them are extraordinarily heavily knotted. They,are deeper into the grove now.,move slowly in front of their crowd.,cross the dojo in the middle.,are turned over a faded switch.,,gold0-orig,pos,unl,unl,unl,n/a,The trees are unusual in one respect: all of them are extraordinarily heavily knotted.,They\nanetv_Va3NsrY1DJ8,17609,\"He bounches high into the air, off the rope and back on. He\",continues this action throughout the video.,jumps off a blazing beam as sparks fly from the tanker.,ducks in the snow dragging the boat.,\"continues to rock through the countryside, swinging himself up in the air before closing.\",rushes past the toyshop as if to smile.,gold0-orig,pos,unl,unl,unl,unl,\"He bounches high into the air, off the rope and back on.\",He\nanetv_PyPu-6wATfw,7308,\"A bartender explains and shows how to prepare exotic alcoholic drinks in glasses using alcohol and juice. Then, the bartender takes a cup and prepares a cocktail in a shaker, then he\",pours it in the cup.,adds a test to make a chocolate textbook.,places the glass in solution and adds the mix in a shaker.,pours the juice into a cup.,mix the ingredients in a hot flowing liquors and demonstrate how to mix the weights.,gold0-orig,pos,unl,pos,pos,pos,A bartender explains and shows how to prepare exotic alcoholic drinks in glasses using alcohol and juice.,\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he\"\nanetv_PyPu-6wATfw,7309,\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he pours it in the cup. After, the bartender\",pours liquor in a glass and puts straws and pieces of pineapple in the glass.,adds the mixture on the cook and puts up a cup and gather the drink together.,uses two batons to secure a record.,takes a piece of chips from the glass.,pours the mixture to a bowl and spits it out into the glass.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the bartender takes a cup and prepares a cocktail in a shaker, then he pours it in the cup.\",\"After, the bartender\"\nanetv_PyPu-6wATfw,16856,A man is standing behind a restaurant bar. the man,places a glass on the bar.,\"gives a bike handstand, then collects several of the things they are used to drink.\",begins doing his somersault down a hill.,give the man the ice shake and then slice up bread.,stands up and watches talking.,gold0-orig,pos,unl,unl,unl,unl,A man is standing behind a restaurant bar.,the man\nanetv_PyPu-6wATfw,16857,The man places a glass on the bar. the man then,begins making a cocktail while talking to the camera.,\"takes the drink out of a cup, pours it into a cup of ice and then pours two more in the glass.\",picks up the drink and puts one in his mouth.,grabs a cup of ice cubes and puts it on the rim of a blender.,,gold0-orig,pos,unl,unl,unl,n/a,The man places a glass on the bar.,the man then\nlsmdc0041_The_Sixth_Sense-68012,14215,Someone picks up the spoon and takes a sip. Someone,slowly brings the spoon to her mouth and swallows another spoonful.,has a pen in it.,takes a sip from her change and leans out of the window to see someone gazing towards the ocean.,takes someone's hand.,,gold0-orig,pos,unl,unl,pos,n/a,Someone picks up the spoon and takes a sip.,Someone\nlsmdc1057_Seven_pounds-97772,13039,Someone's eyes glisten with tears as she stares at him. He,eyes her steadily and smiles faintly.,runs her finger through his heart then turns away.,watches the kite on their slender scantily clad torso.,rolls his eyes and kisses the back of his head.,smiles and turns away.,gold1-orig,pos,unl,unl,unl,pos,Someone's eyes glisten with tears as she stares at him.,He\nlsmdc1057_Seven_pounds-97772,13040,He eyes her steadily and smiles faintly. She,\"considers, then looks at him reassuringly.\",shakes her head sadly.,\"stares, horrified, terrified.\",turns off the light like a goofy grin.,nods back and forth enjoying the sunny day.,gold1-orig,pos,unl,unl,unl,pos,He eyes her steadily and smiles faintly.,She\nlsmdc1057_Seven_pounds-97772,13043,Someone is cleaning a window of the house. Someone,\"approaches the window and smiles in at someone, who opens the front door but not the wrought iron screen door.\",walks down a flight of stairs into the station.,is standing on a farmhouse on the other side of the house.,\"leaps outside, leaving someone alone so they run with their clothes soaked.\",\"sits on someone's bed, staring breathlessly at him.\",gold1-orig,pos,unl,pos,pos,pos,Someone is cleaning a window of the house.,Someone\nlsmdc1057_Seven_pounds-97772,13042,\"Someone sits in his car, watching a house. Someone\",is cleaning a window of the house.,tries to slip off her coat and luggage.,\"drives, rubbing his son's shoulder.\",heads toward the stairs and out into the night.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone sits in his car, watching a house.\",Someone\nlsmdc1057_Seven_pounds-97772,13041,\"She considers, then looks at him reassuringly. Someone\",\"sits in his car, watching a house.\",\"looks at him, half amused.\",\"reluctantly gets back to someone, who's wrapped in the blanket of the bed.\",nods slowly and simply nods.,stares at the specs.,gold1-reannot,unl,unl,unl,unl,unl,\"She considers, then looks at him reassuringly.\",Someone\nanetv_cc17BiSDn8w,18827,\"A man in a red kayak rolls into the water, and out of the water. He\",rolls into the water once more.,smiles at the camera and gets off of the diving board.,continues with several swimmers gathered from a large pool.,peers at them with the binoculars.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man in a red kayak rolls into the water, and out of the water.\",He\nanetv_cc17BiSDn8w,18829,He then is in a blue kayak and rolls into the water and out of the water. He,does it once more.,is running until he is able to go back to the water.,bends over and holds up several rock.,is seen moving on the water holding rides by another man's boat.,kneels down next to the surf and jumps into the water.,gold0-orig,pos,unl,unl,unl,unl,He then is in a blue kayak and rolls into the water and out of the water.,He\nanetv_cc17BiSDn8w,18828,He rolls into the water once more. He then,is in a blue kayak and rolls into the water and out of the water.,lands on each side of his boat and peers into the water.,flops into a top.,continues to talk and sit on the object that he needs done.,feeds using a thong.,gold0-orig,pos,unl,unl,unl,unl,He rolls into the water once more.,He then\nanetv_UhgVO1QaP2s,1040,The boys wrestle again and we see images of men wrestlers. An interviewer,walks into an office an talks to a man.,watches many more women as women watch over a hill.,leads him to the casino and meets more.,takes an omelette with his teammate as he gives him a winning.,,gold0-orig,pos,unl,unl,unl,n/a,The boys wrestle again and we see images of men wrestlers.,An interviewer\nanetv_UhgVO1QaP2s,1038,\"We we boys in diaper sumo gear running around in a gym, the boys then begin to wrestle. We\",see two of the boys being interviewed by two men.,see the man perform with the final ends.,split ropes in the background.,see the curlers jumping over a wall and begin the match going in unison.,,gold0-orig,pos,unl,unl,unl,n/a,\"We we boys in diaper sumo gear running around in a gym, the boys then begin to wrestle.\",We\nanetv_UhgVO1QaP2s,6833,Men are doing jumps on a pole in stage. a lot of people,are walking on the sidewalk and again in stage men are doing jumps.,are posing all on the river observing the game.,are interviewed with the camera watching them in action.,are around watching them.,are watching the footage.,gold0-orig,pos,unl,unl,pos,pos,Men are doing jumps on a pole in stage.,a lot of people\nanetv_UhgVO1QaP2s,6830,Kids are practicing sumo wrestling in a gym room and talking to the camera about their experience. men,\"are in an office, shake their hands and are talking about their sumo experience.\",are in a gym in gym doing a choreography in elliptical machines.,\"ride back on the monkey bars, with different my dogs.\",are in the gym constantly dancing on landing in a gym.,start running around watching the game as they will celebrate each time then they each have each strike.,gold1-orig,pos,unl,unl,unl,unl,Kids are practicing sumo wrestling in a gym room and talking to the camera about their experience.,men\nanetv_UhgVO1QaP2s,1039,We see two of the boys being interviewed by two men. The boys wrestle again and we,see images of men wrestlers.,see him left again.,see some arrows on dirt.,see the swollen ending screen.,,gold1-orig,pos,unl,unl,unl,n/a,We see two of the boys being interviewed by two men.,The boys wrestle again and we\nanetv_UhgVO1QaP2s,6831,\"Men are in an office, shake their hands and are talking about their sumo experience. girls\",are doing gymnastics in a stage.,are on roping and boxing.,are walking into frame while people are watching them in small court room and behind a store.,are sitting at a table on a school court.,,gold1-orig,pos,unl,pos,pos,n/a,\"Men are in an office, shake their hands and are talking about their sumo experience.\",girls\nanetv_UhgVO1QaP2s,1042,We see a circus show in an empty stadium. We,see scene of the city with buildings and people.,see two men indoors dance a war era.,see animals running on a large line behind the trees.,see the title scree and makes a web throw.,see a land screen.,gold1-reannot,pos,unl,unl,unl,unl,We see a circus show in an empty stadium.,We\nlsmdc0006_Clerks-48846,3524,\"Someone standing on a ladder, replaces a fluorescent light. An old man\",joins him at the foot of the ladder.,jumps down into his suite at night.,starts writing them up.,sits on his feet.,stands in surveillance cameras.,gold0-orig,pos,unl,unl,unl,unl,\"Someone standing on a ladder, replaces a fluorescent light.\",An old man\nlsmdc0006_Clerks-48846,3526,\"The light in place, someone descends the ladder and closes it. Someone\",glances over and reacts.,throws the hands back in the bedside cabinet.,yanks his arms from above his head as he tumbles up a hill.,\"opens it, revealing four mechanical limbs reaching out for it.\",rushes back to the neglected ship.,gold0-orig,pos,unl,unl,pos,pos,\"The light in place, someone descends the ladder and closes it.\",Someone\nlsmdc0006_Clerks-48846,3525,\"An old man joins him at the foot of the ladder. The light in place, someone\",descends the ladder and closes it.,places someone's knee in the fire.,writes on the line of a third represents.,hold a candle.,watches with sad eyes.,gold1-orig,pos,unl,unl,unl,unl,An old man joins him at the foot of the ladder.,\"The light in place, someone\"\nanetv_WXEq3OeD68o,838,\"The guy lifts the weights over his head, and the guy jumps into the air in joy. The guy\",stops weightlifting on stage.,struggles to lift weights.,turns the rod off and lifts the barbell to his chest.,finishes after his foot.,stops then melts all the weight again.,gold1-orig,pos,unl,unl,unl,unl,\"The guy lifts the weights over his head, and the guy jumps into the air in joy.\",The guy\nanetv_WXEq3OeD68o,13012,A weight lifter is standing on a stage. He,lifts a barbell up to his head before dropping it.,are dancing around demonstrating very zumba exercises.,looks at us for quite a bit.,lifts the barbell up under the barbell.,dismounts from the platform and leaps onto rising wide mat.,gold0-orig,pos,unl,pos,pos,pos,A weight lifter is standing on a stage.,He\nanetv_WXEq3OeD68o,13013,He lifts a barbell up to his head before dropping it. He,jumps up and down in excitement.,holds the blade over his head.,leans forward and presses someone's forehead.,does a series of kicks again at the same time.,throws the javelin over his head then throws it again.,gold0-reannot,pos,unl,unl,unl,unl,He lifts a barbell up to his head before dropping it.,He\nanetv_5vDPgcyRtOU,8531,A man working on a piece of furniture is overlaid with the text Apply wax with a soft cloth. Polish with orange oil,appears as the man sprays the furniture and rubs it in.,is applied to it as if the life is indeed below fondant and is fixing garments.,is tied next to the white table that has the color of it.,is sprinkled on the bucket.,is displayed across a table.,gold0-orig,pos,unl,unl,unl,pos,A man working on a piece of furniture is overlaid with the text Apply wax with a soft cloth.,Polish with orange oil\nanetv_5vDPgcyRtOU,8532,Polish with orange oil appears as the man sprays the furniture and rubs it in. The logo,appears again with a closing statement.,polishes an instructional excess surface.,on the details of the bedroom is shown.,cut and inserted.,and sizes are shown.,gold1-orig,pos,unl,unl,unl,pos,Polish with orange oil appears as the man sprays the furniture and rubs it in.,The logo\nanetv_5vDPgcyRtOU,8530,The topic Table Waxing and Polishing appears on screen followed by descriptive text. A man working on a piece of furniture,is overlaid with the text apply wax with a soft cloth.,is shown with his fingers horizontally.,begins spinning using his frisbees and a crowd comes silver through.,is shown being wiped by the kid.,get out of the table.,gold0-orig,pos,unl,unl,unl,unl,The topic Table Waxing and Polishing appears on screen followed by descriptive text.,A man working on a piece of furniture\nanetv_5vDPgcyRtOU,2200,A video warning showing characteristics of the products is shown. man,is standing in front of a wooden table polishing the table with wax and orange oil.,is wearing red gloves using a rake to cut items to eyeball.,picks up a hose and toss some of the bodies of overlaid style.,is punching the machine hard.,is springing onto the bike and making stunts.,gold0-reannot,pos,unl,unl,unl,unl,A video warning showing characteristics of the products is shown.,man\nanetv_5vDPgcyRtOU,8529,An 1825 Interiors logo appears on screen with a legal disclaimer. The topic Table Waxing and Polishing,appears on screen followed by descriptive text.,is talking about how to cross yourself.,appear in troubled races and finally shows streets.,starts very dark over the day.,pictures of a shop is shown.,gold0-reannot,pos,unl,unl,unl,unl,An 1825 Interiors logo appears on screen with a legal disclaimer.,The topic Table Waxing and Polishing\nanetv_lNvX6h3o4EA,7134,\"A man sits at the front of a class while playing a guitar and speaking. When he is done, he\",stands up to walk away.,plays the drums and plays the bagpipes.,joins her and plays a song on a guitar.,finishes the performance with the guitar.,continues playing the guitar in the living room.,gold0-orig,pos,unl,unl,unl,unl,A man sits at the front of a class while playing a guitar and speaking.,\"When he is done, he\"\nanetv_cXRWQa9tQLw,2550,\"They break apart, going into an elaborate dance routine. They\",\"flip, toss, and throw each other, then jump up and down excitedly.\",\"coatcheck between them, catching them between their hands.\",look at a picture of two young people most close at the same time and watching them.,\"bounce with feet high the walls, pick and flip and and spin.\",try not to do the same thing.,gold1-orig,pos,unl,unl,pos,pos,\"They break apart, going into an elaborate dance routine.\",They\nanetv_cXRWQa9tQLw,2549,A group of cheerleaders are posing on a stage. They,\"break apart, going into an elaborate dance routine.\",are practicing on a stage on the stage.,are doing exercise on a court.,group begins doing a routine on their stage.,clap and shake hands.,gold0-reannot,pos,unl,unl,unl,unl,A group of cheerleaders are posing on a stage.,They\nanetv_LSCQ1yqocHg,16732,\"He then turns on the water and and washes his hands. After he's done washing, he\",uses a white hand towel that is lying next to the sink on the counter.,continues rubbing up the tires and looking to the camera.,\"offers it to several kids standing on the field while shaking his hands and kicking the ball around, watching the replay.\",begins to talk to the camera before opening it in hushed raise before walking around the water washing something on his knees.,,gold0-orig,pos,unl,pos,pos,n/a,He then turns on the water and and washes his hands.,\"After he's done washing, he\"\nanetv_LSCQ1yqocHg,16731,He takes a pump from the liquid hand soap from the sink counter. He then,turns on the water and and washes his hands.,paints his feet again and mopping the bottom.,cuts the asphalt up which is already clean.,rinses the toothbrush off the sink.,\"rinses the mouthwash with hers, then pulls the coin out.\",gold0-orig,pos,unl,unl,pos,pos,He takes a pump from the liquid hand soap from the sink counter.,He then\nanetv_LSCQ1yqocHg,16730,There's a man standing in a kitchen and washing his hands in steel kitchen sink. He,takes a pump from the liquid hand soap from the sink counter.,gives a logo a tutorial on how to wash the sink.,looks awkward as they all sit down at a laptop.,adds pours onto the dish and takes the towel all down to clean.,\"sets down the ingredients - soaked water in the sink, and gets out.\",gold0-orig,pos,unl,unl,unl,unl,There's a man standing in a kitchen and washing his hands in steel kitchen sink.,He\nanetv_zE1l4avJZaU,13697,They tie the ribbon onto a wrapped package. They,tape the bow they made onto the package.,finish the letter and put it in their daughter's arms.,\"pour it into a canister, then get the little water from the picture.\",pull the paper from the box and put on a jacket.,lay one in the open diamond box.,gold0-orig,pos,unl,unl,unl,pos,They tie the ribbon onto a wrapped package.,They\nanetv_zE1l4avJZaU,13696,A person is making a bow out of ribbon. They,tie the ribbon onto a wrapped package.,mix white frosting in the middle.,put a towel up to the tree.,are using scissors to fly by.,start talking and talking about what they will.,gold0-orig,pos,unl,unl,unl,unl,A person is making a bow out of ribbon.,They\nanetv_aEUbl9oT_0s,13188,Various shots are shown of athletes holding a pole in their hands and leaning backwards. This,leads into several clips of more athletes throwing javelins off into the distance.,lead into several more clips of athletes performing flips obstacle bikes and more kids playing in the background.,are seen hoping over and over the net.,presented off numbers before backing faces.,of the man walks through the encouraging and high fives to throw their arms in the air.,gold0-orig,pos,unl,unl,unl,unl,Various shots are shown of athletes holding a pole in their hands and leaning backwards.,This\nanetv_aEUbl9oT_0s,13189,This leads into several clips of more athletes throwing javelins off into the distance. More and more people,are shown throwing javelins.,stand on a mat as well.,are seen riding through the field while keeping watch on the road.,run and speak with one another.,jump from the mat.,gold0-orig,pos,unl,unl,pos,pos,This leads into several clips of more athletes throwing javelins off into the distance.,More and more people\nanetv_M6yAoJJQvGY,9836,A woman is seen speaking to the camera and leads into clips of her performing ab exercises wile speaking to the camera. The woman,demonstrates how to do a proper sit up by moving her arms in different places and speaking to the camera.,continues to film a class around moving even around in the end and smiling to the camera.,continues working on the floor while the camera captures her movements.,\"continues speaking while moving her hands around, flipping by herself as more while speaking in the end.\",continues moving the machine while adjusting the woman's legs.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera and leads into clips of her performing ab exercises wile speaking to the camera.,The woman\nanetv_ULwdDmQ8Z_8,19423,\"She then sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer. Once the boat arrives, they young boy throws the rope to her and she\",begins to hold on to it.,helps the little girl get in the water.,comes up to help with a bowl.,rides at the end of the boat.,starts talking in front of people.,gold0-orig,pos,unl,unl,unl,pos,She then sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer.,\"Once the boat arrives, they young boy throws the rope to her and she\"\nanetv_ULwdDmQ8Z_8,5338,A woman in an orange vest wearing skis is standing at the edge of a dock by the water. She,sits down on the dock and then gets into the water.,pulls down a fishing boat and knocks on the salvage rocks.,wanders off doing the same thing.,talks to the camera as she rides the boat across the lake.,is doing flips as some people are skiing in ski boat.,gold0-orig,pos,unl,unl,pos,pos,A woman in an orange vest wearing skis is standing at the edge of a dock by the water.,She\nanetv_ULwdDmQ8Z_8,19424,\"Once the boat arrives, they young boy throws the rope to her and she begins to hold on to it. The woman finally becomes stable and the boat\",picks up enough speed for her to go.,is participating in the high extensions then ties the rope securely around the kid.,hops around and takes the lift.,runs so baited can be seen.,,gold0-orig,pos,unl,unl,unl,n/a,\"Once the boat arrives, they young boy throws the rope to her and she begins to hold on to it.\",The woman finally becomes stable and the boat\nanetv_ULwdDmQ8Z_8,19422,\"A woman is shown wearing a bathing suit skirt, orange float, and water skis. She then\",sits down on the dock and gets into the water and begins doggy paddling until the boat comes closer.,shows how to get the snow from the salvage intertube.,shows two large waves under the water.,talks about using the paddle like a grown person.,does a cartwheel and falls on the bar in the pool tub.,gold0-orig,pos,unl,unl,unl,unl,\"A woman is shown wearing a bathing suit skirt, orange float, and water skis.\",She then\nanetv_ULwdDmQ8Z_8,5339,A boat comes and the people inside the boat throw her a line and she grabs it. Then they take off and she,skis behind the boat.,does a hand stand.,falls off the boat.,returns to the board.,is flying one more time.,gold0-orig,pos,unl,unl,unl,unl,A boat comes and the people inside the boat throw her a line and she grabs it.,Then they take off and she\nlsmdc1046_Australia-90638,2085,\"Someone stares at the boy. Up on the cliff, someone\",\"makes a fire by drilling a stick into a piece of wood, and some kindling.\",\"overlooks the stain, encouraging him to swim and scurry.\",can barely get out through the open.,\"draws on his monstrous gaze, his face covered with sweat.\",crawls toward it and springs round to face his body with a determined expression.,gold0-orig,pos,unl,unl,unl,unl,Someone stares at the boy.,\"Up on the cliff, someone\"\nanetv_h15m87WsCHQ,7191,Hockey players are playing a hockey game on the ice. A crowd,is watching them play.,stands watching them watching.,of people are watching the game.,cheers them as they prepare to play a game.,stands behind them watching.,gold1-orig,pos,pos,pos,pos,pos,Hockey players are playing a hockey game on the ice.,A crowd\nanetv_h15m87WsCHQ,7193,A man in yellow falls on the ice. A man in a suit,is talking to hockey players.,is shown wearing welding gear.,falls from the water.,runs down the ocean in a large body of water.,falls backwards on the board in the dark.,gold0-orig,pos,unl,unl,unl,pos,A man in yellow falls on the ice.,A man in a suit\nanetv_SIeV0DPSpHQ,1111,We see a tree in a round of dirt. We,see a root in the yard.,see a green shore white on impact.,see a man playing standing hurriedly in the woods.,see the box on the right.,see a sign on a wall.,gold0-orig,pos,unl,unl,unl,pos,We see a tree in a round of dirt.,We\nanetv_SIeV0DPSpHQ,1108,We see two men in a yard pushing an item in the grass. We,see a dirt patch in the grass.,see two kids sanding the roof.,see a white screen and shows a man in painting on it.,see the title screen.,see that they use the shovel.,gold0-orig,pos,unl,unl,pos,pos,We see two men in a yard pushing an item in the grass.,We\nanetv_OD4MrhX85-M,17202,A girl in a white hoodie takes her turn and nocks out the red disc. A man in white shorts,steps in front of the camera and moves the discs with his foot.,is drinking a drink from a mouth holding a chicken.,picks up a track ball.,performs a little flip on a hopscotch on a playground with the lady in on the right.,,gold0-orig,pos,unl,unl,unl,n/a,A girl in a white hoodie takes her turn and nocks out the red disc.,A man in white shorts\nanetv_OD4MrhX85-M,15209,A game takes her turn pushing the puck down the game. A man,walks into frame in the end.,plays ping pong while seated on the ground.,bounces off the side and crashes with another fourth woman and a stick in to score shaking and celebrating.,walks on the sidewalk while hitting a ball.,is shown again throwing the ball in a bag.,gold0-reannot,pos,unl,unl,unl,unl,A game takes her turn pushing the puck down the game.,A man\nanetv_in5XF1bbYr0,10107,We see a title screen. We,see an image of the dog laying in the grass with words on the screen.,see a dog washing clothes in a sink.,see a man in a white shirt playing bowling in front of a tv set.,see the ladies face one of five times their names.,see a person throw the object on a mat in front of a boy.,gold1-orig,pos,unl,unl,unl,pos,We see a title screen.,We\nanetv_in5XF1bbYr0,10106,A man raises his hands in the air and walks off and another person walks past the camera. We,see a title screen.,see the illustration with music.,the machine goes by as the people continue to mark a circle of people we see of the crossing wave as them dancing.,\", the men push the leaves into a circle and a man walks into a building.\",,gold0-orig,pos,unl,unl,unl,n/a,A man raises his hands in the air and walks off and another person walks past the camera.,We\nanetv_in5XF1bbYr0,10105,A person throws a frisbee as a dog catches them. A man raises his hands in the air and walks off and another person,walks past the camera.,walks on a horse.,rushes back in the corner.,comes to help the man.,walks out of frame.,gold1-orig,pos,unl,pos,pos,pos,A person throws a frisbee as a dog catches them.,A man raises his hands in the air and walks off and another person\nanetv_in5XF1bbYr0,10104,We see a series of opening screens. A person,throws a frisbee as a dog catches them.,jumps on a machine and collapses in a pile.,has folded wallpaper on a wall.,applies a paper to the tire.,does a dance routine on a stationary platform.,gold0-reannot,pos,unl,unl,unl,pos,We see a series of opening screens.,A person\nanetv_hrwcr7BxS5I,1278,A man is bouncing a tennis ball on a court. He,serves the ball over the net.,starts walking back and forth on the court.,makes his way up to the court and jumps.,hits the ball through the wall.,pokes a ball back and forth across his lawn.,gold0-orig,pos,unl,unl,unl,unl,A man is bouncing a tennis ball on a court.,He\nanetv_hrwcr7BxS5I,9915,He bounces the ball a few times. Then he,serves it over the net.,\"throws the ball off in the other direction, and the ball is filled with the man swimming into the water.\",sets it down and throws it on the field.,stands up and throws the ball in his basket.,goes back to the track.,gold1-orig,pos,unl,unl,unl,pos,He bounces the ball a few times.,Then he\nanetv_hrwcr7BxS5I,9914,A man is on an outdoor tennis court. He,bounces the ball a few times.,is demonstrating how to play squash.,pushes the puck across the floor.,drops a ball first in front of the men.,,gold0-orig,pos,unl,unl,pos,n/a,A man is on an outdoor tennis court.,He\nanetv_hrwcr7BxS5I,1279,He serves the ball over the net. He then,\"chases after the ball, then stops.\",spins the net into the water.,uses a hammer to hit the ball across the court.,returns to the camera and puts it back under ice before going back to the bar.,walks back over the net.,gold0-reannot,pos,unl,unl,unl,pos,He serves the ball over the net.,He then\nlsmdc1010_TITANIC-77283,3125,Someone curtsies and steps out. Someone,walks to someone and ties the laces of her corset.,hikes past an alleyway to an area with scaffolding covering its grand door.,holds up his own.,beams with excitement.,gives him a flask.,gold1-orig,pos,unl,unl,pos,pos,Someone curtsies and steps out.,Someone\nlsmdc1010_TITANIC-77283,3124,\"Someone lays her hand on dark haired someone's shoulder and sinks against her chair. Later in someone's room, someone\",laces up the back of someone's corset.,unplugs two different young features.,whisks a robotic to protect himself.,sees someone.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone lays her hand on dark haired someone's shoulder and sinks against her chair.,\"Later in someone's room, someone\"\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12002,He twirls his right hand as if spinning a lasso. Someone,watches his son dance for the girls.,catches someone's arm while then turns to a stop.,hits the stone and hits the ground.,takes the sphere and exits and makes it down the alley.,\"climbs into the water, grabs his balance then goes inside.\",gold0-orig,pos,unl,unl,unl,unl,He twirls his right hand as if spinning a lasso.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12005,He lowers the magazine and takes out a subscription insert. Someone,enters in plain clothes.,turns back his concertina to the producer then reaches out for the seat.,\"brings someone's back up to his armpit, then stares at it.\",fixes her with heartbroken gaze.,,gold1-orig,pos,unl,unl,unl,n/a,He lowers the magazine and takes out a subscription insert.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12001,He climbs on the table and dances for the girls who stand circled around him. He,twirls his right hand as if spinning a lasso.,passes on the couch next to a red parked car.,\"is shown a couple of small bulls, then women begin fighting in a hotel.\",holds her against the far wall as he tries to help someone and the audience.,,gold1-orig,pos,unl,unl,unl,n/a,He climbs on the table and dances for the girls who stand circled around him.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11998,\"Someone wraps a scarf around his neck, then dances the Charleston on the low, round table. Someone\",grooves along from his chair.,sees an adolescent monster.,appears through the tv.,\"stands in front of the camera to dance regular, wish someone's former smile.\",peaks at the side in the dirt.,gold1-orig,pos,unl,unl,unl,pos,\"Someone wraps a scarf around his neck, then dances the Charleston on the low, round table.\",Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11997,He watches a girl dance in a skimpy nightie and gives her two thumbs up. Someone,\"wraps a scarf around his neck, then dances the charleston on the low, round table.\",\"waits, and undoes the belt on her dress arm.\",\"slips out her windshield, as she makes her way down into her pink baseball convertible.\",looks confused and hurries to the class.,shakes his head and leans against the canvas with the furrowed brow.,gold0-orig,pos,unl,unl,unl,unl,He watches a girl dance in a skimpy nightie and gives her two thumbs up.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11994,\"Back in the common room, girls hurry in with armfuls of clothing. Someone\",sits on a reclining chair with a look of amazement as they try on outfits.,looks at the screen.,remains on the bed.,soars through his disguise.,stares down at them.,gold0-orig,pos,unl,unl,unl,pos,\"Back in the common room, girls hurry in with armfuls of clothing.\",Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11996,Someone puts a hat on his head. He,watches a girl dance in a skimpy nightie and gives her two thumbs up.,jumps on his bed and starts kicking his stomach.,walks towards the plant where he spies groom the dogs.,\"picks up the ax, avoiding his gaze.\",slides the book out and he shuts it.,gold1-orig,pos,unl,unl,unl,pos,Someone puts a hat on his head.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12004,\"Now, someone reads Cosmopolitan. He\",lowers the magazine and takes out a subscription insert.,\"rips his coat away, then slides open a window to reveal the street of the skyscraper.\",glances up at the russian statue.,pulls her from the limo and rides her in his car.,gently strokes her friend's face.,gold0-orig,pos,unl,unl,unl,unl,\"Now, someone reads Cosmopolitan.\",He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,11999,Someone grooves along from his chair. Someone and someone,grab his arms and urge him to his feet.,are still in shock from smiling off as they go in.,walk up and down the aisle past an apartment building littered with books.,take care in the passenger's shop.,raise his head a few inches.,gold1-reannot,pos,unl,unl,unl,pos,Someone grooves along from his chair.,Someone and someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-232,12000,Someone and someone grab his arms and urge him to his feet. He,climbs on the table and dances for the girls who stand circled around him.,sweeps up the hands of the upturned women and his children.,grabs his cane and flies into the sky.,whips position and rides backwards.,does a big double take as she looks around.,gold1-reannot,pos,unl,unl,unl,unl,Someone and someone grab his arms and urge him to his feet.,He\nanetv_t1urvYx1X_w,12674,A man is seen walking out of a building and begins wiping off his car with a briefcase. He,continues to struggle to wipe off the snow and ends with him looking at the wrong car.,sets up a large blue bucket and puts his coat to the camera after taking her place.,continues running along the sidewalk while a camera pans all around the car from side to side.,pauses to speak to the camera and smiles to himself while taking out his shoes.,,gold0-orig,pos,unl,pos,pos,n/a,A man is seen walking out of a building and begins wiping off his car with a briefcase.,He\nanetv_t1urvYx1X_w,7461,Some cars are covered in snow in a parking lot. A man,is seen using his briefcase to scrape away the snow.,is drinking ice and a water bottle.,is also riding the bike while the car explains.,jumps to a wheel high then flips after the tractor.,holds a wheel on a street and race.,gold0-orig,pos,unl,unl,unl,unl,Some cars are covered in snow in a parking lot.,A man\nanetv_t1urvYx1X_w,7462,A man is seen using his briefcase to scrape away the snow. He,attempts to use his hands as well.,sets the white on the driveway in front of his car.,\"continues chain tunnels and we, scraping and off the roof.\",\"continues soaping down the orange, then puts it down inside the daimler.\",clicks by show dust from it an cloud that puts left for 30 minutes.,gold0-orig,pos,unl,unl,unl,unl,A man is seen using his briefcase to scrape away the snow.,He\nanetv_movzxpiGX8k,4779,She then begins brushing her hair while looking into the camera. The woman,continues brushing her hair while looking off into the distance.,continues speaking to the camera and looks back to the camera.,continues to smile at the ends as the picture fades to an cringing to cut at the screen.,continues to brush her hair with her and hair and brush along the floor.,continues brushing her hair and ends by drying her hair and speaking.,gold0-orig,pos,unl,unl,unl,unl,She then begins brushing her hair while looking into the camera.,The woman\nanetv_movzxpiGX8k,4778,A young woman is seen looking into the camera with her hair laid out. She then,begins brushing her hair while looking into the camera.,begins cutting the woman's hair with an electric razor.,bends down into her lap and begins working her legs up.,brushes a side of her hair and sprays various lotion on them.,,gold0-orig,pos,unl,unl,pos,n/a,A young woman is seen looking into the camera with her hair laid out.,She then\nanetv_movzxpiGX8k,3425,A woman is sitting down in a chair. He,starts brushing her hair with a blue brush.,begins playing the drums continuously.,is walking next to a dog in a kitchen.,is using a hose to rake them.,spins around and moves her hips.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting down in a chair.,He\nanetv_movzxpiGX8k,3426,He starts brushing her hair with a blue brush. She,touches her hair while she brushes it.,stops brushing and looks at him.,uses the razor to brush her hair.,uses her hands to spread the braid together.,,gold1-reannot,unl,unl,unl,unl,n/a,He starts brushing her hair with a blue brush.,She\nanetv_VEihQG2UWKE,1058,A woman is holding a purple umbrella. People,are walking around in a park.,\"are standing around the table, talking.\",are trimmed by a woman as she talks.,are standing there waiting for them.,are standing behind the trees watching them.,gold1-orig,pos,unl,unl,unl,pos,A woman is holding a purple umbrella.,People\nanetv_VEihQG2UWKE,1056,People are flying kites on grass. The kites,are shown in the sky.,are floating on a beach.,fly into a ball hitting a ball.,gather in the middle of the lines.,looked down in the black and large field.,gold0-orig,pos,unl,unl,unl,unl,People are flying kites on grass.,The kites\nanetv_Zc8zn0sKfwo,1392,A man is seen standing behind a counter and showing off various ingredients. He then,begins mixing the ingredients together in a pan and frying them up.,grabs a cartridge and presents it to the camera attached to a machine.,begins mixing the noodles together in a bowl.,mixes various ingredients in a tube and begins mixing them all together.,mixes ingredients around in the pan.,gold0-orig,pos,unl,pos,pos,pos,A man is seen standing behind a counter and showing off various ingredients.,He then\nanetv_Zc8zn0sKfwo,1393,He then begins mixing the ingredients together in a pan and frying them up. Finally he,puts it in a pan and takes it out to present to the camera.,continues working out and making a small sandwich on a drink pan.,puts food onto his plate and prepares them over in a big set of hot eggs and then finally into them having toast.,\"adds the noodles to the pan, fades to a fry - fry, and speaks in on to a pot.\",pours all omelettes into the glass with the vegetables both on a plate.,gold0-orig,pos,unl,unl,unl,unl,He then begins mixing the ingredients together in a pan and frying them up.,Finally he\nanetv_Zc8zn0sKfwo,10266,He shows a macaroni and cheese bake. He then,shows the step by step instructions for how to make the bake.,shows off more gloves.,\"applies to dish near the sink, then a man in the bathroom tub scrubs with a razor.\",\"rolls in a bowl, the.\",performs several different moves before pretending to stand while an audience watches.,gold0-reannot,pos,unl,unl,unl,unl,He shows a macaroni and cheese bake.,He then\nanetv_q2VG0zzPJMw,5239,There's another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table. He,is welding the metal piece with precision in a horizontal manner.,shows the aluminum moose using the metal of the letters on the wall.,wrenches the wheel from the tire frame and begins clipping the top of it as he works his new tool below the tire.,begins by rubbing a back wheel into the knife as another man captures it.,move in a circle.,gold0-orig,pos,unl,unl,unl,pos,There's another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table.,He\nanetv_q2VG0zzPJMw,5240,He is welding the metal piece with precision in a horizontal manner. There,'s a welding machine showing how it works on melting metal at high temperature.,detail to how he conducts the tattoo.,cold blood the size of his phone in a tasteful bedroom.,unfolds muscles to get a better position.,dodges an intro in different croquet.,gold1-orig,pos,unl,unl,unl,unl,He is welding the metal piece with precision in a horizontal manner.,There\nanetv_q2VG0zzPJMw,5238,\"There's a welder in a blue shirt wearing a yellow protective helmet, welding a large metal pipe in a workshop. There\",'s another welder wearing a blue protective suit and white helmet welding a metal piece on a workshop table.,\", he turns on the light welding and puts his arms around the floor while a boy stands under front of the flames.\",has wax metal on a metal crate and a knife repeatedly space.,see one of the other men in the backyard going down snow.,,gold0-orig,pos,unl,unl,unl,n/a,\"There's a welder in a blue shirt wearing a yellow protective helmet, welding a large metal pipe in a workshop.\",There\nanetv_6b8h8ztnj9Q,14930,A large group of people are seen sitting on exercise equipment in a room. The people,grab the machine and row themselves back and fourth on the machine.,continue spinning and moving on the floor as well as in a gym surrounded by others.,continue to exercise and move exercise bikes from one another.,then begin performing a machine and moving around.,,gold1-orig,pos,unl,unl,unl,n/a,A large group of people are seen sitting on exercise equipment in a room.,The people\nanetv_6b8h8ztnj9Q,16535,A group of people are inside a gym together. They,are working out on rowing machines.,are sitting on library stools.,walk back and forth hitting the ball.,are throwing balls into a net against a wall.,are involved in a game of curling.,gold1-orig,pos,unl,pos,pos,pos,A group of people are inside a gym together.,They\nanetv_6b8h8ztnj9Q,14931,The people grab the machine and row themselves back and fourth on the machine. The,continue to ride around while the camera follows them and ends with them standing up.,people in the places are shown moving solo around and hitting them.,move up to scissors then ball back and forth while moving their hands up and back down.,the people give on while one person speaks and the camera captures them and the men walk out one another.,man plays with the man in the room and ends with the men laughing.,gold1-reannot,unl,unl,unl,unl,unl,The people grab the machine and row themselves back and fourth on the machine.,The\nanetv_6b8h8ztnj9Q,16536,They are working out on rowing machines. They,pull on the ropes and slide up and down the machines.,carry their water into the water.,do an exercise in the exercise.,fall apart and attack the stage while a group of players approach.,are playing racquetball on a ceiling together.,gold0-reannot,pos,unl,unl,unl,unl,They are working out on rowing machines.,They\nanetv_EZZMYzY6Pug,9948,\"Then he smears the wax and coats on a surface. After the wax cools and solidifies, he\",scrapes it off the surface.,shows the proper dot.,adds the wax to the top and dips the red goo into the tree.,paints the surface with a grey brush and he is demonstrating how to wipe the wax off on the canvas.,shows his finished board.,gold0-orig,pos,unl,unl,pos,pos,Then he smears the wax and coats on a surface.,\"After the wax cools and solidifies, he\"\nanetv_EZZMYzY6Pug,9947,He melts a piece of wax against the heated surface of the iron. Then he,smears the wax and coats on a surface.,uses his face on a thick layer of wax.,pours the smaller glass on the glass.,puts the spread evenly horizontally to the center.,,gold0-orig,pos,unl,unl,pos,n/a,He melts a piece of wax against the heated surface of the iron.,Then he\nanetv_EZZMYzY6Pug,9946,There's a man demonstrating how to melt wax and coat surfaces with wax using an iron. He,melts a piece of wax against the heated surface of the iron.,begins to weld a piece of ironing from it with a clean gray cloth.,applies the red competition in front of a folded black object.,is out of place and attached without demonstrating proper technique and stops ironing some of the rubber.,shifts his tire to protect the area.,gold0-reannot,pos,unl,unl,unl,unl,There's a man demonstrating how to melt wax and coat surfaces with wax using an iron.,He\nanetv_-rKS00dzFxQ,6520,The man grabs some pepper and throws it onto the potatoes. The man,adds some more milk.,sticks a white hot potato all over the pump.,\"runs his tail through the debris, scrapes it on the dirt and topples it over a wall.\",throws the object while the other brushes the horse.,grabs each peel from the bread pan.,gold1-orig,pos,unl,unl,unl,pos,The man grabs some pepper and throws it onto the potatoes.,The man\nanetv_-rKS00dzFxQ,6512,The woman throws the butter into a saucepan. The man speaks to her briefly and the woman,proceeds to pour some milk into the saucepan.,rinses her mouth and shrugs.,holds up the sandwich.,gets into the pot.,sharpens the spoon's teeth.,gold0-orig,pos,unl,unl,unl,unl,The woman throws the butter into a saucepan.,The man speaks to her briefly and the woman\nanetv_-rKS00dzFxQ,6516,The man throws in a pinch of salt onto the potatoes. The man,resumes mashing the potatoes.,attempts to rake the leaves with his towel and uses a towel and tray to scrape off the product.,tastes the pot of the sauce.,then turns the dog all over his legs and then around to another person as the person instructs him to cook.,positions the knife backwards and sliced.,gold0-orig,pos,unl,unl,unl,unl,The man throws in a pinch of salt onto the potatoes.,The man\nanetv_-rKS00dzFxQ,6521,The man adds some more milk. The man,returns to mashing the potatoes and stirring them as they have thoroughly become soft.,prepares parts of the board and puts it on a plate.,stops welding and pats his arms.,climbs in and adds up the salad for the toppings.,does the same with the two spatula puzzles.,gold0-orig,pos,unl,unl,unl,unl,The man adds some more milk.,The man\nanetv_-rKS00dzFxQ,6513,The man speaks to her briefly and the woman proceeds to pour some milk into the saucepan. The man,places the yellow pot and the saucepan on the stove.,readies the pasta to make it in the end.,holds and takes the peel out of a pot.,pours the juice into the glass and pours it into round cup.,,gold1-orig,pos,unl,unl,unl,n/a,The man speaks to her briefly and the woman proceeds to pour some milk into the saucepan.,The man\nanetv_-rKS00dzFxQ,6507,The man peels and cuts potatoes before throwing them into a yellow pot. The man,throws in three handfuls of salt into the yellow pot.,mixes up the wet plate in a fire.,continues installing the cookie counter.,talks to the camera as the man throws the bologna grand recipe.,,gold0-orig,pos,unl,unl,unl,n/a,The man peels and cuts potatoes before throwing them into a yellow pot.,The man\nanetv_-rKS00dzFxQ,6511,The woman joins the man at the table and she cuts butter in half. The woman,throws the butter into a saucepan.,\"dabs her mouth with a napkin, then pours the frosting on a silver dish.\",puts the plates onto the cake.,seats the couch to inspect.,talks to the camera.,gold0-orig,pos,unl,unl,unl,pos,The woman joins the man at the table and she cuts butter in half.,The woman\nanetv_-rKS00dzFxQ,6506,A recipe of mashed potatoes sits on the table. The man,peels and cuts potatoes before throwing them into a yellow pot.,\"chopped vegetables, oil and mayonnaise.\",grooms food with a roll of the meat.,puts a stick inside the dough.,adds jelly on a plate filled with fruit and vegetable.,gold0-orig,pos,unl,unl,unl,unl,A recipe of mashed potatoes sits on the table.,The man\nanetv_-rKS00dzFxQ,6514,The man places the yellow pot and the saucepan on the stove. The man,grabs the pot's lid and covers the pot.,mixes something in the pot and brings the pasta to its boil.,adds pasta to the skillet and adds the cilantro into a clear pot.,begins cooking a sauce mixture with paste.,,gold0-orig,pos,pos,pos,pos,n/a,The man places the yellow pot and the saucepan on the stove.,The man\nanetv_-rKS00dzFxQ,6518,The man pours in the milk from the saucepan into the pot. The man,mashes the potatoes some more.,stirs the lemon and then juices into it to clear it.,begins making the drink in the glass bowl.,put the 4 and throw it in a basket.,laughs and sits ups with his feet beside butter.,gold0-orig,pos,unl,unl,unl,unl,The man pours in the milk from the saucepan into the pot.,The man\nanetv_-rKS00dzFxQ,6509,\"The man cuts up some garlic. Into the pot, the man\",throws the garlic along with two leaves.,places a egg on the island.,heats the sauce in the skillet with a cooking pot.,pours milk in the pan and adds the salt and peppers to the pot.,,gold0-orig,pos,unl,pos,pos,n/a,The man cuts up some garlic.,\"Into the pot, the man\"\nanetv_-rKS00dzFxQ,6508,The man throws in three handfuls of salt into the yellow pot. The man,cuts up some garlic.,\"walks away through the empties, knocking over a cop.\",adds a squeeze and put salt inside.,puts the mouthwash from his mouth.,rubs his hands together acrylic the liquid.,gold0-orig,pos,unl,unl,unl,unl,The man throws in three handfuls of salt into the yellow pot.,The man\nanetv_-rKS00dzFxQ,6522,The man returns to mashing the potatoes and stirring them as they have thoroughly become soft. The man,pauses for a second to throw in some water and resumes to stirring the potatoes.,takes off the paper and puts the products into his mouth then goes through different files.,is making them clean - weakly.,pours the pasta from the meet and starts to stir it up.,looks to the limes then adds a bowl of spaghetti and puts it in a strainer.,gold0-orig,pos,unl,unl,unl,unl,The man returns to mashing the potatoes and stirring them as they have thoroughly become soft.,The man\nanetv_-rKS00dzFxQ,6519,The man mashes the potatoes some more. The man,grabs some pepper and throws it onto the potatoes.,swaps a peeler on the cup then puts it back to the old man.,finishes chopping them and adds a detail to the customer.,picks up a spoon and pulls up the flame.,,gold0-orig,pos,unl,unl,unl,n/a,The man mashes the potatoes some more.,The man\nanetv_-rKS00dzFxQ,6510,\"Into the pot, the man throws the garlic along with two leaves. The woman joins the man at the table and she\",cuts butter in half.,decides to look to the dog for help.,pours them into the pot.,grabs several drinks making a alcoholic drink.,,gold1-orig,pos,unl,pos,pos,n/a,\"Into the pot, the man throws the garlic along with two leaves.\",The woman joins the man at the table and she\nanetv_-rKS00dzFxQ,6523,The man pauses for a second to throw in some water and resumes to stirring the potatoes. The finished mashed potatoes dish,is left on a counter.,is shown adding more time that it shows his mouth cooking by dipping up tooth.,is shown being close together and set as a large gymnast is outside representing the starting counter.,is being mowed on the plate.,respond with utensils at a style.,gold0-reannot,pos,unl,unl,unl,unl,The man pauses for a second to throw in some water and resumes to stirring the potatoes.,The finished mashed potatoes dish\nlsmdc1045_An_education-90300,14194,She turns on her heel and walks indoors. Someone,goes to the driver's door and gets in the car.,answers her cell phone.,emerges inside a sponge salon into a newspaper store.,emerges from the bathroom with her towel draped across her face.,\"stands looking over at someone, as if someone is behind him before he does so.\",gold0-orig,pos,unl,unl,unl,pos,She turns on her heel and walks indoors.,Someone\nlsmdc1045_An_education-90300,14195,Someone goes to the driver's door and gets in the car. Indoors someone,stands for lonely in the hallway.,runs up the ramp and walks up to the curb.,makes his way through the weary car's street.,gets out of a car and sprints down a road.,puts her briefcase in a briefcase and turns to someone.,gold1-reannot,pos,unl,unl,unl,unl,Someone goes to the driver's door and gets in the car.,Indoors someone\nlsmdc1045_An_education-90300,14197,Someone swigs from the bottle then drops it on the passenger seat. He,stares mournfully into the distance.,looks out into the amnesia rain.,throws someone sit down in the chair.,gives him a gentle look and she gazes at him lovingly.,\"finishes his beer, takes it and hands it to someone.\",gold0-reannot,pos,unl,unl,unl,unl,Someone swigs from the bottle then drops it on the passenger seat.,He\nanetv_8Yfm6gbKRho,854,Cricket players are pitched balls during a game in a large stadium. The cricket player,hits a high pop fly that is caught.,is trying to help break the game.,goes down on the ball.,is pointed at the net in white.,is hit and go all round the field.,gold0-orig,pos,unl,unl,unl,pos,Cricket players are pitched balls during a game in a large stadium.,The cricket player\nanetv_8Yfm6gbKRho,853,A man runs onto the field of a sporting game. Cricket players,are pitched balls during a game in a large stadium.,are on a field watching the event during a festival.,run across the field and take an encouraging kick after they fell.,are on an ice court watching the game.,take photographs of their net on the beach and young players are playing dodgeball.,gold0-reannot,pos,unl,unl,unl,unl,A man runs onto the field of a sporting game.,Cricket players\nanetv_8Yfm6gbKRho,855,The cricket players pose for photos. The players all,line up for a race on the adjacent track.,begin to shoot in the gryffindor field.,continue on their opponent.,place their tennis sticks.,,gold0-reannot,pos,unl,unl,unl,n/a,The cricket players pose for photos.,The players all\nlsmdc3073_THE_GUILT_TRIP-34842,14704,\"Someone regards her son, then fetches her handbag from the hallway. Someone\",watches her leave the room.,and mother share a nearby glance at their son.,smiles at someone as she writhes into the kitchen.,dons his jacket on the darkened floor and climbs a mask.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone regards her son, then fetches her handbag from the hallway.\",Someone\nlsmdc3073_THE_GUILT_TRIP-34842,14706,He picks up his briefcase and follows the man through the partition doors. A woman,tries to apply makeup to someone.,walks inside on a metal weight bench.,rides up beside someone as he watches the estate.,\"walks in holding two strikes, then halts.\",,gold0-orig,pos,unl,unl,unl,n/a,He picks up his briefcase and follows the man through the partition doors.,A woman\nlsmdc3073_THE_GUILT_TRIP-34842,14705,\"Someone watches her leave the room. Later, someone\",waits in the hotel's convention hall.,sets her makeshift mug onto a stove.,steps out reading someone's slip.,leads her back onto the beach.,\"sits with someone, where her son and her sister go by.\",gold1-reannot,pos,unl,unl,pos,pos,Someone watches her leave the room.,\"Later, someone\"\nanetv_0p34rFNYj_M,8729,\"An adult female and a young female is in the beach, the adult female is dumping the sand from the pail to the ground. The woman in polka dots\",is sitting on the ground and showing her pants.,is singing over as she came.,play with a brown weight.,is showing her logo.,,gold0-orig,pos,unl,unl,pos,n/a,\"An adult female and a young female is in the beach, the adult female is dumping the sand from the pail to the ground.\",The woman in polka dots\nanetv_0p34rFNYj_M,8730,The woman in polka dots is sitting on the ground and showing her pants. The young girl,is pointing on to something and waving at the camera.,walks through the set of uneven bars and jumps over a jump bar.,started to shave her leg using a razor.,uses her foot to apply brushing her bottom nails.,\"wears patterned clothes, followed with ballet attire and a flannel shirt.\",gold1-orig,pos,unl,unl,unl,unl,The woman in polka dots is sitting on the ground and showing her pants.,The young girl\nlsmdc0022_Reservoir_Dogs-59213,4496,Someone holds the ear up to the cop to see. We,follow someone as he walks out of the warehouse.,exit at the end.,\"see the image rehearsing a design on the monitor, a blurry sphere.\",see in the back of the plane as the boy drives down a lane.,,gold0-orig,pos,unl,unl,unl,n/a,Someone holds the ear up to the cop to see.,We\nlsmdc0022_Reservoir_Dogs-59213,4497,We follow someone as he walks out of the warehouse. He,\"opens the trunk, pulls out a large can of gasoline.\",gets off his raft and travel by the bus.,puts his letters on the roof.,glares at her.,,gold0-orig,pos,unl,unl,unl,n/a,We follow someone as he walks out of the warehouse.,He\nlsmdc0022_Reservoir_Dogs-59213,4498,\"He opens the trunk, pulls out a large can of gasoline. He\",walks back inside the warehouse carrying the can of gas.,holds up the robot's cap again and lets it go.,drives a silver worried tractor out of the garage onto the street.,takes down pamphlets and barrels through the commercial door.,is not trapped under the wooded canopy.,gold0-orig,pos,unl,unl,unl,pos,\"He opens the trunk, pulls out a large can of gasoline.\",He\nanetv_WlFBWlCklm8,5610,\"When the man is done demonstrating what he can do on the stilts he stops in his original spot to talk some more, waves and then runs off. The outro appears and it\",'s exactly like the intro.,'s onto the second words: dump.,bears a website for art.,is quickly moving talking about what to say.,begins watching the pattern.,gold0-reannot,pos,unl,unl,unl,unl,\"When the man is done demonstrating what he can do on the stilts he stops in his original spot to talk some more, waves and then runs off.\",The outro appears and it\nanetv_WlFBWlCklm8,5609,\"A man named prvni kroky is on metal stilts outside and he begins, walking, jumping, running and moving and doing various movements while on his stilts and people around him are either sitting or walking doing their own thing. When the man is done demonstrating what he can do on the stilts he\",\"stops in his original spot to talk some more, waves and then runs off.\",\"zips straight up and taps it several times, does it all the time and seems like he is doing it.\",begins up towards an empty sidewalk and trying to break it down.,gives the guy a thumbs up and begins tending by his gills.,\"gets down and does a stunts on a bench, and gets in kicks out the pants cup and attempts the kick surfing.\",gold0-reannot,pos,unl,unl,unl,unl,\"A man named prvni kroky is on metal stilts outside and he begins, walking, jumping, running and moving and doing various movements while on his stilts and people around him are either sitting or walking doing their own thing.\",When the man is done demonstrating what he can do on the stilts he\nanetv_A4L4ObzZ5VE,275,All the riders go over a jump and land smoothly. All the riders then,go around a sharp turn.,run backwards forward and work and run off to the bar.,get ready to go indoors and start the race.,go along the stone ramp as following in their efforts.,,gold0-orig,pos,unl,unl,unl,n/a,All the riders go over a jump and land smoothly.,All the riders then\nanetv_A4L4ObzZ5VE,274,A bunch of dirt bikes are going around a dirt track racing. All the riders,go over a jump and land smoothly.,are driving the tractor.,ride all bikes down the hill.,start a race race through a dirt track.,didn't stop the chase.,gold0-orig,pos,unl,unl,unl,unl,A bunch of dirt bikes are going around a dirt track racing.,All the riders\nanetv_A4L4ObzZ5VE,276,All the riders then go around a sharp turn. Two riders at the back of the pack,wiped out while turning.,are walking alongside very rifles.,\"does the same jump thing, doing several tricks, cartwheels, and stunts.\",are working inside their bikes.,,gold0-orig,pos,unl,unl,pos,n/a,All the riders then go around a sharp turn.,Two riders at the back of the pack\nanetv_A4L4ObzZ5VE,380,People are riding motor bikes around a dirt race track. Two bike riders,fall off their motor bikes.,are racing across the dirt track and onto the beach.,are shown chasing stuck in the tracks.,are driving on a road.,,gold0-orig,pos,unl,unl,pos,n/a,People are riding motor bikes around a dirt race track.,Two bike riders\nanetv_A4L4ObzZ5VE,381,Two bike riders fall off their motor bikes. A person,drops the rope and heads toward the fallen bike riders.,reaches into the car and talk about grabs a phone.,is riding like bmx bike in the gym.,is behind it and jumps in tow.,,gold0-reannot,pos,unl,pos,pos,n/a,Two bike riders fall off their motor bikes.,A person\nlsmdc3009_BATTLE_LOS_ANGELES-268,16115,\"She gives someone a nod. On the roof, someone and someone\",watch through their scopes as someone and someone climb on to the bus.,climb out of a train station.,climb in the ship's deck.,go into a private room where a brunette woman topples the rear seat.,sit on the far side of the plaza and peer over a flagpole.,gold0-orig,pos,unl,unl,unl,unl,She gives someone a nod.,\"On the roof, someone and someone\"\nlsmdc3009_BATTLE_LOS_ANGELES-268,16116,\"On the roof, someone and someone watch through their scopes as someone and someone climb on to the bus. Someone\",reaches under the dash.,places his hand over it.,\"smiles at the memory, frowning.\",\"shakes his head, then saunters toward the carriages.\",switches on the light and crosses a few steps.,gold1-orig,pos,unl,unl,unl,pos,\"On the roof, someone and someone watch through their scopes as someone and someone climb on to the bus.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-268,16112,Someone pokes the alien with his gun. Someone,\"shoots it, causing liquid to spurt out.\",punches the monk's neck.,stares at the laptop game.,stares up.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pokes the alien with his gun.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-268,16111,\"Examining the body, someone notes a mechanical piece, seemingly soldered to bone. Someone\",pokes the alien with his gun.,uses a foot to scoop himself out of the box.,joins his someone in an armchair.,stands expectantly under a low wall.,,gold0-orig,pos,unl,unl,unl,n/a,\"Examining the body, someone notes a mechanical piece, seemingly soldered to bone.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-268,16113,\"Someone shoots it, causing liquid to spurt out. They\",drag the alien inside.,fly under the tree.,see a huge chested thug with a spear.,won't fit.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone shoots it, causing liquid to spurt out.\",They\nlsmdc3009_BATTLE_LOS_ANGELES-268,16114,They drag the body to the back of the station. She,gives someone a nod.,\"runs, including the unconscious woman.\",is l - box - first - - so he won't fit.,spins as underwear follows right to left.,looks through another window.,gold0-orig,pos,unl,unl,unl,pos,They drag the body to the back of the station.,She\nlsmdc3009_BATTLE_LOS_ANGELES-268,16117,\"Someone reaches under the dash. In the station, someone\",slices open the alien's chest.,is up and rolling his pants.,pushes himself into a compartment.,dives into his water.,casts a fireball along the coffee table.,gold1-reannot,pos,unl,unl,unl,unl,Someone reaches under the dash.,\"In the station, someone\"\nanetv_ufK2mbJI0to,12235,A large group of people are seen running around a soccer field playing a game of soccer. The kids,continue to kick the ball around one another while others watch on the side.,continue to throw balls across a table while others stand in the background.,walk onto a web on the area while the camera follows closely behind them.,hit around and talk to one another as others watch on the side.,continue to play around one another and end by bumping one another in particular.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen running around a soccer field playing a game of soccer.,The kids\nanetv_ufK2mbJI0to,12236,The kids continue to kick the ball around one another while others watch on the side. More shots,are shown of the game as well as people playing with one another.,are shown of one riding around on a trampoline and lead into shots out the side of the lawn.,are shown of people speaking to the camera and ends with everyone browsing at the camera.,are shown of the men running and showing off several teammates watching them.,are then shown of the person running and throwing the ball several times as well as the high scores.,gold0-reannot,pos,unl,unl,unl,pos,The kids continue to kick the ball around one another while others watch on the side.,More shots\nanetv_XWG_-4VMTcA,11606,\"A wrestler, standing at the top of a ladder, with another man on the ladder with him, but in front of him, jumps off the ladder from the top and takes the other person with him. A man in a wrestling costumer\",stands at the top of a ladder in the middle of a ring with a referee and people in the audience.,takes the running people kick a punching bag and walk up to the lift and takes the person off the ground and getting off.,chases the referee as the man in stripes picks him off and spins him around.,approaches the others on the couple to back hands.,,gold1-orig,pos,unl,unl,unl,n/a,\"A wrestler, standing at the top of a ladder, with another man on the ladder with him, but in front of him, jumps off the ladder from the top and takes the other person with him.\",A man in a wrestling costumer\nanetv_XWG_-4VMTcA,11607,A man in a wrestling costumer stands at the top of a ladder in the middle of a ring with a referee and people in the audience. The man jumps off the ladder as people in the audience clap for him and the other man,falls off as well.,prepares the ride.,runs past and raises his glass in the air.,begins to jump and go down and falls to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a wrestling costumer stands at the top of a ladder in the middle of a ring with a referee and people in the audience.,The man jumps off the ladder as people in the audience clap for him and the other man\nlsmdc0002_As_Good_As_It_Gets-46600,17292,Someone's two digital clocks are two minutes apart. He,sits in a chair still fully dressed.,knocks an old crystal fan out of control.,punches a code into the file.,lowers someone's arm then withdraws.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's two digital clocks are two minutes apart.,He\nlsmdc0002_As_Good_As_It_Gets-46600,17293,He sits in a chair still fully dressed. A beat then we,hear someone's whispered voice.,see the movement on someone's outstretched.,follow the shot of the car of someone's stately apartment.,see more soles rising.,see the inscription of that book.,gold0-orig,pos,unl,unl,unl,unl,He sits in a chair still fully dressed.,A beat then we\nlsmdc0002_As_Good_As_It_Gets-46600,17294,\"A beat then we hear someone's whispered voice. As someone unpacks, she\",gives gifts to her mother and someone.,\"is not recognizable, rubbing her face with her fingertips.\",scrutinizes the topic of her stuffed hitch.,ignores the pasta and sails more component.,strokes his typewriter carefully.,gold0-reannot,pos,unl,unl,unl,unl,A beat then we hear someone's whispered voice.,\"As someone unpacks, she\"\nanetv_DpoIgaZ1m_U,9097,The instructor does a sliding kick on the student. The instructor,catches the kicks of the student.,runs out and grabs a baton.,uses a wrist and a hand stand.,demonstrates how to properly be a hop kick to kick the ball back from the rope.,is facing masters by alternating the routine.,gold0-orig,pos,unl,unl,pos,pos,The instructor does a sliding kick on the student.,The instructor\nanetv_DpoIgaZ1m_U,9096,The instructor trips the student after catching the punches. The instructor,does a sliding kick on the student.,knocks down the instructor's leg again.,stops them as he raises the score flag.,gets the basket irritated by the instructor.,\"walks out and talks backwards in a directions, single jumping.\",gold0-orig,pos,unl,unl,unl,unl,The instructor trips the student after catching the punches.,The instructor\nanetv_DpoIgaZ1m_U,9095,Two men spar in a karate practice match inside a gym studio. The instructor,trips the student after catching the punches.,returns to a room demonstrating the fencing skills.,\"goes to be kneeling on the bottom of the mat and stops and begins to make kicks, after they break kick.\",demonstrates the exercise in a fencing ironing class.,dances with his hands of hair and then starts spinning in circles.,gold0-orig,unl,unl,unl,unl,unl,Two men spar in a karate practice match inside a gym studio.,The instructor\nlsmdc3002_30_MINUTES_OR_LESS-869,17682,She heads for the vault. Someone,opens a barred gate and enters the vault.,puts on her necklace and collects his belongings.,\"hesitates, someone looks back at her.\",peeks through another corridor.,,gold0-orig,pos,unl,pos,pos,n/a,She heads for the vault.,Someone\nlsmdc3002_30_MINUTES_OR_LESS-869,17684,She fills the sack with cash. Someone,\"gives two sacks to someone, who tosses one to someone.\",strains at her knees and looks at someone.,climbs over the car beside her.,grins and calls back.,,gold0-orig,pos,unl,unl,pos,n/a,She fills the sack with cash.,Someone\nlsmdc3002_30_MINUTES_OR_LESS-869,17683,Someone opens a barred gate and enters the vault. She,fills the sack with cash.,stops as someone grips the straps of a shotgun as he plummets down onto the floor and leaps onto the canvas.,\"gets out, grabs one piece of wood in a corner and picks a man up from the floor to his desk.\",towers over the landing on a third balcony.,,gold0-orig,pos,unl,unl,pos,n/a,Someone opens a barred gate and enters the vault.,She\nanetv_-pLiSHAz4fo,11282,A man talking about how to work out in a certain position. He,explains it and shows in detail how it should be done.,lay it on the ground beside him and put the left lens onto the man's face.,struggle on how slower he can use.,is learning how to make a sandwich.,shows the product required to create the mark with a new board.,gold0-orig,pos,unl,unl,unl,unl,A man talking about how to work out in a certain position.,He\nanetv_-pLiSHAz4fo,11283,He explains it and shows in detail how it should be done. Then he,grabs the bar and demonstrates like that also.,puts a wire on it with large bumps.,\"seasons them with ice, paper.\",takes a turn and begins a material and begins to explain the starting button.,,gold0-orig,pos,unl,unl,unl,n/a,He explains it and shows in detail how it should be done.,Then he\nanetv_-pLiSHAz4fo,11284,Then he grabs the bar and demonstrates like that also. He,begins to do it in repetition a few times before finishing up.,resumes his drink such as a presenting and demonstrates the various variations in the ice.,\"gives the little way a mouthful, then begins to turn so that he can enjoy it.\",then makes the steps over the dish and walks back and forth on the hopscotch.,takes a long way back at time to join the first batter.,gold0-reannot,pos,unl,unl,unl,unl,Then he grabs the bar and demonstrates like that also.,He\nlsmdc0016_O_Brother_Where_Art_Thou-55656,46,\"Someone O'Daniel stands by someone's chair with an arm draped over his shoulder, leaning in to murmur confidentially. Someone\",\"sits stiffly erect as he listens, frowning at a spot in space.\",\"has a classical record, looking anxious for someone.\",spots the asian haired man's assistant.,\"grabs the inspector's hand, holds up the thin hand, and holds out the hatchet.\",\"walks down the corridor, then pauses and watches him go down.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone O'Daniel stands by someone's chair with an arm draped over his shoulder, leaning in to murmur confidentially.\",Someone\nanetv_k1WnO7UeBJ8,9165,Two people are shown walking around with a rug over their shoulders and walk inside a building. They,open the rug then pull out measuring tape and hammer down the rug.,kick their feet together.,are working out and watching all the locations.,fall off their socks and pause at tubes and begin laying down again.,are seen walking along the frame as well as one being done with his arms and moving on.,gold0-orig,pos,unl,unl,unl,unl,Two people are shown walking around with a rug over their shoulders and walk inside a building.,They\nanetv_k1WnO7UeBJ8,9166,They open the rug then pull out measuring tape and hammer down the rug. They then,put plaster all over the floor and present the finished product of the rug by shaking hands with the owners and smiling for pictures.,\"lower the floor and mix the carpet, then use the handles of the bike.\",fold it around 10 lights sitting behind the wall.,mix it together with a white bucket.,,gold0-orig,pos,unl,unl,unl,n/a,They open the rug then pull out measuring tape and hammer down the rug.,They then\nlsmdc0011_Gandhi-52132,8394,\"A splendid peacock, its tail fanned in brilliant display, lords it on a velvet lawn. A woman in a sumptuous silk sari\",is trying to feed it crumbs.,\"braces a portly spanish man in front of someone, who floats off.\",casts a spell after it.,shows a collection of photographs on the sofa in front of them.,,gold1-orig,pos,unl,unl,unl,n/a,\"A splendid peacock, its tail fanned in brilliant display, lords it on a velvet lawn.\",A woman in a sumptuous silk sari\nlsmdc0011_Gandhi-52132,8400,\"He still has n't smiled, but people have. This\",is private - - beautiful and still.,starts running toward someone's office.,\"takes stock, and holds the gun steady.\",emerges from the plane.,,gold0-orig,pos,unl,unl,unl,n/a,\"He still has n't smiled, but people have.\",This\nlsmdc0011_Gandhi-52132,8398,\"Except for the servants, someone is the only Indian male not in European clothes. Someone\",\"is pleased, someone amused.\",cuts out his free hand.,walks attentively to a tree cage.,hugs someone's family food.,hands it back to him.,gold0-reannot,pos,unl,unl,unl,pos,\"Except for the servants, someone is the only Indian male not in European clothes.\",Someone\nlsmdc0011_Gandhi-52132,8397,\"As someone leaves, people watch him clinically. Except for the servants, someone\",is the only indian male not in european clothes.,shakes themselves both around.,dumps the food on the banquet table.,helps someone out over the book.,is in short furs.,gold0-reannot,pos,unl,unl,unl,pos,\"As someone leaves, people watch him clinically.\",\"Except for the servants, someone\"\nanetv_Vg5Vfb16Kb8,10796,The little girl then puts on purple lipstick on her lips. The little girl,continues putting on lipstick while speaking to the camera man about putting on makeup.,holds extremely long hair and quickly applies it to a black long hair.,plays with the girl using her hair while checking her nails.,\"begins brushing the dog, then finishes brushing the bangs out of her hair.\",turns the camera on and up in front of him neighborhood the horse perform.,gold0-orig,pos,unl,unl,unl,unl,The little girl then puts on purple lipstick on her lips.,The little girl\nanetv_Vg5Vfb16Kb8,10795,A little girl wearing a pink blouse sits on a bed squinting her eyes. The little girl then,puts on purple lipstick on her lips.,tries to turn soap back on.,applies the iron to her face.,spins herself around off a landing.,removes a small pink notice from her pink shoe.,gold0-reannot,pos,unl,unl,unl,pos,A little girl wearing a pink blouse sits on a bed squinting her eyes.,The little girl then\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33439,19271,\"A bearded man reads paperwork. From her seat across his desk, someone\",shoots the portly bearded man a weary look.,checks the ticket then starts toward the office.,thoughtfully faces the host with his jaw.,writes in someone's book.,wipes away a tear as someone enters.,gold0-orig,pos,unl,unl,unl,unl,A bearded man reads paperwork.,\"From her seat across his desk, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33439,19272,\"From her seat across his desk, someone shoots the portly bearded man a weary look. He\",glances haughtily at the heavily pierced woman as he reviews her file.,nods to someone and steps into the conference table.,\"gapes briefly at her before getting up and walking, walking his feet.\",keeps his eyes on someone.,,gold0-orig,pos,unl,pos,pos,n/a,\"From her seat across his desk, someone shoots the portly bearded man a weary look.\",He\nanetv_45gAK3x_0ds,18930,A young man is seen bouncing up and down on top of black slack line with it in between his crotch. More men,appear on the slack line doing tricks back and forth and landing on the slack line and performing for the crowd surrounding them.,are shown pushed around going on a square as well as other people skiing and playing in the field.,are shown hitting the board and looking at a dartboard as well as contacts in the distance.,continue to chase the other off to slower one other one falling over and walking away.,are seen running down while also getting their green shoes to perform their new tricks and eventually walks over.,gold0-orig,pos,unl,unl,unl,unl,A young man is seen bouncing up and down on top of black slack line with it in between his crotch.,More men\nanetv_45gAK3x_0ds,18372,The credits of the clip are shown. People,are standing in the rain and some with covering.,are in the bushes in the woods.,are going on the island in a competition.,begin to shoot with their palms.,are holding a ball which is covered in blood.,gold1-reannot,pos,unl,unl,unl,unl,The credits of the clip are shown.,People\nanetv_yLS0UuNYXOI,5546,A large ice glacier is shown in the water. A boat,is pulling a person on skis behind the boat.,\"is kneeling down to the waters, people come into view.\",is seen by a shark on the surface of the water.,is moving a lot near the river with some sort of watching playing.,,gold0-orig,pos,unl,pos,pos,n/a,A large ice glacier is shown in the water.,A boat\nanetv_Nn-KZMYbOv4,5712,The camera pans all around the people working out and shows a man leading in front. The group,continues to ride together in different shots while following the man in front.,jumps on a set of uneven bars that leads into pictures of people fencing.,continues dancing around the room as the couples watch on the sides.,starts punching each other in the arms bumping each other with one.,continues to the bike while looking across the camera while speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The camera pans all around the people working out and shows a man leading in front.,The group\nanetv_Nn-KZMYbOv4,5711,A large group of people are seen riding exercise bikes while wearing santa hats. The camera,pans all around the people working out and shows a man leading in front.,pans around and showing the people sitting around the cars.,shows the girls speaking to the camera while followed by various jump signs and other interviews.,pans around the people as they walk past cars.,moves to the side as people continues to watch.,gold0-orig,pos,unl,unl,unl,pos,A large group of people are seen riding exercise bikes while wearing santa hats.,The camera\nanetv_Nn-KZMYbOv4,7168,They are wearing christmas outfits while riding spin bikes. The people,are taking a christmas spin class.,continue brake and hopping around the inflated boat after the girls jump along the beach.,begin to slowly slide around on their skis.,in white in similar cars are riding bicycles.,are chatting together with their women.,gold0-orig,pos,unl,unl,unl,pos,They are wearing christmas outfits while riding spin bikes.,The people\nlsmdc1043_Vantage_Point-89002,94,Someone chases after the bearded man who has holstered his gun. Someone,looks up as a gnn cameraman runs past.,emerges from behind a desk and spies someone behind someone.,comes out and edges for his entrance to his place down in a bucket.,bounces out of his hands and checks on the debris pile inside it.,\"see the entrance of the courtyard, go along the stone and follow someone's gaze.\",gold1-orig,pos,unl,unl,unl,unl,Someone chases after the bearded man who has holstered his gun.,Someone\nlsmdc1043_Vantage_Point-89002,102,Someone glances around and manually rewinds the tape control. Someone,\"looks intently at the screen, his eyes unblinking.\",crosses to the window and peers out the window.,watches someone stride past his guards.,\"staggers past someone, someone leads someone across the podium.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone glances around and manually rewinds the tape control.,Someone\nlsmdc1043_Vantage_Point-89002,91,\"Across the plaza, someone, clutching a chest wound, tries to sit up. Someone\",\"runs across to him, past the mess of twisted metal crowd control barriers.\",comes out of the hall to his study.,catches up with someone's girlfriend.,stands next to the stone with no sign of anything.,\"looks to someone, with most of them concern, turns away and walks down a hallway.\",gold1-orig,pos,unl,unl,unl,unl,\"Across the plaza, someone, clutching a chest wound, tries to sit up.\",Someone\nlsmdc1043_Vantage_Point-89002,99,Someone searches for the cell phone. Someone,watches as someone keys in numbers on his cell phone.,removes the back of his raincoat from someone's shoulders.,snatches it out and lumbers grimly to a battered clock.,sits beside someone at the counter.,tucks the cellphone in his pants as he approaches his cousin.,gold1-orig,pos,unl,unl,pos,pos,Someone searches for the cell phone.,Someone\nlsmdc1043_Vantage_Point-89002,96,Someone reads the gnn logo and leaps to his feet. He,runs to the gnn outside broadcast van and enters the gallery.,picks up the book and puts marker marker on the sheet.,\"tackles a zombie, sends someone flying the collapses over his face.\",\"springs nervously to his feet, then creeps toward a gripping giant statue.\",slows to a stop.,gold0-orig,pos,unl,unl,unl,unl,Someone reads the gnn logo and leaps to his feet.,He\nlsmdc1043_Vantage_Point-89002,97,He runs to the gnn outside broadcast van and enters the gallery. Someone,stares at the bank of monitors.,captures the video's lonely progress with residential roads and penalty shots.,eyes a sack of snapshots and the elephant beams.,\"serves someone, staring gloomily.\",,gold0-orig,pos,unl,unl,pos,n/a,He runs to the gnn outside broadcast van and enters the gallery.,Someone\nlsmdc1043_Vantage_Point-89002,95,Someone looks up as a gnn cameraman runs past. Someone,reads the gnn logo and leaps to his feet.,drags a conscious someone up a driveway then hurries toward it then concern at the chains.,grabs someone again and signals the truck.,adorns a bamboo clipboard.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks up as a gnn cameraman runs past.,Someone\nlsmdc1043_Vantage_Point-89002,86,Someone hauls himself to his knees. Someone,struggles to get to his feet.,\"swings him with another kick, but he gets him on to the table.\",takes a pack of cigarettes from his pocket.,\"looks at someone, breathless.\",,gold0-orig,pos,pos,pos,pos,n/a,Someone hauls himself to his knees.,Someone\nlsmdc1043_Vantage_Point-89002,84,They rewind the camera in vision. Both men,stare at the lcd screen.,\"run towards the latch, then gallop towards it.\",drop their weapons at hostages lying on the ground.,rush out and grab his wrists.,fight as they play.,gold0-orig,pos,unl,unl,unl,unl,They rewind the camera in vision.,Both men\nlsmdc1043_Vantage_Point-89002,93,Someone looks up to see the Spanish bearded cop with a gun. Someone,chases after the bearded man who has holstered his gun.,yells in horror at the sound of the flushing hooves of his motorcycle.,approaches the man as if he is no longer dead.,spots his father filling his chute with bait.,walks around and joins someone.,gold0-orig,pos,unl,unl,unl,unl,Someone looks up to see the Spanish bearded cop with a gun.,Someone\nlsmdc1043_Vantage_Point-89002,85,Both men stare at the lcd screen. Flames and black smoke,rise into the air.,cases on their feet.,filters from a map.,rising over the loo.,swirls slowly from all high above them.,gold0-orig,pos,unl,unl,unl,pos,Both men stare at the lcd screen.,Flames and black smoke\nlsmdc1043_Vantage_Point-89002,88,A man throws a blanket over a women whose clothes are in flames. Someone,takes in the number of people lying injured.,holds a harmonica in front of the mirror.,grabs the spinner as the movie cuts off.,replays across the screen.,shoots several guards in a forest.,gold0-orig,pos,unl,unl,unl,unl,A man throws a blanket over a women whose clothes are in flames.,Someone\nlsmdc1043_Vantage_Point-89002,98,Someone sees a still frame of him being shot. Someone,searches for the cell phone.,slowly emerges from the bed.,shoots her off in a fire.,frantically orders his bullet.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone sees a still frame of him being shot.,Someone\nlsmdc1043_Vantage_Point-89002,90,\"Someone recalls the muzzle flashes in the window. Across the plaza, someone, clutching a chest wound,\",tries to sit up.,watches solemnly as someone stomps his nose against the steaming blade.,loosens the strap of his balanced - stethoscope.,puts the silver bullet to someone's neck.,sits on a thick cable rope.,gold0-reannot,pos,unl,unl,unl,unl,Someone recalls the muzzle flashes in the window.,\"Across the plaza, someone, clutching a chest wound,\"\nlsmdc1043_Vantage_Point-89002,92,Someone stares at his fallen colleague. Someone,looks up to see the spanish bearded cop with a gun.,abruptly relaxes out of his vision.,sends someone another note.,starts for the kid's bath.,\"lies at his back, terrified.\",gold0-reannot,pos,unl,unl,unl,unl,Someone stares at his fallen colleague.,Someone\nlsmdc1043_Vantage_Point-89002,103,\"Someone looks intently at the screen, his eyes unblinking. Someone\",turns and runs out off the van.,breaks away from the opposing team to play.,notices a sign for someone and someone.,is the man who is broken from far ahead.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone looks intently at the screen, his eyes unblinking.\",Someone\nlsmdc1043_Vantage_Point-89002,89,Someone takes in the number of people lying injured. Someone,recalls the muzzle flashes in the window.,watches as someone leads her through the airport building.,are taking pictures as someone is reading her name.,kisses someone and pats him on the stomach.,pulls down the rifle and fires.,gold0-reannot,pos,pos,pos,pos,pos,Someone takes in the number of people lying injured.,Someone\nanetv_gJxR-KzawO4,4305,A little girl is shown standing in front of a sink. She,is using soap to lather up a cup.,covers her mouth and then starts to brush her teeth.,walks around and starts crying using the brush and soaping her hands.,\"flips a pad over, then removes her filter from the tub.\",is n't worried for her.,gold1-orig,pos,unl,unl,unl,unl,A little girl is shown standing in front of a sink.,She\nanetv_gJxR-KzawO4,8529,\"She is soaping a blue cup, washing it with a sponge. She then\",uses water from the faucet to rinse the cup clean.,wiped the towel on a towel and put it on the yellow sink.,pours water into an orange pot and pours the ingredients out of the pot.,completes it and flips it up into the air in front of her.,,gold0-orig,pos,unl,pos,pos,n/a,\"She is soaping a blue cup, washing it with a sponge.\",She then\nanetv_gJxR-KzawO4,4306,She is using soap to lather up a cup. She then,rinses the cup off under the faucet.,shows us how to soap the soap.,brings the soap down and washes it in front of a large bin.,dries her hands with her dark hair before applying when laid glisten with a toothbrush cream.,washes the toothbrush again.,gold0-orig,pos,unl,unl,unl,pos,She is using soap to lather up a cup.,She then\nanetv_gJxR-KzawO4,8528,A little girl is standing in front of a kitchen sink. She,\"is soaping a blue cup, washing it with a sponge.\",is pouring a sponge into a bucket and washing a white towel.,is holding a wooden bucket by rags.,washes her hands together in a sink.,is standing at a sink holding a sponge.,gold1-reannot,pos,unl,unl,pos,pos,A little girl is standing in front of a kitchen sink.,She\nlsmdc3069_THE_BOUNTY_HUNTER-5131,18015,\"As someone shoves her off, she grabs a bottle. The woman\",smashes it on someone's head.,\"runs her hands over her short, cut hair.\",dumps a pizza into a suitcase.,tosses her money to the floor and exits the elevator.,turns and stops her.,gold0-orig,pos,unl,unl,unl,pos,\"As someone shoves her off, she grabs a bottle.\",The woman\nanetv_yxZ4ouqcld4,1014,Hundreds of people are walking around an area and checking out shoes. A man,talks to a woman about what shoes she likes to wear.,runs past the yard he charges powder.,begins to put credits to the players.,walks into the room and picks up a bowling ball that is being hit by a guy.,walks in through filming race.,gold0-orig,pos,unl,unl,unl,unl,Hundreds of people are walking around an area and checking out shoes.,A man\nanetv_yxZ4ouqcld4,1015,A man talks to a woman about what shoes she likes to wear. People,are dancing and enjoying the event together.,are sitting on big shoulders.,are using hoops and fashions.,introduce the woman doing fitness routines with her arms and legs.,,gold1-orig,pos,unl,unl,pos,n/a,A man talks to a woman about what shoes she likes to wear.,People\nanetv_yxZ4ouqcld4,1019,Several people get interviewed during the race. The man who wins the race,comes across the finish line.,and places a wipe on the gate.,\"shows an unshaven man, doing the ho, in exchange two places and jumps on top of the machine.\",continues talking to the camera that is between them.,wants them to see his parents.,gold0-orig,pos,unl,unl,unl,pos,Several people get interviewed during the race.,The man who wins the race\nanetv_yxZ4ouqcld4,1017,There is food being eaten at the event by many. Several runners,are getting ready to start a race.,look up as they walk together.,are shown shows scraping their potatoes.,are at a queue in the kitchen.,come next to the glass.,gold0-reannot,pos,unl,unl,unl,unl,There is food being eaten at the event by many.,Several runners\nanetv_yxZ4ouqcld4,1018,The race begins and people run very fast. Several people,get interviewed during the race.,chase the poles away and several adults are people running from the sand watching the game.,join in equipment to get out of cut shot.,are climbing stunts in an open structure.,walk along a gym outside.,gold0-reannot,pos,unl,unl,unl,pos,The race begins and people run very fast.,Several people\nanetv_yxZ4ouqcld4,1013,A camera shoots various shots all around a city and shoe store. Hundreds of people,are walking around an area and checking out shoes.,perform several tricks and tricks with many different frisbees.,are shown cleaning off dogs hair before getting ready to jump.,watch the boat having the cheering event.,are shown throwing her in bumper while others watch on the side.,gold1-reannot,pos,unl,unl,unl,unl,A camera shoots various shots all around a city and shoe store.,Hundreds of people\nanetv_yxZ4ouqcld4,1016,People are dancing and enjoying the event together. There,is food being eaten at the event by many.,are walking next to each other.,sits continuously with his leg out routine.,are playing a game with people who are watching them.,are four group runners gathered on the sidewalks watching the soldiers.,gold0-reannot,pos,unl,unl,unl,unl,People are dancing and enjoying the event together.,There\nanetv__ekSmyvWdRQ,12417,They grab an orange pepper from a pile. They,chop the pepper in half.,pick their horses up.,have fun over the top.,start grabbing them all together and put them into a oven.,,gold0-orig,pos,unl,unl,pos,n/a,They grab an orange pepper from a pile.,They\nanetv__ekSmyvWdRQ,12416,A person is putting salad into a clear bowl. They,grab an orange pepper from a pile.,puts holes in the right side of the salad.,begin to get whipped to the kitchen.,start the nut and start to dry up.,begin to eat it on a plate.,gold0-reannot,pos,unl,unl,unl,pos,A person is putting salad into a clear bowl.,They\nanetv_6hu3V1PS4vM,950,\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats written in white on the left side of the screen. Another black screen appears and it\",\"includes 3 small pictures of the same girl, and contact information written in white at the bottom of the screen.\",\"'s white and white words scrolling on the bottom say's distressed, and you can not see anything else.\",\"cuts to white words and white letters, on a white background, include a youtube switch repair - labeled network website.\",includes a large white screen that appears to apply with new information.,,gold0-orig,pos,unl,unl,unl,n/a,\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats written in white on the left side of the screen.\",Another black screen appears and it\nanetv_6hu3V1PS4vM,527,\"A closeup of a young woman talking into a screen begins, while the woman is standing on a field of grass and wearing a sports tank top. The woman\",begins to plays hockey with other women on a field.,can stop the scuba diving and then returns and poses to replay it in several quick moves.,is sitting and talking others get closer while doing her hair.,\"is then seen riding on a lawn runner and sitting on a bench, watching other people take on different positions.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A closeup of a young woman talking into a screen begins, while the woman is standing on a field of grass and wearing a sports tank top.\",The woman\nanetv_6hu3V1PS4vM,949,\"In the same small screen on the right a man is now talking while the video plays and the white words say he is Asst Coach Aceves Helix Field Hockey. A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats\",written in white on the left side of the screen.,are shown with bare gray men.,are shown and is teams of men wearing bikinis and the volleyball rink they begin.,\"is momentarily duration, then buster appear and takes another steps out of the bottom.\",are displayed in other parts of the machine.,gold1-orig,pos,unl,unl,unl,pos,In the same small screen on the right a man is now talking while the video plays and the white words say he is Asst Coach Aceves Helix Field Hockey.,\"A black screen appears with a small picture of Jamie Trevina in the upper right, and all of her stats\"\nanetv_EF74-5YIhAk,7724,The woman sits in he green kayak and get in the water holding the row. the other man,is in the white kayak and is behind the woman in the sea.,stops chat and stands alone up on the other side of the spot.,shakes the man's second and goes to the water pushing the side around the boat.,is demonstrating how to hold the rope to go sail.,,gold0-orig,pos,unl,unl,pos,n/a,The woman sits in he green kayak and get in the water holding the row.,the other man\nanetv_EF74-5YIhAk,7725,The other man is in the white kayak and is behind the woman in the sea. the man and the woman,are kayaking together in a calm sea.,are driving the front of a car at a water ski station.,are pushed down the hill to join boat.,are on the water wakeboarding underwater.,are sailing on a large red raft on the river.,gold0-orig,pos,unl,unl,unl,unl,The other man is in the white kayak and is behind the woman in the sea.,the man and the woman\nanetv_EF74-5YIhAk,13943,Two people prepare to go kayaking and are pushed into the lake. Two people then,\"paddle around, then come back and celebrate.\",put a hole in the water in the water.,ski down the hill of water.,appear to the other side of the river.,started skiing over a hill of snow in the middle of the lake.,gold1-orig,pos,unl,unl,unl,unl,Two people prepare to go kayaking and are pushed into the lake.,Two people then\nanetv_EF74-5YIhAk,7723,A man anda woman are standing next to a car holding kayaks equipment. the woman,sits in he green kayak and get in the water holding the row.,stops with a wheel of his hand.,rolls the car wheel to the next side.,is shown pushing another man in a row and shown after the man rafting after water.,is shown on inner tubes and continues dancing.,gold0-reannot,pos,unl,unl,unl,unl,A man anda woman are standing next to a car holding kayaks equipment.,the woman\nlsmdc1059_The_devil_wears_prada-98840,12491,She passes people sitting at tables outside a restaurant. She,shakes her head and moves on.,\"stands at the door, listening to someone.\",mechanics of shot cyclist used in operation advertises.,places a boat near her side.,gets a light dog on her bare back.,gold0-orig,pos,unl,unl,unl,unl,She passes people sitting at tables outside a restaurant.,She\nlsmdc1059_The_devil_wears_prada-98840,12488,\"Someone stands and stares at her with her big doe eyes for a moment, then leaves. Someone\",\"strolls sadly through the city, mulling over her decision.\",peers at a candy then hands him a set of keys.,lie blank faced at the broken shards.,looks up to see at the others.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stands and stares at her with her big doe eyes for a moment, then leaves.\",Someone\nlsmdc1059_The_devil_wears_prada-98840,12487,Someone has turned her attention to the book. Someone,\"stands and stares at her with her big doe eyes for a moment, then leaves.\",sees him in his mirrored notebook.,opens but someone is left behind the door.,opens the bottle - moistened anxiously just stares at them.,gazes her out of the crack.,gold0-orig,pos,unl,unl,unl,unl,Someone has turned her attention to the book.,Someone\nlsmdc1059_The_devil_wears_prada-98840,12494,She picks up another photograph. Someone,\"rubs her neck, trying to ease some of the tension.\",sets the stack of queens off the desk.,stands cross - legged at the bar.,plops doubtfully on the sofa.,,gold0-orig,pos,unl,pos,pos,n/a,She picks up another photograph.,Someone\nlsmdc1059_The_devil_wears_prada-98840,12496,Someone is at work early. Someone's office is empty and so,is someone's chair.,is a big voice beside him.,seems to be having sex.,does her big - aunt.,have a highly polished coffees.,gold0-orig,pos,unl,unl,unl,unl,Someone is at work early.,Someone's office is empty and so\nlsmdc1059_The_devil_wears_prada-98840,12502,\"Someone stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair. Someone\",comes to the door.,\"dons her hat, steps off of the tv, and reaches for someone's arm.\",enters someone's apartment.,lowers the phone on her bedside chair.,,gold1-orig,pos,unl,pos,pos,n/a,\"Someone stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair.\",Someone\nlsmdc1059_The_devil_wears_prada-98840,12489,\"Someone strolls sadly through the city, mulling over her decision. It's dark and the swanky shop windows she passes\",are all lit up.,the world.,quite happy when she arrives.,boasts the picnic area.,is parked by a rectangular - paneled hall.,gold0-orig,pos,unl,unl,unl,unl,\"Someone strolls sadly through the city, mulling over her decision.\",It's dark and the swanky shop windows she passes\nlsmdc1059_The_devil_wears_prada-98840,12490,It's dark and the swanky shop windows she passes are all lit up. She,passes people sitting at tables outside a restaurant.,\"walks out of the kitchen, wide - eyed, watching.\",she just unlocked her second floor.,\"spots someone, wrapping her arms around her neck.\",,gold0-orig,pos,unl,unl,pos,n/a,It's dark and the swanky shop windows she passes are all lit up.,She\nlsmdc1059_The_devil_wears_prada-98840,12493,\"Back at home, someone wanders out of the bedroom and finds someone looking through some of her old articles and photographs, including one of her with her parents. She\",picks up another photograph.,drags him into someone's room.,hands him an envelope.,\"leads the band away as they walk along the wheeler, past roller - damage on the side of the crescent bird mansion.\",digs with her mother afterwards.,gold0-orig,pos,unl,unl,unl,unl,\"Back at home, someone wanders out of the bedroom and finds someone looking through some of her old articles and photographs, including one of her with her parents.\",She\nlsmdc1059_The_devil_wears_prada-98840,12500,\"She stands and stares at someone with a vaguely pleased smile. Someone nods and holds her hand out to receive the coat, but someone\",tosses it and her handbag onto someone's desk and marches into her office.,sits up and grabs her breast with her coat.,is led out of the cage through the crowd.,walk back to grab someone to the purse.,\"looks at someone, past.\",gold1-orig,pos,unl,unl,unl,pos,She stands and stares at someone with a vaguely pleased smile.,\"Someone nods and holds her hand out to receive the coat, but someone\"\nlsmdc1059_The_devil_wears_prada-98840,12492,She shakes her head and moves on. Yellow taxicabs,\"pass her on the street as she walks past shop windows, one displaying a fashionable red coat.\",appears on the wall behind them.,flexes her neck and watch as it starts to spin.,stalk toward the band.,,gold0-orig,pos,unl,unl,pos,n/a,She shakes her head and moves on.,Yellow taxicabs\nlsmdc1059_The_devil_wears_prada-98840,12501,\"Someone nods and holds her hand out to receive the coat, but someone tosses it and her handbag onto someone's desk and marches into her office. Someone\",\"stares at the coat, which has been slung over someone's monitor screen and sits stiffly down in her own chair.\",slides into someone's chased room.,\"is inside the terrace, overlooking a room with black, white hair, a headband in a bouncy lounge.\",\"raises her head slightly, her own cheek pressed into hers.\",\", someone opens the door.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone nods and holds her hand out to receive the coat, but someone tosses it and her handbag onto someone's desk and marches into her office.\",Someone\nlsmdc1059_The_devil_wears_prada-98840,12503,Someone comes to the door. Someone,reluctantly picks up her telephone receiver and calls someone who's running down busy streets with some big bags.,crawls up to meet marley beside one dog.,holds bright a knife coil.,turns and walks a little farther into the lobby.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone comes to the door.,Someone\nlsmdc1059_The_devil_wears_prada-98840,12499,\"Someone comes in, unbuttoning her coat, which has a striped collar. She\",stands and stares at someone with a vaguely pleased smile.,strolls through a half - toned sign that has bundles of cocaine.,photographs them with someone.,\"holds him close, then turns and walks toward him to the door.\",\"leans down to pick up a bits of powder, but not before she is so far and she shatters the glass.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone comes in, unbuttoning her coat, which has a striped collar.\",She\nanetv__W8m7v1Ir5I,2907,A large group of people are seen standing behind one another with others watching on the sides and leads into the group running down a road. The large group of kids,continue running down the road after one another while people still watch on the sides.,continue taking turns jumping off the rope with other people joining in.,are seen cheering as well as switching sides and pushing against the piece and moving back and fourth.,cheer up and down to more areas as well as jumping to each woman and ends with people falling off their teacher.,are seen looking on the game as well as showing captured footage of using a goal.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen standing behind one another with others watching on the sides and leads into the group running down a road.,The large group of kids\nlsmdc3045_LAND_OF_THE_LOST-21068,11497,\"He puts down a stack of papers, and picks up the prehistoric rock, which shows a familiar indentation. The scientist\",takes a flip - top lighter from his pocket and eyes the inscription: big cat.,someone shuts his eyes.,\"shakes direction with green, not noticing it.\",faces down from behind some tree - lined building.,approaches her room and she stares up into the air.,gold0-reannot,pos,unl,unl,pos,pos,\"He puts down a stack of papers, and picks up the prehistoric rock, which shows a familiar indentation.\",The scientist\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12176,\"Someone sits amongst a council of free - peoples of Middle earth, someone stands before them, addressing people, and 20 other elves, Dwarves, and men. Someone\",steps forward and moves towards a stone plinth.,\"reels, some instantly stunned, then makes the pranam.\",\"elaborately built canvas, and different masks are surrounded by a mechanism.\",stops at the front of the bus with the hurt history.,is tired and pleased.,gold0-orig,pos,unl,unl,unl,pos,\"Someone sits amongst a council of free - peoples of Middle earth, someone stands before them, addressing people, and 20 other elves, Dwarves, and men.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12175,Someone closes someone's fingers around the jewel. Someone,\"leans towards someone, gently kissing him.\",\"opens her right hand as she stretches out her toes, seizing the ropes rail a few times.\",stares at someone through a tear.,eyes a young woman.,,gold0-orig,pos,unl,pos,pos,n/a,Someone closes someone's fingers around the jewel.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60184,12177,Someone steps forward and moves towards a stone Plinth. He,places the ring on the plinth and returns to his seat.,reaches out his hand to lock it open then finds someone's face for a.,sits down and hands it back to someone.,halts in the doorway.,looks around someone with someone.,gold0-orig,pos,unl,unl,unl,pos,Someone steps forward and moves towards a stone Plinth.,He\nanetv_bQVMoeBK7XU,12201,\"Once it is evenly displayed, several paragraphs begin to show about the use of the product and what each week should be. After, a short sentence\",appears and tells you to go on their web page to get more details.,is caught from the door.,\"shows how the process is completed, and it took by a final picture, separate all of the kitchen to take.\",appears again and the video continues.,,gold0-orig,pos,unl,unl,pos,n/a,\"Once it is evenly displayed, several paragraphs begin to show about the use of the product and what each week should be.\",\"After, a short sentence\"\nanetv_bQVMoeBK7XU,12200,\"A bottle of aging cream is shown and a woman begins to apply it on her face in her T - zone. Once it is evenly displayed, several paragraphs\",begin to show about the use of the product and what each week should be.,of sand appear and a tool is added into it.,\"are shown for cityscape, ending with a newscaster being washed.\",are shown and the talking lenses are actually the eye lenses of the contact lenses.,begin to viewers and various close scenes of the scene followed by photos being associated with a girl chase and getting it put headlong to,gold0-orig,pos,unl,unl,unl,unl,A bottle of aging cream is shown and a woman begins to apply it on her face in her T - zone.,\"Once it is evenly displayed, several paragraphs\"\nanetv_wvlyV067oOU,16963,The young kids are bouncing on the big trampoline. The young boy,fell on his back as he avoided the ball.,switches to the boy.,carries flute with to take him playing.,takes off a helmet.,leads the other boy forward and swinging him in the air.,gold0-orig,pos,unl,unl,unl,unl,The young kids are bouncing on the big trampoline.,The young boy\nanetv_wvlyV067oOU,16964,The young boy fell on his back as he avoided the ball. The kids,are wearing helmet as they threw the ball and other side of the kids dodge the ball.,fell down the rope and lands near the string playing the game.,continue to run offscreen and back at home as he missed their jump.,continue playing on the grass while one of them lays something on the boy's left side and misses the wrong direction.,walked past him and fell down on the boys who were tied back.,gold0-orig,pos,unl,unl,unl,unl,The young boy fell on his back as he avoided the ball.,The kids\nanetv_wvlyV067oOU,16965,The kids are wearing helmet as they threw the ball and other side of the kids dodge the ball. Two adult people,went up to the trampoline to watch the kids.,\"hold their arms and fell, too, and fell first into the pool from each other.\",are then seen sitting at the end of the beach playing a game of beach soccer.,\"in yellow and team interview behind a fence, ball firmly on the field.\",ran in and they threw the ball and landed on the poles.,gold0-reannot,pos,unl,unl,unl,pos,The kids are wearing helmet as they threw the ball and other side of the kids dodge the ball.,Two adult people\nanetv_E1-eVfnNfXI,4980,\"A woman is sitting with a baby in her arms. She takes licks of an ice cream cone, and the baby\",laughs hysterically each time.,is shown being brushed.,begins to talk with her.,\"pushes it into his lap, rolls into the water.\",sneaks the cookie goo off of her cone.,gold0-orig,pos,unl,unl,unl,unl,A woman is sitting with a baby in her arms.,\"She takes licks of an ice cream cone, and the baby\"\nanetv_E1-eVfnNfXI,4981,\"She takes licks of an ice cream cone, and the baby laughs hysterically each time. She\",\"offers him bites, pulling the cone away and making him laugh.\",smokes lighter when he shows a triple time.,uses signs and lathers as well as a grown up that shows their fuss.,touches the disposable cream and the baby above her stands and walks over.,is swinging back and forth through the end hear intercuts rooms and other slamming.,gold0-orig,pos,unl,unl,unl,unl,\"She takes licks of an ice cream cone, and the baby laughs hysterically each time.\",She\nanetv_4W4mrswC2tA,1800,A woman is lifting weights in a gym room. She,lifts the barbell up to her chest.,continues speaking and playing with another girl while sitting on the equipment.,uses her next block.,gathers lots of things and uses her hands to tighten the saddle.,is standing in a room gym before she is doing crunches.,gold0-orig,pos,unl,unl,unl,pos,A woman is lifting weights in a gym room.,She\nanetv_4W4mrswC2tA,1801,She lifts the barbell up to her chest. She then,lifts it over her head and laughs.,takes some more her other soda.,drops the baton and continues to stare at her.,places it in his hands and release his jacket.,picks it up and lifts it above her head.,gold1-orig,pos,unl,pos,pos,pos,She lifts the barbell up to her chest.,She then\nanetv_4W4mrswC2tA,1660,\"A young lady in purple shirt is squatting to pick up the barbel, the barbel has green and red metal plates on it. Then the young girl\",\"picked up the barbel, pause on her chest then pushed it all up, then let it go.\",continues to play a video of herself and the man taking the man at the competition.,is then shown doing the barbel using the weight that went up and then sliding his hands behind her arm.,drops the weight and puts it down while the baby dribbles.,pulls the hammer and places the wheel very high in his chest to split the whole thing.,gold1-orig,pos,unl,unl,unl,unl,\"A young lady in purple shirt is squatting to pick up the barbel, the barbel has green and red metal plates on it.\",Then the young girl\nanetv_mhYFpct97UE,12286,\"Then we see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo. The girls\",\"play heavily, chasing the ball around the field.\",squats all in the lot and scores some shots.,threw the ball and dipped them into balls in several motions with the mallets and i cut them smoothen the hand.,swim to the team's side window to play some hidden hidden by the net.,\"walk in to the ball, playing a game of polo.\",gold0-orig,pos,unl,unl,unl,unl,\"Then we see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo.\",The girls\nanetv_mhYFpct97UE,19398,She is then shown in several clips during field hockey games. A green arrow,appears over her head each time she is in the game.,waves to the men as they are interviewed as they seem to talk about the objects.,is shown showing her scores and shoots her a target.,begins to ram into the goalie and back into the goal.,\"is scored down a screen followed to a score board being shown, with a man participating in a field.\",gold0-orig,pos,unl,unl,unl,unl,She is then shown in several clips during field hockey games.,A green arrow\nanetv_mhYFpct97UE,12287,\"The girls play heavily, chasing the ball around the field. Each time the girl appears, an arrow\",points to her in the group.,hits the girl playing with the racquet.,hits the girl in blue again.,misses the first direction of after she is shot again.,starts to get another strike.,gold0-orig,pos,unl,unl,unl,unl,\"The girls play heavily, chasing the ball around the field.\",\"Each time the girl appears, an arrow\"\nanetv_mhYFpct97UE,12285,A senior photo of a girl holding a rose is shown. Then we,\"see a team of lacrosse players on a field, a green arrow pointing to the girl from the photo.\",see the girl in a pink tunic and a dress with a hat holding a braided jar.,see a pair of ladies shown standing facing a roller target.,see photos of the girl at a tumble.,,gold0-reannot,pos,unl,unl,unl,n/a,A senior photo of a girl holding a rose is shown.,Then we\nanetv_mhYFpct97UE,19397,A few school photos are shown of a young girl. She,is then shown in several clips during field hockey games.,finishes on her face and tightens her lip.,has her hair collared next to it.,walks barefoot down a sidewalk holding girl.,goes back down doing her tricks on the water.,gold0-reannot,pos,unl,unl,unl,pos,A few school photos are shown of a young girl.,She\nlsmdc1028_No_Reservations-82836,303,Someone walks wearily into her apartment. She,\"removes her long, red scarf from around her neck and walks over to the answer machine.\",adjusts that of her golden volleyball.,picks up the receiver and heads up the front.,is no longer along the street.,,gold0-orig,pos,unl,unl,pos,n/a,Someone walks wearily into her apartment.,She\nlsmdc1028_No_Reservations-82836,302,Someone's anguished face is crumpled. Someone,walks wearily into her apartment.,hangs onto his shoulders.,is vacuuming nearby by the bed.,starts to fall out of the chair.,,gold1-orig,pos,unl,unl,pos,n/a,Someone's anguished face is crumpled.,Someone\nlsmdc1028_No_Reservations-82836,298,She stares through the window at the sleeping someone. Someone,slowly wakes up and takes in her surroundings.,reaches out and grabs her wand with her hand.,\"shakes his head, and makes his way upstairs.\",checks her spot drawn to the cemetery.,crawls onto someone's bed and takes a lid.,gold0-orig,pos,unl,unl,unl,unl,She stares through the window at the sleeping someone.,Someone\nlsmdc1028_No_Reservations-82836,304,\"She removes her long, red scarf from around her neck and walks over to the answer machine. Transfixed, someone\",\"stands in the hallway, clutching her coat.\",\"dashes out of the room, quickly in a blind, and stockings on top of her stomach.\",looks at his wrist.,\"sits in the seat dressed, teenage - like.\",,gold0-orig,pos,unl,pos,pos,n/a,\"She removes her long, red scarf from around her neck and walks over to the answer machine.\",\"Transfixed, someone\"\nlsmdc1028_No_Reservations-82836,305,\"Transfixed, someone stands in the hallway, clutching her coat. She\",turns and walks back towards the door.,\"uses the blow dryer, to show someone's hair.\",\"hands on her crackers, then jerks upright.\",swallows and sobs.,\"walks outside a tall apartment building, which softly spreads across the frame.\",gold0-orig,pos,unl,unl,unl,unl,\"Transfixed, someone stands in the hallway, clutching her coat.\",She\nlsmdc1028_No_Reservations-82836,299,Someone slowly wakes up and takes in her surroundings. She,\"looks across at someone, who's staring at her.\",wraps his arms around his neck and rests her head on his shoulder.,lowers her arms and opens her eyes.,\"crosses her apartment toward a tv, and picks up her phone.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone slowly wakes up and takes in her surroundings.,She\nlsmdc1028_No_Reservations-82836,300,\"Then, someone sits up. Someone\",stares unblinkingly at the young girl.,steps out to find someone striding over to her.,points quizzically at someone.,smiles at the reverend.,\"approaches him, gun blazing.\",gold1-reannot,pos,unl,pos,pos,pos,\"Then, someone sits up.\",Someone\nlsmdc1028_No_Reservations-82836,301,Someone stares unblinkingly at the young girl. Tears,roll down someone's face.,\"man is sitting in the hospital bed, with the night combo forming on her, walking with her hands in his pockets, he\",\"a medic, he staggers at her victim.\",sprint toward the other bureau.,the man gazes at her.,gold0-reannot,pos,unl,unl,unl,pos,Someone stares unblinkingly at the young girl.,Tears\nanetv_E-bv464MTsQ,5531,A large group of people riding horses are walking around each other on a large field. One of them throws a ball onto the field and the people,begin playing a game on their horses.,stop to talk while three two wrestle to the side.,are watching the game in the hockey event.,fight over the ball around.,run to the end of the field.,gold0-orig,pos,unl,unl,unl,unl,A large group of people riding horses are walking around each other on a large field.,One of them throws a ball onto the field and the people\nlsmdc1009_Spider-Man3-76101,6912,\"Someone, wearing just a pair of shorts, steps out of the chamber. He\",takes a deep breath and smirks.,\"comes out of the back door, heaves a door back into the mechanism and closes it.\",\"walks up and down through the water, carrying a satchel of toiletries.\",stands up and looks up and sees someone in the hallway.,shows how to steer with a cardboard box which is filled with water.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, wearing just a pair of shorts, steps out of the chamber.\",He\nlsmdc1009_Spider-Man3-76101,6913,\"He takes a deep breath and smirks. In a dark, peaceful forest, people, lying on a huge hammock - like web on their backs,\",are watching for shooting stars.,flip to a couple of greenery.,sit behind a huge tree climbing in a body like brown snow.,look up at him on the shore.,,gold0-orig,pos,unl,unl,pos,n/a,He takes a deep breath and smirks.,\"In a dark, peaceful forest, people, lying on a huge hammock - like web on their backs,\"\nlsmdc1009_Spider-Man3-76101,6911,\"The door of a glass chamber slides open and green smoke pours out. Someone, wearing just a pair of shorts,\",steps out of the chamber.,does some step forward from the swimming pool.,puts his arm around his head.,\"is lighting her cigarette, bladed so far.\",downs a third shot and reaches his hand up in front of the pole.,gold0-orig,pos,unl,unl,unl,unl,The door of a glass chamber slides open and green smoke pours out.,\"Someone, wearing just a pair of shorts,\"\nlsmdc1009_Spider-Man3-76101,6910,In the Goblin Lair at the Osborne mansion several incarnations of the demonic Green Goblin mask are displayed on stands along with a number of high tech weapons and futuristic flying equipment. A screen,shows a scan of a human body.,appears in the background as we have seen magazine to someone's office.,\"of dots, overlapping sweep.\",shows tremendous crabs and snakes that are saying to someone.,shine up on the contents of the gun again.,gold0-reannot,pos,unl,unl,unl,pos,In the Goblin Lair at the Osborne mansion several incarnations of the demonic Green Goblin mask are displayed on stands along with a number of high tech weapons and futuristic flying equipment.,A screen\nlsmdc1026_Legion-5318,15289,\"Someone leads a tall, black, 30'ish someone inside. Someone\",looks up with interest.,watches someone throw as the two sisters rush out of view.,clasps his hands together.,sits alone at the altar of a apartment.,gives a knowing nod.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone leads a tall, black, 30'ish someone inside.\",Someone\nlsmdc1026_Legion-5318,15287,\"Someone, holding an old wooden cot, stares at them, then walks away. Someone\",puffs on her cigarette.,comes out of the snowy area with a tight grin.,turns someone.,has a picture written in it that has fallen in his eyes.,follows them through the woods.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone, holding an old wooden cot, stares at them, then walks away.\",Someone\nlsmdc0012_Get_Shorty-53396,8328,People walk out to the driveway. Someone,\"follows someone over to the minivan, opens the door for him.\",folds a blanket over the paint.,sees a joke at a wall.,stops to hang ear - to - ear as he lies in bed alone getting around.,jumps on a plinth.,gold0-orig,pos,unl,unl,unl,unl,People walk out to the driveway.,Someone\nlsmdc0012_Get_Shorty-53396,8329,\"Someone follows someone over to the minivan, opens the door for him. People\",\"are laughing as someone, very drunk now finishes another drink.\",come out of the door and drink out.,\"looks at him, then he moves closer to his child.\",walks into the toilets.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone follows someone over to the minivan, opens the door for him.\",People\nlsmdc0010_Frau_Ohne_Gewissen-51508,15363,He goes on pacing up and down. Finally someone,can't stand the silence any longer.,looks out at him and writhes.,approaches the house and draws his rakes.,turns and stares at the stairs and looks.,stands up in the middle of the room.,gold0-orig,pos,unl,unl,pos,pos,He goes on pacing up and down.,Finally someone\nanetv_uokQq9Xrjf8,2627,There's a fitness trainer representing The FitCast fitness in a gym demonstrating how to do a tall kneeling palloff press. He,is kneeling down on the floor in a black shirt and gray sweat pants.,smooths and iron clothes screws down.,peels them apart and begins slicing some new material beneath the clothing.,\"belly workout, she moves her legs over an exercise bike doing crunches before she stops and gets on on the bikes.\",,gold0-orig,pos,unl,unl,unl,n/a,There's a fitness trainer representing The FitCast fitness in a gym demonstrating how to do a tall kneeling palloff press.,He\nlsmdc3060_SANCTUM-29545,6329,\"Someone looks at his son, his profile traced in a glimmer of light. Daylight\",bathes their faces as they emerge from a fissure and step into a cavern.,time he knocks on the window.,walks over and peeks around his window.,flares up and reverses around the air.,\"in his back, someone plants his legs and pulls him up to the floor.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone looks at his son, his profile traced in a glimmer of light.\",Daylight\nlsmdc3060_SANCTUM-29545,6334,Someone climbs on to the tank. He,\"peers down its hatch, then straightens.\",jumps off his motorbike.,grabs a fish and hurries out.,holds a rifle over his stomach and staggers back over the supports.,climbs out of a car onto the dirt.,gold0-orig,pos,unl,pos,pos,pos,Someone climbs on to the tank.,He\nlsmdc3060_SANCTUM-29545,6326,\"He lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light. As someone lifts his hand, a trace of light\",reflects on his palm and fingers.,approaches his bones.,shines on his slip and explodes.,shines on someone's face as he shoots it.,,gold1-orig,pos,unl,unl,pos,n/a,\"He lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light.\",\"As someone lifts his hand, a trace of light\"\nlsmdc3060_SANCTUM-29545,6331,\"As they walk toward it, someone removes his helmet. Someone removes his helmet as well and his father\",lifts his face to the hole.,and his teammates gaze in the face of the latrine.,\"sits by, watching his own pistol at the nighttime pier.\",settles into the top of the vehicle.,,gold1-orig,pos,unl,unl,pos,n/a,\"As they walk toward it, someone removes his helmet.\",Someone removes his helmet as well and his father\nlsmdc3060_SANCTUM-29545,6327,\"As someone lifts his hand, a trace of light reflects on his palm and fingers. He\",shifts his gaze to someone.,\"shows a man reading, pointing about.\",pauses and looks down at her.,collects his beard then shifts his gaze to the parchment.,returns to a spot where the brawny gunman lies on the floor of a corridor.,gold1-orig,pos,unl,unl,unl,unl,\"As someone lifts his hand, a trace of light reflects on his palm and fingers.\",He\nlsmdc3060_SANCTUM-29545,6320,He checks for his light's reflection on his palm. Someone,lifts his hand to the light on his own helmet and switches it off.,\"stares down at the girl, then shifts her eyes, collects her purse and spoons.\",sits by several flowers on the journal.,stares back through the surface of the thick water.,hands someone a glistening butcher knife.,gold0-orig,pos,unl,unl,unl,unl,He checks for his light's reflection on his palm.,Someone\nlsmdc3060_SANCTUM-29545,6335,\"He peers down its hatch, then straightens. Rain\",falls on someone's face as he looks up.,approaches a male guard.,\"the gun, the officers surround the agent and hurry up through a tree - lined building toward the shore.\",takes a step forward and pushes the door open.,\"the large hill beneath, a mordor t - car ltd and someone driver clutches the car over his head to find a big flat\",gold0-orig,pos,unl,unl,unl,unl,\"He peers down its hatch, then straightens.\",Rain\nlsmdc3060_SANCTUM-29545,6324,\"Holding its button down, he creeps forward, no longer crawling but crouched under the low ceiling. Someone pauses beside him and someone\",shoots him a glance.,falls into the abyss.,cowers through the clasp as he has formed on someone's vest.,leans back in his chair.,pushes someone off the wall.,gold0-orig,pos,unl,unl,unl,pos,\"Holding its button down, he creeps forward, no longer crawling but crouched under the low ceiling.\",Someone pauses beside him and someone\nlsmdc3060_SANCTUM-29545,6323,\"He turns on his wristwatch's light and it glows on his determined face. Holding its button down, he\",\"creeps forward, no longer crawling but crouched under the low ceiling.\",sends it flying across the next floor of a statue.,\"yanks it open, revealing the shape.\",follows her gaze up the convoy then approaches a sign.,finds someone breathing steadily from his own.,gold0-orig,pos,unl,unl,unl,unl,He turns on his wristwatch's light and it glows on his determined face.,\"Holding its button down, he\"\nlsmdc3060_SANCTUM-29545,6321,\"Someone lifts his hand to the light on his own helmet and switches it off. Now, someone's helmet light\",\"emerges from darkness, illuminating the walls of a tunnel as he crawls through it.\",shines past another oncoming car and looms toward it.,shows someone on a rundown datsun.,shines up at a laptop before spreading it out with a red flag.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lifts his hand to the light on his own helmet and switches it off.,\"Now, someone's helmet light\"\nlsmdc3060_SANCTUM-29545,6322,\"As someone moves forward, his light fades out. He turns on his wristwatch's light and it\",glows on his determined face.,takes on a dejected shape.,crawls across the room.,fly out into the street.,is like a slate of the engine.,gold0-orig,pos,unl,unl,unl,unl,\"As someone moves forward, his light fades out.\",He turns on his wristwatch's light and it\nlsmdc3060_SANCTUM-29545,6330,\"Daylight bathes their faces as they emerge from a fissure and step into a cavern. At its center, a brilliant shaft of sunlight\",glows down through a hole in its high ceiling.,shines on windows on their posted images.,reflects the director in the morning sun shooting brightly from the tranquil venue.,stomps on the edges of the ship as a lighthouse shimmers its way between them.,washes off its head and shines through the hayseeds.,gold0-orig,pos,unl,unl,unl,unl,Daylight bathes their faces as they emerge from a fissure and step into a cavern.,\"At its center, a brilliant shaft of sunlight\"\nlsmdc3060_SANCTUM-29545,6337,\"He lights a makeshift torch then grins. As someone rises with his flaming cylindrical container in hand, someone\",shoves fabric into the top of his own oil - filled container.,grabs his flailing grenade.,reaches into the jacket pocket.,watches from the meat cage.,unleashes a stream of fire.,gold0-orig,pos,unl,unl,unl,unl,He lights a makeshift torch then grins.,\"As someone rises with his flaming cylindrical container in hand, someone\"\nlsmdc3060_SANCTUM-29545,6325,Someone pauses beside him and someone shoots him a glance. He,\"lowers himself to the ground and leans against the tunnel's wall, then releases the button for his watch light.\",kneels down in front of the large spiral - eyed man.,\"replaces the lid, he strides toward someone and goes outside.\",turns and glances at someone then shuts the gate in a cupboard.,backs out of the booth.,gold1-orig,pos,unl,unl,unl,unl,Someone pauses beside him and someone shoots him a glance.,He\nlsmdc3060_SANCTUM-29545,6333,Someone lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it. Someone,climbs on to the tank.,crawls on a leather bench where a bench faced worker stands upright.,dangle as snowy looks behind him.,sits in his cottage.,places someone's hands over his heart & stares at someone.,gold0-orig,pos,unl,unl,unl,unl,Someone lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it.,Someone\nlsmdc3060_SANCTUM-29545,6336,\"Squatting, someone fills a container with oil from the tank, then looks over at someone who strikes a flint under the shelter of a wheel well. He\",lights a makeshift torch then grins.,tosses a coin onto the gryffindor table.,begins to d the seeds out of the machine.,offers some real matches to someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Squatting, someone fills a container with oil from the tank, then looks over at someone who strikes a flint under the shelter of a wheel well.\",He\nlsmdc3060_SANCTUM-29545,6319,The light on someone's helmet torch fades out. He,checks for his light's reflection on his palm.,turns on the light.,pauses at a watering hole and lines up his nearby scope.,wears a black helmet and gray owl.,,gold0-orig,pos,unl,unl,unl,n/a,The light on someone's helmet torch fades out.,He\nlsmdc3060_SANCTUM-29545,6332,Someone removes his helmet as well and his father lifts his face to the hole. Someone,lowers his gaze from the natural skylight and notices a weathered military vehicle sitting below it.,crawls onto the island and raises the binoculars.,\"shifts her amused eyes to the girl, who watches as someone props her head against her own chin.\",we all see the intro.,unable to tackle him.,gold0-orig,pos,unl,unl,unl,unl,Someone removes his helmet as well and his father lifts his face to the hole.,Someone\nlsmdc3060_SANCTUM-29545,6328,He shifts his gaze to someone. Someone,\"looks at his son, his profile traced in a glimmer of light.\",reaches nearby and kicks a fork into someone's face.,leads him down the hall leading to the lift.,takes a pair of steps toward someone's apartment.,\"considers for a moment, then continues on.\",gold0-reannot,pos,unl,pos,pos,pos,He shifts his gaze to someone.,Someone\nlsmdc3013_BURLESQUE-5036,14547,He cuts the stage lights. Someone,places a chair center stage and straddles it.,touches someone 'scooter.,moves across the table to his friends.,purses his lips in a soft stare.,climbs into the house and finds a dangling unicorn perched on the high bed.,gold1-orig,pos,unl,unl,unl,unl,He cuts the stage lights.,Someone\nlsmdc3013_BURLESQUE-5036,14541,He kisses someone 'cheek. She,watches him go with a grateful smile.,kisses him hard between the lips.,\"returns, revealing someone's sleeve, lets out a loud cry.\",gives him a resolute look and dashes out onto the street on third street.,\"turns to someone, then walk away.\",gold0-orig,pos,unl,unl,unl,pos,He kisses someone 'cheek.,She\nlsmdc3013_BURLESQUE-5036,14540,Someone gives an affectionate smile as someone walks away. She,bites her lip worriedly.,steadies his descent and soberly claps his hands.,briefly pats someone's shoulder.,stares down at her.,yields a nod and saunters off.,gold1-orig,pos,unl,unl,pos,pos,Someone gives an affectionate smile as someone walks away.,She\nlsmdc3013_BURLESQUE-5036,14545,\"She drops the costumes, then removes her coat. She\",climbs wearily onto the stage.,\"drops over her feet, and takes someone by the wrist.\",is magically carrying them.,gets someone's alien hand from plastic bags.,grimaces as someone kicks and engulfs the ground.,gold1-orig,pos,unl,unl,unl,unl,\"She drops the costumes, then removes her coat.\",She\nlsmdc3013_BURLESQUE-5036,14542,She watches him go with a grateful smile. Now she,\"enters the stage area, her arms loaded with costumes.\",rides along the line of houses near the health clinic.,is tearfully stronger now inside as someone wakes and peers out the window.,\"strolls across the crowded hall, to the riverbank, out beneath a slender tree sticker with a long length snow covered grassy lining.\",thrusts down the cue hoop.,gold1-reannot,pos,unl,unl,unl,unl,She watches him go with a grateful smile.,Now she\nlsmdc3013_BURLESQUE-5036,14548,Someone places a chair center stage and straddles it. Someone,focuses a blue - tinted spotlight on her.,dance onto the course steadily.,\"stands up on the couch, then slides one leg near his chest.\",\"walks over to the window, peers out of the window, briefly gazing through the window as someone comes in.\",\"is subsides, sliding up.\",gold0-reannot,pos,unl,unl,unl,unl,Someone places a chair center stage and straddles it.,Someone\nlsmdc3013_BURLESQUE-5036,14546,\"Someone puts on a cd labeled, Instrumental Only, Last of me. He\",cuts the stage lights.,\"reaches through the drawer, wakes the lights and presses the triangle.\",finds a grateful design in its dimly lit kitchen and goes with a table already.,fumbles right up the number which opens.,is a label atop the lighting.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone puts on a cd labeled, Instrumental Only, Last of me.\",He\nanetv_8_RfK2rp2To,19458,An athlete is seen standing ready holding a pole and begins running down a large track over a beam. The woman,then jumps over the beam and throws her arms in the air to celebrate and run around the field.,continues skateboarding down the track while a man helps him balance on a beam.,stops and climbs back and fourth on the rope next to a camera.,\"continues jumping, talking to grab tools and pit that many while.\",is jumping while the vault flips back and backward.,gold0-orig,pos,unl,unl,pos,pos,An athlete is seen standing ready holding a pole and begins running down a large track over a beam.,The woman\nanetv_8_RfK2rp2To,19459,The woman then jumps over the beam and throws her arms in the air to celebrate and run around the field. The woman,does flips on the mat while celebrating and ends with her jump shown again and her sitting in front of her score.,continues to do cartwheels and ends with her throwing her arms in the air.,wave her arms in the air while looking off into the distance.,is seen jumping over the beam and flipping.,,gold1-reannot,pos,pos,pos,pos,n/a,The woman then jumps over the beam and throws her arms in the air to celebrate and run around the field.,The woman\nlsmdc3063_SOUL_SURFER-31175,8321,\"At the hospital, someone sits on a exam table. Someone's mother\",smiles and nods to someone.,leaves the receptionist from the office.,sets the pants down.,watches him projected across the table.,sets down the notebook.,gold0-orig,pos,unl,unl,unl,pos,\"At the hospital, someone sits on a exam table.\",Someone's mother\nlsmdc3063_SOUL_SURFER-31175,8320,\"In the grocery store's produce section, someone reaches for a bag of apples on a high shelf. Later, she\",carries a brown paper bag to her bicycle.,uses a peanut butter out of a chicken that crosses her nose.,sits past a grazes fence with the old woman on it.,bursts into the apartment door.,rides a two boat as she rides a motorcycle over the lawnmower.,gold0-orig,pos,unl,unl,unl,unl,\"In the grocery store's produce section, someone reaches for a bag of apples on a high shelf.\",\"Later, she\"\nlsmdc0009_Forrest_Gump-50286,12188,Someone pulls a robe off of her sleeping roommate's bed. Someone,\"hands the robe to someone, sitting on someone's bed.\",circles a car toward someone.,\"lifts his pants, some weeping.\",\"gives the smothers a pleading look, then looks over her shoulder at someone.\",smells - shirt and jeans.,gold0-orig,pos,unl,unl,pos,pos,Someone pulls a robe off of her sleeping roommate's bed.,Someone\nlsmdc0009_Forrest_Gump-50286,12187,Someone unlocks the door and they step inside. Someone,pulls a robe off of her sleeping roommate's bed.,\"enters, leaving the floor behind.\",opens the door to the office and slams the doors shut.,wraps his arm around someone's shoulder then marches off.,looks at the door.,gold1-orig,pos,unl,unl,pos,pos,Someone unlocks the door and they step inside.,Someone\nlsmdc0009_Forrest_Gump-50286,12191,Someone dries the water from her hair. Someone,takes off her slip and sits on the bed next to him.,scoops water from her fists.,goes up the banks to another boat.,leaves her kitchen.,,gold1-orig,pos,unl,pos,pos,n/a,Someone dries the water from her hair.,Someone\nlsmdc0009_Forrest_Gump-50286,12190,\"Someone picks up a towel, then walks back toward someone. Someone\",dries the water from her hair.,stares up at a sleeping meerkat.,takes a round look at him.,is sitting back down in the armchair; someone starts sleeping in the armchair.,smiles at the picture.,gold0-orig,pos,unl,unl,pos,pos,\"Someone picks up a towel, then walks back toward someone.\",Someone\nlsmdc0009_Forrest_Gump-50286,12195,Someone looks down at someone's breasts. Someone,realizes that he is looking at her.,\"smiles as people disappear, then someone rubs his face.\",puts the pages on the diary.,\"grins and, getting out of his way, avoiding the word other royal expression on his face.\",and someone stare at the blond.,gold1-orig,pos,unl,unl,unl,pos,Someone looks down at someone's breasts.,Someone\nlsmdc0009_Forrest_Gump-50286,12194,Someone looks at someone like he is never seen a woman in her underwear before. Someone,looks down at someone's breasts.,\"stands beside him, holding her hand to her mouth.\",bows her head and nods.,\"stares out of the window, sees tears from sidewalk away.\",looks up to see someone beaming.,gold0-orig,pos,unl,unl,unl,pos,Someone looks at someone like he is never seen a woman in her underwear before.,Someone\nlsmdc0009_Forrest_Gump-50286,12192,Someone takes off her slip and sits on the bed next to him. She,is only wearing her bra and panties.,\"comes in, smiles at him - - then clenches the handle, his gears popping out again.\",closes the front door with someone with another padlock.,slides a hand into his partner's.,flashes a meek smile.,gold0-orig,pos,unl,unl,pos,pos,Someone takes off her slip and sits on the bed next to him.,She\nlsmdc0009_Forrest_Gump-50286,12193,She is only wearing her bra and panties. Someone,looks at someone like he is never seen a woman in her underwear before.,is on her bed as she walks his two fingers with her left hand and sits with her.,\"walks over to her, where someone is the same motioning.\",\"picks up the reins, but he hugs it with an effortless stride.\",sits on the couch in its bathroom.,gold0-orig,pos,unl,unl,unl,pos,She is only wearing her bra and panties.,Someone\nlsmdc0009_Forrest_Gump-50286,12189,\"Someone hands the robe to someone, sitting on someone's bed. Someone\",\"picks up a towel, then walks back toward someone.\",has one hand clasped over someone's neck.,regards him applauds bitterly.,stares at him as he goes to his car.,calls out from behind the couch and goes to her - - without knowing what he sees.,gold0-orig,pos,unl,unl,unl,unl,\"Someone hands the robe to someone, sitting on someone's bed.\",Someone\nlsmdc0009_Forrest_Gump-50286,12183,Someone gets back into the car. Someone,pulls away as someone steps toward someone.,\"enters, leaving the suv.\",goes on on a campus area wearing a dark vest.,slowly walk through some building.,comes and pick her away.,gold1-reannot,pos,unl,pos,pos,pos,Someone gets back into the car.,Someone\nlsmdc0009_Forrest_Gump-50286,12186,Someone grabs someone hand and leads him toward the dorm. People,sneak to someone's door.,sit with his father and her father.,walk to his car and leans on the other shoulder for a hug.,walk and walk away.,stop at the restaurant entrance.,gold0-reannot,pos,unl,unl,pos,pos,Someone grabs someone hand and leads him toward the dorm.,People\nanetv_RRIGf87R6jc,5669,She uses a cookie cutter to cut shapes out of the dough. She,is dipping the dough into a white glaze.,\"places the ingredients on an oven and takes some baking bread, drying us un - cooked.\",\"begins jumping up the sides on the wall, then takes the can back off.\",puts olive slices into a lemon.,mixes everything together in a bowl.,gold0-orig,pos,unl,unl,unl,unl,She uses a cookie cutter to cut shapes out of the dough.,She\nanetv_RRIGf87R6jc,5668,A girl is pouring ingredients into a bowl and mixing them together. She,uses a cookie cutter to cut shapes out of the dough.,raises a wet sleeve around her finger and picks up the frosting and starts putting it.,brings them to the stage.,\"eats all the ingredients and her hands, stirring them together in a bowl.\",mixes ingredients into a blender and stirs a bottle with olive oil.,gold0-reannot,pos,unl,unl,unl,unl,A girl is pouring ingredients into a bowl and mixing them together.,She\nlsmdc0026_The_Big_Fish-62521,431,\"He has a gun, but he truly does n't want to shoot Norther. The Teller Woman\",is already waving him to the back.,playfully offers her hand away.,stops before obliges cases.,escapes someone followed by firing wildly.,,gold0-orig,pos,unl,unl,pos,n/a,\"He has a gun, but he truly does n't want to shoot Norther.\",The Teller Woman\nlsmdc0026_The_Big_Fish-62521,434,She pulls open the vault door. The inner sanctum of the Horizon Savings and Loan,holds exactly one folding chair.,is fitted for a small box.,truly come out and stare out.,appear in the glue together.,is demonstrating several full of wild creatures.,gold0-orig,pos,unl,unl,unl,unl,She pulls open the vault door.,The inner sanctum of the Horizon Savings and Loan\nlsmdc0026_The_Big_Fish-62521,432,The Teller Woman is already waving him to the back. He,decides he better go.,holds up the wedding photo.,has got a fellowship buried by his canopy.,is holding her up to the ceiling.,takes his fallen drink from one hand.,gold0-orig,pos,unl,unl,unl,unl,The Teller Woman is already waving him to the back.,He\nlsmdc0026_The_Big_Fish-62521,435,The inner sanctum of the Horizon Savings and Loan holds exactly one folding chair. Someone,\"winces, but does n't say anything yet.\",is releasing a character off into a room.,sees that someone is rubbed bright on his hip hop fashion.,is left atop the roof.,creates the transfer of coverage to the church.,gold0-orig,pos,unl,unl,unl,unl,The inner sanctum of the Horizon Savings and Loan holds exactly one folding chair.,Someone\nlsmdc0026_The_Big_Fish-62521,433,He decides he better go. The Teller Woman,is crying as she works the combination.,\"is nowhere to be seen but begins there, which moves to the other side & that the woman is going to start.\",uses the bodhi tree to catch the chain of fire.,lifts the table and hands it to someone.,takes a picture of a shaggy child and nods.,gold1-reannot,pos,unl,unl,unl,unl,He decides he better go.,The Teller Woman\nlsmdc3044_KNOCKED_UP-20945,18272,Someone takes a long sip of coffee. He,lifts his brow and smiles.,opens the closet door to reveal a bearded gray - haired man in a robe and hat.,slides the sheet down into his bag and stares off thoughtfully.,looks at a girl in the mirror.,clinks the flask with his drink and leans a face against his forehead.,gold1-orig,pos,pos,pos,pos,pos,Someone takes a long sip of coffee.,He\nanetv_F2yh5HfIj2c,16824,A man wearing scuba gear walks along the edge of a swimming pool. The man,starts talking to the camera and shows the camera various items.,continues immensely through the water and stopping deep in the water.,takes several turns and swims back into the water.,is holding a bikini whose he is holding rubs.,touches the camera putting close ups of sunscreen.,gold0-orig,pos,unl,unl,unl,unl,A man wearing scuba gear walks along the edge of a swimming pool.,The man\nanetv_F2yh5HfIj2c,16827,The man enters the swimming pool and proceeds to place a cover on the drain while under water in the scuba gear. The man,gives a thumbs up.,helps the child under greasy blue water from the window of the tub to the back.,is then shown in slow motion turning off the stool to hide the outline of the vacuum's bed.,holds up a towel and rinses the dishes out of the water to dry.,pulls himself back by frame and swims toward the man with the green dust high body.,gold0-orig,pos,unl,unl,unl,pos,The man enters the swimming pool and proceeds to place a cover on the drain while under water in the scuba gear.,The man\nanetv_F2yh5HfIj2c,16825,The man starts talking to the camera and shows the camera various items. The camera,shows the swimming pool.,moves to the man back on the nails of the man looking down.,pans to different images of sitting down.,shows the different areas of the chart while the man sits behind them.,,gold1-reannot,pos,unl,pos,pos,n/a,The man starts talking to the camera and shows the camera various items.,The camera\nanetv_F2yh5HfIj2c,16828,The man gives a thumbs up. The man,shows the bubbles the tool makes underwater while bobbing his head.,gets to the end and sticks the equipment between someone's washing.,draws the strip off a circle.,uses a brush before filling it up with tools and tools.,balances the stick on the fake.,gold0-reannot,pos,unl,unl,unl,unl,The man gives a thumbs up.,The man\nlsmdc1009_Spider-Man3-76076,3248,\"The broken mirror pieces slot together, becoming the blue sky above New York City. Someone\",\"swings through the air, high above the city streets.\",\"moves on, glancing the length of the stairs and reaching a door into his bedroom.\",\"bursts into driven traffic as it flies along the street, considerably backed.\",fixes his top chair in the back of a van parked by his car.,sits in front of a large ford truck.,gold0-orig,pos,unl,unl,pos,pos,\"The broken mirror pieces slot together, becoming the blue sky above New York City.\",Someone\nlsmdc1009_Spider-Man3-76076,3247,Someone in a long white dress looks reproachfully at someone in the final fractured image. The broken mirror pieces,\"slot together, becoming the blue sky above new york city.\",an enormous computerized to the video.,flops up to the side giant wearing a increasingly attached necklace.,have been sitting in a white circle of heavy water resting on the dingy seats.,helped someone to his feet.,gold0-reannot,pos,unl,unl,unl,unl,Someone in a long white dress looks reproachfully at someone in the final fractured image.,The broken mirror pieces\nanetv_FrVitupq7sQ,5082,Several slow motion scenes are shown performing a correct tennis serve with the men demonstrating right after. The men,do this for several turns with one slow motion of a man performing the trick done afterwards.,continue to play the game back and fourth to one another while going on and speaking to the camera and bite afterwards.,step into the other shots that leads into a man wearing a pair of gloves lifting a large weight over his head.,moves to a hockey room while speaking to the camera and leads into shots of him playing his team mates.,stop playing with another woman talking to take player celebrating while another warrior in the ball walks around and shows how to play.,gold0-orig,pos,unl,unl,unl,unl,Several slow motion scenes are shown performing a correct tennis serve with the men demonstrating right after.,The men\nanetv_FrVitupq7sQ,5081,Two men are seen standing on a tennis court holding rackets and speaking to the camera. Several slow motion scenes,are shown performing a correct tennis serve with the men demonstrating right after.,are shown of a man in a white shirt while speaking to another man in front of him.,are shown of the players shooting in suits.,are shown on the screen followed by several people doing a game of pic and talking to the camera again.,are seen of people in the audience performing martial arts while many watch on the sides.,gold1-orig,pos,unl,unl,unl,unl,Two men are seen standing on a tennis court holding rackets and speaking to the camera.,Several slow motion scenes\nanetv_73n-KuFkH94,10648,Several shots of athletic runners are shown followed by slow motion shots of an athlete running a long jump and celebrating. The camera,pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd.,captures the progress of the act as behind this time followed by many clips more shown of people running down the field.,races to the right by control to score and jumps up into up once again.,watches as the video ends with the players shown before a soccer field posing.,goes back to the man giving the camera a thumbs up.,gold0-orig,pos,unl,unl,unl,pos,Several shots of athletic runners are shown followed by slow motion shots of an athlete running a long jump and celebrating.,The camera\nanetv_73n-KuFkH94,10649,The camera pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd. His jump,is shown several more times followed by other's jumping performing their jump in front of the large crowd.,jumps off and his cheer goes up on the screen.,is shown while more people are getting the jumps off their bikes and doing various tricks.,jumps over a bar while well kicking a ball.,is seen walking along the desert afterwards while showing more speak handshake and clap.,gold1-orig,pos,unl,unl,unl,unl,The camera pans into scenes of men stretching and watching followed by one running down the long jump and cheering to the crowd.,His jump\nlsmdc3025_FLIGHT-11937,13310,\"Later, he sets a case of Budweiser in the passenger seat. He\",gets in the car and unscrews a gallon bottle of vodka.,picks out the tin and stamps across the street someone the car.,locks it on a folded strip of paper.,sits facing a mirror.,goes swiftly and runs a finger through the pond.,gold0-orig,pos,unl,unl,unl,unl,\"Later, he sets a case of Budweiser in the passenger seat.\",He\nlsmdc3025_FLIGHT-11937,13309,As he studies the glass of vodka. He,\"picks it up, and takes a drink.\",pulls a towel out of his shirt pocket and lets it out.,\"gulps the mixture, then turns to her startled face to collect his reaction.\",pours a handful of straws into a drink.,,gold0-orig,pos,unl,unl,unl,n/a,As he studies the glass of vodka.,He\nlsmdc3025_FLIGHT-11937,13319,Someone pulls up to the apartment entrance. He,passes the car with someone's things.,tries on a door and finds it ajar.,leans on a roof.,lights a cigarette from the tip of a small revolver.,steps back to the younger room.,gold1-orig,pos,unl,unl,unl,unl,Someone pulls up to the apartment entrance.,He\nlsmdc3025_FLIGHT-11937,13313,He drives with groggy eyed. Someone,\"drives down a street, beer can in hand.\",takes a swig handing someone to a young boy.,is left on a corner.,strides hastily through the fog - lined streets.,walks close to him.,gold1-orig,pos,unl,pos,pos,pos,He drives with groggy eyed.,Someone\nlsmdc3025_FLIGHT-11937,13314,\"Someone drives down a street, beer can in hand. He\",\"passes a dead - end street, and stops.\",stops at a set of keys on the bench.,\"goes to a window, squinting around looking at the damage.\",spots a record view of the leeds players and heads towards the living room.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone drives down a street, beer can in hand.\",He\nlsmdc3025_FLIGHT-11937,13311,He gets in the car and unscrews a gallon bottle of vodka. He,looks around and drinks from the bottle.,\", someone raises a hood in front of a face, with a gun slung around his neck.\",takes it and drives in through the passenger door.,grabs at one of the juice to massage his way with it.,holds up his bag down a few steps and starts to leave.,gold0-orig,pos,unl,unl,unl,unl,He gets in the car and unscrews a gallon bottle of vodka.,He\nlsmdc3025_FLIGHT-11937,13315,\"He passes a dead - end street, and stops. Someone\",\"looks away, then back at someone.\",\"watches the baled, distraught fight.\",gets out of his car.,\"pauses and looks around, then looks over.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He passes a dead - end street, and stops.\",Someone\nlsmdc3025_FLIGHT-11937,13321,He takes a sip from his beer and looks up. Someone,walks toward the apartment.,peer out the window of an apartment building.,looks out and licks his hands.,with his eyes dart beside someone.,puts soda into her mouth and kisses her.,gold0-orig,pos,unl,unl,unl,unl,He takes a sip from his beer and looks up.,Someone\nlsmdc3025_FLIGHT-11937,13307,A photo of someone appears on the tv behind the bar. Someone,sits at the bar and moves a cocktail napkin back and forth.,cautiously walks out of the house.,follows to the mat.,comes out of a car with a tag wrapped in a t - shirt.,\"continue the switch, and guys spray hangers.\",gold0-orig,pos,unl,unl,unl,unl,A photo of someone appears on the tv behind the bar.,Someone\nlsmdc3025_FLIGHT-11937,13318,As she runs back through a worn fence. Someone,pulls up to the apartment entrance.,\"trips someone into the mass of men in a neck suit, and carry him over to shoot.\",\"gets on his hat, sneaks into the living room and falls to the floor.\",swipes a payphone beside her so she can see it up close as she packs it to them.,glances down beneath the drawer and produces a slip of paper.,gold0-orig,pos,unl,unl,unl,unl,As she runs back through a worn fence.,Someone\nlsmdc3025_FLIGHT-11937,13316,\"Someone looks away, then back at someone. He\",\"watches, as someone loads items in the back of a car.\",whips forward as he sneaks off and faces people.,closes her eyes tightly and walks out.,strips down beside someone and begins to cry.,drops the sword and stares at someone.,gold1-reannot,pos,pos,pos,pos,pos,\"Someone looks away, then back at someone.\",He\nlsmdc3025_FLIGHT-11937,13308,Someone sits at the bar and moves a cocktail napkin back and forth. As he,studies the glass of vodka.,\"strolls into the office, drinks from a seed.\",\"does different comedy, a man nearby turns his head and leaves.\",scratches his ears he does n't acknowledge it.,\"smiles at the image, someone nods in approval.\",gold0-reannot,pos,unl,unl,pos,pos,Someone sits at the bar and moves a cocktail napkin back and forth.,As he\nlsmdc3025_FLIGHT-11937,13320,He passes the car with someone's things. He,takes a sip from his beer and looks up.,\"turns away and races out of the car, sending seven men flying down the road.\",finds someone in the article with the petrol papers.,pulls the limo open for a moment of silence.,,gold1-reannot,pos,unl,unl,unl,n/a,He passes the car with someone's things.,He\nanetv_WiGOn6O-S1g,5109,The divers are getting ready to dive into the pool. One of the divers,dives and jumps into the pool from a great height.,looks back into the jungle.,people jumps on the rope.,does the dive off of the ground.,leaving them jumps and dive in the pool.,gold1-orig,pos,unl,unl,pos,pos,The divers are getting ready to dive into the pool.,One of the divers\nanetv_WiGOn6O-S1g,5108,There are several swimmers standing on the tallest diving board of a swimming pool. The divers,are getting ready to dive into the pool.,\"turn their heads around and then jumped into the pool, pour fish, while people watch, as some of the blonde dives and\",\"imitate each other, as do some boys swimming and mishaps one person as they dive out onto the pool near the camera.\",collide into each other as they continue to recover.,,gold0-orig,pos,unl,unl,pos,n/a,There are several swimmers standing on the tallest diving board of a swimming pool.,The divers\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26071,9190,She takes down one janitor after another. Her final dart hits a janitor's thigh and he,falls from a tall ladder.,starts pressing the shelves again.,looks closely into his trailer.,continues furiously down his rug.,gawks at an intense tv.,gold0-orig,pos,unl,unl,unl,unl,She takes down one janitor after another.,Her final dart hits a janitor's thigh and he\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26071,9191,Her final dart hits a janitor's thigh and he falls from a tall ladder. Later someone,\"drags the janitor across the polished floor, pulling him behind a line of columns.\",\", now moving as his chest fills a punching bag.\",sprays a glass to him.,enters the locker room while the corporate officer stares straight at him and shuts him off.,walks up with someone.,gold0-orig,pos,unl,unl,pos,pos,Her final dart hits a janitor's thigh and he falls from a tall ladder.,Later someone\nanetv_1AxGiLSmGZo,7584,Several people are seen kite surfing along the water and one performing tricks. More people perform tricks and one,\"fall off the side, immediately climbing back on.\",dismounts and cartwheels together until a third girl rides up alongside them.,leads into people surfing in the water.,sliding down the board as others watch on the side.,shoots into the air as well as silhouetted in the distance.,gold0-orig,pos,unl,unl,unl,unl,Several people are seen kite surfing along the water and one performing tricks.,More people perform tricks and one\nlsmdc3053_PARENTAL_GUIDANCE-25625,8803,Now the living room flat screen shows a scary puppet riding a tricycle. Someone,clicks a remote turning it off.,takes the video shot after the left boy.,backs away from them.,kicks a wooden plank into the trunk.,opens the back door and seen in the darkness.,gold0-orig,pos,unl,unl,unl,unl,Now the living room flat screen shows a scary puppet riding a tricycle.,Someone\nanetv_Io1OF2OkTWY,13669,Several clips are shown of the man in a plane with the dog as well as underwater. The man,performs several activities with his dog in hand while a woman speaks to the camera.,continues falling backward while the camera captures three angles and shows his hands and facebook interviews.,applies it all to the dog's legs while the camera zooms back on.,continues messing up and clips wiping off the board over the rim of the boat.,continues talking to the camera while showing more pictures of the people playing.,gold0-orig,pos,unl,unl,unl,pos,Several clips are shown of the man in a plane with the dog as well as underwater.,The man\nanetv_Io1OF2OkTWY,13668,A man is seen speaking to the camera while holding onto a dog in a plane. Several clips,are shown of the man in a plane with the dog as well as underwater.,are shown of two gymnasts performing backwards together.,are shown of the divers skating around the site as well as speaking and performing a flip.,are shown of the waving as well as riding around on the road as well as driving around.,are shown of the dog dogs running around him with people watching on the side.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen speaking to the camera while holding onto a dog in a plane.,Several clips\nanetv_5Qj8hHmZbiI,6720,People are playing beer pong at a party. People,are drinking drinks from the table.,\"are on a court talking, playing squash and playing beer pong.\",is sitting at a table playing beer pong.,are sitting in chairs trying to stand up.,are wearing water outfits.,gold1-orig,pos,unl,unl,unl,unl,People are playing beer pong at a party.,People\nanetv_m--b-Ltjm_Y,13570,A woman is seen helping a person put on a pair of stilts followed by clips of people using the stilts. Several clips,are shown of people running and walking around using the stilts as well as speaking to the camera and helping one another.,are then shown more people jumping stilts and performing training performing martial arts routines.,are then shown of her getting her hair braided down and then wiping it with a brush.,are shown of people running in front of the camera.,are shown of girls performing many tricks with their hands on the city while the camera is still working.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen helping a person put on a pair of stilts followed by clips of people using the stilts.,Several clips\nanetv_m--b-Ltjm_Y,6775,A woman is kneeling down talking the the camera. the woman then,grabs a pair of running stilts and demonstrates them.,shows a small camera with a razor on it.,shows off the vegetables.,runs onto the ladies arms.,begins exercising with steppers.,gold0-orig,pos,unl,unl,unl,pos,A woman is kneeling down talking the the camera.,the woman then\nanetv_m--b-Ltjm_Y,6776,The woman then grabs a pair of running stilts and demonstrates them. several people then,go through a city park on the running stilts.,jump up and do tricks as they move on until her instructor moves off.,begins running down a track wearing a heavy hat.,perform several tricks around and posing in a ballet studio.,,gold0-orig,pos,unl,unl,pos,n/a,The woman then grabs a pair of running stilts and demonstrates them.,several people then\nanetv_Cgquef_qgcs,11038,The man runs down a track with the large pole. He finally pole,volts himself over a bar and onto a mat.,somersaults over two hurdles and lands on top.,vaults and lands balance on a rope hanging on the bars.,balances from the elevated high pole.,\"dangles, then ends on a diving successfully and gets stuck.\",gold0-orig,pos,unl,unl,unl,unl,The man runs down a track with the large pole.,He finally pole\nanetv_Cgquef_qgcs,9038,A person is seen standing before a large track holding a pole. The person,begins running down the track holding onto the pole.,continues running around with the stick.,is then seen running around several times in the end.,spins around and throws a stick off into the distance.,,gold1-orig,pos,unl,unl,unl,n/a,A person is seen standing before a large track holding a pole.,The person\nanetv_Cgquef_qgcs,11037,A man is seen standing with a large pole. The man,runs down a track with the large pole.,does exercise tricks while others jumps down into the pit.,gets off a board in bows and runs down the lane.,throws an object off into the distance.,,gold1-orig,pos,unl,unl,pos,n/a,A man is seen standing with a large pole.,The man\nanetv_e5rZPT7BJas,4972,A person is peeling a sticker off of a white shoe. They,wipe the shoe with a towel.,split the metal and keeps peddling from the wooden block.,rinse the sink and put it over the faucet.,in the car with a brush and put the socks on the ground.,dry the car with a silver scraper.,gold0-orig,pos,unl,unl,unl,unl,A person is peeling a sticker off of a white shoe.,They\nanetv_1JHqxhajh60,16429,A hand is holding a shower head close to a dog. The dog,moves around the bathtub as he tries to bite the water being splashed on him.,stands at a time watch while his leg emerges.,goes over a wash and over the snow.,shows off her hair down a ponytail.,is drying its hair passing it but can not see it.,gold0-orig,pos,unl,unl,unl,unl,A hand is holding a shower head close to a dog.,The dog\nanetv_-u2zAMnrCC4,12767,The man stands up next to the kayak and talks. The girl,gets into the kayak.,helps then demonstrate how to do oar.,adjust his paddles and talks.,skis near the lake.,takes a branch with a hose.,gold1-orig,pos,unl,unl,unl,unl,The man stands up next to the kayak and talks.,The girl\nanetv_-u2zAMnrCC4,12762,A man in a life vest sits on a kayak on the grass. A dog,runs next to him.,stands on the bridge and kayak after sitting on the bars.,\"stands in a rowing, as another man walks into frame.\",jumps in the camel outside of a pile of brown and green grass.,sits in the stands.,gold0-orig,pos,unl,unl,unl,unl,A man in a life vest sits on a kayak on the grass.,A dog\nanetv_-u2zAMnrCC4,8961,The pool knocks over the man and the other begins kayaking down the forest. The men,stand around afterwards and speak to one another.,continue to ride on the skis and ride in slow motion.,continue bouncing on the sled wheeling and one on the side to chase the ball.,continue to block while speaking to the camera by one end.,get out for the camera.,gold1-reannot,pos,unl,unl,unl,unl,The pool knocks over the man and the other begins kayaking down the forest.,The men\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12004,\"Standing, he grabs his tool bag and strides past her to the door. Someone\",stares after him as he hurries out.,spots hundreds of silver ants on the ground.,finds him wearing a hospital gown.,leads someone back to the laundry room where someone lies alone on the quilt.,puts down their candle.,gold0-orig,pos,unl,unl,pos,pos,\"Standing, he grabs his tool bag and strides past her to the door.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12020,Spar lazily looks over from his boulder. Spar,gets to his feet.,\"hurls him down, gripping a spear, knocking him down as he stands helplessly.\",inches up from behind a canvas basket.,blows in in their mouths.,,gold0-orig,pos,unl,unl,unl,n/a,Spar lazily looks over from his boulder.,Spar\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12007,\"Opening it, he puts on his glasses. He\",moves the cursor down the desktop photo of someone and someone to a row of icons at the bottom.,lifts the market his chest.,poses as he exits the truck.,curves a few feet away.,notices shoes in her hand as he watches.,gold0-orig,pos,unl,unl,unl,unl,\"Opening it, he puts on his glasses.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12017,The aging tiger wearily meets his gaze. Someone,turns back to the others.,stands on a swing beside him and primes his side.,\"sits awake, watching the bird.\",stops reading and gazes down at his own eyes.,is still trying to control the mentor.,gold0-orig,pos,unl,unl,unl,unl,The aging tiger wearily meets his gaze.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12008,\"The cursor moves along the monitor's dock to the iPhoto application. Clicking it, someone\",opens an album displaying thumbnail images of family photos.,looks one more time at the glittering pellet barrel.,scrambles to his knees then hops to a knee - labeled difficulty with a open device.,knocks off the items onto the shelf.,,gold0-orig,pos,unl,unl,unl,n/a,The cursor moves along the monitor's dock to the iPhoto application.,\"Clicking it, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12009,\"Clicking it, someone opens an album displaying thumbnail images of family photos. He\",\"opens the first one, then selects full screen.\",fishing at a pen they share faint smacking mouth.,\"looks around for a moment, then turns her eyes back to the dinner table over someone.\",glances around as she strolls along.,takes root like an old subway bomb.,gold0-orig,pos,unl,unl,unl,unl,\"Clicking it, someone opens an album displaying thumbnail images of family photos.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12021,Spar gets to his feet. He carefully,makes his way down.,tosses the sleeve of his fedora to show the dark - lined room and shoves it behind him.,\"wanders over, stands, then flips off with the top of his head.\",picks up his briefcase and pulls it out.,treads unhappily to it to lead through the climbing wall.,gold0-orig,pos,unl,unl,unl,unl,Spar gets to his feet.,He carefully\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,11998,The tiger hangs his head. Someone,\"enters the cage area, unnoticed by someone.\",looks at the wing mirror and someone.,raises a sultry brow and lifts his brow.,gazes at the penguin while someone brittle his modified rifle.,smiles and he giggles.,gold0-orig,pos,unl,unl,unl,pos,The tiger hangs his head.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12002,Someone observes from the end of the cage row. Spar,meets his pleading gaze.,covers the alien with both hands as they pour an hell sized hole through his bangs.,keeps his eyes on someone.,asks to join someone as she rubs it.,,gold1-orig,pos,unl,unl,pos,n/a,Someone observes from the end of the cage row.,Spar\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12005,\"Someone stares after him as he hurries out. Now, someone\",sits at the kitchen island with a laptop in front of him.,stands on the house holding her hands clutching her mobile to her chest.,\"stands in front of someone, looking at his hands and smiling.\",sets a door against someone's neck with her hand trailing in his lap.,sits on a green bench in the parlor.,gold1-orig,pos,unl,unl,unl,pos,Someone stares after him as he hurries out.,\"Now, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12003,\"As someone tries to hold the tiger's gaze. Standing, he\",grabs his tool bag and strides past her to the door.,\"picks up another fish vodka and tries to take it, then strip it in front of the gift sack.\",\"is licking some of his human cream, on their hind leg.\",opens bread and takes his insides out with an aboriginal.,\"presses a paw to his lips, still holding the knife.\",gold0-orig,pos,unl,unl,unl,unl,As someone tries to hold the tiger's gaze.,\"Standing, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12015,\"Now someone runs to Spar's enclosure, joining someone, someone, and someone. He\",heads to the gate.,pieces of yarn are used on their fingernails and trimmed.,gets up and looks away.,stares after her and a hideous smile.,is about to go.,gold0-orig,pos,unl,unl,pos,pos,\"Now someone runs to Spar's enclosure, joining someone, someone, and someone.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12006,\"Now, someone sits at the kitchen island with a laptop in front of him. Opening it, he\",puts on his glasses.,finds an information folder for the wolf dish.,finds someone's belongings and the map.,finds scotty eating bite of cereal.,finds someone sitting at his laptop.,gold0-orig,pos,unl,unl,unl,unl,\"Now, someone sits at the kitchen island with a laptop in front of him.\",\"Opening it, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,11999,\"Someone enters the cage area, unnoticed by someone. The owner\",climbs down from his ladder and faces spar.,\"shows him into the bedroom where someone, wearing yellow feather rimmed, reflects over someone's black wig.\",sidles around and sets down a thicker scale party.,presses his hands together and goes with his gloved hands.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone enters the cage area, unnoticed by someone.\",The owner\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12023,\"As he glances toward someone, she looks away. He\",abruptly turns and walks off.,closes the bridge's door and peeks in.,rubs his hands against his chair and strides over to the wheel.,\"glances at her thoughtfully, then lets herself in.\",blinks and glances waiting.,gold1-orig,pos,unl,unl,unl,pos,\"As he glances toward someone, she looks away.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12011,A lens flare obscures her angelic face with brilliant sunlight. Someone,hovers the cursor over an arrow icon to continue to the next image.,watches smartly but someone snatches her blouse off.,lies curled on the gloved towel.,\"easily picked up the dragon before joining them once more, who rises to stand.\",bites one of the planes off her nails and styles it.,gold1-orig,pos,unl,unl,unl,unl,A lens flare obscures her angelic face with brilliant sunlight.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12010,\"He opens the first one, then selects Full Screen. He\",glides the cursor across a smiling photo of someone with trees behind her.,cocks the computer dial.,pulls his men's backpack up.,grabs another windscreen and runs.,has poured some of the bad luck into his pursuing pack.,gold0-orig,pos,unl,unl,unl,unl,\"He opens the first one, then selects Full Screen.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12019,Someone joins in on the yelling. Spar lazily,looks over from his boulder.,kneels a foot on the floor.,moves on with still eyes.,contemplates his dead mouth.,flies his feet behind him then heads off.,gold0-reannot,pos,unl,unl,unl,unl,Someone joins in on the yelling.,Spar lazily\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12000,\"He glances away, then opens his mouth wide. As he\",gazes sadly at the tiger.,\"drops to his knees, energy flutters up a wave of his hands clinging to fractured powder.\",\"strolls down, his abandoned master comes with someone.\",does a few inches.,,gold1-reannot,pos,unl,unl,unl,n/a,\"He glances away, then opens his mouth wide.\",As he\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12012,His cursor remains on the icon as he gazes at the sun - blanched photo of his wife. He blinks his languishing eyes and his lips,tighten into a frown.,graze for a moment.,curl into a tight liquid.,curl under a tender bubble.,grind into a sidelong smile.,gold0-reannot,pos,unl,unl,unl,pos,His cursor remains on the icon as he gazes at the sun - blanched photo of his wife.,He blinks his languishing eyes and his lips\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12001,As he gazes sadly at the tiger. Someone,observes from the end of the cage row.,pulls the knots of shawl over his goat head.,points at the rippling corner of someone's mouth.,blurry half of someone dons a terrified.,blinks and his eyes blink fast.,gold0-reannot,pos,unl,unl,unl,unl,As he gazes sadly at the tiger.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41444,12022,He carefully makes his way down. Someone,lowers his cupped hands from his mouth.,slips off his words.,removes the tray of handled caution.,stealthily up the street and up the porch light.,stands among a line of half - finished grass.,gold0-reannot,pos,unl,unl,unl,unl,He carefully makes his way down.,Someone\nanetv_B3YfGd4Wt24,16924,A group of kids are seen practicing various cheer leading moves in a gym as well as woman speaking to the camera. Several shots,are shown of the girl's outfits as well as them demonstrating moves.,are shown of people sitting on bikes as well as riding behind an exercise tilted and walking away from one another.,are shown of the boys dancing and speaking to one another and leads into them swimming.,are then shown of people fencing in various martial arts movements.,are shown of people walking around the gym and leads into several shots of people dancing and speaking to one another.,gold1-orig,pos,unl,unl,unl,pos,A group of kids are seen practicing various cheer leading moves in a gym as well as woman speaking to the camera.,Several shots\nanetv_3H7ZS0E90pY,14670,A girl jumps onto a balance beam. She,does a gymnastic routine on the balance beam.,jumps off of stance making them successfully stretching her arms.,hops over a beam onto the balance beam and a noncommittal looking flip toward her upper platform.,runs over and wraps up a heavy rope and knocks to the other.,succeeds on the star beam.,gold0-orig,pos,unl,unl,unl,pos,A girl jumps onto a balance beam.,She\nanetv_3H7ZS0E90pY,14672,She jumps off the beam and lands on the mat with her hands up. A woman in a blue shirt,comes over and hugs her.,is balancing on top of white mat.,stands at a sink.,describes how large the balance beam is missing her.,stands on a mat.,gold0-orig,pos,unl,unl,unl,pos,She jumps off the beam and lands on the mat with her hands up.,A woman in a blue shirt\nanetv_3H7ZS0E90pY,14671,She does a gymnastic routine on the balance beam. She,jumps off the beam and lands on the mat with her hands up.,jumps the beam and dismounts the beam.,stands on the beam and sticks her hands under the beam.,does a flip on the mat.,spins in circles again.,gold0-reannot,pos,pos,pos,pos,pos,She does a gymnastic routine on the balance beam.,She\nlsmdc3037_IRON_MAN2-16344,19036,Someone taps a long - armed robot. Someone,picks up a framed drawing of iron man.,aims his body surreptitiously toward a dead boat's well shaft.,\"stands over glances at someone, studying them features.\",removes the bow's head strap.,places two military urns over the other's feathery helmets.,gold0-orig,pos,unl,unl,unl,unl,Someone taps a long - armed robot.,Someone\nlsmdc3037_IRON_MAN2-16344,19037,Someone picks up a framed drawing of Iron Man. Someone,\"hops onto a counter, removes a painting from a wall, and hangs the iron man poster.\",places his fingers over the abstract painting.,\"sits with his hand on the drum of the chair, staring intently at the band's hands.\",rises from her chair.,sees his tattooed on someone's arm.,gold0-orig,pos,unl,unl,unl,unl,Someone picks up a framed drawing of Iron Man.,Someone\nanetv_-V5_GMuMzc8,11756,A man is sitting in a barber chair. Another man,is giving him a hair cut.,is rubbing the woman in the hair.,uses a brush to brush the dogs hair.,has a tattoo on his breast.,,gold1-orig,pos,unl,unl,unl,n/a,A man is sitting in a barber chair.,Another man\nanetv_-V5_GMuMzc8,11757,Another man is giving him a hair cut. He then,brushes off the mans neck.,explains how to knit your hair.,uses a tool to put product between his legs.,starts to walk on the sidewalk using his stilts.,shows how to slip and shaving.,gold0-reannot,pos,unl,unl,unl,unl,Another man is giving him a hair cut.,He then\nanetv_D8dHEAYIawg,12590,A group of women and a man are playing volleyball in the sand on a beach. They,lob the pink ball back and forth over the net.,are seen fighting and playing volleyball with each other again tossing her skyward and avoiding the black.,are playing soccer on a court.,are playing fond hats.,are now wearing red clothes and is controlling the ball bomb on the beach next to the pool.,gold0-orig,pos,unl,unl,unl,unl,A group of women and a man are playing volleyball in the sand on a beach.,They\nanetv_Snw8Jf1DQwg,16537,A screenshot of a woman wearing a blue jumpsuit is standing in a pose holding two batons and white words on the middle of the screen say 2 Baton Nicole. The woman is now standing on a floor with a lot of colorful lines and dashes and she,\"begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons.\",is standing by gradually.,\"is dancing until she stands up, one doing other moves.\",is doing cartwheels and twirling around the hopscotch table.,\"hops over, putting her shoes on and standing then back to the stage again.\",gold0-orig,pos,unl,unl,unl,pos,A screenshot of a woman wearing a blue jumpsuit is standing in a pose holding two batons and white words on the middle of the screen say 2 Baton Nicole.,The woman is now standing on a floor with a lot of colorful lines and dashes and she\nanetv_Snw8Jf1DQwg,16538,\"The woman is now standing on a floor with a lot of colorful lines and dashes and she begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons. Almost to the end of her routine the woman\",\"drops the baton twice, picks them up and continues to do her routine until the end.\",\"falls in, the little raises legs on the floor, then she can come out while the woman continues dancing.\",\"begins swaying backward onto the mat, and woman carrying a disc up her shoulder and spin around.\",stands up briefly and turns away.,,gold0-orig,pos,unl,unl,pos,n/a,\"The woman is now standing on a floor with a lot of colorful lines and dashes and she begins her 2 baton routine that includes a lot of twirling, spinning, and throwing and catching of the batons.\",Almost to the end of her routine the woman\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60385,7205,\"Someone gives someone a small Crystal Phial. As the Fellowship's boats drift past, someone\",\"stands alone, watching from the banks of the river.\",joins both girls on the raft.,finds the older family room warm and tubman.,eyes the winged boy.,drops a control flag.,gold0-orig,pos,unl,unl,unl,unl,Someone gives someone a small Crystal Phial.,\"As the Fellowship's boats drift past, someone\"\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60385,7203,\"Someone is leading 200 uruk - hai out of Isengard. they run fast, their powerful legs carrying them at speed. The Fellowship\",are in small elven boats.,\"are rough - hewn, across from people.\",is wheeled by a gurney and is busy casting holes in.,emerge without the mortified.,could be tossed across the ice or as someone continues to flee.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone is leading 200 uruk - hai out of Isengard. they run fast, their powerful legs carrying them at speed.\",The Fellowship\nanetv_eepvgF5Fi_Q,9941,People sit at a black jack table. A man,sits behind the table dealing the cards.,simulates in a cart.,in a black shirt plays beer pong.,is then seen removing a coat and presenting it with a hand product.,,gold0-orig,pos,unl,unl,unl,n/a,People sit at a black jack table.,A man\nanetv_9mF5s6_dTlk,18276,He places the iron down. He,takes the paper towel and quickly cleans the piece of wood.,straightens and shaves his chest the result of his creation.,surfaces with a reflection in the holes in the bag of marble.,iron man plays a keyboard.,loosens the pearls around.,gold1-orig,pos,unl,unl,unl,unl,He places the iron down.,He\nanetv_9mF5s6_dTlk,18275,He picks up a paper towel and presses the iron against the piece of wood with one hand while using the other hand to drag a paper towel over the ironed areas of the board. He,places the iron down.,pours it into the bedroom and begins shaving on some fluid.,explains of to make the new material in the morning.,uses a paint pick to get it comfortable to trace the source of the place just scratched up some behind.,hands him a newspaper.,gold0-orig,pos,unl,unl,unl,pos,He picks up a paper towel and presses the iron against the piece of wood with one hand while using the other hand to drag a paper towel over the ironed areas of the board.,He\nanetv_9mF5s6_dTlk,18273,A man in a crowded garage with lots of tools speaks to the camera as he holds a piece of paper. He,\"taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood.\",picks up a lighter and flips in circles in the air until the credits come on in the video.,removes the weight tire and swipes it off with the rubber.,\"then cuts the leg of the man spinning quickly, puts it down and then bumps on.\",,gold1-orig,pos,unl,unl,unl,n/a,A man in a crowded garage with lots of tools speaks to the camera as he holds a piece of paper.,He\nanetv_9mF5s6_dTlk,18274,\"He taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood. He\",puts down the piece of paper and takes the iron tool straight to the piece of wood.,starts to carve the knife.,shows what will be up showing and demonstrates the proper technique about it.,begins to move the wax evenly across the excess in order to clean the surface.,remove some drawings and use wads of wallpaper and clean them out as instructions cut on the paper and tighten off the ribbon.,gold0-reannot,pos,unl,unl,unl,pos,\"He taps a paper, continuously, on a iron type tool and brushes the paper against a long piece of wood.\",He\nanetv_uXX2lSVAXq8,8877,A medical processional puts a device and needle in someones face. It,is actually a piercing.,go from the woman's dancers.,looms the window of the salon.,shows the press of the digital tree.,\"bellows, sending someone by a chair.\",gold0-orig,pos,unl,unl,unl,pos,A medical processional puts a device and needle in someones face.,It\nanetv_XKpx9fyNINg,10779,A close up of a person putting on a rack is shown followed by several women lifting up large amounts of weight. More people,are seen lifting up the heavy weights over their head and throwing it down when they are done.,are shown in clips around a gate and one person is seen walking along tiles with one person running after that.,are seen riding down down the mountain.,are seen working around as well as jumping on a machine and performing a tango routine while the camera roars to a stop.,are seen sitting behind the car next to them.,gold0-orig,pos,unl,unl,unl,unl,A close up of a person putting on a rack is shown followed by several women lifting up large amounts of weight.,More people\nanetv_91ozOcjKl5M,15964,He adds pasta to a large pot on the stove. He,starts cooking in a pan on the stove.,vegetables housed a pot mix into a pot mixing ingredients.,stirs more water on a plate.,pours some noodles in a pan.,is saying the next for a pasta recipe.,gold1-orig,pos,unl,unl,pos,pos,He adds pasta to a large pot on the stove.,He\nanetv_91ozOcjKl5M,15965,He starts cooking in a pan on the stove. He,covers the pan with a lid.,sprays the counter with a towel.,eats a omelette on a plate.,pours oil into the pot.,,gold0-orig,pos,unl,pos,pos,n/a,He starts cooking in a pan on the stove.,He\nanetv_91ozOcjKl5M,15962,Ingredients are shown on a sliver platter. A man,begins chopping food on a black chopping board.,is seen washing a knife using water and trimming it with liquid.,\"talks in front of a sink, interspersed with various ingredients together.\",\"is putting a chocolate top, using various tools.\",,gold0-orig,pos,unl,unl,pos,n/a,Ingredients are shown on a sliver platter.,A man\nanetv_91ozOcjKl5M,15963,A man begins chopping food on a black chopping board. He,adds pasta to a large pot on the stove.,is then cutting the top of a hookah and puts it on the stove.,mix the garlic on the bread and drags them into the bowl.,is finished mashing the potatoes.,,gold1-orig,pos,unl,pos,pos,n/a,A man begins chopping food on a black chopping board.,He\nanetv_91ozOcjKl5M,15967,He puts the pasta into a bowl. He,pours the sauce on top of the pasta.,pours the lemon juice in the sink and rubs it.,pours oil into two bowls in a bowl.,pours it into the garnished pan.,dumps the ingredients into a cup.,gold0-orig,pos,unl,unl,pos,pos,He puts the pasta into a bowl.,He\nanetv_91ozOcjKl5M,15966,He covers the pan with a lid. He,puts the pasta into a bowl.,sprinkles tomatoes on top.,takes his cigarette and swishes it.,slides it lid onto a plate.,\"notices the grin, which lies on facing it.\",gold0-reannot,pos,unl,unl,unl,unl,He covers the pan with a lid.,He\nanetv_xm01x3C3RJo,9196,A girl pours water onto the dog out of a cup. She,rubs shampoo on the dogs fur.,holds a hose in a tub with the hose.,sprays the bowl back with it and sets it on the table.,puts water on the bottom of the pot.,stirs the noodles with a spoon.,gold0-orig,pos,unl,unl,unl,unl,A girl pours water onto the dog out of a cup.,She\nanetv_xm01x3C3RJo,9195,A dog is put into a bath tub. A girl,pours water onto the dog out of a cup.,drinks the pink tub full of shampoo and cleaner.,puts down the water on her belly in a sink.,folds up her clothes using a toothbrush.,picks up a cleaning solution and brushes a shoe.,gold0-orig,pos,unl,unl,unl,unl,A dog is put into a bath tub.,A girl\nanetv_xm01x3C3RJo,9197,She rubs shampoo on the dogs fur. She,dries the dog off with a towel.,dance around and ends with her holding the frisbee held by the dog.,swings her facial flames around.,dusts away the water with her hair.,brushes her hair while looking at the camera.,gold1-orig,pos,unl,unl,unl,unl,She rubs shampoo on the dogs fur.,She\nanetv_fh68-PXZ9Oo,11102,The man and dog perform tricks with one another back and fourth. The man,continues to perform tricks with the dog and frisbee.,continues jumping rope between the cones.,throws the frisbee and the dog runs after the dog.,backs up the dog.,continues doing tricks with the dog jumping around the dog and off on his legs.,gold0-orig,pos,unl,unl,unl,unl,The man and dog perform tricks with one another back and fourth.,The man\nanetv_fh68-PXZ9Oo,11101,A man is seen throwing several frisbee to a dog in a back yard. The man and dog,perform tricks with one another back and fourth.,fur the leash around the dog and the dog chases after it.,continue to throw the dog off onto the side.,performs tricks and ends by jumping up and bowing to the camera.,struggle on as well as people with running dogs.,gold0-orig,pos,unl,unl,unl,unl,A man is seen throwing several frisbee to a dog in a back yard.,The man and dog\nanetv_fh68-PXZ9Oo,2419,The man does jumps and flips with the dog while still throwing the frisbee. The man,continues to throw the object around with the dog jumping on him in the end.,spins and jumps again tricks with another dog.,continues running while the woman continues to jump.,ties the dog around the neck and picks up the frisbee.,,gold0-orig,pos,unl,unl,pos,n/a,The man does jumps and flips with the dog while still throwing the frisbee.,The man\nanetv_fh68-PXZ9Oo,2418,A man is seen standing in a field throwing a frisbee around with a dog. The man,does jumps and flips with the dog while still throwing the frisbee.,spins and whips his teammates around as another person is seen.,continues hitting with the dog and ends with the dog flying away.,spins around throwing the frisbee with the dog and piecing it multiple times.,continues to grab the frisbees and showing them to the dog.,gold0-orig,pos,unl,unl,unl,pos,A man is seen standing in a field throwing a frisbee around with a dog.,The man\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17919,\"He points to a large banner reading Prodi - G, then notices a pretty girl in the crowd. She\",rolls her eyes and leaves.,\"signals to someone, motioning to him to follow her though the sound of war.\",works as the film cuts and he spins and figures it open with wings.,closes her eyes and gives him a high five.,sees his score by a tuxedo.,gold1-orig,pos,unl,unl,unl,unl,\"He points to a large banner reading Prodi - G, then notices a pretty girl in the crowd.\",She\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17920,The rapper's mic goes dead. Someone,beckons him from behind the stage.,leaps at the stairs.,lies in bed beside him.,spins on his feet.,\"looks over, hiding his back.\",gold0-orig,pos,unl,unl,unl,unl,The rapper's mic goes dead.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-13,17921,Someone beckons him from behind the stage. Someone,goes over to his stepfather with two friends.,swings the wooden bat skyward.,loses his suit and leans toward someone.,\"looks away from their seats, smiling.\",'s grins extends along the singer.,gold0-orig,pos,unl,unl,pos,pos,Someone beckons him from behind the stage.,Someone\nanetv_GTxmHim5JnY,14532,Two children twirl on a tire swing. Another child,is swinging in another swing set.,slide down the slide at pops other.,leaps onto the boy on the other side and they stand clapping.,bends down to sit down but like a kid on the ground.,paddles down behind her.,gold0-orig,pos,unl,unl,unl,unl,Two children twirl on a tire swing.,Another child\nanetv_GTxmHim5JnY,14533,Another child is swinging in another swing set. A very small child,runs through the play area.,stands and show as they bounce and rake.,is swinging over the playground and begins to slide.,is seen getting the dirt from in a swing while a man attempts to hit at the pinata at the end time.,is seen swinging a large baby in the air and swinging out and landing on a piece of concrete.,gold0-orig,pos,unl,unl,unl,unl,Another child is swinging in another swing set.,A very small child\nanetv_tTBbFGv9emI,12403,A man cuts the center of a log with an ax while standing on the log. The man,stands on the log holding the ax with the right hand.,lassos the calf over the pole and to put him on the floor.,mixes all other objects together in a bag throwing them off with a knife.,continues to spread with the knife.,paints on the wood using an electrical cutter.,gold0-orig,pos,unl,unl,unl,unl,A man cuts the center of a log with an ax while standing on the log.,The man\nanetv_tTBbFGv9emI,12405,\"Then, the man continues cutting the log. After, two people walk on front the man, and one\",takes loosed wood from the log.,goes over the wall on the top of the tree.,hand on the horse slice on the other.,man tulle him with a hand.,does a back bend.,gold0-reannot,pos,unl,unl,unl,unl,\"Then, the man continues cutting the log.\",\"After, two people walk on front the man, and one\"\nanetv_FZk40J_drws,8599,Various shots of a person running after dark are shown ranging from the bridge onto a city as well as a long beach. The person,keeps running through the city while the camera captures him from several angles.,\"walks further into a river which is mostly black and combed by people, more shrubbery.\",is then seen jumping boarding from a distance and is then shown again again.,rides in with the car and being shown.,uses a skateboard to hang on the pole as the others watch.,gold0-orig,pos,unl,unl,unl,unl,Various shots of a person running after dark are shown ranging from the bridge onto a city as well as a long beach.,The person\nanetv_FZk40J_drws,19301,He runs along city streets and the Hollywood Walk of Fame. He,runs up a steep hill as the sun starts to rise.,strolls up to the bar after class and opens the bay.,strolls in entourage of the beast's house.,sinks in and spots someone.,sits by mechanical black balloons floating along the pavement toward us.,gold0-orig,pos,unl,unl,unl,unl,He runs along city streets and the Hollywood Walk of Fame.,He\nanetv_FZk40J_drws,19300,He runs across a long bridge towards a city. He,runs through a long two lane tunnel.,steps over the balcony and spies someone on his way out.,leaps off a passing gated gate and flips side to side.,remains on the floor as the man dance faster.,\"arrives at the edge of the way, ascending and dirt winds all along a city street.\",gold0-orig,pos,unl,unl,unl,unl,He runs across a long bridge towards a city.,He\nanetv_FZk40J_drws,19298,A man picks up a stone on the beach. He,takes a run along the beach in early evening and passes a seal.,\"stands on the ladder, ready to wax it on the wood.\",picks up a rope and flies forward from it.,rips the ring off his finger and plays the various outdoor like wood.,surfs a wave that fall behind one another.,gold0-orig,pos,unl,unl,unl,unl,A man picks up a stone on the beach.,He\nanetv_FZk40J_drws,19302,He runs up a steep hill as the sun starts to rise. The man,drops the stone from the beach on top of the hill.,closes the lid on the closing window.,turns towards someone and starts to walk down the path.,walks away but fails.,,gold0-orig,pos,unl,pos,pos,n/a,He runs up a steep hill as the sun starts to rise.,The man\nanetv_FZk40J_drws,19303,The man drops the stone from the beach on top of the hill. Video of him running as the words Join me appear on screen and he,tries to pet the seal.,'s shown of his bike.,is inside the studio talking.,lands in front of a trampoline on the other side.,,gold0-orig,pos,unl,unl,pos,n/a,The man drops the stone from the beach on top of the hill.,Video of him running as the words Join me appear on screen and he\nanetv_FZk40J_drws,19299,He takes a run along the beach in early evening and passes a seal. He,runs across a long bridge towards a city.,goes to the camera as he takes in a deep.,\"pauses, as a woman cap sets up and near his eyes.\",\"looks up in different directions, he is followed by someone.\",goes outdoors outside a gate.,gold1-reannot,pos,unl,unl,unl,unl,He takes a run along the beach in early evening and passes a seal.,He\nlsmdc3059_SALT-28817,15979,Spies the pursuing suv then runs off between two lanes of unmoving cars. Someone,speeds off between the lanes of traffic.,follows someone into the truck.,glances on one of the officers and they veer over their drivers as they remain fixed on the car.,enters a sedan and runs off.,turns his suv back to the chase.,gold0-orig,pos,unl,unl,unl,pos,Spies the pursuing suv then runs off between two lanes of unmoving cars.,Someone\nanetv_8QbHeaXOJOA,11859,A man is holding the kite before letting it go. It,\"spins high into the air and flips in circles and angles, bouncing off the ground.\",separates and lands on a spare.,snowmobiles down the hills near the hill.,\"rocks multiple times, then moves faster.\",is shown in the sky with a little girls who is also off the wakeboard across the park.,gold0-orig,pos,unl,unl,unl,unl,A man is holding the kite before letting it go.,It\nanetv_8QbHeaXOJOA,11858,A kite is shown high in the air. A man,is holding the kite before letting it go.,is seen flying his face in and out of water.,is snowboarding down a hill.,jumps from the boat and is replayed again several times in slow motion.,is seen speaking to the camera on the sidewalk and leads into several more shots of people riding down the river.,gold0-orig,pos,unl,unl,pos,pos,A kite is shown high in the air.,A man\nlsmdc0010_Frau_Ohne_Gewissen-51627,12516,She switches off the porch light and the hall light. She,\"moves towards the living room, where there is still light on.\",\"reaches her door, and reaches inside as she enters.\",takes out a lit cigarette and smokes as she snorts smoke and turns it in the opposite direction.,\"enters the house, walks right in and goes around the living room.\",,gold0-orig,pos,unl,pos,pos,n/a,She switches off the porch light and the hall light.,She\nlsmdc0010_Frau_Ohne_Gewissen-51627,12514,\"She wears white lounging pajamas, and she is carrying something small and heavy concealed in a scarf in her right hand. She\",\"reaches the front door, opens it slightly, fixes the catch so that the door can be opened from outside.\",is standing in a pan sitting outside the bed.,and someone run out of the kitchen and go down to a box rest on the tree.,turns and heads in another direction.,glares at her as she looks off into the distance.,gold0-orig,pos,unl,unl,pos,pos,\"She wears white lounging pajamas, and she is carrying something small and heavy concealed in a scarf in her right hand.\",She\nlsmdc0010_Frau_Ohne_Gewissen-51627,12512,The lights are turned on. Someone,is coming down the stairs.,has a bouquet of hearts on it.,\"pivots the chair, pulls himself a large iron from his shirt and sets it on his desk.\",\"sprawls on the ceiling, with someone.\",gives a smirk and steps into the kitchen.,gold0-orig,pos,unl,unl,unl,unl,The lights are turned on.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51627,12513,\"Someone is coming down the stairs. She wears white lounging pajamas, and she\",is carrying something small and heavy concealed in a scarf in her right hand.,is brushing the bottom of her bangs.,has a picture of her face and a portrait of a missile - in office.,\"covers a pretty black shotgun, gazing at the statue of liberty, and showing it's almost six - glass.\",\"is a brooding, cold butler, changed in wife, a simple summer evening in.\",gold0-reannot,pos,unl,unl,unl,unl,Someone is coming down the stairs.,\"She wears white lounging pajamas, and she\"\nlsmdc3034_IDES_OF_MARCH-2810,16444,\"As he and his dark - haired colleague exit onto a college campus, a title appears. A roadside sign\",\"reads, pullman, america's future begins march 15.\",\"reads, welcome, photos and thanksgiving party.\",shows a sign of a man striking gas.,\"reads, command unit, look for jewish identification.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"As he and his dark - haired colleague exit onto a college campus, a title appears.\",A roadside sign\nanetv_TscC5kgurqY,2625,We see a man talking into a camera. We,see a table full of bowls of food.,see a man riding in a carriage in a backyard.,dance is a series using a room with guitars being played in a dimly lit small room.,man laughs and drinks the coffee.,,gold0-orig,pos,unl,unl,pos,n/a,We see a man talking into a camera.,We\nanetv_TscC5kgurqY,18901,A table is covered in an array of food items in plates and bowls. The chef,\"talks about the food, and how to use it in an omelette.\",stands and talks to people measuring plate bowls.,puts a knife on top of a table and places the panels under the door.,puts on a salad and bowls several knives on a counter.,,gold0-orig,pos,unl,unl,pos,n/a,A table is covered in an array of food items in plates and bowls.,The chef\nanetv_TscC5kgurqY,2628,We see a man making omelets. The man,makes an omelette and puts it on a plate.,puts shots of paint on a wall.,walks to the front of the roof.,stops dancing and talks to a speaker.,starts painting the wall bell.,gold0-orig,pos,unl,unl,unl,unl,We see a man making omelets.,The man\nanetv_TscC5kgurqY,18900,A man is shown speaking with another man. A table,is covered in an array of food items in plates and bowls.,replay shows toys around the circle.,is seen as well as a cat moving in and out of frame.,is seen followed by a man playing a guitar and speaking to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A man is shown speaking with another man.,A table\nanetv_TscC5kgurqY,2629,The interviewer makes an omelette. The chef,jumps and puts his arms in the air.,demonstrates a part of a methods of creamy peel.,scoops us the ingredients in a plates and makes a sandwich.,mix the ingredients for the bowl bowls.,,gold0-orig,pos,unl,unl,pos,n/a,The interviewer makes an omelette.,The chef\nanetv_TscC5kgurqY,2630,The two men shake hands. We then,see the ending screens.,see men cutting grass in an outdoor shop.,see both fencers braiding.,see them leave their desks and kneel down in the sand.,see the boys wrestling and the people wrestle.,gold0-reannot,pos,unl,unl,unl,pos,The two men shake hands.,We then\nanetv_TscC5kgurqY,2626,We see a table full of bowls of food. We,see the man talk to the other again.,see the table and plates.,a man talks and shows a caulk.,see a man playing a plate.,,gold1-reannot,pos,unl,unl,unl,n/a,We see a table full of bowls of food.,We\nanetv_1GzrcmQ5Pcc,12874,A woman is holding a camera taking a picture. A woman in a blue shirt,poses with a man for a picture.,walks down and walks with him also excited.,is sliding down on the beach.,is in a similar bathtub.,is looking at them through a mirror.,gold0-orig,pos,unl,unl,unl,unl,A woman is holding a camera taking a picture.,A woman in a blue shirt\nanetv_1GzrcmQ5Pcc,12873,People are running around playing dodge ball. A woman,is holding a camera taking a picture.,threw something all over the court.,walks over to the rake.,hits the ball and hits the ball which it bounced to someone's hands.,is in a roofed gym and is standing in front of an audience.,gold0-reannot,pos,unl,unl,pos,pos,People are running around playing dodge ball.,A woman\nanetv_WsXxnCQ_MIc,16008,The woman begins by removing a terry cloth turban from her head and revealing a wet may batch of hair. The woman then,begins to put section of her hair in twist braids.,wipes the paste on the top paw using a final tool for tools.,peels the cloth from the wall paper while shoveling it with sticky tissue.,\"puts two reading bottle to rim, then flips the wallpaper down.\",adds the red cut and severe headset to her earring.,gold0-orig,pos,unl,unl,unl,unl,The woman begins by removing a terry cloth turban from her head and revealing a wet may batch of hair.,The woman then\nanetv_WsXxnCQ_MIc,16009,The women then starts blowdrying sections of her hair with a comb attached blow dryer. The woman,swings her straightened hair and smiles.,uses a comb dryer to strands the hair of the dog.,uses blow dryer to fiddle the lens with her hand.,continues to demonstrate arm comb with the bangs dryer as she styles appreciatively.,steps out with the razor at the end of the blow dryer on her hair.,gold0-reannot,pos,unl,pos,pos,pos,The women then starts blowdrying sections of her hair with a comb attached blow dryer.,The woman\nanetv_9jFyJhik9VM,5876,A person goes windsurfing on a lime green board in a body of water. The person,does a few spins.,takes off his father's board.,drops close first to the left.,zooms in in the square area.,slides down the board very fast and crashes into the water.,gold0-orig,pos,unl,unl,unl,pos,A person goes windsurfing on a lime green board in a body of water.,The person\nlsmdc0020_Raising_Arizona-57454,13540,\"She tiptoes into the trailer, hand to her mouth. Someone, rubbing his cheek,\",seems angry at himself.,puts his hands to his pockets.,stands up and makes his way down to the deck.,looks around at the family present which pretends to notice.,reaches around and hangs his book.,gold0-orig,pos,unl,unl,unl,unl,\"She tiptoes into the trailer, hand to her mouth.\",\"Someone, rubbing his cheek,\"\nlsmdc0020_Raising_Arizona-57454,13534,\"Feeling the look, he goes back to his cornflakes. Someone\",leans back to blow smoke at the ceiling.,\"continues on, but someone suddenly pretends to bolt down the railing.\",man uncomfortably is nearby sketchpad ostrich fuming.,\"takes his wedding ring on a covered plinth, then throws it upside down.\",\"looks at the window, bewildered, then walks away from the other passengers.\",gold1-orig,pos,unl,unl,unl,pos,\"Feeling the look, he goes back to his cornflakes.\",Someone\nlsmdc0020_Raising_Arizona-57454,13542,\"Someone at the top of the stoop, turns out to the yard. A scad of children, ranging in age from two to seven,\",are crawling over someone's car.,joins the first house built man walks from the porch.,\"are on beating at the barbecue mushrooms' bush, hulte arrest.\",\"are on line of it, with cozy - collared, cast - like carcass.\",sits toward a small table across a grassy barn.,gold1-orig,pos,unl,unl,unl,pos,\"Someone at the top of the stoop, turns out to the yard.\",\"A scad of children, ranging in age from two to seven,\"\nlsmdc0020_Raising_Arizona-57454,13548,\"Someone looks over at the tv, which the bam - shouting six - year - old is banging with his stick. The kid in the cowboy hat\",is reaching up to slap someone on the ass.,\"drops the gun and someone switched off, bright red fingers clenching and blue robes and protective gear.\",pour his candy sack into the woods and at someone who really yells at him.,falls to the floor of the kid.,gets up from the chalk.,gold0-orig,pos,unl,unl,unl,unl,\"Someone looks over at the tv, which the bam - shouting six - year - old is banging with his stick.\",The kid in the cowboy hat\nlsmdc0020_Raising_Arizona-57454,13541,\"Someone, rubbing his cheek, seems angry at himself. Someone at the top of the stoop,\",turns out to the yard.,leans across the desk and sets windows down.,difficult now that it seems like a man would be unconscious in a wheelchair.,rocks survey the oncoming car and welcomes the parked driver.,gestures directly to his chest.,gold0-orig,pos,unl,unl,pos,pos,\"Someone, rubbing his cheek, seems angry at himself.\",\"Someone at the top of the stoop,\"\nlsmdc0020_Raising_Arizona-57454,13547,\"The track weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator. He\",raises his voice to make himself heard over the din of all the children boiling around the room.,munches 5 sticks candles struggling to get clear.,holds on the bottom to the bank.,eyes him with an infected look.,chucks the rubber ball onto the ground.,gold1-orig,pos,unl,unl,unl,unl,\"The track weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator.\",He\nlsmdc0020_Raising_Arizona-57454,13543,\"A scad of children, ranging in age from two to seven, are crawling over someone's car. One is beating on it with a large stick, another\",\"sits on the hood pulling back one of the windshield wipers, etc.\",tear runs down someone's eyes.,pig approaches the grill.,along a blue tank.,bottle is opened on the bookshelf.,gold0-orig,pos,unl,unl,unl,unl,\"A scad of children, ranging in age from two to seven, are crawling over someone's car.\",\"One is beating on it with a large stick, another\"\nlsmdc0020_Raising_Arizona-57454,13546,\"The weaving knee - level tracking shot is following a six - year - old boy in shorts and a dirty T - shirt as he tramps around the trailer, brandishing a big stick. The track\",\"weaves off him and onto someone, who is bending down to pull a couple of beers from the refrigerator.\",spins and jumps around a few feet and the rhythm until it stops.,stops tearing down his backpack.,wrestles into him as he stumbles down the street toward the body of the security.,proceeds across the bridge and hides within a ring.,gold0-orig,pos,unl,unl,unl,unl,\"The weaving knee - level tracking shot is following a six - year - old boy in shorts and a dirty T - shirt as he tramps around the trailer, brandishing a big stick.\",The track\nlsmdc0020_Raising_Arizona-57454,13545,\"As people enter, someone beaming as they go to the crib. She\",\"puts her hand to her forehead, reacting to the baby as if she is about to faint.\",holds back the candle.,proudly under her silky suit.,walks back into her cabin.,\"turns to someone, who gawks hopefully.\",gold0-orig,pos,unl,unl,pos,pos,\"As people enter, someone beaming as they go to the crib.\",She\nlsmdc0020_Raising_Arizona-57454,13538,Someone spins and smacks someone across the face with her purse. He,reels under the blow.,advances on her and his head shot nothing.,tips back a face.,gives a tentative chuckle.,flashes a shy smile.,gold0-orig,pos,unl,unl,pos,pos,Someone spins and smacks someone across the face with her purse.,He\nlsmdc0020_Raising_Arizona-57454,13535,\"Someone leans back to blow smoke at the ceiling. Someone, with someone standing by,\",is just opening the door to a young couple.,\"thumps her roommate's stomach, screams and tears fall from the windows.\",\"pours something to the darkness, and stops himself.\",reaches at his side through the spheres.,looks underwater until he sees.,gold1-orig,pos,unl,unl,unl,unl,Someone leans back to blow smoke at the ceiling.,\"Someone, with someone standing by,\"\nlsmdc0020_Raising_Arizona-57454,13537,\"From behind, someone gives her an energetic thwok on the ass. Someone\",spins and smacks someone across the face with her purse.,spot someone who's sitting on the sofa.,is dreaming of his throw to a bowl.,sees her staring at it.,\"lifts someone's white blouse off the ground, smiling artist.\",gold0-orig,pos,unl,unl,pos,pos,\"From behind, someone gives her an energetic thwok on the ass.\",Someone\nlsmdc0020_Raising_Arizona-57454,13544,\"One is beating on it with a large stick, another sits on the hood pulling back one of the windshield wipers, etc. As people enter, someone\",beaming as they go to the crib.,takes their scrap of paper with someone.,drops his mug to someone's romantic brand.,\"bursts out through some coins in the lobby, recalls a film with black stickers on it.\",\"takes in the gardening as someone, in his jacket, joins in lights.\",gold1-reannot,unl,unl,unl,unl,unl,\"One is beating on it with a large stick, another sits on the hood pulling back one of the windshield wipers, etc.\",\"As people enter, someone\"\nlsmdc0020_Raising_Arizona-57454,13536,\"Someone is a short stocky blond man in his early thirties, wearing Bermuda shorts. Someone\",\"is wearing slacks, heels, and a scarf over her hair.\",\"is a stack of cigar books near the wall, cafe.\",whispers to the table.,is dancing amongst.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone is a short stocky blond man in his early thirties, wearing Bermuda shorts.\",Someone\nanetv_GvJxJf4m6_M,17748,\"Then, the man puts the right leg on a chair and bend to pretend put on socks. Then, the man\",take a rod to help enter the feet in the shoes.,lay the stick across the floor and tied weak ground paper.,\"pushes the towel along the leg of the armrest, after the young man stare at the camera and the credits begins.\",irons the smaller bars on the wooden barrow.,watches with an iron and the man remove the leg or shoes.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man puts the right leg on a chair and bend to pretend put on socks.\",\"Then, the man\"\nanetv_GvJxJf4m6_M,17747,\"A man stands behind a pair of shoes while touching his back and talking. Then, the man\",puts the right leg on a chair and bend to pretend put on socks.,talks again and then cleans the mirror putting shoe cloth on the eye.,wipes him hands and light a shoe and then gets to the front of the suit.,holds a shoe of detergent and tie the shoe and stands up.,,gold0-reannot,pos,unl,unl,unl,n/a,A man stands behind a pair of shoes while touching his back and talking.,\"Then, the man\"\nanetv_GvJxJf4m6_M,13022,The man then pulls up his sock and uses a pole on his leg. He,lifts his leg up and then back down again.,repeats it and gets the position he can really want that.,kicks it and split again.,kicks away afterwards as well.,,gold0-reannot,pos,unl,unl,pos,n/a,The man then pulls up his sock and uses a pole on his leg.,He\nanetv_O0nOzufJ_OM,4975,Two straight attempts featuring a powerful spin result in the the discus flying far both times. This,is followed by more photos.,aged man is less deadly hitting the ball and throwing down he ball.,\"succeeds in the tugboat and slams them on the ground, dodging.\",happens between the players's hands to a sideways motion that is displayed extremely individual dressed around the world.,,gold0-orig,pos,unl,unl,unl,n/a,Two straight attempts featuring a powerful spin result in the the discus flying far both times.,This\nanetv_O0nOzufJ_OM,4974,\"More photos play, showing the competitor in different positions. Two straight attempts\",featuring a powerful spin result in the the discus flying far both times.,sport over the course and celebrate.,appear next then video from slow motion.,fall in after picture of various people doing shot at one another as many other athletes.,,gold0-orig,pos,unl,unl,unl,n/a,\"More photos play, showing the competitor in different positions.\",Two straight attempts\nanetv_O0nOzufJ_OM,4973,An attempt with him twirling rapidly begins and the discus launches. More photos,\"play, showing the competitor in different positions.\",continue to show off the crowd throwing the players.,falls on his face.,are shown hundreds of red flags.,,gold0-orig,pos,unl,unl,pos,n/a,An attempt with him twirling rapidly begins and the discus launches.,More photos\nanetv_O0nOzufJ_OM,4976,This is followed by more photos. Another attempt,\"plays, followed by another slate of photos.\",is recorded on the plane.,\"is shown at the bottom, and some letters appear on the screen before remaining foundation of the channel.\",is being shown in style.,,gold0-orig,pos,unl,unl,pos,n/a,This is followed by more photos.,Another attempt\nanetv_7PSicg5Q2ZI,881,She cuts a lemon in half. She,laughs a lot throughout the video.,pops it out of her mouth.,pours more cream into the oven.,pours the spaghetti into the pot.,,gold0-orig,pos,unl,unl,pos,n/a,She cuts a lemon in half.,She\nanetv_7PSicg5Q2ZI,879,A woman in a green shirt stands in a kitchen. She,stands in front of several ingredients.,throws the pasta through the sink.,is making various ingredients into a pot.,is putting something into a green bowl.,pours pasta into the bowl.,gold0-orig,pos,unl,pos,pos,pos,A woman in a green shirt stands in a kitchen.,She\nanetv_7PSicg5Q2ZI,880,She stands in front of several ingredients. She,cuts a lemon in half.,touches unexpectedly un - winged.,points the knife together.,pours the food into a chocolate container.,mops her hip way using an electric toothbrush.,gold1-orig,pos,unl,unl,unl,unl,She stands in front of several ingredients.,She\nanetv_RGVDeXqN1ao,10332,She cuts a rectangular piece of the Cellophane and place the pot over it in the center. Then she,brings to together the edges of the cellophane towards the top of the plant.,puts the sheet down on the tree.,takes the knife and puts it on one end on an ironing board.,\"wraps the cookies together in the saucepan, using a large knife.\",cuts the wallpaper with the small slat to put any excess glowing paper on.,gold0-orig,pos,unl,unl,unl,unl,She cuts a rectangular piece of the Cellophane and place the pot over it in the center.,Then she\nanetv_RGVDeXqN1ao,10331,A woman dressed in a black shirt representing the company Bents is standing in a garden and demonstrating how to use Cellophane to wrap a plant for gift purposes. She,cuts a rectangular piece of the cellophane and place the pot over it in the center.,switch to foods in the christmas room outdoors.,is the woman using the rod that include the trimmer and much power that it needs to get it in place.,shows a wrap on the wrapping paper and shows how to add the seam to the ocean.,,gold0-orig,pos,unl,unl,unl,n/a,A woman dressed in a black shirt representing the company Bents is standing in a garden and demonstrating how to use Cellophane to wrap a plant for gift purposes.,She\nanetv_RGVDeXqN1ao,10333,Then she brings to together the edges of the Cellophane towards the top of the plant. She,takes a decorate piece of ribbon to tie the scrunched up cellophane together to make it look like a bow on top.,then use the sticks to spread it underneath as a kimono grabs them in the end.,puts the decked stick on the table and make a basket till the end of the pinata.,goes but does n't go to the new portion.,\"creates a nice, sized dress, wraps up and places it on a small loaf of wrapping paper.\",gold0-orig,pos,unl,unl,unl,unl,Then she brings to together the edges of the Cellophane towards the top of the plant.,She\nlsmdc1031_Quantum_of_Solace-84378,9179,\"His head slumps against someone's shoulder. Expressionlessly, someone\",feels for a pulse.,\"watches him walk into a clearing, blowing crocodile leaves on the house.\",heads for his car.,gazes earnestly at the soldiers.,drives and looks down at the gates.,gold0-orig,pos,unl,pos,pos,pos,His head slumps against someone's shoulder.,\"Expressionlessly, someone\"\nlsmdc1031_Quantum_of_Solace-84378,9181,\"They walk off, leaving the body slumped amid the rubbish bags in the dumpster. The Range Rover\",heads down a desert highway.,\"is settled by a soldier in a haze, shooting out one of the recruits.\",\"walks through a market, turns into the exit.\",approaches a blonde figure resembling in central space concerned uniform.,swings the heavy trunk of the jungle to its human then moves on to the base of the parked car and clouds the air.,gold0-orig,pos,unl,unl,unl,unl,\"They walk off, leaving the body slumped amid the rubbish bags in the dumpster.\",The Range Rover\nlsmdc1031_Quantum_of_Solace-84378,9182,The Range Rover heads down a desert highway. The Range Rover,\"drives through the dusty, barren.\",slides outside onto all fours as the convoy passes by.,passes between the lanes and hooks straight ahead.,\"trundles down the middle of a narrow lane, whipping the roadster with a handle.\",turns white bulk away from us as the 100 army police gear pass behind.,gold0-orig,pos,unl,unl,unl,unl,The Range Rover heads down a desert highway.,The Range Rover\nlsmdc1031_Quantum_of_Solace-84378,9180,\"He drops the body in a dumpster, removes someone 'wallet from his jacket, takes out the cash, and tosses the wallet aside. They\",\"walk off, leaving the body slumped amid the rubbish bags in the dumpster.\",\"takes a tire off him, climbs the stairs and steps down a winding corridor, missing an area wrapped around him.\",steps on the street nearby window and covers the floor.,\"turned, someone looks it over.\",fill in last night's clothes.,gold0-orig,pos,unl,unl,unl,unl,\"He drops the body in a dumpster, removes someone 'wallet from his jacket, takes out the cash, and tosses the wallet aside.\",They\nanetv_TvlCdfubl9Y,18147,Another man wearing a blue sweater is helping the other man assembling the bicycles. men,are assembling three bicycles on living room.,run out of the parking cheer in the background.,are now poke in the snow very quickly about their stunts.,are shown showing the process of the bbq one.,are in white gear behind the ladder together.,gold0-orig,pos,unl,unl,unl,unl,Another man wearing a blue sweater is helping the other man assembling the bicycles.,men\nanetv_TvlCdfubl9Y,18146,Man wearing a green shirt is assembling a bicycle on the middle of a living room. another man wearing a blue sweater,is helping the other man assembling the bicycles.,hangs up an axe and walks into a ride in a white line.,is watching them at the table.,is talking next to a ballerina.,,gold0-orig,pos,unl,unl,pos,n/a,Man wearing a green shirt is assembling a bicycle on the middle of a living room.,another man wearing a blue sweater\nanetv_uCdUm-lou7w,11023,A girl swings on monkey bars on an outdoor playground. The girl,misses a monkey bar and then looses her grip and falls to the ground.,stands up and lets the girl fall and flips her the air.,walks up and down the monkey bars and jumps off her feet.,swings back and forth while the girl works.,attempts to swing on the bars.,gold0-orig,pos,unl,unl,unl,unl,A girl swings on monkey bars on an outdoor playground.,The girl\nanetv_wLKePf07V14,17541,\"After, the man cuts part of the gift paper to show the green cellophane paper. Next, the man\",puts ribbons around the neck of the bottle.,writes a scoop into the paper.,\"put the fold on gloves, then cut the rubber and bear the gift.\",puts on the bread to make o in tip of the cake from it.,carefully presents his wrapping paper and wraps it up.,gold1-orig,pos,unl,unl,unl,pos,\"After, the man cuts part of the gift paper to show the green cellophane paper.\",\"Next, the man\"\nanetv_wLKePf07V14,17540,\"Then, the wraps the bottle with gift paper over the cellophane paper. After, the man\",cuts part of the gift paper to show the green cellophane paper.,inserts the ball into a container and appears jars of liquid.,\"put two strips onto the wrapping paper, including the wrap.\",spray the contents of the bowl.,,gold0-orig,pos,unl,pos,pos,n/a,\"Then, the wraps the bottle with gift paper over the cellophane paper.\",\"After, the man\"\nanetv_wLKePf07V14,225,A man unrolls cellophane paper and sits a bottle on it and wraps it in paper. The man,ties a bow around the neck of the bottle.,polishes the flat table and wraps the gold bell.,removes a paper using a nail.,opens cut material and read swatter inside.,parts the letter and puts the paper onto a strip of saran wrap.,gold1-orig,pos,unl,unl,unl,pos,A man unrolls cellophane paper and sits a bottle on it and wraps it in paper.,The man\nanetv_wLKePf07V14,226,The man ties a bow around the neck of the bottle. We,see the finished wrapped product.,on the stage come again to the center of the stage.,then see a greek print logo and academy title screen.,enter on the other and in the bow.,see a man who is laying on a blue mat.,gold0-orig,pos,unl,unl,unl,pos,The man ties a bow around the neck of the bottle.,We\nanetv_wLKePf07V14,224,We see the colorful title screen. A man,unrolls cellophane paper and sits a bottle on it and wraps it in paper.,is seen sitting in a chair behind a large drum machine.,is seen sitting in front of a truck blowing snow.,puts his hands up and leads us to the bottom of the grand ski.,pulls a phone on a city street.,gold0-reannot,pos,unl,unl,unl,unl,We see the colorful title screen.,A man\nlsmdc0011_Gandhi-53102,27,Their clothes are dirty - - and they are too - - but they are laying knives and guns at someone's feet. Someone,\"is looking at him, testing, not giving or accepting anything that is mere gesture.\",turns and his feet lean into the shield.,messes on of the back of her hair sprawled at frame as she sits on the bathroom door.,\"is there with someone's car, which misses.\",\"is very helpless, not to notice the presence impassively.\",gold0-orig,pos,unl,unl,unl,unl,Their clothes are dirty - - and they are too - - but they are laying knives and guns at someone's feet.,Someone\nlsmdc0011_Gandhi-53102,31,Almost reflexively he holds his hand out to indicate the height of his son. He,glares at someone and then back at someone.,\"walks wild and someone pulls his sunglasses off her head, looking deeply tanned.\",\"continues to slumber, transfixed by the act.\",talks more and begins dancing and stopping when they are done.,glances over his shoulder and peers in his eyes.,gold0-orig,pos,unl,unl,pos,pos,Almost reflexively he holds his hand out to indicate the height of his son.,He\nlsmdc0011_Gandhi-53102,26,There are thongs around their arms that make their bulging muscles seem even more powerful. Their clothes are dirty - - and they are too - - but they,are laying knives and guns at someone's feet.,are too polished unable to see the orderly head.,do not care - o - level.,don't have anything for it that they do.,do not manage a new one.,gold1-orig,pos,unl,unl,pos,pos,There are thongs around their arms that make their bulging muscles seem even more powerful.,Their clothes are dirty - - and they are too - - but they\nlsmdc0011_Gandhi-53102,29,\"Someone's face is knotted in emotion, half anger, half almost a child's fear - - but there is a wild menace in that instability. Someone\",\"stares at him, breathless.\",flinches as someone barges into the room.,trudge out of front of the great main house made up by the zombies.,\"is oblivious, deep in conversation.\",,gold1-orig,unl,unl,unl,unl,n/a,\"Someone's face is knotted in emotion, half anger, half almost a child's fear - - but there is a wild menace in that instability.\",Someone\nlsmdc0011_Gandhi-53102,28,People start to move toward him - - the man looks immensely strong and immensely unstable. But someone,\"holds up a shaking hand, stopping them.\",pushes him out of the abyss.,\"is completely agitated, looks truly uncomfortable for this moment.\",\"'s adjusting the saddle, silence.\",,gold0-orig,pos,unl,pos,pos,n/a,People start to move toward him - - the man looks immensely strong and immensely unstable.,But someone\nlsmdc0011_Gandhi-53102,30,It is as though the man has told him of some terrible self - inflicted wound. Almost reflexively he,holds his hand out to indicate the height of his son.,is utterly serious as he is aware that this is really the floor.,stumbles back onto the sofa to split the floor.,knows it as level.,marches handcuffs down into his father's house.,gold1-reannot,unl,unl,unl,unl,unl,It is as though the man has told him of some terrible self - inflicted wound.,Almost reflexively he\nlsmdc3024_EASY_A-11396,2693,He arrives at the Penderghast front door and knocks. Someone's mother,answers with a warm delighted smile.,gives a resigned blink of the smile.,\"laughs at someone, not noticing his presence.\",removes two champagne glasses with a jug.,turns on the stove and hurriedly follows someone.,gold0-orig,pos,unl,unl,unl,unl,He arrives at the Penderghast front door and knocks.,Someone's mother\nlsmdc3024_EASY_A-11396,2692,We peer through an arched hedge. Someone,\"rides into view on a scooter, lurches to a halt and dismounts awkwardly.\",lies upside - down in the bunk.,\"gazes out over the bridge, forming a cloud of smoke in both directions.\",\"runs out of the tank, then climbs away from the pit.\",begins cutting the hedges.,gold0-reannot,pos,unl,unl,pos,pos,We peer through an arched hedge.,Someone\nanetv_a7oaRcmRZ5k,4188,A person is seen riding on the back doing several flips and tricks on his board. The people,watch the man as well as the camera as he continues flipping around and looking back to the camera.,continue riding down the track and ends by jumping down onto a mat with another man watching on the side.,continue showing with people watching on the sides and ends with the person jumping and speaking to the camera.,are then seen moving in the tubes quickly as people are riding around and falling to the side.,continue to ride around on him and watch him riding in slow motion.,gold0-orig,pos,unl,unl,unl,unl,A person is seen riding on the back doing several flips and tricks on his board.,The people\nanetv_a7oaRcmRZ5k,4187,A boat is seen riding along the water with a man driving others around. A person,is seen riding on the back doing several flips and tricks on his board.,is seen running through gear with a paddle while others watch in the water.,is then shown riding in a boat pushing the man on a board.,is riding a rowing rowing machine as quickly as a person in a battle gear.,is seen walking down the beach as well as shots riding close ups of men riding up and sitting.,gold0-reannot,pos,unl,unl,unl,unl,A boat is seen riding along the water with a man driving others around.,A person\nanetv_W3a7BIqWov4,18271,A person is seen laying down on a bowling alley on the floor. The man then,begins break dancing on the floor.,begins throwing the object off into the distance.,demonstrates the woma exercises as well as showing how to properly move.,goes down and moves the hoop around continuously.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen laying down on a bowling alley on the floor.,The man then\nanetv_W8ILh7ickB4,10695,The person is squeezing the lemons in the squeezer. The person,pour the lemon into the white spray bottle and added water.,pours a coffee cup into the hands and grabs both lemons and pours it in the cup.,painting objects overlaid on film.,makes a small splash on the water.,squeezes a lemon into the saucepan into a blender.,gold0-orig,pos,unl,unl,unl,unl,The person is squeezing the lemons in the squeezer.,The person\nanetv_W8ILh7ickB4,10696,The person pour the lemon into the white spray bottle and added water. The person,spray the lemon juice in a bow and rub the bowl with sponge.,pour the sugar into the flower and pour it in the blender.,takes the beverage with a washed red liquid.,adds ice and oil and pepper.,pours the water in a gas pot and then drops down the spoon.,gold1-orig,pos,unl,unl,unl,unl,The person pour the lemon into the white spray bottle and added water.,The person\nlsmdc0033_Amadeus-66748,4167,He nods - he has wanted this result all the time. Then he,becomes aware of the manuscript in his hand.,gently lifts her foot and holds it to his chest.,stands up and goes back down an aisle.,picks up the drink and sits.,,gold1-orig,pos,pos,pos,pos,n/a,He nods - he has wanted this result all the time.,Then he\nlsmdc1047_Defiance-91631,15184,\"A woman breaks the ice that has formed in a bucket of water. Next to her, someone,\",ladles out some soup to a long line of people.,and the tent holds the tea.,\"windsurfing in a flat breeze, catches the girls and starts crying in the pool.\",\"faces someone, appears.\",,gold1-orig,pos,unl,unl,unl,n/a,A woman breaks the ice that has formed in a bucket of water.,\"Next to her, someone,\"\nlsmdc1047_Defiance-91631,15185,\"Next to her, someone, ladles out some soup to a long line of people. He\",holds up two potatoes.,sets down a cigarette - filled bag.,comes in from the refrigerator to greet someone in the office.,walks to the office.,,gold0-orig,pos,unl,pos,pos,n/a,\"Next to her, someone, ladles out some soup to a long line of people.\",He\nlsmdc1047_Defiance-91631,15179,Two officers kneeling await their fate. Someone,comes up behind them and shoots them both on the head.,\"loosens his belt, and raises his arm a high.\",backs up and resumes they smoke.,gazes to him.,grabs two stiff wood pups and bats them off his.,gold1-orig,pos,unl,unl,unl,unl,Two officers kneeling await their fate.,Someone\nlsmdc1047_Defiance-91631,15177,Someone fires on a truck. Someone,sets a bomb under the truck.,dreamily hits the flaming rear wheel of a van.,wrenches the vehicle into the parking lot.,opens the passenger compartment.,tackles someone on the barn.,gold1-orig,pos,unl,unl,unl,unl,Someone fires on a truck.,Someone\nlsmdc1047_Defiance-91631,15183,Deep winter has set in at the Naliboki Forest Camp. A table and bench,are blanketed in snow.,is shown in a story dug in a tent.,are covered with bushes.,is getting in the camp.,,gold0-orig,pos,unl,unl,unl,n/a,Deep winter has set in at the Naliboki Forest Camp.,A table and bench\nlsmdc1047_Defiance-91631,15182,Who jig up and down in a huddle. Together the young couple,hold the napkin that was wrapped around the glass someone crushed with his foot.,are gradually turning on one another and showing off the arranged approach of the table.,exits the studio as the young man prepares the fire.,is being rescued to the testing ground.,\"dance together, chewing and smiling hard.\",gold0-reannot,pos,unl,unl,unl,pos,Who jig up and down in a huddle.,Together the young couple\nlsmdc1047_Defiance-91631,15175,\"When someone nods, someone steps forward with a ring. Someone\",tends to someone who has a shawl over her long loose hair.,\"hurriedly waits at the command center, with his gun in his hands.\",raises his hand flirtatiously and raises a bottle to his forehead.,knocks on the door over the wall.,flexes his wrist and removes someone arm.,gold0-reannot,pos,unl,unl,unl,unl,\"When someone nods, someone steps forward with a ring.\",Someone\nlsmdc1047_Defiance-91631,15176,\"In the woods, someone leads the onslaught. Someone\",fires on a truck.,maneuvers the chief into position.,gently pushes the puck toward someone.,wets his fingertip and steps inside.,,gold0-reannot,pos,unl,unl,unl,n/a,\"In the woods, someone leads the onslaught.\",Someone\nlsmdc1047_Defiance-91631,15180,Someone comes up behind them and shoots them both on the head. Someone in a chair,is lifted up to shoulder height and twirled around.,pulls someone's cigarette out of a way as someone tries to ignore him.,look from their vehicle down the country road.,waits by the cab for money.,is almost affected by the current.,gold0-reannot,pos,unl,unl,unl,unl,Someone comes up behind them and shoots them both on the head.,Someone in a chair\nlsmdc3067_THE_ART_OF_GETTING_BY-32121,6396,\"Someone glares as she spots a couple canoodling on a brown stone stairway. Someone in a negligee and robe, the woman\",\"kisses a younger man, then flirtatiously touches his coat lapel.\",has a drink upside down beside her.,shines carrying a little boy.,pulls themselves into the station.,\"is operating a wall clock, sits in the ornate fireplace and starts writing with her hands over her pants.\",gold0-orig,pos,unl,unl,unl,unl,Someone glares as she spots a couple canoodling on a brown stone stairway.,\"Someone in a negligee and robe, the woman\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32121,6397,\"Someone in a negligee and robe, the woman kisses a younger man, then flirtatiously touches his coat lapel. Her gaze\",follows as he makes his way past someone and someone.,drops on the broomstick.,drifts to a wide - hatch ramp.,stays on her window carefully.,roves down as she looks among the patrons at the dance floor.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone in a negligee and robe, the woman kisses a younger man, then flirtatiously touches his coat lapel.\",Her gaze\nanetv_y56qXoJh6U0,15504,A group of people are seen standing around a bowling alley when several shots of people throwing the ball are shown. More close ups of people speaking to the camera,are shown as well as speaking to one another and a woman taking pictures of the players.,follows one another around a paintball road with martina shots.,are shown followed by a man playing and speaking and looking down.,are shown again shortly afterwards throwing shots into the distance.,are shown as well as people kicking his legs around one another.,gold0-orig,pos,unl,unl,unl,unl,A group of people are seen standing around a bowling alley when several shots of people throwing the ball are shown.,More close ups of people speaking to the camera\nanetv_y56qXoJh6U0,8148,They take turns walking up to the lanes with balls. They,\"throw the balls, knocking down the pins.\",take off of the ball.,are hitting a ball down the lane.,start running down the lane in circles.,,gold0-orig,pos,unl,unl,unl,n/a,They take turns walking up to the lanes with balls.,They\nanetv_y56qXoJh6U0,8147,Several team members gather in a bowling alley. They,take turns walking up to the lanes with balls.,walk slowly as they race down the long narrow path.,bump each other on the road.,continue on tennis until they reach some pins.,grab another ball and hit them.,gold0-orig,pos,unl,unl,unl,unl,Several team members gather in a bowling alley.,They\nanetv_y56qXoJh6U0,15505,More close ups of people speaking to the camera are shown as well as speaking to one another and a woman taking pictures of the players. More clips of people playing,are shown as well as being interviewed and speaking to one another.,are shown followed into a man playing soccer by several players and pans.,are shown as well as speaking up and leads into the woman mixing a drink together.,are shown afterwards in slow motion in slow motion.,are shown as well as in different shots jumping one another as well as the water.,gold0-orig,pos,unl,unl,unl,unl,More close ups of people speaking to the camera are shown as well as speaking to one another and a woman taking pictures of the players.,More clips of people playing\nanetv_xTEXsZO-PVI,12951,A wind surfer goes by. A man in the sail boat,leans back to pull on the sail in the boat.,holds a rope connected to ships notepaper.,starts paddling back flips through the current waters.,is going down the choppy river with rapids above him.,walks up beside him in the ocean.,gold0-orig,pos,unl,unl,unl,unl,A wind surfer goes by.,A man in the sail boat\nanetv_B42CY1Z6eV8,13315,\"The man in blue shirt is sitting on the wheel chair. The young man put his leg over his leg and put his socks and shoes, he\",did the same thing on other leg.,is going a little fast.,ties them up to the left.,walked to the board with his pants.,went into the machine.,gold0-orig,pos,unl,unl,unl,unl,The man in blue shirt is sitting on the wheel chair.,\"The young man put his leg over his leg and put his socks and shoes, he\"\nanetv_B42CY1Z6eV8,13316,\"The young man put his leg over his leg and put his socks and shoes, he did the same thing on other leg. The young man\",tied his shoes and smiled to the camera and gave a thumbs up.,fidgeting and then never takes the doors off.,walked towards the guy while the man sat down back on his feet.,was kneeling and kicked it rubber.,wore and moved forwards and forth.,gold0-orig,pos,unl,unl,unl,unl,\"The young man put his leg over his leg and put his socks and shoes, he did the same thing on other leg.\",The young man\nanetv_B42CY1Z6eV8,16877,Young man lifts up his ankle. Man wearing black pants,puts on a white sock.,is walking on a wood floor covered in dark cream.,walks in front of his body.,get in as carpet billows between the tiles.,is trying to lay a stick onto dirt.,gold0-orig,pos,unl,unl,unl,unl,Young man lifts up his ankle.,Man wearing black pants\nanetv_B42CY1Z6eV8,16878,Man wearing black pants puts on a white sock. Man,is loosening his black shoe laces.,jumps and falls over showing us how to ride making here in slow motion.,takes the man and pulls it along the backpack.,is on a gym with exercise equipment equipment.,,gold0-orig,pos,unl,unl,unl,n/a,Man wearing black pants puts on a white sock.,Man\nanetv_oMegp6a547Q,15241,The camera pans around several groups of people are seen performing martial arts around one another as well as people walking around and watching. Many shots,are shown of people dancing and singing as well as performing martial arts in the streets and helping one another.,are shown of people speaking to one another and lead into a man walking away and stopping.,are shown of women speaking to one another while the camera pans around and ends by holding down another.,are shown of the person climbing in the fence and putting blue balls on the box.,are shown of people fencing together with people running around and cheering with one another.,gold0-orig,pos,unl,unl,unl,pos,The camera pans around several groups of people are seen performing martial arts around one another as well as people walking around and watching.,Many shots\nanetv_oMegp6a547Q,15242,Many shots are shown of people dancing and singing as well as performing martial arts in the streets and helping one another. People,\"are seen playing instruments, reading the the news, and performing martial arts all around the street.\",interviews and ends with the woman cheering and speaking to the camera while doing movements.,finish their performance on the stage and continue dancing.,play on the dance scene and people interact with one another.,,gold0-orig,pos,unl,pos,pos,n/a,Many shots are shown of people dancing and singing as well as performing martial arts in the streets and helping one another.,People\nanetv_qmKSDwVvxVk,1033,He jumps backwards over a bar. He,lands on a blue mat on his back.,try to fight in elephant bed.,jumps onto the floor between sets his feet on the ground.,dismounts and falls off the bar onto his arms.,does a handstand and does several tricks.,gold0-orig,pos,unl,unl,pos,pos,He jumps backwards over a bar.,He\nanetv_qmKSDwVvxVk,1918,\"Scene opens to indicate a standing high jump practice on a particular date. A student athlete appears, dressed in casual shorts and a red t - shirt, and he\",proceeds to do practice jumps.,has several shots of green grass in middle of center store and named he quietly enters the ocean to play rock key demonstrations.,makes some jump at executive faces.,is charging a small board and then jumps up while a track around a wooden dock.,is doing the cartwheel.,gold1-orig,pos,unl,unl,unl,pos,Scene opens to indicate a standing high jump practice on a particular date.,\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he\"\nanetv_qmKSDwVvxVk,1920,\"The first jump is poor, and he knocks off the bar during the jump. He\",clears the bar on the second jump.,falls out and head for the ensuing area.,continues hoping and comes in to the post.,springs up on his hands to adjust his posture.,ends off continuing explaining and showing how it works.,gold1-orig,pos,unl,unl,pos,pos,\"The first jump is poor, and he knocks off the bar during the jump.\",He\nanetv_qmKSDwVvxVk,1921,He clears the bar on the second jump. The third jump,\"is the most impressive, with the athlete clearing the bar again.\",starts to jump over the bar on his other side jumps.,does the jump of the jump.,is out of line.,is repeated in slow motion backwards.,gold0-orig,pos,unl,unl,unl,pos,He clears the bar on the second jump.,The third jump\nanetv_qmKSDwVvxVk,1032,A man is standing on a track. He,jumps backwards over a bar.,is dancing onto a blue mat.,is jumping over a track.,is throwing the bowling ball into the field.,dips his hands into a black bucket.,gold1-reannot,pos,unl,unl,unl,pos,A man is standing on a track.,He\nanetv_qmKSDwVvxVk,1919,\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he proceeds to do practice jumps. The first jump is poor, and he\",knocks off the bar during the jump.,celebrates in his arms as he is being interviewed after the athlete.,stands very still before doing some circles tennis tricks and first pushing it.,swings again to cut the air.,does multiple jumps and slow breakdance in the air.,gold0-reannot,pos,unl,unl,pos,pos,\"A student athlete appears, dressed in casual shorts and a red t - shirt, and he proceeds to do practice jumps.\",\"The first jump is poor, and he\"\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4631,Someone sleeps with the closed computer still on his lap. The penguin,waddles to his side.,\"cautiously ventures inside, his eyes cut by someone.\",appears from an oxygen mask.,stares down then finds himself looking at someone on the ring.,leans up and wipes her mouth.,gold0-orig,pos,unl,unl,unl,unl,Someone sleeps with the closed computer still on his lap.,The penguin\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4632,\"The penguin waddles to his side. Leaning closer, it\",eyes the weary man.,\"becomes a warm, intense breath.\",'s two pools expanse on its front.,sweeps out on his pit.,drifts up the side of his eye.,gold0-orig,pos,unl,unl,unl,pos,The penguin waddles to his side.,\"Leaning closer, it\"\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4637,\"The penguin slides away on its belly. Later, someone\",passes the building's front desk.,\"flies with the envelope onto someone's head, revealing the scar on someone's forehead.\",lobs a tin rail.,rides in the woman's limousine eating a snake.,\"glides forward, straightens himself and extinguishes a jaunty.\",gold1-orig,pos,unl,unl,unl,unl,The penguin slides away on its belly.,\"Later, someone\"\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4642,Someone hands him more cash. He,doles out even more.,hangs up and gives a gentle shrug.,draws blood from his hand.,looks at her beau.,retrieves his bag and sits down.,gold0-orig,pos,unl,unl,pos,pos,Someone hands him more cash.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4636,He tosses it onto the path of water. The penguin,slides away on its belly.,gets frantically and trots off.,flops down as the fax continues on.,\"shifts his gaze to the small tiger, who gives him a tight black grin.\",\"sprints away from the pit, and skips along to the buffet line.\",gold0-orig,pos,unl,unl,unl,unl,He tosses it onto the path of water.,The penguin\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4639,He pulls up security footage of someone tossing the penguin down the hallway. He,shows a closer image of someone cheering and freezes it.,\"the frustrated, he stands in front of the tv and comes down to her rear.\",\"weaves off after him, throwing him up at a u - boat.\",raises to his full height with his thumb.,shoots a player another shot.,gold0-orig,pos,unl,unl,unl,unl,He pulls up security footage of someone tossing the penguin down the hallway.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4630,\"As the bird tilts his head curiously, someone minimizes the recipe window. Someone\",sleeps with the closed computer still on his lap.,'s image of a table is unfinished.,\"enters the room, takes boy, and laying at a table near a small counter.\",\"eyes the tip of his hand, at the top of her hair, reaches for the phone.\",,gold1-orig,pos,unl,pos,pos,n/a,\"As the bird tilts his head curiously, someone minimizes the recipe window.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4638,\"Someone sets the penguin on the floor, then turns to a computer. He\",pulls up security footage of someone tossing the penguin down the hallway.,\"shakes his back, then turns off the lamp in a gust of wind.\",pulls back someone finds someone sleeping on his bed.,\"scans the space for a moment, then flies away.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone sets the penguin on the floor, then turns to a computer.\",He\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4635,Someone notices a vase of flowers sitting on a table in the hallway. He,pours the vase's water down the hall.,\"breaks a dot, with determination in his eyes.\",slides off the front door and hurries upstairs.,crouches and places the typewriter against the wall.,looks out through the window and sees the shot of people.,gold0-reannot,pos,unl,unl,unl,unl,Someone notices a vase of flowers sitting on a table in the hallway.,He\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4641,Someone looks at the bird standing behind him. Someone,hands him more cash.,takes a glass of ice and puts them down.,crosses to him and approaches someone.,lays down on her couch.,swallows a third time.,gold1-reannot,pos,unl,unl,pos,pos,Someone looks at the bird standing behind him.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-23918,4640,Someone offers a someone bill. Someone,looks at the bird standing behind him.,strides down to it and massages a lamp - lit window.,sprays his snake - themed hair and hands it to someone.,lies in bed under someone's fever.,walks off the car and hefts the carton to the top of the boarding gate.,gold1-reannot,unl,unl,unl,unl,unl,Someone offers a someone bill.,Someone\nanetv_WTOTYZOu3MQ,15090,\"The man served the ball and hit the wall but it just bounced so low that the man can't hit it. The man chase after the ball picke it up and hit, then a shirtless man\",came up to him and teach him how to serve the ball.,runs to the ball and the man next man wearing the men sit in the roofed gym and measure.,\"burst out the door during the trip, then the man kicked the ball and landed on all the high.\",went toward the table and throw it straight in the air and another boy tried to help him point next to the table.,,gold0-orig,pos,unl,unl,unl,n/a,The man served the ball and hit the wall but it just bounced so low that the man can't hit it.,\"The man chase after the ball picke it up and hit, then a shirtless man\"\nanetv_WTOTYZOu3MQ,15089,The barefoot man serve the ball but missed it. The man served the ball and hit the wall but it just,bounced so low that the man can't hit it.,can not see what they set up and threw the ball.,serves it in the back basket.,hits the ball on the court.,,gold0-orig,pos,unl,unl,pos,n/a,The barefoot man serve the ball but missed it.,The man served the ball and hit the wall but it just\nanetv_9IIcG8AiUnA,12748,A man is standing inside a kitchen in front of a small table. He,shows and talks about olive oil and lemon juice.,puts cans of cheese into the glass and chops it together.,is using a white mop machine in the yard.,sharpens a knife in a block with a knife.,is hammering tiles into a plastic carpet.,gold0-orig,pos,unl,unl,unl,unl,A man is standing inside a kitchen in front of a small table.,He\nanetv_9IIcG8AiUnA,12749,He shows and talks about olive oil and lemon juice. He,uses the items to clean and polish the table of scratches.,stirs the jug creating pools full of water.,adds rum to the pitcher for vegetables.,talks about as he wants to direct the lemonade.,,gold0-reannot,pos,unl,unl,pos,n/a,He shows and talks about olive oil and lemon juice.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-1921,4078,Someone plants his feet staring at the tree trunk. He,\"tries again, but only chips the trunk.\",sets his mouth open and rests his cheek against the glass.,extends the square wire to someone.,fumbles with scissors and gets out of the car.,,gold1-orig,pos,unl,unl,pos,n/a,Someone plants his feet staring at the tree trunk.,He\nanetv_5O1ttcUIUKk,16183,Men are standing in a large green field playing lacrosse. people,is around the field watching the game.,start walking down the field playing a game of hitting a ball.,are playing lacrosse in a gym.,are standing in an indoor basketball game.,,gold1-orig,unl,unl,unl,unl,n/a,Men are standing in a large green field playing lacrosse.,people\nanetv_5O1ttcUIUKk,16184,People is around the field watching the game. men,are running side to side of the ield playing lacrosse trying to score.,are playing in a field with red standing on their t up field.,wearing paintball gear stand playing shuffle rope in an indoor arena.,are playing paintball with the man in a red hat who is talking to the camera.,,gold1-orig,pos,unl,unl,pos,n/a,People is around the field watching the game.,men\nanetv_MBTSe-NHK-I,8031,They go down the falls into the rapid white coiling waters. They,\"wave as they go by the camera, and continue to float downstream.\",young men struggle to swim towards the boat as the and the dolphins stay for a loading but he's caressing the memory.,\"point to the well carrying smoke and the rafters, and they appears up from a mixture close to their shore.\",see the matador jumping from the fun below.,,gold0-orig,pos,unl,unl,unl,n/a,They go down the falls into the rapid white coiling waters.,They\nanetv_MBTSe-NHK-I,8030,A group of rafters are floating toward the small waterfall. They,go down the falls into the rapid white coiling waters.,run down a river.,are pulled back towards the water.,jump over the wave causing several rafters to get away from the water.,,gold0-orig,pos,unl,unl,unl,n/a,A group of rafters are floating toward the small waterfall.,They\nanetv_MBTSe-NHK-I,2734,The third tuber goes through the rapids. The camera,zooms out as the tubers pass through the rough water and end up in the calm waters of the river.,follows up and back and the kite huddles inside.,pans around the city of tall foliage.,comes to a stop on it.,stops and the cup flies down.,gold0-orig,pos,unl,unl,unl,unl,The third tuber goes through the rapids.,The camera\nanetv_MBTSe-NHK-I,2731,A river with white rapids and a group of tubers wearing yellow helmets float in the distance. One tuber,comes across the rapids bobbing up and down through the rapids.,runs as fast as people run as they drive away.,lands on the bottom of the lake with the skier hanging on their lower feet on the water.,goes wrong then swim around the pool.,goes up to someone.,gold0-orig,pos,unl,unl,unl,pos,A river with white rapids and a group of tubers wearing yellow helmets float in the distance.,One tuber\nanetv_MBTSe-NHK-I,2733,The second tuber comes through the rapids. The third tuber,goes through the rapids.,runs in the jungle next to the lake.,is loose as the iceberg builds up the ice until it glides over to the shore again.,passes down and start falling down.,\"goes down the slope, hits it, and goes back and forth.\",gold0-orig,pos,unl,unl,unl,pos,The second tuber comes through the rapids.,The third tuber\nanetv_MBTSe-NHK-I,8029,A forest is shown with rapid water from a river. A group of rafters,are floating toward the small waterfall.,is laden with cocktails.,have many left behind.,shoot through the rapids.,gather near the prow in a public spot.,gold1-reannot,pos,unl,unl,pos,pos,A forest is shown with rapid water from a river.,A group of rafters\nanetv_MBTSe-NHK-I,2732,One tuber comes across the rapids bobbing up and down through the rapids. The second tuber,comes through the rapids.,comes out of the sky as someone draws up past her.,comes on to make his escape and next desperately sticking his left hand to the building.,swims from a skier at the bridge.,jumps off the tubes and the other child runs off along the waterfall.,gold0-reannot,pos,unl,unl,unl,unl,One tuber comes across the rapids bobbing up and down through the rapids.,The second tuber\nanetv_2SBTnunPQrQ,15869,\"A little boy shines the shoes of a person using black shoe polish and make shine with a brush and a cloth. Then, the man\",pays the little boy.,rubs some on the chair and apply cream to the corner of the shoe.,paints the laces of the boots.,spins a wooden rug over the white puppy.,,gold0-orig,pos,unl,unl,unl,n/a,A little boy shines the shoes of a person using black shoe polish and make shine with a brush and a cloth.,\"Then, the man\"\nanetv_2U_BUV8PLtk,14468,A pair of handlebars are detached from the bike and is laying down flat on a table. The man then,picks up the handlebars and sticks them back into the bike tightening them with a key.,tries again and tries to repair the scenes.,grabs a folding wheel and uses the sander to secure it all to the roof.,begins applying the ice all to the rim.,unties the handles and attaches a rubber quarter to the tire.,gold0-orig,pos,unl,unl,unl,unl,A pair of handlebars are detached from the bike and is laying down flat on a table.,The man then\nanetv_VxoBV76IkLM,10197,Man is standing in a alge ield doing a shot put. woman,is wearing black clothes doing a shot put in a large green field.,is in a gym practicing gymnastics in the very middle of the field.,give a bottle of hair and is facing a man with a machine.,is standing in the room teetering on the pool edge where the ball is giving it.,is standing with a runner into the goal.,gold1-orig,pos,unl,unl,unl,unl,Man is standing in a alge ield doing a shot put.,woman\nanetv_VxoBV76IkLM,10198,Woman is wearing black clothes doing a shot put in a large green field. woman,is practicing doing a shot put in the field.,shows the camera how to brush a bike.,is standing in a yard getting a hair cut.,is sitting on a horse next to her on a horse.,,gold0-orig,pos,unl,unl,unl,n/a,Woman is wearing black clothes doing a shot put in a large green field.,woman\nlsmdc3035_INSIDE_MAN-2145,7183,\"In the secured office, someone looks up. He\",activates a smoke bomb and rolls it into the hallway.,pulls a catholic decorated envelope from a box rack and snaps it in half.,places a figurine to someone.,places the receiver at her ear.,,gold1-reannot,pos,unl,pos,pos,n/a,\"In the secured office, someone looks up.\",He\nanetv_gWyBBQtsDhc,4206,A woman with long hair is seen speaking to the camera while moving her arms around and smiling while she speaks. She then,begins brushing her long hair out and smiling back at the camera and waving.,\"includes back and fourth, moving back and fourth and ends by speaking to the camera.\",begins cutting her hair and ends by walking around afterwards stopping to speak in various shots.,begins using a razor while speaking and making rubbing lotion onto her face.,holds up the object she holds and pauses to speak to the camera and continues speaking.,gold0-orig,pos,unl,unl,unl,unl,A woman with long hair is seen speaking to the camera while moving her arms around and smiling while she speaks.,She then\nanetv_YPNLMBhuDS8,17712,A man is seen speaking to the camera while holding up a shoe and polish and pointing to objects. The man then,rubs down the shoe with a rag while the camera zooms in on more products and speaking to the camera.,briefly moves the iron around the mans neck as well as welding it on.,begins using the shoes on the floor.,\"puts a knife on the floor, moving along the jack and putting plaster on top.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera while holding up a shoe and polish and pointing to objects.,The man then\nanetv_rFM3OUUL5fI,12660,A large rock column is seen from a boat in the ocean. The man,attempts to walk across the rope but falls but and holds onto the rope.,waves and waves in the water in a wave.,moves to the camera before floating on animal.,speaks to the camera and rides the board several times.,,gold1-orig,pos,unl,unl,unl,n/a,A large rock column is seen from a boat in the ocean.,The man\nanetv_rFM3OUUL5fI,8940,\"Once to the other side, he tries to turn around and come back but has the hardest time standing up. Finally he\",is erect and begins teetering his way across the rope and makes it to the other side without falling.,takes the check off the camera.,stifles his boxing ring just against his face.,is shown again and then come to join him and a little girl in the orange shirt is caressing him.,,gold0-orig,pos,unl,unl,unl,n/a,\"Once to the other side, he tries to turn around and come back but has the hardest time standing up.\",Finally he\nanetv_rFM3OUUL5fI,12661,The man attempts to walk across the rope but falls but and holds onto the rope. The man,walks across the rope all the way to the attached rock.,continues spinning and jumping up and down.,walks around and throw a rope on one side as well as the man.,does many routines while smiling and unwrapping the rope onto a rope.,continues to ride off all the diving board.,gold0-orig,pos,unl,unl,unl,unl,The man attempts to walk across the rope but falls but and holds onto the rope.,The man\nanetv_rFM3OUUL5fI,8939,\"The camera then begins to pan the rocks and a man begins tight roping between them. As he is walking, he\",makes several attempts to cross but falls three times before finally making it to the other side.,\"begins packing, the baby in costume, walk around the side and continue on to the camera.\",continues to do this on the board while bongo players also sits on the bench moving forward.,holds the paddle in his hand to break out the fire and throw it again.,,gold0-orig,pos,unl,unl,unl,n/a,The camera then begins to pan the rocks and a man begins tight roping between them.,\"As he is walking, he\"\nanetv_rFM3OUUL5fI,12659,A seal sits on a rock near an ocean. A large rock column,is seen from a boat in the ocean.,is shaped in bottom.,\"stands by the water, surrounded by piles of bubbles.\",is seen moving closer to someone.,rises safely from the water below.,gold1-reannot,pos,unl,unl,unl,unl,A seal sits on a rock near an ocean.,A large rock column\nanetv_ZwxvczODMbM,12762,\"The dog walked over the young man. The woman beat the young boy, the did arm wrestling again and the woman\",beat the young man.,danced on the blue pinata.,hugged the other man then went to the other again.,fell off the back.,,gold0-orig,pos,unl,unl,pos,n/a,The dog walked over the young man.,\"The woman beat the young boy, the did arm wrestling again and the woman\"\nanetv_ZwxvczODMbM,12761,Two people are arm wrestling on a chair. The dog,walked over the young man.,is putting ornaments off the divan.,is tipped down the table.,is slowly operating in pain.,appears and falls back.,gold1-orig,pos,unl,unl,unl,pos,Two people are arm wrestling on a chair.,The dog\nanetv_E7OCzz_XuiI,16017,A fridge is seen opening with two people grabbing onto a piece of cheese. The two men,fight then begin playing a game of rock paper scissors.,sit on the beach court talking.,climb at the table as well.,stand together and chat with him.,shake hands and speak to one another.,gold1-orig,pos,unl,unl,pos,pos,A fridge is seen opening with two people grabbing onto a piece of cheese.,The two men\nanetv_Yb5b_xx1P9I,11011,A man in a black shirt is checking food in a sandwich shop. The man then,moves fast to make a hoagie sandwich by adding ingredients from the bins.,pours a drink to the baby and points him at a cup of food.,applies peanut jelly in orange bread.,goes to a family on the bar.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a black shirt is checking food in a sandwich shop.,The man then\nanetv_Yb5b_xx1P9I,11012,The man then moves fast to make a hoagie sandwich by adding ingredients from the bins. The man,wraps the sandwich in paper and puts it in a plastic bag.,picks up the oranges and says it under the press.,moves a pot off the pan and puts them in the pan.,ladles the cheese shortly then the host uses a white drink and cuts off the next wrapping.,,gold0-orig,pos,unl,unl,unl,n/a,The man then moves fast to make a hoagie sandwich by adding ingredients from the bins.,The man\nanetv_Yb5b_xx1P9I,11013,We see on a phone the man made the sandwich in 41 seconds. The man then,takes the sandwich apart in the back.,sits on the stove and add gasoline.,takes the string and continues to play the accordion.,cuts stacks of oil inside of the cabinets.,takes another mans hand off and pulls it out.,gold0-orig,pos,unl,unl,unl,unl,We see on a phone the man made the sandwich in 41 seconds.,The man then\nanetv_JEvEoAESqJ0,13617,A large group of people are seen running down a track together. One man,is seen running the opposite direction by himself.,jumps onto a platform and a person performs a jump.,is behind a piano beam holding up in stage and one pole continuously.,drives forward with the riders without bumping and running.,is then seen playing croquet while others watch on the side.,gold0-orig,pos,unl,unl,unl,pos,A large group of people are seen running down a track together.,One man\nanetv_JEvEoAESqJ0,3943,People are running around a track. A man,runs down a track and jumps into a pile of sand.,gets off a horse.,is interviewed while the women each also take photos.,jumps into a sand pit.,is running running into a sand pit after people walk side.,gold1-orig,pos,unl,unl,unl,unl,People are running around a track.,A man\nanetv_JEvEoAESqJ0,3944,A man runs down a track and jumps into a pile of sand. A person in a purple shirt,is holding a broom.,falls down to the ground.,walks past a crowd of indians.,splits over the puck.,is standing next to the bull.,gold0-reannot,pos,unl,unl,unl,unl,A man runs down a track and jumps into a pile of sand.,A person in a purple shirt\nanetv_JEvEoAESqJ0,13618,One man is seen running the opposite direction by himself. He,jumps into a pit and walks away.,walks by and more shots are shown of a larger glass - colored pool.,goes over together off the roof and is watching them rotate.,\"continues moving around and swinging the beam while holding and walking around him, jumping back to avoid the game.\",hits the ball right in his head as he walks.,gold0-reannot,pos,unl,unl,unl,unl,One man is seen running the opposite direction by himself.,He\nanetv_-AjZCBMb4qU,12667,\"A girl is seating in front of a table, playing an accordian. She\",stares at the camera as she plays the keyboard and pulls the accordian in and out.,brushes past him as he walks by.,sits up and walks toward the middle of the band.,begins playing the flute together.,demonstrates all the proper brushes while looking at the camera.,gold0-orig,pos,unl,unl,unl,unl,\"A girl is seating in front of a table, playing an accordian.\",She\nanetv_vUuC72xikqw,1607,A close up of a pumpkin is seen followed by a child scouping out the middle. Another child next to her,is seen cutting out the pumpkin when an adults walks into frame.,has slowly painted the dog with a brush and rests back down a towel so the small circle is shown in the end.,is seen balancing various ingredients in the traditional board and more clips of the same process are shown.,continues laying the plaster to the wall.,,gold0-orig,pos,unl,unl,unl,n/a,A close up of a pumpkin is seen followed by a child scouping out the middle.,Another child next to her\nanetv_vUuC72xikqw,1608,Another child next to her is seen cutting out the pumpkin when an adults walks into frame. The adults,helps the children with one smiling to the camera and holding up seeds while the camera pans around the room.,continue to pass and do various tricks to the girl by showing it at the end.,continue to slide round and continue wrapping the present while people watch.,grab a box of yellow water from the surfboard and run around while standing and rake the fence.,,gold0-orig,pos,unl,unl,unl,n/a,Another child next to her is seen cutting out the pumpkin when an adults walks into frame.,The adults\nlsmdc1043_Vantage_Point-89076,17233,\"He zooms in as she places something in his hand and clutches his palm. As their heads move closer, someone\",lowers his gaze and stops filming.,raises a central finger to his son's belly and crouches.,bends over and accepts his wine.,tries to cross them.,lifts them over his head.,gold0-orig,pos,unl,unl,unl,unl,He zooms in as she places something in his hand and clutches his palm.,\"As their heads move closer, someone\"\nlsmdc1043_Vantage_Point-89076,17227,He records the upper windows and one of the many arches in the plaza. There,are kid shouting hello from some of the balconies.,\"between them, as he looks astonished against a historic wall hidden an old high wall, the luxurious room shakes.\",\", asian boys collide on the bars with the scraper spilling on the other side of the referee.\",system has a quality of fifty stores over the cliffs.,himself into his arms.,gold0-orig,pos,unl,unl,unl,unl,He records the upper windows and one of the many arches in the plaza.,There\nlsmdc1043_Vantage_Point-89076,17221,People reach the balcony railing. They,race along the balcony.,disappear through a dress bar.,go down the stairs to a room.,go back on the ship and wait for someone.,tumble into a chair on the foot of the landing.,gold1-orig,pos,unl,unl,unl,unl,People reach the balcony railing.,They\nlsmdc1043_Vantage_Point-89076,17213,\"Someone rounds a corner, someone and another agent in pursuit. Someone\",shoots in the air.,rushes through the throng.,struggles in the car.,shoot back at someone.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone rounds a corner, someone and another agent in pursuit.\",Someone\nlsmdc1043_Vantage_Point-89076,17219,He shoves people out of his way. Someone,runs onto a balcony and leaps from it into a courtyard.,downs a high five as he balances on weight board.,smiles brightly at himself.,retreats and walks back down the path to the main entrance of the cafe.,,gold1-orig,unl,unl,unl,pos,n/a,He shoves people out of his way.,Someone\nlsmdc1043_Vantage_Point-89076,17224,He runs across a road to an underpass carrying highway traffic. Someone,takes the gun from his holster and checks the magazine.,drags his bike up underneath the boat.,stops in the street and stares with the curb.,is still at the wheel.,is walking in the background.,gold1-orig,pos,unl,unl,pos,pos,He runs across a road to an underpass carrying highway traffic.,Someone\nlsmdc1043_Vantage_Point-89076,17215,Someone rushes out into the street. He,darts into the road as an ambulance approaches.,\"holds his door, which is slightly ajar.\",shoves away her furniture and dashes through the front door of the hotel.,slam on it.,leaps out of the car.,gold0-orig,pos,unl,unl,unl,pos,Someone rushes out into the street.,He\nlsmdc1043_Vantage_Point-89076,17217,\"He gets to his feet, and he runs. Someone and the second agent, someone,\",chase someone into an arcade.,\"sprints back to a park bench, looking sadly at someone in shock.\",get hanging up when the mob gather.,\"are grabbing money still to the coffee, stare at the pavement.\",\"appears, running down the corridor as we go into the direction of the place warehouse at one end.\",gold1-orig,pos,unl,unl,unl,unl,\"He gets to his feet, and he runs.\",\"Someone and the second agent, someone,\"\nlsmdc1043_Vantage_Point-89076,17222,They race along the balcony. Someone,dashes away from the apartment building and sprints along the street.,'s face is revealed as someone dodges his horse.,feels along someone's tie - related's contempt.,\"emerges, peering nervously through binoculars.\",,gold0-orig,pos,unl,unl,pos,n/a,They race along the balcony.,Someone\nlsmdc1043_Vantage_Point-89076,17223,\"Dodging traffic, he crosses the road until he is hit by another car. He\",runs across a road to an underpass carrying highway traffic.,runs underneath a bar and scurries over in the ground to open a suitcase while stopping to grab at dad.,wears jeans and a t - shirt and has an impressive test.,stands and stares off beyond the wrecked diner.,pulls up to his van.,gold0-orig,pos,unl,unl,unl,pos,\"Dodging traffic, he crosses the road until he is hit by another car.\",He\nlsmdc1043_Vantage_Point-89076,17220,Someone runs onto a balcony and leaps from it into a courtyard. People,reach the balcony railing.,fall on its glassy faces in front of windows.,skateboard up a tower.,watch the man fight through him.,cower over the astronomy tower.,gold0-orig,pos,unl,unl,unl,pos,Someone runs onto a balcony and leaps from it into a courtyard.,People\nlsmdc1043_Vantage_Point-89076,17226,\"The man in the checked shirt, someone, is videoing. He\",records the upper windows and one of the many arches in the plaza.,uses a attending portable phone to a tire.,runs toward a gold building.,is walking in the center of the house.,,gold0-orig,pos,unl,unl,pos,n/a,\"The man in the checked shirt, someone, is videoing.\",He\nlsmdc1043_Vantage_Point-89076,17231,\"He strolls deeper into the crowd, his camera focused above their heads. He pans his camera around, and on the lcd screen he\",sees someone by the pillar with the young man someone saw her with.,finds someone standing at the same desk with someone on his other bed.,\"passes the first inmate who stops in a wall, facing where the young ads kicks and punches.\",talks to clergyman network.,shows and hangs posted at a retirement home with trophies and trophies on it.,gold0-orig,pos,unl,unl,unl,unl,\"He strolls deeper into the crowd, his camera focused above their heads.\",\"He pans his camera around, and on the lcd screen he\"\nlsmdc1043_Vantage_Point-89076,17232,\"He pans his camera around, and on the lcd screen he sees someone by the pillar with the young man someone saw her with. He\",zooms in as she places something in his hand and clutches his palm.,nip her fingers at the troll's neck.,\"appears, shakes the hand of the mysterious girl and looks as if she's better than.\",clutches his mobile phone in his eyes.,\"strikes the aimed driver, reverses the car away, and stomps toward the wreckage.\",gold0-orig,pos,unl,unl,unl,unl,\"He pans his camera around, and on the lcd screen he sees someone by the pillar with the young man someone saw her with.\",He\nlsmdc1043_Vantage_Point-89076,17212,An agent leads someone away. Someone elbows him in the face and he,takes the agents gun.,lies on his stomach.,lets the heavy tears fall.,returns to another railing.,chucks his jacket off.,gold0-orig,pos,unl,unl,unl,pos,An agent leads someone away.,Someone elbows him in the face and he\nlsmdc1043_Vantage_Point-89076,17218,\"Someone and the second agent, someone, chase someone into an arcade. He\",shoves people out of his way.,slams his case on the desk.,spots another radio and stumbles between them.,\"scans the area, halts, and then struts off to the kitchen.\",taps herself over the stalls.,gold0-orig,pos,unl,unl,unl,unl,\"Someone and the second agent, someone, chase someone into an arcade.\",He\nlsmdc1043_Vantage_Point-89076,17214,Someone shoots in the air. Someone,rushes out into the street.,shakes someone's hands as they pull out a argument.,gives her a warm smile.,leans around the controls and leans against the wall.,\"checks his watch, clock.\",gold0-orig,pos,unl,unl,unl,unl,Someone shoots in the air.,Someone\nlsmdc1043_Vantage_Point-89076,17228,There are kid shouting hello from some of the balconies. Someone,walks away from the kids and resumes videoing.,runs on the ledge trying to get off his feet.,reemerges across the deck and flapping low to its pink sands.,do arthur - stand at the unsteady occasionally.,,gold0-orig,pos,unl,unl,unl,n/a,There are kid shouting hello from some of the balconies.,Someone\nlsmdc1043_Vantage_Point-89076,17229,Someone walks away from the kids and resumes videoing. The timer on his lcd screen,reads nearly two hours and two minutes.,shows a second page containing flesh - noodle from the market.,shows someone reclined on a lamp bench on the upper landing.,gives a disapproving shock to it.,reveals a single photograph of his laughing father.,gold0-orig,pos,unl,unl,unl,unl,Someone walks away from the kids and resumes videoing.,The timer on his lcd screen\nlsmdc1043_Vantage_Point-89076,17230,The timer on his lcd screen reads nearly two hours and two minutes. He,\"strolls deeper into the crowd, his camera focused above their heads.\",finds someone drinking a cream time.,lifts it to his ear.,\"start from its race, and give the proper hand to sharpen another needle.\",looks imploringly at him.,gold0-orig,pos,unl,unl,unl,pos,The timer on his lcd screen reads nearly two hours and two minutes.,He\nlsmdc1043_Vantage_Point-89076,17216,He darts into the road as an ambulance approaches. Someone,sits in the passenger seat.,spots cover on two cars.,notices the site in its cage.,watches him go.,,gold0-reannot,pos,unl,unl,pos,n/a,He darts into the road as an ambulance approaches.,Someone\nlsmdc1043_Vantage_Point-89076,17225,\"His arms, face and hair are wet with sweat. Someone\",steps out from behind a pillar and looks along the road.,duel on among his tall overcoat and jeans.,stares back at the crowd of high students.,remains motionless in the snow dark.,gives as the scars and other dancers continue around him.,gold0-reannot,pos,unl,unl,unl,unl,\"His arms, face and hair are wet with sweat.\",Someone\nanetv_uFMDSiHu7g4,10068,A man wearing a striped shirt dances with a girl in a brown blouse at a street festival. Other couple,join in and dance in a street festival while performers play on a stage.,are seen standing beside a large plant with buckets and talking to each other.,\"sit on the side of a pool, with other young people boxing.\",of men are on a room in front of the group as a costume moves around in bartenders.,go standing on set of them as one holds her leash.,gold0-orig,pos,unl,unl,unl,unl,A man wearing a striped shirt dances with a girl in a brown blouse at a street festival.,Other couple\nanetv_uFMDSiHu7g4,10069,Other couple join in and dance in a street festival while performers play on a stage. Onlookers,pass by while the group continues to dance.,are at a table tennis padded by one woman.,take a flags on their necks and then dance together and put the instances of their scarves in cold air.,\"dance as act as zumba in their diy, after their gaze falls.\",,gold0-orig,pos,unl,pos,pos,n/a,Other couple join in and dance in a street festival while performers play on a stage.,Onlookers\nanetv_OuEQLjwBIPI,11288,The man stands up and other men appear talking to him or are near him. The men are positioned on the field and a man hits a ball and and all the men,start running on the field.,run on the mat.,are watching the game below.,jump up to stumble in.,are on again as are taking team shots.,gold0-orig,pos,unl,unl,unl,unl,The man stands up and other men appear talking to him or are near him.,The men are positioned on the field and a man hits a ball and and all the men\nanetv_OuEQLjwBIPI,11289,The men are positioned on the field and a man hits a ball and and all the men start running on the field. The man who just hit the ball,begins to cheer and jump up and down multiple times then walks away.,\"after taking it off, then the game continues on in the end.\",\"with the stick and grabs the ball, and two men ride up.\",does boys part tie takes his turns shooting the ball for demonstrate run between running and landing.,slide with another and hit it around while man claps all while the man unscrews the cue.,gold0-orig,pos,unl,unl,unl,unl,The men are positioned on the field and a man hits a ball and and all the men start running on the field.,The man who just hit the ball\nanetv_OuEQLjwBIPI,11287,\"A man in a green outfit, wearing white gloves and a green hat is bending over with his hands on his thighs while a website is displayed on the bottom of the screen. The man stands up and other men\",appear talking to him or are near him.,are fencing still and talking about how this quick looks would be.,are shown and the man with him steering them all and smiling to each other.,are then seen dressed in a black costume after the dance.,stand behind him and they both get a look.,gold1-orig,pos,unl,unl,unl,pos,\"A man in a green outfit, wearing white gloves and a green hat is bending over with his hands on his thighs while a website is displayed on the bottom of the screen.\",The man stands up and other men\nanetv_OuEQLjwBIPI,8985,One man pitches a ball and another hit it. One man,jumps up and down while holding the bat and walking away.,\"swings, dodging the ball in grabbing the bench.\",hits the ball against the wall.,runs and kicks the ball.,,gold0-orig,pos,unl,pos,pos,n/a,One man pitches a ball and another hit it.,One man\nanetv_2-hF-v79XyQ,9391,The yellow team all hug each other. We,return to the men in the studio.,see a cop on the street.,\"zoom through the field, as the lady explains the wheat to hit the volleyball.\",and the girls eat their treats then return to the bow and pat each other.,stay in the tent and talk to each other.,gold1-reannot,pos,unl,unl,unl,unl,The yellow team all hug each other.,We\nlsmdc3048_LITTLE_FOCKERS-23198,15932,\"With a smile, he holds out a plate of cake. Someone\",punches him in the nose.,shows at a print.,emerges from his reverie.,wraps an arm around her shoulder.,hands a container of ice to someone.,gold1-orig,pos,unl,unl,unl,pos,\"With a smile, he holds out a plate of cake.\",Someone\nlsmdc3048_LITTLE_FOCKERS-23198,15937,The older man flings him into a giant ball pit. Someone,disappears below the balls.,jumps at the sides as he flashes a new one.,releases the cable and jumps over.,looks toward the city in front of someone.,strokes his beaded hair as this boy comes back.,gold0-orig,pos,unl,pos,pos,pos,The older man flings him into a giant ball pit.,Someone\nlsmdc3048_LITTLE_FOCKERS-23198,15940,They shift in another part of the pit. Someone,notices and stares with intense eyes.,stares out of the window.,swings his hands off the diner then walks away.,is grabbing someone and prance away from the wall.,,gold1-orig,pos,unl,unl,unl,n/a,They shift in another part of the pit.,Someone\nlsmdc3048_LITTLE_FOCKERS-23198,15942,\"Behind him, someone burst through the surface. He\",grabs his son - in - law.,comes onto the floor of someone's bed.,tosses the lifeboat the robot back.,lands on the deck by someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Behind him, someone burst through the surface.\",He\nlsmdc3048_LITTLE_FOCKERS-23198,15938,Someone disappears below the balls. He,glances around but sees only the playing.,presents a smaller condom.,rockets engines on extension as they glide skyward.,shuts his mouth and wipes his mouth.,looks down at the letters with a drawing of a brand of england.,gold0-orig,unl,unl,unl,unl,unl,Someone disappears below the balls.,He\nlsmdc3048_LITTLE_FOCKERS-23198,15933,Someone blocks a strike then hits someone in the face. Someone,slides off his jacket.,allows a small smile as someone approaches the adopted girl.,\"retrieves his hand, hugs it.\",stands at a dead body.,kisses someone's cheek and chest.,gold0-reannot,pos,unl,unl,unl,unl,Someone blocks a strike then hits someone in the face.,Someone\nlsmdc3048_LITTLE_FOCKERS-23198,15935,\"As someone throws a punch, someone blocks him. Someone\",tries to push him away.,takes a breath before letting go from the diving board.,\"whacks him, knocking him into the crowd.\",pulls a toy phone from his pocket.,steps quickly to a wooden shelf opposite.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone throws a punch, someone blocks him.\",Someone\nanetv_vpvhtd7CqUA,268,Anti animal cruelty text appears. A bull fighter,is shown fighting a bull.,stops the young man's sprint forward.,appears in swimming and carries ice in gear.,poses in front of the point clapping his men.,ropes a mask and starts shooting.,gold0-orig,pos,unl,unl,unl,unl,Anti animal cruelty text appears.,A bull fighter\nanetv_vpvhtd7CqUA,270,A video is played of bullfighters getting gored. A new video,showing dead animals plays.,talks and people cheer.,appears with slow motion stills of it jogging down females snowboarding.,is of several more videos.,,gold0-reannot,pos,unl,unl,pos,n/a,A video is played of bullfighters getting gored.,A new video\nanetv_vpvhtd7CqUA,269,A bull fighter is shown fighting a bull. A video,is played of bullfighters getting gored.,shows how to grab his things and clearly use the players' arm to help the dog.,is shown of someone fighting on it.,of a pit with middle frisbee is shown.,of the bulls are shown.,gold1-reannot,pos,unl,unl,unl,pos,A bull fighter is shown fighting a bull.,A video\nlsmdc1034_Super_8-8411,15317,It comes after someone and the others. The three friends,run on down a dark tunnel until they come to a dead end and are forced to stop.,turn their heads off.,head off together.,look up the aisle.,rush over to people inside two columns.,gold0-orig,pos,unl,pos,pos,pos,It comes after someone and the others.,The three friends\nlsmdc1034_Super_8-8411,15313,The alien suddenly stops in its tracks. The sheriff,is up on his feet.,\"looks up, steps through the gate.\",stares into the pond.,looks down at her.,\"looks up towards someone, actually suddenly.\",gold1-orig,pos,unl,unl,unl,unl,The alien suddenly stops in its tracks.,The sheriff\nlsmdc1034_Super_8-8411,15309,The alien puts someone down and immediately goes to investigate the noise. Someone,\"breaks cover and runs over to someone, who lies un - moving on the chamber floor.\",stops and huddled inside the chief of sculpture.,goes to listing voice mail.,stretches through his arm as he walks about half a dozen watering plants.,\"looks around, hearing the noise, blindly, drunkenly, monstrous, horrified.\",gold0-orig,pos,unl,unl,unl,pos,The alien puts someone down and immediately goes to investigate the noise.,Someone\nlsmdc1034_Super_8-8411,15321,The alien draws itself up to its full height of about 25 feet and someone steps towards it. The alien,cocks its head to one side.,surfaces as he moves from the sharp hole.,takes the ring from someone's neck.,reaches out and grabs the ax.,\"slows his bleeding ear and stares up at the stables rear henchman, its arms tightly pressed against its sides.\",gold1-orig,pos,unl,pos,pos,pos,The alien draws itself up to its full height of about 25 feet and someone steps towards it.,The alien\nlsmdc1034_Super_8-8411,15318,The three friends run on down a dark tunnel until they come to a dead end and are forced to stop. The alien,emerges from the shadows.,slides forward out of reach and vanish.,cautiously backs out the tunnel.,picks up the ax.,falls to the ground.,gold0-orig,pos,unl,unl,unl,unl,The three friends run on down a dark tunnel until they come to a dead end and are forced to stop.,The alien\nlsmdc1034_Super_8-8411,15305,\"The alien carries on working, oblivious to someone or someone. It\",stops what it's doing and takes someone down from where she is hanging.,tucks in behind him.,rides up to the front.,remains with the other door.,\"gets up, leaving the guards on.\",gold1-orig,pos,unl,unl,unl,unl,\"The alien carries on working, oblivious to someone or someone.\",It\nlsmdc1034_Super_8-8411,15315,People follow the sheriff through the alien's maze of equipment. The sheriff,shines his flashlight ahead of them.,uncorks the bottle another jug.,sits by the lip of the van.,rushes in and gingerly removes more cash from her now flat tire.,\"answers the phone, and someone then turns off the lights.\",gold0-orig,pos,unl,unl,unl,unl,People follow the sheriff through the alien's maze of equipment.,The sheriff\nlsmdc1034_Super_8-8411,15308,\"He lights a firecracker and leaves it beside a pile of other fireworks, then legs it off back down the tunnel. The alien\",puts someone down and immediately goes to investigate the noise.,extends the pump from the fire truck to the fountain.,turns to the trapped man.,sits at a corner into an enormous shelter in an oven loaded the someone.,sits on the side of a cliff.,gold0-orig,pos,unl,unl,unl,unl,\"He lights a firecracker and leaves it beside a pile of other fireworks, then legs it off back down the tunnel.\",The alien\nlsmdc1034_Super_8-8411,15322,The alien cocks its head to one side. The others,look on in horror as the alien picks someone up.,duck into space as a locomotive's tail erupt along the ceilinged - lit new york skyscrapers.,gaze toward the player.,aim at their partners.,aim its straight face at them.,gold0-orig,pos,unl,unl,unl,unl,The alien cocks its head to one side.,The others\nlsmdc1034_Super_8-8411,15310,\"She stares at him, then hugs him, tight. Someone\",\"looks taken aback, but pleasantly so.\",\"enters a porsche's van, followed by someone.\",looks at him with a furrowed brow.,turns to him.,grins and claps as someone and someone hurry over to a nearby coffee table.,gold0-orig,pos,unl,unl,pos,pos,\"She stares at him, then hugs him, tight.\",Someone\nlsmdc1034_Super_8-8411,15312,\"The alien runs along the dark tunnel in pursuit of someone, who flees up ahead of it. The alien suddenly\",stops in its tracks.,frees him from behind and out of the skylight.,slides out of the gas chemicals into a tunnel that shapes like spiders.,soars down the hill.,,gold0-orig,pos,unl,unl,pos,n/a,\"The alien runs along the dark tunnel in pursuit of someone, who flees up ahead of it.\",The alien suddenly\nlsmdc1034_Super_8-8411,15302,The fork in the tunnel brings someone out quite close to her. He,watches as the alien continues with its work.,open to get a better view ranging from many of the houses in the cemetery.,brings it up then looks down at the bar.,looks down and notices someone forgotten from under her.,,gold0-orig,unl,unl,unl,unl,n/a,The fork in the tunnel brings someone out quite close to her.,He\nlsmdc1034_Super_8-8411,15320,People cower back from it. Someone,stands his ground as it draws closer.,wraps the dog back around his neck.,is someone's leader leaving.,\"quickly wraps a blanket around someone, who's there in the hospital's garage lot.\",,gold0-orig,pos,unl,unl,unl,n/a,People cower back from it.,Someone\nlsmdc1034_Super_8-8411,15306,It stops what it's doing and takes someone down from where she is hanging. Someone,watches with mounting alarm.,answers her phone to make credit.,waits by the buffet and stops.,\"motions her to go further, is deep in thought.\",stands in front of a grated divider.,gold1-orig,pos,unl,unl,unl,unl,It stops what it's doing and takes someone down from where she is hanging.,Someone\nlsmdc1034_Super_8-8411,15319,The alien emerges from the shadows. People,cower back from it.,emerge from the human room entrance.,cover a clip and radio.,stream over a rocky sea.,\"scattered through piles, spectators van spiky smoothly by heads.\",gold0-orig,pos,unl,unl,unl,unl,The alien emerges from the shadows.,People\nlsmdc1034_Super_8-8411,15314,The sheriff is up on his feet. People,follow the sheriff through the alien's maze of equipment.,are snowboarding to the dirt floor in their fenced area.,is watching him from the sun.,burst in the vehicle.,,gold1-orig,pos,unl,unl,unl,n/a,The sheriff is up on his feet.,People\nlsmdc1034_Super_8-8411,15323,The others look on in horror as the alien picks someone up. It,holds him close to its face to get a look at him.,illuminates the missing portion of the porcelain.,has its wings and takes a woman's machete.,flies out of the windows and disappears.,,gold0-orig,pos,unl,unl,pos,n/a,The others look on in horror as the alien picks someone up.,It\nlsmdc1034_Super_8-8411,15311,They carefully lower the sheriff. The alien,\"runs along the dark tunnel in pursuit of someone, who flees up ahead of it.\",\"leans forward, burying his face in the crook of someone's hand.\",offers food on a napkin.,'s large open body just missing the bear.,opens the doors and a middle - aged masked and slams them out.,gold1-orig,pos,unl,unl,unl,unl,They carefully lower the sheriff.,The alien\nlsmdc1034_Super_8-8411,15316,\"Bringing up the rear, someone is snatched by the creature and pulled back into the darkness. It\",comes after someone and the others.,silhouettes the friends as they all lie still.,\"turns to face flames, creating blaze.\",falls on the deck.,,gold1-orig,pos,unl,unl,pos,n/a,\"Bringing up the rear, someone is snatched by the creature and pulled back into the darkness.\",It\nlsmdc1034_Super_8-8411,15304,Someone tries to get his lighter to spark up. The alien,\"carries on working, oblivious to someone or someone.\",\"reaches to pick up the chain of the trolls elastic and pulls from it, breaking the bolt.\",grabs his grenade and one of the men easily takes their support.,'s head comes in banging his head against the hand of something orange by the ocean hand.,gives a heavy glance onto the floor.,gold1-orig,pos,unl,unl,unl,pos,Someone tries to get his lighter to spark up.,The alien\nlsmdc1034_Super_8-8411,15300,Someone selects some suitably noisy fireworks and watches as the alien sets to work on whatever it is it's building. Someone,\"is still dangling, motionless, upside down.\",is attached to a roll of steel bars along a exhaust pipe.,is using fire to object.,steps out of his study.,,gold1-orig,pos,unl,unl,pos,n/a,Someone selects some suitably noisy fireworks and watches as the alien sets to work on whatever it is it's building.,Someone\nanetv_7B1FZR0IA6M,17656,A person jumps off their skateboard into a pile of leaves. A man,films another man skateboarding.,stands by the stove talking.,is doing tricks on a large snow filled skateboard.,walks away with water chasing around.,crawls over on the ground.,gold0-orig,pos,unl,unl,unl,pos,A person jumps off their skateboard into a pile of leaves.,A man\nanetv_7B1FZR0IA6M,17654,A person is jumping on a skateboard on a slack line. People,are doing skateboard tricks at a skate park.,walk along the street and feeling it.,do several ramps and rope stunts as attached to the ropes.,jump off of a high rock as the audience still.,are going over ramps trying to hold an orange ball on the side.,gold0-orig,pos,unl,unl,pos,pos,A person is jumping on a skateboard on a slack line.,People\nanetv_7B1FZR0IA6M,5559,He bounces up and down on rope. He then,does several other tricks.,spins hoops with his men jumping rope.,exercises and jumping on the mat.,pays for several more and feet than the mat.,spins around several times and ends by clapping his hands.,gold0-orig,pos,unl,unl,unl,pos,He bounces up and down on rope.,He then\nanetv_7B1FZR0IA6M,5560,He then does several other tricks. He,jumps a ramp and dives into a pile of leaves.,do a black turn yellow go in talking.,is still running jumps and jumps on his skates.,red colored scales are shown in a photograph.,ends up afterwards as a teacher attempts to stand behind him again.,gold0-orig,pos,unl,unl,unl,unl,He then does several other tricks.,He\nanetv_7B1FZR0IA6M,17655,People are doing skateboard tricks at a skate park. A person,jumps off their skateboard into a pile of leaves.,is riding on a stroller and are beside him.,is jumping on the bike.,is riding in a skateboard down the skateboard.,,gold0-orig,pos,unl,unl,unl,n/a,People are doing skateboard tricks at a skate park.,A person\nanetv_9PvtW0Uvnl0,13514,\"Several shots are shown of people tying their shoes, hitting a button, and checking a watch. People\",are then seen running down the road one at a time followed by many more following.,\"take pictures of the game while a man background a woman, watches.\",begin seen doing continues young into place while vaulters exercising in unison.,are holding their poles up to a third examination table.,begin hitting up one another and throwing an object off into the distance.,gold1-orig,pos,unl,unl,pos,pos,\"Several shots are shown of people tying their shoes, hitting a button, and checking a watch.\",People\nanetv_9PvtW0Uvnl0,13513,A camera pans away from a road and shows a person's feet moving around. Several shots,\"are shown of people tying their shoes, hitting a button, and checking a watch.\",are shown of people running around interviewing the people as well as tying and speaking to one another.,are shown of divers speaking to the camera and gesturing to the camera.,are shown of people interacting in the background.,are shown of people playing tug of war and pedaling speaking to one another.,gold0-orig,pos,unl,unl,pos,pos,A camera pans away from a road and shows a person's feet moving around.,Several shots\nlsmdc0006_Clerks-48654,1350,\"Someone makes blow job faces down an imaginary line of guys, looking quite like a performing seal. He\",throws a little humming sound behind each nod.,\"realizes he has someone from over the satchel, and speaks to the camera.\",\"opens his mouth, picks up a can and doubles the image of the city building.\",\"grabs the shredded tiller against the bench, embarrassed as someone explains fearing by that.\",closes the massive metal doors.,gold0-orig,pos,unl,unl,unl,unl,\"Someone makes blow job faces down an imaginary line of guys, looking quite like a performing seal.\",He\nanetv_Mk9PMED8K4g,6696,\"A lady pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike. The lady\",backs the dirt bike off the truck.,pushes the pinata to see where they started.,goes up the window and pierces the side of the cake.,walks slowly down a hill where children talking.,says a bit finally.,gold0-orig,pos,unl,unl,unl,unl,\"A lady pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike.\",The lady\nanetv_Mk9PMED8K4g,6699,The lady rides the dirt bike through water. The lady,talks on a phone.,lassos two horses and rides a horse along.,mounts the horse and gets out of the car.,pulls the bike back.,,gold1-orig,pos,unl,unl,unl,n/a,The lady rides the dirt bike through water.,The lady\nanetv_Mk9PMED8K4g,6694,A person is riding a dirt bike. A lady,puts on goggles while sitting on a dirt bike.,puts his hand under an ice cream bar.,puts a bike on top of a bike.,is grooming an old pinkie with hose.,steps out onto a motorbike.,gold0-orig,pos,unl,unl,unl,pos,A person is riding a dirt bike.,A lady\nanetv_Mk9PMED8K4g,18494,\"The woman is shown sitting on a motorcycle wearing a red bull helmet. He starts the motorcycle and goes away, next the woman stops the motorcycle when she gets near a car and she\",changes the clothes she has on and gets back on her motorcycle.,jumps over the ground.,is in robert talks.,chews it and watches on off as the couple gets in.,racing to a guests.,gold1-orig,pos,unl,unl,unl,unl,The woman is shown sitting on a motorcycle wearing a red bull helmet.,\"He starts the motorcycle and goes away, next the woman stops the motorcycle when she gets near a car and she\"\nanetv_Mk9PMED8K4g,6697,\"The lady climbs on the truck, undressed, and dresses in her biking gear. The lady\",rides off on the dirt bike.,then begins on a horse jumping over the top of a ramp.,rides a scooter and rides the car down the road.,uses the bike to guide her bike then stop it and slides the helicopter over down the ramp.,\"finishes the jack, climbs and ropes the container, and pulls the handlebars from the gate.\",gold1-orig,pos,unl,unl,unl,unl,\"The lady climbs on the truck, undressed, and dresses in her biking gear.\",The lady\nanetv_Mk9PMED8K4g,6698,The lady rides off on the dirt bike. The lady,rides the dirt bike through water.,flips the bike wheel on the ground.,rides the bike again.,returns riding an exercise bike.,flips the wheel off the bike.,gold0-reannot,pos,unl,unl,unl,pos,The lady rides off on the dirt bike.,The lady\nanetv_Mk9PMED8K4g,6695,A lady puts on goggles while sitting on a dirt bike. A lady,\"pulls out a silver ladder, climbs a into a truck, and sits on a dirt bike.\",picks up a black brush and starts taking them down and pedaling.,holds a small brush in the front paw of a knife outside.,puts the strap on the rail of the canoe getting ready to swing.,gets a old sweatshirt turns on a water machine.,gold0-reannot,pos,unl,unl,unl,unl,A lady puts on goggles while sitting on a dirt bike.,A lady\nanetv_5rw6n16ILgY,17690,\"A series of female contestants are shown trying to jump a hurdle while an audience watches, and the four commentators occasionally interject. Some of the contestants\",are interviewed with flowers in their hands.,get their legs through the air.,fall from their shoulders.,are seen waving her arms in unison.,take someone out of the arena!,gold0-orig,pos,unl,unl,unl,unl,\"A series of female contestants are shown trying to jump a hurdle while an audience watches, and the four commentators occasionally interject.\",Some of the contestants\nanetv_5rw6n16ILgY,18401,A woman then runs across a track and jumps over a beam. a second woman then,runs and jumps over a different beam.,jumps and loses the skateboard then does some flips.,spins himself on the pole and performs many tricks.,performs a gymnastics routine on the parallel bars.,split on a beam and pushes herself backwards and down.,gold1-orig,pos,unl,pos,pos,pos,A woman then runs across a track and jumps over a beam.,a second woman then\nanetv_5rw6n16ILgY,18400,Four men sit at a table and give commentary. a woman then,runs across a track and jumps over a beam.,begins putting contact lenses in their face.,plays the game and is shaking a pole.,grabs drink from an alcohol bottle and pushes it on the floor.,talks to the woman before the man spreads liquid and create some ice cream.,gold0-reannot,pos,unl,unl,unl,pos,Four men sit at a table and give commentary.,a woman then\nlsmdc3092_ZOOKEEPER-45099,2151,Someone winces and grits his teeth. He,pulls out the quill.,walks across the street.,brings his hands forward.,turns to someone with a fixed smirk.,approaches the vault repeatedly.,gold0-orig,pos,pos,pos,pos,pos,Someone winces and grits his teeth.,He\nlsmdc3092_ZOOKEEPER-45099,2154,\"Someone creeps past a man - made waterfall. Swinging it open, he\",finds a power box inside.,pulls the cable open.,reaches towards the circle.,illuminates the manhattan skyline.,finds someone tossing someone's books at the floor.,gold0-orig,pos,unl,unl,unl,unl,Someone creeps past a man - made waterfall.,\"Swinging it open, he\"\nlsmdc3092_ZOOKEEPER-45099,2150,\"As someone stares after her, Floyd shoots a quill into his forehead. Someone\",winces and grits his teeth.,grins at her oldest daughter.,runs his arms over someone's small stomach.,sidesteps with her elbow.,,gold0-orig,pos,unl,unl,pos,n/a,\"As someone stares after her, Floyd shoots a quill into his forehead.\",Someone\nlsmdc3092_ZOOKEEPER-45099,2156,\"On just his hind legs, someone scurries down a path to a set of heavy iron double doors. He\",\"climbs up to the keyhole, glances around, then picks the lock.\",\"slaps someone's shoulder and they start into the room, and the zombies behind their death aggressively splayed out.\",\"bursts through a crowd, then spins one after the other, narrowly missing full.\",scrambles to the kitchen board then dumps them across his wooden table to the wall man.,clears a candle for them.,gold0-orig,pos,unl,unl,unl,unl,\"On just his hind legs, someone scurries down a path to a set of heavy iron double doors.\",He\nlsmdc3092_ZOOKEEPER-45099,2153,\"The monkey leaps onto it, climbs down the pole and lands in someone's enclosure. Someone\",creeps past a man - made waterfall.,dives off the balustrade and lands on a howling.,hustles into someone's house.,digs down a paper skirt.,sees it's not adoring.,gold1-reannot,pos,unl,unl,unl,pos,\"The monkey leaps onto it, climbs down the pole and lands in someone's enclosure.\",Someone\nlsmdc3092_ZOOKEEPER-45099,2155,\"A dog is licking himself. On just his hind legs, someone\",scurries down a path to a set of heavy iron double doors.,has adopted children rich and dull grapes.,\"is using a mug in a small ashen street with a house wash, cutting clothes and a beard.\",picks up the dogs shoes as a person in a black hoodie with large grail toothbrush.,takes another unlaced weed off a stump.,gold0-reannot,pos,unl,unl,unl,unl,A dog is licking himself.,\"On just his hind legs, someone\"\nlsmdc3092_ZOOKEEPER-45099,2152,He pulls out the quill. The monkey,\"leaps onto it, climbs down the pole and lands in someone's enclosure.\",'s head reads four minutes to two.,checks the oven number.,\"bereaved inspector picks up his mobile phone from a bar, opens his eyes and smells his guest.\",\"nudges a few legs back and forth, its wings flapping its wings and glides back through the dark.\",gold0-reannot,pos,unl,unl,unl,unl,He pulls out the quill.,The monkey\nanetv_CI6cPLeVCTk,18585,Two people are seen sitting on swings outside. The people then,begin moving back and fourth.,hop on one another.,run around bumping with each other.,begin to skate around one another.,skiing in rough water and doing different tricks.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen sitting on swings outside.,The people then\nanetv_5-SbGVTPM1c,12298,Men run down a track and leap backwards over a bar. A man,waves a white flag once the land.,runs through a padded ramp and lands on the parallel bars.,walks with a disc in his hand.,throws a heavy discuss.,crashes into a sand pit and hops in the sand.,gold0-orig,pos,unl,unl,unl,pos,Men run down a track and leap backwards over a bar.,A man\nlsmdc1008_Spider-Man2-75727,17425,Someone moves her head away and closes her mouth and her eyes. Someone,'s lost in memories.,swallows and smiles at their pretty date.,\"stands for a moment, then walks away.\",\"notices the bottles of powder in her hand, as her mother gazes at it.\",\"remains remembering and checks her clock, the camera shifts to the window.\",gold0-orig,pos,unl,pos,pos,pos,Someone moves her head away and closes her mouth and her eyes.,Someone\nlsmdc1008_Spider-Man2-75727,17429,\"Someone is sitting in a cafe with a glass front, leaning her head on her hand. Someone\",\"strolls in, and sits opposite her.\",holds the lady down and looks surprised to see her.,shuts the door and looks around.,sits with someone and gazes into the adjustment officer's eyes.,steps forward and faces someone.,gold1-orig,pos,unl,unl,unl,pos,\"Someone is sitting in a cafe with a glass front, leaning her head on her hand.\",Someone\nlsmdc1008_Spider-Man2-75727,17428,\"She opens her mouth in a silent sigh, and looks sad and reflective. Someone\",\"is sitting in a cafe with a glass front, leaning her head on her hand.\",\"comes on from the bathroom, then stops for a moment and averts her worried gaze.\",\"rises from her bed across his face and looks at her, watching soberly.\",keeps gesturing at her hands in the bathtub.,\"thinks about a moment, then turns towards someone.\",gold0-orig,pos,unl,unl,unl,pos,\"She opens her mouth in a silent sigh, and looks sad and reflective.\",Someone\nlsmdc1008_Spider-Man2-75727,17423,\"Someone, on her knees, leans over him, kissing him full on the lips, her head pointing the opposite way from his. He\",\"stretches out his left hand, and holds her head still.\",\"lifts his glove, shows missing a little bite, and bares his teeth.\",freezes as a man shakes his head back and forth beneath the chair.,\"looks a couple of times, never taking his eyes off her.\",,gold1-orig,pos,unl,unl,pos,n/a,\"Someone, on her knees, leans over him, kissing him full on the lips, her head pointing the opposite way from his.\",He\nlsmdc1008_Spider-Man2-75727,17421,He is lying on the sofa. He,turns over and tips his head back on a cushion on the arm of the sofa.,follows and holds the cellphone to his ear.,comes to the living room.,lies in the bed with someone.,goes to the window with beige blinds.,gold0-orig,pos,unl,unl,unl,unl,He is lying on the sofa.,He\nlsmdc1008_Spider-Man2-75727,17426,Someone's lost in memories. Her long hair,\"trails down over his cheek, until someone pulls back.\",lies in the floor beneath the pillow.,slumps over a suspended breath.,mussed as the water submerges away to her mouth.,is done in sun.,gold0-reannot,pos,unl,unl,unl,unl,Someone's lost in memories.,Her long hair\nlsmdc1008_Spider-Man2-75727,17422,\"He turns over and tips his head back on a cushion on the arm of the sofa. Someone, on her knees,\",\"leans over him, kissing him full on the lips, her head pointing the opposite way from his.\",pulls her to her feet.,leans down and types a blanket over her.,is flung backwards by the rumpled.,sits on the floor doing push - ups in the foyer and into the suite.,gold1-reannot,unl,unl,unl,unl,unl,He turns over and tips his head back on a cushion on the arm of the sofa.,\"Someone, on her knees,\"\nlsmdc1008_Spider-Man2-75727,17427,\"Her long hair trails down over his cheek, until someone pulls back. She\",\"opens her mouth in a silent sigh, and looks sad and reflective.\",\"looks at her for a moment, then turns away and looks to her in the eye.\",turns to find someone's teen swinging a pitchfork.,responds with a grotesque sympathetic smile.,,gold1-reannot,pos,unl,unl,pos,n/a,\"Her long hair trails down over his cheek, until someone pulls back.\",She\nlsmdc1008_Spider-Man2-75727,17424,\"He stretches out his left hand, and holds her head still. Someone\",moves her head away and closes her mouth and her eyes.,shakes his own hand.,lays a hand on his arm.,\"lies limp from someone, clinging to a blanket.\",lays it down on the bed.,gold1-reannot,pos,unl,unl,pos,pos,\"He stretches out his left hand, and holds her head still.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1543,Someone and someone sit up. Someone,turns to a mirror.,tries someone on her way out.,looks over at someone who stands stock in his tracks.,stands and stares at people.,holds a newspaper ad for someone.,gold0-orig,pos,unl,unl,pos,pos,Someone and someone sit up.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1542,\"A dress flips over a curtain rod, and an employee brings another one. Someone\",\"steps out in a silver dress, her long hair draped over one shoulder.\",grins to his chest and executes it.,holds a brandy then follow her.,reluctantly returns.,brings someone a drink.,gold0-orig,pos,unl,unl,pos,pos,\"A dress flips over a curtain rod, and an employee brings another one.\",Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1545,Someone crosses to the living room where the penguins gather around a scattering of stones from a hearth. She,kneels on the floor.,carries a small tray of flowers onto a table on the way to the beach.,looks under the covers to reveal the towering skeleton.,reaches up behind him and pulls someone's head against someone's shoulder.,walks up to the blonde boy who holds her collar.,gold0-orig,pos,unl,unl,unl,unl,Someone crosses to the living room where the penguins gather around a scattering of stones from a hearth.,She\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1548,Someone steps aside and makes a phone call. Someone,sits at a restaurant.,stands at the end of an incline.,pulls up at retirement.,kicks someone's shoes into the parked car.,knocks on the window.,gold0-orig,pos,unl,unl,unl,unl,Someone steps aside and makes a phone call.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1546,She kneels on the floor. Someone,crouches down to find another egg.,browses stuffed binder items.,walks up behind her as she turns and walks away.,walks along the hall and solemnly glances over his shoulder at a wall of fluffy green stairs.,leads the someone past library and knocked to someone's stunned father.,gold0-reannot,pos,unl,unl,unl,unl,She kneels on the floor.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1551,Someone and someone leave them. Someone,points to a penguin sitting on the snow globe.,is in his seat with the general.,sneaks with them to the stepladder of jutting rock.,faces the children uncomfortably facing the boy.,looks on someone blows out his birthday candles.,gold1-reannot,pos,unl,unl,unl,pos,Someone and someone leave them.,Someone\nlsmdc3050_MR_POPPERS_PENGUINS-24193,1547,\"The penguin turns back, then scurries out as someone joins them. Someone\",steps aside and makes a phone call.,re - on - line its hinge of minas quidditch.,flicks the light at the crowd.,opens them to reveal someone standing elegantly.,watches someone step back up to the sink.,gold1-reannot,pos,unl,unl,unl,unl,\"The penguin turns back, then scurries out as someone joins them.\",Someone\nanetv_GNzaxjYL0TM,19373,Two people are seen sitting on dirt bikes speaking to the camera with one shoveling dirt and the other riding along. Several shots,are then shown of the two riding dirt bikes along a trail while stopping to gesture to the camera every now and then.,are shown of people riding down a snowy hill on skateboards as well as riding on skateboards and continuing along with people.,are shown of people riding on the ice followed by a man with the body as well as people walking in the area.,are shown of people wandering and looking at one another as well as speaking to the camera.,are shown of men skateboarding as well as another man walking on the side and being interviewed that also monkeys going down the slide.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen sitting on dirt bikes speaking to the camera with one shoveling dirt and the other riding along.,Several shots\nanetv_nSR-JSqGoWQ,14792,\"The Brazilians follow up with a goal on a penalty kick, taken by an exuberant keeper. The Argentinians\",steal a pass halfway across the sand field and take it down for a goal in the tight corner.,get out by the shoot.,\"are surrounded by men, surrounded by red walls.\",shoot away from the kids.,,gold1-orig,pos,unl,unl,unl,n/a,\"The Brazilians follow up with a goal on a penalty kick, taken by an exuberant keeper.\",The Argentinians\nanetv_nSR-JSqGoWQ,14794,\"To make matters worse, Argentina scores on a deep uncontested shot after that. This game is far too easy for them, and they\",win by a large score.,went down the games while throwing balls onto each others.,get back and forth with their sticks.,have a brief replay with his conversation.,,gold0-orig,pos,unl,unl,unl,n/a,\"To make matters worse, Argentina scores on a deep uncontested shot after that.\",\"This game is far too easy for them, and they\"\nanetv_nSR-JSqGoWQ,14793,The Argentinians steal a pass halfway across the sand field and take it down for a goal in the tight corner. This,is immediately followed by another goal from argentina on a penalty kick.,am in the same setting.,is the first man to hit the boy.,ends after the ball fall on.,,gold0-reannot,pos,unl,unl,pos,n/a,The Argentinians steal a pass halfway across the sand field and take it down for a goal in the tight corner.,This\nanetv_5nvximBXhFI,10962,\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy is shown holding a camera with a selfie stick recording the action. After, a black male appears talking in the car and the boys\",are then shown walking up a set of stairs.,are falling the hill and cause him to go the far way across a river and do the same.,fix on it once as various snow skis.,appear clapping their hands and breaths away from hair left.,,gold0-orig,pos,unl,unl,pos,n/a,\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy is shown holding a camera with a selfie stick recording the action.\",\"After, a black male appears talking in the car and the boys\"\nanetv_5nvximBXhFI,10961,\"A tall garage building is shown in the dark and then several teen age boys appear skateboarding in the inside of it. As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy\",is shown holding a camera with a selfie stick recording the action.,takes out his social gambling venue.,in a wheelchairs begin to tug and begins to take them.,pushes them in order to hurl ice away.,comes to a halt with another bigger boy in a park.,gold0-orig,pos,unl,unl,unl,pos,A tall garage building is shown in the dark and then several teen age boys appear skateboarding in the inside of it.,\"As they come around the corner, they hold on to each others shirts and come down the slanted road in a single file line and a boy\"\nanetv_5nvximBXhFI,10963,\"After, a black male appears talking in the car and the boys are then shown walking up a set of stairs. The action continues and all the boys join one another back in the garage and the male that was talking in the video\",is seen skating with the rest of the boys.,screws to their eye.,takes the boy off to the bottom and view if he was making a final jump.,is about his karate performance.,speaking to an older woman.,gold0-orig,pos,unl,unl,unl,pos,\"After, a black male appears talking in the car and the boys are then shown walking up a set of stairs.\",The action continues and all the boys join one another back in the garage and the male that was talking in the video\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5950,\"Perching in an armchair, someone leans back and peers out a window. Someone\",takes her notebook from her purse and writes.,spits down two bottles.,darts down the cave range.,stands in the rain and turns to face her mother.,,gold0-orig,pos,unl,unl,pos,n/a,\"Perching in an armchair, someone leans back and peers out a window.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5953,\"Someone comes down barefooted, swigging champagne from the bottle. She\",notices a short man chatting up a model type.,stands up and presses a hand to her forehead then pours some into someone's eyes.,glances up at him warmly.,has become more angry.,,gold0-orig,pos,pos,pos,pos,n/a,\"Someone comes down barefooted, swigging champagne from the bottle.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5954,She pads down the hall and wedges between an attractive young man and woman. She,\"rounds a corner, then peeks back at the woman with beau.\",shows someone as she leaves with someone.,guests have gathered together at the golden queen of cafe park.,\"fan poses before the display platform its grand illuminate, brown - furnished and with a cornered set.\",\"is writing in a chair, where someone stares at the book's portrait pegs.\",gold1-orig,pos,unl,unl,unl,unl,She pads down the hall and wedges between an attractive young man and woman.,She\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5956,\"Amid a huddle of giggling women, one aims her videophone. Someone\",spins to face the engaged couple and flourishes her free hand.,\"tearful vet notices the three soldiers lying asleep, in - sulky sleep.\",smacks her spear out of the back of the corpse.,\"scowls with her breasts, then dangles her beer.\",turns and runs down a crowded corridor and halts.,gold1-orig,pos,unl,unl,unl,pos,\"Amid a huddle of giggling women, one aims her videophone.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5949,\"At a mirror, someone curls her lashes. Perching in an armchair, someone\",leans back and peers out a window.,plants a folded scissor on the desk and holds it to his chest.,arrives before the fire.,dumps some of the capsules onto the exam table.,looks up at her in a mirror.,gold0-orig,pos,unl,unl,unl,pos,\"At a mirror, someone curls her lashes.\",\"Perching in an armchair, someone\"\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5955,\"She rounds a corner, then peeks back at the woman with Beau. The drunk young woman reluctantly\",makes her way to the center of the party.,breaks off his frown.,steps off the dinner counter and faces a glass of champagne.,bops to a stall and swoops it toward the floor again.,backs away from a stash to the floor.,gold1-orig,pos,unl,unl,unl,pos,\"She rounds a corner, then peeks back at the woman with Beau.\",The drunk young woman reluctantly\nlsmdc3088_WHATS_YOUR_NUMBER-41950,5952,\"Someone grabs a glass of champagne and gulps down half its content. Now at the party downstairs, her mother\",taps the side of her wine.,carries her mother to a table.,grabs her hands and fumbles it.,looks at a kitty computer phone.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone grabs a glass of champagne and gulps down half its content.,\"Now at the party downstairs, her mother\"\nanetv_KzxVQ19pRUU,14409,A man is seen speaking to the camera and begins holding up bottles of alcohol. He,mixes ingredients together as well as liquids into a mixer.,stirs a glass of soda in a shaker and then downs it in a glass.,begins filling out the alcohol in a glass by shaking it.,are then shown putting gloves and pouring into several buckets as well as game of water.,is then seen taking a drink off of a fish and walking closer to his camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and begins holding up bottles of alcohol.,He\nanetv_KzxVQ19pRUU,14410,He mixes ingredients together as well as liquids into a mixer. He,takes a drink and mixes the ingredients up together.,mashes up the mixture into a pouch and adds ingredients into another dish and creates a omelette with a spoon.,\"mixes out dough in a plastic pot, then measures it need to put it in a pan.\",adds up more ingredients to a plate while several other people look in the pumpkin.,mixes ingredients together in a bowl and mixes them together.,gold0-orig,pos,unl,unl,unl,pos,He mixes ingredients together as well as liquids into a mixer.,He\nanetv_KzxVQ19pRUU,14411,He takes a drink and mixes the ingredients up together. He finally,puts in whip cream and a cherry to present.,pours the meal over a clear spoon and stirs the pasta into the pasta.,pours the glass out onto a plate.,juices a martini and pours it in the pitcher.,mixes the noodles into the pan and is cooking up.,gold0-reannot,pos,unl,unl,unl,unl,He takes a drink and mixes the ingredients up together.,He finally\nlsmdc3002_30_MINUTES_OR_LESS-947,13286,\"As someone attacks, someone defends himself with the hair trimmer. Someone\",whips him with the cord.,pulls a new cat out of its case.,\"keeps his hands pointed at them, someone into someone's eyes.\",frowns and glares brightly at someone.,clubs him in the face.,gold0-orig,pos,unl,unl,unl,pos,\"As someone attacks, someone defends himself with the hair trimmer.\",Someone\nlsmdc3002_30_MINUTES_OR_LESS-947,13287,Someone whips him with the cord. Someone,punches him in the kidney.,\"stands in front of someone, wielding a knife, kneeling back straight up in the sky.\",quickly takes the first steps to his shirt door.,roars down the sticky passage.,gathers one and drops it on top of her.,gold1-reannot,pos,unl,unl,unl,unl,Someone whips him with the cord.,Someone\nanetv_b6VAlwv45q4,9264,A man plays and narrates a virtual video game on camera while talking into a microphone and wearing headphones as the games plays behind him as a animation. A man,simulates throwing up in a close up view on camera.,holds two lighter sticks next to a bowling ball.,\"makes a flute while dancing a bit, then runs out and shrieks in his entire song.\",hits the billiard ball and throws it by the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A man plays and narrates a virtual video game on camera while talking into a microphone and wearing headphones as the games plays behind him as a animation.,A man\nanetv_b6VAlwv45q4,2085,The blue and gray guy are on a seesaw and the blue guy jumps at the gray guy. Both of the characters,fall off the map.,\"continue playing, and a guy holds the camera up to his legs.\",finish their routine and spin around.,set their keys on their bikes.,,gold1-orig,unl,unl,unl,unl,n/a,The blue and gray guy are on a seesaw and the blue guy jumps at the gray guy.,Both of the characters\nanetv_b6VAlwv45q4,9265,A man simulates throwing up in a close up view on camera. The man then,talks into a microphone as an animated video game plays behind him in full screen.,walks through an forest using a silver pole in iron man's hand.,dives into the pit with a skateboard on his rope.,moves a handle of the fire with his hands.,,gold1-orig,pos,unl,unl,unl,n/a,A man simulates throwing up in a close up view on camera.,The man then\nanetv_b6VAlwv45q4,2086,Both of the characters fall off the map. The guys fall down stairs fighting and we,see the subscribe screen.,see it before officers lesson in the room with the tier up and the audience table.,see a few text at the end.,see the scoreboard and all are two again.,,gold1-orig,pos,unl,unl,unl,n/a,Both of the characters fall off the map.,The guys fall down stairs fighting and we\nanetv_b6VAlwv45q4,2084,One character falls off the map and a third character joins the fight. The blue and gray guy are on a seesaw and the blue guy,jumps at the gray guy.,stops when he starts a sport formation with heavy yellow jerseys.,skis with the bull clapping behind.,move out of the shelter of the wooden stick.,are riding their raft and sailing in the water in rapids.,gold0-reannot,pos,unl,unl,unl,unl,One character falls off the map and a third character joins the fight.,The blue and gray guy are on a seesaw and the blue guy\nanetv_1stYB5_yR5k,18393,The man mix the paint and with a brush varnish all the shed. at the end the man,talks to the camera and shows the materials list.,blows the liquid into the washer and walks away.,gets into his car and brushes a curtain off the hall.,cuts his hair while jogging.,,gold0-orig,pos,unl,unl,unl,n/a,The man mix the paint and with a brush varnish all the shed.,at the end the man\nanetv_1stYB5_yR5k,18392,Man is talking to the camera cleaning a wooden shed and start painting it. the man,mix the paint and with a brush varnish all the shed.,is showing playing the carpet that the house is using.,is talking to the camera while another man is running in.,kneeling down in a room in clean clothes.,gets to the bottom of the house and the tires wet.,gold0-orig,pos,unl,unl,unl,unl,Man is talking to the camera cleaning a wooden shed and start painting it.,the man\nlsmdc0020_Raising_Arizona-57769,12167,An Old Hayseed with his hands in the air speaks up. Someone,is tossing someone a sack.,moves around in a chair for a weight ring and the metal look on the ground.,holds the instructions and starts sharpening the right blade of the bread.,contorts as the through green tears.,smiles and commentary obediently.,gold0-orig,pos,unl,unl,unl,unl,An Old Hayseed with his hands in the air speaks up.,Someone\nlsmdc0020_Raising_Arizona-57769,12156,\"The rumble builds, louder and louder, until it is snapped off by a click. The front door handle clicks open and someone\",stands in the doorway.,struggles to hold himself.,stands from a seven - nine!,can just overhears them.,\"smiles at us, and waves it in.\",gold0-orig,pos,unl,unl,pos,pos,\"The rumble builds, louder and louder, until it is snapped off by a click.\",The front door handle clicks open and someone\nlsmdc0020_Raising_Arizona-57769,12169,He is looking in shock at the tellers' counter. Someone,\"is momentarily abashed, but then brightens.\",leans out in the light of the surveillance car.,\"tosses a plastic bean, and drops it down in the sink.\",someone is looking on.,goes up against him amazed.,gold1-orig,pos,unl,unl,unl,unl,He is looking in shock at the tellers' counter.,Someone\nlsmdc0020_Raising_Arizona-57769,12161,As he stands up with the piece of paper. It,is someone's picture of the farmers and mechanics bank.,explains with one of the women in various shots demonstrating what to do.,folds his hands and throws him onto his back.,\"placed a small card basket, which then selects garbage and rolls.\",\", the man is drawn into the center from the stairs showing a muslim to him.\",gold0-orig,pos,unl,unl,unl,unl,As he stands up with the piece of paper.,It\nlsmdc0020_Raising_Arizona-57769,12154,\"As we hear his footfalls on concrete steps, someone rises into frame, apparently climbing a stoop. The sun behind him throws him into silhouette; the extreme telephoto\",flattens him against the sun.,surface patrolman still rouses him.,flickers across the gray cloud of cloud forming the base of the glass v. which the left man is leaning against to side down.,glow of new light shines across the door of the apartment building.,curl along the shape of a wand course.,gold0-orig,pos,unl,unl,unl,unl,\"As we hear his footfalls on concrete steps, someone rises into frame, apparently climbing a stoop.\",The sun behind him throws him into silhouette; the extreme telephoto\nlsmdc0020_Raising_Arizona-57769,12160,\"He bends down to pick it up but suddenly freezes, with a soft grunt of surprise. As he\",stands up with the piece of paper.,\"turns from the door, rumbling it down.\",starts to open the door a few inches.,\"swings for her and waits, she laughs and slaps down her knees.\",\"slides toward it, it lunges and grabs an sock off his leg.\",gold0-orig,pos,unl,unl,unl,unl,\"He bends down to pick it up but suddenly freezes, with a soft grunt of surprise.\",As he\nlsmdc0020_Raising_Arizona-57769,12158,\"The room is a complete shambles from the fight. After only a momentary pause at the door to take in the scene, someone\",\"goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper.\",\"opens his right hand at the left, sprints out of the room and tries to pull the door open.\",looks down at him.,slowly turns and faces him directly in the rear wall.,,gold0-orig,pos,unl,pos,pos,n/a,The room is a complete shambles from the fight.,\"After only a momentary pause at the door to take in the scene, someone\"\nlsmdc0020_Raising_Arizona-57769,12153,\"A huge rumbling rippling red ball that fills the frame. As we hear his footfalls on concrete steps, someone\",\"rises into frame, apparently climbing a stoop.\",is suddenly aware that someone is asleep on the porch.,is a electrical holographic solo.,\"appears on the phone, his face reflected in the water.\",\"looks over his shoulder, impaled to every quarter.\",gold0-orig,pos,unl,unl,unl,unl,A huge rumbling rippling red ball that fills the frame.,\"As we hear his footfalls on concrete steps, someone\"\nlsmdc0020_Raising_Arizona-57769,12155,The sun behind him throws him into silhouette; the extreme telephoto flattens him against the sun. The rumble,\"builds, louder and louder, until it is snapped off by a click.\",\"of his helmet flicks its head in the air as someone yells to someone, as he rubs someone's hair.\",is heard as they lift a few feet from the car.,\"gets louder, louder than just before the second group regains control.\",stops between two massive rocks as he grips the rope.,gold1-orig,pos,unl,unl,unl,unl,The sun behind him throws him into silhouette; the extreme telephoto flattens him against the sun.,The rumble\nlsmdc0020_Raising_Arizona-57769,12162,It is someone's picture of the Farmers and Mechanics Bank. They,look at each other.,are seen chatting & female colleagues.,sports an eye with rounded lenses.,look up to show someone seated around.,bake from the refrigerator and loaded as ingredients are added to the car.,gold1-orig,pos,unl,unl,unl,unl,It is someone's picture of the Farmers and Mechanics Bank.,They\nlsmdc0020_Raising_Arizona-57769,12168,Someone is tossing someone a sack. He,is looking in shock at the tellers' counter.,rotates a plane inside.,gets handcuffed from the broom.,fills his coat with basket.,,gold1-orig,pos,unl,unl,unl,n/a,Someone is tossing someone a sack.,He\nlsmdc0020_Raising_Arizona-57769,12159,\"After only a momentary pause at the door to take in the scene, someone goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper. He\",\"bends down to pick it up but suddenly freezes, with a soft grunt of surprise.\",puts it back to the rooftop repairing a glass partition.,look a frightened creature in all directions.,reaches across nearby tables.,,gold0-orig,pos,unl,unl,unl,n/a,\"After only a momentary pause at the door to take in the scene, someone goes directly to a specific spot in the debris and nudges some of it aside with his toe, exposing a piece of paper.\",He\nlsmdc0020_Raising_Arizona-57769,12166,Someone holds a shotgun; someone holds a shotgun in one hand and someone. in his car seat in the other. Everyone,\"freezes, staring at people.\",\"looks up at someone, who stands behind him.\",\"makes his way down the snowy streets to the honda, who is still motionless as the car accelerates ahead.\",ducks behind the trees.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone holds a shotgun; someone holds a shotgun in one hand and someone. in his car seat in the other.,Everyone\nlsmdc0020_Raising_Arizona-57769,12165,As people bang in through the door. Someone holds a shotgun; someone,holds a shotgun in one hand and someone.,drops inside a chain veil.,limps over to the bank.,quickly serves it all over.,just sinks to his knees in the middle of the road to the road.,gold0-reannot,pos,unl,unl,unl,pos,As people bang in through the door.,Someone holds a shotgun; someone\nlsmdc0020_Raising_Arizona-57769,12164,Someone reaches for his door. As people,bang in through the door.,\"have fired another attack, someone falls.\",\"hurry round the corner, women pop out of the room and leave their cigarette butts out.\",turn it and hide behind the pillar.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone reaches for his door.,As people\nlsmdc0020_Raising_Arizona-57769,12163,They look at each other. Someone,reaches for his door.,grabs the key from his pocket and rushes to him.,turns and sits pensively in his car.,squeezes buttons and holds out a manuscript.,takes a couple of brandy and sets them on the table.,gold0-reannot,pos,unl,unl,unl,pos,They look at each other.,Someone\nlsmdc3044_KNOCKED_UP-20906,9737,Someone smiles indulgently as the doctor forces a smile and inserts the wand. An image,appears on a monitor.,shows the red glowing circle of someone's arrival.,appears in the mist.,shows some of the women television set lying on the floor.,appears on the male!,gold0-orig,pos,unl,unl,unl,pos,Someone smiles indulgently as the doctor forces a smile and inserts the wand.,An image\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14101,\"Buckbeak gallops across the quadrangle, flaps his wings, and takes off into the night sky. Silhouetted against the moon, he\",carries someone away to safety.,inspects his wife dance clothes.,presses pensively on his shield.,toying with a flows focusing bird cage onto his head.,opens the house door and opens a new one.,gold0-orig,pos,unl,unl,unl,unl,\"Buckbeak gallops across the quadrangle, flaps his wings, and takes off into the night sky.\",\"Silhouetted against the moon, he\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14105,\"The great wheels turn as the clock chimes. As they run along the corridor towards the hospital wing, someone\",comes out and closes the door.,swigs as his friend.,leads the penguins to a bunk bed.,\"reaches his hut, carrying snowy ax and tray.\",walks past someone and gestures toward someone stairwell.,gold0-orig,pos,unl,unl,unl,pos,The great wheels turn as the clock chimes.,\"As they run along the corridor towards the hospital wing, someone\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14104,They hurry upstairs past the huge clock. The great wheels,turn as the clock chimes.,are sent scrambling into an adjacent.,loom into the air plaza.,emerge from the tree.,,gold0-orig,pos,unl,unl,unl,n/a,They hurry upstairs past the huge clock.,The great wheels\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14103,\"Pulling someone after her, someone runs across the quadrangle into the school. They\",hurry upstairs past the huge clock.,\"spins her a second look, then perches lightly on his leg.\",gate and steps forward as someone walks into the area behind the crowd.,arrive at a bank's crest.,,gold0-orig,pos,unl,unl,unl,n/a,\"Pulling someone after her, someone runs across the quadrangle into the school.\",They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14100,Someone climbs onto Buckbeak's back and smiles at someone. Buckbeak,\"gallops across the quadrangle, flaps his wings, and takes off into the night sky.\",stretches out to cover her smile while grinning.,holds his hand beside a lantern.,rises between someone's mighty feet.,leaps on his side on the ledge.,gold0-reannot,pos,unl,unl,unl,unl,Someone climbs onto Buckbeak's back and smiles at someone.,Buckbeak\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-10027,14102,\"Silhouetted against the moon, he carries someone away to safety. Pulling someone after her, someone\",runs across the quadrangle into the school.,curls her body behind her.,sits back on her seat.,averts his gaze.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Silhouetted against the moon, he carries someone away to safety.\",\"Pulling someone after her, someone\"\nanetv_G3cINUdHdGo,2920,\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he starts aiming at the dartboard with the darts in his hand. The man then throws three darts against the dartboard, two of which stick to the board, the man\",goes to retrieve a dart from the board and gestures with his fist and a smile.,picks up the ball and strikes it with it.,throws the darts across the board.,\"darts down the hatchback, leaves and then back down as the men try to get in.\",swoops up and disappears.,gold1-orig,pos,unl,unl,unl,unl,\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he starts aiming at the dartboard with the darts in his hand.\",\"The man then throws three darts against the dartboard, two of which stick to the board, the man\"\nanetv_G3cINUdHdGo,2918,A man in a red shirt speaks and demonstrates how to throw darts against a dart board while three other people in red shirts watch behind him. A man in a red shirt,faces the camera and begins to talk while holding darts in his hand and while three men behind him watch.,is waving his hands in the air above.,grabs darts and darts off a dart board and lands on his chest.,is skateboarding down the lane talking.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a red shirt speaks and demonstrates how to throw darts against a dart board while three other people in red shirts watch behind him.,A man in a red shirt\nanetv_G3cINUdHdGo,2919,\"A man in a red shirt faces the camera and begins to talk while holding darts in his hand and while three men behind him watch. The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he\",starts aiming at the dartboard with the darts in his hand.,then runs back under his other hand.,flashes two kick at a man on the basketball team and avoid it.,shoots circles and turning off into the distance while others watch on him.,\"goes to retrieve his darts, darts at a camera and continues bowling again.\",gold0-reannot,pos,unl,unl,unl,unl,A man in a red shirt faces the camera and begins to talk while holding darts in his hand and while three men behind him watch.,\"The man turns away from the camera, standing at a profile view and facing a dartboard attached to a wall, he\"\nlsmdc1040_The_Ugly_Truth-8853,12283,\"As they embrace, someone turns someone around, and they lean against the side of the basket. He\",\"waves his hand dismissively at the pilot, who turns and looks the other way.\",holds up his hands with his eyes closed.,offers a half - smile.,\"reflects on someone's face, then takes another sip.\",,gold0-orig,pos,unl,pos,pos,n/a,\"As they embrace, someone turns someone around, and they lean against the side of the basket.\",He\nlsmdc1040_The_Ugly_Truth-8853,12282,Someone clasps her hands around his face and kisses him passionately. They,wrap their arms around each other.,\", someone flips through his dresses.\",\"share a kiss on the cheek, then goes.\",smile and front shoulders shaking with horror.,,gold0-orig,pos,unl,unl,unl,n/a,Someone clasps her hands around his face and kisses him passionately.,They\nlsmdc1040_The_Ugly_Truth-8853,12281,\"Someone looks away, and someone studies him for a moment. Someone\",clasps her hands around his face and kisses him passionately.,struggles to free himself and drags him to the knees.,goes toward the ice again and someone attacks his men.,\"brush his fingers, someone holds up his hand to reveal a strand of dark brown hair, with the back of his head.\",\"is turning slowly, fighting a smile.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone looks away, and someone studies him for a moment.\",Someone\nlsmdc1040_The_Ugly_Truth-8853,12279,\"Someone's expression softens, and she looks away for a moment. She\",\"looks at someone and narrows her eyes, skeptically.\",\"stares at her pleadingly, then smiles back at him.\",squeezes his eyes shut and shakes her hand.,passes through her eyes and looks at the sidewalk ahead.,readings barely touch her realization.,gold1-orig,pos,unl,unl,unl,unl,\"Someone's expression softens, and she looks away for a moment.\",She\nlsmdc1040_The_Ugly_Truth-8853,12280,\"He just stares at her. Someone looks away, and someone\",studies him for a moment.,moves his head to hers.,is leaning back to the counter in the bathroom.,steps up beside him as she touches a stack of flowers.,has to shake up the bottle.,gold0-reannot,pos,unl,pos,pos,pos,He just stares at her.,\"Someone looks away, and someone\"\nlsmdc1048_Gran_Torino-92040,10852,\"Ignoring them, someone picks up two metal folding chairs. Sitting holding her cell phone, someone\",looks at her mother someone.,reaches into her badge and takes out a phone.,applies slinky to the era.,'s database watches a monk.,jots the quill into hangers.,gold1-orig,pos,unl,unl,unl,unl,\"Ignoring them, someone picks up two metal folding chairs.\",\"Sitting holding her cell phone, someone\"\nlsmdc1048_Gran_Torino-92040,10854,\"Someone goes over to someone, who's unfolding the chairs. Someone\",\"rolls her eyes and looks at someone, who beckons her over.\",starts dances down a street really fast.,\"and someone pick each other out, facing him.\",clings to one peaceful as someone trembles.,\"spots someone outside his cell phone, races on.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone goes over to someone, who's unfolding the chairs.\",Someone\nlsmdc1048_Gran_Torino-92040,10866,\"He steps on the cigarette. Having just pulled the cover over the car, he\",stares at someone incredulously.,arrives wearing another gorilla suit.,\"comes to stand in the bench, looking at a large clock: 4 foot seven.\",relaxes as he watches someone dejectedly out the window.,\"flashes one, frustrated.\",gold1-orig,pos,unl,unl,unl,unl,He steps on the cigarette.,\"Having just pulled the cover over the car, he\"\nlsmdc1048_Gran_Torino-92040,10864,Someone pulls open the garage door. Someone,drops the cigarette and blows out smoke.,slowly approaches the camaro in the cans.,emerges from the front door.,goes behind knocking on the window again.,,gold1-orig,pos,unl,pos,pos,n/a,Someone pulls open the garage door.,Someone\nlsmdc1048_Gran_Torino-92040,10849,\"The Stars and Stripes flies on a pole outside someone's modest clapboard house. Inside, the mourners\",help themselves to food.,hold any binoculars and play with a girl.,are up on the farm staring overhead.,at the door steps out.,glisten in the flames.,gold0-orig,pos,unl,unl,unl,unl,The Stars and Stripes flies on a pole outside someone's modest clapboard house.,\"Inside, the mourners\"\nlsmdc1048_Gran_Torino-92040,10861,He spits and wanders away. Someone,\"'s in the large garage, smoking.\",lifts his head and stands.,stares at the cell.,looks down the street between someone teasing someone.,sits on a couch.,gold1-orig,pos,unl,unl,unl,unl,He spits and wanders away.,Someone\nlsmdc1048_Gran_Torino-92040,10848,Someone sits texting on her cell phone. The Stars and Stripes,flies on a pole outside someone's modest clapboard house.,are online cursive checked.,hang from their above go up.,appear near the side clearing.,pop them.,gold1-orig,pos,unl,unl,unl,unl,Someone sits texting on her cell phone.,The Stars and Stripes\nlsmdc1048_Gran_Torino-92040,10851,\"Hearing someone come down, the boys quickly shut the trunk. Ignoring them, someone\",picks up two metal folding chairs.,looks down at his melon - white notebook and eyes it over his test block.,kicks out a scotch machine.,shuts it and heads out.,leaps up from the canvas parcel.,gold1-orig,pos,unl,unl,pos,pos,\"Hearing someone come down, the boys quickly shut the trunk.\",\"Ignoring them, someone\"\nlsmdc1048_Gran_Torino-92040,10862,\"Someone's in the large garage, smoking. Beside her, with its cover partially pulled back\",is a pristine ford gran torino muscle car.,\", bounces on each bunk to look at it.\",\"adorned with a goatee, cotton; someone, sits at and approached drunk as people walk up stage.\",is a sickly thanksgiving.,\"the static cable up, she arrives at a pink body polygraph and fixes whose side chair, breathing hard.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone's in the large garage, smoking.\",\"Beside her, with its cover partially pulled back\"\nlsmdc1048_Gran_Torino-92040,10868,\"Someone opens his front door to a teenager, someone. Someone\",slams the door and turns to the priest.,reluctant to stride out into the canal.,pulls her from the shadowy steps at a raced and hears someone from a safe distance away.,comes to the storeroom reading a book.,picks up the pan and walks out to the living room.,gold0-orig,pos,unl,unl,pos,pos,\"Someone opens his front door to a teenager, someone.\",Someone\nlsmdc1048_Gran_Torino-92040,10863,\"Beside her, with its cover partially pulled back is a pristine Ford Gran Torino muscle car. Someone\",pulls open the garage door.,pulls through to the road.,tastes a sun - shaped coffee product.,closes the trunk as someone bursts off.,peers back at his hand store outdoors.,gold0-orig,pos,unl,unl,unl,unl,\"Beside her, with its cover partially pulled back is a pristine Ford Gran Torino muscle car.\",Someone\nlsmdc1048_Gran_Torino-92040,10865,Someone drops the cigarette and blows out smoke. He,steps on the cigarette.,\"kisses him, then pushes him who pockets the gun.\",stands and stares at her.,\"turns around, then hurries along a corridor and pulls a handgun.\",opens the case for someone.,gold0-orig,pos,unl,pos,pos,pos,Someone drops the cigarette and blows out smoke.,He\nlsmdc1048_Gran_Torino-92040,10856,Someone trudges back to her seat. Someone,walks out of the front door with his golden labrador.,\"stares at someone, staring coldly at the gold.\",sits by the wheel leaning into the passenger seat.,faces someone and speaks.,,gold1-orig,pos,unl,unl,unl,n/a,Someone trudges back to her seat.,Someone\nlsmdc1048_Gran_Torino-92040,10857,Someone walks out of the front door with his Golden Labrador. He,opens a pouch of chewing tobacco as he goes down the front steps.,turns to the jewelry cabinet.,gets out of bounds and runs away.,crosses to the door.,walks up to the arcade and sees someone.,gold0-reannot,pos,unl,unl,unl,pos,Someone walks out of the front door with his Golden Labrador.,He\nlsmdc1048_Gran_Torino-92040,10855,\"Someone rolls her eyes and looks at someone, who beckons her over. Someone\",trudges back to her seat.,continues on suppressed singing as someone smiles morosely at her baby.,\"sips her wine, someone grabs the bong.\",steps out of the building.,\"bares his teeth, cold sweat.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone rolls her eyes and looks at someone, who beckons her over.\",Someone\nlsmdc1048_Gran_Torino-92040,10867,\"Having just pulled the cover over the car, he stares at someone incredulously. He\",spits and walks out.,spots a crinkle stretching around the top of his hat.,slides open and adjusts his pants.,smiles as someone beams at the band.,runs down the ring.,gold0-reannot,pos,unl,unl,unl,unl,\"Having just pulled the cover over the car, he stares at someone incredulously.\",He\nlsmdc1048_Gran_Torino-92040,10858,He opens a pouch of chewing tobacco as he goes down the front steps. Someone,pops some tobacco in his mouth.,looks up at his father.,leans in front of the invisible wall.,gets someone's cigarette and grabs it.,begins wiping his clothes.,gold0-reannot,pos,unl,unl,unl,unl,He opens a pouch of chewing tobacco as he goes down the front steps.,Someone\nlsmdc1048_Gran_Torino-92040,10859,Someone pops some tobacco in his mouth. Someone,\"stares at the house, eyes narrowed.\",alien extends a pallid hand and picks him up against the van's door.,\"bar someone takes a drink from his glass and hands it to someone, who gets in front of the limo.\",catches up with someone.,holds an empty beer.,gold0-reannot,pos,unl,unl,pos,pos,Someone pops some tobacco in his mouth.,Someone\nlsmdc1048_Gran_Torino-92040,10850,\"Someone follows someone, who wears a permanent frown. Someone\",heads down to the basement.,takes a drag then gives him an apple.,clouds in the sky above them.,march the rifles and pry it open.,maintains his balance as someone helps open the doors.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone follows someone, who wears a permanent frown.\",Someone\nanetv_QLVgy-1ydr0,11681,The male leaves a black shoe behind. People,discuss in a circle.,\"folds the horses line up, and walks off.\",stand and moves for a closer move.,play in a room and resumes talking.,cross the park to join them.,gold1-orig,pos,unl,unl,pos,pos,The male leaves a black shoe behind.,People\nanetv_QLVgy-1ydr0,11676,A guy messes with a bull. A bull,pushes a man down.,lets go of the bull.,runs over the bulls.,yells to a bull.,runs towards the bull.,gold0-orig,pos,unl,unl,unl,pos,A guy messes with a bull.,A bull\nanetv_QLVgy-1ydr0,11679,The male gets up and his face is bloody. People,help the male and carry him away.,appears on the screen.,are playing at a table.,walk on the field holding flags.,look at the uniformed kids who are very confused.,gold0-orig,pos,unl,unl,unl,unl,The male gets up and his face is bloody.,People\nanetv_QLVgy-1ydr0,11677,The bull is lured into a pen and the gates are close. The male,gives a thumbs up and smiles.,extends the letter to a small crowd and starts down again.,hunter hoists the trio up on the track.,continues to advance while holding the crossbow.,,gold0-orig,pos,unl,unl,pos,n/a,The bull is lured into a pen and the gates are close.,The male\nanetv_QLVgy-1ydr0,11680,People help the male and carry him away. The male,leaves a black shoe behind.,picks up the boy and leaves.,picks up some tennis racket and hits with a spatula.,catch blood off the floor and picks himself up.,,gold0-orig,pos,unl,unl,unl,n/a,People help the male and carry him away.,The male\nanetv_QLVgy-1ydr0,11675,A male attaches a hollow stick on a bull whom chases him. A guy,messes with a bull.,chases it with her hand as the bushes after a bellow approach.,kicks a ball over to skis and crashes several times.,appears to throw animals in park.,backs and relentlessly assistance.,gold0-orig,pos,unl,unl,unl,unl,A male attaches a hollow stick on a bull whom chases him.,A guy\nanetv_nh1GBPeyyMo,2297,A person's hands are seen cutting a piece of paper with scissors and then wrapping a box with paper. She,\"tapes down the present and ties it in a bowl, finishes by cutting the excess string and placing a tag on top.\",pulls off the shoes and continues taping them down when they are done.,is then seen speaking to the camera and rubbing the nails with her hands.,cuts the paper with a hoop and replaces it with a ornament.,,gold1-orig,pos,unl,unl,pos,n/a,A person's hands are seen cutting a piece of paper with scissors and then wrapping a box with paper.,She\nanetv_6tdIiKzMVcg,14977,We see a camera man right behind the table. A person,walks in front of the camera.,makes a button down the guy's arm as it reaches him.,puts shaving cream on his arm by stroking his hair.,polish glasses and milk on his client.,walks across a black ice cream in another.,gold0-orig,pos,unl,unl,unl,unl,We see a camera man right behind the table.,A person\nanetv_6tdIiKzMVcg,14976,A host in a white suit narrates. We,see a camera man right behind the table.,is in sumo outfits as people do a fenced event and quietly scream at people.,see a man go into a restaurant area.,is giving the video in a interview about a white venue.,clips as the line of performers representing an animated song and the highlights of the spectators.,gold1-orig,pos,unl,unl,unl,unl,A host in a white suit narrates.,We\nanetv_m978SIFnHS8,9717,\"Dark nights are shown with lightning flashing through the sky. After, the video begins and several people\",are shown on a large boat sailing in the water.,emerge together with some other cities shown on stage.,\"are shown as close as illustrations, on a large motor bike.\",are shown preparing to drive around in dirt cars.,,gold1-orig,pos,unl,unl,unl,n/a,Dark nights are shown with lightning flashing through the sky.,\"After, the video begins and several people\"\nanetv_m978SIFnHS8,9718,\"After, the video begins and several people are shown on a large boat sailing in the water. The weather begins to turn nasty and the people\",have to hold on for dear life so they won't die.,are going down the water at an angle while moving left they stay on the snowy board followed by a clouds of dawn and giving,are coming after the camera.,continue to have a load that screws all the way to the side while the snow water reaches the end of the ocean.,continue to put it on the sink to prepare a meal.,gold0-reannot,pos,unl,unl,unl,unl,\"After, the video begins and several people are shown on a large boat sailing in the water.\",The weather begins to turn nasty and the people\nanetv_84uYA9rFoSw,19048,She displays more ballet moves. She,finishes with the low fifth position.,snags in the code.,files with wallpaper before putting it down and putting them onto the camera.,becomes happy in circles.,,gold0-orig,pos,unl,unl,pos,n/a,She displays more ballet moves.,She\nanetv_84uYA9rFoSw,19047,She then faces the camera talking. She,displays more ballet moves.,\"the man and blond, shown doing a tiny dance in the back lifts.\",darts from the window again.,continues to brush her hair while looking over to the camera.,puts the supplies in a bowl.,gold0-reannot,pos,unl,unl,pos,pos,She then faces the camera talking.,She\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14529,\"Holding the record, she looks up with a smile. He\",takes the battered record sleeve from her.,closes her eyes tightly.,strides down the street and turns.,\"kisses her mouth, and you can see that.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Holding the record, she looks up with a smile.\",He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14531,\"Wearing a wry smile, someone starts to dance. He\",turns and offers someone his hand.,grins as everyone catches.,rests his head on her shoulder.,\"sits at the piano, still gazing tv through his glasses.\",\"faces her, but he politely looks away mournfully.\",gold1-orig,pos,unl,pos,pos,pos,\"Wearing a wry smile, someone starts to dance.\",He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14533,He takes her by the hand and raises it above his head. Someone's building,is dwarfed by the skyscrapers on the horizon.,is covered with dust.,writhes as he grabs a beer and looks at him through his phone.,\"swings open, and someone forces someone against a pillar.\",lands onto the sidewalk.,gold0-orig,pos,unl,unl,unl,unl,He takes her by the hand and raises it above his head.,Someone's building\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14532,\"Someone's pretty mother seems to watch from the photograph on the shelving unit, as someone cracks a smile and dances a cheeky little jive with someone. He\",takes her by the hand and raises it above his head.,\"waddles on to the dining table, then picks himself up and hurries her feet through the doorway.\",\"eyes someone for the old man who sits alone, directly across the floor and stares up at her.\",evidently someone by his hand.,stands a windowed door.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's pretty mother seems to watch from the photograph on the shelving unit, as someone cracks a smile and dances a cheeky little jive with someone.\",He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14530,He takes the battered record sleeve from her. She,closes her eyes and smiles as he puts the record on.,wraps it around his wrist as he runs to the table.,pours the last box on the paper.,\"ignores someone and stands by the entrance to his office, chatting with french servants.\",,gold0-orig,pos,unl,unl,pos,n/a,He takes the battered record sleeve from her.,She\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73365,14535,Someone sits at her desk as someone goes through dresses with another model. Someone,listens at the door.,taps the opened wall phone.,reverses up beside him.,swigs from a bottle.,hands someone a specific pat.,gold1-reannot,pos,unl,unl,unl,unl,Someone sits at her desk as someone goes through dresses with another model.,Someone\nanetv_UZBHdQZc0ZM,19550,Old woman is sitting on snowslide and its going down a snowy slope. old woman,is in snowslide going down snow track.,is pulling the snow from the pole.,goes in a snowy mountain and paddling crosses a snowy hill with a pause pole on.,is walking back down the slope holding a rag.,,gold0-orig,pos,unl,unl,unl,n/a,Old woman is sitting on snowslide and its going down a snowy slope.,old woman\nanetv_UZBHdQZc0ZM,19552,A man and a woman are grabing the old lady fom the back in a slide. different people,are going down slope holding snowslides with a rope.,are shown in the house and started with the women sitting in front of them.,are going left behind the counter with the other person lost in a field of other children.,ride in the ocean in the tub while a boy walks through the mop.,are swimming and kicking sand at the dunes.,gold1-orig,pos,unl,unl,unl,pos,A man and a woman are grabing the old lady fom the back in a slide.,different people\nanetv_UZBHdQZc0ZM,19549,Men are holding snowslides from a deposit. old woman,is sitting on snowslide and its going down a snowy slope.,is holding a toy picture.,is making bike supplies and cooking supplies.,stands on a slide.,,gold0-orig,pos,unl,unl,pos,n/a,Men are holding snowslides from a deposit.,old woman\nanetv_UZBHdQZc0ZM,19553,Old women are sitting on woodn bench talking to the camera. old people,are sitting and standing in front of a camera posing for a picture.,are standing in a kitchen eating ice ice cream.,are performing various moves in the room dancing.,\"are in swimming, playing a game of dodgeball.\",are doing sit ups at a bowling table on one of the tables.,gold1-orig,pos,unl,unl,unl,unl,Old women are sitting on woodn bench talking to the camera.,old people\nanetv_UZBHdQZc0ZM,19551,Old woman is in snowslide going down snow track. a man and a woman,are grabing the old lady fom the back in a slide.,are walking in a green car and skating on a highway off a street.,are holding toy tubes and is rollerblading through the snow.,is building a race.,are at home siting on stilts.,gold0-reannot,pos,unl,unl,unl,unl,Old woman is in snowslide going down snow track.,a man and a woman\nlsmdc3033_HUGO-14495,17688,Someone wrings her hands as she watches someone. Someone,punches a stuffed chair then drops into it and sobs.,\"bangs in his seat of her coffee, adjusted her wrist, and flicks the long - switch button.\",picks up a jar of wine.,raises her left finger.,remains by the window and gazes upward.,gold0-orig,pos,unl,unl,unl,pos,Someone wrings her hands as she watches someone.,Someone\nlsmdc0051_Men_in_black-71107,2652,Some lights are starting to go out. Someone,\"looks to his partner, then to the screen.\",cuts several more pieces of fish.,is about to jump up and down beside the doorknob.,sits on a ladder for a moment.,,gold0-orig,pos,unl,unl,pos,n/a,Some lights are starting to go out.,Someone\nanetv_RzlX3Ai9AH4,2548,She holds the cans of paint as she talks about the finished product. The painted armoire,is shown a final time.,is filling her hand with paint.,is addressed to someone.,has a green paint closer to the large canvas with the paint.,has a green painted orange painted on it.,gold0-orig,pos,unl,unl,unl,unl,She holds the cans of paint as she talks about the finished product.,The painted armoire\nanetv_RzlX3Ai9AH4,2546,\"An armoire is shown, and a woman is holding one of the drawers. She\",sands down the wood before applying a coat of chalk paint with a brush.,shows a cleaned tool.,is putting a rectangular piercing called the wallpaper.,begins wrapping the present.,then places the scissors on the pumpkin and showing off his hair.,gold0-orig,pos,unl,unl,unl,unl,\"An armoire is shown, and a woman is holding one of the drawers.\",She\nanetv_RzlX3Ai9AH4,2545,\"Text states the video will show how to chalk paint. An armoire is shown, and a woman\",is holding one of the drawers.,is already pointing at her thicker nails.,is mowing her lawn.,is preparing a poster about several sets of wall sex.,zooms in on the tile.,gold0-orig,pos,unl,unl,unl,pos,Text states the video will show how to chalk paint.,\"An armoire is shown, and a woman\"\nanetv_RzlX3Ai9AH4,2547,She sands down the wood before applying a coat of chalk paint with a brush. She,holds the cans of paint as she talks about the finished product.,uses a clear paint to trim her skin and face.,absently using a white rag as she cuts the material.,cut to pieces at the bottom of the stack.,,gold0-orig,pos,unl,unl,unl,n/a,She sands down the wood before applying a coat of chalk paint with a brush.,She\nanetv_Mx-rOsiQTos,13507,We return to seeing the leaves being blown. We,see leaves blowing in the street.,add on together and added.,see a building being opened with a hose.,walk around the far wall of the pool and wipe the cut.,\"pleasant flattens the rest of someone's face into the hall of a sunny character, sparking by a thousand lights.\",gold0-orig,pos,unl,unl,unl,unl,We return to seeing the leaves being blown.,We\nanetv_Mx-rOsiQTos,13504,We see a man get in riding leaf blower. We,see the leaves being blown on the ground.,see a man chopping a wood.,see a ball flying inflatable in the woods.,see a person mowing the lawn.,see a lady sitting in a seat to skate.,gold0-orig,pos,unl,unl,unl,unl,We see a man get in riding leaf blower.,We\nanetv_Mx-rOsiQTos,13506,We see a pipe on the machine. We,return to seeing the leaves being blown.,see a vacuum fashion over the screen.,go off in the yard as small drum walks in and out of scene.,see a man pulled over the ski carpet.,,gold0-reannot,pos,unl,unl,unl,n/a,We see a pipe on the machine.,We\nlsmdc3003_40_YEAR_OLD_VIRGIN-1205,17263,\"As someone walks past a couch, she kicks the back. Someone\",sits up with mussed hair.,\"unrolls, he uses a handle for cover as a big pot opens.\",pulls up in robin's jersey.,takes off her hat and balances on the bed.,\"sits on the couch, surrounded by people.\",gold0-orig,pos,unl,unl,unl,pos,\"As someone walks past a couch, she kicks the back.\",Someone\nlsmdc3003_40_YEAR_OLD_VIRGIN-1205,17264,Someone sits up with mussed hair. Someone,faces someone and someone.,stares off from a pensive.,sits with someone in the dorm's front seat.,walks past the hotel and makes a call.,has a hand over his mouth.,gold1-reannot,pos,unl,unl,unl,pos,Someone sits up with mussed hair.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10805,\"She goes into the great hole, where tiny someone waves his wand and levitates decorations onto a tall Christmas tree. Someone\",finds people playing chess at one of the long polished tables.,sits up in bed.,hangs up on a branch and passes a few paces behind the net.,and flames ruffled in the breeze as they wander away from the tent.,\"sits at the side of the pool, his face aglow with cream.\",gold0-orig,pos,unl,unl,unl,unl,\"She goes into the great hole, where tiny someone waves his wand and levitates decorations onto a tall Christmas tree.\",Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10803,\"Snow falls on to the tars and turrets of the school. Wearing a huge fur coat, someone\",\"plots across the snow covered courtyard, dragging behind him an enormous christmas tree.\",snatches the satchel of cash from a briefcase.,\"rides out the the road in the car's backseat, and throws the gun on someone's head repeatedly.\",chews a carrot with a slight smile and stares up at towering owls perched on a nearby tree.,,gold0-orig,pos,unl,unl,pos,n/a,Snow falls on to the tars and turrets of the school.,\"Wearing a huge fur coat, someone\"\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96009,10806,Someone finds people playing chess at one of the long polished tables. She,walks down the brightly decorated hall to join them.,\"faces the building, in wonder, someone and the other recruits stand around watching, uneasy.\",approaches two fat men wearing an earpiece into an office.,pats him in the gut with the box.,follows them as he pushes their way to the window.,gold1-orig,pos,unl,unl,unl,pos,Someone finds people playing chess at one of the long polished tables.,She\nanetv_CqAJxW84FkU,18743,A man in a green shirt and green hat is holding a large knife. He,starts cutting a piece of wood with the knife.,puts an earring into the hole.,starts sharpening a sharpener for his knife.,gets up and walks away.,,gold0-orig,pos,unl,pos,pos,n/a,A man in a green shirt and green hat is holding a large knife.,He\nanetv_CqAJxW84FkU,18744,He starts cutting a piece of wood with the knife. He,cuts the piece of wood in half.,puts the mask down and takes the place again.,puts it on as he takes a large knife and hammers it out of the spoon.,\"begins feeding the vegetables, cutting more vegetables for the ingredients.\",moves it all together before finally cutting the wood with a circular tool.,gold0-orig,pos,unl,unl,unl,unl,He starts cutting a piece of wood with the knife.,He\nlsmdc3078_THE_WATCH-36546,8701,\"Someone spots them through the smoke, their figures defined by a backdrop of amber flame. She\",runs out from behind the police car and embraces her husband.,crashes out to the house and soars her mother's legs.,\"flinches, as someone shines a flash of smoke.\",draws up his pen.,see a great site in the darkened space above from the stove.,gold0-orig,pos,unl,unl,unl,unl,\"Someone spots them through the smoke, their figures defined by a backdrop of amber flame.\",She\nlsmdc3078_THE_WATCH-36546,8703,\"Someone holds her tight, closing his eyes. The group\",faces the burning wreckage.,zoom together behind the wheel.,goes back together and sneezes.,drives away down the grove of mountains.,heads out of the parlor.,gold0-orig,pos,unl,unl,pos,pos,\"Someone holds her tight, closing his eyes.\",The group\nlsmdc3078_THE_WATCH-36546,8702,She runs out from behind the police car and embraces her husband. Someone,\"holds her tight, closing his eyes.\",unzips the bottle and hurriedly escorts it on the road beneath him.,emerges with a safety flag and shoots looking at someone.,play increasingly consistently.,gets a push killer driver down and punches her.,gold0-orig,pos,unl,unl,unl,unl,She runs out from behind the police car and embraces her husband.,Someone\nlsmdc3078_THE_WATCH-36546,8704,\"The group faces the burning wreckage. Nodding, someone\",smiles at his friend.,extends a digital placement.,speeds toward the road.,turns and leaves the cart's seat with someone.,,gold1-reannot,pos,unl,unl,unl,n/a,The group faces the burning wreckage.,\"Nodding, someone\"\nanetv_RVbejE3s3m4,10955,A couple of girls are seated in front of a table. One girl,is painting the other one's nails.,starts laughing up while a cameraman watches them.,begins talking and they are also hitting the drums and smiling while still laughing.,is playing a song and accordion.,is swinging at a pinata that is stacking.,gold0-orig,pos,unl,unl,unl,unl,A couple of girls are seated in front of a table.,One girl\nanetv_RVbejE3s3m4,10956,One girl is painting the other one's nails. She,\"puts on several coats, then seals them with a topcoat.\",dips the last paint wet substance into it and wipes it down.,gets up and begins spraying it with a pink layer.,is looking down at the picture.,,gold0-orig,pos,unl,unl,pos,n/a,One girl is painting the other one's nails.,She\nanetv_RVbejE3s3m4,6977,A hand is seen laying on a table with a person behind them grabbing objects and moving in fast motion. The person,paints the nails of the other and shows off the nails while moving in fast motion.,continues using the cut and shows off the cylinder as well as camera.,continues pushing it all along the board while the cat walks around the area.,continues hitting the ball all along the ice while looking back to the camera.,finishes and continues on the furniture while the camera captures the image.,gold0-orig,pos,unl,unl,unl,unl,A hand is seen laying on a table with a person behind them grabbing objects and moving in fast motion.,The person\nanetv_5kIl4TspdR0,3079,You can see the tongue moving around never really being comfortable inside of the mouth. The man,\"continues to brush, toothpaste spewing down his lips a bit.\",is then shown close to the camera while showing how you can sweep the buzzer with his hand and splitting the homework.,\"opens the bedroom windows and shows her cave, turned out of sight.\",\"continues having to do this thing, very very much for the camera.\",,gold0-orig,pos,unl,unl,pos,n/a,You can see the tongue moving around never really being comfortable inside of the mouth.,The man\nanetv_5kIl4TspdR0,3078,They wear braces so they make sure to scrub all around very well. You,can see the tongue moving around never really being comfortable inside of the mouth.,\"uses different shoes to complete their such protective work, when the cross appears to begin snow snow.\",the manner and not knowing how to do it with any certain lighter by stepping further to try to get a colored rope out from,eyes leave the skid as someone races through the scene.,the groomer begins eating out.,gold0-orig,unl,unl,unl,unl,unl,They wear braces so they make sure to scrub all around very well.,You\nanetv_5kIl4TspdR0,3077,Someone is brushing their teeth with an electric toothbrush. They,wear braces so they make sure to scrub all around very well.,scrub the dog hose into the towel.,\"rubbing the toothpaste back, trying to keep it together.\",hit the ball back and forth.,try to wash the balls to clean them.,gold0-reannot,pos,unl,unl,unl,unl,Someone is brushing their teeth with an electric toothbrush.,They\nlsmdc3076_THE_SOCIAL_NETWORK-35222,19313,The twins wait in the reception room. The twins,\"get up, fix their coats.\",yank out long - painful hands.,hide their eyes with their flashlights.,help someone up a run outside.,are arguing on the stage.,gold0-orig,pos,unl,unl,unl,unl,The twins wait in the reception room.,The twins\nanetv_kcPbEkv5UXE,11069,A lady walks up to watch the drummer play. The drummer,plays a solo on the cymbal.,goes down and describes the music.,moves while playing the accordion.,begins to play the drums.,,gold0-orig,pos,unl,unl,pos,n/a,A lady walks up to watch the drummer play.,The drummer\nanetv_kcPbEkv5UXE,11070,The drummer plays a solo on the cymbal. The drummer,ends the song and bows to the audience.,starts deep shots into it.,plays the accordion as the band plays.,talks before he begins introducing himself.,comes in and plays with the older man.,gold1-orig,pos,unl,unl,pos,pos,The drummer plays a solo on the cymbal.,The drummer\nanetv_kcPbEkv5UXE,11068,A girl plays a drum set in a city plaza for passing people. A lady,walks up to watch the drummer play.,makes a lot of chalk on a tricycle.,turns away from the skates.,walks out on her side behind the door.,stands on the beach while talking.,gold0-orig,pos,unl,unl,unl,unl,A girl plays a drum set in a city plaza for passing people.,A lady\nanetv__wITx73-BXw,4123,We see girls on a field playing lacrosse and the camera flashes and lights up one girl on the field. We,see the ending information screen.,see beach soccer and ladies walking across the field.,see the yellow game master handed to to him.,pack on the field and other arrow is seen on the end of the field as we see a goal and leading to the teams,see the lady swim with the girl while smiling to the camera.,gold0-orig,pos,unl,unl,unl,unl,We see girls on a field playing lacrosse and the camera flashes and lights up one girl on the field.,We\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15496,\"Meanwhile, someone lies asleep on his couch. He\",\"licks his lips, then groggily lifts his head.\",holds a satellite dish over his shoulder.,flails fearfully at someone who lies in the crow's nest.,picks up one of them.,whacks her on the face as she gazes out the window.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone lies asleep on his couch.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15493,\"Someone morosely sips his liquor. The next morning, boats languidly\",sail past the coastal town.,sit in a lifeboat.,speedily through the calm ocean as brown passengers barge out of the tank.,\"driven away, passing past a military retirement home.\",tread water into the grassy hillside.,gold0-orig,pos,unl,unl,unl,unl,Someone morosely sips his liquor.,\"The next morning, boats languidly\"\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15489,\"He shakes his head, then yanks his hand from her grasp. Someone\",blinks tearfully as she watches him turn away.,passes someone on the couch and shakes her head.,slips slowly from her grasp as the crowd disappears.,pats the side of someone's chest with both hands.,\"clenches its neck, making brief clatter with her.\",gold0-orig,pos,unl,unl,unl,unl,\"He shakes his head, then yanks his hand from her grasp.\",Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15507,\"Someone steps into view and crouches down on one knee. Farther along, our view\",peers over the headstone in memory of someone's father.,grinds down into space then soars to a lower hatch.,rolls over to reveal some rules for a black chess playing.,leads him into a dirt trunk.,,gold0-orig,pos,unl,unl,unl,n/a,Someone steps into view and crouches down on one knee.,\"Farther along, our view\"\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15509,\"The engraved side remains hidden to us, but visible to him. Someone\",leans huddled against her father's headstone.,raises the gun so it can be seen under the paying.,comes out with speed and assists her with her hair and is shaving her leg in a huge blue razor.,puts his hands on the bush and opens the palm of his left hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"The engraved side remains hidden to us, but visible to him.\",Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15508,\"Farther along, our view peers over the headstone in memory of someone's father. The engraved side\",\"remains hidden to us, but visible to him.\",of a square guard range.,nears the canoe then turns to his right.,of the writer staggers out without standing.,,gold0-orig,pos,unl,unl,unl,n/a,\"Farther along, our view peers over the headstone in memory of someone's father.\",The engraved side\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15500,Someone lets the dog run by. Someone,faces a shop window.,turns away revealing a pillar of smoke.,leaps on his brace.,tries through the binoculars as the herd gaining.,scrubs him with the witch.,gold1-orig,pos,unl,unl,unl,unl,Someone lets the dog run by.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15491,\"As someone leaves, he opens them again in a haunted stare. We\",\"peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction.\",someone gives with a resigned smile.,\"the robots go off, dancing round and round in a circle.\",\"of chill, grumpy, someone turns to someone.\",people pulling back a waiting start.,gold0-orig,pos,unl,unl,unl,unl,\"As someone leaves, he opens them again in a haunted stare.\",We\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15506,Someone glowers as he strides among the graves. Someone,steps into view and crouches down on one knee.,jogs out over the undercover woods.,\"steps forward, looking at the pair of children.\",notices the note and someone hurls it in the undergrowth.,leaps up from behind the wheel.,gold1-orig,pos,unl,unl,unl,pos,Someone glowers as he strides among the graves.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15497,\"He sets a coffee pot in the kitchen sink. As water fills the carafe, he\",opens a freezer and takes out a rumpled bag of grounds.,finds the plastic container over a blow - cut christmas cake.,polishes the steaming pot with a spoon.,sucks the spaghetti in.,keeps brushing his teeth.,gold0-orig,pos,unl,unl,unl,unl,He sets a coffee pot in the kitchen sink.,\"As water fills the carafe, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15501,Someone faces a shop window. Someone,frowns at the window.,stands up as the bullpen slides down a dilapidated sidewalk.,drops his dubious gaze from the opposite.,\"creeps outside, a tall raised woman wearing a casual outfit.\",paces from his sedan and stares forward.,gold0-orig,pos,unl,unl,unl,pos,Someone faces a shop window.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15505,\"Now, in the cemetery, tombstones stand in light and shadow. Someone\",glowers as he strides among the graves.,looks at the key features.,douses himself in shallow water.,watches someone hike his apartment.,quickly hurry down the snowy stairs.,gold0-orig,pos,unl,unl,unl,unl,\"Now, in the cemetery, tombstones stand in light and shadow.\",Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15498,\"As water fills the carafe, he opens a freezer and takes out a rumpled bag of grounds. He\",\"scowls at it, then gives it a shake.\",\"dials a call, then catches up with him.\",walks into the store and stands staring at it.,ducks over to find someone combing his hair.,,gold0-orig,pos,unl,unl,unl,n/a,\"As water fills the carafe, he opens a freezer and takes out a rumpled bag of grounds.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15490,\"Someone blinks tearfully as she watches him turn away. With a resolute expression, he\",steps further into the glade.,sees her and sneaks into a chair.,\"returns his gaze to someone, who stares vacantly.\",looks at her with open eyes.,pulls her close and kisses him twice as his clock pulls down.,gold1-reannot,pos,unl,unl,unl,unl,Someone blinks tearfully as she watches him turn away.,\"With a resolute expression, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15504,\"Someone stares at the neglected boat. Now, in the cemetery, tombstones\",stand in light and shadow.,zoom into someone's perspective.,sits beside someone at someone's bedside.,beads maintain their curved yellowish position.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone stares at the neglected boat.,\"Now, in the cemetery, tombstones\"\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15502,Someone pictures the Carniceria and the brewing squall. A view from his cottage,shows someone vanish as she walks away.,shows the tall beach in a jar.,scratches the edge of a parked lifeboat.,reads the mentor on a clear book.,shows the garbage convoy at a market.,gold1-reannot,pos,unl,unl,unl,pos,Someone pictures the Carniceria and the brewing squall.,A view from his cottage\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15499,\"Wearing green sweater, he browses a newspaper. Two officers\",step to a prominent spot in the dinning room.,push two old women by a window.,prepare dishes on their cake.,feed their convoy.,hurry down the reception aisle.,gold0-reannot,pos,unl,unl,unl,unl,\"Wearing green sweater, he browses a newspaper.\",Two officers\nlsmdc3015_CHARLIE_ST_CLOUD-1023,15492,\"We peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction. In the caretaker's cabin, someone\",sits alone and bleary eyed with a glass of whiskey.,checks his clock someone's bright dashboard.,paces past the closed tent.,lowers the white bible.,plunges a spoon into the water.,gold0-reannot,pos,unl,unl,pos,pos,\"We peer back at him from the edge of the woods as he stands motionless, his gaze fixed in our direction.\",\"In the caretaker's cabin, someone\"\nlsmdc0041_The_Sixth_Sense-67843,10563,\"A white woman in a torn white frilly dress - - tears soaking her face, hangs to the right. A small mixed race child in half pants,\",hangs to their left.,\"tag on neatly, abandoned the dirty chair wipes.\",\"ages, is smiling to someone.\",rolls a heavy iron curtain to a table taunts the girl over a mattress.,jumps back at the piano.,gold0-orig,pos,unl,unl,unl,pos,\"A white woman in a torn white frilly dress - - tears soaking her face, hangs to the right.\",\"A small mixed race child in half pants,\"\nlsmdc0041_The_Sixth_Sense-67843,10562,\"A black man in britches and no shirt, face beaten to a pulp, hangs in the center. A white woman in a torn white frilly dress - - tears soaking her face,\",hangs to the right.,hands the back to the crowd.,\"puts up her hand, looks at the object slung over her shoulder, then grabs someone's hand.\",punches and kicks someone in the face.,,gold0-orig,pos,unl,unl,pos,n/a,\"A black man in britches and no shirt, face beaten to a pulp, hangs in the center.\",\"A white woman in a torn white frilly dress - - tears soaking her face,\"\nanetv_CPnLc0MtBYc,11346,A boy stands on a track field. He then,runs to the high jump and completes it.,stops jumping and runs across the field.,engages in a game of ice hockey.,rakes sand for lecturing boy.,falls back on the beam.,gold0-orig,pos,unl,unl,unl,pos,A boy stands on a track field.,He then\nanetv_CPnLc0MtBYc,15589,The young man run to the pole. The young man,jumped over the pole and landed on the red mat.,mounts the balance beam before doing long jumps and bungee jump.,plays fence croquet while the man stands off the camera.,\"falls, goes through the finish flips, pulls green man fell and falls on the ground once again.\",jumps to see a guy biker female a red jacket grabs a pole.,gold0-orig,pos,unl,unl,unl,unl,The young man run to the pole.,The young man\nanetv_n5xfkpQ8PWM,9277,The woman blows glitter papers from the palm of her hand. The sponsor of the clips,is introduced and displayed on the screen.,are then placed in a brilliant pile of leafs.,shows her wearing still from the camera.,comes to a woman painting the cat's nails.,return to surrounding faces.,gold0-orig,pos,unl,unl,unl,unl,The woman blows glitter papers from the palm of her hand.,The sponsor of the clips\nanetv_n5xfkpQ8PWM,9270,A woman smiles and cuts a wrapping paper with a scissor. The woman,places a teddy bear in a bowl.,grab some wrapping paper in wrapping paper.,finishes braiding the hair while still holding the canvas.,folds paper through a paper needle.,begins wrapping the wrapping paper.,gold1-orig,pos,unl,unl,unl,pos,A woman smiles and cuts a wrapping paper with a scissor.,The woman\nanetv_n5xfkpQ8PWM,9272,A woman puts two crystal presents in a white and pink box. A woman,holds up a covered gift wrapped in silver wrapping paper.,with a necklace closes the cake and turn it off.,sits in the hall and paints a piece of wood.,tosses and got gift items.,talks to her mom and puts her in plastic tubs with clear glass.,gold0-orig,pos,unl,unl,unl,unl,A woman puts two crystal presents in a white and pink box.,A woman\nanetv_n5xfkpQ8PWM,9273,A woman holds up a covered gift wrapped in silver wrapping paper. A woman,places a jewelry box in a box.,lays out her bag with ice off the board.,spreads the cards together in cut paper and adds the gifts.,sits on the ground next to her.,wraps black tissue wrapped in wrapping paper in the shop.,gold1-orig,pos,unl,unl,unl,unl,A woman holds up a covered gift wrapped in silver wrapping paper.,A woman\nanetv_n5xfkpQ8PWM,9271,The woman places a teddy bear in a bowl. A woman,puts two crystal presents in a white and pink box.,puts mashed eggs into the bowl.,picks the fish up and places it back on the table.,walks into a kitchen.,,gold0-orig,pos,unl,unl,pos,n/a,The woman places a teddy bear in a bowl.,A woman\nanetv_n5xfkpQ8PWM,9276,\"The woman holds out stacked, wrapped gifts with her hands. The woman\",blows glitter papers from the palm of her hand.,sits down on the edge of the dinosaur.,holds sandwiches to an ice cream in a bar.,stands up and turns around.,ends the case by wrapping wrapping paper.,gold0-reannot,pos,unl,unl,pos,pos,\"The woman holds out stacked, wrapped gifts with her hands.\",The woman\nanetv_n5xfkpQ8PWM,9269,A woman wraps several Christmas gifts. A woman,smiles and cuts a wrapping paper with a scissor.,cuts gifts to a metal table by wrapping paper.,put on front a gift paper.,speaks inside a shop that says gift dips.,attaches the christmas ornaments onto the magnificent christmas tree.,gold1-reannot,pos,unl,unl,unl,pos,A woman wraps several Christmas gifts.,A woman\nanetv_n5xfkpQ8PWM,9275,The woman presents a gold bowl. The woman,\"holds out stacked, wrapped gifts with her hands.\",mixes cake on a christmas tree.,lets the lemonade start gently.,shows in some of the blow lettuce and has to put it in the oven.,starts making an omelette with a plate and washes.,gold0-reannot,pos,unl,unl,unl,pos,The woman presents a gold bowl.,The woman\nlsmdc3026_FRIENDS_WITH_BENEFITS-1541,7766,\"She replaces the cover, glances outside and jogs out of the room in the opposite direction. Someone and his family\",occupy four of the five chairs around the table.,arrive on a piled top station.,arrive at a professional hotel overlooking the city.,sit amongst the street of cars.,hurry through the records archive excitedly.,gold1-orig,pos,unl,pos,pos,pos,\"She replaces the cover, glances outside and jogs out of the room in the opposite direction.\",Someone and his family\nlsmdc3026_FRIENDS_WITH_BENEFITS-1541,7765,\"Left alone, someone lifts away a top panel of the box and climbs out. She\",\"replaces the cover, glances outside and jogs out of the room in the opposite direction.\",opens it and catches him.,\"pulls up off the lab floor, sets her magazine down and peers angrily from under a balustrade.\",attaches him to the spires.,,gold0-orig,pos,unl,unl,unl,n/a,\"Left alone, someone lifts away a top panel of the box and climbs out.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5193,\"The party continue their walk through the trees. Later, someone\",is helping someone up into her carriage.,'s house clears the sidewalk.,rides his horse ready to the ground.,rests her own ear against the headboard.,heads off behind her.,gold0-orig,pos,unl,unl,unl,pos,The party continue their walk through the trees.,\"Later, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5192,Someone keeps her gaze averted from him. The party,continue their walk through the trees.,looks to someone else as they kiss.,shows the star wars ship.,gets up and turns off.,arrives at the diner.,gold1-orig,pos,unl,unl,unl,pos,Someone keeps her gaze averted from him.,The party\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89678,5194,\"As the carriage draws away, someone stands watching it. Someone\",turns to see him grow ever smaller in the distance.,keeps her lips pursed as the smoke trails around her breasts.,reads the items on wheels.,saunters over and dodges the slab of someone's hand with long white apples.,presses his shoulder against someone's.,gold0-orig,pos,unl,unl,unl,unl,\"As the carriage draws away, someone stands watching it.\",Someone\nanetv_Fr7rhb2Vw_k,9400,She then applies to wallpaper very carefully and trims it to fit perfectly. She,applies some more paper and gets it lined up.,finishes ticking to the new product and holds it up for it.,shaves the entrance and every man begins climbing into the next structure.,stands onto the screen and plays ukulele out of the way.,continues to show several different pieces buffalos carpets.,gold0-orig,pos,unl,unl,unl,unl,She then applies to wallpaper very carefully and trims it to fit perfectly.,She\nanetv_Fr7rhb2Vw_k,9398,She is then shown again speaking in front of a wall and giving instructions as to how to begin the process. The,is then shown mixing the glue required and applies it to a white wall.,is confronted by the actions of the hag.,violinist continues to play and speak to the camera as she continues exercising along the floor.,woman speaks while she moves in to use ski as shows more.,,gold0-orig,pos,unl,unl,unl,n/a,She is then shown again speaking in front of a wall and giving instructions as to how to begin the process.,The\nanetv_Fr7rhb2Vw_k,9399,The is then shown mixing the glue required and applies it to a white wall. She then,applies to wallpaper very carefully and trims it to fit perfectly.,shows how to wrench the dough with a ribbon to make sure that it is n't fit.,adjusts the mulch and paints a mark on the bottom of the shoe.,\"paints the purple button with a cactus, and lights it, surrounded by powder.\",acknowledges some of the baking powder all the way up to the top.,gold0-orig,pos,unl,unl,unl,unl,The is then shown mixing the glue required and applies it to a white wall.,She then\nanetv_Fr7rhb2Vw_k,11686,He points out all the different tools he needs. A woman then,shows how to hang wallpaper inside a house.,takes items off of the pumpkin and just takes her screwdriver to a small tray.,rides saddles on horses.,pulls out a wallpaper from the wall using a brush.,,gold0-orig,pos,unl,unl,unl,n/a,He points out all the different tools he needs.,A woman then\nanetv_Fr7rhb2Vw_k,9396,Text is shown with regards to how to install wallpaper. A women,is standing in a hardware store and then shows you the various tools required for installation of the wallpaper.,is speaking to the camera and shows images of the man hitting the girl.,are seen speaking as well as bit and leads into a woman speaking into the camera.,shown ingredients and rinsing water are shown.,puts on a blue mask then demonstrates how to clean the wood using a cloth.,gold0-orig,pos,unl,unl,unl,pos,Text is shown with regards to how to install wallpaper.,A women\nanetv_Fr7rhb2Vw_k,9397,A women is standing in a hardware store and then shows you the various tools required for installation of the wallpaper. She,is then shown again speaking in front of a wall and giving instructions as to how to begin the process.,then shows how to must install.,works on the carpet and then demonstrates how to tinder a strip on the rug.,is putting them in a salad bowl.,,gold0-orig,pos,unl,unl,unl,n/a,A women is standing in a hardware store and then shows you the various tools required for installation of the wallpaper.,She\nanetv_Fr7rhb2Vw_k,9401,She applies some more paper and gets it lined up. The video,closes with her giving some final advice.,ends with every slip of paper laid on the board.,ends with text explaining.,can be seen panning.,,gold1-orig,pos,unl,unl,unl,n/a,She applies some more paper and gets it lined up.,The video\nanetv_Fr7rhb2Vw_k,11685,A man is standing inside a building. He,points out all the different tools he needs.,shows how to hit a hedge with a stick.,is using something on a rope.,is putting a drum on his bicycle.,is in a gym with a stepper on how to fix a bike on top of the wall.,gold0-reannot,pos,unl,unl,unl,unl,A man is standing inside a building.,He\nanetv_AxaksczuL80,7185,A man puts lotion on his face with a brush. He,begins shaving his beard with a razor.,is filling soap from the door.,then brushes the hair off and wipes it off.,begins playing his instrument while continuing to play.,puts the lens back on the board.,gold0-orig,pos,unl,unl,unl,unl,A man puts lotion on his face with a brush.,He\nanetv_AxaksczuL80,6624,A man holds two razors in his hands. He,brushes shaving cream onto his face.,uses weights on the sill as he turns on a telescope.,takes a break to break a line aging to black and green flames.,adds them to the wood.,are in protective barriers like shoes.,gold0-orig,pos,unl,unl,unl,unl,A man holds two razors in his hands.,He\nanetv_AxaksczuL80,6625,He brushes shaving cream onto his face. He,starts shaving the side of his face with a razor.,shaves his beard with his finger.,walks over as he hands the ice cream to his father.,gives his hand a shake and says bye.,,gold0-orig,pos,unl,unl,unl,n/a,He brushes shaving cream onto his face.,He\nanetv_BH-kBRn84i8,7910,The man in white shirt is cutting the grass with lawn mower. The man,walked on the grass covered law.,is the electric mower and the camera is arched in brown grass.,plays and sits the real mower.,starts as moving looks at the camera.,,gold0-orig,pos,unl,pos,pos,n/a,The man in white shirt is cutting the grass with lawn mower.,The man\nanetv_BH-kBRn84i8,14717,A man wearing a hat is seen pushing a lawn mower across a yard of grass while moving back and fourth. He,continues cutting the grass and looking back and motioning to the camera.,sits down by himself along and ends by walking to the fence.,stops and starts swinging the mower around showing how to play a guitar.,cuts up several locations games and ends by walking towards it.,then demonstrates how to properly speak to the camera and inspect his plants while sitting in his yard.,gold0-orig,pos,unl,unl,unl,pos,A man wearing a hat is seen pushing a lawn mower across a yard of grass while moving back and fourth.,He\nanetv_BH-kBRn84i8,7911,The man walked on the grass covered law. The man,pulled back the lawn mower and then moved it forward and repeated it.,licks his lips repeatedly.,walked to the nearby table and talk to the bench.,is shaving with the hammer style shave.,then changes the blue mower.,gold0-reannot,pos,unl,unl,unl,unl,The man walked on the grass covered law.,The man\nlsmdc1062_Day_the_Earth_stood_still-100868,3813,People stare as he then reaches down with his other hand and touches the alien flesh to the officer's head. Power,surges through the man's body.,tightening the metal bands around someone's lips.,as someone watches anxiously.,appears by one figure and walks towards it.,pushes himself on a stool and leans back.,gold0-orig,pos,unl,unl,pos,pos,People stare as he then reaches down with his other hand and touches the alien flesh to the officer's head.,Power\nlsmdc1062_Day_the_Earth_stood_still-100868,3812,\"He touches a hand to the police cruiser, activating all its systems. People\",stare as he then reaches down with his other hand and touches the alien flesh to the officer's head.,\"passes through the large hole, we side of the highway.\",are checked on two men who are watching someone.,peers through the undergrowth and falls back in the darkness.,drives past his brother and sends a group of men through the field.,gold0-reannot,pos,unl,unl,unl,pos,\"He touches a hand to the police cruiser, activating all its systems.\",People\nlsmdc3012_BRUNO-4208,11891,\"Later, he leans against a bulletin board filled with celebrity photos. Angelina Jolie's\",has a black x over it.,a photo with someone's father at the beach.,\"lies behind him, gazing up at the painting.\",puts the quaffle into his right palm.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, he leans against a bulletin board filled with celebrity photos.\",Angelina Jolie's\nlsmdc3012_BRUNO-4208,11893,He points to someone Gibson. Someone,throws down his marker.,converge around someone if.,\"nods politely and stares at his teacher, then dignified.\",poses releasing a hair man.,,gold1-reannot,pos,unl,unl,unl,n/a,He points to someone Gibson.,Someone\nlsmdc3012_BRUNO-4208,11892,Angelina Jolie's has a black x over it. Someone,\"tilts his head, checking out someone's.\",\"sits on the horn, wide - eyed.\",crashes off the last web and stops.,is an approving man.,,gold0-reannot,pos,unl,unl,pos,n/a,Angelina Jolie's has a black x over it.,Someone\nlsmdc0013_Halloween-53964,7428,\"Still holding him up with one hand, the shape slams someone against the wall, holding him several feet off the floor. Someone\",struggles to get free.,looks up to see the two front people.,looks like what he has been watching about.,grabs it from the tree.,,gold0-orig,pos,unl,unl,unl,n/a,\"Still holding him up with one hand, the shape slams someone against the wall, holding him several feet off the floor.\",Someone\nlsmdc0013_Halloween-53964,7430,The shape lifts his other hand. It,holds the butcher knife.,nearly pulls it out in front of him.,takes off.,instantly pulls control of the door and turns to the crowd.,,gold0-orig,pos,unl,pos,pos,n/a,The shape lifts his other hand.,It\nlsmdc0013_Halloween-53964,7437,The ghost does n't answer. She,slides the sheets down from her body.,reaches out for the wrist position.,\"turns briefly, then starts to walk.\",grabs someone's arm.,turns and runs to the trapped boy.,gold0-orig,pos,unl,unl,unl,unl,The ghost does n't answer.,She\nlsmdc0013_Halloween-53964,7425,\"He steps out and grabs someone around the neck with an instantaneous lunge. Someone tries to jump away, but the shape\",has a firm hold on his neck.,waddles off his tail.,can't stop one.,is still dragged and the teacher has come after him.,rolls onto his back.,gold1-orig,pos,unl,unl,unl,pos,He steps out and grabs someone around the neck with an instantaneous lunge.,\"Someone tries to jump away, but the shape\"\nlsmdc0013_Halloween-53964,7420,He looks around the kitchen. In another cupboard he,finds a can of peanuts.,glances over with someone in the kitchen.,takes his captive inside.,heads back into the backdoor.,picks it up and studies someone a handgun.,gold0-orig,pos,unl,unl,unl,unl,He looks around the kitchen.,In another cupboard he\nlsmdc0013_Halloween-53964,7432,\"The shape drives the knife deeply into someone's chest with a slamming thud, the other end of the knife stuck through the wall. Someone\",\"hangs there, impaled on the wall, eyes still open in horror, dead.\",\", or animal clinging to the plows and clamber hatch, begins to collapse below his feet with a dull white piece of grass.\",\"falls out of the armchair onto the green chair, as a woman withdraws blood from his hand.\",continues as someone leaps over his head to scoop someone to the ground.,\"failed as he anchors the ground, slapping on his braces.\",gold0-orig,pos,unl,unl,unl,unl,\"The shape drives the knife deeply into someone's chest with a slamming thud, the other end of the knife stuck through the wall.\",Someone\nlsmdc0013_Halloween-53964,7429,Someone struggles to get free. The shape,lifts his other hand.,drops off a platform.,\"gets out and walks away, satchel in hand.\",breaks away from someone.,,gold0-orig,pos,pos,pos,pos,n/a,Someone struggles to get free.,The shape\nlsmdc0013_Halloween-53964,7417,Someone comes through the swinging doors. He,opens refrigerator and takes out two beers.,wears the amazing dress.,is almost looking for her.,grabs the letter and stands in his pajamas.,,gold0-orig,pos,unl,unl,unl,n/a,Someone comes through the swinging doors.,He\nlsmdc0013_Halloween-53964,7435,She hears someone enter the room but does n't look up. The shape,stands in the doorway.,moves quickly through the shape.,tries to pull the grate off of the door.,opens the door for her.,reaches for the gun.,gold0-orig,pos,unl,unl,unl,unl,She hears someone enter the room but does n't look up.,The shape\nlsmdc0013_Halloween-53964,7422,\"Someone freezes, staring at the two doors. He\",walks to one of the doors and opens it.,hurries to the door and turns into the corridor.,climbs the stairs and comes to a stop.,\"looks surprised, then lifts the weight to his shoulders.\",\"steps, outside observing the couple.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone freezes, staring at the two doors.\",He\nlsmdc0013_Halloween-53964,7418,He opens refrigerator and takes out two beers. Someone,gathers the food and beers into his arms.,proceeds to put the balls into the holes.,leaves appreciatively and removes a boy's head.,grins and watches him go.,hands him a bowl of shrimp.,gold0-orig,pos,unl,unl,pos,pos,He opens refrigerator and takes out two beers.,Someone\nlsmdc0013_Halloween-53964,7410,Someone pulls someone up from the couch and they walk quickly up the stairs. She,walks to the window and glances out.,drags her through the lobby.,pushes peers down to the curb and turns.,touches her neck.,slams the lid open.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls someone up from the couch and they walk quickly up the stairs.,She\nlsmdc0013_Halloween-53964,7421,In another cupboard he finds a can of peanuts. He,steps to the door and looks outside.,takes a seat which he'd removed and pulls some notes carefully.,makes the note written into the wall.,\"tosses it at him, but opens the photograph first.\",\"breaks it away, then heads off.\",gold0-orig,pos,unl,unl,unl,unl,In another cupboard he finds a can of peanuts.,He\nlsmdc0013_Halloween-53964,7424,He turns from the door. He,steps to the other door and opens it.,puts it and looks over.,looks up at the door then turns on the light.,closes the door as he steps inside.,pauses and glances at someone.,gold1-orig,pos,unl,pos,pos,pos,He turns from the door.,He\nlsmdc0013_Halloween-53964,7411,She walks to the window and glances out. Someone,stands by the telephone.,glances around as she exits.,lies on the ground.,\"walks out on door, gazing intently at the powered cliffs.\",,gold1-orig,pos,pos,pos,pos,n/a,She walks to the window and glances out.,Someone\nlsmdc0013_Halloween-53964,7423,He walks to one of the doors and opens it. He,turns from the door.,looks to man and finds a purple call too.,pulls out some letters.,presses his fingertips together.,lifts his gaze again.,gold1-orig,pos,unl,unl,unl,pos,He walks to one of the doors and opens it.,He\nlsmdc0013_Halloween-53964,7414,The only light is a candle illuminating the sheets as they move slowly up and down and from side to side. Empty beer cans,leave a trail from the door to the bed.,\"appears on the guy's feet, as if in the warmth of underwear.\",sit hidden from the wall.,sit inside a table as well as the dorm room.,,gold0-orig,pos,unl,unl,unl,n/a,The only light is a candle illuminating the sheets as they move slowly up and down and from side to side.,Empty beer cans\nlsmdc0013_Halloween-53964,7433,\"Someone hangs there, impaled on the wall, eyes still open in horror, dead. Someone\",lounges in the bed smoking another cigarette.,drive down a sidewalk.,returns to the open line.,leaps onto two armed guards.,\"struggles, trying to sit still.\",gold1-orig,pos,pos,pos,pos,pos,\"Someone hangs there, impaled on the wall, eyes still open in horror, dead.\",Someone\nlsmdc0013_Halloween-53964,7439,\"Someone laughs at her own joke, then stops when she sees the ghost is motionless. Someone\",turns around and looks.,takes a slip off a box of wrapped trash.,\"looks forward and holds her wand up, sees it for a moment.\",finds someone at the bar and stops.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone laughs at her own joke, then stops when she sees the ghost is motionless.\",Someone\nlsmdc0013_Halloween-53964,7409,Someone grabs someone's hand and stands up. Someone pulls someone up from the couch and they,walk quickly up the stairs.,hold each other and push him back.,chase each other over at a table.,watch him in amazement.,look nervously at each other.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs someone's hand and stands up.,Someone pulls someone up from the couch and they\nlsmdc0013_Halloween-53964,7419,Someone gathers the food and beers into his arms. He,looks around the kitchen.,looks into the phone at the bar as a band plays.,plops back in his seat.,\"picks up another - a vase, notices something and holds it in.\",looks at his old friend.,gold1-orig,pos,unl,unl,unl,unl,Someone gathers the food and beers into his arms.,He\nlsmdc0013_Halloween-53964,7426,\"Someone tries to jump away, but the shape has a firm hold on his neck. Then the shape\",lifts someone up off the floor.,reaches out his hand and pulls himself to the floor before the sunlight.,comes up with reverse and starts to go.,pulls up to the bridge deck.,is in shape screaming and says words quickly and death.,gold0-orig,pos,unl,unl,unl,unl,\"Someone tries to jump away, but the shape has a firm hold on his neck.\",Then the shape\nlsmdc0013_Halloween-53964,7434,Someone lounges in the bed smoking another cigarette. She,hears someone enter the room but does n't look up.,holds it up in front of her and watches her through.,aims the knife in the other direction.,\"continues enjoying her song, and she finishes pouring coffee.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone lounges in the bed smoking another cigarette.,She\nlsmdc0013_Halloween-53964,7427,\"He makes a guttural sound deep in his throat as the shape's hand closes tightly around his windpipe. Still holding him up with one hand, the shape\",\"slams someone against the wall, holding him several feet off the floor.\",\"reaches forward, sideways, rubbing his hands to his surface.\",moves slowly across the fire.,is reloading for a gas skull.,wrenches him free and pulls him up in a choke hold.,gold1-orig,pos,unl,unl,unl,pos,He makes a guttural sound deep in his throat as the shape's hand closes tightly around his windpipe.,\"Still holding him up with one hand, the shape\"\nlsmdc0013_Halloween-53964,7436,The shape stands in the doorway. Someone,looks at the ghost.,glances up as someone turns standing on.,\"smiles, smiles and spins, picks up two trays of whisk, and runs to his arms.\",\"sees someone standing nearby, muttering.\",looks as though she has been in before.,gold0-reannot,pos,unl,unl,unl,unl,The shape stands in the doorway.,Someone\nlsmdc0013_Halloween-53964,7412,Someone stands by the telephone. Someone,\"shrugs, turns away from the window and walks back to people sitting on the couch.\",pours as someone approaches someone.,\"takes a swig from the st, then glances at a desk.\",\"looks at the window, then back down where someone stands in the doorway.\",is with the phone in his ear.,gold1-reannot,pos,unl,unl,unl,pos,Someone stands by the telephone.,Someone\nlsmdc0013_Halloween-53964,7415,Her hair is a mess and she is frustrated. Someone,grabs someone and pushes her down on the bed.,\"smiles, hustles flops toward her.\",takes the nurse from next to it.,looks down at the locket.,,gold0-reannot,pos,unl,unl,unl,n/a,Her hair is a mess and she is frustrated.,Someone\nlsmdc0013_Halloween-53964,7413,\"Someone shrugs, turns away from the window and walks back to people sitting on the couch. The only light\",is a candle illuminating the sheets as they move slowly up and down and from side to side.,\", but is looking at the phone.\",\"coming from the window someone him, and someone looks at someone too, lost in thought.\",\"playing out on the floor, following them.\",has shades too much across the right.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone shrugs, turns away from the window and walks back to people sitting on the couch.\",The only light\nlsmdc0033_Amadeus-66951,15972,He goes on tearing the pages determinedly. A servant,opens the door to announce.,reaches down and shakes it.,brings a large cooking egg as two tomatoes approach.,opens in his hands start to clean the kitchen table.,lifts a harp in his hand.,gold0-reannot,pos,unl,unl,unl,unl,He goes on tearing the pages determinedly.,A servant\nanetv_6YtaXJJKUKM,1975,A woman is seen speaking to the camera while a small fooseball table sits before her. The woman,continues speaking as she spins around the game occasionally and leads into her playing with another girl.,continues decorating her nails closely and speaking to the camera and putting it back together.,stops playing and looks around.,walks away that she is then shown speaking to the camera.,hits the object several times and the camera follows her.,gold1-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while a small fooseball table sits before her.,The woman\nlsmdc3081_THOR-37855,15206,Someone smiles as he peruses images from Norse mythology. He,pauses at an image of someone holding mjolnir.,\"stops evacuating the house, a friend holding his doll - in - arms.\",joins the rest of the wedding guests in his market.,shows how expensive his cohorts's would fit.,,gold0-orig,pos,unl,unl,unl,n/a,Someone smiles as he peruses images from Norse mythology.,He\nlsmdc3081_THOR-37855,15208,\"Outside, someone sits in their idling research truck. She\",\"watches as someone walks into a store, pet palace, across the street.\",proffers the red - bracelet box.,\"pinches her nose, then gives her another.\",\"looks at a true print, then rubs its head against the head of a car.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Outside, someone sits in their idling research truck.\",She\nlsmdc3081_THOR-37855,15204,\"She finally turns, and follows her friends. Back on Earth, someone\",uses a library computer.,places his sandwich over his hole.,carries someone off with someone.,trips and calls over the barges with his equipment on.,parade with a videos.,gold0-orig,pos,unl,unl,unl,unl,\"She finally turns, and follows her friends.\",\"Back on Earth, someone\"\nlsmdc3081_THOR-37855,15203,\"Someone and the other men stand. They turn and leave, but someone\",\"remains rooted, staring at someone.\",wears his long coat.,puts his arms around her.,puts him back to him.,runs along the deck.,gold0-orig,pos,unl,unl,unl,unl,Someone and the other men stand.,\"They turn and leave, but someone\"\nlsmdc3081_THOR-37855,15207,\"He pauses at an image of someone holding Mjolnir. Outside, someone\",sits in their idling research truck.,holds his rifle over his shoulder.,checks his lunch hoe.,is striding toward the house.,,gold0-orig,pos,pos,pos,pos,n/a,He pauses at an image of someone holding Mjolnir.,\"Outside, someone\"\nlsmdc3081_THOR-37855,15205,\"Back on Earth, someone uses a library computer. He\",\"crosses the room and selects a book from a cart, then puts it down and opens a thicker volume beside it.\",removes the camp fire blazing.,pulls the planks away from the wall.,reveals a lacquer in a insert cradling a photo to the bench in front of their desks.,finds a pink coat in the darkened room.,gold0-orig,pos,unl,unl,unl,unl,\"Back on Earth, someone uses a library computer.\",He\nanetv_Auy0KGsXAIg,14278,He is talking in front of a disassembled bike. He,shows the different tools he needs to replace the chain.,has been pulled boxes in and out of a wall to work out what he will do.,cuts a hoodie and puts something on the bike.,comes on and talks.,,gold0-orig,pos,unl,pos,pos,n/a,He is talking in front of a disassembled bike.,He\nanetv_Auy0KGsXAIg,1584,A man is seen speaking to the camera and leads into him holding up various tools and begins putting them on a bike. The man,demonstrates how to properly piece together a bike and peddling the bike to show how it works.,speaks to the camera as well as explaining how shaded proper tools are demonstrated against the baseboards.,is then seen cutting the man's hair and showing how to speed.,then grabs the pieces off of the tire and shows them in removing a tire from the car.,continues to use the hose to move all along the carpet as well as areas.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and leads into him holding up various tools and begins putting them on a bike.,The man\nanetv_Auy0KGsXAIg,14277,A man wearing a beanie is inside a room. He,is talking in front of a disassembled bike.,starts playing the bagpipes.,is playing the drums in front of a crowd.,is polishing a boxing glove.,,gold0-orig,pos,pos,pos,pos,n/a,A man wearing a beanie is inside a room.,He\nanetv_9khzc3a4zz0,10289,A woman is doing tricks with her jump rope. She,does a hand stand while jump roping.,jumps on a diving board a few times.,is then shown on the screen and the woman in the pen shirt has done and the girl is climbing up stairs doing some choreography,takes off and throws jumps from his water.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is doing tricks with her jump rope.,She\nanetv_9khzc3a4zz0,10290,She does a hand stand while jump roping. She,does a front flip while jump roping.,\", she catches up.\",continues to spin around spinning and twirling and doing different things and ends.,stands and lifts her belly as she creeps through the line before her.,,gold0-reannot,pos,unl,unl,unl,n/a,She does a hand stand while jump roping.,She\nanetv_9khzc3a4zz0,10291,She does a front flip while jump roping. She,stops and walks forward.,sets her arms down and mimics all dance in control.,stands up at the end of the rope.,celebrates several times and lands near the stage.,jumps on a bunk and swings the pole off balance.,gold0-reannot,pos,unl,unl,unl,unl,She does a front flip while jump roping.,She\nanetv_VO49rhXzhk4,11537,The woman wraps the book with the paper and tape. The woman,talks to the camera whole holding the wrapped and ribboned book.,lays it out and taps herself on the floor.,cuts the cellophane in another box.,wraps the paper around her nails.,puts the handbag and folds the iron in the paper.,gold0-orig,pos,unl,unl,unl,unl,The woman wraps the book with the paper and tape.,The woman\nanetv_VO49rhXzhk4,11534,Closeups of the necessary equipment for this operation are shown. The woman,wraps a book with tissue paper and tape.,places the polish tile onto the hands and talks.,begins to decorate the elliptical wall and finally wears a kilt and shows a client.,uses some concentration to describe the workout with the machine.,plays describe the awards together.,gold0-orig,pos,unl,unl,unl,unl,Closeups of the necessary equipment for this operation are shown.,The woman\nanetv_VO49rhXzhk4,11533,A woman's hands are shown wrapping something. The woman,talks to the camera.,wraps it around his torso.,does and blow dry the hair.,touches the blunt paper and unwraps the flower.,,gold0-orig,pos,unl,unl,pos,n/a,A woman's hands are shown wrapping something.,The woman\nanetv_VO49rhXzhk4,11536,The woman cuts paper to shape for the book. The woman,wraps the book with the paper and tape.,puts parchment paper on a colorful can to form the wet line on a different page.,comes back and put chair after.,in california places the land on the paper.,slides the knife on the top and unfolds paper and clipping.,gold1-orig,pos,unl,unl,unl,pos,The woman cuts paper to shape for the book.,The woman\nanetv_VO49rhXzhk4,11535,The woman wraps a book with tissue paper and tape. The woman,cuts paper to shape for the book.,appears and test the thick wrapping they.,begins clipping her number with a piece of paper.,tapes the chicken paper.,,gold1-orig,pos,unl,unl,unl,n/a,The woman wraps a book with tissue paper and tape.,The woman\nanetv_Sd08rsPTroE,13038,He starts talking again to the camera. He,is talking while sitting behind drums.,does several flips and crunches throughout the floor.,puts the hand down.,starts scraping the car on it.,is leaving the room again.,gold1-orig,pos,unl,unl,unl,unl,He starts talking again to the camera.,He\nanetv_Sd08rsPTroE,13036,A man starts talking to the camera. He,picks up a piece of equipment.,is holding a rubik's cube on the desk and he's putting it in his mouth.,is making a cake with a finger in the product.,sprays some liquor in a sink.,talks about how to apply a paper to a mallet.,gold0-orig,pos,unl,unl,unl,unl,A man starts talking to the camera.,He\nanetv_Sd08rsPTroE,13040,He starts to play the drums. He,continues to talk to the camera.,turns in a korean class.,play when in the ring comes to join a story.,smiles as he plays the guitar.,stops to talk to the crowd.,gold1-orig,pos,unl,unl,unl,pos,He starts to play the drums.,He\nanetv_Sd08rsPTroE,13035,Words appear on the screen for a bit. A man,starts talking to the camera.,continuously swings water and casts.,is interviewed with a seal.,clears a path with a stick.,in a black shirt is talking to a man in the ground.,gold0-orig,pos,unl,pos,pos,pos,Words appear on the screen for a bit.,A man\nanetv_Sd08rsPTroE,13039,He is talking while sitting behind drums. He,starts to play the drums.,continues playing the drums and blowing leaves.,is setting down the drums and cymbals.,explains how to play the violin.,is playing a guitar while another man is playing guitar behind him.,gold0-orig,pos,unl,unl,pos,pos,He is talking while sitting behind drums.,He\nanetv_Sd08rsPTroE,13037,He picks up a piece of equipment. He,starts talking again to the camera.,ties the top of a rack.,takes a piece of paper off the wall.,is moving back to using the shovel.,picks it up and starts moving it very quickly.,gold1-orig,pos,unl,pos,pos,pos,He picks up a piece of equipment.,He\nanetv_Sd08rsPTroE,16146,He is then seen sitting behind a drum set points to drums and begins playing. He,pauses to speak to the camera as well as play more.,continues playing while playing his flute and bowing to the camera.,continue playing and looking off into the distance.,begins to speak on the instrument and begins playing back and fourth with another set of their drums.,plays the drums continuously while looking to the camera playing transitions into him playing.,gold1-orig,pos,unl,unl,pos,pos,He is then seen sitting behind a drum set points to drums and begins playing.,He\nanetv_Sd08rsPTroE,13042,He plays the drums again. He,talks to the camera for a final time.,stops and puts the flute.,then plays the drums with his hands.,moves to a set of keys and.,begins to play his guitar again.,gold1-reannot,pos,unl,unl,unl,unl,He plays the drums again.,He\nanetv_Sd08rsPTroE,13041,He continues to talk to the camera. He,plays the drums again.,\"is drawing a tall window, where he goes missing a step, but in reaction.\",continues to play his harmonica.,stands up as he outlined.,leaps past him and catches him on the throat.,gold0-reannot,pos,unl,unl,unl,unl,He continues to talk to the camera.,He\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89736,12586,\"In his night things, someone calmly opens the door. The messenger\",hands him a letter.,\"gets both finished, looking at someone.\",pays for the crowds outside an airport at a salon.,boss nervously walks through the hallway and stops.,moved to the desk.,gold1-orig,pos,unl,unl,pos,pos,\"In his night things, someone calmly opens the door.\",The messenger\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89736,12587,The messenger hands him a letter. Someone,\"passes the housekeeper his candle, then opens the letter.\",hurries over to the brick floor and faces her friend.,steps across a workshop.,eyes his senator's'.,,gold1-orig,pos,unl,unl,unl,n/a,The messenger hands him a letter.,Someone\nanetv_QBI5ZH_cdik,7765,Men are doing motocross in a dusty path. people,are in a motocross competition doing tricks on the dusty path.,are and participate in a race track doing field event.,are doing centers on their horses.,are going down a long street.,are jumping javelins on the streets.,gold0-orig,pos,unl,unl,unl,unl,Men are doing motocross in a dusty path.,people\nanetv_QBI5ZH_cdik,7764,Man is standing in front of the men in motorcycles holding a sign with numbers. men,are doing motocross in a dusty path.,are riding a wakeboard near behind them.,are standing in front of a gate talking.,are playing shuffleboard on the rink.,,gold0-orig,pos,pos,pos,pos,n/a,Man is standing in front of the men in motorcycles holding a sign with numbers.,men\nlsmdc0005_Chinatown-48273,17102,Someone goes back to the photographs. He,\"hears a scratching sound, apparently coming from just outside the outer door.\",is talking about materials to do.,stares after him and smiles.,crosses to someone who eyes him quizzically.,holds up the bag of autographed football.,gold0-orig,pos,unl,unl,unl,unl,Someone goes back to the photographs.,He\nlsmdc0005_Chinatown-48273,17107,Someone heads toward the door. Someone,\"nods graciously, heads on into someone's office.\",slams down for a moment before pausing by his partner.,pushes her way away from the open door.,finds herself and locks the chamber.,,gold0-orig,pos,unl,unl,unl,n/a,Someone heads toward the door.,Someone\nlsmdc0005_Chinatown-48273,17106,\"The Secretary returns, sees the workman on the floor. Someone\",heads toward the door.,undoes the thermos over his hand and meets his gaze.,hits him hard and sprints off.,stops to look back at the camera.,tosses his glass to someone.,gold0-orig,pos,unl,pos,pos,pos,\"The Secretary returns, sees the workman on the floor.\",Someone\nlsmdc0005_Chinatown-48273,17105,\"Workmen are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise. The Secretary\",\"returns, sees the workman on the floor.\",is pulling a goat down from the grass.,grabs the the file and flaps it down.,peeps out and flashes through the peephole.,,gold0-orig,pos,unl,unl,unl,n/a,\"Workmen are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise.\",The Secretary\nlsmdc0005_Chinatown-48273,17103,\"He hears a scratching sound, apparently coming from just outside the outer door. He\",\"moves quickly to it, hesitates, swiftly opens the door.\",shakes the glasses of wine rolls out of the coffee cup.,has not been italian.,hangs up his bag and helps someone toward his car.,drive over a red railing where another flips back half down.,gold0-orig,pos,unl,unl,unl,unl,\"He hears a scratching sound, apparently coming from just outside the outer door.\",He\nlsmdc0005_Chinatown-48273,17104,\"He moves quickly to it, hesitates, swiftly opens the door. Workmen\",\"are behind it, scraping away someone's name on the outer door, looking up at someone in some surprise.\",has forgotten his things on someone.,barges in through the door behind himself.,looks out in front of the van in a corner.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He moves quickly to it, hesitates, swiftly opens the door.\",Workmen\nlsmdc0005_Chinatown-48273,17101,\"She gets up, annoyed, and goes into someone's inner office. Someone\",goes back to the photographs.,comes into the bathroom and stares directly into her mind for a moment.,leans into a wall with graduation paint and slim features.,blows the candles from the bed and looks across the room as the tall man covers his cigarette.,reaches the stereo driver.,gold0-reannot,pos,unl,unl,unl,unl,\"She gets up, annoyed, and goes into someone's inner office.\",Someone\nlsmdc3077_THE_VOW-35467,14262,\"Their warped figures reflected on its seamless, chrome like surface. In another flashback, someone\",works a mound of clay on the table in an art studio.,\"eats food with two small packets of chewing fruit, pushing it at the tiger.\",takes a light in a mirror.,sits in her old saloon.,leans on the kitchen of a modest upright chair.,gold0-orig,pos,unl,unl,unl,pos,\"Their warped figures reflected on its seamless, chrome like surface.\",\"In another flashback, someone\"\nlsmdc3077_THE_VOW-35467,14263,\"In another flashback, someone works a mound of clay on the table in an art studio. Her pulled back hair\",is now shoulder length.,accompanies someone to the new york jet.,holds her arm down.,pulls up from a nearby pillow as the younger girl stares at him.,,gold0-orig,pos,unl,unl,pos,n/a,\"In another flashback, someone works a mound of clay on the table in an art studio.\",Her pulled back hair\nlsmdc3077_THE_VOW-35467,14265,\"With a frustrated look, she smacks the unfinished sculpture, then shoves the table away. Someone\",enters and turns off the stereo.,rolls his eyes and touches his temple in contrast to the dim light.,bumps into a rock wall.,leaves vault and slips on.,\"sets back the paper, then dumps it into four worn trays.\",gold0-orig,pos,unl,unl,unl,unl,\"With a frustrated look, she smacks the unfinished sculpture, then shoves the table away.\",Someone\nlsmdc3077_THE_VOW-35467,14264,\"Her pulled back hair is now shoulder length. With a frustrated look, she\",\"smacks the unfinished sculpture, then shoves the table away.\",\"walks away, and she has to stoop down before her.\",\"strains it into a box, and thrusts it through tissue paper.\",takes a deep breath.,steps away from her apartment and walks over the narrow gate.,gold0-reannot,pos,unl,unl,pos,pos,Her pulled back hair is now shoulder length.,\"With a frustrated look, she\"\nanetv_Ip1EWQCXvRM,1731,A man speaks to the group and leads into them paddling down a river. The group,continues riding down the river showing close ups of them working and ending with a logo across the screen.,continues washing the boats while speaking back and showing them off.,continues riding along the water and ends by giving it the water.,continue to walk on the water.,continues to play with one another while the camera follows one another.,gold1-orig,pos,unl,unl,unl,unl,A man speaks to the group and leads into them paddling down a river.,The group\nanetv_Ip1EWQCXvRM,1730,A small group of people are seen sitting in a raft with close ups of their feet and paddles are shown. A man,speaks to the group and leads into them paddling down a river.,rides a snowboard into the water in several more clips as well as riding them around while others watch on the side.,is seen playing drums while another in a kayak behind them.,is then seen jumping on his boat talking to the camera while water skiing beside the canoe.,washes his hands and helps children into the boats along attached to one kayak.,gold0-orig,pos,unl,unl,pos,pos,A small group of people are seen sitting in a raft with close ups of their feet and paddles are shown.,A man\nlsmdc3042_KARATE_KID-18944,13505,\"Turning, he passes a man in a gray uniform, standing guard beneath a red flag. Someone\",\"mopes down the sidewalk, passing between two cramped rows of parked bicycles.\",addresses nods to the mutant.,scrabbles aim at the post.,lands on the ground.,runs toward a crowd of photographers.,gold0-orig,pos,unl,unl,pos,pos,\"Turning, he passes a man in a gray uniform, standing guard beneath a red flag.\",Someone\nlsmdc3042_KARATE_KID-18944,13516,\"The boy turns and someone beckons him with a finger. Frowning, someone\",picks up the toothpaste cap on his way to the bathroom.,\"closes his eyes, staring, and smiles at the offscreen someone.\",twists back to face him and kisses him on the forehead.,hangs up the phone.,lurches violently up the stairs towards someone's side.,gold1-orig,pos,unl,unl,pos,pos,The boy turns and someone beckons him with a finger.,\"Frowning, someone\"\nlsmdc3042_KARATE_KID-18944,13513,\"Looking around, the maintenance man spies a toothpaste cap on the sink. He\",\"picks it up, takes careful aim.\",shows him and brushes himself along the shoulder of his parka.,averts his gaze as she walks down the grassy aisle.,lifts a taser from his mouth and shoots a coin at the kitchen computer.,\"drives past the sink, and smooths it off with a towel.\",gold0-orig,pos,unl,unl,unl,pos,\"Looking around, the maintenance man spies a toothpaste cap on the sink.\",He\nlsmdc3042_KARATE_KID-18944,13514,\"He picks it up, takes careful aim. It\",hits someone in the neck.,disappears into the night's darkness.,walks straight from the clearing.,\"sprawls across the top of the cliff, below someone's out zone map.\",moves up closer as he prepares his pistol to slap.,gold0-orig,pos,unl,unl,unl,unl,\"He picks it up, takes careful aim.\",It\nlsmdc3042_KARATE_KID-18944,13492,\"In a cafeteria, someone holds a combination tray and bowl in one hand. With the other, he\",struggles to serve himself food with chopsticks.,glances around and studies the photo of the blonde someone.,heads into his own study.,\"opens the wall, revealing an expanse of bed within.\",turns to a stove and fills it with water.,gold0-orig,pos,unl,unl,unl,unl,\"In a cafeteria, someone holds a combination tray and bowl in one hand.\",\"With the other, he\"\nlsmdc3042_KARATE_KID-18944,13498,Someone leads him to a counter protected by a glass barrier. She,hands her tray to a cafeteria worker.,\"nods at us broadly, who puts his hand behind her head and looks at her with an ornamental gesture.\",staggers to his feet.,lifts the zipper with his hand as she steals a drink.,,gold1-orig,unl,unl,unl,unl,n/a,Someone leads him to a counter protected by a glass barrier.,She\nlsmdc3042_KARATE_KID-18944,13506,\"Cars pack a four - lane artery. Nearby, dozens of other locals\",perform graceful steps and gestures in unison.,get led up the hill.,join all the witches at a fire.,spin around as people approach amnesia fish and watch on the side.,give the head another stumble.,gold1-orig,pos,unl,unl,unl,unl,Cars pack a four - lane artery.,\"Nearby, dozens of other locals\"\nlsmdc3042_KARATE_KID-18944,13507,\"Nearby, dozens of other locals perform graceful steps and gestures in unison. Now, someone\",carries a toolbox to the apartment building's entrance.,joins his friends in front of a white sart - tam - machine.,takes out an elegant chair as someone reads it.,meets two detectives down the graveyard.,\"sits at the large table, brushing his teeth.\",gold0-orig,unl,unl,unl,unl,unl,\"Nearby, dozens of other locals perform graceful steps and gestures in unison.\",\"Now, someone\"\nlsmdc3042_KARATE_KID-18944,13515,It hits someone in the neck. The boy turns and someone,beckons him with a finger.,peeks out in the end.,spots his son walking away.,follows between the boys again.,,gold0-orig,pos,unl,pos,pos,n/a,It hits someone in the neck.,The boy turns and someone\nlsmdc3042_KARATE_KID-18944,13499,The girl grins sweetly and leaves. Someone,\"watches her go, with a peaceful smile, and wanders in her general direction.\",stops him with a pensive gaze.,turns back and faces him with a coy smile.,\"stares at him, then returns his gaze to the door of a modest room.\",,gold0-orig,pos,unl,unl,unl,n/a,The girl grins sweetly and leaves.,Someone\nlsmdc3042_KARATE_KID-18944,13510,\"With a barely perceptible shake of the head, someone enters the cerulean - tiled bathroom. Someone\",sneaks a peek at the man.,\"tugs on the handle bars, wipes her face in rags, drags herself open.\",glares down at the girl then stands.,\"sits in his seat, asleep.\",raises both hands and sighs.,gold0-orig,pos,unl,pos,pos,pos,\"With a barely perceptible shake of the head, someone enters the cerulean - tiled bathroom.\",Someone\nlsmdc3042_KARATE_KID-18944,13495,\"She gets a tray and bowl for herself. Using her chopsticks, she\",fills his bowl with noodles.,kneels and ties them together.,removes the lid and fixes it on the chain again.,admires an apron and lacy blue gown.,,gold0-orig,pos,unl,unl,unl,n/a,She gets a tray and bowl for herself.,\"Using her chopsticks, she\"\nlsmdc3042_KARATE_KID-18944,13501,\"As someone obeys, someone bumps his shoulder. Mrs. Po\",sends someone in the opposite direction.,glances at the set.,watches someone lift the stone door.,moves forward decorating the room's rim.,leaves the living room.,gold0-orig,pos,unl,unl,unl,pos,\"As someone obeys, someone bumps his shoulder.\",Mrs. Po\nlsmdc3042_KARATE_KID-18944,13504,\"Someone lumbers down the front steps and shuffles glumly to the gate. Turning, he\",\"passes a man in a gray uniform, standing guard beneath a red flag.\",grabs the pen and follows her onto the flatbed truck.,finds a double - shot rolled up and starts to go.,finds an tracking camera sitting on her.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lumbers down the front steps and shuffles glumly to the gate.,\"Turning, he\"\nlsmdc3042_KARATE_KID-18944,13493,\"With the other, he struggles to serve himself food with chopsticks. A hand\",strokes one of his braids.,walks to the tray.,reaches against the fish pack.,appears on a sweaty mannequin.,plays the man on the ground.,gold0-orig,pos,unl,unl,unl,unl,\"With the other, he struggles to serve himself food with chopsticks.\",A hand\nlsmdc3042_KARATE_KID-18944,13491,\"With an embarrassed pout, someone turns away. In a cafeteria, someone\",holds a combination tray and bowl in one hand.,is at someone's bedside.,wipes someone's earpiece with his burmese finger.,looks up with a witch in a dance house.,,gold0-orig,pos,unl,unl,unl,n/a,\"With an embarrassed pout, someone turns away.\",\"In a cafeteria, someone\"\nlsmdc3042_KARATE_KID-18944,13508,\"In the living room of 305, someone practices martial - arts drills, uided by an instructor on tv. Someone\",peeks in through the open door.,drops the wooden ball back into the tunnel and moves many times from the floor.,chases after someone as she sleeps on the sofa.,\"dashes through swings onto one side, blocking one of someone's widely out plants.\",pulls the door closed.,gold0-orig,pos,unl,unl,unl,pos,\"In the living room of 305, someone practices martial - arts drills, uided by an instructor on tv.\",Someone\nlsmdc3042_KARATE_KID-18944,13496,\"Using her chopsticks, she fills his bowl with noodles. Someone\",allows a humble smile.,'s mouth hangs open as he irritably approaches the register.,hands the dog to someone.,sits and watches as they flash across the street.,eats her truffle as she gives someone another glass.,gold0-reannot,pos,unl,unl,unl,unl,\"Using her chopsticks, she fills his bowl with noodles.\",Someone\nlsmdc3042_KARATE_KID-18944,13502,\"Mrs. Po sends someone in the opposite direction. Now, as students\",file out from the school.,climb over a mountainside.,make their way toward a large stone ferry.,step into the studio pool.,,gold0-reannot,pos,unl,pos,pos,n/a,Mrs. Po sends someone in the opposite direction.,\"Now, as students\"\nlsmdc3042_KARATE_KID-18944,13503,\"Now, as students file out from the school. Someone\",lumbers down the front steps and shuffles glumly to the gate.,studies someone and heads to the church.,\"opens a suitcase, revealing a delicate cut knee - length dress.\",\"sits up at his goateed friend, clutching his long hair behind his back.\",faces her smiling parents who is struck dumb.,gold0-reannot,pos,unl,unl,pos,pos,\"Now, as students file out from the school.\",Someone\nlsmdc3042_KARATE_KID-18944,13494,A hand strokes one of his braids. It,'s the pretty violinist.,shows the oil and the knife.,thoughtfully kisses his forehead.,shows a small child with a beard on wei.,,gold0-reannot,pos,unl,unl,unl,n/a,A hand strokes one of his braids.,It\nanetv_yinXvETACC4,4414,A host is seen speaking to the camera and leads into a trainer speaking with others exercising behind her. More shots of people exercising on bikes,are shown and ends with the trainer walking through and talking.,\"are shown in snowy landscapes, flipping and leads into the people performing impressive jumps while using the shoes and looking around.\",are shown while the camera's movements are shown again.,are shown as well as the camera following their movements.,are shown as well as people sitting and spinning while standing next to them.,gold0-reannot,pos,unl,unl,unl,pos,A host is seen speaking to the camera and leads into a trainer speaking with others exercising behind her.,More shots of people exercising on bikes\nanetv_U0IJmOHoa1M,11284,The cricket team of Sri Lanka is playing against another country. the cricketers,are playing a competitive game in the field.,are shown from the scene to the street.,are called a green run.,are spread over a table writing expectant photographs.,continue staring into the black field that can not release those red rebreather and a cold.,gold0-orig,pos,unl,unl,unl,unl,The cricket team of Sri Lanka is playing against another country.,the cricketers\nanetv_U0IJmOHoa1M,11289,The match goes on full swing as the batsmen score four runs. The fielder,\"runs to catch the ball after the batsman hits it high, almost catching the ball to make him clean bold.\",gives up and gets away after chasing the dogs.,king performs another couple of steps.,shoots the other man back and runs in the end while trying to score.,switches to a sign that leaves 30 time.,gold0-orig,pos,unl,unl,unl,pos,The match goes on full swing as the batsmen score four runs.,The fielder\nanetv_U0IJmOHoa1M,11285,The cricketers are playing a competitive game in the field. The Sri Lanka team,is represented by the blue uniform.,is leaning away from the quidditch flag.,goes out by their time.,comes closer to each team and make the scores.,congratulate each other player who is winning the competition.,gold0-orig,pos,unl,unl,pos,pos,The cricketers are playing a competitive game in the field.,The Sri Lanka team\nanetv_U0IJmOHoa1M,11288,The video shows different cricket matches taking place where Sri Lanka is playing against teams from different countries. The stadium,is filled with spectators cheering for the cricketers.,shows some slow the two teams between two girls of forty instructing groups of soccer players.,applauds and dislodge player scores and his croquet kick closeup player sheepishly shoots the ball close to the center of the goal box which rockets,raises high on the cork yet another recorded replay of one of the balls.,,gold0-orig,pos,unl,unl,unl,n/a,The video shows different cricket matches taking place where Sri Lanka is playing against teams from different countries.,The stadium\nanetv_U0IJmOHoa1M,11287,The batsman scores four runs as the bowler throws an overhand ball. The video,shows different cricket matches taking place where sri lanka is playing against teams from different countries.,ends with the closing credits shown on the screen.,counts off a man in red bowling clips bowling pins and hits.,ends with the man opening reappears on the screen and throw 3 a goal.,returns to the boy scores.,gold0-orig,pos,unl,unl,unl,unl,The batsman scores four runs as the bowler throws an overhand ball.,The video\nanetv_U0IJmOHoa1M,11286,The Sri Lanka team is represented by the blue uniform. The batsman,scores four runs as the bowler throws an overhand ball.,continues to use the players's hands to break up some parts of the wig and puts it back in his pocket.,practices on sets of the soccer.,returns the winning serve.,,gold0-reannot,pos,unl,unl,unl,n/a,The Sri Lanka team is represented by the blue uniform.,The batsman\nlsmdc1010_TITANIC-77567,16678,\"She blinks, then gazes at him. Someone\",\"stares at her and opens his mouth, as if to speak, then slaps her face.\",wipes her brow and turns away.,sweeps her brow and pushes it away.,\"stalks forward, his pistol still sweaty.\",\"studies him a moment and looks toward someone, then pulls away.\",gold1-orig,pos,unl,unl,unl,pos,\"She blinks, then gazes at him.\",Someone\nanetv_-4WdzYpCJPU,1222,A man is standing at a table holding a bow in his hand talking. He then,goes outside and shoots an arrow at a target.,demonstrates how to sharpen the knife.,stacks the symbols with ink.,shoots the bow and arrow.,,gold1-orig,pos,unl,unl,pos,n/a,A man is standing at a table holding a bow in his hand talking.,He then\nlsmdc1027_Les_Miserables-6244,727,Someone seals a folded letter with wax. She,runs out to the garden and slots the letter in the railings.,looks behind his ruined waling.,climbs down the figure as he walks up in her home.,\"heads in a pile of piles, paper, test and passports.\",holds the tape tied from her hands and doffs it.,gold0-orig,unl,unl,unl,unl,unl,Someone seals a folded letter with wax.,She\nlsmdc1027_Les_Miserables-6244,730,It's addressed to someone. Someone,opens the letter and reads it.,points to a book.,tries to restrain his brother.,has been restrained to it.,\"looks at someone, who looks away with sincere concern.\",gold0-orig,pos,unl,unl,unl,pos,It's addressed to someone.,Someone\nlsmdc1027_Les_Miserables-6244,728,She runs out to the garden and slots the letter in the railings. Someone,emerges from the shadows and takes the letter.,straightens one - fitting suit and walks out of the way with the photo.,laughs and leans back in her arms.,smiles as she wags her finger at her.,hands someone a notebook.,gold0-orig,pos,unl,unl,pos,pos,She runs out to the garden and slots the letter in the railings.,Someone\nlsmdc1027_Les_Miserables-6244,729,Someone emerges from the shadows and takes the letter. It,'s addressed to someone.,collapses on the shoulder.,rises and falls with a slow - sigh.,is the camisole - someone.,waves up to him.,gold0-orig,pos,unl,unl,unl,pos,Someone emerges from the shadows and takes the letter.,It\nlsmdc1027_Les_Miserables-6244,726,Someone puts a candlestick in her bag. Someone,seals a folded letter with wax.,puts a dutifully in his pocket.,reaches the controls and stares off.,sweeps over and sets up seat screens.,\"raises his cane, raises her abdomen.\",gold0-reannot,pos,unl,unl,unl,unl,Someone puts a candlestick in her bag.,Someone\nlsmdc1027_Les_Miserables-6244,731,\"Rain pours down, soaking the cobbled street. Someone\",\"slowly walks through the darkness, soaked to the skin.\",looks down as a guy reaches out.,arrives in the rear - room.,\"counts from the remaining citizens, men of troopers and policemen who tumble backwards on ground ironing.\",strides upstairs with his cane.,gold0-reannot,pos,unl,unl,unl,pos,\"Rain pours down, soaking the cobbled street.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70228,8312,\"Someone is giving it careful study while he dabs the lump on the back of his head with an ice pack. Someone, wearing a bathrobe,\",leans over to study the impression.,emerges from a balcony pew his tiny husband.,sits in a commercial parlor office.,sits in front of the piano.,holds up a pair of earphones.,gold1-orig,pos,unl,unl,unl,pos,Someone is giving it careful study while he dabs the lump on the back of his head with an ice pack.,\"Someone, wearing a bathrobe,\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70228,8313,\"Someone, wearing a bathrobe, leans over to study the impression. Someone\",lowers the ice pack from his head and looks at someone.,sits dons her straw hat.,backs wearily up behind them.,\"remains on the spot, watching from below.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, wearing a bathrobe, leans over to study the impression.\",Someone\nlsmdc0011_Gandhi-52559,8036,The camera is on a row of sandals by the door - -. It,pans to the room.,\"tries to grab someone, but someone closes the door.\",are all run out a fire escape from an adjacent door.,rushes the board and tries to reach it.,\"is the basket brim, and a blast of dust and dust.\",gold0-orig,pos,unl,unl,unl,unl,The camera is on a row of sandals by the door - -.,It\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12611,\"He staggers to the marble sink and leans on it. Looking down, he\",sees the skin on his hands begin to bulge and bubble.,sees the coin inches above his head.,kicks a chair nearby.,\"finds someone still, gazing at us in surprise, then gives us wide.\",\"tosses a pillow over his head and turns, as the others hide behind.\",gold1-orig,pos,unl,pos,pos,pos,He staggers to the marble sink and leans on it.,\"Looking down, he\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12608,They look at their thick sludge suspiciously. They,put the hairs into the potion.,fly in an arc.,head as they pin them down.,join someone in a suitcase.,ride knee - deep under the waterfall.,gold0-orig,pos,unl,unl,unl,unl,They look at their thick sludge suspiciously.,They\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12613,\"As he watches, he gradually turns into podgy someone. He\",lifts his hand and touches his beefy face with plump fingers.,roars into the kitchen.,\", someone turns away and dashes down someone.\",staggers alone as shadows jutting out.,\"passes, slowly, who stomps forward, frowning.\",gold0-orig,pos,unl,unl,unl,unl,\"As he watches, he gradually turns into podgy someone.\",He\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12614,\"He turns and sees someone coming out of the cubicle, transformed into fat - faced, dumpy someone. They\",stare at each other.,disappear into the hall toward the brothers.,hurry to the top as someone watches the boys leave someone's friend's wheelchair.,steps off the corridor when a stone passes by.,\"from the look he is standing, he places two thin fires on his son's coat.\",gold0-orig,pos,unl,unl,unl,unl,\"He turns and sees someone coming out of the cubicle, transformed into fat - faced, dumpy someone.\",They\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12610,Someone drops his glass and clutches his stomach in agony. He,staggers to the marble sink and leans on it.,\"removes a jet from the egg, hauls it over his head and bottle down his face.\",gets away with his cane and peers downward.,tucks him out of his throat.,answers the phone.,gold0-orig,pos,unl,unl,unl,pos,Someone drops his glass and clutches his stomach in agony.,He\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12609,\"Clinking glasses, they all drink at once. Someone\",takes a swig and heads for the nearest cubicle.,strolls the forth sip.,removes his spectacles and the customer steps away.,\"turns around, mixing the smoking drink.\",goes to the window and seats herself.,gold1-orig,pos,unl,unl,unl,pos,\"Clinking glasses, they all drink at once.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12607,She hands one to someone and one to someone. They,look at their thick sludge suspiciously.,drive along the road.,use handfuls of raw meat to set aside on a crate.,\"fight over someone, then a ring of flame which goes for someone and she kicks her way to her feet.\",hung helplessly by the troll.,gold1-reannot,pos,unl,unl,unl,unl,She hands one to someone and one to someone.,They\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12612,\"Looking down, he sees the skin on his hands begin to bulge and bubble. Someone\",looks into the mirror.,takes the seat beside someone on someone.,\"lifts the weight briefly, then turns around and shifts his weight.\",\"drops his teeth three times, his teeth clenched in pain.\",unbuttons the shirt shirt.,gold1-reannot,pos,unl,unl,unl,pos,\"Looking down, he sees the skin on his hands begin to bulge and bubble.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12606,People hide as people appear with armfuls of cake. They,see the floating cakes and grab them.,\"emerge in a stunning beauty, direct their chins, and begin a run.\",are standing dying by tables.,fight over the smashed stone.,shaped plops into an elf.,gold0-reannot,pos,unl,unl,unl,unl,People hide as people appear with armfuls of cake.,They\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93069,12605,\"She holds up the cakes. Followed by someone, someone\",\"peers around a statue in the corridor, makes sure the coast is clear, and lifts his crooked wand.\",studies someone 'diary.,is smiling about what she is.,nods to a tall guy wearing red wig.,sits on his bed.,gold0-reannot,pos,unl,unl,unl,pos,She holds up the cakes.,\"Followed by someone, someone\"\nanetv_lGvI5pyjpFg,7943,A young girl is seen standing behind a table squeezing limes while another washes dishes in the background. The girl,continues juicing the fruit and walks towards the camera then back again.,stirs mushrooms in a palette and pours down ingredients into water.,walks up to the sink to begin washing the dishes.,continues washing the dishes near the sink while continuing to speak to the camera.,,gold0-orig,pos,unl,pos,pos,n/a,A young girl is seen standing behind a table squeezing limes while another washes dishes in the background.,The girl\nlsmdc1015_27_Dresses-79758,308,\"Later, someone, still looking unhappy, hangs the dresses back in the closet. On a sunny day, someone\",arrives at someone 'apartment.,stands outside looking anxious.,approaches the packages on the side of the seats and throws it to someone.,and her family are out of an ambulance.,,gold0-orig,pos,pos,pos,pos,n/a,\"Later, someone, still looking unhappy, hangs the dresses back in the closet.\",\"On a sunny day, someone\"\nlsmdc1015_27_Dresses-79758,311,\"Later, he and someone are scanning the bar codes on items for the wedding list. He\",scans some china penguins.,slides a contact lens into someone's eyes.,checks the empty tools.,begins bouncing it and smiling.,,gold0-orig,pos,pos,pos,pos,n/a,\"Later, he and someone are scanning the bar codes on items for the wedding list.\",He\nlsmdc1015_27_Dresses-79758,306,\"He looks awkward at catching her off guard, looking sad and vulnerable. They\",\"sit opposite one another, squirming in uncomfortable silence.\",stop her from falling.,drive through a large snow - covered road.,\"hold up two, each giving a warning glance.\",use the wall toward the bars.,gold0-orig,pos,unl,unl,unl,unl,\"He looks awkward at catching her off guard, looking sad and vulnerable.\",They\nlsmdc1015_27_Dresses-79758,310,Someone becomes suspicious as someone stands blocking the doorway. Someone,is vacuuming and dancing.,cleans a sample of his hair.,bursts out the flames.,approaches the huge hatch and starts out.,reads the same cooking program on the corridor door.,gold1-reannot,pos,unl,unl,unl,unl,Someone becomes suspicious as someone stands blocking the doorway.,Someone\nlsmdc1015_27_Dresses-79758,309,\"On a sunny day, someone arrives at someone 'apartment. Someone\",becomes suspicious as someone stands blocking the doorway.,\"arrives, an overcoat and sleeveless shirt and a bright black collar.\",puts a sheet over her son.,leads someone through the store.,skulks down the stairs and slowly walks up a stairs.,gold0-reannot,pos,unl,unl,unl,pos,\"On a sunny day, someone arrives at someone 'apartment.\",Someone\nanetv_lDJpGI4BZ8k,12795,The man plays his harmonica and takes breaks to speak. The man,stop playing and talks to the camera.,plays the violin and turns back to playing.,continues playing the guitar while another walks behind and plays guitar.,finishes and walks back to the camera.,drags up the flute into the instrument.,gold0-orig,pos,unl,unl,unl,unl,The man plays his harmonica and takes breaks to speak.,The man\nanetv_lDJpGI4BZ8k,12131,A man walks into frame and holds up a harmonica. He then,begins playing the instrument and moving his hands around.,clips the cards and a drawings around a picture as well as making others laugh.,begins taking two puffs of the instrument while looking away.,plays the accordion while looking off into the distance.,takes an accordion and begins playing it instrument.,gold1-orig,pos,unl,unl,unl,unl,A man walks into frame and holds up a harmonica.,He then\nanetv_lDJpGI4BZ8k,12794,\"He shows us a harmonica, and talks. The man\",plays his harmonica and takes breaks to speak.,takes the flute and plays the saxophone.,talks to the camera while picking it up.,walks into the room wearing purple and black tape.,,gold0-orig,pos,unl,unl,unl,n/a,\"He shows us a harmonica, and talks.\",The man\nanetv_lDJpGI4BZ8k,12793,A man enters waving his arms and pointing at the camera. He,\"shows us a harmonica, and talks.\",runs a accordion in electric drum and begins it to take it off the drums at several fast pace.,\"is mounts as he thrusts his hips, then stops and performs his moves.\",reaches down for frame and has to throw the baton and end up throwing it on the white floor.,,gold1-orig,pos,unl,unl,unl,n/a,A man enters waving his arms and pointing at the camera.,He\nanetv_lDJpGI4BZ8k,12797,The man throws his arms in the air. The man,finishes and walks away.,starts doing flips on the floor and still watching.,lets go of the disc and falls.,triumphantly lifts another metal.,lets go of the rope.,gold1-reannot,pos,unl,unl,unl,pos,The man throws his arms in the air.,The man\nanetv_lDJpGI4BZ8k,12132,He then begins playing the instrument and moving his hands around. He,pauses to speak to the camera and continues playing on the harmonica.,lands back and fourth again while pausing to speak to the camera.,continues to play the instrument while moving around and looking out the camera.,continues moving along the instrument while pausing to speak to the camera.,speaks to the camera and begins playing the instrument while speaking to the camera.,gold0-reannot,pos,unl,unl,unl,pos,He then begins playing the instrument and moving his hands around.,He\nanetv_xbcP38aF5Ok,14375,Other men are outside talking and laughing and then man with the red hair is gathered with friend and has a chip in his nose. He and his friend next to him,slap the guy in front of him.,trying to rake his leaves in the sand.,are trying one to put his gun down.,as they all went away.,pads across side of the table toward the camera.,gold1-orig,pos,unl,unl,unl,unl,Other men are outside talking and laughing and then man with the red hair is gathered with friend and has a chip in his nose.,He and his friend next to him\nanetv_xbcP38aF5Ok,14373,\"A man with red some what spiky hair grabbed another boy by the shirt and the boy walked away, the man went after him but then quickly turned back around. The red spiked hair man\",is then on the court practicing flips and stuff.,got sliced by a white backdrop.,twirled and threw makes grab on the other boy celebrate.,threw another javelin over after him to the field.,points out of the individual's hair raised.,gold1-reannot,pos,unl,unl,unl,unl,\"A man with red some what spiky hair grabbed another boy by the shirt and the boy walked away, the man went after him but then quickly turned back around.\",The red spiked hair man\nanetv_xbcP38aF5Ok,4141,The man does flips and shows a man speaking to a teacher in a class. The boys,run around the school and outside and speak to one another.,walk to their parts side as they congratulate each other.,break a routine to join a different jump.,shoot more shots of cameras as well as leading into more shots.,,gold0-reannot,pos,unl,unl,pos,n/a,The man does flips and shows a man speaking to a teacher in a class.,The boys\nanetv_QbhMOqg9Tmg,14001,Women are insisde a bathtub shving her legs with ceam and water. women,are laughing in front of a mirror.,are also puting the clothing.,are using quilt to dance in public.,get up and start eating wearing bikinis.,,gold1-orig,pos,unl,unl,unl,n/a,Women are insisde a bathtub shving her legs with ceam and water.,women\nlsmdc3038_ITS_COMPLICATED-17239,8728,He and someone share an awkward smile. She,faces forward and chuckles.,follows someone at someone.,hands her the stoop.,stands and gives a deep look.,joins him and tilts her head slightly.,gold1-orig,pos,unl,unl,pos,pos,He and someone share an awkward smile.,She\nlsmdc3038_ITS_COMPLICATED-17239,8727,\"Now, someone drives his car. Someone\",stops the car and rolls down his window.,makes an occasional call.,sits at a table.,intercepts someone's bonnet.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone drives his car.\",Someone\nlsmdc3037_IRON_MAN2-16257,10466,\"He uncovers a blueprint and studies it. Later wearing welding goggles, someone\",welds pieces of metal together.,enters the bedside desk.,rests the goblet atop his canopy.,puts his scraps in a bag.,,gold0-orig,pos,unl,unl,pos,n/a,He uncovers a blueprint and studies it.,\"Later wearing welding goggles, someone\"\nlsmdc3037_IRON_MAN2-16257,10465,\"In his father's work area, someone thumbs through diagrams and plans. He\",uncovers a blueprint and studies it.,steps back down the wheelchair.,poses in a circle.,tilts his head and shows his brow.,,gold0-orig,pos,unl,unl,pos,n/a,\"In his father's work area, someone thumbs through diagrams and plans.\",He\nlsmdc3037_IRON_MAN2-16257,10467,\"Later wearing welding goggles, someone welds pieces of metal together. Someone\",stops welding and lifts the goggles above his forehead.,smiles as and places a tiny alien on the boat's scale.,readies himself to shield.,and someone descend to the wall marked the ruined chamber of the network.,peers out underneath the crimson bifrost bridge.,gold0-reannot,pos,unl,unl,unl,unl,\"Later wearing welding goggles, someone welds pieces of metal together.\",Someone\nanetv_pX-ik8n_eNQ,4211,The man waits for the other man to get back. One player,hits the ball when it almost falls on the floor.,gets to the end of the bar.,knocks the man over someone's point of view.,leans over the register and claps for him.,continues to hug him and goes back to playing the song.,gold1-orig,pos,unl,unl,unl,pos,The man waits for the other man to get back.,One player\nanetv_pX-ik8n_eNQ,1459,\"Two young men play ping pong front to front in an indoor facility. Then, one of the man\",goes to the side of the tennis table to continue playing.,begins fighting the other woman while other other competitors watch him to turn back and play.,grabs the ball and throws it in the sand.,fall to another individual who serves the ball with the other girl.,,gold0-orig,pos,unl,unl,unl,n/a,Two young men play ping pong front to front in an indoor facility.,\"Then, one of the man\"\nanetv_pX-ik8n_eNQ,4209,Two men are playing table tennis. The ball,flies off the table to the side at one point.,is lifted into the air which is thrown to the ground.,hits the ball back and forth.,throws up into purple cups.,hits the ball over and over.,gold0-orig,pos,unl,unl,unl,unl,Two men are playing table tennis.,The ball\nanetv_pX-ik8n_eNQ,1460,\"Then, one of the man goes to the side of the tennis table to continue playing. The ball\",hit the net and fall to the floor.,returns working in the room at the same time once more.,\"drops down near him, and does a few tilt ups.\",is aimed facing his teammate.,is twisted and the ball rolls to the ground.,gold1-reannot,pos,unl,unl,unl,unl,\"Then, one of the man goes to the side of the tennis table to continue playing.\",The ball\nanetv_pX-ik8n_eNQ,4210,The ball flies off the table to the side at one point. The man,waits for the other man to get back.,swings and grabs the lawn.,steps up and shows off the finished piece.,serves the boy again.,puts ice across the hoop during a flash.,gold1-reannot,unl,unl,unl,unl,unl,The ball flies off the table to the side at one point.,The man\nanetv_8UJ5PGzu1PE,5565,A man lays a Coca Cola bottle on a bundle of hay. The man,shots an arrow from a bow.,grabs the shovel and continues skateboarding.,puts the hose into a parked truck.,stops exercising and opens his mouth.,,gold0-orig,pos,unl,unl,pos,n/a,A man lays a Coca Cola bottle on a bundle of hay.,The man\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13776,As he peers over side. We,start moving before he does.,get it through a fitting glass window.,lumbers uneasily as someone rolls on his back.,see him considerable impressive.,find someone in his shelter.,gold0-orig,pos,unl,unl,unl,unl,As he peers over side.,We\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13777,We start moving before he does. We,tilt to frame him from the waist downward and follow close behind him.,see the camera.,are on the screen.,watches the girl walk back and forth toward the camera.,,gold0-orig,pos,unl,unl,unl,n/a,We start moving before he does.,We\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13779,\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he steps past a tiny cellar window and we pan and tighten in close on it, into. Their noses are flat against the glass; their cheeks touch; their window\",is n't quite big enough to hold both their heads.,have turned in place.,is in half with one hand.,is open and nearer.,view is far scrawled by the pale ad the teams wear.,gold0-orig,pos,unl,unl,unl,unl,\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he steps past a tiny cellar window and we pan and tighten in close on it, into.\",Their noses are flat against the glass; their cheeks touch; their window\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13778,\"We tilt to frame him from the waist downward and follow close behind him. As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he\",\"steps past a tiny cellar window and we pan and tighten in close on it, into.\",reaches under the door of a window and peers inside the marble chamber.,\"mows her around, his travels heels on marley's back.\",begins to trim it and peers out his gap.,,gold0-orig,pos,unl,unl,unl,n/a,We tilt to frame him from the waist downward and follow close behind him.,\"As he leaves the tree and walks along the side of the house; we tilt downward and close in, to follow only his feet; he\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13773,She is in profile as before. We,start to follow the line up.,\"are squeezing their eyes shut, breathing gasps.\",are alone shot someone on the pitch as they rush forward.,slows to a stop.,sweep across the rocky walls of a small building building.,gold0-orig,pos,unl,unl,unl,unl,She is in profile as before.,We\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13775,\"He sits back, tugging unconcernedly at the line. Then he\",leans over to see what's wrong.,slaps the ass - with the clothe.,\"charges, struggles up the horse, and throws him up in the air.\",\"throws a flip through it, then knocks the board against the water.\",swings it protectively over his mouth.,gold0-orig,pos,unl,unl,unl,unl,\"He sits back, tugging unconcernedly at the line.\",Then he\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13783,\"He starts down the rustling coal - heap, helping someone down. They\",have achieved the cellar floor.,\"runs out, leaving the lawn below as he catches her in a puddle on the sidewalk.\",splits down all together.,stops speaking to someone more than another man had come to his cell house.,are playing videoing of crevasse.,gold1-orig,pos,unl,unl,unl,unl,\"He starts down the rustling coal - heap, helping someone down.\",They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13771,\"Someone is happy to let her mouth fall open and let out a gasp. We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her,\",drifts her long hair across her throat.,has stopped and startled at the rapid end.,soars down toward it's flickering horns.,is painfully wire of the thread on her leg.,is trying to find someone far too.,gold0-reannot,pos,unl,unl,unl,unl,Someone is happy to let her mouth fall open and let out a gasp.,\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her,\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13780,Their noses are flat against the glass; their cheeks touch; their window is n't quite big enough to hold both their heads. It is on the ground; we,don't see their chins.,just hear the voice of the telephone.,are still stare at it.,can barely hear the gate's engine.,are at that moment of hear.,gold1-reannot,pos,unl,unl,unl,unl,Their noses are flat against the glass; their cheeks touch; their window is n't quite big enough to hold both their heads.,It is on the ground; we\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13772,\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her, drifts her long hair across her throat. She\",is in profile as before.,goes to see someone reading at him at the sidewalk.,furtively soars into the sea.,starts to feed her.,slows up and glances back at her.,gold0-reannot,pos,unl,unl,unl,pos,\"We pan, with slowly streaming weeds, and bring in someone in close profile; the current, coming from behind her, drifts her long hair across her throat.\",She\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49292,13781,It is on the ground; we don't see their chins. They,look towards the departed someone.,swim around on each side of the herd.,go water once more.,write at the perimeter of a table.,,gold0-reannot,pos,unl,unl,unl,n/a,It is on the ground; we don't see their chins.,They\nanetv_UIH5arBo3-Y,10181,The man pauses for a second. The man,finishes his song and stops.,takes the table and walks away from the camera.,talks while the camera pans to a person filming the step instruction.,dismounts on the board and begins talking.,,gold1-orig,pos,unl,pos,pos,n/a,The man pauses for a second.,The man\nanetv_UIH5arBo3-Y,10180,An older man with glasses and gray hairs sits and sings as he plays the guitar. The man,pauses for a second.,strum a drum while he plays.,moves quizzically to the interviewer with his violin.,plays the piano again.,moves to the chair between the drums and plays.,gold1-orig,pos,unl,unl,unl,unl,An older man with glasses and gray hairs sits and sings as he plays the guitar.,The man\nanetv_UIH5arBo3-Y,10182,The man finishes his song and stops. We,see the ending title screen with a cat on it.,see the man singing and then teaches him to talk again.,run away from the mirror.,see how to do this song.,,gold1-reannot,pos,unl,unl,pos,n/a,The man finishes his song and stops.,We\nanetv_pMDFkrK0KRc,6270,He is wearing a pair of black glasses. He,takes off the glasses and applies contact lenses.,is carrying a large skillet and begins to pour it into a steel pan.,is playing an accordian.,is using a lawn mower to cut the grass.,holds up a bottles and empties.,gold0-orig,pos,unl,pos,pos,pos,He is wearing a pair of black glasses.,He\nanetv_pMDFkrK0KRc,8664,\"Then, the man takes off his glasses and take a contact lens with his finger, then he puts again his glasses. After, the man\",\"takes off his glasses, then open his eye with two fingers and put the contact lens.\",takes onto the rag and start pulling the ice to the castle.,puts two slices on the bar.,cleans the ground attempt takes the beach and then we see the sheds of a board on the beach.,\"drink a beer and talk that to the camera, then the man in brushing and shows how the container of squirt works.\",gold0-orig,pos,unl,unl,unl,unl,\"Then, the man takes off his glasses and take a contact lens with his finger, then he puts again his glasses.\",\"After, the man\"\nanetv_pMDFkrK0KRc,8665,\"After, the man takes off his glasses, then open his eye with two fingers and put the contact lens. Next, the man\",put the contact lens in the other eye.,\"stack a dial, and put his ear with his right hand then produces the water.\",puts the lens up in tissue paper with white contacts.,thrust the hair on the branch and pulled it into position.,lifts the drink from a blue packet and puts it on.,gold1-reannot,pos,unl,unl,unl,unl,\"After, the man takes off his glasses, then open his eye with two fingers and put the contact lens.\",\"Next, the man\"\nanetv_pMDFkrK0KRc,6269,A man is talking to the camera. He,is wearing a pair of black glasses.,is talking to the camera.,is seated in a room hitting the boy.,is scooping out a pumpkin.,is doing the stretches before a mat.,gold1-reannot,pos,unl,unl,pos,pos,A man is talking to the camera.,He\nlsmdc0046_Chasing_Amy-68686,13124,Someone picks through her food. People,sit at a booth.,are shaving on her bare legs.,warm up in laundry.,\"rolls across the couch, shifting her jaw.\",\"are dressing on a counter, chewing, and making a remark to them.\",gold0-orig,pos,unl,unl,unl,unl,Someone picks through her food.,People\nlsmdc0046_Chasing_Amy-68686,13123,Someone watches him go and exits. Someone,picks through her food.,starts to go.,serves breakfast together and drinks.,descend the stairwell and two carriages pass by a quieter room.,,gold0-orig,pos,unl,unl,unl,n/a,Someone watches him go and exits.,Someone\nanetv_RHb_nF11Scc,8418,He is trying to remove a splinter from someone's toe. He,continues working until the splinter is removed.,opens the door for the archbishop from the front entrance.,stands inside a rain - drenched warehouse.,picks up the coat lid and enters halfway through drawer.,\"grabs the destroyed tower, shields in the depths of the wand, eyeing it.\",gold0-orig,pos,unl,unl,unl,unl,He is trying to remove a splinter from someone's toe.,He\nanetv_RHb_nF11Scc,17655,Man is standing in front of a woman's foot. the man,is cutting the woman's nails.,sprays a hookah and blows out smoke.,rubs sunscreen on the man's leg.,is kneeling on the floor and lifting a woman's left arm free.,,gold0-orig,pos,unl,unl,pos,n/a,Man is standing in front of a woman's foot.,the man\nanetv_RHb_nF11Scc,8417,\"A man is inside a room, holding a foot in his hands. He\",is trying to remove a splinter from someone's toe.,pours the ball into a large box.,starts playing and stops to talk to the camera.,\"is running, dancing and twirling the batons.\",does a leg stand while kicking his legs.,gold0-orig,pos,unl,unl,unl,unl,\"A man is inside a room, holding a foot in his hands.\",He\nanetv___c8enCfzqw,18449,\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she roll the brush downwards and upwards. She\",styled her hair by brushing and combing it to give more volume.,\"show the carved tree, then put the needle and started braiding brush.\",rearranges the steps to the list of what they'd need to do.,sat on the floor and then brushed off the hair hair and her sandals.,curls the hairstyle with the force of her hula back.,gold0-orig,pos,unl,unl,unl,unl,\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she roll the brush downwards and upwards.\",She\nanetv___c8enCfzqw,18448,\"The lady sat at the center of the studio with her wet hair, she put a white cream on her hand then rub it on her hair. The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she\",roll the brush downwards and upwards.,the comb on under her flutter.,did so long back before only the man on her hair began.,did the more to walk away.,looked half in time to shyly.,gold0-orig,pos,unl,unl,unl,unl,\"The lady sat at the center of the studio with her wet hair, she put a white cream on her hand then rub it on her hair.\",\"The girl blow dry her hair with white blower, sectioned her hair, brushed her hair with roller brush while blow drying it at the same time, she\"\nanetv___c8enCfzqw,18447,\"A lady in black jacket is posing for the camera, then a man with medium length hair is shown, the man touched her hair to check on it, then the girl blow dry her hair. The lady sat at the center of the studio with her wet hair, she\",put a white cream on her hand then rub it on her hair.,sway again.,places a cookie screen.,pushed her hand up.,\"got her hair all out of her mouth, and then over to look at it with another while and a long black hair.\",gold0-orig,pos,unl,unl,pos,pos,\"A lady in black jacket is posing for the camera, then a man with medium length hair is shown, the man touched her hair to check on it, then the girl blow dry her hair.\",\"The lady sat at the center of the studio with her wet hair, she\"\nanetv_XeRiPVEZ6pY,1069,A man is playing an accordian with a piano onstage before a crowd. He,bounces and dances lightly as he plays for the audience.,walks back down the video and begins playing the violin.,begins performing some kind of martial arts before the performance.,continues to play the saxophone and fight it.,walks out into an examination room where a couple watches his performance.,gold0-orig,pos,unl,unl,unl,unl,A man is playing an accordian with a piano onstage before a crowd.,He\nanetv_XeRiPVEZ6pY,16484,The guy stops playing the accorion. The guy,points to the audience and orchestra.,sits up and sits his microphone.,points towards the tattoo artist.,makes a poster for his bike.,brushes the button on the strings.,gold0-orig,pos,unl,unl,unl,pos,The guy stops playing the accorion.,The guy\nanetv_6LrY7uMj8Kg,1968,Three men sitting by the counter are sitting watching tv and then ladies in cheerdancing outfit started dancing as the men stare at them. The ladies,\"started dancing, raising their arms up swinging their bodies.\",take their shoes up and hug their arms around the other.,finish and look at each other with shirtless sequences while watching them.,dance as they dance circles like men dancing in a hall.,are at the many tables trying to win the red cocktail and ends with a man about them.,gold0-orig,pos,unl,unl,unl,unl,Three men sitting by the counter are sitting watching tv and then ladies in cheerdancing outfit started dancing as the men stare at them.,The ladies\nanetv_3TxZTZEEg44,1723,A student with shades is now in the video as he and the instructor further help to explain the video as the student shows how to return serve the balls. The instructor,is now in a blue shirt and explaining more in the video and where to get more free lessons.,kicks the player on the left side of the court.,continues on the notes while the instructor talks.,ends with the men showing martial artists standing on a mat on their shoulders and speaking to each other.,,gold0-orig,pos,unl,unl,unl,n/a,A student with shades is now in the video as he and the instructor further help to explain the video as the student shows how to return serve the balls.,The instructor\nanetv_3TxZTZEEg44,1721,A grey title screen with white letters and artwork show who the host and the video series is about. Footage,is shown with two players playing tennis.,is finally shown on the screen with the scene of the video holding a small towel.,overtakes the gymnast perform then the crowd calls the applause.,talk than pretend they are talking about the pumpkins before the video.,,gold0-orig,pos,unl,unl,unl,n/a,A grey title screen with white letters and artwork show who the host and the video series is about.,Footage\nanetv_3TxZTZEEg44,1724,The instructor is now in a blue shirt and explaining more in the video and where to get more free lessons. A white screen,appears with a red arrow in a circle and black letters showing where to get more videos.,appears with champion types that this is facing naming fun in total time.,is shown with a text intro with several scenes of a man's hand jumping on a city in the end.,comes up and comes to a shot by the name of the man's name.,appears with text words that appears white water and mainly black and red sugar.,gold0-orig,pos,unl,unl,unl,unl,The instructor is now in a blue shirt and explaining more in the video and where to get more free lessons.,A white screen\nanetv_3TxZTZEEg44,1720,A man in a red shirt at an outdoor tennis court is giving a tutorial on to return a serve and how to hold the racket. A grey title screen with white letters and artwork,show who the host and the video series is about.,appears running back in random making goals.,appears on the score paper.,come up from the table.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a red shirt at an outdoor tennis court is giving a tutorial on to return a serve and how to hold the racket.,A grey title screen with white letters and artwork\nanetv_3TxZTZEEg44,5017,A man is seen speaking to the camera while holding a tennis racket and leads into shots of him hitting the ball with another on a field. He,demonstrates how to properly hit the ball with another while leading back into him speaking to the camera.,move behind to capture the ball in a pool before the camera focuses in on him as he continues to play.,come wearing the end and hug the racket as well as speaking to the camera and dancing around and catching the dealer's hands.,continues playing while looking at the camera working himself.,move all around the yard while the camera captures him from the sides.,gold0-orig,pos,unl,unl,pos,pos,A man is seen speaking to the camera while holding a tennis racket and leads into shots of him hitting the ball with another on a field.,He\nanetv_3TxZTZEEg44,1722,Footage is shown with two players playing tennis. The instructor,shows how to hold and move with the racket.,\"stops the bat, trying to score.\",turns to watch the records group.,narrates the game and leads into several clips involved in the game around the casino.,leads another team shot.,gold0-reannot,pos,unl,unl,unl,pos,Footage is shown with two players playing tennis.,The instructor\nanetv_3Hgwyprv8u4,8712,The person walks around with the vacuum and pushes it along a rug. More shots,are shown of the person using the attachments on the camera as well as showing how it's made.,are shown of cleaners as well as ingredients.,\"are shown of people riding around, while the camera focuses on the objects.\",are shown of shoes as well as sitting and looking in the distance.,are shown of people continuously warming up and leads of the child being shown afterwards.,gold1-orig,unl,unl,unl,unl,unl,The person walks around with the vacuum and pushes it along a rug.,More shots\nanetv_3Hgwyprv8u4,8711,A camera pans all around a vacuum close up and shows a person's feet. The person,walks around with the vacuum and pushes it along a rug.,is then shown climbing all into the water while the camera zooms off.,continues noisily down carpet while the camera captures her movements.,continues spraying the dog again by smiling at the camera and smiling into the camera.,begins moving the leaves around the area.,gold0-orig,pos,unl,unl,unl,unl,A camera pans all around a vacuum close up and shows a person's feet.,The person\nanetv_pnFRC2_HPrE,4607,A woman in black shorts and a blue shirt is seen using an elliptical trainer and the brand and model are shown. Different people are shown using the elliptical and the various features,are shown and demonstrated.,are displayed in stage.,are shown about the group working.,are shown jerking it.,are shown in including artwork and logo.,gold0-orig,pos,unl,unl,unl,pos,A woman in black shorts and a blue shirt is seen using an elliptical trainer and the brand and model are shown.,Different people are shown using the elliptical and the various features\nanetv_pnFRC2_HPrE,4609,Finally the brand and model are shown again with the same girl from the beginning. Then the screen,goes black for the rest of the video.,are show again at home with the paint store and photograph of a girl talking about another.,ends with the closing credits.,goes black and the video ends with the closing credits.,,gold1-orig,pos,unl,pos,pos,n/a,Finally the brand and model are shown again with the same girl from the beginning.,Then the screen\nanetv_pnFRC2_HPrE,4608,Different people are shown using the elliptical and the various features are shown and demonstrated. Finally the brand and model,are shown again with the same girl from the beginning.,\"appears on the screen, added more, social media utensils and other interments fencing.\",liners are shown with long white strength.,appears too hard written among them before that various display of the name of the building.,of petals are shown.,gold1-orig,pos,unl,unl,unl,unl,Different people are shown using the elliptical and the various features are shown and demonstrated.,Finally the brand and model\nlsmdc3016_CHASING_MAVERICKS-6253,11451,\"Later, on calm waters, they kneel on their respective boards. They\",\"bend over, paddling both hands through the water at the same time.\",hold the distant dining room for one long.,move in a middle of charcoal purple containers.,move farther along the rocks.,,gold0-orig,pos,unl,unl,pos,n/a,\"Later, on calm waters, they kneel on their respective boards.\",They\nlsmdc3016_CHASING_MAVERICKS-6253,11450,\"Now, they carry the boards into the surf. Later, on calm waters, they\",kneel on their respective boards.,travels across a rocky body of water to a darting pulling lawn.,hide only a line on the board.,slosh a passing glass.,\"look into a wave at a petrol balloon, then face the river.\",gold0-orig,pos,unl,unl,unl,unl,\"Now, they carry the boards into the surf.\",\"Later, on calm waters, they\"\nlsmdc3016_CHASING_MAVERICKS-6253,11452,Brackets on the boards hold water bottles. They,pause and sit up.,\"pour the powder into the glass, then add stacks of white juice.\",open the lens on the boat with the water board first takes two glasses from the water.,see the lady fall off her boards above the dunk.,,gold0-reannot,pos,unl,unl,pos,n/a,Brackets on the boards hold water bottles.,They\nanetv_wdD-UHM8rTg,18875,She holds up a violin and a stick. A boy,does the same after her.,puts a tattoo on the guy's neck.,walks around to watch.,with a black body walks over the court.,is in a room playing.,gold1-orig,pos,unl,pos,pos,pos,She holds up a violin and a stick.,A boy\nanetv_wdD-UHM8rTg,304,More shots are shown of trash and people wandering around and speaking to the camera. More clips,are shown of children playing instruments and speaking to the camera.,are shown of the kids holding up sides as well as people crashing into one another.,are shown of people playing pool sets of shoes.,are shown of people skating in a sunny pool from many dinette and clean as well as inside.,are shown of people on a bike and doing tricks on a bike.,gold1-orig,pos,unl,unl,unl,pos,More shots are shown of trash and people wandering around and speaking to the camera.,More clips\nanetv_wdD-UHM8rTg,18874,A girl is talking to the camera. She,holds up a violin and a stick.,moves around a group.,starts talking while showing beaches.,removes the curlers from hair.,sets it down in front of the camera.,gold0-orig,pos,unl,unl,pos,pos,A girl is talking to the camera.,She\nanetv_wdD-UHM8rTg,18876,A boy does the same after her. They,begin playing a song for the camera.,go over hills and fly.,wrestle the act again until the scene begins.,get the ball and behind all the players passionately from the shore while showing how to perform.,line a bmx race across the ice.,gold0-reannot,pos,unl,unl,unl,unl,A boy does the same after her.,They\nanetv_ULBhK8jXNws,19197,There is a truck being driven on the road in the beginning of the video. Then a man,\"is shown sitting by the poolside, surfing in the water with other people.\",is then shown riding in the road while looking away while looking away.,push a skateboard on snowboard but is thrown back and forth motion.,is shown using a old man who keeps playing in another casino and shows the number while talking.,lifts a plane down.,gold1-orig,pos,unl,unl,unl,unl,There is a truck being driven on the road in the beginning of the video.,Then a man\nlsmdc1058_The_Damned_united-98444,14171,\"Someone scratches his balls as he eyes someone contemptuously, standing beside the team lined up for the national anthem. Someone\",sings in the stands.,flips over her friend's hair.,beats the coffin with open fist.,\"grabs someone to his referees, then places the card in front of someone.\",runs down the rescued bank.,gold1-orig,unl,unl,unl,unl,unl,\"Someone scratches his balls as he eyes someone contemptuously, standing beside the team lined up for the national anthem.\",Someone\nlsmdc1058_The_Damned_united-98444,14172,\"Someone sings in the stands. On the pitch, someone\",remains tight - lipped.,is at another table where someone's hair curled.,\"does the same aerobic dance, back of his arms, dressed, tai its fun writhing.\",\"hurries to the telephone, sets out the fire and pulls out a slash, which begins.\",walks in the music.,gold0-orig,pos,unl,unl,unl,unl,Someone sings in the stands.,\"On the pitch, someone\"\nlsmdc1058_The_Damned_united-98444,14173,\"Someone smirks wryly as he locks looks with someone, who looks away imperiously. Someone\",\"salutes someone in the stands, who smiles back and touches his nose smugly.\",stands and watches him approach.,seems to be clearly like that for him.,sits at the top of a large prescription bottle and wipes some of the liquor from his mouth and back the remaining windows.,'s eyes move on his four younger men who sit next to them.,gold1-reannot,unl,unl,unl,unl,unl,\"Someone smirks wryly as he locks looks with someone, who looks away imperiously.\",Someone\nanetv_gPtpPiea0iQ,5649,The woman stands preparing to hammer throw. The woman,performs the hammer throw.,throw the ball upside down.,lifted the metal bar.,gives the woman a bath.,\"walks to the center and hits another man, as it runs in slow motion.\",gold0-orig,pos,unl,unl,unl,unl,The woman stands preparing to hammer throw.,The woman\nanetv_gPtpPiea0iQ,5652,The woman walks out of the netted area. The woman,raises her arm again.,hand at shoulder exposed knee.,pats a shower of a bathtub and picks out the raincoat with a pad.,adjusts the strap on a hairpin.,presses a button for the screen.,gold0-orig,pos,unl,unl,pos,pos,The woman walks out of the netted area.,The woman\nanetv_gPtpPiea0iQ,5650,The woman performs the hammer throw. The hammer,is seen landing with judges walking towards it.,turns around the javelin throw.,turns into each other.,\"bounces the balls, trying to catch the balls.\",drops to the ground.,gold0-orig,pos,unl,unl,unl,pos,The woman performs the hammer throw.,The hammer\nanetv_gPtpPiea0iQ,5648,A woman walks into a partially netted area. The woman,stands preparing to hammer throw.,darts down a long and swirling hoop between balls.,removes the shoes from the car.,uses a comb to secure the product.,shows off various shoes and load of bag with the equipment.,gold0-reannot,pos,unl,unl,pos,pos,A woman walks into a partially netted area.,The woman\nanetv_8EGM3zcvjs8,11394,\"Eight people are standing at the studio, one woman walked at the back of the group. The group\",\"started dancing, swirling, shaking their hips, rotating, their arms and hands are moving from side to side, in front.\",\"continues to play when the woman steps the news, followed by the camera showing the same thing.\",ends up shoving behind the woman.,continue practicing boxing with one another while still tying their laces.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Eight people are standing at the studio, one woman walked at the back of the group.\",The group\nanetv_mzewLmZSCMU,13743,A person is seen bending down on the floor followed by a ballerina jumping. Another person,is seen moving their body around in a costume afterwards.,flips on the beam while others watch on the sides.,is then seen holding places behind a log while still speaking to the camera and leads them taking objects down.,passes upstairs and leads into three women performing and jumping on the beam.,is seen speaking to the camera and moving across a blue mat using a set of weights.,gold0-orig,pos,unl,unl,unl,unl,A person is seen bending down on the floor followed by a ballerina jumping.,Another person\nanetv_mzewLmZSCMU,17918,Dancers are shown in clips performing. Deloitte Ignite 14 Myth advertisement,is shown on screen with a website address.,is in facebook columbia.,for an array of dance moves on the beach.,is leading the movie.,for the crowd and two people are walking to a stage with another piece.,gold0-orig,pos,unl,unl,unl,pos,Dancers are shown in clips performing.,Deloitte Ignite 14 Myth advertisement\nanetv_mzewLmZSCMU,13744,Another person is seen moving their body around in a costume afterwards. More dancers,are seen jumping around the stage.,struggle to split their hairstyles in sync of one pose with lunge.,turns around and ends with the website shown.,do something while people watch on the side.,begin seen dancing on the floor.,gold1-orig,pos,unl,unl,unl,pos,Another person is seen moving their body around in a costume afterwards.,More dancers\nanetv_mzewLmZSCMU,17917,The Royal Opera House appears on a black screen. Dancers,are shown in clips performing.,ricochet off his beer.,appear followed by another who struggle on his broom and gets inside.,are underwater with balloons at a cafe.,roll through a moving platform on the deck of the ship.,gold0-orig,pos,unl,unl,unl,unl,The Royal Opera House appears on a black screen.,Dancers\nanetv_ZbS9R9faBQk,11471,A plate is brought over to the stove. He,dishes out what was in the pan onto the plate.,don't make it up!,goes into the kitchen and dumps his fridge.,\"uses a spoon to block the flame, then grabs a knife.\",continues to stirs butter and flour in a basket and moves away.,gold0-orig,pos,unl,unl,unl,unl,A plate is brought over to the stove.,He\nanetv_ZbS9R9faBQk,11470,A man is stirring a pot on a stove. A plate,is brought over to the stove.,places meat in hand.,is shown on a plate.,is shown on the top of a low pot.,is next to him.,gold0-orig,pos,unl,unl,unl,pos,A man is stirring a pot on a stove.,A plate\nlsmdc1034_Super_8-8052,14623,\"Later, he puts out dog food. Clutching a script, he\",runs over to someone's house.,strolls in in someone's room.,goes into the hotel's room.,rushes through a house.,,gold1-reannot,pos,unl,pos,pos,n/a,\"Later, he puts out dog food.\",\"Clutching a script, he\"\nanetv_CjPN7fw0B48,17356,A man is mowing the yard up and down. He then,mows the yard sideways.,starts raking up a driveway in front of him.,shows how to use a paintbrush to hit the mulch.,swings the mower over and over on the ground.,takes off the rake to do style.,gold0-orig,pos,unl,unl,unl,unl,A man is mowing the yard up and down.,He then\nanetv_CjPN7fw0B48,8716,The man walks across the mowed lawn and sits on a bench. The man,stands and walks back across the lawn.,leaves with a cloth over his neck.,\"starts to speed the riding mower with his brush, trying to bite along.\",trims the hedges on the hedges.,steps trimming the hedge.,gold0-orig,pos,unl,unl,unl,unl,The man walks across the mowed lawn and sits on a bench.,The man\nanetv_CjPN7fw0B48,8715,A man mows his lawn while being filmed from a high angle in a sped - up video. The man,walks across the mowed lawn and sits on a bench.,continues to push the mower while others try to cut it off the grass.,uses the razor to scrape some of the parts of the roof when two people fold the camera out.,continues to clean the shirt by again describing what the routine is over.,walks on the snow with two dogs buried in the yard.,gold1-orig,unl,unl,unl,unl,unl,A man mows his lawn while being filmed from a high angle in a sped - up video.,The man\nanetv_CjPN7fw0B48,17355,A backyard is shown between a wooden fence. A man,is mowing the yard up and down.,is seated beside a hedge on the corner of a building.,shovels a long bush and mulch.,stands up and starts styling the grass as he rakes it out.,is standing at the top of a hedge.,gold0-orig,pos,unl,unl,unl,pos,A backyard is shown between a wooden fence.,A man\nanetv_g4OlXwjgwSs,8721,People are standing around watching him. He,launches the ball onto the field.,turns and looks up at someone.,is drinking a mug of coffee.,throws the ball and makes pucks.,starts hitting the ball with a stick.,gold1-orig,pos,unl,unl,unl,pos,People are standing around watching him.,He\nanetv_g4OlXwjgwSs,8720,A man in a red jersey spins around and throws a ball onto the field in front of him. People,are standing around watching him.,see different techniques of horses on the field.,get to four feet tall while the other men kick and hold back.,run up the middle street.,,gold1-orig,pos,unl,unl,unl,n/a,A man in a red jersey spins around and throws a ball onto the field in front of him.,People\nanetv_g4OlXwjgwSs,11109,We see the mans feet and his knees as he extends his arm. We,see a closing title screen.,see a front canoe on the landscape.,see scissors before starting to fall into frame.,see back and motion on his feet and falls rhythmically.,,gold0-reannot,pos,unl,unl,unl,n/a,We see the mans feet and his knees as he extends his arm.,We\nanetv_g4OlXwjgwSs,11108,We see the man's leg swing analyzed and the shoulder position. We,see the mans feet and his knees as he extends his arm.,see the lady fighting down lady.,see the man swing up back and the boy throws each ball.,\"jump then and the lady comes back, demonstrating.\",,gold0-reannot,pos,unl,unl,unl,n/a,We see the man's leg swing analyzed and the shoulder position.,We\nanetv_8xsLp6lqijo,1945,He picks up the skateboard and holds it in his hand. He,puts the skateboard back down and continues skateboarding.,\"leaves the cart by the man, half the man in the background.\",begins to jump up on a beam and back it on his skateboard.,then gets his feet off the skateboard.,\"rides down a highway, along with a young man and two children.\",gold1-orig,pos,unl,unl,unl,pos,He picks up the skateboard and holds it in his hand.,He\nanetv_8xsLp6lqijo,1944,A man is standing on a skateboard. He,picks up the skateboard and holds it in his hand.,starts performing several tricks in a rice field.,begins doing a gymnastics routine on the balance beam.,begins to spin around as like the disc repeatedly.,is going down a bike race.,gold1-orig,pos,unl,unl,unl,unl,A man is standing on a skateboard.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59787,16001,Fire writing emerges on the plain band of gold. The one ring,falls through space and into flames.,increasing dust around the hall.,holds their goblet guns.,reaches for his peace as people above him.,,gold0-orig,pos,unl,unl,unl,n/a,Fire writing emerges on the plain band of gold.,The one ring\nlsmdc3040_JULIE_AND_JULIA-17952,8013,\"The sisters hook pinkies, tap their thumbs together, then wiggle their hands away. Someone\",playfully taps someone on the nose.,lowers an arm as he carries them by the lake.,rushes onto the dining stage.,juts out her cheeks as she watches.,,gold1-orig,unl,unl,unl,unl,n/a,\"The sisters hook pinkies, tap their thumbs together, then wiggle their hands away.\",Someone\nanetv_Eq0Ibnq9sYA,2319,A woman is seen pushing a puck along some ice followed by people brushing ice with brooms in front of the puck. They,continuously brush and end the puck in a circle and ends with the woman speaking to the others.,is shown speaking in the same shots as well as working out on an ice rink as well as hitting a switch.,continues to the play of the game as well as decorating.,continue blowing the sticks in a pit during a game of lacrosse in the end.,continue to push the pucks with the puck and continues mixing a pucks around with a brush.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen pushing a puck along some ice followed by people brushing ice with brooms in front of the puck.,They\nanetv_Khxa5Ey3udM,2069,\"A person is inside a lawn mower parked near a field. Then, the person\",turn on the machine and mows a field.,hands over the person to cut grass.,spots a couple enveloped and people image on the screen.,is kicking a leaf blower across the yard.,mows the lawn on the lawn mower dog.,gold0-orig,pos,unl,unl,unl,unl,A person is inside a lawn mower parked near a field.,\"Then, the person\"\nanetv_hyv8OkQcgEA,6555,\"Then, a man explains how to operate a leaf blow machine while men continue blowing the leaves. Another man\",explains while other men vacuum and blows leaves.,takes out the sheet and holds utensils by his hands.,\"in a black hat speaks to the camera when the man enters, raises a gun and walks on the street.\",\"comes to the veranda, blowing the leaves and muscle so it work.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Then, a man explains how to operate a leaf blow machine while men continue blowing the leaves.\",Another man\nanetv_hyv8OkQcgEA,6554,\"Men blows dead leaves pushing a leaf blower machine on the ground or holding a machine on the back. Then, a man\",explains how to operate a leaf blow machine while men continue blowing the leaves.,is in a backyard talking to the camera and trying in a final yard house.,watch a dog run into the center of the jungle with the hose help to push leaves.,is applying another juvenile when another person is shown a shovel standing near the.,walks in the street next to the mower while a dog runs and mows the grass are they viewers.,gold0-orig,pos,unl,unl,unl,unl,Men blows dead leaves pushing a leaf blower machine on the ground or holding a machine on the back.,\"Then, a man\"\nanetv_jlqC3lFqxhQ,8159,The video then goes into numerous various different segments of a bunch of different people snowboarding while doing tricks either in the daytime or nighttime and at various different locations. The outro,goes to gray and then fade to black.,appears with a logo over information and various names from heights appear with shown on the screen inside.,is shown at a local.,flashes to the chinese female logo.,appears in the screen showing participants including a headphone talking.,gold1-orig,pos,unl,unl,unl,pos,The video then goes into numerous various different segments of a bunch of different people snowboarding while doing tricks either in the daytime or nighttime and at various different locations.,The outro\nanetv_wtoKUYBw9f4,224,The lady then perform her high jump and stands and jumps and pumps her arms. We,see a replay of the jump.,see her counts and the lady who shifts the body of the coach again.,see the man finish and the lady lassos and ties his hair.,see the barman following her while the girl continues dancing.,see a blue closing screen and we see the men practicing flips.,gold0-orig,pos,unl,unl,unl,pos,The lady then perform her high jump and stands and jumps and pumps her arms.,We\nanetv_wtoKUYBw9f4,15990,\"She gets into a position, then runs. She\",vaults over a pole onto a mat.,calls the city as she goes across the river and stops to climb on the tree.,continues to kick the other onto the mat.,does one more dive as they skateboard.,flips back and forth while the crowd claps.,gold0-orig,pos,unl,unl,pos,pos,\"She gets into a position, then runs.\",She\nanetv_wtoKUYBw9f4,222,We see an opening title screen. We,see a lady standing on a track with a score screen showing.,see a graph on stage.,see a helicopter that we should grabs.,see a title screen.,see a lady with a boarders.,gold1-orig,pos,unl,unl,unl,unl,We see an opening title screen.,We\nanetv_wtoKUYBw9f4,15989,A female track athlete stands on the tracks. She,\"gets into a position, then runs.\",bows and falls into view.,runs on her javelin lands and lands in a pile of sand.,rides on the skateboard tricks and performs gymnastics jump.,sets with a athlete with blue words on.,gold0-orig,pos,unl,unl,unl,unl,A female track athlete stands on the tracks.,She\nanetv_wtoKUYBw9f4,223,We see a lady standing on a track with a score screen showing. The lady,then perform her high jump and stands and jumps and pumps her arms.,performs and then puts a couple of miniature bottles off the bar and walks towards her.,frowns as her teammates dismount another run.,stands next to the blue horse while standing in the grass speaking to the youth in his enclosure.,clips an arrow and runs through a pole.,gold0-orig,pos,unl,unl,unl,unl,We see a lady standing on a track with a score screen showing.,The lady\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9312,\"Steel supports are ripped away. The remaining supports give way, and the bridge\",crashes into the murky waters of the thames.,\"passes apart, staying just halfway through.\",\"broke free, filled by the snitch cloud of powder.\",shows the boxer in the left.,supports further into the window.,gold0-orig,pos,unl,unl,unl,unl,Steel supports are ripped away.,\"The remaining supports give way, and the bridge\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9309,\"People lie injured, as the People emerge from the shop, one holding a man with a bag over his head. The third\",\"has a long, thin face and a beard.\",picks up a coat that he has taken from his vest and it tails the room in place.,sounds a light move and the man just takes a split as someone fires the mask.,guard looks away as someone scrambles to his feet and leaps over a building.,\"man, someone, throws backwards into someone's face.\",gold0-orig,pos,unl,unl,unl,unl,\"People lie injured, as the People emerge from the shop, one holding a man with a bag over his head.\",The third\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9310,\"The third has a long, thin face and a beard. They\",\"zoom away, and weave over and under the millennium bridge.\",\"switches on a feathery on but slowly to infant that, gets out of the drip, spreading his legs helplessly as he cuts.\",crunches floor twirling books in one and liner.,see a riders shuffle ballet then the man are dressed in their final process.,exchange a look as it leads away into the night.,gold0-orig,pos,unl,unl,unl,pos,\"The third has a long, thin face and a beard.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9307,\"The staff on one of the upper floors gather at the windows, and look out in alarm, as the menacing clouds drift ever closer. They\",\"billow forward in the shape of a skull, from which three dark trails of smoke appear.\",\"settle in, we are seen leaving the conversation, as they stare up each other as they walk in the room.\",sweeps a corner of the pipe to the head of the ship which vanishes as the ship breaks into flames.,\"eyes the ramp, where someone and someone climbed together and put an alien in the back.\",see a poster of someone on his black hood bed.,gold0-orig,pos,unl,unl,unl,unl,\"The staff on one of the upper floors gather at the windows, and look out in alarm, as the menacing clouds drift ever closer.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9306,\"Reflected in the glass of a tall office building, the brooding storm clouds settle over the City of London. The staff on one of the upper floors\",\"gather at the windows, and look out in alarm, as the menacing clouds drift ever closer.\",go through the front window.,has huge windows of exposed debris and a wooden ceiling.,begin to follow and crawl away.,follow the search team out.,gold0-orig,pos,unl,pos,pos,pos,\"Reflected in the glass of a tall office building, the brooding storm clouds settle over the City of London.\",The staff on one of the upper floors\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9311,\"It tilts and sways, flinging people against the parapets. They\",\"cling on, desperately.\",are kayaking in the bombed gothic tower.,screech one closer to strike as people from the center have stopped.,hide their complexion at dark.,\"a tommy hand, someone solves the puzzle, and gently moves back to himself before stepping up.\",gold1-orig,pos,unl,unl,unl,unl,\"It tilts and sways, flinging people against the parapets.\",They\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72043,9308,\"They sweep up Charing Cross Road, moving swiftly past Leicester Square tube station. Traveling down narrow alleys, back streets, and through solid walls, they\",\"hurtle into diagon alley, where they swoop into a shop.\",watch from inside a building as the plane grows smaller.,see their arms and wave at someone's group.,stop with a harsh look of sunlight on the top.,,gold0-reannot,pos,unl,unl,pos,n/a,\"They sweep up Charing Cross Road, moving swiftly past Leicester Square tube station.\",\"Traveling down narrow alleys, back streets, and through solid walls, they\"\nanetv_GYh4XH7jUL4,10652,A person dives off a board into a pool. They,come up from under the water.,go in the choppy water and snowboards through the ocean.,are pulled along the sides of the water.,are preparing to fire.,continue at the river.,gold0-orig,pos,unl,unl,unl,unl,A person dives off a board into a pool.,They\nanetv_L0arB1mOuSE,15730,Several clips of shown of people playing kickball against one another in a large field. Several clips,\"are shown of people running around, catching and throwing the ball, as well as partying on the side.\",are shown of people performing passages as well as holding a hat and speaking to one another.,are shown of people celebrating and celebrating in several locations.,are then shown of animals playing and ends by them walking around shoveling.,,gold0-orig,pos,unl,unl,pos,n/a,Several clips of shown of people playing kickball against one another in a large field.,Several clips\nlsmdc0027_The_Big_Lebowski-62846,1435,People walk to someone's car. As the two men,get into the car.,slides down a quiet street.,\"are getting harnessed together, people switch toward someone.\",\"shake hands, someone approaches.\",come out of view.,gold1-orig,pos,unl,unl,pos,pos,People walk to someone's car.,As the two men\nanetv_f4CSejhkTd8,14548,\"Woman is doing exercise in diferent machines like rowing, eliptical and legs machine and lifting weight. the man keeps talking to the camera in a small gym room in front of a mirror and the woman\",is doing exercise in the elliptical machine.,mixes the lotion all together and then demonstrates how to play.,overlaid while talking over to the machine and asking incredulously to turn.,is pulled around a pair of exercise caps on how to do and take them apart.,put a metal hula in a machine in the middle with the elliptical.,gold0-orig,pos,unl,unl,unl,pos,\"Woman is doing exercise in diferent machines like rowing, eliptical and legs machine and lifting weight.\",the man keeps talking to the camera in a small gym room in front of a mirror and the woman\nanetv_f4CSejhkTd8,9784,A man and woman are seen speaking to the camera and leads into several clips of people working out. The two,are seen speaking again and shows a close up of a machine.,continue riding on the puck while pausing to look off into the distance.,continue moving around and end by speaking to the camera and holding up a circle.,begin running around hitting one another and smiling with one another.,continue moving along the water and stopping in the end.,gold1-orig,pos,unl,unl,unl,pos,A man and woman are seen speaking to the camera and leads into several clips of people working out.,The two\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16303,Someone and someone fight desperately with someone gaining the upper hand. She,throw the hunter to the ground and crouches over her with a weapon.,swipes the bug in her own's chest and hugs him at the back of the boat.,ducks as the group gets ready to leave.,frees someone from the press then puts fire at the angry man's other hand.,walks outside with her eyes drawn and someone is still down as she dashes off.,gold0-orig,pos,unl,unl,unl,pos,Someone and someone fight desperately with someone gaining the upper hand.,She\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16298,Someone pulls apart one of someone's bindings. Someone,\"wraps a chain around her fist and charges someone, knocking her to the ground.\",yanks it off of the wrapping paper.,\"climbs out of the bed and sits up, listening.\",views another monitor and someone.,plucks the gun away.,gold0-orig,pos,unl,unl,unl,pos,Someone pulls apart one of someone's bindings.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16302,Someone grabs some weapons and runs to join the fray. Someone and someone,fight desperately with someone gaining the upper hand.,peel around the room.,huddle around the croupier's alcove.,bundle the money in their hands.,make their way to the dais where the musicians are toward them holding the poles.,gold1-orig,unl,unl,unl,pos,pos,Someone grabs some weapons and runs to join the fray.,Someone and someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16300,Someone turns to help someone but is confronted by siamese twin witches joined at the back. The duo,attacks him ferociously with long blades.,helps someone down along a subway platform.,trot as they race past the gravestones in the mountains edge.,move their knees rhythmically.,,gold0-orig,pos,unl,unl,pos,n/a,Someone turns to help someone but is confronted by siamese twin witches joined at the back.,The duo\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16304,Someone grabs the knife hand and the two struggle for dominance. The sun,starts to rise over the horizon.,falls on the screen then cuts underneath the house.,glides over the night white sky setting.,has finally stopped the shadow of the boy's door.,shines on the man's hut.,gold0-orig,pos,unl,unl,unl,pos,Someone grabs the knife hand and the two struggle for dominance.,The sun\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16295,Right as the horned - witch is about to execute a little girl. Someone,shoots her in the abdomen.,goes to the steps and slaps a thug's hand.,does so and then runs across an open platform.,stops and looks back into the street.,takes a timing breath and makes her way back onto the platform.,gold1-orig,pos,unl,unl,unl,unl,Right as the horned - witch is about to execute a little girl.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16301,The duo attacks him ferociously with long blades. Someone,grabs some weapons and runs to join the fray.,sits at his side with the boarder talking as he goes.,leads him toward the front fence of the train on the high moving tower as they climb.,goes to the backstage room as a teacher finds him.,\"lays him flat on the ground, listening to himself remembering the excited expression.\",gold0-orig,pos,unl,unl,unl,unl,The duo attacks him ferociously with long blades.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16294,Someone blocks her advance and knocks the witch aside. Right as the horned - witch,is about to execute a little girl.,morphs into the witch she tears up snowy.,prepares to fairy the spell into his gun.,\"turns on, it lights a pile of black smoke.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone blocks her advance and knocks the witch aside.,Right as the horned - witch\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16312,They head for the trees with the wires stretched between them. Someone,comes to a halt in front of the trap and starts in another direction.,grabs the keys by the barred security guard.,emerges to peace and screws up the shield before taking off his lights.,lands in a clearing and runs to catch them.,,gold0-orig,pos,unl,unl,pos,n/a,They head for the trees with the wires stretched between them.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16293,Just as someone is about to strike someone. Someone,blocks her advance and knocks the witch aside.,stares at someone as they continue on.,is walking in her direction.,head back to watch.,,gold0-orig,pos,unl,unl,unl,n/a,Just as someone is about to strike someone.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16311,\"In the forest, someone follows two other witches on their brooms. They\",head for the trees with the wires stretched between them.,ride a web way.,\"float a chain into someone's vest, then absorbs it.\",are riding up to the additional couple of them.,,gold1-orig,unl,unl,unl,unl,n/a,\"In the forest, someone follows two other witches on their brooms.\",They\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16291,Someone shoots the attacking witch in the back. Someone,jumps out of hiding.,runs across the dirt and flees to the rest of the house.,unleashes a furious fire.,summons the breath and kicks her in the air.,lands on the back of his motorcycle as shadowfax climbs into the transport.,gold1-orig,pos,unl,unl,unl,unl,Someone shoots the attacking witch in the back.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16307,Someone throws a twin crossbow to someone who catches it. She then,\"picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces.\",\"retreats, her skeleton is lifted into a sling.\",runs for easily extension him to a window.,runs down on the horse and wrenches it free.,ax the trunk and grabs someone's arm.,gold0-orig,pos,unl,unl,pos,pos,Someone throws a twin crossbow to someone who catches it.,She then\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16314,He looks over his shoulder eyeing her approach. He,\"lifts the rifle, takes careful aim and fires.\",slaps it from someone's hand.,\"runs down a walkway towards a long, long dark corridor and down.\",nervously turns his surfboard at someone and spits his tie around someone's feet.,stamps the file and opens.,gold0-orig,pos,unl,unl,unl,unl,He looks over his shoulder eyeing her approach.,He\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16309,But he takes them out with a swing of his foot. Someone,approaches with her crossbow.,continues for the next number.,covers himself with a blanket.,watches someone's body as the teacher struggles with him.,,gold1-orig,pos,unl,unl,pos,n/a,But he takes them out with a swing of his foot.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16292,The spiky - haired witch gathers the children. Just as someone,is about to strike someone.,turns their off and carries him to a doorway.,places someone's hand on it quickly reach his throat.,brings a horse to a bedside cabinet.,\"passes, people flee.\",gold0-orig,pos,unl,unl,unl,unl,The spiky - haired witch gathers the children.,Just as someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16308,\"She then picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces. But he\",takes them out with a swing of his foot.,\"backs grabs her, and bites her on the throat as he sneezes!\",continues wrapping and pushes her around the musical piece as the chains flies away.,\"begins, screaming, gasping for breath.\",,gold0-orig,pos,unl,unl,pos,n/a,\"She then picks up a spiky chain and lassoes at around the abdomen of a fleeing witch, who then explodes into tiny pieces.\",But he\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16296,Someone shoots her in the abdomen. She,collapses to the ground and looks up as someone takes aim at her head.,tosses the invisibility cloak over him.,someone kisses buttons.,swoops down to new knees again.,,gold0-orig,pos,unl,unl,unl,n/a,Someone shoots her in the abdomen.,She\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16313,Someone comes to a halt in front of the trap and starts in another direction. He,looks over his shoulder eyeing her approach.,kicks off the policeman as he stumbles again.,cuts through the haze of wood light.,picks up a narrow path towards some water which is driving across the narrow fields of water.,puts one eye in the road and gives a worried look.,gold0-reannot,pos,unl,unl,unl,unl,Someone comes to a halt in front of the trap and starts in another direction.,He\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16299,Someone frees the children from their fetters. Someone,swings at someone with a knife.,tries to prop her ass in the handicapped spot.,points at her open knee with their swords.,appears in the driving.,continues and looks at his coaches.,gold0-reannot,pos,unl,unl,unl,unl,Someone frees the children from their fetters.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16297,She collapses to the ground and looks up as someone takes aim at her head. Someone,pulls apart one of someone's bindings.,\"smiles, lifts her eye.\",turns back with her smoke.,looks up from the page as she moves out.,,gold0-reannot,pos,unl,unl,unl,n/a,She collapses to the ground and looks up as someone takes aim at her head.,Someone\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1935,16306,Someone headbutts someone who staggers away. Someone,throws a twin crossbow to someone who catches it.,\"peeks around, then cautiously climbs into the high stone rooftop.\",watches with a mounting serious dutifully.,\"stumbles backwards, snapping him into a hug.\",puts her hand over hers.,gold0-reannot,pos,unl,unl,unl,pos,Someone headbutts someone who staggers away.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14619,\"As someone follows her, someone returns his gaze to the amphitheater and knocks on a rock wall. Someone\",follows someone out among the ruins.,regards the penguin curiously.,shifts his gaze as he walks through the open - plan office.,confronts them as he closes the door.,pauses and looks down.,gold1-orig,pos,unl,unl,pos,pos,\"As someone follows her, someone returns his gaze to the amphitheater and knocks on a rock wall.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14615,\"The guards leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes. Someone\",\"faces his acolytes then raises both arms, gesturing for them to rise from their seats.\",style bows hangs at their side.,\"stands with someone and someone, carrying two dogs.\",wins and put them at the necks of the tuxedo.,,gold0-orig,pos,unl,pos,pos,n/a,\"The guards leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14613,\"At dusk above the darkened horizon, scattered clouds roll across the sky. At night, spotlights\",illuminate the ancient amphitheater as someone's guards walk someone out on stage.,fly through the desert of minas.,gaze across the water as the stars rise overhead.,spin on the streets of chicago los transportation.,hover over the facades of roof capturing parts dangling from a giant tree stump.,gold0-orig,pos,unl,unl,unl,pos,\"At dusk above the darkened horizon, scattered clouds roll across the sky.\",\"At night, spotlights\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14612,\"They watch the guests convene outside. At dusk above the darkened horizon, scattered clouds\",roll across the sky.,drift in the sky below.,drift toward that orange ans fiery blaze that's sun engine in its midst.,\"float through clouds, forming mountains in the distance towards them.\",rise over the horizon.,gold0-orig,pos,unl,unl,unl,pos,They watch the guests convene outside.,\"At dusk above the darkened horizon, scattered clouds\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14620,Someone follows someone out among the ruins. He lays his hand on her shoulder and she,\"meets his gaze, fidgeting anxiously.\",swings off her bracket.,rests his head on her shoulder.,\"meets him, then turns and faces him.\",pulls on her blouse.,gold0-orig,pos,unl,unl,unl,pos,Someone follows someone out among the ruins.,He lays his hand on her shoulder and she\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14616,\"Someone faces his acolytes then raises both arms, gesturing for them to rise from their seats. Someone\",lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down.,lowers wearing eyes and presses his fist to a wooden railing.,jumps onto the bridge.,looks up at the balled - faced boy and gently stretches out his hands.,is still talking to someone.,gold0-orig,pos,unl,unl,pos,pos,\"Someone faces his acolytes then raises both arms, gesturing for them to rise from their seats.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14614,\"At night, spotlights illuminate the ancient amphitheater as someone's guards walk someone out on stage. The guards\",\"leave the boy kneeling before the guests who sit in six uniform sections, all wearing black robes.\",lock regain their strength and break their embrace passionately.,get down fighting in the same alley but finds one fall of the carriage.,\"approach someone, who maintains a tense pose as the destroyer's head sinks upward.\",\"move into the edge of the hall and someone climbs over a ledge, along with a title leading to a black dresser.\",gold1-orig,pos,unl,unl,unl,unl,\"At night, spotlights illuminate the ancient amphitheater as someone's guards walk someone out on stage.\",The guards\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13138,14617,Someone lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down. Someone,\"lowers her worried gaze, sets down her rifle, and heads off.\",\"is left alone, with his lips break in a faint smile as he whirls a tool for them.\",hands it to someone.,nods to him.,shifts his gaze and nod happily.,gold1-reannot,pos,unl,unl,pos,pos,Someone lowers his arms and sets his maniacal gaze on someone who remains on his knees rocking side to side with his head down.,Someone\nanetv_kIIAJsYMjyc,13210,A man is seen sitting on the floor and jumping to a standing position. he then,goes back in to a kneeling position and jumps to his feet again.,begins playing the instrument while pausing to speak to the camera.,moves all around the end and end by laughing while others walking around him.,walks around a gym and leads out onto a mat.,balances back and fourth on the mat.,gold0-orig,pos,unl,unl,unl,unl,A man is seen sitting on the floor and jumping to a standing position.,he then\nanetv_kIIAJsYMjyc,13211,He then goes back in to a kneeling position and jumps to his feet again. The same man,does this two more times.,falls to the mat while the camera holds out his hand.,walks over to the barbell while the other uses a few hands to help him up.,'s play is repeated in slow motion as part of the things he did.,,gold0-orig,pos,unl,unl,pos,n/a,He then goes back in to a kneeling position and jumps to his feet again.,The same man\nlsmdc3068_THE_BIG_YEAR-3633,3395,\"Sitting in an airport shuttle, he eyes his phone. Its display\",shows the photos of a smiling someone holding his grandson.,\"reads, '11 months later.\",pages sit in a facility.,shows the clock with a 12 - an answers it.,shows a mocha - skinned gentleman in a short skirt.,gold1-orig,pos,unl,unl,unl,unl,\"Sitting in an airport shuttle, he eyes his phone.\",Its display\nlsmdc3068_THE_BIG_YEAR-3633,3396,Its display shows the photos of a smiling someone holding his grandson. Someone,grins as he sees someone at the ferry terminal.,\"reflected on the white screen, someone mocks him as his mohawk fills his girlfriend's face.\",\"walks across the lobby, where a trio from one man wears a matching costume.\",lays asleep on the table in front of him.,helps the sumo.,gold1-reannot,pos,unl,unl,unl,unl,Its display shows the photos of a smiling someone holding his grandson.,Someone\nlsmdc3068_THE_BIG_YEAR-3633,3397,Someone grins as he sees someone at the ferry terminal. Someone,approaches with a hand cupped to his ear.,is working on sketches while holding a plastic computer.,opens his pants and pulls out a set of keys.,\"glides along another ledge of a second marine, who practices the stolen convention.\",\"flings his hands in the air to his chest, then lifts wide with his sword.\",gold1-reannot,pos,unl,unl,unl,unl,Someone grins as he sees someone at the ferry terminal.,Someone\nanetv_EZKrOWEKX_Q,19010,The person crashes and falls into the water. A wave,crashes over a person surfing.,walks to the side of the boat.,pours over the water.,falls on the ocean.,erupts past the water.,gold0-orig,pos,unl,pos,pos,pos,The person crashes and falls into the water.,A wave\nanetv_EZKrOWEKX_Q,15317,The title appears over the wave. We,see surfers riding waves in the ocean.,medium land and the teenagers swim beside the yellow helicopter examiner on the beach behind the white boat.,be city fans roll up and down the street with a blowing sky.,\"approaches the red land playing house, where a man holds a dodge ball in the backyard then he runs around the field.\",see people laughing and riding a bike ski.,gold0-orig,pos,unl,unl,unl,pos,The title appears over the wave.,We\nanetv_EZKrOWEKX_Q,19009,People are surfing on large waves in the water. The person,crashes and falls into the water.,rides on a tight wave while they surf back into the water.,gets pulled and waves off the beach.,dives into the water in a black hatchback.,,gold0-orig,pos,unl,unl,unl,n/a,People are surfing on large waves in the water.,The person\nanetv_EZKrOWEKX_Q,15316,\"A large, blue wave is seen. The title\",appears over the wave.,shows men skiing down a hill.,seems to be wakeboarding in the sky.,appears onto the screen.,,gold1-orig,pos,unl,unl,pos,n/a,\"A large, blue wave is seen.\",The title\nanetv_EZKrOWEKX_Q,15320,A man escapes being overcome by a wave. A man,stands on the shore.,stands at the far end of the pool.,lulls on a side up walks across and creeps off around the dirt track.,is swimming in the river.,,gold0-orig,pos,unl,unl,pos,n/a,A man escapes being overcome by a wave.,A man\nanetv_EZKrOWEKX_Q,15319,A man is engulfed by a wave. A man,escapes being overcome by a wave.,is dozing in chain points in the lake.,removes a large three white and brown fish from the ground.,begins clapping at the side on the ground.,,gold0-orig,pos,unl,unl,unl,n/a,A man is engulfed by a wave.,A man\nanetv_EZKrOWEKX_Q,15318,We see surfers riding waves in the ocean. A man,is engulfed by a wave.,rides a man on an escalator.,holds a woman on pushing him in.,gestures his sail with a boat.,touches a heart on the ocean.,gold0-orig,pos,unl,unl,unl,unl,We see surfers riding waves in the ocean.,A man\nanetv_86sxvTk3YEY,7478,\"An actor, Jason Stathom, is sitting in a blue reclining chair talking a late night tv host by the name of Jimmy Fallon who is sitting behind a desk. The two continue to speak then they both\",stand up in a joking manner and walk over to a table.,move up and down on the table.,do some steps in the street.,have a coconut and a sponge and they put it together again and arrive at the shirt.,stop dancing together when waving their hands over their ears.,gold1-orig,pos,unl,unl,unl,unl,\"An actor, Jason Stathom, is sitting in a blue reclining chair talking a late night tv host by the name of Jimmy Fallon who is sitting behind a desk.\",The two continue to speak then they both\nanetv_86sxvTk3YEY,7480,\"They both stand at the ends of the table and begin arm wrestling and talking. After a long period of time passes, the actor\",wins and starts cheering for himself.,\"is left, interviewing a replay.\",awards snorts in his hair.,is boiling in and black and green does it.,\"makes his hammer, another boy is unable to solve the cube.\",gold0-orig,pos,unl,unl,unl,unl,They both stand at the ends of the table and begin arm wrestling and talking.,\"After a long period of time passes, the actor\"\nanetv_86sxvTk3YEY,7479,The two continue to speak then they both stand up in a joking manner and walk over to a table. They both,stand at the ends of the table and begin arm wrestling and talking.,stand at a table in a small room with the measuring cups.,take a sip from the camera again.,take a swig of wet beer and then hurry to the center of the table.,\"stop, and begin to practice moving it off stage.\",gold0-orig,pos,unl,unl,unl,unl,The two continue to speak then they both stand up in a joking manner and walk over to a table.,They both\nanetv_9-XGzUTSsuI,5695,While talking the man is also doing arm and leg movements and the camera is zoomed out to show his whole body. When the man is done the same blue screen from the beginning,appears and ends with the same white screen with the green ehow written in the middle.,has two tattoos on his left hand with a tattoo on his leg.,seems to be getting a tattoo on her foot.,is shown in slow motion.,,gold0-orig,pos,unl,unl,pos,n/a,While talking the man is also doing arm and leg movements and the camera is zoomed out to show his whole body.,When the man is done the same blue screen from the beginning\nanetv_9-XGzUTSsuI,5694,\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he's a Personal Trainer. While talking the man is also doing arm and leg movements and the camera\",is zoomed out to show his whole body.,regretfully and and some engages demonstrating a top type in his blue hand.,puts back on to a female competitive workout.,lifts his feet and lifts it to his chest.,changes to him coaching close up in cheerleading technique.,gold0-reannot,pos,unl,unl,unl,pos,\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he's a Personal Trainer.\",While talking the man is also doing arm and leg movements and the camera\nanetv_9-XGzUTSsuI,5693,\"A white screen appears and green letters appear in the middle of the screen and read eHow and changes to a blue screen that has a large white word that reads health under a small white square that contains the green eHow. A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he\",'s a personal trainer.,is writing on it.,'s talking offscreen to a mat.,stops playing and gives a gun.,grimaces on the occasion.,gold0-reannot,pos,unl,unl,unl,unl,A white screen appears and green letters appear in the middle of the screen and read eHow and changes to a blue screen that has a large white word that reads health under a small white square that contains the green eHow.,\"A man wearing athletic clothing is standing in an indoor gym doing some fighting exercises and when he stops to talk, a banner on the bottom left say his name is Steve Hess and he\"\nanetv_RseCMmSvcPY,15261,A close up of a pool table is seen when two girls walk into frame holding sticks. The girls,speak to one another while pointing to the table.,continue kicking wrestle while laughing into one another and running into a shot.,discuss in one pan and bend with one another while others watch on the sides.,go back and fourth and hit one another.,continue to swim around the pool.,gold0-orig,pos,unl,unl,unl,unl,A close up of a pool table is seen when two girls walk into frame holding sticks.,The girls\nanetv_RseCMmSvcPY,10093,The people then begin playing a game of pool with one another. The two continue playing and one,hits the other with a stick.,throw his one on the other.,wins the little one with the other.,person talking to the camera.,game hits the hit left.,gold1-orig,pos,unl,unl,unl,unl,The people then begin playing a game of pool with one another.,The two continue playing and one\nanetv_RseCMmSvcPY,10092,A close up of a pool table is shown when two people walk into frame. The people then,begin playing a game of pool with one another.,begin hitting a wall with rackets with one another.,leads back playing ping pong and grabbing one another.,begin performing martial arts and throwing hoops to one another.,begin dancing with one another and looking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A close up of a pool table is shown when two people walk into frame.,The people then\nlsmdc3078_THE_WATCH-36504,4546,\"As an alien lunges forward, a shot blasts open its groin. Someone\",takes out another creature.,ads a glove while ready to fight.,lurches to a halt.,\"turns as the soldier launches into the air, sending him knees down on the base of his leg.\",shakes his forward releasing someone then releases someone and covers himself up.,gold0-orig,pos,unl,unl,unl,unl,\"As an alien lunges forward, a shot blasts open its groin.\",Someone\nlsmdc3078_THE_WATCH-36504,4548,Someone shoots the alien and someone kicks it off. The guys,\"climb out from the basement, then tip over a refrigerator, slamming the grate over another alien.\",aim shots at the ash giants escape tables.,fall to their knees.,punch him in the shin.,look at him unhappily.,gold0-orig,pos,pos,pos,pos,pos,Someone shoots the alien and someone kicks it off.,The guys\nlsmdc3078_THE_WATCH-36504,4547,\"Someone takes out another creature. In slow motion, someone\",\"tosses his pistols, then draws a single revolver.\",tosses someone's hand in the jet.,spoons the shotgun to his ear and breathing blocks.,stands on the swing at the curb.,,gold1-orig,pos,unl,unl,unl,n/a,Someone takes out another creature.,\"In slow motion, someone\"\nlsmdc3078_THE_WATCH-36504,4542,The meter shows a lessening of power and the overhead amber lights go out. Dozens of aliens,\"emerge from the tunnels, crawling on all fours.\",shine into a lift on the tarmac.,lie on top of the silver timekeeper ships.,drift slowly through the spiraling like carved columns.,\"walk past, leading to one of the tables.\",gold0-orig,pos,unl,unl,unl,pos,The meter shows a lessening of power and the overhead amber lights go out.,Dozens of aliens\nlsmdc3078_THE_WATCH-36504,4555,\"The guys sprint for the security door as it lowers. Before the door closes completely, they all\",slide underneath and into the parking lot.,turn to look up at the crashing theater.,start off the hinges.,\"look, find nothing but throws off.\",walk toward the camera face again.,gold0-orig,pos,unl,unl,unl,unl,The guys sprint for the security door as it lowers.,\"Before the door closes completely, they all\"\nlsmdc3078_THE_WATCH-36504,4550,\"As they run through the store, the alien reaches through the grate. A smoky blast\",launches the refrigerator across the room.,hits the floor as two bartenders are standing on either side.,reveals dingy buildings stationed beneath them.,cuts across the ship's walls.,hits the floor then races off.,gold0-orig,pos,unl,unl,unl,unl,\"As they run through the store, the alien reaches through the grate.\",A smoky blast\nlsmdc3078_THE_WATCH-36504,4552,\"The aliens scramble out of the basement, then race across the store, knocking over lawn furniture. The guys\",\"continue their dash to the exit, someone keeping hold of the orb.\",cross the street and shoot the street until u - end lane highway.,stare as someone boats headlights drive across the wreckage.,pick up someone into a bag.,\"scour someone a auction, troopers, and slam them around a car.\",gold0-orig,pos,unl,unl,unl,unl,\"The aliens scramble out of the basement, then race across the store, knocking over lawn furniture.\",The guys\nlsmdc3078_THE_WATCH-36504,4541,Someone unplugs four cables attached to someone and the beam dies out. Someone,\"removes the orb from the tower, then looks around.\",\"removes the edges of the car false open, and marks a ceiling.\",takes deep breaths and shakes her tiny wand.,knocks someone's hand.,hammers the small opening pod.,gold1-orig,pos,unl,unl,unl,unl,Someone unplugs four cables attached to someone and the beam dies out.,Someone\nlsmdc3078_THE_WATCH-36504,4559,\"In slow motion, someone's flaming Costco i d card, which bears his photo, rises into the night sky. A severed alien head\",\"flies through the air, its mouth open wide.\",hangs from the port side.,lies on the ground and bears a monk's ankle.,tips on and it snaps off into force.,lies on its side of the stairs and back to him.,gold0-orig,pos,unl,unl,unl,unl,\"In slow motion, someone's flaming Costco i d card, which bears his photo, rises into the night sky.\",A severed alien head\nlsmdc3078_THE_WATCH-36504,4549,\"The guys climb out from the basement, then tip over a refrigerator, slamming the grate over another alien. As they run through the store, the alien\",reaches through the grate.,raises its tires and staggers.,'s being blown away.,hides behind the wheel booth.,grabs someone's shoulder as the thugs chase him.,gold1-orig,pos,unl,pos,pos,pos,\"The guys climb out from the basement, then tip over a refrigerator, slamming the grate over another alien.\",\"As they run through the store, the alien\"\nlsmdc3078_THE_WATCH-36504,4554,Someone hits a red button on the wall. The guys,sprint for the security door as it lowers.,enter the surveillance room.,rush through to the ring.,enter the tunnel with a fighting gun.,\"stare at each other, as the gunman makes his way down the back wall.\",gold0-orig,pos,pos,pos,pos,pos,Someone hits a red button on the wall.,The guys\nlsmdc3078_THE_WATCH-36504,4556,\"Before the door closes completely, they all slide underneath and into the parking lot. Someone and someone\",hide behind a police car.,\"sit at the rocking table, staring as starry - eyed black boy, in black.\",\"run along the residential street, where the two buses stop and watch.\",watch as a clear trunk emerges from behind a tree.,\"watch on the balcony, staring at the podium.\",gold1-orig,pos,unl,unl,unl,unl,\"Before the door closes completely, they all slide underneath and into the parking lot.\",Someone and someone\nlsmdc3078_THE_WATCH-36504,4557,\"With their fingers in the orb, a brilliant beam of light hits the store and a wave of energy encases the entire building. Someone\",peeks over the car.,leads someone through the building to a stately building.,settles over a canvas shimmering fence covered in mushroom clouds.,\"awakens and pushes himself along the edge as the destroyer swerves, destroying him.\",,gold1-orig,pos,unl,unl,unl,n/a,\"With their fingers in the orb, a brilliant beam of light hits the store and a wave of energy encases the entire building.\",Someone\nlsmdc3078_THE_WATCH-36504,4558,\"An aerial view shows the massive eruption of fire and smoke. In slow motion, someone's flaming Costco i d card, which bears his photo,\",rises into the night sky.,opens the barn door.,looks up from his pickup and brings out a box of cash.,scans the area as a few of his vehicles descend another circuit deck.,examines closely location within.,gold0-orig,pos,unl,unl,unl,unl,An aerial view shows the massive eruption of fire and smoke.,\"In slow motion, someone's flaming Costco i d card, which bears his photo,\"\nlsmdc3078_THE_WATCH-36504,4543,\"Dozens of aliens emerge from the tunnels, crawling on all fours. Someone\",throws the orb down to someone.,stares at one of the coaches gesturing someone.,zooms in on the woman who lies watching her coach.,watches until both men rush away with myrtle.,,gold0-orig,pos,unl,unl,unl,n/a,\"Dozens of aliens emerge from the tunnels, crawling on all fours.\",Someone\nlsmdc3078_THE_WATCH-36504,4553,\"The guys continue their dash to the exit, someone keeping hold of the orb. Someone\",hits a red button on the wall.,stares into the vast desert.,brings blood down his pursed lips.,looks at the check at the man.,spots her and holds her fist.,gold1-orig,pos,unl,unl,unl,unl,\"The guys continue their dash to the exit, someone keeping hold of the orb.\",Someone\nlsmdc3078_THE_WATCH-36504,4544,Someone throws the orb down to someone. Someone,jumps to a thick cable and slides down to the floor.,bows from the next door.,carries more past someone.,is standing in the middle of the graveyard.,grasps the farmer's eyes off his pie - shaped face.,gold1-reannot,pos,unl,unl,unl,unl,Someone throws the orb down to someone.,Someone\nlsmdc3078_THE_WATCH-36504,4545,\"Walking backwards, they fire on the alien horde. As an alien lunges forward, a shot\",blasts open its groin.,barrel leaps back and fires.,sends a cyclone through someone and shield him.,flies out through wall and widened.,leaps around someone and grabs him.,gold0-reannot,pos,unl,unl,unl,unl,\"Walking backwards, they fire on the alien horde.\",\"As an alien lunges forward, a shot\"\nlsmdc3078_THE_WATCH-36504,4560,Boxes spilling out foil - wrapped Magnum condoms soar amid the rising smoke. Someone,looks over the hood of the police car.,sticks a dirty cigarette between his lips and high three brace - wincing regaining control.,'s struggles to wrap around their roaring club.,pulls out a air pipe.,,gold0-reannot,pos,unl,unl,pos,n/a,Boxes spilling out foil - wrapped Magnum condoms soar amid the rising smoke.,Someone\nanetv_uM6ErLnAGW4,5328,\"The woman adds chopped vegetables, salsa, and eggs to a large bowl. The woman\",uses a spatula to mix everything together.,cuts up a baking dish next and pours it into a cup.,\"is talking to the camera, garnishes out food, and salad.\",mixes the ingredients together in a pan and fries it out with sugar.,puts the tomatoes in the tray and mixes go.,gold0-orig,pos,unl,unl,unl,unl,\"The woman adds chopped vegetables, salsa, and eggs to a large bowl.\",The woman\nanetv_uM6ErLnAGW4,5333,The finished bell peppers are seen on the cutting board. A woman,adds ingredients to a casserole dish.,bow in a white card and gives the girl a serve while a man strokes her face.,is looking over the glass window at the female.,is standing at a bar.,is shown with her arms folded.,gold0-orig,pos,unl,unl,unl,unl,The finished bell peppers are seen on the cutting board.,A woman\nanetv_uM6ErLnAGW4,5331,Cheese is added to the tops of the bell peppers and the tops are placed back on them. The bell peppers,are removed from the dish and put on a plate.,are scooped up and placed on a piece of wood.,is shown in many different places.,is being put into a pile and they stir the food in a pan.,is then poured onto the baking sheet.,gold0-orig,pos,unl,unl,unl,unl,Cheese is added to the tops of the bell peppers and the tops are placed back on them.,The bell peppers\nanetv_uM6ErLnAGW4,5330,A spoon is used to add ingredients into the hollow bell peppers. Cheese is added to the tops of the bell peppers and the tops,are placed back on them.,are mixed with chopped shapes and tomatoes.,are placed in video slices.,are shaken and onions in the sauce.,are saute eggs at different angles.,gold0-orig,pos,unl,unl,unl,unl,A spoon is used to add ingredients into the hollow bell peppers.,Cheese is added to the tops of the bell peppers and the tops\nanetv_uM6ErLnAGW4,5332,The bell peppers are removed from the dish and put on a plate. the finished bell peppers,are seen on the cutting board.,\"appear along with insects, trying to make it hard.\",are being made on the wall.,are placed around the cups of the man's head.,is shown at the end of the screen.,gold0-orig,pos,unl,unl,unl,pos,The bell peppers are removed from the dish and put on a plate.,the finished bell peppers\nanetv_uM6ErLnAGW4,5326,Carved pepper jack - o - lanterns are seen prepared. A woman,uses a knife to carve out the center and facial features of a bell pepper then places in a dish.,leaves the open shoes on the doorstep.,pours some into a face as well as a pan of oil that have laid down on a table.,uses another large holder to paint the walls.,stands at a big table table and talks to the camera.,gold1-orig,pos,unl,unl,unl,pos,Carved pepper jack - o - lanterns are seen prepared.,A woman\nanetv_uM6ErLnAGW4,5329,The woman uses a spatula to mix everything together. A spoon,is used to add ingredients into the hollow bell peppers.,rubs two of the waves poured into the martini glass.,is shown with a bag of honey.,is pour the mixture into the baking pan.,,gold0-orig,pos,unl,pos,pos,n/a,The woman uses a spatula to mix everything together.,A spoon\nanetv_uM6ErLnAGW4,5327,A woman uses a knife to carve out the center and facial features of a bell pepper then places in a dish. The woman,\"adds chopped vegetables, salsa, and eggs to a large bowl.\",is then taken place uses 30 strokes.,squeezes lemons into an plant.,demonstrates the process of carving methods before taking her hairstyle again.,mixes the various blended potatoes.,gold0-reannot,pos,unl,unl,pos,pos,A woman uses a knife to carve out the center and facial features of a bell pepper then places in a dish.,The woman\nanetv_qZk7okgCU2M,3268,A man is belly surfing as a wave arrives. He,stands up on his surfboard and rides the waves.,\"blows in the air, and lands on the back of the boat.\",surfs in the water as a surfer.,waves at the surfer in a wave.,,gold0-orig,pos,unl,pos,pos,n/a,A man is belly surfing as a wave arrives.,He\nanetv_qZk7okgCU2M,3269,He stands up on his surfboard and rides the waves. A woman reporter,talks to a man about the surfer.,\"leans forward, hugging him at arm's length.\",shoots him with the packet.,walks to the other side of the board and waves again.,,gold0-orig,pos,unl,unl,unl,n/a,He stands up on his surfboard and rides the waves.,A woman reporter\nanetv_ybkcKusf-Kg,18881,He pulls himself up and does several tricks. He then,lowers himself back down to the ground.,flips over the kicking his arms at the end.,gets followed by another man diving towards a crowded party.,demonstrates how to pull a rope and screams slightly.,,gold0-orig,pos,unl,unl,unl,n/a,He pulls himself up and does several tricks.,He then\nanetv_ybkcKusf-Kg,18879,A gymnast enters the auditorium full of people. He,grabs the high bars.,looks into a carpeted room and sits.,stands and walks away slowly.,is seen performing tai chi.,jumps up and raises his hands at the crowd.,gold0-orig,pos,unl,pos,pos,pos,A gymnast enters the auditorium full of people.,He\nanetv_ybkcKusf-Kg,9728,\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and fall stand on the mat. Also, a male athlete behind the gymnast\",runs fast and flips in the air.,\"weaves and dismounts, then begins holding his rucksack, the teen runs around and twirls him then he prepares to perform her routine.\",begins to make a goal from sitting in the mat next to him.,performs a high and jump dive in a high stepping on a blue mat.,lifts a jump rope high to the air.,gold0-orig,pos,unl,unl,unl,unl,\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and fall stand on the mat.\",\"Also, a male athlete behind the gymnast\"\nanetv_ybkcKusf-Kg,18880,He grabs the high bars. He,pulls himself up and does several tricks.,grabs someone and pushes him onto the toilet seat.,jumps in a swing three times.,jumps off the slack line and lands on a mat.,flips expertly through the triangle onto a platform.,gold0-orig,pos,unl,unl,pos,pos,He grabs the high bars.,He\nanetv_ybkcKusf-Kg,9727,\"Then, the gymnast stand on his hands, make two flips in the air and falls stand on the mat. Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and\",fall stand on the mat.,ends with him swinging back in the air wildly.,perform in front of the crowd.,falls as he flips.,,gold1-orig,pos,pos,pos,pos,n/a,\"Then, the gymnast stand on his hands, make two flips in the air and falls stand on the mat.\",\"Behind the gymnast, an athlete runs, then stand with the hands on the pommel horse and flips in the air and\"\nlsmdc3013_BURLESQUE-4684,4839,\"Someone and Coco enter and spot someone onstage. Standing at a chair with her back turned, someone\",lets her hair down.,\"heads down a hall, then heads behind the girls.\",finds someone lying in bed.,\"looks from someone to someone, who looks pensively at the table.\",sits down then resolutely freezes at her side.,gold0-orig,pos,unl,pos,pos,pos,Someone and Coco enter and spot someone onstage.,\"Standing at a chair with her back turned, someone\"\nlsmdc3013_BURLESQUE-4684,4841,\"Someone gyrates her backside, then looks over her shoulder. Holding the back of the chair, she\",seductively points her knees in and out.,stares off with a sober gaze.,hands the photo to someone.,applies an petal.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone gyrates her backside, then looks over her shoulder.\",\"Holding the back of the chair, she\"\nlsmdc3013_BURLESQUE-4684,4844,The club owner affords a slight nod. Now someone,rubs her hands over her head and body.,draws a white frozen mirror.,pulls a sausage out of a large bottle on the stairs.,opens a stairwell as someone shuffles layering creamy fluid.,streaks back and forth on the counter.,gold1-orig,pos,unl,unl,unl,pos,The club owner affords a slight nod.,Now someone\nlsmdc3013_BURLESQUE-4684,4842,\"Holding the back of the chair, she seductively points her knees in and out. She\",whips her hair back and steps forward.,lifts a thin cloth over her face.,\"eyes her long, blonde hair.\",\"continues to kiss on the heavy light of day, but drops in.\",listens as they leave the house.,gold0-orig,pos,unl,unl,unl,pos,\"Holding the back of the chair, she seductively points her knees in and out.\",She\nlsmdc3013_BURLESQUE-4684,4837,Someone shoots a satisfied glance toward someone at the back of the house. Someone,\"returns to the table, where someone raises an eyebrow.\",walks to the jet's passenger laptop.,\"stands, elevation on the cashier's frail body.\",finish the start and goes in.,\"showcases her eyes, moments of utter enthusiasm.\",gold1-reannot,pos,unl,unl,unl,unl,Someone shoots a satisfied glance toward someone at the back of the house.,Someone\nlsmdc3013_BURLESQUE-4684,4843,Someone and the others keep watching. Someone,\"holds her hands out like paws, then slaps her backside with her right, then with her left.\",shoots away a stack of piles.,sits up at the table as he pours the carefully exiting cocktail glass into the cup and cowers next to it.,pulls back someone's shades.,\"kicks over for the others, knocking him up to stand and ends by reaching to see someone.\",gold1-reannot,pos,unl,unl,pos,pos,Someone and the others keep watching.,Someone\nanetv_f-aGlEjgZoE,15827,The puts tape on he eye and begins putting eyeliner above her eye. She,continues putting the makeup on while speaking to the camera and takes off the tape in the end.,\"takes the shapes from the pumpkin, goes.\",then add the dots on top above the bench to be clean.,puts the people in the container with the back of her hand.,,gold0-orig,pos,unl,unl,unl,n/a,The puts tape on he eye and begins putting eyeliner above her eye.,She\nanetv_f-aGlEjgZoE,15826,A woman is seen speaking to the camera while holding up various objects. The puts tape on he eye and,begins putting eyeliner above her eye.,begins sharpening the object over her objects.,begins sharpening them with large hands.,then continues blowing it out around the camera.,continues exercising a few times.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding up various objects.,The puts tape on he eye and\nanetv_veaxOUe_8HE,15331,Two people are seen speaking to the camera and leads into several clips of people playing volleyball with one another. The people,continue to play the sport while others speak to the camera as well as watch on the sides and high five each other.,riding around on the roads as well as laughing then speaking to one another and speaking to one another about their story.,continue to hit the ball back and fourth to one another and end by hitting a ball.,continue to play as others watch on the sides and ends with the women continuing to speak.,continue to play the game with one another and end by throwing a ball.,gold1-orig,pos,unl,unl,unl,unl,Two people are seen speaking to the camera and leads into several clips of people playing volleyball with one another.,The people\nanetv_41xqneu4_RA,17317,A man is inside a room in a house. He,is using a racquet to hit a tennis ball back and forth against a wall.,scoops up smoke as he lays a piece of rag on the floor and lets it cover it.,picks up a guitar and begins to make out.,is holding a chair laying on it.,is shoveling the snow with a shovel.,gold1-reannot,pos,unl,unl,unl,unl,A man is inside a room in a house.,He\nanetv_0PS48XWOsKA,9156,A woman stands next to a window display and demonstrates how to take off the bug screen and open the window. She then,cleans the window and closes it.,shows how to mix the liquid with a bucket of water to adjust it up and rub it on the top.,stands next to the sign and opens it.,cleans the ice with a hose and in the glass.,dumps the contents out of a box onto a sock and to the ground.,gold0-orig,pos,unl,unl,unl,unl,A woman stands next to a window display and demonstrates how to take off the bug screen and open the window.,She then\nanetv_0PS48XWOsKA,3119,The woman then opens the window. the woman,cleans the exterior of the window.,puts a contact lens and digs in the contacts.,smokes and then removes the lid.,leaves the hookah and then stands and talks while looking around.,leans out a window and tries to get the camera inside.,gold1-orig,pos,unl,unl,unl,pos,The woman then opens the window.,the woman\nanetv_0PS48XWOsKA,3118,A woman stands in front of a window pane. the woman then,points to several parts of the window.,unlocks the metal bucket panels the protester herself.,dries her eyes off the dry hair and displays hair products.,picks up the comb and chandeliers material on the floor to have a styled iron.,uses the heavy necessary handle to juice all the water.,gold0-orig,pos,unl,unl,unl,unl,A woman stands in front of a window pane.,the woman then\nanetv_0PS48XWOsKA,9155,The words Window Information Series Casement Window Operation & Cleaning along with the Thermal Industries logo appear on screen. A woman,stands next to a window display and demonstrates how to take off the bug screen and open the window.,\"kneels on top of a painting and then paints darkness, white words that include chalkboard care or some of the grid.\",is sitting on steps on a basketball court.,picks up the bottle and applies it to the ground before leaning on it.,holds the same ball up in a grey dress set with two cutting machines.,gold0-reannot,pos,unl,unl,unl,unl,The words Window Information Series Casement Window Operation & Cleaning along with the Thermal Industries logo appear on screen.,A woman\nanetv_hYRNSJwhVPw,19420,She then begins performing sit ups on the dock. She,continues to demonstrate how to properly do sit ups and gesturing to the camera.,continues playing while the camera captures her movements.,continues to play while the camera captures his movements.,blows into the air multiple times.,starts the routine once more.,gold1-orig,pos,unl,unl,unl,pos,She then begins performing sit ups on the dock.,She\nanetv_hYRNSJwhVPw,19419,A woman is shown running down the beach and smiling to the camera. She then,begins performing sit ups on the dock.,moves from the other side and ends with text across the screen.,is seen throwing a knife into the sink and dipping around it as well as speaking.,walks up the board and jumps off the wave and up again.,covers various angles of one person and then pans around with various kids posing.,gold1-orig,pos,unl,unl,unl,unl,A woman is shown running down the beach and smiling to the camera.,She then\nanetv_Nc71GzZhAHE,2514,A sign to a sugar mountain is shown and peolpe practicing snowboard. people,is snowboarding down a snowy hill.,\"are going outdoors, riding rafts a mountain.\",are walking around a gym on the side of the track.,are shown going down a river.,start to skate on the sidewalk by a ball in the distance.,gold0-orig,pos,unl,unl,unl,unl,A sign to a sugar mountain is shown and peolpe practicing snowboard.,people\nanetv_Nc71GzZhAHE,2515,People is snowboarding down a snowy hill. snowy cars,are riding in snowy hill.,are blowing at the front of a house.,go down a hill in a intertubes.,are walking at the bottom of a mountain.,crash down the street.,gold1-orig,pos,unl,unl,unl,pos,People is snowboarding down a snowy hill.,snowy cars\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9657,6395,\"The other portraits are distraught. Weeping and wailing, the painted characters\",run from picture to picture.,scatter through the trees.,snap with horror as people watch.,leave the in line silently.,crack powerful with the crowd.,gold0-reannot,pos,unl,unl,unl,unl,The other portraits are distraught.,\"Weeping and wailing, the painted characters\"\nlsmdc3085_TRUE_GRIT-40657,13250,As they head through a pine forest. Someone,sticks another empty bottle over the end of a thin stubby branch.,takes to a figure.,searches without reaching for it and flips around.,surrounds it to the other side of the river.,digs some cash into his pocket.,gold0-orig,pos,unl,unl,unl,unl,As they head through a pine forest.,Someone\nlsmdc3085_TRUE_GRIT-40657,13243,He takes a piece and stands with his legs apart. He,throws the cornbread in the air.,swings his legs up and high on the board.,glances back at someone 'unconvinced smile.,puts an arm around his shoulder.,does flips backwards multiple times.,gold0-orig,pos,unl,unl,unl,pos,He takes a piece and stands with his legs apart.,He\nlsmdc3085_TRUE_GRIT-40657,13249,\"Under a canopy of swollen dark gray clouds, they head across a plain of straw - like grass. As they\",head through a pine forest.,\"soar over the city, technicians travel onto a lying nestled rock roof with a gentle fall.\",\"prow, someone glares in over someone.\",\"ride inside, one penguin reaches in and pulls it out of a drawer.\",veers through the desert.,gold1-orig,unl,unl,unl,unl,unl,\"Under a canopy of swollen dark gray clouds, they head across a plain of straw - like grass.\",As they\nlsmdc3085_TRUE_GRIT-40657,13253,\"The entrance is surrounded by craggy stone cliffs. By a campfire, someone\",mashes some cornbread and water and holds it out to someone.,sits lodged at the top bunk wearing a toothy black brown suit.,goes over the veteran someone.,peers at the house's steamed up ceiling.,watches from the walkie - talkie as a pickup truck passes alongside.,gold0-orig,pos,unl,unl,unl,pos,The entrance is surrounded by craggy stone cliffs.,\"By a campfire, someone\"\nlsmdc3085_TRUE_GRIT-40657,13247,\"Someone, someone, and someone ride across a vast prairie of short patchy grass. Behind them, in the distance,\",is a mountain range.,trees come to a halt in a sharp road block.,bubbles are visible across the distant waters.,a man walks away from a truck and whispers into the child's ear.,,gold1-orig,pos,unl,pos,pos,n/a,\"Someone, someone, and someone ride across a vast prairie of short patchy grass.\",\"Behind them, in the distance,\"\nlsmdc3085_TRUE_GRIT-40657,13242,He digs around and some bits of yellow cornbread fall out. He,takes a piece and stands with his legs apart.,looks into a garbed roll.,holds out his flaming crown.,notices his watch from a nearby table and hands him a book.,,gold0-orig,pos,unl,unl,unl,n/a,He digs around and some bits of yellow cornbread fall out.,He\nlsmdc3085_TRUE_GRIT-40657,13241,Someone stares at someone who dismounts and tumbles to the ground. He,keeps hold of his horse's reigns and drunkenly struggles to his feet.,\"stumbles after him, then jumps through the back window and falls onto a chair.\",\"swings a hammer disk, climbs through it and fake it onto a nearby fence.\",\"see a circle voice at his foot, but he ducks by a bush.\",\"lifts his eyes and gives a faint smile, then lifts his head.\",gold0-orig,pos,unl,unl,unl,unl,Someone stares at someone who dismounts and tumbles to the ground.,He\nlsmdc3085_TRUE_GRIT-40657,13248,Fluffy white clouds hang in a blue sky above the trio as their horses plod on across a largely featureless landscape. They,ride through longer grass beside a river.,stretch their arms together and swirl on toward the dance.,stay bored by one picnic.,are walking on the blue coast highway.,,gold0-orig,pos,unl,unl,pos,n/a,Fluffy white clouds hang in a blue sky above the trio as their horses plod on across a largely featureless landscape.,They\nlsmdc3085_TRUE_GRIT-40657,13239,He throws his bottle in the air. He misses and the bottle,lands on the grass.,falls from the bottle to the floor.,falls back onto the water.,knocks him directly to the hand.,tries to heal.,gold0-orig,pos,unl,unl,unl,unl,He throws his bottle in the air.,He misses and the bottle\nlsmdc3085_TRUE_GRIT-40657,13252,Someone stands framed by the square entrance to a dark mine. He,shoots into the darkness.,moves into his bedroom.,returns with an arm reach.,studies a newspaper report.,sets down a guard for a guard.,gold1-reannot,pos,unl,unl,unl,unl,Someone stands framed by the square entrance to a dark mine.,He\nlsmdc3085_TRUE_GRIT-40657,13240,He misses and the bottle lands on the grass. Someone,stares at someone who dismounts and tumbles to the ground.,\"bites into a coin, and falls his leg on the seat.\",falls on a mattress in the doorway.,\"stands, occasionally surprised.\",drops 10 up in a net.,gold0-reannot,pos,unl,unl,unl,unl,He misses and the bottle lands on the grass.,Someone\nlsmdc3085_TRUE_GRIT-40657,13246,Someone goes to his saddle bag. Someone,hurls yet another piece.,drops the bike into breezeway - circular tissue.,puts the jack - o - lantern in the oven.,slaps someone's arm.,approaches to find the display en.,gold0-reannot,pos,unl,unl,unl,unl,Someone goes to his saddle bag.,Someone\nlsmdc3085_TRUE_GRIT-40657,13245,\"And before he can shoot, someone takes a shot. Someone\",goes to his saddle bag.,kicks the ball into the other man's mitt.,\"gets limp by his arms, staring at someone.\",grasps someone and waves her over.,points to a crewman.,gold1-reannot,pos,unl,unl,unl,unl,\"And before he can shoot, someone takes a shot.\",Someone\nlsmdc0003_CASABLANCA-46860,7157,Someone jumps to his feet as someone enters. Someone,waits to be asked to seat himself.,\"closes his eyes, then moves his chin to the side mirror and wipes his face.\",\"pauses, walking forward.\",shoves the driver's door open.,sits across the street on someone.,gold0-orig,pos,pos,pos,pos,pos,Someone jumps to his feet as someone enters.,Someone\nlsmdc0003_CASABLANCA-46860,7158,\"Someone smiles back at him, but her eyes are still troubled. On the floor, someone\",strums a guitar and begins her number.,lifts her club as she lights a match.,closes the door and running toward the separating room.,looks up at the sun.,takes an uneasy drink from someone.,gold1-orig,pos,unl,unl,unl,unl,\"Someone smiles back at him, but her eyes are still troubled.\",\"On the floor, someone\"\nlsmdc0003_CASABLANCA-46860,7160,\"He sees people whispering together, then notices someone at the bar. He\",rises and goes off.,gets back to his pickup and takes up his business coat from behind a parked car.,stands and stands watching her.,\"steps out, heading back to them.\",\"takes a pair of black sunglasses as he looks up at something, then turns away slowly.\",gold0-orig,pos,unl,unl,unl,unl,\"He sees people whispering together, then notices someone at the bar.\",He\nlsmdc0003_CASABLANCA-46860,7163,\"At the bar, someone sips a drink. Someone\",walks up and casually takes a place at the bar next to someone.,\"pours a bottle of coffee, then sets it down.\",spots a sultry woman pouring champagne with a straw.,squints as she stuffs the bottles into his women's pockets.,puts a capsule on the tray.,gold0-orig,pos,unl,pos,pos,pos,\"At the bar, someone sips a drink.\",Someone\nlsmdc0003_CASABLANCA-46860,7166,\"Someone finishes her song, and the crowd applauds quite enthusiastically. Someone\",sits alone at her table.,is tossed out of the courtroom.,turns around to face someone and presses the small stage button behind her back.,joyfully nods and hits someone over her shoulder.,stares as he tries to push through his keys.,gold0-orig,pos,unl,unl,unl,unl,\"Someone finishes her song, and the crowd applauds quite enthusiastically.\",Someone\nlsmdc0003_CASABLANCA-46860,7159,\"Meanwhile, someone looks about with apparent casualness. He\",\"sees people whispering together, then notices someone at the bar.\",sheep breaks the light.,picks up a notebook.,crosses for the arquillian to secure it.,,gold0-orig,pos,unl,pos,pos,n/a,\"Meanwhile, someone looks about with apparent casualness.\",He\nlsmdc0003_CASABLANCA-46860,7161,He rises and goes off. We,see someone's troubled profile.,watch as the three subs descend.,swoop high around the building as people march from behind a church.,\"rush to a tall archway, stop the gaunt figure.\",,gold0-orig,pos,unl,pos,pos,n/a,He rises and goes off.,We\nlsmdc0003_CASABLANCA-46860,7164,Someone walks up and casually takes a place at the bar next to someone. Someone,takes the ring and looks at it.,are an attractive little esu woman whether or terrible extra clothes.,sees an antique poking at his chest.,\"adds the freckles, then slips it towards them.\",sits up and looks at the cut.,gold1-reannot,pos,unl,unl,unl,pos,Someone walks up and casually takes a place at the bar next to someone.,Someone\nlsmdc0003_CASABLANCA-46860,7162,\"We see someone's troubled profile. While someone sings, someone\",gives a worried glance in someone's direction.,essay unplugs her book.,gives a faint grin and takes an deep breath.,\"kneels heavily, leans against his chest, his hands close to his face.\",strolls into the ballroom carrying a shelf of shelves.,gold0-reannot,pos,unl,unl,unl,unl,We see someone's troubled profile.,\"While someone sings, someone\"\nlsmdc0003_CASABLANCA-46860,7165,Someone absorbs the shock quietly. He,stops when someone brings the drink to someone.,shields his aim 'eye for a second.,\"leaves the room, still partying through a doorway.\",recoils off someone's zombie cap.,fills the basket with flying coins.,gold1-reannot,pos,unl,unl,unl,unl,Someone absorbs the shock quietly.,He\nanetv_fMVKdmMVixQ,16474,He instructs them on position before leading them in yoga. They,\"perform several moves, slowly and gracefully.\",explaining the equipment while the other man is using to cut it down and continue to side with him turning back into a fork.,pull up to a halt then that take turns and continue trying to move into the arena.,\"began to flash for a few moments, while gesturing to make his way the other way.\",\"cuts in the same detail to the bars and the middle then jumps from the parallel bar, attempting to explain him.\",gold0-orig,pos,unl,unl,unl,unl,He instructs them on position before leading them in yoga.,They\nanetv_fMVKdmMVixQ,16473,A group of people stand behind a master yogi. He,instructs them on position before leading them in yoga.,is dragged in his hands.,swings and shoots behind the net with a golf club.,exits a curb and helps people to the cabin.,,gold0-orig,pos,unl,unl,unl,n/a,A group of people stand behind a master yogi.,He\nlsmdc0043_Thelma_and_Luise-68329,6766,Someone has forgotten all about the money. They,are both leaving the restaurant now.,\"charts world's logo of new jersey, named someone, who wakes him and he looks to his pretty blouse.\",consider in a race as they begin to separate cars from their team.,\"have remained seated at the rigidly, some of the others for the best hold for a lingering stranger.\",watch as their family finds in park.,gold1-orig,pos,unl,unl,unl,unl,Someone has forgotten all about the money.,They\nlsmdc0043_Thelma_and_Luise-68329,6765,She is already standing up putting money on the table. Someone,has forgotten all about the money.,drops her heels safely.,\"is standing in front of someone's bedroom window, holding a bottle of milk.\",calls to her dad.,picks up the paper and reads it.,gold1-orig,pos,unl,unl,unl,pos,She is already standing up putting money on the table.,Someone\nlsmdc0043_Thelma_and_Luise-68329,6764,Someone is getting a bad feeling. She,is already standing up putting money on the table.,digicam it on someone's face.,gets to her feet.,is holding her umbrella behind her neck.,,gold0-orig,pos,unl,pos,pos,n/a,Someone is getting a bad feeling.,She\nlsmdc0043_Thelma_and_Luise-68329,6771,Someone comes and sits beside her. Neither one,says anything for a moment.,\"in the room, someone is standing in the doorway in their children's sight.\",another; someone looks a little awkward.,will sad but not really interested.,\"or 18 is touched, her secretary, surprised until the loud are hear like the intruder is hearing coming from this cupboard in the\",gold0-orig,pos,unl,unl,unl,unl,Someone comes and sits beside her.,Neither one\nlsmdc0043_Thelma_and_Luise-68329,6770,Someone sits down on the sidewalk in front of the room. Someone,comes and sits beside her.,is dark on a television sitting.,\"looks up with disgust, then gives him a thumbs up.\",\"drums his chin on the drum, waiting.\",puts his reading glasses down.,gold0-orig,pos,unl,unl,unl,unl,Someone sits down on the sidewalk in front of the room.,Someone\nlsmdc0043_Thelma_and_Luise-68329,6768,As they hit the door they both break into a full run. She,\"is stoic, fighting tears.\",fires at the building nearly approaching.,pushes the ladder thrown out back tunnel and picks someone up and dashes.,climbs out of the limo and opens a door.,,gold0-orig,pos,unl,unl,unl,n/a,As they hit the door they both break into a full run.,She\nlsmdc0043_Thelma_and_Luise-68329,6767,They are both leaving the restaurant now. As they hit the door they both,break into a full run.,\"approach, shaking their heads, on their way over to a table.\",stare soberly at the scene.,look down and complains to someone.,,gold0-orig,pos,unl,pos,pos,n/a,They are both leaving the restaurant now.,As they hit the door they both\nanetv_kWN4zFblj6o,12144,Several people take a pause as they try to catch on to the movements. The instructor,calls out the instructions for several of the movements as well.,hands the girls on to others before jumping up with a rope.,is doing hard back flips and flips while the crowd cheers for them.,sits up behind them and shows her how her feet under the ropes.,,gold0-orig,pos,unl,unl,pos,n/a,Several people take a pause as they try to catch on to the movements.,The instructor\nanetv_kWN4zFblj6o,9413,They are using steppers to exercise. They,jump on and off the steppers as they go.,continue to play the drums.,move in unison as they play.,\"split on the side, going back and forth.\",are beginning to demonstrate acrobatic moves.,gold0-orig,pos,unl,unl,unl,pos,They are using steppers to exercise.,They\nanetv_kWN4zFblj6o,12143,Several people are in a gym doing step aerobics while being accompanied by music. Several people,take a pause as they try to catch on to the movements.,run through the yard and put the board into the principal's desk.,are watching the woman play with her hands.,are then shown practicing asian activities.,are shown in the martial arts session.,gold0-orig,pos,unl,unl,unl,pos,Several people are in a gym doing step aerobics while being accompanied by music.,Several people\nanetv_kWN4zFblj6o,9412,A group of people are inside a large gym. They,are using steppers to exercise.,are in an gym practicing heavy.,are pulling on top of the bars together.,are playing a game of croquette.,,gold0-orig,pos,unl,unl,pos,n/a,A group of people are inside a large gym.,They\nanetv_FExyWFc1nU0,11325,He jumps off the horse and ties the legs of a calf. He,stands up and walks back to his horse.,turns and turns to her in amazement.,\"jumps in the grass, then goes down and ropes a calf.\",tries on his back and stands behind the bar.,mounts the horse and goes after a calf.,gold0-orig,pos,unl,unl,unl,unl,He jumps off the horse and ties the legs of a calf.,He\nanetv_FExyWFc1nU0,4259,The bull falls sideways on the dirt. The bull,tries and gets up.,stops someone's ring and walks towards path.,went on the court.,skates to a circle then stops.,falls over and shoots back off the cow.,gold0-orig,pos,unl,unl,unl,unl,The bull falls sideways on the dirt.,The bull\nanetv_FExyWFc1nU0,4258,A male riding a horse lassoes a bull. The bull,falls sideways on the dirt.,goes back and misses the car.,walks with a logo around the arena.,is chasing a bull on the ground.,,gold0-orig,pos,unl,unl,pos,n/a,A male riding a horse lassoes a bull.,The bull\nanetv_FExyWFc1nU0,4260,The bull tries and gets up. The male,\"leaves the horse, keeps the bull down, and ties the bull's legs together.\",raises the stilts from his head and throws him back on the mat.,bends down and spreads his legs on the bench.,gets off the horse's horse.,zoomed the ball on the field.,gold0-orig,pos,unl,unl,unl,unl,The bull tries and gets up.,The male\nanetv_FExyWFc1nU0,11324,A man is sitting on a horse. He,jumps off the horse and ties the legs of a calf.,wets his white stick comb.,smells an ice cream joint.,gets on the rope and swings.,doffs his protective jacket.,gold0-orig,pos,unl,unl,unl,pos,A man is sitting on a horse.,He\nanetv_lxNV7FI-LQQ,5124,Many people are seen riding the camels one after another on the sand. The video,continues on showing more people riding the camels and others leading in the front.,ends with one shown wearing a white and yellow uniform.,leads from the people playing the game.,continues with several people riding along on the sides while stopping to walk through the yard.,,gold0-orig,pos,unl,unl,unl,n/a,Many people are seen riding the camels one after another on the sand.,The video\nanetv_lxNV7FI-LQQ,5123,A shot of a sunset leads into a large group of people riding camels along the beach. Many people,are seen riding the camels one after another on the sand.,are seen riding around on horses as well as riding horses along the street while the camera captures their movements.,wave to the camera with different people riding around on lakeside on the river.,are rafting down the river talking.,are seen moving around on objects and leads into another person riding in the water.,gold0-orig,pos,unl,unl,unl,unl,A shot of a sunset leads into a large group of people riding camels along the beach.,Many people\nlsmdc0002_As_Good_As_It_Gets-46263,8766,The two waitresses signal their protests. Someone,walks back into the restaurant proper.,\"hangs upside down, with no interest.\",takes in the other businessmen.,and his car turn down towards the road.,,gold0-orig,pos,unl,unl,unl,n/a,The two waitresses signal their protests.,Someone\nanetv_fL8Gzk7ALxQ,3687,A group of people is gathered in a circle. Two men,are in the circle demonstrating a martial art.,are walking a white circle on each court.,are running down a large column.,are standing outside the field watching the children.,are engaged in a game of lacrosse.,gold0-orig,pos,unl,unl,pos,pos,A group of people is gathered in a circle.,Two men\nanetv_Y6UKk3t8Hj8,4122,\"A woman boxer, Jolie Glassman is demonstrating how to properly punch and box the punching bag. She\",is in a gym demonstrating kicking and punching techniques.,emerges from the dead mayhem.,continues pumping your legs and chest and swings it under it.,ties the leg and stripe it on the floor and bend and put it on her stomach she also massages the weight.,yells when she grabs his leg and jumps off.,gold0-orig,pos,unl,unl,unl,unl,\"A woman boxer, Jolie Glassman is demonstrating how to properly punch and box the punching bag.\",She\nanetv_Y6UKk3t8Hj8,4121,\"The Livestrong website is showing a video on boxing. A woman boxer, Jolie Glassman\",is demonstrating how to properly punch and box the punching bag.,\"smaller, is also pointing to her body.\",looks like an alleyway word crosses the street.,\"shorts, stands at a wash sink.\",is diving at her chest.,gold0-orig,pos,unl,unl,unl,pos,The Livestrong website is showing a video on boxing.,\"A woman boxer, Jolie Glassman\"\nanetv_K_AFdv3PKp0,7346,A man is seen using a large sander against a wall moving the machinery all along the wall. The man,continues sanding the wall and ends with him keeping it steady.,continues pushing the pucks all over the hoop while other people cleans the side.,continues to drink the bullets as he walks.,looks into the camera followed by the man and continues hammering around the sides.,continues removing plaster on the wall and spinning all around and speaking to one another.,gold0-orig,pos,unl,unl,unl,pos,A man is seen using a large sander against a wall moving the machinery all along the wall.,The man\nlsmdc3079_THINK_LIKE_A_MAN-36778,10547,Someone's eyes dart searchingly. Someone,sits beside someone on a modern sofa.,\"forces him to protege another, then shoves him through the partition.\",is seated among the photo of her husband.,reacts sadly as his father looks and watches him.,turns to kiss someone as he embraces her.,gold0-reannot,pos,unl,unl,pos,pos,Someone's eyes dart searchingly.,Someone\nanetv_gSkE0KCvves,7989,A man is seen riding a horse onto a field while swinging a rope and a young calf running in front of him. The man then,throws the rope onto the calf and ties to animal up then walking away.,drops his rope and motions before prom to ride the calf from the calf.,gets off running development his way and performs more tricks as more breaks the rope but high in ramp motion.,ropes two tricks on the camel while walking around and jumping back.,jump up and down the legs and walks off.,gold0-orig,pos,unl,unl,unl,unl,A man is seen riding a horse onto a field while swinging a rope and a young calf running in front of him.,The man then\nanetv_gSkE0KCvves,9804,A person is seen riding into a pit on a horse. The person,swings a rope and grabs a calf.,continues riding around on horses and chasing away in the distance.,pushes a long horse out onto a field while others watch.,goes to the end.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen riding into a pit on a horse.,The person\nanetv_gSkE0KCvves,9805,The person swings a rope and grabs a calf. He,ties up the calf and walks away.,\"runs the dog at the end of the rope, kicking it several times.\",gives it up to climb back and forth.,loses his shirt and goes slack for a while.,\"runs backwards, and its arms hang on.\",gold0-orig,pos,unl,unl,unl,unl,The person swings a rope and grabs a calf.,He\nanetv_wts5XRikF1Y,4,A man is shown weaving through the water on a board. He,raises his arms in the air as he goes over a wave.,is lifting something open green waves.,is playing with the water playing water polo.,jumps maybe farther before the dive.,continues on back through the water.,gold0-orig,pos,unl,unl,unl,unl,A man is shown weaving through the water on a board.,He\nanetv_wts5XRikF1Y,16840,A camera pans around a large beach and zooms in on a person riding on a surf board. Another person,is seen riding on the waves while people sit around them.,waves back from vines holding a fish swimming over the waves.,skateboard until the person is shown again running away in the end and falling back onto the board.,rides on the bridge and begins giving another thumbs up and riding on boards.,is seen riding in tubes with him riding down a board while others watch on the side.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a large beach and zooms in on a person riding on a surf board.,Another person\nanetv_wts5XRikF1Y,3,Several surfers ride the waves at a beach. A man,is shown weaving through the water on a board.,talks to the camera.,walks up alongside the man.,gets water surfing from the water.,is standing in the sand.,gold0-orig,pos,unl,unl,unl,unl,Several surfers ride the waves at a beach.,A man\nanetv_wts5XRikF1Y,16841,Another person is seen riding on the waves while people sit around them. Several more shots,are shown of people riding on a surf board as well as panning around the area.,are seen of people running down the people track and celebrating their jumps afterwards.,are shown of people riding around and hugging one another into the crowd.,are shown of the people as well as moves on the grass while the camera captures the movements.,are shown of children riding around on a skateboard while others watch on the side.,gold0-orig,pos,unl,unl,unl,unl,Another person is seen riding on the waves while people sit around them.,Several more shots\nanetv_WwcbpTANbeU,8143,A man is dressed in bungee gear by another man. He,\"jumps out, then swings back and forth over the thin waters.\",is doing tricks with signs.,is shown in a pudgy little sign booth.,\"is jumping and running around, taunting a bull to the bull.\",is pulling on the kayak in the water of another.,gold0-orig,pos,unl,unl,unl,unl,A man is dressed in bungee gear by another man.,He\nanetv_WwcbpTANbeU,8142,A view is seen of a deep canyon with a lift above it. A man,is dressed in bungee gear by another man.,speaks to the camera and a player looks off.,is stretching out into a stream.,performs martial arts moves in a track next to the crowd.,is then seen climbing a rough shore up a steep mountain.,gold0-orig,pos,unl,unl,unl,unl,A view is seen of a deep canyon with a lift above it.,A man\nanetv_8b3ZBE0n3V8,9412,A boy walk in the room from the left doorway holding a red stuffed animal sits down at the table then put animal away. A girl walk in the room front the right doorway and,sits down at the table.,watch him on the side his back being put in prayer.,put his head inside.,lets up again.,cross behind the girl.,gold0-orig,pos,unl,unl,unl,pos,A boy walk in the room from the left doorway holding a red stuffed animal sits down at the table then put animal away.,A girl walk in the room front the right doorway and\nanetv_8b3ZBE0n3V8,9413,They begin arm wrestling and the girl wins. the girl smiles at the camera sighting her victory then they both,get up to exit room from the same sides they entered in from.,laugh and push ping balls then let one team to make her win.,play together.,move backwards and start running.,,gold0-orig,pos,unl,pos,pos,n/a,They begin arm wrestling and the girl wins.,the girl smiles at the camera sighting her victory then they both\nanetv_KE2tDW9x9d8,8591,A girl is seen talking to the camera with her hand on her hip and leads into her holding up various ingredients. She then,mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side.,lays down tiles in the floor and begins blowing them around and ends by throwing a rag in afterwards.,\"grabs the contact lens, and then holds her contact lens.\",dips the cup in water and pours it into a pot.,,gold1-orig,pos,unl,unl,pos,n/a,A girl is seen talking to the camera with her hand on her hip and leads into her holding up various ingredients.,She then\nanetv_KE2tDW9x9d8,8592,She then mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side. She then,presents the plate while speaking to the camera and holding up various liquids.,lays the salad on the bread and puts it in a cheese tray.,\"garnishes another product as well as pour ingredients into batch, creating a cooking egg.\",sticks ingredients into a bowl and brings the seeds up.,,gold0-orig,pos,unl,unl,unl,n/a,She then mixes the ingredients together on a slice of bread and creates a sandwich while pouring chips out onto the side.,She then\nanetv_nB0JECwGK0c,2076,A young man was putting on a helmet to another young man who is inside a two - person sumo wrestler costume. Another man wearing a headphone,is talking while a man is standing behind him.,is sitting on a chairs chair holding a half closed time pong ball.,is shooting them both.,is behind and begins dancing and aiming at the man in the middle of the crowd.,grabbing a heavy weight and the male cheers quickly and yelling.,gold0-orig,pos,unl,unl,unl,pos,A young man was putting on a helmet to another young man who is inside a two - person sumo wrestler costume.,Another man wearing a headphone\nanetv_nB0JECwGK0c,2081,\"The spectator stops the fight shoving the winning wrestler causing them to fall down. The audience help them again to get up, when they all in their feet again, they\",talk for a while giving each other a high five.,stop and run off in the distance.,are returning to the stage to find them.,have to pose on their feet and begin arrows.,set their pants down until the front of the stand being done.,gold0-orig,pos,unl,unl,unl,unl,The spectator stops the fight shoving the winning wrestler causing them to fall down.,\"The audience help them again to get up, when they all in their feet again, they\"\nanetv_nB0JECwGK0c,2078,\"The two people in sumo wrestler is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume. The people in sumo wrestler costume\",get up talk with their opponent while hitting each other for a while then another man gives the signal to start the fight.,waved by grabbing different cars as the referee and wrestling winner stand in the center of the video wrestling.,talk to each other during with each sumo wrestling match.,\"over the bar, while a person with black shorts continue to wrestle, then a larger sumo wrestler checked.\",weave each other back and fourth while several sumo wrestlers do swings on each other.,gold0-orig,pos,unl,unl,unl,unl,\"The two people in sumo wrestler is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume.\",The people in sumo wrestler costume\nanetv_nB0JECwGK0c,2079,\"They start fighting and fall down, all of them can't get up and the people watching them help them to get up while some people are holding camera. They\",talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt.,hit a smaller ball with more tools mounted to the side.,laugh at the time and go in great distances when one walks by one.,continue dancing the way about this new routine because the girls also seems to be having a certain time.,don't be interviewed about the game and ends up trying to prevent the other ball from falling.,gold1-orig,pos,unl,unl,unl,unl,\"They start fighting and fall down, all of them can't get up and the people watching them help them to get up while some people are holding camera.\",They\nanetv_nB0JECwGK0c,18759,Other men are wearing the same costume and are wresting on a red carpet and men are helping them. men,are watching them around the carpet.,are playing volleyball on the racquetball court.,are in the living room showing how they use green shoes.,are doing different flips showing hand gestures and some sumo wrestlers.,,gold0-orig,pos,unl,unl,pos,n/a,Other men are wearing the same costume and are wresting on a red carpet and men are helping them.,men\nanetv_nB0JECwGK0c,2077,Another man wearing a headphone is talking while a man is standing behind him. The two people in sumo wrestler,\"is jumping and smiling while waiting for their opponent, young man crawling inside another two - person sumo wrestler costume.\",pulls one other wrestler karate in slow motion.,engage in a motocross fight.,\"perform martial arts on the gym floor during other matches, with the man in the background.\",back began wrestling one another.,gold1-orig,pos,unl,unl,pos,pos,Another man wearing a headphone is talking while a man is standing behind him.,The two people in sumo wrestler\nanetv_nB0JECwGK0c,2080,They talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt. The spectator,stops the fight shoving the winning wrestler causing them to fall down.,\"goes on doing some handed, up but still, which retract, and drops the spring down.\",gets on a padded board and punches someone's butt.,\"walks out under the banner with the brown cape, because the man is stretching and takes a step.\",twists from his body and loses his grip on the scolding man.,gold0-orig,pos,unl,unl,unl,unl,They talk for a while and continue to fool around with each other lead to a fight knocking off the wrestler in blue belt.,The spectator\nanetv_nB0JECwGK0c,2075,A series of information is shown. A young man,was putting on a helmet to another young man who is inside a two - person sumo wrestler costume.,is seen wearing a helmet and wearing a blue suit and helmet.,stands on a table and talks to the camera while standing in front of a camera.,\"is in a backyard, talking and he has the red cup in his hand.\",,gold0-reannot,pos,unl,unl,pos,n/a,A series of information is shown.,A young man\nlsmdc3011_BLIND_DATING-896,10283,\"Now at home, someone and someone stand by his open closet. Someone\",sits across from a brunette with purple streaks in her hair.,frowns in his tracks.,tries to open the door door.,wears the hats as someone watches them.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now at home, someone and someone stand by his open closet.\",Someone\nlsmdc3011_BLIND_DATING-896,10284,Someone sits across from a brunette with purple streaks in her hair. She,\"smiles, sitting back in her chair.\",stands at its table on her feet.,\"huddled out from the report, a photo shows the wing to now someone standing alone in her office.\",\"tinted hat gazes downward, her brow knitted.\",cautiously stares from a blaze between two tall posts and a black mural.,gold0-orig,pos,unl,unl,unl,unl,Someone sits across from a brunette with purple streaks in her hair.,She\nlsmdc3011_BLIND_DATING-896,10281,\"As someone stands by, someone holds the weights over his head. Someone\",racks the weights and sits up.,leans on the coconut chopper.,\"holds his head, trying to get out what he is going.\",makes an enclosed grab of his head as he undoes applause behind the railings.,picks up the fallen skeleton to the ground.,gold0-orig,pos,unl,unl,unl,unl,\"As someone stands by, someone holds the weights over his head.\",Someone\nlsmdc3011_BLIND_DATING-896,10280,\"Someone watches women spreading their legs in thigh machines. As someone stands by, someone\",holds the weights over his head.,rubs the dead man's leg.,leans down in his car.,places his hands in the lean doorway as someone slouches.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone watches women spreading their legs in thigh machines.,\"As someone stands by, someone\"\nanetv_C1IuvUSmcvA,3581,They are taking the inside seeds out of the pumpkin. They,put a candle in the pumpkin.,start chopping and dipping onto a wooden table on a pumpkin.,are using their hands to carve the shaped of a pumpkin.,start clipping different pumpkins on the wall.,are curled on each nail.,gold0-orig,pos,unl,unl,unl,unl,They are taking the inside seeds out of the pumpkin.,They\nanetv_C1IuvUSmcvA,3580,A person is carving a pumpkin outside. They,are taking the inside seeds out of the pumpkin.,are engaged in an instructional fight.,begin to scan the walkway.,are in a fight and run towards each other.,,gold0-orig,pos,unl,unl,unl,n/a,A person is carving a pumpkin outside.,They\nanetv_C1IuvUSmcvA,5395,Man is unseeding the pumpkin and open the eyes and the teeth in the dark. a candle,is inside a pumpkin in the dark.,is dancing in the sky as the man appears to pull out fire.,walks on the deck and is shining it.,says the doctor beneath him.,is shown that ladies point.,gold0-orig,pos,unl,unl,unl,unl,Man is unseeding the pumpkin and open the eyes and the teeth in the dark.,a candle\nlsmdc1015_27_Dresses-79591,38,She starts getting changed in the back seat. The cabby,looks in his mirror.,hits various pins on her right side then it goes off.,tosses the skateboard down to the ground the hood of the car gets up and she picks it up.,makes up with other speed.,blows her a few more days later.,gold0-orig,pos,unl,unl,unl,unl,She starts getting changed in the back seat.,The cabby\nlsmdc1015_27_Dresses-79591,36,Someone rushes out of the ceremony. She,hurries over to the cab.,\"throws his arms around someone, then releases his grip on the boy's backs.\",glances down a window as a nurse approaches to someone.,spots someone at someone's door.,pats someone's hand as he leaves.,gold1-orig,pos,unl,unl,pos,pos,Someone rushes out of the ceremony.,She\nlsmdc1015_27_Dresses-79591,35,Someone nudges her bored friend. Someone,rushes out of the ceremony.,stares longingly at the large swollen face.,walks outside with a mother.,reaches out to someone.,talk shows a girl dinner.,gold1-orig,pos,unl,unl,unl,unl,Someone nudges her bored friend.,Someone\nlsmdc1015_27_Dresses-79591,39,The cabby looks in his mirror. She,gets out of the cab wearing a red sari.,kneels on a chair opposite him.,leaves the office and goes to a table holding a bottle.,arches his brow coyly.,,gold0-reannot,pos,unl,unl,pos,n/a,The cabby looks in his mirror.,She\nlsmdc1015_27_Dresses-79591,37,She hurries over to the cab. She,starts getting changed in the back seat.,checks on a martha screen.,\"shuts the door, stands at the door and looks out.\",\"continues her climb, picks up a drop, and climbs into the back behind her.\",pulls it from him and drifts off.,gold0-reannot,pos,unl,unl,unl,unl,She hurries over to the cab.,She\nlsmdc0013_Halloween-54020,5639,He turns away from the street. It,is empty except for a station wagon parked several blocks away.,stops and get up.,is being attached to it.,pulls him away from the suv.,is a three - story house.,gold0-orig,pos,unl,unl,unl,pos,He turns away from the street.,It\nlsmdc0013_Halloween-54020,5632,\"She stares at the house, puzzled. Someone\",moves from the window back to the telephone and dials someone's number.,brings both sandbags back to the door where someone is sitting.,dials a number on the hip - sized phone.,looks back at the phone and shuts his eyes.,,gold0-orig,pos,unl,pos,pos,n/a,\"She stares at the house, puzzled.\",Someone\nlsmdc0013_Halloween-54020,5623,The man pulls the cord tighter. She,\"opens her mouth, trying to get air, then slowly slumps forward and remains motionless.\",sits down on a branch.,squeeze out the door.,grips the end with the handle beam.,rolls on his head.,gold1-orig,pos,unl,unl,unl,unl,The man pulls the cord tighter.,She\nlsmdc0013_Halloween-54020,5642,The station wagon moves closer. He,recognizes it and races forward.,holds someone firmly in the ambulance.,bangs the rider's head against the cane.,holds someone's pistol.,\"stares at the chief, someone.\",gold0-orig,pos,unl,unl,unl,unl,The station wagon moves closer.,He\nlsmdc0013_Halloween-54020,5657,She knocks on the door and rings the doorbell. She,\"stands there a moment, listening, as if to hear some sound of life from the inside.\",drapes the paper around to her.,\"closes the door, turns it out, then hurries back.\",pulls someone's phone into her ear.,eats some pieces of shrimp.,gold0-orig,pos,unl,unl,unl,unl,She knocks on the door and rings the doorbell.,She\nlsmdc0013_Halloween-54020,5633,Someone moves from the window back to the telephone and dials someone's number. Someone finally,hangs up the phone.,waits outside someone's office.,softly dials a remote.,steps up to the stereo.,dials and folds a hand over his heart.,gold1-orig,pos,unl,unl,unl,pos,Someone moves from the window back to the telephone and dials someone's number.,Someone finally\nlsmdc0013_Halloween-54020,5653,\"She picks up her speed, now up the sidewalk. The house\",looms closer and closer.,is decorated for a christmas tree as she drives by in her hospital room.,is on her way.,\"steps up with her arms outstretched, then absently tries to dial again.\",\"is overturned, as the van drags weakly towards the willow halfheartedly.\",gold1-orig,pos,unl,unl,unl,unl,\"She picks up her speed, now up the sidewalk.\",The house\nlsmdc0013_Halloween-54020,5651,\"She moves down the street, shivering in the chill wind. Someone's car\",sits there on the street.,arrives at tramp facility.,pulls up outside the city.,\"pulls his up, revealing another bruised face.\",,gold1-orig,pos,unl,unl,unl,n/a,\"She moves down the street, shivering in the chill wind.\",Someone's car\nlsmdc0013_Halloween-54020,5660,She turns and walks through the breezeway between the house and garage around to the back door. Someone,pulls open the door and steps into the house.,\"wanders away from the store and hears the footsteps, voices imperceptibly heard.\",\"takes his keys to her, nervous, graceful, and dons his neat, seedy - hairline.\",\"comes down the corridor, opened its door.\",,gold0-orig,pos,unl,unl,pos,n/a,She turns and walks through the breezeway between the house and garage around to the back door.,Someone\nlsmdc0013_Halloween-54020,5645,She takes a key out of her purse and again steps to the window. She,steps to the front door.,lights illuminating her empty apartment.,fingers lightly on the phone as they enter the bedroom.,scrapes the window as she watches tensely.,looks down down the hallway to the cottage and smiles.,gold1-orig,pos,unl,unl,pos,pos,She takes a key out of her purse and again steps to the window.,She\nlsmdc0013_Halloween-54020,5637,Someone sits in silence behind the hedge watching someone house. For a moment he,\"glances back at someone house, then starts down the quiet residential street.\",gets out of his chair and tries to figure out the benefits of them in another hotel.,\"stops, listening with his book.\",returns to the plain and glances down at someone with the big cactus.,looks up as someone arrives.,gold0-orig,pos,unl,unl,pos,pos,Someone sits in silence behind the hedge watching someone house.,For a moment he\nlsmdc0013_Halloween-54020,5631,Someone's car is parked in front of someone house. She,\"stares at the house, puzzled.\",inserts a phone card into a bin and dials the number.,is pulling someone from the door of a train.,sets the phone down.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's car is parked in front of someone house.,She\nlsmdc0013_Halloween-54020,5635,People are sound asleep on the bed. She,\"looks at them a moment, then closes the door behind her.\",watches wide - eyed as he lifts his phone.,downs someone's handkerchief in the back of his shirt and knocks him hard under the bed.,gets her hair down and gets dragged past a bush as she goes to the door.,\"travels on the cigarette, moving gracefully towards her face.\",gold0-orig,pos,unl,unl,unl,unl,People are sound asleep on the bed.,She\nlsmdc0013_Halloween-54020,5614,She starts to dial the phone. The ghost,starts walking toward her.,seems to be focused on answer.,holds the phone receiver open.,emerges from the x.,has tears in her eyes as she turns.,gold1-orig,pos,unl,unl,unl,unl,She starts to dial the phone.,The ghost\nlsmdc0013_Halloween-54020,5650,The wind whips her clothes and hair. She,\"moves down the street, shivering in the chill wind.\",drops across the floor.,blends it to other women.,\"stands up toward the net, alarmed, not dropping it.\",\"glances away, waiting for anything.\",gold0-orig,pos,unl,unl,unl,pos,The wind whips her clothes and hair.,She\nlsmdc0013_Halloween-54020,5627,Suddenly the phone goes dead. Someone,\"stares at the receiver, then hangs up.\",looks down on someone's bed and picks the door open.,\"walks slowly into the supply room, peers in through the floorboards.\",sits on an island bench at one of the doors.,hangs there and copies.,gold0-orig,pos,unl,unl,unl,unl,Suddenly the phone goes dead.,Someone\nlsmdc0013_Halloween-54020,5661,Someone pulls open the door and steps into the house. Someone,stands there a moment staring into the blackness.,follows someone out through the shop.,is not in trouble.,\"goes into the living room, and sits in front of him.\",enters the house clutching his phone.,gold1-orig,pos,unl,unl,pos,pos,Someone pulls open the door and steps into the house.,Someone\nlsmdc0013_Halloween-54020,5643,He recognizes it and races forward. Camera,\"tracks in to the station wagon, right up to the state emblem emblazoned on the side.\",explodes through many accompanying dogs.,is wearing a red bottle with his son's too.,watches from the cracks in the pews.,stops in front of the salesman.,gold0-orig,pos,unl,unl,unl,pos,He recognizes it and races forward.,Camera\nlsmdc0013_Halloween-54020,5638,\"For a moment he glances back at someone house, then starts down the quiet residential street. He\",turns away from the street.,follows with walkway owners as he has worked up the peephole in the street.,\"stops romantic for a moment, looking bored.\",taps his darkened shop.,\"enters the house in the garden, looking joyfully.\",gold0-orig,pos,unl,unl,unl,pos,\"For a moment he glances back at someone house, then starts down the quiet residential street.\",He\nlsmdc0013_Halloween-54020,5630,\"The street is quiet, dark and windy. Someone's car\",is parked in front of someone house.,stops outside a truck heading down the road towards the exit.,is driving down a highway.,is parked by the curb.,,gold0-orig,pos,unl,pos,pos,n/a,\"The street is quiet, dark and windy.\",Someone's car\nlsmdc0013_Halloween-54020,5628,\"Someone stares at the receiver, then hangs up. She\",crosses to the window and looks out toward someone house.,spanks her eyes and leaves.,looks up and someone glares.,tosses her phone back.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone stares at the receiver, then hangs up.\",She\nlsmdc0013_Halloween-54020,5621,\"Someone hears squeals, and rustling sounds across the phone. Someone\",continues to hear weird sounds.,shields him from the cloak.,moves a gun down the street.,sprints past the egg and continually turns.,moves back into the kitchen.,gold0-orig,pos,unl,unl,unl,pos,\"Someone hears squeals, and rustling sounds across the phone.\",Someone\nlsmdc0013_Halloween-54020,5654,The house looms closer and closer. Camera,moves up to the front of someone house.,\"goes with it, also tasteful through hostages.\",view shows someone being closely cropped in the spot.,emerges from drags's view.,yields away instantly.,gold0-orig,pos,unl,unl,unl,pos,The house looms closer and closer.,Camera\nlsmdc0013_Halloween-54020,5655,Camera moves up to the front of someone house. Someone,walks up to the front porch.,emerges from the shadows and leans back on the roof.,\"scowls and looks back, rinsing and marshy, then moves away.\",carries someone holding shoes on his lap.,looks up at someone.,gold0-orig,pos,unl,unl,unl,unl,Camera moves up to the front of someone house.,Someone\nlsmdc0013_Halloween-54020,5619,Someone hears someone's hello as the ghost grabs the phone. He,takes the telephone cord and wraps it around her neck.,grabs it and someone takes a bong from him.,\"yanks out a mail and glances at the other mart - vibrate, keeping the beau down.\",\"presses her eyes between her fingers and freezes, bringing the phone to a mirror with her hands over her head.\",\"rushes to someone, who still greets a little clearing near the path.\",gold0-orig,pos,unl,unl,unl,unl,Someone hears someone's hello as the ghost grabs the phone.,He\nlsmdc0013_Halloween-54020,5658,\"Someone thinks a moment, then looks to the street. She\",\"steps off the porch and walks around to the side of the house, camera tracking with her.\",is washed by the partially shuttered open.,\"crosses to where someone is separating, observing with someone.\",kicks a lightning bolt off the bat.,notices the staff approaching in the front.,gold0-orig,pos,unl,unl,unl,pos,\"Someone thinks a moment, then looks to the street.\",She\nlsmdc0013_Halloween-54020,5617,Someone holds the phone to her ear. The ghost,walks up slowly behind her.,\"looks up and smiles, surprised.\",does n't look at her.,paces away as someone gets to one side.,,gold0-orig,pos,unl,unl,unl,n/a,Someone holds the phone to her ear.,The ghost\nlsmdc0013_Halloween-54020,5625,Someone reaches up and pulls on the sheet. It,\"slides off the man, to reveal the grotesque halloween mask.\",\"go limp, covered in sex.\",'s the man's wand.,stops in front of her.,strikes someone's face.,gold0-orig,pos,unl,unl,pos,pos,Someone reaches up and pulls on the sheet.,It\nlsmdc0013_Halloween-54020,5649,\"Moving shot toward someone house, dark and ominous. The wind\",whips her clothes and hair.,\"rustles, breaking dust.\",changes to appearance and push ahead.,soaks a canopy and a low up.,,gold0-orig,pos,unl,unl,unl,n/a,\"Moving shot toward someone house, dark and ominous.\",The wind\nlsmdc0013_Halloween-54020,5613,She walks over to the phone. She,starts to dial the phone.,opens it and takes a seat.,pauses and takes her hand.,\"stops for a moment, then stops.\",tosses it into the mail rack then follows her father to her bedroom.,gold0-orig,pos,unl,unl,unl,unl,She walks over to the phone.,She\nlsmdc0013_Halloween-54020,5644,\"Camera tracks in to the station wagon, right up to the state emblem emblazoned on the side. Someone\",stands by his car glancing up and down the empty street.,points weakly at the hedge.,finds someone writing a chess swipe card.,runs up the hill to a police car and gets in through the market.,,gold0-orig,pos,unl,unl,unl,n/a,\"Camera tracks in to the station wagon, right up to the state emblem emblazoned on the side.\",Someone\nlsmdc0013_Halloween-54020,5629,She crosses to the window and looks out toward someone house. The street,\"is quiet, dark and windy.\",comes to a stop.,\"lifts down someone, interviewed.\",\"slows, followed by people, walking up the street.\",\"is dark, tracking beneath a gray popular, mission, and clapboard structure.\",gold0-orig,pos,unl,unl,unl,pos,She crosses to the window and looks out toward someone house.,The street\nlsmdc0013_Halloween-54020,5656,Someone walks up to the front porch. She,knocks on the door and rings the doorbell.,pulls off the flap where he looks at her.,catches sight of him.,does a hand spin on her bike.,walks down the stairwell into someone's apartment.,gold0-orig,pos,unl,unl,unl,pos,Someone walks up to the front porch.,She\nlsmdc0013_Halloween-54020,5615,Someone is sitting on the couch knitting. Someone,crosses to answer the phone.,has given her a car.,takes out his hand and turns out a tattoo.,has a pair of scissors on the crack.,is sitting on the sofa watching the news and gives someone the sunny smile.,gold1-orig,pos,unl,unl,unl,unl,Someone is sitting on the couch knitting.,Someone\nlsmdc0013_Halloween-54020,5662,Someone searches for the wall light. She,looks again into the darkness.,lowers the van upside down.,crosses to the door of the hooded sweatshirt.,is even under the seat with the anklet.,examines the cat claws.,gold0-orig,pos,unl,unl,unl,unl,Someone searches for the wall light.,She\nlsmdc0013_Halloween-54020,5640,\"Frustrated, he gets up and walks to the street. Slowly someone\",starts walking down the street toward the station wagon.,climbs into the back seat at the hospital.,\"approaches the waiting man, his back to the doorway.\",\"enters the station, gets up and walks away.\",looks up the camera.,gold0-orig,pos,unl,unl,pos,pos,\"Frustrated, he gets up and walks to the street.\",Slowly someone\nlsmdc0013_Halloween-54020,5659,\"She steps off the porch and walks around to the side of the house, camera tracking with her. She\",turns and walks through the breezeway between the house and garage around to the back door.,someone's not walking through.,turns into the corridor.,shows the portfolio and holds her gaze.,and someone go into the dining room.,gold1-reannot,pos,unl,pos,pos,pos,\"She steps off the porch and walks around to the side of the house, camera tracking with her.\",She\nlsmdc0013_Halloween-54020,5641,Slowly someone starts walking down the street toward the station wagon. Tracking shot with someone as he,walks up the street.,pulls off a heavy bar.,moves through the snack shop.,puts the receiver to his ear.,,gold0-reannot,pos,unl,unl,pos,n/a,Slowly someone starts walking down the street toward the station wagon.,Tracking shot with someone as he\nlsmdc0013_Halloween-54020,5616,Someone crosses to answer the phone. Someone,holds the phone to her ear.,checks again on page monitors.,turns and goes into the hall.,\"over the theater, someone and his aide stand at a booth still in a bar where someone joins one launches a beat.\",\"is gone, so she meager it.\",gold0-reannot,pos,unl,unl,unl,unl,Someone crosses to answer the phone.,Someone\nlsmdc0013_Halloween-54020,5646,She steps to the front door. She,puts the key to someone house in her pocket.,opens revealing her bedroom.,puts someone in a box.,heads to an archway.,finds someone asleep into bed.,gold1-reannot,pos,unl,pos,pos,pos,She steps to the front door.,She\nlsmdc0013_Halloween-54020,5634,Someone finally hangs up the phone. She,\"stands for a moment considering it, then turns and walks upstairs.\",applauds him and he makes his way through.,peers over his shoulder.,looks away from her camera.,\"ponders the room, then returns in the kitchen.\",gold1-reannot,pos,unl,pos,pos,pos,Someone finally hangs up the phone.,She\nlsmdc0013_Halloween-54020,5636,\"She looks at them a moment, then closes the door behind her. Someone\",sits in silence behind the hedge watching someone house.,\", she blows out a barrel of liquid and drops it to the ground.\",smooths out the window and pulls her outside the window.,\"at the window, someone goes up and kisses her as they kiss.\",looks out for someone and nods.,gold0-reannot,pos,unl,unl,unl,pos,\"She looks at them a moment, then closes the door behind her.\",Someone\nlsmdc0013_Halloween-54020,5647,She puts the key to someone house in her pocket. Someone,locks someone house and walks away out into the street.,dances in the house with her head against the seat.,jumps into the cell.,enters the classroom and opens a bottle of proper paint.,sits at a desk with a purse and a ticket.,gold1-reannot,pos,unl,unl,unl,pos,She puts the key to someone house in her pocket.,Someone\nlsmdc0013_Halloween-54020,5622,Someone tries to fight off the ghost. The man,pulls the cord tighter.,pulls into a sack with others.,moves toward canvas.,carefully pushes the paper away.,\"squeezes someone's hand, and crashes limply against it.\",gold0-reannot,pos,unl,unl,unl,pos,Someone tries to fight off the ghost.,The man\nlsmdc0013_Halloween-54020,5620,He wraps the cord around her neck. Someone,\"hears squeals, and rustling sounds across the phone.\",\"spits into someone's bag, making his way closer.\",hurries away from the museum's facade.,\"crawls up against the carved ceiling, lying down in bed.\",,gold0-reannot,pos,unl,unl,unl,n/a,He wraps the cord around her neck.,Someone\nlsmdc0013_Halloween-54020,5652,Someone's car sits there on the street. She,\"picks up her speed, now up the sidewalk.\",glances over her shoulder.,lowers her head once.,\"turns her head, peering at someone.\",\"pauses for a moment, then changes back to her.\",gold0-reannot,pos,unl,unl,unl,unl,Someone's car sits there on the street.,She\nlsmdc0013_Halloween-54020,5612,She is nude and looks beautiful and sensuous in the candlelight. She,walks over to the phone.,\"fastens the chair's tube, smokes a cigar, swigs from the container.\",looks as the owl charges at a fallen man.,offers his hand to someone.,\"looks at someone, who stands at the front door with a faint grin and sobs.\",gold1-reannot,pos,unl,unl,pos,pos,She is nude and looks beautiful and sensuous in the candlelight.,She\nlsmdc1015_27_Dresses-79852,5361,\"Someone opens her mouth, but no sound comes out. She\",\"stands awkwardly, biting her lip, her eyes brimming with tears.\",drops her long goggles to the docks.,nudges someone to rest her his cane.,hangs up and hears his introduction.,hugs a woman and woman.,gold0-orig,pos,unl,unl,unl,pos,\"Someone opens her mouth, but no sound comes out.\",She\nlsmdc1015_27_Dresses-79852,5362,\"She stands awkwardly, biting her lip, her eyes brimming with tears. Someone\",feels her friend's pain as someone hurries out of the restaurant.,glances down to her clock.,looks up as someone lounges near a pool's lockers.,\"tries to keep his grip under his arm, and gives him a weak smile.\",,gold0-orig,pos,unl,pos,pos,n/a,\"She stands awkwardly, biting her lip, her eyes brimming with tears.\",Someone\nanetv_n96adnrNnno,9121,\"Two Asians a man and a female are sitting down at a table before going to the inside of a gym. In the gym, several young girls\",begin doing gymnastics and performing before coming back and doing an interview with the reporter.,\"are playing rock, scissors and cleaning.\",use their somersaults to push the ball back and forth across the mat.,pass a group of kids who are practicing jumps on the wooden bar.,,gold0-orig,pos,unl,unl,pos,n/a,Two Asians a man and a female are sitting down at a table before going to the inside of a gym.,\"In the gym, several young girls\"\nanetv_n96adnrNnno,9122,\"In the gym, several young girls begin doing gymnastics and performing before coming back and doing an interview with the reporter. Next, a young man\",\"approaches the bars, does his routine, and then comes back to to his interview.\",raises his arms and shows your balance.,watches on a little game and displays the pole competition technique.,\"solves the rubix cube twice, up at three times in between minutes and 2 seconds.\",,gold0-orig,pos,unl,unl,unl,n/a,\"In the gym, several young girls begin doing gymnastics and performing before coming back and doing an interview with the reporter.\",\"Next, a young man\"\nanetv_bz9R-Xa5xqM,7944,A man wearing a black shirt stands in a living room with a red and black accordion. The musician,sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion.,continues playing the saxophone and sings to the camera.,sits and watches on the side at his feet.,is playing a drum set in his hand as an audience is watching.,plays a flute and sings.,gold0-orig,pos,unl,unl,unl,unl,A man wearing a black shirt stands in a living room with a red and black accordion.,The musician\nanetv_bz9R-Xa5xqM,7945,The musician sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion. The man then,demonstrates playing an accordian using a brown accordion.,begins moving around of his kayak to show kids playing object around.,wins the serve as people play for the camera while making hand gestures.,stops playing and continues to play the drums.,begins playing the saxophone while looking to the camera and smiling the instrument.,gold1-orig,pos,unl,unl,pos,pos,The musician sitting in a chair holding a black accordion and prepares to demonstrate how to play an accordion.,The man then\nanetv_mvWKOkRzfos,1168,A person falls into the sand. A woman in a blue shirt,is talking to the camera.,is standing next to a pool.,stands on the field holding an orange onto an orange ball.,sits in the pool.,is standing behind them watching her.,gold0-orig,pos,unl,unl,unl,unl,A person falls into the sand.,A woman in a blue shirt\nanetv_mvWKOkRzfos,1167,People are playing volleyball in the sand. A person,falls into the sand.,is playing a game of croquette.,is washing their hands.,stands on the field.,runs back and forth across the sand.,gold1-reannot,pos,unl,unl,unl,pos,People are playing volleyball in the sand.,A person\nanetv_ZOKC86lF6E8,1160,\"She is using frisbees to train a dog. She throws the frisbees, and the dog\",chases and catches them.,lands on the tray of dogs doing tricks.,jumps on to head.,jumps near the dog.,runs for the dog and tunes it.,gold0-orig,pos,unl,unl,unl,unl,She is using frisbees to train a dog.,\"She throws the frisbees, and the dog\"\nanetv_ZOKC86lF6E8,1159,A woman is in a backyard of a house. She,is using frisbees to train a dog.,is holding an iron and blow dries it.,pushes the lawnmower with a paintbrush.,is skiing after a day making it.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is in a backyard of a house.,She\nlsmdc3033_HUGO-14820,11350,\"Someone glances over her shoulder at her godmother. Smiling, someone\",steps up to someone.,marches back to the cashier's building.,steps out of the garden and playfully shoots her nuts in her hands.,\"walks into the house, watching someone.\",,gold1-orig,unl,unl,unl,unl,n/a,Someone glances over her shoulder at her godmother.,\"Smiling, someone\"\nanetv_2YSsqivrvR4,1137,The person begins playing the guitar while looking over to the camera. The man,continues playing and stops moving his hand out of frame.,sits back on his teeth and talks to another camera.,continues drumming while the camera pans around the television.,continues playing while the man continues harmonica the piano.,walks around a set of exercise equipment while pausing to continue playing.,gold0-orig,pos,unl,pos,pos,pos,The person begins playing the guitar while looking over to the camera.,The man\nanetv_2YSsqivrvR4,1136,A person is seen sitting on the edge of a bed carrying a guitar. The person,begins playing the guitar while looking over to the camera.,washes the dog with their hands and does the sit ups.,continues brushing the fur and pushing the leaves with the brush.,is then seen singing under a surface as well as marching back to the room.,picks up a shoe and scrubs it in a sink.,gold0-orig,pos,unl,unl,unl,unl,A person is seen sitting on the edge of a bed carrying a guitar.,The person\nlsmdc3012_BRUNO-4392,17958,He zips the tent back up. Someone,\"stalks back toward someone's tent, totally naked.\",covers her with a big sigh.,unfolds a letter and glares at the worktop.,sticks her tongue in the back.,sits on the edge.,gold0-orig,pos,unl,unl,unl,pos,He zips the tent back up.,Someone\nlsmdc3012_BRUNO-4392,17957,\"He unzips the flap, and peeks inside. He\",zips the tent back up.,reads them as they head inside.,throws a button at a number.,springs down to leave in front of him.,,gold0-orig,pos,unl,unl,unl,n/a,\"He unzips the flap, and peeks inside.\",He\nlsmdc3012_BRUNO-4392,17955,A green - hued night - vision vision shows four tents glows from within. Someone,\"creeps toward one, and bends close.\",ducks down and digs her arms around her.,gives the letter to him.,stifles a faint smile.,,gold0-orig,pos,unl,unl,pos,n/a,A green - hued night - vision vision shows four tents glows from within.,Someone\nlsmdc3012_BRUNO-4392,17956,\"Someone creeps toward one, and bends close. He\",\"unzips the flap, and peeks inside.\",places her hand over her mouth.,peeks away from the snake.,drives ahead on the irritated beast.,looks up from consciousness and stares.,gold1-orig,pos,unl,unl,unl,pos,\"Someone creeps toward one, and bends close.\",He\nlsmdc3012_BRUNO-4392,17954,\"Now, a time appears 2: 23 a. m. A green - hued night - vision vision\",shows four tents glows from within.,shows someone being shot by a giant figurine.,shows off hot travelers.,shows someone and the concert of a warm stage.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Now, a time appears 2: 23 a. m.\",A green - hued night - vision vision\nlsmdc3012_BRUNO-4392,17959,\"Now, words appear: One week later. Someone\",wears a buttoned - down shirt.,is at a tree in the garden.,pick up a shot and race to meet him.,eyes the worker as he saunters on.,sits in front of someone.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, words appear: One week later.\",Someone\nlsmdc3012_BRUNO-4392,17953,\"Someone continues to gaze upward. His legs crossed tightly, and his hands\",\"folded neatly on his knee, lowering his stare.\",are too tight loose.,drop at the back of his head.,\"arching the wound in his neck, his jaw knotted.\",are wheeled toward his waist.,gold0-reannot,pos,unl,unl,unl,unl,Someone continues to gaze upward.,\"His legs crossed tightly, and his hands\"\nanetv_O3HFalRZVts,12273,Then ham is place on the bread. Next beef,is place don the bread.,are marijuana and boiling vegetables.,\"is shown as cucumbers as items of pasta and cheese, then is prepared.\",are both removed and added.,,gold0-orig,pos,unl,unl,unl,n/a,Then ham is place on the bread.,Next beef\nanetv_O3HFalRZVts,12274,Next beef is place don the bread. Cheese is placed on top of the meet then various vegetables,are place on top of the sandwich.,start creating the pasta sandwich without the use of a knife.,are lifted onto the meat.,are placed through an oven.,,gold0-orig,pos,unl,pos,pos,n/a,Next beef is place don the bread.,Cheese is placed on top of the meet then various vegetables\nanetv_O3HFalRZVts,12272,Turkey is placed on the bred. then ham,is place on the bread.,is added to her pasta.,is placed in a bowl and some ingredients are added to the bowl called mango.,is sliced onto the pasta.,and little pie are being chopped and chopped.,gold1-orig,pos,pos,pos,pos,pos,Turkey is placed on the bred.,then ham\nanetv_O3HFalRZVts,13936,\"Then, the person puts lettuce, tomatoes, cucumber, onions and pepper. After, the person\",\"cuts in two the sandwich, wraps and put it in a bag.\",puts chocolate in the pan and arranges the bowl around the man's feet.,puts a pan of juice on the top of the cake.,removes a rubber cup with a sandwich and sprinkles seasoning.,takes a fork onto a salad and ties it onto the silver slices.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the person puts lettuce, tomatoes, cucumber, onions and pepper.\",\"After, the person\"\nanetv_O3HFalRZVts,13935,\"A person cuts a long bread and puts ham and cheese. Then, the person\",\"puts lettuce, tomatoes, cucumber, onions and pepper.\",uses a pallet chisel the cake together.,adds oil and lemon and salt in a silicone pan.,\"adds parsley, oil and oil and butter.\",,gold0-orig,pos,unl,pos,pos,n/a,A person cuts a long bread and puts ham and cheese.,\"Then, the person\"\nanetv_q4Oy6EDTJiM,18700,He is spraying a small dog with a hose. He,lifts the dog up out of the sink.,is rubbing the vent on the dog.,walks up to a crowd of people behind him.,does an occasional blow sweep across the floor.,runs to catch the hose in the end.,gold0-orig,pos,unl,unl,unl,pos,He is spraying a small dog with a hose.,He\nanetv_q4Oy6EDTJiM,18699,A man is bending over a sink. He,is spraying a small dog with a hose.,is putting a pair of shaving glass on the side of his face.,\"takes a rag from over the sink, putting it in his mouth.\",is carrying a shaving machine with a pressure washer.,,gold1-orig,pos,unl,unl,unl,n/a,A man is bending over a sink.,He\nanetv_q4Oy6EDTJiM,18701,He lifts the dog up out of the sink. He,takes his rubber gloves off.,starts scrubbing the shoe with the mop.,demonstrates his beer with it.,opens the door for the washing hose.,,gold0-orig,pos,unl,unl,unl,n/a,He lifts the dog up out of the sink.,He\nanetv_q4Oy6EDTJiM,3816,He notices that there is some poop at the bottom of the sink so he lifts the dog out of the sink and rinses the poop down the drain then places the dog back in the sink. When he is done washing the dog he,removes his gloves and throws them at the camera person.,sits and grabs it but it is n't and wakes it.,breaks it again.,arranges a towel on the toothbrush and rubs it back quickly.,carries the bucket in a sink.,gold1-reannot,pos,unl,unl,unl,unl,He notices that there is some poop at the bottom of the sink so he lifts the dog out of the sink and rinses the poop down the drain then places the dog back in the sink.,When he is done washing the dog he\nanetv_OMGTFZ9csg0,14730,A man is shown putting skis together at a rapid pace. The man,finishes up the skis and leaves his hat on top of the skis.,is filmed the river running away from the back.,\"kneels down a hill, slowly talking, then begins skating around.\",stops at the pole.,continues to speed along the course around the sand.,gold0-orig,pos,unl,unl,unl,unl,A man is shown putting skis together at a rapid pace.,The man\nanetv_r9eXOf4hvCE,12724,People are sitting down behind him watching. He,is lifting himself up on treadmill handles.,is blowing the omelette in half.,starts five kicks and flipping and the room kicks them.,is surfing on a set of jumping frisbees.,kneels and puts his hand in her.,gold1-orig,pos,unl,unl,unl,unl,People are sitting down behind him watching.,He\nanetv_r9eXOf4hvCE,12723,A man is lifting himself up on two bars. People,are sitting down behind him watching.,clap his hands on a slack line.,are fighting over a clock.,are shown riding on jumps.,are standing next to him.,gold0-orig,pos,unl,unl,unl,pos,A man is lifting himself up on two bars.,People\nanetv_r9eXOf4hvCE,9092,Several men are shown in various location lifting them selves up in a planking position on two bars. One boy,appears in the gym and does his backwards on the elliptical as he does multiple lift ups.,lifts the kid up and twirls it around his neck and throws him in the air one more time.,is seen pushing a chair past the camera while another man watches on a group.,stands by two shoes and continues to talk while several other men and watch people perform.,,gold0-orig,pos,unl,unl,unl,n/a,Several men are shown in various location lifting them selves up in a planking position on two bars.,One boy\nanetv_r9eXOf4hvCE,9093,\"One boy appears in the gym and does his backwards on the elliptical as he does multiple lift ups. As he is doing them, he\",concentrates extremely hard on holding his feet up ensuring that he does n't hit the boxing bag in front of him.,\"drops them off, then puts his hand before an inflated body and thrusts his arms.\",\"is shown again back again indoors, while people look on.\",looks up to see and goes in the opposite direction.,,gold0-orig,pos,unl,unl,unl,n/a,One boy appears in the gym and does his backwards on the elliptical as he does multiple lift ups.,\"As he is doing them, he\"\nanetv_XoCvj2IbVGE,1112,A person; s hand is seen turning a knob followed by their foot stepping on a button and a man holding up an iron. He,adjusts more settings while testing the iron and begins ironing a shirt on a table.,points to the man and then holds off the other side from the gym and eventually that seam running came into comfort.,makes a persons tap while a woman with a silver shirt and a close up of him.,continues to hurl the bike in moving the handles in the floor and when her landing she is shown in a flash while sitting on,mix with blue water using a picture of an open cleaner to make sure that may legs are bathed in the water and the light,gold1-orig,pos,unl,unl,unl,unl,A person; s hand is seen turning a knob followed by their foot stepping on a button and a man holding up an iron.,He\nanetv_XoCvj2IbVGE,1113,He adjusts more settings While testing the iron and begins ironing a shirt on a table. The men,continues to flip around the shirt and iron and en by showing off the ironing machine to the camera.,iron him down on a chair to clean out from underneath.,turn in his chair to watch.,continues ironing the iron and then folding the shirt out and ironing the other's with a shirt.,pull the shoe face and pants under the equipment to show how the machine works.,gold0-orig,pos,unl,unl,unl,pos,He adjusts more settings While testing the iron and begins ironing a shirt on a table.,The men\nanetv_Ig_AvatvYrk,5616,He takes the scissors too and trims his hair. He then,blow dries his hair.,uses the scissors to rub the rags all over his heads by using it.,continues rubbing color on her face and below in motion.,\"walks away to the camera, followed by his father walking over to the man who poses alongside her.\",,gold0-orig,pos,unl,unl,unl,n/a,He takes the scissors too and trims his hair.,He then\nanetv_Ig_AvatvYrk,5610,Then he takes a spray bottle and sprays his hair with water and combs it. He then,takes a razor and begins shaving the sides and the back of his head.,places a braid into the woman's hair and gives it to her face.,rubs the hairspray on the face then adds a soft fluid stain.,takes a garment and irons the curls in the well.,,gold0-orig,pos,unl,unl,unl,n/a,Then he takes a spray bottle and sprays his hair with water and combs it.,He then\nanetv_Ig_AvatvYrk,5619,He then combs the hair to style it. He,runs his fingers through the hair to finish off the look.,continues to properly blow the leaves while looking into the camera.,continues cutting his hair and smiling to the camera.,melts the skin into the glass.,,gold0-orig,pos,unl,unl,unl,n/a,He then combs the hair to style it.,He\nanetv_Ig_AvatvYrk,5617,He then blow dries his hair. He,takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair.,irons his wet shirt.,looks at the camera and cuts in two.,then trims the hair.,dries his face on a towel.,gold0-orig,pos,unl,unl,unl,pos,He then blow dries his hair.,He\nanetv_Ig_AvatvYrk,5609,There is a young man dressed in a black shirt going round in circles to show his hair from the front and back. Then he,takes a spray bottle and sprays his hair with water and combs it.,drops there falls on the table while the camera follows.,\"begins playing a parallel guitar while strumming, even hop and cymbals.\",pauses with a makeup brush on his cheek with a towel.,,gold0-orig,pos,unl,unl,pos,n/a,There is a young man dressed in a black shirt going round in circles to show his hair from the front and back.,Then he\nanetv_Ig_AvatvYrk,5611,He then takes a razor and begins shaving the sides and the back of his head. He,takes a pair of scissors and starts trimming the top part of hair.,then shows how to dip the razor onto the side showing the eye and shave it with the peeler.,picks it up and starts himself in the end.,continues shaving his hair while he continues to play in the mirror.,continues shaving his face.,gold0-orig,pos,unl,unl,unl,pos,He then takes a razor and begins shaving the sides and the back of his head.,He\nanetv_Ig_AvatvYrk,5618,He takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair. He then,combs the hair to style it.,smears it down to his eye while putting on lipstick.,uses his right hand to turn to be picking it up.,turns and hustles the man lotion down the lane until he is finished.,\"uses his feet to wipe degree cool in the device, then returns to shaving a man's beard.\",gold0-orig,pos,unl,unl,unl,unl,He takes a small amount of hair gel on his finger from the container and rubs it through the long section of his hair.,He then\nanetv_Ig_AvatvYrk,5615,He takes the razor again and shaves the sides. He,takes the scissors too and trims his hair.,is kneeling down next to a wall.,cuts and shaves all of the leg muscles.,holds up a sharpening tool while once complete he has his hands on his head.,,gold0-orig,pos,unl,unl,pos,n/a,He takes the razor again and shaves the sides.,He\nanetv_Ig_AvatvYrk,5612,He takes a pair of scissors and starts trimming the top part of hair. He,uses a black comb and scissors to point cut his hair.,looks at snowy brush with the brush.,sinks down in front of them as they sit down.,continue to do the same technique in order to demonstrate important features for what he is making.,,gold1-orig,pos,unl,pos,pos,n/a,He takes a pair of scissors and starts trimming the top part of hair.,He\nanetv_Ig_AvatvYrk,5614,He holds the hair in his hand as he trims it. He,takes the razor again and shaves the sides.,continues to show beard on the hair.,strokes her hair and hands them to her.,continues sharpening the brush against the hair.,rises into another braid.,gold0-orig,pos,unl,unl,unl,unl,He holds the hair in his hand as he trims it.,He\nanetv_Ig_AvatvYrk,5620,He runs his fingers through the hair to finish off the look. He,rotates around to show his hairstyle from all angles.,\"resumes blow octave by his hand, tossing the batons around.\",sees the woman in her room and shakes her arms.,\"fails to make up, but continues with his own.\",,gold0-orig,pos,unl,unl,unl,n/a,He runs his fingers through the hair to finish off the look.,He\nanetv_Ig_AvatvYrk,5613,He uses a black comb and scissors to point cut his hair. He,holds the hair in his hand as he trims it.,talked to the camera and braiding his hair.,solves the rubix cube using his feet.,uses a small blue comb to groom the medal.,rubs his palms in his hand and continues to run up and down the lawn.,gold0-orig,pos,unl,unl,unl,unl,He uses a black comb and scissors to point cut his hair.,He\nlsmdc1048_Gran_Torino-92457,9138,\"Someone sits down in an armchair, blood dripping from his fingers. He\",\"stares into the distance, a frown on his face and his features fixed and grim.\",find the lift sign that it reads ok.,glances at someone and takes a step forward.,steers it to someone.,steals a few from his quarter.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits down in an armchair, blood dripping from his fingers.\",He\nlsmdc1048_Gran_Torino-92457,9141,Someone knocks at someone's door. Someone,lets himself in as someone lights up a cigarette.,\"sits in district melodrama, sitting at a table with a bouquet of flowers.\",closes his eyes and blinks groggily.,waddles over and someone pushes him away.,turns away and gets out of her seat.,gold0-orig,pos,unl,unl,pos,pos,Someone knocks at someone's door.,Someone\nlsmdc1048_Gran_Torino-92457,9133,Someone is helped to a chair by her mother and someone. Blood,runs down her face and legs.,\", they sit on the table just before someone comes into the office and leans in.\",\", staring at the pie in a napkin, he is looking at a picture of the baby.\",leads someone in a difficult fashion and is dragged away by seeing that someone not being bored and his mother is laughing.,\"with weeping at the end, someone crosses quickly back up to the door someone someone's name lost.\",gold0-orig,pos,unl,unl,unl,unl,Someone is helped to a chair by her mother and someone.,Blood\nlsmdc1048_Gran_Torino-92457,9134,\"Blood runs down her face and legs. Appalled, someone\",\"stares at someone, his mouth hanging open.\",slides her hand up to someone's chest.,pulls her knees up to tie her backside and places it back on his shoulders.,gives a pleading look.,,gold0-orig,pos,unl,unl,unl,n/a,Blood runs down her face and legs.,\"Appalled, someone\"\nlsmdc1048_Gran_Torino-92457,9137,He walks into his kitchen and leans against a worktop. He,\"kicks a table, then marches into his front room and kicks over another table.\",wipes the paper off the table and touches the bottle over a piece top.,takes out his toothbrush and starts his horse.,pauses with her hair and brings a beer.,,gold0-orig,pos,unl,unl,unl,n/a,He walks into his kitchen and leans against a worktop.,He\nlsmdc1048_Gran_Torino-92457,9131,Someone sips a rice liquor. Someone,sees a car go by outside.,spits the thumbnail as someone pours ice into his glass.,tosses the drink on top a stack at customers.,looks around and drinks wine as he ducks.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sips a rice liquor.,Someone\nlsmdc1048_Gran_Torino-92457,9140,Someone comes and sits beside him. Someone,knocks at someone's door.,jogs down the steep dishes.,\"continues to listened, through the rubbish - strewn unnaturally, by people.\",keeps her eyes averted.,glances over at someone.,gold0-orig,pos,unl,unl,pos,pos,Someone comes and sits beside him.,Someone\nlsmdc1048_Gran_Torino-92457,9136,\"He walks away from someone's house, pushing the Colt into his belt. He\",walks into his kitchen and leans against a worktop.,steps to the window and stabs the window out as hand.,hammers it at something from behind and throws it again while someone's hand slides out of control.,lowers the duffel bag over his shoulder.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He walks away from someone's house, pushing the Colt into his belt.\",He\nlsmdc1048_Gran_Torino-92457,9139,The blood on his fists has dried. Someone,comes and sits beside him.,\"drops ahead of him, raising his fingers, forcing them to fall behind.\",transforms back into figure.,stares at him solemnly.,\"pulls himself out of the cage, carrying more flower petals.\",gold0-reannot,pos,unl,unl,pos,pos,The blood on his fists has dried.,Someone\nlsmdc3061_SNOW_FLOWER-29838,9727,She takes out her phone and dials. She,lifts it to her ear and waits.,pulls the cartridge out of her ear.,sits on the bed beside her.,calls to someone's cell from the radio station phone.,wanders out of the park and stops at a tv.,gold0-orig,pos,unl,unl,unl,unl,She takes out her phone and dials.,She\nlsmdc3061_SNOW_FLOWER-29838,9726,\"Someone sits at her car, staring off absently. She\",takes out her phone and dials.,sets down his laptop and finds an envelope staring at her.,\"nods and gets up, talks into the radio.\",\"pauses at the counter, picking up the package and trying to slip it down.\",lays out a short bag on a bench and shows her another shot.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits at her car, staring off absently.\",She\nlsmdc3061_SNOW_FLOWER-29838,9725,She gives her parents a determined look. Someone,\"sits at her car, staring off absently.\",gazes lovingly at the picture still on the pink drawing.,gives her a silver cellphone.,spots his friend on the street.,,gold1-orig,pos,unl,unl,pos,n/a,She gives her parents a determined look.,Someone\nanetv_fMRgMeDs9Ck,6779,A person is seen combing the person's hair while still using the trimmer. The man's head,is also seen being shaven on the side.,moves over to show off the man looking off into the distance.,moves back and fourth while creating a tattoo back.,is shown again several more times and speaks to the camera.,zooms in on take the razor and face it.,gold0-orig,pos,unl,unl,pos,pos,A person is seen combing the person's hair while still using the trimmer.,The man's head\nanetv_fMRgMeDs9Ck,6778,A mans hair is seen close up followed by a razor being used on the sides. A person,is seen combing the person's hair while still using the trimmer.,holds up a brush and demonstrating how to scrub off the bowl.,demonstrates how to groom various clips of shots of that ski.,is seen prepping a blue razor on his face while he brushes down his hair.,,gold0-reannot,pos,unl,unl,pos,n/a,A mans hair is seen close up followed by a razor being used on the sides.,A person\nanetv_X4l1wbSYQFo,18950,A woman is seen speaking to the camera while holding a bottle of lotion. She,pouts the lotion out on a spoon and then shows more in her hands.,is looking around little office while he is working how to do it.,mixes the liquid into a container as well as hold up her hand.,are shown sitting by a bottle spraying down a verdell.,is seen while kneeling and wiping her hands away.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera while holding a bottle of lotion.,She\nanetv_X4l1wbSYQFo,18951,She pouts the lotion out on a spoon and then shows more in her hands. She then,begins applying it all over her body while still speaking to the camera.,begins mixing the noodles all around the bowl by showing off the water and smiling in the side.,demonstrates how to iron a hair leg and prepping to properly wear a plastic smile.,moves to rotate the braid into the mask.,begins to demonstrate how she look at the soaked ice cream.,gold0-orig,pos,unl,unl,unl,unl,She pouts the lotion out on a spoon and then shows more in her hands.,She then\nanetv_X4l1wbSYQFo,1499,She is holding a bottle of fluid as she speaks. She then,spreads it onto her hands and applies it to her face.,begins brushing her teeth in the mirror.,places her hands over her mouth and tips the lens in its nose.,throws a liquid into the glass.,finishes before drying off to the sink.,gold0-orig,pos,unl,unl,unl,unl,She is holding a bottle of fluid as she speaks.,She then\nanetv_X4l1wbSYQFo,1498,A woman is talking in a bathroom. She,is holding a bottle of fluid as she speaks.,starts washing clothes with soap.,is pushing a button.,takes dirty rags out of a plastic container.,begins shaving her legs with an electric razor.,gold0-orig,pos,unl,unl,unl,pos,A woman is talking in a bathroom.,She\nanetv_WuO75Sb0Kgg,7530,He explains what are the correct ways to put on contact lenses and also how to keep them clean. A woman,is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case.,is shown tattooing and talking for a man how to contact people.,does various moves facing forward while smiling to the camera.,shows how to strip off of hair on and remove any contact lenses.,,gold0-orig,pos,unl,unl,unl,n/a,He explains what are the correct ways to put on contact lenses and also how to keep them clean.,A woman\nanetv_WuO75Sb0Kgg,19241,The lady wipes her hands on a towel near a sink. We,see her put them in a cleaning solution in a small clear jar.,see the baby singing and smiling through the door.,see another person spraying washer.,see the ending product.,see scenes from a class.,gold0-orig,pos,unl,pos,pos,pos,The lady wipes her hands on a towel near a sink.,We\nanetv_WuO75Sb0Kgg,7531,A woman is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case. Then the doctor also,demonstrates how to correctly wear the lenses.,uses a chalk brush to apply lipstick to the audience.,awakens to show another piercing from your eye that continues in to petals of a body.,takes a sip and patted her face.,gives a woman cut contacts contacts and shows them the lenses while keeping it under water and answering it with a silver iron.,gold0-orig,pos,unl,unl,unl,pos,A woman is demonstrating how to correctly wear lenses in the eyes as she takes the lenses out of the case.,Then the doctor also\nanetv_WuO75Sb0Kgg,7529,\"There's an optometrist seated with his patient in front of a phoropter in his clinic, talking about contact lenses and its maintenance. He\",explains what are the correct ways to put on contact lenses and also how to keep them clean.,did some roofing tricks to get their hair on the dryer.,\"is standing on his pole, posing for a bathroom camera and giving instructions showing how to wash your mouth.\",\"sniffles, takes the torch desperately in his hand.\",,gold0-orig,pos,unl,unl,unl,n/a,\"There's an optometrist seated with his patient in front of a phoropter in his clinic, talking about contact lenses and its maintenance.\",He\nanetv_WuO75Sb0Kgg,19239,An eye doctor talks as we cut to scenes of a woman putting her contacts in. We,see the doctor put the contact in the for the lady.,see the girl speaking and the child.,see a lady being laid out in a room as a man talking into the camera.,inserts the contact lens into his eye.,see nothing as someone at the camera of her standing.,gold1-orig,pos,unl,unl,unl,unl,An eye doctor talks as we cut to scenes of a woman putting her contacts in.,We\nanetv_WuO75Sb0Kgg,19240,We see the doctor put the contact in the for the lady. The lady,wipes her hands on a towel near a sink.,screams to the camera and spins again.,puts contact lens in her eye.,put a contact around her eye.,,gold0-reannot,pos,unl,pos,pos,n/a,We see the doctor put the contact in the for the lady.,The lady\nanetv_WuO75Sb0Kgg,19242,We see her put them in a cleaning solution in a small clear jar. We,see the lady and a doctor in the office talking.,then explain the parts quickly as the water comes nearer and show more proper placement in the substance.,then measure the wall of the white wall and they part the images then makes a billiards save.,see the frilly stick on a rack.,see the ladies swimming.,gold0-reannot,pos,unl,unl,unl,unl,We see her put them in a cleaning solution in a small clear jar.,We\nanetv_WuO75Sb0Kgg,19238,We see a green swirling opening scene. An eye doctor,talks as we cut to scenes of a woman putting her contacts in.,is standing in a room as a man with a man between him knees takes his arm.,walks down the street followed by another man in a round crowd filled city uniforms.,is interviewed and then see how to put it in an aerosol can.,,gold0-reannot,pos,unl,unl,unl,n/a,We see a green swirling opening scene.,An eye doctor\nanetv_lTFCUuLtUJs,17298,A large group of people are seen standing around a track leading into several people running down the road. A woman,is seen speaking to the camera while several people are seen running and drinking water.,walks over onto the field as well as playing in front of a casino.,removes once and jump roping with two others while walking.,leads the group around a track while others watch on the side.,is then seen lifting two bars on the ground one after the other.,gold0-orig,pos,unl,unl,pos,pos,A large group of people are seen standing around a track leading into several people running down the road.,A woman\nlsmdc0023_THE_BUTTERFLY_EFFECT-59534,9683,\"She sees someone's nose bleed and her eyes go wide. Someone, still stunned,\",can do little but stare from the floor.,drops his hollow gaze.,\"thrusts the dagger at someone, who stands back at someone, clutching furiously at the chest.\",\"pushes off the hood, gasping for breath, sighs and walks out.\",\"come on, casually confidently down a green - bending wall behind her.\",gold1-orig,pos,unl,unl,unl,unl,She sees someone's nose bleed and her eyes go wide.,\"Someone, still stunned,\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59534,9681,Someone whips around to see someone watching him. Someone,lurches back from the shock of seeing someone and falls to the floor.,switches on a radio.,removes his sunglasses from his coat sleeves.,shoots a bullet through the weapon which hit him in his face disintegrates with a thud.,,gold0-orig,pos,unl,unl,unl,n/a,Someone whips around to see someone watching him.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59534,9682,Someone lurches back from the shock of seeing someone and falls to the floor. She,sees someone's nose bleed and her eyes go wide.,raises her arms to the side and pulls the kayak away.,leaps onto the floor pulling out the fly up over the ship.,gives a high five.,is transfixed over the bunny's faces.,gold1-orig,pos,unl,unl,unl,unl,Someone lurches back from the shock of seeing someone and falls to the floor.,She\nanetv_hUzsmIWojH0,16549,A man runs up to a beam and jumps over it several times. He,makes at least six attempts.,mounts the tightrope and crashes into the air.,jumps on the horse and runs his hand across the pole.,stands up the person and tries climbing on it.,lands on the ground and jumps back down on the mat.,gold1-reannot,pos,unl,unl,unl,pos,A man runs up to a beam and jumps over it several times.,He\nanetv_DBGea9pST1A,16107,A snow plow plows snow along a road at night. A man,shovels snow to form a path from his door.,slings a bag in the hospital.,is riding a car.,saunters down a driveway.,,gold1-orig,pos,unl,unl,pos,n/a,A snow plow plows snow along a road at night.,A man\nanetv_DBGea9pST1A,557,A person is pushing a snow blower through snow. A man,is shoveling his walk way to his home.,is picking up a snow blower.,uses the yellow cape to hit something in the snow.,is putting a cigarette in his mouth.,is cleaning a car up snow driveway.,gold0-orig,pos,unl,unl,unl,unl,A person is pushing a snow blower through snow.,A man\nanetv_DBGea9pST1A,16108,A man shovels snow to form a path from his door. A rural road,is shown snowed over.,occurs to the sun.,is fired with some trees.,is seen with people idling as cameraman.,,gold0-reannot,pos,unl,unl,unl,n/a,A man shovels snow to form a path from his door.,A rural road\nanetv_D-BRqQhL74Q,9649,Three girls are seen holding a rope with one walking away and two playing tug of war. Two girls switch places and the final two,compete against one another playing tug of war back and fourth.,begins walking back to the the front.,helps with one another while more people walk around to help it.,continue to spin and kick in unison the whole same time.,,gold0-orig,pos,unl,unl,unl,n/a,Three girls are seen holding a rope with one walking away and two playing tug of war.,Two girls switch places and the final two\nanetv_ow9bWn5gOvg,113,\"A man in is talking in a kitchen with a knife, a chopping board and bowl in front of him. He\",lifts a sharpening stone from the yellow green bowl filled with water and talk about if for a while.,are cutting with a cutting machete.,is marking something from his plate before the game is off again.,\"is shaving his ears, while maneuvering around his neck while also pulling away the ski.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A man in is talking in a kitchen with a knife, a chopping board and bowl in front of him.\",He\nanetv_ow9bWn5gOvg,114,\"He lifts the knife and starts sharpening the knife with the stone and the talking continues. He shows something and put between the stone and knife but put it away before sharpening the knife, he\",repeat the procedure before dipping the knife in water.,\"hurls it into strips, popping it in half.\",cuts off and brings his glass to it.,puts on a grimace and lays on the ground.,,gold0-orig,pos,unl,unl,pos,n/a,He lifts the knife and starts sharpening the knife with the stone and the talking continues.,\"He shows something and put between the stone and knife but put it away before sharpening the knife, he\"\nanetv_ow9bWn5gOvg,601,Man is standing in a kitchen in front of a black counter. the man,is taking out a grey stone from the green plastic bowl.,is eating behind a table chopping lettuce.,sharpens a shotgun and puts the knife on the cooker.,is holding a knife and using a knife with a fork.,,gold1-orig,pos,unl,unl,pos,n/a,Man is standing in a kitchen in front of a black counter.,the man\nanetv_-l5e1zVzQOQ,2645,A large screen shows the band above. People,play the guitar on the stage.,dives into the pool.,are starting to achieve the large formation.,are playing in a railway line.,return to the game.,gold1-orig,pos,unl,unl,unl,pos,A large screen shows the band above.,People\nanetv_-l5e1zVzQOQ,2643,A band plays music on stage. A man,plays the drums intensely.,appears on the audience.,walks in front of headphones on the drums.,sings while shown arguing.,plays instruments in the gym.,gold0-orig,pos,unl,unl,unl,unl,A band plays music on stage.,A man\nanetv_-l5e1zVzQOQ,2644,A man plays the drums intensely. A large screen,shows the band above.,shows a colleague hitting the instrument machine.,is shown on black screens.,appears and the word m appears pop up on the screen.,,gold0-orig,pos,unl,pos,pos,n/a,A man plays the drums intensely.,A large screen\nanetv_On4V94fVLpg,18368,A females gives an interview on carving kit. Children,hold pumpkins with smiles on their faces.,\"fly out on a gift tree where they sit, get a price and head across the lawn.\",\"take notes and subscribe as signs on it, then paper.\",creep right away from the wall and go holding the vacuum equipment.,pour both paint on a wooden nail.,gold0-orig,pos,unl,unl,unl,unl,A females gives an interview on carving kit.,Children\nanetv_On4V94fVLpg,18369,Children hold pumpkins with smiles on their faces. A man,pulls the top of a pumpkin off.,lets a man out wearing a hat.,walks at the diver's eye.,on a horse stands and rides a horse.,stands at the edge of the yard.,gold1-orig,pos,unl,unl,unl,pos,Children hold pumpkins with smiles on their faces.,A man\nanetv_On4V94fVLpg,18367,A person carves a pumpkin. A females,gives an interview on carving kit.,stands nearby and washes his cake knife.,adds olive oil to the pumpkin.,starts painting off a paper and then lights them.,,gold0-orig,pos,unl,unl,unl,n/a,A person carves a pumpkin.,A females\nanetv_On4V94fVLpg,18370,A man pulls the top of a pumpkin off. The lady,presents a knife and a smaller knife.,pulls the bow and starts ironing.,begins slicing the cat's claws.,stirs the pan then cooks it.,,gold0-orig,pos,unl,unl,unl,n/a,A man pulls the top of a pumpkin off.,The lady\nanetv_On4V94fVLpg,18371,The lady presents a knife and a smaller knife. Two people,sit with papers in front of them.,are then seen wearing cowboy boots with scissors and the camera pans to many people on the ground.,put wax on oven.,speak to the camera and continue talking.,,gold0-orig,pos,unl,unl,pos,n/a,The lady presents a knife and a smaller knife.,Two people\nanetv_Cb3IonOw0bs,1945,The lady then shaves her legs with an electric shaver. We,see the lady smile and continue to shave her legs.,on the machine and we see screens.,\", the styling woman sprays in the sink.\",\"up red crossed, they pull back and forth and turn to the camera.\",then shows the lenses of an eye and a eye contact with lenses.,gold0-orig,pos,unl,unl,unl,unl,The lady then shaves her legs with an electric shaver.,We\nanetv_Cb3IonOw0bs,1944,The camera zooms out and we see it's a set with camera equipment around. The lady then,shaves her legs with an electric shaver.,uses a rowing violin to it.,jumps forward and kneels in front of the ground.,sits down on her lap and does a spin opposite on the end.,takes some lights and rubs the piece of wood off the floor.,gold0-reannot,pos,unl,unl,unl,unl,The camera zooms out and we see it's a set with camera equipment around.,The lady then\nanetv_Cb3IonOw0bs,1943,A lady sits in a tub and rubs her legs with water while wearing an exfoliater glove. The camera zooms out and we,see it's a set with camera equipment around.,see the lady using the slack lens to see a little girl.,see the taping.,see the finished product again.,see a bright title screen painting a colonial fountain dotted with green paint.,gold0-reannot,pos,unl,unl,unl,pos,A lady sits in a tub and rubs her legs with water while wearing an exfoliater glove.,The camera zooms out and we\nanetv_bNuRrXSjJl0,14878,A woman is seen standing ready on a diving board and leads into her holding out her arms and performing an impressive dive. The woman,is seen several more times diving into the pool and coming to the surface.,glances off in the distance while being captured.,begins performing several tricks and ends by tying up her feet while the camera captures her movements.,finishes and speaks and ends with her cheering and laughing and presenting herself to the camera.,begins flipping herself several times and swinging herself backward and throwing her arms back.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen standing ready on a diving board and leads into her holding out her arms and performing an impressive dive.,The woman\nanetv_Ksbk5rtqVd0,2886,She pours some product into her palm. She,starts wiping the product onto her face.,\"lifts the receiver to her ears, then blows a smoke.\",sprays her dog with the brush.,pours a drink into the water.,adds some frosting and holds it at her regular form.,gold0-orig,pos,unl,unl,unl,unl,She pours some product into her palm.,She\nanetv_Ksbk5rtqVd0,2885,A woman in a white shirt is sitting down. She,pours some product into her palm.,play something on a track with some sticks.,throws some paper into the camera.,is holding a bow - arrow.,is walking back and forth with an intro.,gold0-orig,pos,unl,unl,unl,unl,A woman in a white shirt is sitting down.,She\nanetv_iYxj8a1TPYk,2876,A basketball player is seen dribbling a ball in various shots for the camera and leads into the player making baskets over and over again. The man,is then seen speaking to the camera and transitions into him scoring several more baskets.,picks the instrument up and lays it down on the floor.,is then shown hitting an arrow on the board several times.,ends up running back to the cheer coach and observes some of that jump from the pole.,on all sides walks away from the camera.,gold0-orig,pos,unl,unl,unl,pos,A basketball player is seen dribbling a ball in various shots for the camera and leads into the player making baskets over and over again.,The man\nanetv_fpWOf1DR1oA,18655,A predominately dark dart board is empty. A guy,throws a dart at the dart board.,digs into a bucket in a white bath tub.,holds up two swords and prepares them to take their turns and hit them red.,signals for the teen to enter.,,gold0-orig,pos,unl,unl,pos,n/a,A predominately dark dart board is empty.,A guy\nanetv_X82bc2v5kcM,5105,A man is seen speaking to the camera while holding a bottle of lotion and then spread it throughout a woman's hair. He then,brushes the hair and blow dries it while styling it into a certain look.,pushes the hair off his face while ending with the close credits till he finishes.,wipes down the woman's hair and then begins washing up all hair in the mirror.,demonstrates how to properly put more lotion into his mouth and showing how to properly rub his face.,uses different brushes to wrap a hair around the girl's back while smiling to.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera while holding a bottle of lotion and then spread it throughout a woman's hair.,He then\nanetv_X82bc2v5kcM,13740,\"He uses different creams and tools to style her hair. When he is done, he\",shows off the final product.,puts the shirt into his mouth before tying it down.,talks because he is very in a demonstration about what he is playing in.,brushes a handful of hair from his hair and smiles to the camera.,lifts the contact across his head.,gold0-orig,pos,unl,unl,unl,unl,He uses different creams and tools to style her hair.,\"When he is done, he\"\nanetv_X82bc2v5kcM,5106,He then brushes the hair and blow dries it while styling it into a certain look. He finishes the cut and dry and the woman,sees herself in the mirror.,brushes it from hair.,walks away from the girl.,continues cutting and cutting her hair.,starts close to shoulders and showing the choir moments.,gold0-orig,pos,unl,unl,unl,unl,He then brushes the hair and blow dries it while styling it into a certain look.,He finishes the cut and dry and the woman\nanetv_x4DuEusRR7Q,14399,A person is seen swimming the depths of a pool floor. The man,\"comes up before the camera, his face showing.\",plays a zumba game against one as a woman holds a scuba diver in the watches.,surfaces and the man takes off from the top.,stops by his windows and starts playing.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen swimming the depths of a pool floor.,The man\nanetv_x4DuEusRR7Q,14400,\"The man comes up before the camera, his face showing. He then\",swims slowly back toward the surface.,shaves his leg again.,demonstrates how to put the tire on your leg in slow motion.,shaves it with both hands.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The man comes up before the camera, his face showing.\",He then\nlsmdc3037_IRON_MAN2-16883,6510,\"Someone glances up at them and smiles. In his room, someone\",talks on the phone while the two dead guards hang from the ceiling behind him.,unties his shirt in the misty pants.,shovels something out of his garage.,sits in an armchair as he strolls.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone glances up at them and smiles.,\"In his room, someone\"\nlsmdc1031_Quantum_of_Solace-84243,11721,\"In a dressing room, makeup is applied and costumes are checked. One actress\",is having a wound painted on her forehead.,pours glasses on her cheeks.,opens the letter and sits back down.,is his school uniform reveals someone standing behind a reception desk when someone is on.,,gold0-orig,pos,unl,unl,unl,n/a,\"In a dressing room, makeup is applied and costumes are checked.\",One actress\nlsmdc1031_Quantum_of_Solace-84243,11718,They drive through quiet cobbled streets past a bubbling fountain. Someone,is following his gps tracker.,crawls onto a deserted floor.,bashes in their armored truck atop the armored truck.,notices a hula stickman watching someone.,arrives in his cousin's building.,gold0-orig,pos,unl,unl,unl,unl,They drive through quiet cobbled streets past a bubbling fountain.,Someone\nlsmdc1031_Quantum_of_Solace-84243,11735,Someone is back stage behind the set which features huge moving eye. He,climbs up a walk way.,lands in a glass of the office below.,performs as well as a hula hoop dances.,\"glares faintly, frowns, then pushes himself back and chews.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone is back stage behind the set which features huge moving eye.,He\nlsmdc1031_Quantum_of_Solace-84243,11731,\"He picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece. Someone\",\"does the same, settling in his chair.\",sprays the newspaper and trims the end of it.,\"eyes a song out across the way, then starts to read it.\",\"is a little enraptured, but transformed seems to be bored.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece.\",Someone\nlsmdc1031_Quantum_of_Solace-84243,11725,Someone's crony is carrying a bag. Someone,looks down at the revelers from a balcony.,hands him the cup.,walks past the museum to where fun - teresa and safe - filled photos across the valley.,\"leads the way to a man, then drifts down to the floor and stops in front of a desk.\",comes over to reads and a doctor wearing a gray hat.,gold1-orig,pos,unl,unl,unl,unl,Someone's crony is carrying a bag.,Someone\nlsmdc1031_Quantum_of_Solace-84243,11728,Someone follows the guests with the gift bag in the toilets. The crowds,move into the auditorium.,are panicked and leave the store.,work in the yard with his many children.,get into the car.,watch glumly at her coffee table.,gold1-orig,pos,unl,unl,unl,unl,Someone follows the guests with the gift bag in the toilets.,The crowds\nlsmdc1031_Quantum_of_Solace-84243,11717,Someone's car arrives in town. They,drive through quiet cobbled streets past a bubbling fountain.,reports are quick to talk about the london activity.,walk deeper into the river.,pass outside a police field.,,gold0-orig,pos,unl,unl,pos,n/a,Someone's car arrives in town.,They\nlsmdc1031_Quantum_of_Solace-84243,11719,Someone is following his gps tracker. Someone,arrives at a large very modern leisure complex.,walks into the car facing wheels again.,shows an alarm clock.,carries a dozen banyan pots.,stops rowing - - and his men end - - holding.,gold0-orig,pos,unl,unl,unl,unl,Someone is following his gps tracker.,Someone\nlsmdc1031_Quantum_of_Solace-84243,11724,Someone joins the theatergoers wearing a tuxedo. Someone's crony,is carrying a bag.,falls into a meeting of belly cars.,wears a black leotard.,features someone's uniform.,,gold0-orig,pos,unl,pos,pos,n/a,Someone joins the theatergoers wearing a tuxedo.,Someone's crony\nlsmdc1031_Quantum_of_Solace-84243,11730,Someone empties the bag into a basin. He,\"picks up a small pin in the shape of a letter q, then opens up a box and takes out a small earpiece.\",prepares food to work in the garden.,ducks the sharp blade under the syringe.,\"steps on the tv at the laboratory, produce more cocaine from his teacup.\",looks out at the water cooler.,gold1-orig,pos,unl,unl,unl,pos,Someone empties the bag into a basin.,He\nlsmdc1031_Quantum_of_Solace-84243,11714,He shows someone's photo on his camera. He,tosses the phone to the surly agent who studies the picture.,takes out his jackets.,goes over some paperwork.,throws it to her after going back.,,gold0-orig,pos,unl,unl,pos,n/a,He shows someone's photo on his camera.,He\nlsmdc1031_Quantum_of_Solace-84243,11723,\"Someone walks down a plain white corridor, opens a door and steps inside. Guests\",gather in a reception area in the form of a cube built over the theater entrance.,\", someone climbs into a tunnel with an elevator.\",thoughtfully steals himself from a dressing area.,looks inside as he enters the front.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone walks down a plain white corridor, opens a door and steps inside.\",Guests\nlsmdc1031_Quantum_of_Solace-84243,11715,He tosses the phone to the surly agent who studies the picture. He,closes the phone and hands it back.,lays in the invisibility line.,steps up to the heavyset woman and someone appears.,looks from someone to someone.,,gold0-orig,pos,unl,unl,pos,n/a,He tosses the phone to the surly agent who studies the picture.,He\nlsmdc1031_Quantum_of_Solace-84243,11729,Someone and his friend carrying their gift bags are welcomed into a private box. Someone,empties the bag into a basin.,eyed looks on a young leather sofa.,picks up the framed certificate.,hands the box to someone who takes it.,morphs into someone's frustrated face.,gold0-orig,pos,unl,unl,unl,unl,Someone and his friend carrying their gift bags are welcomed into a private box.,Someone\nlsmdc1031_Quantum_of_Solace-84243,11732,\"Someone does the same, settling in his chair. The guest someone followed in\",is slumped in the corner.,gapes form a bolt as well.,respect to their new moves.,\"surprise as he watches the train, obscuring his father's picture.\",front of the tv.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone does the same, settling in his chair.\",The guest someone followed in\nlsmdc1031_Quantum_of_Solace-84243,11734,The singer is raised up the set on a decorator's cradle. Someone,is back stage behind the set which features huge moving eye.,fires blood at someone's as an ambulance approaches.,\"winks at the bars, hangs his head, and stares off.\",grabs the screen door.,,gold0-reannot,pos,unl,unl,unl,n/a,The singer is raised up the set on a decorator's cradle.,Someone\nlsmdc1031_Quantum_of_Solace-84243,11739,The man stares at him. From a high gantry someone,looks out at the vast packed amphitheater.,climbs in to ram a high wall.,puts her arms sideways and glances out.,trains his paws on the handlebars.,,gold1-reannot,pos,unl,unl,unl,n/a,The man stares at him.,From a high gantry someone\nlsmdc1031_Quantum_of_Solace-84243,11722,One actress is having a wound painted on her forehead. Someone,\"walks down a plain white corridor, opens a door and steps inside.\",lights her cigarette and the rest of the dirt is changed over and furry.,'s footsteps emerge from the stairwell.,sorts clothing on the table monuments up with restless eyes.,grudgingly suppresses a whistle.,gold1-reannot,pos,unl,pos,pos,pos,One actress is having a wound painted on her forehead.,Someone\nanetv_43gst-Mw43s,8965,A house is shown with a sentence of how to wash the rooftop. the numbers and address,are shown in the advertising.,of the car is overlaid.,of the likeness are shown.,are displayed over the desk.,,gold1-orig,pos,unl,unl,unl,n/a,A house is shown with a sentence of how to wash the rooftop.,the numbers and address\nanetv_43gst-Mw43s,8964,A comic of a man telling how to wash with a detergent. a house,is shown with a sentence of how to wash the rooftop.,fills the screen with a hot spray.,comes along and unlatches in the olive carpet as he blows.,\"is shown, with the rest of the neighbors.\",,gold0-reannot,pos,unl,unl,pos,n/a,A comic of a man telling how to wash with a detergent.,a house\nanetv_zSeLjjo3KF0,17414,A man stands along the edge of a bridge where he is preparing his harness to do a free fall. He,throws himself off the side of the bridge as the people watch him descent into the fall.,dives into the forest red and soars down from a room behind him.,runs down the river with a surf.,jumps off the bridge and lands at the top of three jumps.,,gold0-orig,pos,unl,unl,unl,n/a,A man stands along the edge of a bridge where he is preparing his harness to do a free fall.,He\nanetv_zSeLjjo3KF0,17630,A man stands on the edge of a bridge while another man checks his bungee jumping harness. The first man,grips the bridge railing and prepares to jump off the bridge.,lets go of the rope.,puts a rope around his neck then jumps off his board and ties the bars on the bridge.,jumps on a boat while jumping into the competition doing tricks and flips.,rides a blue bow.,gold0-orig,pos,unl,unl,unl,unl,A man stands on the edge of a bridge while another man checks his bungee jumping harness.,The first man\nanetv_zSeLjjo3KF0,17631,The first man grips the bridge railing and prepares to jump off the bridge. The first man,jumps off the bridge while the second man throws a rope down alongside.,is then pictured outside indoors.,greets greets man.,fails to kiss one man who make a 360 but falls without jumping off.,falls into the wall and gets pulled over the cement struts walking on the jump rope.,gold0-reannot,pos,unl,unl,pos,pos,The first man grips the bridge railing and prepares to jump off the bridge.,The first man\nlsmdc3035_INSIDE_MAN-2025,2670,They interrogate the narrow eyed man. He,shrugs and looks down.,pulls her into an embrace as they drive on.,plunges into the pool.,is a broad - wealthy white faced bearded zombie.,,gold0-orig,pos,unl,unl,unl,n/a,They interrogate the narrow eyed man.,He\nlsmdc3035_INSIDE_MAN-2025,2671,He shrugs and looks down. They,show the jewish man snapshots of someone and the lanky guy.,turns to an offscreen someone.,finds it in the room with reading papers.,rest a mile away from the fire.,stop and look at the small - wall floor.,gold0-orig,pos,unl,unl,unl,unl,He shrugs and looks down.,They\nlsmdc3035_INSIDE_MAN-2025,2669,Someone studies the instant photos of the hostages. His father,rubs the boy's back.,approaches an open - plan office and takes out a card from the clerk's desk.,aims upward and snatches the note.,\"stares at the coin, closing his eyes.\",considers with a defiant look.,gold0-orig,pos,unl,unl,pos,pos,Someone studies the instant photos of the hostages.,His father\nlsmdc1040_The_Ugly_Truth-8604,3387,Someone licks the red Jell - O off one of the girl's fingers and gives an approving nod. Someone,'s taking deep breaths as someone comes in with the bikini babes.,moves himself around as he heads for her doors.,joyfully joyfully kisses his cheeks.,returns to the screen.,spots someone in her kitchen at the corner of her room.,gold0-reannot,pos,unl,unl,unl,unl,Someone licks the red Jell - O off one of the girl's fingers and gives an approving nod.,Someone\nanetv_E6LJROCxQPA,13536,A person is seen walking across the yard leading into a long rope. The man,jumps on the rope and attempts to walk across it.,runs up pushing a horse around a dirt area over and over.,continues walking around the body and ends by walking away.,continues speaking as others watch on the side.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen walking across the yard leading into a long rope.,The man\nanetv_E6LJROCxQPA,13537,The man jumps on the rope and attempts to walk across it. He,continues walking and leads into him falling off.,jumps over the side of the pole.,spins and lands again about stacks of rock.,jumps off the stilts and jumps after the rope.,shows a point of jumping to go rope with the horses.,gold0-orig,pos,unl,unl,unl,unl,The man jumps on the rope and attempts to walk across it.,He\nanetv_A6DBt7UgWEg,8542,A man is shown stretching before engaging in a tennis match in front of a crowd. He then,speaks to the crowd amongst flashing cameras through a microphone.,begins performing flips and tricks around and looking into the distance.,jumps over the bar and begins walking to the end.,demonstrate how to hold the handle.,poses in front of judges and eventually reaches the ground once more.,gold0-orig,pos,unl,unl,unl,pos,A man is shown stretching before engaging in a tennis match in front of a crowd.,He then\nanetv_A6DBt7UgWEg,8543,He then speaks to the crowd amongst flashing cameras through a microphone. The man,\"is occasionally shown playing tennis, then goes back to speaking to the group.\",swims along the pool as the scene returns to his turn.,continues getting on the kayak while talking and a large video show a video of people canoeing.,continues running back and fourth to one another and ends by laughing to the camera.,bows his head and dances with the boy.,gold0-reannot,pos,unl,unl,unl,unl,He then speaks to the crowd amongst flashing cameras through a microphone.,The man\nanetv_A6DBt7UgWEg,8541,\"A spinning disc with circles of color are shown, panning out a a film reel and the words films of india. A man\",is shown stretching before engaging in a tennis match in front of a crowd.,is shown giving two scuba moves for a fire while an audience watches as well.,is explaining how to open a metal door that they are working.,steps into frame and is shown using his razor and talking.,,gold1-reannot,pos,unl,unl,unl,n/a,\"A spinning disc with circles of color are shown, panning out a a film reel and the words films of india.\",A man\nanetv_LB1A7BobPwg,2596,\"They push their cards and drink beer, then pull cards and drink beer. The bartender\",spits the beer back in the glass.,clinks the glass for his uncle.,is followed by one man pouring liquor into a bowl of alcohol.,pours smoke into a pitcher and pours out the cups.,,gold0-orig,pos,unl,unl,unl,n/a,\"They push their cards and drink beer, then pull cards and drink beer.\",The bartender\nanetv_LB1A7BobPwg,2592,We see the white title screen. We then,see a bartender talking to two people in a bar.,see the ending title screens.,see the new ending screen.,see see group of people playing with one another.,\"see a boat in a pool, where the volleyball outdoors is shown.\",gold0-orig,pos,unl,unl,unl,unl,We see the white title screen.,We then\nanetv_LB1A7BobPwg,2598,The bartender looks at the camera and speaks. We,see the end title screen.,strolls through someone's office.,see the drill screen on the left.,\"to another man, the young man takes a bottle of two.\",see a man standing on a front facing the camera.,gold1-orig,pos,unl,unl,unl,unl,The bartender looks at the camera and speaks.,We\nanetv_LB1A7BobPwg,2593,We then see a bartender talking to two people in a bar. The man,puts his arm behind his back.,grabs a cup and drinks from the pool.,pass the bar on a cold martini counter.,places his glasses on the counter to take a drink.,put alcohol in the mouth as she speaks.,gold1-orig,pos,unl,unl,unl,unl,We then see a bartender talking to two people in a bar.,The man\nanetv_LB1A7BobPwg,2597,The bartender spits the beer back in the glass. The bartender,looks at the camera and speaks.,brings her cup to her mouth and makes a shot.,\"raises his drink to his lips, trying to stop himself.\",gives a resigned look.,approaches the guy with a drink of his drink.,gold1-orig,pos,unl,unl,pos,pos,The bartender spits the beer back in the glass.,The bartender\nanetv_LB1A7BobPwg,2594,The man puts his arm behind his back. The bartender,puts two cards on the bar.,adds something to a pan then pauses.,grabs a cup of coffee and shakes the table.,raises his gloves and salute the kids.,finishes wiping his hands on his head.,gold0-reannot,pos,unl,unl,unl,unl,The man puts his arm behind his back.,The bartender\nlsmdc1023_Horrible_Bosses-81890,15052,\"They push a large briefcase towards him, and he opens it. It\",\"'s empty, apart from a small bundle of bank notes.\",is forming a few wooden faces.,'s fingers spin.,walks toward the door.,,gold0-orig,pos,unl,unl,unl,n/a,\"They push a large briefcase towards him, and he opens it.\",It\nlsmdc1023_Horrible_Bosses-81890,15049,He furrows his brow as she tweaks his nipples. She,\"grins, then slaps his ass.\",moves a half - inch and applies one foot on the line that line to each window.,kisses it and he uses her phone.,kicks away and straightens his restraints.,gives him a helpless look.,gold0-orig,pos,unl,unl,pos,pos,He furrows his brow as she tweaks his nipples.,She\nlsmdc1023_Horrible_Bosses-81890,15042,Balding someone is partying hard with three Thai hookers in skimpy underwear. He,snorts a line of cocaine from one's stomach.,\"lakeside in our shore, waiting for someone.\",stands in the hallway and backs them another.,is putting on clothes.,fix the handle of a makeshift gun.,gold0-orig,pos,unl,unl,pos,pos,Balding someone is partying hard with three Thai hookers in skimpy underwear.,He\nlsmdc1023_Horrible_Bosses-81890,15041,\"His extended office now complete, someone removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve. Someone\",withdraws money from his bank account.,reach the bottom second slowly buckle.,holds the yanks far out of the rig.,\"wends his way through the book's pages, scattering sidles quicker to the finished page.\",pic crazily the book - clothes.,gold0-orig,pos,unl,unl,unl,unl,\"His extended office now complete, someone removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve.\",Someone\nlsmdc1023_Horrible_Bosses-81890,15046,\"Someone's shirt is open, exposing his bloated stomach. He\",holds up someone's handicapped parking pass.,tosses him with a powerful blow.,cage hangs at top roughly.,looks at herself in the mirror.,readies into his stark ribbons.,gold1-orig,pos,unl,unl,unl,unl,\"Someone's shirt is open, exposing his bloated stomach.\",He\nlsmdc1023_Horrible_Bosses-81890,15048,\"At the dentist, someone licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear. He\",furrows his brow as she tweaks his nipples.,runs through the unit and opening shadows with the large group then walks in.,flies the shaken pavement to a cocktail bar on the cement body.,\"closes a winch in turn, then uses it and spikes.\",\"looks at his keenly, then raises his arms to his chest and buries his ear in the ring.\",gold0-orig,pos,unl,unl,unl,unl,\"At the dentist, someone licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear.\",He\nlsmdc1023_Horrible_Bosses-81890,15040,\"Someone smashes his office wall down with a sledgehammer. His extended office now complete, someone\",removes a strip of clear plastic from a plaque on the door and buffs it with his sleeve.,does the same to a button in a reading desk.,opens the bag and storms out.,slams his fist into the console beside a weight player.,looks up at the picture of his cavernous store in the foreground that begs softly out the window.,gold0-orig,pos,unl,unl,unl,unl,Someone smashes his office wall down with a sledgehammer.,\"His extended office now complete, someone\"\nlsmdc1023_Horrible_Bosses-81890,15047,\"He holds up someone's handicapped parking pass. At the dentist, someone\",\"licks the back of someone's neck, then sucks his left earlobe and jams her tongue in his ear.\",is taken out by the lincoln - frowning track creature.,'s hands up to a guard as she sits in the park.,drives two wheels into the car and pounds on it on the ground.,\"opens a drawer, looks around and watches this different women go.\",gold1-reannot,unl,unl,unl,unl,unl,He holds up someone's handicapped parking pass.,\"At the dentist, someone\"\nlsmdc1023_Horrible_Bosses-81890,15044,He is in his office. Someone,'s in the main office.,takes a deep breath and heaves back as he says.,grins at his father.,drops the grail agents on the floor.,\"stares at him, looking heartbroken.\",gold0-reannot,pos,unl,unl,unl,pos,He is in his office.,Someone\nlsmdc1023_Horrible_Bosses-81890,15043,They writhe in orgiastic abandonment. He,is in his office.,throws up a telescope.,gets out and under the hood.,hands the individuals to someone.,\"pushes a cart with a stiff gait, disappointed.\",gold0-reannot,pos,unl,unl,unl,unl,They writhe in orgiastic abandonment.,He\nanetv_XThYcZoFMMs,5954,\"All the ingredients you need to make butter cake are on the counter, someone is pointing at each ingredient and starts grabbing them. They\",use a mixer to mix some of the ingredients together.,\"power to make into two more smoke, and finally it's done and puts them in the pan.\",put the new bread onto glue to add shingles.,take the shot and get ready for the container.,,gold0-reannot,pos,unl,unl,pos,n/a,\"All the ingredients you need to make butter cake are on the counter, someone is pointing at each ingredient and starts grabbing them.\",They\nanetv_XThYcZoFMMs,5955,They use a mixer to mix some of the ingredients together. They add the eggs in one by one while the mixer is still mixing and then they,turn it off and add some more in.,use beer and they talk to the camera.,create a small selection of food.,put the baked mixture into a cute pan.,,gold0-reannot,pos,unl,unl,unl,n/a,They use a mixer to mix some of the ingredients together.,They add the eggs in one by one while the mixer is still mixing and then they\nanetv_rcDw6If4hjc,14201,A bowler wearing green shorts bowls and makes a strike. The bowler,bowls another ball using both hands and makes another strike.,hits the man in the head behind safety.,hitting with the ball caught the batter.,reaches for the camera.,is talking to the boy and points to the lane at the jump.,gold0-orig,pos,unl,unl,unl,unl,A bowler wearing green shorts bowls and makes a strike.,The bowler\nanetv_rcDw6If4hjc,15828,The pins are knocked over. He,throws the ball several more times.,\"you can pick up something, she is holding the stick in her hand and foreground it down of her head.\",latino guys climb into a bench and approach the jutting rocks of a building.,reaches for the window savagely hit.,stops and starts to pull out his shorts.,gold0-reannot,pos,unl,unl,unl,unl,The pins are knocked over.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7541,The old man leans forward. Someone,\"looks away, and eases back a little.\",puts tape on the fingers.,\"spreads his hands, grinning.\",returns the painting's music with her finger.,watches someone through a window as he approaches.,gold1-orig,pos,unl,unl,pos,pos,The old man leans forward.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7537,\"He hands a curved wand to someone, who examines it closely. Someone\",\"passes him a plain, straight wand.\",removes the light of the torch and aims it at someone.,\"strides through a tall stunning hall, and collides with an army of marble.\",kicks the box into a case and drops the keys in the slot.,raises his arms in the air.,gold0-orig,pos,unl,unl,unl,unl,\"He hands a curved wand to someone, who examines it closely.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7540,He turns it in his fingers. Someone,gives the wand back to someone.,is slid on his clock.,is everything in the state not going down.,steps out and begins with blow buttons.,,gold0-orig,pos,unl,unl,unl,n/a,He turns it in his fingers.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7538,\"Someone passes him a plain, straight wand. He\",raises the wand tip to his left ear.,arranges his face into the mirror.,looks around at the flowing flowing.,releases from the bottom of his hooded stick at the kneeling position.,is putting his makeup bike over a small patch of grass.,gold0-orig,pos,unl,unl,unl,unl,\"Someone passes him a plain, straight wand.\",He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7535,The old wand maker sits by a window. He,looks up at someone.,\"presses his hands on his bullwhip, plunging into space with a wall of red energy.\",touches a pale blue sheen.,stuffs the bag off.,,gold0-orig,pos,unl,pos,pos,n/a,The old wand maker sits by a window.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7534,Someone shows them into a room. The old wand maker,sits by a window.,\"sits draped across a sheet, wrapped in sheet.\",shows the encased in black and black fragments.,has got a little lighter from the inside of his neck.,looks at the supervisor and taps out a picture of someone.,gold1-orig,pos,unl,unl,pos,pos,Someone shows them into a room.,The old wand maker\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7536,He looks up at someone. He,\"hands a curved wand to someone, who examines it closely.\",\"opens the safe, and takes out his phone, slumped the wooden chair, and goes to help him up.\",smiles at the photo.,\"remains taken back, as if going back to the cottage, hitting a ping - pong court.\",moves slowly into the kitchen.,gold1-orig,pos,unl,unl,unl,pos,He looks up at someone.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-99633,7539,He raises the wand tip to his left ear. He,turns it in his fingers.,catches some on the ax then touches a side of his wound.,flattens it in his cupped hand.,returns with a pamphlet.,,gold0-orig,pos,unl,unl,unl,n/a,He raises the wand tip to his left ear.,He\nanetv_MWWDqMI-rxU,1026,He is sitting on the ground talking. He,stands up and talks to the camera.,finishes playing the harmonica and walks off.,gets a blue belt.,uses a plastic bag to wash with a towel and something over his head.,,gold0-orig,pos,unl,unl,unl,n/a,He is sitting on the ground talking.,He\nanetv_MWWDqMI-rxU,18588,Two people are seen speaking to the camera when one begins to breakdance. The man,continues speaking to the camera and begins demonstrating how to perform proper moves.,continues playing and leads into various clips of people performing curling goals with the camera.,plays with a karate as well as opening the frame.,moves along with his arms arms and legs with her and ends by taking off.,turns around around a bit and leads into several clips of actors performing tango tasks and holding up a body of people.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen speaking to the camera when one begins to breakdance.,The man\nanetv_MWWDqMI-rxU,18589,The man continues speaking to the camera and begins demonstrating how to perform proper moves. He,continues moving around the camera and ends by speaking to it.,continues to solve the video while the other smiles to the camera.,begins to be seen impressive properly play and ends with him clapping for the camera.,continues speaking to the camera and finishes by sitting on the ground.,moves all around and finishes by playing it properly while looking in to the camera.,gold0-orig,pos,unl,unl,pos,pos,The man continues speaking to the camera and begins demonstrating how to perform proper moves.,He\nlsmdc0033_Amadeus-66841,11955,\"To its grand and weighty sound, someone starts to undress, watched by the horrified someone. He\",opens his mouth in distress.,begins to scramble to his feet.,\"steps away, leaning against the headboard.\",\"remains, in the shadows he is trying to make.\",takes someone's arm tvs to the open barricade to avoid the jutting stone bridge attacked by the impact authority of the transmitter.,gold0-orig,pos,unl,unl,unl,unl,\"To its grand and weighty sound, someone starts to undress, watched by the horrified someone.\",He\nlsmdc0033_Amadeus-66841,11956,He opens his mouth in distress. The candle,flickers over her as she removes her clothes and prepares for his embrace.,hides behind the door.,begins to cry again.,juts out from some smoking buckets.,burns under the table.,gold1-orig,pos,unl,unl,pos,pos,He opens his mouth in distress.,The candle\nanetv_r4F2X_MlL-U,456,A hand lines the loose area of the wallpaper. The hand,puts paste from a bowl on the back of the loose wallpaper.,is then seen running down the fence.,grips the disc to the glass revealing the piercing artist sticking out.,sweeps gold on it.,,gold0-orig,pos,unl,unl,unl,n/a,A hand lines the loose area of the wallpaper.,The hand\nanetv_r4F2X_MlL-U,457,The hand puts paste from a bowl on the back of the loose wallpaper. The hand,runs a scrub on the loose wallpaper.,use the measuring tape to mix the heat by measuring tape on the paper.,talks to the camera.,paints the applauded paper.,,gold0-orig,pos,unl,unl,unl,n/a,The hand puts paste from a bowl on the back of the loose wallpaper.,The hand\nlsmdc1024_Identity_Thief-82128,4386,\"Someone slowly drives down a congested highway. Later, carrying a briefcase, the well - groomed businessman\",walks through an enclosed courtyard and enters an office building.,view his unconscious wife who worn up.,pushes someone along the table.,\"pushes a stick along the compound, keeping it steady.\",walks down a leafy grassy driveway towards the entrance of the empty club.,gold1-orig,pos,unl,unl,unl,pos,Someone slowly drives down a congested highway.,\"Later, carrying a briefcase, the well - groomed businessman\"\nlsmdc1024_Identity_Thief-82128,4387,\"Later, carrying a briefcase, the well - groomed businessman walks through an enclosed courtyard and enters an office building. Now, someone\",steps off an elevator and walks to his office.,\"finds a outside, the suitcase in his hand.\",gazes up at the shell decorated that gave the world's power over a portrait of a younger blond.,\"arrives with her shadowy, sunny blue tattooed and a red decor against the wall.\",slouches with her parents as he strolls onto the bus roof.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, carrying a briefcase, the well - groomed businessman walks through an enclosed courtyard and enters an office building.\",\"Now, someone\"\nanetv_1RQOgX36Z2E,9168,He rolls a tire over to a piece of equipment. He,shows how to mount the tire onto the equipment.,man instructs and shows how it should burn.,demonstrates by talking to the camera and explains about the process process.,starts a motor bike.,secures the tire back into a seat.,gold0-orig,pos,unl,unl,unl,pos,He rolls a tire over to a piece of equipment.,He\nanetv_1RQOgX36Z2E,9167,A man is working inside a shop. He,rolls a tire over to a piece of equipment.,is on a table playing croquette.,talks about how to remove a sandwich.,adjusts the camera and nails around.,is showing how to use a mobile phone.,gold0-reannot,pos,unl,unl,unl,pos,A man is working inside a shop.,He\nanetv_mhHoL-9mY1E,17597,The man takes the top off and sprays the shoes. The man,uses the brush on the shoe to rub the shoe.,uses tongs to clean the tire using a tool.,starts to wipe the car clean with a hose.,continues ironing the shirt with a paintbrush.,walks around and throws the snow on the other side of the bucket.,gold0-orig,pos,unl,unl,unl,unl,The man takes the top off and sprays the shoes.,The man\nanetv_mhHoL-9mY1E,17599,The man puts the top back on the can. The man,gets up and grabs the camera.,adds trimmer outside his bricked again.,holds back his hand with a squash hand.,puts the black circle on the finish line.,does a handstand on the flat surface.,gold1-orig,pos,unl,unl,unl,pos,The man puts the top back on the can.,The man\nanetv_mhHoL-9mY1E,17596,We see a person sitting in front of a shoe holding a can with brush. The man,takes the top off and sprays the shoes.,\"puts on a green jacket, and its washing the shoes.\",picks up a blue bag then begins to do it again.,uses a brush to paint the wall with a sprayer.,wipes the dishes away and resumes washing the dishes.,gold0-reannot,pos,unl,unl,unl,unl,We see a person sitting in front of a shoe holding a can with brush.,The man\nanetv_mhHoL-9mY1E,17598,The man uses the brush on the shoe to rub the shoe. The man,puts the top back on the can.,spreads his arms on the couch.,represents an animation in the shower head with his hands.,gets up and looks down the way.,put the shoe on the first person.,gold1-reannot,pos,unl,unl,pos,pos,The man uses the brush on the shoe to rub the shoe.,The man\nanetv_jtyWcZGp4VA,18144,\"After, the person brushes the back leg of the dog using the big brush, then she small brush and the comb. Next, the person\",sprays the leg of the dog and combs.,takes a pair of scissors to pull the clips with the right hair scissors.,brushes the toy thoroughly on using the shower curtain and where the cat is brushing it.,adds something to the hair of square hair and bites.,pierces the potato with the toothbrush.,gold0-orig,pos,unl,unl,unl,unl,\"After, the person brushes the back leg of the dog using the big brush, then she small brush and the comb.\",\"Next, the person\"\nanetv_jtyWcZGp4VA,18142,\"A person take on the hands a small and big brush and a com, and points a jug of detergent and a spray bottle. The person\",takes the big brush and brush the back leg of the dog from top to bottom.,shows the boy how to clean off the shoes and then rub oil on his legs.,add water and foot shoes with the solution.,sprays the removing with excess spray.,,gold1-orig,pos,unl,unl,unl,n/a,\"A person take on the hands a small and big brush and a com, and points a jug of detergent and a spray bottle.\",The person\nanetv_2i_rotAjuoE,2983,First there is a screen shown for a small amount of time letting viewers know what this video is about. Then there,is a man riding different horses in different settings where people watch them.,are several kids who are about the techniques of water going along the path together.,is another stencil placed on the dashboard of the van's trunk.,is a chance of a woman fiddling a turn of happiness.,is more people speaking to the camera after she is dancing.,gold0-orig,pos,unl,unl,unl,pos,First there is a screen shown for a small amount of time letting viewers know what this video is about.,Then there\nanetv_2i_rotAjuoE,2984,\"Then there is a man riding different horses in different settings where people watch them. In the first one, the horse runs with him on his back and he tries to jump over a wooden obstacle, but fails and there\",are many more fails.,is successful speed with the rope jump.,spins around him very much.,were more people continue riding benches on the lawn.,,gold0-orig,pos,unl,unl,unl,n/a,Then there is a man riding different horses in different settings where people watch them.,\"In the first one, the horse runs with him on his back and he tries to jump over a wooden obstacle, but fails and there\"\nanetv_y2MSbfOsukM,1327,A woman is seen bending forward while sitting on a bed and holding a brush in her hands. She then,runs the brush through her hair over and over again.,sprays lotion all over her face.,frame in scenarios and cuts the dolls arm all side to side and adult sits alone in the same direction.,lays to scrub her cheek with a lantern and lays it on the carpet.,moves back and fourth on the machine and cutting her hair.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen bending forward while sitting on a bed and holding a brush in her hands.,She then\nanetv_y2MSbfOsukM,1328,She then runs the brush through her hair over and over again. She,continues to run the brush through her hair and ends by smiling to the camera.,\"washes her hair with a towel, shows a practice and uses a brush on her hair.\",dries up the lower portion of the brush before washing her hands as she talks to the camera.,uses the brush to rub all the lotion off of her leg.,,gold0-orig,pos,unl,unl,unl,n/a,She then runs the brush through her hair over and over again.,She\nanetv_er6fi7nYsuw,6429,People are playing lacrosse on a field. A girl in a maroon shirt,is hitting the ball with her stick.,is playing futsal on a field.,is playing a pole on a field.,is standing behind him.,is running down the street.,gold0-orig,pos,unl,unl,pos,pos,People are playing lacrosse on a field.,A girl in a maroon shirt\nanetv_er6fi7nYsuw,6430,A girl in a maroon shirt is hitting the ball with her stick. Another girl in a yellow shirt,is standing on the field.,is sitting behind the girl.,is sitting next to her.,is talking to the camera.,hits the ball on the court.,gold0-orig,pos,pos,pos,pos,pos,A girl in a maroon shirt is hitting the ball with her stick.,Another girl in a yellow shirt\nanetv_er6fi7nYsuw,7566,A girl referee wearing a yellow shirt follows the ball from a distance. The players,fight to get control of the ball while the referee looks on.,continue to play with the field on a green table while holding the camera.,sulks at the woman.,try to hit the ball to another.,,gold0-orig,pos,unl,unl,pos,n/a,A girl referee wearing a yellow shirt follows the ball from a distance.,The players\nanetv_er6fi7nYsuw,7565,Two teams of girls playing field hockey in a field hockey tournament. A girl referee wearing a yellow shirt,follows the ball from a distance.,throws a ball into the net.,pushes the ball back at the goal and starts running with it at the same time.,is also watching the news.,,gold0-reannot,pos,unl,unl,unl,n/a,Two teams of girls playing field hockey in a field hockey tournament.,A girl referee wearing a yellow shirt\nlsmdc0023_THE_BUTTERFLY_EFFECT-59674,7388,Someone is ignored by several someone pledges as he plops himself by a tree and hunts through his journal to find the entry from when he was seven and visited someone at Sunnyvale. Seven - year old someone,\"comes to during the time he first met his father, someone.\",\"'s professor shows a odd - looking logo with chrome light like people saying in the evening, someone, as classes.\",sits on his bed with his outstretched arms around his vacuuming as he talks into his cheek.,\"swings, serving the ball back and forth.\",\"lies in bed, staring at someone.\",gold0-orig,pos,unl,unl,unl,pos,Someone is ignored by several someone pledges as he plops himself by a tree and hunts through his journal to find the entry from when he was seven and visited someone at Sunnyvale.,Seven - year old someone\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94893,15322,They see a baby Thestral. She,takes an apple from her bag.,picks up a stone and draws it free.,falls a paper box.,pauses to prepare the cats seeds.,,gold0-orig,pos,unl,unl,pos,n/a,They see a baby Thestral.,She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94893,15323,She takes an apple from her bag. She,rolls the apple to the baby.,yanks the water out of her bag.,is sitting at the stove top.,is led up to her suite.,,gold0-orig,pos,unl,pos,pos,n/a,She takes an apple from her bag.,She\nanetv_Y_dtU10XIsg,16609,A close up of a crack is seen. A woman,\"is outside, shoveling snow.\",lets go of the pumpkin.,enters across the bars.,walk up to a chest ramp.,begins around the tub.,gold1-orig,pos,unl,unl,unl,pos,A close up of a crack is seen.,A woman\nanetv_Y_dtU10XIsg,16610,\"A woman is outside, shoveling snow. A dog\",wags his tail as he tries to help.,mows her outside in the snow.,is covered in snow as the bull enters a house.,is walking down a street in a tube.,walks over to a van.,gold0-reannot,pos,unl,unl,unl,pos,\"A woman is outside, shoveling snow.\",A dog\nanetv_vycd0CJTwoA,9635,\"A parking lot is shown, and a man on roller blades takes off down the hill. He\",goes around sharp curves on his skates.,finishes and walks off.,lights that twice on another beach.,is walking on the los angeles street in the same setting.,,gold0-orig,pos,unl,unl,pos,n/a,\"A parking lot is shown, and a man on roller blades takes off down the hill.\",He\nanetv_vycd0CJTwoA,9636,He goes around sharp curves on his skates. He,takes several country and wooded roads before rolling to a stop in a parking lot.,skates on the track and also gets off and do tricks.,feels for one last time.,sets up sticks in the lawn.,,gold1-orig,pos,unl,unl,unl,n/a,He goes around sharp curves on his skates.,He\nanetv_DqsaFxxfONY,7667,A man dismounts from a set a parallel bars in a park onto a platform. The man,does shoulder dips between the bars on the exercise equipment.,moves hard in a synchronized coiling motion as a splash on break buildings.,takes a bar to stand up and starts doing the footage of the match.,then swings by himself while performing in his own room.,\"continues on stepper, moving his hands forward and down.\",gold0-orig,pos,unl,unl,unl,pos,A man dismounts from a set a parallel bars in a park onto a platform.,The man\nanetv_DqsaFxxfONY,675,The man then performs several mores on the beams moving back and fourth. The man,continues exercising on the beam while the camera shows his movements.,dives back on stage to belly.,walks up and puts his ax in his lap.,runs along another beam and pauses to demonstrate how to perform properly in the hopscotch.,takes a few steps up to the end and stands up.,gold0-orig,pos,unl,unl,unl,unl,The man then performs several mores on the beams moving back and fourth.,The man\nanetv_DqsaFxxfONY,7668,The man does shoulder dips between the bars on the exercise equipment. The man,does push ups on the parallel bars.,performs his routine using the bars.,wraps the same arm around his body.,does a routine on a rope beam and gets off of his feet.,ends the dance moves.,gold0-orig,pos,unl,unl,unl,unl,The man does shoulder dips between the bars on the exercise equipment.,The man\nanetv_DqsaFxxfONY,7669,The man does push ups on the parallel bars. The man,climbs across the parallel bars hanging upside down then does pull ups.,dismounts several times and lands on a swing on the mat.,lifts the weight above his head and head.,pauses and finishes his bike.,comes over with 2 structured jump pipes while swinging back and forth.,gold0-orig,pos,unl,unl,unl,unl,The man does push ups on the parallel bars.,The man\nanetv_KJQi_5e72lM,7437,Afterwards he uses a bristled brush and scrubs the bottom of the ski. Finally he,uses a soft brush and runs it over the ski once more.,pours sets too material and stands up.,finishes it up and walks over to the sink.,pours snow to get the berries off the snowboard.,,gold0-orig,pos,unl,unl,unl,n/a,Afterwards he uses a bristled brush and scrubs the bottom of the ski.,Finally he\nanetv_KJQi_5e72lM,7436,A man is seen talking to the camera as he sets up a ski on a work bench inside of a Ski shop. After lining up the ski and securing it on the bench he,uses a plastic card and goes over the bottom of the ski three times.,adjusts the bike and continues skiing.,gets up off his feet.,uses the rowing machine and on several more tricks.,skis his raft at once.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen talking to the camera as he sets up a ski on a work bench inside of a Ski shop.,After lining up the ski and securing it on the bench he\nanetv_9q6wWG6ql4E,14829,The little girl stands behind a gymnastic log and peers around the log. The little girl then,returns using the monkey bars switching from hand to hand.,swings a window backward across a log and stands up and has her ax again.,displays the ax to secure the previous size.,takes a drink as the girl moves a yellow bag over a log to chop the grass.,sets back more partial.,gold0-orig,pos,unl,unl,unl,unl,The little girl stands behind a gymnastic log and peers around the log.,The little girl then\nanetv_9q6wWG6ql4E,15114,\"Then, the little girl climbs the monkey bar. Then, the little girl\",returns climbing the monkey bars.,does a little slide with the small teen trying to hit the ball off.,cuts the rope with a camera.,jumps through the monkey bars.,approaches the other one and places the child set change to low she gets.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the little girl climbs the monkey bar.\",\"Then, the little girl\"\nanetv_9q6wWG6ql4E,15113,\"A little girl talks and stands in the playground. Then, the little girl\",climbs the monkey bar.,does a hop bar to over a heighten hurdle.,is trimming a monkey path.,turns to see the baby playing the baby and a man in a blue shirt talks to the camera.,swings at a pinata while explaining.,gold0-orig,pos,unl,unl,unl,unl,A little girl talks and stands in the playground.,\"Then, the little girl\"\nanetv_9q6wWG6ql4E,14828,A little girl wearing a white blouse plays on the monkey bars. The little girl,stands behind a gymnastic log and peers around the log.,does one hand stand on.,stops walking and looks over the counter the other way.,runs on a field of monkey bars.,,gold0-reannot,pos,unl,unl,unl,n/a,A little girl wearing a white blouse plays on the monkey bars.,The little girl\nlsmdc3018_CINDERELLA_MAN-8232,3003,The timekeeper slaps the mat. Someone,\"stands and glares, his brow hard set over a vengeful gaze.\",run over the title lawns towards the mantel.,helps some parents members join him.,\", someone punches him.\",backs up and leads the mob.,gold0-orig,pos,unl,unl,unl,unl,The timekeeper slaps the mat.,Someone\nlsmdc3018_CINDERELLA_MAN-8232,3004,\"In the opposite corner, someone rolls his neck. The champ\",eyeballs someone with a vacant trance - like stare.,\"'s muscular disc reads ripped from his hinges, back lying on the ground.\",turns to the stylist.,fondles the dim color.,touches his arm as she leans on the bed.,gold0-orig,pos,unl,unl,unl,unl,\"In the opposite corner, someone rolls his neck.\",The champ\nlsmdc0033_Amadeus-66618,13780,\"This is someone, Chaplain at the hospital. In the corridor as they walk, we\",note several patients - - some of them visibly disturbed mentally.,\"see someone standing over her, heaving someone away.\",\"can see that he lies over the rolls, staring at someone.\",can pass the dead man.,slowly hear someone's voice as she closes her eyes into the den.,gold1-orig,pos,unl,unl,unl,unl,\"This is someone, Chaplain at the hospital.\",\"In the corridor as they walk, we\"\nlsmdc0010_Frau_Ohne_Gewissen-51138,5712,\"Their heads touch, side by side, the camera slowly starts to recede as we. Someone\",\"sits in the swivel chair, talking into the dictaphone.\",moves in the footing on the machine opposite someone.,\"hurries through the road, slowly to the tilt of the road to his left, disappeared.\",knits one finger in his mouth then wheels away.,,gold1-orig,pos,unl,unl,unl,n/a,\"Their heads touch, side by side, the camera slowly starts to recede as we.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51138,5713,\"Someone sits in the swivel chair, talking into the dictaphone. He\",has hooked the wastebasket under his feet to sit more comfortably.,is brought out of a car.,walks over to her.,puts his spoon in the palm of his hand.,places it as much as he can.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sits in the swivel chair, talking into the dictaphone.\",He\nanetv_c5Io6wg8D60,8362,He starts running and builds up speed pretty quickly. He,lands into the sand and when he is done and man come behind him to smooth the sand out.,walks down some streets and leaves him to see them taking his time.,\"stands up and goes, picks up the skateboard and continues to continue skateboarding.\",does lots of tricks as he jumps on a rope with obstacles.,,gold0-orig,pos,unl,unl,unl,n/a,He starts running and builds up speed pretty quickly.,He\nanetv_c5Io6wg8D60,8361,He begins to walk backwards and get himself ready to start running. He,starts running and builds up speed pretty quickly.,knocks his people and catching him off of post kicks.,runs away from her very karate act.,falls on the sidelines onto the field.,rides along a track alongside others in the woods.,gold0-orig,pos,unl,unl,pos,pos,He begins to walk backwards and get himself ready to start running.,He\nanetv_c5Io6wg8D60,8360,A man is standing by a desk talking with some coaches about something. He,begins to walk backwards and get himself ready to start running.,stands up and lifts his weights over his head but also gets hit by the action.,is in a classroom shaking his hands at tempo and serving food food.,is sitting on a table next to the men introducing a role for the competition.,,gold0-reannot,pos,unl,unl,pos,n/a,A man is standing by a desk talking with some coaches about something.,He\nanetv_rMZtiiLAqoY,18676,Another closeup of the ball dispenser is shown. The man,smiles at the camera.,shows us the left block.,takes the mic out to hang up.,\"continues shaving, rubbing his crotch slightly.\",does this several times.,gold0-orig,pos,unl,unl,unl,unl,Another closeup of the ball dispenser is shown.,The man\nanetv_rMZtiiLAqoY,18674,The man jams the coin mechanism with a knife. The man,uses a mechanism to insert multiple table football balls onto the table.,grabs a steel rod and cleans the blade with a sword.,lays it down near his mortar.,drains a bottle of beers on a table.,pauses and points to the man's hand.,gold0-orig,pos,unl,unl,unl,pos,The man jams the coin mechanism with a knife.,The man\nanetv_rMZtiiLAqoY,18672,The man holds a coin up to the camera. The man,inserts the coin into the table.,tosses the court over to the third man.,rings the bell again.,puts another phone on the table.,grabs the toothbrush and holds it from its mouth.,gold0-orig,pos,unl,unl,unl,unl,The man holds a coin up to the camera.,The man\nanetv_rMZtiiLAqoY,18675,A closeup of the ball dispenser mechanism is shown. The man,\"plays table football by himself, scoring several goals.\",does not really enter into the desert.,turns on the machine and starts performing operation using a machine and machine.,begins playing the exercise hard while the host in it.,,gold0-orig,pos,unl,unl,unl,n/a,A closeup of the ball dispenser mechanism is shown.,The man\nanetv_rMZtiiLAqoY,18671,A man with disheveled hair talks to the camera while standing next to a table football table. The man,holds a coin up to the camera.,picks a ball into a pile.,goes back and forth and has to cut his man off to the same number and finally the woman still jotun her head.,picks up the shirt and walks away.,,gold0-orig,pos,unl,unl,unl,n/a,A man with disheveled hair talks to the camera while standing next to a table football table.,The man\nanetv_rMZtiiLAqoY,18673,The man inserts the coin into the table. the man,jams the coin mechanism with a knife.,uses the pliers to demonstrate and release a machine.,put the rod on the table and put another.,falls in wide water.,continues to put the card in quick motion.,gold0-orig,pos,unl,unl,unl,unl,The man inserts the coin into the table.,the man\nanetv_rMZtiiLAqoY,15991,The man puts the coin in as well as a knife and begins playing a game of fooseball using a lever moving the ball around the side. He,ends by smiling to the camera and giving a thumbs up.,continues putting and showing several clips sitting and presenting the plants.,throws down the items and continues holding ice guns at quickly and pausing to speak to the camera.,continues spinning around an area while standing on a fashionable area while the camera pans around and speaks.,turns the lawn around on the table and the camera captures the movements.,gold0-orig,pos,unl,unl,unl,unl,The man puts the coin in as well as a knife and begins playing a game of fooseball using a lever moving the ball around the side.,He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4550,\"He gives someone the eye as we pan to center someone, who looks wooed and self - conscious. Someone enters the shot and whispers and beckons someone and, as the singing continues, they\",\"leave the group and start towards a shade tree in medium ground, which we pan to center.\",\"are eating, talking, dinner.\",beings to dance.,pause for a moment for a moment to lean into doorway.,,gold0-orig,pos,unl,unl,unl,n/a,\"He gives someone the eye as we pan to center someone, who looks wooed and self - conscious.\",\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4551,\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they leave the group and start towards a shade tree in medium ground, which we pan to center. They\",walk; singers in background.,turned into a bag with a smile.,come into the parlor.,are left for the stage.,stand up and listen.,gold0-orig,pos,unl,unl,unl,pos,\"Someone enters the shot and whispers and beckons someone and, as the singing continues, they leave the group and start towards a shade tree in medium ground, which we pan to center.\",They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4552,\"Someone, looking ahead, is displeased. They\",\"sit on the bench, their backs to us, partly concealed by the tree trunk.\",\"keep on without his vest, sunglasses, ready to sign.\",\"follow on the ice as people walk toward him, holding hands.\",clink the glasses together.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, looking ahead, is displeased.\",They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4553,\"People enter the shot, their backs to us. They\",\"sit on the bench, their back to us.\",pop the hangers and bring their teeth and a shelf below some trapdoor themselves.,drop one sliding beneath.,take off their forms and smash it against the bleachers wall as the crowd crawls and applaud.,gazes at a security guard then disappear inside.,gold1-orig,pos,unl,unl,unl,unl,\"People enter the shot, their backs to us.\",They\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4555,The children recede towards the river in background. Someone,meekly keeps her head down.,grins at the radio.,\"gazes after him, fading, then backs it up.\",jumps up and stands up.,begins to walk along the stage.,gold1-reannot,pos,unl,unl,unl,unl,The children recede towards the river in background.,Someone\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49142,4554,\"They sit on the bench, their back to us. The children\",recede towards the river in background.,hold their arms above their eyes.,are someone's parents.,\"ride their bikes in the stretch limousine, outside in chases.\",explain each other about the same actions.,gold1-reannot,pos,unl,unl,unl,pos,\"They sit on the bench, their back to us.\",The children\nanetv_DIF8qouivIU,2069,A man wearing a white fencing outfit walks over to a woman in leather with her hands tied together. He,holds her waist and speaks to her while watching the men fence behind them.,tries a front tier on her shoulders as she sits on the floor with her.,begins to drink some martini liquids and.,dismounts from the bow and walks away.,punches the woman in the head until she leaves the man standing over her.,gold1-orig,pos,unl,unl,unl,unl,A man wearing a white fencing outfit walks over to a woman in leather with her hands tied together.,He\nanetv_cyznGwlE9hM,17097,\"This is a shot put and discus throw music video. First, the man\",spins around and throws the discus indoors.,brings his hands out in the air and pretends while moving his hips faster.,spins his face while he is hitting the ball.,throws the ball around a club while he talks.,,gold0-orig,pos,unl,unl,pos,n/a,This is a shot put and discus throw music video.,\"First, the man\"\nanetv_cyznGwlE9hM,17098,\"First, the man spins around and throws the discus indoors. Next he\",is shown doing it outdoors where lots of people are watching.,makes a goal and runs his hands behind his face.,grabs a plastic ball and continues to peel the teen.,runs around to the jump and and kicks the board.,\"shows how camera poses, and then moves it around his client as a man appears.\",gold1-orig,pos,unl,unl,unl,unl,\"First, the man spins around and throws the discus indoors.\",Next he\nanetv_cyznGwlE9hM,1991,People spin around and throw balls onto a field. The crowd,watches them throw the balls.,cheers around the man followed by them playing.,cheer for the cheering team.,cheers as they win the game.,is shown again as announcers gawk.,gold1-orig,pos,unl,unl,pos,pos,People spin around and throw balls onto a field.,The crowd\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72403,8870,Someone is the only one to stand as someone comes to the table. He,grins politely as he bends down to retrieve his napkin.,starts it and goes as his mother tries to retrieve him from.,\"is suddenly strange, restless, unleashes him sigh, and looks away.\",looks round and follows the men.,,gold0-orig,pos,unl,unl,pos,n/a,Someone is the only one to stand as someone comes to the table.,He\nlsmdc1008_Spider-Man2-75853,11176,The train approaches the buffers. It,crashes through them and careens forward to the very end.,'s a student on a round bar plane waves as he runs across.,load on the car.,soars over the city.,,gold0-orig,pos,unl,unl,unl,n/a,The train approaches the buffers.,It\nlsmdc1008_Spider-Man2-75853,11175,\"It rips someone's costume in several places, and battles the front of the train as the costume tears away his arms as his hands holds the webs uses them to restrain the train forward thrust. Someone's features\",are contorted as some of the webs start to break.,\"turn, and a hurls in the air black tendrils cuts into the view.\",are driven away as rain crashes against double washing cars as someone drives out.,\"break free and he leads someone to a railing, landing into an rocky obstacle, back from the train atop the warehouse.\",,gold0-orig,pos,unl,unl,pos,n/a,\"It rips someone's costume in several places, and battles the front of the train as the costume tears away his arms as his hands holds the webs uses them to restrain the train forward thrust.\",Someone's features\nlsmdc1008_Spider-Man2-75853,11179,He continues to hold the webs attached to the buildings behind them. The train,grinds to a halt.,\"comes into a long, thick flight of vision.\",\"draws from side to side, revealing a dozen seagulls.\",slams the two bundles one onward and falls a few feet away.,,gold0-orig,pos,unl,unl,pos,n/a,He continues to hold the webs attached to the buildings behind them.,The train\nlsmdc1008_Spider-Man2-75853,11177,It crashes through them and careens forward to the very end. Someone,stands as if glued to the front of the train.,\"stops walking around the side of the vehicle, climbing on next to him.\",\"leans back, raising their fists.\",slides to one knee and juts out forcing her to relax.,\"rushes up the grating, as it slams onto the ship.\",gold0-orig,pos,unl,unl,unl,pos,It crashes through them and careens forward to the very end.,Someone\nlsmdc1008_Spider-Man2-75853,11181,He releases the web and slumps forward. Hands,reach out to prevent him from falling.,\"behind the man, someone stands in front of someone, who's billowing.\",perch on the wall rises a pair of feet up at its top.,fly through the air.,,gold0-orig,pos,unl,unl,pos,n/a,He releases the web and slumps forward.,Hands\nlsmdc1008_Spider-Man2-75853,11183,\"The passengers lift the unconscious, unmasked someone into the carriage. His head falling back, the costumed figure\",is passed along the carriage over people's heads.,lies on the trail amid the guests.,places its arms around his body.,reaches down and knocks him away.,,gold1-orig,pos,unl,unl,unl,n/a,\"The passengers lift the unconscious, unmasked someone into the carriage.\",\"His head falling back, the costumed figure\"\nlsmdc1008_Spider-Man2-75853,11182,Hands reach out to prevent him from falling. The passengers,\"lift the unconscious, unmasked someone into the carriage.\",lift their guns skyward.,\"are very shallow, they are up by themselves.\",peer out from behind the driver seat where the police car is driving.,plunge to the ground.,gold1-orig,unl,unl,unl,unl,unl,Hands reach out to prevent him from falling.,The passengers\nanetv_BKrUkWSo4Ig,7972,An intro leads into a man holding a violin and playing with his hands. The man,continues to play and then pauses to speak to the camera while also demonstrating how to properly play.,then begins to play the drums with his hands with his hands and brow.,carries several sticks all around while still playing in the air.,plays the harmonica while the camera looks around him and places the instrument in his hands as all continue to play.,places the instrument on his hand and then begins dancing and dancing.,gold0-orig,pos,unl,unl,unl,pos,An intro leads into a man holding a violin and playing with his hands.,The man\nlsmdc1057_Seven_pounds-97714,1199,Someone sits glumly among a stack of packed boxes in the beach house. Someone,\"drives his car sedately along the wide and winding coast road, which is bathed in sunshine.\",slips some coins onto someone's mother's wallet and takes a tiny bite of dessert.,appears on the bluffs as someone maintains a graceful pose.,has turned the guard down a dark street to the front of the trees.,pulls up the post.,gold0-orig,pos,unl,unl,unl,unl,Someone sits glumly among a stack of packed boxes in the beach house.,Someone\nlsmdc1057_Seven_pounds-97714,1184,Someone walks up to him. He,\"stares at her with sad, gentle eyes.\",\"runs toward the face of the army, breathing heavily and gasping for breath.\",\"slows, picks up the bell, and starts down the aisle.\",\"walks in, grabbing a hose, resting it on a spot in front of the car.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone walks up to him.,He\nlsmdc1057_Seven_pounds-97714,1181,\"Once again, someone looks astounded. Someone\",grins and looks down.,puts his gloved fist into his rich temple.,frames his eyes pinched tightly and raps his knuckles.,rise their steps and stand motionless.,walks alone wielding a metal mask.,gold1-orig,pos,unl,unl,unl,unl,\"Once again, someone looks astounded.\",Someone\nlsmdc1057_Seven_pounds-97714,1185,\"He stares at her with sad, gentle eyes. He\",\"raises his eyebrows, then looks serious.\",stares at her with wide eyes.,closes his eyes as he presses someone's hand in his temple.,tenderly kisses them fierce.,turns her head about.,gold1-orig,pos,pos,pos,pos,pos,\"He stares at her with sad, gentle eyes.\",He\nlsmdc1057_Seven_pounds-97714,1192,Someone shoots someone a last look before shutting the door behind him. Someone,goes to his car.,takes his jacket off the list and walks out.,stops on the counter and spots someone.,leads them out of the street.,raises his gun and looks at the car.,gold1-orig,pos,unl,unl,unl,unl,Someone shoots someone a last look before shutting the door behind him.,Someone\nlsmdc1057_Seven_pounds-97714,1194,Someone watches him through the window. Someone,\"stands, looking out from his patio.\",gives a pudgy boy.,knocks the penguin from the train to the boat.,leans back and lowers the canvas toward us.,\"takes someone aside, carrying three coffees.\",gold0-orig,pos,unl,unl,unl,pos,Someone watches him through the window.,Someone\nlsmdc1057_Seven_pounds-97714,1202,\"In his motel room, someone uses a small hose to fill up the large cylindrical fish tank that someone was carrying. Light from the tank\",\"illuminates someone's face as he stands in the darkness, seemingly lost in thought.\",starts to van underneath which is now in a workshop marbled with paper and stars.,\"lies peacefully in the surveillance room, bruised and bruised, and a pale light comes on.\",two two more gypsies come into the second house and washes their face.,,gold0-orig,pos,unl,unl,unl,n/a,\"In his motel room, someone uses a small hose to fill up the large cylindrical fish tank that someone was carrying.\",Light from the tank\nlsmdc1057_Seven_pounds-97714,1180,He stares down at the table they are sitting at. She,fiddles with her collar.,looks down at his reflection in the soft words.,walks up to the table and puts two glasses of tea in her simple coat.,\"gazes down at someone, who's just inches from the ceiling.\",,gold0-orig,pos,unl,unl,pos,n/a,He stares down at the table they are sitting at.,She\nlsmdc1057_Seven_pounds-97714,1183,They share a lingering look. Someone,smiles broadly and heads out.,looks up at the motorcycle.,sits on the bed.,sucks out his inhaler.,chuckles astonishment to himself.,gold1-orig,pos,pos,pos,pos,pos,They share a lingering look.,Someone\nlsmdc1057_Seven_pounds-97714,1198,Someone cleans his beach house. Someone,sits glumly among a stack of packed boxes in the beach house.,\"see someone's eyes rolling up and down a branch, pockets it hard and falls backward.\",\"moves to seat tilting several toilets, decorating the picnic basket.\",leaves a leafy flap.,feels in hair crossbar.,gold0-orig,pos,unl,unl,unl,unl,Someone cleans his beach house.,Someone\nlsmdc1057_Seven_pounds-97714,1179,\"Someone looks astonished and stares at him, brow furrowed. He\",stares down at the table they are sitting at.,\"shifts on his feet, unable to give him the opportunity.\",scowls at someone's brother with a backpack.,holds the chain out to him.,pauses then leans down on the seat.,gold0-orig,pos,unl,pos,pos,pos,\"Someone looks astonished and stares at him, brow furrowed.\",He\nlsmdc1057_Seven_pounds-97714,1191,She gives a little wave as someone steps outside. Someone,shoots someone a last look before shutting the door behind him.,leads someone to the barred sedan.,marches out her front entrance.,jumps from the bottom and splashes to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,She gives a little wave as someone steps outside.,Someone\nlsmdc1057_Seven_pounds-97714,1189,\"They hold each other's gaze. Then, someone\",smiles and looks down shyly.,walks into a pair of houses that are lined up at the end of a rack in the middle of the theater.,hands up a wad of cash.,caresses the grieving sister's cheek with a dainty sneer.,holds her questioningly as they lie on the sand.,gold0-orig,pos,unl,unl,unl,pos,They hold each other's gaze.,\"Then, someone\"\nlsmdc1057_Seven_pounds-97714,1193,Someone goes to his car. Someone,watches him through the window.,rushes down after him and wraps the napkin to the sleeve.,looks from the bottle to someone.,notices someone getting into the car.,gets out of the limo.,gold1-reannot,pos,unl,pos,pos,pos,Someone goes to his car.,Someone\nlsmdc1057_Seven_pounds-97714,1197,Someone fingers a rope of pearls and studies a photo of himself and someone. Someone,cleans his beach house.,ducks as it opens through an open entrance.,lights a cigarette as he takes the plane down in front of him.,lifts his blanket by the shirt and shows her on the way across the street.,\"rips off someone's firm cape, revealing someone's scar.\",gold1-reannot,unl,unl,unl,unl,unl,Someone fingers a rope of pearls and studies a photo of himself and someone.,Someone\nlsmdc1057_Seven_pounds-97714,1190,\"Then, someone smiles and looks down shyly. She\",gives a little wave as someone steps outside.,\"goes, slowly, leaving her wedding robe sitting around her.\",stays about his meal without taking his eyes off with them.,slips her middle finger into his arm and moves away.,\"walks past, stops and gives someone a hug.\",gold0-reannot,pos,unl,unl,unl,pos,\"Then, someone smiles and looks down shyly.\",She\nlsmdc1057_Seven_pounds-97714,1200,\"Someone drives his car sedately along the wide and winding coast road, which is bathed in sunshine. The motel receptionist, someone,\",helps someone carry gear.,puts up a packed mnu.,pulls something on a small wheel.,is studying the sunset killer.,starts to do.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone drives his car sedately along the wide and winding coast road, which is bathed in sunshine.\",\"The motel receptionist, someone,\"\nlsmdc1057_Seven_pounds-97714,1195,\"Someone stands, looking out from his patio. Tears\",rolls down someone's cheeks as he stands looking out to sea.,clips playing paintball.,\"to the curtains, he sets his keys on a path in front of him and parents all walk up the hall toward the door\",\", loving around the tables.\",\"swigging from a bottle, someone wipes his cheek with his thumb.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone stands, looking out from his patio.\",Tears\nlsmdc1057_Seven_pounds-97714,1182,\"Someone grins and looks down. Taken aback, someone\",blinks as the decision sinks in.,strolls up to his entrance.,gets up and starts dragging out.,smiles a little and hugs him.,smacks someone's head.,gold0-reannot,pos,unl,unl,unl,pos,Someone grins and looks down.,\"Taken aback, someone\"\nlsmdc1057_Seven_pounds-97714,1188,\"Someone gives an awkward, white - toothed grin and makes for the front door. They\",hold each other's gaze.,\"has led his way through a women's office, on a low lamp covered floor.\",leap into the side of the panels.,find another hanging up in the back of the stylish.,s van drives through forest club.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone gives an awkward, white - toothed grin and makes for the front door.\",They\nanetv_VHUC47iq1Wg,1820,In them a someone throws a ball at a player. Another player,hits the ball with his bat.,display the ball and throws it back to the net.,\"grabs the balls, lifting it over the net.\",hits the ball and leaps into the crowd.,,gold0-orig,pos,unl,pos,pos,n/a,In them a someone throws a ball at a player.,Another player\nanetv_VHUC47iq1Wg,1819,Several clips of cricketers are shown. In them a someone,throws a ball at a player.,gives all the news mail.,is being played against them.,race across a field making letters to black.,is being interviewed through a christmas room.,gold0-reannot,pos,unl,unl,unl,unl,Several clips of cricketers are shown.,In them a someone\nlsmdc3055_PROMETHEUS-26502,16925,Someone unlatches his helmet then bends over and pulls it off. Straightening he,inhales deeply and pulls off his skullcap.,\"brings, and gives it a thumbs up.\",finishes his picture and edges away as someone gives him a perplexed look.,points to people who's shooting.,,gold0-orig,pos,unl,unl,pos,n/a,Someone unlatches his helmet then bends over and pulls it off.,Straightening he\nlsmdc3055_PROMETHEUS-26502,16910,\"As the team ventures in, holographic monitors each show the captain a crew member's computerized helmet view. Venturing through the opening someone\",draws himself up with an alert stare.,\"opens a folder to show a surly someone in his sportensemble expanding, gray pajama bottoms.\",\"blocks, desperately creating a torch, killing the people on their necks.\",finds someone passing the helicopter's prow.,,gold0-orig,pos,unl,unl,pos,n/a,\"As the team ventures in, holographic monitors each show the captain a crew member's computerized helmet view.\",Venturing through the opening someone\nlsmdc3055_PROMETHEUS-26502,16903,\"The team members approach one of the entry ways, each carrying a kit or bag of varying size. We\",peer up at the approaching humans from a sandy slope dotted with sharp rocks.,step from someone's body.,\", someone steps to the edge of the tunnels, takes the hard thrust and knocks it over.\",\"climbs the panels of a door, assembling the equipment.\",\"and, in someone's house, the kids stand out in the driveway at someone's house.\",gold0-orig,pos,unl,unl,unl,unl,\"The team members approach one of the entry ways, each carrying a kit or bag of varying size.\",We\nlsmdc3055_PROMETHEUS-26502,16902,Someone ventures forward and someone follows. The team members,\"approach one of the entry ways, each carrying a kit or bag of varying size.\",arrive an expert heap to greet someone.,are racing along a dusty - retreating track through explorers orcs.,stare at each other at the dessert conference doors.,keep their guns trained.,gold0-orig,pos,unl,unl,unl,pos,Someone ventures forward and someone follows.,The team members\nlsmdc3055_PROMETHEUS-26502,16909,\"Now, someone's view closes in on a cave opening. As the team ventures in, holographic monitors each\",show the captain a crew member's computerized helmet view.,films a parasail photograph on which it's about six rows of people.,line their fists pumping.,watch a profile pass with the look of someone.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, someone's view closes in on a cave opening.\",\"As the team ventures in, holographic monitors each\"\nlsmdc3055_PROMETHEUS-26502,16900,\"Her helmet's computerized view shows long, low entrances carved into the dome's base. In the dark cockpit, someone\",stands behind the captain's chair.,\"stands beside her, watching her crawl up lifelessly.\",lies down from burning exercise machine.,\"holds onto a railing, struggling in to reach her reverie.\",gets up and turns away.,gold0-orig,pos,unl,unl,unl,pos,\"Her helmet's computerized view shows long, low entrances carved into the dome's base.\",\"In the dark cockpit, someone\"\nlsmdc3055_PROMETHEUS-26502,16911,\"Further in, the team passes through a circular archway. They\",\"pause, shining their lights in either direction.\",mezzanine a muddy terrain.,find the caddy inside.,and someone move closer.,,gold0-orig,pos,unl,unl,pos,n/a,\"Further in, the team passes through a circular archway.\",They\nlsmdc3055_PROMETHEUS-26502,16890,The crew steps into a hanger. Someone,brings a duffel to the front of a transport vehicle with twin rows of seats.,comes along several shots of the internet.,sits at a table holding a piece of equipment bound above his head.,\"spins wildly in the sky, his vision dropping into the pool.\",\"hurriedly hangs a hot security piece against a rack, which is now tilted to the right.\",gold0-orig,pos,unl,unl,unl,unl,The crew steps into a hanger.,Someone\nlsmdc3055_PROMETHEUS-26502,16893,The mohawked man moves down a few spots. The transport,pulls out alongside two atvs.,continues towards a telephone.,missile burst in with someone.,slides on its own rope.,,gold0-orig,pos,unl,unl,unl,n/a,The mohawked man moves down a few spots.,The transport\nlsmdc3055_PROMETHEUS-26502,16916,\"As he activates its computerized system, someone, someone, and someone join him. The pups\",split off again as the extending network of tunnels grows more complex.,rings bright droplets of people round them.,master competes rushed between double bars.,shoots out a wall of skulls and propels into the center.,mist now stuns someone's yard.,gold0-orig,pos,unl,unl,unl,unl,\"As he activates its computerized system, someone, someone, and someone join him.\",The pups\nlsmdc3055_PROMETHEUS-26502,16894,\"The transport pulls out alongside two atvs. In the transport, someone\",moves close to someone.,waits to answer her email.,finds a bulge in a leather jacket.,notes their gear overhead.,grabs her bag and holds it out to her.,gold1-orig,pos,unl,pos,pos,pos,The transport pulls out alongside two atvs.,\"In the transport, someone\"\nlsmdc3055_PROMETHEUS-26502,16914,\"Spinning, they shine red scanner beams in all directions as they fly down the corridor. He\",sends two more off the other way.,sniffs the exotic straw.,sprawls down evenly on the boards.,opens the door and climbs out again.,,gold0-orig,pos,unl,unl,pos,n/a,\"Spinning, they shine red scanner beams in all directions as they fly down the corridor.\",He\nlsmdc3055_PROMETHEUS-26502,16913,\"Someone releases two into the air. Spinning, they\",shine red scanner beams in all directions as they fly down the corridor.,push several cables across the body.,break into a clearing on the edge of the field.,jump up as someone swoops over.,,gold0-orig,pos,unl,pos,pos,n/a,Someone releases two into the air.,\"Spinning, they\"\nlsmdc3055_PROMETHEUS-26502,16889,\"In the airlock, a hatch rises. The crew\",steps into a hanger.,holds the coffin above him.,folds it off the canvas.,sits on the ship.,,gold1-orig,pos,unl,unl,pos,n/a,\"In the airlock, a hatch rises.\",The crew\nlsmdc3055_PROMETHEUS-26502,16919,\"As he leads them on, someone curiously shines her flashlight at the etched stone walls. Someone\",\"takes up the rear, closely observing his surroundings.\",turns and recognizes him.,places his arm around someone's neck.,takes the giant photo by the key and places it on someone's box.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he leads them on, someone curiously shines her flashlight at the etched stone walls.\",Someone\nlsmdc3055_PROMETHEUS-26502,16899,The crust rounded front gives a hint of wind - eroded carving of a face. The survey vehicles,pull up around the dome and park.,pulls up to the air home.,have thrown face - to - face with water bubbling.,wait to find the their graves.,,gold0-orig,pos,unl,unl,unl,n/a,The crust rounded front gives a hint of wind - eroded carving of a face.,The survey vehicles\nlsmdc3055_PROMETHEUS-26502,16923,Water rains around the probe as it plunges several stories. Someone,taps keys on his sleeve.,pursue someone by the slamming into a rock.,\"shoots someone the canvas, which lands downwards, spilling down a broken tire.\",rouses it to dim another burst of light.,stumbles out onto the deck changing racetrack.,gold1-orig,pos,unl,unl,unl,unl,Water rains around the probe as it plunges several stories.,Someone\nlsmdc3055_PROMETHEUS-26502,16892,\"As the mohawked man sits, someone takes the seat facing him. The mohawked man\",moves down a few spots.,runs over to someone.,smiles sweetly and turns.,gives someone a brave gesture.,rubs his own weary eyes.,gold0-orig,pos,unl,unl,pos,pos,\"As the mohawked man sits, someone takes the seat facing him.\",The mohawked man\nlsmdc3055_PROMETHEUS-26502,16917,The pups split off again as the extending network of tunnels grows more complex. The survey team,reaches a rounded tunnel of dark gleaming stone.,comes to a halt and moves swaying.,climbs out from the rooftops and cross the street.,is fitted to their third belt.,appears on the screen and their view indicate the may of the nearest black clock on the counter.,gold0-orig,pos,unl,unl,unl,unl,The pups split off again as the extending network of tunnels grows more complex.,The survey team\nlsmdc3055_PROMETHEUS-26502,16891,\"Someone brings a duffel to the front of a transport vehicle with twin rows of seats. As the mohawked man sits, someone\",takes the seat facing him.,looks up over his shoulder then hunches steadily down the steps.,nods and returns with a broad - bladed gaze.,looks down with a frown.,cocks his head and smiles.,gold1-orig,pos,unl,unl,pos,pos,Someone brings a duffel to the front of a transport vehicle with twin rows of seats.,\"As the mohawked man sits, someone\"\nlsmdc3055_PROMETHEUS-26502,16915,He sends two more off the other way. Leaving his chair the captain,goes to a layout table.,looks up from his magazine.,quickly snaps his seat belt.,pulls the garage door open and steps out.,knocks back from the seat.,gold0-orig,pos,unl,unl,unl,unl,He sends two more off the other way.,Leaving his chair the captain\nlsmdc3055_PROMETHEUS-26502,16906,Someone regards the space with a calm expression. A view through a helmet camera,shows a few of the team exploring the cavernous space.,goes to the distant window of england's surplus.,shows the features man hard features.,shows someone advancing on the turn of an upper stairway.,rests between palm trees on a van.,gold1-orig,pos,unl,unl,unl,unl,Someone regards the space with a calm expression.,A view through a helmet camera\nlsmdc3055_PROMETHEUS-26502,16920,\"They venture towards a faint light in the distance. Rounding a turn, the survey team\",steps into view and slows.,shoots into the water.,sees someone and someone.,nods slowly.,,gold0-orig,pos,unl,pos,pos,n/a,They venture towards a faint light in the distance.,\"Rounding a turn, the survey team\"\nlsmdc3055_PROMETHEUS-26502,16897,Someone adverts her troubled gaze. The transport,leads the two atvs to an opening in a wall surrounding the structure.,looks at her father.,makes a left run and heads back to sleep; someone rests her head on someone's shoulder.,nears the ominous crowd.,,gold1-orig,pos,unl,unl,pos,n/a,Someone adverts her troubled gaze.,The transport\nlsmdc3055_PROMETHEUS-26502,16895,\"In the transport, someone moves close to someone. He\",\"presses her helmet to his with an ardent gaze, then turns away.\",allows someone to lift his head to the floor.,removes its lighter as the skeletons stride by and leaves with the mallet by someone's side.,\"grabs someone by the leg, then tosses it down.\",looks with other fellow soldiers.,gold1-reannot,pos,unl,unl,unl,pos,\"In the transport, someone moves close to someone.\",He\nlsmdc3055_PROMETHEUS-26502,16896,\"He presses her helmet to his with an ardent gaze, then turns away. Someone\",adverts her troubled gaze.,proudly returns his gaze to someone.,leaves leaving his board behind.,glances around and finds her mother standing alone.,makes a call on his cell phone.,gold0-reannot,pos,unl,unl,unl,pos,\"He presses her helmet to his with an ardent gaze, then turns away.\",Someone\nlsmdc3055_PROMETHEUS-26502,16922,A pup doubles back from the far wall and drops down the pit. Water,rains around the probe as it plunges several stories.,\"his feet, he falls and lands on his knees.\",\", someone tries to step up to the side of the bed.\",thrash around the doorway descending as someone let the child get on a rod and the dog pulls someone away.,looks up from the book he wore.,gold0-reannot,pos,unl,unl,unl,unl,A pup doubles back from the far wall and drops down the pit.,Water\nlsmdc3055_PROMETHEUS-26502,16918,\"The survey team reaches a rounded tunnel of dark gleaming stone. As he leads them on, someone\",curiously shines her flashlight at the etched stone walls.,finds two young men dunking with carts.,is directing someone the dictaphone.,controls the prisoners for their intervention.,checks a join someone.,gold0-reannot,pos,unl,unl,unl,unl,The survey team reaches a rounded tunnel of dark gleaming stone.,\"As he leads them on, someone\"\nanetv_F_-w_z4B3bg,547,The man moves sticks around while looking off into the distance and begins to play. Another boy,walks in and out of frame and begins singing into a microphone.,is seen gently moving his feet along by the man while riding back and fourth.,is seen jumping up and down on his back while the camera captures his movements and walks back.,walks into frame as well as the others at the way the camera turns around.,is seen twisting to an object to the sand and putting on all his track gloves.,gold1-reannot,pos,unl,unl,unl,unl,The man moves sticks around while looking off into the distance and begins to play.,Another boy\nlsmdc1004_Juno-6783,18659,She rides down a quiet residential street in bright sunlight. She,arrives at someone's house and props her bike against the front wall.,\"stares at her rescuer pensively, then turns and approaches the girl.\",snogs her as she closes her eyes.,looks up her right face as she waves to the phone and sees she still looks at his wife and knees.,,gold0-orig,pos,unl,unl,unl,n/a,She rides down a quiet residential street in bright sunlight.,She\nlsmdc1004_Juno-6783,18661,Someone is sitting on the low wall with his guitar on his lap. Someone,sits down facing him with her guitar.,sighs when he hears the noise.,\"watches television, smiling about it now.\",steps on the other side of the house.,,gold0-orig,pos,unl,unl,unl,n/a,Someone is sitting on the low wall with his guitar on his lap.,Someone\nlsmdc1004_Juno-6783,18660,She arrives at someone's house and props her bike against the front wall. Someone,is sitting on the low wall with his guitar on his lap.,stares at her cousin.,cleans a hand in front of her.,\"storms through the terminal, finds someone with another woman in the suit.\",looks at his clock.,gold0-orig,pos,unl,unl,unl,pos,She arrives at someone's house and props her bike against the front wall.,Someone\nlsmdc1004_Juno-6783,18658,Someone is sitting on the front lawn bouncing two Weimaraner pups on her lap. She,rides down a quiet residential street in bright sunlight.,false back and scribbles product number on love periodically.,waves over her shoulder.,stares thoughtfully at the dragon's window as it moves forward.,places with the ribs bundle she has only to be fixing.,gold0-orig,unl,unl,unl,unl,unl,Someone is sitting on the front lawn bouncing two Weimaraner pups on her lap.,She\nanetv_yGwevg8vwuU,16148,Two people are seen performing various martial arts tricks against one each other in the middle of a large field. The people,continue spinning and kicking around one another while laughing at the camera and spinning around.,continue to play and others watch on the side as well watch in the end.,hold up their hands while smiling to one another as they continue to perform tricks.,speak to one another and continue to speak with one another.,are then seen playing frisbee up and around more times.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen performing various martial arts tricks against one each other in the middle of a large field.,The people\nanetv_yGwevg8vwuU,3445,A couple of women are fighting in a field. They,spin and kick in a form of kickboxing.,are trying to play a game of croquette with the batter.,say goodbye to each other.,are engaged in a game of curling.,,gold0-orig,pos,unl,unl,unl,n/a,A couple of women are fighting in a field.,They\nanetv_yGwevg8vwuU,3446,They spin and kick in a form of kickboxing. They,\"continue fighting quickly, kicking and boxing with each other.\",step floors in a small area.,look stone - splitting as they pull.,spin around to catch the ball and spin it around.,,gold0-orig,pos,unl,unl,unl,n/a,They spin and kick in a form of kickboxing.,They\nanetv_5yGj9JooT_Q,9767,A man jumps off a stack of mats. Another man,does a flip off the wall.,is shown running and doing multiple throws.,begins to play it together while kicking his feet.,holds his hands in place.,jumps and spins people in a gym exercise.,gold0-orig,pos,unl,unl,unl,pos,A man jumps off a stack of mats.,Another man\nanetv_5yGj9JooT_Q,9766,Two men are fighting with bows and arrows in a room. A man,jumps off a stack of mats.,is leaning up close.,blows on a piece of wood.,is talking to the camera.,explains something to play a game of rock paper scissors.,gold1-orig,pos,unl,unl,unl,unl,Two men are fighting with bows and arrows in a room.,A man\nanetv_jYphKtLFIUk,3777,A group of boys chisel a name in sand on the beach with their hands. The boys,leave the art piece leaving just one boy in a red t - shirt to work on it alone.,play against one another while paddling at the animal.,help their person line up.,continue playing on the ice and slide backwards down the track and giving a thumbs up in work.,\"dance together, moving back and forth around and forth while moving their arms and giving some rhythm to the music as they play.\",gold0-reannot,pos,unl,unl,unl,unl,A group of boys chisel a name in sand on the beach with their hands.,The boys\nanetv_elgmPvU19K8,4744,\"Another boat appears, then we see people watching waves. a man\",is water surfing behind a boat.,stands on the beach and then uses a pitcher of spray.,falls off of the boat into the boat.,\"smiles at the camera, then lowers the camera.\",climbs from a board behind the boat.,gold1-orig,pos,unl,unl,unl,pos,\"Another boat appears, then we see people watching waves.\",a man\nanetv_elgmPvU19K8,19385,One of the men on the boat jumps into the water from the second level. Another man,flies a drone from a ski boat.,comes inside and a boat follows.,leaves the boat and slowly looks up to a gauge.,jumps to the track below his skis.,is bathing the man with the boat.,gold0-orig,pos,unl,unl,unl,unl,One of the men on the boat jumps into the water from the second level.,Another man\nanetv_elgmPvU19K8,19384,\"Several men ski, ride jet skis and wake boards. One of the men on the boat\",jumps into the water from the second level.,rides a lift with a high wave.,jump building an inter area.,ski down the board in the raft.,,gold0-orig,pos,unl,unl,unl,n/a,\"Several men ski, ride jet skis and wake boards.\",One of the men on the boat\nanetv_elgmPvU19K8,19386,Another man flies a drone from a ski boat. Two men,tip a jet ski over on it's side in the water.,shoot in a hangar.,ski down a flagpole.,are a big flip off.,pass a rope attached to a drill while they both ski around in the car.,gold0-orig,pos,unl,unl,unl,pos,Another man flies a drone from a ski boat.,Two men\nanetv_elgmPvU19K8,19383,Several men in swimsuits are standing on the deck of a large boat. Several men,\"ski, ride jet skis and wake boards.\",is shuffling their boards out of the water.,are walking sailing very back together.,are scuba diving under large water in the water.,look through a box and grab the table.,gold0-orig,pos,unl,unl,unl,unl,Several men in swimsuits are standing on the deck of a large boat.,Several men\nanetv_elgmPvU19K8,4743,\"A view is seen of the ocean with a big boat in it. Another boat appears, then we\",see people watching waves.,see an aerial view of the mountains.,see the artificial ocean surface.,see something is in progress.,see another person paddling ashore behind the ship.,gold0-orig,pos,unl,unl,unl,pos,A view is seen of the ocean with a big boat in it.,\"Another boat appears, then we\"\nanetv_FRzN9ApCxW8,16879,\"Once he makes it to the other side of the strip, the person with the camera walks closer to him and starts to talk to them. After, the guy with the lawn mower\",begins to laugh and continues cutting the yard.,is then shown next to a woman who is in a backyard standing near a wood block floor stand talking.,\"spins on, shaking his hips and jumping.\",turns a skateboard down the road and runs over a pile of snow.,,gold0-orig,pos,unl,unl,unl,n/a,\"Once he makes it to the other side of the strip, the person with the camera walks closer to him and starts to talk to them.\",\"After, the guy with the lawn mower\"\nanetv_FRzN9ApCxW8,16878,\"A man is outside in a field of grass pushing a lawn mower back and forth. Once he makes it to the other side of the strip, the person with the camera\",walks closer to him and starts to talk to them.,stops cradling his back to the camera mower starts to turn in and gave a long time.,trims the section but the bars.,on the borders is show off a couple of quick angles.,proceeds to properly run to the other side of the yard.,gold0-orig,pos,unl,unl,unl,pos,A man is outside in a field of grass pushing a lawn mower back and forth.,\"Once he makes it to the other side of the strip, the person with the camera\"\nlsmdc0029_The_Graduate-64180,11519,\"Someone comes through the back door, moves to the pool and dives in. Someone\",swims toward us the length of the pool.,\"has turned off, looking at its supports, gasping, to avoid sight.\",is dancing in the middle of the dance floor.,is sitting in someone's car.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone comes through the back door, moves to the pool and dives in.\",Someone\nlsmdc0029_The_Graduate-64180,11514,The sun is bright outside. His bathing suit,is on the window sill.,is rising doubtfully from the tightrope holding joy.,stands in the wind.,hangs from the entrance.,,gold0-orig,pos,unl,unl,pos,n/a,The sun is bright outside.,His bathing suit\nlsmdc0029_The_Graduate-64180,11499,Someone has just shut the door to the bathroom behind him. He,\"is wearing his shirt, buttoned, and no trousers.\",\"sits on the bench, shaking his hand till he is finished.\",drapes one pillow behind his head as someone reaches for someone's jacket.,gestures at the camera somewhat obscured by empty desolate areas.,\"continues to zoom the water parts, falling over forcefully.\",gold1-orig,pos,unl,unl,unl,unl,Someone has just shut the door to the bathroom behind him.,He\nlsmdc0029_The_Graduate-64180,11508,\"Someone walks into the shot, half dressed. She\",passes between someone and the television set and goes out of frame.,is with a bunch of roses with a very long window.,\"stands alone in a straw chair, watching, wide - eyed.\",stands in front of him.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone walks into the shot, half dressed.\",She\nlsmdc0029_The_Graduate-64180,11503,\"In the dining room, people are sitting, having their dinner, looking through the doorways toward someone. Someone\",\"stands, crosses back to the door to the den and shuts it.\",\"picks up his weapon and guides it to a shelf, knocking in space, rows of rows, stare down at it.\",are on a pier.,stand in the doorway of a room in a small refrigerator carrying their trays of small green rooms and lungs.,\"limps down the corridor, holding a can of pills and glancing over at someone.\",gold0-orig,pos,unl,unl,unl,pos,\"In the dining room, people are sitting, having their dinner, looking through the doorways toward someone.\",Someone\nlsmdc0029_The_Graduate-64180,11516,He takes the suit and puts it on. He,\"moves to the bedroom door, opens it and goes out.\",\"steps forward with his blue goggles, so she can't see him.\",grabs it from a rack.,\", the pretty young biker jumps on the bed, staggers away, then moves up the street's open frame.\",,gold0-orig,pos,unl,unl,unl,n/a,He takes the suit and puts it on.,He\nlsmdc0029_The_Graduate-64180,11517,\"He moves to the bedroom door, opens it and goes out. We\",see someone in the kitchen.,corner juts over his brow as he and someone sit beside him at the table.,are many men in seeing way.,\"drops the bag into a trash bin, glares at someone, who smiles.\",\", he stands, sniffing the air, as he breaks off in brief silence.\",gold0-orig,pos,unl,unl,pos,pos,\"He moves to the bedroom door, opens it and goes out.\",We\nlsmdc0029_The_Graduate-64180,11513,Follow someone as he gets up and moves to the windows of what is now his bedroom in someone house. He,opens the closed blinds over the window.,approaches the house's mother's facade to find.,is at the bottom of the stairs.,tosses his pills through the fridge and swims toward the other end of the couch.,gets up from the passenger seat.,gold0-orig,pos,unl,unl,unl,unl,Follow someone as he gets up and moves to the windows of what is now his bedroom in someone house.,He\nlsmdc0029_The_Graduate-64180,11502,\"We now see behind someone the door that leads from someone den, in which someone is sitting. In the dining room, people\",\"are sitting, having their dinner, looking through the doorways toward someone.\",take their seats in front of their neighborhood.,are boxing in the living room.,move toward an open window.,sit at a small table with their drinks.,gold0-orig,pos,unl,unl,pos,pos,\"We now see behind someone the door that leads from someone den, in which someone is sitting.\",\"In the dining room, people\"\nlsmdc0029_The_Graduate-64180,11510,Someone continues to stare at the set. Someone,appears again and passes the other way.,sits with her leg resting on its knee.,passes the dog and looks at the dog.,plants a slight curtsey and winces her in place.,stands in the force of his silence.,gold0-orig,pos,unl,unl,unl,unl,Someone continues to stare at the set.,Someone\nlsmdc0029_The_Graduate-64180,11507,\"Someone is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed. Someone\",\"walks into the shot, half dressed.\",\", a patient, sits in bed facing her bare body.\",switched off from all the window and earrings.,\"is sitting on a table, facing with him.\",is quiet for a moment as the audience rotate earnestly.,gold1-orig,pos,unl,unl,unl,pos,\"Someone is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed.\",Someone\nlsmdc0029_The_Graduate-64180,11506,Pull back and we are in the Taft Hotel Room. Someone,\"is sitting on the bed, leaning against the headboard, watching the television set which is on a stand facing the bed.\",fishes in his pocket as she goes.,walks into the kitchen and framed images with cakes and toys appear.,\"stands on the edge of the lounge, looking grateful for the city.\",,gold0-orig,pos,unl,unl,unl,n/a,Pull back and we are in the Taft Hotel Room.,Someone\nlsmdc0029_The_Graduate-64180,11505,\"A television set, facing the chair, is on. Someone\",picks up a can of beer and drinks from it.,is looking as she looks around the room.,\"hangs his head, hands on his knees to someone's gun, and points it at someone whose head is cocked.\",looks up from his 2 - year - old assistant and stands for a moment.,,gold0-orig,pos,unl,unl,unl,n/a,\"A television set, facing the chair, is on.\",Someone\nlsmdc0029_The_Graduate-64180,11520,Someone swims toward us the length of the pool. He,stays on top of her for a moment.,kisses up round the surface and in an deep as the smoke is lowered.,dawns a school glove over a red defensive fish.,runs his arms through his pockets.,\"knocks over someone, ending proudly.\",gold0-orig,pos,unl,unl,pos,pos,Someone swims toward us the length of the pool.,He\nlsmdc0029_The_Graduate-64180,11515,His bathing suit is on the window sill. He,takes the suit and puts it on.,hangs up beside them.,is trailing.,climbs on board down.,,gold0-orig,pos,unl,unl,unl,n/a,His bathing suit is on the window sill.,He\nlsmdc0029_The_Graduate-64180,11511,Someone appears again and passes the other way. Someone,passes back the other way again.,approaches at the last basket staring from the bench.,leads it into a number with students.,coming down to face them.,climbs up several feet and points.,gold1-orig,pos,unl,unl,unl,pos,Someone appears again and passes the other way.,Someone\nlsmdc0029_The_Graduate-64180,11509,She passes between someone and the television set and goes out of frame. Someone,continues to stare at the set.,steps behind an ironing board lamp.,looks up to see that someone has disappeared.,opens the refrigerator and follows her through.,holds out the torch.,gold0-orig,pos,unl,unl,unl,unl,She passes between someone and the television set and goes out of frame.,Someone\nlsmdc0029_The_Graduate-64180,11512,\"Someone passes back the other way again. Someone, now fully dressed and carrying her purse,\",\"passes through again and, without looking at someone, goes to the door of the hotel room, opens it and exits.\",turns her back and returns to the bed.,is walking around the corner of the house to work out.,joins her through the doorway.,comes up the stairs.,gold0-orig,pos,unl,unl,pos,pos,Someone passes back the other way again.,\"Someone, now fully dressed and carrying her purse,\"\nlsmdc0029_The_Graduate-64180,11497,\"Someone is going toward him from the house, carrying some ominously large thing wrapped in tinfoil. He\",rolls off the raft and swims to the end of the pool.,fixes his wine for a moment staring out across the street.,wraps the chain around someone 'neck.,sees the silhouettes of someone falling on the street.,\"steps over, grabs him in the mouth and rocks him with a bat.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone is going toward him from the house, carrying some ominously large thing wrapped in tinfoil.\",He\nlsmdc0029_The_Graduate-64180,11504,\"Someone stands, crosses back to the door to the den and shuts it. On someone's back as he\",returns to the chair and sits.,walks up a ladder.,\"sweeps the boys' feet up the floor, sitting on the salesman's desk - and peers down the hallway.\",demonstrates watch it carefully.,\"steps to a blue door, turns on it and sees a clock hovering nearby.\",gold1-reannot,unl,unl,unl,unl,unl,\"Someone stands, crosses back to the door to the den and shuts it.\",On someone's back as he\nlsmdc0029_The_Graduate-64180,11494,The light in the room disappears. The midsummer sun,beats down on someone swimming pool and on someone who lies on a rubber raft in the middle of the pool.,begins to engulf through the triumphant school.,puts its branches in the air.,\"turns on very high, blood everywhere the surface of the pool.\",,gold1-reannot,pos,unl,unl,pos,n/a,The light in the room disappears.,The midsummer sun\nlsmdc0029_The_Graduate-64180,11496,\"Someone wears dark glasses, is deeply tanned, and holds a beer can in one hand. Someone\",opens his eyes and moves his head slightly.,picks up brushes and approaches a waiter.,\"climbs the porch, smoking her cigarette and holding her mouth.\",\"fumbles in his pocket, then begins to fold a second brush over someone's party hat.\",looks like that they mean or conversation or steps at some indian amusement.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone wears dark glasses, is deeply tanned, and holds a beer can in one hand.\",Someone\nlsmdc0029_The_Graduate-64180,11518,We see someone in the kitchen. Someone,\"comes through the back door, moves to the pool and dives in.\",\"stretches on a rug, then someone stands halfway outside.\",opens the entrance door and looks over at a lanky robber with a briefcase inside.,gets off the backseat.,,gold0-reannot,pos,unl,unl,unl,n/a,We see someone in the kitchen.,Someone\nlsmdc0029_The_Graduate-64180,11501,\"Someone moves in to someone, kneels in front of him and starts to unbutton his shirt. We now\",\"see behind someone the door that leads from someone den, in which someone is sitting.\",\"see an rib cage and all the noise, terror - lose.\",see a running figure lying on his back on the horse.,see the white manager on the tv.,\"see him standing in the garden watching him, baby, driving, around half.\",gold1-reannot,pos,unl,unl,unl,unl,\"Someone moves in to someone, kneels in front of him and starts to unbutton his shirt.\",We now\nlsmdc0029_The_Graduate-64180,11521,He stays on top of her for a moment. Someone,turns toward us and looks.,sits down while giggling.,stands up then leans close to her.,\"goes to his window, and comes back in.\",\"looks at someone, whose face is reflected in the mirror.\",gold1-reannot,pos,unl,pos,pos,pos,He stays on top of her for a moment.,Someone\nlsmdc0029_The_Graduate-64180,11500,\"He is wearing his shirt, buttoned, and no trousers. He\",moves to a chair and sits.,'ll help to get a weather look.,tries to tie up the boy and pulls him to his feet.,looks in a cramped space.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He is wearing his shirt, buttoned, and no trousers.\",He\nanetv_Nh-RdjyfGNA,2118,Teams of players play beach soccer. A player,scores a goal with the soccer ball.,pointing the cricket players joins players on the ice.,watches a brazilian competition.,ducks to a ball forward.,enters the goal pack.,gold0-orig,pos,unl,unl,unl,unl,Teams of players play beach soccer.,A player\nanetv_lviFcaF4HUo,4105,\"She spins herself between the two, going around and around the bars. She\",\"dismounts, throwing her arms into the air and smiling.\",jumps off the beam onto a mat while.,spins and hits all around the ball to the racket.,continue into images as they continue to spin and walk to another.,takes the cage out of her suitcase.,gold0-orig,pos,unl,unl,unl,unl,\"She spins herself between the two, going around and around the bars.\",She\nanetv_lviFcaF4HUo,9562,She does a gymnastics routine on the parallel bars. She,lands on a blue mat in front of her and puts her arms up.,\"jumps onto the mat, performing flips across the mat.\",does several jump and lands on the mat.,does a cheerleading routine on the balance beam.,balances on the bars and lands on the mat.,gold1-orig,pos,unl,unl,unl,pos,She does a gymnastics routine on the parallel bars.,She\nanetv_lviFcaF4HUo,9561,A girl is on the parallel bars. She,does a gymnastics routine on the parallel bars.,removes his hat and bounces the rope.,does push ups on the mat.,starts jumping roping in the gym.,\"flips multiple times, but does not separate.\",gold0-orig,pos,unl,unl,unl,pos,A girl is on the parallel bars.,She\nanetv_lviFcaF4HUo,4104,\"A female gymnast launches herself onto a low beam, then a high one. She\",\"spins herself between the two, going around and around the bars.\",does multiple crunches and lifts in her dismount before going down several times.,performs a stunning cheerleader routine in slow motion.,balances on the beam as she runs as she lands.,jumps from the front beam and lands on the bar mat.,gold0-orig,pos,unl,unl,unl,pos,\"A female gymnast launches herself onto a low beam, then a high one.\",She\nlsmdc0041_The_Sixth_Sense-67649,16196,The next step will put him at the chair. Someone,lowers his fingers from his temple.,goes back to sleep.,interlaces her fingers with she bridesmaids.,stumbles and begins to stop.,,gold1-orig,pos,pos,pos,pos,n/a,The next step will put him at the chair.,Someone\nanetv_yfjnahzAPSc,3629,\"A group of people play cricket on a large green, grass covered field with intersperses demonstrative interviews with different people between practice video. A man in a white shirt\",speaks to the camera with people practicing cricket in the background.,speaks to the camera in a field near clear paper with a logo.,lies on a slack rope by a rope.,walks back to a beer tree and grabs a piece of ice from a compact shelf.,talks while a group of people in white appear jersey bodies from the field.,gold0-orig,pos,unl,unl,unl,pos,\"A group of people play cricket on a large green, grass covered field with intersperses demonstrative interviews with different people between practice video.\",A man in a white shirt\nanetv_yfjnahzAPSc,9194,A person talks in a field where people are training hurling. People,throw a ball to other players in the field.,are engaged in a game of ocean polo.,are standing in a circle watching a discus throw above a stadium.,walking onto a field where people are thrown to someone.,are doing a cartwheel in a camp site.,gold0-orig,pos,unl,unl,unl,pos,A person talks in a field where people are training hurling.,People\nanetv_yfjnahzAPSc,9196,Another man explains while people where people plays in the field. A player,hit a ball while other try to catch the ball.,blows the lacrosse team against a sprints while giving other interview lines away.,stands over a green circle in the rink.,pass the ball in an dusts court and field.,is despondently on the shuffleboard in a beautiful grassy field.,gold1-orig,pos,unl,unl,pos,pos,Another man explains while people where people plays in the field.,A player\nanetv_yfjnahzAPSc,3630,A man in a white shirt speaks to the camera with people practicing cricket in the background. A group of men,practice cricket on a field with different people interviewing and gesturing different cricket moves as they speak.,start paddling together in a barn and jump.,are doing moves on several settings between opponents and others playing tricks and hitting the ball.,are shown on the corridor how to hit the ball back and forth.,hug a red trophy in the stands and walk towards the camera and laugh.,gold0-orig,pos,unl,pos,pos,pos,A man in a white shirt speaks to the camera with people practicing cricket in the background.,A group of men\nanetv_QCj7IGUGs2Y,443,A little girl runs in an indoor playground. She,runs under the equipment looking into a net.,shows her throwing herself on the floor mat.,runs and flips herself over another wall.,jumps in an indoor ring.,,gold0-orig,pos,unl,unl,pos,n/a,A little girl runs in an indoor playground.,She\nanetv_QCj7IGUGs2Y,14980,\"The girl walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares. Then she\",begins swinging on one of the swings and enjoys herself.,\"climbs down onto another base covered ground, mostly of doubled over then lets her run.\",performs and moves using a blue glow stick.,lets herself in her last falling pace before getting her feet forward.,goes across the ice and picks it up.,gold0-orig,pos,unl,unl,unl,unl,\"The girl walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares.\",Then she\nanetv_QCj7IGUGs2Y,14981,Then she begins swinging on one of the swings and enjoys herself. Then she,starts climbing up a rope tunnel to go explore some fun.,\"takes her final ornament, pretending to make cake.\",lifts all the shoes to watch the food.,walks past the camera and then everything continues on together and cheers.,,gold0-orig,pos,unl,unl,unl,n/a,Then she begins swinging on one of the swings and enjoys herself.,Then she\nanetv_QCj7IGUGs2Y,444,She runs under the equipment looking into a net. She,\"appears to be confused, walking slowly.\",grabs a bag and rubs it over her head.,turns her back with the pole and swings her off the mat.,sets the tray by the tree and glares at it.,,gold1-orig,pos,unl,unl,unl,n/a,She runs under the equipment looking into a net.,She\nanetv_QCj7IGUGs2Y,14979,There's a little girl dressed in a lime green outfit playing in an indoor play structure. The girl,\"walks by some rocking horses and swings, trying to explore the place as she walks on large colored foam squares.\",\"swings free circles a body of adult mice who are watching, performing with her jumps out of the trampoline.\",is riding a chinese elliptical in the living room with two fresh shoes and a dryer.,begins performing on the floor at the center of the room above her.,in purple is showing how to hit several different balls in time to a woman at the bar.,gold0-reannot,pos,unl,unl,unl,unl,There's a little girl dressed in a lime green outfit playing in an indoor play structure.,The girl\nanetv_7DY1vm9RiIk,7269,Several clips begin playing of volleyball fields with spectators. The first clip,shows the players celebrating.,is shown by a lady playing on stage.,skate on the advertisements.,is shown of a trophy game.,is shown with people being interviewed.,gold0-orig,pos,unl,unl,pos,pos,Several clips begin playing of volleyball fields with spectators.,The first clip\nanetv_7DY1vm9RiIk,7272,It then continues to show clips of men playing volleyball. The video,ends with a closeup of the audience and a title sequence.,cuts to a player playing croquet and support alone.,ends with a video of the people playing soccer together.,ends with a padded screen filled with trophies.,continuing to play the sport as a bmx game on the field.,gold1-orig,pos,unl,unl,unl,unl,It then continues to show clips of men playing volleyball.,The video\nanetv_7DY1vm9RiIk,7268,The video begins with a title sequence and logo. Several clips,begin playing of volleyball fields with spectators.,are shown of a man turning to his music and showing the smoke.,are shown repeated ma playing away from the camera.,\"are shown of people dancing, dancing.\",of marathon skateboarding is overlaid.,gold0-reannot,pos,unl,unl,unl,unl,The video begins with a title sequence and logo.,Several clips\nanetv_hT_4wWPNYxo,13201,Woman wearing bikini is ni a backyard dancing and doing gymnastics. the dancing woman,is kneeling holding the hoola hoop.,spins other small dogs like the man stands around and does a choreography.,is able to take her performance with the baton.,sits behind the bars to perform the jump and make her dance.,jump up in a chair on balance.,gold1-orig,pos,unl,unl,unl,pos,Woman wearing bikini is ni a backyard dancing and doing gymnastics.,the dancing woman\nanetv_hT_4wWPNYxo,15240,Woman is walking on a backyard on a sunny day wearing a bathsuit and holding a hoola hoop. the girl,start doing a dance with the hoola hoop.,raises the legs up in a circle around the woman.,is holding a violin and the violin on her frame.,holds a weight bar in a gym.,returns is throwing the ball to the other girl.,gold1-orig,pos,unl,unl,unl,unl,Woman is walking on a backyard on a sunny day wearing a bathsuit and holding a hoola hoop.,the girl\nanetv_hT_4wWPNYxo,13202,The dancing woman is kneeling holding the hoola hoop. the hoola hoop feels of the woman hands and she,grab it again with her foot.,begins stroke another water in both her hands and then hula the while missing.,takes the hula ring wildly.,is using multiple clipper and tape.,shuffles to the stage.,gold1-orig,pos,unl,unl,unl,pos,The dancing woman is kneeling holding the hoola hoop.,the hoola hoop feels of the woman hands and she\nlsmdc1015_27_Dresses-79712,10732,It's someone 'turn to look stunned. Someone,is at a loss.,squeezes his hand over the can.,\"swipes out his slaps, then slaps it again.\",\"turns to someone, who shrugs at many other people, someone touches them.\",reads a final note.,gold1-orig,pos,unl,unl,pos,pos,It's someone 'turn to look stunned.,Someone\nlsmdc3091_ZOMBIELAND-44732,7865,\"As Buck takes a bath, someone playfully scoops mounds of suds onto the boy's head. Outside by a blossoming tree, he\",twirls the happy boy in his arms.,turns to steering the destroyed vessel.,watches the expensive vessel surround over.,peers into the murky hole.,knocks pieces on a bamboo patio overlooking paris.,gold0-orig,pos,unl,unl,unl,unl,\"As Buck takes a bath, someone playfully scoops mounds of suds onto the boy's head.\",\"Outside by a blossoming tree, he\"\nlsmdc3091_ZOMBIELAND-44732,7867,He dabs his tears with real cash from the Monopoly board. The four survivors,sit pensively by the hearth.,step closer to the mob from someone at front - in the center of a group of teams holding hands.,peer a small recreational window.,\"lift his seat, crushing the crest of the titanic's enormous body.\",,gold1-orig,pos,unl,unl,unl,n/a,He dabs his tears with real cash from the Monopoly board.,The four survivors\nlsmdc3091_ZOMBIELAND-44732,7866,The open wallet contains two cherished snapshots of the bright faced boy. Someone,takes a close look.,fires a snowball at him.,reveals the name of someone's turntables.,'s blots show off the scars.,around someone sits on a back.,gold0-orig,pos,unl,unl,unl,unl,The open wallet contains two cherished snapshots of the bright faced boy.,Someone\nlsmdc3091_ZOMBIELAND-44732,7873,\"Later, he reads a label by candlelight. Someone\",swigs from the bottle.,sits at photos of him.,ushers others through his bedroom.,opens the fridge door to reveal a bustling balding guy.,slows to a halt.,gold0-orig,pos,unl,unl,unl,pos,\"Later, he reads a label by candlelight.\",Someone\nlsmdc3091_ZOMBIELAND-44732,7868,\"As she reaches for a gun, he targets another objet d'art. Little someone\",takes aim with a pump action shotgun.,\"lays in the cemetery, her dress wrapped around a wind witch body.\",fires her gun into the sky.,drops the metal onto a blazing torch and brings it to someone 'head.,,gold1-orig,pos,unl,pos,pos,n/a,\"As she reaches for a gun, he targets another objet d'art.\",Little someone\nlsmdc3091_ZOMBIELAND-44732,7870,\"Someone returns a rugged nod. Now gripping a bottle of wine, someone\",watches someone on the sly.,carries his board over the water.,allows someone to put his palms down.,lies down and kisses his father.,,gold0-orig,pos,unl,unl,unl,n/a,Someone returns a rugged nod.,\"Now gripping a bottle of wine, someone\"\nlsmdc3091_ZOMBIELAND-44732,7864,\"He serves a fresh pancake to a towheaded little boy in a high chair. As Buck takes a bath, someone\",playfully scoops mounds of suds onto the boy's head.,soaks the bottle salt.,watches someone across from the mother in three - serve homework.,stares at the surf.,is completely soaking him.,gold0-reannot,pos,unl,unl,unl,pos,He serves a fresh pancake to a towheaded little boy in a high chair.,\"As Buck takes a bath, someone\"\nlsmdc3091_ZOMBIELAND-44732,7871,\"Now gripping a bottle of wine, someone watches someone on the sly. She\",taps the bottle on the door frame.,hands him a pager over his heart.,\"follows the old woman, helps him to his feet.\",waits expectantly to shapely someone.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Now gripping a bottle of wine, someone watches someone on the sly.\",She\nanetv_8Nv52hFr0tg,8259,The female gymnast finishes her routine and dismounts. People,are shown applauding the gymnast.,is congratulated by her and her performance.,pull the bar up onto the stage.,begin to move the gym ball across.,,gold0-orig,pos,unl,unl,pos,n/a,The female gymnast finishes her routine and dismounts.,People\nanetv_8Nv52hFr0tg,8258,The gymnast performs a routine on a beam. The female gymnast,finishes her routine and dismounts.,runs up to the balance beam and end several flips and flips and flips before dismounting the dancer.,lounge and back flips as the gymnast dismounts and lands on the mat.,performs flips on the beam with the two.,moves to the edge of the balance beam to land in front of her.,gold0-orig,pos,unl,unl,unl,pos,The gymnast performs a routine on a beam.,The female gymnast\nanetv_8Nv52hFr0tg,8257,A close up of a second woman saying something is shown. The gymnast,performs a routine on a beam.,picked up the file so easily.,breaks and was seen.,gets on the counter with the bat on a table.,slides down a ledge into the middle of the audience.,gold0-orig,pos,unl,unl,unl,pos,A close up of a second woman saying something is shown.,The gymnast\nanetv_8Nv52hFr0tg,8260,People are shown applauding the gymnast. The gymnast,walks away from the beam.,begins slow dance as they dance.,\"drops to the floor, and male gymnast jumps higher.\",does the splits as the judges landed on the gym.,,gold0-reannot,pos,unl,unl,unl,n/a,People are shown applauding the gymnast.,The gymnast\nanetv_UaiKJ_7mKIA,3652,A woman in snow jacket shovels snow from a sidewalk. A man,breaks up ice with a spade.,is with a poodle in a tube.,pulls down a shovel and throws it off into a pile to the ground.,is seen next to his father who is seated with them on the sidewalk.,joins the man and starts cleaning a patch of snow.,gold0-orig,pos,unl,unl,unl,pos,A woman in snow jacket shovels snow from a sidewalk.,A man\nanetv_UaiKJ_7mKIA,3650,A man shovels snow from the sidewalk. A man in a wheelchair,goes down a sidewalk on a cold winter day.,drives up a snow covered hill.,leans against a bush in a yard carrying a wooden mower.,rides the bike watching a person who is filming them.,walks up to them.,gold0-orig,pos,unl,unl,unl,unl,A man shovels snow from the sidewalk.,A man in a wheelchair\nanetv_UaiKJ_7mKIA,3651,A man in a wheelchair goes down a sidewalk on a cold winter day. A woman in snow jacket,shovels snow from a sidewalk.,put a waste ground in her yard.,is standing next to some cement talking to the camera.,is lying on a bunk and talking.,walks down a busy street.,gold0-orig,pos,unl,unl,unl,pos,A man in a wheelchair goes down a sidewalk on a cold winter day.,A woman in snow jacket\nanetv_UaiKJ_7mKIA,3653,A man breaks up ice with a spade. A man,shovels snow from a sidewalk into a tree lined planter.,jumps in front of a large formation.,removes a covered feather from a hookah.,holds a cup full of drum sticks in front of him.,,gold0-orig,pos,unl,unl,unl,n/a,A man breaks up ice with a spade.,A man\nanetv__I8sqYLhRKM,18331,The older girl shows the younger one how to rake while another girl stands by and watches on a nearby slide. The camera,zooms in on the younger girl and watches her rake up the leaves.,zooms in around the boy's face and shows off his wrist.,\"pans as the boy continues to talk as she leaves, but she does n't speak to the camera.\",pans back down as a family of people are pulling to decorate the house.,,gold0-orig,pos,unl,unl,unl,n/a,The older girl shows the younger one how to rake while another girl stands by and watches on a nearby slide.,The camera\nanetv__I8sqYLhRKM,18330,Two girls are shown raking up leaves in a yard while continuously talking to the camera. The older girl,shows the younger one how to rake while another girl stands by and watches on a nearby slide.,pushes a miniature lip length through their hair and makes a bow.,continues to drive the dog and continue blowing them.,continues steps in the car and leads into her standing with her daughter.,shows a path for flowers on the yard.,gold0-orig,pos,unl,unl,unl,pos,Two girls are shown raking up leaves in a yard while continuously talking to the camera.,The older girl\nlsmdc3059_SALT-29053,7290,The military aide sets his briefcase on the table. Secret service agent James,joins a woman wearing a headset.,take a tearful couple heads down.,\"binds someone's arm, pats the slumped and guilty prisoner.\",\", someone soberly checks his computers.\",shines on his extended arm.,gold1-reannot,pos,unl,unl,unl,unl,The military aide sets his briefcase on the table.,Secret service agent James\nanetv_oZnbAhzN3jg,12195,First the soap is applied then it is scraped away. The process,is repeated and finished.,is above the sink.,is measured completely replaced.,is mixed on a list.,is clean and grilling with soapy water.,gold0-orig,pos,unl,unl,unl,unl,First the soap is applied then it is scraped away.,The process\nanetv_oZnbAhzN3jg,12194,A person shows how to clean large windows. First the soap,is applied then it is scraped away.,is removed and being cleaned from the shed.,moves over the hardwood floors and bowls pour the surface.,is clean as the squeegee has instructed.,,gold1-orig,pos,unl,unl,pos,n/a,A person shows how to clean large windows.,First the soap\nanetv_8GJWokVCzUM,3827,\"This man is wearing a red tank top, black shorts, and shoes. He runs on the race track and the he\",does the triple jump in which he almost makes it to the end.,grabs the shovel before zoom in the net over the rear.,is successfully getting to their feet and hurrying all through the avenue of trees as the trees come under the length of the sidewalk.,runs very fast into the man as he does incredible stunts and tricks.,makes to do his jump in the starting motion.,gold0-orig,pos,unl,unl,unl,pos,\"This man is wearing a red tank top, black shorts, and shoes.\",He runs on the race track and the he\nanetv_PMDpnLURLp8,12774,Everyone else begins to take their turns and start to run and jump also. They,practice for a while and do it for a few more times.,clap as they step near to their knees at a little volley.,turns to the boy and looks up in celebration as his mother pulled back towards the people.,are stopped by a referee playing a game of green clapping.,people are holding each other in an octagonal position and run over and fall.,gold1-orig,pos,unl,unl,unl,unl,Everyone else begins to take their turns and start to run and jump also.,They\nanetv_PMDpnLURLp8,12773,Then he positions himself and does a jump and lands. Everyone else,begins to take their turns and start to run and jump also.,starts moving the platform for a few minutes until he returns and resumes back in to finish the event.,is wearing a red t shirt.,looks in the mirror.,is in the middle and swimming across the winner as the man does a back flip.,gold0-orig,pos,unl,unl,unl,unl,Then he positions himself and does a jump and lands.,Everyone else\nanetv_PMDpnLURLp8,12772,He grabs the long pole and begins to walk with it to the other side of the field. Then he,positions himself and does a jump and lands.,stands away from the edge.,takes the camera to turn the back to the rope.,tries again to keep the ball and ties.,gets up and then backwards up a rope and lands on the mat.,gold0-orig,pos,unl,unl,unl,unl,He grabs the long pole and begins to walk with it to the other side of the field.,Then he\nlsmdc0031_The_Lost_Weekend-65874,11253,A smile of relief comes on someone's face. Someone,has sunk back on the couch again.,puts his eleventh fingers down the side of someone's mouth.,\"walks a few steps ahead of him, then turns toward her mother.\",fixes a coffee cup in her hand.,moves to someone.,gold0-orig,pos,unl,pos,pos,pos,A smile of relief comes on someone's face.,Someone\nlsmdc0031_The_Lost_Weekend-65874,11250,She looks into the living room and her face freezes. Someone,has risen from the couch and has picked up the glass of whiskey.,looks in at someone.,steps up and surveys the scene.,rubs his face.,,gold0-orig,pos,unl,unl,unl,n/a,She looks into the living room and her face freezes.,Someone\nlsmdc0031_The_Lost_Weekend-65874,11251,\"Someone has risen from the couch and has picked up the glass of whiskey. There's a second of hesitation, then he\",\"uses it for an ashtray, dropping the cigarette into it.\",hurries between them up to someone.,nods back and forth.,\"stops for a little turn, hand feeling the carrying water all around someone while his conversation continuing.\",hears the screams as the rain begins to fall.,gold0-orig,pos,unl,unl,unl,unl,Someone has risen from the couch and has picked up the glass of whiskey.,\"There's a second of hesitation, then he\"\nlsmdc0031_The_Lost_Weekend-65874,11249,\"She puts a cigarette in his mouth, lights it. She\",starts into the kitchen.,stops in front of someone.,takes it and shuts it.,\"clenches her fist and sits, landing on her hands.\",lowers the drink and closes his eyes.,gold1-reannot,pos,unl,unl,unl,unl,\"She puts a cigarette in his mouth, lights it.\",She\nlsmdc0031_The_Lost_Weekend-65874,11252,\"There's a second of hesitation, then he uses it for an ashtray, dropping the cigarette into it. A smile of relief\",comes on someone's face.,leads back to their hands as he stares at it.,closes on him as he crosses the steps of the building.,plays down someone's lips as she twitches brief memory of the baby's deep space.,\"appears on his face and lips, no features.\",gold1-reannot,pos,unl,unl,unl,unl,\"There's a second of hesitation, then he uses it for an ashtray, dropping the cigarette into it.\",A smile of relief\nanetv_jmerKGN0VPs,3268,A man in red sprays his car with water. He,rinses off the soap.,puts several turns back to the water.,puts the fabric of the tire on.,jumps off a vehicle and gets out of the car.,,gold0-orig,pos,unl,unl,unl,n/a,A man in red sprays his car with water.,He\nanetv_jmerKGN0VPs,3269,He rinses off the soap. He,laughs as he does it.,sweeps away the dirt.,washes his face and wipes blue ads with his hands.,puts one foot on the rug.,tosses the towel to the board.,gold0-orig,pos,unl,unl,unl,unl,He rinses off the soap.,He\nanetv_jmerKGN0VPs,778,A man in a red shirt is spraying a car with a hose. He,walks behind the car and continues spraying it.,shovels the snow from a partially scraped garden.,is spraying the sticks with a hose.,touches equipment onto the window.,grabs the ball and presses it down to a wall.,gold0-orig,pos,unl,unl,unl,unl,A man in a red shirt is spraying a car with a hose.,He\nanetv_jmerKGN0VPs,777,A black car is parked in a parking lot. A man in a red shirt,is spraying a car with a hose.,stands on an exercise machine.,is standing on a ledge.,is driving a small car.,is standing behind him watching.,gold1-reannot,pos,unl,pos,pos,pos,A black car is parked in a parking lot.,A man in a red shirt\nanetv_jmerKGN0VPs,3270,He laughs as he does it. He,sprays the back of the car.,is listening to the pensive of the dictaphone.,use their hands to sound different different comforts.,closes it's eyes and begins to peel away.,\"ends his whistle, and heads to the ticket booth.\",gold0-reannot,pos,unl,unl,unl,unl,He laughs as he does it.,He\nlsmdc0053_Rendezvous_mit_Joe_Black-71355,10474,\"She kisses someone in some light, humorous way they have ob - viously done before, their heads bobbing like plastic water toys and their lips meeting mid - air. At the kiss's conclusion someone\",suddenly notices someone is present and has been watching.,remembers someone wearing a miserable preparing panty cake.,turns away from the window.,\"pulls her fiery curtain down from his coat, barely holding it there.\",pushes himself into the bathroom.,gold1-orig,pos,unl,unl,unl,unl,\"She kisses someone in some light, humorous way they have ob - viously done before, their heads bobbing like plastic water toys and their lips meeting mid - air.\",At the kiss's conclusion someone\nanetv_MYi6p113py8,12055,A woman stands in front of a crowd of people on a public sidewalk and dances with a male dance partner in ballroom style dance. A man,adjusts a radio while a woman stands in a ballroom dance pose preparing for a dance.,is seen on stage with various clips regarding his tutorial fighting with.,stands in front of someone holding a piece of glass in one hand while they drink with sticks.,is talking to the woman as he talks.,is seen smiling to the camera in front of people jumping up and down as well as a huge dance.,gold1-orig,pos,unl,unl,pos,pos,A woman stands in front of a crowd of people on a public sidewalk and dances with a male dance partner in ballroom style dance.,A man\nanetv_MYi6p113py8,14716,The man and woman begin dancing with one another in front of the large crowd. The two,continue dancing with one another while others watch and end by bowing and taking tips.,continue off performing splits ups while another dancers continue to pull them away.,continue to dance in swing with one another.,continue playing with one another while people watch on the sides.,begin dancing with one another and end by walking away.,gold1-orig,pos,unl,pos,pos,pos,The man and woman begin dancing with one another in front of the large crowd.,The two\nanetv_MYi6p113py8,14715,A woman is seen standing in the middle of a large crowd with a man bending down in front. The man and woman,begin dancing with one another in front of the large crowd.,are then seen holding a tennis racket and hitting a girl all over together.,starts dancing across the field.,get up and begin dancing on the ground beside one another.,begin performing a martial arts routine.,gold1-orig,pos,unl,pos,pos,pos,A woman is seen standing in the middle of a large crowd with a man bending down in front.,The man and woman\nlsmdc0026_The_Big_Fish-62095,14564,\"Only someone, smoking on the corner, is n't sad to see someone go. Many of the townfolk\",come onto the street to hug someone or shake his hand.,are in the lush room over the swing.,are on their turntables to someone and who are writing on papers in the bar.,\"have announcers, whom touch a trail at the top of the cinema.\",are starting to fire.,gold0-orig,pos,unl,unl,unl,pos,\"Only someone, smoking on the corner, is n't sad to see someone go.\",Many of the townfolk\nlsmdc0026_The_Big_Fish-62095,14571,Each wears a backpack with all his earthly possessions. People,\"come to a bend, where the paved road veers left and an overgrown dirt road runs straight.\",\"add some more stuff to a shelf where he spots photos of the wealthy, and comes blurry.\",looks at his son partly in back.,sit down beside a chocolate table piled with foil on one arm.,shoot brightly up the swirling staircase.,gold0-orig,pos,unl,unl,unl,unl,Each wears a backpack with all his earthly possessions.,People\nlsmdc0026_The_Big_Fish-62095,14568,\"She motions for someone to lean down, so she can whisper something to him. Although we are very close, we\",can't hear her voice.,can just see his arm standing within the room from his place.,have now just able to look at people as he sidles over to a door.,hear the sound of the priest behind.,,gold0-orig,pos,unl,unl,unl,n/a,\"She motions for someone to lean down, so she can whisper something to him.\",\"Although we are very close, we\"\nlsmdc0026_The_Big_Fish-62095,14567,\"The ruckus slows and quiets, as if a strange spell has been cast. She\",\"motions for someone to lean down, so she can whisper something to him.\",tries again but does not.,stops in beside someone.,drops the starboard under his straw.,is gone for a bit.,gold0-orig,pos,unl,unl,unl,pos,\"The ruckus slows and quiets, as if a strange spell has been cast.\",She\nlsmdc0026_The_Big_Fish-62095,14569,\"Although we are very close, we can't hear her voice. The advice only\",succeeds in confusing someone.,has broken out of the angular bench.,looks like a fashionable brass gym.,seems to have a false sense as she does.,is beyond someone.,gold0-orig,pos,unl,unl,unl,unl,\"Although we are very close, we can't hear her voice.\",The advice only\nlsmdc0026_The_Big_Fish-62095,14572,The old road is blocked with signs and warnings of danger. Someone,\"looks at the dirt road, wary.\",is in green backwards.,quietly turns her side to leave.,\"starts with his stilts, spectators, and his hawaiian shirts.\",,gold0-orig,pos,unl,unl,unl,n/a,The old road is blocked with signs and warnings of danger.,Someone\nlsmdc0026_The_Big_Fish-62095,14566,\"As the crowd parts, he finds himself face to face with. The ruckus\",\"slows and quiets, as if a strange spell has been cast.\",makes an attempt for admiration for someone shot by holding his own spear.,stares up at him for a moment then enters from outro.,shines to a windowed office door in the end zone.,\"takes the drink, watches him closely, then stands.\",gold0-orig,pos,unl,unl,unl,unl,\"As the crowd parts, he finds himself face to face with.\",The ruckus\nlsmdc0026_The_Big_Fish-62095,14570,The advice only succeeds in confusing someone. We,tilt up from the road to reveal people walking out of someone.,people from the mall.,didn't blow some sort.,didn't blow some sort.,interviews someone inevitable someone very much.,gold1-reannot,unl,unl,unl,unl,unl,The advice only succeeds in confusing someone.,We\nlsmdc0026_The_Big_Fish-62095,14565,\"Many of the townfolk come onto the street to hug someone or shake his hand. As the crowd parts, he\",finds himself face to face with.,stops and throws a ticket back.,\"rocks his hips and snaps in, releasing his hands.\",reaches a corner and efforts podium lonely wearing a hat.,\"is set to gesture, then turn and walks toward a reception desk.\",gold1-reannot,pos,unl,unl,unl,unl,Many of the townfolk come onto the street to hug someone or shake his hand.,\"As the crowd parts, he\"\nlsmdc3070_THE_CALL-32890,839,Three squad cars arrive at the target home. Someone and his fellow officer,\"hop out with their side arms drawn, rushing past toys in the front lawn.\",sit on his ridge.,shoot agents in every corner of the camp.,is in a bumper car parked by the back of the shop.,,gold0-orig,pos,unl,unl,unl,n/a,Three squad cars arrive at the target home.,Someone and his fellow officer\nlsmdc3070_THE_CALL-32890,840,\"Someone and his fellow officer hop out with their side arms drawn, rushing past toys in the front lawn. Someone\",goes in the front door.,spots them and runs into them.,runs on the bike and sprints forward.,hurries out of the car.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone and his fellow officer hop out with their side arms drawn, rushing past toys in the front lawn.\",Someone\nlsmdc3070_THE_CALL-32890,837,\"Her database searches briefly, then loads a smiling photo of the kidnapper. Someone\",glares at the image.,\"looks up as someone strolls toward the high, broken building.\",gives the woman a collect nod.,hands her a torn slip next to it.,winces as she watches her work.,gold0-orig,pos,unl,unl,unl,pos,\"Her database searches briefly, then loads a smiling photo of the kidnapper.\",Someone\nlsmdc3070_THE_CALL-32890,833,Flames instantly consume the attendant. The kidnapper,watches as the burning man flails about.,reaches into his jacket pocket and replaces a padlock on stereo.,punches his head as someone scrambles away.,\"glances back at it, makes hand gestures to his mother.\",,gold0-orig,pos,unl,unl,unl,n/a,Flames instantly consume the attendant.,The kidnapper\nlsmdc3070_THE_CALL-32890,834,\"The kidnapper watches as the burning man flails about. Breaking his stare, the killer\",rushes to the trunk.,reaches someone toward the destroyer.,picks up someone's hat and crawls out of the tunnel.,flies from his grasp.,drops someone forward down onto a vent.,gold1-orig,pos,unl,unl,pos,pos,The kidnapper watches as the burning man flails about.,\"Breaking his stare, the killer\"\nlsmdc3070_THE_CALL-32890,835,\"Breaking his stare, the killer rushes to the trunk. With her jaw trembling, someone\",shifts her desperate eyes.,walks back to someone's office.,delivers a handful of oatmeal.,\"scrambles to his feet and peers around the building, then unlocks the doors.\",glances down at its contents.,gold0-orig,pos,unl,unl,unl,pos,\"Breaking his stare, the killer rushes to the trunk.\",\"With her jaw trembling, someone\"\nlsmdc3070_THE_CALL-32890,836,\"With her jaw trembling, someone shifts her desperate eyes. Elsewhere, the police database\",finds a match for the kidnapper's print.,blows through a balcony while a person halts their movements.,keeps pulling on clothing.,rush the parking lot.,,gold0-orig,pos,unl,unl,unl,n/a,\"With her jaw trembling, someone shifts her desperate eyes.\",\"Elsewhere, the police database\"\nlsmdc3070_THE_CALL-32890,841,Someone goes in the front door. Someone,finds someone's wife and kids in the kitchen.,\"hands on a dry to a tall metal courtyard, while someone waiting for a gangplank.\",is frantically hearing about anything.,releases the key and shoots a dash to his window.,\"walks up the staircase with another young woman, who runs up to the second.\",gold0-reannot,pos,unl,unl,unl,pos,Someone goes in the front door.,Someone\nlsmdc3070_THE_CALL-32890,838,Someone glares at the image. Three squad cars,arrive at the target home.,tumble out of the stairwell at someone's door.,swerve around him as he rides up onto the side of the bus.,appear in front of them.,swerve at their angle.,gold1-reannot,pos,unl,unl,pos,pos,Someone glares at the image.,Three squad cars\nlsmdc0011_Gandhi-52237,10441,They have reached the trough. He,\"meets someone's gaze, and for a moment something deeper than argument passes between them.\",see a group of males with the bludger between them.,tracking in the woman's back from the school as someone scrambles to situated just skipping.,shows her some packets.,,gold1-orig,pos,unl,unl,unl,n/a,They have reached the trough.,He\nlsmdc0011_Gandhi-52237,10446,They watch someone as he carries his bowl of potatoes to someone. Someone,\"plods on toward the kitchen, carrying the bowl of potatoes.\",sits on the opposite side of the chair.,leans out of frame to face the framed tray of contents.,\"takes a bowl from the closet table, and notices them.\",desperately pushes him away.,gold0-orig,pos,unl,unl,unl,pos,They watch someone as he carries his bowl of potatoes to someone.,Someone\nlsmdc0011_Gandhi-52237,10442,\"He meets someone's gaze, and for a moment something deeper than argument passes between them. Then something\",catches someone's eye.,catches someone's eye again.,\"breaks more, and the murmurs is filled with sadness.\",\"comes out and raises his hand, offering the gesture.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He meets someone's gaze, and for a moment something deeper than argument passes between them.\",Then something\nlsmdc0011_Gandhi-52237,10447,Clothes are dipped in the brownish water. It is long past the monsoons and they,have had to come far out in the riverbed to the water.,are going down a slide and with a person in their sleep.,crawl towards the house from the pool.,are then added to the water.,,gold0-orig,pos,unl,unl,unl,n/a,Clothes are dipped in the brownish water.,It is long past the monsoons and they\nlsmdc0011_Gandhi-52237,10445,\"He has n't moved, and neither have his friends. They\",watch someone as he carries his bowl of potatoes to someone.,boom down to the ledge.,pretend to blow someone's hair as they run.,scoot back to the other side of the room.,puts his new tire on.,gold0-orig,pos,unl,unl,pos,pos,\"He has n't moved, and neither have his friends.\",They\nlsmdc0011_Gandhi-52237,10437,He glances at someone then drops the potato in the bowl. He,lifts the pail of peelings to someone.,moves back to policemen and drops it into the cauldron.,smacks a knife with it!,skulks off to the second.,pulls it up and takes a bite of the sandwich.,gold0-orig,pos,unl,unl,unl,unl,He glances at someone then drops the potato in the bowl.,He\nlsmdc0011_Gandhi-52237,10448,It is long past the monsoons and they have had to come far out in the riverbed to the water. But they,are laughing at their task.,bring us elderly ladies on their way.,are n't really angry.,keep arranging trying to get in.,,gold1-orig,pos,unl,pos,pos,n/a,It is long past the monsoons and they have had to come far out in the riverbed to the water.,But they\nlsmdc0011_Gandhi-52237,10439,\"Someone in his fine linen suit takes the pail awkwardly. His friends watch with amusement, but they too\",rise to follow as they head for the kitchen.,quickly open the wine.,look and gape at the offscreen wagon.,barely notice the stake in it.,move back and forth.,gold1-orig,pos,unl,unl,pos,pos,Someone in his fine linen suit takes the pail awkwardly.,\"His friends watch with amusement, but they too\"\nlsmdc0011_Gandhi-52237,10438,He lifts the pail of peelings to someone. Someone in his fine linen suit,takes the pail awkwardly.,is carried onto a stretcher.,approaches with a dagger.,sinks and follows him.,,gold0-orig,pos,unl,unl,unl,n/a,He lifts the pail of peelings to someone.,Someone in his fine linen suit\nlsmdc0011_Gandhi-52237,10443,The goat is reaching for his bowl of potatoes. He,pushes it away and starts for the kitchen.,looks up to someone with a resigned smile.,removes the lid and takes a big bite.,\"pushes a stroller, towards a stove.\",puts the ring into his mouth.,gold1-orig,pos,unl,unl,unl,pos,The goat is reaching for his bowl of potatoes.,He\nlsmdc0011_Gandhi-52237,10436,Someone has finished the last potato. He,glances at someone then drops the potato in the bowl.,\"checks the towel, and edges to the door.\",dashes through the trees and sees someone striding out of the village.,\"pulls it open, then tosses his trash bag over.\",tries to check on a pretty girl.,gold0-reannot,pos,unl,unl,unl,pos,Someone has finished the last potato.,He\nlsmdc0011_Gandhi-51750,18929,\"We see the throng, following the weapon - carrier bier of someone as it slowly inches its way along the Kings way. Someone, tall, handsome, bemedalled,\",walks at the head of dignitaries from many lands.,laughs at the spotlight.,has a walkie and a tray and four coats.,is drinking his good hand.,dozes along with a baby.,gold0-orig,pos,unl,unl,unl,unl,\"We see the throng, following the weapon - carrier bier of someone as it slowly inches its way along the Kings way.\",\"Someone, tall, handsome, bemedalled,\"\nlsmdc0011_Gandhi-51750,18928,Commentators from all over the world are covering the ceremony. We,\"concentrate on one, let us say the most distinguished american broadcaster of the time, someone.\",approaches the russian captain at the reception.,puts the plastic bag onto the board.,turn just the way of the track.,has almost come into the girls shop before.,gold0-orig,pos,unl,unl,unl,unl,Commentators from all over the world are covering the ceremony.,We\nanetv_dzsSiqXxfpw,18841,\"After talking to the crowd he calls out and a dog runs out on the stage to him. Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man\",throws the frisbees on the ground and starts to play fetch with the dog.,is playing with his dog and all of his tricks while the dog gives in more baton performing the tricks.,get the triple frisbee at the starting line.,push the dog.,,gold0-orig,pos,unl,unl,pos,n/a,After talking to the crowd he calls out and a dog runs out on the stage to him.,\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man\"\nanetv_dzsSiqXxfpw,18842,\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man throws the Frisbees on the ground and starts to play fetch with the dog. At one point the dog\",starts to jump off the mans back as he chases after frisbees.,eats with a heavy brush.,grabs his wooden hand as it goes out.,\"eats a frisbee, then a dog jumps and walks back and forth, leaving wildly for the dog and bark.\",catches up and hits the dog with his gloved hand.,gold1-orig,pos,unl,unl,unl,unl,\"Initially he starts to play with the dog and the dog kept trying to grab the mans frisbees, than the man throws the Frisbees on the ground and starts to play fetch with the dog.\",At one point the dog\nanetv_dzsSiqXxfpw,18843,At one point the dog starts to jump off the mans back as he chases after Frisbees. Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he,starts to spin the dog around.,turns and walks across the street.,speaks about it again.,grabs the tire off.,,gold1-orig,pos,unl,unl,unl,n/a,At one point the dog starts to jump off the mans back as he chases after Frisbees.,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he\nanetv_dzsSiqXxfpw,18844,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he starts to spin the dog around. In the end the man,performs a trick with the dog and makes him do a back flip and grabs him and takes him off the stage.,is upset and picks up the pile of hair for the dog and gives it to him.,plays and shows the dogs while other dogs drag them off.,holds a disc in the air and the man jump with the string and hit the bull again.,gets up to explode and pretends to catch of fly on his toes.,gold0-orig,pos,unl,unl,unl,unl,Also at another point the man grabs on to a Frisbee at one end and a dog at the other end and he starts to spin the dog around.,In the end the man\nanetv_dzsSiqXxfpw,18840,A man is seen lecturing a crowd while holding several green Frisbees in his hand. After talking to the crowd he calls out and a dog,runs out on the stage to him.,runs and leads out to a boy with another person towards the horse.,runs on underneath the camel.,jumps onto the man to dog.,comes up to the dog and begins to beat the dog on the lawn to answer numerous.,gold0-orig,pos,unl,unl,unl,unl,A man is seen lecturing a crowd while holding several green Frisbees in his hand.,After talking to the crowd he calls out and a dog\nlsmdc1011_The_Help-78318,20063,\"Someone lays out some cards. In the bathroom, as someone softly raises the toilet lid, someone\",puts her ear to the bathroom door.,drapes it over his head.,blows the chess one over.,sinks into his leg and flops himself on the bed.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lays out some cards.,\"In the bathroom, as someone softly raises the toilet lid, someone\"\nlsmdc1011_The_Help-78318,20067,A child's bedroom turned upside down. Someone,\"sits with someone on her lap, sheltering under an upturned mattress.\",\"points at the tv; minibus steps out, crosses their apartment, and opens the door behind them.\",pops the trunk first.,picks up the case carrying someone and starts toward the dining room.,,gold0-orig,pos,unl,unl,unl,n/a,A child's bedroom turned upside down.,Someone\nlsmdc1011_The_Help-78318,20064,\"Defiantly, someone flushes the toilet. Someone\",\"stands with her arms folded, then slams down the lid.\",peers out of a giant iron.,slaps herself on the phonograph.,\"smiles softly, her nose quivers in the water.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Defiantly, someone flushes the toilet.\",Someone\nlsmdc1011_The_Help-78318,20075,\"At a bus stop, several maids from the locality are climbing aboard. Someone, in a green straw hat and spotty dress and carrying a pie and a fan,\",peers out from the door of an empty bus.,comes to the secretary's door.,comes downstairs with a hopping torch.,walks down the aisle holding the tray of sticks on her straw.,looks at with specific moves.,gold0-orig,pos,unl,unl,unl,unl,\"At a bus stop, several maids from the locality are climbing aboard.\",\"Someone, in a green straw hat and spotty dress and carrying a pie and a fan,\"\nlsmdc1011_The_Help-78318,20071,Someone picks the child up. Someone,shuts the toilet door with her free hand.,the boy knocks the wave back and hurtles off the table.,\"makes a beat, but his eyes react as if he is waiting for his answer.\",stares astonished at someone as he's heard her with the little boy and teens both.,sets the teenage boy aside and gives a high wave.,gold0-orig,pos,unl,unl,unl,unl,Someone picks the child up.,Someone\nlsmdc1011_The_Help-78318,20066,\"Someone looks up from her cards without expression. Someone, carrying her handbag,\",\"strides out of the front door, into the pouring rain.\",\"looks after him, and takes the shirt from him.\",is shoved to the back of her head and starts to go.,walks past someone and follows someone.,\"steps to the door and glances around and takes out her cellphone, then heads off.\",gold1-orig,pos,unl,unl,pos,pos,Someone looks up from her cards without expression.,\"Someone, carrying her handbag,\"\nlsmdc1011_The_Help-78318,20060,She sees a sun chair being buffeted in the wind. The pool umbrella,has gone the way of the chair.,is held in place beside the bus.,catches the body in it as it starts darting around the tree.,causes the boat as it goes into the ocean.,collapses against the tree.,gold0-orig,pos,unl,unl,unl,pos,She sees a sun chair being buffeted in the wind.,The pool umbrella\nlsmdc1011_The_Help-78318,20074,\"Smiling softly, someone kisses her on the cheek. They\",hug each other fondly.,\", one of the woman turns her from side to side.\",\", a handsome young man at her coat, looking at the newspaper in his hand, sits alone at the dining bed.\",\"glance at his wife, then backs away.\",stroll toward the house.,gold0-orig,pos,unl,unl,unl,pos,\"Smiling softly, someone kisses her on the cheek.\",They\nlsmdc1011_The_Help-78318,20062,Someone beats a hasty retreat. Someone,lays out some cards.,climbs into a handle's den!,frowns anxiously as she examines the portrait of someone's bald piano.,\"crawls quickly through him, righting sparks, striking his stomach.\",looks up then kicks over his horse.,gold0-orig,pos,unl,unl,unl,unl,Someone beats a hasty retreat.,Someone\nlsmdc1011_The_Help-78318,20065,\"Someone stands with her arms folded, then slams down the lid. Someone\",looks up from her cards without expression.,notices someone writing and scratches his eyebrow.,draws at his fingers and shakes her head.,stares at richard parker.,jerks her ax at the ground in agony.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stands with her arms folded, then slams down the lid.\",Someone\nlsmdc1011_The_Help-78318,20059,\"Someone puts down the paper and sidles to the window, looking out over the terrace and the outdoor toilet beyond it. She\",sees a sun chair being buffeted in the wind.,\"turns and runs down the deep, mud - strewn sidewalk.\",put his eyes on it.,takes it and looks over to someone who sits in the back seat with someone.,\"is upright, staring at the road next to the board.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone puts down the paper and sidles to the window, looking out over the terrace and the outdoor toilet beyond it.\",She\nlsmdc1011_The_Help-78318,20070,\"Someone, holding someone's hand, stands outside the wooden toilet, on the back porch. Someone\",picks the child up.,peeks into the living room.,looks and looks horrified.,disappears in the open door.,turns and moves toward someone.,gold1-orig,pos,unl,unl,pos,pos,\"Someone, holding someone's hand, stands outside the wooden toilet, on the back porch.\",Someone\nlsmdc1011_The_Help-78318,20068,\"Someone sits with someone on her lap, sheltering under an upturned mattress. In someone's sprawling bungalow the next day, someone, in her maid's uniform,\",is sitting on the toilet.,smiles like a nearby propeller.,takes off her toes and leaves the apartment.,looks up at the brightly.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone sits with someone on her lap, sheltering under an upturned mattress.\",\"In someone's sprawling bungalow the next day, someone, in her maid's uniform,\"\nlsmdc1011_The_Help-78318,20073,\"Someone waves to someone and drives off. Smiling softly, someone\",kisses her on the cheek.,\"leads his team to a reception room, where the young punk of the gang catch and look.\",rests his head in his hands.,turns her hand away.,shuffles through a white brick corridor bustling with children.,gold0-reannot,pos,unl,unl,unl,pos,Someone waves to someone and drives off.,\"Smiling softly, someone\"\nlsmdc1011_The_Help-78318,20057,\"At someone's house, someone is fanning someone with a newspaper. Someone\",\"sits up her in chair, in awe.\",\"wrestles the ball up, applauding the hag.\",take a cigarette out of the purse and dances.,takes a paper basket and dabs it with a white cloth.,sings with sticks with his fingers.,gold0-reannot,pos,unl,unl,unl,unl,\"At someone's house, someone is fanning someone with a newspaper.\",Someone\nlsmdc1011_The_Help-78318,20061,The pool umbrella has gone the way of the chair. Someone,beats a hasty retreat.,whacks out the window.,takes out a broken hand.,skips barefoot - - then rushes down in different kitchen.,is holding a bottle on the cooler.,gold1-reannot,pos,unl,unl,unl,pos,The pool umbrella has gone the way of the chair.,Someone\nanetv_furUOKw0Qzs,12634,\"Then there is a man who kneels down next to a red car, and explains what you will need to change a tire. He\",\"loosens the bolts and positions the jack, removes the tire and replaces it with a new one.\",then begins to adjust the skis.,end dressed and shows how to properly throw his jacket around in the shoes.,\"deflated a shirt on his wheels, trying to work out.\",performs a bullfighting sequence going back and forth on the grass.,gold0-orig,pos,unl,unl,unl,unl,\"Then there is a man who kneels down next to a red car, and explains what you will need to change a tire.\",He\nanetv_furUOKw0Qzs,19084,He then puts a block down next to the tire as well as taking off the hubcap. The man,puts a jack down and unscrews the tire taking it off.,measures the tools part and mixes the parts.,takes the sin off of the tire and places it against the tire of the car.,continues to work all around the tires while also using a skateboard.,,gold0-orig,pos,unl,unl,unl,n/a,He then puts a block down next to the tire as well as taking off the hubcap.,The man\nanetv_furUOKw0Qzs,19083,A man is seen kneeling down before a car tires and pointing to objects. He then,puts a block down next to the tire as well as taking off the hubcap.,uses a tool to scrape away the sides of the car before returning to the water.,pulls the liquid onto the tire while looking up to the camera.,clips down the tools and grabs a tire.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen kneeling down before a car tires and pointing to objects.,He then\nanetv_furUOKw0Qzs,12635,\"He loosens the bolts and positions the jack, removes the tire and replaces it with a new one. Then he\",\"lowers the car and tightens the new bolts, then removes the jack and talks for a bit more.\",puts the tire back on the machine to get back into the harness.,reaches the driver's side then picks it up and walks to the keys.,puts the tire very tightly on the bike and uses the rubber wrench to tighten the bolts.,,gold0-orig,pos,unl,unl,pos,n/a,\"He loosens the bolts and positions the jack, removes the tire and replaces it with a new one.\",Then he\nanetv_furUOKw0Qzs,19085,The man puts a jack down and unscrews the tire taking it off. He,screws in the new one and puts the hubcap back on.,sees the man spread the small cup of jotunheim.,removes the cap and places the tires on the box.,mops the equipment with movements as he talks to the camera.,puts it on the wheel over the top of the car.,gold0-orig,pos,unl,unl,unl,unl,The man puts a jack down and unscrews the tire taking it off.,He\nanetv_furUOKw0Qzs,12633,There is an intro with a little red animated car that drives by over the top of the logo for Kwik Fit Top Tip. Then there,\"is a man who kneels down next to a red car, and explains what you will need to change a tire.\",'s a red hoodie filming the background as the video ends with the credits of the clip.,is a lot of watching.,is a little peace in the pitch.,'s a person hula hoop with the colorful hula hoop from the distance.,gold0-reannot,pos,unl,unl,unl,unl,There is an intro with a little red animated car that drives by over the top of the logo for Kwik Fit Top Tip.,Then there\nanetv_0yGGccaHMnI,18922,\"A person is seen down a path, wearing a pair of stilts. They\",\"walk very slowly up the gravel path on the stilts, trying to keep their balance.\",sit on a bridge at the underpass.,are laying down onto a horse.,are running and washing them in a small white towel.,run away to a swing tree.,gold0-orig,pos,unl,unl,unl,pos,\"A person is seen down a path, wearing a pair of stilts.\",They\nanetv_0yGGccaHMnI,1389,They walk back and forth on a dirt trail. They,jump off the stilts and hold them in their hands.,ride off through a snow bank and pit.,swirl above the crest.,get a ladder tightly and climb out before walking away down the steep path.,kneel on the edge of moving horses.,gold1-orig,pos,unl,unl,unl,pos,They walk back and forth on a dirt trail.,They\nanetv_0yGGccaHMnI,1388,A person is standing on stilts. They,walk back and forth on a dirt trail.,see a person kick it's legs a fourth.,are holding a box of black ribbon.,are scrubbing car blades.,,gold1-orig,pos,unl,unl,unl,n/a,A person is standing on stilts.,They\nanetv_0yGGccaHMnI,18923,\"They walk very slowly up the gravel path on the stilts, trying to keep their balance. They\",turn and walk the other direction.,take their turn as they take a shake back back on.,are involved in a game of tug of war.,run down the track after people running to join the jump and jump.,are eventually shown fully replays of the jumps.,gold0-reannot,pos,unl,unl,unl,unl,\"They walk very slowly up the gravel path on the stilts, trying to keep their balance.\",They\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61744,12642,Someone passes people who bow before him. Someone,steps forward to bow in respect.,shakes her head as he runs.,turns off the elevator.,gently picks up the coin.,aims the gun at the oncoming truck.,gold0-orig,pos,unl,unl,pos,pos,Someone passes people who bow before him.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61744,12641,Then walks in slow procession down the white paved path as the crowd bow their heads in respect to their new someone. Someone,passes people who bow before him.,looks back at her apparently not noticing.,\"runs at someone, who steps ahead with a wave above his head, not looking up.\",opens his eyes and then shakes his head solemnly.,,gold0-reannot,pos,unl,unl,unl,n/a,Then walks in slow procession down the white paved path as the crowd bow their heads in respect to their new someone.,Someone\nanetv_EOvotFy4YX0,16986,A man is seen riding a camel that has a cart attached to the back with two passengers. The people in the back,have a conversation while riding through several people watching on the sidelines.,waxed their hips while the camera captures their movements.,appear as the camels ride the camels beside each other.,are watching him as the camel walks up.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen riding a camel that has a cart attached to the back with two passengers.,The people in the back\nanetv_EOvotFy4YX0,16987,The people in the back have a conversation while riding through several people watching on the sidelines. The man riding the camel,smiles and waves to the camera.,is followed followed by another person walking on skateboards to a bus.,in the grass while more people are shown riding their bikes.,plays while the other man has several coats.,,gold0-orig,pos,unl,pos,pos,n/a,The people in the back have a conversation while riding through several people watching on the sidelines.,The man riding the camel\nanetv_rDADR0Lg4U8,11381,A group of female players walk onto a court behind their coach. They,\"engage in a lacrosse game, fighting over the ball with their bats.\",are engaged in a game of cricket.,teams teammates for an audience.,pass in the middle as they trophy each other.,walking into paintball driving a professional game.,gold0-orig,pos,unl,unl,unl,unl,A group of female players walk onto a court behind their coach.,They\nanetv_rDADR0Lg4U8,11382,\"They engage in a lacrosse game, fighting over the ball with their bats. The girls\",celebrate their win with flowers and hugs.,follow the slytherin balls to the ground and point them out.,are still holding their trophy.,sew and cheer as they move toward each other.,continue playing the game as double skiff is shown holding the ground.,gold0-reannot,pos,unl,unl,unl,unl,\"They engage in a lacrosse game, fighting over the ball with their bats.\",The girls\nanetv_ShKrNPaSdhY,19876,A man is in the snow with no shirt on. A man,has a bandanna on his face and no shirt on snowboarding down a hill.,comes and helps people.,is standing behind him.,is sitting in a sled talking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A man is in the snow with no shirt on.,A man\nanetv_ShKrNPaSdhY,15754,\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person grabs something for a large wooden shelf. Various clips play of a person snowboarding, sometimes the person is wearing a jacket, sometimes the person is shirtless, sometimes the person is holding the selfie stick, and sometimes someone\",is filming the person.,came up and knocks his young boy out of a water building.,\"falls to the ground, says some more, he moves all around him.\",\"helps them up, balancing it to his shoulder until he walks back on and does a tight moves on her sigh.\",'s going down.,gold0-orig,pos,unl,unl,unl,unl,\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person grabs something for a large wooden shelf.\",\"Various clips play of a person snowboarding, sometimes the person is wearing a jacket, sometimes the person is shirtless, sometimes the person is holding the selfie stick, and sometimes someone\"\nanetv_ShKrNPaSdhY,15753,\"A man is looking out of an opened window of a very fast moving train surrounded by snow and a lot of trees. A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person\",grabs something for a large wooden shelf.,is reaching for the finish logo on the street.,is taking down two more on the kites that are visible.,is an advertisement for them and the camera pans to show the people that he all talking about how to dance.,is laughing while the other man and the man continue to gather on the platform.,gold1-orig,pos,unl,unl,unl,pos,A man is looking out of an opened window of a very fast moving train surrounded by snow and a lot of trees.,\"A group of young adults are shown and they're in a large and very messy bedroom sitting on four bunkbeds along the walls, and the camera person\"\nanetv_ShKrNPaSdhY,19875,A person is snowboarding down a hill of snow. A man,is in the snow with no shirt on.,stands next to a snow ski.,is snowboarding down a mountain of muddy snow.,goes walking down a hill of snow.,is standing in front of the camera.,gold1-reannot,pos,unl,pos,pos,pos,A person is snowboarding down a hill of snow.,A man\nlsmdc3079_THINK_LIKE_A_MAN-36976,5256,\"Stepping out of one, someone brings a tray to his friends and their significant others. He\",\"beams at the applauding group, then hands out food.\",\"bounces with his feet, as someone's son approaches him.\",\"cups a hand in his neck, return with his mother.\",shoves his fumbles into his pocket.,puts his hand down and strokes it.,gold1-orig,pos,unl,unl,unl,pos,\"Stepping out of one, someone brings a tray to his friends and their significant others.\",He\nlsmdc3079_THINK_LIKE_A_MAN-36976,5261,Entering the truck someone gives a determined look. He,stares slack - jawed.,enters second room followed by a small crystal chandelier sets hanging from a wall.,\"stand at the bar, sipping tea and looking about a row of beads.\",pulls off his pants and ditches his pants.,peers out at the gathered man.,gold0-orig,pos,unl,unl,pos,pos,Entering the truck someone gives a determined look.,He\nlsmdc3079_THINK_LIKE_A_MAN-36976,5259,She nudges the customer aside. He,shakes his head at her.,pulls down a sleeve of his raincoat and retrieves it.,hands it to her.,strides off after her.,,gold1-orig,pos,unl,unl,pos,n/a,She nudges the customer aside.,He\nlsmdc3079_THINK_LIKE_A_MAN-36976,5260,She trudges away and the customer steps up. Entering the truck someone,gives a determined look.,\"waves to someone, signaling for his son to raise his head in oven head.\",steps into kitchen area.,\"hurries to her car, clipping his brow.\",moves his face into her side.,gold0-orig,pos,unl,unl,unl,unl,She trudges away and the customer steps up.,Entering the truck someone\nlsmdc3079_THINK_LIKE_A_MAN-36976,5258,Duke sits with someone and someone. She,nudges the customer aside.,\"helps a child carry a candle, a man boils his childhood brewing.\",takes her glasses to exchange a look.,steps up to his daughter then kisses him on the cheek.,holds out a hand.,gold1-reannot,pos,unl,pos,pos,pos,Duke sits with someone and someone.,She\nlsmdc3079_THINK_LIKE_A_MAN-36976,5257,\"He beams at the applauding group, then hands out food. Duke\",sits with someone and someone.,mixes wine and practice behind his boat.,takes his ball and morsel the pot instead.,\"picks him up and carries it around, then faces away in the last of the kitchen.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"He beams at the applauding group, then hands out food.\",Duke\nanetv_mEjU4uJZccw,14034,The woman to one side is playing maracas. The man on the other side,is playing an electric guitar.,picks up the discuss.,is taking off her sneakers.,is leaning in frame to forcefully painting.,is talking to the camera and puts it on her mouths while clapping.,gold0-orig,pos,unl,unl,unl,pos,The woman to one side is playing maracas.,The man on the other side\nlsmdc1062_Day_the_Earth_stood_still-100611,645,It's on a collision course with the Earth. Graphics,show impact location manhattan.,shows a start selected a wall of old snow.,is rolling on a green field.,\"are someone in the process, in spectre.\",arrives at deejay booth.,gold0-orig,pos,unl,unl,unl,unl,It's on a collision course with the Earth.,Graphics\nlsmdc3026_FRIENDS_WITH_BENEFITS-1386,592,He waves cordially at her friend. Someone,looks around then waves back.,looks numbly by the wagon who hold the ball to his chest.,\"stares at her mother, and gives a brief nod.\",gently carries her limp body on the edge of the stove.,looks around and notices someone following her.,gold0-orig,pos,unl,pos,pos,pos,He waves cordially at her friend.,Someone\nlsmdc0053_Rendezvous_mit_Joe_Black-71385,772,\"Someone hesitates, nods, conceding the point, reaches for the doorknob. Someone\",\"enters, someone following right behind him.\",bursts through the open door of someone's office and goes toward the door.,\"shuts the door, letting him in.\",\"pauses, gazes off.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone hesitates, nods, conceding the point, reaches for the doorknob.\",Someone\nanetv_ESecNZbZgug,16424,A woman walks up to an elliptical. She,\"climbs onto it, using it to exercise.\",\"does a girlish routine, then mounts a beam.\",is up on a bar talking while kneeling on a floor.,starts working on an equipment on the bike.,begins to ride several bicycle skis.,gold0-orig,pos,unl,unl,unl,pos,A woman walks up to an elliptical.,She\nanetv_ESecNZbZgug,16425,\"She climbs onto it, using it to exercise. She\",shows the mechanics for how it works as she pedals along.,\"readies her cane, then sticks the earpiece out and finds someone's luggage in her hospital bathroom.\",sags in the machine.,\"throws the last object on the log, then falls on it.\",\"closes the door as she goes, she reopens the door back, and a locked door allows him to go down the hall.\",gold1-orig,pos,unl,unl,unl,unl,\"She climbs onto it, using it to exercise.\",She\nanetv_ESecNZbZgug,3648,\"The front of the machine is shown and the woman presses a button to speed up the machine and moves faster. Next, she\",gets off the bike and twists a knob to raise the incline of the machine and continues her workout.,cleans the handlebars with the machine but again it bears a weak dart in it.,starts to tend and backs off in circles for the first lifting machine.,\"removes the shoe jack, continues on.\",continues out front while opening the tire.,gold0-orig,pos,unl,unl,unl,unl,The front of the machine is shown and the woman presses a button to speed up the machine and moves faster.,\"Next, she\"\nanetv_ESecNZbZgug,3647,A black elliptical is shown and a woman dressed in red workout clothes gets on it and starts to exercise. The front of the machine is shown and the woman,presses a button to speed up the machine and moves faster.,is now sitting in the back talking and doing proper.,moves about the proper methods as it is laying with a paint start drawing.,uses the sprayer on the stepper's handle.,,gold0-orig,pos,unl,unl,unl,n/a,A black elliptical is shown and a woman dressed in red workout clothes gets on it and starts to exercise.,The front of the machine is shown and the woman\nanetv_fhtNAMK0Vqk,5942,He is using a blow dryer to dry the horse's wet body. He,moves the blow dryer back and forth all over the horse's back to dry it.,is playing the canvas with water and.,sharpens it to make sure it was n't right.,ensuring that the new guy does n't have any trouble to his lawn.,\"replaces the sharpener, bites a cleanser, picks up his paw, and scrubs the shoe over the net.\",gold0-orig,pos,unl,unl,unl,unl,He is using a blow dryer to dry the horse's wet body.,He\nanetv_fhtNAMK0Vqk,5943,He moves the blow dryer back and forth all over the horse's back to dry it. He,is also uses a scrubbing brush on the horse's back to clean the horse.,continues to paint her shoe with the rest of his ears.,grabs a wrench from his belt and puts his arm around someone.,continues cutting the person's hair while the camera captures his movements.,continues vacuuming the floor using his arms followed by speaking to the camera and laying on the carpet.,gold0-orig,pos,unl,unl,unl,unl,He moves the blow dryer back and forth all over the horse's back to dry it.,He\nanetv_fhtNAMK0Vqk,5941,\"A man wearing a cowboy hat, sunglasses and yellow latex gloves is standing next to a horse in a stable. He\",is using a blow dryer to dry the horse's wet body.,is playing a very large drop of dirt and a young face light.,is sitting down step on how to do it by exercises and how to do exercise exercise.,is brushing snow from his foot and starts trimming one of the boots behind a bush and trims it.,\"uses the jump rope and uses a protection techniques to measure and dip, but not at the bottom.\",gold0-orig,pos,unl,unl,unl,unl,\"A man wearing a cowboy hat, sunglasses and yellow latex gloves is standing next to a horse in a stable.\",He\nanetv_exCENNu1qBU,10762,He stands up and runs on stilts. He,falls down on a ramp.,walks out and takes his running.,jumps off the track.,goes out and is raising splits in the air.,seems puzzled and suspicious - - and pretty chef that he must enjoy unpaved on the streets.,gold0-orig,pos,unl,unl,unl,unl,He stands up and runs on stilts.,He\nanetv_exCENNu1qBU,16298,He puts on his safety gear. He,gets up and runs and jumps on a pair of stilts.,and the others walk to ride.,skims a handwritten message.,adjusts the back seat.,,gold1-orig,pos,unl,unl,pos,n/a,He puts on his safety gear.,He\nanetv_exCENNu1qBU,16297,A man is sitting in a parking lot drinking a soda. He,puts on his safety gear.,sits at a table then take shaving drinks from the cup.,sets demonstrating how to ride a ticket on sitting steps.,fills the cup with water and puts it in the sink.,takes a drink from the bottle of water.,gold0-reannot,pos,unl,unl,pos,pos,A man is sitting in a parking lot drinking a soda.,He\nanetv_exCENNu1qBU,10761,A man sitting on the ground takes a drink from a bottle. He,stands up and runs on stilts.,goes down to davis pad.,pours another liquid onto the plate and swirls it around.,pushes the ball back and forth before serving.,,gold1-reannot,pos,unl,unl,unl,n/a,A man sitting on the ground takes a drink from a bottle.,He\nanetv_3gsF785TAmg,18153,A player on the yellow team falls and the players on each team assist her. They,take her shoe and sock off and massage her leg.,\"hit a blue ball with a rings, then the white team in red 20 shirts scores.\",start to hit the ball back and forth on the stage to check off the score.,are playing in a large field while people run around with their team mates.,continue to play the game of the game as a team spectators by.,gold0-orig,pos,unl,unl,pos,pos,A player on the yellow team falls and the players on each team assist her.,They\nanetv_3gsF785TAmg,18152,A game of volleyball is being played between blue and yellow team. The yellow team servies the ball and it,is hit continually back and forth until the yellow team scores a point.,somersaults down to only the players while the coach is talking.,includes the whole black team.,cheers and it quickly bumps into a huge goalie blocking a goal.,begin on the paired right side of the court.,gold0-orig,pos,unl,unl,unl,unl,A game of volleyball is being played between blue and yellow team.,The yellow team servies the ball and it\nlsmdc1011_The_Help-78268,16542,Someone has heard every word. Someone,looks down at her lap.,accelerates by the next wave's peak making nice.,walks to the right side of the aisle a 20 yards up to the front.,waits in the last long hall.,takes the glass to someone.,gold0-reannot,pos,unl,unl,unl,pos,Someone has heard every word.,Someone\nlsmdc1011_The_Help-78268,16544,\"Later, someone and her friends are standing by their cars. Someone\",\"is inside, watching them through a window.\",takes a white plastic baggie from a nearby room and taps it served.,opens her apartment door to find someone descending into a dim hallway.,stares out at the gold bar at her kitchen island.,sets down her purse.,gold1-reannot,pos,unl,unl,unl,pos,\"Later, someone and her friends are standing by their cars.\",Someone\nanetv_a74RMGL_c8E,6193,\"One of the players puts the ball down on a line, backs up, then takes his stick and hits the ball. It goes into the goal and hits the goalie in the face and the crowd cheers,\",throwing their hands in the air.,encouraging the players and balls to walk away from the sides.,cheering as shortly balconies are walking around the court.,staring towards the knees very near the crowd.,cheers from shirt approach the counter.,gold0-orig,pos,unl,unl,unl,unl,\"One of the players puts the ball down on a line, backs up, then takes his stick and hits the ball.\",\"It goes into the goal and hits the goalie in the face and the crowd cheers,\"\nanetv_a74RMGL_c8E,6192,There's a game in progress on a very green and grassy field in an outdoor stadium filled with people. One of the players,\"puts the ball down on a line, backs up, then takes his stick and hits the ball.\",\"shows off to the game's tv, then he begins doing his game while suddenly on a rope.\",kicks the ball back and forth over the net net.,is walking on a field and is someone in earlier.,,gold1-orig,pos,unl,pos,pos,n/a,There's a game in progress on a very green and grassy field in an outdoor stadium filled with people.,One of the players\nanetv_a74RMGL_c8E,18048,A game is in progress as the crowd watches. The people,are playing a game of field hockey.,\"are seen playing pool, cheering before finishing a pose.\",continue playing his lacrosse game.,are interviewed by the screen.,are shown bowing and cheering.,gold0-orig,pos,unl,unl,pos,pos,A game is in progress as the crowd watches.,The people\nanetv_a74RMGL_c8E,18049,The people are playing a game of field hockey. They,hit the ball into the goal as the crowd cheers.,are engaged in a game of soccer.,are playing a game of volleyball.,are shown croquet being indoor and she is showing the level of the volleyball.,are engaged in a game of cricket.,gold0-orig,pos,unl,unl,unl,unl,The people are playing a game of field hockey.,They\nlsmdc3002_30_MINUTES_OR_LESS-1013,3928,A red dot shines on the forehead of someone's mask emanating from someone's laser path. Someone,pulls off his mask.,moves with makeup.,stop trapping the serpent.,kicks and kicks someone in the ribs.,turns toward another walkway and finds no sign of someone.,gold0-orig,pos,unl,unl,pos,pos,A red dot shines on the forehead of someone's mask emanating from someone's laser path.,Someone\nlsmdc1055_Marley_and_me-96423,6429,Someone leaves the glass - fronted office with a grin. He,\"walks through the open - plan newsroom, fists clenched in triumph.\",plays with crowds as he eats breakfast.,\"returns it to someone's garage, and places a cellphone in someone's bag.\",\"speaks, takes on a tall revealing low spectacles near his trudges map.\",gestures in the driver's seat.,gold0-orig,pos,unl,unl,unl,unl,Someone leaves the glass - fronted office with a grin.,He\nlsmdc1055_Marley_and_me-96423,6430,\"He walks through the open - plan newsroom, fists clenched in triumph. He\",sits at his cube workstation and starts to type on his computer.,shakes off a spray bottle.,clamps her father's face as someone returns to the courtyard.,walks off the table and strikes the keys.,\"leaps away, landing in a long ridge of metal shards.\",gold0-orig,pos,unl,unl,unl,unl,\"He walks through the open - plan newsroom, fists clenched in triumph.\",He\nanetv_RgMAHuMVRcU,13635,Two men are working together in an orchard. They,use very long shears to cut the branches.,is drinking beer and drinking beers.,are wearing a black school cape and demonstrating how to cut the hair of a woman in front of a large window.,begin an arm wrestling match with a flash sword.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are working together in an orchard.,They\nanetv_RgMAHuMVRcU,19763,\"They work their way around the tree before we see a video of a cloudy sky and the orchard, overlain with words describing what to do to successfully trim the trees. A man\",is shown walking toward the camera with a cutting tool in his hand.,is skateboarding along a grass path across the desert.,is separating the yard of a cow with a string that has fun.,takes waxing and starts carving a pumpkin in different places.,is talking as scratch from the raft on the tucks and is on a boat portion.,gold1-orig,pos,unl,unl,unl,unl,\"They work their way around the tree before we see a video of a cloudy sky and the orchard, overlain with words describing what to do to successfully trim the trees.\",A man\nanetv_RgMAHuMVRcU,19764,Numerous images of the orchard and trees are shown. A screen,shows further information regarding the video.,displayed black and white words appear.,appears and scrolls across the screen.,video shows people riding on skates.,,gold0-orig,pos,unl,unl,unl,n/a,Numerous images of the orchard and trees are shown.,A screen\nanetv_RgMAHuMVRcU,13636,They use very long shears to cut the branches. They,keep trimming the trees as they go.,approach a thick of padlocked trees in the parking lot to bounce a shiny issues from each other.,are in a roll and moving in front of them.,sit at the edge on a chopping board.,people stand at the end of the porch with their legs stretched out.,gold0-orig,pos,unl,unl,unl,unl,They use very long shears to cut the branches.,They\nanetv_1gp-5iOIfVo,11500,\"All of the people meet at the starting line and begin a marathon throughout the city. As they run, people\",\"are on the side of the road encouraging them with water on their tables, signs and clapping for them.\",are shown from one's eye.,rush about either jumping rope and show the windows that crashed the counter.,falls down to the slack line.,continue to walk down the bodies of the street.,gold0-orig,pos,unl,unl,unl,unl,All of the people meet at the starting line and begin a marathon throughout the city.,\"As they run, people\"\nanetv_1gp-5iOIfVo,11499,\"Several individuals are dressed in workout clothes, tying up their shoes, and placing numbers on their shirts. All of the people\",meet at the starting line and begin a marathon throughout the city.,attempt at bowling for a small bit and end by standing near the camera.,continue to go around tricks and watch movement and movements on the right.,begins when they're done washing both and a man begins in a scrubber machine.,,gold0-orig,pos,unl,unl,unl,n/a,\"Several individuals are dressed in workout clothes, tying up their shoes, and placing numbers on their shirts.\",All of the people\nanetv_1gp-5iOIfVo,11926,\"A group of people are walking outdoors, and people are preparing to run in a race. They\",run down city streets and past numerous buildings.,\"their soccer in a field, another boy takes up soccer and neither the spectators gives people a overlaid and fails to hug but there\",same dog stands on the fence that people are making and squatting and begin outfits out to finish the ground.,are going off of a different dirt hill in a slow motion.,,gold0-orig,pos,unl,unl,pos,n/a,\"A group of people are walking outdoors, and people are preparing to run in a race.\",They\nanetv_1gp-5iOIfVo,11501,\"Aside from the people, there are also large red blow ups on the side illustrating the hydration stations. Finally, a young couple completes the marathon and a still image of them\",is shown at the end.,\"follows, and the atmosphere seems easily animated.\",blocks the camera and is talking as well.,\"spot the parasails, trying to receives several more letters.\",solve a game screen.,gold0-orig,pos,unl,unl,unl,unl,\"Aside from the people, there are also large red blow ups on the side illustrating the hydration stations.\",\"Finally, a young couple completes the marathon and a still image of them\"\nanetv_XPctbL-V1ww,6375,\"He moves forward a little and spits out some toothpaste. Then continues to brush, he\",puts the tooth brush down and grabs a cup of water gargles a bit and spits it out.,dips a brush into his teeth on the keyboard.,\"wipes shaving cream off his shoulder with a bucket, and gives another high wave at the camera.\",pulls out the toothpaste.,puts toothpaste on his toothbrush and rubs it on his chin.,gold0-orig,pos,unl,unl,unl,unl,He moves forward a little and spits out some toothpaste.,\"Then continues to brush, he\"\nanetv_XPctbL-V1ww,6374,A little boy in his pajamma's standing in the mirror watching himself brush his teeth. He,moves forward a little and spits out some toothpaste.,\"'s hair is being washed with blood that she has again, and now he is continuing shaving his nose.\",\"to the camera as he's laying down on the floor, he poses and dries his hair with a brush.\",pinches the breadstick to his lips and uses it with his brush.,can not add his toothbrush to his teeth and swing someone in a bathtub.,gold0-orig,pos,unl,unl,unl,unl,A little boy in his pajamma's standing in the mirror watching himself brush his teeth.,He\nanetv_2-SPZIF5lPY,18020,A woman in fencing gear comes in. She,begins to teach him while the man gallops up and down the rug.,shows how to use for a lacrosse ball.,takes a bow and arrow shoots it at a target.,starts to swim forward using the raft in her face.,trims a tree with snow.,gold1-orig,unl,unl,unl,unl,unl,A woman in fencing gear comes in.,She\nanetv_2-SPZIF5lPY,15659,A group of men are being interviewed about jousting. They,join together in a gym to joust.,continues to play soccer from head to hand.,spin alternately and throw the discus.,are shown running back and forth on the grey ice.,talk and fight outdoors actual shooting basketball.,gold0-orig,pos,unl,unl,unl,unl,A group of men are being interviewed about jousting.,They\nanetv_2-SPZIF5lPY,15660,They join together in a gym to joust. A man and woman,gear up and parry with each other.,take sunglasses and dance around in competition.,\"rolls them around in circles, several feet high.\",are leading into the water.,are talking about as they clap and disperse.,gold0-orig,pos,unl,unl,unl,unl,They join together in a gym to joust.,A man and woman\nanetv_2-SPZIF5lPY,18022,He begins to attach a dummy while the woman looks horrified. The men backstage,are again shown laughing and clapping.,go down and stand in a line.,\"spins, jumping until the gambler is glacier.\",stops to give gambling back for a better look at the table.,\"look at each other and begin playing with each other, showing clips of the men practicing the punching ball into the blonde men.\",gold0-orig,pos,unl,unl,unl,unl,He begins to attach a dummy while the woman looks horrified.,The men backstage\nanetv_2-SPZIF5lPY,18021,She begins to teach him while the man gallops up and down the rug. He,begins to attach a dummy while the woman looks horrified.,\"walks through the wooden door in a hallway, next to the cat.\",scramble to free him as he moves the bike very quickly.,proceeds to walk in the water along the back trail.,checks up and goes across it trying to get it to more.,gold0-reannot,pos,unl,unl,unl,unl,She begins to teach him while the man gallops up and down the rug.,He\nanetv_HCFF0svChQY,10432,A group of team mates are gathered on a track. An athlete,runs and jumps into the sand.,runs around a track and throws a javelin.,runs down the track then jumps down the ramp.,spins and flips on a track in front of audience.,jumps in the air and falls to the ground behind him.,gold1-orig,pos,unl,unl,pos,pos,A group of team mates are gathered on a track.,An athlete\nanetv_HCFF0svChQY,4466,A man is sprinting down a track. He,jumps into a pit of sand.,is doing somersaults on two large mats.,jumps off of a diving board and skis along the border of the ruin.,throws the skateboard in the dirt field.,is doing a jump on a skateboard.,gold1-orig,pos,unl,unl,unl,unl,A man is sprinting down a track.,He\nanetv_HCFF0svChQY,10433,An athlete runs and jumps into the sand. The crowd,claps as he stands and walks away.,cheer as people run on the beach.,watches the onlookers as they take turns riding.,has a lacrosse stick.,cheer as he does a jump.,gold1-orig,pos,unl,unl,unl,pos,An athlete runs and jumps into the sand.,The crowd\nanetv_qXUdnj4VN80,18250,The lady also rides a one wheel bike while hula hooping. the girl then hula hoops while,standing on a mat then hula hoops with two hula hoops standing in the same spot.,doing the pictures with her purse.,\"wakeboarding while walking with the stilts, and front while the video pans.\",doing it near the end.,bowing before hitting a wrestler over.,gold0-orig,pos,unl,unl,unl,unl,The lady also rides a one wheel bike while hula hooping.,the girl then hula hoops while\nanetv_qXUdnj4VN80,18251,\"The girl then hula hoops while standing on a mat then hula hoops with two hula hoops standing in the same spot. the girl then hula hoops hanging upside down, she also\",hula hoops around her hand while doing a split on a mat.,shows her backrest in the air before swimming in the competition.,does various tips in her feet.,makes her head down to the cabinet and lands on her knees.,spins before jumping and throwing her simultaneously on various level that go spinning sideways.,gold0-orig,pos,unl,unl,unl,unl,The girl then hula hoops while standing on a mat then hula hoops with two hula hoops standing in the same spot.,\"the girl then hula hoops hanging upside down, she also\"\nanetv_qXUdnj4VN80,18252,\"The girl then hula hoops hanging upside down, she also hula hoops around her hand while doing a split on a mat. the girl\",hula hoops a big tire hula hoop then hula hoops with three hula hoops using her two hands and one feet in the air.,\"walks to a waits line, then slowly touches the girl on the back.\",spins the baton in a girl's hands and judges push the surface up straight and focus on her.,\"gets into a ring, and takes next to the pool on the ground.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"The girl then hula hoops hanging upside down, she also hula hoops around her hand while doing a split on a mat.\",the girl\nanetv_D0aZaiBAHxg,18701,He starts up a chainsaw. He,begins to trim the large hedge.,places a yellow umbrella on the back of the mower.,opens it to reveal the general's picked up phone.,stands up and runs toward the wall.,lifts down two bags.,gold0-orig,pos,unl,unl,unl,unl,He starts up a chainsaw.,He\nanetv_D0aZaiBAHxg,11416,A man is seen trimming along the edges of a bush from several angles while the camera follows him. The man continues to cut all around the hedge and the camera,captures his every movement.,pans around and eventually takes it off.,returns to speak to the camera.,pans up to show his movements.,zooms around and shows the old wall a small tool.,gold1-orig,pos,unl,unl,pos,pos,A man is seen trimming along the edges of a bush from several angles while the camera follows him.,The man continues to cut all around the hedge and the camera\nanetv_D0aZaiBAHxg,18700,A man stands in front of a bush. He,starts up a chainsaw.,puts noodles on a can.,trims with a red trim.,sits and touches down the camera.,is playing with his hair.,gold0-orig,pos,unl,unl,unl,pos,A man stands in front of a bush.,He\nlsmdc1031_Quantum_of_Solace-84293,3541,He marches the man away with a gun at his neck. He,holds the guy at the edge of a roof.,sprays the dog with two joint - clawed fingers and wades around.,loses his posture and throws it in the middle of the man.,\"run to the other side, throws it.\",bends to the rail and turns to someone.,gold0-orig,pos,unl,unl,unl,pos,He marches the man away with a gun at his neck.,He\nlsmdc1031_Quantum_of_Solace-84293,3540,He tips over a pan of oil which bursts into flames and gets past the gunman as the hero dies bloodily on stage. He,marches the man away with a gun at his neck.,takes a new sprint with shining eyes.,lowers her right arm.,walks to a stop and gazes at the dog.,flies over a trailer pipe on his cottage.,gold0-orig,pos,unl,unl,unl,unl,He tips over a pan of oil which bursts into flames and gets past the gunman as the hero dies bloodily on stage.,He\nlsmdc1031_Quantum_of_Solace-84293,3544,He sends him off the roof. He,lands on someone's car.,flies up and amongst the land below.,stuns someone with his gun.,packs a duffel and straightens up by its the chair.,drives west towards the floating body of water.,gold0-orig,pos,unl,unl,unl,unl,He sends him off the roof.,He\nlsmdc1031_Quantum_of_Solace-84293,3533,\"Upstairs, someone clears out of his box. Someone\",\"emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting.\",\", now at the airport, strides over to someone's house and drops it on a nearby table.\",\"shakes the banister and rises, lowering him into the water.\",is sucked into the apartment building.,,gold0-orig,pos,unl,unl,unl,n/a,\"Upstairs, someone clears out of his box.\",Someone\nlsmdc1031_Quantum_of_Solace-84293,3538,A pursuer goes gun battle ensues in the restaurant. Someone,escapes into the kitchen area.,\"still swipes at a friend, he returns to his boys.\",emerges from the gate with another shaft in the air.,\"another confident, stiff - looking, phoenix, someone, the pledges of an old chinese, are full of dead, etc.\",watches other troopers run toward a gate.,gold0-orig,pos,unl,unl,unl,pos,A pursuer goes gun battle ensues in the restaurant.,Someone\nlsmdc1031_Quantum_of_Solace-84293,3542,He holds the guy at the edge of a roof. Someone gets in his car and someone's prisoner,tries to break free.,is caught by the redcap greeting the departing protester.,gets into another car's car.,leads them out.,turns on the wipers.,gold0-orig,pos,unl,unl,pos,pos,He holds the guy at the edge of a roof.,Someone gets in his car and someone's prisoner\nlsmdc1031_Quantum_of_Solace-84293,3535,\"As someone walks calmly down the corridor, someone and his party are hurrying for an exit. They\",come face to face.,start to a doorway of the shadowy van.,\"are quite dignified, standing upright.\",peer at the pump.,run off down the street past the others.,gold0-orig,pos,unl,unl,unl,pos,\"As someone walks calmly down the corridor, someone and his party are hurrying for an exit.\",They\nlsmdc1031_Quantum_of_Solace-84293,3534,\"Someone emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting. As someone walks calmly down the corridor, someone and his party\",are hurrying for an exit.,\"explode around him, as they head outside to the glass.\",go down and down their sidewalk.,arrive at a bar.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone emerges near the side of the stage, removes his earpiece and walks out just yards away from where someone is sitting.\",\"As someone walks calmly down the corridor, someone and his party\"\nlsmdc1031_Quantum_of_Solace-84293,3543,Someone gets in his car and someone's prisoner tries to break free. He,sends him off the roof.,\"was an oncoming car, smashing them against the van's front trolley.\",finds someone trapped at the spot.,\"starts scraping off the car, but allowing the hostages to follow.\",holds out his left hand and stares wide - eyed at it.,gold0-reannot,pos,unl,unl,unl,unl,Someone gets in his car and someone's prisoner tries to break free.,He\nlsmdc1031_Quantum_of_Solace-84293,3536,They come face to face. The hero,is shot on stage as men chase someone.,walks away from the coast.,\"falls towards them, leaving blackness circular effect.\",loses and swings someone's.,emerges to the bathroom.,gold0-reannot,pos,unl,unl,unl,unl,They come face to face.,The hero\nlsmdc1031_Quantum_of_Solace-84293,3539,\"A man body checks him, but someone shoots him pointblank through the body. He\",ducks as a door flies open in front of him.,tumbles in rumpled covers as he swigs on her.,\"is thrown to the girder, hits someone with a crowbar.\",runs to the bottom and gallops across the pole.,walks quickly along a narrow corridor and mid - flight.,gold1-reannot,pos,unl,unl,unl,unl,\"A man body checks him, but someone shoots him pointblank through the body.\",He\nlsmdc1031_Quantum_of_Solace-84293,3537,The hero is shot on stage as men chase someone. He,runs through a crowded restaurant and shots are fired taking down a bystander.,\"waves and everyone on the field waves the flag, knocking a line.\",enters with a house's lid.,has his nose raised.,\"missed them, shooting, and a photographer, in a sling, follows him.\",gold0-reannot,pos,unl,unl,unl,pos,The hero is shot on stage as men chase someone.,He\nanetv_K5wPwCFVkhU,7335,A small puppy is rubbing his face in someone's lap. He,chews and licks his paw as he cuddles.,climbs out of bed behind the office and peers at the sun.,throws the frisbee and spins around.,continues across the room to reveal an infant sitting beside him.,,gold0-orig,pos,unl,unl,unl,n/a,A small puppy is rubbing his face in someone's lap.,He\nanetv_K5wPwCFVkhU,16687,A dog is resting in a person lap. the dog,is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap.,runs in the road.,\"leans forward, licking a nail.\",jumped onto the grass.,is in a lounge chair playing a accordions hat on a table on front.,gold0-orig,pos,unl,unl,unl,unl,A dog is resting in a person lap.,the dog\nanetv_K5wPwCFVkhU,7336,He chews and licks his paw as he cuddles. He,looks up at the camera slightly.,\"gives her the gift, then back shoves his daughter away, carrying someone with teddy.\",murmurs meekly as she watches the boy interacting with his smiling groom.,points his stick to grab the egg base.,pulls someone's hands up her neck folds tightly and lies at his feet engrossed in the lay - out bed.,gold0-orig,pos,unl,unl,unl,unl,He chews and licks his paw as he cuddles.,He\nanetv_K5wPwCFVkhU,16688,The dog is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap. finally the dog,stops licking the person hand and try's to look at the camera.,continues to move his legs and ecstatically continue skateboarding while the man tries to bathe the dog.,scrubs the dog with a brush and the dog pulls the dog away.,comes back up with a purple shirt on shoes and hangs it back.,,gold0-reannot,pos,unl,unl,unl,n/a,The dog is rubbing his head and licking the hand of the person holding him while laying and relaxing on a person lap.,finally the dog\nlsmdc1059_The_devil_wears_prada-98767,3492,They catch sight of someone who's trying to creep back downstairs. She,\"leaves the book on the top step, and hurries away.\",ducks from the shadows with a horrified expression.,\"goes behind him and finds her seated on the side of the bed, holding her pursed ear.\",turns back to someone.,is lying draped over their bed.,gold0-orig,pos,unl,unl,unl,pos,They catch sight of someone who's trying to creep back downstairs.,She\nlsmdc1059_The_devil_wears_prada-98767,3491,\"She reaches an upper floor, and comes across someone and her husband. They\",catch sight of someone who's trying to creep back downstairs.,find a forearm - hole in an lit wall.,turn it back downstairs.,frisks the elevator and hurries out of a silver chain - link vehicle.,walk hill of sand.,gold0-orig,pos,unl,unl,unl,unl,\"She reaches an upper floor, and comes across someone and her husband.\",They\nlsmdc1059_The_devil_wears_prada-98767,3490,They giggle as someone creeps upstairs. She,\"reaches an upper floor, and comes across someone and her husband.\",slams her against a wall and leans back against the cabinet.,fills the cluttered glass cabinet.,stops drinks on the set and saunters off.,jogs in a suitcase by the hallway door.,gold0-orig,pos,unl,unl,unl,unl,They giggle as someone creeps upstairs.,She\nlsmdc1059_The_devil_wears_prada-98767,3493,\"She leaves the book on the top step, and hurries away. Someone\",\"grabs someone's arm, and pulls her into a side room as she arrives for work.\",puts the bottle down and drizzles salt into the container.,returns to the camp in the dining room.,looks away in her direction.,walks back down the hallway platform.,gold0-reannot,pos,unl,unl,unl,unl,\"She leaves the book on the top step, and hurries away.\",Someone\nanetv_1G3rv9ssDY4,6976,Two more batches of racers start the same race. A single biker,is going through the curved road at very high speed.,is passing on the road waving to camera as people pass a girl in a wave.,\"jam group is rock, also.\",appears still then some other people and maroon kayaks rollerblading into a vehicle with people behind them who drives two skiers.,follows his face after yard.,gold0-orig,pos,unl,unl,unl,unl,Two more batches of racers start the same race.,A single biker\nanetv_1G3rv9ssDY4,6974,There are five bikers wearing helmets standing ready to start a race. They,begin racing at high speed over a curved road.,are performing with a tower of sea equipment.,then walk on the still cow of a large cattle.,follow the other sumo wrestlers.,keep each in sync with their steppers.,gold1-orig,pos,unl,unl,unl,unl,There are five bikers wearing helmets standing ready to start a race.,They\nanetv_1G3rv9ssDY4,6972,The bikers are going over a curbed surface at full speed. There,are several other bikers doing the same activity on another curved surface.,gives only the occasional.,teens are riding on the side and people being pulled in the grass near a mountain.,pulls the package from his pocket and tosses it over his head.,are approaches the skateboard mat and.,gold0-orig,pos,unl,unl,unl,unl,The bikers are going over a curbed surface at full speed.,There\nanetv_1G3rv9ssDY4,6973,There are several other bikers doing the same activity on another curved surface. There,are five bikers wearing helmets standing ready to start a race.,they are assembling all the ramps and spurs trying back to the attendant to lift the final slice onto the road.,are also wearing black and white gloves for different world skating.,is chain around his neck.,,gold0-orig,pos,unl,unl,pos,n/a,There are several other bikers doing the same activity on another curved surface.,There\nanetv_1G3rv9ssDY4,6975,They begin racing at high speed over a curved road. Two more batches of racers,start the same race.,race around in the open water.,are inside the bar.,are place on a large field.,,gold0-orig,pos,unl,pos,pos,n/a,They begin racing at high speed over a curved road.,Two more batches of racers\nanetv_c6BcS5NdI6E,4456,A large group of people are seen playing a game of volley ball with one another while moving around the beach. Several shots,are shown of the people wandering around one another playing the game back and fourth over the net and helping one another.,are shown with people playing various sports as well as back and fourth and taking pictures.,are shown of people playing beer pong against one another and others around cups.,are shown of people playing beer pong with one another while laughing to one another.,are shown of people standing on the sides while kicking a ball back and fourth and speaking to one another.,gold1-orig,pos,unl,unl,unl,unl,A large group of people are seen playing a game of volley ball with one another while moving around the beach.,Several shots\nlsmdc0027_The_Big_Lebowski-63037,16800,\"Someone pops the latches on his attache case and takes out the homework, which is now in a ziploc bag. He\",\"holds it out at arm's length, displaying it to someone.\",\"tries to point at someone's drops, but finds it empty.\",puts the letters on the wall behind him and pulls it open quickly.,\"steps up to his with black eyes and a spider - face, a white scarf and a prison uniform.\",\"items in books on a desk lists her collection, at every unlocked, waddles it.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone pops the latches on his attache case and takes out the homework, which is now in a ziploc bag.\",He\nlsmdc0027_The_Big_Lebowski-63037,16801,\"He holds it out at arm's length, displaying it to someone. Someone\",is still holding out the homework.,loses the stick and flings it on the track.,gazes at the back piece.,lifts it up to show his own hazmat features.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He holds it out at arm's length, displaying it to someone.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6439,\"Someone returns a solemn, remorseful look. Someone\",turns around and mopes off down the block of brown stone buildings.,stands in the doorway of a news room and waves to the skylight top.,\"sits beside someone, pretending to knit with a pencil.\",turns off the shower.,\"glances around themselves, then looks around the empty room.\",gold0-orig,pos,unl,pos,pos,pos,\"Someone returns a solemn, remorseful look.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6441,\"Later he sulks at a bar while someone, someone and others have a good time all around him. Someone\",passes in front of our view as the picture fades to black.,is faster because of joy and the crowd looks very anxious.,falters from the sight.,\"looks on, smiling at someone and shaking his mouth as if at a physical castle.\",,gold0-orig,pos,unl,pos,pos,n/a,\"Later he sulks at a bar while someone, someone and others have a good time all around him.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6436,Tears stream down someone's cheek. The boy,\"dries his face with his sleeve, then glances off pensively.\",turns back as he stretches in her direction and unbuckles canopy beside the wheel as she moves forward.,grins and runs past the coastal motel and shows someone over his shoulder.,is only to be lifted.,\"grimaces, then presses his fingers through the hair of his father and rises to him.\",gold1-orig,pos,unl,unl,unl,pos,Tears stream down someone's cheek.,The boy\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6442,Someone passes in front of our view as the picture fades to black. In the early morning under a gray sky someone,walks down the middle of a street.,wintry autumn dust and shade as it leaves a treacherous forest.,\"smiles at her amazing style, sharing a hopeful gaze.\",prepares for even a hat.,lifts the bottoms of his sculpting basket and fishes it on his feet.,gold0-orig,pos,unl,unl,unl,unl,Someone passes in front of our view as the picture fades to black.,In the early morning under a gray sky someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6443,In the early morning under a gray sky someone walks down the middle of a street. Later he,strolls through a park on a pathway between tall leafy trees and approaches vivian sitting on a bench.,turns from an adjoining window and faces us with a warm smile.,watches someone pedal down a bluff in the middle of the campus.,turns to others in a backyard toting the luggage.,,gold0-orig,pos,unl,unl,pos,n/a,In the early morning under a gray sky someone walks down the middle of a street.,Later he\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6438,Someone's chin furrows sadly as he stares at his mentor. Someone,\"returns a solemn, remorseful look.\",\"passes them to the roadside with a leafy fence and turns back to the others, passing the maize eyed to the other one.\",notices two guest troopers.,\"allows a faint smirk, then picks out a mallet and lightly taps the small drum set with its metal stick.\",turns to watch her go.,gold0-orig,pos,unl,unl,pos,pos,Someone's chin furrows sadly as he stares at his mentor.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6440,Someone turns around and mopes off down the block of brown stone buildings. Later he,\"sulks at a bar while someone, someone and others have a good time all around him.\",hangs on him at another table and sits on hood.,paces in the hallway through a great hall in the middle of the living garden.,flies through a crowd of policemen and embers.,rounds the darkness at the top block.,gold0-orig,pos,unl,unl,unl,unl,Someone turns around and mopes off down the block of brown stone buildings.,Later he\nlsmdc3067_THE_ART_OF_GETTING_BY-32472,6437,He flashes a wry dimpled smile. Someone's chin,furrows sadly as he stares at his mentor.,presses it up and shines her fingers into her chin.,rests on a rope piled up on both of someone's shoulders.,juts out of his bag.,rests on his foot.,gold0-reannot,pos,unl,unl,unl,unl,He flashes a wry dimpled smile.,Someone's chin\nlsmdc3003_40_YEAR_OLD_VIRGIN-1170,9452,Someone watches the someone Identity. Someone,approaches someone at a desk.,\"sits at his desk, sweeping over a thick stack of gunshots.\",\"turns to someone, who is also backing away.\",runs down the wharf.,dodges them as the bullets kills them.,gold0-orig,pos,unl,pos,pos,pos,Someone watches the someone Identity.,Someone\nlsmdc3003_40_YEAR_OLD_VIRGIN-1170,9453,Someone approaches someone at a desk. He,glances over his shoulder.,holds the coin under his personal view.,peeks over the stained - glass windows.,presses a savage glare.,puts his arm around someone.,gold1-reannot,pos,unl,unl,unl,pos,Someone approaches someone at a desk.,He\nlsmdc3003_40_YEAR_OLD_VIRGIN-1170,9454,He glances over his shoulder. A pudgy boy,holds a pair of boots.,emerges from the bin.,sits on an electric chair.,comes on with a handgun.,approaches behind the bars window.,gold0-reannot,pos,unl,unl,unl,unl,He glances over his shoulder.,A pudgy boy\nanetv_cqVvHj1oC-8,15728,A woman is seen speaking to the camera while scraping off her car and holding up products to help. More people,are seen speaking to the camera and showing off their methods of melting ice and leading back to the two reporters.,are shown of people riding down the mountain as well as the camera followed with women using skateboards doing water.,are shown lifting raging gear and walking around to the camera followed by several clips of riding shoes and others riding.,are seen running down the street while looking to the camera.,are seen interviewed around wood and driving back.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while scraping off her car and holding up products to help.,More people\nanetv_cqVvHj1oC-8,15727,Two people are seen hosting a news segment that leads into clips of people scraping off their cars. A woman,is seen speaking to the camera while scraping off her car and holding up products to help.,is seen putting photos around a large hoop and speaks to the camera while moving his hands up and down.,speaks to the camera and leads into various shots of landscapes that is ice around a city.,talks about an earpiece and brushes and points to the floor.,is then seen looking into a camera as well as speaking to the camera and leads into seeing the other woman riding.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen hosting a news segment that leads into clips of people scraping off their cars.,A woman\nlsmdc0026_The_Big_Fish-62211,3774,\"He tries to recollect, but it's already gone. Someone motions, is it okay for her\",to sit on the bed?,to get in the truck next the ride.,to sit there and gets to her car.,to collect someone and sees the game.,\"to go, but does n't answer.\",gold0-orig,pos,unl,unl,unl,pos,\"He tries to recollect, but it's already gone.\",\"Someone motions, is it okay for her\"\nanetv_TjLoGNBzNRA,9032,A woman rubs a wall surface. The woman,peels something apart while kneeing on the ground.,sands the floor facing the tattoo.,talks wipes then continues mixing.,lays down and grabs the iron surface of a cup.,,gold1-orig,pos,unl,unl,unl,n/a,A woman rubs a wall surface.,The woman\nanetv_TjLoGNBzNRA,9034,The woman attaches wallpaper to the wall surface. The woman,trims excess wallpaper from the wall.,applies metal slices on the spray pipe and explaining the difference process.,paints the sheet removed wax.,rolls backward cord to the ground.,,gold0-orig,pos,unl,unl,unl,n/a,The woman attaches wallpaper to the wall surface.,The woman\nanetv_TjLoGNBzNRA,15010,She gives a thumbs after she completes hanging the graphic wall paper. Then she,demonstrates how easy it is to peel off from the wall.,comes back for the hanger and performs a routine on the beam for the fire.,sprays bottom in the wall and use cleaner on it and edge it out.,continues putting paintbrush to the wallpaper using some grout to cover what dots on the wall.,,gold0-orig,pos,unl,pos,pos,n/a,She gives a thumbs after she completes hanging the graphic wall paper.,Then she\nanetv_TjLoGNBzNRA,9035,The woman trims excess wallpaper from the wall. The woman,stands next to the wallpaper and gives a thumbs up sign.,uses a broken cloth to wipe the bottom.,continues to show how to ward us the wallpaper very carefully.,put back wallpaper and on the carpet to show how the design should be painted.,,gold0-orig,pos,unl,unl,unl,n/a,The woman trims excess wallpaper from the wall.,The woman\nanetv_TjLoGNBzNRA,9033,The woman peels something apart while kneeing on the ground. The woman,attaches wallpaper to the wall surface.,puts the camera finishes to gets up and leave his room.,begins ironing the woman's leg and pulling on the exercise while rubbing his leg.,wipes the unseen woman's sleeve.,puts her nails down.,gold0-orig,pos,unl,unl,unl,pos,The woman peels something apart while kneeing on the ground.,The woman\nanetv_TjLoGNBzNRA,9037,The woman peels the wallpaper away from the wall. The woman,sits by the wallpaper and gives the thumbs up sign.,goes into the oven on how to cut the wallpaper.,puts a piece of cloth down and wipes it with her thumb.,stands and lays on cement covering the wall.,holds the piece of paper to her chin.,gold1-orig,pos,unl,unl,unl,unl,The woman peels the wallpaper away from the wall.,The woman\nanetv_TjLoGNBzNRA,9036,The woman stands next to the wallpaper and gives a thumbs up sign. The woman,peels the wallpaper away from the wall.,leaves a note on the wall.,interacts with another young group.,takes a last brush to scrape off the excess.,leaves while looking to the camera.,gold1-orig,pos,unl,unl,unl,pos,The woman stands next to the wallpaper and gives a thumbs up sign.,The woman\nanetv_TjLoGNBzNRA,15008,There's a woman doing a tutorial on how to fix wall paper on a wall. She,begins by preparing the surface and then peels of the sheet from the adhesive side of the wall paper.,walks out of her office.,\"shows one of her hair to the girl, and she continues taking exercise together.\",puts them out of an oven.,continues going down the hill.,gold0-orig,pos,unl,unl,unl,unl,There's a woman doing a tutorial on how to fix wall paper on a wall.,She\nanetv_TjLoGNBzNRA,15009,She continues hanging more wall paper on the wall and ensures that it glues on tight and securely on the wall surface without creases. She,gives a thumbs after she completes hanging the graphic wall paper.,wall continues to knock over the chair from the ceiling then moves to brush the room again and works the metal box.,\"clips blurs of the lamps moving up and down one, as the knife cuts begins to hum around the entire wand with it.\",\"edges up, she continues pulling the carpet around the tiles while showing a shirt off in the end.\",\"breaks apart and succeeds, others web to wrap down a concrete and holds only one hand stick.\",gold0-reannot,pos,unl,unl,unl,unl,She continues hanging more wall paper on the wall and ensures that it glues on tight and securely on the wall surface without creases.,She\nanetv_AqTZd5HZKNI,10348,Man is holding an orange vacuum and is vacuuming the white carpet in an empty room. the mn,close the door to vacuum the carpet behind the door.,put the squeegees down the inside of the room.,walks on the floor and began vacuuming a dirt floor.,watch the man and is back going down the snowy shirt trough.,,gold1-orig,pos,unl,unl,unl,n/a,Man is holding an orange vacuum and is vacuuming the white carpet in an empty room.,the mn\nanetv_AqTZd5HZKNI,16594,The man pushes a vacuum back and fourth along the carpet. He,continues pushing the vacuum around all over the floor.,grabs a vacuum and then begins vacuuming it.,finishes up some tiles and rearranges the pipe on the wall.,continues laying down a rug.,continues mopping the floor while ending by running to the camera.,gold0-orig,pos,unl,unl,unl,unl,The man pushes a vacuum back and fourth along the carpet.,He\nanetv_AqTZd5HZKNI,10347,Man is holding a vacuum and cleaning a carpet. man,is holding an orange vacuum and is vacuuming the white carpet in an empty room.,is vacuuming a backyard holding a brush and pulling it to a dog.,is vacuuming the floor putting boxing gloves on.,is cutting te carpet in the next room.,is getting a iron in a closet.,gold0-reannot,pos,unl,unl,unl,pos,Man is holding a vacuum and cleaning a carpet.,man\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73336,16838,Someone sidles up behind him at the sink. Someone,\"goes to put a hand on someone's shoulder, but can't bring himself to do it.\",shakes his head painfully.,\"looks back at someone who shakes his head, then sinks to his knees.\",turns to the door.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sidles up behind him at the sink.,Someone\nanetv_B0sXYJeZ8Xk,2951,A woman is seen standing in a yard with a lawn mower in front of her. The girl then,pushes the lawn mower along the yard.,jumps up on the horse and begins sweeping the horse down.,begins mowing her lawn while sitting down down and speaking to the camera.,holds up a pair of scissors and begins styling the girl's hair.,turns around and walks away all along the grass.,gold1-orig,pos,unl,unl,pos,pos,A woman is seen standing in a yard with a lawn mower in front of her.,The girl then\nanetv_B0sXYJeZ8Xk,2952,The girl then pushes the lawn mower along the yard. The camera,moves in closer of the woman still pushing the mower and speaking to the camera.,zooms in on the mower and continues cutting the grass.,returns to just a few toys piling the hedge and grass.,zooms in with a view of all the bare branches.,goes in to show four brown leaves and the little girl took a blue sweater from the ground and threw it across the yard.,gold0-reannot,pos,unl,unl,unl,unl,The girl then pushes the lawn mower along the yard.,The camera\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5191,\"Someone goes to prop an elbow on his knee, but slips. Someone\",rests an arm on the tractor hood.,\"'s clearly want with someone's attitude, someone knows this place not have his mind where it was.\",\"goes down the hallway, past the opposite window of someone's study.\",stands up and raises his clapping hat.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone goes to prop an elbow on his knee, but slips.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5189,\"He strolls happily through the barley. Reaching a light blue tractor, he\",climbs into the driver seat.,backs across the sizable reflecting basketball.,finds a sign under the wall.,plods along a chrome rooftop.,wipes away the other crumpled shoe.,gold0-orig,pos,unl,unl,unl,unl,He strolls happily through the barley.,\"Reaching a light blue tractor, he\"\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5195,\"As his nephew drives the trucktor down the path, someone turns away with a calculating gaze. He\",marches into the barley field.,shoots a server at someone who gets in his car.,folds a hand into his pocket and unbuttons her shirt.,draws a boy on camera points to one standing in front of the burning house.,watches as someone slides the bottle from a bottle of whiskey.,gold1-orig,unl,unl,unl,unl,unl,\"As his nephew drives the trucktor down the path, someone turns away with a calculating gaze.\",He\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5196,Someone hauls a bucket through the muddy work yard. The limousine,drives past the yard.,swerves between the dead bodies.,starts to scuttle in front of someone.,follows someone into the interrogation room.,stops passing an abandoned warehouse.,gold0-orig,pos,unl,unl,unl,pos,Someone hauls a bucket through the muddy work yard.,The limousine\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5192,Someone rests an arm on the tractor hood. Someone,reaches for the ignition.,bangs up against the pillar.,wears an oversized mini battery mail outfit.,shifts his magical gaze.,stares at someone with silhouetted face.,gold0-orig,pos,unl,unl,unl,unl,Someone rests an arm on the tractor hood.,Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5187,\"Standing among the healthy crops, someone plucks a grain from one of the wispy stalks. He\",\"bites a seed, examines it and casts a hopeful gaze toward the sunny sky.\",leaves the gate.,\"blinks and stares after them, then tosses them away.\",beats the galloping camel.,brings his fork to the end of the cigar and raises it.,gold0-orig,pos,unl,unl,unl,unl,\"Standing among the healthy crops, someone plucks a grain from one of the wispy stalks.\",He\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5190,\"Reaching a light blue tractor, he climbs into the driver seat. Someone\",\"goes to prop an elbow on his knee, but slips.\",\"mouths, he hands them.\",\"and someone, a delighted man, tries to pick him out.\",opens the trunk and climbs back onto the wheel.,finds his big brother gone.,gold0-orig,pos,unl,unl,pos,pos,\"Reaching a light blue tractor, he climbs into the driver seat.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5193,Someone reaches for the ignition. Someone,\"jumps, then waves the boy onward.\",takes out snowy skates and spins for the driver.,drives his seatbelt and stands other from a nearby window.,snatches the car off.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone reaches for the ignition.,Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24530,5188,\"He bites a seed, examines it and casts a hopeful gaze toward the sunny sky. He\",strolls happily through the barley.,\"writes title on, then dashes off a bombed road.\",carries the bags in her hand.,waves back the clouds.,turns to someone.,gold1-reannot,pos,unl,unl,unl,pos,\"He bites a seed, examines it and casts a hopeful gaze toward the sunny sky.\",He\nanetv_F_sbhegCsyg,3865,\"A group of people are gathered at an outdoor park. They are dressed up, and they\",get into a raft.,were using lunch activity in the studio.,are decorating the christmas tree.,are doing several moves.,are exercising and putting foam sticks on using their hands.,gold1-reannot,pos,unl,unl,unl,unl,A group of people are gathered at an outdoor park.,\"They are dressed up, and they\"\nanetv_g-rw2Kyh9xo,18553,A man walks up to the side of a pool. He,dives into the water and floats to the surface.,\"throw sharply just slightly, then makes the walk back after the ball.\",hits it with the sticks to his racket.,uses several other brushes to ride a sled.,gets off a diving board off of the board.,gold0-orig,pos,unl,unl,unl,unl,A man walks up to the side of a pool.,He\nanetv_g-rw2Kyh9xo,10837,He stands up and wind surfs in the water. He,gets out of the swimming pool.,is riding a cart something behind a tree.,walks in and out of frame.,puts down a pitcher and shakes it.,starts at the same time for a brief time and then people around him.,gold0-reannot,pos,unl,unl,unl,unl,He stands up and wind surfs in the water.,He\nlsmdc3078_THE_WATCH-36118,125,\"Now, at a large home with a brick facade, someone opens a door. His basement\",boasts a pool table and wet bar.,rolls us he peers through a door of drawers at the far end of the garage.,reveals a cartoon huddled in the doorway.,\", opens and someone steps towards him.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Now, at a large home with a brick facade, someone opens a door.\",His basement\nanetv_OSw73cXwjR4,644,A person wearing a hat is sitting no a couch. They,begin playing an accordion.,begin to dance on the drums.,are dancing and dancing down a sidewalk.,are installing flooring in the carpet.,are playing a beer pong table using a ping pong club.,gold0-orig,pos,unl,unl,unl,unl,A person wearing a hat is sitting no a couch.,They\nanetv_OSw73cXwjR4,645,They begin playing an accordion. They,are pointing at buttons on the accordion with a screwdriver.,play the drums in front of them.,hold all their hands o the air.,turn a cord around and drum on the turbulent waters.,start to play on the sand.,gold0-reannot,pos,unl,unl,unl,pos,They begin playing an accordion.,They\nanetv_buhaBimF4M0,13578,A friend is talking with the fallen woman as she tries to get up. A friend,talks to her while holding the camera and offers her a hand to get up.,runs across the stage behind laughing and hits.,gets out of the pool.,\"comes and hugs her parents about it, who gives one about what the owner is doing.\",\"comes up the steps, trying to bring drying hair.\",gold0-orig,pos,unl,unl,unl,unl,A friend is talking with the fallen woman as she tries to get up.,A friend\nanetv_buhaBimF4M0,13579,A friend talks to her while holding the camera and offers her a hand to get up. Two women,\"hold hand and start rollerblading, while the girl in the red shirt learns how.\",are shown holding the woman in front of them and hold her mother's hands while folding.,are then seen speaking to the camera while sitting down walks and shaking hands.,drop a contact in the eye while her body is next to a cement tank.,with white and thin on the camera are doing things in the kitchen.,gold0-orig,pos,unl,unl,unl,pos,A friend talks to her while holding the camera and offers her a hand to get up.,Two women\nanetv_buhaBimF4M0,13577,\"A woman on roller blades moves backwards, falls on the grass and laughs. A friend\",is talking with the fallen woman as she tries to get up.,jumps from the bars and crashes to the ground.,pushes out behind the lady and pushes his way down his body.,appears on the left side of the volleyball field.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman on roller blades moves backwards, falls on the grass and laughs.\",A friend\nanetv_jsofzMPb0i4,2841,He continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket. He,demonstrates different techniques of shooting the ball right into the hoop without missing a single basket.,starts playing and alabama leaves ball again.,\"takes a deep breath, then lowers an gaze to the altar and embarrassment.\",continues demonstrating how to make a goal.,walks away and the man grabs the ball and pushes it back to the goalie.,gold0-orig,pos,unl,pos,pos,pos,He continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket.,He\nanetv_jsofzMPb0i4,2839,\"He begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop. Then he\",shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high.,hits the pinata in the air as he gets off.,\"bowling ball and returns to the table, eventually goes to his bar.\",turns back and stands on a magnifying seat.,finds one more game of playing with the blue ball.,gold0-orig,pos,unl,unl,unl,unl,\"He begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop.\",Then he\nanetv_jsofzMPb0i4,2840,Then he shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high. He,continues to show various other ways to shoot the basket as he runs and dunks the ball straight into the basket.,misses it very before eventually finally older man jumps on the field and is again first attempt to shoot the ball.,shows holes and continues to score circles across the blue ball.,play again with the blue pack doing jumps on the bars in the gym.,moves his way away several times and becomes shot in the end.,gold0-orig,pos,unl,unl,unl,unl,Then he shows another technique where he comes running and shoots the ball from very close to the hoop by jumping up high.,He\nanetv_jsofzMPb0i4,2838,There's a basketball player demonstrating various types of basketball hoop shooting techniques on behalf of World of Hoops. He,\"begins by showing the basic technique of the regular lay - up throw, he shoots the ball directly into the hoop.\",returns the puck up the ball into the goal and the darts continue.,talked to the camera and talk about his techniques.,runs up to the man in the shirt to pull an instrument in his mouth.,,gold0-orig,pos,unl,unl,unl,n/a,There's a basketball player demonstrating various types of basketball hoop shooting techniques on behalf of World of Hoops.,He\nanetv_bGql7ldp84A,1153,She takes them out of the oven and begins to wrap them into individual sets. The video,ends with the closing credits.,ends with a person showing the other how to using it.,ends with a closing screen for the cookies tyson showing a website showing the various recipe logo agreement.,ends with the closing credits and the credits of it are displayed.,ends with the closing presents around the screen and holds up a towel on the first man at the end.,gold1-orig,pos,unl,unl,unl,unl,She takes them out of the oven and begins to wrap them into individual sets.,The video\nanetv_bGql7ldp84A,1150,She begins with all the ingredients she will need for the cookies and begins to combine the dry ingredients. She then,proceeds to mix the wet ingredients in a glass bowl.,\"blends the bowl together and adds peanut butter into the bowl and preparing to mix popsicles, flour and mix.\",places the ingredients together in a bowl and takes the salad.,mixes all the ingredients and mixes top limes and pasta baking soda to make the mixture.,\"vacuums the neatly on paper, bleach and then pauses in layers and begins vacuuming the contents.\",gold0-orig,pos,unl,unl,unl,unl,She begins with all the ingredients she will need for the cookies and begins to combine the dry ingredients.,She then\nanetv_bGql7ldp84A,1152,\"After she mixes all the ingredients together she begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven. She\",takes them out of the oven and begins to wrap them into individual sets.,places the cookie dough and cookies on the cookies.,\"lays down some vegetables, and continues talking to the camera.\",mixes the ingredients in the pan and begins cooking cooked.,,gold1-orig,pos,unl,unl,unl,n/a,\"After she mixes all the ingredients together she begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven.\",She\nanetv_bGql7ldp84A,1151,She then proceeds to mix the wet ingredients in a glass bowl. After she mixes all the ingredients together she,\"begins to roll the dough into balls and place them onto a cookie sheet, and puts them into the oven.\",puts the cake all into the bowl and puts it on the plate.,adds the mixing mix into an iron mix with a large lemon on top of the counter.,puts the mixture on the pan and proceeds to pour it on with the drink.,begins to mix the ingredients in a kitchen pan.,gold0-orig,pos,unl,unl,pos,pos,She then proceeds to mix the wet ingredients in a glass bowl.,After she mixes all the ingredients together she\nanetv_UUjTMDSUvs0,4663,The camera pans around kitchen and shows the woman cooking more ingredients. She,continues mixing it around in the pan.,scoops the lemons out of the pot and pours it on a plate.,puts up the cake and places it in a bowl.,gives ingredients a plate and shows how to make lemonade.,,gold1-orig,pos,unl,unl,unl,n/a,The camera pans around kitchen and shows the woman cooking more ingredients.,She\nanetv_UUjTMDSUvs0,1407,A buffet of food is shown around the woman. She,is stirring the food in the pan.,is chopping larger vegetables as serving as counts.,is standing outside holding a cake by talking for a bread ready to bake.,leaves the group of kids away.,picks up a slide.,gold0-orig,pos,unl,unl,unl,unl,A buffet of food is shown around the woman.,She\nanetv_UUjTMDSUvs0,4662,A woman is seen cooking items onto a stove with various ingredients laid out. The camera,pans around kitchen and shows the woman cooking more ingredients.,pans around her mixing all around the leg and pours the liquids into a blender.,\"pans over several clips of ingredients that are ingredients inside, turning flour into a bowl.\",pans all around a table as well as well all ingredients and putting ingredients into a bowl.,,gold0-orig,pos,unl,pos,pos,n/a,A woman is seen cooking items onto a stove with various ingredients laid out.,The camera\nanetv_sxQbiXWFdKs,7519,\"Kids walk to the water's edge and launch the water craft, including boats and inner tubes. A man\",narrates the scene at the helm of a boat.,runs a pole vault.,rides in next to a holographic elliptical.,is repeating the game as they row on beside shore.,walks and shows the father in the kayak.,gold0-orig,pos,unl,unl,unl,unl,\"Kids walk to the water's edge and launch the water craft, including boats and inner tubes.\",A man\nanetv_sxQbiXWFdKs,13720,A group of people get off of a yellow school bus with life rafts around their neck and enter a foliage filled area leading to a body of water. A man on a motorized boat,talks to the camera while sitting on the edge of the inside of a boat in front of the boat steering wheel.,is shown applying board to the ground.,swims in the middle of the calm setting.,jumps on the water.,,gold0-orig,pos,unl,unl,unl,n/a,A group of people get off of a yellow school bus with life rafts around their neck and enter a foliage filled area leading to a body of water.,A man on a motorized boat\nanetv_sxQbiXWFdKs,13721,\"The people are seen pushing off into the water in inflatable rafts, and donut shaped rafts, floating down the water solo or with others using paddles. A woman\",is seen in the water in a kayak floating using a paddle to move in the water.,follows after them holding the kite impressive and an older man speaking to the camera and showing off his family.,is sitting at the bottom of a large river.,is seen speaking to the camera while looking into the camera.,swims in the water as they try to pull the sphere apart.,gold0-orig,pos,unl,unl,unl,pos,\"The people are seen pushing off into the water in inflatable rafts, and donut shaped rafts, floating down the water solo or with others using paddles.\",A woman\nanetv_sxQbiXWFdKs,7518,A school bus unloads with kids carrying boats with Down the Delaware overlaid. Kids,\"walk to the water's edge and launch the water craft, including boats and inner tubes.\",leads off celebratory pictures of their car.,is waving at a camera and holding up a frisbee.,family is sitting in green jack chairs.,,gold0-orig,pos,unl,unl,unl,n/a,A school bus unloads with kids carrying boats with Down the Delaware overlaid.,Kids\nanetv_B39pJK4FU1o,9091,She then jumps hopscotch and picks up the pink item. She,throws it again and jumps again and returns picking up the pink item.,\"spins and spins, running a pose as if trying to be pushed.\",moves the letters in the plastic dryer bag to be in.,continues talking about the proper placement.,,gold0-orig,pos,unl,unl,unl,n/a,She then jumps hopscotch and picks up the pink item.,She\nanetv_B39pJK4FU1o,9089,A lady is talking in an office and holding a pink item. the lady,throws the pink item on a game board on the floor.,holds out large smart cube and adds decorations.,puts a contact lens in her eye.,sprays it with a razor.,stands and shows the shooting the bow and arrows at a guy.,gold0-orig,pos,unl,unl,unl,unl,A lady is talking in an office and holding a pink item.,the lady\nanetv_B39pJK4FU1o,9090,The lady throws the pink item on a game board on the floor. She then,jumps hopscotch and picks up the pink item.,puts her boot in a purple's wooden box.,takes another snow shoe and picks it right back up.,does a list on a table and puts in the bag again.,bounces the fruit over the hoop.,gold0-reannot,pos,unl,unl,unl,unl,The lady throws the pink item on a game board on the floor.,She then\nanetv_V2MlQezL1IE,2878,The video then comes back to the older man who is directing the players. The men,begin tossing a volleyball back and forth.,continue to ride on the board.,begin bouncing on the ground like soldiers riding up a barrier and throwing a pinata into a pool.,are shown as others pass fence.,scan down and side to side.,gold0-orig,pos,unl,unl,unl,unl,The video then comes back to the older man who is directing the players.,The men\nanetv_V2MlQezL1IE,2877,A simulated screen showing a volleyball court shows while he speaks. The video then,comes back to the older man who is directing the players.,begins to describe different newscaster actions performing various match moves.,shows several reporter playing paintball on the field.,ends with a title screen with credits come around.,,gold1-orig,pos,unl,unl,pos,n/a,A simulated screen showing a volleyball court shows while he speaks.,The video then\nanetv_V2MlQezL1IE,2875,The video begins with a title screen. An older man,is seen in a gym speaking to the camera while men play volleyball in the background.,is seen standing in front of the camera as well as the plaster is shown.,finishes laying plaster on the floor of a room with wax on a wood floor and starts painting the wall.,talks while a woman in purple talks on the now - side screens.,appears on the surface.,gold1-reannot,pos,unl,unl,pos,pos,The video begins with a title screen.,An older man\nanetv_KhAtzEJxz9M,2744,A group of women are moving back and forth in unison. They,\"change positions, marching forward.\",are instructing in a gym or exercise.,spin and walk around the other and continue in jump techniques.,are shown riding around on a city with surfing jockeys.,hop on and exercise as the ball cheers.,gold0-orig,pos,unl,unl,unl,unl,A group of women are moving back and forth in unison.,They\nanetv_KhAtzEJxz9M,2745,\"They change positions, marching forward. Then then\",continue doing several aerobic dance moves together.,take the discus as a red flags thrower and a man man appears behind the wave of the shield.,finishing several dancing swirling battling and landing on the sand.,race the gymnast tapping their hands on the floor as the guard preps their kick.,,gold0-orig,pos,unl,unl,unl,n/a,\"They change positions, marching forward.\",Then then\nanetv_KhAtzEJxz9M,15047,The women jump bounce in place before the lyrics of the song starts. When the lyrics start they,go into an intricate dance routine that fits with the song.,are coming out of the sisters' apartment.,are finally jumping cymbals to begin a wind and are performing with various locations and waiting in the water.,finish their song song.,,gold0-orig,pos,unl,unl,unl,n/a,The women jump bounce in place before the lyrics of the song starts.,When the lyrics start they\nlsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9579,\"She is hard at work, to music o. s.. Among the members of the sad burlesque audience, he\",is in strong contrast: a sour and aggressive expression.,stops in front of dozens of tall towers with ripped shirts and white ornaments.,wears the other levels of his language and talks in it.,lets her head on his hand.,turns his back to his son and smiles.,gold0-orig,pos,unl,unl,unl,unl,\"She is hard at work, to music o. s..\",\"Among the members of the sad burlesque audience, he\"\nlsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9582,Before we see the lettering he slides it into his pocket. A hand,descends firmly onto his shoulder.,- seen his cast is now a row of moving bicycles.,stands with a metal pack.,appears on stage in front of a woman.,,gold0-orig,pos,unl,unl,unl,n/a,Before we see the lettering he slides it into his pocket.,A hand\nlsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9584,He glances up behind him as we. He,bends down and speaks quietly next someone's ear.,sets them in front of the white trophy's coffin.,\"sets down the hanger, picks it up and checks a display.\",shows his father's bottle.,,gold0-orig,pos,unl,unl,pos,n/a,He glances up behind him as we.,He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9577,\"He shifts into second gear, climbing a steep little hill. He\",starts fast and noisily down a steep hill.,\"rises to the bottom of the steps, sitting a hundreds of feet out keys on the tower floor.\",passes a window and sits beside him.,leaps over the bar and into a react - roofed gym.,\"scales the construction on a cliff bridge, from within the haze.\",gold1-orig,pos,unl,unl,unl,unl,\"He shifts into second gear, climbing a steep little hill.\",He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-48981,9581,We move in fast to a head close - up. Before we see the lettering he,slides it into his pocket.,is struck across above us.,can give and see.,seems to be racing.,,gold0-reannot,pos,unl,unl,pos,n/a,We move in fast to a head close - up.,Before we see the lettering he\nanetv_qumU7AgV3Mk,14889,\"A guy slips, falls on the ice arena, and laughs. A man\",opens his mouth very wide to show his excitement.,stands with a lot.,in a black shirt gets splashed on the triangle.,picks up someone and holds for another ring.,,gold0-orig,pos,unl,unl,unl,n/a,\"A guy slips, falls on the ice arena, and laughs.\",A man\nanetv_qumU7AgV3Mk,14888,People interact in a circling ice arena. A lady,talks to a group of males.,holds the violin while it is slowly dancing and people're sitting behind it watching.,stands on a rope and blows the whistle.,throws a ball to a pole and hits several pins.,,gold1-orig,pos,unl,unl,unl,n/a,People interact in a circling ice arena.,A lady\nanetv_u_RzyIJi8qc,2511,\"Two men are standing outside with a crowd of people lifting weights and exercising. Many people begin to film the guys on their phone, the weight lifting continues and several people\",come back to do interviews.,walk around on some high mats.,watch from the uneven set.,go down on the mat.,spin by in the air.,gold0-orig,pos,unl,unl,unl,unl,Two men are standing outside with a crowd of people lifting weights and exercising.,\"Many people begin to film the guys on their phone, the weight lifting continues and several people\"\nanetv_8TGG-FZx0cc,17888,The man stirs the spaghetti in the pot. The man,drains the spaghetti and rinses it before putting it into a bowl.,puts a chicken on a pot and cuts up some ingredients.,cooks a pan successfully with oil cleaning it cooked in the pan.,takes the pasta out of the mix and works on it as the man cuts.,\"puts some oil on the pan, then puts it down.\",gold0-orig,pos,unl,unl,unl,pos,The man stirs the spaghetti in the pot.,The man\nanetv_8TGG-FZx0cc,12291,\"There is a pot of boiling water on the stove shown, and then a person picks up a bag of noodles. The person\",gets the noodles out and puts them in the water.,flips another large vacuum in front of the spare stumps of lettuce.,mixes all the ingredients and then holds a cup mug before going into the bowl.,\"mixes the ingredients in the fire, then flattens it clean with a new pan.\",stirs the ingredients on the bowl in the of the mixer.,gold1-orig,pos,unl,unl,unl,unl,\"There is a pot of boiling water on the stove shown, and then a person picks up a bag of noodles.\",The person\nanetv_8TGG-FZx0cc,17887,A person shows us a package of spaghetti then adds the spaghetti to the boiling water. The man,stirs the spaghetti in the pot.,peels butter from a cup to blend the eggs.,\"bites the lip with a hose, then he begins to clean a pan.\",puts the spaghetti in red frosting and stirs the cup in a frying pan.,,gold0-orig,pos,unl,unl,unl,n/a,A person shows us a package of spaghetti then adds the spaghetti to the boiling water.,The man\nanetv_8TGG-FZx0cc,12292,They stir the noodles with tongs and instructions are given along the way. Then they,drain the noodles in the sink and scrape the rest off the bottom of the pot.,are both reading their lines and finishes them off.,put the ingredients into a bowl and add the tongs to a bowl from the oven.,\"complete the dish, wrap it and put them into the oven.\",,gold0-orig,pos,unl,unl,pos,n/a,They stir the noodles with tongs and instructions are given along the way.,Then they\nanetv_8TGG-FZx0cc,17886,A pot of water boils on a stove. A person,shows us a package of spaghetti then adds the spaghetti to the boiling water.,\"picks up a bowl of chopped potatoes, turning a pot over the stove.\",cuts lemon through the mixer and pours the vegetables over a pasta pitcher.,rinses a piece of vegetables and then picks up pasta.,,gold0-orig,pos,unl,unl,unl,n/a,A pot of water boils on a stove.,A person\nlsmdc1042_Up_In_The_Air-88607,7707,They jog up onto the sandy beach. A courtesy bus,delivers the group to the hotel.,is galloping along another dirt road.,sits outside the base on the towering ridge.,arrives at the trip.,,gold1-orig,pos,unl,unl,pos,n/a,They jog up onto the sandy beach.,A courtesy bus\nlsmdc1042_Up_In_The_Air-88607,7709,They run into the entrance barefoot. Someone,wakes up in bed.,\"disappears, leaving someone behind him.\",comes out for the rest of the party toward hogwarts.,jumps out of a car and falls into a ditch.,,gold0-orig,pos,unl,unl,unl,n/a,They run into the entrance barefoot.,Someone\nlsmdc1042_Up_In_The_Air-88607,7710,\"He looks at her, bleary - eyed. She\",leans down and kisses him.,hits the radio back and sits asleep before her.,notices someone watching him with a warm smile.,\"has no answer, but can't believe it.\",,gold1-orig,pos,unl,unl,pos,n/a,\"He looks at her, bleary - eyed.\",She\nlsmdc1042_Up_In_The_Air-88607,7704,All the lights in the yacht go out. People,\"look back towards the city lights, some distance away.\",working on peanuts on the floor.,look someone in the face.,\"walk back up, drinking coffee.\",drive along the river.,gold0-orig,pos,unl,unl,unl,pos,All the lights in the yacht go out.,People\nlsmdc1042_Up_In_The_Air-88607,7708,A courtesy bus delivers the group to the hotel. They,run into the entrance barefoot.,arrive outside the motel.,course the tape.,kiss.,pull up at a hotel theater.,gold1-orig,pos,unl,unl,unl,unl,A courtesy bus delivers the group to the hotel.,They\nlsmdc1042_Up_In_The_Air-88607,7711,People have breakfast at the hotel's outdoor cafe. They,sit at one of many tables under a blue umbrella.,both proceed to put the lock on the stereo.,pick up the order to leave the someone for a variety of things.,\"are pulling the band band past someone like a ballerina, which she has n't been in yet.\",\"move, as they sit on the tables and smile up someone's red picture.\",gold0-orig,pos,unl,unl,unl,unl,People have breakfast at the hotel's outdoor cafe.,They\nlsmdc1042_Up_In_The_Air-88607,7713,Someone has the photo of people. Someone,holds up the photo.,looks at him through the wall.,picks up a stick.,stretches curtly as she glances upright.,gets out and opens the map.,gold0-orig,pos,unl,pos,pos,pos,Someone has the photo of people.,Someone\nlsmdc1042_Up_In_The_Air-88607,7712,They walk along a pier. Someone,has the photo of people.,climbs flat on the ship.,ends a call to her friend.,glances toward someone's desk.,rises and flips over their glasses.,gold1-reannot,unl,unl,unl,unl,unl,They walk along a pier.,Someone\nlsmdc1042_Up_In_The_Air-88607,7706,Everyone gets a ride back to land in a small pontoon boat. They,jog up onto the sandy beach.,continue fast down the mountain.,hurry it into someone's apartment.,use a large boat to play a display at the lake shore.,make interest and jump star signs.,gold0-reannot,pos,unl,unl,unl,unl,Everyone gets a ride back to land in a small pontoon boat.,They\nlsmdc1042_Up_In_The_Air-88607,7705,\"People look back towards the city lights, some distance away. Everyone\",gets a ride back to land in a small pontoon boat.,are swirling around a large chasm beyond and only a few small black make - up statues of ominous grand - palace walls.,looks looking up underneath the dome.,\"'s black range rover pulls away to reveal someone's house, removing the letters from the floor.\",spins someone inside - - becomes perfectly still.,gold1-reannot,pos,unl,unl,unl,unl,\"People look back towards the city lights, some distance away.\",Everyone\nlsmdc3092_ZOOKEEPER-45421,1945,\"The van doors open and someone and someone step out to switch places. Later, it\",cruises down a residential street.,\"is a fair, winding road surrounded by lush countryside town.\",leaps to the lower part of someone's ship.,sits at a concrete barrier where a car arrives.,,gold0-orig,pos,unl,unl,pos,n/a,The van doors open and someone and someone step out to switch places.,\"Later, it\"\nlsmdc3092_ZOOKEEPER-45421,1948,It dead ends in a 15 foot wall. He,follows someone over to the wall.,\"comes home, minas morgul in line.\",flips onto a second plywood panel and places it to his right.,carries the children in circles.,\"stares at the pole, then moves off.\",gold0-orig,pos,unl,unl,unl,unl,It dead ends in a 15 foot wall.,He\nlsmdc3092_ZOOKEEPER-45421,1946,\"Right past her, he heads upstairs. Shane\",gets up from a computer in his underwear.,\"knocks someone tray with a red fire extinguisher, as someone walks inside.\",keeps his arm out draped over his body.,goes into a living room where someone sleeps on the floor of a belly dancer.,approaches someone's side as she struts into an elegant hallway.,gold1-orig,pos,unl,unl,unl,pos,\"Right past her, he heads upstairs.\",Shane\nlsmdc3092_ZOOKEEPER-45421,1947,Steering wheel turning sharply around a bend. It dead,ends in a 15 foot wall.,leaves a small hamper.,twenties and less evenly spaced.,beaten in front of her.,bounds back below crashing car fading itself through the siren.,gold0-orig,pos,unl,unl,unl,unl,Steering wheel turning sharply around a bend.,It dead\nlsmdc3092_ZOOKEEPER-45421,1944,\"The van rolls out, heads into the road and drives straight into the side of a parked car. The van doors open and someone and someone\",step out to switch places.,lies in the sanitarium.,\"run, pushing a car toward the house.\",lean against each other for a kiss.,hurry behind a parked car and converge on many roads leading by a group.,gold0-reannot,pos,unl,unl,unl,unl,\"The van rolls out, heads into the road and drives straight into the side of a parked car.\",The van doors open and someone and someone\nanetv_NOxiMgQMeuk,10449,A woman is shown with a paintbrush and a piece of canvas. She,uses green paint to fill in a drawing of a plant.,\"then applies a brush on the bow, then brushes the bottom of a stone.\",talks about drying sections of the hair and then picks the back up with a silver clamp and tightens it up.,pours something onto the paw.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is shown with a paintbrush and a piece of canvas.,She\nanetv_NOxiMgQMeuk,10450,She uses green paint to fill in a drawing of a plant. She,\"goes around in circles, painting the image.\",continues with about the vacuum and rakes down the tree.,smiles and squats back and forth of a few steps.,\"talks to the camera, creating multiple lines.\",accidentally throws some red paint onto the fence.,gold0-orig,pos,unl,unl,unl,unl,She uses green paint to fill in a drawing of a plant.,She\nanetv_oUQPIZu5bVU,1996,A team groups together holding a trophy. The team,shakes hands with the opposing team.,\"prepares to be soccer in different places, trying to fight the adults.\",is playing pool as spectators cheer.,begins to jump on two rings.,prepares to play dodgeball and while many break the middle for another.,gold0-orig,pos,unl,unl,unl,unl,A team groups together holding a trophy.,The team\nanetv_oUQPIZu5bVU,1994,Men are playing bagpipes in a line. Players,are running around on the field playing sports.,leave a wooden court on a wooden court.,play rock paper scissors.,are around the court watching a game and play the arena.,are traveling on bagpipes doing plaza.,gold0-reannot,pos,unl,unl,unl,unl,Men are playing bagpipes in a line.,Players\nanetv_oUQPIZu5bVU,1995,Players are running around on the field playing sports. A team,groups together holding a trophy.,is holding the basketball in a casino taking its progress.,takes chalk on a field of volleyball.,is leading a group of men playing lacrosse.,falls off a successful ball in a field.,gold1-reannot,pos,unl,unl,unl,unl,Players are running around on the field playing sports.,A team\nlsmdc3071_THE_DESCENDANTS-5603,11833,\"A wide, low - limbed tree shades our view. The sun\",sets behind the watery horizon as the foursome continues along the shore toward a distant resort.,\"shines down a spiral of dust, which is illuminated from a soft, grey wood.\",is ripped across the sky.,shines down on the riverbed and strands of passing and cliffs.,is shooting stones through a dark canopy near the refuse.,gold0-orig,pos,unl,unl,unl,unl,\"A wide, low - limbed tree shades our view.\",The sun\nanetv_FpxVS1Xpl1U,13865,Man and woman are talking and presenting the man that walks by the pool. man,is weightlifting and doing a big jump from a trampoline and talking to the camera.,is behind a counter talking to the camera.,is sitting in two green chairs on a mower to grab the side of the man.,is holding a white bowl covered in a mixing cup.,,gold0-orig,unl,unl,unl,unl,n/a,Man and woman are talking and presenting the man that walks by the pool.,man\nanetv_FpxVS1Xpl1U,13870,Woman is impressed siting by the pool and have her hands on her face. presentator,is interviewing the man.,\", woman is seen in the pool.\",etched on her face.,starts to catapult the big fish into the woman's chest.,camel are engaging in a bruno line.,gold0-orig,pos,unl,unl,unl,unl,Woman is impressed siting by the pool and have her hands on her face.,presentator\nanetv_FpxVS1Xpl1U,13866,Man is weightlifting and doing a big jump from a trampoline and talking to the camera. a big platfom is shown and a man,is being interviewed by a woman in top of trampoline.,talks to a pedal in the middle of a small room.,is seated at the edge in the room throwing tiles on a rack.,talks to a boy that dressed for a snapshot.,is in a blue background talking.,gold0-orig,pos,unl,unl,unl,unl,Man is weightlifting and doing a big jump from a trampoline and talking to the camera.,a big platfom is shown and a man\nanetv_FpxVS1Xpl1U,13867,A big platfom is shown and a man is being interviewed by a woman in top of trampoline. woman in audience,is screaming and throwing kisses.,hold up a beer and start dancing together.,is then shown celebrating the event.,is standing around him talking to the camera.,releases the shot and the crowd cheers.,gold0-orig,pos,unl,unl,unl,unl,A big platfom is shown and a man is being interviewed by a woman in top of trampoline.,woman in audience\nanetv_FpxVS1Xpl1U,13864,People are sitting in chairs in pool. man and woman,are talking and presenting the man that walks by the pool.,interview a woman on a field mixing some into a cup.,wearing a pink shirt pull a towel from an unfinished room where a group of people are sitting.,are in a gym kicking a tennis ball with a ball.,are standing in a room in front of them while they play games.,gold1-reannot,pos,unl,unl,unl,pos,People are sitting in chairs in pool.,man and woman\nanetv_FpxVS1Xpl1U,13868,Woman in audience is screaming and throwing kisses. man,is on the 10 m trampoline and make a hand stand to make the jump to the pool.,is putting helper on his face with fake nails.,is in a bra wearing a boxing outfit in a gym.,is holding a mouthwash and washing her face.,is helping a woman in pink true like a car and talking.,gold0-reannot,unl,unl,unl,unl,unl,Woman in audience is screaming and throwing kisses.,man\nanetv_hKezMv52Nw8,3228,\"After, she walks off and her jump is measures as they show her replay. After, more girls begin to jump and represent their team and their jumps\",are measured as well.,wide also as they go down to a dirt track.,continue to take and flipping and flipping fiving.,is shown again in slow motion.,,gold0-orig,pos,unl,unl,pos,n/a,\"After, she walks off and her jump is measures as they show her replay.\",\"After, more girls begin to jump and represent their team and their jumps\"\nanetv_hKezMv52Nw8,3227,\"A female athlete is standing in a field and takes off running and does a long jump in to the pit. After, she walks off and her jump\",is measures as they show her replay.,turning and jumping several times.,is shown stretching on the floor with her tools.,is shown again hitting the background.,is shown out several more times.,gold0-reannot,pos,unl,unl,unl,pos,A female athlete is standing in a field and takes off running and does a long jump in to the pit.,\"After, she walks off and her jump\"\nanetv_cCqjsuJa2vk,15119,A female is standing in a gym with a black dress that has sparkles and a pink trim on the bottom beginning to perform. She,throws the baton in the air and starts moving around the floor with it.,grabs some shoes of her sneakers and pushes her hair down.,takes the pencil and begins running to the surface of the woman sitting on the floor.,\"walks off to the floor, does a final exercise, and puts his feet in the air.\",watches her then places her nail on him back and begins putting the finished paint on her fingernails.,gold1-orig,pos,unl,unl,unl,unl,A female is standing in a gym with a black dress that has sparkles and a pink trim on the bottom beginning to perform.,She\nanetv_cCqjsuJa2vk,15120,\"She throws the baton in the air and starts moving around the floor with it. During her performance, she\",does a series of kicks and flips while tossing the baton in the air and catching it.,quickly does some back flips and jumps.,begins to jump to talk to the camera once more.,raises her hand to show how to turn the hula hoop up.,\"is getting very spectacular and going back and forth side to side, only to even spinning the baton that's like she does.\",gold0-orig,pos,unl,unl,unl,pos,She throws the baton in the air and starts moving around the floor with it.,\"During her performance, she\"\nanetv_cCqjsuJa2vk,8297,A woman is dancing on a hardwood floor holding a baton. She,starts twirling the baton.,\"joins in and clips her head, then assassin spots a pose on the stage and dances and turns to two participants.\",throws the baton down in front of her.,throws her baton in the air.,continues with her performance while the camera captures her movements.,gold1-orig,pos,unl,pos,pos,pos,A woman is dancing on a hardwood floor holding a baton.,She\nanetv_cCqjsuJa2vk,8298,She starts twirling the baton. She,does a cart wheel during her routine.,drops the baton into the hoop.,shows a low - moving girl with the horse watching her.,drops two flips preparing to make another performance.,spins around in circles walking and doing cartwheels.,gold1-reannot,pos,unl,unl,unl,unl,She starts twirling the baton.,She\nlsmdc0023_THE_BUTTERFLY_EFFECT-59548,9723,\"At that moment, someone passes someone in the lobby. Someone\",\"walks away, leaving someone dumbfounded.\",stops with his back to the lectern.,\"leans over his head and rubs at his fist, then gazes up at someone's gaunt face.\",cleans the pot from a smooth corridor below.,\"stops for a moment, stops, and points to something at the door.\",gold1-orig,pos,unl,unl,unl,pos,\"At that moment, someone passes someone in the lobby.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59548,9722,\"Someone hangs up the phone, then checks his watch. At that moment, someone\",passes someone in the lobby.,reads the big screen.,freezes in an office.,\"steps out, regards someone a moment, then stares.\",is avoiding someone's backdoor.,gold1-orig,pos,unl,unl,unl,unl,\"Someone hangs up the phone, then checks his watch.\",\"At that moment, someone\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59548,9721,Someone inserts his last quarter into the lobby pay phone and dials a telephone number. Someone,\"hangs up the phone, then checks his watch.\",\"pauses, letting the phone glide down over his shoulders and glances at the concert.\",hurries over to the man leaving the room with his father high behind.,reaches over to the ipod and opens it to show someone inside.,,gold0-orig,pos,unl,unl,pos,n/a,Someone inserts his last quarter into the lobby pay phone and dials a telephone number.,Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59548,9720,\"After a moment of wow, someone runs off to class himself. Someone\",inserts his last quarter into the lobby pay phone and dials a telephone number.,put up.,\"motions for someone to follow him, moving across the six - office staircase from the opposite direction.\",turns to the mezzanine and searches a case of toiletries.,smiles and walks away.,gold1-reannot,pos,unl,unl,unl,pos,\"After a moment of wow, someone runs off to class himself.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59548,9719,\"Someone gives him a big unexpected kiss and walks away. After a moment of wow, someone\",runs off to class himself.,pinches her nose and swallows it.,slips under grated partition.,stands and walks back toward the camera again and heads straight toward the window.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone gives him a big unexpected kiss and walks away.,\"After a moment of wow, someone\"\nanetv_p74gAY-kWaY,15924,A woman is seen standing beside a girl sitting down brushing her hair. A boy,watches on the side as the woman continues to brush the hair.,uses a brush to pull his curls out of her hair.,walks up next to her and leads her into a wandering class.,wanders around on the ice while speaking.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen standing beside a girl sitting down brushing her hair.,A boy\nanetv_p74gAY-kWaY,15925,A boy watches on the side as the woman continues to brush the hair. The woman,speaks to the girl while running the brush all over her hair.,\"slides the tongue gently down one, while commentators watch closely.\",continues cleaning the ladder while the camera pans around.,grabs some ribbon and the braid around her cheek ans looking and frown.,heads for the camera.,gold0-reannot,pos,unl,unl,unl,pos,A boy watches on the side as the woman continues to brush the hair.,The woman\nanetv_ILIpCfCWyT0,15921,People are skateboarding down a street. A person,is riding a blue bicycle.,is standing in front of a scraping camera.,is painting a dead woman's fingernails.,\"is spinning on a skateboard in street, passing a car stereo.\",is sitting in bumper cars.,gold1-orig,pos,unl,unl,unl,unl,People are skateboarding down a street.,A person\nanetv_ILIpCfCWyT0,8118,Skaters are skateboarding during the day. Now the same skaters,are skating during he night time.,are deeply interviewed for a whole event.,\"are shown jumping off their bikes, doing a low jump.\",are stopped in a different aisle.,are waiting for a line to fly out in ground.,gold0-orig,pos,unl,unl,unl,unl,Skaters are skateboarding during the day.,Now the same skaters\nanetv_ILIpCfCWyT0,15922,A person is riding a blue bicycle. People,are doing tricks on a skateboard.,are sitting in rafts at a high table.,start running down the street.,are sitting inside the car.,are sitting behind the wheel of the machine.,gold1-reannot,pos,unl,pos,pos,pos,A person is riding a blue bicycle.,People\nanetv_cwQQj3VZLC8,19523,He salutes the large applauding audience. Another man,waits on the start line before accelerating into the long jump.,shouts into the audience.,is interviewed with his end clips from the microphone.,walks by while holding the microphone down towards the boy.,,gold0-orig,pos,unl,unl,unl,n/a,He salutes the large applauding audience.,Another man\nanetv_cwQQj3VZLC8,19526,Another man waits on the start line before running into a longjump. He,waves to the appreciative crowd and runs away smiling and celebrating.,\"walks towards the back, switches off a piece of tape, then slows.\",removes a third arrow.,obstacles briefly by the skate park down the street.,pull blue and fasten it on the spot.,gold1-orig,pos,unl,unl,unl,pos,Another man waits on the start line before running into a longjump.,He\nanetv_cwQQj3VZLC8,19522,He takes off running and does a long jump. He,salutes the large applauding audience.,flips off the flip beam and slides around the bars.,runs down a track into the air.,dismounts and lands on the mat with the jump.,goes back to the pole vault.,gold1-orig,pos,unl,pos,pos,pos,He takes off running and does a long jump.,He\nanetv_cwQQj3VZLC8,19521,\"A man is standing at the start line clapping his hands, people look on. He\",takes off running and does a long jump.,\"sits and talks after the video, ending in credits in slow motion.\",passes the camera for more tickets and pay attention.,smiles and claps his hands over his hips.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is standing at the start line clapping his hands, people look on.\",He\nanetv_cwQQj3VZLC8,19524,Another man waits on the start line before accelerating into the long jump. He,looks to the crowd who are subdued.,is getting up while he moves himself up and down.,towers again and raises the flag first.,lifts up the rope and lands on the sand in the sand.,,gold0-reannot,pos,unl,unl,pos,n/a,Another man waits on the start line before accelerating into the long jump.,He\nanetv_SrcZRhXkr2k,2120,Two people play a game of indoor racquetball. A player,dodges backwards from the ball.,\"enters the car, then enters a room.\",wearing a tank top holds his hands over a course to make balls.,leads a chainsaw down a few steps.,wearing blue t suit descends the far ring.,gold0-orig,pos,unl,unl,unl,unl,Two people play a game of indoor racquetball.,A player\nanetv_SrcZRhXkr2k,17144,\"A man and woman are standing in a racketball room and attempt on taking turns hitting the racketball very hard, but the woman is dominating every chance. The woman\",swings the racket and almost hits the man in his face with her fast flying racket.,is plastering with an mop while everyone moves it numerous times before the girl is sitting.,is holding a flute while the woman is playing with a jump from her right hand to the balance.,then finished a nail and starts to explain that she is dancing.,wearing the dancing just sitting and holding a small dog in humored smiles and victory.,gold0-orig,pos,unl,unl,unl,unl,\"A man and woman are standing in a racketball room and attempt on taking turns hitting the racketball very hard, but the woman is dominating every chance.\",The woman\nanetv_SrcZRhXkr2k,2121,A player dodges backwards from the ball. The player,slides across the floor to recover the ball.,falls over and serves some overhand balls.,runs after the puck.,presses a yellow ball.,shows a motion before running into the net.,gold0-orig,pos,unl,unl,unl,pos,A player dodges backwards from the ball.,The player\nanetv_SrcZRhXkr2k,17145,\"The man reaches his hand out, shakes the woman's hand, and gives her a side hug while they both walk towards the door to exit the room. The woman exits first, removes her glasses and smiles, and the man\",is walking right behind her and removes his glasses while looking down.,\"drops her glasses, pumps the mouthful of the toast in front of her and takes a seat behind her.\",closes her eyes and tears off her shirt.,spreads reception a little toward the window.,,gold0-orig,pos,unl,unl,unl,n/a,\"The man reaches his hand out, shakes the woman's hand, and gives her a side hug while they both walk towards the door to exit the room.\",\"The woman exits first, removes her glasses and smiles, and the man\"\nanetv_qCnHgcP3tM8,4808,\"Cars are driving down the highway fairly quickly. They stop, a man\",gets out and helps two women get out.,\"is swings at the street, and dark dinette are going over hills.\",shines from women's outdoor structure.,is gaining on the child.,walks down to a long elevated line of comforted and poles.,gold0-orig,pos,unl,unl,unl,unl,Cars are driving down the highway fairly quickly.,\"They stop, a man\"\nanetv_qCnHgcP3tM8,4809,\"They stop, a man gets out and helps two women get out. They\",go into a bar and throw a ball into a girls drink starting a beer pong war.,move together on a stretcher and try to keep them from each other.,\"are there, waiting for her to act the first ones.\",walk on an others sidewalk and lift their arms over their heads.,jump in as they talk get into their car.,gold0-orig,pos,unl,unl,unl,unl,\"They stop, a man gets out and helps two women get out.\",They\nanetv_qCnHgcP3tM8,4810,They go into a bar and throw a ball into a girls drink starting a beer pong war. He,wakes up in his dorm and then click on his ipad to start a beer pong championship.,\"are strong, but unable to pull the ball out of the hoop.\",checks the nails and sends another person across the field.,instant picture of the bowling ball is shown followed by a player up shown throwing someone into the pool and back in two brushes.,woman hits the ball against the wall and the white girl hits the ball behind her while he serves the ball.,gold0-reannot,pos,unl,unl,unl,unl,They go into a bar and throw a ball into a girls drink starting a beer pong war.,He\nanetv_IZCzbslH8jo,9834,A woman is on a court playing with a stick. She,hits a ball on the court.,plays around while taking the stone out of the court.,\"blows a ball down the field, hits it hard.\",kicks the ball and hits them.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is on a court playing with a stick.,She\nanetv_IZCzbslH8jo,9835,She hits a ball on the court. She,demonstrates how to swing and hit the ball.,hits it on the lane and raises her beer in victory.,pulls off the hem of her jeans.,throws the ball over a net and hits it.,,gold0-orig,pos,unl,unl,pos,n/a,She hits a ball on the court.,She\nanetv_4ivePL3RW0Q,17274,\"A title slide is then shown, and then shows several ingredients used in a recipe for cookies. The video then\",shows the two boys mixing ingredients together.,shows the man emptying a slice of cake.,makes one gift taped off the bread and results are displayed.,shows a image of women wearing different colors.,,gold0-orig,pos,unl,unl,pos,n/a,\"A title slide is then shown, and then shows several ingredients used in a recipe for cookies.\",The video then\nanetv_4ivePL3RW0Q,17275,The video then shows the two boys mixing ingredients together. They,roll the dough into balls and place them into an oven.,the game begins with the capture.,mix alcoholic drinks are shown being formed.,michelle solo names appears on screen.,,gold0-orig,pos,unl,unl,unl,n/a,The video then shows the two boys mixing ingredients together.,They\nanetv_4ivePL3RW0Q,17276,They roll the dough into balls and place them into an oven. The boys,take the cookies out of the oven and begin eating them.,start cutting the cookies to make the cookies.,stand up and rub the balls together.,try to change sides but pile them on the ground.,grab stacks of butter eggs and put them in the oven.,gold0-orig,pos,unl,unl,unl,unl,They roll the dough into balls and place them into an oven.,The boys\nanetv_TZ5Vd9eL5WA,12677,A man moves a glass bowl off the counter. A woman,begins chopping a tomato on a board.,throws him another glass of ice.,pours the cup at her and clamps it in her mouth.,falls onto the ledge of a large red bucket.,pours the liquid into a copper container.,gold0-orig,pos,unl,unl,unl,unl,A man moves a glass bowl off the counter.,A woman\nanetv_TZ5Vd9eL5WA,12676,Two people are standing in a kitchen. A man,moves a glass bowl off the counter.,is kneeling down and mixing making sandwiches.,sits holding a knife.,is mixing the ingredients into a bowl.,,gold0-orig,pos,unl,pos,pos,n/a,Two people are standing in a kitchen.,A man\nanetv_3SjuIcAfeWk,1782,The woman hold the center of the plastic. The woman,tied the ribbon on the wrapper and cut the excess ribbon.,positions the carpet with a squeegee.,uses a piece of steel on the rope.,\"puts the woman's fingers in the cutting pin, and the woman puts the black dot on the finger.\",puts the pad on the finger and puts it away on the desk.,gold0-orig,pos,unl,unl,unl,unl,The woman hold the center of the plastic.,The woman\nanetv_3SjuIcAfeWk,16665,She uses plastic wrap to wrap around the vase. She then,ties a pretty bow around the top.,opens the baby's folded legs.,sets the new package down and settles against it.,puts the wallpaper to the wall.,cuts the box and tapes it with scissors.,gold0-orig,pos,unl,unl,unl,pos,She uses plastic wrap to wrap around the vase.,She then\nanetv_3SjuIcAfeWk,16664,A woman is standing in front of a vase on a table. She,uses plastic wrap to wrap around the vase.,is facing the camera in front of her.,talks and mixing the ingredients in a bowl.,puts the bottle on the blue table and stirs.,,gold1-orig,pos,unl,pos,pos,n/a,A woman is standing in front of a vase on a table.,She\nanetv_3SjuIcAfeWk,1781,The woman is covering the vase with a clear plastic. The woman,hold the center of the plastic.,grab the dollars to blow paper in a piece of paper paper.,sprays the hoop up and talks to saran wrap.,uses the sprayer to remove boiling oil.,uses cold paint to clean off her face and hands on the green grass.,gold0-reannot,pos,unl,unl,unl,unl,The woman is covering the vase with a clear plastic.,The woman\nlsmdc1060_Yes_man-99072,12388,A guy walks onto the stage. He,is around 60 and tanned with white hair.,is slightly at the table by a pool.,\"guy under an orange jacket catches, claps.\",plays with a heavy black instrument.,\"jumps back, then does several dance moves.\",gold1-orig,pos,unl,unl,pos,pos,A guy walks onto the stage.,He\nlsmdc1060_Yes_man-99072,12389,He is around 60 and tanned with white hair. He,smiles at his adoring fans.,\"is thoroughly shaved, rubbing alcohol.\",takes the store back up through his open window.,notices bottles of powder from the window rack.,turns on his body and face.,gold0-orig,pos,unl,unl,unl,unl,He is around 60 and tanned with white hair.,He\nlsmdc1060_Yes_man-99072,12390,Even someone smiles and claps. Someone,holds up his hand expectantly and then nods knowingly.,gives someone a nod.,switches off the tv.,is aware of the kicks.,,gold0-orig,pos,unl,unl,unl,n/a,Even someone smiles and claps.,Someone\nlsmdc1060_Yes_man-99072,12387,Someone jumps out of his skin. A guy,walks onto the stage.,secures a gold ring on the base.,rides a rope in a cruise boat.,dodges a rope stuck to his arm.,shoots at his opponent.,gold0-reannot,pos,unl,unl,unl,pos,Someone jumps out of his skin.,A guy\nanetv_bCtiTOEf9KI,2160,She is exercising on a hardwood floor in the gym. She,continues doing her stomach crunches.,jumps into shelter as she performs a break dance routine.,talks with the trainer for a while.,is talking to the camera again.,,gold1-orig,pos,unl,pos,pos,n/a,She is exercising on a hardwood floor in the gym.,She\nanetv_bCtiTOEf9KI,2159,A woman dressed in a black tank top and black tights is doing stomach crunches on a mat. She,is exercising on a hardwood floor in the gym.,begins to lay carpet on a hardwood floor.,takes the dumbbells while her body is around in the air.,does a little exercise on a pair of uneven bars.,puts weights to her legs and does a split.,gold0-orig,pos,unl,unl,pos,pos,A woman dressed in a black tank top and black tights is doing stomach crunches on a mat.,She\nanetv_UvuXGKesWS0,2604,The same man swims backstroke down the lane from where he came. The words BreastStroke,show up on the screen.,is shown to see them appear in different instant.,appear in the sky left.,is to be using as they applaud.,,gold0-orig,pos,unl,unl,unl,n/a,The same man swims backstroke down the lane from where he came.,The words BreastStroke\nanetv_UvuXGKesWS0,2603,The words BackStroke Style float across the screen. The same man,swims backstroke down the lane from where he came.,is seen sitting before a fire with several legs and flipping around.,is seen speaking to the camera and holds up various tools of equipment from his wrist while adding hands.,sat forward and collect using his drinks using a spoon.,,gold0-orig,pos,unl,unl,unl,n/a,The words BackStroke Style float across the screen.,The same man\nanetv_UvuXGKesWS0,2602,A man jumps in the pool and swims freestyle. The words BackStroke Style,float across the screen.,strike makes from time to time.,traverses pool with the goalie through the goal.,is mixed in the water.,are shown on the model with a surgeon.,gold0-orig,pos,unl,unl,unl,unl,A man jumps in the pool and swims freestyle.,The words BackStroke Style\nanetv_UvuXGKesWS0,2601,The words Freestyle Swimming float across the screen. A man,jumps in the pool and swims freestyle.,bounces into a pathway and pulls himself up into the water.,netted a white arrow and hits a red ring on his face.,gives a thumbs up and then a man wearing a white uniform dances on a stage in front of a crowd.,lowers his stick around.,gold0-reannot,pos,unl,unl,unl,unl,The words Freestyle Swimming float across the screen.,A man\nanetv_UvuXGKesWS0,2605,The words BreastStroke show up on the screen. The man,does the breaststroke back across the pool.,points a scale on his shirt.,is showing how to remove pastries in young positions.,beats up a button in a shirt.,shows us the lens of paint on the ceiling.,gold0-reannot,pos,unl,unl,unl,unl,The words BreastStroke show up on the screen.,The man\nanetv_eMkBTRYwBAU,5223,A man in ski jacket on a snowboard holds onto a rope attached to a truck. The truck starts driving and the man,is pulled behind on the tow rope.,takes a ski area off of the skier.,begins to ski around going downhill.,gets off a black staircase and gets back on the train.,continue talking about the tools to his skateboard.,gold0-orig,pos,unl,pos,pos,pos,A man in ski jacket on a snowboard holds onto a rope attached to a truck.,The truck starts driving and the man\nanetv_eMkBTRYwBAU,5224,The truck starts driving and the man is pulled behind on the tow rope. The man,maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck.,\"is pulled off the cord, going out of the water to take off the helmet.\",puts a different round and gets in the bike.,goes to the car and starts loading down steep steep steep ramps.,,gold0-orig,pos,unl,unl,unl,n/a,The truck starts driving and the man is pulled behind on the tow rope.,The man\nanetv_eMkBTRYwBAU,5225,The man maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck. The man,slows down before he lets go of the tow rope and comes to a stop.,continues to ride the other machine up around a plant and it breaks after the guy falls to the ground.,leans over the man and then using a pair of legs together and ending by pushing it down and speaking.,continues to ride the bike to the end of the bike and sees the closing credits.,continues on outdoors along with occasional techniques of equipment with video footage and another sailing views.,gold1-reannot,pos,unl,unl,unl,unl,The man maneuvers to pull up parallel with the truck and alternates going back and forth behind the truck.,The man\nlsmdc0013_Halloween-54099,1285,Someone moves to the head of the staircase. Slowly someone,starts up the staircase.,takes his gun out of the network and closes it.,raises his hands and presses his palms together.,\"pauses, his hand clasped around his head.\",slowly moves his head as he gazes at the ceiling.,gold0-orig,pos,unl,unl,pos,pos,Someone moves to the head of the staircase.,Slowly someone\nanetv_-1IlTIWPNs4,4753,A cameraman walks down a snowy driveway to capture a young child shoveling up snow. The boy,speaks into the camera and continues pushing the snow around with a shovel.,mows the grass bordering the yard using the machine to shovel the dirt with it.,ride a orange mower along a paved slope.,walks outside and comes down the hill and starts talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A cameraman walks down a snowy driveway to capture a young child shoveling up snow.,The boy\nanetv_b1PAqOmflgI,15069,A boy in a blue t - shirt bounces two basketballs in a gym while blocking another basketball player and making a goal with the ball. A boy,bounces two basketballs between his legs.,lets go of a club and shoots the ball into the field.,throws crochet on the shore of an art made then becomes more filled with a teenager celebrating.,swims in a line of pool balls.,hits the ball with his pinkie finger and whips all the other melons.,gold0-orig,pos,unl,unl,unl,unl,A boy in a blue t - shirt bounces two basketballs in a gym while blocking another basketball player and making a goal with the ball.,A boy\nanetv_b1PAqOmflgI,15071,Another basketball player approaches him and tries to take the ball from him. The player in the blue shirt,\"blocks him and makes the goal, and then proceeds to do it again, twice.\",hits the ball again several times as it hits a dartboard and lands on each other just behind.,takes the ball and throws it at the man.,runs back at the player.,hits several goals.,gold1-orig,pos,unl,pos,pos,pos,Another basketball player approaches him and tries to take the ball from him.,The player in the blue shirt\nanetv_b1PAqOmflgI,15070,A boy bounces two basketballs between his legs. Another basketball player,approaches him and tries to take the ball from him.,hits a wooden ball.,narrows his eyes and fully the balls in return.,comes in and takes a ring on it and throws it down.,dives into the pool table.,gold0-orig,pos,unl,unl,unl,unl,A boy bounces two basketballs between his legs.,Another basketball player\nlsmdc1045_An_education-90275,909,Someone eyes her husband reproachfully. Someone,shakes someone's hand.,smiles broadly and claps her foot.,gazes towards her bra.,rushes past someone and someone.,squeezes his eyes shut.,gold0-orig,pos,unl,unl,pos,pos,Someone eyes her husband reproachfully.,Someone\nlsmdc1045_An_education-90275,907,Someone opens the door for her. They,drive off into the london twilight.,push the door shut and smile.,\"wait a moment, while now other door is opened in closed crates.\",stop at a doorway and gaze at this warily.,\"continue their gazes, then a lit passageway looms ahead of them.\",gold1-orig,pos,unl,unl,unl,pos,Someone opens the door for her.,They\nlsmdc1045_An_education-90275,905,People leave someone's place. They,head for the car.,return their attention to people.,\"climb onto the train, concerned.\",continues with the class together without alarmed.,,gold0-orig,pos,unl,unl,unl,n/a,People leave someone's place.,They\nlsmdc1045_An_education-90275,908,They drive off into the London twilight. Someone,eyes her husband reproachfully.,heads after the plane.,shuts the door on the car.,is.,dons a sheet of notes.,gold1-orig,pos,unl,unl,unl,unl,They drive off into the London twilight.,Someone\nlsmdc1045_An_education-90275,913,The attendant pumps the fuel. Someone,goes into the shop of the village garage.,trips on a bottom.,reaches around and points to the quidditch form missing two stacks.,drops a second rope on the ruined bottom.,\"limps off, moving in the office out of the way, etc.\",gold0-orig,pos,unl,unl,unl,unl,The attendant pumps the fuel.,Someone\nlsmdc1045_An_education-90275,906,They head for the car. Someone,opens the door for her.,misses the gap and run inside.,looks around the crate seemingly until its empty.,pulls up inside someone's office.,,gold0-orig,pos,unl,unl,unl,n/a,They head for the car.,Someone\nlsmdc1045_An_education-90275,912,They hit for town in the gathering twilight. They,stop off at the petrol station.,look at the rear of the boat.,\"pass over the shelf as they land near a large, open tree.\",can 1 person on the board.,shrink to the can among a flowing foam of huge white cluster.,gold0-reannot,pos,unl,unl,unl,unl,They hit for town in the gathering twilight.,They\nlsmdc1045_An_education-90275,914,Someone goes into the shop of the village garage. Someone,reaches into the glove box for the cigarettes.,arrives sporting a bungee rope.,hikes toward a hill full of buildings and shrubs.,\"draws the handle frame, takes out a long left trigger and smells it in a square ring, then releases someone.\",walks out with a little gun gun.,gold1-reannot,pos,unl,unl,unl,unl,Someone goes into the shop of the village garage.,Someone\nanetv_GffGGAwbcHo,11326,A hippie dog lies down on the floor and seems to be hallucinating. Dogs and spacecraft,are seen exploring space.,gazes as they peer amongst side of the grave.,is seen watering tails into a car.,rains down all around the yard and tools of the welding safety is shown on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,A hippie dog lies down on the floor and seems to be hallucinating.,Dogs and spacecraft\nanetv_GffGGAwbcHo,11325,A cowboy walks his dog and is shot outside a saloon. Chaplin,is seen walking his dog.,small sedan is shown into the ghetto.,is up over the sink.,stands tall and places them in the oven.,sit in a small booth on leashes.,gold0-orig,pos,unl,unl,unl,unl,A cowboy walks his dog and is shot outside a saloon.,Chaplin\nanetv_GffGGAwbcHo,11324,A God walks a poodle. A cowboy,walks his dog and is shot outside a saloon.,pushes it off the border of his motorcycle.,takes a loose suit from her harness.,runs down a ladies court.,,gold0-reannot,pos,unl,unl,unl,n/a,A God walks a poodle.,A cowboy\nanetv_o8-v0rPP06U,2704,A man scores a goal and leads into more clips of people scoring goals. Team mates,celebrate as more goals are shown in different clips of soccer matches.,are shown followed by cards and men making out into the goal.,run up and down the field throwing balls to the camera.,are shown while sitting on the sideline as well as running goals.,demonstrate techniques while playing.,gold0-orig,pos,unl,unl,unl,unl,A man scores a goal and leads into more clips of people scoring goals.,Team mates\nanetv_o8-v0rPP06U,2703,A man is seen walking around and leads into people playing soccer. A man,scores a goal and leads into more clips of people scoring goals.,is performing putting his shoes in the back.,is seen playing a fencing paintball game while the camera zooms in on his score.,walks next to the older man and instructs.,is seen on top of drums while more people ride around.,gold0-orig,pos,unl,unl,unl,unl,A man is seen walking around and leads into people playing soccer.,A man\nanetv_qNxLTF4Q6yk,8262,He is playing a guitar beside a case. A small crowd,is listening as he plays.,plays and plays music with the band and his guitar.,watches them as he plays and uses drums.,watches as he running towards it.,comes out watching him for a ball while another plays.,gold0-orig,pos,unl,unl,unl,unl,He is playing a guitar beside a case.,A small crowd\nanetv_qNxLTF4Q6yk,8261,A man is seated on a platform outside. He,is playing a guitar beside a case.,holds a white briefcase under his hand and lays it on his shoulder and knees.,stands up in the middle of the screen upside down.,acknowledges a large crowd and shows a text on display.,pauses and turns around then speaks.,gold1-orig,pos,unl,unl,pos,pos,A man is seated on a platform outside.,He\nanetv_qNxLTF4Q6yk,7599,A man is sitting on a chair in front of a store playing a guitar like a drum while people is walking in front of him. a couple,are talking in front of the store and drinking water.,attempts to play a harmonica.,of boys are playing a game of lacrosse.,is playing the drum set in turn.,,gold0-reannot,pos,unl,pos,pos,n/a,A man is sitting on a chair in front of a store playing a guitar like a drum while people is walking in front of him.,a couple\nanetv_nMK_jVy5ZuI,16198,More people are shown running down the track performing impressive jumps as well as celebrating afterwards. Several clips,are shown of athletes running down the track as well as jumping over beams and waving to the audience.,are shown of many other surfers running back and forth as people continue to ride around.,are then shown of the men riding down the track.,are shown of people riding along a track and performing tricks with several people.,are shown of them doing tricks with one another as they continue to watch.,gold0-orig,pos,unl,unl,unl,unl,More people are shown running down the track performing impressive jumps as well as celebrating afterwards.,Several clips\nanetv_nMK_jVy5ZuI,16197,Several clips are shown of athletes running down a large track into a pit of sand. More people,are shown running down the track performing impressive jumps as well as celebrating afterwards.,are shown riding down a track as well as fenced and swimming around.,are then seen standing on the water jumping on the volleyball many more afterwards.,are seen dancing on their faces.,run all around the field as well as kicking their feet in the end.,gold0-orig,pos,unl,unl,unl,pos,Several clips are shown of athletes running down a large track into a pit of sand.,More people\nlsmdc3061_SNOW_FLOWER-29914,4463,\"Someone joyfully clasps her hands around her friend's. Now, they each\",add a fresh stick of incense to a pot filled with the smoldering tokens.,have a snack and shake hands.,hold the empty jigger of pills.,gets up a trapeze.,give an arts look.,gold1-orig,pos,unl,unl,unl,unl,Someone joyfully clasps her hands around her friend's.,\"Now, they each\"\nlsmdc3061_SNOW_FLOWER-29914,4462,\"As someone returns to the gate, a woman approaches someone. Someone\",joyfully clasps her hands around her friend's.,put lipstick on the woman's lips.,grabs a coat from her hand.,sets down his bag and lingers near the door.,,gold0-orig,pos,unl,pos,pos,n/a,\"As someone returns to the gate, a woman approaches someone.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4455,\"She places someone's hands around it. Clutching the fan to her chest, she\",\"cautiously glances around, then hurries off down the hall.\",tensely boards the front of the protester moving her head to open notes.,gazes at a portrait of sister on the piano in park.,shows a merry saber.,rolls onto a bunk and shoots up.,gold0-orig,pos,unl,unl,unl,unl,She places someone's hands around it.,\"Clutching the fan to her chest, she\"\nlsmdc3061_SNOW_FLOWER-29914,4465,\"Her head hung low, someone nods morosely. Someone\",lifts her eyes to her laotong's calm face and twitches a tender smile.,\"leans close to someone, smiles fondly and shakes his eyes.\",arrives through a tall doorway with some sitting beside him.,\"hangs up and walks along the street, past the offscreen guests.\",\"stands in the doorway, his eyes staring anxiously of his tears.\",gold1-orig,pos,unl,unl,unl,unl,\"Her head hung low, someone nods morosely.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4454,Someone slides the folded fan out from her sleeve. She,places someone's hands around it.,hands him the keys.,\"throws it down as someone gets up, and stares at it.\",glances around and sees someone suddenly standing bent over the couch.,shakes the blond lady's hands.,gold1-orig,pos,pos,pos,pos,pos,Someone slides the folded fan out from her sleeve.,She\nlsmdc3061_SNOW_FLOWER-29914,4447,\"The light casts a pale glow on her delicate face. Now, someone\",opens a jewelry box drawer and takes out a paper fan.,drives another vehicle across the wooded property.,\"picks someone before her, carries her into the world's dessert.\",places a dress tucked in her neck.,holds a sketchbook in her hair.,gold0-orig,pos,unl,unl,unl,unl,The light casts a pale glow on her delicate face.,\"Now, someone\"\nlsmdc3061_SNOW_FLOWER-29914,4444,\"Someone notices a projection on a wall. Moving closer to the bright panel, she\",sees rows of chinese characters.,looks up as the bell in tail splits colorful boxes.,films two birds hiking wide rocks as they cross the concert.,charges bedside doors down to the unicorn with the knife.,sees a lighted piano stalk.,gold0-orig,pos,unl,unl,unl,unl,Someone notices a projection on a wall.,\"Moving closer to the bright panel, she\"\nlsmdc3061_SNOW_FLOWER-29914,4467,\"Now, a door closes someone into a room. Someone\",sinks to her knees.,sits drinking at the coffee maker.,carries a duffel bag with an expensive bouquet in print.,walks into the house.,stands alone in the doorway.,gold0-orig,pos,unl,unl,unl,unl,\"Now, a door closes someone into a room.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4453,A servant girl rushes over. Someone,slides the folded fan out from her sleeve.,grabs someone by the lapel.,smacks the stuffed clown carefully.,comes out of the front door and finds herself full of breakfast.,looks away and looks at her for a moment without stopping.,gold1-orig,pos,unl,unl,unl,pos,A servant girl rushes over.,Someone\nlsmdc3061_SNOW_FLOWER-29914,4448,\"Now, someone opens a jewelry box drawer and takes out a paper fan. Later, she\",sits at a table and writes on it.,\"crosses to the kitchen smaller panel where two savings check a black box with one soldier, clutching a broken heart.\",places a black canvas over its ornate marked run.,\"sits hunched under a very large, black carpet.\",finds someone eating lunch at a table in a city neighborhood.,gold1-orig,pos,unl,unl,unl,unl,\"Now, someone opens a jewelry box drawer and takes out a paper fan.\",\"Later, she\"\nlsmdc3061_SNOW_FLOWER-29914,4451,Her mother - in - law's eyes remain on her stitching. Someone,\"blinks, then averts her heartbroken gaze.\",drives down a hallway.,regains her composure and raised her stool on to her dorm.,\"steps into the room, then continues searching.\",checks the letter and is blocked by a police charge.,gold0-orig,pos,unl,unl,unl,unl,Her mother - in - law's eyes remain on her stitching.,Someone\nlsmdc3061_SNOW_FLOWER-29914,4459,\"Hurrying to a sedan chair, she takes someone's arm as the woman exits the litter. A porter\",\"tilts it forward, allowing her to step over the wooden rails in front.\",pushes the naked child into a booth.,has been taken on a rack before the seats of a campaign bus.,pulls someone out of the room.,takes a small key from the jug case.,gold0-orig,pos,unl,unl,pos,pos,\"Hurrying to a sedan chair, she takes someone's arm as the woman exits the litter.\",A porter\nlsmdc3061_SNOW_FLOWER-29914,4456,\"Clutching the fan to her chest, she cautiously glances around, then hurries off down the hall. Someone\",\"watches her disappear down a staircase, then turns her look.\",throws her head against a wall.,walks over to the envelope and finds it on a cardboard box.,crawls around the room.,\"turns to look ahead, watching her clothes as she creeps to a nearby doorway.\",gold1-orig,pos,unl,unl,unl,pos,\"Clutching the fan to her chest, she cautiously glances around, then hurries off down the hall.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4450,\"Spreading open the fan, someone reads her friend's message. Now, someone's mother - in - law\",sits at the head of the table of a group of women doing embroidery work.,\", stares nervously at the cake.\",\", the security soldiers run from the cargo bus.\",mows the park's garden.,eyes a check of the shrimp.,gold0-orig,pos,unl,unl,unl,unl,\"Spreading open the fan, someone reads her friend's message.\",\"Now, someone's mother - in - law\"\nlsmdc3061_SNOW_FLOWER-29914,4457,\"Someone watches her disappear down a staircase, then turns her look. Now, someone\",pushes open a gate's wooden doors.,\"and someone sit by someone, who's busy at his pendulum.\",finds herself alone on a crowded floor with a small.,sleeps in her room.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone watches her disappear down a staircase, then turns her look.\",\"Now, someone\"\nlsmdc3061_SNOW_FLOWER-29914,4458,\"Now, someone pushes open a gate's wooden doors. Hurrying to a sedan chair, she\",takes someone's arm as the woman exits the litter.,puts a orange bomb on to her desk.,\"drops out onto ticket window, squinting as they approach.\",pauses as he gazes across the street.,pulls out her pistol.,gold0-reannot,pos,unl,unl,unl,pos,\"Now, someone pushes open a gate's wooden doors.\",\"Hurrying to a sedan chair, she\"\nlsmdc3061_SNOW_FLOWER-29914,4469,\"With an anguished look, she peers through a crack, then slumps against the thick wooden door. In the present, as someone sits asleep with her head propped against a wall, a female hand\",reaches out and gently brushes her long bangs from her face then taps her shoulder.,stands in the middle of the room.,sinks as otters eat alongside the apartment.,passes a travel book.,hops around the corner.,gold0-reannot,pos,unl,unl,unl,unl,\"With an anguished look, she peers through a crack, then slumps against the thick wooden door.\",\"In the present, as someone sits asleep with her head propped against a wall, a female hand\"\nlsmdc3061_SNOW_FLOWER-29914,4445,\"Moving closer to the bright panel, she sees rows of Chinese characters. Someone\",gazes at the projection.,shakes a pair of magazines from the table.,makes their way across the pool.,waling up on a balcony overlooking a street and addresses the la.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Moving closer to the bright panel, she sees rows of Chinese characters.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4446,Someone gazes at the projection. The light,casts a pale glow on her delicate face.,has almost knocked someone out of someone's dementor.,\"crosses the room and catches sight of him, smiling.\",glows and flaps back.,shines to the side of the wheelhouse.,gold0-reannot,pos,unl,unl,unl,pos,Someone gazes at the projection.,The light\nlsmdc3061_SNOW_FLOWER-29914,4470,\"In the present, as someone sits asleep with her head propped against a wall, a female hand reaches out and gently brushes her long bangs from her face then taps her shoulder. Someone\",wakes and looks up at the visitor.,\"tapping her hat, someone turns and walks out of the room.\",\"enters from the bathroom, closing his eyes.\",clenches her lips ecstatically.,keels against the door's circular archway and drops to her knee.,gold0-reannot,pos,unl,unl,pos,pos,\"In the present, as someone sits asleep with her head propped against a wall, a female hand reaches out and gently brushes her long bangs from her face then taps her shoulder.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4461,Someone accompanies her through the open gate. Someone,\"makes her way across a bridge outside a temple, then turns to the young servant.\",hold him as someone sees him in the ballroom.,grips the collar of the raincoat and scurries to the phone.,grabs someone and someone.,jogs over as someone leads someone through a river.,gold1-reannot,pos,unl,pos,pos,pos,Someone accompanies her through the open gate.,Someone\nlsmdc3061_SNOW_FLOWER-29914,4471,Someone wakes and looks up at the visitor. Someone's aunt,sits beside her on a bench in the hallway.,turns around in his front disguise.,gives a disappointed look.,\"reaches out, then turns back to someone.\",is on the porch.,gold0-reannot,pos,unl,pos,pos,pos,Someone wakes and looks up at the visitor.,Someone's aunt\nlsmdc3061_SNOW_FLOWER-29914,4449,\"A baby rests beside her in a bassinet. Spreading open the fan, someone\",reads her friend's message.,gazes at the humanoid statue.,lets someone else have atop the baby.,peers defiantly at a stack of boxes in the kitchen.,stands in his old bubble.,gold1-reannot,pos,unl,unl,unl,unl,A baby rests beside her in a bassinet.,\"Spreading open the fan, someone\"\nlsmdc3061_SNOW_FLOWER-29914,4460,\"A porter tilts it forward, allowing her to step over the wooden rails in front. Someone\",accompanies her through the open gate.,frantically continues downstairs and finds a difficult rectangular stack of letters in a cordial display.,sets down a headphones.,makes his way with her groceries being pulled inside.,points at the rooftops then turns and drives the van through the coastal streets.,gold0-reannot,pos,unl,unl,unl,unl,\"A porter tilts it forward, allowing her to step over the wooden rails in front.\",Someone\nlsmdc3061_SNOW_FLOWER-29914,4464,\"Now, they each add a fresh stick of incense to a pot filled with the smoldering tokens. Later, they\",sit on a bench.,\"lead someone down a hallway, past the hospital walls, jagged concrete walls.\",\"walk back to the drummer, beyond the windscreen, lined on either side for a narrow clearing.\",eat a couple of ice cream panels.,drive on their wands at verdant caresses.,gold0-reannot,pos,unl,unl,unl,unl,\"Now, they each add a fresh stick of incense to a pot filled with the smoldering tokens.\",\"Later, they\"\nlsmdc3061_SNOW_FLOWER-29914,4468,\"Someone sinks to her knees. With an anguished look, she\",\"peers through a crack, then slumps against the thick wooden door.\",brings someone onto the swing.,\"wipes the edge of the chair to the floor, as someone awakes and pulls her up against the wall with his foot, embracing\",watches and backs away.,steps closer and faces her husband.,gold0-reannot,pos,unl,unl,pos,pos,Someone sinks to her knees.,\"With an anguished look, she\"\nlsmdc3061_SNOW_FLOWER-29914,4472,Someone's aunt sits beside her on a bench in the hallway. She,lets out a breath.,opens the car door for someone.,scoots through a partition.,sinks to her knees and places her hand on his hand.,answers someone's phone.,gold0-reannot,pos,unl,pos,pos,pos,Someone's aunt sits beside her on a bench in the hallway.,She\nanetv_HYAlS44yzdo,17467,A man is seen spinning around and throwing a shot put in the air. Another man,is followed shortly afterwards doing the same.,is then seen jumping on and slapping several people.,is shown throwing the object off into the distance and ends on the side.,is seen running down the lane in a hula hoop pose with his arms held high up to him.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen spinning around and throwing a shot put in the air.,Another man\nanetv_HYAlS44yzdo,4881,\"A man is outside in a field and throws a shot put into the crowd. After, several images are shown and a red arrow high lights parts of their leg that\",are needed for technique and balance.,are still suspended from the ground many times.,are shouting in cold air.,makes one room square right.,,gold0-orig,pos,unl,unl,unl,n/a,A man is outside in a field and throws a shot put into the crowd.,\"After, several images are shown and a red arrow high lights parts of their leg that\"\nanetv_HYAlS44yzdo,4882,\"After, several images are shown and a red arrow high lights parts of their leg that are needed for technique and balance. Many men\",are then shown throwing more shotput in the field as coaches and people begin to watch.,speak at a half arabic stage and say's citizens and citizens is being recorded.,\"is shown with several rope moving upward, with only one board and the other demonstrating rises to do flips.\",are shown viewed from the casino and ending by putting powdered ornaments over the cups.,\"struggling to keep the targets in bank goals, competing some of the action and shoots.\",gold1-orig,pos,unl,unl,unl,unl,\"After, several images are shown and a red arrow high lights parts of their leg that are needed for technique and balance.\",Many men\nanetv_HYAlS44yzdo,17468,Another man is followed shortly afterwards doing the same. Pictures,are then shown of the men shot putting and leads into more video.,of the items are shown and the balls are green.,as well as people watching the show.,are shown of various people playing around as well as two more crowd.,,gold0-orig,pos,unl,unl,pos,n/a,Another man is followed shortly afterwards doing the same.,Pictures\nanetv_Fr9F2xRLd0A,15915,Boys hang onto the ends of a kayak with another paddling. The kayak rider,turns the kayak around using his oar.,flies along the deck with it.,dances off as it runs into the water and eventually cuts to a white kite in a dark bay.,passes the second surfer to backstroke the fish boat.,is then walking on.,gold0-orig,pos,unl,unl,unl,unl,Boys hang onto the ends of a kayak with another paddling.,The kayak rider\nanetv_Fr9F2xRLd0A,15916,The kayak rider turns the kayak around using his oar. The kayak rider,paddles forward with the boys riding hanging on.,closes the raft on turns.,swims in at the murky times.,rides in the water out of the shark.,adjusts the water skiis.,gold0-orig,unl,unl,unl,unl,unl,The kayak rider turns the kayak around using his oar.,The kayak rider\nanetv_Fr9F2xRLd0A,2222,The people hang on to the ends and she paddles away. This,appears to be a rescue video tutorial.,motion is shown in slow motion.,\"water is right on water as the express begins to mix on, up up in the safety of the boat.\",\"house, little woman is walking towards mother's house in her bed.\",switch to a person sitting for the camera.,gold0-orig,pos,unl,unl,unl,pos,The people hang on to the ends and she paddles away.,This\nanetv_Fr9F2xRLd0A,15917,The kayak rider paddles forward with the boys riding hanging on. A kayak,is launched from the shore into the water.,slides hard in the yard beside a boy.,is full of rafters and an orange jet.,crashes the people rides the new set and begins to flip.,sits on the ocean doing the rapids and the dark sail.,gold0-orig,pos,unl,unl,unl,pos,The kayak rider paddles forward with the boys riding hanging on.,A kayak\nanetv_Fr9F2xRLd0A,15918,A kayak is launched from the shore into the water. Two boys,sit on top of the kayak on both ends with the rider in paddling.,are pulled from castles of the truck.,start hiking intertubes out of the water.,navigate on the water and one boat runs through the water.,run down the river waves from the sail.,gold1-reannot,pos,unl,unl,pos,pos,A kayak is launched from the shore into the water.,Two boys\nanetv_jmPV_y8YntQ,202,There are several people seated and standing that are watching the girls as they jump rope. The girls,take turns and jump rope in a relay manner.,jumps after they dive into the gymnasium and pull back in the various moves that engage in bungee jumping with balance experience.,go back and forth around martial arts to each other.,separate and talk to each other in the gym.,,gold0-orig,pos,unl,unl,pos,n/a,There are several people seated and standing that are watching the girls as they jump rope.,The girls\nanetv_jmPV_y8YntQ,201,They are ready to compete in competition. There,are several people seated and standing that are watching the girls as they jump rope.,'s a ball to a basketball.,ready his running in the same race.,throw their their swords.,,gold0-orig,pos,unl,unl,unl,n/a,They are ready to compete in competition.,There\nanetv_jmPV_y8YntQ,203,They switch between the contestants and move from fast skipping to slower and steadier skipping. They,take turns as they skip.,adjust them at the sinks.,begin arm wrestling in the rope.,are demonstrating on headsets.,,gold0-orig,pos,unl,unl,unl,n/a,They switch between the contestants and move from fast skipping to slower and steadier skipping.,They\nanetv_kdjLJTGj4H0,16182,Women are playing a game of curling. The audience,watching them cheers and applauds.,are gathered on a table.,is watching them walk behind the man.,does a sticker on the drawings.,is watching the man in the white shirt is talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,Women are playing a game of curling.,The audience\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96238,17692,\"Still kneeling beside someone, someone watches him go. Outside the chest room, someone\",walks cautiously down a flight of white dimly lit stone steps.,gazes up at the massive tv set of groggy - eyed television.,presses the shelf out to someone's bed where he answers his cell.,crosses to the door and climbs into his dorm.,is laying on a bed.,gold0-orig,pos,unl,unl,unl,pos,\"Still kneeling beside someone, someone watches him go.\",\"Outside the chest room, someone\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11068,They turn to see the people. Young someone,\"hangs back, then bends down to tie his shoelace.\",does not and then pushes the one down on the platform.,appears next to someone.,\"waves at someone, who is crouching at the center of the aisle.\",,gold0-orig,pos,unl,pos,pos,n/a,They turn to see the people.,Young someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11069,\"Young someone hangs back, then bends down to tie his shoelace. People\",\"exchange a look, before someone returns to their son.\",puts an arm around each other's shoulders.,exchange his nervous looks.,paddle through the flat foyer.,,gold0-orig,pos,unl,unl,unl,n/a,\"Young someone hangs back, then bends down to tie his shoelace.\",People\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11070,\"People exchange a look, before someone returns to their son. He\",\"crouches down, beside him.\",hangs off decorations bit curtained by a nearby ceiling.,cups jet passed over his face.,\"regards her uncertainly, then gazes at his wife.\",stops and turns away.,gold0-orig,pos,unl,unl,unl,unl,\"People exchange a look, before someone returns to their son.\",He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11061,\"The trolley stops, and the girl jumps off. The older boy\",\"runs, pushing the trolley at speed into a brick pillar between the platforms.\",carries the baby away and the kids run into the enclosure of the building.,drags the cart and opens the door to a restroom.,puts down her things.,,gold0-orig,pos,unl,unl,unl,n/a,\"The trolley stops, and the girl jumps off.\",The older boy\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11062,The first boy looks nervous. Someone,walks up to him and rests a hand on his shoulder.,brushes the plate and returns to the patio.,rises from the table with someone's daughters in his arm.,opens the crate and points the other way out.,is completely normal.,gold0-orig,pos,pos,pos,pos,pos,The first boy looks nervous.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11065,Little sister someone chases a paper bird flying up the platform. People,\"fuss over their daughter, someone.\",are pointed balls at her.,holds up a bouncy log gliding back and forth on the dirt.,sweep a wooded path and speed toward the escalator.,,gold0-orig,unl,unl,unl,unl,n/a,Little sister someone chases a paper bird flying up the platform.,People\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11066,\"People fuss over their daughter, someone. Someone\",\"has an arm round their small son, someone.\",points at someone and shrugs.,\"leaps around the stern, his point of view follows.\",walks out of the school.,\"over his bare shoulder, someone pulls his drink from a large flask and tilts it towards someone's head.\",gold0-reannot,pos,unl,unl,unl,unl,\"People fuss over their daughter, someone.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100502,11067,\"Someone has an arm round their small son, someone. They\",turn to see the people.,start against the gate.,get out of the car.,grab their arms.,sit across from each other.,gold0-reannot,pos,unl,pos,pos,pos,\"Someone has an arm round their small son, someone.\",They\nanetv_AvjExlAl18I,12530,A man is seen performing a dance routine on a stage while an orchestra plays behind him. A woman then,steps in and dances with the man while spinning his hat around and twirling on the stage.,plays a piano around speaking to a group of people and then leaves.,speaks to the camera and begins moving in on her back until the entire performance is made.,smiles when the woman claps up more and cheers.,pulls herself out of the water and performs a routine while spinning up and down.,gold0-orig,pos,unl,unl,unl,unl,A man is seen performing a dance routine on a stage while an orchestra plays behind him.,A woman then\nanetv_AvjExlAl18I,12531,A woman then steps in and dances with the man while spinning his hat around and twirling on the stage. The two,end by making a funny gesture and then walk off the stage to the side.,continue to dance around one another while holding batons interacting and the audience turns herself into the camera.,kiss the birdie all together.,continue moving their hands up to the audience and ends with one group walking to the slack line.,continue playing while pausing and waving to the crowd.,gold0-reannot,pos,unl,unl,unl,pos,A woman then steps in and dances with the man while spinning his hat around and twirling on the stage.,The two\nanetv_Ej_a4iCd45I,19126,Two men high five each other the men all trade sides. The ball,lands on the ground.,hops away to the other side of the path.,returns to his team.,lets all the ball wander.,,gold0-orig,pos,unl,unl,unl,n/a,Two men high five each other the men all trade sides.,The ball\nanetv_Ej_a4iCd45I,19127,The ball lands on the ground. A man,kicks the ball to the other side.,hits the ball with the pole.,spills dirt onto the sand.,is swinging a pinata with his hand as he swings his broom and hits in the air.,is seen shooting pinning outdoors with players while others watch on top.,gold0-orig,pos,unl,unl,unl,unl,The ball lands on the ground.,A man\nanetv_Ej_a4iCd45I,19128,A man kicks the ball to the other side. A man,jumps and spins in the air.,does a shot of the ice.,throws darts and throws a shot put.,is shooting out the first ball.,walks up to the camera.,gold0-orig,pos,unl,unl,unl,pos,A man kicks the ball to the other side.,A man\nanetv_Ej_a4iCd45I,19124,We see the title cards on blue. We,see men playing beach volleyball.,see the ending title screen.,then see two men at a paintball table.,see the man sitting looking at the camera.,,gold0-orig,pos,unl,unl,pos,n/a,We see the title cards on blue.,We\nanetv_Ej_a4iCd45I,19129,The man in gray daces as the other men jump around. The men,pose for a photo.,throw balls onto the table.,lay side by side on the floor.,continue to get out.,,gold1-orig,pos,unl,unl,unl,n/a,The man in gray daces as the other men jump around.,The men\nlsmdc3083_TITANIC2-39120,7296,\"In a dining room, someone sips tea with two other women. Someone\",nods at someone then strides off.,\"sips the soda coldly, then returns.\",\"walks toward someone, who holds up a contract.\",helps the drink over the hair of her neighbor.,presses his lips together and allows a brief smile.,gold1-orig,pos,unl,unl,unl,unl,\"In a dining room, someone sips tea with two other women.\",Someone\nlsmdc3083_TITANIC2-39120,7297,\"Someone nods at someone then strides off. Nearby, mustached someone\",sits with the captain.,speeds up and down.,listens and rolls his rifle and offers a hunting bow.,hands him his handkerchief.,marches out of the diner.,gold0-orig,pos,unl,unl,unl,pos,Someone nods at someone then strides off.,\"Nearby, mustached someone\"\nanetv_kOVQPyzXkUY,3619,The guy type walks across water on a rope that has a short distance from the dock to a boat edge while people watch. guy's also,bounce and do tricks on a pink type rope as well.,doing some roundhouse moves on a calm surf high above a large lake.,flops down the sail with a surf board onto his nearby gaudencio boards on the canvas.,play a cheer and hugs the conga boy by the arm.,standing above the mansion.,gold0-orig,pos,unl,unl,unl,unl,The guy type walks across water on a rope that has a short distance from the dock to a boat edge while people watch.,guy's also\nanetv_W04glwJ_IYI,2935,A woman grooms an angry poodle who is collared and tethered to a pole attached to a black grooming table. A brown poodle,is being combed by a woman in a yellow walled room on a black grooming table.,is running around a small set of frisbees in an unfinished slides.,pulls the slow chair closer to her.,is empty the top of a fence to groom the dog on the leash.,\"sits through a piece of walking paper, listening.\",gold0-orig,pos,unl,unl,unl,unl,A woman grooms an angry poodle who is collared and tethered to a pole attached to a black grooming table.,A brown poodle\nanetv_W04glwJ_IYI,2936,\"The woman holds out a pink plastic toy which the dog begins to bite, snap and grab at while the woman combs the poodles fur. The poodle\",continues to snap at the pink toy and also at the woman's hand and the comb.,puts a hat on and continues talking to the camera.,holds the man up and shows lines around stationary pieces.,takes the shovel off the ground.,continues to clip the hair and dries it off with a grey buffer.,gold0-orig,pos,unl,unl,unl,unl,\"The woman holds out a pink plastic toy which the dog begins to bite, snap and grab at while the woman combs the poodles fur.\",The poodle\nanetv_aVDyPmUgHU0,3820,He picks up a trimming saw and starts the engine. He,climbs the ladder and begins trimming the tree.,shows the stack of trash on the baby's bedside table.,starts tying the horse into his chamois.,holds up the camera.,,gold0-orig,pos,unl,unl,pos,n/a,He picks up a trimming saw and starts the engine.,He\nanetv_aVDyPmUgHU0,3821,He climbs the ladder and begins trimming the tree. He,looks back to the camera and smiles.,\"jumps on the side of the trimmers, then uses a right tool to trim the tied frames.\",puts an arm around the priest.,goes over the steps in a slow motion on the apartment.,goes down to the dark tree and puts it down on the grass.,gold1-orig,pos,unl,unl,unl,unl,He climbs the ladder and begins trimming the tree.,He\nanetv_aVDyPmUgHU0,3819,A man comes onto the screen to introduce a video about him trimming trees. He,picks up a trimming saw and starts the engine.,shows a small canoe as he continues to unties rays.,is then seen stepping over and climbing the bank of a wall.,is shown going down the hedges along with some important things.,holds up a large buffer and hands it to the man.,gold0-reannot,pos,unl,unl,unl,unl,A man comes onto the screen to introduce a video about him trimming trees.,He\nlsmdc3090_YOUNG_ADULT-43862,13010,As the sun rises over distant skyscrapers. Someone,drives across a bridge out of town.,is no longer in grid.,runs in front of an elephant train.,can watch the tire smash at the end of the other past like a fireball.,walks by the car's command window.,gold1-orig,pos,unl,unl,unl,unl,As the sun rises over distant skyscrapers.,Someone\nanetv_06r6DtoTtSQ,7307,He moves his hands to demonstrate how to move on the board and then uses his feet. He,continues to demonstrate the move while riding around and speaking to the camera.,\"moves quickly, stretching on time.\",then does a handstand and moves to the camera.,then walks around the room for a second time.,speaks to the camera before going in and out of the table.,gold1-orig,pos,unl,unl,unl,unl,He moves his hands to demonstrate how to move on the board and then uses his feet.,He\nanetv_06r6DtoTtSQ,7306,A man is shown speaking to the camera and moving his feet on a skateboard. He,moves his hands to demonstrate how to move on the board and then uses his feet.,continues climbing all on the board using objects as well as his arms.,continues riding around on the mower truck that leads into another man riding down the hill.,riding down the road into the bumper cars then pulling out a ramp and skating around another.,goes on the table in various places and ends by gearing up when more people edge into the water.,gold0-orig,pos,unl,unl,unl,unl,A man is shown speaking to the camera and moving his feet on a skateboard.,He\nanetv_06r6DtoTtSQ,12663,A man is seen speaking to the camera while holding a skateboard and leads into moving the board with his hands and then demonstrating moves. The man,continues moving around on the board and ends with him speaking to the camera.,continues to demonstrate how to properly use the machine while several shots of liquids and leaves being shown.,spins around all around the people while his to do various martial arts moves and laughing while speaking to the camera.,continues to do flips all along the frame and ends by speaking to the board.,continues pushing along the snow and ends by turning off the camera and continuing to ride.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera while holding a skateboard and leads into moving the board with his hands and then demonstrating moves.,The man\nanetv_W1krUTxgsMc,19530,White text on a black background discusses a disease called ra. A man,\"is shown seated in a living room, playing a guitar.\",talks to the camera while wearing a snowboard.,talks to a blonde woman with a long black beard.,is seen mopping the floor with large drums and cymbals.,appears and speaks to one of the women with a red briefcase and explaining break dancing.,gold0-orig,pos,unl,unl,unl,unl,White text on a black background discusses a disease called ra.,A man\nanetv_W1krUTxgsMc,18259,A man is then shown in a chair. He,is playing a guitar.,gets off the couch and back showing it.,measures the floor and shows how properly it is.,moves the electric cone into his neck and decides to raise the shoe.,,gold0-orig,pos,unl,unl,unl,n/a,A man is then shown in a chair.,He\nanetv_W1krUTxgsMc,18260,He is playing a guitar. He,finishes the song at the end.,continues dancing and gives cute silly tricks.,plays at the keyboard on the arms and begins playing the guitar.,holds a drum line in front of him.,starts playing the drums in their room.,gold0-orig,pos,unl,unl,unl,unl,He is playing a guitar.,He\nanetv_W1krUTxgsMc,18258,Several slides of text are shown. A man,is then shown in a chair.,holds out a man's hands and knees.,speaks to the camera while scraping his teeth.,is talking as he talks.,,gold1-reannot,pos,unl,unl,unl,n/a,Several slides of text are shown.,A man\nanetv_bFHpaULTwsE,19341,\"A tree and mulching materials are show, then a man prepares the area around the tree. Then the man\",put mulch around the tree and gives form with a rack.,starts to use mushrooms to spread orange shapes.,continues blowing the leaves around the pool.,rides at a brown saw with others as he talks.,shows little garland back and puts the slices on the tree.,gold0-orig,pos,unl,unl,unl,unl,\"A tree and mulching materials are show, then a man prepares the area around the tree.\",Then the man\nlsmdc3018_CINDERELLA_MAN-8115,12166,Someone closes the apartment door behind him. Light,shines down on the couple standing close together.,falls off the window.,\"a rifle, someone glances around, then moves to the window.\",light shines through the windows of a luxurious kitchen.,disappears into the darkness.,gold0-orig,pos,unl,unl,pos,pos,Someone closes the apartment door behind him.,Light\nlsmdc3018_CINDERELLA_MAN-8115,12164,Someone yanks off her apron and marches out. Someone,leans to his children.,dashes up a tunnel as someone exits office building.,drops the money under the table.,brings the two cruisers to the corner.,wraps his legs around someone.,gold1-reannot,pos,unl,unl,unl,unl,Someone yanks off her apron and marches out.,Someone\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85364,9639,\"Someone steps up close and glowers at someone. Catching his pipe between his teeth, someone\",holds up his lighter.,drags him towards the water.,presses a bend against someone's chest.,breaks free with him.,shoves someone towards the field where someone's trip jumped up.,gold1-orig,pos,unl,unl,unl,unl,Someone steps up close and glowers at someone.,\"Catching his pipe between his teeth, someone\"\nlsmdc1033_Sherlock_Holmes_A_Game_of_Shadows-85364,9640,\"Catching his pipe between his teeth, someone holds up his lighter. Someone\",smiles and takes it.,places a ring on his left finger and lifts the tip over his fist.,coughs around his chair and takes a deep breath.,carries him over the woods.,manages to maneuver the wooden beam.,gold0-orig,pos,unl,unl,unl,unl,\"Catching his pipe between his teeth, someone holds up his lighter.\",Someone\nanetv_I4wkBjpwAAU,13889,There is a crowd of army officers watching them cheering for them as they do the strength training exercise. The game,is over after one of the army officer's drags the other officer on the ground and wins the game.,\"starts to fall and when they finish each end, one third of them wins as the queen wins.\",continues while the individuals dance in the practice.,continue to file on their clothes and then flee all their students.,,gold0-orig,pos,unl,unl,unl,n/a,There is a crowd of army officers watching them cheering for them as they do the strength training exercise.,The game\nanetv_I4wkBjpwAAU,13888,Two army men in the their uniforms are tied together and pulling each other in opposite direction as part of their training. There,is a crowd of army officers watching them cheering for them as they do the strength training exercise.,are attached to mid handles.,are wanted when they are taken.,it is too hard.,,gold0-orig,pos,unl,unl,pos,n/a,Two army men in the their uniforms are tied together and pulling each other in opposite direction as part of their training.,There\nanetv_vmFfa1yv72k,11579,\"Several rooms and couples are shown and the ball is thrown in a cup. Once done, the camera pans out and you\",can see the couples are competing against each other in a room together.,can see skis in a room with un - flowing umbrella and a straw.,can finish while the watches.,show what's going on the pool.,see a girl on the bar back to doing rookie phrases along the prancing cycle cycle.,gold0-orig,pos,unl,unl,unl,unl,Several rooms and couples are shown and the ball is thrown in a cup.,\"Once done, the camera pans out and you\"\nanetv_vmFfa1yv72k,11577,Several peoples outfits are being panned from the bottom up. Then a group of cups are on the table and they,begin playing beer pong with a group of people.,begin to play a game of mock croquet.,walk into their small room lit axes.,are lifted.,are playing a game of croquette.,gold0-orig,pos,unl,unl,unl,unl,Several peoples outfits are being panned from the bottom up.,Then a group of cups are on the table and they\nanetv_vmFfa1yv72k,11578,Then a group of cups are on the table and they begin playing beer pong with a group of people. Several rooms and couples are shown and the ball,is thrown in a cup.,breaks far between times.,is simply back with more people and the women are shown their pictures.,is loaded with their blue equipment.,,gold0-orig,pos,unl,unl,pos,n/a,Then a group of cups are on the table and they begin playing beer pong with a group of people.,Several rooms and couples are shown and the ball\nlsmdc1029_Pride_And_Prejudice_Disk_One-83660,1242,\"Then, they set off walking again. Someone\",smiles contentedly to herself.,points to his back on the side.,\"moves quickly after, moving, and he stops him.\",meets his forehead against his wife's.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, they set off walking again.\",Someone\nlsmdc1029_Pride_And_Prejudice_Disk_One-83660,1241,\"They watch as someone jumps from the swing into the arms of an officer. Then, they\",set off walking again.,\"travel along bank waters and down the street, continuing to record fleet.\",\"turn to a stop, looking back in.\",swing their ankles as they prepare.,shake off their enemies and start fighting in the passageway.,gold1-orig,pos,unl,unl,unl,unl,They watch as someone jumps from the swing into the arms of an officer.,\"Then, they\"\nlsmdc1029_Pride_And_Prejudice_Disk_One-83660,1243,\"Someone smiles contentedly to herself. Now, someone\",rushes into someone's room.,touches the bride door.,wears a scarlet gold dress.,starts to head between his street.,sits at a table at a stove.,gold0-orig,pos,unl,unl,unl,unl,Someone smiles contentedly to herself.,\"Now, someone\"\nanetv_jkay2K3RA1M,13074,Then we see a girl painting her nails with clear fluid. She,is resting her hand on top of a dvd case.,puts her finger into a bucket then walks through the ocean.,catches the thread product.,is using paint and paint and cuts and paints the softly painted surface.,takes one of the snow off the side.,gold1-orig,pos,unl,unl,unl,unl,Then we see a girl painting her nails with clear fluid.,She\nanetv_jkay2K3RA1M,3120,A stuffed animal is sitting in a chair. A person,has their hand laying on a book.,is welding something in the tree.,plays the end of a violin.,is standing in front of a lawnmower drawing in the grass holding a black on green grass.,is riding a bike on the floor.,gold0-orig,pos,unl,unl,unl,unl,A stuffed animal is sitting in a chair.,A person\nanetv_jkay2K3RA1M,13073,A stuffed toy is held up for the camera. Then we,see a girl painting her nails with clear fluid.,see the finished boobs and black and white plates under matte paper.,see a black team punch and one man wins from the ground.,see the little lady go out of frame.,\"see two women standing on the wall, talking, laying on the divan bed.\",gold1-orig,pos,unl,unl,unl,pos,A stuffed toy is held up for the camera.,Then we\nanetv_jkay2K3RA1M,3121,A person has their hand laying on a book. Another person,is painting their fingernails.,picks up a cue cube that is completely wrapped around it.,sits on a camel and a person talks.,\"puts a white disc over all of his back, and starts to write in black ink.\",introduces themselves with a rag in front of them.,gold0-reannot,pos,unl,unl,unl,unl,A person has their hand laying on a book.,Another person\nlsmdc0027_The_Big_Lebowski-63042,867,\"He swings the crowbar into the windshield, which shatters. He\",takes out the driver's window.,crashes through the roof on the other side.,considers a worker on their bikes.,\"drops into the air, and catches it in his hands.\",knocks the car to the side entrance.,gold0-orig,pos,unl,unl,unl,pos,\"He swings the crowbar into the windshield, which shatters.\",He\nlsmdc0027_The_Big_Lebowski-63042,868,He takes out the driver's window. Lights,are going on in houses down the street.,pull the trunk as the bird blows off.,turns on the light.,\"the rental car again, someone looks out under the window.\",and someone saunters out.,gold0-orig,pos,unl,unl,unl,unl,He takes out the driver's window.,Lights\nlsmdc0027_The_Big_Lebowski-63042,866,\"He pops someone's trunk, flings in the briefcase and takes out a tire iron. He\",\"swings the crowbar into the windshield, which shatters.\",is forced to take him off his sand shimmer by getting on his feet.,\"unpacks tv alongside three trainers, who all both carry the books with the bat and tossed about across the way.\",attaches the car wheel and opens the door to a second car door.,\"lets himself out onto the porch of the house, pulling a broom and creeps down the stairs.\",gold1-orig,pos,unl,unl,unl,unl,\"He pops someone's trunk, flings in the briefcase and takes out a tire iron.\",He\nlsmdc0027_The_Big_Lebowski-63042,865,Someone is striding down the lawn with his attache case like an enraged encyclopedia salesman. He,\"pops someone's trunk, flings in the briefcase and takes out a tire iron.\",\"'s in the bathroom on the coast, not knowing what's happening.\",stares ahead as he looks out at the taped bay window.,brushes his hair on a dresser.,\"looks out and watches, wide - eyed.\",gold0-orig,pos,unl,unl,unl,pos,Someone is striding down the lawn with his attache case like an enraged encyclopedia salesman.,He\nanetv_--0edUL8zmA,15338,They continue playing several rounds of dodge ball. The player,aims directly at one of his opponents and hits him on his leg.,kicks the ball to a net.,in red kicked the ball and jumped in the end.,\"scores, several other kids continue but she around on the court.\",hits the ball to the net again.,gold0-orig,pos,unl,unl,unl,unl,They continue playing several rounds of dodge ball.,The player\nanetv_--0edUL8zmA,15332,Four men are playing dodge ball in an indoor court. They,start running towards the red balls after the coach blows the whistle.,hold the ball and put it into a goal.,are trying to hit the ball back and forth over the balls.,are making soccer balls against each other in front of a net.,,gold0-orig,pos,unl,unl,unl,n/a,Four men are playing dodge ball in an indoor court.,They\nanetv_--0edUL8zmA,15334,\"One of the players hits the ball on his opponent. The opponent strikes back at the other player, but he\",manages to dodge the ball.,loses his in place.,gets hit by a ball.,kicks the ball back into the net.,,gold1-orig,pos,unl,pos,pos,n/a,One of the players hits the ball on his opponent.,\"The opponent strikes back at the other player, but he\"\nanetv_--0edUL8zmA,15337,The player hits the ball hard on his opponent's leg. They,continue playing several rounds of dodge ball.,tries to balance it with one grunt as it hit against the ropes to stop them from sliding.,turn to a point of kick.,hit the ball back and forth against the wall behind all explosions.,try to prevent him from touching the ground.,gold0-orig,pos,unl,unl,unl,unl,The player hits the ball hard on his opponent's leg.,They\nanetv_--0edUL8zmA,15339,The player aims directly at one of his opponents and hits him on his leg. The game,ends after the coach blows the whistle.,continues as a bearded man leans over her and aims the cord.,ends with two giant individuals wiped down the distance.,continues until the level wins.,is replayed several times by the goalie.,gold1-orig,pos,unl,unl,unl,unl,The player aims directly at one of his opponents and hits him on his leg.,The game\nanetv_--0edUL8zmA,15335,\"The opponent strikes back at the other player, but he manages to dodge the ball. Next, the player\",hits another ball directly at his opponent standing opposite him.,hits the ball over and over.,raises up the boxer while the audience cheers and cheers for him.,\"hits the ball with his stick, proceeds to strike it in the right field and misses.\",,gold0-orig,pos,unl,unl,pos,n/a,\"The opponent strikes back at the other player, but he manages to dodge the ball.\",\"Next, the player\"\nanetv_--0edUL8zmA,15336,\"Next, the player hits another ball directly at his opponent standing opposite him. The player\",hits the ball hard on his opponent's leg.,lifts the heavy ball in his hand and stands towards it.,throws the ball into the net.,puts a smaller ball in the net several times and kicks it into the goal.,pins the ball out and stares down at it.,gold0-orig,pos,unl,unl,unl,pos,\"Next, the player hits another ball directly at his opponent standing opposite him.\",The player\nanetv_--0edUL8zmA,15333,They start running towards the red balls after the coach blows the whistle. One of the players,hits the ball on his opponent.,walks some tricks over to the polo board.,juggles the ball and starts to run.,is holding the man.,bounds up and hits the ball onto the field.,gold0-reannot,pos,unl,unl,unl,pos,They start running towards the red balls after the coach blows the whistle.,One of the players\nanetv_Rai5nKbB6wU,4244,We see a man pumping his arms. After the race men,hug and shake hands.,\"start spinning the sumo, the wrestler and a man run to a railing.\",\"hug the chest, the man gives a high five and lifts the weight over his head.\",throw his legs in both air.,lift their hands as he move their arms or body.,gold0-orig,pos,unl,unl,unl,unl,We see a man pumping his arms.,After the race men\nanetv_Rai5nKbB6wU,4241,We see a man on a skateboard crash hard. We,see written score boards.,see a corvette splitting shingles.,see a police cars and reverse.,\"see people outside the truck, quick flashes.\",see the walking starts.,gold1-orig,pos,unl,unl,unl,unl,We see a man on a skateboard crash hard.,We\nanetv_Rai5nKbB6wU,6490,People are standing on a boat in the water. People,are walking in a town.,are then shown playing beer pong.,are sitting on canoes in a raft.,are in the air swimming.,are walking in ice on a beach.,gold1-orig,unl,unl,unl,unl,unl,People are standing on a boat in the water.,People\nanetv_Rai5nKbB6wU,4245,After the race men hug and shake hands. We,see the closing title screens.,approaches the girls with friends and who.,play the drums on the skipper bearing the bridge up in a supply room through a bible.,eye and apply the molds on the ground with its names on the screen.,the man wearing a red shirt wins and the man dealer teams hit the ball and the heads celebrates before it hits the street.,gold0-orig,pos,unl,unl,unl,unl,After the race men hug and shake hands.,We\nanetv_Rai5nKbB6wU,4239,People stretch and warm up. We,see people skateboarding fast cut with people and city scenes.,frowns in the cottage.,are being served with a bus.,overtakes the building!,,gold0-orig,pos,unl,unl,unl,n/a,People stretch and warm up.,We\nanetv_Rai5nKbB6wU,4240,We see people skateboarding fast cut with people and city scenes. We,see a man on a skateboard crash hard.,see a man in workshop working on video tile.,see the names of the people on the banner.,then see shots of men going down a city streets.,,gold0-orig,pos,unl,unl,pos,n/a,We see people skateboarding fast cut with people and city scenes.,We\nanetv_Rai5nKbB6wU,6491,People are walking in a town. People,are long boarding down a hill in front of people watching.,are on the car holding laughs.,are seated in a park walking a bus.,are seen swimming under water.,in the background group of the race is running with another team.,gold0-reannot,pos,unl,unl,unl,pos,People are walking in a town.,People\nanetv_dI6TWaB6tls,8989,\"A woman in a ballroom outfit approaches a man in a ballroom dance, when the two meet they begin to dance across the floor using elaborate footwork during the dance. A phone number inviting people to call in and vote for them\",appears on the screen along with the network logo.,\"wins, giving the audience's reaction.\",are shown for the symphony.,'name is shown on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,\"A woman in a ballroom outfit approaches a man in a ballroom dance, when the two meet they begin to dance across the floor using elaborate footwork during the dance.\",A phone number inviting people to call in and vote for them\nanetv_Ptw9hFDV4ow,16928,A coach is training a boy and a girl to do kickboxing. There,\"is a woman standing in a purple shirt, filming the coach teach the kids.\",gets off the horse.,boys practice is in a playground.,is talking and kneeling on the floor watching.,,gold0-orig,pos,unl,unl,unl,n/a,A coach is training a boy and a girl to do kickboxing.,There\nanetv_Ptw9hFDV4ow,16929,\"There is a woman standing in a purple shirt, filming the coach teach the kids. Both the girl and the boy\",are taking turns in returning the punches and kicks to the coach.,are playing a splash at video table on the beach.,then dance to fix ping's materials.,are throwing her a wheelie.,swing hands in the air.,gold0-orig,pos,unl,unl,unl,unl,\"There is a woman standing in a purple shirt, filming the coach teach the kids.\",Both the girl and the boy\nanetv_Ptw9hFDV4ow,16930,Both the girl and the boy are taking turns in returning the punches and kicks to the coach. The coach,is encouraging the students to constantly punch and return the kicks.,helps the girls team raise his arms and scores.,is won and fights for the practice.,stops for a hand encourage run to other players to the team and then cheers.,shows one concrete stick in his mates.,gold0-orig,pos,unl,unl,unl,unl,Both the girl and the boy are taking turns in returning the punches and kicks to the coach.,The coach\nanetv__n9eNF1WaFU,4799,The dog sits on a table and gets brushed. The dog,gets into a bath tub.,picks up a large catch of orange powder and tosses it on top of the horse.,grabs her then goes to the camera to listen.,sits at the table together.,turns and tool all around the area cutting the paper and cutting it.,gold1-orig,pos,unl,unl,unl,unl,The dog sits on a table and gets brushed.,The dog\nanetv__n9eNF1WaFU,14946,The first woman washes the dog. The dog and the first woman,walk through a room.,begin the next time.,are shown watching the dog.,talk again on the video.,,gold0-orig,pos,unl,pos,pos,n/a,The first woman washes the dog.,The dog and the first woman\nanetv__n9eNF1WaFU,14943,\"The dog walks into a door where a woman waits. The woman, along with another woman,\",\"pets the dog, who is now on a table.\",takes a bottle of beer from himself.,clears another door with a dog and grabs his dog.,has to change the wig.,leads the couple through the manila gate.,gold0-orig,pos,unl,unl,unl,unl,The dog walks into a door where a woman waits.,\"The woman, along with another woman,\"\nanetv__n9eNF1WaFU,14945,The first woman combs the dog's hair. The dog and the first woman,walk through a room and into the bathroom.,are seen drying their hair in sections.,are scrubbing the fur of the dog.,are seen combing and styling the black dog while the woman looks from her to a mirror.,,gold0-orig,pos,unl,unl,unl,n/a,The first woman combs the dog's hair.,The dog and the first woman\nanetv__n9eNF1WaFU,4801,A woman washes the dog in the bath tub. She,dries the dog with a towel and blow drier.,gnn sub aims the mop at a kitchen sink.,continues to put lotion on her dog.,stops the soap and scrubs his shoes thoroughly.,,gold0-orig,pos,unl,unl,unl,n/a,A woman washes the dog in the bath tub.,She\nanetv__n9eNF1WaFU,14947,The first woman towels the dog. The first woman,blow dries the dog.,talks then pets the dog and the dog.,returns the mop to the dogs.,removes something like freebies from the bucket.,,gold1-orig,pos,unl,unl,unl,n/a,The first woman towels the dog.,The first woman\nanetv__n9eNF1WaFU,4802,She dries the dog with a towel and blow drier. She,shaves and clips the hair of the dog.,picks up a large brush and talks about it.,clutches hands and hair as she uses the paper to move her hands.,continues drying her hair after ironing which hair in her leg.,adjusts the mower and looks to the camera when it passes.,gold0-orig,pos,unl,unl,unl,unl,She dries the dog with a towel and blow drier.,She\nanetv__n9eNF1WaFU,4800,The dog gets into a bath tub. A woman,washes the dog in the bath tub.,towels her hair off with a salad towel.,shows me how to brush your teeth.,has an oil under her feet.,stands outside on the toilet.,gold0-orig,pos,unl,unl,unl,unl,The dog gets into a bath tub.,A woman\nanetv__n9eNF1WaFU,4798,A large dog walks into a building. The dog,sits on a table and gets brushed.,is knocked down as the dog shrieks.,watches the boy trying to track down the same moment.,spots it's foot and dog catches it.,,gold0-orig,pos,unl,unl,unl,n/a,A large dog walks into a building.,The dog\nanetv__n9eNF1WaFU,14950,The first woman grooms the dog. The dog,walks towards the second woman.,runs and talks about the dogs.,purses the cat paws on their fingers.,shakes the lemons with the fork and begins jumping the vegetables on the pan.,,gold0-orig,pos,unl,unl,unl,n/a,The first woman grooms the dog.,The dog\nanetv__n9eNF1WaFU,14944,\"The woman, along with another woman, pets the dog, who is now on a table. The first woman\",combs the dog's hair.,speaks while making notes and moving her hands at an seated pace.,gets the bottle after the dog laughs and the woman brushes her teeth.,gets a final haircut from the dog.,\"turns onto her legs nervously and clasps her hands together, and repeats this way and comfort.\",gold0-orig,pos,unl,unl,unl,unl,\"The woman, along with another woman, pets the dog, who is now on a table.\",The first woman\nanetv__n9eNF1WaFU,14942,A dog walks past the camera. The dog,walks into a door where a woman waits.,keeps looking at the mask and gearing up on the windowsill.,walks back and talks to the camera.,is screwing in the neighbor's fur.,holds up a razor and gently rubs the dog's legs.,gold0-orig,pos,unl,unl,unl,unl,A dog walks past the camera.,The dog\nanetv__n9eNF1WaFU,4803,She shaves and clips the hair of the dog. The dog,walks out of the building.,is getting the haircut very off.,follows her hair around and shows the finished product.,laugh and laughs at the camera.,,gold1-reannot,unl,unl,unl,unl,n/a,She shaves and clips the hair of the dog.,The dog\nanetv__n9eNF1WaFU,14949,The camera shows a winter exterior town scene. A woman,styles another woman's hair.,\"walked down some stairs, roller blades, and do to scramble backwards.\",runs the mirror through dark hair.,comes to dump dishes.,holds a roller brush as they skate around the tracks.,gold0-reannot,pos,unl,unl,unl,unl,The camera shows a winter exterior town scene.,A woman\nanetv_QLACTCzs0R0,15827,The other side of the rope is shown. One team,\"is pulled over a red line on the ground, ending the game.\",tries to keep his balance and balance so he jumps to his side.,\"nods, and the rope eventually comes off as the young man retrieves a rope and the knife is nearly limping.\",does an dance practice as the crowd watches.,gets down and walks over on stage to throw the javelin.,gold0-orig,pos,unl,unl,unl,unl,The other side of the rope is shown.,One team\nanetv_QLACTCzs0R0,15825,A large group of Navy soldiers are shown on a dock playing a game of tug of war. On one side of the rope,is a team pulling as hard as they can while being cheered on.,leads to the small crow.,is a trophy that is crowned on the side of the man and the man from the left skates and pauses successfully.,seems to rise over the wharf and fail to sing.,,gold0-orig,pos,unl,unl,unl,n/a,A large group of Navy soldiers are shown on a dock playing a game of tug of war.,On one side of the rope\nanetv_QLACTCzs0R0,15828,\"One team is pulled over a red line on the ground, ending the game. The men\",stand up to relax.,run towards another hut.,throw the ball back to the field.,are also extremely given to them as they all take their turns.,clap up and hug the opponent again.,gold0-orig,pos,unl,unl,unl,unl,\"One team is pulled over a red line on the ground, ending the game.\",The men\nanetv_QLACTCzs0R0,15826,On one side of the rope is a team pulling as hard as they can while being cheered on. Another Navy soldier,is shown taking pictures of the game.,\"climbs a stone pump, then sticks a twinkle in his right pocket.\",follows the taller man who runs along the road towards her and then steps on the slow wave.,stands on to the fireman corner sticks and drives off.,rides in the water going after them.,gold0-reannot,pos,unl,unl,unl,unl,On one side of the rope is a team pulling as hard as they can while being cheered on.,Another Navy soldier\nlsmdc3088_WHATS_YOUR_NUMBER-42191,15298,She goes to the door. Her eyes,widen at the sight of a man holding a gift box.,flash round as she moves her to open front door.,\"walk to the window, and looks down at it, about rocks her eyes.\",\"illuminates the soft red sun, over the heels, at the party guests.\",peer down at the girder as he looks at her chest.,gold0-orig,pos,unl,unl,unl,pos,She goes to the door.,Her eyes\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1801,14093,Someone lunges forward and bites the tip of someone's nose off. He,\"approaches her with a bloody face, his teeth clenched in fury and pain, and strikes someone.\",puts his finger on someone and takes it.,\"is hurled back, aiming the mace down into the back of someone's head.\",flings it off the tree and descends from his perch behind the lifeboat.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lunges forward and bites the tip of someone's nose off.,He\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1801,14095,The troll watches from the trees as she falls to the ground. The Sheriff,kicks her in the stomach.,gazes at a man holding the baby's doll face to show her mouth.,flies off and lays her on the ground.,speeds outside with a woman in its mouth.,draws away on someone's shoulders and blows.,gold1-reannot,pos,unl,unl,unl,unl,The troll watches from the trees as she falls to the ground.,The Sheriff\nlsmdc3041_JUST_GO_WITH_IT-18647,10548,\"She restlessly wipes her nose, and flips on her other side. In the bathroom, someone\",sleeps in the cramped tub.,reaches in the shower.,sees the vacant bathroom.,\"glances at her slack - jawed, her brow furrowed.\",sprays herself with soap.,gold0-orig,pos,unl,unl,pos,pos,\"She restlessly wipes her nose, and flips on her other side.\",\"In the bathroom, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10549,\"In the bathroom, someone sleeps in the cramped tub. Later, someone\",\"lies sound asleep, resting her head on someone's shoulder.\",sits in a cluttered room with bookshelves.,leaves the galley and smiling lovingly in the lobby.,walks into his room drinking and sets the timer on his computer.,sleeps soundly in her bed with her fingers over her mouth.,gold1-orig,pos,unl,unl,unl,pos,\"In the bathroom, someone sleeps in the cramped tub.\",\"Later, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10550,\"Later, someone lies sound asleep, resting her head on someone's shoulder. He\",\"remains awake, staring blankly across the room.\",\"troop out her through the window, keeping one eye upward.\",drops to her knees and lays a hand to his mouth.,punches someone's back.,crouches down and gives his daughter a hug.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone lies sound asleep, resting her head on someone's shoulder.\",He\nlsmdc3041_JUST_GO_WITH_IT-18647,10557,\"Surrounded by tropical plants and lit candles, he makes a call on a portable phone. Someone\",answers a bedside phone.,gives a faint smile.,stands up and goes down the stairs.,sits at a kitchen island in his windowed kitchen.,,gold1-orig,pos,pos,pos,pos,n/a,\"Surrounded by tropical plants and lit candles, he makes a call on a portable phone.\",Someone\nlsmdc3041_JUST_GO_WITH_IT-18647,10553,\"Half asleep, someone ambles into the bathroom, where someone still sleeps with his hand in the toilet. The bed - headed boy\",\"drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees.\",\"sits on his bed with a knife in each hand, a flat iron draped over his arm.\",watches as someone rushes off the tent and out of the closet and into the deserted suite.,is just asleep on his bed.,,gold0-orig,pos,unl,unl,pos,n/a,\"Half asleep, someone ambles into the bathroom, where someone still sleeps with his hand in the toilet.\",The bed - headed boy\nlsmdc3041_JUST_GO_WITH_IT-18647,10554,\"The bed - headed boy drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees. He\",grabs a towel and wraps his arm.,takes his arm forward and find someone unconscious under the bed.,washes over the floor on the side of the bed and snowboard along between the twisted hills.,\"slumps off a sofa, fully asleep in the comfortable bed.\",somersaults out of the gym eyes and together.,gold1-orig,pos,unl,unl,unl,unl,\"The bed - headed boy drops his shorts, then sits on the bowl hunched forward with his arms dangling between his knees.\",He\nlsmdc3041_JUST_GO_WITH_IT-18647,10546,\"In the next room, someone tries on short white dresses while chatting on the phone. Elsewhere, someone\",lies awake in bed.,follows someone out of a new bedroom with a hole.,stares at her who stands next to the bed as someone dances at her side.,\"stands in a hallway, listens and moves toward the private hallway.\",strolls with someone as she strolls out of the lobby.,gold1-orig,pos,unl,unl,pos,pos,\"In the next room, someone tries on short white dresses while chatting on the phone.\",\"Elsewhere, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10544,\"Later, we drift over a bed, to find someone lying alone. Staring thoughtfully, he\",fondles his wedding ring between his fingertips.,props his lips together as someone listens.,reaches down his bag and checks the charger for an hour.,eyes the dart from the platform.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, we drift over a bed, to find someone lying alone.\",\"Staring thoughtfully, he\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10551,\"He remains awake, staring blankly across the room. Someone\",lies awake in bed.,\"telecast, there's an explosion below the rushing currents.\",rolls her eyes from the toilet.,moves toward the distractedly baby on his bed.,,gold0-orig,pos,unl,unl,unl,n/a,\"He remains awake, staring blankly across the room.\",Someone\nlsmdc3041_JUST_GO_WITH_IT-18647,10547,\"Elsewhere, someone lies awake in bed. She\",\"restlessly wipes her nose, and flips on her other side.\",leans in the middle of the coach as the bird opens its wings.,\"nears a bookcase, which wafting.\",lifted him by his arms.,lies on the couch.,gold0-orig,pos,unl,unl,unl,unl,\"Elsewhere, someone lies awake in bed.\",She\nlsmdc3041_JUST_GO_WITH_IT-18647,10556,\"Later, someone steps outside. Surrounded by tropical plants and lit candles, he\",makes a call on a portable phone.,lays someone with the heart.,waits with a colored cleaner.,\"ambles with a warm, brown shawl.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Later, someone steps outside.\",\"Surrounded by tropical plants and lit candles, he\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10555,He grabs a towel and wraps his arm. He,storms out past the boy.,shows a plastic bag.,sits at a table wrapping a newspaper.,rubs it all back together.,,gold1-orig,pos,unl,unl,unl,n/a,He grabs a towel and wraps his arm.,He\nlsmdc3041_JUST_GO_WITH_IT-18647,10543,\"She shares a gaze with someone as the elevator doors close. Later, we\",\"drift over a bed, to find someone lying alone.\",\"see someone pacing by on the lounge, both laughing.\",travel in class as someone sleeps in the street outside.,walk through a new bureau's offices.,gaze out a window as snowy sits.,gold1-reannot,pos,unl,unl,unl,unl,She shares a gaze with someone as the elevator doors close.,\"Later, we\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10552,\"The brown - haired girl takes her mother's hand and rests her head on someone's pillow. Half asleep, someone\",\"ambles into the bathroom, where someone still sleeps with his hand in the toilet.\",sweeps an arm around someone as it shines through the windows.,stares forlornly at his aircraft.,\"notices richard parker on a canvas, staring at snowy writing.\",runs toward the kitchen.,gold0-reannot,unl,unl,unl,unl,unl,The brown - haired girl takes her mother's hand and rests her head on someone's pillow.,\"Half asleep, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18647,10545,\"Staring thoughtfully, he fondles his wedding ring between his fingertips. In the next room, someone\",tries on short white dresses while chatting on the phone.,wraps up an umbrella beneath the bottle and tosses it open on a reception desk.,stares at the screen as the pixie flicks his hand towards someone.,takes a sheet of paper from his pocket and sits off.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Staring thoughtfully, he fondles his wedding ring between his fingertips.\",\"In the next room, someone\"\nlsmdc3018_CINDERELLA_MAN-7987,5047,A note around the money lists the amount: $323. Someone,drops some coins on the form and slides it all to the clerk.,opens the door and follows someone's face.,curls a medal between her hands.,kisses the corner of her crotch under the scanner.,peers over a book.,gold0-orig,pos,unl,unl,unl,pos,A note around the money lists the amount: $323.,Someone\nlsmdc3018_CINDERELLA_MAN-7987,5042,The bare chested champion faces someone. Someone,shuts the door in his face.,lifts his head with another and looks him straight.,makes his way over to the soldier 'house.,gives grim nervous looks.,lifts someone over her shoulders and embraces her.,gold1-orig,pos,unl,pos,pos,pos,The bare chested champion faces someone.,Someone\nlsmdc3018_CINDERELLA_MAN-7987,5046,\"He gives them a shy wave. Later, at the chestnut haired clerk's window, he\",places a form on the counter.,stares on a monitor.,crosses to a row - open door in their office.,steps around a grand sink with a brush and a left hook.,stands among the directors.,gold0-orig,pos,unl,unl,unl,unl,He gives them a shy wave.,\"Later, at the chestnut haired clerk's window, he\"\nlsmdc3018_CINDERELLA_MAN-7987,5052,Someone stands hunched over the table. Shadows,mask someone's troubled face.,hold the grown man's head against his hand as he stands beside it.,45 bolts.,\"taking cover, someone's grieving brother sits on a leather couch playing a keyboard.\",is the street very much about him.,gold0-orig,pos,unl,unl,unl,unl,Someone stands hunched over the table.,Shadows\nlsmdc3018_CINDERELLA_MAN-7987,5049,He enters with a bouquet of roses. He,holds the flowers out over the kitchen table.,makes his way through the hotel and down the hall.,spins a stack of garlic on manuscript.,gazes at lord chickens.,,gold1-orig,pos,unl,unl,unl,n/a,He enters with a bouquet of roses.,He\nlsmdc3018_CINDERELLA_MAN-7987,5044,\"Now at the relief office, someone stands in one of the many long lines. A few people\",\"notice him and crowd close, whispering.\",walk around the airport.,raise their binoculars again at size up their face.,\"come in while weave, then an old man.\",walk across the bridge.,gold0-orig,pos,unl,unl,unl,unl,\"Now at the relief office, someone stands in one of the many long lines.\",A few people\nlsmdc3018_CINDERELLA_MAN-7987,5051,Someone reads the attached note and smiles. She,runs her hand over her husband's.,glares at him and glares at the sky.,has her ear to a closed office door and knocks on an ornate - topped door.,\"takes someone's text, then gives it to someone.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone reads the attached note and smiles.,She\nlsmdc3018_CINDERELLA_MAN-7987,5043,\"Someone shuts the door in his face. Now at the relief office, someone\",stands in one of the many long lines.,\"appears on the bed, briefly onscreen.\",holds on tightly as he moves on.,faces someone as he leans in pew with a much makeup artist.,leads someone through a doorway towards the lights of the building.,gold0-orig,pos,unl,unl,unl,unl,Someone shuts the door in his face.,\"Now at the relief office, someone\"\nlsmdc3018_CINDERELLA_MAN-7987,5048,\"Now at home, someone peers through the front door's window at someone. He\",enters with a bouquet of roses.,bangs on his radio.,arrives at a photo of someone.,bends over to shoulder height.,,gold1-orig,pos,unl,unl,unl,n/a,\"Now at home, someone peers through the front door's window at someone.\",He\nlsmdc3018_CINDERELLA_MAN-7987,5050,He holds the flowers out over the kitchen table. Someone,reads the attached note and smiles.,wakes up and gazes at the shimmering weight.,\"enormous dinner with someone, someone, stands on the edge, watching him and chews in a cream mask.\",\"is standing in an office office, listening.\",,gold0-orig,pos,unl,unl,unl,n/a,He holds the flowers out over the kitchen table.,Someone\nanetv_9cxGx2BsKkM,6864,Several other clips from a robin hood movie show arrows being shot. It,continues until the end of the clip.,boys demonstrate technique while throwing a javelin at a target.,'s walk through a car to an alley.,appear followed lot of men who are celebrating.,,gold0-orig,pos,unl,unl,unl,n/a,Several other clips from a robin hood movie show arrows being shot.,It\nlsmdc0008_Fargo-49770,11873,\"Someone stands in wide shot, hands on hips, looking down at a telephone. After a motionless beat he\",picks up the phone and punches in a number.,\"smiles and glances down as someone struggles to finish someone in the act, all alone - like, embarrassed.\",drumming on drums.,drops between his knees and presses a button on his muddy bar.,pauses before reaching toward the piano case.,gold0-orig,pos,unl,unl,unl,unl,\"Someone stands in wide shot, hands on hips, looking down at a telephone.\",After a motionless beat he\nlsmdc0008_Fargo-49770,11874,\"As we hear the rumble of an approaching car, the continuing tilt and boom down brings us down the woodsman's body to a pedestal. A sweep of headlights\",illuminates a sign on the pedestal.,appears as he swims through the crowd.,are scattered on the street to another angle.,\"meet, close by by the slight light of his left.\",\"is from a day, a nightstand screen ahead of us and the full - american headlight.\",gold0-orig,pos,unl,unl,unl,unl,\"As we hear the rumble of an approaching car, the continuing tilt and boom down brings us down the woodsman's body to a pedestal.\",A sweep of headlights\nlsmdc0008_Fargo-49770,11875,From the back seat we hear whimpering. Someone,smokes and gazes out the window.,does a back flip off the pavement.,\"backs away from the open doorway on the other side of the open walkway, leaning on a gun.\",zooms up from the wall and flies.,is thrown across.,gold0-orig,pos,unl,unl,unl,unl,From the back seat we hear whimpering.,Someone\nlsmdc0008_Fargo-49770,11879,\"The trooper walks up the shoulder, one hand resting lightly on top of his holster, his breath steaming in the cold night air. Someone\",opens his window as the trooper draws up.,starts to take off a cigarette.,looks on from the pen irritably as someone runs up.,stands to a mic hovering above him.,rises from his seat and treads around with someone.,gold0-orig,pos,unl,unl,unl,unl,\"The trooper walks up the shoulder, one hand resting lightly on top of his holster, his breath steaming in the cold night air.\",Someone\nlsmdc0008_Fargo-49770,11878,Fifty yards behind a state trooper has turned on his gumballs. Someone,looks up at the rear - view mirror.,swings himself upside down and disappears through the front door.,flies out of the window.,is pulling a rounded pistol from a plastic sheet.,,gold0-orig,pos,unl,pos,pos,n/a,Fifty yards behind a state trooper has turned on his gumballs.,Someone\nlsmdc0008_Fargo-49770,11876,\"Someone stares at him, then turns back to the window. At a loud whoop someone\",starts and looks back out the rear window.,moves from the passenger seat.,smiles to himself and writes.,makes his way across another street holding telephone.,crosses the injured people.,gold1-orig,pos,unl,unl,unl,unl,\"Someone stares at him, then turns back to the window.\",At a loud whoop someone\nlsmdc0008_Fargo-49770,11880,Someone opens his window as the trooper draws up. Someone,smokes and gazes calmly out his window.,takes a reel across a hanger and sticks it back into the vault.,walks into new philadelphia gym.,can not see the side window.,drops to his knees.,gold1-reannot,pos,unl,unl,pos,pos,Someone opens his window as the trooper draws up.,Someone\nanetv_z8lxaUC1Shk,1886,A man walks into a room playing his bagpipes. He,stops playing his bagpipes.,is seated down at a table.,performs several capoeira moves with his arms up.,puts a couple of drums in front of him.,finishes playing and ends by picking off the drums and playing.,gold0-orig,pos,unl,unl,pos,pos,A man walks into a room playing his bagpipes.,He\nanetv_yrf93aLQXBE,2650,An old video of people surfing is shown. People catch waves and the fat guy,does a pretty good job.,drifts up with soap.,walking back and forth waving.,gives a thumbs up and heads.,makes his peace buy.,gold0-orig,pos,unl,unl,unl,unl,An old video of people surfing is shown.,People catch waves and the fat guy\nanetv_Y5VEl3e9Hbo,4469,\"Two boys are polishing shoes with brushes. Then, one boy\",takes a shoe up to play.,grabs a wooden razor.,picks up a yellow shirt and put it in a black shoe.,goes off to work.,,gold1-orig,pos,unl,unl,unl,n/a,Two boys are polishing shoes with brushes.,\"Then, one boy\"\nanetv_Y5VEl3e9Hbo,4471,\"A little boy put his leg in a big shoe and polish with a brush. Then, the other boy\",put his hand in the shoe to polish it.,brush the painted left forearm and some other toe tips started to hit a flint.,put a shoe on a bucket and put them on top.,form a tattoo and holds a towel in the boy's hand.,vacuums the shoes as he works again.,gold0-orig,pos,unl,unl,unl,unl,A little boy put his leg in a big shoe and polish with a brush.,\"Then, the other boy\"\nanetv_Y5VEl3e9Hbo,4470,\"Then, one boy takes a shoe up to play. A little boy\",put his leg in a big shoe and polish with a brush.,shows how to start a skate park down a sidewalk with a chubby kite while others watch them.,lifts off of balance cue.,takes a white shoe and cuts it with an advertisement.,push him away and kick him to the ground.,gold1-reannot,pos,unl,unl,unl,pos,\"Then, one boy takes a shoe up to play.\",A little boy\nanetv_fN2DiOswmOA,2749,Rachel Collin's trip to Chile. There,are several people standing under a canopy at a food market.,youtube video shows the someone being sliced.,stands under the bright lights.,reception have been converted with bug lawns and pools.,is a jersey with the same scenes.,gold0-orig,pos,unl,unl,unl,unl,Rachel Collin's trip to Chile.,There\nanetv_fN2DiOswmOA,2757,\"The finished product is shown on screen, followed by a group of people sitting together and enjoying the salad. The end credits\",are displayed on the screen.,\"appear on the screen, and we hear surfers on the street and pouring water in a blue bowl.\",show off with a bags in the end.,appears in the screen.,are shown on the screen as well.,gold0-orig,pos,unl,unl,pos,pos,\"The finished product is shown on screen, followed by a group of people sitting together and enjoying the salad.\",The end credits\nanetv_fN2DiOswmOA,2756,Then the chef places the ingredients in a salad bowl. The finished product,\"is shown on screen, followed by a group of people sitting together and enjoying the salad.\",is laid on and then times sliced.,is shown and cooled.,\"is displayed, then with adding fresh eggs.\",is shown on a plate and a pair of hands.,gold0-orig,pos,unl,unl,pos,pos,Then the chef places the ingredients in a salad bowl.,The finished product\nanetv_fN2DiOswmOA,2750,There are several people standing under a canopy at a food market. Two customers,make a purchase and give money to the seller and give the camera a thumbs up.,\"walk into the living room with te, some of them on their knees together.\",are seen talking about how to make their castles.,are passed by an elderly person who sits in a blue taxi talking.,are seated at their door.,gold0-orig,pos,unl,unl,unl,pos,There are several people standing under a canopy at a food market.,Two customers\nanetv_fN2DiOswmOA,2754,A woman eats the cut pieces of hulte. The chef,chops some cilantro on the kitchen counter.,is talking in front of the chef cut man.,points at the bearded man's pepper.,puts a potato and a piece of bread.,sets the chicken to witness the end.,gold0-orig,pos,unl,unl,unl,unl,A woman eats the cut pieces of hulte.,The chef\nanetv_fN2DiOswmOA,2747,The screen shows the title of preparing a Chilean Hulte salad dish. A person,is mixing salad ingredients in a large bowl.,puts butter into glasses onto a counter and wraps the mixed ingredients to the bread.,sticks a selfie stick in the kitchen and ingredients in a bowl.,is demonstrating how to use a large sandwich with a stick to spread food.,,gold0-orig,pos,pos,pos,pos,n/a,The screen shows the title of preparing a Chilean Hulte salad dish.,A person\nanetv_fN2DiOswmOA,2752,The chef is showing hulte placed on a kitchen counter. The chef,is slicing the hulte in circular bite size pieces.,leads the sandwich into a strainer at various ingredient such as a recipe and place meat.,demonstrates how to make a tea big iron sandwich by lettuce and ham.,\"has a piece of sharpener in the kitchen, showing how to sharpen it and toasting.\",,gold0-orig,pos,unl,unl,pos,n/a,The chef is showing hulte placed on a kitchen counter.,The chef\nanetv_fN2DiOswmOA,2755,The chef chops some cilantro on the kitchen counter. Then the chef,places the ingredients in a salad bowl.,puts mayonnaise on a plate in a bowl and shows items on how to cut a surface.,adds paste on the spaghetti and scrubs the remaining firewood.,with the bread to make the sandwich.,adds some instructions on how to block the salad.,gold0-orig,pos,unl,unl,pos,pos,The chef chops some cilantro on the kitchen counter.,Then the chef\nanetv_fN2DiOswmOA,2753,The chef is slicing the hulte in circular bite size pieces. A woman,eats the cut pieces of hulte.,put the meat slices on the bread excitedly.,uses a sautes to cut a tomato.,measures the egg with saran wrap on the plate.,,gold0-orig,pos,unl,unl,unl,n/a,The chef is slicing the hulte in circular bite size pieces.,A woman\nanetv_88Mt7VfUQBU,16518,A man is kneeling down on a blue mat. Another man,kneels down on the ground next to him.,is seen speaking to himself and leads into across a boat hitting the object and leads into the group performing aerobic karate exercise.,tries to perform the jump before landing on the mat.,is lifting weights over his head.,is jumping up and down.,gold1-orig,pos,unl,pos,pos,pos,A man is kneeling down on a blue mat.,Another man\nanetv_88Mt7VfUQBU,16519,Another man kneels down on the ground next to him. The man,lifts up one end of a weight and lifts it over his head.,positions himself on a gravel bar using his foot stuck on the top of an bomb.,continues running down the wall and begins jumping over the building and up and down the stairs.,cuts his arm in a big bottle and how trimming it and shows it to slice it.,jumps and jumps back down again in slow motion.,gold0-orig,pos,unl,unl,unl,pos,Another man kneels down on the ground next to him.,The man\nlsmdc3069_THE_BOUNTY_HUNTER-4525,3567,The bartender answers the phone. Someone,jots on a coaster.,takes the key from the pocket of his vodka before repeatedly stepping forward.,reluctantly scribbles the file into her pocket.,holds the bottle to her mouth and licks her thumb and thumb.,,gold0-orig,pos,unl,unl,unl,n/a,The bartender answers the phone.,Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4525,3568,\"In a stall, someone hangs up. She\",claps her feet together.,ties a string of her hard hair.,leans over richard parker.,turns to see the approaching branch bite someone.,looks to her father through a harsh glass of water.,gold0-orig,pos,unl,unl,unl,unl,\"In a stall, someone hangs up.\",She\nlsmdc3069_THE_BOUNTY_HUNTER-4525,3569,\"She claps her feet together. As she bursts out of the stall, someone\",exits a different one.,comes over to look at someone.,lays on the side in bed and observes mr black.,glances back at someone striding.,\"glances up away at someone, who wears her tight turban as she walks into the room.\",gold0-reannot,pos,unl,unl,unl,unl,She claps her feet together.,\"As she bursts out of the stall, someone\"\nanetv_hGziyfXmotc,9556,\"The violinist press the strings with four fingers and move the bow. Then, the man stops a little bit and then continues playing, the young man\",stops playing and talks.,\"picks up a beer can, but slow it down.\",picks up the receiver and bows the scene.,makes his head pierced along the center of the ground.,appears and goes playing the violin away from the group.,gold0-orig,pos,unl,unl,unl,pos,The violinist press the strings with four fingers and move the bow.,\"Then, the man stops a little bit and then continues playing, the young man\"\nanetv_hGziyfXmotc,9555,\"A young man holds a violin, then he plays violin. The violinist\",press the strings with four fingers and move the bow.,does n't even play the violin.,lights the match in his hand and lights up a pass.,\"put a harmonica in his neck, and play the piano.\",plays around a plays of tam - tams in his hands.,gold0-orig,pos,unl,unl,unl,unl,\"A young man holds a violin, then he plays violin.\",The violinist\nanetv_hGziyfXmotc,3661,A close up of a violin is seen with a person's hands moving all around. The man,begins playing the violin while moving his hands up and down.,pushes his feet on the guitar and continues to move back and fourth.,finishes the machinery and ends by dropping the chair onto the stage.,sits up and begins playing the instrument while the camera captures his movements.,,gold0-orig,pos,unl,unl,pos,n/a,A close up of a violin is seen with a person's hands moving all around.,The man\nanetv_OsrRpGbIpKA,9181,A man stands on a ladder holding wall paper on a wall. the man,takes one hand and scraps the wall paper to the wall.,lays down a pile of photos and adds paper to each other.,assembles a piece of wood and a sander.,continues to paint the wall and the man blows it out into the paint.,puts lightly on the wall and uses black tape to cover it.,gold0-orig,pos,unl,unl,unl,unl,A man stands on a ladder holding wall paper on a wall.,the man\nanetv_OsrRpGbIpKA,4250,A man is hanging wall paper onto a wall in front of him. He,smooths out the wall paper with a scraper.,\"walks into the roof, holding the long string with the stick.\",has blood on his mouth.,holds a pair of nail tools which he pierces in the section of the car.,picks up a different bar and continues to rub the entire roof.,gold0-orig,pos,unl,unl,unl,unl,A man is hanging wall paper onto a wall in front of him.,He\nanetv_OsrRpGbIpKA,9183,The man then applies more wall paper until the wall is covered. The man then,cuts out excess wall paper out of the corners and edges.,grabs a break wallpaper and wipes back up his nose.,\"shows off the vacuum cleaner and a piece of cloth to a closet, then uses it to trim it.\",removes the top of the pumpkin.,,gold0-orig,pos,unl,unl,unl,n/a,The man then applies more wall paper until the wall is covered.,The man then\nanetv_OsrRpGbIpKA,9182,The man takes one hand and scraps the wall paper to the wall. the man then,applies more wall paper until the wall is covered.,applies the paper paper over and off into the wall tape.,vacuums a carpet blanket using the sheet of wallpaper.,polishes the wall hard.,shows that purple polish when the woman puts metal on the table.,gold0-orig,pos,unl,unl,unl,unl,The man takes one hand and scraps the wall paper to the wall.,the man then\nanetv_45AIj4-_RBw,19101,A young girl is seated in front of a piano. She,talks to the camera for a while.,starts to play a violin by a violin.,begins playing an accordion.,continues to do sit ups while another watches on the side.,picks up a flute and lights it.,gold1-orig,pos,unl,unl,unl,unl,A young girl is seated in front of a piano.,She\nanetv_45AIj4-_RBw,14110,The camera zooms in on her face as she continues to play. When she is done with the song she,smiles at the camera.,speaks softly with the camera.,speaks to the camera and smiles in the camera.,turns and walks across the group.,,gold1-orig,pos,pos,pos,pos,n/a,The camera zooms in on her face as she continues to play.,When she is done with the song she\nanetv_45AIj4-_RBw,14108,A little girl introduces a video where she will play the piano and sing a song. She,begins to play the song on the piano and sing along as she plays.,plays and takes the box to find a guitar.,finishes and claps for her.,is shown in chinese news.,finishes the song and smiles the company.,gold0-orig,pos,unl,unl,unl,pos,A little girl introduces a video where she will play the piano and sing a song.,She\nanetv_45AIj4-_RBw,19102,She talks to the camera for a while. She then,\"plays the piano, giving a performance.\",puts balaclava on a tree.,shows back the irons the braid.,proceeds to toss the rods in the air.,shows off the paint roller.,gold0-orig,pos,unl,unl,unl,pos,She talks to the camera for a while.,She then\nanetv_45AIj4-_RBw,14109,She begins to play the song on the piano and sing along as she plays. The camera,zooms in on her face as she continues to play.,pans all around her and moving her tongue up and down.,moves in on the sound of the music next to the musician.,moves around someone and smiles as she plays a guitar.,pans back and forth to show the lady dancing moves.,gold0-orig,pos,unl,unl,unl,unl,She begins to play the song on the piano and sing along as she plays.,The camera\nlsmdc3064_SPARKLE_2012-4095,12287,\"Now in the daytime, someone hosts a dinner. Someone\",sits at the head of the table.,starts sorting clothes into a box.,removes her coat from her motel.,takes a glass out of his case.,steps up in front of the young woman.,gold1-orig,pos,pos,pos,pos,pos,\"Now in the daytime, someone hosts a dinner.\",Someone\nlsmdc3064_SPARKLE_2012-4095,12286,\"With his chin jutting forward, someone turns back. Someone\",bats a hanging lamp and storms off.,searches a book on a flannel shirt.,pulls someone away from the departing position.,\"faces the statue, then turns to watch on the side.\",,gold1-reannot,pos,unl,unl,pos,n/a,\"With his chin jutting forward, someone turns back.\",Someone\nlsmdc3019_COLOMBIANA-8838,3578,\"The bodyguards file into the mansion. As someone supervises the men, someone\",rolls out from the under the van just before it pulls away.,scans an between lockers.,looks at someone and a smile.,\"scrutinizes the egg uneasily, and takes a bite.\",munches someone a pamphlet.,gold0-orig,pos,unl,unl,unl,unl,The bodyguards file into the mansion.,\"As someone supervises the men, someone\"\nlsmdc3019_COLOMBIANA-8838,3602,He notices a flower resting three panels away on the pool's glass. His nervous eyes,scan the area as he walks across the pool.,\"scan the walls, blonde paintings upwards.\",stare at the diner as he swallows.,fades to someone as he gazes at him through more tearful eyes.,acknowledge the choir and sees someone announcing the wedding.,gold0-orig,pos,unl,pos,pos,pos,He notices a flower resting three panels away on the pool's glass.,His nervous eyes\nlsmdc3019_COLOMBIANA-8838,3597,\"Another guard lies dead beside him. Staring cautiously, someone\",grabs a gun resting in one of men's hands.,reaches forward and drinks from his son's shoulder.,eyes someone and someone.,gets up and sniffs the air.,looks across at someone and someone.,gold0-orig,pos,unl,pos,pos,pos,Another guard lies dead beside him.,\"Staring cautiously, someone\"\nlsmdc3019_COLOMBIANA-8838,3572,\"Lounging with two women, the someone laughs. That night, four women in their underwear\",accompany him to a bedroom.,slide their squares on their shoulders.,comes out of an ivy - gray road and cross the sides of the large road.,helps maneuver a hospital table.,,gold0-orig,pos,unl,unl,unl,n/a,\"Lounging with two women, the someone laughs.\",\"That night, four women in their underwear\"\nlsmdc3019_COLOMBIANA-8838,3599,His bare legs tremble slightly as he moves down a dark corridor past another dead bodyguard. He,\"creeps down a flight of stairs, then presses his back to a wall as he reaches the bottom.\",\"stands, puts his glasses on, and gestures to a row of desks.\",takes a deep breath as he rises to his knees.,follows a message as he comes over to her.,,gold0-orig,pos,unl,unl,unl,n/a,His bare legs tremble slightly as he moves down a dark corridor past another dead bodyguard.,He\nlsmdc3019_COLOMBIANA-8838,3592,\"As she aims her weapon, a blonde snuggles up to the portly man in her sleep. Someone\",bolts upright then looks down at his bare chest.,waves incense particular someone with the phone on a table and finds a woman staring at them.,\"follows from behind, raising his cell and heads off.\",puts a curtain over his lips.,descends the stairs and steps outside.,gold0-orig,pos,unl,unl,unl,pos,\"As she aims her weapon, a blonde snuggles up to the portly man in her sleep.\",Someone\nlsmdc3019_COLOMBIANA-8838,3569,Someone touches a wind chime made from tire rims as she enters the garage. She,kisses someone's cheek.,\"lies down on the table, looking down.\",looks someone in the eye.,takes off her jacket.,drives the car into a quiet parking lot.,gold1-orig,unl,unl,unl,unl,unl,Someone touches a wind chime made from tire rims as she enters the garage.,She\nlsmdc3019_COLOMBIANA-8838,3604,\"Stopping in front of the cataleya orchid, he picks it up and squints as he examines it. He\",\"lifts the flower to his nose, closes his eyes, and takes a sniff.\",reaches for scissor and injects.,rests his finger gently on his forehead then chews his fingers.,takes an eight - fold - sized stone from his own pocket as she hands it to him.,\"opens his eyes, studies his wrists, then shakes his head and leans over it, looking at it all.\",gold0-orig,pos,unl,unl,unl,unl,\"Stopping in front of the cataleya orchid, he picks it up and squints as he examines it.\",He\nlsmdc3019_COLOMBIANA-8838,3575,\"Someone winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed. He\",frames his crotch with his hands then hurries over and belly flops onto the bed.,settles into his pants.,is immediately searching for someone.,\"is back against a wall, peering out into the figure.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed.\",He\nlsmdc3019_COLOMBIANA-8838,3614,\"His blood billows in the water. Walking onto the glass, someone\",picks up the orchid and drops it into the pool.,directs it from his eyes and hurls him onto the cauldron.,moves the gun into someone's neck.,quickly turns someone's head.,throws up a rag on the edge of a balcony.,gold0-orig,pos,unl,unl,unl,unl,His blood billows in the water.,\"Walking onto the glass, someone\"\nlsmdc3019_COLOMBIANA-8838,3595,\"With his brow creased worriedly, he tries to rub it off. In the hall, he\",finds a bodyguard lying on the floor with a pool of blood by his head.,finds someone's texting.,pauses and gazes intently at the iceberg.,wears a t - shirt.,,gold0-orig,pos,unl,unl,unl,n/a,\"With his brow creased worriedly, he tries to rub it off.\",\"In the hall, he\"\nlsmdc3019_COLOMBIANA-8838,3565,\"A message appears, Access denied.. He\",sits back in his chair.,weaves the flaming destroyer.,takes the bottle away and places the light out on a table.,writes documents on an envelope.,,gold0-orig,pos,unl,unl,unl,n/a,\"A message appears, Access denied..\",He\nlsmdc3019_COLOMBIANA-8838,3589,\"She glances around as she screws a silencer onto its barrel. With her fingers curled around the gun's handle, she\",hurries into the mansion.,sits on a waiting swing.,rests the brim aside.,does it a few inches.,,gold1-orig,pos,unl,unl,unl,n/a,She glances around as she screws a silencer onto its barrel.,\"With her fingers curled around the gun's handle, she\"\nlsmdc3019_COLOMBIANA-8838,3609,He fires one gun then the other but finds them both empty. She shoots him in his leg and he,sinks to one knee.,wrestles him up onto the floor.,pulls him onto a dark street.,pounds the chest button.,leaps out into the air.,gold0-orig,pos,unl,unl,unl,pos,He fires one gun then the other but finds them both empty.,She shoots him in his leg and he\nlsmdc3019_COLOMBIANA-8838,3579,\"As someone supervises the men, someone rolls out from the under the van just before it pulls away. An oblivious bodyguard\",stands at a window holding a handgun.,puts them on the stove.,creeps down towards him.,comes out and beams.,runs up the side walkway.,gold1-orig,pos,unl,unl,unl,pos,\"As someone supervises the men, someone rolls out from the under the van just before it pulls away.\",An oblivious bodyguard\nlsmdc3019_COLOMBIANA-8838,3612,He glances at the sharks below him. Someone shoots him in the shoulder and he,tumbles into the uncovered gap in the panel.,smashes down the street like an approaching grizzly.,tries to free him.,looks for his hand.,steps onto a knee - deck bench.,gold0-orig,pos,unl,unl,unl,unl,He glances at the sharks below him.,Someone shoots him in the shoulder and he\nlsmdc3019_COLOMBIANA-8838,3594,\"He finds the words thief written in black lipstick above a drawing of the cataleya orchid. With his brow creased worriedly, he\",tries to rub it off.,takes an envelope and sorts through his hundred - ejects drawer.,clutches his cheek on his sleeve.,glances over his shoulder.,,gold0-orig,pos,unl,unl,pos,n/a,He finds the words thief written in black lipstick above a drawing of the cataleya orchid.,\"With his brow creased worriedly, he\"\nlsmdc3019_COLOMBIANA-8838,3583,\"As it swims away, a hand appears under the glass. Wearing a black short sleeved leotard and a utility belt, someone\",pulls herself along the panels.,wears a wet black veil.,lifts a lever down and sets it on on the patio bench.,staggers dominating a cartwheel.,steps up to him.,gold0-orig,pos,unl,unl,unl,pos,\"As it swims away, a hand appears under the glass.\",\"Wearing a black short sleeved leotard and a utility belt, someone\"\nlsmdc3019_COLOMBIANA-8838,3606,\"Opening his eyes, he smirks as he lifts his face from the flower. Someone\",rises from a chair in the portico behind him.,\"stares at someone, then shakes his head fondly.\",lowers his head and lowers his voice before continuing.,\"follows to stare after someone, then looks down.\",\"stands motionless, his hand stroking her knee.\",gold1-orig,pos,pos,pos,pos,pos,\"Opening his eyes, he smirks as he lifts his face from the flower.\",Someone\nlsmdc3019_COLOMBIANA-8838,3605,\"He lifts the flower to his nose, closes his eyes, and takes a sniff. Opening his eyes, he\",smirks as he lifts his face from the flower.,stares into a mirror.,\"finds himself in a trance, blood on his back as he runs through a busy city.\",finds his wife sitting on a wooden bench with the manuscript.,regards someone with a knowing smirk.,gold0-orig,pos,unl,unl,pos,pos,\"He lifts the flower to his nose, closes his eyes, and takes a sniff.\",\"Opening his eyes, he\"\nlsmdc3019_COLOMBIANA-8838,3568,\"Stepping out from the cage, she closes the door and gives them a firm look. The mastiffs\",rush to their bowls.,\"lifts him off a fissure, someone rides straight back.\",\"descends to the bottom of the raft, grabs the rope, sways along the wooden bench.\",barrels as someone struggles to reach it.,take the strides off.,gold0-orig,pos,unl,unl,unl,unl,\"Stepping out from the cage, she closes the door and gives them a firm look.\",The mastiffs\nlsmdc3019_COLOMBIANA-8838,3563,Someone gives a weary shrug then leans forward and rests his elbows on his legs. Our focus,shifts to his niece as she leans forward as well.,\"lifts from his robes, revealing.\",shifts and someone glares.,lingers on the frozen screen as his cursor returns to the subscribe page.,,gold1-orig,pos,unl,unl,pos,n/a,Someone gives a weary shrug then leans forward and rests his elbows on his legs.,Our focus\nlsmdc3019_COLOMBIANA-8838,3577,Several bodyguards get out and someone approaches them. The bodyguards,file into the mansion.,stop someone and starts firing.,quickly force the thugs to his left.,start up the run.,move away before them.,gold0-orig,pos,unl,unl,unl,unl,Several bodyguards get out and someone approaches them.,The bodyguards\nlsmdc3019_COLOMBIANA-8838,3566,Now someone approaches two caged mastiffs. She,enters their fenced in area.,rolls down a staircase.,sings into a circle and turns off the tap.,notices someone's syringe in the kitchen.,casually sips from a can.,gold1-orig,pos,unl,unl,pos,pos,Now someone approaches two caged mastiffs.,She\nlsmdc3019_COLOMBIANA-8838,3598,\"Staring cautiously, someone grabs a gun resting in one of men's hands. His bare legs\",tremble slightly as he moves down a dark corridor past another dead bodyguard.,slowly spread across his davenport.,give her a solemn stare.,\"dangle sullenly from his armpit, its face scrubs deeply from his face.\",very tall and warm and thick.,gold0-orig,pos,unl,unl,unl,pos,\"Staring cautiously, someone grabs a gun resting in one of men's hands.\",His bare legs\nlsmdc3019_COLOMBIANA-8838,3610,She shoots him in his leg and he sinks to one knee. A shot to his other leg,sends him down on all fours.,is shown on the wall.,\"hits the horizontal ledge, pulling his sword with his teeth.\",shoots straight in the crotch.,,gold0-orig,pos,unl,unl,unl,n/a,She shoots him in his leg and he sinks to one knee.,A shot to his other leg\nlsmdc3019_COLOMBIANA-8838,3596,\"In the hall, he finds a bodyguard lying on the floor with a pool of blood by his head. Another guard\",lies dead beside him.,walks close to him.,smashes the spear into someone's throat.,walking in with his arms extended.,enters in a code.,gold0-orig,pos,unl,unl,unl,unl,\"In the hall, he finds a bodyguard lying on the floor with a pool of blood by his head.\",Another guard\nlsmdc3019_COLOMBIANA-8838,3564,An image of the orchid appears. The agent,holds up the drawing and finds that it matches perfectly.,scans the legos uneasily.,\"lays, knocking over the glass warning replays he talks much about the chemical in the man - to - law.\",uses the watch gown and paces between the rohirrim overgrown enclosure.,\"slams the wooden automaton against the wall, knocking her backward while the sorting hang on his shoulders.\",gold0-orig,pos,unl,unl,unl,unl,An image of the orchid appears.,The agent\nlsmdc3019_COLOMBIANA-8838,3571,\"Taking out a stack of money, she fans through it. Sharks\",swim in the water beneath her.,\"she drops her purse, she hurries over, resting her arms on her shoulders as they watch the woman.\",\"in black eyelashes, someone returns her attention to her son, her face bruised.\",spin around the table.,mashes the petal of the coin in the doll's head.,gold0-orig,pos,unl,unl,unl,unl,\"Taking out a stack of money, she fans through it.\",Sharks\nlsmdc3019_COLOMBIANA-8838,3584,\"Wearing a black short sleeved leotard and a utility belt, someone pulls herself along the panels. Two sharks\",swim nearby paying little attention to the graceful intruder.,have spread across the surrounding ground.,\"strut through the narrow windows, and lie down on them.\",are shown in red central pools as people gather work - a flashback comes out into a hall.,,gold0-orig,pos,unl,unl,pos,n/a,\"Wearing a black short sleeved leotard and a utility belt, someone pulls herself along the panels.\",Two sharks\nlsmdc3019_COLOMBIANA-8838,3590,\"With her fingers curled around the gun's handle, she hurries into the mansion. In his bedroom, the portly scam artist\",sleeps amid his scantily clad companions.,grinds a poster on the table and looks around nervously.,shines a faint light tap on his ear.,sunken belly moves the offscreen hookah.,watches in disbelief as rapid flames beats down at him.,gold0-orig,pos,unl,unl,unl,unl,\"With her fingers curled around the gun's handle, she hurries into the mansion.\",\"In his bedroom, the portly scam artist\"\nlsmdc3019_COLOMBIANA-8838,3591,\"In his bedroom, the portly scam artist sleeps amid his scantily clad companions. As she aims her weapon, a blonde\",snuggles up to the portly man in her sleep.,flapping the police draw latex gloves behind her.,appears in the doorway holding a pulled up strip and leads the rope in.,passes out to the driver's van and watches as it flies.,,gold0-orig,pos,unl,unl,unl,n/a,\"In his bedroom, the portly scam artist sleeps amid his scantily clad companions.\",\"As she aims her weapon, a blonde\"\nlsmdc3019_COLOMBIANA-8838,3607,Someone rises from a chair in the portico behind him. Someone,shakes his head as he turns to face her.,gets a drink from a nearby wall.,stands next to a servant.,walks up and sees someone reaching the church.,,gold0-orig,pos,unl,unl,unl,n/a,Someone rises from a chair in the portico behind him.,Someone\nlsmdc3019_COLOMBIANA-8838,3588,\"Pushing herself out of the pool, she draws a gun at her hip. She\",glances around as she screws a silencer onto its barrel.,sizes up her drink.,\"hits the wall hard, smashing through the cab window.\",tries to cover the contact.,view prays as he moves past someone.,gold0-orig,pos,unl,unl,unl,unl,\"Pushing herself out of the pool, she draws a gun at her hip.\",She\nlsmdc3019_COLOMBIANA-8838,3573,\"That night, four women in their underwear accompany him to a bedroom. He\",turns to a bodyguard.,steps back and glances at him.,carries a suitcase the other way.,raises his thumb sharply and reaches the top.,shoots himself a distraught look.,gold1-orig,pos,unl,unl,unl,unl,\"That night, four women in their underwear accompany him to a bedroom.\",He\nlsmdc3019_COLOMBIANA-8838,3603,\"His nervous eyes scan the area as he walks across the pool. Stopping in front of the cataleya orchid, he\",picks it up and squints as he examines it.,watches the film glide along through until it pauses in front of a marketing graphic.,sees the film pod opens up close.,walks toward a row of rock gazing out from the bank below.,,gold0-orig,pos,unl,unl,pos,n/a,His nervous eyes scan the area as he walks across the pool.,\"Stopping in front of the cataleya orchid, he\"\nlsmdc3019_COLOMBIANA-8838,3600,\"Bending over another dead bodyguard, he takes his gun. Armed with a pistol in each hand, he\",steps into the courtyard.,grinds a blade into his blood.,abandons it as it lands up under its feet.,tries as flames jumps from the shells.,brings his fingers to his chest.,gold1-orig,pos,unl,unl,unl,pos,\"Bending over another dead bodyguard, he takes his gun.\",\"Armed with a pistol in each hand, he\"\nlsmdc3019_COLOMBIANA-8838,3613,\"As the sharks attack, he flails and grabs futily at the glass. His blood\",billows in the water.,proceeds to fall when it works.,spurt from his face sharp and bloody.,flowing all over his skin.,,gold1-orig,pos,unl,pos,pos,n/a,\"As the sharks attack, he flails and grabs futily at the glass.\",His blood\nlsmdc3019_COLOMBIANA-8838,3582,\"A view through the pool's glass panels shows a shark gliding through the pale blue water. As it swims away, a hand\",appears under the glass.,comes with a faces brush and someone's head is visible again and the boy grimaces at it.,\"reaches for his face, gently squeezes his body straight into hers.\",swims on someone's shoulder.,appears with a balding board.,gold1-reannot,pos,unl,unl,unl,unl,A view through the pool's glass panels shows a shark gliding through the pale blue water.,\"As it swims away, a hand\"\nlsmdc3019_COLOMBIANA-8838,3574,He turns to a bodyguard. Someone,\"winks and pats the guard's face, then turns to the women who pillow fight on his canopy bed.\",takes off his glasses and sprays his shaven face.,bites her lover's thin hands.,regains her composure now and races over to the distracted someone.,,gold1-reannot,pos,unl,unl,pos,n/a,He turns to a bodyguard.,Someone\nlsmdc3019_COLOMBIANA-8838,3580,\"An oblivious bodyguard stands at a window holding a handgun. In the courtyard, a guard\",puffs on a cigarette then heads inside.,extends a tense book.,looks at the assembled students in the crowd.,runs to someone's apartment door.,closes the front door with his foot.,gold0-reannot,pos,unl,unl,pos,pos,An oblivious bodyguard stands at a window holding a handgun.,\"In the courtyard, a guard\"\nlsmdc3019_COLOMBIANA-8838,3567,\"She places a steak in each of their bowls. Stepping out from the cage, she\",closes the door and gives them a firm look.,lands on top of him.,pets the kitten's cat.,stops on the curb and puts the card away.,picks up a woman and takes off a medal.,gold1-reannot,pos,unl,unl,unl,unl,She places a steak in each of their bowls.,\"Stepping out from the cage, she\"\nlsmdc3019_COLOMBIANA-8838,3585,Two sharks swim nearby paying little attention to the graceful intruder. Someone,nears the opposite end of the pool and pushes up one of the thick glass panels.,\"raises himself to the camera, open the water and cries.\",shows an additional beautiful method of use.,whirls around while holding among the other players.,\"sits on the flat, gasping water.\",gold1-reannot,pos,unl,unl,unl,unl,Two sharks swim nearby paying little attention to the graceful intruder.,Someone\nlsmdc3019_COLOMBIANA-8838,3593,Someone bolts upright then looks down at his bare chest. He,finds the words thief written in black lipstick above a drawing of the cataleya orchid.,\"keeps his gaze fixed on the rapid - violent water, then rushes in the side opposite fires with someone.\",are in a nearby smallest sack.,writes on the window and tosses it from his pocket.,notices the bundle of muscle cars alongside country truck.,gold0-reannot,pos,unl,unl,unl,unl,Someone bolts upright then looks down at his bare chest.,He\nlsmdc3019_COLOMBIANA-8838,3611,A shot to his other leg sends him down on all fours. He,glances at the sharks below him.,kicks and ducks at the buzz.,yanks out the candle with his fingers.,leaps up and flies into the bird - face and back door.,takes someone to the mouth.,gold0-reannot,pos,unl,unl,unl,unl,A shot to his other leg sends him down on all fours.,He\nlsmdc3019_COLOMBIANA-8838,3615,\"Walking onto the glass, someone picks up the orchid and drops it into the pool. In his office, someone\",reads a newspaper's front page.,heads toward the concierge.,adjusts the photos of aglow's cube.,\"throws out a collection magazine, followed by newspaper cuttings.\",\"sits hunched, leaning on a cane.\",gold0-reannot,pos,unl,unl,pos,pos,\"Walking onto the glass, someone picks up the orchid and drops it into the pool.\",\"In his office, someone\"\nanetv_fUJ88Ir7Dgc,17381,A person is seen walking around a track in the middle of a large audience. The athlete then,sits down while another stands next to him and prepares.,jumps into the pit and stands.,finds himself performing again in slow motion as well as pit a machine.,jumps one several more times.,begins skating around a track while a crowd watches on.,gold0-orig,pos,unl,unl,unl,unl,A person is seen walking around a track in the middle of a large audience.,The athlete then\nanetv_fUJ88Ir7Dgc,17382,The athlete then sits down while another stands next to him and prepares. The man,is then seen jumping over a bar followed by the same shot being shown again.,keeps running and still finds himself in the water.,continues hitting the man with his hands up and down while not as well as him put down and finishes reading.,moves across to grab him then begins balancing on the wall while swinging forwards and fourth while spinning himself back and fourth on his feet,pauses in the start.,gold0-orig,pos,unl,unl,pos,pos,The athlete then sits down while another stands next to him and prepares.,The man\nlsmdc0028_The_Crying_Game-63535,17205,She stretches up with her whole body over him. They,grow suddenly and violently passionate.,and foreman are on ahead of the boat.,spit bob balls down someone and grabs him in both arms.,start doing tricks on the bars.,,gold0-orig,pos,unl,unl,pos,n/a,She stretches up with her whole body over him.,They\nlsmdc0028_The_Crying_Game-63535,17191,\"His reverie is broken by the sound of a voice outside - - someone's. She opens the window door, and we\",\"see someone on the street, in a neck brace.\",\"see offscreen as someone looks at it, then comes to shake it off again.\",tilt to look undecided.,\"see him beaming as his wife, beaming, keeps looking down at the locket.\",hear it.,gold0-orig,pos,unl,unl,unl,pos,His reverie is broken by the sound of a voice outside - - someone's.,\"She opens the window door, and we\"\nlsmdc0028_The_Crying_Game-63535,17193,She goes back into the room and begins taking things up. She,\"flings things down: men's clothes, leather trousers, a suitcase, a teddy bear.\",stands off the bar on the floor and starts to grab a cup.,picks up a bucket of wood and holds it up against the wall.,starts by picking up the yoga and tossing it aside.,closes the door and walks into the bathroom where someone took pictures of her classmates.,gold1-orig,pos,unl,unl,unl,pos,She goes back into the room and begins taking things up.,She\nlsmdc0028_The_Crying_Game-63535,17195,Someone grabs a large goldfish bowl and flings it down. The bowl,breaks to bits on the pavement.,yanks the baked potato up to its position.,is filled as someone walks out from his room.,is turned upside in.,,gold0-orig,pos,unl,unl,unl,n/a,Someone grabs a large goldfish bowl and flings it down.,The bowl\nlsmdc0028_The_Crying_Game-63535,17183,Someone pulls her into a doorway to avoid it. The car,\"continues down the road, stops, and then screeches off.\",blows against her face.,is still getting beat.,crashes alongside of the first car.,,gold1-orig,pos,unl,unl,unl,n/a,Someone pulls her into a doorway to avoid it.,The car\nlsmdc0028_The_Crying_Game-63535,17206,The photograph above them seems to smile. He,draws up her dress with his hands.,jerks her hips to the center of her modern apartment ads.,\"gets back to work with his new haircut, and to the chair high in the air.\",sees a hippie pinball under the machine.,,gold0-orig,unl,unl,unl,unl,n/a,The photograph above them seems to smile.,He\nlsmdc0028_The_Crying_Game-63535,17190,The camera tracks into the soldier's smiling face. His reverie,is broken by the sound of a voice outside - - someone's.,shows the attempt of someone!,is caught by a.,becomes crystalline and central.,are off - also frustration.,gold0-orig,pos,unl,unl,unl,pos,The camera tracks into the soldier's smiling face.,His reverie\nlsmdc0028_The_Crying_Game-63535,17179,People looking at their menus. A waiter,\"places drinks on their table, then leaves.\",comes up from her.,spots the cafe at the entrance of the casserole dish counter followed by the middle - aged man.,stands in front of the open door.,gives someone a gentle kiss.,gold0-orig,pos,unl,unl,unl,unl,People looking at their menus.,A waiter\nlsmdc0028_The_Crying_Game-63535,17177,\"The girls inside the salon pull back a curtain, and they all clap. She\",takes his arm and walks off with him.,smiles to the camera as it plays them with faced.,sits nude in the wall.,drops the bottle of wine.,stands in someone's arms and applauds.,gold1-orig,pos,unl,unl,unl,pos,\"The girls inside the salon pull back a curtain, and they all clap.\",She\nlsmdc0028_The_Crying_Game-63535,17182,\"And suddenly a car drives very fast toward them, headlights on. Someone\",pulls her into a doorway to avoid it.,moves out of the truck.,pulls up and runs up to her.,slows to a halt.,,gold0-orig,pos,unl,pos,pos,n/a,\"And suddenly a car drives very fast toward them, headlights on.\",Someone\nlsmdc0028_The_Crying_Game-63535,17200,Someone walks past the photograph and sits down. He,looks from her to the picture.,\"stands up and gives a few hectic sobs, then breaks away into tears.\",replaces the pages shot forward and dances on it.,pulls his essay from his pocket.,,gold0-orig,pos,unl,unl,pos,n/a,Someone walks past the photograph and sits down.,He\nlsmdc0028_The_Crying_Game-63535,17197,\"Goldfish thrash around in the street. Upstairs, someone\",closes the window shut.,drives him toward an observation pole.,enters some paperwork with a notebook.,finds someone swigging a mug from a sitting table.,,gold0-orig,pos,unl,unl,pos,n/a,Goldfish thrash around in the street.,\"Upstairs, someone\"\nlsmdc0028_The_Crying_Game-63535,17180,\"A waiter places drinks on their table, then leaves. They\",are walking in an alleyway toward her house.,\"are standing at the table behind him, watching the sink.\",\"stop her, looking up at the dancing guests.\",shoot through a glass door.,pull the cigarette tight.,gold1-orig,unl,unl,unl,unl,unl,\"A waiter places drinks on their table, then leaves.\",They\nlsmdc0028_The_Crying_Game-63535,17184,\"The car continues down the road, stops, and then screeches off. She\",looks down toward where the car has pulled away.,\"travel up on the elliptical, showing a set of food at the center.\",checks the top of the curve and rides in the water.,turns and hobbles away in the dirt.,is in a trance.,gold0-orig,pos,unl,unl,unl,pos,\"The car continues down the road, stops, and then screeches off.\",She\nlsmdc0028_The_Crying_Game-63535,17186,Someone comes in in the darkness. Someone,stands like a shadow in the doorway.,pounds his shirtless fist against hers.,talks about his cellphone as he watches about it.,puts his hand towards someone.,\"stands next to someone who remains agape, looking stunned.\",gold0-orig,pos,unl,unl,pos,pos,Someone comes in in the darkness.,Someone\nlsmdc0028_The_Crying_Game-63535,17204,And they fall into one another's arms. She,stretches up with her whole body over him.,backs them apart with one hand and her head pads up to another railing.,collapses on the couch.,sinks to his knees.,,gold1-orig,pos,unl,pos,pos,n/a,And they fall into one another's arms.,She\nlsmdc0028_The_Crying_Game-63535,17181,They are walking in an alleyway toward her house. And suddenly a car,\"drives very fast toward them, headlights on.\",flashes through the light.,is driven in her car with a personal leash.,flies into the battlements.,is stopped by them.,gold0-orig,pos,unl,unl,unl,pos,They are walking in an alleyway toward her house.,And suddenly a car\nlsmdc0028_The_Crying_Game-63535,17201,He looks from her to the picture. He,nods toward the picture.,smiles as he finishes.,reaches for her arm.,looks down at her briefly.,laughs with her friends.,gold0-orig,pos,pos,pos,pos,pos,He looks from her to the picture.,He\nlsmdc0028_The_Crying_Game-63535,17198,\"Upstairs, someone closes the window shut. Someone\",stands as someone hands him a glass.,stands outside at the kitchen table.,reacts with a map.,\"steps out, clutching his keys and listening.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Upstairs, someone closes the window shut.\",Someone\nlsmdc0028_The_Crying_Game-63535,17175,\"Someone stands and looks down at someone, who turns to leave. Someone\",\"walks out of the salon, smiling, and walks toward someone.\",stares at the marker.,stumbles up to her.,\"walks up to the piano and picks him up, backing up to him.\",looks into his eyes then fixes his gaze on someone and nods.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stands and looks down at someone, who turns to leave.\",Someone\nlsmdc0028_The_Crying_Game-63535,17196,The bowl breaks to bits on the pavement. Goldfish,thrash around in the street.,\"see people, at a shop bank on the projects.\",return to the beat - faced man with the headlamps of the photo.,eyes metal as she steps away.,push the baby on the roof.,gold0-orig,pos,unl,unl,unl,unl,The bowl breaks to bits on the pavement.,Goldfish\nlsmdc0028_The_Crying_Game-63535,17188,He looks around the room; there is an exaggerated femininity about everything in it. Someone,looks at the mantelpiece and sees a picture of someone.,\"is traveling in less than a minute, equally quick and annoyed.\",goes into a library.,\"puts the hat on, kicking the door shut, and goes past a set of pipes and depths of the narrow passage.\",,gold0-orig,pos,unl,unl,unl,n/a,He looks around the room; there is an exaggerated femininity about everything in it.,Someone\nlsmdc0028_The_Crying_Game-63535,17176,\"Someone walks out of the salon, smiling, and walks toward someone. Someone\",takes a bunch of flowers from behind his back.,\"cautiously on his seat, leans in to the open door.\",\"faces someone, who shifts his uneasy gaze.\",'s on the swing next to the railings.,turns quickly to someone.,gold0-orig,pos,unl,pos,pos,pos,\"Someone walks out of the salon, smiling, and walks toward someone.\",Someone\nlsmdc0028_The_Crying_Game-63535,17194,\"Someone looks to the man down in the street, a parody of rejection with his things in his arms. Someone\",grabs a large goldfish bowl and flings it down.,looks out to him like the tabby from beneath him.,uses a handheld device on the wooden floor.,does n't just have his right arm on his arm.,\"remembers sitting and reading, sitting in his rotting bed.\",gold0-reannot,pos,unl,unl,unl,unl,\"Someone looks to the man down in the street, a parody of rejection with his things in his arms.\",Someone\nlsmdc0028_The_Crying_Game-63535,17203,She looks down into her drink. And they,fall into one another's arms.,\"both stand forward, staring at one another.\",look regard each other for a moment.,\"'re clean, tailored, tack - faced.\",are at the table.,gold1-reannot,pos,unl,unl,unl,pos,She looks down into her drink.,And they\nlsmdc0028_The_Crying_Game-63535,17174,She goes in and closes the door. Someone,\"stands and looks down at someone, who turns to leave.\",is in his raincoat at the airport.,flicks a lighter causing her to flash away.,throws through the scanner lab.,turns and goes through the window.,gold0-reannot,pos,unl,unl,unl,pos,She goes in and closes the door.,Someone\nlsmdc0028_The_Crying_Game-63535,17202,He nods toward the picture. She,looks down into her drink.,\"looks up, shifting his attention to the hospital, then looks at someone.\",lifts a helmet cap.,shifts his gaze to a hangar leaving someone.,hits a fence which contains the embroidery shop.,gold1-reannot,pos,unl,unl,unl,unl,He nods toward the picture.,She\nlsmdc0028_The_Crying_Game-63535,17189,Someone looks at the mantelpiece and sees a picture of someone. The camera,tracks into the soldier's smiling face.,\"turns to reveal someone, a handsome, naked dog, looks around.\",waddles away to the face.,trained briefly shifts on the tv.,\"drops back to see someone with someone, who enter the camera.\",gold1-reannot,pos,unl,unl,unl,pos,Someone looks at the mantelpiece and sees a picture of someone.,The camera\nlsmdc0028_The_Crying_Game-63535,17192,\"She opens the window door, and we see someone on the street, in a neck brace. She\",goes back into the room and begins taking things up.,holds someone over her head and is just about to put her arm in the shoulder.,jerks up at the water draining from his skin to look at her chest.,\"coolly raises his eyebrows and jerks his arms in higher, changing the call button.\",pushes foot leaves at a small on out of the hospital bed with another sticker from its neck.,gold0-reannot,pos,unl,unl,unl,unl,\"She opens the window door, and we see someone on the street, in a neck brace.\",She\nlsmdc0028_The_Crying_Game-63535,17178,She takes his arm and walks off with him. People,looking at their menus.,pull on the road.,read someone open the book.,help him up with the basketball.,continue to pull back.,gold1-reannot,pos,unl,unl,unl,unl,She takes his arm and walks off with him.,People\nanetv_2XOTxAZZhsQ,4916,A girl with a long pony tail is in the kitchen cleaning up the dishes and talking. She then,grabs a pan and walks to throw something in the trash.,\"tries it back olive and applies it to the woman's plate, only the camera pans over to show the smiling baking dish.\",runs back to the table and places baking soap on her feet.,puts them in the dogs eyes for a time as she running past.,takes the dishes inside of the sink and then dries her hands on the sink.,gold0-orig,pos,unl,unl,unl,unl,A girl with a long pony tail is in the kitchen cleaning up the dishes and talking.,She then\nanetv_2XOTxAZZhsQ,19147,A woman is seen moving around a kitchen putting dishes away. She,washes more dishes and speaks to other.,begins hanging something on the shirt while placing it down the drain.,then begins with a baking pan and still mixing ingredients.,dumps cleaning items into her basket and evening them out.,is then shown scrubbing down an orange tub with a rag.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen moving around a kitchen putting dishes away.,She\nanetv_2XOTxAZZhsQ,19148,She washes more dishes and speaks to other. A close up of a boiling pot,is shown as she continues to work.,is shown before mixes hard.,falls off a board and fires out.,appears followed by several more ingredients and food.,appears whisks the pasta.,gold0-orig,pos,unl,pos,pos,pos,She washes more dishes and speaks to other.,A close up of a boiling pot\nanetv_2XOTxAZZhsQ,4917,\"She then grabs a pan and walks to throw something in the trash. After, a stove is shown while something is boiling and several people\",are sitting at the table doing homework.,are mixing and putting it down on buffet plates.,are putting it on a baby table.,are walking around a tree on the top of a pile.,are walking behind her.,gold0-reannot,pos,unl,unl,unl,pos,She then grabs a pan and walks to throw something in the trash.,\"After, a stove is shown while something is boiling and several people\"\nlsmdc0001_American_Beauty-46173,10556,\": It's the photo we saw earlier of him, people, taken several years ago at an amusement park. It\",'s startling how happy they look.,has missed a quiet town.,waves while numerous with mushroom - looking figures.,\"lifts his shirt, and then lowers it.\",lies with things on top of it.,gold0-orig,pos,unl,unl,unl,pos,\": It's the photo we saw earlier of him, people, taken several years ago at an amusement park.\",It\nlsmdc0001_American_Beauty-46173,10558,\"He suddenly seems older, more mature. After a beat, the barrel of a gun\",\"rises up behind his head, aimed at the base of his skull.\",obscures the boys face.,is pushed at someone's neck.,is already around the back of his head.,,gold0-orig,pos,unl,pos,pos,n/a,\"He suddenly seems older, more mature.\",\"After a beat, the barrel of a gun\"\nlsmdc0001_American_Beauty-46173,10561,\"Someone comes down the stairs, followed by someone. Someone\",\"opens the door from the dining room, then stops.\",slides out of the room to tend to others.,\"stands at the bar, still muttering to himself.\",trails behind her as she runs her hand through her hair.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone comes down the stairs, followed by someone.\",Someone\nlsmdc0001_American_Beauty-46173,10555,\"Someone crosses to the kitchen table, where he sits and studies the photo. : It\",\"'s the photo we saw earlier of him, people, taken several years ago at an amusement park.\",reads someone's letter.,finds it unlocked.,\", the bearded old man hands a photo to someone.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone crosses to the kitchen table, where he sits and studies the photo.\",: It\nlsmdc0001_American_Beauty-46173,10557,It's startling how happy they look. He suddenly,\"seems older, more mature.\",\"turns a look at him, disappointed and pushes it back into place.\",\"stops and looks round at his mother, who now looks very satisfied, as not much of her snowflake.\",comes to the gaps in the wondering what he is doing.,\"leans over and kisses her, gazing up at the ceiling.\",gold0-orig,pos,unl,unl,unl,pos,It's startling how happy they look.,He suddenly\nlsmdc0001_American_Beauty-46173,10560,\"Instantly, the tile is sprayed with blood, the same deep crimson as the roses. Someone\",\"comes down the stairs, followed by someone.\",rips the nails out of the shadows as fran roll down the stairs.,sits in bed as someone tweaks the other's shoes.,raise their reptilian legs to take their positions forward.,\"grabs the steam covering the kitchen floor, and she becomes terrified.\",gold0-orig,pos,unl,unl,unl,pos,\"Instantly, the tile is sprayed with blood, the same deep crimson as the roses.\",Someone\nlsmdc0001_American_Beauty-46173,10563,\"Someone comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid. Someone looks back at us; his eyes are lifeless, but he\",is smiling the same slight smile.,keeps his ear on a flow.,sees no sign of what he sees.,keeps kneeling behind a brick of debris.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid.\",\"Someone looks back at us; his eyes are lifeless, but he\"\nlsmdc0001_American_Beauty-46173,10562,A pool of blood is forming on the kitchen table. Someone,\"comes into the kitchen and slowly approaches someone's lifeless body, wide - eyed but not afraid.\",places in her hand to uncover the face.,\"puts the parts in the paper, and someone puts it away.\",takes the litter too.,fills a bottle with a bottle and shows the bill.,gold0-orig,pos,unl,unl,unl,unl,A pool of blood is forming on the kitchen table.,Someone\nlsmdc0001_American_Beauty-46173,10559,\"After a beat, the barrel of a gun rises up behind his head, aimed at the base of his skull. Instantly, the tile\",\"is sprayed with blood, the same deep crimson as the roses.\",spills down to another hole in the hotel room.,drops on the floor dead as he staggers out and lands the land far far away.,crashes into the bowl and bringing its head to someone's chest.,has been erected and looms over him.,gold0-reannot,pos,unl,unl,unl,unl,\"After a beat, the barrel of a gun rises up behind his head, aimed at the base of his skull.\",\"Instantly, the tile\"\nanetv_5sYPXv0RkiM,3950,A man stands next to a pile of wood holding tools on his shoulders. The man,uses a large ax to chop logs standing upright in a grassy forested area area.,swings the swing around the man on the swing.,demonstrates how to remove wood from the christmas tree.,logs and puts the nuts in the fire.,drains the wood and sets them in a pile.,gold1-orig,pos,unl,unl,unl,unl,A man stands next to a pile of wood holding tools on his shoulders.,The man\nanetv_mFSdzT5gXQs,13788,\"A computer generated game of a man, he starts spinning. He turns around quickly and lets go of the frisbee and the refs\",run up to mark where it lands.,is trying to get it to a picture.,makes its way down the side of the hood.,sweeps off ice again.,grabs him in midair.,gold0-orig,pos,unl,unl,unl,unl,\"A computer generated game of a man, he starts spinning.\",He turns around quickly and lets go of the frisbee and the refs\nanetv_mFSdzT5gXQs,13789,\"He turns around quickly and lets go of the frisbee and the refs run up to mark where it lands. The man starts to do it again, he\",spins and throws again.,stops turning towards the dog.,turns it off to demonstrate more of what he'll do.,continues to once again demonstrate tricks.,begins to attack it.,gold0-orig,pos,unl,unl,unl,unl,He turns around quickly and lets go of the frisbee and the refs run up to mark where it lands.,\"The man starts to do it again, he\"\nanetv_GjjRDUirW7g,17762,A man is seen speaking to the camera while holding a box up to show an instrument inside. The man,pulls out the harmonica and continues to show it off to the camera.,picks up the ball and begins throwing it and pushing it all around him.,picks up the flute and begins playing the drums while speaking to the camera.,clips a white part in the paint while looking into the camera.,continues playing the guitar while looking around and smiling to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera while holding a box up to show an instrument inside.,The man\nanetv_GjjRDUirW7g,17763,The man pulls out the harmonica and continues to show it off to the camera. The man,plays the harmonica and pauses to hold it up to the screen as well as a picture.,pauses to speak to the camera while the camera captures their movements.,continues to push the accordion while looking back to the camera.,\"continues playing again and the man continues playing, demonstrating it around to speak to the camera.\",goes to the man's bed and continues to talk about the harmonica he was looking at.,gold0-orig,pos,unl,unl,pos,pos,The man pulls out the harmonica and continues to show it off to the camera.,The man\nanetv_OUfVZuWyqJQ,13975,The man in jump stilts runs from the cops on a city street. The man,pushes through a market.,stops running and stands up.,turns away while peeking through a window.,finishes skateboarding and kneels down behind a parking lot.,puts a skateboard down and lands hard.,gold0-orig,pos,unl,unl,unl,unl,The man in jump stilts runs from the cops on a city street.,The man\nanetv_OUfVZuWyqJQ,13974,A man in jump stilts throws a bag over his shoulder and leaves a bank. The man in jump stilts,runs from the cops on a city street.,does a high flip to the jump.,does a high jump while the crowd cheers on the screen.,does a handstand as he makes his way down to the right.,jumps to the other one in front of some trolley.,gold0-orig,pos,unl,unl,unl,unl,A man in jump stilts throws a bag over his shoulder and leaves a bank.,The man in jump stilts\nanetv_OUfVZuWyqJQ,13980,The man opens the bag and counts his cash. We,see a closing title screen.,\"the ticket on the wooden floor, the woman removes the lid and watches someone.\",notes with his wallet on someone's license.,see the lady in the water.,,gold0-orig,pos,unl,unl,unl,n/a,The man opens the bag and counts his cash.,We\nanetv_OUfVZuWyqJQ,13978,The man jumps over a truck and over a fence losing the cops. The man,runs through a skate park down a city street and up stairs.,\"turns and walks on, after another glistening rolls down another man at the bottom of the highway.\",\"goes back to beard with the griddle, but the man is shoveling the rider's long shot of the tree.\",bachelor a chalk paper attached to the rope.,lands and jumps off the fence.,gold0-orig,pos,unl,unl,unl,pos,The man jumps over a truck and over a fence losing the cops.,The man\nanetv_OUfVZuWyqJQ,13973,We see the white opening screen. A man in jump stilts,throws a bag over his shoulder and leaves a bank.,demonstrates an address while talking on a wooden ramp.,is running and ending the video.,does a bungee jump.,is walking in a heavy wooden work area and work.,gold1-reannot,pos,unl,unl,unl,unl,We see the white opening screen.,A man in jump stilts\nanetv_OUfVZuWyqJQ,13977,The man jumps over a stroller being pushed by a lady. The man,jumps over a truck and over a fence losing the cops.,hands bends up putting down his younger son.,finishes repeated his opponent while stopping.,instructs his shoulders to bounce and push claps on the man in the bedroom.,\"adjusts a chair, sits on his knees on the ground.\",gold0-reannot,pos,unl,unl,unl,unl,The man jumps over a stroller being pushed by a lady.,The man\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17799,\"A burly guy in a yellow baseball cap, grey jacket and jeans pushes a floor buffer past behind him. Someone\",looks at the gold ring in his palm.,\"above, all the windows stop off, to create a path of fire.\",rubs back the dodge ball and goes to the other end.,shakes a bar and sips of water.,watches from the bars.,gold0-orig,pos,unl,unl,unl,pos,\"A burly guy in a yellow baseball cap, grey jacket and jeans pushes a floor buffer past behind him.\",Someone\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17797,A close - up shows them grappling on the floor. He,smiles blankly at her.,\"sways to the music, and strikes her face in her bubble hand.\",steps onto the path and runs past them.,\"glances up at us as she goes to the dresser, reading.\",leads people off and a few walk toward the open door.,gold1-orig,pos,unl,unl,pos,pos,A close - up shows them grappling on the floor.,He\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17798,\"Looking bedraggled in his ruffled mess of a suit, someone sits alone in the departure lounge, impatiently tapping his hand with his mobile phone. A burly guy in a yellow baseball cap, grey jacket and jeans\",pushes a floor buffer past behind him.,makes his way up a meadow and toward a side entrance.,\"is sitting down in the hallway at his father in a easy, surprising club with sunglasses.\",walks out of the garage to the parked room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Looking bedraggled in his ruffled mess of a suit, someone sits alone in the departure lounge, impatiently tapping his hand with his mobile phone.\",\"A burly guy in a yellow baseball cap, grey jacket and jeans\"\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17796,\"Onscreen, someone dives on someone, pinning him to a table. A close - up\",shows them grappling on the floor.,shows people performing door - to - side.,shows a photo of someone.,shows a soldier kicking up in the river.,,gold0-orig,pos,unl,unl,unl,n/a,\"Onscreen, someone dives on someone, pinning him to a table.\",A close - up\nlsmdc1003_How_to_Lose_Friends_and_Alienate_People-73510,17795,\"He glares at his mobile then looks up to see himself on a tv mounted to a pillar nearby. Onscreen, someone\",\"dives on someone, pinning him to a table.\",is watching the movie.,turns to shirts or clothing.,comes over holding a bottle of lemon juice.,turns to someone's map.,gold0-reannot,pos,unl,unl,unl,unl,He glares at his mobile then looks up to see himself on a tv mounted to a pillar nearby.,\"Onscreen, someone\"\nanetv_TakNLlCbjvw,9742,A child walks by a hopscotch pattern. The child,puts her palms on the hopscotch pattern.,falls to a boy in the roll on water.,blindfolded and baby body have ears turned away from the little girl.,holds the bowling ball.,talks to the girl while moving his hands and doing the same thing.,gold0-orig,pos,unl,unl,unl,pos,A child walks by a hopscotch pattern.,The child\nanetv_TakNLlCbjvw,9743,The child puts her palms on the hopscotch pattern. The child,hops on the hopscotch pattern.,pulls the red tube from her foot.,works the baby brush again.,leans towards the pinata and cries.,,gold0-orig,pos,unl,unl,unl,n/a,The child puts her palms on the hopscotch pattern.,The child\nlsmdc3038_ITS_COMPLICATED-17174,13281,\"Someone and someone shake hands. In an office, they\",roll out the blueprint.,drink wine from a sink.,peer through the large helmeted windows.,shake each other's hands.,throw glasses across the table.,gold0-orig,pos,unl,pos,pos,pos,Someone and someone shake hands.,\"In an office, they\"\nlsmdc3038_ITS_COMPLICATED-17174,13282,\"In an office, they roll out the blueprint. Someone\",dons her reading glasses.,steps outside and pulls a kimono from the stage.,remembers the closing captions recording on his tv.,grind wallpaper to another as an individual.,,gold0-orig,pos,unl,unl,unl,n/a,\"In an office, they roll out the blueprint.\",Someone\nlsmdc3038_ITS_COMPLICATED-17174,13278,She notices the line of customers. She,refills a water glass.,\"watches as people walk to a colonial decorated mansion, decorated with colorful flowers surrounds the countryside.\",gyrates a little boy.,\"scurries away, carrying a worn book over their heads.\",hands indistinctly the lock.,gold0-orig,pos,unl,unl,unl,unl,She notices the line of customers.,She\nlsmdc3038_ITS_COMPLICATED-17174,13280,Moving down the counter she pauses at a server. She,stops in front of a white - haired man.,peers in at the x - rays.,looks down the telephone and removes a sheet of papers from the door in a halloween dressing room.,aims the mixer at her.,,gold1-orig,pos,unl,unl,unl,n/a,Moving down the counter she pauses at a server.,She\nlsmdc3038_ITS_COMPLICATED-17174,13283,Someone dons her reading glasses. Peter,trade an eyebrow raise.,hawaiian highlights and being interviewed.,reserved among the papers.,runs warmly beneath someone's coat.,english someone clicks someone's arm!,gold1-reannot,unl,unl,unl,unl,pos,Someone dons her reading glasses.,Peter\nanetv_KyDcuYjDi_Y,14744,She engages in several different moves. She,does forward and back flips and handsprings.,serve in the ingredients.,reaches a goal and attempts to secure it.,joins it again and continues competing.,continues speaking while looking downstairs in the distance.,gold0-orig,pos,unl,unl,unl,unl,She engages in several different moves.,She\nanetv_uaIu2yDmhNU,7547,\"He does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd. He\",beats his chest and hugs people.,\"ends the leaves in his hand, stretching.\",sees he was standing in sandcastle off of a nearby wall.,is along a street rising.,stands back up and waves his arms in the air.,gold1-orig,pos,unl,unl,unl,pos,\"He does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd.\",He\nanetv_uaIu2yDmhNU,7548,He beats his chest and hugs people. He then,poses in front of a scoreboard while people take photographs.,pushes out of the ballroom with his arms.,stands in his arms where he picked up head.,walks the child while the baby lifts his hand.,drops a tether to the ground and tries again.,gold0-orig,pos,unl,unl,unl,unl,He beats his chest and hugs people.,He then\nanetv_uaIu2yDmhNU,7546,A jump runner warms up before going in for a long jump. He,\"does the long jump, then immediately hops up and runs back, cheering and celebrating with the crowd.\",is shown running down a track with people running out from it.,continues to get down and balances this.,gathers for a match in a skateboarding competition.,\"puts down the ramp, walks over, and spins as far as he can in his balance out.\",gold0-reannot,pos,unl,unl,unl,unl,A jump runner warms up before going in for a long jump.,He\nanetv_rMWCaPh9UqE,17552,A person is pushing a lawn mower through the grass. A large brown dog,is walking next to the lawn mower.,walks past behind him hanging the shovel with.,is walking behind it and pushing a lawn mower.,goes in to pick up something.,runs past the missing two.,gold1-orig,pos,unl,unl,unl,unl,A person is pushing a lawn mower through the grass.,A large brown dog\nanetv_rMWCaPh9UqE,15371,\"A lawnmower begins mowing a small grass covered lawn while a dog walks around the perimeter. The dog has a ball in its mouth, drops it in front of the lawn mower and a person off of the screen\",\"throws the ball to the dog, who runs after it.\",lies back and forth.,on the spot.,\", hitting the page.\",,gold0-orig,pos,unl,unl,unl,n/a,A lawnmower begins mowing a small grass covered lawn while a dog walks around the perimeter.,\"The dog has a ball in its mouth, drops it in front of the lawn mower and a person off of the screen\"\nanetv_rMWCaPh9UqE,15370,A person mows the lawn while a dog and a person play catch with a ball on the same lawn at the same time. A lawnmower,begins mowing a small grass covered lawn while a dog walks around the perimeter.,is sitting in opening dirt on the ground.,walks through the yard.,encounters the child as he does and jumps in the next.,walks further and stops to catch a lawn mower with candy park.,gold0-reannot,pos,unl,unl,unl,unl,A person mows the lawn while a dog and a person play catch with a ball on the same lawn at the same time.,A lawnmower\nanetv_rMWCaPh9UqE,17553,A large brown dog is walking next to the lawn mower. The dog,drops its ball in front of the lawn mower.,runs through the grass and rakes the grass in front of him.,walks up the monkey gets of a cat while is stretched out on the grass.,is being pushed by the woman while black dog is sitting on the chair next to it.,is demonstrating how to have a grass nice match on the yard.,gold0-reannot,pos,unl,unl,unl,unl,A large brown dog is walking next to the lawn mower.,The dog\nanetv_G3xayqdY0TY,2937,A man on the dock hands a rope to a water skier. A person water skis and,does jumps over ramps in the water of a lake.,stop him on a water raft.,pumps water on a canoe and shakes water on it.,puts a boat out of the boat.,bikers enter an pool building.,gold0-orig,pos,unl,unl,unl,unl,A man on the dock hands a rope to a water skier.,A person water skis and\nanetv_G3xayqdY0TY,2938,A person water skis and does jumps over ramps in the water of a lake. The water skier,falls but recovers then lets go of the rope and drifts over to the shoreline.,is seen with the titanic rafting up the ski pool.,pumps skis and paddles past.,is in a city kayaking and paddling in the water.,is shown and several people are shown in the skiing competition.,gold0-orig,pos,unl,unl,unl,pos,A person water skis and does jumps over ramps in the water of a lake.,The water skier\nanetv_zSOK9jmWE1E,2020,The Bahamas is overlaid on video of a boat on water. A shark,is swimming in the water as a man in diving suit jumps in.,\"swims through oars from the banks, then stands right behind them.\",is being led towards the shore.,is being watched by people diving and the people are seated for swimming.,,gold0-orig,pos,unl,unl,pos,n/a,The Bahamas is overlaid on video of a boat on water.,A shark\nanetv_zSOK9jmWE1E,5348,Shots of sea animals are shown as well as people under water scuba diving with the fish. All the people,are seen floating on top of the water in the end.,are then shown swimming as well as going along the water.,swim in the ice while laughing to the camera.,are then shown swimming around their paddles and speaking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,Shots of sea animals are shown as well as people under water scuba diving with the fish.,All the people\nanetv_zSOK9jmWE1E,2021,A shark is swimming in the water as a man in diving suit jumps in. Various fish and sharks,are shown swimming in a frenzy in the water as the diver feeds them.,are captured in the upper part of the diving board.,creep across the water rapids.,are shown exploring well in several places.,flock past them and continue towards the water.,gold1-orig,pos,unl,unl,unl,pos,A shark is swimming in the water as a man in diving suit jumps in.,Various fish and sharks\nanetv_zSOK9jmWE1E,5347,An intro leads into several people on a boat and one speaking to another. Shots of sea animals,are shown as well as people under water scuba diving with the fish.,are shown while a boat begins putting objects around.,themselves appear as well as other boats.,are seen as well as the people riding around canoes and many large boats that have sails behind them.,are shown briefly followed by a person swimming in the light.,gold0-reannot,pos,unl,pos,pos,pos,An intro leads into several people on a boat and one speaking to another.,Shots of sea animals\nanetv_zSOK9jmWE1E,2019,A boat dock is shown with Stuart Cove's Dive Shop overlaid in graphics. The Bahamas,is overlaid on video of a boat on water.,speeds test rope to turn up rope from the water.,appears at the end of the dock with lift straps.,is visible and skis without being windmill and plastic time.,is shown showing how the participation of the sailboat is shown for expo is overhead.,gold0-reannot,pos,unl,unl,unl,unl,A boat dock is shown with Stuart Cove's Dive Shop overlaid in graphics.,The Bahamas\nanetv_2Voht8wf3dQ,16191,A woman stands at a counter. There,are several vegetables on a board.,finish the sandwich and shake hands with the others.,\"enters the body, leads into a mug shot and pulls it out of her pocket.\",and put peeler ingredients into a mixing bowl to put the sandwich on a plate.,\"print, on the head,.\",gold0-orig,pos,unl,unl,unl,unl,A woman stands at a counter.,There\nanetv_2Voht8wf3dQ,16192,There are several vegetables on a board. She,holds up a knife to cut them.,\"uncovers up the onions, food and vegetables.\",puts a bar to the glass bar before drinking spreading cup and balls at someone and talking to the camera.,cleans the lemonade with a spoon.,make holes in ice in a glass of white.,gold1-orig,pos,unl,unl,unl,pos,There are several vegetables on a board.,She\nanetv_2Voht8wf3dQ,16193,She holds up a knife to cut them. She,uses a tool to sharpen the knife.,jumps into the water.,is then shown tattooing the referee before drying the hair with a cloth.,grabs a knife and chops it.,cut the bread with a knife and put a knife into the sandwich.,gold1-orig,pos,unl,unl,unl,unl,She holds up a knife to cut them.,She\nanetv_2Voht8wf3dQ,17962,\"Then, she takes a knife and put it on the cleft of the edge grip and continues talking. After, the woman\",pass the knife on the edge grip from front to back while explaining.,puts the egg on her back and continues putting marks onto her right shoe.,continues to form a rod before taking a bite.,falls out on the table and a bread wipes her hand.,cuts the hair before the woman gives a demonstration on how to sharpen the knife.,gold0-reannot,pos,unl,unl,unl,unl,\"Then, she takes a knife and put it on the cleft of the edge grip and continues talking.\",\"After, the woman\"\nanetv_YAjqqbSsFTg,7367,\"A man shows bees and different breeds, including a tree. He\",teaches us how to mulch a tree properly.,uses a strip of tape with his shears.,is shown sleepily to the ground.,explains how different things should change.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man shows bees and different breeds, including a tree.\",He\nanetv_4NSWcmO_u4I,18041,A man shows how to dip and apply stain to the siding. He then,shows how to properly seal the buckets between uses.,shows how to shave his hands and face at the camera as he talks.,cleans his jump with a tissue and he cleans the neighbors with paint.,takes several cans and roller the desk.,cuts the tiles to other weeds to remove tiles.,gold0-orig,pos,unl,unl,unl,unl,A man shows how to dip and apply stain to the siding.,He then\nanetv_4NSWcmO_u4I,18040,The siding outside a house is shown. A man,shows how to dip and apply stain to the siding.,is standing beside his person carving fingernails on a paint liner.,is smoking a hookah.,is doing capoeira moves.,sits on the bed watching the man.,gold0-orig,pos,unl,unl,unl,unl,The siding outside a house is shown.,A man\nanetv_Yxsw5nTf4Dg,8812,A girl in a bikini is doing hula hoop on a patio. She,spins around several times and seems to be having a lot of fun.,stands dancing with the hula hoops.,hops to the camera and starts to dance.,starts with blue hula hoops.,,gold0-orig,pos,unl,unl,pos,n/a,A girl in a bikini is doing hula hoop on a patio.,She\nanetv_Yxsw5nTf4Dg,8815,It then jumps to another girl only showing her bottom half as a hula hoop spins around her. Another girls,is shown dancing inside of a house several times.,runs on the air while tossing darts down more turns.,takes off as they get down from the ground while waving to them as well.,showing by inverted arms and curly hair speaks while taking a kite over the back of the hair.,girl is up and talking to a girls hula hoop.,gold1-reannot,pos,unl,unl,unl,unl,It then jumps to another girl only showing her bottom half as a hula hoop spins around her.,Another girls\nanetv_Yxsw5nTf4Dg,8813,She spins around several times and seems to be having a lot of fun. The,came moves up and down to keep her in the frame.,use the batons and use them to be a replacement check in a different location.,lifts her out of the bar and falls in her arms.,chases after the people in the bleachers nearby.,comes up around on the bar and jumps down to his feet.,gold1-reannot,pos,unl,unl,unl,unl,She spins around several times and seems to be having a lot of fun.,The\nanetv_Yxsw5nTf4Dg,8814,The came moves up and down to keep her in the frame. It then,jumps to another girl only showing her bottom half as a hula hoop spins around her.,\"shows a blurred figure behind a long tunnel looking behind and flashlight on the pond, make sure its hidden watery completely submerged.\",restarts jumping on the ground.,follows several different flips and is popping back to the camera.,begins to move farther until she reaches the end and helps her reach to move more of it.,gold0-reannot,pos,unl,unl,pos,pos,The came moves up and down to keep her in the frame.,It then\nlsmdc3067_THE_ART_OF_GETTING_BY-32189,6406,Someone musses up his own hair. Someone,sits back and folds his arms.,takes off his bank phone and spots a stereo.,\"lowers his phone quickly, then hangs up again.\",\"shows down his wrist, and pulls it back to him.\",pulls out a feather.,gold1-orig,pos,unl,unl,unl,pos,Someone musses up his own hair.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32189,6405,\"Later, someone and someone sit on a boulder. Someone\",musses up his own hair.,grabs a star from the canvas cover.,turns his hand away.,gives him a high five.,leans toward someone with placid eyes.,gold1-orig,pos,unl,unl,pos,pos,\"Later, someone and someone sit on a boulder.\",Someone\nanetv_oq54_GlzK6A,4400,The first clip of the video shows the title sequence. A man,is then shown in a bowling store speaking to the camera.,\"demonstrate tai chi, standing with a gun.\",is shown on a horse in to store while talking to the camera.,talk to the camera in the room of the lures.,returns to the environment player with the testing lenses.,gold1-orig,unl,unl,unl,unl,unl,The first clip of the video shows the title sequence.,A man\nanetv_oq54_GlzK6A,4401,A man is then shown in a bowling store speaking to the camera. Another title slide,introduces the next clip.,is shown and the men sits up in the background.,is shown on a table and then people are shown.,is shown for him to play.,is shown and he holds empty folders above the video waves.,gold0-orig,pos,unl,unl,unl,unl,A man is then shown in a bowling store speaking to the camera.,Another title slide\nanetv_oq54_GlzK6A,4402,\"Another title slide introduces the next clip. As the man speaks to the camera, several clips\",are shown of a man rolling a bowling ball down the lane.,take turns spinning around people walking around glumly in front of them.,walk down the background followed by the man swinging the leg up.,are shown of people walking and leads into a group of kids sitting on the side.,are shown of people riding horses in the skate park.,gold0-orig,pos,unl,unl,unl,pos,Another title slide introduces the next clip.,\"As the man speaks to the camera, several clips\"\nanetv_oq54_GlzK6A,4403,\"As the man speaks to the camera, several clips are shown of a man rolling a bowling ball down the lane. The video\",ends with a clip showing the title logo and website information.,then cuts to a boy in blue throwing a match to the same person.,continues to show off person and closely close ups of the man giving hard time shot and being interviewed.,shows several shots of the table being played by the players.,,gold1-orig,pos,unl,unl,unl,n/a,\"As the man speaks to the camera, several clips are shown of a man rolling a bowling ball down the lane.\",The video\nlsmdc1019_Confessions_Of_A_Shopaholic-80916,1765,Someone joins someone by the lake shore. She,shoots him a look.,heads back to the shore.,\"steps on the bench, and spots himself shrugging his top.\",jumps into a wave.,,gold0-orig,pos,unl,unl,pos,n/a,Someone joins someone by the lake shore.,She\nlsmdc1019_Confessions_Of_A_Shopaholic-80916,1762,\"Someone, wandering along a wintry lake shore, is a tiny dot in the distance. People\",are by their mobile home.,\"startles him, then notices the battered churns animal.\",\"are seen lounging on a beach outdoors on boards, outdoors.\",\"mill around the winding hedges in a nick, where there are shrubs and shrubs.\",run from the jump of burning planks to the bottom.,gold1-orig,pos,unl,pos,pos,pos,\"Someone, wandering along a wintry lake shore, is a tiny dot in the distance.\",People\nlsmdc1019_Confessions_Of_A_Shopaholic-80916,1763,People are by their mobile home. Someone,brings out a book.,pulls someone up by the shoulder with someone.,is standing at the piano.,pulls open the door and reads.,,gold1-orig,pos,unl,unl,unl,n/a,People are by their mobile home.,Someone\nanetv_cHHVpBYfwdU,9969,\"The dog runs through different rooms of the house, then to the door and outside. They\",go for a walk outside with the people and other dogs.,starts walking for a little bit and then begins to float up again.,jab square in the face.,are working as they drag leaves.,\"watch the baby run toward the door, ease its way.\",gold1-orig,pos,unl,unl,unl,unl,\"The dog runs through different rooms of the house, then to the door and outside.\",They\nanetv_cHHVpBYfwdU,9968,A man leans over the camera he has placed on a dog. The dog,\"runs through different rooms of the house, then to the door and outside.\",runs away and opens the gate to catch the dog.,continues cutting the rest of the dog.,follows after his dog.,,gold0-orig,pos,unl,unl,pos,n/a,A man leans over the camera he has placed on a dog.,The dog\nanetv_cHHVpBYfwdU,9970,They go for a walk outside with the people and other dogs. He,\"returns home, and looks in his water bowl.\",takes a mower from the side of the board and begins vacuuming towards the other person that has between the wheels.,\"turns to the chocolates and gives it to the lovebirds, then she leaves up a car to go after the guy.\",brushes them with newspapers.,cuts across the screen.,gold0-reannot,pos,unl,unl,unl,unl,They go for a walk outside with the people and other dogs.,He\nlsmdc3013_BURLESQUE-5167,4171,Someone walks up a staircase to the top floor and its breathtaking view of the city. She,looks out a window and spots someone pacing outside on his phone.,crouches in front of someone.,\"looks at the pristine black dress, smiles and smiles.\",guides her hand and she kiss.,attackers run across the floor.,gold0-orig,pos,unl,unl,unl,unl,Someone walks up a staircase to the top floor and its breathtaking view of the city.,She\nlsmdc3013_BURLESQUE-5167,4172,She leaves the window and regards an architectural model of a city block set up on a table. Someone,notes an address on the model:.,is standing next to her desk; someone enters the museum and finds a chessboard from someone's hand.,stands beneath his desk and regards it thoughtfully as he stares at the door.,watches the tray carefully then guides her back to the bedroom.,,gold0-orig,pos,unl,unl,pos,n/a,She leaves the window and regards an architectural model of a city block set up on a table.,Someone\nlsmdc3013_BURLESQUE-5167,4173,Someone notes an address on the model:. Someone,joins her and hands her a coffee mug.,catches someone's arm.,steps and slowly lifts her hands from the position of her waist and then slowly lifts it.,takes someone's hand.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone notes an address on the model:.,Someone\nlsmdc3013_BURLESQUE-5167,4170,Someone heads for the door. Someone,walks up a staircase to the top floor and its breathtaking view of the city.,hesitates while he shuts the door in their open matching bag.,slams the door shut as the ambulance rushes up to her father's office.,turns around and gazes out through a glass - fronted window.,,gold1-reannot,pos,unl,pos,pos,n/a,Someone heads for the door.,Someone\nlsmdc3019_COLOMBIANA-8962,11820,\"He glances toward the bedroom where someone lies asleep under rumpled covers. Grabbing his phone, he\",heads over and gazes down at the slumbering beauty.,searches through a bedside cabinet.,lowers his ear with a brush and dials on the number.,turns off his tv.,presses his face to the window.,gold0-orig,pos,unl,unl,unl,unl,He glances toward the bedroom where someone lies asleep under rumpled covers.,\"Grabbing his phone, he\"\nlsmdc3019_COLOMBIANA-8962,11812,She glances back at someone. Someone,breaks into a grin.,pulls out a lollipop.,holds his gaze for her.,\"lies on her back on her bed, laughing as someone's stares into her eyes.\",returns to the table and finds someone looking at him stonily.,gold0-orig,pos,unl,unl,unl,unl,She glances back at someone.,Someone\nlsmdc3019_COLOMBIANA-8962,11823,He hurls the newspaper at her. She,lowers her gaze to a headline.,\"approaches someone, who also prepares to make a drink.\",shows on her laptop.,\"leaves, leaving the car turning.\",,gold0-orig,pos,unl,unl,unl,n/a,He hurls the newspaper at her.,She\nlsmdc3019_COLOMBIANA-8962,11824,She lowers her gaze to a headline. He,presses her against a shelf.,lifts the phone off her ear and has had to move the steps to be sexy.,jabs the butt at the clippings.,drops her stunned sunglasses.,\"holds the ticket out of her eyes, then steps back to someone.\",gold0-orig,pos,unl,unl,unl,pos,She lowers her gaze to a headline.,He\nlsmdc3019_COLOMBIANA-8962,11822,Now someone strides down an aisle in a used book store. He,hurls the newspaper at her.,caresses the other woman's hair.,strolls onto a street.,\"enters with the piano, reading, peeling movies, miserably.\",shows someone on a tv pad on his desk.,gold1-orig,pos,unl,unl,unl,unl,Now someone strides down an aisle in a used book store.,He\nlsmdc3019_COLOMBIANA-8962,11815,\"Someone grabs her arms and holds her at bay. Under his steady gaze, she\",gives a yielding look.,dives into his shock.,holds her hands to her mouth.,gazes at the marauder's inscription.,,gold0-orig,pos,unl,unl,unl,n/a,Someone grabs her arms and holds her at bay.,\"Under his steady gaze, she\"\nlsmdc3019_COLOMBIANA-8962,11819,\"Spotting the plush gift, someone picks it up. He\",glances toward the bedroom where someone lies asleep under rumpled covers.,reads it.,drags her soundly up.,tosses it in the trash can.,,gold1-orig,pos,unl,unl,pos,n/a,\"Spotting the plush gift, someone picks it up.\",He\nlsmdc3019_COLOMBIANA-8962,11817,\"With both hands, he brushes someone's hair away from her face. As he\",sprinkles her with more kisses.,\"caresses a portrait, she gazes at someone with an sad gaze.\",\"regards her, she claps there with her mouth.\",\"looks behind her, he turns away.\",\"stands, someone stands and places her hands on her hip.\",gold1-orig,pos,unl,unl,pos,pos,\"With both hands, he brushes someone's hair away from her face.\",As he\nlsmdc3019_COLOMBIANA-8962,11811,\"Tilting her head, she rumples her lips then grazes them with her fingers as her eyes fill with tears. She\",glances back at someone.,rushes up into the empty glass and peeks out.,meet nearby.,turns to an assistant.,,gold1-orig,pos,unl,unl,pos,n/a,\"Tilting her head, she rumples her lips then grazes them with her fingers as her eyes fill with tears.\",She\nlsmdc3019_COLOMBIANA-8962,11816,\"Under his steady gaze, she gives a yielding look. She\",raises her arms letting him lift off her shirt.,gives the wistful look and heads after the girl.,gets out of the car.,grins with a sneer.,eyes her husband's doleful gaze.,gold1-orig,pos,unl,unl,unl,unl,\"Under his steady gaze, she gives a yielding look.\",She\nlsmdc3019_COLOMBIANA-8962,11818,\"As he sprinkles her with more kisses. The next morning, the stuffed alligator\",sits on a table in front of a tray holding glasses of orange juice.,\"rolls down, leaving its various men inside a restaurant.\",turns to someone and quickly hands him a bill.,is with her leg flung through the venetian blinds by locking her bedroom door shut.,rolls into a print bed.,gold0-orig,pos,unl,unl,unl,unl,As he sprinkles her with more kisses.,\"The next morning, the stuffed alligator\"\nlsmdc3019_COLOMBIANA-8962,11809,\"Blinking her woeful eyes, she opens her mouth to speak. She\",leans her head on her hands.,emerges from the flickering candle in the bed delicate strands of fluffy yellow stripes.,lowers her enraptured gaze and nods.,\"looks away, wrapping her arms around his waist and leads him away.\",holds up her hand and holds it up in order to gaze ahead.,gold0-reannot,pos,unl,pos,pos,pos,\"Blinking her woeful eyes, she opens her mouth to speak.\",She\nlsmdc3019_COLOMBIANA-8962,11813,Someone breaks into a grin. She,leans closer and presses her lips to someone's.,steps into the room.,stares at him close and he looks up to someone.,\"looks at him, confused.\",\"looks up at his daughter and gives him a big smile, then says.\",gold0-reannot,pos,unl,unl,unl,unl,Someone breaks into a grin.,She\nanetv_LChqFAESyCg,19278,She begins applying the lipstick on her lips. Then she,uses the same lipstick and dabs it on her cheeks.,adds shaving cream and applies lotion to her face.,takes a sharp bow to put the contact into her eye.,puts a curler under the cat's toenails.,,gold0-orig,pos,unl,unl,unl,n/a,She begins applying the lipstick on her lips.,Then she\nanetv_LChqFAESyCg,19277,She opens her mirror cabinet and takes her lipstick out. She,begins applying the lipstick on her lips.,\"checks her reflection in another mirror, then lifts her mirror to the end.\",\"grasps the waistband of her jeans, gets up, and moves down the front step.\",continues talking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,She opens her mirror cabinet and takes her lipstick out.,She\nanetv_LChqFAESyCg,19276,There's a young girl standing in her bathroom doing a tutorial on how to apply lipstick. she,opens her mirror cabinet and takes her lipstick out.,finally brushes the lens.,points how to use the hose to look in the mirror.,measures the product and wipes it off with her fingers.,is then shown braiding the other girl as well as talking to her camera.,gold0-orig,pos,unl,unl,unl,unl,There's a young girl standing in her bathroom doing a tutorial on how to apply lipstick.,she\nanetv_LChqFAESyCg,19279,She uses her fingers to smear the lipstick evenly on her cheek bones. Then she,\"pouts and smiles for the camera, striking a pose.\",\"goes back to the chair, brushing her fingers.\",\"turns banking and kisses him softly, stroking her long hair.\",puts out her cigarette and blow some suds on her hands.,closes her eyes and looks down.,gold1-reannot,pos,unl,unl,unl,pos,She uses her fingers to smear the lipstick evenly on her cheek bones.,Then she\nlsmdc0014_Ist_das_Leben_nicht_schoen-54818,448,\"This is someone, the bank examiner, come for his annual audit of the books of the Building and Loan. He\",\"gives the phone to someone, puts down his wreath and goes over to someone.\",has run along someone's stairs into his hospital bedroom.,backs the ball across a field.,\"empties the shelves crammed in wooden cases, as well as people in room.\",,gold0-orig,pos,unl,unl,unl,n/a,\"This is someone, the bank examiner, come for his annual audit of the books of the Building and Loan.\",He\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,864,\"They drop him, then lift the coffin's lid. They\",lay him face down in the casket.,fall just out of the window.,wear fancy gold medal.,catch two more cautiously.,paddle in the water.,gold0-orig,pos,unl,unl,unl,unl,\"They drop him, then lift the coffin's lid.\",They\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,861,\"Just as Reverend Davis arrives. In the parlor, the brothers\",maneuver their way past rows of chairs.,find oil full of corn colored hair.,approach another built guest.,look towards a breakfast table.,,gold0-orig,pos,unl,unl,pos,n/a,Just as Reverend Davis arrives.,\"In the parlor, the brothers\"\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,860,\"Someone leads them to the deserted parlor. Standing in the hallway, someone\",slides the rooms ornate doors shut.,\"removes his mask, parked the clip from someone's registering and runs upstairs to answer it.\",\"walks towards someone with his arms folded out, hurries over the rail, and proceeds down an aisle.\",takes out a phone.,leads someone through the mess.,gold1-orig,pos,unl,unl,pos,pos,Someone leads them to the deserted parlor.,\"Standing in the hallway, someone\"\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,859,\"She makes her way toward someone. In the study, someone\",nudges someone's foot off his leg.,strikes a spider behind swings.,shuts the door and strides away to her apartment.,dons a silver silver robe with furry pink and a white sun - quality cut.,\"is among him, as he sits down at the table.\",gold1-orig,pos,unl,unl,unl,unl,She makes her way toward someone.,\"In the study, someone\"\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,863,In the parlor the brothers struggle unsuccessfully to hold the dwarf and open the coffin at the same time. They,\"drop him, then lift the coffin's lid.\",finish their breakfast and talk as they.,gaze towards a silver hoop through the empty pool.,picks their way through a narrow hole within a huge wood metal hobbits as he sinks to his feet.,get there as soon as possible.,gold0-orig,pos,unl,unl,unl,unl,In the parlor the brothers struggle unsuccessfully to hold the dwarf and open the coffin at the same time.,They\nlsmdc3021_DEATH_AT_A_FUNERAL-1373,865,They lay him face down in the casket. Someone,regards the arrangement disapprovingly.,heads up the house towards the house of the school grounds.,rises to her feet and moves hurriedly into the bedroom.,\"tread out, aiming the wand angrily at the peg.\",has reached towards someone.,gold0-orig,pos,unl,unl,unl,pos,They lay him face down in the casket.,Someone\nanetv_GHU3G24jFjI,6170,\"One of the boys walks over to a mat, and starts break dancing. When he is done, the other boy\",saunters over and break dances too.,gets on the bars and does a routine on the stage.,walks to the wooden table where the potatoes are sitting.,is gone as the kid finds the pair by backing away while holding a mallet and watch him swim there.,performs some karate moves where a second body moves over to the floor and tries standing on the hardwood floor.,gold0-orig,pos,unl,unl,unl,unl,\"One of the boys walks over to a mat, and starts break dancing.\",\"When he is done, the other boy\"\nanetv_GHU3G24jFjI,6171,\"When he is done, the other boy saunters over and break dances too. They\",take turns dancing one more time before the crowd.,are after longer indoors.,move something on the other's arm and sit in the counter.,stop eating and continue some cocktail.,is breathing mid - scared and initially he snowboards and removes himself as one hand begins to move out of the way.,gold0-orig,pos,unl,unl,unl,unl,\"When he is done, the other boy saunters over and break dances too.\",They\nanetv_GHU3G24jFjI,6169,A man with a microphone is talking with two boys. One of the boys,\"walks over to a mat, and starts break dancing.\",is rolled around and is extremely serious.,is brushing his teeth and talking to the other guy.,jumps into a crane.,removes a smaller glass.,gold0-orig,pos,unl,unl,unl,unl,A man with a microphone is talking with two boys.,One of the boys\nanetv_GHU3G24jFjI,10045,The camera pans left to show an audience watching the three men. The three individuals,take turns walking onto a floor covering and dancing in front of the audience.,continue jumping high and discuss slightly by raising their arms and feet in the air.,dance at the piano for a large audience watching for the performance.,move randomly in a different direction.,,gold0-orig,pos,unl,pos,pos,n/a,The camera pans left to show an audience watching the three men.,The three individuals\nanetv_GHU3G24jFjI,10044,Three men stand next to each other. The camera pans,left to show an audience watching the three men.,on the toddlers while people walk on.,to a man riding down a ramp to water.,\"to show a boy speaking to the camera with different dogs, and dogs dogs.\",to a small stage.,gold1-orig,pos,unl,unl,unl,pos,Three men stand next to each other.,The camera pans\nanetv_fHEUdQY1cdc,18717,The people crowd around the bull waving sticks and follow the bull around as he gets angry. Another bull is shown and the two,fight while the people stand and cheer on the sides.,stop shooting their arrows each again.,get back in after others.,gets whipped to follow the bull.,,gold0-orig,pos,unl,pos,pos,n/a,The people crowd around the bull waving sticks and follow the bull around as he gets angry.,Another bull is shown and the two\nanetv_fHEUdQY1cdc,18716,Several people are seen running down the road around a bull with some holding sticks in their hands. The people,crowd around the bull waving sticks and follow the bull around as he gets angry.,are shown swimming along the field and shows people blowing leaves in the middle.,hit the ball back and fourth as others watch from multiple angles.,start riding the horse and end by washing the horses off the field.,continue to hit the puck with one another and interviewing the bull.,gold0-reannot,pos,unl,unl,unl,unl,Several people are seen running down the road around a bull with some holding sticks in their hands.,The people\nlsmdc1042_Up_In_The_Air-88454,4228,\"He bins a full - size pillow. At security, someone\",sees a group of businessmen.,\"offers out a crone, then grabs him sitting on root before forcing him to eat everything.\",shades a closed mirror with a table reading papers.,leads someone into two stairwell.,props on his tawny legs.,gold1-reannot,pos,unl,unl,unl,unl,He bins a full - size pillow.,\"At security, someone\"\nanetv_CXSoih6nFME,14845,She grabs some makeup and begins putting it all over her face. She,continues putting on more makeup and showing it off to the camera.,\"lays out a toothbrush, wipes it out and wipes it off with it, then does a 360 flip on the water.\",shaves out the path.,then adds a bit of yarn into her makeup hair.,,gold0-orig,pos,unl,unl,unl,n/a,She grabs some makeup and begins putting it all over her face.,She\nanetv_CXSoih6nFME,14844,A young child is seen adjusting the camera and showing off her face. She,grabs some makeup and begins putting it all over her face.,comes out of the shot and jumps over to a bike bar on her bike to adjust the bike.,begins climbing in the back.,continues to speak to the camera as well as talks to the camera and showing how people should listen.,,gold0-reannot,pos,unl,unl,pos,n/a,A young child is seen adjusting the camera and showing off her face.,She\nlsmdc1015_27_Dresses-79908,12958,Groom someone sees someone smiling at his friend. He,shoots him an inquiring glance.,sits on the floor by a door.,shuts it and reads the window again.,hits a lamp on the pan.,leads the group back to a loft where someone picks up a martini glass.,gold0-orig,pos,unl,unl,unl,unl,Groom someone sees someone smiling at his friend.,He\nlsmdc1015_27_Dresses-79908,12959,He shoots him an inquiring glance. The answer,is hopefully raised eyebrows.,seems not beginning to attract someone's attention.,bounces on his feet.,crosses the platform for the golden markings on the chalkboard.,slows when he sees someone's dark - rimmed dart.,gold0-orig,pos,unl,unl,unl,unl,He shoots him an inquiring glance.,The answer\nlsmdc1015_27_Dresses-79908,12957,\"The wedding party is led in by people in figure - hugging cream dresses, carrying bouquets of yellow and white flowers. Groom someone\",sees someone smiling at his friend.,\"wearing a skirt and a white outfit, someone, the figure with a century veil, is speaking.\",\", surfing, now his wife on.\",\"constantly, someone's father has bowed to the hairstylist.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The wedding party is led in by people in figure - hugging cream dresses, carrying bouquets of yellow and white flowers.\",Groom someone\nlsmdc1015_27_Dresses-79908,12961,People smile broadly at each other. The guests,\"stand as someone, in a simple white dress, is escorted in by her father.\",\"begin to climb in and out of the train, as it races toward it among the gray - robed policemen.\",stare for a very long time.,\"watch savage, belligerent.\",make their way past someone.,gold0-orig,pos,unl,unl,unl,pos,People smile broadly at each other.,The guests\nlsmdc1015_27_Dresses-79908,12960,The answer is hopefully raised eyebrows. People,smile broadly at each other.,\"someone approaches the class he stops, continues staring, and leans up in his seat, gazing back in her direction.\",\", someone tosses a container to someone who talks to the busy group who sneak around to the end.\",someone walks ominously towards someone at the far edge of the clearing on the pavement.,,gold0-reannot,pos,unl,unl,unl,n/a,The answer is hopefully raised eyebrows.,People\nanetv_qsTCTQo-wI8,19701,He demonstrates how he alternates between three bongos. He later,switches to a much slower beat and rhythm by drumming on the bongos.,demonstrates how to lift a machine balanced by vigorously.,jumps up to the other drum that opens to the side and then focuses on it.,takes the second one while looking at top.,stops before waves and then lifts a pair of baton high.,gold0-orig,pos,unl,unl,unl,unl,He demonstrates how he alternates between three bongos.,He later\nanetv_qsTCTQo-wI8,19700,A man is explaining how to play the drums on bongos. He,demonstrates how he alternates between three bongos.,pauses and puts his harmonica down.,is playing a number of drums and cymbals.,is playing the harmonica.,,gold0-orig,pos,unl,unl,unl,n/a,A man is explaining how to play the drums on bongos.,He\nanetv_qsTCTQo-wI8,19703,He explains how the beats on the drum changes as the rhythm changes. He then,switches back to a faster beat and rhythm on the drums by alternating between two drums.,begins to play and stops playing the guitar.,strums the paddle again.,starts to advertisements for the guitar.,steps on demonstrating 2 foot and sits ups.,gold0-orig,pos,unl,unl,unl,unl,He explains how the beats on the drum changes as the rhythm changes.,He then\nanetv_qsTCTQo-wI8,19702,He later switches to a much slower beat and rhythm by drumming on the bongos. He,explains how the beats on the drum changes as the rhythm changes.,leaves surreptitiously at the trunk.,may really hold a heart skipping out of his hand.,is very little awake now.,,gold0-orig,pos,unl,unl,unl,n/a,He later switches to a much slower beat and rhythm by drumming on the bongos.,He\nanetv_p3LvCbxC_ZE,7073,A camera pans around a large yard to show two people moving a wooden bar. One man then,steps on the bar and begins using a tool to cut down hedges.,lays down and continues by lifting the boy up and down before applauding the game on the side.,stretches out his foot and walks deeper into the pit.,does a hand stand with each walk while the camera captures them from doing the same thing.,takes the contact lens out and shows one cream to the camera.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a large yard to show two people moving a wooden bar.,One man then\nanetv_gl_0jjJBUkc,10335,He looks up to the camera while washing clothes. Another man,walks into frame and begins washing clothes in a bucket.,enters the office by hitting the dishes and wiping it away with a towel.,enters and holds out a rag and washes a beach off under a sink.,raises the razor and begins shaving his neck while rubbing shaving cream into his mouth.,comes out of the shower and grabs the hose.,gold0-orig,pos,unl,unl,pos,pos,He looks up to the camera while washing clothes.,Another man\nanetv_gl_0jjJBUkc,10334,A young man is seen kneeling down before a bucket. He,looks up to the camera while washing clothes.,picks up a vacuum and mops the floor in the tub.,begins spraying it with a hose and bends down to brush his teeth.,sweeps up the plants into the sand.,,gold1-orig,pos,unl,unl,unl,n/a,A young man is seen kneeling down before a bucket.,He\nanetv_gl_0jjJBUkc,9431,A man is seen kneeling over a bucket dipping clothes inside and washing. Another man,is seen standing in front of a hose and dipping clothes underneath as well.,washes dry leaves over a pile.,is dressed in a basket as he attempts to wash dishes as well.,walks in frame with the camera laying on the floor while still speaking to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is seen kneeling over a bucket dipping clothes inside and washing.,Another man\nanetv_cwhkG3LhZO8,13187,\"He then walked with both his elbows up towards the road. The boy is on stage playing a brown guitar, he is not wearing a shirt, there's a microphone in front of him, behind him\",is a man playing a guitar too.,warming up to be playing on his lap.,\"and the barbell is firmly placed on his chest with the violin, but the man is n't aware of the music.\",in an outdoor front.,,gold0-orig,pos,unl,unl,pos,n/a,He then walked with both his elbows up towards the road.,\"The boy is on stage playing a brown guitar, he is not wearing a shirt, there's a microphone in front of him, behind him\"\nanetv_cwhkG3LhZO8,13186,\"A little boy is standing at the parking lot, he is not wearing a shirt, he talked to the camera. He then\",walked with both his elbows up towards the road.,demonstrates how to work on a kayak.,lifts a little shovel off a control ramp.,goes back to holding ice sander and began shining it.,,gold1-orig,pos,unl,unl,unl,n/a,\"A little boy is standing at the parking lot, he is not wearing a shirt, he talked to the camera.\",He then\nanetv_ObkyDlB5wvs,18687,More people are seen speaking to the camera as well as people fencing in between. Several shots,are shown of people fencing one another while others still speak to the camera.,are shown of people lifting disappointment on the sides while showing how to do drills are shown.,are shown of scoreboard hitting sticks on the ground while others watch on the sides.,are shown of athletes throwing the flag while others watch themselves on the side.,are then shown of a match outside with a woman speaking to the camera and smiles in costume.,gold0-orig,pos,unl,unl,unl,unl,More people are seen speaking to the camera as well as people fencing in between.,Several shots\nanetv_ObkyDlB5wvs,6826,\"Several people are shown talking and a man begins dressing in a fencing uniform. Once all of his garments are on, they\",are inside of a building and fighting on another.,begin to run and finish to show make their hands and make bows.,\"have given fingers, one of the contestants.\",go inside and salon them.,are still shown in their two jaws.,gold1-orig,pos,unl,unl,unl,unl,Several people are shown talking and a man begins dressing in a fencing uniform.,\"Once all of his garments are on, they\"\nanetv_ObkyDlB5wvs,6827,\"Once all of his garments are on, they are inside of a building and fighting on another. All of them\",begin fencing and a screen shows with arrows on it.,or the mohawk are right.,\"are a black and old bar, one stucco and they get one piercing and go inside the car.\",have been ball in smaller cones.,are more doorframe drums along with them.,gold1-orig,pos,unl,unl,unl,unl,\"Once all of his garments are on, they are inside of a building and fighting on another.\",All of them\nanetv_ObkyDlB5wvs,18686,A person is seen putting fencing gear on while another man speaks to the camera. More people,are seen speaking to the camera as well as people fencing in between.,are shown interspersed with shots of the equipment failing for not being shown.,perform various instruments one by one while more people show one different partner and the other.,are seen playing hockey while the audience watches.,are seen arm wrestling while along with others talking around.,gold0-orig,pos,unl,pos,pos,pos,A person is seen putting fencing gear on while another man speaks to the camera.,More people\nanetv_C7rGK81C7SU,17341,The woman puts the decorations around the cake and continues decorating more objects on the side. She,finishes the cake by adding the final decorations and presenting it to the camera.,continues to torch the paint and carefully brushes it down to show her surroundings.,continues to dance around into the darkness and ends with more ornaments.,continues speaking to the camera while still speaking to the camera.,uses various tools to keep the wrap up and remove create decorations and make ornaments on her nails.,gold0-orig,pos,unl,unl,unl,pos,The woman puts the decorations around the cake and continues decorating more objects on the side.,She\nanetv_C7rGK81C7SU,17340,A persons hands are seen laying clay out onto a cake and begins painting objects on the side. The woman,puts the decorations around the cake and continues decorating more objects on the side.,continues exercising while pausing to speak to the camera.,continues painting while the camera zooms in on a piece of wallpaper.,uses a large brush to wipe the wall surface.,continues placing the other painting around the table while looking off into the distance while the camera watches.,gold0-orig,pos,unl,unl,unl,unl,A persons hands are seen laying clay out onto a cake and begins painting objects on the side.,The woman\nanetv_9T1C2CW_P0A,2375,\"They have a singer, guitarist and even drummer all together trying to make some music. The signer is very passionate about his work, he\",gets very into the song.,maneuvers around buckets and taunting it.,is about to be some sort of thing.,asks the song for a song.,has not bad enough.,gold0-orig,pos,unl,unl,unl,unl,\"They have a singer, guitarist and even drummer all together trying to make some music.\",\"The signer is very passionate about his work, he\"\nanetv_9T1C2CW_P0A,18365,\"As the song continues, the singer begins making several faces and grabbing the mic to evoke emotion into the song he is singing. While he is playing, the camera then\",moves to the rest of the guys and shows close ups of the men playing the drums and showing their enthusiasm.,\"begins to play, then heads to it around while laughing.\",stops to twirl his other finger off the setting screen.,begins to jam and between his legs as he plays the drums using both hands.,begins to go across the blue with pink foam.,gold0-orig,pos,unl,unl,unl,unl,\"As the song continues, the singer begins making several faces and grabbing the mic to evoke emotion into the song he is singing.\",\"While he is playing, the camera then\"\nanetv_9T1C2CW_P0A,2376,\"The signer is very passionate about his work, he gets very into the song. Dancing with the mic stand and all as his peers\",play along with him having a good time.,adjust him then slip from the seat and slide to the ground.,slow down and appear to be sedate.,go into the deep.,,gold0-orig,pos,unl,unl,unl,n/a,\"The signer is very passionate about his work, he gets very into the song.\",Dancing with the mic stand and all as his peers\nanetv_9T1C2CW_P0A,2374,A group of men have formed together a nice little band. They,\"have a singer, guitarist and even drummer all together trying to make some music.\",are being positioned in a green field.,are two teams playing instruments.,are in a backyard watching.,are in white jerseys on the grass watching them.,gold0-orig,pos,unl,unl,unl,unl,A group of men have formed together a nice little band.,They\nanetv_SmBEf-g82Ew,12174,A close up of tools and objects are shown laid out leading into several clips of a mean measuring a wall and laying plaster down on it. The man,shows how to make plaster while transitioning with him making plaster and continues to show more clips of him laying it down.,is using a tool to cut the paper and cut kindling.,then demonstrates how to remove the shingles as well as looking at him.,shows off the mans place and shows how to use different attachments.,,gold0-reannot,pos,unl,unl,unl,n/a,A close up of tools and objects are shown laid out leading into several clips of a mean measuring a wall and laying plaster down on it.,The man\nanetv_9VGbtQrlcN4,19000,He sprays the door and wipes down the window while still speaking. He,sprays the window again and wipes it down one more time.,\"walks next to him and shows off the ingredients, scraping it, trying to spray the flower in a clear red cup.\",continues to wash his hands while still speaking to the camera.,\"takes a cup, holds up several parts in the end and starts through the window.\",is then seen speaking to the camera and points to various objects that are used to box.,gold0-orig,pos,unl,unl,unl,pos,He sprays the door and wipes down the window while still speaking.,He\nanetv_9VGbtQrlcN4,16631,\"First he rolls down the driver window and applies the soap and water solution to the glass. Then he scrapes the window using a triumph scraper and when it's scraped clean, he rolls the window back down and he sprays the glass again and he\",uses a paper towel to wipe anything left on the window.,gets soap off in the driver's window then continues putting the blade into the wash he is wearing.,\"lays it on, then tilting his head to show a ruin that it is onto.\",makes it through the back door to the hole.,\"uses a toothbrush first to drain the car, and all other parts of the window are not driving.\",gold0-orig,pos,unl,unl,unl,unl,First he rolls down the driver window and applies the soap and water solution to the glass.,\"Then he scrapes the window using a triumph scraper and when it's scraped clean, he rolls the window back down and he sprays the glass again and he\"\nanetv_9VGbtQrlcN4,18999,A man is seen speaking to the camera while standing behind a car door. He,sprays the door and wipes down the window while still speaking.,puts his ring back on his belt.,\"puts a fence behind the truck and takes off grass, moving then pulling a car's goggles in place.\",laughs into the radio as he talks to the camera.,speaks to the camera while the camera continues to lead him onto the roads and panning around the factory.,gold1-orig,pos,unl,unl,pos,pos,A man is seen speaking to the camera while standing behind a car door.,He\nanetv_9VGbtQrlcN4,16630,Lawrence is showing and telling viewers how to clean and prep your windows. First he,rolls down the driver window and applies the soap and water solution to the glass.,applies more such stamps without good pressure.,peeks through the partition blinds creating a window.,is showing what man will use to remove wallpaper from the top of that brick.,,gold0-orig,pos,unl,unl,pos,n/a,Lawrence is showing and telling viewers how to clean and prep your windows.,First he\nlsmdc3064_SPARKLE_2012-3951,14770,Someone turns to watch them. Someone,puts on his cap.,is following a little woman.,lies lying on the bed.,gazes down the equipment.,,gold0-orig,pos,unl,unl,pos,n/a,Someone turns to watch them.,Someone\nlsmdc3064_SPARKLE_2012-3951,14788,Someone shoots someone a look. She,softens and leans forward.,talks to the computer.,peers through the champagne glass.,drops her guns and wanders off.,\"gawks at someone, who opens the motel door.\",gold1-orig,pos,unl,unl,pos,pos,Someone shoots someone a look.,She\nlsmdc3064_SPARKLE_2012-3951,14800,\"On stage, the lead singer holds her hand to her ear like a telephone. Someone\",turns and notices someone.,\"takes a flute, sets it down and closes the 20 between them.\",woman places the ring stylus of the box on the lower finger.,sits across the table to someone who's waving at someone.,faces an arc reactor.,gold0-orig,pos,unl,unl,unl,unl,\"On stage, the lead singer holds her hand to her ear like a telephone.\",Someone\nlsmdc3064_SPARKLE_2012-3951,14790,\"Later the sisters get in a white Sedan. The Sedan drives off, and our view\",leaves a window to find someone asleep on the couch.,rolls down the windshield.,drifts over her shoulder.,continues to engulf someone.,drifts to the abduction.,gold1-orig,pos,unl,unl,unl,unl,Later the sisters get in a white Sedan.,\"The Sedan drives off, and our view\"\nlsmdc3064_SPARKLE_2012-3951,14802,\"Someone's eyes dart around the room as he sips his drink. From backstage, Sister\",spots someone among the crowd.,notices the two girls women who don't notice.,applies makeup to the colleague who strides forward as sebastian is rotating him and his new chair.,brushes her way down her ankles.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's eyes dart around the room as he sips his drink.,\"From backstage, Sister\"\nlsmdc3064_SPARKLE_2012-3951,14779,Someone grabs her pocket book. She,waves goodbye to a saleswoman and steps out from behind the counter.,stares at some drawings as she goes.,pinches her lips in an uncertain look.,\"copies the winnings, she walks past major someone, who remains at a table with the woman with the women.\",,gold0-orig,pos,pos,pos,pos,n/a,Someone grabs her pocket book.,She\nlsmdc3064_SPARKLE_2012-3951,14792,\"Outside, someone waits under an awning reading Cliff Bells. He\",checks his wrist watch.,clings to the spokes.,\"waves his hands away, then hops in.\",lowers her hands onto her hips and lifts her head.,opens an envelope where a friendly sad - faced woman holds him out.,gold0-orig,pos,unl,unl,unl,pos,\"Outside, someone waits under an awning reading Cliff Bells.\",He\nlsmdc3064_SPARKLE_2012-3951,14769,Someone walks back to his friends where someone holds his pretty date on his lap. someone,turns to watch them.,desperately reaches for his feet.,storms back staring past in front of him.,\"grins at them both, setting the fish back on the table.\",takes out an envelope.,gold1-orig,pos,unl,unl,unl,unl,Someone walks back to his friends where someone holds his pretty date on his lap.,someone\nlsmdc3064_SPARKLE_2012-3951,14797,\"Sitting at the bar, someone spots someone enter with his entourage. a cameraman\",snaps a flash photo.,artist is examining his left eye.,faces the first man.,pops up behind her.,,gold0-orig,pos,unl,pos,pos,n/a,\"Sitting at the bar, someone spots someone enter with his entourage.\",a cameraman\nlsmdc3064_SPARKLE_2012-3951,14774,Someone slips the box and picture in his pocket. As someone,opens the door for her.,steps into the foyer.,leans against the fireplace.,pulls the boy away.,,gold0-orig,pos,pos,pos,pos,n/a,Someone slips the box and picture in his pocket.,As someone\nlsmdc3064_SPARKLE_2012-3951,14789,She softens and leans forward. Later the sisters,get in a white sedan.,switch into a sunlit road.,get up weeds from the lion 'enclosure.,proceed down the hall on a clapboard carpet.,,gold1-orig,pos,unl,unl,unl,n/a,She softens and leans forward.,Later the sisters\nlsmdc3064_SPARKLE_2012-3951,14778,Sara follows someone to the dressing room. Someone,grabs her pocket book.,greets the man and gives a cocky shrug.,notes through identical identical holes in the wall.,takes a glass from him cabinet.,treads over a bath area outside a closed door.,gold0-orig,pos,unl,unl,unl,unl,Sara follows someone to the dressing room.,Someone\nlsmdc3064_SPARKLE_2012-3951,14785,\"He glances around, then talks through the glass. With her back to him, she\",breaks into a smile.,eyes him with powder in his faces.,storms to the brunette's door.,nudges his elbow and slaps him on the cheek.,takes a sip and looks at him again.,gold0-orig,pos,unl,unl,unl,pos,\"He glances around, then talks through the glass.\",\"With her back to him, she\"\nlsmdc3064_SPARKLE_2012-3951,14801,\"Someone crosses the room, smoking a cigarette. He\",takes a seat at a booth with someone and their dates.,smiles at someone 'wall.,\"puts in a fedora, then checks at his watch.\",walks across the room toward the bedroom.,watches someone explain his job.,gold1-orig,pos,unl,unl,pos,pos,\"Someone crosses the room, smoking a cigarette.\",He\nlsmdc3064_SPARKLE_2012-3951,14799,\"A bartender brings someone a drink. On stage, the lead singer\",holds her hand to her ear like a telephone.,spins out of a newscast spot with his partner.,helps two from a four - tiered dance.,leans over the entrance of a tourist fondling the staff operator.,talks to the audience watching them.,gold1-orig,pos,unl,unl,unl,unl,A bartender brings someone a drink.,\"On stage, the lead singer\"\nlsmdc3064_SPARKLE_2012-3951,14781,\"Inside, two girls dance in slow motion inside a glass listening booth. Someone\",sits alone in the next booth.,\"stares at his face, then covers his head.\",see someone down the hall past people.,nervously watches someone as he walks to a podium.,\"takes to the kitchen, takes out the papers.\",gold0-orig,pos,unl,unl,unl,unl,\"Inside, two girls dance in slow motion inside a glass listening booth.\",Someone\nlsmdc3064_SPARKLE_2012-3951,14773,She leaves the box and the little ring picture on the table with the half eaten food and drinks. Someone,slips the box and picture in his pocket.,watch as the thug accidentally hits someone in the arm.,\"steps into the kitchen, and looks into the room.\",\"leads the spaghetti over the table, and someone swigs from a bottle.\",,gold0-orig,pos,unl,pos,pos,n/a,She leaves the box and the little ring picture on the table with the half eaten food and drinks.,Someone\nlsmdc3064_SPARKLE_2012-3951,14776,Someone looks back at someone. He,\"takes a flash photo of her, then lowers his camera and smiles.\",sits on the island.,throws away the edges of her sawed - duty shotgun.,stands behind someone and reaches down to grab him.,looks up at the secretary.,gold1-orig,pos,unl,unl,pos,pos,Someone looks back at someone.,He\nlsmdc3064_SPARKLE_2012-3951,14803,\"From backstage, Sister spots someone among the crowd. The performers\",struck a final pose.,face off with her reclined dancers.,take their seats back the other way.,pose as her performance.,take a bottle off her dock.,gold0-orig,pos,unl,unl,unl,unl,\"From backstage, Sister spots someone among the crowd.\",The performers\nlsmdc3064_SPARKLE_2012-3951,14771,Someone puts on his cap. She,\"collects her purse and jacket, and heads for the door.\",looks at the floor and finds him lying on the bed.,walks slowly through a flight of stairs to the mansion which are mostly empty.,sniffs her wound.,,gold1-orig,pos,unl,unl,unl,n/a,Someone puts on his cap.,She\nlsmdc3064_SPARKLE_2012-3951,14798,A cameraman snaps a flash photo. A bartender,brings someone a drink.,holds up a box.,demonstrates the necessary honing file.,regards man in a soul bob.,sucks a drink of the team and makes a speech.,gold0-orig,pos,unl,unl,unl,unl,A cameraman snaps a flash photo.,A bartender\nlsmdc3064_SPARKLE_2012-3951,14793,He checks his wrist watch. He,sees someone toss the white sedan's keys to the valet.,\"looks back, then clicks off the sheet.\",casts specs into two panels brackets on the wall.,flings his beer on someone.,places the sink level.,gold1-reannot,pos,unl,unl,unl,unl,He checks his wrist watch.,He\nlsmdc3064_SPARKLE_2012-3951,14772,\"She collects her purse and jacket, and heads for the door. She\",leaves the box and the little ring picture on the table with the half eaten food and drinks.,\"picks score, runs down, and slides into stacks.\",grabs her coat from one of the bags.,picks up the packet and walks over to her again.,\"lies on her back, reading her cigarette.\",gold0-reannot,pos,unl,unl,unl,unl,\"She collects her purse and jacket, and heads for the door.\",She\nlsmdc3064_SPARKLE_2012-3951,14783,\"She checks her watch, then examines a record album cover. Someone\",knocks on the glass.,catches it and shows it down.,checks the impact gauge.,gently caresses his face with his gloved hand.,listens in a beat.,gold0-reannot,pos,unl,unl,pos,pos,\"She checks her watch, then examines a record album cover.\",Someone\nlsmdc3064_SPARKLE_2012-3951,14780,\"She waves goodbye to a saleswoman and steps out from behind the counter. Inside, two girls\",dance in slow motion inside a glass listening booth.,walk through a bungee rope hanging up shingles.,\"are on a building, chatting in an elegant cake.\",stroll along a hole in the shore.,leave a room with the bottles under her closet.,gold0-reannot,pos,unl,unl,unl,unl,She waves goodbye to a saleswoman and steps out from behind the counter.,\"Inside, two girls\"\nlsmdc3064_SPARKLE_2012-3951,14794,He sees someone toss the white Sedan's keys to the valet. The Anderson sisters,spot the group on stage.,makes their way along a narrow track.,are now doing dancing in a packed gym.,dine downstairs in their pajamas.,set up the rear - ed train trunk.,gold0-reannot,pos,unl,unl,unl,unl,He sees someone toss the white Sedan's keys to the valet.,The Anderson sisters\nlsmdc3064_SPARKLE_2012-3951,14786,\"With her back to him, she breaks into a smile. Now in the someone's bedroom, someone\",wears curlers and straightens someone's hair.,opens the door to the backdoor.,looks out through the hole in the ceiling.,drops plastic on a trash can.,,gold1-reannot,pos,unl,pos,pos,n/a,\"With her back to him, she breaks into a smile.\",\"Now in the someone's bedroom, someone\"\nlsmdc0016_O_Brother_Where_Art_Thou-55578,6430,\"He locks the nose onto someone's chain and levers the arms. As his hand chinks free, someone\",does not react to his newfound liberty.,arrives at someone's cell.,snatches out the shell.,grabs him away atop a lever.,,gold0-orig,pos,unl,unl,unl,n/a,He locks the nose onto someone's chain and levers the arms.,\"As his hand chinks free, someone\"\nlsmdc0016_O_Brother_Where_Art_Thou-55578,6428,A moment later someone rises over the lip of his bed. His face is blacked and he,sways as if standing on a boat.,presses his ear to the ring's rim.,makes the barrel against the neck of his bobbing head.,reaches the flask in his find packet beside him.,climbs up and draws the wheelchair.,gold0-orig,pos,unl,unl,unl,unl,A moment later someone rises over the lip of his bed.,His face is blacked and he\nlsmdc0016_O_Brother_Where_Art_Thou-55578,6429,\"He is raising a large, long - armed, short - nosed pincering tool. He\",locks the nose onto someone's chain and levers the arms.,\"picks up his grocery bag, sets it aside.\",\", the pan begins to blend with the two - fingered grimace with valuables.\",comes into the room and starts at the gate.,has finally pulled the way.,gold0-reannot,pos,unl,unl,unl,unl,\"He is raising a large, long - armed, short - nosed pincering tool.\",He\nanetv_WqDep-4l0yc,14781,The man reaches to pet the dog as the dog walks around and then picks the dog up and holds the dog up by a strap on the top of the life jacket over the water and then sets the dog down back into the boat by the life jacket. The man,begins to paddle the boat out into the water as the dog watches on from the side of the boat.,throws up at the door again while still having a strange life.,throws a newspaper to the ground while he throws the frisbee.,\"stands after and then walks up to the dog, by the right kid occasionally whispering signs at him clad in a white dress.\",continues and wipes his left paw and continues moving.,gold0-orig,pos,unl,unl,unl,pos,The man reaches to pet the dog as the dog walks around and then picks the dog up and holds the dog up by a strap on the top of the life jacket over the water and then sets the dog down back into the boat by the life jacket.,The man\nanetv_WqDep-4l0yc,981,\"He moves it onto the water, canoeing around with his dog. He\",is shown paddling and turning in the lake.,moves in and out of the water and him towards the pool.,approaches the smaller area and ends by walking away.,abruptly pulls out his profile.,,gold0-orig,pos,unl,unl,unl,n/a,\"He moves it onto the water, canoeing around with his dog.\",He\nanetv_WqDep-4l0yc,980,A man is talking while seated in a large canoe. He,\"moves it onto the water, canoeing around with his dog.\",begins walking his kayak behind the boat.,is smiling to the camera as he finishes and zooms in on the settings.,dives in two directions and surround the area of the pool.,started to then relax and are pushed in the water.,gold0-orig,pos,unl,unl,unl,unl,A man is talking while seated in a large canoe.,He\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16537,The officers place the couple in side - by - side cells. Someone,beams at him and shakes her head.,takes a pack of cigarettes as a silver bullet rounds the trunk.,lies in his face.,follows someone through the door.,turns around and halts abruptly as people turn towards someone.,gold0-orig,pos,unl,unl,pos,pos,The officers place the couple in side - by - side cells.,Someone\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16534,\"As the bounty hunter descends the stoop, the arresting officer from the parade swaggers up. Someone\",eyes him with a half - smile.,onto himself as the vehicle runs across the camp hut he dashes up a long tunnel into a narrow road.,\"hands over another cup, which someone drops them down.\",\"swipes after him, then kicks the soldier away again.\",gets to his feet and switches on the radio.,gold0-orig,pos,unl,unl,unl,pos,\"As the bounty hunter descends the stoop, the arresting officer from the parade swaggers up.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16531,A female officer leads someone away as she glares at someone. The bounty hunter signs a form and the cop at the desk,shakes his head incredulously.,cruises up someone at his laptop.,shakes out of sight.,lowers his questioning gaze.,listens to the radio.,gold0-orig,pos,unl,unl,unl,pos,A female officer leads someone away as she glares at someone.,The bounty hunter signs a form and the cop at the desk\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16540,\"Separating, they gaze into each other's eyes. Grinning, someone\",massages his neck then wraps her arms around him once again.,watches the blanket move into the room.,kisses someone's fist and takes a drag.,makes someone come in with his drink.,watches someone stack his fingers against her nightie.,gold0-orig,pos,unl,unl,unl,pos,\"Separating, they gaze into each other's eyes.\",\"Grinning, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16532,\"The bounty hunter signs a form and the cop at the desk shakes his head incredulously. Pursing his mouth regretfully, someone\",waves goodbye to the cop and ambles out.,moves to the lunch table.,\"puts up the cigarette, toward someone's vehicle.\",swallows the base full of cucumbers.,,gold1-orig,pos,unl,unl,unl,n/a,The bounty hunter signs a form and the cop at the desk shakes his head incredulously.,\"Pursing his mouth regretfully, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16541,\"Grinning, someone massages his neck then wraps her arms around him once again. They\",embrace and share a deep kiss.,picks up the handcuff.,sticks the tongue out would not like she had never seen dinner.,hold onto the bar several times as they pull away.,kisses her blonde friend's right shoulder.,gold0-orig,pos,unl,unl,unl,unl,\"Grinning, someone massages his neck then wraps her arms around him once again.\",They\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16529,\"Someone skids around a corner, pulls into a curbside spot, and brakes hard. She\",notices the police station across the street.,stops in front of someone to someone 'phone.,flings the biker off and attacks the dog.,\"swoops down the streets, following the next market as he passes.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone skids around a corner, pulls into a curbside spot, and brakes hard.\",She\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16533,\"Pursing his mouth regretfully, someone waves goodbye to the cop and ambles out. Now, someone\",strolls outside passing an officer and handcuffed teen on their way in.,sprints onto deck deck.,is holding a radio unlocked from a hook.,skates using the glowing rubber lights.,waits on a road as he wheels someone into the spacious office.,gold0-orig,pos,unl,unl,unl,unl,\"Pursing his mouth regretfully, someone waves goodbye to the cop and ambles out.\",\"Now, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16539,\"Someone strokes her ex - husband's hair then cups the back of his head in both her hands. Separating, they\",gaze into each other's eyes.,walk at the prow of the snitch.,relax into a passionate kiss.,share a lingering kiss on the lips.,share a tender look as she regards the town with a serene look on her face.,gold0-orig,pos,unl,unl,unl,unl,Someone strokes her ex - husband's hair then cups the back of his head in both her hands.,\"Separating, they\"\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16530,\"In the station, someone wears handcuffs. A female officer\",leads someone away as she glares at someone.,grabs the apartment phone and hurries out.,leads someone on a building to a temple.,leads her to an apartment building.,holds an iraqi emergency train.,gold0-orig,pos,unl,unl,unl,unl,\"In the station, someone wears handcuffs.\",A female officer\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16536,Someone shoves a cuffed someone toward a holding cell. The officers,place the couple in side - by - side cells.,shoot his glasses down then point out some bow.,\"follow the two women onward, removing a union jack, and surround a police car and towering quickly watching the men.\",scramble passed someone past an open door and peer through up the gate.,linger in their car.,gold0-orig,pos,unl,unl,unl,unl,Someone shoves a cuffed someone toward a holding cell.,The officers\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16535,\"Inside, someone uses a phone. Someone\",shoves a cuffed someone toward a holding cell.,rushes in and hits the gate leading to someone.,grins in pain and self - consciously.,squirts her from behind.,hurries up into the cell.,gold0-reannot,pos,unl,unl,unl,pos,\"Inside, someone uses a phone.\",Someone\nlsmdc3069_THE_BOUNTY_HUNTER-5204,16538,They step up to the bars. Someone,reaches through them and wraps her arms around someone's neck.,grabs someone's arm as she takes the keys on the can.,gathers matches from an ax.,\"holds the weight back, then straightens.\",,gold0-reannot,pos,unl,unl,unl,n/a,They step up to the bars.,Someone\nlsmdc1045_An_education-90232,1704,\"Disappointedly, someone puts the bottle back in her satchel. The teacher\",looks up as she leaves.,shrugs him over and pulls him into a hug.,waves after her as they share a look.,looks over one shoulder at the actress.,raises her arms in the shrug.,gold1-orig,pos,unl,pos,pos,pos,\"Disappointedly, someone puts the bottle back in her satchel.\",The teacher\nanetv_aGu-FfGDdVI,4729,\"A man is in the murky waters, using a paddle. He\",is kayaking toward the camera and past other kayakers.,steps back and forth into the water.,contains some tools that he uses to work for man.,starts fishing through the coast.,fills up with water and begins paddling back the river.,gold0-orig,pos,unl,unl,pos,pos,\"A man is in the murky waters, using a paddle.\",He\nanetv_aGu-FfGDdVI,4730,He is kayaking toward the camera and past other kayakers. He,\"goes through the water faster, trying to keep up with the current.\",continues his journey down the track and walking to the border of the stairs.,is also shown paddling in canoes.,\"beckons someone up to him, as he speaks.\",,gold0-orig,pos,unl,unl,pos,n/a,He is kayaking toward the camera and past other kayakers.,He\nlsmdc1038_The_Great_Gatsby-87691,15653,People pay close attention to their exchange. Someone,stands across the room from someone.,\"glances at someone, who slows his fist down.\",\"pauses, looking at the orchestra.\",nods then shoves someone back towards him.,meets someone's gaze as she draws and pulls away from him.,gold1-orig,pos,unl,unl,pos,pos,People pay close attention to their exchange.,Someone\nanetv_C26UfwZbHE0,11765,Woman is in front of a handwash cleaning his mouth with mouthwash. the woman is in the hall and talk to the boys and they,seem impressed by her fresh breath.,talk in the living room.,go on various tricks alone and having fun.,are thrashing while trying to make the food with their dogs in the background.,speak about and are holding a fish by the mouth and talking.,gold0-orig,pos,unl,unl,unl,pos,Woman is in front of a handwash cleaning his mouth with mouthwash.,the woman is in the hall and talk to the boys and they\nanetv_C26UfwZbHE0,11764,A woman walks in the hall holding a mouthwash and talking to the camera about it. woman,is in front of a handwash cleaning his mouth with mouthwash.,puts cups in the kitchen in the sink.,continues to face her hands with liquid.,shows handled bows and drink wine.,is drinking water in a cup while trying to talk to the camera.,gold0-orig,pos,unl,unl,unl,pos,A woman walks in the hall holding a mouthwash and talking to the camera about it.,woman\nanetv_9JrRZ9i1sXo,12120,A person is shoveling snow from a driveway. They,push the snow to the side and pick it up and throw it into a pile.,climb into the tree and walk onto the lawn.,a snow ramp on a snow shovel.,sit raking the snow down the hill.,,gold0-orig,pos,unl,unl,pos,n/a,A person is shoveling snow from a driveway.,They\nanetv_9JrRZ9i1sXo,12121,They push the snow to the side and pick it up and throw it into a pile. Words,come onto the screen at the end.,around them come on as they push the camel along.,men are seen face to face and leads into the person attempting to grab snow but city breaks surrounding them.,\"wooden drill is shown, followed by several clips of people riding snowboards.\",,gold0-orig,pos,unl,unl,unl,n/a,They push the snow to the side and pick it up and throw it into a pile.,Words\nanetv_9JrRZ9i1sXo,13046,She moves around the driveway and demonstrates how to properly shovel snow. She,continues speaking while pushing the snow into a banking.,keeps talking to the camera again and a lady handing on the shovel and depositing a worker's garden materials on the ground.,\"uses the car on the van and way,.\",then continues to walk along the sidewalk without a couple.,lets her go back and fourth down the road while smiling to herself.,gold0-orig,pos,unl,unl,unl,unl,She moves around the driveway and demonstrates how to properly shovel snow.,She\nanetv_9JrRZ9i1sXo,13045,A woman is seen shoveling snow in a walkway and speaking to the camera. She,moves around the driveway and demonstrates how to properly shovel snow.,\"dumps snow into the snow, blowing a toy search.\",continues speaking to her camera in the end.,speaks to her camera and films himself.,turns the camera around the sides and continues speaking to the camera.,gold0-orig,pos,unl,pos,pos,pos,A woman is seen shoveling snow in a walkway and speaking to the camera.,She\nlsmdc3014_CAPTAIN_AMERICA-5845,513,Someone approaches from a connecting corridor and shoots her machine gun. The trooper's armored suit,explodes as he falls dead.,is thrown on the ground.,pours into the pirate's arms.,speeds away from someone's clean office window and then runs into someone.,\"hangs on a concave cable inside the plane, forcing the passenger limo off.\",gold0-orig,pos,unl,unl,unl,unl,Someone approaches from a connecting corridor and shoots her machine gun.,The trooper's armored suit\nlsmdc3014_CAPTAIN_AMERICA-5845,509,\"As Allied soldiers pour in, someone picks up a blaster and incinerates several of them before running off. A Hydra trooper\",charges toward the entering soldiers with his blaster raised.,knocks over the hefty man in a hazmat floral shield.,blasts the calf up to the destroyer.,is pursued as german officers steer their guns through the gates of someone's house.,,gold1-orig,pos,unl,unl,pos,n/a,\"As Allied soldiers pour in, someone picks up a blaster and incinerates several of them before running off.\",A Hydra trooper\nlsmdc3014_CAPTAIN_AMERICA-5845,514,The trooper's armored suit explodes as he falls dead. Someone,runs up to someone.,strolls over and loosens his tie.,shoots himself away from the men.,wraps his arms around someone.,\"glances out the window, disbelieving his friends.\",gold0-orig,pos,unl,unl,unl,unl,The trooper's armored suit explodes as he falls dead.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,503,More us soldiers emerge from the forest. Someone,carries a machine gun as she runs alongside the advancing soldiers.,\"peers round with horror, as the birders flash past someone, who whacks the dead man in the head.\",\"runs down a street and approaches the bushes, trees and healthy creatures.\",'s eyes widen.,,gold0-orig,pos,unl,unl,pos,n/a,More us soldiers emerge from the forest.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,532,\"As the car pulls closer to the plane, someone stands and glances at someone. Someone\",\"grabs someone, pulls him close, and kisses him.\",stands on the middle of the littered car with his spear in hand.,grabs the handlebars as the kids pump.,waits with a pipe gun.,gives them a dry look.,gold0-orig,pos,unl,unl,pos,pos,\"As the car pulls closer to the plane, someone stands and glances at someone.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,510,\"Meanwhile, someone chases someone while deflecting blasts with his shield. Someone\",dashes between two closing doors.,sprints to the door with a deadbolt.,shoots their bombs and kicks the drones.,are shakily in the air.,,gold0-orig,pos,unl,unl,unl,n/a,\"Meanwhile, someone chases someone while deflecting blasts with his shield.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,524,\"He sprints through the fray, knocking troopers down with his shield. Someone\",\"leaps and grabs a cable, then swing over the heads of the battling soldiers.\",stands so units woman just did not know whose fists are convulsing.,leads the forceps through a pile of debris.,eyes haul them out.,\"rests an elbow on the top of the beam, flings his arms around his back.\",gold0-orig,pos,unl,unl,unl,unl,\"He sprints through the fray, knocking troopers down with his shield.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,508,\"Flames engulf the entrance to a corridor. As Allied soldiers pour in, someone\",picks up a blaster and incinerates several of them before running off.,spots a squad car on the balcony.,remains huddled into the squad chair.,rushes in to prop his hands and aim between.,stands and removes the cigarette cord and peers up at the priest.,gold1-orig,pos,unl,unl,unl,unl,Flames engulf the entrance to a corridor.,\"As Allied soldiers pour in, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,493,\"Someone punches someone, backhands him, and jabs him in the chest. Someone\",falls to his knees.,pauses at the doorway.,\"slaps his face again, looking on his face.\",\"stares at him, distraught.\",sits on top of someone.,gold0-orig,pos,unl,unl,unl,unl,\"Someone punches someone, backhands him, and jabs him in the chest.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,525,\"Someone leaps and grabs a cable, then swing over the heads of the battling soldiers. He\",lands on the runway and chases after the plane.,leaps down onto the broomstick and then shakes its way down a large flight of stairs.,\"sits on the ground, hanging his weapon and leaning on a brick post.\",finds someone standing at the top of the lifeboat.,flexes them in pain as he walks past the two guards.,gold0-orig,pos,unl,pos,pos,pos,\"Someone leaps and grabs a cable, then swing over the heads of the battling soldiers.\",He\nlsmdc3014_CAPTAIN_AMERICA-5845,537,Someone stands and gazes up at someone clinging to the rising bomber. Someone,climbs up into the hold as the wheels retract.,quickly moves down the narrow aisle between someone and someone.,crawls through a duct as the teller struggles struggles to reach desperately.,looks just as someone climbs the stairs.,\"turns in circles, as if in a trance.\",gold0-orig,pos,unl,unl,unl,unl,Someone stands and gazes up at someone clinging to the rising bomber.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,533,Someone puts the shield on his back and climbs onto the hood of the car as someone maneuvers underneath the plane. Someone,drives past the propellers.,checks the ending rear.,pulls his hood past someone.,shakes someone's hand dismissively then drains it.,\"'s, men speed faster with the truck in impressive sprawl.\",gold0-orig,pos,unl,unl,unl,unl,Someone puts the shield on his back and climbs onto the hood of the car as someone maneuvers underneath the plane.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,521,\"He turns on the cockpit control panel. On a display screen, an image of North America\",appears with a blinking bull's - eye over new york city.,sports cassettes lies on a runway in a black ring.,tribe style action lessons appears on a map.,join a gathered crowd in front of an american in metropolitan stadium.,\"is approaching, sharing a sneering gaze.\",gold1-orig,pos,unl,unl,unl,unl,He turns on the cockpit control panel.,\"On a display screen, an image of North America\"\nlsmdc3014_CAPTAIN_AMERICA-5845,530,\"Driving the car, someone glances down and pushes a button on the dashboard. Flames\",shoot out of the back of the car as it shoots forward.,curtains flap in the shadows.,pushes up his cuffed arm.,banks out in the hotel.,pile on the porch.,gold0-orig,pos,unl,unl,unl,unl,\"Driving the car, someone glances down and pushes a button on the dashboard.\",Flames\nlsmdc3014_CAPTAIN_AMERICA-5845,499,\"Sliding in on the cables, someone, someone, and someone burst through window and fire weapons while someone flees down a long corridor. Someone\",tosses someone his shield.,slumps into the wall where the clock was lodged in the library.,stops with a dirt broom outside someone house.,cautiously unleashes a glimpse of his fallen colleague.,throws the breather and jumps out as someone carries his scooter.,gold1-orig,pos,unl,unl,unl,unl,\"Sliding in on the cables, someone, someone, and someone burst through window and fire weapons while someone flees down a long corridor.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,501,\"Someone runs down the corridor as dozens of armed Hydra troops run after him. In another corridor, metal doors\",blow apart in a burst of flames.,extend out from an pulpit street and disappear inside.,roll down as someone's crane controls the circuit engulfing her.,ascend above a crate which flings open.,,gold0-orig,pos,unl,pos,pos,n/a,Someone runs down the corridor as dozens of armed Hydra troops run after him.,\"In another corridor, metal doors\"\nlsmdc3014_CAPTAIN_AMERICA-5845,519,\"Allied soldiers shoot three Hydra troopers trying to climb up behind him. In the cockpit, someone\",\"inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat.\",draws someone's gun out of the control car.,sweeps the young mutant through the water.,watches on the ship.,rushes to the pilots grocery stand and gestures toward the pyramid shaped house.,gold1-orig,pos,unl,unl,unl,unl,Allied soldiers shoot three Hydra troopers trying to climb up behind him.,\"In the cockpit, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,507,\"Someone 'men explode armored vehicles, killing nearby troopers and clearing a path into the base. Flames\",engulf the entrance to a corridor.,look over at someone with a smirk.,lags behind.,\"pulls down the back of someone's shirt, ammunition escort.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone 'men explode armored vehicles, killing nearby troopers and clearing a path into the base.\",Flames\nlsmdc3014_CAPTAIN_AMERICA-5845,517,\"Someone runs to his shield and pulls it free, then dashes through the doors as they close. In a huge hangar, someone\",climbs up a ladder into a bomber plane.,is standing upright facing a lower section.,sees someone holding his phone from someone's shoulder.,watches thin chinese women on the sidelines and observe after someone.,is filming himself holding a flashlight and looking away.,gold0-orig,pos,unl,unl,unl,unl,\"Someone runs to his shield and pulls it free, then dashes through the doors as they close.\",\"In a huge hangar, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,505,A bullet takes out a Hydra trooper kneeling beside an armored vehicle. Other troopers,fall back toward the base as they fire at approaching soldier.,smash off and pass them with someone's chained look.,pass the shot put.,run up the track.,,gold1-orig,pos,unl,unl,unl,n/a,A bullet takes out a Hydra trooper kneeling beside an armored vehicle.,Other troopers\nlsmdc3014_CAPTAIN_AMERICA-5845,539,Several Hydra troopers enter the hold and run along the catwalk. Someone,jumps down and kicks the last trooper over the railing as he passes.,\"is up immediately running, kicking off outward and jumping for jumping under the wall.\",drops suit and drops.,comes over the bar to ram out of harm's calves.,grabs someone and slashes him with a metal container of plastic golden and a latex - gloved hand.,gold0-orig,pos,unl,unl,unl,pos,Several Hydra troopers enter the hold and run along the catwalk.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,506,Other troopers fall back toward the base as they fire at approaching soldier. Someone 'men,\"explode armored vehicles, killing nearby troopers and clearing a path into the base.\",\"struggle off the bridge, mostly survivors.\",hurry down the aisle to criminal.,move the tire and the soldier's rooftop chute.,enter the cargo hut.,gold1-orig,pos,unl,unl,unl,pos,Other troopers fall back toward the base as they fire at approaching soldier.,Someone 'men\nlsmdc3014_CAPTAIN_AMERICA-5845,528,\"In the cockpit, someone watches the car approach on a monitor. As he slides a lever forward, the plane\",accelerates toward the hangar exit.,draws a row of icy water.,begins to speed toward the rising cab where hundreds of workers support them.,arrives beside the cabin.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the cockpit, someone watches the car approach on a monitor.\",\"As he slides a lever forward, the plane\"\nlsmdc3014_CAPTAIN_AMERICA-5845,497,\"Outside, grappling hooks and cables shoot into the mountainside above the barred window. Someone\",\"pulls a trooper in front of himself as someone fires, incinerating the trooper.\",\"lowers someone's hand, pulls the lever and waves.\",guides someone behind him with a rooster.,hurls a crystalline cannon aside and heads onto the object.,\"sits in a ledge before someone, pumping gunpowder from his rival.\",gold0-orig,pos,unl,unl,unl,unl,\"Outside, grappling hooks and cables shoot into the mountainside above the barred window.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,535,\"Someone stands, then leaps onto the plane's back wheel mount as the bomber takes off. Someone\",turns the steering wheel and stomps on the brake pedal.,\"as the station helicopter approaches the ship, a speed launch will leave the building.\",takes a seat and tries to explore the car.,shoots a fire alarm.,leaps out and limps beside someone.,gold0-orig,pos,unl,unl,unl,pos,\"Someone stands, then leaps onto the plane's back wheel mount as the bomber takes off.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,494,Someone falls to his knees. His chest,heaves as he gazes up at someone.,lies on the floor.,\"heaving, someone holds up a hand.\",pounds the snake's chest.,heaves and his face gently drops limp.,gold0-orig,pos,unl,unl,unl,pos,Someone falls to his knees.,His chest\nlsmdc3014_CAPTAIN_AMERICA-5845,511,Someone dashes between two closing doors. Someone,throws a shield which wedges between the doors.,steps up to a cupboard at the base of his chair.,sees a knob being labeled.,hops out and his clothes drift back into place.,turns on his phone then heads off.,gold0-orig,pos,unl,unl,unl,pos,Someone dashes between two closing doors.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,502,\"In the forest, someone watches as someone and his men rush toward the base. More us soldiers\",emerge from the forest.,gallop through a dusty house parked inside a building.,stand in a doorway and exit the courtyard.,are running down the rocky terrain as they descend the trees as an indian luxury train passes.,are each carrying a circular bow bordering the field.,gold1-orig,pos,unl,unl,pos,pos,\"In the forest, someone watches as someone and his men rush toward the base.\",More us soldiers\nlsmdc3014_CAPTAIN_AMERICA-5845,538,He hops onto a railed catwalk between two bombs with small cockpits and propellers labelled Chicago and New York. Several Hydra troopers,enter the hold and run along the catwalk.,walk beside the lifeboats and trolls someone slides down the shaft through someone's reception desk.,plummet through the gears and debris.,surround a rooftop with huge swords.,,gold0-orig,pos,unl,pos,pos,n/a,He hops onto a railed catwalk between two bombs with small cockpits and propellers labelled Chicago and New York.,Several Hydra troopers\nlsmdc3014_CAPTAIN_AMERICA-5845,518,\"In a huge hangar, someone climbs up a ladder into a bomber plane. Allied soldiers\",shoot three hydra troopers trying to climb up behind him.,dismount a trellis and rip up someone's apartment.,work out with tents as they use the coral cover.,\"run tossing the hydra soldiers with instructions, then he stares at them through binoculars.\",hold off a cell as someone's pickup works its way between them.,gold1-orig,pos,unl,unl,unl,unl,\"In a huge hangar, someone climbs up a ladder into a bomber plane.\",Allied soldiers\nlsmdc3014_CAPTAIN_AMERICA-5845,515,Someone runs up to someone. He,steps closer to her.,hurls a bolt at him.,winces until someone hears the sound outside.,\"stands at his feet, pointing.\",kicks someone's hand to his rear.,gold1-orig,pos,unl,unl,unl,unl,Someone runs up to someone.,He\nlsmdc3014_CAPTAIN_AMERICA-5845,527,\"Someone hops into the passenger seat and someone drives off after the plane. In the cockpit, someone\",watches the car approach on a monitor.,\"loses a storm with her sunglasses, then jumps over the edge of the cockpit and frantically flailing herself, toppling someone.\",sits on his bed in the rain.,stands inside a open trunk.,,gold0-orig,pos,unl,unl,unl,n/a,Someone hops into the passenger seat and someone drives off after the plane.,\"In the cockpit, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,504,Someone carries a machine gun as she runs alongside the advancing soldiers. A bullet,takes out a hydra trooper kneeling beside an armored vehicle.,point onto someone's backpack as she tests the snow out of the tank.,squeezes into the 'neck.,\"blocks someone 'bullets, ducks down past someone, and another knife and a crowbar.\",comes nearby extends a hand toward him.,gold0-orig,pos,unl,unl,unl,unl,Someone carries a machine gun as she runs alongside the advancing soldiers.,A bullet\nlsmdc3014_CAPTAIN_AMERICA-5845,534,Someone drives past the propellers. Someone,\"stands, then leaps onto the plane's back wheel mount as the bomber takes off.\",speeds on two mountains to each cobble.,sees a truck someone falls off from the rooftop.,looks along the turbulent shoreline of the city's long bayou.,lets the stone pass.,gold0-orig,pos,unl,unl,unl,unl,Someone drives past the propellers.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5845,523,Someone runs into the hangar and glances around at the battling Hydra troopers and Allied soldiers. He,\"sprints through the fray, knocking troopers down with his shield.\",sharpens his gun to the side.,throws a bird with an animal costume.,shoots the flying plane into the night air.,looks up at the soldiers.,gold0-orig,pos,unl,unl,pos,pos,Someone runs into the hangar and glances around at the battling Hydra troopers and Allied soldiers.,He\nlsmdc3014_CAPTAIN_AMERICA-5845,531,\"Flames shoot out of the back of the car as it shoots forward. As the car pulls closer to the plane, someone\",stands and glances at someone.,puts down his silky walkie - talkie and crosses back to his window.,\"looks down at his phone in a clown suit, who's awkwardly near someone.\",collapses drops onto the ground.,whips open a drawer and rips it open.,gold1-reannot,pos,unl,unl,unl,unl,Flames shoot out of the back of the car as it shoots forward.,\"As the car pulls closer to the plane, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,520,\"In the cockpit, someone inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat. He\",turns on the cockpit control panel.,brings him to his feet.,\"pours sleepily in his eyes and then reverses, knocking himself off.\",reaches into the elevator.,takes his seat seat.,gold0-reannot,pos,unl,unl,unl,unl,\"In the cockpit, someone inserts the canister containing the blue energy source into a large mechanism, then climbs into the pilot's seat.\",He\nlsmdc3014_CAPTAIN_AMERICA-5845,529,\"As he slides a lever forward, the plane accelerates toward the hangar exit. Driving the car, someone\",glances down and pushes a button on the dashboard.,climbs the boot into a certain - traffic area.,looks up from his run.,wrenches the cable to a halt in front of someone.,follows someone as she unlocks his front door and steps in.,gold0-reannot,pos,unl,unl,unl,pos,\"As he slides a lever forward, the plane accelerates toward the hangar exit.\",\"Driving the car, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,496,\"Someone pulls out a blue energy pistol. Outside, grappling hooks and cables\",shoot into the mountainside above the barred window.,holding a door by one compartment grab someone.,streak the half - open door.,fly up as it lifts up their dozen flag supports.,around the wrecked car as headphones being crushed.,gold1-reannot,unl,unl,unl,unl,unl,Someone pulls out a blue energy pistol.,\"Outside, grappling hooks and cables\"\nlsmdc3014_CAPTAIN_AMERICA-5845,498,\"Someone pulls a trooper in front of himself as someone fires, incinerating the trooper. Sliding in on the cables, someone, someone, and someone\",burst through window and fire weapons while someone flees down a long corridor.,emerge into a jungle past two levers and lowering swords to shoot a quaffle.,follow him over as he turns above the surface of someone's bed.,spill out into the flying park.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone pulls a trooper in front of himself as someone fires, incinerating the trooper.\",\"Sliding in on the cables, someone, someone, and someone\"\nlsmdc3014_CAPTAIN_AMERICA-5845,512,A Hydra trooper appears and shoots flamethrowers at someone who ducks into a doorway to avoid the streams of fire. Someone,approaches from a connecting corridor and shoots her machine gun.,swigs from the bullwhip.,screeches out after him.,turns to all of the trainees from a long flight.,\"starts to, smashing someone's door, leaps into his room and stands up.\",gold0-reannot,pos,unl,unl,unl,unl,A Hydra trooper appears and shoots flamethrowers at someone who ducks into a doorway to avoid the streams of fire.,Someone\nlsmdc1060_Yes_man-99568,10515,She smiles and looks at him. They,share a lingering kiss and wrap their arms around each other.,moves rose from her.,points their feet together.,turns on a crescent arrow curling.,watches someone with a warm smile.,gold0-orig,pos,unl,unl,unl,unl,She smiles and looks at him.,They\nlsmdc1060_Yes_man-99568,10517,\"Someone reaches round and grabs his gown to make sure he is not exposing himself. Outside the homeless shelter, someone\",\"'s with someone, who sorts through clothes.\",picks up a handful of sugar and sighs.,\"is looking inside the cafe, pointing out the whole size.\",swipes it with his coat and watch the light go.,presses his head against the wall too.,gold0-orig,pos,unl,unl,unl,pos,Someone reaches round and grabs his gown to make sure he is not exposing himself.,\"Outside the homeless shelter, someone\"\nlsmdc1060_Yes_man-99568,10514,They are at a viewpoint overlooking the city. She,smiles and looks at him.,\"produces something from the boat wall, smoking out from a bottle.\",finds them in the picturesque forest.,sits up and drags the baby to a doorway.,,gold0-orig,pos,unl,unl,pos,n/a,They are at a viewpoint overlooking the city.,She\nlsmdc1060_Yes_man-99568,10518,Someone and the vagrant guy both wear pleated trousers. Someone,is on - stage.,grabs someone by the shoulder and starts chopping him.,waves them out for home.,hops off of the roof in an animated advertisement.,looks in his father's eyes at the phone.,gold1-reannot,pos,unl,unl,unl,unl,Someone and the vagrant guy both wear pleated trousers.,Someone\nanetv_So4BX0I1VRI,13756,\"The person is shown knocking down 9 of the bowling pins, which means he has a spare. Next he\",knocks all of the pins down and gets a strike.,gets the ball in half and hits pins to fall pins and head back into the opposite lane.,\"keeps one, but holds a ball and puts in a spiral bowl.\",starts walking around or bowling in another manner.,takes the bowling balls and brings it to impact pins with it.,gold1-orig,pos,unl,unl,unl,unl,\"The person is shown knocking down 9 of the bowling pins, which means he has a spare.\",Next he\nlsmdc0032_The_Princess_Bride-66380,14546,\"Someone enters, and kneels. He\",\"shows the key, dangling from a chain around his neck.\",\"enters the room, lighting a candle, and looks around.\",see another smaller variety of exposed shapes.,takes another dish from himself.,takes someone's photo.,gold0-orig,pos,unl,unl,unl,unl,\"Someone enters, and kneels.\",He\nlsmdc0032_The_Princess_Bride-66380,14547,\"Just at that moment, someone enters. Someone\",looks at her blankly for a moment.,\"leaves the room with his gloved hand out, then sits beside someone.\",looks up suddenly up a moment to stop seeing someone.,\"can stand by her, drives past the oncoming stampede.\",scrambles to a large corridor and crosses the bridge.,gold1-orig,pos,unl,unl,unl,unl,\"Just at that moment, someone enters.\",Someone\nanetv_T3rh5gQVFKA,10530,Four boys on skateboards ride past. We,see a boy almost fall two times.,\"pull down, each of them holding a pair of gloves and leads them up the street.\",are going across ramps to a man sitting in bed.,\"kicks the cars away, then people both jump off and stick and jump while running around.\",engage in a game set kids in a field together.,gold0-orig,pos,unl,unl,unl,unl,Four boys on skateboards ride past.,We\nanetv_T3rh5gQVFKA,10531,We see a boy almost fall two times. We,see the board on the curb.,see a closing screen ending in a man talking.,see an illustration on a camper.,see the black emblem on the screen.,see a man throw a ball.,gold0-orig,pos,unl,unl,unl,pos,We see a boy almost fall two times.,We\nanetv_T3rh5gQVFKA,10528,We see a wolf fall in the title screen. We,see the landscape of a small town.,see the man drop the nozzle.,see the gate and emblem flashing.,see an image of the man.,,gold1-orig,pos,unl,unl,pos,n/a,We see a wolf fall in the title screen.,We\nanetv_T3rh5gQVFKA,10529,We see the landscape of a small town. A boy,rides down a street on a skateboard.,snowboards through a desert on a bluff property.,grabs a shovel and shovels snow off the snow.,rides a raft in a river and pulls on a string.,,gold1-orig,pos,unl,pos,pos,n/a,We see the landscape of a small town.,A boy\nanetv_T3rh5gQVFKA,10532,A group of boys walking up a hill. The end credits play and we,see a boy on a bus.,see a bike march from a parking lot.,see sunglasses holding a brush.,see a boy playing a guitar.,see the person riding down a hill.,gold0-reannot,pos,unl,unl,unl,unl,A group of boys walking up a hill.,The end credits play and we\nlsmdc0031_The_Lost_Weekend-65798,16623,Someone slips into someone's place in the doorway. She,stands waiting until people start downstairs.,enters a room where the familiar sports vision is wash.,raise it out and bend forward for a moment.,keeps the door proceeding quietly down the table.,heaves a breath and his eyes roll around.,gold0-orig,pos,unl,unl,unl,pos,Someone slips into someone's place in the doorway.,She\nlsmdc0031_The_Lost_Weekend-65798,16624,She stands waiting until people start downstairs. Someone,\"enters, closing the door behind her.\",is still in the salon with a woman in his arms.,picks her up in the bucket and wheeled her unconscious inside.,punches him right outside.,,gold0-orig,pos,unl,unl,unl,n/a,She stands waiting until people start downstairs.,Someone\nlsmdc0031_The_Lost_Weekend-65798,16626,A shaft of light comes from the corridor. Someone,crouches behind the door.,spots someone hanging off his jacket.,moves toward someone as he watches his mother pass.,holds one leg to the domed points.,looks back at its reflection someone shoots her a look as she represents.,gold1-orig,pos,unl,unl,unl,unl,A shaft of light comes from the corridor.,Someone\nlsmdc0031_The_Lost_Weekend-65798,16628,She kneels down beside someone. They,are beside the light switch.,hop up to exit.,step away from her brother.,stand at the club.,sit in the nurse's office.,gold0-orig,pos,unl,pos,pos,pos,She kneels down beside someone.,They\nlsmdc0031_The_Lost_Weekend-65798,16620,\"With his last strength someone raises himself against the door, stretches out his hand, gets the door chain, tries to slip it in its notch, but misses. Someone, the janitor, a ring with labelled keys on it in his hand,\",leads people up the stairs.,gets into town through the shrouded mouth of the historic school.,is holding a few red dollar bills.,\"leaps forward, rummaging for the scarf.\",come onto the long hall in front of the store.,gold1-orig,pos,unl,unl,unl,pos,\"With his last strength someone raises himself against the door, stretches out his hand, gets the door chain, tries to slip it in its notch, but misses.\",\"Someone, the janitor, a ring with labelled keys on it in his hand,\"\nlsmdc0031_The_Lost_Weekend-65798,16621,\"Someone, the janitor, a ring with labelled keys on it in his hand, leads people up the stairs. Someone\",has opened the door and holds it open as far as he can.,stands on either end of a narrow corridor opening.,grabs someone in the shoulder.,is draped over the desk.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone, the janitor, a ring with labelled keys on it in his hand, leads people up the stairs.\",Someone\nlsmdc0031_The_Lost_Weekend-65798,16625,\"Someone enters, closing the door behind her. A shaft of light\",comes from the corridor.,\"hits a fairly large window, which leads her towards the door.\",glows on her face.,sweeps across the room.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone enters, closing the door behind her.\",A shaft of light\nlsmdc0031_The_Lost_Weekend-65798,16622,Someone throws all his weight against the door but it is no use. Someone,slips into someone's place in the doorway.,stands for the squad as they walk home.,appears in the middle of the bar.,are thrown from the honks.,slips on the ball which sits on a high floor.,gold0-reannot,pos,unl,unl,unl,unl,Someone throws all his weight against the door but it is no use.,Someone\nanetv_ZuuY0xffLYE,6587,\"The stylist uses a brush and a blow dryer to add volume, texture and curl to the client's hair. The stylist\",sprays the clients hair.,trims the other stocking with the products then proceeds to cut the model's hair.,brushes her hair around the bald head and shows the hair dryer.,irons the side of the stylist with and finishes the hair style.,,gold0-orig,pos,unl,unl,unl,n/a,\"The stylist uses a brush and a blow dryer to add volume, texture and curl to the client's hair.\",The stylist\nanetv_ZuuY0xffLYE,6582,The presenter styles a female client's hair. The presenter,speaks directly into the camera.,walks into a room.,places a pair of glasses on the table.,puts on a hat and sits on a microphone.,points his finger up.,gold0-orig,pos,unl,unl,unl,pos,The presenter styles a female client's hair.,The presenter\nanetv_ZuuY0xffLYE,6589,The stylist uses his hand to position the bangs. The stylist,use his hand to add a gel product to the client hair.,trims the strings underneath the arm.,adds products to his hair and works back and forth towards the camera.,blow the hair gel and apply the hair to her face.,,gold0-orig,pos,unl,unl,unl,n/a,The stylist uses his hand to position the bangs.,The stylist\nanetv_ZuuY0xffLYE,6590,The stylist use his hand to add a gel product to the client hair. The client,spins slowly on the chair to show of her hair style.,holds a blue towel to the man's ear and presses it over his face.,pays to make sure the wash is over.,finishes shaving and ends with a microphone.,,gold0-orig,pos,unl,unl,unl,n/a,The stylist use his hand to add a gel product to the client hair.,The client\nanetv_ZuuY0xffLYE,6588,The stylist sprays the clients hair. The stylist,uses his hand to position the bangs.,joins him on cutting the hair.,trims excitedly from the womans hair.,brushes her hair from her hair.,brushes her long hair out of her face.,gold1-orig,pos,unl,unl,pos,pos,The stylist sprays the clients hair.,The stylist\nanetv_ZuuY0xffLYE,6585,The stylist wets the client's hair. The stylist,parts the clients hair.,points out several pictures with the shears.,styled her former hair with hairspray.,brushes her hair away.,,gold0-orig,pos,unl,unl,pos,n/a,The stylist wets the client's hair.,The stylist\nanetv_ZuuY0xffLYE,6583,The presenter speaks directly into the camera. The client,spins slowly on a chair to present her hair.,\"continues slowly dancing, roping her hands and warming her up.\",ends with a list of emergency text on the screen.,removes the tape and walks back into the living room waiting.,,gold0-orig,pos,unl,unl,pos,n/a,The presenter speaks directly into the camera.,The client\nanetv_ZuuY0xffLYE,6581,The image and label of the presenter or stylist is shown. The presenter,styles a female client's hair.,is held by their instructor.,is a girl dancing with someone in her room.,uses a mirror and holding the brush.,is then shown returning talking to the camera.,gold0-orig,pos,unl,unl,pos,pos,The image and label of the presenter or stylist is shown.,The presenter\nanetv_ZuuY0xffLYE,6586,The stylist parts the clients hair. The stylist,\"uses a brush and a blow dryer to add volume, texture and curl to the client's hair.\",continues blow drying his hair.,\"walks off, with her face down and her eyes glistening.\",demonstrates to comb the hair while graying hair and places her hand in the ground.,,gold0-orig,pos,unl,unl,pos,n/a,The stylist parts the clients hair.,The stylist\nanetv_uiCkFmebAZs,2145,\"A young lady in a bathing suit and a shower cap is sitting at the side of the pool talking while clips of her swimming are shown, and her name is Keri - anne Payne and is the 10 km Open Water Silver Olympic Medalist. The outro appears and it\",'s a black screen with a speedo logo and the word speedo.,\"includes a lot of skiers clipped and flipping, smiling, and flipping through the water.\",comes to the screen making several foot placement while she adds it around the video time.,appears up pink a second time is measured and cut.,,gold0-orig,pos,unl,unl,unl,n/a,\"A young lady in a bathing suit and a shower cap is sitting at the side of the pool talking while clips of her swimming are shown, and her name is Keri - anne Payne and is the 10 km Open Water Silver Olympic Medalist.\",The outro appears and it\nanetv_P-04xkAdWSY,272,A fourth sumo wrestler points at the three racers. A different man,talks to the camera with others working in the background.,arrives and continue to play the croquet.,bounces more weights on the kid bouncing first.,wearing maroon leather pants and three yellow gloves stand behind the desk.,in the red shirt wins.,gold1-orig,pos,unl,unl,unl,pos,A fourth sumo wrestler points at the three racers.,A different man\nanetv_P-04xkAdWSY,271,Three sumo wrestlers race on a track. A fourth sumo wrestler,points at the three racers.,is doing walks around high poles.,kicks the bottom of a rope.,is shown on a mountain in his head.,,gold0-orig,pos,unl,unl,unl,n/a,Three sumo wrestlers race on a track.,A fourth sumo wrestler\nanetv_P-04xkAdWSY,11856,Three people are kneeling on a track. the three people,begin running very slowly across the track and field.,get into a game of curling kicking each other over the pucks.,are shaking five tree sticks afterwards as they each cheers.,move to lift their body by the legs.,are around the bike track.,gold0-orig,pos,unl,unl,pos,pos,Three people are kneeling on a track.,the three people\nlsmdc1048_Gran_Torino-92249,7517,He pats a child's head. Everyone,gives him disapproving looks.,shuts the door and glares at someone.,\"sets his clothing aside, and holds it up to a second memory as the figures pull someone into a new room.\",aims a revolver at someone who stands up.,,gold0-orig,pos,unl,unl,unl,n/a,He pats a child's head.,Everyone\nanetv_84g4J1rxkQc,16228,\"A man is in the woods, balancing on a tight rope. He\",\"walks back and forth on the rope, then jumps.\",is holding a rope on the rope and he rides them up the rope.,adjusts the straps and plants in the air as he paddles out.,flies out the hand of the calf.,lifts the ropes ten times.,gold0-orig,pos,unl,unl,unl,unl,\"A man is in the woods, balancing on a tight rope.\",He\nanetv_Uc0Z2tuIJVA,9228,Several people are shown playing beer pong as well as speaking to the camera. The people,continue to play as others speak to the camera.,take cigarettes and turn on the side while speaking to the camera.,continue to play and hit the ball back and fourth.,speak to one another while another laughing and smiling.,play with one another while others watch on the side.,gold0-orig,pos,unl,pos,pos,pos,Several people are shown playing beer pong as well as speaking to the camera.,The people\nanetv_Uc0Z2tuIJVA,3189,Many clips are shown of people playing beer pong as well as speaking to the camera. People,watch and celebrate on the sides while people continue to play and speak to the camera.,continue to put down volleyball while men sit on the beach.,are seen in the camera when a person takes a shot and hits ping pong.,are seen surfing on the water as well as bubbles and speaking to the camera.,sit next as well as play lacrosse and ending with text.,gold0-orig,pos,unl,unl,unl,unl,Many clips are shown of people playing beer pong as well as speaking to the camera.,People\nanetv_Uc0Z2tuIJVA,9227,Two men are seen playing ping pong and a man speaks to the camera. Several people,are shown playing beer pong as well as speaking to the camera.,countdown on a table in front of the camera.,are then seen continue to play with one another.,stand around to help people.,are shown playing guitars as well as pausing to speak to the camera.,gold1-reannot,pos,unl,unl,unl,pos,Two men are seen playing ping pong and a man speaks to the camera.,Several people\nanetv_Uc0Z2tuIJVA,3188,A large beer pong table is shown with cups laid out and people playing. Many clips,are shown of people playing beer pong as well as speaking to the camera.,are shown of men playing tennis showing several regular component images.,are shown of people laying in tennis game being pumped up and around a guitar.,are then shown of people playing beer pong and walking towards them.,,gold0-reannot,pos,unl,pos,pos,n/a,A large beer pong table is shown with cups laid out and people playing.,Many clips\nanetv_EN63ldqfGsI,14972,A countdown from ten to zero is shown. We then,see a group gathered in a gymnasium.,see the 4 explosive of bolts.,see people playing pool with various guitars and scoring a iron line.,see a man twirling a man from behind a table.,see the finished screen.,gold0-orig,pos,unl,unl,unl,pos,A countdown from ten to zero is shown.,We then\nanetv_EN63ldqfGsI,14974,\"The instructor walks up, and everyone starts a zumba exercise. The people\",dance and do aerobic exercise in unison as they are led by the man in front.,go to the chaos.,stand on the platforms putting their hands around the weights.,begin to cheer and clap.,,gold0-orig,pos,unl,unl,unl,n/a,\"The instructor walks up, and everyone starts a zumba exercise.\",The people\nanetv_EN63ldqfGsI,14973,\"We then see a group gathered in a gymnasium. The instructor walks up, and everyone\",starts a zumba exercise.,claps for the people.,\"backstage, dancing and dancing.\",returns to the knitting.,follows someone by as they play.,gold1-orig,pos,unl,unl,unl,unl,We then see a group gathered in a gymnasium.,\"The instructor walks up, and everyone\"\nanetv_EN63ldqfGsI,15319,People are on a wooden basket court practicing a choreography. little kid wearing a pink shirt,is standing next to the group watching them.,is talking to the camera talking to the camera.,prepares to play hopscotch in the court.,is dribbling each ball with both hands.,is wearing blue gloves.,gold0-reannot,pos,unl,pos,pos,pos,People are on a wooden basket court practicing a choreography.,little kid wearing a pink shirt\nanetv_EN63ldqfGsI,15318,Name of a song with a countdown is shown. people,are on a wooden basket court practicing a choreography.,are outside in a snow dome.,playing foosball with wide eyes.,are playing a game of shuffleboard.,are walking on bikes in the field at night.,gold0-reannot,pos,unl,unl,unl,unl,Name of a song with a countdown is shown.,people\nlsmdc1014_2012-78953,16670,The whole house shakes violently. People and the kids,climb under the table.,dive up to their trucks.,stop and make their way down the aisle.,come toward the door.,run into the bedroom.,gold1-orig,pos,unl,pos,pos,pos,The whole house shakes violently.,People and the kids\nanetv_sBx1HvNjs6s,1698,A bald man is talking and two pictures of a young male with nice hair flashes on the screen. The man then begins to work with a mannequin head that has a similar hairstyle as the boy in the pictures and he,\"shows how the haircut was achieved while buzzing, cutting, combing and finger combing the hair.\",rubs it with double extensions.,\"films it videos of scenes of paint bowling, or smoking and drinking coffee.\",is holding a particular razor like abandoned pool comb and is shown on some other black styling hair.,begins to hit the other.,gold0-orig,pos,unl,unl,unl,unl,A bald man is talking and two pictures of a young male with nice hair flashes on the screen.,The man then begins to work with a mannequin head that has a similar hairstyle as the boy in the pictures and he\nanetv_mB0MeZjjCmU,13430,A vanilla sponge cake is shown on the title screen. A white plate,is then placed on a brown table alongside four brown eggs.,is shown with an animation methods identified x scrolling dots.,is shown in near - bathrooms.,is shown with a kitchen knife partially covered in tools and products.,is shown with a sharp knife.,gold1-orig,pos,unl,unl,pos,pos,A vanilla sponge cake is shown on the title screen.,A white plate\nanetv_mB0MeZjjCmU,13432,\"After, milk, butter, flour, banana pudding, salt and vanilla extract are shown on a table. The milk and butter\",are heated up then added in a large bowl with the cake batter to be whisked.,are wiped in the oven.,is stirred and poured into the bowl.,are added to the bowl together.,,gold0-orig,pos,unl,pos,pos,n/a,\"After, milk, butter, flour, banana pudding, salt and vanilla extract are shown on a table.\",The milk and butter\nanetv_mB0MeZjjCmU,13431,\"They are then put in a silver bowl and they are whisked at a rapid pace as sugar is gradually added it and the whipping continues. After, milk, butter, flour, banana pudding, salt and vanilla extract\",are shown on a table.,are shown in them.,are added in the pan.,\"are added, and pour drink ingredients in the pan and are then placed with sugar, and rust cream techniques.\",,gold1-orig,pos,unl,unl,unl,n/a,They are then put in a silver bowl and they are whisked at a rapid pace as sugar is gradually added it and the whipping continues.,\"After, milk, butter, flour, banana pudding, salt and vanilla extract\"\nanetv_mB0MeZjjCmU,13433,The milk and butter are heated up then added in a large bowl with the cake batter to be whisked. The vanilla,is then added and poured into another bowl before the final product is shown.,\"is added and stirred, seed, and pepper ready to serve.\",is replayed itself on a plate.,is sprinkled with an egg shaped like nuts and four objects of tube on the chocolate ring.,individual in the large red coffee finishes stuff out onto a plate.,gold0-reannot,pos,unl,unl,unl,unl,The milk and butter are heated up then added in a large bowl with the cake batter to be whisked.,The vanilla\nlsmdc3058_RUBY_SPARKS-28252,1555,Someone opens the passenger door. He,holds his brother's gaze then pulls the door shut.,unlocks the door.,nonchalantly froth the poker in front of hers and he heads back down the yard.,finds someone's little packet.,,gold0-orig,pos,unl,unl,unl,n/a,Someone opens the passenger door.,He\nlsmdc3058_RUBY_SPARKS-28252,1554,Someone shifts his sympathetic gaze. Someone,opens the passenger door.,snaps a picture of himself.,walks forward with a wave.,clicks on the radio.,offers his his hand.,gold0-reannot,pos,unl,unl,unl,unl,Someone shifts his sympathetic gaze.,Someone\nanetv_1aCwFDS0j2A,3080,A woman is seen kneeling on a mat in a back yard and leads into her bending backwards using her hands. She then,puts her hands all the way down on the ground while still continuing to look up.,springs back and fourth climbing up the hoop while swinging the little rope around herself with her arms.,finally draws herself and shows a small hula hoop on her legs.,stops using the exercise machine in full affection and messes main with a finger.,smooths on the back.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen kneeling on a mat in a back yard and leads into her bending backwards using her hands.,She then\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60379,15431,Someone realizes what her message is. The Ring,lies in the palm of someone's hand.,is measured for paradise.,is not able to regain her progression.,sinking down against the e - scan device for ships.,\", man in the sheriff is looking to a window and looks down with a book in her hands.\",gold0-orig,pos,unl,unl,unl,unl,Someone realizes what her message is.,The Ring\nanetv_K4F8I74OM-Y,17958,A man appears training them and different marathoners in training take turns being interviewed while they continue to switch back and forth to everyone going through the training. The last clip is the view from the start of a marathon and hundreds of people,start running as they leave the start line.,walk in all directions that keep this.,on not walking around the bases.,\"going in and out of it, one dressed in green and leotards then pictured.\",are working in a field.,gold0-orig,pos,unl,unl,unl,unl,A man appears training them and different marathoners in training take turns being interviewed while they continue to switch back and forth to everyone going through the training.,The last clip is the view from the start of a marathon and hundreds of people\nanetv_K4F8I74OM-Y,17957,\"A clip begins and it features people running and the words on the screen say they are novices who are training to run a marathon in Tel Aviv, Israel. A man appears training them and different marathoners in training\",take turns being interviewed while they continue to switch back and forth to everyone going through the training.,appear with part police people.,should be called military uniforms.,environments and biking ride together in circles.,and interviewer tournament is shown.,gold0-orig,pos,unl,unl,unl,unl,\"A clip begins and it features people running and the words on the screen say they are novices who are training to run a marathon in Tel Aviv, Israel.\",A man appears training them and different marathoners in training\nanetv_W3ozAI2ozCs,7437,The young athlete jumped on the pole and began turning around the pole with his arms and hands. A young kid,walked at the side of the mat as the young boy is doing his rounds.,\"runs after the man in front of the pole, then it hurt.\",is fighting in a red dress throwing a discuss.,jumped on the bar and jumped over the bar.,grabs a cane while doing karate moves and doing the jump and flip to the sand.,gold0-orig,pos,unl,unl,unl,unl,The young athlete jumped on the pole and began turning around the pole with his arms and hands.,A young kid\nanetv_W3ozAI2ozCs,7087,\"He does hand stands, then lifts his legs into the air in a plethora of moves. The boy\",\"dismounts, then bows to the crowd.\",gets backwards and begins to wave and move in another direction.,slips back down with hand raised.,mounts an and bounces from the end of the line.,,gold1-orig,pos,unl,unl,unl,n/a,\"He does hand stands, then lifts his legs into the air in a plethora of moves.\",The boy\nanetv_W3ozAI2ozCs,7086,\"He jumps up, grabbing the bar as he flips numerous times. He\",\"does hand stands, then lifts his legs into the air in a plethora of moves.\",catches himself with the water two times and falls off his board onto the mat.,continues to move up and multiple times.,builds speed as he falls off the boat.,\"makes a shot of the punching bag, then hits an object toward the goal.\",gold0-orig,pos,unl,unl,unl,unl,\"He jumps up, grabbing the bar as he flips numerous times.\",He\nanetv_wsc5GIgVwN8,6337,\"A man from the team then comes along and starts to skateboard down the road in a community environment. As he continues skating, he moves to a more rural area with large mountains and field in the open and points\",begin to rack up in the corner of the screen.,begin to talk to the camera about how to complete the fitness.,eyes on the street.,to both of the fence at the end.,to a pit in the jungle.,gold1-reannot,pos,unl,unl,unl,unl,A man from the team then comes along and starts to skateboard down the road in a community environment.,\"As he continues skating, he moves to a more rural area with large mountains and field in the open and points\"\nlsmdc1004_Juno-6518,13807,\"Beneath it, a low - rise bungalow perched on a gentle slope looks out over an uneven lawn under a cloudy sky. In flashback, the girl\",steps out of the knickers and walks slowly across the room towards a skinny boy sitting bare - chested in the same armchair.,runs back across the double lake buildings.,massages a catch with an adopted girl.,sits peering through the binoculars to watch someone clean off a moon.,,gold0-orig,pos,unl,unl,pos,n/a,\"Beneath it, a low - rise bungalow perched on a gentle slope looks out over an uneven lawn under a cloudy sky.\",\"In flashback, the girl\"\nlsmdc1004_Juno-6518,13808,\"Wearing just a T - shirt, the girl gives a tentative smile as she straddles the boy's lap and brings her rosebud lipped mouth close to his faith. The girl\",stops the boy's mouth with a tender kiss.,begins to take concerned bites.,gets up and hustles when someone tries a better view of the zoo.,rolls her eyes and someone kisses the girl's neck.,lifts her eyes as she stirs in her silk dress.,gold0-orig,pos,unl,unl,unl,unl,\"Wearing just a T - shirt, the girl gives a tentative smile as she straddles the boy's lap and brings her rosebud lipped mouth close to his faith.\",The girl\nlsmdc1004_Juno-6518,13809,The girl stops the boy's mouth with a tender kiss. The shaggy blond dog,does what he is told.,shows a picture of someone in a tuxedo.,gets briefly from behind.,is having a pretty good time.,,gold1-orig,pos,unl,unl,unl,n/a,The girl stops the boy's mouth with a tender kiss.,The shaggy blond dog\nlsmdc1004_Juno-6518,13810,The shaggy blond dog does what he is told. The girl,takes a swig of juice and wags her mouth on the sleeve of her hoodie.,pulls a candy from house.,gets up and steps away to some other houses.,spins the dog around the dog and takes the frisbees and throws.,\"attempts to put down her purse, dryer downstairs and uses the scissor to show the different man's rollers.\",gold1-reannot,pos,unl,unl,unl,unl,The shaggy blond dog does what he is told.,The girl\nanetv_JoiZmVQCLCI,12868,A large audience is seen cheering while a man stands ready and runs down a track. The man,jumps over a pole and is followed by clips of more people jumping over a pole.,then begins throwing and spinning the discus as well as flashes and others watching on the sidelines.,hops along a mat while moving around and leads the person jumping after the routine.,then brings end to the bottom and stands up and out tricks onto the stage.,,gold1-orig,unl,unl,unl,unl,n/a,A large audience is seen cheering while a man stands ready and runs down a track.,The man\nanetv_JoiZmVQCLCI,15853,Many clips play one after the other of people using a pole to get over a bar. More people,take turns pole volting and reacting afterwards.,come out of the gym and the camera is laughing.,try the pole out of the way but move at the end.,wearing suits are shown playing with demonstrating following the tasks and doing the various tricks to reach the end.,perform impressive tricks on the waves.,gold1-orig,pos,unl,unl,pos,pos,Many clips play one after the other of people using a pole to get over a bar.,More people\nanetv_JoiZmVQCLCI,15852,An audience cheers as several men run down a track and pole volt. Many clips,play one after the other of people using a pole to get over a bar.,are shown of the girls performing.,are able to play a soccer game while others watch and cheer.,are shown of people playing volleyball while the crowd cheers for them.,are shown of the first man throwing the yellow ball to the trainer.,gold0-orig,pos,unl,unl,unl,unl,An audience cheers as several men run down a track and pole volt.,Many clips\nanetv_JoiZmVQCLCI,12869,The man jumps over a pole and is followed by clips of more people jumping over a pole. Several clips,are shown of people making the jump as well as falling and raising their hands into the air.,are shown of him doing jumps and tricks on a mat olympic along with a young person helping him.,are shown of people running down area scoring huge tricks in the end.,are shown of people jumping and jumping around while others watching.,are shown of people playing.,gold1-orig,pos,unl,unl,pos,pos,The man jumps over a pole and is followed by clips of more people jumping over a pole.,Several clips\nanetv_PUWg7fXnCf0,12910,A woman is jump roping on a street and doing flips. A man,is jump roping next to a water fountain.,does pole vaults on several uneven bars while spectators watch behind him.,\"runs to stand, and kneel in front of the sea.\",loses her and walks out of a rope and has 6 slung around her waist.,is standing on the board on a beam with his hands behind her back.,gold0-orig,pos,unl,unl,unl,unl,A woman is jump roping on a street and doing flips.,A man\nanetv_PUWg7fXnCf0,12909,People are jump roping together in a group. A woman,is jump roping on a street and doing flips.,gets brushes and starts.,\"talks to the camera while talking to young kids taller black, leaning back.\",walks through the jungle dance.,,gold1-orig,pos,unl,unl,unl,n/a,People are jump roping together in a group.,A woman\nanetv_sn1OtmEJxng,323,A long line of bikers are shown in the dark at an event. A man,is speaking onstage to the people as they prepare for the main event.,is standing in a room in their cluttered living room and shows a man people outside.,goes scores in slow motion.,is shown standing before a slowed area.,is seen speaking to the camera in various settings and then uses two jumps several more.,gold0-orig,pos,unl,unl,unl,pos,A long line of bikers are shown in the dark at an event.,A man\nanetv_HqGWA16ECWE,17498,A girl in a dress is crossing monkey bars. She,gets to the end and steps on a rock.,does different flips and lands on a mat on top of a bar.,climbs up and kneels on the ground.,walks back and forth in a line of hopscotch.,,gold0-orig,unl,unl,unl,unl,n/a,A girl in a dress is crossing monkey bars.,She\nlsmdc3024_EASY_A-11662,4568,\"He whirls her around, then sets her down. They\",share a sweet passionate kiss.,reaches his feet straight as she steps back and disappears into the water.,share a look.,perform a ballet dance.,,gold0-orig,pos,unl,pos,pos,n/a,\"He whirls her around, then sets her down.\",They\nlsmdc3024_EASY_A-11662,4564,Someone watches on a cellphone and a truck almost hits him. He,hurls ice cream at it.,\"other inspector pulls someone's head from the base of the panicking, but the petrol piglets are knocked over.\",eagerly aims the gun's tip in his.,grab catch of the hook and save the man in the back of the tower.,climbs into the roof of a truck to see someone in his car.,gold1-orig,pos,unl,unl,unl,pos,Someone watches on a cellphone and a truck almost hits him.,He\nlsmdc3024_EASY_A-11662,4566,\"His wife smiles at him, but he ignores her. She\",sheepishly sucks her lips and heads off.,folds the napkin into someone's fork.,\"leans forward, proud of his sympathy.\",\"sips her wine, then stands on her tiptoes.\",steps into the garden and sits.,gold0-orig,pos,unl,pos,pos,pos,\"His wife smiles at him, but he ignores her.\",She\nlsmdc3024_EASY_A-11662,4570,She wraps her arm around his chest and they ride off. They,wheel slowly across the lawn.,drift down beside him.,descend a flight of stairs.,walk over to someone's house.,sit and walk together.,gold1-orig,pos,unl,unl,pos,pos,She wraps her arm around his chest and they ride off.,They\nlsmdc3024_EASY_A-11662,4565,\"He hurls ice cream at it. Now, someone\",stares steadily at his laptop.,shoots into the cell block and turns the phone toward someone.,shows someone to a floor with a pizza.,arrives in someone's chauffeur car.,faces his daughter in a mirror.,gold0-orig,pos,unl,unl,pos,pos,He hurls ice cream at it.,\"Now, someone\"\nlsmdc3024_EASY_A-11662,4567,\"Now outside, someone leaps into someone's arms. He\",\"whirls her around, then sets her down.\",pauses to run up the side of the rooms.,thrusts it into someone's chest and knocks him out.,\"crosses across a passage, a glass balcony above it.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Now outside, someone leaps into someone's arms.\",He\nlsmdc3024_EASY_A-11662,4571,\"They drive onward, keeping their fists in the air. The mower\",carries them up a tree - lined road on a hill.,watches them from the boys who duck beside him.,eases up 100 feet across its top parallel as he gazes at the man riding his car.,rolls over as several cars try to skateboard.,strolls out of the building on the winding road from a tall bob and the tree cover.,gold0-reannot,pos,unl,unl,unl,unl,\"They drive onward, keeping their fists in the air.\",The mower\nanetv_M7tUnCF9lU4,16663,She looked inside the tunnel and moved the little kid to show him and wave at the person. The lady,hold the child while she push him down the slide.,slows to adjust the ignition on her inner tube.,fumbles with the brush and removes the harmonica to add to the pieces.,went to help stalls and sat at the end of the slide.,faces the in while using the gear and the guy finally stops forward and turns to face the man.,gold0-orig,pos,unl,unl,unl,unl,She looked inside the tunnel and moved the little kid to show him and wave at the person.,The lady\nanetv_M7tUnCF9lU4,16664,The lady hold the child while she push him down the slide. The lady,slide the kid up back to the top.,on the left laughs and the girl falls out of the car.,falls off the boat and stands on the hill.,irons the gray bare pajamas.,is pulled behind the bench as the mans brushes her legs and begs.,gold1-orig,pos,unl,unl,unl,pos,The lady hold the child while she push him down the slide.,The lady\nanetv_M7tUnCF9lU4,16666,The lady hold the child and pushed him down the slide. The child,sat on the bottom of the slide while looking away.,slides under the water on the river.,starts to slide and slide slide down the slide.,swing all up and signal the fence.,gets on her knees and then gets stuck.,gold1-orig,pos,unl,unl,unl,unl,The lady hold the child and pushed him down the slide.,The child\nanetv_M7tUnCF9lU4,16662,A lady standing beside the slide is holding a little child on top of the slide. She,looked inside the tunnel and moved the little kid to show him and wave at the person.,sit down and wipe her face with her hands.,\"moves, her hand in the toilet like strap as she jumps to the edge.\",turns to filming them.,picks up the hula hoop and lands a few rounds on her face.,gold0-orig,pos,unl,unl,unl,unl,A lady standing beside the slide is holding a little child on top of the slide.,She\nanetv_M7tUnCF9lU4,16665,The lady slide the kid up back to the top. The lady,hold the child and pushed him down the slide.,swings the mop up and down.,falls and gets on the connected.,stops and gets that down too.,put the little girl on the bar and dry her legs.,gold0-orig,pos,unl,unl,unl,unl,The lady slide the kid up back to the top.,The lady\nanetv_dFsFL_WJasg,19323,The camels are carrying people. The camel in the back,comes halfway alongside the front camel.,is wearing a sports outfit.,is riding the camels.,as the group rides alongside the camels.,\", taking up tightrope details.\",gold0-orig,pos,unl,unl,unl,unl,The camels are carrying people.,The camel in the back\nanetv_dFsFL_WJasg,9957,The back that is tied to the front camel leaves the rear. The back camel,walks alongside the hump of the front camel.,continues drying in front of the path in circles.,helps the camel with where he is holding the camel's camel.,is pulled along at the top of the camels sits on the camel.,,gold1-orig,pos,unl,pos,pos,n/a,The back that is tied to the front camel leaves the rear.,The back camel\nlsmdc0046_Chasing_Amy-68525,5565,\"We are at a Comic Book show, specifically at a book - signing. Someone\",sits at a table.,busily assorted for someone.,\"polishing line with numbers in front in the upper compartments, opening blue paint and drawers filled with yellow paper.\",stands looking at the clothing without a pencil.,,gold0-orig,pos,unl,unl,unl,n/a,\"We are at a Comic Book show, specifically at a book - signing.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3797,9850,\"Someone holds up his left hand, points to his wedding band then runs a finger across his own throat. Someone\",rocks his arms then sweeps his fingers into the air.,\"goes back to someone, ripping his sausage and reaching into his shirt pocket, then edges the handcuffs at.\",picks someone's hand up to protect him.,peers across the street outside lion's enclosure.,is with the column of troops.,gold1-orig,pos,unl,pos,pos,pos,\"Someone holds up his left hand, points to his wedding band then runs a finger across his own throat.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3797,9846,Later someone shovels into a family restaurant. Someone,waves to him from a booth.,sits with the two guys in the black limousine.,watches roasting debris on each roof.,reads someone's book in a strip of colored wallpaper.,is by the empty - lit lounge.,gold0-orig,pos,unl,unl,unl,unl,Later someone shovels into a family restaurant.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3797,9847,\"Someone waves to him from a booth. Covering his mouth with one arm as he coughs, someone\",sits across from someone.,sheepishly meets the run over.,looks someone straight in.,\"sits opposite, releasing her kiss.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone waves to him from a booth.,\"Covering his mouth with one arm as he coughs, someone\"\nlsmdc3007_A_THOUSAND_WORDS-3797,9849,Someone slams his fists on the table. Someone,\"holds up his left hand, points to his wedding band then runs a finger across his own throat.\",'s phone in it stands across the basket.,grabs several cans from the young man.,leans over and kiss their hands beneath the shaft.,'s crying brother smiles at him.,gold1-reannot,pos,unl,unl,unl,unl,Someone slams his fists on the table.,Someone\nanetv_tyjUDi3uLd0,16403,\"He kneels onto the floor, measuring the tiles. He\",uses a leveler on the floor.,applies it down to the carpet.,lies heavily on carpet.,shows how to clean the tire.,drops the disk in the trash.,gold1-orig,pos,unl,unl,unl,unl,\"He kneels onto the floor, measuring the tiles.\",He\nanetv_tyjUDi3uLd0,16402,\"A real man appears in a partially prepared room, and begins talking about the tiled floor. He\",\"kneels onto the floor, measuring the tiles.\",is standing that is seen sitting on top of the tv holding a cup of coffee.,\"is shown against the floor, and watching someone dive up showing the necessary steps.\",\"is seeking the piano, but the fridge is ripped.\",has knives in front of him.,gold0-orig,pos,unl,unl,unl,pos,\"A real man appears in a partially prepared room, and begins talking about the tiled floor.\",He\nanetv_tyjUDi3uLd0,4456,And then comes on and talks about some key points to remember when doing a flooring project. He then,proceeded to show a method of balancing tiles on my floor with a string.,jumps onto the lawn and takes the paper off the log and begins resolutely towards the table to finish and walk back to talk.,uses different designs to leftovers a drink into a part of town.,go about the mechanics by letting it out before making it some very high.,\"bends down and pauses to work, further at a small hole cut holes in the walls.\",gold0-orig,pos,unl,unl,unl,unl,And then comes on and talks about some key points to remember when doing a flooring project.,He then\nanetv_tyjUDi3uLd0,4455,An introduction comes onto the screen for a video about home improvement. And then comes on and,talks about some key points to remember when doing a flooring project.,starts talking about the cuts of potatoes and other plants.,begins putting several ingredients into the man's hand and opening the door.,puts a rock in the wallpaper.,,gold0-reannot,pos,unl,unl,unl,n/a,An introduction comes onto the screen for a video about home improvement.,And then comes on and\nanetv_tb8KKdC7r-A,1932,\"People play shuffleboard in a gym. A woman throws a black puck, then she\",talks and continue playing.,turns to throw the girl on the court.,gets control of an ice dispenser.,picks up the hammer.,spins on the beam.,gold0-orig,pos,unl,unl,unl,unl,People play shuffleboard in a gym.,\"A woman throws a black puck, then she\"\nanetv_uVcyJg_3Fj8,5153,\"They put lights on the tree and light them up. Next, they\",begin to put several different ornaments on the tree.,put a liquid hanging on trees bush.,put bulbs in a tree to decorate the tree in the beginning.,put oil and ornaments onto the tree.,put purple ornaments on to a tree.,gold0-orig,pos,unl,unl,pos,pos,They put lights on the tree and light them up.,\"Next, they\"\nanetv_uVcyJg_3Fj8,5152,\"Later, they begin to put up a Christmas tree with two people involved in the process. They\",put lights on the tree and light them up.,add silver flower on her piece of fabric.,\"put on the curling list, and the they end it ranch a plate and another.\",pull together and go down to step by step handed to the tree.,talk a long time.,gold0-orig,pos,unl,unl,unl,pos,\"Later, they begin to put up a Christmas tree with two people involved in the process.\",They\nanetv_uVcyJg_3Fj8,5154,\"Next, they begin to put several different ornaments on the tree. Lastly, they\",put the skirt under the tree and end the video with a kiss.,wrap the christmas tree a canvas and pour the mixture into halves and arrange it into a put dish.,\"continue to watch ornaments on the tree, pass the tree up on the picnic table.\",add more ornaments to the tree.,put sides to show ornaments on the christmas tree.,gold0-orig,pos,unl,unl,unl,unl,\"Next, they begin to put several different ornaments on the tree.\",\"Lastly, they\"\nanetv_uVcyJg_3Fj8,5151,\"A time lapse video is shown of people walking around a house. Later, they\",begin to put up a christmas tree with two people involved in the process.,begin wearing tight bicycles and competing in the parts of the ring.,are working by the start.,use a tool to brush down the dock.,,gold0-orig,pos,unl,unl,pos,n/a,A time lapse video is shown of people walking around a house.,\"Later, they\"\nanetv_IpFsz2xc3sY,12570,She begins to do the same process with the other side of her hair. The video,finishes by cutting a still image of the same girl and panning up and down.,moves outside and leads into more highlights of men wrestling.,shows her getting her cellphone done.,cuts to a competitor talking in front of a mirror.,ends with the closing credits pulling on the screen.,gold0-orig,pos,unl,unl,unl,pos,She begins to do the same process with the other side of her hair.,The video\nanetv_IpFsz2xc3sY,12569,\"She criss crosses the braids, and places a rubberband on it. She\",begins to do the same process with the other side of her hair.,repeat the process between the skates.,places the new braid in the end then moves the water into the braids.,takes it and puts it on the way.,pauses and folds the paper two times gracefully.,gold0-orig,pos,unl,unl,unl,unl,\"She criss crosses the braids, and places a rubberband on it.\",She\nanetv_IpFsz2xc3sY,12567,A woman is speaking to a webcam in her bedroom. She,\"begins to play with her hair, separating part of it and braiding it.\",is beginning to wash her hands wet and keep it under the faucet.,is talking to a woman who is in a room that uses some water to mop the floor using the mop.,is setting her mouth down.,holds up a piece of material.,gold1-orig,pos,unl,unl,unl,pos,A woman is speaking to a webcam in her bedroom.,She\nanetv_IpFsz2xc3sY,12568,\"She begins to play with her hair, separating part of it and braiding it. She\",places the first braid into her mouth while creating another one.,finishes her hair and dabs it on the man's hair and pushes it back down.,rolls to her right and is still holding until her hands catch up immediately.,twirls the baton and shoulders it.,,gold0-orig,pos,unl,unl,pos,n/a,\"She begins to play with her hair, separating part of it and braiding it.\",She\nanetv_ymJTN8aKZEw,7812,A man in a blue shirt walks away from the blindfolded man. We,see a man in a yard with a stick and blindfold and swings the stick nowhere near the pinata.,two times in front of the christmas tree.,are standing in a red shirt holding a trophy and talking.,filming the race as the man and a man play the boy.,,gold1-orig,pos,unl,unl,unl,n/a,A man in a blue shirt walks away from the blindfolded man.,We\nanetv_ymJTN8aKZEw,16608,An older gentleman has been blindfolded. He,is using a bat to swing at a pinata over and over.,climbs onto the roof of a parked car.,spits something on his hand.,\"stands next to her, and sniffs in the taut green dessert filled with salami.\",,gold0-orig,pos,unl,unl,pos,n/a,An older gentleman has been blindfolded.,He\nanetv_ymJTN8aKZEw,7814,A person runs from under a camera. A person in blue,runs across the yard.,runs their horses across the ice.,walks over the board.,kneels down in front of someone who does the same thing again.,stands with another person sitting on the side.,gold0-orig,pos,unl,pos,pos,pos,A person runs from under a camera.,A person in blue\nanetv_ymJTN8aKZEw,7815,A person in blue runs across the yard. The man,swings near the pinata.,scoops on the mop.,flies in the air and falls to their feet.,kneels down and grabs an archery box.,strikes the rock back and forth.,gold1-reannot,pos,unl,unl,pos,pos,A person in blue runs across the yard.,The man\nanetv_UgtzVS_oeq0,16928,A man approaches a table and places food on it. Two children,eat under the table.,shake hands in an office bowling he carry in a single file.,emerge from a cart and begin playing darts at him.,\"point to food, with elderly men, fridge, bread, bread and a table container with large pieces.\",talk to each other about different food in a back yard.,gold0-orig,pos,unl,unl,unl,unl,A man approaches a table and places food on it.,Two children\nanetv_UgtzVS_oeq0,16927,A woman smokes and exhales black smoke. A man,approaches a table and places food on it.,is walking slowly past him in the street carrying poles.,picks inside a container and sets it upright.,walks on the roof of a marquis.,washes bottles in a room in scuba gear.,gold1-orig,pos,unl,unl,unl,unl,A woman smokes and exhales black smoke.,A man\nanetv_n0Th8ZqMeGk,927,A man is on a snowboard on a snowy hill. He,glides over the thickly packed snow.,is walking along the snow.,rides down a hill on the other side of the desert.,rides up while rubbing his hands.,,gold0-orig,pos,unl,unl,unl,n/a,A man is on a snowboard on a snowy hill.,He\nanetv_n0Th8ZqMeGk,928,He glides over the thickly packed snow. He,\"goes through a marker, and jumps over obstacles.\",smirks as he strolls down the seats on the asphalt.,reaches and abandons the door.,lands and runs down the alley between the three.,,gold0-orig,pos,unl,unl,pos,n/a,He glides over the thickly packed snow.,He\nanetv_nt9tMdFVQ1c,9118,\"A group of men are playing volleyball on the beach, 3 on one side, and 2 on the other side. One team attempts to serve and it\",crashes into the net.,is hard to continue hitting someone on the top as the others speak to the camera.,fails to serve the ball.,splits off several times until a derby score is made.,misses the goal and now the goalie does the same.,gold0-orig,pos,unl,unl,unl,unl,\"A group of men are playing volleyball on the beach, 3 on one side, and 2 on the other side.\",One team attempts to serve and it\nanetv_7Nj1Y-fyq_c,18551,\"A man dressed in business attire enters a kitchen with some children behind him, he shakes a woman's hand, rubs her shoulder and then introduces the children to the woman, and the whole time black text on the top of the screen reads' Lying 'Ryan has a few minutes to kill before a flight. More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him\",are appearing on the screen.,are used to be all of them doing showcases.,\"and baited cold - hued appear and then, he goes on the cut.\",shown and then the same car is seen moving.,are being shown getting wanting to fold it up.,gold0-orig,pos,unl,unl,unl,unl,\"A man dressed in business attire enters a kitchen with some children behind him, he shakes a woman's hand, rubs her shoulder and then introduces the children to the woman, and the whole time black text on the top of the screen reads' Lying 'Ryan has a few minutes to kill before a flight.\",\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him\"\nanetv_7Nj1Y-fyq_c,18552,\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him are appearing on the screen. The man is out of the kitchen now and walking then stops to shake hands and talk to a man, but a negative message about him still\",appears on the screen.,describes how to wash the water to wash and cuff him.,is in his hand.,appears to explain what his kid was saying is the german homeless.,appears and he is showing the same various though quicker.,gold0-orig,pos,unl,unl,unl,unl,\"More clips continue to play of the man in the kitchen, talking, handling cleaning products, and washing dishes, but a lot of negative words about him are appearing on the screen.\",\"The man is out of the kitchen now and walking then stops to shake hands and talk to a man, but a negative message about him still\"\nanetv__5VJcnrEgbg,4859,Another man joins him shortly after. Several different angles,\"are shown as the group of four play before an audience, hitting the ball back and forth quickly.\",are repeated in acrobatic motion across the screen.,are shown with the implement being made while more people have become webbed.,are shown about the moves of the world and moving around on the side of the table until the picture fades.,are shown of him falling.,gold0-orig,pos,unl,unl,unl,pos,Another man joins him shortly after.,Several different angles\nanetv__5VJcnrEgbg,4860,\"Several different angles are shown as the group of four play before an audience, hitting the ball back and forth quickly. When they are done, the men\",\"walk away, patting each other on the backs.\",throw balls off the mat to end by throwing the ball off into the distance.,stop playing the bench and watch the ladies bowling with their ducks.,continue to play basketball while there's a rope laying at the distance.,take string ornaments from their shoulders.,gold0-orig,pos,unl,unl,unl,unl,\"Several different angles are shown as the group of four play before an audience, hitting the ball back and forth quickly.\",\"When they are done, the men\"\nlsmdc3040_JULIE_AND_JULIA-17930,2451,\"She gets up, goes into the living room, and grabs a tissue. And someone\",waves him off with a tissue.,makes her way through the conference room.,soaks up the clothes in the hall.,leads her to the patio door.,,gold0-orig,pos,unl,unl,pos,n/a,\"She gets up, goes into the living room, and grabs a tissue.\",And someone\nlsmdc3040_JULIE_AND_JULIA-17930,2453,Now someone holds up a glass of wine. Someone and someone,stand across from her in the child's kitchen.,are having a glass of milk on.,\"ride along the road through a museum of neighborhood, strolling through an upscale concourse of some houses.\",get in the driver's seat at the other end of the rails and get out.,decorate another chalkboard on the wall outside the room.,gold1-orig,unl,unl,unl,unl,unl,Now someone holds up a glass of wine.,Someone and someone\nlsmdc3040_JULIE_AND_JULIA-17930,2452,And someone waves him off with a tissue. Now someone,holds up a glass of wine.,lies in a hammock.,drinks a waiter's reference.,strolls with someone and drags someone onto a cigarette.,waddles up to someone's grave.,gold1-orig,pos,unl,unl,unl,pos,And someone waves him off with a tissue.,Now someone\nanetv_Tv3v-UpBJ2Y,13122,A small group of people are seen standing on a field holding onto a rope. A man,stands in front as the group begins pulling the rope to one side.,walks behind the person and helps him up.,lays down on a horse and throws their arms up in the air.,is then seen walking around on horses on the ground.,looks out into the distance while holding a rope.,gold1-orig,pos,unl,unl,pos,pos,A small group of people are seen standing on a field holding onto a rope.,A man\nanetv_Tv3v-UpBJ2Y,13123,A man stands in front as the group begins pulling the rope to one side. The people,continue pulling until one falls down afterwards.,do forward flipping tricks while the rope is thrown.,walk away from the bars and one puts onto the side.,ride towards the other rail and pull the tube between themselves.,walk in the circle while others watch on the side.,gold1-orig,pos,unl,unl,unl,unl,A man stands in front as the group begins pulling the rope to one side.,The people\nanetv_aivuk1LvDv8,18730,A woman is playing a classical song on the piano in a black and white film. She,begins to speed up the pace of the music she is playing.,holds a wooden flute as she sings on the old stage.,adjusts the braid and smiles at the students teacher.,does video songs 101 as she demonstrates to dance her flute.,drum works in a dimly lit room.,gold0-orig,pos,unl,unl,unl,unl,A woman is playing a classical song on the piano in a black and white film.,She\nanetv_aivuk1LvDv8,18731,She begins to speed up the pace of the music she is playing. The camera,shows her playing the piano from overhead.,returns to the house at the end.,shows white information of the video that she is explaining.,zooms in on the young woman next to her on the boat.,,gold0-reannot,pos,unl,unl,unl,n/a,She begins to speed up the pace of the music she is playing.,The camera\nlsmdc1039_The_Queen-88099,17493,\"Suddenly, she stops writing. The next day three Land Rovers\",drive away from balmoral.,sits on the icy side.,fade from a black.,are sitting earlier in a seated glass.,,gold0-orig,pos,unl,unl,unl,n/a,\"Suddenly, she stops writing.\",The next day three Land Rovers\nlsmdc1039_The_Queen-88099,17492,\"Someone leaves someone with her paperwork. Elsewhere, someone\",sits at a desk writing in a book.,shares a gunman at the park.,strides into an elevator with his breath.,runs along a corridor and sprints away beyond the ministry of magic.,\"has long dark curly hair, pretty with her head and applies words and faces her guest, then starts by the cross store.\",gold0-orig,pos,unl,pos,pos,pos,Someone leaves someone with her paperwork.,\"Elsewhere, someone\"\nlsmdc1039_The_Queen-88099,17494,\"The next day three Land Rovers drive away from Balmoral. Wednesday, someone\",stares out of a window.,plays his guitar on his cellphone.,\"sits at a desk, camping out.\",grimaces as he reads the letter.,stands alone at the bar.,gold0-orig,pos,unl,unl,pos,pos,The next day three Land Rovers drive away from Balmoral.,\"Wednesday, someone\"\nanetv_WGpz-hV-Ejw,1383,A young girl is standing on a court with a jump rope. She,begins jumping in front of a table of judges.,moves back and forth on the field with other people.,gets up and walks into his living room.,is jumping onto a seat in front of her.,walks to the edge of a small track.,gold0-orig,pos,unl,unl,unl,unl,A young girl is standing on a court with a jump rope.,She\nanetv_WGpz-hV-Ejw,1384,She begins jumping in front of a table of judges. She,\"hops, spins, and flips with the rope.\",passes past scenes of the audience holding up the podium from the audience.,stops dancing and then finishes up.,continues playing with a baton and twirling her baton.,jumps off of the bar and lands in a plush room.,gold0-orig,pos,unl,unl,unl,unl,She begins jumping in front of a table of judges.,She\nanetv_1X4hgrBjw-U,8357,A woman is handed an ice cream cone. Two police officers,order ice cream and wait for it.,shows how to trimmers it.,are carrying their bikes to their pedals.,stand at the table.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is handed an ice cream cone.,Two police officers\nanetv_1X4hgrBjw-U,2127,A person is see handing an officer an ice cream cone while a woman watches on the side. The woman then,speaks to the officers while others watch on the side.,puts all the ingredients left on the pans to the mix.,walks away from the horse.,cleans the woman with a knife.,sits on a bench and attempts to stencil on someone's hand.,gold0-orig,pos,unl,unl,unl,pos,A person is see handing an officer an ice cream cone while a woman watches on the side.,The woman then\nanetv_1X4hgrBjw-U,2128,The woman then speaks to the officers while others watch on the side. The man then,grabs an ice cream and hands it to the woman.,kneels down next to the tokens and demonstrates how to slackline it.,points to the man performing impressive tricks performing many tricks and tricks on a machine.,begins to spread rocks several times then lands on a mat and several others stand around him.,starts with the ball and ice.,gold1-orig,unl,unl,unl,unl,unl,The woman then speaks to the officers while others watch on the side.,The man then\nanetv_1X4hgrBjw-U,8358,Two police officers order ice cream and wait for it. A customer,appears irritated by the officers.,starts someone at the ball.,spots the money and throws it away.,enters the station and shows the rear part of the vehicle.,taps the pen on the women arm.,gold0-orig,pos,unl,unl,unl,unl,Two police officers order ice cream and wait for it.,A customer\nanetv_1X4hgrBjw-U,8359,The police officers and woman converse. The police officer,offers the ice cream cone to the woman.,shows us the note through.,gives a superior sign that the dealer knows.,sits on a table.,hurries towards the table.,gold1-reannot,pos,unl,unl,pos,pos,The police officers and woman converse.,The police officer\nanetv_iZUwLKd5TTk,6790,\"As the camera turns, a woman appears ironing a blue shirt. She\",begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either.,gets up and moves her legs around.,shows toothpaste flying from her mouth.,turns a back imitating as she holds her pants back above them.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the camera turns, a woman appears ironing a blue shirt.\",She\nanetv_iZUwLKd5TTk,6791,\"She begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either. During the process, a small white dog runs under the ironing bard and the lady\",begins doing the sleeves.,puts the product on her nostril.,grabs a plastic cat.,lifts her foot victoriously.,\"opens the shoe in the bin, followed by her coat's and rubber boots.\",gold0-orig,pos,unl,unl,unl,unl,She begins pressing the front and then flips it over to ensure the back does n't have any wrinkles in it either.,\"During the process, a small white dog runs under the ironing bard and the lady\"\nanetv_iZUwLKd5TTk,6792,\"During the process, a small white dog runs under the ironing bard and the lady begins doing the sleeves. Once complete, the boy\",comes back and starts talking about something again.,walks away with a newspaper in her hand.,spins her around on the shaving bars as the camera moves around.,is playing the violin.,,gold0-orig,pos,unl,unl,pos,n/a,\"During the process, a small white dog runs under the ironing bard and the lady begins doing the sleeves.\",\"Once complete, the boy\"\nanetv_iZUwLKd5TTk,1343,A man is seen speaking to a camera and leads into a woman ironing all along a shirt. The woman,continues flipping the shirt around to iron and leads back to the man speaking to the camera.,continues to put makeup on the other moving her arms and legs to hold off the camera in the end.,continues ironing some makeup to the camera while looking at the camera.,moves the rollers all around a paintbrush and removes her clothing and checks her reflection in the mirror.,is seen using her hands in the water and the woman begins spreading her arms at the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to a camera and leads into a woman ironing all along a shirt.,The woman\nanetv_iZUwLKd5TTk,6789,\"A young boy with a short haircut is standing in a room talking into the camera. As the camera turns, a woman\",appears ironing a blue shirt.,\"is seen petting branches against the baby neck, making her cheek become a pulse.\",is standing behind her.,does how to apply makeup to her face and help it back.,is crouched behind a table setting.,gold0-reannot,pos,unl,unl,unl,pos,A young boy with a short haircut is standing in a room talking into the camera.,\"As the camera turns, a woman\"\nanetv_vPh9o_BuJaU,9389,The person then bends forward and begins putting shoes on. He,finishes putting shoes on and gets up to walk away.,watches as she brushes off.,continues to take the items out of his body.,takes his hands off and positions them on close again.,begins pressing the coats together and ends by pushing one into a sink.,gold0-orig,pos,unl,unl,unl,unl,The person then bends forward and begins putting shoes on.,He\nanetv_vPh9o_BuJaU,9388,A close up of a person's feet are shown sitting in a chair. The person then,bends forward and begins putting shoes on.,mixes the ingredients with a sponge using a spray brush and rubbing it all over the ice.,grabs the objects into small cups from the table before well them.,begins moving up and down scrubbing the water.,throws more drum around the floor while the camera follows.,gold0-orig,pos,unl,unl,unl,unl,A close up of a person's feet are shown sitting in a chair.,The person then\nlsmdc1058_The_Damned_united-98395,17141,People embrace as they follow the teams up the tunnel. Someone,is interviewed on tv.,hikes up the trail behind the police car.,\"enters from the rooftop, and slowly opens his eyes.\",\"is behind him, climbing across it.\",,gold1-reannot,pos,unl,unl,unl,n/a,People embrace as they follow the teams up the tunnel.,Someone\nanetv_ZmUk9OQ1zfk,15579,Several team members from a volleyball games are interviewed. They,\"are shown playing on the beach, kicking the ball.\",are playing lacrosse on a field playing a game of beach soccer.,perform a cricket game indoors in volley ball.,are shown on board and athletes silly while each other instructs.,\"'re standing in a line with small camera playing games, talking.\",gold0-orig,pos,unl,unl,unl,unl,Several team members from a volleyball games are interviewed.,They\nanetv_-CEi03j4-Bw,18155,The boy begins to stomp on the sand mound. The boy,begins to try to climb the sand mound while people walk on the ocean front at the beach.,poses for a crowd of people who only move up and around the pole.,begins to push the tractor mower along while pausing to sniff.,is showing only missing fishing posts and several clips of the group playing on the beach.,\"takes the stick as she throws it, preparing for help when she comes in.\",gold0-orig,pos,unl,unl,unl,unl,The boy begins to stomp on the sand mound.,The boy\nanetv_-CEi03j4-Bw,18154,A young boy is standing in front of a mound of sand and hitting the mound with his hands. The boy,begins to stomp on the sand mound.,leaps onto the pyre and swims away.,drops the hat on the ice with a crash and runs around and try to spray it.,solves the cube several times as he proceeds to solve the puzzle and turns away.,,gold0-orig,pos,unl,unl,unl,n/a,A young boy is standing in front of a mound of sand and hitting the mound with his hands.,The boy\nanetv_-CEi03j4-Bw,9201,\"Then, he starts to try and climb onto the sand dune and he looks at the camera once. There\",'s also people behind him a few feet away playing badminton with each other.,are no more cricketers than the steamer is attended in the sand.,\", the men turn the skis and engaged in several clips talking to the camera on the slopes in competitions.\",at the audience is already watching him.,continues to perform a high jump explaining how to make flips.,gold1-orig,pos,unl,unl,pos,pos,\"Then, he starts to try and climb onto the sand dune and he looks at the camera once.\",There\nanetv_-CEi03j4-Bw,18153,A young boy stands on and attempts to climb a mound of sand in the center of a line of sandcastles at the beach. A young boy,is standing in front of a mound of sand and hitting the mound with his hands.,cleans his view with his hands.,breaks the trap on the sand with a big shovel and continue hitting the ball over the lawn.,stands in an indoor pool surrounded by two men stalking in front of their buckets.,swings back and forth with an oar and goes up to measure.,gold0-orig,pos,unl,unl,unl,unl,A young boy stands on and attempts to climb a mound of sand in the center of a line of sandcastles at the beach.,A young boy\nanetv_-CEi03j4-Bw,9200,\"This baby is standing up in the sand digging the sand off of the sand dune using his small hands. Then, he starts to try and climb onto the sand dune and he\",looks at the camera once.,rushes under one of the bus supports and rolls really going on it.,is able to fly the board very high!,\"lists the caption from final examples, as: people in the disappear as they gain back underwater and continue to their race.\",quickly flips off and now it comes to the other side before cooking.,gold1-reannot,pos,unl,unl,unl,unl,This baby is standing up in the sand digging the sand off of the sand dune using his small hands.,\"Then, he starts to try and climb onto the sand dune and he\"\nanetv_zU6SnkNIdrw,2843,\"A white bowl is filled with sugar, eggs, and peanut butter, then blended. He\",presses balls of cookie dough onto a pan and bakes them.,pours sugar into olives over stacks of vomit.,mumbles into his hunting belt.,\"now serves, after clamps and cook it, then oil, the lemon, and oil and is added to the mix.\",,gold1-orig,pos,unl,unl,pos,n/a,\"A white bowl is filled with sugar, eggs, and peanut butter, then blended.\",He\nanetv_zU6SnkNIdrw,2844,He presses balls of cookie dough onto a pan and bakes them. He,eats one of the cookies for the camera while he talks about them.,then adds the curry to his glasses and dips them into a sliced pan.,puts a paste on his palette.,edges a nuts in in a jar.,\"takes a small bite of the sandwich, and adds black paste.\",gold0-orig,pos,unl,unl,unl,unl,He presses balls of cookie dough onto a pan and bakes them.,He\nanetv_zU6SnkNIdrw,2842,Several food items in bowls are shown. A white bowl,\"is filled with sugar, eggs, and peanut butter, then blended.\",is added to the sink.,is placed in front of a man and her and takes a bowl of garlic from a jar.,is added to ingredients in a silver bowl.,,gold0-orig,pos,unl,unl,pos,n/a,Several food items in bowls are shown.,A white bowl\nlsmdc3077_THE_VOW-35682,18235,\"He gestures cordially, and someone takes a seat in front of his desk. Sitting behind it, he\",shoots her a quizzical look.,spots someone's reflection behind him in the mirror.,checks his watch on the deck.,notices a pregnant bride standing next to her.,takes two bills from his pocket.,gold0-orig,pos,unl,unl,unl,pos,\"He gestures cordially, and someone takes a seat in front of his desk.\",\"Sitting behind it, he\"\nlsmdc3077_THE_VOW-35682,18234,\"Facing his ex, he grins from ear to ear. He gestures cordially, and someone\",takes a seat in front of his desk.,whacks him with a towel.,try to stop her.,munches cheese that holds a small fake knife.,,gold1-orig,pos,unl,unl,unl,n/a,\"Facing his ex, he grins from ear to ear.\",\"He gestures cordially, and someone\"\nanetv_9YYypM0JvUM,11924,A man is standing in a gym holding up a large bicycle wheel moving his hands along the tube inside the rubber. The man continuously,performs the action as he moves the circle around on his knee.,walks around the parking lot with a group of owners around in celebration.,skates around the corner and starts drumming on the bike's tire.,smooths his hand back and the camera pauses and his shadow is watching his brother.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is standing in a gym holding up a large bicycle wheel moving his hands along the tube inside the rubber.,The man continuously\nanetv_9YYypM0JvUM,11925,\"The man continuously performs the action as he moves the circle around on his knee. After, the man\",picks up a yellow object and starts to tighten the spokes on the wheel and sealing the lifting the rubber up.,goes to the hand and lay a tennis on the ground.,cleans on his leg while it's also activating ammo on a second individual.,\"put applies golden plaster and a word representing stars on say the title area to the camera first and then we see him again,\",spins the plank repeatedly while another man runs through his left hand.,gold1-reannot,pos,unl,unl,unl,unl,The man continuously performs the action as he moves the circle around on his knee.,\"After, the man\"\nanetv_eGW0rygfcrg,19774,We see the man and a woman ballroom dancing. The lady,kicks her leg out behind and in front of her.,hops into her arm.,leans forward in her chair.,stops his dance moves.,waves the hand wildly.,gold0-orig,pos,unl,unl,pos,pos,We see the man and a woman ballroom dancing.,The lady\nanetv_eGW0rygfcrg,19775,The lady kicks her leg out behind and in front of her. We,zoom in on the legs of the dancers.,see a man throwing a spin in a parking lot.,see her in turn bullfighting.,see the closing screen.,see the new title screen.,gold0-orig,pos,unl,unl,pos,pos,The lady kicks her leg out behind and in front of her.,We\nanetv_eGW0rygfcrg,19773,A man and a woman are standing in a bar. We,see the man and a woman ballroom dancing.,are in the water doing various part of working work.,\"walks toward the edge of the ice pool, then walks into her shot and then throws some beer backwards.\",are standing in a living room with giant red bowls and a lemon and and chocolate ice in a cocktail.,come onto the screen doing gymnastics and laughing.,gold0-reannot,pos,unl,unl,unl,unl,A man and a woman are standing in a bar.,We\nlsmdc0043_Thelma_and_Luise-68476,4361,The sun is coming higher in the sky now. They,come to an intersection in the middle of nowhere.,\"go upstairs in the board, quickly walking out.\",climb back through the hotel and cliffs.,are engaged in a game of polo.,,gold0-reannot,pos,unl,unl,unl,n/a,The sun is coming higher in the sky now.,They\nanetv_yiFKPKXevOU,8530,A man puts a wood upright on a tree stump. A guy,is splitting wood into halves.,put the mat on.,hands an adult to measure.,struggles to get it.,jumps over rock and stretches.,gold0-orig,pos,unl,unl,pos,pos,A man puts a wood upright on a tree stump.,A guy\nanetv_yiFKPKXevOU,8531,A guy is splitting wood into halves. A guy repeatedly,tries to cut a wood.,chops the metal table with a green sharpener.,\"pokes a hole into an arm, creating the enemy.\",rolls the side tiles.,messes in his left chest repeatedly with his teeth.,gold1-orig,pos,unl,unl,unl,unl,A guy is splitting wood into halves.,A guy repeatedly\nanetv_wS_T-RMSSCE,9737,Elephant is walking in a small water well playing with a ball. woman is talking in the camera and the elephant,is again in the water well playing with the ball.,starts riding down the hedges in the dirt field.,moves in to the young boy eating ice cream.,is holding a dog and talking to the camera.,is in the grass.,gold0-orig,pos,unl,unl,unl,unl,Elephant is walking in a small water well playing with a ball.,woman is talking in the camera and the elephant\nanetv_wS_T-RMSSCE,9738,Woman is talking in the camera and the elephant is again in the water well playing with the ball. little elephant,is playing with a big blue ball.,is riding a horse that is sitting in a wooden raft.,\"is sitting in the snow, ears up and talking.\",is standing behind a counter glancing and people close the barn watching.,is standing next to her and swimming in the water.,gold0-reannot,pos,unl,unl,unl,pos,Woman is talking in the camera and the elephant is again in the water well playing with the ball.,little elephant\nanetv_SokK_O2s9tQ,8175,A man rides on a camel slowly. Two camel,are sitting in a field.,pass on the other side of the forest.,push people through the woods.,gets in formation and walks a group of people pulling the motorbike together.,backs up to build the food.,gold0-orig,pos,unl,unl,unl,unl,A man rides on a camel slowly.,Two camel\nanetv_SokK_O2s9tQ,8176,Two camel are sitting in a field. We,see people as the get on and off the camels.,woman is standing behind a horse and dressed.,see a rope from a row and slide it.,see their hands and screens that were other on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,Two camel are sitting in a field.,We\nanetv_SokK_O2s9tQ,3430,Two men are standing next to two camels that are resting. The women,are riding the camels while a man is holding the leash of the camel.,talks to the camera while showing the base of the back of his head.,grab their legs and push their body.,get dirt under their armed arms as they ride the camels.,are pulling the rope parts of the rope.,gold0-orig,pos,unl,unl,pos,pos,Two men are standing next to two camels that are resting.,The women\nanetv_SokK_O2s9tQ,8177,We see people as the get on and off the camels. Four women,ride two camels as a man holds the reins.,bows with a hand knife and weapons on the animal.,sing their dancing in unison.,surf on the boat and clap and kiss each other.,,gold0-orig,pos,unl,unl,unl,n/a,We see people as the get on and off the camels.,Four women\nanetv_SokK_O2s9tQ,8178,Four women ride two camels as a man holds the reins. A man,is being interviewed in the field.,removes a large surfboard.,chases a woman with a dog.,jumps into the water riding the camel.,talks to a brown horse and gets in the horse.,gold0-orig,pos,unl,unl,unl,unl,Four women ride two camels as a man holds the reins.,A man\nanetv_SokK_O2s9tQ,8179,A man is being interviewed in the field. We see the man with the camels again and the man,is interviewed before we see the camels one more time.,stands on the horse.,spins the bull as the strings takes off.,\"joins his partner, and we see a man kick at one of the lanes.\",raise his hand above his head and land on the railing.,gold1-orig,pos,unl,unl,unl,unl,A man is being interviewed in the field.,We see the man with the camels again and the man\nanetv_SokK_O2s9tQ,3429,The man is riding a camel. Two men,are standing next to two camels that are resting.,\"get out from the car as the man in grey stops and stands above the large, snow covered hill.\",are riding on the driveway without the dolly.,sit at the camel holding the other man going to the camel.,in a ranch are riding the camels.,gold0-orig,pos,unl,unl,pos,pos,The man is riding a camel.,Two men\nlsmdc1047_Defiance-91954,16869,\"Shells explode to the right and left of someone, but miss their mark. Someone\",is cowering behind a nearby tree.,brings one men onto the bridge and puts the barrel away.,brings a crate of dynamite to the ground and swats so it can not find him.,touches his board in the garden.,,gold0-orig,pos,unl,unl,pos,n/a,\"Shells explode to the right and left of someone, but miss their mark.\",Someone\nlsmdc1047_Defiance-91954,16877,Someone drops a grenade into the tank. His men,spread across the field in alarmed marching in step and fire on the remaining germans.,rip up the wreckage.,\"run up to people, but the orcs follow by.\",\"push open the trunk and stare at someone, who takes out a pair of mnu forceps.\",duck into a pool and crashed the white grated trapdoor.,gold0-orig,pos,unl,unl,unl,unl,Someone drops a grenade into the tank.,His men\nlsmdc1047_Defiance-91954,16896,\"Someone comes up behind him and shoves him playfully. The four brothers, walking side by side,\",lead the way along the woodland path.,follow a boy into the bedroom.,jump side - by - side.,passes on how to escape.,,gold0-orig,pos,unl,unl,unl,n/a,Someone comes up behind him and shoves him playfully.,\"The four brothers, walking side by side,\"\nlsmdc1047_Defiance-91954,16887,And finds himself looking at someone's gaunt face. He,strokes her cheek and wraps an arm around her shoulder.,is wobbly someone and he does n't really believe what he is doing.,gently lifts energy wristwatch.,\"opens his mouth and appears in the doorway, then opens the door.\",lowers his round head and stares downward.,gold0-orig,pos,unl,unl,pos,pos,And finds himself looking at someone's gaunt face.,He\nlsmdc1047_Defiance-91954,16864,\"More cannonballs explode someone lines, claiming more victims. Someone\",\"fires his gun blind, the smoke obscuring his vision.\",look toward them as they turn as they kiss.,\"arrives, poison, terraced airport, one - aircraft.\",stitch a joint into someone's eyes.,,gold1-orig,pos,unl,unl,unl,n/a,\"More cannonballs explode someone lines, claiming more victims.\",Someone\nlsmdc1047_Defiance-91954,16879,\"With not one left standing, someone gets to his feet on the side of the tank, his eyes anxiously searching the trees. His men\",go through the dead soldiers' pockets.,\"pass by through the dry snow, his back to us.\",empty the rifle and his men enter off as the duct passes the bottom of a body into a rock.,watch as the crowd give him high fives while someone runs and pumps his fists.,,gold1-orig,pos,unl,unl,unl,n/a,\"With not one left standing, someone gets to his feet on the side of the tank, his eyes anxiously searching the trees.\",His men\nlsmdc1047_Defiance-91954,16894,\"Someone looks at him, his rigid features softening slightly. They\",hold each other's gaze.,hurry to the shelves.,step into a chair.,glance at him with shaving gray eyes.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone looks at him, his rigid features softening slightly.\",They\nlsmdc1047_Defiance-91954,16866,\"The heavy tank gun is slowly turned in people's direction. As the black mouth of the big gun moves near, someone\",leaps out of the way and dives behind a tree.,put the money back in his pocket and leaps out.,grimacing as he dangles.,puts up his right foot.,\"alights of menace, smiles and races across the room.\",gold0-orig,pos,unl,unl,unl,pos,The heavy tank gun is slowly turned in people's direction.,\"As the black mouth of the big gun moves near, someone\"\nlsmdc1047_Defiance-91954,16881,\"Someone, lying on the side of the hill with their guns at the ready, raise their heads. Slowly, they\",begin to scramble to their feet and walk to the top of the sunny slope.,stare into view ahead of the procession just as a long - haired biker rushes to someone.,drive toward the car.,\"take backs to the bright lights, using their hands above the window sill.\",pass a middle - aged couple at the top of the stairs.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, lying on the side of the hill with their guns at the ready, raise their heads.\",\"Slowly, they\"\nlsmdc1047_Defiance-91954,16878,\"His men spread across the field in alarmed marching in step and fire on the remaining Germans. With not one left standing, someone\",\"gets to his feet on the side of the tank, his eyes anxiously searching the trees.\",attempts to return and drops his guitar on the priest's hands.,hands him someone hat.,holds up her own bad leg.,makes a large black box himself.,gold1-orig,pos,unl,unl,unl,unl,His men spread across the field in alarmed marching in step and fire on the remaining Germans.,\"With not one left standing, someone\"\nlsmdc1047_Defiance-91954,16872,\"One soldier creeps nearer, but is shot in the back. His fellow troops\",look behind them for a split second as guns fire at them from behind a wall of trees.,\"flank the nurse, who shakes her head as she gets dragged toward the train.\",\", people, come out through the haze of light, rail down from the battle.\",take cover as the guy tosses the invisibility cloak over someone 'limp body.,,gold0-orig,pos,unl,unl,pos,n/a,\"One soldier creeps nearer, but is shot in the back.\",His fellow troops\nlsmdc1047_Defiance-91954,16882,\"Slowly, they begin to scramble to their feet and walk to the top of the sunny slope. Someone, standing on the smoking tank,\",sees his brother walking out of the trees.,climbs off the diving board.,someone looks uninterested and good - humored.,\"cliff, surprised at three or two metallic hand wheels on the right.\",opens a freezer sack and takes out a cigarette.,gold1-orig,pos,unl,unl,unl,pos,\"Slowly, they begin to scramble to their feet and walk to the top of the sunny slope.\",\"Someone, standing on the smoking tank,\"\nlsmdc1047_Defiance-91954,16874,\"The rest of his men follow him out of the trees and set about the rest. As the tank operator fires again, someone\",clambers up onto the tank and draws his pistol.,suddenly connects with the bullet in his grenade pin.,stops at the stop sidewalk from a drifting snow until he fails again.,takes the capsule and lies back down.,exits its first ride with the crew on a sign.,gold0-orig,pos,unl,unl,unl,unl,The rest of his men follow him out of the trees and set about the rest.,\"As the tank operator fires again, someone\"\nlsmdc1047_Defiance-91954,16871,Shells ricochet off the trees around him. One soldier,\"creeps nearer, but is shot in the back.\",holds it against the spokes of the tank.,takes off to a peaceful forest.,dives to a someone then hauls him onto the bed.,flails through the rising water toward the raised gunpowder.,gold0-orig,pos,unl,unl,unl,pos,Shells ricochet off the trees around him.,One soldier\nlsmdc1047_Defiance-91954,16875,\"As the tank operator fires again, someone clambers up onto the tank and draws his pistol. The tank operator\",flops to one side.,rockets up from the wreck's tank.,rushes toward the mouth of a sliding van and ducks in.,snaps her final door in.,ducks down the ladder then climbs onto a stairwell.,gold1-orig,pos,unl,unl,unl,pos,\"As the tank operator fires again, someone clambers up onto the tank and draws his pistol.\",The tank operator\nlsmdc1047_Defiance-91954,16880,\"His men go through the dead soldiers' pockets. Someone emerges from out of the hazy smoke, his piercing blue eyes\",darting from side to side.,move to the bookshelves.,moving her face down the length of the blade.,protruding from its paws.,,gold0-orig,pos,unl,unl,unl,n/a,His men go through the dead soldiers' pockets.,\"Someone emerges from out of the hazy smoke, his piercing blue eyes\"\nlsmdc1047_Defiance-91954,16867,\"As the black mouth of the big gun moves near, someone leaps out of the way and dives behind a tree. More Germans\",zip across the field and take up positions just yards away from them.,send a ball flying through the air.,perform in the vault.,shoot from someone's head and launches the green dust away.,go behind the other to arm him past a huge herd of soldiers.,gold0-orig,pos,unl,unl,unl,unl,\"As the black mouth of the big gun moves near, someone leaps out of the way and dives behind a tree.\",More Germans\nlsmdc1047_Defiance-91954,16870,\"With gritted teeth, someone urges from behind the tree and runs at the tank, but is shot. Shells\",ricochet off the trees around him.,dashes through which hurtle with furious embers.,tumbles onto the bridge's gaping hole.,are approaching the dirt arena relentlessly.,,gold0-orig,pos,unl,unl,unl,n/a,\"With gritted teeth, someone urges from behind the tree and runs at the tank, but is shot.\",Shells\nlsmdc1047_Defiance-91954,16865,\"The two of them dive into thick woodland, moving behind the nemy lines, with a view of the German soldiers and their tank ahead of them. They\",\"crouch down, as half a dozen germans come past and set up a gun position in front of them.\",treated as neatly to the metallic ivy in front.,get on top of the mountain causing a small group military veterans riding on a floating plane with goggles and gear.,peer through the outside mob.,burst through the control room.,gold0-orig,pos,unl,unl,unl,unl,\"The two of them dive into thick woodland, moving behind the nemy lines, with a view of the German soldiers and their tank ahead of them.\",They\nlsmdc1047_Defiance-91954,16863,Someone passes ammo to those with guns. The German infantry,are coming at them.,picks up the books.,leans up and controls the medal.,kicks him full in the face.,captures them from several different angles.,gold0-orig,pos,unl,unl,unl,unl,Someone passes ammo to those with guns.,The German infantry\nlsmdc1047_Defiance-91954,16892,\"Someone takes a few steps towards him, then stops. Someone steps nearer, but neither brother\",looks at the other.,is a vamp of surprise.,follows him by the fire.,instantly reacts to this before someone is listening to someone.,shuffles his hands behind him.,gold0-orig,pos,unl,pos,pos,pos,\"Someone takes a few steps towards him, then stops.\",\"Someone steps nearer, but neither brother\"\nlsmdc1047_Defiance-91954,16873,\"Someone comes surging out of the trees, single - handedly decimating the Germans caught off guard. The rest of his men\",follow him out of the trees and set about the rest.,\"follow the policeman as they march down the small hill, doubtfully at the site of the world.\",move out of the courtyard.,are in full armor and trapped by a group in a storm of liners.,are upset and bloody as people leave.,gold0-orig,pos,unl,unl,unl,pos,\"Someone comes surging out of the trees, single - handedly decimating the Germans caught off guard.\",The rest of his men\nlsmdc1047_Defiance-91954,16868,More Germans zip across the field and take up positions just yards away from them. Shells,\"explode to the right and left of someone, but miss their mark.\",\", someone lies on his back to watch their father.\",\"search for someone's study, someone races past a row of parked pedestrians and opens the case.\",\"see diagonally, semi - slumped and silhouetted in the doorway.\",,gold0-orig,pos,unl,unl,unl,n/a,More Germans zip across the field and take up positions just yards away from them.,Shells\nlsmdc1047_Defiance-91954,16895,Someone moves in a column beneath the birchwood trees. Someone,comes up behind him and shoves him playfully.,\"moves toward the sky, dutifully ben.\",\"stands, walks toward the sea, his face reflected uneasily with his shield.\",slumps against the wall.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone moves in a column beneath the birchwood trees.,Someone\nlsmdc1047_Defiance-91954,16885,Even old women bend over the dead bodies. He,thrust his gun to someone.,\"are silent, listening, as the two are tracking the conversation.\",grabs another girl who steps off another match.,show up from children.,sits with a piglet in a automobile.,gold0-reannot,pos,unl,unl,unl,unl,Even old women bend over the dead bodies.,He\nlsmdc1047_Defiance-91954,16893,\"Someone steps nearer, but neither brother looks at the other. Someone\",\"looks at him, his rigid features softening slightly.\",\"turns, looking someone in the eye.\",\"gets out of the car, dashes off of someone's tracks.\",'s running up and down - - face down.,goes as someone runs he door.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone steps nearer, but neither brother looks at the other.\",Someone\nlsmdc1047_Defiance-91954,16886,He thrust his gun to someone. Someone,\"brings someone a gun, which he slings over his shoulder, patting the boy affectionately on the leg.\",squats beside someone who smiles hard.,\"falls off the barrel into the shack, knocking over the remaining troopers.\",\"rushes toward someone, who's bulging with a baton.\",,gold1-reannot,pos,unl,unl,unl,n/a,He thrust his gun to someone.,Someone\nlsmdc3071_THE_DESCENDANTS-5586,11586,Someone wanders over to the water to shake out the sand. Someone,reaches behind her back and fastens her own top as her father takes a seat.,\"juts behind his head, then grasps someone's hand.\",sets the robe and drapes it onto the terrace of the sitting room.,drops the towel in the stands and heads to the kitchen.,picks it up and strides towards it.,gold0-orig,pos,unl,unl,unl,unl,Someone wanders over to the water to shake out the sand.,Someone\nlsmdc3071_THE_DESCENDANTS-5586,11583,\"The jeep arrives at a hotel, driving past a fountain near the entrance. Later, at the front desk, someone\",folds up his wallet.,sits at the campaign bus passing someone.,seizes her own and hands her.,slides across a bench.,picks up the check.,gold0-orig,pos,unl,unl,pos,pos,\"The jeep arrives at a hotel, driving past a fountain near the entrance.\",\"Later, at the front desk, someone\"\nlsmdc3071_THE_DESCENDANTS-5586,11582,\"Riding in the passenger seat, someone holds his forehead as he absently gazes out his window. The jeep\",\"arrives at a hotel, driving past a fountain near the entrance.\",rises off the scene.,rolls into an empty street under the neutral looking houses as it continues on powdering against a facade and quickly wheels around.,rises high above the dirt stone building.,,gold0-orig,pos,unl,unl,unl,n/a,\"Riding in the passenger seat, someone holds his forehead as he absently gazes out his window.\",The jeep\nlsmdc3071_THE_DESCENDANTS-5586,11580,\"The tide rolls in gently on the distant beach. Hovering over the group, our view\",\"turns away from the grassy ridge, for a final glimpse of the vast cove and its pristine surroundings.\",sweeps beneath the rows of seats.,\"drifts in from view, for a long moment of front view of a christmas tree.\",\"lingers in the sun, then sets down and walks forward.\",speeds back and forth over a clear glassy chamber beneath the water and chin skylight.,gold0-orig,pos,unl,unl,unl,unl,The tide rolls in gently on the distant beach.,\"Hovering over the group, our view\"\nlsmdc3071_THE_DESCENDANTS-5586,11585,\"Now, at the beach, he ambles over to a blanket where someone suns her back and someone lies with her head on someone's shoulder. Someone\",wanders over to the water to shake out the sand.,\"swings her head to the side, then sits nervously.\",smiles as the close to the smoke zooms in in their bedside where it's tracking with the shiner.,lifts his arms up in his hands and twirls them away.,\"watches for one moment, then lifts the lid to a laptop on her bed.\",gold0-orig,pos,unl,unl,unl,unl,\"Now, at the beach, he ambles over to a blanket where someone suns her back and someone lies with her head on someone's shoulder.\",Someone\nlsmdc3071_THE_DESCENDANTS-5586,11584,\"Later, at the front desk, someone folds up his wallet. A clerk\",looks up the name on his computer.,pulls him up and pulls him toward his vehicle.,snatches an american pen from him.,throws his poster around.,looks outside his outfit.,gold0-orig,pos,unl,unl,unl,unl,\"Later, at the front desk, someone folds up his wallet.\",A clerk\nlsmdc3071_THE_DESCENDANTS-5586,11581,\"We drive past a sign for Sandpiper Village, another for Paniolo, then a golf course abutting a housing community. Riding in the passenger seat, someone\",holds his forehead as he absently gazes out his window.,smiles and looks patiently along the ship expanse.,treads up front of a building on a head lower platform with snowboarding skills.,enters the apartment and exits the front door and heads down a sidewalk.,,gold0-orig,pos,unl,unl,unl,n/a,\"We drive past a sign for Sandpiper Village, another for Paniolo, then a golf course abutting a housing community.\",\"Riding in the passenger seat, someone\"\nlsmdc3092_ZOOKEEPER-45444,5412,Someone's lifts the portly zookeeper up with one arm. They,move for the support beam.,start to partway someone 'hair.,\"aim at someone, who still whiskey over the side.\",\"steps double - topped in the dark room, and leaves.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone's lifts the portly zookeeper up with one arm.,They\nanetv_50MmJszF2XM,14377,She then spots a little girl through a backflip. She,\"helps her do several different tasks, explaining the process as they go.\",does text on the screen.,\"continues, balancing herself next to her horse as he travels up the slope.\",climbs off a horse and rides around.,holds her stick down to her side and is doing the same.,gold1-orig,pos,unl,unl,unl,unl,She then spots a little girl through a backflip.,She\nanetv_xwSHzGCP6iA,17469,A large metal tower is shown. A person bungee,jumps off the tower.,jumps over a cliff.,jumps onto the back of the boat.,jumps and slides a ring in.,is shown inside a tile.,gold0-orig,pos,unl,unl,unl,unl,A large metal tower is shown.,A person bungee\nanetv_xwSHzGCP6iA,16793,They fall onto a yellow mat and get their harness taken off. They,stand up and walk away.,paddle boards down the hill.,watch from the side of the street and start trying to get the tiles.,scrub the snow down a slope.,\"go back to race, flipping and flipping on the rope.\",gold0-orig,pos,unl,unl,unl,pos,They fall onto a yellow mat and get their harness taken off.,They\nanetv_xwSHzGCP6iA,16792,A person is bungee jumps off of a tower. They,fall onto a yellow mat and get their harness taken off.,tube down a hill.,perform high jumps in a big competition.,go over the ramps.,are getting ready to do a jump in the end.,gold0-orig,pos,unl,unl,unl,pos,A person is bungee jumps off of a tower.,They\nanetv_xwSHzGCP6iA,17470,A person bungee jumps off the tower. They,land on a yellow mat and take their harness off.,continue going through the rapids and running and jumping at a pole.,fall over the rope.,run and jump off in the air.,,gold0-orig,pos,unl,pos,pos,n/a,A person bungee jumps off the tower.,They\nlsmdc1018_Body_Of_Lies-80255,17085,\"Someone punches and kicks someone, and he tumbles down the slope. Someone\",spits at him and walks off.,\"catches him, yanking him to the stern pole.\",finds himself fencing again.,\"rips off the window, sending him flying out.\",watches from the window.,gold0-orig,pos,unl,unl,unl,pos,\"Someone punches and kicks someone, and he tumbles down the slope.\",Someone\nlsmdc1018_Body_Of_Lies-80255,17089,The white dome of the Capitol building rises up amongst the ordered grid of streets. Someone,sits alone at a cafe by a lake.,continues strapping with her rifle shot rifle in her hand.,puts on his hat.,shows someone entering an apartment with a framed photo at a bridge.,runs around someone as she peers at swirling rubble in her hand.,gold1-orig,unl,unl,unl,unl,unl,The white dome of the Capitol building rises up amongst the ordered grid of streets.,Someone\nlsmdc1018_Body_Of_Lies-80255,17090,Someone sits alone at a cafe by a lake. He,drinks from a take - away coffee cup.,watches his barn procession across the terrace.,slows to a pull on the subdues and flips through.,holds a case of strawberries and gives it a squeeze.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sits alone at a cafe by a lake.,He\nlsmdc1018_Body_Of_Lies-80255,17087,Someone heads off up the slope. Someone's hands,are still tied behind his back.,\"on the chair is wrapped tightly around his waist, and steely - eyed, someone leaves the room.\",find snowflakes underneath their open raft.,fall on top of him.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone heads off up the slope.,Someone's hands\nlsmdc1018_Body_Of_Lies-80255,17086,Someone spits at him and walks off. Someone,heads off up the slope.,dumps a 3d pane of glass.,steps aside and drinks from his jacket.,sees people walking towards someone.,chases past as he approaches them.,gold1-reannot,pos,unl,unl,pos,pos,Someone spits at him and walks off.,Someone\nlsmdc1018_Body_Of_Lies-80255,17088,Someone's hands are still tied behind his back. The white dome of the Capitol building,rises up amongst the ordered grid of streets.,is thrown in his hands.,has been poured into its clean basin.,\"is displayed, performers drawing off their fingernails.\",is verdant on bright light.,gold0-reannot,pos,unl,unl,unl,pos,Someone's hands are still tied behind his back.,The white dome of the Capitol building\nlsmdc1018_Body_Of_Lies-80255,17084,\"Someone looks at someone with disdain, steps over and leans down to him. Someone punches and kicks someone, and he\",tumbles down the slope.,knocks on a corner of the window.,gently raises them at the fence.,slides the weight forward.,jumps up from his desk.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone looks at someone with disdain, steps over and leans down to him.\",\"Someone punches and kicks someone, and he\"\nlsmdc1018_Body_Of_Lies-80255,17083,Someone watches someone and his men. Someone,\"looks at someone with disdain, steps over and leans down to him.\",and his friends hurry past someone to point their wands at someone.,is heading up the grand tiers of hogwarts school.,gets a lighter and leaps off.,\"is a huge, brown marble.\",gold0-reannot,pos,unl,unl,unl,unl,Someone watches someone and his men.,Someone\nanetv_Re-SsHmajds,7542,Three people are seen standing around a closed in area and lead into the people hitting balls with a tennis racket. The people,continue to play with one another in the small room hitting the ball and running after it.,continue hitting balls on one side and end by walking around one another.,continue to hit the ball back and fourth with one another hitting each other around the ice.,hit two balls back and fourth while the camera captures themselves from moving back and fourth.,begin hitting the ball against one another and continues speaking to the camera.,gold0-reannot,pos,unl,unl,unl,unl,Three people are seen standing around a closed in area and lead into the people hitting balls with a tennis racket.,The people\nlsmdc1045_An_education-90246,721,Someone worriedly watches someone watching them. People,dance with their eyes locked together.,are shot away from the uniform as someone joins them at a neighboring staircase.,comes toward someone with a grin then continues spinning and crossing her arms with a frown.,lies in a paddy hut.,,gold0-orig,pos,pos,pos,pos,n/a,Someone worriedly watches someone watching them.,People\nanetv_IeTMYNbQSp0,4465,A woman is seen close up standing in front of a car. The woman,bends down in front of the car and dips a rag into a bucket.,speaks to the camera while still speaking with class.,is seen sitting on the bike and moving both hands on the machine.,then begins scraping the car away with a dryer and cleaning it in.,continues wiping down a car with a car scraper.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen close up standing in front of a car.,The woman\nanetv_IeTMYNbQSp0,553,She begins scrubbing down the car with a rag. She,continues washing and stands up.,continues scrubbing out the sink and wipes it around clean.,continues taking crunches and clean a can with a sponge.,continues shoveling distance as she jumps around and cheers.,continues wiping the sink and using the rag while looking sad.,gold0-orig,pos,unl,unl,unl,unl,She begins scrubbing down the car with a rag.,She\nanetv_IeTMYNbQSp0,552,A girl is seen bending down before a car. She,begins scrubbing down the car with a rag.,puts the girl down.,pulls up contact on the men and brushes the shoes.,continues throwing her arms in the air while smiling to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A girl is seen bending down before a car.,She\nanetv_IeTMYNbQSp0,4466,The woman bends down in front of the car and dips a rag into a bucket. She,pulls out the rag from the bucket which is full of water.,then uses the scraper to scrub the car clean with water.,picks it up and starts the car while using it.,continues wiping the wall with liquid and showing off the chemical products.,puts the shoes in the bucket and continues washing the car.,gold1-orig,pos,unl,unl,unl,unl,The woman bends down in front of the car and dips a rag into a bucket.,She\nanetv_wN2XnDS0aGc,8409,When the woman lands she cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air. A replay of the woman's jump plays and the woman,has her two hands on her head and smiling in disbelief.,remains correctly ready to play her way on a stage on a mat to stands up.,comes back quickly running into exercise and holding her leg up in the air.,start spins her arms in the air.,\"is shown again again while speaking, finally jumping and falling by it.\",gold0-orig,pos,unl,unl,unl,pos,When the woman lands she cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air.,A replay of the woman's jump plays and the woman\nanetv_wN2XnDS0aGc,8408,\"A very tall and lanky woman runs quickly and jumps over a very high horizontal pole, clears it and lands on the mat below it. When the woman lands she\",cheers on the mat and jumps off the mat and cheers some more by jumping around and throwing her hands in the air.,falls into the air while landing in the sand and the woman begins jumping jump in the air in circles.,performs mallet and runs down the track with the gymnastic discus on her arms.,throws the object off into the distance and jumps around gracefully and eventually end up up sliding down in the sand.,lands on stage on a mat pier.,gold1-reannot,pos,unl,unl,unl,pos,\"A very tall and lanky woman runs quickly and jumps over a very high horizontal pole, clears it and lands on the mat below it.\",When the woman lands she\nanetv_wN2XnDS0aGc,14402,The action is repeated in slow motion twice. The athlete,is briefly shown celebrating.,returns four times and shakes his head.,gets ready to go up the air and continue playing.,stares slack - jawed.,lands on a mat and lands on one knee.,gold0-reannot,pos,unl,unl,unl,unl,The action is repeated in slow motion twice.,The athlete\nanetv_wN2XnDS0aGc,14401,A vintage shot of a female athlete successfully doing a high jump in a large stadium. The action,is repeated in slow motion twice.,\"is replayed with wild angles, jumping from numerous angles.\",\"is replayed several times, several times.\",is overlaid and the video ends with the ambulance getting back to and home.,,gold0-reannot,pos,unl,unl,unl,n/a,A vintage shot of a female athlete successfully doing a high jump in a large stadium.,The action\nlsmdc0011_Gandhi-52899,3979,And he smiles a little wisely at her. His tone,is not altogether patient.,is no closer than they have been.,\"is diners and mean, not sexy yet.\",does n't really matter.,is polished and sexy.,gold0-orig,pos,unl,unl,unl,pos,And he smiles a little wisely at her.,His tone\nlsmdc0011_Gandhi-52899,3978,\"He pivots around, moving beside her, and slowly demonstrates the process, taking her hands, guiding her. Someone\",watches him as much as the wheel.,continues brushing his teeth while walking in circles.,begins to move faster and faster slowly across the floor.,\"rises to her knees, finds him alone, lowers his gaze, then looks at her unhappily.\",goes down a corridor which are freighters very close between them.,gold1-orig,pos,unl,unl,unl,unl,\"He pivots around, moving beside her, and slowly demonstrates the process, taking her hands, guiding her.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69759,19126,Someone walks into the movie house. He,\"is seen through the glass doors, which still reflect the street and traffic outside.\",raises a gun to reveal a hidden handgun in a corner.,gets onto a bed and steps out on a couch.,swings the remaining locked door.,,gold0-orig,pos,unl,unl,pos,n/a,Someone walks into the movie house.,He\nlsmdc0049_Hannah_and_her_sisters-69759,19116,\"The film abruptly cuts to someone's flashback, a visual counterpoint to the story he is telling someone. A close - up of a nervous, perspiring, and panting someone alone in his apartment\",appears on the screen as his voice is heard.,\"is him, and is superimposed over the manager of his arm in a pretty deserted room, almost like a sophisticated military - style\",is a tangle of record company.,\"is shown with one account set with his brain, etc.\",\"mall, looking at a mirror.\",gold0-orig,pos,unl,unl,unl,pos,\"The film abruptly cuts to someone's flashback, a visual counterpoint to the story he is telling someone.\",\"A close - up of a nervous, perspiring, and panting someone alone in his apartment\"\nlsmdc0049_Hannah_and_her_sisters-69759,19125,His reflection walks towards the theater entrance; he continues his story. Someone,walks into the movie house.,meets his doll and leaves.,passes the boy on his study knife - drawn.,\"glances after her, not checking out.\",,gold0-orig,pos,unl,unl,unl,n/a,His reflection walks towards the theater entrance; he continues his story.,Someone\nlsmdc0049_Hannah_and_her_sisters-69759,19113,\"The film then moves to the outside of a charming glass and stained wood caffe. Through the window, people\",can be seen having lunch.,are all wearing stolen clothes.,crawl on the floor for a moment.,are staring in the atrium.,are amused as they sit drinking.,gold0-orig,pos,unl,pos,pos,pos,The film then moves to the outside of a charming glass and stained wood caffe.,\"Through the window, people\"\nlsmdc0049_Hannah_and_her_sisters-69759,19115,\"Next, the film cuts to an almost isolated path in Central Park, complete, with old - fashioned streetlamps and scattered leaves. People\",\"stroll into view, deep in conversation.\",sit by an hospital wall.,\"drifts away from the attic window, a shaft of sunlight pouring from someone's office window.\",dance in the street.,,gold0-orig,pos,unl,unl,unl,n/a,\"Next, the film cuts to an almost isolated path in Central Park, complete, with old - fashioned streetlamps and scattered leaves.\",People\nlsmdc0049_Hannah_and_her_sisters-69759,19122,\"Someone runs offscreen briefly to answer the door. He returns onscreen, panting; he\",looks frantically once again around the living room.,is much happier than his classmates.,is very aware of them having heard this before.,can not have heard the conversation.,makes his way past more students.,gold0-orig,pos,unl,unl,unl,unl,Someone runs offscreen briefly to answer the door.,\"He returns onscreen, panting; he\"\nlsmdc0049_Hannah_and_her_sisters-69759,19128,\"The film abruptly cuts to the theater's black - and - white screen, where the Marx Brothers, in Duck Soup, play the helmets of several soldiers standing in a line like a live xylophone. The film\",cuts back to the black - and - white movie screen as someone continues to talk.,\"stops, and the camera pans to the advantage.\",falls out.,\"collapses, up to a crossbar and swings on its hind legs to make their way to a side of several kitchen table.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The film abruptly cuts to the theater's black - and - white screen, where the Marx Brothers, in Duck Soup, play the helmets of several soldiers standing in a line like a live xylophone.\",The film\nlsmdc0049_Hannah_and_her_sisters-69759,19117,\"A close - up of a nervous, perspiring, and panting someone alone in his apartment appears on the screen as his voice is heard. Someone\",raises the barrel of a rifle to his forehead.,\"stares wearily at his empty civilian, and looks concerned as someone removes his glass and takes a sip.\",\"speaks to someone, but does not say anything for a long moment.\",\"draws them over to face him, then stands.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A close - up of a nervous, perspiring, and panting someone alone in his apartment appears on the screen as his voice is heard.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69759,19120,\"The camera moves past the desperate someone to a mirror on the wall behind him. Someone, holding the rifle,\",is seen running over to the shattered mirror.,sits in the puddle.,extends a dime to someone.,takes himself a little evaluating.,leads her through the closing city building.,gold0-orig,pos,unl,unl,unl,pos,The camera moves past the desperate someone to a mirror on the wall behind him.,\"Someone, holding the rifle,\"\nlsmdc0049_Hannah_and_her_sisters-69759,19124,\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis go by as he talks over the scene. The movie\",\"cuts to the exterior of the metro movie theater, with its smoked glass entrance doors and its art deco feel.\",starts down slowly as he picks up a drink and drops it on the floor.,shows the image of someone bending tails and shaking his hips as he sits his grandma out of the hole still on his lap.,is finally together followed by views of men demonstrating exercises and others motionless.,,gold0-orig,pos,unl,unl,unl,n/a,\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis go by as he talks over the scene.\",The movie\nlsmdc0049_Hannah_and_her_sisters-69759,19111,\"Someone, thrilled with someone's overwhelming response, stands up, her hand on her head. Unable to contain herself, she\",\"begins to walk up and down the room, holding her script.\",\"watches someone resolutely then looks down, without looking up at him.\",crosses to the window blinds and spots someone sitting with someone.,rests her hand on someone's shoulder.,disappears into the cafe.,gold1-orig,pos,unl,pos,pos,pos,\"Someone, thrilled with someone's overwhelming response, stands up, her hand on her head.\",\"Unable to contain herself, she\"\nlsmdc0049_Hannah_and_her_sisters-69759,19129,The film cuts back to the black - and - white movie screen as someone continues to talk. The movie,\"cuts back to someone, sitting almost obscured in the dark theater.\",clears and someone continues to test out what the mess starts.,ends with someone in profile of someone.,rolls up and focuses on his eyes and goatee.,,gold0-orig,pos,unl,pos,pos,n/a,The film cuts back to the black - and - white movie screen as someone continues to talk.,The movie\nlsmdc0049_Hannah_and_her_sisters-69759,19127,\"He is seen through the glass doors, which still reflect the street and traffic outside. He\",makes his way through the lobby into the actual theater.,sees his reflection in a mirror and looks intently into his crack.,zooms down the road before them and makes his way back to the back hesitantly.,\"does n't like it, but is twisting from swirling and falling.\",parks down in the deserted lot.,gold0-orig,pos,unl,unl,unl,unl,\"He is seen through the glass doors, which still reflect the street and traffic outside.\",He\nlsmdc0049_Hannah_and_her_sisters-69759,19118,Someone raises the barrel of a rifle to his forehead. He,shuts his eyes tightly.,sees someone on a monitor.,\"fires a blaze, then fires out and elsewhere, sends away fresh fire and deeply.\",reaches up and punches someone in the face.,\"turns, holding his pistol.\",gold0-orig,pos,unl,unl,unl,pos,Someone raises the barrel of a rifle to his forehead.,He\nlsmdc0049_Hannah_and_her_sisters-69759,19119,He shuts his eyes tightly. The camera,moves past the desperate someone to a mirror on the wall behind him.,moves down a gallery of photos and even lonely neighbors.,lays back on his fallen chin.,looks provocatively at his shirt worn and digitally.,pans in and features of a performer demonstrating the lower shift child.,gold0-orig,pos,unl,unl,unl,unl,He shuts his eyes tightly.,The camera\nlsmdc0049_Hannah_and_her_sisters-69759,19114,\"Through the window, people can be seen having lunch. Someone is talking animatedly; someone\",takes a sip of coffee.,\"briefly nods, but does n't follow.\",has a good time to make it lovely.,\"walks faster, faster in the mirrored chamber.\",\"'s tense, uncomfortable and cynical.\",gold0-orig,pos,unl,unl,unl,pos,\"Through the window, people can be seen having lunch.\",Someone is talking animatedly; someone\nlsmdc0049_Hannah_and_her_sisters-69759,19112,\"People emerge from the door and walk up the street, revealing a whole row of similar apartment buildings. They\",pass a few other people as they walk.,pull up inside someone's house.,pass two - clad women holding bags and some work to work in the shelves.,are checking out in scenes of the police car together with the cover before tinkering.,,gold0-orig,pos,unl,unl,unl,n/a,\"People emerge from the door and walk up the street, revealing a whole row of similar apartment buildings.\",They\nlsmdc0049_Hannah_and_her_sisters-69759,19123,\"He returns onscreen, panting; he looks frantically once again around the living room. Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis\",go by as he talks over the scene.,are sitting together for him.,spill backwards over the side window.,are in disarray.,are parked beside the hatchback.,gold0-orig,pos,unl,unl,unl,pos,\"He returns onscreen, panting; he looks frantically once again around the living room.\",\"Occasionally, he is obscured by a tree trunk on the opposite side of the street; a few taxis\"\nlsmdc0049_Hannah_and_her_sisters-69759,19132,\"The Marx Brothers are sitting on a judge's bench, playing banjos and singing with the other cast members. They\",\"jump down from the bench, still singing.\",\"see a long slender man seated on the piano, reading a song on that looks as he has ended.\",thinly appears on the ocean's backdrop and settles into their burning ashes.,wiggle their hands and smile into each other's eyes.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The Marx Brothers are sitting on a judge's bench, playing banjos and singing with the other cast members.\",They\nlsmdc0049_Hannah_and_her_sisters-69759,19121,\"Someone, holding the rifle, is seen running over to the shattered mirror. Someone\",runs offscreen briefly to answer the door.,continues out of the way as it gives off.,takes a clock hands and leans on it.,takes out his wand.,\"frowns and moves back someone, striking her with clothes, still kicking and kicking.\",gold0-reannot,pos,unl,unl,pos,pos,\"Someone, holding the rifle, is seen running over to the shattered mirror.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69759,19131,\"The film is back on someone's dark form in the audience. As someone continues, the film\",cuts back to duck soup on the black - and - white screen.,show one soul from someone.,pulls away from the dj.,erupts outside the car before someone.,pulls out of his eyes and unbuttons his wallet.,gold0-reannot,pos,unl,unl,unl,unl,The film is back on someone's dark form in the audience.,\"As someone continues, the film\"\nlsmdc0049_Hannah_and_her_sisters-69759,19130,\"The four brothers are now swaying and singing and strutting, their voices indistinct over someone's narration. The film\",is back on someone's dark form in the audience.,finds a watery balloon and drops into the darkness below.,continues with the people dance and rec comfortable and relatively normal.,cuts to someone who's attempting to bite his head.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The four brothers are now swaying and singing and strutting, their voices indistinct over someone's narration.\",The film\nanetv_flneQOXwGxw,13043,A man kicks another man. That man,swings a bat at him.,claps into the camera.,walks towards him with leg length.,runs to the ground.,is walking through them.,gold1-orig,pos,unl,unl,unl,unl,A man kicks another man.,That man\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13487,Two black boars trot around in their pen. Grass,sticks out from a tortoise's mouth as it crawls over the ground.,\"pull up beside a few children, stand and roll study to one another to help.\",eagerly cash from their.,sparkle its fur onto the side.,,gold0-orig,pos,unl,unl,unl,n/a,Two black boars trot around in their pen.,Grass\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13480,\"In the field, the family gathers in a group embrace around him. Later, someone reclines across his lap and someone\",leans against his side.,lies on his cheek.,stands on the veranda outside.,glides closer to the apartment.,sleeps with his arms held out.,gold0-orig,pos,unl,unl,unl,unl,\"In the field, the family gathers in a group embrace around him.\",\"Later, someone reclines across his lap and someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13490,A boxy older - style Mercedes pulls up nearby. Someone,\"gets out, wearing sunglasses.\",smiles and crouches down to someone and stares off.,runs past the president.,leans in the bar.,,gold0-orig,pos,unl,unl,unl,n/a,A boxy older - style Mercedes pulls up nearby.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13479,\"He wets his lips as he stares longingly at the passing vision of his wife. In the field, the family\",gathers in a group embrace around him.,arrive at the palace gate.,watches as more zombies come back up.,remains in a waiting area.,,gold0-orig,pos,pos,pos,pos,n/a,He wets his lips as he stares longingly at the passing vision of his wife.,\"In the field, the family\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13475,\"Later, they play a game of tag. Someone\",grins at the memory.,is throwing darts at a floor.,takes a seat on a buffet desk.,pays the the players.,smiles down as someone lowers his hat.,gold0-orig,pos,unl,unl,unl,unl,\"Later, they play a game of tag.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13451,Someone faces his father earnestly. Someone,faces his son with a furrowed brow.,\"punches someone, then punches him.\",grabs his thigh and pulls someone into a cramped position beside someone as he averts his gaze.,smiles as the kids remain.,puts a hand on her shoulder.,gold1-orig,pos,unl,unl,unl,unl,Someone faces his father earnestly.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13459,\"At night, someone tucks a blanket around his sleeping son. He\",strokes the teen's smooth hair.,rips someone in his life coat.,covers the back of his trousers.,hands it to our son.,falls to the roof.,gold0-orig,pos,unl,unl,unl,unl,\"At night, someone tucks a blanket around his sleeping son.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13489,The teen's eyes light up. Someone,\"chuckles, overcome with joy.\",shows a dozen packages waving in flags.,gulps in the gazebo.,spots someone's statue upstairs.,grabs his jacket and turns to someone.,gold0-orig,pos,unl,unl,unl,pos,The teen's eyes light up.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13477,\"Back in the present, someone beams joyfully as he visualizes his wife and children playing before him in the dimly lit kitchen. In the kitchen, someone's glasses\",show their dancing reflections.,takes a drink.,the someone drink from his mouth.,\"are hot cups in coffee table with a ceramic soda in her hand, she shoves the bottle behind her back.\",washes a plate.,gold0-orig,pos,unl,unl,unl,unl,\"Back in the present, someone beams joyfully as he visualizes his wife and children playing before him in the dimly lit kitchen.\",\"In the kitchen, someone's glasses\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13482,\"Later still, someone holds his wife in his arms as she reaches out to scratch someone's back. In the kitchen, the widower\",lowers his overwhelmed gaze.,cleans off her figure.,studies lying on a bed.,falls onto the stairs and knocks it down.,looks around behind the washing table then rolls to a stop.,gold0-orig,pos,unl,unl,unl,unl,\"Later still, someone holds his wife in his arms as she reaches out to scratch someone's back.\",\"In the kitchen, the widower\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13483,\"In the kitchen, the widower lowers his overwhelmed gaze. He\",removes his reading glasses.,walks out the window to the beach.,checks the instructions on someone's youtube tv.,\"'s hand over his face, pressed down with his hands, and shrinks.\",creeps upstairs then opens another shuttered hatch.,gold0-orig,pos,unl,unl,unl,unl,\"In the kitchen, the widower lowers his overwhelmed gaze.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13468,The next picture shows a black - and - white - photo print lying on a table. It,features someone holding a glass of red wine.,takes it into a black bucket and searches.,picks up a spray box and carries a purse where the salesman's items are placed in the back drawer.,crashes into the sphere.,\"tumbles to a glass panels splayed, staggers back and forth and leans back against the wall.\",gold0-orig,pos,unl,unl,unl,unl,The next picture shows a black - and - white - photo print lying on a table.,It\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13454,\"Spar opens his eyes a slit and blinks heavily. Later, someone\",bites his lip as he walks outside with someone.,sleeps beside a doctor.,reveals a shadow with a constant - drawn blade.,\"squats down beside himself, as he faces his older brothers.\",,gold0-orig,pos,unl,unl,pos,n/a,Spar opens his eyes a slit and blinks heavily.,\"Later, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13474,\"Looking up from the computer, he remembers taking photos in the field as his wife and children frolic around him. Later, they\",play a game of tag.,lie outside through a bridge.,\"arrive at a picnic with silver policemen lined up high, bewildered, embarrassed.\",\"take a small - tube cake from the curbside lounge, spheres merge on top of another hill.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Looking up from the computer, he remembers taking photos in the field as his wife and children frolic around him.\",\"Later, they\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13470,Someone stares tearfully at the photo. Someone,\"imagines her opening her eyes, her chest rises and falls beneath the sheet.\",looks up at the suit.,\"eyes him several times, then leans toward him.\",takes a deep breath and gives a faint smile.,,gold0-orig,pos,unl,pos,pos,n/a,Someone stares tearfully at the photo.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13455,\"Later, someone bites his lip as he walks outside with someone. He\",approaches someone and gives a resigned nod.,\"stares at them both, then something catches them.\",leans down and cradles his daughter.,slips money into the envelope's box.,,gold1-orig,pos,unl,unl,unl,n/a,\"Later, someone bites his lip as he walks outside with someone.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13472,\"In a field, someone stands on one leg, with her arms spread, as her children look on. Another tear\",rolls down someone cheek.,flies across someone's cheek.,rolls from her eye.,trails down her cheeks.,touches down someone's bare cheek.,gold1-orig,pos,unl,unl,unl,unl,\"In a field, someone stands on one leg, with her arms spread, as her children look on.\",Another tear\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13466,Someone sits cross - legged on the kitchen floor with the computer on his lap. He,\"clicks to the next image, which shows him and someone sharing a kiss.\",hangs up the type of table in a basket.,takes on the web seals a large stuffed animal lying beneath him.,drops a book on his lap and binds the outline with his right arm.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sits cross - legged on the kitchen floor with the computer on his lap.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13486,A horned owl turns its head. Two black boars,trot around in their pen.,fly apart and opens onto the face of a girl.,\"fly out of its tree, leaving the wings in the big wind.\",hang from within the other branches.,,gold0-orig,pos,unl,unl,unl,n/a,A horned owl turns its head.,Two black boars\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13460,\"The top sketch depicts a human figure with taloned hands and a spiraling worm - like head. Flipping through the drawings, someone next\",finds a detailed illustration of a fly with pincers and a toothy maniacal grin.,wraps his body behind his body.,applies makeup to him someone.,strokes the front of her face.,,gold0-orig,pos,unl,unl,unl,n/a,The top sketch depicts a human figure with taloned hands and a spiraling worm - like head.,\"Flipping through the drawings, someone next\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13485,\"It reads, Spar, 1993 to 2010, Our Unforgettable Friend and features a photo illustration of the Bengal tiger. As someone steps away, our view\",drifts closer to the touching memorial passing through patches of flared sunlight.,transitions to panties from the treading water.,lifts to reveal the thin teeth of blond's anguished teeth.,circles across the floor where faces mounted on to a door near the open door.,descends to the shining eyes of the staff.,gold0-orig,pos,unl,unl,unl,pos,\"It reads, Spar, 1993 to 2010, Our Unforgettable Friend and features a photo illustration of the Bengal tiger.\",\"As someone steps away, our view\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13478,\"In the kitchen, someone's glasses show their dancing reflections. He\",wets his lips as he stares longingly at the passing vision of his wife.,looks the actress looks.,unties the parts around someone's neck.,sets up in the kitchen on the kitchen counter and takes a drink.,,gold0-orig,pos,unl,unl,pos,n/a,\"In the kitchen, someone's glasses show their dancing reflections.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13465,\"Now at his laptop, he clicks an arrow on his iPhoto application. Someone\",sits cross - legged on the kitchen floor with the computer on his lap.,grins at the rest of the young someone who resembles a beautiful asian.,\"leans on a sink, leans against the metal upside - up, then checks to someone one.\",blinks back his tears and crosses the room.,continues to study his staff as an obvious agent walks toward him.,gold0-orig,pos,unl,unl,unl,unl,\"Now at his laptop, he clicks an arrow on his iPhoto application.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13456,\"She watches them walk off together down the sun - dabbled footpath. Seeing someone throw an arm around his son's shoulder, she\",takes a deep warm - hearted breath.,jogs through a doorway.,pulls his plate away from her.,goes straight to someone.,starts to gag him.,gold0-orig,pos,unl,unl,unl,unl,She watches them walk off together down the sun - dabbled footpath.,\"Seeing someone throw an arm around his son's shoulder, she\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13463,\"The minimalistic rendering captures the tiger's characteristically warm, intelligent gaze. He\",looks back at his sleeping son and beams proudly.,shifts her listless gaze as the teammate winds up behind the barricade toward the dumpster.,finds a outburst mounting longer above his doom.,\"stares 45 - eyed at the pain - forming letters, almost subdues a skeptical look.\",skull and a glowing grey within.,gold0-orig,pos,unl,unl,unl,unl,\"The minimalistic rendering captures the tiger's characteristically warm, intelligent gaze.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13467,Someone's breath grows ragged and his chin quivers. The next picture,shows a black - and - white - photo print lying on a table.,shows an empty table with a live bed.,is on the tv's interest.,is hit by multi - colored equipment.,changes slightly to reveal someone's brand of champagne.,gold1-orig,pos,unl,unl,unl,unl,Someone's breath grows ragged and his chin quivers.,The next picture\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13484,\"He removes his reading glasses. Now, a blurred image\",sharpens into focus to reveal the gnarled branches of a california oak.,shows a visual social flash puffy black russian.,\"becomes a sergeant, a man in a victorian suit a distinguished man with a black cover beneath a radio cap.\",shifts down and finds a smirk.,shows a sketch of five men and a younger man.,gold0-orig,pos,unl,unl,unl,pos,He removes his reading glasses.,\"Now, a blurred image\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13476,\"Someone grins at the memory. In the field, someone and someone\",spread their arms like wings as they run circles around him.,toss bags into the back of the affluent constructed home.,stand with a framed photo.,watch him solemnly.,\"shoot back and forth, then glances at a man in his thirties.\",gold0-orig,pos,unl,unl,unl,pos,Someone grins at the memory.,\"In the field, someone and someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13458,\"As they near a bend in the path, someone's father gives him a playful shove. At night, someone\",tucks a blanket around his sleeping son.,\"faces his friend, then turns and walks over to the booth.\",searches through binoculars to find someone uppermost petrol in - zipping up a negligee.,sit and takes an envelope of the surplus documenting against a businessman.,treads down a hallway towards a deserted deserted cemetery.,gold0-orig,pos,unl,unl,unl,unl,\"As they near a bend in the path, someone's father gives him a playful shove.\",\"At night, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13481,\"Later, someone reclines across his lap and someone leans against his side. Later still, someone\",holds his wife in his arms as she reaches out to scratch someone's back.,stops in his tracks.,sleeps on the bed hard.,steps into the modern apartment building and hunches down.,sits on a bench by a grave and looks around.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone reclines across his lap and someone leans against his side.\",\"Later still, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13449,\"Blinking thoughtfully, someone purses his lips tightly and nods. Someone\",regards his father with a faint understanding smile.,pulls out her cell phone.,\"stares at someone, mouth open and eyes wide.\",emerges from the living room and stares after him.,,gold0-orig,pos,pos,pos,pos,n/a,\"Blinking thoughtfully, someone purses his lips tightly and nods.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13450,Someone regards his father with a faint understanding smile. Someone,faces his father earnestly.,weighs up his chips once more.,looks dazed from his roadster's view.,\"smiles at someone, then glances at him.\",gives his friend an astonished smile.,gold0-orig,pos,unl,unl,pos,pos,Someone regards his father with a faint understanding smile.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13491,\"Someone gets out, wearing sunglasses. He\",takes off his shades.,smiles as he falls.,puts the meeting down.,is more ragged and gasping for breath.,starts to puff someone's cigarette.,gold0-orig,pos,unl,unl,unl,pos,\"Someone gets out, wearing sunglasses.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13488,\"A peahen turns her head. Inside, someone\",intercepts someone as he comes downstairs.,smokes the cigarette and smokes.,lies on top of someone as her legs and chest vibrate.,\"walks a crowded sidewalk, smoking a cigarette.\",strides past the teen as she sets open a telegram.,gold0-reannot,pos,unl,unl,unl,unl,A peahen turns her head.,\"Inside, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13471,\"In another picture, someone plays with Leon as a puppy. In a field, someone\",\"stands on one leg, with her arms spread, as her children look on.\",jogs out of the dance.,lies awake in a relaxing rock room.,slams his dress angrily to the preacher.,,gold0-reannot,pos,unl,unl,unl,n/a,\"In another picture, someone plays with Leon as a puppy.\",\"In a field, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13464,\"He looks back at his sleeping son and beams proudly. Taking a deep breath, someone\",\"returns his gaze to the portrait, and blinks back tears.\",regards the tiger uncertainly.,combines the canvas to a crate.,sinks into the sea.,tucks his hands into his pockets and stares at it.,gold1-reannot,pos,unl,unl,unl,pos,He looks back at his sleeping son and beams proudly.,\"Taking a deep breath, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13461,\"Flipping through the drawings, someone next finds a detailed illustration of a fly with pincers and a toothy maniacal grin. The father's brow knits and he\",glances at his son.,dabs his face with his brow.,smiles as they hug.,gives his father his pleading look.,turns through the ornate ropes.,gold0-reannot,pos,unl,unl,unl,unl,\"Flipping through the drawings, someone next finds a detailed illustration of a fly with pincers and a toothy maniacal grin.\",The father's brow knits and he\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13452,Someone faces his son with a furrowed brow. The boy,gazes solemnly into the cage.,enters the bushy room.,walks out another window.,considers dusting a smartphone.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone faces his son with a furrowed brow.,The boy\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13469,\"It features someone holding a glass of red wine. In the next photo, the smiling beauty\",stands in the snow in an ankle - length coat.,pinata a decoration made of ashes into the first aisle.,holds a white trophy.,sits in a slit of a man's coat.,,gold0-reannot,pos,unl,pos,pos,n/a,It features someone holding a glass of red wine.,\"In the next photo, the smiling beauty\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13473,\"Another tear rolls down someone cheek. Looking up from the computer, he\",remembers taking photos in the field as his wife and children frolic around him.,sees the boardwalk.,picks up a pair of sunglasses.,looks out at the dorm.,,gold0-reannot,pos,unl,unl,pos,n/a,Another tear rolls down someone cheek.,\"Looking up from the computer, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41562,13457,\"Seeing someone throw an arm around his son's shoulder, she takes a deep warm - hearted breath. As they near a bend in the path, someone's father\",gives him a playful shove.,\"steps in behind her, putting his briefcase to the stomach.\",is leaning out of a window pane.,gives a longing look.,,gold1-reannot,pos,unl,pos,pos,n/a,\"Seeing someone throw an arm around his son's shoulder, she takes a deep warm - hearted breath.\",\"As they near a bend in the path, someone's father\"\nanetv_vrY1ZMqjMog,5231,The man rubs a section of the wall. The man,walks away from the camera as he wipes the wall.,hesitates before the recreation area of hand pipes.,picks up the brushed and dry it off to the finish line.,cuts then smooths cement on a tile.,wipes it off with a towel.,gold0-orig,pos,unl,unl,unl,pos,The man rubs a section of the wall.,The man\nanetv_vrY1ZMqjMog,5232,The man walks away from the camera as he wipes the wall. The man then,walks towards the camera.,zooms out and show his face and showing his commentary before finishing.,uses the paint solution to put his face in the water.,holds up a brush and begins rubbing it all around the area while the people speak to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The man walks away from the camera as he wipes the wall.,The man then\nanetv_vrY1ZMqjMog,5230,A man is wiping plaster on a wall while walking towards the camera. The man,rubs a section of the wall.,continues shoveling the instrument and lighting up the wood.,continues moving his chair up and down and singing.,turns up and switches on the car.,is then seen applying glue to the roof and continue working it down.,gold0-reannot,pos,unl,unl,unl,pos,A man is wiping plaster on a wall while walking towards the camera.,The man\nanetv_vrY1ZMqjMog,14241,Man is showing to the camera hot to mill a wall. man,is walking in a small room that have a plastic on the floor to not mess up the floor.,is standing in a kitchen talking to the camera to start fixing clothes outside.,is going back on a brush while cleaning his client's back and uses a hammer to put on his chest.,is demonstrating how to iron vampire armor.,is standing in front of the patio and starts welding the metal and putting something in the pan.,gold0-reannot,pos,unl,unl,unl,pos,Man is showing to the camera hot to mill a wall.,man\nanetv_vrY1ZMqjMog,14240,Man is standing in a room milling one of the wall. man,is showing to the camera hot to mill a wall.,is doing gymnastics in the field and sharpening the pole.,is running through a pile of grass.,is in the boarding room in front of a dark room.,is walking in a lake with inflatable yellow darts.,gold0-reannot,pos,unl,unl,unl,unl,Man is standing in a room milling one of the wall.,man\nlsmdc0031_The_Lost_Weekend-65406,8798,\"He takes a couple of steps towards the door, turns. He\",\"walks out, bewildered.\",sees the glowing ball disappearing into his mirror.,\"takes it in, now fully dressed, few students dressed in casual outfits.\",speeds toward the club door.,takes out his pistol and aims it at someone.,gold1-orig,pos,unl,unl,unl,pos,\"He takes a couple of steps towards the door, turns.\",He\nlsmdc0031_The_Lost_Weekend-65406,8797,\"With his thumb, someone indicates someone. He\",\"takes a couple of steps towards the door, turns.\",transfers them to his own paw - like cheek instead.,\"looks dazed, aware that she's eating and enjoying it very much.\",sends a message then turns on someone.,,gold1-orig,pos,unl,pos,pos,n/a,\"With his thumb, someone indicates someone.\",He\nlsmdc0031_The_Lost_Weekend-65406,8799,He downs the jigger of rye. Someone,does break down and pours a drink.,\"gets out of his car, watching.\",places a gentle hook on someone's finger.,watches her from an upper ceiling.,\"makes another shot, and has hopped in along the bar.\",gold0-orig,pos,unl,unl,unl,pos,He downs the jigger of rye.,Someone\nlsmdc0003_CASABLANCA-47160,258,Someone walks out to the balcony railing. Someone,\"sees someone attending to someone, who appears to be injured.\",drops his other arm and runs to the center of the platform.,turns to see someone from the lantern.,grimaces calmly on the panel.,opens the door and sees someone in his room.,gold0-orig,pos,unl,unl,unl,unl,Someone walks out to the balcony railing.,Someone\nlsmdc0003_CASABLANCA-47160,254,Someone crosses to the door. He,\"opens it just enough to see below, and turns off the light.\",closes it locking the door in behind them.,climbs inside and stands at the railing.,\"pulls himself into view, swims to the bathroom, and sees someone smoking a cigarette.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone crosses to the door.,He\nlsmdc0003_CASABLANCA-47160,253,\"People enter and cross toward the bar, out of breath from their exertion. Someone\",goes behind the bar.,stands up as a slow silver tear rolls down someone's cheek.,turns to the window to steady waves at the patrons.,\"places three glasses on the table in the glass beside him, just to make herself think he holds someone else.\",waves at the camera and waves quickly back toward someone.,gold0-orig,pos,unl,unl,unl,unl,\"People enter and cross toward the bar, out of breath from their exertion.\",Someone\nlsmdc0003_CASABLANCA-47160,256,She makes a move as if to go out to the balcony but someone's pushes her back. She,withdraws behind the door.,stands onto a platform and falls forward.,swerves into someone and pulling him to the other side of the road.,grabs his popcorn bag and checks it.,,gold0-orig,pos,unl,unl,unl,n/a,She makes a move as if to go out to the balcony but someone's pushes her back.,She\nlsmdc0003_CASABLANCA-47160,248,Someone puts her head on someone's shoulder. She,snuggles closer to someone.,rests her head on his shoulder.,pauses as she massages the boy in her cheek.,blows the snow off him.,,gold0-orig,pos,unl,unl,pos,n/a,Someone puts her head on someone's shoulder.,She\nlsmdc0003_CASABLANCA-47160,251,They flatten themselves against a wall to avoid detection. People,make their way through the darkness toward a side entrance of someone's.,sit at another passageway.,come around and demonstrate a motel a sculpting torch.,in the camp is in chaos of the hydra soldiers.,come into the emergency room and pull the bottom off of the car at the end.,gold0-orig,pos,unl,unl,unl,unl,They flatten themselves against a wall to avoid detection.,People\nlsmdc0003_CASABLANCA-47160,259,Someone enters someone's apartment and sees someone. He,looks at someone and says nothing.,\"stands, clinging to the tree until he's just going away.\",drops the fang and then doubles back.,emerges from a nearby intersection and makes a call.,climbs onto the bus steps and looks up slowly.,gold0-orig,pos,unl,unl,unl,unl,Someone enters someone's apartment and sees someone.,He\nlsmdc0003_CASABLANCA-47160,255,\"He opens it just enough to see below, and turns off the light. Someone\",stands just in back of him.,tosses someone on a couch and comes after them.,looks down and sees something in the nurse's eyes.,\"approaches him, then hide behind a pillar.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He opens it just enough to see below, and turns off the light.\",Someone\nlsmdc0003_CASABLANCA-47160,250,The lights move past them. They,flatten themselves against a wall to avoid detection.,turn to the sinks.,push the animals closer to the camera.,peer up at the satellite baring.,move up a higher platform.,gold0-orig,pos,unl,unl,unl,pos,The lights move past them.,They\nlsmdc0003_CASABLANCA-47160,260,He looks at someone and says nothing. Someone,\"walks to the bar, picks up a bottle, and pours a drink.\",slaps her glasses and shrugs.,is turned to look if this is real.,\", with his fists clenched, looks stunned.\",watches someone solve the combination with a cover of fear.,gold1-reannot,pos,unl,unl,pos,pos,He looks at someone and says nothing.,Someone\nlsmdc0003_CASABLANCA-47160,252,People make their way through the darkness toward a side entrance of someone's. People,\"enter and cross toward the bar, out of breath from their exertion.\",ride down the corridor in the wheelhouse.,stand by the line of camels.,wait in a back room in the street.,walk through dark decorated office.,gold1-reannot,pos,unl,unl,unl,unl,People make their way through the darkness toward a side entrance of someone's.,People\nlsmdc0001_American_Beauty-45722,1070,His eyes widen as he pulls a rose petal from his mouth right before we. Someone,\"is back against the counter, drinking the root beer.\",spins a knife at a shell display.,pours lemonade into a glass cup and brings it to the mouth.,puts it in a sling.,,gold1-orig,pos,unl,unl,unl,n/a,His eyes widen as he pulls a rose petal from his mouth right before we.,Someone\nlsmdc0001_American_Beauty-45722,1071,\"Someone is back against the counter, drinking the root beer. Someone\",enters from the dining room.,is surprised of them so embarrassed.,chases him through the crowd.,\"is a little shaken, and he plops himself on his bed, hands himself a cup of coffee.\",smiles at someone as he cruises past.,gold0-orig,pos,unl,unl,unl,pos,\"Someone is back against the counter, drinking the root beer.\",Someone\nlsmdc0001_American_Beauty-45722,1068,\"She seems shocked, but does n't resist as he pulls her toward him with surprising strength. He breaks the kiss, looking at her in awe, then he\",reaches up and touches his lips.,sets her down on the mat.,turns her to go to someone.,sets his face face back in hers and gives her a kiss.,,gold0-orig,pos,unl,pos,pos,n/a,\"She seems shocked, but does n't resist as he pulls her toward him with surprising strength.\",\"He breaks the kiss, looking at her in awe, then he\"\nlsmdc0001_American_Beauty-45722,1064,She starts toward the kitchen. Someone,enters and opens the refrigerator.,leaps over someone back.,enters in the passenger side.,comes out of her.,\"goes, starts to exit.\",gold0-orig,pos,unl,unl,unl,unl,She starts toward the kitchen.,Someone\nlsmdc0001_American_Beauty-45722,1067,\"Everything slows down, and all sound fades. Close on someone: his eyes narrow slightly, then: He\",cups her face in his hands and kisses her.,slips through the mud and rolls over to a left.,is now in the beginning.,\"concern his electrode, to sleep.\",looks forward of everything.,gold0-orig,pos,unl,unl,unl,pos,\"Everything slows down, and all sound fades.\",\"Close on someone: his eyes narrow slightly, then: He\"\nlsmdc0001_American_Beauty-45722,1073,\"He can't believe what he is hearing. Someone, still in his suit,\",\"stands outside someone's room, his ear up against the door.\",sits on a corner chair by himself.,runs back to the great hall.,is bent over his chair.,gets out of his car.,gold0-orig,pos,pos,pos,pos,pos,He can't believe what he is hearing.,\"Someone, still in his suit,\"\nlsmdc0001_American_Beauty-45722,1065,Someone enters and opens the refrigerator. He,\"turns, and is instantly transfixed by: someone leans against the counter, twirling her hair.\",stands at a door sitting on the counter near the room.,adds a small bundle of candy into a aluminum pan.,pours out the restaurant shaker and rests it at a table over his son.,passes in where he picked up a large bag of scotch.,gold0-orig,pos,unl,unl,unl,pos,Someone enters and opens the refrigerator.,He\nlsmdc0001_American_Beauty-45722,1072,Someone enters from the dining room. He,can't believe what he is hearing.,bowls at her of a ample exhausted friend.,watches someone who folds his arms.,brings someone a fedora.,\"spins around, scattering vegetables in its wake.\",gold0-reannot,pos,unl,pos,pos,pos,Someone enters from the dining room.,He\nlsmdc0001_American_Beauty-45722,1063,Someone switches off the tv. She,starts toward the kitchen.,takes out the surveillance cell.,hangs up and arches his brow.,set faces out of the command module.,rubs a doll from the dejected couple.,gold1-reannot,pos,unl,unl,unl,unl,Someone switches off the tv.,She\nlsmdc0001_American_Beauty-45722,1066,\"She reaches inside the refrigerator to grab a bottle. As she does, she\",moves to place her other hand casually on someone's shoulder.,finishes pouring a cup of tea to the sink.,spits it into someone's cheeks.,moves with a shrug to the side.,,gold1-reannot,pos,unl,unl,unl,n/a,She reaches inside the refrigerator to grab a bottle.,\"As she does, she\"\nanetv_omuYi2Vhgjo,3002,The boy plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing. He,finishes by putting his body onto the piano and then smiling into the camera.,fixes a set of keys on the side of the piano and reading it then veers through the park and jumps into it.,starts playing his guitar and speaking to the camera as well as playing and smiling to the side.,bristles gets on the hood as he cruises streets in the weeds overgrown forest.,continues playing and ends with him laughing again and throwing it right into the distance.,gold1-orig,pos,unl,unl,unl,unl,The boy plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing.,He\nanetv_omuYi2Vhgjo,3001,A young boy is seen smiling and laughing into the camera and beginning to play piano. The boy,plays furiously on the piano at a fast pace and leads into him wearing a different shirt and still playing.,continues moving back and fourth and stopping to speak to the camera.,continues to play and continues to explain how to do sit ups while smiling to the camera.,continues twirl on the floor around someone while still looking away from the camera.,begins playing the instrument with a person it looks back down his face.,gold1-orig,pos,unl,unl,unl,pos,A young boy is seen smiling and laughing into the camera and beginning to play piano.,The boy\nlsmdc3041_JUST_GO_WITH_IT-18448,17039,\"Someone and someone raise their hands. Now on a palm tree lined beach, someone\",steps out of the water in a yellow string bikini.,shares a computer with a bearded woman sitting at a booth with a telephone on her lap.,sits with one hand resting on a row lonely out on the pool's edge.,\"drapes a blanket around her shoulder, cupping her face in his hands.\",,gold0-orig,pos,unl,pos,pos,n/a,Someone and someone raise their hands.,\"Now on a palm tree lined beach, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18448,17040,\"Now on a palm tree lined beach, someone steps out of the water in a yellow string bikini. Someone and someone\",check her out as they cross the sand.,dive in and taking it.,stroll on a balcony overlooking small town.,arrive at the empty restaurant table.,enter amid the grave.,gold0-orig,pos,unl,unl,unl,unl,\"Now on a palm tree lined beach, someone steps out of the water in a yellow string bikini.\",Someone and someone\nlsmdc3041_JUST_GO_WITH_IT-18448,17042,\"The voluptuous young woman brushes back her long blonde hair. Ogling her, someone\",lifts his round glasses.,ushers him out the door.,puts in his hysterical response.,marches into a living room and grabs a duffle bag.,turns off its light.,gold0-orig,pos,unl,unl,unl,unl,The voluptuous young woman brushes back her long blonde hair.,\"Ogling her, someone\"\nlsmdc3041_JUST_GO_WITH_IT-18448,17041,Someone and someone check her out as they cross the sand. The voluptuous young woman,brushes back her long blonde hair.,steps to the soccer hut.,carrying a silky hostess at the dining table sits down and too with her head bowed.,carries tray on the dock and helps someone out of their booty.,follow the young woman as a male figure extends across another level.,gold0-reannot,pos,unl,unl,unl,unl,Someone and someone check her out as they cross the sand.,The voluptuous young woman\nanetv_AH4v5vqsUlc,15012,A second little boy is playing too. They both,go down the slide together.,\"stop jumping, running away from the ring.\",go back and forth in the tub.,start dancing during the dance together.,turn back and walk past each other.,gold0-orig,pos,unl,unl,unl,pos,A second little boy is playing too.,They both\nanetv_AH4v5vqsUlc,15013,They both go down the slide together. The first little boy,walks along the playground and points at something.,swings at the pinata pulled away from the bars.,begins running down the slide.,jogs and helped with another boy who tries to peek strand off and lift it.,going for a long jump and starts to slide for a bit on the slide and spin.,gold0-orig,pos,unl,unl,unl,unl,They both go down the slide together.,The first little boy\nanetv_AH4v5vqsUlc,3043,Once on the ground he walks around for a bit then turns around and points up. Then he,goes back and starts up the stairs again.,lays the stick under the water and begins playing the piano he just started to adjust it of himself.,begins riding around on his stomach and laying his arms.,takes off and goes back to playing on the grass.,,gold1-orig,pos,unl,unl,pos,n/a,Once on the ground he walks around for a bit then turns around and points up.,Then he\nanetv_AH4v5vqsUlc,3042,He gets to the red tube slide at the top and points to it and then slides down. Once on the ground he,walks around for a bit then turns around and points up.,starts to wash and he clings to it.,ends up pouring.,stands up and looks to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,He gets to the red tube slide at the top and points to it and then slides down.,Once on the ground he\nanetv_AH4v5vqsUlc,15014,The first little boy walks along the playground and points at something. Then he,goes back to climbing.,\"spins on his knees, raising his arm and setting on the ground.\",grabs his flute and resumes playing with his hands and then begins combing the conga.,comes off and goes back down the slide.,,gold0-orig,pos,unl,unl,pos,n/a,The first little boy walks along the playground and points at something.,Then he\nanetv_AH4v5vqsUlc,3041,\"A little boy is climbing up the stairs of a play gym, he stops once and points at a red tube opening but passes it. He\",gets to the red tube slide at the top and points to it and then slides down.,beats him with it.,hesitates with the man seated to place the stick in his hand.,\"moves from the inside, using the hoop to remove the wall.\",,gold0-orig,pos,unl,unl,pos,n/a,\"A little boy is climbing up the stairs of a play gym, he stops once and points at a red tube opening but passes it.\",He\nanetv_AXw2bkQyRPo,13530,A man and a woman are dancing together in a room. They,are twirling around on the floor.,are sitting on a couch together.,open a candle on a kettle.,are doing aerobic crunches on the ground.,started dancing and looking at each other.,gold0-orig,pos,unl,unl,unl,pos,A man and a woman are dancing together in a room.,They\nanetv_AXw2bkQyRPo,10205,A man is seen standing in front of the camera when a woman walks next to him in frame. The two then,begin dancing around one another in the room with each other.,begin lacrosse on a beam followed by the same men passing by the camera while others watch on the side.,begin hitting the ball with one another and bumping each other.,\"begin playing a game of crochet, one pushing each other along his bag.\",,gold1-reannot,pos,unl,unl,unl,n/a,A man is seen standing in front of the camera when a woman walks next to him in frame.,The two then\nanetv_AXw2bkQyRPo,10206,The two then begin dancing around one another in the room with each other. They,continue to spin and twirl around and ends with the girl turning off the camera.,clap and both continue fencing with one another.,continue dancing with one other in the end and celebrating with one in the end.,begin with one another and end by walking around to watch the website.,\"watch several basketball shots, then show off the times.\",gold1-reannot,pos,unl,unl,unl,unl,The two then begin dancing around one another in the room with each other.,They\nanetv_AXw2bkQyRPo,13531,They are twirling around on the floor. They finish dancing and the woman,walks to the camera.,appears to be standing away.,keeps walking around the fences while sitting with them in front of them.,climbs down the ladder.,continues to perform the white routine.,gold1-reannot,pos,unl,unl,unl,pos,They are twirling around on the floor.,They finish dancing and the woman\nlsmdc3086_UGLY_TRUTH-6439,11480,Someone forces a casual smile. Someone,nods disappointedly and tilts her head.,speaks to the dolphins look.,crosses the parking lot.,leads a waiter through the building.,,gold0-orig,pos,unl,pos,pos,n/a,Someone forces a casual smile.,Someone\nlsmdc3086_UGLY_TRUTH-6439,11488,He hands her a glass of champagne. She,cringes as she finishes the entire glass.,tosses the card aside.,looks disapprovingly at someone's belly and eyes.,gazes into the window of the cabin as well.,,gold0-orig,pos,unl,unl,pos,n/a,He hands her a glass of champagne.,She\nlsmdc3086_UGLY_TRUTH-6439,11481,Someone nods disappointedly and tilts her head. She,gives a bitter smile.,hangs his head at her side.,leans back in his seat and hands her a towel.,wears a tiny smile.,,gold0-orig,pos,unl,unl,pos,n/a,Someone nods disappointedly and tilts her head.,She\nlsmdc3086_UGLY_TRUTH-6439,11478,\"Someone sucks in a breath and steps closer, her eyes fixed on his face. She\",gives him a pleading look.,showcases hands with a silver shield.,lifts her jacket and all edges toward us.,brings her lips to his and faces her tenderly.,presses her lips to her cheek.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sucks in a breath and steps closer, her eyes fixed on his face.\",She\nlsmdc3086_UGLY_TRUTH-6439,11482,\"She gives a bitter smile. As it fades, she\",lifts her eyes to his.,lies sleeping beneath the bed.,sits up and clenches her jaw.,becomes - - sobbing.,glances over her shoulder at someone.,gold0-orig,pos,unl,unl,pos,pos,She gives a bitter smile.,\"As it fades, she\"\nlsmdc3086_UGLY_TRUTH-6439,11484,Someone turns his back to her. Someone,watches sadly as he strolls down the hallway with his hands in his pockets.,shoves straight at the sword of gryffindor.,\"wheels toward the door, waiting, the bangs following her, and leaves and comes in with a nice planter.\",fearfully drives the blue engine plaza engulfed in a cloud.,is completely forgetting by someone.,gold0-orig,pos,unl,unl,unl,unl,Someone turns his back to her.,Someone\nlsmdc3086_UGLY_TRUTH-6439,11479,She gives him a pleading look. Someone,forces a casual smile.,regards her.,notices someone right below him.,remains by the door.,takes her eyes out in front of her face.,gold0-orig,pos,unl,unl,unl,unl,She gives him a pleading look.,Someone\nlsmdc3086_UGLY_TRUTH-6439,11487,\"She glances around the spacious suite and finds someone sitting at the edge of the bed, wearing a clean unbuttoned dress shirt. He\",hands her a glass of champagne.,\"hangs off, revealing her panties.\",\"stands standing before him from the table, making lid with two black glasses.\",\"steals around a desk, and moves up from his seat.\",,gold0-orig,pos,unl,unl,unl,n/a,\"She glances around the spacious suite and finds someone sitting at the edge of the bed, wearing a clean unbuttoned dress shirt.\",He\nlsmdc3086_UGLY_TRUTH-6439,11485,Someone watches sadly as he strolls down the hallway with his hands in his pockets. She,takes a breath and heads back to her room.,dabs her brow as he reaches for a small jewelry box.,\"is wearing a short waist sleeved shirt, jeans, pants on a brown slip.\",\"enters the apartment for a moment, then stands at the back door.\",returns a broad grin and steps out as someone puts her hands to her lips.,gold0-orig,pos,unl,unl,unl,unl,Someone watches sadly as he strolls down the hallway with his hands in his pockets.,She\nlsmdc3086_UGLY_TRUTH-6439,11489,Someone pours herself another glass. She,turns away with the bottle.,shows to his board.,pours her coffee and then goes inside.,leaves rain in the papers.,stares back at the pot.,gold1-orig,pos,unl,unl,unl,unl,Someone pours herself another glass.,She\nlsmdc3086_UGLY_TRUTH-6439,11486,She takes a breath and heads back to her room. The yellow hallway lights,glow harshly above someone as he hangs his head for a moment.,flash on as someone is on the dance floor.,flash in a bright pink and pink shape.,\"turn up, brighter, and pulls face out.\",go inside.,gold0-reannot,pos,unl,unl,unl,unl,She takes a breath and heads back to her room.,The yellow hallway lights\nanetv_BJGACTBaU_Y,7908,A man is seen walking closer to a pinata while a large group of people stand around him. The man,\"misses the pinata and hits a person behind him, shown again in slow motion.\",continues chasing the ball around a house and looking back to the camera.,returns a few of the clips finally with other people standing around in the middle.,continues playing the girls all along the set and ends with the man walking away.,continues to run around and perform tricks around his arms while others watch on the side.,gold0-orig,pos,unl,unl,unl,unl,A man is seen walking closer to a pinata while a large group of people stand around him.,The man\nanetv_OyV4eki18GE,3134,A baby in a hat is sitting on a chair. A man,is holding the baby playing with a ball.,is holding his camel in front of him.,is laying something in the front of a trashcan.,sits on a chair made from a tray.,is sitting down in front of him and starts smoking a cigarette.,gold0-orig,pos,unl,pos,pos,pos,A baby in a hat is sitting on a chair.,A man\nanetv_bMRx3vSVZUQ,3206,The men gear up on the sides while speaking to the camera and ride around on the water. The people,continue to ride around while others watch on the side.,are shown speaking to the camera while zooming in on a vehicle while speaking to one another.,grab exercises while people push pucks around the pool.,continuously ride past several people while surfing as well as surfing being shown.,,gold0-orig,pos,unl,unl,unl,n/a,The men gear up on the sides while speaking to the camera and ride around on the water.,The people\nanetv_FqiMsRnatP0,8437,\"A woman helps a small child to hold a blue rod, while other individuals walk around in the background. The small child\",hits a pinata with the rod repeatedly.,does a gymnastics routine on the monkey bar.,begins doing some embroidery at the same time.,leads the child onto the floor.,chases after the girl while the camera captures her movements.,gold0-orig,pos,unl,unl,unl,unl,\"A woman helps a small child to hold a blue rod, while other individuals walk around in the background.\",The small child\nanetv_FqiMsRnatP0,8439,The small child walks to the front of the rod and pushes it. The child,walks away as the pinata is lifted off the ground.,uses a pointed brush to steady the candy.,mows down the sand with it sweeping on the grass.,looks on and licks from the boy.,,gold1-orig,pos,unl,unl,unl,n/a,The small child walks to the front of the rod and pushes it.,The child\nanetv_FqiMsRnatP0,8440,The child walks away as the pinata is lifted off the ground. The woman,helps the small child with the rod again.,talks around the chair while the man cuts and does 3 ups.,\"swings the pinata in front of someone, and a replay in her hair appears in slow motion.\",is seen leaning against the camera.,\"swinging back and fourth, the young girl swings back and fourth while throws the frisbee in her head.\",gold1-orig,pos,unl,unl,unl,unl,The child walks away as the pinata is lifted off the ground.,The woman\nanetv_FqiMsRnatP0,19471,\"After, the toddler hits the pinata several times, and then the toddler inspects the pinata. Next, the pinata is raised and lowered on front the toddler who is afraid, then the woman\",helps the toddler to hit again the pinata.,throws the ball and walks towards the girl.,uses the bat to catch the child.,watches them go in after.,put the bat on the ground.,gold0-orig,pos,unl,unl,unl,pos,\"After, the toddler hits the pinata several times, and then the toddler inspects the pinata.\",\"Next, the pinata is raised and lowered on front the toddler who is afraid, then the woman\"\nanetv_O_IrzZbXiCc,6037,The child practices field hockey with obstacles on the ground. The child,walks away from the camera.,takes the mallet as a puck pushes through a jungle.,falls off the hubcap for the other hands.,spins across the balance mat.,stands on the bridge watching.,gold1-orig,pos,unl,unl,unl,unl,The child practices field hockey with obstacles on the ground.,The child\nanetv_BQ_BJNFGmTg,7057,A man plays two drums while seated on a carpet. The man,stops playing the drums and smiles.,plays music on his board while playing with a bow.,squats out the arms and play on a stick recorder.,bends over to pick the fishes on her hands and holds her on his side.,,gold0-orig,pos,unl,unl,unl,n/a,A man plays two drums while seated on a carpet.,The man\nanetv_BQ_BJNFGmTg,6298,He is playing two drums with his hands in front of him. He,stops paying and puts his hands down.,does n't play them.,is talking in front of the camera.,looks all the way over and forth between them.,gets up as his feet and legs begin racing.,gold0-orig,pos,unl,unl,unl,unl,He is playing two drums with his hands in front of him.,He\nanetv_BQ_BJNFGmTg,6297,A man is sitting down on the floor. He,is playing two drums with his hands in front of him.,has blood on his face.,picks up a knife and throws it at him.,starts playing the drums.,lifts a heavy weight up over his head.,gold0-reannot,pos,pos,pos,pos,pos,A man is sitting down on the floor.,He\nanetv_P3_YQbHXEIs,10629,He is ornately applying an image to a man's shoulder. He,continues inking and wiping as he goes.,puts the leaves gently on the altar and begins to put the petals on.,takes a red rag over his eyes and began putting his shoe on.,\"with red hair is standing at the camera about him he is taking work, and holding the electric razor in front of him.\",,gold0-orig,pos,unl,unl,pos,n/a,He is ornately applying an image to a man's shoulder.,He\nanetv_P3_YQbHXEIs,10628,A tattoo artist is wearing gloves and holding a needle. He,is ornately applying an image to a man's shoulder.,is using a leaf technique that has cast his hold.,is talking about the vacuum.,is walking in a gym carrying a pair of letters in the middle.,,gold0-orig,pos,unl,unl,unl,n/a,A tattoo artist is wearing gloves and holding a needle.,He\nanetv_P3_YQbHXEIs,3650,A man is seen tattooing the back of a person while the person sits motionless. The artist,continues moving back and fourth while pausing and then going back to tattooing.,begins shaving his palms.,holds the conga up and down.,wets the hair to show the hand tattoo.,begins shaving his hand while looking into the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen tattooing the back of a person while the person sits motionless.,The artist\nanetv_wJOHmxQZPR4,10394,A woman is seen hosting a news segment speaking to the camera and transitions into a group of men walking in a straight line. The people then perform in front of a large group of people and one performer,is interviewed in between.,is running in a bunker filled with people.,helps the girl dives and others come out.,kneeling on her wake goes around and gives her two thumbs up.,joins someone who begins to punch the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen hosting a news segment speaking to the camera and transitions into a group of men walking in a straight line.,The people then perform in front of a large group of people and one performer\nlsmdc3041_JUST_GO_WITH_IT-18638,6647,\"Rounding a corner, he breaks into a run. Someone\",jogs back to the elevators and presses the call button.,is filing against the wall with a book idly thrown right in front of him.,opens his eyes bleakly as he punches the air and leaves.,averts his doleful gaze.,runs back from the window.,gold0-orig,pos,unl,unl,pos,pos,\"Rounding a corner, he breaks into a run.\",Someone\nlsmdc3041_JUST_GO_WITH_IT-18638,6645,\"Now someone steps off of an elevator and crosses a hallway, with his hand shoved in his pockets. At the end of another hall, he\",reaches the door to his own suite and stops.,watches as a group of students enter him coming through the dining room.,\"turns and crawls toward someone, who is on the stoop promptly.\",turns a corner and turns on a lamp on the top of the vaulted stairs.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now someone steps off of an elevator and crosses a hallway, with his hand shoved in his pockets.\",\"At the end of another hall, he\"\nlsmdc3041_JUST_GO_WITH_IT-18638,6646,\"At the end of another hall, he reaches the door to his own suite and stops. Rounding a corner, he\",breaks into a run.,takes several huge breaths and stares at him.,stomps on his heels.,\"sees someone standing in front of him, tossing down the surveillance side wall and grinning.\",waits for a moment as he hears an eye approaching.,gold1-orig,pos,unl,unl,unl,unl,\"At the end of another hall, he reaches the door to his own suite and stops.\",\"Rounding a corner, he\"\nlsmdc3041_JUST_GO_WITH_IT-18638,6644,\"As someone walks away, someone slowly shuts the door to her suite. Now someone\",\"steps off of an elevator and crosses a hallway, with his hand shoved in his pockets.\",runs up the hall in their basement apartment.,reaches out to sebastian.,stands and someone trails him through a door.,walks closed to him.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone walks away, someone slowly shuts the door to her suite.\",Now someone\nlsmdc1027_Les_Miserables-6367,17737,\"Someone sits clutching someone's handkerchief. Standing nearby, someone\",wears a fraught serious expression.,faces at the tiger.,raises as more weapons on the oils gantry.,forces a smile and spins his left hand back.,and someone exchange stares.,gold0-orig,pos,unl,unl,pos,pos,Someone sits clutching someone's handkerchief.,\"Standing nearby, someone\"\nlsmdc1027_Les_Miserables-6367,17738,\"Standing nearby, someone wears a fraught serious expression. He\",leans in a doorway.,glances at his spectacles.,goes off the porch.,robot genders in the street.,touches his scar and kisses him instead.,gold0-orig,pos,unl,unl,unl,unl,\"Standing nearby, someone wears a fraught serious expression.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2089,He weakly crawls up to the figure and sees that it's someone. Someone,\"hovers over her for a moment, then lies down beside her and feels her pulse.\",\"dives back down someone's carpet, panting some more, and turns towards someone.\",brushes banging on one step.,'s gaze is focused round the sparsely of the world.,people safari - like height.,gold0-orig,pos,unl,unl,unl,unl,He weakly crawls up to the figure and sees that it's someone.,Someone\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2093,\"As he holds her tightly, the picture fades to black. He\",\"presses his lips to her forehead, breathing heavily against her.\",pulls away and watches it on his harness.,closes it and shakes her head.,\"stops, thumps his back, and finishes his song.\",\"glances back at his desk, prints out his own newspaper, then lights it and looks to the window.\",gold0-orig,pos,unl,unl,unl,pos,\"As he holds her tightly, the picture fades to black.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2088,\"In a crevice between the rocks, he sees a body. He\",weakly crawls up to the figure and sees that it's someone.,comes over to the bed and opens it.,makes the pranam and begins to close.,picks it off as he continues to run around in the distance.,\"reaches in, then folds his arms in front of her on the bed and boots it hard.\",gold0-orig,pos,unl,unl,unl,unl,\"In a crevice between the rocks, he sees a body.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2094,\"He presses his lips to her forehead, breathing heavily against her. Now, the two sleep, a breeze ruffles Tess's hair and jacket and a brilliant light\",shines down on them.,shines out of the window.,spreads across his face.,spreads across the room.,,gold0-orig,pos,pos,pos,pos,n/a,\"He presses his lips to her forehead, breathing heavily against her.\",\"Now, the two sleep, a breeze ruffles Tess's hair and jacket and a brilliant light\"\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2090,\"Someone hovers over her for a moment, then lies down beside her and feels her pulse. He\",pushes her jacket open.,pushes back behind him.,pushes it from his temple.,brushes her long wet hair.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone hovers over her for a moment, then lies down beside her and feels her pulse.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2092,\"He tries to open shirt beneath it. Working from inside her jacket, he\",pulls her limp body toward his and cradles her head in the crook of his other arm.,turns to face the building with his gun drawn.,slides the lid aside using a ruler while someone fires small pieces at his table.,wheels his chauffeur - driven limo down a highway.,flails wildly until it breaks and bursts out white flames.,gold0-orig,pos,unl,unl,unl,unl,He tries to open shirt beneath it.,\"Working from inside her jacket, he\"\nlsmdc3015_CHARLIE_ST_CLOUD-1163,2091,He parts the bib of her wader shirt beneath it. He,tries to open shirt beneath it.,walks with the bathroom door making her flannel sweater.,crouches over the scar on his back.,is bbq into the chandelier above her.,snaps the center of the robe and tucks it through a breaststroke.,gold0-orig,pos,unl,unl,unl,unl,He parts the bib of her wader shirt beneath it.,He\nanetv_YZJghuPmff8,5015,A woman holds the back section of a girls hair while she gets ready to style it. The woman,uses a single pick comb to separate strands of hair.,looks up and shows the track at the box with her hands extended.,uses her hands to bring on a semicircle and she jumps.,\"retrieves the razor, then cuts her fingers and split them to pieces.\",is trying to break style it with another rod and put a hand on the lady's leg.,gold0-orig,pos,unl,unl,unl,unl,A woman holds the back section of a girls hair while she gets ready to style it.,The woman\nanetv_YZJghuPmff8,5018,The woman pulls on strands of hairs to get them straightened out. The woman,braids them the strands of hair together.,lifts her hair to the side while cleaning off the muscles.,keeps doing so his head is around.,resumes moving and pruning the dryer.,grabs the man from and uncovers her helmet.,gold1-orig,pos,unl,unl,unl,unl,The woman pulls on strands of hairs to get them straightened out.,The woman\nanetv_YZJghuPmff8,5017,The woman clips back sections of hair. The woman,pulls on strands of hairs to get them straightened out.,takes the sponge before clipping it with both hands and interviewing other boys as she talks.,dabs paint under her eyelids.,looks back and brushes the white persons hair in sections of her hair shear brush.,,gold0-orig,pos,unl,unl,pos,n/a,The woman clips back sections of hair.,The woman\nanetv_YZJghuPmff8,5016,The woman uses a single pick comb to separate strands of hair. The woman,clips back sections of hair.,lets the ends of the braid talk.,appears with the baby in shadow.,\"puts the brush in her hair, then puts it back.\",demonstrates the side way to clear her hair with a brush.,gold0-reannot,pos,unl,unl,pos,pos,The woman uses a single pick comb to separate strands of hair.,The woman\nanetv_QlTddnlIJpA,9536,\"A nice and lush field is shown and in the distance, a young man on a horse comes into the frame. The field is shown again and the same man\",rides up on a different horse.,stops to speak to the camera while continuing to talk.,attempts to fall in slow motion.,steps to the table to be seen.,,gold0-orig,pos,unl,unl,unl,n/a,\"A nice and lush field is shown and in the distance, a young man on a horse comes into the frame.\",The field is shown again and the same man\nanetv_QlTddnlIJpA,15637,He rides in on several clips on the horse mocing closer to the camera. He,continues riding in one more time on the horse.,'s band walks back to forth in the cement bars in the middle of the stage.,continues playing as he moves in the water as he tries to stay on the surface.,makes leg work on string shots and shows how to sharpen.,has various people riding down the mountain while others ride around on their bikes.,gold1-orig,pos,unl,unl,unl,pos,He rides in on several clips on the horse mocing closer to the camera.,He\nanetv_QlTddnlIJpA,9537,The field is shown again and the same man rides up on a different horse. The field,is then shown again with the same man riding up on yet another horse.,is shown again several times.,being packed with more bushes are shown.,is shown again several times and is shown again in last.,begins to show more people moving around the field around cheering with one another.,gold0-reannot,pos,unl,unl,unl,unl,The field is shown again and the same man rides up on a different horse.,The field\nanetv_2gc5VDx2xY8,17645,He swings the tassel in the air a few times and throws it catching the cow and then tying him down. There is an audience in the stands watching the man do this and there,is another man on a different horse at the side waiting.,is a picture in it.,is so pride of him that he knows he was never caught his eye as they read.,is a man named beiber.,,gold0-orig,pos,unl,unl,unl,n/a,He swings the tassel in the air a few times and throws it catching the cow and then tying him down.,There is an audience in the stands watching the man do this and there\nanetv_DzdNjXensv0,15823,People walk by looking at all the wares. A dog,\"appears, as people continue to bustle.\",practice between people and women in activities as they rags through rags.,\"staggers back laughing, as a boy flies and rushes in the alleyway.\",runs for the door and the dog chases after it.,,gold0-orig,pos,unl,unl,pos,n/a,People walk by looking at all the wares.,A dog\nanetv_bH7ORYDcI7A,9880,The trainer continuously throws the Frisbee and dog jumps high up and grabs the Frisbee every time. There,are several different trainers shown training and teaching their dogs tricks.,the dog bumps the mouse.,\", the dog chases and pets the dog.\",from the crowd is shown.,,gold0-orig,pos,unl,unl,unl,n/a,The trainer continuously throws the Frisbee and dog jumps high up and grabs the Frisbee every time.,There\nanetv_bH7ORYDcI7A,9877,Then main door then opens and the dog steps back. There,are two dog trainers in an enclosed room training a dog to jump and catch several frisbee.,are the cascade into the buckets.,is let down and she runs to the bottom of the stairs.,\", someone closes the door behind her.\",,gold0-orig,pos,unl,unl,unl,n/a,Then main door then opens and the dog steps back.,There\nanetv_bH7ORYDcI7A,9879,The male trainer throws the Frisbee at the dog and the dog jumps and fetches it for him. The trainer continuously throws the Frisbee and dog jumps high up and,grabs the frisbee every time.,catches it 2 handfuls.,lands on the track to hit it back.,a calf begins flying in the air.,the dog runs after him.,gold0-orig,pos,unl,unl,unl,pos,The male trainer throws the Frisbee at the dog and the dog jumps and fetches it for him.,The trainer continuously throws the Frisbee and dog jumps high up and\nanetv_bH7ORYDcI7A,9878,There are two dog trainers in an enclosed room training a dog to jump and catch several Frisbee. the male trainer throws the Frisbee at the dog and the dog,jumps and fetches it for him.,continues to leave the rod chases the ball.,is flying over the dog.,walks back across the lawn with the dogs.,catches it from dogs before spins off really fast.,gold0-reannot,pos,unl,unl,unl,unl,There are two dog trainers in an enclosed room training a dog to jump and catch several Frisbee.,the male trainer throws the Frisbee at the dog and the dog\nlsmdc3026_FRIENDS_WITH_BENEFITS-1294,4803,Someone watches someone lip sync every word. Someone,drops the flowers and kisses someone.,pushes his poker into the empty lot.,drift back into the alcove with a licked affirming gum.,strides onward through the hallway farther aisle of the keypad.,raises his hand and leads someone roughly to a stage.,gold0-orig,pos,unl,unl,unl,unl,Someone watches someone lip sync every word.,Someone\nanetv_iiQ6t0p9lik,1095,\"At one point, he is holding a camera while falling in. He also\",\"attempts to stand with one leg on the rope, as well as balancing.\",shows how to reach jumps and hooping on water quickly.,\"flips, crashing and spinning on the runway.\",holds up the harmonica and starts to play play of it.,stops and begins to talk and throw the attackers as soon as possible as another person walks to the surface.,gold1-orig,pos,unl,unl,pos,pos,\"At one point, he is holding a camera while falling in.\",He also\nanetv_iiQ6t0p9lik,1096,\"He also attempts to stand with one leg on the rope, as well as balancing. The video\",ends showing him in a final fall into a tube.,mounts as he criss and moves back towards the camera.,continues doing the boy in the top while several more people are shown watching him perform.,ends with the man painting the bottom all the way to the end.,,gold1-orig,pos,unl,unl,unl,n/a,\"He also attempts to stand with one leg on the rope, as well as balancing.\",The video\nanetv_iiQ6t0p9lik,1094,\"The video shows several clips of the man falling. At one point, he\",is holding a camera while falling in.,stands at the end of a line.,kneels his hammer on the ground.,starts running on the field is shown again.,,gold0-orig,pos,unl,unl,unl,n/a,The video shows several clips of the man falling.,\"At one point, he\"\nanetv_iiQ6t0p9lik,1092,\"The last time she falls, the camera rewinds and shows her falling backwards. The video then\",cuts to a man who is also using a tight rope to cross a pool.,hits and 1 with the curls and her eyes hanging on her windshield.,has a roller time and she changes with the final spray of the video she boston each time.,\"shows several series of skateboarders racing in the sky, followed by her performance and more shots of her riding the horses in a disappearing\",,gold0-reannot,pos,unl,unl,unl,n/a,\"The last time she falls, the camera rewinds and shows her falling backwards.\",The video then\nanetv_iiQ6t0p9lik,1093,The video then cuts to a man who is also using a tight rope to cross a pool. The video,shows several clips of the man falling.,ends to the man picking up an instrument and begins riding his skis to it.,\"ends with a large blue podium showing hips ruffled in an air, then against the top back the row behind the hedge.\",ends with the ending appears and the screen changes again.,is also shows the woman putting up strands of her hair while giving several clips to her hair and blowing it toward the camera.,gold0-reannot,pos,unl,unl,unl,unl,The video then cuts to a man who is also using a tight rope to cross a pool.,The video\nanetv_-4VuHlphgL4,8989,\"A man is standing behind a couch, wearing a protective head covering. He\",\"is covering a couch with plastic, and tapes it in place.\",takes off his gloves and is showing how to properly hold the shoes.,lifts a large barbell up to his chest.,is talking to the person in front of a high wall.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man is standing behind a couch, wearing a protective head covering.\",He\nanetv_-4VuHlphgL4,8990,\"He is covering a couch with plastic, and tapes it in place. He\",speaks to the camera about what he did a little longer.,\"uncovers someone, who grabs the lens case then grabs someone's hand.\",puts a cigarette in his mouth as he spits it out with another glass of beer.,pushes it back to the chair and then looks at something on the floor.,,gold0-orig,pos,unl,unl,pos,n/a,\"He is covering a couch with plastic, and tapes it in place.\",He\nanetv_ZH8hnmjRDsI,4972,A colorful towel is next to many small sand castles. The boy,continues to play in the sand.,uses a gel comb along the hair.,brushes out the bottom and race it off.,rubs under a blue tub with white.,begins spinning the hoops of white grandma on his hands.,gold0-orig,pos,unl,unl,unl,unl,A colorful towel is next to many small sand castles.,The boy\nanetv_ZH8hnmjRDsI,4970,A yellow plane is flying in the sky. A boy,is sitting on the sand of a beach.,throws her back onto the water.,is shown riding and land on a kite.,is flying on a kite.,,gold0-orig,pos,unl,unl,unl,n/a,A yellow plane is flying in the sky.,A boy\nanetv_ZH8hnmjRDsI,2318,A yellow helicopter is flying in a clear blue sky over the beach. A small toddler then,appears in the dirt playing with his shovel and bucket making a circle of sand castles.,goes into higher courts.,falls from the board back onto a running board behind the car.,zooms in on a young boy who is surfing at the docks.,\"stand over the edge of a lake, returning his attention in the water.\",gold0-orig,pos,unl,unl,unl,pos,A yellow helicopter is flying in a clear blue sky over the beach.,A small toddler then\nanetv_ZH8hnmjRDsI,4971,A boy is sitting on the sand of a beach. A colorful towel,is next to many small sand castles.,washes around a beach.,shows him near a tent on a wooden board.,is sitting on the beach in front of him.,wraps over the sign on the floor.,gold0-orig,pos,unl,unl,pos,pos,A boy is sitting on the sand of a beach.,A colorful towel\nlsmdc0012_Get_Shorty-53427,4438,Someone stares at the phone. He,\"sits there a moment, also staring at the phone.\",pretends to scratch the cast.,slips past every office and office.,holds it in her hand.,takes an demeanor puff.,gold0-orig,pos,unl,unl,unl,unl,Someone stares at the phone.,He\nanetv_KEJP4Uxa5m0,16926,A red ball hits a yellow ball in front of a woman. She,is talking as she is engaged in a game of croquette.,is shown practicing with a hoop around it.,dives into several pool and also falls into a pool.,stands and shoots an appliance in the distance.,bundles the ball against a goal.,gold0-orig,pos,unl,unl,unl,pos,A red ball hits a yellow ball in front of a woman.,She\nanetv_KEJP4Uxa5m0,16927,She is talking as she is engaged in a game of croquette. She,\"shows the different angles, moves, and positions for playing the game as she plays with another woman.\",does it and then leaves the wooden posts.,moves back and forth over the net and on a fishing board.,is using the hairstyle perfectly with a plastic cake rack.,is seen throwing darts at the target.,gold0-orig,pos,unl,unl,unl,unl,She is talking as she is engaged in a game of croquette.,She\nanetv_KEJP4Uxa5m0,606,She hits a ball with a stick. A man in a red shirt,is standing next to her.,talks to a camera.,tosses it through the air.,swings a bat at a pinata.,,gold0-orig,pos,unl,unl,unl,n/a,She hits a ball with a stick.,A man in a red shirt\nanetv_KEJP4Uxa5m0,605,A woman is kneeling down onto the grass. She,hits a ball with a stick.,turns around the tub and has a close shot.,begins throwing darts on a board.,begins to show on the horse.,bends down and pierces her face.,gold1-reannot,pos,unl,unl,unl,pos,A woman is kneeling down onto the grass.,She\nlsmdc0008_Fargo-49884,3404,\"She has her hands tied behind her and a black hood over her head. With a cry, she\",swings her elbow out of someone's grasp and lurches away across the front lawn.,runs into her bathroom.,turns the nozzle in the can and sets the bottle on top.,works her way up the side of the building as the camera lifts.,,gold1-orig,pos,unl,unl,unl,n/a,She has her hands tied behind her and a black hood over her head.,\"With a cry, she\"\nlsmdc0008_Fargo-49884,3400,It is a lakeside cabin surrounded by white. A brown Ciera with dealer plates,is pulling into the drive.,\"follow for to the bank, which has flashlights close for a deposit box.\",blink from the last go of the reporters' throw.,\"are posted in the center aisle, and the tiny woman strides away from the cloister.\",,gold0-orig,pos,unl,unl,unl,n/a,It is a lakeside cabin surrounded by white.,A brown Ciera with dealer plates\nlsmdc0008_Fargo-49884,3401,A brown Ciera with dealer plates is pulling into the drive. Someone,climbs out of the passenger seat as someone climbs out of the driver's.,sits strolling the middle of the street.,comes by a large helicopter.,\"turns to someone, causing surprised.\",,gold0-orig,pos,unl,unl,unl,n/a,A brown Ciera with dealer plates is pulling into the drive.,Someone\nlsmdc0008_Fargo-49884,3403,\"Someone opens the back door and, with an arm on her elbow, helps someone out. She\",has her hands tied behind her and a black hood over her head.,\"opens her window, then peers out in.\",takes off her sunglasses and takes a seat in the evening rain.,watches as the apartment lies down on the bed so it is dark.,closes the door behind him as he drags them across the windowsill.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone opens the back door and, with an arm on her elbow, helps someone out.\",She\nlsmdc0008_Fargo-49884,3402,Someone climbs out of the passenger seat as someone climbs out of the driver's. Someone,\"opens the back door and, with an arm on her elbow, helps someone out.\",turns on the car engine.,falls to a halt.,parks someone in a booth where someone stands at the bar.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone climbs out of the passenger seat as someone climbs out of the driver's.,Someone\nanetv_fUivipdikFU,14842,They are being led by an instructor. They,are doing zumba dances using steppers.,use a wooden platform for a passing video.,beat the cymbals from dancing.,paddle through the crowd.,,gold1-orig,pos,unl,unl,unl,n/a,They are being led by an instructor.,They\nanetv_fUivipdikFU,14841,A group of women are gathered in an indoor gym. They,are being led by an instructor.,take turns and begin practicing in different venues.,are engaged in a game of curling.,\"are practicing kicking, punching and punching.\",are spinning and twirling around the middle.,gold0-orig,pos,unl,unl,pos,pos,A group of women are gathered in an indoor gym.,They\nlsmdc1006_Slumdog_Millionaire-74069,16735,He looks at himself in the mirror and sighs. He,notices at the bottom of the mirror the letter b has been written in the condensation.,raises his hand and swaps a stoic look with someone's food.,takes off his glasses and eyes them out for the lobby.,\"takes the coat, starts to put on a tv.\",,gold0-orig,pos,unl,unl,unl,n/a,He looks at himself in the mirror and sighs.,He\nlsmdc1006_Slumdog_Millionaire-74069,16739,\"With a sly look, the host sees someone being led in by staff. Someone\",sits back in his chair and stares at the host.,at the table spills an essay.,\", someone tries to sneak out to the bar as the attendant shuffles to a rope and joins the another.\",grabs someone's alien arm and drags her down the hallway.,runs down the cluttered aisle.,gold0-orig,pos,unl,unl,unl,pos,\"With a sly look, the host sees someone being led in by staff.\",Someone\nlsmdc1006_Slumdog_Millionaire-74069,16734,Someone exits the cubiclal and approaches the sink to wash his hands. He,looks at himself in the mirror and sighs.,\"looks behind them, he frowns, his dead reflection in the water, looking around.\",\"applies the line the store, shows him someone the address for the location.\",browses some clothing and notices a reflection inside.,\"steps back inside, leaving someone shutting down a ticket.\",gold0-orig,pos,unl,unl,unl,unl,Someone exits the cubiclal and approaches the sink to wash his hands.,He\nlsmdc1006_Slumdog_Millionaire-74069,16736,He notices at the bottom of the mirror the letter b has been written in the condensation. His jaw,drops as he looks through the door.,clenches as if in martial of himself.,hovers for a moment as he switches to staring off into the distance.,trembling as he shakes hands with in the process.,,gold0-reannot,pos,unl,unl,pos,n/a,He notices at the bottom of the mirror the letter b has been written in the condensation.,His jaw\nanetv_VE9MAMmF1wc,5140,She steps up with another man on a platform while they smile and wave to the camera. The men,push her off the side as she slides down the rope and the man waves.,walk away from a door and begin with a person down on the sides.,leave his room for another room.,demonstrate tennis with one foot then the other.,watch their self radiantly.,gold1-orig,pos,unl,unl,unl,unl,She steps up with another man on a platform while they smile and wave to the camera.,The men\nanetv_VE9MAMmF1wc,1151,\"The woman sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera. Two men\",strap her in some more while she stands at the end of the jump off point and a spectator on the side watches.,are shown performing a slow routine with a table with three gentlemen standing forward together.,\"are capturing their body while standing at the edge of the diving board, performing stunts in a very short row.\",are in the middle of a lake forcing a handshake and people diving in the water.,stand in a large office on the other side in front of the rocks.,gold0-orig,pos,unl,unl,unl,unl,\"The woman sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera.\",Two men\nanetv_VE9MAMmF1wc,1150,A woman prepares and finally bungee jumps over a paved ground with an inflated landing pod beneath her. The woman,\"sits strapped into bungee jumping gear from the top of a high platform and speaks, smiles and waives while facing the camera.\",walks on the side of the ship with a sailor and uses a small flag at the railing at the end of the board.,continues to tie the rope on her hips as the teammates saddle up in the abdomen.,\"climbs a long railing, and continues to ski down the slope until us.\",walks away from the diving board multiple times and is seen jumping up onto her skateboard.,gold0-orig,pos,unl,unl,unl,unl,A woman prepares and finally bungee jumps over a paved ground with an inflated landing pod beneath her.,The woman\nanetv_VE9MAMmF1wc,5139,A close up of paper is seen followed by a woman speaking to the camera. She,steps up with another man on a platform while they smile and wave to the camera.,wearing a flower box stand in stretch down and presenting them.,zooms in on a video of instructs followed by people looking at the camera.,puts an iron on her leg and ties it up.,continues playing around herself as well as shots of a person moving out onto the side.,gold1-orig,pos,unl,unl,unl,unl,A close up of paper is seen followed by a woman speaking to the camera.,She\nlsmdc1046_Australia-90443,1332,\"She stomps furiously towards the house, as someone approaches a blazing funeral fire. He\",examines it thoughtfully and looks around.,\"leaps from the tree and judges civilian regards him with a coy smile, then moves away from their students.\",\"sits under the high porch, strapped to an elven cage.\",red just washed from the room.,\"has to cross himself, then swoops down the rock, which says stopping for her to notice.\",gold1-orig,pos,unl,unl,unl,unl,\"She stomps furiously towards the house, as someone approaches a blazing funeral fire.\",He\nlsmdc1046_Australia-90443,1333,He examines it thoughtfully and looks around. The boy,stretches out his hands.,\"takes it and glances at it, then holds his cape up inside the maroon highway.\",\"snatches the thermos, turns it over.\",moves his bike around a neat flip while moving at a nearby board.,looks at the reverend before him.,gold0-orig,pos,unl,unl,unl,pos,He examines it thoughtfully and looks around.,The boy\nlsmdc1046_Australia-90443,1336,\"She eyes the man, her hand poised near someone's face. The house\",\"is shrouded in a cloud of dust and smoke, its a big blaze but tiny in the vast landscape.\",\"rises up to rip off her hair, causing her to look up from the fallen tree.\",comes back to life.,\"is full of wild, rotting belligerent not bad.\",is shrouded on the dust behind the crop.,gold1-orig,pos,unl,unl,unl,unl,\"She eyes the man, her hand poised near someone's face.\",The house\nlsmdc1046_Australia-90443,1330,\"Someone, shrouded in smoke, walks past a dead cow. Someone, jaw set,\",gets out of the truck.,watches as someone fetches some from the scarf bag.,hurries along the forest street.,steps out at the air frisks.,rushes outside at the cops in the room.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, shrouded in smoke, walks past a dead cow.\",\"Someone, jaw set,\"\nlsmdc1046_Australia-90443,1329,Someone sits uncomfortably next to the drunk someone. The smoke,\"clears, revealing a large house.\",gets out of the house.,snaps to him as he plays the drums.,shows a close up of a bird flying through the air and sails around its perimeter.,is cast off its glow behind a base.,gold1-orig,pos,unl,unl,unl,pos,Someone sits uncomfortably next to the drunk someone.,The smoke\nlsmdc1046_Australia-90443,1324,\"The boy runs through the gate to the house, and leaps over a fence. They just\",\"miss the horse, which rears up.\",\"run back down the steps, shuffling back and forth across the street as they on their drawn.\",\"meet in another part of the school, barred pass between two people.\",separate ways to sell shoes.,stride back and forth around them then heads down the aisle.,gold0-orig,pos,unl,unl,unl,unl,\"The boy runs through the gate to the house, and leaps over a fence.\",They just\nlsmdc1046_Australia-90443,1327,Someone walks through the smoke. The boy,drops down inside the tower.,can near someone and cut out and smack himself.,\"looks up, sees someone, looks from someone to the other, and is quite populated.\",wears a green blazer showing up outside the room full of monitors.,,gold1-orig,unl,unl,unl,unl,n/a,Someone walks through the smoke.,The boy\nlsmdc1046_Australia-90443,1335,\"She stares at the Chinese man and reaches out to close someone's eyes, but a man's hand does it for her. She eyes the man, her hand\",poised near someone's face.,\"longer tearful and awkwardly sways as if to speak, laughing.\",extends across her bony fingers.,retracts under her arm - another monk pulls the ball between her fingers.,still wrapped beside him.,gold0-orig,pos,unl,unl,unl,pos,\"She stares at the Chinese man and reaches out to close someone's eyes, but a man's hand does it for her.\",\"She eyes the man, her hand\"\nlsmdc1046_Australia-90443,1325,\"Thick smoke obscures the house. As he loads, the boy\",climbs into the water tower.,takes out the rifle.,nuzzles children looking at the floor.,leaves the hedge with the tree surrounding him.,help him out of the car.,gold1-reannot,pos,unl,unl,pos,pos,Thick smoke obscures the house.,\"As he loads, the boy\"\nlsmdc1046_Australia-90443,1328,The boy drops down inside the tower. Someone,sits uncomfortably next to the drunk someone.,kicks the hammer back apart.,\"holds up a flash, red sweater.\",turns as someone finds the circus gathered in their tent.,,gold0-reannot,pos,unl,unl,pos,n/a,The boy drops down inside the tower.,Someone\nlsmdc1046_Australia-90443,1326,\"As he loads, the boy climbs into the water tower. Someone\",walks through the smoke.,leaps up a flight of steps to his feet from the student's deck.,river also works on the ruined roof.,walks up before him.,turns and faces him.,gold1-reannot,pos,unl,unl,pos,pos,\"As he loads, the boy climbs into the water tower.\",Someone\nlsmdc1046_Australia-90443,1331,\"Someone, jaw set, gets out of the truck. She\",\"stomps furiously towards the house, as someone approaches a blazing funeral fire.\",removes a pair of black leather pants.,\"smiles to him, strides through the room.\",closes the car door filming him.,musters a smile.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone, jaw set, gets out of the truck.\",She\nlsmdc1027_Les_Miserables-6286,4575,A red flag is thrown to someone. Someone,climbs onto the top of the barricade and waves the flag.,stands then reach the deck.,\"and someone gather behind the barricade for someone, knocking him down on the floor.\",watches her nightie disappear into the balcony.,disintegrates into a cloud of dust.,gold0-orig,pos,pos,pos,pos,pos,A red flag is thrown to someone.,Someone\nanetv_YNQphOFqDOA,15968,A man is seen standing inside an empty room. He,\"looks at himself in the mirror, then engages in a fight.\",starts up and goes down a slide.,puts on his mask and begins pushing them in.,runs around and then walks backwards into a room.,demonstrates this one moves and before someone watching by.,gold0-orig,pos,unl,unl,unl,unl,A man is seen standing inside an empty room.,He\nanetv_YNQphOFqDOA,17805,A person is trapped in a room. A news woman,speaks about the new movie.,is shown with unseen sharpening fighting.,is screaming while holding a hookah.,lies next to them watching them.,tends to the man.,gold1-orig,pos,unl,unl,unl,unl,A person is trapped in a room.,A news woman\nanetv_YNQphOFqDOA,15969,\"He looks at himself in the mirror, then engages in a fight. The preview\",is for a movie.,shake hands with the catch.,reflected against a casket liner which lead into a vehicle left.,\"hangs on the counter, bowing to the vampire.\",shoot against one of the tallest's heads.,gold0-orig,pos,unl,unl,unl,unl,\"He looks at himself in the mirror, then engages in a fight.\",The preview\nlsmdc0051_Men_in_black-70953,10755,Someone looks into the gallery. Most obvious in the frozen tableau of creatures,\"is a lunging, snarling beast, which has three bullet holes in its chest.\",appear on the screen.,staring up from under him.,appear in front of them.,,gold0-orig,pos,unl,unl,unl,n/a,Someone looks into the gallery.,Most obvious in the frozen tableau of creatures\nanetv__7XW-BFK_ZY,19244,A man is in a field with a dog with the words Practicamos Disc Dog on the screen. The man offers the dog the disc and he,performs a trick with it.,is right with the frisbees.,wraps it around it's neck.,puts it in him.,plays back with the dog.,gold1-orig,pos,unl,unl,unl,pos,A man is in a field with a dog with the words Practicamos Disc Dog on the screen.,The man offers the dog the disc and he\nanetv__7XW-BFK_ZY,12581,A man sits with his dog in the grass and holds out discs in his hands. The man,balances his dog on his feet then throws frisbee discs for him.,\"bounces from the edge of the hose, uses it to move right up pretending to shake the body.\",looks on the ending pair.,\"focuses his face away, wipes his face then pulls a petite out of a long hair and begins cutting the boy's hair.\",uses a leaf blower and blows the leaves away.,gold0-orig,pos,unl,unl,unl,unl,A man sits with his dog in the grass and holds out discs in his hands.,The man\nanetv__7XW-BFK_ZY,12582,The man balances his dog on his feet then throws Frisbee discs for him. The man,spins his dog and holds it in his arms.,climbs down a lane and attacks the string.,places an garland on front of a fly on a board and sticks it in his mouth.,jumps off the wall affectionately.,jumps around the dog to catch the frisbee for the dog.,gold1-orig,pos,unl,unl,unl,pos,The man balances his dog on his feet then throws Frisbee discs for him.,The man\nanetv__7XW-BFK_ZY,19245,The man offers the dog the disc and he performs a trick with it. Several people,are at the park with their dogs too and also perform.,keep hold of the leash and are also doing tricks in the water.,sit before a room that show one patiently waits for a switch.,catch the frisbee and throw it all the way back towards the man.,,gold0-orig,pos,unl,unl,pos,n/a,The man offers the dog the disc and he performs a trick with it.,Several people\nanetv__7XW-BFK_ZY,12584,A woman throws discs to her dog that jumps from her back. The woman,throws multiple discs in a row for her dog to catch.,spits the blue liquid in the sink.,\"picks on her boots, picks up her dog and ties them up.\",explains before she hits a clip back and forth.,drops it and throws it at pins.,gold0-orig,pos,unl,unl,unl,unl,A woman throws discs to her dog that jumps from her back.,The woman\nanetv__7XW-BFK_ZY,12583,The man spins his dog and holds it in his arms. A woman,throws discs to her dog that jumps from her back.,grabs a man by the scruff and spins him around while holding his back in his hand.,stands with a frisbee in his hand and another man with a hat on it.,\"plays with a dog in a room, while woman also performs hip hop kicks.\",walks past the camera and wraps her arms around him.,gold0-reannot,pos,unl,unl,pos,pos,The man spins his dog and holds it in his arms.,A woman\nanetv__7XW-BFK_ZY,12580,Different trainers throw Frisbee discs for the dogs to catch while performing tricks. A man,sits with his dog in the grass and holds out discs in his hands.,finish the second frisbee.,jumps over teens stand in a park with a man and their dogs.,runs and throws a frisbee around the dog while the dog catches the frisbee.,,gold0-reannot,pos,unl,unl,pos,n/a,Different trainers throw Frisbee discs for the dogs to catch while performing tricks.,A man\nanetv_asWvAGhlbdQ,3446,He then glides the knife along the boxes and shows off the sharpened knife to the camera. He,ends by holding the knife and smiling to the camera.,shows someone how to use tape.,removes all the excess wood and attaches it astride the wood and eating the area.,decorates the thin ribbon on him and continues to cut his pie.,\"lathers cut it up, show his workout.\",gold0-orig,pos,unl,unl,unl,unl,He then glides the knife along the boxes and shows off the sharpened knife to the camera.,He\nanetv_asWvAGhlbdQ,3445,A man is seen holding a sharp knife in his hands while the camera zooms in and the man points to two boxes. He then,glides the knife along the boxes and shows off the sharpened knife to the camera.,shows off that shoe followed with a bucket and demonstrates how to make it to the camera.,picks up two slices and puts them in a plate with the one one in.,adds vegetables and trims the length of the knife together.,picks up a log and begins with his hands again on the fire.,gold0-orig,pos,unl,unl,unl,unl,A man is seen holding a sharp knife in his hands while the camera zooms in and the man points to two boxes.,He then\nanetv_gwpQuO5DPOA,6310,He is wearing a mask and welding something. He,stops welding and starts welding the back of it.,is leaning on snowy's.,uses a rod to apply a blade across the paint.,sets base supplies in a beautiful match.,,gold0-orig,pos,unl,pos,pos,n/a,He is wearing a mask and welding something.,He\nanetv_gwpQuO5DPOA,6309,A man in a brown shirt is standing in a room. He,is wearing a mask and welding something.,is sitting on a chair in front of the camera.,is dribbling a ball and throws a hit.,begins running into a pole moving an ax the length of a pole.,is holding a guitar up behind them.,gold0-orig,pos,unl,unl,unl,unl,A man in a brown shirt is standing in a room.,He\nanetv_gwpQuO5DPOA,15377,A man is standing over a piece of large metal. the man,begins welding pieces of metal together.,adds a wet towel carefully to the excess and even it stuff in the paint.,speaks to the camera side about about climbing science.,picks up the log and throws it back down.,uses an ax to clean a piece of wood fire at an bore stump.,gold0-orig,pos,unl,unl,unl,unl,A man is standing over a piece of large metal.,the man\nanetv_gwpQuO5DPOA,15378,The man begins welding pieces of metal together. the man then,adjusts his angle and continues welding.,\"completes shaves and secures the iron in both hands, then starts welding again.\",demonstrates the jack used to volley the machine in a box.,holds a thermos where he arc lights is displayed.,pops it over the sides.,gold0-orig,pos,unl,unl,unl,unl,The man begins welding pieces of metal together.,the man then\nlsmdc0010_Frau_Ohne_Gewissen-51617,17536,At last he remembers to replace the horn. Someone,has just come out of someone 'office.,pulls off his jacket then glances up at him as he pulls away.,comes out of the kitchen.,comes off of the bank with one arm now serving from the fetal position.,is trying to steer which is caught in lightning.,gold1-orig,unl,unl,unl,unl,unl,At last he remembers to replace the horn.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51617,17537,Someone has just come out of someone 'office. He,\"walks slowly back towards the reception room entrance, then stands there looking out through the glass doors.\",\"notices and looks over, wiping up the park.\",\"is looking up at the general, the light toward the head.\",sits up in bed and dials at the phone.,poses while being at peace.,gold1-orig,pos,unl,pos,pos,pos,Someone has just come out of someone 'office.,He\nlsmdc0010_Frau_Ohne_Gewissen-51617,17535,\"The cylinder goes on revolving, but no more voice comes - - only the whir of the needle on the empty record. At last he\",remembers to replace the horn.,hears voices and looks.,looks back at them.,\"darts through a window, revealing someone watching periodically on its own avenue.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The cylinder goes on revolving, but no more voice comes - - only the whir of the needle on the empty record.\",At last he\nlsmdc0010_Frau_Ohne_Gewissen-51617,17538,\"He moves as if to go out, then stops rigidly as his face lights up with excitement of a sudden idea. He\",turns quickly and walks on to his own office and enters.,\"truly anger he sees the people in the corridor leave him as if they try to hit someone, who he keeps them reacting to\",reaches inside his pocket and carefully stack up books.,\"drags her away as he just stands there, waiting to let go of it.\",crashes into them and makes his way down the street.,gold0-orig,pos,unl,unl,unl,unl,\"He moves as if to go out, then stops rigidly as his face lights up with excitement of a sudden idea.\",He\nlsmdc0010_Frau_Ohne_Gewissen-51617,17539,He turns quickly and walks on to his own office and enters. Someone,\"walks across to his desk, lifts the telephone and dials a number.\",take a slow flip.,runs up on him and follows him closely by himself.,\"scrutinizes his photo of others, peeking in over his son.\",\"steps in, enters his office and presents his cane.\",gold0-orig,pos,unl,unl,unl,pos,He turns quickly and walks on to his own office and enters.,Someone\nlsmdc0026_The_Big_Fish-62531,17662,He sits up to find. He,\"smiles, then pulls his knees up, making room for her in the tub.\",clutches his finger into his mouth and presses together on the eager line.,\"rests it on someone's shoulder, then goes inside.\",\"crouches once more, and pulls a lantern across the goat.\",,gold1-orig,pos,unl,unl,unl,n/a,He sits up to find.,He\nlsmdc0026_The_Big_Fish-62531,17664,\"Her dress is soaked, but she does n't mind. When they separate, she\",has tears hanging in her eyes.,takes it to her hip and lights it.,does it the other way again.,finds someone at the tutor.,,gold0-orig,pos,unl,unl,unl,n/a,\"Her dress is soaked, but she does n't mind.\",\"When they separate, she\"\nlsmdc0026_The_Big_Fish-62531,17665,\"Perched awkwardly on a canoe, someone's made it through another file cabinet. He\",\"goes through the folders page by page, but usually ends up tossing the whole thing in the trash.\",thrusts a green and blue hard.,counts it with a fishing hook.,gives the other a curt look.,watches someone run across the open country gate.,gold0-orig,pos,unl,unl,unl,pos,\"Perched awkwardly on a canoe, someone's made it through another file cabinet.\",He\nlsmdc0026_The_Big_Fish-62531,17663,\"He smiles, then pulls his knees up, making room for her in the tub. Someone\",\"steps out of her sandals and climbs into the tub, facing him.\",pretends to kennel a zebra.,gives him a bow as well.,backs out of a stall and crawls toward her.,opens the bedroom door.,gold0-orig,pos,unl,unl,unl,unl,\"He smiles, then pulls his knees up, making room for her in the tub.\",Someone\nlsmdc0026_The_Big_Fish-62531,17658,Norther leans in the driver's side window. Someone,\"looks over at norther, the reality sinking in.\",takes a seat and sits on top of someone.,stands in front of the gathering school.,\"a hundred, command plates stands in the back of his hustling with another kind of union soldiers.\",arrives in the hotel courtyard just as someone.,gold0-orig,pos,unl,unl,unl,unl,Norther leans in the driver's side window.,Someone\nlsmdc0026_The_Big_Fish-62531,17666,\"He goes through the folders page by page, but usually ends up tossing the whole thing in the trash. He\",is about to toss a file when he stops.,is nothing he's not looking at.,hangs at the bottom and can wear it for some minutes.,watch also more photos of the attack laying down and scanning the screen one more time.,,gold0-orig,pos,unl,unl,unl,n/a,\"He goes through the folders page by page, but usually ends up tossing the whole thing in the trash.\",He\nlsmdc0026_The_Big_Fish-62531,17659,\"Someone looks over at Norther, the reality sinking in. The two men\",wave at each other as someone drives off.,share uneasy looks as he speaks and sings.,bow their heads and stare.,\"continue to sit opposite each other, unnerving her.\",give himself a casual sneer.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone looks over at Norther, the reality sinking in.\",The two men\nlsmdc0026_The_Big_Fish-62531,17661,\"We reveal the Bloom house, the nicest one in the neighborhood. Bubbles\",\"rise from his nose for a few beats, then stop.\",and someone approach the office building.,'s words douse the acolytes.,\", someone sits on the stove, staring back and forth in the baby's seat.\",\"up, someone spots the teens passing a window to the opposite side of the building.\",gold0-reannot,unl,unl,unl,unl,unl,\"We reveal the Bloom house, the nicest one in the neighborhood.\",Bubbles\nlsmdc0026_The_Big_Fish-62531,17660,\"At the last moment, Norther calls out. Someone\",is watering the garden.,\"dabs the bouquet, kissing her hand.\",points the van in front of him.,throws a rag on the floor.,,gold0-reannot,pos,unl,unl,pos,n/a,\"At the last moment, Norther calls out.\",Someone\nlsmdc0033_Amadeus-67082,5826,Someone and her son alight with other passengers. Postillions,attend to the horses.,gather at her aid.,studies her to meet someone without emotion.,rushes over to the lifeboat and holds the train.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and her son alight with other passengers.,Postillions\nlsmdc0033_Amadeus-67082,5827,Postillions attend to the horses. She,takes her boy's hand.,looks up at the collapsible.,knocks a matching swatter from a shelf and runs for it.,gives him a lobster.,hides behind a bush.,gold0-reannot,pos,unl,unl,unl,unl,Postillions attend to the horses.,She\nanetv_RVZprJDJz1U,733,The chemical is captured displayed on the sit of the wooden chair. The person,sprays chemical on a cotton pads and whips the wooden chair.,places the wand along on a circular metal top across the tile.,holds all the window defensive tool to scrape storage things out.,puts on a coat shine and crosses to a wax board next to the wax.,is bathed in the fire when it beats along the left to hit the liquid.,gold1-orig,pos,unl,unl,unl,pos,The chemical is captured displayed on the sit of the wooden chair.,The person\nanetv_RVZprJDJz1U,724,The sponsors and description of a chemical product is displayed as an introduction. Water from a garden hose,is sprayed on a wooden chair.,displayed around the canvas of another cutting being set indoors.,\"appears, as a person prepares to take hot water by a hose.\",is placed on the steps of a washing machine in a narrow alley.,is shown followed by pictures of clips of different people.,gold0-orig,pos,unl,unl,unl,pos,The sponsors and description of a chemical product is displayed as an introduction.,Water from a garden hose\nanetv_RVZprJDJz1U,729,The chemical is placed at the sit of the wooden chair. The person,scrubs the wooden chair with a brush.,put a coating down on the wall.,is then painting the black of the red.,adjusts his own machine on the floor.,shows a coiled substance to the roaring machine then demonstrates how to use it.,gold0-orig,pos,unl,unl,unl,unl,The chemical is placed at the sit of the wooden chair.,The person\nanetv_RVZprJDJz1U,730,The person scrubs the wooden chair with a brush. The person,shows the brush bristles now browned.,cleans the windows on a pile of carpet in the kitchen.,washes the orange and generator on the sink.,steps in with the brushed and then the camera legs again.,,gold0-orig,pos,unl,unl,pos,n/a,The person scrubs the wooden chair with a brush.,The person\nanetv_RVZprJDJz1U,734,The person sprays chemical on a cotton pads and whips the wooden chair. The chair,is left to dry.,is replaced by the text.,pans to reveal the top of the pile of blackjack envelops with tools and two.,wears a pair of black boots and starts ice cream laying on a dresser.,\"cuts the woman's briefcase, the metal and the polishing.\",gold0-orig,pos,unl,unl,unl,unl,The person sprays chemical on a cotton pads and whips the wooden chair.,The chair\nanetv_RVZprJDJz1U,731,The person shows the brush bristles now browned. The person,rinses the wooden chair with the garden hose.,puts the tool in the end to make the dry.,talks some more and next to the end.,squeezes the back juices by a square surface.,,gold1-orig,pos,unl,unl,unl,n/a,The person shows the brush bristles now browned.,The person\nanetv_RVZprJDJz1U,727,The person rubs his hand on the wooden chair. The person,reveals their palm is covered with dirt from the chair.,uses a knife on the piece of debris.,covers the large stable with his foot.,moves the shoe over and rubs the back of his head.,,gold0-orig,pos,unl,unl,pos,n/a,The person rubs his hand on the wooden chair.,The person\nanetv_RVZprJDJz1U,726,The chemical product in a white bottle is sprayed on the wooden chair. The person,rubs his hand on the wooden chair.,projects the individual's nails and then clean iron on the paintbrush.,lays the cloth onto the clean car and dries it with a rag.,individual puts paper and legs on a metal table.,adds detergent and soap and soaps the gliding water.,gold1-orig,pos,unl,unl,unl,unl,The chemical product in a white bottle is sprayed on the wooden chair.,The person\nanetv_RVZprJDJz1U,725,Water from a garden hose is sprayed on a wooden chair. The chemical product in a white bottle,is sprayed on the wooden chair.,smiles at the aloud middle - millennium evidence.,stands and screws up to the bottom and squeezes at a window handle.,is visible and show how to wash it.,\"is covered by a thin, cut woman.\",gold0-orig,pos,unl,unl,unl,unl,Water from a garden hose is sprayed on a wooden chair.,The chemical product in a white bottle\nanetv_RVZprJDJz1U,7133,The person holds up a product and wipes their hands on the dirty chair. He,rubs down the chair with a rag as well as with a hose.,then puts the rag back in and sprays her rinse.,wipes down the shots and begins shoveling snow and putting on the shoes.,\"is smeared as the lady talks to the camera again, wet again.\",sprays down the painting with a brush.,gold1-reannot,pos,unl,unl,unl,pos,The person holds up a product and wipes their hands on the dirty chair.,He\nanetv_RVZprJDJz1U,732,The person rinses the wooden chair with the garden hose. The chemical,is captured displayed on the sit of the wooden chair.,is able in order in minutes.,starts to turn him off.,uses the vacuum to blow the carpet.,of the curling dresser is shown.,gold1-reannot,unl,unl,unl,unl,unl,The person rinses the wooden chair with the garden hose.,The chemical\nanetv_7pcnWE7jpQY,9705,The first few attempts are good. The final attempt,is not ever achieved.,goes down some five seconds.,is at least ten ladies to raise their medals so happy to be over.,is shown and then a cup.,,gold0-orig,pos,unl,unl,pos,n/a,The first few attempts are good.,The final attempt\nlsmdc1027_Les_Miserables-6067,5069,Her hand is placed in a man's. He,is wearing a captain's hat.,squints up at her.,drives it with her.,rises to land on top of her.,lets go of the man and walks away.,gold1-reannot,pos,unl,unl,unl,unl,Her hand is placed in a man's.,He\nanetv_GRGBMJG1Koc,4724,A man is seen kneeling over some equipment in the sand. More kites,\"fly as people watch the varied styles of kite, including one kite shaped like a dog.\",are seen blowing around the kite as well as jumping down and down.,are shown moving around on the bench as well as pulling them along.,are shown for him all before the camera pans out to show the hosts speaking.,are seen in the water.,gold0-orig,pos,unl,unl,unl,unl,A man is seen kneeling over some equipment in the sand.,More kites\nanetv_GRGBMJG1Koc,4723,\"Several kites fly in the air, in a bright blue sky, over a sandy area. A man\",is seen kneeling over some equipment in the sand.,is shown floating in a sand pit with him attached by his surfboard.,is talking to the camera outside a forest.,is seen in a shop with a band waiting for him.,throws sand outdoors with a big wave in a pool.,gold0-orig,pos,unl,unl,pos,pos,\"Several kites fly in the air, in a bright blue sky, over a sandy area.\",A man\nanetv_GRGBMJG1Koc,4722,Several multi colored and shaped kites fly high in the air above a beach setting interspersed with images of people preparing to fly kites and onlookers. Several kites,\"fly in the air, in a bright blue sky, over a sandy area.\",\"are shown as various times other kid is seen swimming around a large building, swimming fast by the person doing flips.\",are shown in a unique room.,\"fly in the sky including other cars and the mountains, including a man and case of plants.\",,gold0-orig,pos,unl,unl,pos,n/a,Several multi colored and shaped kites fly high in the air above a beach setting interspersed with images of people preparing to fly kites and onlookers.,Several kites\nanetv_hxQhQsl-N1k,1525,A guy is half kneeing on a gym floor. The guy,starts pressing a weight in one hand.,walks up to the floor and sits on the flooring ceiling.,bends to grab the dog and turns the pole off.,is sitting down hard.,shakes his head and hands in taut motion.,gold1-orig,pos,unl,unl,pos,pos,A guy is half kneeing on a gym floor.,The guy\nanetv_hxQhQsl-N1k,1524,The credits of the clip are shown. A guy,is half kneeing on a gym floor.,talks about a paintball paintball gun.,gives surprised balloons to crouch repeatedly with one pole in a red background.,takes turns talking to the camera as they make ice cream.,holds a javelin over his shoulder.,gold1-reannot,pos,unl,unl,unl,pos,The credits of the clip are shown.,A guy\nlsmdc3018_CINDERELLA_MAN-8296,9110,Someone hits someone with left and right hooks followed by an uppercut. Someone,reels then resumes his stance.,floats off with someone waving his hand towards people.,pushes something into the shaft.,steps inside and stands by his father's bed.,,gold0-orig,pos,unl,unl,unl,n/a,Someone hits someone with left and right hooks followed by an uppercut.,Someone\nanetv_FlLDPameKGM,8159,She sits on the edge of her bed. She,uses a brush to brush her long hair.,\"carries him across the room, shutting the door behind him.\",proceeds over and folds her arms in front of a fireplace.,watches along with sting.,covers her face with her hands.,gold0-orig,pos,unl,unl,unl,pos,She sits on the edge of her bed.,She\nanetv_FlLDPameKGM,8158,A woman is wearing a green robe. She,sits on the edge of her bed.,is holding a ball at the string.,walks on the stage to get her hair pierced.,is brushing her hair and hair.,starts playing the violin.,gold0-orig,pos,unl,unl,unl,unl,A woman is wearing a green robe.,She\nanetv_FlLDPameKGM,9455,She is using a large brush to brush her hair. She,\"looks up, continuing to brush.\",uses it to brush the hair as the camera.,starts brushing the hair of the tooth comb with a comb herald.,sets her down and brushes her hair.,continues brushing the horse while standing on the patio.,gold0-orig,pos,unl,unl,pos,pos,She is using a large brush to brush her hair.,She\nanetv_FlLDPameKGM,9454,\"A woman is wearing a green robe, seated on a bed. She\",is using a large brush to brush her hair.,puts some of her foot into a piece and lays it down on the couch.,stuffs a dress in a belly area.,starts holding a violin and fills it with her.,is sitting on a bed at the end.,gold0-reannot,pos,unl,unl,unl,pos,\"A woman is wearing a green robe, seated on a bed.\",She\nlsmdc3014_CAPTAIN_AMERICA-5733,3325,\"While someone and someone work a radio, someone and someone stand under a cable stretching down to distant train tracks. Someone\",puts on his helmet.,leans forward and eyes the railing jutting out.,laces her sleeve down with a razor.,lassos a shell - tinted robot.,wraps the chain around someone's neck.,gold0-orig,pos,unl,unl,unl,unl,\"While someone and someone work a radio, someone and someone stand under a cable stretching down to distant train tracks.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3318,\"Someone looks up at someone and salutes him. In the strategy room, someone\",removes another flag from a wall map.,\"has stepped out of a chair, and the middle haired guard gets to his feet.\",puts his cell phone into his back pocket and wanders back to the office.,comes out beside him.,\"holds his phone out towards someone, who is also having a conversation with someone.\",gold0-orig,pos,unl,unl,unl,pos,Someone looks up at someone and salutes him.,\"In the strategy room, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3317,\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone shoots the guard first. Someone\",looks up at someone and salutes him.,talks to someone as he walks off.,averts his aim as he grabs the sword out of the hole.,trips and falls from the barricade.,grabs someone's arms pulls him into the big office.,gold1-orig,pos,unl,unl,pos,pos,\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone shoots the guard first.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3312,\"Later, someone and his team run through the forest while bombs explode around them. Someone\",signals as a hydra tank approaches on a forest road.,jumps the quilt onto them and carries them on long poles.,\"is being driven, pushing at more people around them.\",\"hurry after him, then the shape jumps into the dragon tower.\",\"runs a goal, black smoke billowing from the outside of a house.\",gold0-orig,pos,unl,unl,unl,unl,\"Later, someone and his team run through the forest while bombs explode around them.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3303,\"Later, wearing a new Captain America uniform and mask, someone picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands. Someone\",\"hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons.\",is tattooing the cop's neck.,takes the pole beneath a map and sets it down on the ground beside him.,helps someone onto the bed and embraces her squarely.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, wearing a new Captain America uniform and mask, someone picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3336,Someone watches the action on a monitor. Someone,watches the monitor as someone and someone fight the hydra soldiers.,shoots him in the gut and the boat crashes hard over him.,searches the bag bag.,peers over his shoulder and people stare at the tiger.,,gold0-orig,pos,unl,unl,unl,n/a,Someone watches the action on a monitor.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3331,\"One by one, they let go of the handles and land on top of the train. Someone and someone\",follow someone over several train cars to a ladder.,are in a four - by - four.,stand in their leaves as the door swings open.,\"pick up large rocks towards the waves, and go walking in the water.\",carry the alsatian to the island.,gold0-orig,pos,unl,unl,unl,unl,\"One by one, they let go of the handles and land on top of the train.\",Someone and someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3335,\"Someone glances back at someone, then moves across a hallway into a connecting compartment. Someone\",watches the action on a monitor.,pushes 20 feet out of view.,follows someone up as someone lets someone come to his apartment in the dim hallway.,smokes a cigar as the guests clap and clap.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone glances back at someone, then moves across a hallway into a connecting compartment.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3302,\"Someone pulls a piece of paper from his pocket and hands it to him. Later, wearing a new Captain America uniform and mask, someone\",picks up the round shield painted with a white star inside a blue circle surrounded by red and white bands.,sees his coolly lighting the ax.,approaches someone's house.,faces the chairman who stares at someone.,steps out of the raft.,gold0-orig,pos,unl,pos,pos,pos,Someone pulls a piece of paper from his pocket and hands it to him.,\"Later, wearing a new Captain America uniform and mask, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3313,Someone signals as a Hydra tank approaches on a forest road. Someone,\"runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame.\",wrestles off his cattle chain.,helps someone onto the ground.,speeds towards another patch in her shed.,\"glances around it, then leaves.\",gold0-orig,pos,unl,pos,pos,pos,Someone signals as a Hydra tank approaches on a forest road.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3300,She picks up a handgun and fires at the shield. She,lowers the gun and smiles.,\"kicks both of the vehicles forward, narrowly missing the ball.\",down her stairway as someone glares in her windshield.,\"shoots through the window, flying out of the roof.\",,gold1-orig,pos,unl,unl,unl,n/a,She picks up a handgun and fires at the shield.,She\nlsmdc3014_CAPTAIN_AMERICA-5733,3322,\"Later, outside the ruins of a Hydra factory, someone scowls at someone. Hydra guards\",bring over a dark - haired factory manager.,stand on either side of the research garage.,surround the building as someone walks up to a train gate.,\"scatter, looking down into the growing darkness.\",,gold0-orig,pos,unl,pos,pos,n/a,\"Later, outside the ruins of a Hydra factory, someone scowls at someone.\",Hydra guards\nlsmdc3014_CAPTAIN_AMERICA-5733,3309,\"In a snowy forest, someone walks ahead of his men. He\",glances back and motions for them to follow.,heads the zombie someone kicks someone with a crowbar.,\"hoists herself up after him, knocking him off the head and tackles him barrel to the rushing current.\",\"kisses someone's neck, holding a lantern.\",looks on someone.,gold0-orig,pos,unl,unl,unl,unl,\"In a snowy forest, someone walks ahead of his men.\",He\nlsmdc3014_CAPTAIN_AMERICA-5733,3308,\"In the strategy room, an assistant uses a long stick to remove a flag from the war map and pass it to someone. In a snowy forest, someone\",walks ahead of his men.,guzzling canoes on a small island at a full of town.,holds someone draws an impatient flag.,glances back as an figures aim a rifle at him.,takes out a map basket fondly and shakes a hand.,gold1-orig,pos,unl,unl,pos,pos,\"In the strategy room, an assistant uses a long stick to remove a flag from the war map and pass it to someone.\",\"In a snowy forest, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3310,\"Someone moves ahead into a small clearing, then turns and hurls the shield into a treetop. The shield\",strikes a hidden hydra soldier.,explode around nearby as someone leaps from the room.,glows on someone's face.,\"circles the man on the road, then lands in a lifeboat beside the hull.\",yanks up to bits and bits of debris rains from the ground.,gold0-orig,pos,unl,unl,unl,pos,\"Someone moves ahead into a small clearing, then turns and hurls the shield into a treetop.\",The shield\nlsmdc3014_CAPTAIN_AMERICA-5733,3305,\"Someone smacks several Hydra soldiers with the shield. As his fellow soldiers run outside, someone\",flies out of the exploding building on a motorcycle.,\"jumps the armored someone, who passes through the window.\",readies his fingers and enthusiastically blows the whistle.,walks past someone and tosses up the rope.,rushes through the gate of the great bugle.,gold1-orig,pos,unl,unl,unl,unl,Someone smacks several Hydra soldiers with the shield.,\"As his fellow soldiers run outside, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3307,\"Approaching in his long, black convertible, someone stops and grimaces as he watches the Hydra factory burn. In the strategy room, an assistant\",uses a long stick to remove a flag from the war map and pass it to someone.,\"pulls behind the news conference, and someone throws at his dead criminal.\",pulls up a bird with a straw.,helps the soldier through a donut tank.,parades like a bird's device.,gold0-orig,pos,unl,unl,unl,unl,\"Approaching in his long, black convertible, someone stops and grimaces as he watches the Hydra factory burn.\",\"In the strategy room, an assistant\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3315,\"In a small movie theater, someone sits and watches a film of someone and his men riding in the back of a truck. Studying a map, someone\",holds a compass with a picture of her inside the lid.,spots an arch above his name's letters.,faces his father someone.,works a fresh turn.,,gold0-orig,pos,unl,unl,unl,n/a,\"In a small movie theater, someone sits and watches a film of someone and his men riding in the back of a truck.\",\"Studying a map, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3329,Someone and someone grab handles and slide down the cable. They,glide over the train as it speeds beneath them along the snow - covered track.,stop at the cinema entrance of an office building.,climb in the wall and trying to keep control in themselves.,walk away from the drop.,hold someone in mid - air.,gold1-orig,pos,unl,unl,unl,pos,Someone and someone grab handles and slide down the cable.,They\nlsmdc3014_CAPTAIN_AMERICA-5733,3323,Hydra guards bring over a dark - haired factory manager. Someone,points a blaster gun at the man.,emerges from a restroom.,modest building pipes filled.,\"narrows her eyes, then walks away.\",takes a credit card from the general's desk.,gold1-orig,pos,unl,unl,unl,unl,Hydra guards bring over a dark - haired factory manager.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3316,\"Studying a map, someone holds a compass with a picture of her inside the lid. Outside another destroyed factory, a Hydra guard aims a gun at someone but someone\",shoots the guard first.,aims the she gave him.,speeds toward a number - and aims at someone.,sprints out of the street.,shoots out of the hole.,gold0-orig,pos,unl,unl,pos,pos,\"Studying a map, someone holds a compass with a picture of her inside the lid.\",\"Outside another destroyed factory, a Hydra guard aims a gun at someone but someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3321,Someone pulls out the masked driver and hurls him through the air. Someone,jumps off as it explodes.,runs up the street to the quarry.,lifts his wand over his head.,shoots him a look.,has her gun on his shoulder.,gold0-orig,pos,unl,unl,pos,pos,Someone pulls out the masked driver and hurls him through the air.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3334,Someone follows someone as he moves through the empty compartment. Someone,\"glances back at someone, then moves across a hallway into a connecting compartment.\",slips him into his aunt's mother's quarters.,\"notices someone half - framed photo of an old woman standing in his corner, watching her.\",\"lowers his wand in front of him, watching blood from his nostrils.\",takes refuge beside someone sitting on the wearily bed and stands on.,gold0-orig,pos,unl,unl,unl,unl,Someone follows someone as he moves through the empty compartment.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3333,Someone and someone climb down the ladder and enter a compartment while someone stands guard atop the train. Someone,follows someone as he moves through the empty compartment.,\"steps up, adjusts his helmet, and stares at the armored trainers.\",flips to the passenger side of the ship and throws two boards into the water underneath.,pushes through a door dressed in fairy uniform.,\"lifts the wine glass in a paper cup, drinks, and turns to someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone and someone climb down the ladder and enter a compartment while someone stands guard atop the train.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3319,\"In the strategy room, someone removes another flag from a wall map. Outside a Hydra facility, someone\",leaps on to the top of a large armored tank and slices the hatch open with his shield.,\"sleeps a few paces the airport, as people stand in place in his indoor cavity.\",sets someone's plane down on someone's deck.,\", someone, writes in his lab.\",waves a string of cash on his backpack.,gold1-orig,pos,unl,unl,unl,pos,\"In the strategy room, someone removes another flag from a wall map.\",\"Outside a Hydra facility, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3301,She lowers the gun and smiles. Someone,eyes someone icily as she walks out.,carries off as she pulls up on a city street.,grabs her jacket and puts it on.,faces the old guy then steps forward while motioning that someone can't hold him.,,gold0-orig,pos,unl,pos,pos,n/a,She lowers the gun and smiles.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3332,Someone and someone follow someone over several train cars to a ladder. Someone and someone,climb down the ladder and enter a compartment while someone stands guard atop the train.,disembark from the truck and into the vault and cooper landing in serving a window.,step out of the mechanical bodies onto construction paper.,peer between the place making wands.,lean against the wall as he reads the signature.,gold0-orig,pos,unl,unl,unl,pos,Someone and someone follow someone over several train cars to a ladder.,Someone and someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3320,\"Outside a Hydra facility, someone leaps on to the top of a large armored tank and slices the hatch open with his shield. Someone\",pulls out the masked driver and hurls him through the air.,shoves down the thread.,\"swerves from his grasp and whacks it in the back of his head, then runs.\",\"shoots him, wide - eyed.\",moves through the gumballs.,gold0-orig,pos,unl,unl,unl,unl,\"Outside a Hydra facility, someone leaps on to the top of a large armored tank and slices the hatch open with his shield.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3328,Someone slides down the cable toward the tracks. Someone and someone,grab handles and slide down the cable.,pull on the ship's brake.,run through double doors and into the allowed ship chamber.,start to leave again.,look around as her authorities approach.,gold1-orig,pos,unl,unl,unl,pos,Someone slides down the cable toward the tracks.,Someone and someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3330,\"They glide over the train as it speeds beneath them along the snow - covered track. One by one, they\",let go of the handles and land on top of the train.,turn down the misty river.,ride with someone out of town.,land in the dirt power room.,,gold0-orig,pos,unl,unl,unl,n/a,They glide over the train as it speeds beneath them along the snow - covered track.,\"One by one, they\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3314,\"Someone runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame. Someone\",stands and plugs his ears as the tank rolls on.,soars over the equipment tunnel coming in one out.,leaps down the track - punched then stuck it in his rear pocket.,gets up to find a doll - arranged leather hanging out on a bedside table.,zips up his headphones and sidesteps and smashes multiple pins on the door.,gold0-orig,pos,unl,unl,unl,unl,\"Someone runs onto the road, rolls underneath the armored vehicle, and places a detonator on its frame.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3327,Someone grabs a handle attached to the cable. Someone,slides down the cable toward the tracks.,tries hard to get it back safely.,flies over while someone hands him the hat a few feet back.,struggles to open his arms in amazement.,,gold0-orig,pos,unl,unl,unl,n/a,Someone grabs a handle attached to the cable.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3311,\"The shield strikes a hidden Hydra soldier. Later, someone and his team\",run through the forest while bombs explode around them.,meet backstage at a luxurious town.,enter through a pair of darkly decorated doors to a door in their theater living room.,arrive at the base of a wall.,,gold0-orig,pos,unl,unl,pos,n/a,The shield strikes a hidden Hydra soldier.,\"Later, someone and his team\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3324,\"Someone points a blaster gun at the man. While someone and someone work a radio, someone and someone\",stand under a cable stretching down to distant train tracks.,sit in their arms.,confer with ropes o. s..,push on both feet.,arrive at the mansion.,gold1-reannot,pos,unl,unl,unl,pos,Someone points a blaster gun at the man.,\"While someone and someone work a radio, someone and someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3337,\"Someone watches the monitor as someone and someone fight the Hydra soldiers. In his compartment, someone\",leans out from behind the crates and returns fire with a pistol.,quickly releases the cruiser.,sees someone's blood form from a dark club.,carries the pack and carries him out of the course.,pushes a putty boot toward someone's face.,gold0-reannot,pos,unl,unl,unl,pos,Someone watches the monitor as someone and someone fight the Hydra soldiers.,\"In his compartment, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5733,3326,\"With the binoculars, Falsworth watches a train speed across a distant trestle. Someone\",grabs a handle attached to the cable.,sets up a pair of binoculars.,awakens and shakes the boy's hand.,spots someone round his privates.,,gold1-reannot,pos,unl,unl,unl,n/a,\"With the binoculars, Falsworth watches a train speed across a distant trestle.\",Someone\nlsmdc3014_CAPTAIN_AMERICA-5733,3304,\"Someone hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons. Someone\",smacks several hydra soldiers with the shield.,watches to bungee duel.,takes quickly out of ammo.,whirls away his wrist.,sees someone jogging at the roadside.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone hold the shield in front of himself as he and his squad members barge into a factory, firing their weapons.\",Someone\nlsmdc0004_Charade-47439,15128,As someone hauls off and kicks someone full in the shin. He,stiffens as the pain registers.,smiles and steps to a nearby cabinet and starts to take it.,poles hang over the gate toward someone.,grabs someone's collar and throws him down at the head of the bed.,,gold1-orig,pos,unl,unl,unl,n/a,As someone hauls off and kicks someone full in the shin.,He\nlsmdc0004_Charade-47439,15130,\"Someone stares at him for a moment. Slowly, his eyes open and tears stream from them,\",rolling down his cheeks.,tearing through someone's necklace.,parted with a flow of letters.,causing him to slap at the table.,gasping for patience over the harsh stone.,gold0-orig,pos,unl,unl,unl,unl,Someone stares at him for a moment.,\"Slowly, his eyes open and tears stream from them,\"\nlsmdc0004_Charade-47439,15131,\"Slowly, his eyes open and tears stream from them, rolling down his cheeks. He\",speaks while holding the orange.,\"stumbles, leaving someone sprawling astride a small circle of doom.\",ties him up and arms around a kid.,\"bends forward, avoiding the vines.\",moves his left hand up and down resting a hand on it.,gold1-orig,pos,unl,unl,pos,pos,\"Slowly, his eyes open and tears stream from them, rolling down his cheeks.\",He\nanetv_LrwBGQ9B0Vg,1267,A long yellow fish passes the camera. Scuba divers,gather on a boat as a man speaks.,fly into the sky before taking another.,prepare the swimming pool and sits in front of the people.,swim out of a swimming pool at a diving board and swimming through it.,,gold0-orig,pos,unl,unl,unl,n/a,A long yellow fish passes the camera.,Scuba divers\nanetv_LrwBGQ9B0Vg,1268,Scuba divers gather on a boat as a man speaks. We,see several fish and a shark.,raise their boats and pass from the water to a river on the beach.,are canoeing in snowy lake.,see the pirate boat looking in the water.,see a christmas tree.,gold0-orig,pos,unl,unl,unl,unl,Scuba divers gather on a boat as a man speaks.,We\nanetv_LrwBGQ9B0Vg,1269,We see several fish and a shark. The scuba divers,\"dive, looking at the fish and waving at the camera.\",\"are shown swimming up, then we see a lady face.\",go underwater and go into the water.,swim and swim in a swimming pool behind the water.,are swimming underwater as the boy talks.,gold0-orig,pos,unl,unl,unl,unl,We see several fish and a shark.,The scuba divers\nlsmdc1055_Marley_and_me-96535,5880,He sits with a blank expression. People,sit glumly side by side at the table as someone goes and sees to the baby.,stroll in her room.,lifts over an electronic device.,peers in on someone.,still run down the stairs.,gold1-reannot,unl,unl,unl,unl,unl,He sits with a blank expression.,People\nanetv_E9HbfcT1ZWM,15700,A camera pans around a large view and leads into a woman climbing on a rope an moving across. Several people,are shown walking on the wire while also speaking to the camera and attempting many tricks.,are seen holding onto poles as well as speaking to the camera while others riding around.,are seen riding on a track coach while people watch on the sides.,are seen walking into a section and grabbing ropes from a board as well as a person standing behind.,jump up jumping up in the air and show more clips of different people singing.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a large view and leads into a woman climbing on a rope an moving across.,Several people\nanetv_E9HbfcT1ZWM,2953,A man speaks to the camera and shows several clips of people walking on rope across a cliff. He,continues speaking as more people walk and bounce up on the rope.,takes out the people with a camera looking up under the equipment.,men begin to speak and speak into the camera and lead into them climbing a tree in a forest.,speaks to the camera and pointing to the camera pointing to some materials.,,gold0-orig,pos,unl,unl,pos,n/a,A man speaks to the camera and shows several clips of people walking on rope across a cliff.,He\nanetv_E9HbfcT1ZWM,2952,A camera pans all around landscapes and leads into a woman climbing onto a rope. A man,speaks to the camera and shows several clips of people walking on rope across a cliff.,climbs into a tube and jumps into a pit on his shoulders with others riding behind him.,is seen jumping off a railing and performing several flips while moving to a man and jumping around him.,then up the slack and leads into several clips of people in a boat as well as walking around one another.,is then seen speaking to the camera as well as speaking to the camera and showing off a machine.,gold1-orig,pos,unl,unl,unl,pos,A camera pans all around landscapes and leads into a woman climbing onto a rope.,A man\nanetv_O0KUnuhLwj0,9747,\"He shows a lighter, and lights a cigarette. He then\",sits and smokes it quietly.,puts his shirt under a coat and smokes.,lays a few cars on the ground and takes the card.,blows points onto the smoke jacket.,touches the left candle on in the room.,gold0-orig,pos,unl,unl,unl,unl,\"He shows a lighter, and lights a cigarette.\",He then\nanetv_O0KUnuhLwj0,16263,A sitting man holds a pack of cigarettes and a lighter to the camera. The man,puts a cigarette in his mouth and smokes the cigarette fast.,continues petting the dogs by performing shot with a cup and smokes.,smokes around the hookah and talks to the camera.,puts the cigarette in the ashtray as people talks.,,gold1-orig,pos,unl,unl,pos,n/a,A sitting man holds a pack of cigarettes and a lighter to the camera.,The man\nanetv_O0KUnuhLwj0,16265,The man removes the cigarette and puts it back. The man,shows the camera the end of the cigarette and smokes the rest.,cuts to the man with the clippers screws out by blowing smoke and speaking to the camera.,walks behind the man blows and leaves.,adds the pieces to this and spreads the pieces.,takes out a red hookah.,gold1-orig,pos,unl,unl,unl,unl,The man removes the cigarette and puts it back.,The man\nanetv_O0KUnuhLwj0,16266,The man shows the camera the end of the cigarette and smokes the rest. The man,removes the cigarette and shows it to the camera.,takes on the harmonica and takes a drag with a liquid to bed.,turns the camera off and shows clips of him getting out.,prepares his cigarette from the hookah while the camera zooms in on his face.,continues blowing the smoke as the camera pans to look around the room.,gold1-orig,pos,unl,pos,pos,pos,The man shows the camera the end of the cigarette and smokes the rest.,The man\nanetv_O0KUnuhLwj0,9746,A man is talking while holding a pack of cigarettes. He,\"shows a lighter, and lights a cigarette.\",is holding a table close to case.,uses a hookah to blows out smoke.,\"sets the billiard apart, then tells how it would be.\",begins talking about viewers thing.,gold0-orig,pos,unl,unl,unl,pos,A man is talking while holding a pack of cigarettes.,He\nanetv_O0KUnuhLwj0,16264,The man puts a cigarette in his mouth and smokes the cigarette fast. The man,removes the cigarette and puts it back.,then blows smoking and holds his hands up.,stops as he talks.,stops welding and starts talking again.,begins to blow the smoke out the window.,gold1-orig,pos,unl,unl,unl,pos,The man puts a cigarette in his mouth and smokes the cigarette fast.,The man\nanetv_9JMbahMzBjk,14823,Their father lights the christmas tree while his daughter pulls his shirt. He,continues decorating the tree in front of them.,\"steps over to someone who sleeps in the lawn, dumping his cereal.\",\"is sitting on the lap, eating the ice cream cone with a plastic towel.\",\"stirs again, his hand still pinned to a wire bun.\",\"looks back at his brother, narrows his eyes.\",gold0-orig,pos,unl,unl,pos,pos,Their father lights the christmas tree while his daughter pulls his shirt.,He\nanetv_9JMbahMzBjk,14822,A group of kids are dancing around a living room. Their father,lights the christmas tree while his daughter pulls his shirt.,\"gets up her batons and sticks her hands in it, then they continue doing dances and jumping on the floor.\",\"is standing around in bed, tapping the floor in a rhythm.\",picks up a young girl in regions trousers and starts painting her leg.,does an exercise routine on the boys bars.,gold0-orig,pos,unl,unl,unl,unl,A group of kids are dancing around a living room.,Their father\nanetv_9JMbahMzBjk,2243,The man interacts with the girls while a little one tugs on his shirt and the others continue bounding and singing. Eventually the man and little girl,step out of frame.,manage to tag lift.,begin being interviewed by a man.,win the fight in a chance squat.,are in an inflatable carrier in a boat helping a rope attached to another boat.,gold0-orig,pos,unl,unl,unl,unl,The man interacts with the girls while a little one tugs on his shirt and the others continue bounding and singing.,Eventually the man and little girl\nanetv_9JMbahMzBjk,2242,A group of people are seen sitting around a living room with a man lighting and decorating a tree and two girls singing. The man interacts with the girls while a little one tugs on his shirt and the others,continue bounding and singing.,continue on teenagers to watch their movements.,begin to pull off his shoes to grab it.,continue to laugh and laugh.,can watch him perform.,gold0-orig,pos,unl,pos,pos,pos,A group of people are seen sitting around a living room with a man lighting and decorating a tree and two girls singing.,The man interacts with the girls while a little one tugs on his shirt and the others\nanetv_M4DcibAnW_E,14189,The person is shown surfing all along the water while the camera films from behind. The man,continues surfing and paddles himself towards a boat.,is then seen on the water holding a skateboard and walking off and talking to the camera.,continues to play along more while working in the end captures a fish from the sail box.,continues to answer and waves at the camera in the end.,returns his board as the camera quickly pans overhead.,gold0-orig,pos,unl,unl,unl,pos,The person is shown surfing all along the water while the camera films from behind.,The man\nanetv_M4DcibAnW_E,14188,A large wave is shown followed by a person standing up on a surf board. The person,is shown surfing all along the water while the camera films from behind.,then raises the sail over his hands while looking down in the water.,is then seen riding along the sand while the camera captures her movements.,continues riding on waves when another person is seen riding around on the board.,begins falling off the turbulent water into the ocean several times.,gold0-orig,pos,unl,unl,pos,pos,A large wave is shown followed by a person standing up on a surf board.,The person\nanetv_hs81dVKvvdw,17728,A person is sitting down getting their arm tattooed. They,stand up and show the tattoo.,\"play the racquet, while people try to jump near the center.\",ski on the rapidly ropes in a front of dirt bikes.,begin working on bicycles in different ways.,is trying to get out of the skin then.,gold0-orig,pos,unl,unl,unl,unl,A person is sitting down getting their arm tattooed.,They\nlsmdc0002_As_Good_As_It_Gets-46376,8614,Instead the dog goes to the door and scratches at it. Someone,starts to pick the dog up.,rips out the bottle of water from a freezer.,pulls the portable horn from a carrier.,goes up the stairs.,,gold0-orig,pos,unl,unl,pos,n/a,Instead the dog goes to the door and scratches at it.,Someone\nanetv_4HxmQpkryjA,7495,The kids hit a ball back and forth in the water. They,\"fight over the ball, trying to get it into the goal.\",go on the field with the chasing a ball.,punch balls at one another as she speaks.,continue to hit the ball back and forth in a net while the polo continues.,drive the ball back forth.,gold0-orig,pos,unl,unl,pos,pos,The kids hit a ball back and forth in the water.,They\nanetv_4HxmQpkryjA,7494,A group of children are seen swimming in a pool. The kids,hit a ball back and forth in the water.,spin down and drive back with a ball.,begin swimming in various clips.,films pool attempting to swim around in the pool.,swim back and forth on the pool.,gold1-orig,pos,unl,unl,unl,unl,A group of children are seen swimming in a pool.,The kids\nanetv_4HxmQpkryjA,16377,A group of kids are swimming in a pool. They,are shown tossing a ball back and forth in the water.,are swimming across the pool in front of a crowd of spectators calm over their moves.,are engaged in a fight with headphones.,\"kick a ball back and forth, trying to do the dart.\",swim all around the pool as they talk.,gold1-orig,pos,unl,unl,unl,pos,A group of kids are swimming in a pool.,They\nanetv_4HxmQpkryjA,16378,They are shown tossing a ball back and forth in the water. They,get the ball into the net as they swim.,are then shown riding in a crowd around various buildings.,kick the ball back and forth to the camera.,are applauding themselves as they go into the water.,,gold0-orig,pos,unl,unl,unl,n/a,They are shown tossing a ball back and forth in the water.,They\nlsmdc3062_SORCERERS_APPRENTICE-31000,2536,She closes her dark - lashed eyes and raises both arms. Someone,creeps out near by and watches.,\"looks at someone, then goes back to the bedroom with his ladder.\",stares up at him through tearful eyes.,seethes as he sleeps beside her.,,gold1-orig,pos,unl,pos,pos,n/a,She closes her dark - lashed eyes and raises both arms.,Someone\nlsmdc3062_SORCERERS_APPRENTICE-31000,2535,Someone picks up the empty Grimhold. She,closes her dark - lashed eyes and raises both arms.,grabs her purse and raises it from low to its other side.,flowers are in the hall.,has to smell the blanket and pocket its solo beans.,truffles household buffalos is arranged next to someone.,gold1-reannot,pos,unl,unl,unl,unl,Someone picks up the empty Grimhold.,She\nanetv_IQp6JF5v1qc,17880,The screen opens up with an acdc promo. A little boy,is speaking to the camera.,arranges a goatee on his nails.,spins a body of man.,emerges from a tank.,walks out of the lift.,gold1-orig,pos,unl,unl,unl,unl,The screen opens up with an acdc promo.,A little boy\nanetv_IQp6JF5v1qc,17882,The little boy begins to break dance and does many flips. He,stands up and begins to rap.,\", while on a street, the routine is replayed in slow motion.\",\"twist to the side, then flips back the boy in his other arms flip side to side and does it lands.\",switch around and let him celebrate as the boy springs over his back.,talks about the technique.,gold0-orig,pos,pos,pos,pos,pos,The little boy begins to break dance and does many flips.,He\nanetv_IQp6JF5v1qc,17881,A little boy is speaking to the camera. The little boy,begins to break dance and does many flips.,is taking their turn to start the game.,is moving up to the other side of the house.,is shown inside a front lawn.,\"is trying to solve a rubik's cube, while the timer thinks about it.\",gold0-orig,pos,unl,pos,pos,pos,A little boy is speaking to the camera.,The little boy\nlsmdc1007_Spider-Man1-74500,2328,The gunman makes his escape. Someone,stands aside as the robber escapes in the elevator.,scrambles to his feet and hops across the room.,sighs then takes a deep breath.,wades through a shallow gully.,,gold1-orig,pos,unl,unl,pos,n/a,The gunman makes his escape.,Someone\nanetv_U0p4tW1LoPg,17206,They play a game of water polo and throw the ball around to each other. One,throws the ball into the net and causes the people on the side to jump and cheer.,is well enough to the audience.,continues to play with close ups of their own shoes.,the yellow team are sitting on the sidelines watching.,goes and continue to celebrate.,gold0-orig,pos,unl,unl,pos,pos,They play a game of water polo and throw the ball around to each other.,One\nanetv_U0p4tW1LoPg,17205,A group of people wearing swim caps move around a pool and toss a ball around with a man on the sides waving a flag. They,play a game of water polo and throw the ball around to each other.,talk to the microphone and observe.,collide with each other and catch a wad of nuts in the game.,practice in the room and wave their hands in the air while play beer pong while drinking.,,gold1-orig,pos,unl,unl,unl,n/a,A group of people wearing swim caps move around a pool and toss a ball around with a man on the sides waving a flag.,They\nanetv_U0p4tW1LoPg,17207,One throws the ball into the net and causes the people on the side to jump and cheer. A video of the event,shows in slow motion followed by men on the sidelines watching.,\"is falling off, then a replay that falls on and's first replay is shown again.\",is served and the toddler hits the ball back to water.,show is shown off as people continue to play volleyball.,is shown and a man's score appears on the track.,gold1-reannot,pos,unl,unl,pos,pos,One throws the ball into the net and causes the people on the side to jump and cheer.,A video of the event\nanetv_7xLL5okHSIU,12689,He gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves. Different people,are interviewed on camera while several others are shown raking up the leaves.,are then seen bouncing on the rope together and falling.,are shown snowboarding into a large patch of snow where the shovels continue.,take turns trying to get the riding lawn cleaned above the ground.,are seen wandering around the yard while also looking back and fourth to one another.,gold0-orig,pos,unl,unl,unl,pos,He gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves.,Different people\nanetv_7xLL5okHSIU,12688,A intro begins and shows a man holding a shovel and talking to the camera. He,gradually rakes leaves and talks to the camera and shows several people also helping picking up leaves.,is then shown from a house at a barber shop and shows them gesturing.,move more groups and begin raking papers on fire.,shows the proper use of a machine going down the mountain and riding.,begins playing as a man next poster begins to spin.,gold0-orig,pos,unl,unl,unl,unl,A intro begins and shows a man holding a shovel and talking to the camera.,He\nanetv_7xLL5okHSIU,12690,Different people are interviewed on camera while several others are shown raking up the leaves. A man is seen sitting in his car and another,puts his gloves on.,is standing around the two waves.,watching the dog around with the man standing at the window as well as a lawn mower.,walks along and shots into a man walking back to the camera.,,gold1-reannot,pos,unl,unl,pos,n/a,Different people are interviewed on camera while several others are shown raking up the leaves.,A man is seen sitting in his car and another\nanetv_6dc-fQCzOiw,5594,\"Then, the person kicks the skateboard back. After the person jumps off it and the skateboard\",slides on the road.,lands on his butt.,goes down the board.,\"falls from the left, the man falls on the board and throws the blindfold man.\",is shown in slow motion.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the person kicks the skateboard back.\",After the person jumps off it and the skateboard\nanetv_6dc-fQCzOiw,5593,\"A person talks in the street, then the person skateboard on the road. Then, the person\",kicks the skateboard back.,returns with a popular throw mower.,skateboard down the road and walk the road.,\"skates over the slopes, after other bikers with olympic forms as the border skateboarders perform on a bumpy road.\",stops while jumping up and down.,gold0-orig,pos,unl,unl,unl,pos,\"A person talks in the street, then the person skateboard on the road.\",\"Then, the person\"\nanetv_6dc-fQCzOiw,5595,\"After the person jumps off it and the skateboard slides on the road. Next, the person\",\"practice skateboard dragging a foot, after the person use the grass to do tricks.\",takes a drag on the bike and starts again.,snowboard on the parallel rails.,swings and jumps and shoulder in the air.,stops by passing cars and hugs motorcycles and ride around.,gold1-orig,pos,unl,unl,unl,unl,After the person jumps off it and the skateboard slides on the road.,\"Next, the person\"\nanetv_Tzm6TEManmQ,6256,The man sits on the bleachers and drinks. The man,approaches a pool as if to dive in.,walks over to the fusion machine while holding his eyes.,does a handstand and boards the grass.,talks and attempts his successful haircut.,\"serves the sandwich, then put the candies on the plate.\",gold1-orig,pos,unl,unl,unl,unl,The man sits on the bleachers and drinks.,The man\nanetv_Tzm6TEManmQ,6252,A series of dark gym environments are shown. A man,stands up in the darkened environment.,uses a plastic bar on a mat.,stands there with his arms around his legs.,is standing in a field hitting a puddle.,,gold0-orig,pos,unl,unl,unl,n/a,A series of dark gym environments are shown.,A man\nanetv_Tzm6TEManmQ,6254,The man walks through the frame. The man,walks towards a pool.,moves up the box and points at the object near the sides.,moves the bike away from the camera.,continues to push the leaves around.,removes his glasses and walks away.,gold0-orig,pos,unl,pos,pos,pos,The man walks through the frame.,The man\nanetv_Tzm6TEManmQ,6253,A man stands up in the darkened environment. The man,walks through the frame.,talks in a location.,looks up and flips more times.,easily kicks racket ball and serves.,briefly stands by the man.,gold1-orig,pos,unl,unl,unl,unl,A man stands up in the darkened environment.,The man\nanetv_Tzm6TEManmQ,12491,Lights are turning on over a swimming pool. A man,stands on a diving board next to the pool.,is taking a small kite in a hula hoop.,pans out about sixty yards and grabs a man's arm.,is sitting on a stool in front of a white t - shirt.,,gold0-reannot,pos,unl,unl,pos,n/a,Lights are turning on over a swimming pool.,A man\nanetv_Tzm6TEManmQ,6255,The man walks towards a pool. The man,sits on the bleachers and drinks.,runs towards his teammates.,pass over a served tennis racket and picks up a ball.,reaches for the water and does a handstand.,,gold1-reannot,pos,unl,unl,pos,n/a,The man walks towards a pool.,The man\nlsmdc3087_WE_BOUGHT_A_ZOO-41270,699,\"As he activates the device, its tape extends over a moat separating lion's enclosure from the guard railing. Cocking an eyebrow, someone\",\"faces someone, who cocks his head and gives a few perfunctory nods.\",awakens on the sofa.,sees a flashlight mounted at its window.,looks along the flowing a small structure filled with tall buildings.,lifts up his spear and cocks it.,gold0-orig,pos,unl,unl,unl,unl,\"As he activates the device, its tape extends over a moat separating lion's enclosure from the guard railing.\",\"Cocking an eyebrow, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41270,698,\"From a hip holster, someone whips out an electric tape measure. As he activates the device, its tape\",extends over a moat separating lion's enclosure from the guard railing.,describes the tag that he wears.,squeezes free while on.,seems like a storage item.,\"falls to the floor, revealing a drawing of half of a burlesque amid foam depths.\",gold1-orig,pos,unl,unl,unl,unl,\"From a hip holster, someone whips out an electric tape measure.\",\"As he activates the device, its tape\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41270,695,He dramatically makes a fist. Someone,\"stares at his hand, which he wags slowly.\",elbows him in the thigh with both hands as he lowers his feet.,steps into the paddy field and shoots someone repeatedly at the back of a truck.,\"smashes someone's head, and cuts him off.\",,gold1-orig,pos,unl,pos,pos,n/a,He dramatically makes a fist.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41270,694,Someone looks her up and down. She,glowers at his sly smile.,goes into the kitchen.,changes into the store.,sits at a table.,gazes blankly at someone.,gold0-orig,pos,unl,unl,pos,pos,Someone looks her up and down.,She\nlsmdc3087_WE_BOUGHT_A_ZOO-41270,697,\"Now at lion's enclosure, he scrutinizes a railing. From a hip holster, someone\",whips out an electric tape measure.,\"turns the key to the windshield, and checks his clock.\",sits with someone and presses his hand to her chest.,puts his back against a wall.,smiles as if he is telling the story to the senior football coach and who about it and turns around.,gold0-orig,pos,unl,unl,unl,unl,\"Now at lion's enclosure, he scrutinizes a railing.\",\"From a hip holster, someone\"\nanetv_Qm-XTJ-uG5s,17686,\"Two men are in a room with three walls and a set of glass doors behind them hitting a ball back and fourth against the wall with tennis rackets. As they continue, one boy falls to the ground and they\",have to start over.,start to throw the ball.,sit back down and hit their feet.,don't move but they don't have to grab each other.,take three shots and demonstrate how they throws all the targets.,gold0-orig,pos,unl,unl,unl,unl,Two men are in a room with three walls and a set of glass doors behind them hitting a ball back and fourth against the wall with tennis rackets.,\"As they continue, one boy falls to the ground and they\"\nanetv_Ht2gV7oaqbo,3206,One person then grabs the other person by the legs. The men then,flip each other down on the ground.,shoot at one another and slow down.,perform a long jump in the silver bobble.,start to shove down the snowy slope while grabbing the rope.,take off his shoes and fall to the side and continue wrestling.,gold0-orig,pos,unl,unl,unl,pos,One person then grabs the other person by the legs.,The men then\nanetv_Ht2gV7oaqbo,3205,Two people are seen standing outside on a mat. One person then,grabs the other person by the legs.,begins running down a pole while others sit in the audience watching.,pushes a puck down the slope.,bends down while jumping down into a large ball.,,gold0-reannot,pos,unl,unl,unl,n/a,Two people are seen standing outside on a mat.,One person then\nanetv_XM3SktXBbHU,9924,A person is seen in the middle of a large gymnasium jumping around with another man in the middle raising his arms up. The person on silts then,jumps over the person with their arms up as well as another.,starts spinning the rope around their legs and cheering to the other.,lands on his opponent while holding up his hands and looking for the camera.,balances on the metal rope and continues by walking away down a path.,lifts free of the shot and moves forward and throws the object while standing in the gym with him.,gold1-reannot,pos,unl,unl,unl,unl,A person is seen in the middle of a large gymnasium jumping around with another man in the middle raising his arms up.,The person on silts then\nanetv_XncWGxekE30,13336,Several people are outside in the snow in a line pulling a tube along with them. A boy,is then shown talking to the camera and approaches the line as people begin going down hill.,is seen wearing a string costume with pictures of people standing on either side and racing onto his nods.,is skiing down a hill that is pinned to the surface of a lake.,is gently skiing and leaping through the snow past the soars.,rides down in the river in tubes.,gold0-orig,pos,unl,unl,unl,unl,Several people are outside in the snow in a line pulling a tube along with them.,A boy\nanetv_wt-PGxOkL_s,4015,The woman continues uses the water and begins scrubbing down a shirt and stepping in the buckets. More shots,are shown of them cleaning the clothes and ends by hanging them up.,are shown of the man scoring his potato to off in the end.,are shown of people washing dishes and continuing to wipe the dishes while the camera captures their movements.,are shown of the man washing his hair while the camera captures her movements.,are shown of a woman running down the water using a cloth to clean the legs.,gold0-orig,pos,unl,unl,pos,pos,The woman continues uses the water and begins scrubbing down a shirt and stepping in the buckets.,More shots\nanetv_LZC9MLWo9bE,9539,The person shows a close up of the tool and continues to cut more pieces of wood. The person,cuts up several more pieces of wood.,sweeps out and attempts to brush all holding the pumpkin tool.,finishes painting the floor and continues explaining and continues to cut the ribbons of the tree.,continues sharpening a fire and laying on the hole with the object across it.,,gold0-orig,pos,unl,unl,unl,n/a,The person shows a close up of the tool and continues to cut more pieces of wood.,The person\nanetv_LZC9MLWo9bE,9538,A close up of wood is seen following by a person walking into frame and cutting the wood. The person,shows a close up of the tool and continues to cut more pieces of wood.,demonstrates how to properly cut the cat to make the fire.,continues to blow the leaves around a house while the camera pans around the room.,demonstrates how to use more cleaner on the tool.,continues playing along the front legs of a roof and ends with the man cutting the grass.,gold0-orig,pos,unl,unl,unl,unl,A close up of wood is seen following by a person walking into frame and cutting the wood.,The person\nanetv_LZC9MLWo9bE,9245,A person then takes a long silver knife like utensil and cuts the trees down in half. He continues cutting the tree and several pieces,end up on the ground.,are used in color.,are seemingly lining up with hair products.,of canvas out to cut and crushing them.,begin to melting grass in the area.,gold0-orig,pos,unl,unl,unl,unl,A person then takes a long silver knife like utensil and cuts the trees down in half.,He continues cutting the tree and several pieces\nanetv_LZC9MLWo9bE,9244,A small log of wood is taken from the woods and placed in a back yard. A person then,takes a long silver knife like utensil and cuts the trees down in half.,grabs the pliers and begins cutting the axe handle with the ax.,climbs onto the top of a christmas tree with a big tire behind them.,takes carpet and begins mowing the yard.,,gold0-reannot,pos,unl,unl,unl,n/a,A small log of wood is taken from the woods and placed in a back yard.,A person then\nanetv_KfzVxgHEyzI,7744,A ball rolls towards the crowd. one man,taps the ball with his foot.,blows his three shots in return.,arrives and then lands in the sand.,bounces the ball from his pockets.,lands on his back.,gold0-orig,pos,unl,unl,unl,unl,A ball rolls towards the crowd.,one man\nanetv_KfzVxgHEyzI,7745,One man taps the ball with his foot. He then,runs away from the crowd.,punctures the man with an iron pipe creating a fire behind his balls.,talks to the camera.,pushes the goalkeeper.,turns and walks off.,gold1-orig,pos,unl,unl,pos,pos,One man taps the ball with his foot.,He then\nanetv_KfzVxgHEyzI,6120,A large group of players are seen standing and sitting around a field when a man kicks a ball and runs. Another person behind him attempts to grab the ball but misses and the man,runs to a base where another person calls him safe.,kicks the ball out and runs across the field.,hits the body and hits the other.,slammed the pin and throws his opponent into the field.,is seen in slow motion.,gold0-orig,pos,unl,unl,unl,unl,A large group of players are seen standing and sitting around a field when a man kicks a ball and runs.,Another person behind him attempts to grab the ball but misses and the man\nanetv_KfzVxgHEyzI,7743,People are standing on a football field. a ball,rolls towards the crowd.,emerges out of the cup.,poses for a bit.,falls across the field.,appears in front of him.,gold0-reannot,pos,unl,unl,unl,pos,People are standing on a football field.,a ball\nanetv_P1gGM89_T2g,8748,A leaf is shown floating through the water and two scuba divers swimming around the water. Various shots of the ocean around them,is shown as the divers looking into objects.,are shown as well as seen people swimming around the castle.,are shown as well as people with kites.,are shown as they continue to ride their boat.,,gold0-orig,pos,unl,unl,pos,n/a,A leaf is shown floating through the water and two scuba divers swimming around the water.,Various shots of the ocean around them\nanetv_P1gGM89_T2g,18292,A group of scuba divers are exploring the bottom of the sea. They,are using cameras as they look at the growth and animals.,melt intertubes into the water.,are working in rafts and themselves.,float in a circle towards the water.,,gold1-orig,pos,unl,unl,unl,n/a,A group of scuba divers are exploring the bottom of the sea.,They\nanetv_P1gGM89_T2g,8749,Various shots of the ocean around them is shown as the divers looking into objects. Several fish,are shown swimming around the divers move around sticks and the sand around.,are shown surfing around the ocean while people watch on the side.,stop rafting and the boat continues riding down the river.,are shown spinning the shown pace and ends with them riding around the carnival.,are shown in a fire box holding ribbon down to speak to the camera.,gold0-orig,pos,unl,unl,unl,unl,Various shots of the ocean around them is shown as the divers looking into objects.,Several fish\nanetv_P1gGM89_T2g,18291,A leaf is floating through the murky ocean water. A group of scuba divers,are exploring the bottom of the sea.,rides down the river.,are shown riding bmx and cruising tubes in various locations and leads into another skateboard riding behind the back.,are battling the waves.,dive in the water.,gold0-orig,pos,unl,unl,pos,pos,A leaf is floating through the murky ocean water.,A group of scuba divers\nlsmdc0020_Raising_Arizona-57762,18083,Both are staring wordlessly ahead at the road. Someone,\"looks over at someone, glum but trying to be kind.\",\"swerves, as he paddles his body like a surfboard.\",is carried from work to searchlight.,finds no sign that crosses as well.,,gold1-orig,pos,unl,unl,unl,n/a,Both are staring wordlessly ahead at the road.,Someone\nlsmdc0046_Chasing_Amy-68867,5699,\"Someone sits at a separate signing table, with a line in front of her. Someone\",dashes off signatures in the copies of her comic.,puts it on a plate and gives a big grin.,\"hands up one last guard, then drops the phone on the classroom.\",grabs a glowing document across the table.,stares out the window with a smile.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits at a separate signing table, with a line in front of her.\",Someone\nanetv_1ErQKcUju8o,6965,\"A tutorial is presented on how to do simple ballet moves. After showing the materials, the teacher\",touches the student to show perfect form.,begins to use the line and holds the first academy dancer.,instructs on how to do the braid and see the braids.,demonstrates winter routines hoops to show how to storage your board.,ends a particularly grooming instructions that are on screen.,gold0-orig,pos,unl,unl,unl,unl,A tutorial is presented on how to do simple ballet moves.,\"After showing the materials, the teacher\"\nanetv_MbCAiWBhAjo,8699,\"The lemons are scraped back and forth against a metal food grater to get the zest off of them leaving the skin of the lemon in a bowl. Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder\",is added to the water as well.,is off into it.,parmesan after toasting the little.,is on the top.,,gold0-orig,pos,unl,unl,pos,n/a,The lemons are scraped back and forth against a metal food grater to get the zest off of them leaving the skin of the lemon in a bowl.,\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder\"\nanetv_MbCAiWBhAjo,8700,\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder is added to the water as well. The lemons are cut and juiced over a glass bowl and then the juice\",is poured through a strainer along with the sugar water with zest that was previously mixed in the saucepan.,surfs among the blender and scooped into a spoon.,is rolled and prepared.,is added to the pitcher again and put the removed with the pitcher and cool it.,,gold0-orig,pos,unl,unl,pos,n/a,\"Water is added into a saucepan along with sugar, and then the lemon zest that was extracted with the metal shredder is added to the water as well.\",The lemons are cut and juiced over a glass bowl and then the juice\nanetv_MbCAiWBhAjo,8698,Lemons are thrown onto a counter and glasses of lemon - aid appear with ice in mason jars on the counter as well. Lemons,are then rolled around against the counter back and forth evenly with the palm of a hand using firm pressure.,\"of cake is poured into flat glass, followed by alcohol and lemons, text on the white words.\",comes in and shakes off the smoke.,are added to all the ingredients.,,gold0-reannot,pos,unl,unl,pos,n/a,Lemons are thrown onto a counter and glasses of lemon - aid appear with ice in mason jars on the counter as well.,Lemons\nanetv_FklvvNrpsUk,2266,She is holding a black hair dryer. She,is drying her hair with the hair dryer.,talks in agony that she is holding a child and sticking to her camera.,\"pulls up the wax, and brush her beard, and brushes it.\",'s hugging a single ipod.,shows a pair of rollers with a surface.,gold0-orig,pos,unl,unl,unl,pos,She is holding a black hair dryer.,She\nanetv_FklvvNrpsUk,2265,A woman is standing in a bathroom. She,is holding a black hair dryer.,begins placing soap on her dog as she eats.,is using a toothbrush and a toothpaste toothbrush.,wipes down the phone with a pink towel.,is rubbing water in the sink.,gold0-orig,pos,unl,unl,unl,pos,A woman is standing in a bathroom.,She\nanetv_TbLBu2TDey8,13144,The woman begins throwing around the frisbee performing tricks with the dog. She,continues to do tricks with the dog while others watch on the side.,continues walking around for the dog and stopping by her sides and following her over after the woman comes to a stop.,shows more shots of people hitting the frisbee as well.,runs back and fourth while the dog catches the frisbee.,,gold1-orig,pos,unl,unl,pos,n/a,The woman begins throwing around the frisbee performing tricks with the dog.,She\nanetv_TbLBu2TDey8,13143,A woman is seen standing in a field holding frisbees with a dog. The woman,begins throwing around the frisbee performing tricks with the dog.,then ties the horse's hair on the sides in front of her.,ties the dogs tail around the neck and continues kicking the horse like a dog.,then throws the frisbees while the frisbee catch around the dog continuing to be groomed.,moves the cart around with more dogs and leads into several more dogs.,gold0-reannot,pos,unl,unl,unl,unl,A woman is seen standing in a field holding frisbees with a dog.,The woman\nanetv_TbLBu2TDey8,17665,\"A woman in a pink jacket and her dog are outdoors and doing tricks wish discs as she throws them the dog catches, as well as the dog jumping over her, rolling over, dancing. A still shot\",appears of the woman and her dog as the first place winners at the championship.,is shown of the dog as she moves around to the other part.,is shown of the woman playing again while talking and showing her exercise equipment by various detail describing her movements.,\"appears, wearing the blue garment.\",of her hair is shown with a thumbs up and she hears the video again.,gold0-reannot,pos,unl,unl,unl,unl,\"A woman in a pink jacket and her dog are outdoors and doing tricks wish discs as she throws them the dog catches, as well as the dog jumping over her, rolling over, dancing.\",A still shot\nlsmdc0053_Rendezvous_mit_Joe_Black-71350,13175,\"Someone's face reveals a desperate searching for a last name, a furtive glance at someone. Someone's brow darkens and a name\",tumbles from his lips.,appears in the doorway.,appears on his cheek.,marks the model's roughly six - foot high.,appears across a numbers above the screen.,gold0-orig,pos,unl,unl,unl,pos,\"Someone's face reveals a desperate searching for a last name, a furtive glance at someone.\",Someone's brow darkens and a name\nanetv_s_XdqaQj0uI,685,The pumpkin is buried in the ground. The man,talks to the camera again as the two children walk near him.,is blow drying the dog with his own.,\"has fallen, falls, turns, and puts in his right hand.\",looks at the letters.,looks up to see someone waving the wand in front of him.,gold0-orig,pos,unl,unl,unl,unl,The pumpkin is buried in the ground.,The man\nanetv_s_XdqaQj0uI,16975,The credits and the children giving two thumbs up are shown. The guy,sits and talks while holding a pumpkin with the two children sitting at each side on the grass.,continues to film about the cake.,finishes a routine on the park mat.,\"rides on on a dirt bike, going back and fourth with others.\",clears high jump while dancing on the grass.,gold0-orig,pos,unl,unl,unl,unl,The credits and the children giving two thumbs up are shown.,The guy\nanetv_s_XdqaQj0uI,16977,A person removes the top of a pumpkin. A child,removes the seed and the squash inside.,grabs a white pot and rubs it on the table.,uses a soldering tape on the cake.,washes pumpkin's side on the pumpkin.,cuts a pumpkin in the pumpkin and a man carves off the pumpkin.,gold1-orig,pos,unl,unl,pos,pos,A person removes the top of a pumpkin.,A child\nanetv_s_XdqaQj0uI,16978,A child removes the seed and the squash inside. A person,puts a hole at the bottom of the pumpkin.,paints the painted metal with clear paint.,paints a second bell with a large metal object.,\"bowls a bowl, showing off the ice cream, then wipes the dish.\",,gold0-orig,pos,unl,unl,unl,n/a,A child removes the seed and the squash inside.,A person\nanetv_s_XdqaQj0uI,16982,\"A guy that is standing, talking, and gesturing in a lawn and is being circled by two children. The children\",give a thumbs up.,are shown playing and posing with the products as they move about in the wet snow.,are on the sand.,sits at a classroom decorated with the banner on the bottom wall.,stare at each other.,gold1-orig,pos,unl,unl,unl,pos,\"A guy that is standing, talking, and gesturing in a lawn and is being circled by two children.\",The children\nanetv_s_XdqaQj0uI,16981,A person adds water to the pumpkin. The pumpkin,is buried in black dirt.,zooms out of the direction of the pumpkin.,paints a red trail on the blue one.,is giving someone the carving.,puts lights on a cake.,gold0-orig,pos,unl,unl,unl,unl,A person adds water to the pumpkin.,The pumpkin\nanetv_s_XdqaQj0uI,16980,A child adds soil to the inside of the pumpkin. A person,adds water to the pumpkin.,rubs the candle on the pumpkin.,carves the pumpkin while carrying the tobacco.,carves a pumpkin into a carved pumpkin.,is scrubbing the pumpkin with paint.,gold0-orig,pos,unl,unl,unl,unl,A child adds soil to the inside of the pumpkin.,A person\nanetv_s_XdqaQj0uI,682,\"A still image of the two children are shown. The man, now seated,\",holds a carved pumpkin and talks to the camera while the two children idle nearby.,begins dressed as a big green fabric sweater.,is a man putting together pack cookies.,gets brief and starts shaving his beard.,is at the cut with a rubber hose wearing scissors.,gold1-orig,pos,unl,unl,unl,unl,A still image of the two children are shown.,\"The man, now seated,\"\nanetv_s_XdqaQj0uI,16976,The guy sits and talks while holding a pumpkin with the two children sitting at each side on the grass. A person,removes the top of a pumpkin.,takes the pacifier out of the dispenser.,shovels the snow from a yard in and drives down the driveway.,comes in front of the chair holding the cat.,,gold0-orig,pos,unl,unl,unl,n/a,The guy sits and talks while holding a pumpkin with the two children sitting at each side on the grass.,A person\nanetv_s_XdqaQj0uI,16979,A person puts a hole at the bottom of the pumpkin. A child,adds soil to the inside of the pumpkin.,falls into a child's lap.,pushes a person closer to the pumpkin.,places a substance on the man's eye.,holds a toothbrush up to the camera and puts it on.,gold0-orig,pos,unl,unl,unl,unl,A person puts a hole at the bottom of the pumpkin.,A child\nanetv_s_XdqaQj0uI,683,\"The man, now seated, holds a carved pumpkin and talks to the camera while the two children idle nearby. Hands\",are shown going through the process of emptying a pumpkin and adding dirt to it.,are also shown decorating by close up video of two silent dogs on the beach when the video is shown.,listen to a guitar on the console.,closes his eyes as he finishes out more the cigarette.,are shared by hair smoking and tokens and opponents behind the man.,gold0-reannot,pos,unl,unl,unl,unl,\"The man, now seated, holds a carved pumpkin and talks to the camera while the two children idle nearby.\",Hands\nanetv_s_XdqaQj0uI,684,Hands are shown going through the process of emptying a pumpkin and adding dirt to it. The pumpkin,is buried in the ground.,is moving toward the window.,is also drawn and is laid out with a large tool on the track.,shows a close up of a cake as she watches.,is now someone to gently heat with the paint.,gold0-reannot,pos,unl,unl,unl,unl,Hands are shown going through the process of emptying a pumpkin and adding dirt to it.,The pumpkin\nanetv_s_XdqaQj0uI,681,A man holding some sort of fruit takes to the camera while two children walk around near him. The man's eye,is briefly visible through some sort of tunnel.,is shown with a man who holds a cone in his hands.,moves down and he holds it up.,is shown again in a filing motion.,,gold1-reannot,unl,unl,unl,unl,n/a,A man holding some sort of fruit takes to the camera while two children walk around near him.,The man's eye\nanetv_CqscMsSNiNY,5436,Another man in a black wet suit stands in the water. A boat,passed by behind him.,pushes frantically behind him.,is being pulled at a high shore boat.,is shown sitting around an adidas classroom with shirts.,holds him on a board.,gold1-orig,pos,unl,unl,unl,unl,Another man in a black wet suit stands in the water.,A boat\nanetv_CqscMsSNiNY,3840,He balances on a boardd while holding up a sail. He,lifts the sail up out of the water.,talks while holding a penis.,stops rope while the boat continues moving around wildly.,uses some thread to walk to the end of his dock.,opens a fist fan and lays down on the deck in the box.,gold0-orig,pos,unl,unl,unl,unl,He balances on a boardd while holding up a sail.,He\nanetv_CqscMsSNiNY,5435,He holds onto the sail of the board. Another man in a black wet suit,stands in the water.,is captured and performs a long jump in the water.,stops the room on the border of the ship.,sits on a bench.,sits across them.,gold0-orig,pos,unl,unl,pos,pos,He holds onto the sail of the board.,Another man in a black wet suit\nanetv_CqscMsSNiNY,5434,A man is standing on a kite surf board. He,holds onto the sail of the board.,walks up in front of the camera.,does flips in the canoe and other tricks.,skis and puts the equipment into the river.,is sitting down on the back seat of a boat.,gold0-reannot,pos,unl,unl,unl,unl,A man is standing on a kite surf board.,He\nanetv_b8ftOk8tKxg,5092,The lady washes her face with a powder from a box. The lady,rinses her face and use a towel to dry up.,rinses the dishes again and then picks up a glass of mouthwash and stops.,pours liquid in two paint and polishes the right shoe with the other.,rinses off the soap and washes it in a sink.,puts sunscreen on her hair.,gold0-orig,pos,unl,unl,unl,unl,The lady washes her face with a powder from a box.,The lady\nanetv_b8ftOk8tKxg,5091,A lady discusses and folds a towel. The lady,washes her face with a powder from a box.,holds the arm of a woman and man leaves.,grabs a piece of paper and assembles the paper.,proceeds to shave 5 hairs with a painted brush.,shows repeats on her arm and the lady irons her legs.,gold1-reannot,pos,unl,unl,unl,unl,A lady discusses and folds a towel.,The lady\nanetv_K9cQxJ37xzA,15403,She is back to riding the exercise bike. She,is lifting weights up and down at her sides.,is then shown seated in a oom going down the street.,puts a towel on each side of the bed.,does as backward gets off the bars.,is being full of water and lifting her hips.,gold0-orig,pos,unl,unl,unl,pos,She is back to riding the exercise bike.,She\nanetv_K9cQxJ37xzA,15402,She is doing push ups on a black mat. She,is back to riding the exercise bike.,is using the bents to raise her leg outside at her waist.,sits heavily on a mat attaching the body.,is demonstrating how to finish the jump as a woman rests a board.,,gold1-orig,pos,unl,unl,unl,n/a,She is doing push ups on a black mat.,She\nanetv_K9cQxJ37xzA,15401,A woman in a white tank top is riding an exercise bike in a room. She,is doing push ups on a black mat.,does the exercise in a karate session.,is riding the recumbent bike.,takes a seat and is ready for use.,takes a lever to find the separate panel of wires around it.,gold1-orig,pos,pos,pos,pos,pos,A woman in a white tank top is riding an exercise bike in a room.,She\nanetv_K9cQxJ37xzA,15404,She is lifting weights up and down at her sides. She,is riding on the exercise bike again.,is shown lifting the weights down and sitting down out.,begins showing how to make a sandwich.,lies down and lifts it to her lips.,lifts the weights down on a bar.,gold0-reannot,pos,unl,unl,unl,unl,She is lifting weights up and down at her sides.,She\nlsmdc0030_The_Hustler-65052,1061,There is a long pause as he glares at her. He,goes back into his room.,gazes up at her sleeping wife.,sees the chaos in the distance.,grabs her child and starts to lift her from the shoulder.,gives her some laugh.,gold0-orig,pos,unl,unl,unl,unl,There is a long pause as he glares at her.,He\nlsmdc0030_The_Hustler-65052,1066,\"He is tall and refined, with a pale, debauched, yet oddly youthful face that some men of forty or more sometimes have. Someone\",\"spots someone, takes a long drag on his cigarette, and saunters toward them.\",seems very quite tall.,joins their dancing together.,\"elaborate mass, emerge from cuba and open the doors to their caller.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He is tall and refined, with a pale, debauched, yet oddly youthful face that some men of forty or more sometimes have.\",Someone\nlsmdc0030_The_Hustler-65052,1062,He goes back into his room. She,closes the door and leans against it.,shakes her hair too.,goes up and grabs the mobile phone.,sets down his bags and stands on the couch.,takes out a scrap of paper and picks it up.,gold0-orig,pos,unl,unl,unl,pos,He goes back into his room.,She\nlsmdc0030_The_Hustler-65052,1065,\"As she puts the money in her purse, someone sits down. We\",\"see someone, studying his program and holding a drink in his hand.\",are close on their mouths.,\", someone faces the door.\",\", someone walks with her to someone who's playing paperwork, looking at the card of the keyboard.\",,gold1-orig,pos,unl,unl,unl,n/a,\"As she puts the money in her purse, someone sits down.\",We\nlsmdc0030_The_Hustler-65052,1063,She closes the door and leans against it. Screams,are heard as the horses jerk out of the starting gate to begin their runs.,\"down, someone stands in front of the mirror, aimed fast at her stomach.\",see his chest parted and his eyes two partially put back.,lets the girls go.,\", she gets up and poses at a taxi.\",gold0-reannot,pos,unl,unl,unl,unl,She closes the door and leans against it.,Screams\nlsmdc0030_The_Hustler-65052,1064,Someone cashes in a winning ticket. Someone,moves through the ornate racetrack bar to join someone at a table.,is holding in the wrong direction.,is at a table to a chat with a state of eastern in front of it.,\"stands in front of him, a few feet behind him.\",,gold0-reannot,pos,unl,unl,pos,n/a,Someone cashes in a winning ticket.,Someone\nanetv_K7rfN2W0ts4,16978,The dealer continuously throws out cards while also putting chips in. The person playing,does the same several times.,sticks while the dealer continues along the lane and walks away from the audience.,tennis and passing all around while the others cheer and laugh in the end.,and types takes shots at a distance.,,gold0-orig,pos,unl,unl,unl,n/a,The dealer continuously throws out cards while also putting chips in.,The person playing\nanetv_K7rfN2W0ts4,16977,A person's hands are seen at a poker table grabbing cards while another deals. The dealer,continuously throws out cards while also putting chips in.,places chips to the other and begins hitting the mug around the table while people continue playing.,continues to play the harmonica while more shots are shown of him playing drums with many people walking around him.,continues to roll the cards as the dealer deals them cards.,deals more cards for them while they quickly shake sides of the game.,gold0-reannot,pos,unl,unl,unl,unl,A person's hands are seen at a poker table grabbing cards while another deals.,The dealer\nanetv_E2nAOID5DLM,10590,A man is jumping in the background. A Russian then,completes a long jump and gets his score then runs around with a flag.,\"rides to the bar, jumps up, jumps down onto a sand mat in the setting nursing his oar.\",\"lays down on the ground, the dog falls to the ground and runs pass the team.\",speaks to his camera.,shows a different move.,gold0-orig,pos,unl,unl,pos,pos,A man is jumping in the background.,A Russian then\nanetv_E2nAOID5DLM,8140,The iaaf World Youth Championships logo appears. A young man,waits on a racetrack.,turns onto his skateboard.,talks the video you are demonstrating.,set up his hands territory pills and snowboarding.,,gold0-orig,pos,unl,unl,unl,n/a,The iaaf World Youth Championships logo appears.,A young man\nanetv_7hDCO9fJb90,11389,The man then coaches the girl on the gym bars in a gymnastic practice session as the girl swings on the bars in a gym filled with other children practicing gymnastics. The man then,closes standing next to the girl again and talking into the camera.,\"dismounts, throws several, and does a spin and jumps a rope again.\",goes back to the gymnast while a performer and student and female practice a routine on the foot of the mat.,\"dismounts from the beam and spins and dips on the beam, as a large spectators watching her tumbling across the mat.\",walks the parallel bars for his desk and walks back down to and places his hands on a third of the corridor equipment.,gold1-orig,pos,unl,unl,unl,unl,The man then coaches the girl on the gym bars in a gymnastic practice session as the girl swings on the bars in a gym filled with other children practicing gymnastics.,The man then\nanetv_RAluocUocdw,5882,An old building is seen on the edge of a cliff. Waves from the ocean,are crashing into the shore.,are reflected in the water below.,come onto the shore of the lake.,\"are shown, including fishing boat.\",continues in through the roof style.,gold0-orig,pos,unl,unl,unl,unl,An old building is seen on the edge of a cliff.,Waves from the ocean\nanetv_RAluocUocdw,11432,High ocean waves are shown from a coast. a man surfing,is seen coming to his feet on his board.,waves from the sea then walks towards the camera.,is shown in the same location.,is shown with a new video.,waves and land on a garbage car.,gold0-orig,pos,unl,unl,unl,unl,High ocean waves are shown from a coast.,a man surfing\nanetv_RAluocUocdw,5883,Waves from the ocean are crashing into the shore. A man,\"is surfing on the waves, holding on tight so he does n't lose his balance.\",\"sprints down a deck holding no wharf, paddling a oars, continues walking.\",is wakeboarding on a side of the shore and a whale wave from the shore below.,bowls with water as a surfer grips his board with surf spray.,sail along river under a kayak by a river.,gold0-orig,pos,unl,unl,unl,unl,Waves from the ocean are crashing into the shore.,A man\nanetv_RAluocUocdw,11433,A man surfing is seen coming to his feet on his board. the man,rides a large oncoming wave.,flips down and puts a ball in the water.,continues to swing the ball while the camera captures him riding around on the diving board.,shows various angles of the water on a skateboard.,\"continues playing the instrument while still looking around, while the camera follows his movements.\",gold0-orig,pos,unl,unl,unl,unl,A man surfing is seen coming to his feet on his board.,the man\nanetv_uqaSFllHrco,9979,Several shots of landscapes and people standing together are shown followed by people doing flips and tricks off a jump in the water. Dozens of people,are shown performing tricks on a wakeboard along water with some in front of a large crowd in the end.,are shown riding all along the beach as well as various clips of men playing in the water.,sit on the side as well as many tumble drying their hands.,continue running as the others jump up and down.,continue to walk past them.,gold1-orig,pos,unl,unl,pos,pos,Several shots of landscapes and people standing together are shown followed by people doing flips and tricks off a jump in the water.,Dozens of people\nanetv_uqaSFllHrco,6876,Man is doing wakeboard on a calkm lake and doing jumps on slides on the water. people,are on the dock cheering the team up.,\"are on the ground, then camel behind the boys.\",are in a court with a lot of people sitting at the desk behind him sitting on the table.,\"are standing on stilts in the water, pulling on the skateboard.\",,gold1-orig,unl,unl,unl,unl,n/a,Man is doing wakeboard on a calkm lake and doing jumps on slides on the water.,people\nanetv_Bi3vlu17qp8,9279,People standing on the beach are tossing around an orange ball. There,are people swimming in the water behind them.,are of clips of horses playing the game around the pool.,create the people sitting excitedly talking to each other.,are players on the court.,are flying kites in the sky.,gold0-orig,pos,unl,unl,unl,pos,People standing on the beach are tossing around an orange ball.,There\nanetv_Bi3vlu17qp8,9278,A person in a black shirt gets hit by a ball. People standing on the beach,are tossing around an orange ball.,are trying jumping down.,walks the process with the ball.,celebrate a boy's face.,continue to play squash.,gold0-orig,pos,unl,unl,unl,unl,A person in a black shirt gets hit by a ball.,People standing on the beach\nanetv_1UIhgxQXcfI,13281,\"Next he makes a ball of the grain and then flattens it out, he then puts a cup onto it to make little round shaped cookies. He puts them on a pan and into an oven, after they're done he\",eats them along with some beer.,brushes the items as well as eating it.,cuts out of the cookies and adds more ingredients to the pot.,starts walking into the kitchen while one stranger also licks the ice.,grabs one and measures it to add a measuring one with the other attachments.,gold0-orig,pos,unl,unl,unl,unl,\"Next he makes a ball of the grain and then flattens it out, he then puts a cup onto it to make little round shaped cookies.\",\"He puts them on a pan and into an oven, after they're done he\"\nanetv_1UIhgxQXcfI,13280,\"Then he adds an egg and salt to the grains, plus other ingredients too. Next he makes a ball of the grain and then flattens it out, he then\",puts a cup onto it to make little round shaped cookies.,spread it and read some more.,adds some more and more baking.,takes it immediately and then is done eating now eating.,adds another bite in the pan.,gold0-orig,pos,unl,unl,unl,unl,\"Then he adds an egg and salt to the grains, plus other ingredients too.\",\"Next he makes a ball of the grain and then flattens it out, he then\"\nanetv_1UIhgxQXcfI,13279,This person has dried grains and is now putting them into a small blender. Then he,\"adds an egg and salt to the grains, plus other ingredients too.\",freezes for a board to make it down the sink.,\"adds some mix and fries something and mixes the egg, then, the man shows the drink cleaner and starts biking.\",\"adds the leash, forming, colorful.\",scoops the whisked plate and puts them in another package.,gold0-reannot,pos,unl,unl,unl,unl,This person has dried grains and is now putting them into a small blender.,Then he\nanetv_7xpkFhlxo2Q,4862,In the adjacent room men are playing volleyball. A guy,touches the white wall.,kicks his left hand.,steps onto the wide rowing machine.,stands in front of the table.,,gold0-orig,pos,unl,pos,pos,n/a,In the adjacent room men are playing volleyball.,A guy\nanetv_7xpkFhlxo2Q,18027,\"Two men are in a room with three white walls and a glass wall as the fourth. In the inside, they\",begin hitting a ball back and forth with a tennis racket.,stand in front of a mirror.,spot the backs of the men and both men spin and dance very close.,are doing various tricks with marley who are holding sticks one at a time in his canoes trying a addition.,use decorations to measure out the tiles from the rooftop before working them and taking it away in place with their bikes.,gold0-orig,pos,unl,unl,unl,unl,Two men are in a room with three white walls and a glass wall as the fourth.,\"In the inside, they\"\nanetv_rcqXzX-7ULg,14952,A woman is standing in front of a washer and dryer in a laundry room. Step by step instructions,are given for ironing clothes.,\"are cleaning, painting the block with a brown tiled floor.\",are on the screen on the right pink screen.,add on tools the packaging.,feels to clean out.,gold0-orig,pos,unl,unl,unl,unl,A woman is standing in front of a washer and dryer in a laundry room.,Step by step instructions\nanetv_rcqXzX-7ULg,14953,Step by step instructions are given for ironing clothes. She,shows how to prepare and iron clothing using a rag and steam.,throws a dry look followed by the crowd.,explains up to have some other eye contact representing ten advanced wrestling exercises.,steps off a bar line and dances.,plays a very dark path.,gold0-orig,pos,unl,unl,unl,unl,Step by step instructions are given for ironing clothes.,She\nanetv_GwJ9DmiW8dk,4056,\"The woman begins her routine that includes, jumps, flips, and small dance moves. During the routine the woman\",flips and slightly loses her balance but quickly recovers and remains on the balance beam.,begins to dance gracefully in a yoga pose before her performance.,plays about turning off the stage routine with the baton on the hips.,stops and the man begins to cheer in the bar doing an additional demonstration.,begins making a huge jump while the crowd cheers her.,gold0-orig,pos,unl,unl,pos,pos,\"The woman begins her routine that includes, jumps, flips, and small dance moves.\",During the routine the woman\nanetv_GwJ9DmiW8dk,4055,The woman jumps on the the balance beam and a man quickly grabs the ramp she used to jump onto the balance beam and removes it from the area. The woman,\"begins her routine that includes, jumps, flips, and small dance moves.\",\"flips several different times, and then grabs the barbell around her shoulders and lands on the floor springboard.\",\"does a big flip and lands on the beam, with her arms out as she climbs up several times.\",stands in the middle of the concrete and talks to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,The woman jumps on the the balance beam and a man quickly grabs the ramp she used to jump onto the balance beam and removes it from the area.,The woman\nanetv_GwJ9DmiW8dk,4054,A woman in a purple bodysuit and wearing a bib on her back approaches a wooden balance beam in front of a large audience who is cheering her on. The woman jumps on the the balance beam and a man,quickly grabs the ramp she used to jump onto the balance beam and removes it from the area.,\"gets from the board, then make a flip.\",does somersaults and flips.,hops on his toes.,,gold0-orig,pos,unl,pos,pos,n/a,A woman in a purple bodysuit and wearing a bib on her back approaches a wooden balance beam in front of a large audience who is cheering her on.,The woman jumps on the the balance beam and a man\nlsmdc3004_500_DAYS_OF_SUMMER-1800,2860,\"A young woman is on a sofa also, waiting. She\",has long dark hair.,sits on the floor with her hand stretched up for her cigarette.,wakes up and looks up.,wrings her hands with her hands and goes to the bathroom door.,has not jumped across the water doing the same before her next day.,gold1-orig,pos,unl,unl,unl,unl,\"A young woman is on a sofa also, waiting.\",She\nlsmdc3004_500_DAYS_OF_SUMMER-1800,2859,Someone takes a seat on a balustraded balcony area. A young woman,\"is on a sofa also, waiting.\",looks with slicked hair as she approaches.,hangs out a rear window.,\"stands on the fireplace, gazing out at her rouged face, who sits in a green chair.\",hugs a gift bag breaks together.,gold0-orig,pos,unl,unl,unl,unl,Someone takes a seat on a balustraded balcony area.,A young woman\nlsmdc0027_The_Big_Lebowski-62877,4936,Someone absently licks his lips as we faintly hear a hall rumbling down the lane. In his outflung hand,lies a cassette case labeled venice.,\", he turns all over and approaches him.\",\", someone clutches someone's chest.\",\", the contents charge down the lane.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone absently licks his lips as we faintly hear a hall rumbling down the lane.,In his outflung hand\nlsmdc0027_The_Big_Lebowski-62877,4937,\"From a high angle we see someone hurtling down toward the city, dragged by the ball. Led by the bowling ball, he\",zooms past the camera leaving us in black.,turns at a limping woman and a british police avenue behind him.,repeats the same basketball to a goalie set it like a disassembled trolley.,\"swings the racket around him, then turns.\",slides the ball to his side.,gold0-orig,pos,unl,unl,unl,unl,\"From a high angle we see someone hurtling down toward the city, dragged by the ball.\",\"Led by the bowling ball, he\"\nlsmdc0027_The_Big_Lebowski-62877,4940,The black rolls away and we are spinning - - spinning down a bowling lane - - our point of view that of someone trapped in the thumbhole of the rolling ball. We,see the receding bowler spinning away.,\"are in a plastic pickup, sipping a cup of coffee.\",\"crime, someone pops his head down as someone stares at someone, his gloved hand clutching someone roughly.\",boys; the diner is closed.,\"zoom overhead, focused on the two atvs standing on jogging side of the staircase.\",gold0-orig,pos,unl,unl,unl,unl,The black rolls away and we are spinning - - spinning down a bowling lane - - our point of view that of someone trapped in the thumbhole of the rolling ball.,We\nlsmdc0027_The_Big_Lebowski-62877,4938,\"We pull back to reveal that the blackness was the inside of a ball return, and the gleaming bowling ball is being regurgitated up at us, overtaking us. Someone\",\"looks up, up, up at the looming ball, its mass rolling a huge shadow across his face.\",feels better than liquor in her bag.,\"steps in at the change angle, reaches for the ball.\",waves the film and is coming along to the balcony until we see him from far above.,\"and someone d - seize someone, but he grabs her roughly.\",gold1-orig,pos,unl,unl,unl,unl,\"We pull back to reveal that the blackness was the inside of a ball return, and the gleaming bowling ball is being regurgitated up at us, overtaking us.\",Someone\nlsmdc0027_The_Big_Lebowski-62877,4946,\"We are close on someone, upside down. His head\",\"is now resting against hardwood floor, not rug.\",rolls down on her.,is fast and heavy.,is angled to his chest anew.,is a slight flip to reveal the man underneath his helmet.,gold1-orig,pos,unl,unl,unl,pos,\"We are close on someone, upside down.\",His head\nlsmdc0027_The_Big_Lebowski-62877,4942,Floor spins up at us and then away; ceiling spins up and away; the length of the alley with pins at the end; floor; ceiling; approaching pins; again and again. We,hit the pins and clatter into blackness.,throw a hammer down the hall.,\"is smashed to a poster occupied by many feet, including a machine, with a sheer score flag, the collapsing one.\",\"are very deliberately down, shattering both dutch.\",go across the dead and someone works on the wall.,gold0-orig,pos,unl,unl,unl,unl,Floor spins up at us and then away; ceiling spins up and away; the length of the alley with pins at the end; floor; ceiling; approaching pins; again and again.,We\nlsmdc0027_The_Big_Lebowski-62877,4943,We hit the pins and clatter into blackness. We,\"see pins spin, hit each other and drop.\",\"pass someone, the cat that is lying on his bed.\",\", the man takes the camera in front of the baby, who is in the bathtub.\",rush towards the vehicle.,\"of darkness and darkness, obscures with someone and someone in his lab as the car rests on the toilet.\",gold0-orig,pos,unl,unl,unl,unl,We hit the pins and clatter into blackness.,We\nlsmdc0027_The_Big_Lebowski-62877,4939,\"Someone looks up, up, up at the looming ball, its mass rolling a huge shadow across his face. The gleaming ball\",shows three dead black holes rolling toward us - - finger holes.,of blood is rushed through someone's body towards the altar.,\"comes on, gun - which.\",'s wings propelled its way out of the pond.,green is being drawn towards the earth.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone looks up, up, up at the looming ball, its mass rolling a huge shadow across his face.\",The gleaming ball\nlsmdc0027_The_Big_Lebowski-62877,4941,We see the receding bowler spinning away. It,\"is the blonde woman, performing her follow - through.\",mounted on a street pass united.,been removed from the defiantly ruffled material.,\"wait on the stairs, giving his body to his position, and goes through her track.\",the significance of the screen!,gold0-reannot,pos,unl,unl,unl,unl,We see the receding bowler spinning away.,It\nanetv_WJfMz7joX4s,14306,An ice hockey player falters and almost falls. Then he,does slip and fall.,serves the congress and hugs a boy.,runs across the field.,gets up from the hook and slides to the ground.,continues to hit the ball.,gold0-orig,pos,unl,unl,unl,unl,An ice hockey player falters and almost falls.,Then he\nanetv_WJfMz7joX4s,1367,A hockey player is swinging around his stick on the ice. He,trips and falls down on his knees.,puts his side stick on.,pushes his target out of the basket.,releases a ball and shoots it against the wall.,picks up the javelin with a stick.,gold0-orig,pos,unl,unl,unl,unl,A hockey player is swinging around his stick on the ice.,He\nanetv_WJfMz7joX4s,14307,Then he does slip and fall. His teammates,glide past as he continues to struggle to stay upright.,run back into the sand and run for it.,now seconds on the rope every time.,race from the bush to the ground.,walk across a finish line over each other.,gold0-orig,pos,unl,unl,unl,unl,Then he does slip and fall.,His teammates\nanetv_WJfMz7joX4s,1368,He trips and falls down on his knees. He,\"gets back up, looking disoriented as he rejoins his team, falling again.\",dismounts and swings his arms.,sits in an armchair next to someone.,picks up his money bouquet and hands it back to someone.,watches as someone's mother strides up the stairs.,gold0-orig,pos,unl,unl,unl,pos,He trips and falls down on his knees.,He\nanetv_08wKlw4a_so,8702,\"The lady stops raking, turns around, and talks plus gestures. A white ball\",rolls to a parked car.,scarf is watching from the background.,is hovering above the log.,is removed from the chair while several information cuts grass to a girl.,is with butter and putting gel grazes her handlebars.,gold0-orig,pos,unl,unl,unl,unl,\"The lady stops raking, turns around, and talks plus gestures.\",A white ball\nanetv_08wKlw4a_so,8701,A lady rakes leaves from the lawn onto the pavement sidewalk. The lady,\"stops raking, turns around, and talks plus gestures.\",picks up the leaves and gets in the snow with her hands.,at the front then shows the camera as he peers over the couch and we see the trees in its yard.,pours another one and is cleaning the top of the lady when the painting is done.,pushes the second mower across the lawn and shows the kids down the back.,gold0-orig,pos,unl,unl,unl,pos,A lady rakes leaves from the lawn onto the pavement sidewalk.,The lady\nanetv_08wKlw4a_so,8700,A black dog walks on a lawn. A lady,rakes leaves from the lawn onto the pavement sidewalk.,walks around the camel.,bounces a tube down town on her stilts.,demonstrates tricks to handle grass on the croquet board.,takes a shower in a gym.,gold0-reannot,pos,unl,unl,unl,unl,A black dog walks on a lawn.,A lady\nlsmdc0021_Rear_Window-58714,933,\"He discusses each piece, apparently trying to make some decision. Someone\",lowers his camera lens and edges his chair forward in an effort to hear what someone is saying.,matches his driver's license and points on the phone.,\"he and someone enter, wearing a lipstick.\",allows himself to walk patiently on the edge of the finger.,,gold0-orig,pos,unl,unl,unl,n/a,\"He discusses each piece, apparently trying to make some decision.\",Someone\nlsmdc0021_Rear_Window-58714,942,\"The door opens, and someone stands silhouetted in the entrance, black - lighted by the corridor lights. Someone's head\",\"is turned toward her, his back more toward the neighborhood.\",\"is turned upside down on the school, where his eyes are drawn.\",is wrapped with scaly brown.,appears beside two palace supports.,,gold0-orig,pos,unl,unl,pos,n/a,\"The door opens, and someone stands silhouetted in the entrance, black - lighted by the corridor lights.\",Someone's head\nlsmdc0021_Rear_Window-58714,947,\"He comes to the window, glass in hand, and looks down into the garden, nonchalantly. He\",\"stops, turns to her quickly.\",shifts his deathly gaze and looks off.,takes his hand from someone's breast and draws a little.,aims his gun at someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"He comes to the window, glass in hand, and looks down into the garden, nonchalantly.\",He\nlsmdc0021_Rear_Window-58714,932,\"As he talks, thoughtfully, he takes some jewelry from the handbag - - a couple of rings, diamond wristwatch, brooch, pearls, etc. He\",\"discusses each piece, apparently trying to make some decision.\",lets him up in the arms of his friends and leads him through the crowd.,plunges into an attic and pulls someone's bag out of his pocket pocket.,pulls the screws up.,pulls back a pair of volumes of red mark strips.,gold0-orig,pos,unl,unl,unl,unl,\"As he talks, thoughtfully, he takes some jewelry from the handbag - - a couple of rings, diamond wristwatch, brooch, pearls, etc.\",He\nlsmdc0021_Rear_Window-58714,934,\"The first four of the song - writer's guests come through the door, admitted by the song - writer's girl friend. The song - writer\",\"dashes off a loud vamp of greeting on the piano, then gets up to offer drinks.\",continues to sing in slow motion while within her workout.,stops and furrows her lips as if searching.,makes her way through the crowd.,,gold0-orig,pos,unl,pos,pos,n/a,\"The first four of the song - writer's guests come through the door, admitted by the song - writer's girl friend.\",The song - writer\nlsmdc0021_Rear_Window-58714,940,\"He lifts the top two coats slightly, and slides the handbag under them and out of sight. He\",\"lowers the camera lens, and turns his attention to his door.\",returns to his contact questions sitting on his lap.,drops the last stuffed baby into his coat pocket.,\"heads off, leaving his room, including a boy in a white t - shirt and coat on a crowded street.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He lifts the top two coats slightly, and slides the handbag under them and out of sight.\",He\nlsmdc0021_Rear_Window-58714,939,He goes to a pile of coats lying on the bed. He,\"lifts the top two coats slightly, and slides the handbag under them and out of sight.\",aims a bullet into the boy's face and rises around his neck.,comes around and sits down next to the young boy who looks through the bed and watches anxiously.,is shaving the floor with his hands.,rejects a call from an unknown caller.,gold0-orig,pos,unl,unl,unl,pos,He goes to a pile of coats lying on the bed.,He\nlsmdc0021_Rear_Window-58714,941,\"He lowers the camera lens, and turns his attention to his door. The door opens, and someone\",\"stands silhouetted in the entrance, black - lighted by the corridor lights.\",carefully climbs over the door to see someone changing down her skirt off to the side.,continues to form the story on him.,walks into someone's room.,,gold0-orig,pos,unl,unl,pos,n/a,\"He lowers the camera lens, and turns his attention to his door.\",\"The door opens, and someone\"\nlsmdc0021_Rear_Window-58714,935,\"The song - writer dashes off a loud vamp of greeting on the piano, then gets up to offer drinks. Someone\",\"turns his attention back to someone, but gives up any attempt at listening.\",is hair across the side of a can.,skeleton starts by shaking his head and wing.,puts down the bottle of tea and assist his date.,,gold1-orig,pos,unl,unl,pos,n/a,\"The song - writer dashes off a loud vamp of greeting on the piano, then gets up to offer drinks.\",Someone\nlsmdc0021_Rear_Window-58714,945,\"Someone abruptly turns back to the window, as someone dashes into the picture behind him, and looks out. The lights are out in someone's bedroom, and someone\",is in the act of pouring himself out a drink in the living room.,\"breaks the pints, putting someone into the back seat.\",sprints from the front door.,\"lies at the side of the bed, covering his torn shirt.\",,gold1-orig,unl,unl,unl,unl,n/a,\"Someone abruptly turns back to the window, as someone dashes into the picture behind him, and looks out.\",\"The lights are out in someone's bedroom, and someone\"\nlsmdc0021_Rear_Window-58714,938,\"Having completed his call, someone returns to the bedroom carrying the handbag. He\",goes to a pile of coats lying on the bed.,rests his head on someone's shoulder and lightly rubs his left stomach with his foot.,lifts his ear to someone as he touches it.,\"splatters stones on the canvas, carrying pictures of children.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Having completed his call, someone returns to the bedroom carrying the handbag.\",He\nlsmdc0021_Rear_Window-58714,946,\"The lights are out in someone's bedroom, and someone is in the act of pouring himself out a drink in the living room. He\",\"comes to the window, glass in hand, and looks down into the garden, nonchalantly.\",\"is still staring admiring the windows as someone gazes between them, then he turns to face the reading of a german camper.\",decides to leave him.,\"stares out of the window, clinging to his chin.\",crouches in his room as as he proceeds to put light.,gold0-orig,pos,unl,unl,unl,unl,\"The lights are out in someone's bedroom, and someone is in the act of pouring himself out a drink in the living room.\",He\nlsmdc0021_Rear_Window-58714,937,\"He lift the long - focus lens up to his eyes again. Having completed his call, someone\",returns to the bedroom carrying the handbag.,lowers his cap as he caresses her face and takes a deep breath.,wears his expression as he grins at a security camera.,strides down into his coat.,reaches into his pocket.,gold1-reannot,pos,unl,unl,unl,pos,He lift the long - focus lens up to his eyes again.,\"Having completed his call, someone\"\nlsmdc0021_Rear_Window-58714,948,\"He stops, turns to her quickly. Someone\",turns back to the window.,stretches firmly in her hand.,remains by her captivated blades.,lies in bed watching her roommate.,,gold1-reannot,pos,unl,unl,pos,n/a,\"He stops, turns to her quickly.\",Someone\nlsmdc0021_Rear_Window-58714,944,It's an attractive picture. Someone,\"abruptly turns back to the window, as someone dashes into the picture behind him, and looks out.\",returns to the bottom of the plant.,\"says it, and too, his leather - like sack falls from the back of the bike.\",\"pulls on a bench on the mat, facing her, on her knees doing various looks.\",smiles at the camera and starts waves.,gold0-reannot,pos,unl,unl,unl,pos,It's an attractive picture.,Someone\nanetv_5rtrGkZNfLo,1274,A standing man talks to the camera with two women seated beside him. The camera pans,to focus on the two women.,to show the man playing congas while several men in dark.,to show the woman with yarn.,to show a person kneeling.,to show various stances on the floor.,gold0-orig,pos,unl,pos,pos,pos,A standing man talks to the camera with two women seated beside him.,The camera pans\nlsmdc1023_Horrible_Bosses-81960,2213,Street lamps illuminate the darkened street as they drive on. They,pull up outside someone's palatial home and park in the shadows.,the entirely team finds someone's less janitor in a poem recess.,\"hop out of the grungy car, which he has just locked.\",search and exit the actual restaurant.,tour the open gallery.,gold1-orig,pos,unl,pos,pos,pos,Street lamps illuminate the darkened street as they drive on.,They\nanetv_3YiGMRp-7B4,8158,The people move in several martial arts techniques. They,kick and punch back and forth.,are celebrating when an audience.,gather to a waiting area of movements.,are playing the game with a bowling bin.,,gold0-orig,pos,unl,unl,unl,n/a,The people move in several martial arts techniques.,They\nanetv_EzQL-i_MTdU,18638,\"A man wearing a usa shirt, or team uniform approaches a two sided weight as a woman watches from the side near a door. The man lifts the weight and the camera\",shows the process in slow motion.,\"raises the needle, his legs way before the wire.\",\"goes several times, then moving his hands up and down.\",pans to his left lower level.,,gold0-orig,pos,unl,unl,pos,n/a,\"A man wearing a usa shirt, or team uniform approaches a two sided weight as a woman watches from the side near a door.\",The man lifts the weight and the camera\nanetv_EzQL-i_MTdU,18637,\"A man at a professional sports event, lifts a large and heavy weight using knees, back and arm strength while a woman in a suit watches from the sidelines. A man wearing a usa shirt, or team uniform\",approaches a two sided weight as a woman watches from the side near a door.,\"makes his way out while also holding on stilts, and show them by going off ramps.\",stand on and ottoman with the cones.,gather on the curved platform swinging around.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A man at a professional sports event, lifts a large and heavy weight using knees, back and arm strength while a woman in a suit watches from the sidelines.\",\"A man wearing a usa shirt, or team uniform\"\nanetv_cqgecSy943o,8874,The man then skateboards on a ramp. He,tries to run up the ramp without a skateboard.,puts down another surfer's skateboard.,performs stunts in a field.,rides up on the rope and jumps.,rolls down a snowy mountain.,gold0-orig,pos,unl,unl,unl,unl,The man then skateboards on a ramp.,He\nanetv_cqgecSy943o,8875,He tries to run up the ramp without a skateboard. A child,slides down the ramp on her butt.,strip down on a sidewalk and jumps into the water and juggle from the skateboard.,is standing in the area watching him.,rides on a bicycle on the streets of skateboarders.,stretches its leg casually.,gold0-orig,pos,unl,unl,unl,unl,He tries to run up the ramp without a skateboard.,A child\nanetv_cqgecSy943o,8873,A man bends over to talk to the camera. The man then,skateboards on a ramp.,begins for a bicycle and starts assembling a pumpkin.,begins talking about the shorts.,proceeds to prepare the vacuum.,puts another towel on a wall.,gold0-orig,pos,unl,pos,pos,pos,A man bends over to talk to the camera.,The man then\nanetv_cqgecSy943o,8877,The man chases his skareboard. The man,talks to the camera.,runs the frisbee through a basket.,catches a cow and leaves the tree.,pats the boy with a throwing towel.,jumps off the log onto a high bike.,gold1-orig,pos,unl,unl,unl,pos,The man chases his skareboard.,The man\nanetv_cqgecSy943o,8876,A child slides down the ramp on her butt. The man's skateboard,gets away from him.,is replayed in slow motion.,falls from a cruise and jumps high up onto the street and comes to a stop.,is in the air multiple times.,goes to the end of the screen.,gold0-reannot,pos,unl,unl,pos,pos,A child slides down the ramp on her butt.,The man's skateboard\nlsmdc3078_THE_WATCH-36147,3084,Someone writes something and hands it to someone. Someone,snatches it and hands it back to someone.,wraps her arm around someone's neck as someone gulps after his friend.,drops the letter in the typewriter.,hurries up the stairs.,,gold0-orig,pos,unl,unl,pos,n/a,Someone writes something and hands it to someone.,Someone\nanetv_p8tlnMtsTf8,17050,A helicopter is seen driving over an ocean where people are seen surfing. Several shots,are shown of people riding along the water and others sitting.,are shown of another person skiing.,are shown of people surfing on skis in several different locations.,are shown of people riding down a river with kayaks as other as a rock.,are shown of kids riding their kayaks.,gold1-orig,pos,unl,unl,unl,unl,A helicopter is seen driving over an ocean where people are seen surfing.,Several shots\nanetv_p8tlnMtsTf8,17051,Several shots are shown of people riding along the water and others sitting. The people,continue riding along the water while the helicopter rides around.,continue in wandering around running and all laughing and smiling to one another.,continue jumping up and down in the water while smiling and laughing.,continues riding around on the camels while speaking to the camera while walking around.,ride all around and continue riding with one another while riding on them while the camera captures their movements.,gold1-reannot,unl,unl,unl,unl,unl,Several shots are shown of people riding along the water and others sitting.,The people\nanetv_FOm0uKw7dXc,1823,Two people are seen standing on a stage and the man walks towards the woman. The two,begin performing a tango routine with one another.,continue to dance with one another while another sits in front of drums.,continue walking around with their backs and kicking their legs around the room dancing and dancing around them and end.,take their turns and begin dancing with one another.,continue dancing around one another while looking off into the distance.,gold0-orig,pos,pos,pos,pos,pos,Two people are seen standing on a stage and the man walks towards the woman.,The two\nanetv_FOm0uKw7dXc,14839,Two people are seen standing when the man walks over and begins dancing with the woman. The couple,perform a routine on the stage moving each other all around and ends with them standing together.,continues dancing around and smoking.,follows each other along to the dance routine.,\"moves down and places her arms around the woman, while the others continue with her.\",walks around together when they hug.,gold0-reannot,pos,unl,unl,unl,unl,Two people are seen standing when the man walks over and begins dancing with the woman.,The couple\nanetv_FOm0uKw7dXc,1824,The two begin performing a tango routine with one another. They,continue dancing around with one another and end by holding a pose.,continue to arm wrestle as they continue dancing.,enter the room and they continue to belly dance.,make a twirl as they comes and take a hit.,demonstrate to lift weights and shake hands on her shoulders.,gold0-reannot,pos,unl,unl,unl,unl,The two begin performing a tango routine with one another.,They\nanetv_Xpb1Lup1GAU,16873,The woman continues her knitting. The woman,shows off her work so far and continues knitting.,speaks to the camera once more.,talks and start talking.,holds a tape pink garment and two lines toy the it while the woman applies the paint at the camera.,points down then picks up her skirt and curls a hair flap to reveal bottles trimming to the camera.,gold0-orig,pos,unl,unl,unl,unl,The woman continues her knitting.,The woman\nanetv_Xpb1Lup1GAU,16872,A woman sits by a window knitting a white piece. The woman,holds up a pattern book with an image of the piece she is working on.,helps the child reach the top of the bars without touching anther.,starts blow drys her hair.,secures the gold piece in it and cuts it in half.,dry the close cloth with a cloth.,gold0-orig,pos,unl,unl,unl,unl,A woman sits by a window knitting a white piece.,The woman\nanetv_BTUgRe4aSsg,4743,The woman twirls the stringed weight gathering momentum as she then begins to spin her whole body around. She,lets go and tosses it as she lets out a loud scream.,lifts the baton on her shoulders and stick.,jumps on the floor and finishes moving.,slams the lid and starts wiping it and grabs a resistance as it travels scotch to her final landing.,,gold0-orig,pos,unl,unl,unl,n/a,The woman twirls the stringed weight gathering momentum as she then begins to spin her whole body around.,She\nanetv_BTUgRe4aSsg,4745,The hammer then goes into the field as officials go to see where it lands. The cameras now,show the emotional athlete walking around the event area.,and flags are displayed in the court.,shows the bomb driving back and forth.,show the man as the player off his serve.,,gold0-orig,pos,unl,unl,pos,n/a,The hammer then goes into the field as officials go to see where it lands.,The cameras now\nanetv_BTUgRe4aSsg,19268,An athlete is seen stepping up to a circle with people watching on the sides and her spinning around. She,throws the object off into the distance and is seen walking away crying.,people are shown taking picture and dancing on the field.,continues along the correct direction as well as slamming the fence and looking off into the distance.,bottles are seen behind the goal and leads into a young girl sitting on the saddle holding an object stuck to his hand.,laughs and throws back the hoop again before the video fades to black.,gold1-reannot,unl,unl,unl,unl,unl,An athlete is seen stepping up to a circle with people watching on the sides and her spinning around.,She\nanetv_BTUgRe4aSsg,4744,She lets go and tosses it as she lets out a loud scream. The hammer then,goes into the field as officials go to see where it lands.,lift her hands but crash the position of the furnace.,knocks the puck aside and we descend toward someone to see someone on the quad.,\"incinerates her face, soaping down at both her neck and then talks to the camera.\",snaps back as someone settles back into his seat.,gold0-reannot,pos,unl,unl,unl,unl,She lets go and tosses it as she lets out a loud scream.,The hammer then\nanetv_35Xzs3Bz1hQ,4876,Another entrepreneur talks with the the reporters about the coffee business. Then they,are in the coffee shop them making coffee and working around.,show off the information for the first time.,use to spray a beer in the front of the car.,go under and slow down on the bed.,join the backdoor to another part of a field.,gold0-orig,pos,unl,unl,unl,unl,Another entrepreneur talks with the the reporters about the coffee business.,Then they\nanetv_35Xzs3Bz1hQ,4875,Another man is talking to some reporters with the microphone. Another entrepreneur,talks with the the reporters about the coffee business.,is playing beach soccer.,of tattoos is shown.,speaks to the group.,stands on the scene.,gold0-orig,pos,unl,unl,pos,pos,Another man is talking to some reporters with the microphone.,Another entrepreneur\nanetv_QTfz_zprGcQ,527,\"A btrtv reporter visits a soul cycle studio and store, interviews a soul cycle instructor and takes a sample soul cycle class. A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and\",then enters the store and interviews a soul cycle instructor.,then demonstrating a shot of basketball matches.,throws it several more times.,\"demonstrates with the paper changes and a different woman standing next to him, and speaks to the screen.\",,gold0-orig,pos,unl,unl,unl,n/a,\"A btrtv reporter visits a soul cycle studio and store, interviews a soul cycle instructor and takes a sample soul cycle class.\",\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and\"\nanetv_QTfz_zprGcQ,528,\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and then enters the store and interviews a soul cycle instructor. The reporter then\",changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes.,returns to talking to the camera in a flashback and the more cartoon credits show from a woman's perspective.,begins to take photos.,changes the channel and continues talking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,\"A reporter holding a microphone, stands outside of a soul cycle store speaking to the camera, and then enters the store and interviews a soul cycle instructor.\",The reporter then\nanetv_QTfz_zprGcQ,529,The reporter then changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes. The reporter,returns to interviewing the soul cycle instructor with a final shot of rows of clothing hanging in the soul cycle store.,is shown and the special tentative sits both handed.,prepares the cigarette in a brief motion as she counts and then says back.,\"watching hospital, journalist and to the front of one hilton and take photos of the man.\",and jury are interviewed for the point of context.,gold0-reannot,pos,unl,unl,unl,unl,The reporter then changes clothes and takes a soul cycle class interspersed with video of instructor led soul cycle classes.,The reporter\nlsmdc3018_CINDERELLA_MAN-8110,19246,\"She slams the glass down and stomps off. Jaw tensed, someone\",shifts on his feet.,touches a makeup rack.,lifts his brow and gestures to the kids.,rests her hands on the hanging wall just as someone tries to control the fiery cube.,looks to the mirror.,gold1-reannot,pos,unl,unl,unl,unl,She slams the glass down and stomps off.,\"Jaw tensed, someone\"\nanetv_Nn4sVR3__DQ,2371,She is contemplating going down for a while. She finally,slides down it with baby.,makes a series of layered turns.,pulls off the string and continues lifting it up near the top.,opens down the slide.,dances faster this time and continues.,gold0-orig,pos,unl,unl,unl,unl,She is contemplating going down for a while.,She finally\nanetv_Nn4sVR3__DQ,2372,She finally slides down it with baby. When they reach the bottom she lets him go and he,starts to walk around.,slips a fist into her face.,does the same thing.,slides on top of the slide.,pushes her and climbs up the third class line.,gold0-orig,pos,unl,unl,unl,unl,She finally slides down it with baby.,When they reach the bottom she lets him go and he\nanetv_Nn4sVR3__DQ,2370,A mom is sitting at the top of a slide with her little baby. She,is contemplating going down for a while.,pulls out the monkey handle.,\", the boy takes out a gift paper and puts the wrapping paper down in a pile.\",is standing at the pinata as she lays and picks up.,takes the front turn and climbs two pads and wipes her right eye.,gold0-reannot,pos,unl,unl,unl,unl,A mom is sitting at the top of a slide with her little baby.,She\nanetv_G9ynahMxUz8,13655,\"They continue kicking and throwing the ball to each other, and a man joins in. The little girl\",\"chases down the ball, bringing it back.\",\"wakes up while she serves herself, watching triumph when sight of the girl as well.\",\"lights the match and the girl puts her pants down and pauses, then she returns and smiles.\",hit the ball with the stick super the players slide the stick trying to hit it too.,\"peels a potato, and then pans someone to the other.\",gold1-orig,unl,unl,unl,unl,unl,\"They continue kicking and throwing the ball to each other, and a man joins in.\",The little girl\nlsmdc3079_THINK_LIKE_A_MAN-36612,12278,Now someone returns home to find bare walls and empty shelves. He,drops his pizza box.,hides himself amid the debris.,circles dangling from his lap.,\"swallows a few times, then frowns over at the pills in his hand.\",,gold0-orig,pos,unl,unl,pos,n/a,Now someone returns home to find bare walls and empty shelves.,He\nanetv_So3EfVyUP64,14592,A woman with short hair is seen talking to the camera then flipping a pair of paints inside out. She,folds the pants neatly on an ironing board and begins ironing the paints thoroughly.,starts painting the nails with a brush and painting the nails.,edges the icing over the drying machine and bends quickly.,shows off the balance smock.,points to the cream on her face and presents it with her one finger.,gold0-orig,pos,unl,unl,pos,pos,A woman with short hair is seen talking to the camera then flipping a pair of paints inside out.,She\nlsmdc1047_Defiance-91223,16690,\"Someone, sitting with his legs drawn up in front of him, slowly gets up to his feet, and throws the cloth bundle over his shoulder. Dark green conifers\",stretch as far as the eye can see.,started to head right to the right and head down.,\"hangs from his hand, creeps out on front a house's city, someone's trailer.\",\"tumbles on the floor, through the storeroom, back through the center of the room.\",streaming from the siting someone and jumps into the pommel platform.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, sitting with his legs drawn up in front of him, slowly gets up to his feet, and throws the cloth bundle over his shoulder.\",Dark green conifers\nlsmdc1047_Defiance-91223,16692,\"A man strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms. The stone - faced man in his late thirties, in a cloth cap and a brown leather jacket over heavy wool trousers,\",picks up a stone and tosses it onto the ground.,\"sits on the floor, his head covered with snow.\",walks across the house towards the e - deck hall.,sits alone at the edge of a circular bar.,looks down from the living room.,gold0-orig,pos,unl,unl,unl,unl,A man strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms.,\"The stone - faced man in his late thirties, in a cloth cap and a brown leather jacket over heavy wool trousers,\"\nlsmdc1047_Defiance-91223,16691,Dark green conifers stretch as far as the eye can see. A man,strides through the undergrowth and comes across someone lying asleep by a tree with someone in his arms.,flies in the air again howling over the water.,talks with a professional man and throws a pandemonium machine.,has a white price pattern on his hand looking at the phone.,,gold0-orig,pos,unl,unl,unl,n/a,Dark green conifers stretch as far as the eye can see.,A man\nlsmdc1047_Defiance-91223,16689,\"Someone pats someone's neck, and for a moment rests his head against his brother's brow. Someone, sitting with his legs drawn up in front of him,\",\"slowly gets up to his feet, and throws the cloth bundle over his shoulder.\",quickly moves around the table; dead model staring at him.,\"makes his way toward the coat, collar to its rim.\",walks to the door and steps to the porch.,stands in front of the house he'd rather become seen.,gold0-orig,pos,unl,unl,unl,unl,\"Someone pats someone's neck, and for a moment rests his head against his brother's brow.\",\"Someone, sitting with his legs drawn up in front of him,\"\nlsmdc1047_Defiance-91223,16688,Someone hold his brother to his Feet and leans him up against a tree. Someone,\"pats someone's neck, and for a moment rests his head against his brother's brow.\",nudges the naked guy with his blanket.,'s name is projected on the engineer's head.,stops eating and slows to scotty moment.,looks back at the boy who picks up his bottle then runs to the bathroom.,gold0-orig,pos,unl,unl,unl,unl,Someone hold his brother to his Feet and leans him up against a tree.,Someone\nlsmdc1047_Defiance-91687,3838,\"He smiles at her as he rubs his hands. He drapes his coat around her shoulders, and she\",thanks him with a nod.,wraps a towel around his waist.,eyes the jagged glasses of his golden blonde hair.,slips on his back.,drops to one knee.,gold0-orig,pos,unl,unl,unl,unl,He smiles at her as he rubs his hands.,\"He drapes his coat around her shoulders, and she\"\nlsmdc1047_Defiance-91687,3837,He throws a small log into the stove. He,smiles at her as he rubs his hands.,stoically set in a pile as a collection of retired peace signs appear.,\"field, someone guarded outside.\",overtakes it and our two friends hands.,,gold0-orig,pos,unl,unl,unl,n/a,He throws a small log into the stove.,He\nlsmdc1047_Defiance-91687,3834,\"Zeus face turns to the side. At the camp someone in his heavy gray coat and hat, machine gun over his shoulder,\",steps into a dark cabin where someone is sitting by a stove.,is two women and that one touch his gloves.,\"shoots out - quietly, den like a trashcan in the demon.\",streams across the road.,is shaking with his hands.,gold0-orig,pos,unl,unl,unl,unl,Zeus face turns to the side.,\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder,\"\nlsmdc1047_Defiance-91687,3839,\"He drapes his coat around her shoulders, and she thanks him with a nod. Reaching into his trouser pocket, he\",brings out his revolver.,peeks out the rear side window.,pauses his vest clutching the small revolver.,picks up the book.,,gold1-orig,unl,unl,unl,unl,n/a,\"He drapes his coat around her shoulders, and she thanks him with a nod.\",\"Reaching into his trouser pocket, he\"\nlsmdc1047_Defiance-91687,3835,\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder, steps into a dark cabin where someone is sitting by a stove. He\",put the gun down.,staggers out from under a table and throws them something.,\"appears, carving the driver's hand and the keys once again.\",turns back to the display.,stands up to him and fires.,gold1-reannot,pos,unl,unl,pos,pos,\"At the camp someone in his heavy gray coat and hat, machine gun over his shoulder, steps into a dark cabin where someone is sitting by a stove.\",He\nlsmdc1047_Defiance-91687,3836,He put the gun down. He,throws a small log into the stove.,puts on another potato.,leans over to kiss his face.,stops the member again at the kids's table.,sprays water on the sink and drinks it.,gold1-reannot,pos,unl,unl,unl,unl,He put the gun down.,He\nanetv_e_0bMJEFiN8,3349,The guy waves and later gives two thumbs up. The guy,sticks out his tongue and wags it.,uses the board to use skateboard as the dog paddles through the water.,uses a towel to soap and wash his hands.,leaves as the fly gathers.,,gold0-orig,pos,unl,unl,unl,n/a,The guy waves and later gives two thumbs up.,The guy\nanetv_e_0bMJEFiN8,3348,The guy blows his air on the faucet. The guy waves and,later gives two thumbs up.,gives the first guy a cup of coffee.,gives us the hour video.,pumps the handle of the saxophone.,washes his hands with mouthwash.,gold1-orig,pos,unl,unl,unl,unl,The guy blows his air on the faucet.,The guy waves and\nanetv_e_0bMJEFiN8,3347,A guy whips a sink's faucet with paper towels. The guy,blows his air on the faucet.,points a finger at the sink and regains dusting of water.,exits a bathroom spits water from the sink.,puts a towel on someone's ass.,applies cash and dry everything.,gold0-orig,unl,unl,unl,unl,unl,A guy whips a sink's faucet with paper towels.,The guy\nanetv_e_0bMJEFiN8,18747,A man is talking inside a bathroom. He,is using a rag to clean a sink.,is wearing a pair of welding safety gloves.,is putting makeup on his face.,uses steel brushes from the waist and then sprays the mop.,begins blow drying his hair.,gold0-orig,pos,unl,unl,unl,pos,A man is talking inside a bathroom.,He\nanetv_e_0bMJEFiN8,18748,He is using a rag to clean a sink. He,lathers up and wipes it all back down.,continues to polish the shoe.,quickly washes his legs from the dresser.,dries his shoes with a towel.,continues to rub his own face.,gold1-orig,pos,unl,unl,unl,unl,He is using a rag to clean a sink.,He\nanetv_ZjvmWr5LoFw,1115,A group of children play bumper cars in an amusement park setting. A group of children,drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines.,dry sidewalks and have a conversation as well as the crowd of the children off of sidelines.,are elevated up as the children continue to work in the grass.,hold out words with colorful medals that the scrabbles enjoy as kids celebrate on city streets.,are gathered in a grassy yard.,gold1-orig,pos,unl,unl,unl,pos,A group of children play bumper cars in an amusement park setting.,A group of children\nanetv_ZjvmWr5LoFw,1116,A group of children drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines. The cars are suddenly stopped from working and a worker,walks on the floor between the cars and then walks amount the children as if speaking to them.,stands and stretches a rope across the side of the roof.,sits waiting in front of the camera.,is watching in the background of a bank.,takes off the gear.,gold0-orig,pos,unl,unl,unl,pos,A group of children drive multi colored bumper cars around on an indoor surface as onlooker watch from the sidelines.,The cars are suddenly stopped from working and a worker\nanetv_ZjvmWr5LoFw,13549,\"Kids drives bumper cars in a carnival while kids drive around. Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids\",continue driving and bumping cars.,puts in the machine on their rails.,begin to run for back spinning wheels.,turn and walk away.,start doing some tricks.,gold0-orig,pos,unl,unl,unl,pos,Kids drives bumper cars in a carnival while kids drive around.,\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids\"\nanetv_ZjvmWr5LoFw,13551,\"The kids continue driving, spinning the cars and bumping other cars. Then the cars top and kids\",get out the cars.,pull out of the driveway.,soar across a road.,come out and play across the road.,continue swinging back and fourth.,gold0-orig,pos,unl,unl,unl,unl,\"The kids continue driving, spinning the cars and bumping other cars.\",Then the cars top and kids\nanetv_ZjvmWr5LoFw,1117,The cars are suddenly stopped from working and a worker walks on the floor between the cars and then walks amount the children as if speaking to them. The cars start moving again and the children continue to drive until the cars are stopped again and the worker,returns to the floor among the children before the scene fades out and some of the kids get off of the bumper cars.,makes the way across the sensual spain.,stops at a black wipers.,does the wheel when the people is being driven on cars.,continue splashing in at them.,gold0-orig,pos,unl,unl,unl,unl,The cars are suddenly stopped from working and a worker walks on the floor between the cars and then walks amount the children as if speaking to them.,The cars start moving again and the children continue to drive until the cars are stopped again and the worker\nanetv_ZjvmWr5LoFw,13550,\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids continue driving and bumping cars. The kids\",\"continue driving, spinning the cars and bumping other cars.\",\"continue out and use the motorcycles, throwing the young, as the family urges it off.\",follow suit as they try to solve each other.,walk through the area of the parking lot.,show their helmet as they finish making their moves and check.,gold0-orig,pos,unl,unl,unl,unl,\"Suddenly, the cars stopped, and a woman comes to fix the problem, then the kids continue driving and bumping cars.\",The kids\nanetv_JKZ-3N1fYL8,3038,A woman is working outside in the yard. She,is using a large rake to work.,dumps snow out of the car.,uses focus equipment to mattress space tights for another round of drones.,takes the car back into the sink and grabs back to work on back the car.,is smoking a cigarette and blowing in the air.,gold0-orig,pos,unl,unl,unl,pos,A woman is working outside in the yard.,She\nanetv_JKZ-3N1fYL8,3039,She is using a large rake to work. She,is raking leaves out of the grass.,\"turns over, on car stunts as she falls.\",puts on a lipstick as the girl dries her hair.,uses a comb to clean her hair.,begins to twirl a hula of it by herself.,gold0-orig,pos,unl,unl,unl,unl,She is using a large rake to work.,She\nanetv_JKZ-3N1fYL8,16981,Woman is in a abandoned field raking dy leaves from the floor. old woman,is sweeping dry leaves from the floor.,is making castles in woman.,is holding an orange trimming pull in a brown basket.,in brown stands in front with the lawn mower.,,gold0-orig,pos,unl,pos,pos,n/a,Woman is in a abandoned field raking dy leaves from the floor.,old woman\nanetv_JKZ-3N1fYL8,16982,Old woman is sweeping dry leaves from the floor. woman,is wearing a cap and is standing on the dusty path sweeping.,is walking around the room with a mop and also burning in clothes.,is wearing red pants playing with her shoes and playing.,is holding two cat and brown blow dryer leaves.,holds a towel to the camera and zoom in.,gold0-reannot,pos,unl,unl,unl,pos,Old woman is sweeping dry leaves from the floor.,woman\nanetv_xCedPpnP6Wg,2082,Man is wearing stilts and its ready to cross the street. two women are standing trying to cross the street and a bus,is passing in sreet.,is reaching his car.,is crossing the street.,comes to help with two men.,,gold0-reannot,pos,unl,pos,pos,n/a,Man is wearing stilts and its ready to cross the street.,two women are standing trying to cross the street and a bus\nanetv_xCedPpnP6Wg,2083,Two women are standing trying to cross the street and a bus is passing in sreet. the green bus pass in the street anda lot of people,are sitting on top.,running in a marathon.,wearing blue and standing on a sidewalk talking to the camera.,are sitting in bumper cars.,\"jumping in a competition, jumping.\",gold1-reannot,pos,unl,unl,unl,unl,Two women are standing trying to cross the street and a bus is passing in sreet.,the green bus pass in the street anda lot of people\nanetv_ATk8OkvNHHQ,9586,A camera pans all around a person sitting on a bike putting gloves on and leads into several clips of people riding tracks on bikes. The people,continue riding around on the tracks while performing various flips and tricks and cameras shown from many angles.,are shown as well as walking between cuts and flattening weights.,ride onward and continue driving around as well as walking on camels.,continue to ride around in snowboard while rubbing along on each side not stopping.,continue doing tricks all around the grass as well as riding away from the marathon.,gold1-orig,pos,unl,unl,unl,pos,A camera pans all around a person sitting on a bike putting gloves on and leads into several clips of people riding tracks on bikes.,The people\nanetv_ATk8OkvNHHQ,10284,A young boy is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place. Various clips of different boys all dressed up in their protective bike gear,play as they are all shown riding their bikes very quickly around different tracks.,as welding in a field.,are packed with tires.,begin to pull together.,,gold0-orig,pos,unl,unl,unl,n/a,A young boy is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place.,Various clips of different boys all dressed up in their protective bike gear\nanetv_ATk8OkvNHHQ,10283,An intro screen appears and white words on the screen appear that say 100% bmx race 4. A young boy,is dressed in full protective gear and is standing on his bike as he puts his gloves on and pulls his helmet into place.,in a sweater is shown in the roller and striped in a traditional track in a competition.,is going over the bars going fast into the finish line.,appears loudly unblinking for the camera.,walks onto a defensive trail.,gold0-reannot,pos,unl,unl,unl,unl,An intro screen appears and white words on the screen appear that say 100% bmx race 4.,A young boy\nlsmdc1047_Defiance-91434,12597,The brothers help someone out into the sunshine. Someone,gives him a bear hug.,\"climbs off of the car, gets up, and goes.\",follows him by a denim digs.,overtakes the cafe with the flower and then shoots her a questioning look.,shoots someone with a wicked dagger.,gold0-orig,pos,unl,unl,unl,unl,The brothers help someone out into the sunshine.,Someone\nlsmdc1047_Defiance-91434,12595,\"Her long, black skirt trailing on the ground, she leads the three men to a haystack. They\",peer down into a shelter and smile.,\"approach her apartment, then undoes the belt of her dress and sets the cup down.\",hold the chopped general with an stamped steel ribbon.,\"hobbit, a thin, elegant modern woman waves a brown raincoat up in a sixties and golf club.\",runs out of the small lures.,gold0-orig,pos,unl,unl,unl,unl,\"Her long, black skirt trailing on the ground, she leads the three men to a haystack.\",They\nlsmdc1047_Defiance-91434,12590,Someone's wife is in the garden hanging up washing. The three partisans armed with rifles,come past a flock of geese on their way to the barn.,aiming their torch at each other.,\", a different shop, wooden stools, a few feet then, now terraced houses and piles of market.\",detach through their equipment.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's wife is in the garden hanging up washing.,The three partisans armed with rifles\nlsmdc1047_Defiance-91434,12596,They peer down into a shelter and smile. The brothers,help someone out into the sunshine.,rise their arm around his shoulders.,wears a wet frown.,rub their noses together.,hover at their patrons.,gold1-orig,pos,unl,unl,unl,pos,They peer down into a shelter and smile.,The brothers\nlsmdc1047_Defiance-91434,12591,\"The three partisans armed with rifles come past a flock of geese on their way to the barn. Nearing the door, they\",stop as a pair of legs comes into view.,notice a trapping bending out to secure a fallen partner's alien handbag.,move across to set past a german on horseback.,turn back to look at her.,are stepping around to the stealthy sounds of the approaching colt.,gold0-orig,pos,unl,unl,unl,unl,The three partisans armed with rifles come past a flock of geese on their way to the barn.,\"Nearing the door, they\"\nlsmdc1047_Defiance-91434,12598,Someone gives him a bear hug. Two women,\"climbed, one a teenager, the other in her 30s.\",help someone and another brother who stands in front of the mohawk.,\"hurry up, a chair trembling.\",lead someone into an apartment in the b. g..,,gold0-orig,pos,unl,unl,pos,n/a,Someone gives him a bear hug.,Two women\nlsmdc1047_Defiance-91434,12594,\"Someone bangs a cross into the ground. Someone, holding a shovel,\",steps away from someone's newly dug grave.,releases the blow and opening the glass.,\"strikes him with a crowbar, then heaves himself to run out into the street.\",glides into a truck with someone's hand.,,gold0-orig,pos,unl,unl,unl,n/a,Someone bangs a cross into the ground.,\"Someone, holding a shovel,\"\nlsmdc1047_Defiance-91434,12593,\"Someone is hanging from a rafter, with a wooden sign around his neck. Someone\",bangs a cross into the ground.,has a wild journal.,clears their grip and discusses.,pulls the hood back up to his chest.,gives someone like a life guard.,gold1-orig,pos,unl,unl,unl,unl,\"Someone is hanging from a rafter, with a wooden sign around his neck.\",Someone\nlsmdc1047_Defiance-91434,12589,The three of them step towards it. Someone's wife,is in the garden hanging up washing.,opens the front door to show her mouth lying open.,sits on a coffee table.,leaves the kitchen for a moment or she stops to look up at the map.,starts at crane jacks up his rope tunnel.,gold1-reannot,pos,unl,unl,unl,unl,The three of them step towards it.,Someone's wife\nlsmdc1047_Defiance-91434,12587,He steps towards someone and cradles his head in his arms. Someone,wraps his arms around his big brother.,looks at someone as she holds out his arm.,\", someone snuggles up a wall in someone's bed.\",\"smiles at someone, who's someone but clerical.\",rolls up his sleeve.,gold0-reannot,pos,unl,unl,unl,pos,He steps towards someone and cradles his head in his arms.,Someone\nlsmdc1047_Defiance-91434,12592,\"Nearing the door, they stop as a pair of legs comes into view. Someone\",\"is hanging from a rafter, with a wooden sign around his neck.\",finishes to touch her.,ducks behind one of the carriages as the bar gets inside.,holds his convertible to his side and peers into the smoke.,\"moves through the pages, then peers down at the letters.\",gold0-reannot,pos,unl,unl,unl,pos,\"Nearing the door, they stop as a pair of legs comes into view.\",Someone\nanetv_3kEAg-JtDBY,17026,A woman is wearing a white robe and a black belt. She,does karate moves in her room.,uses a pair of hands to braid it.,is dressed in a black and bouncing gear.,shows the ragged arm of the baby.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is wearing a white robe and a black belt.,She\nanetv_3kEAg-JtDBY,17027,She does karate moves in her room. She,kicks her legs up several times.,continues flipping again and does n't move.,lifts the baby up to her feet.,doing crunches over them.,pulls away from the videos.,gold0-orig,pos,unl,unl,unl,unl,She does karate moves in her room.,She\nanetv_3kEAg-JtDBY,17028,She kicks her legs up several times. She,finishes and stands up right with her arms by her side and bows.,lands on her back and claps her hands.,moves to the railing and prepares the other bar.,jumps up proudly down the hill.,is throwing and hitting him with the object.,gold0-reannot,pos,unl,unl,unl,unl,She kicks her legs up several times.,She\nlsmdc3058_RUBY_SPARKS-28165,4420,\"Someone lays her back on a pinball machine. As he nuzzles her between her breasts, she\",blissfully sweeps her arms past her head.,undoes the clasp of the zipper on his forehead.,finds his cell phone with a pump.,slaps someone's chest and begins to record the chairs on her desk.,slides a metal sheet over the door.,gold0-orig,pos,unl,unl,unl,pos,Someone lays her back on a pinball machine.,\"As he nuzzles her between her breasts, she\"\nlsmdc3058_RUBY_SPARKS-28165,4423,Now they bounce up and down on a crowded dance floor. Someone,raises her arms and shakes her head.,poses as a woman steps over to him.,\"stands by a curtain, then a one of her arms is pulled behind, reacting from the sight of him.\",looks up as she watches them go.,opens the door and steps through the front door.,gold1-orig,pos,unl,unl,unl,pos,Now they bounce up and down on a crowded dance floor.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4404,Someone makes the busboy touch someone. Someone,throws a glass of water in his face.,notices her joining conviction on the screen.,blocks his blow with his hand with his gloved hand.,smacks it along with it.,uses someone's piece of wood near someone and someone.,gold1-orig,pos,unl,unl,unl,unl,Someone makes the busboy touch someone.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4427,\"From the top of her dress, someone pulls out panties and twirls them on her finger. Someone\",stops dancing staring wide - eyed.,bends over to their slippers as she slams the front shelf.,dozes beneath her crowded bar.,sits alone in a red carriage.,\"watches the tv briefly, then heads up the steps.\",gold1-orig,pos,unl,unl,pos,pos,\"From the top of her dress, someone pulls out panties and twirls them on her finger.\",Someone\nlsmdc3058_RUBY_SPARKS-28165,4421,\"As he nuzzles her between her breasts, she blissfully sweeps her arms past her head. Later, someone\",runs up to him and leaps into his arms.,passes someone as she glides through a passage.,walks someone through a packed living room where someone takes a book from the collection and tucks it into the cluttered sharpener table.,eagerly shuts a door as they remove wallpaper from the wall and polish it.,leans in the shower.,gold1-orig,pos,unl,unl,unl,unl,\"As he nuzzles her between her breasts, she blissfully sweeps her arms past her head.\",\"Later, someone\"\nlsmdc3058_RUBY_SPARKS-28165,4424,\"Later, he deeps dips her and they kiss. Straightening, she\",slaps his chest to the music.,punches his chin then peers out.,stands up and faces her next husband.,joins her friend in her cubicle.,puts a blanket behind her top.,gold1-orig,pos,unl,unl,unl,unl,\"Later, he deeps dips her and they kiss.\",\"Straightening, she\"\nlsmdc3058_RUBY_SPARKS-28165,4413,\"Later, someone covers a laughing someone's eyes. A zombie\",tears a woman's head off.,pulls the lens away him.,grabs someone's shirt and overcoat.,gets out of the car as they head through open cabinets.,falls into someone's grasp.,gold0-orig,pos,unl,unl,unl,pos,\"Later, someone covers a laughing someone's eyes.\",A zombie\nlsmdc3058_RUBY_SPARKS-28165,4425,\"Straightening, she slaps his chest to the music. Now, she\",jerks her head side - to - side.,walks a tasseled puffed coffees to a counter.,\"steals his speed from the vault, then hits it like a high stone.\",holds a school book in her hand while someone sits beside her.,finishes reading the london journal.,gold1-orig,pos,unl,unl,unl,unl,\"Straightening, she slaps his chest to the music.\",\"Now, she\"\nlsmdc3058_RUBY_SPARKS-28165,4426,\"Now, she jerks her head side - to - side. From the top of her dress, someone\",pulls out panties and twirls them on her finger.,stares hard to her window.,leads them into view.,fidgets in her bathtub.,works with her pillow.,gold1-orig,pos,unl,unl,unl,unl,\"Now, she jerks her head side - to - side.\",\"From the top of her dress, someone\"\nlsmdc3058_RUBY_SPARKS-28165,4410,She shuts her eyes ecstatically as he leans his face toward hers. Their lips,meet in an ardent tender kiss.,meet in a tender kiss and she gets up.,meet in a resigned kiss.,\"meet again, then meet in a slow kiss.\",,gold1-orig,pos,unl,pos,pos,n/a,She shuts her eyes ecstatically as he leans his face toward hers.,Their lips\nlsmdc3058_RUBY_SPARKS-28165,4411,\"Someone pulls back, his brow knitted emotionally. They\",gaze into each other's eyes.,close the wide keyhole.,\", someone sleeps serenely.\",\"all hurry to his son's office, and the woman begins to face him.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone pulls back, his brow knitted emotionally.\",They\nlsmdc3058_RUBY_SPARKS-28165,4408,\"Staring up at him tearfully, someone yields a smile. She\",shakes her head and sighs.,spots her and she lowers her gaze from the dance floor.,opens the front door.,throws the drawings off.,\"gropes back around the car, gently parting the wound.\",gold1-orig,pos,unl,unl,unl,unl,\"Staring up at him tearfully, someone yields a smile.\",She\nlsmdc3058_RUBY_SPARKS-28165,4417,They play a game with gun - shaped controllers. Someone,coolly blows the end of her gun's barrel.,steps up to his table and glares to a couple who is heavily shoved.,looks around at the grounds as the figure moves about in reverse.,stands on a veranda illuminated by flickering lights.,hands him the handkerchief.,gold0-orig,pos,unl,unl,unl,unl,They play a game with gun - shaped controllers.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4406,Someone brushes her long bangs aside. He,caresses her lips with his thumb.,moves her brightens as well.,stares off with someone as she tears up.,gazes into each other's eyes.,,gold0-orig,pos,unl,pos,pos,n/a,Someone brushes her long bangs aside.,He\nlsmdc3058_RUBY_SPARKS-28165,4414,A zombie tears a woman's head off. Someone,\"lunges, playfully biting someone's neck.\",lands on the immaculately carbon - shaped driveway.,\"pulls into a fearfully, then reaches in his pocket and pulls up its second handle.\",pulls her bag through the shops fair - haired woman and shakes her head.,smothers someone with a big kiss brow as he runs off.,gold1-orig,pos,unl,unl,unl,unl,A zombie tears a woman's head off.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4412,\"Seated on the crowded lawn, someone and someone each take a shot. Later, someone\",covers a laughing someone's eyes.,sneaks up of the farm and hugs her friends.,drives someone through the cemetery past a bookcase and up front doors.,passes to a welcome town restaurant.,,gold1-orig,pos,unl,unl,unl,n/a,\"Seated on the crowded lawn, someone and someone each take a shot.\",\"Later, someone\"\nlsmdc3058_RUBY_SPARKS-28165,4415,\"Someone lunges, playfully biting someone's neck. Now he catches up to her in an arcade and she\",greets him with a kiss.,regards him with a smirk.,catches him in her arms.,tosses it a handful of coins.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone lunges, playfully biting someone's neck.\",Now he catches up to her in an arcade and she\nlsmdc3058_RUBY_SPARKS-28165,4416,\"Now he catches up to her in an arcade and she greets him with a kiss. Later, she\",peeks out of a video game booth and draws him in with her.,\"joins someone, a chicken tommy.\",wraps her arms around his mother.,returns the carton of cake.,\"dashes straight to the car, where a chauffeur - driven car passes outside.\",gold0-orig,pos,unl,unl,unl,unl,Now he catches up to her in an arcade and she greets him with a kiss.,\"Later, she\"\nlsmdc3058_RUBY_SPARKS-28165,4405,She whacks him with her purse and he grabs her. Someone,lifts her over his shoulder and carries her down the sidewalk.,joins someone and eating.,\"gives a dreamy shrug, then turns away from the window.\",hits one of the gypsies sex.,steps up behind hers.,gold0-orig,pos,unl,unl,unl,pos,She whacks him with her purse and he grabs her.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4422,\"Later, someone runs up to him and leaps into his arms. Now they\",bounce up and down on a crowded dance floor.,make love at the picnic ceremony.,enter the hydra gas station.,land in the middle of a busy city street.,climb on to the scaffold.,gold1-reannot,pos,unl,unl,unl,unl,\"Later, someone runs up to him and leaps into his arms.\",Now they\nlsmdc3058_RUBY_SPARKS-28165,4419,They dance in the arcade. Someone,lays her back on a pinball machine.,turns to see how dumb she is.,lifts up his wrist then runs through the flap.,smiles and people dance together.,,gold0-reannot,pos,unl,unl,pos,n/a,They dance in the arcade.,Someone\nlsmdc3058_RUBY_SPARKS-28165,4407,He caresses her lips with his thumb. Someone,cups her face in his hands.,moves the pink closer to his chin.,lifts his wrist again as he rests his chin on his hand.,dabs his own hair with her cotton glove.,smiles and drops the grimhold to hers.,gold0-reannot,pos,unl,unl,unl,unl,He caresses her lips with his thumb.,Someone\nanetv_Mfk4bUp_ZC0,8215,A Traffic jam traps the little girls in the middle of cars. the little girl in the hat,smiles as she looks in her sisters face.,climbs onto a stationary bike.,kicks the door open.,stops her car off and changes the tire.,is suddenly stuck in the playground.,gold0-orig,pos,unl,unl,unl,unl,A Traffic jam traps the little girls in the middle of cars.,the little girl in the hat\nanetv_Mfk4bUp_ZC0,8214,Children are riding the bumper cars at an amusement park or carnival. A Traffic jam,traps the little girls in the middle of cars.,is parked outside holding pamphlets.,leads into one of the houses and rolls toward the yard.,sweeps their way to other side shops.,is shown at the crest of the bunker.,gold0-orig,pos,unl,unl,unl,unl,Children are riding the bumper cars at an amusement park or carnival.,A Traffic jam\nanetv_4hmJfJo6UI8,11066,A female athlete runs quickly down a track. She,plows into the sand before getting up and walking away.,is sprinting through a field.,is doing tricks on parallel bars with other people.,\"raises his hands in the air in a competition, then jumps in a swing and crashes into a nearby mat.\",\"does a gymnastics routine on the balance beam, then lands on the mat again.\",gold0-orig,pos,unl,unl,unl,unl,A female athlete runs quickly down a track.,She\nanetv_gdyEfPbUEjw,12144,The man performs a trick near another windsurfer. The trick,is repeated in slow motion.,begins to slow down several times in slow motion.,starts with the man spins and back in slow motion motion.,is shown several times.,\"has shown again in slow motion, with dozens of spectators in the marathon.\",gold1-orig,pos,unl,unl,pos,pos,The man performs a trick near another windsurfer.,The trick\nanetv_gdyEfPbUEjw,12143,A man windsurfs on a lake with other windsurfers occasionally entering the frame. The man,performs a trick near another windsurfer.,takes the travel back again.,continues talking while they pose a record to hold hands.,waves another bye and gives a thumbs up on the screen.,,gold0-orig,pos,unl,unl,pos,n/a,A man windsurfs on a lake with other windsurfers occasionally entering the frame.,The man\nanetv_gdyEfPbUEjw,4300,\"He tilts, trying to stay up right on his board. Another man joins him temporarily, then he\",sails back to shore.,falls back on his knees to avoid the pit.,boards the top of the boat.,is able to speak.,tries to free a guides himself and then slides the rear down.,gold0-orig,pos,unl,unl,unl,unl,\"He tilts, trying to stay up right on his board.\",\"Another man joins him temporarily, then he\"\nanetv_gdyEfPbUEjw,4299,A man is shown parasailing away from the shore. He,\"tilts, trying to stay up right on his board.\",stops as he approaches the water skiing.,bounces on a sailboard and misses and land in a pit.,stays at the canvas and begins floating on the rough waters.,begins to surf on the board once in slow motion.,gold0-orig,pos,unl,unl,unl,unl,A man is shown parasailing away from the shore.,He\nlsmdc0041_The_Sixth_Sense-68035,19523,They slowly sag and then collapse. All the students,are laughing as they try to untangle themselves.,fall from the gym floor.,are trying to break it.,get on their feet and lift them high.,,gold0-orig,pos,unl,pos,pos,n/a,They slowly sag and then collapse.,All the students\nlsmdc0041_The_Sixth_Sense-68035,19520,\"Someone watches his client, standing unafraid in the spot light for the first time. The villagers\",rise and rush to someone.,reach someone who slowly lowers one foot further back to the door.,remain awake as his daughter cycles over to a marketplace.,\"are wild, furious.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone watches his client, standing unafraid in the spot light for the first time.\",The villagers\nlsmdc0041_The_Sixth_Sense-68035,19522,They scoop him up and carry him around the stage in celebration. They,slowly sag and then collapse.,are carried for the game; going up to a kid at one.,watch someone others follow the path outside.,rip up through the wall while they kiss.,sit up and talk with each other.,gold0-orig,pos,unl,unl,unl,pos,They scoop him up and carry him around the stage in celebration.,They\nlsmdc0041_The_Sixth_Sense-68035,19524,Someone watches with utter joy as someone becomes indistinguishable among of a group of twenty children giggling and enjoying themselves on stage. The rain,comes down a little stronger now on the stained glass window.,sits in the darkening sky.,\"sails above their head, trying to hold with their noses.\",continues down as her curls just blows to them singing.,,gold0-orig,pos,unl,unl,unl,n/a,Someone watches with utter joy as someone becomes indistinguishable among of a group of twenty children giggling and enjoying themselves on stage.,The rain\nlsmdc0041_The_Sixth_Sense-68035,19519,The sword starts to come out. Someone,raises the shiny sword out of the stone and high above his head.,screams from the ceiling.,looks solemnly back at someone.,\"screams in pain, raises his arms and sobs.\",,gold0-orig,pos,unl,unl,pos,n/a,The sword starts to come out.,Someone\nlsmdc0041_The_Sixth_Sense-68035,19517,Someone steps up to the stone. He,places his hand around the handle.,\"takes a covered coat, replaces it around the pensive, then walks toward the entrance.\",peers underneath the slats of the curtain and slides along the hall.,seals the casket solemnly.,,gold0-orig,unl,unl,unl,unl,n/a,Someone steps up to the stone.,He\nlsmdc0041_The_Sixth_Sense-68035,19518,He places his hand around the handle. The sword,starts to come out.,lunges then raise their trembling hand in triumph.,blows steps from his arm and someone puts the knife on his palm.,points at several sharp - legged motions.,,gold0-orig,pos,unl,unl,unl,n/a,He places his hand around the handle.,The sword\nlsmdc0041_The_Sixth_Sense-68035,19516,It takes him a moment before he steps forward. Someone,steps up to the stone.,trots both past a pair of high leather varnish.,reaches the door to someone room and her hand.,\"is just standing there, huge tipped over.\",\"grimaces, trying to catch it.\",gold1-reannot,pos,unl,unl,unl,unl,It takes him a moment before he steps forward.,Someone\nanetv_QeVVKZhoFCg,10102,\"She colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on. She\",puts a bit of blush in her cheeks and then smiles and waves to the camera.,\"demonstrates various form movements that applies toothpaste to the red lens, then stops writing the lipstick and then more smoothing her hair.\",then dies down in a slinky day dress.,turns blinking and moves in the mirror with tears.,,gold0-orig,pos,unl,unl,pos,n/a,\"She colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on.\",She\nanetv_QeVVKZhoFCg,10101,She then puts eyeliner on followed by mascara and lip liner. She,\"colors in her eyebrows and puts on fake eye lashes, then rubbing some of the black off and more mascara on.\",continues working and smiling as she talks to the camera.,sprays around also up and ends with painting her.,pulls something out of her mouth and begins putting it down for some reason.,,gold0-orig,pos,unl,unl,unl,n/a,She then puts eyeliner on followed by mascara and lip liner.,She\nanetv_QeVVKZhoFCg,10100,A girl with several facial piercings his seen rubbing lotion all over her face and powdering her cheeks and face. She then,puts eyeliner on followed by mascara and lip liner.,applies lotion to her hair and clean it.,\"bends down to do various dance moves, sometimes shaving all her hair.\",blow dries her hair on the towel and moving up to her mouth.,,gold0-orig,pos,unl,unl,pos,n/a,A girl with several facial piercings his seen rubbing lotion all over her face and powdering her cheeks and face.,She then\nanetv_YAhMxt-3ciU,17256,A map of the world is shown. Trophies,are shown on the screen.,and cannons are shown.,appears on screen with the boy's name and a website on his.,reader are then shown on the screen as a man and woman are talking.,,gold0-orig,pos,unl,pos,pos,n/a,A map of the world is shown.,Trophies\nlsmdc3018_CINDERELLA_MAN-7855,17523,\"Nighttime, a sign reads: Primo Carnera versus Max Baer, World's Heavyweight Championship. Words\",appear: madison square.,\"are a valley estate, along with dozens of carriages, silver gates and jacket trees.\",\", 20 angry gills, a man on large sidewalk, holds a microphone as he strolls out of the gloomy hall.\",shoot straight in mid - air.,are written in blue letters and title.,gold0-orig,pos,unl,unl,unl,unl,\"Nighttime, a sign reads: Primo Carnera versus Max Baer, World's Heavyweight Championship.\",Words\nanetv_32H1n87WgCM,17705,His coach is then interviewed as well as the young child and continues showing more shots of his moves. The male hosts,speaks to the camera smiling in the end.,finishes pouring food from a glass.,pans side windows to show a close up view of the most frightening rooms.,the male and begins playing the instrument while the orchestra watches.,are shown as being interviewed by the news and following the news.,gold1-orig,pos,unl,unl,unl,pos,His coach is then interviewed as well as the young child and continues showing more shots of his moves.,The male hosts\nanetv_32H1n87WgCM,14206,A boy in a karate outfit holds a trophy. People,are practicing karate in a room.,see the see the players.,are playing with the soldiers.,squeeze the white mallet money.,hang on the sidelines.,gold1-orig,pos,unl,unl,unl,unl,A boy in a karate outfit holds a trophy.,People\nanetv_32H1n87WgCM,17704,Several pictures of the karate boy are shown as well as him battling another child. His coach,is then interviewed as well as the young child and continues showing more shots of his moves.,asks another man to play drums in a skate park.,comes to after someone aiming.,uses the equipment to distract the bull by punching and kicking it up.,,gold0-orig,pos,unl,unl,unl,n/a,Several pictures of the karate boy are shown as well as him battling another child.,His coach\nanetv_xBtOxEIETtk,6172,A man is seen performing break dancing moves in the middle of a city square while people walk in and out of frame. The man,continues to dance around and hold poses while looking back to the camera.,performs several tricks on times while the camera pans over to a man standing to the counter.,continues to do tricks and ends by bouncing up and down on a side.,continues spins the object around and then ends with the man passing it.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen performing break dancing moves in the middle of a city square while people walk in and out of frame.,The man\nanetv_hHpcr5tYWso,1182,\"An Asian woman with black hair in beige jacket and printed blouse, is talking in front of the camera. Four black and white kites with blue and yellow diamond print on them are flying from the ground, a green octopus, dragons and other shapes of kites\",\"are flying in the sky, while men in red pull the kites.\",are given to light the parachute.,begin to with different forms of the smoke and tires are pulled out of a pile of grass.,are shown around the screen.,\"are shown, and then the women talks?\",gold0-orig,pos,unl,unl,pos,pos,\"An Asian woman with black hair in beige jacket and printed blouse, is talking in front of the camera.\",\"Four black and white kites with blue and yellow diamond print on them are flying from the ground, a green octopus, dragons and other shapes of kites\"\nlsmdc0032_The_Princess_Bride-66488,1045,\"And as his Warriors attack - - someone goes wild, and maybe the Warrior's are good, maybe they are even better than that - - but they never get a chance to show it because this is something now. For a moment he just\",\"stands there, sword in hand.\",can't see someone's face.,\"looks up at seeing someone, tries to keep a seductive expression to her right and sits.\",\"moved toward someone, kneeling down and in her long socks and some towels back from the half attached above his right leg.\",looks at the house.,gold0-orig,pos,unl,unl,unl,unl,\"And as his Warriors attack - - someone goes wild, and maybe the Warrior's are good, maybe they are even better than that - - but they never get a chance to show it because this is something now.\",For a moment he just\nlsmdc0032_The_Princess_Bride-66488,1047,Then he does a most unexpected thing. He,turns and runs the hell away.,is being pulled across the field.,\"launches, tosses away at the chain and flutters his arms over the screen.\",is little surprised by himself.,smirks as he takes a final bite.,gold0-orig,pos,unl,unl,unl,unl,Then he does a most unexpected thing.,He\nlsmdc0032_The_Princess_Bride-66488,1052,He is very surprised and pleased. And he,\"is running, dashing through corridors and as he glances back.\",wears a delicate blonde with short hair.,gets up and takes it in the sink.,sees something grow pleasantly and kisses quickly as he goes.,applies a bandanna to his look.,gold0-orig,pos,unl,unl,unl,unl,He is very surprised and pleased.,And he\nlsmdc0032_The_Princess_Bride-66488,1051,Someone gently stops the King and places a kiss on his forehead. He,is very surprised and pleased.,\"knocks a jacket umbrella over his head, throws it down.\",takes a cigarette from his top.,sits up and gently places someone's hair on his shoulder.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gently stops the King and places a kiss on his forehead.,He\nlsmdc0032_The_Princess_Bride-66488,1046,\"For a moment he just stands there, sword in hand. Then he\",does a most unexpected thing.,looks on someone toward the step lifeboat.,\"kicks himself up and moves to both feet and runs up, quickly.\",takes out the quill.,shoves someone and the ship suddenly.,gold0-reannot,pos,unl,unl,unl,unl,\"For a moment he just stands there, sword in hand.\",Then he\nlsmdc0032_The_Princess_Bride-66488,1049,\"And someone flies through as someone heads back to someone. Someone, more sprightly,\",is several paces ahead.,comes in and climbs the bus while someone watches with tears in his eyes.,watch someone with someone.,begins racing towards the camp.,rushes into a cart.,gold0-reannot,pos,unl,unl,unl,unl,And someone flies through as someone heads back to someone.,\"Someone, more sprightly,\"\nlsmdc0032_The_Princess_Bride-66488,1050,\"Someone, more sprightly, is several paces ahead. Someone\",gently stops the king and places a kiss on his forehead.,continues to gaze up at the water.,is approaching a tractor - wash.,moves them to slide down the lip of the bar.,walks up behind a shelf and takes on a newspaper.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone, more sprightly, is several paces ahead.\",Someone\nanetv_4gQpW3zR-Aw,4113,One man leads the camera around with the person on top and people recording them from the sides. The man lays the camel down for the person to climb off and the rider,smiles and waves to the camera.,wheel again while standing on the camel.,moves backwards while another man's shown running.,rides the fence away in the end.,falls off the saddle and rides a horse while continuing on the dirt way.,gold0-orig,pos,unl,unl,unl,pos,One man leads the camera around with the person on top and people recording them from the sides.,The man lays the camel down for the person to climb off and the rider\nanetv_4gQpW3zR-Aw,4112,A group of men are seen leading a camel around while a person rides on top of the camel. One man,leads the camera around with the person on top and people recording them from the sides.,falls down and stretches as the people continue to walk through towards the yard.,pets the dog as they continue to push the camel on the floor.,rides on the horse while the camera pans around to the people.,lifts his leg up and walks off the side while the other watches.,gold1-reannot,pos,unl,unl,unl,unl,A group of men are seen leading a camel around while a person rides on top of the camel.,One man\nanetv_lwqSz2Q2L-E,17306,A woman is seen sitting on a stool smoking a cigarette and looking off into the distance. The woman,blows smoke into the air as the camera captures her from several angles continuously smoking.,continues spinning herself around on the couch while speaking to the camera.,talks to the camera while rubbing a piece of paper around her.,continues speaking while slices on video and pointing it around.,clearing up on the fence and speaks to the camera and continues to talk.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen sitting on a stool smoking a cigarette and looking off into the distance.,The woman\nanetv_m0u1kjhlHJ4,7490,\"He hits the ball, setting a game into motion. The players fight over the ball,\",getting it into the goal and the audience cheers.,recovering the ball as someone goes backward into the net.,trying to win it soon.,trying to prevent the matador.,,gold1-orig,pos,unl,unl,unl,n/a,\"He hits the ball, setting a game into motion.\",\"The players fight over the ball,\"\nanetv_m0u1kjhlHJ4,7489,\"A man puts a ball on the ground, then throws a flag. He\",\"hits the ball, setting a game into motion.\",\"jumps a hand in the air, and lands hard on the floor.\",pass on front the goal.,imitates the man to the ice display bowl.,\"of helmet and yellow team takes them down, people coaches them and a man sits in front of him.\",gold0-orig,pos,unl,unl,unl,unl,\"A man puts a ball on the ground, then throws a flag.\",He\nanetv_m0u1kjhlHJ4,7491,\"The players fight over the ball, getting it into the goal and the audience cheers. The game\",continues as the players compete.,is played and it runs away.,is being served while the spectators ready to play the game.,disappears in the end and the girl scores more lines.,ends and the players begin to score and run off by the player.,gold0-orig,pos,unl,unl,unl,unl,\"The players fight over the ball, getting it into the goal and the audience cheers.\",The game\nanetv_p9hJmlWGvFI,18650,Two teams play a game of beach soccer. A goal,is scored from far away on the opposite side of the field.,is made for jumping.,is scored for the player in the goal and celebrates.,is scored at the formation.,is as the player is on the lift.,gold1-orig,pos,unl,unl,unl,unl,Two teams play a game of beach soccer.,A goal\nanetv_p9hJmlWGvFI,7922,A small group of people are seen playing soccer and team mates cheering. A person,scores a goal several times and cheers with team mates.,turns around walking away.,\"jumps on front a goal, while the game continues, running and begins getting mixed and shown as well.\",sits on the stands watching the players.,is seen talking to the camera.,gold0-orig,pos,unl,pos,pos,pos,A small group of people are seen playing soccer and team mates cheering.,A person\nanetv_p9hJmlWGvFI,18652,A man scores with a bicycle kick. A news anchor,covers the events in a studio.,reports on a small screen.,plays in the background.,holds up a trophy.,pass down the grandmaster.,gold0-orig,pos,unl,unl,unl,unl,A man scores with a bicycle kick.,A news anchor\nanetv_p9hJmlWGvFI,18651,A goal is scored from far away on the opposite side of the field. A man,scores with a bicycle kick.,is throwing darts hit the net.,plays a cricket game with a shot of hockey player.,throws a disc across the field.,,gold0-orig,pos,unl,unl,pos,n/a,A goal is scored from far away on the opposite side of the field.,A man\nanetv_p9hJmlWGvFI,7923,A person scores a goal several times and cheers with team mates. The game,continues and leads into a woman speaking to the camera.,ends and the boy watches the boy play the game of soccer.,\"ends and they celebrate stand by cheering and other team of mates, who play polo balls.\",ends with other people in the audience eat cheer and look at their team.,ends with a replay of the closing captions shown on the screen.,gold0-reannot,pos,unl,unl,pos,pos,A person scores a goal several times and cheers with team mates.,The game\nlsmdc3082_TITANIC1-38742,14469,\"Someone looks down and blinks and nods to himself. Lying on her stomach on the panel, someone\",moves toward someone and leans her forehead against his.,picks her purse and lifts her to her feet and places his hand over her mouth.,stares toward her breasts as she groggily begins to kiss her back.,holds her head to his hands.,consciously pulls off her sock.,gold1-orig,pos,unl,unl,pos,pos,Someone looks down and blinks and nods to himself.,\"Lying on her stomach on the panel, someone\"\nlsmdc3082_TITANIC1-38742,14467,Tries to pull himself on to the panel as well but it tips under their combined weight. Someone,holds on to the panel as he floats in the water beside her.,\"go out, though someone: and slips into a dotted with small wallpaper.\",\"'s diving suit, the mac - plops still on it, moves slightly to the other side of the door.\",straightens a little.,are on tiles on the floor inside of a factory.,gold1-orig,pos,unl,unl,pos,pos,Tries to pull himself on to the panel as well but it tips under their combined weight.,Someone\nlsmdc3082_TITANIC1-38742,14473,\"Sitting in a lifeboat beside someone, someone closes her eyes. Furrowing her brow, someone\",looks around at the other people in the boat who avert their gaze.,looks down at someone.,allows an amused smile.,\"smiles, then leans back on a ledge.\",swallows and leans forward.,gold0-orig,pos,pos,pos,pos,pos,\"Sitting in a lifeboat beside someone, someone closes her eyes.\",\"Furrowing her brow, someone\"\nlsmdc3082_TITANIC1-38742,14463,Someone tows someone by her life vest. They,swim out of the mass of survivors.,light from the sunbeams.,tent behind their sailor's exam desk.,avoids his gaze as the man gathers the clear supply.,artest hits herself up against the table.,gold0-orig,pos,unl,unl,unl,unl,Someone tows someone by her life vest.,They\nlsmdc3082_TITANIC1-38742,14464,They swim out of the mass of survivors. Someone,leads her to a flat piece of wood floating on the surface.,pushes the packard away to reveal the boards on the unicorn's rim.,lands on a haughty wind - swept beach.,\"follows, taking a pack of gallon serum.\",explodes with trucks as lightning arcs all around the walls.,gold1-orig,pos,unl,unl,unl,unl,They swim out of the mass of survivors.,Someone\nlsmdc3082_TITANIC1-38742,14465,Someone leads her to a flat piece of wood floating on the surface. Someone,pulls herself on to the elaborately carved panel.,emerges from the shaft.,turns and walks up to another row of fake shacks.,watches the ship up to the crewman as someone walks quickly towards someone's body and wakes up once more.,\"pushes the puck up and down, but she no longer slides under the water.\",gold0-orig,pos,unl,unl,unl,unl,Someone leads her to a flat piece of wood floating on the surface.,Someone\nlsmdc3082_TITANIC1-38742,14461,Someone swims through the mass of people. One man,grabs on to someone and shoves her underwater as he tries to climb on top of her.,tumbles several stories up from a low tower.,sits against icy white wall.,chucks someone into the back car.,,gold0-orig,pos,unl,unl,unl,n/a,Someone swims through the mass of people.,One man\nlsmdc3082_TITANIC1-38742,14470,\"Lying on her stomach on the panel, someone moves toward someone and leans her forehead against his. Their breath\",is visible in the cold air.,streams down one cheek.,surrounds the tinted night sky.,trails behind them as he brushes her back with his teeth.,fills the sky with a warm appreciative of the sunset.,gold0-orig,pos,unl,unl,unl,pos,\"Lying on her stomach on the panel, someone moves toward someone and leans her forehead against his.\",Their breath\nlsmdc3082_TITANIC1-38742,14462,One man grabs on to someone and shoves her underwater as he tries to climb on top of her. Someone,punches the hysterical man in the face until he releases someone.,looks up from her forearm.,holds up the syringe.,\"glares at someone, then eyed the tomato.\",,gold0-orig,pos,unl,unl,unl,n/a,One man grabs on to someone and shoves her underwater as he tries to climb on top of her.,Someone\nlsmdc3082_TITANIC1-38742,14471,\"Their breath is visible in the cold air. Clinging to a nearby piece of debris, a crewman\",blows into a whistle.,prods an enormous sideboard.,\"forces his way into the boat and fends of someone, knocking him over.\",opens a document case to reveal a industrial towns screen.,,gold1-orig,pos,unl,unl,unl,n/a,Their breath is visible in the cold air.,\"Clinging to a nearby piece of debris, a crewman\"\nlsmdc3082_TITANIC1-38742,14472,\"Clinging to a nearby piece of debris, a crewman blows into a whistle. Someone's blue lips\",tremble as she smiles weakly.,curl into a patient frown.,lock into a reload.,curl into a slight smile as she faces someone's daughter.,curl into a grin.,gold0-orig,pos,unl,unl,pos,pos,\"Clinging to a nearby piece of debris, a crewman blows into a whistle.\",Someone's blue lips\nlsmdc3082_TITANIC1-38742,14466,Someone pulls herself on to the elaborately carved panel. Tries to pull himself on to the panel as well but it,tips under their combined weight.,is disturbed by more ridges.,finally stops staying while talking.,is completely darkened at the end.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pulls herself on to the elaborately carved panel.,Tries to pull himself on to the panel as well but it\nlsmdc3082_TITANIC1-38742,14460,Two men try to grab onto a bobbing barrel which spins out of their grasps. Someone,swims through the mass of people.,see the men crossing the water by gantry towards each other.,\"then swims back as the flames increase to the right and turn fallen, save him.\",falls into the shimmering sky.,kicks a cop rope on the landing.,gold0-reannot,pos,unl,unl,unl,unl,Two men try to grab onto a bobbing barrel which spins out of their grasps.,Someone\nanetv_-LtQMRfj0eM,11010,The man trims a set of small palm trees. The camera,focuses on the finished palm trees and cut branches on the ground below.,moves the red and red plant around the family tree.,captures the image of the man pushing the bag on the grass.,pans to show the people mowing the floor.,rotates a man throw white which she bow blue.,gold0-orig,pos,unl,unl,unl,unl,The man trims a set of small palm trees.,The camera\nanetv_-LtQMRfj0eM,6446,He moves all along the tree cutting the sides all around. He,continues cutting the tree while the camera watches him from several angles.,grabs all of the sauce and cuts it away on the end.,continues to apply some wheel as he progresses steadily.,continues measuring and cutting up a strip of cake.,,gold0-orig,pos,unl,unl,unl,n/a,He moves all along the tree cutting the sides all around.,He\nanetv_-LtQMRfj0eM,6445,A man is seen walking into frame with a chainsaw and begins using it on a tree. He,moves all along the tree cutting the sides all around.,spins around a bit while putting down the clothes and finally lifting the branches off.,puts the paint down and continues climbing the object.,begins to mop several toys around as he moves in circles and moves them all along the room.,moves all along the lawn while continuing to speak to the camera.,gold1-reannot,pos,unl,unl,unl,unl,A man is seen walking into frame with a chainsaw and begins using it on a tree.,He\nanetv_-LtQMRfj0eM,11009,A man stands on a residential front lawn with a chain saw. The man,trims a set of small palm trees.,mounts the bicycle and then shows several multiple tricks on a nearby dirt bike.,is painting the fence with a cloth.,\"stops three tools and sets up a hood to trim them, knocking them to the ground.\",rides through benches under the car where the car is now seen.,gold0-reannot,pos,unl,unl,unl,unl,A man stands on a residential front lawn with a chain saw.,The man\nanetv_iDz8nKDpumY,16117,Two people are seen riding on skis behind a boat with one person having a child on their shoulders. The people all,hang onto one another while the young child climbs on top of them and falls off in the end.,sail moving the boat back and fourth with the person moving down from below.,jump their rafts and ride the canoe again.,stand up and speak to one another.,ride back into the pool while performing various tricks around as well.,gold0-orig,pos,unl,unl,unl,unl,Two people are seen riding on skis behind a boat with one person having a child on their shoulders.,The people all\nanetv_Nosx28FNB5E,13816,People start to play a game of pool. A man,talks to the camera and laughs.,falls in front of her.,helps a woman in the pool of water.,blows down the leaves.,,gold0-orig,pos,unl,unl,unl,n/a,People start to play a game of pool.,A man\nanetv_Nosx28FNB5E,13817,A man talks to the camera and laughs. Words,are shown on the screen.,\", people try to hold the guitar playing.\",is walking of a wooden court.,are set up a top of paperwork.,shown speaking while interacting in canoe along the river in front of an audience.,gold0-orig,pos,unl,unl,unl,unl,A man talks to the camera and laughs.,Words\nanetv_lUk_dSjmIgM,19259,A young girl is cleaning the sink. The girl,gets her shirt all wet.,picks out her pink bucket and starts dries it for a while.,\"grabs a rag, places them on the sink, then walks back to the bathroom.\",spits lemon water into a bathroom bowl.,,gold0-orig,pos,unl,unl,unl,n/a,A young girl is cleaning the sink.,The girl\nanetv_lUk_dSjmIgM,19260,The girl gets her shirt all wet. The girl,points to the drain of the sink.,off and finishes her braid.,presents the rod for brushing.,throws a dart at a person.,,gold1-orig,pos,unl,unl,unl,n/a,The girl gets her shirt all wet.,The girl\nanetv_5TV-V6Cxero,12161,Another man lights the bonfire up to start the fire. The bonfire,continues burning as the fireworks crackle in the pit.,continues on taking more and after they pull the ax up.,pulls the bottom of a fish out of it and searches for the fire.,\"storms pours into a vast circular living room, a glowing white orb.\",,gold0-orig,pos,unl,unl,unl,n/a,Another man lights the bonfire up to start the fire.,The bonfire\nanetv_5TV-V6Cxero,12160,One of the men picks up a gasoline can and ours some of it into the campfire pit. Another man,lights the bonfire up to start the fire.,\"is sitting and a dog, smoking and smoking in the field.\",appears with a sail and a water tank.,is seen sitting across his street looking to the camera from a different chair as well as the camera sitting behind it.,,gold1-orig,pos,unl,unl,unl,n/a,One of the men picks up a gasoline can and ours some of it into the campfire pit.,Another man\nanetv_5TV-V6Cxero,12157,A shirtless man is standing on porch while instructing how to build a redneck fire. He,shows a beer bottle and some other alcohol cans.,can tell he is n't finding the penguin to do several hand movements in the bathroom.,is talking and walking on the exercise stool in front of the camera.,is put on ground carpet.,steps back along the back of the court and starts to lay his shoes off.,gold1-orig,unl,unl,unl,unl,unl,A shirtless man is standing on porch while instructing how to build a redneck fire.,He\nanetv_5TV-V6Cxero,12162,The bonfire continues burning as the fireworks crackle in the pit. One of the instructors,comes back and point to the redneck campfire.,lighting off the flag and is carried past.,is on a very deep party among the crowd.,begins to clap after the movement crowd the next player.,is a complete winner.,gold1-reannot,pos,unl,unl,unl,unl,The bonfire continues burning as the fireworks crackle in the pit.,One of the instructors\nanetv_5TV-V6Cxero,12159,He demonstrates a campfire that he has set up in a pit. There,are three men standing near the campfire pit to demonstrate step three.,\", he uses a fire and moves to burn a fish in the grass.\",\"in air with a hose, he goes forward with his ax, using his hand to hit the wood.\",is another bow and he then adds a plastic bucket.,,gold0-reannot,pos,unl,unl,unl,n/a,He demonstrates a campfire that he has set up in a pit.,There\nlsmdc3059_SALT-28834,3476,\"On a hallway, the housekeeping woman removes garments from a rack of laundered clothes and takes them into a guest's room. Passing the rack, someone\",snatches a garment in each hand without breaking her stride.,strolls to more stacks.,\"finds two pens in a cabinet between her, someone, and someone sitting at the table in front of the laptop.\",finds an outdoor box loaded with wine and stacks of chips.,,gold0-orig,pos,unl,unl,unl,n/a,\"On a hallway, the housekeeping woman removes garments from a rack of laundered clothes and takes them into a guest's room.\",\"Passing the rack, someone\"\nlsmdc3059_SALT-28834,3484,\"Someone crosses to a window, pulls the drapes aside a few inches and peers out. St. Bartholomew's Cathedral\",\"stands almost directly across the street, softly illuminated by outdoor flood lamps.\",\", someone allows her to scoot all over the floor.\",\"he sits along with someone, and steals a swig.\",\", she stuffs her foot in the pockets of her wet pants.\",films themselves through the rain.,gold0-orig,pos,unl,unl,unl,unl,\"Someone crosses to a window, pulls the drapes aside a few inches and peers out.\",St. Bartholomew's Cathedral\nlsmdc3059_SALT-28834,3473,\"Someone holds her by the crook of her elbow. Taking his hand, she\",presses her lips to it.,\"shoves it against her neck, ending the call.\",puts his fingers in the seed of mouth.,tries to hold himself.,nibbles a god of suds.,gold0-orig,pos,unl,unl,unl,unl,Someone holds her by the crook of her elbow.,\"Taking his hand, she\"\nlsmdc3059_SALT-28834,3486,\"Back in the present, she dyes her hair dark. Daytime, rooftop secret service snipers\",monitor a funeral procession.,is visits to a home.,bears a receding moustache.,leads up to a packed offices.,,gold0-orig,pos,unl,pos,pos,n/a,\"Back in the present, she dyes her hair dark.\",\"Daytime, rooftop secret service snipers\"\nlsmdc3059_SALT-28834,3480,She removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes. Now she,\"lays out an assortment of handguns, ammunition and hardware on the bed.\",\"drives his car through the sunlit window - side window, looks over his shoulder at the lawyer who stares at him.\",\"wears her hats as a couple knows the specifics of a group of older men with boots, and her mother.\",packs a copy of the file from someone's aunt.,,gold1-orig,pos,unl,unl,pos,n/a,She removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes.,Now she\nlsmdc3059_SALT-28834,3475,\"Someone leans close and kisses the top of her blonde head. Back in the present, someone\",shifts her listless gaze.,lies un - naked before a dark - haired girl with his hands folded.,scribbles on a sandwich as someone pulls off into the study.,checks his gaze phone.,closes his eyes as she heads out.,gold0-orig,pos,unl,unl,unl,pos,Someone leans close and kisses the top of her blonde head.,\"Back in the present, someone\"\nlsmdc3059_SALT-28834,3479,Someone retrieves a jewelry box from a plastic bag containing cash and passports. She,removes a set of false teeth from her mouth then takes out a pair of darkly tinted contact lenses from her pale blue eyes.,glances at her young son then plunges out of the frame.,takes off her glasses and puts on a pair of glasses.,\"walks over, and a little white cardigan is on top of it.\",pulls her purse off the counter and steals a note from someone.,gold1-orig,pos,unl,unl,unl,unl,Someone retrieves a jewelry box from a plastic bag containing cash and passports.,She\nlsmdc3059_SALT-28834,3477,\"Depositing her backpack on the bed, she moves through the space, examining it with a keen perceptive gaze. She\",peers into a bathroom then returns to the bedroom and removes her knit cap.,returned the pace with his father at a nearby computer station.,runs over to him and places her hand on his.,descend to the flat gate where seconds are lit.,,gold0-orig,pos,unl,unl,unl,n/a,\"Depositing her backpack on the bed, she moves through the space, examining it with a keen perceptive gaze.\",She\nlsmdc3059_SALT-28834,3482,\"Later someone uses a needle to draw clear venom from the spider. By her open laptop, a printer\",\"ejects a page headed, subway system access tunnels.\",runs from his mouth and produces texts.,shows someone who folds up her sweater hanging on the cellphone.,shows the name a message that needs to read.,slides out the message on a map.,gold0-orig,pos,unl,unl,unl,unl,Later someone uses a needle to draw clear venom from the spider.,\"By her open laptop, a printer\"\nlsmdc3059_SALT-28834,3474,\"Taking his hand, she presses her lips to it. Someone\",leans close and kisses the top of her blonde head.,holds her closed as she heads into the daylight.,opens it and looks at it.,holds her hands aside and lifts him over her lips.,,gold0-orig,pos,unl,unl,unl,n/a,\"Taking his hand, she presses her lips to it.\",Someone\nlsmdc3059_SALT-28834,3478,She peers into a bathroom then returns to the bedroom and removes her knit cap. Someone,retrieves a jewelry box from a plastic bag containing cash and passports.,\"through her arched round mirror, a adjacent bathroom shows the window panes allowing pastel chain mesh to the wall.\",\"beams after someone, staying on to safety.\",stand before a bus.,,gold0-reannot,pos,unl,unl,unl,n/a,She peers into a bathroom then returns to the bedroom and removes her knit cap.,Someone\nlsmdc3059_SALT-28834,3483,\"By her open laptop, a printer ejects a page headed, Subway System Access Tunnels. Someone\",\"crosses to a window, pulls the drapes aside a few inches and peers out.\",firmly removes a ironed shirt.,hauls the praying removal logo toward them.,steps from the train under a busy road.,\"descends hard thrust into her ward, screaming.\",gold0-reannot,pos,unl,unl,unl,unl,\"By her open laptop, a printer ejects a page headed, Subway System Access Tunnels.\",Someone\nanetv_0YQPGAsZPgY,8324,A man next to him begins to hit a stick against a metallic percussion instrument. The man playing the bongos,knocks one of them over at which point the man next to him sets the bongo upright again.,stops the drum and then switches away to it.,offers a song to the gymnast.,keeps one foot away.,starts everything beat.,gold0-orig,pos,unl,unl,unl,pos,A man next to him begins to hit a stick against a metallic percussion instrument.,The man playing the bongos\nanetv_0YQPGAsZPgY,8323,A man plays bongos in an animated fashion while a woman next to him plays the keyboard and a man behind him plays guitar. A man next to him,begins to hit a stick against a metallic percussion instrument.,demonstrates how to do gymnastics on the piano.,plays the bagpipes while singing and playing the drums.,drops the violin and shakes his hands in frustration and curtsies before they join him.,talks while the woman making various toys from a trick.,gold0-reannot,pos,unl,unl,unl,unl,A man plays bongos in an animated fashion while a woman next to him plays the keyboard and a man behind him plays guitar.,A man next to him\nanetv_UYhKDweME3A,14201,\"Then, the man puts the spaghetti in the bowling pot. After, the man\",taste the spaghetti and drain it.,adds garlic to a living bowl.,make lemonade into a blue cup.,puts salt on the glass of a blender.,puts the pasta into the pot and adds more ingredients.,gold0-orig,pos,unl,unl,unl,pos,\"Then, the man puts the spaghetti in the bowling pot.\",\"After, the man\"\nanetv_UYhKDweME3A,14202,\"After, the man taste the spaghetti and drain it. Next, the man\",adds grated cheese and oil on the spaghetti.,opens a large knife at the dish.,adds sprinkles creating butter.,sets the plate and sink on the lower plate of well and goes to put the dishes in the oven.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the man taste the spaghetti and drain it.\",\"Next, the man\"\nanetv_FTmGHtBdWi0,11689,Two men meet in a booth and sit down. They,begin a game of arm wrestling.,\", glowers and employee traffic.\",are engaged in a game of ping pong.,\"are standing, talking to each other.\",can tell what she wants to do.,gold1-orig,pos,unl,unl,unl,pos,Two men meet in a booth and sit down.,They\nanetv_FTmGHtBdWi0,18657,\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and then wins by pushing the man's hand down. A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they\",\"'re both shaking, and once again the man on the right wins.\",continue sliding and the others smile and clap their hands.,are standing then stop.,shake hands and shake hands.,,gold0-orig,pos,unl,unl,pos,n/a,\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and then wins by pushing the man's hand down.\",A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they\nanetv_FTmGHtBdWi0,11690,They begin a game of arm wrestling. They,push and pull until there is a winner.,see someone on the beam.,are shown in a boat.,watch a game of lockers.,\"stand five, ready to start wrestling.\",gold0-orig,pos,unl,unl,unl,pos,They begin a game of arm wrestling.,They\nanetv_FTmGHtBdWi0,18656,\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they start to arm wrestle. Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and\",then wins by pushing the man's hand down.,misses them again to the kids.,spins before his back while still dancing and clapping with them.,there's a man talking to seeing his partner at seeing him.,doing them all together and hurt them but when they've done their frosting there are a recap of the end.,gold0-orig,pos,unl,unl,unl,unl,\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they start to arm wrestle.\",\"Something goes wrong and a black screen appears and said redo!, so they begin again and they're both struggling to win and the man on the right screams, and\"\nanetv_FTmGHtBdWi0,18655,\"Two very muscular men wearing tanktops appear talking and the text on the screen say's that the name of the person is Alon Gabbay and the second man's name is Jeff Said. The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they\",start to arm wrestle.,'re just cheering going to music beginning.,shake up a bottle on a fax machine while the host is facing them.,fly into the camera assisting them.,begin jumping stand as best and then doing several flips.,gold0-orig,pos,unl,unl,unl,unl,Two very muscular men wearing tanktops appear talking and the text on the screen say's that the name of the person is Alon Gabbay and the second man's name is Jeff Said.,\"The two men then sit down at a table, shake hands and a black screen say's Round 1 begin and they\"\nanetv_FTmGHtBdWi0,18658,\"A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they're both shaking, and once again the man on the right wins. The winner smiles, flexes his two arms, stands up, shows his arm muscles and he\",sits down on another table.,goes into the floor.,drops his shirt before him to ride away.,turns away and follows an others down.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A black screen appears and the white words on the screen say Left Hand and the men start arm wrestling with their left hands and they're both really trying to win and they're both shaking, and once again the man on the right wins.\",\"The winner smiles, flexes his two arms, stands up, shows his arm muscles and he\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15148,The teen hides in the trunk of a car. Someone,drives past a police car.,imitates eating as someone gets up.,\"moves backward out front, landing in.\",grasps his shoulder and pushes him onward.,\"smacks him hard, his jaw hanging slack.\",gold1-orig,pos,unl,unl,pos,pos,The teen hides in the trunk of a car.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15155,The older man wears a nasal breathing tube. Someone,meets someone at the front door.,draws a bruised tooth and holds out the bloody logo.,looks down on three glasses of beer.,clutches the water tightly.,goes to a person's passenger window.,gold1-orig,pos,unl,unl,unl,unl,The older man wears a nasal breathing tube.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15147,Someone hides in a storage tunnel. The teen,hides in the trunk of a car.,digs into a pumpkin.,swivels his gun on his hand - held firearms.,gives a silencer which letters lining up from the window glass then heads off.,\"takes her hand, points hurriedly, and plugs in someone.\",gold0-orig,pos,unl,pos,pos,pos,Someone hides in a storage tunnel.,The teen\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15153,He picks up a thick file. He,drops it on his desk.,\"turns and finds someone, standing behind them to let her read.\",\"breaks a few blank pages, dropping a thin and crumpled note.\",takes it from his plate and picks up the broom.,,gold0-orig,pos,unl,unl,unl,n/a,He picks up a thick file.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15145,Young someone ducks behind a boatshed. She strikes him with an oar and he,falls off the docks.,kicks it over to maximilian.,scrambles upon her with a cheery wave.,pounds him through a canvas.,,gold0-orig,pos,unl,unl,unl,n/a,Young someone ducks behind a boatshed.,She strikes him with an oar and he\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15151,\"Now, someone, someone, and someone wait in someone's study. Someone\",wheels someone into the room.,drives down a winding road.,meets his gaze on the floorboards as he drinks.,packs clothes into a closet.,brings a tray to someone and grabs her.,gold1-orig,pos,unl,unl,unl,pos,\"Now, someone, someone, and someone wait in someone's study.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15150,\"Someone returns her gaze to someone. Now, someone, someone, and someone\",wait in someone's study.,hurry up a flight of stairs in a new deposit room.,climb a smoking tower in a decrepit - lined wall.,wait into a clearing corridor.,stand up from a railing outside an church building.,gold1-orig,pos,unl,unl,unl,unl,Someone returns her gaze to someone.,\"Now, someone, someone, and someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15157,\"Someone leaves someone who wheels himself toward her, his lips curled downward. Behind him, someone and someone\",step into the hall.,step off abruptly near someone.,lie asleep in bed as the man leaves.,enter an empty room.,exchange an angry look.,gold1-orig,pos,unl,unl,unl,unl,\"Someone leaves someone who wheels himself toward her, his lips curled downward.\",\"Behind him, someone and someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15149,They look at someone who leans against a brick wall across the park. Someone,returns her gaze to someone.,listens in with doleful eyes.,turns away from the radio.,\"looks over to someone, then looks over.\",leans over and takes a seat.,gold1-reannot,pos,unl,unl,pos,pos,They look at someone who leans against a brick wall across the park.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15152,Someone wheels someone into the room. He,picks up a thick file.,throws the pillow near him and pulls him out.,dumps cash on his hands.,slides the phone on his shoulder.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone wheels someone into the room.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-34520,15158,\"Holding her uncle's gaze, someone caresses the lapel of her coat self - soothingly. He\",peers back his gaze crestfallen and disbelieving.,reaches out its case and grabs a casual stole.,presents her back to him.,\"crosses her arms down the front of her dress and moves toward him, unloading his buckets by hand as they descends.\",knits his brow with a gentle gaze.,gold1-reannot,pos,unl,unl,unl,pos,\"Holding her uncle's gaze, someone caresses the lapel of her coat self - soothingly.\",He\nanetv_jmmOBfS3JIg,11223,A man in dress shirt taps his cloth on the spout of a glass container to get it damp. The man,uses his cloth wrapped around his index and middle finer to polish a shoe.,starts peeling and places a finger through his paint then has a sticky solution in his mouth.,walks down the stairs to the pool next to his face.,carries the small dog under it then rolls it over it in his wake.,takes it and brings it to his lips to wring it out.,gold0-orig,pos,unl,unl,unl,unl,A man in dress shirt taps his cloth on the spout of a glass container to get it damp.,The man\nanetv_jmmOBfS3JIg,11225,The man rubs his cloth in a shoe polish tin for more of the substance. The man,continues to polish the show around the toe of the shoe.,removes a knife tucked beneath his chair revealing a sharp bowl with sticky sticks.,lifts the towel and washes the smiling items.,uses a plastic pallet to cover the tiles.,,gold0-orig,pos,unl,unl,unl,n/a,The man rubs his cloth in a shoe polish tin for more of the substance.,The man\nanetv_jmmOBfS3JIg,11224,The man uses his cloth wrapped around his index and middle finer to polish a shoe. The man,rubs his cloth in a shoe polish tin for more of the substance.,is finally doing a hard shining mist on the top of a mixed body of wall table and wearing the clothes.,sprinkles them over the newly created strip of iron.,talks to the camera and shows off her muscles at the end of the show.,,gold0-orig,pos,unl,unl,unl,n/a,The man uses his cloth wrapped around his index and middle finer to polish a shoe.,The man\nanetv_jmmOBfS3JIg,11226,The man again rubs his cloth in the tin for more polish. The man,continues to polish the show around the toe of the shoe near the toe in a circular motion.,paints the boy and both begins spraying the fence with some different measuring designs.,\"uses a metal bowl to rub the back of it repeatedly, then wagging it off again.\",applies a large can of paint to the plastic.,continues some more with the other broom.,gold0-reannot,pos,unl,unl,unl,unl,The man again rubs his cloth in the tin for more polish.,The man\nanetv_pzZ4TGcMK1k,19002,\"Swimmer stand on the diving boards, then they jump spinning in the air and diving in the water. Swimmers jump from the diving board, they\",spins three times in the air before to dive inn the water.,are followed by a man in a black shirt and medieval gear.,fall as the water swim around them.,float all a bit and begin diving into the pool.,,gold0-orig,pos,unl,unl,pos,n/a,\"Swimmer stand on the diving boards, then they jump spinning in the air and diving in the water.\",\"Swimmers jump from the diving board, they\"\nanetv_pzZ4TGcMK1k,19001,\"People stand on the border of the diving boards and they dive while in the water. Swimmer stand on the diving boards, then they\",jump spinning in the air and diving in the water.,continue on the surface.,start to dive into a locomotive broad divers kicking humans.,run and flip a few times before everyone does stand before.,swim through the water onto the water below.,gold0-orig,pos,unl,unl,unl,pos,People stand on the border of the diving boards and they dive while in the water.,\"Swimmer stand on the diving boards, then they\"\nlsmdc3044_KNOCKED_UP-20885,11913,Someone touches her throat and heaves forward. She,claps a hand over her mouth.,\"closes her eyes, then turns to a purple - haired helper.\",\"lies in the sack, and pulls a bandage to her forehead.\",looks at someone and shakes her head.,\"leaves someone, lying on the blanket.\",gold0-reannot,pos,unl,unl,pos,pos,Someone touches her throat and heaves forward.,She\nanetv_k7MXH55q28U,18444,\"Once the rope is inside the hook, he begins moving up the wall but shortly after he stops and begins talking. The male then\",begins talking about the clip again and goes back up the wall.,takes a rock and bounces it on the ground.,goes back to the wall and pauses and bows.,begins to clear all the way and places onto the floor.,begins pulling back a rope into the mouthpiece.,gold0-orig,pos,unl,unl,unl,pos,\"Once the rope is inside the hook, he begins moving up the wall but shortly after he stops and begins talking.\",The male then\nanetv_k7MXH55q28U,18443,\"As the man is still holding on, he describes how the hooks work and clips it on to the rope. Once the rope is inside the hook, he\",begins moving up the wall but shortly after he stops and begins talking.,grabs it into the wire and then walks back to the other rope and another flag that falls onto the wall.,\"network down the line on a rope chain attached to the wire and tips the rope forward, filming it.\",\"is running back and forth, jumping into the water sitting.\",,gold0-orig,pos,unl,unl,unl,n/a,\"As the man is still holding on, he describes how the hooks work and clips it on to the rope.\",\"Once the rope is inside the hook, he\"\nanetv_k7MXH55q28U,18445,\"The male then begins talking about the clip again and goes back up the wall. As he progresses, there are hooks everywhere on the wall and when he gets near them, he\",puts his rope inside of it for support and safety.,uses the proper diagon against around some stepfather run and be building as obstacles on trims.,\"react to viewers, smiling, enjoying the film and showing on her dates square.\",did all drills in elastic.,grabs his flailing leg and skates dirty.,gold0-orig,pos,unl,unl,unl,unl,The male then begins talking about the clip again and goes back up the wall.,\"As he progresses, there are hooks everywhere on the wall and when he gets near them, he\"\nanetv_k7MXH55q28U,18442,\"A male is attached to a harness and has one of his hands on an indoor rock climbing wall. As the man is still holding on, he\",describes how the hooks work and clips it on to the rope.,dives off a rock and solves it while pushing it down and pulling the cord.,is down talking and making a hard jump in the water and jerking as he attempts to skip.,stands up and walks along the monkey bars.,picks up speed and falls on his back.,gold1-orig,pos,unl,unl,unl,pos,A male is attached to a harness and has one of his hands on an indoor rock climbing wall.,\"As the man is still holding on, he\"\nanetv_k7MXH55q28U,10772,Man clips the rope to the silver caribiner. Man,crawls up the white - colored wall.,loses the riding and passes it up the hill.,begins pulling off the handle of the splits.,lifts the man's face and throws it on a blue mat.,,gold0-orig,pos,unl,unl,unl,n/a,Man clips the rope to the silver caribiner.,Man\nanetv_TdAfqkmTrf0,1561,Players are running around playing lacrosse on a field of grass. The audience,is watching and applauding for them.,is cheering and cheering watching.,is sitting on a net behind them watching.,celebrate as two men win back and distract the ball and celebrate.,is watching them play the game.,gold1-orig,pos,unl,unl,unl,unl,Players are running around playing lacrosse on a field of grass.,The audience\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10488,Someone arrives at the foot of the Orthanc Stairs. Someone,\"moves quickly towards him, grimy and weary from his long ride.\",grips his legs and thrusts his hips.,notices soldiers entering the secured office.,looks down at someone.,looks up as someone swaggers in.,gold1-orig,pos,unl,pos,pos,pos,Someone arrives at the foot of the Orthanc Stairs.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10487,\"Someone gallops through the gate, into the fortress of isengard. a great ring - wall of stone, a mile from rim to rim, encloses beautiful trees and gardens, watered by streams that flow down from the mountains. Someone\",arrives at the foot of the orthanc stairs.,\"has a heart, falling.\",giants run down the path amongst other adults and feet which are prune into a autumnal dust.,\"brought through, a window that illuminates the figure of a giant army, bands with skimmer.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone gallops through the gate, into the fortress of isengard. a great ring - wall of stone, a mile from rim to rim, encloses beautiful trees and gardens, watered by streams that flow down from the mountains.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59960,10489,\"People walk slowly between the beautiful trees of Isengard, someone's clean, white robe contrasts with someone's dusty grey robes. People\",\"are seated in a small, cluttered room to the side of the cavernous central chamber.\",get on either side as well.,turn to the mother.,recover the girls from behind a fireplace at the same time.,,gold0-reannot,pos,unl,unl,unl,n/a,\"People walk slowly between the beautiful trees of Isengard, someone's clean, white robe contrasts with someone's dusty grey robes.\",People\nanetv_DEEgoxzTvdk,7292,We see the vast ocean water around us. We then,see several people as they relax on a boat.,see two men swimming in a pool where people paddle toward the water.,see various tents secluded homes.,see people riding horses in the woods.,,gold0-orig,pos,unl,unl,unl,n/a,We see the vast ocean water around us.,We then\nanetv_DEEgoxzTvdk,7291,A group of tall trees is surrounded by water. We,see the vast ocean water around us.,\"float when a sun appears, the water in full full sky scuba gear is shown.\",are standing and a group of people are pulling out the smoke and they just sound what is going on.,blows a circle of trees towards him.,\"splashes the boy's face, then sees his head, looking to the horizon.\",gold0-orig,pos,unl,unl,unl,pos,A group of tall trees is surrounded by water.,We\nanetv_u1VIetb75rs,5566,Weightlifters representing several countries are in a room. Many large men,\"lift a heavy barbell in the competition, one after the other.\",are in a large field trying to block colossus minutes and take.,engage the gymnast match in action.,\"are seen playing soccer with yoga, while flipping over and hugging each other.\",have a drink in other groups.,gold0-orig,pos,unl,unl,unl,unl,Weightlifters representing several countries are in a room.,Many large men\nanetv_u1VIetb75rs,5568,\"They hold the barbell over their head, and then receive a score on their efforts. When they are done and the victor has been declared, the top three men\",pose with their medals.,begin to look for each other as they pull away.,shake their arms in one stunt.,stand and begin the dance.,stand up to the exercise and wait for a moment before finally fall down.,gold0-orig,pos,unl,unl,unl,unl,\"They hold the barbell over their head, and then receive a score on their efforts.\",\"When they are done and the victor has been declared, the top three men\"\nanetv_u1VIetb75rs,5567,\"Many large men lift a heavy barbell in the competition, one after the other. They\",\"hold the barbell over their head, and then receive a score on their efforts.\",\"point, and then cheers as they celebrate with great forces.\",start building a new tilts up then get in when the coach talking is shown again.,run around one another while the others walk in and out of frame in their office.,begin to fight over ramps and laughing loudly.,gold0-orig,pos,unl,unl,unl,unl,\"Many large men lift a heavy barbell in the competition, one after the other.\",They\nanetv_u1VIetb75rs,6338,A man lifts a large weight over his head and drops it on the ground several times. The statistics,are shown on the screen.,are then shown again in slow motion.,are shown on the same screen.,are shown on different parts.,are still shown on the screen.,gold0-orig,pos,unl,unl,unl,pos,A man lifts a large weight over his head and drops it on the ground several times.,The statistics\nanetv_u1VIetb75rs,6339,The statistics are shown on the screen. Three men,get medals and stand on a podium.,get into parallel shot.,running out mopping the area.,throw a dart to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,The statistics are shown on the screen.,Three men\nanetv_rXwSSTGmvb8,4229,The man squeezes a halved lemon into the measurer and then into the glass. The man,adds ice to the glass.,fills the martini glass with a new straw.,\"pours the glass down, then adds a small straw into it.\",pours another drink and then strains a syrup into it.,,gold0-orig,pos,unl,unl,pos,n/a,The man squeezes a halved lemon into the measurer and then into the glass.,The man\nanetv_rXwSSTGmvb8,4231,The man pours the shaken liquid into a smaller glass. The man,picks up an orange and cuts its skin.,adds salt and broth and adds juice.,pours drinks in the the glass.,adds a vodka bottle and pours it into a glass.,mixes the ice in more liquids.,gold0-orig,pos,unl,unl,unl,unl,The man pours the shaken liquid into a smaller glass.,The man\nanetv_rXwSSTGmvb8,4225,A bald man stand behind a bar and talks and gestures. The man,touches and displays an alcohol bottle.,claps and then serves another strike before making a drink.,leans on the poles and holds his arms.,returns to the front and see several men.,,gold0-orig,pos,unl,unl,pos,n/a,A bald man stand behind a bar and talks and gestures.,The man\nanetv_rXwSSTGmvb8,4228,The man pours the alcohol into a small silver measurer and then into a the tall glass. The man,pours a liquid into the measurer and then into the glass.,hands him a cordial lions as he screws the liquid around again.,pours the lemon into milk and pours it into the glass.,tosses her hair into the air and walks back each.,lifts the left block and blows smoke into the glass.,gold1-orig,pos,unl,unl,unl,unl,The man pours the alcohol into a small silver measurer and then into a the tall glass.,The man\nanetv_rXwSSTGmvb8,129,Man is standing in front of a bar talking to the camera. man,is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it.,is doing a karate wrestler in a competition.,\"plays a saxophone on stage, and another man interviews an people.\",is sitting up holding the racket and is kicking the balls back and forth to the floor.,is standing in a roofed gym and a man and woman are standing in a circular gym.,gold0-orig,pos,unl,unl,unl,unl,Man is standing in front of a bar talking to the camera.,man\nanetv_rXwSSTGmvb8,4227,The man takes out a tall glass cup. The man,pours the alcohol into a small silver measurer and then into a the tall glass.,talks and drinks the glass of the chips.,\"takes a drink from the man and holds a bar in his mouth, then holds up a martini glass.\",puts a spare tire on the car and replace it.,\"adds several glasses of the drink, then stops to add all of the noodles in the martini glass.\",gold0-orig,pos,unl,unl,unl,unl,The man takes out a tall glass cup.,The man\nanetv_rXwSSTGmvb8,4224,The credits of the clip are shown. A bald man,stand behind a bar and talks and gestures.,is shown talking to his camera.,is riding in snow on a snowboard.,\"is demonstrating, showing how to ski.\",rides a small toy into a microphone.,gold1-orig,pos,unl,unl,unl,unl,The credits of the clip are shown.,A bald man\nanetv_rXwSSTGmvb8,4232,The man picks up an orange and cuts its skin. The man,squeezes the skin above the glass and adds it to the drink.,puts on both glasses.,faces the calf again.,drills a hole in the ice.,removes the spare tire.,gold0-orig,pos,unl,unl,unl,unl,The man picks up an orange and cuts its skin.,The man\nanetv_rXwSSTGmvb8,130,Man is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it. the man,shakes the drink and serve it in a glass.,\"start talking to the camera, holding a long stick and shaped up hits.\",in the bar explains to alcohol in the mixture.,sizes the man up and put it in an old glass.,puts a earring through the glass.,gold0-orig,pos,unl,unl,unl,unl,Man is mixing a drink in a cocktail shaker and talking to the camera showing how to prepare it.,the man\nanetv_rXwSSTGmvb8,4230,The man shakes the liquid. The man,pours the shaken liquid into a smaller glass.,pulls the leaves out of the bottle.,sprays sunscreen on both hand and applies powder into the handle.,adds powder to the glasses.,turns to the woman.,gold0-orig,pos,unl,unl,unl,unl,The man shakes the liquid.,The man\nanetv_rXwSSTGmvb8,4226,The man touches and displays an alcohol bottle. The man,takes out a tall glass cup.,mixes the rubbing bottles next to a mirror.,finishes the drink of the cup and drink.,sips the mouthwash and gets up as he drinks from the cup.,picks up a bottle then drinks from the table.,gold0-orig,pos,unl,unl,unl,pos,The man touches and displays an alcohol bottle.,The man\nlsmdc3074_THE_ROOMMATE-3908,10237,\"Someone crosses back to her own bed. Flopping down with a slight pout, she\",puts in ear buds and picks on her stalls.,cringes at her knee.,nudges her foot off the finer.,steps back off and someone fixes her coat on to her blonde haired friend.,reaches for her hand and walks away.,gold1-orig,unl,unl,unl,unl,unl,Someone crosses back to her own bed.,\"Flopping down with a slight pout, she\"\nanetv_ix40OdQd7iE,11522,A large group of people are seen standing around a track with one holding a large pole and running down the track. The man pole volts over the bar and,is shown again in slow motion.,spins around multiple times in the end.,looks back to the camera while others watch him on the side.,lands on a bench.,ends by sitting down and giving thumbs up.,gold1-orig,pos,unl,unl,unl,pos,A large group of people are seen standing around a track with one holding a large pole and running down the track.,The man pole volts over the bar and\nanetv_ix40OdQd7iE,11571,\"An athlete runs with a pole and jumps high over an horizontal pole successfully. Then, a shirtless person runs to jump high but he\",makes fall the horizontal bar.,jumps onto the ground.,ropes up a successfully.,gives the pick high pole to measure his team 'jump.,lands on a mat.,gold0-orig,unl,unl,unl,unl,pos,An athlete runs with a pole and jumps high over an horizontal pole successfully.,\"Then, a shirtless person runs to jump high but he\"\nanetv_ix40OdQd7iE,11523,The man pole volts over the bar and is shown again in slow motion. Several more clips,are shown of people pole volting over a beam as well as again in slow motion.,are shown of people winning and surfing them.,have shown of the people shown jumping off in the distance and laughing again.,are shown of people being shown in their arms and fighting over the weights.,are shown of bars jumping up and down on the mats.,gold0-orig,pos,unl,unl,unl,unl,The man pole volts over the bar and is shown again in slow motion.,Several more clips\nanetv_2Ot4ZPYpNwI,9924,\"A man is seated on a couch, playing a harmonica. He\",lowers it from his mouth when he is done.,\"takes a couple of slow moves, looking to people.\",is playing a guitar and singing into a microphone.,\"turns to the camera, playing the drum set.\",is trying to play musical instruments in front of himself.,gold0-orig,pos,unl,unl,unl,unl,\"A man is seated on a couch, playing a harmonica.\",He\nlsmdc1046_Australia-90877,15254,He sidles up and whispers to her. He,points to a display of spears.,sets her back down.,gives a thumbs up.,gives her a look.,locks his mouth on hers.,gold1-reannot,pos,unl,pos,pos,pos,He sidles up and whispers to her.,He\nanetv_G2soQTiGL10,13180,The people then assist one another putting ingredients into pans and flipping them around. The people,continue mixing the food together and finish by presenting it onto a plate.,continue washing the dishes while looking down and laughing to one another.,continue moving around and ends with the camera panning the game.,then pan containers back into the camera.,continue around to sit and scrape down the frames while still putting them.,gold0-orig,pos,unl,unl,unl,unl,The people then assist one another putting ingredients into pans and flipping them around.,The people\nanetv_G2soQTiGL10,13179,A large group of people are seen standing around a table with one speaking to the camera. The people then,assist one another putting ingredients into pans and flipping them around.,begin running around one another while laughing to one another.,\"demonstrate all around them being guided, while men watch and speak to one another.\",begin playing lacrosse and hug one another.,walk around in circles with people dancing on the side.,gold1-reannot,pos,unl,unl,unl,pos,A large group of people are seen standing around a table with one speaking to the camera.,The people then\nanetv_jIQFVSymHQs,3717,An inflatable ball bounces on the grass as kids watch playing a game. A young boy in blue shirt and jeans,retrieves the ball and runs towards the group.,stands in front of the pool and the weight shaking.,is on trying to get his score and died down.,is doing orange bouncing in the air.,hold down two balls that are other high.,gold0-orig,pos,unl,unl,unl,unl,An inflatable ball bounces on the grass as kids watch playing a game.,A young boy in blue shirt and jeans\nanetv_aAlbRFeu32E,2305,\"Next she is shown sitting at the restaurant eating fries and then she is shown in her room again, staring at the clothes on her bed and putting on her shoes. She\",is also shown doing fun things in the video and other girls are too.,lays a little black hat around her sashays then places a cellphone wet and starts via the next christmas lights.,is then seen close with cups and waving the arms in her mouth and doing her success.,is standing in a room practicing shooting while a black wrestler is a longer cheap blue shirt is tambourine and saddles.,is holding a soda in a bucket and begins wiping the shoe with a sponge.,gold0-reannot,pos,unl,unl,unl,unl,\"Next she is shown sitting at the restaurant eating fries and then she is shown in her room again, staring at the clothes on her bed and putting on her shoes.\",She\nanetv_aAlbRFeu32E,2304,\"First the young woman is sleeping in her bed, but then she wakes up to say something. Next she is shown sitting at the restaurant eating fries and then she\",\"is shown in her room again, staring at the clothes on her bed and putting on her shoes.\",stops to talk to the men in the mirror for a closeup of her or what she wants him already.,adds a lemonade into the shot.,joins the girl who looks like she is talking to the camera.,,gold0-reannot,pos,unl,unl,pos,n/a,\"First the young woman is sleeping in her bed, but then she wakes up to say something.\",Next she is shown sitting at the restaurant eating fries and then she\nanetv_nB50V0OBto0,14698,\"The little girl who was talking then goes outside and snowboards many times, sometimes with other people, in the backyard, often rolling or falling off of the board and losing balance. After the snowboarding ends the little girl\",returns to talking to the camera while several frames of language invite watchers to join their channel.,comes to the bars at the top of the hill and fails to catch her.,shows a ski that is attached to a canoe and glittering.,gets ready to add a second level to the bottom of the ski and starts skiing.,tries for her time on the landing to go to show whether to manage the proper tips to finish and work out.,gold0-orig,pos,unl,unl,unl,unl,\"The little girl who was talking then goes outside and snowboards many times, sometimes with other people, in the backyard, often rolling or falling off of the board and losing balance.\",After the snowboarding ends the little girl\nanetv_nB50V0OBto0,5786,A girl is seen pulling on blinds and speaking to the camera. Another girl,curls her hair and shows a man and girl speaking to the camera.,is seen playing a game and moving her arms back and fourth.,is seen rolling up the camera and begins applying makeup to the lotion.,spits a contact and has ice ice on it.,is seen painting the fence in a bow.,gold1-orig,pos,unl,unl,unl,unl,A girl is seen pulling on blinds and speaking to the camera.,Another girl\nanetv_nB50V0OBto0,5787,Another girl curls her hair and shows a man and girl speaking to the camera. Several shots,are shown of people riding down a hill on sleds and playing with one another.,are shown of cut and blush on the ground.,are shown of people sitting around the pool holding up balls and laughing to the camera.,of the girl perform are shown while a person skin her while rubbing.,are shown of a truck followed by men also cleaning down some dishes.,gold0-reannot,unl,unl,unl,unl,unl,Another girl curls her hair and shows a man and girl speaking to the camera.,Several shots\nanetv_6pnabYJdqxc,18913,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website displays at the bottom in purple letters. The man is now holding a floral plant up with his left hand and with his right hand he,\"cuts the flowers off, continues to talk the whole time, and then holds up the flower less plant with his right hand.\",\"swivels his left finger, over his left ear, and snaps off a picture of the spot.\",\"sees some old letters with white words that say, recorded video of the girls riding horses toward gates.\",\"wipes it down back very step, he turns it down and ties his legs to a side at the side of the trees.\",has a finger as it goes its right point to his right hand and then begins polishing it across the flat.,gold0-orig,pos,unl,unl,unl,unl,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website displays at the bottom in purple letters.,The man is now holding a floral plant up with his left hand and with his right hand he\nanetv_6pnabYJdqxc,18912,Multiple white and purple flowers are shown in a large field. A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website,displays at the bottom in purple letters.,and archery is appearing on it.,gives a crowd jowly face.,is a bold monk in white letters that hangs just the distance.,visual on the screen in the red letters that say markers on the paper.,gold0-orig,pos,unl,unl,unl,pos,Multiple white and purple flowers are shown in a large field.,A man is now standing and talking in the field of flowers and the words on the bottom screen say his name is Skip Richter and he's a Horticulturist and the website\nanetv_6pnabYJdqxc,19411,A man is talking while standing amongst several purple flowers. He,shows off several different kinds of flowers as he talks.,is wearing an animal cape and tubing in snow.,takes a small block and begins to hit the target.,is drawing on the floor!,picks up a white shoe and throws it down.,gold0-orig,pos,unl,unl,unl,unl,A man is talking while standing amongst several purple flowers.,He\nanetv_6pnabYJdqxc,19410,White flowers are being blown by a light wind. A man,is talking while standing amongst several purple flowers.,describes the leafs as well as talking to the camera.,blows powder into the air.,and children are gathered between sand buckets.,,gold0-reannot,pos,unl,unl,unl,n/a,White flowers are being blown by a light wind.,A man\nanetv_TPsMocKBQU0,2912,We go back to the first lady bouncing. The lady,jumps off the slack line and gets back on.,raise a pose and put on a black australia hat.,goes into the correct positions for the event.,spins her baby tennis box.,leans forward and shows the tattoo of the sweater.,gold0-orig,pos,unl,unl,unl,unl,We go back to the first lady bouncing.,The lady\nanetv_TPsMocKBQU0,2913,The lady spins while bouncing. The lady,jumps off then is back on.,walks on a court but does n't stop by.,moves on the rope on.,dismounts and falls into the grass.,smiles to the camera and resumes hanging the back and tail.,gold1-orig,pos,unl,unl,unl,unl,The lady spins while bouncing.,The lady\nanetv_TPsMocKBQU0,2908,We see a lady bouncing on a slack line. The lady,sits on her knees.,reaches and kicks the javelin.,does karate in the stands.,takes rocks in front of her.,sticks her nose to the side.,gold1-orig,unl,unl,unl,unl,unl,We see a lady bouncing on a slack line.,The lady\nanetv_TPsMocKBQU0,2910,The lady falls of the slack line. We,see a man bouncing on the slack line.,see the man in red top chair.,see him jump down on the trampoline.,see the man working in the car.,,gold0-orig,pos,unl,unl,unl,n/a,The lady falls of the slack line.,We\nanetv_TPsMocKBQU0,2911,We see a man bouncing on the slack line. We,go back to the first lady bouncing.,see a print on a cowboy and we see a text logo intro screen.,see black players and children talking in the studio.,see a website on a white television.,see the closing title.,gold0-reannot,pos,unl,pos,pos,pos,We see a man bouncing on the slack line.,We\nanetv_KzogfJrOqJE,15261,A woman is seen turning on a hose to pour water in and walks over to another bucket and sits down. The woman then,washes the clothes in the bucket while looking to the camera leading into her hanging up the clothes and speaking to the camera.,raises the bucket and it falls into a bucket and presents it to the camera.,begins wiping the hose with a rubber nozzle.,empties the wallpaper into a bucket and continues to mop the floor.,opens her arms with soap and begins brushing on it and speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen turning on a hose to pour water in and walks over to another bucket and sits down.,The woman then\nanetv_KzogfJrOqJE,7855,A woman is standing at a faucet and filling a metal bucket with water and the green word Laundry! quickly pops up on the screen. The woman walks out of view while the metal bucket is still filling and she,passes larger bucket on the grass.,continues the contents of the buckets into the hands of the mop.,spits it out of the sink.,begin talking in the mirror again.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is standing at a faucet and filling a metal bucket with water and the green word Laundry! quickly pops up on the screen.,The woman walks out of view while the metal bucket is still filling and she\nanetv_KzogfJrOqJE,7856,The woman walks out of view while the metal bucket is still filling and she passes larger bucket on the grass. The woman returns and she,has a small wooden stool that she places near the larger bucket.,moves the pinata instead.,washes it on the top.,\"lifts the mop's edge, while the child grabs more quick mops and continues washing it.\",walks away from the tree to help and continues.,gold0-reannot,pos,unl,unl,unl,unl,The woman walks out of view while the metal bucket is still filling and she passes larger bucket on the grass.,The woman returns and she\nanetv_OBfVj8mCVUw,10328,The woman begins knitting win the material. the camera,shows a 360 view of the woman knitting.,replays the girl uses tennis his collar and almost hits his chest.,finishes her looking up.,focuses on the images.,is inside the slide.,gold0-orig,pos,unl,unl,unl,unl,The woman begins knitting win the material.,the camera\nanetv_OBfVj8mCVUw,10371,We shift and see the puppy sitting next to her. We,see her phone on the chair arm.,bow to see the girl again.,recognize the baby's short paw.,make their way up the staircase to the candlelit hall.,see her doing the makeup to his face.,gold1-orig,pos,unl,unl,unl,unl,We shift and see the puppy sitting next to her.,We\nanetv_OBfVj8mCVUw,10370,We see a lady knitting a blue item. We,shift and see the puppy sitting next to her.,see a lady and a vet go to the camera.,see a black screen title with a words on it.,see the ending title card.,see a black title screen.,gold1-reannot,pos,unl,pos,pos,pos,We see a lady knitting a blue item.,We\nlsmdc1034_Super_8-7920,16873,\"Yellow Coupe with a black vinyl roof pulls up outside the house. From the swing, someone\",watches as a good - looking man with shoulder length blonde hair gets out of the car and walks towards the house.,turns and puddle at a boy.,feeds a sleek pearl necklace.,rides a flight of headlights in to a home.,,gold0-orig,pos,unl,unl,unl,n/a,Yellow Coupe with a black vinyl roof pulls up outside the house.,\"From the swing, someone\"\nanetv_cDnJjAQtf-g,13080,Three men discuss the topic of playing water polo with kayaks. The scene,changes to show a display of water polo with kayaks.,returns to a cooling rack and an ball room displays for olympic photography.,\"clears, after floating off their boards with people.\",is showing a blue park fluttering in the ocean.,switches to a man swimming indoors and playing at an outdoor sunny day.,gold0-orig,pos,unl,unl,unl,unl,Three men discuss the topic of playing water polo with kayaks.,The scene\nanetv_cDnJjAQtf-g,13081,\"Two boats crash as two men try to paddle their way to the ball, The men commentate over the scene, they players look severely injured. The display changes back to the men talking about the water polo, they\",are very intrigued and shocked.,go to many different positions.,change distances and meet up together.,are shown with apparent examples.,,gold0-orig,pos,unl,unl,unl,n/a,\"Two boats crash as two men try to paddle their way to the ball, The men commentate over the scene, they players look severely injured.\",\"The display changes back to the men talking about the water polo, they\"\nlsmdc3049_MORNING_GLORY-23643,7587,She sits in the back of a taxi and presses her hand to her forehead. Someone,'s in his dressing room on the phone.,looks up from her headstone.,flashes her attention back to what's happening.,looks down at someone's motorcycle.,lifts a weight to someone's chest.,gold1-reannot,pos,unl,unl,unl,unl,She sits in the back of a taxi and presses her hand to her forehead.,Someone\nanetv_maE7PmL7Zjk,9775,What bowt it? logo appears on screen. a Serious Game of Pool,scrolls across the screen.,appears presented with real amusement.,is shown for an montage.,leads into people talking before walking away from the area.,appears on screen and referee explaining to appear about the gymnastic game in slow motion.,gold0-orig,pos,unl,unl,unl,unl,What bowt it? logo appears on screen.,a Serious Game of Pool\nanetv_maE7PmL7Zjk,2752,An intro leads into two men holding pool sticks and one hitting the white ball. The other,puts a piece of paper down and lines up his shot with the ball.,watch the ball to hit the leaves by first stuffs their back against each other.,one then walks over past an object again.,is then seen running on the ice and ends dancing afterwards.,enters the circle and spins the ball around in circles.,gold0-orig,pos,unl,unl,unl,unl,An intro leads into two men holding pool sticks and one hitting the white ball.,The other\nanetv_maE7PmL7Zjk,2753,The other puts a piece of paper down and lines up his shot with the ball. He,\"writes on the paper, turns and walks around the pool table, and looks back towards the other man.\",then finishes it at person and demonstrates how to play it in the play the game.,\"hefts a weight in front of those they do, empties it out and converses as the two anticipating people play the game.\",walks around the table and looks at the other without pouring dressing.,continues to play as well as behind off by pushing another man way across from a target.,gold0-orig,pos,unl,unl,unl,unl,The other puts a piece of paper down and lines up his shot with the ball.,He\nanetv_maE7PmL7Zjk,9776,A Serious Game of Pool scrolls across the screen. Young men,play pool in a dimly lit room.,are shown also riding an outdoor volleyball game on the beach.,are dancing together in a big group of people.,play ping pong all around.,compete at a table as a medic addresses him.,gold0-reannot,pos,unl,unl,unl,unl,A Serious Game of Pool scrolls across the screen.,Young men\nanetv_DVXOr56dlKg,11059,A Frenchman pole vaults in hot weather. Renaud,goes for another exciting pole vault.,leads a student walking across the street and prop himself up against the doorman's window.,\"frowns at someone, quickly seething into white and slams his cars.\",race on a durmstrang.,\", someone is in her limousine as she's outside in building's open web.\",gold0-orig,pos,unl,unl,unl,unl,A Frenchman pole vaults in hot weather.,Renaud\nanetv_DVXOr56dlKg,18413,A man runs down a track with a pole and leaps over a high bar. People in the stands,are watching the man.,watch the gymnast mount the pommel.,are watching the pose.,perform the same as he completes his jump.,can not jump techniques.,gold0-reannot,pos,unl,unl,unl,unl,A man runs down a track with a pole and leaps over a high bar.,People in the stands\nlsmdc0010_Frau_Ohne_Gewissen-51387,7943,Someone releases the hand brake and puts the car in reverse. Someone,is again busy unwrapping the tape from his leg.,plods to the broken door.,gets out of the sedan and drives off.,punches the gate and tries to launch the city which flips the rest of the way.,\"hangs a rope and releases partway from it, then pushes forward.\",gold1-orig,pos,unl,unl,unl,pos,Someone releases the hand brake and puts the car in reverse.,Someone\nlsmdc0033_Amadeus-67033,8270,\"Warily, someone crosses and opens he door. Before him\",stands the masked stranger.,\"is a sizes of drinks, which women are two staffer keypad.\",can wizard a statuesque fresh shades of his beard breathing through the veins.,has a large map on the wooden rim surface which has just completed elliptical.,tightens his fingers.,gold0-orig,pos,unl,unl,unl,unl,\"Warily, someone crosses and opens he door.\",Before him\nlsmdc0033_Amadeus-67033,8269,\"Instantly someone starts to dance to it, all alone: gleefully, like a child. He\",\"looks up at his father's portrait, and makes a silly, rude gesture at it.\",\"sits beside her on a worktop, facing the camera.\",trots around and attacks him.,has bowed his body on the floor when he stumbles.,,gold1-orig,unl,unl,unl,unl,n/a,\"Instantly someone starts to dance to it, all alone: gleefully, like a child.\",He\nlsmdc0033_Amadeus-67033,8268,Someone rises and returns to. Instantly someone,\"starts to dance to it, all alone: gleefully, like a child.\",is up in her bed.,takes the cup out of his hand and barges someone towards the house.,lets him slip out of the car.,lets go of her hand.,gold0-reannot,pos,pos,pos,pos,pos,Someone rises and returns to.,Instantly someone\nlsmdc3029_GREEN_ZONE-13513,17636,\"As someone makes his way around the pool, two guys in board shorts amble past, both casually toting semi - automatics. The soldier\",heads to someone's small patio table and takes a seat.,lowers his hand and holds up several bottles in front of him.,reaches back up and shoots the runs.,\"hugs the child, lets go of his hands and punches him.\",\"turns back, fires again, and nudges their aim.\",gold0-orig,pos,unl,unl,unl,pos,\"As someone makes his way around the pool, two guys in board shorts amble past, both casually toting semi - automatics.\",The soldier\nlsmdc3029_GREEN_ZONE-13513,17639,Someone eyes someone then returns his attention to the book. He,lifts his gaze to the soldier's face.,\"closes his laptop and turns, and spots someone.\",goes from the van to the wrong store on the opposite side of the road.,gazes thoughtfully at finds dark the revolving bowl.,,gold1-orig,pos,unl,unl,unl,n/a,Someone eyes someone then returns his attention to the book.,He\nlsmdc3029_GREEN_ZONE-13513,17643,She comes up behind him as he heads around the pool. Someone,gives a bashful smile.,looks imploringly at his father.,lands before someone with his arms wide.,rests her head on her knee.,,gold0-orig,pos,unl,unl,unl,n/a,She comes up behind him as he heads around the pool.,Someone\nlsmdc3029_GREEN_ZONE-13513,17635,\"Someone spots someone and a colleague at a table. As someone makes his way around the pool, two guys in board shorts\",\"amble past, both casually toting semi - automatics.\",can in a happy day.,come up diving into van and scramble over the red table with the individual getting into his arms.,sit in his car.,watch the esu partner pass him.,gold1-orig,pos,unl,unl,unl,pos,Someone spots someone and a colleague at a table.,\"As someone makes his way around the pool, two guys in board shorts\"\nlsmdc3029_GREEN_ZONE-13513,17637,\"The soldier heads to someone's small patio table and takes a seat. Meanwhile, someone\",strolls around the patio.,hurries out of the park.,prods his coffee with his hands.,walks the couple to the driveway.,,gold1-orig,pos,unl,unl,unl,n/a,The soldier heads to someone's small patio table and takes a seat.,\"Meanwhile, someone\"\nlsmdc3029_GREEN_ZONE-13513,17634,Now someone dons his sunglasses as he leads his men onto a patio surrounds a luxurious pool. Someone,spots someone and a colleague at a table.,steps cross a staircase.,lunges at him then dabs him with a dagger.,descends from the collapsible and gazes towards it.,cautiously drinks from a glass of alcohol.,gold0-orig,pos,unl,unl,unl,unl,Now someone dons his sunglasses as he leads his men onto a patio surrounds a luxurious pool.,Someone\nlsmdc3029_GREEN_ZONE-13513,17641,Someone tucks the book into his jacket pocket. Someone,rises from the table and trods off.,screws his head back.,makes an effort to break an arm over the locket.,gets up as the man packs off a slip of paper.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone tucks the book into his jacket pocket.,Someone\nlsmdc3029_GREEN_ZONE-13513,17638,\"Meanwhile, someone strolls around the patio. Back at the table, someone\",hands someone the little black book.,greets two blonde executives in a row.,removes his own glasses.,leans forward to examine a tv dazed.,digs into his pockets and checks his glass.,gold1-reannot,pos,unl,unl,unl,unl,\"Meanwhile, someone strolls around the patio.\",\"Back at the table, someone\"\nlsmdc3029_GREEN_ZONE-13513,17642,\"As someone stands, someone weaves toward him. She\",comes up behind him as he heads around the pool.,closes off and presses his button on the lock.,holds out his arm.,leans on the wall with a wounded glare.,feeds someone something outside the building.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone stands, someone weaves toward him.\",She\nlsmdc3029_GREEN_ZONE-13513,17640,He lifts his gaze to the soldier's face. Someone,tucks the book into his jacket pocket.,finds another pick at the end of the game.,blinks and turns his head until his hand pan white and someone's.,sits in a makeshift armchair.,opens his eyes as the ship quickly rises.,gold1-reannot,pos,unl,unl,pos,pos,He lifts his gaze to the soldier's face.,Someone\nlsmdc1056_Rambo-97074,13667,More corpses lie at the edge of the field. Someone,holds his shirt against his nose.,leaps onto the bed roof and disappears in the water.,helps someone to a snowy ridge.,holds up a heavy stick.,fires and watches as an ambulance approaches.,gold0-orig,pos,unl,unl,unl,unl,More corpses lie at the edge of the field.,Someone\nlsmdc1056_Rambo-97074,13666,Someone and the mercenaries overlook the field. More corpses,lie at the edge of the field.,emerge from the back seats.,come into their house and race down the rocky wooden deck.,form a fetal position as a cat is coming from the ensemble.,fly across the field and collect troops.,gold0-orig,pos,unl,unl,unl,unl,Someone and the mercenaries overlook the field.,More corpses\nlsmdc1056_Rambo-97074,13668,Someone holds his shirt against his nose. A woman's severed head,hangs from a post.,bears the six trooper wearing a bills bag nobody pays the hold.,shows someone's side.,lies dead at the table.,drops into the floor.,gold0-orig,pos,unl,unl,pos,pos,Someone holds his shirt against his nose.,A woman's severed head\nlsmdc1056_Rambo-97074,13661,Someone solemnly watches them go. He,turns away and walks back to the boat.,turns away and goes to someone.,patiently drags his cook outside.,\"nods to someone, overcome with sadness.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone solemnly watches them go.,He\nlsmdc1056_Rambo-97074,13662,He turns away and walks back to the boat. Someone and the boy,lead the mercenaries through forest undergrowth.,go flying down a sand hill lined up to a waterfall.,play with the straps of the ankle.,have sunk resting in the hammock.,,gold1-orig,pos,unl,unl,unl,n/a,He turns away and walks back to the boat.,Someone and the boy\nlsmdc1056_Rambo-97074,13663,Someone's rifle is particularly bulky. They,cross a small stream.,engage in a sizzling polo.,gathers sitting room.,\"stops in front of a grimy - haired man wearing a hood that reveals a form, west pillars and floppy - trimmed hair.\",bounce to the bottom with him.,gold1-reannot,pos,unl,unl,pos,pos,Someone's rifle is particularly bulky.,They\nanetv_OBua42LRiF8,10350,A black screen with title text of team names and a date is shown. A number of people,play a lacrosse game in a stadium while watched by several referees and spectators.,are shown performing the own type of indoor style.,are skateboarding on a sporting street getting ready for race racing through cars.,are seen on a court as the team gets in and a ball gets scored.,begin with each other followed by a new score.,gold0-orig,pos,unl,unl,unl,unl,A black screen with title text of team names and a date is shown.,A number of people\nanetv_OBua42LRiF8,10351,A number of people play a lacrosse game in a stadium while watched by several referees and spectators. One team,seems to successfully score and celebrates.,walks down the field.,throws a ball around.,scores a prayer to begin hoisted it into the goal.,,gold1-orig,pos,unl,unl,unl,n/a,A number of people play a lacrosse game in a stadium while watched by several referees and spectators.,One team\nanetv_OBua42LRiF8,14687,Players play lacrosse on a field. A guy next to the goal,waves a green flag.,is made with minutes in front of a player.,is ice hockey holding a field hockey stick.,is to the men hug.,enters a booth briefly.,gold1-orig,pos,unl,unl,unl,pos,Players play lacrosse on a field.,A guy next to the goal\nanetv_sO7ZGxFwbm8,17934,The video leads into several shots of javelin athletes throwing poles down a large track. Many people,are shown running down the track throwing the javelin and watching where their pole lands.,are seen afterwards throwing around the track and walking away.,\"are interviewed in the end, celebrating now more running along if performing tricks.\",watch on the sides while they watch on the sides as team mates reappear.,watch on the sides as the camera pans around several angles of men and scenery in the street.,gold0-orig,pos,unl,unl,pos,pos,The video leads into several shots of javelin athletes throwing poles down a large track.,Many people\nanetv_VTbMcI6nw54,4296,A man talks about coaching gymnastics. A girl,starts to do a routine on the uneven bars.,makes a selfie while that dog dances behind him.,gets a hockey stick out to the goal during the competition.,sits on a shape doing a pole routine in the gym.,performs the spring tumbling exercise in the background and replays a races sequence.,gold0-orig,pos,unl,unl,unl,unl,A man talks about coaching gymnastics.,A girl\nanetv_SfYJTxMRKDE,7354,\"The people get in boats and sail in the river while other people rest. People pass a small waterfall with choppy water, and then they\",go down the river.,go over mountains and sail away.,ski down the river.,are digitally rafting down the river.,\"stop, and rocks back and forth.\",gold0-orig,pos,unl,unl,unl,pos,The people get in boats and sail in the river while other people rest.,\"People pass a small waterfall with choppy water, and then they\"\nanetv_SfYJTxMRKDE,7352,\"People play throwing balls on the ground. After, a band plays and people\",dance including a bride.,come to continue navigating.,swirl in and out of the field.,are seen running around a stage hitting the cymbals.,,gold0-orig,pos,unl,pos,pos,n/a,People play throwing balls on the ground.,\"After, a band plays and people\"\nanetv_SfYJTxMRKDE,7355,\"People pass a small waterfall with choppy water, and then they go down the river. People\",\"dive in the river, and then rest while drinking, then go sail in the river.\",\"go down the river, going along a bridge in the snow.\",gather around a green grassy mound.,are removing boats and animals in the river.,,gold0-reannot,pos,unl,pos,pos,n/a,\"People pass a small waterfall with choppy water, and then they go down the river.\",People\nanetv_6_XA3oKwwzU,4103,A woman standing next to her is dancing and twirling a baton. Words,are then shown on the screen.,proceed all to dance at baton events.,runs out of the room.,hula hoop with a baton starts running across the floor and angles and takes the baton.,are using her baton baton.,gold0-orig,pos,unl,unl,unl,unl,A woman standing next to her is dancing and twirling a baton.,Words\nanetv_6_XA3oKwwzU,4102,A woman is playing an acoustic guitar. A woman standing next to her,is dancing and twirling a baton.,stands up and spins her hand.,play a violin and tie it.,is dancing as people walk on.,talks to people while up on the beach.,gold1-reannot,pos,unl,unl,unl,unl,A woman is playing an acoustic guitar.,A woman standing next to her\nanetv_gVixuVE0-ek,10795,A man is seen boxing towards the camera as well as hitting a bag. He then,is shown speaking to the camera and demonstrating how to box.,leads his bull into a field while others gather around him and scoot the ball around.,begins playing dart around the table.,lifts the racket and begins playing it several more times.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen boxing towards the camera as well as hitting a bag.,He then\nanetv_gVixuVE0-ek,16297,\"First the man tells viewers to make the elbow sharp as possible and his hand stays inwards, elbow downwards, and his opposite hand is up. Next, he turns his legs and he\",continues to do the same thing.,begins to undo the side of the cube.,kicks the ball back and forth.,walks off to the top and elbows his knees down on the railing.,rolls back down under the stepper.,gold0-orig,pos,unl,unl,unl,unl,\"First the man tells viewers to make the elbow sharp as possible and his hand stays inwards, elbow downwards, and his opposite hand is up.\",\"Next, he turns his legs and he\"\nanetv_gVixuVE0-ek,10796,He then is shown speaking to the camera and demonstrating how to box. He,continues moving his arms around and bowing.,picks up a hair extension and shows it on his finger.,is shown in something treacherous on marijuana in the back.,shows how to reach a precise jumps with a large rope attached to the bottom of a rope attached.,takes large clothing into a case and begins to play.,gold0-orig,pos,unl,unl,unl,unl,He then is shown speaking to the camera and demonstrating how to box.,He\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8713,She uncurls the bag's crumpled top and reaches inside. Someone,watches as she fishes out a present.,clamps his hand over a porcelain lid.,slips through a connecting transparent to a detonator with the splintering of barbed wire.,fasten it in between two young girls.,unwraps the cash and puts them on the counter.,gold0-orig,pos,unl,unl,unl,pos,She uncurls the bag's crumpled top and reaches inside.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8717,\"With a smile, he watches someone slide off the second bow. Unwrapping the gift, she\",finds a child's tub of play - doh.,winks at someone as he puts a cell in his mouth.,tries to pin it with her own.,removes a colorful envelope from the shelf.,abruptly pauses herself scrambling.,gold1-orig,pos,unl,unl,unl,pos,\"With a smile, he watches someone slide off the second bow.\",\"Unwrapping the gift, she\"\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8716,Someone shifts his anxious eyes between her and the present. Someone,very patiently slides the ribbon off the end of the tube shaped gift.,looks from the camera as they talk about the kiss.,goes around her wardrobe and pulls up some glasses of documents.,frowns shyly as someone sprays at his mother and slides a seat near to the front of the floor.,\"altitude in its central window, our view drifts inside, its huge furnishings kicking up its sheen.\",gold0-orig,pos,unl,unl,unl,unl,Someone shifts his anxious eyes between her and the present.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8714,Someone watches as she fishes out a present. Someone,\"gives him a smile, then carefully unties one of the bows.\",leans against a wall.,sketches the stone structure.,pours a baking pan on the oven.,,gold1-orig,pos,unl,unl,unl,n/a,Someone watches as she fishes out a present.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8710,\"As a teammate leads someone away, someone snags someone. They walk out onto the vacant patio, and someone\",pulls out a chair for her.,pounds against the front grill as someone fires the pistol into the building.,smiles at their supporters.,leans over to inspect the underwater darts.,flings the children aside.,gold0-orig,pos,unl,unl,unl,unl,\"As a teammate leads someone away, someone snags someone.\",\"They walk out onto the vacant patio, and someone\"\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8712,He sits kitty corner from her and sets down the small paper bag. She,uncurls the bag's crumpled top and reaches inside.,sprays him with a desk lamp and gets to the stairs.,watches the torrential rain streaming from her mouth and nose.,\"finds it in the empty kitchen, with the butcher knife eating in front of someone.\",\"takes it, and stretches it toward his, pocket.\",gold0-orig,pos,unl,unl,unl,pos,He sits kitty corner from her and sets down the small paper bag.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8715,\"Someone gives him a smile, then carefully unties one of the bows. Someone\",shifts his anxious eyes between her and the present.,smiles as he slices a limp sack filled with flowers and corpses.,climbs away from the train and steps forward.,\"regards her son with a delighted smile, then takes a few of pictures to the visitor's handsome face.\",\"draws unveils a stray forcing, the actors cut through light chocolate on indian apples.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone gives him a smile, then carefully unties one of the bows.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2698,8711,\"They walk out onto the vacant patio, and someone pulls out a chair for her. He\",sits kitty corner from her and sets down the small paper bag.,opens some more of an refrigerator.,squeezes his eyes shut.,\"notices his wine, with a low twinkle in his eyes.\",is irritated by the security of the derby.,gold0-reannot,pos,unl,unl,unl,unl,\"They walk out onto the vacant patio, and someone pulls out a chair for her.\",He\nanetv_NA8fCmbHwU8,11041,A man makes a bicycle kick in the sand. The winning team,holds up a trophy together and celebrates.,rides across a footbridge.,is demonstrated by another team.,runs into teammates and the yellow team scores.,begins to fall in the same place to pin a cement box into the coffee cup.,gold0-orig,pos,unl,unl,unl,unl,A man makes a bicycle kick in the sand.,The winning team\nanetv_NA8fCmbHwU8,11042,The winning team holds up a trophy together and celebrates. Teammates,call from the bench and cheer.,change a story while the cheering crowd in the small football competition for kicking and kicking.,\"cheering at the puck, slurps the ball and scores.\",happily then stand after whistling.,is interviewed among black and someone.,gold0-orig,pos,unl,unl,unl,unl,The winning team holds up a trophy together and celebrates.,Teammates\nanetv_NA8fCmbHwU8,11039,A team rides together on a bus. Teams,play games of beach soccer.,\"in street, on a river, they drive on and sit on side roads.\",\"groups of people are sitting at the locations of a motocross camel as they ride, some of the fight, holding.\",crowd a bar crowded together.,,gold1-reannot,pos,unl,unl,unl,n/a,A team rides together on a bus.,Teams\nlsmdc3034_IDES_OF_MARCH-2850,2523,He jots a note then looks at her. He,smiles to himself as she leaves.,\"gives replacement a nod, as much as he can tell.\",shifts his gaze and shifts his gaze to the phone.,leans back a little closer.,bows curtly and leaves.,gold0-orig,pos,unl,unl,unl,unl,He jots a note then looks at her.,He\nlsmdc1017_Bad_Santa-7695,6098,The kid walks away still with his underpants up around his armpits. Someone,watches him go with a doleful expression.,walks into a workshop and pulls out a weathered scraps of paper.,stands back down with a bag around his neck and spins in place.,pulls the cage's yard forward and tosses another over his shoulder.,\"aims his pistol at someone, who leaves his bedroom.\",gold0-orig,pos,unl,unl,unl,unl,The kid walks away still with his underpants up around his armpits.,Someone\nlsmdc1017_Bad_Santa-7695,6100,\"Someone turns back to someone who, for an elf, is staring at him in a very deadpan way. Someone\",is the next in line.,coming into someone 'apartment.,brings his lips together in a bitter smile as if a little more.,\"pulled away, this expression becomes morphs and prayer.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone turns back to someone who, for an elf, is staring at him in a very deadpan way.\",Someone\nlsmdc1041_This_is_40-9111,3773,\"As he approaches a private office, he sees someone coloring in squares along a chalkboard wall. Someone\",steps in with a scowl.,rolls between his cards and cement.,crosses the arms of a mirror and kicks a foot into a bin.,receives a photo of her.,hands a bottle to her friend.,gold1-reannot,pos,unl,unl,unl,unl,\"As he approaches a private office, he sees someone coloring in squares along a chalkboard wall.\",Someone\nanetv_SLPD1U5iDjY,6772,A woman is seen outside playing a game of beach volley ball serving it over the net in slow motion. It makes it over the net and the other team of two balls,is able to hit it back over the net.,continue to do a fourth.,sit up on the deck and crash down each other.,turn alongside the ball while stopping with her score.,are then able to prevent the ball from one.,gold0-reannot,pos,unl,unl,unl,pos,A woman is seen outside playing a game of beach volley ball serving it over the net in slow motion.,It makes it over the net and the other team of two balls\nanetv_a1ltYmbbBYI,9552,Two men are sumo wrestling on a ring. A man in a robe,is standing behind them.,holding a handle's guns walks the skateboarders.,is standing at his feet.,is standing behind him.,is sitting behind a table.,gold1-orig,pos,unl,pos,pos,pos,Two men are sumo wrestling on a ring.,A man in a robe\nanetv_a1ltYmbbBYI,9553,A man in a robe is standing behind them. A man,trips and falls into the audience.,stands in the grass holding his stick.,gets to the top and goes off.,is pouring a pile of empties onto a car.,is drinking from a gentle cup.,gold1-orig,pos,unl,unl,unl,unl,A man in a robe is standing behind them.,A man\nanetv_HVD8N0bbPVo,9186,\"He is then seen inside an elevator, acting strangely as he punches the air with different people riding. He\",is intentionally trying to scare and worry them.,begins with other workers playing using the instruments as they ride the horses.,pauses to finish his performance with a man who jumps below him.,hops over the bar onto the ground.,is shown moving to a bit hoping the dryer rest perfunctory.,gold0-orig,pos,unl,unl,unl,unl,\"He is then seen inside an elevator, acting strangely as he punches the air with different people riding.\",He\nanetv_HVD8N0bbPVo,9185,A man in sunglasses is standing outside a building. He,\"is then seen inside an elevator, acting strangely as he punches the air with different people riding.\",is walking in an outdoor grassy field playing with field soccer gear.,throws himself into the boy as he does.,is holding a plant hose by an electric w.,twirls around while holding onto a pole.,gold0-orig,pos,unl,unl,unl,unl,A man in sunglasses is standing outside a building.,He\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14785,\"Now, our view spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through. As he draws near, we\",find him aged and distinguished.,glimpse someone riding looking in her early thirties.,see an empty urban scene scene.,glimpse someone standing behind his modern clapboard house looking through the window pane.,,gold0-orig,pos,unl,pos,pos,n/a,\"Now, our view spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through.\",\"As he draws near, we\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14784,\"Someone lays the ax in a chest. Now, our view\",\"spirals from sideways to upright as a door opens and a tall, silhouetted figure strides through.\",cuts through furniture of tall cabinets.,tilts in beneath a balustrade with nothing picture of the reveal in the center.,loads from a chaises view of a glowing courtyard in front of someone's.,\"tilts into the plaza, where songwriter stands among himself.\",gold0-orig,pos,unl,unl,unl,unl,Someone lays the ax in a chest.,\"Now, our view\"\nlsmdc3005_ABRAHAM_LINCOLN_VAMPIRE_HUNTER-2322,14783,Someone comes in and greets the men with a crisp smile. Someone,shoots a cutting look at someone who lowers his gaze.,\"starts to stroll away from the chair, bouncing his butt, and down his arms above his head.\",steps back into his throne and smiles.,\"stacks of small plastic containers in a rural spot, as he rides the horses mount a platform onto a wheelie.\",goes back to the bar and arrives pruning the protesters with the surf.,gold0-orig,pos,unl,unl,unl,unl,Someone comes in and greets the men with a crisp smile.,Someone\nanetv_LvRP3c5n3P8,14966,\"Then, the man makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone. After the nurse enters to visit a a sick man as well two doctors who carry green sparkles on their hands that\",leaves on the sick man.,\"move from each side and follow it around a rookie, where can we see the finished product.\",include several people on them.,have some sleep next to him.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the man makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone.\",After the nurse enters to visit a a sick man as well two doctors who carry green sparkles on their hands that\nanetv_LvRP3c5n3P8,14965,\"People walk in the hallways of a hospital, then a doctor reviews the injured leg of a man leaving green sparkles on the leg and a machine. Then, the man\",makes a call and leaves green sparkles on the phone that it is passes to the hand of a nurse that grabs the phone.,uses a scraper to tattoo a man and hold him chin in a hand.,in black puts a sock on the left leg of his hand and the man starts to mop.,\"shows a second in front of the amazon and puts the shoes on, then, the boy rubs his leg with a dryer.\",,gold0-orig,pos,unl,unl,unl,n/a,\"People walk in the hallways of a hospital, then a doctor reviews the injured leg of a man leaving green sparkles on the leg and a machine.\",\"Then, the man\"\nanetv_yeUuZ9vk5gE,15723,A person is seen placing dough balls onto a pan and then placing them into an oven. She then,takes them out of the oven and puts the cookies onto a plate.,garnishes several different called cookie dough cookies in the hands.,begins cleaning the other potato and places canister in the oven.,pours more food onto the cookie and bowls it with other ingredients while throwing her hands.,adds a chip with the number and seals it to a oven.,gold0-orig,pos,unl,unl,unl,unl,A person is seen placing dough balls onto a pan and then placing them into an oven.,She then\nlsmdc3029_GREEN_ZONE-13921,12687,\"Summoning a breath, someone smiles. Now, someone\",strides outside through a doorway framed by stained glass panels.,\"sits glumly in the middle of the canal, propped under the banister, then peers into a wide vaulted chamber.\",strolls up to the registration desk and finds a computer reclined on a desk in the dark.,locks herself in his front then goes backwards searching his surroundings and sees him standing beside an elevator behind him.,sails through a slender bar.,gold0-reannot,pos,unl,unl,unl,unl,\"Summoning a breath, someone smiles.\",\"Now, someone\"\nanetv_E9R1H8xRIW8,9558,He is using a push mower to mow the grass. He,lifts the mower and turns it at every corner.,bounces several leaves on a very tall grass road.,gets from the pot and rakes it out in the grass.,continues playing with the camera.,,gold0-orig,pos,unl,unl,unl,n/a,He is using a push mower to mow the grass.,He\nanetv_E9R1H8xRIW8,18234,A man is seen pushing a lawn mower across a lawn to cut the grass. The man,continues moving the machine all along the yard while the camera captures his movements.,pans around on the lawn with the mower and moves to the side.,continues raking dirt all around the table and moving a lawn mower around.,continues rolling the lawn around while pushing the lawn mower by pushing the mower around.,continues raking in the yard while with measuring and spinning and leaves around.,gold0-orig,pos,unl,unl,unl,unl,A man is seen pushing a lawn mower across a lawn to cut the grass.,The man\nanetv_E9R1H8xRIW8,9557,A man is outside in his front yard. He,is using a push mower to mow the grass.,is using a leaf blower to pull up snow.,picks up a chainsaw and starts mowing the lawn.,is carrying a large pile in his hands.,is wearing a black shirt and silky track pants.,gold0-orig,pos,unl,unl,pos,pos,A man is outside in his front yard.,He\nanetv_tzbJ_CETeG8,127,A group of men are in a sandy desert. They,climb on top of camels and ride them.,are using a scissors to lead into the bull.,ride around to ride horses in a park.,are playing tug of war over a bagpipe.,are wearing wax bands.,gold0-orig,pos,unl,unl,unl,unl,A group of men are in a sandy desert.,They\nanetv_tzbJ_CETeG8,128,They climb on top of camels and ride them. They,ride the camels toward a set of pyramids.,ride down a slide in rocky waters.,go in and get ready to go.,\", dance, and lie behind the bar as they try to do it sexy.\",continue to ride down the river and end afterwards taking the wings out.,gold0-orig,pos,unl,unl,unl,unl,They climb on top of camels and ride them.,They\nanetv_jpvgI6bNO1g,15093,A person is seen tightening the rope followed by walking along the rope. Several people,are seen walking on the rope as well as bouncing and performing tricks.,are shown lining up and down.,are shown working out on a rope in the end.,begin to run around trying to keep a hold on the rope.,are then seen riding on the rope and performing tricks and tricks with one another.,gold1-orig,pos,unl,unl,pos,pos,A person is seen tightening the rope followed by walking along the rope.,Several people\nanetv_jpvgI6bNO1g,15092,A camera pans all around a forest and leads into a rope tied to a tree. A person,is seen tightening the rope followed by walking along the rope.,is sitting at the calf and sitting back on his horse.,continues pushing rocks all along with the rope.,is then seen kneeling close beside a fish.,rides a tube down a river with legs in back.,gold0-orig,pos,unl,unl,pos,pos,A camera pans all around a forest and leads into a rope tied to a tree.,A person\nlsmdc1035_The_Adjustment_Bureau-85463,12568,\"As someone faintly nods, the smiling woman shakes her head. Their amused smiles\",relax as their stare lingers.,\", they walk away from the camera.\",allows their bewildered group to return the glance.,look twinkling in the eyes.,focuses on the end of the arquillian.,gold0-orig,pos,unl,unl,unl,unl,\"As someone faintly nods, the smiling woman shakes her head.\",Their amused smiles\nanetv_oq8DE3Cbar0,4172,He is playing an accordian for the people passing by. A few,\"pause to listen, then continue on their way.\",people behind him are dancing.,is gathered around playing bongos.,gets up and walks to a table with a broom.,,gold0-orig,pos,pos,pos,pos,n/a,He is playing an accordian for the people passing by.,A few\nanetv_oq8DE3Cbar0,4171,A man in a movie mask is seated by a flight of stairs. He,is playing an accordian for the people passing by.,is in the ribs making room.,is playing a tune and singing on a drum set.,attempts to flip and the engineers lock on him.,is preparing news signs on the street next to black someone.,gold0-reannot,pos,unl,unl,unl,unl,A man in a movie mask is seated by a flight of stairs.,He\nanetv_uatIP3FGQXk,7608,A large group of kids are seen standing around a field playing a game with one another. One boy throws a ball to another and the other,kicks it off into the distance.,children stand next to the net.,team shows in armor at the game.,tries to help them.,hits the ball on the left.,gold0-reannot,pos,unl,unl,unl,pos,A large group of kids are seen standing around a field playing a game with one another.,One boy throws a ball to another and the other\nanetv_uatIP3FGQXk,7609,One boy throws a ball to another and the other kicks it off into the distance. The kids,continue to play with one another as well as run along the field.,try trying to twirl the ball on the field.,continue kicking around one another.,run and run and bounce feet on the ground.,continues tossing the ball as far as possible.,gold0-reannot,pos,unl,unl,pos,pos,One boy throws a ball to another and the other kicks it off into the distance.,The kids\nanetv_zrwpgILg7VI,10377,A large group of people are in a mall and are watching people set up an area with a large black floor and a large black wall. Suddenly there are lit up people wearing light suits that are dancing on the black area and they,\"change from 1 - 7 people, and alternate suit colors from white, then to red and then back to white again.\",get all around and attempt to help the ball.,will rub it across.,have entered and start doing scene.,,gold0-reannot,pos,unl,unl,pos,n/a,A large group of people are in a mall and are watching people set up an area with a large black floor and a large black wall.,Suddenly there are lit up people wearing light suits that are dancing on the black area and they\nanetv_bTlfN4vJkiY,2931,He walks away from the camera as he pushes the mower. He then suddenly,\"stops, chasing the person with the camera and knocking them over.\",brushes away from her holding the horn of the bat.,hops out of the elephant and has n't really finished it until he goes back.,stops and eventually uses the mower to struggle in the snow.,cuts and patch the other.,gold1-orig,unl,unl,unl,unl,unl,He walks away from the camera as he pushes the mower.,He then suddenly\nanetv_bTlfN4vJkiY,2930,A young boy is wearing a bandana and mowing a large yard. He,walks away from the camera as he pushes the mower.,\"is standing in the retirement, sitting beside his brother in a conservative stripe yellow shorts.\",comes in porch on the lawn mower and starts to mow the lawn.,takes a puff and zooms out on the dog.,is using his hand to trim a small tree in a lawn with a large mower.,gold0-reannot,pos,unl,unl,unl,unl,A young boy is wearing a bandana and mowing a large yard.,He\nlsmdc0043_Thelma_and_Luise-68470,17662,Someone is surprised to be hearing this from someone. They,are both quiet for a moment.,\"glance down from the large table, followed by someone, who tries to escape.\",people play the cards on the table across the table.,steals his hat and sorts through potatoes and carries a boogie board and looks over.,comes down the steps and doing pointedly in the front door.,gold0-reannot,pos,unl,unl,unl,unl,Someone is surprised to be hearing this from someone.,They\nanetv_Y0G_wA38HkI,15244,\"We see the man ride the kitesurf and perform the same flip. The man performs another flip, the video rewinds, and we\",see the flip again.,see a man talking into two title screens.,see the scoreboard credits.,see him falling the whole time.,see another athlete kick.,gold0-orig,pos,pos,pos,pos,pos,We see the man ride the kitesurf and perform the same flip.,\"The man performs another flip, the video rewinds, and we\"\nanetv_Y0G_wA38HkI,19426,The people pushing along the ocean while the camera captures their movements. The men,jump all along the water on the boards and continue to ride off.,continue playing with one another and leaving back and fourth afterwards several times.,flip turns and ends with the girls sitting and smiling to the camera.,continue to wind around and some speaks in the face while moving in a pit where people watch.,continue to view while the people watch him perform.,gold1-reannot,pos,unl,unl,unl,pos,The people pushing along the ocean while the camera captures their movements.,The men\nanetv_JyfelXz6GaA,13752,A large group of people are seen celebrating and shows two teams huddled up together. The teams,are then shown playing a game of soccer with one another.,continue to volleyball with one another and smiling to the camera.,play several shots at the same time while they speak to the camera or watch on the sidelines.,then begin playing a game of racquetball with one another until their goal is shown again.,,gold0-orig,pos,unl,pos,pos,n/a,A large group of people are seen celebrating and shows two teams huddled up together.,The teams\nanetv_JyfelXz6GaA,18096,Several shots are shown afterwards of people playing soccer against one another. People,continue playing against one another and end by cheering.,are shown bowling by one another while more watch on the sides.,continue to laugh along the sidelines as the team spends well.,exercises around a gym and ends with a close up of trophies.,watch the puck around the board as they get ready to launch along.,gold1-orig,pos,unl,unl,unl,unl,Several shots are shown afterwards of people playing soccer against one another.,People\nanetv_JyfelXz6GaA,18095,A large group of people are seen cheering on the sides followed by team members standing together for pictures. Several shots,are shown afterwards of people playing soccer against one another.,are shown of people curling at a ball.,are shown of people performing a game around field curling around a sand event while a ref watches them as well as the camera closer,of hockey are shown followed by a woman speaking into a microphone.,,gold1-orig,pos,unl,unl,pos,n/a,A large group of people are seen cheering on the sides followed by team members standing together for pictures.,Several shots\nanetv_JyfelXz6GaA,13753,The teams are then shown playing a game of soccer with one another. The men,continue to play up and down the field.,continue playing tug of war with one another as well as play.,hit and several times and then shown solo two goals.,float off on the side and racquets the ball while little people watch on the side.,continue walking around and splashing each other with the game.,gold0-orig,pos,unl,unl,unl,unl,The teams are then shown playing a game of soccer with one another.,The men\nanetv_assDWZW6zTA,8576,A boy is seen speaking to the camera holding two basketballs and leads into him holding them up to his face. The boy then,moves up and down the court while dribbling the balls and shoots a basket off in the end.,swings back and fourth to the camera while still looking back to the camera.,points to his throws and spins one around and ends by walking away and smiling.,demonstrates several jumping kicks and tricks as the camera pans around the boys.,,gold0-orig,pos,unl,pos,pos,n/a,A boy is seen speaking to the camera holding two basketballs and leads into him holding them up to his face.,The boy then\nanetv_VWmSZPIoBlw,7246,He walks up to a car and starts scraping the snow off the windows. The snow,falls onto the ground in front of the car.,pours on the car and the man looking at the camera and nodding.,from the car is standing in the corner of the car.,falls off as the dust clears.,gets dark and he is holding the shovel pushing it down the side.,gold1-orig,pos,unl,unl,unl,unl,He walks up to a car and starts scraping the snow off the windows.,The snow\nanetv_VWmSZPIoBlw,7245,A man wearing a black coat is standing on the sidewalk. He,walks up to a car and starts scraping the snow off the windows.,braids the other boy's hair to make it a perfect bun.,grab some rope and zoom slowly.,tries to sit ups on the bike while people are watching him from the sides.,is wearing a red shirt as music plays.,gold1-orig,pos,unl,unl,unl,pos,A man wearing a black coat is standing on the sidewalk.,He\nanetv_XxbuqeqOGaM,18492,He brings the knife to a sharpener and begins slowly to demonstrate. He,picks up the sharpening tool and talks about what he will do next and begins to sharpen again.,types out the improvement beiber machine.,removes the cutters point quickly and begins to wipe it over a knife.,begins showing how to use the paint on the knife.,is sharpening the knife sharpener to sharpen the knife.,gold0-orig,pos,unl,unl,unl,pos,He brings the knife to a sharpener and begins slowly to demonstrate.,He\nanetv_XxbuqeqOGaM,18491,A chef in the kitchen wearing a chef hat is giving instructions on how to sharpen a knife. He,brings the knife to a sharpener and begins slowly to demonstrate.,\"shows the ingredients in the pot and talking, the chef setting the eggs in a bowl on the table.\",\"keeps up and begins to eat with leaves, who then smile.\",folds the paper up from the bowl and skates on it down and back to the bowl.,is sharpening the knife on the cutting of the sharpener if he did it.,gold0-orig,pos,unl,unl,unl,pos,A chef in the kitchen wearing a chef hat is giving instructions on how to sharpen a knife.,He\nanetv_XxbuqeqOGaM,18493,He picks up the sharpening tool and talks about what he will do next and begins to sharpen again. Then he,shows all of the pieces that come with the kit and talks about it all.,starts to run towards the tree.,goes to his knife pointing his sword and shoots.,adds more poisonous lines to it and only applies an examination to the skin.,,gold0-reannot,pos,unl,unl,unl,n/a,He picks up the sharpening tool and talks about what he will do next and begins to sharpen again.,Then he\nlsmdc1009_Spider-Man3-76594,10182,\"Someone slams his fist down on someone's arm, breaking off the blades. Someone\",kicks him across the table.,\"slide down at his feet, yanking him from the top.\",brings his wand round to someone's face.,stares off into the darkness.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone slams his fist down on someone's arm, breaking off the blades.\",Someone\nlsmdc1009_Spider-Man3-76594,10183,Someone kicks someone through a glass partition. Someone,wipes blood from his mouth.,tries to tear someone from her red paper mug.,drips juice into her own mouth.,holds up a check.,wedges him into the courtyard floor.,gold0-orig,pos,unl,unl,unl,pos,Someone kicks someone through a glass partition.,Someone\nlsmdc1009_Spider-Man3-76594,10188,Someone pushes someone's head up into the path of the sky stick. Someone,'s thrown against the wall of glass shelves and crashes to the ground.,turns to see the limo cover someone and blackness.,barely rotating back to the falcon he is floating backwards.,hands a heavy rope through a rotating gate into the water.,edges out the window and the mist closes down them.,gold0-orig,pos,unl,unl,pos,pos,Someone pushes someone's head up into the path of the sky stick.,Someone\nlsmdc1009_Spider-Man3-76594,10181,The blades get stuck in the pillar behind. Someone,\"slams his fist down on someone's arm, breaking off the blades.\",\"falls onto the shore, runs down the river, stripped down.\",bears his wand then pulls it up.,gets on her head and pulls back.,,gold0-orig,unl,unl,unl,unl,n/a,The blades get stuck in the pillar behind.,Someone\nlsmdc1009_Spider-Man3-76594,10186,\"They run at each other and crash through into the secret goblin lair. As someone chases him through the lair, someone\",picks up the goblin sword and swings it at him.,runs to the front door and slices a web around its neck.,notices a nearby young man struggling on someone cot and climbs over two steps.,runs to the suv.,,gold0-orig,pos,unl,unl,pos,n/a,They run at each other and crash through into the secret goblin lair.,\"As someone chases him through the lair, someone\"\nlsmdc1009_Spider-Man3-76594,10185,He dives at someone who hauls him against another window. Someone,throws someone across the room.,runs across the street with someone.,watches from around a children's platform.,irons the red shirt.,leaps in the rain.,gold0-orig,pos,unl,unl,unl,unl,He dives at someone who hauls him against another window.,Someone\nlsmdc1009_Spider-Man3-76594,10180,Someone smashes his arm at someone's head. The blades,get stuck in the pillar behind.,throw backwards toward it!,drop out to the ground.,hit someone and someone!,\"fall into the driver's passenger seat, sending them off straight through the road as they crash back and forth in the cab.\",gold1-orig,pos,unl,unl,unl,unl,Someone smashes his arm at someone's head.,The blades\nlsmdc1009_Spider-Man3-76594,10184,Someone wipes blood from his mouth. He,dives at someone who hauls him against another window.,slides the gun shut.,shuffles between the others out with the resistance stick.,takes a deep breath then sinks down again again.,\"looks after her, a look on someone's face.\",gold1-reannot,pos,unl,unl,unl,unl,Someone wipes blood from his mouth.,He\nlsmdc1009_Spider-Man3-76594,10187,\"Someone accidentally cuts through the table, tethering the sky stick, sending it spinning out of control. Someone\",pushes someone's head up into the path of the sky stick.,\", zone balls, stalks in every direction.\",watches as the bridge slams.,halts and grabs his gear blind.,,gold1-reannot,pos,unl,unl,pos,n/a,\"Someone accidentally cuts through the table, tethering the sky stick, sending it spinning out of control.\",Someone\nlsmdc0001_American_Beauty-45938,11475,\"His face is close to hers, and suddenly the atmosphere is charged. She pulls back automatically, but it\",'s clear she is drawn to him.,is the busty tentacle.,kisses him on the lips.,continues to glisten by the drunken light in someone's weak eyes.,keeps pushing himself away.,gold0-orig,pos,unl,unl,unl,unl,\"His face is close to hers, and suddenly the atmosphere is charged.\",\"She pulls back automatically, but it\"\nlsmdc0001_American_Beauty-45938,11474,\"She just stands there, staring at someone. He\",smiles at her playfully.,turns without his stride satisfied.,\"comes out of her school sight, followed by someone.\",turns and faces her.,pushes open the door and looks out.,gold1-orig,pos,unl,unl,pos,pos,\"She just stands there, staring at someone.\",He\nlsmdc1024_Identity_Thief-82275,18442,Someone reverses over her mailbox and into the neighbor's yard knocking over a sign. He,cuffs their hands together.,\"notices a person at the top of a tall, single man.\",grabs the ax and gets the fire.,is watched with german.,,gold1-orig,unl,unl,unl,unl,n/a,Someone reverses over her mailbox and into the neighbor's yard knocking over a sign.,He\nlsmdc1024_Identity_Thief-82275,18439,Two thugs stand at the door. Gunshot,blasts off the door knob.,eyes his goateed son.,wave at each other.,\"tosses them to a grill, then goes back in.\",slides the diary back in his grasp and climbs out.,gold0-orig,pos,unl,unl,unl,unl,Two thugs stand at the door.,Gunshot\nlsmdc1024_Identity_Thief-82275,18441,Someone pierces two of their tires with a knife and hurries into someone's car. Someone,reverses over her mailbox and into the neighbor's yard knocking over a sign.,appears with a load in midair.,\"tugs someone's belt, then rolls down revealing himself.\",goes to leave someone and stand.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pierces two of their tires with a knife and hurries into someone's car.,Someone\nlsmdc1024_Identity_Thief-82275,18440,Gunshot blasts off the door knob. Someone,pierces two of their tires with a knife and hurries into someone's car.,undoes it and takes the steps on a cross to a hotel countertop.,wipes his eyes with his own hammer.,emerges from an wrist link.,\"stands up, people.\",gold1-reannot,pos,unl,unl,unl,unl,Gunshot blasts off the door knob.,Someone\nanetv_azfkn6EsuJA,4080,A man is buffing down his skis in a garage. He,changes position to give himself more leverage as he buffs.,shows pressure on a gauge.,is talking to the camera of young man in a riding car in a green area.,\"puts his weight down on the ground, then beats on the pedal.\",,gold0-orig,pos,unl,unl,unl,n/a,A man is buffing down his skis in a garage.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15808,\"He frowns and checks his palm, too. He\",\"seats on the snow - covered rocky ground, and looks skywards through the swirling snow.\",\"reveals coming over a mark, twelve at eleven o'clock, pinning it to the surface.\",comes in the car and places a card on the glove then swishes up after it.,\"sits against the wall in front of the canvas, being stood right back.\",\"cautiously closes the passenger doors, then peers down the alley.\",gold1-orig,pos,unl,unl,unl,pos,\"He frowns and checks his palm, too.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15805,The climber looks at this right hand. The mitten,has a hole in it.,moves closer to see if she is pointing to her own.,stops and turns around again.,starts to unfold and the needles turn over.,,gold0-orig,pos,unl,unl,unl,n/a,The climber looks at this right hand.,The mitten\nlsmdc1062_Day_the_Earth_stood_still-100531,15800,\"He squints at the intensity, the swirling brilliance within. He\",is enveloped in a brilliant light of overwhelming intensity.,holds it out that it's $100 30.,keeps cheering on her computer.,removes the tentacles from his body to bottom her.,makes the black hand of the wand.,gold0-orig,pos,unl,unl,unl,unl,\"He squints at the intensity, the swirling brilliance within.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15802,\"The climber lies next to it, his eyes closed. He\",awakens and rises slowly.,sprints across the water.,places his right hand on the man's ear.,offers a pocket to pieces.,reaches a small test book holding the cat.,gold0-orig,pos,unl,unl,unl,unl,\"The climber lies next to it, his eyes closed.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15799,He raises the eye axe. Light,shines out as he breaks the crystalline crust.,light the cage forbidden from the trees.,rounds the back of the vehicle.,starts down the glass.,,gold0-orig,pos,unl,unl,unl,n/a,He raises the eye axe.,Light\nlsmdc1062_Day_the_Earth_stood_still-100531,15786,\"In 1928, a blizzard lashes the Karakoram mountains in India. In a tent, a candle glows in a lantern and a cup of snow\",is placed on a gas burner.,stands on his feet.,is hanging from under his toes.,sits at the edge of the pool.,is covered in dense dust and begin to burn several horsemen.,gold0-orig,pos,unl,unl,unl,unl,\"In 1928, a blizzard lashes the Karakoram mountains in India.\",\"In a tent, a candle glows in a lantern and a cup of snow\"\nlsmdc1062_Day_the_Earth_stood_still-100531,15801,He is enveloped in a brilliant light of overwhelming intensity. The eye sac,lies on the snow.,is kept as trees landing in the grass.,seems to hold back as he circles the ship's empire white sand.,is poured on him like some embedded or the fish.,is scratched up up in endless chain judging.,gold1-orig,pos,unl,unl,unl,unl,He is enveloped in a brilliant light of overwhelming intensity.,The eye sac\nlsmdc1062_Day_the_Earth_stood_still-100531,15794,\"He moves on, steadying himself with the ice ax. The climber\",\"raises his goggles, and stares at a glowing ball embedded in the snowy rock.\",lifts the object forwards and walks away from the wood.,moves the ladder to the end.,reaches out and cups his throat.,lowers his head angrily and talking.,gold0-orig,pos,unl,unl,pos,pos,\"He moves on, steadying himself with the ice ax.\",The climber\nlsmdc1062_Day_the_Earth_stood_still-100531,15807,\"He removes it, revealing a round coin - sized scar on the back of his hand. He\",\"frowns and checks his palm, too.\",sucks in the sandwich.,is puzzled by the sound.,takes off his dead twinkie simultaneously.,looks about to see a suma girl in a sheer brown shirt erected.,gold0-orig,pos,unl,unl,unl,pos,\"He removes it, revealing a round coin - sized scar on the back of his hand.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15792,The climber inches up a near vertical cliff. He,plunges his ice ax into the rock and hauls himself up over the edge of the rock face.,turns away from the scene.,sways as he increases in a slow style hug.,stands balanced in a helpless shrug.,\"stands by the big window, watching the bright blue sun driving past.\",gold0-orig,pos,unl,unl,unl,unl,The climber inches up a near vertical cliff.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15795,\"The climber raises his goggles, and stares at a glowing ball embedded in the snowy rock. He\",\"closes on the object, which is about 10 feet high.\",thrusts it up and flies towards him from behind.,shoots the sun's summit as he hurls a cart towards the surrounding rotting area.,slowly walks back to where someone lies at the top of the cliff.,,gold0-orig,pos,unl,unl,pos,n/a,\"The climber raises his goggles, and stares at a glowing ball embedded in the snowy rock.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15793,He moves forward as the wind howls around him. He,\"moves on, steadying himself with the ice ax.\",is watching tug of gulls.,\"heads down the hall towards the sound, as the stairs go.\",\"dangles over his head, then crashes into someone.\",\"cast a cattle spell, scrutinizing surfaces.\",gold0-orig,pos,unl,unl,unl,unl,He moves forward as the wind howls around him.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15806,The mitten has a hole in it. He,\"removes it, revealing a round coin - sized scar on the back of his hand.\",\"drains the wood, but is n't secure.\",quickly takes a sharp piece of bark from a log.,knocks down some harm and finds the shoulders drop.,has a black case standing next to him.,gold1-orig,pos,unl,unl,unl,unl,The mitten has a hole in it.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15787,\"A light shines outside, then goes dark. He\",emerges from the tent in thick furs with a climbing ax and a rope wrapped around him.,hangs a telephone on the rail near the front.,nudges someone to find the entire apartment form at the sink.,moves down a hill of sky.,,gold1-orig,pos,unl,unl,unl,n/a,\"A light shines outside, then goes dark.\",He\nlsmdc1062_Day_the_Earth_stood_still-100531,15784,Stars drift slowly in the blackness of space. A moon,glows silver in the darkness.,\"glows on a backdrop of slowly, glowing, wafting grunts.\",shows up above the city with an cloud of color.,\"rises from the water, inside the vessel's steaming sheets.\",,gold0-orig,pos,unl,unl,unl,n/a,Stars drift slowly in the blackness of space.,A moon\nlsmdc1062_Day_the_Earth_stood_still-100531,15803,He awakens and rises slowly. He,seats up and looks around.,opens it and brings it into a stop.,stands over and sleeps with his hands down on his elbows.,\"looks down at the air, surveys the height and has not been random the last time.\",\"smiles at someone, spins, and walks away.\",gold0-orig,pos,unl,unl,pos,pos,He awakens and rises slowly.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15790,Beams of light radiate skywards from behind a rocky ridge. The climber carefully,ascends a snowy slope.,peers across a tall diamond on the door.,pushes the cross into the water.,takes a row of feed from the first man.,sways back and forth between them with a weathered wooden cross.,gold0-orig,pos,unl,unl,unl,unl,Beams of light radiate skywards from behind a rocky ridge.,The climber carefully\nlsmdc1062_Day_the_Earth_stood_still-100531,15809,\"He seats on the snow - covered rocky ground, and looks skywards through the swirling snow. Object seen through an electron microscope,\",appear on a screen.,moving toward a skyscrapers of towering statues covered in frosted stone windows.,creating a bead cloud.,quickly shrieking and scared.,,gold0-orig,pos,unl,unl,unl,n/a,\"He seats on the snow - covered rocky ground, and looks skywards through the swirling snow.\",\"Object seen through an electron microscope,\"\nlsmdc1062_Day_the_Earth_stood_still-100531,15785,A moon glows silver in the darkness. Letters,form around the moon.,flash in the moonlight.,\"fly out of the water, watching the daylight in manhattan.\",blazes as it moves slowly toward the island.,,gold0-reannot,pos,unl,unl,unl,n/a,A moon glows silver in the darkness.,Letters\nlsmdc1062_Day_the_Earth_stood_still-100531,15788,He emerges from the tent in thick furs with a climbing ax and a rope wrapped around him. He,pulls on goggles to protect his eyes.,gallops across the paths of the shire.,\"looks at the house, her chest heaving.\",opens the door and steps outside.,leans against a floating rock.,gold0-reannot,pos,unl,unl,unl,unl,He emerges from the tent in thick furs with a climbing ax and a rope wrapped around him.,He\nlsmdc1062_Day_the_Earth_stood_still-100531,15796,\"He closes on the object, which is about 10 feet high. Its surface\",\"is crystalline, with shadows and lights swirling inside.\",is open and starts to go down again.,features a hatch above the tank top.,is empty and away from the camera.,is close in by the amount of fire suddenly begins to heat itself up.,gold0-reannot,pos,unl,unl,unl,unl,\"He closes on the object, which is about 10 feet high.\",Its surface\nlsmdc1062_Day_the_Earth_stood_still-100531,15791,The climber carefully ascends a snowy slope. The climber,inches up a near vertical cliff.,watches the plane dive off.,continues to show proper left labored way.,gets dressed in a black and white horse climbing a mountain.,bounces all the way up the slope and continues to push himself down from the bottom of the hill.,gold1-reannot,pos,unl,unl,unl,pos,The climber carefully ascends a snowy slope.,The climber\nanetv_oobYvNJU5ko,10826,\"A male stylist put rollers on the hair of a woman using a brush and a hair dryer. After, the male stylist\",fix the hair of the woman using both hands.,combs the brush with a comb and blow blow obscuring her hair.,sits in a chair in the background as a stylist ties a silver nightie over her head.,return the blow dryer while giving instructions and styling the braided.,,gold0-orig,pos,unl,pos,pos,n/a,A male stylist put rollers on the hair of a woman using a brush and a hair dryer.,\"After, the male stylist\"\nanetv_oobYvNJU5ko,227,The man then begins fluffing a woman's hair. the man,holds a bottle to the camera and begins styling the woman's hair.,rubs lotion on his back and demonstrates doing sit ups.,pulls the hair out from behind her head with an blow dryer.,moves his hand around and cuts it.,,gold0-reannot,pos,unl,pos,pos,n/a,The man then begins fluffing a woman's hair.,the man\nanetv_GsR4fagoV-Q,6403,One man makes a point and the other man beats on the ping pong table. this pattern,is repeated a few times.,is then shown on a close shot while the other man receives the text.,spins and catches the child's progress as the boy demonstrates it to the ball.,is moving behind the video played.,shows him waving so he can stop shaking it and speaking.,gold0-orig,pos,unl,unl,pos,pos,One man makes a point and the other man beats on the ping pong table.,this pattern\nanetv_GsR4fagoV-Q,6401,Two men stand across each other at a ping pong table. the men,begin playing ping pong.,perform a moves with a metal ball in a near racket.,pretend to arm wrestle.,shake hands with each other.,speak into the camera while playing a game of table tennis.,gold0-orig,pos,unl,unl,unl,pos,Two men stand across each other at a ping pong table.,the men\nanetv_GsR4fagoV-Q,6402,The men begin playing ping pong. one man makes a point and the other man,beats on the ping pong table.,is hit and thrown back in.,jumps off the mat and lands on a yellow mat but does n't bend down.,on the right serves the ball.,\"takes their racket, pauses that there is a brief moment and more of his whistle and the other young singing.\",gold1-orig,pos,unl,unl,unl,unl,The men begin playing ping pong.,one man makes a point and the other man\nanetv_GsR4fagoV-Q,18572,Two men are seen playing a game of ping pong with each other hitting the ball back and fourth. One man,chases the other around and walks back into frame to play the game.,is then shown in his running match moving around the rooms.,serves the player in the end to hit four pins down.,spins and throws the ball at his opponent and another man hits and knocks him down afterwards.,,gold0-orig,pos,unl,unl,unl,n/a,Two men are seen playing a game of ping pong with each other hitting the ball back and fourth.,One man\nanetv_r4oAhRg4H14,9013,We see a man hop and deflect a ball from the net in slow motion. We,see two men collide in slow motion.,see a man throw on the rake.,\"see the boy and referee lacrosse, throwing sticks into the air.\",see people in the crowd then shake hands.,hit the goal and his team hit the ball back and forth.,gold1-orig,pos,unl,unl,unl,unl,We see a man hop and deflect a ball from the net in slow motion.,We\nanetv_r4oAhRg4H14,9011,We see an opening title screen. We,see shots of people playing soccer in an indoor arena.,see an image wearing different kinds and various pictures.,see a white title screen.,see a man in the room.,see a man playing an instrument.,gold0-orig,pos,unl,pos,pos,pos,We see an opening title screen.,We\nanetv_r4oAhRg4H14,9012,We see shots of people playing soccer in an indoor arena. We,see a man hop and deflect a ball from the net in slow motion.,see a man in a blue shirt leading a bowler.,see people playing croquet under the grass.,see a large sign.,see a person using a ball behind the net.,gold0-orig,pos,unl,unl,unl,pos,We see shots of people playing soccer in an indoor arena.,We\nanetv_PBxI7l0AqAY,8466,A man is speaking about how things works while a woman works on a horse. As he speaks he,washes his hands with some hand sanitizer.,ties the shoe and ties it up.,begins to demonstrate skating on the bike while looking further down.,\"speaks to the camera and walks away from the pole, with the camera while still helping from the machine.\",shows off several lengths of leather ankle and brings them various tools.,gold0-orig,pos,unl,unl,pos,pos,A man is speaking about how things works while a woman works on a horse.,As he speaks he\nanetv_PBxI7l0AqAY,8467,Then he gets soap and starts to wash his hands very throughly. He,grabs a napkin and dries his hands off still continuing to speak.,is sitting in a chair talking to the camera while his face speaks back to him.,finishes washes the dishes and work the.,is a color very sharp and bright at the top and after getting out of it.,picks a man up and shows the clorox you will need before talking to the camera.,gold1-orig,pos,unl,unl,unl,unl,Then he gets soap and starts to wash his hands very throughly.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12882,He steps closer to someone. He,gives a longing look.,makes a swipe - - stick his head among the crowded court.,hands her into a chair.,\"makes a powerful splash, which shrinks back.\",gestures for someone to enter.,gold1-orig,pos,unl,unl,unl,pos,He steps closer to someone.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12881,Someone emerges from a door right beside him. He,steps closer to someone.,slides the orb across the slack line.,hits an fallen woman across the table.,moves to someone's bedroom spot and wanders off in the opposite direction.,listens on the phone as she walks past him.,gold0-orig,pos,unl,unl,unl,pos,Someone emerges from a door right beside him.,He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12879,\"He sets his headphones by his turntables, then dances backward out of someone's view. As the fbi agent\",shifts to another window trying to find the guard.,shuffles through a box.,\"turns his kids away, someone spots her accomplice.\",presses a button and addresses the car.,holds an empty leather magazine under his eyes.,gold0-orig,pos,unl,unl,unl,unl,\"He sets his headphones by his turntables, then dances backward out of someone's view.\",As the fbi agent\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12884,\"Wearing a leather jacket and a loose scarf around his neck, he plucks a flower from a vase as he heads to someone's table. He\",leans on the booth facing her and gives a smoldering look.,picks up the lantern.,\"grins stiffly and steps toward the old lady, leaning against the door frame.\",gets his flask from it and takes a swig.,,gold0-orig,pos,unl,unl,pos,n/a,\"Wearing a leather jacket and a loose scarf around his neck, he plucks a flower from a vase as he heads to someone's table.\",He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12876,\"As they spin around again, someone crouches by the window and raises his binoculars. Someone\",hands over a bag.,rolls a tiny fish down from the floor and heads on down the alley blocked by a group of children.,\"stands while flirting, smoking.\",\"strides slowly through the duct, clutching his body.\",,gold0-orig,pos,unl,pos,pos,n/a,\"As they spin around again, someone crouches by the window and raises his binoculars.\",Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12880,As the fbi agent shifts to another window trying to find the guard. Someone,emerges from a door right beside him.,follows the other tuber toward the house.,leaps from a sub cart and propels the door outer of into the room.,\"stands up in the sky, watching.\",ends the call and crosses to a nurse.,gold0-orig,pos,unl,unl,unl,unl,As the fbi agent shifts to another window trying to find the guard.,Someone\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12878,\"Snapping his fingers, someone bobs his head. He\",\"sets his headphones by his turntables, then dances backward out of someone's view.\",\"looks with one palm, then bashfully steadily down someone's own own.\",\"winds around, knocking the monster's body out of his way.\",touches it to his palm and presses his fingers together.,extends his hand in a nervous expression and opens his mouth.,gold0-orig,pos,unl,unl,pos,pos,\"Snapping his fingers, someone bobs his head.\",He\nlsmdc3010_BIG_MOMMAS_LIKE_FATHER_LIKE_SON-360,12885,She takes it and sets it aside. Someone,sits back with a smile.,tightens around as he kisses her.,\"stares into someone's eyes, but the mother wears a faint smile.\",notices someone's hand on the table wheel and she goes over to a cabinet near the door.,\"frowns she gawks at him, wrapping herself in front of him as she pleads.\",gold0-reannot,pos,unl,unl,unl,unl,She takes it and sets it aside.,Someone\nanetv_4fEY6zIq8bQ,4136,The man bend over then continue to plaster the wall. The man,cover the wall with pink plaster until the whole wall is covered.,cuts the plaster to the wall and add a brush to remove the wall drawer.,picks up plaster and continues shoveling until he's finished.,picks up the plaster and starts walking again.,,gold0-orig,pos,unl,unl,pos,n/a,The man bend over then continue to plaster the wall.,The man\nanetv_4fEY6zIq8bQ,4135,The man is plastering the wall. The man,bend over then continue to plaster the wall.,throws all of shingles up using an orange tool.,continues cleaning the roof.,stands up and holds the bottom of his shoe.,works again on the wall.,gold0-orig,pos,unl,unl,unl,pos,The man is plastering the wall.,The man\nlsmdc1015_27_Dresses-79658,19141,\"As someone approaches, her face falls, realizing that people are making a beeline for each other. They\",smile as someone frowns.,\"turns it for a moment, crying gently.\",don't have eyes dark.,\"keep packing their hand out, trying to pick them up again.\",\"are shot, as they all careens into a cavernous garden, which is tossed everywhere.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone approaches, her face falls, realizing that people are making a beeline for each other.\",They\nlsmdc1015_27_Dresses-79658,19140,\"Someone spots her and grins, then clocks someone. As someone approaches, her face\",\"falls, realizing that people are making a beeline for each other.\",\"is suddenly pale and skeletal, as a pretty, dark - haired woman by someone clutches his sword to see his searchlights.\",softens on someone's kisses.,morphs to a sink.,glows in a blue hand.,gold1-orig,pos,unl,unl,unl,unl,\"Someone spots her and grins, then clocks someone.\",\"As someone approaches, her face\"\nlsmdc1015_27_Dresses-79658,19138,\"Someone walks breathlessly over to where someone is drinking beer and chatting with friends. Someone, in a shimmery dress,\",approaches from the other direction.,\"is carrying two women out,.\",\"stands in the doorway staring, her stomach on the floor, beside her.\",sits glumly on the stairs.,walks behind him to see stacks of folders scattered over it.,gold1-orig,pos,unl,unl,pos,pos,Someone walks breathlessly over to where someone is drinking beer and chatting with friends.,\"Someone, in a shimmery dress,\"\nlsmdc1015_27_Dresses-79658,19139,\"Someone, in a shimmery dress, approaches from the other direction. Someone\",\"spots her and grins, then clocks someone.\",sets up a few red flowers on the table and looks at him.,is slowly starting her weak build.,gets out of the elevator and waits on the back steps.,steps behind and abruptly notices a tall broom standing outside.,gold0-reannot,pos,pos,pos,pos,pos,\"Someone, in a shimmery dress, approaches from the other direction.\",Someone\nanetv_0K1SrDmREzs,11333,An athletic woman is seen standing in a circle moving in a slow motion holding a discuss. She then,spins herself around while holding the object and then throwing it off the distance.,begins jumping up and down and ends by throwing a object off into the distance.,turns to demonstrate how to split and twirl her arms on the mat while pausing to speak to the camera.,jumps into the air and throws a handful of smoke in the air.,goes back and forward while the audience watch her as she jumps speed.,gold0-orig,pos,unl,unl,unl,pos,An athletic woman is seen standing in a circle moving in a slow motion holding a discuss.,She then\nlsmdc0003_CASABLANCA-46980,7518,Someone's head slumps over the table. Someone,sits while someone attends to some paperwork.,takes the stiff coffee.,bends down to pick up the crying young polish weak to fall to the floor.,caresses his sleeping boy's parents's lap.,slaps herself and walks away.,gold1-orig,pos,unl,unl,unl,pos,Someone's head slumps over the table.,Someone\nlsmdc0003_CASABLANCA-46980,7519,People make their way through the jam in the lobby of the Prefecture. People,talk to an officer.,are in store with someone.,ride at the back door.,put on a roof and start moving their books.,are standing behind them.,gold0-orig,pos,unl,unl,unl,pos,People make their way through the jam in the lobby of the Prefecture.,People\nlsmdc0003_CASABLANCA-46980,7517,Someone gets up and leaves. Someone's head,slumps over the table.,rises to his feet.,hangs from the window behind him.,snaps off.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone gets up and leaves.,Someone's head\nlsmdc0003_CASABLANCA-46980,7521,People enter someone's office. Someone,bows to them both.,observe the goblin layout.,is seated at the wide console.,fiddles with a needle.,opens his plan book.,gold0-reannot,pos,unl,pos,pos,pos,People enter someone's office.,Someone\nanetv_2q_4I3ae0J4,447,Final out come is a great hit and steps on how to make a great hit. the guy,\"shows you many good tips on how you step into the hit, the way up swing and the follow though for best performance.\",begins caressing the battery and still aiming into it.,kicks one of the men at each other and fires him across a floor which is mostly holding.,\"waits on the edge of the snowslide, trying to steady his speed.\",,gold0-orig,pos,unl,unl,pos,n/a,Final out come is a great hit and steps on how to make a great hit.,the guy\nanetv_2q_4I3ae0J4,14216,The man throws the ball in the air and immediately hit the ball with the stick. The man,\"throws the ball in the air, then swing his body to hit the ball with the stick.\",continues to watch with the other's racket and throw the javelin in all the throws.,throws the ball down and wrestles his pants onto the other side.,leans to demonstrate how to win the puzzle to get them to win.,dropped the ball and silver running and fell to the ground.,gold1-orig,pos,unl,unl,unl,unl,The man throws the ball in the air and immediately hit the ball with the stick.,The man\nanetv_2q_4I3ae0J4,14215,A man plays hurling and serves a ball with a stick. The man,throws the ball in the air and immediately hit the ball with the stick.,gives a 3d hurdle and runs over to his opponent.,retrieves the hoop and throws the ball to the ground.,finishes running and throw after the ball.,is shown doing the splits while kicking the ball across a court.,gold0-orig,pos,unl,unl,unl,unl,A man plays hurling and serves a ball with a stick.,The man\nanetv_2q_4I3ae0J4,446,He tossed the ball just a little in the air and steps into it as it's falling down and make a great connection with the stick he have in his hand. final out come,is a great hit and steps on how to make a great hit.,stop in the mouth of another bowling game.,\"to a attempt, and a man is able to grab a ball from a hook using a white stick to cross the ocean.\",up cheers to make another fire.,begins pushing someone's mouth for it far.,gold0-orig,unl,unl,unl,unl,unl,He tossed the ball just a little in the air and steps into it as it's falling down and make a great connection with the stick he have in his hand.,final out come\nlsmdc3052_NO_STRINGS_ATTACHED-25344,17390,\"At the hospital, someone runs to someone who's with someone. Someone\",lies on a bed.,leans over the kitchen counter.,pours soda on his wounded colleague.,consults the situation problems.,\"pumps a fist, her jaw hanging open.\",gold0-reannot,pos,unl,unl,pos,pos,\"At the hospital, someone runs to someone who's with someone.\",Someone\nanetv_zCND0HJq6Iw,10752,\"After their interaction, the man begins to play the wind pipes on his back as he walks back and forth across the stage. The crowd is shown and the camera goes back to the stage and several lights\",come on as the guitarist begins to play.,begin to go black and return to one then the audience and more people continue playing in different medals of victory.,wearing their helmets pitch in.,are shown up around other people play tables in teams.,are ready to play.,gold0-orig,pos,unl,unl,unl,unl,\"After their interaction, the man begins to play the wind pipes on his back as he walks back and forth across the stage.\",The crowd is shown and the camera goes back to the stage and several lights\nanetv_zCND0HJq6Iw,10751,\"A white man is on the stage with long dreads throwing up the piece sign to the audience. After their interaction, the man\",begins to play the wind pipes on his back as he walks back and forth across the stage.,raises one fist until the left wall breaks the man's man's hand free.,begins transfixed and disappointed.,in white falls away into the plastic shady carpet.,\"flips several times and flips forward, throwing them up as the motion walks away to the mat and fades to a flashback.\",gold0-reannot,pos,unl,unl,unl,unl,A white man is on the stage with long dreads throwing up the piece sign to the audience.,\"After their interaction, the man\"\nanetv_3gQsAKZ71tU,6622,A man stands on a court. He,hits a ball with a racket.,jumps off his bike and goes.,starts in the act of hitting the ball against each other while he is standing.,hits a ball and the pins falls to the floor.,pulls the ball out of the net.,gold0-orig,pos,unl,unl,unl,unl,A man stands on a court.,He\nanetv_3gQsAKZ71tU,6624,Several different athletes are shown hitting balls. Some of them,cheer at the end.,are cheering while they lob the ball back and forth for the players.,are using tennis balls to hit the ball.,have won then they all begin jumping rope in a competition.,\"run over the ice, trying to win.\",gold1-orig,pos,unl,unl,unl,pos,Several different athletes are shown hitting balls.,Some of them\nanetv_3gQsAKZ71tU,6623,He hits a ball with a racket. Several different athletes,are shown hitting balls.,\"have a goal in the court, so he throws his cue stick.\",walk around him while he lays down to serve.,perform with his racket.,throw the ball around.,gold0-orig,pos,unl,unl,unl,pos,He hits a ball with a racket.,Several different athletes\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2215,Someone runs out after him. The boy,turns around with a wounded glare.,\"charges the launcher and shoots someone in the head, then stirs against someone.\",snaps with thread.,washes toward an elderly lady at a dinner table.,grabs it and runs straight over.,gold0-orig,pos,unl,unl,unl,unl,Someone runs out after him.,The boy\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2203,\"The troubled teen runs out. Later, our view\",chases after him as he races through the park.,cuts to the bridal gown.,jostles by someone's drunken executive.,\"sweeps to a high dressing room, where someone gets out to see someone room in bed.\",quickly orbits the participation of cabins.,gold0-orig,pos,unl,unl,unl,unl,The troubled teen runs out.,\"Later, our view\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2204,\"Later, our view chases after him as he races through the park. Night\",falls as he bolts down someone's street and into her apartment building.,jumps into the basin a few times.,skateboards pass him through the airport.,lets out a sigh.,falls hard on the tree.,gold0-orig,pos,unl,unl,unl,unl,\"Later, our view chases after him as he races through the park.\",Night\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2207,She slips out shutting the door behind her. He,presses her up against the door and kisses her.,runs along the bathroom and finds his light vest inside.,drags someone across from the car.,\"comes by, picks up a kettle bell and leaves.\",\"walks into the lobby, hurries across the upstairs building, and answers a cellphone.\",gold1-orig,pos,unl,unl,pos,pos,She slips out shutting the door behind her.,He\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2202,As someone gets back up his stepfather restrains him from behind. He backs someone into the doorframe and the older man,slumps to the floor clutching his shoulder.,lips him to put his arms around the middle.,gets up and pitches to the ground.,spots someone and races over.,,gold0-orig,pos,unl,unl,unl,n/a,As someone gets back up his stepfather restrains him from behind.,He backs someone into the doorframe and the older man\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2209,\"She pushes him back and frowns uncomfortably. With a heavy blink, she\",lifts her brown eyes to meet his.,steps away from someone and walks away.,places her phone back in the sink.,reaches toward the back of her childhood friend's lifeless corpse.,,gold1-orig,pos,unl,unl,unl,n/a,She pushes him back and frowns uncomfortably.,\"With a heavy blink, she\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2211,Someone twists the doorknob behind her back. She pushes the door open a crack and someone,takes a look inside.,starts to climb back on.,runs over to him.,appears to be awake.,waddles over to face her.,gold1-orig,pos,unl,unl,unl,unl,Someone twists the doorknob behind her back.,She pushes the door open a crack and someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2213,\"Charlotte sits on the sofa near someone who guiltily leans forward in an armchair. Later, someone\",marches away from the apartment building.,leads them into the hangar.,stuffs a penguin in the bag.,sits at a bench in the basement.,,gold1-orig,unl,unl,unl,unl,n/a,Charlotte sits on the sofa near someone who guiltily leans forward in an armchair.,\"Later, someone\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2208,He presses her up against the door and kisses her. She,pushes him back and frowns uncomfortably.,drives off and switches to the darkened room.,\"opens her eyes, then thrusts the check - case into his mother's hand.\",\"sits at an upright metal bar, pouring her drink.\",\"is still constructed in the doorway, a tracked green, rhythmic fog of letters getting various animals of their fellow plants traditional appeared on\",gold0-orig,pos,unl,unl,unl,unl,He presses her up against the door and kisses her.,She\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2201,Someone grabs him roughly and they wrestle to the floor. As someone gets back up his stepfather,restrains him from behind.,\", his eyes meet, his face sincere as if spinning a horse.\",\", two ladies step toward his mother, who destroying the two men's thoughtful eyes.\",\", someone gets up and throws her arms at someone; she pushes him away.\",\", he starts to overcoat the shirt and carries it out of his hands.\",gold0-orig,pos,unl,unl,unl,unl,Someone grabs him roughly and they wrestle to the floor.,As someone gets back up his stepfather\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2216,The boy turns around with a wounded glare. Someone,\"pouts, his eyes glistening.\",gives him an occasional pat on his tail.,pokes someone's head with a towel.,keeps looking at him intently.,stares at the camera in concerned faces.,gold0-orig,pos,unl,unl,unl,pos,The boy turns around with a wounded glare.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2214,\"Later, someone marches away from the apartment building. Someone\",runs out after him.,is carrying a telephone pump on 57.,stands at the reception desk and looks up.,\"takes two coffees and climbs up the stairs, leading a group of survivors.\",steps inside and fiddles with her fingers.,gold0-reannot,pos,unl,pos,pos,pos,\"Later, someone marches away from the apartment building.\",Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32454,2205,Night falls as he bolts down someone's street and into her apartment building. He,catches his breath as she answers.,are batting the crypt boy.,\"sees cars falling off the street and walks out of his parking garage, followed by someone once more.\",looks down into a large space and market it.,looks up at him.,gold0-reannot,pos,unl,unl,unl,pos,Night falls as he bolts down someone's street and into her apartment building.,He\nlsmdc1014_2012-78989,7022,\"Someone pilots the plane between tumbling sections of the freeway, then rolls to the right. Someone\",struggles for height as the street rises.,climbs the ladder and stands at the bottom.,comes back from the carton.,reverses and puts it on.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone pilots the plane between tumbling sections of the freeway, then rolls to the right.\",Someone\nlsmdc1014_2012-78989,7019,The runway starts to collapse. Someone,eyes the controls nervously.,bursts out to him fixing the trunk.,\"excitedly eats it over her plumed shoulder, and holds a brief look.\",'s snowslide grows once brighter.,\"wakes with a start, sneaking up and firing wildly at the sign.\",gold0-orig,pos,unl,unl,unl,unl,The runway starts to collapse.,Someone\nlsmdc1014_2012-78989,7023,Someone struggles for height as the street rises. Someone,sobs as people and cars are thrown into the doom below.,raises his arms to face the crowd.,struggles to balance a treelike bottled water.,wash the concrete blast tower entrance.,\"turns, slapping someone with his shirt.\",gold1-orig,unl,unl,unl,unl,unl,Someone struggles for height as the street rises.,Someone\nlsmdc1014_2012-78989,7026,Someone pilots the plane straight through the gap as the building shattering all around them. Debris,fills the sky as the light plane rises.,appears into his mind.,slams a hard metal gate into the ship's hull.,follows someone to a side door and looks through the blinds leading nearby.,wisps paint across a metal curtain on the dirty floor.,gold0-orig,pos,unl,unl,unl,unl,Someone pilots the plane straight through the gap as the building shattering all around them.,Debris\nlsmdc1014_2012-78989,7024,Someone sobs as people and cars are thrown into the doom below. As the plane,dips into the rising canyon.,\"rounds a corner, a green searchlight barrels through midair.\",\"drives down, it stops.\",turns away from someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sobs as people and cars are thrown into the doom below.,As the plane\nlsmdc1014_2012-78989,7020,Someone pulls the controlls up. Someone,stares wide - eyed.,walks to the bedroom and picks up the bottle of milk.,leans on it and squeezes like a missile.,rests her pistol on the foot of the seat and stares directly into the darkness behind her.,,gold1-orig,pos,unl,unl,pos,n/a,Someone pulls the controlls up.,Someone\nlsmdc1014_2012-78989,7025,The plane clears the canyon. Someone,pilots the plane straight through the gap as the building shattering all around them.,makes a call that the wharf's baker.,fills the front snow.,is the third general fleet.,'s up through the courtyard and back into the stone building.,gold0-reannot,pos,unl,unl,unl,unl,The plane clears the canyon.,Someone\nlsmdc1014_2012-78989,7021,Someone stares wide - eyed. Someone,\"pilots the plane between tumbling sections of the freeway, then rolls to the right.\",sweeps his sunglasses down with his dagger in a flowerbed.,nods and a churning wave crashes through the sky.,drops his hats on his shoulders.,pulls someone out to under the ropes.,gold0-reannot,pos,unl,unl,unl,pos,Someone stares wide - eyed.,Someone\nlsmdc1014_2012-78989,7027,Debris fills the sky as the light plane rises. Someone,gives tearful someone a big hug.,falls around someone's car.,sits safely on his bunk and sharing a smile.,poses for a smoke opening.,\"looks over the urn, desperately trying to reach the orb.\",gold1-reannot,pos,unl,unl,unl,unl,Debris fills the sky as the light plane rises.,Someone\nanetv__HQTWGmXXsc,18562,\"A young woman with a black dress and red cardigan on is standing in the corner of a kitchen cutting fruits. After awhile, she\",grabs six strawberries and leaves them on the cutting board as she begins to cut grapes.,\"tastes the mixture from the powdered mix, cuts the candies, then she plays it.\",\"puts her hand on the christmas tree, and places her shaded mixture with a harnesses.\",has spoons to a large bowl of eggs and gives peppers to the dogs.,shows a little doll's back and sets her head on top of a block and takes a second in the other direction.,gold0-orig,pos,unl,unl,unl,unl,A young woman with a black dress and red cardigan on is standing in the corner of a kitchen cutting fruits.,\"After awhile, she\"\nanetv__HQTWGmXXsc,18563,\"After awhile, she grabs six strawberries and leaves them on the cutting board as she begins to cut grapes. In front of her, there are two large white bowls full of fruit and she\",begins putting the cut up fruit in those bowls.,is putting them down and standing.,places various in her top bag.,starts cooking a large pot that has hot coffee.,writes in a dressing on portable salad.,gold0-orig,pos,unl,unl,unl,unl,\"After awhile, she grabs six strawberries and leaves them on the cutting board as she begins to cut grapes.\",\"In front of her, there are two large white bowls full of fruit and she\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2966,He hands her a drink and sits down on the bench beside her. They,are cast in a warm glow as the sun rises.,sit down in bed.,holds her gaze for a moment then watches the surveillance screen.,look down at her.,,gold0-orig,pos,unl,unl,pos,n/a,He hands her a drink and sits down on the bench beside her.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2969,Someone strolls across the varnished wooden floorboard and regards her reflection as she poses with one arm elevated. Someone,stands with his hands in his pockets.,smiles as the fold up and stands by her.,watches from a sparkly ticket.,\"shaves her leg, then someone brushes again.\",shaves the side of his face leaving a thin line of blood and seam.,gold0-orig,pos,unl,unl,unl,unl,Someone strolls across the varnished wooden floorboard and regards her reflection as she poses with one arm elevated.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2965,\"He strolls past the lake house to the board walk and close by wooden railings, where someone sits staring down the length at the derelict jetty, the lake beyond. He\",hands her a drink and sits down on the bench beside her.,pulls up on a platform in front of a life basket.,\"glances toward the stairway racing block, then finds her first gazing.\",holds the spear in his hand before placing it onto the ground nearby.,,gold0-orig,pos,unl,unl,pos,n/a,\"He strolls past the lake house to the board walk and close by wooden railings, where someone sits staring down the length at the derelict jetty, the lake beyond.\",He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2968,She locks up and deposits her keys by a desk. Tall studio mirrors,run the length of the wall opposite the front windows.,pass about bare hanging planks in the walls.,flap at the end of the hall.,show the winged logo.,sit in the middle of the room.,gold0-orig,pos,unl,unl,pos,pos,She locks up and deposits her keys by a desk.,Tall studio mirrors\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2967,They are cast in a warm glow as the sun rises. Someone,breezes through a dance studio.,moves deeper into the dock.,eyes raise the bow above their heads.,enters his gloomy office.,\"sees her through the window, in the shadows.\",gold1-reannot,pos,unl,unl,pos,pos,They are cast in a warm glow as the sun rises.,Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86912,2964,\"Wearing a headscarf, someone rides as someone half down the winding road on his motorcycle. Wearing a patchwork blanket around his shoulders and carrying two mugs, someone\",walks up from behind the parked motorbike.,pauses one particular car and goes to a basket of coins.,\"scrambles up, knock on the window, and crawls around the door.\",pauses at the end of a row without looking straight up.,dashes away from the dance area with a scantily - clad woman.,gold0-reannot,pos,unl,unl,pos,pos,\"Wearing a headscarf, someone rides as someone half down the winding road on his motorcycle.\",\"Wearing a patchwork blanket around his shoulders and carrying two mugs, someone\"\nanetv_8tI9IsSpgeI,6991,A man lifts large weight off the ground. He,pushes it over his head before dropping it on the ground.,pin takes the weight and the woman swings it to the man in the planetarium and she is lifted.,lifts his knee up off the ground.,lifts a barbell to his chest.,lifts a weight over his head.,gold0-orig,pos,unl,unl,unl,pos,A man lifts large weight off the ground.,He\nanetv_fGDVlbI90pw,18872,A young girl wearing a gray sweater with long red colored hair is brushing her hair. She,is using a silver paddle brush to remove the knots from her hair and de - tangle it as she brushes it through.,is then shown talking about how you can use the case to brush her hair.,\"walks past the toddler, stands her and walks away.\",puts a green towel over her face and looks.,begins talking about their routines.,gold0-orig,pos,unl,unl,unl,pos,A young girl wearing a gray sweater with long red colored hair is brushing her hair.,She\nlsmdc1023_Horrible_Bosses-82072,10426,They swerve wildly through traffic. Someone,hangs a sharp left into an empty street.,\"turns to see the ghostly couples, vanishing from the bolts.\",stands and squints at sarah's left foot and someone stirs.,\"are in a field building, inspector, debonair someone who is standing in the crowded street.\",slips into someone's jacket to the basket on a dock.,gold0-orig,pos,unl,unl,unl,unl,They swerve wildly through traffic.,Someone\nlsmdc1023_Horrible_Bosses-82072,10425,Someone rams their back end side - on to spin them around. They,swerve wildly through traffic.,roll someone to her fours.,pull it up to reveal two boys bouncing it like guns.,tumble to the floor as the black thugs pedal their backs.,,gold0-orig,pos,unl,unl,unl,n/a,Someone rams their back end side - on to spin them around.,They\nanetv_sQwx_m8Vghw,13883,A person uses a bike chain pedals and a wheel to power a small generator. The camera,zooms in on the machine parts while it's moving.,follows the credits of a car.,reveals a bright spark on the pedals behind the vehicle.,\"has a few more plants on the ground, and then pushes the key in the pedal.\",shows the left wheel repair the tire of the bike with the hand wheel on one side.,gold0-orig,pos,unl,unl,unl,pos,A person uses a bike chain pedals and a wheel to power a small generator.,The camera\nanetv_sQwx_m8Vghw,17565,A person is then seen moving the wheel around and around as it moves faster. The camera,pans in closer to watch this person peddle and move around the room.,continues to follow several colored balls as the child walks up while kicking the waves in the air.,continues to be finished by the video as he and animals go on and out of people riding around its trail.,zooms in on the edges as the person shows as well as various pans and a area look on.,continues to capture several angles as well as another suv changing several times.,gold0-orig,pos,unl,unl,unl,pos,A person is then seen moving the wheel around and around as it moves faster.,The camera\nanetv_sQwx_m8Vghw,17564,A close up of a machine is seen with a chain around it. A person,is then seen moving the wheel around and around as it moves faster.,smokes a cigarette and blows smoke out of a hookah.,is seen pushing a lawn along the side and leads into a girl walking into frame and leads into her speaking to the camera.,is then seen working out on a machine attempting to fight off on the machine.,shakes his hands with the ax.,gold0-reannot,pos,unl,unl,unl,unl,A close up of a machine is seen with a chain around it.,A person\nlsmdc1029_Pride_And_Prejudice_Disk_One-83610,18508,\"He clumsily climbs down from the carriage, causing someone to stifle a giggle. He\",bows to them reverentially.,flings him back off.,snags the purse and rises.,wraps her arms around her neck and kisses him.,\"leaps over the bed, lined with triumphant bowls, then returns.\",gold0-orig,pos,unl,unl,unl,unl,\"He clumsily climbs down from the carriage, causing someone to stifle a giggle.\",He\nlsmdc1029_Pride_And_Prejudice_Disk_One-83610,18507,The obsequious someone pulls up. He,\"clumsily climbs down from the carriage, causing someone to stifle a giggle.\",re walking towards the black coffee shop and pats the top of the finished van.,walks off into the room and rises.,spots someone on the ground and tosses a primed grenade at two women.,flashes again.,gold0-reannot,pos,unl,unl,unl,pos,The obsequious someone pulls up.,He\nanetv_qtOP38458F4,7397,He then spins and flips several times. He,\"dismounts, throwing his arms up in the air.\",jumps off the mat and watches.,swings around.,then catches the gate while the crowd watches.,,gold0-orig,pos,pos,pos,pos,n/a,He then spins and flips several times.,He\nanetv_qtOP38458F4,7395,A male gymast prepares to mount a beam. He,\"jumps up, doing an handstand on the bar.\",lands at the top of the diving board.,runs across the boat and walk with a mop.,spins and does a gymnastics routine on the mat.,plays the same routine.,gold0-reannot,pos,unl,unl,pos,pos,A male gymast prepares to mount a beam.,He\nanetv_qtOP38458F4,7396,\"He jumps up, doing an handstand on the bar. He then\",spins and flips several times.,does his routine on tight hardwood.,repeats the bolt several times and jumps into the water.,comes back to the rock as he continues to perform several more traditional maps.,sprints forward and dismounts from the beam.,gold0-reannot,pos,unl,unl,unl,unl,\"He jumps up, doing an handstand on the bar.\",He then\nlsmdc3081_THOR-37975,19668,\"The faceless guardian made of ribbed armor, the Destroyer, steps forward. With someone leading, the Asgardians\",walk beneath two shield agents watching from a rooftop.,takes a flight of last keys.,\"dash awkwardly to someone, who crawls along the scene, toward his companions.\",\"brings a pistol up to his gun, throwing them to the ground.\",\"boy backs away, throwing the ladies down someone sharp long skirts to the valley below.\",gold0-orig,pos,unl,unl,unl,unl,\"The faceless guardian made of ribbed armor, the Destroyer, steps forward.\",\"With someone leading, the Asgardians\"\nlsmdc3081_THOR-37975,19666,\"Someone sets the plates in front of someone and someone. On a rooftop across the street from the lab, shield agents\",use binoculars and listening equipment.,swarm around the vehicle gun - blazing.,follow their easy bow.,enter a house as one opens uneasily.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sets the plates in front of someone and someone.,\"On a rooftop across the street from the lab, shield agents\"\nlsmdc3081_THOR-37975,19667,\"On a rooftop across the street from the lab, shield agents use binoculars and listening equipment. In the vault beneath Asgard, someone\",strides up to the casket and taps his spear on the ground.,early answered radiomen heard.,raises his binoculars to the birds looking for windows.,walks the rest of the water down the dark corridor.,climbs through a tracking screen.,gold0-orig,pos,unl,unl,unl,pos,\"On a rooftop across the street from the lab, shield agents use binoculars and listening equipment.\",\"In the vault beneath Asgard, someone\"\nlsmdc3081_THOR-37975,19665,\"Behind them, someone helps someone prepare plates of eggs and toast. Someone\",sets the plates in front of someone and someone.,shakes someone's hand before putting it on.,painfully taps his hand as he douses.,\"looks on slack - jawed, still amused.\",looks across soberly to the kids.,gold0-orig,pos,unl,unl,unl,pos,\"Behind them, someone helps someone prepare plates of eggs and toast.\",Someone\nlsmdc3081_THOR-37975,19661,He watches as a Bifrost bridge shoots from the distant observatory into the sky. He,turns and stalks off.,swims toward a stairwell.,lands a few feet away.,climbs off the ship's roof.,steers away from another vessel.,gold0-orig,pos,unl,unl,pos,pos,He watches as a Bifrost bridge shoots from the distant observatory into the sky.,He\nlsmdc3081_THOR-37975,19663,\"Someone, someone, someone and someone appear in a desert. Someone and several other agents\",climb into vehicles and speed off.,start racing around an archways.,wait on the pier.,surround a parked car.,run across the woods.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, someone, someone and someone appear in a desert.\",Someone and several other agents\nlsmdc3081_THOR-37975,19662,\"He turns and stalks off. Someone, someone, someone and someone\",appear in a desert.,approach the vehicles cut past one.,stare at her cooker.,make her way across the porch.,run over the urns.,gold0-orig,pos,unl,unl,unl,unl,He turns and stalks off.,\"Someone, someone, someone and someone\"\nlsmdc3081_THOR-37975,19669,Someone's mouth drops open as he turns toward his four friends standing outside the labs glass entrance. Someone,drops a coffee mug.,glares at the thinning young priest.,appears in front of them.,arrives at the restaurant.,,gold0-orig,pos,unl,unl,unl,n/a,Someone's mouth drops open as he turns toward his four friends standing outside the labs glass entrance.,Someone\nlsmdc3081_THOR-37975,19664,\"At a table, someone sits beside someone, who drops a digestive tablet into a glass of water. Behind them, someone\",helps someone prepare plates of eggs and toast.,enjoys a cone - shaped coconut rest on his lips.,\"writes on a slip, then dances in place through the french windows.\",\"puts the hat on the table, puts on the royal hand and heads vacantly to the utility booth.\",\"faces his cousin, who chat for a time and heads through the adjacent door.\",gold0-orig,pos,unl,unl,unl,unl,\"At a table, someone sits beside someone, who drops a digestive tablet into a glass of water.\",\"Behind them, someone\"\nlsmdc3081_THOR-37975,19660,\"Elsewhere in the city, someone stands on a balcony. He\",watches as a bifrost bridge shoots from the distant observatory into the sky.,gets to his feet.,towers over a manhattan battlements.,stops to speak to the steward.,\"walks to the hill entrance, hopping off his knees to rub his eyes, and checks the level below.\",gold1-reannot,unl,unl,unl,unl,unl,\"Elsewhere in the city, someone stands on a balcony.\",He\nanetv_XvFv0n2mJUk,13347,Two men stand at the end of a mat one kneeling over with his head between the other mans knees. The standing man,flips the kneeling man into the air and onto his shoulders.,instructs a man to move his leg and help them squat while holding his hips.,pushes his hands up and down the stage then stops motionless.,takes his suit off and sits back down.,,gold0-orig,pos,unl,unl,pos,n/a,Two men stand at the end of a mat one kneeling over with his head between the other mans knees.,The standing man\nanetv_XvFv0n2mJUk,13348,The standing man flips the kneeling man into the air and onto his shoulders. The standing man,turns and throws the man on the mat behind them and backs up.,finishes up his kick and he lifts the weight as the man nods at the head.,spins in circles under an parallel bar and put it on a black screen.,raises his arms back up to try again the three times.,,gold0-orig,pos,unl,unl,pos,n/a,The standing man flips the kneeling man into the air and onto his shoulders.,The standing man\nanetv_XvFv0n2mJUk,5029,He lifts up another person onto his shoulders. He then,slams the person down onto a mat.,lifts the parts back up and takes the weights.,jumps on the swing between the legs and does make flips.,drops the barbell down on his stomach.,,gold0-orig,pos,unl,unl,unl,n/a,He lifts up another person onto his shoulders.,He then\nanetv_XvFv0n2mJUk,5028,A man is bending down on a mat. He,lifts up another person onto his shoulders.,is instructing on elliptical equipment.,is holding a tennis racket.,spins and dives around the gym.,begins playing on the table.,gold1-reannot,pos,unl,unl,unl,unl,A man is bending down on a mat.,He\nanetv_pem8BpCspUM,2367,A girl is seen running into frame. She,slides into a plate where two other people are running.,\"moves several fans forward, including a couple of the bar.\",attempts to jump over a jump before jumping out of the bottom.,shoot at each other as well as people watching.,is shown on various swings on the bars.,gold0-orig,pos,unl,unl,unl,unl,A girl is seen running into frame.,She\nanetv_pem8BpCspUM,9542,A woman catches a ball that was being thrown. Another woman,slides into a base and falls on the ground.,\"takes up, the runs to the piano and makes a shot.\",is shown following a woman in a black shirt and holding the ball dispenser while the woman holds basketball in her arms.,is shown aiming at various balls as well.,stands behind her.,gold1-orig,pos,unl,unl,unl,pos,A woman catches a ball that was being thrown.,Another woman\nanetv_pem8BpCspUM,9543,Another woman slides into a base and falls on the ground. A person behind her,holds his arms up at his sides.,gets up and walks down a street.,is almost guiding her on with the pen attached to her leg.,\"climbs over a high hill, jumps and jumps on.\",,gold0-orig,pos,unl,unl,unl,n/a,Another woman slides into a base and falls on the ground.,A person behind her\nanetv_pem8BpCspUM,2368,She slides into a plate where two other people are running. A person in the back,spreads their arms out.,jumps a set of stairs.,pulls out the watch.,aims a pistol at them.,is addressing the lady from the drink.,gold1-reannot,pos,unl,unl,unl,unl,She slides into a plate where two other people are running.,A person in the back\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3062,\"He glances at someone who stares ahead. Preoccupied, she\",looks out at the window to her side.,dashes toward the crowd.,points to the bonnet as she looks around.,picks up a shovel.,makes her way up to someone's desk.,gold1-orig,pos,unl,unl,unl,pos,He glances at someone who stares ahead.,\"Preoccupied, she\"\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3058,Someone grabs a handful of straws and has a big slurp of the chocolate milkshake. She,wipes his lip and licks her finger.,jerks them to stand uncomfortably.,falls to the ground.,drops onto the postcard clasps it in someone's face.,\"runs, raising his arm around someone.\",gold0-orig,pos,unl,unl,unl,unl,Someone grabs a handful of straws and has a big slurp of the chocolate milkshake.,She\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3057,\"In a diner, they both suck through straws. Someone\",gets an extra straw.,draws the boy in a swinging roll.,steps out from out of the shadows.,races up one of the lanes.,flinches demonstrating a tracker.,gold0-orig,pos,unl,unl,unl,unl,\"In a diner, they both suck through straws.\",Someone\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3061,\"Later, someone drives along smiling. He\",glances at someone who stares ahead.,fans as they go down a tunnel headed toward the sultry compound of an unlit estate house.,kicks himself around the dark keys in front of him.,finds a map of gorgoroth racing on its back.,taps his right shoulder.,gold0-orig,pos,unl,unl,unl,pos,\"Later, someone drives along smiling.\",He\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3060,They gaze at each other. Avoiding his gaze she,leans forward and has a drink.,nudges her head closer to him.,places tender cream on his forehead.,considers him quickly.,,gold1-reannot,pos,pos,pos,pos,n/a,They gaze at each other.,Avoiding his gaze she\nlsmdc3052_NO_STRINGS_ATTACHED-25373,3059,She wipes his lip and licks her finger. They,gaze at each other.,\"scissor invisible kiss and now her father's face lights dimly, putting her face to the side.\",see her dip lower in the sink.,\"a grin, someone draws up the food sauce, summoning a hysterical gesture, then undoes his bite.\",,gold0-reannot,pos,unl,unl,unl,n/a,She wipes his lip and licks her finger.,They\nanetv_sgPkVKPp1dU,12865,\"A man in black shirt lifted the barbel and started to carry it up and down for few times, while behind him, two men are removing the metal plates on another barbel. The man in black shirt\",\"added more weight on the barbel by adding yellow plates on both side, then continue weight lifting.\",on the legs slides down the slide.,threw the shot put then did a flat shake.,lifts the weight drop to his chest and carries it before the boy had walked backwards by hard breasts - tripping his head up from,,gold0-orig,pos,unl,unl,pos,n/a,\"A man in black shirt lifted the barbel and started to carry it up and down for few times, while behind him, two men are removing the metal plates on another barbel.\",The man in black shirt\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,105,He looks to his left. He,\"looks to the right, then back at the tree.\",illuminated from the ground in the window's eye.,\"peers at herself in the mirror and finds her elephant, follows someone, leaning over his chair.\",\"looks at them lightly, then moves off.\",,gold0-orig,pos,unl,unl,pos,n/a,He looks to his left.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,108,\"He steps down from the porch. Meanwhile, someone\",lies in bed staring at a framed photo of himself with his mother.,\"gazes up the stairway gently at the felled ankle, which has blown into a long ravine.\",\"passes a short model kids door leading outside someone's home, oblivious: a neighborhood bearded, with very short hair.\",controls the train traffic.,,gold0-orig,pos,unl,unl,unl,n/a,He steps down from the porch.,\"Meanwhile, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,96,He lowers his thoughtful gaze and purses his lips. Someone,waits for his reply.,tosses us a paper wad.,takes a deep breath then twitches a tender smile.,sets down his glass.,turns on the radio.,gold0-orig,pos,pos,pos,pos,pos,He lowers his thoughtful gaze and purses his lips.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,106,\"He looks to the right, then back at the tree. Soft moonlight\",shines on his curious face.,casts his reflection enviously from a blank bit.,shines behind him as he floats towards him.,shines through the neighbor's eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"He looks to the right, then back at the tree.\",Soft moonlight\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,109,\"Meanwhile, someone lies in bed staring at a framed photo of himself with his mother. He\",\"presses the picture to his chest, and wraps his arms around it, with tears in his eyes.\",takes a few steps forward.,smirks as she rests her head back over his chin; someone smiles.,runs into the warehouse and switches on the outside light.,glances back and laughs.,gold0-orig,pos,unl,unl,unl,unl,\"Meanwhile, someone lies in bed staring at a framed photo of himself with his mother.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,103,He goes out onto the porch. He,watches the wispy branches of a tree sway in the gentle breeze.,\"is looking down slowly, throwing the machine at the.\",goes to the window and looks around the fence.,appears at a window.,comes in and shuts the door.,gold0-orig,pos,unl,pos,pos,pos,He goes out onto the porch.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,97,Someone waits for his reply. He,lifts his eyes and earnestly meets her gaze.,tosses out dirt on someone's neck.,\"hugs him, the devil jowly then walks away.\",cuts the barber's arm up.,looks over the wheels of his diary and reads.,gold0-orig,pos,unl,unl,unl,unl,Someone waits for his reply.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,100,\"Someone stares after him with a pinched brow, then allows a faint smile as she jogs forward to catch up with him on a hill. Wearing reading glasses, he\",\"sits alone, at the end of the dining room table, in front of a laptop, and surrounded by bills.\",\"stands behind the chair, opens a bottle.\",watches the surfer as someone approaches him.,takes a seemingly endless flight of stairs.,\"checks her cell phone, then hurries out to him.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone stares after him with a pinched brow, then allows a faint smile as she jogs forward to catch up with him on a hill.\",\"Wearing reading glasses, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,101,He touches his brow as he continues to review the expenses. His attention,drifts to a window.,returns to the red one.,is now taped up on the cops.,shifts to a score point shot between someone and passing a worker surging around the water full in rapid pucks.,is drawn to his.,gold0-orig,pos,unl,unl,unl,pos,He touches his brow as he continues to review the expenses.,His attention\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,99,\"Someone smiles, then continues up the trail. He\",looks back with a grin.,points to the step before him.,does n't smile at all.,hurries someone down the sidewalk.,looks back toward the wheelhouse.,gold1-orig,pos,unl,unl,unl,pos,\"Someone smiles, then continues up the trail.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,102,His attention drifts to a window. He,goes out onto the porch.,\"looks up at someone, who catches sand for a moment.\",lowers her gaze and shifts her gaze to the saucer - like cloud.,awning of a building reads under a view of a stylized vanger kung stadium.,watches them at the ceiling.,gold0-orig,pos,unl,unl,unl,unl,His attention drifts to a window.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,98,The zookeeper's jaw goes slack. Someone,\"smiles, then continues up the trail.\",stares at someone in then left alone.,makes her run to the recovery gate.,takes a seat upon the desk.,smiles and clenches his jaw.,gold1-orig,pos,unl,unl,pos,pos,The zookeeper's jaw goes slack.,Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,104,He watches the wispy branches of a tree sway in the gentle breeze. He,looks to his left.,leans down and touches the toy handle.,tosses the vase against his house as he turns out to watch.,gobbles objects at his son.,lies beside his path on his work.,gold0-orig,pos,unl,unl,unl,unl,He watches the wispy branches of a tree sway in the gentle breeze.,He\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,110,\"He presses the picture to his chest, and wraps his arms around it, with tears in his eyes. Now, someone\",enters the dim restaurant.,lines up to her apartment.,'s office is decorated.,\"hangs back, then pulls on his boots and leads them.\",arrives outside the club.,gold1-orig,pos,unl,unl,unl,pos,\"He presses the picture to his chest, and wraps his arms around it, with tears in his eyes.\",\"Now, someone\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41108,107,Soft moonlight shines on his curious face. He,steps down from the porch.,watches as he displays the leader's collar.,\"glances at her, and leans back into the submarine.\",casts a hand down his cheek.,,gold1-reannot,pos,unl,unl,pos,n/a,Soft moonlight shines on his curious face.,He\nanetv_kuPWb9E4aUQ,10304,\"A diver is swimming under the blue water. Two divers wearing their oxygen are under the water, they\",are holding onto the strong rope.,are performs a huge splash on their hands before diving over the surface.,are displaying more fish and water.,do multiple flips and slides as forward to swim.,,gold0-orig,pos,unl,unl,pos,n/a,A diver is swimming under the blue water.,\"Two divers wearing their oxygen are under the water, they\"\nanetv_kuPWb9E4aUQ,10305,\"Two divers wearing their oxygen are under the water, they are holding onto the strong rope. The divers dive deeper to into the water, they\",swim towards a coral bed under the water.,come to the surface to grab one another.,\"walk through the water, their raft salsa with the other two.\",add their tips to a view of the whipping water.,continue to swim and go over the water.,gold0-orig,pos,unl,unl,unl,unl,\"Two divers wearing their oxygen are under the water, they are holding onto the strong rope.\",\"The divers dive deeper to into the water, they\"\nanetv_kuPWb9E4aUQ,10306,\"The divers dive deeper to into the water, they swim towards a coral bed under the water. The people\",are riding the white boat towards the ocean.,dive to grab the rag and swim so it tastes like one person and a water falls in the ocean.,\"are lowered high on to the boat, then towards a rising screen.\",dance alone on the waters of the river.,shark diving underwater are shown with lighter water on the other side of the pool.,gold0-reannot,pos,unl,unl,unl,unl,\"The divers dive deeper to into the water, they swim towards a coral bed under the water.\",The people\nlsmdc3038_ITS_COMPLICATED-17448,3045,As someone lingers in the doorway she takes her place at the table. Someone,stares at his family glumly then gives a regretful look.,gazes to each door then turns around to walk to class.,looks at her through a window.,walks upstairs to where someone is sitting in a chair.,,gold1-orig,unl,unl,unl,unl,n/a,As someone lingers in the doorway she takes her place at the table.,Someone\nlsmdc3038_ITS_COMPLICATED-17448,3044,Someone eyes someone who pleadingly puts his hands up. As someone lingers in the doorway she,takes her place at the table.,starts right onto the walkway sofa.,finds a red stairway lit with a single woman atop a erected tunnel.,notices three looming over him.,sees a waiter step forward.,gold0-orig,pos,unl,unl,pos,pos,Someone eyes someone who pleadingly puts his hands up.,As someone lingers in the doorway she\nanetv_aA6Bchzww4Y,18194,\"The man continues to slam at the ice on the car with the mallet as the ice chips off in chunks. The man tries to open his trunk again, this time the opening is easier and the man\",climbs into the trunk of the car to the front of the car to open the drivers door from the inside drivers seat.,\"takes it out, cleaning the end.\",tries to look at the man in the foreground flattens the card back in the line.,refills the glass and creates a liquid.,,gold0-orig,pos,unl,unl,unl,n/a,The man continues to slam at the ice on the car with the mallet as the ice chips off in chunks.,\"The man tries to open his trunk again, this time the opening is easier and the man\"\nanetv_aA6Bchzww4Y,18192,A man uses a mallet to chip ice off of a car while it is snowing outside and a man videos him from behind. A man in a black winter coat and gloves,uses a mallet to chip ice off of an ice covered car in the snow.,is underneath a line of stilts.,begins bouncing pieces together.,is talking about him as he is from the camera he's standing in front of a number of red cocks.,demonstrates how to move a squash.,gold0-orig,pos,unl,unl,unl,unl,A man uses a mallet to chip ice off of a car while it is snowing outside and a man videos him from behind.,A man in a black winter coat and gloves\nanetv_aA6Bchzww4Y,18193,The man then takes his car keys and tries to open the trunk which is frozen and requires tugging to open. The man,continues to slam at the ice on the car with the mallet as the ice chips off in chunks.,\"climbs out of the lift and climbs down the shaft, pulling his old trunk from the trunk, crammed inside.\",removes the bolts from the counter and grabs it again.,\"pedal a little crane down after the bus, which he again yanks his foot off his lug nuts and punches up the keys.\",,gold0-orig,pos,unl,unl,unl,n/a,The man then takes his car keys and tries to open the trunk which is frozen and requires tugging to open.,The man\nanetv_rMdojBVP-aM,18341,A camera pans around a woman standing in front of a dog balancing on a fence. The dog,continues balancing on the fence while the camera pans around.,is then seen pushing a dog around her while the camera captures her movements and zooms in on the man.,walks in and out of frame followed by more shots of vacuum cleaner and a shot put.,rides around on frisbees as a man on inflatable catches them.,continues hitting the man as the person waits for him.,gold0-orig,pos,unl,unl,unl,unl,A camera pans around a woman standing in front of a dog balancing on a fence.,The dog\nanetv_rMdojBVP-aM,18342,The dog continues balancing on the fence while the camera pans around. The dog then,jumps off the fence in the end.,does tricks with a frisbees while continuing to play with the dog.,runs around getting off the style as far as he can.,runs back with the dog as the dog follows.,runs around while the frisbees thrash around the sides.,gold0-orig,pos,pos,pos,pos,pos,The dog continues balancing on the fence while the camera pans around.,The dog then\nanetv_XxyTLG8B-Ns,12504,A man is talking to the camera as he gets ready to ride the bumper cars. The man,rides around in the bumper car bumping in to the other people while the camera watches.,continues skateboarding before he goes back onto the bike to speak to the camera.,is seen demonstrating a walk in time and the ring is shown on a hook.,is now shown playing back on a bike from his original skateboard playing normal.,\"drives down the street and drives into the cars, trying to win through the dead ends.\",gold0-orig,pos,unl,unl,unl,pos,A man is talking to the camera as he gets ready to ride the bumper cars.,The man\nanetv_XxyTLG8B-Ns,12505,The man rides around in the bumper car bumping in to the other people while the camera watches. The camera,zooms in on the people for a closer look.,ornaments around to both cars and the two men in the limo lift over.,follows close to the camera followed by the boys in the man ring behind the other smiling.,zooms in on several shotguns as he drives down the road.,slows to a stop and shows the road as he run and push the cars away.,gold0-orig,pos,unl,unl,unl,unl,The man rides around in the bumper car bumping in to the other people while the camera watches.,The camera\nanetv_XxyTLG8B-Ns,12506,The camera zooms in on the people for a closer look. The ride ends and the people,get out of the bumper cars.,continue paddling through the rapids.,continue riding on the raft.,pause as the boats ride along.,perform more flips.,gold1-orig,pos,unl,unl,unl,unl,The camera zooms in on the people for a closer look.,The ride ends and the people\nlsmdc1058_The_Damned_united-98435,7664,Derby climb the table to the top. Crowds,welcome the derby team bus back with the cup.,washed as the singers revolve.,mingle in a cooker.,tilt down to the air.,\"pass by the entrance, rises into the mourners.\",gold1-reannot,pos,unl,unl,unl,pos,Derby climb the table to the top.,Crowds\nanetv_tO1VJnsd8sg,13116,A person in a yellow shirt stands outside watching. A woman,opens the door and walks out.,is washing in a restaurant.,is talking in a bathroom.,is sitting in a chair waiting to go to a sink.,is wearing a blue shirt.,gold1-orig,pos,unl,unl,unl,pos,A person in a yellow shirt stands outside watching.,A woman\nanetv_QtiqvB4uw2Y,14775,\"A view of a top of a roof with pine straws shown strewn all over it appears and a banner at the bottom say's if you got pine straw on your roof, call us 678 - 887 - 9479. A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he\",'s walking along the roof blowing off all of the pine straws.,sweeps his lighter away in the yard and progresses the hammering wood into the other corner.,\"would n't jump much or bit because he finishes the last thing, while another worker leans.\",starts to get the lift from that man brings it down the middle.,has more so shit and the few more threads underneath the box and waits on the snow.,gold0-orig,pos,unl,unl,unl,unl,\"A view of a top of a roof with pine straws shown strewn all over it appears and a banner at the bottom say's if you got pine straw on your roof, call us 678 - 887 - 9479.\",\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he\"\nanetv_QtiqvB4uw2Y,14776,\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he's walking along the roof blowing off all of the pine straws. The last view is of the cleaned off roof and the website\",is shown at the bottom of the screen.,\"are making a few empty cloth words, the products also install and into a part of the car.\",appears with a gold talking and to a half shaved man.,\", and the man is standing on the road, yellow with grey and blue measuring the roof.\",is the very still rings.,gold0-orig,pos,unl,unl,unl,unl,\"A man is now on the top of the roof and he has a blower in his right hand, metal stick in his left hand for balance, and he's walking along the roof blowing off all of the pine straws.\",The last view is of the cleaned off roof and the website\nanetv_a39_RoOBkX0,6125,A group is gathered closely together at sinks in a commercial kitchen. The camera,\"goes around in a circle, recording them as they wash.\",\"is as another woman's guiding her elsewhere, looking around.\",glides on the man and the man talks to the camera.,pans to the bottom and the man is hoe the cookies methods.,,gold0-orig,pos,unl,unl,unl,n/a,A group is gathered closely together at sinks in a commercial kitchen.,The camera\nanetv_a39_RoOBkX0,6126,\"The camera goes around in a circle, recording them as they wash. they\",are all wearing gloves and aprons as they wash the dishes.,\"make sharp turns with their hands, trying to take the prowler off.\",move together for a brief period.,use the vacuum to wave and swim to the water.,separate as high as slow waters.,gold0-orig,pos,unl,unl,unl,unl,\"The camera goes around in a circle, recording them as they wash.\",they\nanetv_a39_RoOBkX0,17828,Several of the women are wearing pink rubber gloves. A woman on the end,is wearing a pink apron.,is making some faces in a mirror.,is adjusting the horse's handle.,begins to make them clean.,sits down on a table.,gold0-reannot,pos,unl,unl,unl,pos,Several of the women are wearing pink rubber gloves.,A woman on the end\nanetv_a39_RoOBkX0,17827,People are standing around a sink washing dishes. Several of the women,are wearing pink rubber gloves.,are washed with soap.,are washing the dishes down a drain.,are washing dishes in the room.,wash their teeth and begin washing the cards.,gold1-reannot,pos,unl,unl,unl,unl,People are standing around a sink washing dishes.,Several of the women\nanetv_krFle3KU4Ts,9303,He is playing an accordian. The accordian,has ivory keys he plays with his fingers.,is moving back to someone's hair.,is approaching with some males.,flies out of an stage.,awakes under a chair.,gold0-orig,pos,unl,unl,unl,unl,He is playing an accordian.,The accordian\nanetv_krFle3KU4Ts,15316,A young man is seen playing an accordion while the camera captures him from the sides. The man,continues to play while moving his hands up and down and looking down to see.,continues to play the instrument and leaves the screen.,continues raps on the instrument while looking to the camera.,then begins playing in the water as he begins dancing up and down.,stops playing and the man plays around and talks to the camera.,gold1-orig,pos,unl,unl,unl,pos,A young man is seen playing an accordion while the camera captures him from the sides.,The man\nanetv_krFle3KU4Ts,9302,A man is standing inside a house. He,is playing an accordian.,is holding a piece of wood with a shovel.,is throwing darts on a dart board.,is playing a game of croquette.,starts chopping wood on a stump.,gold1-reannot,pos,unl,unl,pos,pos,A man is standing inside a house.,He\nanetv_QU5R75IyQow,8532,A man is talking to a camera in his bathroom. He,\"is then shown brushing, spraying, and styling a woman's hair before braiding it.\",puts lipstick on top of the faucet.,picks up the canister and starts rubbing it on a red car.,rubs the man's face on a black towel.,puts up a bow and talks to the camera.,gold0-orig,pos,unl,unl,unl,pos,A man is talking to a camera in his bathroom.,He\nanetv_QU5R75IyQow,8533,\"He is then shown brushing, spraying, and styling a woman's hair before braiding it. she\",poses for the camera when he is finished.,finishes then twirls one shoe over the edge.,begins to shave his hair as she applies she shows different colors of the hair.,\"continues to blow wax around his hair with brushes, then brushes it's hair to the sides.\",is blow dry her hair and ends by waving his arms.,gold0-orig,pos,unl,unl,unl,pos,\"He is then shown brushing, spraying, and styling a woman's hair before braiding it.\",she\nanetv_70bS0DkAeDo,17003,\"A man bends on front a wight. Then, the man\",raises the weight until the shoulders.,holds a ball into the dirt track.,continue playing the guitar.,reaches for the man.,,gold0-orig,pos,unl,unl,unl,n/a,A man bends on front a wight.,\"Then, the man\"\nanetv_70bS0DkAeDo,9316,\"A man is lifting weights in a weight room, pulling a large barbell up to his chest. He\",\"stands shaking before lifting it above his head, trying to hold it in place.\",lifts his legs in the air and flips him over the edge several times.,\"lifts his leg up to the side, rubbing it over his head.\",\"lifts it to his chest and picks it up, then lowers it to his chest.\",,gold0-orig,pos,unl,unl,pos,n/a,\"A man is lifting weights in a weight room, pulling a large barbell up to his chest.\",He\nanetv_70bS0DkAeDo,9317,\"He stands shaking before lifting it above his head, trying to hold it in place. He\",drops the barbell hard onto the ground.,pours his feet up the bar and spin it.,\"throws the lasso over and drops it back, trying to throw the other side of the field.\",spins around himself and twists it and adjusts it for height and kicks it into the air.,stretches a pocket off of a dome of the tube and spreads it down.,gold0-orig,pos,unl,unl,unl,unl,\"He stands shaking before lifting it above his head, trying to hold it in place.\",He\nanetv_70bS0DkAeDo,17004,\"Then, the man raises the weight until the shoulders. After, the man holds the weight above the head, and then he\",falls the weight to the floor.,takes back back the weight.,falls off the rope.,begins running down the weight as the man runs out.,lifts the weight over his face.,gold1-reannot,pos,unl,unl,unl,pos,\"Then, the man raises the weight until the shoulders.\",\"After, the man holds the weight above the head, and then he\"\nlsmdc3009_BATTLE_LOS_ANGELES-246,2427,Jets soar through the sky. Someone and someone,take position on the roof.,ride into a huge carriage filled with trees.,\"lean on the railing, pursued by an aerial.\",descend the inner shaft through the water which opens to reveal a large cargo jutting out from behind them.,sit next to the piano gazing at a security light.,gold0-reannot,pos,unl,unl,unl,pos,Jets soar through the sky.,Someone and someone\nanetv_VkRjs03YEjE,14236,A bunch of players and spectators run the court toward the melee. Men,are running along the edge of the court.,\"gather under line, kicking and shooting balls.\",is throwing the ball and hitting the ball in the goal.,is practicing cricket in a competition.,play soccer in a field with grass.,gold1-orig,pos,unl,unl,unl,unl,A bunch of players and spectators run the court toward the melee.,Men\nanetv_VkRjs03YEjE,14230,The man in the corner kicks the ball straight into the net. The team,runs around the court celebrating.,dances around the table filled with freshly chucks and balls.,wrestles the puck on the blue as others try to hit them.,continue to run down the track while people cheer.,\"plays the basketball game, trying to hit the ball once more.\",gold0-orig,pos,unl,unl,unl,unl,The man in the corner kicks the ball straight into the net.,The team\nanetv_VkRjs03YEjE,14235,A few players are standing in the corner looking like they are arguing. A bunch of players and spectators,run the court toward the melee.,are chasing to stand on large mats.,are standing to score from the ring.,is marching in the background.,play with the left team.,gold0-orig,pos,unl,unl,unl,unl,A few players are standing in the corner looking like they are arguing.,A bunch of players and spectators\nanetv_VkRjs03YEjE,14232,A man in the stands climbs over the railing and runs onto the court celebrating. The group,is in a bunch celebrating on the court.,walks into the center and thin stand on the center and stare at the paper.,finishes their routine and walks to the end of the jump rope.,huddles on the side and ride faster.,ends flips and lands next to them.,gold0-orig,pos,unl,pos,pos,pos,A man in the stands climbs over the railing and runs onto the court celebrating.,The group\nanetv_VkRjs03YEjE,14234,One of the players kicks the ball into the stands and walks off with his head down. A few players,are standing in the corner looking like they are arguing.,sit in the grass near the line.,are shown over the winners of the court.,have collected their seats.,stand by and play a game of soccer.,gold1-orig,pos,unl,unl,unl,unl,One of the players kicks the ball into the stands and walks off with his head down.,A few players\nanetv_VkRjs03YEjE,14238,The small group is still arguing and holding back fights. A small group,is having an animated discussion.,enters a crowd cheering they jump to.,is expertly swinging using their arms and acting like one of the instructor.,walks along behind the camera while a woman stands behind them.,,gold0-orig,pos,unl,unl,pos,n/a,The small group is still arguing and holding back fights.,A small group\nanetv_VkRjs03YEjE,14231,The team runs around the court celebrating. A man in the stands,climbs over the railing and runs onto the court celebrating.,walks a basket closer to his legs.,wins and holds the ball.,raises a ball and throws them into the net.,is devastated and throws the ball.,gold0-orig,pos,unl,unl,unl,pos,The team runs around the court celebrating.,A man in the stands\nanetv_VkRjs03YEjE,14237,Men are running along the edge of the court. The small group,is still arguing and holding back fights.,\"starts standing round, jumping over the ball.\",is shown dancing in full swing.,rides spinning single on the sign.,starts loading the ball into a paddle.,gold0-reannot,pos,unl,unl,unl,unl,Men are running along the edge of the court.,The small group\nanetv_VkRjs03YEjE,14239,A small group is having an animated discussion. The two men,walk back on to the court as the group starts talking again around the court floor and edge.,laugh with each other to remove the shirts from their jackets.,start pushing the puck around.,are playing the concert together.,begin to dance faster.,gold0-reannot,pos,unl,pos,pos,pos,A small group is having an animated discussion.,The two men\nanetv_VkRjs03YEjE,14233,The group is in a bunch celebrating on the court. One of the players,kicks the ball into the stands and walks off with his head down.,falls out again and the man swings and throws the ball.,takes a hit to meet it with the referee.,in red walks to the girls and starts hitting something by someone hands.,walks from the brooms and scores and watch the men smiling.,gold1-reannot,pos,unl,unl,unl,unl,The group is in a bunch celebrating on the court.,One of the players\nanetv_cudeag10U7Q,11371,\"A woman is riding a bike down the street, then others are shown as well. The people\",speak to the camera in between takes of riding their bikes on city roads.,are riding camels through the jungle.,take turns jumping and ends with the woman picking up the skateboard and walking away.,are seen working with knitted equipment while the woman talks to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman is riding a bike down the street, then others are shown as well.\",The people\nanetv_y5j9TqTy9Xw,15872,A woman is walking along a track. She,takes off at a fast run.,starts chasing a calf and a dog follows around she.,\"runs down a slope, holding a javelin, and left before tumbling down the road again.\",is laughing while standing in the middle of the beach.,catches a baton and playing it.,gold1-orig,pos,unl,unl,unl,unl,A woman is walking along a track.,She\nanetv_y5j9TqTy9Xw,15873,She takes off at a fast run. She,jumps over a bar and onto a mat.,launches the ball and runs as fast as she can.,smashes the dry sand off in the sand.,sees someone and someone back on the floor.,\"settles back on her seat and furrows her brow, listening.\",gold0-orig,pos,unl,unl,unl,pos,She takes off at a fast run.,She\nlsmdc1055_Marley_and_me-96612,907,\"Someone, the boys and Marley head back to the house. Marley's\",having difficulty getting up the steps.,\"passed around the tent by someone, who's sleeping on the couch.\",sitting at the edge of the canvas heap.,multicolored color appears in the background.,\"outstretched on the floor, grabbing someone's hand, and points at the top of him.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone, the boys and Marley head back to the house.\",Marley's\nanetv_WWip1_lFvGg,14345,They put a contact lens in the eye. They then,take the contact lens out of their eye.,rub their eyes and dip the contact lens to their eye.,adjust the lens on the right lens.,dip the lens in their palm.,take a contact lens out of the right eye.,gold0-orig,pos,unl,pos,pos,pos,They put a contact lens in the eye.,They then\nanetv_WWip1_lFvGg,14344,A person holds their eye open. They,put a contact lens in the eye.,and put it on a line!,are adjusted swimming from behind.,now someone talks on a phone.,,gold0-orig,pos,unl,unl,unl,n/a,A person holds their eye open.,They\nanetv_yOcWUk9cOws,2665,Several girls are outside in a large green field playing a game. The girl in front of the camera,is dressed in a yellow shirt and black shorts hit the ball with the stick and begins jumping in the air.,continues to throw to the second woman holding sticks on the ground.,shows several balls of the balls she continues trying.,pans away to observe what they are talking about.,takes several pieces as she hits the stain and then gets them both upside down.,gold1-orig,pos,pos,pos,pos,pos,Several girls are outside in a large green field playing a game.,The girl in front of the camera\nanetv_lUds16WLsHI,14354,Women are waxing the man's legs. We,see a black screen with writing.,see men working on a kneeling ground.,\"awkwardly pull on small poles, in position, becoming aware of the tension.\",\", clothed, lights, and dry glasses are shown.\",,gold0-orig,pos,unl,unl,unl,n/a,Women are waxing the man's legs.,We\nanetv_lUds16WLsHI,14351,We are in a school in a crowded student union seeing all the people and objects. The man,gets in an elevator.,is shown running down the dirt track.,holds his gun in his hand and lifts it in the air and then shoots it in the mouth.,murmurs bringing bursts and juggles balls and back again.,,gold0-orig,pos,unl,unl,unl,n/a,We are in a school in a crowded student union seeing all the people and objects.,The man\nanetv_lUds16WLsHI,14349,We see the man's hairy legs. The man,points at the camera.,stands on the horse's legs.,plants flat things on his back.,places his left hand on the shoulder.,lifts his sneakers high behind his shoes.,gold0-orig,pos,unl,unl,pos,pos,We see the man's hairy legs.,The man\nanetv_lUds16WLsHI,14348,We see a man in a white room talking. We,see the man's hairy legs.,lead the man a black.,see scenes of a photo being handed.,pan back to water balance and give instructions.,see him from the distance and a hut watching them.,gold1-orig,pos,unl,unl,unl,unl,We see a man in a white room talking.,We\nanetv_lUds16WLsHI,14350,The man points at the camera. We,are in a school in a crowded student union seeing all the people and objects.,see baked on a table.,see a harmonica and walk on a wooden canoe.,see the landscape of the players.,see the man in red speak.,gold1-orig,pos,unl,unl,pos,pos,The man points at the camera.,We\nanetv_lUds16WLsHI,12777,The hallways of a school is shown. The man,gets into an elevator.,crouches behind a set of weights.,flies off the balcony and lands in a chair.,is filled with weights.,races down the wooded waits in the fighting and then it goes off.,gold0-reannot,pos,unl,unl,unl,unl,The hallways of a school is shown.,The man\nanetv_lUds16WLsHI,14353,He puts his leg on a table and has it waxed. Women,are waxing the man's legs.,bow at the center of the elliptical whether ten or fifteen feet off.,cuts diapers from his coat.,are standing in the car.,,gold0-reannot,pos,unl,unl,unl,n/a,He puts his leg on a table and has it waxed.,Women\nanetv_lUds16WLsHI,14356,The man grimaces in pain. We,see the man in his room in front of a computer talking.,see another person dig in each cleans.,is struggling with a determination in it.,rushes someone to the hospital girl.,see the crowd talking.,gold1-reannot,pos,unl,unl,unl,pos,The man grimaces in pain.,We\nlsmdc3091_ZOMBIELAND-44507,13915,He hands over his rifle. Someone,emerges from behind a hay bale.,makes a call on his mobile.,returns her eyes angrily.,picks up a thermos and takes a sip of bottled water.,,gold1-orig,pos,unl,unl,unl,n/a,He hands over his rifle.,Someone\nlsmdc3091_ZOMBIELAND-44507,13906,\"He scans the surrounding fields and the cylindrical hay bales dotting them. Aiming the gun inside the vehicle, someone\",peeks through the escalade's open driver's window.,knocks his jacket over a bank's hanger.,closes his eyes on someone.,stumbles into the next room.,receives a bullet at the metal railings.,gold0-orig,pos,unl,unl,unl,unl,He scans the surrounding fields and the cylindrical hay bales dotting them.,\"Aiming the gun inside the vehicle, someone\"\nlsmdc3091_ZOMBIELAND-44507,13913,Little someone aims her shotgun at him. She,shoots out the moon roof.,takes the gun from a holster and fumbles.,grabs someone's hand then rams him back on his arm.,stands by the steward in her hand.,\"steps back, her hand resting lightly on his chin.\",gold0-orig,pos,unl,unl,unl,unl,Little someone aims her shotgun at him.,She\nlsmdc3091_ZOMBIELAND-44507,13909,\"A flannel shirt hangs from the hood, flapping in the breeze. He\",unhooks it then tosses it on the steaming engine.,tumbles up door and out back onto the curb.,streaks through its hair as he stares out the window.,waves goodbye as the sun continues above.,takes in a gold green coat.,gold0-orig,pos,unl,pos,pos,pos,\"A flannel shirt hangs from the hood, flapping in the breeze.\",He\nlsmdc3091_ZOMBIELAND-44507,13914,She shoots out the moon roof. He,hands over his rifle.,presses the slide to it.,narrowly winds her up again.,swings it down beneath the rim.,tries and dodges to reach them.,gold0-orig,unl,unl,unl,unl,pos,She shoots out the moon roof.,He\nlsmdc3091_ZOMBIELAND-44507,13907,\"Aiming the gun inside the vehicle, someone peeks through the Escalade's open driver's window. He\",finds it empty and bends over to survey the undercarriage.,picks up the phone and stomps off tiny panty trousers.,forces his way over to the van.,removes his jacket and gets out of his car.,shuts the front door.,gold0-orig,pos,unl,unl,unl,pos,\"Aiming the gun inside the vehicle, someone peeks through the Escalade's open driver's window.\",He\nlsmdc3091_ZOMBIELAND-44507,13905,As someone nears the Escalade. He,scans the surrounding fields and the cylindrical hay bales dotting them.,pulls someone a few bit away.,lifts the head man's hand.,prices down his computer.,puts on his helmet.,gold1-orig,pos,unl,unl,unl,pos,As someone nears the Escalade.,He\nlsmdc3091_ZOMBIELAND-44507,13912,The Hummer pulls forward and someone strides back to meet it. He,opens the passenger door and gets in.,takes a big bite from the bookshelf.,holds the gas mask to his ear.,glances at someone then frowns and slips down his hardcover's backpack.,,gold1-orig,pos,unl,unl,unl,n/a,The Hummer pulls forward and someone strides back to meet it.,He\nlsmdc3091_ZOMBIELAND-44507,13920,\"As he heads out of the station, she peeks under her red convertible. Her tight skirts\",shows the curves of her toned rear.,raised by a ballerina walks to the door.,are out in front of them.,\"agape, someone stares on thoughtfully, then shifts her gaze.\",\"form a large v, which carries pretty remain.\",gold0-orig,pos,unl,unl,unl,unl,\"As he heads out of the station, she peeks under her red convertible.\",Her tight skirts\nlsmdc3091_ZOMBIELAND-44507,13918,\"As she lowers the gun, he and someone climb out. Someone\",gets behind the wheel and swaps grins with her sister in back.,\"pulls a rounded mirror out of the cabinet, then raises a hand toward his waist.\",closes the garage door and holds his phone to his ear.,\"turns toward someone, who lies tensely in a row.\",stands at the end of the corridor leading behind them.,gold1-orig,pos,unl,unl,unl,pos,\"As she lowers the gun, he and someone climb out.\",Someone\nlsmdc3091_ZOMBIELAND-44507,13908,He finds it empty and bends over to survey the undercarriage. A flannel shirt,\"hangs from the hood, flapping in the breeze.\",pulls onto a camouflaged stand.,is put in his pocket.,hangs above an image of a man lying on the toilet.,sits neatly on an ottoman.,gold0-reannot,pos,unl,unl,unl,pos,He finds it empty and bends over to survey the undercarriage.,A flannel shirt\nlsmdc3091_ZOMBIELAND-44507,13911,\"Grinning, he waves someone over. The Hummer pulls forward and someone\",strides back to meet it.,punches the battered tree.,\"carves someone the dark, to!\",sprints back into the hallway and stops by an ancient box.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Grinning, he waves someone over.\",The Hummer pulls forward and someone\nlsmdc3091_ZOMBIELAND-44507,13904,\"Now on a country highway, the Escalade sits parked with its hood up. Someone\",studies it through binoculars.,glances up at the building.,shoots a look at someone's body in the car.,smiles from sight at someone.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Now on a country highway, the Escalade sits parked with its hood up.\",Someone\nlsmdc3091_ZOMBIELAND-44507,13910,\"He unhooks it then tosses it on the steaming engine. Slinging the rifle over his shoulder with its strap, he\",cups his hands to his mouth.,drops the hammer and drops.,hits him with the back of the boat.,takes the gun from his holster and flops down on the rug.,,gold1-reannot,pos,unl,unl,unl,n/a,He unhooks it then tosses it on the steaming engine.,\"Slinging the rifle over his shoulder with its strap, he\"\nlsmdc3067_THE_ART_OF_GETTING_BY-32347,17126,Someone gazes at the piece of art. Someone,\"eyes him thoughtfully, then steps in front of the next piece.\",stays under the chair and studies him.,puts its nails down again.,\"stares at someone, who sullenly sips his brandy.\",\"downward smacks a cup of his face, then pounds hard.\",gold0-orig,pos,unl,unl,unl,unl,Someone gazes at the piece of art.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32347,17127,\"Someone eyes him thoughtfully, then steps in front of the next piece. The sharp perspective canvas\",shows six rows of plates each holding a slice of cake or pie identical to the others in its row.,\"covers a silver sign on the wall for support, casting a gentle ripples on the ocean ocean.\",fly through the heavy rain rain.,shovels for another film.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone eyes him thoughtfully, then steps in front of the next piece.\",The sharp perspective canvas\nlsmdc3067_THE_ART_OF_GETTING_BY-32347,17125,He glances at someone then returns his gaze to the paintings. Someone,\"shrugs, then moves to another painting.\",sinks to his knees beside the table and types calculations in the diary.,jumps over a wall and flops on board.,moves closer and scans the surface.,,gold0-orig,pos,unl,unl,pos,n/a,He glances at someone then returns his gaze to the paintings.,Someone\nlsmdc3067_THE_ART_OF_GETTING_BY-32347,17128,The sharp perspective canvas shows six rows of plates each holding a slice of cake or pie identical to the others in its row. He,gives an embarrassed shrug.,presents a printout of his roast stick then sets it in front of it.,slashes a variety of raw powder into a dish plate.,chooses a swiffer cake.,,gold1-orig,pos,unl,unl,unl,n/a,The sharp perspective canvas shows six rows of plates each holding a slice of cake or pie identical to the others in its row.,He\nanetv_r5cjo7N6IEY,16002,\"A shadow is on the ground, caused by a designed shrub. A man\",\"is shown outdoors, showing off his multitude of decorative bushes in his yard.\",\"sits at a piano, beckoning uncomfortably.\",grabs a lady phone and holds it up.,\"is shown on a piece of wood land, singing and spraying smoke.\",,gold1-orig,pos,unl,unl,unl,n/a,\"A shadow is on the ground, caused by a designed shrub.\",A man\nanetv_r5cjo7N6IEY,16003,\"A man is shown outdoors, showing off his multitude of decorative bushes in his yard. He\",clips and measures them to make sure they look their best.,is sitting with the shoe making cups with a stick while explaining the price.,gazes down to the phone as he enters the main house.,is brushing through grass in a trees and showing mowing his lawn.,are practicing a bulletin board.,gold0-orig,pos,unl,unl,unl,unl,\"A man is shown outdoors, showing off his multitude of decorative bushes in his yard.\",He\nanetv_r5cjo7N6IEY,16004,He clips and measures them to make sure they look their best. He,\"finds two that look like boxers, and pretends to make them fight.\",lays his brow on the top of the rope.,holds all the drinks out of the room.,jumps for a monument to remove it.,,gold0-orig,pos,unl,unl,unl,n/a,He clips and measures them to make sure they look their best.,He\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94860,19468,\"Sitting in her pink office, someone puts three spoonfuls of pale pink sugar into a china cup decorated with pink roses. Cats\",move around on the china plates on the wall.,gift smiles: she is at the sort of view of a circular carriage and has to pretend it's sparkles.,is wheeled on comp machines.,sit on some empty plastic seats at home.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Sitting in her pink office, someone puts three spoonfuls of pale pink sugar into a china cup decorated with pink roses.\",Cats\nanetv_Wzg4d-3ym1E,18516,She starts painting the dresser with a spray gun. She,grabs a sponge out of a black bucket and starts wiping down the dresser.,\"puts the spare tire on, then shows a 30 message to the blackboard and the bag of papers.\",sets down the tire and dips the rag in the paint.,\"indicates the women, filing dresses in hangers.\",throws the powder with the polish with a closing torch and continues cleaning her shoes.,gold0-orig,pos,unl,unl,unl,unl,She starts painting the dresser with a spray gun.,She\nanetv_Wzg4d-3ym1E,17844,The lady kneels on the ground talking next to the nightstand. We,see a green ending title screen.,see the lady run down the river to the pool at play.,see the woman put her arms on a bed.,see ending on screen putting soap on the bucket.,,gold0-orig,pos,unl,unl,unl,n/a,The lady kneels on the ground talking next to the nightstand.,We\nanetv_Wzg4d-3ym1E,17840,We see power tools on a green title screen. A lady,sits on a table with tools on it in a workshop and talks.,takes sunscreen to a client.,is shown standing in front of a window talking to the camera.,is seen photo of the young boys.,demonstrates the paint technique in different liner.,gold0-orig,pos,unl,unl,unl,unl,We see power tools on a green title screen.,A lady\nanetv_Wzg4d-3ym1E,17842,We see the lady spray paint the newly sanded nightstand white and wipe it off with water. We,see the nightstand with no paint on it and see a recap of her process.,see a lady cooking in a bathtub.,see the closing screen.,see a caption screen.,,gold0-orig,pos,unl,pos,pos,n/a,We see the lady spray paint the newly sanded nightstand white and wipe it off with water.,We\nanetv_Wzg4d-3ym1E,17843,We see the nightstand with no paint on it and see a recap of her process. The lady,kneels on the ground talking next to the nightstand.,picks up a small brush and then fade into the dresser.,swings a shirt bolt on a person in the pink shirt with it and starts twirling it out.,sits and talks to the camera while dancing.,\"tosses the wand and the other goes to the sink and stands, then lands on top of the mop.\",gold0-orig,pos,unl,unl,unl,unl,We see the nightstand with no paint on it and see a recap of her process.,The lady\nanetv_Wzg4d-3ym1E,17841,A lady sits on a table with tools on it in a workshop and talks. She,grabs a tool ads the battery and a sanding disk while speaking.,cuts the screen on the screen with groping for shining.,throws to the wall and flips it.,touches in his mouth and shows the face of the man with the toppings while doing next.,,gold0-reannot,pos,unl,unl,unl,n/a,A lady sits on a table with tools on it in a workshop and talks.,She\nanetv_Wzg4d-3ym1E,18515,She starts ironing a dresser in front of her. She,starts painting the dresser with a spray gun.,bends to cut it and jewel it.,begins ties the laces together.,puts it on along bristle swimming the water.,uses both hands to remove her clothes and take off her shirt.,gold0-reannot,pos,unl,unl,unl,unl,She starts ironing a dresser in front of her.,She\nanetv_iZk3PH8ghlI,13351,Holding their arms behind them or their hands outstretched helps to control their speed and direction. Patchy areas of snow,\"are present on the sides of the road, indicating the still - cool temperature.\",is spewing all the rocks spread at fire.,try to sky over the sides of the hill.,pass in two directions.,\"is very long, very peaceful.\",gold0-orig,pos,unl,unl,unl,unl,Holding their arms behind them or their hands outstretched helps to control their speed and direction.,Patchy areas of snow\nanetv_iZk3PH8ghlI,2973,A group of teens skateboarding on a road. The teens,\"talk each other, then spread and continues skateboarding.\",struggle to catch their breath.,get out of their car.,rides side by side with a yellow car.,,gold0-orig,pos,unl,unl,unl,n/a,A group of teens skateboarding on a road.,The teens\nanetv_iZk3PH8ghlI,2974,\"The teens talk each other, then spread and continues skateboarding. Some of the teens\",holds hands behind their bodies while skating.,watch the hoops play the tam - tam.,playing in the snow.,take their turn and faces.,,gold1-orig,pos,unl,unl,unl,n/a,\"The teens talk each other, then spread and continues skateboarding.\",Some of the teens\nanetv_iZk3PH8ghlI,2975,Some of the teens holds hands behind their bodies while skating. Teens,holds hands while skateboarding.,perform their pace while knocking down balls.,walks through the quiet living room with an umbrella and a phone.,walk between her and shake hands.,pull the girls off of a slope.,gold1-reannot,pos,unl,unl,pos,pos,Some of the teens holds hands behind their bodies while skating.,Teens\nanetv_iZk3PH8ghlI,13349,\"Several skaters in helmets, pads, and hoodies are speeding down an empty road on their skateboards. They pass fields and houses, and one loan truck\",parked on the side of the road.,follows close as she goes.,speaks to each other.,is seen over and away with their cars as the town happens.,takes them off the cliffs.,gold0-reannot,pos,unl,unl,unl,unl,\"Several skaters in helmets, pads, and hoodies are speeding down an empty road on their skateboards.\",\"They pass fields and houses, and one loan truck\"\nanetv_L1lXij7Fyvo,10698,\"A man is standing outside by a pool, talking as another man stands on the other side. The second man\",\"balances on a string and walks over the water, staying balanced by waving his arms at his sides.\",is then shown wearing the helmet and holding the surf stick and begins going down the track and jumps up into the water again.,on the front dives behind the couch and removes his head and bat.,\"steps up off the side, then continues into another shot.\",,gold1-orig,pos,unl,unl,pos,n/a,\"A man is standing outside by a pool, talking as another man stands on the other side.\",The second man\nanetv_L1lXij7Fyvo,7127,A picture then appears in the middle of the screen indicating that the guy's name is Billy Funk. Billy Funk then,begins to tight rope the line over the pool and swaying from side to side while doing so.,continue to harmonica ballerinas on the side of the court.,the boy competing in the same spot from the competition.,\"start to play a piece of indoor basketball sticks, while the dance is shown, from a man of alternately has a left.\",,gold0-orig,pos,unl,unl,unl,n/a,A picture then appears in the middle of the screen indicating that the guy's name is Billy Funk.,Billy Funk then\nanetv_L1lXij7Fyvo,7128,Billy Funk then begins to tight rope the line over the pool and swaying from side to side while doing so. Another angle is shown and other individuals,are shown doing the same thing but falling into the pool and creating a large splashes.,continue in the room while a young man talks to the camera between golden and black darts.,cheer him onto the white tips recede to capture control of the animal.,are practicing for wrestling lessons and switching all the best ways to prepare for a competition in the pool.,,gold0-orig,pos,unl,unl,unl,n/a,Billy Funk then begins to tight rope the line over the pool and swaying from side to side while doing so.,Another angle is shown and other individuals\nanetv_L1lXij7Fyvo,10699,\"The second man balances on a string and walks over the water, staying balanced by waving his arms at his sides. He\",\"makes it to the other side, where he stops to talk to the camera before walking away.\",performs a wild jump position on the floor as the gymnast dive into the pool below.,brushes off his hands quickly.,grabs the man with one hand.,,gold0-orig,pos,unl,unl,pos,n/a,\"The second man balances on a string and walks over the water, staying balanced by waving his arms at his sides.\",He\nanetv_L1lXij7Fyvo,7129,Another angle is shown and other individuals are shown doing the same thing but falling into the pool and creating a large splashes. The first guy,\"then reappears and finishes the task without falling, says something to the camera then walks away.\",\"takes off his glasses, and then continues to talk to the camera in the end.\",grabs parts of the giant sliding portion of the board while manipulating with the water.,\"holds a mallet while someone watches, looking at the surface.\",\"turns, throws a ball into a building and dives into the water tank.\",gold0-reannot,pos,unl,unl,unl,pos,Another angle is shown and other individuals are shown doing the same thing but falling into the pool and creating a large splashes.,The first guy\nanetv_MiTTWddOuaM,10063,\"Two men walk in the street holding a box, then they assemble a soccer table. People\",plays soccer table in the street.,are on the side of the bridge holding the hammer.,\"compete in a competition, then the coaches run into the pool and move their arms with high fives.\",follow some trips of passing people.,continue playing the game.,gold0-orig,pos,unl,unl,pos,pos,\"Two men walk in the street holding a box, then they assemble a soccer table.\",People\nanetv_MiTTWddOuaM,10064,\"People plays soccer table in the street. After, the men\",carry the table and enters a train where they continue playing.,go in and high 1 fails to pass by.,hold and play polo.,\"put in, their long poles, and play indoor soccer.\",are in the race to run and win well.,gold0-orig,pos,unl,unl,unl,unl,People plays soccer table in the street.,\"After, the men\"\nanetv_MiTTWddOuaM,10065,\"After, the men carry the table and enters a train where they continue playing. After the man\",carry the soccer table to a park and other places where people play and paint it.,add eggs to a bowl of lemons and put the tokens across them.,\"trots alongside the skateboarder, the man gets the balls on the board.\",come with the boy and signal the children.,,gold0-reannot,unl,unl,unl,pos,n/a,\"After, the men carry the table and enters a train where they continue playing.\",After the man\nanetv_5P-Xs2v6lis,7126,A technician walks along a roof and sprays it using a wand attached to a hose. The man,turns off his hose then walks along the peak of the roof.,cuts the tiles at the end of the steam.,\"pushes plaster into the wall, while then leaning it into a wall.\",\"puts the vacuum down on the boot, lifts the metal squeegee and holds it to the floor.\",effortlessly cuts the opening vacuum.,gold0-orig,pos,unl,unl,unl,unl,A technician walks along a roof and sprays it using a wand attached to a hose.,The man\nanetv_5P-Xs2v6lis,7127,The man sprays around the gutters with the wand. The water,comes out of the gutter onto the cement below.,is shot to wall several more times to the room.,glows resting against the light.,appears and shows several shots of the man washing the man's leg.,,gold0-reannot,pos,unl,pos,pos,n/a,The man sprays around the gutters with the wand.,The water\nanetv_eUCKEnKxG8w,17371,The girls hold up a product and measure it out followed by putting it into their mouths and swishing it around. The girls then,spit out the liquid and continue to speak to the camera.,hold a black cloth and clean the brush and brush them all the way to speak to them.,go back and fourth across the floor while pulling back a string of the string and resuming it thoroughly.,demonstrate the next moves in unison.,,gold0-orig,pos,unl,unl,pos,n/a,The girls hold up a product and measure it out followed by putting it into their mouths and swishing it around.,The girls then\nanetv_eUCKEnKxG8w,17370,Two young girls are seen kneeling before a tub while speaking to the camera. The girls,hold up a product and measure it out followed by putting it into their mouths and swishing it around.,put an earring in her mouth while speaking to the camera.,continue while the two girls continue to dance in their frame.,continue speaking and leads into him speaking to the camera while a man speaks to a camera.,continue moving around a moving area while laughing into one another and looking to the camera and smiling.,gold1-orig,pos,unl,unl,unl,unl,Two young girls are seen kneeling before a tub while speaking to the camera.,The girls\nanetv_87hjft6OBiU,1159,There is a man shown lifting a weight that weighs over 90 pounds. There,is a woman who's running on the treadmill behind him.,ups are shown as they go to shave san.,whistle is added of the practicing.,is being shown by another bald man.,major weight snowboarding is shown.,gold0-orig,pos,unl,unl,unl,unl,There is a man shown lifting a weight that weighs over 90 pounds.,There\nanetv_Y4IsLkxb5CI,15836,A woman in bikini is swimming under the sea. A reflection of a person on the water,is shown riding a surfboard.,catches a fish underwater.,is pouring smoke onto the area.,fall down on the mountains.,makes a funny face as she talks.,gold0-orig,pos,unl,unl,unl,unl,A woman in bikini is swimming under the sea.,A reflection of a person on the water\nanetv_Y4IsLkxb5CI,15837,A reflection of a person on the water is shown riding a surfboard. The woman swims in the water and she,is close to the corals and fishes.,runs up a wave and to her left.,\"'s holding the woman, laughing and brushing the dog's hair.\",continues swimming around in the water while the two cups are swimming.,starts to try and jump again when she loads the inflated.,gold0-orig,pos,unl,unl,unl,pos,A reflection of a person on the water is shown riding a surfboard.,The woman swims in the water and she\nanetv_Y4IsLkxb5CI,17918,The shadow of a person riding a surf board is captured. The lady,smiles and swims away.,walks over the board and waves.,proceeds to get a kite with someone and someone.,puts her hands on the water.,finishes and swings toward the arc rover.,gold0-orig,pos,unl,unl,unl,unl,The shadow of a person riding a surf board is captured.,The lady\nlsmdc0030_The_Hustler-65222,13086,\"Someone unscrews his cue, thinking it over. Someone's bodyguards\",\"stand around, waiting for the word.\",flips him head to the ground.,turn around and sprint over to the right.,follow the shotgun inside.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone unscrews his cue, thinking it over.\",Someone's bodyguards\nlsmdc0030_The_Hustler-65222,13087,\"Someone's bodyguards stand around, waiting for the word. Someone\",\"listens, his head bowed.\",speeds off down a highway.,does a lift off the corpse and continues to date someone.,is sitting in a motel room bed and talking to someone.,takes him back to his opponent.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone's bodyguards stand around, waiting for the word.\",Someone\nanetv_awag66wjX4k,10498,The person then shows off the finished product of a fully adjustable handle. The ending screen,shows the bike company's logo again.,is shown in half between 4.,is cleaned with the closeups of a project.,drops showing the product.,appears with individual bolts skimming through the passenger window.,gold0-orig,pos,unl,unl,unl,pos,The person then shows off the finished product of a fully adjustable handle.,The ending screen\nanetv_awag66wjX4k,10497,A person with gloves then shows off some tools and paste. He then,uses the tools and paste to fix the bike's handle.,talks and begins scissors on the side with scissors.,takes some off and removes a shoe and lines up a shoe.,puts all the pans on a bush and wipes it away.,pulls out a yellow barrel and puts them before the wheel.,gold1-orig,unl,unl,unl,unl,unl,A person with gloves then shows off some tools and paste.,He then\nanetv_awag66wjX4k,10495,There is an intro of the bike company's logo. Then a man,gives a quick into talk about the bikes.,is holding a little snowboarding rope and city lights.,is using a lanes on the beanie.,takes wire from his bicycle.,speaks multiple shots of the camera and a website.,gold0-orig,pos,unl,unl,pos,pos,There is an intro of the bike company's logo.,Then a man\nanetv_awag66wjX4k,10496,Then a man gives a quick into talk about the bikes. A person with gloves then,shows off some tools and paste.,climbs up and out of the yard to start a boat.,pick up pieces of the bike and begins climbing the fence.,begins to dismount in different rooms and poses.,clothes holding spaced talks to the cut and race to the camera.,gold1-orig,pos,unl,unl,unl,unl,Then a man gives a quick into talk about the bikes.,A person with gloves then\nanetv_awag66wjX4k,10494,A bike company is showing off their bikes and how to fix them. There,is an intro of the bike company's logo.,\"three and a man get on their bike and come back to work on it, and then it is on a day.\",is in a bicycle when watched by women in a tire wrestling in front of another bike and by ride them.,is a lever and the old words appear and a statue is of fair and the mountain.,,gold1-orig,pos,unl,unl,unl,n/a,A bike company is showing off their bikes and how to fix them.,There\nanetv_RiF_iAc0keQ,18988,Another boy lays down on his stomach. Another person,lifts him up and drops him on the bed.,\"takes the boy, putting it in his hand as someone swings down over his head and bumps him with him.\",comes to the end.,lifts his left arm while the other boy watches.,walks over to the boy.,gold1-orig,pos,unl,unl,pos,pos,Another boy lays down on his stomach.,Another person\nanetv_RiF_iAc0keQ,12162,Four kids are seen jumping on a bed with one another. One child,grabs the other by the legs while the others jump down.,holds shoes on the ground.,falls on the swing.,puts on top of the man's head.,,gold0-orig,pos,unl,unl,unl,n/a,Four kids are seen jumping on a bed with one another.,One child\nanetv_RiF_iAc0keQ,12163,One child grabs the other by the legs while the others jump down. The child,flips the other down onto the bed.,does tricks down a slack line while another child walks on the other side.,steps off the floor and lands on the ground.,attaches a string pass around his neck.,stands up and claps his hands.,gold0-orig,pos,unl,unl,unl,pos,One child grabs the other by the legs while the others jump down.,The child\nanetv_RiF_iAc0keQ,18987,A boy in a white shirt jumps off of a bed. Another boy,lays down on his stomach.,is helping him in and we.,goes down the slide.,hops on his board.,is holding onto another outfit with a baton on his chest.,gold1-reannot,pos,unl,unl,unl,unl,A boy in a white shirt jumps off of a bed.,Another boy\nanetv_rgrzN8ELIxI,9937,A surfer walks down towards the beach. Surfers,ride large waves in the ocean.,stands on the pier out in the water.,does the same as he surfs the small wave and falls back.,are going across the water above the waves.,behind there are on on the sand.,gold0-orig,pos,unl,unl,unl,unl,A surfer walks down towards the beach.,Surfers\nanetv_rgrzN8ELIxI,9936,A beach is seen from the distance and houses are seen on a hillside in a small beach town. A surfer,walks down towards the beach.,uses a red tie to jump into a water in an indoor acoustic blue skier.,comes up and shows off a piece of colorful paintball pool.,skis down the rapids and the man hops out on the board.,walks up and waves up a red banner with waves on the waves.,gold0-orig,pos,unl,unl,unl,pos,A beach is seen from the distance and houses are seen on a hillside in a small beach town.,A surfer\nanetv_rgrzN8ELIxI,9935,A collage of drawings and logos are seen in black and white that make up a larger logo. A beach is seen from the distance and houses,are seen on a hillside in a small beach town.,are shown in several clips as a person climbing the sides of a cliff.,land on the outdoor sidewalk.,are seen with white text on it.,,gold0-orig,pos,unl,unl,pos,n/a,A collage of drawings and logos are seen in black and white that make up a larger logo.,A beach is seen from the distance and houses\nanetv_eil9mWGJB8E,2091,A crowd is gathered around two women who are arm wrestling. The women,grab each others hands and push as hard as they can until one of them loses.,are seen blocking up and down on one knee covered in round swords.,begin to dance back and forth as they ballroom dance.,are barefoot and wearing a garment shine with the men.,\"fall to the ground, then one of the man in the yellow shirt hits some pins.\",gold0-orig,pos,unl,unl,unl,unl,A crowd is gathered around two women who are arm wrestling.,The women\nanetv_eil9mWGJB8E,2092,They redo the arm wrestling. One of the girls lets her hand loose and the other girl,opens her mouth in shock.,raises an arm to protect her.,helps as they practice.,slams her hands into a couple ducking her.,,gold0-orig,pos,unl,unl,unl,n/a,They redo the arm wrestling.,One of the girls lets her hand loose and the other girl\nlsmdc0008_Fargo-49968,10797,Someone pulls to a halt next to someone's idling Cadillac. Someone,approaches in the cadillac.,is leaning toward a car rack.,looks at someone's mother behind her.,is standing in the corner of the drawn box at the top of the line.,clicks his old wrist to the bottom.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls to a halt next to someone's idling Cadillac.,Someone\nlsmdc0008_Fargo-49968,10798,Inside the booth we see the awkwardly angled leg of a prostrate body. The car,pulls into the driveway.,rises to shore and someone's foot hits a window handle.,slumps as it slithers and grasps just the edge of the boat below.,creeps away as she drives.,blocks two lounging hookers.,gold1-orig,pos,unl,unl,pos,pos,Inside the booth we see the awkwardly angled leg of a prostrate body.,The car\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93560,5932,His hand shakes has he holds it out to someone. Someone,\"runs his fingers over it, then snaps off it's handle.\",picks up the quill and gives it to little someone.,walks away from him and gets out.,appears in the doorway and stops in her tracks.,,gold0-orig,pos,unl,pos,pos,n/a,His hand shakes has he holds it out to someone.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93560,5933,\"Someone runs his fingers over it, then snaps off it's handle. Someone\",\"watches keenly, as someone discards the handle.\",glances back at someone and loads the tower fists.,takes a seat on the ice.,pulls back the door and races to the suv.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone runs his fingers over it, then snaps off it's handle.\",Someone\nanetv_jwqotL-yNvE,2907,The guys takes off his track suit and continues to work out. He,flips himself over in the air and lands on a pile of sand.,stands and touches his moped.,ties up the calf and jumps fast.,is on his blue white hat and is getting ready for shoes to walk up the snowy street.,,gold0-orig,unl,unl,unl,unl,n/a,The guys takes off his track suit and continues to work out.,He\nanetv_jwqotL-yNvE,2908,He flips himself over in the air and lands on a pile of sand. He,proceeds to do some break dancing moves before the video ends.,sets his pockets and puts his third gloves on.,walks to a dispenser table next to a red yellow light and blow the entire group of weeds towards the beach.,lifts a fish to keep it down afterwards.,,gold0-orig,pos,unl,unl,unl,n/a,He flips himself over in the air and lands on a pile of sand.,He\nanetv_jwqotL-yNvE,2905,\"A video is shown of a first person view of someone exploring a large open field on the way to a track. Then, the person\",puts the camera down and begins working out on the track.,adds sand to the sand and then sit in a ski.,stands right in the center of the river and raise the stick to stand on top of it.,celebrates the chimney to the camera and takes the pure over the mountain.,,gold0-orig,pos,unl,unl,unl,n/a,A video is shown of a first person view of someone exploring a large open field on the way to a track.,\"Then, the person\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3516,\"Someone begins to fall forwards, as pieces of his skull break away. His mouth gaping in horror, he\",looks up as his body and clothes disintegrate into thousands of tiny pieces which float upwards.,flashes a wicked grin.,\"closes his eyes, raises his wand smoke directly up to the ceiling and turns his light off.\",reaches up and draws mjolnir up to the boy's throat.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone begins to fall forwards, as pieces of his skull break away.\",\"His mouth gaping in horror, he\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3508,\"On their knees, they fire them at each other. A burst of green energy from the Elder Wand\",\"is met by a burst of red from someone, resulting in a bright white ball of light.\",\"brings someone closer to rotating the chicken arm, and he takes it for a time.\",\", earnestly chasm inside someone's throat, but a bone grabs its bodies.\",\"holds someone in his arms, so his assault wand cowers into the sphere.\",\"blows out shielding and with is energy, flying, lightning.\",gold0-orig,pos,unl,unl,unl,pos,\"On their knees, they fire them at each other.\",A burst of green energy from the Elder Wand\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3511,\"In the courtyard, someone reels. Someone\",turns to face him.,runs to a right cliff.,climbs into the figure's room.,slumps down from a railing.,wedges the dank surrounding bushes.,gold1-orig,pos,unl,unl,unl,pos,\"In the courtyard, someone reels.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3528,Someone makes a vain attempt to sweep up a mountain of rubble. People,walk into the hall.,struggle around the tiles.,use his power to pick it up.,\"remain stored in the darkness, briefly.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone makes a vain attempt to sweep up a mountain of rubble.,People\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3526,\"The huge giant hugs someone, then studies him. Someone\",\"grins, as someone turns and walks away.\",gets back with his cue.,\"winks at someone, then falls to the ground.\",touches pieces of the paper to someone.,,gold0-orig,pos,unl,pos,pos,n/a,\"The huge giant hugs someone, then studies him.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3529,He notices they are holding hands. Someone,\"glances down, coyly.\",looks down and sees someone.,escorts someone to where her mother had been concerned.,appears and fastens his helmet.,gives a look and gradually walks into the silence.,gold0-orig,pos,unl,unl,unl,pos,He notices they are holding hands.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3530,\"Outside in brilliant sunshine, the three friends stroll aimlessly along the ruined bridge, with its broken balustrades. Someone\",steps up onto a broken stone support and looks out.,'s portrait sags its lips.,takes the beer and laughs at the glass.,gazes through the carved crystal at the glass pane covering her window and adjusting the glass.,opens a red door for someone.,gold0-orig,pos,unl,unl,unl,unl,\"Outside in brilliant sunshine, the three friends stroll aimlessly along the ruined bridge, with its broken balustrades.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3507,\"Someone reaches the Elder Wand, just before someone reaches his. On their knees, they\",fire them at each other.,start to dance together.,race across their rotunda.,dig into their gloved hands.,are having a great time.,gold0-orig,pos,unl,unl,unl,unl,\"Someone reaches the Elder Wand, just before someone reaches his.\",\"On their knees, they\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3518,\"The morning sun shimmers through the mountains and someone, as they drift harmlessly upwards, like ashes from a paper fire. Inside, exhausted students\",sit on the stairs.,pull the fellowship out of hogwarts.,start to run past someone.,run through a small wooden door.,,gold0-orig,pos,unl,unl,unl,n/a,\"The morning sun shimmers through the mountains and someone, as they drift harmlessly upwards, like ashes from a paper fire.\",\"Inside, exhausted students\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3520,Someone holds the sword of Gryffindor. He,\"smiles, as someone sits down coyly beside him.\",is on the side of the court looking up at the ceiling.,looks up and sees the huge spider kneeling on the ground.,hurries towards a blind lying in the opposite direction.,looks along with a wounded glare.,gold1-orig,pos,unl,unl,unl,pos,Someone holds the sword of Gryffindor.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3522,He smiles when he sees someone family together. He,walks past chattering students.,\"drives intently, and she sits down.\",hikes up a board.,sets her down and starts indoors.,hands the deagol to someone.,gold1-orig,pos,unl,unl,unl,unl,He smiles when he sees someone family together.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3523,He walks past chattering students. Someone,gives him a weak smile.,is still playing the piano.,\"stands at his door, watching them.\",regards him with a hardened look.,looks down the corridor and stops to listen.,gold1-orig,pos,unl,unl,unl,unl,He walks past chattering students.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3503,\"The train of black smoke is sawed away, crashing through charred roof timbers. Struggling for supremacy, they\",claw at each other's faces as they zoom above the school.,continue to pound the fence.,walk along a yard filled with planet like circus maps and streak over the horizon.,scuttle up behind someone.,,gold0-orig,pos,unl,unl,unl,n/a,\"The train of black smoke is sawed away, crashing through charred roof timbers.\",\"Struggling for supremacy, they\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3505,\"They lie on the ground, some distance apart. Energy spent, each of them\",crawls towards his own wand.,is the only forces that wins.,works out by the moves.,seems as if roman and burning of the heavens.,has make the point because all the snow is falling out.,gold1-orig,pos,unl,unl,unl,pos,\"They lie on the ground, some distance apart.\",\"Energy spent, each of them\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3504,\"Someone seems to split someone's head in two, revealing only the black smoke, as they land in the courtyard and roll away from each other across the cobbles. They\",\"lie on the ground, some distance apart.\",\"continue down the hall, dancing to someone, catching them.\",remain astonished as the scatter squad follow themselves across the table.,resumes to heat the panel of partygoers and see a giant wave sending an ancient ball torchlight forward.,\"are helped over the bank of the bank, as someone rides behind one boat.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone seems to split someone's head in two, revealing only the black smoke, as they land in the courtyard and roll away from each other across the cobbles.\",They\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3525,Someone stops in front of someone. The huge giant,\"hugs someone, then studies him.\",rotates his once round room.,is slowly forcing its shattered equipment across and inside the open door.,flies from in the air.,someone shoots punches him in the throat.,gold0-orig,pos,unl,unl,unl,pos,Someone stops in front of someone.,The huge giant\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3506,\"Energy spent, each of them crawls towards his own wand. Someone\",\"reaches the elder wand, just before someone reaches his.\",becomes a roaring fruit as someone runs out.,winces as she smugly jabs him.,stands and raises his glass into the air.,\"appears, creature steadies him from his blonde,.\",gold0-orig,pos,unl,unl,unl,unl,\"Energy spent, each of them crawls towards his own wand.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3509,\"Inside, someone chases people downstairs. Inside, people\",\"fall, and someone raises her head, mouth open.\",walk in a car past to the curb.,hold an umbrella in him.,offers the company police friendly smiles.,find safety and crash against the rooftop.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, someone chases people downstairs.\",\"Inside, people\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3501,\"High on the ramparts, someone flings his arms around someone's neck, and clinging onto him, jumps off the edge. They\",\"plummet from the heights, someone trying to break free.\",\", the rider's rich body moves helplessly in the direction of the coach and pockets his arm in the air.\",stop trying to get it.,drag him to their feet.,fall into their arms.,gold0-orig,pos,unl,unl,unl,unl,\"High on the ramparts, someone flings his arms around someone's neck, and clinging onto him, jumps off the edge.\",They\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3512,Someone's face fills with fury. Red and green blasts,meet again in a brilliant white and orange glow.,pump their fists and hit him with the swords.,run across the plains covered ground then scrambled from down the sides.,\"appear in the palm of the spikey, and slowly into the top of the ski and back in the sky.\",explode through someone's face.,gold0-orig,pos,unl,unl,unl,pos,Someone's face fills with fury.,Red and green blasts\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3519,\"Inside, exhausted students sit on the stairs. Someone\",holds the sword of gryffindor.,reads the newspaper as they run along a runway.,backs up cautiously to the front of the house.,leaps across the wide bridge.,sits huddled in the small pool.,gold1-orig,unl,unl,unl,unl,unl,\"Inside, exhausted students sit on the stairs.\",Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3514,\"Someone is forced back, as the energy from the Elder Wand dissipates and dies. Someone flicks his wand, and the Elder Wand\",cartwheels through the air across the courtyard.,slams into a door.,grabs someone into the air.,smashes into a tree.,is cut back into the night corridor.,gold1-orig,pos,unl,unl,unl,unl,\"Someone is forced back, as the energy from the Elder Wand dissipates and dies.\",\"Someone flicks his wand, and the Elder Wand\"\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3524,Someone gives him a weak smile. Someone,stops in front of someone.,\"salutes, goes to someone's office, takes out his phone.\",\"drives off with his briefcase, and sweat glistening on his cheek.\",ends the call and answers his mobile.,gently kisses someone in the lips and pulls him into a hug.,gold1-reannot,pos,unl,unl,unl,unl,Someone gives him a weak smile.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100440,3510,\"Inside, people fall, and someone raises her head, mouth open. Someone\",swings the sword of gryffindor.,saunters into his apartment.,\"yanks the massive frenchman off the ground, at top speed.\",\"flicks the smoke - o - lantern, someone faces the witch with someone carrying his stick.\",jabs someone in the stomach.,gold0-reannot,pos,unl,unl,unl,pos,\"Inside, people fall, and someone raises her head, mouth open.\",Someone\nanetv_n--fgqwuTTI,18261,They use a blue tool to take the chain apart. They,put it back together using a tool.,get around the driver and open them for a few seconds.,criss - jig a little pipe and put it into the center of the mouth of the tiny graphic.,see the outline of the tire and then pick up axes.,turn the crowd around and nod into the camera.,gold0-orig,pos,unl,unl,unl,unl,They use a blue tool to take the chain apart.,They\nanetv_n--fgqwuTTI,18260,A person is putting something on a chain of a bike. They,use a blue tool to take the chain apart.,climb the rope and throw it to the ground.,use the machine to use it on a machine.,go to an awning on it.,zooms from the handlebars onto the bike.,gold0-orig,pos,unl,unl,unl,unl,A person is putting something on a chain of a bike.,They\nanetv_CCL8kqQMCRw,262,A young boy attempts to break open a pinata at his birthday party inside a garage. Another boy,nearly walks into the range of the boy's stick but is saved by an adult.,climbs onto some bars.,watches from a door frame.,walks up to the camera.,\"comes along, laughing to the camera.\",gold0-orig,pos,unl,unl,unl,pos,A young boy attempts to break open a pinata at his birthday party inside a garage.,Another boy\nanetv_saShR7NwjMg,130,A close up of a person leads into the person watching their hands and scrubbing it with soap. A man,is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water.,wipes up a shirt on the sink and pans off to the man's feet.,is seen afterwards running in frame while a person focuses on a figurine's picture.,is then seen panning around the area while speaking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A close up of a person leads into the person watching their hands and scrubbing it with soap.,A man\nanetv_saShR7NwjMg,131,A man is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water. The man,dries it off with a rag in the end.,\"continues brushing and finishes to wash dishes, and continues to laugh.\",pushes in and out of the way while rinsing the dish off him.,turns the pumpkin over with a smile and speaks to the camera.,uses a hose to rub lotion all over his face while he plays.,gold0-orig,pos,unl,unl,unl,unl,A man is shown scrubbing up his hands in a sink while demonstrating the proper way to wash hands and dip them under the water.,The man\nanetv_jYU215e-dKg,6800,\"A young man sitting on a stage with a guitar and a towel over his head, dries his hair with the towel and places it on the stage as a crowd cheers in the background. The young man\",opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd.,jumped down and started playing the arts.,sits up and puts all its supplies down in the background.,releases the weights and lifts her up in his arms.,lay in the chair and then spool his long hair.,gold0-orig,pos,unl,unl,unl,unl,\"A young man sitting on a stage with a guitar and a towel over his head, dries his hair with the towel and places it on the stage as a crowd cheers in the background.\",The young man\nanetv_jYU215e-dKg,6801,The young man opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd. The young man then,\"turns back around, tosses the can into the crowd and prepares to play his guitar.\",grabs the guitar from around the head of his body and walks back to the bridge room.,pours the drink into a glass while still pouring liquids into an orange container.,wears a white hat as he walks to the front room of a the and a man in a grey jacket and black pants.,comes out into a room of mini - fighters in a bottled soda.,gold0-orig,pos,unl,unl,unl,unl,The young man opens a can and drinks some kind of liquid as he stands up and turns his back to the crowd.,The young man then\nanetv_jYU215e-dKg,1998,Man hold a bottle and drinks from it standing in stage. the man,is walking in the stage drinking from the bottle and throw it to the public.,puts on a glass and helps with the drink in their hands.,takes a turn and then drinks when it's in a cup.,is playing the racket.,,gold0-orig,pos,unl,unl,unl,n/a,Man hold a bottle and drinks from it standing in stage.,the man\nanetv_jYU215e-dKg,1997,Man is sitting in stage drying her hair with a cloth and holding a guitar. man,hold a bottle and drinks from it standing in stage.,\"is in a saxophone playing the piano, then a man talks to the band.\",\"is skateboarding in the studio with the carpet and he stop near her, playing congas.\",is dancing in a kitchen with two motorized dogs.,demonstrates a kind of elliptical in a living room.,gold0-reannot,pos,unl,unl,unl,unl,Man is sitting in stage drying her hair with a cloth and holding a guitar.,man\nanetv_m5YvKrjGtPM,16937,\"A person lift a weight on back. Then, the man\",\"lifts the weight, after he drops the weight to the floor.\",\"lifts a weight on the shoulder, then lifts it to his chest.\",loads a weight and then holds it.,\"picks up the weight, lifts it over his head.\",takes off the weight and holds the weight.,gold1-orig,pos,pos,pos,pos,pos,A person lift a weight on back.,\"Then, the man\"\nanetv_m5YvKrjGtPM,16936,A topless fat man practice weight lift behind the man. A person,lift a weight on back.,introduces someone to cover the spot.,lifts weights and does some lifting across the air.,starts his jump on the pommel horse slowly.,,gold1-orig,pos,unl,unl,unl,n/a,A topless fat man practice weight lift behind the man.,A person\nanetv_m5YvKrjGtPM,16938,\"Then, the man lifts the weight, after he drops the weight to the floor. Again, the man\",kneels again and lift the weight above his head and then drop it.,lifts the weight off the bar onto the ground.,\"lifts the weight over his head, leaving several times on his shoulders.\",lifts the weight and the man begin to lift the weight over his head.,raises two hands and then returns the weight.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the man lifts the weight, after he drops the weight to the floor.\",\"Again, the man\"\nlsmdc0001_American_Beauty-45946,6868,He stands and gestures toward all the things in the room. Someone,\"stares at him, on the verge of tears, then turns and walks out of the room before he can see her cry.\",\"points in front of him, then looks directly at him.\",is cutting the wall.,\"is there, kicking her chair out of the way.\",stands in the bathroom speaking to someone.,gold1-reannot,pos,pos,pos,pos,pos,He stands and gestures toward all the things in the room.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15813,Red someone descends into a low ceilinged room filled with treasure. Red someone,inspects a string of pearls.,throws himself onto a beam and mops.,hefts a heavy rifle into the air.,finds the boy in bed.,\"slams a vacuum on a wall, and spots someone.\",gold0-orig,pos,unl,unl,unl,unl,Red someone descends into a low ceilinged room filled with treasure.,Red someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15814,\"Red someone inspects a string of pearls. Standing he swings his sword, then\",points the weapon toward sir someone.,reappears on his coat for a split second.,\"flips off the vampire's throat, then ignites its spikes.\",steps around the side of the ballroom.,tumbles on a ramp with wings.,gold0-orig,pos,unl,unl,unl,unl,Red someone inspects a string of pearls.,\"Standing he swings his sword, then\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15819,A feather attached to a knife blade flies upward from his hat. He,catches the feather in his mouth then drops it to his hand.,fires at a pile of wood on the wood table.,pins the chain on the back of his pants.,\"catches a baton, and does a somersault.\",opens the gate and someone comes out to the thugs.,gold0-orig,pos,unl,unl,unl,pos,A feather attached to a knife blade flies upward from his hat.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15816,\"Using flaming torches the pirates prod sailors into the sea. Sharks converge around the bound sailors, bubbles\",float to the surface.,float down her nostrils.,catch up beneath his wings.,rains down into the debris.,surround the ferociously of lava from water.,gold0-orig,pos,unl,unl,unl,unl,Using flaming torches the pirates prod sailors into the sea.,\"Sharks converge around the bound sailors, bubbles\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15811,Someone steps to a bookcase and touches the top of a book. Inside the ship Sir someone,\"tilts a book in a bookcase, opening a secret compartment in the floor.\",hits a bell over the cliff railing.,takes out celebrating and kicks a quaffle into the air.,is kneeling a charge of the falls across the ship.,hangs the bifrost mechanism and peers into a wooden door in someone's chamber.,gold0-orig,pos,unl,unl,pos,pos,Someone steps to a bookcase and touches the top of a book.,Inside the ship Sir someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15818,\"On the ship, Sir someone tied to the mast jerks back his head. A feather attached to a knife blade\",flies upward from his hat.,\"is sprayed onto someone's neck, sending him writhing overboard.\",dashes out of a crate and grabs the men.,leads him out into the pool.,brings the glider to the floor.,gold0-orig,pos,unl,unl,unl,unl,\"On the ship, Sir someone tied to the mast jerks back his head.\",A feather attached to a knife blade\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15812,\"Inside the ship Sir someone tilts a book in a bookcase, opening a secret compartment in the floor. Red someone\",descends into a low ceilinged room filled with treasure.,\"steps over to someone, who sits down in a wounded seat on the far desk.\",picks up the tin and pushes past the engineer through the streets.,\"sits on a sofa facing him, and faces a mirror.\",rushes over to someone.,gold0-orig,pos,unl,unl,unl,pos,\"Inside the ship Sir someone tilts a book in a bookcase, opening a secret compartment in the floor.\",Red someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15815,\"Standing he swings his sword, then points the weapon toward Sir someone. Using flaming torches the pirates\",prod sailors into the sea.,\"appear on either side, blocking the corpses, which explode far behind.\",release to dozens hydra soldiers.,soar sideways in the distance.,shoot backward one at a time.,gold0-orig,pos,unl,unl,unl,unl,\"Standing he swings his sword, then points the weapon toward Sir someone.\",Using flaming torches the pirates\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15810,\"Face covered by a red bandana, Red someone raises his sword. Someone\",steps to a bookcase and touches the top of a book.,\"rises, places the coat's lens on his cheek, and walks away.\",lies on someone's hands.,slams the door shut.,,gold1-orig,unl,unl,unl,unl,n/a,\"Face covered by a red bandana, Red someone raises his sword.\",Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31788,15820,\"He catches the feather in his mouth then drops it to his hand. Grasping the blade firmly, Sir someone\",cuts through his ropes.,removes its false spikes.,jumps as he swoops upward.,braces himself against the still underneath ropes of harness.,,gold1-orig,pos,unl,unl,pos,n/a,He catches the feather in his mouth then drops it to his hand.,\"Grasping the blade firmly, Sir someone\"\nlsmdc3039_JACK_AND_JILL-2427,8223,Someone goes to the window and sees someone on a riding lawn mower. The cut grass,blows at someone as he chases her.,is used to go into a hole in the grass.,is pushed by white.,moves to someone's front yard.,\"is cut in a color of white, how quaint.\",gold1-reannot,pos,unl,unl,unl,unl,Someone goes to the window and sees someone on a riding lawn mower.,The cut grass\nlsmdc1039_The_Queen-88119,1217,Someone puts down the phone and pauses for a moment. Someone,\"stops beside a female secretary, who sits behind a desk.\",\"speaks for a moment, then turns to a tourist on the street.\",\"pauses, scans the room, then snaps out more new notes.\",stops a few feet across the street and looks about.,,gold0-reannot,pos,pos,pos,pos,n/a,Someone puts down the phone and pauses for a moment.,Someone\nanetv_gxuere-ofCU,6844,The man then begins playing several songs while pausing in between. He,continues playing the instrument while looking off into the distance.,finishes the song and continues speaking as fireworks occur movements throughout the area while playing.,shows a rabbit lying on its back.,pauses on his hands and begins playing after the fourth rope.,continues to continue playing the instrument while people watch on the sidelines.,gold0-orig,pos,unl,unl,unl,unl,The man then begins playing several songs while pausing in between.,He\nanetv_gxuere-ofCU,6843,A man is seen sitting in front of a camera holding a harmonica in his hands. The man then,begins playing several songs while pausing in between.,begins playing several drums and begins looking into the camera.,lays down and begins playing the instrument while looking at a camera.,puts one arm around his neck as they play.,begins playing instruments as well as demonstrating how to use his saxophone in sync by playing.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen sitting in front of a camera holding a harmonica in his hands.,The man then\nanetv_sahQxLbmM0U,16632,A woman is bent over holding a weight bar. She,picks the weight up and holds it at her shoulders.,continues to lift weights off her head.,continues applying a stone bar over the bar.,performs a gymnastic routine on the parallel bars.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is bent over holding a weight bar.,She\nanetv_sahQxLbmM0U,8459,A woman is seen bending forward grabbing onto a set of weights. She then,lifts the weights over her head.,twirling herself around while moving her arms up and down and dancing around.,stands up several times and walks off in the end.,lifts the weights up and baby bends as she continues lifting.,bends down and lifts the weight over her head.,gold1-orig,pos,unl,pos,pos,pos,A woman is seen bending forward grabbing onto a set of weights.,She then\nanetv_sahQxLbmM0U,16633,She picks the weight up and holds it at her shoulders. She then,lifts the weight over her head.,shows a piece of equipment and throws it to one person at a moving lifeboat.,does several more flips and flips.,throws inside the bag and goes back to him.,drops her rolls in another bar.,gold1-reannot,pos,unl,unl,unl,unl,She picks the weight up and holds it at her shoulders.,She then\nlsmdc0019_Pulp_Fiction-56620,17377,\"We fade up on someone, a white, 26 - year - old prizefighter. Someone\",sits at a table wearing a red and blue high school athletic jacket.,whisks money into a fishbowl.,\"disarms someone, who punches him in the head.\",is just playing with her.,,gold0-orig,pos,unl,unl,unl,n/a,\"We fade up on someone, a white, 26 - year - old prizefighter.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37425,4959,\"Now someone and someone stand at their desks. As someone takes a clip from his gun, someone\",packs up his belongings in a file box.,marches out into central park.,takes a charge and punches the curve.,walks down the aisle past someone.,,gold1-orig,pos,unl,unl,pos,n/a,Now someone and someone stand at their desks.,\"As someone takes a clip from his gun, someone\"\nlsmdc3080_THIS_MEANS_WAR-37425,4960,\"As someone takes a clip from his gun, someone packs up his belongings in a file box. Someone\",takes his cellphone from his pocket.,pulls him through a gate to his room.,ties the top of an oblong box.,shares an office with someone and is waiting with her.,\"approaches a laptop, faces him with a solemn gaze and lifts his gaze.\",gold1-orig,pos,unl,unl,pos,pos,\"As someone takes a clip from his gun, someone packs up his belongings in a file box.\",Someone\nlsmdc3080_THIS_MEANS_WAR-37425,4958,She lifts her son onto her lap. Now someone and someone,stand at their desks.,enter an elevator next to a woman.,arrive at a pet hotel.,pose at a lectern.,stand outside the church.,gold0-orig,pos,unl,pos,pos,pos,She lifts her son onto her lap.,Now someone and someone\nanetv_Fp_uU-qMDSc,8693,A man dressed in all white is shown fighting different men outdoors and hitting them very hard. Tai Chi Combat along with his website and various other website icons,are located on the bottom right.,are shown as company's attention is riding.,\", he give the instructions.\",win from both countries.,are shown that one's number words on the screen say awarded matadors.,gold0-orig,pos,unl,unl,unl,unl,A man dressed in all white is shown fighting different men outdoors and hitting them very hard.,Tai Chi Combat along with his website and various other website icons\nanetv_Fp_uU-qMDSc,8694,The man is then standing alone outdoors where he's still wearing the same white outfit and is talking very passionately using hand motions and lots of facial expressions. The man is once again shown to be fighting different men outdoors and he,seems to be winning each fight.,is then seen riding for in the environments.,is talking extensively about how the shaving and leave other package.,is shown on the phone.,,gold0-orig,pos,unl,unl,pos,n/a,The man is then standing alone outdoors where he's still wearing the same white outfit and is talking very passionately using hand motions and lots of facial expressions.,The man is once again shown to be fighting different men outdoors and he\nanetv_Fp_uU-qMDSc,8696,\"After this round of fights, the man is once again talking very passionately with a lot of hand movements and facial expressions. The man then\",goes back to more fighting with different men somewhere outdoors where he continues to win the fights by hitting and occasionally kicking.,shows two hands on how to use the shears and demonstrate how to size them like what is going to happen.,cuts up his eyes and most likely also resumes doing karate with him.,takes onto a close defense game demonstrating how to place the potato on his lips.,walks on to the head showing how it picks in fast.,gold0-orig,pos,unl,unl,unl,unl,\"After this round of fights, the man is once again talking very passionately with a lot of hand movements and facial expressions.\",The man then\nanetv_Fp_uU-qMDSc,8695,\"The man is once again shown to be fighting different men outdoors and he seems to be winning each fight. After this round of fights, the man\",is once again talking very passionately with a lot of hand movements and facial expressions.,is captured giving him a tattoo in his right bow in the end.,contorted on the wheel explaining in various ways.,stops wrestling again and walks him hitting the ball across the court.,makes the winner an sun shots.,gold0-reannot,pos,unl,unl,unl,unl,The man is once again shown to be fighting different men outdoors and he seems to be winning each fight.,\"After this round of fights, the man\"\nanetv_DOONG5zq1Yg,12907,A woman is seen kneeling down on a yoga mat while bending forward. The woman then,moves her leg out in front of her and bends down further creating a stretch.,moves the beam up and down while smiling while moving her arms and speaking to the camera.,flips across the weight and pushes herself sideways into the mat.,lifts up the shoes and displays how to properly secure the mat.,climbs back and fourth on the ground while getting her feet pierced by the screen.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen kneeling down on a yoga mat while bending forward.,The woman then\nanetv_37pwbUp8t1I,9154,Hiphop dancers perform in front of a crowd. They,are all doing the same basic dance and having pictures taken of them.,pose as they do karate dance on the stage.,take pictures of the ballerina burlesque poses.,are joined by other dancers and a large crowd.,bend their interlocked hands.,gold0-orig,pos,pos,pos,pos,pos,Hiphop dancers perform in front of a crowd.,They\nanetv_1gradpCDbPU,2625,A woman is seen bending over a sink with a small child next to her. The woman and child,stick their hands under a sink to wash them off.,swim in more ballet while still speaking to the camera.,begin to pull a bunch of soap from her in a sink and grab things.,play on the floor while many watch on the side.,ride in the water on the shoulders and ends up falling under water.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen bending over a sink with a small child next to her.,The woman and child\nanetv_1gradpCDbPU,2626,The woman and child stick their hands under a sink to wash them off. The woman,dries the girls hands in the end and shows her putting lotion on.,stops again and sprays the dishwasher.,puts the girl in a bowl and plays with the man.,puts soap in his hands and rubs them on her legs and rubbing them on.,wets the bucket with the dishes.,gold0-orig,pos,unl,unl,unl,unl,The woman and child stick their hands under a sink to wash them off.,The woman\nanetv_BdKxwCdax_w,19335,He gets down on his knees and stands on his head. He,moves around in a circle on his head and spins.,plunges his sword into the pod's mouth.,throws the shovel.,mounts his toothbrush and picks up a large wooden shaft.,begins to play the flute.,gold0-orig,pos,unl,unl,unl,pos,He gets down on his knees and stands on his head.,He\nanetv_wFmczV8lv-I,1617,Several other teams approach the bar and they too begin doing the same tricks in their competition. The winner then,begins waving his flag and waving his hand to the crowd.,does the same and fun in the match.,shows and wins javelin dressing.,appears to win more groups afterwards and starts seated.,,gold0-orig,pos,unl,unl,unl,n/a,Several other teams approach the bar and they too begin doing the same tricks in their competition.,The winner then\nanetv_wFmczV8lv-I,1616,\"Another man is shown doing various tricks and flips but instead of being above the bar, he starts out below the bar and comes on the top to do a hand stand before finally flipping off. Several other teams approach the bar and they too\",begin doing the same tricks in their competition.,are able to finish the explains he does this what it's won.,tread small red - colored green balls on their feet.,jumped back and flip backwards onto the mat.,includes the same outfit for the next class.,gold0-orig,pos,unl,unl,unl,unl,\"Another man is shown doing various tricks and flips but instead of being above the bar, he starts out below the bar and comes on the top to do a hand stand before finally flipping off.\",Several other teams approach the bar and they too\nanetv_wFmczV8lv-I,1614,\"A group of gymnast enter front a side of a stadium. Next, a gymnast\",is shown on the bar and does multiple tricks consisting of flips and handstands then flips off to land and walks off.,mounts a beam as she holds up a trampoline for a routine.,jumps across an enclosed log with ramps and tips.,presses his horse in several correct positions and jumps on the pommel horse.,,gold0-reannot,pos,unl,unl,unl,n/a,A group of gymnast enter front a side of a stadium.,\"Next, a gymnast\"\nanetv_wFmczV8lv-I,1615,\"As a man runs near him, a replay is shown of the instances where he messed up and then his score is shown. Another man is shown doing various tricks and flips but instead of being above the bar, he\",starts out below the bar and comes on the top to do a hand stand before finally flipping off.,moves back and forth between his legs and legs while bend over with the hammer in hand with him another.,does this several more times and throws it over the street.,\"stumbles down onto the end, but does not jump off the set.\",returns on the other side of the darkened room looking out the video.,gold0-reannot,pos,unl,unl,unl,unl,\"As a man runs near him, a replay is shown of the instances where he messed up and then his score is shown.\",\"Another man is shown doing various tricks and flips but instead of being above the bar, he\"\nanetv_igwT-3gprOI,1153,A woman is shown talking to the camera with her hands and the camera pointing to a building. She,stands in front of the building doing a several little dances and continues this in front of several buildings and locations.,arm then shown installed on a small table in a red chair and a low ceiling behind it is shown.,pours ingredients onto a counter as well as vinegar.,comments about how to fix the castle by mixing the ingredients.,listed checking it for the same time.,gold0-orig,pos,unl,unl,unl,pos,A woman is shown talking to the camera with her hands and the camera pointing to a building.,She\nlsmdc1031_Quantum_of_Solace-84061,17391,\"He fires towards someone, hitting a woman, then scrambles over a barrier onto the racetrack. The chase\",\"moves through a courtyard, then through a door and upstairs.\",looms at the railing as lightning crashes.,\"stares off as he struggles, his breathing intensifies.\",\"circles around someone's body, as the goat backhands him.\",pulls up beside someone.,gold0-orig,pos,unl,unl,unl,unl,\"He fires towards someone, hitting a woman, then scrambles over a barrier onto the racetrack.\",The chase\nlsmdc1031_Quantum_of_Solace-84061,17402,\"Face set grimly, he is now on the same roof as his target. Someone\",arrives at the top of an empty tower.,\"spars with someone, following him through a web site.\",glances back up the aisle toward someone.,\"hides a bracelet on someone's left breast, and tries to pull the trigger.\",,gold0-orig,pos,unl,pos,pos,n/a,\"Face set grimly, he is now on the same roof as his target.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17393,Someone barges into an elderly woman lifting a crate of fruit on a rope. The crate,crashes to the ground.,bats a bird away as she tosses it across the water.,secures people with their crewmembers blaster.,flips as the woman rinses her hands in both her gloved hands.,opens revealing a notepad full of jars of white powder.,gold1-orig,pos,unl,unl,unl,unl,Someone barges into an elderly woman lifting a crate of fruit on a rope.,The crate\nlsmdc1031_Quantum_of_Solace-84061,17389,Someone crashes through some supports. The roof,starts to cave in on someone.,is covered in cobwebs.,covers the mouth of the truck.,is cracked by the thugs.,,gold0-orig,pos,unl,unl,unl,n/a,Someone crashes through some supports.,The roof\nlsmdc1031_Quantum_of_Solace-84061,17399,\"He jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings. He\",\"bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away.\",\"mutant on a rock wall, several can hit the figure together.\",flips time in the air.,is able runs over landing face one of the back.,looks straight through himself.,gold0-orig,pos,unl,unl,unl,unl,\"He jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings.\",He\nlsmdc1031_Quantum_of_Solace-84061,17398,His quarry is on a roof across from and above him. He,\"jumps down onto a balcony, leaps onto another, and holds himself up on the metal railings.\",hops out of bed and gazes into space.,moves his hand with electric juicer.,throws a swipe card out of the metal keys.,crosses a street filled with gangsters and parks.,gold0-orig,pos,unl,unl,unl,pos,His quarry is on a roof across from and above him.,He\nlsmdc1031_Quantum_of_Solace-84061,17411,Someone also grabs a rope. The two men,\"end up facing each other, dangling on ropes at either end of the steel gantry.\",\"remain stock still, then gets back to him behind the boat.\",look at their four - smooth - evenly books.,manage to get the herd up at the expo.,step out wave to hand.,gold0-orig,pos,unl,unl,unl,pos,Someone also grabs a rope.,The two men\nlsmdc1031_Quantum_of_Solace-84061,17406,Someone grabs his arm and hits out with an elbow. Both,fall through a glass roof and onto a scaffold beneath.,the doors and his teammates run forward to the violent storm.,girls rush up their arms first into the stage.,follow together with their staff.,hit the ball back.,gold0-orig,pos,unl,unl,pos,pos,Someone grabs his arm and hits out with an elbow.,Both\nlsmdc1031_Quantum_of_Solace-84061,17410,\"It swings, knocking over a pane of glass which shatters, sending vicious shards raining down. The rope gantry swings and the crate of bricks\",falls from the other end.,\"running down the staircase, almost into a house of red, cauldron sprinklers.\",plummet as one slips from the sarcophagus.,strikes someone's chest that are severed deafening.,\"fall off, snapping into the air.\",gold1-orig,pos,unl,unl,unl,pos,\"It swings, knocking over a pane of glass which shatters, sending vicious shards raining down.\",The rope gantry swings and the crate of bricks\nlsmdc1031_Quantum_of_Solace-84061,17388,The underground chase is as furious as the race above. Someone,crashes through some supports.,splashes blood on his face while clutching his head.,\"hobbles through, hiding someone's viewpoint.\",keeps his stare fixed down on the three gunmen.,pull someone around trees.,gold0-orig,pos,unl,unl,pos,pos,The underground chase is as furious as the race above.,Someone\nlsmdc1031_Quantum_of_Solace-84061,17395,\"Someone leaps across tiled rooftops, his pursuer following relentlessly. He\",takes a massive leap between buildings.,snaps off the light and runs away.,follows the unconscious body into the shadows behind the glider.,kicks him open as they tour the closed door until someone lands next to her.,urges her to the girl's first door and pivots.,gold0-orig,pos,unl,unl,unl,unl,\"Someone leaps across tiled rooftops, his pursuer following relentlessly.\",He\nlsmdc1031_Quantum_of_Solace-84061,17419,The crowds are dispersing in the Town Square. Police car,makes its way down a crowded.,speeds past the plaza of towering ruins detailing painted o. bears.,is in privet drive passing the palace.,is being driven past with people and doubt.,is stopped and cars start to go outside.,gold1-orig,pos,unl,unl,unl,unl,The crowds are dispersing in the Town Square.,Police car\nlsmdc1031_Quantum_of_Solace-84061,17423,M stands looking out from one of the balconies. Someone,emerges from the range rover and enters through through the building's glass door.,sees someone reach the stage and addresses him.,\", they strut out a door.\",talks to the camera woman.,puts his left foot on the massage rack.,gold0-orig,pos,unl,pos,pos,pos,M stands looking out from one of the balconies.,Someone\nlsmdc1031_Quantum_of_Solace-84061,17385,\"Someone disarms someone and kicks the gun away, then gets booted to the ground. Someone\",goes for the gun and runs off.,pins his handcuffs against a pillar.,lets up off the fire and hurls him into the sky.,\"kicks his palms together again, then stops charging.\",moves his feet beneath a sign that pushes across the street toward the neighborhood.,gold0-orig,pos,unl,unl,unl,unl,\"Someone disarms someone and kicks the gun away, then gets booted to the ground.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17408,\"Hanging by one hand, someone tries to pull down the scaffolding beneath his adversary. Someone\",falls but grabs onto a rope.,tapes him up with an oar.,emerges from the back of a white plane model.,feels his way down his chin.,\"glances at someone, then closes it.\",gold0-orig,pos,unl,unl,unl,unl,\"Hanging by one hand, someone tries to pull down the scaffolding beneath his adversary.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17415,\"Leg caught in a rope, someone plummets, but is stopped just before hitting the ground near the gun. The gantry\",\"turns, moving someone away from the gun, and pulling someone off the scaffold.\",is submerged and lands on a passing rope on the back of the ship.,brings a slight smile.,is hauled into someone 'back.,ducks as the three creatures glow behind them.,gold0-orig,pos,unl,unl,unl,unl,\"Leg caught in a rope, someone plummets, but is stopped just before hitting the ground near the gun.\",The gantry\nlsmdc1031_Quantum_of_Solace-84061,17397,\"He lands, slides down the tiles, then jumps again, landing heavily on a ledge. His quarry\",is on a roof across from and above him.,catches a glimpse of the rat someone.,focuses on a file pipes as someone fires.,focused on their back and face!,,gold0-orig,pos,unl,unl,unl,n/a,\"He lands, slides down the tiles, then jumps again, landing heavily on a ledge.\",His quarry\nlsmdc1031_Quantum_of_Solace-84061,17422,A black Range Rover arrives at a high - rise block of flats. M,stands looking out from one of the balconies.,swings the car skyward and falls.,\"sign reads, muslim meat, a servant mark a bar over three tables.\",\"bus adjusts the altitude, revealing a celebrated district, which is pinned to the front of the race track.\",sleek smooth roadway winds up.,gold0-orig,pos,unl,unl,unl,unl,A black Range Rover arrives at a high - rise block of flats.,M\nlsmdc1031_Quantum_of_Solace-84061,17387,\"Someone pounds down spiral stairs and into water at the base of a tower, then dives through an iron gate. Someone\",ignores the stairs and takes a flying leap after him.,storms over a railing then activates a handle.,gazes off in a bright light.,fills a little brass cup with someone and surrounds it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone pounds down spiral stairs and into water at the base of a tower, then dives through an iron gate.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17390,\"Amidst the tears and celebrations, someone emerges from a manhole. Someone\",barges his way through the throng.,\"flies out of the fireplace and rolls over, clinging to him, still keeping him on his hands.\",removes his vision and crouches to remove his hood.,\"stops outside and sees someone running across the street military - green, paces.\",watch her friend for an moment.,gold0-orig,pos,unl,unl,unl,pos,\"Amidst the tears and celebrations, someone emerges from a manhole.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17421,\"Blood stains the cellar floor, but the prisoner, someone, is gone. Someone\",stares dispassionately at the scene.,responds with effort to raise his hopes.,\"opens the present, revealing someone.\",wipes his tray with a towel.,turns around them unable to see him.,gold0-orig,pos,unl,unl,unl,pos,\"Blood stains the cellar floor, but the prisoner, someone, is gone.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17417,\"The rogue agent lands on a scaffold tower, as someone pulls at the rope around his leg. He\",climbs for a gun on the scaffold.,holds his wrists at his side for the first time.,pulls the curtain aside.,passes to a female officer sprinting up the ramp to the freeway.,stares calmly as a bearded guard exits the frame.,gold0-orig,pos,unl,unl,unl,unl,\"The rogue agent lands on a scaffold tower, as someone pulls at the rope around his leg.\",He\nlsmdc1031_Quantum_of_Solace-84061,17416,\"The gantry turns, moving someone away from the gun, and pulling someone off the scaffold. The rogue agent\",\"lands on a scaffold tower, as someone pulls at the rope around his leg.\",screws his face into his hands and starts to run away.,\"directs someone to the ground, firing as she staggers forward.\",is holding a bag of weapons as he bends slammed.,hurls it down the side of the train and goes out the other way.,gold0-orig,pos,unl,unl,unl,pos,\"The gantry turns, moving someone away from the gun, and pulling someone off the scaffold.\",The rogue agent\nlsmdc1031_Quantum_of_Solace-84061,17412,\"The two men end up facing each other, dangling on ropes at either end of the steel gantry. They\",\"trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof.\",walk down onto a ledge and suddenly fall from the retreating figures.,\"stand in a line, cut - dumbly by a emotion.\",run through people bouncing nearby.,hold their legs up as they all swim.,gold0-orig,pos,unl,unl,unl,unl,\"The two men end up facing each other, dangling on ropes at either end of the steel gantry.\",They\nlsmdc1031_Quantum_of_Solace-84061,17404,He leaps for a flight of steps dislodging recently. Someone,follows and fires as the double agent runs out of sight.,turns the bolt upside down.,runs to open the planks.,grins at the alien as he huddles over someone.,,gold1-orig,pos,unl,unl,pos,n/a,He leaps for a flight of steps dislodging recently.,Someone\nlsmdc1031_Quantum_of_Solace-84061,17407,Both fall through a glass roof and onto a scaffold beneath. Someone's gun,falls to the floor far below.,trails into his side as an older man leaps around him.,\"remains fixed on it, then turns back to the caboose.\",steps off the floor as bullets explode around him.,drops into a cannon.,gold0-orig,pos,unl,unl,unl,unl,Both fall through a glass roof and onto a scaffold beneath.,Someone's gun\nlsmdc1031_Quantum_of_Solace-84061,17409,Someone falls but grabs onto a rope. It,\"swings, knocking over a pane of glass which shatters, sending vicious shards raining down.\",sails in the sky.,pulls up outside the pier and pulls into the royal harbor.,sneaks up back to a wounded someone.,crawls toward the dark - haired thug.,gold0-orig,pos,unl,unl,unl,unl,Someone falls but grabs onto a rope.,It\nlsmdc1031_Quantum_of_Solace-84061,17413,\"They trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof. Someone\",falls onto the scaffold.,leans amongst the rocks.,see his approaching flushing camera.,steps onto a stone bridge then slips under a invisibility cloak.,,gold0-orig,pos,unl,unl,unl,n/a,\"They trade blows and smash into a scaffold which topples over, pulling on the rope, hauling them into the glass roof.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17414,\"Someone falls onto the scaffold. Leg caught in a rope, someone\",\"plummets, but is stopped just before hitting the ground near the gun.\",jumps and aims his rifle.,flies down the ladder to the airlock.,approaches someone in a treading full of white lines.,jumps to the edge of the pool who tumbles above obstacles.,gold0-orig,pos,unl,unl,unl,unl,Someone falls onto the scaffold.,\"Leg caught in a rope, someone\"\nlsmdc1031_Quantum_of_Solace-84061,17396,He takes a massive leap between buildings. He,\"lands, slides down the tiles, then jumps again, landing heavily on a ledge.\",launches into a larger forest.,\"looks down at the ceiling, mesmerized by the spectators.\",skipping along a walkway overlooking a small suburban pool.,,gold0-reannot,pos,unl,unl,unl,n/a,He takes a massive leap between buildings.,He\nlsmdc1031_Quantum_of_Solace-84061,17401,\"He gets to his feet and jumps from the vehicle onto another ledge, then shins off a drainpipe. Face set grimly, he\",is now on the same roof as his target.,struggles to find himself down by the lowering hatch and grinds up the spout of the blades.,kicks someone over his back and she knocks his abdomen.,steps back into the clearing.,\"tries to creep up the front walkway, leaving someone alone on the street.\",gold1-reannot,pos,unl,unl,pos,pos,\"He gets to his feet and jumps from the vehicle onto another ledge, then shins off a drainpipe.\",\"Face set grimly, he\"\nlsmdc1031_Quantum_of_Solace-84061,17405,\"Someone pulls on the bell ropes, then heads up to the belfry, gun up and ready. Someone\",grabs his arm and hits out with an elbow.,\"talks to our mother; several people stand around him, putting each arms in a line.\",skulks through the streets and shows off where he comes back.,\"takes out his hand, sets it down the box and checks someone's stall.\",comes out from the hall and dances behind the instructor.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone pulls on the bell ropes, then heads up to the belfry, gun up and ready.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17420,\"Police car makes its way down a crowded. Covered in dust, someone\",strides through the crowds towards the wooden gate in the tunnel.,\"looks around, blinking images of people.\",seems irritated and walks out of the room.,emerges from the steel breastplate.,cycles past to find someone lying in the back seat.,gold1-reannot,pos,unl,unl,unl,pos,Police car makes its way down a crowded.,\"Covered in dust, someone\"\nlsmdc1031_Quantum_of_Solace-84061,17400,\"He bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away. He\",jumps from a window onto the roof of a bus.,shows three clearance names on the wall.,reflects on him as he enters.,\"pours in the figure of someone, and smokes the joint.\",watches as a heavyset thief picks up a dog that pushes past him.,gold0-reannot,pos,unl,unl,unl,unl,\"He bursts into a room, runs through the apartment and sees someone climbing onto another roof a short distance away.\",He\nlsmdc1031_Quantum_of_Solace-84061,17418,He climbs for a gun on the scaffold. Someone,'s trying to reach the one on the ground.,\"turns to see someone walking on the ladder, his head off.\",leaps closer and leaps onto the back of the plane.,bashes back at the dead boy and moves away from his canvas.,nods and takes someone's book.,gold0-reannot,pos,unl,unl,unl,pos,He climbs for a gun on the scaffold.,Someone\nlsmdc1031_Quantum_of_Solace-84061,17384,\"As m goes down, the horse race starts. Someone\",leaps on the man and grabs the gun.,brings out its hand.,stops clearing the tops of the bushes beneath the sign.,leans her fist over the back of the huge ark.,gives the body to the man and goes.,gold0-reannot,pos,unl,unl,unl,unl,\"As m goes down, the horse race starts.\",Someone\nlsmdc1031_Quantum_of_Solace-84061,17394,The crate crashes to the ground. Someone,\"leaps across tiled rooftops, his pursuer following relentlessly.\",is dragged free from a cart.,sets up bird finger and shakes it in.,hurls it into a gas tank from the corner of it.,braces herself on the gurney with the rule stuck in.,gold0-reannot,pos,unl,unl,unl,unl,The crate crashes to the ground.,Someone\nlsmdc1031_Quantum_of_Solace-84061,17392,\"The chase moves through a courtyard, then through a door and upstairs. Someone\",barges into an elderly woman lifting a crate of fruit on a rope.,hurries into a cozy living room and grabs a blanket off the sofa.,lands back in his cage.,places the phone on the handcuffs of his wand.,\"covers his face with his hand, glancing lovingly at his uncle, videotaping.\",gold0-reannot,pos,unl,unl,unl,pos,\"The chase moves through a courtyard, then through a door and upstairs.\",Someone\nanetv_wHRHS7_4J_s,17605,A young girl is seen standing ready looking down at a violin. The girl,is then seen playing the violin while moving her hands up and down.,kicks one out and raises it into the blindfold and then kicks it on the crowd.,waves her hands around then begins playing a flute.,continues playing while speaking to the camera.,begins playing the violin for another camera.,gold1-orig,pos,unl,unl,pos,pos,A young girl is seen standing ready looking down at a violin.,The girl\nanetv_wHRHS7_4J_s,17606,The girl is then seen playing the violin while moving her hands up and down. The girl,continues playing the instrument and ends by looking to the camera.,continues spinning around and finishes moving while holding up the drumsticks.,ends and continues to play the guitar on her hands to end the music.,continues playing and ending with her.,continues dancing around and ends with the camera walking around and continuing to play her violin.,gold0-reannot,pos,unl,unl,pos,pos,The girl is then seen playing the violin while moving her hands up and down.,The girl\nanetv_71vVRQ4l8OI,3376,Several older men man runs into frame to check on the gymnast in back while the man on the bars continues his routine. The athlete,does a back flip and finishes his routine while several others run into frame.,\"dismounts, jump on the bar, and drops the rope all over the mat.\",\"lassos of the trainer ropes, misses and lands on one knee before jumping up.\",\"continues playing, practicing - stilts in and out of frame.\",completes his routine when he zooms over a training field.,gold1-orig,pos,unl,unl,unl,pos,Several older men man runs into frame to check on the gymnast in back while the man on the bars continues his routine.,The athlete\nanetv_71vVRQ4l8OI,3375,A gymnist is seen pushing himself up onto a set of uneven bars while several other people watch on the sidelines as well as perform. Several older men man,runs into frame to check on the gymnast in back while the man on the bars continues his routine.,jumps and kicks several times as well as watching on the side.,shown hitting the ma and bouncing by swinging around tuning one another.,are shown pounding the wood doing tricks and jumping off their arms and hanging free cloaks.,,gold0-orig,pos,unl,unl,unl,n/a,A gymnist is seen pushing himself up onto a set of uneven bars while several other people watch on the sidelines as well as perform.,Several older men man\nanetv_qPZwXF1Xcpw,13593,\"The camera pans over a grass field surrounded by a track, with people doing indistinct things in the background. A man\",is shown engaging in shot put.,is demonstrating features to put an instruction website on his laptop.,is shown walking in front of a large bookshelf and showing how to edge it up.,stands with the man in red and shows the skateboard.,,gold0-orig,pos,unl,unl,pos,n/a,\"The camera pans over a grass field surrounded by a track, with people doing indistinct things in the background.\",A man\nanetv_qPZwXF1Xcpw,13594,A man is shown engaging in shot put. Judges,measure the man's throw.,move hoop up another ceiling of the room.,file down on papers.,are shown practicing to demonstrate but hit the ball directly and do it again.,,gold0-orig,pos,unl,unl,unl,n/a,A man is shown engaging in shot put.,Judges\nanetv_qPZwXF1Xcpw,13595,Judges measure the man's throw. The audience,is shown clapping as the man receives congratulations from people nearby.,crazily waits for her together and breaks to dance quite several times.,holds the trophy ring as the camera spins around.,closes and claps while moving on a swing set.,is lifted up to see people standing at the end.,gold0-orig,pos,unl,unl,unl,pos,Judges measure the man's throw.,The audience\nanetv_L0QdLXym4F4,15772,The jumps down at the end of the monkey bars and then jumps up and down and gives a high five to the excited woman filming her. The lady behind the camera then,walks over and pans to the little boy who is now at the monkey bars and holds a conversation with him.,climbs out of her car to jump from the open onto the balcony and goes down the sidewalk.,jumps back in her arms and throws the pinata.,\"performs many routine, and shows while finishing her routine.\",\"begins jumping in a rope and orange jumps, and jumping to the camera again and again jumping in the water with other people.\",gold0-orig,pos,unl,unl,unl,unl,The jumps down at the end of the monkey bars and then jumps up and down and gives a high five to the excited woman filming her.,The lady behind the camera then\nanetv_L0QdLXym4F4,15771,A lady is filming a girl and a boy who are outdoors at a park playground. The young girl,hangs an goes across the monkey bars using her arms while the young boy stands behind rails and watches.,is holding up the camera and dancing her little girl with her finger in the air.,is on the rake at the playground.,\"stretches, trying to prevent the boy from kicking her swinging.\",stands on monkey bars and starts swinging back and forth.,gold0-orig,pos,unl,unl,unl,unl,A lady is filming a girl and a boy who are outdoors at a park playground.,The young girl\nanetv_5R3h6lxne90,13854,Another news anchor also talks about the same lenses and how it has become a dangerous trend among teenagers. The lady news anchor,comes back with the male news anchor to continue the program.,reports on how to prepare the camera.,talks and the woman shows how she folded a part of the braiding.,talks how to talk about what you will need.,,gold0-orig,pos,unl,pos,pos,n/a,Another news anchor also talks about the same lenses and how it has become a dangerous trend among teenagers.,The lady news anchor\nanetv_5R3h6lxne90,13849,\"There are two news anchors, a lady and a gentleman both dressed in black presenting a news section. The lady\",is holding two small cards in her hands as she talks about the product to the viewers.,continues dancing and begins how to tear off the ice from the mans feet.,stands in a short cage while talking and then across to the audience dressed in a red shirt.,teaches the person to guide her.,,gold1-orig,pos,unl,unl,unl,n/a,\"There are two news anchors, a lady and a gentleman both dressed in black presenting a news section.\",The lady\nanetv_5R3h6lxne90,13853,There's a commercial shown where the same lenses are worn by several people to show how it can be used. a doctor in a lab coat,\"talks about the lenses too, while people are showing how to use them.\",uses a cloth to cleans the cheeks of the dog.,is talking in front of a washing machine while a woman is sitting beside him.,is entering a shop and gardening in front of a large door.,is standing on a tight rope in a gym area using small handles.,gold0-orig,pos,unl,unl,unl,unl,There's a commercial shown where the same lenses are worn by several people to show how it can be used.,a doctor in a lab coat\nanetv_5R3h6lxne90,13851,\"There is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes. They\",are talking and discussing about the lenses and how it works.,are placed around each and take off some contact makeup.,is also shown in a table sitting on black contacts.,are now applying resistance for being in a construction site.,,gold0-orig,pos,unl,unl,unl,n/a,\"There is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes.\",They\nanetv_5R3h6lxne90,13852,They are talking and discussing about the lenses and how it works. There,'s a commercial shown where the same lenses are worn by several people to show how it can be used.,are various exercises about their actions and flooding back thoroughly.,has been numerous memories of times in different places.,injury are listed at time's time.,has a white mask on its hand.,gold0-orig,pos,unl,unl,unl,unl,They are talking and discussing about the lenses and how it works.,There\nanetv_5R3h6lxne90,13850,The lady is holding two small cards in her hands as she talks about the product to the viewers. There,\"is another lady seated on a table along with two other women, demonstrating how to wear colored lenses in eyes.\",sits on a bike with fronts.,in the middle the video begins to make.,laughs and holds the camera.,are shown on more people posing.,gold0-orig,pos,unl,unl,unl,unl,The lady is holding two small cards in her hands as she talks about the product to the viewers.,There\nanetv_vw065HaGq3I,16606,A friend combs the woman's long hair. A friend,braids the woman's hair while she sits.,attempts to tear hair.,swigs from iron woman's hair.,braids the braids with her hair like a stick.,pushes a black hair aside.,gold1-orig,pos,unl,unl,unl,pos,A friend combs the woman's long hair.,A friend\nanetv_vw065HaGq3I,16603,A woman stands in front of a vanity mirror and brushes her hair. The woman stands up from a chair and her hair,flows over the backrest.,is shown in one hand.,has become poured on the camera.,begins to tap into wall.,spins and sprays after the mirror.,gold1-orig,pos,unl,unl,unl,unl,A woman stands in front of a vanity mirror and brushes her hair.,The woman stands up from a chair and her hair\nanetv_vw065HaGq3I,5586,A woman with a very long black hair is combing her hair in front of the mirror. She,stands up from a orange chair showing her very long hair and put something on the window.,holds her and tight on her hair.,continues brushing her hair using a long razor.,finishes with the ball before her ball and a woman runs over.,is wearing a pink top and pink sandals brushing her teeth.,gold0-orig,pos,unl,unl,unl,unl,A woman with a very long black hair is combing her hair in front of the mirror.,She\nanetv_vw065HaGq3I,16604,The woman stands up from a chair and her hair flows over the backrest. The long hair,is tied up into a bun.,is presented with a pink comb attached to a man's hair.,has straggly blonde hair from her top standing in front of the camera.,\"shows a bun of red, haircut and bangs.\",,gold0-orig,pos,unl,unl,pos,n/a,The woman stands up from a chair and her hair flows over the backrest.,The long hair\nanetv_vw065HaGq3I,16605,The long hair is tied up into a bun. A friend,combs the woman's long hair.,is now at a table resting along the edge of the car with other people come out.,grabs a board and tosses it into a boat.,is wears flags in seated major.,takes a plastic brush of tears with her hands as she sprays iron lotion on her hair.,gold0-orig,pos,unl,unl,unl,pos,The long hair is tied up into a bun.,A friend\nanetv_vw065HaGq3I,5587,She stands up from a orange chair showing her very long hair and put something on the window. Another person,\"starts to fix, comb and braid her very long hair.\",is shown driving down a table using the pedals as she sprawls across.,is seen painting it on a hair holder that is applying itself to the man's hair.,is seen standing in a lit line while looking around with a really pretty pose.,is seen boxing in a gym with flips and continues playing.,gold0-reannot,pos,unl,unl,unl,unl,She stands up from a orange chair showing her very long hair and put something on the window.,Another person\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18797,\"Near a lake, he stops and quickly dismounts. He\",takes off his top hat and starts to undo his coat.,lifts the wooden man hands up beneath times onto the ground as he swings around the dial.,\"stares at this, then realizes he is going to move in toward it.\",forms a forearm over a veteran's uniform.,,gold0-orig,pos,unl,pos,pos,n/a,\"Near a lake, he stops and quickly dismounts.\",He\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18796,\"Then suddenly, he sets the horse in motion again and gallops onwards. Near a lake, he\",stops and quickly dismounts.,finds someone's suv.,springs out of the beat as he is spinning.,cuts through small pieces of abandoned plants.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then suddenly, he sets the horse in motion again and gallops onwards.\",\"Near a lake, he\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18813,She turns to see someone striding out of the woods towards her. Someone,stops dead in his tracks.,touches someone's jaw and backs away.,\", someone gets her purse, grinding a blade into her belly, then hands it to her.\",kisses the horses legs and leads her into the carriage.,and a gypsy watch from the lawn.,gold0-orig,pos,unl,unl,unl,pos,She turns to see someone striding out of the woods towards her.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18810,His groom leads the horse behind him. The groom,\"goes off in one direction, someone in the other.\",\"walks toward his birthday party, beside the family members going back on etc in bunches of geese.\",looks out a mirror as a small nurse hurriedly exits the water with ease.,cups his hands in his hands.,moves slowly along the street as the bride keeps his eyes on the child catch between the still vegetation.,gold1-orig,unl,unl,unl,unl,unl,His groom leads the horse behind him.,The groom\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18802,\"It's a likeness of someone, staring proudly out at them. Outside, someone\",has now taken off his frock coat.,notices another lying leaning against a roof.,stands on a site.,runs a finger along his nose.,\"sprints along with a furrowed brow, then heads away.\",gold1-orig,pos,unl,unl,pos,pos,\"It's a likeness of someone, staring proudly out at them.\",\"Outside, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18798,\"Inside, the tour of someone continues. The housekeeper\",\"leads them into a magnificent long hall, lined with paintings on one side and windows on the other.\",closes in throughout the reverend.,navy letters and the bus runs into scene.,opens a pair of.,,gold0-orig,pos,unl,unl,unl,n/a,\"Inside, the tour of someone continues.\",The housekeeper\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18800,She stops in front of one of the paintings. Someone,gazes up at the portrait.,sings in the mirror before her.,demonstrates how to study the letter.,eyes the pole and flaps her fingers like a bug.,is beating things down again.,gold0-orig,pos,unl,unl,unl,unl,She stops in front of one of the paintings.,Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18804,\"Then he unbuttons his waistcoat and slips it off. Inside, someone\",is still gazing up at his portrait.,lies prone on the rope with his head hung painfully.,\"places the alien in the chest, blown out the last piece of the cheroot, and bats it along with the probe.\",shuffles down a barbell with blood on his hands.,shuffles into a recess across the desk to find someone slumped on the desk.,gold1-orig,pos,unl,unl,unl,unl,Then he unbuttons his waistcoat and slips it off.,\"Inside, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18803,\"He lays it on the grass, sits on it, and undoes his cravat. Then he\",unbuttons his waistcoat and slips it off.,grabs the rake again and leaves the yard raking the lawn into it.,dabs the wax onto his face to protect his face.,starts after the doors of the pursuing drawn.,puts his foot back down before complete the ground.,gold0-orig,pos,unl,unl,unl,unl,\"He lays it on the grass, sits on it, and undoes his cravat.\",Then he\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18812,\"Someone is also making her way down to the lake, lost in thought. She\",turns to see someone striding out of the woods towards her.,\"approaches a smartly dressed man, who stands in a sitting room of a drawing room.\",\"falls out suddenly night at night, is a deep pale and flannel orange dress.\",walks down the back of the cafe.,\"tries to regain her composure, then gives a knowing smile.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone is also making her way down to the lake, lost in thought.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18794,\"Astride it is someone, dressed elegantly in top hat and frock coat. Bringing the horse to a halt, he\",\"stares from the hilltop, over at someone, which can just be glimpsed through the trees.\",\"takes off her pale green dress, revealing no coat.\",\"speaks to the steward as his hand gently crunches the barge, holding them untouched.\",goes down the aisle and approaches the row of men home in wrought - iron bar.,,gold1-orig,pos,unl,unl,pos,n/a,\"Astride it is someone, dressed elegantly in top hat and frock coat.\",\"Bringing the horse to a halt, he\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18811,\"He makes his way down the hill, towards the large lake fronting someone, its classic lines reflected in the still waters. Someone\",\"is also making her way down to the lake, lost in thought.\",'s friends exit the gallery.,reaches up and grabs something inside as someone falls back across his board.,looks at someone as he sneezes softly.,,gold0-orig,pos,unl,unl,pos,n/a,\"He makes his way down the hill, towards the large lake fronting someone, its classic lines reflected in the still waters.\",Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18799,\"The housekeeper leads them into a magnificent long hall, lined with paintings on one side and windows on the other. She\",stops in front of one of the paintings.,picks up the phone and looks at someone's letter.,crouches up to someone.,peeks through the anteroom to the other team.,,gold0-orig,pos,unl,unl,pos,n/a,\"The housekeeper leads them into a magnificent long hall, lined with paintings on one side and windows on the other.\",She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18806,\"Steeling himself, he dives in. He\",\"plunges down into the murky, green waters, then begins to swim with long, effortless strokes.\",\"hears, screams, gets rough.\",goes to the window.,leaps over the railing and runs.,,gold0-orig,pos,unl,unl,unl,n/a,\"Steeling himself, he dives in.\",He\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18809,\"Someone is striding towards someone, his wet shirt clinging to his broad chest. His groom\",leads the horse behind him.,now is neatly trimmed of dogs grooming their seats.,is standing at prince beach.,turns a handful of bugs off stares.,briefly straightens the vamp as he waits chewing on the bill.,gold1-orig,pos,unl,unl,unl,unl,\"Someone is striding towards someone, his wet shirt clinging to his broad chest.\",His groom\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18801,Someone gazes up at the portrait. It,\"'s a likeness of someone, staring proudly out at them.\",wedges her wand into her father's stomach.,is now changed into starting state.,sees two guards mounted in the panels of someone empire.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gazes up at the portrait.,It\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89639,18795,\"Bringing the horse to a halt, he stares from the hilltop, over at someone, which can just be glimpsed through the trees. He\",\"breathes deeply, as if trying to come to a decision.\",can not see someone and not see her.,reluctantly lowers the ball and stands as he holds it to the back of the boat.,\"has climbed and someone, carry their baby and carry him away as someone continues to the cottage.\",\"grabs his arm and tumbles from the adjoining stall, cracks his leg, as they wade towards the ice.\",gold0-reannot,pos,unl,unl,unl,unl,\"Bringing the horse to a halt, he stares from the hilltop, over at someone, which can just be glimpsed through the trees.\",He\nlsmdc0033_Amadeus-66973,2237,They tug and pat him. But he has eyes for only one man - he,\"looks about him, searching for him and then finds him.\",can barely stand up.,\"gathers himself pack, and leans back with his hands and aims.\",points at his feet.,holds him by the mouth.,gold0-orig,pos,unl,unl,unl,unl,They tug and pat him.,But he has eyes for only one man - he\nlsmdc0033_Amadeus-66973,2232,\"Someone, in a mythological Persian costume, is bowing to the rapturous throng; below her is someone. We\",\"see people, all applauding.\",\"join a close - up stone, in spanish.\",are a dancer concentrating on he's defiant.,spots the oriental boy entering out of a door in a spanish marching suit in a dimly lit plaza.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, in a mythological Persian costume, is bowing to the rapturous throng; below her is someone.\",We\nlsmdc0033_Amadeus-66973,2235,\"Someone, smiling adoringly, gives him a deep curtsey, and he raises her up. All\",want to shake his hand.,has to make up.,\"lowers his head and looks at someone, then stares up at her as she kisses him.\",\"lowers his stare, lowers his eyes, and retreats.\",\"dance down a corridor, making a beeline for her.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone, smiling adoringly, gives him a deep curtsey, and he raises her up.\",All\nlsmdc0033_Amadeus-66973,2233,\"We see people, all applauding. Behind him, seated,\",are someone and the three girls we saw before in someone's apartment.,see a marching band and run from the field.,\"is on the table next to someone conference - old cellophane paper, open - talking about something meeting outdoors.\",play with his father's lap.,\"sing, from his woolen hat.\",gold0-orig,pos,unl,unl,unl,unl,\"We see people, all applauding.\",\"Behind him, seated,\"\nlsmdc0033_Amadeus-66973,2234,\"Someone places the chain around his neck. Someone makes to kiss his hand, but someone\",\"restrains him, and passes on.\",cups his head on someone's shoulder.,does not draw him back.,fights back so she starts to strap the gun and chains at his neck.,can't take her eyes off him.,gold0-reannot,pos,unl,unl,unl,pos,Someone places the chain around his neck.,\"Someone makes to kiss his hand, but someone\"\nlsmdc0033_Amadeus-66973,2236,All want to shake his hand. They,tug and pat him.,take her coins from each other and embrace each other.,go to claim cliff top.,tentatively get down two stairs and begin to leave the bar.,,gold0-reannot,pos,unl,unl,pos,n/a,All want to shake his hand.,They\nanetv_aFdYbgmbOeY,15050,\"Someone grabs a rubix cube off of their desk and begin to solve it. They are moving so fast, they\",put it down for a split second.,zoom out from the chair over the end.,\"trudge at the opposite side, on either side in filing wallpaper that bounce under the water.\",joust the whole time as they proceed into the living room.,didn't solve the rubix cube by trying to get it into the end.,gold0-reannot,pos,unl,unl,unl,pos,Someone grabs a rubix cube off of their desk and begin to solve it.,\"They are moving so fast, they\"\nanetv_aFdYbgmbOeY,15051,\"They are moving so fast, they put it down for a split second. They\",\"pick it back up quickly and get back to it, moving so fast again.\",jumps out of the bus line.,and then they pull back.,returns to its starting position to celebrate.,ended in slow motion.,gold0-reannot,pos,unl,unl,unl,unl,\"They are moving so fast, they put it down for a split second.\",They\nanetv_CSDApI2nHPU,4156,A camera pans around a room and leads into a woman washing dishes in a sink. She,continues washing the dishes and laughing to the camera.,continues taking out the rag and shows pictures as well as her.,\"is also showing high dishes, riding dishes and pans over to the girl as he speaks.\",uses a wiper to wash her face while speaking to the camera and continuing to wash the dishes.,,gold0-orig,pos,unl,unl,unl,n/a,A camera pans around a room and leads into a woman washing dishes in a sink.,She\nanetv_MHo5kioyrFM,18570,A person walks into frame speaking to the camera and holding up a box and various tools. She then,begins wrapping the box with a bow.,begins to cut small pieces with black tape.,cuts parts of the bush with the tool and wipes them down.,lays down on the machine and continues ironing.,,gold1-orig,pos,unl,unl,unl,n/a,A person walks into frame speaking to the camera and holding up a box and various tools.,She then\nanetv_MHo5kioyrFM,18571,She then begins wrapping the box with a bow. She,continues wrapping and speaking to the camera.,moves the end of a house paper and starts to take it from her hands.,swings the parchment adorned holding the spoon and then cuts the wood with a nice size.,slips the wrapping paper into the pumpkin and cuts the paper.,laughs more and sticks out her tongue.,gold0-orig,pos,unl,unl,unl,unl,She then begins wrapping the box with a bow.,She\nanetv_MHo5kioyrFM,17013,Several baskets are seen sitting on the followed by a woman stepping into frame and holding up the boxes while speaking to the camera. She,holds up several more objects and then wraps a bow around the box and presents it in the end.,pushes the mop through and yells to the woman and continues to speak to the camera.,see the girl talking while climbing the horse speaking in the end as well as shots of her climbing out while riding on bulls.,points to the floor as well as close ups of her crunches and continues spinning.,continues speaking and ends with text explaining the process.,gold0-orig,pos,unl,unl,unl,pos,Several baskets are seen sitting on the followed by a woman stepping into frame and holding up the boxes while speaking to the camera.,She\nlsmdc3056_PUBLIC_ENEMIES-2961,844,\"Someone stands and holds her chair as she gets up. Now, they\",face a coat check counter.,ride in the passenger compartment.,\"approach a building, drinks about a dozen among the beautiful, arched hillside.\",join his daughter while the blonde sleeps on a sofa.,apparate on a rooftop.,gold1-reannot,pos,unl,unl,unl,unl,Someone stands and holds her chair as she gets up.,\"Now, they\"\nanetv_NfjeG6AsoJA,13360,Kids are swingin in the swing on a side. little kid,stands on the edge of the slide.,takes the rod from the monkey bars and collects them on the playground.,is holding two cats.,is standing in front of the couch talking in front of a jump track.,mikan get stuck in the slide.,gold1-reannot,pos,unl,unl,unl,pos,Kids are swingin in the swing on a side.,little kid\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11563,\"The thug collapses and someone finishes him off. Inside, someone\",\"reaches the top and hurries on to the roof, with his pistol aimed.\",turns to his friend.,finds someone amid the rubble.,scans his apartment with a sad smile.,,gold0-orig,pos,pos,pos,pos,n/a,The thug collapses and someone finishes him off.,\"Inside, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11547,\"Inside, the hoses continue releasing gas. As the bald thug fires, someone\",tosses a grenade to his dad.,sneaks up at his fallen mother.,reaches for his wand.,presses her knuckles to the control panel.,tackles someone and blows him flying.,gold1-orig,pos,unl,unl,unl,unl,\"Inside, the hoses continue releasing gas.\",\"As the bald thug fires, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11560,\"Someone continues sprinting up the stairs, as someone climbs into the cargo hold. He\",crawls forward with a pistol in his hand.,pauses to join the graveyard owner.,\"stands on his escape, breathless.\",puts his sailboat through another wave.,steps away and squats down beside her.,gold1-orig,pos,unl,unl,unl,pos,\"Someone continues sprinting up the stairs, as someone climbs into the cargo hold.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11545,\"Someone waves a hand signal to his son. Outside, someone\",hurries up the helicopter's loading ramp.,spots a boy in a suit.,sees someone dance on people's gathered swimming ground.,holds a palm chart show a card on a desk and a uniformed guard guard squats down and enters a suv.,,gold0-orig,pos,unl,unl,unl,n/a,Someone waves a hand signal to his son.,\"Outside, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11541,The gunfire pins them down and someone scampers across the room. Someone,\"quickly fires, then retracts behind a cement pillar.\",falls into the water.,throws blood for someone!,tries to bellows poison under him.,,gold0-orig,pos,unl,unl,unl,n/a,The gunfire pins them down and someone scampers across the room.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11544,Someone runs off as someone fires. Someone,waves a hand signal to his son.,leaps from the elevator's roof and races into the office.,walks up and touches it.,grabs her wand with both hands and strikes a tree.,picks up the gas nozzle and flings him at the metal enclosure.,gold1-orig,pos,unl,unl,unl,unl,Someone runs off as someone fires.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11555,Someone sprints up the stairs as his father exits the building. Someone,sees the helicopter still on the ground.,listens to the phone and drives his sword above his head.,watches someone advance then comes to his stop.,leads a porter onto the street and grabs someone's jacket.,\"sidles over the balcony railing, lifting his shoulders.\",gold0-orig,pos,unl,unl,unl,pos,Someone sprints up the stairs as his father exits the building.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11540,They take cover as the bald thug pops out. The gunfire pins them down and someone,scampers across the room.,speeds up after them.,bounces heavily before dropping the rocket landing on her arm.,tumbles out of his car.,joins the other man.,gold0-orig,pos,unl,unl,pos,pos,They take cover as the bald thug pops out.,The gunfire pins them down and someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11543,\"Someone shoots quick bursts around the pillar and his father joins in. Emptying his clip, someone\",tosses his rifle aside.,pushes the calendar on them.,grabs someone's wand from its position.,cuts to sir someone who blocks them.,finds herself at the military overlook with empty shadows.,gold0-orig,pos,unl,unl,unl,unl,Someone shoots quick bursts around the pillar and his father joins in.,\"Emptying his clip, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11552,He grabs a weapon beside one of his dead men. Someone,rips off his jacket and pulls a pistol from his waistband.,rides up to the tree in the sleeping quarters.,watch with his deaf ear.,\"looks alarmed, as someone drives and runs through a meadow area.\",,gold0-orig,pos,unl,unl,pos,n/a,He grabs a weapon beside one of his dead men.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11536,\"Someone head - butts someone, then quickly pulls him back in. He\",shoves the old man toward the entrance.,juggles a rope suspended around his neck.,glances at someone who stares at someone's posts.,pierces his armpit off someone's neck.,\"turns, leaving someone alone in the sand.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone head - butts someone, then quickly pulls him back in.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11565,\"He grabs the steel handle and tugs. Stepping back, someone\",aims at the door.,puts his lips on the door of the tank.,takes an step out and pulls off his stick.,struggles to free the bags car.,puts his hood back on.,gold0-orig,pos,unl,unl,unl,pos,He grabs the steel handle and tugs.,\"Stepping back, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11556,\"Someone sees the helicopter still on the ground. Shielding his face, he\",rushes toward the loading ramp as the rotor intensifies.,looks at someone's stoic features and nods his head.,goes to her and starts down the stairs.,turns to watch someone and his agents run for the boat.,\"puts the weapon around someone's chest, then heads up a grassy ditch.\",gold0-orig,pos,unl,unl,unl,unl,Someone sees the helicopter still on the ground.,\"Shielding his face, he\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11551,\"Bullets ricochet off the forklift, as it creeps toward the bald thug. Someone\",returns fire from behind the pillar.,tosses it on the fallen guard.,\"swings faster, knocking someone onto a swirls below.\",steps to the water plane.,,gold0-orig,pos,unl,unl,unl,n/a,\"Bullets ricochet off the forklift, as it creeps toward the bald thug.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11557,\"Shielding his face, he rushes toward the loading ramp as the rotor intensifies. Leaping up, someone\",grabs on to the open ramp door as the chopper slowly lifts off.,finds a huge soccer ball which can be seen in the distance.,dodges easily as sparks fly away from the sky's windscreen.,finds himself silhouetted against the fractured egg around the car.,takes out a bottle of leather and points it at the steward.,gold0-orig,pos,unl,unl,unl,unl,\"Shielding his face, he rushes toward the loading ramp as the rotor intensifies.\",\"Leaping up, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11553,Someone rips off his jacket and pulls a pistol from his waistband. He,runs through the flaming room in his dirty and bloodstained white t - shirt.,\"takes out a covered cut jacket, holds it between the support canvas.\",\"dons it, a video shows someone a dead or smoking cell with.\",takes two styrofoam glass and sinks to the floor.,pulls a metal piece of amnesia dust from someone.,gold0-orig,pos,unl,unl,unl,unl,Someone rips off his jacket and pulls a pistol from his waistband.,He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11538,\"Outside, someone yanks the bald thug's weapon away and runs toward the building. Someone\",\"forces someone forward at gunpoint, as they proceed on the illuminated path from the vault.\",steals the ball and lands on his feet.,picks the other offstage back.,\"slides the van down onto the landing, followed by him trying to reach his mobile.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Outside, someone yanks the bald thug's weapon away and runs toward the building.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11537,\"He shoves the old man toward the entrance. Outside, someone\",yanks the bald thug's weapon away and runs toward the building.,crouches before the oar and pulls out a gold chamber of wooden tether.,cradles his son's grim face as he listlessly obscured by a hooded hooded hummer.,steps up behind someone and rips off their designer clothes.,takes the man's arm.,gold0-orig,pos,unl,unl,pos,pos,He shoves the old man toward the entrance.,\"Outside, someone\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11542,\"Someone quickly fires, then retracts behind a cement pillar. As the bald shirtless thug fires wildly, bullets\",\"pierce the hoses, spraying chemicals into the air.\",\"rip through the skin of black, white balloons and cable car.\",rips from the skin burns in the hot guys.,discards his friend's ankle.,restrain someone from 200 guns up onto the stage.,gold0-orig,pos,unl,unl,unl,unl,\"Someone quickly fires, then retracts behind a cement pillar.\",\"As the bald shirtless thug fires wildly, bullets\"\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11550,Someone sits in the chopper's cockpit. Bullets,\"ricochet off the forklift, as it creeps toward the bald thug.\",pounces over him as he staggers.,\"steps cautiously past one of the lower decks, then turns a corner and peers between the warehouses at a window leading ahead.\",wait out of the right window.,rotate into the squeeze sky then zoom out the dust runway.,gold0-orig,pos,unl,unl,unl,unl,Someone sits in the chopper's cockpit.,Bullets\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11564,\"Through a small window, someone peers into the cockpit at someone and the pilot. He\",grabs the steel handle and tugs.,spots people sprawled out of the dock.,sees someone blinking the smoke.,swipes the sheriff furiously.,,gold0-orig,pos,unl,unl,unl,n/a,\"Through a small window, someone peers into the cockpit at someone and the pilot.\",He\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11539,\"Stepping through the rounded vault entrance, someone readies his weapon. His eyes\",scan the large cluttered room.,find zombies in the lobby.,fall on the monitor.,widen and he lifts its head slightly.,,gold0-orig,pos,unl,unl,pos,n/a,\"Stepping through the rounded vault entrance, someone readies his weapon.\",His eyes\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11558,\"Leaping up, someone grabs on to the open ramp door as the chopper slowly lifts off. The aging detective\",struggles to pull himself up.,appears in someone's office window.,\"leans against the wall, manipulates his wrists, offering the phone to the ear he shuts it.\",strides his suitcase through two vendors.,rolls out with the chopper up.,gold0-reannot,pos,unl,unl,unl,unl,\"Leaping up, someone grabs on to the open ramp door as the chopper slowly lifts off.\",The aging detective\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11562,\"As someone army - crawls beneath the truck, a thug enters by the front end. Someone\",aims at his legs.,knocks the jigger of beer away at his side as he reaches out to see the apple.,stands up as he half rises.,rush down to a black puddle from the tree and post it on the garbage with enormous prop - waggling graffiti.,grabs someone's gun.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone army - crawls beneath the truck, a thug enters by the front end.\",Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11554,He runs through the flaming room in his dirty and bloodstained white T - shirt. Someone,sprints up the stairs as his father exits the building.,weaves through traffic past a highway near an neat line lining the sidewalk.,\"makes their way down the passageway, someone steps inside as the robber skates out.\",walks closer to a chair with his knees on a rail between the two supports.,sits on a low bed sitting on a tunnel with his arms crossed.,gold0-reannot,pos,unl,unl,unl,unl,He runs through the flaming room in his dirty and bloodstained white T - shirt.,Someone\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3322,11549,\"Peeking out, someone notices the small forklift. Someone\",sits in the chopper's cockpit.,takes off his doctors hat and rubs it over his cardigan as he sits in the doorway.,switches the monitor down.,spies someone's picture on tv.,,gold1-reannot,pos,unl,unl,unl,n/a,\"Peeking out, someone notices the small forklift.\",Someone\nlsmdc0021_Rear_Window-58140,18540,The camera pans her over to him. She,\"takes out the thermometer, looks at it.\",shakes the ice off her hand and walks away.,continues dancing while looking back and forth.,indicates a croquet ball.,,gold1-orig,pos,unl,pos,pos,n/a,The camera pans her over to him.,She\nlsmdc0021_Rear_Window-58140,18542,She gets down the thermometer. She,helps him stand on one foot.,rinses the soap off with long squeegee.,opens the front door of her car.,presses into the elevator and leans closer to him.,,gold1-orig,pos,unl,unl,unl,n/a,She gets down the thermometer.,She\nlsmdc0021_Rear_Window-58140,18537,\"She opens the bag, takes out some medical supplies: a thermometer, a stop watch, a bottle of rubbing oil, a can of powder, a towel. Defeated, he\",puts the thermometer back into his mouth.,moves it in front of her behind the desk and pours it into the office bowl.,reaches for his gun.,\"gets out of the car, heading.\",passes an old man.,gold0-orig,pos,unl,unl,unl,unl,\"She opens the bag, takes out some medical supplies: a thermometer, a stop watch, a bottle of rubbing oil, a can of powder, a towel.\",\"Defeated, he\"\nlsmdc0021_Rear_Window-58140,18543,She helps him stand on one foot. Then she,helps him off with his pajama top.,swishes him in half.,\"stands, her head hit the ground.\",strolls closer to someone.,\"does a flip and dances mighty feet, making sure.\",gold1-orig,pos,unl,unl,unl,unl,She helps him stand on one foot.,Then she\nlsmdc0021_Rear_Window-58140,18539,Someone goes on with her work. The camera,pans her over to him.,\"follows someone's driveway, holding her panties, and looks about it.\",looks down toward the camera.,moves across the station as she stares at the beauty.,looks up at someone.,gold0-orig,pos,unl,unl,pos,pos,Someone goes on with her work.,The camera\nlsmdc0021_Rear_Window-58140,18547,\"Someone's head, half - buried in the sheet, is large in the fore - ground. Beyond him someone\",looms large and powerful - looking.,has brought someone into his room.,\"is with someone's boss, someone, pointing the package to the door.\",\"has been watching, watching out.\",is nearly coming to a halt.,gold0-orig,pos,unl,unl,unl,unl,\"Someone's head, half - buried in the sheet, is large in the fore - ground.\",Beyond him someone\nlsmdc0021_Rear_Window-58140,18538,\"Defeated, he puts the thermometer back into his mouth. Someone\",goes on with her work.,puts the raft down over his back.,holds his hood down onto the rail of the train.,lurches to a halt in the gravel.,takes off his life belt and drops it.,gold1-reannot,pos,unl,unl,unl,unl,\"Defeated, he puts the thermometer back into his mouth.\",Someone\nlsmdc0021_Rear_Window-58140,18544,\"Then she helps him off with his pajama top. He hops one step, then she\",\"lowers him, face down, on the divan.\",pinches his backside in the polished right.,ends taking off off the tv.,performs a brief tap website.,,gold1-reannot,pos,unl,unl,unl,n/a,Then she helps him off with his pajama top.,\"He hops one step, then she\"\nanetv_F7u4kpwhs5g,12292,A group of people are seen riding around on horses swinging sticks. The people,ride back and fourth playing the game with one another.,walk back and fourth while others watch on the side.,continue performing stunts with one another and jumping into the distance.,speak to one another and lead into a performing fencing routine and others leading along.,continue riding around one another with people watching on the sides.,gold0-orig,pos,unl,unl,pos,pos,A group of people are seen riding around on horses swinging sticks.,The people\nanetv_F7u4kpwhs5g,9390,Some men are playing polo while riding horses. They,are riding horses on an open field.,walk on nearly dead.,ride on a bumpy road on riverside roads.,begin taking turns and jumping in celebration.,continue to ride on the horses.,gold0-orig,pos,unl,pos,pos,pos,Some men are playing polo while riding horses.,They\nanetv_F7u4kpwhs5g,9391,They are riding horses on an open field. They,chase the ball with their sticks and hit them back and forth.,are trying to build a sand castle.,throw three kites in the ledger.,move up onto their elbows and go down down in circles.,are playing a game of tug of war.,gold0-orig,pos,unl,unl,unl,unl,They are riding horses on an open field.,They\nanetv_F7u4kpwhs5g,12293,The people ride back and fourth playing the game with one another. One scores a goal and they,ride together and wave sticks in the air.,continue to hold the ball with one another.,seem to be able to hit the ball.,perform a spin around when the outcome is shown again still shots.,,gold1-reannot,pos,unl,unl,pos,n/a,The people ride back and fourth playing the game with one another.,One scores a goal and they\nlsmdc1057_Seven_pounds-98178,4190,Someone walks out into the night. The rain,cascades as a grief - stricken someone strides away from the hospital.,sets the evening down.,\"is above us, except for his wind clothes.\",wakes with a start.,falls from his eyes.,gold0-orig,pos,unl,unl,unl,unl,Someone walks out into the night.,The rain\nlsmdc1057_Seven_pounds-98178,4201,He presses a button on a digital clock beside his bed. He,picks up the phone.,stays at hers and presses with her back thumb drawing palm.,shines a flash to the kitchen window.,bites his lip as he works his way through to the door ajar.,holds him in his arms and steps on to it.,gold0-orig,pos,unl,unl,unl,unl,He presses a button on a digital clock beside his bed.,He\nlsmdc1057_Seven_pounds-98178,4189,\"Someone raises a hand helplessly, marches back along the corridor and pushes through the double doors. Someone\",walks out into the night.,dashes off into a layer of silk netting.,has seen a police van in house.,\"is moving through some french doors into the hall at the clinic, massaging her legs.\",rushes over and helps her up.,gold0-orig,pos,unl,unl,unl,pos,\"Someone raises a hand helplessly, marches back along the corridor and pushes through the double doors.\",Someone\nlsmdc1057_Seven_pounds-98178,4199,\"Regaining his composure slightly, someone reaches for the phone on his bedside cabinet and makes a call. Someone\",is woken by the ringing.,lifts up her backpack.,\"gets up, and gets the doors closed.\",unlocks the door then halts.,,gold0-orig,pos,unl,unl,pos,n/a,\"Regaining his composure slightly, someone reaches for the phone on his bedside cabinet and makes a call.\",Someone\nlsmdc1057_Seven_pounds-98178,4193,People lie asleep in each other's arms. Someone,reaches for the phone on his bedside cabinet.,covers his body with a coy smile.,\"notices someone, still in the barber jacket.\",is draped around the cable.,is asleep in her bed.,gold0-orig,pos,unl,unl,unl,pos,People lie asleep in each other's arms.,Someone\nlsmdc1057_Seven_pounds-98178,4200,Someone is woken by the ringing. He,presses a button on a digital clock beside his bed.,\"peels out, and slams a door to the dining room tv, then talks to someone.\",watches sean rolling his collar.,kicks the journals out of the corner.,flips uncertainty the candles.,gold0-orig,pos,unl,unl,unl,unl,Someone is woken by the ringing.,He\nlsmdc1057_Seven_pounds-98178,4191,\"The rain cascades as a grief - stricken someone strides away from the hospital. As he walks, he\",takes his mobile phone from his jeans' pocket and taps in a number.,\"shuts the driver door, then pauses.\",recovers and follows with their dogs.,rushes through the galley breezeway.,,gold0-orig,pos,unl,unl,pos,n/a,The rain cascades as a grief - stricken someone strides away from the hospital.,\"As he walks, he\"\nlsmdc1057_Seven_pounds-98178,4198,\"Someone sits on the edge of his bed, panting. Regaining his composure slightly, someone\",reaches for the phone on his bedside cabinet and makes a call.,turns in a circle to create a severe expression.,settles back into the pantry from a masked classes with potatoes on his hands.,\"thinks for a moment, then holds up his own wand.\",heaves himself onto the chair.,gold0-orig,pos,unl,unl,pos,pos,\"Someone sits on the edge of his bed, panting.\",\"Regaining his composure slightly, someone\"\nlsmdc1057_Seven_pounds-98178,4196,\"His expression is slightly glazed, as if consumed by his own sad thoughts. He\",\"turns and stares outside, then closes the door.\",looks at it and gazes down into his eyes.,begins making its way up the wooden steps to his desk.,slams the door shut and is suddenly staring blankly in the distance.,,gold0-orig,pos,pos,pos,pos,n/a,\"His expression is slightly glazed, as if consumed by his own sad thoughts.\",He\nlsmdc1057_Seven_pounds-98178,4192,\"As he walks, he takes his mobile phone from his jeans' pocket and taps in a number. People\",lie asleep in each other's arms.,and someone are framed by the eyes of the big sunlit building where art students sit on the throne - table.,\"recalls in a whistle at the end when she faces him lightly, covering herself again.\",'s team skateboarding and leaves are in a city stands where a guy emerges in the middle of a circular pool.,,gold1-orig,unl,unl,unl,unl,n/a,\"As he walks, he takes his mobile phone from his jeans' pocket and taps in a number.\",People\nlsmdc1057_Seven_pounds-98178,4195,Someone returns to his motel room and pauses in the doorway. His expression,\"is slightly glazed, as if consumed by his own sad thoughts.\",stiff and he calls his hand to the window at the side of the room.,is sharp and stiff as he beings at a kitchen stool.,hardens as he watches the runway.,is resolute and ill.,gold0-orig,pos,unl,unl,unl,pos,Someone returns to his motel room and pauses in the doorway.,His expression\nlsmdc1057_Seven_pounds-98178,4194,\"Someone, now sitting up in bed, remains with the phone to his ear and drops his head. Someone\",returns to his motel room and pauses in the doorway.,sits down in a bed and watches someone rise and alone in the room.,leaps up onto the floor and eases someone like another hug.,\"freezes and stares, breathing heavily as he slowly faces the house in confusion.\",,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone, now sitting up in bed, remains with the phone to his ear and drops his head.\",Someone\nlsmdc1057_Seven_pounds-98178,4197,\"He turns and stares outside, then closes the door. Someone\",\"sits on the edge of his bed, panting.\",slides the door closed and steps inside.,\"is silently staring at someone, who shakes his hand as he reaches a table where someone lies on his shoulder.\",turns on the bell and hurries over to the road through the rear door.,\"reaches inside, grabs the keys, and starts for the door.\",gold0-reannot,pos,unl,unl,pos,pos,\"He turns and stares outside, then closes the door.\",Someone\nanetv_hkpYSfc5Ewc,15726,A gymnast is seen jumping onto a set of uneven bars and performs a gymnastics routine in front of a large crowd. The man,flips around the beams and ends with him jumping down with his arms up and waving to the crowd.,continues moving along with several hands and leads into the audience up close and others watching.,begins spinning around and ends with a gymnasts on the mat.,is seen moving again to the next and ends with his arms up.,and woman continue moving around and stop and jump around the sides.,gold0-reannot,pos,unl,unl,unl,unl,A gymnast is seen jumping onto a set of uneven bars and performs a gymnastics routine in front of a large crowd.,The man\nlsmdc0009_Forrest_Gump-50356,7417,She sets it down on a table in front of a wealthy white man. Someone's grandmother,carries a bowl of shrimp into a dining room.,reaches up and pulls the money from someone's pocket.,watches ahead and drains the remaining wine.,\"sits down, takes his own tablet and begins to decorate the tree.\",shares the room with her.,gold0-orig,pos,unl,unl,unl,pos,She sets it down on a table in front of a wealthy white man.,Someone's grandmother\nlsmdc0009_Forrest_Gump-50356,7418,Someone's grandmother carries a bowl of shrimp into a dining room. She,sets it down on a table in front of a wealthy white man.,\"moves for another, studying the modest girl.\",skates out of the water to her bra.,stomps the remainder of the meal on the prom table as tears roll down her face.,,gold1-orig,pos,unl,unl,pos,n/a,Someone's grandmother carries a bowl of shrimp into a dining room.,She\nlsmdc0009_Forrest_Gump-50356,7416,\"Someone's mother, a robust woman in a cook's uniform, carries a bowl of shrimp into a dining room. She\",sets it down on a table in front of a wealthy white man.,is being taken by a sheriff.,attend her family.,puts a glass on another table and shakes it.,grabs the package from the corner table and picks it up.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone's mother, a robust woman in a cook's uniform, carries a bowl of shrimp into a dining room.\",She\nanetv_8WFB_LUOx4k,190,A camera captures several shots of sites as well as people standing outside drinking and celebrating. One man pulls out a weed and a drone,is seen flying in the distance.,is then seen grabbing the camera.,appears behind him and gives an eager kiss to the cap.,is shown as well as a can of paint and flips him back over.,is on the field with a group of people standing around the circus.,gold0-orig,pos,unl,unl,unl,unl,A camera captures several shots of sites as well as people standing outside drinking and celebrating.,One man pulls out a weed and a drone\nanetv_8WFB_LUOx4k,191,One man pulls out a weed and a drone is seen flying in the distance. The people,attempt to hit the drone and then are seen driving around on a golf cart around other people.,\"swing with one another holding the rings, just trying to keep the board into.\",continue to compete with the large group performing occurs on front interior credits.,continue performing various items with waterfall while speaking to the camera.,are interviewed continuously on the sand and end by moving the object around.,gold0-orig,pos,unl,unl,unl,pos,One man pulls out a weed and a drone is seen flying in the distance.,The people\nanetv_8WFB_LUOx4k,192,The people attempt to hit the drone and then are seen driving around on a golf cart around other people. A man shows up in a guerrilla suit and the drone,flies over people playing games and riding around.,cuts to a recap of movements.,to hit the surf water 4 times and the man runs into the arms on the sand and times at the end.,is still with with several other people afterwards.,flies into the air with a touch of metal.,gold0-reannot,pos,unl,unl,unl,pos,The people attempt to hit the drone and then are seen driving around on a golf cart around other people.,A man shows up in a guerrilla suit and the drone\nlsmdc0004_Charade-47794,15394,\"All the delegates and their aides suddenly turn, surprised, and look at camera. Inside the booth, people\",can be seen heading for the door in a hurry.,flood along so the guests dance.,are in scene of a red car.,veer off of the well.,\"spots people on the stairs, smoking, muttering, drinking some cigars.\",gold0-orig,pos,unl,unl,unl,pos,\"All the delegates and their aides suddenly turn, surprised, and look at camera.\",\"Inside the booth, people\"\nlsmdc0004_Charade-47794,15393,\"She turns back to the conference, flips a switch and starts speaking into her headset. All the delegates and their aides\",\"suddenly turn, surprised, and look at camera.\",are completely full of plaster.,are brought out a computer.,are alight as the loafers seem quite drunk out.,are scattered as trays of skates are kneel by someone's uniform.,gold0-orig,pos,unl,unl,unl,unl,\"She turns back to the conference, flips a switch and starts speaking into her headset.\",All the delegates and their aides\nanetv_aa-bFJZmcko,1527,Various shots of a close up of a bike and a person pointing to the bike in various spots. The person,continuously adjusts the bike and pans the camera all around it in the end.,continues moving around and ends by looking off into the distance and moving his hands on and continuing to solve it.,holds the walls present when looking to the camera and shows more shots of scenes.,moves down and shoveling the driveway.,turns onto a bike and places the deploy machine between a tire tire to the top.,gold0-reannot,pos,unl,unl,unl,unl,Various shots of a close up of a bike and a person pointing to the bike in various spots.,The person\nlsmdc0053_Rendezvous_mit_Joe_Black-71490,7272,\"He kisses her, they fall into a deep embrace. Someone is struggling with a response, finally, inevitably, he\",drifts into a long silence.,\"grits his teeth with a deep, bony jaw.\",comes out of his room and smiles at someone.,tosses someone rigidly and looks away.,,gold0-orig,pos,unl,unl,unl,n/a,\"He kisses her, they fall into a deep embrace.\",\"Someone is struggling with a response, finally, inevitably, he\"\nanetv_AoRk69eieek,15811,A man stands by a pole vault rig while a series of vaulters is shown attempting the vault with varying degrees of success. A group of people wearing white uniforms,walk by in the background.,are on an official of a shot white jerk and padded stilts.,\"are interviewed on camera, who in stilts running in a blue circle to perform an interview by team members.\",are shown to a track from different participation as a woman by the media with spectators.,jump rope during a competition.,gold0-orig,pos,unl,unl,pos,pos,A man stands by a pole vault rig while a series of vaulters is shown attempting the vault with varying degrees of success.,A group of people wearing white uniforms\nanetv_AoRk69eieek,15812,A group of people wearing white uniforms walk by in the background. Two people,walk by in the background.,are static on a stage with some young audience.,enter the building and have suction elbow over a glass.,are playing instruments together.,dance together in a crowd.,gold0-orig,pos,unl,unl,pos,pos,A group of people wearing white uniforms walk by in the background.,Two people\nanetv_FtbrPGaINt0,2222,Two women are preparing to do dives into a large pool. They,\"walk forward, pose, then backflip into the pool.\",land on the lakeside sitting in the stands.,are standing beside a curricle watching on the sides.,are throwing ball around a pool table.,are in the water sitting in the middle of the pool.,gold1-orig,pos,unl,unl,unl,unl,Two women are preparing to do dives into a large pool.,They\nanetv_FtbrPGaINt0,2223,\"They walk forward, pose, then backflip into the pool. They then\",\"get out and stand to the side, smiling and hugging at their good scores.\",eat more fish and fish.,stop facing each other and smiling.,perform several martial arts moves.,\"emerge from their glass, looking near their intruder.\",gold0-orig,pos,unl,unl,unl,unl,\"They walk forward, pose, then backflip into the pool.\",They then\nanetv_FtbrPGaINt0,18405,They stand at the end of the boards in position. They,backflip into the water while people clap.,pull on the ropes of their new jacket.,line bump into a brick wall.,stand in the magnificent structure.,,gold0-orig,pos,unl,unl,unl,n/a,They stand at the end of the boards in position.,They\nanetv_FtbrPGaINt0,18404,A female swimmer walks across the diving board alongside another swimmer. They,stand at the end of the boards in position.,swim next to the water's surface.,swim along to the first tuber.,swim in the pool and they splash backwards over the diving board.,swim in front of the water basin and take the lid off of the boat.,gold0-orig,pos,unl,unl,unl,unl,A female swimmer walks across the diving board alongside another swimmer.,They\nanetv_mqUJEX9qk8E,15316,Men and a woman wearing Kufiyyas on their heads are standing on dessert next to horses. dessert with mountains in the distance is shown and the men,are standing next to a kids ride the horses adn are going in the desert.,\"are shown walking around the country residence, sharpening the flower.\",are making sand castles in the sand.,is shown up before gesturing.,makes large sand castles in the sand.,gold0-orig,pos,unl,unl,unl,unl,Men and a woman wearing Kufiyyas on their heads are standing on dessert next to horses.,dessert with mountains in the distance is shown and the men\nanetv_bf3ac4bkIIo,15552,Various pictures of ingredients are shown with text across the screen and leads into a woman washing and peeling lemons. She,rolls the lemons on a table and cut them into halves.,turns around and pouring water all over the table while looking at the camera.,uses a set of cookies to cut into a blender.,mixes up all along the noodles as well as supplies.,client shows around one more ingredients in the kitchen as well as this castle and has apple titles.,gold0-orig,pos,unl,unl,unl,unl,Various pictures of ingredients are shown with text across the screen and leads into a woman washing and peeling lemons.,She\nanetv_bf3ac4bkIIo,15554,Then she juices the lemon and pours the mixture into a large pot with sugar. She,\"boils the pot and pours the final result into several glasses, enjoying a sip in the end.\",\"takes off the bottle and shakes it, puts the cake onto her lap and adds five tongs.\",\"stirs stirs, then stirs the egg mixture in and puts the baking spoon in the oven.\",\"pours various juice into a large glass, then pours the lemonade in a shaker.\",,gold0-orig,pos,unl,unl,unl,n/a,Then she juices the lemon and pours the mixture into a large pot with sugar.,She\nanetv_bf3ac4bkIIo,15553,She rolls the lemons on a table and cut them into halves. Then she,juices the lemon and pours the mixture into a large pot with sugar.,wipes it down with the vinegar and garnishes it to the right side where the cake is completed.,places a nail on her left arm and puts it in a purple bag.,can brush the cut with a knife she then cuts up bread to cut them in half and cuts the tomato.,,gold0-orig,pos,unl,unl,pos,n/a,She rolls the lemons on a table and cut them into halves.,Then she\nlsmdc3035_INSIDE_MAN-1710,8716,\"Esu member is toting a bunker. Meanwhile, more esu guys\",use orange tape to cordon off a perimeter.,walk upside down a plastic seats and shoot across the atrium at end.,drag a penguins out of the calmer office.,enter on a cell.,try to at card store.,gold1-orig,pos,unl,unl,unl,unl,Esu member is toting a bunker.,\"Meanwhile, more esu guys\"\nlsmdc3035_INSIDE_MAN-1710,8717,\"Meanwhile, more esu guys use orange tape to cordon off a perimeter. Someone\",waves the vehicle forward.,notices someone's eight fifteen finger in.,approaches the oldest friend.,throws someone into a crate.,ducks and leaps into a tank.,gold0-orig,pos,unl,pos,pos,pos,\"Meanwhile, more esu guys use orange tape to cordon off a perimeter.\",Someone\nlsmdc0032_The_Princess_Bride-66527,17426,\"Again, someone does n't seem to mind, does n't even feel it. Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he\",\"forces someone easily back, drives him easily into the wall.\",\"ca not see the things that someone's doing as he walks towards her, or hitting him.\",\"rips his broomstick from the clouds, crashing the grandmaster sending out a line.\",is alone that way to keep up on it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Again, someone does n't seem to mind, does n't even feel it.\",\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he\"\nlsmdc0032_The_Princess_Bride-66527,17430,\"But none of his blows get through and, slowly, someone, again moves forward. Someone\",\"drives for someone's left shoulder now, thrusts home where someone had gotten him.\",moves cautiously backward toward the archway.,props it up a wall and can not move from it.,\"stops halfway to them, although neither has one good eye.\",,gold0-orig,pos,unl,unl,unl,n/a,\"But none of his blows get through and, slowly, someone, again moves forward.\",Someone\nlsmdc0032_The_Princess_Bride-66527,17428,None of someone's blows get home. As someone,steps back a moment.,goes right back past someone.,\"leaves the forest, and removes his jacket.\",stops between the hearse and twin children.,pumps a fist for chase.,gold1-orig,pos,unl,unl,unl,unl,None of someone's blows get home.,As someone\nlsmdc0032_The_Princess_Bride-66527,17429,\"And again he attacks, slashing with wondrous skill. But none of his blows\",\"get through and, slowly, someone, again moves forward.\",are wagging as he picks up more basketballs.,are shown in the profile.,\"is broken the shot, two books.\",takes place on the holder.,gold1-orig,pos,unl,unl,unl,unl,\"And again he attacks, slashing with wondrous skill.\",But none of his blows\nlsmdc0032_The_Princess_Bride-66527,17431,\"Someone drives for someone's left shoulder now, thrusts home where someone had gotten him. Then another move and his blade\",\"enters someone's right shoulder, the same spot someone was wounded.\",moves past its protecting - covered display as the passage roars in the strung - out room.,knocks someone down the sidewalk until he finds them midway to the parallel bar.,hits the cut - out of one falls down the wooden floor.,\"goes off, ranging from black to nothing.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone drives for someone's left shoulder now, thrusts home where someone had gotten him.\",Then another move and his blade\nlsmdc0032_The_Princess_Bride-66527,17434,Then someone withdraws his sword and as someone pitches down. His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes,\"are bulging wide, full of fear.\",start to dance.,darting out from his wrist.,dart up and down.,,gold0-orig,pos,unl,unl,pos,n/a,Then someone withdraws his sword and as someone pitches down.,His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes\nlsmdc0032_The_Princess_Bride-66527,17424,\"Someone watches someone approach, and someone flicks his sword at someone's heart, and there's not much someone can do, just kind of vaguely parry the thrust with the six - fingered sword and someone's blade sinks deeply into someone's left shoulder. And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he\",\"manages to parry the thrust, as this time someone's sword runs through his right arm.\",didn't hold back the blast.,head towards the center of he sinks to the ground.,would n't snaggletooth it as he swings the gun at the bear.,can win a clean shot.,gold0-orig,pos,unl,unl,unl,pos,\"Someone watches someone approach, and someone flicks his sword at someone's heart, and there's not much someone can do, just kind of vaguely parry the thrust with the six - fingered sword and someone's blade sinks deeply into someone's left shoulder.\",\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he\"\nlsmdc0032_The_Princess_Bride-66527,17427,\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he forces someone easily back, drives him easily into the wall. But he\",does not penetrate someone's defense.,\"lifts the cigarette rapidly and the other jabs his fists in passionate, as the same men's feet move in an alley.\",has n't easily turned to someone.,\"can not see the stranger hurrying up to his own, trying to wrinkle his limb.\",\"is not, as well as dead.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone, suddenly going into a fierce attack, striking with great power and precision for he is a master swordsman, and he forces someone easily back, drives him easily into the wall.\",But he\nlsmdc0032_The_Princess_Bride-66527,17432,\"Then another move and his blade enters someone's right shoulder, the same spot someone was wounded. They\",are almost frozen like that for a moment.,move to the cliff in the hit spot.,are on both bed.,got a wound to his skin.,follow the emt's gaze to find.,gold0-reannot,pos,unl,unl,unl,unl,\"Then another move and his blade enters someone's right shoulder, the same spot someone was wounded.\",They\nlsmdc0032_The_Princess_Bride-66527,17435,\"His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes are bulging wide, full of fear. Someone lies as before, not a muscle has moved, his head\",\"is still on the headboard, someone's sword at his side.\",bowed and keeps his steadily on himself.,half miserable and aghast.,\"leaning towards a lectern, held by position in a dark, nun style room.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"His skin is ashen and the blood still pours from the parallel cuts on his cheeks and his eyes are bulging wide, full of fear.\",\"Someone lies as before, not a muscle has moved, his head\"\nlsmdc0032_The_Princess_Bride-66527,17425,\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he manages to parry the thrust, as this time someone's sword runs through his right arm. Again, someone\",\"does n't seem to mind, does n't even feel it.\",\"lands in the sand, who manages to hold himself back down.\",\"writes o. ka - addressed as he pulls himself up to his feet, beckons to his aide.\",makes a wands with one finger and an explosion floats towards them.,slides over the course photo of the security hammer.,gold0-reannot,pos,unl,unl,unl,unl,\"And as this blow comes he is trying to use the wall for support in forcing himself to his feet, and it's not a roaring success of an attempt, but he does at least make some progress, and again he manages to parry the thrust, as this time someone's sword runs through his right arm.\",\"Again, someone\"\nlsmdc0032_The_Princess_Bride-66527,17433,They are almost frozen like that for a moment. Then someone,withdraws his sword and as someone pitches down.,changes his face into someone's sunroof.,\"lets out, watching from an oncoming spot on the road.\",\"walks into home bedroom, packing a bucket and starts cleaning out the wall.\",\"looks across the street, moving past them.\",gold0-reannot,pos,unl,unl,unl,pos,They are almost frozen like that for a moment.,Then someone\nanetv_tMheZSxPl3Q,9060,Pieces of furniture are seen including cabinets and tables. A person,sands down a piece of wood with an electric sander.,shows the paint cutting paper with a foam sheen.,rolls her nails all along a beach with a scraper solution.,is mopping a floor without a soap waxing down on his back.,closes washing water dishes to the camera.,gold0-orig,pos,unl,unl,unl,unl,Pieces of furniture are seen including cabinets and tables.,A person\nanetv_tMheZSxPl3Q,9061,A person sands down a piece of wood with an electric sander. A person,sands down a piece of wood by hand.,rounds the stone floor and trims the bushes.,is seen snow down on the roof of the house.,is fishing on ice in front of and grabbing the wood and talking about the top.,blends the tops of the water.,gold1-orig,pos,unl,unl,unl,unl,A person sands down a piece of wood with an electric sander.,A person\nanetv_X095EDl0-eU,5010,We see two men fencing in a stadium. A man,throws his arms in the air.,watches a practice art workshop while soldiers watch them.,splits in the stands.,is hitting the ball something far.,,gold0-orig,pos,unl,unl,unl,n/a,We see two men fencing in a stadium.,A man\nanetv_X095EDl0-eU,5012,The left man falls to the ground. The left man,throws his hand in the air.,bends down and pretends to fall.,mounts the pommel horse.,tickles the ball and scores.,makes his way to his left.,gold1-orig,pos,unl,unl,unl,unl,The left man falls to the ground.,The left man\nanetv_X095EDl0-eU,5013,The left man throws his hand in the air. We,see the ending title screen.,see the man back when finishes.,do the same as a teen shows up boy and drink and clap.,\", the man spins with us and the credits of the clip are shown.\",,gold0-orig,pos,unl,unl,pos,n/a,The left man throws his hand in the air.,We\nanetv_X095EDl0-eU,5011,A man throws his arms in the air. The left man,falls to the ground.,does the same split.,collapses to her knees.,lays his shingle down on the spot.,,gold1-orig,pos,unl,unl,unl,n/a,A man throws his arms in the air.,The left man\nanetv_eQc-8npRq18,13750,A person is seen standing before a large track holding a pole. The person,begins to run down the track while still holding the pole.,is then seen flipping on the track around a gym and several avoids lifting up a pole.,runs over to get the string out on the track and jumps back to the end.,then begins spinning around around a track several times.,goes back to throws and flips the ax off with the stick.,gold0-orig,pos,unl,unl,unl,unl,A person is seen standing before a large track holding a pole.,The person\nanetv_eQc-8npRq18,13751,The person begins to run down the track while still holding the pole. The man then,jumps over a beam and onto a mat.,turns to the man and throws the disk on the board.,opens and flips the child over.,runs around the track and drags her down and down the lane.,hops up and jumps into the sand.,gold0-orig,pos,unl,unl,unl,pos,The person begins to run down the track while still holding the pole.,The man then\nanetv_Q6KyDc24uSk,4164,\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person appears with a pool stick and hits the white ball. A blue screen appears and it\",includes the same black and yellow wording from the intro screen.,\"'s a car that includes white text, putting how it on how it just did.\",shoots off the air really far.,\"includes two colored people, a beach reflection is then measure of several small pucks being repeated, with a few more highlights.\",includes a red hand and 3 a volleyball dart.,gold1-orig,pos,unl,unl,unl,unl,\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person appears with a pool stick and hits the white ball.\",A blue screen appears and it\nanetv_Q6KyDc24uSk,4163,\"It then switches to another blue screen that include more words in black and yellow and it's referring to a Disc iii. A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person\",appears with a pool stick and hits the white ball.,puts a bottle of water on the table try where the ball goes up.,begins to play it for a different time.,comes in between them standing in a pose and flames burst on their back and gradually.,is pictured leaving the keyboard.,gold0-orig,pos,unl,unl,unl,unl,It then switches to another blue screen that include more words in black and yellow and it's referring to a Disc iii.,\"A still shot of a pool table appears with pool balls on them, a white circle with a black cross and a black dot appear along with yellow lines on different areas of the table, and a person\"\nanetv_Q6KyDc24uSk,4588,A man takes a pool stick and shoots the que ball towards the colored balls. the man,demonstrates several shots and angles.,throws the ball to one of the teachers.,dives and hits the ball into the goal.,runs into the center of the hockey rink.,takes a shot and bounces the ball.,gold0-orig,pos,unl,unl,unl,unl,A man takes a pool stick and shoots the que ball towards the colored balls.,the man\nanetv_NiQaDgj8Z10,3863,A lady hula hoop with five hula hoops and one by one she takes on off of her and tosses it until she tossed away all five hula hoops she was hula hooping with. the lady then,hula hoops with 300 hula hoops with will be a world record.,appears in the hoop many times and the baby takes pictures of the woman's point.,dismounts the slinky performance to the side once again and is threatening her black visor.,shows herself doing a flip dish with a hoop and indoor vigorously.,does the aerobics performing a few times keeping her feet up and then cheers herself.,gold1-orig,pos,unl,unl,unl,pos,A lady hula hoop with five hula hoops and one by one she takes on off of her and tosses it until she tossed away all five hula hoops she was hula hooping with.,the lady then\nanetv_NiQaDgj8Z10,3864,\"The lady then hula hoops with 300 hula hoops with will be a world record. the lady starts by putting the 300 hula hoops around her body as she bend over to get a good grip on them, she then\",stands straight up and starts to twirl all 300 hula hoops around her body.,flips some times and grabs more objects with both hands.,glides across to another girl and attempts to walk faster.,picks her camera up and moves in.,dismounts in air with her arms and cheers in the air.,gold1-orig,pos,unl,unl,unl,unl,The lady then hula hoops with 300 hula hoops with will be a world record.,\"the lady starts by putting the 300 hula hoops around her body as she bend over to get a good grip on them, she then\"\nanetv_tIAdhrfT70I,9793,\"A group of people are in a building, playing a game called beer pong. The news reporters\",gather in their studio to play beer pong.,are swimming toward the reporters.,is excited about her game game.,\"are talking on front the taking hands, when they're finished their drink is shown.\",tell everyone how to properly wear iron clothes.,gold0-orig,pos,unl,unl,unl,unl,\"A group of people are in a building, playing a game called beer pong.\",The news reporters\nanetv_tIAdhrfT70I,9794,The news reporters gather in their studio to play beer pong. A male and female reporter,attempt to throw the balls at the cups.,play a ping pong pool.,are on the beach.,are playing on tv.,begin talking on the screen.,gold0-orig,pos,unl,unl,pos,pos,The news reporters gather in their studio to play beer pong.,A male and female reporter\nanetv_tIAdhrfT70I,9796,The woman walks away laughing as the other reporters continue to talk. They,resume playing before the fox news icon again appears onscreen.,do signals to shake it off.,ends and the woman is talking and leads into him speaking and showing items out on the table.,rest at tables are shown in the continue to mow her empty room.,,gold0-orig,pos,unl,unl,unl,n/a,The woman walks away laughing as the other reporters continue to talk.,They\nanetv_tIAdhrfT70I,9795,A male and female reporter attempt to throw the balls at the cups. The woman,walks away laughing as the other reporters continue to talk.,makes a batch of sand on the ice and harmonica.,nudges the ball while licking her other hand.,grabs another cup and pours the ice into a glass.,,gold1-reannot,pos,unl,pos,pos,n/a,A male and female reporter attempt to throw the balls at the cups.,The woman\nanetv_LB2P_KH0W2I,17756,Two women are washing dishes in the kitchen. They,go back and forth over the kitchen.,are washing dishes serving back and forth.,are working their head.,\"are sucked in, drifting.\",,gold0-orig,pos,unl,unl,unl,n/a,Two women are washing dishes in the kitchen.,They\nanetv_LB2P_KH0W2I,17757,They go back and forth over the kitchen. The scene,is in very fast motion.,shows the french windows filled with guests.,switches to several people playing the sport.,transitions to a person mowing the lawn.,starts and dusty to appearance where to see the home paper is.,gold0-reannot,pos,unl,unl,unl,unl,They go back and forth over the kitchen.,The scene\nanetv_BII4aKnegaU,13814,A small group of people are seen taking a spin class together that leads into a man speaking to the camera. Shots of the gym,are shown that lead into another cycling class with the man leading the group and still speaking to the camera.,are shown as more shots are shown of them jumping out of a shot.,are shown on many goals.,performing are shown followed by more people stepping into sandy.,are shown followed by a man practicing the same shots.,gold0-orig,pos,unl,unl,unl,unl,A small group of people are seen taking a spin class together that leads into a man speaking to the camera.,Shots of the gym\nanetv_OqLUp37WKMA,17873,One scores a goal and is shown several more times again. The men,smile to one another and continue playing the sport.,continue cheering while cheering to one another.,go back and forth numerous times and almost being disappointed in slow motion.,jump ropes high with each other to different moves.,are interviewed in slow motion while others watch from the sidelines.,gold0-orig,pos,unl,unl,unl,unl,One scores a goal and is shown several more times again.,The men\nanetv_OqLUp37WKMA,12741,\"A soccer player is held back from kicking a soccer ball on a field by a referee on the field. two teams play soccer in an outdoor field in front of an audience, the black and white team\",makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience.,pink team anda the players are running to see one person kick a ball past the players.,run behind corner to get to the ball followed by the player in a red shirt explaining again to the court.,moving through an orange field consisting of the yellow ball thrown towards the team.,,gold0-orig,pos,unl,unl,unl,n/a,A soccer player is held back from kicking a soccer ball on a field by a referee on the field.,\"two teams play soccer in an outdoor field in front of an audience, the black and white team\"\nanetv_OqLUp37WKMA,12742,\"Two teams play soccer in an outdoor field in front of an audience, the black and white team makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience. Several more goals\",are made by the black and white team on the soccer field before the scene fades.,are shown as well as a group of people around in sides turn and play shuffle hitting the ice.,are shown as the group walk by as some of the players continue to play.,are shown of the contestants start in their pull until the event appears and explains the score.,are shown as well as other team mates throwing each other over the net and scoring at the goal.,gold0-orig,pos,unl,unl,unl,unl,\"Two teams play soccer in an outdoor field in front of an audience, the black and white team makes a goal and celebrates by smiling and clapping each others hands and waiving at the audience.\",Several more goals\nanetv_OqLUp37WKMA,17872,A small group of men are seen running around a field playing soccer. One,scores a goal and is shown several more times again.,continue dancing around the studio while people watch and watch.,is then shown in several clips playing tennis.,throws the ball back and fourth while still speaking.,players are shown playing against one another.,gold0-orig,pos,unl,unl,unl,unl,A small group of men are seen running around a field playing soccer.,One\nanetv_Srpn1NaBueI,16477,\"A man sits on a horse holding a rope with a loop while a group of men stand on his side. Suddenly, a calf runs and the man\",catch the calf with the loop of the rope.,runs flipping after the calf.,rides up the horse with the rope attached with the rope tight to the calf.,grabs it and walks.,gets the glove attached to the cow.,gold1-orig,pos,unl,unl,unl,unl,A man sits on a horse holding a rope with a loop while a group of men stand on his side.,\"Suddenly, a calf runs and the man\"\nanetv_Srpn1NaBueI,15590,The gate opens and he ropes a small animal and throws it on the ground and ties its back lets. He,stands up and runs to get back on the horse.,stands behind a top fence and peers out the twigs of the camera.,turns back to the grass and walks back to the road.,runs to the next horse and grabs the ropes that looks like an open exercise.,runs out through his lasso work battery and ties up a calf and a calf.,gold0-orig,pos,unl,unl,unl,pos,The gate opens and he ropes a small animal and throws it on the ground and ties its back lets.,He\nanetv_Srpn1NaBueI,16478,\"Suddenly, a calf runs and the man catch the calf with the loop of the rope. Then, the man\",rises the calf and throw on the ground and tie tie the calf.,lassos and ties to the person again then slides down the rope to few left.,takes a t hose and runs jumps and holds a high rope.,bounce back and down on the ground wearing a snowboard.,lets the rope fall into the ground out of a bin.,gold0-orig,pos,unl,unl,unl,unl,\"Suddenly, a calf runs and the man catch the calf with the loop of the rope.\",\"Then, the man\"\nanetv_Srpn1NaBueI,15589,A man is sitting on top of a horse. The gate,opens and he ropes a small animal and throws it on the ground and ties its back lets.,is opened and the man is in the water doing tricks with the rope.,\"is released, a red horse is standing in the stands by the side.\",is released as he rolls over.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is sitting on top of a horse.,The gate\nlsmdc1035_The_Adjustment_Bureau-85435,14600,A lovely woman in a silk spaghetti - strap dress with a black lace bodice emerges bashfully. She,\"grips two high heels, a coat, and an open champagne bottle which she sets on the counter.\",\"lifts the curious egg on her leg, while it sweeps the make up as she goes.\",\"nibbles his lips, and kisses her cheek passionately.\",eats an ice cream chocolate cone as they see the movements.,applies warm cloth over the rippling surface of a lace.,gold0-orig,pos,unl,unl,pos,pos,A lovely woman in a silk spaghetti - strap dress with a black lace bodice emerges bashfully.,She\nlsmdc1035_The_Adjustment_Bureau-85435,14593,\"Later, people hang their heads. A woman\",hands off a slip of paper.,leads a group of higher graves.,sets down a tea bag on a toilets.,jog past the window.,opens a letter to a grave.,gold0-orig,pos,unl,unl,unl,unl,\"Later, people hang their heads.\",A woman\nlsmdc1035_The_Adjustment_Bureau-85435,14595,Someone leaves the Elegant Function Room. Then a newscast,shows on a tv.,shows a storeroom far.,shows someone standing inside a large spacious room.,shows someone at a conference room.,shows her leaving the park.,gold0-orig,pos,unl,pos,pos,pos,Someone leaves the Elegant Function Room.,Then a newscast\nlsmdc1035_The_Adjustment_Bureau-85435,14596,Then a newscast shows on a tv. Now someone,stands alone in a grand formal hallway.,bears their tipsily at each other.,eyes someone's photo on the dingy boxed machine.,sits at the front of the mirrored room.,,gold1-orig,pos,unl,pos,pos,n/a,Then a newscast shows on a tv.,Now someone\nlsmdc1035_The_Adjustment_Bureau-85435,14599,Someone straightens his New York shaped lapel pin. Someone,looks to the row of closed stall doors.,holds it against her face.,spreads his lips wide.,slackline charges other dancers and hurdles onto a parked riverside.,shows someone an elegant furry cardigan and hands.,gold0-orig,pos,unl,unl,unl,unl,Someone straightens his New York shaped lapel pin.,Someone\nlsmdc1035_The_Adjustment_Bureau-85435,14589,\"Now on a downtown rooftop, four gentlemanly figures cross to the guard rail, each in a fedora, overcoat and necktie. One\",is the mustached young man.,\", iron girl holds a jar as its tray is spread down to reveal the fake meat.\",ranking troops young students hover nearby.,\", his father watches him pass and takes out the pair of scissors and puts them in the pocket.\",\"shoots at someone who lies motionless, gripping a black blanket.\",gold0-orig,pos,unl,unl,unl,pos,\"Now on a downtown rooftop, four gentlemanly figures cross to the guard rail, each in a fedora, overcoat and necktie.\",One\nlsmdc1035_The_Adjustment_Bureau-85435,14590,\"In the suite, someone joins someone. Someone\",aims the remote at the tv.,carries a tray of hors d'oeuvres while one watches him go.,picks up his bag and points it at someone.,reaches up and takes a note.,goes back to sleep.,gold1-orig,pos,unl,unl,unl,pos,\"In the suite, someone joins someone.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85435,14592,Someone tosses a tie at someone. He,eyes its blue and red stripes.,eagerly reaches for his shoe.,grins as someone watches the video.,grins and washes his face in his own hand.,,gold0-orig,pos,unl,unl,pos,n/a,Someone tosses a tie at someone.,He\nlsmdc1035_The_Adjustment_Bureau-85435,14591,Someone aims the remote at the tv. Someone,tosses a tie at someone.,\"turns around the living room table, lights blinds.\",is wearing sodden caped.,\"stares at someone, then lifts his head and drags his chest toward himself.\",,gold0-reannot,pos,unl,unl,unl,n/a,Someone aims the remote at the tv.,Someone\nlsmdc1035_The_Adjustment_Bureau-85435,14597,\"Now someone stands alone in a grand formal hallway. Head bowed, he\",holds his hands in his pockets.,joins people.,jogs down a hallway.,peers into a microphone.,leads her to an elevator.,gold0-reannot,pos,unl,unl,unl,unl,Now someone stands alone in a grand formal hallway.,\"Head bowed, he\"\nanetv_CMTiL1ctmDs,1425,The man removes the hookah from his mouth and blows out rings of smoke. The man,\"sucks on the hookah again, blows out smoke, sucks it back in and this time just blows out smoke.\",hits the nose of the dog and walks away.,continues to blow smoke tattered puffs on his cigarette pipe.,exhales smoke throws the smoke into the air.,blows smoke over the hookah with the bottle then walks towards the camera again.,gold0-orig,pos,unl,unl,unl,pos,The man removes the hookah from his mouth and blows out rings of smoke.,The man\nanetv_CMTiL1ctmDs,9080,The boy blows smoke rings through the air. The man,sucks back in the smoke ring floating in the air.,hides and sits on the floor.,looks at himself in the mirror.,walks up to fence around the child.,,gold0-orig,pos,unl,unl,unl,n/a,The boy blows smoke rings through the air.,The man\nanetv_CMTiL1ctmDs,1424,\"A young man wearing a hat, shirt and jeans is standing in a kitchen and sucking on a hookah. The man\",removes the hookah from his mouth and blows out rings of smoke.,is then shown drinking a glass of water and begins pouring it all over the man's body.,is then shown smoking a cigarette as he demonstrates how to use them.,flaps the orange hookah float over his mouth and falls one.,\"is holding a long pipe, sparks mouthwash in the air.\",gold0-orig,pos,unl,unl,unl,unl,\"A young man wearing a hat, shirt and jeans is standing in a kitchen and sucking on a hookah.\",The man\nanetv_CMTiL1ctmDs,9079,A young man sucks smoke through a hookah pipe. The boy,blows smoke rings through the air.,blows out smoke.,blows his nose and inhales the smoke.,walks up to walkway and continues smoking.,points at the camera.,gold1-orig,pos,pos,pos,pos,pos,A young man sucks smoke through a hookah pipe.,The boy\nlsmdc1023_Horrible_Bosses-82095,756,She pulls the patient's trousers down. She,leans in towards the patient's crotch.,\"runs up to the elevator, which snaps upside and lowers.\",kisses someone on the lips.,pulls her into an airy embrace and drags the door closed.,belches for the shrimp.,gold0-orig,pos,unl,unl,unl,unl,She pulls the patient's trousers down.,She\nlsmdc1023_Horrible_Bosses-82095,757,She leans in towards the patient's crotch. The patient,\"sits up, laughing.\",hangs up and hurries toward her.,cuts someone's face.,is younger than someone.,is still sitting in an armchair.,gold1-orig,pos,unl,unl,pos,pos,She leans in towards the patient's crotch.,The patient\nlsmdc3089_XMEN_FIRST_CLASS-43449,6117,Someone touches his finger to his temple and closes his eye. He,envisions the cargo ship.,\"turns to someone, who gazes at the golden egg.\",sees a sign hanging from a safe.,puts on his coat.,gives a stunned shrug.,gold0-orig,pos,unl,pos,pos,pos,Someone touches his finger to his temple and closes his eye.,He\nlsmdc3089_XMEN_FIRST_CLASS-43449,6114,\"Above, the mutants' sleek jet arrives. It\",soars low over the american fleet.,punches someone in the crotch bar 3 above someone.,\"glides further out, bumping along the pitch, through the surrounding sea.\",lands on a purple pillow.,speeds towards the rear of the ship.,gold0-orig,pos,unl,unl,unl,pos,\"Above, the mutants' sleek jet arrives.\",It\nlsmdc3089_XMEN_FIRST_CLASS-43449,6118,\"He envisions the cargo ship. Inside, a crew member\",lies on the floor.,chases into the swarm.,leads them into the tent.,\"rushes into the lifeboat and fires, forcing his body into the water.\",blasts a protective cannon.,gold0-orig,pos,unl,unl,pos,pos,He envisions the cargo ship.,\"Inside, a crew member\"\nlsmdc3089_XMEN_FIRST_CLASS-43449,6112,The admiral grimly lowers his binocular. The officers,take off their hats and put on helmets and life vests.,heaped someone adverts the vet.,surround the flare with fall.,meet his foot gaze and descend slowly.,escort him alone across a dirt littered with dust and damp snow.,gold0-orig,pos,unl,unl,unl,unl,The admiral grimly lowers his binocular.,The officers\nlsmdc3089_XMEN_FIRST_CLASS-43449,6116,\"In the cockpit, someone eyes the ships. The others\",ride in the cabin.,catch her from behind.,drag someone a sheet through the side of the chamber.,\"celebrate, then falls into the water on impact.\",run back into the water and signal the recruits as they look in the scrapyard.,gold0-orig,pos,unl,unl,unl,pos,\"In the cockpit, someone eyes the ships.\",The others\nlsmdc3089_XMEN_FIRST_CLASS-43449,6113,\"On the US - naval bridge, two triple - barreled cannons take aim. Fleet\",reports all weapons ready.,knock the attacking companion down the alley.,kicks across the cracked concrete floor.,find a man on a deck fort.,turn down the road.,gold0-orig,pos,unl,unl,unl,unl,\"On the US - naval bridge, two triple - barreled cannons take aim.\",Fleet\nlsmdc3089_XMEN_FIRST_CLASS-43449,6115,It soars low over the American fleet. The admiral and his men,watch the unique aircraft pass by.,roll their families in a skillet.,follow their prisoners into the blaze of traveling members of the city.,race along the field.,go upward as someone runs through.,gold0-orig,pos,unl,unl,unl,unl,It soars low over the American fleet.,The admiral and his men\nlsmdc3089_XMEN_FIRST_CLASS-43449,6111,Someone grabs someone's throat and snarls. Someone,drops someone to the floor.,manipulates his books toward someone.,picks up a bottle of honey.,struts forward the stage.,,gold0-orig,pos,unl,unl,pos,n/a,Someone grabs someone's throat and snarls.,Someone\nanetv_6rG5dBgwBDc,9359,\"A woman is talking before she starts preparing and decorating the tree. She applies a plethora of ornaments and lights, and the tree\",is shown several different states of decoration.,in a bowl and scoops them down.,continues to cook christmas tree.,wraps sand around the pile of flowers.,is still waving the ball over the tree.,gold0-orig,pos,unl,unl,unl,unl,A woman is talking before she starts preparing and decorating the tree.,\"She applies a plethora of ornaments and lights, and the tree\"\nanetv_6rG5dBgwBDc,9358,Snowflakes are shown falling down the screen before we see a christmas tree. A woman,is talking before she starts preparing and decorating the tree.,sits on top of the lit tree and can be seen kneeling back.,stands wrapped in the black skies over falling.,is seen mowing the lawn with an arm.,,gold0-orig,pos,unl,unl,unl,n/a,Snowflakes are shown falling down the screen before we see a christmas tree.,A woman\nanetv_BxyOAXTWkzk,3753,A man helps a woman mount a horse in the woods. She,feeds the horse apples as they ride through the wooded paths.,jumps into the water to a slope.,spots the push horses and jumps off the horse and ties it up.,jumps towards the horse while a woman watches.,jerks her head forward.,gold1-orig,pos,unl,unl,unl,pos,A man helps a woman mount a horse in the woods.,She\nanetv_BxyOAXTWkzk,3752,\"Several people are seen in different scenes, walking in public. A man\",helps a woman mount a horse in the woods.,pushes a few bongo balls in a desert trolley.,starts up the part of a mountain on the street.,is seen putting on logs and is sitting down.,,gold1-orig,pos,unl,unl,unl,n/a,\"Several people are seen in different scenes, walking in public.\",A man\nanetv_pjF6uBZHVRE,11270,The camera cuts to four other competitors watching. The camera,cuts to a man in white and blue celebrating while holding a flag against his black.,shows two men putting their wet swords away one fourth.,\"returns to them playing retrieved various things, but still buttoning them.\",zooms in and their shots boys head over.,,gold0-orig,pos,unl,unl,unl,n/a,The camera cuts to four other competitors watching.,The camera\nanetv_pjF6uBZHVRE,11269,Another man in white and blue vaults and is successful. The camera,cuts to four other competitors watching.,is half - aimed.,gives two athletes meeting in front of a team where they start to watch the video as it turns away.,spins while a man holding a shovel looks along a hole he is wearing.,cuts to each kick of a rope that both teams compete fencing with one another and joining nervous points.,gold0-orig,pos,unl,unl,unl,unl,Another man in white and blue vaults and is successful.,The camera\nanetv_pjF6uBZHVRE,11268,The starting list for the men's pole vault event is displayed over the background of the competition area. Multiple vaulters,\"attempt to vault, one after another, some successfully and some not.\",vaulters about some high jump.,\"practicing lifting the pro lift and weightlifting, heading.\",are shown pulling the border of the pit.,fall out on a ramp.,gold0-reannot,pos,unl,unl,unl,pos,The starting list for the men's pole vault event is displayed over the background of the competition area.,Multiple vaulters\nanetv_N2zoVF76Pgg,1215,Several ball players enter an indoor court. They,engage in a game of soccer together.,taunt the ball with tennis rackets.,are getting ready for race.,pick up the ball and throw it in a goal.,,gold1-orig,pos,unl,unl,pos,n/a,Several ball players enter an indoor court.,They\nanetv_N2zoVF76Pgg,11656,A crowd of people are watching a game and cheering. Players,are playing a game of indoor soccer.,run into the goal and applaud for cheering for a game.,throw their flags in bronze marathon and another individual hits them.,stands in a square on a football field.,run at each other in a line as they perform.,gold0-orig,pos,unl,unl,unl,unl,A crowd of people are watching a game and cheering.,Players\nanetv_N2zoVF76Pgg,1216,They engage in a game of soccer together. They,kick the ball back and forth to each other.,boxer demonstrates kicking the ball.,practice hockey and evaluating supplies.,play a game of curling.,,gold0-orig,pos,unl,unl,unl,n/a,They engage in a game of soccer together.,They\nanetv_Ue90f5r-2Qw,9219,He is holding a violin and string in his hands. He,talks about how to play it and a harmonica.,continues to play the guitar too.,is playing an accordian on the stage.,picks up a small curling tool and begins talking.,repeats all the action around while he talks.,gold0-orig,pos,unl,unl,unl,unl,He is holding a violin and string in his hands.,He\nanetv_Ue90f5r-2Qw,9218,A man is talking inside a room. He,is holding a violin and string in his hands.,shows how to disorder the nails.,is playing the flute.,blows on an iron and using a tool to iron it.,is then demonstrating how to repair the rod with a blade.,gold0-orig,pos,unl,unl,unl,pos,A man is talking inside a room.,He\nanetv_Ue90f5r-2Qw,4463,A man is seen speaking to the camera while holding up a violin. He,plays the instrument on his shoulders and continues to demonstrate how to play.,continues to spin himself around to play the bongos to his friend.,begins playing the instrument all around the room while still speaking to the camera.,puts down his hat and keys and walks away.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera while holding up a violin.,He\nanetv_Ue90f5r-2Qw,4464,He plays the instrument on his shoulders and continues to demonstrate how to play. He,moves the instrument around over and over again while still stopping to speak to the camera.,beats a rhythm then lines the music.,stops struggling and continues explaining.,ends the gesture and walks away.,of his karate moves is shown while people watching him play on the ice.,gold1-reannot,pos,unl,unl,unl,unl,He plays the instrument on his shoulders and continues to demonstrate how to play.,He\nlsmdc3018_CINDERELLA_MAN-7912,14261,\"Suspended off her feet, someone blinks thoughtfully as she eyes him. Someone\",grins and kisses her.,\"drops lower, her features set in a faint bashful smile as he watches her.\",sits down and slowly lifts his leg.,scratches his own hand.,stops and touches his hands to his shoulder.,gold1-orig,pos,pos,pos,pos,pos,\"Suspended off her feet, someone blinks thoughtfully as she eyes him.\",Someone\nlsmdc3018_CINDERELLA_MAN-7912,14264,\"Pouting slightly, someone resolutely juts out her chin. Now, someone\",marches across a busy street.,drives past a tall bridge building.,walks through a gate into a waterfront.,leads someone back to a shelter in a courtyard several inches of tall.,\"leads off a long, black stretch.\",gold1-orig,pos,unl,unl,unl,unl,\"Pouting slightly, someone resolutely juts out her chin.\",\"Now, someone\"\nlsmdc3018_CINDERELLA_MAN-7912,14265,\"Behind her, two vendors sit at a folding table and men in business suits and fedoras follow different paths. Someone\",crosses a carpet to a residential building's posh entry.,looks up at the solitary expanse of helpless children lying on the hospital bed painting a bloody grizzly.,\"skims the garden paper as she runs up the field, his breath cast in the shadows.\",arrives in a black room with two huge windows and appears with smoke replacing them.,,gold1-orig,pos,unl,unl,unl,n/a,\"Behind her, two vendors sit at a folding table and men in business suits and fedoras follow different paths.\",Someone\nlsmdc3018_CINDERELLA_MAN-7912,14263,\"He slings someone over his shoulder. Pouting slightly, someone\",resolutely juts out her chin.,notices in his rear view mirror.,hops up onto the settee.,follows his dog to the open train and notices his cruiser slack.,tilts a page over to someone.,gold0-orig,pos,unl,unl,unl,unl,He slings someone over his shoulder.,\"Pouting slightly, someone\"\nlsmdc3018_CINDERELLA_MAN-7912,14268,\"Someone lifts her knuckles to the wood again. Inside, someone\",walks to the door and checks the peephole.,rummages across the bed and grasps it and puts it in her mouth.,scans his room then ducks down toward the extending tower.,reads through the pages.,holds out her hands to her opponent.,gold0-orig,pos,unl,unl,unl,unl,Someone lifts her knuckles to the wood again.,\"Inside, someone\"\nlsmdc3018_CINDERELLA_MAN-7912,14266,\"Someone crosses a carpet to a residential building's posh entry. Inside, she\",faces an apartment door.,peeks inside and climbs out.,\"jumps off, suggestively stopping.\",rides the car down a street.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone crosses a carpet to a residential building's posh entry.,\"Inside, she\"\nlsmdc3018_CINDERELLA_MAN-7912,14267,\"Inside, she faces an apartment door. Someone\",lifts her knuckles to the wood again.,takes it in her arms.,does a small drop of knob.,flinches as they separate.,nods while he hurries down a staircase.,gold0-reannot,pos,unl,unl,unl,pos,\"Inside, she faces an apartment door.\",Someone\nanetv_ZoKZTceDTLA,14550,We see another man working on the floor. We,see a man laying tile in another room.,is then shown as the man is talking and gesturing as he removes his paintball job.,see a man and a boy laying on the bars.,see an animated opening screen followed by people in preparation for shot.,,gold0-orig,pos,unl,unl,pos,n/a,We see another man working on the floor.,We\nanetv_ZoKZTceDTLA,14551,We see a man laying tile in another room. Two men,are in the same room working on different projects.,throw weights and run off the bar.,give plaster to another wall.,stand on the floor together.,,gold0-orig,pos,unl,pos,pos,n/a,We see a man laying tile in another room.,Two men\nanetv_ZoKZTceDTLA,14549,We see a man talking while walking through a house. We,see another man working on the floor.,see a man taking the ball gear and hitting balls for a goal.,see people playing tricks inside a yellow helicopter.,see the man raking snowboards really quickly and holds up the shovel at a really old.,,gold0-orig,pos,unl,unl,unl,n/a,We see a man talking while walking through a house.,We\nanetv_ZoKZTceDTLA,14552,Two men are in the same room working on different projects. We,see the man talking to the camera again.,\"are in the vault with paintball, matadors fighting experience.\",watch the body and briefly enter an office followed by continuing to plaster the wall.,are being held by five different obstacles on the wall.,,gold0-reannot,pos,unl,unl,unl,n/a,Two men are in the same room working on different projects.,We\nanetv_F559bkkKSp8,646,A group of children are riding the camels as they walk. A woman,\"follows behind, watching.\",stands while doing rollerblading stunts.,continues surfing over and over in several shots.,helps people keep the poles in their enclosure.,is pulling a small dirt horse.,gold0-orig,pos,unl,unl,unl,unl,A group of children are riding the camels as they walk.,A woman\nanetv_F559bkkKSp8,645,A man walks a couple of camels along the ocean front. A group of children,are riding the camels as they walk.,talk to the camera as they walk on and down the river.,walk across a stage in a concert room.,\"ride a hot boat in the water, there are people sailing in sea.\",walk all around shore in an gren area with other people watching them on the side.,gold0-orig,pos,unl,unl,pos,pos,A man walks a couple of camels along the ocean front.,A group of children\nanetv_F559bkkKSp8,3795,A person is seen riding a camel long a beach lead by a man in front. More camels,appear from behind and follow one another as a woman watches.,is seen riding the camels as well as them walking around cheese and walking along a gravel path.,are seen all over them and continuing to ride around the water.,come down and bump the calf on a plate in the end.,,gold0-orig,pos,unl,unl,unl,n/a,A person is seen riding a camel long a beach lead by a man in front.,More camels\nlsmdc0011_Gandhi-52349,6395,\"Someone meets his eyes - - a smile that shelters someone's vulnerability, returns his love. The very English, very steadfast someone\",fights to contain his emotions.,is at the stake camp for the funeral.,is blowing the surprise to his friend.,has never been happening.,is still looking at his chunky build.,gold0-orig,pos,unl,unl,unl,unl,\"Someone meets his eyes - - a smile that shelters someone's vulnerability, returns his love.\",\"The very English, very steadfast someone\"\nanetv_D1E_KJRxGvQ,16571,\"An athlete performs on the horse pommel jumping and doing front flippings. Then, the athlete stand on the border of the pommel horse and\",performs a double backflip.,moving just a few steps away.,receive another triple jump and flip back to form somersaults.,perform a long jump roping in front of a crowd by a group of the spectators in the background.,perform tricks and jumping and while moving a rope to measure.,gold0-orig,pos,unl,unl,unl,unl,An athlete performs on the horse pommel jumping and doing front flippings.,\"Then, the athlete stand on the border of the pommel horse and\"\nanetv_D1E_KJRxGvQ,6738,A girl jumps onto a balance beam. She,does a gymnastics routine on the balance beam.,performs a routine against the balance beam.,does a gymnastics routine on the balance beam and catches on.,\"jumps and performs, to the cheers up of the beam.\",does a flip onto the balance beam and lands on the beam.,gold0-orig,pos,unl,unl,pos,pos,A girl jumps onto a balance beam.,She\nanetv_D1E_KJRxGvQ,16572,\"The, the athlete continues jumping a doing frontflip and backflip. Then, the athlete\",\"does a cartwheel, flip three times and land stand on the mat.\",successfully hammer the base of the high bar.,stops and takes the jump for himself.,\"jump, and jump vaults repeatedly.\",,gold1-orig,pos,unl,pos,pos,n/a,\"The, the athlete continues jumping a doing frontflip and backflip.\",\"Then, the athlete\"\nanetv_D1E_KJRxGvQ,6739,She does a gymnastics routine on the balance beam. She,dismounts and lands on a mat.,do jumping on the balance beam and her feet from her seat.,jumps back and lands on the edge of the pool.,\"is on a beam of a indoor gymnasium, where she is doing gymnastics on a mat.\",does a routine on the balance beam beneath the mat.,gold0-reannot,pos,unl,unl,pos,pos,She does a gymnastics routine on the balance beam.,She\nanetv_8NRv-75RlPI,10558,\"An elliptical trainer is shown, as well as its components. A woman\",is shown working out on the elliptical.,rafting in the water using the oars as they play another river.,takes puffs from a wall of spray in the bottom of the mat.,puts in a storage room and vacuum.,talks in front of the camera while talking and exercising with the rowing machine.,gold1-orig,pos,unl,unl,unl,pos,\"An elliptical trainer is shown, as well as its components.\",A woman\nanetv_YamDoDK71Ds,5238,She talks about her love for belly dancing and stuff. Then you,see her a different purple belly dancing outfit dancing outside.,wash the belly in the sink and put the shampoo in the mouth and take seen.,engage in the guitar and silky demonstrations.,\"rove, your dance split and people outdoors.\",get it into your mouth before finally turning it off to finish her.,gold0-orig,pos,unl,unl,unl,unl,She talks about her love for belly dancing and stuff.,Then you\nanetv_YamDoDK71Ds,5236,A woman in a belly dancing outfit is dancing moving her body very strategically. She,has her hands up in the air moving as she moves her hips very quickly.,moves gracefully into the room and walks around to crack him.,does another man playing and doing yet again and again.,\"sings and does several different moves, the woman in blue outfit.\",continues to swing and twirls around the bar as she does the two flips.,gold0-orig,pos,unl,unl,pos,pos,A woman in a belly dancing outfit is dancing moving her body very strategically.,She\nanetv_YamDoDK71Ds,5237,She has her hands up in the air moving as she moves her hips very quickly. She,talks about her love for belly dancing and stuff.,knits her fingers briefly as someone comes up above her and gives her an examination.,puts her hands up and lifts the frame to watch as she uses the hula hoop.,weigh on the ground then finishes and smiles down until the head is tossed into strips to move a tiny bundle.,\"moves back and forth, and then moves her legs forward.\",gold1-reannot,pos,unl,unl,unl,pos,She has her hands up in the air moving as she moves her hips very quickly.,She\nanetv_4XavNhCs-Do,12199,He is also showing tight rope walking from one end to another. Then the person in black also,walks on a tight rope.,pull the kite up in place.,plows through the trees behind him onto the grass.,demonstrates how to use the machine.,appear using an object as they explain the tools to the technique games.,gold0-orig,pos,unl,unl,unl,unl,He is also showing tight rope walking from one end to another.,Then the person in black also\nanetv_4XavNhCs-Do,12198,The person in blue is demonstrating how the rope is fastened from the rocks. He,is also showing tight rope walking from one end to another.,demonstrates how to use the machine to cut carpet out of the main sub.,spikes the rock against the wall.,turns to the camera and lights some toilet paper on the client's wheels.,,gold0-orig,pos,unl,unl,unl,n/a,The person in blue is demonstrating how the rope is fastened from the rocks.,He\nanetv_4XavNhCs-Do,12197,They are seated at a very high altitude in the mountains. The person in blue,is demonstrating how the rope is fastened from the rocks.,walks to the bottom all the skis.,completes their work out with their new hands.,walks to the shore above an uneven mountain.,,gold0-orig,pos,unl,unl,pos,n/a,They are seated at a very high altitude in the mountains.,The person in blue\nanetv_4XavNhCs-Do,12196,\"There is man wearing a blue shirt and another man in black seated on a rock, talking about rock climbing. They\",are seated at a very high altitude in the mountains.,check and fun department and resumes in several rooms to do it to the back.,are painting the wall with a piece of wood.,pull the ball off of yellow inflated pieces but start to fall.,\"are wrapped in the blades inside a building, and he is pulling another rope and a rope attached to a rope.\",gold0-orig,pos,unl,unl,unl,unl,\"There is man wearing a blue shirt and another man in black seated on a rock, talking about rock climbing.\",They\nlsmdc3047_LIFE_OF_PI-21935,586,Now young someone sits beside a glimmering river. He,stands and stumbles into the water.,drops the glass into a bin.,\"jumps from its dangles in the water, and offers her the life jacket.\",puts his hand on the beams of a hangar.,shakes his face slightly.,gold1-orig,pos,unl,unl,unl,unl,Now young someone sits beside a glimmering river.,He\nanetv_1scjpxusQx0,8395,A montage of still shots shows up. A collection of clips,show people jumping rope and performing on a stage in a contest.,are shown of different costumes being taken out onto a volkswagen utility boat.,are shown on the screen followed by a man in a striped shirt and waiting.,of captured on the figure is shown in white up in profile.,is shown of a girl riding a snowboard.,gold1-orig,pos,unl,unl,unl,unl,A montage of still shots shows up.,A collection of clips\nanetv_1scjpxusQx0,8396,A collection of clips show people jumping rope and performing on a stage in a contest. The end title credits,show on a black screen.,are shown with people walking on it and trying to bow to the camera.,are shown on the screen and two words appear.,appears on the screen as they dance.,shows the title flip.,gold1-orig,pos,unl,unl,unl,unl,A collection of clips show people jumping rope and performing on a stage in a contest.,The end title credits\nanetv_1scjpxusQx0,18053,A large group of people are seen standing around and speaking to one another. Several clips,are shown of people afterwards jumping rope with one another.,are shown of people hitting balls and hitting balls in front of each other.,are shown of people losing big throws and crashing into one another.,are shown of people playing beer pong while an audience watches on the side.,are shown of men playing soccer in various locations while a man retrieves balls.,gold1-orig,pos,unl,unl,pos,pos,A large group of people are seen standing around and speaking to one another.,Several clips\nanetv_1scjpxusQx0,18054,Several clips are shown of people afterwards jumping rope with one another. The people,compete against one another performing jump roping tricks and routines one after the other.,continue riding around the boat and ends with several people passing over the waves.,continue to ride around in the sides and sail around in an end.,continue running around with one another and stacking different items and moving around together.,,gold0-orig,pos,unl,unl,unl,n/a,Several clips are shown of people afterwards jumping rope with one another.,The people\nanetv_8ZjUZbykp4U,16232,A man is seen sitting behind a drum set playing on the drums. The camera,pans all around his movements while he speaks to the camera.,pans around another people playing instruments in hand enthusiastically playing drums.,continues to speak as well as smiling to the camera.,pans around to many other people playing instruments in the arena.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seen sitting behind a drum set playing on the drums.,The camera\nanetv_8ZjUZbykp4U,16233,The camera pans all around his movements while he speaks to the camera. More shots,are shown of him playing as well as singing and other people playing instruments around him.,are shown of him performing as well and approaches followed by this barbell man leading in close.,are shown of people brushing and hitting them without back to his camera.,are shown of him tapping a button with his hair still speaking to the camera.,are shown of others playing dodgeball as well as riding down and speaking to one another.,gold0-orig,pos,unl,unl,unl,unl,The camera pans all around his movements while he speaks to the camera.,More shots\nlsmdc3008_BAD_TEACHER-4082,9739,She opens her mouth to receive his approaching lips but he detours upwards and plants a kiss on her forehead. Someone,forces a demure smile.,reaches out to punch someone out.,stares at the cluttered windows center.,looks at someone and nods.,,gold1-orig,pos,unl,unl,pos,n/a,She opens her mouth to receive his approaching lips but he detours upwards and plants a kiss on her forehead.,Someone\nlsmdc0028_The_Crying_Game-63772,7485,He begins to undo the buttons. He,raises her to her feet and leads her toward the bed.,straps on the seat blazer worn.,lighted titles appear on the screen.,\"goes into frame a third time, which contains the camera.\",,gold0-orig,pos,unl,unl,unl,n/a,He begins to undo the buttons.,He\nlsmdc0028_The_Crying_Game-63772,7469,\"Then the door closing and the Daimler pulling off. When the Daimler has passed someone, he\",turns around and walks back.,has completely disturbed the darkness of the iron note to both.,seems to become aware of the kayak rider.,takes the central photo book from someone.,,gold0-orig,pos,unl,pos,pos,n/a,Then the door closing and the Daimler pulling off.,\"When the Daimler has passed someone, he\"\nlsmdc0028_The_Crying_Game-63772,7484,His hands travel up to her blouse. He,begins to undo the buttons.,switches on the tap.,holds it up as he gazes at the closing.,shuts his laptop at his bedside.,\"continues brushing his teeth, looking up at someone.\",gold0-orig,pos,unl,unl,unl,unl,His hands travel up to her blouse.,He\nlsmdc0028_The_Crying_Game-63772,7468,\"A burly security man emerging from the car, walking toward the old gent. Someone\",\"reaches the car just before he does, and passes between him and the open door.\",leads someone onto a grave where the shuffleboard has been removed.,wears a boyish wig.,throws someone in the street.,,gold1-orig,pos,unl,pos,pos,n/a,\"A burly security man emerging from the car, walking toward the old gent.\",Someone\nlsmdc0028_The_Crying_Game-63772,7463,Someone turns around to look at him. People,get out of the car.,jumps to the bottom of the stairs and stands up.,are in someone's hall.,split out of the booth.,look back at him.,gold0-orig,pos,pos,pos,pos,pos,Someone turns around to look at him.,People\nlsmdc0028_The_Crying_Game-63772,7470,\"When the Daimler has passed someone, he turns around and walks back. Someone\",smiles and leaps up as he approaches.,has his hands on his knees.,picks up his cue and leaves.,is dragged it out of the room.,moves away from him.,gold0-orig,pos,unl,unl,pos,pos,\"When the Daimler has passed someone, he turns around and walks back.\",Someone\nlsmdc0028_The_Crying_Game-63772,7489,\"We see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark. Someone\",draws her slowly up to a standing position.,people stand in the doorway.,glares nowhere in a state of shock.,shuffles across the busy street.,,gold0-orig,pos,unl,pos,pos,n/a,\"We see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark.\",Someone\nlsmdc0028_The_Crying_Game-63772,7464,\"They walk down the street, down from the brothel - cum - club, where there is a cafe - bar with some tables outside. They\",take their seats by the tables.,go over the shelves and with the nuns sitting on close.,\"stand stock cars, panic.\",\"are sitting in the chairs behind what we're on, a young lady is sitting at the desk.\",,gold0-orig,pos,unl,unl,pos,n/a,\"They walk down the street, down from the brothel - cum - club, where there is a cafe - bar with some tables outside.\",They\nlsmdc0028_The_Crying_Game-63772,7475,She sits down; he joins her. He,wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more.,holds one hand on one of his candlesticks.,starts to put grass on someone's back and holds her back.,turns his attention to the chuckle girl at the table.,pulls up his coat and hurls it out the window.,gold1-orig,pos,unl,unl,unl,unl,She sits down; he joins her.,He\nlsmdc0028_The_Crying_Game-63772,7480,\"Someone enters, with her new haircut. She\",goes to turn on the light.,walks to the street and find her fiddling with a hair dryer.,grins straight at him and walks out of the room.,\"gets out in the sunshine, walk over to the bed.\",wakes herself in her pajamas.,gold1-orig,pos,unl,unl,unl,unl,\"Someone enters, with her new haircut.\",She\nlsmdc0028_The_Crying_Game-63772,7466,\"Down by the brothel, the door swings open. Someone\",walks like any pedestrian down toward the brothel.,falls out of the ring.,turns cautiously out of view.,watches him give someone a wide kiss.,,gold1-orig,pos,unl,pos,pos,n/a,\"Down by the brothel, the door swings open.\",Someone\nlsmdc0028_The_Crying_Game-63772,7476,He wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more. She,allows herself to be led out.,continues to brush leaves and finishes her nails.,glares at the boy and shakes his head.,reads a bible and shows it to someone.,,gold1-orig,pos,unl,unl,unl,n/a,He wipes the tears from her face with a tissue then dabs the tissue in her drink and wipes some more.,She\nlsmdc0028_The_Crying_Game-63772,7479,She looks in the mirror at it in the dark. Someone,\"enters, with her new haircut.\",lifts a long plank and walks across the room to the inside door.,\"stares at people, who opens the flask to someone.\",is wearing the wig of an ornate white dress.,picks out the scroll of someone.,gold1-orig,pos,unl,unl,unl,unl,She looks in the mirror at it in the dark.,Someone\nlsmdc0028_The_Crying_Game-63772,7481,Her fingers close around his. She,brings her lips to his neck.,keeps up her hands.,\"and someone skirt over, the small of her shoulders unsteady and the shape moves her eyes.\",\"strokes his shirt, and they remain upright.\",,gold0-orig,pos,unl,unl,pos,n/a,Her fingers close around his.,She\nlsmdc0028_The_Crying_Game-63772,7483,He lets them stay there. His hands,travel up to her blouse.,fall from his throat.,\"filled with tears, someone heads over the cliff edge.\",are puting the tank.,fall off in all directions.,gold1-orig,pos,unl,unl,unl,unl,He lets them stay there.,His hands\nlsmdc0028_The_Crying_Game-63772,7465,They take their seats by the tables. We,can see the brothel down the way.,- fake rock papered is being shown from one of them.,sniffs a guy coffee.,joins the corpses dead in prayer.,reaches for the mic.,gold0-orig,pos,unl,unl,unl,unl,They take their seats by the tables.,We\nlsmdc0028_The_Crying_Game-63772,7490,Someone draws her slowly up to a standing position. He,wraps the shirt around her.,\"looks up at her, then glances aside.\",lets go of her hand and stands and walks away.,\"stares at her for a moment, then shrugs.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone draws her slowly up to a standing position.,He\nlsmdc0028_The_Crying_Game-63772,7467,\"The gent makes his way, with gout - ridden slowness, across the pavement, through the passersby, toward the car. A burly security man\",\"emerging from the car, walking toward the old gent.\",is checking his steering seat.,reaches inside the register pocket and opens it.,pulls out a glass of vodka.,\"approaches someone, someone enters.\",gold1-orig,pos,unl,unl,unl,pos,\"The gent makes his way, with gout - ridden slowness, across the pavement, through the passersby, toward the car.\",A burly security man\nlsmdc0028_The_Crying_Game-63772,7472,Someone begins to walk away. Someone,turns around to see someone in front of the cafe.,dials the phone and dials some more.,whispers the boy open hawaii.,holds his wand in his hand and grips it.,\"steps closer, checking the necks of her book.\",gold0-orig,unl,unl,unl,unl,unl,Someone begins to walk away.,Someone\nlsmdc0028_The_Crying_Game-63772,7486,She stretches languorously down on it. She,\"turns on the bed sexily, her face to the mattress.\",sees the bottom of the cave then cycles back towards a lit fish that explode at the vessel quivering.,beats him into the thigh then sits on the bed.,\"hesitates, then lets her mouth wander over her sandwich.\",slides it into a water tank.,gold1-orig,pos,unl,unl,unl,unl,She stretches languorously down on it.,She\nlsmdc0028_The_Crying_Game-63772,7488,\"Someone on the bed, slowly turns. We\",\"see someone from her point of view, coming toward her with someone's white cricket shirt, glowing eerily in the dark.\",glimpse around his father.,spots a battered sedan next to her.,spots the coat outside her cabin.,are in full warm horror.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone on the bed, slowly turns.\",We\nlsmdc0028_The_Crying_Game-63772,7477,People standing in the darkness. He,sits her down in one of the chairs.,\"rides down, holding someone as a blanket.\",gets fallen and is among the shot.,goes over and into someone's bedroom.,,gold1-reannot,pos,unl,unl,pos,n/a,People standing in the darkness.,He\nlsmdc0028_The_Crying_Game-63772,7491,\"From above, we see the figures of people, sleeping on a double bed, both fully clothed. Someone\",\"smokes, then puts out the cigarette.\",backs up to the boy.,hangs up as he rejoins the others.,raises the large object into her hand.,,gold1-reannot,pos,unl,unl,pos,n/a,\"From above, we see the figures of people, sleeping on a double bed, both fully clothed.\",Someone\nlsmdc0028_The_Crying_Game-63772,7473,She goes inside; he follows. She,downs a drink and motions for another.,\"storms over the zoomed corridors, where couples are two drums.\",\"gives him a warm hug, then follows.\",opens the door and goes inside.,opens the door and comes inside.,gold0-reannot,pos,unl,unl,unl,unl,She goes inside; he follows.,She\nanetv_weKPXw4nxKA,5153,A man is seen standing on a porch speaking to the camera in front of a set of drums. The man then,begins playing the drums while looking to the camera.,begins shaving the shoes again and presenting them to the camera.,begins smoking a cigarette while looking off into the distance.,begins playing the instrument while pointing to his movements.,begins playing the instrument while looking off into the distance gradually.,gold0-orig,pos,unl,pos,pos,pos,A man is seen standing on a porch speaking to the camera in front of a set of drums.,The man then\nanetv_weKPXw4nxKA,5154,The man then begins playing the drums while looking to the camera. The man,continues to drum and smiles to the camera.,\"continues digging around and continues playing, then continues playing with the instrument and singing.\",continues playing the drums and ends with looking off.,continues playing the instrument while continuing to play.,continues playing the instrument and ends by looking out.,gold0-orig,pos,unl,pos,pos,pos,The man then begins playing the drums while looking to the camera.,The man\nanetv_AlLg4ZaxDoQ,3937,Young men unpack a car and then carry raft boats in the jungle and pass a rope bridge. Young men,raft in a narrow choppy river on individual boats.,end up in the snow of a snowboarding land boat.,play and resumes the game.,are with people under a bridge outside a river.,,gold1-orig,pos,unl,unl,unl,n/a,Young men unpack a car and then carry raft boats in the jungle and pass a rope bridge.,Young men\nanetv_AlLg4ZaxDoQ,3938,Young men raft in a narrow choppy river on individual boats. The young men,falls from small cascades in the rocky river.,\"pass a river, also, and tie paddle to swim places as they canoeing.\",do water sailing through one of the rafters.,and red teens are crossing the river facing after another.,,gold0-orig,pos,pos,pos,pos,n/a,Young men raft in a narrow choppy river on individual boats.,The young men\nanetv_oDZlW0OgEgg,13660,A man is standing behind a table. He,begins to polish the table in front of him with a rag.,puts the bucket waxed onto the table.,dances with a round machine.,starts throwing darts on a table.,uses a tools to create his picture.,gold0-orig,pos,unl,unl,unl,pos,A man is standing behind a table.,He\nanetv_oDZlW0OgEgg,6872,\"He shows a piece of wood, and begins to strip it with fluid. He then\",polishes it to a deep sheen.,goes down a ski and paints a wood fence.,uses a wand to create a white piece.,cuts cut shapes into two pieces.,,gold0-orig,pos,unl,unl,pos,n/a,\"He shows a piece of wood, and begins to strip it with fluid.\",He then\nanetv_oDZlW0OgEgg,6871,A man is seen in a workshop standing at a table. He,\"shows a piece of wood, and begins to strip it with fluid.\",retrieves a blow smoke from the floor.,looks down at the table and ends up peeling looking with him.,holds an umbrella and starts washing him clean with a towel.,is washing a horse and showing how it should lead a person.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen in a workshop standing at a table.,He\nanetv_9uZoTZsTwv0,13965,The cow is running and the boy throws the rope around its neck. It,causes the cow to fall over after being pulled back by the rope.,kicks his legs down and jumps onto the rope.,'s back to someone.,is different and wild as he continue to talk.,leaps at pull the rope in position.,gold0-orig,pos,unl,unl,unl,unl,The cow is running and the boy throws the rope around its neck.,It\nanetv_9uZoTZsTwv0,13966,It causes the cow to fall over after being pulled back by the rope. The boy,goes running off the horse after it and pins the little cow down.,comes the kite again and gives the instruction with the camera on it.,jumps off the bridge and runs a pass on this intersection multiple times.,starts talking as someone jumps on.,is lifted off the horse and lets go of the rope.,gold1-orig,pos,unl,unl,unl,unl,It causes the cow to fall over after being pulled back by the rope.,The boy\nanetv_9uZoTZsTwv0,13964,A teenage boy on a horse spinning a rope in the air chases after a little cow. The cow is running and the boy,throws the rope around its neck.,immediately gets up and jumps off his horse.,walks in next to the cow.,loses the large calf.,,gold1-reannot,pos,unl,unl,pos,n/a,A teenage boy on a horse spinning a rope in the air chases after a little cow.,The cow is running and the boy\nanetv_Ym_hy49DaS4,18615,\"Then, the person takes a blade to shave her legs while washing the blade under the faucet. After, the person, takes off the underwear and\",put it on the bathtub.,spits water in the sink.,lets the towel dry.,continues scrubbing the new shoe.,put it in a shower towel.,gold1-orig,pos,unl,unl,unl,unl,\"Then, the person takes a blade to shave her legs while washing the blade under the faucet.\",\"After, the person, takes off the underwear and\"\nanetv_Ym_hy49DaS4,18614,\"A person is covering her legs with soap while she is standing on the bathtub. Then, the person\",takes a blade to shave her legs while washing the blade under the faucet.,clean the wet cloth.,rinses off the lotion and spray it with the towel.,squeezes a needle into the iron then rinse the ski.,cleans the sink with a hose and the stall.,gold0-orig,pos,unl,unl,unl,unl,A person is covering her legs with soap while she is standing on the bathtub.,\"Then, the person\"\nanetv_ZIBWRRBft8g,2206,Man is showing a place without the wooden floor and its putting the wooden pole in the floor measuring the space. the man,puts a wood sheet in space and put floor tiles.,put her left side so and put the wall stairs again.,tells his first man in and so to club how comfortable it is in the dinning room.,is talking to people on purpose in stilts while a man is in doing the bag pipes.,,gold0-orig,pos,unl,unl,unl,n/a,Man is showing a place without the wooden floor and its putting the wooden pole in the floor measuring the space.,the man\nanetv_x86YIU9TIPw,17288,The white team is playing defense while the blue team has the ball and is playing offense. The blue team,takes a shot at the goal and is blocked by the goalie.,threw the ball with the players that was lying in the other.,circle a ball to the center and lands the mark to the side and go to the soccer.,\"returns to talking about the game, trying to score some goals.\",is cheering without the net doing the fighting after the progress of the jump.,gold0-orig,pos,unl,unl,unl,unl,The white team is playing defense while the blue team has the ball and is playing offense.,The blue team\nanetv_x86YIU9TIPw,17289,The blue team takes a shot at the goal and is blocked by the goalie. The goalie,places the ball on the ground for his team to now go to offense and attack the blue team goalie.,takes a big puck back and forth across the net.,makes several turns while all students talk to the camera and hold up a flag.,begins to run on the field after the referee joins him trying to take a shot running to prepare himself.,returns a teammate where they serve the ball.,gold0-orig,pos,unl,unl,unl,pos,The blue team takes a shot at the goal and is blocked by the goalie.,The goalie\nanetv_x86YIU9TIPw,17287,Two lacrosse teams compete in a tournament. The white team,is playing defense while the blue team has the ball and is playing offense.,disappears down the aisle.,starts making a goal on the net.,sets their runs to the base and returns to the center.,has a shirt and has a trophy.,gold0-orig,pos,unl,unl,unl,unl,Two lacrosse teams compete in a tournament.,The white team\nanetv_x86YIU9TIPw,12071,Men are on a field playing lacrosse. We,see number 17 blocking and following number 26.,start a race with the bulls.,are walking of the track backstage.,are playing a game of lacrosse.,,gold0-orig,pos,unl,unl,pos,n/a,Men are on a field playing lacrosse.,We\nanetv_x86YIU9TIPw,12072,A green cart drives by. We,see the men and the coaches on the sideline.,see an alien man flying in his pine tree.,go flight to the mountain.,see a small screen.,see a gate.,gold0-orig,pos,unl,unl,unl,pos,A green cart drives by.,We\nanetv_PJgB6h-fImY,13971,Two men are crouched on the ground outside a bike path. They,are working on a broken down bike.,are also hit one side of the mountain.,are pulling cars outside to a parking lot.,\"use their pointer, while looking at the water one by one.\",,gold1-orig,pos,unl,unl,pos,n/a,Two men are crouched on the ground outside a bike path.,They\nanetv_PJgB6h-fImY,14726,A couple of men are on the side of a bike path. They,are trying to work on fixing a bent tire.,are painting their lines.,come to color on the shoes.,are working out on their roof.,,gold0-orig,pos,unl,unl,unl,n/a,A couple of men are on the side of a bike path.,They\nanetv_u-X4YO91V78,5955,A man's face is seen close up speaking and shows more clips of people riding in tubes. A man,is swimming in the water and shows people jumping in tubes and riding down together.,is seen speaking to the camera and presents people walking on a horse's frame.,speaks to the camera while others move and help people off with snowy and passing the camera down the slope.,walks around the waves and speaks to the camera while still checking out camera.,rides down a hill with a person riding down a hill.,gold0-orig,pos,unl,unl,pos,pos,A man's face is seen close up speaking and shows more clips of people riding in tubes.,A man\nanetv_u-X4YO91V78,9220,\"Water droplets have sprayed onto the camera lens. The rapids increase, and the people\",get out of the water to jump back in.,have to stop one after hanging out.,begin pawing at each other.,fall safely off the raft.,,gold1-orig,pos,unl,unl,unl,n/a,Water droplets have sprayed onto the camera lens.,\"The rapids increase, and the people\"\nanetv_u-X4YO91V78,9219,Some people are intertubing in river rapids. Water droplets,have sprayed onto the camera lens.,carry piles of wooden skis and the camera pans to several kayakers.,are shown their progress that are going at several different angles.,are on the rapids and some slides down a waterfall.,are being held as more kayaks are shown and attached to the rough waters as they play.,gold0-orig,pos,unl,unl,unl,unl,Some people are intertubing in river rapids.,Water droplets\nanetv_u-X4YO91V78,5954,A person is seen riding down the river on a tube with people following from behind. A man's face,is seen close up speaking and shows more clips of people riding in tubes.,is shown followed by a car taking around and leads into more clips of people riding waves.,is shown again on the grass followed by the man pushing away a rope.,is briefly shown with a light spraying down the frame and looking into the camera.,,gold1-orig,pos,unl,unl,unl,n/a,A person is seen riding down the river on a tube with people following from behind.,A man's face\nlsmdc3053_PARENTAL_GUIDANCE-25540,12916,\"Inside, someone listens to the iPod. Someone\",slides the phone into a dock.,carries her on the module.,stares at the old man with a shuts expression.,scoops up his upper hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"Inside, someone listens to the iPod.\",Someone\nanetv_5N-PfYLyCpI,11429,Two men do flips in front of each other. Several more groups of people,appear to be doing some kind of martial arts dance.,crashes into the pool below them.,are shown speaking to one another holding sticks or are seen moving around a distance.,are seen walking on the flat rope together as well as hands in front.,,gold0-orig,pos,unl,unl,unl,n/a,Two men do flips in front of each other.,Several more groups of people\nanetv_5N-PfYLyCpI,11428,Several people are hitting an instrument with sticks. Two men,do flips in front of each other.,play ping pong with each other while moving to the ground.,play scissors with one another play ice paper ball.,kick balls at each other in white numbers.,run together to hit back strings with another child.,gold0-reannot,pos,unl,unl,unl,unl,Several people are hitting an instrument with sticks.,Two men\nanetv_sxf0x55Cvb4,10411,\"As he approaches, his kayak flips upside - down. As the view follows him, we\",notice another man seated on the rocks to the right in red with a white helmet.,\"see silhouetted black clouds making him zoom out of the trees, catching smoke.\",find someone climbing into a tawny grave atop a road drawn among german soldiers.,\"drift over a busy city street, like down buildings on the tarmac.\",don't see him spinning.,gold0-orig,pos,unl,unl,unl,pos,\"As he approaches, his kayak flips upside - down.\",\"As the view follows him, we\"\nanetv_sxf0x55Cvb4,10410,\"We notice a man in a kayak and a yellow helmet coming in from the left. As he approaches, his kayak\",flips upside - down.,has a frozen body of water and begins to flood water.,slides down the ski slope towards another section of the city.,is reflected in the bucket in a narrow choppy river.,\"falls far along an ice line, an air protruding from a stone rim like a wave.\",gold0-orig,pos,unl,unl,unl,unl,We notice a man in a kayak and a yellow helmet coming in from the left.,\"As he approaches, his kayak\"\nanetv_sxf0x55Cvb4,10409,A man in blue rafting equipment and a helmet is watching from a bed of rocks. We,notice a man in a kayak and a yellow helmet coming in from the left.,are bobbing on the slope.,see the boy on a blue board talking.,are then shown with people in tubes as people start snowboarding.,,gold0-orig,pos,unl,unl,unl,n/a,A man in blue rafting equipment and a helmet is watching from a bed of rocks.,We\nanetv_sxf0x55Cvb4,10408,\"We see a swiftly - moving, white water stream. A man in blue rafting equipment and a helmet\",is watching from a bed of rocks.,is overlaid control in the pool.,hugs a child someone.,comes in from behind kneeling measure.,walks around the left.,gold0-orig,pos,unl,unl,unl,pos,\"We see a swiftly - moving, white water stream.\",A man in blue rafting equipment and a helmet\nanetv_IOmzDJjVUoQ,18904,A little in a pink shirt is going across the monkey bars. She,hangs upside down from the bars.,covers the blood up.,is hitting a pinata with a bat.,lays down on the exercise machine.,flips down alongside the two rocks and circles the bow of the diving board.,gold1-orig,pos,unl,unl,unl,unl,A little in a pink shirt is going across the monkey bars.,She\nanetv_IOmzDJjVUoQ,18905,She hangs upside down from the bars. She,smiles at the camera.,\"throws the javelin down the lane, pinning her hands on the ground.\",awakens to her knees.,falls on the room's bars.,takes another swig of her drink.,gold0-orig,pos,unl,unl,unl,unl,She hangs upside down from the bars.,She\nlsmdc1007_Spider-Man1-75039,12881,\"Sometimes using one hand, sometimes both, like a gymnast, he flies through the air. He\",\"flips up and somersaults, landing on a rooftop flagpole by the fluttering stars and stripes.\",\"walks, quickly back to the bongos, repeats in slow motion as fast as he can.\",does this several times to object this time.,stand over them in a outcrop.,,gold0-orig,unl,unl,unl,unl,n/a,\"Sometimes using one hand, sometimes both, like a gymnast, he flies through the air.\",He\nanetv_lO2Y1vkpyNc,3163,A person hits a ball and teammates cheer followed by more people playing the game. The sport,continues on with people throwing balls an hitting them as well as teammates cheering and the host finishes speaking.,is played in a couple of shots in several shots followed by people riding in the marathon.,is seen in the end and returns to wrestling in a person scoring.,happens twice as they continue to play.,shows the others taking turns cheering to the people cheering and cheering with one another.,gold0-orig,pos,unl,unl,unl,unl,A person hits a ball and teammates cheer followed by more people playing the game.,The sport\nanetv_lO2Y1vkpyNc,3162,A man is seen hosting a news segment that leads into a player standing on a field. A person hits a ball and teammates cheer,followed by more people playing the game.,stepping around the pool while others watch on the side.,left on the side.,holding the opposing goal.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is seen hosting a news segment that leads into a player standing on a field.,A person hits a ball and teammates cheer\nanetv_zzE2VrQMvbc,5256,A gun is making shots in a open area. person with his face cover,appears walking holding something on his hand.,puts the bottle into his hand.,is shooting a few pins.,is spraying someone with the tool.,,gold1-orig,pos,unl,pos,pos,n/a,A gun is making shots in a open area.,person with his face cover\nanetv_zzE2VrQMvbc,5873,\"A black pistol is shown on the bottom middle of the camera aiming out into a grassy field with barricades. Shortly after, the person\",begins to move in the field looking for targets to fire his paint balls at.,begins demonstrating how to use the cabin on the measurements while sitting in snow.,is seen bending over a ladder cleaning the corner of the tent where the object dripping down at the ends.,continuing with the vacuum and walking through a small wooden structure.,\"spins the water pig quickly and runs along the ice, through which, at all or slow motion.\",gold0-orig,pos,unl,unl,unl,unl,A black pistol is shown on the bottom middle of the camera aiming out into a grassy field with barricades.,\"Shortly after, the person\"\nanetv_zzE2VrQMvbc,5258,Person is walking in the open field by abandoned houses. paintball tactics,appears on the screen while a person is walking with the gun staying up.,start a skate swamp.,are being walking toward the mountain and traveling down a steep slope.,are shown and other rooms to practice.,are going sit in the grass.,gold0-orig,pos,unl,unl,unl,unl,Person is walking in the open field by abandoned houses.,paintball tactics\nanetv_zzE2VrQMvbc,5257,Person with his face cover appears walking holding something on his hand. person,is walking in the open field by abandoned houses.,takes the things up and hides in a wall.,is taking a drink and put it on the table in front of the table.,is holding a selfie stick while holding a green hose.,stick his horse around towards it.,gold0-orig,pos,unl,unl,unl,unl,Person with his face cover appears walking holding something on his hand.,person\nanetv_zzE2VrQMvbc,5259,Paintball tactics appears on the screen while a person is walking with the gun staying up. other person appears in the field and the person,prepares to shot them.,is running paintball in a field.,moves the man away.,pivots the man on the platform.,,gold0-orig,pos,unl,pos,pos,n/a,Paintball tactics appears on the screen while a person is walking with the gun staying up.,other person appears in the field and the person\nanetv_zzE2VrQMvbc,5875,The person moves from one wooden house to another without being seen and sets up to fire at a target. Three people appear and circles,appear around them while tips come across the screen.,drinking fish while generally watching.,one another while people watch and ride down the slope.,snarling and never really at each other.,ten cobra still then begin to kick one of them and head onto the table.,gold1-reannot,pos,unl,unl,unl,unl,The person moves from one wooden house to another without being seen and sets up to fire at a target.,Three people appear and circles\nanetv_zzE2VrQMvbc,5874,\"Shortly after, the person begins to move in the field looking for targets to fire his paint balls at. The person\",moves from one wooden house to another without being seen and sets up to fire at a target.,walks to the left of the platform and the man starts to play the ball.,moves back to showing the woman talking with the man to shoot on the camera.,hits the object on the wall while still standing around holding the object.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Shortly after, the person begins to move in the field looking for targets to fire his paint balls at.\",The person\nlsmdc3007_A_THOUSAND_WORDS-3738,10505,Someone mimes a corpse and spreads his arms wide. He,mimes a corpse again.,slides down an incline toward the vault.,imitates off then shoos the food away.,tends to american children as he follows the young woman to a tv.,\"holds out his hands, reinserts the brakes.\",gold0-orig,pos,unl,unl,unl,unl,Someone mimes a corpse and spreads his arms wide.,He\nlsmdc3007_A_THOUSAND_WORDS-3738,10502,Later someone draws on a chalk board as someone watches. Someone,circles a stickman on the chalkboard.,looks around photographs and wildlife on a sunny cabin.,cuts each others dance moves.,puts his nephew in a hand.,stands at the edge and leans before the train.,gold0-orig,pos,unl,unl,unl,unl,Later someone draws on a chalk board as someone watches.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3738,10501,Smiling he holds out a breadstick to Samantha. She,snaps it in half.,looks at the young woman.,pushes out the details.,\"hesitates, looking down at the envelope.\",is now facing a television screen.,gold0-orig,pos,unl,unl,pos,pos,Smiling he holds out a breadstick to Samantha.,She\nlsmdc3007_A_THOUSAND_WORDS-3738,10499,\"Someone leans close to the blond woman, picks up a French fry from her plate, places it halfway into his mouth, then smiles at her. The two executives\",\"stare at someone, who picks up another breadstick and runs it across samantha's cheek, then taps her nose with it.\",\"stare out at the starry sky, then faces someone.\",\"remain composed as they gaze at each other, then answers one more time.\",pause in a parched pan in the opposite direction.,scowl at the sitting table.,gold0-orig,pos,unl,unl,unl,unl,\"Someone leans close to the blond woman, picks up a French fry from her plate, places it halfway into his mouth, then smiles at her.\",The two executives\nlsmdc3007_A_THOUSAND_WORDS-3738,10508,Someone grabs someone by his collar. Someone,pulls someone into the backyard.,jumps back to the demon.,grabs someone by the collar.,\"steps out, smiling.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone grabs someone by his collar.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3738,10509,Someone pulls someone into the backyard. Someone,\"steps up to the bodhi tree, then holds up one finger.\",\"opens the door, and brings on a bottle of whiskey.\",lifts up an empty deck near his twin.,strides through and the woman in her blue shirt follows him.,grabs someone's shoulder with the knife.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls someone into the backyard.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3738,10506,He mimes a corpse again. Someone,jumps up and down.,emerge in his wide smile.,jerks it down and slings someone over his shoulder.,\"tries to drop, but someone rushes into the house and grabs her mouth.\",takes the cat himself.,gold1-orig,pos,unl,unl,unl,unl,He mimes a corpse again.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3738,10504,Someone draws a slash through the stickman. Someone,mimes a corpse and spreads his arms wide.,stands at around a counter with a tray.,\"runs after someone, who chases him.\",stares back up at the old girl.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone draws a slash through the stickman.,Someone\nlsmdc3007_A_THOUSAND_WORDS-3738,10503,Someone crosses his hands over his chest. Someone,draws a slash through the stickman.,hands over the old chair.,walks past the net.,smiles warmly as he examines his tools and pistol.,\"keeps his finger to his temple, moving closer.\",gold0-reannot,unl,unl,unl,pos,pos,Someone crosses his hands over his chest.,Someone\nlsmdc3079_THINK_LIKE_A_MAN-36854,13450,\"Later, in his bedroom, someone strips off someone's vest. Kissing her, he\",backs her up against a dresser and knocks over a lamp.,returns her gaze to his wife who sits at his desk.,presents her apartment with new print.,licks her dry lips.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, in his bedroom, someone strips off someone's vest.\",\"Kissing her, he\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13454,\"Someone lies asleep in someone's bed. Waking up, she\",finds a note in the vacant spot beside her.,has a phone call on the kitchen phone.,\"gingerly arranges a silver pencil into her vanity, and at the clock on the wall again on the bed.\",shimmies in the air with his arms folded.,\"gets up, letting her leg drop his torso.\",gold0-orig,pos,unl,unl,unl,pos,Someone lies asleep in someone's bed.,\"Waking up, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13461,\"She opens it to a bookmarked chapter with its heading circled: The 90 - day Rule. Later, she\",sits on the steps with the book.,lands to demonstrate herself.,sits in the car at hotel's store.,\"talks, unsure of how to get comic wine from a scantily wiggle.\",sits up at her father's toyshop and opens it.,gold0-orig,pos,unl,unl,unl,pos,She opens it to a bookmarked chapter with its heading circled: The 90 - day Rule.,\"Later, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13455,\"Waking up, she finds a note in the vacant spot beside her. With a dejected look, she\",\"opens it and reads, someone, ran out for breakfast, be right back, someone.\",\"walks up the staircase, and makes her way across the room.\",stares off down the hallway toward another tag drawer.,\"sinks to her knees at the panel, turning to someone who lies asleep.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Waking up, she finds a note in the vacant spot beside her.\",\"With a dejected look, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13449,\"Pulling away, someone gazes into his eyes. Later, in his bedroom, someone\",strips off someone's vest.,is asleep on the davenport.,sees someone drinking a cup of coffee.,puts his hands in a folder.,works with a laptop.,gold1-orig,pos,unl,unl,unl,pos,\"Pulling away, someone gazes into his eyes.\",\"Later, in his bedroom, someone\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13459,\"Finding a photo of someone as a boy, dressed in a football uniform and posing on one knee, she picks it up. Returning it, she\",slides the drawer open farther.,watches someone get on backwards and stretches to her feet.,sees her mother walking someone.,knocks on a lamp against the far wall.,finds someone taking photos and painting her eyes.,gold0-orig,pos,unl,unl,unl,unl,\"Finding a photo of someone as a boy, dressed in a football uniform and posing on one knee, she picks it up.\",\"Returning it, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13453,\"On the wall behind her, a framed painting shows a boxer with both gloves raised triumphantly in the air. Someone\",lies asleep in someone's bed.,has spilled a book.,takes the sword from someone's.,\"picks up up - someone and a broom, then approaches the mansion.\",,gold1-orig,pos,unl,unl,unl,n/a,\"On the wall behind her, a framed painting shows a boxer with both gloves raised triumphantly in the air.\",Someone\nlsmdc3079_THINK_LIKE_A_MAN-36854,13457,\"She shifts her thoughtful eyes, then gives a pleased look. Sitting up, she\",scoots to the edge of the bed.,crosses out the open window and turns to face him.,gazes at the scratch - o - matic.,takes out her purse and smiles.,places her hands over her hips.,gold1-orig,unl,unl,unl,unl,unl,\"She shifts her thoughtful eyes, then gives a pleased look.\",\"Sitting up, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13448,\"As she embraces her, a horrified look crosses his face. Pulling away, someone\",gazes into his eyes.,presses her face to the side of his arms.,slumps down into the chair.,motions for someone to follow her.,leans over her in a passionate embrace.,gold0-orig,pos,unl,unl,pos,pos,\"As she embraces her, a horrified look crosses his face.\",\"Pulling away, someone\"\nlsmdc3079_THINK_LIKE_A_MAN-36854,13463,\"Someone enters, clutching a bag in his mouth. He\",holds a box in one hand and a drink carrier in the other.,frantically tries a bite.,bursts into the room open and someone.,\"raises the tap boy's head, causing for a brief time as he sees him.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone enters, clutching a bag in his mouth.\",He\nlsmdc3079_THINK_LIKE_A_MAN-36854,13451,\"Kissing her, he backs her up against a dresser and knocks over a lamp. He\",\"gazes up at her as she slides her silky tank top over her head, then lowers herself over him.\",\"glances between his shoulders, and brings it out for a wink.\",rubs his shoulders as he approaches someone's father on the back.,\", someone leaves the kitchen.\",holds her gaze for a moment.,gold0-reannot,pos,unl,unl,unl,pos,\"Kissing her, he backs her up against a dresser and knocks over a lamp.\",He\nlsmdc3079_THINK_LIKE_A_MAN-36854,13462,\"Later, she sits on the steps with the book. Someone\",\"enters, clutching a bag in his mouth.\",'s dresses fit someone's glaring windows.,shuts the phone case at someone and's manager.,lowers the carriage to a shape in her doorway.,takes her around while they embrace.,gold0-reannot,pos,unl,unl,unl,pos,\"Later, she sits on the steps with the book.\",Someone\nlsmdc3079_THINK_LIKE_A_MAN-36854,13464,He holds a box in one hand and a drink carrier in the other. He,sets the food down.,fills the sack with cash.,glances back at her principal album.,shakes an energy drink.,crosses the list across the body of hers.,gold1-reannot,pos,unl,unl,unl,unl,He holds a box in one hand and a drink carrier in the other.,He\nlsmdc3079_THINK_LIKE_A_MAN-36854,13458,\"Sitting up, she scoots to the edge of the bed. She\",opens a drawer in a bedside table.,sinks to her feet.,paces nervously beneath the small curved floorboards.,moves his hand apart to record another one.,\"rests her head against the seat, idly looks up in surprise.\",gold0-reannot,pos,unl,unl,unl,unl,\"Sitting up, she scoots to the edge of the bed.\",She\nlsmdc3079_THINK_LIKE_A_MAN-36854,13456,\"With a dejected look, she opens it and reads, someone, ran out for breakfast, Be right back, someone. She\",\"shifts her thoughtful eyes, then gives a pleased look.\",is gently on her reading.,compares it as someone plays with a bottle of cigarette smoking.,\"suddenly springs up and leaves the room, then dances with her and goes to hug someone.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"With a dejected look, she opens it and reads, someone, ran out for breakfast, Be right back, someone.\",She\nlsmdc0002_As_Good_As_It_Gets-46570,14383,He is been talking to the bartender. He,\"sits there, just another someone on a bar stool with his heart breaking.\",shows the last strip of information on the canvas.,\"has no hands, and notices.\",\"picks her up, drinks something, and shakes them again.\",does the same take and puts some contact into his eyes.,gold0-orig,pos,unl,unl,unl,unl,He is been talking to the bartender.,He\nlsmdc0006_Clerks-48739,5223,Someone makes a metal face. Someone,laughs and shakes his head.,flips the wheel to one side.,shows a reaction from her bag.,\"enters the kitchen, wearing a hint of a smile.\",presses the flame against the grating.,gold0-orig,pos,unl,unl,unl,unl,Someone makes a metal face.,Someone\nlsmdc0006_Clerks-48739,5226,\"Someone leans back in his chair, staring up at the tv. He\",\"stands, points the remote, clicks the tv off, and ponders.\",\"is slightly oblivious, taps a cue at the end of the club.\",sees someone handing someone to the sofa with a wistful expression.,quickly cuts the hair out of his eye in a frown.,\"gestures to the door, smiles and turns to someone.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone leans back in his chair, staring up at the tv.\",He\nlsmdc0006_Clerks-48739,5225,The theme to Star Wars plays. Someone,\"leans back in his chair, staring up at the tv.\",lays on the plain - wall paper.,arranged a high table.,squeezed around one of two tight boxes and stopped.,points at the ground.,gold0-orig,pos,unl,unl,unl,pos,The theme to Star Wars plays.,Someone\nlsmdc0006_Clerks-48739,5228,\"Someone locks the door and walks away, while someone sings for the small crowd. The can pops off and someone\",staggers back a few steps.,takes his muscular anchors to free them.,plods in next to two rows of double doors.,gives the camera to a person who slips out landing on the rope from the van in the barn.,pushes goblet into someone's mouth.,gold0-orig,pos,unl,unl,unl,unl,\"Someone locks the door and walks away, while someone sings for the small crowd.\",The can pops off and someone\nlsmdc0006_Clerks-48739,5227,\"He stands, points the remote, clicks the tv off, and ponders. Someone\",\"locks the door and walks away, while someone sings for the small crowd.\",\"gives him a small amount of notes, then leaves.\",does a menacing pretty waddles and holds a bus over her head.,\"tackles someone, and kills little people outside.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He stands, points the remote, clicks the tv off, and ponders.\",Someone\nanetv_2fndjkCHsEY,5721,A close up of a fooseball table is shown with a group of children and an adult playing. The kids,move the poles all around while laughing with one another.,start spinning around the pool and end by looking around the area.,continue eating everything and talking to the camera and hands on the table.,continue playing with one another in a close house.,begin laughing and laughing to one another while others watch on the sides.,gold0-orig,pos,unl,unl,pos,pos,A close up of a fooseball table is shown with a group of children and an adult playing.,The kids\nanetv_2fndjkCHsEY,17031,Children play a game of table soccer in teams of two. A goal,is scored across the table by a defensive figurine player.,is in the beach.,has bleakly the game where right stands of the center goal.,is scored in a turn and a player hits the ball with a yellow ball.,,gold0-orig,pos,unl,unl,pos,n/a,Children play a game of table soccer in teams of two.,A goal\nanetv_2fndjkCHsEY,5722,The kids move the poles all around while laughing with one another. The kids,continue to play on the table.,continue playing on the bikes around a course.,continue to jive as people failing and then their moves.,continue painting along the fence and looking back and front.,continue playing as they continue to play.,gold1-reannot,pos,unl,unl,pos,pos,The kids move the poles all around while laughing with one another.,The kids\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3132,He strides at a breathtaking pace. A winged blue Pixie,watches him from high up on the top of a gold picture frame.,formations appears beside him.,appears at his feet.,lies at the bottom of the stairs.,,gold0-orig,pos,unl,pos,pos,n/a,He strides at a breathtaking pace.,A winged blue Pixie\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3134,It's piled high with bric - a - brac. Someone,finds a plain wooden casket.,is been turned on a piglet.,\"serves over, his eyes wide.\",starts a pastry with a new piercing.,walks through the back and stops at the balcony.,gold1-orig,pos,unl,unl,unl,pos,It's piled high with bric - a - brac.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3135,Someone finds a plain wooden casket. He,\"pulls the casket forward, unfastens it, and opens the lid.\",makes someone a handful of notebook.,mashes someone 'ice cream.,steps up to the tile bars and grabs the collar of his top.,kisses someone's shoulder.,gold0-orig,pos,unl,unl,unl,pos,Someone finds a plain wooden casket.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3129,\"He makes his way deeper in to the room, along the aisles between the stacks. He\",roves around as he continues searching the vast space.,slaps someone's chest.,nods while looking at someone.,is finally the door to her bed.,takes two books along the bottom shelf to the drawer.,gold0-orig,pos,unl,unl,unl,pos,\"He makes his way deeper in to the room, along the aisles between the stacks.\",He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3136,Another stone hangs from it in the shape of a tear. Someone,glances across at someone.,checks his pocket watch.,sits at a table.,reaches for his gun.,,gold0-orig,pos,pos,pos,pos,n/a,Another stone hangs from it in the shape of a tear.,Someone\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3133,He turns round and gazes back the way he came. He,\"walks very slowly and deliberately, drawn towards a clothed table.\",sees a dead figure in the head.,hears the sound of shining footsteps on the apartment floor.,steps closer to someone.,dives straight back under the curtain and hops down.,gold1-reannot,pos,unl,unl,pos,pos,He turns round and gazes back the way he came.,He\nlsmdc1061_Harry_Potter_and_the_deathly_hallows_Disk_Two-100016,3131,\"He passes books, statues, gold, and silver ornaments. He\",strides at a breathtaking pace.,sets his wooden pouch at the railing.,gets under the canvas cover.,links a map of someone's western - un - bound casket as he rides along into the sunny snowfall.,falls to the floor.,gold1-reannot,pos,unl,unl,unl,pos,\"He passes books, statues, gold, and silver ornaments.\",He\nanetv_AbzyaqyFI0Y,7438,A person is seen riding a kayak along a rough river and spinning himself around. More shots of him riding around shown and he,continues to flip in the water.,gets back down with his shots on the board.,rides himself back down in the water while still water skiing.,continues to perform the flips.,jumps into the water.,gold1-reannot,pos,unl,unl,unl,pos,A person is seen riding a kayak along a rough river and spinning himself around.,More shots of him riding around shown and he\nlsmdc1041_This_is_40-8952,15586,\"Now, a laptop shows a young someone performing in his heyday. Someone\",\"watches with a mustached 30 - something and a hip, young woman.\",approaches a brotherly embrace.,\", someone works at his computer while he processes an iv on one leg.\",watch from the passive blinds.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Now, a laptop shows a young someone performing in his heyday.\",Someone\nlsmdc0043_Thelma_and_Luise-68499,16927,\"It does look like an Army. More police cars have joined, and from every direction, police cars\",\"are swarming across the desert, although none are in front of them.\",join up to a dusty clapboard part.,are pulling at the wrecked car.,bend across the street with someone.,,gold1-orig,pos,unl,unl,unl,n/a,It does look like an Army.,\"More police cars have joined, and from every direction, police cars\"\nlsmdc0043_Thelma_and_Luise-68499,16929,Someone is looking way up ahead in the distance. Behind them,is a huge wall of dust created by all the police cars following them.,\"is a car mounted with stainless steel mirrors, large mobiles pipes.\",is a swarm of thunder as frost eaters appear and fall out.,\", the camera moves back down the aisle of them.\",is a young rain - drenched garden.,gold0-orig,pos,unl,unl,unl,unl,Someone is looking way up ahead in the distance.,Behind them\nlsmdc0043_Thelma_and_Luise-68499,16928,\"More police cars have joined, and from every direction, police cars are swarming across the desert, although none are in front of them. Someone\",is looking way up ahead in the distance.,searches the top of someone's rear door.,\"sprawls across the road, if even a sign - blown tree.\",wipes a cloth across her eye then rises.,cycles past and is playing on highway mates.,gold0-orig,pos,unl,unl,unl,unl,\"More police cars have joined, and from every direction, police cars are swarming across the desert, although none are in front of them.\",Someone\nlsmdc0043_Thelma_and_Luise-68499,16930,Behind them is a huge wall of dust created by all the police cars following them. Someone,has tears streaming down her face as she realizes there is absolutely no escape.,\"looks across at someone, who is still standing in the doorway.\",moves up and down on the lanes shedding the chairs.,holds up the launcher.,,gold0-orig,pos,unl,unl,pos,n/a,Behind them is a huge wall of dust created by all the police cars following them.,Someone\nlsmdc0043_Thelma_and_Luise-68499,16935,\"Finally, they get about twenty yards from the edge and someone slams on the brakes. People\",are just waiting for the cars to catch up.,\"turn out to see people driving in their boat, checking their dresses in several directions.\",\"force someone get up, and we see the group of men approaching the room.\",\"go toward the restaurant, the crowd of people dig in in her direction as someone stands on the porch of a building.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Finally, they get about twenty yards from the edge and someone slams on the brakes.\",People\nlsmdc0043_Thelma_and_Luise-68499,16931,Someone has tears streaming down her face as she realizes there is absolutely no escape. She,continues barreling towards it without slowing down.,puts an arm around her and kisses her easily.,watches as someone gently shakes someone's hand.,moves off the porch and into the main house at the street of the countryside.,,gold1-orig,pos,unl,unl,unl,n/a,Someone has tears streaming down her face as she realizes there is absolutely no escape.,She\nlsmdc0043_Thelma_and_Luise-68499,16934,\"The car is bouncing and flying across the desert. Finally, they get about twenty yards from the edge and someone\",slams on the brakes.,fom her boot breathing on with her hand on their knees.,jumps off the counter.,people get ready.,,gold0-orig,pos,unl,unl,unl,n/a,The car is bouncing and flying across the desert.,\"Finally, they get about twenty yards from the edge and someone\"\nlsmdc0043_Thelma_and_Luise-68499,16926,A steady stream of state police cars pulls out of the parking lot with lights flashing while other policemen are running to their cars still parked in the lot. It,does look like an army.,see two men in hotel reception making shots that of the bikers.,run as one possibly agents barricade being wheeled down.,\", she is someone.\",,gold0-orig,pos,unl,unl,pos,n/a,A steady stream of state police cars pulls out of the parking lot with lights flashing while other policemen are running to their cars still parked in the lot.,It\nlsmdc0043_Thelma_and_Luise-68499,16932,She continues barreling towards it without slowing down. All the police cars,are still following about a half a mile behind.,are all silent as the woman sits near the backseat and driving.,stripe them as she goes through swinging rounds of a subway drawn dirt path.,continue to curb a light blur across the walls of the plaza.,are visible and everyone was clearing up the track.,gold0-reannot,pos,unl,unl,unl,pos,She continues barreling towards it without slowing down.,All the police cars\nanetv_I9kOPQ3J5HA,5538,A man clips a rope to the front of the woman's harness. He,ties the rope into a knot.,moves to it and shows a bronze flag.,speaks to the loop over the rock.,continues braiding the vine.,jump together in hip hop style.,gold1-orig,pos,unl,unl,unl,unl,A man clips a rope to the front of the woman's harness.,He\nanetv_I9kOPQ3J5HA,5537,A woman puts a harness on. A man,clips a rope to the front of the woman's harness.,kicks a tire outside.,ties a black belt.,struggles with the ropes.,,gold0-orig,pos,unl,unl,pos,n/a,A woman puts a harness on.,A man\nanetv_PKYg6_rs3LQ,17302,They begin to rapidly chop stumps of wood on the ground. They then,stop chopping the wood.,kick each other in a certain way.,continue to run and hit a field.,pile flips other other person who went near the pinata.,get up and start fighting and carving the usher.,gold0-orig,pos,unl,unl,unl,unl,They begin to rapidly chop stumps of wood on the ground.,They then\nanetv_PKYg6_rs3LQ,17301,They are holding up axes. They,begin to rapidly chop stumps of wood on the ground.,have landed in sand.,\"are swinging on a rope, then rushes towards the end of the field.\",continue dancing on the sand.,stop them from laughing.,gold0-orig,pos,unl,unl,unl,unl,They are holding up axes.,They\nanetv_PKYg6_rs3LQ,17300,Two men are standing in a forest. They,are holding up axes.,are trying to decorate a christmas tree.,are using batons at the practice.,are playing a style of croquet.,,gold0-orig,pos,unl,unl,pos,n/a,Two men are standing in a forest.,They\nanetv_PKYg6_rs3LQ,16962,\"Two young men holds axes in the woods. Then, the young men\",splits logs in the woods.,play cricket in the circle in a game of campsite.,practice martial performing martial arts moves in different venue.,pile away on a wooden roof to begin.,run down a city road and move on the city together.,gold0-orig,pos,unl,unl,unl,unl,Two young men holds axes in the woods.,\"Then, the young men\"\nlsmdc3053_PARENTAL_GUIDANCE-25535,2901,He holds out a phone. She hesitantly,takes it and dials.,eyes him suspiciously as she steps away.,meets his friend's gaze.,takes out the phone.,takes out the keys and leads.,gold0-orig,pos,unl,unl,unl,unl,He holds out a phone.,She hesitantly\nlsmdc3053_PARENTAL_GUIDANCE-25535,2902,She hesitantly takes it and dials. She,listens for a moment then drops it.,does a dance using her to a room.,\"breathes from its breath, and stares at the pickle.\",looks at her ipod and recoils.,,gold0-orig,pos,unl,unl,pos,n/a,She hesitantly takes it and dials.,She\nanetv_9XyrLUWZl40,7907,A boy puts together a rubix cube and excitedly drops it. He,jumps up and claps his hands together so happy about it.,\"the line, a timer is stopped and he looks over the clock.\",the camera shows off his flat knife.,puts the wax out and starts chest removal.,leave slowly along.,gold0-orig,pos,unl,unl,unl,unl,A boy puts together a rubix cube and excitedly drops it.,He\nanetv_9XyrLUWZl40,7909,\"Another boy is doing it with only his feet. It's a competition, the audience\",is watching as the people competing are being timed.,\"toy as students go over the pole, high up and lands to the side.\",is walking back and forth between them lifting muscles.,ties up at the end of it.,starts to get in his car and run.,gold0-orig,pos,unl,unl,unl,unl,Another boy is doing it with only his feet.,\"It's a competition, the audience\"\nanetv_UYe6JGaUZzg,20076,A little girl is performing on a stage. She,is tossing and spinning a baton.,turns around and applauds her.,sets down a picture on the sand.,begins to perform a ballet routine.,starts dancing as they dance.,gold0-orig,pos,unl,unl,pos,pos,A little girl is performing on a stage.,She\nanetv_UYe6JGaUZzg,20077,She is tossing and spinning a baton. She also,does several dance moves.,hula hoops to the back of her head.,does a handstand on the knees.,\"switches a spot, then sweeps her hair down that one time.\",has one leg bent over playing with one of the band.,gold0-orig,pos,unl,unl,unl,unl,She is tossing and spinning a baton.,She also\nanetv_UYe6JGaUZzg,16568,A young girl in a pink tutu twirls a baton on stage. The girl,does a flip and split on stage.,stairs practicing her routine and performing with a baton on its chest.,comes down and goes up on a beam.,throw her baton in the air and spits on her body.,catches the baton and holds it out before a black male ballerina.,gold0-reannot,pos,unl,unl,unl,pos,A young girl in a pink tutu twirls a baton on stage.,The girl\nanetv_r8qq4rU0tPE,19136,The person continues skiing and then two males appear talking to one another. The person skiing then,goes from the top of the mountain to the bottom and then hides behind a boulder of ice.,finishes on the side and ends with a close up of the horses.,shows several detail throughout the video.,surfs throughout the rough waters before a native.,shows a close up of an skiing bike repair.,gold0-orig,pos,unl,unl,unl,unl,The person continues skiing and then two males appear talking to one another.,The person skiing then\nanetv_r8qq4rU0tPE,19135,Someone begins skiing and then a man in an orange snow suit begins talking. The person continues skiing and then two males,appear talking to one another.,begin to build a tender castle.,are rollerblading down a shrubbery and passing on sidewalks.,and wearing a rope then looking over a ski machine.,start doing an exercise.,gold0-orig,pos,unl,unl,unl,unl,Someone begins skiing and then a man in an orange snow suit begins talking.,The person continues skiing and then two males\nanetv_VcQHv5PHb-M,4203,The men play darts as well as show their faces close up and take off their shirts. They,play more games as well as dress up as characters while still zooming in on a dart.,referees around and then move closer to one another.,continue to play the balls and begin making them and waving to the camera.,begin to show how their fencing tools are seen.,,gold0-orig,pos,unl,unl,unl,n/a,The men play darts as well as show their faces close up and take off their shirts.,They\nanetv_VcQHv5PHb-M,3350,One is talking to the camera while the other is playing darts. They,\"demonstrate how to do different throws, showing the names of the moves between throws.\",shake with their hand and hitting a ball back and forth on the waves.,stand on one side of the room on the equipment.,are then seen playing dodge ball.,,gold0-orig,pos,unl,unl,pos,n/a,One is talking to the camera while the other is playing darts.,They\nanetv_VcQHv5PHb-M,4202,A young boy is seen speaking to the camera while another walks around him from behind. The men,play darts as well as show their faces close up and take off their shirts.,continue on one another while two to the camera and move around a carnival and watch girls skate around the people in the end.,perform tricks together while still speaking to one another and end by with another.,continues to play with one another while various shots are shown of other animals that come onto the canvas.,,gold0-orig,unl,unl,unl,unl,n/a,A young boy is seen speaking to the camera while another walks around him from behind.,The men\nanetv_VcQHv5PHb-M,3349,Two boys are in a room. One,is talking to the camera while the other is playing darts.,dips a toothbrush in the sink and rip off the wall.,is to open a large knife.,is two men playing cricket in a dimly lit room.,,gold0-orig,pos,unl,unl,unl,n/a,Two boys are in a room.,One\nanetv_VcQHv5PHb-M,3351,\"They demonstrate how to do different throws, showing the names of the moves between throws. One boy\",\"lies on the ground next to a dart as the video ends, pretending to be dead.\",does the splits then split a bit.,notices the other about and does a flip since he takes his shirt off while sitting on some tubes.,goes across the desert throwing a ball that eventually posed him in a circle over wall ball over the net building.,\"dismounts happily, chasing a man and hitting the balls.\",gold0-reannot,pos,unl,unl,unl,unl,\"They demonstrate how to do different throws, showing the names of the moves between throws.\",One boy\nanetv_M96TST6CN4M,4754,A large man is seen bending down on his knees moving his arms around and looking off into the distance. The man,continues moving all around on the mat performing various martial arts moves and moving back and fourth to the camera.,bends down and speaks to the camera as the customers fall down.,continues to show several moves in the drinking on the floor and zooming out of frame.,finishes his routine with others laying down and grabs the boy sitting out.,continues performing many more tricks and ends with one another looking down and speaking off into the distance.,gold1-orig,pos,unl,unl,unl,unl,A large man is seen bending down on his knees moving his arms around and looking off into the distance.,The man\nanetv_qp3OfC0dCOs,4277,The dad comes and throws the ball over and the boys run after it. They continue to play and one of the little boys gets it in his net and trows it and when it lands they both,go after it again.,jump backwards to hit it.,\"get the ball into the sand balls too, make participating, get the ball different the motorcycle.\",watch then the boy scores times in the same kayak.,continue hitting the ball with each sticks while they only celebrate and jump over the net.,gold1-orig,pos,unl,unl,unl,unl,The dad comes and throws the ball over and the boys run after it.,They continue to play and one of the little boys gets it in his net and trows it and when it lands they both\nanetv_qp3OfC0dCOs,4276,Outside in the backyard two little boys in matching swim suits are playing with nets trying to catch a ball. They,are both trying to get the ball in their own net basically playfully fighting over whose going to get it.,is now engaged in a game of ping pong with a group of men with red ball around them.,play for the handstands and trying to hit them.,play pool with someone.,celebrate the medal and run down the lacrosse field until each group walks and in each line in a shot put.,gold0-reannot,pos,unl,unl,unl,unl,Outside in the backyard two little boys in matching swim suits are playing with nets trying to catch a ball.,They\nanetv_WoB4lSNBDww,19451,They use a plastic tool to smooth it out. They,add metal hooks to the wall.,see a tennis team in white.,use a blue paint to wipe down the fence.,see the gangsters on the divan's edge of a metal structure.,,gold0-orig,pos,unl,unl,unl,n/a,They use a plastic tool to smooth it out.,They\nanetv_WoB4lSNBDww,19449,They roll up paper and dip it in water. They,stick the paper to the wall.,each multi her fingernail clean.,fall into a bucket of water.,keep each other's eyes.,put them in tissue paper.,gold0-orig,pos,unl,unl,unl,pos,They roll up paper and dip it in water.,They\nanetv_WoB4lSNBDww,6662,A woman is hanging wall paper on a wall. She,smooths it out with a plastic tool.,stands in circles with her peers at the peeling paper.,picks up a small brush.,unrolls wallpaper from her wall.,talks to the camera before climbing the wall and preparing from several wall.,gold1-orig,pos,unl,pos,pos,pos,A woman is hanging wall paper on a wall.,She\nanetv_WoB4lSNBDww,19450,They stick the paper to the wall. They,use a plastic tool to smooth it out.,do not barricade themselves.,wander in and leading them.,run out of the vault and continue playing.,seem to be a tough one.,gold0-orig,pos,unl,unl,unl,unl,They stick the paper to the wall.,They\nanetv_WoB4lSNBDww,19448,A woman is wiping a wall with a rag. They,roll up paper and dip it in water.,wipe up the mop off with a rag.,put clothes into a box.,are laying on the floor next to the tiles.,\"sprays a towel over her face, laying it away with a shower.\",gold0-reannot,pos,unl,unl,unl,unl,A woman is wiping a wall with a rag.,They\nanetv_Xueo66Jb8T4,6065,\"A quick picture of a red and black tool is shown, then a man is talking and clips of people removing shingles play in between moments shown when the man talks. The tool is now shown on its own and the brand and logo\",is displayed on the screen to the upper right.,appears on a computer screen.,appear on screen and several clips and scenes of the is shown.,is displayed on an outdoor field with the finished part of the roof.,,gold0-orig,pos,pos,pos,pos,n/a,\"A quick picture of a red and black tool is shown, then a man is talking and clips of people removing shingles play in between moments shown when the man talks.\",The tool is now shown on its own and the brand and logo\nanetv_Xueo66Jb8T4,6066,The tool is now shown on its own and the brand and logo is displayed on the screen to the upper right. Now there,are clips of people on the roof using the tool to remove shingles and once again the man appears talking in between clips.,are various people seated in a sidewalk on the sidewalk.,is white video of a crowd of people gathered in the dark.,is a countdown from the screen shown as some headlights and decree displays.,\"'s a man mopping the floor in a room in a shiny, green country practice.\",gold0-orig,pos,unl,unl,unl,unl,The tool is now shown on its own and the brand and logo is displayed on the screen to the upper right.,Now there\nanetv_Xueo66Jb8T4,6068,A black screen appears and it has a list with a lot of white words on it and the title is Shingle Hog Savings. The man talking and the clips of the man using the shingle machine,\"play until a white outro screen appears that include the brand name, logo, product info and website.\",jack leather is talking and the same man demonstrates the same technique that the top is taking and how it welds.,are shown again on two fence.,is shown close up in the tire of the truck using an electric tool to cut products screen.,as a different man turns and shows on to the german and a tutorial of fixing on roofing shingles.,gold0-reannot,pos,unl,unl,unl,unl,A black screen appears and it has a list with a lot of white words on it and the title is Shingle Hog Savings.,The man talking and the clips of the man using the shingle machine\nanetv_Xueo66Jb8T4,6064,\"A white screen appears with a black brand name that say's the shingle hog and it has a picture of a hog in the o of the word hog. A quick picture of a red and black tool is shown, then a man is talking and clips of people\",removing shingles play in between moments shown when the man talks.,riding it in fellowship to an inner yard and the small trees are upwards.,\"riding metal and walking on the snowy, or, down into the rolling snow of a gren grassy area.\",are shown on a long road at the end.,,gold0-reannot,pos,unl,unl,pos,n/a,A white screen appears with a black brand name that say's the shingle hog and it has a picture of a hog in the o of the word hog.,\"A quick picture of a red and black tool is shown, then a man is talking and clips of people\"\nanetv_mRgS35iyhYE,13273,The people crash into one another back and fourth. They,continue to drive around and hit one another.,continue sailing through the water while people watch in the end.,continue to perform and swing to others while the others gather around the audience.,do not acknowledge cars again.,splash into each other's arms as they continue to stare at each other.,gold0-orig,pos,unl,unl,unl,unl,The people crash into one another back and fourth.,They\nanetv_mRgS35iyhYE,16023,A man is seen sitting in a bumper car and begins driving around. Several people,are riding around in the cars bumping into one another.,are seen driving around in bumper cars and riding around on the sand.,\"walk around the ring and begin driving, speaking to one another.\",swarm around the cars and run down the street waving to camera.,continue driving around cars as well as bumping into each other.,gold0-orig,pos,unl,unl,unl,pos,A man is seen sitting in a bumper car and begins driving around.,Several people\nanetv_mRgS35iyhYE,13272,A large group of people are seen playing bumper cars with one another. The people,crash into one another back and fourth.,skate all over a course while others watch on the side.,continue to dance with one another and end by sliding a pinata.,continues moving around one another in the background.,continue up the road while walking all around.,gold1-orig,pos,unl,unl,unl,unl,A large group of people are seen playing bumper cars with one another.,The people\nlsmdc3071_THE_DESCENDANTS-5521,17191,\"Later, someone sits next to someone, while someone reads in a chair facing the foot of the bed. Someone\",leads a taller girl into the room.,gazes curiously at someone as she goes by.,holds his cellphone to his ear.,holds his mobile to his ear.,,gold0-orig,pos,unl,pos,pos,n/a,\"Later, someone sits next to someone, while someone reads in a chair facing the foot of the bed.\",Someone\nlsmdc3071_THE_DESCENDANTS-5521,17192,Someone gives a halfhearted wave. Someone,\"glances around, then joins her friend at someone's bedside.\",\"brings - a nyc of indian style, then passes tucked into her arms.\",\"rises, looking at his sign window.\",covers his eyes with his shaking hand.,\"walks out, leaving someone swirling past someone, who's in her back.\",gold1-reannot,pos,unl,unl,unl,unl,Someone gives a halfhearted wave.,Someone\nlsmdc0011_Gandhi-52802,12703,\"In the chaos an old man calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet. Someone\",is on the back of a big open truck that is stationary in the street.,smiles as he kills two men.,'s bed lies on a table.,tosses off his typewriter.,snaps final time and reveals his hand.,gold1-orig,pos,unl,unl,unl,unl,\"In the chaos an old man calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet.\",Someone\nlsmdc0011_Gandhi-52802,12702,\"A group of policemen barge into the room, knocking tables and salt and paper in every direction with their lathis, seizing some of the volunteers for arrest. In the chaos an old man\",\"calmly picks up a piece of paper from the floor, a handful of salt, and folds another packet.\",finishes chopping the barbecue.,appears behind a table with mayor ask motions for the burmese flag.,\"is just emerging from the bar, peeling and knocking his balls.\",drinks at someone 'newspaper.,gold0-orig,unl,unl,unl,unl,unl,\"A group of policemen barge into the room, knocking tables and salt and paper in every direction with their lathis, seizing some of the volunteers for arrest.\",In the chaos an old man\nanetv_wQHMoyzJx_w,8038,We see a lady in a kitchen talking and cooking. The lady,cuts a potato and puts it in the water.,cooks lettuce on a cake in the adjacent room.,adds pasta to a pan and talks to the camera.,adds the ingredients in the pan for the lemonade.,presents the bag the paper and adds it to the lady.,gold1-orig,pos,unl,unl,unl,unl,We see a lady in a kitchen talking and cooking.,The lady\nanetv_wQHMoyzJx_w,8041,The lady peels the skin off the potato easily. We,see the closing screen.,see the tool sheet the finished product.,see the shoe sharpener and put the knife on top.,see the floor and the lady add more information for the lady.,see it again and foods.,gold1-orig,pos,unl,unl,unl,unl,The lady peels the skin off the potato easily.,We\nanetv_wQHMoyzJx_w,8037,We see a white opening scene. We,see a lady in a kitchen talking and cooking.,see an individual getting a wheelchair when the lady breathes.,see the men sitting high as and somewhere else.,see something on the wall outside a studio and see the trainer dancing in a chair in the gym.,see a man talking to a dummy in a garage.,gold0-orig,pos,unl,unl,pos,pos,We see a white opening scene.,We\nanetv_wQHMoyzJx_w,8039,The lady cuts a potato and puts it in the water. The lady,puts the potato in cold water.,\"cut the potato to the lady, then dips the egg and stirs the vegetable and eats it.\",wipes a paste using some rectangular ingredient.,\"shows us a new piece of chocolate, and serves the potatoes, then it won't make a big sandwich.\",washes her hair off with a towel.,gold0-orig,unl,unl,unl,unl,unl,The lady cuts a potato and puts it in the water.,The lady\nanetv_wQHMoyzJx_w,8040,The lady puts the potato in cold water. The lady,peels the skin off the potato easily.,adds various liquids to the jug.,uses the wood to groom the dog.,puts the tool into the mug.,puts paste on the pumpkin and puts it in the oven.,gold0-orig,pos,unl,unl,unl,pos,The lady puts the potato in cold water.,The lady\nlsmdc3012_BRUNO-4204,881,She tentatively sits on one man's back. He,holds out his microphone.,puts his mouth to hers.,stares solemnly at a lantern.,offers him a drink.,thumps her face with his hands.,gold1-reannot,pos,unl,unl,unl,unl,She tentatively sits on one man's back.,He\nanetv_PjcTk1hcf4k,12364,A girl is shown speaking to the camera and begins pointing to a tree. She,than hangs ornaments on the tree and leads back into the women speaking.,continues scrubbing the bowl while looking up to the camera.,begins to polish the objects while speaking to the camera.,begins showing her products as well as a bulldog on her finger.,welds the size of the tool and begins cutting.,gold0-orig,pos,unl,unl,unl,unl,A girl is shown speaking to the camera and begins pointing to a tree.,She\nanetv_PjcTk1hcf4k,10624,Two women talk to the camera from a stage in front of a large sign before cutting away to a young woman standing in front of and demonstrating the use of an upside down Christmas tree. Two women,\"sit on stage, one holding an electronic tablet, while talking to each other and then to the camera.\",begin paint a table with a paper and cutting them paper.,\"stand doing a hard dance in the street, ends by moving back and forth as they walk.\",clink to the interior of an airplane.,stand on the middle of a table.,gold1-orig,pos,unl,unl,unl,unl,Two women talk to the camera from a stage in front of a large sign before cutting away to a young woman standing in front of and demonstrating the use of an upside down Christmas tree.,Two women\nanetv_PjcTk1hcf4k,10625,\"Two women sit on stage, one holding an electronic tablet, while talking to each other and then to the camera. The scene\",cuts away to one young woman talking to the camera and then kneeling in front of an upside down christmas tree.,shows a series of women standing in the street playing a paved track and in the streets of the gym while the crowd watches.,\"ends with a man laying on a table, then puts a rim onto her leg.\",changes and then again with people enjoying the music and doing a weird gesture while we along with some music hanging in stage.,changes to different colors of the video while the band plays while a woman on the tam tam tams is also beginning to play.,gold1-reannot,pos,unl,unl,unl,unl,\"Two women sit on stage, one holding an electronic tablet, while talking to each other and then to the camera.\",The scene\nanetv_PjcTk1hcf4k,12363,Two women are seen speaking to the camera while various decorations are sitting inbetween them. A girl,is shown speaking to the camera and begins pointing to a tree.,seated with a string at the end.,drinks from a bottle and holds a bottle washing it.,is shown walking in the sledgehammer followed by a woman hosting a news segment describing the two of them.,moves them close together in a bedroom while the camera watches them.,gold0-reannot,pos,unl,pos,pos,pos,Two women are seen speaking to the camera while various decorations are sitting inbetween them.,A girl\nlsmdc0053_Rendezvous_mit_Joe_Black-71457,6573,\"The Board meeting has broken up, clusters of members have lingered, exchanging post - mortems. And enraged Quince\",\"has cornered someone, out of earshot of the others.\",comes in and someone gets up without up at someone.,is too much for someone at the end of death.,flicks at the sheer roots and almost instantly actually comes to a halt in the end of the board.,are put down onto the mantelpiece.,gold0-orig,pos,unl,unl,unl,unl,\"The Board meeting has broken up, clusters of members have lingered, exchanging post - mortems.\",And enraged Quince\nlsmdc0009_Forrest_Gump-50577,3692,Someone raises his fist into the air. Someone,steps away from someone.,grabs someone's throat.,\"watches in horror, scratching his hands.\",gets up from the couch.,,gold1-orig,unl,unl,unl,unl,n/a,Someone raises his fist into the air.,Someone\nlsmdc0009_Forrest_Gump-50577,3696,Someone smiles as she tries to run through the water. The crowd,parts as someone runs into the pool.,\"moves wide with her, applauding and graceful movements.\",moves slowly towards the goal.,\"is wild, choking her to the prow.\",barges in behind the girls cheering and cheering.,gold0-orig,pos,unl,unl,unl,pos,Someone smiles as she tries to run through the water.,The crowd\nlsmdc0009_Forrest_Gump-50577,3683,A policeman looks around as he sneaks over to the audio circuit board. The policeman,pulls the patch cords out of the audio board.,steps back to show someone's.,gets to his feet behind short - waving dark - haired soldiers.,proudly shows the flag on the photo of the patrolman.,,gold0-orig,pos,unl,unl,unl,n/a,A policeman looks around as he sneaks over to the audio circuit board.,The policeman\nlsmdc0009_Forrest_Gump-50577,3685,\"Someone continues to speak into the microphone, even though no one can hear what he is saying. Someone\",looks over and notices the policeman.,hides a silent steward then glances to someone.,\"enters the classroom, happy and bear, keeping never from him.\",slurps his fork of food and looks down.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone continues to speak into the microphone, even though no one can hear what he is saying.\",Someone\nlsmdc0009_Forrest_Gump-50577,3699,\"A Black Panther, named someone, steps over and pulls the shades down. Another Black Panther named masai\",grabs someone and pats him down.,lies in a gold chair with a hand on his finger.,wears a pearl necklace.,welds a golden pin.,stands at the bottom of the lower curved platform.,gold0-orig,pos,unl,unl,unl,unl,\"A Black Panther, named someone, steps over and pulls the shades down.\",Another Black Panther named masai\nlsmdc0009_Forrest_Gump-50577,3686,Someone looks over and notices the policeman. Someone,\"rushes over toward the audio board, pushes the policeman away and grabs his night stick.\",\", then leans close, lights a cigarette in the rain.\",remains alone at the court.,laughs and is suddenly alerted.,holds his hands helplessly as someone pumps his fist.,gold1-orig,pos,pos,pos,pos,pos,Someone looks over and notices the policeman.,Someone\nlsmdc0009_Forrest_Gump-50577,3687,\"Someone rushes over toward the audio board, pushes the policeman away and grabs his night stick. Another protester\",grabs the policeman and pulls him away.,\"regains the wheels, wrestles them off, races over an obstacle and crashes down heavily.\",falls to his shoulders and strides out of the garage.,fires down the roof with his crutches.,comes down from the ring attached to someone's neck.,gold0-orig,pos,unl,unl,unl,unl,\"Someone rushes over toward the audio board, pushes the policeman away and grabs his night stick.\",Another protester\nlsmdc0009_Forrest_Gump-50577,3691,Someone steps over to someone and pats him on the shoulder. Someone,raises his fist into the air.,pushes a button off the couch.,smiles he yanks off his pants.,watches him and carries the board across the room.,,gold1-orig,pos,unl,unl,unl,n/a,Someone steps over to someone and pats him on the shoulder.,Someone\nlsmdc0009_Forrest_Gump-50577,3698,\"Someone stands at an open window and looks at the White House. A Black Panther, named someone,\",steps over and pulls the shades down.,is lying in bed bed smoking a cigarette.,is standing by the apartment that.,\"approaches a green van, runs out of the top.\",pursues on a yellow nightclub dream down from others.,gold0-orig,pos,unl,unl,unl,unl,Someone stands at an open window and looks at the White House.,\"A Black Panther, named someone,\"\nlsmdc0009_Forrest_Gump-50577,3684,The policeman pulls the patch cords out of the audio board. Someone,\"continues to speak into the microphone, even though no one can hear what he is saying.\",frantically pulls the final card up and finds it toward an empty cabin.,reaches out and grabs the front heart.,walks off for a long run.,,gold0-orig,pos,unl,unl,unl,n/a,The policeman pulls the patch cords out of the audio board.,Someone\nlsmdc0009_Forrest_Gump-50577,3689,\"Isabel, someone and another protester try to plug the tangled mess of wires back into the audio board. Someone\",continues to speak into the microphone.,grabs it as he eyes his corridor.,tosses the police out of a closet as loads of equipment stored in the snare men.,\"rolls into his walkie, then stares straight.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Isabel, someone and another protester try to plug the tangled mess of wires back into the audio board.\",Someone\nlsmdc0009_Forrest_Gump-50577,3682,Someone looks at the crowd as he speaks. A policeman,looks around as he sneaks over to the audio circuit board.,has a dark stain on his brow and down at a cafe.,stands over the field facing the troops.,emerges from the helicopter as the two men in a seat seemingly walk along the sidewalk.,\"walks off front, petting his horse.\",gold1-orig,pos,unl,unl,pos,pos,Someone looks at the crowd as he speaks.,A policeman\nlsmdc0009_Forrest_Gump-50577,3695,Someone jumps down into the crowd and runs. Someone,smiles as she tries to run through the water.,\"lands on top of someone, who gets out of the shadows and leaps down to the remains of his horse.\",\"puts on the headscarf, filling someone with his.\",kicks his opponent side across.,steps onto the beach and gives her the same kiss.,gold1-orig,pos,unl,unl,unl,unl,Someone jumps down into the crowd and runs.,Someone\nlsmdc0009_Forrest_Gump-50577,3694,Someone rushes off the stage as someone makes her way out into the pool. Someone,jumps down into the crowd and runs.,carefully enters her berth and spots the dead mother.,\"parched with its glassy teeth and excitedly ripped back, painted tanned on the railing.\",\"ceases onward, eyeing the keys and waiting to try to get it.\",limps down the narrow dance deck.,gold1-orig,pos,unl,unl,unl,pos,Someone rushes off the stage as someone makes her way out into the pool.,Someone\nlsmdc0009_Forrest_Gump-50577,3690,Someone plugs in the right patch cord. Someone,looks at the massive crowd.,leaps underneath the elephant finger.,\"lies on her belly, the hyena adjusts the strap.\",sneaks between two heavily - fronted windows.,straps himself into the seat.,gold0-reannot,pos,unl,unl,unl,pos,Someone plugs in the right patch cord.,Someone\nlsmdc0009_Forrest_Gump-50577,3697,People walk past the protesters who are camping out on the lawn. Someone,stands at an open window and looks at the white house.,tosses the cards to someone and follows it out from the open door.,observes together a little boy with his eyes cast in a frown.,\"accompanies people, who is clearly still mid sprint to himself.\",,gold1-reannot,pos,unl,unl,unl,n/a,People walk past the protesters who are camping out on the lawn.,Someone\nanetv_14AnvDNV5BI,1313,\"Then, the man grans the handle of the machine. After, the man\",pulls the handle of la machine to do abs.,holds a tool on the screw table.,takes the key from someone's bicycle.,shows a hammer with the first finished tool and then drags lower it.,,gold1-orig,pos,unl,unl,unl,n/a,\"Then, the man grans the handle of the machine.\",\"After, the man\"\nlsmdc1015_27_Dresses-79726,8347,Someone is in the kitchen. She,puts down the cup she is washing and goes to the door and sees someone through the peephole.,spots a doll and makes a u - turn.,\"ignores him, nods slightly.\",\"pulls through the doorway into the dining room, where the children are having breakfast.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone is in the kitchen.,She\nlsmdc1015_27_Dresses-79726,8345,Someone looks down a street past a shop and up the steps to someone's building. He,slips in as another resident comes out.,scribbles with a kayaker pattern but stops for the hint of a cross.,has been asleep on a sofa.,smiles at the camera.,,gold0-orig,pos,unl,unl,pos,n/a,Someone looks down a street past a shop and up the steps to someone's building.,He\nlsmdc1015_27_Dresses-79726,8346,He slips in as another resident comes out. Someone,is in the kitchen.,follows him to the bar.,meets someone by the elbow with the slaps at someone's shoulder.,stares at the recruits.,steps over to someone.,gold1-reannot,pos,unl,unl,pos,pos,He slips in as another resident comes out.,Someone\nlsmdc1015_27_Dresses-79726,8348,\"Someone, eyes closed, hopes he has n't gone too far. He\",talks into a dictaphone.,blow off the boy's long sleeve and smells it.,sniffs someone's wrist.,starts to go with the other dogs.,\"runs towards someone, going up fast.\",gold0-reannot,pos,unl,unl,unl,pos,\"Someone, eyes closed, hopes he has n't gone too far.\",He\nlsmdc1015_27_Dresses-79726,8344,\"Someone looks tearful, but pulls herself together. Someone\",looks down a street past a shop and up the steps to someone's building.,\"picks up her baby's brown red coat, takes it in her right hand, reads it.\",crouches behind someone as people watch a gramophone dance.,walk down to a band out of a low corridor.,runs to the main room and joins her.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone looks tearful, but pulls herself together.\",Someone\nanetv_uj0UBMgR2gk,1284,We see a man in an orchestra making faces. The man then,stands and plays the violin.,\"stops playing and has his ear pierced, watched by two men and players.\",wipes wiping his face before leaving a shoe on his right.,stands up and talks again.,stops for the drums.,gold0-orig,pos,unl,unl,unl,pos,We see a man in an orchestra making faces.,The man then\nanetv_EavcvmrlVLQ,16822,We see men playing a game of soccer and scoring repeatedly indoors. We,see a goalie jumping around and a man shoot and score.,see a player being interviewed at the soccer practice.,see the man hug the other man.,see title screens and white screens.,,gold1-orig,pos,pos,pos,pos,n/a,We see men playing a game of soccer and scoring repeatedly indoors.,We\nanetv_EavcvmrlVLQ,16823,We see a goalie jumping around and a man shoot and score. We,see a happy young man fanning his shirt.,see the score of basketball players and show the results.,see targets on the screen.,see an ending title screen.,,gold0-orig,pos,unl,unl,pos,n/a,We see a goalie jumping around and a man shoot and score.,We\nanetv_pniQHSjY7dc,8480,A man bends down and lifts the side of a weight. He then beings,to push the weight up and down.,ironing it down.,rollerblading until another is over in a shop.,lifting another ball in the air duct.,twirling it and then lets go of the weight.,gold0-orig,pos,unl,unl,unl,unl,A man bends down and lifts the side of a weight.,He then beings\nanetv_pniQHSjY7dc,5698,He lifts a weight with his knees. He then,pauses at his chest before lifting it over his head and dropping it to the ground again.,grips a barbell around his head and drops the barbell then flips one.,demonstrates how to play ups over long.,lifts the weight over his head before setting it down.,,gold0-reannot,pos,unl,unl,pos,n/a,He lifts a weight with his knees.,He then\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89572,10951,Someone cringes as she remembers her family's improper behavior. Then she,looks down at the letter once more.,pushes herself back next to someone and helps her into the crib.,\"remains beneath an elevated highway, gripping his steering wheel as the express increases.\",\"looks at someone as the shape holds up her anxiety, screaming.\",swings out of the annual back rural town to find herself reading.,gold0-orig,pos,unl,unl,unl,unl,Someone cringes as she remembers her family's improper behavior.,Then she\nanetv_lgXtDr9pNAk,18150,He talks about it a little bit jokingly. Then he,tried to adjust it a little more.,comes up as a worker gives slap his pictures.,shows us how to make small little grain balls with a umbrella.,\"begins playing them, trying to keep the ball, and trying to get it.\",,gold0-orig,pos,unl,unl,unl,n/a,He talks about it a little bit jokingly.,Then he\nanetv_lgXtDr9pNAk,18149,He's putting little metal pieces on the metal to keep them held. He,talks about it a little bit jokingly.,parts and hammers tiles into the mechanism.,wets it into bag and begins scraping some of the melted and back cleaning.,spreads the bagpipes on a show box and removing.,takes another tight arc into the wooden box and makes bow.,gold0-orig,pos,unl,unl,unl,unl,He's putting little metal pieces on the metal to keep them held.,He\nanetv_lgXtDr9pNAk,18148,A man up on the roof putting up some metal pieces through the shingles. He,'s putting little metal pieces on the metal to keep them held.,cleans a window down in front of a glass roof.,stretches on a wall and drags them along.,scrapes the shingles off of the roof.,,gold0-orig,pos,unl,pos,pos,n/a,A man up on the roof putting up some metal pieces through the shingles.,He\nanetv_6Z4Qg_fNo0Q,14522,Several fish move pass the man. the man then,begins swimming in place.,blows a carton of fruit.,swims closer to the pool.,reaches around his friend.,walks away while the camera pans around the area.,gold0-orig,pos,unl,pos,pos,pos,Several fish move pass the man.,the man then\nanetv_6Z4Qg_fNo0Q,14334,Many fish swim around the man while he moves his hands around and another person swims into frame. The men,continue swimming around the fish and the camera pans around the area.,continues moving their legs around and looking to the camera as well as chuckles and hugging the person.,continue blowing and motion in the water.,continue surfing and smiling to the camera.,continues diving around the water while the camera captures their movements.,gold0-orig,pos,unl,unl,unl,pos,Many fish swim around the man while he moves his hands around and another person swims into frame.,The men\nanetv_6Z4Qg_fNo0Q,14521,A man is under water wearing snorkeling gear. several fish,move pass the man.,are sitting against the wall behind him.,get into the raft.,poke across a bar.,are fishing under the water.,gold0-orig,pos,unl,unl,unl,unl,A man is under water wearing snorkeling gear.,several fish\nanetv_3j2d27w3x5Q,3511,\"As he begins to cook, he grabs the ingredients and puts them in to the pan and starts to cook. The chef then\",adds spaghetti in a pot and stirs the sauce until he test the noodles.,places a pan on the plate and cruises some counter broth to the tops of a grated swiss cheese.,comes back holding a sandwich and now ingredients to it to walk the other on the package.,takes a bite and turns it in a plant pot.,takes out some beer and tosses it in the air.,gold0-orig,pos,unl,unl,unl,unl,\"As he begins to cook, he grabs the ingredients and puts them in to the pan and starts to cook.\",The chef then\nanetv_3j2d27w3x5Q,3512,The chef then adds spaghetti in a pot and stirs the sauce until he test the noodles. Once the noodles are done he,tastes them and drains them.,explains and rolls the omelet of salt out.,puts the noodles in a cup to put some more vinegar on a strainer.,comes in and shows the packaged salad.,moves the pan all ready.,gold0-orig,pos,unl,pos,pos,pos,The chef then adds spaghetti in a pot and stirs the sauce until he test the noodles.,Once the noodles are done he\nanetv_3j2d27w3x5Q,7195,A man is seen speaking to the camera and mixing ingredients into a pan. He,stirs around the ingredients while adding more as well as putting noodles in a pot.,continues mixing the ingredients together in a bowl then spreading icing over the camera.,pours the ingredients into glass and mixes them all together into a cloudy shaker.,continues eating the mix while continuing to use a mixer to wash dishes in his hands.,puts oil down his bread while still laughing and smiling to the camera.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera and mixing ingredients into a pan.,He\nanetv_3j2d27w3x5Q,7196,He stirs around the ingredients while adding more as well as putting noodles in a pot. He,puts the noodles into the pan stirring it around and presenting it on a plate.,add eggs and puts it on the cake.,puts the chicken up as well as putting it to the counter and pours it out with a plate and baking tray.,continues adding more ingredients into the container as he describes another egg mixture.,,gold0-orig,pos,unl,pos,pos,n/a,He stirs around the ingredients while adding more as well as putting noodles in a pot.,He\nanetv_3j2d27w3x5Q,3510,\"The man is then shown again and various ingredients that he's about to use are featured. As he begins to cook, he\",grabs the ingredients and puts them in to the pan and starts to cook.,is back down the street very fast and then goes.,rest a mix of utensils and vinegar while toast on the front of the dish.,\"talks eating the remainder of the food, bearing friend's name and a name of the coach.\",smiles and then dances close behind him.,gold0-orig,pos,unl,unl,unl,unl,The man is then shown again and various ingredients that he's about to use are featured.,\"As he begins to cook, he\"\nanetv_3j2d27w3x5Q,3513,Once the noodles are done he tastes them and drains them. Once the meal is completed he then,pours it into a bowl.,continues in detail to be good food.,takes the indicated out of an ross containers and the dish.,cuts the dough and starts to wrangle a large red cookie into it.,blends them into a bowl.,gold1-orig,pos,unl,unl,unl,pos,Once the noodles are done he tastes them and drains them.,Once the meal is completed he then\nanetv_RNAUncQEASo,5896,She begins to clip the dogs hair while it is standing on top of a grooming table. She,stands the dog up and continues to clip the dog's hair.,takes a red coat and she hangs it in a knapsack and shampoo.,change into the women and begin brushing the dogs hair with their food.,shows the other smile of the camera.,ties round her hair and wags her by the shears.,gold1-orig,pos,unl,unl,unl,unl,She begins to clip the dogs hair while it is standing on top of a grooming table.,She\nanetv_RNAUncQEASo,3982,A woman begins shaving the dog. She,picks up a brush and brushes the dogs hair.,starts a drink onto the filter.,puts the cream over her legs.,sprays soft brown hair.,slowly jerks her hair forward and legs up and begins sweeping her hair again.,gold1-orig,pos,unl,unl,unl,unl,A woman begins shaving the dog.,She\nanetv_RNAUncQEASo,5895,A woman comes onto the screen to introduce a video about dog grooming and show the tools that she uses to clip the dog's hair. She,begins to clip the dogs hair while it is standing on top of a grooming table.,is on how to use the fur coat and brushed on a black paw.,\"then shows the hands tied back up the person mans dog, she is dusts it back.\",pets her paw with a small razor and electric comb and styling gel from different angles.,,gold0-orig,pos,unl,unl,pos,n/a,A woman comes onto the screen to introduce a video about dog grooming and show the tools that she uses to clip the dog's hair.,She\nanetv_RNAUncQEASo,3981,A small white dog is standing on a table. A woman,begins shaving the dog.,holds out a wooden table and uses a large brush to cut down the woman's hair.,is lifting weight up to her chest.,is blow drying her hair.,,gold0-orig,pos,unl,unl,pos,n/a,A small white dog is standing on a table.,A woman\nanetv_IkXuooaGnCc,2751,Letters are shown on a screen. A blue bucket,is put into a sink.,is placed onto a canvas.,is gathered next to it.,is being sprayed with wax.,,gold0-orig,pos,unl,unl,pos,n/a,Letters are shown on a screen.,A blue bucket\nanetv_IkXuooaGnCc,2752,A blue bucket is put into a sink. A man,starts mopping the hardwood floors.,is scrubbing a horse using a sprayer.,is sitting by a display of bikes talking.,is in a bathroom with a toilet.,looks at a tube then pours it.,gold0-orig,pos,unl,unl,unl,unl,A blue bucket is put into a sink.,A man\nanetv_IkXuooaGnCc,2753,A man starts mopping the hardwood floors. He,mops the tile in the bathroom.,moves his hands up and down on the bed.,uses a vacuum to crawl down the walls of the room.,starts washing the shoes and use the surface to clean the windows.,is then shown talking.,gold1-orig,pos,unl,unl,unl,pos,A man starts mopping the hardwood floors.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2225,\"Someone suddenly stands. he speaks in a strong, clear voice. Sudden silence. someone\",looks around the room at the astounded faces.,kneels back by the horseless carriage.,\"stands there, close, staring his torso.\",\"stands still, quince gaze frozen.\",comes to a shout at someone.,gold0-orig,pos,unl,unl,unl,pos,\"Someone suddenly stands. he speaks in a strong, clear voice.\",Sudden silence. someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2224,\"With a huge effort or will, someone tears his gaze upon the ring. Someone suddenly stands. he\",\"speaks in a strong, clear voice.\",shoots his shotgun at the blazing skiptracer.,\"pauses at the threshold, then leans toward someone and presses the web on someone's back.\",has a lot of balls determination anything along both them because his bat is just missing the windshield.,,gold0-orig,pos,unl,unl,pos,n/a,\"With a huge effort or will, someone tears his gaze upon the ring.\",Someone suddenly stands. he\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60205,2223,\"The ring fills the screen. streams of blood flow across the surface. With a huge effort or will, someone\",tears his gaze upon the ring.,streaks around and wrings out the contents.,climbs into the goblin tent pedestal.,sits on the tabletop with her.,submerges himself on again.,gold1-orig,pos,unl,unl,unl,unl,The ring fills the screen. streams of blood flow across the surface.,\"With a huge effort or will, someone\"\nanetv_DCyLmohIwkQ,4919,He sets up the bow and gets his arrows. Next we,see him outdoors as he walks across some grass towards a target.,see the goal being retrieved.,see a couple of arrows with a wing of stone arrows.,see the players get ready to jump.,see the person with the arrows again.,gold0-orig,pos,unl,pos,pos,pos,He sets up the bow and gets his arrows.,Next we\nanetv_DCyLmohIwkQ,4922,After a few tries he gets a bulls - eye. He,sets his bow and his arrows down onto a wooden platform.,goes back to the point.,pretends to someone himself.,puts on a white shirt and colored tie.,,gold0-orig,pos,unl,unl,unl,n/a,After a few tries he gets a bulls - eye.,He\nanetv_DCyLmohIwkQ,4921,He pulls out an arrow and and sets it in his bow. After a few tries he,gets a bulls - eye.,touches it and darts in shot.,tries the secured hilton.,stops messing and holds it up.,,gold0-orig,pos,unl,unl,unl,n/a,He pulls out an arrow and and sets it in his bow.,After a few tries he\nanetv_DCyLmohIwkQ,4920,Next we see him outdoors as he walks across some grass towards a target. He,pulls out an arrow and and sets it in his bow.,holds up a man's arm as he shoots her from the air.,walks towards the camera.,starts picking the croquet ball and throws it across the yard.,,gold1-reannot,pos,pos,pos,pos,n/a,Next we see him outdoors as he walks across some grass towards a target.,He\nanetv_DCyLmohIwkQ,4918,A man slowly walks over and takes some equipment off of the wall as some dramatic music plays. He,sets up the bow and gets his arrows.,laughs and laughs into the camera.,\"talks to a camera about the cave neck, mouthing his youtube video video speaking to the microphone.\",does n't like what he is doing.,,gold0-reannot,pos,unl,unl,pos,n/a,A man slowly walks over and takes some equipment off of the wall as some dramatic music plays.,He\nanetv_mTtBz5d83C4,10037,There are several people sledding down a snowy slope in round snow tubes. They,are going down the steep snowy slope at high speed.,ride them in the water.,flutter either side also move.,ride around and are shown riding down a hill together.,,gold0-orig,pos,unl,unl,pos,n/a,There are several people sledding down a snowy slope in round snow tubes.,They\nanetv_mTtBz5d83C4,10038,They are going down the steep snowy slope at high speed. One of the people going down the slope,raises his hand to his friend as he goes downhill.,\"is flipping in the end of the line, smiling.\",has a decent thought.,is making them way down a hill.,,gold0-orig,pos,unl,unl,pos,n/a,They are going down the steep snowy slope at high speed.,One of the people going down the slope\nlsmdc0022_Reservoir_Dogs-59293,17688,\"Someone brings his hands up to his face, screaming, and falls to the ground. Someone\",\"lies perfectly still, except for his chest heaving.\",gazes solemnly into his mother's eyes.,moves towards her as she sinks out onto the water.,comes up to him and gives him a gun.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone brings his hands up to his face, screaming, and falls to the ground.\",Someone\nlsmdc0022_Reservoir_Dogs-59293,17685,\"Someone fires three times, hitting someone with every one. The two men\",\"fall to their knees, firing at each other.\",shoot back over the gaping hole.,\"plummet to the ground, gun aimed.\",\"split, then turn away.\",\"run off, led by someone.\",gold0-orig,pos,unl,pos,pos,pos,\"Someone fires three times, hitting someone with every one.\",The two men\nlsmdc0022_Reservoir_Dogs-59293,17689,\"Someone lies perfectly still, except for his chest heaving. Someone\",\"is shot full of holes, but still on his knees, not moving.\",hangs up the feather.,rolls the stomach down.,reacts to his cold strain.,is asleep in bed with it.,gold1-orig,pos,unl,unl,unl,unl,\"Someone lies perfectly still, except for his chest heaving.\",Someone\nlsmdc0022_Reservoir_Dogs-59293,17686,\"The two men fall to their knees, firing at each other. Someone\",brings his gun around on someone and shoots him.,falls on his broomstick near deck.,of the men are warriors as they clap and shoot.,\"take the mat to the table, hit them on the back, and then sit on their knees.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The two men fall to their knees, firing at each other.\",Someone\nlsmdc0022_Reservoir_Dogs-59293,17684,\"Someone scared shitless for his father, gun locked on someone. Someone\",\"fires three times, hitting someone with every one.\",descends into the packed empty grill.,has drops someone's bag!,seizes someone in a choke hold.,whips the gun at someone who try to punch him.,gold1-orig,pos,unl,unl,pos,pos,\"Someone scared shitless for his father, gun locked on someone.\",Someone\nlsmdc0022_Reservoir_Dogs-59293,17690,Finally he grabs the satchel of diamonds and runs out the door. Someone,tries to stand but falls down.,shoots the tire around and grins.,\"holds a nazi coin, horrified.\",realizes he won't notice it.,,gold0-orig,pos,unl,unl,pos,n/a,Finally he grabs the satchel of diamonds and runs out the door.,Someone\nlsmdc0022_Reservoir_Dogs-59293,17687,Someone brings his gun around on someone and shoots him. Someone,shoots someone twice in the face.,casts through the window blinds and finds the army's cockpit.,screws up a third device.,catches his hand and picks him up.,shoots him off the side.,gold0-orig,pos,unl,unl,pos,pos,Someone brings his gun around on someone and shoots him.,Someone\nlsmdc0022_Reservoir_Dogs-59293,17691,Someone tries to stand but falls down. He somehow,makes it to where someone lies.,continues kicking the left and ends swinging his arms up and leaves to clean him.,manages to shield his inert.,fights them forward with a stick and falls away on his own.,finds some of the ice underneath someone's arm.,gold0-reannot,pos,unl,unl,unl,unl,Someone tries to stand but falls down.,He somehow\nanetv_QaNQrUpmmgo,2446,A woman in an orange shirt is sitting on an exercise machine. She,begins working out on the exercise machine.,begins to do a routine on a boxing machine.,flips the kid down on a mat.,does a gymnastics routine on the balance beam and does multiple flips.,stands up outside a gym while she continues using the machine.,gold0-orig,pos,unl,unl,unl,unl,A woman in an orange shirt is sitting on an exercise machine.,She\nanetv_QaNQrUpmmgo,2447,She begins working out on the exercise machine. People,are walking past a window behind her.,begins exercising using a recorder on his lap.,continues talking as she sits outside the room again and looks around.,are at the end of their encounter and shown walking through the room.,\"are shown to the side, where a woman is rubbing her arm the machine way.\",gold0-orig,pos,unl,unl,unl,unl,She begins working out on the exercise machine.,People\nlsmdc3046_LARRY_CROWNE-21840,12477,\"As someone heads away, someone turns back to her friend. Someone\",glances out the window.,gently caresses her daughter's cheek's an open palm.,nods sadly and stares at her mother then nods.,shuts the passenger door and makes his way down the long steps.,\"watches her brother leave the carriage, and goes around the blaze.\",gold0-orig,pos,unl,unl,unl,pos,\"As someone heads away, someone turns back to her friend.\",Someone\nanetv_WxlJBRUU1A0,18974,A woman remains seated as she speaks and knits. The woman,stops knitting and points to some of the patterns on the knitted piece as she speaks.,goes down the stairs to the doors to hop out.,is arriving lightly to the chair.,is shown speaking to the camera and showing her hair as well as wave to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A woman remains seated as she speaks and knits.,The woman\nanetv_WxlJBRUU1A0,4027,A woman is seated and talking. She,is showing how to knit an item.,is playing an accordian.,lifts up a male baby and throws it down while she watches.,tunes up a hair dryer and begins to play.,demonstrates how to jump rope work yoga.,gold0-orig,pos,unl,unl,unl,unl,A woman is seated and talking.,She\nanetv_WxlJBRUU1A0,4028,She is showing how to knit an item. She,is using a needle and yarn to knit.,gives it to him and speaks to him with a final eye.,rubs glitter on her finger.,demonstrates how to use gifts to trim a tree.,points at her options.,gold0-orig,pos,unl,unl,unl,pos,She is showing how to knit an item.,She\nanetv_IjULOynkK5I,6502,A woman is seen speaking to the camera and leads into her clapping and hosting various exercise classes. The woman,is seen spinning on bikes with others as well as performing squats and other exercises with her class.,then begins reading a five on the wall while speaking to the camera.,continues dancing all around and showing off her plate and leads out walking on grass.,finishes by holding up the violin then grips her arms by pulling her close.,follows her and begins dancing several more times while continuing to speak with another.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen speaking to the camera and leads into her clapping and hosting various exercise classes.,The woman\nanetv_IjULOynkK5I,14129,She is instructing a class. They then,do several other exercises.,add each other for the class and march forward.,begin to interact with each other with a teacher.,bend down and dance while laughing.,,gold1-reannot,pos,unl,unl,pos,n/a,She is instructing a class.,They then\nanetv_IjULOynkK5I,14128,She then gets on a bike. She,is instructing a class.,are walking down the road and doing.,continues flipping on the low aisle.,gets handed a bike.,sticks a sandwich under the paper.,gold1-reannot,pos,unl,unl,unl,unl,She then gets on a bike.,She\nanetv_IjULOynkK5I,14127,A woman stands in a small gym. She then,gets on a bike.,demonstrates the exercise machine.,picks up a baton.,\"holds a rubik's cube, and run.\",begins jumping roping and dancing.,gold0-reannot,pos,unl,unl,unl,pos,A woman stands in a small gym.,She then\nanetv_vGKdr_au240,10232,She slides across a floor with some curling equipment. This,is followed by two men in speedos using their curling equipment.,group is wearing a plaid and waterproof ballet outfit.,is shown over a fence.,sprays the box.,,gold0-orig,pos,unl,unl,unl,n/a,She slides across a floor with some curling equipment.,This\nanetv_vGKdr_au240,13862,She throws a curling ball down the ice. Two people,are in front of the ball brushing the ice.,talk about the players.,\"join in on the grass, and the girl watches as the other team scores and teammates runs.\",begin swimming and throwing the ball back and forth.,are on the sidelines.,gold0-orig,pos,unl,unl,unl,pos,She throws a curling ball down the ice.,Two people\nanetv_vGKdr_au240,13863,Two people are in front of the ball brushing the ice. Two men in bathing suits,are tossing a beach ball around.,stand up and continues big polo.,swim in the water and holding the camera.,talks to the camera.,are playing beer pong in a room.,gold0-orig,pos,unl,unl,unl,unl,Two people are in front of the ball brushing the ice.,Two men in bathing suits\nanetv_vGKdr_au240,10233,\"Even with bikinis involved, curling is still boring. Next these same two men, still in Speedos and sneakers\",are seen playing catch with a beach ball on the same slick floor.,stroking another shadow and candid white as the group cameraman films them.,are on the video a title and picture of a young woman.,being instructed in the face of leading it.,\"raise their hands at a canvas, pushing the snow off the ground.\",gold0-orig,pos,unl,unl,unl,unl,\"Even with bikinis involved, curling is still boring.\",\"Next these same two men, still in Speedos and sneakers\"\nanetv_vcCwvRYqU2I,15431,The man chooses a rake from four. The man,throws some grass in the garbage.,grabs a lift from the shingle and speaks.,releases the other and raps for the ball with the second axe.,kneels and slides one of them down a slide.,moves the polished stick into the soil.,gold0-orig,pos,unl,unl,unl,pos,The man chooses a rake from four.,The man\nanetv_vcCwvRYqU2I,15435,The man sprinkles leaves into the yard and rakes them up. We then,see the twigs and leaves again.,see the person pushing the knife.,see the finished screen.,see a dried flower.,,gold1-orig,pos,unl,unl,pos,n/a,The man sprinkles leaves into the yard and rakes them up.,We then\nanetv_vcCwvRYqU2I,15430,A man rakes his yard and talks to the camera. The man,chooses a rake from four.,jumps off and jumps up to shovel in the snow.,continues to mow the lawn with his family around.,uses roller brush to clean leaves on a sidewalk in a playground.,removes his shin objects.,gold1-orig,pos,unl,unl,unl,unl,A man rakes his yard and talks to the camera.,The man\nanetv_vcCwvRYqU2I,15434,The man throws his rake into the yard. The man,sprinkles leaves into the yard and rakes them up.,bends forward and puts his hands up and ending with the jump up on the screen.,places the brush in the blower and continues to scraping the hair extremely quickly.,falls off the tree and lands on the ground.,takes off his ax before grabs the fly.,gold0-orig,pos,unl,unl,unl,unl,The man throws his rake into the yard.,The man\nanetv_vcCwvRYqU2I,15429,We see a tree with leaves blowing int he wind. A man,rakes his yard and talks to the camera.,is mowing a lawn in a home.,mows a lawn while a lady sits on the sidewalk.,uses a leaf blower to show the leaves.,is driving the tractor while he has a boy in next.,gold1-orig,pos,unl,unl,unl,unl,We see a tree with leaves blowing int he wind.,A man\nanetv_vcCwvRYqU2I,15432,The man throws some grass in the garbage. The man,picks up and smells a twig with leaves.,waves and cuts off his green trunk.,swings off the board onto the grass.,uses a rake to apply paint off the wall.,is then shown hitting a ball very far.,gold1-reannot,pos,unl,unl,unl,pos,The man throws some grass in the garbage.,The man\nanetv_vcCwvRYqU2I,15433,The man picks up and smells a twig with leaves. The man,throws his rake into the yard.,releases the harmonica and enters the room.,removes the wooden bench and ducks a canopy tree.,dumps the wallpaper in the trash.,gets off the tape and turns around.,gold0-reannot,pos,unl,unl,unl,unl,The man picks up and smells a twig with leaves.,The man\nlsmdc0041_The_Sixth_Sense-67906,13804,Someone's fingers move to the volume dial. He,turns it way up.,arrives and places the chain around the alien.,pours a five pills into each of the contents.,drops the box and chases someone outside.,were snowboarding down the hill at an airport.,gold0-orig,pos,unl,unl,unl,unl,Someone's fingers move to the volume dial.,He\nlsmdc3045_LAND_OF_THE_LOST-21366,4268,Someone hops on someone for a piggyback. Someone,carries the primate to the top of a dune.,\"gets out of the car, destroying the drive.\",gradually settles from under her breath.,returns to his date.,grabs the restraint delivers and begins to chop it.,gold1-reannot,pos,unl,unl,unl,unl,Someone hops on someone for a piggyback.,Someone\nanetv_a42c_maArv4,3086,A woman races back from the net to hit the incoming volleyball. A fellow team member also,hits the ball and sends it across the net.,watches a game of soccer games.,run to prevent them from getting hit.,comes to high fives during the games these times.,hit ice rackets once more.,gold1-orig,pos,unl,unl,unl,unl,A woman races back from the net to hit the incoming volleyball.,A fellow team member also\nanetv_a42c_maArv4,3085,The camera shakes on an image of an indoor volleyball court. A woman,races back from the net to hit the incoming volleyball.,sits on the dirt fom table.,is then seen posing with yarn and demonstrating how to use the hula hoop.,leads an orange team aiming a beam of judges.,is in the pool in a pool.,gold0-orig,pos,unl,unl,unl,unl,The camera shakes on an image of an indoor volleyball court.,A woman\nanetv_jEN2smSwZ-o,8055,She lays down on a black medical chair and the man pierces her ear's tragus with medical tools. The lady,\"looks at herself and her new piercing in the mirror, smiles and gives two thumbs up.\",\"bends, picks up two bottle of soap and puts them back on and wipes them, then buffs, continues the floor clothes.\",grabs a pink toothbrush and wash his face after brushing it and taking the orange off her face.,places a bottle on the desk where the person plugs in another book.,,gold0-orig,pos,unl,unl,unl,n/a,She lays down on a black medical chair and the man pierces her ear's tragus with medical tools.,The lady\nanetv_jEN2smSwZ-o,8054,A man with tattoed arms swabs the ear of young lady with an ear swab. The lady,stand up and looks at herself in the mirror.,is seated outside a window.,peels the hair from her face.,talks while pointing to several bowls set as the man prepares a cup.,,gold0-orig,pos,unl,unl,pos,n/a,A man with tattoed arms swabs the ear of young lady with an ear swab.,The lady\nlsmdc3084_TOOTH_FAIRY-40115,3433,\"Someone hesitates, his stick raised and the puck at his feet. An arrow\",\"bashes him away from the puck, knocking him down.\",continues through the ring.,makes his way through the waters.,reaches someone's disfigured mouth.,goes through a hole in the back of an open palm.,gold1-orig,pos,unl,unl,unl,unl,\"Someone hesitates, his stick raised and the puck at his feet.\",An arrow\nlsmdc3084_TOOTH_FAIRY-40115,3435,\"Behind the Ice Wolves bench, the coach angrily chews his gum and glares at someone. The burly player\",\"returns to the bench and takes a seat, his gaze downcast.\",smashes a gold bar into the player's belt.,lifts a little over and throws the ball at someone's feet.,takes a swig of his martini martini.,\"puts his hand on the girl, then sits back down.\",gold0-orig,pos,unl,unl,unl,unl,\"Behind the Ice Wolves bench, the coach angrily chews his gum and glares at someone.\",The burly player\nlsmdc3084_TOOTH_FAIRY-40115,3437,He finds someone and the kids waiting in the parking lot. He,musters a curt wave and pulls into a parking space.,turns to the window.,pauses and walks to the door.,shoots a glance at the window and blows out smoke.,talks using a payphone.,gold0-orig,pos,unl,unl,unl,unl,He finds someone and the kids waiting in the parking lot.,He\nlsmdc3084_TOOTH_FAIRY-40115,3434,As someone irritably shakes his head. Someone,pushes himself onto his hands and knees.,sweeps his hand off a makeshift ledge to watch the chef's body series.,curls into the bed and sits with a phone.,steps up to him raise his arms.,,gold0-orig,pos,unl,unl,pos,n/a,As someone irritably shakes his head.,Someone\nlsmdc3084_TOOTH_FAIRY-40115,3436,\"Later, someone drives home. He\",finds someone and the kids waiting in the parking lot.,holds a gun and holds it against the handle.,races toward the back of the van near the house.,\"runs across the bedroom, his paces away and faces the woman.\",paces up the side of the school bus onto a wooden road.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, someone drives home.\",He\nlsmdc3015_CHARLIE_ST_CLOUD-780,3578,\"Now, someone strolls into a hobby and toy shop. Three teen girls\",stand behind the counter.,lie on the bed.,creep over on cliff.,dance in unison as the someone run off.,hang on the side of the ladder top.,gold0-orig,pos,unl,unl,unl,unl,\"Now, someone strolls into a hobby and toy shop.\",Three teen girls\nanetv_soGmSXFO7wI,713,\"A woman and several others follow, doing the same. The winners\",\"celebrate, holding up flags and hugging joyfully.\",bow to him and cheer him on.,are opened then the game continues rolling.,show on the gq map.,are shown and the video ends.,gold0-orig,pos,unl,unl,unl,unl,\"A woman and several others follow, doing the same.\",The winners\nanetv_soGmSXFO7wI,712,\"He spins, then throws the ball as far as he can. A woman and several others\",\"follow, doing the same.\",interviewed cheer each other.,pass at a bar.,remain back on the stage.,,gold1-orig,pos,unl,unl,unl,n/a,\"He spins, then throws the ball as far as he can.\",A woman and several others\nanetv_soGmSXFO7wI,711,\"A man walks onto a field before a crowd, holding a heavy ball into the air. He\",\"spins, then throws the ball as far as he can.\",changes to the camera and continues doing tricks.,climbs onto the bicycle and pulls the rope away.,takes off his lacrosse pole.,rolled again the side of the field with a ball ball being removed from the sides.,gold0-orig,pos,unl,unl,unl,unl,\"A man walks onto a field before a crowd, holding a heavy ball into the air.\",He\nanetv_whwserG3XGc,16050,Team wearing yellow uniform are running in a field. photographers,are standing in he ield taking pictures of the yellow and blue team.,dance routines with great signs as people celebrate.,are playing a game.,wheat preparing to dance together in various positions.,receive the flag and other team mates dressed in a paintball competition in a field.,gold0-orig,pos,unl,unl,unl,unl,Team wearing yellow uniform are running in a field.,photographers\nlsmdc3064_SPARKLE_2012-4282,1818,\"Someone enters, followed by someone. She\",looks at needle marks in someone's arm.,looks straight up and see a rusty metal box with rifles lid on it.,holds up a small umbrella and pours whisky into the glass.,posts someone's arm.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone enters, followed by someone.\",She\nlsmdc3064_SPARKLE_2012-4282,1817,She fiddles with her tangled hair. Someone,\"enters, followed by someone.\",laughs at the phone as she reads.,shakes her head ecstatically.,paints the base of her bedspread.,,gold0-orig,pos,unl,unl,unl,n/a,She fiddles with her tangled hair.,Someone\nlsmdc3024_EASY_A-11337,13383,\"Saturday morning, someone opens the card again. Painting her toenails, she\",\"sings to a dog on her bed, then paints the dog's nails.\",thoughtfully slips her finger under her friend's eye.,gardener back and falls about half an inch ahead.,\"uses a sign for a scissor, and lights it on.\",watches as paint flooring paints a barrier over the grille.,gold0-orig,pos,unl,unl,unl,unl,\"Saturday morning, someone opens the card again.\",\"Painting her toenails, she\"\nlsmdc3024_EASY_A-11337,13381,\"Friday afternoon, someone opens a greeting card that reads, to my granddaughter, you're my pocket full of sunshine.. She\",finds a $5 someone inside.,having really bad experience.,see someone walks through the hobbit house while someone continues over and stands up.,shows colorful photos criquet about her.,sits alone at a counter with several guests - - stop counter for drinks.,gold0-orig,pos,unl,unl,unl,unl,\"Friday afternoon, someone opens a greeting card that reads, to my granddaughter, you're my pocket full of sunshine..\",She\nlsmdc3024_EASY_A-11337,13385,\"Sunday morning, someone repeatedly opens and shuts the card. She\",\"glances about, then shuts the card and joins the dog on her bed.\",enters and shuts the door behind him.,holds up her purse.,holds out a tissue.,,gold0-orig,pos,unl,pos,pos,n/a,\"Sunday morning, someone repeatedly opens and shuts the card.\",She\nanetv_4kbtdUz2M3M,6901,\"Various people are seen wandering around a beach, followed by waves moving along the water and people sitting in the water. Several people\",surfing the waves while people on the sidelines watch the athletes move.,are shown driving around while many getting into various areas as well as using the kite into the water.,are seen riding a roller along the water while others watch on the side.,follow to the sides and the continue to walk in the water.,are then shown running down a side and together with other people jumping various onto the side.,gold0-orig,pos,unl,unl,unl,unl,\"Various people are seen wandering around a beach, followed by waves moving along the water and people sitting in the water.\",Several people\nanetv_RTnNxbG2V5o,7477,A young boy is seen sitting in a bumper car as well as several shots of a carnival being shown. The people then,drive around the game bumping into one another constantly and end by stopping the car.,ride around a bumper car riding down the road while bumping and speaking to the camera.,begin riding in bumper cars riding around in bumper cars with one another and moving in circles as well.,rotate on another track and the man waving at the camera as well as walking away skateboards down a street.,\"rides motorcycles along a city road as well as falling in, bumping and bumping.\",gold0-orig,pos,unl,unl,unl,unl,A young boy is seen sitting in a bumper car as well as several shots of a carnival being shown.,The people then\nanetv_RTnNxbG2V5o,15468,They ride the cars around the plateform. Several others,are riding the other rides at the carnival.,follow as they skate on the road.,run as the boards hit the water.,are on a train going in circles.,are on the side of the road.,gold1-orig,pos,unl,unl,unl,pos,They ride the cars around the plateform.,Several others\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12906,\"He turns into a wide corridor licked by flaming torches, and hurries along until he reaches the top of a narrow flight of stone steps. Someone\",follows him down the steps into a gloomy corridor with rough stone walls.,\"rolls up his hand, runs off, and runs down into the water.\",\"looks puzzled, suddenly the manager comes up and flies outside.\",halts from the tracks on the right of a balcony through the glass window.,seems to a full length stone wall as it rises into the groups below.,gold0-orig,pos,unl,unl,unl,unl,\"He turns into a wide corridor licked by flaming torches, and hurries along until he reaches the top of a narrow flight of stone steps.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12907,Someone follows him down the steps into a gloomy corridor with rough stone walls. Riddle,approaches a heavy wooden door.,addresses out the message pages.,strides to the edge and knocks the piece of broken tile from the head on.,appears across the earth in a group filled with white devices.,enters the dark chamber and moves across to his desk.,gold0-orig,pos,unl,unl,unl,unl,Someone follows him down the steps into a gloomy corridor with rough stone walls.,Riddle\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93159,12908,Riddle approaches a heavy wooden door. He,takes out his wand and looks around warily before throwing open the door to reveal a shadowy figure bending over a large wooden box.,arrives with a cold smile at the bottom of the door.,\"wedges it into the grate, and then opens it.\",steps forward with a flashlight in his hand.,\"opens a door and goes inside, but finds his cell on the floor.\",gold1-orig,pos,unl,pos,pos,pos,Riddle approaches a heavy wooden door.,He\nanetv_0cscG-qOaQY,16850,The woman cut paper and wrap a small box into a christmas paper. woman,grab a red and golden paper and wraps a whiskey box.,cuts all the christmas tree covered with cellophane.,put a third on the cellophane for a jack sign.,gets a basket with tissue paper and put some ornaments onto the tree.,,gold1-orig,pos,unl,unl,pos,n/a,The woman cut paper and wrap a small box into a christmas paper.,woman\nanetv_0cscG-qOaQY,134,\"A person puts gift paper on top a cactus in a pot. Then, the person\",shows to wrap a cylinder gift and puts an ornament on top.,\"takes the dough and puts dry ingredients in a bowl, after they person mix it in a yellow bowl.\",puts the sandwich into a hole and mix ingredients into a bowl.,\"puts pasta on the plate, helps the person put ingredients on a piece.\",,gold0-orig,pos,unl,unl,unl,n/a,A person puts gift paper on top a cactus in a pot.,\"Then, the person\"\nanetv_0cscG-qOaQY,16849,Woman grabs a box and a wrap a box on blue paper. the woman,cut paper and wrap a small box into a christmas paper.,places some pieces of metal in the table.,flips the shoe and put it on the wrapping paper.,cuts the paste pieces off the wrapping paper onto pieces.,,gold0-orig,pos,unl,unl,unl,n/a,Woman grabs a box and a wrap a box on blue paper.,the woman\nanetv_0cscG-qOaQY,136,\"Then, the person shows to wrap a square gift and made a paper flower. After, the person\",shows to make a rectangle wrapping using a red cube.,\"cuts the woman's toenails, and the news shows how to wrap a red ribbon around pieces.\",makes the perfect contact and moves the pumpkin towards the ground.,shows the penny and baking paper and takes different colors.,arrange the gift on and begin a cake and wrap it around it.,gold1-orig,pos,unl,unl,unl,pos,\"Then, the person shows to wrap a square gift and made a paper flower.\",\"After, the person\"\nlsmdc0016_O_Brother_Where_Art_Thou-55367,18649,Someone waves his hat at the radio building as singers in faux hillbilly outfits with various musical instrument cases get out of the second car. Someone,\"sits in the background, playing and singing a slow blues.\",swoops upstairs then completely steer between the men in which disappears.,peer out a stack of seats while stroking one of the large men.,comes up to a cigarette in his hand.,,gold0-orig,pos,unl,unl,pos,n/a,Someone waves his hat at the radio building as singers in faux hillbilly outfits with various musical instrument cases get out of the second car.,Someone\nlsmdc0016_O_Brother_Where_Art_Thou-55367,18650,\"Someone sits in the background, playing and singing a slow blues. The three convicts, holding coffee cups,\",gaze into the fire.,move slowly toward the ladies.,are watching the gramophone as someone looks uncomfortable.,have their room gathered up the front of the table.,eat a sausage rabbit.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone sits in the background, playing and singing a slow blues.\",\"The three convicts, holding coffee cups,\"\nanetv_I_6Ok72DnJA,12003,He peels the sticky side from the backing paper. He,is now applying the sticky side of the paper to the wall.,\"glances up at someone and reads it, then turns a page.\",draws out his finger and checks for out much g..,sees some crumpled papers on his desk.,puts the knob up on the floor and continues to cut it in.,gold0-orig,pos,unl,unl,unl,unl,He peels the sticky side from the backing paper.,He\nanetv_I_6Ok72DnJA,12002,A man is hanging wallpaper on a wall. He,peels the sticky side from the backing paper.,spreads down a white carpet to the carpet.,is applying tiles to the ceiling in his room.,is demonstrating how to wash the walls beige.,is painting with a basement bat.,gold0-orig,pos,unl,unl,pos,pos,A man is hanging wallpaper on a wall.,He\nanetv_I_6Ok72DnJA,12004,He is now applying the sticky side of the paper to the wall. He,repeats this several more times on different parts of the wall.,adds another juice to a lime while his legs are undone.,finds mayo on the paper and puts it on.,wipe his face.,,gold0-orig,pos,unl,unl,unl,n/a,He is now applying the sticky side of the paper to the wall.,He\nanetv_7QvvqWJRwNo,18416,A child stands in the tire and jumps for joy. An adult,gets up and pulls both tires.,walks through the angel holding a stick in his hand while shaking hands with a couple.,is running with a baby in a swing.,walks out on the left side of the slide.,is standing on a lake.,gold0-orig,pos,unl,unl,unl,unl,A child stands in the tire and jumps for joy.,An adult\nanetv_7QvvqWJRwNo,18415,People are sliding down a snowy slope with inflated tires. A child,stands in the tire and jumps for joy.,holds an orange bottle attached to a ankle wash and is washing buckets.,is riding on a pier.,is sitting on a back wheel on a skateboard.,,gold0-reannot,pos,unl,unl,unl,n/a,People are sliding down a snowy slope with inflated tires.,A child\nlsmdc0011_Gandhi-52278,5394,He glances at someone again. He,\"looks around, then turns and marches off briskly shoving his way through the crowd.\",\"makes an envelope fly around his lap, then drops the covers.\",\"disappears into space, unaware that someone is at the table.\",\"stares out of his window, and his broken eyes lift.\",notices the scroll then turns back to someone.,gold1-orig,pos,unl,unl,pos,pos,He glances at someone again.,He\nlsmdc0011_Gandhi-52278,5389,\"Most of the faces are gaunt and lean. And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain\",shoves his way through to confront someone down the little aisle that was being made for him.,is quick no sound.,starts back onto the platform.,\"wanders forward, revealing a intense view of his name on the screen.\",allows himself to turn the back bars into the post laundry basket.,gold0-orig,pos,unl,unl,unl,unl,Most of the faces are gaunt and lean.,\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain\"\nlsmdc0011_Gandhi-52278,5391,\"Then he looks around at the crowd, suspiciously, a touch of inner fear, then back to someone. It has the cold assurance of a lawyer, and the Captain\",is a little shaken by it.,is a very attractive man exhibition.,is going on with a book that says keep some money and has her too.,comes to his left and a look of applause on his friends.,\"descends to the roof of the hotel, floating through the back of a gurgling hole.\",gold0-orig,pos,unl,unl,unl,unl,\"Then he looks around at the crowd, suspiciously, a touch of inner fear, then back to someone.\",\"It has the cold assurance of a lawyer, and the Captain\"\nlsmdc0011_Gandhi-52278,5388,\"Someone moves through the silent crowd, his hands in the pranam, bowing a little to either side. As he advances, the crowd parts - - it\",is almost eerily silent.,becomes the deagol of independence.,slips by a club.,is too big for him.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone moves through the silent crowd, his hands in the pranam, bowing a little to either side.\",\"As he advances, the crowd parts - - it\"\nlsmdc0011_Gandhi-52278,5397,He lies on a straw mat. Someone,\"sits cross - legged, listening.\",spots him by the window.,pockets the hem of her dress and holds the shoe under the bar no dress so her hand.,rolls his eyes as the sun shines on them.,,gold0-orig,pos,unl,unl,unl,n/a,He lies on a straw mat.,Someone\nlsmdc0011_Gandhi-52278,5398,\"Someone sits cross - legged, listening. It\",is the kind of listening that opens the heart.,'s gone from someone's expression.,bursts in the opposite direction.,smiles and walks away.,rocks through the trees near the cliffs.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits cross - legged, listening.\",It\nlsmdc0011_Gandhi-52278,5390,\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain shoves his way through to confront someone down the little aisle that was being made for him. Then he\",\"looks around at the crowd, suspiciously, a touch of inner fear, then back to someone.\",\"places books on his chair by the slides, and hears a cold expression offscreen and nods to people looking shocked and tense.\",gets a place on the back to crack the door.,\"lies down, looking out as he steps past from the can, walking out of his house and holding his pocket.\",sits up and grabs the lens with his left hand and continues clipping her hair with his right hand.,gold0-orig,pos,unl,unl,unl,unl,\"And suddenly there is a commotion and the sound of boots on the concrete platform, and the English captain shoves his way through to confront someone down the little aisle that was being made for him.\",Then he\nlsmdc0011_Gandhi-52278,5395,\"He looks around, then turns and marches off briskly shoving his way through the crowd. Where all was silence before there\",is now the hum of excitement.,can be seen footsteps and by the young marching dancer waving their wand to him.,are hundreds of people in the doorway.,is a soft - - applause.,,gold0-orig,pos,unl,unl,pos,n/a,\"He looks around, then turns and marches off briskly shoving his way through the crowd.\",Where all was silence before there\nlsmdc0011_Gandhi-52278,5392,\"It has the cold assurance of a lawyer, and the Captain is a little shaken by it. He glances at someone who stands behind someone now, and it\",makes him all the more uncertain.,\"'s two men, people and boys walking into the office.\",is an assistant with him in the back.,'s the reporter who steps up to the bus.,comes to a halt.,gold0-orig,pos,unl,unl,unl,pos,\"It has the cold assurance of a lawyer, and the Captain is a little shaken by it.\",\"He glances at someone who stands behind someone now, and it\"\nlsmdc0011_Gandhi-52278,5393,\"It is firm and there is an edge of assertiveness to it that the Captain does n't like, but someone's unrelenting stare unnerves him. He\",glances at someone again.,looks someone directly in the eye.,see a sun countdown at headquarters.,adds the accent of the sauce to it's wound.,studies someone 'closely - stamped someone.,gold1-orig,pos,unl,unl,unl,unl,\"It is firm and there is an edge of assertiveness to it that the Captain does n't like, but someone's unrelenting stare unnerves him.\",He\nlsmdc0011_Gandhi-52278,5396,\"Where all was silence before there is now the hum of excitement. Already he has scored a victory - - and as he moves forward again, making the pranam, they\",return it with flushed greetings.,'ve just seen against one another.,backs into someone as well.,\"make a rude, chevrolet dash for the club.\",have no other jump.,gold0-reannot,pos,unl,unl,unl,unl,Where all was silence before there is now the hum of excitement.,\"Already he has scored a victory - - and as he moves forward again, making the pranam, they\"\nlsmdc0011_Gandhi-52278,5399,It is the kind of listening that opens the heart. Behind him a mass of villagers,\"sits stoically, outside the dwelling, waiting while their case is heard.\",is broken through from the thames.,is in his cage talking.,\"is brought in by, where tired of the team are so sweet etched in their spandex.\",move a weary handed at the bugle.,gold0-reannot,pos,unl,unl,unl,unl,It is the kind of listening that opens the heart.,Behind him a mass of villagers\nlsmdc0008_Fargo-49977,3474,He is staring down at something in the front seat next to him. It,has money inside - a lot of money.,\"into someone's face, he finds something attractive!\",lies in a low branch.,'s talking to all the students.,,gold0-orig,pos,unl,unl,pos,n/a,He is staring down at something in the front seat next to him.,It\nlsmdc3002_30_MINUTES_OR_LESS-910,9264,He and someone get in. Someone,takes out his cell phone.,climbs into someone 'arms.,plays on the horn.,walks over to someone.,lifts the kettle bells.,gold1-orig,pos,unl,pos,pos,pos,He and someone get in.,Someone\nanetv_0EDEA8dZeGo,2383,\"Next he stands up while holding onto something and he starts water skiing as he gets pulled by the boat. But, he eventually falls off and\",is seen standing in the water.,lands on the boat of the water.,falls down a few people than he can pass.,blows wind by than a hook to the ground.,places one foot around the beam and lanky while walking down on the water.,gold0-orig,pos,unl,unl,unl,unl,Next he stands up while holding onto something and he starts water skiing as he gets pulled by the boat.,\"But, he eventually falls off and\"\nanetv_0EDEA8dZeGo,2382,First the man sets his timer that's attached to his chest and he sits down and puts his leg onto the ski. Next he stands up while holding onto something and he,starts water skiing as he gets pulled by the boat.,garnishes it and then uses a towel to clean him some time.,falls to the weight.,swirls back a bit and starts to cut with words until the entire time he flat goes down the hill.,,gold0-orig,pos,unl,unl,unl,n/a,First the man sets his timer that's attached to his chest and he sits down and puts his leg onto the ski.,Next he stands up while holding onto something and he\nanetv_w8kVVzMOC98,8166,A bowling ball and its measurements are shown. A man,\"runs down the path, then throws the ball.\",is painting on the ceiling.,walks on the court dressed as a referee.,has a dog in his pocket.,is sitting next to the man with him.,gold0-orig,pos,unl,unl,unl,unl,A bowling ball and its measurements are shown.,A man\nanetv_w8kVVzMOC98,3266,A row of bowling pins are shown at the end of a lane. A ball,is then shown hitting the pins.,rolls off the table and throws it for more pins.,is shown followed by an ice thrower skate down the beach on a beach.,falls on a team we just missed.,is pulled up out of a pack of pool.,gold0-orig,pos,unl,unl,unl,unl,A row of bowling pins are shown at the end of a lane.,A ball\nanetv_w8kVVzMOC98,8167,\"A man runs down the path, then throws the ball. The ball\",\"is shown hitting the pins, creating a strike.\",falls between the goals in slow motion.,drives down the track.,\"slides into the far side of the pool, and he quickly jumps out of the pool.\",falls on him and falls on the benches.,gold1-orig,pos,unl,unl,unl,unl,\"A man runs down the path, then throws the ball.\",The ball\nanetv_oZa-yum3mcU,15917,\"The Duggar mom and a little girl walks up to another woman at a horse ranch and the words on the bottom left say the woman's name is Morgan Brown and she's the Equestrian Instructor. The woman leads them into the barn and she puts a helmet on the little girls head, they walk to get horses and at some point the Duggar mom\",put a helmet on as well.,a table to get on a fence.,begins leading the horses and racing around the stage.,grabs her foot and places a dog inside the horse.,,gold0-orig,pos,unl,unl,unl,n/a,The Duggar mom and a little girl walks up to another woman at a horse ranch and the words on the bottom left say the woman's name is Morgan Brown and she's the Equestrian Instructor.,\"The woman leads them into the barn and she puts a helmet on the little girls head, they walk to get horses and at some point the Duggar mom\"\nanetv_oZa-yum3mcU,15918,In between interviews they show the Duggar mom and the little girl getting instructions about their horse and then getting on their horses and riding on them in an enclosed area. The red and white tlc logo,remains on the bottom right area of the screen the whole time.,appears with colorful letters that say used from fish and paddling down the river.,is seen in a direction held by two small men in the background.,are shown and the woman rides on the bike on front a crowd.,are shown followed by several clips of people riding horses on the horses.,gold1-orig,pos,unl,unl,unl,unl,In between interviews they show the Duggar mom and the little girl getting instructions about their horse and then getting on their horses and riding on them in an enclosed area.,The red and white tlc logo\nanetv_hg8WbkmC2nU,836,Several shots of food are shown on tables as well as racks and the chef continues to speak to the staff behind. The man,walks out front and speaks with the customers that are coming in and finished by speaking to the camera.,serves and lifts the construction pin.,walks into the camera.,puts bowls of beer on a plate and mixes it in a bowl.,plays on the table using the sticks with a cigarette as he continue to speak and makes her drink.,gold0-orig,pos,unl,unl,pos,pos,Several shots of food are shown on tables as well as racks and the chef continues to speak to the staff behind.,The man\nanetv_hg8WbkmC2nU,835,A man is seen speaking to the camera while walking around a kitchen and checking on food. Several shots of food are shown on tables as well as racks and the chef,continues to speak to the staff behind.,finishes decorating camels talking and shows how to move with in newspapers.,leads into his wife being careful.,pouring ingredients in a cup followed by a man backrest rowing with several ingredients.,leads into the man holding up sticks and shots of a man in various locations on the side.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera while walking around a kitchen and checking on food.,Several shots of food are shown on tables as well as racks and the chef\nanetv_VOGF4tBFEuw,17703,A first person view is seen of a man riding a riding lawn mower. He,\"takes turns quickly, mowing the lawn.\",shows a tree boat warming up while the camera pans back to show one of the riders pulled down by a horse.,rides with a family and speaks to the camera.,uses various gloved hands to bend to the landing.,begins to ride in several times across the water.,gold0-orig,pos,unl,unl,unl,unl,A first person view is seen of a man riding a riding lawn mower.,He\nlsmdc3071_THE_DESCENDANTS-5886,7784,\"Remaining fixed on her, someone draws and expels a deep breath. The middle - aged man's weary gaze\",grows affectionate as he reaches out to her.,drifts on his curves.,hangs on the students.,sprawls overhead interspersed with the boys above.,shines down the unconscious face.,gold1-orig,pos,unl,unl,unl,unl,\"Remaining fixed on her, someone draws and expels a deep breath.\",The middle - aged man's weary gaze\nlsmdc3071_THE_DESCENDANTS-5886,7813,\"Someone watches the ashes mix with the water, then glances at his daughters. He\",takes off his lei and sets it on the water.,\"relaxes his eyes, then ventures in out of the window.\",pumps his hips with a smile.,adds food to the mess hall.,puts some notes from his own hands.,gold0-orig,pos,unl,unl,unl,unl,\"Someone watches the ashes mix with the water, then glances at his daughters.\",He\nlsmdc3071_THE_DESCENDANTS-5886,7796,She wraps her arm around the girl and they head off together. Someone and someone,watch someone lead someone across the hallway.,show someone when they have sex.,approach someone as as he heated.,stop chatting and gazes up at someone on their feet.,,gold1-orig,pos,unl,unl,pos,n/a,She wraps her arm around the girl and they head off together.,Someone and someone\nlsmdc3071_THE_DESCENDANTS-5886,7809,\"They younger girl tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone. A skyward view from the ashes\",shows a breeze blowing through his grey hair.,shows the body wrapped around a bundle.,of the sun and festive lame styles the sky.,is sprayed on the table with the addressing figure of the man running his index down.,shows a sphere being folded across the face of a pine hamper that just puts it on the canvas.,gold0-orig,pos,unl,unl,unl,unl,\"They younger girl tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone.\",A skyward view from the ashes\nlsmdc3071_THE_DESCENDANTS-5886,7790,The door to someone's room opens. Someone,crosses the hallway toward her family.,\"stares toward the hall then at someone, slowly.\",\"eyes are open and there is dark, slender tips nearby.\",obediently come to someone's waiting anew.,looks straight at someone and shrugs.,gold0-orig,pos,unl,unl,unl,pos,The door to someone's room opens.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7821,\"Arms folded, she halts behind the ice cream eating pair. Someone\",\"drops her arms to her sides, then steps around the couch and takes a seat.\",is in her mind.,\"turns uneasily, then turns his attention back to the stove.\",raises salt to her lips and starts her first lesson.,spots a sign of varying new chocolates.,gold0-orig,pos,unl,unl,unl,unl,\"Arms folded, she halts behind the ice cream eating pair.\",Someone\nlsmdc3071_THE_DESCENDANTS-5886,7807,\"Sitting in the middle of the boat, someone watches her sister pour the scoop of ashes into the water. Someone\",hands the container to her.,sits with the boat's wheel over the water.,desperately stabs the butcher.,is entranced by a sudden surge of applause.,\"runs to her, followed by another.\",gold0-orig,pos,unl,unl,unl,pos,\"Sitting in the middle of the boat, someone watches her sister pour the scoop of ashes into the water.\",Someone\nlsmdc3071_THE_DESCENDANTS-5886,7811,The girls watch as he holds the container over the side of the boat. He,taps the container against the side of the canoe to empty it completely.,begins to pull away from the top.,points to the passengers on the bench and faces the motor sunlit logo monitor.,stands motionless at a railing over the u - boat.,,gold0-orig,pos,unl,unl,pos,n/a,The girls watch as he holds the container over the side of the boat.,He\nlsmdc3071_THE_DESCENDANTS-5886,7780,\"Someone gently takes her arm, guides her to the door, then stops and meets her gaze. With a nod, someone\",opens the door for her.,lowers her ear to his ear.,steps into the tank.,peers over and holds her close.,is asked to breathe.,gold0-orig,pos,unl,unl,pos,pos,\"Someone gently takes her arm, guides her to the door, then stops and meets her gaze.\",\"With a nod, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7793,\"He kisses her temple, then stands aside as she crosses to someone. She\",gives her shaggy - haired friend a hug.,lowers her eyes and looks at the girl's then back briefly quickly.,\"steps off and gives the crowd a nervous half - hug, someone gives someone a warm, remorseful look.\",\"punches her, then slaps her on the shoulder and turns her off.\",\"makes her way into the bedroom, leaving someone and the friends out of the bedroom.\",gold1-orig,pos,unl,unl,unl,pos,\"He kisses her temple, then stands aside as she crosses to someone.\",She\nlsmdc3071_THE_DESCENDANTS-5886,7801,She wears a pink and white lei around her neck. Someone,\"watches his daughter from across the boat, wearing a lei of autumn colors.\",slides open a brick wall.,strolls through a line in at her depot.,tucks her hair into her face.,storms up into the common room.,gold0-orig,pos,unl,unl,unl,unl,She wears a pink and white lei around her neck.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7806,\"The peaceful young woman looks at the ashes and purses her lips. Sitting in the middle of the boat, someone\",watches her sister pour the scoop of ashes into the water.,takes her middle wand off of the beach and peers over it.,\"stands by a window gazing out at someone's small bottle, and turns away.\",gazes at him and cups her face in her hands.,sits alone among the pews where her family photo lies in the middle of the table.,gold0-orig,pos,unl,unl,pos,pos,The peaceful young woman looks at the ashes and purses her lips.,\"Sitting in the middle of the boat, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7782,Someone shuts it and sighs. He,turns his back to the door and stares across the room at someone in her bed.,topples a faint light on a window above.,turns and takes someone by the head.,leaves boxing with a plastic bag.,,gold0-orig,pos,unl,unl,unl,n/a,Someone shuts it and sighs.,He\nlsmdc3071_THE_DESCENDANTS-5886,7804,Someone draws a scoop of ashes from the container and looks at her father. He,\"shifts his serene gaze, then gives her a soft nod.\",leans forward and sniffs it.,gives his mother some high - fives sculpting.,keeps his eyes fixed on the menacing crowd.,,gold0-orig,pos,unl,unl,pos,n/a,Someone draws a scoop of ashes from the container and looks at her father.,He\nlsmdc3071_THE_DESCENDANTS-5886,7802,\"Someone watches his daughter from across the boat, wearing a lei of autumn colors. They\",float about a mile from the urban coastline.,link to it when they're afraid of the collision.,put towards a gold - colored bridal taped in the back of a black bus.,\", someone young stand short and tanned with long hair and gray hair.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone watches his daughter from across the boat, wearing a lei of autumn colors.\",They\nlsmdc3071_THE_DESCENDANTS-5886,7781,\"With a nod, someone opens the door for her. Someone\",shuts it and sighs.,\"looks out the window, but does n't budge.\",looks into her daughter's eyes.,strides upstairs and hurries to a door which opens slowly.,waits with the tap gun.,gold0-orig,pos,unl,unl,unl,unl,\"With a nod, someone opens the door for her.\",Someone\nlsmdc3071_THE_DESCENDANTS-5886,7822,\"Someone drops her arms to her sides, then steps around the couch and takes a seat. As they remain focused on their movie, someone\",helps someone lay the blanket over her legs.,spins her around while she speaks.,\"stands, watching the car approach.\",lowers her gaze briefly and heads towards the room.,\"sits in the building with someone, twinkling the ornaments.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone drops her arms to her sides, then steps around the couch and takes a seat.\",\"As they remain focused on their movie, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7816,\"Beyond the couch, someone steps out from an arched doorway with two bowls. In shorts and a Hawaiian shirt, someone\",joins someone and hands her one of the bowls.,\"looks up and sees two offscreen women standing in front, playing a traditional stair brush.\",chucks a nazi serving ax into a bag of his jars.,\"maneuvers across a cramped, floor pool.\",sees his guns flare up to his watchful eye and wrinkles his nose.,gold0-orig,pos,unl,unl,unl,pos,\"Beyond the couch, someone steps out from an arched doorway with two bowls.\",\"In shorts and a Hawaiian shirt, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7797,Someone and someone watch someone lead someone across the hallway. Someone,lead someone into someone's room.,pulls her to the curb for the door to a holder.,climbs to the edge of the platform and approaches a convention.,enters a tech house with its trunk in a plastic bin.,sets down the stack of toys.,gold0-orig,pos,unl,unl,unl,unl,Someone and someone watch someone lead someone across the hallway.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7785,\"Looking over her frail form, he breathes softly. His fingers\",caress the pale woman's hair just above her forehead.,hang on the loose sheets the wall of a bed.,\"are cast on her chin, as to her gaze.\",graze to the sides.,caress through scar on his forehead as he clutches the edge.,gold0-orig,pos,unl,unl,pos,pos,\"Looking over her frail form, he breathes softly.\",His fingers\nlsmdc3071_THE_DESCENDANTS-5886,7808,Someone hands the container to her. They younger girl,\"tearfully takes hold of the scoop handle, but lets go of it and passes the canister on to someone.\",tilts her head into the street.,admires the redhead smiles.,puts down her whiskey and bow.,,gold0-orig,pos,unl,unl,unl,n/a,Someone hands the container to her.,They younger girl\nlsmdc3071_THE_DESCENDANTS-5886,7820,\"Someone notices them from the dining room and strides observantly through an archway. Arms folded, she\",halts behind the ice cream eating pair.,\"looks into the picture, then glides back to a front set of food line.\",peers out peek at her elder first then steps inside.,\"unwraps a piece of strawberries, then removes the sandwich.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone notices them from the dining room and strides observantly through an archway.,\"Arms folded, she\"\nlsmdc3071_THE_DESCENDANTS-5886,7810,A skyward view from the ashes shows a breeze blowing through his grey hair. The girls,watch as he holds the container over the side of the boat.,\"stare down at them, then gaze down at the colorful swaying ground.\",stop and attack him.,cross the street and look behind them.,float up and wave their arms as two leaves pass in front of him.,gold0-orig,pos,unl,unl,unl,unl,A skyward view from the ashes shows a breeze blowing through his grey hair.,The girls\nlsmdc3071_THE_DESCENDANTS-5886,7783,\"He turns his back to the door and stares across the room at someone in her bed. Remaining fixed on her, someone\",draws and expels a deep breath.,touches his hand and stops her.,hauls himself back up off his feet.,brings someone a striped article.,looks down at him.,gold0-orig,pos,unl,unl,unl,pos,He turns his back to the door and stares across the room at someone in her bed.,\"Remaining fixed on her, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7787,\"He bends down and leans over her, his fingers lingering on her brow. He\",\"gives her a long, gentle kiss on the lips.\",rests her chin on his shoulder and steps close.,puts his head in her lap and kisses her.,\"takes a step closer for a kiss, then kisses her.\",,gold0-orig,pos,unl,unl,pos,n/a,\"He bends down and leans over her, his fingers lingering on her brow.\",He\nlsmdc3071_THE_DESCENDANTS-5886,7812,He taps the container against the side of the canoe to empty it completely. Someone,\"watches the ashes mix with the water, then glances at his daughters.\",reaches over and drops it.,sets the drink in thick bubbles.,\"comes to check on it, then sets it back down.\",\"pours the contents of the can into his palm, then leads back onto the light.\",gold0-orig,pos,unl,unl,unl,unl,He taps the container against the side of the canoe to empty it completely.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7789,\"In a waiting area, someone sits beside her father with tears in her eyes. Our view\",drifts to someone's weary face as he stares across the room.,drifts up to someone who's seated in a carriage.,meets someone at someone and looks up.,draws back to someone who stares up at the flag.,drifts over an empty road to a figure of steep cliffs.,gold0-orig,pos,pos,pos,pos,pos,\"In a waiting area, someone sits beside her father with tears in her eyes.\",Our view\nlsmdc3071_THE_DESCENDANTS-5886,7819,\"As they eat their ice cream, someone enters the distant dining room and digs through a bag on the table. Someone\",adjusts the end of someone's blanket and covers his legs.,looks down at someone in the mirror.,\"jerks forward, and faces his shadow with a smile.\",dismounts and smiles to himself at a bar.,,gold1-orig,pos,unl,unl,unl,n/a,\"As they eat their ice cream, someone enters the distant dining room and digs through a bag on the table.\",Someone\nlsmdc3071_THE_DESCENDANTS-5886,7798,\"Someone lead someone into someone's room. Now, a puffy cumulus cloud\",dominates the lower half of a sky view.,stands upon the top of a flight of flapping rocks.,\"passes her bearded caretaker as she is amongst the gunmen, skulls and bloated pledges strewn around them.\",hangs under the massive flashes of someone's head.,,gold0-orig,pos,unl,unl,unl,n/a,Someone lead someone into someone's room.,\"Now, a puffy cumulus cloud\"\nlsmdc3071_THE_DESCENDANTS-5886,7818,\"Someone sits on the couch and rests his feet on an ottoman. As they eat their ice cream, someone\",enters the distant dining room and digs through a bag on the table.,watches as two large products roll along the counter.,sits by her dressing table and smiles at her friend.,ushers his mother in her skimpy pants.,zooms articles as he tries to find food in a guest room.,gold0-orig,pos,unl,unl,unl,unl,Someone sits on the couch and rests his feet on an ottoman.,\"As they eat their ice cream, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7791,Someone crosses the hallway toward her family. Someone,rises from his chair and faces her.,pulls her book book from her coat pocket.,sees her headstone written in white letters softly hanging in the corner.,grasps her son's shoulder.,hangs her hands in the air as she sees her father.,gold0-orig,pos,unl,unl,pos,pos,Someone crosses the hallway toward her family.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7786,His fingers caress the pale woman's hair just above her forehead. He,\"bends down and leans over her, his fingers lingering on her brow.\",\"gives her an awkward hug, then leaves.\",looks her up and down in shock.,meets her doe gaze and faces his camouflaged friend.,,gold0-orig,pos,unl,unl,unl,n/a,His fingers caress the pale woman's hair just above her forehead.,He\nlsmdc3071_THE_DESCENDANTS-5886,7799,\"On the yet unsold land, the overlook offers a majestic view of the cove and the meadows and wild groves inland of it. Now, sitting aboard an outrigger canoe, someone\",nods and accepts a container.,studies one of someone's broken wands.,wanders past the river through the harbor.,lowers a gaze toward the automaton.,leads the way up beside the speedboat.,gold1-orig,pos,unl,unl,unl,pos,\"On the yet unsold land, the overlook offers a majestic view of the cove and the meadows and wild groves inland of it.\",\"Now, sitting aboard an outrigger canoe, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7815,\"Someone lies on the couch under a blanket. Beyond the couch, someone\",steps out from an arched doorway with two bowls.,\"sleeps with someone's sleeping someone, deep in thought.\",\"walks up the bus, and down a street full of forty police cruisers.\",stands at a table facing his coworker.,\"lies fully asleep in bed, looking up at him.\",gold0-orig,pos,unl,unl,unl,unl,Someone lies on the couch under a blanket.,\"Beyond the couch, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7792,\"Resting her chin on his shoulder, she gazes upward. He\",\"kisses her temple, then stands aside as she crosses to someone.\",retreats on her tiptoes and kisses him.,spies someone stealing food outside.,takes up the phone.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Resting her chin on his shoulder, she gazes upward.\",He\nlsmdc3071_THE_DESCENDANTS-5886,7800,\"Now, sitting aboard an outrigger canoe, someone nods and accepts a container. She\",wears a pink and white lei around her neck.,announces to someone's team.,gyrates her flushed cheeks.,sets it in the passenger seat.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Now, sitting aboard an outrigger canoe, someone nods and accepts a container.\",She\nlsmdc3071_THE_DESCENDANTS-5886,7788,\"A tear rolls down his nose. In a waiting area, someone\",sits beside her father with tears in her eyes.,has him addressed with champion someone.,minimizes a phone then unrolls his jacket on the desk then hurries right off the bed.,answers his cell phone.,,gold0-reannot,pos,unl,unl,pos,n/a,A tear rolls down his nose.,\"In a waiting area, someone\"\nlsmdc3071_THE_DESCENDANTS-5886,7817,\"In shorts and a Hawaiian shirt, someone joins someone and hands her one of the bowls. Someone\",sits on the couch and rests his feet on an ottoman.,lowers her handgun and leaves.,kicks a stack of cards then kicks a large bite.,\"sets one hand on the scissor, massages one of one easily, then raises it above his head.\",talks on the radio.,gold0-reannot,pos,unl,unl,unl,pos,\"In shorts and a Hawaiian shirt, someone joins someone and hands her one of the bowls.\",Someone\nlsmdc3071_THE_DESCENDANTS-5886,7824,He hands her his bowl of ice cream and she rests it on her lap. As the trio,watch the movie together.,\"follow close behind, people claw their feet with their heels.\",\"storms away, two men approach her.\",proceed to the top door.,,gold0-reannot,pos,unl,unl,pos,n/a,He hands her his bowl of ice cream and she rests it on her lap.,As the trio\nlsmdc3071_THE_DESCENDANTS-5886,7823,\"As they remain focused on their movie, someone helps someone lay the blanket over her legs. He hands her his bowl of ice cream and she\",rests it on her lap.,sets him on the bed.,holds out her fingers.,runs in the same direction for a second time.,pours it into a barrel of toast.,gold0-reannot,pos,unl,unl,unl,unl,\"As they remain focused on their movie, someone helps someone lay the blanket over her legs.\",He hands her his bowl of ice cream and she\nlsmdc3071_THE_DESCENDANTS-5886,7805,\"He shifts his serene gaze, then gives her a soft nod. The peaceful young woman\",looks at the ashes and purses her lips.,sleeps on a bed with her bed folded.,\"looks at someone, then reaches down.\",forces her peace smile.,,gold1-reannot,pos,unl,pos,pos,n/a,\"He shifts his serene gaze, then gives her a soft nod.\",The peaceful young woman\nlsmdc3071_THE_DESCENDANTS-5886,7794,She gives her shaggy - haired friend a hug. Someone,faces her younger sister.,plays a g. - horse on a balcony.,looks down towards her mother.,enters and walks down the dining hall onto the terrace.,kisses her on the back.,gold0-reannot,pos,unl,pos,pos,pos,She gives her shaggy - haired friend a hug.,Someone\nlsmdc3071_THE_DESCENDANTS-5886,7795,\"Gazing up from her chair, someone purses her lips. Someone\",\"offers her hands, then guides her sister up from her seat.\",sips a martini with a well - tiered manner.,holds the phone back.,frowns and looks away.,crosses to her window and stubs out the cigarette.,gold0-reannot,pos,pos,pos,pos,pos,\"Gazing up from her chair, someone purses her lips.\",Someone\nanetv_6B3qNzgqnpc,14947,A person sitting in a canoe is slowly streaming down a river. A shot of a bird,\"is seen off in the distance, as well as another bird.\",is shown followed by a group of people kneeling near tubes.,is in a large green field.,focuses on the ocean.,appears at the bottom of the canyon.,gold1-orig,pos,unl,unl,unl,unl,A person sitting in a canoe is slowly streaming down a river.,A shot of a bird\nanetv_6B3qNzgqnpc,14948,\"A shot of a bird is seen off in the distance, as well as another bird. The canoe\",keeps floating while various bird are shown sitting in the water as well as the trees.,walks by the end and we see the mower.,goes flying around the water and stops to point at a surfer.,is maneuvering electric mower back and forth.,,gold0-reannot,pos,unl,unl,unl,n/a,\"A shot of a bird is seen off in the distance, as well as another bird.\",The canoe\nanetv_vlwOSDuiKQA,6305,A man is seen standing in a large room holding up a tennis racket. Two more people,walk into frame and begin hitting the ball around the area.,are seen holding tennis rackets back and fourth around the pool.,play indoor hugging and smiling while others stand around them and look on.,kick a ball onto the field and lead up a large audience and crowd to them.,stand in the room and begin playing a game of foosball together.,gold1-orig,pos,unl,unl,unl,pos,A man is seen standing in a large room holding up a tennis racket.,Two more people\nanetv_vlwOSDuiKQA,6306,Two more people walk into frame and begin hitting the ball around the area. The men,continue to hit the ball around with tennis rackets and chase it around the room.,continue spinning around the game and ends by turning around and circle one another.,crash and dance all around the ground.,continue playing with one another while the person continues behind him while continuing to play.,continue speaking to one another and leads into clips of him running around a large field.,gold0-orig,pos,unl,unl,pos,pos,Two more people walk into frame and begin hitting the ball around the area.,The men\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16255,\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people leap over the treads and are swarming all over someone. Someone\",presses someone against his assailant and forces the nazi to squeeze off a shot into himself.,\"curl their fingers in circles, glaring resentfully watching them.\",gives the hospital a thick signature reclined coat.,has luggage and sits in the rock formations that are perched high above him.,struggles on his way past the closed building.,gold0-orig,pos,unl,unl,unl,unl,\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people leap over the treads and are swarming all over someone.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16265,\"Someone lifts his feet, lunging toward the periscope and pulling someone with him. Someone's face\",is pressed up against the lens of the periscope.,beams as he leaps and steers someone into the sky.,\"is now visible in a new swirl, and he taps his magnificent leader.\",drops as he flips the hand through.,stands distorted with rage.,gold0-orig,pos,unl,unl,unl,pos,\"Someone lifts his feet, lunging toward the periscope and pulling someone with him.\",Someone's face\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16258,Someone sits up to see someone standing over him. Someone,wraps a chain around someone's neck.,follows someone into the apartment to get out.,is lying out of the toilet and throws the silverware into a bathtub.,\"hangs his head, gazing at the groves around her.\",strokes someone's hair.,gold1-orig,pos,unl,unl,unl,unl,Someone sits up to see someone standing over him.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16264,We see people struggling atop the tank. Someone,\"lifts his feet, lunging toward the periscope and pulling someone with him.\",retreats from a doorway.,gets up and sees a security at the back.,hangs up on his helmet and beyond the man with dark eyes.,calls away from them.,gold0-orig,pos,unl,unl,unl,unl,We see people struggling atop the tank.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16251,Smoke pours from the top of the tank as the turret pops open. Someone,emerges and aims his gun at someone.,follows his cousins to a maintenance metal canopy.,\"quickly scrambles, snatches the wire from the lifeboat and spots the flaming rocket heading up the ocean.\",notices someone by her window.,comes out and sits next to someone.,gold0-orig,pos,unl,unl,unl,pos,Smoke pours from the top of the tank as the turret pops open.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16260,\"Someone appears at the entrance, the chain still wrapped about his neck and held by someone. Someone\",\"pulls someone from the tank entrance, yanking on the chain wrapped around his neck.\",is seen flying in mid - air through impressive balloons.,hurls her through the window as she steps away from the pit.,sees and turns to someone.,\"stares after the moment, then flips forward.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone appears at the entrance, the chain still wrapped about his neck and held by someone.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16269,Someone pulls away from the periscope again. A troop truck,pulls near the tank.,arrives to the dirt.,arrives at the border of the caravan.,bears the ships beacon lights flashing through the sky.,pulls up to a sepoys the road.,gold0-orig,pos,pos,pos,pos,pos,Someone pulls away from the periscope again.,A troop truck\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16253,\"He moves out of the saddle and leaps from the speeding horse onto the trundling tank. Suddenly, from nowhere a German soldier\",\"flies into frame, tackling someone.\",is casually glancing at a dog.,walks out of the circle and comes for the searching.,swings himself around and vomits.,\"rushes from the army, rushes over.\",gold0-orig,pos,unl,unl,unl,pos,He moves out of the saddle and leaps from the speeding horse onto the trundling tank.,\"Suddenly, from nowhere a German soldier\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16256,\"Someone presses someone against his assailant and forces the Nazi to squeeze off a shot into himself. The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away,\",leaving someone to stare at the gun in disbelief.,\"smashing them to the ground as a stunned someone films them, him breaking.\",handcuffs into the kid's black vest.,illuminating someone as he lies up on the floor.,into the silver wall.,gold0-orig,pos,unl,unl,unl,pos,Someone presses someone against his assailant and forces the Nazi to squeeze off a shot into himself.,\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away,\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16259,Someone wraps a chain around someone's neck. Someone,\"appears at the entrance, the chain still wrapped about his neck and held by someone.\",draws it and presses pull on the top of the chain.,plugs him back on and pulls away.,fits it against her mouth.,\"wraps his arm around her neck, shrugging her arm around the man with a small nod.\",gold0-orig,pos,unl,unl,pos,pos,Someone wraps a chain around someone's neck.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16261,\"Someone hits him, knocking him onto the tank tread. Someone\",screams as he is dragged under the rolling tank.,\"whizzes the wheel and drives away, his face dripping with sweat.\",leads him around the stage door and steps up behind them.,\"hangs his head, then releases his attachment and dials a number.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone hits him, knocking him onto the tank tread.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16257,\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away, leaving someone to stare at the gun in disbelief. Another Soldier\",leaps from the truck onto the tank and raises his knife as he grabs someone.,causes for one while shaking his head and we sweep on the gunmen as the flame of the boxed fires.,shoots a woman down a duct wall - rustling it down and hits it.,joins someone and the crouched people next mistake each other and watched through the sky.,passes someone who'd just turned a corner - - only someone has now pulled past top of the one.,gold1-orig,pos,unl,unl,unl,pos,\"The bullet not only passes through the Nazi, but passes through two other someone standing directly behind him on the crowded tank top and three bodies fall away, leaving someone to stare at the gun in disbelief.\",Another Soldier\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16250,\"Someone swings his fist, knocking someone off his seat. Smoke\",pours from the top of the tank as the turret pops open.,takes a drink out of a large bowling bag.,\"someone as tiles, he tries to pull himself out the paper.\",hangs furrowing his brow.,\"strides forward, trying her wrists and surging out of the window.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone swings his fist, knocking someone off his seat.\",Smoke\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16262,\"Someone screams as he is dragged under the rolling tank. Now people struggle with one another, the chain still\",wrapped around someone's neck.,squeeze through the coffin's driver side door.,fails to lead into men pushing themselves toward him.,\"emits two jai - tic, like a huge clutching snitch.\",tied into the foreground.,gold1-orig,pos,unl,unl,unl,unl,Someone screams as he is dragged under the rolling tank.,\"Now people struggle with one another, the chain still\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16263,\"Now people struggle with one another, the chain still wrapped around someone's neck. We\",see people struggling atop the tank.,\", the man grabs someone and follows him out onto the street.\",\"part of him just as he turns away from him, and stops turning.\",falls unto the other's skull.,,gold1-orig,pos,unl,unl,unl,n/a,\"Now people struggle with one another, the chain still wrapped around someone's neck.\",We\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16249,People still held at gunpoint by the Nazi Soldier. Someone,\"swings his fist, knocking someone off his seat.\",walks forward with his arm spread across the back of the general's hat.,\"is standing alone, unable to break someone army without flash up.\",moves a board from the lights and goes toward a staircase.,drops one chopper high into the air.,gold0-reannot,pos,unl,unl,unl,unl,People still held at gunpoint by the Nazi Soldier.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16268,Someone pulls someone from the periscope. Someone,pulls away from the periscope again.,can't tear down.,hands the shield to someone.,leaps out after her.,grabs his rucksack and leaves.,gold0-reannot,pos,unl,unl,unl,unl,Someone pulls someone from the periscope.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16267,\"Someone's face, still pressed against the lens. Someone\",pulls someone from the periscope.,\"suddenly jerks slightly, full of hurt.\",pats him on the shoulder and hurries off.,moves so quickly as someone is hit.,leaves the building and someone looks for you.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone's face, still pressed against the lens.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70592,16254,\"Suddenly, from nowhere a German soldier flies into frame, tackling someone. One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people\",leap over the treads and are swarming all over someone.,stay casually down and around.,take a lifeboat from in the rim.,are in the midst of the conversation.,shine safely at the back of the lorry and near a man.,gold0-reannot,pos,unl,unl,unl,unl,\"Suddenly, from nowhere a German soldier flies into frame, tackling someone.\",\"One of the two troop carriers is paralleling the tank and like pirates boarding a galleon, people\"\nanetv_v-dxQNxdMrU,19880,More clips are seen of people performing tricks on the bike while hundreds watch on the sidelines. More people,are seen riding around and waving their hands up in the end.,are seen riding around a street as well as skiers running and doing tricks.,are seen riding in their tubes in the water.,are seen riding around on horse blades performing tricks while others cheer on the side.,,gold1-orig,pos,unl,unl,unl,n/a,More clips are seen of people performing tricks on the bike while hundreds watch on the sidelines.,More people\nanetv_v-dxQNxdMrU,19879,A camera pans around large city buildings and leads into people riding motocross bikes. More clips,are seen of people performing tricks on the bike while hundreds watch on the sidelines.,are shown of people riding riding horses while others watch on fire.,are shown of people riding around and moving around the top of a track.,are shown of people riding bikes down a road followed by people spotting their cars.,are shown of people riding exercise bikes on the lawn area.,gold1-orig,pos,unl,unl,unl,unl,A camera pans around large city buildings and leads into people riding motocross bikes.,More clips\nanetv_lgWH94ea3-U,8280,A man is using a hookah inside a room. He,turns and blows a pillar of smoke.,does several different circles in place from the floor.,is holding a vacuum cleaner and smoking.,begins hammering the vacuum on fire.,is using a seed to scrape off the floor.,gold0-orig,pos,unl,unl,unl,unl,A man is using a hookah inside a room.,He\nanetv_lgWH94ea3-U,8281,He turns and blows a pillar of smoke. Another man,takes the hookah and takes a hit as well.,pours in a large armory of croquette cans.,comes up behind him and follows him in.,speaks into the mic.,,gold0-orig,pos,unl,unl,pos,n/a,He turns and blows a pillar of smoke.,Another man\nanetv_kCD0iQFnHA4,12186,She puts the pastry onto the cake and continues putting frosting all around the cake. The camera,zooms around the cake and shows the woman putting a face on the cake and showing off the finished result.,shows us spread out in a row as she pretends to sing.,pans slowly to a records area where people are gathered on the floor.,is then added in the chocolate appreciatively.,pans to a bigger bowl and eventually shows the proper placement.,gold0-orig,pos,unl,unl,unl,pos,She puts the pastry onto the cake and continues putting frosting all around the cake.,The camera\nanetv_kCD0iQFnHA4,12185,A close up of a dough is shown and leads into a person spreading frosting on a pastry. She,puts the pastry onto the cake and continues putting frosting all around the cake.,are shown using the tongue so that all of the cake is on the floor.,with frosting are shown as well as pictures of them sitting.,continues cutting down the ice as well as the cake and presenting them to the camera.,,gold0-orig,unl,unl,unl,unl,n/a,A close up of a dough is shown and leads into a person spreading frosting on a pastry.,She\nanetv_cyXWvxVt8qE,280,A player opposite of him hits the ball with his racket. the two men,continuously play tennis until a point is scored.,stare at their own slanted foreheads.,go up and down the slide until the next shot hits the ball.,run down the track to throw the ball side to side while he serves to score.,,gold0-orig,pos,unl,pos,pos,n/a,A player opposite of him hits the ball with his racket.,the two men\nanetv_cyXWvxVt8qE,17311,The right man serves again. They,go back and forth till the ball drops again 1: 10.,watch the black students briskly leave the room.,are lying on the ground and a man talks to the camera.,stop and turn to face each other.,,gold0-orig,pos,unl,unl,pos,n/a,The right man serves again.,They\nanetv_cyXWvxVt8qE,17309,The man on the right serves the ball. The two men,hit the ball back and forth.,hug each other while with a ref hug.,talk and shake hands as the players talk.,put run at the same time and pause for a moment.,begin after the ball.,gold0-orig,pos,unl,unl,pos,pos,The man on the right serves the ball.,The two men\nanetv_cyXWvxVt8qE,17313,\"1: 14 we see the crowd before the left man serves and the go back and forth. 124 The right man misses, the left\",throws his hands in the air and walks off.,fall in the billiard can.,\"gets into the towel, slides over and strikes flips by the cheerleader in the gym.\",mark in his left hand tries to clip the other records.,falls into the ground.,gold0-orig,pos,unl,unl,unl,pos,1: 14 we see the crowd before the left man serves and the go back and forth.,\"124 The right man misses, the left\"\nanetv_cyXWvxVt8qE,279,A man serves a tennis ball on a tennis court. a player opposite of him,hits the ball with his racket.,ever pats his serve.,serves the ball with a tennis racket.,hits the ball with his racket and knock them backward.,,gold0-orig,pos,unl,unl,unl,n/a,A man serves a tennis ball on a tennis court.,a player opposite of him\nanetv_cyXWvxVt8qE,17312,They go back and forth till the ball drops again 1: 10. 1: 14 we,see the crowd before the left man serves and the go back and forth.,can hold looks as the older young emerging chases him off the raft.,see a rod of 5 holes.,see the hopping mark of the first clip.,,gold0-orig,pos,unl,unl,unl,n/a,They go back and forth till the ball drops again 1: 10.,1: 14 we\nanetv_cyXWvxVt8qE,17310,The two men hit the ball back and forth. The right man misses the ball and we,see the people on the sidelines.,see a website screen.,see the ring all ready.,see the goalie on the ice.,see the man under the glass.,gold1-orig,pos,unl,unl,unl,pos,The two men hit the ball back and forth.,The right man misses the ball and we\nlsmdc1001_Flight-72009,17618,Someone studies someone's smiling face with pressed lips. He,takes a sip of water.,takes his head from the bank.,looks toward his retreating path with his brow furrowed.,backs away from someone.,,gold1-orig,pos,unl,unl,pos,n/a,Someone studies someone's smiling face with pressed lips.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6118,\"On her way out, someone tosses wire cutters down beside him. She\",leaves the apartment without looking back.,\"goes to the rescued boxes, clinging to the sign.\",steps up beside her and notices someone on the side of the room.,\"goes out with a kitchen cloth, and stares out the window at the weather.\",,gold0-orig,pos,unl,unl,pos,n/a,\"On her way out, someone tosses wire cutters down beside him.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6104,\"She throws down a pillow. Crouching, she\",turns on an electric tattoo needle.,looks up at the pair of mirrors which ogles her and she stares vacantly ahead.,blinks down at her bedside.,unpacks a wrapped artfully rucksack on a single rack outside a family center.,crosses a plastic pail street.,gold1-orig,pos,unl,unl,unl,unl,She throws down a pillow.,\"Crouching, she\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6123,\"Inside, someone studies someone's list on the wall. Someone\",sets two plates on the table.,\"grabs a red liquid from her file, then joins them.\",\"pulls out a service key from a box, and presses it into his pocket.\",stares at her with a shocked expression.,chucks his briefcase aside as the boy bends offscreen.,gold1-orig,pos,unl,pos,pos,pos,\"Inside, someone studies someone's list on the wall.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6105,\"Crouching, she turns on an electric tattoo needle. Someone\",uncaps a jar of ink then dips the needle in it.,combs her bangs from her hair.,\"throws darts at the gangster, flexing her hips and spreads it upward.\",\"plugs it, revealing retro straws and symbols on the wall.\",points at the visitor.,gold0-orig,pos,unl,unl,unl,pos,\"Crouching, she turns on an electric tattoo needle.\",Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6112,\"Someone leans back in his chair, his gaze chilled. The computer\",replays the ghostly sequence of someone reacting and her smile becoming a frightened stare.,blocks a movie and floats anyone around.,brushes off the top wall on the field.,searches someone 'pet schematic of the medal shop doors.,watches with a furrowed brow.,gold0-orig,pos,unl,unl,unl,unl,\"Someone leans back in his chair, his gaze chilled.\",The computer\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6125,He starts to cut into his sandwich before noticing his daughter's head bowed in prayer. His daughter,finishes her silent prayer and gives him a look.,steps onto the table and holds a beer glass.,returns a stunned smile.,wanders towards the valet's four - story window.,\"approaches the healthy buffet, then goes to his own table and begins to pray.\",gold0-orig,pos,unl,unl,unl,unl,He starts to cut into his sandwich before noticing his daughter's head bowed in prayer.,His daughter\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6111,She lays a hand on a friend's shoulder and backs away from the group. Someone,\"leans back in his chair, his gaze chilled.\",\"turns, and tightens her tightly tie.\",strides off in his direction as he gazes back to his horse.,strides away as he climbs into the cabin's passenger seat.,averts her gaze then heads back toward the car.,gold0-orig,pos,unl,unl,unl,pos,She lays a hand on a friend's shoulder and backs away from the group.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6113,The computer replays the ghostly sequence of someone reacting and her smile becoming a frightened stare. Watching the slideshow someone,slowly removes his glasses.,sends up a wad of keys.,gives her a roll and heads back into the parlor.,studies her own smooth head again.,,gold0-orig,pos,unl,unl,unl,n/a,The computer replays the ghostly sequence of someone reacting and her smile becoming a frightened stare.,Watching the slideshow someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6114,Watching the slideshow someone slowly removes his glasses. He,looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby.,\"hands someone a letter, steps out to the lion, and unfolds the letter.\",\"raises his hands, and legs over.\",reaches into his pocket at someone and runs his hands across the folded line of her wings.,again touches the show again looking portly.,gold0-orig,unl,unl,unl,unl,unl,Watching the slideshow someone slowly removes his glasses.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6122,\"He picks up her suitcase. Inside, someone\",studies someone's list on the wall.,crosses to the window as someone's panels pop open.,stands on the porch in her car.,arrives using both hands.,gazes at the light in the foyer.,gold1-orig,pos,unl,unl,unl,pos,He picks up her suitcase.,\"Inside, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6120,Now someone walks the grounds of the Vanger estate. He,slows to a stop then smiles.,\"tries the door and enters quickly, his father carrying two apples.\",leads someone into the house.,glances around to find someone sitting on chair watching them.,,gold0-orig,pos,unl,pos,pos,n/a,Now someone walks the grounds of the Vanger estate.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6124,Someone sets two plates on the table. He,starts to cut into his sandwich before noticing his daughter's head bowed in prayer.,turns off the chair on the dressing table.,follows her through a glass door.,reclines in his chair.,,gold0-orig,pos,unl,unl,pos,n/a,Someone sets two plates on the table.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6108,\"Someone leans forward, her eyes wide. She\",braces herself against the bed's footboard as she brings the tattoo needle to his chest.,\"stares blankly at her, then sits down in front of her.\",lowers her head and tenderly lowers the camera.,fires at the sky as clouds rise up into the sky.,tears blinks its glistening eyes and back again tears.,gold1-orig,pos,unl,unl,unl,unl,\"Someone leans forward, her eyes wide.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6107,She crouches astride someone who struggles beneath her. Someone,\"leans forward, her eyes wide.\",turns briefly to the skier's tearful beauty.,climbs in and lies on her side.,watches her hurl.,,gold1-orig,pos,unl,unl,unl,n/a,She crouches astride someone who struggles beneath her.,Someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6121,Someone gives her a big hug and kisses her cheek. He,picks up her suitcase.,pushes the door shut.,\"nibbles her lips, then crouches higher and reaches over her back.\",sings and they hug again.,,gold1-orig,pos,unl,unl,unl,n/a,Someone gives her a big hug and kisses her cheek.,He\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6115,\"He looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby. Back in someone's apartment, someone\",finishes a drink of water and sets the cup in the bathroom.,finds the alsatian descending the ladder.,finds someone working out in a tv.,\"walks behind someone, his shoulders straining.\",watches from a small balcony above the christmas tree.,gold0-orig,pos,unl,unl,pos,pos,He looks over his shoulder with a troubled gaze as the cat lounges comfortably nearby.,\"Back in someone's apartment, someone\"\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6110,\"She turns, her gaze following something in the parade. She\",lays a hand on a friend's shoulder and backs away from the group.,smiles as she makes her way past the rest of the falls.,takes out a suitcase and looks back at it.,\"sprints through the window, bumping into the shirtless zombie.\",cowers on its engine.,gold0-orig,pos,unl,unl,unl,unl,\"She turns, her gaze following something in the parade.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6109,\"The images crossfade as they change, creating a disjointed animated effect. She\",\"turns, her gaze following something in the parade.\",turns and faces someone's in.,flashes on her face.,spies on the screen as he joins more resumes.,\"points this for us, then rushes against the jukebox.\",gold0-reannot,pos,unl,unl,unl,unl,\"The images crossfade as they change, creating a disjointed animated effect.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6116,\"Back in someone's apartment, someone finishes a drink of water and sets the cup in the bathroom. She\",goes to a chair.,lowers his gaze and gives a cordial smile.,glances up at the boy.,flips her over to someone's side.,,gold1-reannot,pos,pos,pos,pos,n/a,\"Back in someone's apartment, someone finishes a drink of water and sets the cup in the bathroom.\",She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6119,She leaves the apartment without looking back. Now someone,walks the grounds of the vanger estate.,\"enters from the bedroom, clutching her bed.\",glares at her spell.,leans against someone's car.,sits at the kitchen island.,gold1-reannot,pos,unl,unl,pos,pos,She leaves the apartment without looking back.,Now someone\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6106,Someone uncaps a jar of ink then dips the needle in it. She,crouches astride someone who struggles beneath her.,covers the center with both hands and rubs it with a gold web.,removes it from her eye socket.,picks up a picture of inferno bands and pushes it to someone's forearm.,\"straps on his sharpens, apparently substance - give small drink and a flowery invitation.\",gold0-reannot,pos,unl,unl,unl,unl,Someone uncaps a jar of ink then dips the needle in it.,She\nlsmdc3072_THE_GIRL_WITH_THE_DRAGON_TATTOO-33751,6126,His daughter finishes her silent prayer and gives him a look. She,takes a bite of her sandwich.,gives water a grungy look.,shrugs a hand and leans close to someone.,slides off her panties.,\"holds out the glass, not sure how elegant the light is.\",gold0-reannot,pos,unl,unl,unl,unl,His daughter finishes her silent prayer and gives him a look.,She\nlsmdc3035_INSIDE_MAN-2246,1932,\"Someone heads up toward the first floor, crossing paths with the woman. She\",glances back at him.,pulls on someone's collar.,and her friends leave her alone.,places him in a mirror.,has just prepared to protest.,gold1-orig,pos,unl,unl,unl,pos,\"Someone heads up toward the first floor, crossing paths with the woman.\",She\nlsmdc3035_INSIDE_MAN-2246,1927,\"Someone, someone, and the lanky robber sit in the back seat. Someone\",sits at the wheel.,spots a young boy with someone behind him in the back of his booth.,grabs a chair beside someone.,nears an rows of parked vehicles facing the cafe.,holding a phone scissors machine enter.,gold0-orig,pos,unl,unl,unl,pos,\"Someone, someone, and the lanky robber sit in the back seat.\",Someone\nlsmdc3035_INSIDE_MAN-2246,1926,\"Across the street and around the corner, a black suv sits parked at the curb. Someone, someone, and the lanky robber\",sit in the back seat.,climb the bank.,come through a wonder road.,walk along the street with their hostages.,walk around the side to watch other two on the narrow street lined with foliage.,gold0-orig,pos,unl,unl,unl,pos,\"Across the street and around the corner, a black suv sits parked at the curb.\",\"Someone, someone, and the lanky robber\"\nlsmdc3035_INSIDE_MAN-2246,1928,\"Back in the supply room, someone answers his. Now, the mastermind\",slips out into the basement hall.,shoves his sheet around an alleyway.,\"opens the door of the small room which reads, storage of old house.\",marches down a narrow corridor.,,gold0-orig,pos,unl,unl,pos,n/a,\"Back in the supply room, someone answers his.\",\"Now, the mastermind\"\nlsmdc3035_INSIDE_MAN-2246,1922,\"Back in the supply room, the Dell computer boxes shift. As a panel\",gets removed from the wall.,unveils an egg clock reads 7: 8: 30.,\"shows thick rows of steps, a large ship titled the name of the hologram.\",\"falls, someone's lips flops back to a cordial posture.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Back in the supply room, the Dell computer boxes shift.\",As a panel\nlsmdc3035_INSIDE_MAN-2246,1931,As someone approaches the basement stairs. Someone,\"heads up toward the first floor, crossing paths with the woman.\",removes her backpack and pulls out a pair of yellow - earrings.,bends to retrieve the key.,falls over standing in bed.,,gold0-orig,pos,unl,unl,unl,n/a,As someone approaches the basement stairs.,Someone\nlsmdc3035_INSIDE_MAN-2246,1925,\"He crawls out through the secret opening. Across the street and around the corner, a black suv\",sits parked at the curb.,begins with a brightly shambling white.,sits on a safari - washers road riding its way.,slips beneath the wheels.,rushes down a walkway to a tropical racetrack.,gold0-orig,pos,unl,unl,unl,unl,He crawls out through the secret opening.,\"Across the street and around the corner, a black suv\"\nlsmdc3035_INSIDE_MAN-2246,1936,\"Now, someone approaches the black suv. He\",opens the front passenger door.,steps to the edge.,goes out in fast motion.,walks along a sidewalk.,is carrying a black bottle.,gold0-orig,pos,unl,unl,pos,pos,\"Now, someone approaches the black suv.\",He\nlsmdc3035_INSIDE_MAN-2246,1933,\"Now, someone and someone enter the bank. Coming in the other direction, someone\",bumps into the middle - aged detective.,glances up at the rear - view mirror.,grabs a ledge and hurries over to the car.,stirs in a military uniform.,,gold1-orig,pos,unl,unl,pos,n/a,\"Now, someone and someone enter the bank.\",\"Coming in the other direction, someone\"\nlsmdc3035_INSIDE_MAN-2246,1940,\"Next to it, he finds the Cartier box and the huge diamond ring inside it. He\",opens up a note and reads.,sweeps up the necklace and breaks it into pieces.,sets it aside and uses a plant.,opens it and points at a snake.,opens it and climbs the tower staircase.,gold0-orig,pos,unl,unl,unl,unl,\"Next to it, he finds the Cartier box and the huge diamond ring inside it.\",He\nlsmdc3035_INSIDE_MAN-2246,1923,As a panel gets removed from the wall. Someone,pushes the stack of boxes out of his way.,\"sparks around in the side, and the glasses it into the sketch with it.\",eyes his weapon coolly.,sits on her new pebble.,exposes the metal paper.,gold1-orig,pos,unl,unl,unl,unl,As a panel gets removed from the wall.,Someone\nlsmdc3035_INSIDE_MAN-2246,1941,He opens up a note and reads. He,bags the note with the other items.,forgetting many more and more together.,\"looks down at her blanket, then closes the diary and reads up again.\",displays the damp label.,looks up at someone who's still puzzled.,gold0-orig,pos,unl,unl,unl,pos,He opens up a note and reads.,He\nlsmdc3035_INSIDE_MAN-2246,1942,\"He bags the note with the other items. Now, a valet\",holds open a door for mr.,pulls the handlebars onto a tricycle.,reappears on a grill.,pulls up to martina swap waves.,stands one over a garden swarming with hollow tails.,gold0-orig,pos,unl,unl,unl,unl,He bags the note with the other items.,\"Now, a valet\"\nlsmdc3035_INSIDE_MAN-2246,1929,\"Now, the mastermind slips out into the basement hall. He\",steps warily past the secured office where a man uses the phone.,sits down on the coat beside someone.,lands on his bed then puts the shelves down.,shuts his eyes and glares.,\"walks onto the stairs, and checks a corner post.\",gold1-orig,pos,unl,unl,unl,pos,\"Now, the mastermind slips out into the basement hall.\",He\nlsmdc3035_INSIDE_MAN-2246,1934,\"Coming in the other direction, someone bumps into the middle - aged detective. The mastermind\",leaves as someone and someone approach a desk.,dumps his suitcase in his luggage.,closes the door and walks towards the door.,gets into a car and struggles to a halt.,\"passes, leaving someone behind.\",gold0-orig,pos,unl,unl,unl,unl,\"Coming in the other direction, someone bumps into the middle - aged detective.\",The mastermind\nlsmdc3035_INSIDE_MAN-2246,1937,He opens the front passenger door. Someone,grips hands with his muscular accomplice.,looks up at the new bedding on the street above.,sneaks up to his son.,moves on his hands.,looks down at the tailor on the bus.,gold1-reannot,pos,unl,unl,unl,unl,He opens the front passenger door.,Someone\nlsmdc3035_INSIDE_MAN-2246,1935,\"The mastermind leaves as someone and someone approach a desk. Outside, someone\",walks out through the front door.,lies bound behind his back.,\"looks up anxiously, then places the pants on a deadbolt.\",runs to the entrance and halts.,,gold0-reannot,pos,unl,unl,pos,n/a,The mastermind leaves as someone and someone approach a desk.,\"Outside, someone\"\nlsmdc3035_INSIDE_MAN-2246,1924,Someone pushes the stack of boxes out of his way. He,crawls out through the secret opening.,jumps through the arched.,smiles up at someone loudly on time.,approaches the gambling room.,pauses and presses his lips on hers.,gold0-reannot,pos,unl,unl,pos,pos,Someone pushes the stack of boxes out of his way.,He\nanetv_FcfoTk3UK5g,9003,Close up shots are shown of people fencing back and fourth. People,continue to fence with one another as people watch on the sides.,continue to speak to each other and ends with him pushed down and smiling.,are moving together on stage welds.,walk alongside and continues the fence as they continue moving.,,gold0-orig,pos,unl,unl,unl,n/a,Close up shots are shown of people fencing back and fourth.,People\nanetv_FcfoTk3UK5g,16751,A large group of people are seen standing around a gymnasium with many performing fencing matches on the side. The camera,transitions into several shows of people fencing back and fourth while many watch on the sidelines.,moves together around one another while a gymnastics coach jumps.,continuously spins around one another while a man walks out into frame using equipment to move in and out of frame.,pulls up to a large group of people and clips jumping rope on the bars.,,gold0-orig,pos,unl,unl,unl,n/a,A large group of people are seen standing around a gymnasium with many performing fencing matches on the side.,The camera\nanetv_FcfoTk3UK5g,9002,A large group of people are seen standing around a gymnasium with people fencing in between. Close up shots,are shown of people fencing back and fourth.,are shown of people fencing together and leads into a woman putting three pictures on to the side.,are shown of people performing against one another throwing a pong ball.,are shown of people playing the game while people cheering.,are shown of several people playing around a pool with another group of girls playing game behind them.,gold0-reannot,pos,unl,unl,unl,unl,A large group of people are seen standing around a gymnasium with people fencing in between.,Close up shots\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5606,Horseless carriages take the students up to Hogwarts Castle. They,assemble in the great hall for the welcoming feast.,see four hasty silhouette of a huge building in front of the building.,glimpse a sailboat sitting with a woman wearing a blue suit.,are getting ready to start the race.,smile back at their daughters on top as they watch someone ride home.,gold0-orig,pos,unl,unl,unl,unl,Horseless carriages take the students up to Hogwarts Castle.,They\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5607,They assemble in the Great Hall for the welcoming feast. Lighted candles,hang above their heads as they sit at the long tables listening to the choir.,illuminate the walls of the dimly lit dance hut.,\"lie on a shirt, topped with huge rocks.\",adorn an endless expanse of colorful sky.,,gold0-orig,pos,unl,unl,unl,n/a,They assemble in the Great Hall for the welcoming feast.,Lighted candles\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5605,He stares at his own worried face reflected in the glass. Horseless carriages,take the students up to hogwarts castle.,coasts through someone's cluttered door into the room.,rush out of the front door.,in the garden peer at someone through their eyes.,lift someone's gaze then hangs from his arms.,gold0-orig,pos,unl,unl,unl,unl,He stares at his own worried face reflected in the glass.,Horseless carriages\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9558,5604,Someone looks at the rain teeming down outside the window. He,stares at his own worried face reflected in the glass.,edges the floor.,\"rocks her and spars with someone, who pulls to the main room, followed by someone.\",walks back to the vent and looks up at the molding.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone looks at the rain teeming down outside the window.,He\nanetv_cT4EquMmRiw,8774,They duck down as they go under a low clearance bridge. Then they,rise up again and continue sailing till they have to duck down again to avoid another bridge.,go down the rail high to the house.,\"climb a rope further down the river past the human, right, a tow rope high up and down the hills.\",\"get up and fly upstairs, leaving someone alone with someone.\",skates pass by brief brief halts.,gold1-orig,pos,unl,unl,unl,pos,They duck down as they go under a low clearance bridge.,Then they\nanetv_cT4EquMmRiw,8771,There's a group of adults and kids kayaking through the river. The ladies and children,are getting ready to enter the kayak with the oars in their hands.,are applauding for the audience.,sit at the park table as kids sit on front the fence.,are shown getting rafts down the river.,,gold0-orig,pos,unl,pos,pos,n/a,There's a group of adults and kids kayaking through the river.,The ladies and children\nanetv_cT4EquMmRiw,2723,Empty boats are seen in water. a girl,walks with a paddle in her hand.,leans against the rowing machine.,falls into the water.,holds up a yellow paddle.,jumps onto a raft to climb waves.,gold0-orig,pos,unl,pos,pos,pos,Empty boats are seen in water.,a girl\nanetv_cT4EquMmRiw,2724,A girl walks with a paddle in her hand. a boy,walks with a paddle in his hand.,holds a shot put trophy in her hands.,gets on and scoops up the bucket.,\"wipes the side of her face, then wipes down on the surface.\",,gold0-orig,pos,unl,unl,unl,n/a,A girl walks with a paddle in her hand.,a boy\nanetv_cT4EquMmRiw,8773,They begin kayaking through the water as every member uses their oars to sail the boat. They,duck down as they go under a low clearance bridge.,\"come to one side of the river, which is very rough on the river.\",walk down the sides of the river.,rushes to hold paddles to the right as they pass.,,gold0-orig,pos,unl,unl,pos,n/a,They begin kayaking through the water as every member uses their oars to sail the boat.,They\nanetv_cT4EquMmRiw,8775,Then they rise up again and continue sailing till they have to duck down again to avoid another bridge. They,pass by other people on kayaks as they sail along.,turn their hands over and bow.,are then measuring the wooden posts alongside the encounter.,\"reach the high, but the man approaches and moves their boards on.\",stay afloat through the water before they escape.,gold0-orig,pos,unl,unl,unl,pos,Then they rise up again and continue sailing till they have to duck down again to avoid another bridge.,They\nanetv_cT4EquMmRiw,8776,They pass by other people on kayaks as they sail along. Then they,get off the kayaks and stand on the river banks to look over the river.,pull through a boat holding the sail.,float down the river in a choppy water before running over the river.,wash in the water.,,gold0-orig,pos,unl,unl,pos,n/a,They pass by other people on kayaks as they sail along.,Then they\nanetv_cT4EquMmRiw,2725,A boy walks with a paddle in his hand. a few kids,gather into a boat.,walk on the whole.,run across the stairs.,begin playing in the water playing.,walks over to him.,gold0-orig,pos,unl,pos,pos,pos,A boy walks with a paddle in his hand.,a few kids\nanetv_cT4EquMmRiw,8777,Then they get off the kayaks and stand on the river banks to look over the river. A little girl,use binoculars to get a better view of the river.,\"jumps on the rope, and watches a woman carries a child down a snowy slope.\",is pulling a van and bear on the boat to begin a part.,appears at the end of the lawn almost laughing.,is sitting in front of someone.,gold0-orig,pos,unl,unl,unl,pos,Then they get off the kayaks and stand on the river banks to look over the river.,A little girl\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1229,\"As he grabs a book and flops onto the bed. Reaching inside, he\",finds a receipt for a safe deposit box bearing someone's name.,unwraps it and drops it.,strokes someone's head with the back of his hand.,thrusts the pizzas on the door.,,gold0-orig,pos,unl,unl,unl,n/a,As he grabs a book and flops onto the bed.,\"Reaching inside, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1231,\"He looks at the framed photo of her. Shot from the waist up during one of her pregnancies, she\",stands nude with one arm across her chest.,turns and returns toward the house.,looks around the sushi table before putting her tray down to the sofa.,seems a bit surprised and gently places the pillow under the top.,notices someone's throat cleaning a little.,gold0-orig,pos,unl,unl,unl,pos,He looks at the framed photo of her.,\"Shot from the waist up during one of her pregnancies, she\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1227,\"Now in his bedroom, he wears an undershirt and sweatpants as he stands at his dresser, his hair damp. He\",finds the old faded sweatshirt in the top drawer and takes it out.,\"lifts someone's to a glass face, then quickly bumps for a haircut.\",slides out a view of his thick helmet.,sees someone sleeping on his back.,taps his temple as the other girls walk behind him.,gold0-orig,pos,unl,unl,unl,pos,\"Now in his bedroom, he wears an undershirt and sweatpants as he stands at his dresser, his hair damp.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1230,\"Reaching inside, he finds a receipt for a safe deposit box bearing someone's name. He\",looks at the framed photo of her.,slots a card into a tube record.,matches a lighter in a charger and a sweatshirt and a small handgun in a jewelry box.,\"jumps over the raised phone, toward the door of the church.\",lifts his gaze to the ornate humanoid figure.,gold1-reannot,pos,unl,unl,unl,unl,\"Reaching inside, he finds a receipt for a safe deposit box bearing someone's name.\",He\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1226,\"Someone meets her friendly gaze and gives a thoughtful look. Now in his bedroom, he\",\"wears an undershirt and sweatpants as he stands at his dresser, his hair damp.\",\"puts his lipstick on his lips, before they lean against the glass.\",finds someone alone at a hospital.,greets a young man with a mailbag.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone meets her friendly gaze and gives a thoughtful look.,\"Now in his bedroom, he\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41367,1228,\"Putting it on, he lifts his eyes to a framed black - and - white photo of his wife on the dresser. As he\",grabs a book and flops onto the bed.,\"swirls the thread in the shirt box, all of the building has been made too fast.\",scuttles down the monkey bars.,\"stands the checked, someone jogs back in her original uniform.\",finds the bags under the toilet inside.,gold1-reannot,pos,unl,unl,unl,unl,\"Putting it on, he lifts his eyes to a framed black - and - white photo of his wife on the dresser.\",As he\nlsmdc1055_Marley_and_me-96430,15566,\"It's a tough one, and he grimaces. Grinning, she\",pats him sympathetically on the back.,lifts him through the air and runs down the street.,takes off his glasses and presses it to her ear.,hangs her head with a thoughtful look.,,gold1-orig,pos,unl,unl,pos,n/a,\"It's a tough one, and he grimaces.\",\"Grinning, she\"\nanetv_Z4yZr5dIMec,6172,\"It's an extremely sunny day out and a picture of a red flower and dandelion becomes present. After, several scenes of a farm\",\"are then recorded ranging from horses, cabins, and windmills.\",are filled with children moving around and throwing baskets.,\"are shown packed by a game of croquet, while a man appears on a rodeo track outside of a beach.\",appears with a logo discusses over screen.,are shown followed by a woman climbing a christmas tree and paint with a adult.,gold0-orig,pos,unl,unl,unl,unl,It's an extremely sunny day out and a picture of a red flower and dandelion becomes present.,\"After, several scenes of a farm\"\nanetv_Z4yZr5dIMec,4582,Horses are on a barn in a club with pools. men,are playing polo on a green grassy field riding horses.,are standing in a tight line on camels and waiting for them.,are riding horses in a green grassy with horses behind him and are being kayaks for the video.,are inspects boxes and some small tables.,is playing cricket on a field in front of a small group.,gold0-orig,pos,unl,unl,pos,pos,Horses are on a barn in a club with pools.,men\nanetv_Z4yZr5dIMec,6173,\"After, several scenes of a farm are then recorded ranging from horses, cabins, and windmills. Along the other features, a table is shown set up for an exquisite lunch and then several men\",are shown playing polo.,begin fencing in various the swords.,are snowboarding down the slopes.,dance together in front of the small camera.,,gold0-orig,pos,unl,unl,pos,n/a,\"After, several scenes of a farm are then recorded ranging from horses, cabins, and windmills.\",\"Along the other features, a table is shown set up for an exquisite lunch and then several men\"\nanetv_Z4yZr5dIMec,6174,\"Along the other features, a table is shown set up for an exquisite lunch and then several men are shown playing polo. After the game, the people come back to the table to eat the bbq that was just cooked and the players\",continue riding around the farm.,have been individually shown in just the serve in you.,give the information on the cover and get it to the meat.,are dealing it on and dancing together.,\"run around, and continue cutting the nuts of the mustard.\",gold0-reannot,pos,unl,unl,unl,unl,\"Along the other features, a table is shown set up for an exquisite lunch and then several men are shown playing polo.\",\"After the game, the people come back to the table to eat the bbq that was just cooked and the players\"\nanetv_3zMCxmdkcRY,10355,A man and woman are dancing on a roof top of a building in a city. He,lifts the woman up into the air.,sits nearby and crosses to the curb.,takes a the steps of the followed by some soldiers.,chats with a group of men well on strings as sitting on bicycles on watch.,is a man in a pink shirt riding the wheels of a skateboard and fast to making a build up speed.,gold0-orig,pos,unl,unl,unl,unl,A man and woman are dancing on a roof top of a building in a city.,He\nanetv_3zMCxmdkcRY,10356,He lifts the woman up into the air. The camera,pans up to a tall building in the background.,\"pans all around her, depositing the handle on the carpet.\",\"peels off, revealing the dog to the one girl coming in.\",captures her from above.,pans to capture the people riding in the world.,gold1-reannot,pos,unl,unl,unl,unl,He lifts the woman up into the air.,The camera\nlsmdc3022_DINNER_FOR_SCHMUCKS-10442,19179,Someone sees a car pull up. Someone,hides behind the porsche as martha gets out of her car and waves to someone as he comes out of the building.,\"opens the van and pulls out the empty detonator, then breaks on a gas valve.\",sits on a chair with a mohawk girl beside him.,lies back and splattering blood on someone's nose.,runs after the windows.,gold0-orig,pos,unl,unl,unl,unl,Someone sees a car pull up.,Someone\nlsmdc3022_DINNER_FOR_SCHMUCKS-10442,19180,Someone hides behind the Porsche as Martha gets out of her car and waves to someone as he comes out of the building. Hefty Martha,goes over to someone who crouches down in front of her and runs his hands all over her.,picks up a sawed off shotgun from the garbage bag.,\"is jogging wearing his coat, now clad in a form with a crease and a black t - shirt in bar.\",stands on the streets and parks.,\"- laden pink slack - jawed someone follow up in front of someone, who gives his eyes a little incredulously.\",gold1-reannot,pos,unl,unl,unl,pos,Someone hides behind the Porsche as Martha gets out of her car and waves to someone as he comes out of the building.,Hefty Martha\nlsmdc3022_DINNER_FOR_SCHMUCKS-10442,19181,\"Someone notes someone's reaction. As someone gets in the car, he\",shoots a superior look in someone's direction.,enters the smoking hallway.,passes her worried friend.,collapses into the bag.,looks up from the table.,gold0-reannot,pos,unl,unl,unl,unl,Someone notes someone's reaction.,\"As someone gets in the car, he\"\nlsmdc0038_Psycho-67425,16884,\"She smiles brightly, as if having invited them over to discuss this year's charity fandango, takes the Sheriff's arm, starts away. The Sheriff\",nods as he goes.,\"stand inhaling and lift people, then retrieve all their cigarettes.\",strides towards them earlier.,looks away and shades at someone.,,gold1-orig,pos,unl,unl,unl,n/a,\"She smiles brightly, as if having invited them over to discuss this year's charity fandango, takes the Sheriff's arm, starts away.\",The Sheriff\nlsmdc0038_Psycho-67425,16885,The Sheriff nods as he goes. People,\"are alone now, at the curb, before the deserted chapel.\",\"another page, someone lifts someone's phone and answers.\",are cleaning the house.,arrive at the cabin.,,gold0-orig,pos,unl,unl,unl,n/a,The Sheriff nods as he goes.,People\nanetv_ke3R1rOeQzE,7559,A player spikes a volley ball across a court of awaiting players. the opposite team,runs for the ball and hits it on the other side of the net.,aims out the referee and walks around with the players.,knocks off a bag and goes up the meeting.,returns the basketball players to their goal and scores a goal.,scores a goal and each ball.,gold1-orig,pos,unl,unl,unl,unl,A player spikes a volley ball across a court of awaiting players.,the opposite team\nanetv_ke3R1rOeQzE,14900,Two teams play indoor volley ball as marketing signs bordering the playing floor change suddenly and morph in more signs. A coach in a black suit,walks across the sidelines as the game continues and one player in a blue uniform throws an arm up in victory.,leads out of a beaded dress by a reporter on the court.,runs and tries to hit the ball.,holds up his ping pong racket while watching the judges watch.,prepares to hit the ball on the goal.,gold0-orig,pos,unl,unl,unl,unl,Two teams play indoor volley ball as marketing signs bordering the playing floor change suddenly and morph in more signs.,A coach in a black suit\nanetv_-NM-0NZXRNw,18153,\"While they are hitting each other, the concession stand is shown as well as many people entering and buying snacks. Multiple games are taking place and throughout it, teams begin to win\",are shown holding their flags up.,their clothing.,and move and turn wrestling with great silence.,several consecutive erupts for the camera.,,gold0-orig,pos,unl,unl,unl,n/a,\"While they are hitting each other, the concession stand is shown as well as many people entering and buying snacks.\",\"Multiple games are taking place and throughout it, teams begin to win\"\nanetv_-NM-0NZXRNw,10303,\"A group of men jumps and celebrates, then people continue shooting. After, the winners\",receive a trophy in the podium.,make the baskets and they celebrate.,see the triple jump and give themselves a hug.,cheers and speak to each other during the game.,raise their hands and take a seat with chairs.,gold0-orig,pos,unl,unl,unl,pos,\"A group of men jumps and celebrates, then people continue shooting.\",\"After, the winners\"\nanetv_-NM-0NZXRNw,10302,The teams compete shooting while covered behind inflated protectors. Men,run to cover behind the protectors while shooting.,lie on the ground railings trying to tug by.,close a goal and get a trophy before the competition.,are serving or teach the white team and make jump dodgeball.,bow to a player on the left side while other.,gold0-orig,pos,unl,unl,pos,pos,The teams compete shooting while covered behind inflated protectors.,Men\nanetv_-NM-0NZXRNw,10301,Teams compete shooting using plastic guns. The teams,compete shooting while covered behind inflated protectors.,talk to each other for a moment have moved the final bits and chips.,head to an outdoor field where the team of the swimmers take turns hit and shows a ball and opposing times a goal.,are then shown preparing to run with hitting ball one at a time.,continue on as they play with one another next to each other.,gold0-orig,pos,unl,unl,unl,pos,Teams compete shooting using plastic guns.,The teams\nanetv_-NM-0NZXRNw,18152,\"Next, a group of paint ballers begin to take off and shoot one another. While they are hitting each other, the concession stand\",is shown as well as many people entering and buying snacks.,raise their hands to celebrate.,is only seen running through an house in the middle of the track.,is arguing in two.,barely score lines on the table.,gold0-orig,pos,unl,unl,unl,unl,\"Next, a group of paint ballers begin to take off and shoot one another.\",\"While they are hitting each other, the concession stand\"\nanetv_-NM-0NZXRNw,18151,\"Several people are shown before a crowd of people begin to stand up in the bleachers to support them. Next, a group of paint ballers\",begin to take off and shoot one another.,appear on the screen as the young team is over in uniform.,unties to themselves as they talk and slide them on bikes.,are seen in snowboards.,captures the many jump they finally marathon in a marathon.,gold0-orig,pos,unl,unl,unl,unl,Several people are shown before a crowd of people begin to stand up in the bleachers to support them.,\"Next, a group of paint ballers\"\nanetv_lcUtnIptSjM,15375,A woman in a lab coat is in a hospital recovery room. She,soaps up her hands well with soap.,is in chair with a bunch of people.,puts out a spare.,is the first woman who jumps on the bed at work.,,gold0-orig,pos,unl,unl,unl,n/a,A woman in a lab coat is in a hospital recovery room.,She\nanetv_lcUtnIptSjM,15376,She soaps up her hands well with soap. She then,rinses and dries them thoroughly.,takes the drain off and sprays into the sink.,combs the clients hair as she finishes.,applies lipstick over her ears and neck and head.,combs them clean with her hands.,gold0-orig,pos,unl,unl,unl,unl,She soaps up her hands well with soap.,She then\nanetv_OsB_uEj1PRM,12120,A man is seen laying on the ground holding onto his stomach. He,begins moving himself up and down on the ground while holding onto his waist.,swings back and fourth on the machine while another man watches to the camera.,falls laying down while standing in front of the camera.,begins swinging several more times while walking around and throwing him down.,is then shown styling the dogs hair with hair using a comb and shaving his face.,gold0-orig,pos,unl,unl,unl,unl,A man is seen laying on the ground holding onto his stomach.,He\nanetv_OsB_uEj1PRM,12121,He begins moving himself up and down on the ground while holding onto his waist. He,continues moving up and down while the camera captures his movements.,picks up the weights and spins them again several times.,continues going and going right to slower in turn.,throws graciously and twists his arms up.,continues shoveling snow around his legs and continues to recede on top of the hill.,gold0-orig,pos,unl,unl,unl,unl,He begins moving himself up and down on the ground while holding onto his waist.,He\nanetv_cr9VTwfM_2w,6121,A person is seen riding around a skateboard attempting several jumps and tricks while the camera watches his movements. The boy,\"continues attempting tricks wile falling off on the side and trying again, landing the moves the last try.\",is shown jumping as he skis and bumps his stick on the water while he is riding.,continues riding around on the bike while a child watches this time.,continues throwing himself around while falling and falling off the sides and looking around.,continues dancing all around the area while finishes and ends by speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A person is seen riding around a skateboard attempting several jumps and tricks while the camera watches his movements.,The boy\nanetv_cr9VTwfM_2w,13939,\"Sometimes, he fails and other times he can perform a kickflip. He\",falls down and then has to run after the board.,stands for several seconds while then begins dancing.,\"tricks while he swings, turns and the skates stops and he jumps in front of it.\",puts a better look on his face and looks very good at the surface.,steps forward and lands bumping the muddy wall.,gold0-orig,pos,unl,unl,unl,unl,\"Sometimes, he fails and other times he can perform a kickflip.\",He\nlsmdc3025_FLIGHT-12070,13711,Someone's eyes dart up and down. He,takes someone's hand.,brushes into a bunch.,rips up the knife.,lays down on the bed.,ignores the light and takes it away.,gold0-orig,pos,unl,unl,pos,pos,Someone's eyes dart up and down.,He\nlsmdc3025_FLIGHT-12070,13713,Someone sees the lights on in the hangar. Someone,leans over the cessna.,laughs as a steward slides the escalade's door shut.,steps back to the cafe beyond the track which are deserted.,\"stands up on the window at the face of the combo, and is utterly confused.\",,gold0-orig,pos,pos,pos,pos,n/a,Someone sees the lights on in the hangar.,Someone\nlsmdc3025_FLIGHT-12070,13712,He takes someone's hand. Someone,sees the lights on in the hangar.,pulls the gate away and drives them with his arms.,looks away from someone as he closes the gap between the doors and closes out beyond it.,signs the book from under a young mutant in the corner of the bed.,,gold1-orig,pos,unl,unl,unl,n/a,He takes someone's hand.,Someone\nlsmdc3025_FLIGHT-12070,13714,Someone leans over the Cessna. He,jumps off the ladder and hustles over to someone.,\"stands, smiles, and starts her dance.\",carries it out by someone.,\"pauses briefly, then lowers his dance gaze.\",eyes an image on the sky with stubble.,gold0-reannot,pos,unl,unl,unl,unl,Someone leans over the Cessna.,He\nanetv_i-LI4TpJNQ8,16565,Man is sitting in a kayak next to the sidewalk. man,is taking out the kayak from the water.,is sitting in a tube holding an empty rag.,is mowing the grass in a backyard.,is standing on the sidewalk holding a cigarette.,is standing on the beach getting a rake.,gold0-orig,pos,unl,unl,unl,unl,Man is sitting in a kayak next to the sidewalk.,man\nlsmdc0016_O_Brother_Where_Art_Thou-55434,9379,The three hold their coats pinched shut at the neck as they look forlornly up at the weather. - The three men,walk along a red dirt road elevated through a bayou.,\"bring up their daughter slumped over the rock with their pom poms, their young backs together.\",\"climbs on the high balcony and floats, tenderly, but harry appears in the doorway.\",are knocked out with someone as the kids step up to him.,,gold1-orig,pos,unl,unl,unl,n/a,The three hold their coats pinched shut at the neck as they look forlornly up at the weather.,- The three men\nlsmdc0016_O_Brother_Where_Art_Thou-55434,9378,The crude black label identifies it as' Man of Constant Sorrow 'by the Soggy Bottom Boys. The three,hold their coats pinched shut at the neck as they look forlornly up at the weather.,\"take crates and pick some snow off the garbage, disappearing into the pool.\",quiets down as they took out his turquoise blue coat.,begin to walk up some stairs to the middle of the hall drinking.,,gold0-orig,pos,unl,pos,pos,n/a,The crude black label identifies it as' Man of Constant Sorrow 'by the Soggy Bottom Boys.,The three\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70466,16322,\"Someone gets to his knees as the huge Zeppelin rises into the sky above him, revealing an airplane attached to the belly of the airship. Someone\",shakes his fist at the rising zeppelin.,drops down and falls on the astronomy tower.,can't see easter.,works upside down to a station.,comes in with a half - wail.,gold0-orig,pos,unl,unl,unl,unl,\"Someone gets to his knees as the huge Zeppelin rises into the sky above him, revealing an airplane attached to the belly of the airship.\",Someone\nlsmdc3004_500_DAYS_OF_SUMMER-1637,4426,Someone leaps up and chases the young lad. The singer,sports a massive afro.,slashes the chest with his thumb.,stops and lifts someone's jaw.,gives a lad to a man's directions to him.,takes aim to a kite player.,gold0-reannot,pos,unl,unl,unl,unl,Someone leaps up and chases the young lad.,The singer\nlsmdc3004_500_DAYS_OF_SUMMER-1637,4427,The singer sports a massive afro. Someone,throws her bouquet over her head.,writes a note in a detail.,looks casually at its apparent money.,runs through a branch.,\"passes outside a glass alley, where the light is swept out on a parked beautiful rooftops.\",gold1-reannot,pos,unl,unl,unl,pos,The singer sports a massive afro.,Someone\nanetv_-uR5-jYe0Ag,6718,A woman is standing in front of a mirror. the woman then,begins applying eye liner.,grabs a bottle of paper in from a wooden bowl.,begins shaving the bar intermittently.,starts punching her head with a stick.,shaves and scrapes shaving cream on her face.,gold0-orig,pos,unl,unl,unl,pos,A woman is standing in front of a mirror.,the woman then\nanetv_-uR5-jYe0Ag,6719,The woman then begins applying eye liner. the woman,talks to the camera then returns to applying makeup.,brushes her hair and continues painting on the brush then braids up with a brush.,begins to move the cat.,trims her hair and parts.,brush her nails with her hands.,gold0-orig,pos,unl,unl,unl,unl,The woman then begins applying eye liner.,the woman\nanetv_-uR5-jYe0Ag,15867,First she makes her eyes up and winks at the camera. Then she,says something and turns back around to do what she was doing.,squeezes her coffee brown under her hands.,shows how it would look like her pet model.,smiles and puffs again.,,gold0-orig,pos,unl,unl,pos,n/a,First she makes her eyes up and winks at the camera.,Then she\nanetv_-uR5-jYe0Ag,15866,This woman is shown putting on her makeup while looking in the mirror. First she,makes her eyes up and winks at the camera.,takes her lipstick out and continues brushing her breasts.,uses an eyeliner on then climbs on to remove her eyelids.,gets two soap for her and dry her hair.,demonstrates the contact of her hair in the end.,gold1-reannot,pos,unl,unl,unl,pos,This woman is shown putting on her makeup while looking in the mirror.,First she\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70761,13027,Someone reaches forward and fingers someone's clothing. Someone,holds his sword out to someone.,stands in front of leather.,\"slithers past some women, posing, tracking after him.\",rolls over to him reassuringly and grimly off.,,gold1-orig,pos,unl,unl,unl,n/a,Someone reaches forward and fingers someone's clothing.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5328,\"Someone wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror. Someone's features suddenly\",transform into the malevolent face of someone.,belongs to a chubby light at her son's side.,draw away from the scene.,rapping around a large oak complex beside the cliff.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror.\",Someone's features suddenly\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5330,Someone casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock. Someone,stares into the murky depths of the water.,gapes as she runs into someone's mends.,stops for a moment to scream who hears the noise.,charges - drags someone off the stage.,closes a door behind him.,gold0-orig,pos,unl,unl,unl,pos,Someone casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5326,People lie asleep amidst scrubby bushes near a stagnant pool. Someone,\"lies nearby, muttering in his sleep.\",shows someone to a typewriter.,sleeps on the other side of a sofa.,\"sees the waitress, pulls out a woman's chair.\",,gold0-orig,pos,unl,unl,pos,n/a,People lie asleep amidst scrubby bushes near a stagnant pool.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5327,\"Someone lies nearby, muttering in his sleep. Someone\",\"wakes suddenly, shaking, his face drenched in sweat, eyes wide in horror.\",rips the tiny vampire off its head.,gapes as the ice drops right into someone's face.,peers on the lower section of the canvas cover.,'s eyes widen as his knees.,gold0-orig,pos,unl,unl,unl,unl,\"Someone lies nearby, muttering in his sleep.\",Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60546,5329,Someone's features suddenly transform into the malevolent face of someone. Someone,casts a quick glance over his shoulder to the sleeping figures of people as he clambers off his rock.,takes it from someone.,leans back through a window and spots something on the ground.,wraps his arms around him and pulls him back and moves away.,closes her eyes and smiles to herself.,gold1-reannot,pos,unl,unl,pos,pos,Someone's features suddenly transform into the malevolent face of someone.,Someone\nanetv_2DvMNOas7jY,10802,The person continues riding down the hill with the camera capturing scenery and cars as well as placing his hand on the boarder in front of him. In the end he,passes by the boarder and makes a stop by the car.,performs tricks with another man behind him going into a circle.,continues to snowboard and eventually eats the water and sits on the bike.,takes his turn and goes back to throw his hands up as well as one turning the tire from under the boot.,places the tiles on the wall as well as speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The person continues riding down the hill with the camera capturing scenery and cars as well as placing his hand on the boarder in front of him.,In the end he\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15508,Someone autographs a picture of himself. Someone,looks up as he hears a strange voice.,appears to open the bottle's panel.,jumps out clinging to the grass.,sets down the keys.,,gold1-orig,pos,unl,unl,pos,n/a,Someone autographs a picture of himself.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15506,\"He takes someone's hand. Her eyes full of tears, she\",gives him a faint smile.,gazes down a spiral staircase and peers down the spiral.,\"presses her lips together, then releases her hand and her long dark hair.\",lowers her disappointed gaze and slumps back.,looks down by someone.,gold0-orig,pos,unl,unl,unl,unl,He takes someone's hand.,\"Her eyes full of tears, she\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92847,15507,\"Her eyes full of tears, she gives him a faint smile. Someone\",autographs a picture of himself.,ends with her beaming beaming at the audience.,hands someone back a lunch tray.,looks confident and rather focused.,is on the floor next to someone.,gold1-reannot,pos,unl,pos,pos,pos,\"Her eyes full of tears, she gives him a faint smile.\",Someone\nanetv_2qcdjyT7nDY,3635,Four girls are lifted and they hold one girl in between them laying down. Ladies,hold ladies who hold and shake their pom poms.,are doing a way while the boys hug and drink.,watch from the rope and continue landing on the bottom.,climbs out of the water as they go to her.,grapple for the glass puck and positioned herself.,gold0-orig,pos,unl,unl,unl,unl,Four girls are lifted and they hold one girl in between them laying down.,Ladies\nanetv_2qcdjyT7nDY,3638,We see ending credits and still shots. A quote and website,appears on the screen.,appear on the heart of a screen.,appear on the instruction screen.,appears at the end of the screen.,,gold1-orig,pos,unl,unl,unl,n/a,We see ending credits and still shots.,A quote and website\nanetv_2qcdjyT7nDY,3637,The team finishes and hugs. We,see ending credits and still shots.,see some caution games of soccer.,see the title screen clapping.,see people playing dance on the large table.,spectators celebrate his score.,gold0-reannot,pos,unl,unl,unl,pos,The team finishes and hugs.,We\nanetv_2qcdjyT7nDY,3636,Ladies hold ladies who hold and shake their pom poms. Four ladies,are lifted and hold two other ladies then a seventh lady.,step apart and add a set of pumps.,kneel before a lady in stage.,\"walk look behind the men, tango, then stand on the machines and clap and twirl.\",on the stage again put their steppers afterwards.,gold0-reannot,pos,unl,unl,unl,unl,Ladies hold ladies who hold and shake their pom poms.,Four ladies\nanetv_smfBAiFujmE,5350,A person is seen sitting in the water with a pair of skis attached to his feet. The man then,gets up on the skis and rides along the water behind a boat.,begins spinning his body over the metal as the man sits down and speaks to the camera pointing to the machine.,walks back and fourth skiing through the water.,begins moving the pole up and down as well as holding it over and moving it.,shows the sides of the board while speaking underwater.,gold0-orig,pos,unl,unl,unl,unl,A person is seen sitting in the water with a pair of skis attached to his feet.,The man then\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19027,\"Someone, followed by the still - silent people, comes in. Someone\",\"is standing in the doorway to his private office, taking a drink from a bottle.\",\"glances up at someone, who points to a line outside the classroom barriers.\",stares tearfully at someone.,\"stands on the stairs, clutching her arms.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone, followed by the still - silent people, comes in.\",Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19028,\"Someone is standing in the doorway to his private office, taking a drink from a bottle. He\",motions to someone to join him.,stands up and closes his fingers.,boys stare at him.,is sitting in a booth in the rear - view mirror.,joins someone and gives him a knowing look.,gold1-orig,pos,unl,unl,unl,pos,\"Someone is standing in the doorway to his private office, taking a drink from a bottle.\",He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19031,They all have their passbooks out. Someone,hurries into his office where someone is waiting for him.,sees someone through the window.,measures someone on her drawing.,rushes over to help and stares at them.,\"nods, ending the shot.\",gold0-orig,pos,unl,unl,unl,unl,They all have their passbooks out.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19023,\"Someone runs off up the street, toward the Building and Loan. They\",\"are simply - dressed people, to whom their savings are a matter of life and death.\",are stacked against him.,run out of rooms fighting.,walks him to the upstairs door.,\"look over his arm, then drop to see him pick out like a sword.\",gold0-orig,unl,unl,unl,unl,unl,\"Someone runs off up the street, toward the Building and Loan.\",They\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19019,Panic is in the air. Attendants,are trying to close down.,\"impatiently, she takes a low pan.\",surround the gates of the urns and catapult to a hut onto the track.,\"continues coming towards him, someone does, deeper into the forest.\",cross a watery river.,gold1-orig,pos,unl,unl,pos,pos,Panic is in the air.,Attendants\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19021,Several people come running past the cab. Someone,gets out of the cab and looks down the street.,sits and presses the phone to her room.,\", someone passing heavy keys.\",drives on stage to watch someone.,,gold0-orig,pos,unl,unl,unl,n/a,Several people come running past the cab.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19024,\"The people look at him silently, half shamefaced, but grimly determined on their rights. An iron grill\",blocks the street entrance to the building and loan.,spills down the slope.,is overturned in nearer along the canal.,hangs in the mirrored window.,is pushed up along a jack - o - o - lantern as a very hooded window stretches behind the man alone.,gold0-orig,pos,unl,unl,unl,unl,\"The people look at him silently, half shamefaced, but grimly determined on their rights.\",An iron grill\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19026,\"He quickly unlocks the grill door and pushes it open. Followed by the crowd, someone\",runs upstairs and into the outer offices of the building and loan.,returns with him.,finds a man asleep on the couch.,takes his cell phone from his ear.,,gold1-orig,pos,unl,unl,unl,n/a,He quickly unlocks the grill door and pushes it open.,\"Followed by the crowd, someone\"\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19029,He motions to someone to join him. Someone,turns back cheerfully to the crowd.,\"jerks his thumb at the snitch, then quickly glances back at someone.\",marches toward the delightedly keeper.,drops dead in his eye.,looks startled by her friends broadly.,gold1-reannot,pos,unl,unl,unl,unl,He motions to someone to join him.,Someone\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19020,Attendants are trying to close down. Several people,come running past the cab.,are seen sitting on a machine in shorts and pulling an exercise octave.,begin to blow their spears.,are to various leaves.,are still jumping out of the window now.,gold0-reannot,pos,unl,unl,unl,unl,Attendants are trying to close down.,Several people\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19030,Someone turns back cheerfully to the crowd. The people,ignore someone and remain standing in front of the teller's window.,walk into the living room.,are stopped to stare at someone as he pins the camera on someone's head.,exit someone's tent.,depart with the audience of jowly clap and robes.,gold1-reannot,pos,unl,unl,unl,unl,Someone turns back cheerfully to the crowd.,The people\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19032,Someone hurries into his office where someone is waiting for him. He,points to someone's office.,pushes him off the sofa as he sits by a car.,abruptly stops when he sees and grabs his folded arms.,stops and turns as someone steps outside.,follows after someone as they proceed down the hall.,gold1-reannot,pos,unl,unl,unl,pos,Someone hurries into his office where someone is waiting for him.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54646,19025,An iron grill blocks the street entrance to the Building and Loan. A crowd of men and women,are waiting around the grill.,stand holding a rotunda at her side.,\"are parked behind, watching him.\",stand and crowd to a crosswalk.,,gold0-reannot,pos,unl,pos,pos,n/a,An iron grill blocks the street entrance to the Building and Loan.,A crowd of men and women\nlsmdc1017_Bad_Santa-7874,8198,\"A cop spots him and takes a shot, which blows the trunk of the wall. The statues in the nativity stable scene\",\"are smashed, which gets in the way.\",gives him a change and wipe the mud and the road.,are knocked to the ground by the look of white they were torn away.,are removed from the ground.,,gold0-orig,pos,unl,pos,pos,n/a,\"A cop spots him and takes a shot, which blows the trunk of the wall.\",The statues in the nativity stable scene\nlsmdc1017_Bad_Santa-7874,8196,Someone runs holding the pink elephant which gets its head blowed off. He,hides around a corner and catches his breath.,deflects the white rounds.,\"looks around, trying not to look pleased.\",finds a penguin sitting on a handwritten patch and faces his companion.,puts some notes in his green hand and tapes his beiber.,gold0-orig,pos,unl,unl,unl,unl,Someone runs holding the pink elephant which gets its head blowed off.,He\nlsmdc1017_Bad_Santa-7874,8209,\"Still clutching the elephant, someone crawls towards someone's front door. Someone reaches the front step, but he\",is too badly injured to go any further.,pulls out one silver bin.,does not take the flagpole from someone's hand.,walks out through our view.,helps and the boy clings onto him.,gold0-orig,pos,unl,unl,unl,unl,\"Still clutching the elephant, someone crawls towards someone's front door.\",\"Someone reaches the front step, but he\"\nlsmdc1017_Bad_Santa-7874,8210,\"Someone reaches the front step, but he is too badly injured to go any further. He\",collapses and lies motionless.,is clearing the driveway in the bright sunshine.,\"steps onward, taking a breath.\",walks up to an abandoned stairway.,reaches back and removes his hat.,gold0-orig,pos,unl,unl,unl,unl,\"Someone reaches the front step, but he is too badly injured to go any further.\",He\nlsmdc1017_Bad_Santa-7874,8211,He collapses and lies motionless. The posse of cops,\"surround him, keeping him covered as the screen fades slowly.\",kicks the men and then back.,haul someone into the backseat someone nearly elbows him around.,stare as several drawings of jagged boards surrounds the screen.,,gold0-orig,pos,unl,unl,unl,n/a,He collapses and lies motionless.,The posse of cops\nlsmdc1017_Bad_Santa-7874,8203,He glances back at the pursuing cruisers. The bmw,\"rounds the corner onto someone's street, raising smoke from its tires in the process.\",speeds to the driver's side of the highway and explodes.,mustang drive through intense traffic.,drives off of the battlefield and up at his motorcycle.,\"pulls up, revealing someone holding an accordion on his lap.\",gold0-orig,unl,unl,unl,unl,unl,He glances back at the pursuing cruisers.,The bmw\nlsmdc1017_Bad_Santa-7874,8197,He hides around a corner and catches his breath. A cop,\"spots him and takes a shot, which blows the trunk of the wall.\",gives them a kiss as the cop wraps his arm around him and smirks.,\"leads someone up a stairway which leads by a man in armor, hauling him into the truck.\",throws him a yellow ball.,,gold0-orig,pos,unl,unl,unl,n/a,He hides around a corner and catches his breath.,A cop\nlsmdc1017_Bad_Santa-7874,8204,\"The bmw rounds the corner onto someone's street, raising smoke from its tires in the process. It\",races on down the street with the cruisers in hot pursuit.,turns and blocks the fire.,can tell what she is saying or just keeps looking for him.,see someone down the road in a dark neighborhood.,\"quickly springs free, moving overturns.\",gold0-orig,pos,unl,unl,unl,unl,\"The bmw rounds the corner onto someone's street, raising smoke from its tires in the process.\",It\nlsmdc1017_Bad_Santa-7874,8208,Some children at a neighboring house come out to see what the commotion is all about. They,watch as the cops cut someone down in a hail of hot blood.,shut the bedroom door.,in the white room is preparing to complete the routine by lifting him up and throwing him down from the side of the table.,coach while seated at their restaurant seller has questions their students at the student team.,swirl the babies hose around the people.,gold0-orig,pos,unl,unl,unl,unl,Some children at a neighboring house come out to see what the commotion is all about.,They\nlsmdc1017_Bad_Santa-7874,8207,\"Unable to get the car door open, he scrambles out of the driver's window clutching the pink elephant. Some children at a neighboring house\",come out to see what the commotion is all about.,\", someone stands at the top of the hill.\",holds a pair of lights holding a chicken piece.,are waiting on the other side of the cab landing.,,gold0-orig,pos,unl,unl,pos,n/a,\"Unable to get the car door open, he scrambles out of the driver's window clutching the pink elephant.\",Some children at a neighboring house\nlsmdc1017_Bad_Santa-7874,8199,\"The statues in the nativity stable scene are smashed, which gets in the way. Later, he\",\"jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw.\",walks to the gateway house and leaves the tree to a second school.,\"removes goggles, mask over his stainless steel stove, and uses a plastic bag for a fully fitted long.\",\"lingers by a victorian house with thick steel supports, wearing a winter coat and a khaki jacket.\",enters a narrow shallows as he passes a large group of dead bodies and big stacks of milk.,gold1-orig,unl,unl,unl,unl,unl,\"The statues in the nativity stable scene are smashed, which gets in the way.\",\"Later, he\"\nlsmdc1017_Bad_Santa-7874,8202,\"The cop shattered the bmw's back window. someone drives on, and the cops speed after him. He\",glances back at the pursuing cruisers.,\"stares at the explosion, at a slush - lined street with lush flowering shrubs.\",dashes over to the boy who's trying to get someone from someone.,hops toward the skateboard and pins him on the pavement.,,gold0-orig,pos,unl,unl,unl,n/a,\"The cop shattered the bmw's back window. someone drives on, and the cops speed after him.\",He\nlsmdc1017_Bad_Santa-7874,8206,\"Someone pulls up outside someone's house. Unable to get the car door open, he\",scrambles out of the driver's window clutching the pink elephant.,runs up the corridor and stops.,strolls down a walkway past the cross shooting pool.,stumbles stands over the bush and shuts the doors behind him.,peers taking his scrap of papers with some men.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls up outside someone's house.,\"Unable to get the car door open, he\"\nlsmdc1017_Bad_Santa-7874,8205,It races on down the street with the cruisers in hot pursuit. Someone,pulls up outside someone's house.,hangs up his rifle.,steps up and rejoins her.,stops waiting for her.,glide along the sides of the plane's barrel until it flies away.,gold0-reannot,pos,unl,unl,unl,unl,It races on down the street with the cruisers in hot pursuit.,Someone\nlsmdc1017_Bad_Santa-7874,8201,He starts it up and speeds off. A police reaches out his way and the bmw,smashes the door off a squad car as someone makes his escape.,grinds down the deck.,is stuck on under the windshield.,drives away after him.,trundles down the street in front of a skyscraper.,gold0-reannot,pos,unl,unl,pos,pos,He starts it up and speeds off.,A police reaches out his way and the bmw\nlsmdc1017_Bad_Santa-7874,8200,\"Later, he jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw. He\",starts it up and speeds off.,opens the front door and steps inside.,\"watches tensely through the doorway, then walks over to a vanity chair adjust a register.\",gets out of the car.,sees someone watching the fence intently.,gold0-reannot,pos,unl,unl,unl,unl,\"Later, he jumps out of the store's backdoor, and, still clutching the toy elephant, leaps into the bmw.\",He\nanetv_FbvTQ1-FCag,13883,The dart board that they are shooting at is shown. People,are celebrating and clapping hands.,are in the court playing cassettes.,are hiding behind the wall talking.,are interacting around the alley.,ride down a hill on the horses and time at a very fast pace.,gold0-reannot,pos,unl,unl,unl,unl,The dart board that they are shooting at is shown.,People\nanetv_Ld2a5ogu9k8,298,They put their socks on their feet. They then,put their shoes on their feet.,head a wrapped in small tubs.,slide off the monkey.,put brush on their toe nails.,put the other shoe on.,gold0-orig,pos,unl,unl,unl,pos,They put their socks on their feet.,They then\nanetv_Ld2a5ogu9k8,10069,Woman is siting in a bed and its putting white socks. woman,grab the shoes from the floor and wear them.,is in a red shirt doing sit ups.,is sitting in front of a tattoo chair with a laptop in her lap.,is using a small red saddle to do a flip.,,gold0-orig,pos,unl,unl,unl,n/a,Woman is siting in a bed and its putting white socks.,woman\nanetv_Ld2a5ogu9k8,297,A person is sitting on a bed. They,put their socks on their feet.,switch from people dancing stacks on top a deep carpet.,is shown knitting various faded photographs.,are playing a bowl of sandy on a table.,get the lotion into one of the girls and put it in the sink.,gold0-orig,pos,unl,unl,unl,unl,A person is sitting on a bed.,They\nanetv_Ld2a5ogu9k8,10070,Woman grab the shoes from the floor and wear them. when the shoes are in the feet the camera,make a zoom on them.,puts them all over a ballerina.,begins to look on from the directions.,goes out of the pink front.,removes stains on the shoe.,gold1-orig,pos,unl,unl,unl,unl,Woman grab the shoes from the floor and wear them.,when the shoes are in the feet the camera\nlsmdc3068_THE_BIG_YEAR-3616,10958,\"Later, he hurries outside. A cab\",pulls to a stop.,drives to a window.,stops at a corner.,pulls up at the intersection.,arrives as he leaps in the mustang.,gold0-orig,pos,unl,pos,pos,pos,\"Later, he hurries outside.\",A cab\nlsmdc3068_THE_BIG_YEAR-3616,10959,A cab pulls to a stop. He,\"loads his bags into the backseat, then turns to his son's apartment and waves good - bye.\",points as he vaults a police bike over.,holds up all computers.,holds up a bureau and leafs over it.,\"approaches someone, who walks over and gets out, his clothes shined.\",gold0-orig,pos,unl,unl,unl,pos,A cab pulls to a stop.,He\nlsmdc3068_THE_BIG_YEAR-3616,10956,She watches lovingly from the background. Someone,notices her and smiles.,looks at someone who looks up to reach behind someone.,moves at the same side and offers her hand.,runs in the bathroom.,is still staring at the road behind her.,gold0-orig,pos,unl,unl,pos,pos,She watches lovingly from the background.,Someone\nlsmdc3068_THE_BIG_YEAR-3616,10955,\"Stepping inside, someone hugs him. The white haired grandfather\",gives a touched look.,hurries briskly toward the door.,rises out of the car and looks around.,looks at the surveillance camera cruising.,is sitting at his desk.,gold0-reannot,pos,unl,unl,unl,pos,\"Stepping inside, someone hugs him.\",The white haired grandfather\nlsmdc3068_THE_BIG_YEAR-3616,10957,Someone notices her and smiles. He,jiggles little someone's hips like a dancer.,snags her dursleys jacket.,glances down at her and tries to hoist her shoulders as she steps toward someone and smiles at the girls.,looks off to the side of the hotel and can see that he looks and dances.,ends the call but does n't look with her.,gold1-reannot,pos,unl,unl,unl,unl,Someone notices her and smiles.,He\nlsmdc3036_IN_TIME-15600,16156,\"On her left arm, she wears an evening glove with its fingers cut off. Gazing at herself in a small mirror, she\",adjusts her straight auburn hair.,\"picks up a duffel bag, and takes a large plastic bag from her bag.\",faces a mirror and points to the light.,brings out her smoky vodka.,,gold0-orig,pos,pos,pos,pos,n/a,\"On her left arm, she wears an evening glove with its fingers cut off.\",\"Gazing at herself in a small mirror, she\"\nlsmdc3036_IN_TIME-15600,16150,\"With his gun at her back, he shuffles her past a timed out woman lying in the street. Someone\",follows someone up a fire escape to a balcony.,\"appears, sits on the grass, talking to someone.\",writhes in air as he lowers the pool grate in front of someone.,comes along the compound and follows a metal - ordered trolley across the steps.,comes out on her face and races out of the bathroom.,gold0-orig,pos,unl,unl,unl,unl,\"With his gun at her back, he shuffles her past a timed out woman lying in the street.\",Someone\nlsmdc3036_IN_TIME-15600,16180,\"Now, someone holds someone's arm as he escorts her down a sidewalk. She\",holds his gaze with solemn eyes.,heads up a spiral staircase.,walks over to someone and shambles back to the back.,takes off a blue bed sweatshirt and places it on his belly.,leaps out of its cop truck and heads down the same path.,gold1-orig,pos,unl,unl,unl,unl,\"Now, someone holds someone's arm as he escorts her down a sidewalk.\",She\nlsmdc3036_IN_TIME-15600,16163,He sets the gun on a table. Someone,sits on the edge of the couch.,leads the girl into a glass of water.,example friends bounce around.,places the colt's needle on top of the stack.,brings a few more sandwiches to the first class window.,gold0-orig,pos,unl,unl,unl,unl,He sets the gun on a table.,Someone\nlsmdc3036_IN_TIME-15600,16173,Someone gives a surprised look. He,grabs two guns off the table.,\"pockets his walkie, snapping his fingers and shoots a window as he scans the area.\",steps toward the door and leans close.,comes outside.,rests his head on her shoulder.,gold1-orig,pos,unl,pos,pos,pos,Someone gives a surprised look.,He\nlsmdc3036_IN_TIME-15600,16149,The blond timekeeper traces the call. He,returns the phone to someone.,smashes through the window window just to where their pursuers fall.,kicks the bag shut.,watches from the window as she anxiously reaches out.,points to the door.,gold0-orig,pos,unl,unl,pos,pos,The blond timekeeper traces the call.,He\nlsmdc3036_IN_TIME-15600,16143,\"As a timekeeper's car passes, someone transfers half his time to someone. They\",\"watch their own clocks, then release each other.\",see a car escorting the car above a white ditch.,stand up round their necks.,stare against the window again.,\"move rapidly, trying to stay at the end in way.\",gold1-orig,pos,unl,unl,unl,unl,\"As a timekeeper's car passes, someone transfers half his time to someone.\",They\nlsmdc3036_IN_TIME-15600,16178,\"The neon letters on the sign flicker, then glow steadily. Someone\",lowers his gaze and clenches his jaw.,\"looks up as someone pounds the bathroom door again, then a second movie.\",retreats through the trees and water covers his boots.,drives down a suburban street down the street.,clips trees and the trees with a bunch of plants on them.,gold0-orig,pos,unl,unl,unl,unl,\"The neon letters on the sign flicker, then glow steadily.\",Someone\nlsmdc3036_IN_TIME-15600,16118,\"It backs up quickly and lurches to a halt. At the wheel, someone\",gazes down at the wrecked roadster.,moves to the window and starts the car.,steps through a doorway and heads inside.,is dragged onto the floor.,runs up a staircase.,gold0-orig,pos,unl,unl,unl,unl,It backs up quickly and lurches to a halt.,\"At the wheel, someone\"\nlsmdc3036_IN_TIME-15600,16108,Someone leans forward and protectively pushes someone's head down. The car,careens off the road and tumbles end over end into the basin.,arrives with the dealer outside.,\"parks up close, stuck up behind the driver's seat.\",comes into rest regions it.,\"pulls away, followed by a framed elevator filled with plastic - tinted windows.\",gold1-orig,pos,unl,unl,unl,unl,Someone leans forward and protectively pushes someone's head down.,The car\nlsmdc3036_IN_TIME-15600,16158,\"In the adjacent room, someone puts on a long - sleeved shirt. Later, he\",gazes out a window at the mission's neon sign.,passes the busty woman to a woman in a dark suit.,lights an match while someone scans about an austin park area.,sets three o'clock on the stove and takes a juice out of his cup.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the adjacent room, someone puts on a long - sleeved shirt.\",\"Later, he\"\nlsmdc3036_IN_TIME-15600,16145,Someone gives a nod and someone answers. Someone,holds out the phone.,struggles to come out of his front door.,shoves his weapon downward.,\"stares back, her jaw hanging slack as she looks at the doorway.\",reads the note then takes it in both hands.,gold1-orig,pos,unl,unl,pos,pos,Someone gives a nod and someone answers.,Someone\nlsmdc3036_IN_TIME-15600,16177,As the Mission's door opens and a man emerges. The neon letters on the sign,\"flicker, then glow steadily.\",reveals a green light stole from a brown cloth.,\"reads, if that is the last time.\",bears a new snug - me - starting sign.,depicts another sumo warrior.,gold0-orig,pos,unl,unl,unl,unl,As the Mission's door opens and a man emerges.,The neon letters on the sign\nlsmdc3036_IN_TIME-15600,16157,\"Gazing at herself in a small mirror, she adjusts her straight auburn hair. In the adjacent room, someone\",puts on a long - sleeved shirt.,flips open a laptop and lights a laptop.,collapses taking a seat as the bar line groping for the office.,scratches his foot down a crowded chart.,and someone enter the home empty room.,gold0-orig,pos,unl,unl,unl,unl,\"Gazing at herself in a small mirror, she adjusts her straight auburn hair.\",\"In the adjacent room, someone\"\nlsmdc3036_IN_TIME-15600,16121,\"Someone, someone, and their blond colleague surround the mangled Roadster. Someone\",perches serenely on the roadster's hood.,sits on a sign on deck.,laughs as she goes out.,lowers the shapeless fish.,\"scrutinizes someone, who suppresses a smile.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, someone, and their blond colleague surround the mangled Roadster.\",Someone\nlsmdc3036_IN_TIME-15600,16132,\"Someone paces, then faces someone. Brushing her hair back, he\",finds a sizable diamond stud on her earlobe.,steps closer and presses the water to his face.,looks aside as someone gets a immersion chip.,smirks as she extends her hand to a bald mannequin.,screws his eyes on a robotic area.,gold0-orig,pos,unl,unl,unl,unl,\"Someone paces, then faces someone.\",\"Brushing her hair back, he\"\nlsmdc3036_IN_TIME-15600,16115,He grabs her forearm and gives her a few minutes. She,flings his hand away.,tosses her hat away.,slams the door and walks inside.,drops the jug of water and jumps over the toilet.,stares up at the sky.,gold0-orig,pos,unl,unl,unl,unl,He grabs her forearm and gives her a few minutes.,She\nlsmdc3036_IN_TIME-15600,16123,\"Now, someone and someone run hand in hand through the ghetto. Reaching someone's apartment complex, they\",dash up the steps to his unit.,open the clock inside.,approach a lot and part simply by the equipment.,find the joe on someone's phone.,step into a corridor and take their seats next to a dark screen.,gold0-orig,pos,unl,unl,unl,pos,\"Now, someone and someone run hand in hand through the ghetto.\",\"Reaching someone's apartment complex, they\"\nlsmdc3036_IN_TIME-15600,16164,Someone sits on the edge of the couch. She,gazes up at him.,backs up and stumbles first.,sits down at the piano.,grasps someone's leg and kisses his belly.,\"looks at him, crestfallen.\",gold0-orig,pos,unl,unl,pos,pos,Someone sits on the edge of the couch.,She\nlsmdc3036_IN_TIME-15600,16130,As someone beats the screen door. Someone,notes two and a half minutes left on her clock.,swings on on the stilts.,runs his stick through the open door but does n't catch his air.,opens the bar and laughs.,coasts over to the body.,gold1-orig,pos,unl,unl,unl,pos,As someone beats the screen door.,Someone\nlsmdc3036_IN_TIME-15600,16111,\"Someone's head twitches groggily. In the Roadster, someone\",stirs weakly then wakes.,gets to his feet and hauls someone on his chest.,bursts onto someone's car steps.,forces his way beneath the jammed mask.,groggily wakes up and pretends to pull back a blanket.,gold0-orig,pos,unl,unl,unl,pos,Someone's head twitches groggily.,\"In the Roadster, someone\"\nlsmdc3036_IN_TIME-15600,16129,\"She withdraws into the apartment, shutting the doors. As someone\",beats the screen door.,\"trudges past, men up.\",rolls over to find another white in the drawers on the floor.,\"lingers, unlocking the door.\",\"makes sure, doors are open behind her.\",gold1-orig,pos,unl,unl,pos,pos,\"She withdraws into the apartment, shutting the doors.\",As someone\nlsmdc3036_IN_TIME-15600,16154,\"Someone drinks from the tap, wipes his mouth, then shuts off the faucet. Now, in the bathroom, someone\",zips herself into a modest short - sleeved dress.,finds him fully leg artillery.,opens her eyes and looks at his replacement.,\"stands at a toilet stall, opens the door door but finds only the usual six of them.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone drinks from the tap, wipes his mouth, then shuts off the faucet.\",\"Now, in the bathroom, someone\"\nlsmdc3036_IN_TIME-15600,16140,He notices less than a minute on someone's clock. Someone,sticks his hand through the gate.,peers after his fellow drones.,walks from a table to the entrance to the crafts front the piano.,\"sits alone in bed, with her feet - up with her new strap.\",takes a deep breath.,gold0-orig,unl,unl,unl,unl,pos,He notices less than a minute on someone's clock.,Someone\nlsmdc3036_IN_TIME-15600,16124,\"Reaching someone's apartment complex, they dash up the steps to his unit. Someone\",stands by as someone raises a fist to a screen door fitted with protective iron bars.,takes them a moment.,\"'s dark alley is parked near the station garage, lights are out on the delegates, recorded conversation as views run outside.\",hops down onto the curved deck and perches on the edge of the platform.,,gold0-orig,pos,unl,unl,pos,n/a,\"Reaching someone's apartment complex, they dash up the steps to his unit.\",Someone\nlsmdc3036_IN_TIME-15600,16125,Someone stands by as someone raises a fist to a screen door fitted with protective iron bars. Someone's clock,shows three and a half minutes left.,\"plays in an upright courtyard and the majority in the pub collide, cringing and shaking.\",stands above the mast pile.,is taken on a clock hill.,,gold0-orig,pos,unl,unl,unl,n/a,Someone stands by as someone raises a fist to a screen door fitted with protective iron bars.,Someone's clock\nlsmdc3036_IN_TIME-15600,16131,Someone notes two and a half minutes left on her clock. Someone,\"paces, then faces someone.\",bangs her body she beckons him to follow.,takes her daughter's hands and releases him.,puts a cigarette inside her mouth.,steps forward with a deep smile.,gold1-orig,pos,unl,pos,pos,pos,Someone notes two and a half minutes left on her clock.,Someone\nlsmdc3036_IN_TIME-15600,16168,\"She gives him an uneasy look, then extends her arm. They\",clasp each other's wrists.,takes a seat in the coffee table.,are in the living room across the table.,hug and races out of the room.,,gold0-orig,pos,pos,pos,pos,n/a,\"She gives him an uneasy look, then extends her arm.\",They\nlsmdc3036_IN_TIME-15600,16174,He grabs two guns off the table. Someone,stares off with woeful eyes.,stands with someone in his arms.,restrains people as they warm up.,looks down at someone.,sits down with someone.,gold1-orig,pos,unl,unl,pos,pos,He grabs two guns off the table.,Someone\nlsmdc3036_IN_TIME-15600,16152,\"Opening a window, he climbs into the building where he lived with his mother. Someone\",climbs in after him.,hurries down an aisle between forming stacks of tables.,walks out of the ward then stops.,looks up at him as he reaches the vessel in the dwarf's ranks.,,gold0-orig,pos,unl,unl,unl,n/a,\"Opening a window, he climbs into the building where he lived with his mother.\",Someone\nlsmdc3036_IN_TIME-15600,16147,\"Someone gazes at a building's neon sign which reads Mission Out of Time. Shaking his head, someone\",moves away from someone.,discovers someone come out of the bedroom.,gives his son a grim look as the writer bounds off.,enters a living room.,,gold0-orig,pos,unl,unl,pos,n/a,Someone gazes at a building's neon sign which reads Mission Out of Time.,\"Shaking his head, someone\"\nlsmdc3036_IN_TIME-15600,16107,It blows out the car's tires. Someone,leans forward and protectively pushes someone's head down.,sinks to the ground.,wears people's constructed beds.,sets his cap and hairspray case.,stares down at him.,gold0-orig,pos,unl,unl,unl,pos,It blows out the car's tires.,Someone\nlsmdc3036_IN_TIME-15600,16119,\"At the wheel, someone gazes down at the wrecked Roadster. Later, he\",raises a scanner by his seat and sticks his wrist through it.,arrives at a hummer's corrugated high ceiling.,looks back to a drawing of burning fires on the water polo.,tosses on a gate handle.,follows her into a lush forest.,gold1-orig,pos,unl,unl,unl,unl,\"At the wheel, someone gazes down at the wrecked Roadster.\",\"Later, he\"\nlsmdc3036_IN_TIME-15600,16139,\"From the other side, a woman trains a shotgun on the pair while a man with long bangs examines the earrings. He\",notices less than a minute on someone's clock.,checks more text from back up as the shots take place.,\"sits still, staring off in horror.\",lifts up his jacket.,steps up to the overhead mirror and lets the gun drop.,gold1-orig,pos,unl,unl,pos,pos,\"From the other side, a woman trains a shotgun on the pair while a man with long bangs examines the earrings.\",He\nlsmdc3036_IN_TIME-15600,16155,\"Now, in the bathroom, someone zips herself into a modest short - sleeved dress. On her left arm, she\",wears an evening glove with its fingers cut off.,sets off a few plastic bags and flops on her bed.,sees two mice lying climbing a bed.,looks up at someone.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, in the bathroom, someone zips herself into a modest short - sleeved dress.\",\"On her left arm, she\"\nlsmdc3036_IN_TIME-15600,16138,\"It rises, revealing an additional grated gate behind it. From the other side, a woman\",trains a shotgun on the pair while a man with long bangs examines the earrings.,approaches the cabinet canyon.,slings cellophane over her shoulder.,spins around a few three.,steps out of someone's apartment.,gold0-orig,pos,unl,unl,unl,pos,\"It rises, revealing an additional grated gate behind it.\",\"From the other side, a woman\"\nlsmdc3036_IN_TIME-15600,16105,\"At the wheel, someone looks up at a posted video camera trained on the road. As he\",turns his head to stare at it.,slides to a stop.,\"gets out, looking back.\",skids to ride pass.,\"climbs in, someone lifts his hand.\",gold1-orig,pos,unl,unl,unl,unl,\"At the wheel, someone looks up at a posted video camera trained on the road.\",As he\nlsmdc3036_IN_TIME-15600,16117,Someone takes someone's gloved hand and they run off down the basin. It,backs up quickly and lurches to a halt.,stops and hits one of the chairs to the side holding the bride.,ties a strand of thread up to her thigh.,'s surrounded by bare drovers as someone arrives.,,gold1-orig,pos,unl,unl,pos,n/a,Someone takes someone's gloved hand and they run off down the basin.,It\nlsmdc3036_IN_TIME-15600,16142,\"The broker transfers the time to him, then yanks his hand back. Someone\",clamps a hand over someone's mouth.,pulls the shower cap out desperately as he walks down the street to the garage.,\"pours him a drink, then gives the levitates a shake.\",\"moves his back to the house, mystified.\",,gold1-orig,pos,unl,unl,unl,n/a,\"The broker transfers the time to him, then yanks his hand back.\",Someone\nlsmdc3036_IN_TIME-15600,16128,Someone averts her tearful gaze. She,\"withdraws into the apartment, shutting the doors.\",breaks off a grin.,puts the cellphone back in her purse.,\"nods, then slaps the table.\",looks up at someone.,gold0-orig,pos,unl,pos,pos,pos,Someone averts her tearful gaze.,She\nlsmdc3036_IN_TIME-15600,16170,Someone looks at someone's clock which counts down from seven seconds. He,gently twists her arm until his hand is on top.,\"turns toward someone, who walks towards someone.\",doctors appear on the phone and watch.,shifts his troubled gaze and taps a large supporting staircase.,turns to someone and slides out of his stall.,gold1-orig,pos,unl,unl,unl,pos,Someone looks at someone's clock which counts down from seven seconds.,He\nlsmdc3036_IN_TIME-15600,16141,Someone sticks his hand through the gate. The broker,\"transfers the time to him, then yanks his hand back.\",manages to step at it.,fires a circle and intercepts another outside.,look at the sword.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sticks his hand through the gate.,The broker\nlsmdc3036_IN_TIME-15600,16104,\"She pulls up her long glove. At the wheel, someone\",looks up at a posted video camera trained on the road.,takes the bike wheel and slips inside.,sees the fbi officers to the hangar.,takes out her cellphone.,,gold1-orig,pos,unl,pos,pos,n/a,She pulls up her long glove.,\"At the wheel, someone\"\nlsmdc3036_IN_TIME-15600,16120,\"His body clock indicates a transfer of time into his body and he leaves the car. Someone, someone, and their blond colleague\",surround the mangled roadster.,eat in a table next.,find on the porch by the roadside.,\"smile at the reflection, now slightly shakes in his uncertain eyes.\",,gold1-orig,pos,unl,unl,unl,n/a,His body clock indicates a transfer of time into his body and he leaves the car.,\"Someone, someone, and their blond colleague\"\nlsmdc3036_IN_TIME-15600,16165,She gazes up at him. Someone,sits on the couch and faces her.,looks a little startled and waits for his answer.,looks at the new york skyline.,looks over and watches her in the mirror.,\"sits up, his chest heaving.\",gold0-orig,pos,unl,unl,unl,pos,She gazes up at him.,Someone\nlsmdc3036_IN_TIME-15600,16109,A young thug checks her. Someone,pushes past his men and grabs someone's arm.,blinks in amazement and then gets up.,bumps someone's hand.,runs up as someone plows into the limo.,,gold0-orig,pos,unl,unl,unl,n/a,A young thug checks her.,Someone\nlsmdc3036_IN_TIME-15600,16153,Someone climbs in after him. He,turns on a light over a sink and runs water over his bloody knuckles.,swings down from the carriage and makes a run towards someone toward the center of the storm.,skates up the alley towards the second floor.,crosses the room and someone kicks his legs.,leaves as he makes his way back down the cliff.,gold1-reannot,pos,unl,unl,unl,unl,Someone climbs in after him.,He\nlsmdc3036_IN_TIME-15600,16144,They pass a Weis Time Lenders. He,guides her to a bank of pay phones and picks up a receiver.,unbuckles his seat belt and folds all of his arms for straightening.,\"drops his hands, lets it spring up as he sits.\",passes in his driveway as he drives past l - o - stopping.,\"walks through the woods, giving someone the key.\",gold0-reannot,pos,unl,unl,unl,unl,They pass a Weis Time Lenders.,He\nlsmdc3036_IN_TIME-15600,16169,They clasp each other's wrists. Someone,looks at someone's clock which counts down from seven seconds.,gently kisses the boy's foot tenderly.,\"studies him and someone wraps a hand on her forearm, then moves downwards.\",wears a proud stare.,dabs at his mustache.,gold0-reannot,pos,unl,pos,pos,pos,They clasp each other's wrists.,Someone\nlsmdc3036_IN_TIME-15600,16126,The inner door opens and someone's wife stares out. She vacantly,opens the screen door.,heads toward the well - toting bus driver.,holds a leafless saw up through a window before it crashes down.,shifts her weight then bows her head.,fixes a bandage over the father's gaunt face.,gold0-reannot,pos,unl,unl,pos,pos,The inner door opens and someone's wife stares out.,She vacantly\nlsmdc3036_IN_TIME-15600,16133,\"Brushing her hair back, he finds a sizable diamond stud on her earlobe. He\",grabs her hand and leads her down the steps.,taps his crotch on the belt and tweaks her ankle.,pats it on his shoulder and then takes off.,eyes down to the clock chatting by his childhood hobbits.,aims her dart at him.,gold0-reannot,pos,unl,unl,unl,unl,\"Brushing her hair back, he finds a sizable diamond stud on her earlobe.\",He\nlsmdc3036_IN_TIME-15600,16167,\"As he rolls up his sleeve, someone puts her drink on the floor. She\",\"gives him an uneasy look, then extends her arm.\",\"lays on the desk, moving toward someone.\",\"stares after her, as she came into the room.\",places her hand on the arm of the chair.,\"looks around, slightly anxious.\",gold0-reannot,pos,unl,unl,pos,pos,\"As he rolls up his sleeve, someone puts her drink on the floor.\",She\nlsmdc3036_IN_TIME-15600,16161,He turns from the window. Someone,drops her gaze to her outfit.,puts the phone in her jacket.,\"comes back, past the old storefront with the art within.\",puts his cigarette on the side of the river.,turns and gazes at the clock as someone arrives.,gold0-reannot,pos,unl,unl,unl,unl,He turns from the window.,Someone\nlsmdc3036_IN_TIME-15600,16151,\"Someone follows someone up a fire escape to a balcony. Opening a window, he\",climbs into the building where he lived with his mother.,\"sees a policeman sitting on the front door of the boat, trying to break through the crowd crowd.\",finds another someone sized webs hovering on the floor in front of him.,sees an enormous splash to the floor and a wall of floating.,heads down a hall.,gold0-reannot,pos,unl,unl,unl,pos,Someone follows someone up a fire escape to a balcony.,\"Opening a window, he\"\nlsmdc3036_IN_TIME-15600,16127,She vacantly opens the screen door. Someone,averts her tearful gaze.,throws a gun in someone's direction and shows the wooden shelves.,sees someone sitting back table speaking.,pretends to catch her surprise.,opens his bedroom door.,gold0-reannot,pos,unl,unl,unl,pos,She vacantly opens the screen door.,Someone\nlsmdc3036_IN_TIME-15600,16113,\"Beside her, someone sits up clutching his head painfully. He\",faces his companion and gently turns her face with his hand.,\"hands him a high five, and runs to the bridge.\",stands and presses his tail to his brow.,massages someone's nose with hers.,swipes the sorting stone out of his bible.,gold1-reannot,pos,unl,unl,unl,unl,\"Beside her, someone sits up clutching his head painfully.\",He\nlsmdc3036_IN_TIME-15600,16146,\"Taking it, someone casually leans against someone's desk. Someone\",gazes at a building's neon sign which reads mission out of time.,puts the office chair half - closed.,switches off her lamp wristwatch.,looks to the departing floor.,groggily slowly turns toward us.,gold0-reannot,pos,unl,unl,unl,unl,\"Taking it, someone casually leans against someone's desk.\",Someone\nanetv_IeqBzYDyHGQ,18690,The video begins with shots of people cheering as well as several shots of players standing on a sand pit. The crowd,is seen doing the wave and continues to cheer as the camera shows various clips of a soccer match going on.,cheers up and cheers as well as several people running around the field and falling off.,claps and ends with the kids getting up and moving their strings around.,\"cheers and the track celebrates, and they pass as behind the pucks.\",looks back at the camera and the kids begins the game.,gold0-orig,pos,unl,unl,unl,pos,The video begins with shots of people cheering as well as several shots of players standing on a sand pit.,The crowd\nanetv_5JVHUcOW0GE,4546,He puts the sandwich into a plastic bag. He,puts the sandwich into a plastic tupperware box.,picks up a package of soda and pours it onto a bread paper.,dumps the paste onto the bread.,takes the paper and spits it out.,grabs a piece of bread and puts them in his chair.,gold0-orig,pos,unl,unl,unl,unl,He puts the sandwich into a plastic bag.,He\nanetv_5JVHUcOW0GE,14799,He speaks to the camera while showing a sandwich he is making. He,puts the sandwich in a bag and finally into a container and walks out.,takes the patterned nuts off of a bowl and cuts it in strips.,picks up the bottle and empties it into a plastic container.,is shown showing how to make the cake bow and show how to pan a raft.,begins cooking on various ingredients as well.,gold1-orig,pos,unl,unl,unl,pos,He speaks to the camera while showing a sandwich he is making.,He\nanetv_5JVHUcOW0GE,4545,A man is standing in a kitchen making a sandwich. He,puts the sandwich into a plastic bag.,is with his hands covered in ice cream.,is holding a piece of bacon and tin meat on it.,shows how he washes his dish in the sink.,is in a living room looking to a piece of wood.,gold0-orig,pos,unl,unl,unl,unl,A man is standing in a kitchen making a sandwich.,He\nanetv_5JVHUcOW0GE,4547,He puts the sandwich into a plastic Tupperware box. He,picks up the food and walks out a door.,puts cheese on his knees and tosses it to the stove.,unwraps it and the two continues.,starts to wipe a splinter of the palm from his hand.,puts the plates in and folds down the paper.,gold0-orig,pos,unl,unl,unl,pos,He puts the sandwich into a plastic Tupperware box.,He\nanetv_5JVHUcOW0GE,14798,A man is seen standing behind a counter with two slices of bread. He,speaks to the camera while showing a sandwich he is making.,cuts some vegetables and cuts out small pieces of paper.,puts cheese on top of the top of salt and stirs it.,puts the cat on the counter and spins it on.,places a smaller slice of bread on the side.,gold1-reannot,pos,unl,unl,unl,pos,A man is seen standing behind a counter with two slices of bread.,He\nanetv_kPbae85fofk,3698,People including security guards are standing behind a fence in a mall. We,see a young man in a fancy jacket talk and throw darts across the room.,also riders getting a cut and security parody ranks in the building.,suddenly immediately close up driving someone.,fill the walls of central night.,shambles into a limo.,gold0-orig,pos,unl,unl,unl,unl,People including security guards are standing behind a fence in a mall.,We\nanetv_kPbae85fofk,3699,We see a young man in a fancy jacket talk and throw darts across the room. The man,stops throwing and ducks down for a moment then continues to throw.,returns with the stands next to two other basketball players.,is then shown again being interviewed about the accident.,speaks to a camera near the hand.,raises his foot and darts out.,gold0-orig,pos,unl,unl,unl,pos,We see a young man in a fancy jacket talk and throw darts across the room.,The man\nlsmdc0003_CASABLANCA-46692,17106,\"There are Europeans in their dinner jackets, their women beautifully begowned and bejeweled. Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels,\",playing and singing while accompanied by a small orchestra.,resting a hand on his shoulder and loosens his tie with his fingers.,hands in the council.,peers at all the photos.,\"contemporary and false, and with one reading computer sent in tropical needles.\",gold0-orig,pos,unl,unl,unl,unl,\"There are Europeans in their dinner jackets, their women beautifully begowned and bejeweled.\",\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels,\"\nlsmdc0003_CASABLANCA-46692,17108,At another table a very well - dressed woman talks to a moor. She,has a bracelet on her wrist.,turns up the contest.,holds up a digital card as she struggles with the crowded class.,lies on the ground.,leads by still pictures of someone in a very shabby italian office.,gold0-orig,pos,unl,unl,unl,unl,At another table a very well - dressed woman talks to a moor.,She\nlsmdc0003_CASABLANCA-46692,17111,\"He walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard. Someone opens the door and someone\",goes into the gambling room.,points off the building.,glares at the typewriter doors.,opens her eyes as she makes a note across the marble floor outside the apartment.,gets his handcuffs off.,gold0-orig,pos,unl,unl,unl,unl,\"He walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard.\",Someone opens the door and someone\nlsmdc0003_CASABLANCA-46692,17110,\"Someone, the waiter, is a fat, jovial German refugee with spectacles. He\",\"walks, tray in hand, to a private door, over which someone, a large, burly man, stands guard.\",cuts a chair from the stained - glass entrance window.,has a toned copy of an elderly pas - up article graphic.,is in a dusty room and parked in the middle of a square.,turns down the street towards the entrance.,gold0-orig,pos,unl,unl,unl,unl,\"Someone, the waiter, is a fat, jovial German refugee with spectacles.\",He\nlsmdc0003_CASABLANCA-46692,17112,Someone opens the door and someone goes into the gambling room. Their,is much activity at the various tables.,\"runs into the principal's office, his hands on them.\",crosses a long plastic bag on a desk and carefully removes his reading glasses.,shake the shoulders of the customer to the customers.,see her father's flexibility.,gold0-orig,pos,unl,unl,unl,unl,Someone opens the door and someone goes into the gambling room.,Their\nlsmdc0003_CASABLANCA-46692,17104,The neon sign above the door is brightly lit. Customers,arrive and go in through the front door.,have a white briefcase and a door.,hurry down the steps and run at the back of a church.,are mounted on a base of the fence post buildings.,\"scatter across the street, people, with packages draped across their sandwiches.\",gold0-orig,pos,unl,unl,unl,pos,The neon sign above the door is brightly lit.,Customers\nlsmdc0003_CASABLANCA-46692,17105,Again we isolate on the neon sign. We,follow a group of customers inside.,man and the soldier walk to the door of the house.,can not make any signal missing to her voice.,see the screen of the car police machine.,\"emerges, slowly across the surface, his passage short.\",gold1-orig,unl,unl,unl,unl,unl,Again we isolate on the neon sign.,We\nlsmdc0003_CASABLANCA-46692,17113,Their is much activity at the various tables. They,glance at another table.,stop for a split and walk into the lounge.,do a cool tricks by pushing it on the block out after draining the cup and screaming there is a person waching them both.,has french hair ties.,give the others a pie and stops on the end of their introductions.,gold0-orig,pos,unl,unl,unl,unl,Their is much activity at the various tables.,They\nlsmdc0003_CASABLANCA-46692,17107,\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels, playing and singing while accompanied by a small orchestra. Two men\",sit at a table.,toting identification appear from the drones which stop him approach several tables and file before.,\"shuffle hard out on a stage, their overalls ready to play.\",play instruments in the central sink.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone, a middle - aged someone, sits on a stool before a small, salmon - colored piano on wheels, playing and singing while accompanied by a small orchestra.\",Two men\nlsmdc0003_CASABLANCA-46692,17109,She has a bracelet on her wrist. He,stops abruptly as two german officers walk by.,flips her over with a pair of tin provocatively.,puts it to her eye and holds it to his own hand.,leaves the door and rises excitedly as she enters the upstairs room.,,gold0-orig,pos,unl,unl,unl,n/a,She has a bracelet on her wrist.,He\nanetv_R586XlFT7Go,2168,A woman is seen speaking to the camera and leads into a woman running and interviewing other runners. She interviews two twins while running and the news,shows off other runners in the area.,casters are seen speaking in stage with their arms followed around her over the side.,holds more objects and tips.,speaks together showing the camera.,leads into an interview with a girl.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen speaking to the camera and leads into a woman running and interviewing other runners.,She interviews two twins while running and the news\nlsmdc3064_SPARKLE_2012-4175,2900,\"Now on the dark stage, someone lets a wrap with a voluminous high collar, drop to her feet. The trio\",\"moves forward, provocatively swaying their hips with each snap.\",slide over each other and replays.,pass the principal to someone.,follow her into a dark hall.,,gold0-orig,pos,unl,unl,pos,n/a,\"Now on the dark stage, someone lets a wrap with a voluminous high collar, drop to her feet.\",The trio\nlsmdc3064_SPARKLE_2012-4175,2899,\"As someone leans down, someone's mouth hangs open and her brow furrows. The compact's mirror\",reflects sister bruised eye.,shows the same man before her.,transforms into a second man's eyes.,shows a loaded piercing.,hangs on her lapel.,gold0-reannot,pos,unl,unl,unl,unl,\"As someone leans down, someone's mouth hangs open and her brow furrows.\",The compact's mirror\nanetv_bXJMw4gLmGM,17785,A man is talking inside a shop. He,\"shows off an iron, then uses it to melt a piece of plastic.\",is spraying a car with a hose.,is talking and inside that.,\"is put three bottles in the ready, and drink a liquor drink.\",is shoveling a low trimmed snow with a high heel.,gold1-orig,pos,unl,unl,unl,unl,A man is talking inside a shop.,He\nanetv_bXJMw4gLmGM,17786,\"He shows off an iron, then uses it to melt a piece of plastic. The man irons then\",brushes a long piece of metal.,uses tools to flip the board all around while doing tai grind and and backward maneuvers.,picks up iron self and dabs the cloth on some clothes.,uses it's hand to melt the wax on an ironing board for long seconds.,sprinkled over the rim with a metal labeled roughly.,gold1-reannot,pos,unl,unl,unl,unl,\"He shows off an iron, then uses it to melt a piece of plastic.\",The man irons then\nanetv_2lUqeOw61QY,5612,Another male then begins shuffling and playing defense as the kids practice their layups. They,stay in their two lines and starts making passes to one another to make a goal.,continue hit the ball back and fourth as the ball hits the boys.,stand with their arms cut down to talk to the camera.,continue running down the scoreboard and patting each other on the guiding teens.,,gold1-orig,pos,unl,unl,unl,n/a,Another male then begins shuffling and playing defense as the kids practice their layups.,They\nanetv_2lUqeOw61QY,1290,People are playing basketball on a court. They,shoot the balls into the net.,are engaged in a game of volleyball on the ice.,throw the balls at the goal.,see a person making a small ball and shot into a pit.,are hitting the ball back and forth.,gold0-orig,pos,unl,unl,unl,unl,People are playing basketball on a court.,They\nanetv_2lUqeOw61QY,1291,They shoot the balls into the net. A man in a white shirt,is standing on the court watching.,is thrown outside with a wooden swing.,keeps showing the ball.,is standing up behind them.,,gold0-orig,pos,unl,pos,pos,n/a,They shoot the balls into the net.,A man in a white shirt\nanetv_2lUqeOw61QY,5611,An elderly man is standing in a basketball gym watching a young team of athletes practice. Another male then,begins shuffling and playing defense as the kids practice their layups.,holds colorful ropes and put them in his stands.,draws buttons motorbikes on a red mat that includes playing a wrestler who is wearing smaller sumo.,bowls the ball and throws it to the ground.,does an athlete jump successfully into a gym bar.,gold0-orig,pos,unl,unl,unl,unl,An elderly man is standing in a basketball gym watching a young team of athletes practice.,Another male then\nlsmdc0011_Gandhi-52261,6864,The sergeant is on the low sloping roof of the station. The captain,turns briskly to two of his detail.,is worried to behind him.,moves alongside of the track - and table.,takes down from the secretary's desk.,\"steps past, then turns off the engine and shoots.\",gold0-orig,pos,unl,unl,pos,pos,The sergeant is on the low sloping roof of the station.,The captain\nlsmdc0011_Gandhi-52261,6863,\"From its distant glow we can see that people line the platform of the small station, waiting, but we can not tell how thick the crowd may be. The sergeant\",is on the low sloping roof of the station.,studies the converted man's hand.,climbs a support directly into the air.,has up and falls.,beats calmly as he comes to the bar.,gold1-orig,pos,unl,unl,unl,pos,\"From its distant glow we can see that people line the platform of the small station, waiting, but we can not tell how thick the crowd may be.\",The sergeant\nlsmdc0011_Gandhi-52261,6865,The captain turns briskly to two of his detail. The whole of the obscurely lit platform,is covered thick with waiting crowds.,shows a mechanical tabletop was poufy inside.,is full of isengard buildings.,stands outside shipping the finished nibbling intervene.,is held close by people.,gold1-orig,unl,unl,unl,unl,unl,The captain turns briskly to two of his detail.,The whole of the obscurely lit platform\nlsmdc0011_Gandhi-52261,6859,\"He looks at someone nervously for a moment, then puts the food to his mouth like a man who is starving, and trying desperately not to show it. The solemn intensity of her gaze\",reflects her identification with the man's agony.,\"growing up through the spoken respectful, blue waters.\",glisten across closed mouth and down his pale face.,is strange and delicate.,,gold1-orig,pos,unl,unl,unl,n/a,\"He looks at someone nervously for a moment, then puts the food to his mouth like a man who is starving, and trying desperately not to show it.\",The solemn intensity of her gaze\nlsmdc0011_Gandhi-52261,6857,\"The fingers are thin, half - starved, like the man himself. He\",looks up at someone almost sheepishly.,\"flips, gawking, is interrupted by the holster or gun window.\",takes in the new v position.,pauses and quickly snatches the horn.,keeps seeing someone with a faint smile.,gold1-orig,pos,unl,unl,unl,pos,\"The fingers are thin, half - starved, like the man himself.\",He\nlsmdc0011_Gandhi-52261,6860,The solemn intensity of her gaze reflects her identification with the man's agony. She,glances up at someone.,slaps it open of the other from the mouth with someone's thumbs.,slides the phone down and looks inside.,smiles and turns back to the firing alien.,turns toward the destroyer and the guard lowers his radio.,gold0-orig,pos,unl,unl,unl,unl,The solemn intensity of her gaze reflects her identification with the man's agony.,She\nlsmdc0011_Gandhi-52261,6862,\"The camera is low, shooting along the track toward the light of an approaching train. From its distant glow we can see that people line the platform of the small station, waiting, but we\",can not tell how thick the crowd may be.,go down the last day to see.,can't see people.,can completely see where the sphere is.,\"look to each other, as we see down the unfamiliar path from the crow's nest.\",gold0-reannot,pos,unl,unl,unl,unl,\"The camera is low, shooting along the track toward the light of an approaching train.\",\"From its distant glow we can see that people line the platform of the small station, waiting, but we\"\nlsmdc0011_Gandhi-52261,6861,She glances up at someone. The camera,\"is low, shooting along the track toward the light of an approaching train.\",\"moves across the screen toward someone, a sinister sigh blaring through the light.\",\"view over his shoulder, reacting.\",broken glass of the museum shows someone at the kitchen time due to someone.,\"flies in on someone, who is now covered in cobwebs.\",gold0-reannot,pos,unl,unl,unl,unl,She glances up at someone.,The camera\nlsmdc0011_Gandhi-52261,6858,He looks up at someone almost sheepishly. Someone,sits at one side in the shadows watching him as intently as someone.,puts his hand against her hair.,reaches in and pulls a gun from someone's shoulders.,pulls a paper addressed to him.,,gold0-reannot,pos,unl,unl,unl,n/a,He looks up at someone almost sheepishly.,Someone\nanetv_-DphPPTybSY,14213,The man makes his fourth shot. The man,makes his final shot.,raises the cigarette again.,stops him off and gives it a merry shrug.,goes behind several wire and throws his water back.,,gold1-orig,pos,unl,unl,unl,n/a,The man makes his fourth shot.,The man\nanetv_-DphPPTybSY,14212,The man takes his third shot. The man,makes his fourth shot.,stops on the floor and gives smoke rings.,lowers the handle and then walks away.,puts on his helmet.,,gold0-orig,pos,unl,unl,pos,n/a,The man takes his third shot.,The man\nanetv_-DphPPTybSY,14210,The man in the blue shirt approaches to shoot. The man,walks away to exchange his pool stick.,reaches the box and stretches it out to protect himself.,lands from hit off the top and onto the field.,backs up and leans around the urn.,leaps to the back and ends the shot.,gold0-orig,pos,unl,unl,pos,pos,The man in the blue shirt approaches to shoot.,The man\nanetv_-DphPPTybSY,14211,The man then takes another shot. The man,takes his third shot.,points and shoots the arrow and finishes by shooting.,hits the ball again and landed in slow motion.,then hits balls and ends by hitting one another.,washes his hands again.,gold0-orig,pos,unl,unl,unl,pos,The man then takes another shot.,The man\nanetv_I637SOXSbHY,16355,A man bends down and picks up two kettle bells. He,raises and lowers the kettle bells.,begins cutting the cake around normal.,is instructions on how to assemble the car burn.,shoots onto the chain on the floor.,,gold0-orig,pos,unl,unl,unl,n/a,A man bends down and picks up two kettle bells.,He\nanetv_I637SOXSbHY,16356,He raises and lowers the kettle bells. He,puts them down on the grass in front of him.,perches on the floor in front of a grand building fanning it.,delightedly is running back to the tree.,removes his spectacles and starts polishing.,,gold0-reannot,pos,unl,unl,unl,n/a,He raises and lowers the kettle bells.,He\nanetv_92fD8Cy2zL0,15002,A cartoon of a stand up comic is shown and she is telling jokes. It cuts to her speaking to someone wearing a surgical mask in a room and it,looks like she is getting her nails done.,has a little pointed pink with a covered brush.,works with a apple.,onto a motionless other hand.,presents mounds of hair cut.,gold0-orig,unl,unl,unl,unl,unl,A cartoon of a stand up comic is shown and she is telling jokes.,It cuts to her speaking to someone wearing a surgical mask in a room and it\nanetv_92fD8Cy2zL0,15575,There is an intro with a woman's name. Then we,see an animated woman wearing a blue shirt and hoop earrings on stage with a microphone.,see two different athletes playing a bow together on the expanse while the sumo are shooting with arrows.,see her clipping on a white cloth cloth.,see the clip of the lady soaping her finished hands and put her nails in one and leash where it was brushes.,see ramps and a fancy beach when one of people talks with the characters in the studio.,gold0-orig,pos,unl,unl,unl,unl,There is an intro with a woman's name.,Then we\nanetv_92fD8Cy2zL0,15003,It cuts to her speaking to someone wearing a surgical mask in a room and it looks like she is getting her nails done. They both,talk back and forth for a bit about something.,bristle and pull the rear door and lip brush to create an pattern using cylinders.,do a calming choreography in the middle of the narrow ground.,try to do a maintenance unit with elongated handles while speaking to the camera.,\"look up in horror, shifting their amazement as they run.\",gold0-orig,pos,unl,unl,unl,unl,It cuts to her speaking to someone wearing a surgical mask in a room and it looks like she is getting her nails done.,They both\nanetv_92fD8Cy2zL0,15005,The video cuts to her sitting and getting her nails done from another woman wearing a surgical mask. They go back and forth for a bit and she,has a very annoyed look on her face.,talks about the victory.,begins with a method of using the left frame not to be secure.,poses to the camera while singing.,,gold0-orig,pos,unl,unl,pos,n/a,The video cuts to her sitting and getting her nails done from another woman wearing a surgical mask.,They go back and forth for a bit and she\nanetv_92fD8Cy2zL0,15004,They both talk back and forth for a bit about something. The video,cuts to her sitting and getting her nails done from another woman wearing a surgical mask.,ends with people working in with a man.,ends with the person kids posing for the camera.,shows several shots of some of the men talking as well as shoot their arrows.,,gold1-reannot,pos,unl,unl,unl,n/a,They both talk back and forth for a bit about something.,The video\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8419,\"His cocky smirk gone, someone stares fearfully through glistening bloodshot eyes. The rider's flames\",catch on his long stringy hair.,make up as sunlight shines down the face.,flit from his companion's sad eyes as someone tries a vain to escape the power drill.,shrewdly winding harshly at someone's wife.,seeps out of the woman's sleeve.,gold0-orig,pos,unl,unl,unl,unl,\"His cocky smirk gone, someone stares fearfully through glistening bloodshot eyes.\",The rider's flames\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8399,\"She weaves around it without breaking speed. From below, someone\",climbs up on her hood.,tugs her arm back but someone too manages to remove the weapon from someone's rod belt.,manages some clear midair.,drags someone across the front yard and shoots a garbage zombie.,drives down an instructional desert highway.,gold0-orig,pos,unl,unl,unl,pos,She weaves around it without breaking speed.,\"From below, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8338,Now a half moon shines in the night sky. Someone's black robed acolytes,sway as they chant.,stays close to one side.,lifts from the water ground as he gently strokes his upturned hand.,opens the petticoat attached.,,gold0-orig,pos,unl,unl,unl,n/a,Now a half moon shines in the night sky.,Someone's black robed acolytes\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8383,\"Falling back, someone lies motionless on the gravel. The surrounding acolytes\",\"recoil as he draws near, his face a swirl of flames.\",arrives beside the gran torino.,find their brooms in front of each other.,float along the edge of the treetops.,\"are moving slowly, moving faster.\",gold0-orig,pos,unl,pos,pos,pos,\"Falling back, someone lies motionless on the gravel.\",The surrounding acolytes\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8415,The demon rolls over on top of him but the angel throws him into the air. Someone,climbs up the suvs rear and over the roof.,looks up and shakes his hand.,\"rides along another tractor, looking back to the tractor.\",\"grabs the ball, which falls from the ceiling.\",\"joins out, smiling.\",gold0-orig,pos,unl,unl,pos,pos,The demon rolls over on top of him but the angel throws him into the air.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8401,\"Crouching playfully, he touches a fingertip to her windshield. A web - like network of cracks\",spreads across the glass.,come into the sky.,appear on the other side rim.,flies across the journey.,make their way along the rusty propeller and flutter around the netting.,gold0-orig,pos,unl,unl,unl,unl,\"Crouching playfully, he touches a fingertip to her windshield.\",A web - like network of cracks\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8347,He grabs his bag and leaves. Someone,heads off as well.,returns to someone's car and gets into the next container on his bed.,smashes into another cop.,wakes up and walks up to someone.,,gold0-orig,pos,unl,unl,unl,n/a,He grabs his bag and leaves.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8356,\"Gazing down on the stage, we find a shadow extending from someone's body as if reaching for someone. Someone\",runs out in the stands.,\"comes out, toting a stick on carpet.\",flies towards someone and grips himself behind the bar.,ignites a candle and headbutts her.,,gold0-orig,pos,unl,unl,unl,n/a,\"Gazing down on the stage, we find a shadow extending from someone's body as if reaching for someone.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8389,\"It skids to a half before and he climbs on. The rider speeds off, his chopper\",trailing thick plumes of black smoke.,seethes as it levitates on air.,tilted as someone swerves to the passenger side.,uncovered strained in the light site.,floats from the water above him.,gold0-orig,pos,unl,unl,unl,unl,It skids to a half before and he climbs on.,\"The rider speeds off, his chopper\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8414,Someone head butts the rider who punches him. The demon rolls over on top of him but the angel,throws him into the air.,runs out through the hole after.,drags him back to the tide.,\"looks at the top of the beast, which drains the flame which he extinguishes until he is broken.\",stands on the table and it burns shut.,gold0-orig,pos,unl,unl,unl,unl,Someone head butts the rider who punches him.,The demon rolls over on top of him but the angel\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8349,Two guards trade a look. He,tosses the bottle and shoots them both down.,takes his own wand and gazes away.,turns to the bedroom bureau.,\"stares thoughtfully at the floor, then lifts the stairway off.\",\"pauses, watching him.\",gold1-orig,pos,unl,unl,unl,pos,Two guards trade a look.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8343,She glances up once more then recognizes someone and someone as they leave their fallen enemies behind. Now someone,leads someone past a wall.,joins someone in the convertible car.,turns on a five sofa with a picnic against one side.,clutches her hospital stage and presses her knuckles against the door.,comes through the police tunnel.,gold1-orig,pos,unl,unl,unl,pos,She glances up once more then recognizes someone and someone as they leave their fallen enemies behind.,Now someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8441,\"The creature's skull turns toward the wreckage. As someone watches, someone\",\"circles the vehicle, looking down.\",stares forward through his window.,swings his head to turn away.,studies the map across the bar.,smashes through the hole in it.,gold1-orig,pos,unl,unl,unl,unl,The creature's skull turns toward the wreckage.,\"As someone watches, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8387,\"In the gravel pit, someone jerks his head side to side. He\",stares at his own gloved hands.,rides off into the glade.,waves the gun out of his mouth and ripples down the water.,mounts someone back up and faces the bird.,gives someone a stuffed annoyed look as he watches as a couple rides away.,gold0-orig,pos,unl,unl,unl,unl,\"In the gravel pit, someone jerks his head side to side.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8339,\"Someone's black robed acolytes sway as they chant. On stage, someone\",kneels a few feet away from someone.,sits on his lap and stares down at the ground.,gets involved in a jousting race.,talks in an interrogation room.,\"stops - - now has - - without looking at him, then turns away.\",gold1-orig,pos,unl,unl,unl,unl,Someone's black robed acolytes sway as they chant.,\"On stage, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8337,She glances down then heads off and he turns to watch her go. Now a half moon,shines in the night sky.,shows thick piles scattered in the air.,\"shines in a green sky illuminated with trees, birds, green, bright lights.\",rises through the night sky.,,gold0-orig,pos,unl,unl,pos,n/a,She glances down then heads off and he turns to watch her go.,Now a half moon\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8395,Someone leaps onto the driver's seat and takes the wheel. Flames,erupt throughout the engine and blaze around the tires.,\"in back on him, someone helps him pull it off upstairs into the chestnut room.\",sit with them when someone comes back.,\"kicks, pressing her fists against the door.\",\"lift up at us, heading back.\",gold0-orig,pos,unl,unl,unl,unl,Someone leaps onto the driver's seat and takes the wheel.,Flames\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8430,\"He finds someone crawling laboriously from the wreck. His aging wounded vessel limp from the chest down, the devil\",drags himself across the sand.,'s mission nears a village of white pillars.,digs into someone's supply vest pocket.,backs away from his brothers.,notices in his own breast lapels.,gold0-orig,pos,unl,unl,unl,unl,He finds someone crawling laboriously from the wreck.,\"His aging wounded vessel limp from the chest down, the devil\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8427,The suv swerves off the road then flips end over end. It,lands on its roof in a flaming wreck.,jumps over a diving stick and soars to the edge of the pool block.,\"falls, which lands raining heavily.\",swoops close as someone rocks to face her.,,gold0-orig,pos,unl,unl,pos,n/a,The suv swerves off the road then flips end over end.,It\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8403,\"He drives his fist through the cracks, shattering the windshield. Someone\",shields her face from the flying glass shards.,flips through the bottle.,locks him into a park amid burning destroying on the far side of the street.,gets to his feet and presses his brow at her.,speeds at a steep bridge.,gold0-orig,pos,unl,unl,unl,unl,\"He drives his fist through the cracks, shattering the windshield.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8435,\"Following the chain, we find someone plunging into a sea of fire. His limbs flailing, he\",steers helplessly as the flames eat away at his flesh.,\"attaches his arms over his back, speeds up with the can being locked on the shelf above them.\",sucks his balloon moped toward the gigantic aircraft which crashes through.,idly holds his taut stand motionless.,clings to her and watches as someone jumps over a boxcar barrier.,gold0-orig,pos,unl,unl,unl,unl,\"Following the chain, we find someone plunging into a sea of fire.\",\"His limbs flailing, he\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8445,\"She steps forward as someone stands, cradling someone's limp form in his arms. Someone\",carries the boy to his mother.,pulls down his pants.,\"sits in his chair, the shirt in a scarf.\",rests his head on his knees.,looks back at someone.,gold0-orig,pos,unl,unl,unl,unl,\"She steps forward as someone stands, cradling someone's limp form in his arms.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8436,\"His limbs flailing, he steers helplessly as the flames eat away at his flesh. The hell fires\",\"flare, their light overwhelming our view.\",causing people to go heavily.,\"strikes someone in the glass of fire, sending sparks flying from his grasp.\",\"shoot, coming his way through his jacket's patch.\",,gold1-orig,pos,unl,unl,pos,n/a,\"His limbs flailing, he steers helplessly as the flames eat away at his flesh.\",The hell fires\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8385,\"Someone rises, taking out the acolytes with a circular sweep of his red hot chain. Outside, someone\",loads a limp someone into an suv.,hangs high above only mattress.,\"slides with a mortar - shaped tips, as his head is pressed back against.\",draws in the sunlight and hides a weapon inside.,,gold1-orig,unl,unl,unl,unl,n/a,\"Someone rises, taking out the acolytes with a circular sweep of his red hot chain.\",\"Outside, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8358,He shoots down a guard. Someone,\"turns and looks up, his eyes returning to normal.\",draws the sword closer to someone.,\"runs out, his arms outstretched, as someone grips the tire from the left seat.\",grabs someone by the leg and hides behind the escape from his seat.,throws up his weapon and punches him in the face.,gold1-orig,pos,unl,unl,unl,pos,He shoots down a guard.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8364,\"With a swipe of his hand, he sends someone flying off the stage. He\",lands hard in a gravel pit below.,tosses himself onto a wall in front of him.,lands back and staggers again toward the far side of the clearing.,\"takes off his sock, startling the dancers.\",chases a stunned someone.,gold1-orig,pos,unl,unl,unl,pos,\"With a swipe of his hand, he sends someone flying off the stage.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8388,\"In someone's suv, someone's head slumps forward. His father\",regards him with a bitter scowl as he leads the convoy at high speed away from ruins.,pulls himself up on his elbows.,slams his suv to the brakes as the tired farm boy jogs down the front steps.,sits by a dilapidated tree with a branch sticking out in front of him.,,gold0-orig,pos,unl,unl,pos,n/a,\"In someone's suv, someone's head slumps forward.\",His father\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8426,Someone lurches and the auto part flies past the rider. The suv,swerves off the road then flips end over end.,steers the hazy bus away from him.,knocks the taxis runner down into several pavement.,\"roars past them, gaining on us, some staggering, and rising.\",reaches the locomotive's outer structure.,gold0-orig,pos,pos,pos,pos,pos,Someone lurches and the auto part flies past the rider.,The suv\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8396,\"Flames erupt throughout the engine and blaze around the tires. Meanwhile, someone drives after the convoy in a dusty suv, her chin\",lowered in a determined stare.,resting on a large handgun.,studded in a scrapyard.,resting on an empty bench.,casting an arc in the air.,gold0-orig,pos,unl,unl,unl,unl,Flames erupt throughout the engine and blaze around the tires.,\"Meanwhile, someone drives after the convoy in a dusty suv, her chin\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8397,Someone rear ends it and it explodes. The suv ahead of it,\"spins out of control, threatening to cut off someone.\",swivels into the mall.,\"looks ahead, its pursuer swishing through the water.\",\"crashes into the cops, twisting its body out loud.\",,gold1-orig,pos,unl,unl,unl,n/a,Someone rear ends it and it explodes.,The suv ahead of it\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8371,The devil turns and his minion looks up. The demon,wrenches his victim's head to face the boy then grins at someone.,glances as she watches in the finishing hall.,cuts the hilt of a older boot with a knife plank.,tosses the mug snapshot then hands it to the lady.,floats beneath the track suit.,gold1-orig,pos,unl,unl,unl,unl,The devil turns and his minion looks up.,The demon\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8367,\"His face a mess of rotten flesh, someone smashes his head against someone's. Someone\",looks on as someone shakes the rot off his face and out of his hair and mouth.,intercepts him and kneels in front of him.,\"plays dismissively and wand, gripping the ax handle with his right hand.\",flings him to the tabletop and lands on the bed next to someone.,stands with his back to the man.,gold0-orig,pos,unl,unl,unl,pos,\"His face a mess of rotten flesh, someone smashes his head against someone's.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8433,Someone's twisted features scowl bitterly as the rider shrieks in his face. Someone,throws him down then slings him skyward with a chain around his chest.,\"runs along the track towards an distant pursuer, which is still on her head.\",\"has been thrown past his mustached brother, but the man spots fire in the darkness.\",and someone make their way down the hall to the ruins.,hand lifts the inspector's chest.,gold1-orig,pos,unl,unl,unl,unl,Someone's twisted features scowl bitterly as the rider shrieks in his face.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8412,Twin lights flare below them. They,'re someone's headlights.,warily shoot a hole at the top of the door.,emerge from the scattering humans.,fling another single cigarette.,,gold0-orig,pos,unl,unl,unl,n/a,Twin lights flare below them.,They\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8424,It lashes around the undercarriage's central rod. Someone,gives his chain a tug.,\"concentrates, baring its fangs.\",shifts his pained woeful eyes.,lands in the lift at high speed.,opens the door for someone as she leaves.,gold1-orig,pos,unl,unl,pos,pos,It lashes around the undercarriage's central rod.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8361,\"He pauses, spreading his arms exultantly. Someone\",reaches a gloved hand out to someone.,\"looks down with more signs, and walks away and covers his head.\",considers for a moment to beat looking up from his board.,sprawled on the right.,,gold0-orig,pos,unl,unl,pos,n/a,\"He pauses, spreading his arms exultantly.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8342,She glances up from her green tinted night vision scope then spots four men in a brawl. She,glances up once more then recognizes someone and someone as they leave their fallen enemies behind.,back onto the road.,gives the back to them.,torched on jamming his boys.,chases someone out of the jungle.,gold0-orig,pos,unl,unl,unl,unl,She glances up from her green tinted night vision scope then spots four men in a brawl.,She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8365,The right side of someone's head decomposes as he swings his left fist at the demon. Someone,catches it easily and forces it down.,leaps over him and strikes a pose.,gape at his morosely colleague.,\"hits the parallel bars and spins his body around legs, flipping him across his chest.\",,gold0-orig,pos,unl,unl,unl,n/a,The right side of someone's head decomposes as he swings his left fist at the demon.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8431,\"His aging wounded vessel limp from the chest down, the devil drags himself across the sand. Someone's gloved hand\",snatches him by the shoulder then hauls him to his feet.,\"reaches up to him, his pants loosely.\",\"reaches the mouth of the cockpit, revealing a spear in the torso.\",lies beside them in the bright sun.,holds it aloft to help someone out of the way.,gold0-orig,pos,unl,unl,unl,unl,\"His aging wounded vessel limp from the chest down, the devil drags himself across the sand.\",Someone's gloved hand\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8368,Someone looks on as someone shakes the rot off his face and out of his hair and mouth. Someone and someone,watch the acolytes surround someone who struggles to stand in the gravel pit.,trot off the hall and into the living room from someone.,\"enter the chamber wearing a balding, yellow jacket.\",\"casually stand nearby at the far side of the room, holding signs.\",are trapped by some fighting affectionate hurdles at his back.,gold1-orig,pos,unl,unl,unl,unl,Someone looks on as someone shakes the rot off his face and out of his hair and mouth.,Someone and someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8344,Now someone leads someone past a wall. He,peeks around a corner then crouches with his partner.,\"wakes, turns on an ipod, and marches down the corridors, keeping her body trained on the road.\",stops reading and looks at the book.,hops over a column and comes over the massive metal doors.,finds someone crawling out of the tent tent.,gold0-orig,pos,unl,unl,pos,pos,Now someone leads someone past a wall.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8447,\"The rider bends down, laying someone in her arms. She\",tilts the boy's head back gently.,heave with her wrist.,\"faces for someone, who lies alone on a bench at the far edge of a pond in the sea.\",closes his teeth in fear.,jumps down - gracefully part of the sand.,gold0-orig,pos,unl,unl,unl,unl,\"The rider bends down, laying someone in her arms.\",She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8416,The foes reconverge in a wrestling grasp on the hood. Someone,bends the rider over the side of the hood.,\"goes dead, the lawyer shaking his head.\",sits stiffly in front of his father.,sees someone taking two bullets from a second carton.,stabs a clown with a tentacle in someone's throat.,gold0-orig,pos,unl,unl,unl,unl,The foes reconverge in a wrestling grasp on the hood.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8434,\"The rider snaps the chains, slinging the devil into the ground. Following the chain, we\",find someone plunging into a sea of fire.,see someone break a gate down.,hear a lot of old voices through the distant.,can see the operator pushing him down.,see someone in the outer room with his jacket on.,gold1-orig,pos,unl,unl,pos,pos,\"The rider snaps the chains, slinging the devil into the ground.\",\"Following the chain, we\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8407,Someone grabs the chains which start to rot in his grasp. The rider,\"tugs the chain, pulling him down and leaps over him.\",drops to the crest.,jumps off the ship and approaches the japanese security of people's white team on class.,picks up a weight then casts a drop to the chest.,\"comes on and waits, signaling the life down.\",gold0-orig,pos,unl,unl,unl,unl,Someone grabs the chains which start to rot in his grasp.,The rider\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8423,\"As he draws closer, he slings his glowing chain forward. It\",lashes around the undercarriage's central rod.,strides bolts up the aisle and into the night tree of vito island.,lifts someone up and back down.,fall into the large domed floor.,pulls him up and places his finger on the steering wheel.,gold0-orig,pos,unl,unl,unl,unl,\"As he draws closer, he slings his glowing chain forward.\",It\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8359,\"Someone turns and looks up, his eyes returning to normal. As he watches someone shooting his guards and acolytes, someone\",runs onto the stage and punches him out.,\"lies on casts above the roof, his face stoic and dazed, he speaks.\",spots a silver pistol bales on the back of his head.,chops him again.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone turns and looks up, his eyes returning to normal.\",\"As he watches someone shooting his guards and acolytes, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8421,His flaming motorcycle pulls up alongside someone's vehicle then creeps ahead. Someone,\"leaps from her hood, landing on his motorcycle.\",\"runs through the store, rubbing his heels and swearing.\",smiles at him on the wooden deck.,slips along the others deck.,,gold0-orig,pos,unl,unl,unl,n/a,His flaming motorcycle pulls up alongside someone's vehicle then creeps ahead.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8398,\"The suv ahead of it spins out of control, threatening to cut off someone. She\",weaves around it without breaking speed.,turns apprehensively toward him and watches him pace sideways.,takes her hand and comes out of the house.,turns surrounded and engulfs him.,,gold0-orig,pos,unl,unl,unl,n/a,\"The suv ahead of it spins out of control, threatening to cut off someone.\",She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8346,He takes a swig of 2000 year old wine. He,hands the bottle to someone who takes a sip as well.,absently show a cave over the grill of someone's naked body.,puts clothes tea and open the doors to his room.,\"pople some some paint good, bursting in the mirror, like a flaming brand.\",watches with a horrified expression.,gold0-orig,pos,unl,unl,unl,unl,He takes a swig of 2000 year old wine.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8386,\"Outside, someone loads a limp someone into an suv. In the gravel pit, someone\",jerks his head side to side.,throws another tire over the squad car's seat.,\"runs across the deck, dodging panicking sailors as he flees.\",\"hurries after it, a pen, document seller, its raincoats, with lines of sepoys.\",pulls away from a passing truck.,gold1-orig,pos,unl,unl,unl,unl,\"Outside, someone loads a limp someone into an suv.\",\"In the gravel pit, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8355,\"His acolytes tilt their heads back. Gazing down on the stage, we\",find a shadow extending from someone's body as if reaching for someone.,\"peer close as the manager directs his circle, cluttered toward someone.\",recognize the two screens which move towards someone.,\"see the musician smoothing, then briefly pats someone's forehead.\",,gold1-orig,pos,unl,unl,unl,n/a,His acolytes tilt their heads back.,\"Gazing down on the stage, we\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8362,Someone reaches a gloved hand out to someone. Someone,stares coldly at someone through blackened eyes.,waves a handful of money from the valet.,takes a cake case from the pool and throws it at someone.,knocks over weight markers.,\"stares at her anxiously, her eyes glistening.\",gold1-orig,pos,unl,unl,unl,pos,Someone reaches a gloved hand out to someone.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8405,\"Ahead, an suv carrying gunmen pulls up beside someone's truck. The flaming vehicle\",knocks it off the road.,jumps out of the brilliant.,blocks the view from side to side.,indicates a vast occupants of the farm house that lies outside.,skids to a halt near a nearby building.,gold0-orig,pos,unl,unl,unl,pos,\"Ahead, an suv carrying gunmen pulls up beside someone's truck.\",The flaming vehicle\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8348,Someone heads off as well. Now someone,reaches an entryway and chugs his wine.,paces against a glass wall and eyes her.,stands on a traffic wire and looks a village.,ducks beneath a unbuttoned shirt with a big green towel covering him.,speeds alongside the hatchback.,gold0-orig,pos,unl,unl,unl,unl,Someone heads off as well.,Now someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8350,He reloads then runs up a staircase. Now someone,darts furtively through a passage in the amphitheater.,trains himself across a single - riverbed desert bridge.,finds an empty attache case.,finds another cell in the surveillance room.,steps up behind the army shield.,gold0-orig,pos,unl,unl,unl,unl,He reloads then runs up a staircase.,Now someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8408,\"The rider tugs the chain, pulling him down and leaps over him. Recovering, someone\",grabs him from behind.,opens the gnn carriage as the flatbed truck drives into the main road.,pulls the puck toward the rim.,pulls his pants down and urges him up toward the stables.,whips off his helmet's visor.,gold1-orig,pos,unl,unl,unl,unl,\"The rider tugs the chain, pulling him down and leaps over him.\",\"Recovering, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8444,\"Someone wavers on her feet, her breath coming in ragged gasps. She\",\"steps forward as someone stands, cradling someone's limp form in his arms.\",\"sits on the ground, hand freed her hand.\",flutters a mechanical drill washer in.,\"stares at her steadily, then faces the young boy.\",enters the lot and turns in several spots.,gold1-orig,pos,unl,unl,pos,pos,\"Someone wavers on her feet, her breath coming in ragged gasps.\",She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8354,Someone opens his black bloodshot eyes. Someone,creeps closer and shakes his head wrathfully.,stares down his anxiety.,takes a deep breath.,spots someone's popcorn.,\"stares at him, then stares meekly at someone.\",gold0-orig,pos,unl,pos,pos,pos,Someone opens his black bloodshot eyes.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8417,His flames reignite in a wild blaze as he lifts his skull. He,\"seizes someone by the head and brings his face close, his jaw opening wide.\",\"stand in someone's backroom, which nearly hits him.\",parker handgun up the lantern.,helps someone out of his way and sits at the back of his corvette's bus travels.,leaps in and peers towards the vampire smashing through and bending over his spear.,gold1-orig,pos,unl,unl,pos,pos,His flames reignite in a wild blaze as he lifts his skull.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8380,\"Someone runs up to him, seizes him by the shoulders and spews a jet of fire at him. Someone\",\"releases his victim and staggers back, looking on.\",holds his captive out of their side as he leaves.,looks at someone's determination as he acknowledges the duel.,treads slowly toward him and kicks him through the shoulder.,hands someone his bag.,gold0-orig,pos,unl,unl,pos,pos,\"Someone runs up to him, seizes him by the shoulders and spews a jet of fire at him.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8438,\"He sways side to side, his fleshless mouth working in a growing roar. Someone\",doubles over then arches back triumphantly.,\", the letters hurtle around him as he winds up with the final hook for the motorboat.\",edelweiss gradual strokes statuette away.,'s face is coming down hers.,pulls up with him.,gold0-orig,pos,unl,unl,unl,pos,\"He sways side to side, his fleshless mouth working in a growing roar.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8402,A web - like network of cracks spreads across the glass. He,\"drives his fist through the cracks, shattering the windshield.\",notices what all of the bulging sacks are wheeled away.,controls them and operates a steel cage.,shakes the hunter on the face.,freezes and the triangle extends like the cover of a giant fountain.,gold0-orig,pos,unl,unl,unl,pos,A web - like network of cracks spreads across the glass.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8341,Someone reloads and takes aim at a third. She,glances up from her green tinted night vision scope then spots four men in a brawl.,fires a building full of other items and the shooting.,\"quickly back into the shot, and startles him with a big smile.\",proceeds to the surface and grimly drops them at the station.,pushes a nearby guest's gears beneath camp.,gold1-orig,pos,unl,unl,unl,unl,Someone reloads and takes aim at a third.,She\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8420,The rider's flames catch on his long stringy hair. His flaming motorcycle,pulls up alongside someone's vehicle then creeps ahead.,shows a new contraption on the bonnet.,sends the vault soaring as someone trips someone flying over the battlefield.,sends the creatures flying like wings keeping feet apart.,pulls on the handle and knocking him off.,gold0-orig,pos,unl,unl,unl,unl,The rider's flames catch on his long stringy hair.,His flaming motorcycle\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8360,\"As he watches someone shooting his guards and acolytes, someone runs onto the stage and punches him out. Someone\",runs through the stands shooting more acolytes.,rests his hands behind someone's head and squints.,flops down on the giant holding his father.,flies past a giant with a solid wand.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he watches someone shooting his guards and acolytes, someone runs onto the stage and punches him out.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8379,Someone bares his gritted teeth. Someone,\"runs up to him, seizes him by the shoulders and spews a jet of fire at him.\",lulls from the tongue in someone's hands as if holding a chopped snake.,bursts into a powerful shake of his head.,rises to his feet and has a spider open under his eyes.,elbows back in his seat and swell drives faster as they drag someone off into the boat.,gold0-orig,pos,unl,unl,unl,unl,Someone bares his gritted teeth.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8404,\"Someone shields her face from the flying glass shards. Ahead, an suv carrying gunmen\",pulls up beside someone's truck.,are at the bank's hilltop doors.,leads a large party diner.,shuffle through a parking lot.,holds a stone.,gold1-orig,pos,unl,unl,unl,unl,Someone shields her face from the flying glass shards.,\"Ahead, an suv carrying gunmen\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8409,\"Recovering, someone grabs him from behind. The rider\",elbows him then knocks him back.,\"flies aside, then lifts off the falcon and his bike slides down into the darkness.\",'s takes him to the ground.,ticks up into the air.,lifts his head forward and someone lifts him to its feet.,gold0-orig,pos,unl,pos,pos,pos,\"Recovering, someone grabs him from behind.\",The rider\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8446,Someone carries the boy to his mother. The rider,\"bends down, laying someone in her arms.\",\"backs away, pushing a lawn and hurtling backwards into the form surrounding the farm structures.\",\"rises to go below, his chest heaving.\",\"runs down the stairs into the store, reaching past her arms and knees.\",,gold1-orig,unl,unl,unl,unl,n/a,Someone carries the boy to his mother.,The rider\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8382,\"The cursed man accepts the fire with a wide open mouth. Falling back, someone\",lies motionless on the gravel.,stares at the girl.,lifts his brow and rises.,grabs a taser from the shell.,emerges from the fire escape.,gold1-orig,unl,unl,unl,unl,unl,The cursed man accepts the fire with a wide open mouth.,\"Falling back, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8400,\"From below, someone climbs up on her hood. Crouching playfully, he\",touches a fingertip to her windshield.,wanders toward the city.,scatters his fingers into her foam mouth.,peers his brow at a tiger.,hurries up to the escalator.,gold0-orig,pos,unl,unl,unl,unl,\"From below, someone climbs up on her hood.\",\"Crouching playfully, he\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8375,He looks back and forth between the boy and his evil father. He,remember smashing the bottle with his fist and the contract pages flipping by themselves.,drifts across the field of the tugboat at a rapid attempt leading up from the slope.,smacks its motorcycle against a pipe.,\"smiles, then shakes his head as he sits on the sofa with his hands draped over his stomach.\",does n't show his bad wolf.,gold1-reannot,pos,unl,unl,unl,unl,He looks back and forth between the boy and his evil father.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8351,Now someone darts furtively through a passage in the amphitheater. He,hurdles the low edge of a stone window and peers around a column.,clicks a rubix cube and prepares a new cube.,\"stop to pepper, rubbing protect shoes from behind and slamming against a corn one.\",\"finds the six, one trying to cross the guards with someone, and pillar.\",comes downstairs and turns around the back of an alleyway.,gold1-reannot,unl,unl,unl,unl,pos,Now someone darts furtively through a passage in the amphitheater.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8392,Someone pulls up beside a ruthless truck as its driver barks into a radio. He,leaps from his motorcycle onto to the driver's side of the cab and shrieks in his face.,climbs against the rim of the van as the deusenberg race up its rickety shore.,peeks outside the shoulder and security street.,spots him and pulls his face close to hers.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone pulls up beside a ruthless truck as its driver barks into a radio.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8432,Someone's gloved hand snatches him by the shoulder then hauls him to his feet. Someone's twisted features,scowl bitterly as the rider shrieks in his face.,cast tight as he tries to suppress the means of someone's lackey.,cast the light of lightning.,are glowing in raven fang as light falls from someone's hmong eyes.,draw the shawl of the tablet.,gold0-reannot,pos,unl,unl,unl,unl,Someone's gloved hand snatches him by the shoulder then hauls him to his feet.,Someone's twisted features\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8391,\"They blast holes in the asphalt around the flaming motorcycle but fail to impede it. At the lead, someone\",spies the rider in his side mirror and snarls resentfully.,watches helplessly as the movie continues through the city join the forcing ramps to new york.,\"looks a cool style of an, besides a shop crammed barefoot from a watch screen.\",recoils as the flaming powerfully pelt someone with flaming oar.,walks to the window.,gold0-reannot,pos,unl,unl,unl,pos,They blast holes in the asphalt around the flaming motorcycle but fail to impede it.,\"At the lead, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8425,Someone gives his chain a tug. Someone lurches and the auto part,flies past the rider.,begins to flood down the fire.,expand then forms by someone.,narrow to reappears in the puddle.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone gives his chain a tug.,Someone lurches and the auto part\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8377,Someone gives a defeated nod as he recalls signing the contract with his blood. He,looks up at someone.,throws it down at someone.,unbuttons someone's hands.,slices a knife at someone 'cheek.,passes numerous clips at the doors.,gold1-reannot,pos,unl,unl,unl,unl,Someone gives a defeated nod as he recalls signing the contract with his blood.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8352,He hurdles the low edge of a stone window and peers around a column. He,finds someone and someone swaying on their knees before the chanting acolytes.,\"stands still at his cabin, watches the game of tug just past the sky and cautiously across the courtyard.\",joins a wealthy man standing by a police station.,\"gallops through, counting - - looking up at the foliage.\",,gold1-reannot,pos,unl,unl,pos,n/a,He hurdles the low edge of a stone window and peers around a column.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8410,The rider elbows him then knocks him back. His chain,\"rises by itself, winding around the demon.\",hangs open and a herd of the commentators starts to cross someone.,collapses over his parent's face.,cuts free of his gun.,\"pulls him behind the steering wheel, pulls up.\",gold0-reannot,pos,unl,unl,unl,pos,The rider elbows him then knocks him back.,His chain\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8429,\"Someone pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait. He\",finds someone crawling laboriously from the wreck.,aims his pistol at the trunk's edge and leaps away.,jumps on his stomach.,blinks even more and hits the door stifling a smile.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait.\",He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8381,\"Someone releases his victim and staggers back, looking on. The cursed man\",accepts the fire with a wide open mouth.,moves stiffly out from the boy's frame.,hangs upside down around his chair before holding a pen.,\"now swings in front of someone, also easily dumps more blood.\",,gold1-reannot,pos,unl,unl,pos,n/a,\"Someone releases his victim and staggers back, looking on.\",The cursed man\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8413,They're someone's headlights. Someone head,butts the rider who punches him.,morris dance in a little way.,to all a window and gets the cigarettes.,shoots someone with a smile.,comes up and walks up a gangplank.,gold0-reannot,pos,unl,unl,unl,unl,They're someone's headlights.,Someone head\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8336,He rests his hand on her shoulder. She glances down then heads off and he,turns to watch her go.,gives her the address.,looks down at her.,continues walking toward the house as if pretending to sing.,scans her between them with a twinkle in their eye.,gold0-reannot,pos,unl,unl,unl,unl,He rests his hand on her shoulder.,She glances down then heads off and he\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8374,Someone returns his somber gaze to someone. He,looks back and forth between the boy and his evil father.,\"move on, lush and red, and covered in stains.\",deposits their comrade - down wounded side the shoulder together.,flare shoots down the dark sky and tips up beside the covered sailboat.,\"plays with a cheerful bodyguard, looking right behind him.\",gold1-reannot,pos,unl,unl,unl,pos,Someone returns his somber gaze to someone.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8353,\"The boy raises his head, his eyes bloodshot with black irises. Someone\",opens his black bloodshot eyes.,eyes fill with tiny lids.,\"gazes off thoughtfully, then takes a deep breath, then steps out of the church.\",spots a bloody object duct on the scar in his forehead.,\"looks on someone's faces, puzzled.\",gold0-reannot,pos,unl,unl,unl,pos,\"The boy raises his head, his eyes bloodshot with black irises.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8376,He remember smashing the bottle with his fist and the contract pages flipping by themselves. Someone,gives a defeated nod as he recalls signing the contract with his blood.,puppies accost him as he rips up his oxygen mask.,watches him get out of the car and runs off to stop the car as she gets on the car.,\", someone sits in her room, a coffee cup in her lap.\",turns and glares withdraws.,gold0-reannot,pos,unl,unl,unl,unl,He remember smashing the bottle with his fist and the contract pages flipping by themselves.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8428,It lands on its roof in a flaming wreck. Someone,\"pulls up beside it, dismounts from his motorcycle and marches toward the vehicle with a steady purposeful gait.\",releases a thin pincer and falls into the water.,catches sight of someone.,\"bursts up as the snowy tunnel closes, unzips its coat, and unscrews a lens.\",radios the girl in the garage hall.,gold1-reannot,pos,unl,unl,unl,unl,It lands on its roof in a flaming wreck.,Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8394,\"The driver flies from the truck, landing in the dirt. Someone\",leaps onto the driver's seat and takes the wheel.,lays his hands over his side.,aims down and paddles out wildly.,holds it up under the truck's tires.,grabs someone's hand.,gold0-reannot,pos,unl,unl,unl,pos,\"The driver flies from the truck, landing in the dirt.\",Someone\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8366,\"Darkness closes in around the priest as someone's grasp decomposes him. His face a mess of rotten flesh, someone\",smashes his head against someone's.,stares fixedly at someone.,eavesdrops on his play.,irritably sips his iced wine.,cradles his limp mother.,gold1-reannot,pos,unl,unl,unl,unl,Darkness closes in around the priest as someone's grasp decomposes him.,\"His face a mess of rotten flesh, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8345,He peeks around a corner then crouches with his partner. He,takes a swig of 2000 year old wine.,\"sneaks up, up in the air above the fireplace and follow his unsettled look.\",looks out to mid sweep.,\"rushes over to the boy with the baby, smashes it on a wall.\",shakes his way through the air and sinks down in street.,gold1-reannot,pos,unl,unl,unl,unl,He peeks around a corner then crouches with his partner.,He\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8418,\"He seizes someone by the head and brings his face close, his jaw opening wide. His cocky smirk gone, someone\",stares fearfully through glistening bloodshot eyes.,works on his knuckles.,stumbles and runs toward the woman.,rips off the shirt with parked stubble.,,gold0-reannot,pos,unl,unl,unl,n/a,\"He seizes someone by the head and brings his face close, his jaw opening wide.\",\"His cocky smirk gone, someone\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8440,She lurches to halt at the sight of someone standing beside the overturned flaming suv. The creature's skull,turns toward the wreckage.,\"is ripped, but someone struggles to free her body.\",bears a flying foam.,disappears and tightens itself.,is widening and its head appears above us.,gold0-reannot,pos,unl,unl,unl,unl,She lurches to halt at the sight of someone standing beside the overturned flaming suv.,The creature's skull\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8422,\"Someone's side mirrors show someone gaining. As he draws closer, he\",slings his glowing chain forward.,\"sees people watching, while others walk in places.\",regains stands and heads towards the automaton.,observes the producer cousin's 2011 hair.,sheds the burning brick fall and grabs several knives.,gold1-reannot,pos,unl,unl,unl,unl,Someone's side mirrors show someone gaining.,\"As he draws closer, he\"\nlsmdc3028_GHOST_RIDER_SPIRIT_OF_VENGEANCE-13150,8390,\"The rider speeds off, his chopper trailing thick plumes of black smoke. Now someone's convoy\",travels through a desert on an isolated two - lane highway.,travels up another snow side where several animals are laid on the ground beneath the citadel.,arrives in a clearing in front of a van's saucer - shaped parking space.,pulls up outside someone's house.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The rider speeds off, his chopper trailing thick plumes of black smoke.\",Now someone's convoy\nanetv_ZMopjyYvcqw,15660,The bow is shown in detail. Another man,is shown outdoors using the hunting bow to shoot a target.,instructs before taking the piercing and showing some assigned proper shots of the man.,\"shows the sharpening a knife, cut a blade, and uses the knife as a knife to prepare it.\",rubs a smooth body but is clearly kicked by harry.,,gold0-orig,pos,unl,unl,unl,n/a,The bow is shown in detail.,Another man\nanetv_ZMopjyYvcqw,15658,A man is showing a crossbow and a knife and other hunting gear. The man,is talking to the camera showing a hunting bow.,is swooping the left.,continues sharpening the knife from a target the whole time.,sharpens the knife into a ski and sharpens the pliers on the sharpener.,demonstrates tools to then fix the sharpening block.,gold0-orig,pos,unl,unl,unl,pos,A man is showing a crossbow and a knife and other hunting gear.,The man\nanetv_ZMopjyYvcqw,15661,Another man is shown outdoors using the hunting bow to shoot a target. The man,is talking to the camera again indoors showing the hunting bow.,carries several large polo between his hands.,meets to a corner grill and chop a wood with aluminum equipment.,is mowing the lawn on two brown grass playing a lawn mower next to the tree.,\"take their turns, moving nearer to the center group of people.\",gold0-orig,pos,unl,unl,unl,unl,Another man is shown outdoors using the hunting bow to shoot a target.,The man\nanetv_ZMopjyYvcqw,15659,The man is talking to the camera showing a hunting bow. The bow,is shown in detail.,is served on the table.,is shown fighting in a ring.,shows the right hurt.,,gold0-orig,pos,unl,unl,unl,n/a,The man is talking to the camera showing a hunting bow.,The bow\nanetv_WPK5VeqNSh8,13751,Two man holds special shoes and are ready to play in the court holding the rings. man,throw the rings to the court playing.,is outside in the white suit and a small roofed gym.,lift the small cloth up and down at the ground.,stops in the floor and begin to ball.,,gold0-orig,pos,unl,unl,pos,n/a,Two man holds special shoes and are ready to play in the court holding the rings.,man\nanetv_WPK5VeqNSh8,13750,A man and a woman holds the rings and put them in the curling court. two man,holds special shoes and are ready to play in the court holding the rings.,holds a ball and wrap ring around the smokes of the ring.,turn the accordian to create a ounce of whiskey.,applies additional basketball to each other as everyone talk to many other men.,,gold0-orig,pos,unl,unl,unl,n/a,A man and a woman holds the rings and put them in the curling court.,two man\nanetv_WPK5VeqNSh8,18872,It dissipates and two people on a tv show grab a large circular object with a handle on it and places it at the end of the mat and comes back to talk to the other two people. One of the men then,grab their shoes and begins asking questions about it.,jumps and does the other one.,lays down on the floor and begins throwing a stick to the sticks.,places his face on the ground.,,gold0-reannot,pos,unl,unl,pos,n/a,It dissipates and two people on a tv show grab a large circular object with a handle on it and places it at the end of the mat and comes back to talk to the other two people.,One of the men then\nlsmdc3071_THE_DESCENDANTS-5247,8177,Someone gives a shrug of the hand. The mother,faces her daughter inquiringly.,laughs and a comment to herself continues evaluating her.,watches someone with an inquiring glance.,gives an awkward nod.,gives him a awkward nod and head away.,gold0-orig,pos,pos,pos,pos,pos,Someone gives a shrug of the hand.,The mother\nlsmdc3009_BATTLE_LOS_ANGELES-568,13627,He watches two more Marines descend from the chopper. Someone,lands then trots past his staff sergeant and nods.,tugs someone as he climbs down the back.,burst down through the rough - hewn road.,shields his face from the blast and flies into an airplane.,sings victoriously onto the stage.,gold0-orig,pos,unl,unl,unl,unl,He watches two more Marines descend from the chopper.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-568,13628,Someone lands then trots past his staff sergeant and nods. Someone,slides down a rope.,sets the phone aside.,holds up another corpse as someone follows someone into the closed office.,hands someone another personal item.,arrives and turns to the carnies in the room.,gold0-orig,pos,unl,unl,unl,unl,Someone lands then trots past his staff sergeant and nods.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-568,13631,The helicopter rises overhead into the night sky. Now someone,glances around as he leads his unit below an overpass.,follows someone as they take down the dunes.,\"is aimed pursuit, searchlight and alert.\",strolls down a city street.,,gold0-orig,pos,unl,pos,pos,n/a,The helicopter rises overhead into the night sky.,Now someone\nlsmdc3009_BATTLE_LOS_ANGELES-568,13626,\"As someone heads off, someone slides to the ground and catches his attention. He\",watches two more marines descend from the chopper.,climbs from his wooden edge and checks his watch.,\"walks away, revealing someone.\",unbuttons his shirt.,,gold0-orig,pos,unl,unl,unl,n/a,\"As someone heads off, someone slides to the ground and catches his attention.\",He\nlsmdc3009_BATTLE_LOS_ANGELES-568,13630,Someone looks over his team and leads them across the lot. The helicopter,rises overhead into the night sky.,approaches a massive jet with eight rocks.,\"heads down the street, passing zombies.\",sits at the building.,lands hard on a distant riverbank.,gold0-orig,pos,unl,unl,unl,pos,Someone looks over his team and leads them across the lot.,The helicopter\nlsmdc3009_BATTLE_LOS_ANGELES-568,13625,\"A second rope drops from above. As someone heads off, someone\",slides to the ground and catches his attention.,produces the bald heads headed toward the temple.,spots someone crossing to window.,takes two lines and helps them from its tight.,tumbles forward halfway down the slope.,gold0-orig,pos,unl,unl,unl,pos,A second rope drops from above.,\"As someone heads off, someone\"\nlsmdc3009_BATTLE_LOS_ANGELES-568,13629,Someone slides down a rope. Someone,looks over his team and leads them across the lot.,watches him go and raises it.,looks over his shoulder as he races.,sees logs in two.,bounds into the stairs and attacks another.,gold1-orig,pos,unl,unl,unl,unl,Someone slides down a rope.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-568,13624,He drops a long rope from the side door then faces Hector. He,falls out of the helicopter and slides down the rope to a deserted lot.,sees the bottle ring in the middle of the surrounding.,\"tapes the stump of the boy first, snapping it into web.\",report turns away.,chomps affectionately on the cat's claws.,gold0-reannot,pos,unl,unl,unl,unl,He drops a long rope from the side door then faces Hector.,He\nanetv_gh5di42-RJo,6661,A small boy wearing a black and red striped shirt is sitting with a drum set and playing drums. A man wearing a pink shirt and black trousers,is standing next to him.,is dancing with the hairdresser.,watch on the other side.,goes down a set of stairs and picks up his instrument.,,gold0-orig,pos,unl,unl,pos,n/a,A small boy wearing a black and red striped shirt is sitting with a drum set and playing drums.,A man wearing a pink shirt and black trousers\nanetv_gh5di42-RJo,6662,A man wearing a pink shirt and black trousers is standing next to him. Another person wearing a denim shirt,walks past the boy.,begins shaving his tattoo with an electric razor.,is shaving his legs.,is sitting next to a cup.,,gold1-orig,pos,unl,unl,unl,n/a,A man wearing a pink shirt and black trousers is standing next to him.,Another person wearing a denim shirt\nanetv_gh5di42-RJo,6665,He alternately hits the cymbals and the snare drums with the sticks. He,ends by hitting the cymbals.,then spins the hammer and moves his body once more.,continues to play pong tam - tam while playing on him and taking a different take playing it to record the play.,\"stands on the metal ladder, bounces from the floor, trying to hit it away.\",signals to a boy.,gold0-orig,pos,unl,unl,unl,pos,He alternately hits the cymbals and the snare drums with the sticks.,He\nanetv_gh5di42-RJo,6664,The boy continues to drum the cymbals and the hi - hat in a rhythmic way as the people cheer for him. He alternately,hits the cymbals and the snare drums with the sticks.,addresses the dog leaving the stage and gives it a high wave.,helps someone out of the room as he moves around to throw a drum.,comes toward the microphone and stops in front of him.,,gold0-orig,pos,unl,unl,pos,n/a,The boy continues to drum the cymbals and the hi - hat in a rhythmic way as the people cheer for him.,He alternately\nanetv_0gwhdJGq2eg,7122,They hit a ball back and forth in the water. they,\"swim after the ball, trying to catch it or hit it.\",hit the birdie back and forth together.,kick the ball back and forth against the camera.,kick it around as they hit the ball.,show a group of spectators in a flat arena watching.,gold0-orig,pos,unl,unl,unl,unl,They hit a ball back and forth in the water.,they\nanetv_0gwhdJGq2eg,7121,A group of people are swimming in a public pool. They,hit a ball back and forth in the water.,women are sitting on edge of the pool.,are sitting on a raft.,\", teams watch in a pool.\",muted the concert and an audience is watching them.,gold0-orig,pos,unl,unl,unl,unl,A group of people are swimming in a public pool.,They\nanetv_0gwhdJGq2eg,5590,The ball lands outside of pool and a little girl gives it back. The ball,gets thrown back and forth across the water.,lets the ball slip and she falls into the water.,dives again when another player climbs a stone.,is down on the grass in front of her.,bounces off of balls hard.,gold0-reannot,pos,unl,unl,unl,pos,The ball lands outside of pool and a little girl gives it back.,The ball\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-96103,8453,Someone comes out of his cottage. Someone,picks up a crossbow.,\"runs toward him, through a school of pearls.\",watches someone climb off.,stands alone beside one cage.,sleeps on a bed with his hands on his waist.,gold1-reannot,pos,unl,unl,unl,unl,Someone comes out of his cottage.,Someone\nanetv_Tcf9sOzU-7M,4463,Then the men run throughout the field and attack each other with paintball guns. They,run through the field quickly and attack one another using the paint gun.,ducks and they hit the wall into the field before kicking civilian away.,see the product in the motion.,make discs for the man to shoot where a rider is.,,gold0-orig,pos,unl,unl,unl,n/a,Then the men run throughout the field and attack each other with paintball guns.,They\nanetv_Tcf9sOzU-7M,4462,Several different intros eventually leads into two men pointing on a field and getting ready for paintball. Then the men,run throughout the field and attack each other with paintball guns.,throw two scores of arrows and measure the distance with an arrow.,speak to one another and lead into throwing their dodgeball against each other and smiling to the camera.,continue torching the croquette balls and aiming at one other.,run down a jump in the stream as the others continue fishing.,gold0-orig,pos,unl,unl,unl,unl,Several different intros eventually leads into two men pointing on a field and getting ready for paintball.,Then the men\nanetv_q8c_0JTe5r8,17737,A screen shows the batter for a marble cake. First the white batter,\"is placed in the bundt pan, followed by chocolate, then alternating between the two.\",is a big field that is the same shot of the game.,begins to hit the cups before making the pranam and making the pranam and showing it.,demonstrates hurling in a field while the man looks at his ball.,is many times and then shows how smaller the loser is.,gold0-orig,pos,unl,unl,unl,unl,A screen shows the batter for a marble cake.,First the white batter\nanetv_q8c_0JTe5r8,17738,\"A knife is run through the batter to create a marbling effect, and the batter is lightly shaken. A fully baked cake\",is then shown and sliced.,appears on top of the cake once more.,is placed in cakes and placed into a small bowl.,appears into the pouring glass.,,gold0-orig,pos,unl,unl,unl,n/a,\"A knife is run through the batter to create a marbling effect, and the batter is lightly shaken.\",A fully baked cake\nanetv_q8c_0JTe5r8,4008,Batter is placed into a baking dish. different kinds of batter,is entered in layers.,\"are juiced, adding ingredients to the fry pan.\",are poured on the salad.,is placed on a plate.,are squeezed into a glass.,gold0-orig,pos,unl,unl,unl,unl,Batter is placed into a baking dish.,different kinds of batter\nanetv_q8c_0JTe5r8,4009,Different kinds of batter is entered in layers. the batter,is spread with a butter knife.,uses them on utensil logos and thanks to the guy.,fixes the cue and serves.,points out very proudly and is drinking.,,gold0-orig,pos,unl,unl,unl,n/a,Different kinds of batter is entered in layers.,the batter\nlsmdc0014_Ist_das_Leben_nicht_schoen-54567,6466,\"He takes some travel folders from his pocket, looks at them and throws them away. His mother\",comes out of the house and kisses him.,\"looks at someone, then looks back over his shoulder.\",\"'s name appears on which someone says, making no response.\",\"steps back, then hurries up to the couch.\",comes up to the table and gives someone a hug.,gold1-orig,pos,unl,unl,unl,unl,\"He takes some travel folders from his pocket, looks at them and throws them away.\",His mother\nlsmdc0014_Ist_das_Leben_nicht_schoen-54567,6465,He is obviously disturbed about the latest turn of events. He,\"takes some travel folders from his pocket, looks at them and throws them away.\",shows journalists to karate the great length of the arena.,seems to float into the scene then pours more water.,would want to beam into someone's apartment.,smiles and puts his towel around the car.,gold1-orig,unl,unl,unl,unl,unl,He is obviously disturbed about the latest turn of events.,He\nlsmdc0014_Ist_das_Leben_nicht_schoen-54567,6464,Someone is standing at the garden gate. He,is obviously disturbed about the latest turn of events.,is engrossed in the large.,is taking out the a room where a man puts his own equipment to play on the dirt and before javelin high.,takes his left hand free.,looks puzzled as he sees a man helping them.,gold1-reannot,pos,unl,unl,pos,pos,Someone is standing at the garden gate.,He\nlsmdc1015_27_Dresses-79858,10648,\"He waits for a reaction, turns to walk away, then stops and comes back again. He\",holds up a pda phone with a ribbon on it.,is making the wrong turn.,puts down his cue to talk to the audience.,drops as he gets in the car and turns in his direction.,,gold0-orig,pos,unl,unl,unl,n/a,\"He waits for a reaction, turns to walk away, then stops and comes back again.\",He\nlsmdc1015_27_Dresses-79858,10652,She looks down at the gift in her hand and chokes back more tears. She,arrives back at her apartment and places her bag and keys on the hall table.,the shape senses advertising super moving.,sets her gunmen in its compartment.,is seen sitting beside her and continue - sweets.,,gold1-orig,unl,unl,unl,unl,n/a,She looks down at the gift in her hand and chokes back more tears.,She\nlsmdc1015_27_Dresses-79858,10651,Someone watches him go with a sad half smile. She,looks down at the gift in her hand and chokes back more tears.,\"looks tenderly at the baby, who wraps a passionate kiss around his neck.\",beams at the waist floor repeatedly as she runs up through the crowd of students.,walks onto the bench and sits next to him.,nods thoughtfully as he meets someone.,gold0-orig,pos,unl,unl,unl,unl,Someone watches him go with a sad half smile.,She\nlsmdc1015_27_Dresses-79858,10655,Someone is at his desk staring gloomily into space as someone walks up. He,gives a rueful smile and sinks back thoughtfully into his chair.,limps up the aisle and closes the door.,leans on the chair on the other side of the table.,puts up his hat.,,gold0-orig,pos,unl,pos,pos,n/a,Someone is at his desk staring gloomily into space as someone walks up.,He\nlsmdc1015_27_Dresses-79858,10657,Someone is at her father's store. Someone,freezes as she notices someone.,\"eyes someone, then picks up a bag.\",opens them to look if she could think.,starts to.,looks back towards the house.,gold1-orig,pos,unl,unl,unl,unl,Someone is at her father's store.,Someone\nlsmdc1015_27_Dresses-79858,10647,\"She looks at him with wide, tear - filled eyes. He\",\"waits for a reaction, turns to walk away, then stops and comes back again.\",retreats to one side of his house and stares at the city.,wears a torn cape in a red vest over her throat.,\"gives a slight nod, then snatches the shotgun and stuffs it in her pocket.\",lets go of someone's hand.,gold1-orig,pos,unl,unl,unl,pos,\"She looks at him with wide, tear - filled eyes.\",He\nlsmdc1015_27_Dresses-79858,10653,She arrives back at her apartment and places her bag and keys on the hall table. She idly,toys with a flower in one of the many vases which occupy every available surface.,\"crosses the kitchen, reading her book, then scoots into the kitchen.\",picks up her purse and places the rug on her feet.,walks toward the door with someone who leans her head against a door.,,gold0-orig,pos,unl,unl,unl,n/a,She arrives back at her apartment and places her bag and keys on the hall table.,She idly\nlsmdc1015_27_Dresses-79858,10649,He holds up a pda phone with a ribbon on it. He,\"places it in her hand, gives her a lingering look, then walks away.\",\"tries to build the hedges, then finds the edge structure he has.\",fills the passengers with the menacing lift.,\"tries to blow dry the zips, and hopefully his eyes are open shut.\",opens its box then scrutinizes him.,gold0-reannot,pos,unl,unl,unl,pos,He holds up a pda phone with a ribbon on it.,He\nlsmdc1015_27_Dresses-79858,10656,He gives a rueful smile and sinks back thoughtfully into his chair. Someone,is at her father's store.,is a person wearing a string pin.,is decked out through the plans of day.,drives and hits in.,tucks his wrist in.,gold0-reannot,pos,unl,unl,unl,pos,He gives a rueful smile and sinks back thoughtfully into his chair.,Someone\nlsmdc1015_27_Dresses-79858,10654,She idly toys with a flower in one of the many vases which occupy every available surface. Someone,is at his desk staring gloomily into space as someone walks up.,begins to put makeup on the makeup woman.,puts his feet on his shoulder and knits his brow.,\"stands in the darkness, her head bowed, her eyes wide.\",runs over to the previa and picks up handfuls of rubbish.,gold0-reannot,pos,unl,unl,unl,unl,She idly toys with a flower in one of the many vases which occupy every available surface.,Someone\nlsmdc3014_CAPTAIN_AMERICA-5336,5820,\"Someone hands someone a newspaper ad. At the World's Fair, someone\",waves to a pair of young women.,aims at the bodybuilder athletic man.,is cooking in the dining position doing a simple pyramid on a forest lawn.,lets her gaze steadily at her father and fiancee.,stands at a door with a cane on his chest.,gold0-orig,pos,unl,unl,unl,pos,Someone hands someone a newspaper ad.,\"At the World's Fair, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5336,5821,\"At the World's Fair, someone waves to a pair of young women. Someone, someone, and their dates\",stroll past futuristic displays.,gaze up the floor.,are standing ready a snowboarding.,\", are looking to a laptop.\",are on their phones then exhales a tiny breath and staring at the stands.,gold0-orig,pos,unl,unl,unl,pos,\"At the World's Fair, someone waves to a pair of young women.\",\"Someone, someone, and their dates\"\nlsmdc3014_CAPTAIN_AMERICA-5336,5823,They push through the crowd toward a stage. Female models,lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage.,shoot through the great air.,watch the dancers as they gawk at the dancers and flash.,take on a black and brown sweater.,wait for their names.,gold0-orig,pos,unl,unl,unl,pos,They push through the crowd toward a stage.,Female models\nlsmdc3014_CAPTAIN_AMERICA-5336,5825,\"He hands his top hat to one of the models, then kisses her on the lips. Taking a microphone, someone\",dabs his mouth with a handkerchief.,backs her backward into a present.,plays in the music.,sets the drums at his feet.,sits up to her.,gold0-orig,pos,unl,unl,unl,unl,\"He hands his top hat to one of the models, then kisses her on the lips.\",\"Taking a microphone, someone\"\nlsmdc3014_CAPTAIN_AMERICA-5336,5822,\"Someone, someone, and their dates stroll past futuristic displays. They\",push through the crowd toward a stage.,are carried newspapers across the corridor to the mountains.,need weapons from someone.,writhe in strong winds.,rock back and forth enough to know what they told when they see you.,gold1-orig,pos,unl,unl,unl,unl,\"Someone, someone, and their dates stroll past futuristic displays.\",They\nlsmdc3014_CAPTAIN_AMERICA-5336,5824,Female models lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage. He,\"hands his top hat to one of the models, then kisses her on the lips.\",stands at the ladies possibly dining and admires.,glances over to someone.,races pass the circling girls.,touches someone's arm.,gold1-orig,pos,unl,pos,pos,pos,Female models lean against a red car as a dark - haired mustached man in a tuxedo struts onto the stage.,He\nanetv_bjKd--KFl0E,3658,A woman is surfing on a large wave. There,are buildings behind her.,is a straw explaining how to play it.,are people talking in a stadium.,are a bunch of sand at the top of the pool.,is a small car in front of the camera.,gold1-orig,pos,unl,unl,unl,unl,A woman is surfing on a large wave.,There\nanetv_bjKd--KFl0E,15124,A still image is seen of a woman riding a wave on a surfboard. She,is wearing a white headband around her head.,takes a selfie and cheers as well as surfing in it.,jumps surfing and hugs a camera girl in the end.,ends with one holding his helmet and an orchestra outdoors.,goes up onto her hands and does a cartwheel.,gold0-orig,pos,unl,unl,unl,unl,A still image is seen of a woman riding a wave on a surfboard.,She\nanetv_bjKd--KFl0E,3659,There are buildings behind her. People,are standing on the beach in front of the buildings.,take flight as friends stairs into the church.,are watched on camera.,come to her including a third then slaps her face down the floor.,are now at someone's house.,gold0-reannot,pos,unl,unl,unl,unl,There are buildings behind her.,People\nlsmdc0005_Chinatown-48019,14971,In two of the photos a gnarled cane is visible. Someone,tosses down the photos in disgust.,touches the intercom and picks papers for the desk.,looks all the way to the sun.,sits in their driving seat.,,gold0-orig,pos,unl,unl,pos,n/a,In two of the photos a gnarled cane is visible.,Someone\nanetv_vvoqG7UQsdc,129,\"There are two students, a boy and a girl in a pole vault runway. One of the students, a boy\",sprints with the pole on the runway while a person in blue the other student watch him perform.,pulls a wrench on the chain passing them in strides until they finish an grate under the line and take rope.,performs complete balance bars while running and interacts with two men in public.,does a spin routine as people in the stadium perform forward vaults and landing above a pole.,\"looking on jump, runs away and gets in a cab of other men.\",gold0-orig,pos,unl,unl,unl,unl,\"There are two students, a boy and a girl in a pole vault runway.\",\"One of the students, a boy\"\nanetv_vvoqG7UQsdc,130,\"One of the students, a boy sprints with the pole on the runway while a person in blue the other student watch him perform. Then he\",jumps up high and lands a few feet away on the landing area.,\"walks away, the stilts is on the step and the routine is mostly, chased by other other athletes behind the car watching.\",swings and others remain on his feet as an athlete signal and his physical go very high.,\"jumps, jumps down on the board and falls down onto his mat.\",is first inch by foot fast in the sand.,gold0-orig,pos,unl,unl,unl,unl,\"One of the students, a boy sprints with the pole on the runway while a person in blue the other student watch him perform.\",Then he\nanetv_vvoqG7UQsdc,131,Then he jumps up high and lands a few feet away on the landing area. His actions,are replayed in slow motion to capture his jump and landing.,are repeated in slow motion and he begins to do tricks.,are shown in slow motion so he does n't exercise in the studio.,are repeated at the same time.,,gold0-orig,pos,unl,unl,unl,n/a,Then he jumps up high and lands a few feet away on the landing area.,His actions\nanetv_pCEg_GoXoU4,4658,More people are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them. In the end they,'re seen riding a boat together and waving to the camera.,ride around the streets using shovel and go along the rough waters.,show more clips of the city and fades of only one trees in the background.,reach all the distance and fall various bow and objects to one another.,\"seem one fun strong, while another woman is smiling and a girl walks behind her.\",gold0-orig,pos,unl,unl,unl,unl,More people are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them.,In the end they\nanetv_pCEg_GoXoU4,4657,Several shots are shown of scuba divers moving along the water and fish moving around them. More people,are seen moving along the ocean while gesturing to the camera and capturing all the wildlife around them.,are shown decorating the board and showing off people swimming.,\"ride by on the water on the water as well as people, surfing and doing tricks surfing.\",are shown swimming around the area and leads around a very large crowd of landscapes.,are seen speaking to one another and leads into several clips of this man swimming back and fourth.,gold0-orig,pos,unl,unl,unl,unl,Several shots are shown of scuba divers moving along the water and fish moving around them.,More people\nlsmdc0011_Gandhi-52353,12068,Someone reacts - - with surprise and caution. Again someone,is surprised - - but even more cautious.,gently shoves her hand into the doll's head.,is aware that someone wants a girl to pull out on the smoke under the covers.,looks tough on someone.,,gold0-orig,pos,unl,unl,pos,n/a,Someone reacts - - with surprise and caution.,Again someone\nlsmdc0011_Gandhi-52353,12061,The magistrate receives that news with some alarm. He,indicates that the clerk take his place.,\"rides in slow motion, doing numerous flips and tricks.\",looks impatient in a case lined with kit.,snatches his case of the unseen woman.,reads the pain as the move mixes in the living room.,gold0-orig,pos,unl,unl,unl,unl,The magistrate receives that news with some alarm.,He\nlsmdc0011_Gandhi-52353,12063,The clerk lowers his eyes to his pad. The magistrate,\"searches the distant wall, the top of his desk, his twitching hands for an answer.\",with his own bustier straightens on her shoulders.,man fumbles with the heavy sunglasses and proceeds to lay his cane on the table.,man works his jaw.,reporter nods politely and his gaze darkens.,gold1-orig,pos,unl,unl,unl,pos,The clerk lowers his eyes to his pad.,The magistrate\nlsmdc0011_Gandhi-52353,12064,\"The magistrate wets his lips. In the chaos of cheering and delight, the magistrate\",\"rises, looks around the room and heads for his chambers.\",\"sniff the ground, urging a layup.\",begins spinning his own way around.,turns to drinking again.,,gold0-orig,pos,unl,unl,pos,n/a,The magistrate wets his lips.,\"In the chaos of cheering and delight, the magistrate\"\nlsmdc0011_Gandhi-52353,12069,\"Again someone is surprised - - but even more cautious. It sounds casually ironic, but they\",\"look determined, even angry.\",hit it lower towards the corner.,are twice more defiant to hear the sound.,'re not entirely enjoying the music.,,gold0-orig,pos,unl,unl,pos,n/a,Again someone is surprised - - but even more cautious.,\"It sounds casually ironic, but they\"\nlsmdc0011_Gandhi-52353,12067,\"As he smiles down at them, he is turned by. Someone\",reacts - - with surprise and caution.,lifts up his head to see the astonishment rolling forth from the goblet.,slips on a swing towards the boys.,is suddenly shy towards someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"As he smiles down at them, he is turned by.\",Someone\nlsmdc0011_Gandhi-52353,12062,The magistrate looks around the courtroom and is only too aware of the mob outside. The clerk,lowers his eyes to his pad.,leans her dead uncle's head close to someone.,\"shop, then he walks onto the company images.\",\"gets back at the door, starts thrown swiftly against the refrigerator and comes in beside her.\",hits the black couches and runs after it back.,gold1-orig,pos,unl,unl,unl,unl,The magistrate looks around the courtroom and is only too aware of the mob outside.,The clerk\nlsmdc0011_Gandhi-52353,12066,Someone turns and starts out of the courtroom. Someone,steps down from the courtroom to the balcony.,runs into the kitchen and pours him a cup of spaghetti.,approaches the mother - in - law and pulls open a chair.,tries to crawl onto the pillow.,is seated at night's desk.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns and starts out of the courtroom.,Someone\nlsmdc0011_Gandhi-52353,12065,The journalists are scribbling furiously. Someone,turns and starts out of the courtroom.,emerges wearily as he follows someone's gaze.,sets down the thermos.,\"is interrupted by someone, who stands at the front desk and is looking at someone, set down to his desk.\",,gold0-reannot,pos,pos,pos,pos,n/a,The journalists are scribbling furiously.,Someone\nlsmdc0011_Gandhi-52353,12060,We see the front row from his point of view. The magistrate,receives that news with some alarm.,is reflected across the asphalt.,is then shown shaving the guy's leg.,mows a snowy village.,,gold0-reannot,pos,unl,unl,unl,n/a,We see the front row from his point of view.,The magistrate\nanetv_F30odTEdsxo,12192,People are playing cards around a table. People,are standing up behind them.,are laying out cards on a rocky field.,are walking at the court sewing their robes.,are playing a game of tennis.,,gold0-orig,pos,unl,unl,unl,n/a,People are playing cards around a table.,People\nanetv_F30odTEdsxo,12193,People are standing up behind them. A man,stands up from the table.,is held up in front of a plant.,is seen sitting behind hanging axes using pliers to clean a large onto the roof.,is watching the men while people run and talk.,,gold1-orig,unl,unl,unl,unl,n/a,People are standing up behind them.,A man\nlsmdc0033_Amadeus-66715,14971,\"He is an intelligent, dapper man of forty, wearing a military uniform. Around him but standing,\",\"are his someone, someone: stiff and highly correct.\",leads him across the city.,\"relaxed in his arms, ready to compete, then fades to people.\",directing towards a humvee with a tailor weights.,\"rocks the overalls adding to a several, strewn personal fluid of all the colors.\",gold0-orig,pos,unl,unl,unl,unl,\"He is an intelligent, dapper man of forty, wearing a military uniform.\",\"Around him but standing,\"\nlsmdc0010_Frau_Ohne_Gewissen-51053,5253,Someone takes his hat and briefcase. They both,move toward the archway.,step out of the hall.,\"seem to rise, sitting seated at the edge of the bed.\",look around as it picks up the magnificent statue and flashes.,turn back to face the window.,gold0-orig,pos,unl,unl,unl,unl,Someone takes his hat and briefcase.,They both\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1558,She gets a text from someone. Someone,gets a photo message showing someone with someone.,is reading her course from her office.,curls in over her face.,leans back on her chair.,sits in a chair.,gold0-orig,pos,unl,unl,pos,pos,She gets a text from someone.,Someone\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1561,\"She falls back and smiles at him, meaningfully. He\",moves in for another kiss.,gets up and goes to the stage.,\"jumps on, seeing someone's blood retreating from the moon.\",looks down and finds her hypnotized by the water.,knits his brow as he sprints back toward her.,gold0-orig,pos,unl,unl,unl,unl,\"She falls back and smiles at him, meaningfully.\",He\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1571,\"Clad in a T - shirt and panties, she digs behind a sofa cushion, pulls out her cellphone. The display\",shows someone's photo.,is filled with silver letters.,shows a $100 bill.,shows an employee clerk.,,gold0-orig,pos,unl,unl,pos,n/a,\"Clad in a T - shirt and panties, she digs behind a sofa cushion, pulls out her cellphone.\",The display\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1562,Someone lies back and he leans over her. She,switches off a lamp.,grabs the cat's arm and shuts him down.,jerks someone down - - right.,gently closes her mouth and lays down on her stomach.,switches on the ipod.,gold1-orig,pos,unl,unl,pos,pos,Someone lies back and he leans over her.,She\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1565,\"She grins, licks her fingertip, and strokes his ear. The woman\",kisses down his lifted arms toward his armpit.,peers down into the tiled room with bare feet.,reads off more paper with a pen titled it.,walks toward the slytherin arena.,takes a clean drink.,gold0-orig,pos,unl,unl,unl,unl,\"She grins, licks her fingertip, and strokes his ear.\",The woman\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1570,\"She wakes and gets up groggily. Clad in a T - shirt and panties, she\",\"digs behind a sofa cushion, pulls out her cellphone.\",\"sits on his bed, giving photos of him.\",takes off his blindfold sunglasses.,manages to support him out of the bedroom door.,flops down on the bed and touches the comforter on her brow.,gold0-orig,pos,unl,unl,unl,unl,She wakes and gets up groggily.,\"Clad in a T - shirt and panties, she\"\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1569,\"Now sunlight shines on someone's hair as she sleeps, spooning with someone on her sofa. She\",wakes and gets up groggily.,crashes at her front belly and grimaces.,looks up at two pins on her car and arms.,sets off her headphones and briefly shakes her hips.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now sunlight shines on someone's hair as she sleeps, spooning with someone on her sofa.\",She\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1567,She exhales in someone's face. He,\"raises a finger, gesturing for her to pause.\",sits on her shoulders.,draws someone's face and kisses him passionately.,watches the smiling woman watches.,splits from falling ash.,gold1-orig,pos,unl,unl,unl,unl,She exhales in someone's face.,He\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1563,\"As someone picks up his cell phone, his date lifts his arm, smells his armpit and licks his tricep. Someone\",puts the phone to his ear.,glances back at the young guy who wears the mask occasionally.,shifts his eyes as he peruses his son's interrogator.,sell crash for a cafe inside a private lounge.,\"walks off, leaving someone alone with a slight smirk.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone picks up his cell phone, his date lifts his arm, smells his armpit and licks his tricep.\",Someone\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1560,Now someone makes out with someone on her couch. She,\"falls back and smiles at him, meaningfully.\",looks her in the eye.,hands a note to someone.,\"nudges him, he lifts her.\",,gold1-orig,pos,unl,unl,pos,n/a,Now someone makes out with someone on her couch.,She\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1564,Someone puts the phone to his ear. She,\"grins, licks her fingertip, and strokes his ear.\",\"turns from his purse, pulls him to his seat belt, and taps his arm.\",looks from him warily.,hurries curtly to meet him.,pours her vodka with her drink.,gold1-reannot,pos,unl,unl,pos,pos,Someone puts the phone to his ear.,She\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1559,Someone gets a photo message showing someone with someone. Now someone,makes out with someone on her couch.,comes in through a box of toiletries.,\"leaps, explode sparks.\",reads an essay through the page.,stomps snow - covered parked sedan.,gold0-reannot,pos,unl,unl,unl,unl,Someone gets a photo message showing someone with someone.,Now someone\nlsmdc3026_FRIENDS_WITH_BENEFITS-1399,1566,Moving his sleeve aside she sniffs deeply. She,exhales in someone's face.,looks down at his bloody.,pours the powder into her clothes.,strolls through the marketplace.,looks at the screen.,gold0-reannot,pos,unl,unl,pos,pos,Moving his sleeve aside she sniffs deeply.,She\nanetv_ZGsYV0KDB-4,16917,A dog is seen lying down on the floor. The dog,is dreaming in his sleep.,is being dragged to its high feet.,takes the drink out of hand.,gets pierced and leads into one dog throwing off the dog.,moves around the dog while looking off into the distance.,gold1-orig,pos,unl,unl,unl,unl,A dog is seen lying down on the floor.,The dog\nanetv_ZGsYV0KDB-4,16918,The dog is dreaming in his sleep. He,\"starts running very fast, then jumps up and runs face first into the wall.\",puts it in someone's ears.,opens the funny every night.,puts with the lotion on his guitar and picks it up.,is looking at a laptop on some bunk away with normal interior machinery and a bright hardwood floor.,gold0-orig,pos,unl,unl,unl,unl,The dog is dreaming in his sleep.,He\nanetv_ZGsYV0KDB-4,8070,A dog is sitting on the ground next to the words Dog Training. A dog,\"is seen lying on the living room floor, running in his sleep.\",runs out and comes onto several stairs.,hops up and grabs her dog off while a woman right behind her.,is walking in a large dog.,runs out of a rope like the man on a horse.,gold1-reannot,unl,unl,unl,unl,unl,A dog is sitting on the ground next to the words Dog Training.,A dog\nanetv_ZGsYV0KDB-4,8071,\"A dog is seen lying on the living room floor, running in his sleep. He suddenly\",\"jumps up, running face first into the wall.\",whacks the rolling ball in his hand and pushes the desk away.,\"approaches a bag of food in his lap, as he talks to the camera.\",stays then his hand until it end.,stops in front of the dog and starts taking off his socks.,gold0-reannot,pos,unl,unl,unl,unl,\"A dog is seen lying on the living room floor, running in his sleep.\",He suddenly\nlsmdc1011_The_Help-78370,13900,She invites someone to follow her to the sitting room of her spotless little house. Someone,sits down on the sofa and unties the headscarf she is wearing.,sits at a table that read mostly packed.,steps out onto a balcony and stares into a dark space.,\"arrives at a snowy construction after the entering, has moved slowly through the dusty office.\",walks away and peers in through the window to see his alarm work.,gold0-orig,pos,unl,unl,unl,unl,She invites someone to follow her to the sitting room of her spotless little house.,Someone\nlsmdc1011_The_Help-78370,13899,Someone thinks on his words. Later at home someone,hurries to the door.,rushes to his mom and opens the door.,\"lies on his bed, staring in a toilet.\",\"sits in the backyard, watching her.\",files onto a phone.,gold0-reannot,pos,unl,unl,unl,unl,Someone thinks on his words.,Later at home someone\nlsmdc3068_THE_BIG_YEAR-3333,7548,\"Leaving the mustached birder in the passenger seat, someone lowers his window, then climbs out of the car through it. He\",\"faces the tree, grimly inspecting the damage to the car's back door.\",skids to a stop and glances at someone.,stands motionless at the rear of the ship.,\"nudges someone's hand on the security panel as he steps out, as a car pulls away.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Leaving the mustached birder in the passenger seat, someone lowers his window, then climbs out of the car through it.\",He\nlsmdc3068_THE_BIG_YEAR-3333,7547,\"He wrenches the wheel, waking his companion. Leaving the mustached birder in the passenger seat, someone\",\"lowers his window, then climbs out of the car through it.\",squints across the scene.,slips down a short flight of steps.,glances back and runs toward the youth.,stares at the arms of the sinking ship.,gold0-orig,pos,unl,unl,unl,unl,\"He wrenches the wheel, waking his companion.\",\"Leaving the mustached birder in the passenger seat, someone\"\nlsmdc3068_THE_BIG_YEAR-3333,7546,\"At the wheel of a car, someone wakes to find himself in the path of an 18 - wheeler. He\",\"wrenches the wheel, waking his companion.\",jumps off his van's hood.,notices some foam on her hands.,sees someone as someone spins him out.,runs after the group.,gold0-orig,pos,unl,unl,unl,unl,\"At the wheel of a car, someone wakes to find himself in the path of an 18 - wheeler.\",He\nlsmdc3068_THE_BIG_YEAR-3333,7545,\"It comes to life and flies at us. At the wheel of a car, someone\",wakes to find himself in the path of an 18 - wheeler.,climbs and turns to someone's accomplice.,faces the giant ocean.,appears as a shield and drives the ignition.,examines the fridge then backs the trunk of the car.,gold0-orig,pos,unl,unl,unl,unl,It comes to life and flies at us.,\"At the wheel of a car, someone\"\nlsmdc3068_THE_BIG_YEAR-3333,7551,\"In the passenger seat, the mustached birder keeps one arm at his side as he starts to turn in his seat. He\",\"winces and unbuckles his seat belt, then reaches into the back.\",\"gazes down at the street, then back at him three times and stares up at us.\",\"speeds down the sidewalk, as someone pulls the detonator on its side, then leaps from the truck.\",whizzes by the hydra's open doors as an elderly man comes up to the gate and opens the door.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the passenger seat, the mustached birder keeps one arm at his side as he starts to turn in his seat.\",He\nlsmdc3068_THE_BIG_YEAR-3333,7544,Our view contracts around an owl in a nearby tapestry. It,comes to life and flies at us.,crumbles before a crowd of people.,enters the village carrying mounds of crutches.,pulls onto a runway with the archers over it.,beats the clock doors.,gold1-orig,pos,unl,unl,unl,unl,Our view contracts around an owl in a nearby tapestry.,It\nlsmdc3068_THE_BIG_YEAR-3333,7549,\"He faces the tree, grimly inspecting the damage to the car's back door. Someone\",turns wide - eyed.,steps into a silver sedan.,appears at the window.,enters the large cell house.,opens it to her.,gold0-orig,pos,unl,unl,unl,unl,\"He faces the tree, grimly inspecting the damage to the car's back door.\",Someone\nlsmdc3068_THE_BIG_YEAR-3333,7550,\"Someone turns wide - eyed. In the passenger seat, the mustached birder\",keeps one arm at his side as he starts to turn in his seat.,presses his head on the brakes.,walks between them in a huff.,walks in and hands her a pot of milk.,gets out of his suv with his hand in a wire.,gold0-reannot,pos,unl,unl,unl,unl,Someone turns wide - eyed.,\"In the passenger seat, the mustached birder\"\nlsmdc3009_BATTLE_LOS_ANGELES-374,18172,\"Brick of c - 4 to a tire, someone stands. They\",move behind another car and add explosives.,sit alone in the open.,sit on the dirt inside.,make their way down the dark street.,sees someone trotting down the road.,gold0-orig,pos,unl,unl,pos,pos,\"Brick of c - 4 to a tire, someone stands.\",They\nlsmdc3008_BAD_TEACHER-3944,9825,Now the principal holds a nudie magazine. He,shifts his baffled gaze.,lowers its silent prayer and smiles.,sprinkles a final stack of the bills.,peers out from an upper window.,exits a fenced hanger.,gold0-orig,pos,unl,unl,unl,unl,Now the principal holds a nudie magazine.,He\nlsmdc3008_BAD_TEACHER-3944,9827,The boy passes someone on his way out and she covers her nose. Someone,notices dolphin figurines all around the office and photos of the principal swimming with dolphins.,\"recalls who sits on her bed, watching in bed.\",\"lifts another man, then she aims her rifle aside.\",glows on the night sky.,hands the lady to her dad.,gold0-reannot,pos,unl,unl,unl,unl,The boy passes someone on his way out and she covers her nose.,Someone\nlsmdc3008_BAD_TEACHER-3944,9826,He shifts his baffled gaze. He,reaches for his magazine.,licks his spread lips and shakes his head.,picks up a green page.,\"breaks off, then lowers his gaze then shrugs.\",glances over his shoulder as he goes.,gold0-reannot,pos,unl,unl,pos,pos,He shifts his baffled gaze.,He\nanetv_3CeZS6-0NfU,16544,A guy is in his garage. The guy,uses a welding tool.,removes a tube from his neck.,climbs to a lower fence.,is using a tool to paint something.,,gold0-orig,pos,unl,unl,pos,n/a,A guy is in his garage.,The guy\nanetv_3CeZS6-0NfU,7934,\"A guy is welding a brown, flat object. The guy\",lifts his black helmet.,uses the power hose off the table.,holds his feet up and begins welding.,uses a rake to rip grass off.,uses a welding tool on a rug.,gold0-orig,pos,unl,unl,unl,pos,\"A guy is welding a brown, flat object.\",The guy\nanetv_3CeZS6-0NfU,16545,The guy uses a welding tool. The guy,stops using the welding tool.,smokes before looking off.,sticks the welding metal.,goes to the audio top of the ski using a tool.,rubs some wood onto a piece of wood.,gold0-orig,pos,unl,unl,unl,unl,The guy uses a welding tool.,The guy\nanetv_3CeZS6-0NfU,7933,A guy is indoors working in his garage. A guy,\"is welding a brown, flat object.\",picks up someone's hand from the table on his computer.,takes off his cigarette and blows smoke.,drives a car at a large park.,runs out to a man in the coat and hat.,gold0-orig,pos,unl,unl,pos,pos,A guy is indoors working in his garage.,A guy\nanetv_3CeZS6-0NfU,7935,The guy lifts his black helmet. The guy,speaks and smiles slightly.,lifts the dog off the mat.,talks and lifts the barbell to the ground.,releases the yellow van.,holds up a pieces of bowling paper.,gold0-orig,pos,unl,unl,unl,pos,The guy lifts his black helmet.,The guy\nanetv_3CeZS6-0NfU,16546,The guy stops using the welding tool. The guy,moves the welding helmet from his face.,walks up to the table and picks on to his legs.,drops to the ground with another tool.,stops welding and lowers his coat.,stops welding a piece of metal.,gold0-reannot,pos,unl,unl,pos,pos,The guy stops using the welding tool.,The guy\nanetv_gYARGADLcmQ,1522,We see an aerial view of a beach with people all over. We,see people building sand castles.,\", and fishes and native bean, is getting teenaged in the snow, and a highlight photo of his boy being shown.\",\"see bmx warehouses, then a man in the talking behind and we see a game in the distance.\",see a title screen and we see a lady sitting on a boat as the lady waves.,,gold1-orig,pos,unl,unl,pos,n/a,We see an aerial view of a beach with people all over.,We\nanetv_gYARGADLcmQ,1524,\"We interview a judge, who then walks among the people. We\",see two men interviewed.,see people through the water and back in it.,circle and hold the ball on both hands.,see a screen and about that with a team doing on each other.,see the match with a little more and a referee talking to the camera.,gold0-orig,pos,unl,unl,unl,unl,\"We interview a judge, who then walks among the people.\",We\nanetv_gYARGADLcmQ,1521,We see an animated opening screen. We,see an aerial view of a beach with people all over.,see a person ride a small kite.,see a man throwing a ball to the camera.,see an colorful screen.,see the lady standing at the top of the river.,gold0-reannot,pos,unl,pos,pos,pos,We see an animated opening screen.,We\nanetv_gYARGADLcmQ,1523,We see people building sand castles. We,\"interview a judge, who then walks among the people.\",see people in clouds talking.,see two boys with defenders.,see the kids riding a raft on a mountains.,see a board in the street.,gold0-reannot,pos,unl,unl,unl,unl,We see people building sand castles.,We\nanetv_NPt1niJMbvE,10591,\"After, the gymnast jumps happily. People\",take pictures of the gymnast.,turn to the right then finish on jumping.,perform several jumps as a coach.,go down high and steep on another day in front of the audience.,,gold0-orig,pos,unl,unl,unl,n/a,\"After, the gymnast jumps happily.\",People\nanetv_BAgUUUOGaxI,14722,A man is seen sitting in a busy city square playing an accordion while others watch. The man,continues playing as people walk around and notice.,continues playing with the saxophone and smiling to the camera.,continues to dance around the ground while looking off into the distance.,continuously throws a man off and over while others play on the sides.,plays the harmonica in the end.,gold0-orig,pos,unl,unl,unl,pos,A man is seen sitting in a busy city square playing an accordion while others watch.,The man\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7480,The battered car starts itself. It,\"reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest.\",leaps off the roof.,passes over a magazine seller's empty vent.,bounces into the seat.,,gold1-orig,pos,unl,unl,unl,n/a,The battered car starts itself.,It\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7473,The spiders scuttle close behind the car as it jolts away between the trees. The floor of the forest,is a seething mass of spiders.,is unstuck as coal stacked over the dirt vehicle avoiding frolic items.,is broken by the path's track streams.,slides up through the hole in the ground.,is suddenly infested by gunfire.,gold1-orig,pos,unl,unl,unl,unl,The spiders scuttle close behind the car as it jolts away between the trees.,The floor of the forest\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7483,\"In the hospital wing, someone puts some fresh flowers on the table by someone's bed. He and someone\",sit sadly beside their petrified friend.,sit on maximilian's shoulders and clips him from behind.,move timidly into the house where someone works.,enter a motel room.,,gold0-orig,pos,unl,unl,unl,n/a,\"In the hospital wing, someone puts some fresh flowers on the table by someone's bed.\",He and someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7467,The car hits the ground and comes to a halt dislodging the lost spider. The spider,grabs someone through the open window.,\"leaps through it, its head swinging with its strap.\",releases its grip at him.,pokes its face like a web as a skull.,,gold0-orig,pos,unl,unl,pos,n/a,The car hits the ground and comes to a halt dislodging the lost spider.,The spider\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7479,\"Steadying itself, the car flies high over the tops of the tall trees. It\",zooms over the forest and lands heavily on the grass beside someone's cottage.,\"bounces off its white and blue scanner, which spreads around the plane into the sky.\",'s four paddles to banks into the water toward the ship.,falls close with a stylus as the serpent rings.,creature scrapes the trees and harmlessly in the observatory.,gold0-orig,pos,unl,unl,unl,unl,\"Steadying itself, the car flies high over the tops of the tall trees.\",It\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7482,\"The sun rises behind the towers and turrets of Hogwarts School. In the hospital wing, someone\",puts some fresh flowers on the table by someone's bed.,drops her book and looks down at the operating carpet just making up her friend's office.,studies the face and extends his chin.,sits on a sofa.,,gold0-orig,pos,unl,unl,pos,n/a,The sun rises behind the towers and turrets of Hogwarts School.,\"In the hospital wing, someone\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7484,He and someone sit sadly beside their petrified friend. Someone,gently strokes her hand.,hurries away with someone and a young boy with a third and someone slytherins.,\"join their routine, the boys cheer for the others.\",touches a girl's forehead.,stands silently in the doorway.,gold0-orig,pos,unl,unl,unl,unl,He and someone sit sadly beside their petrified friend.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7463,It stops and the doors fly open. Fang,\"jumps into the back seat, someone into the front.\",lands with smoke in the air as it goes out.,takes someone's mask and puts it back in its holder.,hits the rooster's door.,appears together in the empty room.,gold0-orig,pos,unl,unl,unl,unl,It stops and the doors fly open.,Fang\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7462,They pull out their wands. It,'s the ford anglia.,picks up two weapons from the inside of the tank which begins to move and deflected again.,'s fire opens up.,'s with the balloon around him.,\"sits on a mat as someone holds someone 'arm and elbows them in the mouth, then locks the actors into their gazes.\",gold0-orig,pos,unl,unl,unl,unl,They pull out their wands.,It\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7465,\"Someone dives for the passenger seat as the spiders attack. Scattering spiders, someone\",backs the car out around the tree roots and back along the narrow tunnel.,reaches someone and takes out his wand.,notices the lit shape underneath the bed.,looks up.,,gold1-orig,pos,unl,unl,pos,n/a,Someone dives for the passenger seat as the spiders attack.,\"Scattering spiders, someone\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7481,\"It reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest. The sun\",rises behind the towers and turrets of hogwarts school.,\"is low on a sky trail, with a line of moonlit trees.\",\"hops from the warm glow of the cottage, crosses the kitchen, and waves throughout the room.\",is an inches low across the outside.,can be seen against the harsh sky.,gold1-orig,pos,unl,unl,unl,pos,\"It reverses, changes direction, and drives away past someone's cottage disappearing into the trees at the edge of the dark forest.\",The sun\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7476,Someone grabs the gear stick. They both,heave on the gear stick.,take an inspection - as someone load into sparking glasses.,grimace as a tiered.,stare down at the animal.,bow with placid sharp.,gold0-orig,pos,unl,unl,unl,unl,Someone grabs the gear stick.,They both\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7474,The floor of the forest is a seething mass of spiders. Someone,turns to someone in desperation.,checks the rearview mirror.,pulls the torch back into the unlit flames.,\"chugs the square liquor over his butt from the hose, still holding the hose.\",reads a slip of paper.,gold0-orig,pos,unl,unl,unl,pos,The floor of the forest is a seething mass of spiders.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7477,They both heave on the gear stick. The car,rises into the air smashing into a branch and scattering spiders.,flies right up towards them.,pulls up in a dark unlit street.,pulls away from someone's motel.,,gold0-orig,pos,unl,pos,pos,n/a,They both heave on the gear stick.,The car\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7464,\"Fang jumps into the back seat, someone into the front. Someone\",dives for the passenger seat as the spiders attack.,goes just out of the building door.,stumbles and becomes aware of someone's pacing and body hanging beneath the ledge.,races onto the bridge and takes out his hand.,,gold0-orig,pos,unl,unl,pos,n/a,\"Fang jumps into the back seat, someone into the front.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7471,Someone starts the car and puts it into reverse. Someone,turns the car and accelerates.,walks out of the booth.,\"takes a seat on the bench, and waves to his left hand, diner, and crouches over his work.\",barely has n't stopped her.,lets the kids excitedly.,gold0-orig,pos,unl,unl,unl,pos,Someone starts the car and puts it into reverse.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7478,\"The car rises into the air smashing into a branch and scattering spiders. Steadying itself, the car\",flies high over the tops of the tall trees.,grinds on a branch.,\"crashes against the wall, moving into a stealthy swirl of debris.\",blows a clatter to the ground.,shines its headlights at the flames.,gold0-orig,pos,unl,unl,unl,unl,The car rises into the air smashing into a branch and scattering spiders.,\"Steadying itself, the car\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7472,Someone turns the car and accelerates. The spiders,scuttle close behind the car as it jolts away between the trees.,are instructed of what tries the video.,\"climb the pavement back to the locker room, where a guy carries a shop and a helmet into a backpack.\",\"start to break into a line, ready to go out.\",are moving down a curving path at a neat jog.,gold1-orig,pos,unl,unl,unl,unl,Someone turns the car and accelerates.,The spiders\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7469,\"Someone's eyes suddenly open wide. As he looks through the cracked windscreen, hundreds of huge spiders\",\"appear from amongst the shadowy trees and move towards the car, ready to attack again.\",lie in its wings.,\"leap on the far end, racing around him.\",hover over his head.,,gold0-orig,pos,unl,pos,pos,n/a,Someone's eyes suddenly open wide.,\"As he looks through the cracked windscreen, hundreds of huge spiders\"\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7470,\"As he looks through the cracked windscreen, hundreds of huge spiders appear from amongst the shadowy trees and move towards the car, ready to attack again. Someone\",starts the car and puts it into reverse.,jumps into the water and looks up the mess.,holds his arm of the path and gazes down a path of green.,falls from the boxcar.,,gold0-orig,pos,unl,unl,unl,n/a,\"As he looks through the cracked windscreen, hundreds of huge spiders appear from amongst the shadowy trees and move towards the car, ready to attack again.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7485,Someone gently strokes her hand. He,notices something clutched in her clenched fingers.,continues to dance with the dancers.,places one hand on someone's cheek.,lays the ink gently on the glass.,closes his mouth and smiles softly.,gold0-orig,pos,unl,pos,pos,pos,Someone gently strokes her hand.,He\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7468,The spider is hurled backwards. Someone,looks at someone with relief.,pokes his mace out through the glassy water.,\"turns on his make - up, aiming a torch.\",\"raises the flamethrower head, striking someone in the face.\",crashes into a timbers.,gold1-reannot,pos,unl,unl,unl,unl,The spider is hurled backwards.,Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93247,7466,\"Scattering spiders, someone backs the car out around the tree roots and back along the narrow tunnel. The car\",hits the ground and comes to a halt dislodging the lost spider.,stays ahead roof and pinches the handle with his fingers.,glides open as someone turns.,drops out the form and see bullets in the driver's rear door.,swerves onto the dirt road in the street de a dust clearing.,gold0-reannot,pos,unl,unl,unl,pos,\"Scattering spiders, someone backs the car out around the tree roots and back along the narrow tunnel.\",The car\nanetv_CTWo9EfQ4Hc,8594,An elderly woman wearing a one piece suit is standing on a ramp in an indoor gym. The woman,\"bends down and moves the ramp, stands on it, then mounts the double parallel bars.\",walks down a set of steps to see a place to leave if a woman is swimming.,jumps up and down on a bar.,\"is hula hooping in a living room with a small audience, a man in a white skirt is talking.\",\"is going down track, falling over her belly several times.\",gold0-orig,pos,unl,unl,unl,pos,An elderly woman wearing a one piece suit is standing on a ramp in an indoor gym.,The woman\nanetv_CTWo9EfQ4Hc,7481,She performs a routine on the double bars. She,walks off to the applause of the audience.,balances held on her belly as she performs.,\"spins and does flips, baton in the air.\",does a gymnastics routine on the bars.,flips off onto handstands and lands on the bars.,gold0-orig,pos,unl,unl,pos,pos,She performs a routine on the double bars.,She\nanetv_CTWo9EfQ4Hc,7480,An older woman prepares to take the bars at a professional athletic venue with an audience. She,performs a routine on the double bars.,\"runs past the fence, then sets a javelin with her free hand.\",resume being mounted throughout.,see teams playing a football as a baseball.,,gold0-orig,pos,unl,unl,unl,n/a,An older woman prepares to take the bars at a professional athletic venue with an audience.,She\nanetv_cd_-gvb82Bs,7292,A man is seen speaking to the camera holding a window washer and begins getting the windows wet. He then,points to the window while wiping it down over and over again with various tools.,turns back and then uses a cleaner to sweep up his wet hair.,finishes and pushes in the car while still looking back to the camera.,shows how to reach the car in the end and motions to pumpkins to set it down.,shows off the excess plaster that blows onto the windshield with the same tool cut off the side.,gold0-orig,pos,unl,unl,unl,unl,A man is seen speaking to the camera holding a window washer and begins getting the windows wet.,He then\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7573,He smiles when he recognizes someone house. He,sees someone in an upstairs window.,\"to an attendant, someone comes up with veiled robe and swinging a shotgun.\",sends a mound of luggage flying down the hall accompanied by a group of nuns in black.,puts both his hands.,stepped toward one of the actors and whispers to someone.,gold0-orig,pos,unl,unl,unl,pos,He smiles when he recognizes someone house.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7570,\"Dust rises as they apparate. Alone, someone\",lands in a stream.,follows some miles away.,slips into a barrier which crashes between the steering wheel and bends away.,\"stands among the pie, standing in their midst with a dinner with red, beautiful, small openings v. much eastern.\",\"rests the carved mask on someone's folded legs and spins the spoon, presenting people's oars.\",gold1-orig,pos,unl,unl,unl,unl,Dust rises as they apparate.,\"Alone, someone\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7571,\"Alone, someone lands in a stream. Shaking water from his trainers, he\",trudges through a reed bed.,wheels into the yearbook room and spots two russians then reach for a phone.,slips with treasure in his stomach.,trots up to the beach.,,gold0-orig,pos,unl,unl,pos,n/a,\"Alone, someone lands in a stream.\",\"Shaking water from his trainers, he\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7574,\"He sees someone in an upstairs window. Coming downstairs, someone\",spots someone's trunk and white owl.,attaches a pillow to someone behind him.,glares in at him.,heads to another china worker.,grabs the blender bag of condoms.,gold1-reannot,pos,unl,unl,unl,unl,He sees someone in an upstairs window.,\"Coming downstairs, someone\"\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72122,7572,\"Shaking water from his trainers, he trudges through a reed bed. He\",smiles when he recognizes someone house.,kicks down the sneakers.,lands heavily on the vehicle.,tosses the remote into the table and fumbles with his broken egg.,watches him exchange a look.,gold0-reannot,pos,unl,unl,unl,pos,\"Shaking water from his trainers, he trudges through a reed bed.\",He\nanetv_AZx_lm2XLHk,14604,A large outdoor arena is show from a view above and a display screen shows the stats for women's team standings and then the words high jump appear. A man named bryan mcbride,\"is standing and then begins his high jump where he clears it, lands and vigorously cheers as he runs off.\",is shown snowboarding through a stair wall of ice using some techniques.,pulls a sizable girl down and above try to put her on parallel bars to get in the balance.,prepares to avoid so handsome.,crackers to a teenage boy in bmx team who is walking next to him in the center of the field and does interview.,gold0-orig,pos,unl,unl,unl,unl,A large outdoor arena is show from a view above and a display screen shows the stats for women's team standings and then the words high jump appear.,A man named bryan mcbride\nanetv_AZx_lm2XLHk,12015,A large track is shown with a man standing ready. The man,jumps over a bar and celebrates.,continues walking down the street holding a disc.,hops in the sand as the woman continues to throw the object.,performs the same jump.,is seen swinging around and throwing a javelin.,gold0-orig,pos,unl,unl,pos,pos,A large track is shown with a man standing ready.,The man\nanetv_AZx_lm2XLHk,12016,The man jumps over a bar and celebrates. His jump,is shown again as well as him walking away.,releases the long pole and approaches by the pole.,falls as the crowd cheers him in cheers.,is shown again at high speed.,over the bar and lands on the mat.,gold0-reannot,pos,unl,pos,pos,pos,The man jumps over a bar and celebrates.,His jump\nlsmdc1024_Identity_Thief-82187,3259,\"A police car pulls up behind him. Now, officers\",emerge from the cruiser.,surround the records room where a co - officer lands on a covered raised platform.,steer the procession down a dark street.,dash into a police car.,rush past an ambulance.,gold1-orig,pos,unl,unl,unl,pos,A police car pulls up behind him.,\"Now, officers\"\nlsmdc1024_Identity_Thief-82187,3260,\"Now, officers emerge from the cruiser. Someone\",peeks out the window as one of the officers approaches.,stares dragging a photo to the window into a dark.,climbs out of the helipad and copies colleague.,beckons the other steward as someone walks into the room.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, officers emerge from the cruiser.\",Someone\nanetv_jG1kgKJkf8c,16856,A street performer is sitting down on a crate and drumming on buckets and pans with drum sticks. He,\"busts on of the buckets and in frustration, stabs it with the stick.\",\"is doing skateboard on a short bar, followed by group of people playing cheers.\",is standing on the side of a beach playing step wearing stilts.,goes into the middle of the sand and pauses and watch the horses away.,,gold0-orig,pos,unl,unl,unl,n/a,A street performer is sitting down on a crate and drumming on buckets and pans with drum sticks.,He\nanetv_jG1kgKJkf8c,16857,\"He busts on of the buckets and in frustration, stabs it with the stick. He\",replaces the bucket and starts over in his beat as a crowd gathers.,continues to try to struggle to the ends.,catches up to does it for her.,sprinkles salt onto the outside of his hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"He busts on of the buckets and in frustration, stabs it with the stick.\",He\nanetv_jG1kgKJkf8c,16858,He replaces the bucket and starts over in his beat as a crowd gathers. He,rearranges the buckets once again and continues drumming.,runs past the bull and knocks over no more and throws to the ground.,puts his pipe in line and continues hammering down the walls.,spread outside as he is wrapped in a dressing environment.,explains panties in a blue pool.,gold0-reannot,pos,unl,unl,unl,unl,He replaces the bucket and starts over in his beat as a crowd gathers.,He\nanetv_nxyENrsY4mo,4134,\"Finally, the people then get on their horses and they all begin competing with one another playing a game of Polo. As they play, a woman\",is shown on the side of the field taking pictures and a small logo for the photography shows on the end of the screen.,stands in front of them and children.,hugs the stuffed youth.,holds the diplomas up to one girl and begin running along with the group.,plays tearfully and continues performing on the curling field as well as spectators in the forest.,gold0-orig,pos,unl,unl,unl,unl,\"Finally, the people then get on their horses and they all begin competing with one another playing a game of Polo.\",\"As they play, a woman\"\nanetv_nxyENrsY4mo,4133,\"After, several people are pictured outside in a field grooming their horses. Finally, the people then get on their horses and they all\",begin competing with one another playing a game of polo.,run up the stairs with an lasso.,turn in unison forward to one who falls to the ground unseen.,continue bouncing and flipping in a circle till the animals disperse.,,gold0-orig,pos,pos,pos,pos,n/a,\"After, several people are pictured outside in a field grooming their horses.\",\"Finally, the people then get on their horses and they all\"\nanetv_nxyENrsY4mo,4132,\"A small quote comes across the screen and the title pages follows. After, several people\",are pictured outside in a field grooming their horses.,are gathered outside a painted building in a crowded.,puts wallpaper on the wall and a woman with dumbbells behind it.,paddling down on the scuba gear.,hold a child inside and to the camera.,gold0-reannot,pos,unl,unl,unl,unl,A small quote comes across the screen and the title pages follows.,\"After, several people\"\nlsmdc0011_Gandhi-51873,3824,It lands at someone's feet. He,\"pauses, looking at the youth.\",\"smirks as he turns to a dull, slimy - like rubber.\",sweeps the rubble into the left and catches someone.,holds the axe over his head.,swerves and falls in a heap.,gold0-orig,pos,unl,unl,unl,pos,It lands at someone's feet.,He\nlsmdc0011_Gandhi-51873,3829,\"Someone steps back on the pavement, addressing the first youth. And he\",\"steps around him, someone trailing, as the first youth stares at them sullenly.\",continues to let into a group's story.,groans in from the descending truck.,stood and kicks someone away.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone steps back on the pavement, addressing the first youth.\",And he\nlsmdc0011_Gandhi-51873,3818,\"They have come to a turning, nearer to town, the area poorer, run - down. They\",react to the sight of someone - - fun.,\"hang on, over discarded hedges in town.\",are both skidding around the arizona brick car.,ogle someone's head and shoulders.,\"arrive at the restaurant, again walking down the street and down great street lined with small unarmed, intertwined tubes.\",gold1-orig,pos,unl,unl,unl,unl,\"They have come to a turning, nearer to town, the area poorer, run - down.\",They\nlsmdc0011_Gandhi-51873,3819,They react to the sight of someone - - fun. One of them,tosses aside his cigarette.,\"sees a huge, spherical strip in the cot of a naked marble floor.\",\"is on her bed, not looking at her else.\",\"strikes a gun in someone's hand, knocking him to his feet.\",seems ease of discovery.,gold0-orig,pos,unl,unl,unl,unl,They react to the sight of someone - - fun.,One of them\nlsmdc0011_Gandhi-51873,3827,\"A woman is leaning out of an upstairs window, looking down at the fracas disconcertedly. It is the first youth's mother and her presence\",reduces the pitch of his hostility considerably.,\"partly shut, so she can see from the ship.\",seems to be coming all over now.,lapse by the blonde slowly as she stares at him.,\"gathers tensing her face, has a big sigh.\",gold0-orig,pos,unl,unl,unl,unl,\"A woman is leaning out of an upstairs window, looking down at the fracas disconcertedly.\",It is the first youth's mother and her presence\nlsmdc0011_Gandhi-51873,3830,\"As they stride on, someone glancing back. Someone\",laughs as they turn the corner.,buys fancy hot pizza.,\"rears at his feet, knocking him at the wooden stairs.\",waits her for the glow across the street.,,gold0-orig,pos,unl,unl,unl,n/a,\"As they stride on, someone glancing back.\",Someone\nlsmdc0011_Gandhi-51873,3828,It is the first youth's mother and her presence reduces the pitch of his hostility considerably. Someone,\"steps back on the pavement, addressing the first youth.\",brings out two cars through the mob between them.,\"takes her plate off the wall and leaves her back to the cherry - drugstore, twisting it.\",\"turns his ear off obliviously, then suddenly turns up the photo before putting it back on.\",,gold0-orig,pos,unl,unl,unl,n/a,It is the first youth's mother and her presence reduces the pitch of his hostility considerably.,Someone\nlsmdc0011_Gandhi-51873,3822,He starts to move forward. Someone,\"hesitates, then follows nervously, more nervous for someone than himself.\",approaches as a partition smashes his back and disappears.,\"stops at the perimeter of the cliff, looking down at the roof.\",\"comes back out, surprised by someone.\",,gold1-orig,pos,unl,unl,pos,n/a,He starts to move forward.,Someone\nlsmdc0011_Gandhi-51873,3820,One of them tosses aside his cigarette. Someone,restrains him and shakes his head.,flips someone foggy glasses across his nose.,\"glances up, then notices a paper shot.\",joins the people after him.,rises the binoculars and someone clenches his fist.,gold1-reannot,pos,unl,unl,pos,pos,One of them tosses aside his cigarette.,Someone\nlsmdc0011_Gandhi-51873,3831,Someone laughs as they turn the corner. People,come around the corner into it.,come to the gumballs.,slide to the top of its train.,\"are at a bar, watched by people in a dressing setting.\",,gold1-reannot,pos,unl,unl,unl,n/a,Someone laughs as they turn the corner.,People\nlsmdc0011_Gandhi-51873,3825,\"He pauses, looking at the youth. He starts forward again, he\",\"is almost on the youths - - clearly frightened, but.\",continues eyeing the water as his car comes to life.,trails after his sound with control.,\"goes, then looks up again and shakes his head in embarrassment.\",\"moves softly, and stops.\",gold1-reannot,pos,unl,unl,pos,pos,\"He pauses, looking at the youth.\",\"He starts forward again, he\"\nlsmdc0011_Gandhi-51873,3821,Someone restrains him and shakes his head. He,starts to move forward.,squeezes his mitt shut.,grabs someone's head and glowers.,kisses the top of someone's head.,bites into an apple.,gold1-reannot,pos,unl,unl,unl,unl,Someone restrains him and shakes his head.,He\nlsmdc0011_Gandhi-51873,3823,One youth has flicked his cigarette - - hard. It,lands at someone's feet.,has a fire lighter.,walks over the make - up wall with both hands basket downs.,slings to someone who misses the second.,is shown to see a skateboarder flying as they proceeds to protect white cups.,gold0-reannot,pos,unl,unl,unl,unl,One youth has flicked his cigarette - - hard.,It\nanetv_6F9C3dIU4kU,9290,The child smiles to the camera while still moving back and fourth. He,continues to move around in the swing.,continues shaving around more buckets while looking back to the camera.,goes back and fourth on the back.,continues having the drink while still working out and looking down the road.,pauses and pauses to speak to the camera.,gold0-orig,pos,unl,unl,pos,pos,The child smiles to the camera while still moving back and fourth.,He\nanetv_6F9C3dIU4kU,9289,A young child is seen sitting in a swing moving back and fourth. The child,smiles to the camera while still moving back and fourth.,moves up and down the bars as well as walking and looking away from the camera.,continues walking around the legs and smiling at the camera.,is helping the child swing the monkey hoop.,,gold0-orig,pos,unl,unl,unl,n/a,A young child is seen sitting in a swing moving back and fourth.,The child\nanetv_6F9C3dIU4kU,11388,Someone pushes him to speed up the swinging. He,\"continues laughing, swinging back and forth.\",leans his head against the back door as it swerves past the building.,\", surfers float round the shore into the farmhouse where two men, one pulled out of the water.\",lifts someone over to it.,\"glances over at someone, who then puts his right hand over it.\",gold0-orig,pos,unl,unl,pos,pos,Someone pushes him to speed up the swinging.,He\nanetv_6F9C3dIU4kU,11387,A baby is laughing as he swings in a swing set. Someone,pushes him to speed up the swinging.,ride on a swing as he is pushed into the water.,does the splits and flips on his back as he attacks.,closes the swing as someone swings on top.,,gold0-orig,pos,unl,unl,unl,n/a,A baby is laughing as he swings in a swing set.,Someone\nanetv_r4iurK3kOe8,14577,\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog walked with his two front paws up. The girl\",threw the frisbee and the dog chase of it and placed it on the ground.,started to move the blow dryer until the pedal then went back to the machine and put her dry hair to the side.,started smiling and started by as the other dog is behind it helping.,wiped the frisbee and went away.,,gold0-orig,pos,unl,pos,pos,n/a,\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog walked with his two front paws up.\",The girl\nanetv_r4iurK3kOe8,14576,\"A girl and a dog is in the field. The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog\",walked with his two front paws up.,to the other side waved her gun.,started n.,started to slide the green butt over her hair.,threw it when a woman attacked.,gold0-reannot,pos,unl,unl,unl,unl,A girl and a dog is in the field.,\"The girl is holding two frisbee, then she walked and turned side by side and the dog roll over in front of her, the dog touched the knees of the girl, the girl walked with her hands up and the dog\"\nanetv_A0R3KFXD_BU,12233,The woman continues talking to the men while the camera pans around various groups of people nearby the bar. The woman,sparks with her hands while also dealing cards for people at the bar.,continues to eat on the ice while demonstrating how to properly play.,takes a meal from a hole in the ice and pours ice into cups and obstacles.,uses a long dance to demonstrate several exercises of aerobic workout workout and holding up weights onto their legs.,,gold0-orig,pos,unl,unl,unl,n/a,The woman continues talking to the men while the camera pans around various groups of people nearby the bar.,The woman\nanetv_A0R3KFXD_BU,12232,A group of men sit around a bar flirting with a bartender behind the bar. The woman,continues talking to the men while the camera pans around various groups of people nearby the bar.,pours ice into a cocktail glass and poured into the glass.,speaks to the camera beside the girl talking while holding up a drink.,sips some of the drink from a tap cup.,holds the glass with a hand and then mixes jars with liquor.,gold0-reannot,pos,unl,pos,pos,pos,A group of men sit around a bar flirting with a bartender behind the bar.,The woman\nanetv_1_PiNdPt6RU,6358,\"Woman is eating bran flakes and putting some mascara, washing her teeth and cleaning her mouth with mouthwash. journalists\",are talking in the news.,is watching her make out texts showing as she talks.,are now in his hands.,are scattered in the corridors like a tango face in a studio.,are trying to win over this.,gold1-orig,pos,unl,unl,unl,unl,\"Woman is eating bran flakes and putting some mascara, washing her teeth and cleaning her mouth with mouthwash.\",journalists\nanetv_Ch_qHjUtOpE,10190,Two women are standing on others' shoulders. They,\"lift another woman into the air, balancing her between them before dropping her to be caught.\",use the objects to demonstrate use.,are cracking brooms at the base of each other.,pull on the rope and let it fall onto the ground.,,gold0-orig,pos,unl,unl,unl,n/a,Two women are standing on others' shoulders.,They\nanetv_Ch_qHjUtOpE,10191,\"They lift another woman into the air, balancing her between them before dropping her to be caught. However, the girls below\",are knocked to the ground.,jumps as her final opponent is clapping and the sixth female lands.,skates down numerous stands but then a replay of the routine is over.,falls and her lands perfectly with her arms.,continues going down.,gold0-orig,pos,unl,unl,unl,unl,\"They lift another woman into the air, balancing her between them before dropping her to be caught.\",\"However, the girls below\"\nanetv_QZCBVJHF81w,16704,A man is seen walking forward speaking to the camera and begins washing a car. The man,scrubs all around the car while still speaking to the camera.,speaks to the camera and demonstrates to give snowballs and irons the shirt together using a can.,uses water squeegees and uses above his head while washing and falling down on the hands.,dumps several parts of the bike and cleans off together.,grins to the camera and end by cleaning out a candy cleaner.,gold0-orig,pos,unl,unl,unl,unl,A man is seen walking forward speaking to the camera and begins washing a car.,The man\nanetv_QZCBVJHF81w,16705,The man scrubs all around the car while still speaking to the camera. He,continues to wash the car and stops for a moment to speak to the camera.,ties his arms around and then begins running down the road with a different trimmer.,takes several wets and rides away.,puts the camera under a scrubbing board in front of the sink and then pours additional sand into the sink.,continues this by continuously while showing off the sides while speaking to the camera.,gold0-orig,pos,unl,unl,unl,pos,The man scrubs all around the car while still speaking to the camera.,He\nlsmdc1048_Gran_Torino-92301,2728,Someone mows his front lawn with a push mower. He,looks up and sees two of his hmong neighbors bringing flowers to his house.,continues with the rake and leaves to the fence.,\"strokes the path, and stirs.\",sharpens a blossoming tree with some white twigs.,leaves down a grassy lawn with a blanket of dry branches and shrubs.,gold0-reannot,pos,unl,unl,unl,pos,Someone mows his front lawn with a push mower.,He\nlsmdc1048_Gran_Torino-92301,2730,\"He stops and looks back at them. Later, he\",opens his door to more of the neighbors bearing food.,wears two ties tied underneath his shirt.,takes of his time awkwardly sipping from a dessert bottle.,opens a large outdoor grated topped stone panels topped by the fountain.,steps up behind the great bearded man.,gold1-reannot,pos,unl,unl,unl,pos,He stops and looks back at them.,\"Later, he\"\nlsmdc1048_Gran_Torino-92301,2729,\"As the neighbors leave the flowers, someone carries on mowing. He\",stops and looks back at them.,holds up the umbrella over the tree.,trots through parked shots.,carries the bags down the road.,shoots his dead dog in the right direction.,gold0-reannot,pos,unl,unl,unl,unl,\"As the neighbors leave the flowers, someone carries on mowing.\",He\nlsmdc1038_The_Great_Gatsby-87181,6492,He frowns at the sound of someone and Myrtle upstairs. Someone tentatively,walks to the door.,glances around them and spots someone.,swings his arms as they do a flip at oncoming pushups.,unties her bra and leaves.,swims underneath the bridge.,gold1-orig,pos,unl,unl,unl,unl,He frowns at the sound of someone and Myrtle upstairs.,Someone tentatively\nlsmdc1038_The_Great_Gatsby-87181,6490,\"The living room is extremely gaudy, with red walls and furnishings and chintzy flower prints everywhere. Someone\",\"sits on the edge of the couch, glancing at the ceiling.\",\"comes and drops the remote in the bucket, then stops with his feet bent on the bar, then moves down a ramp.\",\"lies on a couch, flops onto a couch, as the music continues.\",shadows moat to a wall in their entryway.,\"jumps, some packing to go in.\",gold0-orig,pos,unl,unl,unl,unl,\"The living room is extremely gaudy, with red walls and furnishings and chintzy flower prints everywhere.\",Someone\nlsmdc1038_The_Great_Gatsby-87181,6493,Someone tentatively walks to the door. He,puts on his straw boater and opens the door.,has a shawl wrapped around her shoulders and hip.,\"runs over to someone, and gently helps his daughter away.\",twitches an aging smile.,,gold1-orig,unl,unl,unl,unl,n/a,Someone tentatively walks to the door.,He\nlsmdc1038_The_Great_Gatsby-87181,6491,\"Someone sits on the edge of the couch, glancing at the ceiling. He\",frowns at the sound of someone and myrtle upstairs.,\"glares down at them, then heads away from the study doorway.\",\"dances backward, then hurries up some stairs from the second floor, and a third class.\",\"remains facing her laotong, staring back at him.\",looks up at the door from a pair of closed doors.,gold0-orig,pos,unl,unl,unl,unl,\"Someone sits on the edge of the couch, glancing at the ceiling.\",He\nlsmdc3058_RUBY_SPARKS-28041,2450,\"The typewriter hammers out the words, in front of him, backlit by the sun. Someone\",slides the typewriter's carriage repeatedly.,flashes a bright grin as it carries him to a sand town.,talks and points to his brothers some mentally.,looks at a building then turns to face two wall guards.,,gold0-orig,pos,unl,unl,unl,n/a,\"The typewriter hammers out the words, in front of him, backlit by the sun.\",Someone\nlsmdc3058_RUBY_SPARKS-28041,2448,\"On the sofa, someone wakes with a start. He\",shoves the comforter aside.,hands her a lotus candle.,\"strikes someone, who falls down going toward him.\",looks at the bubbles.,sets a towel on someone's head.,gold0-orig,pos,unl,unl,unl,pos,\"On the sofa, someone wakes with a start.\",He\nlsmdc3058_RUBY_SPARKS-28041,2447,Someone closes his book and gets up. The young woman,tears a page from his sketch book and hands it to him.,slides out of her sunglasses.,looks down at her watch as a waiter placed the food in a large bowl.,holds her hand to her other breast.,,gold1-orig,unl,unl,unl,unl,n/a,Someone closes his book and gets up.,The young woman\nlsmdc3058_RUBY_SPARKS-28041,2453,Then notices Scotty sitting on the floor with a woman's sandal in his mouth. Someone,takes the shoe and drops it on the desk.,\"looks back at the mannequin, as the winds advances towards them.\",talks quietly in his cell.,picks her up and leaves.,tosses someone's blanket.,gold0-orig,pos,unl,unl,unl,unl,Then notices Scotty sitting on the floor with a woman's sandal in his mouth.,Someone\nlsmdc3058_RUBY_SPARKS-28041,2451,\"Someone slides the typewriter's carriage repeatedly. In the daytime, he\",\"sits with his feet up, reading over his pages.\",\"places a bag of cattle on a bench next to his father, who's eating a bottle of vodka.\",shines a flashlight on a board near the corridor shoulder.,closes the door behind him.,\"marches down a corridor, confidently clutching his money bag.\",gold0-orig,pos,unl,unl,unl,unl,Someone slides the typewriter's carriage repeatedly.,\"In the daytime, he\"\nlsmdc3058_RUBY_SPARKS-28041,2449,His eyes open wide and his jaw hanging slack. The typewriter,\"hammers out the words, in front of him, backlit by the sun.\",are strewn in on the balcony.,looks away from the diner.,wearily sits beside a large truck and has a large box of budweiser in it.,,gold0-orig,pos,unl,unl,unl,n/a,His eyes open wide and his jaw hanging slack.,The typewriter\nlsmdc3058_RUBY_SPARKS-28041,2452,\"In the daytime, he sits with his feet up, reading over his pages. He\",\"types out another line, slides the carriage.\",stares as he activates the objects with coins.,picks at a cordless and guides phone in his hands.,has to move his arm from the harmonica as he turns and takes his hand.,is standing with a microphone recording on his laptop and playing a doll.,gold0-reannot,pos,unl,pos,pos,pos,\"In the daytime, he sits with his feet up, reading over his pages.\",He\nanetv_QvP8tPp8Wog,14497,\"He strums the guitar using his pick and moves his fingers along the chords. After he is done playing, he\",looks up and smiles.,\"zooms in taking turning off all the applause and singing, running his tongue to his lips.\",finishes playing the congas and continues unable to smile.,\"gets up, puts the harmonica in the pocket and plays it for himself.\",stops playing and continues playing.,gold0-orig,pos,unl,unl,unl,unl,He strums the guitar using his pick and moves his fingers along the chords.,\"After he is done playing, he\"\nanetv_QvP8tPp8Wog,14496,There's a young man in a red shirt playing an acoustic guitar. He,strums the guitar using his pick and moves his fingers along the chords.,plays his saxophone that is connected to the percussion teacher and takes his hand.,moves it in front of the song and pushes it on the side.,plays an electric guitar.,starts drumming on his song on the guitar as he cheers his beat.,gold0-orig,pos,unl,unl,unl,pos,There's a young man in a red shirt playing an acoustic guitar.,He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,434,\"Someone watches, transfixed as someone dances. Legs crossed, she\",\"arches her body back, her arms out stretched.\",watches someone's wedding ring on her finger.,sticks a tongue in her mouth.,lifts her glass a few inches and presses her lips to his.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone watches, transfixed as someone dances.\",\"Legs crossed, she\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,438,She twists her body then arcs her leg in the air. She,looks slowly around at someone then sinks to her knees.,drops limp as she approaches.,goes to the other and jumps across a tower.,knocks it off onto the ground.,,gold1-orig,pos,unl,unl,unl,n/a,She twists her body then arcs her leg in the air.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,436,\"She straightens up then moves gracefully towards him, her arms waving above her head. Someone\",watches as she leans to her left then slowly raises her right leg into the air.,drops a guard after her.,gazes after her with a curious glance.,is at the door.,gives someone a weak grin.,gold0-orig,pos,unl,unl,unl,pos,\"She straightens up then moves gracefully towards him, her arms waving above her head.\",Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,442,She plants a lingering kiss on his lips. They,\"part, their faces remaining close.\",brush deeper into his eyes.,eyes slide down to someone's calendar.,has briefly taken to reveal her argument at the front of a number boasts well more discreetly.,stare ahead.,gold0-orig,pos,unl,unl,unl,pos,She plants a lingering kiss on his lips.,They\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,435,\"Legs crossed, she arches her body back, her arms out stretched. She\",\"straightens up then moves gracefully towards him, her arms waving above her head.\",takes her cigarette from her cigarette and starts it.,heads later.,rests her elbows on her knees and looks at a ceiling.,lifts her shirt and gives her a thumbs up.,gold0-orig,pos,unl,unl,unl,unl,\"Legs crossed, she arches her body back, her arms out stretched.\",She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,439,She looks slowly around at someone then sinks to her knees. Her back,arched until she lies on the floor.,spins and she lifts them.,flips for a glamorous photograph lying in the sunshine.,falls to the floor.,,gold0-orig,pos,unl,unl,pos,n/a,She looks slowly around at someone then sinks to her knees.,Her back\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,437,Her legs and arms are almost parallel. She,twists her body then arcs her leg in the air.,moves quickly through her rakes and lands on the ground by a gate.,\"starts flipping again, sending a few feet away as she tries to climb off.\",bends at the dip as a mascot rotates between them.,,gold0-orig,pos,unl,pos,pos,n/a,Her legs and arms are almost parallel.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,431,Someone watches as she removes her shoes. Light reflecting off water,revolves across the ceiling of the band stand.,\"reaches its bottom, and pulls down a worn arched railing at the far end.\",rocks off the rocks left behind.,casts over a dog and twirls itself.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone watches as she removes her shoes.,Light reflecting off water\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,430,\"Outside, she walks onto a band stand. Someone\",watches as she removes her shoes.,takes a sip of her drink and puts her back to him.,\"leaps then grabs her door, which spins open.\",slips the key into the lock and closes the locker's panel.,\"peers toward a dark field, where judges close out of her performance.\",gold1-reannot,pos,unl,unl,pos,pos,\"Outside, she walks onto a band stand.\",Someone\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,429,\"She turns her head and blows out the smoke. Outside, she\",walks onto a band stand.,flies up through large leafy loom.,hangs up and looks up.,uses someone's window to climb out of the car's way.,gazes at the door closed.,gold0-reannot,pos,unl,unl,unl,unl,She turns her head and blows out the smoke.,\"Outside, she\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,441,She crouches on the edge of the band stand beside him. She,plants a lingering kiss on his lips.,\"smiles to her, then ambles past her and enters the lobby.\",covers her mouth and chews a cracker.,\"takes a breath, then kneels off a piece and sits.\",,gold0-reannot,pos,unl,unl,unl,n/a,She crouches on the edge of the band stand beside him.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,432,Light reflecting off water revolves across the ceiling of the band stand. She,takes off her jacket.,\"shoulders someone straight, covering her ears.\",moves through the smoke at the room and beyond.,horse lies on a hillside nearby as people try to wade over the waterfall.,\"kneels, folds her arms around her waist, hands hands as soldiers bind her waist.\",gold0-reannot,pos,unl,unl,unl,unl,Light reflecting off water revolves across the ceiling of the band stand.,She\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86648,433,She takes off her jacket. Someone,\"watches, transfixed as someone dances.\",leans on the top of the strolls.,\"looks at someone, bemused and listening.\",returns to her chair for her.,drops the dollars out of her purse and puts them on the shelf beside her happy parents.,gold1-reannot,pos,unl,unl,unl,unl,She takes off her jacket.,Someone\nlsmdc3013_BURLESQUE-5248,16627,\"He clutches her shoulders, returning the embrace. He\",\"moves in to kiss her again, then pulls back with a smile.\",blows out and plants their lips right in their mouths.,crouches in front of someone's head and tights her.,\"slams the window shut, then smiles back at someone.\",looks out and sees someone passing by.,gold1-orig,pos,unl,unl,unl,pos,\"He clutches her shoulders, returning the embrace.\",He\nlsmdc3013_BURLESQUE-5248,16626,Someone presses her hands to his toned chest. He,\"clutches her shoulders, returning the embrace.\",stops at the foot of the tiled platform.,\"gazes on directly from her face, then punches someone in the waist.\",\"straightens his shoes and twirls her around, then back to someone.\",stares at his horse with terrified eyes.,gold0-orig,pos,unl,unl,unl,unl,Someone presses her hands to his toned chest.,He\nlsmdc3013_BURLESQUE-5248,16629,\"The title reads, Show Me. Now on a dark stage, a spotlight\",\"shines down on someone, who wears a sparkling outfit and her platinum wig.\",shows off the score of someone.,plays on a long panel in a wardrobe.,\"shines on the silhouettes, and we see a bright pink light moving across the floor.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The title reads, Show Me.\",\"Now on a dark stage, a spotlight\"\nlsmdc3013_BURLESQUE-5248,16628,\"Heading for the door, he pauses. He\",walks back to her and hands her some sheet music.,takes a card from his jacket pocket.,\"pushes someone over, and grabs a plastic bag placed around his head.\",does a few cluttered malibu moves underneath down the outer walls of the research station to find herself staring at menu.,,gold0-orig,pos,unl,unl,unl,n/a,\"Heading for the door, he pauses.\",He\nlsmdc3013_BURLESQUE-5248,16630,\"Now on a dark stage, a spotlight shines down on someone, who wears a sparkling outfit and her platinum wig. As the other dancers grind against the letters, someone\",sits atop the e at the center.,approaches a skeleton panel and raises her arms.,claps herself on both hands.,pushes a disk on the wall.,falls to the ground and bounces off her feet.,gold0-reannot,pos,unl,unl,unl,unl,\"Now on a dark stage, a spotlight shines down on someone, who wears a sparkling outfit and her platinum wig.\",\"As the other dancers grind against the letters, someone\"\nlsmdc3013_BURLESQUE-5248,16625,He leans in and they kiss. Someone,presses her hands to his toned chest.,tears off his pistol as he strides near.,turns her back and kisses fall.,\"strides off, looks at a magazine on the screen and stares at him.\",\"beams at him, then closes his eyes and shakes her head.\",gold0-reannot,pos,unl,unl,unl,pos,He leans in and they kiss.,Someone\nanetv_UkZiyYfO57g,4020,The camera follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera. Several more shots of her skiing,are shown and ends with her waving to the camera and various pictures of skiers.,are shown as well as people walking in the ocean as well as speaking to the camera.,are shown followed by a woman speaking to the camera and talking with a dog camera.,are shown followed by several clips of her jumping.,are shown as well as the trainer beside her and wipes away the camera.,gold0-orig,pos,unl,unl,unl,unl,The camera follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera.,Several more shots of her skiing\nanetv_UkZiyYfO57g,4019,An intro leads into a woman speaking to the camera while several skiiers ride around her. The camera,follows the girl riding down a snowy hill as well as riding up ski lifts and speaking again to the camera.,pans up to the audience explaining process.,pans out to the dog and shows a dog performing tricks and tricks with a dog other to her.,pans around and shows several people holding up their cigarettes.,,gold1-orig,pos,unl,unl,pos,n/a,An intro leads into a woman speaking to the camera while several skiiers ride around her.,The camera\nanetv_KpmdpL5btYo,8450,A baby is shown floating in water. He,\"sinks below the surface, looking around.\",poses up before a set of water using a sail.,kisses a cup and begins to ski through the water.,caresses the river's face and bring out something in the body.,holds up a bow and begins to wipe his face all around.,gold0-orig,pos,unl,unl,unl,unl,A baby is shown floating in water.,He\nanetv_KpmdpL5btYo,1214,A woman is shown leading him under the water and he smiles and swims. They,lift up out of the water to get air.,\"stand around, swirling and bounce.\",are seen on a kayak and pulling a rope as well as jumping onto a white rope.,see his blades in the water and the bottle on his hands.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is shown leading him under the water and he smiles and swims.,They\nanetv_KpmdpL5btYo,1215,\"They lift up out of the water to get air. Mothers grab their babies to come up for air, and a baby\",breathes as he looks at the camera.,gets in her car.,throws one of them while raising them up in the air.,appears off of a rescue vehicle.,,gold0-orig,pos,unl,unl,unl,n/a,They lift up out of the water to get air.,\"Mothers grab their babies to come up for air, and a baby\"\nanetv_KpmdpL5btYo,8451,\"He sinks below the surface, looking around. A woman\",\"appears, holding him as he swims.\",stands next to him.,watches him as he kayaks closer.,swings the wrecked glass paned at a portrait of a woman in a room dress.,is seen standing on the stairs as she begins to wander down different ladders.,gold0-orig,pos,unl,unl,unl,unl,\"He sinks below the surface, looking around.\",A woman\nanetv_KpmdpL5btYo,1213,A baby boy's head floats up from water. He,\"goes back under, looking around in amazement.\",\"eyes someone briefly, then turns to peer down at her.\",reaches for the bathroom door.,plays with a heart of television screen.,eyes the sleeping python.,gold0-reannot,pos,unl,unl,unl,unl,A baby boy's head floats up from water.,He\nanetv_UZPSbNS1LU0,19133,They are moving slowly and there are a lot of them as some of them look into the camera as they pass. The procession,continues as spectators look onward.,continues until they drop their backs to the ground as they finish.,drives through the large city.,continues to dance and jumps where the boat is stopped from the castle.,is moving hard on the roads.,gold1-orig,pos,unl,unl,unl,unl,They are moving slowly and there are a lot of them as some of them look into the camera as they pass.,The procession\nanetv_UZPSbNS1LU0,19134,The video cuts to a side angle of the rollerbladers passing by. Another side shot is shown and a cop car and several escort vehicles,come into view as the video fades to black.,fly around on the dusty path.,continues to ride across the dirt path and to the end of the drive along a logo on the street to the tallest hills.,beginning to fix and tug on a lacrosse field on.,to his car.,gold0-orig,pos,unl,unl,unl,unl,The video cuts to a side angle of the rollerbladers passing by.,Another side shot is shown and a cop car and several escort vehicles\nanetv_UZPSbNS1LU0,19132,A group of people are shown rollerblading in Paris. They are moving slowly and there,are a lot of them as some of them look into the camera as they pass.,down the street to help a steep man push in around.,together at the bottom of the slope.,'s a group of people gathered in the front places.,are a small man playing guitar while singing.,gold0-orig,pos,unl,pos,pos,pos,A group of people are shown rollerblading in Paris.,They are moving slowly and there\nanetv_lt--z8nFIT0,1821,A large group of people are seen playing hockey on the ice and a man speaking to the camera. More shots,are shown of the players skating on the ice and a coach speaking to the camera.,are shown of people walking around and walking around and speaking to one another.,are shown of people playing beer pong.,are shown of more players playing soccer with one another.,are shown of the game interacting with one another as one man speaks to the camera.,gold0-orig,pos,unl,unl,unl,unl,A large group of people are seen playing hockey on the ice and a man speaking to the camera.,More shots\nanetv_lt--z8nFIT0,2114,A large group of people are seen skating around the ice playing hockey. Several people,speak to the camera as the men continue to play.,play in their field hugging and text on the sides.,walk to the goal and enjoy one game.,are sitting in the side with others watching on the sides.,are seen holding their arms up and speaking to one another.,gold0-orig,pos,unl,pos,pos,pos,A large group of people are seen skating around the ice playing hockey.,Several people\nanetv_lt--z8nFIT0,1822,More shots are shown of the players skating on the ice and a coach speaking to the camera. More players,are shown speaking to the camera while others push a puck along the ice and celebrate.,are seen hitting the ball around while others play along the side.,play crazy waving at the camera.,line up to begin ice where they hit the birdie all over the net.,then begin playing with one another and ends by walking away.,gold0-orig,pos,unl,unl,unl,pos,More shots are shown of the players skating on the ice and a coach speaking to the camera.,More players\nanetv_lt--z8nFIT0,2115,Several people speak to the camera as the men continue to play. The men,push the puck all along the ice while still speaking to the camera.,move and play the drums with their hands.,move continuously into the frame and continue dancing with one another.,push at the ceiling while doing the measurements.,bow and look around a mirror as well as colors and text leading up and performing quickly.,gold0-reannot,pos,unl,unl,unl,unl,Several people speak to the camera as the men continue to play.,The men\nlsmdc3044_KNOCKED_UP-21017,11244,Someone stares after him with a wounded gaze. Then he,walks out to the backyard.,jerks his head sideways upward.,pauses as someone shifts his gaze.,holds out his bag.,,gold1-orig,pos,pos,pos,pos,n/a,Someone stares after him with a wounded gaze.,Then he\nanetv_rnhtmtW_a8o,4114,Two teams are playing volleyball in a indoor court. Two teams wearing dark uniforms,\"are doing a volleyball competition, then appears a team with yellow t - shirts.\",play tug of war on the sea of white.,are playing a beer pong match inside a cafe squash.,are in different sides throwing the ball in a field.,play against each other in a circle surrounded by dirt.,gold1-orig,pos,unl,unl,unl,pos,Two teams are playing volleyball in a indoor court.,Two teams wearing dark uniforms\nanetv_rnhtmtW_a8o,4305,A couple of teams are playing inside a gym. They,are serving a volleyball back and forth over a net.,play volleyball against the wall.,are engaged in a game of games.,do several stunts on their skis in the snow.,go to play a game of rock paper scissors.,gold0-orig,pos,unl,unl,unl,pos,A couple of teams are playing inside a gym.,They\nanetv_rnhtmtW_a8o,4115,\"Then, a boy with a red t - shirt serves the ball and the teams start to hit and running to pass the ball, then another team wearing green shorts enters the court. After, team wearing blue uniform\",competes with teams wearing white and red uniforms.,sticks out the fishing stick and hopped and went to the border of it.,wrestle him for afterwards the players hit the ball.,scores and after explaining an interview about the players.,,gold1-orig,pos,unl,unl,unl,n/a,\"Then, a boy with a red t - shirt serves the ball and the teams start to hit and running to pass the ball, then another team wearing green shorts enters the court.\",\"After, team wearing blue uniform\"\nanetv_rnhtmtW_a8o,4306,They are serving a volleyball back and forth over a net. They,\"continue playing, trying to keep the ball from their opponents.\",are hitting the ball on one side of the tennis court.,are taking turns hitting the puck back and forth.,get ready to get one ball into a net.,,gold1-reannot,pos,unl,unl,unl,n/a,They are serving a volleyball back and forth over a net.,They\nanetv_dpS_S4Zi2Po,12151,A young girl is seen holding up makeup and smiling to the camera. The girl,looks into the camera while still playing with makeup.,continues curling her hair while others watch on the side.,begins seen cutting her hair and looking to the camera.,locks the girl's hair and pins it against her neck while.,,gold0-orig,pos,unl,unl,unl,n/a,A young girl is seen holding up makeup and smiling to the camera.,The girl\nanetv_dpS_S4Zi2Po,7366,The camera man pans towards the young Asian girl for a closeup and the Asian girl smiles and falls back away from the camera. The young Asian girl,moves into the camera for a closeup and then continues applying the makeup.,talks before camera standing in the pool.,show the asian girl and throws someone into the camera.,gives a serious clip and takes a drink for the woman before dancing side to side.,\"appears watching, talking about boats in the london castle as she talks.\",gold0-orig,pos,unl,unl,unl,unl,The camera man pans towards the young Asian girl for a closeup and the Asian girl smiles and falls back away from the camera.,The young Asian girl\nanetv_dpS_S4Zi2Po,7365,A young Asian girl smiles at the camera and applies eye shadow while holding a makeup kit. the camera man pans towards the young Asian girl for a closeup and the Asian girl,smiles and falls back away from the camera.,with red hair runs into the camera and begins displays her hair for her team as a recap and after hula.,is also brushing the violin around with a towel in front of her.,has a slip of paper out onto her cheeks.,began cleaning her makeup.,gold1-orig,pos,unl,unl,unl,pos,A young Asian girl smiles at the camera and applies eye shadow while holding a makeup kit.,the camera man pans towards the young Asian girl for a closeup and the Asian girl\nanetv_dpS_S4Zi2Po,12152,The girl looks into the camera while still playing with makeup. She,continues playing with the makeup over and over again.,\"then briefly brushes her teeth, then returns and back to brushing her hair and legs.\",continues to speak to the camera while throwing the ball back and forth and smiling to the camera.,continues speaking to the camera while showing her video to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,The girl looks into the camera while still playing with makeup.,She\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13325,Someone pours the contents of the vial into the basin. Someone,flicks his hand in the air and the lights dim.,\"has poured into the cakes, green wine.\",pulls her face out to the sink.,\"heads off, but his gaze remains steady.\",has entered the room.,gold0-orig,pos,unl,unl,unl,pos,Someone pours the contents of the vial into the basin.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13323,\"He goes to a pensive, a hovering shallow metal basin. He\",glances at the elderly professor who nods.,has sunk back within the top of the urn.,\"drops into someone, spins it, puts it down, is now on the way, waiting for someone at the door.\",spacers the upper level support while filling the toilet.,\"looks at green wrappings, which has been torn into long strips.\",gold0-orig,pos,unl,unl,unl,pos,\"He goes to a pensive, a hovering shallow metal basin.\",He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13326,Someone flicks his hand in the air and the lights dim. Someone,sees a street with a large building straight ahead.,works through the chaos.,\"speeds across the deck, lights illuminate the scene, with their lights and light.\",\"leans against the wall, hitting the slight button on his head.\",hands the tray to her.,gold1-orig,pos,unl,pos,pos,pos,Someone flicks his hand in the air and the lights dim.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72287,13322,Someone gingerly takes the vial. He,\"goes to a pensive, a hovering shallow metal basin.\",\"has a blonde, four - inch blonde, shiny sideburns and gray hair.\",\"opens it, revealing an easy vest.\",finds a key hanging from its trunk.,finds someone's blade in the boot's hand.,gold0-reannot,pos,unl,unl,unl,unl,Someone gingerly takes the vial.,He\nlsmdc0032_The_Princess_Bride-65980,15308,\"She is scared, sure, petrified, who would n't be, but she makes no reply - - - - and now a shrieking eel has zeroed in on her - - - - and now she sees it, a short distance away, circling, starting to close - - - - and someone is frozen, trying not to make a movement of any kind - - - - and. The Kid looks the same, pale and weak, but maybe he\",is gripping the sheets a little too tightly with his hands.,is - - only does not see the improvement but does not allow her to say no.,\"won't let do, that she gets the jamming out again, but it's gone.\",can't put it in any different success of it.,\"has been right, in fact he does n't know how it should be apparent.\",gold0-orig,pos,unl,unl,unl,unl,\"She is scared, sure, petrified, who would n't be, but she makes no reply - - - - and now a shrieking eel has zeroed in on her - - - - and now she sees it, a short distance away, circling, starting to close - - - - and someone is frozen, trying not to make a movement of any kind - - - - and.\",\"The Kid looks the same, pale and weak, but maybe he\"\nlsmdc0032_The_Princess_Bride-65980,15309,\"The Kid looks the same, pale and weak, but maybe he is gripping the sheets a little too tightly with his hands. His Grandfather\",\"says nothing, just waits.\",\"is standing on the sofa, clutching his glass of water.\",moving all around one of the audience is another artist doing three hand motions.,\"is shown in the streets on top of a tree, dragging along.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The Kid looks the same, pale and weak, but maybe he is gripping the sheets a little too tightly with his hands.\",His Grandfather\nlsmdc0032_The_Princess_Bride-65980,15313,\"The boat at dawn, being followed closely by the black sailboat, which we can see for the first time is being sailed by someone, and his boat almost seems to be flying. They\",\"rise straight up, sheer from the water, impossibly high.\",\"ride their hands through town at a standstill starting hill, bobbing back in the current.\",run in we come towards a pile of flowers.,\"sit at the edge of the lake, interspersed with rocks.\",are now enjoying the reverse of time of ocean polo.,gold1-orig,pos,unl,unl,unl,unl,\"The boat at dawn, being followed closely by the black sailboat, which we can see for the first time is being sailed by someone, and his boat almost seems to be flying.\",They\nlsmdc0032_The_Princess_Bride-65980,15312,\"And we are back where we were at the last moment. A giant arm,\",\"pounding the eel unconscious in one move, then easily lifting someone.\",\"isabel, is blurred across.\",\"blind - shaped, heads toward someone.\",\"toppling, is very twisted.\",coming out of a window in!,gold0-reannot,pos,unl,unl,unl,unl,And we are back where we were at the last moment.,\"A giant arm,\"\nlsmdc0032_The_Princess_Bride-65980,15310,\"His Grandfather says nothing, just waits. We\",are back in the boat.,are by the desk in a small basket.,and someone continue to ear the little voices as the sergeant turns.,\"is n't, but it does n't start.\",\"take out the locket, opening it and take it out.\",gold1-reannot,pos,unl,unl,unl,unl,\"His Grandfather says nothing, just waits.\",We\nanetv_xATeffo_kP4,2863,A close up of a fooseball table is shown as well as people playing on the table. The game,continues on as the people use the bars to move the game as the ball moves back and fourth.,continues on with the man playing his music and looking around.,continues with others hitting the ball and hitting it along the ground and finally pushing the puck.,continues all around the people as they continue to play and leads into another woman helping.,continues to explain the movements until the end.,gold0-orig,pos,unl,unl,unl,unl,A close up of a fooseball table is shown as well as people playing on the table.,The game\nanetv_ral5Oaib_vk,2138,He begins playing the harmonica. The man,stops playing and dances in place.,plays the instrument back and fourth.,finishes his song really well and talks wildly.,finishes and changes his playing.,continues moving the guitar while smiling.,gold1-orig,pos,unl,unl,unl,unl,He begins playing the harmonica.,The man\nanetv_ral5Oaib_vk,2137,A man in plaid is standing at a microphone acknowledging the crowd. He,begins playing the harmonica.,spins and racked his hands.,\"steps on a karate exercise, hung with hammers.\",lays him back on the ground as he plays again.,is wearing a white tuxedo.,gold0-orig,pos,unl,unl,unl,unl,A man in plaid is standing at a microphone acknowledging the crowd.,He\nanetv_ral5Oaib_vk,2139,The man stops playing and dances in place. The man,continues to play his harmonica.,finishes his instrument and holds on while he speaks to him.,\"finishes, stops playing the salesman, and walks into the room.\",comments to play drums near the camera.,,gold1-orig,pos,unl,unl,unl,n/a,The man stops playing and dances in place.,The man\nanetv_ral5Oaib_vk,2136,Opening credits show the upcoming activities. A man in plaid,is standing at a microphone acknowledging the crowd.,dumps a cup of coffee in front of two men and makes a thumbs gesture.,hat hugs them.,rolls down a lane and throws a dart.,runs down a deck.,gold0-orig,pos,unl,unl,unl,unl,Opening credits show the upcoming activities.,A man in plaid\nanetv_8xYzQMbI5fM,5863,\"He then wipes down the area, measures out more area, and then rolling the paper down over a tool. Finally he\",takes a sharp object and runs it all along the paper.,finishes the paper and pauses to speak clumsily.,uses sharpening glue and flushes the wall surface and polishing it with a welding tool.,sprays the top of the board again and sinks inside.,\"uses it to clean the wall, which lies in an open layer of tile.\",gold0-orig,pos,unl,unl,unl,unl,\"He then wipes down the area, measures out more area, and then rolling the paper down over a tool.\",Finally he\nanetv_8xYzQMbI5fM,5861,A person is seen making marks on a paper using a tool as well as a pencil. He then screws the tools in place of the holes and the camera,pans down the finished area.,zooms back on the cards.,is still traced.,captures it from around the end.,,gold0-orig,pos,unl,unl,pos,n/a,A person is seen making marks on a paper using a tool as well as a pencil.,He then screws the tools in place of the holes and the camera\nanetv_8xYzQMbI5fM,5862,He then screws the tools in place of the holes and the camera pans down the finished area. He then,\"wipes down the area, measures out more area, and then rolling the paper down over a tool.\",wipes his face and several services are shown themselves in the car.,solves the wall paper and scrawled the names on it on the paper.,\"shows to a different soaping up, and uses the sandwich parchment to arm all the log and places it on a rubber floor.\",ends up using the use on the bicycle while speaking to it in various angles.,gold1-orig,pos,unl,unl,unl,unl,He then screws the tools in place of the holes and the camera pans down the finished area.,He then\nanetv_1hB5jVAhSDE,8848,A woman is seen sitting before the drums and hitting them as hard as she can. She,continues hitting the drums and then stops in the end to breathe heavy.,takes it down with the baton and continues speaking to the camera.,continues playing and ends into her playing the flute and smiling to the camera.,continues speaking and speaking while holding up the guitar.,continues to speak and looks out into the distance.,gold1-orig,pos,unl,unl,unl,unl,A woman is seen sitting before the drums and hitting them as hard as she can.,She\nanetv_1hB5jVAhSDE,2718,The woman mimes playing the drums with her palms in the air. The woman,stops playing and breathes in an exaggerated manner.,places a big umbrella over the sifter and continuing to press it to the woman then up beside something.,\"pauses to look up and speaks, then walks herself.\",waves her hands into a black mug.,\"gets out playing her guitar on the ground, then stops.\",gold0-orig,pos,unl,unl,unl,pos,The woman mimes playing the drums with her palms in the air.,The woman\nanetv_1hB5jVAhSDE,2717,A woman plays drums with her palms while seated. The woman,mimes playing the drums with her palms in the air.,plays the drums and sings on the the piano.,dances back and forth between the music.,speaks to the camera and moves across the stage.,put her hand on the dash forward.,gold0-reannot,pos,unl,unl,unl,unl,A woman plays drums with her palms while seated.,The woman\nanetv_DDZFQKi1v2U,10242,The girl is then shown piercing the nipple of the girl laying down. She,finishes the piercing and ends by smiling to the camera.,takes out the toothbrush and wipes it off with a towel.,takes the piece out again and wipes it off her mouth.,finishes her braid to the camera.,\"sticks her feet together and drops it, while her hair is scored and furtive again.\",gold0-orig,pos,unl,unl,unl,pos,The girl is then shown piercing the nipple of the girl laying down.,She\nanetv_DDZFQKi1v2U,10241,A woman is seen laying on the couch with another girl sitting above her. The girl,is then shown piercing the nipple of the girl laying down.,dips a towel over the green paper and begins drying her hair.,throws a razor and cuts her leg in the end.,puts makeup onto more items in set on the end.,continues speaking while holding the guitar and looking off into the distance.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen laying on the couch with another girl sitting above her.,The girl\nlsmdc3013_BURLESQUE-4762,11997,Now someone reaches out of the shower and finds bras and stockings hanging on a hook. He,turns to a towel rack where more undergarments hang.,\"stabs someone with a heavy needle, which slowly engulf someone's scarred face.\",wipes as blood from his mouth and gets up on his knees as he flees.,\"stretches one leg along a far side, only to cut the rear backside.\",sends someone a football and they sweep the room.,gold0-orig,pos,unl,unl,unl,unl,Now someone reaches out of the shower and finds bras and stockings hanging on a hook.,He\nlsmdc3013_BURLESQUE-4762,11994,\"She playfully taps someone's nose with the bristles. Holding someone 'gaze, someone\",gives a mild shrug.,picks the slytherin case up to her feet.,steps out of the kitchen.,offers a broad shrug.,averts her groggy gaze.,gold1-orig,pos,unl,pos,pos,pos,She playfully taps someone's nose with the bristles.,\"Holding someone 'gaze, someone\"\nlsmdc3013_BURLESQUE-4762,11996,\"As she stares off, someone skillfully finishes painting her lips. Someone\",turns to the mirror and sees her red lips and painted eyelids.,looks down and stares down at the bed someone.,\"tilts her head, idly tilting her thumb, then turns her head and sadly faces the restaurant.\",\"looks at sister, his face obscured with sweat.\",stares wide - eyed.,gold0-orig,pos,unl,unl,unl,pos,\"As she stares off, someone skillfully finishes painting her lips.\",Someone\nlsmdc3013_BURLESQUE-4762,12002,Someone watches as someone grabs his phone off the bed. He,swings the bedroom door shut.,sees someone's shoes.,takes someone's hand and starts pulling herself out of her grip.,places it on his computer.,looks around then grabs the phone.,gold0-orig,pos,unl,unl,unl,pos,Someone watches as someone grabs his phone off the bed.,He\nlsmdc3013_BURLESQUE-4762,12000,Someone sleeps in the living room. He,picks up a newspaper.,sits down wearing a helmet then pats his own head.,carefully wipes their bedroom.,sits with another girl.,,gold1-orig,pos,unl,unl,unl,n/a,Someone sleeps in the living room.,He\nlsmdc3013_BURLESQUE-4762,11993,Someone uses a large soft brush to apply rouge to someone's cheeks. She,playfully taps someone's nose with the bristles.,grasps the back of her hand and places it in someone's hand.,tenderly faces the handsome man.,aside then kisses his brow and smiles.,soaps her soaked hair and regards them in a mirror.,gold0-orig,pos,unl,unl,unl,unl,Someone uses a large soft brush to apply rouge to someone's cheeks.,She\nlsmdc3013_BURLESQUE-4762,11998,He turns to a towel rack where more undergarments hang. He,spots his towel on the floor.,shakes out the broken bottle.,looks at the pump's action then drops it on the floor.,steps down to a chair as he works against a wall.,stands with someone and the front door.,gold0-orig,pos,unl,unl,unl,unl,He turns to a towel rack where more undergarments hang.,He\nlsmdc3013_BURLESQUE-4762,12001,He picks up a newspaper. Someone,watches as someone grabs his phone off the bed.,grabs pictures and well.,dabs the pocket with a cloth.,puts down the vacuum.,dials the radio on his rag.,gold1-reannot,pos,unl,unl,unl,unl,He picks up a newspaper.,Someone\nanetv_G_kJ-Af89ew,14437,\"The man in gray sweater lean on the table and look at the ball, he then hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair. The man in gray sweater\",\"continue to play the billiard, making the balls shoot in the holes.\",started running and landed on the other side of the gym.,begins to run another way all over the field.,looks at the blue ball and takes a few longer knees before coming out to chop the wall up of 15 lands.,lays another sack over her.,gold0-orig,pos,unl,unl,unl,unl,\"The man in gray sweater lean on the table and look at the ball, he then hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair.\",The man in gray sweater\nanetv_G_kJ-Af89ew,14436,\"A man in plaid shirt hit the ball with stick, the ball scattered on the table. The man in gray sweater lean on the table and look at the ball, he then\",\"hit the white ball and hit the yellow ball, while the man in plaid shirt sat on the chair.\",landed on the ground.,follows the man on the other leg and then hands to the camera on the ball post.,demonstrates how to hit the ball all over the field.,walked on the field and hit up the ball several times before getting up to play the basketball.,gold0-reannot,pos,unl,unl,unl,unl,\"A man in plaid shirt hit the ball with stick, the ball scattered on the table.\",\"The man in gray sweater lean on the table and look at the ball, he then\"\nanetv_RsHk6sq_9IY,17078,\"The men run after the ball, attempting to capture it from the opposing team. A yellow circle\",is shown around a particular player.,runs to get the ball off the team.,is being dealt by a man.,has made a black and white film.,shows someone s shaped into an ice rink while talking about the pool.,gold0-orig,pos,unl,unl,unl,unl,\"The men run after the ball, attempting to capture it from the opposing team.\",A yellow circle\nanetv_RsHk6sq_9IY,17076,An advertising screen appears momentarily as the video begins. A group of men,are shown kicking a ball back and forth in a stadium.,raft down a snowy river in a choppy river going down a river.,run fast from different environments on a dirt road.,appear near a steel bar drinking drinks from a hot kitchen inside the center of the arena.,,gold0-orig,pos,unl,unl,unl,n/a,An advertising screen appears momentarily as the video begins.,A group of men\nanetv_RsHk6sq_9IY,17077,A group of men are shown kicking a ball back and forth in a stadium. The men,\"run after the ball, attempting to capture it from the opposing team.\",are then shown playing a game of sport another trying to hit the ball.,begin throwing the balls through the net stopping to catch the ball and scores.,engage in multiple beats trying to hit the ball back and forth against each other.,,gold0-orig,pos,unl,pos,pos,n/a,A group of men are shown kicking a ball back and forth in a stadium.,The men\nlsmdc3069_THE_BOUNTY_HUNTER-4617,14723,\"A billboard, featuring someone's mother, reads, Kitty Borgata. Now, we\",glimpse lavish buildings housing atlantic city's hotel casinos.,pan across to a living room filled with soft fruit.,see someone assembling a small cellphone to the room.,film an elderly couple playing.,,gold0-orig,pos,unl,unl,pos,n/a,\"A billboard, featuring someone's mother, reads, Kitty Borgata.\",\"Now, we\"\nlsmdc3069_THE_BOUNTY_HUNTER-4617,14720,\"Now, someone leaves someone's building. As he gets into his car, someone\",creeps outside and scurries over to a red mini cooper.,meets him tresses sidelong gaze.,steps through an ornate tunnel.,wears jeans and a t - shirt.,steps into the living room.,gold0-orig,pos,unl,pos,pos,pos,\"Now, someone leaves someone's building.\",\"As he gets into his car, someone\"\nlsmdc3069_THE_BOUNTY_HUNTER-4617,14724,\"Now, we glimpse lavish buildings housing Atlantic City's hotel casinos. In a lounge, Kitty\",stands in the spotlight on a stage.,oversees the music with television music.,fly from the overhead ceiling and share a smile.,sits with her face down and peers earnestly at someone.,packs an appointment book.,gold0-orig,pos,unl,unl,pos,pos,\"Now, we glimpse lavish buildings housing Atlantic City's hotel casinos.\",\"In a lounge, Kitty\"\nlsmdc3069_THE_BOUNTY_HUNTER-4617,14722,\"Later, the baby blue ragtop crosses the bridge. Later still, it\",\"drives beneath an overpass sign reading, welcome to atlantic city.\",leads four different boats into length of a large river on the river below them as a news van approaches.,slices deeper under a deck.,\"'s a large mural of four tall suited women, tall, with thick hair, and long muscles heave.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Later, the baby blue ragtop crosses the bridge.\",\"Later still, it\"\nlsmdc3069_THE_BOUNTY_HUNTER-4617,14721,\"As he gets into his car, someone creeps outside and scurries over to a red mini Cooper. Now, a bird's - eye view\",shows someone's car exiting a tunnel and approaching a toll plaza.,shows him blowing smoking on a steam pipe.,crosses a narrow road where a ruffled - haired man watches nearby.,sweeps up and sees a furry biker holding a key on the phone.,,gold0-reannot,pos,unl,unl,unl,n/a,\"As he gets into his car, someone creeps outside and scurries over to a red mini Cooper.\",\"Now, a bird's - eye view\"\nlsmdc1004_Juno-6583,5117,Someone hands pipe smoking someone an ad. Someone,\"is lying on his bed, looking at the photo of someone in his yearbook.\",takes a page and slides on the trail.,waves him from behind.,deals them to each other.,goes into a kitchen.,gold1-orig,pos,unl,unl,unl,pos,Someone hands pipe smoking someone an ad.,Someone\nlsmdc1004_Juno-6583,5118,\"Someone is lying on his bed, looking at the photo of someone in his yearbook. His other hand\",is clasped around a piece of cloth.,\"is looking to the shaver, groping for the shades from the actor.\",\"leans against the toilet, with tears running down someone's face.\",\"is draped over a arm, walking over his ankle and who is stopped by the foot of the bed.\",comes to someone's t muscle as he walks and scoops her up against one of the toilet stall doors.,gold1-orig,pos,unl,unl,unl,unl,\"Someone is lying on his bed, looking at the photo of someone in his yearbook.\",His other hand\nlsmdc0014_Ist_das_Leben_nicht_schoen-54558,2279,\"He looks around for his hat, which is on his head. Someone\",takes the hat from someone's head and hands it to him.,is now disguised in a kind of fire.,\"holds back a shade of someone, staring at the building, then shifts his attention to another window.\",stands in someone's bedroom with his limbs wrapped around him and someone.,\"bends slowly, sniffing the air.\",gold0-orig,pos,unl,unl,unl,pos,\"He looks around for his hat, which is on his head.\",Someone\nanetv_O8vPTn6Ho7w,12293,People are paddling in kayaks in a body of water. A man,takes off in a green kayak.,plays a large boat on a lakeside.,stands in the water watching a person skiing and running at the water.,is holding a camera.,kayak in and lifts a large rope above the surface.,gold1-orig,pos,unl,unl,pos,pos,People are paddling in kayaks in a body of water.,A man\nanetv_O8vPTn6Ho7w,12294,A man takes off in a green kayak. A man in a red jacket,is talking to the camera.,falls onto the red surfboard.,falls onto the ice.,is on the border of a small water pool.,gets out of his car.,gold1-orig,pos,unl,unl,unl,unl,A man takes off in a green kayak.,A man in a red jacket\nanetv_7ftCKS5SCCk,9164,Girl is on skateboard in the living room and to the room again. little girl,is in library and grab something and then starts dancing in the room.,is sitting in a room doing red laundry onto the floor.,is standing in the yard doing karate moves in someone with adult children.,is sitting in a coffee shop watching the kid.,get in the garment as she talks to the camera.,gold1-reannot,pos,unl,unl,unl,pos,Girl is on skateboard in the living room and to the room again.,little girl\nlsmdc3068_THE_BIG_YEAR-3246,2647,\"Now, he and his wife and their party guests raise glasses. A man with boyish features\",holds up a hand.,feeds his children.,set the big little wad onto the table with a large stack of newspapers.,leads someone through several different museum's weightlifting locations.,shows a mustache to a colleague.,gold1-orig,pos,unl,unl,unl,pos,\"Now, he and his wife and their party guests raise glasses.\",A man with boyish features\nanetv_3zPoB-_JxEc,9968,The man lights the cigarette. The man,removes the cigarette from his mouth and holds it in his hand.,stops to sign rubbing smoke.,blows the smoke off of the hookah.,focuses on one section of his guitar at another.,continues smoking the cigarette.,gold0-orig,pos,unl,unl,unl,pos,The man lights the cigarette.,The man\nanetv_3zPoB-_JxEc,9967,A man talks on a telephone. The man,puts a cigarette in his mouth.,plays a harmonica and describes instruments.,put a black and gold helmet.,plays a white guitar.,does a hand stand beside him.,gold0-reannot,pos,unl,unl,unl,unl,A man talks on a telephone.,The man\nanetv_5_M10vevgJg,15384,A man is waxing the bottom of a ski. A woman in a pink jacket,is skiing down a hill.,is flying in the same direction.,moves the camera lens toward the lens.,is standing on the beach.,is running down a snowy slope.,gold0-orig,pos,unl,unl,pos,pos,A man is waxing the bottom of a ski.,A woman in a pink jacket\nanetv_5_M10vevgJg,9240,A woman is skiing and a man from behind skis quickly and ends up in front of her. An older man is now in a a store and he,'s talking to a girl and working on some skis.,pushes her the cement on the front windows and describes how blow illuminate the wall.,is dressed up in a boat.,starts running down the court with the stilts.,is mowing the lawn back and forth.,gold0-orig,pos,unl,unl,unl,unl,A woman is skiing and a man from behind skis quickly and ends up in front of her.,An older man is now in a a store and he\nanetv_5_M10vevgJg,15383,People are skiing down a hill of snow. A man,is waxing the bottom of a ski.,snowboard down the hill.,waves to start snow.,is snowboarding down the slope.,holds snow in his hands.,gold1-orig,pos,unl,unl,pos,pos,People are skiing down a hill of snow.,A man\nanetv_5_M10vevgJg,9243,\"The focus goes back to the older man who is back in the shop, holding the ski and he's working on it while talking about it which include an object that looks like a hot iron, and what looks like some sanding. The last clip goes back to the woman and now she\",'s skiing with her poles again and with her legs remaining together and not moving separately.,'s shown doing a perfect stance for the ground times.,'s old and in stands as a person is slowly laying down on the ground through trees.,\"'s caught in another pause, everything moves and announce to the end for the video.\",is applying white lipstick to the camera.,gold0-orig,pos,unl,unl,unl,unl,\"The focus goes back to the older man who is back in the shop, holding the ski and he's working on it while talking about it which include an object that looks like a hot iron, and what looks like some sanding.\",The last clip goes back to the woman and now she\nanetv_5_M10vevgJg,9241,An older man is now in a a store and he's talking to a girl and working on some skis. The older man is holding skis talking and the words on the screen say that his name is alan cranston and he,'s the manager of fresh air experience.,hangs his hand to eventually repair the snow in the fallen cleaned car.,takes a lot of rigorous mouthwash in his hands and take a few steps.,'s getting a tattoo.,goes to his knives and all of someone stumble and some bread moves.,gold0-orig,pos,unl,unl,unl,unl,An older man is now in a a store and he's talking to a girl and working on some skis.,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he\nanetv_5_M10vevgJg,9242,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he's the manager of fresh air experience. A quick shot of the skiing woman from earlier appears and she is skiing again but this time it,'s without poles in her arms.,is an finished dirt with a lot of speed.,has set off named a black cooler.,begins through a different hill walking over the hill of front and also the climber.,crashes heavily by a calm steel stream.,gold0-reannot,pos,unl,unl,unl,unl,The older man is holding skis talking and the words on the screen say that his name is alan cranston and he's the manager of fresh air experience.,A quick shot of the skiing woman from earlier appears and she is skiing again but this time it\nanetv_ygkcjkVqxAA,4556,A woman is seen playing Frisbee out in a back yard with a dog and performs several tricks with the dog. She continuously,plays with several toys with the dog when another person watches on the side.,bumps the dog while others watch on the side.,continues from various angles as she plays with the dog.,holds up the dog and screams to the camera while her dog walks all around.,,gold0-orig,pos,pos,pos,pos,n/a,A woman is seen playing Frisbee out in a back yard with a dog and performs several tricks with the dog.,She continuously\nanetv_2SMmL6kIx-w,16998,Several performers walk out of a box and it ends up being one male and one female. The lady then,begins moving in strange ways and continuing telling a story in ballerina form.,drops the harmonica to the other and begins making text on the laptop.,goes back to the camel and stands with her and giving a thumbs up.,\"stands up and backs away, their hearts on the ladies hands.\",shows up and the girl uses her hands to lead the stage together.,gold1-orig,pos,unl,unl,unl,pos,Several performers walk out of a box and it ends up being one male and one female.,The lady then\nanetv_2SMmL6kIx-w,16999,\"The lady then begins moving in strange ways and continuing telling a story in ballerina form. After a few minutes, the male joins them and they\",continue dancing together with strong legs and firm arms.,pose in unison and give each other a high five as the girl steps away.,join the instructor in the background.,stand up switching out and show how to hop and show around her on ends.,\"walk to another castle of people, one of them watching.\",gold0-orig,pos,unl,unl,unl,unl,The lady then begins moving in strange ways and continuing telling a story in ballerina form.,\"After a few minutes, the male joins them and they\"\nanetv_6YmZNDXap64,3571,A man is seen spinning a rubix cube into his hands followed by more people attempting to solve the puzzle and speak to the camera. More people,are shown attempting to solve the puzzle as well as speaking to the camera and smiling.,are seen flipping around on the bench in various locations as well as laughing behind the camera and the camera panning around them.,are shown in various areas on clothes and another man putting cubes into a bowl.,listen to him and speak to the camera while a man lifts a lemon into his pocket.,are shown showing up various angles as well as people watching them and sitting over the machines moving and interacting with one another.,gold0-orig,pos,unl,unl,unl,unl,A man is seen spinning a rubix cube into his hands followed by more people attempting to solve the puzzle and speak to the camera.,More people\nanetv_PWriIL3pTWY,6369,A man in a black suit comes out from the bushes. He,fights the man in the red suit.,grabs a bag of bottles.,hears him getting out.,grabs his hat and throws them on a nearby counter.,throws his arms up.,gold0-orig,pos,unl,unl,unl,pos,A man in a black suit comes out from the bushes.,He\nanetv_PWriIL3pTWY,6366,The man in the pink suit celebrates. The man not wearing a shirt,chases the man in the pink suit.,yell off the screen.,falls over and falls to the ground.,\"slip and collapses, bends back and swings his arms down.\",is running with his face on paper.,gold1-orig,pos,pos,pos,pos,pos,The man in the pink suit celebrates.,The man not wearing a shirt\nanetv_PWriIL3pTWY,6370,He fights the man in the red suit. The man with out a shirt,throws a barrel on the man in the black suit.,is flying the kite.,is pouring it over the sink.,misses the rest of his hair and head his face.,throws the ball and runs for the circle.,gold1-reannot,pos,unl,unl,unl,pos,He fights the man in the red suit.,The man with out a shirt\nanetv_PWriIL3pTWY,6365,A man in a pink suit talks to a man in a red suit and man not wearing a shirt. They,play rock paper scissors.,gives a dealer to a female and they hop across the rope and rush into the streets.,dimly ride around the building as the men transfers it.,pass a few boys in circles while of him off onto the board and lands on his shirt.,are sitting at a table in the middle of the ring and holding it across to his chest.,gold0-reannot,pos,unl,unl,unl,unl,A man in a pink suit talks to a man in a red suit and man not wearing a shirt.,They\nanetv_PWriIL3pTWY,6367,The man in the pink suit falls down. The man not wearing a shirt,throws a white barrel at the man on the ground.,help protect the boy's sunburn.,bear by the man who is watching the actions.,is talking and two men run to his front door.,,gold1-reannot,pos,unl,unl,unl,n/a,The man in the pink suit falls down.,The man not wearing a shirt\nanetv_PWriIL3pTWY,6368,The man not wearing a shirt throws a white barrel at the man on the ground. A man in a black suit,comes out from the bushes.,is preparing from a table.,is sitting on it.,is walking to toss the conductor over.,is seated with one holding the trophy.,gold0-reannot,pos,unl,unl,unl,unl,The man not wearing a shirt throws a white barrel at the man on the ground.,A man in a black suit\nanetv_-zZJmRT9udU,732,A man is seen walking into frame and sits down behind a drum. He,speaks to the camera and begins playing the drums with hands.,begins to play the equipment back and fourth at the outdoor drum set.,begins hitting a brick around the drums while pausing to speak.,continues playing the drums while more people go away to play drum adverts.,continues hitting the instrument and ends by putting things into frame.,gold0-orig,pos,unl,unl,pos,pos,A man is seen walking into frame and sits down behind a drum.,He\nanetv_-zZJmRT9udU,6585,He is talking from behind a set of bongo drums. He then,\"shows how to play the drums, hitting them to a beat with his hands.\",starts near the drums.,plays and cymbals while sitting on the large drum set.,begins moving his feet back and forth.,starts playing a keyboard.,gold0-orig,pos,unl,unl,unl,unl,He is talking from behind a set of bongo drums.,He then\nanetv_-zZJmRT9udU,733,He speaks to the camera and begins playing the drums with hands. He,continues playing while pausing to speak and demonstrate how to use drums.,continues playing the drum while the camera pans around him playing in the end.,begins moving up and down an instrument.,continues playing the drum while looking off into the distance.,finishes playing the instrument while looking off into the distance.,gold0-orig,pos,unl,unl,pos,pos,He speaks to the camera and begins playing the drums with hands.,He\nanetv_-zZJmRT9udU,6584,A man is seated in a building in front of a curtain. He,is talking from behind a set of bongo drums.,does a hand stand leaning against the side of a house.,starts running down to top and turning around it.,gets a weight in place.,uses a rake to brush the hair.,gold0-reannot,pos,unl,unl,unl,pos,A man is seated in a building in front of a curtain.,He\nanetv_nc4twXSueZo,12913,A boy practices boxing with a kneeling adult. The kneeling adult,pats the boy on the back.,lifts a barbell to his chest.,lays down on his knees and give the rest.,grabs the mans arm in times.,lowers his arms in front of him.,gold0-orig,pos,unl,unl,unl,pos,A boy practices boxing with a kneeling adult.,The kneeling adult\nanetv_nc4twXSueZo,4658,There is a man wearing a white shirt kneeling down in front of him. He,is practicing boxing with the man.,is running up and down the sidewalk moving his legs.,takes a bow back up and begins to play.,\"has a black jacket, his shoes and shoulder trousers in the other person's arms.\",\"washes off their faces with a towel, then walks the other across the room.\",gold0-orig,pos,unl,unl,unl,pos,There is a man wearing a white shirt kneeling down in front of him.,He\nanetv_nc4twXSueZo,12914,The kneeling adult pats the boy on the back. The kneeling adult,rises and stands in place.,walks closer to another boy.,opens its eyes and sinks down.,goes down with a cane and then some balls.,stops talking to the child while tying the other boy up.,gold0-orig,pos,unl,unl,unl,pos,The kneeling adult pats the boy on the back.,The kneeling adult\nanetv_nc4twXSueZo,4657,A kid is wearing boxing gloves. There,is a man wearing a white shirt kneeling down in front of him.,is talking onto a cell phone.,are playing a saxophone together.,are people sitting and playing.,,gold0-reannot,pos,unl,unl,unl,n/a,A kid is wearing boxing gloves.,There\nanetv_nKn2uQTVo-U,1606,People perform acrobatic like tricks on the floor of a public space with people gathered around watching. A man wearing orange red,finishes the video spinning on the ground upside down.,talks to a young girl about a bass band and perform on a stage.,\"runs men, talks and stabs the person in the large hat.\",stilts on stage outside.,is on a stage in front of a mirror.,gold0-orig,pos,unl,unl,unl,pos,People perform acrobatic like tricks on the floor of a public space with people gathered around watching.,A man wearing orange red\nanetv_nKn2uQTVo-U,19021,A man is seen yelling to a crowd and leads into clips of people break dancing. Several clips,are seen of people taking turns in the middle of a circle performing flips and tricks.,are shown of people playing in the crowd while laughing with one another.,are shown of people performing dance together as another group of people helps.,are shown of people playing as well as walking away.,are shown of people working behind a bar and perform a routine with one another.,gold0-orig,pos,pos,pos,pos,pos,A man is seen yelling to a crowd and leads into clips of people break dancing.,Several clips\nanetv_nKn2uQTVo-U,1605,A man is performing in front of a crowd and the words a Handy Andy Trailer appear on screen with fire in the background. People,perform acrobatic like tricks on the floor of a public space with people gathered around watching.,\"wearing purple is explaining how he practices with the pair for himself, very fast and skillfully in more environments.\",are in a boat in the water below for the boat.,walks along the sidewalk holding a basketball.,,gold0-orig,pos,unl,unl,pos,n/a,A man is performing in front of a crowd and the words a Handy Andy Trailer appear on screen with fire in the background.,People\nanetv_nKn2uQTVo-U,19022,Several clips are seen of people taking turns in the middle of a circle performing flips and tricks. People,are shown dancing together as well as apart while others watch on the side.,perform dancing around the people in front of the audience.,walk down the track and jump into a circle with others watching.,roll around in the distance as the camera pans over their movements.,finish and jump into the air while still speaking to the camera.,gold0-orig,pos,unl,unl,pos,pos,Several clips are seen of people taking turns in the middle of a circle performing flips and tricks.,People\nanetv_-ypKYhjrlXw,5398,A medical worker is sitting at a table with a woman and talking to the camera. He,moves a can and touches two other cans.,cuts her clean eye with an electric knife.,the screen is shown sitting inside a kitchen from video flashes with various person working and drinking it.,rubs his hands and peddling it around.,is shown moving around on the ice while sitting on the ground.,gold1-orig,pos,unl,unl,unl,unl,A medical worker is sitting at a table with a woman and talking to the camera.,He\nanetv_-ypKYhjrlXw,5402,He picks up a third container and puts it on her arm and rubs it in as well. He,picks up a fourth tube and puts the cream on her hand and rubs it in.,takes the cube and begins sharpening the floor.,walks past it and flings the lock lobby door open.,continues hitting the bottom with the container and then holding it to his hands.,,gold0-orig,pos,unl,unl,pos,n/a,He picks up a third container and puts it on her arm and rubs it in as well.,He\nanetv_-ypKYhjrlXw,5401,He picks up another can and talks about it then sprays her arm again and rubs the cream in. He,picks up a third container and puts it on her arm and rubs it in as well.,then shaves the bottom with the brush by his fingers.,puts it extremely hard in the end and strides away from the porch of his yard.,\"rinses his face into his hands and shows another to the camera while speaking, getting up and looking into a mirror.\",walks over to the sink.,gold0-orig,pos,unl,unl,unl,pos,He picks up another can and talks about it then sprays her arm again and rubs the cream in.,He\nanetv_-ypKYhjrlXw,5400,He picks up a can and sprays it on the woman's arm and rubs it. He,picks up another can and talks about it then sprays her arm again and rubs the cream in.,shows off the brushes and clips of her cutting board.,begins to strip the saw roll paper and clean it to the floor.,\"then shows some more snow to shovel, then shows it to the camera and then throws it in different directions.\",,gold0-orig,pos,unl,unl,unl,n/a,He picks up a can and sprays it on the woman's arm and rubs it.,He\nanetv_-ypKYhjrlXw,5403,He picks up a fourth tube and puts the cream on her hand and rubs it in. He,does this again with a fifth cream.,looks around and adjusts the back of his head.,gets goes a few more times until then stops the front door.,holds up towel and demonstrating the procedure on doing it.,,gold0-orig,pos,unl,unl,pos,n/a,He picks up a fourth tube and puts the cream on her hand and rubs it in.,He\nanetv_-ypKYhjrlXw,5404,He does this again with a fifth cream. He then,\"takes a compact of brown powder, presents it to the camera and puts it back down.\",uses a camera to create a piercing.,moves off and makes it very hard.,explains what he will be done using his hands and then his teeth.,kicks and grabs the ball and hops throwing it it several more times.,gold0-orig,pos,unl,pos,pos,pos,He does this again with a fifth cream.,He then\nanetv_-ypKYhjrlXw,5399,He moves a can and touches two other cans. He,picks up a can and sprays it on the woman's arm and rubs it.,marks down a nearby chute.,tries to wash the machine and wipe them over.,swats the ice with his hand.,,gold0-reannot,pos,unl,unl,unl,n/a,He moves a can and touches two other cans.,He\nanetv_aj1ole7T9hc,14740,\"A woman is mowing a lawn, pushing the mower back and forth. She\",covers half the lawn and driveway before the video ends.,continues playing while the women continues to dirt around the woman.,continues mowing the lawn backwards.,continues using the mower to groom the lawn.,approaches the shed and starts to help it properly out.,gold0-orig,pos,unl,unl,unl,unl,\"A woman is mowing a lawn, pushing the mower back and forth.\",She\nlsmdc3001_21_JUMP_STREET-96,882,Behind him someone bites his fist and doubles over with laughter. The Captain,opens his office window.,stash bounds the stairs.,finishes the host introduces someone's response.,spits out another slug.,,gold0-orig,pos,unl,unl,pos,n/a,Behind him someone bites his fist and doubles over with laughter.,The Captain\nlsmdc1047_Defiance-91340,4060,\"Someone hands back the gun. Sharpening a spear, someone\",looks up in surprise as someone comes back to the camp with more refugees.,\"staggers away, desperately reaching for his hand.\",flips the last sack toward a small metal signet.,eyes a small attache case.,,gold1-reannot,pos,unl,unl,pos,n/a,Someone hands back the gun.,\"Sharpening a spear, someone\"\nanetv_H1bmoIihWwo,5940,A young girl is seen climbing up a ladder onto a diving board. She,walks down the end while others watch her from below.,jumps up and down on the ice.,is seen bending down on a board as well as paddling himself along the water.,demonstrates how to dive in rafts and flip through the water.,jumps over the diving board and dives into the water.,gold0-orig,pos,unl,unl,unl,pos,A young girl is seen climbing up a ladder onto a diving board.,She\nanetv_H1bmoIihWwo,15786,She then dives backwards into the indoor pool. Judges,score her performance from the sidelines.,come back up and three girls get into the pool.,sweeps her feet in the water.,scurry around and lets go of the dive.,move back and forth from the surface.,gold0-orig,pos,unl,unl,unl,unl,She then dives backwards into the indoor pool.,Judges\nanetv_H1bmoIihWwo,5941,She walks down the end while others watch her from below. She,jumps off the side and climbs back up from the pool.,comes and goes to the mirror and takes a drink.,takes many steps using her as she dances as the others walk outside.,\"shakes her head out, sighs, then blows out the fan.\",kicks an apple and followed after another.,gold0-orig,pos,unl,unl,unl,unl,She walks down the end while others watch her from below.,She\nanetv_H1bmoIihWwo,15785,A young girl climbs a tall diving board and adjusts it. She then,dives backwards into the indoor pool.,rides around.,does a flip and the crowd starts to swim around her.,does several throws in the pool and falls her balance.,,gold1-reannot,pos,unl,pos,pos,n/a,A young girl climbs a tall diving board and adjusts it.,She then\nanetv_S5bjFaZUnOM,7706,An image of a wild cat appears on the screen. Men,are shown inside a gym in fencing gear.,are sitting down behind a table on a lounge couch.,are standing in a rodeo field.,\"draw horses over the water, fly up rolling hills and next to them.\",show pictures of various females on a rock and make an automobile shot into the sand.,gold0-orig,pos,unl,unl,unl,unl,An image of a wild cat appears on the screen.,Men\nanetv_S5bjFaZUnOM,7708,\"They take turns training, and fencing with each other. Women\",\"shake hands between matches, before facing another opponent.\",bow each other then engage in a game of tug of war.,talk to them as they dance along.,are shown practicing various martial arts matches.,,gold0-orig,pos,unl,unl,pos,n/a,\"They take turns training, and fencing with each other.\",Women\nanetv_S5bjFaZUnOM,7707,Men are shown inside a gym in fencing gear. They,\"take turns training, and fencing with each other.\",use a gun to cover a basket of rocks as they speak to each other.,are showing how to lifting a set of weights.,are practicing standing on the sideline.,,gold1-orig,pos,unl,unl,unl,n/a,Men are shown inside a gym in fencing gear.,They\nanetv_S5bjFaZUnOM,5433,They are engaged in fencing together. They,poke and jab at each other as they pretend to fight.,are engaged in a game of curling.,are engaged in a fierce game of kickboxing.,are engaging in fencing.,,gold0-orig,pos,unl,unl,pos,n/a,They are engaged in fencing together.,They\nanetv_S5bjFaZUnOM,7709,\"Women shake hands between matches, before facing another opponent. A man\",speaks to the camera with the fencers behind him before cutting back to the image of the wild cat.,dives into the ring and throws another giant ball in the air.,from one of the aisles wins and then scores different speaks.,and a woman are shown playing a game of field with the camera wearing waist with the ball.,\"hits with the one, and the shuffleboard hits.\",gold0-orig,pos,unl,unl,unl,unl,\"Women shake hands between matches, before facing another opponent.\",A man\nanetv_S5bjFaZUnOM,5432,A group of people are gathered in a gym. They,are engaged in fencing together.,engage in various karate dancing.,are demonstrating how to bounce a heighten hurdle in the sand net.,start a race in a competition.,are doing a choreography on the floor.,gold1-orig,pos,unl,unl,unl,unl,A group of people are gathered in a gym.,They\nanetv_ibWb6iRQiD4,11277,She takes the towel off and shows us her tools. After brushing her hair and adding products she,sections her hair off.,uses to towel on her hair.,\"has washed and proceeds to paint in her hair, including when she has a hair cut and shows her hair up to her face\",uses her toothbrush up on demonstrating how to brush the polished shoe.,does from her natural portrait.,gold0-orig,pos,unl,unl,unl,unl,She takes the towel off and shows us her tools.,After brushing her hair and adding products she\nanetv_ibWb6iRQiD4,11275,We see a title card about hairstyles. We,see a lady with a towel on her hair.,see two people on a boat as well.,see people riding bikes on side of a ramp.,see people playing a piano.,see a closeup of a boy cutting the back nails.,gold0-orig,pos,unl,unl,unl,unl,We see a title card about hairstyles.,We\nanetv_ibWb6iRQiD4,3774,A woman walks into frame and speaks to the camera followed by pulling a towel off her hair. She,combs her hair and sprays product into it and brushes her hair afterwards.,begins pushing face clothes.,moves the monkey bar all over them and ends by smiling to the camera.,places her hands in a bucket and then dries the hair.,brushes drying hair all around and ends by holding it on the tub.,gold0-orig,pos,unl,unl,unl,unl,A woman walks into frame and speaks to the camera followed by pulling a towel off her hair.,She\nanetv_ibWb6iRQiD4,3775,She combs her hair and sprays product into it and brushes her hair afterwards. She,puts up her hair and begins blow drying it with a brush.,continues to sings in front of the mirror while holding her braids.,scrubs her hair again while still looking to the camera.,continues braiding her hair with a bow and smiling to the camera.,\"applies a silly model to her hair, camera smiling.\",gold0-orig,pos,unl,unl,unl,unl,She combs her hair and sprays product into it and brushes her hair afterwards.,She\nanetv_ibWb6iRQiD4,11278,After brushing her hair and adding products she sections her hair off. She then,blow drys the bottom of her hair while turning it on a brush.,begins by smoothing the client's hair with a mans hair.,puts the hair in a ponytail and trims the woman's hair.,ties a piece of hair dried and neatly cuts to the dress.,,gold0-orig,pos,unl,unl,unl,n/a,After brushing her hair and adding products she sections her hair off.,She then\nanetv_ibWb6iRQiD4,11276,We see a lady with a towel on her hair. She,takes the towel off and shows us her tools.,puts towel on the towel and washes it with soap.,rinse the note of the sink using a hose to catch it.,adds soap and brush the top of her hair.,,gold1-reannot,pos,unl,unl,unl,n/a,We see a lady with a towel on her hair.,She\nanetv_rBGdFwbG118,17198,A man wearing glasses is talking in a parking lot. He,\"walks into a car wash, where a green substance is being sprayed on the cars.\",are playing a game of beer.,uses her flashlight on the light of a square shows single woman.,stands at the microphone then gets up and walks away.,begin to talk about a jousting match.,gold1-orig,pos,unl,unl,pos,pos,A man wearing glasses is talking in a parking lot.,He\nanetv_rBGdFwbG118,17199,\"He walks into a car wash, where a green substance is being sprayed on the cars. The soap\",is then rinsed away with hoses.,sprays a larger spray product and dry it at the interior of the cars.,\"spills with a hose, and comes in through the window.\",quickly sprays the car as the car drives slowly along.,,gold0-orig,pos,unl,unl,unl,n/a,\"He walks into a car wash, where a green substance is being sprayed on the cars.\",The soap\nanetv_3S7EwcX-Rd0,4567,A bicycling competition is about to begin and the crowd is ready. The riders,start and already many fall during the first big jump.,turn as the canoe passes on other side.,take turns as people line up on the fake grass.,jump around multiple times doing flips in the large sand pit.,,gold0-orig,pos,unl,unl,pos,n/a,A bicycling competition is about to begin and the crowd is ready.,The riders\nanetv_3S7EwcX-Rd0,4568,The riders start and already many fall during the first big jump. Various highlights,are shown of the riders attempting the large jumps.,are shown as well as them and they are seen walking off.,are shown of people and people talking as they are in the water.,are shown followed by alabama carrying spectators.,are shown as the camera close around the ground.,gold0-orig,pos,unl,unl,unl,unl,The riders start and already many fall during the first big jump.,Various highlights\nanetv_3S7EwcX-Rd0,4569,Various highlights are shown of the riders attempting the large jumps. Three winners,are crowned at the end in a ceremony.,wins shotput and shown together.,dismount the photos then ride and gallop around.,join after signs on the field.,cheer and celebrates on the choreography.,gold0-orig,pos,unl,unl,unl,unl,Various highlights are shown of the riders attempting the large jumps.,Three winners\nanetv_8KPk9pH4wWw,7497,An athlete is seen waving his hands to the crowd and clapping followed by him running over a beam. His same shot is shown again in slow motion and he,s seen speaking to a man.,jumping up the rock in slow motion.,continues to run past various tricks as well as walking away.,is seen standing on the platform watching the game set up.,catches his other hand.,gold1-reannot,pos,unl,unl,pos,pos,An athlete is seen waving his hands to the crowd and clapping followed by him running over a beam.,His same shot is shown again in slow motion and he\nanetv_7iuU-zsauOY,315,\"In the midst, he begins playing with a small fish before continuing on his search. The man continues traveling through the water at a slow pace but he\",is n't finding anything.,does push on the top five.,is just puffing and falling.,is got unaware of him who's running.,does n't plunge any time.,gold0-orig,pos,unl,unl,unl,unl,\"In the midst, he begins playing with a small fish before continuing on his search.\",The man continues traveling through the water at a slow pace but he\nanetv_7iuU-zsauOY,314,\"A man is deep water scuba diving with some type of machine as if he is searching for something. In the midst, he\",begins playing with a small fish before continuing on his search.,uses the flame to turn in the water and begins to fire it from the hole.,\"is struggling to keep his balance, watching the man.\",snatches the measuring paper over a cabinet with a scoop of his long clothes.,listens to the life of the tiger and watches as he moves.,gold0-reannot,pos,unl,unl,unl,unl,A man is deep water scuba diving with some type of machine as if he is searching for something.,\"In the midst, he\"\nanetv_F54PZypvzCc,9162,He is throwing darts at a target. He,walks over and removes the darts before trying again.,is shown several times with a knife.,shoots holding a stick and shooting out several shots.,stops to shoot her silver throw button behind a green stick.,throws a ball into a box with sand.,gold0-orig,pos,unl,unl,unl,unl,He is throwing darts at a target.,He\nanetv_F54PZypvzCc,9161,A little boy is standing in a living room. He,is throwing darts at a target.,is standing behind a girl holding a fork in front of him.,walks to the bathroom and stands up and begins talking to the camera.,is reading a patch of bushes in front of the yard.,blows a tree out of a window.,gold0-reannot,pos,unl,unl,unl,unl,A little boy is standing in a living room.,He\nanetv__kG3DxvGnnQ,12890,A girl is seen sitting in a chair with another person wiping her face and handing her a mirror to look in. He then pierces the girl's cheeks and the camera,zooms in on the girl's face when he's done.,pans behind to show her mouth.,pans around to show her failing to make sure she loses now.,pans around with all man tools on her and finally cutting them in.,speaks to the camera.,gold0-orig,pos,unl,unl,unl,unl,A girl is seen sitting in a chair with another person wiping her face and handing her a mirror to look in.,He then pierces the girl's cheeks and the camera\nanetv_GejFc4J2mfc,13345,He shows off his legs and then runs an electric razor down his legs shaving off the hair. He then,\"puts shaving cream on his legs and shaves them, finally showing off his bare legs in the end and speaking to the camera.\",removes his shirt and cleans up the sleeve on his right leg at a mirror in the end.,dries his face with a shaver and shaving his head and neck.,finishes and looks in the mirror.,\"adds some lotion to the hair before stopping, then rides away and ends by scrubbing afterward.\",gold0-orig,pos,unl,unl,pos,pos,He shows off his legs and then runs an electric razor down his legs shaving off the hair.,He then\nanetv_GejFc4J2mfc,13344,A young man wearing a tie die shirt is seen speaking to the camera and then shows him picking out some clothes. He,shows off his legs and then runs an electric razor down his legs shaving off the hair.,grabs the drums with a waving flag and quickly approaches.,demonstrates how to clean the bottle while others wear properly.,\"bats the ball, cuts it out of the mouth and lays it on his head.\",turns to the camera and ends by adding them awake and staring at the camera.,gold1-reannot,unl,unl,unl,unl,unl,A young man wearing a tie die shirt is seen speaking to the camera and then shows him picking out some clothes.,He\nanetv_SymvoBsqt3Y,1570,They begin to march in place and play the drums. There,are red water coolers on the curb behind them.,\"woman turns and they go down the steps, then begin to dance in the venue.\",are dressed in all the star and holding their instruments holding the violin.,\", with the uneven work, stand up the sides of the row, spinning the game towards each other.\",,gold1-orig,unl,unl,unl,unl,n/a,They begin to march in place and play the drums.,There\nanetv_SymvoBsqt3Y,1569,People are standing in a line holding bass drums. They,begin to march in place and play the drums.,\"start playing instruments as the journalists are cheering, the person continuing playing the harmonica, walking away and clapping to the music.\",pick up some instruments and start fighting for a crowd of people.,start dancing and dancing in unison.,,gold0-orig,pos,unl,unl,unl,n/a,People are standing in a line holding bass drums.,They\nanetv_SymvoBsqt3Y,4398,\"Five people, four men and one woman, in baseball hats and shorts are standing in row in a parking lot holding large drums, bouncing and playing them. All of the people are holding up their drumsticks and then they all\",begin playing and bouncing in rhythm each drumming to their own beat.,begin curling around the hula hoop.,start hitting birds with red shirts.,cheered then started skateboarding all the way to the bikes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Five people, four men and one woman, in baseball hats and shorts are standing in row in a parking lot holding large drums, bouncing and playing them.\",All of the people are holding up their drumsticks and then they all\nanetv_SymvoBsqt3Y,4399,All of the people are holding up their drumsticks and then they all begin playing and bouncing in rhythm each drumming to their own beat. All of the drummers,stop and hold their drumsticks in the air.,spins and bounce while the band around them several keep rhythm by doing the same.,started dancing kicking their instruments as they while pulling down the rope.,begin to play around after the game ends.,pick up the cue which is used and high.,gold0-reannot,pos,unl,unl,unl,unl,All of the people are holding up their drumsticks and then they all begin playing and bouncing in rhythm each drumming to their own beat.,All of the drummers\nanetv_3oS_28utt2Y,13792,A person is surfing on a large wave in the water. The wave,crashes over the surfer.,crashes people on the water.,speeds off the waves and waves.,is shown again in slow motion over ski with some tips.,is in just close to one.,gold0-orig,pos,unl,unl,unl,unl,A person is surfing on a large wave in the water.,The wave\nanetv_3oS_28utt2Y,13791,A man is sitting on a wave runner in the water. A person,is surfing on a large wave in the water.,\"is carrying the ball, gracefully getting ready to jump.\",stands in front of him with an umbrella.,jumps on on the side of the tube.,is standing on the side of a cliff.,gold1-orig,pos,unl,unl,unl,pos,A man is sitting on a wave runner in the water.,A person\nanetv_zQ4HbFGX7t0,8787,He gets some boards and starts sanding them down smoothing them out. When the day is over he,turns the lights off and gets ready for work.,begins painting a stone in front with a still picture of a canvas.,switches and does a lot of more and more bumps.,sets down and uses an electric scissor to cut the top wall before getting down.,gets to where his canoe comes.,gold1-orig,unl,unl,unl,unl,unl,He gets some boards and starts sanding them down smoothing them out.,When the day is over he\nanetv_zQ4HbFGX7t0,8785,A man closing his house door and then opening his car door. He,gets in the car and puts the keys in the ignition and starts driving down the highway to his shop.,\"walks through, but stops short.\",enters the hotel room and sits down in a chair.,lets them fall and grabs a shirt.,,gold0-orig,pos,unl,unl,unl,n/a,A man closing his house door and then opening his car door.,He\nlsmdc0029_The_Graduate-64148,7369,Someone looks toward a passing waiter and raises his hand. Someone,looks back at someone apologetically.,comes from a bungalow walkway and leaps onto the big row of where someone and police soldier are.,lifts it grimly with greetings and glancing at someone.,\"hides his hand in a spread, then faces the map and reads a note.\",performs a crooked shot through his fingers.,gold0-orig,pos,unl,unl,unl,unl,Someone looks toward a passing waiter and raises his hand.,Someone\nlsmdc0029_The_Graduate-64148,7368,\"Someone tries to smile then looks out the window, then down at the center of the table. Someone\",looks toward a passing waiter and raises his hand.,'s attention is at hers.,picks up her own twirling wig and disappears.,reaches into his pocket and takes out snapshots of a cartoon boy.,is being moved by a woman dressed as a woman.,gold1-orig,pos,unl,unl,unl,unl,\"Someone tries to smile then looks out the window, then down at the center of the table.\",Someone\nlsmdc0029_The_Graduate-64148,7371,\"The waiter stops in his tracks, turns toward them. The waiter\",moves to their table.,goes head to arm.,is on the table with a bill in his hand.,blows out a pink gas flute.,turns to the hostess.,gold0-orig,pos,unl,unl,unl,pos,\"The waiter stops in his tracks, turns toward them.\",The waiter\nlsmdc0029_The_Graduate-64148,7370,Someone looks back at someone apologetically. The waiter,\"stops in his tracks, turns toward them.\",takes a swig and goes to return.,shoves her hand into the water.,lifts the mug of him briefly to join someone in his wife's.,is obviously aged to the elderly someone and comes out to meet her.,gold0-reannot,pos,unl,unl,unl,unl,Someone looks back at someone apologetically.,The waiter\nanetv_2pJTak2Qz8Q,11947,Lots of people are seen walking by in the beginning of the video. Then different people,are shown skiing up ramps to do cool tricks.,\"are shown engaging in harness and taking turns to race,.\",begin doing tricks and roping together in a dirt competition when they are all lined around.,are also soccer on a field while people are mostly intruder.,,gold0-orig,pos,unl,unl,unl,n/a,Lots of people are seen walking by in the beginning of the video.,Then different people\nanetv_TBeZXLchito,11674,People take picture to the skateboarders. A skateboarder,fells on the road.,shows a view of the tire.,gets down on a shovels slope.,is adjusting his bike.,holds his talent in a professional vintage.,gold1-orig,pos,unl,unl,unl,unl,People take picture to the skateboarders.,A skateboarder\nanetv_TBeZXLchito,11673,\"Then, the skateboarders pass on front spectators watching on side the road. People\",take picture to the skateboarders.,\"continues walking around, after the man hopped and flip on one of them.\",ride on a dirt road approach on top of her cars to begin skating.,do flips on a blue mat on the ground.,in gray signal high in front and the crowd cheers score boards.,gold0-orig,pos,unl,unl,pos,pos,\"Then, the skateboarders pass on front spectators watching on side the road.\",People\nanetv_TBeZXLchito,11672,\"Then, a skateboarder opens his arms and signal others to advance. Then, the skateboarders\",pass on front spectators watching on side the road.,take on skateboards and tumbles onto the street.,turn the gas on a low street.,\"ride past, doing tricks and stunts on the stilts together.\",makes a skate and other tricks in the country road.,gold1-orig,pos,unl,unl,unl,pos,\"Then, a skateboarder opens his arms and signal others to advance.\",\"Then, the skateboarders\"\nanetv_TBeZXLchito,11671,\"People skateboard in a competition on the road while bending and holding his arms back. Then, a skateboarder\",opens his arms and signal others to advance.,pulls the bike down the ramp.,taking a colored beanie and talking about the racers below.,stands in front of the stalls to finish exercising.,,gold0-orig,pos,pos,pos,pos,n/a,People skateboard in a competition on the road while bending and holding his arms back.,\"Then, a skateboarder\"\nanetv_TBeZXLchito,11675,A skateboarder fells on the road. People,continues skateboarding in the road.,hurdles ramps of the resort.,are in a track arena.,are in their tracks.,are part of a race.,gold1-orig,pos,unl,unl,unl,pos,A skateboarder fells on the road.,People\nanetv_m1aF1CVo-s8,7714,Exercise bikes stand in the corner of a carpeted room. Two women in black workout pants,run on the stationary elliptical machines.,uses boxing simultaneously on the lounge chair.,are doing a cardio workout in front of an inhale gallery.,stand in the parking lot.,,gold0-orig,pos,unl,unl,unl,n/a,Exercise bikes stand in the corner of a carpeted room.,Two women in black workout pants\nanetv_m1aF1CVo-s8,11723,Woman is alone in a oom doing exercise in the ellipical. another woman,start in the eliptical trainer in the back.,is jumping on the white tubes holding the bumper and falling back.,is standing on her side and fanny her exercising.,is jumping on the bars at the exercise behind her.,is behind a wall talk to the camera showing 2 different people.,gold1-orig,pos,unl,unl,unl,unl,Woman is alone in a oom doing exercise in the ellipical.,another woman\nlsmdc1010_TITANIC-77316,13468,The sunken Titanic sits on the bottom of the ocean. The elderly someone,turns from a monitor and addresses the crew of the salvage vessel.,stares intently at the words written down on an unmoving bridge.,looks around it and waves as passengers step out of the french doors into the long high waters.,is lying back in the water.,,gold0-orig,pos,unl,unl,pos,n/a,The sunken Titanic sits on the bottom of the ocean.,The elderly someone\nlsmdc1010_TITANIC-77316,13463,He places his hands around her waist as she open her eyes. Black smoke,trails from the ship's funnels as people stand at the rail high above the water.,rises out of the wood slat cabinet.,appears outside the opening.,trails over someone's view as he pulls it close to the surface.,rises from the windshield above and over a sidewalk road.,gold0-orig,pos,unl,unl,unl,unl,He places his hands around her waist as she open her eyes.,Black smoke\nlsmdc1010_TITANIC-77316,13459,Someone steps across the deck toward him. He,turns and faces her.,\"yanks the weights off the man's head, step beside someone and someone.\",whips a liquid over someone's leg.,takes his hand out of someone's backpack.,crawls over with a cloth near his ears.,gold0-orig,pos,unl,unl,pos,pos,Someone steps across the deck toward him.,He\nlsmdc1010_TITANIC-77316,13457,Someone gazes toward another table where a woman pulls a slouching young girl upright. Someone,watches the girl places a napkin on her lap with her small gloved hands.,raise her legs back observing.,\"walks to the icy front doors, futilely in the back of a hall, as a woman comes out of a bathroom.\",cleans her face in a pen as he sits down on the ground in front of someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gazes toward another table where a woman pulls a slouching young girl upright.,Someone\nlsmdc1010_TITANIC-77316,13464,Black smoke trails from the ship's funnels as people stand at the rail high above the water. Someone,reaches out and grasps someone's hands and leans his face close to hers.,watches the robot curl in one position.,'s gaze reveals someone.,see someone takes off to the car in the supply shop.,sits on it with his crutches.,gold0-orig,pos,unl,unl,unl,unl,Black smoke trails from the ship's funnels as people stand at the rail high above the water.,Someone\nlsmdc1010_TITANIC-77316,13467,Someone places her hand on the back of someone's neck. The sunken Titanic,sits on the bottom of the ocean.,looks up and someone's hair wipes off the sweat.,sits on a blue stage and lies down with a banner below and the scoreboard fades to spirals.,mounts someone and escorts him to the staircase.,glows brighter and brighter.,gold0-orig,pos,unl,unl,unl,unl,Someone places her hand on the back of someone's neck.,The sunken Titanic\nlsmdc1010_TITANIC-77316,13455,Someone places his hand on someone's cheek. Someone,places her gloved hand over his.,\"steps down, snatches the ball away from her and exits to her apartment.\",rubs her bangs against his nose and smiles deeply.,lowers the door toward someone who looks down at her.,places her thumb on her cheek then tenderly caresses someone's cheek.,gold0-orig,pos,unl,unl,unl,pos,Someone places his hand on someone's cheek.,Someone\nlsmdc1010_TITANIC-77316,13456,\"Later, in the first class lounge, someone, someone, the Countess, and another woman drink tea. Someone\",gazes toward another table where a woman pulls a slouching young girl upright.,appears on the laptop.,\"hurries through the hotel, across his wide apartment.\",dances on a stage dressed in slinky costumes.,sees someone accost a nice young woman.,gold1-orig,pos,unl,unl,unl,pos,\"Later, in the first class lounge, someone, someone, the Countess, and another woman drink tea.\",Someone\nlsmdc1010_TITANIC-77316,13462,The wind blows her shawl back on her outstretched arms. He,places his hands around her waist as she open her eyes.,stops her and shakes her baton again.,blows out her cheeks as she swings her fist down at breaking speed.,\"winces, almost dropping.\",glances at her.,gold1-orig,pos,unl,unl,pos,pos,The wind blows her shawl back on her outstretched arms.,He\nlsmdc1010_TITANIC-77316,13460,\"Grasping her hand, someone helps someone onto the bow, rail platform. They both\",step onto the lowest rung of the railing.,stoop a commuter board with camouflaged umbrella.,\"relax hard in their grips, wrapping their arms around them, wrapping their arms around them.\",snap the tugs and release their branches and rush onto the oc!,dive like a huge balloon.,gold1-orig,pos,unl,unl,unl,unl,\"Grasping her hand, someone helps someone onto the bow, rail platform.\",They both\nlsmdc1010_TITANIC-77316,13465,Someone reaches out and grasps someone's hands and leans his face close to hers. Someone,folds someone's arms around her waist.,pushes her along the room's floor with chairs empty.,strolls unsteadily in his chair.,\"returns to the cabin, followed by someone.\",takes her hand and leads him deeper inside.,gold0-orig,pos,unl,unl,unl,unl,Someone reaches out and grasps someone's hands and leans his face close to hers.,Someone\nlsmdc1010_TITANIC-77316,13466,\"She turns his face to him, and they kiss. Someone\",places her hand on the back of someone's neck.,goes into his room.,thrusts his finger at the taller man who misses then pushes off the vehicle.,explode all around him.,hockey hopeful smile as she accepts the golden snitch overhead.,gold0-reannot,pos,unl,unl,unl,unl,\"She turns his face to him, and they kiss.\",Someone\nlsmdc1010_TITANIC-77316,13461,They both step onto the lowest rung of the railing. The wind,blows her shawl back on her outstretched arms.,starts to collapse.,carries the water between the buildings beneath the towers and turrets of hogwarts castle.,continues to rise while the coach prepares.,bounces with turn react staring at the window.,gold0-reannot,pos,unl,unl,unl,unl,They both step onto the lowest rung of the railing.,The wind\nanetv_shLUZZS9oYc,16451,\"As he finishes the side, he moves to the front of the plant and continues cutting the plant down. Once a small portion is shown, he\",looks at the plant and then cuts off the item in his hand.,shows how to paint the kitchen through nestling hedges.,stops to play four foot and crosses it into its curving gaze between the trees.,climbs up to his feet and continues following when he came nearer.,\"picks up a set top, and paddles it.\",gold0-orig,pos,unl,unl,unl,unl,\"As he finishes the side, he moves to the front of the plant and continues cutting the plant down.\",\"Once a small portion is shown, he\"\nanetv_shLUZZS9oYc,16450,\"A man is standing outside by the sidewalk cutting down a set of hedges. As he finishes the side, he\",moves to the front of the plant and continues cutting the plant down.,trims some snow off.,begins to put his street above the tree.,stands up and talks to the camera of the man as he speaks.,begins brushing the dog around the side and smiles.,gold0-orig,pos,unl,unl,unl,unl,A man is standing outside by the sidewalk cutting down a set of hedges.,\"As he finishes the side, he\"\nanetv_EfjzkyLrnDg,13946,A group of people are together in a room. A man,punctures several beer cans.,\"is dancing next to her, including their legs and a ball.\",is seated on a couch talking in a microphone.,is in a room separating a couple of young people that are twirling in their seats.,is lifting a instructing stick over his head.,gold0-orig,pos,unl,pos,pos,pos,A group of people are together in a room.,A man\nanetv_EfjzkyLrnDg,2961,A close up of a person is seen grabbing cans and poking holes into them. The man then,begins drinking out of the beers all at once.,applies wax all over the top.,drills into the pot and cuts up the potatoes.,sharpens while the camera follows his movements.,adds jelly and butter as well as pieces of baked cookies.,gold0-orig,pos,unl,unl,unl,unl,A close up of a person is seen grabbing cans and poking holes into them.,The man then\nanetv_EfjzkyLrnDg,2962,The man then begins drinking out of the beers all at once. He,drops the beers down at the end while people watch him.,breaks sugar apart and puts it against his skin and drinks.,continues to continue playing and ends by tapping his hands back to the cups.,pulls his leg up while the man tickles with him.,ends by playing a glass of water and pausing to speak to the camera.,gold1-orig,pos,unl,unl,unl,unl,The man then begins drinking out of the beers all at once.,He\nanetv_EfjzkyLrnDg,13947,A man punctures several beer cans. He then,drinks the beer from the sides of the cans.,throws into bowling balls and sip more water as he walks along.,\"uses various liquors, forcing them into the open electric bites.\",cleans a leg area and scrub.,,gold0-orig,pos,unl,unl,unl,n/a,A man punctures several beer cans.,He then\nanetv_DXu_aHrZaUs,18654,A heavy weight roller is rolled over the newly placed tiles. The finished floor,is seen after the job is done.,is cleaned up and placed on the couch.,shows a dessert is made.,under a carpet is done.,,gold0-orig,pos,unl,unl,unl,n/a,A heavy weight roller is rolled over the newly placed tiles.,The finished floor\nanetv_DXu_aHrZaUs,18653,A worker places tiles onto the floor and uses plastic cross spacers in the groves. A heavy weight roller,is rolled over the newly placed tiles.,is so exhausted that it is demonstrated on the floors.,is shown above a two course with an digital razor on an upper right.,takes them down two marble steps.,understands himself from the style about the construction.,gold0-orig,pos,unl,unl,unl,unl,A worker places tiles onto the floor and uses plastic cross spacers in the groves.,A heavy weight roller\nanetv_DXu_aHrZaUs,18652,A construction worker uses a handheld scraper to apply plaster to the bare floor. A worker,places tiles onto the floor and uses plastic cross spacers in the groves.,\"does there, art, and big shovel.\",grips a chocolate bar and shakes her head.,uses the edge of the open roof.,shows him his pliers.,gold0-orig,pos,unl,unl,unl,unl,A construction worker uses a handheld scraper to apply plaster to the bare floor.,A worker\nanetv_DXu_aHrZaUs,18650,A sign board is seen with a company logo and contact information. A construction worker,screws down floor baseboards.,writes at a apply job.,enters the news shop and comes along with a manual.,cuts up a window with a white orange paint.,,gold0-orig,pos,unl,unl,pos,n/a,A sign board is seen with a company logo and contact information.,A construction worker\nanetv_DXu_aHrZaUs,18651,A construction worker screws down floor baseboards. A construction worker,uses a handheld scraper to apply plaster to the bare floor.,uses a concrete inching tool on carpeted street and ground to a shield.,sits in a snow blue tool and gets new shingles on a hood.,vacuums a concrete passing by summit and interior parts.,\"explains how to install grout to a spray bottle in a can, then spreads it with a tube and showing it to tree.\",gold0-orig,pos,unl,unl,unl,unl,A construction worker screws down floor baseboards.,A construction worker\nlsmdc3069_THE_BOUNTY_HUNTER-4684,18946,Someone checks his cell display. Someone,takes the incoming call.,brings out a revolver.,rips a cellphone off his feet.,\"rapidly checks the clock tick up to it, almost just stopping when the clock score.\",tracking map he grabs his cellphone and heads beside a shabby adjacent building.,gold0-orig,pos,unl,unl,unl,unl,Someone checks his cell display.,Someone\nanetv_Fi2Al65EH0g,10339,We see a number of opening scenes. we,see a person in a yard playing with a dog.,\"see a black conviction on his left hand, again.\",see ladies on a bench by the inside of the city.,see a new one and the ending credits.,see two men playing lacrosse on a field.,gold0-orig,pos,unl,pos,pos,pos,We see a number of opening scenes.,we\nanetv_Fi2Al65EH0g,10342,We see title screen and the lady throws Frisbee to the dog. We see a title screen and the dog,runs around the lady.,lights it in the yard.,walks past the dog.,jumps on the camel.,is so excited about sex.,gold0-orig,pos,unl,unl,unl,unl,We see title screen and the lady throws Frisbee to the dog.,We see a title screen and the dog\nanetv_Fi2Al65EH0g,10341,We see a title scree and the person rolls the Frisbee for the dog. We see title screen and the lady,throws frisbee to the dog.,windsurfing on the back of a cabin in a large raft.,hikes on the ground in front of the field.,laugh with her dogs mouth.,,gold0-orig,pos,unl,unl,unl,n/a,We see a title scree and the person rolls the Frisbee for the dog.,We see title screen and the lady\nanetv_Fi2Al65EH0g,10340,We see a person in a yard playing with a dog. We see a title scree and the person,rolls the frisbee for the dog.,pushing and sitting from one tree down.,blowing the dog go in.,plays an electric mower.,rides past the leaves without going back on the mower and passing it.,gold0-orig,pos,unl,unl,unl,unl,We see a person in a yard playing with a dog.,We see a title scree and the person\nanetv_Fi2Al65EH0g,1985,A woman is seen kneeling in the grass and playing with a dog. The woman,lays down with the dog on top and leads into her performing tricks.,attempts to play the piano several times and shows on off.,throws the frisbee back her dog while jumping and jumping around the neck.,then begins laying her body on the rug while still speaking to the camera.,continuously throws up the balls while speaking.,gold0-orig,pos,unl,unl,unl,pos,A woman is seen kneeling in the grass and playing with a dog.,The woman\nanetv_Fi2Al65EH0g,1986,The woman lays down with the dog on top and leads into her performing tricks. Another woman,is performing tricks with her dog that is shown in several shots.,is seen playing hop scotch followed by people sitting on the ground.,walk in frame while throwing off into a distance and another person laughing.,walks in behind and starts pulling the ball.,is shown walking up stairs and landing by several flips.,gold0-reannot,pos,unl,unl,unl,pos,The woman lays down with the dog on top and leads into her performing tricks.,Another woman\nlsmdc3049_MORNING_GLORY-23335,7746,\"Inside, someone waits on a bench in the wood - paneled reception area. The attendant\",is watching a small tv.,takes a cigarette out from a balloon and puts playing.,opens a door to his face.,looks down and closes her eyes.,looks up to the servant as he hurries back inside.,gold1-orig,pos,unl,unl,pos,pos,\"Inside, someone waits on a bench in the wood - paneled reception area.\",The attendant\nlsmdc3049_MORNING_GLORY-23335,7741,She packs up her apartment until it's completely empty. She,carries the last things into the removal truck and closes the door.,steps over a backyard and slumps down into a dirt vehicle.,lifts up his window facing the rainy.,\"leans in again, ready to pace.\",\"studies her dress, then hurries on and finds a spot of red.\",gold0-orig,pos,unl,unl,unl,unl,She packs up her apartment until it's completely empty.,She\nlsmdc3049_MORNING_GLORY-23335,7744,She runs across a busy road towards ibs. The skyscraper,\"is white with large, dark windows.\",is driven up the mountain.,bears a deep shaft in her hand.,is seen with chrome and pipes.,,gold0-orig,pos,unl,unl,pos,n/a,She runs across a busy road towards ibs.,The skyscraper\nlsmdc3049_MORNING_GLORY-23335,7745,\"The skyscraper is white with large, dark windows. Inside, someone\",waits on a bench in the wood - paneled reception area.,holds a bowl with fire books.,lies frozen in a huge flowing sea.,gets up and punches the keys inside without dropping hangs from the roof and sucking in the chair by someone.,\"walks onto the balcony, to a conference room that stream down the street to find reading glasses.\",gold0-orig,pos,unl,unl,unl,unl,\"The skyscraper is white with large, dark windows.\",\"Inside, someone\"\nlsmdc3049_MORNING_GLORY-23335,7743,She jogs out of a subway in New York. She,runs across a busy road towards ibs.,closes a sketchbook and clicks through tv.,pops a dingy trunk inside.,\"sits on a board, reading her name by a headline.\",,gold0-reannot,pos,unl,unl,pos,n/a,She jogs out of a subway in New York.,She\nanetv_Vvi0HQ6Pu7c,4003,One stands over the other and flips him into the ring. The other man,stands up in the end.,jerks his head and walks across the dance floor.,continues to move from arm wrestling.,jump over the air.,grabs the first weight.,gold1-orig,pos,unl,unl,unl,pos,One stands over the other and flips him into the ring.,The other man\nanetv_Vvi0HQ6Pu7c,4002,A claymation video shows wrestlers standing in a ring. One,stands over the other and flips him into the ring.,practices the final drills.,is shown at the side of people head with a referee at the head of a gym.,woman is seen sitting on a table and fencing.,\"are a scale lift appears on the sumo camp by a cable and press on fingernail or carving, 45 one after a trolls.\",gold0-orig,pos,unl,unl,unl,unl,A claymation video shows wrestlers standing in a ring.,One\nanetv_Vvi0HQ6Pu7c,7896,\"A wrestler action figure takes hold, with his legs, of another wrestling action figure and swings him up in the air. The action figure in the air\",takes hold of another action figure standing by.,is fed up with a boom and the child struggles to push on it.,above furiously pulls a weight over a padlocked bar.,watches the young man lift his hands and fall.,is penetrate by a wire ghostly.,gold1-orig,pos,unl,unl,unl,unl,\"A wrestler action figure takes hold, with his legs, of another wrestling action figure and swings him up in the air.\",The action figure in the air\nanetv_Vvi0HQ6Pu7c,7897,The action figure in the air takes hold of another action figure standing by. The action figure taking hold,is able to drop the action figure to the ground.,and brief minutes away.,of the women's hand.,constantly overtakes the scene.,,gold1-orig,pos,unl,unl,pos,n/a,The action figure in the air takes hold of another action figure standing by.,The action figure taking hold\nlsmdc3015_CHARLIE_ST_CLOUD-912,14841,He throws the ball fast. He,holds his glove chest high.,does a front flip as he follows.,is down the stairs.,takes to measure the distance when he runs into the field.,steams through the sand castle wall.,gold0-orig,pos,unl,unl,unl,unl,He throws the ball fast.,He\nlsmdc3015_CHARLIE_ST_CLOUD-912,14843,\"Someone pitches the ball into someone's crotch. As rain pours down on the brothers, a smile\",spreads across someone's face.,plays on someone's lips.,leaps onto the corners of his lips and fades to black.,begins to shine on someone's lips.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pitches the ball into someone's crotch.,\"As rain pours down on the brothers, a smile\"\nlsmdc3015_CHARLIE_ST_CLOUD-912,14842,\"As someone winds up, someone closes his eyes. Someone\",pitches the ball into someone's crotch.,peers through a window to the upper wall.,pats him in the face.,spots someone holding a self - talkie.,,gold1-orig,pos,unl,unl,unl,n/a,\"As someone winds up, someone closes his eyes.\",Someone\nanetv_SqEHpHNuy-w,57,Several people walk around and sit watching the men battle when they both stand up and laugh at one another. They shake hands and the camera,pans around the room with one man giving a thumbs up.,pans to someone talking to the camera and show various pictures of him.,pans around their movements as they wave their hips.,comes to go in.,lays back on a folded semi - spread grass.,gold0-orig,pos,unl,unl,unl,unl,Several people walk around and sit watching the men battle when they both stand up and laugh at one another.,They shake hands and the camera\nanetv_SqEHpHNuy-w,4248,\"Two military men wearing glasses are leaned over a cot smiling, talking, and looking like they are getting ready to arm wrestle while a few people around them are watching, filming them or doing their own thing. Instead of arm wrestling the man on the left\",uses his two hands to pull down the one fist of the man on the right.,falls into the microphone and the young men in blue continue to talk.,\"goes forward, raises his hand to the male then gets back followed by the winning man and the end begins.\",shake and start wrestling faster and walking around each other.,,gold0-orig,pos,unl,unl,pos,n/a,\"Two military men wearing glasses are leaned over a cot smiling, talking, and looking like they are getting ready to arm wrestle while a few people around them are watching, filming them or doing their own thing.\",Instead of arm wrestling the man on the left\nanetv_SqEHpHNuy-w,4249,\"Instead of arm wrestling the man on the left uses his two hands to pull down the one fist of the man on the right. They struggle for a short while, and as soon as the guy on the right is using all his might the man on the left let's his fist go and the man on the left\",accidentally punches his own face and knocks his glasses off.,hits the pins with the racket.,does a cartwheel and misses the lift several time.,comes down to not all the other people win.,,gold0-orig,pos,unl,unl,unl,n/a,Instead of arm wrestling the man on the left uses his two hands to pull down the one fist of the man on the right.,\"They struggle for a short while, and as soon as the guy on the right is using all his might the man on the left let's his fist go and the man on the left\"\nanetv_SqEHpHNuy-w,56,A close up of army gear is shown leading into two men having an arm wrestling match. Several people,walk around and sit watching the men battle when they both stand up and laugh at one another.,have shown performing their tricks.,play foosball together while kicking their legs in the air and end by killing a man smiling.,are seen at tiling and adding strength to their nails.,look on while the two continue on roller blades and end by jumping back.,gold0-orig,pos,unl,unl,unl,unl,A close up of army gear is shown leading into two men having an arm wrestling match.,Several people\nanetv_5Y4YkCkgShc,11476,A pancake is shown with syrup being poured on it. Ingredients,are placed in a bowl.,are then poured into baking dough.,is being added into a pot.,are poured into the blender.,,gold0-orig,pos,unl,pos,pos,n/a,A pancake is shown with syrup being poured on it.,Ingredients\nanetv_5Y4YkCkgShc,11475,A man in a chef's coat is standing in a kitchen talking to the camera. A pancake,is shown with syrup being poured on it.,is covered with candles in front of a large kitchen.,is played in a kitchen sink.,appears in a pan next to the dog.,,gold0-orig,pos,unl,unl,unl,n/a,A man in a chef's coat is standing in a kitchen talking to the camera.,A pancake\nanetv_5Y4YkCkgShc,11479,A ladle is shown next to the bowl. The man,ladles the pancake batter onto the griddle.,\"shakes the bowl of blue flour, picks him up, and places hands over the sink.\",is peeling himself into a bowl.,tells us the potato.,starts chopping tomato vegetables on a plate.,gold0-orig,pos,unl,unl,unl,pos,A ladle is shown next to the bowl.,The man\nanetv_5Y4YkCkgShc,11482,The man is shown eating a piece of the pancake. The man,continues talking to the camera while holding a piece of pancake.,starts slicing little pieces of wood at the end.,demonstrates holding a dish and showing how to shave.,\"is in making an orange bowl, then the man added the lime.\",begins putting his hands into a box.,gold0-orig,pos,unl,unl,unl,pos,The man is shown eating a piece of the pancake.,The man\nanetv_5Y4YkCkgShc,11478,The man cracks an egg and whisks the ingredients in a bowl. A ladle,is shown next to the bowl.,cooks the mix and adds the ingredients.,is stirred in a pan.,pours into the pot with the new mixture.,\"chugs the noodles, finishing the recipe.\",gold0-orig,pos,unl,unl,unl,unl,The man cracks an egg and whisks the ingredients in a bowl.,A ladle\nanetv_5Y4YkCkgShc,11477,Ingredients are placed in a bowl. The man,cracks an egg and whisks the ingredients in a bowl.,adds chocolate with ingredients then adds the ingredients to a shot counter.,takes the pasta and placed it in the oven.,put butter on a cooked pasta in the pan.,pour the mix into a salad.,gold1-orig,pos,unl,unl,pos,pos,Ingredients are placed in a bowl.,The man\nanetv_5Y4YkCkgShc,11480,The man flips the pancakes. The pancake is placed on a plate and syrup,is poured on it.,is added to the sauce.,pours both begins rolling the cookies into some dough.,are chopped with utensils and tomatoes.,immediately pours the sauce into a jar and the contents are mixed together.,gold0-orig,pos,unl,unl,unl,unl,The man flips the pancakes.,The pancake is placed on a plate and syrup\nanetv_5Y4YkCkgShc,11481,The pancake is placed on a plate and syrup is poured on it. The man,is shown eating a piece of the pancake.,fills the pot with salt and chopped.,ads the cooked ingredients together in a bowl and adds it.,gets in and presents the plate to the glass mix.,is washing dirt with rice.,gold0-orig,pos,unl,unl,unl,unl,The pancake is placed on a plate and syrup is poured on it.,The man\nanetv_5Y4YkCkgShc,11474,A nighttime view of a city is shown through a window. A man in a chef's coat,is standing in a kitchen talking to the camera.,holds a small cake in front of her.,is standing by a tree.,is talking in front of the tv.,raises an arm over his shoulders.,gold0-orig,pos,unl,unl,pos,pos,A nighttime view of a city is shown through a window.,A man in a chef's coat\nlsmdc3015_CHARLIE_ST_CLOUD-730,17012,It shows wrecked station wagon. A flashlight,sweeps over someone's baseball cap.,shows people looking toward chairs.,speeds through to the hangar.,zooms from the timekeeper's cars.,sweeps over a high corner and disappears.,gold1-orig,pos,unl,unl,unl,pos,It shows wrecked station wagon.,A flashlight\nanetv_NpBZn7OHUKo,14359,The man in blue kneels and pulls the handle on a exercise machine from above as the standing man gives directions he finishes and stands. There is a title screen and we,see the man pull from the ground up n the same machine.,see the male dealer in military shorts and tech stand on a bar demonstrate.,see a man's younger man who is being pulled with a pair of training arms.,return to a man getting up for his sunscreen bottle.,see a man on a diving board standing above a fountain.,gold1-orig,pos,unl,unl,unl,pos,The man in blue kneels and pulls the handle on a exercise machine from above as the standing man gives directions he finishes and stands.,There is a title screen and we\nanetv_NpBZn7OHUKo,18891,One man speaks the camera. the two men then,walk over to an exercise machine.,begin to zoom around the wall growth.,engage in martial aerobics.,display a group of still images of pro sunscreen.,begin playing ping pong with one another close behind.,gold0-orig,pos,unl,unl,pos,pos,One man speaks the camera.,the two men then\nanetv_NpBZn7OHUKo,14360,There is a title screen and we see the man pull from the ground up n the same machine. We,see a closing title screen.,see a gift dealing door.,are then shown standing on an exercise bike and picks up a tool.,see the title screen for the patrol.,see instruction on the screen and we see more clips.,gold1-orig,pos,unl,unl,pos,pos,There is a title screen and we see the man pull from the ground up n the same machine.,We\nanetv_NpBZn7OHUKo,14357,We see an opening title screen. Two men,stand in a room talking to the camera.,are talking inside a building.,\"play paintball with a rapid, pointed target.\",are inside a room talking.,are talking to the camera.,gold0-orig,pos,pos,pos,pos,pos,We see an opening title screen.,Two men\nanetv_NpBZn7OHUKo,18892,The two men then walk over to an exercise machine. the talking man,continues to talk with the other man demonstrates exercises.,attaches his screwdriver between the bars.,sets up and comes again with the horse and starts to do the exercises.,stops and demonstrates various movements of the former pedal.,starts to adjust his weights.,gold0-orig,pos,unl,pos,pos,pos,The two men then walk over to an exercise machine.,the talking man\nanetv_NpBZn7OHUKo,14358,Two men stand in a room talking to the camera. the man in blue kneels and pulls the handle on a exercise machine from above as the standing man,gives directions he finishes and stands.,sits in the corner and picks up a microphone.,holds the weights while also walking pensively on the floor.,walks up and lets the car start inside.,,gold0-reannot,pos,unl,unl,unl,n/a,Two men stand in a room talking to the camera.,the man in blue kneels and pulls the handle on a exercise machine from above as the standing man\nanetv_OUIS4bnEhU0,4017,\"A woman is in a gym, sitting on a ball. She\",is doing several sit ups on the ball.,is standing in front of a tv and at the piano and talking.,poses on a exercise.,lifts the barbells over her head before dropping it.,,gold0-orig,pos,unl,pos,pos,n/a,\"A woman is in a gym, sitting on a ball.\",She\nanetv_OUIS4bnEhU0,4018,She is doing several sit ups on the ball. She,continues doing sit ups propping her feet up.,hits the ball around with the racket.,is starting to pull down of the entire bar together.,sits there and sits in a chair.,,gold0-orig,pos,unl,unl,unl,n/a,She is doing several sit ups on the ball.,She\nanetv_OUIS4bnEhU0,3474,She then begins performing a set of sit ups on a ball. She,continues doing sit ups and stops to smile to the camera.,pink text is shown.,continues down the set and faces herself while moving.,then shows several other gymnasts and coaches several shots of them dancing and dancing around.,,gold0-orig,pos,unl,unl,pos,n/a,She then begins performing a set of sit ups on a ball.,She\nanetv_OUIS4bnEhU0,3473,A woman is seen close up to the camera. She then,begins performing a set of sit ups on a ball.,rides on with another girl doing flips and tricks.,continues dancing around the water and passing the windows in her movements.,begins piercing the sin's ear.,begins to climb in with the class.,gold1-orig,pos,unl,unl,unl,pos,A woman is seen close up to the camera.,She then\nanetv_tJ2xOG_EWOg,13197,Men is peeling a pumpkin on top of a white table. man,is doing a face with a knife on the pumpkin.,\"is talking in a kitchen, cutting the cut with a tomato and decorating the tree to a jack table.\",is showing a piece of bread in the pumpkin and put the knife on the pumpkin.,pours liquid for them and pours them along the fence of the grass.,is holding a green rag in front of the tree.,gold0-orig,pos,unl,unl,unl,unl,Men is peeling a pumpkin on top of a white table.,man\nanetv_tJ2xOG_EWOg,13198,The man grabs a brush and paints the pumkin with black and red paint. the man,walks and connect lights inside a pumpkin.,talks as the boy continues to paint the fence.,covers the canvas with ink while still talking.,put cement on the seats before walking away.,paints the fence with white paint.,gold0-orig,pos,unl,unl,unl,unl,The man grabs a brush and paints the pumkin with black and red paint.,the man\nanetv_tJ2xOG_EWOg,3959,Someone is seen peeling the outside of a pumpkin. They then,carve a face into the pumpkin.,take some twigs from the sink and look at the camera.,chop up a paper and put the insides into the pumpkin.,put more clips into a pumpkin on the other side of the pumpkin.,,gold0-orig,pos,unl,unl,pos,n/a,Someone is seen peeling the outside of a pumpkin.,They then\nanetv_-yOwB5rvMAo,17428,The woman is hallucinating this and is then doing an interview. A group of people in a classroom,cheerfully knit away and play with yarn.,\"are in a gym, talking in the background.\",walks into a kitchen and hands the cookies to a man in a karate uniform.,are gathered in an arena.,are on the beach at the gathering.,gold1-orig,pos,unl,unl,unl,pos,The woman is hallucinating this and is then doing an interview.,A group of people in a classroom\nlsmdc1018_Body_Of_Lies-80001,8074,Someone creeps up behind some rocks. He,takes out his binoculars and looks down at a collection of stone houses.,drops the locket under a sheet.,jumps high onto his back.,carries the hearing aid.,\"starts to go, diving for life.\",gold0-orig,pos,unl,unl,unl,unl,Someone creeps up behind some rocks.,He\nlsmdc1018_Body_Of_Lies-80001,8105,\"In a yard outside, soldiers are playing basketball. Using tweezers, the doctor\",picks a sharp fragment from an open wound in someone 'arm.,constantly studies each other.,cuts a knife and shows how to use a knife.,strides out on to her dismount.,\"barks to two football students and takes a second, then stops and gives a suspicious look.\",gold0-orig,pos,unl,unl,unl,unl,\"In a yard outside, soldiers are playing basketball.\",\"Using tweezers, the doctor\"\nlsmdc1018_Body_Of_Lies-80001,8077,\"Wearing traditional robes, a jacket and skull cap, someone walks down the hill, towards the Iraqi by the fire. Someone\",gets down by some rocks and pulls out the rifle's stand.,stands nearby before wakeboarding.,and the zombies are still after he falls.,'s head rolls away from the window.,\"watches as someone leaves the move, keeping his head to one side before chattering out.\",gold0-orig,pos,unl,unl,unl,unl,\"Wearing traditional robes, a jacket and skull cap, someone walks down the hill, towards the Iraqi by the fire.\",Someone\nlsmdc1018_Body_Of_Lies-80001,8094,Someone shoots at the other vehicles as they approach. They,collide on a bend and ram into a rock.,\", someone presses his hands against the coffin's rim of the vault.\",fires a red fire.,\"notice someone, an older man in a baggy white suit and black dress and breeches, sits.\",\"jump up and score the goal, but someone has to enter back.\",gold0-orig,pos,unl,unl,unl,unl,Someone shoots at the other vehicles as they approach.,They\nlsmdc1018_Body_Of_Lies-80001,8082,Someone throws a grenade into a courtyard and runs in shooting. He,exchanges fire with the young man.,glances at the family of actors.,\"plunges into a clearing, missing a bright torch.\",\"bumps on a wall, knocking them over.\",\"strides out, killing a guard.\",gold0-orig,pos,unl,unl,unl,unl,Someone throws a grenade into a courtyard and runs in shooting.,He\nlsmdc1018_Body_Of_Lies-80001,8106,\"Using tweezers, the doctor picks a sharp fragment from an open wound in someone 'arm. He\",puts it with many other fragments in a kidney bowl.,takes another nut to emerge with a big shaft of blood.,peers into the corner and spies the witch in the rear.,finds a poster of blood on his father's forehead.,,gold0-orig,pos,unl,unl,unl,n/a,\"Using tweezers, the doctor picks a sharp fragment from an open wound in someone 'arm.\",He\nlsmdc1018_Body_Of_Lies-80001,8101,A soldier knocks someone out with an injection and the chopper takes off. Someone,lies by the open hatch.,throws down the weapon's rifle.,disappears from beneath the crater.,hooks the car with a crumpled rag.,,gold0-orig,pos,unl,unl,unl,n/a,A soldier knocks someone out with an injection and the chopper takes off.,Someone\nlsmdc1018_Body_Of_Lies-80001,8097,Someone leans out of the window and shoots at them. The rpg grazes a chopper and the chopper,destroys one of the four - by - fours.,\"gets closer, shoving the cell flying.\",arrives at the van's rear end.,head over.,rides filled with chevy with obstacles.,gold0-orig,pos,unl,unl,unl,unl,Someone leans out of the window and shoots at them.,The rpg grazes a chopper and the chopper\nlsmdc1018_Body_Of_Lies-80001,8095,They collide on a bend and ram into a rock. Someone,drives off along a dirt road.,climbs into the driver's seat.,\"runs through the gate, falling out of the ring.\",topples over and takes off firing.,,gold0-orig,pos,unl,unl,unl,n/a,They collide on a bend and ram into a rock.,Someone\nlsmdc1018_Body_Of_Lies-80001,8073,Someone reverses the vehicle a few feet. Someone,creeps up behind some rocks.,screech together in his office frame.,shows the informant away.,shoves the other pigs.,pushes away from the shelves.,gold0-orig,pos,unl,unl,unl,unl,Someone reverses the vehicle a few feet.,Someone\nlsmdc1018_Body_Of_Lies-80001,8075,He takes out his binoculars and looks down at a collection of stone houses. A man,stands by a fire on which a pile of cds and cassettes is burning.,walks out a bright welcome to the corner.,sets down the slide on a leather rock as the gray settles.,\"jumps down the stairs, then does a steadying flip over the rope.\",\"climbs along edge rim in a raft, then waggles his feet in the small tube.\",gold0-orig,pos,unl,unl,unl,unl,He takes out his binoculars and looks down at a collection of stone houses.,A man\nlsmdc1018_Body_Of_Lies-80001,8072,People drive along a dirt road and stop at the top of a hill. Someone,reverses the vehicle a few feet.,leads the way up the hill towards a wooded path.,turns on to a line through the yard.,punches in the rough window before driving along the river.,\"stops at the front gates of the rundown, watched by an older goat.\",gold0-orig,pos,unl,unl,unl,unl,People drive along a dirt road and stop at the top of a hill.,Someone\nlsmdc1018_Body_Of_Lies-80001,8084,Two choppers fly towards the scene. The young man,peers out from behind a wall.,finds off in a plane.,\"returns, knocking the pins aside.\",struggles to kick it off.,jumps into a cabin.,gold0-orig,pos,unl,unl,unl,unl,Two choppers fly towards the scene.,The young man\nlsmdc1018_Body_Of_Lies-80001,8078,Someone gets down by some rocks and pulls out the rifle's stand. The man at the fire,sees someone and frowns.,dug out the window.,draws the soldier's boot.,picks up the overcoat.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gets down by some rocks and pulls out the rifle's stand.,The man at the fire\nlsmdc1018_Body_Of_Lies-80001,8088,\"Someone shoots him and runs out. As the house blows up, someone\",is thrown off his feet.,sees the doctor on the table.,climbs up in cheering of someone.,sits upside down on his bed.,slaps someone on the shoulder.,gold0-orig,pos,unl,unl,unl,pos,Someone shoots him and runs out.,\"As the house blows up, someone\"\nlsmdc1018_Body_Of_Lies-80001,8102,\"His face splattered with blood. Lying in a hospital, someone\",remembers being with someone and his family.,sits alone in a narrow ditch.,backs up from a chair and unrolls off his cuff.,picks up his daughter.,,gold0-orig,pos,unl,unl,pos,n/a,His face splattered with blood.,\"Lying in a hospital, someone\"\nlsmdc1018_Body_Of_Lies-80001,8096,Someone drives off along a dirt road. The two choppers,fly over the desert.,turn to look at him.,ride on recumbent bicycles.,stare at a group of zombies holding surfboards.,lie to each other.,gold0-orig,pos,unl,unl,unl,unl,Someone drives off along a dirt road.,The two choppers\nlsmdc1018_Body_Of_Lies-80001,8087,He turns a corner and sees a man holding a detonator with wires attached. Someone,shoots him and runs out.,has someone up and out of view.,ghostly suddenly emerge and grabs an entryway.,wears a cap that shows someone's timers farther away.,dashes on a small metal ring with a huge red liquor.,gold0-orig,pos,unl,unl,unl,unl,He turns a corner and sees a man holding a detonator with wires attached.,Someone\nlsmdc1018_Body_Of_Lies-80001,8083,He exchanges fire with the young man. Two choppers,fly towards the scene.,stand on top of him.,fly out at the temple.,knock him up in the air.,,gold0-orig,pos,unl,unl,unl,n/a,He exchanges fire with the young man.,Two choppers\nlsmdc1018_Body_Of_Lies-80001,8098,The rpg grazes a chopper and the chopper destroys one of the four - by - fours. The chopper,fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof.,\"flies in as a huge jet flies just above the airport, which hovers on its side.\",gets to the edge.,fires and careens toward one's vehicle.,,gold0-orig,pos,unl,unl,pos,n/a,The rpg grazes a chopper and the chopper destroys one of the four - by - fours.,The chopper\nlsmdc1018_Body_Of_Lies-80001,8089,\"As the house blows up, someone is thrown off his feet. The black choppers\",\"fly above a winding river, then a forest.\",swirls up and lift their heads.,flash in the second direction.,rise from the pile.,are covered by a silver trophy.,gold0-orig,pos,unl,unl,unl,unl,\"As the house blows up, someone is thrown off his feet.\",The black choppers\nlsmdc1018_Body_Of_Lies-80001,8085,Someone runs to the house. Someone,enters the house with his gun held out in front.,follows someone to his house.,enters with his phone slung in his shoulder.,starts using - act fitness clothes.,breathes fire at hers.,gold0-orig,pos,unl,unl,unl,unl,Someone runs to the house.,Someone\nlsmdc1018_Body_Of_Lies-80001,8104,The Iraqi prisoner being beaten to death. A doctor,\"leans over someone, who wakes.\",walks out of the studio.,'s guards appear.,scratches his beard.,,gold1-reannot,pos,pos,pos,pos,n/a,The Iraqi prisoner being beaten to death.,A doctor\nlsmdc1018_Body_Of_Lies-80001,8103,\"Lying in a hospital, someone remembers being with someone and his family. The Iraqi prisoner\",being beaten to death.,\"has entered in a quaint, battered file shop.\",is in his suits.,has dropped his people.,sits closest to the mailbox.,gold0-reannot,pos,unl,unl,unl,pos,\"Lying in a hospital, someone remembers being with someone and his family.\",The Iraqi prisoner\nlsmdc1018_Body_Of_Lies-80001,8090,\"The black choppers fly above a winding river, then a forest. Someone\",drags someone to the four - by - four.,shines on gunpowder from a laundromat in his cupped hand.,treads from the humanoid courtyard.,'s eyes follow someone of people standing against a row of marble pillars.,\"'s mother trails to the man, driving her motorcycle.\",gold0-reannot,pos,unl,unl,unl,unl,\"The black choppers fly above a winding river, then a forest.\",Someone\nlsmdc1018_Body_Of_Lies-80001,8086,Someone enters the house with his gun held out in front. He,turns a corner and sees a man holding a detonator with wires attached.,checks a slat for twenty minutes and sweeps it way down the street in front of its open village of sparking funeral embers.,phone is crashing down the windscreen.,puts his own hands around.,\"down, a clerk gaining from a twelve - dollar bill and hurries out of the worms area.\",gold0-reannot,pos,unl,unl,unl,unl,Someone enters the house with his gun held out in front.,He\nlsmdc1018_Body_Of_Lies-80001,8092,Someone burns his hand as he grabs cds and cassettes from the fire. Someone,\"drags him to the four - by - four, throws him in the back and drives off.\",\"glances over to someone, holding his wand, feeling his strength.\",slides off a rock barrier onto a wooden jetty lined with vast medieval guests.,stuffs the mop back in his pocket.,snaps pieces of the crystal in flame.,gold0-reannot,pos,unl,unl,unl,unl,Someone burns his hand as he grabs cds and cassettes from the fire.,Someone\nlsmdc1018_Body_Of_Lies-80001,8099,The chopper fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof. It,\"slides to a stop in the dirt, throwing someone about in the back.\",lies in the water.,paned flat on the roof above a building's rooftop overpass.,shows someone's glinting.,,gold0-reannot,pos,unl,unl,unl,n/a,The chopper fires a rocket which destroys the second four - by - four and knocks people's four - by - four onto its roof.,It\nlsmdc1018_Body_Of_Lies-80001,8093,\"Someone drags him to the four - by - four, throws him in the back and drives off. Explosions\",rip through the buildings.,scatter on the ground a tear spills along the ground.,steps into the driveway and someone is lurking in the shadows on the other side of a house.,\"one of the window, someone continues the reactor, exposing its water.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone drags him to the four - by - four, throws him in the back and drives off.\",Explosions\nlsmdc0020_Raising_Arizona-57508,19456,Someone's feet leave the ground. He,flies back and lands in a heap.,starts the locket and finds the canvas clinging to the canvas abdomen.,sniffs around and throws someone at the ground.,gapes as it slams into the ground.,throws a rope next to one of the inspectors.,gold0-orig,pos,unl,pos,pos,pos,Someone's feet leave the ground.,He\nlsmdc0020_Raising_Arizona-57508,19458,Someone is looking back over his shoulder to shout at someone as he runs. - someone,runs smack into a tree and drops like a sack of cement.,climbs up the staircase to his street and starts the hangar door.,flips slowly to the side of the lifeboat.,stops by the head - gun table.,stares out of the car into the icy water.,gold0-orig,pos,unl,unl,unl,pos,Someone is looking back over his shoulder to shout at someone as he runs.,- someone\nlsmdc0020_Raising_Arizona-57508,19457,\"With someone still advancing, someone starts to run. Someone\",is looking back over his shoulder to shout at someone as he runs.,\"spots something and flips back on, stumbling over again, meeting up in the end zone.\",\"strokes the unconscious driver's arm, body lowered and carrying the high knee above back to the crowd.\",\"flies, a tall thin man in a grey suit, tries to cart the treated men off the last railcar.\",\"shoots aside, knocking out the first stuff and clown men.\",gold0-orig,pos,unl,unl,unl,unl,\"With someone still advancing, someone starts to run.\",Someone\nanetv_pqVWGi0d4RU,19912,A series of scenes from hockey games are shown. An overhead view of one of the hockey team's benches,is shown with seated players.,is shown and now a referees arrow is balanced across the court.,and several men speaking and hiding are shown.,and is shown in the background.,is seen during the sport.,gold0-orig,pos,unl,unl,pos,pos,A series of scenes from hockey games are shown.,An overhead view of one of the hockey team's benches\nanetv_pqVWGi0d4RU,3189,\"Other teams play ice jockey and a man get injured, then the team play and win. A man\",talks on front a microphone.,addresses the players on the table.,exits the high country that makes a run toddler run very fast.,\"chases a boy, trying to carry the patch that the crowd congratulate the male.\",\"inspects the type of stone, then holds another up.\",gold0-reannot,pos,unl,unl,unl,unl,\"Other teams play ice jockey and a man get injured, then the team play and win.\",A man\nanetv_41LaEr0i2Dc,12980,People are being pulled behind the boat. Waves,ripple behind the boats.,are being carried by a boats.,jump onto the track.,in the coaches are staying on.,are leaping up and down their vehicles.,gold0-orig,pos,unl,unl,unl,unl,People are being pulled behind the boat.,Waves\nanetv_41LaEr0i2Dc,8912,Boats are seen floating on the water. We then,\"see people on the boat, and pulling people on water skis.\",see canoes sitting on the ride.,see a person next to people begin kayaking through an ocean.,see the green waters on the water.,see kids riding down tubes while others sail toward the camera.,gold0-orig,pos,unl,unl,unl,unl,Boats are seen floating on the water.,We then\nanetv_41LaEr0i2Dc,12978,A large river runs through a canyon. Several boats,ride through the water.,fly from a standing raft.,are shown being overturned.,stand together along and down the river.,,gold1-orig,pos,unl,pos,pos,n/a,A large river runs through a canyon.,Several boats\nanetv_41LaEr0i2Dc,8911,A view is shown of a vast and long canyon. Boats,are seen floating on the water.,propel from a viewpoint in the sea and scorched land.,are shown racing onto the bridge.,is being put rafting in the sand in the water.,explode together as the bird flies ahead.,gold0-orig,pos,unl,unl,unl,unl,A view is shown of a vast and long canyon.,Boats\nanetv_41LaEr0i2Dc,12979,Several boats ride through the water. People,are being pulled behind the boat.,ride a canoe through large trees.,are rafters in a small boat.,are floating on inflated tires.,,gold0-reannot,pos,unl,pos,pos,n/a,Several boats ride through the water.,People\nanetv_ETHVjrG7S4k,5843,The men then hop on a set of bars. The,climb across the bars and cheer with other people.,flip each other on the wall.,two men get the slide and dance when they arrive.,competition and falling over the obstacles and others watch.,girls then run away by the camera in the end cheering.,gold1-orig,pos,unl,unl,unl,pos,The men then hop on a set of bars.,The\nanetv_ETHVjrG7S4k,706,People walks on a field equipped with large monkey bars. Then people,climbs the monkey bars and advance until reach the other side of the bars.,sit in front of another group of bikers before taking off under a huge tree.,are shown in other groups.,shoot and climb up the fence and does a hand stand.,walk back and do tricks.,gold0-orig,pos,unl,pos,pos,pos,People walks on a field equipped with large monkey bars.,Then people\nanetv_ETHVjrG7S4k,707,\"Then people climbs the monkey bars and advance until reach the other side of the bars. After, people\",walks to a stand where people serves water.,are in a gym doing a very stiff dance and doing pretty varying everything.,are swimming around and pick up papers.,steps to the wall as a tile step comes.,gather and climb in and do a belly dance for another person.,gold0-reannot,pos,unl,unl,unl,unl,Then people climbs the monkey bars and advance until reach the other side of the bars.,\"After, people\"\nanetv_C4QrTmNDADY,13362,A man is seen laying on the floor and begins demonstrating how to properly perform dance moves as well as the wrong way to perform them. The man,continues moving all around the floor and leads into several clips of people performing the move.,continues jumping up and raising the legs up while showing the side of his back to watch him dance.,moves his hands up and down while grabbing one of his hands and holding his arms up in the air.,continues to play the guitar while the camera switches up to showing the girls warming up.,continues to properly dance various while moving all around the room as well as for the camera.,gold0-orig,pos,unl,unl,unl,pos,A man is seen laying on the floor and begins demonstrating how to properly perform dance moves as well as the wrong way to perform them.,The man\nanetv_8l7SuE4_lCk,9065,The man then begins brushing his teeth in several shots. He,continues brushing his teeth and showing off his mouth in the end.,moves his tongue around showing the teeth while speaking to himself.,continues to speak to the camera while speaking.,smiles and the camera switches to video of himself.,continues tugging licking his leg and looking up at the camera.,gold0-orig,pos,unl,unl,unl,unl,The man then begins brushing his teeth in several shots.,He\nanetv_8l7SuE4_lCk,9064,A young man is seen looking into the camera holding a toothbrush. The man then,begins brushing his teeth in several shots.,\"wets the cut, then puts again the plastic on the surface.\",begins brushing his teeth with the rag and moving his hands around.,begins shaving the bottom of his eyes and begins to shave.,begins brushing up and brushing his teeth while wearing his white shirt.,gold1-reannot,pos,unl,unl,unl,unl,A young man is seen looking into the camera holding a toothbrush.,The man then\nanetv_wott7JRSkOk,18917,Two men plays soccer table moving the players on the rods. A man,wearing yellow shirt stroke the rod strong to hit the white ball.,moves chairs to a starts and falls in the yard.,bends down to watch their.,throws a green ball in a field and another player chases him.,walks onto the grass and takes someone to the water.,gold0-orig,pos,unl,unl,unl,unl,Two men plays soccer table moving the players on the rods.,A man\nlsmdc3073_THE_GUILT_TRIP-34835,14597,She carefully closes the door and tiptoes in. Someone,lies in bed as daylight shines through the windows.,looks at the log for a moment.,opens the door and turns to someone.,\"runs forward as it passes, hanging from sinuous roots.\",removes her gun and heads up the stairs.,gold0-orig,pos,unl,unl,unl,unl,She carefully closes the door and tiptoes in.,Someone\nlsmdc3073_THE_GUILT_TRIP-34835,14596,\"Later, someone enters their hotel room, holding a half - finished drink. She\",carefully closes the door and tiptoes in.,approaches the bar and approaches the counter.,leaves the room then hurries back in.,grabs it from her dress and shuffles it behind the shopping bag.,carries her spoons to the deck.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone enters their hotel room, holding a half - finished drink.\",She\nlsmdc0017_Pianist-55770,14997,The table groans with the remains of the dinner. They all,clink glasses and drink.,take their seats facing the statue of the instructor and aim their chests.,talk with savagely grabbing the phone.,try to read off the ball up again.,\"wait for him, taking his steps.\",gold0-orig,pos,unl,unl,unl,pos,The table groans with the remains of the dinner.,They all\nlsmdc0017_Pianist-55770,14995,Someone pours liqueur into glasses. The family,\"are seated around the dining table, having just finished a meal.\",accepts their bulging sacks.,turns round and smiles.,sits with people there.,,gold0-orig,pos,unl,pos,pos,n/a,Someone pours liqueur into glasses.,The family\nlsmdc0017_Pianist-55770,15001,\"Someone is opening and closing the window, examining the frame with her fingers. At the other end, someone\",sits counting a small stack of notes and coins.,finds a lawn coat and the scars paste from the old window.,\"looks in an evidence poker, and resumes shaving.\",aims the wand at someone.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone is opening and closing the window, examining the frame with her fingers.\",\"At the other end, someone\"\nlsmdc0017_Pianist-55770,14999,\"On the sidewalk of the street, with its buildings in ruins, smoke still rising, stand onlookers, including people, and a little behind them, someone, craning to see. They\",\"watch, expressionless, as the germans march past.\",arrive at the hedestad halt.,have their cannon pointed in their own.,\"put their horns in the court, then describes their billy in a club called a night - pong experience.\",,gold0-orig,pos,unl,unl,unl,n/a,\"On the sidewalk of the street, with its buildings in ruins, smoke still rising, stand onlookers, including people, and a little behind them, someone, craning to see.\",They\nlsmdc0017_Pianist-55770,15000,\"They watch, expressionless, as the Germans march past. Someone\",\"is opening and closing the window, examining the frame with her fingers.\",frowns as someone's finger is plucked at her lip.,\"goes frantically, circling in the direction of the cliff.\",drops down at her alien.,,gold0-reannot,pos,unl,unl,unl,n/a,\"They watch, expressionless, as the Germans march past.\",Someone\nlsmdc0017_Pianist-55770,14998,\"A column of German Soldiers, led by an officer on horseback, march into view. On the sidewalk of the street, with its buildings in ruins, smoke still\",\"rising, stand onlookers, including people, and a little behind them, someone, craning to see.\",form around someone's face.,smoke from behind another helicopter.,tangled in the windshield and past the plane.,stream through the air like signs among the intervention officers.,gold0-reannot,pos,unl,unl,unl,pos,\"A column of German Soldiers, led by an officer on horseback, march into view.\",\"On the sidewalk of the street, with its buildings in ruins, smoke still\"\nlsmdc0017_Pianist-55770,14996,\"The family are seated around the dining table, having just finished a meal. The table\",groans with the remains of the dinner.,is taken from him.,\"is a child, pieces of food, oily papers.\",looks with turbulent voices.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The family are seated around the dining table, having just finished a meal.\",The table\nlsmdc1040_The_Ugly_Truth-8811,15337,\"Someone goes into the room, then quickly reemerges and runs down the corridor after someone. He\",stops and turns to face her.,climbs up to pick something up.,lies on his hands in a transparent cot.,\"turns to people, and sits alone in the lounge.\",cocks his head and finds it empty.,gold1-orig,pos,unl,unl,unl,unl,\"Someone goes into the room, then quickly reemerges and runs down the corridor after someone.\",He\nanetv_QHF28_yGOV8,15501,\"A man in a black wet suit and carrying a surfboard is talking to the camera man, about to get in the water. Dramatic music\",\"plays while showing various clips of surfers in the water, riding waves.\",comes onto the shore.,plays as the man then starts drumming on a drum set next to smoking.,plays is shown of the buzzing forming it - - the audience today practice.,is seen recording again.,gold0-orig,pos,unl,unl,unl,unl,\"A man in a black wet suit and carrying a surfboard is talking to the camera man, about to get in the water.\",Dramatic music\nanetv_QHF28_yGOV8,15502,\"Dramatic music plays while showing various clips of surfers in the water, riding waves. The video\",ends as the man in the black wet suit comes on shore after riding a wave and smiling.,ends with the camera panning back to the woman who is showing off her jacket.,leads into people throwing suits and jumping off board another as they continue on.,cuts to a cheerleader team in a a news segment that is being interviewed for the upcoming soccer event.,,gold0-orig,pos,unl,unl,unl,n/a,\"Dramatic music plays while showing various clips of surfers in the water, riding waves.\",The video\nanetv_hmb86jpgWfE,11499,\"The woman continues talking while measures off coffee display the time in time in the screen. Then,\",\"appears a picture of a cup of coffee writing red eye, after the woman continues talking.\",the dog performs another octave the town was finished.,the girl put liquid in the machine and the person is seen mixing the liquid with an iron.,\"creates a cooks and stack the video, adds juice and mixes it soaking it, then sprays a liquid on it.\",,gold1-orig,pos,unl,unl,unl,n/a,The woman continues talking while measures off coffee display the time in time in the screen.,\"Then,\"\nanetv_hmb86jpgWfE,11498,\"A woman talks holding an empty cup, and coffee fills in cups. The woman\",continues talking while measures off coffee display the time in time in the screen.,heats the yellow paper in coffee to completion.,puts dealer cans and silverware paned glass while the man gives some liquid.,gets the drink out of the cup and puts it on the floor.,wipes her face and jaw.,gold1-orig,pos,unl,unl,unl,unl,\"A woman talks holding an empty cup, and coffee fills in cups.\",The woman\nanetv_hmb86jpgWfE,3927,A lady talks while holding a red coffee mug. A coffee machine,\"fills two, glasses with coffee simultaneously.\",is displayed on the floor.,holds the foot of the table.,sits in front of her.,,gold0-orig,pos,unl,unl,pos,n/a,A lady talks while holding a red coffee mug.,A coffee machine\nanetv_hmb86jpgWfE,3926,The credits of the clip are shown. A lady,talks while holding a red coffee mug.,laughing and puts on.,paints a contact lens with a solution.,puts contacts into her eye.,stands in front of a mirror and rubs makeup over her eyes.,gold1-reannot,pos,unl,unl,pos,pos,The credits of the clip are shown.,A lady\nlsmdc3063_SOUL_SURFER-31374,6631,Someone beams proudly and cups her cheek in his hand. He,plants a kiss on her forehead.,gently rubs on someone's shoulder.,talks alone at a fair.,accepts his vest gun for someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone beams proudly and cups her cheek in his hand.,He\nlsmdc3063_SOUL_SURFER-31374,6632,\"Two guys carry someone on their shoulders, someone joins her mother. Someone\",smiles and shakes her head.,put a pink spot in the sport bra.,rises and walks back toward someone's room.,chugs his whiskey at tall plastic cup.,stares at the stoically.,gold1-orig,pos,unl,unl,unl,unl,\"Two guys carry someone on their shoulders, someone joins her mother.\",Someone\nlsmdc3063_SOUL_SURFER-31374,6630,She gives a satisfied grin. Someone,beams proudly and cups her cheek in his hand.,\"stares at him, then removes his pajama bottoms.\",yawns at someone's farmhouse.,stares at the company television.,gives her a disheartened gaze.,gold0-reannot,pos,unl,unl,unl,pos,She gives a satisfied grin.,Someone\nanetv_reEjJfSUGa8,7517,\"The biker jumps in the ramp with his bike in front up. Four bikers raced and jumped over the ramps, the biker in white\",is leading in the race.,kicked it once and then back gets going.,drops the fallen man on the ground.,trunks jumps into the air.,,gold0-orig,pos,unl,unl,pos,n/a,The biker jumps in the ramp with his bike in front up.,\"Four bikers raced and jumped over the ramps, the biker in white\"\nanetv_reEjJfSUGa8,7516,The biker is cycling and jumping over the big ramps. The biker,jumps in the ramp with his bike in front up.,jumps on a concrete barrier and falls in the snow.,falls into the sand.,holding red jacket picks up his score.,gets out of the vehicle and the dog lands behind.,gold0-orig,pos,unl,unl,unl,unl,The biker is cycling and jumping over the big ramps.,The biker\nanetv_-npRRmY2wBs,12720,The bull charges at the people. They,wrestle with the bull.,walk through the woods around a large pile of wood.,start to chase him from the bull.,take off her swinging.,jump on to the fence while the dog follows after.,gold1-orig,pos,unl,unl,unl,unl,The bull charges at the people.,They\nanetv_-npRRmY2wBs,12719,Several people stand in an arena. There,is a small bull inside of it.,person plays their fight back and forth.,picks up a photo of a faint pink band.,band blows ruler.,are riding an exercise bike ina a field.,gold0-orig,pos,unl,unl,unl,unl,Several people stand in an arena.,There\nanetv_-npRRmY2wBs,17126,A bull is chasing them around. A man,drinks beer from a plastic cup.,is outside in rings and trying to open a clown kite.,grabs after darts and begins spraying the dogs with the other one.,is then holding a farmer's belt.,runs and jumps off the horse as they fight.,gold0-orig,pos,unl,unl,pos,pos,A bull is chasing them around.,A man\nanetv_-npRRmY2wBs,17125,People are standing in a pen. A bull,is chasing them around.,pushed him down a narrow slope.,is trying to make a meal.,throws a frisbee to a bull.,is running in the water.,gold0-orig,pos,unl,unl,unl,pos,People are standing in a pen.,A bull\nlsmdc3069_THE_BOUNTY_HUNTER-4783,13169,She turns her back to him and punches her pillow. He,\"eyes her, smiling.\",kicks his beard in half.,\"taps her with her foot, his brow soft.\",shoves her through her open door.,carries her into the hallway.,gold0-orig,pos,unl,pos,pos,pos,She turns her back to him and punches her pillow.,He\nlsmdc3069_THE_BOUNTY_HUNTER-4783,13170,\"He eyes her, smiling. A mural on a slim, brick building\",bears someone's name.,passes one of the aisles.,walks through a neighborhood.,shows someone in the woods.,is surrounded by former men.,gold1-orig,pos,unl,unl,pos,pos,\"He eyes her, smiling.\",\"A mural on a slim, brick building\"\nlsmdc3069_THE_BOUNTY_HUNTER-4783,13173,Someone raises a golf club to let someone pass. He,leads someone into a grungy bathroom where someone sits handcuffed to a pipe.,steps into a bathroom block and pads against a police car.,\"sprints in the street, fast and almost very shabby.\",grasps someone's sword.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone raises a golf club to let someone pass.,He\nlsmdc3069_THE_BOUNTY_HUNTER-4783,13172,Someone enters the back room with a pizza. Someone,raises a golf club to let someone pass.,gets out and sighs.,picks up a newspaper.,removes the unopened envelope from the bedside table and flips it open.,laughs as someone leaves him.,gold0-reannot,pos,unl,unl,unl,unl,Someone enters the back room with a pizza.,Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4783,13174,He leads someone into a grungy bathroom where someone sits handcuffed to a pipe. Someone,hands someone the golf club.,shields his lighted eyes as someone looks at his mother.,swings an orange camouflage belt over someone's shoulders as the guard claps his hands while his poses.,stands up and covers someone's face with the towel.,gets to his feet and punches someone toward the head.,gold0-reannot,pos,unl,unl,unl,unl,He leads someone into a grungy bathroom where someone sits handcuffed to a pipe.,Someone\nanetv_FnrvqpjHe6I,18395,The female players walked as they kicked the ball from one side to the next. The players,kicked the ball to the next person on the opposite side of the court.,paint the puck around each other trying to score on the goal.,\"fell in the floor as the other players legs, while a coach speak.\",scores a goal and continue to push it over the net while other players react to the score.,shake out of the pong while other games of the stadium shows them across the paddy field while the ball goes into the net.,gold0-orig,pos,unl,unl,unl,unl,The female players walked as they kicked the ball from one side to the next.,The players\nanetv_FnrvqpjHe6I,18393,\"The young female players are running around the court throwing ball to on each other. Some of the players are avoiding the ball, so they\",continue to run around.,\"continue to hit the ball to their teammate, trying to jump the balls or get up and continue avoided.\",don't knock them.,run along the field.,hit it back and forth.,gold1-orig,pos,unl,unl,unl,pos,The young female players are running around the court throwing ball to on each other.,\"Some of the players are avoiding the ball, so they\"\nanetv_FnrvqpjHe6I,18394,\"Some of the players are avoiding the ball, so they continue to run around. The female players\",walked as they kicked the ball from one side to the next.,begin again hitting each other with the sticks when one tries others.,show on a start.,continue taking bullets and hitting hitting pins.,run in a line to run against an opposing goal.,gold0-reannot,pos,unl,unl,unl,pos,\"Some of the players are avoiding the ball, so they continue to run around.\",The female players\nlsmdc0029_The_Graduate-64485,11060,They stop eating and turn toward him. He,goes back to his breakfast.,finds his watch ring taped on his belt.,\"pats someone's hand, which now touches the tutor to someone's.\",is inside the garage.,sits patiently in the passenger seat.,gold0-orig,pos,unl,unl,pos,pos,They stop eating and turn toward him.,He\nlsmdc0029_The_Graduate-64485,11059,He jams on the brakes and stops the car in the middle of the street. They,stop eating and turn toward him.,\", the man runs off through a busy street, looking around where he consists of people get out.\",quickly opens all the windows up and sees the gq panel of himself on the wall.,hurry through the gathering room.,speed down the street's stone streets all around the empty street.,gold0-orig,pos,unl,unl,unl,unl,He jams on the brakes and stops the car in the middle of the street.,They\nlsmdc0032_The_Princess_Bride-65895,16740,\"She leaves; his eyes stay on her. She stops, turns - - he\",manages to look away as now her eyes stay on him.,gives someone a tight smile.,\"wrenches the wheel, forcing them to the drop of a coffee.\",has nothing to her.,\"is starting to fall, and she squeezes his shoulder.\",gold1-orig,pos,unl,unl,unl,pos,She leaves; his eyes stay on her.,\"She stops, turns - - he\"\nlsmdc0032_The_Princess_Bride-65895,16738,Someone is perhaps half a dozen years older than someone. He,gazes at her as she walks away.,\"him in the face as the teller looks up at someone blurry, his eyes fill with tears, and looks slowly to bed.\",has a snatcher who is spotless and even with pain.,washes his upper body with his hands.,,gold0-orig,pos,unl,unl,unl,n/a,Someone is perhaps half a dozen years older than someone.,He\nlsmdc0032_The_Princess_Bride-65895,16741,\"She stops, turns - - he manages to look away as now her eyes stay on him. Someone\",enters with an armload of firewood.,\"tends to someone, then pinches her lips.\",\"turns her head, and someone lays her head back and strokes her head.\",walks slowly to a comfy cat.,waits in front of a crowd.,gold0-orig,pos,unl,unl,unl,pos,\"She stops, turns - - he manages to look away as now her eyes stay on him.\",Someone\nlsmdc0032_The_Princess_Bride-65895,16739,He gazes at her as she walks away. Someone,drops two large buckets near him.,whips off someone's hair.,trudges back from the dining room.,peers over the counter at another time.,beams at the bride.,gold1-reannot,pos,unl,unl,unl,pos,He gazes at her as she walks away.,Someone\nlsmdc0032_The_Princess_Bride-65895,16735,\"The two of them as the Grandfather sits in a chair by the bed. The story he is reading about, as the monochromatic look of the bedroom\",is replaced by the dazzling color of the english countryside.,is shown and his fear is to brief the unknown sketch of the grail.,\"is drawn to book, shifting back and forth to one side of the window with his eyes focused melancholy on the painting.\",\"has faded, dusty fingers.\",,gold0-reannot,pos,unl,unl,unl,n/a,The two of them as the Grandfather sits in a chair by the bed.,\"The story he is reading about, as the monochromatic look of the bedroom\"\nlsmdc0032_The_Princess_Bride-65895,16736,\"Someone is standing, holding the reins of her horse, while in the background, someone, in the stable doorway, looks at her. Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she\",is still probably the most beautiful woman in the world.,bear keeps a snowflake in her hand that tries to make her life.,is shorter and somewhat sexy.,is very well - - and puts her face up on the grass beside a tree.,makes another call and goes very quietly.,gold0-reannot,pos,unl,unl,unl,pos,\"Someone is standing, holding the reins of her horse, while in the background, someone, in the stable doorway, looks at her.\",\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she\"\nlsmdc0032_The_Princess_Bride-65895,16737,\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she is still probably the most beautiful woman in the world. Someone\",is perhaps half a dozen years older than someone.,\"gasps from someone - - and continues to do some stunts, but sometimes it too does n't change.\",\"pushing her away on so tight, he leans forward and closes the bathroom door behind her eye.\",\"pulls up on the steps, heads us to the bedroom.\",,gold1-reannot,pos,unl,unl,unl,n/a,\"Someone is in her late teens; does n't care much about clothes and she hates brushing her long hair, so she is n't as attractive as she might be, but she is still probably the most beautiful woman in the world.\",Someone\nlsmdc3079_THINK_LIKE_A_MAN-36577,2767,Someone counts down on his fingers. He,\"cocks his head at someone, then turns back to the pretty woman.\",\"is lying on a roof, a fire all around them.\",lays a steak on top of a server.,folds chips with scissors as others pass.,,gold0-orig,pos,unl,unl,unl,n/a,Someone counts down on his fingers.,He\nanetv_ShiBZnuxlmc,3635,\"The girl rubs her hands together a few times, the audience claps, she smiles and raises her two arms in the air, smiles, turns to the horse and runs and jumps until she lands on the balance beam. The girl immediately begins her routine and it\",\"includes a lot of flips, walking, twirls, hand movements, spins and etcetera.\",begins to move over to the end of the mat where the trainer shows the rest high - cartwheels and location backflips.,'s ready to do very long jumps and again the girl ends perfectly and dancing behind poses with her arms to assist her.,is too difficult for her hardwood goals and jumping up and lands on a stool as the group gathers to clap.,begins spinning and doing position on the grass spinning it back and forth as she continues and performs jumps.,gold0-orig,pos,unl,unl,unl,unl,\"The girl rubs her hands together a few times, the audience claps, she smiles and raises her two arms in the air, smiles, turns to the horse and runs and jumps until she lands on the balance beam.\",The girl immediately begins her routine and it\nanetv_VUlsdTzaKV4,9158,\"The snowboarder is doing tricks on the snow. Then, the snowboarder\",\"explains the technique how to jump and turn with the board, and shows the turns on the snow.\",begins to help the festive skateboard down a mountain environment.,sands also in the mountain before returning.,stands in the road going over three waves.,,gold0-orig,pos,unl,unl,unl,n/a,The snowboarder is doing tricks on the snow.,\"Then, the snowboarder\"\nanetv_VUlsdTzaKV4,9157,\"An advertisement presents a snowboarder in a sky station, who holds a snowboard. The snowboarder\",is doing tricks on the snow.,slows down for a while.,is doing a balance on a snowy mountain.,is going down the rocky slope and speaks.,starts to skiers long snowboarding towards the school window.,gold1-orig,pos,unl,unl,unl,unl,\"An advertisement presents a snowboarder in a sky station, who holds a snowboard.\",The snowboarder\nanetv_VUlsdTzaKV4,25,The credits of the clip are shown. A guy,talks while standing on a snowy slope.,is running around on a yellow wire.,flips off a court with his arms up.,does a gymnastic exercise in a gym.,is spraying a dog with a hose hose.,gold1-orig,pos,unl,unl,pos,pos,The credits of the clip are shown.,A guy\nanetv_-ntEh6HpeX0,14935,A woman wearing gloves is in front of a sink. She,sprays it down with a cleaning solution.,starts soaping them up with a soap brush.,drops a broom on the ground.,sprays water all over the dog's fur.,,gold0-orig,pos,unl,pos,pos,n/a,A woman wearing gloves is in front of a sink.,She\nanetv_-ntEh6HpeX0,14936,She sprays it down with a cleaning solution. She then,scrubs the sink until it is clean.,brushes it with a spray bottle.,jumps into a boat and other teammates in a boat.,uses a final wipe on the painting.,continues washing the window and using it.,gold1-orig,pos,unl,unl,pos,pos,She sprays it down with a cleaning solution.,She then\nanetv_ZvVnXvKlKbQ,15060,A crowd cheers sitting behind the bowling alley. A man,kisses a trophy in his hands.,pops up in the basement.,shoots a basketball while other people watch.,falls into the lift on a tennis court.,exits the field with his hand in a field holster.,gold0-orig,pos,unl,unl,unl,unl,A crowd cheers sitting behind the bowling alley.,A man\nanetv_ZvVnXvKlKbQ,15059,Bowling pins are getting hit with bowling ball. A crowd cheers,sitting behind the bowling alley.,beats the balls back from the climbers.,furious as fans fight and cheer for celebration of the jury.,wrestling on the side.,cheers while yelling in pain.,gold1-reannot,pos,unl,unl,unl,unl,Bowling pins are getting hit with bowling ball.,A crowd cheers\nanetv_uHLEUps_ahs,7325,He is talking about the saxophone in his hands and showing the proper hand positions. He,demonstrates how to play the instrument.,is on this drum surface and is drawn to the words machine while doing the elliptical.,\"ends by setting the jump off of a trampoline and grabbing the far right point and diving, trying over the last time.\",\"leans forward, dances, holding the bongos as he talks.\",starts shoving his standard pieces to the floor.,gold0-orig,pos,unl,unl,unl,pos,He is talking about the saxophone in his hands and showing the proper hand positions.,He\nanetv_uHLEUps_ahs,7324,A man is standing in front of a white screen. He,is talking about the saxophone in his hands and showing the proper hand positions.,is using a piece of exercise equipment to clean a metal.,is playing a saxophone.,nods and walks towards the camera.,is talking to the camera for a video about fishing.,gold0-orig,pos,unl,pos,pos,pos,A man is standing in front of a white screen.,He\nanetv_yINX46xPRf0,6947,The people are wearing oxygen thanks while in the pool. The people,are training on how to dive and swim under water with their oxygen on.,rinse wearing each other under the water while a woman paddles.,are in a tank.,walked to the car that was going through other side seats.,are bent over the cars.,gold0-orig,pos,unl,unl,unl,unl,The people are wearing oxygen thanks while in the pool.,The people\nanetv_yINX46xPRf0,16778,They are next shown swimming around the water and gesturing to the camera. More kids,are seen flipping around under the water.,are seen riding under the water.,are watching on the side when they are done.,are seen swimming in the pool and showing off its moves.,,gold0-orig,pos,unl,pos,pos,n/a,They are next shown swimming around the water and gesturing to the camera.,More kids\nanetv_yINX46xPRf0,16777,Several pictures are shown of people sitting together as well as video of them sitting in a stand. They,are next shown swimming around the water and gesturing to the camera.,people are seen laid out and laying down a set of mats and moving their hands in the machine.,ride back to the camera angrily.,hold up and walk away.,,gold1-orig,pos,unl,unl,unl,n/a,Several pictures are shown of people sitting together as well as video of them sitting in a stand.,They\nlsmdc0051_Men_in_black-71019,850,\"Someone, the jewelry store owner, steps out of a cab in the meat - packing district, still carrying the ornate box and his beloved cat. A moment later, someone van\",pulls to a stop across the street.,comes to a stop and heads down a sidewalk.,\"approaches the crowded carriage; with, she carries the vase with his briefcase.\",swerves through the porch window.,drives by in groups of people driving.,gold1-orig,pos,unl,unl,unl,pos,\"Someone, the jewelry store owner, steps out of a cab in the meat - packing district, still carrying the ornate box and his beloved cat.\",\"A moment later, someone van\"\nlsmdc0051_Men_in_black-71019,856,\"They hold on, long and hard, and both seemed choked with emotion. Finally, they\",break apart and take their seats.,break apart and sit around shaking their hips.,\"stop playing, then faces boys after back at the motocross riders.\",twirl steady at their feet and begins several dogs on horses tricks.,,gold0-orig,pos,unl,unl,unl,n/a,\"They hold on, long and hard, and both seemed choked with emotion.\",\"Finally, they\"\nlsmdc0051_Men_in_black-71019,853,\"At a table in the middle, he sees a man eating alone - - an enormous, dignified, yet profoundly strange - looking man in his mid fifties. Someone\",\"walks carefully over to the table, but does not sit down.\",\"looks like a last man in the beginning, remove weird poker from even bats, to instructions viewers about what they do.\",\"grins at her, nervously.\",is on someone who has a telephone in front of the watch on the table.,'s eyes settle on someone.,gold0-orig,pos,unl,unl,unl,unl,\"At a table in the middle, he sees a man eating alone - - an enormous, dignified, yet profoundly strange - looking man in his mid fifties.\",Someone\nlsmdc0051_Men_in_black-71019,855,\"The embrace has an odd, formal quality to it, like mafiosi coming to a sitdown. They hold on, long and hard, and both\",seemed choked with emotion.,are simple losing their names with one of them.,make love trying to secure.,are small earrings and thowing bobble and humanity including prizes in the front.,smile as they cap the bar.,gold1-orig,pos,unl,unl,unl,unl,\"The embrace has an odd, formal quality to it, like mafiosi coming to a sitdown.\",\"They hold on, long and hard, and both\"\nlsmdc0051_Men_in_black-71019,854,\"Someone walks carefully over to the table, but does not sit down. He\",\"steps forward, to face someone, who sets the ornate box on the table.\",sits up awkwardly with his hand horizontally against his neck.,pushes herself down onto her lap and stops smiling.,goes back out the window.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone walks carefully over to the table, but does not sit down.\",He\nlsmdc0051_Men_in_black-71019,852,\"He heads into someone's, a Russian diner. Someone\",\"comes into the tiny restaurant, squinting in the relative darkness.\",\"hurriedly directs riding the procession, leaving the windows.\",starts b. the stone hall.,dives into the stolen paradise in the other room.,takes a helicopter with a shield behind a barrel.,gold0-orig,pos,unl,unl,unl,unl,\"He heads into someone's, a Russian diner.\",Someone\nanetv_-XCESzrIWXA,9755,Two of the men hug on the court. A person,kicks a ball into the goal.,hits the ball with the mallet.,puts the grail cards inside a bag.,puts a hand on the fire cone.,stands next to a table.,gold0-orig,pos,unl,unl,unl,pos,Two of the men hug on the court.,A person\nlsmdc0005_Chinatown-48002,8280,\"Someone looks to his right where the bay is a long, clear crescent. Someone\",\"hesitates, then moves in that direction but climbs along the promontory in order to be above someone.\",the momentum; it clatters down.,\"kneel in the hospital, staring at people.\",\"glances across at him as his father gets in the truck, looking embarrassed, and almost laugh when he finally walks along.\",emerges from the crowd.,gold1-orig,pos,unl,unl,unl,unl,\"Someone looks to his right where the bay is a long, clear crescent.\",Someone\nlsmdc0005_Chinatown-48002,8281,Someone picks up a starfish. Someone,\"stands and stares at the water, apparently fascinated.\",\"watches the horizon with an assault rifle, and holds a rifle to his head with an wounded rifle.\",\"is laden with someone, and several other guys, and boom in.\",puts his wrist at the shoulders.,exchanges it with a loaf of soup.,gold0-orig,pos,unl,unl,unl,unl,Someone picks up a starfish.,Someone\nanetv_bOp6pObPeZ4,10351,A woman and a man are dancing on a stage. There,is a band playing behind them.,\"are walking behind them, a hanging weighted bar.\",are other cheerleaders in talking to the crowd in front of an audience watching them.,are playing beer pong.,are watching them perform as the crowd observes.,gold0-orig,pos,unl,unl,unl,pos,A woman and a man are dancing on a stage.,There\nanetv_bOp6pObPeZ4,10352,There is a band playing behind them. There,is an audience sitting in chairs clapping for them.,\", blue warriors are gathered in the green for the song in their huge tent.\",welder are shown exercising in a field.,girl with a yellow shirt gives a harmonica to the musician and begins to be and some music is about to start up.,girls play drums in front of a large crowd between two women and a flock of players.,gold0-orig,pos,unl,unl,unl,unl,There is a band playing behind them.,There\nanetv_bY0vSkxH0PE,14106,A child watches at a window while a man outdoors is shoveling snow. He,\"moves back and forth, picking up snow and moving it away from the door.\",is talking on the edge of the house and he is snowboarding at snow with only the snow covered fence.,is then shown walking outside with snow while talking to a cameraman shovel.,backs over and starts to frame by laying the bike down on a table.,,gold0-orig,pos,unl,unl,unl,n/a,A child watches at a window while a man outdoors is shoveling snow.,He\nanetv_hHMqyl_Dugs,9825,A man is creating a hole in the ice. He,pulls a line from the waters beneath the hole.,is walking in a boat to the side.,puts a spoon into a pot into the water.,appears behind him as he is peeling a fish.,,gold0-orig,pos,unl,unl,unl,n/a,A man is creating a hole in the ice.,He\nanetv_hHMqyl_Dugs,13812,Man is holding the fish by the mouth. a small piece of wood is on hole pulling the thread and a man,keeps holding it with his hands.,begins to tape the stump.,is kneeling under the fire.,holds it and begins welding it.,comes up and faces a fish.,gold1-orig,pos,unl,unl,unl,pos,Man is holding the fish by the mouth.,a small piece of wood is on hole pulling the thread and a man\nanetv_hHMqyl_Dugs,13811,Man is doing snow fishing in a hole pulling a thread and holding a fish. man,is holding the fish by the mouth.,is in the water making a covered raft in a open.,is underwater with his feet spinning taking out the fish and swimming.,is doing wakeboarding while holding his dry ring.,,gold0-orig,pos,unl,unl,unl,n/a,Man is doing snow fishing in a hole pulling a thread and holding a fish.,man\nlsmdc0028_The_Crying_Game-63907,15411,She ties the other and is drawing it upward when he wakes. She,jerks the silk stocking so it is secure.,bends down to watch this color coming from the next color.,eats some crumpled paper up so a stamp is touched someone's name.,is wearing a leafy robe.,\"opens the crate door, and dashes over.\",gold0-orig,pos,unl,unl,unl,unl,She ties the other and is drawing it upward when he wakes.,She\nlsmdc0028_The_Crying_Game-63907,15413,He tries to pull on the bindings. She,\"stands up, still pointing the gun at someone.\",sits down and stares into her eyes.,grabs him by pushing him away.,unwraps a prescription bottle and holds it under the cotton sheet.,,gold0-orig,pos,unl,unl,unl,n/a,He tries to pull on the bindings.,She\nlsmdc0028_The_Crying_Game-63907,15412,She takes a gun from under the bed and slips it in her handbag. He,tries to pull on the bindings.,tosses the spilled drink into his bag.,glances back and begins rubbing his hands on someone's muscle figure.,pulls the pin from her purse.,stops to sight some tears as someone starts to pull the door open and wheels in.,gold1-reannot,pos,unl,unl,unl,unl,She takes a gun from under the bed and slips it in her handbag.,He\nlsmdc0006_Clerks-48729,9380,A customer comes to the counter and waits. He,looks at the litter box.,\"turns around rummages, picks it up, and waits wildly.\",\"opens, baking soda and milk and placed a finger in the oven.\",puts the shoe down in front of the toilet bag cabinet.,unfolds a narrow pipe and spoons out more liquids.,gold1-orig,pos,unl,unl,unl,unl,A customer comes to the counter and waits.,He\nlsmdc0006_Clerks-48729,9381,He looks at the litter box. A black cat,suddenly jumps into it and starts pawing around.,walks down the stairs leading to the new living room.,fairy mounts her fridge with a box of $stubby baby bolts.,flies up in front of him.,lying on the ground next to him.,gold0-orig,pos,unl,unl,pos,pos,He looks at the litter box.,A black cat\nlsmdc0006_Clerks-48729,9382,Someone looks quizzically at someone. Someone,looks the girls up and down.,releases someone and starts to walk away.,stares in the room at her eyes.,frowns and heads toward the shot.,moves forward to sit side by side at the switchboard.,gold1-orig,pos,unl,unl,unl,unl,Someone looks quizzically at someone.,Someone\nlsmdc0017_Pianist-56411,18305,\"Someone produces a quarter bottle of vodka, thumps the back of the bottle so that the cork flies out. He\",finds glasses and pours.,is smaller than her base.,pushes the sticks as far as it can.,\"takes another drink, then makes his way past the bar on casually.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone produces a quarter bottle of vodka, thumps the back of the bottle so that the cork flies out.\",He\nlsmdc0017_Pianist-56411,18306,He finds glasses and pours. He,gives the others their vodka.,fills a grill with soda.,smashes a piece of paper into the glass.,shows a note card to one of them.,,gold0-orig,pos,unl,unl,pos,n/a,He finds glasses and pours.,He\nanetv_aIwFZCRFHx8,17531,Then the cars get powered on and they are able to get driven. After the people are done driving they all,get out of the cars.,take their seats on tubes.,begin driving down more cars and bumping into one another.,watch the game out of hand.,get in hot cars and begin driving.,gold0-orig,pos,unl,unl,unl,pos,Then the cars get powered on and they are able to get driven.,After the people are done driving they all\nanetv_aIwFZCRFHx8,17530,First the people are all shown sitting in their cars in one long line. Then the cars get powered on and they,are able to get driven.,fold on the rails of a track.,leave the ring all together.,continue to move away around their own cars.,are marching with foam on.,gold1-reannot,pos,unl,unl,unl,unl,First the people are all shown sitting in their cars in one long line.,Then the cars get powered on and they\nanetv_3OcAjx8e4LU,11596,A woman gives a thumbs up as she goes rafting in a river. They,\"go through small waterfalls, trying to stay upright.\",take turns throwing the stick to the water.,start skiing down speed together intertubes a river.,see a woman standing over the snow with a splash.,,gold0-orig,pos,unl,unl,unl,n/a,A woman gives a thumbs up as she goes rafting in a river.,They\nanetv_3OcAjx8e4LU,2337,They begin going down the river with red helmets on. They,are all standing under a waterfall.,go down hills and wrestle together.,are joined by a man in white ski.,perform different tricks towards the track.,,gold1-orig,unl,unl,unl,unl,n/a,They begin going down the river with red helmets on.,They\nanetv_3OcAjx8e4LU,11597,\"They go through small waterfalls, trying to stay upright. They\",continue along the raging waters.,clap towards their feet.,scramble to their feet.,hold their paddles until they float off.,proceed as they continue to move.,gold0-orig,pos,unl,unl,pos,pos,\"They go through small waterfalls, trying to stay upright.\",They\nanetv_3OcAjx8e4LU,2336,People are standing on a beach wearing red helmets. They,begin going down the river with red helmets on.,ride the boat up and down the repeat.,begin to solve it to make a pyramid.,are playing a game of beaches in front of people.,lob the ball back and forth and involved as the game.,gold0-reannot,pos,unl,unl,unl,unl,People are standing on a beach wearing red helmets.,They\nanetv_U9b8U-EymNw,16269,A boat is floating on the water. A tube has water running through it and there,are floats on the water.,is tearing down the boat.,is floating in the water.,is a person riding the buckets.,is water on them.,gold0-orig,pos,unl,unl,unl,pos,A boat is floating on the water.,A tube has water running through it and there\nanetv_U9b8U-EymNw,16270,A tube has water running through it and there are floats on the water. The camera,is scanning the boat.,zooms in through the water into the larger water.,cuts back to the person as people climb out of the rafts down waterfall.,is covered in black lines.,is spinning along a large current with energy pouring around.,gold1-orig,pos,unl,unl,unl,unl,A tube has water running through it and there are floats on the water.,The camera\nanetv_U9b8U-EymNw,16268,A company log is on the screen. A boat,is floating on the water.,crashes through the lake.,gets dried in the water.,shows water and uses to talk to another person.,is followed by parts of an curved wall close again.,gold0-orig,pos,unl,unl,unl,unl,A company log is on the screen.,A boat\nanetv_U9b8U-EymNw,16276,A woman is taking a selfie while on the boat. The woman,is doing tricks with the board on the water.,is seen sitting behind a large crane and taking off her paddle.,is blindfolded and swinging in the water.,looks into a microphone.,,gold1-orig,pos,unl,unl,unl,n/a,A woman is taking a selfie while on the boat.,The woman\nanetv_U9b8U-EymNw,16272,\"Two women are sitting on the boat, one is poking the other. A plastic seat is inflated then a board\",is put into the water.,fly side to side.,starts sailing in and out on the ocean.,is placed on the spikes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Two women are sitting on the boat, one is poking the other.\",A plastic seat is inflated then a board\nanetv_U9b8U-EymNw,16277,The woman is doing tricks with the board on the water. She,let go of the line and floated freely.,stands on the hill with a start.,says as people are led away.,drinks for a few times and tries to run.,,gold0-orig,pos,unl,unl,pos,n/a,The woman is doing tricks with the board on the water.,She\nanetv_U9b8U-EymNw,16271,\"The camera is scanning the boat. Two women are sitting on the boat, one\",is poking the other.,has a trophy on it.,in a raft on a raft nearby.,is playing the water and talking.,,gold0-orig,pos,unl,unl,pos,n/a,The camera is scanning the boat.,\"Two women are sitting on the boat, one\"\nanetv_U9b8U-EymNw,16275,A woman is driving the boat while the other woman is boarding behind her. A woman,is taking a selfie while on the boat.,is interviewed and gets out of a helicopter.,runs towards the camera and shakes her hand.,is standing at the edge of the slope watching.,climbs out of the boat and tries to run bridge.,gold0-orig,pos,unl,unl,unl,pos,A woman is driving the boat while the other woman is boarding behind her.,A woman\nanetv_U9b8U-EymNw,16273,A plastic seat is inflated then a board is put into the water. A woman,is on the board and holding on to a line attached to the boat.,places a blue area on top of water.,is putting on how to boat the ocean wheel.,speaks to the camera and fights out a smaller chair with her.,\"is standing on the deck of the boat, and again she takes a bow.\",gold0-orig,pos,unl,unl,unl,pos,A plastic seat is inflated then a board is put into the water.,A woman\nanetv_U9b8U-EymNw,16274,A woman is on the board and holding on to a line attached to the boat. A woman,is driving the boat while the other woman is boarding behind her.,is seen throwing clothes on the beach as they continue to ride on the surfboard while the camera captures them from the side.,is drinking a coffee cup.,removes a tire from a hook and drops it in the water.,,gold0-reannot,pos,unl,unl,pos,n/a,A woman is on the board and holding on to a line attached to the boat.,A woman\nlsmdc3079_THINK_LIKE_A_MAN-36704,4171,\"With a cool look, she opens the door. She\",\"flashes a smile, then closes it.\",looks at him from the lamp.,enters the restroom and leaves.,beams and glances at the sink.,opens the door of the cupboard.,gold0-orig,pos,pos,pos,pos,pos,\"With a cool look, she opens the door.\",She\nlsmdc3079_THINK_LIKE_A_MAN-36704,4179,He crawls onto the bed. He,\"kisses her, then lowers himself on top of her.\",runs his fingers over the grail diary.,returns to the bed.,face him.,grabs the ax in his belt.,gold0-orig,pos,unl,unl,unl,unl,He crawls onto the bed.,He\nlsmdc3079_THINK_LIKE_A_MAN-36704,4172,\"Inside, someone places a red x beside another on a monthly calendar. Our view\",\"drifts toward downtown los angeles where pale, pink light lines the horizon.\",drifts to the bathroom with a turtle face on the tv.,drifts to a drawing with the ruffles in the wind - blowing dust.,\"drifts around the area, a short curtain dividing the street behind a view through a side garden.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Inside, someone places a red x beside another on a monthly calendar.\",Our view\nlsmdc3079_THINK_LIKE_A_MAN-36704,4176,\"He hands her the glass. Averting her gaze, she\",\"takes a sip, then returns the drink.\",bows over and kisses someone's cheek as she gives him a friendly look.,rolls her gaze.,slinks uncomfortably down her side as the other sits in the chair next to her.,meanders into a serious mood.,gold0-orig,pos,unl,unl,unl,pos,He hands her the glass.,\"Averting her gaze, she\"\nlsmdc3079_THINK_LIKE_A_MAN-36704,4173,\"Our view drifts toward downtown Los Angeles where pale, pink light lines the horizon. In her apartment, someone\",stretches her arm across the bed as she awakes.,lies down on a bed.,barrels through bottles on the floor.,lingers quizzically on wiping her tears.,sits at a laptop.,gold0-orig,pos,pos,pos,pos,pos,\"Our view drifts toward downtown Los Angeles where pale, pink light lines the horizon.\",\"In her apartment, someone\"\nlsmdc3079_THINK_LIKE_A_MAN-36704,4175,She forks up a bite. He,hands her the glass.,\"eyes him, shaking her head.\",finds someone leaning over her refrigerator.,keeps walking with short a crack.,,gold0-orig,pos,unl,unl,unl,n/a,She forks up a bite.,He\nlsmdc3079_THINK_LIKE_A_MAN-36704,4174,\"Shirtless, someone enters the room. He\",offers a glass of orange juice.,strolls across a casket.,reaches into his grimacing leather pants.,\"opens the lid of a tank, and removes a drawer in a drawer.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Shirtless, someone enters the room.\",He\nlsmdc3079_THINK_LIKE_A_MAN-36704,4180,\"He kisses her, then lowers himself on top of her. Now, at his loft apartment, someone\",pads into the kitchen wearing only pajama pants.,takes a drink vigorously.,finds more in the locker room.,finds a sheet of junk food chips in the jukebox.,watches someone's bedroom as he laces up his shirt.,gold0-reannot,pos,unl,unl,unl,pos,\"He kisses her, then lowers himself on top of her.\",\"Now, at his loft apartment, someone\"\nlsmdc3079_THINK_LIKE_A_MAN-36704,4178,He spots a framed photo with someone in it. He,crawls onto the bed.,valley engraved ink has blood over the breaking shield.,gets out of the car.,finds the box of rock and pulls up in his notebook.,\"idly dissolves from a tree, holding it far below.\",gold0-reannot,pos,unl,unl,unl,pos,He spots a framed photo with someone in it.,He\nanetv_mQCFphhDFw8,12176,\"The man in yellow shirt took out his tools from his pocket, he took off the bike wheel from the bike, pull out a yellow tool, insert it between the rubber and metal, removed the rubber inside the tire, tried to find the hole, took a square cloth, wipe the tire, then put the sticker, he pumped the rubber then put it back in the tire. The person\",screw the wheel back to the bike.,stood in the circle and given the railing he was able to cut it and barely removed the tire and stood up.,put the tire down and hangs the rubber stick to his chest.,uses the rubber stick to loosen the bolt by counting at the harness sticking the corner of the wheel and then originally pushed the mechanism,,gold0-orig,pos,unl,unl,unl,n/a,\"The man in yellow shirt took out his tools from his pocket, he took off the bike wheel from the bike, pull out a yellow tool, insert it between the rubber and metal, removed the rubber inside the tire, tried to find the hole, took a square cloth, wipe the tire, then put the sticker, he pumped the rubber then put it back in the tire.\",The person\nanetv_FAPMunnTNsE,2769,Two people are seen riding in a canoe pushing a paddle along the water and looking into the camera. More clips,are shown of the scenery as well as the people riding around and meeting up with others.,are shown of people riding continuously tricks with one another as well as others riding on the lake.,are shown of people riding along the water while still riding.,are shown of people helping people out on water skis and ending to speaking to one another.,are shown of people swimming around one another while the camera lays back to the fourth base.,gold0-reannot,pos,unl,unl,unl,unl,Two people are seen riding in a canoe pushing a paddle along the water and looking into the camera.,More clips\nanetv_vuXsKQKbAfE,10126,The man in red puts the breather in his mouth then floats backward on his back. We,see the man in red and blue putting a solution on their goggles before trying them on.,zoom past the swing in the back seat.,pause and the woman take the long diving view into the pool.,looking at the girl in his standing board while talking to the camera.,see the closing screen.,gold0-orig,pos,unl,unl,unl,pos,The man in red puts the breather in his mouth then floats backward on his back.,We\nanetv_vuXsKQKbAfE,10127,We see the man in red and blue putting a solution on their goggles before trying them on. The man in red,puts the tube in his mouth then the breather before going under water.,turns and a metal appears on the ground.,turns on the camera and starts dancing.,picks up a shot glass and shakes it.,,gold0-orig,pos,unl,pos,pos,n/a,We see the man in red and blue putting a solution on their goggles before trying them on.,The man in red\nanetv_vuXsKQKbAfE,10125,Two men are in a pool putting on diving gear. The man in red,puts the breather in his mouth then floats backward on his back.,is throwing the disc to wave to the camera.,starts doing a trick with the camera.,jumps off the diving board onto a diving board.,is jumping and doing the next orange.,gold0-orig,pos,unl,unl,unl,unl,Two men are in a pool putting on diving gear.,The man in red\nanetv_vuXsKQKbAfE,10128,The man in red puts the tube in his mouth then the breather before going under water. We then,see a sign upside down floating in the water.,\"see the close photographs of an adult boy, also, the child on the mountain.\",see the ending and front flips that look happy.,\"see the people in inflatable boats, riding inflated boats.\",see his sons jump down as the winner gives a signal.,gold0-orig,pos,unl,unl,unl,unl,The man in red puts the tube in his mouth then the breather before going under water.,We then\nanetv_Ti1ZaH0VGfg,9914,People making a circle play pipes in an event ma. Persons,stand next a drum and other instruments.,is in have a long conversation when to practice snowboard on white streets.,are then siting in cover to talk on the flags.,see two individuals competing in an arena.,is competing in a bass drum.,gold1-reannot,pos,unl,unl,unl,pos,People making a circle play pipes in an event ma.,Persons\nanetv_Ti1ZaH0VGfg,9915,Persons stand next a drum and other instruments. A woman,takes pictures of people playing pipes.,places an invisible ball in a paper bag.,is practicing the guitar inside a house.,walks by with a large seal.,,gold1-reannot,pos,unl,unl,unl,n/a,Persons stand next a drum and other instruments.,A woman\nanetv_ZcgahXg_ELw,13321,People wave to the camera underwater. We,see the ending title screen.,two men sits near and hit people and then a group of people walk down dark street.,are at the top of a cliff path and stopped at a boy wake.,have seen a step below as she goes through the swim quite quickly.,see a raft going through a lake.,gold0-orig,pos,unl,unl,pos,pos,People wave to the camera underwater.,We\nanetv_ZcgahXg_ELw,13317,A boat floats in the ocean and we see divers underwater and sealife. A diver waves and gives a thumbs up and,another waves to the camera.,dives then the water flips shows then he becomes team.,swims out and the surfer bounces with the oar.,then straddles a boat.,we see the boat from the shore again.,gold1-orig,pos,unl,unl,unl,unl,A boat floats in the ocean and we see divers underwater and sealife.,A diver waves and gives a thumbs up and\nanetv_ZcgahXg_ELw,13316,We see an opening title screen. A boat floats in the ocean and we,see divers underwater and sealife.,see people surfing on the lake.,see the man putting a boat under the water.,see a lady ironing a shirt.,,gold1-orig,pos,unl,unl,unl,n/a,We see an opening title screen.,A boat floats in the ocean and we\nanetv_ZcgahXg_ELw,15166,There is a large boat carrying some divers into the ocean. The divers,are swimming near the sea bed along with sea life and several sea creatures.,are enjoying a fish show where they are enjoying themselves.,are in boats canoeing and start to fall behind the boat.,\"are talking to each other, pointing to see that they were at outdoor.\",,gold1-orig,pos,unl,unl,unl,n/a,There is a large boat carrying some divers into the ocean.,The divers\nanetv_ZcgahXg_ELw,15167,There are sea turtles and sea urchins swimming across the ocean. One of the divers,goes near a some sort of a man made structure that has sunk into the ocean.,glides down to the bottom of the diving board.,are featured in a rapid coastline.,is surfing in the city performing a variety of waves.,,gold0-orig,pos,unl,pos,pos,n/a,There are sea turtles and sea urchins swimming across the ocean.,One of the divers\nanetv_ZcgahXg_ELw,15171,Several scuba divers are seen swimming with a sea turtle. The scuba divers,wave as they finish their journey and swim back up to the surface of the ocean to get back into their boats.,are siting in fish underwater.,are shown flying sophisticated with water and capturing by while on the stage.,open the air using their hands to cover their extended wings.,,gold0-orig,pos,unl,unl,unl,n/a,Several scuba divers are seen swimming with a sea turtle.,The scuba divers\nanetv_ZcgahXg_ELw,13320,We see a series of diver shots and a manta ray swims on the ocean floor. People,wave to the camera underwater.,are walking the boats and get in the water.,begin walking around the stage.,are in a surfing pool.,are interviewed by a brown screen.,gold1-orig,pos,unl,unl,unl,unl,We see a series of diver shots and a manta ray swims on the ocean floor.,People\nanetv_ZcgahXg_ELw,13319,A baby shark swims along the ocean floor. We,see a series of diver shots and a manta ray swims on the ocean floor.,demonstrate how to roll the first and boat and end it.,see a man holding a kid on his shoulders.,see its doors and the lady.,see the top part of the water.,gold1-orig,pos,unl,unl,unl,pos,A baby shark swims along the ocean floor.,We\nanetv_ZcgahXg_ELw,15169,The other divers wave as the continue swimming in the ocean. A large stingray,is swimming alongside some small fish.,is shown with several teenage kids.,appears in the sky as people play one another.,enters the pool beside them.,are shown on the screen.,gold1-orig,pos,unl,unl,unl,unl,The other divers wave as the continue swimming in the ocean.,A large stingray\nanetv_ZcgahXg_ELw,13318,A diver waves and gives a thumbs up and another waves to the camera. A baby shark,swims along the ocean floor.,is seen holding a surfboard and holding up the end of the rope.,rides across waterfalls in his riding terrain.,is shown in person posing while sitting on a lake.,stands in an open sea in the camp area.,gold0-reannot,pos,unl,unl,unl,unl,A diver waves and gives a thumbs up and another waves to the camera.,A baby shark\nanetv_74AJ-1e1qGA,739,One lifts another and then throws him into the water. The man,rises up and shakes his head.,falls back and lifts his arms off into a goal.,pushes his lips forward and smiles proudly again.,sweeps around and then shovel up the sink.,jumps from the water to the ground after jumping the body.,gold1-orig,pos,unl,unl,unl,unl,One lifts another and then throws him into the water.,The man\nanetv_74AJ-1e1qGA,738,Two men are standing outside a swimming pool. One,lifts another and then throws him into the water.,small fish is attached to a string.,see a tattoo and a person talking to the camera.,shows two men in the pool.,throws the bowling ball into water.,gold0-orig,pos,unl,unl,unl,pos,Two men are standing outside a swimming pool.,One\nanetv_74AJ-1e1qGA,15264,Two young men are standing around next to a swimming pool. A man,\"reached for an item in the pool, and tosses the item at someone in the pool who is not shown in the picture.\",is seen swimming in the water off the scuba divers.,dressed in football gear stands on the side of the man.,is swimming in the pool with a swim in the background.,is standing in the middle of the pool toward the ball.,gold0-orig,pos,unl,unl,pos,pos,Two young men are standing around next to a swimming pool.,A man\nanetv_74AJ-1e1qGA,15265,\"The two men then begin poolside horseplay, one of them throwing the other one into the pool. The man who was thrown into the pool\",comes up for air.,kicks a ball over the net with several more cheer shots.,begins to applaud while leads off the point on a man getting slapped across the table.,ends his hand by walking away and back and forth.,,gold0-orig,pos,unl,unl,unl,n/a,\"The two men then begin poolside horseplay, one of them throwing the other one into the pool.\",The man who was thrown into the pool\nlsmdc0051_Men_in_black-71124,15741,\"He rants, livid, thinking hard. As he passes a newsstand, he\",grabs the news vendor by the collar.,twitches his own eyes.,flings his bottle down on the tarpaulin.,passes a winged witch.,finds his old father's boys feet in a freestanding incantus.,gold0-orig,pos,unl,unl,unl,unl,\"He rants, livid, thinking hard.\",\"As he passes a newsstand, he\"\nlsmdc0051_Men_in_black-71124,15740,Someone looks down to the vast floor below and sees the four worm guys with suitcases walking across the floor. He,looks up at the screen.,\"adjusts his feet and darts past his back, waiting to close the door.\",\"pass a pedestrian to the bar, which holds a bottle of gold on a man's head.\",walks past the detector and glances at his watch.,throws one and leans over the flat.,gold0-orig,pos,unl,unl,unl,pos,Someone looks down to the vast floor below and sees the four worm guys with suitcases walking across the floor.,He\nlsmdc0051_Men_in_black-71124,15739,\"After gesturing to the back of someone van, where someone's spaceship is neatly stowed, someone pulls out his cell phone. Someone\",is in his office.,removes the lens from under his finger.,cycles up to the next table and roars as he slowly helps his feet unsteadily between the seat.,hangs up her phone.,drops it down on the card floor.,gold0-reannot,pos,unl,unl,unl,unl,\"After gesturing to the back of someone van, where someone's spaceship is neatly stowed, someone pulls out his cell phone.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59442,15951,\"Someone, beautiful, wears ripped jeans, no make up. Someone\",seems oblivious to their taunts as someone knocks the three - ball in the side.,\"leaps for herself, but she won't look back.\",carries her bloody hand down the stairwell to the front garden.,takes someone as a good stance and grinning broadly and kisses her.,\"comes into the kitchen, sits her up by her bed.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone, beautiful, wears ripped jeans, no make up.\",Someone\nlsmdc0023_THE_BUTTERFLY_EFFECT-59442,15950,\"People play pool against two young women. Someone, beautiful,\",\"wears ripped jeans, no make up.\",has 60 white hair.,licks his lips and goes.,talks about her and watch as someone.,,gold0-reannot,pos,unl,unl,unl,n/a,People play pool against two young women.,\"Someone, beautiful,\"\nlsmdc0023_THE_BUTTERFLY_EFFECT-59442,15952,Someone seems oblivious to their taunts as someone knocks the three - ball in the side. Another barrage of popcorn,hits someone's jacket.,hits someone and knocks someone out of once.,rolls back before him and then explodes again.,is interrupted by the bartender out of the shot.,blocks someone's view.,gold0-reannot,pos,unl,unl,unl,pos,Someone seems oblivious to their taunts as someone knocks the three - ball in the side.,Another barrage of popcorn\nlsmdc3043_KATY_PERRY_PART_OF_ME-20835,9862,Furrowing her brow she places one hand over her face then brushes back her hair and blinks away tears. She,wipes her eyes with a tissue.,waves her hand all the way to the glass.,checks her hands then jaw.,holds the slack - jawed gaze and shakes her head.,,gold0-orig,pos,unl,unl,pos,n/a,Furrowing her brow she places one hand over her face then brushes back her hair and blinks away tears.,She\nanetv_UZ9D6DhrmDI,16555,A person solves a cube puzzle flipping the pieces around. The person,solves the puzzle and show a chronometer.,plays a cool cube.,cards the cube to complete their rotation.,continues using the knife to put cheese onto the board.,rubs their hands together.,gold1-reannot,pos,unl,unl,unl,unl,A person solves a cube puzzle flipping the pieces around.,The person\nlsmdc0019_Pulp_Fiction-56974,2339,\"Someone, looking down at his whimpering rapist, ejects the used shotgun shell. Someone\",lowers the sword and hangs back.,searches through shelves of clothes on hangers.,switches on his walkie - talkie.,runs the drill glaring down at someone.,pauses stopping in his tracks.,gold1-orig,unl,unl,unl,unl,pos,\"Someone, looking down at his whimpering rapist, ejects the used shotgun shell.\",Someone\nlsmdc0019_Pulp_Fiction-56974,2337,\"Someone steps aside, revealing someone standing behind him, holding someone's pump - action shotgun. Someone\",is blasted in the groin.,aims both the train at him.,gives chase and beams after him.,removes the scarf from someone's neck.,stares at someone as someone falls.,gold0-orig,pos,unl,unl,unl,unl,\"Someone steps aside, revealing someone standing behind him, holding someone's pump - action shotgun.\",Someone\nlsmdc0019_Pulp_Fiction-56974,2338,\"Down he goes, screaming in agony. Someone, looking down at his whimpering rapist,\",ejects the used shotgun shell.,gets up into the sewer and crouches on the muddy ground.,looks up at someone.,is staring at a crowd through the deserted horror woods.,,gold0-orig,pos,unl,pos,pos,n/a,\"Down he goes, screaming in agony.\",\"Someone, looking down at his whimpering rapist,\"\nanetv_1DvNkSGk-JA,17606,A man is holding onto a bar as he is standing on a water ski. He,is being pulled through the water by a motor boat.,are shown driving his hands down the river while clips are sitting on sandy boards.,continues talking about the experience and decides to do a good job.,\"moves around doing several stunts several times out of his boarding, then going to dive behind a pool.\",,gold0-orig,pos,unl,unl,pos,n/a,A man is holding onto a bar as he is standing on a water ski.,He\nanetv_1DvNkSGk-JA,17607,He is being pulled through the water by a motor boat. He,\"is water skiing over a long lake, trying to remain upright.\",is swinging on the lake.,\"is on the bicycle, showing a white and white sail on the boat.\",is very ready to go straight to the trampoline.,,gold0-orig,pos,unl,unl,unl,n/a,He is being pulled through the water by a motor boat.,He\nlsmdc3007_A_THOUSAND_WORDS-3642,17386,\"Back at someone's house, Gaudencio sprays water up and down the Bodhi tree's trunk with a hose. Back at the restaurant, someone\",fidgets as he sweats profusely.,holds it up as they gallop ahead.,notices the sticky - looking man and attempts to get under the machine when nothing goes off.,follows someone through his bedroom toward a collapsible.,lies across a lawn near the window.,gold0-orig,pos,unl,unl,unl,unl,\"Back at someone's house, Gaudencio sprays water up and down the Bodhi tree's trunk with a hose.\",\"Back at the restaurant, someone\"\nlsmdc3007_A_THOUSAND_WORDS-3642,17387,\"Back at the restaurant, someone fidgets as he sweats profusely. Someone\",\"flinches, then glances at someone.\",sits on the deck beside him.,leans forward in his seat.,gets out of his seat.,,gold0-orig,pos,pos,pos,pos,n/a,\"Back at the restaurant, someone fidgets as he sweats profusely.\",Someone\nlsmdc3007_A_THOUSAND_WORDS-3642,17388,\"Someone flinches, then glances at someone. Someone\",stares wide - eyed at someone.,is on her son's side.,watches out of the window as they peel away together.,turns on her mobile.,looks at him.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone flinches, then glances at someone.\",Someone\nanetv_RkhSR7pz9qc,5663,We see two teams of men playing soccer indoors. Two men,collide and fall to the ground.,hit the ball from the room with the goalie.,gather to play soccer in a field.,are on a field near the counter.,begin to play a game of table soccer.,gold0-orig,pos,unl,pos,pos,pos,We see two teams of men playing soccer indoors.,Two men\nanetv_RkhSR7pz9qc,5665,Two sets of people n the crowd are interviewed. We,see the crowd and a man interviewed and see some scoring shots.,are underwater in a bridge.,see a man on the field by side talking.,put a box on the boat.,,gold0-orig,pos,unl,unl,unl,n/a,Two sets of people n the crowd are interviewed.,We\nanetv_RkhSR7pz9qc,5666,We see the crowd and a man interviewed and see some scoring shots. We see three men stand and pose for a photo and a man,is interviewed before we return to the game.,puts his decoration in the bow.,presents ice blue on the ice.,hurls some kind of ducks.,drinks a white cup from his hands.,gold0-orig,pos,unl,unl,unl,unl,We see the crowd and a man interviewed and see some scoring shots.,We see three men stand and pose for a photo and a man\nanetv_RkhSR7pz9qc,5664,Three men high five and hug each other. A man,throws the ball clear across the room to the other goal.,in a windsurfing ocean begins surfing.,rings up a ladder and drops it.,has dark brown hair to his left.,is shown in a room playing basketball.,gold1-reannot,pos,unl,unl,unl,pos,Three men high five and hug each other.,A man\nanetv_ZWzPz-LX9Qg,18084,A man is seen wearing scrubs and standing in front of a sink. The man,washes his hands and turns to face the camera.,takes a sponge and mixes various ingredients into it.,begins mopping the floor thoroughly and rubbing the sink.,holds a rag in front of him from several angles.,puts water all over the glass and puts wet soap into her face.,gold0-orig,pos,unl,unl,unl,unl,A man is seen wearing scrubs and standing in front of a sink.,The man\nanetv_ZWzPz-LX9Qg,6307,He throws his hands in the air. Someone,comes out of a closet behind him.,arches back to face someone.,flings his arms behind him.,climbs the top of the stairs.,spreads his arms across his chest.,gold0-orig,pos,unl,unl,unl,unl,He throws his hands in the air.,Someone\nanetv_ZWzPz-LX9Qg,6305,A man is wearing blue scrubs and a fanny pack. He,is washing his hands in the sink.,ties the laces of his shoes.,\"sprays his face, then a person towels him outside.\",grabs a hose from a spray can and sprays the windshield.,,gold0-orig,pos,unl,unl,unl,n/a,A man is wearing blue scrubs and a fanny pack.,He\nanetv_ZWzPz-LX9Qg,6306,He is washing his hands in the sink. He,throws his hands in the air.,dishes a cup of water in a sink.,is talking about how to wash the shoes remover to shining them.,is holding a light glinting on the area while he is done brushing at the light.,puts lipstick on his lips.,gold0-reannot,pos,unl,unl,unl,unl,He is washing his hands in the sink.,He\nanetv_VZ2CPdIPa30,11952,Several shots of the scenery are shown interspersed with the woman waiting. The man,finishes with the equipment.,is directing and pulling away.,gets up a skateboard in the road and downhill.,continues riding down the sail while the camera continues to play.,,gold0-orig,pos,unl,unl,unl,n/a,Several shots of the scenery are shown interspersed with the woman waiting.,The man\nanetv_VZ2CPdIPa30,11953,The man finishes with the equipment. The woman,carefully walks out to the jumping platform while one of the men stands behind her and an audience watches.,continues pulling off the carpet attachment and places the tool over the handle.,walks to the lake and runs under it.,speaks again and starts recumbent.,,gold1-orig,pos,unl,unl,unl,n/a,The man finishes with the equipment.,The woman\nanetv_VZ2CPdIPa30,11950,A man secures a seated woman in a bungee harness while others stand by. The woman,talks to the camera in a close up view.,performs different tricks as he demonstrates.,\"talks about her workout, performing flips and doing the same thing.\",dismounts from the side of the swing.,,gold1-orig,pos,unl,unl,unl,n/a,A man secures a seated woman in a bungee harness while others stand by.,The woman\nanetv_VZ2CPdIPa30,11951,The woman talks to the camera in a close up view. Several shots of the scenery,are shown interspersed with the woman waiting.,are shown from other angles following them.,are shown as well as two men swimming upwards.,are shown close up against the woman.,are shown before a woman takes picture.,gold1-reannot,pos,unl,pos,pos,pos,The woman talks to the camera in a close up view.,Several shots of the scenery\nlsmdc1012_Unbreakable-7054,3432,\"After a moment, he pushes himself off the wall and moves to the center of the walkway and stands there with his head down and his hands in his pockets. The crowd\",\"streams past him, laughing and smiling.\",\"is hugging, swaying on his feet, dancing in the living room.\",flinches as someone watches the young woman behind the boat at the rising.,dances wildly as he plays and bends kids to sit up.,\"pauses, then turns to a side seat where the drapes to side - deep - - metal.\",gold0-orig,pos,unl,unl,unl,unl,\"After a moment, he pushes himself off the wall and moves to the center of the walkway and stands there with his head down and his hands in his pockets.\",The crowd\nlsmdc1012_Unbreakable-7054,3430,\"The street outside the stadium is empty. Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall,\",casually watching spectators as they crowd in through a gate.,stops his turn and looks in as he understands.,studies a book volunteer up at the counter.,prepping to untie his rucksack for a minute.,manning his revolver as he walk round to the far wall.,gold0-orig,pos,unl,unl,unl,unl,The street outside the stadium is empty.,\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall,\"\nlsmdc1012_Unbreakable-7054,3433,\"Some almost pushing him aside, but he does n't react. Someone\",turns slowly and looks after her.,watches at the balcony in the hallway.,\"gets hung and walks out of the door, oblivious to the activity.\",\"hunches forward, burying a face in his leg with the burning sword.\",\"pauses as the other people remain silent, typing, so calm 'clipart.\",gold0-reannot,pos,unl,unl,unl,unl,\"Some almost pushing him aside, but he does n't react.\",Someone\nlsmdc1012_Unbreakable-7054,3431,\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall, casually watching spectators as they crowd in through a gate. He\",looks away and stares at the ground.,is holding a large bottle glass wrapped up and a bottle of red soda.,reaches a staircase and pulls someone back to a post.,casts a quick glance at the tugboat.,glimpse through a pair of dark windows covering the clean out windows.,gold0-reannot,pos,unl,unl,unl,unl,\"Inside, along one of the shaded walkways, someone, in his security uniformis leaning on a wall, casually watching spectators as they crowd in through a gate.\",He\nlsmdc0001_American_Beauty-45674,12874,\"Someone stares at someone, then her mouth widens into a smile. Someone suddenly\",finds someone standing in front of her.,lets go and raises her shot.,lifts his fedora and noticing someone who's leaning on an empire line.,\"imitates her suma, but eventually fails again.\",ascends of her knee like a basket.,gold0-orig,pos,unl,unl,unl,unl,\"Someone stares at someone, then her mouth widens into a smile.\",Someone suddenly\nanetv_IB068eD8A7Y,5890,We see the man shoot three arrows and see the target. We,see the boy as he tries to shoot balloons on the target and misses them all.,see a man dive off his board in a motion.,see people riding ahead.,see seventeen slow motion.,see a lady in a curling mallet shooting arrows at two men.,gold0-orig,pos,unl,unl,unl,pos,We see the man shoot three arrows and see the target.,We\nanetv_IB068eD8A7Y,5889,The boy shoots the arrow stretches and shoots more arrows. We,see the man shoot three arrows and see the target.,see the mohawk screen.,cuts back over balls - sized boxes.,man runs with the stick and moves off his lawn and people give it small balls.,the name and arrow are shown.,gold0-orig,pos,unl,unl,unl,unl,The boy shoots the arrow stretches and shoots more arrows.,We\nanetv_IB068eD8A7Y,5888,We see a man and a small boy holding a bow and arrow in a field. The boy,shoots the arrow stretches and shoots more arrows.,teaches a tune in a row against a bow.,waves his arms and throws the discus.,spins the dart fish on the kite as they swim upright.,throws a dart and aims at the target.,gold0-orig,pos,unl,unl,unl,pos,We see a man and a small boy holding a bow and arrow in a field.,The boy\nlsmdc1038_The_Great_Gatsby-87484,12701,Someone flops onto the pile of brightly colored shirts on the bed. Someone,looks down from the balcony in the opulent bedroom.,is in the crowd.,bounce his heels and disappears into black.,lifts the news towel to the ceiling then picks up the box then moves his shoe.,allows him to cover any smoke.,gold1-reannot,pos,unl,unl,unl,unl,Someone flops onto the pile of brightly colored shirts on the bed.,Someone\nlsmdc1038_The_Great_Gatsby-87484,12702,\"Someone looks down from the balcony in the opulent bedroom. Noticing the change in someone's mood, someone\",goes down to the bed where she sits.,\"walks towards a quaint earpiece that two vases in either hand, one of which is walkways upward directions.\",gets to his feet and blinks at his shadow.,watches the stride slowly.,lowers her lips and looks down at her work.,gold0-reannot,pos,unl,pos,pos,pos,Someone looks down from the balcony in the opulent bedroom.,\"Noticing the change in someone's mood, someone\"\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17213,\"At the end of the table, a woman hangs horizontally in mid - air. Someone\",sits close to someone.,blows a big fedora of someone's head.,aims a gun at someone.,dispatches his lips with the strap of a rifle.,spots his knife and skyscraper.,gold0-orig,pos,unl,unl,unl,unl,\"At the end of the table, a woman hangs horizontally in mid - air.\",Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17211,\"Someone enters a bare store room, and climbs a flight of stairs. People\",are seated at a long table in front of a blazing fire.,run down the passageway towards the quarry.,\"come out of the bedroom, reaches for a plastic bottle and holds it open.\",are slowly sliding down the stairs in the dark.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone enters a bare store room, and climbs a flight of stairs.\",People\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93549,17210,\"His face is sombre, his dark hair lank and shoulder length. Someone\",\"enters a bare store room, and climbs a flight of stairs.\",has a shawl with some highlights which she is strikes.,follows her as he walks past.,looks at a chair for someone.,\"faces a corridor, swerving from building to floor, past a plank.\",gold0-reannot,pos,unl,unl,unl,unl,\"His face is sombre, his dark hair lank and shoulder length.\",Someone\nanetv_kGvs0Nv5zJo,19025,First the news reporter tells viewers what horrible event is going on. Then we,get a small glimpse of people sitting outside at the candle vigil.,see to the messenger.,see the dealer with the score pin.,see a lady talk again doing karate moves in a gym.,,gold0-orig,pos,pos,pos,pos,n/a,First the news reporter tells viewers what horrible event is going on.,Then we\nanetv_173d8EtsIpE,14263,\"Two men demonstrate fencing in a fencing gym, The man In a black fencing uniform pushes the man wearing a white shirt back and off balance. The men\",walk back into position to the center of the court and begin another session.,put their hands in several shots simultaneously take positions.,\"tug and stab each other, then people come together to start fencing.\",are then seen fencing passionately and then many men in all armor gear.,,gold0-orig,pos,unl,pos,pos,n/a,\"Two men demonstrate fencing in a fencing gym, The man In a black fencing uniform pushes the man wearing a white shirt back and off balance.\",The men\nanetv_173d8EtsIpE,10349,Two people are standing in a room on a green court fencing with one another. The two people move across the ring and they,stop and begin plenty of times.,put on a powder tile.,\"begin punching, spinning and kicking.\",lock their hands up and begin wrestle.,,gold0-orig,pos,unl,unl,unl,n/a,Two people are standing in a room on a green court fencing with one another.,The two people move across the ring and they\nanetv_173d8EtsIpE,14264,The men walk back into position to the center of the court and begin another session. The man wearing black once again,forces the man wearing white off balance and scores.,fixes his weight and walks on a pair of nunchucks to make some for him.,speaking and the players begins knitting on a racket or playing the game.,takes a picture wearing the mask posing before turning to go.,helps another group up from the men while the rest of the team continues playing bongos.,gold0-orig,pos,unl,unl,unl,unl,The men walk back into position to the center of the court and begin another session.,The man wearing black once again\nanetv_173d8EtsIpE,10350,\"The two people move across the ring and they stop and begin plenty of times. Finally, the game is finished and they\",begin to walk off.,both arm wrestle to each other.,finish to begin with people style.,are playing the sport.,continue playing several different games of war.,gold0-orig,pos,unl,unl,unl,unl,The two people move across the ring and they stop and begin plenty of times.,\"Finally, the game is finished and they\"\nlsmdc3007_A_THOUSAND_WORDS-3521,7776,\"Someone slides his hands up the trunk, then steps back and gazes up at the tall tree. As someone walks away, two leaves\",\"break away from the top of the tree, then drift to the ground.\",lie side - by - side with marley dangling from the rail.,are parked on the other side of the school.,\"fall from his grasp, rubbing it together in the yard.\",are moving out of the shadow of him from the tree.,gold0-orig,pos,unl,unl,unl,pos,\"Someone slides his hands up the trunk, then steps back and gazes up at the tall tree.\",\"As someone walks away, two leaves\"\nlsmdc3007_A_THOUSAND_WORDS-3521,7777,\"As someone walks away, two leaves break away from the top of the tree, then drift to the ground. Someone\",follows someone into his office.,\"'s head is dragged across someone, towards her.\",dances slowly through someone's face.,\"looks up at someone, who turns to cross back at someone and over her head.\",\"'s brought up from a small, slender bush.\",gold0-reannot,pos,unl,unl,unl,unl,\"As someone walks away, two leaves break away from the top of the tree, then drift to the ground.\",Someone\nanetv_Z4OyG8ZzUpg,18505,Another boy comes in with a wig and the boys start wrestling each other. The boys then,pretend the beat the boy with the wig up.,begin competing with their bowls.,\"resume flipping and flipping on the road, showing the drawing.\",shake arm wrestling with one another.,continue competing and trying to win.,gold1-orig,pos,unl,unl,unl,pos,Another boy comes in with a wig and the boys start wrestling each other.,The boys then\nanetv_Z4OyG8ZzUpg,18506,The boys then pretend the beat the boy with the wig up. The boys all,continue wrestling each other while grabbing the objects and running away.,slide their rafts to the wood locker and pass a man on the ground.,sit up and speak to one another while the camera lays on the side.,crosses and waves to the other two.,break out around the table.,gold0-orig,pos,unl,pos,pos,pos,The boys then pretend the beat the boy with the wig up.,The boys all\nanetv_Z4OyG8ZzUpg,18502,One stands in front of the net and passes to the other with lacrosse sticks. The boys,continue passing the ball bath and fourth to each other.,continue kicking the ball around while several others watch on the sides.,\"flip him to the side, and two of his feet are watching the men.\",play on the rope in front of one another while players continue to play.,throw numerous times to each other.,gold1-orig,pos,unl,unl,unl,pos,One stands in front of the net and passes to the other with lacrosse sticks.,The boys\nanetv_Z4OyG8ZzUpg,18503,The boys continue passing the ball bath and fourth to each other. One boy,throws the ball out into the road while the other runs after it.,pushes the other in the head.,grabs and comes to help on the edge.,splashes the boy in the swings his other boy around.,races to the practice step.,gold0-orig,pos,unl,unl,unl,pos,The boys continue passing the ball bath and fourth to each other.,One boy\nanetv_Z4OyG8ZzUpg,18504,One boy throws the ball out into the road while the other runs after it. Another boy comes in with a wig and the boys,start wrestling each other.,rollerblading along a narrow road.,drinking his beer.,begins falling and kicking it off the side.,celebrates at the end.,gold0-reannot,pos,unl,unl,unl,pos,One boy throws the ball out into the road while the other runs after it.,Another boy comes in with a wig and the boys\nlsmdc0026_The_Big_Fish-62044,15993,\"Pissed, someone throws his crappy lima bean plants in the trash. As two farmers shake their heads, we\",reverse to a show a massive hole punched through the side of a barn.,\"glimpse someone's goateed father with a grey, sunny smile on her face.\",pan a patient over to look at the name.,see two excited boys stand at the collapsible.,see animals fly across the area.,gold0-orig,pos,unl,unl,unl,unl,\"Pissed, someone throws his crappy lima bean plants in the trash.\",\"As two farmers shake their heads, we\"\nlsmdc0026_The_Big_Fish-62044,15996,We still have n't seen the full stranger. A mob of about 50,\"have gathered, many of them with shotguns.\",sees someone chatting while the camera lowers his hand.,\"yards away, from a tunnel.\",explode from the mansion.,,gold0-orig,pos,unl,unl,pos,n/a,We still have n't seen the full stranger.,A mob of about 50\nlsmdc0026_The_Big_Fish-62044,15994,\"As two farmers shake their heads, we reverse to a show a massive hole punched through the side of a barn. It's roughly the shape of man, but no human\",could be that large.,can fragments with that piglet on the other side.,can have in its top.,fair as the face sits on it behind him so it can be week seven.,silhouette only to see its small spiders.,gold0-orig,pos,unl,unl,unl,unl,\"As two farmers shake their heads, we reverse to a show a massive hole punched through the side of a barn.\",\"It's roughly the shape of man, but no human\"\nlsmdc0026_The_Big_Fish-62044,15997,Amid the crowd we see someone. Everyone,turns to see who said that.,\"sits and nods to the bride, shaking alone in the pews.\",watches the horsemen approach by lowering.,collects his hat and places it.,yapping mouth hangs open.,gold0-orig,pos,pos,pos,pos,pos,Amid the crowd we see someone.,Everyone\nlsmdc0026_The_Big_Fish-62044,15995,\"It's roughly the shape of man, but no human could be that large. We still\",have n't seen the full stranger.,have a giant energy shot.,wonders one side they pass daughter as she holds the suitcase straight to the marines.,have boys all of the face using their raincoat.,see someone and the young dancer.,gold1-reannot,pos,unl,unl,unl,unl,\"It's roughly the shape of man, but no human could be that large.\",We still\nanetv_IjdTjpaPPNg,11673,They are crossing a river of water on the horses. They,continue on their ride on the horses.,ski over mountains while people in tubes.,sit down in place by pulling off the kayaks.,\"go down the water, flipping and measuring the area.\",ride down a river on a tube in a river.,gold1-orig,pos,unl,unl,unl,unl,They are crossing a river of water on the horses.,They\nanetv_IjdTjpaPPNg,11672,People are riding horses along a dirt trail. They,are crossing a river of water on the horses.,use tubing supplies to sled on a line of rocks.,get the bmx camels and ride it up the hills.,stand on a tube near the horses.,\"wait for the woods, and take their goggles off.\",gold1-reannot,pos,unl,unl,unl,pos,People are riding horses along a dirt trail.,They\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9795,\"Someone flops miserably on the bottom step, takes off her party shoes, and rubs her feet. Someone\",is still dancing with someone.,drives out after the reptile world.,runs out of dingy houses in the middle of a quiet recreation room.,sits in a chair watching the room.,looks to him uncertainly.,gold1-orig,pos,unl,unl,unl,pos,\"Someone flops miserably on the bottom step, takes off her party shoes, and rubs her feet.\",Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9799,\"They swoop between the tall towers past one or two lighted windows. Asleep in bed, someone\",is having a nightmare.,studies an odd mush plant.,conclude with the children.,wears the model elephant.,,gold0-orig,pos,unl,unl,unl,n/a,They swoop between the tall towers past one or two lighted windows.,\"Asleep in bed, someone\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9796,Someone is still dancing with someone. Someone,rests his head on someone's chest.,has her down the sidewalk.,catches someone's attention and pushes her back down to her feet.,\"shoots him a moment, then stops.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone is still dancing with someone.,Someone\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9801,\"He sees the dark cemetery with the winged stone statue. Along the dusty paneled corridor, light\",shines from the open door.,shines through a sizable.,shines from all the deeper depths of the nighttime parts of the wall.,of light glows on someone.,appears for the commander in the murky doorway.,gold1-orig,pos,unl,unl,unl,unl,He sees the dark cemetery with the winged stone statue.,\"Along the dusty paneled corridor, light\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9800,\"Asleep in bed, someone is having a nightmare. He\",sees the dark cemetery with the winged stone statue.,is trying to face the crowd loosely.,darts down the lane before those.,faces the three boys reached for the door.,is thoroughly drunk and obviously angry.,gold0-orig,pos,unl,unl,unl,pos,\"Asleep in bed, someone is having a nightmare.\",He\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9802,\"Along the dusty paneled corridor, light shines from the open door. Inside the room, someone hovers as the young man kneels beside the armchair,\",revealing the dark mark tattooed on his arm.,sketching on the lead clipping.,\"reaches out to his own two - bothering lover, then hands them over.\",unaware of its two bare eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"Along the dusty paneled corridor, light shines from the open door.\",\"Inside the room, someone hovers as the young man kneels beside the armchair,\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9791,\"Someone gets up and stalks off. Later, someone\",tries to reason with someone.,pulls up through a bustling casino covering the room area.,sleeps on someone's lap.,\"sits by a secretary, waiting for him.\",lies sleeping in bed.,gold0-orig,pos,unl,unl,pos,pos,Someone gets up and stalks off.,\"Later, someone\"\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9792,\"Later, someone tries to reason with someone. She\",wipes away a tear.,notes her into watching tv as someone puts money upstairs.,leads him to the front door where the curricle follows.,abruptly keeps her staring fixed.,\"walks slowly along behind him, saying nothing.\",gold0-orig,pos,unl,unl,unl,pos,\"Later, someone tries to reason with someone.\",She\nlsmdc1051_Harry_Potter_and_the_goblet_of_fire-7017,9794,The boys escape up the stairs. Someone,\"flops miserably on the bottom step, takes off her party shoes, and rubs her feet.\",eyes him from the balcony.,bends over and hears a fire explosion.,\"stops at the gates, turns and starts away.\",,gold0-reannot,pos,unl,unl,unl,n/a,The boys escape up the stairs.,Someone\nanetv_LITdMW0xh7o,118,\"A man is outside in the good with an ax attempting to cut down a tree. Finally, the tree comes down and the man\",begins to hit the tree with the ax.,goes to the tree.,walks on to the stage.,\"ropes the leafs around the tree, and holds the snow down the top of the tree.\",grabs it and rakes it away.,gold0-orig,pos,unl,unl,unl,unl,A man is outside in the good with an ax attempting to cut down a tree.,\"Finally, the tree comes down and the man\"\nanetv_gLfIPN_WM48,1580,A tabletop with food ingredients appear on a wooden slat surface and fancy white wording appears in a special effect way on the left of the screen and it reads Home Cooking adventure and the website is displayed at the bottom left. A batch of brown cooked cookies on a pan appear and white wording appear on the middle of the screen and it,reads double chocolate chunk cookies.,\"'s a few different vegetables while walking, sitting on the table with slightly cold liquid and say's again.\",begins the red omelette from the mix.,is for both of them who include earring deep and deeper the quiet other room at different angles.,'s served on china bowl and the website with the remaining cake.,gold0-orig,pos,unl,unl,unl,unl,A tabletop with food ingredients appear on a wooden slat surface and fancy white wording appears in a special effect way on the left of the screen and it reads Home Cooking adventure and the website is displayed at the bottom left.,A batch of brown cooked cookies on a pan appear and white wording appear on the middle of the screen and it\nanetv_gLfIPN_WM48,17678,She continues mixing in more chocolate and puts them on a pan in the oven. She,lays them out next to a glass of milk and breaks off a piece.,is now put in the oven and taking out dough in all pieces.,mixes up the ice with a spoon and begins chocolate chips as well as alcohol.,is shown as she cooks more ingredients and then rides past microwave cookies.,,gold0-orig,pos,unl,unl,pos,n/a,She continues mixing in more chocolate and puts them on a pan in the oven.,She\nanetv_gLfIPN_WM48,1581,\"Instructions appear on how to bake it and the woman puts the pan in the oven, the pan is shown taken out and put on a cooling rack, then the cookies are shown being put on a white plate with a cup of milk. The cookie is picked up and broken in half, the screen goes to an outro screen that has the words Home Cooking adventure,\",includes 3 small videos in the middle of the screen and a youtube icon that has a flashing word subscribe next to it.,showing it to the man who is talking in front of the camera.,\"is then shown and grilled vegetables, down and everywhere at the top do shredded salt, and core the front part.\",\"rules, basics and website information about lemonade and a triple lotion salad and finally of that out card is seen.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Instructions appear on how to bake it and the woman puts the pan in the oven, the pan is shown taken out and put on a cooling rack, then the cookies are shown being put on a white plate with a cup of milk.\",\"The cookie is picked up and broken in half, the screen goes to an outro screen that has the words Home Cooking adventure,\"\nanetv_gLfIPN_WM48,17676,A close up of foo is seen followed by a woman mixing ingredients. She,boils some water and begins mixing eggs and other various ingredients.,then begins decorating the tree with her dog in it.,shows off the mixer into the stove and puts the tomatoes around the bush.,then pours out ingredients into a bowl and mixes ingredients together into a blender.,then puts ingredients into a pot and mixes coffee in the room.,gold1-reannot,pos,unl,unl,pos,pos,A close up of foo is seen followed by a woman mixing ingredients.,She\nanetv_EVfTWz5GRGw,707,\"A woman holds up the bottle, Then is shown using several different solutions that she lines up together on the counter. She\",\"uses each on her face, then rinses them off.\",teaches a woman how to place a tattoo using a tape too.,has then various tutorial on how to make an drink.,shows us the lemonade and drinks it.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman holds up the bottle, Then is shown using several different solutions that she lines up together on the counter.\",She\nanetv_EVfTWz5GRGw,706,A bottle of deep cleansing gel is shown. A woman,\"holds up the bottle, then is shown using several different solutions that she lines up together on the counter.\",uses water to put water to water over a scuba liner.,is in a cavity talking about the components of the game.,talks and talks about hair a real style environments.,,gold0-orig,pos,unl,unl,unl,n/a,A bottle of deep cleansing gel is shown.,A woman\nanetv_0lzqfDIWXtw,753,Several players are shown on an ice rink. They,are engaged in different games of curling.,\"are holding tennis rackets, also hitting the ball.\",are engaged in a game of indoor soccer.,are playing a game of polo.,are playing a game of curling.,gold0-orig,pos,unl,unl,unl,pos,Several players are shown on an ice rink.,They\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6493,\"Someone runs into the meeting. The smart, silver - haired woman\",\"sits down, and looks round at the group.\",stands with her boss over her arm.,turns on her makeup and smiles tearfully.,rounds a corner and studies a long white haired woman in a curtain.,stands in the doorway drinking a swig.,gold0-orig,pos,unl,unl,unl,unl,Someone runs into the meeting.,\"The smart, silver - haired woman\"\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6496,The group come to a thrift shop. Ryuichi,puts up his hand.,pulls up outside with a mowing - lawn sculptor uncertainty some clothes.,are rafting together into a deep rapid black waters.,\"get a cab, and walk closer.\",gets to him from.,gold0-orig,pos,unl,unl,unl,unl,The group come to a thrift shop.,Ryuichi\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6497,Ryuichi puts up his hand. The basketball player,picks her up and shakes her.,lies on someone's back.,dives off the diving board.,runs on on a paintball field.,gives me two letters.,gold1-reannot,pos,unl,unl,unl,unl,Ryuichi puts up his hand.,The basketball player\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6495,She holds up someone's shopping bag. The group,come to a thrift shop.,has up their bags.,crosses to a rusty wooden door marked rocky spiral staircase.,enters a hospital cathedral.,hurries out toward the entrance.,gold1-reannot,pos,unl,unl,unl,pos,She holds up someone's shopping bag.,The group\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6498,The basketball player picks her up and shakes her. She,runs back to the thrift shop.,spins to a green bar.,hits another ball on a brush sponge.,\"tosses the cue, and walks off.\",marches to her side.,gold1-reannot,pos,unl,unl,unl,unl,The basketball player picks her up and shakes her.,She\nlsmdc1019_Confessions_Of_A_Shopaholic-80885,6492,\"A tall, silver - haired woman in a beret gets out. Someone\",runs into the meeting.,\"taps her x - humored bottle, then addresses someone.\",leans over to the river leading to the courtyard.,limps up behind him.,emerges sitting behind a few rows aid posts.,gold1-reannot,pos,unl,unl,unl,unl,\"A tall, silver - haired woman in a beret gets out.\",Someone\nlsmdc0003_CASABLANCA-47123,14202,Someone is now noticeably uncomfortable. Someone,walks over to the couch and sits down.,has then all mail out.,has stopped taking another customer off.,takes his own cue and holds onto the bow out painted and metal.,looks to his player.,gold0-orig,pos,unl,unl,unl,pos,Someone is now noticeably uncomfortable.,Someone\nlsmdc0003_CASABLANCA-47123,14211,The figure in the archway is gone. Someone,\"gets a cloak from the bedroom, and leaves the hotel room.\",strides along the corridor with a staring mustache.,climbs off the camera at someone's apartment.,comes out of the tent and stares at someone.,turns and sees someone nearby.,gold1-orig,pos,unl,unl,unl,pos,The figure in the archway is gone.,Someone\nlsmdc0003_CASABLANCA-47123,14207,Someone finally turns to look at someone. He,bends down and kisses her cheek.,approaches; he is n't completely covered in fear of his crisis.,turns to look at the sound escaping his own jeans.,loses his balance and hobbles to a window across the room.,moves uneasily over to him and constantly tilts consciousness.,gold0-orig,pos,unl,unl,unl,unl,Someone finally turns to look at someone.,He\nlsmdc0003_CASABLANCA-47123,14204,Someone turns off the light. He,sits down on the couch next to her.,pulls off a nearby ridge and can see someone from a distance.,\"turns a bright light on the white man, who sits before him.\",looks out in the windows.,,gold0-orig,pos,unl,unl,unl,n/a,Someone turns off the light.,He\nlsmdc0003_CASABLANCA-47123,14210,\"She stands there for a few seconds, then crosses to look out of the window. She\",sees someone walking down the street and closes the blind again.,hears someone pulling back above his vehicle.,\"moves toward it, still feeling directly in the doorway.\",steps back and closes her eyes as someone blinks and looks away.,makes her way out of the kitchen.,gold1-orig,pos,unl,unl,pos,pos,\"She stands there for a few seconds, then crosses to look out of the window.\",She\nlsmdc0003_CASABLANCA-47123,14206,Someone still can not look at him. Someone finally,turns to look at someone.,does the same when she was conducting.,looks thoughtfully at someone.,\"comes around the bar, where the goateed girls gathered.\",gets out and walks off.,gold1-orig,pos,unl,unl,unl,unl,Someone still can not look at him.,Someone finally\nlsmdc0003_CASABLANCA-47123,14205,A silence falls between them. Someone still,can not look at him.,lays his head on someone's shoulder.,holds his wand aloft.,struggles to stay afloat.,,gold0-orig,pos,unl,pos,pos,n/a,A silence falls between them.,Someone still\nlsmdc0003_CASABLANCA-47123,14212,People sit by the bar and look over ledgers. He,looks up at someone.,smacks someone else's cheek.,sets his head.,\"looks at his drunken grin, and has a brow.\",glances over his shoulder.,gold1-orig,pos,unl,pos,pos,pos,People sit by the bar and look over ledgers.,He\nlsmdc0003_CASABLANCA-47123,14209,He kisses her on the cheek and goes out the door. She,\"stands there for a few seconds, then crosses to look out of the window.\",\"lifts her throat, rushes into the room.\",opens the door and calls back to the counter as he giggles the silence.,offers someone an order and follows her to the elevator.,kisses him and then backs away with two pamphlets.,gold0-orig,pos,unl,unl,pos,pos,He kisses her on the cheek and goes out the door.,She\nlsmdc0003_CASABLANCA-47123,14203,Someone walks over to the couch and sits down. Someone,turns off the light.,collects his clothes in a hip bag.,goes upstairs and peers over his shoulder.,\"looks nervously at someone blankly, then looks up.\",lies back in her chair with her mouth agape.,gold1-orig,pos,unl,unl,unl,unl,Someone walks over to the couch and sits down.,Someone\nlsmdc0003_CASABLANCA-47123,14208,He bends down and kisses her cheek. He,kisses her on the cheek and goes out the door.,runs and kisses her passionately.,slaps his butt and heads off after his car.,kisses her hand then leans back against his chest.,\"reaches under her, takes a steadying breath and falls to her knees.\",gold1-reannot,pos,unl,unl,unl,pos,He bends down and kisses her cheek.,He\nanetv_tnavaGow7BI,2378,Two people are standing behind a counter. One person,is adding peppers to a salad.,shoots a ball into holes.,is wake boarding a boat.,holds up a sandwich.,is pouring ingredients onto the noodles.,gold0-orig,pos,unl,unl,pos,pos,Two people are standing behind a counter.,One person\nanetv_tnavaGow7BI,2379,One person is adding peppers to a salad. Another person,is chopping the pepper on a board.,joins them downstairs in the cat.,reluctantly stirring the ingredients in the pot.,mixes ice in a pot in a stove.,is placing another potato on a plate.,gold0-orig,pos,unl,unl,unl,pos,One person is adding peppers to a salad.,Another person\nlsmdc3013_BURLESQUE-5075,16294,He shuts the bedroom doors. She,flings a pillow at a lamp.,sips his tea with a stack of scrambled eggs.,stares right up with him.,walks right past him and takes his arm as they walk away.,,gold0-orig,pos,pos,pos,pos,n/a,He shuts the bedroom doors.,She\nanetv_iqe_HmjojQ8,93,The player runs past the first base. The player then,comes back to the first base and puts his foot on it.,serves the ball with the invite.,hits one and turns back with the shield.,shows on it for a second and then throws it on the field.,,gold1-orig,pos,unl,unl,unl,n/a,The player runs past the first base.,The player then\nanetv_iqe_HmjojQ8,92,A kickball player kicks the ball at home plate in a large arena. The player,runs past the first base.,throws the ball and celebrates.,comes down a log holding a black ball that throws it away.,falls between them trying to hit the ball.,pretends to throw three more times.,gold0-orig,pos,unl,unl,unl,unl,A kickball player kicks the ball at home plate in a large arena.,The player\nanetv_IjBMVPd2Rcs,4053,There's a person dressed in a blue track suit demonstrating how to use a rowing machine. He,sits on the bar of the machine and secures his feet into the foot rest.,\"is putting ice on a ski, creating an ice fishing line which is suspended in the air.\",begins playing the drums.,begins by demonstrating how to use pliers while holding a knife.,,gold0-orig,pos,unl,unl,unl,n/a,There's a person dressed in a blue track suit demonstrating how to use a rowing machine.,He\nanetv_IjBMVPd2Rcs,4055,Then he begins by pulling the rope towards his chest while straightening his legs. Then he,continues to use the machine in back and forth motion.,takes a pick of the rope and ties it on the rope for a long moment.,bends down and puts his legs.,gets a rock and throws off the rope to jump down a pit when he is done.,ties his legs back up by a bit and he starts to struggle away.,gold0-reannot,pos,unl,unl,unl,unl,Then he begins by pulling the rope towards his chest while straightening his legs.,Then he\nanetv_IjBMVPd2Rcs,4056,Then he continues to use the machine in back and forth motion. Then,comes to a rest by releasing the rope and leaning backwards.,move to the picture to the tunnel.,\"continues runners, going on, going up and down.\",he finishes the carpet and walks away in force.,shows the camera how to a machine in the machine.,gold0-reannot,pos,unl,unl,unl,unl,Then he continues to use the machine in back and forth motion.,Then\nanetv_IjBMVPd2Rcs,4054,He sits on the bar of the machine and secures his feet into the foot rest. Then he,begins by pulling the rope towards his chest while straightening his legs.,begins to solve some buttons and continues on talking.,straightens several hurdles hurdle while he steps on the camel.,takes her off the mat and scoots her legs along the wall.,lifts the pilot all of the board to the floor.,gold1-reannot,pos,unl,unl,unl,unl,He sits on the bar of the machine and secures his feet into the foot rest.,Then he\nanetv_n18TxTWnbFI,10356,He falls backward into the water. Someone,is jumping into the water off the diving board.,\"stares at someone, who looks anxiously at someone.\",drops to his knees and disappears into a shape.,kicks up at someone.,tumbles on the runway.,gold1-orig,pos,unl,unl,unl,unl,He falls backward into the water.,Someone\nanetv_n18TxTWnbFI,10355,They jump off the diving board into the pool. He,falls backward into the water.,stands on the bench next to someone.,walks on the rope and start to pull a couple.,\"go swiftly, jumping and dancing.\",,gold0-orig,pos,unl,unl,unl,n/a,They jump off the diving board into the pool.,He\nanetv_n18TxTWnbFI,10357,Someone is jumping into the water off the diving board. A person,jumps and goes under the water.,is seen pulling up against a skateboard using a stick while kneeling down.,is on wooden boards cubes in the water.,explores on the beach with an ice blue diving board.,,gold0-orig,pos,unl,unl,pos,n/a,Someone is jumping into the water off the diving board.,A person\nanetv_n18TxTWnbFI,10358,A person jumps and goes under the water. A man,is jumping high and does a flip into the water off of the diving board.,runs to grab the baby and holds out a hand and squeeze it into his mouth as he grabs it.,\"is swimming in the water below, and is water skiing.\",jump out of the mountain.,waves in the water in a yard.,gold0-orig,pos,unl,unl,unl,unl,A person jumps and goes under the water.,A man\nanetv_n18TxTWnbFI,10359,A man is jumping high and does a flip into the water off of the diving board. A person,does a black flip into the water off the diving board.,comes onto the collide ball boards and begins to go faster.,comes out of the room and around for a begin.,jumps onto the balance beam while the girls take.,is standing in the water well off of the diving board.,gold0-orig,pos,unl,unl,unl,pos,A man is jumping high and does a flip into the water off of the diving board.,A person\nanetv_n18TxTWnbFI,10354,A person is standing on a diving board. They,jump off the diving board into the pool.,add a blue to the bottom of the pool.,exercise on the camera.,dive into the water.,perform a few dives and performing flips.,gold1-orig,pos,unl,unl,pos,pos,A person is standing on a diving board.,They\nlsmdc1008_Spider-Man2-75108,13042,\"Someone takes a few paces past someone, stops, then turns. The brow of the thin - faced someone\",furrows as he walks away.,takes his cigarette out of his pocket.,turns and faces a boat.,collapses on the ground in his corner.,\"observes photographs sitting next to a curtained window, a bouquet of flowers.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone takes a few paces past someone, stops, then turns.\",The brow of the thin - faced someone\nanetv_1-nEQf-TJPE,1725,A woman stands behind a bar with bottles and ingredients. She,\"mixes the alcohols into a glass, then shakes them up before decorating and displaying the drink.\",puts the contacts into the glass.,\"mixes the ingredients together and pours the juice on a battery, then adds some more liquids to the mixture to create her drink.\",drops the glass into a coffee mug.,opens a lemon and pours juice into a glass.,gold0-orig,pos,unl,unl,unl,unl,A woman stands behind a bar with bottles and ingredients.,She\nanetv_1-nEQf-TJPE,1724,A video of vodka being poured into a martini glass is shown. A woman,stands behind a bar with bottles and ingredients.,is seen speaking to the camera and pouring lemonade into glasses.,sits at a counter on a coffee table.,takes a drink and pours it around a coffee table.,,gold0-orig,pos,unl,unl,unl,n/a,A video of vodka being poured into a martini glass is shown.,A woman\nanetv_jLykQW_-IVw,12544,People continue to walk behind her and in front. She,continues to smoke and stare straight ahead.,slides off the bench and begins to ride around.,thank the dog doorways for the camera.,then bends forward and gives each person a steady hug.,,gold0-orig,pos,unl,unl,pos,n/a,People continue to walk behind her and in front.,She\nanetv_jLykQW_-IVw,12543,She continues to hold cigarette in one arm. People,continue to walk behind her and in front.,kisses him then takes hold of the duke's beer.,walk into the sides of her backyard.,straighten her back away and continue the bar.,pan around the ranch as well.,gold0-orig,pos,unl,unl,unl,unl,She continues to hold cigarette in one arm.,People\nanetv_jLykQW_-IVw,12541,A woman is smoking a cigarette. She is sitting down and people,are walking behind her.,blowing smoke out of her mouth.,\"continue smoking cigarettes, smoking them.\",stream under a drink.,are still watching them.,gold1-orig,pos,unl,unl,unl,pos,A woman is smoking a cigarette.,She is sitting down and people\nanetv_jLykQW_-IVw,12542,She is sitting down and people are walking behind her. She,continues to hold cigarette in one arm.,grabs her bag off from her purse and lights it.,turns to other people in the water and then cuts her legs and takes the exercise - thigh.,picks up a stick and starts brushing the pogo stick.,,gold1-reannot,pos,unl,unl,unl,n/a,She is sitting down and people are walking behind her.,She\nanetv_m7cHlmcFk9Y,11585,A cat is in a woman's lap in the bathroom. She,pulls a towel over the cat's head.,\"blinks the back of her head once, and then moves over again.\",sees a nail and cuts its nails.,talks to a man on a back.,,gold0-orig,pos,unl,pos,pos,n/a,A cat is in a woman's lap in the bathroom.,She\nanetv_m7cHlmcFk9Y,11586,She pulls a towel over the cat's head. She then,gently tries to clip his claws one at a time.,picks up several nails the makeup one is then shown on her back and shows off her sides.,decides right to blow it away from the camera.,walks her head away.,uses the hose and tries to peel the powder down again.,gold0-orig,pos,unl,unl,unl,unl,She pulls a towel over the cat's head.,She then\nlsmdc3080_THIS_MEANS_WAR-37128,11800,\"Someone takes an escalator down to a lower floor, observing a variety of single women. He\",smiles at a dark - haired woman strolling by.,quickly printed her dressing gown and sits up and grabs her talk to her.,walks around a large mass of dolphins.,points to the window.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone takes an escalator down to a lower floor, observing a variety of single women.\",He\nlsmdc3080_THIS_MEANS_WAR-37128,11799,A movie plays on a tv at a video store. Someone,\"takes an escalator down to a lower floor, observing a variety of single women.\",\"is sitting on a table, his head covered in gauze.\",\"goes around the apartment, holding her hands up.\",dismisses camera as she dances with one baton on the bars.,,gold0-reannot,pos,unl,unl,unl,n/a,A movie plays on a tv at a video store.,Someone\nlsmdc3011_BLIND_DATING-975,15224,She grips a shelving unit. She,\"prowls toward someone, reaches for his crotch.\",takes it off and tosses it against the wall.,throws it across the room to find someone destroying the car.,climbs onto the bars.,\"slams his hand out of the mechanism, sending it off of the pedicab.\",gold1-reannot,pos,unl,unl,unl,unl,She grips a shelving unit.,She\nanetv__Mz7KEe_mz0,6480,Groups of skateboarders race each other down a forested road and are pulled by trolley cars back to the top. Skateboarders,ride down a forested street one after the other doing skids and hard turns as friends watch along the side.,hold and flip into a pit of dirt falling at different buildings.,pass a row of bikes and passing rest people during the cross.,take more turns and sees now few people wearing black suits female keys on a horse and boy.,,gold0-orig,pos,unl,unl,unl,n/a,Groups of skateboarders race each other down a forested road and are pulled by trolley cars back to the top.,Skateboarders\nanetv__Mz7KEe_mz0,6479,A forested area is seen and young men walk up the street. Groups of skateboarders,race each other down a forested road and are pulled by trolley cars back to the top.,roll to the new style room.,are led down onto a progress set of bicycles.,appear as fast as they get the house.,run after them on the sidewalk.,gold0-orig,pos,unl,unl,unl,pos,A forested area is seen and young men walk up the street.,Groups of skateboarders\nanetv_g_Cz69Q5bKM,1130,The men hold tennis rackets and continue hitting the ball. The men,run around hitting the ball.,hit one another and hit the ball hard.,continue playing and hitting the game around with ball pucks.,continue hitting the tennis ball against the wall.,,gold0-orig,pos,unl,unl,pos,n/a,The men hold tennis rackets and continue hitting the ball.,The men\nanetv_g_Cz69Q5bKM,15246,The man on the left lobs the ball. The man from the right,lobs the ball and wins the point.,grabs his height and runs to the field.,get straight to the ball.,finds the missing shot from a goal.,throw the ball to the ball.,gold0-reannot,pos,unl,unl,unl,unl,The man on the left lobs the ball.,The man from the right\nanetv_g_Cz69Q5bKM,1129,Two people are seen are hitting a ball around in a room. The men,hold tennis rackets and continue hitting the ball.,hold paintball and begin hugging one another.,grab and move around in either direction.,continue to hit a ball back and fourth as the man in really strikes him on the side.,speak to one another and leads into several shots of dogs throwing and interviewing one another.,gold0-reannot,pos,unl,unl,unl,unl,Two people are seen are hitting a ball around in a room.,The men\nanetv_AT_pPlJTiyE,12317,She puts a brick under the tire of the car. She,begins changing the tire on the car.,pulls out the fender and holds it out and waves it over.,pulls up and puts the hatchback in the water then drives his car down the road.,rubs a path over it again and replaces it.,downs it and tries to get it off but the vehicle is still running on.,gold0-orig,pos,unl,unl,unl,unl,She puts a brick under the tire of the car.,She\nanetv_AT_pPlJTiyE,12316,A woman is standing in front of a car. She,puts a brick under the tire of the car.,holds up a vacuum hose and begins putting it on her fingers.,is talking and begins blow drying her hair with a shampoo.,is wearing an underwater mask and nods to the camera.,island then is shown demonstrating how to do everything.,gold0-orig,pos,unl,unl,unl,unl,A woman is standing in front of a car.,She\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13028,\"To someone's relief, someone backs off. Someone\",looks at someone with surprise.,pulls someone to the back of her tie.,\"slumps against the couch, watching her.\",\", someone lays the guard for a bus while a crowd watches.\",,gold0-orig,pos,unl,unl,unl,n/a,\"To someone's relief, someone backs off.\",Someone\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13029,Someone looks at someone with surprise. He,picks up a small parcel.,swings his legs back in frustration.,shakes his head and points to the guards.,smiles as he takes off his apron and coat.,,gold1-reannot,pos,pos,pos,pos,n/a,Someone looks at someone with surprise.,He\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-93099,13027,\"Someone gives him a withering look. In the Slytherin common room, he\",slumps onto a leather sofa.,makes his way across the wasteland.,leans out of a window to pretend something citrus is being cooked.,joins her on a narrow ledge.,assembles a large battle with the cue sticks.,gold0-reannot,pos,unl,unl,unl,unl,Someone gives him a withering look.,\"In the Slytherin common room, he\"\nanetv_1fF1OQtpctg,17334,They then begin to do a routine and some of the girls run with streamers as the rest of them hold up the girls for their stunt. The stunt is finished and the retreat back to their original position and,begin doing cartwheels and other tricks and stunts along with their mascot.,strike the final time to the start.,undoes her performance on the stage to go over.,it goes from the range of the jump squeegees first one by one.,engage in their fight when they charge all together.,gold0-orig,pos,unl,unl,unl,unl,They then begin to do a routine and some of the girls run with streamers as the rest of them hold up the girls for their stunt.,The stunt is finished and the retreat back to their original position and\nanetv_1fF1OQtpctg,17333,A cheer - leading team begins to hold up posters as their mascot runs behind them. They then begin to do a routine and some of the girls,run with streamers as the rest of them hold up the girls for their stunt.,kick silently as the coach helps and keep their beam up and cheers them on.,start doing sync on the bars.,in yellow try to cheer.,,gold1-orig,pos,unl,unl,pos,n/a,A cheer - leading team begins to hold up posters as their mascot runs behind them.,They then begin to do a routine and some of the girls\nanetv_1fF1OQtpctg,17335,\"The stunt is finished and the retreat back to their original position and begin doing cartwheels and other tricks and stunts along with their mascot. As the routine continues, more stunts are performed and the Tiger mascot\",continues to cheer with the girls.,jumps after the camel while laying on the floor watching him.,lands on the snow towards right the teens diving together.,gets out of the way and wraps up early in the rink.,drops all the ladder into the sand.,gold0-reannot,pos,unl,unl,unl,unl,The stunt is finished and the retreat back to their original position and begin doing cartwheels and other tricks and stunts along with their mascot.,\"As the routine continues, more stunts are performed and the Tiger mascot\"\nanetv_HtuDZLsOK6M,18821,Various shots of scenery are shown and leads to a person scratching a dog and pulling a rope. More shots of people riding a boat,\"are shown, seagulls flying, and people playing music.\",captures the clips and performing tricks in the end.,is shown followed by a girl riding in her sled.,are shown as well as people jumping up and down and performing tricks.,are shown while others watch on the sides.,gold0-orig,pos,unl,unl,unl,pos,Various shots of scenery are shown and leads to a person scratching a dog and pulling a rope.,More shots of people riding a boat\nanetv_HtuDZLsOK6M,18822,\"More shots of people riding a boat are shown, seagulls flying, and people playing music. Next a person\",is seen drawing on a map and ends with an anchor and pictures of people.,\"surfing is shown in an ocean bucket, people are shown on a large boat once.\",washes their hands and shows pictures of him to go back to playing guitar.,greets a young girl playing the game with a game of soccer.,,gold1-reannot,pos,unl,unl,unl,n/a,\"More shots of people riding a boat are shown, seagulls flying, and people playing music.\",Next a person\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59958,15240,People hiking over the gentle Shire Countryside. wading through a shallow stream. Someone,stops short.,slowly crosses up the boat.,reclines in his seat.,surfaces with her reflection.,,gold1-orig,pos,unl,unl,unl,n/a,People hiking over the gentle Shire Countryside. wading through a shallow stream.,Someone\nanetv_GbykXyc8LA8,12950,She lays down on her back and gets her belly button pierced. She,stands up and smiles.,ends a second call on the screen to see if she could be talking.,continues to talk while holding the heimlich hoop closer to the woman's body.,continues talking as she walks away from him and finishes her hair.,puts her hands on her knees.,gold0-orig,pos,unl,unl,unl,unl,She lays down on her back and gets her belly button pierced.,She\nanetv_GbykXyc8LA8,12949,A woman takes off her jacket. She,lays down on her back and gets her belly button pierced.,and someone step out.,takes the mans coat after hand comes over and walks away.,points it for the mirror.,stands in a hug.,gold0-orig,pos,unl,unl,unl,unl,A woman takes off her jacket.,She\nanetv_GbykXyc8LA8,9719,A woman is seen taking her jacket off and close up of a table. The girl is seen laying on a table and a man,walks in and piercing her stomach.,stands up to her posing on the bowl.,begins putting tape on one finger.,gives her a tattoo cutter.,leads her into his room.,gold1-reannot,pos,unl,unl,unl,unl,A woman is seen taking her jacket off and close up of a table.,The girl is seen laying on a table and a man\nanetv_GbykXyc8LA8,9720,The girl is seen laying on a table and a man walks in and piercing her stomach. He puts a piece of jewelry in and the girl,sits up to show.,continues cutting his hair.,begins to close the object around arm.,begins speaking and presenting more of the sunscreen to the camera.,holds the doll handed to him and begins hula hooping.,gold0-reannot,pos,unl,unl,unl,unl,The girl is seen laying on a table and a man walks in and piercing her stomach.,He puts a piece of jewelry in and the girl\nlsmdc1062_Day_the_Earth_stood_still-100988,393,\"Someone kneels down dejectedly in front of his father's grave. As he kneels crying, someone\",\"rushes up to him, kneels down, puts her arms around him, and hugs him tightly.\",stares into his eyes.,\"turns, staring afterwards into her eyes.\",stops and faces him with wide eyes.,,gold0-orig,pos,unl,unl,pos,n/a,Someone kneels down dejectedly in front of his father's grave.,\"As he kneels crying, someone\"\nlsmdc1062_Day_the_Earth_stood_still-100988,392,Someone studies him and walks away. Someone,kneels down dejectedly in front of his father's grave.,watches grimly as someone puffs at a grin.,arrives behind him and shows the words diamond engagement ring in someone's hand.,follows down the hall from the front of the great hall.,looks soberly at him.,gold1-reannot,pos,unl,unl,pos,pos,Someone studies him and walks away.,Someone\nanetv_74MEdLMrXAQ,8874,\"Then, the referee puts the ball on the goal area and a boy kick the ball, but the goalkeeper stop the ball. The boys\",play shooting the ball to the goalkeeper stops the ball.,stick the stick to the president and a player in red t the shirt celebrates by punching the ball afterwards.,clink balls and bowls and celebrates.,bounce and spin on each other without clapping helmets making a high turn and scoring.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, the referee puts the ball on the goal area and a boy kick the ball, but the goalkeeper stop the ball.\",The boys\nanetv_afL6f_pwgMs,8636,A person is seen sitting in a tube drinking a beer while other people are seen siting off in the distance. More shots,are shown of the people riding along in tubes while drinking beers and speaking to one another.,are shown of people sitting in various locations doing tricks afterwards on their bodies.,are shown of people moving through the city as a bird climbs into the boat.,are shown of people pushing their boards into the canyon and ending their movements.,are shown of the boys sitting down on scuba gear while the camera captures their movements.,gold0-orig,pos,unl,unl,unl,unl,A person is seen sitting in a tube drinking a beer while other people are seen siting off in the distance.,More shots\nanetv_hKa9wV1orM8,3247,\"Then, people spin without hitting and then continue riding and bumping cars. A boy wearing white shirt\",spins around and get hit by several cars.,is bowling while people sit next to each other.,is trying to walk to the bar.,gives a cactus to his friend.,is outside the parking lot.,gold1-orig,pos,unl,unl,unl,unl,\"Then, people spin without hitting and then continue riding and bumping cars.\",A boy wearing white shirt\nanetv_hKa9wV1orM8,3244,People rides bumper cars in a carnival. A teen wearing red cup,gets hit by other cars.,swings on a pavement and runs across a slack line with numerous sports and people in front.,stomps his feet and crushes them to a garbage can.,performs a a twirl on a lamp someone looking off into the distance.,and motorcycle pants skateboard through a mall.,gold1-orig,pos,unl,unl,unl,unl,People rides bumper cars in a carnival.,A teen wearing red cup\nanetv_hKa9wV1orM8,3246,\"People spin around and then continue riding and bumping. Then, people\",spin without hitting and then continue riding and bumping cars.,splash while others watch on the side.,all watch to the sides as the girl continues to play.,stand combed at the end and start after the woman landing in a canoe with occasionally on hands.,surf on the side as the individual lifts the person releases into the air.,gold0-orig,pos,unl,unl,unl,unl,People spin around and then continue riding and bumping.,\"Then, people\"\nanetv_hKa9wV1orM8,3245,A teen wearing red cup gets hit by other cars. People,spin around and then continue riding and bumping.,see the instructor on the gym.,drives a little small dog on the ground.,takes a shot from a pool and runs away from the sidelines.,,gold0-orig,unl,unl,unl,unl,n/a,A teen wearing red cup gets hit by other cars.,People\nanetv_fwqDDFkOaCc,10898,\"A violinist, Lindsay Stirling is performing live with some other participants on a stage in front of an audience. She\",begins by playing the violin while the other performers dance in a choreographed fashion.,\"chases a high drum in a small environment, singing in an china plaza.\",are plays on their laughs.,\", a very pale band named singer in pink is gestures and tune, watching the man talk.\",\"hurts themselves with people on cameras, which are still off the stage when they turned to music so fast.\",gold0-orig,pos,unl,unl,unl,unl,\"A violinist, Lindsay Stirling is performing live with some other participants on a stage in front of an audience.\",She\nanetv_fwqDDFkOaCc,10904,Then the entire dance team comes on stage and continues dancing in coordinated steps as the violinist plays and dances along with them. Then they,leave the stage with only the violinist performing as she continues to dance and play the instrument.,\"raise their hands when the two continue talking and posing, followed by more people.\",\"perform the part, then dance, while the french dancers follow their right movements in front.\",finish by performing to other tricks and smiling fans and waving their hands.,continue to demonstrate play with a very example of the instructor.,gold0-orig,pos,pos,pos,pos,pos,Then the entire dance team comes on stage and continues dancing in coordinated steps as the violinist plays and dances along with them.,Then they\nanetv_fwqDDFkOaCc,10900,The violinist dances as she plays the instrument along with five other dancers. They,dance in a modern and hip hop style of dancing.,return to the stage and walks back to the table.,are shown sitting in the same way.,continue cartwheels and kicking.,bounce and dance in the dance water.,gold0-orig,pos,unl,unl,unl,unl,The violinist dances as she plays the instrument along with five other dancers.,They\nanetv_fwqDDFkOaCc,10899,She begins by playing the violin while the other performers dance in a choreographed fashion. The violinist,dances as she plays the instrument along with five other dancers.,sands all around on the stage as they release the combined weight.,walked to the band playing the violin plays a second time.,puts the winner after her and continues talking to each other.,raise her confounded in an effort to join them.,gold0-orig,pos,unl,unl,unl,unl,She begins by playing the violin while the other performers dance in a choreographed fashion.,The violinist\nanetv_fwqDDFkOaCc,10902,\"Then only two of the dancers stay on the stage with the violinist and dance in a Salsa style. After they leave the stage, one of the male dancers\",does some modern style of dancing as he rotates on his knees.,raise their hand high and indicate the tips of the dancers.,continue to do flips on various ground and show close up of the beard venue.,twists her body to indicate the skies where someone has then secures the muscles and intervenes.,,gold0-reannot,pos,unl,unl,unl,n/a,Then only two of the dancers stay on the stage with the violinist and dance in a Salsa style.,\"After they leave the stage, one of the male dancers\"\nanetv_fwqDDFkOaCc,10901,They dance in a modern and hip hop style of dancing. Then only two of the dancers,stay on the stage with the violinist and dance in a salsa style.,out of the pastry box near one.,begin arm wrestling surrounded by occurring on the floor.,walks back to their band and brush.,perform into a middle - circle dance trainer.,gold1-reannot,pos,unl,unl,pos,pos,They dance in a modern and hip hop style of dancing.,Then only two of the dancers\nlsmdc1020_Crazy_Stupid_Love-81192,19460,\"Someone regards her boyfriend, who is playing with his phone and sitting next to another guy doing the same thing. Someone\",stands by a glass barrier on the roof terrace of the mall.,\"goes down the aisle, taking the coin from him.\",lifts his hold up above his mouth and tilts his head.,moves his hand around for his hat but someone tries to stand up for the phone.,looks up from another photograph in the client's lap.,gold1-orig,pos,unl,unl,unl,unl,\"Someone regards her boyfriend, who is playing with his phone and sitting next to another guy doing the same thing.\",Someone\nlsmdc1020_Crazy_Stupid_Love-81192,19466,\"Someone wears a baggy striped polo shirt, blue jeans and running trainers. Someone\",checks his watch and shrugs.,\"walk on and on street in an office, to beckons.\",tries to help her.,\"stands, gasping for breath.\",,gold0-orig,pos,unl,unl,pos,n/a,\"Someone wears a baggy striped polo shirt, blue jeans and running trainers.\",Someone\nlsmdc1020_Crazy_Stupid_Love-81192,19465,He looks up and chews slowly as someone approaches. Someone,\"wears a baggy striped polo shirt, blue jeans and running trainers.\",finds a true marker and continues talking.,looks out from behind some piles of debris dunes among a tin of grain.,hurries out the door.,gazes round someone's level as someone joins them.,gold0-orig,pos,unl,unl,unl,pos,He looks up and chews slowly as someone approaches.,Someone\nlsmdc1020_Crazy_Stupid_Love-81192,19459,\"They all raise their glasses. The guy, who is dark - haired and a bit gawky looking,\",kisses someone on the lips.,is walking with someone alone on the opposite sidewalk.,stops to look at the cash tire.,looks him up and down.,,gold1-orig,pos,unl,unl,pos,n/a,They all raise their glasses.,\"The guy, who is dark - haired and a bit gawky looking,\"\nlsmdc1020_Crazy_Stupid_Love-81192,19461,Someone stands by a glass barrier on the roof terrace of the mall. He,bites into a piece of folded up pizza.,opens a large tea box at the top of the tables.,treated her most assassination attempt at listening.,\"walks through the club de his family, sipping a glass.\",is alone in a car working.,gold1-orig,pos,unl,unl,unl,unl,Someone stands by a glass barrier on the roof terrace of the mall.,He\nlsmdc1020_Crazy_Stupid_Love-81192,19463,\"He is dressed smartly in a dark suit, brown shoes, and sunglasses. He\",leans on the barrier and peers over.,is more detailed than featured.,removes the seat beside one of the clerks.,nods and puts down the white jacket.,\"finds someone staring after his watch, then turns away.\",gold0-reannot,pos,unl,pos,pos,pos,\"He is dressed smartly in a dark suit, brown shoes, and sunglasses.\",He\nlsmdc1020_Crazy_Stupid_Love-81192,19462,He bites into a piece of folded up pizza. He,\"is dressed smartly in a dark suit, brown shoes, and sunglasses.\",opens the front door and grabs someone.,drops a substance onto his mouth before keeping it on his head.,rubs a pan in the pan over the stove.,,gold0-reannot,pos,unl,unl,unl,n/a,He bites into a piece of folded up pizza.,He\nanetv_E15Q3Z9J-Zg,5072,\"The second woman talks to and instructs the first woman while the first woman exercises on the machine, interspersed with quick cuts of the woman exercising alone. The two women\",stand next to the machine and talk to each other and the camera.,demonstrate different fencing moves while demonstrating how to arm wrestling on an elliptical.,shake hands as the person walk behind the class.,stop and grab both hands.,continue to perform hip hop stunts by doing tricks like any of the girls.,gold0-orig,pos,unl,unl,unl,pos,\"The second woman talks to and instructs the first woman while the first woman exercises on the machine, interspersed with quick cuts of the woman exercising alone.\",The two women\nanetv_E15Q3Z9J-Zg,5396,A woman is seen riding on a piece of exercise equipment with another person standing next to her and motivating her. The woman,continues riding and then is seen again next to the machine speaking to the woman and smiling to the camera.,stands up and looks off into the distance.,continues flipping and moving in slow motion several times while moving her body movements.,continues performing the routine on the exercise machine and sitting back up into the air and speaking to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is seen riding on a piece of exercise equipment with another person standing next to her and motivating her.,The woman\nanetv_E15Q3Z9J-Zg,5071,A woman exercises on a stepping sort of machine. The woman,stands next to the machine and another woman while talking to the camera.,\"pushes the building, as the person caresses multiple more as she approaches.\",spins round and places it into a panel of a woman.,sits upright with a woman laying on the machine.,stands next to the second machine and continues using the machine.,gold0-orig,pos,unl,unl,unl,unl,A woman exercises on a stepping sort of machine.,The woman\nlsmdc1020_Crazy_Stupid_Love-81716,4908,Someone plods over to the podium. Someone,smiles and glances at someone.,sticks his fingers around his napkin and rubs his forehead.,\"joins them, and the blonde curls around his shoulder.\",sees someone's contempt for someone.,stares with tears in his eyes.,gold0-orig,pos,unl,unl,unl,pos,Someone plods over to the podium.,Someone\nlsmdc3042_KARATE_KID-18708,14867,\"They drive past urban apartment buildings and parks. Now, the taxi\",drives past tall warehouses and over a set of train tracks.,faces the parked station entrance as someone rides up entering the town.,whizzes through the streets of many choked up buildings and sports roofs.,arrives at the theater with new york night sky.,\"arrives at a restaurant with someone parked at night, and sits with a pitying frown on her face.\",gold0-orig,pos,unl,unl,unl,unl,They drive past urban apartment buildings and parks.,\"Now, the taxi\"\nlsmdc3042_KARATE_KID-18708,14881,They pass a courtyard featuring a Mao statue. The stadium,resembles a sleek - steel bird's nest.,positioned at an entry point to the church.,lights outside the clothesline under the arch.,opens and the officer seats their cabin.,,gold0-orig,pos,unl,unl,unl,n/a,They pass a courtyard featuring a Mao statue.,The stadium\nlsmdc3042_KARATE_KID-18708,14885,A man gardens in the hallway. Someone,peeks out a window at a park across the street.,adjusts the camera's knob.,walks by the cliff.,glances down at her.,kisses a beautiful woman.,gold0-orig,pos,unl,unl,unl,unl,A man gardens in the hallway.,Someone\nlsmdc3042_KARATE_KID-18708,14874,\"In the dim cabin, someone plays a handheld video game. Later, he\",sleeps on his mother's shoulder.,feeds a stray woman.,sets two bottles on a panel.,plays the accordion on a small portable television.,\"exits a bedroom in a hut, where a skyline of light illuminates a clean display counter.\",gold1-orig,pos,unl,unl,unl,unl,\"In the dim cabin, someone plays a handheld video game.\",\"Later, he\"\nlsmdc3042_KARATE_KID-18708,14875,\"Later, he sleeps on his mother's shoulder. Now, sunlight\",bathes someone's face as he blinks awake.,shines through an endless strip of light of light.,shines through through the windows as the atmosphere becomes luxurious packed.,bathes the figure of someone as she crosses the driveway.,shines through the storm sky.,gold0-orig,pos,unl,unl,pos,pos,\"Later, he sleeps on his mother's shoulder.\",\"Now, sunlight\"\nlsmdc3042_KARATE_KID-18708,14871,His mother watches as he struggles to close it. He,doffs his jacket and takes a seat.,sprays up the baby's hair.,yanks off the pair and puts it on.,leaps out of the window and gallops away into the barley.,\"yanks money, wrapping it in his parcel.\",gold1-orig,pos,unl,unl,unl,unl,His mother watches as he struggles to close it.,He\nlsmdc3042_KARATE_KID-18708,14882,\"The boy eyes his mother. Now in a park, men and women\",relax in and around a small pavilion.,stare at a huge ring together.,ride the flower on blossoms lights.,light a cigarette in a potion covered alley.,push mowing weeds and feel the huge estate.,gold0-orig,pos,unl,unl,unl,unl,The boy eyes his mother.,\"Now in a park, men and women\"\nlsmdc3042_KARATE_KID-18708,14873,\"On - board, passengers sip tea and uniformed flight attendants work the aisles. In the dim cabin, someone\",plays a handheld video game.,skillfully pegs apprehensively with a wild expression.,finds someone working on an open carriage and passes to someone.,faces a underway crack.,,gold0-orig,pos,unl,pos,pos,n/a,\"On - board, passengers sip tea and uniformed flight attendants work the aisles.\",\"In the dim cabin, someone\"\nlsmdc3042_KARATE_KID-18708,14884,\"Someone gives the sign a skeptical look. A tall, blond, Caucasian boy\",jogs up to them.,enters two men.,stands in a high neon railing.,has gathered with someone.,lingers outside the door.,gold0-orig,pos,unl,unl,unl,pos,Someone gives the sign a skeptical look.,\"A tall, blond, Caucasian boy\"\nlsmdc3042_KARATE_KID-18708,14876,\"In an airport, a statue shows four serpentine dragons holding up a globe. Someone and his mother\",roll two heaped luggage carts.,rest on their inner arm.,share a look with it.,have climbed from someone's new fridge.,,gold0-orig,pos,unl,unl,unl,n/a,\"In an airport, a statue shows four serpentine dragons holding up a globe.\",Someone and his mother\nlsmdc3042_KARATE_KID-18708,14883,\"A golden sign reads, Beverly Hills Luxury Apartment.. Someone\",gives the sign a skeptical look.,stares down through the chalkboard wall and desk.,is smoking a cigarette in the parking lot.,peers down at the encasement.,glares down on her black dress with dark sunglasses.,gold0-orig,pos,unl,pos,pos,pos,\"A golden sign reads, Beverly Hills Luxury Apartment..\",Someone\nlsmdc3042_KARATE_KID-18708,14878,A nearby sign shows a Chinese character. A woman,holds a sign in english.,performs piano amid a video of the participant.,observes a black lady with photos to another mannequin as she observes.,\"marches into the jungle, stopping from the entrance to school.\",sleeps in a bed.,gold0-orig,pos,unl,unl,unl,unl,A nearby sign shows a Chinese character.,A woman\nlsmdc3042_KARATE_KID-18708,14865,\"Vanishing from view, as the van continues onward. Someone\",frowns and leans his head against the seat.,runs the sail through the doctors work cockpit with a hole so he can reach the river.,makes a call from his weather radio.,tweaks some supports against the wall.,oversees arrow as it appears on the screen.,gold0-orig,pos,unl,unl,unl,unl,\"Vanishing from view, as the van continues onward.\",Someone\nlsmdc3042_KARATE_KID-18708,14868,\"Now, the taxi drives past tall warehouses and over a set of train tracks. Downtown, the windshield wipers\",clear a rainy view of towering high - rises.,shine under doors in her apartment.,follow her down the narrow path.,shine on the mnu vehicles.,shine their headlights as they move along the streets.,gold0-orig,pos,unl,unl,unl,unl,\"Now, the taxi drives past tall warehouses and over a set of train tracks.\",\"Downtown, the windshield wipers\"\nlsmdc3042_KARATE_KID-18708,14879,\"A woman holds a sign in English. From a van on a highway, someone\",looks out at china's central tv headquarters.,\"loosens his long tie, her shoulders extended as she stares into the emt's flow.\",enters with a mercedes - and - bikini girl standing in a chokehold.,\"sees guests making out, dangling and cold, as they enter a conference room together.\",rounds a corner he sits with a frown.,gold0-reannot,pos,unl,unl,unl,unl,A woman holds a sign in English.,\"From a van on a highway, someone\"\nlsmdc3042_KARATE_KID-18708,14877,Someone and his mother roll two heaped luggage carts. A nearby sign,shows a chinese character.,\"reads, hours earlier.\",is broken from the cia.,examines the sheet of paper.,\"reads, where you can find it.\",gold0-reannot,pos,unl,unl,unl,pos,Someone and his mother roll two heaped luggage carts.,A nearby sign\nlsmdc3042_KARATE_KID-18708,14872,She looks across the aisle. Someone,leans toward a stocky asian man with a pierced ear.,\"makes the rookie gesture to the boy in the other car, then moves back to him.\",prods her way and starts into a set of books as she shows up the drawings on them.,\"steps into his room, sets down the phone without missing a note, then answers and bends over and resumes the call.\",\"sits in an office, gazing down at her father's bed.\",gold0-reannot,pos,unl,unl,unl,unl,She looks across the aisle.,Someone\nanetv_j4EFi_NoEbQ,7295,Boy is skateboarding in a sidewalk with peopl walking by. man,is skateboarding in street and a car almost run over.,is walking to a yard and he is vacuuming the grass.,is holding the vacuum and stands mowing.,is standing in street holding a shovel and mean something else.,is standing next to people cheering.,gold0-orig,pos,unl,unl,unl,pos,Boy is skateboarding in a sidewalk with peopl walking by.,man\nlsmdc0010_Frau_Ohne_Gewissen-51695,3268,\"They stare at each other for a long moment, then, with intense effort someone gets up on his feet and stands there swaying a little. His face\",is covered with sweat.,is rapt and peaceful.,\"is set, a nervous expression in his eyes.\",falls back as he watches the sun looking down at him.,is pale and dangerous.,gold0-orig,pos,unl,unl,unl,unl,\"They stare at each other for a long moment, then, with intense effort someone gets up on his feet and stands there swaying a little.\",His face\nanetv_orwTrxIwCpo,4272,The man speaks to the camera while spraying down the car. The man,continues to clean the car while speaking to the camera.,continues laughing while people continue on leaves playing.,hops up and waves the dogs cars away.,wipes the car clean with the red scraper followed by clean shoes.,,gold0-orig,pos,unl,unl,unl,n/a,The man speaks to the camera while spraying down the car.,The man\nanetv_orwTrxIwCpo,13806,\"Then, the man wash the side windows and the roof of the car. After, the man\",talks and wash the back of the car.,holds a jack near the gates of the car.,\"peels his tire, pick up the scraper, push it up and then add a fluid.\",puts a washer in the car and begins cleaning off the cleaning.,stands in front of the camera wearing his black wig.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the man wash the side windows and the roof of the car.\",\"After, the man\"\nanetv_orwTrxIwCpo,13805,\"A man holding crutches wash a car with a hose in the street. Then, the man\",wash the side windows and the roof of the car.,kneel and shovels shingles out of a parking lot.,makes a square shaped throw.,arrives with a large ammunition press.,,gold0-orig,pos,unl,unl,unl,n/a,A man holding crutches wash a car with a hose in the street.,\"Then, the man\"\nanetv_orwTrxIwCpo,4271,A man is seen standing behind a car holding a hose. The man,speaks to the camera while spraying down the car.,hangs up various items from the bike cleaning the side.,inhales one time and grabs his other hand.,continues riding down the street while the camera pans around.,,gold0-reannot,pos,unl,unl,unl,n/a,A man is seen standing behind a car holding a hose.,The man\nanetv_sCCJpFKVV8g,5677,A woman is seen bending over a table with a tattoo artist rubbing her back from behind and grabbing a tattoo needle. The woman then,begins tattooing the back of the woman while the camera pans around from various angles.,drops the feathers and shows the moves wide until she finally sits down and continues painting her nails.,begins to tattoo her face while looking to the camera while pointing to the tattoo and showing her the tattoo.,rips off the cats nails and continues tattooing while the woman responds by speaking to her and putting on a human arm.,trudges around and shows a picture of a big picture on the ending page.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen bending over a table with a tattoo artist rubbing her back from behind and grabbing a tattoo needle.,The woman then\nlsmdc3046_LARRY_CROWNE-21415,2162,Someone follows his neighbor into a garage filled with secondhand goods. He,hands someone a booklet.,wears a baggy plaid red jacket.,checks a photograph of an envelope.,ends the call and staggers over to someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone follows his neighbor into a garage filled with secondhand goods.,He\nanetv_R0YS8JS_0rk,13070,The gymnast dismounts from the platform. The gymnast,shakes hands with coaches and other athletes.,does a choreographed routine and dismounts.,jumps and dismounts and lands on the mat.,jumps off the mat and does push flips and drops to his knees.,,gold0-orig,pos,unl,unl,pos,n/a,The gymnast dismounts from the platform.,The gymnast\nanetv_R0YS8JS_0rk,1035,He then begins performing a gymnastics routine on a beam. He,spins himself around continuously and ends by jumping down the side and walking away.,increases the beam.,begins performing on the rope while others watch him on the side.,moves around around the beam while jumping the beam and performing a routine.,performs a gymnastics routine on the balance beam during the routine.,gold1-orig,pos,unl,unl,pos,pos,He then begins performing a gymnastics routine on a beam.,He\nanetv_R0YS8JS_0rk,13067,A gymnast stretches and waves to the crowd before a competition. The gymnast,hops up onto a platform using his hands.,stretches and waves her hands once.,flips backwards in the air while bows and dives.,\"performs several flips and spins, flips and performs multiple flips.\",does a routine in preparation for bungee jumps.,gold1-reannot,pos,unl,unl,unl,unl,A gymnast stretches and waves to the crowd before a competition.,The gymnast\nanetv_R0YS8JS_0rk,13068,The gymnast hops up onto a platform using his hands. The gymnast,spins around the platform using he s hands to hold his weight.,\"does a routine on the balance beam, then lifts the beam up in the air and launches into the parallel bar.\",training before leading mid performance in the distance without his slapping!,dismounts to dismount and dismounts several times before jumping off into the water.,\"resumes his balance, continues taking off down the beam, keeping her balance while standing before the crowd.\",gold0-reannot,pos,unl,unl,unl,unl,The gymnast hops up onto a platform using his hands.,The gymnast\nanetv_R0YS8JS_0rk,1034,A man is shown raising his arm up in the middle of a large crowd. He then,begins performing a gymnastics routine on a beam.,continues riding while others watch on the sidelines.,goes back to his horse and gives the audience a hug.,begins to break apart several times while several other people watch from behind.,\"runs back down the blind, playing the saxophone back and forth.\",gold0-reannot,pos,unl,unl,unl,unl,A man is shown raising his arm up in the middle of a large crowd.,He then\nlsmdc1040_The_Ugly_Truth-8748,1031,The colorful restaurant is decorated with palms. Someone,\"sits in a booth overlooking the dance floor, where couples salsa.\",gets places from the fridge.,bagged candlelight with lighted candles while men swim across the decks.,has the gun set on one board.,starts to play and is tired again.,gold1-orig,pos,unl,unl,unl,unl,The colorful restaurant is decorated with palms.,Someone\nlsmdc1040_The_Ugly_Truth-8748,1030,\"Someone looks uncomfortable, then forces a smile. Someone\",walks up to a hostess.,scraps his teeth and calls out of someone's office.,returns with a warm smile.,\"laughs, then give a thumbs up.\",\"a topic, a blonde woman grabs a wine bottle and puts it in her purse.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone looks uncomfortable, then forces a smile.\",Someone\nlsmdc1040_The_Ugly_Truth-8748,1032,\"Someone sits in a booth overlooking the dance floor, where couples salsa. She\",is on the phone to someone.,turns to discover someone walking apart.,clutches his head with his hands.,waiting on pools of candles on players's leg.,\"turns out of the corner and spies a dingy window below, as transfixed as his sloop glides away in front of someone.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone sits in a booth overlooking the dance floor, where couples salsa.\",She\nlsmdc0051_Men_in_black-71099,16754,He points up at the screen with a laser pencil. He,indicates the three stars that make up the belt.,draws another gun out of hand and throws it away.,\"sticks it out through a sheet of wood, then lifts his head.\",\"glances at his mid - colleague, then makes his way around the tall bushes.\",\"smooths a plank, ready the clamors she mopes.\",gold0-orig,pos,unl,unl,unl,unl,He points up at the screen with a laser pencil.,He\nlsmdc3059_SALT-29152,2049,\"Leaning briefly against a tree trunk, she glances over her shoulder. She\",breathes hard through her parted lips.,hits a cart beside her lifeboat.,turns on her back and climbs back into the leather seat.,is covered in a golden shield and completely made out its tail.,breaks into an earnest expression.,gold0-orig,pos,unl,unl,unl,pos,\"Leaning briefly against a tree trunk, she glances over her shoulder.\",She\nlsmdc3059_SALT-29152,2034,\"As he looks up at her blood stained face, her eyes glisten and she displays a big smile. Someone\",studies her resolute expression.,leans into into the chair.,takes a i d. someone is worn out.,glares from his plate.,\"watches her stroke her hair, staring up to the exotic dancer.\",gold0-orig,pos,unl,unl,unl,pos,\"As he looks up at her blood stained face, her eyes glisten and she displays a big smile.\",Someone\nlsmdc3059_SALT-29152,2036,\"Craning his neck, he looks pass her to the fbi agents. He\",glances down again at someone's restraints then eyes the bald man.,steps into a crate.,does her rear window in the opposite direction.,takes his phone out to someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"Craning his neck, he looks pass her to the fbi agents.\",He\nlsmdc3059_SALT-29152,2039,A window shows their approach over the Potomac River. Someone,gives someone a meaningful look which she registers coldly.,vaults on a boat near blue.,\"seats at the center of the procession, which casts a swell of dust towards the gates.\",fills her view.,strides through a low fog.,gold1-orig,pos,unl,unl,unl,unl,A window shows their approach over the Potomac River.,Someone\nlsmdc3059_SALT-29152,2035,\"Someone studies her resolute expression. Craning his neck, he\",looks pass her to the fbi agents.,sways upwards towards a environment.,allows someone to nod.,covers his mouth as he leaves.,,gold0-orig,pos,unl,unl,pos,n/a,Someone studies her resolute expression.,\"Craning his neck, he\"\nlsmdc3059_SALT-29152,2041,He glances out of the Potomac then directs her gaze to the door. It,bears a semi - circular emergency release handle.,take a step apart from sealing behind a row full of remaining targets.,\"starts toward her and she picks up the feather, hops off the beam, and hands it to someone.\",starts to go out and a woman creeps through above her.,\"turns back, and gapes as he sees people leave, followed by someone.\",gold0-orig,pos,unl,unl,unl,unl,He glances out of the Potomac then directs her gaze to the door.,It\nlsmdc3059_SALT-29152,2048,\"Someone rushes a shore and dashes through the woods, pumping her shackled arms. Leaning briefly against a tree trunk, she\",glances over her shoulder.,sticks her fingers through the knife.,hears her friends coming and the mother wincing happily.,wears a simple veil.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone rushes a shore and dashes through the woods, pumping her shackled arms.\",\"Leaning briefly against a tree trunk, she\"\nlsmdc3059_SALT-29152,2045,He stares into the water. It,shows no sign of the mysterious woman.,continues to dangle off a cow.,is parked around the room.,follows someone's side.,is blowing in the breeze.,gold1-orig,pos,unl,unl,unl,unl,He stares into the water.,It\nlsmdc3059_SALT-29152,2044,\"She steals herself with a deep breath. As someone's hand closes into a fist, she\",lunges for the emergency release.,forces herself to squat.,\"shakes out her gun, then flings a pillow at someone.\",guides a wounded someone.,notices someone steady gazes.,gold0-orig,pos,unl,unl,unl,unl,She steals herself with a deep breath.,\"As someone's hand closes into a fist, she\"\nlsmdc3059_SALT-29152,2050,She breathes hard through her parted lips. Her wet short hair,clinging to her head.,trails away from his scar.,form a lingering spot.,\"dangles in her graceful, white polo.\",clumps around her neck.,gold0-orig,pos,unl,unl,unl,unl,She breathes hard through her parted lips.,Her wet short hair\nlsmdc3059_SALT-29152,2038,He talks on a headset. A window,shows their approach over the potomac river.,is seen on the tv.,shows the station someone's car parked in front of the building.,is in a room where there is a tv set up on the furniture.,,gold1-orig,pos,unl,pos,pos,n/a,He talks on a headset.,A window\nlsmdc3059_SALT-29152,2042,\"It bears a semi - circular emergency release handle. Swallowing, someone\",watches someone's finger tap deliberately against his leg.,moves around a basin and removes concrete.,takes out his own wing.,bolts her head up and swings on.,,gold0-orig,pos,unl,unl,unl,n/a,It bears a semi - circular emergency release handle.,\"Swallowing, someone\"\nlsmdc3059_SALT-29152,2046,\"It shows no sign of the mysterious woman. Searching fruitlessly for someone, someone\",allows a smile and gives a satisfied nod.,stands talking to the full members of the band.,sends the tallest team all down.,reinserts himself onto a back.,\"pulls someone off, leaving someone frozen behind.\",gold1-orig,pos,unl,unl,pos,pos,It shows no sign of the mysterious woman.,\"Searching fruitlessly for someone, someone\"\nlsmdc3059_SALT-29152,2043,\"Swallowing, someone watches someone's finger tap deliberately against his leg. She\",steals herself with a deep breath.,\"bears a forefinger, cascades towards the glittering metal of iron bridge.\",\"avoids his gaze, then rubs his eyes.\",\", someone turns to see someone holding a covered jug with one hand.\",breaks a pass crumbled.,gold0-reannot,pos,unl,unl,unl,unl,\"Swallowing, someone watches someone's finger tap deliberately against his leg.\",She\nlsmdc3059_SALT-29152,2040,Someone gives someone a meaningful look which she registers coldly. Someone stares at him and he,directs her gaze toward the window.,wears a dreamy grin.,bites his lip with a weary scowl.,adjusts his grip on her shoulder beer.,holds out his hands.,gold0-reannot,pos,unl,unl,unl,pos,Someone gives someone a meaningful look which she registers coldly.,Someone stares at him and he\nlsmdc3059_SALT-29152,2051,Her wet short hair clinging to her head. Her feet,carry her over the forest snowy ground.,nip at his crest.,\"cling on the mirror, planets hair one sign of someone.\",\"return across the sand as someone cuts off, and where is the team.\",appear demurely trimmed by hair and tail.,gold1-reannot,pos,unl,unl,unl,unl,Her wet short hair clinging to her head.,Her feet\nanetv_fDPNV463JuE,2857,Two men are standing holding paintball huns in a field with obstacles. man,is showing how to holds the gun in a paintball field.,is skating around the field while the other hit the ball back and forth.,begin to play the games of tug of war with other players.,is throwing the javelin.,,gold0-orig,pos,pos,pos,pos,n/a,Two men are standing holding paintball huns in a field with obstacles.,man\nanetv_fDPNV463JuE,2876,\"A quick black screen appears with white words that say tips para back central. Two men dressed in protective gear and helmets are standing closely to one another talking, and one of the men has a paint gun in his hands and he\",'s showing how he holds the gun as he talks and points to the paint gun area with all of the large cushions.,can demonstrate circles that exercises with his technique using a hockey stick between their legs and the credits of the clip are shown.,blends them all together.,is recording to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A quick black screen appears with white words that say tips para back central.,\"Two men dressed in protective gear and helmets are standing closely to one another talking, and one of the men has a paint gun in his hands and he\"\nanetv_fDPNV463JuE,2875,A man wearing protective gear and a helmet is standing and talking to the camera in a paint gun area with a lot of large cushions of different shapes. A man,quickly walks in front of the guy talking then reappears in the view and talks to the man.,is shown that he is using gear to replace the tools.,takes a selfie while sitting in a kayak on a snowboard.,is in front of the screen showing his commentator explaining how he welds the red lens.,,gold0-reannot,pos,unl,unl,unl,n/a,A man wearing protective gear and a helmet is standing and talking to the camera in a paint gun area with a lot of large cushions of different shapes.,A man\nanetv_T7Mg-Owb14Y,4946,He is holding a large pole as he talks. He,shows the camera the different positions necessary for using the pole.,vaults back onto the diving board to join it.,uses a lasso to balance it backward.,stands on a hill.,begins to talk about the olympian.,gold0-orig,pos,unl,unl,pos,pos,He is holding a large pole as he talks.,He\nanetv_T7Mg-Owb14Y,13304,Man in a gym room and kneels on his knee to make exercise holding the pole. man,is making exercise kneeling on the floor showing how to make exercise.,is doing karate moves in a weightlifting competition.,gets up and talks about the guy and points to a room top.,is in a gym performing an exercise in gunner bars.,holds a wooden rod in a gym and picks up a large weight.,gold1-orig,pos,unl,unl,pos,pos,Man in a gym room and kneels on his knee to make exercise holding the pole.,man\nanetv_dxvKVBrNMDw,7151,A woman is seen speaking to the camera while holding a hula hoop and then proceeds to spin the object around her. She,continues hula hooping over and over again and leads into pictures of people hula hooping in the end.,continues putting a hoop by the batons and ends by walking back and speaking to herself while sitting and looking.,begins hitting a hula hoop with her foot while looking off into the distance.,moves along the ends and spins her around while the camera captures her movements.,continues playing the instrument while pausing to speak to the camera.,gold1-reannot,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding a hula hoop and then proceeds to spin the object around her.,She\nanetv_APuN4vwgKJ4,17533,She combines and mixes the ingredients with a hand mixer. She then,places flour into a bowl after she measures it along with baking soda.,demonstrates how to stuff out a pan with a slice of ingredients.,\"places the other mixture on a plate and puts it on, scooping a sandwich in place.\",adds the ingredients required to the spoons and bag dishes on the counter.,grabs the sink to make a glass point later looking at the contents then pours the bowl into a skillet.,gold0-orig,pos,unl,unl,unl,unl,She combines and mixes the ingredients with a hand mixer.,She then\nanetv_APuN4vwgKJ4,17535,She adds it to the cookies dough and mixes it by hand then adds in the chocolate chips. She then,measures out dough that is on a baking sheet for cooking.,\"spreads and cuts the dough into dough, adds frosting, and chocolate.\",places some dough onto the oven and blends them all together in the same time.,rubs the dough into balls and mixes them together.,,gold0-orig,pos,unl,pos,pos,n/a,She adds it to the cookies dough and mixes it by hand then adds in the chocolate chips.,She then\nanetv_APuN4vwgKJ4,17534,She then places flour into a bowl after she measures it along with baking soda. She,adds it to the cookies dough and mixes it by hand then adds in the chocolate chips.,uses to make another before sprinkling it on the olive craft.,puts the cream in her pan and brings it to the baking.,rolls up the aid piece on the plate and puts ingredients in the baking pan.,puts the baking dough over the plate bowl and presents it before them.,gold0-orig,pos,unl,unl,unl,unl,She then places flour into a bowl after she measures it along with baking soda.,She\nanetv_APuN4vwgKJ4,17532,A woman standing at a counter speaking about making chocolate chip cookies. She,combines and mixes the ingredients with a hand mixer.,stirs a plastic slice and stirs the ingredients into a bowl.,shows flyers to see the finished marketing setting and woman walks in in a square area using a listing ad.,takes a lid off of a hookah and begins to boil it.,cuts the noodles in taking it with it and mixing it.,gold0-orig,pos,unl,unl,unl,unl,A woman standing at a counter speaking about making chocolate chip cookies.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2092,8817,Someone looks around the huge bathroom. She,opens the drawer and finds it filled with unopened toothbrushes of every color and pattern.,bursts down a hill into the cloud of silt.,starts to remove her slippers.,\"surveys the room with a grin, then follows a smile to her rooms as she walks away.\",,gold0-orig,pos,unl,unl,pos,n/a,Someone looks around the huge bathroom.,She\nlsmdc3032_HOW_DO_YOU_KNOW-2092,8816,She grabs her dress and steps out. Someone,looks around the huge bathroom.,watches her hourglass touch her right shoulder.,\"walks to the door, carrying someone's briefcase.\",\"crosses to the door, sipping a glass.\",,gold0-orig,pos,unl,pos,pos,n/a,She grabs her dress and steps out.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2092,8818,\"Someone takes a brush, then puts her bright red dress on over her matching slip. He\",opens a cabinet filled with women's pink sweat suits.,\"hands someone a handkerchief, and someone snatches the weapon on the cabinet.\",hands her her space case and looks at someone again.,\"batons skyward, checking his watch.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Someone takes a brush, then puts her bright red dress on over her matching slip.\",He\nanetv_jVC3DZdphYM,8672,\"After, the person continues playing while marking the compass of the music with his hands. Next, the person\",stops playing and talks.,plays the drums and starts to take a good break.,grabs the accordion and takes his breath off and plays in his dining competition.,plays a part of the violin and laugh while smoking.,removes the welding on the other side of the paper.,gold0-orig,pos,unl,unl,unl,unl,\"After, the person continues playing while marking the compass of the music with his hands.\",\"Next, the person\"\nanetv_jVC3DZdphYM,3201,\"The man stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times. The man then\",begins playing again using his hands to indicate the type of note he is hitting.,flips the wooden stick upside down and lays it back on the table.,goes to a small interact where they play their drum solo.,claps his hands back and goes.,begins doing his handstand while moving his hands and feet using his skateboard.,gold0-orig,pos,unl,unl,unl,unl,\"The man stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times.\",The man then\nanetv_jVC3DZdphYM,3200,\"The man continues to play the harmonica, moving back and forth and side to side and emoting with his eyebrows while playing. The man\",\"stops playing and begins to talk to the camera using hand gestures to point to the harmonica, at times.\",continues playing and seems to show his notes and body and the cream can surface.,continues spinning up at the camera and ends by giving a thumbs up and riding.,continues doing various flips and tricks while speaking to the camera and making more shots for the camera.,laugh and looks back up again with the camera in his perspective facing the others and looking down.,gold0-orig,pos,unl,unl,unl,pos,\"The man continues to play the harmonica, moving back and forth and side to side and emoting with his eyebrows while playing.\",The man\nanetv_jVC3DZdphYM,8670,\"A person plays the harmonica holding it with both hands inside a room. Then, the person\",stops playing and talks.,stands ready to set the instrument behind the pedal of the swing as the man holding the camera in hand talks on the microphone.,start playing a harmonica.,behind the cross has lit a candle on the stage.,\"uses a paint roller, pretend he finishes playing.\",gold0-orig,pos,unl,unl,unl,unl,A person plays the harmonica holding it with both hands inside a room.,\"Then, the person\"\nanetv_jVC3DZdphYM,3202,The man then begins playing again using his hands to indicate the type of note he is hitting. The man then,begins playing again before stopping and talking to the camera one last time.,bites a shower and peers out all more names then laughs some more.,flips back and forth while the talks.,gets hold of the bongo and begins singing faster.,begins playing the drums and the girl briefly stops.,gold1-orig,pos,unl,unl,unl,unl,The man then begins playing again using his hands to indicate the type of note he is hitting.,The man then\nanetv_jVC3DZdphYM,8671,\"Then, the person stops playing and talks. After, the person\",continues playing while marking the compass of the music with his hands.,throws the angel with three more two.,puts paint paint on the paint object and travel the shakes along the canvas.,\"puts their ring on their feet and begins using their hands, clothes talking.\",begins riding on horses with scissors.,gold1-reannot,pos,unl,unl,unl,unl,\"Then, the person stops playing and talks.\",\"After, the person\"\nlsmdc3030_GROWN_UPS-13942,11420,\"Outside, a husky guy plays with two kids in an above ground pool. As his busty wife brings the phone, he\",tries to climb out.,points it at the man.,has to paddle his way to the machine.,lifts his gaze to the ceiling.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside, a husky guy plays with two kids in an above ground pool.\",\"As his busty wife brings the phone, he\"\nlsmdc3030_GROWN_UPS-13942,11419,\"At another house a photo shows the five boys with their coach. Outside, a husky guy\",plays with two kids in an above ground pool.,rises on a stand sized dog.,opens the front door with a pen.,carries a shoebox past an upcoming sweeping player.,sets his beer down and techs himself in a restaurant.,gold0-reannot,pos,unl,unl,unl,unl,At another house a photo shows the five boys with their coach.,\"Outside, a husky guy\"\nanetv_g0vAi9iuVPA,1463,A gymnast prepares to run at the end of a mat. He then,\"runs at top speed, spinning and flipping foward down the mat.\",performs several tricks on the parallel bars while hundreds of judges hold each other.,dives in on the track and does several flips and moves.,dismounts and turns the beam several times before dismounting.,runs across the mat in front of him.,gold0-orig,pos,unl,unl,unl,unl,A gymnast prepares to run at the end of a mat.,He then\nanetv_g0vAi9iuVPA,1464,\"He then runs at top speed, spinning and flipping foward down the mat. He\",lands with his arms out at the end.,dismounts to his feet.,mounts a silver beam in an incantus setting.,beings to finish the salad.,shaves himself from his pipe with gloved hands.,gold0-orig,pos,unl,unl,unl,unl,\"He then runs at top speed, spinning and flipping foward down the mat.\",He\nanetv_g0vAi9iuVPA,5325,The man then begins flipping down the track while others watch on the side. He,continues flipping and ends with his arms out.,continues hitting all around the track as the match continues to slow as up and replay come to end.,stops playing the routine and ends by jumping off of an equipment bench.,jumps over ending bikes and looking up at the camera.,continues to walk around the fence as well as stopping to speak to the camera.,gold0-orig,pos,unl,unl,pos,pos,The man then begins flipping down the track while others watch on the side.,He\nlsmdc3039_JACK_AND_JILL-2500,14699,\"As everyone around her jumps up and cheers, someone gives an unimpressed look. She\",notices someone watching her from across the court and furrows her brow in a quizzical expression.,\"reaches up, sniffs the family hysterically.\",runs her fingers around the obviously colored owl which flies off someone's single finger.,\"walks away, revealing a penguin hanging on his arm.\",screams like an angry gryffindors as someone lifts someone off his feet and disappears into the sand at one end of the passage.,gold0-orig,pos,unl,unl,unl,unl,\"As everyone around her jumps up and cheers, someone gives an unimpressed look.\",She\nlsmdc3039_JACK_AND_JILL-2500,14700,She notices someone watching her from across the court and furrows her brow in a quizzical expression. The older man,lowers his fake beard and gives her a smile.,gives her comment to someone.,backs into a street area and shuts board while her surfs sobs while passengers jump off in a wave.,notes his opponent's lip rate.,,gold1-orig,pos,unl,unl,unl,n/a,She notices someone watching her from across the court and furrows her brow in a quizzical expression.,The older man\nanetv_CBckvP5FR4A,14717,\"First a screen is shown, showing what song the man will be playing using the guitar. Then the man is shown sitting down playing the guitar and he never\",looks up at the camera.,turns and gives a thumbs up.,plays the harmonica while he's wearing a black hoodie.,acknowledges the use of his hands.,completes the song from the guitar.,gold0-orig,pos,unl,unl,pos,pos,\"First a screen is shown, showing what song the man will be playing using the guitar.\",Then the man is shown sitting down playing the guitar and he never\nanetv_YmhbwAv0Xbc,755,\"More people begin sliding but this time it is with a small sled, not a tube. A man\",lets go of the rope and hits an embankment of snow.,pushes his teeth on the back of the truck as he drives the motorcycle and skis up the slope.,walks up a hill while holding onto the rope that continues then appears.,is standing in the corner holding a surfboard attached to it and throws it in the water.,rides off next to a board and rides on the road looking down.,gold1-orig,pos,unl,unl,unl,pos,\"More people begin sliding but this time it is with a small sled, not a tube.\",A man\nanetv_YmhbwAv0Xbc,754,A man goes up a snow hill in the tube. More people begin sliding but this time it,\"is with a small sled, not a tube.\",'s hard to be a foot away from the snow.,falls on the ground.,comes back again want focus for hairdo.,,gold0-orig,pos,unl,unl,unl,n/a,A man goes up a snow hill in the tube.,More people begin sliding but this time it\nanetv_YmhbwAv0Xbc,753,A man in a grey hat hits a snow embankment with the tube. A man,goes up a snow hill in the tube.,kneels in the pool.,walks up to the top of a building.,jumps down a metal tube using his skateboard.,unlatches the skateboard while skateboarding.,gold0-reannot,pos,unl,unl,unl,unl,A man in a grey hat hits a snow embankment with the tube.,A man\nanetv_L4ZhAK04yjg,4965,The screen turns a blue shade. A person,enter the room then leaves.,begins trimming a small ladder.,interlaces hands with the left.,stand on front of a pile of balls and feed it to someone.,paints the fence with paint.,gold1-orig,pos,unl,unl,unl,pos,The screen turns a blue shade.,A person\nanetv_L4ZhAK04yjg,4962,The man spins the woman back and forth. The screen,turns a green shade.,displays a different fashion website.,shows a 360 in the air.,displays the spinning completely revolves to it.,starts the same sequence.,gold0-orig,pos,unl,unl,unl,pos,The man spins the woman back and forth.,The screen\nanetv_L4ZhAK04yjg,4964,The lady takes her hair out of a pony tail. The screen,turns a blue shade.,cuts to black and quickly kids.,pans to several other pebble on the shore.,try to brush its black hair.,turns to her selling ladies.,gold1-orig,pos,unl,unl,unl,unl,The lady takes her hair out of a pony tail.,The screen\nanetv_L4ZhAK04yjg,4961,We see a man and a a woman dancing together. The man,spins the woman back and forth.,gets the hair back on the bench and embrace.,holds a large stick pierced.,falls on the street.,talks in front of a drum set.,gold0-orig,pos,unl,unl,unl,unl,We see a man and a a woman dancing together.,The man\nanetv_L4ZhAK04yjg,4963,The screen turns a green shade. The lady,takes her hair out of a pony tail.,\"appears briefly, as the machine moves on.\",finishes painting the easel and stands in the top.,changes the title paper.,plays the saxophone in his chair.,gold0-orig,pos,unl,unl,pos,pos,The screen turns a green shade.,The lady\nanetv_L4ZhAK04yjg,4966,The people start spining again. The person,returns and moves to the left.,goes in the pumpkin to cut them.,drops their legs on the ground.,changes to someone again with more resolute demeanor.,pulls down the rocks and dives straight up into their pool.,gold1-reannot,pos,unl,unl,unl,unl,The people start spining again.,The person\nanetv_v_UmAH95xls,18102,Two girls are sitting on the porch of a house while shaving their legs. A boy,walks out and looks before walking away.,walks to another man and begins caressing his beard.,is in the barber shop while two girls hold on and point sleds.,walks over and hugs the boy.,stands behind the boy and listens.,gold0-orig,pos,unl,unl,pos,pos,Two girls are sitting on the porch of a house while shaving their legs.,A boy\nanetv_baSx0q9LKg0,5108,Then the mix is pour in cupcake liners. when ready the cake is in a tray and the woma,put chocolate syrup on the cake and freeze.,is up on the top of the oven.,comes to measure to make the mixture with fashion behind it.,continues start to cook green salad.,,gold0-orig,pos,unl,unl,unl,n/a,Then the mix is pour in cupcake liners.,when ready the cake is in a tray and the woma\nanetv_baSx0q9LKg0,16649,\"A person puts three eggs and sugar in bowl an mix. Then, the person\",measures flower and add to the dough.,adds eggs and purple eggs and soda and then mix the spatula for another spatula.,grabs the pasta and begins cutting peanut butter from the cup.,stirs the eggs and put the sugar and a cup.,flips the pan in making an omelette.,gold0-orig,pos,unl,unl,unl,unl,A person puts three eggs and sugar in bowl an mix.,\"Then, the person\"\nanetv_baSx0q9LKg0,5107,When ready the mix is put in a recipient in chocolate shape. then the mix,is pour in cupcake liners.,is dried and overlaid the stick.,is a gift demonstrated by mix.,begins with a cloud of white cotton.,demonstrate a final ingredients using the crutches under varnish.,gold0-orig,pos,unl,unl,unl,unl,When ready the mix is put in a recipient in chocolate shape.,then the mix\nanetv_baSx0q9LKg0,5109,When ready the cake is in a tray and the woma put chocolate syrup on the cake and freeze. when ready the cake,its put in white plate and cut in a piece.,is added on a mini cup and hot layers that put the floor is placed on top.,\"is added, the cheese is placed full of butter on the oven.\",has rolled into the oven and turned around and cake is removed.,is being chopped and mixed up with cake.,gold0-orig,pos,unl,unl,unl,unl,When ready the cake is in a tray and the woma put chocolate syrup on the cake and freeze.,when ready the cake\nanetv_baSx0q9LKg0,16650,\"Then, the person measures flower and add to the dough. After, the person\",puts the dough in a baking pan and in a muffin pan and bake.,add ice to the glass and share a douse.,shows the empty squares.,gets a fry in a large bowl and mix them up.,puts insides out the frosting bake and bakes a bit in dough to blend a chocolate.,gold0-orig,pos,unl,unl,pos,pos,\"Then, the person measures flower and add to the dough.\",\"After, the person\"\nanetv_baSx0q9LKg0,5106,A cake with a hershey shape is in a white plate. someone,is mixing eggs and flour and other ingredients in a bowl.,enters the market and looks at the wedding footage underneath him.,is peeling a green potato.,puts strawberries into a blender.,\"is behind her, pointing pointing at her shoulder.\",gold0-orig,pos,unl,unl,pos,pos,A cake with a hershey shape is in a white plate.,someone\nanetv_baSx0q9LKg0,16648,A cake chocolate is served on a dish. A person,puts three eggs and sugar in bowl an mix.,shakes hands with food.,is making some lemonade on cake.,\"speaks to the camera, showing how to make cooks sandwiches.\",is slicing the eggs.,gold1-orig,pos,unl,unl,pos,pos,A cake chocolate is served on a dish.,A person\nanetv_baSx0q9LKg0,16651,\"After, the person puts the dough in a baking pan and in a muffin pan and bake. Next, the woman\",\"add melted chocolate to the baking pan and puts on the cake, after cover the cake with melted chocolate.\",puts lipstick on her lips then finish credits and bake.,labeled cheese salad and adds several ingredients on the pan.,\"uses materials to bake the cookies, remove chocolate cookies from the oven.\",,gold0-reannot,pos,unl,pos,pos,n/a,\"After, the person puts the dough in a baking pan and in a muffin pan and bake.\",\"Next, the woman\"\nanetv_YU0DjX7wvRA,8615,The owner picks him up and sits down with him and begins to clip his nails. The cat,is moving his head around wagging its tail around but not giving a hard time.,falls back with a button and the two continue to talk.,peels the woman's leg out from under him and covers him with it.,suddenly stops the child and holds the amount of strength on his desk.,\"plays, still stuck toward a tree and grabbing his arm as he tries to look down at a ceiling bigger.\",gold0-orig,pos,unl,unl,unl,unl,The owner picks him up and sits down with him and begins to clip his nails.,The cat\nanetv_YU0DjX7wvRA,8616,The cat is moving his head around wagging its tail around but not giving a hard time. The owner then,\"begins to rub its belly and play with it's feet, before putting the cat back on the ground.\",makes his way to the press and opens the binoculars to a person coming out behind the mower.,finish out of the mower and pulls the person off the side of the road then approaches the camera.,comes back to speak to the owner then stands in do the same and looks up at it.,returns to blow suspicious and limp.,gold0-orig,pos,unl,unl,unl,unl,The cat is moving his head around wagging its tail around but not giving a hard time.,The owner then\nanetv_YU0DjX7wvRA,8614,A cat is sitting on the floor looking up as his owner tried to grab him. The owner,picks him up and sits down with him and begins to clip his nails.,puts down his pipe and begins blowing smoke.,takes the key out of his hand and wraps it around his neck.,throws a small piece of paper in a trash bin then tosses it aside.,,gold0-orig,pos,unl,unl,unl,n/a,A cat is sitting on the floor looking up as his owner tried to grab him.,The owner\nanetv_VWpRBfhoFVg,14316,Everyone cheers and there is some clapping. The little girl,turns around and returns her stick to the woman.,is swinging her legs and stockings tries flipped behind.,is surrounded calmly.,operator began to play.,sounds to the crowd.,gold1-orig,pos,unl,unl,unl,unl,Everyone cheers and there is some clapping.,The little girl\nanetv_VWpRBfhoFVg,17711,A little girl is holding a stick. She,is trying to hit a pinata in front of her.,puts the dough cupcake in a bowl and puts it in a bowl.,\"jumps into the air to make the big jump, but jumps another.\",puts a fishing drill into a sack in front of a bunch of stone boxes before running away.,looks at the pinata to powder it.,gold0-orig,pos,unl,unl,unl,unl,A little girl is holding a stick.,She\nanetv_VWpRBfhoFVg,17712,She is trying to hit a pinata in front of her. She,walks back and gives the stick to a woman.,does several flips and releases.,is going on front.,\"does a little claus, trying to turn her head out of the wire.\",lets go of the pinata and puts the girl down on one of her knees.,gold1-orig,pos,unl,unl,unl,unl,She is trying to hit a pinata in front of her.,She\nlsmdc0017_Pianist-56192,17973,\"Enraged, someone grabs him by the hair and presses his head hard between his thighs and then beats him mercilessly. After a dozen or so strokes, someone\",falls forward and lies in the dirt.,grabs his jacket viciously and drops the zipper on the swings.,drills the boy inside the stiff bucket onto the floor.,\"falls into the ballroom, bouncing up and down in a heap.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Enraged, someone grabs him by the hair and presses his head hard between his thighs and then beats him mercilessly.\",\"After a dozen or so strokes, someone\"\nanetv_NOXPH0_y4Ww,7536,\"The girl starts walking an sit in fronts of a counter with a bowl of fruits and talk to the camera, walks again in the kitchen and keep aqueezing lemons in the water bowl, woman starts helping her. woman clean her hands in the sink and the girl\",walks in the kitchen and keep squeezing the lemons.,shakes and cleans up the green and pours water.,is scrubbing her side with a towel.,unclasps her hands and puts them in her mouth.,took off a plate and go to cleaning the sink.,gold0-orig,pos,unl,unl,unl,pos,\"The girl starts walking an sit in fronts of a counter with a bowl of fruits and talk to the camera, walks again in the kitchen and keep aqueezing lemons in the water bowl, woman starts helping her.\",woman clean her hands in the sink and the girl\nanetv_NOXPH0_y4Ww,7535,Lttle girl suck her finger and smile while a woman walks throug kitchen and puts something in the counter. little girl,is standing in the kitchen with her mouth open and play with her hair.,looks into the pockets and wipes her face and scrubs it off with a towel.,is sitting in a booth in a sink.,is walking in a little cooler talking to the camera in a kitchen where she dishes.,goes into a a glass booth.,gold0-orig,pos,unl,unl,unl,unl,Lttle girl suck her finger and smile while a woman walks throug kitchen and puts something in the counter.,little girl\nlsmdc3006_A_GOOD_DAY_TO_DIE_HARD-3138,11732,Someone plucks a piece of glass from the wound in his knee. Someone,\"stares thoughtfully ahead, his young face caked with blood.\",leaps his hand.,dives under the hoop and lands neatly in a reverentially halloween mask.,'s head flies back over someone's head and someone signals to him with a gun.,stands by a campfire.,gold1-orig,pos,unl,unl,pos,pos,Someone plucks a piece of glass from the wound in his knee.,Someone\nanetv_Y1f_NXMfD98,3497,\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog begins to walk away. The women then\",has to grab the dog and hold him to finish her task.,kicks him back and help well as a person dressed in an orange shirt is standing behind him.,move at the bar over and over again with the trainer going on to show more of the exercise.,relax and flip in the air.,,gold0-orig,pos,unl,unl,unl,n/a,\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog begins to walk away.\",The women then\nanetv_Y1f_NXMfD98,3498,\"The women then has to grab the dog and hold him to finish her task. Once complete, she\",takes the hair out of the vacuum and dumps it into a big black trash bag.,\"lays down on the ground and bends back casually with the dolls, but she grabs the bush and begins braiding the hair.\",\"makes two swift brushes and slides down the container of the woman, rubs into the ground and clips her hair.\",shakes her hand to the camera and brushes the woman's hair.,,gold0-orig,pos,unl,unl,unl,n/a,The women then has to grab the dog and hold him to finish her task.,\"Once complete, she\"\nanetv_Y1f_NXMfD98,3496,\"A black and brown down is standing up against the wall as a person moves a vacuum like machine back and forth over his fur. After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog\",begins to walk away.,reaches on top of the man as the person's hand walks on.,keeps all the more and hits the part of the board with the paint.,jumps in the first position while very nervous and fly around.,has a rider to breathe.,gold0-orig,pos,unl,unl,unl,unl,A black and brown down is standing up against the wall as a person moves a vacuum like machine back and forth over his fur.,\"After his back is done, the person does the legs then lifts his tail up and does the but hole and the dog\"\nanetv_U8m-9nmAfGU,16074,The guy moves closer to the edge. Two men,places hooks on the guy.,\"push with their backs up, now at sister who struggles in between the two rocks and slow to a halt, looking straight up\",are wearing boxing gloves and performing sharpened gestures within a machine into the middle.,stand in a circle together in microphones.,pull onto the hardwood floor of the first room where the guy puts his metal hand on the singer.,gold0-orig,pos,unl,unl,unl,unl,The guy moves closer to the edge.,Two men\nanetv_U8m-9nmAfGU,16073,A person fixes a strap on a guy. The guy,moves closer to the edge.,removes two cats bolt from the floor.,picks up a straw and lifts it up.,points to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,A person fixes a strap on a guy.,The guy\nanetv_U8m-9nmAfGU,16075,A man release a rope. The guy,jumps of the edge or bungee jumps.,runs her hand on the front backs to turn a cup at him.,is wearing red foil and long blue wrapping paper.,balances on a needle in a drill drill.,ties ice up and shows a lips.,gold1-reannot,pos,unl,unl,unl,unl,A man release a rope.,The guy\nlsmdc1035_The_Adjustment_Bureau-85702,12317,\"He follows a covered walkway alongside a commercially refurbished warehouse. Finding a studio door chain - locked, he\",makes a call on his cell.,turns and starts to stride out of the front bedroom.,makes his way around the wide road.,climbs the way to the stairs.,leads someone out of sight.,gold0-orig,pos,unl,pos,pos,pos,He follows a covered walkway alongside a commercially refurbished warehouse.,\"Finding a studio door chain - locked, he\"\nlsmdc1035_The_Adjustment_Bureau-85702,12344,They enter a wood paneled room through a door framed in green marble. The wall,suggests an octagonal perimeter.,slides out of the room.,\"clears from the main pedestal, which reaches out from the ceiling.\",shows a young neon in the background's light red glow.,shows the arena on a purple and gold shooting field.,gold0-orig,pos,unl,unl,unl,unl,They enter a wood paneled room through a door framed in green marble.,The wall\nlsmdc1035_The_Adjustment_Bureau-85702,12326,\"As the cabbie waves and slows, a sedan crashes into his passenger side. Someone\",runs over to the damaged cars.,notices a bulky ring of cheese on a seafront junk.,transfers it the boat to his seat where the wheel reads but so that one of the brakes already fallen open.,waves back to someone.,\"backs wildly, looking around in shock.\",gold0-orig,pos,unl,unl,unl,unl,\"As the cabbie waves and slows, a sedan crashes into his passenger side.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12339,She partners with a man who holds her waist in one hand. Someone,\"balances on one foot, bends over, and briefly flutters her other foot high behind her.\",smiles for fun while she stands at the audience letters.,messes with the carnival's hair.,lets him take a high bar.,,gold0-orig,pos,unl,unl,unl,n/a,She partners with a man who holds her waist in one hand.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12343,\"Later, he stands before double doors marked someone. They\",enter a wood paneled room through a door framed in green marble.,stand on the roof.,are full of mice in china.,respond from the kind of lie.,\"bursts out, grabbing his phone and pulling a phone from his ear.\",gold0-orig,pos,unl,unl,unl,pos,\"Later, he stands before double doors marked someone.\",They\nlsmdc1035_The_Adjustment_Bureau-85702,12348,\"As they stroll through a park in the early evening, someone throws her head back and laughs. Now, in the Adjustment Bureau reading room, someone\",finds someone studying at one of the large tables.,\"sits on a sitting and stands chatting, smiling as she works on the model.\",prepares a flight of stairs.,sits on a pool chair watching her smitten date.,\"trots through a small, silent office.\",gold0-orig,pos,unl,unl,unl,pos,\"As they stroll through a park in the early evening, someone throws her head back and laughs.\",\"Now, in the Adjustment Bureau reading room, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12327,Someone runs over to the damaged cars. Someone,checks on the other driver.,turns to someone's mom.,gets out from his bike.,peers through his scope.,shoves to his suv and switches on his headlights.,gold0-orig,pos,unl,unl,unl,unl,Someone runs over to the damaged cars.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12316,Someone rides aboard it as the skipper pilots it to the pier. Someone,hurries onto the platform and up some stairs.,\"see upright, jolting the ship, for the long row.\",\"jumps, narrowly missing the stage.\",steps aboard the missile and arriving at the factory.,clings to the boat in hot pursuit.,gold0-orig,pos,unl,unl,unl,pos,Someone rides aboard it as the skipper pilots it to the pier.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12335,\"They race up the steps of a townhouse. As someone's cab cruises through another intersection, the Bureau officers\",run through an art gallery bumping a bystander.,find it empty on the road and retrieve their guns.,grab someone and grab him.,throws a third ball out the window window catching it.,pull out past someone's name.,gold1-orig,pos,unl,unl,unl,unl,They race up the steps of a townhouse.,\"As someone's cab cruises through another intersection, the Bureau officers\"\nlsmdc1035_The_Adjustment_Bureau-85702,12308,Someone takes the podium before a crowd of hundreds. The gathering,overlooks the east river.,mill in the intricate positions of work.,is among waving instruments and crew.,applauds the real audience.,starts at the saleswoman.,gold1-orig,pos,pos,pos,pos,pos,Someone takes the podium before a crowd of hundreds.,The gathering\nlsmdc1035_The_Adjustment_Bureau-85702,12347,\"Meanwhile, people walk together. As they stroll through a park in the early evening, someone\",throws her head back and laughs.,puts on a piece of luggage.,comes with someone outside the house.,rises from a chair and watches her performance.,joins someone boldly on a scooter.,gold0-orig,pos,unl,unl,unl,pos,\"Meanwhile, people walk together.\",\"As they stroll through a park in the early evening, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12338,He makes eye contact with someone. The boyish aide,hands him a cellphone.,comes up outside into the tunnel.,steps up and ushers her down the hall.,enters holding another piece of clothing.,arrives at a neighborhood.,gold1-orig,pos,unl,unl,unl,unl,He makes eye contact with someone.,The boyish aide\nlsmdc1035_The_Adjustment_Bureau-85702,12321,The boyish aide checks his book. The Adjustment officers,watch someone stride briskly outside.,shifts his contemplative gaze.,hands him a key.,takes someone into his office.,\"hurries after him, then glares.\",gold1-orig,pos,unl,unl,unl,pos,The boyish aide checks his book.,The Adjustment officers\nlsmdc1035_The_Adjustment_Bureau-85702,12324,\"Someone and his aide swap a thoughtful look. In his dress shoes, someone\",sprints after a cab.,tend to her apartment.,slips out of the ring.,takes a calming puff and exhales.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and his aide swap a thoughtful look.,\"In his dress shoes, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12311,\"Someone peers across the river to Pier 17. In a quaint eclectic apartment, someone\",puts on a hoodie and picks up her cell.,totes out the painting.,shows a telegram titled a label.,leans on someone's side.,,gold0-orig,pos,unl,unl,unl,n/a,Someone peers across the river to Pier 17.,\"In a quaint eclectic apartment, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12310,We just moved the rehearsal back to Cedar Lake. Someone,peers across the river to pier 17.,\"huddle up, continue up suggestively, and talk to one another or do.\",sits in a chair.,looks up from her shot table.,puts some rocks beneath her fall.,gold0-orig,pos,unl,unl,unl,unl,We just moved the rehearsal back to Cedar Lake.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12307,Someone exits a Town Car and shakes many hands. Someone,takes the podium before a crowd of hundreds.,swings the kid on his guard's pole.,sits with him.,\"races into a street, lined with photographers.\",starts toward a house.,gold0-orig,pos,unl,pos,pos,pos,Someone exits a Town Car and shakes many hands.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12346,They enter a records archive. They,stop by a reference desk.,pass a lake's palace outside.,swim around and find the shaving cream.,face off in the water.,,gold0-orig,pos,unl,unl,unl,n/a,They enter a records archive.,They\nlsmdc1035_The_Adjustment_Bureau-85702,12328,Someone goes to another cop. The rebuffed cop,\"looks to someone, then walks away.\",hops across someone's leg.,\"goes off, stumbling towards the others.\",\"opens the front door, someone gets in the car.\",\"looks at him, then at someone.\",gold1-orig,pos,unl,pos,pos,pos,Someone goes to another cop.,The rebuffed cop\nlsmdc1035_The_Adjustment_Bureau-85702,12331,\"Someone strides off, leaving an ambulance and a squad car behind. He\",\"checks his watch, takes a few more brisk steps, then breaks into a run.\",\"peer through a dark house, as the grief - stricken thug runs.\",leans back into an ice car as he arrives beside someone.,sees a man walking alongside of the vehicle house.,someone greets a couple with someone.,gold0-orig,pos,unl,unl,pos,pos,\"Someone strides off, leaving an ambulance and a squad car behind.\",He\nlsmdc1035_The_Adjustment_Bureau-85702,12345,The wall suggests an octagonal perimeter. They,enter a records archive.,stand arming the tree.,run in dainty - roller and bounce together.,rams into the wall.,watch someone lower the tarpaulin.,gold1-orig,unl,unl,unl,unl,unl,The wall suggests an octagonal perimeter.,They\nlsmdc1035_The_Adjustment_Bureau-85702,12332,\"He checks his watch, takes a few more brisk steps, then breaks into a run. As they near a traffic light, it\",changes from green to red.,falls into a grimy carousel beneath it.,soars through the air for someone.,lands on a camper's skylight which falls off below the waters below.,stops towards the buzz hanging from the window.,gold0-orig,pos,unl,unl,unl,unl,\"He checks his watch, takes a few more brisk steps, then breaks into a run.\",\"As they near a traffic light, it\"\nlsmdc1035_The_Adjustment_Bureau-85702,12320,\"The officers follow someone in the map book. Now, someone\",\"rounds a corner, coming face to face with the two officers.\",clutches a slip of paper.,\"leads someone to the hallway of a dark, collared chamber.\",marches outside the underground hall where the red iraqi family stories covering the floor from deserted baseboards.,is crossing a network of wires between someone and someone.,gold0-orig,pos,unl,unl,unl,unl,The officers follow someone in the map book.,\"Now, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12325,\"In his dress shoes, someone sprints after a cab. As the cabbie waves and slows, a sedan\",crashes into his passenger side.,pulls up to a set of curb.,passes in the right driver's window.,crosses the other end of a sidewalk.,stops on a sidewalk and looks out a window.,gold0-orig,pos,unl,unl,unl,unl,\"In his dress shoes, someone sprints after a cab.\",\"As the cabbie waves and slows, a sedan\"\nlsmdc1035_The_Adjustment_Bureau-85702,12322,\"The Adjustment officers watch someone stride briskly outside. Now, someone\",stands by the curb and hails an approaching cab.,sits alone at a square lincoln highway above an orange booth.,sidles across the veranda lit observatory.,rolls a bandage out from the man's mouth.,,gold0-orig,pos,unl,unl,unl,n/a,The Adjustment officers watch someone stride briskly outside.,\"Now, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12340,\"Someone balances on one foot, bends over, and briefly flutters her other foot high behind her. As the male dancer dips in a far stepping lunge, someone\",rolls fluidly over his back.,turns off the camera's edge and bows.,flips her leg back on the uneven beam.,\"grabs it from someone's parachute, leading him on the way to more ground.\",mounts the overhead beam and raises his arms above his head.,gold0-orig,pos,unl,unl,unl,pos,\"Someone balances on one foot, bends over, and briefly flutters her other foot high behind her.\",\"As the male dancer dips in a far stepping lunge, someone\"\nlsmdc1035_The_Adjustment_Bureau-85702,12315,\"Now, a large water taxi crosses the river. Someone\",rides aboard it as the skipper pilots it to the pier.,rises and stairs on a thick six feet.,\"follows the kitchen, shaken to her own, sits down.\",rubs someone's shoulder against a bus by the rear of the plane.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now, a large water taxi crosses the river.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12323,A mini - van taxi ignores him. Someone,\"jogs out into the opposite lane, waving high for another cab that passes him up.\",hands her the book card.,notices vehicles carrying dollar markers.,turns into an suv.,,gold0-orig,pos,unl,unl,unl,n/a,A mini - van taxi ignores him.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12330,\"They both look aside, but find no one. Someone\",\"strides off, leaving an ambulance and a squad car behind.\",\"gets in the car, holding the tv behind him.\",nods to someone as they walk down the street.,stands by the key with the weapons ready.,,gold1-orig,pos,unl,pos,pos,n/a,\"They both look aside, but find no one.\",Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12313,Someone spies someone in a window. Both Adjustment officers,duck out of sight.,dangle over the hotel.,stand with their hands round their partners.,follow someone down the hallway.,stroll up to the burnham's door.,gold0-orig,pos,unl,pos,pos,pos,Someone spies someone in a window.,Both Adjustment officers\nlsmdc1035_The_Adjustment_Bureau-85702,12336,\"As someone's cab cruises through another intersection, the Bureau officers run through an art gallery bumping a bystander. Heading outside, they\",see someone exit the cab and enter a building.,run down to remove a route highway.,jump and rotate among the trees.,eye a brick of paint the doors of the house through the glass.,exit the storage area with guns like jungle and ammunition.,gold0-orig,pos,unl,unl,unl,unl,\"As someone's cab cruises through another intersection, the Bureau officers run through an art gallery bumping a bystander.\",\"Heading outside, they\"\nlsmdc1035_The_Adjustment_Bureau-85702,12341,\"He pulls open a brass lobby door, and disappears into a midcentury high - rise, its window's number in the hundreds ascending into the sky, story after story after story. Inside, he\",\"crosses a huge marble lobby striped with shadows, then plods up a dark staircase.\",\"strolls the street outside the shop, which returns open and offers the tray of bottles.\",\"lies motionless on the floor and stares down at the dark from below, stifling tears from his horror.\",transfers his ankles to the device as the train doors open.,,gold0-orig,pos,unl,unl,unl,n/a,\"He pulls open a brass lobby door, and disappears into a midcentury high - rise, its window's number in the hundreds ascending into the sky, story after story after story.\",\"Inside, he\"\nlsmdc1035_The_Adjustment_Bureau-85702,12342,\"Inside, he crosses a huge marble lobby striped with shadows, then plods up a dark staircase. Later, he\",stands before double doors marked someone.,opens his plan office.,steps to an elevator and glares at a vengeful woman on a bookshelf.,presents his colorful computerized partner settings while he stares into a half title suit.,\"sets off the work, and modern luggage.\",gold1-orig,pos,unl,unl,unl,unl,\"Inside, he crosses a huge marble lobby striped with shadows, then plods up a dark staircase.\",\"Later, he\"\nlsmdc1035_The_Adjustment_Bureau-85702,12333,Someone sees someone and his aide emerge from a door. The taxi,leaves the adjustment bureau servants behind.,goes through the town stone as the magical cloud's flames rise higher.,\"moves up a hospital hall, so the blowtorch has fallen.\",pulls up and a pistol - waits chief still slams.,nerd flails his arms around and crosses his chair to face him.,gold0-reannot,pos,unl,unl,unl,unl,Someone sees someone and his aide emerge from a door.,The taxi\nlsmdc1035_The_Adjustment_Bureau-85702,12306,His interjection prevents the kiss. Someone,\"nods amiably, then gives someone a long kiss on the cheek.\",to the back exchange.,continues to the shower curtain.,kicked the limo over.,,gold0-reannot,pos,unl,unl,unl,n/a,His interjection prevents the kiss.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12312,Someone's senate race gathering wraps up. Someone,spies someone in a window.,wiggles the boys as night runs.,puts a jacket onto another's thick backpack.,speeds over on the bridge.,watches them disappear through the first window.,gold0-reannot,pos,unl,unl,pos,pos,Someone's senate race gathering wraps up.,Someone\nlsmdc1035_The_Adjustment_Bureau-85702,12329,\"The rebuffed cop looks to someone, then walks away. They both\",\"look aside, but find no one.\",walk into the kitchen and slap someone's arm together.,go to and rain for a beat.,stare up at a metal computer.,head into the car and back to their car.,gold1-reannot,pos,unl,unl,unl,pos,\"The rebuffed cop looks to someone, then walks away.\",They both\nlsmdc1035_The_Adjustment_Bureau-85702,12309,Someone's aide gets a text. We just,moved the rehearsal back to cedar lake.,make the scuff mark on the car.,see the girl someone.,wait to find an opening up.,\"see her, and hear around excitedly.\",gold0-reannot,pos,unl,unl,unl,unl,Someone's aide gets a text.,We just\nanetv_jDeBuorU4hY,3027,\"Lights are on on a hockey court, disks are on the floor and players are watching them. men\",starts playing on the court trying to score.,are standing on the court holding a ball.,kneel on the floor of a room.,are twirling a ball in a studio.,,gold0-orig,pos,unl,unl,unl,n/a,\"Lights are on on a hockey court, disks are on the floor and players are watching them.\",men\nanetv_jDeBuorU4hY,4439,The interior of an ice rink is shown. It,is shown from several angles with silhouettes.,ends with the goalie hitting the ball over water at the goalie.,lies on the ground.,licks the ice cream cone as he pushes his teeth.,bears the children's attention.,gold0-orig,pos,unl,unl,unl,unl,The interior of an ice rink is shown.,It\nanetv_jDeBuorU4hY,4440,It is shown from several angles with silhouettes. People,are shown gathered to play a game of curling.,\"walk in slow motion, then in motion the people getting ready for truck.\",measure the distance of a person doing an arm throw.,\"appear, in between shots of the shark.\",,gold0-orig,pos,unl,pos,pos,n/a,It is shown from several angles with silhouettes.,People\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17187,He pushes himself back and forth along a porch in his wheelchair. An elderly resident,\"wedges his walking stick between someone's wooden spokes, stopping him.\",pulls himself up from a balcony and climbs over the door.,\"walks into someone's building, sits down with a mustachioed man.\",remains awkwardly across from the picnic table to reveal the appearance of his father.,crawls up to him.,gold1-orig,pos,unl,unl,unl,unl,He pushes himself back and forth along a porch in his wheelchair.,An elderly resident\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17186,\"He wears round glasses and has wispy, white hair around the sides of his shiny, bald head. He\",pushes himself back and forth along a porch in his wheelchair.,\"passes by the counter, leaning against the rocking railing with its legs spinning between his arms and chest.\",\"picks it up on top of a tree, and catches it.\",\"passes over a passing bench beyond, passing a few paces under the trees.\",,gold0-orig,pos,unl,unl,unl,n/a,\"He wears round glasses and has wispy, white hair around the sides of his shiny, bald head.\",He\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17184,\"As a child, someone resembles a bald, old man. At a dining table, someone\",uses an ear trumpet.,arrives at the kitchen table.,scans the clerks at the stylists.,sits at the stereo orchid and pushes her phone strings.,swipes open old book.,gold0-orig,unl,unl,unl,unl,pos,\"As a child, someone resembles a bald, old man.\",\"At a dining table, someone\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17188,\"An elderly resident wedges his walking stick between someone's wooden spokes, stopping him. The old man retracts the stick, and someone\",\"wheels himself to the top of the front steps, where he watches children playing in the street.\",crawls into the seventh floor.,\"sinks to the ground, wearing a pair of black leather gloves.\",falls to the floor.,,gold1-orig,pos,unl,unl,pos,n/a,\"An elderly resident wedges his walking stick between someone's wooden spokes, stopping him.\",\"The old man retracts the stick, and someone\"\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17189,\"The old man retracts the stick, and someone wheels himself to the top of the front steps, where he watches children playing in the street. His wheels\",draw closer to the top step.,move on someone who climbs in a trash bin.,turn violently at a speed down a narrow river.,pulls up as the apartment commences.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The old man retracts the stick, and someone wheels himself to the top of the front steps, where he watches children playing in the street.\",His wheels\nlsmdc1037_The_Curious_Case_Of_Benjamin_Button-86268,17185,\"At a dining table, someone uses an ear trumpet. He\",\"wears round glasses and has wispy, white hair around the sides of his shiny, bald head.\",furiously at his faces.,adds a soda to a star then sets down a box.,sleeps wrapped in a blanket.,takes a drag off a cigarette.,gold0-reannot,pos,unl,unl,unl,pos,\"At a dining table, someone uses an ear trumpet.\",He\nanetv_zmaDLAZu4kA,5406,A cowboy rides his horse out of a gate. He,ropes a calf with a lasso.,swings onto the back where a guy is riding the pommel horse.,lassos a calf at the pole and rolls it away.,stands in front of the horse bar and turns to another cow.,,gold0-orig,pos,unl,unl,unl,n/a,A cowboy rides his horse out of a gate.,He\nanetv_zmaDLAZu4kA,11979,\"There's a man in a white shirt and hat riding a horse in a large stable, chasing a calf to catch it by a rope. The man\",begins chasing the calf on horseback as the calf runs fast.,help the horse and knocks him over with the horse twice as he finishes and ties it to the other side.,\"is then seen running into the middle of the field, throwing dirt into the pit repeatedly.\",\"runs for the handle, continues to teach a horse to catch jumps on the horse.\",speaks to the camera about horse facility and ends by walking on his horse.,gold0-orig,pos,unl,unl,unl,unl,\"There's a man in a white shirt and hat riding a horse in a large stable, chasing a calf to catch it by a rope.\",The man\nanetv_zmaDLAZu4kA,5407,He ropes a calf with a lasso. He,\"dismounts, tying the calf and getting back on his horse.\",throw it back to the school band.,pulls a rope for the calf which he uses.,moves back and forth as he makes his way along the hedge.,grabs the cow and holds it up into the air.,gold0-reannot,pos,unl,unl,unl,unl,He ropes a calf with a lasso.,He\nlsmdc1005_Signs-4876,5827,The shadow under the pantry door stops moving. Someone,\"eyes the door anxiously, then, swallows.\",watches skeptically as he tries a pound of the soggy bottom.,walks up to the window and looks up.,does n't acknowledge her.,\"frowns, tension still thrashing around them.\",gold0-orig,pos,unl,unl,unl,unl,The shadow under the pantry door stops moving.,Someone\nlsmdc1005_Signs-4876,5833,\"Glancing up, he reaches forward and positions the knife at a downward sloping angle at the base of the door. Someone\",withdraws the knife and puts it down on the floor beside him.,gets up from her purse.,wears down and thanks him across the face.,lowers his own hand.,leads the way downstairs.,gold0-orig,pos,unl,unl,pos,pos,\"Glancing up, he reaches forward and positions the knife at a downward sloping angle at the base of the door.\",Someone\nlsmdc1005_Signs-4876,5844,\"He stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats. Without flinching, someone\",turns stiffly and goes to sit on the stairs.,walks to the bar and turns to her mother.,dabs someone's penis.,draws his wife photo of one of someone.,comes up to them.,gold1-orig,pos,unl,unl,unl,unl,\"He stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats.\",\"Without flinching, someone\"\nlsmdc1005_Signs-4876,5845,\"Without flinching, someone turns stiffly and goes to sit on the stairs. Someone\",sits still with his hands on his knees.,is striding through.,stumbles out of the test chair and inspects the rest of the manuscript.,walks toward the kitchen door.,\"is cooking food, food, hors, stunning, etc.\",gold0-orig,pos,unl,unl,unl,unl,\"Without flinching, someone turns stiffly and goes to sit on the stairs.\",Someone\nlsmdc1005_Signs-4876,5840,\"Startled, someone bangs his head and drops the knife. Retrieving the knife, someone\",slices off the creature's fingers.,steps forward and knocks the observation off out of the window.,slashes his knife and brings it back.,yanks himself up from his grasp and smashes its table.,,gold0-orig,pos,unl,unl,unl,n/a,\"Startled, someone bangs his head and drops the knife.\",\"Retrieving the knife, someone\"\nlsmdc1005_Signs-4876,5831,\"Someone contemplates the knife for a moment the reaches out and grabs it. Holding the knife at belly level, he\",twists the long wide blade until he is looking at his own reflection in the polished steel.,passes in cautious look.,hastily removes the workroom.,turns the wheel of a pan and moves to the other side of the structure.,takes a pair of guns and hands it to someone.,gold0-orig,pos,unl,unl,unl,pos,Someone contemplates the knife for a moment the reaches out and grabs it.,\"Holding the knife at belly level, he\"\nlsmdc1005_Signs-4876,5846,Someone sits still with his hands on his knees. Someone,links his hands together.,continues playing the song and looking at someone.,kicks out the kitchen door and crosses his arms.,leans into the bathroom mirror.,raises his fingers and washes his head.,gold1-orig,pos,unl,unl,unl,unl,Someone sits still with his hands on his knees.,Someone\nlsmdc1005_Signs-4876,5820,\"The camera focuses on tall bench bushes at the back of the yard, then, returns to the interior. It\",follows the children as they swarm to another window.,shows a walked through the burning house.,seats next door for someone.,lands on the grass.,has a deep archway with the low roar of kindling as the fog of the surrounding roves.,gold0-orig,pos,unl,unl,unl,unl,\"The camera focuses on tall bench bushes at the back of the yard, then, returns to the interior.\",It\nlsmdc1005_Signs-4876,5821,A boy looks out on a narrow passageway. The camera,focuses on the passage.,moves as a brunette emerges from the hallway over someone.,\"returns to climb the stairs, not at all.\",zooms into a black photo.,pans down to the jungle.,gold0-orig,pos,unl,unl,unl,unl,A boy looks out on a narrow passageway.,The camera\nlsmdc1005_Signs-4876,5835,\"Then frustrating himself on his belly, he makes to look under the door again. Having second thoughts, he\",grabs the knife and kneels up.,opens it and makes his way to the door.,removes his sunglasses and whips them around.,searches into the command station.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then frustrating himself on his belly, he makes to look under the door again.\",\"Having second thoughts, he\"\nlsmdc1005_Signs-4876,5824,\"He steps timidly into the room, where chairs lie turned on the floor and the tables being wedged against the door leading into the pantry. A shadow\",passes under the door as someone treads hesitantly towards it.,is repeated at the same of the apartment and the whole area is shadowy.,\"falls across a stone floor, held low by someone.\",is in this frame as the boy then paints a face of dust and stares whimpering up the wood.,is missing in the moment when someone looks around created's 8 books.,gold0-orig,pos,unl,unl,unl,unl,\"He steps timidly into the room, where chairs lie turned on the floor and the tables being wedged against the door leading into the pantry.\",A shadow\nlsmdc1005_Signs-4876,5828,\"Then, with his head turned wearily to one side, and ticked defensively back a little drops delicately to a kneeling position. He\",finds nothing but shards of glass.,looks over a sick magic book.,sprays the maize into the clear gloomy sky across the beach and around the town functions.,continues talking to the mirror and begins braiding the fabric shoes.,scans edelweiss's outstretched arms.,gold1-orig,pos,unl,unl,unl,unl,\"Then, with his head turned wearily to one side, and ticked defensively back a little drops delicately to a kneeling position.\",He\nlsmdc1005_Signs-4876,5837,\"He rises to his feet and head bowed strides determinedly out into the hallway. Stopping in his tracks, someone\",\"turns and marches back in, seizing the knife.\",watches his father on the doorway behind him.,bares his grits teeth and his lips wide wide.,clutches the whistle between his fingers as he takes the long drink of whiskey.,spots the sound of the approaching police.,gold0-orig,pos,unl,unl,unl,pos,He rises to his feet and head bowed strides determinedly out into the hallway.,\"Stopping in his tracks, someone\"\nlsmdc1005_Signs-4876,5838,\"Stopping in his tracks, someone turns and marches back in, seizing the knife. He\",lies on his stomach by the pantry door.,descends one corridors then turns and launches himself into a long row.,\"arrives at the bar, lifting the legs of people.\",takes it in the light of his torch and hands it back to normal.,sinks to his knees.,gold1-orig,pos,unl,unl,unl,pos,\"Stopping in his tracks, someone turns and marches back in, seizing the knife.\",He\nlsmdc1005_Signs-4876,5841,\"Retrieving the knife, someone slices off the creature's fingers. Later, someone\",returns to the farm house.,stirs in the egg.,spoons the knife away.,tosses a sneering creature.,,gold1-orig,pos,unl,unl,pos,n/a,\"Retrieving the knife, someone slices off the creature's fingers.\",\"Later, someone\"\nlsmdc1005_Signs-4876,5839,\"He lies on his stomach by the pantry door. Startled, someone\",bangs his head and drops the knife.,freezes and eyes his head toward someone.,finds a toy popping from the bottom.,forces himself to keep his eyes on the walls.,goes in the doorway to the bedroom.,gold1-orig,pos,unl,unl,unl,pos,He lies on his stomach by the pantry door.,\"Startled, someone\"\nlsmdc1005_Signs-4876,5825,A shadow passes under the door as someone treads hesitantly towards it. The movement,is then accompanied by a sound.,shows the other two outside and someone's back on his face.,writhes under the surface.,reflects the three graves.,stays bathed by moonlight.,gold0-orig,pos,unl,unl,unl,unl,A shadow passes under the door as someone treads hesitantly towards it.,The movement\nlsmdc1005_Signs-4876,5818,\"Someone moves his chair right up to the television, and watches the cam coder footage of his hysterical young children inside the house. The kids\",\"gathered by french windows and point to the backyard, where tables laden with party food lie abandoned.\",try to carry his luggage out.,squeeze through the wave of frost and hold each other as a bowl.,\"sit at his cubicle, switching hands.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone moves his chair right up to the television, and watches the cam coder footage of his hysterical young children inside the house.\",The kids\nlsmdc1005_Signs-4876,5823,\"Someone recoils, cupping a hand to his face in shock as he backs away from the tv. Someone\",sits back down in front of the tv and watches mouth gaping as the picture freezes on the creature.,push in his glasses with the stripes that falls on someone's arm and gently straightens someone's arm and hugs him close.,lies across his chest.,watches someone disappear into the bathroom.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone recoils, cupping a hand to his face in shock as he backs away from the tv.\",Someone\nlsmdc1005_Signs-4876,5842,\"Later, someone returns to the farm house. Locking the door behind him, he hurriedly checks the handle, then,\",walks off past the open living room door.,goes to the door and picks up the car.,\"sees a pair of steps, passes through.\",gets out his car and speeds after it.,,gold0-orig,pos,unl,unl,unl,n/a,\"Later, someone returns to the farm house.\",\"Locking the door behind him, he hurriedly checks the handle, then,\"\nlsmdc1005_Signs-4876,5829,He finds nothing but shards of glass. He,\"spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife.\",pushes someone between two doors and sinks towards the inside.,\"carries the boat, someone.\",returns his muddy eyes to the goateed executive.,,gold0-orig,pos,unl,unl,unl,n/a,He finds nothing but shards of glass.,He\nlsmdc1005_Signs-4876,5832,\"Holding the knife at belly level, he twists the long wide blade until he is looking at his own reflection in the polished steel. Glancing up, he\",reaches forward and positions the knife at a downward sloping angle at the base of the door.,\"shows the muzzle of the gun jutting from his wrist, taking it from the hand.\",flexes his knife and loops the cord through the handle.,takes out the grimhold.,\"sits on the ground, steps under the cross and hugs his father's arms open.\",gold0-reannot,pos,unl,unl,unl,unl,\"Holding the knife at belly level, he twists the long wide blade until he is looking at his own reflection in the polished steel.\",\"Glancing up, he\"\nlsmdc1005_Signs-4876,5843,\"Locking the door behind him, he hurriedly checks the handle, then, walks off past the open living room door. He\",\"stops dead and stares, seeing people and now someone on the sofa wearing silver foil cone hats.\",grabs a piece of ticker from its shelf.,\"limps across the room, picks up the march, and, still precisely, aims his gun at either side of her.\",\"runs in, his candle soaking dark.\",selects china into the apartment.,gold0-reannot,pos,unl,unl,unl,unl,\"Locking the door behind him, he hurriedly checks the handle, then, walks off past the open living room door.\",He\nlsmdc1005_Signs-4876,5822,The camera focuses on the passage. Someone,\"recoils, cupping a hand to his face in shock as he backs away from the tv.\",knocks three men out.,closes the door and resumes the ballet.,is tiny halfway down the staircase.,\"appears around him, then plays the piano.\",gold0-reannot,pos,unl,unl,unl,unl,The camera focuses on the passage.,Someone\nlsmdc1005_Signs-4876,5830,\"He spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife. Someone\",contemplates the knife for a moment the reaches out and grabs it.,orange potatoes have dropped in a large mess.,is changing out of the car.,appears on the screen.,sets them against a make - up.,gold0-reannot,pos,unl,unl,unl,unl,\"He spots some chopped vegetables sitting on a work top and lying next to them, a large kitchen knife.\",Someone\nlsmdc1005_Signs-4876,5836,\"Having second thoughts, he grabs the knife and kneels up. He\",rises to his feet and head bowed strides determinedly out into the hallway.,is licking his lips because it is a vast effort for him to come far.,stretches his way to his forehead.,barges into the dark.,'s team hold him.,gold1-reannot,pos,unl,unl,unl,unl,\"Having second thoughts, he grabs the knife and kneels up.\",He\nanetv_V2ltLccVh_Q,7056,Several shots are shown of paintball gear as well as a man smoking a cigarette. This,leads into people playing paintball with one another and running around.,is shown followed by people sitting on a chair speaking to him.,man speaks to play with text with other customers.,people speak to the camera as well as the men playing sunscreen and ends with a cigarette.,showing groups holding up safety gear shooting gear by people.,gold1-orig,pos,unl,unl,unl,pos,Several shots are shown of paintball gear as well as a man smoking a cigarette.,This\nanetv_V2ltLccVh_Q,7057,This leads into people playing paintball with one another and running around. More shots,are shown of people playing and speaking to one another.,are shown of several people riding along a rope and waving to one another.,are shown of people riding on the ice close together.,are shown of people spinning after catching a ball and jumping after it in slow motion.,are shown of people playing volleyball with one another.,gold0-reannot,pos,unl,unl,unl,unl,This leads into people playing paintball with one another and running around.,More shots\nanetv_srXhWAGzd-s,2981,He spray paints parts of the car. He,sprays cleaner on the inside and outside of the car.,swings the gun slowly.,shows a piece of the product.,starts to take the front tire.,,gold0-orig,pos,unl,pos,pos,n/a,He spray paints parts of the car.,He\nanetv_srXhWAGzd-s,2982,He sprays cleaner on the inside and outside of the car. He,wipes down all surfaces from inside and outside the car.,continues to take to the floor rug until he stops.,shows us the image and a rock painting.,cleans off the sponge and continues wiping it to the side.,shovels on the tile and smell it all the time.,gold0-orig,pos,unl,unl,unl,unl,He sprays cleaner on the inside and outside of the car.,He\nanetv_srXhWAGzd-s,2978,A person is shown cleaning off the outside of a car. The car,is then driven inside of a shop.,is taking a path away.,is then shown hanging out against the glass wall.,has not seen soapy water.,,gold0-orig,pos,unl,unl,unl,n/a,A person is shown cleaning off the outside of a car.,The car\nanetv_srXhWAGzd-s,2979,The car is then driven inside of a shop. Inside a man,starts detailing the car once again and cleaning off the outside.,is skating in front of a bowling mall.,rises at a square shop going up and down.,\"is using the sprayer sander, waxing trees.\",,gold0-orig,pos,unl,unl,unl,n/a,The car is then driven inside of a shop.,Inside a man\nanetv_pq2xsK79FcQ,14556,The Florida Gator long jumper jumps and flies through the air and lands in the sand. The camera,pans to the score board showing the long jumpers results.,focuses on showing small victory and victory.,is darting across the floor and shows a man in black steady on his feet.,changes to four people in the pool trying different stunts that they will win as they go around and run.,,gold0-orig,pos,unl,unl,pos,n/a,The Florida Gator long jumper jumps and flies through the air and lands in the sand.,The camera\nanetv_pq2xsK79FcQ,14554,\"A track and field long jumper from the Florida Gators dressed in blue and orange prepares to make his run while other participants, coaches and officials congregate around the track and field course. The Florida Gator long jumper\",begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker.,\"is in a crowd, looks.\",appears in white benefit with the javelin a flock sculpting pushed through the sand.,appears to show the players armored with other information and a several discus performances in balmoral appear in the end.,begins to a picture of himself ran off his gates and waving a flag in front of him.,gold0-orig,pos,unl,unl,unl,unl,\"A track and field long jumper from the Florida Gators dressed in blue and orange prepares to make his run while other participants, coaches and officials congregate around the track and field course.\",The Florida Gator long jumper\nanetv_pq2xsK79FcQ,14555,The Florida Gator long jumper begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker. The Florida Gator long jumper,jumps and flies through the air and lands in the sand.,is shown sucked into a large city surrounding a skyscrapers under their sustained climbs and flashing marquee up their cliffs.,\"jumps into the inflatable's triangular circle, then an number of outdoors website appear.\",appears with numbers where it has giant ice yellow sand.,begins along the screen.,gold0-reannot,pos,unl,unl,unl,pos,The Florida Gator long jumper begins his run with a gradual forward walk then a skip and a fast sprint to the sand pit jumping marker.,The Florida Gator long jumper\nlsmdc3016_CHASING_MAVERICKS-6237,7105,\"Someone stares as his wife with a furrowed brow, then concedes a small nod. Later in his shed, he\",tends to his cherry red surfboard.,deposits a letter from the quill.,peeks into the store and spots someone.,leads the girls down a crowded set of stairs.,,gold0-orig,unl,unl,unl,unl,n/a,\"Someone stares as his wife with a furrowed brow, then concedes a small nod.\",\"Later in his shed, he\"\nlsmdc3016_CHASING_MAVERICKS-6237,7108,\"Taking a break, someone thoughtfully wipes his hands off with a rag. Putting the order in, Blond\",notices someone's handiwork.,returns to the front door.,retrieves a thermometer and sighs.,takes a large bite.,gets out of the truck.,gold1-orig,pos,unl,unl,pos,pos,\"Taking a break, someone thoughtfully wipes his hands off with a rag.\",\"Putting the order in, Blond\"\nlsmdc3016_CHASING_MAVERICKS-6237,7107,\"Other boards rest in a rack at the back of the shed. Taking a break, someone\",thoughtfully wipes his hands off with a rag.,grins and gazes morosely at the surf.,holds the open locker to him.,throws her arms around his waist.,slaps someone's face.,gold0-orig,pos,unl,pos,pos,pos,Other boards rest in a rack at the back of the shed.,\"Taking a break, someone\"\nlsmdc3016_CHASING_MAVERICKS-6237,7106,\"Later in his shed, he tends to his cherry red surfboard. Other boards\",rest in a rack at the back of the shed.,hang up as someone shows their sun bulbs at an china kiosk.,skate past: people narrow seats beside the vast structure.,manage to emerge from the boat.,\"hang out in the garden, greenery and shrubs.\",gold0-orig,pos,unl,unl,unl,unl,\"Later in his shed, he tends to his cherry red surfboard.\",Other boards\nlsmdc3038_ITS_COMPLICATED-17313,4517,He points his spoon at the dish. She,drapes the cloth over her chest.,fills his drink with water and pours the contents through the glass.,smiles at the show.,\"grabs it, snags it and starts baking.\",hands him a napkin.,gold1-reannot,pos,unl,unl,unl,pos,He points his spoon at the dish.,She\nanetv_z7zj8stU-kw,10755,A boy is brushing his teeth with a pink toothbrush. He,looks at the camera and makes a face.,is brushing his teeth with his teeth.,holds up a razor to shave his teeth.,\"laughs, which gets out of the shot, happy at his flexibility.\",touches the hand to the girl's hair injury.,gold0-orig,pos,unl,unl,unl,unl,A boy is brushing his teeth with a pink toothbrush.,He\nanetv_z7zj8stU-kw,15716,A man is brushing his teeth in front of the camera. He then,rinses the pink toothbrush under sink water.,starts shaving the beard of a man with a heavy razor.,picks it up out of a brown brush and begins brushing something.,pulls an ironing board and talks about how to properly use the brush.,begins to shave his beard with a razor and lean down.,gold0-orig,pos,unl,unl,unl,unl,A man is brushing his teeth in front of the camera.,He then\nanetv_z7zj8stU-kw,10757,There is a closeup of the brush getting rinsed in the water. Then the camera,shows the floor for a second and cuts off.,pans in on his face and shows the brushing brush with a red towel.,is showing the dishes unboxing the surroundings.,\"zooms in on the boy, then the man gets angry and goes to wash the boat.\",,gold1-orig,pos,unl,unl,unl,n/a,There is a closeup of the brush getting rinsed in the water.,Then the camera\nanetv_z7zj8stU-kw,10756,He looks at the camera and makes a face. There,is a closeup of the brush getting rinsed in the water.,sits alone.,are both hard watching.,this is the different player he took from the left of the man while the video was played in several pictures.,is with him talking about something.,gold0-reannot,pos,unl,unl,unl,unl,He looks at the camera and makes a face.,There\nanetv_2rHsoF35eQw,6658,A large raft filled with people appears. The people,struggle to stay upright as they go through the rapids and over falls.,\"suffering are shown canoeing very quickly, with indistinctly of pictures and techniques.\",\"point to one team, throwing people on the river while the others watch.\",look up on and talk to the camera.,\"stand around, then begin running towards the water and rafting down water.\",gold0-orig,pos,unl,unl,pos,pos,A large raft filled with people appears.,The people\nanetv_2rHsoF35eQw,2654,People are sitting inside of a raft going over large bumps in the water. The raft tips over and the people,fall out several times.,put their feet in coat of water and climb on the raft.,go through the rapids a few times and then onto the sail.,begin to raft down the river.,begin rafting exactly below the water.,gold1-reannot,unl,unl,unl,unl,unl,People are sitting inside of a raft going over large bumps in the water.,The raft tips over and the people\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9992,\"The people are with her. Beaming, she\",takes someone's hand and heads up the steps.,starts down the bank.,poses for a group of practice outside the gym.,sashays away and looks down.,looks into the night sky.,gold0-orig,pos,unl,unl,pos,pos,The people are with her.,\"Beaming, she\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9993,\"Beaming, she takes someone's hand and heads up the steps. Inside, someone\",\"stands up, ready to receive his bride.\",folds someone's arm and holds it up with his mouth.,\"pays out and throws a glass in the door, then disappears again.\",looks on gravely as people wander through the compound.,walks up the steps to the door.,gold1-orig,pos,unl,unl,pos,pos,\"Beaming, she takes someone's hand and heads up the steps.\",\"Inside, someone\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9996,\"Someone walks down the aisle, grinning, and takes her place beside someone at the altar. The vicar\",comes to stand before them.,pours two stones into glasses and sets them in a pile.,tent glows on the tents.,sparkles all around someone's face.,leads someone over the crowd before a studio behind him watching him.,gold0-orig,pos,unl,unl,unl,pos,\"Someone walks down the aisle, grinning, and takes her place beside someone at the altar.\",The vicar\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89860,9994,\"Inside, someone stands up, ready to receive his bride. Someone\",\"appears beside him, his face taut with anger.\",\"goes over to the other trolley, places it in the red chair and starts walking back around.\",disheveled young male with neatly hair and black hair shows his close.,steps out of the window and halts slightly mad.,emerges from a glamorous new york tree.,gold0-orig,pos,unl,unl,unl,unl,\"Inside, someone stands up, ready to receive his bride.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4577,\"As someone winds up to punch someone he catches someone in the face on the backswing, then completes the movement and knocks someone down. Before someone can answer, someone\",is up and swinging with the shovel.,nods and looks into the left eye.,shields him from him for an approaching match.,becomes someone with his pounces on him.,grabs someone's phone.,gold0-orig,pos,unl,unl,unl,unl,\"As someone winds up to punch someone he catches someone in the face on the backswing, then completes the movement and knocks someone down.\",\"Before someone can answer, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4586,We see his hat blow off and sail over the cliff's edge. The tank,trundles over the cliff and plummets to the bottom.,\"waves his arms overhead, leaving someone flying off.\",jolts backwards by knocking people to the ground.,lifts his head again and walks into a parking lot on a runway in a pond and its help.,\"seems as he is pulled into a river of protective figures, still working on the burning surface.\",gold0-orig,pos,unl,unl,unl,unl,We see his hat blow off and sail over the cliff's edge.,The tank\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4576,Someone pulls people from the tank. Someone,\"pulls himself back atop the tank armed again with the shovel which he swings at someone, who ducks and grabs someone's arm.\",watches as the pilot places someone's helmet on the bifrost control panel.,puts his body down and steps towards the door halfway in.,drops into the elevator and fumbles into his jacket's pockets.,gapes as someone unbuttons the cell.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls people from the tank.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4579,\"Someone grabs his whip, knocking someone aside. As someone speeds toward the front of the tank to certain doom, someone, with lightning speed,\",\"whips out his bullwhip, wrapping the end of the whip around someone's right ankle.\",is steering while spinning into the pup.,splashes it into the night sky.,\"turns his shower head all on and gets out followed by someone, breathing serenely.\",is knocked backwards onto the control tunnel with his gun to 6'2 level above the sub.,gold0-orig,pos,unl,unl,unl,unl,\"Someone grabs his whip, knocking someone aside.\",\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed,\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4584,Someone reaches out to someone. Someone,manages to hold onto someone as he brings his horse to a stop just at the cliff's edge.,supports someone's vodka.,takes stock and lowers the man into the truck.,\"points off his gun, selects his attention, then answers to someone.\",looks back and glares up at the passing someone.,gold1-orig,pos,unl,unl,pos,pos,Someone reaches out to someone.,Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4574,\"Blood flows from under the hat as the Tank Driver slumps forward, his body depressing the levers. Someone still\",\"hangs from the strap of his leather pouch as the tank swerves, barely missing the rocks and causing someone to fall.\",tumbles free to the chopper.,\"remains motionless, the limousine comes slowly away from the general's neck.\",speaks to his son.,\"stands and shifts his eyes to someone as he swings the gun at her, which hurries back off.\",gold1-orig,pos,unl,unl,pos,pos,\"Blood flows from under the hat as the Tank Driver slumps forward, his body depressing the levers.\",Someone still\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4575,\"Someone finally manages to pull himself atop the tank once more where he punches someone over the side, then peers down to someone, still inside the tank. Someone\",pulls people from the tank.,\"wavers on the shoreline, whose eyes are wide with terror in the snow gray venturing through the raging dust.\",travels across track beneath someone and smiles as they rub inflated pistons.,takes a small pedestrian path and slips inside.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone finally manages to pull himself atop the tank once more where he punches someone over the side, then peers down to someone, still inside the tank.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4585,\"Looks down at the fast - approaching cliff, his face filled with horror. We\",see his hat blow off and sail over the cliff's edge.,\"in the water, people are suddenly able to see him as if he is wide enough for a moment.\",\", coming from the cellar, someone looks up at someone, then rolls his head and does it.\",\"is watching him stand up slightly until he falls back, onto his feet.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Looks down at the fast - approaching cliff, his face filled with horror.\",We\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4583,\"Still, someone refuses to let go of the whip. Someone\",reaches out to someone.,turns and gets out of bed.,opens the door to someone.,is pulled away by someone.,,gold1-orig,pos,unl,unl,unl,n/a,\"Still, someone refuses to let go of the whip.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4581,He tips his fez to someone. Someone now,punches someone in the back and grabs him around the neck.,stands before the pristine replica of a massive pounds of molten collapsible.,peels up the lower part of the cigarette.,sits in a booth where two partners sit at a table with the wedding planner.,puts it in.,gold0-orig,pos,unl,unl,unl,pos,He tips his fez to someone.,Someone now\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4580,\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed, whips out his bullwhip, wrapping the end of the whip around someone's right ankle. Someone\",draws his horse next to the treads.,\"shoots at someone with a unexpected swing, dropping his hand into the air.\",pulls his hair up to remove the web labeled outward.,\"plucks it out of his pocket, rolling his eyes.\",regains his balance and walks over to the railing.,gold0-orig,pos,unl,unl,unl,pos,\"As someone speeds toward the front of the tank to certain doom, someone, with lightning speed, whips out his bullwhip, wrapping the end of the whip around someone's right ankle.\",Someone\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4582,\"Someone now punches someone in the back and grabs him around the neck. Still, someone\",refuses to let go of the whip.,walks in the diner.,finds his grappling hand atop the wire as he runs.,runs up behind someone.,,gold0-reannot,pos,unl,pos,pos,n/a,Someone now punches someone in the back and grabs him around the neck.,\"Still, someone\"\nlsmdc0050_Indiana_Jones_and_the_last_crusade-70640,4578,\"Before someone can answer, someone is up and swinging with the shovel. Someone\",\"grabs his whip, knocking someone aside.\",\"sighs, sipping from the covers, occasionally an sound.\",walks his trunk so he can lean on a cane.,\"is swinging in horror at a fish hole, then falls in.\",\"catches up to the boy, putting their arms around each other, then leads her away.\",gold0-reannot,pos,unl,unl,unl,unl,\"Before someone can answer, someone is up and swinging with the shovel.\",Someone\nanetv_uA3dbKjT9rM,692,A girl sitting int eh driver seat of a car is talking on her phone on speaker. She hangs up and starts talking out loud and then her and her friend,are walking through a parking garage.,gets up and clips her work.,begins playing the piano.,she continues talking to the camera.,talk as they talk again.,gold0-orig,pos,unl,unl,pos,pos,A girl sitting int eh driver seat of a car is talking on her phone on speaker.,She hangs up and starts talking out loud and then her and her friend\nanetv_uA3dbKjT9rM,693,\"The girls are walking and talking through the mall, then they go to Claires to get ears pierced. They\",continue walking around the mall for a while.,sails camels outside the monkey park.,are running in a bulls on the ground and rotating their legs because they are holding the ankles of two shoes.,\"get whole slow, after taking a pose, are a really passionate about easter.\",have their next meal when they shake hands.,gold0-reannot,pos,unl,unl,unl,unl,\"The girls are walking and talking through the mall, then they go to Claires to get ears pierced.\",They\nanetv_Fdjw9ld-hbA,1250,\"The man in the red, picks him up and drops him down on the wrestling match. After, the referee\",drops down and pounds the mat counting down the end of the match.,does more scrapes on the ground while spinning over the leather wrestling ring.,takes a kick to where defenders in the next stop area and stand until they finish.,waits for a second of talking and speaks to the first girls!,,gold0-orig,pos,unl,unl,unl,n/a,\"The man in the red, picks him up and drops him down on the wrestling match.\",\"After, the referee\"\nanetv_Fdjw9ld-hbA,1249,\"A man dressed in a blue uniform is fighting against a male dressed in an all red uniform. The man in the red,\",picks him up and drops him down on the wrestling match.,\"young forces wrestling outfit, throw various tricks on the rink when a person wearing a hat.\",is dressed for the end.,black shirt is showing the fighting.,walks behind him at the zookeeper elbow and grabs his head.,gold0-reannot,pos,unl,unl,unl,unl,A man dressed in a blue uniform is fighting against a male dressed in an all red uniform.,\"The man in the red,\"\nanetv_U0HiAZCgmd8,17527,A woman is seen speaking to the camera and leads into her pouring ice into a glass followed by various liquids. She,mixes the liquids back and fourth and ends by presenting the drink and putting in a lemon with straw.,holds up a box of alcohol and puts it into glasses in the end.,tomatoes in a container and ads a sandwich into a container.,continues drinking the drink while poured into the glass.,pours lemon juice into a glass and pours it into a glass.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen speaking to the camera and leads into her pouring ice into a glass followed by various liquids.,She\nanetv_ibjvKk93__g,3040,\"An AFrican American male wearing a blue muscle shirt and Under Armour sweat shorts is standing on an elliptical talking. Although he is the only one in the gym, there\",are two people standing behind him at the reception desk.,are make signs in the body of the pilot by three men standing around the sides as he talks.,is a synchronized charge in between the press.,are several men preparing to exercise.,is a series of words that probe original closeups of the elliptical and numbers.,gold1-reannot,pos,unl,unl,unl,unl,An AFrican American male wearing a blue muscle shirt and Under Armour sweat shorts is standing on an elliptical talking.,\"Although he is the only one in the gym, there\"\nanetv_ibjvKk93__g,18000,Man is standing in a elliptical machine showing how to make exercise. people,are standing in the counter.,are at a desk after a woman gives the interview.,are then shown riding bikes in the lake.,\"are in the living room, talking.\",are hanging on the stairs behind him.,gold0-reannot,pos,unl,unl,unl,pos,Man is standing in a elliptical machine showing how to make exercise.,people\nanetv_656VWQU5dgE,1772,\"Kids jump up and down, and people shake hands. We then\",see the closing screen.,see a couple of men jump rope they encourage hanging over the pole.,see several other men in rafts.,see the ending closing screen.,see the white ending screen.,gold0-orig,pos,unl,unl,pos,pos,\"Kids jump up and down, and people shake hands.\",We then\nanetv_656VWQU5dgE,1770,A Red light on the left turns on. We,see a person filming the match.,\"a perfect embrace, someone removes a quill pen from a box and begins drawing lines of white letters on the marble.\",shoots into the water.,old pink is seen calls from a child through the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A Red light on the left turns on.,We\nanetv_656VWQU5dgE,1769,We see a crowd running and various sports images. We,see a bunch of young people fencing.,\"see several metal wrestlers, walking on the rope.\",see the ending title screen.,see people in the field tossing an arrow over the net.,,gold0-reannot,pos,unl,pos,pos,n/a,We see a crowd running and various sports images.,We\nanetv_656VWQU5dgE,1771,We see a person filming the match. We,\"see table tennis, tennis, and archery.\",see the man swim up and off the white board.,see a chinese male shot in the building.,see the man mowing his lawn.,see a skier yell one in a pocket.,gold0-reannot,pos,unl,unl,unl,unl,We see a person filming the match.,We\nlsmdc3058_RUBY_SPARKS-28621,7026,A large audience surrounds a single tree standing in the middle of the store. Someone,shifts his humble gaze.,does a belly routine.,hangs his hat over his head and creeps around.,is standing outside the room talking animatedly.,,gold1-orig,pos,unl,unl,unl,n/a,A large audience surrounds a single tree standing in the middle of the store.,Someone\nlsmdc3058_RUBY_SPARKS-28621,7024,Someone's family are among the crowd. Someone,looks up from his book.,\"and children stand behind the tree, but he reveals a plow.\",remembers taking the glass from the pool from a busy street.,turns to someone who leaves.,tries to look with someone.,gold1-reannot,pos,unl,unl,pos,pos,Someone's family are among the crowd.,Someone\nanetv_3osNjmYjTGg,14607,A man pole vaults over a rope on a track of a sporting field. The man just barely,makes his body over the rope.,perform the hammer throw on the pole.,kicks from the platform's position.,leaps into the water and jumps and performs several tricks.,,gold0-reannot,pos,unl,unl,unl,n/a,A man pole vaults over a rope on a track of a sporting field.,The man just barely\nanetv_gA7GpvB10UY,2320,The woman wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye. then,grab the other contac and do the same with the other eye and show the liquid.,the person removes their separate glasses and show them on the black lipstick.,\"she pushes them skyward, raising and gritting her teeth.\",put the contact lens on her left eye and put it around.,\", the person put the contact lens on the claws of the finger, then she puts on a glasses.\",gold1-orig,pos,unl,unl,unl,unl,The woman wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye.,then\nanetv_gA7GpvB10UY,2319,Man is holding a contact lenses case in front of a mirror and open it. the woman,wash her hands takes out the lenses and holds a contact with her right hand and put it on the right eye.,is looking out at the camera the woman put the lens of the eye.,places the paper around her eye and holds it to her nose.,\"put his eye in the bun, and put the contact lens in his eye while speaking.\",\"is smiling to the camera, demonstrating his contact.\",gold0-reannot,pos,unl,pos,pos,pos,Man is holding a contact lenses case in front of a mirror and open it.,the woman\nanetv_b5GJUtjiWkQ,12843,Three kids are seen standing out in front of a house when one plays hop scotch to a person coming in frame. The camera,follows the same girl hopping down a long path and continuing her way back to where she started.,pans around while the camera captures her movements.,pans left and the street's cuddle with people in the background.,moves back and fourth while the camera pans around their movements.,pans left to show a finished one.,gold0-orig,pos,unl,unl,unl,pos,Three kids are seen standing out in front of a house when one plays hop scotch to a person coming in frame.,The camera\nanetv_fO8b3U8fuGo,18520,A woman is seen riding around on a horse and smiling to the camera. She,moves forward with the horse.,continues knitting her body and rotating her arms.,talks to the camera and continues brushing the dog and beginning to look.,continues speaking to the camera while others watch on the sides.,,gold1-orig,pos,unl,unl,pos,n/a,A woman is seen riding around on a horse and smiling to the camera.,She\nanetv_fO8b3U8fuGo,11226,\"The horse begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle. As they return to their original spot, you can see the water washing up against the land and they\",continue back up the hill.,struggle to get them in the water.,take a fifth glance at the carriage off the end.,go into the boat on the ground.,\"continue past the net, before they glide across the very steep, hilly path towards the field.\",gold1-orig,pos,unl,unl,unl,pos,The horse begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle.,\"As they return to their original spot, you can see the water washing up against the land and they\"\nanetv_fO8b3U8fuGo,11225,A young woman in a black shirt and jean pants is sitting on the back of a grey horse with a long grey mane in the middle of a large grassy field with hills behind them. The horse,begins to trot and then slows down a little bit and starts smiling as she steers the horse in a circle.,walks up next to a dog and balances on a horse near a blond on the right side of the horse.,aggressively rides the horse and lets in a path of water and watches the horse retreating and gets passive.,spins in circles to move the dog.,,gold0-orig,pos,unl,unl,unl,n/a,A young woman in a black shirt and jean pants is sitting on the back of a grey horse with a long grey mane in the middle of a large grassy field with hills behind them.,The horse\nanetv_fO8b3U8fuGo,18521,She moves forward with the horse. She,turns around and walks back to the camera.,\"chops up more ingredients, then mounts it.\",\"is, brushing her teeth, and saunters away as she bends to shoot.\",\"chases after the cow, letting her jump in flames.\",falls off the horse and runs along a long path towards his horse.,gold0-orig,pos,unl,unl,unl,pos,She moves forward with the horse.,She\nanetv_MMB5Cn3JCGI,7991,A woman runs down a field. She,jumps backwards over a bar and lands on a blue mat.,hits a ball with sand.,spins around trying to dial and prepare.,runs several times on a pole.,jumps into a pile of sand.,gold0-orig,pos,unl,unl,unl,pos,A woman runs down a field.,She\nanetv_MMB5Cn3JCGI,10564,A young girl is standing in an open grassy field. The girl,\"runs towards a low beam and jumps over it, landing on a blue pad.\",mows the lawn behind her.,is sprinting to the other side of the club.,is jumping down and trying to hit a ball back and forth underneath a high bar.,is practicing karate movements on the floor.,gold0-orig,pos,unl,unl,unl,unl,A young girl is standing in an open grassy field.,The girl\nanetv_MMB5Cn3JCGI,7992,She jumps backwards over a bar and lands on a blue mat. They,show the jump in slow motion again.,throw the ball back and forth with each other.,sit on top of a blue water pool.,are on the other side getting ready to jump.,celebrate and spin in circles.,gold0-orig,pos,unl,unl,unl,pos,She jumps backwards over a bar and lands on a blue mat.,They\nanetv_MMB5Cn3JCGI,10565,\"The girl runs towards a low beam and jumps over it, landing on a blue pad. Video of the girl jumping\",is replayed in slow motion.,takes off her board.,is shown again when he stands up.,come from the shore doing a lightning skip.,is her panning on the wall.,gold0-orig,pos,unl,unl,unl,unl,\"The girl runs towards a low beam and jumps over it, landing on a blue pad.\",Video of the girl jumping\nanetv_8J_erRJya-k,6199,The skateboarders ride along a sidewalk going somewhere. The boys,walk around and go into a transportation station.,play tricks with a drove white cake.,are shown sitting around.,continue to race and make after up pile of snow.,get in the streets behind drums.,gold1-orig,pos,unl,pos,pos,pos,The skateboarders ride along a sidewalk going somewhere.,The boys\nanetv_8J_erRJya-k,6198,The skateboarder does a wheelie. The skateboarders,ride along a sidewalk going somewhere.,are flipping on treadmill disclaimer.,backs into the parking lot and he goes on.,continues past the foursome.,skate down the center.,gold0-reannot,pos,unl,unl,pos,pos,The skateboarder does a wheelie.,The skateboarders\nanetv_YonmpJvwmKM,12754,\"He stands on a platform, continuing the graceful movements. We then\",\"see him again in the woods, still performing yoga quietly.\",see the man as best gyrates until the stands.,see two people taking their turn and leap up area in the middle below one stage.,see the whole time stepping.,,gold1-orig,pos,unl,unl,unl,n/a,\"He stands on a platform, continuing the graceful movements.\",We then\nanetv_YonmpJvwmKM,12752,A man is pictured next to an ad for yoga. He,\"is standing in a forest, making slow and graceful yoga moves.\",announce the video quickly to ski.,talks to a woman in front of the tv.,rides in the driver's seat of the bike and continues talking.,,gold0-orig,pos,unl,unl,unl,n/a,A man is pictured next to an ad for yoga.,He\nanetv_YonmpJvwmKM,12753,\"He is standing in a forest, making slow and graceful yoga moves. He\",\"stands on a platform, continuing the graceful movements.\",completes the long jump before he does it and gets down.,kicks in the air and lands on his feet.,stops and turns toward the entrance.,,gold0-orig,pos,unl,pos,pos,n/a,\"He is standing in a forest, making slow and graceful yoga moves.\",He\nanetv_Lfj9JC7uWmE,12658,Man are playing war of a tug in an open field in font of a lake. men,are standing in sidewalk watching the men playing and taking pictures.,are standing in front of a river on special horses.,are getting ready to hit each other on an ice field and are involved in the rock board.,are tumbling down on the ground and taking a piece of the rope that plays on the ground in an arena.,,gold0-orig,pos,unl,unl,unl,n/a,Man are playing war of a tug in an open field in font of a lake.,men\nanetv_o00AfbAIOlA,11187,He is assembling the bike. We,see images of the bike.,pulls a bike downhill on the other side of the bike.,\"on the bike, he slides the key down the front steps of the bike.\",the wheel only a small enough night.,,gold0-orig,pos,unl,unl,unl,n/a,He is assembling the bike.,We\nanetv_o00AfbAIOlA,11185,He then removes the bike. He,is removing the packaging.,adjusts the screws and talks to sign.,begins to lift a large weight on it.,rolls the tire on the handlebars to start cutting out.,\"stops then reverses, pressing his legs together in a restless rhythm.\",gold1-orig,unl,unl,unl,unl,unl,He then removes the bike.,He\nanetv_o00AfbAIOlA,11186,He is removing the packaging. He,is assembling the bike.,takes his hands and jumps in the air.,completes the palm and places on it.,opens a third mixing table.,paints them on a fence.,gold0-orig,pos,unl,unl,unl,unl,He is removing the packaging.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,392,He continues past his fellow Marines. Someone,stops and looks back at someone.,moves to the bathroom.,catches a bobby kick.,\"holds the flees to the end, as the kids drive into town.\",points at his pet wife.,gold0-orig,pos,unl,unl,unl,unl,He continues past his fellow Marines.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,370,\"Someone steps forward, breathing heavily. Later someone\",shines a flashlight across the abandoned hangar.,arrives in the basement.,drives through an intersection.,salutes him and holds him easily.,rests a handful against his shoulder.,gold0-orig,pos,unl,unl,unl,unl,\"Someone steps forward, breathing heavily.\",Later someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,391,He wipes his face then stands up and marches around a media station with a charred map tacked on a board. He,continues past his fellow marines.,drives off in green with sunset gear.,spreads the letters card onto a cookie sheet.,plays along with the girl rising.,takes a paper and looks down a tree.,gold0-orig,pos,unl,unl,unl,unl,He wipes his face then stands up and marches around a media station with a charred map tacked on a board.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,373,Someone points to a location. Someone,enters and takes off his helmet.,dives through the wall and fires down it.,fearfully slaps someone's face.,shoots out a flashlight.,\"turns down over to someone, still working in an office.\",gold1-orig,pos,unl,unl,unl,unl,Someone points to a location.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,393,Someone stops and looks back at someone. Someone,swaps a concerned look with someone.,stops as another door comes in.,stands with blood on his chest.,opens herself a deep and thinks about what she is saying to someone.,rush away down the corridor.,gold0-orig,pos,unl,unl,unl,pos,Someone stops and looks back at someone.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,385,\"Someone wanders pass them, holding his helmet. The vet\",gives someone an encouraging nod.,pulls someone out quickly.,holds up a pencil and starts to scratch it.,looks back into his tv house.,reaches into his pocket.,gold0-orig,pos,unl,unl,unl,pos,\"Someone wanders pass them, holding his helmet.\",The vet\nlsmdc3009_BATTLE_LOS_ANGELES-463,386,The vet gives someone an encouraging nod. He,\"glances at someone, who sits nearby with a somber gaze.\",leaves the timekeeper's desk.,\"licks the cupcake someone puts a towel on her face, then rubs his forehead.\",smiles the three musicians as they walk down the hall to the kitchen area.,swings the floor.,gold0-orig,pos,unl,unl,unl,unl,The vet gives someone an encouraging nod.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,377,\"Reaching the walkway, he watches someone and Hector through an open flap on the side of the tent. Hector\",sits over his father.,\"swims toward it, revealing arrows tattooed between the wading carriages leading across the lake near the bay.\",\"looks at the visitors, then propping them on the branch.\",clinks his hand with his.,is ready to start.,gold0-orig,pos,unl,unl,pos,pos,\"Reaching the walkway, he watches someone and Hector through an open flap on the side of the tent.\",Hector\nlsmdc3009_BATTLE_LOS_ANGELES-463,395,\"Someone walks up to the disgruntled Marine and faces him squarely. On watch duty, someone and someone each\",look back at the hangar.,walk the coatcheck chamber smoking a cigarette.,climb the ladder to the barren then rust metal house.,watch the colossus pass for an american woman.,get a handful of basil to the forest.,gold1-orig,pos,unl,unl,unl,unl,Someone walks up to the disgruntled Marine and faces him squarely.,\"On watch duty, someone and someone each\"\nlsmdc3009_BATTLE_LOS_ANGELES-463,389,Someone remains on one knee. He,draws a tense breath then looks at someone and the other marines.,holds his hand to someone's face as he plays the sax.,extends his hand to survey the sky.,points down to the next room.,,gold1-orig,pos,unl,unl,pos,n/a,Someone remains on one knee.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,380,\"Grimacing, he grabs someone's shirt. She\",gently lays a hand on someone's forehead and caresses the back of the boy's head with the other.,takes some tissues off someone's shirt.,pulls under the covers.,\"offers a shake of appreciation, while someone holds it.\",spots someone's purse and objects from the table outside someone's mansion.,gold1-orig,pos,unl,unl,unl,pos,\"Grimacing, he grabs someone's shirt.\",She\nlsmdc3009_BATTLE_LOS_ANGELES-463,367,Someone hurriedly ushers everyone out. Now black smoke,fills the night sky.,fills the hot air.,drifts from someone's trunk.,rises from a crowded party.,rises from the tall towers.,gold0-orig,pos,unl,unl,unl,pos,Someone hurriedly ushers everyone out.,Now black smoke\nlsmdc3009_BATTLE_LOS_ANGELES-463,378,Hector sits over his father. He,lays his head on his father's chest.,leaves the room and grabs a leafy bamboo.,removes a original peanut paste from a calendar on the kitchen counter.,takes his wallet from someone.,meets the teen's gaze then gives her a eager kiss.,gold0-orig,pos,unl,unl,unl,unl,Hector sits over his father.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,375,Someone drops his head to his hands then pounds on the table. The frustrated staff sergeant,leaves the map and ambles across the office.,\"looks up as someone, two fists, the rest at their necks, points over to the building.\",\"lies motionless in his chair staring off the porch, watching as someone gets out.\",carries their front fists through the corridor towards the house.,puts an empty smile on his lips.,gold1-orig,pos,unl,unl,unl,unl,Someone drops his head to his hands then pounds on the table.,The frustrated staff sergeant\nlsmdc3009_BATTLE_LOS_ANGELES-463,371,\"Checking someone's pulse, someone looks at Hector. Left alone, Hector\",holds his father's limp hand.,roll in her mouth.,fires his rifle at the mercenaries.,keeps watching his two men.,creeps toward the gas station and sips the drink.,gold1-orig,pos,unl,pos,pos,pos,\"Checking someone's pulse, someone looks at Hector.\",\"Left alone, Hector\"\nlsmdc3009_BATTLE_LOS_ANGELES-463,381,Hector runs out of the tent. He,faces the staff sergeant then hugs him.,rests his head on her shoulder.,closes the door and enters wearing a new overcoat.,\"crouches on the edge of his desk, his arms tensed.\",peers through the vinegar bay.,gold1-orig,unl,unl,unl,unl,unl,Hector runs out of the tent.,He\nlsmdc3009_BATTLE_LOS_ANGELES-463,374,Someone and someone look up from the map and gape at the Marine. Someone,drops his head to his hands then pounds on the table.,gives someone a thumbs up as it explodes.,pushes the vet down the art by section.,rolls someone's boobs out onto the back of a boat.,glares at his father - in - law.,gold1-reannot,pos,unl,unl,unl,pos,Someone and someone look up from the map and gape at the Marine.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,394,Someone swaps a concerned look with someone. Someone,walks up to the disgruntled marine and faces him squarely.,\"stands with him, leaning against the wall.\",\"glances across the room at the heavyset robber, who rubs his knee and rests his head on his chin.\",pauses a few paces ahead of someone.,takes his pliers and places them atop the wheel.,gold0-reannot,pos,unl,unl,unl,unl,Someone swaps a concerned look with someone.,Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,387,\"Someone, someone, and someone look on. Someone\",gazes into the boy's eyes.,\", now, pulls up a telegraph gate and assembles a metal crate.\",\"dances around the table, bearing his coffee.\",\"smiles, the rest of the women are off.\",keeps his guns upstream away from someone.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone, someone, and someone look on.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,383,\"Someone looks to someone and the vet. As the boy clings to him, he\",glances uncomfortably at the brunette.,notices a and peers into the wall.,bounces off the ground as people run while his back paws around him.,waves someone across it.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone looks to someone and the vet.,\"As the boy clings to him, he\"\nlsmdc3009_BATTLE_LOS_ANGELES-463,388,\"She leads Hector to the girls, who sit nearby. Someone\",remains on one knee.,looks away at someone in the stern.,watches his home with a puzzled frown.,helps her off the horse.,spots someone poking her face.,gold0-reannot,pos,unl,unl,pos,pos,\"She leads Hector to the girls, who sit nearby.\",Someone\nlsmdc3009_BATTLE_LOS_ANGELES-463,368,\"Flames rise from the burning wreckage, a various aircraft and vehicles littering the runway. The group\",stares from a chain - link fence.,climbs out of the train as they drift over a goblet of soldiers.,walks after the party.,drags the kayak as debris rocks deeper into the valley.,run down the staircase and race to the crowd as a train arrives.,gold0-reannot,pos,unl,unl,unl,pos,\"Flames rise from the burning wreckage, a various aircraft and vehicles littering the runway.\",The group\nanetv_i4yQ54eWfy4,3459,The man holds a knife and cut a lettuce and put it on a bowl. the man,holds small croutons on a plate and show the lettuce.,put the knife all in a pan and put it in a bowl.,presents a kitchen knife to sharpen it.,\"melts a piece of bread, then adds chicken broth to the meat.\",sets the sandwich on the counter.,gold0-orig,pos,unl,unl,unl,pos,The man holds a knife and cut a lettuce and put it on a bowl.,the man\nanetv_i4yQ54eWfy4,3458,Man is standing in a kitchen talking to the camera. the man,holds a knife and cut a lettuce and put it on a bowl.,is shown mopping the carpet while working with a bicycle.,sets the white plate on the table.,is showing how to hold a blue umbrella.,,gold0-orig,pos,unl,unl,unl,n/a,Man is standing in a kitchen talking to the camera.,the man\nanetv_i4yQ54eWfy4,71,A chef is seen speaking to the camera behind a kitchen counter and leads into him cutting up lettuce and pouring ingredients out into a bowl. The man,presents more food items on a plate as well as a bowl sitting next to it.,pours various all ingredients into a blender and shows off several more served and ingredients and presenting them out on an oven.,\"pulls the cutting all around the kitchen, presenting it and mix the ingredients into a bowl and finally spreads it against a plate.\",has finally seen all the ingredients in the pan and ends by presenting them in front of the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A chef is seen speaking to the camera behind a kitchen counter and leads into him cutting up lettuce and pouring ingredients out into a bowl.,The man\nlsmdc1039_The_Queen-88180,9528,\"Someone emerges, accompanied by people. They\",\"walk up to the huge collection of flowers, which are arranged outside the gate.\",wrap their arms around one another and point their wands at someone whose hand is missing his throat.,\"walk joyfully in union, which adds the still in candles.\",ram the gate again.,arrive at the end of the hall.,gold0-orig,pos,unl,unl,pos,pos,\"Someone emerges, accompanied by people.\",They\nlsmdc1039_The_Queen-88180,9531,\"Someone smiles, walks to the kitchen table and playfully messes up the hair of one of his sons. The Royal Family\",\"continue to look at the flowers outside balmoral, and are watched by a large crowd of onlookers.\",rests and now at a desk with a girl's eye open.,stands with both arms raised and looks at the lifted figure.,puts his hand on his mother's hand.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone smiles, walks to the kitchen table and playfully messes up the hair of one of his sons.\",The Royal Family\nlsmdc1039_The_Queen-88180,9536,Someone studies her reflection with a fixed stare. Someone descends some stairs and someone,emerges from a room nearby.,sees down through a small case.,hands open the door.,turns over to meet her.,reaches for her gun.,gold0-orig,pos,unl,unl,unl,unl,Someone studies her reflection with a fixed stare.,Someone descends some stairs and someone\nlsmdc1039_The_Queen-88180,9524,Someone has her back to someone. Someone,turns and leaves the study.,takes out another locked gate and cuts a photo.,holds up a round stick too.,sits down from a chair and pours into a bag.,holds someone's gaze while her student leads her onward.,gold1-orig,pos,unl,unl,unl,pos,Someone has her back to someone.,Someone\nlsmdc1039_The_Queen-88180,9527,Flash photography is taken as the doors to the Range Rovers open. Someone,\"emerges, accompanied by people.\",hands them bring the scenes of the video.,walks cautiously down the street to vault.,grabs her beak and tries to pull it off.,\"lands from his bed, rolls around through the window.\",gold0-orig,pos,unl,unl,unl,unl,Flash photography is taken as the doors to the Range Rovers open.,Someone\nlsmdc1039_The_Queen-88180,9530,Someone sits reading some paperwork and glances up to watch the tv. Someone,\"smiles, walks to the kitchen table and playfully messes up the hair of one of his sons.\",sits in a gray - haired chair.,\"takes the alcohol bottle from the order bag where someone had been drinking, flirting.\",\"storms out, shutting the door and looks around.\",\"stares at someone, who now appears in the doorway.\",gold1-orig,pos,unl,unl,unl,unl,Someone sits reading some paperwork and glances up to watch the tv.,Someone\nlsmdc1039_The_Queen-88180,9534,\"Friday, a female servant zips up the back of someone's black dress, then, hands her a pearl necklace. Someone\",\"takes it, looks into the full - length mirror, and fastens the necklace around her neck.\",clears it with her hand.,struts down on a pink - satin deck railing.,\"approaches someone, who is on a spotlight with them.\",removes his wooden case from the rack and opens the door.,gold0-orig,pos,unl,unl,unl,unl,\"Friday, a female servant zips up the back of someone's black dress, then, hands her a pearl necklace.\",Someone\nlsmdc1039_The_Queen-88180,9535,\"Someone takes it, looks into the full - length mirror, and fastens the necklace around her neck. Someone\",studies her reflection with a fixed stare.,sits in the room where someone has been arranging.,\"leaves the room, without enthusiasm.\",\"walks towards him, then walks back towards someone and squeezes his lips against her finger.\",drops an iron in a jacket.,gold0-orig,pos,unl,unl,unl,unl,\"Someone takes it, looks into the full - length mirror, and fastens the necklace around her neck.\",Someone\nlsmdc1039_The_Queen-88180,9525,The gates of Balmoral are all opened by two men. Range Rovers slowly,\"emerge, flanked by four bodyguards.\",lift past a dark - square hotel.,descend from the hiding place.,tumble out of someone's suv and letters scrolling through them.,\"approaches someone, who is waiting for an answer.\",gold1-orig,pos,unl,unl,unl,pos,The gates of Balmoral are all opened by two men.,Range Rovers slowly\nlsmdc1039_The_Queen-88180,9526,\"Range Rovers slowly emerge, flanked by four bodyguards. Flash photography\",is taken as the doors to the range rovers open.,expands inside the shack.,illuminate the group whose vampires escape from the sphere.,zooms out past a of ships lining the artwork.,,gold0-orig,pos,unl,unl,unl,n/a,\"Range Rovers slowly emerge, flanked by four bodyguards.\",Flash photography\nlsmdc1039_The_Queen-88180,9532,\"The Royal Family continue to look at the flowers outside Balmoral, and are watched by a large crowd of onlookers. Someone\",reacts to the exhaust bank.,sees all of them then leaps from a lifeboat onto a lake in dense motion.,struggles to allow tread to escape.,'s free huddle in someone's viewfinder.,,gold0-reannot,pos,unl,unl,unl,n/a,\"The Royal Family continue to look at the flowers outside Balmoral, and are watched by a large crowd of onlookers.\",Someone\nlsmdc1039_The_Queen-88180,9533,\"Someone reacts to the exhaust bank. Friday, a female servant\",\"zips up the back of someone's black dress, then, hands her a pearl necklace.\",holds up a vial of plastic liquor.,sits over a ammo box.,helps him organize someone's life wrists.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone reacts to the exhaust bank.,\"Friday, a female servant\"\nlsmdc1039_The_Queen-88180,9523,Someone enters the study while someone sits on the sofa. Someone,has her back to someone.,nods and flies at someone.,on it contains his foot and notes.,walks down the hall.,looks at her admiringly.,gold1-reannot,pos,unl,unl,unl,pos,Someone enters the study while someone sits on the sofa.,Someone\nlsmdc0038_Psycho-67354,12818,\"Someone has reached him, the picture extended. Someone\",looks dutifully at it.,descends to the room at the face of the statue.,opens his car door nervously.,is hidden behind the card.,gives someone a tight - lipped grin.,gold0-orig,pos,unl,unl,unl,unl,\"Someone has reached him, the picture extended.\",Someone\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9739,5667,\"A powerful silver mist flows from someone's wand, shielding him from the terrifying power of the threatening Dementor. With determination and willpower, he gradually\",forces it to retreat inside the open trunk.,pushes himself up onto his shoulders and crashes into the rear of the package - beak.,pours himself over his face - - then the with his moves.,switches the a fire from the gymnasium.,comes wobbly into the surface.,gold0-orig,pos,unl,unl,unl,unl,\"A powerful silver mist flows from someone's wand, shielding him from the terrifying power of the threatening Dementor.\",\"With determination and willpower, he gradually\"\nlsmdc1054_Harry_Potter_and_the_prisoner_of_azkaban-9739,5668,\"With determination and willpower, he gradually forces it to retreat inside the open trunk. Laughing with delight, someone\",slams down the lid.,shoves someone in his back pocket.,circles through dense foliage.,grabs someone's sword and sends him sprawling towards someone.,,gold0-orig,pos,unl,unl,pos,n/a,\"With determination and willpower, he gradually forces it to retreat inside the open trunk.\",\"Laughing with delight, someone\"\nanetv_U_ZW0tTvf0k,15253,A girl is seen laying on a table with a man piercing her belly button below her. The girl screams in pain and the man,finishes her piercing while she looks to the camera.,holds her in her arms.,spreads all over his face as she continues to talk.,begins to put her hands away.,,gold1-orig,pos,unl,unl,unl,n/a,A girl is seen laying on a table with a man piercing her belly button below her.,The girl screams in pain and the man\nanetv_ffUtqOyJ7fM,4047,\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she begins to rub it all over her face using her fingers. The woman\",speaks and then rinses her face off and then dries her face with a towel.,\"talks to the camera, smiling, and with a reservoir office where her son can't be so basically working.\",cleans her beau and looks to the camera.,is with the pencil in one hand.,gulps and rubs her sides.,gold0-orig,pos,unl,unl,unl,unl,\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she begins to rub it all over her face using her fingers.\",The woman\nanetv_ffUtqOyJ7fM,12237,A woman speaks to the camera while turning her face back and fourth. She,holds up a product and wipes it all along her face.,grabs a lifeboat and walks away to the camera.,continues to speak as well as text behind her phone.,continues to speak at the camera while pointing and walks out of frame.,,gold0-orig,pos,unl,pos,pos,n/a,A woman speaks to the camera while turning her face back and fourth.,She\nanetv_ffUtqOyJ7fM,12238,She holds up a product and wipes it all along her face. She,washes her faces and wipes it down with a rag still speaking to the camera.,\"turns down and operates different liquids into a small glass, then walks with the machine.\",uses a tool to clip a clear dart off in the end.,continues to show off her hair and continuing on.,places a box of curling ingredients onto a counter.,gold0-orig,pos,unl,unl,unl,unl,She holds up a product and wipes it all along her face.,She\nanetv_ffUtqOyJ7fM,4046,\"A woman wearing black clothes is talking in front of an all white screen, she tilts her head from side to side then holds up a small bottle. The woman then applies water to her face, then pours contents from the little bottle onto her hands and she\",begins to rub it all over her face using her fingers.,wipes swigs from the cup again and continues.,shows around the mouth then wipes it away and shows it on a piece of dishrag.,\"loses, then puts the bottle in another cupboard, without combs, all the adhesive tape moves over her face.\",\"shows a woman's teeth with several gray dots underneath, then sets and smooths the sole too.\",gold0-orig,pos,unl,unl,unl,unl,\"A woman wearing black clothes is talking in front of an all white screen, she tilts her head from side to side then holds up a small bottle.\",\"The woman then applies water to her face, then pours contents from the little bottle onto her hands and she\"\nanetv__roK9m9UOvM,10692,The woman ties her laces. The woman,gives a thumbs up.,puts the ribbon on top the ribbon.,begins to use her hands to keep socks.,puts down her shoes.,puts the laces on socks.,gold0-orig,pos,unl,unl,unl,unl,The woman ties her laces.,The woman\nanetv__roK9m9UOvM,11716,She is putting a shoe on. She,is talking to a person holding a camera.,uses an eyeliner to keep combing the hair.,is using a big brush and toothbrush.,picks up a brush and begins scrubbing the floor.,,gold0-orig,pos,unl,unl,pos,n/a,She is putting a shoe on.,She\nanetv__roK9m9UOvM,11715,A woman is laying in a bed. She,is putting a shoe on.,is clipping onto a laptop.,talks while and cleans a leg.,puts on blue sheets carved across her legs.,throws metal onto the back of a cigarette.,gold0-reannot,pos,unl,unl,unl,unl,A woman is laying in a bed.,She\nanetv_gXVjjjvjVf4,14162,He uses a long pointed brush to create an image. He then,fills the image with paints.,lifts the vacuum all by himself and twisting it with a hand.,uses a brush to apply it to his eye.,switches on the wall trying to clean the floor.,performs several moves in slow motion.,gold0-orig,pos,unl,unl,unl,pos,He uses a long pointed brush to create an image.,He then\nanetv_gXVjjjvjVf4,14161,A man is seated in front of a small canvas. He,uses a long pointed brush to create an image.,is puts on a canvas.,boards two sections along the water.,is holding a canvas.,then lifts it up to his brow.,gold0-orig,pos,unl,unl,pos,pos,A man is seated in front of a small canvas.,He\nanetv_YuCMWTdK_DY,266,The man stretches a bit and begins spinning himself around. He,continues to spin and ends by walking away.,moves around and continues scrubbing while coming to the camera.,sucks on the pipe and begins rubbing it together while along with him.,continues to climb back and end by lowering the camera.,continues throwing the ball up in the air.,gold0-orig,pos,unl,unl,unl,pos,The man stretches a bit and begins spinning himself around.,He\nanetv_fWD0rL_72nw,1999,The man keeps moving backward and the woman follows. The woman,starts kicking at the man.,turns back and shoulders her.,returns and talks into dartboard.,walks to the edge of threshold.,runs up and kneels down on the bench.,gold0-orig,pos,unl,unl,pos,pos,The man keeps moving backward and the woman follows.,The woman\nanetv_fWD0rL_72nw,8706,A man and woman face off inside a gym. They,are both wearing boxing gloves.,women of kids clap and clips more make on and announces: stuff.,run in and show jesse in a gym.,pull some darts and the cut.,begin a minivan and push the bicycles.,gold0-orig,pos,unl,unl,unl,unl,A man and woman face off inside a gym.,They\nanetv_fWD0rL_72nw,8707,They are both wearing boxing gloves. The woman,punches as the man blocks.,puts on a bra.,moves across some table.,looks around and excitedly.,,gold0-orig,pos,unl,unl,pos,n/a,They are both wearing boxing gloves.,The woman\nlsmdc1009_Spider-Man3-76427,4215,\"Swinging from a thread, he sweeps low between the line of cars and up to a high roof adorned with lanterns. He\",\"clings to one huge lantern, looks out over the city and pulls off his black hood.\",snow casts his evening light from a window as he vanishes from her rippling water.,explodes over a wave and grabs the clerk.,\"twisted wall parts to the wall and covers a gap in the shutter, which lights cast across its nearby wooden roof.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Swinging from a thread, he sweeps low between the line of cars and up to a high roof adorned with lanterns.\",He\nlsmdc1009_Spider-Man3-76427,4213,He drops onto his feet on a ledge. He,takes a close look at his reflection.,meets someone's gaze then blinks nervously.,closes the cover of the horse and rises.,looks down at his hands as he is holding himself.,,gold0-orig,pos,unl,unl,unl,n/a,He drops onto his feet on a ledge.,He\nlsmdc1009_Spider-Man3-76427,4211,\"His eyes opened in horror. Someone, his someone suit completely black,\",\"hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window.\",stands beside him and watches someone train him from deep breaths.,is looking down at the wall knife then drops the gun into his hand and studies it closely.,sits on the emergency table in a series of coats along the story.,is rooted to the spot and looks down at the ground.,gold1-reannot,pos,unl,unl,unl,pos,His eyes opened in horror.,\"Someone, his someone suit completely black,\"\nlsmdc1009_Spider-Man3-76427,4214,\"He flips up the side of the building and leaps into the air. Swinging from a thread, he\",sweeps low between the line of cars and up to a high roof adorned with lanterns.,swings the cage down toward a ceiling.,\"marches through the crowd and follows someone, who now rests in his brace on the nearby safety.\",leaps down on his belly with his stick.,\"creeps up a corner, finds himself halfway over the ladder, and goes to sit up.\",gold0-reannot,pos,unl,pos,pos,pos,He flips up the side of the building and leaps into the air.,\"Swinging from a thread, he\"\nlsmdc1009_Spider-Man3-76427,4212,\"Someone, his someone suit completely black, hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window. He\",drops onto his feet on a ledge.,comes in with a black and puzzled someone.,gives her a tight stomp and works the seat on back and forth over the wheel.,spots someone pacing outside and takes a huge leap.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Someone, his someone suit completely black, hangs upside down from a skyscraper, looking at his reflection in a dark - mirrored window.\",He\nlsmdc3056_PUBLIC_ENEMIES-3392,3608,\"Now in a forest road, two motorcars douse their headlights as they creep forward and park on the dirt shoulder. Someone, someone, and several others in trench coats\",climb out of the vehicles.,hang in a branch in the back.,draw small boats out of the cottage.,ride an escalator at a camp.,,gold0-orig,pos,unl,unl,unl,n/a,\"Now in a forest road, two motorcars douse their headlights as they creep forward and park on the dirt shoulder.\",\"Someone, someone, and several others in trench coats\"\nlsmdc3056_PUBLIC_ENEMIES-3392,3610,\"Someone closes his door most of the way, but leaves it cracked open. Armed with their rifles and sub machine guns, the g - men\",cross the shadowy woods.,put the spire across the car.,\"keep watch about 10 a., high five the corner of the vehicle.\",put his powder into the plastic handgun.,enter the opposite tunnel and follow the draped expanse of the ornate plots - covered platform.,gold0-orig,pos,unl,unl,unl,pos,\"Someone closes his door most of the way, but leaves it cracked open.\",\"Armed with their rifles and sub machine guns, the g - men\"\nlsmdc3056_PUBLIC_ENEMIES-3392,3611,\"Armed with their rifles and sub machine guns, the g - men cross the shadowy woods. Someone and someone\",stand shoulder - to - shoulder.,line their work in front of a giant white doors which sits close to her.,walk in on one of the lifts.,\"run along the hall, steps, and races under the base of the atrium.\",swoop back and forth across the angular shoulders of broad paws.,gold0-orig,pos,unl,unl,unl,unl,\"Armed with their rifles and sub machine guns, the g - men cross the shadowy woods.\",Someone and someone\nlsmdc3056_PUBLIC_ENEMIES-3392,3607,\"Someone's profile grows blurry as the view focuses on the radio beyond. Now in a forest road, two motorcars\",douse their headlights as they creep forward and park on the dirt shoulder.,mustang draw an arch similar to a large waist - high bench and a window talking about someone.,sizes ascend a single wooden sedan.,peel off of the ash - covered forest into the forest.,,gold1-orig,pos,unl,unl,unl,n/a,Someone's profile grows blurry as the view focuses on the radio beyond.,\"Now in a forest road, two motorcars\"\nlsmdc3056_PUBLIC_ENEMIES-3392,3603,The stern - faced g - man turns gravely toward someone and nods. Someone 'beady eyes,\"peer downward, deep in thought.\",remain fixed on someone as he leans forward and glances at him.,glaze up after someone.,widen as someone swaggers away from him.,glimmer with tears as she watches him walk away.,gold0-orig,pos,unl,unl,unl,unl,The stern - faced g - man turns gravely toward someone and nods.,Someone 'beady eyes\nlsmdc3056_PUBLIC_ENEMIES-3392,3606,Someone picks up his pocket watch off the nightstand. Someone's profile,grows blurry as the view focuses on the radio beyond.,is otherwise view as she spreads his arms wide.,is on his rear view.,is reflected in the palm wooden table.,is reflected in his work.,gold1-orig,pos,unl,unl,unl,pos,Someone picks up his pocket watch off the nightstand.,Someone's profile\nlsmdc3056_PUBLIC_ENEMIES-3392,3609,\"Someone, someone, and several others in trench coats climb out of the vehicles. Someone\",\"closes his door most of the way, but leaves it cracked open.\",watches in horror as someone turns hurriedly to sword her mace.,shares some of her photos on windows and leaves.,strides past a guy following close behind.,rolls down a steep narrow pavements.,gold0-orig,pos,unl,unl,pos,pos,\"Someone, someone, and several others in trench coats climb out of the vehicles.\",Someone\nlsmdc3056_PUBLIC_ENEMIES-3392,3605,He lies down on a modest twin bed. Someone,picks up his pocket watch off the nightstand.,wakes with the mattress in her bed.,is with her mother.,is asleep inside his bed.,enters through another hallway.,gold0-reannot,pos,unl,pos,pos,pos,He lies down on a modest twin bed.,Someone\nlsmdc3060_SANCTUM-29399,12018,\"As someone whispers to himself eyes closed, someone comes to him. Someone\",breaks off muttering and opens his eyes.,\"turns to someone, scowling.\",\"peers in, his face obscured by the blood.\",stands with his lifeless kid.,,gold0-orig,pos,unl,unl,unl,n/a,\"As someone whispers to himself eyes closed, someone comes to him.\",Someone\nlsmdc3060_SANCTUM-29399,12016,\"Stepping away, someone reaches into his supply pack and pulls out a knife with a six inch blade. Someone\",\"grimly switches off his helmet lamp, so does someone.\",pulls up his knife and holds his new chain for him.,\"rubs his hand back away, then unzips his pink shirt, clutching the map wistfully.\",grudgingly imagines the torch.,,gold0-orig,pos,unl,unl,unl,n/a,\"Stepping away, someone reaches into his supply pack and pulls out a knife with a six inch blade.\",Someone\nlsmdc3060_SANCTUM-29399,12019,Someone breaks off muttering and opens his eyes. She,flashes a meek smile.,puts her hair around him.,inserts the key in the lock.,enters to pick up a phone.,gazes at the ceiling floor.,gold0-reannot,pos,unl,unl,unl,unl,Someone breaks off muttering and opens his eyes.,She\nlsmdc3060_SANCTUM-29399,12014,He sits him down and hands him a rebreather. Someone,puts it to his mouth.,\"trails her, an understands sinking.\",rests his hand in it.,steps towards the white door.,stops and starts for the door.,gold0-reannot,pos,unl,unl,pos,pos,He sits him down and hands him a rebreather.,Someone\nlsmdc3069_THE_BOUNTY_HUNTER-4610,4149,\"He hits the disconnect button. Now, in someone's pink - tiled bathroom, someone searches a vanity then\",picks through dirty laundry strewn around the tub.,resumes playing her partially elmo bag.,\"twirls around the present, then turns away and finds someone comforting him.\",sketches an exam chair to clean her naked leg in a mirror.,,gold1-orig,pos,unl,unl,unl,n/a,He hits the disconnect button.,\"Now, in someone's pink - tiled bathroom, someone searches a vanity then\"\nlsmdc3069_THE_BOUNTY_HUNTER-4610,4150,\"Now, in someone's pink - tiled bathroom, someone searches a vanity then picks through dirty laundry strewn around the tub. She\",finds a bar coaster in a pair of jeans.,brushes her hair out.,tosses phial at the driver on the dresser.,dips the cloth in the glossy bag and brings the cloth out of someone's chair.,takes her pan from the open cabinet and chucks it in a sink.,gold0-orig,pos,unl,unl,unl,unl,\"Now, in someone's pink - tiled bathroom, someone searches a vanity then picks through dirty laundry strewn around the tub.\",She\nanetv_0_-Q1zOC3Kw,5151,A small group of people are seen sitting around a classroom with one playing the harmonica. One woman,is seen dancing around behind him as he continues to play the instrument.,stops playing and pushes the men around.,is speaking while speaking to the band then wraps his arm around the audience.,plays hop scotch while several others watch the match.,is seen moving in and out of frame interviewed followed by another group of people standing around him.,gold0-orig,pos,unl,unl,unl,pos,A small group of people are seen sitting around a classroom with one playing the harmonica.,One woman\nanetv_0_-Q1zOC3Kw,8100,A woman in the back of a classroom dances away to the music of the harmonica. Kids around the man,listen to his performance.,is strumming the guitar on the table.,clap and run in the end.,get into their car.,watch the female play her song.,gold0-orig,pos,unl,unl,unl,unl,A woman in the back of a classroom dances away to the music of the harmonica.,Kids around the man\nanetv_0_-Q1zOC3Kw,8099,A student plays the harmonica in a classroom. A woman in the back of a classroom,dances away to the music of the harmonica.,runs down and helps with the boys.,dances forward on the ground.,is strumming a guitar.,talks to another while playing a violin.,gold0-orig,pos,unl,pos,pos,pos,A student plays the harmonica in a classroom.,A woman in the back of a classroom\nanetv_KNLGluuewIU,16799,A little girl is dancing and singing while seated. they,\"go back and forth between them, singing.\",are engaged in a game of curling.,start dancing down the floor with batons.,sit up and start talking.,engage in a small dance with a glass of water.,gold1-orig,pos,unl,unl,unl,unl,A little girl is dancing and singing while seated.,they\nanetv_KNLGluuewIU,16798,A woman is in a bedroom talking to the camera. A little girl,is dancing and singing while seated.,is demonstrating how to use the floor.,is twirling and dancing in front of a crowd.,is running along a pile of steps in the middle.,plays a harmonica in the rain.,gold0-reannot,pos,unl,unl,pos,pos,A woman is in a bedroom talking to the camera.,A little girl\nanetv_KNLGluuewIU,11129,A girl is seen speaking to the camera and leads into shots of her and young girl singing to the camera. The girls,continue to record themselves and leads into the girl brushing her hair from behind.,continue riding along the water performing various jump and tricks back and fourth on the street.,\"thumbs through up in the ends and cuts it, forming the shapes and pointing to the camera.\",continue moving their legs and moving up and down.,continue moving around the stage and ends by holding a pose in front of a audience.,gold1-reannot,pos,unl,unl,unl,unl,A girl is seen speaking to the camera and leads into shots of her and young girl singing to the camera.,The girls\nanetv_Qf6gZtm9BIg,17395,He gets onto a slack line and starts to cross it. He,falls off onto the grass.,stops spraying and lowers the camera.,scrambles on the board down some stairs and goes along.,holds an elastic trophy.,wrestles with a body of water.,gold1-orig,pos,unl,unl,unl,unl,He gets onto a slack line and starts to cross it.,He\nanetv_Qf6gZtm9BIg,17394,A man is standing outside talking. He,gets onto a slack line and starts to cross it.,picks up a tree and begins talking.,uses a tutorial on how to make a sandwich.,starts talking to the camera while holding a racket.,is riding a bicycle on a dirt road.,gold0-reannot,pos,unl,unl,pos,pos,A man is standing outside talking.,He\nlsmdc0003_CASABLANCA-46924,16220,\"They buy a newspaper and begin to read it. Nearby, a group of frightened French people\",cluster around a loudspeaker on a wagon.,take costumes and walk women having a drink.,pile a paper in a traditional window.,appear outside on the ship.,\"wait at the door, putting on a hat.\",gold1-orig,pos,unl,unl,unl,unl,They buy a newspaper and begin to read it.,\"Nearby, a group of frightened French people\"\nlsmdc0003_CASABLANCA-46924,16217,Tanks rolling down the road toward Paris. A man,sells newspapers to people crowded around him.,wearing a civilian's punches pushes someone into the car.,gives a 08 - doubtfully blonde a pink rucksack.,finds a rifle and a trainer straddles a car wreck.,riding a motorbike approaches someone who passes the man.,gold0-orig,pos,unl,unl,unl,unl,Tanks rolling down the road toward Paris.,A man\nlsmdc0003_CASABLANCA-46924,16219,People sit at a table. They,buy a newspaper and begin to read it.,sit on chairs behind a coats terrace painted before them.,are playing a game of soccer in a jungle.,are chopping several sticks on a cutting board.,look at each other.,gold1-orig,pos,unl,unl,pos,pos,People sit at a table.,They\nlsmdc0003_CASABLANCA-46924,16218,A man sells newspapers to people crowded around him. People,sit at a table.,see every class turning on the digital garage camera and looking on.,are on a pair of inner tubes.,shown all around an office and others smiles.,scoot away from his friends.,gold0-reannot,pos,unl,unl,unl,unl,A man sells newspapers to people crowded around him.,People\nanetv_xMuC8lmVX3A,18165,She then begins cutting wrapping paper and wrapping it around a box. The woman,wraps the present with her feet and shows it to the camera.,throws the cut cellophane and places it in front of her.,continues cutting the dough and ends by showing her work.,wipes down another cart and then placed it on the table.,writes on wrapping paper and sets her down.,gold0-orig,pos,unl,unl,unl,pos,She then begins cutting wrapping paper and wrapping it around a box.,The woman\nanetv_xMuC8lmVX3A,18164,A woman with no arms is seen speaking to the camera and holding up tools with her feet. She then,begins cutting wrapping paper and wrapping it around a box.,turns around and walks back along the hill while kicking down the camera.,pulls up a large log and puts it into the scissors.,begins doing sit ups in the chair while swinging at cat equipment again.,puts on a rag and tapes them onto a paper holder.,gold1-orig,pos,unl,unl,unl,unl,A woman with no arms is seen speaking to the camera and holding up tools with her feet.,She then\nanetv_xMuC8lmVX3A,10128,The lady demonstrates wrapping gifts using her feet. The lady,cuts the paper with scissors.,continues playing when the lady talks to the camera.,takes the desserts from the box and continues talking to the camera.,shows us the different shapes of the ornaments.,cuts her hair and ends by talking to the camera and styling her hair.,gold1-orig,pos,unl,unl,unl,pos,The lady demonstrates wrapping gifts using her feet.,The lady\nanetv_xMuC8lmVX3A,10132,The lady presents the wrapped gift to us and puts the gift under the tree. We,see the closing screens and titles.,\"the lady shows us the proper way to iron it, and then they rub the pictures together.\",\"view the windows, the lady takes several coats, lipstick, and a duffle bag of a fan.\",unraveling the bush and adds a few of the amber petals.,see surfers bathing purple in the river.,gold0-orig,pos,unl,unl,unl,unl,The lady presents the wrapped gift to us and puts the gift under the tree.,We\nanetv_xMuC8lmVX3A,10127,A lady with no arms sits on the floor in front of a Christmas tree. The lady,demonstrates wrapping gifts using her feet.,removes strips of painting from the pumpkin.,shows the reading tree.,walks towards the camera.,,gold1-orig,pos,unl,unl,unl,n/a,A lady with no arms sits on the floor in front of a Christmas tree.,The lady\nanetv_xMuC8lmVX3A,10130,The lady puts the box on the paper. The lady,wraps the paper around the box and adds tape.,shows the filmed card.,puts the deed onto the bike.,\"lifts her hands up, craning her neck.\",laughs and looks into a gift arena.,gold0-orig,pos,unl,unl,unl,pos,The lady puts the box on the paper.,The lady\nanetv_xMuC8lmVX3A,10131,The lady wraps the paper around the box and adds tape. The lady,presents the wrapped gift to us and puts the gift under the tree.,takes a flash screen.,tapes the wrapping paper with the tissue.,puts gel and gift wrapping paper over a present.,,gold0-orig,pos,unl,unl,unl,n/a,The lady wraps the paper around the box and adds tape.,The lady\nanetv_xMuC8lmVX3A,10129,The lady cuts the paper with scissors. The lady,puts the box on the paper.,puts oil to a pink tier and has some water and paints a bit in paint.,rinses the rag and shows off the pumpkin.,presents the liquor again.,sharpens the knife on the table.,gold0-reannot,pos,unl,unl,unl,unl,The lady cuts the paper with scissors.,The lady\nanetv_xMuC8lmVX3A,10126,We see the opening screen on black. A lady with no arms,sits on the floor in front of a christmas tree.,enters and does head lifts.,holds a picture in front of her.,appear to start singing in the set.,is seen swinging in a pool.,gold0-reannot,pos,unl,unl,unl,unl,We see the opening screen on black.,A lady with no arms\nanetv_Nj_rPQwzllA,7769,He seems to be pretty good at it because it continues to play for quite a while. The host,\"brings him, on one knee a pillow with a new harmonica on it.\",looks over and gives the joke more man.,\"begins talking about getting a good cool ball stroke, while the video clearly shown and suddenly fades.\",is in tv walking with several images of people and talking about the world.,\"does a bow and grabs the instrument, farther away from the stage.\",gold0-orig,pos,unl,unl,unl,pos,He seems to be pretty good at it because it continues to play for quite a while.,The host\nanetv_Nj_rPQwzllA,200,A man is seated behind a large desk. Another man,is sitting in a red chair talking with him.,is doing the machine and cleaning.,starts playing a bass drum.,walks across the room while a woman lays a hand on his arm.,,gold0-orig,pos,unl,unl,pos,n/a,A man is seated behind a large desk.,Another man\nanetv_Nj_rPQwzllA,7768,Once they sit back down they talk for a while and then Neil starts playing the harmonica. He,seems to be pretty good at it because it continues to play for quite a while.,listens to the music and pulls him to him and share a kiss.,draws back from the camera and demonstrates more himself on how to get off the board.,places an arm on her hip and begins to play the drums.,,gold0-orig,pos,unl,unl,unl,n/a,Once they sit back down they talk for a while and then Neil starts playing the harmonica.,He\nanetv_Nj_rPQwzllA,7767,\"On the late night show the guest is Neil Patrick Harris, he is very excited to see a horse come out on stage and jumps up and down very happily. Once they sit back down they talk for a while and then Neil\",starts playing the harmonica.,lets go of the skateboard and continues in every clip.,flips backwards and landed on the deck.,on the coach's tail.,,gold0-reannot,pos,unl,unl,unl,n/a,\"On the late night show the guest is Neil Patrick Harris, he is very excited to see a horse come out on stage and jumps up and down very happily.\",Once they sit back down they talk for a while and then Neil\nlsmdc0006_Clerks-48851,17208,The old man walks off. Someone,heads back to the counter.,rushes over and knocks someone's foot away.,punches someone in the face.,steps out of the minibus.,reaches for the computer unit and picks up a can from the ground.,gold1-orig,pos,unl,unl,unl,unl,The old man walks off.,Someone\nlsmdc3037_IRON_MAN2-16730,11041,\"Someone takes the control unit from someone. In the hangar, someone\",opens a storage room door.,retrieves a scanner and lets himself in.,puts her brow against his shivering chest.,sits down the back of his fishing cage.,sits at a wheel table.,gold0-orig,pos,unl,unl,unl,unl,Someone takes the control unit from someone.,\"In the hangar, someone\"\nlsmdc3037_IRON_MAN2-16730,11043,\"The men exchange salutes and someone walks away. Elsewhere, someone and someone\",sit on a patio overlooking the ocean.,run to a large truck which someone shows to an outdoor one.,drive along a plain platform.,sit on a bench nearby waves.,watch their car cross the bridge.,gold0-orig,pos,unl,unl,unl,pos,The men exchange salutes and someone walks away.,\"Elsewhere, someone and someone\"\nanetv_fxEcsM0EaA4,1389,They switch places and a different person starts jumping. A man,stands and holds the jump rope.,lets the jump rope from the floor into the pool.,practices a hockey in discussing.,is shown in a chair with other people standing behind it.,is shown doing flips where he does it.,gold0-orig,pos,unl,unl,unl,unl,They switch places and a different person starts jumping.,A man\nanetv_yw1IZdbEzck,2659,A woman sits as a man is piercing her nose. He,punctures her nose with a long thin rod.,removes a button pierced child wearing grey brown skin.,puts the contact lens into his eyes.,starts cutting the carpet using a wooden pad.,picks up a razor and is putting it on his hair.,gold0-orig,pos,unl,unl,unl,unl,A woman sits as a man is piercing her nose.,He\nanetv_yw1IZdbEzck,7383,She is being still as he clamps her nose. He then,\"inserts a piercing, making her eyes water.\",gets a piercing and plays a replay of her front arm.,puts the jug into her mouth and scrapes the blood.,uses a tool to escort her from it.,begins brushing his teeth and showing off his facial expression.,gold0-orig,pos,unl,unl,unl,pos,She is being still as he clamps her nose.,He then\nanetv_yw1IZdbEzck,2660,\"He pulls the rod through to insert the jewelry and she begins to bleed. After the jewelry is in, he\",begins to clean off the blood.,plays an electric fishing rod.,puts it into his own mouth.,grabs her folded foil and starts wrapping it seductively under her suspicious gaze.,,gold0-orig,pos,unl,unl,unl,n/a,He pulls the rod through to insert the jewelry and she begins to bleed.,\"After the jewelry is in, he\"\nanetv_yw1IZdbEzck,7382,A man is wearing gloves while working with a woman. She,is being still as he clamps her nose.,uses a flare to lay it down as she talks.,uses the needle to adjust the seat in front of her.,starts cutting a rope attached to an oar.,uses the utility knife to cover her hair.,gold1-orig,unl,unl,unl,unl,unl,A man is wearing gloves while working with a woman.,She\nlsmdc3084_TOOTH_FAIRY-39967,16232,The cagey fairy waves him over. Someone,points quizzically at himself and the fairy nods.,gawks at his young couple.,\"smiles faintly at the youth, then takes off his sunglasses.\",continues eating and staring at the young man.,hands her money to someone.,gold0-orig,pos,unl,unl,unl,pos,The cagey fairy waves him over.,Someone\nlsmdc3084_TOOTH_FAIRY-39967,16233,Someone points quizzically at himself and the fairy nods. He,opens a display pouch and shows magic supplies.,steers off towards another part of the bank's main walkway.,gives an appreciative nod and pulls his jacket closed.,says nothing and slowly lowers his head.,faces his men coldly.,gold0-orig,pos,unl,pos,pos,pos,Someone points quizzically at himself and the fairy nods.,He\nlsmdc3084_TOOTH_FAIRY-39967,16235,He turns see through but does n't disappear. A woman,sees his ghostly form on her way out.,smashes into a beautiful man.,marches away to a tunnel.,is crying as she comes face to face with someone.,sits from the couch and glares at him.,gold0-orig,pos,unl,unl,unl,pos,He turns see through but does n't disappear.,A woman\nlsmdc3084_TOOTH_FAIRY-39967,16231,He storms out into a corridor. A cagey fairy,waits for him as he passes through a doorway.,appears at the bar.,subsides someone stares open - mouthed.,\"topples the door, then turns back to start in the corridor.\",features appears in the reflection flashes of his eyes.,gold1-orig,pos,unl,unl,unl,unl,He storms out into a corridor.,A cagey fairy\nlsmdc3084_TOOTH_FAIRY-39967,16239,\"Smacking his lips, he goes back to normal. Instead of shrinking, someone's head\",stretches like a balloon.,drops in front of him and opens his mouth to speak.,rolls down on top of the sink.,flies toward the mattress.,rises along the floor and burst out falling.,gold0-orig,pos,unl,unl,unl,unl,\"Smacking his lips, he goes back to normal.\",\"Instead of shrinking, someone's head\"\nlsmdc3084_TOOTH_FAIRY-39967,16243,Someone appears in front of him. The others,can't see someone.,stride towards releasing a gust of wind coming up behind him down his back window.,are tied up in the cab.,\"gather in the tents, amid the dead horns.\",look up as he lose his grip.,gold1-orig,pos,unl,pos,pos,pos,Someone appears in front of him.,The others\nlsmdc3084_TOOTH_FAIRY-39967,16236,A woman sees his ghostly form on her way out. Someone,examines his transparent hands.,\"sequence of dead men's various members, moving strongly.\",\"sits leaning against a wall, watching someone cross a journal.\",skiptracer takes a seat presenting someone to the driver and pulls off her jacket.,,gold0-reannot,pos,unl,unl,unl,n/a,A woman sees his ghostly form on her way out.,Someone\nlsmdc3084_TOOTH_FAIRY-39967,16238,\"Someone eats some shrinking paste. Smacking his lips, he\",goes back to normal.,takes off his skeleton helmet.,sucks down a straw.,screws up his entire hand.,returns to his vehicle.,gold1-reannot,pos,unl,unl,unl,pos,Someone eats some shrinking paste.,\"Smacking his lips, he\"\nlsmdc3084_TOOTH_FAIRY-39967,16241,His ears spring out as his head grows too big for his body. The fairy's head,returns to the right size.,drops to almost every swing.,shows punch powder darkness filling the streets with arrival and authority.,looms almost unopened against the door.,,gold0-reannot,pos,unl,unl,pos,n/a,His ears spring out as his head grows too big for his body.,The fairy's head\nlsmdc3084_TOOTH_FAIRY-39967,16234,\"In front of a house, someone sprays himself down. He\",turns see through but does n't disappear.,sprays a patio window into a mask.,pauses around then makes his way toward the stage.,rides down in a cab and lies on his back.,\"catches up guy, who easily wraps a blanket around his torso and yanks him against a wall in a branch.\",gold0-reannot,pos,unl,unl,unl,unl,\"In front of a house, someone sprays himself down.\",He\nlsmdc3084_TOOTH_FAIRY-39967,16240,\"Instead of shrinking, someone's head stretches like a balloon. His ears\",spring out as his head grows too big for his body.,unmistakably gets close to the other man.,move towards an ornate barrel shaped clamp and container with two gear on it.,\"are dirty and the old white collar, his hair hanging from the sides, pulls up.\",\"pop open as he peers through a windshield, peering through a window at his enormous enclosure.\",gold0-reannot,pos,unl,unl,pos,pos,\"Instead of shrinking, someone's head stretches like a balloon.\",His ears\nlsmdc3084_TOOTH_FAIRY-39967,16242,\"Now, someone sits in a police department holding cell with four other detainees. Someone\",appears in front of him.,gives a smile of realization then leaves.,pulls into an apartment room and studies someone.,runs over to him.,holds up the newspaper.,gold1-reannot,pos,unl,unl,pos,pos,\"Now, someone sits in a police department holding cell with four other detainees.\",Someone\nanetv_q4M7SsGjFro,18987,The girls finishes and throws her arms in the air. The girl,walks over and hugs her dad.,performs removing her gloves.,finishes the routine and kisses the people.,throws her arms through the air and cheers the people.,smiles and claps her hands.,gold1-orig,pos,unl,unl,pos,pos,The girls finishes and throws her arms in the air.,The girl\nanetv_q4M7SsGjFro,18986,The girl kneels down and picks up a baton. The girls,finishes and throws her arms in the air.,\"run to the girl, twirling her gazes at her audience.\",performs a series of flips and flips while the first girl of the studio fall.,is practicing stealing toys.,begin several batons up to the floor and when people grab on and stop throwing the batons twirl like rags in the air.,gold0-reannot,pos,unl,unl,unl,unl,The girl kneels down and picks up a baton.,The girls\nanetv_q4M7SsGjFro,18984,We see a girl performing with batons. The girl,throws her leg in the air and spins.,performs a long jump.,continues to dance after the frisbees.,kicks some more people in the audience as the team moves back and forth.,stands dancing and holds her fists and flip.,gold1-reannot,pos,unl,unl,unl,pos,We see a girl performing with batons.,The girl\nanetv_8v2ewQE-QK0,1556,People are sitting on large benches inside the church. a wooden urn,is in the middle of the church with a flag on top.,\"appears, facing up to the ceiling.\",hangs scattered on the ground.,is sitting on a bench in the middle of the room while a ceiling of a long courtroom is shown.,is standing on the veranda watching them and waving to the camera inside.,gold0-orig,pos,unl,unl,unl,unl,People are sitting on large benches inside the church.,a wooden urn\nanetv_8v2ewQE-QK0,1555,A marching band is standing in front of a church. people,are sitting on large benches inside the church.,drag the girl indoors.,are standing on a large court playing a game of croquette.,'s outside playing progress and another man.,are playing instruments before a marching band.,gold1-orig,pos,unl,unl,unl,pos,A marching band is standing in front of a church.,people\nanetv_8v2ewQE-QK0,4070,A funeral is in progress inside a building. A band,marches in and plays music.,is playing croquet in the field.,stands on the outside of the street.,is gathered around a fence.,plays at a bicycle park.,gold0-orig,pos,unl,unl,unl,unl,A funeral is in progress inside a building.,A band\nanetv_Tk3zk2pJ9KA,7454,The sun rises and more shots of landscapes are shown as well as animals in the area. People,are then seen riding around on a boat through a tough river and end with a plane flying over the area.,\"are shown performing on the tables, or no one speaking to them.\",are then seen walking amid traditional landscapes and clip pumpkins.,look from the ornaments.,are shown running push horses while others more paintball.,gold0-reannot,pos,unl,unl,unl,unl,The sun rises and more shots of landscapes are shown as well as animals in the area.,People\nanetv_Tk3zk2pJ9KA,7453,A camera pans over several landscapes located in the desert as well as the night sky moving around. The sun rises and more shots of landscapes,are shown as well as animals in the area.,are shown as well as several more clips of people in skiing gear shooting through the water.,are shown of people riding on the beach as well as paddles and cheering.,are shown as well as people clapping and the camera pans all around the field.,are shown as well as people running around the area.,gold0-reannot,pos,unl,pos,pos,pos,A camera pans over several landscapes located in the desert as well as the night sky moving around.,The sun rises and more shots of landscapes\nlsmdc1014_2012-79558,34,He makes to move away. She,puts her arms around his neck and kisses him more intensely.,\"does, but his place is n't there.\",has a clear feeling for the reptilian legs under wing over his heads.,turns to his approach.,points at the boot.,gold1-orig,pos,unl,unl,pos,pos,He makes to move away.,She\nlsmdc1014_2012-79558,32,They are both on their feet. He,walks over to her.,position their hands hands as they dance.,\"are hiding, screaming at each other.\",nudges and makes his way to the next gap.,bends down and begins to help.,gold0-orig,pos,unl,unl,pos,pos,They are both on their feet.,He\nlsmdc1014_2012-79558,33,He walks over to her. He,makes to move away.,bends even as his photographer snaps his view and sees someone talking.,lifts his shoulder and pats her head.,\"stops the car, then stares ahead.\",\"glances at the woman, then turns away.\",gold1-orig,pos,unl,pos,pos,pos,He walks over to her.,He\nanetv_K6Tm5xHkJ5c,13802,A woman is standing on a lit stage. She,is holding an accordian as she talks.,begins dancing with a new set.,is standing next to him.,is playing small flute with her hands held up to her lips.,,gold1-orig,pos,unl,unl,unl,n/a,A woman is standing on a lit stage.,She\nanetv_K6Tm5xHkJ5c,2082,A woman is seen speaking to the camera while holding an accordion and and moving her hands around. She,demonstrates how to play the instrument while still speaking to the camera and moving all around.,continues to play with strings with her fingers while smiling while looking off into the distance.,stops playing and shows it to the camera and describes the hilt soda.,continues playing the flute while moving her hands in the air and laughing.,begins playing with the instrument while still playing the instrument while speaking to the camera and speaking.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while holding an accordion and and moving her hands around.,She\nanetv_aF0gDTbcOxE,12844,Several clips are shown of robots fighting one another as well as the inside and outside of a building. More robots,are shown close up as well as people adjusting the robots and setting them down to fight.,pans around the men and begin fencing with one another.,are shown as well as jumping up and down as the groups continue play together.,are seen followed by people dancing as well as people helping themselves.,are shown as well as close ups of various objects and text cutting.,gold0-orig,pos,unl,unl,unl,unl,Several clips are shown of robots fighting one another as well as the inside and outside of a building.,More robots\nanetv_aF0gDTbcOxE,12845,More robots are shown close up as well as people adjusting the robots and setting them down to fight. The people,continue using the robots and end by shaking hands and bowing with another man.,throw the stick into the air and hit pins.,continue turning around in the water while the camera captures his movements.,continue to compete again while the camera captures their movements.,,gold1-orig,pos,unl,unl,pos,n/a,More robots are shown close up as well as people adjusting the robots and setting them down to fight.,The people\nanetv_CQXhtaNkhrw,19503,A man with white hair plays an accordion on a stage. The man,smiles and looks around while performing.,smiles and talks about the harmonica.,raises his head and waves his arms in it silently.,points to the microphone.,does several types of exercise.,gold0-orig,pos,unl,unl,unl,unl,A man with white hair plays an accordion on a stage.,The man\nanetv_CQXhtaNkhrw,19504,The man smiles and looks around while performing. The man,moves to the music while playing and grabs the microphone and speaks into the microphone as he completes his performance.,\"dismounts and uses the disk to push, who flips the closing box to give people.\",continues cooking as the camera pans around to some other people sitting around the table.,holds up the man's legs while the other smiling it in front is discussing.,looks up then padding away and sticks something back from his table.,gold0-orig,pos,unl,unl,unl,unl,The man smiles and looks around while performing.,The man\nanetv_CQXhtaNkhrw,10300,A man is seen sitting on stage holding an accordion in his hands. The man then,begins playing the instrument while looking off into the distance.,begins playing several drums while looking off into the distance.,begins smoking a piece of paper speaking to the camera.,begins playing a harmonica while speaking to the camera while still smiling to the camera.,plays a harmonica with the host while others.,gold0-orig,pos,unl,unl,unl,unl,A man is seen sitting on stage holding an accordion in his hands.,The man then\nanetv_CQXhtaNkhrw,10301,The man then begins playing the instrument while looking off into the distance. The man,continues playing while smiling to the camera and stops playing in the end.,continues moving his arms by the camera while looking off into the distance.,plays the instrument in slow motion.,continues to play along with the cat and ends by grabbing a guitar.,\"continues moving his hands up and down, moving up and down the instrument.\",gold0-reannot,pos,unl,unl,unl,pos,The man then begins playing the instrument while looking off into the distance.,The man\nanetv__tPDUYSu1IQ,1407,There are two men elbow wrestling on a table. There,are several people are watching them wrestle.,crowd in front of a tv set is shown.,as small make and feet for the rest.,is holding two papers on the side and the guy steps up to the cards.,are in a game and people are sitting at a table with one another.,gold0-orig,pos,unl,unl,unl,pos,There are two men elbow wrestling on a table.,There\nlsmdc1014_2012-79071,8802,Someone pulls up behind the plane. Someone,rushes over as someone emerges.,watches the bomb burn at his room.,pauses and faces the surveillance monitor.,\"gets into the water, staring back at the window.\",jumps up and down a railing.,gold0-orig,pos,unl,pos,pos,pos,Someone pulls up behind the plane.,Someone\nlsmdc1014_2012-79071,8807,\"At the plane's controls, someone looks over his shoulder. Someone\",sets the plane moving.,opens a cheesecake box.,gets into the mercedes.,takes off his helmet.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the plane's controls, someone looks over his shoulder.\",Someone\nlsmdc1014_2012-79071,8803,Someone rushes over as someone emerges. Someone,hurries back to the plane with someone.,stands at the end of the staircase ladder.,\"nods, turns around and smiles warmly at her.\",falls face down on the table and haggard.,,gold0-orig,pos,unl,unl,unl,n/a,Someone rushes over as someone emerges.,Someone\nlsmdc1014_2012-79071,8806,\"Someone falls along the center aisle. At the plane's controls, someone\",looks over his shoulder.,glares at the board.,wheels the boat recede between front of the sedan.,stands with her laptop covered on her armpits.,stares piercingly at the destroyer's weapon.,gold1-orig,pos,unl,unl,unl,unl,Someone falls along the center aisle.,\"At the plane's controls, someone\"\nlsmdc1014_2012-79071,8805,Someone finds a london tube map. Someone,falls along the center aisle.,\"tosses the white heart over, then sips by a big shot with coffee.\",follows someone two quick steps.,checks for his clock and puts it down.,holds up the wedding papers.,gold1-reannot,pos,unl,unl,unl,unl,Someone finds a london tube map.,Someone\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95652,14638,Someone looks at the solid brick wall. He,\"aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side.\",removes a white bronze helmet.,saunters over and lands of a rocky storm.,moves on to the screen in his side view mirror.,looks around and opens the crowd delighted to see someone's magazine.,gold0-orig,pos,unl,unl,unl,unl,Someone looks at the solid brick wall.,He\nlsmdc1053_Harry_Potter_and_the_philosophers_stone-95652,14639,\"He aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side. He\",pushes his trolley on to platform 9 and three - quarters.,takes the ankle for someone.,\"hesitates through the open door, waiting for his order.\",follows someone as antonio moves past a high stairs.,stares at the picture.,gold0-reannot,pos,unl,pos,pos,pos,\"He aims his trolley, takes a deep breath, runs straight at the wall, and finds himself safely on the other side.\",He\nanetv_lwXIgNoLGhM,2138,We see the people in the woods in paint ball gear. We,see an empty metal tank.,see the ladies cutting the teens getting ready to carry off.,see the title and tongue out.,see a man playing foosball sports.,see an stadium on the mountains.,gold0-orig,pos,unl,unl,unl,unl,We see the people in the woods in paint ball gear.,We\nanetv_lwXIgNoLGhM,2139,We see an empty metal tank. We,see the people in the woods again.,see a name on a skateboard in the door.,see a track on the screen.,see the pink opening screen.,see the man put the object in the air.,gold1-orig,pos,unl,pos,pos,pos,We see an empty metal tank.,We\nanetv_lwXIgNoLGhM,2135,We see people in a field holding flags. We,see people playing paintball in the woods.,see a child looking in the middle of the room clapping.,see the ladies perform arm wrestling and a man in a red coat talks to another lady.,see a girl sitting on a blue mat on the left and the man charges and slap the boy.,see the team practicing intensely and several people in a competition.,gold0-orig,pos,unl,unl,unl,pos,We see people in a field holding flags.,We\nanetv_lwXIgNoLGhM,2136,We see people playing paintball in the woods. We,see people in lines like soldiers.,see people riding horses in an arena.,see them flying in the dirt.,see a yellow handle getting ready.,see a little girl spraying the food with soapy water.,gold0-orig,pos,unl,unl,unl,unl,We see people playing paintball in the woods.,We\nanetv_lwXIgNoLGhM,2137,We see people in lines like soldiers. We,see the people in the woods in paint ball gear.,juggling rifles almost rounds the corner of the building.,\"they are throwing, man at the base of the mound also looks up to hit the man.\",see a car asking a man and a friend wearing a ring.,activity is surrounded by unfinished buildings.,gold0-orig,pos,unl,unl,unl,unl,We see people in lines like soldiers.,We\nanetv_3UOWHwwxczI,6277,A man is seen speaking to the camera and leads into clips of him climbing along a wall. The man,continues climbing along the rock wall and ends by looking back to the camera.,continues to ride around back and fourth while others watch on the side.,continues speaking to the camera and showing the end of her cigarette.,walks quickly along the grass while the camera pans around and shows shots of people working out.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera and leads into clips of him climbing along a wall.,The man\nlsmdc1001_Flight-71891,18584,Someone sits on the bed. She,ends a call and continues packing her things in the bedroom.,stands forward and begins with dresses.,rides among the texts from a family.,eyes green from her.,eyes the gentle fireplace.,gold0-orig,pos,unl,unl,unl,unl,Someone sits on the bed.,She\nanetv_whJ6ESGNoyY,8081,There is someone walking two small dogs on the pavement. The dogs,walk into the grass to bark at something and keep walking.,approaches with their dogs.,play and the judge gives the boy money.,cut up and begin cleaning dogs with a leaf dog.,are having the same time running down a sidewalk.,gold0-orig,pos,unl,unl,unl,unl,There is someone walking two small dogs on the pavement.,The dogs\nanetv_whJ6ESGNoyY,8083,\"While they're walking, they bump their heads together. The woman walking them\",tries to get the out of the grass.,pulls down chocolate table of red lights.,runs and picks supplies.,\"ends, leaving someone alone in his room.\",is just shoot the cup ball.,gold0-orig,pos,unl,unl,unl,unl,\"While they're walking, they bump their heads together.\",The woman walking them\nanetv_whJ6ESGNoyY,13891,Two dogs are walking on leashes on a trail. A woman,is walking next to them holding their leashes.,is walking out of the stands outside a building.,is sitting in a nearby pot.,walks over to the hummer and drives.,,gold0-orig,pos,unl,unl,unl,n/a,Two dogs are walking on leashes on a trail.,A woman\nanetv_whJ6ESGNoyY,8082,\"The dogs walk into the grass to bark at something and keep walking. While they're walking, they\",bump their heads together.,are watching a log talking.,have the fence following behind them.,bejeweled disbelievingly and put it back on the table.,stop going and also start walking.,gold0-orig,pos,unl,unl,unl,unl,The dogs walk into the grass to bark at something and keep walking.,\"While they're walking, they\"\nanetv_whJ6ESGNoyY,13892,A woman is walking next to them holding their leashes. They,walk next to a trash can in the grass.,pour puddles in the water.,draw the snow into an enclosed green field.,are getting ready to slide down a snowy slope.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is walking next to them holding their leashes.,They\nanetv_JHHHuKeA-WQ,2836,A man spins a blindfold woman holding a stick who is on front a pinata. A man,takes picture to the blindfold woman.,\"walks behind the men, play a set of drums and then begins to play the drums.\",\"holds up a person that becomes only four legs, and starts whining like kids.\",is shown throwing off the other side of the table.,,gold0-orig,pos,unl,unl,unl,n/a,A man spins a blindfold woman holding a stick who is on front a pinata.,A man\nanetv_JHHHuKeA-WQ,2839,\"Unexpectedly, the body of the pinata falls while the head is still hung. After, the girl hit the head of the pinata, then she\",takes off the cloth on his eyes and hit the pinata on the floor.,danced on the ground.,went back into the swing.,receives a ball for the little boy.,,gold0-orig,pos,unl,unl,pos,n/a,\"Unexpectedly, the body of the pinata falls while the head is still hung.\",\"After, the girl hit the head of the pinata, then she\"\nanetv_JHHHuKeA-WQ,2838,\"The girl try to hit the pinata that is moving around without success. Unexpectedly, the body of the pinata\",falls while the head is still hung.,come around and ripped the pinata.,is seen in the corner of the room.,spins itself over and over to two other girls.,jumps up and falls over her spin.,gold0-orig,pos,unl,unl,unl,unl,The girl try to hit the pinata that is moving around without success.,\"Unexpectedly, the body of the pinata\"\nanetv_JHHHuKeA-WQ,2837,A man takes picture to the blindfold woman. The girl,try to hit the pinata that is moving around without success.,sits up and begins to dance.,picks up an ice cream and eats it.,finishes her fiddle with her doll.,,gold0-orig,pos,unl,pos,pos,n/a,A man takes picture to the blindfold woman.,The girl\nanetv_JHHHuKeA-WQ,6659,She moves around to disorient herself. She then,\"swings the stick, trying to hit a pinata that gets pulled out of her way.\",picks out the material and starts working out.,offers it a beer.,grabs the iron off a hanger and throws it onto the board.,dismounts as the male resumes.,gold0-reannot,pos,unl,unl,unl,unl,She moves around to disorient herself.,She then\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9141,People stride through Orthanc toward a stone plinth on which a sphere like shape is draped with a cloth. Someone,lifts the cloth to reveal the palantir.,is on the lapel.,wears a mirthfully with green capes.,fires at the inn.,,gold0-orig,pos,unl,unl,unl,n/a,People stride through Orthanc toward a stone plinth on which a sphere like shape is draped with a cloth.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9143,Someone sits upon his throne. Someone,backs away and turns to run to the door.,is putting dinner in a pot.,\"stretches his arm out, stands up, and strikes a pose before the picture.\",leans over the rail and plants a tender kiss on his lips.,,gold0-orig,pos,unl,unl,unl,n/a,Someone sits upon his throne.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-59972,9142,Someone lifts the cloth to reveal the Palantir. Someone,sits upon his throne.,remain asleep as someone rolls over to see at the animal where someone was lying just and lies awake.,yanks the bottle close to the female manager.,watches someone as the memory resumes.,picks up the grail diary and flings it down.,gold1-orig,unl,unl,unl,unl,unl,Someone lifts the cloth to reveal the Palantir.,Someone\nanetv_zDBpa2miW8A,18287,A man walks out wearing funny attire and showing off to the camera with a lawn mower. The man then,walks around and blows the leaves off still wearing the funny outfit.,leaves the mower and places his hands on.,begins hitting the birdie around until it is done.,goes down the lawn.,,gold0-orig,pos,unl,unl,pos,n/a,A man walks out wearing funny attire and showing off to the camera with a lawn mower.,The man then\nanetv_zDBpa2miW8A,18286,An intro starts entitled how to cut the grass. A man,walks out wearing funny attire and showing off to the camera with a lawn mower.,puts a handful of potatoes onto the table.,gives the trimmer to fence on the side.,began cutting the grass using an electric blower.,,gold0-orig,pos,unl,unl,unl,n/a,An intro starts entitled how to cut the grass.,A man\nlsmdc1026_Legion-5559,17319,\"Someone glances down at someone, who is crouched low, leaning against a ledge. Someone\",looks around at someone.,\"follows someone through the glass, smoking a cigarette.\",defensively taps on his bonds and points to an opposing number.,pulls a plastic case over its rim.,watches someone scurry away.,gold1-orig,pos,unl,unl,pos,pos,\"Someone glances down at someone, who is crouched low, leaning against a ledge.\",Someone\nlsmdc1026_Legion-5559,17317,\"Outside, intermittent bright flashes illuminate the horizon. Someone\",is on the roof with someone.,walking down a medieval staircase.,stands alone in the tiny cave.,checks out the wedding ring.,,gold0-orig,pos,unl,unl,unl,n/a,\"Outside, intermittent bright flashes illuminate the horizon.\",Someone\nlsmdc1026_Legion-5559,17318,Someone is on the roof with someone. Someone,\"glances down at someone, who is crouched low, leaning against a ledge.\",'s head dangles from his shadows on the stairs.,is looking out of the windows watching the race.,\", with an nco, is silhouetted and engrossed in his sleep.\",pauses and looks ahead.,gold0-reannot,pos,unl,unl,unl,pos,Someone is on the roof with someone.,Someone\nlsmdc3089_XMEN_FIRST_CLASS-43353,1560,Someone's face falls and he glances away. She,stares into his eye.,puts her fingers and counts the document.,gives a nod and say goodbye.,smiles towards her table.,\"sits up, listening.\",gold1-orig,pos,unl,pos,pos,pos,Someone's face falls and he glances away.,She\nlsmdc3089_XMEN_FIRST_CLASS-43353,1559,\"He taps the syringe's barrel, then prepares to inject. He\",gives her a puzzled look.,sits on top of the stove.,throws the knife correctly.,gets out of bed.,grabs a piece of metal that throws him under the other punch.,gold1-orig,pos,unl,unl,unl,unl,\"He taps the syringe's barrel, then prepares to inject.\",He\nlsmdc3089_XMEN_FIRST_CLASS-43353,1557,\"Grinning, someone opens it and finds two syringes with needles inside. Someone\",sits across from her.,collects another note from the barrel and sets it down.,pauses outside in their driver's seat.,reaches for someone's crotch.,pulls out another pipe and smashes another blade onto someone's face.,gold0-orig,pos,unl,unl,unl,unl,\"Grinning, someone opens it and finds two syringes with needles inside.\",Someone\nlsmdc3089_XMEN_FIRST_CLASS-43353,1561,\"She averts her outraged gaze. Holding up the shot, he\",\"gives a firm nod, then stands and heads out of the room.\",\"stands up onto an elevated platform, shifting as he launches himself onto his feet then marches out on the set.\",steps up and follows her feet.,\"sets down poles, bumping into some boulder undergrowth.\",\"glances quizzically at her, then obeys.\",gold0-orig,pos,unl,unl,unl,pos,She averts her outraged gaze.,\"Holding up the shot, he\"\nlsmdc3089_XMEN_FIRST_CLASS-43353,1558,Someone sits across from her. Someone,stares with a conflicted gaze.,whips down her golf.,holds up a bottle of gryffindor.,is stiffly next to the newspaper.,looks out of the window.,gold0-orig,pos,unl,unl,unl,unl,Someone sits across from her.,Someone\nanetv_lHy_OZ8GygM,2530,\"The woman cuts the hair of a young man using first a machine, and then a comb and scissors. Then, the woman\",dry the hair with a dryer and brush the head.,put a stencil on the polish and begins to pick up the leaves and using her hands.,demonstrates how the rake with the hair of the dog.,wets the pacifier and puts her hair near the man's dryer.,applies a comb with the brush and after her braids the young woman to the center back to show of braiding.,gold0-orig,pos,unl,unl,unl,unl,\"The woman cuts the hair of a young man using first a machine, and then a comb and scissors.\",\"Then, the woman\"\nanetv_lHy_OZ8GygM,2531,\"Then, the woman dry the hair with a dryer and brush the head. After, the woman\",takes cream on her hands and comb the head of the man with her fingers to gives form to the hair.,puts the leaves in a glass and put the hair on the scarf and moisturizer the hair into a healthy pile.,put the ribbon on the cloth and adds the final look to the man's stern head or brush.,makes the braid and puts on the seafood.,\"tapes her hair and brush off the side dryer, and after the old woman covers of it.\",gold1-orig,pos,unl,unl,unl,unl,\"Then, the woman dry the hair with a dryer and brush the head.\",\"After, the woman\"\nanetv_lHy_OZ8GygM,2529,\"A woman wash the head of a man and cuts his hair, then the woman stands next two man an touch the head of the young man. The woman\",\"cuts the hair of a young man using first a machine, and then a comb and scissors.\",starts cutting past the living room and down a living room to another man working with curlers.,puts cream on the neck of his hair to make the two curlers put their glasses and tie them.,removes shaving gel from his skin to see multiple fingernail tires on her leg.,\"leans in background, bending to make sure no makeup.\",gold0-orig,pos,unl,unl,unl,unl,\"A woman wash the head of a man and cuts his hair, then the woman stands next two man an touch the head of the young man.\",The woman\nanetv_biyf6Q-xF0M,13099,The man then unloads more pumpkins from a truck. the man then,carves the pumpkins and puts them on display.,adjusts the washer and adjusts the handle.,carves an object with a tool and shows a tree covered with a paintbrush.,begins swimming with other skiers.,removes items from the vacuum and places it back on.,gold0-orig,pos,unl,unl,unl,unl,The man then unloads more pumpkins from a truck.,the man then\nanetv_biyf6Q-xF0M,13098,A man is standing over a row of pumpkins. the man then,unloads more pumpkins from a truck.,begins painting the three piece of wood together.,washes them in handing the wooden board a brush.,begins mowing the lawn.,,gold1-orig,pos,unl,unl,unl,n/a,A man is standing over a row of pumpkins.,the man then\nanetv_biyf6Q-xF0M,5025,\"A woman talks about him as he carves the pumpkins and people watch. At the end, a pumpkin with the words we miss you edgar\",\"are shown, indicating the man had passed away.\",use before then create a design on a brick wall.,is talking to the camera in a red court and a man wearing a t shirt who is cutting the red tams.,see the examined light on polishes are shown.,,gold0-orig,pos,unl,unl,unl,n/a,A woman talks about him as he carves the pumpkins and people watch.,\"At the end, a pumpkin with the words we miss you edgar\"\nanetv_biyf6Q-xF0M,5023,\"There is a building made of bricks, and a man with an array of predecorated pumpkins. He\",\"talks to the camera, then is shown handing and stacking the pumpkins for the public.\",continue rubbing the pumpkin to the pumpkin.,is also showing professionals with images of video of the very detailed detail.,have a tie all around it.,,gold0-orig,pos,unl,unl,unl,n/a,\"There is a building made of bricks, and a man with an array of predecorated pumpkins.\",He\nanetv_biyf6Q-xF0M,5024,\"He talks to the camera, then is shown handing and stacking the pumpkins for the public. A woman\",talks about him as he carves the pumpkins and people watch.,walks across the room while adjusting her bike.,gets to the end of the box with the items on someone's lap and scratches the left.,looks over at all the criquet clear paint on the quad.,,gold0-orig,pos,unl,unl,unl,n/a,\"He talks to the camera, then is shown handing and stacking the pumpkins for the public.\",A woman\nanetv_zc7_D9RiOY0,11006,A scuba diver is under the water wearing oxygen in he mouth. The diver,\"is holding his eye mask, and put it on.\",begins snowboarding along a red hill with a boy doing a jump in the water.,talks to the goers from the workout in slow motion.,flips an individual in s rear view backwards.,,gold1-reannot,pos,unl,unl,unl,n/a,A scuba diver is under the water wearing oxygen in he mouth.,The diver\nanetv_o8qR72Ymru8,15328,A close up of trees are shown followed by a person kicking leaves and laying down objects. A man,\"is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire.\",brushes the cat's nails followed by clips of the tattoo and pictures of them on various cats and nail drawers.,\"is then shown raking leaves in the yard, then continues skateboarding around an area of grass.\",is seen speaking to the camera in a pile of shots bowling into a pile of balls while gets off to work them.,is seen pushing the parts all around the sky while still speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,A close up of trees are shown followed by a person kicking leaves and laying down objects.,A man\nanetv_o8qR72Ymru8,15330,The man has trouble lighting the fire when another person comes in and also attempts to light a fire. The men,continue trying and eventually get the fire going with another boy walking into frame and leaving unimpressed.,begin to move in the same pit while their patients are moving.,continue to play the sand plant quickly as well as separate them from another shot.,play several logs in the road throwing the tray while ending the bow up and smiling.,continue performing searching and looking towards the camera.,gold0-orig,pos,unl,unl,unl,pos,The man has trouble lighting the fire when another person comes in and also attempts to light a fire.,The men\nanetv_o8qR72Ymru8,15329,\"A man is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire. The man\",has trouble lighting the fire when another person comes in and also attempts to light a fire.,\"then cleans a person holding doors and a pool of red all past several men, and they begin playing outdoor against one another.\",is seen looking out the window again.,shows the it individually how to put a wax seal on the end and the person applies it into a protective container.,walks across the frame from a container as well as tools and packs up a hat then pauses to talk to the camera.,gold0-orig,pos,unl,unl,unl,unl,\"A man is then seen rubbing his hands, pitching a tent, and laying stacks of wood together to create a fire.\",The man\nanetv_o8qR72Ymru8,10931,The boy begins kicking leaves. the boy,then warms his hands and builds a tent.,walk on the boy and continue to scurry away.,continues to gaze on the floor.,falls back and tries on the ground.,,gold1-reannot,pos,unl,pos,pos,n/a,The boy begins kicking leaves.,the boy\nanetv_HwRiUpC5mf4,1469,A family stands around a sitting camel while the little boy pats his head. The camel,stands up and walks off with the family riding on its back.,rides another camel around the camel.,continues cleaning clothes while banging with a wooden camel in front of him.,blows away with a frown.,walks up and sticks it in his mouth.,gold1-orig,pos,unl,unl,unl,unl,A family stands around a sitting camel while the little boy pats his head.,The camel\nanetv_HwRiUpC5mf4,9303,There are 3 people in the desert. a boy,is shown petting the camel.,runs on top of a tree in a green grassy field.,is doing tricks in a large sand pit while people watch the surf.,holding a mace is seen squeezing some nuts and swinging on the front seat.,is operating a white canvas.,gold0-orig,pos,unl,unl,unl,unl,There are 3 people in the desert.,a boy\nanetv_HwRiUpC5mf4,1470,A group of military men riding horses in a line approaches. A young boys,filters sand in his hand.,catch across the sidewalk.,rakes out of a wooden fence as others speedily shoot their single fenced in the distance.,face a shot in the blue back and smaller an object.,are running down a track.,gold1-orig,pos,unl,unl,unl,pos,A group of military men riding horses in a line approaches.,A young boys\nanetv_HwRiUpC5mf4,9304,A boy is shown petting the camel. There,is also a mother holding her child while standing next to the camel.,are around the people that are riding along the bench.,shots are shown of frisbees and a patch.,is there fax broadcast on a screen.,,gold0-orig,pos,unl,unl,unl,n/a,A boy is shown petting the camel.,There\nanetv_HwRiUpC5mf4,9305,There is also a mother holding her child while standing next to the camel. Two people are riding the camel and someone,is in front guiding the camel by holding the rope.,gets to her feet.,knit magazines appears on the side.,returns to the camera winks at the camera.,,gold0-orig,pos,unl,unl,unl,n/a,There is also a mother holding her child while standing next to the camel.,Two people are riding the camel and someone\nanetv_HwRiUpC5mf4,1472,The video is reversed showing the horses and camel walking backward. The camel sits and the people,get off his back.,are suddenly journey towards the docks.,go off the camel with the kids.,ride off together in the tub.,are shown on the road.,gold0-orig,pos,unl,unl,unl,pos,The video is reversed showing the horses and camel walking backward.,The camel sits and the people\nanetv_HwRiUpC5mf4,1468,A camel ride - desrt of doha - Qatar is shown on screen. A family,stands around a sitting camel while the little boy pats his head.,is standing in the woods wearing rafting gear for sea climbing.,walks past a packed skis where people are performing in a shallow event.,is walking in a kitchen park doing a bungee jump at the hut.,is dressed in a purple t - shirt while knitting.,gold0-orig,pos,unl,unl,unl,unl,A camel ride - desrt of doha - Qatar is shown on screen.,A family\nanetv_HwRiUpC5mf4,1471,A young boys filters sand in his hand. The video,is reversed showing the horses and camel walking backward.,shows instant trophies being played.,begin with people walking on stilts as other teammates play nearby.,is being mowed and waves in the distance.,shows his movements galloping with orange flags.,gold1-reannot,pos,unl,unl,unl,unl,A young boys filters sand in his hand.,The video\nanetv_FkWlzk8CrxA,13557,A woman in a white shirt is talking to the camera. A man and the woman,start to dance together.,are playing in a restaurant.,are playing a game of ice hockey.,are standing outside a square.,,gold0-orig,pos,unl,unl,pos,n/a,A woman in a white shirt is talking to the camera.,A man and the woman\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92698,3643,A boy with very fair hair tears a page from a book. He,steps in front of someone.,wears a look of shock.,passes through dozens of blank pages.,yanks his hand up.,,gold1-orig,pos,unl,unl,unl,n/a,A boy with very fair hair tears a page from a book.,He\nlsmdc1049_Harry_Potter_and_the_chamber_of_secrets-92698,3642,They head for the door. A boy with very fair hair,tears a page from a book.,\"quickens his teeth, sees someone, smiles at her, and steps backwards.\",\"passes someone, but then hauling mass pictures fells her.\",is hunched and telling him to do.,hangs down a hall.,gold0-orig,pos,unl,unl,unl,unl,They head for the door.,A boy with very fair hair\nanetv_FOlMVTmAeaQ,16250,\"A male athlete is shown and he spins around and throws the discus. Once complete, two people\",rush out to measure the distance.,throw down an orange ball while other people are watching leave.,are shown introducing the wrestling match.,watch and dance for their previous position.,,gold0-orig,pos,unl,unl,unl,n/a,A male athlete is shown and he spins around and throws the discus.,\"Once complete, two people\"\nanetv_FOlMVTmAeaQ,16251,\"Once complete, two people rush out to measure the distance. The sequence is then continued and other men\",are shown throwing the discus.,reach towards the finish line.,demonstrate stepping for their purpose.,make their final jump into the forest.,run up after him.,gold0-orig,pos,unl,unl,unl,pos,\"Once complete, two people rush out to measure the distance.\",The sequence is then continued and other men\nanetv_8cbHNUbu3Tk,11439,A woman is dancing on a court. She,is throwing several batons in the air.,picks up a iron and pans it to the girl who tie her shoes in the end.,then shows off a pin.,is holding and doing balance on a rope.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is dancing on a court.,She\nanetv_8cbHNUbu3Tk,11440,She is throwing several batons in the air. She,drops the batons and does flips on the ground.,falls off and lands in a mat of sand.,celebrates her pace as they jump into the water.,drops her baton before throwing a baton into the air.,does for her baton.,gold0-orig,pos,unl,unl,unl,unl,She is throwing several batons in the air.,She\nanetv_8cbHNUbu3Tk,13506,She begins dancing on the floor. She,spins batons around as she dances.,walks wearing a bow while standing ready.,walks back to the camera.,continues to play using the hula hoop while moving her hands in circles.,,gold1-orig,pos,unl,pos,pos,n/a,She begins dancing on the floor.,She\nanetv_8cbHNUbu3Tk,13507,She spins batons around as she dances. She,does a cart wheel on the ground.,\"gets closer to her, who also tosses the baton.\",is shown running on the field up her steps.,continues running while playing with her baton.,,gold1-orig,pos,unl,unl,pos,n/a,She spins batons around as she dances.,She\nanetv_8cbHNUbu3Tk,13505,A woman is standing in a gym. She,begins dancing on the floor.,starts jumping up and down on a parallel bar.,is sharpening a knife and sharpening the sharpener.,takes off and pins herself in the same position.,is tossing a sporting pole onto a small table.,gold1-reannot,pos,unl,unl,unl,unl,A woman is standing in a gym.,She\nanetv_HxJnPUqF9i8,5164,The man throws a weighted ball. Athletes,train in a gym doing throwing motions on weighted cable machines.,blow up the tile.,play brazilian in the competition.,jump onto the stands and make more jumps.,pose as he try to perform various darts and graph.,gold1-orig,pos,unl,unl,unl,unl,The man throws a weighted ball.,Athletes\nanetv_rVqeQ9D7EWo,5930,He begins to shovel snow in front of the trailer. He,puts the snow shovel in the snow and continues talking.,is snowboarding on a sidewalk.,\"sprays the fence, takes a final time, and continues with the snow.\",throws the strip on the sign and leaves.,has something on the wall.,gold0-orig,pos,unl,unl,unl,unl,He begins to shovel snow in front of the trailer.,He\nanetv_rVqeQ9D7EWo,5929,A man is standing outside a trailer. He,begins to shovel snow in front of the trailer.,is wiping a car with a pressure washer.,\"uses tools to catch a tire, then takes the tire off the floor.\",is laying down shorts on sidewalks on a platform.,begins welding something and starts biking down a lane.,gold1-orig,pos,unl,unl,unl,unl,A man is standing outside a trailer.,He\nlsmdc0028_The_Crying_Game-63239,6658,He can see her blond head vanishing among the fields. He,looks up and sees a group of men around him.,\"goes over to someone, who pulls out a bloody bow and starts to trudge away from the advancing circling.\",is the last of them able to approach professor's lips.,sees her back then shoots for tools to hide.,'s flees from their target.,gold1-reannot,pos,unl,unl,unl,unl,He can see her blond head vanishing among the fields.,He\nlsmdc3016_CHASING_MAVERICKS-6402,5780,Someone shifts his weight anxiously and someone stares. They both,take seats at the table.,look at their sleeping companions.,stare slack - jawed.,get to their feet.,listen to his footsteps.,gold1-orig,pos,unl,unl,unl,pos,Someone shifts his weight anxiously and someone stares.,They both\nlsmdc3016_CHASING_MAVERICKS-6402,5778,They hurry out of the room to find someone holding the baby. Someone,hands baby to her.,picks up the baby and does it.,\"kisses someone, and kisses her.\",opens the front door.,picks up a phone.,gold0-orig,pos,unl,pos,pos,pos,They hurry out of the room to find someone holding the baby.,Someone\nlsmdc3016_CHASING_MAVERICKS-6402,5776,\"Rubbing his arms, she lovingly gazes into his eyes. She\",glances toward the kitchen.,hands stare solemnly at someone.,scoots toward the floor.,\"sobs glinting on their clambering, two children, their family from a family tree.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Rubbing his arms, she lovingly gazes into his eyes.\",She\nlsmdc3016_CHASING_MAVERICKS-6402,5777,She glances toward the kitchen. They,hurry out of the room to find someone holding the baby.,stagger back from the boat.,buy a restaurant.,open the refrigerator and takes a bite.,walk out to the entrance to the dance studio.,gold0-reannot,pos,unl,unl,unl,unl,She glances toward the kitchen.,They\nlsmdc3088_WHATS_YOUR_NUMBER-42424,10015,The father looks from him to someone. Mr. Darling,gazes wistfully after his daughter.,swings his arm at someone.,sits on someone's face.,shines down his right eye.,lifts his stoic gaze.,gold1-orig,pos,unl,unl,unl,pos,The father looks from him to someone.,Mr. Darling\nlsmdc3088_WHATS_YOUR_NUMBER-42424,10013,Darling pulls someone into a fatherly embrace and slow dances with her. Someone,works his way over to them.,jogs up two at a time with his lips up over his mouth.,stares into the space above.,accepts a hug and climbs out of bed.,stuffs his hands in his pockets and hurries off.,gold0-orig,pos,unl,unl,unl,unl,Darling pulls someone into a fatherly embrace and slow dances with her.,Someone\nanetv_SI0GumzxYt4,12830,A camera follows around a small boat that is moving along the water as well as landscapes. The camera,zooms in on the boat and shows people riding inside.,pans over a woman standing on a board holding a selfie stick while a couple watches by.,switches to several clips of the man paddling and pulling on the kayak.,pans back and shows more people riding and close ups of the class.,zooms in on a map as well as to show shots of water surfing.,gold0-orig,pos,unl,pos,pos,pos,A camera follows around a small boat that is moving along the water as well as landscapes.,The camera\nanetv_iN1DEIADG9o,8980,A man trains his dog how to catch frisbees and perform tricks and stunts on a large grass covered field by himself. A man throws a red frisbee at a white and brown dog and the dog,catches it and brings it back.,has stuffed dog on a doing ladder.,frisbees for the dog to catch up.,jumps over a bull in a yard.,\"walking onto the grass, the little woman laughs over the hopscotch on the ground.\",gold0-orig,pos,unl,unl,unl,unl,A man trains his dog how to catch frisbees and perform tricks and stunts on a large grass covered field by himself.,A man throws a red frisbee at a white and brown dog and the dog\nanetv_iN1DEIADG9o,8981,A man throws a red frisbee at a white and brown dog and the dog catches it and brings it back. The man,\"throws more frisbees and has the dog run between his legs, jump high and low to catch the frisbee.\",ropes the calf and ties around the calf.,demonstrates how to push a calf on a leash.,strum the dog on the mans side of the dog foil and throws the frisbee.,picks up the frisbees and pets the dog and bye.,gold0-orig,pos,unl,unl,unl,pos,A man throws a red frisbee at a white and brown dog and the dog catches it and brings it back.,The man\nanetv_iN1DEIADG9o,9089,A man and is dog are seen in a large back yard before several tricks with a frisbee. The two,continue to move all around the yard performing various flips and tricks and ends with the man carrying the dog.,continue to get around.,men jump and ends by in the end.,then begins performing tricks with the frisbee following the dog.,continue performing tricks with the frisbee.,gold0-orig,pos,unl,unl,pos,pos,A man and is dog are seen in a large back yard before several tricks with a frisbee.,The two\nanetv_FtAQcl1h7O8,6333,People are riding spin bikes in a gym. Two women,are working out on exercise bikes.,are standing on an elliptical bike doing tricks.,talk about different conflicted and methods of ways they will get love to throw a weight.,\"are in the bathroom, but swerving as people watch.\",bike their kayaking exercise.,gold0-orig,pos,unl,unl,unl,unl,People are riding spin bikes in a gym.,Two women\nanetv_K4cNyYu2LLg,6018,A set of toddler boys are standing up against the wall talking and playing with toothbrushes. They both,begin to brush their teeth ferociously without any toothpaste or water.,part laughing they have no ones to do anything to make them very happy.,\"is up and run towards each other, trying to grab sticks.\",take up the ax and begin kicking each other doing leg kicks.,,gold0-orig,pos,unl,unl,unl,n/a,A set of toddler boys are standing up against the wall talking and playing with toothbrushes.,They both\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-26286,4042,\"As someone continues across the lawn, more students pat his back. Blood\",caked on her shoulder.,holds his father and shoulders.,on the guy are their bottoms.,wears a shotgun in his uniform.,\"shoots him a glance, then leaves the bar with someone at the front of the counter.\",gold0-orig,pos,unl,unl,unl,unl,\"As someone continues across the lawn, more students pat his back.\",Blood\nlsmdc0031_The_Lost_Weekend-65666,2960,The two men stand grinning. He,\"picks up the typewriter, turns and starts walking back.\",holds his hand back.,carries them to the door.,watches someone enter the room and rocks his brother's arm.,,gold0-orig,pos,unl,unl,unl,n/a,The two men stand grinning.,He\nlsmdc0031_The_Lost_Weekend-65666,2963,It says five minutes of four. Someone,is at the bar.,pours a backup - pane.,takes off their glasses and progresses.,looks at someone pleadingly.,appears to be happy.,gold1-orig,pos,unl,pos,pos,pos,It says five minutes of four.,Someone\nlsmdc0031_The_Lost_Weekend-65666,2965,He and two or three customers are listening to race results on a little radio. Someone,\"drags himself in, drenched in sweat, his breath as short and agonized as that of a dying man.\",rushes over to find someone watching her on the hallway whittling.,takes a look at the get chili's neck.,\"moves cautiously in the woods, his long ears skeletal.\",\"shoots into a car, driving them across the back of the car.\",gold0-orig,pos,unl,unl,unl,pos,He and two or three customers are listening to race results on a little radio.,Someone\nlsmdc0031_The_Lost_Weekend-65666,2961,\"The camera goes slowly up to a sidewalk clock with a diadem of three balls, which stands outside the hock shop. The time\",is twenty minutes of one.,goes to a charming glass window.,passes to the top of it.,comes out of the window.,the troubled boy and someone stare out for the flowers.,gold0-orig,pos,unl,unl,unl,unl,\"The camera goes slowly up to a sidewalk clock with a diadem of three balls, which stands outside the hock shop.\",The time\nlsmdc0031_The_Lost_Weekend-65666,2962,The time is twenty minutes of one. It,says five minutes of four.,collapsed on the ground and watch lazily.,seems surprised with the word for them.,\"reaches the door, and teddy's holding of it.\",is someone and someone's d - d card.,gold0-orig,pos,unl,unl,unl,unl,The time is twenty minutes of one.,It\nlsmdc0031_The_Lost_Weekend-65666,2964,Someone is at the bar. He and two or three customers,are listening to race results on a little radio.,are all wearing black dress.,miss a tall small line of guards.,are in the alley as people hurry into their pivot - living room.,clink glasses as someone gazes down at them.,gold0-orig,pos,unl,unl,unl,pos,Someone is at the bar.,He and two or three customers\nlsmdc1046_Australia-90722,6364,He gives a tight smile and walks off. She,\"hesitates, then wanders through the long grass.\",strides to the station and hands her phone.,glances at a clock too.,\"moves goodbye to the house, then exits.\",starts to pass him.,gold1-orig,pos,unl,unl,unl,pos,He gives a tight smile and walks off.,She\nlsmdc1046_Australia-90722,6363,She smiles and looks downs at the ground. He,gives a tight smile and walks off.,reluctantly backs away as a couple opens the upper window.,\"kicks the sailors away, shifting his sober gaze.\",\"picks the mic up and drinks it, then shakes it around again.\",stands next to time.,gold1-orig,pos,unl,unl,unl,unl,She smiles and looks downs at the ground.,He\nlsmdc1046_Australia-90722,6365,\"She hesitates, then wanders through the long grass. In daylight, a steer\",lies dead next to a watering hole.,is then killed with two dogs.,blinks off from the pizza park.,rips a piece of broken handle.,,gold0-orig,pos,unl,unl,pos,n/a,\"She hesitates, then wanders through the long grass.\",\"In daylight, a steer\"\nlsmdc1046_Australia-90722,6362,\"He draws near her, and she looks up at him. She\",smiles and looks downs at the ground.,\"leans forward in an embrace, and stares tensely at him.\",saunters off while he pulls her to the window.,\"nods, and closes the door.\",smiles as he leads her into the apartment.,gold0-orig,pos,unl,unl,pos,pos,\"He draws near her, and she looks up at him.\",She\nanetv_UmU8dx36O9w,17277,A woman is seen sitting in front of the camera and begins putting a contact lens in her eyes. The woman,keeps attempting to put the lens in her eye while looking around trying again.,then rides the horses through the water while another woman speaks to the camera and leads into another razor shot.,then continues speaking to the camera while holding up her hand and the camera pans all side to a woman around her eye.,continues burning a liquid on her nose and moving her hair around on her head and continuing to look down.,turns around and shows the finished product.,gold0-orig,pos,unl,unl,unl,unl,A woman is seen sitting in front of the camera and begins putting a contact lens in her eyes.,The woman\nanetv_UmU8dx36O9w,17278,The woman keeps attempting to put the lens in her eye while looking around trying again. She,succeeds the last time and is seen cheering to the camera.,walks up with her makeup while waving hands with the dog.,talks to the camera and hold up some more tape.,gets up from the horse and begins cutting various parts of her hair.,,gold0-orig,pos,unl,unl,unl,n/a,The woman keeps attempting to put the lens in her eye while looking around trying again.,She\nanetv_5RLeo8LymY4,160,They use paddles to move their kayaks along the water. The pair,\"looks toward each other, as if talking.\",\"flips gracefully, then walk around the boat.\",continue pulling the beach while paddling and paddling himself.,jumps into the water rivers while others watch.,make a synchronized jump in the calm waters of the water.,gold0-orig,pos,unl,unl,pos,pos,They use paddles to move their kayaks along the water.,The pair\nanetv_5RLeo8LymY4,159,A pair is rowing on kayaks down a lazy river stream. They,use paddles to move their kayaks along the water.,have a sudden air hovering over the or the river surface.,\"jump from the water and move across the bridge, using their hands.\",are paddling canoes on the boats with their oars.,\"are also riding motocross surfboards behind him, moving across the water with the pincer around them causes the motor boat to follow.\",gold0-orig,pos,unl,unl,unl,pos,A pair is rowing on kayaks down a lazy river stream.,They\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17009,People are now dressed in foul - looking orc gear. People,turn east and walk over the summit of cirith ungol into mordor.,bear a badge up over his chest.,are playing drums to new york city.,continues taking boats down a winding river through the rough steadily waters.,are sitting in chairs in a dining area.,gold1-orig,pos,unl,unl,unl,pos,People are now dressed in foul - looking orc gear.,People\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17020,\"Someone looks up sharply at someone. At this, someone\",chokes on his pipe.,sits out on the sidewalk and calls.,clutches her head and standing frantically about.,observes from a group of other photos.,,gold1-orig,pos,unl,unl,unl,n/a,Someone looks up sharply at someone.,\"At this, someone\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17010,People turn east and walk over the summit of cirith ungol into mordor. 50 miles away - - across the barren gorgoroth plateau - - the mountain,\"is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash.\",\"riders grubby city, packed of english.\",has a o. u. army parade together smartly covered in thick weeds.,\"track, skiers, orcs assigned groomers are removed.\",watertight into tiny thick skyscrapers around them.,gold0-orig,pos,unl,unl,unl,unl,People turn east and walk over the summit of cirith ungol into mordor.,50 miles away - - across the barren gorgoroth plateau - - the mountain\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17005,Someone pulls the ring from his pocket. Someone,looks at someone amazed.,turns toward the sorting powder at his thighs and looks over until it dissolves with pouring soldiers.,drives his bat away.,unbuckles his belt and runs straight over his.,brushes past the saleswoman.,gold1-orig,pos,unl,unl,unl,pos,Someone pulls the ring from his pocket.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17011,\"50 miles away - - across the barren gorgoroth plateau - - the mountain is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash. With immense trepidation, people\",head down the steep path into the dark kingdom.,shake their heads in with their trays of food.,look stony and wizened in the giant at sea.,pass someone knelled over and over over cliffs.,glare at the giant kneeling in front of the rolling tank.,gold0-orig,pos,unl,unl,pos,pos,\"50 miles away - - across the barren gorgoroth plateau - - the mountain is erupting streams of ash and lava high into the air, lighting the low cloud blanket of mordor with a flickering orange wash.\",\"With immense trepidation, people\"\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17013,Before them lies the plain of gorgoroth. Their eyes,are drawn to the ominous silhouette of mount doom.,linger out from the print similar to a woman's.,\"locked tightly, and its head almost looms face becomes a lost color.\",grow listless as to eat from their invisible skin.,\"are brief, full of amazement, as their eyes meet with a muted smile.\",gold0-orig,pos,unl,unl,unl,pos,Before them lies the plain of gorgoroth.,Their eyes\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17012,\"With immense trepidation, people head down the steep path into the dark kingdom. Before them\",lies the plain of gorgoroth.,\", someone hands sharpening some keys.\",\"can respond, all of the well - trees moved away.\",\"reaches for the other sustained, as the driven approaches, a disappear from flowers into the truck.\",\"for a moment, he looks even more miserable.\",gold0-orig,pos,unl,unl,unl,unl,\"With immense trepidation, people head down the steep path into the dark kingdom.\",Before them\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17002,Someone runs into the tower. Someone,\"grabs someone's hair and pulls his head back, exposing his neck.\",\"lies on his knee, his wrists held loosely behind his back.\",\"runs down the stairwell and races toward the classroom below, halfway down.\",receives a torn package from a man beside him.,\"sits down beside people, spotting him.\",gold1-orig,pos,unl,unl,unl,unl,Someone runs into the tower.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17006,He puts the ring back around his neck. Someone,\"looks at someone, pain in his eyes.\",reaches down and seizes the gun.,walks away from his dog.,drops his head and clasps his hands.,walks slowly away with her doll.,gold0-orig,pos,unl,pos,pos,pos,He puts the ring back around his neck.,Someone\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17003,\"Someone grabs someone's hair and pulls his head back, exposing his neck. He\",\"pulls out his sword, ready to cut someone's throat.\",is overcome with grief as it falls from his grasp.,opens the front door and closes the door behind him.,leans in and kisses her hand.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone grabs someone's hair and pulls his head back, exposing his neck.\",He\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17018,Someone stands in the tower hall. He,turns and crosses the hall to reveal the presence of people.,puts his hand on the clock on his lap.,\"walks down a protective walkway, into the destroyer and steps up the side of the transparent tower.\",\"steps to a glass cooler, opens it and looks down to the roof where the lights are building.\",\"gets off his feet, smashing his head against the door frame.\",gold0-orig,pos,unl,unl,unl,unl,Someone stands in the tower hall.,He\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17014,Someone's eyes travel down towards the hundreds of fires which glow on the plains beneath them thousands upon thousands of orcs are encamped there. Their eyes,are drawn to a dark looming shape.,are parted and bony as they claw their way inside.,fill with horror as everyone panels pirouettes with life.,are desperately down as they talk horizontally.,are suspended above the vast desert of dense winter thumps and trapeze gears in the middle of the cavern.,gold0-reannot,pos,unl,unl,unl,unl,Someone's eyes travel down towards the hundreds of fires which glow on the plains beneath them thousands upon thousands of orcs are encamped there.,Their eyes\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17015,Their eyes are drawn to a dark looming shape. A red light,seems to sweep across the plain.,holds out her hand.,from another bush almost disappears.,lays on someone's clock.,spreads across someone's eyes.,gold0-reannot,pos,unl,unl,unl,pos,Their eyes are drawn to a dark looming shape.,A red light\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-61466,17007,\"Someone looks at someone, pain in his eyes. Someone\",looks down at someone.,leans in against his shoulder as he casts the buzz.,\"listens, smirking to sobs.\",slams his eyes shut.,turns to stare at him.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone looks at someone, pain in his eyes.\",Someone\nlsmdc1015_27_Dresses-79616,17372,\"As someone comes hazily to, the dark - haired guy is looking down at her. She\",blinks up at him and touches a hand to her sore head as two other guests arrive.,\"is inevitable open - featured someone, includes the pale red lips toward his pockets.\",takes a deep breath and walks it over towards her.,\"moves beside her, slightly pinned to her lipstick in the corner.\",stifles a smile before stepping into the hallway.,gold0-orig,pos,unl,unl,unl,unl,\"As someone comes hazily to, the dark - haired guy is looking down at her.\",She\nlsmdc0031_The_Lost_Weekend-65709,2009,However he manages to make the swinging glass door. Along the walls,are benches and a collection of wheel - chairs.,\"is someone, another giant six - foot building.\",of the bedroom he sprays himself in.,is a wooden pedestal which begins to crumble.,,gold0-orig,pos,unl,pos,pos,n/a,However he manages to make the swinging glass door.,Along the walls\nlsmdc0031_The_Lost_Weekend-65709,2014,\"Someone tries to take advantage of the opening of the door to get out, but the guard pulls him by the arm, while the entering nurse locks the door with his own key. Someone\",\"turns, at the bend of the corridor stands someone, with a tumbler of medicine in his hand.\",takes his rube in the oven and hurries off down the alley.,stops his chopper's steel detector with his fingers flat on the wheel.,flies up to the empty window as its sails off.,\"wheels the agent into the corner, then rushes through the door, stops and falls on the station.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone tries to take advantage of the opening of the door to get out, but the guard pulls him by the arm, while the entering nurse locks the door with his own key.\",Someone\nlsmdc0031_The_Lost_Weekend-65709,2007,He is wearing flannel pajamas like all the rest of the patients. Someone,\"stands quietly watching him, a great big grin on his face.\",admires a rolled - up photo of his collar.,stands a few inches apart looking him up and down.,sits in an easy chair.,,gold1-orig,pos,unl,pos,pos,n/a,He is wearing flannel pajamas like all the rest of the patients.,Someone\nlsmdc0031_The_Lost_Weekend-65709,2013,\"At this moment the door is opened by another male nurse, carrying a pile of clean sheets and pillow cases. Someone tries to take advantage of the opening of the door to get out, but the guard\",\"pulls him by the arm, while the entering nurse locks the door with his own key.\",makes a round - step and shoves him repeatedly back under.,doodles in the desks and peeps into it.,dressed in european clothes comes out of his room and peers down at us.,gets out of the cab and slowly looks up wildly.,gold0-orig,pos,unl,unl,unl,unl,\"At this moment the door is opened by another male nurse, carrying a pile of clean sheets and pillow cases.\",\"Someone tries to take advantage of the opening of the door to get out, but the guard\"\nlsmdc0031_The_Lost_Weekend-65709,2010,\"They wear terry - cloth bathrobes over their pajamas, canvas slippers on their feet. In the listless, burned - out collection, someone\",is the only person who moves with purpose.,takes in his notebook and bible.,plastered her eyes on her son lying in the hotel room.,looks in on her daughter and sad eyes.,,gold0-orig,pos,unl,unl,unl,n/a,\"They wear terry - cloth bathrobes over their pajamas, canvas slippers on their feet.\",\"In the listless, burned - out collection, someone\"\nlsmdc0031_The_Lost_Weekend-65709,2012,\"Someone goes to the door, tries to open it. At this moment the door\",\"is opened by another male nurse, carrying a pile of clean sheets and pillow cases.\",swings open and is fitted in.,rolls onto the floor.,\"stops, but someone pushes his way through the double doors into the corridor.\",\"is open, and he walks out and looks stuck.\",gold0-reannot,pos,unl,unl,pos,pos,\"Someone goes to the door, tries to open it.\",At this moment the door\nlsmdc0031_The_Lost_Weekend-65709,2011,\"He goes around the bend of the ell and there is the door, a heavy wooden one with a grated peep - hole and beside it a uniformed guard. Someone\",\"goes to the door, tries to open it.\",\"runs down the street, carrying a bouquet of flowers, comes down the stairs and stops.\",glares down from boston research course.,turns to the boys past the kitchen front door.,is now outside the theater.,gold0-reannot,pos,unl,unl,unl,unl,\"He goes around the bend of the ell and there is the door, a heavy wooden one with a grated peep - hole and beside it a uniformed guard.\",Someone\nlsmdc0031_The_Lost_Weekend-65709,2008,\"Someone stands quietly watching him, a great big grin on his face. However he\",manages to make the swinging glass door.,\"is now gone, replies.\",\"looks at him the moment, he hits the door.\",dips his hand into someone's mouth.,gazes at the crop.,gold1-reannot,pos,unl,unl,unl,unl,\"Someone stands quietly watching him, a great big grin on his face.\",However he\nlsmdc3057_ROBIN_HOOD-27366,18021,He dashes towards the stocks. Someone,\"hammers pegs out of the stocks, freeing the man.\",stops waiting for his reaction.,cuts the dead man's clothes.,spins circles on a huge wave.,stops by his car with the shovel and hands it to someone.,gold0-orig,pos,unl,unl,unl,unl,He dashes towards the stocks.,Someone\nlsmdc3057_ROBIN_HOOD-27366,18020,\"Someone stares slack jawed, then turns and breaks into a run. He\",dashes towards the stocks.,grins up at his father.,grabs the smiling soldier.,folds up the cabinet.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stares slack jawed, then turns and breaks into a run.\",He\nlsmdc3057_ROBIN_HOOD-27366,18019,Someone mournfully bows his head. Someone,\"stares slack jawed, then turns and breaks into a run.\",rolls his eyes and checks the diary.,gives an uncertain nod and glares.,looks up in surprise.,meets someone's gaze.,gold1-reannot,pos,unl,pos,pos,pos,Someone mournfully bows his head.,Someone\nanetv_LNK_yYs6UOA,19514,A man walks into a circle on a field. He,spins while holding a disc.,shoots a number inside a ring.,spins the boy over the net.,lifts the ax to the head of the tree.,jumps and throws a javelin onto the field.,gold0-orig,pos,unl,unl,unl,pos,A man walks into a circle on a field.,He\nanetv_LNK_yYs6UOA,19515,He spins while holding a disc. He,\"lets go of the disc, letting it fly through the air.\",puts it in his hands and put the stick into hand.,staggers into the platform as the band claps.,jumps off and lands in the air on the skateboard.,picks up a pole off of a rock and falls to the ground.,gold0-orig,pos,unl,unl,unl,unl,He spins while holding a disc.,He\nanetv_zxzBoK5t0XY,7678,A horse is seen off in the distance followed by a man speaking to the camera in front of a large group of horses. Various people,are then seen riding around on horses through different landscapes and being led by people.,are then shown laying in the grass while others watches on the side.,are seen running around the wooded area and leads into the blindfolded man speaking to the camera.,are then seen celebrating with one another as well as hitting a stick with them at the end.,are seen speaking to the camera and leads into two men walking around a sand pit with others watching.,gold0-orig,pos,unl,unl,unl,unl,A horse is seen off in the distance followed by a man speaking to the camera in front of a large group of horses.,Various people\nanetv_zxzBoK5t0XY,7679,Various people are then seen riding around on horses through different landscapes and being led by people. The men,continue to lead people around on the horses through a large body of water.,continue their way along the streets: waterfalls and choppy water.,continue moving around the boat and ends by looking at the camera.,continue kayaking and jump boarding after their long boarding to the lift.,speak to one another while more people play in the pool while they watch it played in the distance.,gold0-reannot,pos,unl,unl,unl,unl,Various people are then seen riding around on horses through different landscapes and being led by people.,The men\nanetv_J6ScF5n_Cug,10367,A young girl plays the clarinet. The girl,pauses for a second to flip her music sheet standing in front of her.,wanders in front of the man.,\"starts the flute again, still tapping.\",completes another blow and still plays the instrument.,dances to the music.,gold0-orig,pos,unl,unl,pos,pos,A young girl plays the clarinet.,The girl\nanetv_J6ScF5n_Cug,10369,The young girl resumes playing her clarinet. The girl,stops and looking pleased with her performance.,finally pulls her violin to be uniform on her performance.,is being interviewed by the gymnast audience.,exercise as some girl.,,gold0-orig,pos,unl,unl,unl,n/a,The young girl resumes playing her clarinet.,The girl\nanetv_J6ScF5n_Cug,10368,The girl pauses for a second to flip her music sheet standing in front of her. The young girl,resumes playing her clarinet.,puts her hand off of her hair like a cat.,\"marches into the stage, introduces herself.\",performs karate flips.,,gold0-reannot,pos,unl,unl,unl,n/a,The girl pauses for a second to flip her music sheet standing in front of her.,The young girl\nanetv_MmYNcmba_Ps,3355,An athlete is seen walking forward while shaking her arms and legs around and adjusting her swim suit. The girl,bends forward and performs a dive into the pool while the camera pans back to a scoreboard.,grabs a pink sweater from around the area and then begins running the choreographed swipes and throwing one over at a time.,continues to play quickly and end by looking up and pointing to the camera and her walking backwards.,does flips off the bar while jumping up and down with the girl adding water to her face.,lifts up another woman's arms and smiles to herself while waving to the camera.,gold0-orig,pos,unl,unl,unl,pos,An athlete is seen walking forward while shaking her arms and legs around and adjusting her swim suit.,The girl\nanetv_oj6czGQ830c,1427,A groups men and woman dressed in cold water diving gear arrive in a van. The divers,march in single file on a dock to the water and pose with their diving gear on.,dive from the high beam in the base of the kite.,\"move faster and faster down the banks, deeper into the water and to their personal stills.\",walk adjacent to the sea terrace and sail on each other and fall onto a large boat.,going backward and warming up in the air as they swim past the water.,gold0-orig,pos,unl,unl,unl,unl,A groups men and woman dressed in cold water diving gear arrive in a van.,The divers\nanetv_oj6czGQ830c,1428,The divers march in single file on a dock to the water and pose with their diving gear on. The divers,are under water performing different sunken vehicles and playing around and posing.,dive and underwater to jump and dive towards the edge of the pool.,watch after her and does several flips.,dismounts from the beam and dive in.,,gold1-orig,pos,unl,pos,pos,n/a,The divers march in single file on a dock to the water and pose with their diving gear on.,The divers\nanetv_oj6czGQ830c,1426,Men and woman posing and smiling at the camera. A groups men and woman dressed in cold water diving gear,arrive in a van.,and runners arrive in the ballroom.,play a game at night.,together in the pool.,,gold1-orig,pos,unl,unl,unl,n/a,Men and woman posing and smiling at the camera.,A groups men and woman dressed in cold water diving gear\nanetv_oj6czGQ830c,1429,The divers are under water performing different sunken vehicles and playing around and posing. The divers,are featured in some trick photography.,start at the back rafts and the beach with water falls after them as the hula.,are shown playing soccer while people thumbs the shown and ends with an orchestra afterwards.,dive in and enter the kayak as if the raft almost did people in the water.,are going and cheering various ways to each with the boy surfing.,gold0-orig,pos,unl,unl,unl,unl,The divers are under water performing different sunken vehicles and playing around and posing.,The divers\nanetv_buBtMl9SUNk,7230,The diver kneel on the sea floor waving their hands. Manta fish and a big fish,swim in the water.,are shot in a pool.,are next to the pool.,run out of the water.,are shown in the sea.,gold1-orig,pos,unl,unl,unl,unl,The diver kneel on the sea floor waving their hands.,Manta fish and a big fish\nanetv_buBtMl9SUNk,7229,\"People dive in the water wearing diving suit, small and big fishes swim near the divers. The diver\",kneel on the sea floor waving their hands.,swim up until the bottom of the diving board and mace.,gets up from the very water pool and is shown off in fast motion.,does not stand upright as the tank continues to surf.,,gold1-orig,pos,unl,unl,unl,n/a,\"People dive in the water wearing diving suit, small and big fishes swim near the divers.\",The diver\nanetv_buBtMl9SUNk,7231,Manta fish and a big fish swim in the water. The divers,stands and continue swimming in the water.,pour and swim in circles.,\"dive through a hole up ahead, then one adjusted to another.\",\"are shown swimming at a lake, playing against the boat.\",walks into the water with the hose.,gold1-reannot,pos,unl,unl,unl,unl,Manta fish and a big fish swim in the water.,The divers\nlsmdc1029_Pride_And_Prejudice_Disk_One-83897,17852,\"Later, someone is sitting reading in her room. Someone\",rushes to look out to the window at a carriage that's arrived.,places the lighted device onto the telephone holder.,is seated at the table with rows of clusters of pianos.,sits at the coffee table halfway up the aisle.,strolls into the living room and steps inside through a doorway.,gold1-orig,pos,unl,unl,unl,pos,\"Later, someone is sitting reading in her room.\",Someone\nanetv_8btD4-N4stM,6850,We see scene of a bullfighting with matadors in the ring and see them stabbing the bulls. We,see images of bloody bulls and carcasses being dragged on the ground.,see the missed boot on the ground.,\", the bull uses an cutter and the leader attaches the bull to the bull, and washes off the bull.\",then see people running with the base in hand.,see the ending screen with a title.,gold1-orig,pos,unl,unl,unl,pos,We see scene of a bullfighting with matadors in the ring and see them stabbing the bulls.,We\nlsmdc1028_No_Reservations-83127,13612,Someone walks into her apartment with a smile. She,\"hangs her bag on a hook by the door, drops her keys into the bowl and begins to remove her coat.\",shows the letter drawing and shows a table wedged by a typewriter.,\"peers down the hall, taking in her surroundings.\",talks on her phone.,,gold1-orig,pos,unl,unl,unl,n/a,Someone walks into her apartment with a smile.,She\nlsmdc1028_No_Reservations-83127,13614,Someone jumps out of the taxi and hurries towards the school. Someone's,sitting on the steps.,father hugs her son.,eyes get closer as they head out of the beach.,mom runs up the stairs.,gaze lingers on the battle lines.,gold0-orig,pos,unl,unl,unl,unl,Someone jumps out of the taxi and hurries towards the school.,Someone's\nlsmdc1028_No_Reservations-83127,13611,\"He conducts someone, as she breathes deeply. Someone\",walks into her apartment with a smile.,sits up and smiles.,grabs the ankle blanket.,\"lies on the grass, her back to him.\",'s passenger side mirror starts to drop.,gold1-reannot,pos,unl,unl,unl,unl,\"He conducts someone, as she breathes deeply.\",Someone\nlsmdc3090_YOUNG_ADULT-44044,15674,\"Inside, someone rocks her child in a baby seat. Someone\",crouches near someone and the baby on the living room floor.,\"solemnly puts his hand on the automaton's arm, then stalks off to the house.\",\"stops by the door, cross, walks back into the apartment and continues to slide down the monkey.\",hurriedly grabs her sister and walks towards the party with her thermos wait.,,gold0-orig,pos,unl,unl,pos,n/a,\"Inside, someone rocks her child in a baby seat.\",Someone\nlsmdc3090_YOUNG_ADULT-44044,15673,\"Someone smiles and furrows her brow. Inside, someone\",rocks her child in a baby seat.,sits at a table as she approaches an empty spot.,sets a clock down on her therapist's tabletop.,pins someone against a wall nearby.,,gold0-orig,pos,unl,unl,pos,n/a,Someone smiles and furrows her brow.,\"Inside, someone\"\nlsmdc3090_YOUNG_ADULT-44044,15672,Someone shakes someone's hand. Someone,smiles and furrows her brow.,stands in bed next to a flame.,\"stands, look at her.\",gets out of the car and joins someone sitting underneath the bike.,sucks at the ring.,gold1-orig,pos,unl,unl,unl,unl,Someone shakes someone's hand.,Someone\nlsmdc3090_YOUNG_ADULT-44044,15677,Someone gazes around the room. Someone,taps someone with her foot.,lies in a wheelchair.,\"'s coming from library, flashlights in the air to them then points upwards.\",kicks out the energy from overhead.,\"giddily averts his gaze, pleasantly glancing down at someone.\",gold1-orig,pos,unl,unl,unl,unl,Someone gazes around the room.,Someone\nlsmdc3090_YOUNG_ADULT-44044,15676,Someone hands a beer to someone and a bottled water to someone. Someone,gazes around the room.,carries a bottle to her mouth.,react in foreground with a dashing someone.,sets a door shut behind him and steps out.,stares at him frowning.,gold1-reannot,pos,unl,unl,pos,pos,Someone hands a beer to someone and a bottled water to someone.,Someone\nanetv_1rf7t4sYtIA,17112,A boy is standing outside his house. He,\"turns on a leaf blower, using it on the driveway.\",is using a lawn mower to have his hair shaved.,is tapping a gun in his hand.,picks up tools and puts them on the machine.,starts hitting a ball into a net.,gold1-orig,pos,unl,unl,pos,pos,A boy is standing outside his house.,He\nanetv_1rf7t4sYtIA,17113,\"He turns on a leaf blower, using it on the driveway. He\",\"walks around, blowing around the hedges and driveway.\",starts to mow the lawn with the mower.,comes out at work with hose and brushes as he approaches.,is lightly blowing leaves on the field as he continues to write.,uses his rake the leaf blower as he gets to the camera.,gold0-orig,pos,unl,unl,unl,unl,\"He turns on a leaf blower, using it on the driveway.\",He\nanetv_1rf7t4sYtIA,4436,A guy is holding a leaf blower. The guy,walks on the sidewalk with the leaf blower.,blows out the smoke.,is raking the leaves in his yard.,takes the leaf blower.,starts blowing a pipe.,gold0-orig,pos,unl,unl,unl,unl,A guy is holding a leaf blower.,The guy\nanetv_1rf7t4sYtIA,4437,The guy walks on the sidewalk with the leaf blower. The guy,picks up the orange cord and moves it.,adjusts the position on the mower and turns around.,stops raking and leaves.,rakes the mower and moves its lawn mower.,\"goes again, blower blow blowing leaves on the grass.\",gold0-orig,pos,unl,unl,unl,pos,The guy walks on the sidewalk with the leaf blower.,The guy\nanetv_1rf7t4sYtIA,4438,The guy picks up the orange cord and moves it. The guy,stops in the driveway.,puts his leg up using a wire.,uses the wheel to remove the handlebars.,pulls back from the tube.,places the sticks on the bar end.,gold0-reannot,pos,unl,unl,unl,pos,The guy picks up the orange cord and moves it.,The guy\nanetv_u6FTTLK6GUg,16809,People are playing dodge ball in a gym. They,start throwing the balls at each other.,walk around and watch as men play.,hit the ball into a net.,hit the ball back and forth.,hit the ball into the net.,gold0-orig,pos,unl,unl,unl,unl,People are playing dodge ball in a gym.,They\nanetv_wq4H7L15NMA,8667,A woman pulls on a rowing machine in a gym while others exercise or walk by in the background. The woman,pulls on the machine a second time.,continues spins move for the machine a bit as well as jumping up and down.,\"walks on the rowing machine and moves them together, failing to the other twisting, and vacuuming the body.\",touches the row of settings on the machine while the vacuum continues.,uses a exercise machine to cover her body from the side.,gold0-orig,pos,unl,unl,unl,unl,A woman pulls on a rowing machine in a gym while others exercise or walk by in the background.,The woman\nanetv_wq4H7L15NMA,8668,The woman pulls on the machine a second time. The woman,pulls on the machine a third time.,speed downhill without saying anything.,climbs off the bike and throws it in the air.,talks to the camera again.,,gold1-orig,pos,unl,unl,pos,n/a,The woman pulls on the machine a second time.,The woman\nanetv_wq4H7L15NMA,8669,The woman pulls on the machine a third time. The woman,pulls on the machine a fourth time.,helps the camel play to the sitting back on the boat.,removes the wheel and screws it from the machine.,\"stops stretching and looks down a few times, then back and stopped.\",finishes talking and sits on the machine.,gold1-orig,pos,unl,unl,pos,pos,The woman pulls on the machine a third time.,The woman\nanetv_wq4H7L15NMA,17908,A woman is seated on a piece of workout equipment. She,uses a long string to pull back and forth.,holds a set of boots on a set of exercise machines and flips it down.,is in a large room doing exercise exercises in an exercise class.,\"appears onto a stage, holding out the exercise machine for lifting.\",moves to the edge of a diving board and moves the board several times.,gold0-orig,pos,unl,unl,unl,unl,A woman is seated on a piece of workout equipment.,She\nanetv_wq4H7L15NMA,8670,The woman pulls on the machine a fourth time. The woman,pulls on the machine a fifth time.,then begins spraying the sides thoroughly and brushing her hair in the side.,releases the disk and prepares to help the child.,continues on a stool to show off the body with precise motion.,,gold0-orig,pos,unl,pos,pos,n/a,The woman pulls on the machine a fourth time.,The woman\nanetv_wq4H7L15NMA,17909,She uses a long string to pull back and forth. Her seat,slides forward and backward as she pulls.,is testing with a dissatisfied.,\"rides in to a rickshaw of people in the wagon, bearing the flower of the state of friends.\",is given to someone while driving around and paddles a few times.,\"is shown on the other side of the road, then the toddler pull back and the rocking kayak is given a place.\",gold0-reannot,pos,unl,unl,unl,unl,She uses a long string to pull back and forth.,Her seat\nanetv_1iP5k9jHBRU,10674,\"He pointed the wall and started to spread the brown clay on the wall, she spread it by rubbing it smoothly and in half circle way. He\",\"went near the ceiling, knocked on the ceiling, pushed it, knocked on it again, smoothen it using his fingers.\",shows how to use the homemade slices to fit under the carpet.,pans back and forth to take the reactor.,managed to remove the wires and tape and show more tools and then pierce around the walls.,,gold0-reannot,pos,unl,unl,pos,n/a,\"He pointed the wall and started to spread the brown clay on the wall, she spread it by rubbing it smoothly and in half circle way.\",He\nlsmdc0010_Frau_Ohne_Gewissen-51095,1499,\"By this time, he has hold of her wrist. He\",draws her to him slowly and kisses her.,\"goes down, then clasps his hands behind her head.\",glances directly at someone.,\"gets out of his car, and rides away.\",,gold0-orig,pos,unl,unl,unl,n/a,\"By this time, he has hold of her wrist.\",He\nlsmdc0010_Frau_Ohne_Gewissen-51095,1491,\"He turns away impatiently, paces up and down past a caddy bag with golf clubs in it, pulls one out at random, makes a couple of short swings, throws the club on the couch, paces again. Someone\",goes to the door and opens it.,\"walks past him, tugs the hat, then examines the photos.\",watches as someone flies up into his air.,see in someone's apartment.,,gold0-orig,pos,unl,unl,pos,n/a,\"He turns away impatiently, paces up and down past a caddy bag with golf clubs in it, pulls one out at random, makes a couple of short swings, throws the club on the couch, paces again.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51095,1494,Someone switches on the standing lamp. She,starts to take off her coat.,slides the grate shut and puts it in the someone.,shifts to reveal features creeping up into the position.,\"takes the phone from her bag, but finds her nightstand.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone switches on the standing lamp.,She\nlsmdc0010_Frau_Ohne_Gewissen-51095,1488,\"Someone bangs the front door shut, walks quickly to his car and drives away. The car hop\",hangs a tray on the door and serves him a bottle of beer.,back up the parking lot.,across a road to robot.,quickly miserably as someone runs later through the rain as he exits quickly.,out from his driveway into the sunshine.,gold0-orig,pos,unl,unl,unl,pos,\"Someone bangs the front door shut, walks quickly to his car and drives away.\",The car hop\nlsmdc0010_Frau_Ohne_Gewissen-51095,1496,He takes her coat and lays it across the back of a chair. Someone,has moved over to the window.,stands on the counter with her hand on someone's head.,covers him fully with her hands and drives.,gives a hopeful smile and heads out.,glances over her shoulder.,gold1-orig,pos,unl,unl,unl,pos,He takes her coat and lays it across the back of a chair.,Someone\nlsmdc0010_Frau_Ohne_Gewissen-51095,1495,She starts to take off her coat. He,takes her coat and lays it across the back of a chair.,lets someone into the room.,hands them to someone.,stares at her expectantly.,hobbles close on her.,gold0-orig,pos,unl,unl,pos,pos,She starts to take off her coat.,He\nlsmdc0010_Frau_Ohne_Gewissen-51095,1490,\"The camera pans up the front of the building to the top floor windows, as a little rain starts to fall. Someone\",stands by the window with his coat off and his tie loose.,is blown to pieces.,breaks water away from someone's car.,looks up at someone from underneath.,,gold0-orig,pos,unl,unl,pos,n/a,\"The camera pans up the front of the building to the top floor windows, as a little rain starts to fall.\",Someone\nlsmdc0010_Frau_Ohne_Gewissen-51095,1500,Her arms tighten around him. After a moment he,\"pulls his head back, still holding her close.\",\"tumbles onto the pavement, throwing herself over the terror and fierce waves.\",takes her counterpart off.,grabs hers and goes back down the stairs.,suddenly reaches for her weapon and thrusts the dress back and fourth into someone's hair.,gold1-orig,pos,unl,unl,unl,unl,Her arms tighten around him.,After a moment he\nlsmdc0010_Frau_Ohne_Gewissen-51095,1489,\"It is a six - story building in the Normandie - Wilshire district, with a basement garage. The camera\",\"pans up the front of the building to the top floor windows, as a little rain starts to fall.\",\"fixes, showing tiny lights swirling in the night and smoke drift past the two children parked nearby.\",drifts directly toward us on a sunken street.,pans finished to illuminate the column of people lounging with crates and strewn on the ground.,,gold0-orig,pos,unl,pos,pos,n/a,\"It is a six - story building in the Normandie - Wilshire district, with a basement garage.\",The camera\nlsmdc0010_Frau_Ohne_Gewissen-51095,1497,Someone has moved over to the window. She,stares out through the wet window - pane.,eats a morsel as well.,\"sniffs and leans along the ladder, towards him.\",\"looks around, then turns back to someone.\",\"turns off the light, then runs onward.\",gold1-orig,pos,unl,unl,pos,pos,Someone has moved over to the window.,She\nlsmdc0010_Frau_Ohne_Gewissen-51095,1492,Someone just looks at her. She,has nothing in her hands but her bag.,\", who's at someone's lingerie, watches as he stares at a picture.\",\"quickly more major fish into the water, holding a large carton close to her.\",does go with a shrug and he starts to key the door again.,\"exchange three second eyes, then slowly turns to someone, who looks around once, aware of this.\",gold1-reannot,pos,unl,unl,unl,unl,Someone just looks at her.,She\nanetv_YzyCFfrX_4I,7061,The person jumps up on a skateboard and grinds a rail. He,grinds his way back and walks towards the camera.,rides down one side road with cattle and jumps in.,continues to move and ski up as he skis.,repeats on the face.,lands in the dirt and holds it up.,gold0-orig,pos,unl,unl,unl,pos,The person jumps up on a skateboard and grinds a rail.,He\nanetv_YzyCFfrX_4I,13712,\"Two large houses with nicely manicured lawns are pictured. All of a sudden, a young boy\",appears and starts skateboarding across the sidewalk that has a basketball goal on it.,are shown playing the violin.,\"moves on a car room, and also an interview for the video.\",is college walking on the path surrounded by obstacles talking to the visitors.,\"goes green, the boy stop and people smile on the driveway.\",gold0-orig,pos,unl,unl,unl,unl,Two large houses with nicely manicured lawns are pictured.,\"All of a sudden, a young boy\"\nanetv_YzyCFfrX_4I,13713,\"All of a sudden, a young boy appears and starts skateboarding across the sidewalk that has a basketball goal on it. He\",finally comes back and starts to skateboard across a silver pole on on a bench.,comes out with the racket disc and there is a bongo player and some shorts replayed nearly in the video.,\"is a little later, holding a mallet and a stick on his arm.\",runs to man has a chair and is pasting the entire ice - gas shuffleboard back in the dark room.,\"exposes his shoulder on the table as he bounces the ball, trying one of his head to join them.\",gold0-orig,pos,unl,unl,unl,unl,\"All of a sudden, a young boy appears and starts skateboarding across the sidewalk that has a basketball goal on it.\",He\nanetv_YzyCFfrX_4I,7060,A close up of a house is seen with a person coming into frame. The person,jumps up on a skateboard and grinds a rail.,scrapes off the lawn and shows off the top.,continues peeling and pushing the mangos on the walk.,extends the tool all along the roof while covering it.,climbs off the hill the camera pans around.,gold1-reannot,pos,unl,unl,unl,unl,A close up of a house is seen with a person coming into frame.,The person\nanetv_PsddM2OmOGo,8618,A woman is standing with a roll of wall paper. the woman then,unrolls the wall paper.,begins painting the carpet.,pulls the bottle around and starts to put it on the top of a wall.,begins wrapping the gift paper around.,takes a bowl up waves to carve it.,gold0-orig,pos,unl,unl,unl,unl,A woman is standing with a roll of wall paper.,the woman then\nanetv_PsddM2OmOGo,8619,The woman then unrolls the wall paper. the woman then,applies the wall paper to the wall.,shows the chef how to put on ribbons in the pumpkin and beams.,hands the ends to the woman making the planks away.,uses the tool to hang it from the hedge and ends cover it.,bends down and uses a piece of paper to smooth out.,gold0-orig,pos,unl,unl,unl,pos,The woman then unrolls the wall paper.,the woman then\nanetv_PsddM2OmOGo,16745,Various text is shown is steps across the video as well as a woman unrolling some paper and placing it along the wall. She,places the paper along the wall and cuts the bottoms off.,actual video is shown by an individual teaching a ballet class demonstrating of proper ballet before jumping up and down the doors.,continues to speak to the camera about the image of the girl's hair and showing more parts.,looks a bit while talking and ends by leaning backwards and smiling into the camera.,,gold1-orig,pos,unl,unl,unl,n/a,Various text is shown is steps across the video as well as a woman unrolling some paper and placing it along the wall.,She\nanetv_PsddM2OmOGo,16746,She places the paper along the wall and cuts the bottoms off. She,sits comfortably in a chair and is seen holding several different wallpapers against the wall.,takes it and adds discs to the seam where the results ends.,climbs back on the ladder and yawns while climbing onto a door.,ends by putting down more paper.,,gold0-orig,pos,unl,unl,pos,n/a,She places the paper along the wall and cuts the bottoms off.,She\nanetv_OPqqbxGKp6E,8599,The eggs are poured into a plate and salt and pepper are added. The person,walks away from the stove.,adds more waxes into the pan.,chops them in the pot along with the cheese holding up noodles and sprayed with plastic.,puts all the ingredients into a glass.,tastes the mix and sprays it with the liquid.,gold0-orig,pos,unl,unl,unl,pos,The eggs are poured into a plate and salt and pepper are added.,The person\nanetv_OPqqbxGKp6E,8598,A fire starts on the eye the person blow it out. The person,flips the eggs with a spatula.,adds down the vase of nail and head close up.,inhales and coats through the mask.,stops and cuts the wallpaper.,holds a wooden shield with a heavy piercing tool.,gold1-reannot,pos,unl,unl,unl,pos,A fire starts on the eye the person blow it out.,The person\nanetv_OPqqbxGKp6E,8596,We see a person in a kitchen cooking on the stove. The person,has skillet with butter they add eggs to.,pours pasta and adds oil on.,adds bowls to the bowl around the stove to give a thumbs up.,patrols the salad and adds to the mixture and sanding some broth into it with a clipper.,shows a swiffer to a pan that has been prepped.,gold0-reannot,pos,unl,unl,unl,unl,We see a person in a kitchen cooking on the stove.,The person\nlsmdc3071_THE_DESCENDANTS-5252,15721,\"Later, he searches stacks of documents. Someone\",views two portraits on a wall.,reads one of the limbs of a line.,\"sulks to the table and watches her softly, then puts on a pair of cloth.\",hurries into someone's house.,compares up someone's card.,gold1-reannot,pos,unl,unl,unl,unl,\"Later, he searches stacks of documents.\",Someone\nlsmdc3071_THE_DESCENDANTS-5252,15720,\"Someone wears a nonplussed smile, then walks his daughter to their car. Later, he\",searches stacks of documents.,rides a scaffold through the back door of a hefty truck.,knocks down the full window.,comes back into the store.,enters the hazy basement.,gold0-reannot,pos,unl,unl,pos,pos,\"Someone wears a nonplussed smile, then walks his daughter to their car.\",\"Later, he\"\nanetv_2xQVZorob1Q,4548,\"An individual shovels snow, but only the lower legs and shovel are visible on camera. The individual\",sets aside the shovel and walks towards the camera.,uses the electric chair to wipe off the end of the ski.,uses a tool to navigate the deluminator.,uses a small tool to caring on the snow.,,gold1-orig,pos,unl,unl,unl,n/a,\"An individual shovels snow, but only the lower legs and shovel are visible on camera.\",The individual\nanetv_2xQVZorob1Q,4549,The individual sets aside the shovel and walks towards the camera. The camera once again,shows the individual shoveling.,shows us the paint dog.,grooms itself and her hair is pointed brushed.,show a masked man sitting on the floor.,,gold1-orig,pos,unl,unl,unl,n/a,The individual sets aside the shovel and walks towards the camera.,The camera once again\nanetv_AHXcJCpvkAQ,734,A title screen leads into two women stepping up and down on a block. They,perform several different exercises on the beam and move together in a synchronized motion.,instructor twists around in the middle.,then begins walking around them.,begin alone with one another and moving her foot relentlessly.,,gold0-orig,pos,unl,pos,pos,n/a,A title screen leads into two women stepping up and down on a block.,They\nanetv_gLfvk2SSj1c,12366,A man is shown climbing the wall while strapped into a protective harness. The man,returns to the wall and shows taped markers on the walls with numbers on them.,is then shown up on the ski and begins to ride the rope and a rope rope with a large rope.,climbs into the back of the motorcycle and jacks the car up.,moves the stick around and hits it on small a wall.,repeats the process over and over again.,gold1-orig,pos,unl,unl,unl,pos,A man is shown climbing the wall while strapped into a protective harness.,The man\nanetv_gLfvk2SSj1c,11476,A young man wearing a green shirt is talking about the techniques involved in rock climbing. Two young men,are seen climbing the wall while being suspended on ropes.,wearing red skiing are shown and they one individual taping the bulls's feet.,are rollerblading outdoors the street two bikers as they walk towards a club.,jump through the trapdoor and hang on the uneven bars before getting in by and flipping.,,gold0-orig,pos,unl,unl,unl,n/a,A young man wearing a green shirt is talking about the techniques involved in rock climbing.,Two young men\nanetv_gLfvk2SSj1c,11479,The man in the green shirt explain the technique as he points to the wall to show the significance of each rock and its height. He,shows various rocks that are named differently and as assigned different numbers.,is reading his president of the competition.,begins a video of the man and a child ride a jack down a sreet.,squeezes down some of the paper and creating a sandwich stand from the end.,are shown in partying while other man is interviewed and can not recorded that it's cricket.,gold0-orig,pos,unl,unl,unl,unl,The man in the green shirt explain the technique as he points to the wall to show the significance of each rock and its height.,He\nanetv_gLfvk2SSj1c,11477,Two young men are seen climbing the wall while being suspended on ropes. There,'s another young man who is demonstrating how to climb up the wall while holding onto the wall mounts.,group are shown moving the flags and arrows in the back.,get up from a small hole when a man walks after the board.,people climb over the kayak to break at one another.,,gold0-orig,pos,unl,unl,unl,n/a,Two young men are seen climbing the wall while being suspended on ropes.,There\nanetv_gLfvk2SSj1c,11478,There's another young man who is demonstrating how to climb up the wall while holding onto the wall mounts. The man in the green shirt,explain the technique as he points to the wall to show the significance of each rock and its height.,is measuring it with water soap before he begins to push it when he is done.,\"does a same backwards, las hand, with all of his right moves and climbs up onto the climbing wall.\",then lifts the beam and begins jumping all around the room while standing to his back.,stands at the end of the stairs and leads off down to the sand mat.,gold0-reannot,pos,unl,unl,unl,pos,There's another young man who is demonstrating how to climb up the wall while holding onto the wall mounts.,The man in the green shirt\nlsmdc0019_Pulp_Fiction-56944,7211,Someone walks in and stands in front of the two captives. He,\"inspects them for a long time, then says.\",does n't even hit when she has returned.,faces the dripping shards.,has the star in his hair.,stretches past a lid of upper revolving windows.,gold1-orig,pos,unl,unl,unl,unl,Someone walks in and stands in front of the two captives.,He\nlsmdc0019_Pulp_Fiction-56944,7209,\"After taking in their predicament, people look at each other, all traces of hostility gone, replaced by a terror they both share at what they've gotten themselves into. People\",come through the curtains.,can't hear what they are saying.,\"just paddles and turns to him, as though it is involved in the plant.\",continue to walk and walk in the silence.,will notice as someone drives over and follows someone to.,gold0-orig,pos,unl,unl,unl,unl,\"After taking in their predicament, people look at each other, all traces of hostility gone, replaced by a terror they both share at what they've gotten themselves into.\",People\nlsmdc0019_Pulp_Fiction-56944,7208,\"Without saying another word, someone climbs up the stairs. People\",look around the room.,\"back, someone spots a light falling off someone's face.\",leap into the courtroom to crowds someone.,stops by people.,,gold0-orig,pos,unl,unl,unl,n/a,\"Without saying another word, someone climbs up the stairs.\",People\nlsmdc0019_Pulp_Fiction-56944,7210,The two hillbillys are brothers. Someone,walks in and stands in front of the two captives.,bends down and faces a portrait.,looks at the guests as he walks onward.,looks across at someone who nods at his sheepish son.,gazes at someone as he points forward at the floor.,gold1-orig,pos,unl,unl,pos,pos,The two hillbillys are brothers.,Someone\nanetv_W80KSM1I47Q,18678,Video from the 1980's is shown. Celebrities,play a game of tug of war outdoors.,see a woman holding a tight iron over her hair.,\"turn to deep in the sky, trying to get somewhat naked.\",start to ride the bike which ends with a man shocked and long.,tiptoe an artist using a dazzling tool.,gold0-orig,pos,unl,unl,unl,unl,Video from the 1980's is shown.,Celebrities\nanetv_JRr3BruqS2Y,8126,The girl is bent over on roller blades pulling something out of a bench. She,does tricks on the bench.,is rubbing her neck.,gets her back up on the ground.,gets out of the raft.,is holding the comb with her hair.,gold0-orig,pos,unl,unl,unl,unl,The girl is bent over on roller blades pulling something out of a bench.,She\nanetv_JRr3BruqS2Y,8123,A man in a black shirt is sitting down and talking. It,goes back to the man in a black hat talking.,return to the game.,is sitting in the scuba diving diving board.,see a boy making a grooming casket in front of a tree followed by a group of people gathered in a large street.,kids are behind him that are showing traditional italian restaurant.,gold0-orig,pos,unl,unl,unl,unl,A man in a black shirt is sitting down and talking.,It\nanetv_JRr3BruqS2Y,8121,A woman in a grey sweater talks to the camera on the sidewalk. A man in a black hat,talks to the camera in front of a blue building.,is talking to a woman in a white t shirt.,records next stage and is a basket up a high exercise.,sits there at a table in a large environment covered with snow.,talks to the camera while talking.,gold1-orig,pos,unl,unl,unl,unl,A woman in a grey sweater talks to the camera on the sidewalk.,A man in a black hat\nanetv_JRr3BruqS2Y,8124,It goes back to the man in a black hat talking. It,goes back to the man in the black shirt talking.,is wearing a black costume.,are to shake flags using the selfie stick.,has an great deal about what they do.,,gold0-orig,pos,unl,unl,pos,n/a,It goes back to the man in a black hat talking.,It\nanetv_JRr3BruqS2Y,8120,She goes back across the street alone. A woman in a grey sweater,talks to the camera on the sidewalk.,is still speaking with her dropped on her right hand.,goes over and shoulders him.,is standing in front of them talking.,is wearing a dark pink hoodie and skinny jeans.,gold1-orig,pos,unl,unl,unl,pos,She goes back across the street alone.,A woman in a grey sweater\nanetv_JRr3BruqS2Y,8129,The girl on roller blades does another trick. An older woman,is talking to the camera.,walks out of the restaurant.,sits on a cardio machine.,is standing up on the wall.,is interviewed on the screen several times.,gold0-orig,pos,unl,unl,unl,pos,The girl on roller blades does another trick.,An older woman\nanetv_JRr3BruqS2Y,8128,A woman in a pink shirt is talking. Three kids,are sitting on a bench in roller skates talking.,are sitting in a hopscotch together.,are taking down the stairs and laying clothes.,start playing racquetball on the sand.,are shown in a studio in a gym.,gold1-orig,pos,unl,unl,unl,pos,A woman in a pink shirt is talking.,Three kids\nanetv_JRr3BruqS2Y,8119,A woman is rollerskating across a street with people crossing behind her. She,goes back across the street alone.,watches the van fall on a clothesline.,stops by a women in a pink leotard.,kneels down on the ground.,makes several seats around the lane.,gold0-orig,pos,unl,unl,unl,unl,A woman is rollerskating across a street with people crossing behind her.,She\nanetv_JRr3BruqS2Y,8127,A man with a mohawk talks. The girl,does more tricks on her roller blades.,stops playing and then her hair.,nail her eye several times while braiding the dogs hair.,walks with a man in a circle and thumbs the lady's legs.,,gold0-reannot,pos,unl,unl,unl,n/a,A man with a mohawk talks.,The girl\nlsmdc1018_Body_Of_Lies-79958,1604,Someone picks up his bag and his coffee and gets in the four - by - four. Someone,sips his coffee as someone drives.,enters the van martina reappears in her hands.,takes up the phone to someone's car.,\"has him working, then, through the door, to the next door to the stairs.\",\"gets out of bed, looking through the window, and turns back down the hall.\",gold0-orig,pos,unl,unl,unl,pos,Someone picks up his bag and his coffee and gets in the four - by - four.,Someone\nlsmdc1018_Body_Of_Lies-79958,1603,\"Someone, wearing jeans, shirt, casual top, and a baseball cap, sits at an Iraqi street cafe, sipping coffee. The driver, someone,\",has long black hair and a ponytail.,takes the package wrapped in chocolate.,\"sits with a large lot of red car hunches, looking down at the intersection behind her.\",walks toward her car and slams the door shut.,comes to the passenger side.,gold1-orig,pos,unl,unl,pos,pos,\"Someone, wearing jeans, shirt, casual top, and a baseball cap, sits at an Iraqi street cafe, sipping coffee.\",\"The driver, someone,\"\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15565,\"Someone gives a comprehending nod, then smiles at him. Someone\",wears a disgruntled look.,\"turns and steps away, staying his feet towards them.\",\"drives, followed by an electric fan.\",picks up a small bundle.,sits in the massage chair.,gold0-orig,pos,unl,unl,pos,pos,\"Someone gives a comprehending nod, then smiles at him.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15564,\"Entering, someone frowns at seeing someone. Someone\",\"gives a comprehending nod, then smiles at him.\",picks up the card from his pocket and searches through the room.,stands at their table.,stares at his reflection taking down smoke.,makes a cocktail blow with her sari.,gold1-orig,unl,unl,unl,unl,unl,\"Entering, someone frowns at seeing someone.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15568,Someone follows with a long sigh. Someone,peers after them as they enter another room.,detail himself builders and wears his new piece.,\"crosses the floor, then leans on its shade against a wall and stares into the curtains.\",turns to greet someone.,,gold0-orig,pos,unl,pos,pos,n/a,Someone follows with a long sigh.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15567,\"Smiling tightly, she jerks her to the side, then moves off. Someone\",follows with a long sigh.,slides down across the paper on the keys.,stands and takes a picture in front of her.,stares through the back door.,,gold0-orig,pos,unl,pos,pos,n/a,\"Smiling tightly, she jerks her to the side, then moves off.\",Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15569,Someone peers after them as they enter another room. Someone,stares with disbelieving eyes.,watches as someone making soup on her food list.,'s on his way as two thugs tap him through a door.,looks down at them.,stands on an elevator facing the landing and smiles to herself.,gold0-orig,pos,unl,pos,pos,pos,Someone peers after them as they enter another room.,Someone\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15571,\"She blinks up at him. Following her into the hall, he\",\"glances at someone, who looks away.\",glances approaching a passing someone.,finds her over her bed in her bed.,finds his wrists gone.,joins the approaches someone.,gold0-reannot,pos,unl,unl,unl,unl,She blinks up at him.,\"Following her into the hall, he\"\nlsmdc3032_HOW_DO_YOU_KNOW-2391,15570,Someone stares with disbelieving eyes. She,blinks up at him.,hooks her hands around the monk's neck.,smiles and raises the phone to his ear.,\"shakes his head, then looks down at his fingers.\",stands behind the counter as someone stares.,gold0-reannot,pos,unl,pos,pos,pos,Someone stares with disbelieving eyes.,She\nanetv_yZLwR5EJ7Wc,20031,A man plays bagpipes in a city square while nobody pays attention. A cop,tells him to stop.,\"falls down the street, mouth and bloody, and the men talk to the camera man step on the sticks.\",drives the bumper cars with an ice scraper.,\"appears in a line, some in black and pink.\",does a metal drum as they charge.,gold0-orig,pos,unl,unl,unl,unl,A man plays bagpipes in a city square while nobody pays attention.,A cop\nanetv_zAr9k1-umvY,5824,They lay down a pink paper onto the floor. They,put tile on top of the paper.,begin dancing and handing them to the camera.,are engaged in a game of soccer.,begin to play in a beautifully ornamental ground.,,gold0-orig,pos,unl,unl,unl,n/a,They lay down a pink paper onto the floor.,They\nanetv_zAr9k1-umvY,5823,Another man stands behind them helping them. They,lay down a pink paper onto the floor.,turn on the horses routine.,take their stilts out on a pole and walk with the dolls.,take his turn and finally go to another raft.,turn into the sunlight.,gold1-orig,pos,unl,unl,pos,pos,Another man stands behind them helping them.,They\nanetv_zAr9k1-umvY,5822,A person is kneeling down putting tile onto the wall. Another man,stands behind them helping them.,lays out the floor and sets the rug down on the wood floor next to it.,lays down on the floor.,is putting a layer of plaster on the roof.,is shown laying plaster onto the wall again.,gold0-orig,pos,unl,unl,unl,pos,A person is kneeling down putting tile onto the wall.,Another man\nanetv_zAr9k1-umvY,11700,Next he starts to put tiles onto the wall and another man comes to help. Then the man,covers the small floor with cement and puts brown tiles onto the floor.,cuts out the bottom of the wall to clean it's tumbled with a stick and continues to rub it on the wall again.,gets to the top of the roof and balances it.,reaches the top of the wall and links the box in and shoves them back in the back room again.,starts to investigate the boot.,gold0-orig,pos,unl,unl,unl,unl,Next he starts to put tiles onto the wall and another man comes to help.,Then the man\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89907,2561,Someone checks her reflection in the mirror. She,quickly takes a seat as the housekeeper shows their guests in.,\"gazes up at her collar, then boogies.\",grimaces as she finds someone laces up.,\"brushes his hair, smiling and stokes her hair.\",looks even as they share a look.,gold1-orig,pos,unl,unl,pos,pos,Someone checks her reflection in the mirror.,She\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89907,2562,She quickly takes a seat as the housekeeper shows their guests in. People,look nervous as the two gentlemen enter and bow.,\"lie on top of each other, as people look away.\",are loading through in the basin for shelter.,'s aide grabs two people.,,gold0-orig,pos,unl,unl,unl,n/a,She quickly takes a seat as the housekeeper shows their guests in.,People\nlsmdc1041_This_is_40-8903,8533,\"Someone gives an earnest nod. Now, in an suv, he\",sings to his wife.,hurries toward the handicapped bar.,extends the orange glove over someone.,downs the two glasses after it before himself.,,gold0-orig,pos,unl,unl,unl,n/a,Someone gives an earnest nod.,\"Now, in an suv, he\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14286,\"He takes the flag on its wooden pole. Beside him, someone\",gives a nod and raises his staff in congratulations.,stands on a deep landing and gazes pensive.,glides into the carriage after a brisk strut.,watches a vast lake across the brightly lit ocean.,,gold1-orig,pos,unl,unl,unl,n/a,He takes the flag on its wooden pole.,\"Beside him, someone\"\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14284,As someone saunters away he twirls his sword like a propeller blade at his side. He,makes his way through a crowd of red soldiers who part to let him by.,wields it lorries - face - in its horn as he snaps.,\"stands, clutching his foot.\",\"backs away from the zookeeper, switching his hand over the barred seals.\",watches from a distance.,gold0-orig,pos,unl,unl,unl,unl,As someone saunters away he twirls his sword like a propeller blade at his side.,He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14281,\"The son of Poseidon blocks his opponent's sword with his own, then elbows him in the back. Someone\",\"aims his weapon at her, its tip stopping within inches of her throat.\",aims him at the spear.,takes a disappointed drag.,\"shakes his head, then bites his lip.\",stands by the table.,gold0-orig,pos,unl,unl,pos,pos,\"The son of Poseidon blocks his opponent's sword with his own, then elbows him in the back.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14283,Someone pulls someone's sword from her grasp and turns its blade against the back of her neck. As someone saunters away he,twirls his sword like a propeller blade at his side.,leans her head against the jewel and looks around.,sees a long limb pinning them down a cliff.,picks up his mitt.,hurries over the top of the staircase and spots his mother behind her.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls someone's sword from her grasp and turns its blade against the back of her neck.,As someone saunters away he\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14279,\"He glances from the sword in his hand, the healed cut on his palm. She\",stares with wide eyes.,nuzzles towards his mother.,glances up at the figure of dolphins waves vanishing in the water.,snatches the gun from him then runs to someone.,\"turns slowly towards him, tastes deeply.\",gold0-orig,pos,unl,unl,pos,pos,\"He glances from the sword in his hand, the healed cut on his palm.\",She\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14282,\"Someone aims his weapon at her, its tip stopping within inches of her throat. Someone\",pulls someone's sword from her grasp and turns its blade against the back of her neck.,\"spots someone lying on the ground in front of someone, surrounding him.\",spots the freight driver.,\"clenches his hold, considers.\",,gold1-orig,pos,unl,pos,pos,n/a,\"Someone aims his weapon at her, its tip stopping within inches of her throat.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14287,\"Beside him, someone gives a nod and raises his staff in congratulations. Someone\",holds up someone's arm like a boxing champion as they push through the crowd toward a refreshment table.,takes someone's hand and inserts it into her breast pocket.,lumbers out as he plants the carved stone.,\"sucked his way out, staying at his heels.\",\"is picked up by someone, who stands in his hand.\",gold0-orig,pos,unl,unl,unl,unl,\"Beside him, someone gives a nod and raises his staff in congratulations.\",Someone\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14285,He makes his way through a crowd of red soldiers who part to let him by. He,takes the flag on its wooden pole.,gets out and doubles over.,\"a cool grin, everyone turns to look at the trotting someone's flat like bench.\",\"shows himself against a building, which signs off side to side.\",turns and knocks down the steward.,gold1-reannot,pos,unl,unl,unl,unl,He makes his way through a crowd of red soldiers who part to let him by.,He\nlsmdc3054_PERCY_JACKSON_LIGHTENING_THIEF-25982,14280,She stares with wide eyes. Someone,hurriedly joins the gathered warriors on the banks to watch.,heads through a window in a large airport area.,picks up her breakfast and writes someone off.,treads six pressing down on hers.,watches as the herd crumbles into the night.,gold0-reannot,pos,unl,unl,unl,pos,She stares with wide eyes.,Someone\nanetv_ERGoTBC8NkA,11815,A woman is standing in a bathroom. She,is holding an electric toothbrush in her hand.,lays down a glass and gets a pull of the fridge.,is shaving a white dog with an electric toothbrush.,is wiping a sink in a shower.,is wiping a dog with a paper towel.,gold0-orig,pos,unl,unl,unl,unl,A woman is standing in a bathroom.,She\nanetv_ERGoTBC8NkA,11817,She pushes the button and puts toothpaste on the toothbrush. She,wets the toothbrush in the sink and begins to brush her teeth.,folds her clothes and stops to speak into the microphone.,tries to release her.,strolls in front of her and repeats the process when she is done.,\"takes off another potato and drops the yellow sauce, trying to make it.\",gold0-orig,pos,unl,unl,unl,unl,She pushes the button and puts toothpaste on the toothbrush.,She\nanetv_ERGoTBC8NkA,8051,A girl is standing inside her bathroom. She,is using a battery operated toothbrush.,is followed by a music on a podium.,is underwater and starts washing the dog's fur.,is getting her nails wet with a powder.,picks up a piece of fruit and puts down.,gold0-orig,pos,unl,unl,unl,unl,A girl is standing inside her bathroom.,She\nanetv_ERGoTBC8NkA,11816,She is holding an electric toothbrush in her hand. She,pushes the button and puts toothpaste on the toothbrush.,continues to brush the sink and puts toothpaste on her toothbrush.,begins shaving her legs under her.,wipes her hand off the sneakers faucet.,\"twists her legs, and then brushes her teeth.\",gold1-reannot,pos,unl,unl,unl,pos,She is holding an electric toothbrush in her hand.,She\nlsmdc1009_Spider-Man3-76084,16421,He makes his way to his seat. As he sits down in the center of the front row a couple of large men,sit on either side of him.,arranged around a procession surrounds and walked off.,are bouncing up and down in the gravel.,\"look up at someone, and smiles.\",sit on a wooden railing and watch.,gold0-orig,pos,unl,unl,unl,pos,He makes his way to his seat.,As he sits down in the center of the front row a couple of large men\nlsmdc1009_Spider-Man3-76084,16422,\"Someone descends a staircase wearing a glamorous, long, white dress. Someone\",grins proudly and mouths the lyrics.,brushes someone's hair.,tweaks his locket on the key.,sits beside an bridesmaid coat on the beach.,strokes someone's hair.,gold1-orig,pos,unl,unl,pos,pos,\"Someone descends a staircase wearing a glamorous, long, white dress.\",Someone\nlsmdc1009_Spider-Man3-76084,16420,Someone steps up to the ticket window. He,makes his way to his seat.,grabs a lovely sign.,touches someone's son.,comes to a halt and climbs into a car.,\"eyes a car, as he hikes past the buildings.\",gold1-orig,pos,unl,unl,unl,unl,Someone steps up to the ticket window.,He\nlsmdc3052_NO_STRINGS_ATTACHED-25239,3254,He goes to stand but stops himself. He,clutches the towel over his penis.,puts his briefcase on the chair casually.,starts to move again.,looks up to see richard parker at his window.,releases the crewman with a cloth and a tie.,gold1-orig,pos,unl,unl,unl,unl,He goes to stand but stops himself.,He\nlsmdc1009_Spider-Man3-76910,8437,He stops in front of the stage and looks up at someone. She,looks at him equally cautiously.,hands someone to him.,heads down the staircase after past several patrons.,pulls her into a hug.,turns away and lowers her eyebrow.,gold0-orig,pos,pos,pos,pos,pos,He stops in front of the stage and looks up at someone.,She\nlsmdc1009_Spider-Man3-76910,8436,\"Someone spots him, and he comes towards her with a tentative expression. He\",stops in front of the stage and looks up at someone.,\"runs down one of them, takes someone by the hand, and drags him aside.\",\"gazes at her, then rests her chin on his shoulder.\",staggers over to the side and punches his throat.,leans right on the hump of a sofa.,gold0-orig,pos,unl,unl,unl,pos,\"Someone spots him, and he comes towards her with a tentative expression.\",He\nlsmdc1009_Spider-Man3-76910,8441,\"With neither of them quite venturing a smile, someone steps down off the stage and slowly leans into him laying her head on his shoulder. They put their arms around each other and someone's eyes\",fill with tears as she rests her hand on the back of his neck.,follow her through the length of the corridor.,\"pop up behind her, stroking her small white matching nightie, inside.\",move up and down her lips.,are wide open as if to speak.,gold0-orig,pos,unl,unl,unl,unl,\"With neither of them quite venturing a smile, someone steps down off the stage and slowly leans into him laying her head on his shoulder.\",They put their arms around each other and someone's eyes\nlsmdc1009_Spider-Man3-76910,8438,She looks at him equally cautiously. He,holds out his hand.,is nowhere to be heard.,squints throughout the shop.,studies her some more.,gets out of the car.,gold0-orig,pos,unl,unl,pos,pos,She looks at him equally cautiously.,He\nlsmdc1009_Spider-Man3-76910,8439,\"He holds out his hand. Tilting her head to one side, she\",steps to the edge of the stage and puts her hand in his.,sinks a finger aside.,meets someone's gaze.,\"lowers her eyes and then runs her fingertips over her brow, then pulls her long zipper around her shoulders.\",lifts her mouth to his chest.,gold0-orig,pos,unl,pos,pos,pos,He holds out his hand.,\"Tilting her head to one side, she\"\nlsmdc1009_Spider-Man3-76910,8442,They put their arms around each other and someone's eyes fill with tears as she rests her hand on the back of his neck. Slowly they,dance around and around.,do back back and forth to the right side of the kissing profile of the end.,are on a table as though to push her against one of the machines.,\"sit beneath an arched bridge, waking and looking in their direction.\",reach a closed where a beautiful floor lies further out.,gold0-orig,pos,unl,unl,unl,unl,They put their arms around each other and someone's eyes fill with tears as she rests her hand on the back of his neck.,Slowly they\nlsmdc1009_Spider-Man3-76910,8440,\"Tilting her head to one side, she steps to the edge of the stage and puts her hand in his. With neither of them quite venturing a smile, someone\",steps down off the stage and slowly leans into him laying her head on his shoulder.,turns away and tossing music together.,walks inside the arena of someone.,looks up at someone.,slides her hand down his cheek hard and his hands are held steady.,gold0-orig,pos,unl,unl,pos,pos,\"Tilting her head to one side, she steps to the edge of the stage and puts her hand in his.\",\"With neither of them quite venturing a smile, someone\"\nlsmdc1009_Spider-Man3-76910,8443,\"Slowly they dance around and around. Someone, his face calm and steady,\",\"holds his cheek against her long, auburn hair.\",is carved out of the leaves.,is slightly ahead of someone.,turns toward work at a snowy palace.,looks up at someone's concerned expression.,gold0-reannot,pos,unl,unl,unl,unl,Slowly they dance around and around.,\"Someone, his face calm and steady,\"\nanetv_mB90PudOrnU,15555,A girl is giving a small dog a bath. She,has an orange bottle in her hand.,is using a brush to clean her hair.,starts to brush her teeth.,walks to the sink and washes it.,,gold0-reannot,pos,unl,unl,pos,n/a,A girl is giving a small dog a bath.,She\nlsmdc1060_Yes_man-99407,12375,\"People walk through the small Lincoln, Nebraska airport. At the museum\",is a mock - up of an early telephone switchboard.,\"looked over doors mounted in the fine, plum - like room locates a private area which is beneath the closed double bed.\",we see the hobbit's hedestad black shirt.,\", a great view below shows with some other silver aging skipping.\",,gold0-orig,pos,unl,unl,unl,n/a,\"People walk through the small Lincoln, Nebraska airport.\",At the museum\nlsmdc1060_Yes_man-99407,12382,\"Jumping up and down amongst the crowd, someone's wearing giant yellow corncobs on his head and arms. Someone\",wears a massive red stetson.,is standing just above a bar.,cleans the thick glass window.,pulls someone out of the broomstick and carries him up.,hauls someone on the ground.,gold0-orig,pos,unl,unl,unl,unl,\"Jumping up and down amongst the crowd, someone's wearing giant yellow corncobs on his head and arms.\",Someone\nlsmdc1060_Yes_man-99407,12381,\"The football team, Big Red, in a red - and - white stripe, run onto the field. In someone's apartment, people\",watch the game on tv.,stand among the shacks.,stand in the same doorway.,pull off street clothes from gambling.,are working down buying snacks.,gold0-orig,pos,unl,unl,unl,unl,\"The football team, Big Red, in a red - and - white stripe, run onto the field.\",\"In someone's apartment, people\"\nlsmdc1060_Yes_man-99407,12373,\"Someone walks up to someone, who's wearing a dark blue coat with red piping. He\",picks her up around her waist with one arm and carries her to a check - in desk.,boulder that has narrow corridor and stands orange.,looks at them gravely.,turns and looks up expectantly.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone walks up to someone, who's wearing a dark blue coat with red piping.\",He\nlsmdc1060_Yes_man-99407,12379,A uniformed band plays at the packed Nebraska Cornhuskers Memorial Stadium. A mascot,jumps up and down.,leads the hostess pleasure overlays video of everyone practicing with others and others.,kicks a ball for him during his performance.,\"gets into a thug's ring, pumping him onto the curb.\",leads a band band together on a rock.,gold0-orig,pos,unl,unl,unl,unl,A uniformed band plays at the packed Nebraska Cornhuskers Memorial Stadium.,A mascot\nlsmdc1060_Yes_man-99407,12374,He picks her up around her waist with one arm and carries her to a check - in desk. The woman,looks at a computer screen.,keeps her head bowed.,\"adjusts the chair, kissing a corner.\",punches someone's ragged socks.,eyes the humanoid who leans down and responds an astonished smile.,gold1-orig,pos,unl,unl,unl,unl,He picks her up around her waist with one arm and carries her to a check - in desk.,The woman\nlsmdc1060_Yes_man-99407,12378,\"On a shooting range, someone shoots the ground. An instructor\",raises the gun barrel.,calmly scans some mezzanine and places the ring behind an approaching woman.,lies on the back wearing a black tank top.,poses with bunches of four razor rows.,sees dark sweat spots running on his forehead.,gold0-orig,pos,unl,unl,unl,pos,\"On a shooting range, someone shoots the ground.\",An instructor\nlsmdc1060_Yes_man-99407,12377,A mannequin holds a modern mobile phone. He,\"holds up the real vintage phone, which is massive.\",finds someone standing there with her arms raised shaking her hips and her hands over her heart.,tosses someone the note.,examines it with one finger.,,gold0-orig,pos,pos,pos,pos,n/a,A mannequin holds a modern mobile phone.,He\nlsmdc1060_Yes_man-99407,12376,At the museum is a mock - up of an early telephone switchboard. A mannequin,holds a modern mobile phone.,disturbs a straight white embroidered powder.,watch a green muscled guy with a tie waist hold.,is putting man out of an old - up tent.,,gold0-orig,pos,unl,unl,unl,n/a,At the museum is a mock - up of an early telephone switchboard.,A mannequin\nlsmdc1060_Yes_man-99407,12380,\"A mascot jumps up and down. The football team, Big Red, in a red - and - white stripe,\",run onto the field.,falls to the ground.,makes the third jump and runs toward the players.,catches him wearing a suit and twirls.,\"sees us, bending down to see her stud.\",gold0-orig,pos,unl,unl,unl,unl,A mascot jumps up and down.,\"The football team, Big Red, in a red - and - white stripe,\"\nanetv_GySHt3Z6Lt4,16388,\"Then, a man blow the fire, while the person puts sticks on the nascent fire. After, the fire\",starts to growth bigger and bigger while the men put sticks on top.,is shown in the chamber after the fire consumes the finish man.,spreads slowly up a little and steam it across the inside of a cabinet.,add several pieces with red and after.,,gold0-orig,pos,unl,unl,unl,n/a,\"Then, a man blow the fire, while the person puts sticks on the nascent fire.\",\"After, the fire\"\nanetv_5BYayNkmlBo,8713,\"A man is inside of a barn and is let out on a horse to catch a cow attached to the horse. As he throws his lasso, he\",misses the cow and runs to get something before going back to the cow.,lets go of the rope like it contained and lands on the ground.,pushes the other man by the horse and runs to it and catches one thing.,jumps into a pit while the fish is dragged around.,,gold0-orig,pos,unl,unl,unl,n/a,A man is inside of a barn and is let out on a horse to catch a cow attached to the horse.,\"As he throws his lasso, he\"\nanetv_5BYayNkmlBo,8714,\"As he throws his lasso, he misses the cow and runs to get something before going back to the cow. The man finally approaches the calf and another man comes out to assist him and he\",returns back to the horse.,engages in a bowl.,causes it to be blocked by one another.,cuts the cow before tying them into the air.,jumps off of the cow.,gold0-orig,pos,unl,unl,unl,unl,\"As he throws his lasso, he misses the cow and runs to get something before going back to the cow.\",The man finally approaches the calf and another man comes out to assist him and he\nlsmdc0011_Gandhi-52496,13691,\"The British are stunned almost to speechlessness - - the audacity, the impossibility of it - - and from someone of all people. The senior civil servant, someone,\",is the first to recover.,\"stands with someone, holding a bottle of champagne.\",is walking up a gangplank.,opens the door and walks off with a cloth.,keeps his hands in his arms.,gold1-orig,pos,unl,unl,unl,pos,\"The British are stunned almost to speechlessness - - the audacity, the impossibility of it - - and from someone of all people.\",\"The senior civil servant, someone,\"\nlsmdc0011_Gandhi-52496,13688,This time someone is in the middle and speaks with the full authority of a leader. The Indian side,\"acknowledges chelmsford's disclaimer - - coolly, but accepting it.\",comes on as he sits with his matching bag bag draped on his chest and hip.,is still back to someone and the laughs and speaks trying to keep her subject of this area.,is not giving the students.,,gold0-orig,pos,unl,unl,unl,n/a,This time someone is in the middle and speaks with the full authority of a leader.,The Indian side\nlsmdc0011_Gandhi-52496,13687,Chelmsford is pacing along one side of a large conference table. This time someone,is in the middle and speaks with the full authority of a leader.,begins to drag someone away.,has his neck pulled over his head.,works another bowl as an audience yells into fans.,\"sits behind the judge's desk in the next office, seated at a work table and in the pouring rain.\",gold0-orig,pos,unl,unl,unl,unl,Chelmsford is pacing along one side of a large conference table.,This time someone\nanetv_0ufZs4e24Xs,7775,They are engaged in a martial art called kickboxing. The two men,kick and alternate blows with punches.,stop glances at each other.,turn the hammer across the floor to jab at each other in place.,smile and parry over the bow.,scuttle running around each other with swords.,gold0-orig,pos,unl,unl,unl,unl,They are engaged in a martial art called kickboxing.,The two men\nanetv_0ufZs4e24Xs,7774,Two men are boxing inside a gym. They,are engaged in a martial art called kickboxing.,stand around to try to exercise.,are playing a game of table tennis.,bend over to put onto the trampoline and bow them on.,are playing a game of racquetball with one another.,gold0-orig,pos,unl,unl,unl,unl,Two men are boxing inside a gym.,They\nanetv_2zvN1cL1uik,14694,An intro starts with music player and foreign letter are presented across the screen. A man,sits down in front of a hookah and begins talking to the camera.,in a yellow shirt is talking to it.,plays a saxophone talking.,is shown a close up explaining how to play while another man talks.,,gold0-orig,pos,unl,unl,unl,n/a,An intro starts with music player and foreign letter are presented across the screen.,A man\nanetv_2zvN1cL1uik,14698,He sits down and takes another puff off the hookah. He then,continues taking puffs off the device and talking about how to get clear hits.,grabs the hookah and sucks the fish up into the air.,drills several hard pieces into trains with another piece passed out.,shows how to set the plastic into a water.,takes a drag on the hookah and rubs it down.,gold0-orig,pos,unl,unl,unl,unl,He sits down and takes another puff off the hookah.,He then\nanetv_2zvN1cL1uik,14696,The man takes a hit of the hookah and coughs a bit. The man,shows how to avoid coughing with a hookah by moving the tobacco around on the bowl.,takes the hookah out pipe and continues talking.,goes to his laptop and tries to play the accordian.,speaks to the camera then walks back across the room and holds eye contact.,whips the cigarette out of the table.,gold0-orig,pos,unl,unl,unl,unl,The man takes a hit of the hookah and coughs a bit.,The man\nanetv_2zvN1cL1uik,14695,A man sits down in front of a hookah and begins talking to the camera. The man,takes a hit of the hookah and coughs a bit.,takes a cigarette and lights it.,stands and bowls the drums off into the distance.,continues spraying the camera with the smoke.,continues to pretend that he plays.,gold1-orig,pos,unl,unl,unl,unl,A man sits down in front of a hookah and begins talking to the camera.,The man\nanetv_2zvN1cL1uik,14697,The man shows how to avoid coughing with a hookah by moving the tobacco around on the bowl. He,sits down and takes another puff off the hookah.,throws the salt on the wood and dumps it in the trash.,begins putting the cigarette in the hookah and looking to the camera.,motions in the background with a tune and arm brush as he talks to the camera.,,gold0-reannot,pos,unl,unl,unl,n/a,The man shows how to avoid coughing with a hookah by moving the tobacco around on the bowl.,He\nlsmdc0041_The_Sixth_Sense-68052,8366,Someone walks back and forth in front of him. Someone still,holds the sword from the play.,can't find her.,has been decapitated and piled up.,looks at the silver mark on his hand.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone walks back and forth in front of him.,Someone still\nanetv_sIzcPVbn0lg,9024,The girl rubs her nose with her right hand and continues to jump and dance. The girl,\"stops dancing, looks at the camera, and then continues to dance again and spins once.\",jumps onto a stool and moves her arms to grab the legs.,stops and stops laughing.,continues to do tricks with the stick while digging out for the camera.,is shown in the spot and is trapped by a ballerina.,gold0-orig,pos,unl,unl,unl,unl,The girl rubs her nose with her right hand and continues to jump and dance.,The girl\nanetv_sIzcPVbn0lg,11211,Little kid is dancing waring a pink dress in a room. kid,is jumping in the kitchen going side to side like dancing.,puts pink shirts on and standing in a wagon.,is sitting in front of a christmas tree.,wrap a nightie and shoe and walks inside.,is standing in front of the building.,gold0-orig,pos,unl,unl,unl,unl,Little kid is dancing waring a pink dress in a room.,kid\nanetv_sIzcPVbn0lg,9023,A young blonde girl is jumping and dancing in the kitchen. The girl,rubs her nose with her right hand and continues to jump and dance.,has her leg in unnerved ice cream and shakes it with a stick.,pauses to dance in a circle jumping on toes on the mat stretching back and forth.,walk in with a brush.,goes into an empty pool and is accompanied by a woman sitting facing the camera.,gold0-orig,pos,unl,unl,unl,unl,A young blonde girl is jumping and dancing in the kitchen.,The girl\nlsmdc0025_THE_LORD_OF_THE_RINGS_THE_RETURN_OF_THE_KING-60790,11170,Someone as the beacons burst into flames. His eyes,flash briefly with triumph before he hurries off.,are fixed on a tree inside the building.,\"go back to the clown, blinks rapidly and drops his pistol again.\",\"roll, while someone lowers, with his solidly - - toothed teeth, licks his fingers, eyes glistening with rage.\",widen as he lies on a slow swing.,gold0-orig,pos,unl,unl,unl,unl,Someone as the beacons burst into flames.,His eyes\nanetv_WsHzMciP5X8,19943,The audience cheers more and leads into people throwing a ball and others hitting it. More shots of the game being played,are shown as well as others watching on the sides.,are shown as well as people standing around the table and taking a shot.,are shown as well as people staring off into the distance.,are shown in slow motion.,is shown on a flood screen.,gold1-orig,pos,unl,pos,pos,pos,The audience cheers more and leads into people throwing a ball and others hitting it.,More shots of the game being played\nanetv_WsHzMciP5X8,19942,A large audience is seen watching a sports game and leads into a coin toss. The audience,cheers more and leads into people throwing a ball and others hitting it.,\"signals to him and returns with his feet, while playing the harmonica, a large wind charges below.\",cheers and holding his feet up as the other team joins him.,dances around while one ends the game before returning to the camera and moving to his drink.,,gold1-orig,pos,unl,unl,unl,n/a,A large audience is seen watching a sports game and leads into a coin toss.,The audience\nanetv_dE1NAofn3ks,10103,\"Another shot is made, and team members proceed to follow the shot and sweep the ice. A third shot is then made and the curlers\",allow the shot to knock out another puck.,continue to lay down in front of the goal.,does some martial arts moves.,bothering to begin kicking a ball featuring the camera.,get ready during maneuvering the bowling game.,gold0-orig,pos,unl,unl,unl,unl,\"Another shot is made, and team members proceed to follow the shot and sweep the ice.\",A third shot is then made and the curlers\nanetv_dE1NAofn3ks,10102,\"She makes the shot and lets go of the puck as the other team members chase it and sweep the ice. Another shot is made, and team members\",proceed to follow the shot and sweep the ice.,watch them run and run back and forth.,speak to each other and trade long angles.,look to play.,are talking about it as teams giving chase to their scores.,gold0-orig,pos,unl,unl,pos,pos,She makes the shot and lets go of the puck as the other team members chase it and sweep the ice.,\"Another shot is made, and team members\"\nanetv_dE1NAofn3ks,10101,A curler prepares to make a curling shot while being watch be other people in the arena. She,makes the shot and lets go of the puck as the other team members chase it and sweep the ice.,throws the splits into the sand.,is playing the violin in the room as she bobs.,fight shows the stage and the crowd wins.,gymnast bends to throw the part of the dart in action.,gold0-orig,pos,unl,unl,unl,unl,A curler prepares to make a curling shot while being watch be other people in the arena.,She\nlsmdc0049_Hannah_and_her_sisters-69383,300,\"The camera follows her, leaving someone briefly. As someone continues to talk offscreen, someone\",closes the cabinet drawer and walks to a file cabinet behind someone's desk.,\"walks down a deserted wharf, then turns and sees him sitting.\",reaches for the syringe.,looks at a menacing shape in a line of maize.,\"pops up from behind his desk, crosses the state - block removal unhappily then slides out the front door.\",gold0-orig,pos,unl,unl,unl,unl,\"The camera follows her, leaving someone briefly.\",\"As someone continues to talk offscreen, someone\"\nlsmdc0049_Hannah_and_her_sisters-69383,297,Someone gets up from her chair. She,walks past someone to a nearby cabinet.,looks at him.,gets up from the computer and puts her on as she points across a tiny balcony.,looks sheepishly at someone's mother and hugs her then wraps her arms around someone's shoulder.,meets someone's gaze.,gold0-orig,pos,unl,unl,unl,pos,Someone gets up from her chair.,She\nlsmdc0049_Hannah_and_her_sisters-69383,302,Someone opens the file cabinet and takes out a pack of gum. She,\"slams it closed, distracted.\",opens a final album.,puts them open as someone gets out of bed.,digs her sandwich away and salutes someone with a frown.,puts the toilet paper in one hand.,gold0-orig,pos,unl,unl,unl,unl,Someone opens the file cabinet and takes out a pack of gum.,She\nlsmdc0049_Hannah_and_her_sisters-69383,301,\"As someone continues to talk offscreen, someone closes the cabinet drawer and walks to a file cabinet behind someone's desk. Someone\",opens the file cabinet and takes out a pack of gum.,consults the gramophone card.,is him again.,raises a glass of champagne and taps the waitress's hand.,folds up her gown.,gold0-orig,pos,unl,unl,unl,unl,\"As someone continues to talk offscreen, someone closes the cabinet drawer and walks to a file cabinet behind someone's desk.\",Someone\nlsmdc0049_Hannah_and_her_sisters-69383,299,\"She opens a drawer, rummaging around for something. The camera\",\"follows her, leaving someone briefly.\",moves to a flap beneath the bed door.,stops automatically and starts to flicker in a glimpse of nicely bandage the bottom of the gun.,tracks her little sister gulp down.,\"shows a scoop of blood, cleaning the doll with her hands.\",gold1-reannot,pos,unl,unl,unl,unl,\"She opens a drawer, rummaging around for something.\",The camera\nlsmdc0049_Hannah_and_her_sisters-69383,298,She walks past someone to a nearby cabinet. She,\"opens a drawer, rummaging around for something.\",offers a loaf and bowler cards.,mimes it from the pane and lays it on the floor.,fills out the bottle.,watches him with wide eyes.,gold0-reannot,pos,unl,unl,unl,pos,She walks past someone to a nearby cabinet.,She\nlsmdc0051_Men_in_black-71079,4384,\"Though not quite dead, the Tiny Little Green Man is gravely wounded. Someone pulls again, and someone's entire face pushes out with a mechanical hum, then hinges open, the whole face\",rotating out away from the rest of the artificial skull.,grows resemble out of character.,lies with the murder which they almost burst from.,breaks down as the song settles on him.,tightly put to release poison.,gold0-orig,pos,unl,unl,unl,unl,\"Though not quite dead, the Tiny Little Green Man is gravely wounded.\",\"Someone pulls again, and someone's entire face pushes out with a mechanical hum, then hinges open, the whole face\"\nlsmdc0051_Men_in_black-71079,4383,\"He reaches out, touches the ear, then he actually turns it. - - it\",pulls away from the head.,'s a blue and pink planet.,looks like he's practicing for his ninety composure.,\"is the characters, upholstery and herald, their surprising increases.\",\"'s a nervous smile, in plaid, only a little drop.\",gold0-reannot,pos,unl,unl,unl,unl,\"He reaches out, touches the ear, then he actually turns it.\",- - it\nanetv_Z_YXWLkRmjQ,3000,The boy begins kicking his legs around. He,continues kicking his legs while others laugh in the distance.,connects hands with and walks away.,hop down on the mat.,climbs him on and the.,captures the stunts on the beam and speed before are out.,gold0-orig,pos,unl,unl,unl,unl,The boy begins kicking his legs around.,He\nanetv_Z_YXWLkRmjQ,2999,A boy is seen standing in a locker room with others. The boy,begins kicking his legs around.,takes several puffs and begins to play the drums and begins to speak.,picks up a stone journal and begins playing the flute.,\"moves around all to one of the tools and pulls a small plank against the wall, showing proper color to cut.\",continues playing on the floor as the man holds the object.,gold1-reannot,pos,unl,unl,unl,pos,A boy is seen standing in a locker room with others.,The boy\nanetv_Z_YXWLkRmjQ,13459,A few boys stand around doing different things in a locker room. One boy,kicks and spins around showing off his martial art skills.,rolls the other on as someone looks to the camera.,is riding the back with the kids and not too close.,uses a hammer to hold a pair of croquet poles.,goes over his head to help the man on the swing while walking away from the other.,gold0-reannot,pos,unl,unl,unl,unl,A few boys stand around doing different things in a locker room.,One boy\nanetv_3Vj0GcB_qh4,4619,Two young girls stand in front of a fireplace holding violins. The girls,begin playing a piece of music on the violins and then bow at the end.,demonstrates how to use a batons before putting it on the ground.,play the tug of war and floats in the air.,look at one another and point an eyebrow.,,gold0-orig,pos,unl,unl,pos,n/a,Two young girls stand in front of a fireplace holding violins.,The girls\nanetv_LE05u6TR9MI,17026,A large group of people are seen standing in a crowd yelling and playing a game of volleyball. The group of girls,continue to play while people cheer on the sides as well as cheerleaders.,practice in between as they continue running around.,practice and move around the area while the camera zooms in on them.,continue stunts while jumping up and down.,begin wrestling on the ice while the camera captures them from several angles.,gold1-orig,pos,unl,unl,unl,unl,A large group of people are seen standing in a crowd yelling and playing a game of volleyball.,The group of girls\nlsmdc3087_WE_BOUGHT_A_ZOO-41025,16720,\"Outside, a male lion walks up to a chain - link fence. Someone, someone, and the real estate agent\",watch him from the other side.,rolls up the stairs.,descend the steps to the porch.,walk past a lunch desk.,turn on the spot.,gold0-orig,pos,unl,unl,unl,pos,\"Outside, a male lion walks up to a chain - link fence.\",\"Someone, someone, and the real estate agent\"\nlsmdc3087_WE_BOUGHT_A_ZOO-41025,16721,\"Someone, someone, and the real estate agent watch him from the other side. Someone\",looks up at her dad.,pulls a gun from someone's breast pocket and pulls a trigger.,sees someone handing someone paperwork.,glances up at the glass section.,\"looks away, smiling proudly.\",gold1-reannot,pos,pos,pos,pos,pos,\"Someone, someone, and the real estate agent watch him from the other side.\",Someone\nlsmdc3087_WE_BOUGHT_A_ZOO-41025,16719,\"Startled by the sound of a roar, someone and someone look around. Outside, a male lion\",walks up to a chain - link fence.,gives someone a high five and takes a bite from his last skin.,strokes its head and shimmies along the sidewalk.,wiggles his cape at a bull magic sitting at the end of the stairs.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Startled by the sound of a roar, someone and someone look around.\",\"Outside, a male lion\"\nanetv_rWQz-EwA4EA,6476,\"A man is shown putting plaster on the sides of a small, enclosed area. He\",holds an object in his hands and finally looks back towards the camera.,takes the tool neatly and begins stretching the knife on the wall.,bagged part of the roof again and and buffing it for a prod.,is pulled back around the table using the tool and picks up tarp before the person comes to search it again.,\"stands upright, trophies are shown as well as the high pole moves the top sticks in a cardboard box.\",gold0-orig,pos,unl,unl,unl,unl,\"A man is shown putting plaster on the sides of a small, enclosed area.\",He\nanetv_rWQz-EwA4EA,10865,He is throwing putty onto a wall in front of him. He,is holding a board with putty on it.,puts a ball on the device on the timing cards.,throws the rod in the air and runs away from the wall.,are venom about a ring.,\"responds with a sharp sneer, dropping three balls.\",gold0-orig,pos,unl,unl,unl,unl,He is throwing putty onto a wall in front of him.,He\nanetv_rWQz-EwA4EA,10864,A man is standing in a room. He,is throwing putty onto a wall in front of him.,is playing an electric guitar in the background.,demonstrates how to make exercise.,holds up a piece of exercise machine.,uses the towel to polish the shoe.,gold1-orig,pos,pos,pos,pos,pos,A man is standing in a room.,He\nlsmdc3047_LIFE_OF_PI-21901,6191,\"In a flashback, two stylish blondes ride bicycles down a street. They\",\"follow the charming, colorful street toward the sea.\",get out and walk out of a gallery.,lead to the supermarket floor.,pass parked across a white house.,spin a steady bar around a carpeted atrium in the middle of the week.,gold0-orig,pos,unl,unl,unl,unl,\"In a flashback, two stylish blondes ride bicycles down a street.\",They\nlsmdc3047_LIFE_OF_PI-21901,6189,He helps his host bring food to a table and they sit down to lunch. He,graciously serves his guest.,lifts his jacket and presents it to someone.,calls to get customers.,\"offers fans a much money, then digs the table into the order.\",,gold0-orig,pos,unl,unl,unl,n/a,He helps his host bring food to a table and they sit down to lunch.,He\nlsmdc3047_LIFE_OF_PI-21901,6190,\"He graciously serves his guest. In a flashback, two stylish blondes\",ride bicycles down a street.,\"walk by, salsa.\",throw poster on his desk.,puppets themselves at one foot.,arrives on the ice.,gold0-orig,pos,unl,unl,unl,pos,He graciously serves his guest.,\"In a flashback, two stylish blondes\"\nanetv_ct3uprBbPHw,7771,\"A man stands in front of the camera, then starts combing his hair forward. He then\",\"focuses on the sides and back of his hair, again combing down.\",\"proceeds to remove the hair, once he's done, and sprays the case on a third.\",takes his hair several times and then dries the back of his head.,\"puts the clippers on, touches the back of the head of the other man.\",finds his surfboard under the water and sets land down again.,gold0-orig,pos,unl,unl,unl,unl,\"A man stands in front of the camera, then starts combing his hair forward.\",He then\nanetv_ct3uprBbPHw,7772,\"He then focuses on the sides and back of his hair, again combing down. He\",\"brings the brush all around his hair, adding his left hand to swipe along.\",appears again and shows more lense while looking into the camera.,places a piano on the frame.,continues rubbing his neck and neck with the properly.,shows the other presents in a black beanie and also catches it.,gold1-orig,pos,unl,unl,unl,unl,\"He then focuses on the sides and back of his hair, again combing down.\",He\nlsmdc0005_Chinatown-48434,7084,Someone starts to get out of the car. Someone,\"grabs his arm, nearly screaming.\",reaches over and bumps someone at the door.,gets up and runs along the road.,gives a guilty look.,,gold0-orig,pos,unl,pos,pos,n/a,Someone starts to get out of the car.,Someone\nlsmdc0005_Chinatown-48434,7086,Her intensity actually rips someone 'already partially torn jacket. He,looks at it and her.,wields the walkie - talkie.,blocks a staircase with masonry falling with a metal grate.,brings her hand round to someone's face.,reaches down and pretends to help the bike stop.,gold0-orig,pos,unl,unl,unl,unl,Her intensity actually rips someone 'already partially torn jacket.,He\nlsmdc0005_Chinatown-48434,7085,\"Someone grabs his arm, nearly screaming. Her intensity actually\",rips someone 'already partially torn jacket.,returns to his face.,pushes away into the machine filling the room.,gets louder as they rush so fast until they are separated.,putty as someone leaps onto the fence and stands behind her.,gold0-reannot,pos,unl,unl,unl,unl,\"Someone grabs his arm, nearly screaming.\",Her intensity actually\nanetv_x1wy8QmHZL8,3638,Judges at a table watch her the whole time while they also write on a piece of paper. The girl,\"drops her baton, picks it up and then continues on with her routine.\",looks at a message in her own palm and has a transparent package together.,takes a photo pose for her client.,walks to the desk and holds it for the camera.,catches flips around between her sticks and the girl continues to throw some basketball with a defensive object in her hands.,gold0-orig,pos,unl,unl,unl,unl,Judges at a table watch her the whole time while they also write on a piece of paper.,The girl\nanetv_x1wy8QmHZL8,3637,The girl begins her baton routine and starts her routine and twirls the batons and her body. Judges at a table,watch her the whole time while they also write on a piece of paper.,are laid from behind and watching them take pictures.,is shown walking the stage doing a cheerleading dance routine during the dance.,are shown giving instructions on how to play the baton routine.,,gold0-orig,pos,unl,unl,unl,n/a,The girl begins her baton routine and starts her routine and twirls the batons and her body.,Judges at a table\nanetv_x1wy8QmHZL8,3636,A girl in a blue and sparkly costume is standing on a court while holding two batons. The girl,begins her baton routine and starts her routine and twirls the batons and her body.,puts her gloved hand up and folds her hands.,spins and does a flip in the air.,dances back and forth outside.,runs in both directions as she jumps off the wall and starts to do the routine.,gold0-reannot,pos,unl,unl,pos,pos,A girl in a blue and sparkly costume is standing on a court while holding two batons.,The girl\nanetv_thgW2RT30qQ,8794,An intro leads into several clips of a person lifting heavy weights over their shoulders as well as their arms all around. More shots,are show of athletes performing impressive stunts while looking off into the distance and people measuring their throws.,are shown of them playing a game as well as others with one person pushing the pucks.,are seen of the men climbing off the wall.,are shown of people playing hockey with one another as well as shown swimming around.,are shown of people riding and spinning around as well as showing different areas of their bodies and outdoor movements.,gold0-orig,pos,pos,pos,pos,pos,An intro leads into several clips of a person lifting heavy weights over their shoulders as well as their arms all around.,More shots\nanetv_aQulBdlcGNU,10149,She then lays by a fountain. She,kicks her feet forward.,begins to blow dry food onto the board.,has worked her way to the exercise machine.,picks up the gift and sets the box aside.,goes down the horse yard.,gold1-orig,pos,unl,pos,pos,pos,She then lays by a fountain.,She\nanetv_aQulBdlcGNU,10147,A woman lays on the ground. She then,reaches for her toes.,runs onto the mat.,gets up in the middle of her belly.,notices another scroll across the screen.,takes a purple paper and pinches the scissors on the boys wall.,gold1-orig,pos,unl,unl,unl,unl,A woman lays on the ground.,She then\nanetv_aQulBdlcGNU,12438,The woman is doing static bike laying on the floor. the woman,is next to a waterfall doing abs.,is then sitting on a sled.,gets down in the dirt.,is wearing a bicycle.,add the tape to the chin and scrape it off over a dirt.,gold1-reannot,unl,unl,unl,unl,unl,The woman is doing static bike laying on the floor.,the woman\nanetv_aQulBdlcGNU,12437,Woman is laying on the floor doing abs. the woman,is doing static bike laying on the floor.,is in a guitar with her dog.,looks around and wraps her baton around the neck.,smiles and stands in front of a car.,uses her tools to trim the other side.,gold1-reannot,unl,unl,unl,unl,unl,Woman is laying on the floor doing abs.,the woman\nanetv_u3nOmvgcs84,7081,A girl stands by a counter with various food items placed out on the counter. She,holds up the ingredients and instructs what you'll need to make a sandwich.,feeds her parsley and then cleans off a pie.,is thrown on the rack and placed on top.,points to her email.,,gold0-orig,pos,unl,unl,unl,n/a,A girl stands by a counter with various food items placed out on the counter.,She\nanetv_u3nOmvgcs84,7083,She begins chopping the vegetables and putting the dressing on the bread. She,spreads around the dressing and puts the other ingredients on the sandwich to finish.,places the sauce onto the list beside the mixture and puts it back on the plate.,begins mixing the sandwich in the pan.,is then seen pouring the seeds on the bread while smiling to the camera.,,gold0-orig,pos,unl,unl,unl,n/a,She begins chopping the vegetables and putting the dressing on the bread.,She\nanetv_u3nOmvgcs84,7082,She holds up the ingredients and instructs what you'll need to make a sandwich. She,begins chopping the vegetables and putting the dressing on the bread.,puts a yolks of mushrooms in a pan and puts it in the oven.,stirs the noodles and some of that.,slices off the salad and tomato and brings it up.,,gold0-orig,pos,unl,unl,pos,n/a,She holds up the ingredients and instructs what you'll need to make a sandwich.,She\nanetv_KmhzUY2ooCw,17588,A backyard seen appears with several people outside. The people,\"are playing a game of croquette, taking turns with the bat and hitting the balls.\",move inside in a bumper car driving around and side by side.,are then shown inside front in a restaurant.,go up a slide part of a stroller.,,gold0-orig,pos,unl,unl,unl,n/a,A backyard seen appears with several people outside.,The people\nanetv_8fqxUtHLyoE,10934,Two women are on a court with jump ropes. They,do several stunts while jumping the ropes.,do a gymnastics routine on the balance beam.,are sitting in a sunny court practicing to hold up their pom poms.,compete to hold the rope.,are in a competition wearing a red shirt and another a woman holding a bar.,gold0-orig,pos,pos,pos,pos,pos,Two women are on a court with jump ropes.,They\nanetv_8fqxUtHLyoE,10935,They do several stunts while jumping the ropes. They,\"flip forward, backward and sideways in unison.\",goes off into the area and finishes the breakdancing process with.,have a good time swinging it down into the air.,jump as they come around.,practice dumbbells in both hands.,gold0-orig,pos,unl,unl,unl,unl,They do several stunts while jumping the ropes.,They\nanetv_JRg3W4xKvJI,749,\"The outro appears and it's the video clip of the workers working on the wood pieces, and text appear on the screen that include the shops address, email, website and phone number, the exterior shop is shown again. The last screen\",\"is the light gray screen first shown and include the company name, number and the website.\",appears various prints of tools and flowers.,switches of an alarm listed shown for a trainer in a day.,shows two blue screens including restaurants and youtube information.,,gold0-reannot,pos,unl,unl,pos,n/a,\"The outro appears and it's the video clip of the workers working on the wood pieces, and text appear on the screen that include the shops address, email, website and phone number, the exterior shop is shown again.\",The last screen\nanetv_BiIIco4EC2U,1456,A blindfolded man is seen sitting at a table with a timer coming on next to him attempting to solve a rubix cube. The man,finishes the cube and timer stops while a person standing next to him records his time.,\"continues strumming the guitar continuously and then stops playing and continues to play, ending by speaking to the camera then pointing.\",pushes the cube and sits down in front of the cube and gets up and walks about the cube.,stands with the camera back and look.,ends and shows the other's hand and how to judge the cube to properly perform how the same amount of being pushed by.,gold0-orig,pos,unl,unl,pos,pos,A blindfolded man is seen sitting at a table with a timer coming on next to him attempting to solve a rubix cube.,The man\nanetv_BiIIco4EC2U,1457,The man finishes the cube and timer stops while a person standing next to him records his time. Another man,is seen walking around in the background while the camera pans around to more people solving cubes.,walks on front the timer on a round wheel with a tube on it.,is going over to the host of the wall to collect some ice and jam them and make a face.,is then shown playing the piano monitor at the end as another boy appears and watches him walk to the boy as he goes.,holds the ball until it is in his hand and jumps into a crouch before squatting bows and being interviewed across the area.,gold0-orig,pos,unl,unl,unl,unl,The man finishes the cube and timer stops while a person standing next to him records his time.,Another man\nlsmdc3040_JULIE_AND_JULIA-17773,11417,\"Setting the book aside, someone kisses her. Someone\",\"nibbles her neck, then pulls her in for another passionate kiss.\",strokes him with broad waves.,takes the piece of paper.,steps over to someone.,,gold0-orig,pos,unl,pos,pos,n/a,\"Setting the book aside, someone kisses her.\",Someone\nlsmdc3040_JULIE_AND_JULIA-17773,11422,Now an alarm clock reads 5: 30. Someone,rises then types at her laptop.,\"find several infected germans, streaming down it with massive devours of double doors.\",slips the packet of condoms open.,\"approaches someone, who holds a tablet over his ear.\",takes a call on his cell.,gold1-orig,pos,unl,unl,unl,pos,Now an alarm clock reads 5: 30.,Someone\nlsmdc3040_JULIE_AND_JULIA-17773,11418,\"Someone nibbles her neck, then pulls her in for another passionate kiss. Someone\",\"strokes his stomach, then eyes him adoringly as he removes his glasses.\",smiles and kisses his cheek.,\"frowns and purses her lips, then nods back her head.\",puts her hand on her breast and holds tight over her crotch.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone nibbles her neck, then pulls her in for another passionate kiss.\",Someone\nlsmdc3040_JULIE_AND_JULIA-17773,11423,Five pounds of it sit in her fridge. She,melts a chunk in her pan.,turns to his walkie - talkie.,climbs her staircase to the art room with a stick tucked under her leg.,nudges a friend who brushes her nose against a mirror and lifts her over her ears.,,gold0-orig,pos,unl,unl,unl,n/a,Five pounds of it sit in her fridge.,She\nlsmdc3040_JULIE_AND_JULIA-17773,11419,\"Their embrace grows more intense, and they lie back together. Someone\",switches off his bedside lamp.,\"hesitates for a moment, then returns.\",gives someone a cordial hug.,looks up and down.,,gold0-reannot,pos,unl,unl,pos,n/a,\"Their embrace grows more intense, and they lie back together.\",Someone\nlsmdc3040_JULIE_AND_JULIA-17773,11420,Someone switches off his bedside lamp. Someone,switches off her lamp.,pokes his secretary - lined hand with his hand.,sits as someone rubs her leg on the chair.,stares at someone as they struggle.,,gold0-reannot,pos,unl,unl,pos,n/a,Someone switches off his bedside lamp.,Someone\nanetv_q8TBL7DBgXY,11464,\"She skates and we see bikes, people riding them, palm trees, and ferris wheels. We\",follow the woman as she skates alongside surfboards and other people.,can over her eyes as she jumps.,replays a player just getting there with them.,\"follow the dress through a narrow, then crossing into an alley.\",\"go down, looking at the bikes.\",gold1-orig,pos,unl,unl,unl,pos,\"She skates and we see bikes, people riding them, palm trees, and ferris wheels.\",We\nanetv_q8TBL7DBgXY,11462,\"A pier is shown at a beach, with people walking alongside it. Many pictures\",are shown of a woman tying up a pair of skates.,are shown of people riding along a river looking through clothes on as well as divers and swimming in the water.,are shown of people riding boats as well as running a board into one another and falling in water.,are featured on a screens and talking about them in the sky.,are seen moving along as several angles of fish bow are played.,gold1-orig,unl,unl,unl,unl,unl,\"A pier is shown at a beach, with people walking alongside it.\",Many pictures\nanetv_q8TBL7DBgXY,11463,Many pictures are shown of a woman tying up a pair of skates. She skates and we,\"see bikes, people riding them, palm trees, and ferris wheels.\",see her cutting and performing a series of dancing and twirling bikes.,see the house match.,see the sneaker in reverse.,see concern cutting the grass.,gold1-orig,pos,unl,unl,unl,unl,Many pictures are shown of a woman tying up a pair of skates.,She skates and we\nanetv_-lJS58hyo1c,19600,The lady stands and lifts the weight over her head. The lady,drops the barbell and smiles.,throws the sheet on the water.,swings the stick around and glances at the camera.,lets go of the weight.,,gold0-orig,pos,unl,unl,pos,n/a,The lady stands and lifts the weight over her head.,The lady\nanetv_-lJS58hyo1c,19599,She bends down and grabs the pole. The lady,stands and lifts the weight over her head.,holds onto the rope in front of her.,moves and runs a stroke down the dog.,swings her arms and lands on the mat.,stands and touches her shirt.,gold0-reannot,pos,unl,unl,unl,pos,She bends down and grabs the pole.,The lady\nanetv_t6FuJ4L8sHY,14697,The same shot is shown again in slow motion and leads into one scoring a goal with others not paying attention. The same shot,is shown again in slow motion several times and pans back to all the players.,is repeated several times.,is repeated in slow motion one times while the other speaks to the other.,\"is shown again, followed by more shots of the man scoring interviewed followed by shots of shots of them celebrating and dribbling balls.\",is repeated several times followed by more clips of him hitting the ball around.,gold0-orig,pos,unl,unl,pos,pos,The same shot is shown again in slow motion and leads into one scoring a goal with others not paying attention.,The same shot\nanetv_t6FuJ4L8sHY,14696,A group of people are seen standing on a soccer field and leads into one falling down and being helped back up. The same shot,is shown again in slow motion and leads into one scoring a goal with others not paying attention.,is show jumping over one another as well as many young men hard to watch.,shows more people throwing tricks down the snowy hill continues others watch on the side.,is shown of people splashing and moving dodgeball toward the people cheering for an audience.,is shown again in slow motion followed by short man as well as others pushing across the paths.,gold0-reannot,pos,unl,unl,unl,pos,A group of people are seen standing on a soccer field and leads into one falling down and being helped back up.,The same shot\nanetv_DFOoFr2H-24,968,A man is seen playing an instrument while another watches in the background. He,\"pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke.\",continues tennis and leads into several shots of him playing.,continues to speak to the camera and continues to play games.,continues playing and leads into several shots of the dog playing.,continues by fighting and then jumping along the wood while others watch on the side.,gold0-reannot,pos,unl,unl,unl,unl,A man is seen playing an instrument while another watches in the background.,He\nanetv_DFOoFr2H-24,969,\"He pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke. The boys\",watch in amazement and bends down closely to another boy.,continue playing along drum drums as well as people running away.,continue playing after playing ball with the man.,continue playing to the camera and continuing to speak to the camera.,continuously play drums together across the house and continue playing while the man plays the guitar player.,gold1-reannot,pos,unl,unl,pos,pos,\"He pauses to speak to a large group of boys and continues playing the instrument, blowing wind into their smoke.\",The boys\nlsmdc3037_IRON_MAN2-16708,167,\"Wearing his suit without the helmet, someone eats a donut as he sits inside a giant donut perched atop a building's roof. Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye,\",gazes up at someone.,whirls around behind someone's neck and rests his head on his palm.,stops and readies the utility wire he an drying itself.,climbs the first man in the coffee shop.,arrives at the hospital.,gold0-orig,pos,unl,unl,unl,unl,\"Wearing his suit without the helmet, someone eats a donut as he sits inside a giant donut perched atop a building's roof.\",\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye,\"\nlsmdc3037_IRON_MAN2-16708,165,Major someone and someone shake hands. The onlookers,\"disperse as someone, major someone, and a small group of men walk toward the hangar.\",hold up the kneads of their instructor.,clap as someone snaps him up.,grab someone from the judges.,\"gawk, someone runs, glaring at someone.\",gold0-orig,pos,unl,unl,unl,unl,Major someone and someone shake hands.,The onlookers\nlsmdc3037_IRON_MAN2-16708,166,\"The onlookers disperse as someone, Major someone, and a small group of men walk toward the hangar. Wearing his suit without the helmet, someone\",eats a donut as he sits inside a giant donut perched atop a building's roof.,looks down toward the busy daytime.,peers out from behind a pillar as the young man climb over the sorcerer's shoulder and quill back.,turns on the alex logo outside the police station.,draws a metal ridge.,gold1-orig,pos,unl,unl,unl,unl,\"The onlookers disperse as someone, Major someone, and a small group of men walk toward the hangar.\",\"Wearing his suit without the helmet, someone\"\nlsmdc3037_IRON_MAN2-16708,168,\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye, gazes up at someone. Lowering his sunglasses, someone\",peers down at someone.,stares with a blank expression.,hides his face in a nearby cupboard.,stands and faces someone.,averts his concerned gaze.,gold0-orig,pos,unl,unl,unl,unl,\"Wearing a long black leather coat, goateed someone Fury, a tall bald man with an eye patch over his left eye, gazes up at someone.\",\"Lowering his sunglasses, someone\"\nlsmdc3037_IRON_MAN2-16708,169,\"Lowering his sunglasses, someone peers down at someone. Later, someone and someone\",sit in a booth inside someone's shop.,enter a panel gathering water.,muscle a waiting room.,enter the main dimly.,leave the gambling room.,gold0-reannot,pos,unl,unl,unl,pos,\"Lowering his sunglasses, someone peers down at someone.\",\"Later, someone and someone\"\nanetv_G4O_Ar7EO4Y,4229,The man is very proud of his throw as he cheers and other competitors as well as people in the stands clap and cheer for him as well as he walks away from the area he was standing in and continues to cheer himself on a little more while giving a thumbs up to a group of camera men taking his picture. A replay of his throw starts again and then it,ends with a wide angled shot of the entire arena.,shows a boy who also wins and smiles at him.,flashes back to the man differently and gets the better of it.,cheers for the lady until they play so nice.,\"'s covered away in the green and the boy, then he's seen riding on the steps and autographs all his costume tricks without\",gold0-orig,pos,unl,unl,unl,unl,The man is very proud of his throw as he cheers and other competitors as well as people in the stands clap and cheer for him as well as he walks away from the area he was standing in and continues to cheer himself on a little more while giving a thumbs up to a group of camera men taking his picture.,A replay of his throw starts again and then it\nanetv_wUsmKmxxHYQ,17279,A woman is seen speaking to the camera while a woman swims back and fourth in the pool behind her. Clips,are then shown close up on how to perform proper swimming techniques while the camera interments with the woman speaking.,closing in on the screen and shown well as ending a drink.,ride back and fourth while others watch on the side.,slides into a hole off into a glass board with another solution.,\"are shown hurting behind various frames in steel, while steeping sprinkling yellow balloons all over the area.\",gold0-orig,pos,unl,unl,unl,unl,A woman is seen speaking to the camera while a woman swims back and fourth in the pool behind her.,Clips\nlsmdc1014_2012-79576,11439,\"Clouds fill the screen and give way to the image of a globe. As it slowly spins, the African continent\",becomes more and more prominent.,rises to the feet.,puts back down on the road.,moves up towards it.,,gold0-orig,pos,unl,unl,unl,n/a,Clouds fill the screen and give way to the image of a globe.,\"As it slowly spins, the African continent\"\nlsmdc1014_2012-79576,11438,\"The three arks, leaving a wide wake behind them, move across the calm ocean under a sky of a few mottled clouds. Clouds\",fill the screen and give way to the image of a globe.,continues to wake up from seeing a large cloud of birds.,soar through a clear green sea.,swarm inside the ship.,,gold1-orig,pos,unl,unl,unl,n/a,\"The three arks, leaving a wide wake behind them, move across the calm ocean under a sky of a few mottled clouds.\",Clouds\nlsmdc1027_Les_Miserables-6107,13809,They stare at him as the court usher escorts him out. At the hospital a nurse,\"tends to someone, who lies on her back.\",holds her up as the judge acknowledges them.,removes a ceramic cup with a clean paper bottle.,sucks a gurney down on a corridor.,approaches a collapsible.,gold0-orig,pos,unl,unl,unl,unl,They stare at him as the court usher escorts him out.,At the hospital a nurse\nanetv_iwMXYbYyJy4,15467,A man walks up and starts pushing them higher. They,smile and laugh as they swing.,are using two pens to lift the tree.,are moving along a field.,are shown playing a game of rock scissors.,are watching a pile of snare drums.,gold0-orig,pos,unl,unl,unl,unl,A man walks up and starts pushing them higher.,They\nanetv_iwMXYbYyJy4,13980,\"Their father walks by, pushing the baby. The baby\",reaches for him as he again shows up and gives him a push.,\"is still seated, watching someone from someone's side.\",places as other children try to help him.,is now fully dressed.,goes up suddenly.,gold0-orig,pos,pos,pos,pos,pos,\"Their father walks by, pushing the baby.\",The baby\nanetv_iwMXYbYyJy4,13979,\"Two children, a boy and girl, are swinging gently on a swing set. Their father\",\"walks by, pushing the baby.\",turns to greet the older woman as they steer.,demonstrates his balance technique.,lets him swing away.,,gold0-orig,pos,unl,unl,pos,n/a,\"Two children, a boy and girl, are swinging gently on a swing set.\",Their father\nanetv_iwMXYbYyJy4,15466,A little boy and girl are on swings on a playground. A man,walks up and starts pushing them higher.,catches a frisbee with a golf club.,swing a slide and arm and fell on the monkey bars.,swings to a stop and pulls it open.,kicks a child from over a bar.,gold0-orig,pos,unl,unl,unl,pos,A little boy and girl are on swings on a playground.,A man\nanetv_3iLo6lxAarc,1272,A woman is seen speaking to the camera while holding up a box. She,opens the box and pulls out a pair of shoes.,grabs a set of cigarettes and begins playing the instrument with her hand.,lays down on the roof and puts bulbs to the tree.,puts it back into an oven and talks about something.,,gold0-orig,pos,unl,unl,pos,n/a,A woman is seen speaking to the camera while holding up a box.,She\nanetv_3iLo6lxAarc,1273,She opens the box and pulls out a pair of shoes. She then,\"puts on the shoes and ties them, walking away in the end.\",shows how to use the machine and put the tires using a brush.,slides her shoes into the camera her jacket and shows her standing hands.,pulls out a jacket and shows how to iron it.,picks up a large pair of purse bags while adding ingredients at ready.,gold0-orig,pos,unl,unl,unl,unl,She opens the box and pulls out a pair of shoes.,She then\nanetv_3iLo6lxAarc,9574,\"Woman is wearing a black cap and its talking and showing a box of diesel shoes, she opens the box unwrapped them and shoes the black and white shoes in all the angles. woman\",puts the shoes on her feet stands and start walking showing the shoes.,cleans the shoe to get it some keys and barks into the the red marker.,holds an orange football slide and unicycle in the dark lot while the woman demonstrates toe shoes.,removes the white shoes from a pair of shoes swishing the soaking with both hands.,put the hand tape on a bowling pin.,gold0-orig,pos,unl,unl,unl,pos,\"Woman is wearing a black cap and its talking and showing a box of diesel shoes, she opens the box unwrapped them and shoes the black and white shoes in all the angles.\",woman\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19206,Someone steps closer to someone. The two friends' eyes,are fixed on each other.,go down on someone as he kisses someone.,shine into their sunken sockets.,follow their gaze to the port guy who wears a white cloth.,look round after it.,gold0-orig,pos,unl,unl,unl,unl,Someone steps closer to someone.,The two friends' eyes\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19208,Someone takes off his rucksack. He,drops it on the ground.,spots his soul cycle bike jumping in the sand.,puts a folder under his arm and opens it.,finds someone who hurries away wearing a doll's headband.,looks away from the can.,gold0-orig,pos,unl,unl,unl,pos,Someone takes off his rucksack.,He\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19207,The two friends' eyes are fixed on each other. Someone,takes off his rucksack.,continues to examine it.,\"looks up at someone, who smiles at it.\",leads them away from the house.,,gold1-orig,pos,unl,unl,pos,n/a,The two friends' eyes are fixed on each other.,Someone\nlsmdc1050_Harry_Potter_and_the_deathly_hallows_Disk_One-93711,19209,Someone picks it up and slings it over his shoulder. They,head back towards the house.,wave hits the false windows.,slows his pace as he leaves.,look through the pockets then find someone walking along the corridor.,turns the wheel and closes the bag for him.,gold0-orig,pos,unl,unl,pos,pos,Someone picks it up and slings it over his shoulder.,They\nanetv_goLVOzKw4U8,5036,A man wearing gloves holds a pair of pliers and putting an object in between. He,sparks the object to create a flame and puts his mask on to protect himself.,then speaks and shows how to open the shirt and twisting pieces around.,continues with a bike in front of the wall.,finishes the reach and moves on to the edge of the roof.,flips the tiles into another and faces them with elder hands.,gold0-orig,pos,unl,unl,unl,unl,A man wearing gloves holds a pair of pliers and putting an object in between.,He\nanetv_goLVOzKw4U8,5037,He sparks the object to create a flame and puts his mask on to protect himself. He,continues flaming the object and shows off what he has burned.,\"throws the harness with his back turned, which is got gone.\",begins using two slices of white to into the surface.,goes over to the tree of the fire and the fire spreads around him.,raises the lid high cranks it off.,gold1-orig,pos,unl,unl,pos,pos,He sparks the object to create a flame and puts his mask on to protect himself.,He\nanetv_6EN1q4TmPtI,15024,\"Then, the young people lie face down on the boats and sail in the river. After, the men\",advance in the water moving the hand to help advance.,ski down hill holding cars.,ride camels in the river in the rafts slowly.,jumps over the mountains on the side of the river and ride across boat.,climb.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the young people lie face down on the boats and sail in the river.\",\"After, the men\"\nlsmdc0019_Pulp_Fiction-56663,6164,Someone's Malibu pulls up to the restaurant. Someone,draws a square with her hands.,presents a candy sign.,sets down a glass of food under an awning.,sits in the toilet with a twisted gaze.,is dragged out from behind the window.,gold1-orig,pos,unl,unl,unl,unl,Someone's Malibu pulls up to the restaurant.,Someone\nanetv_hryx3zm06U8,11966,We see two men tiling the wall and floor in two different room. The man tiling the floor cuts the tile and lays it and the man on the wall cuts a half circle in a tile and we,see him tile the wall more.,see men working in logs on the wall.,see an exercise machine shot.,see the men measuring hose.,see a gray car.,gold0-orig,pos,unl,unl,unl,unl,We see two men tiling the wall and floor in two different room.,The man tiling the floor cuts the tile and lays it and the man on the wall cuts a half circle in a tile and we\nanetv_hryx3zm06U8,4768,A man wearing a hat is seen speaking to the camera and leads into him cutting a piece of wood on a table. More shots,are shown of men laying down boards in various areas as well as layer plaster on the walls.,are shown of him using the weights on the ground and ends by speaking to the camera.,are shown of the man laying food on a table during the process.,are shown of him using a tool to brush the paint while the camera captures him from behind.,,gold0-orig,pos,unl,unl,pos,n/a,A man wearing a hat is seen speaking to the camera and leads into him cutting a piece of wood on a table.,More shots\nanetv_hryx3zm06U8,4769,More shots are shown of men laying down boards in various areas as well as layer plaster on the walls. Then men,continue putting tiles down over the plaster while measuring it out and putting the objects back down.,continues to speak with another moving and leads into a martial arts sequence and ends with large videos of the people snowboarding.,are shown doing more tricks and plaster on a wall as well as pictures while the crowd cheering and interviews them.,are shown using a ski while standing to the top looking off with the camera.,continue to stand around and shows the videos as well as others watching on the side.,gold0-orig,pos,unl,unl,unl,unl,More shots are shown of men laying down boards in various areas as well as layer plaster on the walls.,Then men\nanetv_Iwgbi95VjXU,6128,She is putting sand into a cup and building a sand castle. Another girl,walks up and talks to her.,is still flying around the room.,is holding the pole next to a house down next to a sand pile.,pulled off her red cigarette do a lady beside her.,\"is now hiding, as she and a man fishing pole immediately pass by and the woman is running into a lot.\",gold0-orig,pos,unl,unl,unl,unl,She is putting sand into a cup and building a sand castle.,Another girl\nanetv_Iwgbi95VjXU,6127,A girl in a bathing suit is sitting on the beach. She,is putting sand into a cup and building a sand castle.,starts to scrape a tire off with a small water hose.,is talking to the group of people who are talking to the camera while many on the pool have it on him.,is playing a violin.,pushes a heavy ball to her chest.,gold0-orig,pos,unl,unl,unl,unl,A girl in a bathing suit is sitting on the beach.,She\nanetv_XnrQRuchl7E,16904,This young woman is in the studio playing the piano. No one else is in there with her and she,looks very serious about what she's doing.,dances as if she's with a blue serve in underwear.,plays and plays with the sticks.,seems about to make a drink of it while dancing.,is standing talking and a woman is talking looking behind the bar at her room.,gold1-reannot,pos,unl,unl,unl,unl,This young woman is in the studio playing the piano.,No one else is in there with her and she\nanetv_WpQHQeY43zo,14529,Vernon appears seated on a stage playing the accordian. He,\"finishes the song, speaks briefly and leaves the stage.\",does the violin and plays the violin song on the bar.,\"demonstrates several ways to play the harmonica while pausing at the camera, continuing to play again.\",brings the violin to the woman on the belly as she plays the guitar.,,gold0-orig,pos,unl,unl,unl,n/a,Vernon appears seated on a stage playing the accordian.,He\nanetv_WpQHQeY43zo,14528,David Vernon Playing Jacqueline Waltz and Leyland Accordian Club appears on screen. Vernon,appears seated on a stage playing the accordian.,\"see a man playing a guitar tattoo on a counter with his hand, still holding phone and talking.\",squeezes the handle into the gym.,sits on top of the floating band on top of the floor and is right up to congas the piano.,are playing foosball in a gym.,gold0-orig,pos,unl,unl,unl,pos,David Vernon Playing Jacqueline Waltz and Leyland Accordian Club appears on screen.,Vernon\nanetv_WpQHQeY43zo,14530,\"He finishes the song, speaks briefly and leaves the stage. Website addresses\",are shown on screen followed by a copyright notice.,as he heads off.,for the event.,the archbishop's applauds silently appreciatively.,,gold0-orig,pos,unl,unl,unl,n/a,\"He finishes the song, speaks briefly and leaves the stage.\",Website addresses\nanetv_WpQHQeY43zo,2226,A man is seen sitting on a stage in front of a microphone and begins playing an accordion. The man,plays the instrument while moving his hands up and down.,continues performing various martial arts moves while speaking to the camera.,returns and sits down and begins playing the instrument while stopping to keep playing.,continues playing and ends with the closing credits.,continues playing and ends with another man holding instruments up to him.,gold1-orig,pos,unl,unl,pos,pos,A man is seen sitting on a stage in front of a microphone and begins playing an accordion.,The man\nanetv_WpQHQeY43zo,2227,The man plays the instrument while moving his hands up and down. The man,continues to play the instrument and ends by bowing and nodding to the camera.,continues dancing and ends with his hands on his hips.,continues playing various instruments together while speaking to the camera.,continues playing the guitar while waving to the audience.,speaks to the camera while others watch on the side.,gold0-reannot,pos,pos,pos,pos,pos,The man plays the instrument while moving his hands up and down.,The man\nlsmdc0019_Pulp_Fiction-56985,2926,\"He throws himself against the back wall, gun outstretched in front of him, a look of yellow fear on his face, ready to blow in half anybody fool enough to stick their head through that door. Then he\",listens to them talk.,stays to his feet.,goes to take him off.,\"steps closer, peers into the room and slaps a window.\",,gold1-orig,pos,unl,unl,unl,n/a,\"He throws himself against the back wall, gun outstretched in front of him, a look of yellow fear on his face, ready to blow in half anybody fool enough to stick their head through that door.\",Then he\nlsmdc0019_Pulp_Fiction-56985,2927,Then he listens to them talk. Bursting out the door and blowing them all away while they are fuckin 'around,is the way to go.,\", he enters with a beer.\",\", the light gets closer.\",\"and hear, someone waves humbly.\",,gold0-orig,pos,unl,unl,unl,n/a,Then he listens to them talk.,Bursting out the door and blowing them all away while they are fuckin 'around\nlsmdc0019_Pulp_Fiction-56985,2925,\"And with that, the two lovebirds peel away. We\",are in the bathroom of the hollywood apartment we were in earlier.,glide through the underside of the car.,removes the sheet with his hands and rubs them together.,are passed around from the back.,lift the weight onto the mat.,gold0-reannot,pos,unl,unl,pos,pos,\"And with that, the two lovebirds peel away.\",We\nanetv_QFxe74w7aNc,13352,A group of martial artists and drummers perform in a street competition. The martial artists in red pants and black shirts,do kicks and flips.,begin skateboarding down the street.,appear on stage wearing a black karate outfit.,hold up karate moves and resistance.,is dancing light while a large flag is in.,gold0-orig,pos,unl,unl,unl,unl,A group of martial artists and drummers perform in a street competition.,The martial artists in red pants and black shirts\nanetv_Igpy_o0h3Cs,6086,A woman wear curls shows how to wrap pieces of fabric on a roller. The woman,unrolls the curls from her hair.,tapes all of her hands to pieces.,shows some some clothes how mixed ribbon in folds.,is doing this taking different picture.,inserts the in part of her hair to reveal the gift.,gold1-orig,pos,unl,unl,unl,pos,A woman wear curls shows how to wrap pieces of fabric on a roller.,The woman\nanetv_Igpy_o0h3Cs,6087,The woman unrolls the curls from her hair. The woman,combs out her hair using her hands.,braids the hair sharply.,has lipstick outside sectioned out of her hair as she eats it.,finishes her hair to make a single braid.,,gold0-orig,pos,unl,unl,pos,n/a,The woman unrolls the curls from her hair.,The woman\nanetv_KRGiJIHSd9E,19320,The tattoo artist is setting up her inks and papers for the session she is about to have. She,peels the transfer paper off the client's back revealing the art.,pauses to talk to the camera before returning it.,rubbing a better look in tissue paper on the back parasails we see the soap clutch to her bra master again.,\"continues painting client, as she continues the sequence of the doing artist.\",\"avoids going off, leaving the secretary gone down her leg, then crossing her a yoga workout.\",gold0-orig,pos,unl,unl,unl,unl,The tattoo artist is setting up her inks and papers for the session she is about to have.,She\nanetv_KRGiJIHSd9E,2277,The man leans forward the woman begins tattooing him while several shots are shown of sessions. The woman,continues tattooing the man and shows off the tattoo in the end.,continues speaking and leads into her riding in a lifeboat on the border of a river.,continues running along the head while moving camera walk by a mirror and ends by waving to the camera.,changes back to focus and clip her hair behind her ear.,explains the procedure while the camera captures his movements.,gold0-orig,pos,unl,unl,unl,unl,The man leans forward the woman begins tattooing him while several shots are shown of sessions.,The woman\nanetv_KRGiJIHSd9E,19321,In a progression of 12 sessions shows a visual timeline of how the entire back piece for the client comes out as it shows her inking the clients entire back with artwork. There,\"are several still pictures of the client, the tattoo artists and others posing as the client shows the complete tattoo on his back.\",shows her number's information just how to secure that bowl to clean it with pressed bun.,\"young she decorates her hair, and then from her eyes to knitting.\",\"they talk and pass water wearing helmets and braces, techniques, and then both men run towards the camera filled with customers on tents\",interact more freeing guards.,gold0-orig,pos,unl,unl,unl,unl,In a progression of 12 sessions shows a visual timeline of how the entire back piece for the client comes out as it shows her inking the clients entire back with artwork.,There\nanetv_KRGiJIHSd9E,19319,A female tattoo artist is doing a tattoo back piece for a man at a shop. A title screen,appears in black with white letters explaining the video and the tattoo artists name.,appears with a website and a subscribe address.,is shown and a man leads a drawing of a design.,sharpens on a man's cutting claw.,appears that includes a series of words describing what he will need to do.,gold0-orig,pos,unl,unl,unl,pos,A female tattoo artist is doing a tattoo back piece for a man at a shop.,A title screen\nlsmdc3037_IRON_MAN2-16413,9460,Someone and someone rush outside. Someone,jumps into the driver's seat and speeds off.,emerges from a stage and slips past onlookers.,charges to signal him from them to see him spring to their feet.,rakes them along behind someone.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone rush outside.,Someone\nlsmdc3037_IRON_MAN2-16413,9472,\"The cars explode, bounce along the road, then crash into walls on both sides of the course. While restaurant patrons\",stare open - mouthed at the towering flames.,are being served hitting a beer and deep shots of people carrying boats are seen walking into a large long parking lot area.,watch them as they drive along a sunny road.,\"scatter off, someone tosses it back down.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The cars explode, bounce along the road, then crash into walls on both sides of the course.\",While restaurant patrons\nlsmdc3037_IRON_MAN2-16413,9452,\"The racecars speed through the city, passing through a tunnel and by tall buildings. As the cars approach, someone\",steps through the fence and onto the road.,steps closer to the open.,keeps her eyes fixed on her roommate's position on the pavement.,takes a deep breath.,,gold0-orig,pos,unl,unl,pos,n/a,\"The racecars speed through the city, passing through a tunnel and by tall buildings.\",\"As the cars approach, someone\"\nlsmdc3037_IRON_MAN2-16413,9511,\"Someone lands face - up on the asphalt. Reaching down toward someone's chest, Iron Man\",pulls the arc reactor out of someone's body frame.,wraps his leg against someone's neck.,yanks out a giant sword and hauls it from his grasp.,uses his arms and his eyes remain fixed on the figure.,,gold0-orig,pos,unl,unl,pos,n/a,Someone lands face - up on the asphalt.,\"Reaching down toward someone's chest, Iron Man\"\nlsmdc3037_IRON_MAN2-16413,9510,\"Lengthening the whips, Iron Man hurls someone through the air. Someone\",lands face - up on the asphalt.,jams his ax into the tub.,takes hold of her large black recruit.,grabs his gun pistol.,,gold0-orig,pos,unl,unl,unl,n/a,\"Lengthening the whips, Iron Man hurls someone through the air.\",Someone\nlsmdc3037_IRON_MAN2-16413,9463,Someone maneuvers the car down the street and toward a tall barricade. The car,\"crashes through the barricade, skids sideways, and turns right onto the racing course.\",pulls away as the four agents stroll out of the house in pursuit.,hits a man over in its tracks.,slides up the road as cars and other vehicles pass by.,,gold0-orig,pos,unl,unl,unl,n/a,Someone maneuvers the car down the street and toward a tall barricade.,The car\nlsmdc3037_IRON_MAN2-16413,9496,\"The case opens, converting into a condensed Iron Man suit. Someone\",bends over and puts his hands into two gloves inside the suit.,cooks meat in front of the spaghetti.,\"stares unblinkingly at the sleeping man, only half behind.\",peers suspiciously at her reflection.,,gold1-orig,pos,unl,unl,pos,n/a,\"The case opens, converting into a condensed Iron Man suit.\",Someone\nlsmdc3037_IRON_MAN2-16413,9462,Someone climbs into the back seat of a dark blue limousine. Someone,maneuvers the car down the street and toward a tall barricade.,yields a smile as someone walks up to someone who smiles behind him.,\"is slowly up and down on the sidewalk, waiting for the next to come.\",opens his menu and leans toward a seat.,sits back on one side in the handicapped spot.,gold0-orig,pos,unl,unl,unl,unl,Someone climbs into the back seat of a dark blue limousine.,Someone\nlsmdc3037_IRON_MAN2-16413,9478,Someone falls back onto the ground. Someone,\"strikes the ground with his whips, as someone rolls out of the way.\",and someone are walking along the train track.,flaps his wings and flies backward over the ship.,checks her rear view mirror.,turns and sits him as they argue.,gold0-orig,pos,unl,unl,unl,pos,Someone falls back onto the ground.,Someone\nlsmdc3037_IRON_MAN2-16413,9500,\"With his foot, someone - or Iron Man - pushes the limousine yards away with one foot. Iron Man\",turns and raises his left hand toward someone.,is rolled up on a hanger above the bar.,lay down on the roof and padlocked window.,hangs from behind the night sky.,,gold0-orig,pos,unl,unl,unl,n/a,\"With his foot, someone - or Iron Man - pushes the limousine yards away with one foot.\",Iron Man\nlsmdc3037_IRON_MAN2-16413,9485,Someone leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence. Someone,slumps onto the limo's hood.,shoots him in the ribs and follows his opponent.,smashes the stone with a pitchfork.,runs up and flips with the wheel as someone crashes through the doors of the cab.,walks out of the tunnel and looks into a patch of snow.,gold0-orig,pos,unl,unl,unl,unl,Someone leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence.,Someone\nlsmdc3037_IRON_MAN2-16413,9504,\"Iron Man lifts his right hand and fires two blasts at someone, who ducks. Someone\",\"flings one whip at iron man, who catches it.\",\", someone plays the violin.\",\"backs to the ceiling, knocking the men down to find him nonplussed.\",\"'s eyes are fixed on the counter, someone stares after him.\",reads a list of instructions.,gold0-orig,pos,unl,unl,unl,unl,\"Iron Man lifts his right hand and fires two blasts at someone, who ducks.\",Someone\nlsmdc3037_IRON_MAN2-16413,9506,\"Someone flings a second whip, which wraps around Iron Man and jerks him through the air. Someone\",slings iron man onto the hood of the limousine.,dashes up the cell door with his hand.,aims his wand at the stranger.,pulls the teen's back toting a pair of sneakers.,climbs on to his car and removes his coat and bag.,gold0-orig,pos,unl,unl,unl,unl,\"Someone flings a second whip, which wraps around Iron Man and jerks him through the air.\",Someone\nlsmdc3037_IRON_MAN2-16413,9449,\"Someone and other men wearing helmets and orange coveralls walk alongside a chain - link fence by the roadway. In the restaurant, someone\",watches the cars race on tv.,is giving instructions for fixing the keys.,sees someone bumping a tiled wall across the pedestal professionally.,slots some framed framed wedding photos with a cutting line in front of the growing group of young children.,waits on top of a choir table in a vacant kitchen.,gold1-orig,pos,unl,unl,unl,unl,Someone and other men wearing helmets and orange coveralls walk alongside a chain - link fence by the roadway.,\"In the restaurant, someone\"\nlsmdc3037_IRON_MAN2-16413,9493,\"Someone smashes the windshield, then slices the car's roof with a whip. He\",slices the left side of the car away.,see a white car parked in his driveway.,hits a van near the border of the van.,gets an burning brick from his car.,takes cover behind the machine.,gold1-orig,pos,unl,unl,unl,unl,\"Someone smashes the windshield, then slices the car's roof with a whip.\",He\nlsmdc3037_IRON_MAN2-16413,9457,\"The car explodes into sparks and gray smoke as it spins in the air. In the restaurant, someone\",watches with a furrowed brow.,uses trailer to prevent a completely moped man from tv.,puffs on a portable pipe.,and someone sit up slowly.,spots a boy dragging someone in a bowling alley.,gold0-orig,pos,unl,unl,unl,unl,The car explodes into sparks and gray smoke as it spins in the air.,\"In the restaurant, someone\"\nlsmdc3037_IRON_MAN2-16413,9503,\"With his whip, someone slaps Iron Man's hand downward. Iron Man\",\"lifts his right hand and fires two blasts at someone, who ducks.\",watches washboard machine and a tee.,has finished some nodes.,bang his bangs on the pavement.,\"presses his hands to one, with a latch of the polished shoes.\",gold0-orig,pos,unl,unl,unl,unl,\"With his whip, someone slaps Iron Man's hand downward.\",Iron Man\nlsmdc3037_IRON_MAN2-16413,9492,\"As someone drives forward and back, crushing someone, someone reaches for the red case in the back seat. Someone\",\"smashes the windshield, then slices the car's roof with a whip.\",is in a small town with his cell phone round in front of his face.,picks up the barrel.,weeps over someone's head.,gives broad understanding nod.,gold1-orig,pos,unl,pos,pos,pos,\"As someone drives forward and back, crushing someone, someone reaches for the red case in the back seat.\",Someone\nlsmdc3037_IRON_MAN2-16413,9481,\"Nearing someone, someone slings his whips in circles, and criss - crosses them faster and faster. Someone\",leaps out of the way as someone's whips strike gasoline pooling around the car.,feels level between the straps of the truck's arc.,move on the wheels toward the mansion and the road.,dodges the kicks of someone's rear.,lifts a person's head.,gold0-orig,pos,unl,unl,unl,pos,\"Nearing someone, someone slings his whips in circles, and criss - crosses them faster and faster.\",Someone\nlsmdc3037_IRON_MAN2-16413,9512,\"Reaching down toward someone's chest, Iron Man pulls the arc reactor out of someone's body frame. The electricity\",ceases to flow through the frame and whips.,glows as the balloon levels downward.,hits him in privet speed as she retreats.,fires higher with the patch of someone and hits.,blazes as it flies above someone's head.,gold1-orig,pos,unl,unl,unl,pos,\"Reaching down toward someone's chest, Iron Man pulls the arc reactor out of someone's body frame.\",The electricity\nlsmdc3037_IRON_MAN2-16413,9451,She turns and glances out a window behind her as the cars speed past. The racecars,\"speed through the city, passing through a tunnel and by tall buildings.\",float up from the others.,\"sprays out after her, then runs to him.\",\"shows its horn, stops and looks down at it.\",,gold0-orig,pos,unl,unl,pos,n/a,She turns and glances out a window behind her as the cars speed past.,The racecars\nlsmdc3037_IRON_MAN2-16413,9482,\"Someone leaps out of the way as someone's whips strike gasoline pooling around the car. With his jacket's left sleeve on fire, someone\",\"stands and pats the flames, extinguishing them.\",checks his fishing recoiling.,strikes his body several times as a seeing.,turns it into the bath.,shoots someone in the ankle.,gold1-orig,pos,unl,unl,unl,pos,Someone leaps out of the way as someone's whips strike gasoline pooling around the car.,\"With his jacket's left sleeve on fire, someone\"\nlsmdc3037_IRON_MAN2-16413,9446,\"The car's tail light glows red. As two rows of racecars speed off, smoke\",rises from their wheels.,rises from someone's nose.,rises onto the back of the ship.,flies its massive chamber.,rises from a cloud and looms above the big truck.,gold0-orig,pos,unl,unl,unl,unl,The car's tail light glows red.,\"As two rows of racecars speed off, smoke\"\nlsmdc3037_IRON_MAN2-16413,9466,\"Someone speeds around a curve and faces someone, who swings the whips. As someone drives past, someone\",swings the whip in his left hand and slices off the front of someone's car.,\"reaches a pole, past a police and white kid at the head of his own sweating knocked side.\",holds his pointed jaw.,holds his mother's arm.,races out of the window.,gold0-orig,pos,unl,unl,unl,unl,\"Someone speeds around a curve and faces someone, who swings the whips.\",\"As someone drives past, someone\"\nlsmdc3037_IRON_MAN2-16413,9458,\"In the restaurant, someone watches with a furrowed brow. Someone\",stares open - mouthed.,\"shifts his gaze to his stomach as recovering, the one captures his movements with his foot, approaches an immaculately appointed portrait.\",\"sets their hat on the table and lays a cloth over her, and folds a military face.\",\"and someone step into their army headquarters, someone turns to someone.\",,gold0-orig,pos,unl,unl,unl,n/a,\"In the restaurant, someone watches with a furrowed brow.\",Someone\nlsmdc3037_IRON_MAN2-16413,9464,\"The car crashes through the barricade, skids sideways, and turns right onto the racing course. Approaching racecars\",zoom around the limousine as someone drives faster.,are men running along the path and veers towards the site of someone's unaware area.,\"transport, a burly stout guy gives the driver a thumbs up and races the mustang along a country road.\",\"is intermittent sprinklers, shadows, and barren, surrounded by only shadows.\",,gold0-orig,pos,unl,unl,unl,n/a,\"The car crashes through the barricade, skids sideways, and turns right onto the racing course.\",Approaching racecars\nlsmdc3037_IRON_MAN2-16413,9467,\"As someone drives past, someone swings the whip in his left hand and slices off the front of someone's car. The car\",\"flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence.\",screech to a halt and then falls back in on the bridge.,\"backs onto the road, which bounces off and lands above the snow, the bars flying.\",backs up and he tries to catch it with the bolts.,backs up the road and skips off towards the house as the car scampers in.,gold0-orig,pos,unl,pos,pos,pos,\"As someone drives past, someone swings the whip in his left hand and slices off the front of someone's car.\",The car\nlsmdc3037_IRON_MAN2-16413,9490,Someone puts the car in reverse and backs up. He,\"changes gears and drives forward, slamming someone against the guardrail.\",recoils as flames run in.,indicates someone by doing it.,\"stands close to the front, burning.\",reaches for the engine.,gold0-orig,pos,unl,unl,unl,unl,Someone puts the car in reverse and backs up.,He\nlsmdc3037_IRON_MAN2-16413,9474,Someone strolls over to someone's upside - down car and slices it in half with a whip. As someone,peers into the debris.,\"watches, the bus stands upright for the moment.\",\"eyeballs someone, still using her blonde right lens.\",steps into her limo.,,gold0-orig,pos,unl,unl,pos,n/a,Someone strolls over to someone's upside - down car and slices it in half with a whip.,As someone\nlsmdc3037_IRON_MAN2-16413,9450,\"In the restaurant, someone watches the cars race on tv. She\",turns and glances out a window behind her as the cars speed past.,\"run along a narrow ramp, then up the mountainside, winding sleepily through the sea gate at the top of the bikers.\",takes off her shirt.,faces her brother with a boyish gaze and a smile.,looks up and sees someone walking from a bridge to another large brick building.,gold0-orig,pos,unl,unl,unl,unl,\"In the restaurant, someone watches the cars race on tv.\",She\nlsmdc3037_IRON_MAN2-16413,9461,Someone jumps into the driver's seat and speeds off. Someone,climbs into the back seat of a dark blue limousine.,takes a dump in the forest.,rides doggedly through some trees.,continues to work on the papers under the wheels.,ride in a car by a truck of it.,gold1-orig,pos,unl,unl,pos,pos,Someone jumps into the driver's seat and speeds off.,Someone\nlsmdc3037_IRON_MAN2-16413,9479,\"Someone, with a bloody gash under his left eye, shakes his head. Glancing into the racecar's side mirror, he\",watches someone approach from behind.,stabs the back of the bottle.,glances down and someone looks over his shoulder.,sees someone's young weight raise.,\"straightens and stares, his brow creased and his eyes gaunt.\",gold1-orig,pos,unl,unl,unl,unl,\"Someone, with a bloody gash under his left eye, shakes his head.\",\"Glancing into the racecar's side mirror, he\"\nlsmdc3037_IRON_MAN2-16413,9508,\"Iron Man stands and wraps the whip around his right arm. Approaching someone, Iron Man\",\"wraps the whip around his own suit several times, and punches someone's stomach and face.\",takes off his belt and dangles the leg out.,closes hands as he catches the hold.,rips the door open.,,gold0-orig,pos,unl,unl,pos,n/a,Iron Man stands and wraps the whip around his right arm.,\"Approaching someone, Iron Man\"\nlsmdc3037_IRON_MAN2-16413,9501,Iron Man turns and raises his left hand toward someone. A glowing circle,appears in iron man's hand.,watches the two men in armor.,appears on his index finger and rib - like white suds.,spreads around the soldiers.,,gold0-orig,pos,unl,unl,pos,n/a,Iron Man turns and raises his left hand toward someone.,A glowing circle\nlsmdc3037_IRON_MAN2-16413,9471,Two other racecars speed around the curve and crash by someone. The cars,\"explode, bounce along the road, then crash into walls on both sides of the course.\",roll up behind him as they disintegrates off.,\"turn in semi - circle, offering each other his outstretched hand.\",\"rip down other sidewalks, knocking someone over his shoulder.\",stop outside a winding branches and screech to a halt in front of the upright building.,gold0-orig,pos,unl,unl,unl,pos,Two other racecars speed around the curve and crash by someone.,The cars\nlsmdc3037_IRON_MAN2-16413,9475,As someone peers into the debris. Someone,sneaks up behind him and hits the back of his head with a piece of metal from the red car.,shows one of his men by his armour.,\"plucks a grenade from the sheriff, speeds around the man who is shooting it.\",grabs the flooded buildings and looks down.,fires low to someone.,gold1-orig,pos,unl,unl,unl,unl,As someone peers into the debris.,Someone\nlsmdc3037_IRON_MAN2-16413,9489,Someone stands and slices the car door in half with a whip. Someone,puts the car in reverse and backs up.,\"struggles to stand rooted to the spot, both eyes gleaming as the bullet imitates the oncoming car.\",tosses his toy gun into the basket.,jerks his hand away.,leaves the drugstore and sits outside.,gold0-orig,pos,unl,unl,pos,pos,Someone stands and slices the car door in half with a whip.,Someone\nlsmdc3037_IRON_MAN2-16413,9505,\"Someone flings one whip at Iron Man, who catches it. Someone\",\"flings a second whip, which wraps around iron man and jerks him through the air.\",places cleaning powder in a skillet.,faces the boyish worker then steps off.,grabs the rope and ties the loose elastic.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone flings one whip at Iron Man, who catches it.\",Someone\nlsmdc3037_IRON_MAN2-16413,9495,Someone tosses the red case onto the ground. Someone,taps the case with his foot.,gets on her knees and stands.,lies on his back.,stops and takes his wand.,releases it and glares at the camera.,gold0-orig,pos,unl,unl,unl,pos,Someone tosses the red case onto the ground.,Someone\nlsmdc3037_IRON_MAN2-16413,9470,\"Someone pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side. Two other racecars\",speed around the curve and crash by someone.,leaps from side to side and the others loads.,dangle from his feet as the car cruises along a country road.,pull out their guns.,deflect a fish tank top behind the other.,gold0-orig,pos,unl,unl,unl,unl,\"Someone pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side.\",Two other racecars\nlsmdc3037_IRON_MAN2-16413,9509,\"Approaching someone, Iron Man wraps the whip around his own suit several times, and punches someone's stomach and face. Lengthening the whips, Iron Man\",hurls someone through the air.,dances a muscle in his thrusting right hand and stabs with someone's crotch.,draws up and starts to pull the men's shoes into place.,\"crosses his naked legs, and the back drops.\",tips the tie from the peg.,gold1-orig,pos,unl,unl,unl,unl,\"Approaching someone, Iron Man wraps the whip around his own suit several times, and punches someone's stomach and face.\",\"Lengthening the whips, Iron Man\"\nlsmdc3037_IRON_MAN2-16413,9468,\"The car flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence. Upside down, with his right shoulder touching the ground, someone\",places his left hand on the road as he tries to wiggle free.,\"lets go of his shovel and walks down a narrow road to another gate, reluctantly cracking open.\",holds out the expect gun.,suddenly tightens the loop of his body and crouches tight and looks around helplessly.,,gold0-orig,pos,unl,pos,pos,n/a,\"The car flips into the air, lands upright, and slides into the red car, then flips over and crashes into the fence.\",\"Upside down, with his right shoulder touching the ground, someone\"\nlsmdc3037_IRON_MAN2-16413,9498,\"As he stands, the suit expands, covering someone's entire body. Small armored plates\",\"pop vertically out of the suit, then fold down to form a layer of protective metal.\",glow in a giant's face that never represents king's.,swoop down and fire at someone.,are dropped in big siege towers.,illuminate an similarly shaped burning structure that ticks low to wrought.,gold1-orig,pos,unl,unl,unl,unl,\"As he stands, the suit expands, covering someone's entire body.\",Small armored plates\nlsmdc3037_IRON_MAN2-16413,9469,\"Upside down, with his right shoulder touching the ground, someone places his left hand on the road as he tries to wiggle free. Someone\",\"pulls off his helmet and glances through a smoky haze at someone, who snaps the whips out to each side.\",advance to the left and ramp up again.,\"is pushed off the swing, and he falls to the ground again.\",holds it tighter as he struggles to the control.,push him back on his head along his back.,gold1-orig,pos,unl,unl,unl,unl,\"Upside down, with his right shoulder touching the ground, someone places his left hand on the road as he tries to wiggle free.\",Someone\nlsmdc3037_IRON_MAN2-16413,9459,Someone stares open - mouthed. She,turns to face the entrance where someone stands holding a red case containing someone's iron man suit.,gives a delighted look and turns on the tap.,\"glances back, then raises his glass to her.\",glances at his mother.,\"considers, then hesitantly heads to the door.\",gold0-orig,pos,unl,unl,pos,pos,Someone stares open - mouthed.,She\nlsmdc3037_IRON_MAN2-16413,9447,\"As two rows of racecars speed off, smoke rises from their wheels. Someone and the other driver\",steer their racecars along the course's winding road.,\"snap their eyes shut, punch, and air.\",have a blue eye at one another.,get out of lift and pass someone with his back to bubbles.,make their way over the front of the bus.,gold0-orig,pos,unl,unl,unl,unl,\"As two rows of racecars speed off, smoke rises from their wheels.\",Someone and the other driver\nlsmdc3037_IRON_MAN2-16413,9483,\"With his jacket's left sleeve on fire, someone stands and pats the flames, extinguishing them. Smiling, someone\",steps through the fiery car debris and creeps toward someone.,\"takes on his hat and peers around the men who are already sitting, covered in life.\",\"stares past the black now and finds the mask of a cape, heavier than he'd ever seen.\",lunges around the tattoo artist.,rides slowly along the side of the mountain and wanders into the next area.,gold0-orig,pos,unl,unl,unl,unl,\"With his jacket's left sleeve on fire, someone stands and pats the flames, extinguishing them.\",\"Smiling, someone\"\nlsmdc3037_IRON_MAN2-16413,9454,\"Watching from bleachers above the road, race fans lean over the fence and gawk. Inside the restaurant, someone, someone, and other patrons\",stand and watch someone on television.,\"take their seats, acknowledge their instructor for someone's group.\",\"stand out, patrons watching the girls dance together.\",walk away as someone gets up.,exchange a parting look.,gold1-orig,pos,unl,unl,unl,unl,\"Watching from bleachers above the road, race fans lean over the fence and gawk.\",\"Inside the restaurant, someone, someone, and other patrons\"\nlsmdc3037_IRON_MAN2-16413,9513,The electricity ceases to flow through the frame and whips. Officers in black uniforms and helmets,rush over and grab someone by the shoulders.,are standing and smiling at the policeman standing behind them.,eat by as a bunch of flags swoop through a other event.,show tents sign to surrounding the room.,sit at a hospital reception in a lobby.,gold1-orig,pos,unl,unl,unl,pos,The electricity ceases to flow through the frame and whips.,Officers in black uniforms and helmets\nlsmdc3037_IRON_MAN2-16413,9518,Someone nods to the man. An officer opens a door and someone,enters a dim room.,rushes out in the car.,steps into the elevator.,appears through a doorway.,hurries through to it.,gold1-orig,pos,unl,unl,pos,pos,Someone nods to the man.,An officer opens a door and someone\nlsmdc3037_IRON_MAN2-16413,9497,\"Someone bends over and puts his hands into two gloves inside the suit. As he stands, the suit\",\"expands, covering someone's entire body.\",dances along the floor.,stops sponging on his own body.,slowly bare from cross and shines up.,stays sideways across a pedestal facing him.,gold0-orig,pos,unl,unl,unl,unl,Someone bends over and puts his hands into two gloves inside the suit.,\"As he stands, the suit\"\nlsmdc3037_IRON_MAN2-16413,9491,\"He changes gears and drives forward, slamming someone against the guardrail. As someone drives forward and back, crushing someone, someone\",reaches for the red case in the back seat.,rolls down the brakes.,takes the stone.,\"rushes down a wall and pulls up and speaks to the camera, hearing the siren going quickly.\",begins to pull in a cluster of seat cars.,gold1-orig,pos,unl,unl,unl,pos,\"He changes gears and drives forward, slamming someone against the guardrail.\",\"As someone drives forward and back, crushing someone, someone\"\nlsmdc3037_IRON_MAN2-16413,9507,Someone slings Iron Man onto the hood of the limousine. Iron Man,stands and wraps the whip around his right arm.,\", he trots to the house with a briefcase in one hand, someone stands behind the counter.\",\"official leads the way into the gas foliage, whining a bit on the luxury bike.\",drilled a piece of metal in the ribbon of the entire jungle.,uses it to sheath her tie.,gold0-orig,pos,unl,unl,unl,pos,Someone slings Iron Man onto the hood of the limousine.,Iron Man\nlsmdc3037_IRON_MAN2-16413,9502,\"A glowing circle appears in Iron Man's hand. With his whip, someone\",slaps iron man's hand downward.,wears a large yellow neatly trimmed coat.,leans on his sword driver.,runs into the crowd with his friends.,smiles over both matveyev.,gold0-orig,pos,unl,unl,unl,unl,A glowing circle appears in Iron Man's hand.,\"With his whip, someone\"\nlsmdc3037_IRON_MAN2-16413,9448,Someone and the other driver steer their racecars along the course's winding road. Someone and other men wearing helmets and orange coveralls,walk alongside a chain - link fence by the roadway.,cross the onto a country road.,slam down a bridge over a hill a beating.,drive up to the destroyed brick building.,follow a full force road with them along the platform's platform.,gold0-orig,pos,unl,unl,unl,unl,Someone and the other driver steer their racecars along the course's winding road.,Someone and other men wearing helmets and orange coveralls\nlsmdc3037_IRON_MAN2-16413,9519,An officer opens a door and someone enters a dim room. The officer,\"closes the door behind someone who walks into the room where a handcuffed someone, wearing only underwear, sits on a bench.\",slides a tray out of his pocket and looks around the kung fu master.,\"continues to open his notes on the keyboard, reaches out and opens his bags.\",steps up against a large window on the landing.,opens the room and finds someone crouched inside.,gold0-orig,pos,unl,unl,unl,pos,An officer opens a door and someone enters a dim room.,The officer\nlsmdc3037_IRON_MAN2-16413,9476,Someone sneaks up behind him and hits the back of his head with a piece of metal from the red car. Someone,turns and knocks the metal from someone's hand with a whip.,glances at the door and folds his hands as the stony faced and mouth open.,\"watches himself from his reverie and waggles his elbow, trying to control himself.\",presses the last button and the pedal slides up.,looks up at someone.,gold0-orig,pos,unl,unl,unl,pos,Someone sneaks up behind him and hits the back of his head with a piece of metal from the red car.,Someone\nlsmdc3037_IRON_MAN2-16413,9515,\"As they lift him and drag him away, someone spits blood at Iron Man. Through a computer screen in his mask, Iron Man\",studies the arc reactor.,\"flies across from a cold, winged glare.\",shoots a demon in the chest.,shows an old cigar lying with a man's brace.,\"plays tiny blue, kneeing, and boots.\",gold0-reannot,pos,unl,unl,unl,unl,\"As they lift him and drag him away, someone spits blood at Iron Man.\",\"Through a computer screen in his mask, Iron Man\"\nlsmdc3037_IRON_MAN2-16413,9499,\"Other metal plates pop up from behind someone's neck, and cover his head, to form a red helmet and a silver mask with glowing eyes. With his foot, someone - or Iron Man -\",pushes the limousine yards away with one foot.,someone is the image of the sizes reflected in the golden congo.,- in a mess.,\"lying on his knees across his chest, takes a discreet breath and limps back.\",,gold0-reannot,pos,unl,unl,unl,n/a,\"Other metal plates pop up from behind someone's neck, and cover his head, to form a red helmet and a silver mask with glowing eyes.\",\"With his foot, someone - or Iron Man -\"\nlsmdc3037_IRON_MAN2-16413,9456,Someone's orange shirt ignites and falls in tatters around his hips. The car,explodes into sparks and gray smoke as it spins in the air.,is now blocked by two people approach the front of the building and they fall in place.,roars in the wind.,accelerates out of the cab.,\"pulls up to the parking lot and gets back in, its windscreen only visible in the headlights.\",gold0-reannot,pos,unl,unl,unl,pos,Someone's orange shirt ignites and falls in tatters around his hips.,The car\nlsmdc3037_IRON_MAN2-16413,9517,\"Inside the restaurant, someone smiles as he watches tv with the other customers. Later, a balding mustached man and several police officers\",follow someone through a dark corridor.,sit in a retirement courtyard at school.,march down along the city's rooftops.,stand excitedly with a photo of someone in the street.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Inside the restaurant, someone smiles as he watches tv with the other customers.\",\"Later, a balding mustached man and several police officers\"\nlsmdc3037_IRON_MAN2-16413,9480,\"Glancing into the racecar's side mirror, he watches someone approach from behind. Nearing someone, someone\",\"slings his whips in circles, and criss - crosses them faster and faster.\",'s riding wears a knit cap.,climbs to the parallel bars where kitty mechanical arms on the floor out with the graceful bows.,pats the trunk with ramp.,\"shoots a flare gun at someone's face, as though he is being accomplished on the heads above an oar vault.\",gold1-reannot,pos,unl,unl,unl,unl,\"Glancing into the racecar's side mirror, he watches someone approach from behind.\",\"Nearing someone, someone\"\nlsmdc3037_IRON_MAN2-16413,9455,\"Inside the restaurant, someone, someone, and other patrons stand and watch someone on television. On the road, a car\",\"zooms past someone as he rips open his orange shirt, revealing the arc reactor attached to his body frame.\",employees jumps blocked by several shopping casters.,stops in front of town.,pulls up to a parking lot in front of two petrol stalls.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Inside the restaurant, someone, someone, and other patrons stand and watch someone on television.\",\"On the road, a car\"\nlsmdc3037_IRON_MAN2-16413,9453,\"As the cars approach, someone steps through the fence and onto the road. Watching from bleachers above the road, race fans\",lean over the fence and gawk.,run to make wide surfaces on over and for carbon - stoned offices.,stand on the wall near one.,tweed into the undulating luxurious air pit approaching the plaza.,begin to run between the skiers.,gold0-reannot,pos,unl,unl,unl,unl,\"As the cars approach, someone steps through the fence and onto the road.\",\"Watching from bleachers above the road, race fans\"\nlsmdc3037_IRON_MAN2-16413,9484,\"Smiling, someone steps through the fiery car debris and creeps toward someone. Someone\",leaps against the chain - link fence as the limousine hits someone and pins him against the guardrail below the fence.,\"passes someone, who is waiting on top of a wall of chained road.\",\"peers around the spacious cargo vessel, still clutching the twin from a rack of flowers.\",backs away and a ghost shoves him in the mouth.,gets up a second time.,gold0-reannot,pos,unl,unl,unl,pos,\"Smiling, someone steps through the fiery car debris and creeps toward someone.\",Someone\nlsmdc3037_IRON_MAN2-16413,9477,Someone turns and knocks the metal from someone's hand with a whip. Someone,falls back onto the ground.,arrives at her room.,follows someone down the corridor.,grabs it and swings it open.,\"gazes at the young man, then runs through outside.\",gold1-reannot,pos,unl,unl,unl,unl,Someone turns and knocks the metal from someone's hand with a whip.,Someone\nlsmdc3037_IRON_MAN2-16413,9516,\"Through a computer screen in his mask, Iron Man studies the arc reactor. Inside the restaurant, someone\",smiles as he watches tv with the other customers.,returns with a small silver cylinders and tapes it with his own whistle.,enters with a half - eaten crushes of water.,sits in a white car reading a sleek sleek terminal range shrouded in waiting teams.,slices a half - food tattoo.,gold1-reannot,pos,unl,unl,unl,unl,\"Through a computer screen in his mask, Iron Man studies the arc reactor.\",\"Inside the restaurant, someone\"\nlsmdc3037_IRON_MAN2-16413,9445,\"Someone again turns toward the tv. Someone, wearing a helmet,\",sits in the racecar driver's seat and points toward the camera.,stares at a ring on someone's finger.,\"stands tall, pendulum - slings against a branch.\",walks up to the kitchen and begins to shower up.,shines on two casts.,gold0-reannot,pos,unl,unl,unl,unl,Someone again turns toward the tv.,\"Someone, wearing a helmet,\"\nanetv_b0QGh__f7lU,81,An older man is seen laughing to the camera and playing a large set of bongo drums. He,continues playing along faster and faster and finishes by slapping the drum one final time.,clips over the drums while stopping several other runners.,shows various points on him while looking back to the camera and ends by finishing his song on his room.,comes into the instrument and continues playing a instrument while the man plays.,,gold0-orig,pos,unl,unl,unl,n/a,An older man is seen laughing to the camera and playing a large set of bongo drums.,He\nanetv_8TDYCXqSHCw,3909,\"A gymnast lift a weight until his shoulders, then lift it above his head. The man\",left the weight fall on the floor.,\"lifts it with his head, then lifts it to his chest, then wraps the legs down.\",does a routine on the parallel bars.,slips on the ground.,,gold1-orig,pos,unl,unl,pos,n/a,\"A gymnast lift a weight until his shoulders, then lift it above his head.\",The man\nanetv_vSAHWgFjQAY,698,The man and woman then begin dancing around each other in the middle of the club. They,continue dancing around one another while other people dance beside them.,walk away and walk to a circle with one another.,\", in the background, eventually seem to stop and the men dance and dance around in unison.\",walk back and fourth to each other on the sides.,runs around the floor and begins to dance with one another at the end while people watch.,gold0-orig,pos,unl,unl,unl,pos,The man and woman then begin dancing around each other in the middle of the club.,They\nanetv_vSAHWgFjQAY,697,A man is seen dancing in a club and grabs onto a woman. The man and woman then,begin dancing around each other in the middle of the club.,begin to dance on a stage and perform a dance.,begin dancing down in a circle.,begin dancing together in a circle.,,gold1-orig,pos,unl,unl,pos,n/a,A man is seen dancing in a club and grabs onto a woman.,The man and woman then\nanetv_MdrK2uQ-GvA,6740,A person does a hand stand on a diving board. They,dive into the swimming pool below them.,go until dive below.,continue rafting on a beach.,continue to paddle back and forth.,swim right through in the water.,gold0-orig,pos,unl,unl,unl,unl,A person does a hand stand on a diving board.,They\nanetv_MdrK2uQ-GvA,12218,The audience cheers and claps at the results of the dive. Then another man in a speedo facing backwards,dives in to the pool.,mounts the high wave to chop them over.,does a fellow disoriented and flips while the audience cheers him on.,makes to wave water candies onto his cheeks.,,gold0-orig,pos,unl,unl,unl,n/a,The audience cheers and claps at the results of the dive.,Then another man in a speedo facing backwards\nanetv_MdrK2uQ-GvA,12217,He dives in and his score is displayed on the score board above. The audience,cheers and claps at the results of the dive.,walks before talking and throwing his arms in the air holding the pole.,demonstrates a replay of flips and test that board.,gather to relax together and then it weighs.,returns toward them as the sticker gets closer score.,gold0-orig,pos,unl,unl,unl,unl,He dives in and his score is displayed on the score board above.,The audience\nanetv_MdrK2uQ-GvA,12216,A man is on the diving board preparing to dive standing on his head. He dives in and his score,is displayed on the score board above.,comes for the third time.,point across the board.,comes in from the end area.,is shown multiple times.,gold0-orig,pos,unl,unl,unl,pos,A man is on the diving board preparing to dive standing on his head.,He dives in and his score\nlsmdc3086_UGLY_TRUTH-6224,10719,Later someone puts on lipstick at a mirror. She,wears a white v - neck dress.,buries her head low on someone's.,steps to the control panel.,puts glue on either side of the canvas.,,gold1-orig,pos,unl,unl,unl,n/a,Later someone puts on lipstick at a mirror.,She\nlsmdc3086_UGLY_TRUTH-6224,10724,\"Someone picks up the lacy, black, vibrating panties and carefully works them over her black high heels. Reaching underneath her dress once again, she\",shimmies them up to her waist.,takes a news sealed and puts it in her glass bag.,folds her hands towards the back of the tub the sight of the space too.,rubs the toe of her shoe.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone picks up the lacy, black, vibrating panties and carefully works them over her black high heels.\",\"Reaching underneath her dress once again, she\"\nlsmdc3086_UGLY_TRUTH-6224,10725,\"Reaching underneath her dress once again, she shimmies them up to her waist. The producer\",\"adjusts her skirt, then picks up a remote control.\",returns to the dancer's ear!,is out of the window.,\"enters, grabs the sponge bolt, and starts to move, having just accomplished something.\",watches judges swinging someone.,gold0-orig,pos,unl,unl,unl,unl,\"Reaching underneath her dress once again, she shimmies them up to her waist.\",The producer\nlsmdc3086_UGLY_TRUTH-6224,10716,\"Now someone finds a blank gift bag, stuffed with purple tissue paper, on her welcome mat. She\",picks up the gift and peeks around.,reappears in the shadows as she watches a news report movie.,snaps a picture as she picks up a half - lit pillow.,covers her mouth using her jacket to read the letter.,sprays mail from her desk.,gold0-orig,pos,unl,unl,unl,unl,\"Now someone finds a blank gift bag, stuffed with purple tissue paper, on her welcome mat.\",She\nlsmdc3086_UGLY_TRUTH-6224,10720,She wears a white v - neck dress. A loose bun of her blonde curls,rests at the back of her neck.,\"in front of the blue top, covering the tears.\",is trimmed by an crowd of monks.,smiling at a floor of hers.,,gold0-orig,pos,unl,unl,unl,n/a,She wears a white v - neck dress.,A loose bun of her blonde curls\nlsmdc3086_UGLY_TRUTH-6224,10727,\"Someone hides her white panties in the gift box, then rushes to the front door with her purse. Stowing the remote inside, she\",opens up and finds someone and someone.,sets her iron on a towel then picks up a white chalkboard and scans the driveway.,puts the card sticks out of the jewelry box.,spies the closing title screen.,,gold0-orig,pos,unl,pos,pos,n/a,\"Someone hides her white panties in the gift box, then rushes to the front door with her purse.\",\"Stowing the remote inside, she\"\nlsmdc3086_UGLY_TRUTH-6224,10717,Someone finds a purple box in the gift bag. She,opens an information flap on the box.,eyes him as she sits on the bench in front of the canvas.,folds down a tree of the boxes lie as she brings out the purse.,\"walks around the table, walking towards a valet, smiling and catching it.\",smiles as her father takes two big gulps of wine.,gold1-orig,pos,unl,unl,unl,unl,Someone finds a purple box in the gift bag.,She\nlsmdc3086_UGLY_TRUTH-6224,10723,\"She thoughtfully rumples her mouth. Reaching up underneath her flowing ramp dress, she\",slips off her white panties.,waves to the fan as she walks toward the plane's rear door.,hauls up her sweater.,crosses to the bar and peers around her trolley.,,gold0-orig,pos,unl,unl,unl,n/a,She thoughtfully rumples her mouth.,\"Reaching up underneath her flowing ramp dress, she\"\nlsmdc3086_UGLY_TRUTH-6224,10722,\"The producer caps her lipstick and picks up her cell phone. Irritably pursing her lips, she\",picks up a glass of white wine and takes a seat.,watches her friend expectantly.,\"shifts his eyes disapprovingly, and shifting her gaze to a receipt book.\",looks at her clock.,lifts up some leafs to her lips.,gold0-orig,pos,unl,unl,unl,unl,The producer caps her lipstick and picks up her cell phone.,\"Irritably pursing her lips, she\"\nlsmdc3086_UGLY_TRUTH-6224,10718,She opens an information flap on the box. Later someone,puts on lipstick at a mirror.,enters someone's apartment.,displays a photograph in her closet.,keeps petting someone from the shelter.,emerges from a wooden kitchen.,gold0-orig,pos,unl,unl,unl,unl,She opens an information flap on the box.,Later someone\nlsmdc3086_UGLY_TRUTH-6224,10721,A loose bun of her blonde curls rests at the back of her neck. The producer,caps her lipstick and picks up her cell phone.,snaps the last mugshot of the women.,returns her gaze to her gaunt colleague then shakes it.,follows suit for the peaceful back back.,stares icily and then notices a member in a white suit and a bowling dress.,gold0-orig,unl,unl,unl,unl,unl,A loose bun of her blonde curls rests at the back of her neck.,The producer\nanetv_V-Yz865cbn4,4187,A young child is seen smiling to the camera and then begins dancing around. The boy,continues dancing while the camera captures him moving up and down.,continues to kick her around while looking up to the camera.,is then seen standing on the back and pushing and screaming to the camera.,continues holding it up while stopping to speak to the camera.,,gold0-reannot,pos,unl,unl,pos,n/a,A young child is seen smiling to the camera and then begins dancing around.,The boy\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13297,It disintegrates into a pile of dust. She,is amazed at her own skill.,rips it open and offers it.,catches it by the blanket.,turns back to the old woman.,looks up at someone and touches the head.,gold0-orig,pos,unl,pos,pos,pos,It disintegrates into a pile of dust.,She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13301,People exchange a smile when they notice that someone is watching someone. She,is lingering beside a mirror covered with photographs.,gives the assistant a red look and cries.,sets it and hands the ingredients to someone.,uses his hat to take one.,,gold1-orig,unl,unl,unl,unl,n/a,People exchange a smile when they notice that someone is watching someone.,She\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13298,She is amazed at her own skill. Her three brothers,look rather put out.,\"walk in the hall, chased by the others.\",\"walk ahead - someone looks at someone, stunned and sags.\",stand with the word returning over their heads.,are look together in the darkness.,gold0-orig,pos,unl,unl,unl,unl,She is amazed at her own skill.,Her three brothers\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13295,They fall into a broom cupboard. Someone's spell,destroys the metal dementor.,sends three copies giddily.,knocks over a huge fire.,catches the man under their taser.,\"cuts the second ticket - fold again, following the diary.\",gold0-orig,pos,unl,unl,unl,unl,They fall into a broom cupboard.,Someone's spell\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13299,Someone is determined to succeed. The wand,spins out of a girl's hand.,reaches him again and picks it up the fruit slithers.,is pummeled over someone's shoulder.,comes off an arch.,casts a torch light glow.,gold1-orig,pos,unl,unl,unl,pos,Someone is determined to succeed.,The wand\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13296,Someone's spell destroys the metal Dementor. It,disintegrates into a pile of dust.,\"rohirrim earth topples to the left as someone lies, trying to hide underneath it.\",splits with a split.,hits someone's head.,rolls to his right.,gold0-orig,pos,unl,unl,pos,pos,Someone's spell destroys the metal Dementor.,It\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13294,Someone skips along the corridor. The inquisitorial squad,watch her go through the large wooden doors.,joins the bloated biker.,\"runs out the door, covers his face with his hands.\",\"comes into sight, obviously wearing a fiery costume.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone skips along the corridor.,The inquisitorial squad\nlsmdc1052_Harry_Potter_and_the_order_of_phoenix-94991,13302,She is lingering beside a mirror covered with photographs. Someone,can't take his eyes off her.,hangs his head from her.,glares at someone and feels her bottom lip.,laughs as he continues to talk to the camera.,squats through the darkened bedroom.,gold0-orig,pos,unl,unl,pos,pos,She is lingering beside a mirror covered with photographs.,Someone\nanetv_D4wcmmQsPng,3377,A child is shown skating on the ice. He,is holding hockey stick.,\"jumps onto a board, falling down trying to keep from falling.\",hits a sand ball into the ice.,is then shown climbing snow ski.,pole bikers dressed in scuba gear and seen holding a selfie stick on their hands.,gold0-orig,pos,unl,unl,unl,unl,A child is shown skating on the ice.,He\nanetv_D4wcmmQsPng,18655,A kid in a yellow shirt is skating around a hockey rink. He,is holding a hockey stick.,is jumping on the railing on the other side of the bar.,is re pointing a shot on a pole and is shown on the field.,leads the three men on two lanes after two other.,begins to run while throwing to the ball and he misses the ball.,gold0-orig,pos,unl,unl,unl,unl,A kid in a yellow shirt is skating around a hockey rink.,He\nanetv_D4wcmmQsPng,18656,He is holding a hockey stick. He,shoots at the net and scores.,runs around and throws the pins in the water.,begins to walk out of frame in mud.,is dribbling the ball into a goal.,catches a ball along the net talking on a pair.,gold0-orig,pos,unl,unl,unl,unl,He is holding a hockey stick.,He\nanetv_D4wcmmQsPng,3378,He is holding hockey stick. He,skates backward through obstacles.,hits every other ball on the field.,throws a potato at the sink.,serves on the goal with a plastic bat.,gets up and spins around.,gold0-orig,pos,unl,unl,unl,pos,He is holding hockey stick.,He\nanetv_D4wcmmQsPng,3379,He skates backward through obstacles. He then,hits a puck around and shoots it.,jumps over a rubbish line for shore.,balances on a back stroke across a mat.,hits as a rider returns.,pushes them off the side.,gold0-reannot,pos,unl,unl,unl,pos,He skates backward through obstacles.,He then\nanetv_2mAKLFVhV9Y,3601,The camera follows around this woman as they play a game of field hockey with one another while running up and own the field. The girls,continue to play the game and end by sticking their sticks up.,continue playing the game while the players continuously pans around and the sides are shown again with the game.,continue kicking around and looking at each other as well as others watching on the sides.,begin arena dancing with one another and ends with her laughing.,begin taking turns moving around in circles and ends by holding the ball.,gold1-orig,pos,unl,unl,pos,pos,The camera follows around this woman as they play a game of field hockey with one another while running up and own the field.,The girls\nanetv_2mAKLFVhV9Y,11224,The girls run back and fourth past one another while still throwing around the ball. They,continue to play against the other team and run across the field.,throw a girl and finishes out of the inflatable shots in the end.,is leading one into a game as well as running around her puck.,continue tricks on one another and people continue to struggle.,,gold1-orig,pos,unl,unl,unl,n/a,The girls run back and fourth past one another while still throwing around the ball.,They\nanetv_2mAKLFVhV9Y,3600,A woman is seen holding up a stick that leads into her running around a field. The camera,follows around this woman as they play a game of field hockey with one another while running up and own the field.,pans up and grabs a pair of shoes walking around.,follows her movements around the pool in the end as she then jumps back and walks into the pit.,woman continues to speak to the camera while moving her hands and scoring a point.,zooms in on her hitting the ball while looking around the goal.,gold0-orig,pos,unl,unl,pos,pos,A woman is seen holding up a stick that leads into her running around a field.,The camera\nanetv_2mAKLFVhV9Y,11223,A woman is seen running around on the field playing a game of field hockey with others. The girls,run back and fourth past one another while still throwing around the ball.,continue moving around and laughing with one another while others clean.,continue playing with one another and end by speaking and watching her.,continue moving around while the players continue kicking and flipping around the net and watching over obstacles partying.,continue hitting each other in and out of frame and playing with one another.,gold1-reannot,pos,unl,unl,unl,pos,A woman is seen running around on the field playing a game of field hockey with others.,The girls\nlsmdc3086_UGLY_TRUTH-6334,2091,\"Someone shakes her head, slack - jawed. Now an aerial view\",shows the la skyline.,shows the party bundled beyond.,shows three of someone pushing in a wheelbarrow in the large marble dumpster.,shows the people stretching out awkwardly.,ahead into a bank of mirrored panels passing through windows.,gold0-orig,pos,unl,unl,pos,pos,\"Someone shakes her head, slack - jawed.\",Now an aerial view\nanetv_TmA7xnrULME,2819,A small group of kids are seen playing with two adults on a beach pushing sand into a pile. The kids,continue grabbing water while the camera pans around the other people swimming in the area.,continue playing with one another while running away across the grass and holding each other money.,walk to the end and begin playing out one another in a large field and throw them into the pile.,speak to one another as a child rides the others out of the living area.,\"continue drinking, kicking themselves around with one another while people pushing people around and bumping into each other.\",gold1-orig,pos,unl,unl,unl,unl,A small group of kids are seen playing with two adults on a beach pushing sand into a pile.,The kids\nanetv_He7CDkVm_aE,6182,A woman stands with a child that is seated next to a counter. The woman,applies a dry powder to the back of the girls hair and brushes in through.,uses several different screwdriver to wash the clean cloth.,lifts a wooden piece of tissue wrapping paper and removes a package.,then bowl and silverware and the man picks up the bowl and tastes it.,throws the edges at of the shuffleboard making deeper time in between net it.,gold0-orig,pos,unl,unl,unl,unl,A woman stands with a child that is seated next to a counter.,The woman\nanetv_He7CDkVm_aE,6183,The woman applies a dry powder to the back of the girls hair and brushes in through. The woman,get s a blow dryer and uses it while she brushes the girls hair to straighten it.,puts soap and brushes and cleans the strands of her hair while talking to the camera.,shows off the braid with the right eye first and then presents the comb one finger.,looks at the dryer before putting the roller in the hair and places the strings up on her arm.,sit on the side on the floor with an orange paper and brush.,gold0-orig,pos,unl,unl,unl,unl,The woman applies a dry powder to the back of the girls hair and brushes in through.,The woman\nanetv_aWnpbk007cE,2083,The camera pans back and we can see the people who are below the dragon kite. Then the camera,zooms back in on the dragon again.,shows closer view of the surfers as the camera zooms in the kite.,zooms in on a prowl of the camera.,takes back to the girl screaming over the safety.,is swimming slowly through the beach trees.,gold0-orig,pos,unl,unl,unl,unl,The camera pans back and we can see the people who are below the dragon kite.,Then the camera\nanetv_aWnpbk007cE,2081,There are a couple of kites in the sky above a green field with a few people scattered. One of the kites,is an orange and black dragon kite that is shown from far away and then up close.,is running in a field on the wrong side of the ship.,falls from his mouth beside catches a ball with a baseball cord.,covers on a green sand in front of someone.,is holding a saxophone and talking.,gold0-orig,pos,unl,unl,unl,unl,There are a couple of kites in the sky above a green field with a few people scattered.,One of the kites\nanetv_aWnpbk007cE,10962,A large dragon kite is flying in the air. People,are standing under the kite on the ground looking at it.,are being blown down some stairs.,are in a jungle.,are still climbing on the flight.,fly a kite flying in the air.,gold0-orig,pos,unl,unl,unl,pos,A large dragon kite is flying in the air.,People\nanetv_aWnpbk007cE,10963,People are standing under the kite on the ground looking at it. The kite,continues to fly in the sky.,is lying in shore.,is swimming around with.,is carried across the boat.,is located on the very top of the cross.,gold0-orig,pos,unl,unl,pos,pos,People are standing under the kite on the ground looking at it.,The kite\nanetv_aWnpbk007cE,2082,One of the kites is an orange and black dragon kite that is shown from far away and then up close. The camera pans back and we,can see the people who are below the dragon kite.,show a camera operator and we see the light in the bikini.,see the surfer and surfers.,see a replay of the throw.,see a large rock stretching in front of it.,gold0-orig,pos,unl,unl,unl,unl,One of the kites is an orange and black dragon kite that is shown from far away and then up close.,The camera pans back and we\nanetv_PxGggNnMGtQ,9467,The man starts talking to the camera. the man then,begins creating and mixing a cocktail.,starts to play the piano on the table floor.,puts out a new place of the silver.,caps them to play the piano.,is mowing the lawn across the yard.,gold0-orig,pos,unl,unl,unl,pos,The man starts talking to the camera.,the man then\nanetv_PxGggNnMGtQ,9466,A man stands behind a bar. the man,starts talking to the camera.,holds an ice cream in front of it.,throws a potato repeatedly.,puts a mug in his hand.,pauses and speaks to the audience.,gold1-orig,pos,unl,unl,pos,pos,A man stands behind a bar.,the man\nanetv_H7k8ATbTjzs,3084,She pets one of the dogs. Another woman,is sitting behind the woman that pets the dog.,walks in the hallway looking around.,walks in a electric chair and begins brushing the hair of the dog.,adds seasonings to the pan.,come to the bathroom before she starts the grooming.,gold0-orig,pos,unl,unl,unl,unl,She pets one of the dogs.,Another woman\nanetv_H7k8ATbTjzs,3085,The woman with the dog walks over and takes the leash of the second dog from the young girl and walks away with both dogs and the young girl still holding part of a leash. A man,is standing off to the side watching.,is now walking on the sidewalk is a small white dog with a frisbee.,hits the pinata while using a frisbee to chop the dogs hair.,is talking while holding a frisbee then jumping into the water as the young dog comes into the room.,,gold0-orig,pos,unl,unl,unl,n/a,The woman with the dog walks over and takes the leash of the second dog from the young girl and walks away with both dogs and the young girl still holding part of a leash.,A man\nanetv_H7k8ATbTjzs,3086,\"A man is standing off to the side watching. The woman and the young girl, each with a dog again,\",\"stop in the grassy area, talk and then continue walking.\",have their nail cut as they perform several tricks.,talks to the group while a red barrel and some of his hands.,are dancing the end with another woman sitting in front.,\"grab at the foot of the bicycle, where she fell and fell on the ground.\",gold0-orig,pos,unl,unl,unl,unl,A man is standing off to the side watching.,\"The woman and the young girl, each with a dog again,\"\nanetv_H7k8ATbTjzs,3082,A woman and a young girl are each walking a dog in a grassy area. They,approach another woman sitting in a chair.,begin from holding a dog with the tooth comb and brush.,are in some suds and are running back and forth through the snow.,put frisbees for the dogs in pots and sticks around the dog approaches.,are playing the frisbee in the yard together.,gold1-reannot,pos,unl,unl,unl,unl,A woman and a young girl are each walking a dog in a grassy area.,They\nanetv_H7k8ATbTjzs,3083,They approach another woman sitting in a chair. She,pets one of the dogs.,cheerfully stands in the kitchen with his nose pierced.,addresses a man lying in a unshaven chair.,is heavily on his facial hair.,puts the box on a table and shows how to wash her hands.,gold1-reannot,pos,unl,unl,unl,unl,They approach another woman sitting in a chair.,She\nanetv_pZxteNqdweM,5566,A man is seen speaking to the camera and leads into him pouring ice into a glass as well as various liquids. He then,mixes up the drink while still speaking to the camera and then presenting it in a glass.,demonstrates how to rotate a large silver pucks onto the ice and serve it in the mug while he continues to talk.,\"cuts out various ingredients and ingredients, also mixing them in the dull shaker while explaining how to properly cut the piece.\",shows several shots of a mixer in front of him.,,gold0-orig,pos,unl,pos,pos,n/a,A man is seen speaking to the camera and leads into him pouring ice into a glass as well as various liquids.,He then\nanetv_pZxteNqdweM,17612,The man mixes the liquor in a shaker. the man then,pours the contents into a martini glass.,plays a flute and talks.,bowls the second one.,squeezes the glass and pours some time into the martini glass.,\"grabs the gold cup, shakes it down and pours it into jars.\",gold0-orig,pos,unl,unl,unl,unl,The man mixes the liquor in a shaker.,the man then\nanetv_pZxteNqdweM,17609,A man stands behind a bar. the man,begins talking to the camera.,spins around a wooden plate.,does a handstand while flipping.,drops the barbell and drops it.,,gold0-orig,pos,unl,unl,unl,n/a,A man stands behind a bar.,the man\nanetv_pZxteNqdweM,17611,The man takes a glass and fills the glass with various liquors. the man,mixes the liquor in a shaker.,hands the cup to hers before they do several sets.,takes a drink and pours it in paper.,applauds his glass while he drains it.,adds the three limes for the lemon so he adds ice to the ice glass.,gold0-orig,pos,unl,unl,unl,unl,The man takes a glass and fills the glass with various liquors.,the man\nanetv_pZxteNqdweM,17610,The man begins talking to the camera. the man,takes a glass and fills the glass with various liquors.,continues fishing and blowing the leaves in the mud.,continues washing the dog's hair for various times.,runs up a track and jumps onto the rope in slow motion.,,gold1-orig,pos,unl,unl,unl,n/a,The man begins talking to the camera.,the man\nanetv_xmSN6La-2vQ,9188,A young woman is seen speaking to the camera while holding up contact lens. She,takes one out of her eyes and then puts it back in.,pours various shots into her own lens while she speaks into the camera.,moves the finger off her face while she speaks to the camera.,grabs alcohol to interact with her and still speaking to the camera.,puts a contact lens into each eye and smiles onto it.,gold0-orig,pos,unl,pos,pos,pos,A young woman is seen speaking to the camera while holding up contact lens.,She\nanetv_xmSN6La-2vQ,5487,She then takes out a pair of contacts and puts it in a container. She then,puts the contact back in and continues speaking to the camera.,uses it to turn around then puts something into her eye.,\"rubs most of her lenses her eyes, then brushes her lips with left foot.\",dries her hair while looking into a mirror.,shows off the product again and shows a bit more product being presented.,gold0-orig,pos,unl,unl,pos,pos,She then takes out a pair of contacts and puts it in a container.,She then\nanetv_xmSN6La-2vQ,9189,She takes one out of her eyes and then puts it back in. She,continues speaking to the camera while making hand gestures and pointing to the contacts.,shines a scanner on her finger.,takes a step back and over the edge of the high platform.,continues to make her way along the cut.,zooming up and adding more paint.,gold0-orig,pos,unl,unl,unl,unl,She takes one out of her eyes and then puts it back in.,She\nanetv_xmSN6La-2vQ,5486,A young girl is seen speaking to the camera and pointing to her eyes. She then,takes out a pair of contacts and puts it in a container.,begins pushing the woman's hair all over her face and pointing to the screen.,clips off her hair and leads into her shaving her face.,begins bending down on the bars and eventually begins shaving her legs.,shows how to remove the lemons as well as taking place with another girl.,gold0-orig,pos,unl,unl,unl,unl,A young girl is seen speaking to the camera and pointing to her eyes.,She then\nlsmdc0003_CASABLANCA-47212,9722,He takes out the letters. He,\"hands them to someone, who takes them gratefully.\",strips off the dresser.,looks at the screen.,takes a step forward as someone touches his hips.,,gold0-orig,pos,unl,pos,pos,n/a,He takes out the letters.,He\nlsmdc0003_CASABLANCA-47212,9723,\"He hands them to someone, who takes them gratefully. People\",are both caught completely off guard.,decorate the christmas tree.,sit in a public table filled with framed photos of her.,\"happily and struggle together, then face one other.\",\"rises to his feet then collects his makeup, then glances around and then discreetly removes his helmet.\",gold0-orig,pos,unl,unl,unl,unl,\"He hands them to someone, who takes them gratefully.\",People\nlsmdc0003_CASABLANCA-47212,9735,Someone gets out while the orderly stands at attention. He,\"is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun.\",is driving on the parked hummer.,\"drives up to someone's feet as people drive along the streets running through the long, wooden streets.\",\"sprays his lips with the back of his hand, then whips the hair out with a wry smirk.\",\"turns to the young boy, who listens.\",gold0-orig,pos,unl,unl,unl,pos,Someone gets out while the orderly stands at attention.,He\nlsmdc0003_CASABLANCA-47212,9717,\"Someone pauses and looks at someone, unsure for a moment. Someone\",comes in and closes the door behind himself.,reverses to the opposite.,\"swings up his leg, but someone yanks him away.\",pulls out a darkened card.,\"sits back down behind her, leaning against another box in the flooding bedroom.\",gold1-orig,pos,unl,unl,unl,pos,\"Someone pauses and looks at someone, unsure for a moment.\",Someone\nlsmdc0003_CASABLANCA-47212,9732,On the airfield a transport plane is being readied. A uniformed orderly,uses a telephone near the hangar door.,dozes away from the beach in pre - dawn.,\"joins a control car, then returns into the work room.\",narrows its eyes.,,gold0-orig,pos,unl,unl,unl,n/a,On the airfield a transport plane is being readied.,A uniformed orderly\nlsmdc0003_CASABLANCA-47212,9719,Someone opens the office door and peers down at the proceedings. They all,walk towards the bar.,push herself out of the library.,gaze up at someone.,have to get out of the train with the love heart.,,gold0-orig,pos,unl,unl,unl,n/a,Someone opens the office door and peers down at the proceedings.,They all\nlsmdc0003_CASABLANCA-47212,9738,\"Someone takes the letters of transit out of his pocket and hands them to someone, who turns and walks toward the hangar. Someone\",\"stops dead in his tracks, and turns around.\",feels his way along the ladder but didn't say anything.,\"looks across at someone, who looks exactly like someone, who he is wearing douglas.\",opens the passenger side door.,,gold1-orig,pos,unl,unl,pos,n/a,\"Someone takes the letters of transit out of his pocket and hands them to someone, who turns and walks toward the hangar.\",Someone\nlsmdc0003_CASABLANCA-47212,9731,\"He hangs up the receiver and, grabbing for his cap, hurriedly exits. The entire airport\",is surrounded by a heavy fog.,is empty as the bus - rails thud quietly.,is covered in a large party in one of them.,is tied up by the receiver.,,gold1-orig,unl,unl,unl,unl,n/a,\"He hangs up the receiver and, grabbing for his cap, hurriedly exits.\",The entire airport\nlsmdc0003_CASABLANCA-47212,9713,They hear the crunch of tires as a car pull up. Someone,walks up the stairs to someone's office.,watches the skiptracer step back.,holds out a roll of towels.,removes his pamphlets and reverses the building entrance.,,gold0-orig,pos,unl,unl,unl,n/a,They hear the crunch of tires as a car pull up.,Someone\nlsmdc0003_CASABLANCA-47212,9724,People are both caught completely off guard. Horror,is in someone's eyes.,catches up with him.,steers off.,watches as the continue and try to shoot someone pass over.,holds it upright and should be working on it.,gold0-orig,pos,unl,unl,unl,unl,People are both caught completely off guard.,Horror\nlsmdc0003_CASABLANCA-47212,9716,Someone pays the cab driver. Someone,\"pauses and looks at someone, unsure for a moment.\",\"runs away from someone, followed by someone, who eyeballs him, coolly reflecting.\",\"stands in the street, followed by the policemen.\",drives him out of the car with a firm glare.,,gold0-orig,pos,unl,unl,pos,n/a,Someone pays the cab driver.,Someone\nlsmdc0003_CASABLANCA-47212,9721,Someone deposits his hat on a a nearby table. He,takes out the letters.,\"smiles at someone, then kisses it back.\",continues puppy the items out of his venetian.,has a bag of triumph.,glances back at someone's fingers.,gold1-orig,pos,unl,unl,unl,pos,Someone deposits his hat on a a nearby table.,He\nlsmdc0003_CASABLANCA-47212,9729,\"As someone picks up the phone and dials, someone takes back the letters. Someone\",is on the phone.,passes him a photo book with his pencil.,stares at his sweatshirt.,waits at the driver's window and listens intently.,,gold0-orig,pos,unl,unl,unl,n/a,\"As someone picks up the phone and dials, someone takes back the letters.\",Someone\nlsmdc0003_CASABLANCA-47212,9715,Someone quickly walks toward the entrance. Someone,pays the cab driver.,shakes himself off the front of the cars.,has another monk standing before the open.,makes his call and someone leaves.,runs into the bathroom.,gold0-orig,pos,unl,unl,pos,pos,Someone quickly walks toward the entrance.,Someone\nlsmdc0003_CASABLANCA-47212,9712,Someone points at his breast pocket. They,hear the crunch of tires as a car pull up.,watch someone make it to his right.,carry a slice of cake.,fly across the gleaming water towards the diner.,,gold1-orig,unl,unl,unl,unl,n/a,Someone points at his breast pocket.,They\nlsmdc0003_CASABLANCA-47212,9720,They all walk towards the bar. Someone,deposits his hat on a a nearby table.,does n't next and pounds his shoulder.,\"watching them, someone releases her coyly, looks over her shoulder.\",looks up as the chauffeur sees them.,'s face's grim.,gold1-orig,pos,unl,unl,pos,pos,They all walk towards the bar.,Someone\nlsmdc0003_CASABLANCA-47212,9730,Someone is on the phone. He,hangs up the receiver and presses a buzzer on his desk.,is still listening to the offscreen someone.,\"looks up as someone watches, slack - jawed.\",looks at her.,smiles and kisses someone's cheek.,gold0-orig,pos,unl,pos,pos,pos,Someone is on the phone.,He\nlsmdc0003_CASABLANCA-47212,9726,He smiles as he turns toward someone. In someone's hand,\"is a gun, which he levels at someone.\",is propped up against a talking agent.,unit someone taps someone's steward.,is a bullet - eye shadow of a stag.,is a pail of milk and dried ice.,gold0-orig,pos,unl,unl,unl,unl,He smiles as he turns toward someone.,In someone's hand\nlsmdc0003_CASABLANCA-47212,9739,\"Someone stops dead in his tracks, and turns around. Both people\",look at someone with astonishment.,rise to their feet.,watch still as they are dragged away by another fire.,follow the others to watch someone walk down the stairs.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stops dead in his tracks, and turns around.\",Both people\nlsmdc0003_CASABLANCA-47212,9725,Obviously the situation delights someone. He,smiles as he turns toward someone.,\"strides up to her, then stops with a car behind her.\",has placed a mauve ostrich scrawled on the top of the tape.,hands some money to someone.,\"closest to someone, the response he can wash him from.\",gold0-orig,pos,unl,unl,unl,unl,Obviously the situation delights someone.,He\nlsmdc0003_CASABLANCA-47212,9734,He hangs up and moves to a car that has just pulled up outside the hangar. Someone,gets out while the orderly stands at attention.,\"glances at the man, who has no sign of a approaching.\",comes out of the building and places some papers casually on his desk.,\"is shown in her office, when she adjusts the wall that he was reading to.\",takes a shaky lovelorn gaze from the bales and brush.,gold0-orig,pos,unl,unl,unl,unl,He hangs up and moves to a car that has just pulled up outside the hangar.,Someone\nlsmdc0003_CASABLANCA-47212,9718,Someone comes in and closes the door behind himself. Someone,opens the office door and peers down at the proceedings.,\"falls into the street, knocking a blue door open.\",and the others come in with a hooded object through the door.,stands with his back to the crowd someone faces the man.,\"comes out, a note of pain in it's eyes.\",gold0-orig,pos,unl,unl,unl,pos,Someone comes in and closes the door behind himself.,Someone\nlsmdc0003_CASABLANCA-47212,9727,\"In someone's hand is a gun, which he levels at someone. He\",walks to a table and sits.,grow louder when someone gets close in.,\"draws a gun, trying desperately to better find contact information.\",seems to be getting far away from him.,,gold0-orig,pos,unl,unl,unl,n/a,\"In someone's hand is a gun, which he levels at someone.\",He\nlsmdc0003_CASABLANCA-47212,9728,\"He walks to a table and sits. As someone picks up the phone and dials, someone\",takes back the letters.,pulls one book from cocaine to paper.,clutches someone's brow.,lifts it up to the hookah and puts it in his lap.,removes evenly drawings from his genitals.,gold0-reannot,pos,unl,unl,unl,unl,He walks to a table and sits.,\"As someone picks up the phone and dials, someone\"\nlsmdc0003_CASABLANCA-47212,9736,\"He is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun. People\",emerge from the rear of the car.,approaches in front of the parked benches of the two - story house with a flatcar cut up lens.,\"are not entering the ring that the recruits prepare for, across the room.\",\"follow after the people and duck, smoke disappearing, then begin to bang in the nose at their bindings.\",,gold0-reannot,pos,unl,pos,pos,n/a,\"He is closely followed by someone, right hand in the pocket of his trench coat, covering someone with a gun.\",People\nlsmdc0003_CASABLANCA-47212,9733,A uniformed orderly uses a telephone near the hangar door. He,hangs up and moves to a car that has just pulled up outside the hangar.,\"jumps off of his deck, runs around the railing lower line, and faces the ship.\",\"looks at someone, his arm shaking.\",and someone step through a hallway where she hides as she descends a train.,,gold0-reannot,pos,unl,unl,unl,n/a,A uniformed orderly uses a telephone near the hangar door.,He\nlsmdc0003_CASABLANCA-47212,9711,Someone looks around the empty cafe. Someone,points at his breast pocket.,gains in the pool of light.,\"hurries up the stairs, kissing him on the face.\",chases a man in sedan.,\", someone, sitting in the stands, then staring at the floor under the awning.\",gold1-reannot,unl,unl,unl,unl,unl,Someone looks around the empty cafe.,Someone\nanetv_k9VKFjPYT3o,3964,He is wearing a rock climbing harness. He,begins climbing up the rock.,is learning how to do sit ups.,uses hooks to jump rope and does tricks.,is doing handstands a free variety.,sits down in his bunk.,gold0-orig,pos,unl,unl,unl,pos,He is wearing a rock climbing harness.,He\nanetv_k9VKFjPYT3o,3965,He begins climbing up the rock. He,has a rope around his neck with different rock climbing tools.,flings it into a pile in the sand and sprays it.,comes up to the wall and takes a bow.,moves on a ladder while going on top and reaching.,,gold0-orig,pos,unl,unl,unl,n/a,He begins climbing up the rock.,He\nanetv_k9VKFjPYT3o,3966,He has a rope around his neck with different rock climbing tools. He,gives another person a high five.,\"uses his knee to protect him, then starts shaving.\",loads the rope that is in the water.,talks how to do sit ups on wood bars.,moves to jump up and down.,gold1-orig,pos,unl,pos,pos,pos,He has a rope around his neck with different rock climbing tools.,He\nanetv_k9VKFjPYT3o,3963,A man in a blue coat is talking outside by a rock. He,is wearing a rock climbing harness.,has to start working in a red block.,does a long jump in a beam into a sand pit.,is filming himself from protective clothes or something for another man.,walks up and starts playing a rubix cube.,gold0-reannot,pos,unl,unl,unl,pos,A man in a blue coat is talking outside by a rock.,He\nlsmdc0051_Men_in_black-70946,15378,Someone takes the remaining chair. Someone,continues addressing the recruits.,paints an old pencil to the gong.,chokes on her pair.,already holding her finger.,fixes earrings with gold earrings.,gold0-orig,pos,unl,unl,unl,unl,Someone takes the remaining chair.,Someone\nlsmdc0051_Men_in_black-70946,15380,They all turn and regard someone a little smugly. Someone's hand,\"is, indeed, up.\",stands on someone's left shoulder.,breaks out in a gently frown.,\"goes in her ear, sprinkle on her evenly, rubbing her rain - length hair over her cheeks.\",is flat enough to rail in a cage.,gold1-orig,pos,unl,unl,unl,unl,They all turn and regard someone a little smugly.,Someone's hand\nanetv_IhuwmiSPx0w,18041,\"Then, the cheerleaders make a tower and then jump, then they do cartwheels. Two cheerleaders\",get up in a tower and then flips and fall on the arms of people.,appear in a gym showing.,continue jumping and bouncing across the street in quiet residential positions.,walk on the street one after the other.,stand alone on the board to perform a jump.,gold0-orig,pos,unl,unl,unl,unl,\"Then, the cheerleaders make a tower and then jump, then they do cartwheels.\",Two cheerleaders\nanetv_IhuwmiSPx0w,18042,Two cheerleaders get up in a tower and then flips and fall on the arms of people. The girls,do again a tower and then spin and jump.,start fighting a hard throw and kayaking.,begin playing in a large line.,are batting one another.,\"do a ski routine, then move and do a flip.\",gold0-orig,pos,unl,unl,unl,unl,Two cheerleaders get up in a tower and then flips and fall on the arms of people.,The girls\nanetv_2WwWzzO6rZQ,2218,A female gymnast jumps onto a balance beam and do many tricks and flips and lands back on her feet. the gymnast,does two nice back flips back to back while keeping her balance and landing prefect on her feet.,performs batons on the bars.,jumps on the balance beam and stomach jumps on the mat and lands on the mat.,starts dive backwards down the hoop.,,gold1-orig,unl,unl,unl,unl,n/a,A female gymnast jumps onto a balance beam and do many tricks and flips and lands back on her feet.,the gymnast\nanetv_2WwWzzO6rZQ,2219,The gymnast does two nice back flips back to back while keeping her balance and landing prefect on her feet. finally the female gymnast,finishes with a high twice flip off the balance beam in the air and lands on the mat prefect.,\"walks to the barbell, grabbing onto her ankles.\",makes her way to the beam and jumps across her monkey bars onto the platform.,stands in front of the bar doing gymnastics and flips on the rope to her feet.,has a long jump and puts it against the end and performs many tricks.,gold0-orig,pos,unl,unl,unl,unl,The gymnast does two nice back flips back to back while keeping her balance and landing prefect on her feet.,finally the female gymnast\nlsmdc0017_Pianist-55841,6756,\"He smiles and runs to catch up with his family. He looks back, but someone is lost to sight and the procession\",continues on its way.,begins in a circle of gravel.,goes towards the far end.,creeps to the open door in the doorway.,continues to go fast.,gold0-orig,pos,unl,unl,unl,pos,He smiles and runs to catch up with his family.,\"He looks back, but someone is lost to sight and the procession\"\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89673,459,\"When they stop to look at the view, someone hangs back. Someone\",\"comes over to her, leaving the people to their admiration of the countryside.\",draws a cigar and draws his gun.,is seated as he sits in her seat.,punches into someone's face so that she can not cover their face.,\"reaches into his pocket, holding the scooter out to meet them.\",gold0-orig,pos,unl,unl,unl,unl,\"When they stop to look at the view, someone hangs back.\",Someone\nlsmdc1044_Pride_And_Prejudice_Disk_Two-89673,458,He walks off and someone takes someone's arm. They,\"set off after people, who are walking a few paces ahead.\",wording animates on screen and screen and silly with it.,gun drops from his grasp.,\"him, his throat gets dead.\",pause mid - run.,gold0-orig,pos,unl,unl,unl,pos,He walks off and someone takes someone's arm.,They\nlsmdc3022_DINNER_FOR_SCHMUCKS-10571,16712,He takes out a case containing stuffed mice in Evolution of Man style poses. The final mouse,holds a sheet of paper.,stops to look the fish all back on the young then licks his fingers.,looks quizzically in a combed veet belt out of his shirt.,walks past the flower's left side to tip his board.,\"throws the cricket ball, then the cashier a bag end.\",gold0-orig,pos,unl,unl,unl,unl,He takes out a case containing stuffed mice in Evolution of Man style poses.,The final mouse\nlsmdc3022_DINNER_FOR_SCHMUCKS-10571,16711,\"Unsettled, everyone pushes their plates away except someone, who tucks in. Someone\",walks over to the chest from his workshop.,leans back in pain and waits on his crawling towards the ground.,books someone grabs someone.,plots through further money.,is scoots up an aisle towards the audience.,gold0-orig,pos,unl,unl,unl,pos,\"Unsettled, everyone pushes their plates away except someone, who tucks in.\",Someone\nanetv_eAFFf5cSX5c,11417,A man and a woman perform various dance moves back and fourth in an empty room. The couple,continue to spin and perform the tango routine while the man spins her around behind him.,jumps across from the mat.,walks away while laughing and putting out their arms and around their backs.,climbs inside and performs a routine in unison.,begin dancing around and twirling some batons while continuing to dance.,gold0-orig,pos,unl,unl,unl,pos,A man and a woman perform various dance moves back and fourth in an empty room.,The couple\nanetv_GrACpo7aonA,15059,Edrum attic logo and title card appear. A man in a black polo shirt,is sitting in front of an electronic drum set.,walks with the transparent disc that plays on the ice.,grabs clothes with headphones.,does a big spin.,talks in a living room.,gold0-orig,pos,unl,unl,unl,pos,Edrum attic logo and title card appear.,A man in a black polo shirt\nanetv_GrACpo7aonA,16285,Several close ups are shown of various equipment. The photos,flash by very fast.,show their officials doing the exercises and ropes.,are shown and every one across them talks.,are shown of the weight instructor.,are shown of the man talking to the camera.,gold0-orig,pos,unl,unl,unl,unl,Several close ups are shown of various equipment.,The photos\nanetv_GrACpo7aonA,15060,A man in a black polo shirt is sitting in front of an electronic drum set. The tutorial,starts by showing each part of the drum set up close.,moves to stop a panel of people from lifting any show the correct way for him to move.,is showing the man house playing and turns around for the camera.,is replayed in slow motion.,,gold0-orig,pos,unl,unl,pos,n/a,A man in a black polo shirt is sitting in front of an electronic drum set.,The tutorial\nanetv_GrACpo7aonA,15061,The tutorial starts by showing each part of the drum set up close. The man,demonstrates each feature for the rest of the instructional video.,starts every additional simple moving room and asks a woman how to return the bow.,\"sets his guitar down in front of her, and laughs into her.\",begins to play the violin.,,gold0-orig,pos,unl,unl,unl,n/a,The tutorial starts by showing each part of the drum set up close.,The man\nanetv_GrACpo7aonA,16286,The photos flash by very fast. A man,is seen playing an elaborate drum set.,blocks for another ornament.,wearing red someone lifts the card in the air.,is up over a white razor on his chest and runs to his left.,washes over the squares his shoes.,gold0-reannot,pos,unl,unl,unl,unl,The photos flash by very fast.,A man\nlsmdc3051_NANNY_MCPHEE_RETURNS-24786,14764,\"Outside, the five children return with the piglets. Someone\",\"dashes through the barn, someone trailing closely behind.\",wheels a suitcase while someone finds his wallet.,reaches for the attendant.,sees her and frowns.,is tumbling through the ground and underneath the trees.,gold0-orig,pos,unl,pos,pos,pos,\"Outside, the five children return with the piglets.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24786,14767,\"Smiling, the farmer opens the cart. Someone\",joins the children at the cart.,\"'s clock show half, zero.\",still flies a joint across the table across the body of someone.,strolls down the hall towards his brother.,,gold0-orig,pos,unl,unl,unl,n/a,\"Smiling, the farmer opens the cart.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24786,14769,\"He jerks his feet lose from the deep mud, runs through the barn and dashes out of sight. Someone\",scowls at the money.,digs out someone's gun and ventures on from it.,points to a check and sees it wearing a black suit.,\"heads toward a fence, some cases torn from loose panties from someone's briefcase.\",,gold1-orig,unl,unl,unl,unl,n/a,\"He jerks his feet lose from the deep mud, runs through the barn and dashes out of sight.\",Someone\nlsmdc3051_NANNY_MCPHEE_RETURNS-24786,14765,\"Someone dashes through the barn, someone trailing closely behind. He\",stares wide - eyed.,sways to a short patch of grass bordering the tree.,sees someone running through the house.,walks through heavy snow.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone dashes through the barn, someone trailing closely behind.\",He\nanetv_cau489T9DLE,17512,Men are running on a side of the woman. women,enter to a room.,are turning the cake in ornaments.,walk to the camera leading the class.,hit a red ball to hit the pool.,are sitting in the kitchen.,gold1-reannot,pos,unl,unl,unl,unl,Men are running on a side of the woman.,women\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9677,Someone talks to Snowy as they walk. A burly man,\"presses a rag over someone's face, then shoves him into a crate.\",peers through the computer surveillance screen at his onesie.,enters the back desk to begin out.,remains dead keeping his face grim.,steps out of a pond and sprays himself on a chair.,gold1-orig,pos,unl,unl,unl,unl,Someone talks to Snowy as they walk.,A burly man\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9679,Snowy bites the man's bottom. He,shuts snowy in the apartment building.,closes his eyes and wipes his face in an ultrasound expression.,picks up the remote and puts on a headset.,hurls his regretful gaze at someone who gently pins him against his back.,stands then turns to face someone.,gold0-orig,pos,unl,unl,unl,unl,Snowy bites the man's bottom.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9692,He locates the van which sits parked with its back doors flung open. The crane,\"lifts the crate, which is stamped karaboudjan, onto a cargo ship baring the same name.\",looks over at the play.,drives the shaft through the grand cemetery.,touches the milling train and parks in the middle of the entrance marked the hotel.,roll to find someone alone with a few papers away.,gold0-orig,pos,unl,unl,unl,unl,He locates the van which sits parked with its back doors flung open.,The crane\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9680,He shuts Snowy in the apartment building. Snowy,bounds upstairs and runs into someone's apartment.,steps toward someone's mansion.,steps out of the garage.,raises his hand to the radio.,spies someone holding the dead animal.,gold0-orig,pos,unl,unl,unl,pos,He shuts Snowy in the apartment building.,Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9673,The thief hurries up the foggy street. Someone,\"runs into the road as a car emerges from the mist, narrowly missing him.\",streaks past the damaged ankle.,sees a small man standing in his tracks as he stands silhouetted in the sun.,has the gun dangling from.,swiftly takes his knee.,gold0-orig,pos,unl,unl,unl,unl,The thief hurries up the foggy street.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9671,\"The other inspector grabs the thief's coat, but runs into a lamp post. Someone\",sets out into the thick fog and bumps into the thief coming the other way.,they spin around him again as it explodes all.,\"leaps into the automaton and pulls himself onto a railing, pulling to stifle a deep sigh.\",ushers someone in as people enter his way.,,gold0-orig,pos,unl,pos,pos,n/a,\"The other inspector grabs the thief's coat, but runs into a lamp post.\",Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9691,Several cows lift their heads and widened their eyes as Snowy races under them. He,locates the van which sits parked with its back doors flung open.,gives another pig a thumbs up.,pulls hoses onto their front lapels and pulls the gate.,ducks and springs to move back into her trailer.,\"scowls, and approaches someone with a expressionless expression on his face.\",gold0-orig,pos,unl,unl,pos,pos,Several cows lift their heads and widened their eyes as Snowy races under them.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9690,Snowy raises his head and hits it on the cows utters. Several cows,lift their heads and widened their eyes as snowy races under them.,lie at all behind him.,fall into the abyss and the explosion smashes into the water.,are thrown by the gates.,converge on them as they pull back from dirt roads.,gold0-orig,pos,unl,unl,unl,pos,Snowy raises his head and hits it on the cows utters.,Several cows\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9678,\"A burly man presses a rag over someone's face, then shoves him into a crate. Snowy\",bites the man's bottom.,gets to the ground and runs back.,plods into the living room and sets down his slippers.,lifts the weight from his head.,walks out of the bathroom.,gold1-orig,pos,unl,unl,unl,pos,\"A burly man presses a rag over someone's face, then shoves him into a crate.\",Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9681,Snowy bounds upstairs and runs into someone's apartment. He,\"hops over a pair of chairs, then leaps onto a window sill.\",grabs her bag and tucking her into a hug.,watches from outside onto the paddy field of guard guards.,is at that pretty colonel's photo set.,,gold0-orig,pos,unl,unl,unl,n/a,Snowy bounds upstairs and runs into someone's apartment.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9666,Someone takes one of the inspectors' wallets. It,'s attached to a string.,overflows and someone grows forced.,is watching the beach openly unpleasantly.,thumping the raft aboard the water makes it trip through two more groups and down a chimney trapdoor.,follows someone's gaze then meets the man's gaze.,gold0-orig,pos,unl,unl,unl,unl,Someone takes one of the inspectors' wallets.,It\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9688,\"Snowy chases after the van then jumps into a small wagon, towed by a bicyclist. They\",pass a street sign.,walk into the kitchen.,stop as officers surrounding it.,tread along the dining room to avoid the sultan.,eat in mid - air.,gold0-orig,pos,unl,unl,unl,unl,\"Snowy chases after the van then jumps into a small wagon, towed by a bicyclist.\",They\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9665,The inspectors leave without the newspaper. Someone,takes one of the inspectors' wallets.,leans into the wealthy wall and whispers through his shoulder.,'s dark hair does n't solve fumbling.,holds up someone's wrist and smiles.,,gold1-orig,pos,unl,unl,pos,n/a,The inspectors leave without the newspaper.,Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9674,\"Someone runs into the road as a car emerges from the mist, narrowly missing him. Other cars\",swerve on all sides.,arrive at the owner of the retirement home.,pass him in mid - air.,speed up beneath him as the tank driver staggers out of the corner.,,gold1-orig,pos,unl,unl,unl,n/a,\"Someone runs into the road as a car emerges from the mist, narrowly missing him.\",Other cars\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9676,\"Using their hooked canes, the inspectors pull Snowy and someone off the road. Someone\",talks to snowy as they walk.,leaps out of the plane and peers after them.,scrambles to meet someone in the doorway.,brings his finger up and down.,ducks into the light.,gold0-orig,pos,unl,unl,unl,unl,\"Using their hooked canes, the inspectors pull Snowy and someone off the road.\",Someone\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9670,The wallet snaps back and smacks him in the face. The other inspector,\"grabs the thief's coat, but runs into a lamp post.\",hands the receiver to someone's mouth.,pinches his nose and exhales.,peers over his shoulder.,does the same thing.,gold0-orig,pos,unl,unl,pos,pos,The wallet snaps back and smacks him in the face.,The other inspector\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9693,\"The crane lifts the crate, which is stamped Karaboudjan, onto a cargo ship baring the same name. Later the ship\",steams out of the harbor and into the ocean.,glides down onto the smooth edge of the board.,leads someone and someone out into a floating flowing stream.,\"lies in two, chained, treelike a brass, yawning after one.\",flies out of the jungle and flies through it for advancing troops.,gold0-orig,pos,unl,unl,unl,unl,\"The crane lifts the crate, which is stamped Karaboudjan, onto a cargo ship baring the same name.\",Later the ship\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9672,Someone sets out into the thick fog and bumps into the thief coming the other way. The thief,hurries up the foggy street.,slides the car up open and cries out in relief.,pauses and style the inside of the hunter.,\"carries her pistol, then mouth open so she can find something above her.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone sets out into the thick fog and bumps into the thief coming the other way.,The thief\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9685,Snowy's legs dangle in front of the van's windshield. He,drops onto the hood.,swings at his brother.,presses his lips together as he eyes the pan of potatoes.,shoots the helicopter in the air.,seems to be driving in the fuel terrain.,gold0-orig,pos,unl,unl,unl,unl,Snowy's legs dangle in front of the van's windshield.,He\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9682,\"He hops over a pair of chairs, then leaps onto a window sill. Snowy\",leaps on top of a passing fire truck.,\", someone holds someone's hand over his mouth.\",stuck backward in his chest.,\"arrives, catching a glimpse of someone passing in handed to the hole who waits next to someone.\",\"runs to his bedroom, sniffs the space and talks in his drawer.\",gold1-orig,pos,unl,unl,unl,pos,\"He hops over a pair of chairs, then leaps onto a window sill.\",Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9687,Snowy slides on the hood as the van veers through traffic. Snowy,tumbles onto the street as the van turns sharply.,\"runs with his gun, clinging by someone's flapping.\",runs across the barn.,runs across the street where someone follow her.,,gold0-orig,pos,unl,unl,unl,n/a,Snowy slides on the hood as the van veers through traffic.,Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9683,Snowy leaps on top of a passing fire truck. As the fire truck behind it skids to a halt its ladder,extends out over the van.,collapses over a fallen tree.,lies along the gravel.,has been taken out by a few troopers and flying axes.,,gold0-orig,pos,unl,unl,unl,n/a,Snowy leaps on top of a passing fire truck.,As the fire truck behind it skids to a halt its ladder\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9689,\"As the van makes another sharp turn, Snowy leaps out of the wagon and onto the fence of a livestock pen. Snowy\",\"jumps onto the back of a cow, which kicks him beneath another cow.\",fires his radio as it rolls on its tail and falls out onto the ground.,runs down the holes while being chased by an explosion.,fires his car device as he regains his footing and roars out from behind the other cars.,is watched by piles of dust.,gold0-orig,pos,unl,unl,unl,unl,\"As the van makes another sharp turn, Snowy leaps out of the wagon and onto the fence of a livestock pen.\",Snowy\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9667,It's attached to a string. The inspectors,\"tip their bowlers, then walk off.\",trade blank posts as he closes in.,stare around and drive between the rows of inflatable sofas.,\"stand outside under the beam, smiling.\",,gold1-reannot,pos,unl,unl,pos,n/a,It's attached to a string.,The inspectors\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9668,A man follows the inspectors. The goateed pickpocket,steals the inspector's wallet and runs off dragging him by the elastic cord.,picks up a phone in a certificate.,\"ushers someone away, then makes his way to the dock.\",puts his piece of someone's clothing on the floor.,,gold0-reannot,pos,unl,pos,pos,n/a,A man follows the inspectors.,The goateed pickpocket\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9675,\"Other cars swerve on all sides. Using their hooked canes, the inspectors\",pull snowy and someone off the road.,burst through the hole to sneak out.,turn to watch in her wake.,slide shut and glimmer on red.,catch a ball past with each other.,gold0-reannot,pos,unl,unl,unl,unl,Other cars swerve on all sides.,\"Using their hooked canes, the inspectors\"\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9669,The goateed pickpocket steals the inspector's wallet and runs off dragging him by the elastic cord. The wallet,snaps back and smacks him in the face.,lands in side of desk with a hard expression.,\"softens after it, then hands for his drink.\",flicks on a cloth and reads.,hangs dangling from an overhead hook.,gold0-reannot,pos,unl,unl,unl,pos,The goateed pickpocket steals the inspector's wallet and runs off dragging him by the elastic cord.,The wallet\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9684,As the fire truck behind it skids to a halt its ladder extends out over the van. Snowy's legs,dangle in front of the van's windshield.,move around from the stream of animals on the ground.,heave as he slides down on his knees.,fly as it cruises alongside the willow.,\"rise onto the pavement, then pull away.\",gold0-reannot,pos,unl,unl,unl,unl,As the fire truck behind it skids to a halt its ladder extends out over the van.,Snowy's legs\nlsmdc3066_THE_ADVENTURES_OF_TINTIN-31477,9686,He drops onto the hood. Snowy,slides on the hood as the van veers through traffic.,puts it off on both feet.,lies on the floor.,turns on his check - shaped pickup.,looks down at the hearse's frankly pointed branches.,gold0-reannot,pos,unl,unl,unl,unl,He drops onto the hood.,Snowy\nlsmdc1015_27_Dresses-79807,17986,\"Later, he strides into the newspaper offices and approaches someone. He\",\"leaves, angry and frustrated.\",opens the door on his steps and strides through the front door.,\"cover the note with a paper, and he removes the radio.\",holds up his glasses and a beer.,joins them in a conversation with someone in a police station.,gold1-orig,pos,unl,unl,unl,unl,\"Later, he strides into the newspaper offices and approaches someone.\",He\nlsmdc1015_27_Dresses-79807,17983,\"Someone crumples up the paper, throws it at someone, and leaves. She\",\"stares at him with bitter disappointment, then turns on her heel and leaves.\",\"looks over toward the car, then goes out the door, looking for a second youth.\",\"pulls back onto a wall, pins its up to its door, and disappears in time to the chamber.\",does it pretty good.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone crumples up the paper, throws it at someone, and leaves.\",She\nlsmdc1015_27_Dresses-79807,17987,\"He leaves, angry and frustrated. Someone\",arrives at her apartment.,kicks a bed between them.,rips through the lateral floorboards.,\"sits behind him first, then glances over the courtyard.\",goes slack - jawed.,gold0-orig,pos,unl,unl,unl,unl,\"He leaves, angry and frustrated.\",Someone\nlsmdc1015_27_Dresses-79807,17984,\"She stares at him with bitter disappointment, then turns on her heel and leaves. He\",\"walks back to the diner, his face in his hands.\",\"removes his shades and peers back at the lone rider as he starts past, smiling.\",\"glances at someone, then gets closer.\",takes someone by the hand and hugs him tightly.,,gold0-orig,pos,unl,pos,pos,n/a,\"She stares at him with bitter disappointment, then turns on her heel and leaves.\",He\nlsmdc1015_27_Dresses-79807,17985,\"He walks back to the diner, his face in his hands. Later, he\",strides into the newspaper offices and approaches someone.,walks up past his new friends.,lies someone down on the bed with a light covering his face with pierced streaks.,drives off with someone at an amusement park.,,gold0-orig,pos,pos,pos,pos,n/a,\"He walks back to the diner, his face in his hands.\",\"Later, he\"\nanetv_GyBIC-DBoss,11429,The woman picked up the barbell pause at her chest and then push the barbell up. The woman,put down the barbell on the floor.,does a hand stand.,turns to to her feet and walks along the machine.,positions the weights in the end.,,gold0-orig,pos,unl,unl,pos,n/a,The woman picked up the barbell pause at her chest and then push the barbell up.,The woman\nanetv_GyBIC-DBoss,6226,She bends down and picks up a large weight over her head several times. She,drops the weight onto the mat.,continues to move her body around and end by lifting her arms to her sides.,\"picks up weights, ends the weight to the middle of the floor and slams it over her stomach.\",picks up a ball and uses it to get it in slow motion.,\"then stands along the bar, looking back and smiling to the camera.\",gold0-orig,pos,unl,unl,unl,unl,She bends down and picks up a large weight over her head several times.,She\nanetv_GyBIC-DBoss,6225,A woman in a pink shirt is standing on a mat. She,bends down and picks up a large weight over her head several times.,takes off a black dress and runs back to a jump on the horse.,sits on a mat holding a microphone in front of her.,lays down in front of the camera.,is sitting on the ground waving her arms.,gold1-reannot,pos,unl,unl,unl,unl,A woman in a pink shirt is standing on a mat.,She\nanetv_GyBIC-DBoss,11430,The woman put down the barbell on the floor. The woman,\"picked up the barbell, pushed the barbell up, put the barbell down and let it go then do it again.\",put the weight weight over it.,slowly solves the cube.,lifted the weight up on her head and put the weight on it but spread it and take it.,holds the handles over her head as he lifts the item.,gold0-reannot,pos,unl,unl,unl,unl,The woman put down the barbell on the floor.,The woman\nanetv_Sk1RSHPavBU,2358,We see men playing soccer in the sand. The ball enters and everyone,runs towards the ball.,holds the ball while standing in its arms.,is measured to adults.,seems to be very excited.,looks to the boys.,gold0-orig,pos,unl,unl,pos,pos,We see men playing soccer in the sand.,The ball enters and everyone\nanetv_Sk1RSHPavBU,2359,The ball enters and everyone runs towards the ball. A man on the right,kicks the ball into the goal.,puts a red ball on the ground.,jumps off the pool board and walks across the lane.,makes the same shot shown volleyball over the net again.,stands up to throw the ball.,gold0-orig,pos,unl,unl,unl,pos,The ball enters and everyone runs towards the ball.,A man on the right\nanetv_DguywhRJ7ds,13019,A person walks up to the side of a pool. They,dive off the diving board into the water.,hit a ball back and forth.,walk in a dark room with their hands in hand pockets.,\"ride the sail fish into a lake, paddling slowly.\",lay down to the pool table.,gold0-orig,pos,unl,unl,unl,unl,A person walks up to the side of a pool.,They\nanetv_DguywhRJ7ds,1958,A girl springs forward on a diving board. The girl,bounces on the edge of the diving board.,dismounts and lands on a chair in front of the diver.,jumps off balance as she dives into the pool.,jumps on the diving board on the water.,finishes and jumps off.,gold1-orig,pos,unl,unl,unl,unl,A girl springs forward on a diving board.,The girl\nanetv_DguywhRJ7ds,1959,The girl bounces on the edge of the diving board. The girl,dives into the pool in front of her.,dives on the diving board under the water.,dives into the water to catch the air ball.,dives off the water and falls backwards right into the pool.,jumps off of the diving board.,gold0-orig,pos,unl,unl,unl,pos,The girl bounces on the edge of the diving board.,The girl\nanetv_DguywhRJ7ds,13020,They dive off the diving board into the water. They,make a splash as they hit the water below.,sail over here and rub the boat.,spins the puck quickly from the competition while it's covered in water.,get out of the pool and swim to swim around.,continue swimming several times and ends with hoops having fun.,gold0-reannot,pos,unl,unl,unl,pos,They dive off the diving board into the water.,They\nanetv_uMAjCPUZfp0,3838,Several clips are shown of various people fencing with one another. The people,continue moving back and fourth while the camera zooms in on the people playing.,walk around on the playground steps and end.,continue riding around on dirt bikes as well as running away as well as women attempting to ride the lift.,continue to move around the object while others watch on the side.,are shown rotating their swords and ends by showing a swords.,gold0-orig,pos,unl,unl,unl,pos,Several clips are shown of various people fencing with one another.,The people\nanetv_TkNCytAQ5cw,9068,A woman is hosting a news segment that leads into clips of people working on the streets and protesting. Several women,are interviewed by the camera and shows more clips of people working and protesting.,are seen attempting to the camera at different angles.,are shown in a public cubicle and also parts being shown in the same location.,are also interviewed in the news area and leads into various areas of people being ins and performing tricks in an area.,,gold0-orig,pos,unl,unl,unl,n/a,A woman is hosting a news segment that leads into clips of people working on the streets and protesting.,Several women\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1889,\"She uses her cell phone. Now, a magazine clipping\",features a model with a poufy updo.,\"mirror shows her exiting a cafe as someone reads, missed call.\",hits the haul 'computer.,shows a sketch of two attractive people watching her from the wall.,,gold0-orig,pos,unl,unl,pos,n/a,She uses her cell phone.,\"Now, a magazine clipping\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1892,\"A hand pulls a suit jacket from a rack. At someone's, another magazine photo\",shows a sleek ponytail.,shows a halfway live brief look.,is the insurance warrior.,appears on someone's bosom.,,gold0-orig,pos,unl,unl,unl,n/a,A hand pulls a suit jacket from a rack.,\"At someone's, another magazine photo\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1891,\"In a closet, our view sweeps over a selection of expensive men's clothes. A hand\",pulls a suit jacket from a rack.,reaches for the flower.,\"falls to the floor, a massive drop of blood dancing across the face.\",shows the back of someone's shoulders.,\"packs the keys in a concrete system, filling the box with bullies.\",gold0-orig,pos,unl,unl,unl,unl,\"In a closet, our view sweeps over a selection of expensive men's clothes.\",A hand\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1887,Someone paints a sculpture of a bride and groom standing at a wedding. Someone,pauses and shifts her gaze.,crouches over her and takes it.,jogs up to the second woman.,meets someone's disapproving gaze.,,gold1-orig,pos,unl,unl,pos,n/a,Someone paints a sculpture of a bride and groom standing at a wedding.,Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1902,She reaches back and pulls off the hairpiece. She,throws it into the fountain.,bites someone's shoulder.,eyes turn round and kiss her shoulder.,looks down as he gazes down.,,gold0-orig,pos,unl,unl,pos,n/a,She reaches back and pulls off the hairpiece.,She\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1890,\"At a dressing table, someone faces a mirror as she backcombs her hair. In a closet, our view\",sweeps over a selection of expensive men's clothes.,\"finds briefly change the view, regarding her with an identical former model.\",finds a girlish dancer in blonde bikini standing inside a blanket crossing.,caresses a mother's shoulder.,drifts past the campaign manager who pauses.,gold0-orig,pos,unl,unl,unl,unl,\"At a dressing table, someone faces a mirror as she backcombs her hair.\",\"In a closet, our view\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1895,\"Someone picks up a blonde hair extension and brushes it out. Later, she\",smiles at the reflection of her long smooth ponytail and flounces it against her back.,runs alone.,sits in a sticky position by his wing holding uniform stand and considers.,withdraws the banquette from the fridge and places it down.,rides up a winding track and past a circle of a sickle parked at its end.,gold0-orig,pos,unl,unl,unl,unl,Someone picks up a blonde hair extension and brushes it out.,\"Later, she\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1893,\"Facing her mirror, the young woman copies the hairstyle. She\",checks her profile and gives a dissatisfied grimace.,takes off the square blouse.,sits there watching a doctor have his hands crying.,caresses the contact with her auburn hair.,\"clutches her long hair, looks at someone and her murder.\",gold0-orig,pos,unl,unl,unl,unl,\"Facing her mirror, the young woman copies the hairstyle.\",She\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1897,\"In a rich man's closet, a hand pulls out a small drawer displaying a selection of expensive watches. He\",picks one with a gold face.,smiles at someone then gives a thoughtful look.,catches it and places it on a desk.,delivers a towel to someone and notices them staring.,takes the urn cone and tosses it onto the road.,gold0-orig,pos,unl,unl,unl,unl,\"In a rich man's closet, a hand pulls out a small drawer displaying a selection of expensive watches.\",He\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1888,Someone pauses and shifts her gaze. She,uses her cell phone.,sucks out of its smoke.,shakes her head and someone smiles.,takes her cell phone.,,gold1-orig,pos,unl,pos,pos,n/a,Someone pauses and shifts her gaze.,She\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1898,\"He picks one with a gold face. Scrutinizing her reflection, someone\",tucks a price tag into the back of her slinky black dress.,mimes hitting it with his right hand.,clutches a repels condom.,leans back against the lip of his desk and heads down the front steps.,reaches down with the tray then spreads it off.,gold0-orig,pos,unl,unl,unl,unl,He picks one with a gold face.,\"Scrutinizing her reflection, someone\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1899,\"Scrutinizing her reflection, someone tucks a price tag into the back of her slinky black dress. Now at an upscale restaurant, a fountain\",stands amid softly lit tables.,is hovering among the encampment.,puts chocolate on her face.,eats at the curb as a manager comes out.,,gold0-reannot,pos,unl,unl,unl,n/a,\"Scrutinizing her reflection, someone tucks a price tag into the back of her slinky black dress.\",\"Now at an upscale restaurant, a fountain\"\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1900,\"Now at an upscale restaurant, a fountain stands amid softly lit tables. Someone\",\"sits alone at one of them, nibbling on a dinner roll.\",takes pictures in the kitchen displays her other cards.,sits on a sofa.,smacks her in the living area as she mutters feverishly.,eyes dart aside as she takes rectangular metal bags from an bag.,gold0-reannot,pos,unl,unl,unl,pos,\"Now at an upscale restaurant, a fountain stands amid softly lit tables.\",Someone\nlsmdc3088_WHATS_YOUR_NUMBER-42311,1901,Someone pauses and turns to greet an acquaintance. Someone,\"frowns, sniffing the air, and looks around.\",\"is a calm, elderly couple.\",'s two begin to ring.,contemplates the place but with different formations.,steps out of the mastermind's kitchen.,gold0-reannot,pos,unl,unl,unl,pos,Someone pauses and turns to greet an acquaintance.,Someone\nlsmdc0005_Chinatown-48127,10136,One of the men turns and sees someone. He,recognizes someone and is visibly shocked.,looks at his bottom and nods.,\"leaps into the air, falling backwards with his free hand.\",attacks him repeatedly with their legs wrapped around his while his lips stop in front of his flesh.,,gold0-orig,pos,unl,unl,unl,n/a,One of the men turns and sees someone.,He\nlsmdc0005_Chinatown-48127,10139,The men around them are extremely uneasy. They,walk a couple of steps.,talk to each other for a match.,are holding a discus in front of each other.,are going back and forth in the cars.,,gold0-orig,pos,pos,pos,pos,n/a,The men around them are extremely uneasy.,They\nlsmdc0005_Chinatown-48127,10138,\"At the sound of his raised voice, a man standing at the edge of the channel, talking to two boys in swimming trunks, turns around. Both people\",register considerable surprise at seeing one another.,do both glances back with concern.,are camping in the midst of the desert.,are still staring out at one of the rose trees.,,gold0-orig,pos,unl,unl,unl,n/a,\"At the sound of his raised voice, a man standing at the edge of the channel, talking to two boys in swimming trunks, turns around.\",Both people\nlsmdc0005_Chinatown-48127,10132,\"He fishes out one of someone's cards from his handkerchief pocket, hands it to the Guard. Someone\",\"drives past the guards, through the gate, along the reservoir.\",finds him on cash.,drinks from a wooden shaft.,parries his blows and strikes again.,has silenced the question pipe.,gold0-orig,pos,unl,unl,unl,unl,\"He fishes out one of someone's cards from his handkerchief pocket, hands it to the Guard.\",Someone\nlsmdc0005_Chinatown-48127,10133,\"Someone drives past the Guards, through the gate, along the reservoir. Someone\",stops and gets out of the car.,stops at the gate landing in the trunk.,wears toting a key over his bag.,\"looms over them as it opens a gate, peers across the gate.\",,gold1-orig,pos,unl,unl,unl,n/a,\"Someone drives past the Guards, through the gate, along the reservoir.\",Someone\nlsmdc0005_Chinatown-48127,10130,\"One a rescue truck, are at the entrance to the reservoir. The chain link fence with its keep out sign is open and there\",are people milling around.,are a sticks stacked on a yellow mound.,is the squad car lying on it.,are several spectators staring out of them as if wincing with emotion.,,gold1-orig,pos,unl,pos,pos,n/a,\"One a rescue truck, are at the entrance to the reservoir.\",The chain link fence with its keep out sign is open and there\nlsmdc0005_Chinatown-48127,10129,\"Someone drives up a winding road, following a flood channel up into the parched hills. One a rescue truck,\",are at the entrance to the reservoir.,a huge human hand follows the hunter out and bowls floats and recoils.,someone hurries up to a control van and struts to the air vehicle.,slows down as the car travels up a hill.,a van gets stuck alongside a four - wagon dirt road.,gold0-orig,pos,unl,unl,unl,unl,\"Someone drives up a winding road, following a flood channel up into the parched hills.\",\"One a rescue truck,\"\nlsmdc0005_Chinatown-48127,10137,He recognizes someone and is visibly shocked. Someone,tries to ease him down the path.,pretends to touch him.,\"looks to horrified, is empty of space.\",is clearly forced to answer.,,gold0-reannot,pos,unl,unl,unl,n/a,He recognizes someone and is visibly shocked.,Someone\nlsmdc0005_Chinatown-48127,10135,\"Several men with their backs turned, one talking quietly, staring down into the reservoir where other men in small skiffs are apparently dredging for something. One of the men\",turns and sees someone.,kills a man and walks out the front of the roof.,gets off the mountain to get in.,\"slowly takes off, followed by someone, who of the huge rock.\",\"has difficulty touching himself on the sidewalk, moving like a cowboy, climbing up the mountain to as his body.\",gold1-reannot,pos,unl,unl,unl,unl,\"Several men with their backs turned, one talking quietly, staring down into the reservoir where other men in small skiffs are apparently dredging for something.\",One of the men\nlsmdc0005_Chinatown-48127,10131,Someone 'car is stopped by a couple of uniformed police. He,\"fishes out one of someone's cards from his handkerchief pocket, hands it to the guard.\",dribbles around crooked phone of bugs.,pulls up a broom and pulls him out on a dirt road.,is still staring at the door as he goes into the lobby and stops to look up as someone walks up the front steps.,increases on his stoop as someone enters.,gold0-reannot,pos,unl,unl,unl,unl,Someone 'car is stopped by a couple of uniformed police.,He\nlsmdc0005_Chinatown-48127,10134,Someone stops and gets out of the car. He,spots a police car and an unmarked one as well.,walks past her and takes a seat.,\"drives back down the road, weaving in and out of nothing but burning brows and shabby trunk.\",\"runs contemptuously in the road and reacts, swooping over to the other window, and reveals his broomstick hundreds of float debris.\",stops just outside the door.,gold0-reannot,pos,unl,unl,unl,unl,Someone stops and gets out of the car.,He\nlsmdc3038_ITS_COMPLICATED-17620,3395,He paces away from her as she gives a fleeting smile. He gives a gentle grin and she,gazes at him earnestly.,share a sweet kiss.,sucks on her mouth.,rubs his supplies out.,gives a sunny grin.,gold1-orig,pos,unl,unl,unl,pos,He paces away from her as she gives a fleeting smile.,He gives a gentle grin and she\nlsmdc3038_ITS_COMPLICATED-17620,3393,Someone locks eyes with him and he regretfully tightens his lips. She,drops her eyes and shifts uncomfortably.,\"extracts a bulge in his wrist, then looks back.\",\"looks to someone, then drops his hat and rushes off.\",hands him a folder.,cocks her head and glances over at her scooter.,gold0-orig,pos,unl,pos,pos,pos,Someone locks eyes with him and he regretfully tightens his lips.,She\nlsmdc3038_ITS_COMPLICATED-17620,3397,She sees his car parked across the front yard. She,studies him through the window.,climbs a ladder and looks beside him.,\"throws his journals inside, then strides off.\",\"gets up, turns around, and does more.\",beams at the box.,gold0-orig,pos,unl,unl,unl,unl,She sees his car parked across the front yard.,She\nlsmdc3038_ITS_COMPLICATED-17620,3399,\"Someone climbs out of the suv and shuts the door keeping her eyes fixed. Someone treads closer, someone\",scoots over inviting her to sit beside him.,reaches up and points her wand at them.,catches the figure affectionately.,starts the hell away.,,gold1-orig,pos,unl,unl,unl,n/a,Someone climbs out of the suv and shuts the door keeping her eyes fixed.,\"Someone treads closer, someone\"\nlsmdc3038_ITS_COMPLICATED-17620,3394,She drops her eyes and shifts uncomfortably. He,paces away from her as she gives a fleeting smile.,\"tilts his head and stares at his boss, then shifts his weary gaze to someone as she finishes.\",\"meets her gaze then puts it down, and looks at them incredulously.\",\"meets someone's gaze, then gives her a playful smile.\",,gold1-orig,pos,unl,unl,pos,n/a,She drops her eyes and shifts uncomfortably.,He\nlsmdc3038_ITS_COMPLICATED-17620,3398,She studies him through the window. Someone,climbs out of the suv and shuts the door keeping her eyes fixed.,\"sees the pamphlet, then turns on a vent area at the island.\",\"models someone's front viewfinder before dancing, then back to someone.\",pulls a gun out of a wooden case and carries a flashlight.,look down at his uncle.,gold0-reannot,pos,unl,unl,pos,pos,She studies him through the window.,Someone\nlsmdc3038_ITS_COMPLICATED-17620,3400,\"Someone treads closer, someone scoots over inviting her to sit beside him. Someone\",\"crosses the walkway, sets down her purse.\",strides away from the goblet as she leads them down white - colored streets.,\"faces the glass and rubs away the martini glass, as he studies ahead blankly.\",takes off her ticket and nods.,,gold0-reannot,pos,unl,pos,pos,n/a,\"Someone treads closer, someone scoots over inviting her to sit beside him.\",Someone\nanetv_5Q8ltS84BBg,3933,The kid grabs a guitar and start playing it and singing. kid,is playing the guitar and talking to the camera in a small room.,\"is standing on the sideline watching, some of the men are watching.\",hear a guitar and climber playing a song on the violin table and talking to the camera as the kids continue playing the piano.,\"is hanging out a large black box, laughing.\",holds a guy up and adjusts his seat next to the boy.,gold1-orig,unl,unl,unl,unl,unl,The kid grabs a guitar and start playing it and singing.,kid\nanetv_5Q8ltS84BBg,3932,Kid is sitting in a red room talkin to the camera. the kid,grabs a guitar and start playing it and singing.,swings back and forth from a slide.,grabs a black colored blue shirt from the floor and picks it up.,approaches with the other boys behind them.,\"plays the harmonica and brushes it, and the man continues talking to the camera to the camera.\",gold0-orig,pos,unl,unl,unl,unl,Kid is sitting in a red room talkin to the camera.,the kid\nanetv_AuS32BoK0Bg,15221,He grabs his skies and boards a lift. He,is then shown skiing down various hills and mountains.,smiles in excitement as he slips into the waters.,hangs up and someone puts it down by his friend.,\"climbs all the way to the top, they race ashore and sees him coming around the vehicle.\",gym looks on someone punches unstable and her stage.,gold0-orig,pos,unl,unl,unl,unl,He grabs his skies and boards a lift.,He\nlsmdc3082_TITANIC1-38710,3960,People slide and topple down the slanting deck. Someone,climbs over the railing at the back of the ship as it tips skyward rapidly.,\", someone holds her hand.\",screeches to a stop.,shoots someone on the upper deck.,picks up someone's phone.,gold0-orig,pos,unl,unl,unl,unl,People slide and topple down the slanting deck.,Someone\nlsmdc3082_TITANIC1-38710,3976,Someone grabs on to someone's life vest but is swept away by the turbulence. Someone,kicks to the surface and emerges amid other flailing survivors.,reverses down the stairs.,throws up his jacket.,\"holds onto a blanket, straightens a tiny, cia agent's bedside watch.\",\"turns to someone, retreats, and watches.\",gold0-orig,pos,unl,unl,unl,pos,Someone grabs on to someone's life vest but is swept away by the turbulence.,Someone\nlsmdc3082_TITANIC1-38710,3963,Someone and a few other passengers manage to scramble over the railing as the ship tips completely vertical. Someone and someone,lie on their stomachs and stare straight down the deck.,\"lift his heads aside to reveal an army of warrior children walking on the floor as barren, and ships.\",joyfully give a big wave.,watch as four more passengers leap into the water toward someone's house.,step onto the railing and peer into the cannon at full speed.,gold0-orig,pos,unl,unl,unl,unl,Someone and a few other passengers manage to scramble over the railing as the ship tips completely vertical.,Someone and someone\nlsmdc3082_TITANIC1-38710,3969,Dozens of passenger still dangle from poles or lie against railings and staircases on the vertical deck. Someone,keeps one arm wrapped around someone as they descend toward the water.,hangs off his sullen glasses.,inspects the frosted metal.,\"rises from his chair, squats down as he looks out over the plane.\",,gold0-orig,pos,unl,unl,unl,n/a,Dozens of passenger still dangle from poles or lie against railings and staircases on the vertical deck.,Someone\nlsmdc3082_TITANIC1-38710,3959,\"As the front half of the Titanic rapidly fills with water and sinks, it pulls the back half into the air again. People\",slide and topple down the slanting deck.,had been caught with the frenchman's dropped shoes and he walks away respectfully and releases the boat around the pirate group.,is stepping forward and perform a twirl.,is hearing the rumble of the the drill.,,gold0-orig,pos,unl,unl,unl,n/a,\"As the front half of the Titanic rapidly fills with water and sinks, it pulls the back half into the air again.\",People\nlsmdc3082_TITANIC1-38710,3964,\"Someone and someone lie on their stomachs and stare straight down the deck. People dangling from railings,\",lose their grips and fall.,\"fetal position, wait.\",\"arrive at a high cliff, and walks across the quad.\",look wistfully in the distance.,,gold0-orig,pos,unl,unl,unl,n/a,Someone and someone lie on their stomachs and stare straight down the deck.,\"People dangling from railings,\"\nlsmdc3082_TITANIC1-38710,3962,Someone pulls someone up to him. Someone and a few other passengers,manage to scramble over the railing as the ship tips completely vertical.,notice the ruins then continue for second race.,\"rush out to distract him, ride his arms to one side, engulfs him.\",climb on the lift and bend down to the top of a river.,drop down to the flagpole and watch someone climb into the lifeboat.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls someone up to him.,Someone and a few other passengers\nlsmdc3082_TITANIC1-38710,3967,He returns her silent gaze. Rising air pressure,blows water out of compartments and windows as they become submerged.,washes her half metal sign.,blows out a view in the sky.,\"lifts her hips, which features emotionally, and his face twists.\",,gold0-orig,pos,unl,unl,unl,n/a,He returns her silent gaze.,Rising air pressure\nlsmdc3082_TITANIC1-38710,3966,\"Her breath visible in the cold air, someone turns to the baker who crouches on the railing beside her. He\",returns her silent gaze.,duck ahead a grow a bit.,turns her onto her side and inspects the nurses derby dress silk bridal gown.,holds the phone to his ear.,,gold0-orig,pos,unl,unl,pos,n/a,\"Her breath visible in the cold air, someone turns to the baker who crouches on the railing beside her.\",He\nlsmdc3082_TITANIC1-38710,3968,The ocean roils around the ship as it sinks deeper. Dozens of passenger still,dangle from poles or lie against railings and staircases on the vertical deck.,spheres lie outside the ship.,appears on computer screens.,block sailors tell competitively their orders.,\"stare out among the other ships, which arrive at a vast bar guarded by people waiting train.\",gold0-orig,pos,unl,unl,unl,pos,The ocean roils around the ship as it sinks deeper.,Dozens of passenger still\nlsmdc3082_TITANIC1-38710,3961,Someone climbs over the railing at the back of the ship as it tips skyward rapidly. Someone,pulls someone up to him.,\"watches someone, then snaps it shut and rides forward.\",presses a pair of shears across the woman's lips.,watches the ship as the arena of will smash onto the ship.,,gold1-orig,pos,unl,unl,unl,n/a,Someone climbs over the railing at the back of the ship as it tips skyward rapidly.,Someone\nlsmdc3082_TITANIC1-38710,3970,Someone keeps one arm wrapped around someone as they descend toward the water. One man,slips off a pole and spins as he bounces off a railing.,\"is on a boat, surrounded by photos of his other companions.\",draws a deep breath and turns around to adjust his transparent hands.,starts shove towards the roof.,leaps over and shoots several executives.,gold0-orig,pos,unl,unl,unl,unl,Someone keeps one arm wrapped around someone as they descend toward the water.,One man\nlsmdc3082_TITANIC1-38710,3973,Waves swirl around the name. Someone and someone,take deep gulps of air as the tail end of the ship sinks beneath the surface.,assemble as a practice with martial arts.,hold shoulder.,enter and two policemen stroll closer to her.,,gold0-orig,pos,unl,unl,pos,n/a,Waves swirl around the name.,Someone and someone\nlsmdc3082_TITANIC1-38710,3971,One man slips off a pole and spins as he bounces off a railing. Some people behind the ship,try to swim clear as the massive propellers sink below the surface.,enters forward and celebrates.,swing back to the dock.,stand and pose in momentum.,,gold0-orig,pos,unl,unl,unl,n/a,One man slips off a pole and spins as he bounces off a railing.,Some people behind the ship\nlsmdc3082_TITANIC1-38710,3975,\"Underwater, someone and someone hold hands as they tumble in the jostling currents. Someone\",grabs on to someone's life vest but is swept away by the turbulence.,comes down the hall.,\"'s surfboard hands drift back to her laotong as she steps out, clutching the boy with her hands.\",hikes away into the crowd.,unbuckles his seat belt and raises her red transparent hands as he missile strikes.,gold0-orig,pos,unl,unl,unl,unl,\"Underwater, someone and someone hold hands as they tumble in the jostling currents.\",Someone\nlsmdc3082_TITANIC1-38710,3972,Some people behind the ship try to swim clear as the massive propellers sink below the surface. Someone and someone,hold hands as they kneel beside one another.,\"fly over the tiles, landing on a fake boulder at one end.\",shoot out of the unisphere.,make his way to more feet from the edge.,climb through the tunnel legs.,gold1-reannot,unl,unl,unl,unl,unl,Some people behind the ship try to swim clear as the massive propellers sink below the surface.,Someone and someone\nlsmdc3082_TITANIC1-38710,3974,\"Someone and someone take deep gulps of air as the tail end of the ship sinks beneath the surface. Underwater, someone and someone\",hold hands as they tumble in the jostling currents.,gather in under a chair water.,jump into a silk section.,step through a doorway.,blasts a holiday gent.,gold0-reannot,pos,unl,unl,unl,unl,Someone and someone take deep gulps of air as the tail end of the ship sinks beneath the surface.,\"Underwater, someone and someone\"\nlsmdc3082_TITANIC1-38710,3965,\"One man bounces off a capstan before slamming into other people hanging on below. Her breath visible in the cold air, someone\",turns to the baker who crouches on the railing beside her.,\", someone and someone ride in the flames by the house.\",descends into her abandoned classroom.,catches a smile trick standing at the end of a highway.,turns to face the drones.,gold0-reannot,pos,unl,unl,unl,pos,One man bounces off a capstan before slamming into other people hanging on below.,\"Her breath visible in the cold air, someone\"\nlsmdc3082_TITANIC1-38710,3958,\"The last of the funnels topples over. As the front half of the Titanic rapidly fills with water and sinks, it\",pulls the back half into the air again.,\"passes him, along the river - deep shore.\",hurtle through the air toward the helipad.,grabs the space under someone's feet.,turns to marble into the water.,gold0-reannot,pos,unl,unl,unl,unl,The last of the funnels topples over.,\"As the front half of the Titanic rapidly fills with water and sinks, it\"\nanetv_uG_G4g6ixms,13641,A man is riding on a horse. He,runs after a calf and ties its legs.,is paddling down a slope off of the water.,grabs a calf in the air.,\"talks about the parallel bars, does several flips and tricks with jumps.\",is demonstrating the angles of a horse.,gold1-orig,pos,unl,unl,unl,unl,A man is riding on a horse.,He\nanetv_uG_G4g6ixms,13172,A man is on a horse on a farm next to a farmer. The horse,runs out of the gate.,is holding a clipboard.,is attached to an string around his calf.,gets too tied to the bull.,is kneeling on the ground.,gold0-orig,pos,unl,unl,unl,pos,A man is on a horse on a farm next to a farmer.,The horse\nanetv_uG_G4g6ixms,13642,He runs after a calf and ties its legs. He then,gets back up onto his horse.,returns to the gate and ties it up.,jumps from the edge and lands on the bottom.,jumps off the horse and walks away.,gets on and ties the calf.,gold1-orig,pos,unl,unl,unl,pos,He runs after a calf and ties its legs.,He then\nanetv_uG_G4g6ixms,13643,He then gets back up onto his horse. Another man,unties the legs of the calf.,sits on the floor.,is seen doing black with the shaver and shaving his head with a rag.,walks up to a skateboard on his shirt for the second time.,is joined with other players and a man who are shoveling a big track with a small sticks.,gold0-orig,pos,unl,unl,unl,unl,He then gets back up onto his horse.,Another man\nanetv_uG_G4g6ixms,13174,It stops and throws the man onto the ground. The small calf,lies on the ground as another man goes to help.,runs after the tug and keep going.,is seen running towards the person jumping off the beam.,is released and lands in a sand pit.,is in position behind him.,gold1-orig,pos,unl,unl,pos,pos,It stops and throws the man onto the ground.,The small calf\nanetv_uG_G4g6ixms,13173,The horse runs out of the gate. It,stops and throws the man onto the ground.,falls on the rope platform.,grabs the climbing rope.,'s in her hotel.,,gold0-orig,pos,unl,unl,unl,n/a,The horse runs out of the gate.,It\nlsmdc0030_The_Hustler-65126,3927,\"Defeated, someone turns and goes up the stairs. The men\",return to the table to continue their game.,find themselves at the campsite.,pose outside a building's front window.,leave and enter the office.,,gold0-orig,pos,unl,unl,pos,n/a,\"Defeated, someone turns and goes up the stairs.\",The men\nlsmdc0030_The_Hustler-65126,3928,\"The men return to the table to continue their game. Someone, deeply satisfied,\",puts on his coat and sits to watch the action.,turns to someone and gives their uncle a loaded glance.,takes the check facing him.,stares at them as they leave the church.,leads someone into his office.,gold1-orig,pos,unl,unl,unl,pos,The men return to the table to continue their game.,\"Someone, deeply satisfied,\"\nlsmdc0030_The_Hustler-65126,3926,\"A stunned someone moves to the billiard table. Defeated, someone\",turns and goes up the stairs.,\"with a shotgun subtle, someone drops rises and finds her sparse audience.\",turns and presses his wand towards the glass.,gets to his feet.,\"turns to the surprisingly, young man then follows the briggs across.\",gold1-orig,pos,unl,unl,unl,unl,A stunned someone moves to the billiard table.,\"Defeated, someone\"\nlsmdc0030_The_Hustler-65126,3929,\"Someone, deeply satisfied, puts on his coat and sits to watch the action. A shaken someone\",flops into a leather swivel chair.,\"lowers the receiver to his ear while people talk on a street, as the music plays.\",lifts his eyes to reveal someone faces.,points to the mob then claps as hands come out.,,gold0-orig,pos,unl,unl,unl,n/a,\"Someone, deeply satisfied, puts on his coat and sits to watch the action.\",A shaken someone\nlsmdc0030_The_Hustler-65126,3930,A shaken someone flops into a leather swivel chair. A bucket of iced champagne,\"sits on the desk, ready to be emptied.\",is crawling on the boot.,leads through a busy house.,falls against the side of a closed fire.,spills on his back.,gold0-orig,pos,unl,unl,unl,unl,A shaken someone flops into a leather swivel chair.,A bucket of iced champagne\nlsmdc0030_The_Hustler-65126,3932,\"Someone puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him. Someone\",leans against a wall nearby.,\", someone cuddles her and they are up a lit ladder.\",\"gets up and looks down in the dark, right trunk of his forearm.\",claps and keeps taking his tea to the way to him.,\"is there, tall, seedy and gaunt.\",gold0-orig,pos,unl,unl,unl,pos,\"Someone puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him.\",Someone\nlsmdc0030_The_Hustler-65126,3933,Someone leans against a wall nearby. He,\"is quiet, morose.\",listens to the distant thud of the lake.,lies in his rear seat.,makes him a doll.,\"raises her eyebrows, then extends her hand.\",gold0-orig,pos,unl,unl,unl,unl,Someone leans against a wall nearby.,He\nlsmdc0030_The_Hustler-65126,3931,\"A bucket of iced champagne sits on the desk, ready to be emptied. Someone\",\"puffs on his cigarette as he looks at the impatient face of someone, slouching in the chair across from him.\",is on an alarm board.,puts the glove on her.,shoves the smoking floor out of the running driver side door.,\"comes toward him, reading his plan.\",gold0-reannot,pos,unl,unl,unl,unl,\"A bucket of iced champagne sits on the desk, ready to be emptied.\",Someone\nanetv_2OEa00knM9E,460,He then rides in on a horse and ropes up a calf with the rope. Several people,are shown riding in and roping up cattle while others watch on the side.,watch on his sides as the man tries to push him off.,are shown performing tricks with the trainers as well as pictures jumping.,ride around a bull while others watch on.,are in a black and green area.,gold1-orig,pos,unl,unl,pos,pos,He then rides in on a horse and ropes up a calf with the rope.,Several people\nanetv_2OEa00knM9E,459,A man is seen sitting on a horse with a rope in his hands. He then,rides in on a horse and ropes up a calf with the rope.,ties the calf while walking around and hitting their calf and posing around.,ties up another calf.,holds up the calf and begins riding the horse while looking to the camera.,,gold1-orig,pos,pos,pos,pos,n/a,A man is seen sitting on a horse with a rope in his hands.,He then\nlsmdc3032_HOW_DO_YOU_KNOW-2139,13412,\"Later in an apartment, someone makes a call. His girlfriend\",eyes him from behind a desk.,pulls out the phone.,mows open a stair rail by a laptop.,picks up her hand.,spreads on his face.,gold0-orig,pos,unl,unl,unl,unl,\"Later in an apartment, someone makes a call.\",His girlfriend\nanetv_nPTq63WtemI,4848,An older man is seen kneeling in the middle of a gym with several people around him. The man,pulls on a piece of exercise equipment working his upper arms back and fourth.,slides back and fourth while others watch on the side and continuing to play.,lowers a bow and shows the class falling himself in his hands.,begins cutting another boy down as well as walking around around the lawn.,is then seen walking into his arms performing and performs various shot.,gold0-orig,pos,unl,unl,unl,unl,An older man is seen kneeling in the middle of a gym with several people around him.,The man\nlsmdc0026_The_Big_Fish-62274,14209,Someone leans over so someone can sign a contract on his back. He,spots someone walking back into the tent.,grabs his jacket and takes a bite.,grabs a bouquet of golden roses.,shakes his head as if he is dying.,opens the front door and pulls them out.,gold0-orig,pos,unl,unl,unl,unl,Someone leans over so someone can sign a contract on his back.,He\nanetv_UgsqMLsPG0k,3416,The man walks back and forth smoothing the applied plaster. The man,walks to and turns off the camera.,grabs the rubber section of the carpet and pushes it.,makes a long jump back to the first class.,twists his legs and kneels up to a stage.,,gold1-orig,pos,unl,unl,unl,n/a,The man walks back and forth smoothing the applied plaster.,The man\nanetv_UgsqMLsPG0k,3415,The man then puts plaster on a base and applies it to the ceiling while on stilts. The man,walks back and forth smoothing the applied plaster.,uses an electric removal tool to wipe his shoe with a paper towel.,walks on the tiles and sits back and talks before panning back to the screen.,continues working on the tile while a man works on a wall.,,gold1-orig,pos,unl,unl,pos,n/a,The man then puts plaster on a base and applies it to the ceiling while on stilts.,The man\nanetv_UgsqMLsPG0k,3417,The man walks to and turns off the camera. We,see the ending title screen.,shoot over the side in one of the houses alone.,to the side of still holding the cat on his hand.,see see in the screen.,see a man interviewing the camera.,gold1-orig,pos,unl,unl,unl,pos,The man walks to and turns off the camera.,We\nanetv_yu1XjQUctiM,6513,A little boy is holding a tube of toothpaste. His mom,helps him put it on his toothbrush.,holds out a rag in front of him and his leg.,sits down and shakes his hand.,holds the finger up to the machine.,comes up behind him pushing her teeth.,gold0-orig,pos,unl,unl,unl,unl,A little boy is holding a tube of toothpaste.,His mom\nanetv_yu1XjQUctiM,7644,A boy is standing next to a sink in a bathroom. He,puts toothpaste on a toothbrush and begins brushing his teeth.,is standing down under the sink with a rag.,\"shows another baby washing dishes, and pauses to put them in the sink.\",is holding a camera while talking to the camera.,,gold0-orig,pos,unl,unl,pos,n/a,A boy is standing next to a sink in a bathroom.,He\nanetv_yu1XjQUctiM,6514,His mom helps him put it on his toothbrush. The boy then,uses the brush to brush his teeth.,begins shaving his bangs then.,gives a group of kids playing in the playground.,pours some food out of the table.,,gold1-orig,pos,unl,unl,unl,n/a,His mom helps him put it on his toothbrush.,The boy then\nanetv_yu1XjQUctiM,7645,He puts toothpaste on a toothbrush and begins brushing his teeth. He,spits into the sink in front of him.,shows how to use it and wash it off next to him soap negative.,continues playing instruments while others watch on the side.,speaks to the camera while he continues to speak to the camera.,finishes and puts his face over the sink.,gold1-orig,pos,unl,unl,unl,pos,He puts toothpaste on a toothbrush and begins brushing his teeth.,He\nanetv_IcfWEKjl_AY,14037,Other kids slide on another slide in the playground. A toddler,\"climbs a jungle gym, and then go down the slide.\",slide down the ramp with the jump of their bike.,slide down the slide again and slide down the slide.,walks through the playground doing their routines.,lets girls and slide down the slide.,gold1-orig,pos,unl,pos,pos,pos,Other kids slide on another slide in the playground.,A toddler\nanetv_IcfWEKjl_AY,14036,A boy stands from the bottom of a slide and walk away. Other kids,slide on another slide in the playground.,are standing and wearing canoes in the water watching baby face on the beach.,and the kids are sliding going down the slide.,\"pull back, then the boy stands up and.\",start to smile at him.,gold1-orig,pos,unl,unl,unl,pos,A boy stands from the bottom of a slide and walk away.,Other kids\nanetv_v7o9uSu9AVI,4311,He swings his legs and leaps with his arms across the parallel bars. A man,does dips on the parallel bars.,grabs it and does his routine.,\"spins and spins himself around, jumping onto the air.\",is pushed from a pole.,watches a man break into a racetrack.,gold1-orig,pos,unl,pos,pos,pos,He swings his legs and leaps with his arms across the parallel bars.,A man\nanetv_v7o9uSu9AVI,4315,A man does dips with his body in front of the bar and legs swoops underneath the bar. He then,\"does pushups on the parallel bars, by going down, pushing forward, then up.\",mounts him on the ground and continues to get the daze back with the camera.,\"does a slow rise from every floor, then does the stands before dropping the bars of a video location which he seems.\",stands up and spins to celebrate the tips.,,gold0-orig,pos,unl,unl,pos,n/a,A man does dips with his body in front of the bar and legs swoops underneath the bar.,He then\nanetv_v7o9uSu9AVI,4325,He switches to doing a head stand and holds. A different man,starts to swing his body from under the bars and presses himself up and over the bars.,explains to the man how to pull of the bike and take on tire and special jack.,shakes the object multiple times.,stands on stage showing how to remove your abdomen.,talks about how to remove your shoes.,gold0-orig,pos,unl,unl,unl,unl,He switches to doing a head stand and holds.,A different man\nanetv_v7o9uSu9AVI,4323,He then rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars. He,begins to do shoulder stands on the bars.,makes a split with the fellow punch and begins moving back with the two before going out.,\"falls sideways on the ground, dropping past his shoulders like the spring aid on top step.\",steps onto his own shoulders and walks away.,\"builds behind the ball, then lifts it in in the air and somersaults hits the ground.\",gold0-orig,pos,unl,unl,unl,unl,He then rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars.,He\nanetv_v7o9uSu9AVI,4314,\"He then starts to do dips down to his armpits on the parallel bars called Russian Dips, while keeping his legs in the air. A man\",does dips with his body in front of the bar and legs swoops underneath the bar.,is only underwater shooting wide eyes to make sure that he does not see the glider.,\"is seen wearing a red, top scarf and reading a corn white tool.\",\"is explaining his deck called the camera after he comes, doing the exercises.\",is then seen standing on the floor near a very well mat doing the high rope.,gold0-orig,pos,unl,unl,unl,unl,\"He then starts to do dips down to his armpits on the parallel bars called Russian Dips, while keeping his legs in the air.\",A man\nanetv_v7o9uSu9AVI,4316,\"He then does pushups on the parallel bars, by going down, pushing forward, then up. He\",\"begins to do pushups, with his knees tucked, with the parallel bars.\",continue to enter into the walls.,hands leisurely jumping.,alternates up and down the track before a small bar.,,gold1-orig,pos,unl,unl,unl,n/a,\"He then does pushups on the parallel bars, by going down, pushing forward, then up.\",He\nanetv_v7o9uSu9AVI,4322,A different man brings his legs straight up into a V - shape on the bars. He then,rests his elbows on the bars and swings his body perpendicular to the bars then parallel to the bars.,jumps up and threw the bar into the air.,uses a knob to shoot the darts at a skate board.,begins brushing a stuffed thing and wriggles it correctly over to continue.,hops around for a work end by another cut and knock the hits instead high.,gold0-orig,pos,unl,unl,unl,unl,A different man brings his legs straight up into a V - shape on the bars.,He then\nanetv_v7o9uSu9AVI,4313,Another man does dips down to his elbows on the parallel bars. He then,\"starts to do dips down to his armpits on the parallel bars called russian dips, while keeping his legs in the air.\",flips the puck and lands at the mat while his mom stands up.,takes the ball up swinging himself around.,sits up and performs long jumps from break landing.,jumps off his feet and jumps as well.,gold1-orig,pos,unl,unl,unl,pos,Another man does dips down to his elbows on the parallel bars.,He then\nanetv_v7o9uSu9AVI,4307,A strong man is lifting his legs up and down across parallel bars. He,begins to do shrugs on the bars.,is suspended on the ropes as he swinging onto the beam.,gets up and moves back to the bars.,is legged on the rope stretching on the ground.,continues several flips as they go back and forth on the mat.,gold0-orig,pos,unl,unl,unl,unl,A strong man is lifting his legs up and down across parallel bars.,He\nanetv_v7o9uSu9AVI,4317,\"He begins to do pushups, with his knees tucked, with the parallel bars. A different man\",\"does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars.\",sits on the murky white mat on his feet.,is giving a tutorial on how to play it properly and wrapping.,is shown sitting on a stool to adjust the man's leg.,,gold0-orig,pos,unl,unl,pos,n/a,\"He begins to do pushups, with his knees tucked, with the parallel bars.\",A different man\nanetv_v7o9uSu9AVI,4321,A different man keeps his legs straight out and moves them across each bar. A different man,brings his legs straight up into a v - shape on the bars.,introduces from the next time that man introduces the practice.,walks on the ground with weights in his hand and squatting again doing a very high jump.,is seen close to the camera and points throwing knives.,,gold0-orig,pos,unl,unl,unl,n/a,A different man keeps his legs straight out and moves them across each bar.,A different man\nanetv_v7o9uSu9AVI,4310,He circles around on the edge of the bars with his arms. He,swings his legs and leaps with his arms across the parallel bars.,\"walks back and forth, kicking and catching.\",\"lifts the mop to the ground, and kneels down.\",repeats it many times.,\"jumps off the beam, slamming down.\",gold0-orig,pos,unl,unl,pos,pos,He circles around on the edge of the bars with his arms.,He\nanetv_v7o9uSu9AVI,4319,\"When he reaches the end, he tucks in his knees and lifts his body up and perpendicular to the bars. He then\",does knee and leg raises.,lowers the key and slowly starts it down the tower.,grabs the hoop of his and drops the hoop of his foot before briefly cupping the table.,gets on his knees to push aside his weight.,hops up and poses as he adjusts how they can feed the surfboard.,gold0-orig,pos,unl,unl,unl,unl,\"When he reaches the end, he tucks in his knees and lifts his body up and perpendicular to the bars.\",He then\nanetv_v7o9uSu9AVI,4324,He begins to do shoulder stands on the bars. He,switches to doing a head stand and holds.,picks up the board and starts doing different springs.,does a handstand and jumps on the bar using his arms.,swings on parallel bars while talking.,takes back and spins the horse as the people are watching in the background.,gold1-orig,pos,unl,unl,unl,unl,He begins to do shoulder stands on the bars.,He\nanetv_v7o9uSu9AVI,4309,He starts to walk his body across with his hands. He,circles around on the edge of the bars with his arms.,uses his hand to scratch her right eye.,\"brushes his hair, and looks up to see the man bouncing.\",heads forward and dropping himself onto the piece of stuff.,,gold0-orig,pos,unl,unl,pos,n/a,He starts to walk his body across with his hands.,He\nanetv_v7o9uSu9AVI,4312,A man does dips on the parallel bars. Another man,does dips down to his elbows on the parallel bars.,stands ready to see who jumps in the lift.,jumps again and throws another follow and misses.,hugs a man and extends his arms.,talks to a camera.,gold1-orig,pos,unl,unl,unl,pos,A man does dips on the parallel bars.,Another man\nanetv_v7o9uSu9AVI,4318,\"A different man does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars. When he reaches the end, he\",tucks in his knees and lifts his body up and perpendicular to the bars.,\"falls back, slamming his partner down into the ground.\",inhales as he dives backwards off the seats.,lands on a male mat and balances on his skates.,\"spins his leg so that he jumps sideways, flipping several times on the bar.\",gold0-orig,pos,unl,unl,unl,pos,\"A different man does leg dips, swings his legs up and around each parallel bar and pushes forward across the parallel bars.\",\"When he reaches the end, he\"\nanetv_v7o9uSu9AVI,4320,He then does knee and leg raises. A different man,keeps his legs straight out and moves them across each bar.,does the spins in times before going backwards with his feet up.,sits in disarray and styles his arms.,is seen speaking to the camera and softly begins to speak with the other.,,gold0-reannot,pos,unl,unl,unl,n/a,He then does knee and leg raises.,A different man\nanetv_-qtdjw3MYcY,2440,A girl is sitting down in a chair. Another person,is standing behind her.,is holding her help.,is standing outside shorts playing her boards.,begins chopping them down.,is sitting in front of them.,gold0-orig,pos,unl,unl,unl,pos,A girl is sitting down in a chair.,Another person\nanetv_-qtdjw3MYcY,2441,Another person is standing behind her. The woman behind her,begins braiding her hair.,grabs his waist and bends them at his neck.,is playing the guitar.,turned away to the camera.,begins doing some spins.,gold0-reannot,pos,unl,pos,pos,pos,Another person is standing behind her.,The woman behind her\nanetv_4XTJzFjjFp0,5411,The person then begins using the tools on the tire to create bars going around it. He,continues gluing down the sides on the wheel as well as flipping it over on the side.,begins to jack the bicycle foot while moving the car back into the process while spinning it around with the hands up.,continues speaking the while and shows how the energy works and then takes a seat for people.,shows pictures of made and puts them out on the side.,,gold0-orig,pos,unl,unl,unl,n/a,The person then begins using the tools on the tire to create bars going around it.,He\nanetv_4XTJzFjjFp0,13058,A man is at a table inside a shop. He,is showing the components of a bike wheel.,holds up a steel ingredient.,is involved in a game of indoor soccer.,is then seen playing a game of poker.,lifts the barbell up onto his shoulders before facing him.,gold0-orig,pos,unl,unl,pos,pos,A man is at a table inside a shop.,He\nanetv_4XTJzFjjFp0,5410,A bike wheel is seen on a table as well as various objects and tools. The person then,begins using the tools on the tire to create bars going around it.,continues cutting and putting the paint in and giving out views as well as products and scotch.,mixes up the white ink ingredients and shows off several shots of the machine.,shows the bike wheel continuously and uses a tool to help to rip the tire off the roof.,takes the alcohol slow and throws begins to speak while speaking to camera while moving away.,gold1-reannot,pos,unl,unl,unl,unl,A bike wheel is seen on a table as well as various objects and tools.,The person then\nanetv_4XTJzFjjFp0,13059,He is showing the components of a bike wheel. He,takes some parts off and puts them back on again.,pretends to straighten the shingles.,circles over and along the water with a rope.,attaches the screws to the roof of the blades.,starts putting items into the bike.,gold0-reannot,pos,unl,unl,pos,pos,He is showing the components of a bike wheel.,He\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72738,7133,Someone walks up a grassy hillock. Someone,lags a little way behind.,sits nearby glancing fondly at someone's four - shaped palm.,\"holds out a hand to someone's trouser leg, then gestures to someone and her mother.\",drags the lift from his hand and dashes toward his body!,\"dons a black coat, with rude purchases, approaches a pub where someone plays a game of iron.\",gold0-orig,pos,unl,unl,unl,unl,Someone walks up a grassy hillock.,Someone\nlsmdc1002_Harry_Potter_and_the_Half-Blood_Prince-72738,7134,\"Someone lags a little way behind. Ahead, he\",\"sees someone, his dog, and someone by the corpse of a colossal spider.\",spots the human someone place someone.,glances up and sees a wide grassy underside.,lifts the hood over the top.,,gold1-reannot,pos,unl,unl,unl,n/a,Someone lags a little way behind.,\"Ahead, he\"\nlsmdc1008_Spider-Man2-75055,1820,A taxi stops in front of someone and he swings round in front of it. He,sees the lights change and a bus passes in front.,\"climbs inside, then breaks into a run.\",picks up his hat from the floor and leaves the room.,stands in getting out of his way.,shoots him from the car and sprints through it.,gold0-orig,pos,unl,unl,unl,unl,A taxi stops in front of someone and he swings round in front of it.,He\nlsmdc1008_Spider-Man2-75055,1825,He tosses the pizzas and swings down to pluck kids away from truck. He,sets them gently on the ground.,is now at home.,climbs through the outside rock - walled hallway in a kids yard where a skylight lies on the street.,nimbly knocks the dish to pieces.,,gold0-orig,pos,unl,unl,unl,n/a,He tosses the pizzas and swings down to pluck kids away from truck.,He\nlsmdc1008_Spider-Man2-75055,1831,\"Inside the building someone landed on, a receptionist sits at a desk in a hallway with black - and - white checkered flooring. She\",looks round on hearing the noise and sees a cupboard door opening.,\"looks down at the floor, rises a little from the floor.\",\"plaques and social company includes an electronic panel, where a sign reads, library, papers, company class forces, website.\",\"glasses patterned old nail torches, the bare - chested policeman approaches someone and throws him past the neon line window.\",angrily sets a tap glasses.,gold0-orig,pos,unl,unl,unl,unl,\"Inside the building someone landed on, a receptionist sits at a desk in a hallway with black - and - white checkered flooring.\",She\nlsmdc1008_Spider-Man2-75055,1837,\"The receptionist eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans. He\",strides up to the desk and lays the pizzas on it.,lifts it down the counter and stows it in his mouth.,\"climbs the chain, trying to contain the machine as he unties someone's bag.\",runs out of the upstairs compartment.,,gold0-orig,pos,unl,unl,unl,n/a,\"The receptionist eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans.\",He\nlsmdc1008_Spider-Man2-75055,1836,It's some spider's web. The receptionist,\"eyes him curiously as he pulls the stretchy, silky substance off and stuffs it in the back pocket of his jeans.\",takes out a casino card.,is as much disgusted as someone.,looks at someone.,goes to a desk and stands.,gold0-orig,pos,unl,unl,pos,pos,It's some spider's web.,The receptionist\nlsmdc1008_Spider-Man2-75055,1833,\"Chewing her gum intently she watches as he struggles to push the mops and brushes back inside. With one final thrust, someone\",pushes back the brooms and slams the door.,marches into the sunroom.,looks up onto the lock.,slides up one of the dolls.,puts them in the key.,gold0-orig,pos,unl,unl,unl,unl,Chewing her gum intently she watches as he struggles to push the mops and brushes back inside.,\"With one final thrust, someone\"\nlsmdc1008_Spider-Man2-75055,1840,\"He presses another button, gives the receptionist a friendly smile and a wave. Someone\",\"stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet.\",whizzes past with someone.,watches with listless expressions.,drifts toward the adjacent office building where a soldier opens a windowed door.,,gold0-orig,pos,unl,unl,pos,n/a,\"He presses another button, gives the receptionist a friendly smile and a wave.\",Someone\nlsmdc1008_Spider-Man2-75055,1834,\"With one final thrust, someone pushes back the brooms and slams the door. He\",\"picks up the pizza boxes, then notices something stuck to the top.\",finds the grail and throws it towards the building.,\"makes a massive leap to the ground, a cab pulls up and he kneels down.\",makes a sound on the sound.,leaps into a wooden stairway.,gold0-orig,pos,unl,unl,unl,pos,\"With one final thrust, someone pushes back the brooms and slams the door.\",He\nlsmdc1008_Spider-Man2-75055,1823,\"A guy watches the alley entrance. Soaring his way through the skyscrapers, the costumed character\",is far above land.,has an washington emblem.,holds someone and a footman over to someone as someone and a bystander pass.,carries the entire town along past one a thick jungle of town.,drones into a small pocket with witches and tunnels.,gold0-orig,pos,unl,unl,unl,unl,A guy watches the alley entrance.,\"Soaring his way through the skyscrapers, the costumed character\"\nlsmdc1008_Spider-Man2-75055,1827,\"A man steps out onto a balcony and turns to see the pizzas on the balustrade. As the man on the balcony teases out a slice of pizza, someone\",\"swishes past, grabbing the pizzas.\",storms back for captain.,\"stands on his hind legs, checking his clear drink.\",pulls beneath the iron roof shirt.,picks up the bag.,gold0-orig,pos,unl,unl,unl,unl,A man steps out onto a balcony and turns to see the pizzas on the balustrade.,\"As the man on the balcony teases out a slice of pizza, someone\"\nlsmdc1008_Spider-Man2-75055,1817,\"Traffic is at a standstill. Someone, on his moped,\",weaves his way through cars and yellow cabs.,is being knocked on an woods.,ends up welding a few sheets.,\"turns around and crashes towards front bars, spins his way.\",,gold0-orig,pos,unl,unl,pos,n/a,Traffic is at a standstill.,\"Someone, on his moped,\"\nlsmdc1008_Spider-Man2-75055,1841,\"Someone stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet. He\",rips the joe's pizza sticker from it.,takes stands and walks out of the class.,lifts the creature's hand in the air and someone stalks towards it.,\"glares at someone, who ignites a fire.\",,gold0-orig,pos,unl,unl,unl,n/a,\"Someone stares at the eager, bright - eyed youth, steps up to him and reaches for someone's helmet.\",He\nlsmdc1008_Spider-Man2-75055,1822,\"Now, on foot, someone runs into an alley, ripping off his crash helmet as he does so. A guy\",watches the alley entrance.,pulls someone up as someone pumps his clocks off the rooftop.,ducks laying on a scaffold between himself and a woman.,transfers iron medal over his head then presses a freight elevator.,slips out of the shower.,gold1-orig,pos,unl,unl,unl,unl,\"Now, on foot, someone runs into an alley, ripping off his crash helmet as he does so.\",A guy\nlsmdc1008_Spider-Man2-75055,1821,He sees the lights change and a bus passes in front. He,looks up at the clock.,touches his restrained wrist.,has someone resting on his hands and knee with the glowing equipment.,glances across the bay.,leans out and takes a seat beside him.,gold1-orig,pos,unl,unl,pos,pos,He sees the lights change and a bus passes in front.,He\nlsmdc1008_Spider-Man2-75055,1839,He steps into an elevator. He,\"presses another button, gives the receptionist a friendly smile and a wave.\",steps into the door.,holds out his cell phone.,drops down onto a ramp.,reaches out to touch her.,gold0-orig,pos,unl,unl,unl,pos,He steps into an elevator.,He\nlsmdc1008_Spider-Man2-75055,1838,\"His face unflinching, someone unties the two fasteners keeping the pizzas together, one after the other. He\",\"glances up at the receptionist, then walks back towards the janitor's cupboard he emerged from.\",\"turn the knob, someone stops by metal strands.\",\"stops the car door and hangs back the grenade in the clown, passing another wooden rail of the quad.\",removes a potato from a brown bag and finds a third time.,staggers lies asleep and wakes.,gold1-orig,pos,unl,unl,unl,unl,\"His face unflinching, someone unties the two fasteners keeping the pizzas together, one after the other.\",He\nlsmdc1008_Spider-Man2-75055,1830,\"The man goes to eat the pizza slice as it's whipped from his hand by a web. Inside the building someone landed on, a receptionist\",sits at a desk in a hallway with black - and - white checkered flooring.,and pets a cat.,confronts someone as someone sprints someone.,gathers up his things and walks towards him.,sits in front of his book with his mouth agape.,gold0-reannot,pos,unl,unl,pos,pos,The man goes to eat the pizza slice as it's whipped from his hand by a web.,\"Inside the building someone landed on, a receptionist\"\nlsmdc1008_Spider-Man2-75055,1832,She looks round on hearing the noise and sees a cupboard door opening. Chewing her gum intently she,watches as he struggles to push the mops and brushes back inside.,drops her phone down and answers it.,finds someone still lurking in the shadows.,glances at someone standing on an upstairs bed.,continues to climb up the stairs.,gold0-reannot,pos,unl,unl,unl,unl,She looks round on hearing the noise and sees a cupboard door opening.,Chewing her gum intently she\nlsmdc1008_Spider-Man2-75055,1826,He sets them gently on the ground. A man,steps out onto a balcony and turns to see the pizzas on the balustrade.,stares at a poster.,pulls him across the street to his small boy who moves his arms and lets him go.,is seen rubbing the roof of a building with a hose.,whisks a blonde into the window.,gold1-reannot,unl,unl,unl,unl,unl,He sets them gently on the ground.,A man\nlsmdc1008_Spider-Man2-75055,1835,\"He picks up the pizza boxes, then notices something stuck to the top. It\",'s some spider's web.,comes to an end.,ambles along a sofa in front of the colonial house house.,\"stops from the curb, taking a picture of him.\",tips over the convenience room and collides with the toy ball.,gold0-reannot,pos,unl,unl,unl,unl,\"He picks up the pizza boxes, then notices something stuck to the top.\",It\nlsmdc1008_Spider-Man2-75055,1818,\"Someone, on his moped, weaves his way through cars and yellow cabs. A taxi\",pulls out in front of someone.,crosses a drop road into the building and off the road.,makes him way out.,lands in a walkway overlooking the street.,skids at the curb and parks.,gold1-reannot,pos,unl,unl,unl,pos,\"Someone, on his moped, weaves his way through cars and yellow cabs.\",A taxi\nlsmdc3047_LIFE_OF_PI-22864,19757,\"Later, someone tumbles off the side and grabs onto a rope connected to the bow. Someone\",struggles with the boat.,reaches to pull the plug in the pestle.,pushes it up into someone's neck before it lands on his face.,remains armed as someone arrives.,runs down the corridor and stops.,gold0-orig,pos,unl,unl,unl,unl,\"Later, someone tumbles off the side and grabs onto a rope connected to the bow.\",Someone\nlsmdc3047_LIFE_OF_PI-22864,19759,\"Beyond the shore line, a jungle looms in the distance. Someone\",collapses onto the sand as the boat sways with the waves.,pulls someone to a stop tread.,chases people across the desert.,pats someone on the shoulder.,,gold0-orig,pos,unl,unl,pos,n/a,\"Beyond the shore line, a jungle looms in the distance.\",Someone\nlsmdc3047_LIFE_OF_PI-22864,19760,\"Someone collapses onto the sand as the boat sways with the waves. Later, someone lies prone on the beach, his arms out\",stretched from his sides.,to legs.,tightly draped around his waist.,propped by the cold clouds.,\"shaking as he turns toward the churning waters, wearing a white cap.\",gold0-orig,pos,unl,unl,unl,pos,Someone collapses onto the sand as the boat sways with the waves.,\"Later, someone lies prone on the beach, his arms out\"\nlsmdc3047_LIFE_OF_PI-22864,19756,\"The boat floats into the distance. Later, someone\",tumbles off the side and grabs onto a rope connected to the bow.,moves through the farm gate and climbs a wide pathway spanning the open double peer.,tosses the ship over the shore and sinks into wheelbarrow life below.,plays on paddling boards.,twitches a shy smile.,gold1-orig,pos,unl,unl,pos,pos,The boat floats into the distance.,\"Later, someone\"\nlsmdc3047_LIFE_OF_PI-22864,19767,He stares into the jungle. He,stares and cries as they carry him away.,runs up and down on the surfboard as another boat comes from the scene.,peers down into the watery hole.,shakes his head back and stands his frozen.,are in the dry woods as they creep and look towards someone.,gold1-reannot,pos,unl,unl,unl,unl,He stares into the jungle.,He\nlsmdc3047_LIFE_OF_PI-22864,19762,Someone looks up as Richard Parker hops over him from the lifeboat. The tide,washes over the tiger's claws.,gets turned pulling towards the long dock.,walks past the man and traveling through the water toward a rocky swell.,is lying next to him.,,gold1-reannot,unl,unl,unl,unl,n/a,Someone looks up as Richard Parker hops over him from the lifeboat.,The tide\nlsmdc3047_LIFE_OF_PI-22864,19765,\"He takes a long breath and blinks. On the beach, someone\",struggles to keep his head up but collapses.,glances down rides the carriage.,sits on a flat canvas and someone looks over his shoulder.,'s wind - father is standing beside him.,\"fountain the crowd to his kids, and rohan before entering.\",gold0-reannot,pos,unl,unl,unl,unl,He takes a long breath and blinks.,\"On the beach, someone\"\nlsmdc3047_LIFE_OF_PI-22864,19758,\"Someone struggles with the boat. Beyond the shore line, a jungle\",looms in the distance.,\"is blocked and: see is someone, floating under the water.\",\"is ripped from the water, a blue raft tracks up from its crest.\",dissipates old vials from a lagoon.,seems to have a city touch.,gold0-reannot,pos,unl,unl,unl,unl,Someone struggles with the boat.,\"Beyond the shore line, a jungle\"\nlsmdc3047_LIFE_OF_PI-22864,19763,The tiger awkwardly ambles across the sand. Sand,covers someone's face as he peers at the beast.,crawls onto the field.,\"scales the steps, swoops behind it, then sees the boy in his oversized suit.\",\"his temple, he finds a smile in his features.\",starts to pace as it scuttles beneath the swelling base.,gold0-reannot,pos,unl,unl,unl,unl,The tiger awkwardly ambles across the sand.,Sand\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49130,18396,\"Someone takes someone, with her doll, onto his lap. He\",does a little take.,brings him a case of liquor.,stands close to him.,yank it from her neck and try to suppress it.,fiddles with her hair and gives her a puzzled kiss.,gold0-orig,unl,unl,unl,unl,pos,\"Someone takes someone, with her doll, onto his lap.\",He\nlsmdc0007_DIE_NACHT_DES_JAEGERS-49130,18395,Someone holds up both hands to someone. Someone,looks back at his hands.,blows her fingers towards someone's coat so that it blows out.,\"stumbles, march slowly towards the black and white gates.\",puts back shaking hands.,slips off the cloak.,gold0-reannot,pos,unl,unl,pos,pos,Someone holds up both hands to someone.,Someone\nanetv_JI5_cMwgnxI,10478,He then used a liquid fertilizer on the trees and plants to fortify them. He finally,waters the trees and plants with a hose to complete the process.,takes a deep measuring drum to describe what he is saying about his actions.,starts cutting out sand and sanding up into a series of sections.,grabs several more roots to wrap in the ends.,tugs all the empty washed piece.,gold0-orig,pos,unl,unl,unl,unl,He then used a liquid fertilizer on the trees and plants to fortify them.,He finally\nanetv_N1JcXEim40g,12174,\"She mounts the beam, then does several flips and hand springs over the bar. She\",\"dismounts, raising her arms in the air.\",faces her the rigorous as the crowd claps.,dismounts by jumping up and flipping times before dismounting.,is running in the chair that is standing in the air.,does several stunts and lands on the parallel bar.,gold1-orig,pos,unl,unl,unl,pos,\"She mounts the beam, then does several flips and hand springs over the bar.\",She\nanetv_N1JcXEim40g,12173,A woman is standing outside a beam. She,\"mounts the beam, then does several flips and hand springs over the bar.\",\"is jumping around a beam, attempting to measure the throw.\",is doing gymnastics in front of the ball.,begins hopping to the sink while holding the cat.,puts its legs up to see how far he is best to pole your black shoes.,gold0-reannot,pos,unl,unl,unl,unl,A woman is standing outside a beam.,She\nanetv_ZGnnFIDJjaY,13327,The sitting man gets up and puts lotion on the man who approached. Five guys,are laying on the beach when a woman approaches them.,ride on a stop playing.,shine their eyes on catamarans.,stand on the floor on stilts.,wrestle while the man on the left wins and laughs.,gold0-orig,pos,unl,unl,pos,pos,The sitting man gets up and puts lotion on the man who approached.,Five guys\nanetv_ZGnnFIDJjaY,13326,A woman and a man are sitting on a towel at the beach and a man approaches. The sitting man,gets up and puts lotion on the man who approached.,lifts a hanging layer on his facial hair.,proceeds to surf on the boy's face with water.,pulls a rock from his raft while into the camera.,receives a medal and talks to an animal.,gold0-orig,pos,unl,unl,unl,unl,A woman and a man are sitting on a towel at the beach and a man approaches.,The sitting man\nanetv_ZGnnFIDJjaY,13328,Five guys are laying on the beach when a woman approaches them. One man,gets up and applies lotion to the womans back.,begins to go wearing an yoga kit.,onlooker the person watching wave moves through in the foreground.,is sitting in the dance stands.,places the device near her face.,gold0-orig,pos,unl,unl,unl,pos,Five guys are laying on the beach when a woman approaches them.,One man\nanetv_7RDn5qTQquE,8237,He is showing different stances and swings with his racquet. He,is pretending to hit a ball against the wall.,throws the ball up and down while dancing.,puts the harmonica in his indoor hand.,gets up and throws the wall.,continues to do the hoops and dismounts.,gold0-orig,pos,unl,unl,unl,unl,He is showing different stances and swings with his racquet.,He\nanetv_7RDn5qTQquE,8771,A man in an orange shirt is playing wall ball. A person,is sitting on a bench behind him.,stands to the corner.,is kneeling on the ice.,is talking on a table.,is knocking for the camera when you see him.,gold0-orig,pos,unl,unl,unl,unl,A man in an orange shirt is playing wall ball.,A person\nanetv_7RDn5qTQquE,8236,A man is inside a racquetball court. He,is showing different stances and swings with his racquet.,is using the ice to throw the ball.,uses a large hammer to hit the ball.,throws the ball over a net.,is doing several short steps while a group of people are dancing together behind him.,gold0-orig,pos,unl,unl,unl,unl,A man is inside a racquetball court.,He\nlsmdc3063_SOUL_SURFER-31216,18521,\"The girl flops down on her bed, her head at its foot. She\",holds up a barbie doll.,bends over and snuggles down on top of her.,awakens off her bed.,tosses the towel over someone's shoulder.,beams wistfully and holds her hips.,gold0-orig,pos,unl,unl,unl,pos,\"The girl flops down on her bed, her head at its foot.\",She\nlsmdc3063_SOUL_SURFER-31216,18522,\"She holds up a Barbie doll. Bracing it between her legs, she\",brushes the doll's hair back then snaps off the left arm.,morphs into a imitate stance.,shoves her back to the doll's face and stares at it.,douses her face then circles all around herself.,,gold0-orig,pos,unl,unl,unl,n/a,She holds up a Barbie doll.,\"Bracing it between her legs, she\"\nlsmdc3063_SOUL_SURFER-31216,18525,Someone keeps her gaze fixed on the modified doll as her mother looks down at her. She,lets it drop to her chest and blinks back tears.,\"gut - opens someone's enters in the doctor's office, and then seals the cup of tea with both hands.\",shifts her place in the kitchen then takes out an album before leaves the room.,leans back from their dormitory and notices someone dipping him out of the frame.,\"smiles, reaches down again and takes her necklace out of the pocket.\",gold0-orig,pos,unl,unl,unl,unl,Someone keeps her gaze fixed on the modified doll as her mother looks down at her.,She\nlsmdc3063_SOUL_SURFER-31216,18524,Someone turns her head and finds her mother watching compassionately from a few feet away. Someone,keeps her gaze fixed on the modified doll as her mother looks down at her.,looks around nervously as he sees his ambulance landing in the corner of the house.,\"gives a smug nod, picks up her unopened stub to reveal someone's face, and lifts her apron.\",drags someone out of an alley.,backs away as someone purses his lips.,gold0-orig,pos,unl,unl,unl,pos,Someone turns her head and finds her mother watching compassionately from a few feet away.,Someone\nlsmdc3063_SOUL_SURFER-31216,18523,\"Bracing it between her legs, she brushes the doll's hair back then snaps off the left arm. Someone\",turns her head and finds her mother watching compassionately from a few feet away.,holds out colorful balls and reads.,\"eyes something over her face, then looks down, her jaw slack.\",spins and brushes her bangs.,\"in the master of, between two swings of cheerleader shades, someone kicks at a lamp, while stands.\",gold1-reannot,unl,unl,unl,unl,unl,\"Bracing it between her legs, she brushes the doll's hair back then snaps off the left arm.\",Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11075,Someone has aged significantly since we last saw him. Someone,is turning the neatly inscribed title page of a red leather bound journal.,collides with the bottles.,start walking up the stairs.,hurries to the monkey platform.,is standing at the altar.,gold0-orig,pos,unl,unl,unl,pos,Someone has aged significantly since we last saw him.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11076,\"Someone looks at Page after page of beautiful Handwriting, with intricate Maps and Drawings. He\",is sitting with someone on a terrace overlooking a waterfall.,sways as someone holds his bulky brush as he prepares to leave.,becomes skeletal and curled.,begins to describe how to attach a unconscious knife.,takes box from a hand rest champagne street lit bar.,gold1-orig,pos,unl,unl,unl,unl,\"Someone looks at Page after page of beautiful Handwriting, with intricate Maps and Drawings.\",He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11074,He breaks in to a broad grin as someone rushes forward to embrace him. Someone,has aged significantly since we last saw him.,glares instead and punches him through the shoulder.,dashes down out of the shadows.,receives the planner partner his coach.,leads him to a balcony.,gold0-reannot,pos,unl,unl,unl,pos,He breaks in to a broad grin as someone rushes forward to embrace him.,Someone\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11073,Someone looks past someone smiling. He,breaks in to a broad grin as someone rushes forward to embrace him.,\"looks to his right, pointing it.\",locomotive drags hard towards the vessel.,ushered drives against the river.,is staring at one of the ugly roofs above the street.,gold0-reannot,pos,unl,unl,unl,pos,Someone looks past someone smiling.,He\nlsmdc0024_THE_LORD_OF_THE_RINGS_THE_FELLOWSHIP_OF_THE_RING-60159,11077,He is sitting with someone on a terrace overlooking a Waterfall. Someone,turns a page.,is on a display shelf above the coffee store.,streams down the sidewalk behind him.,topples on the beach.,,gold0-reannot,pos,unl,unl,pos,n/a,He is sitting with someone on a terrace overlooking a Waterfall.,Someone\nanetv_vdTisVMhW7I,12834,A box is taken out and several tools are laid out on the desk. The man then,takes the necessary tools and begins to assemble the bike.,uses a tool to screw the shingles onto the metal lock.,demonstrates how to move the car and shakes the tire on the tree in the end.,cleans it up and showing off a finished result.,grabs a mug and knocks liquid over her screams.,gold0-orig,pos,unl,unl,unl,unl,A box is taken out and several tools are laid out on the desk.,The man then\nanetv_vdTisVMhW7I,12835,The man then takes the necessary tools and begins to assemble the bike. The finish product,is then shown on the bike is presented on hardwood floor.,nudges with a towel to the camera.,begins putting it on as he washes the card.,\"is then shown, and complete together.\",is given to the male.,gold0-orig,pos,unl,unl,unl,unl,The man then takes the necessary tools and begins to assemble the bike.,The finish product\nanetv_vdTisVMhW7I,15321,The man unboxes parts and shows them off to the camera. He then,puts the parts on the bike and screws them in tightly.,rides the bicycle down the bar.,looks back to the camera and looks happy in slow motion.,throws a handful of twigs on the beach.,demonstrates how to take rope while putting the gear on.,gold1-orig,pos,unl,unl,unl,unl,The man unboxes parts and shows them off to the camera.,He then\nanetv_vdTisVMhW7I,12833,A man is standing in a shed talking and then begins putting together a bike. A box is taken out and several tools,are laid out on the desk.,are laid on a christmas table.,are needed for wrapping paper.,are shown the next.,are shown on the roof.,gold1-reannot,pos,unl,unl,pos,pos,A man is standing in a shed talking and then begins putting together a bike.,A box is taken out and several tools\nanetv_eOmL8f-yB40,4261,He sits down at the piano and he and the band play. A large audience,watches from near by.,is seen film and falls.,follows them and leads into a woman playing instruments together.,comes up and announcers help the team.,,gold0-orig,pos,unl,unl,unl,n/a,He sits down at the piano and he and the band play.,A large audience\nanetv_eOmL8f-yB40,4263,The man throws the stick behind the band. The man,plays standing for a moment and then bows.,dismounts from the hookah.,continues playing the saxophone.,cheers on the end.,removes the blindfold and saunters off.,gold0-orig,pos,unl,pos,pos,pos,The man throws the stick behind the band.,The man\nanetv_eOmL8f-yB40,4262,A large audience watches from near by. The man,throws the stick behind the band.,uses to film a group of showcased and shows it to the camera.,bars a second or two times on the parallel bar.,swerves to the end of the smoke.,goes and perform by the while.,gold1-reannot,pos,unl,unl,unl,pos,A large audience watches from near by.,The man\nanetv_1mksQqxFtv4,17414,He is jumping rope in there. He,speeds up his jumping.,\"runs, jumping and spinning the beam.\",jumps around the trampoline.,needs to be eaten!,seems to be going along.,gold0-orig,pos,unl,unl,unl,unl,He is jumping rope in there.,He\nanetv_1mksQqxFtv4,17413,A man in shorts is in a gym. He,is jumping rope in there.,is doing tricks indoors in a competition of spectators.,talks while a man is now standing in front of an audience.,is doing a flip in the air.,,gold1-orig,pos,unl,pos,pos,n/a,A man in shorts is in a gym.,He\nlsmdc3057_ROBIN_HOOD-27742,15274,He slices open its wax seals with a knife and unfolds the pages. His brow,lifts in shock as he reads.,is knitted as he types.,\"is covered with sweat, at the bottom of the package, ironed and pointed.\",finds a handwritten b note written on it.,furrows as he fumbles it in the typewriter.,gold0-orig,pos,unl,unl,unl,unl,He slices open its wax seals with a knife and unfolds the pages.,His brow\nlsmdc3057_ROBIN_HOOD-27742,15268,\"He pauses briefly, glancing over his shoulder. Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood\",reveals him as someone's goateed accomplice.,removes his helmet eye.,covers someone's dark eye.,draws on its hinged sloping tooth.,,gold0-orig,pos,unl,unl,pos,n/a,\"He pauses briefly, glancing over his shoulder.\",\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood\"\nlsmdc3057_ROBIN_HOOD-27742,15263,\"Later, someone faces someone. He\",\"moves in close to her face, seething.\",carries someone to a waist - high - rise walkway.,bows at a lectern.,gazes at her through a window.,pats him vigorously and takes a sip on his whiskey.,gold1-orig,pos,unl,unl,unl,unl,\"Later, someone faces someone.\",He\nlsmdc3057_ROBIN_HOOD-27742,15265,\"With glistening eyes, someone looks down to find someone holding a dagger to her own heart. He\",\"closes his hand over hers and stares into her eyes, taking in her earnest gaze.\",pulls him tight and and kisses passionately.,\"stops from the dream, looking out thoughtfully, and sets it aside.\",reels in the conga light.,\"steps away from someone's hand, rubbing her cheek.\",gold0-orig,pos,unl,unl,unl,pos,\"With glistening eyes, someone looks down to find someone holding a dagger to her own heart.\",He\nlsmdc3057_ROBIN_HOOD-27742,15271,\"The Frenchman advances, pulling his hood back. He\",takes out a letter and offers it to the sheriff.,waves her visor.,notices three assembly of boards suspended nearby.,hustles someone towards the border of the train.,\"opens his eyes, gesturing for someone to follow someone to his car.\",gold0-orig,pos,unl,unl,pos,pos,\"The Frenchman advances, pulling his hood back.\",He\nlsmdc3057_ROBIN_HOOD-27742,15270,\"The sheriff's male servants depart, but a crone dressed in black remains at the table. The Frenchman\",\"advances, pulling his hood back.\",\"rises to the camera, pointing its middle paws around the man's.\",\"swishes itself in the mouth of someone's mouth, holding out his drink and moves it in the car.\",is getting someone a better view with his ice glass.,moved unsteadily up a day.,gold0-orig,pos,unl,unl,unl,unl,\"The sheriff's male servants depart, but a crone dressed in black remains at the table.\",The Frenchman\nlsmdc3057_ROBIN_HOOD-27742,15267,\"Now, a hooded rider arrives at the edge of Nottingham. He\",\"pauses briefly, glancing over his shoulder.\",opens the low door and steps out to the tiled floor.,aims the dog as a man and leads him away.,lumbers them through narrowed eyes.,stands next to him about 20 yards away.,gold1-orig,pos,unl,unl,unl,pos,\"Now, a hooded rider arrives at the edge of Nottingham.\",He\nlsmdc3057_ROBIN_HOOD-27742,15272,He takes out a letter and offers it to the sheriff. The lawman,\"hesitates, then snatches it from his hand.\",\"does n't, but overtakes him.\",is torn in and glue.,walks back and forth across the lawn.,shows someone off to the back of the bus.,gold0-orig,pos,unl,unl,unl,unl,He takes out a letter and offers it to the sheriff.,The lawman\nlsmdc3057_ROBIN_HOOD-27742,15269,\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood reveals him as someone's goateed accomplice. The sheriff's male servants depart, but a crone dressed in black\",remains at the table.,lies on his back.,dozes behind a negligee.,uniforms hits on a computer and the bullets swoop between the peasants.,looks away.,gold1-orig,pos,unl,unl,unl,pos,\"Later, as he arrives at a blacksmith's forge, a glimpse beneath his hood reveals him as someone's goateed accomplice.\",\"The sheriff's male servants depart, but a crone dressed in black\"\nlsmdc3057_ROBIN_HOOD-27742,15264,\"He moves in close to her face, seething. With glistening eyes, someone\",looks down to find someone holding a dagger to her own heart.,runs her hand over her sister's ribs.,fixes her kiss on his face and kisses him hard on the cheek.,takes a long love heart and gently strokes her hair.,leaves him on the screen.,gold1-reannot,pos,unl,unl,unl,unl,\"He moves in close to her face, seething.\",\"With glistening eyes, someone\"\nanetv_aljYWkDQzN8,5156,A person is seen wearing underwear and riding around on skis while pulling his shorts up. The man then,begins riding down a snowy hill on skis.,begins riding on the bike and continues moving to the side.,begins rubbing down goggles while others watch on the side.,jumps down and grabs his snowboard helmet.,,gold1-orig,pos,unl,pos,pos,n/a,A person is seen wearing underwear and riding around on skis while pulling his shorts up.,The man then\nanetv_aljYWkDQzN8,344,A man is standing on skis wearing only underwear. He then,starts skiing down a hill of snow.,races into a water tank.,casually channels to the camera as he skis.,rides up and down on a row of skis.,demonstrates various stunts on equipment.,gold0-orig,pos,unl,unl,unl,pos,A man is standing on skis wearing only underwear.,He then\nanetv_aljYWkDQzN8,345,He then starts skiing down a hill of snow. He,goes off of a jump and crashes at the bottom.,pulls out snow off of a school and jumps off the hatchback.,climbs a hill on the board and skis.,brushes on a disc on his skis and attempts to jump off the rock.,slides down the hill and back to the truck.,gold0-orig,pos,unl,unl,unl,pos,He then starts skiing down a hill of snow.,He\nanetv_aljYWkDQzN8,5157,The man then begins riding down a snowy hill on skis. He,jumps over a jump and falls in the end by stands back up.,continues riding through the snow while still speaking to the camera.,continues riding along the water while he ski.,continues walking across the board and then moving slightly again.,,gold1-orig,pos,unl,unl,unl,n/a,The man then begins riding down a snowy hill on skis.,He\nanetv_b1uGF3c3Vz4,18366,\"She then takes clothes pins, grabs the nape of the hair and clips the cats nails. After awhile, the cats tries to bite her hands, once the girl is done, she\",removes the pins and waves at the camera.,takes her shot and dips it in her mouth.,begins to hammer her hair again.,curls the nails of the cat's claws.,,gold0-orig,pos,unl,unl,unl,n/a,\"She then takes clothes pins, grabs the nape of the hair and clips the cats nails.\",\"After awhile, the cats tries to bite her hands, once the girl is done, she\"\nanetv_b1uGF3c3Vz4,18365,A young woman is sitting in a chair playing with a cat. She then,\"takes clothes pins, grabs the nape of the hair and clips the cats nails.\",walks past her horses or is following.,plays the violin with her.,begins talking and showing how her face works properly.,and taps something on the front of her paw while petting a knife.,gold0-reannot,pos,unl,unl,unl,unl,A young woman is sitting in a chair playing with a cat.,She then\nanetv_a1WhnMcTbrY,10172,The man pushes the shoveling along the snow. The man,continues to shovel the snow over and over.,holds the dog up and blow branches around the sides.,continues doing snow moves by passing snow down the scooter.,adjusts the hubcap together.,,gold0-orig,pos,unl,unl,pos,n/a,The man pushes the shoveling along the snow.,The man\nanetv_a1WhnMcTbrY,16624,The guy use the shovel to clean the snow of the top of his bushes. finally the guy,tosses his last snow he scooped up.,stops to adjust a section.,demonstrates a hopping use snowboard and finished and q conveyor tube.,picks up the shovel and takes the seeds out from the truck.,talks and exits the pub where there are adults upset.,gold0-orig,pos,unl,unl,unl,unl,The guy use the shovel to clean the snow of the top of his bushes.,finally the guy\nanetv_a1WhnMcTbrY,10171,A man is seen looking to the camera holding a shovel. The man,pushes the shoveling along the snow.,moves away around the house.,speaks to the camera moving to his opposite movements while another man walks behind him.,puts the tool down and starts carving tool in the ice.,,gold0-orig,pos,unl,unl,unl,n/a,A man is seen looking to the camera holding a shovel.,The man\nanetv_a1WhnMcTbrY,16623,The guy now scoops up some snow in the shovel picks it up then dumps it a couple of times. the guy,use the shovel to clean the snow of the top of his bushes.,proceeds to polish the bottom of the nails.,grabbing the shovel with a yellow scraper and a little stick.,shakes the windshield again.,talks to the camera and then comes back and pushes the side down.,gold0-reannot,pos,unl,unl,unl,unl,The guy now scoops up some snow in the shovel picks it up then dumps it a couple of times.,the guy\nanetv_a1WhnMcTbrY,16621,A guy hold a shovel over his shoulder while recording himself. the camera then,spins in a circle.,shows the remains of the beer.,shows the skier to the camera.,shows several people skating in a roof.,shows the man jumping out of the car.,gold0-reannot,pos,unl,unl,unl,unl,A guy hold a shovel over his shoulder while recording himself.,the camera then\nanetv_a1WhnMcTbrY,16622,The camera then spins in a circle. the guy now scoops up some snow in the shovel picks it up then,dumps it a couple of times.,puts on his blank white screen.,grabs a mess.,throws it over the windshield and curves towards it.,,gold1-reannot,pos,unl,unl,unl,n/a,The camera then spins in a circle.,the guy now scoops up some snow in the shovel picks it up then\nanetv_RZ8r5B69CLY,10270,The girls volley the ball back and forth over the net. They,try to keep the ball from their opponents as the game truly begins.,\"hold hands, then stand in the background as the game continues.\",volleys the puck at the opposing team and sends the puck back into the vault.,are shown in the end.,let go and press the ball far to the ground in front of the audience.,gold0-orig,pos,unl,unl,unl,unl,The girls volley the ball back and forth over the net.,They\nanetv_RZ8r5B69CLY,10269,People are shown on a volleyball court as they warm up. The girls,volley the ball back and forth over the net.,take turns bouncing the ball on the bullseye.,\"are practicing in the water, trying to go forth further.\",are shown using their tubes to play the game.,go back and forth around the sticks while the man sets the green ball in the net.,gold0-orig,pos,unl,unl,unl,unl,People are shown on a volleyball court as they warm up.,The girls\nanetv_ho8cKYrtufU,17466,The man shoots the bow while showing it to the camera several times and shooting more. He finally,finishes by speaking to the camera.,hands the man several thumbs up and then leaves the group running up to the camera.,\"demonstrates the game of the ball up, then takes it to his team who was just playing.\",demonstrates what and shows the target how to move the material on the target.,,gold0-orig,pos,unl,unl,unl,n/a,The man shoots the bow while showing it to the camera several times and shooting more.,He finally\nanetv_ho8cKYrtufU,17465,A man is seen speaking to the camera while showing various tools to the camera as well as a close up of a bow and arrow. The man,shoots the bow while showing it to the camera several times and shooting more.,shows by holding the camera close and washing his face while looking off into the distance.,then lays down the instrument and shows dust through the areas while speaking to the camera.,demonstrates how to properly hit the ball while the camera zooms in.,,gold1-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera while showing various tools to the camera as well as a close up of a bow and arrow.,The man\nanetv_ho8cKYrtufU,10475,A man is seen outside in the snow as he shoots. He,takes several shots with the bow and arrow.,begins to stop and run backwards over a track jumping and demonstrating tricks.,moves around with the frisbees as the camera leads his movements all around.,see the old set from across the screen to block the rocks.,starts punching the air in front of him.,gold0-orig,pos,unl,unl,unl,unl,A man is seen outside in the snow as he shoots.,He\nanetv_ho8cKYrtufU,10474,Several views are shown of an archery set. A man,is seen outside in the snow as he shoots.,is wearing a white shirt and dressed in blue croquet.,throws a bow and arrow in it before one hits the pucks.,is demonstrating how to use tools and demonstrates the techniques.,is seen speaking to a black colleague and gesturing to another.,gold1-orig,pos,unl,unl,pos,pos,Several views are shown of an archery set.,A man\nanetv_F6BJoTLozoc,8809,An empty stage with four lights are shown as a crowd of people stand waiting for something to happen. A lady with a orange and yellow cape and skirt,then comes out from the side and starts to belly dance.,claps with the other for her parted showing the arc of a black eye and a match that includes a wild graceful style.,stands in the crowd looking on and applaud.,is seen inside it she sees someone sitting un - dressed and determined to happen it's no longer at a camera.,is watching on the screen.,gold1-orig,pos,unl,unl,unl,unl,An empty stage with four lights are shown as a crowd of people stand waiting for something to happen.,A lady with a orange and yellow cape and skirt\nanetv_F6BJoTLozoc,8810,A lady with a orange and yellow cape and skirt then comes out from the side and starts to belly dance. The woman,then drops the cape and begins walking towards the crowd moving her chest and smiling at the people.,stands on a beam ring holding the baton.,stops dancing and smiles as she sees the same woman and group of other playing music for her.,seems to be playing the instrument she continues.,stops dancing and claps for him at the end and bows her head then holds up her pink cup.,gold0-reannot,pos,unl,unl,pos,pos,A lady with a orange and yellow cape and skirt then comes out from the side and starts to belly dance.,The woman\nanetv_qfCqVXhNPE8,15289,The woman pulls out a container with hair rolls. The woman,pulls out a bottle of shampoo.,shows some upholstery shampoo and the baby.,continues to discuss her problems.,pretend to lower the window down.,trims a different netted cat's fur nails.,gold0-orig,pos,unl,unl,unl,unl,The woman pulls out a container with hair rolls.,The woman\nanetv_qfCqVXhNPE8,15288,A woman with black hair is explaining something. The woman,pulls out a container with hair rolls.,finishes their pink work and puts a pink coat on.,is shown her name on the paper.,gestures she lifter and smirks.,puts her face on another potato.,gold1-orig,pos,unl,unl,unl,unl,A woman with black hair is explaining something.,The woman\nanetv_qfCqVXhNPE8,15290,The woman pulls out a bottle of shampoo. The woman,rolls her hair and pins it in place and leaves it for ten minutes.,takes the glasses to wash the shower.,then dries the coat and others around.,dries her hair and points it to the camera.,rinses the lid off.,gold0-orig,pos,unl,unl,unl,unl,The woman pulls out a bottle of shampoo.,The woman\nanetv_qfCqVXhNPE8,15291,The woman rolls her hair and pins it in place and leaves it for ten minutes. The women,removes the rolls from her hair.,cut on the spider's claws.,move closer to the police and exchange smiles.,brush down the table.,take the same garment and face the area.,gold0-orig,pos,unl,pos,pos,pos,The woman rolls her hair and pins it in place and leaves it for ten minutes.,The women\nanetv_qfCqVXhNPE8,15292,The women removes the rolls from her hair. The woman,takes out hair spray and sprays it on her hair.,applies someone's boot and it's more from over someone's.,adjusts her legs together and beams.,\"is brushing the area and showing beach flowers and brushes, and how the same curls are demonstrated.\",holds open the punching bag while speaking to the camera.,gold0-orig,pos,unl,unl,unl,unl,The women removes the rolls from her hair.,The woman\nanetv_qVqlImNflY8,11250,A person starts filling a large blue bucket with water. They,put the dog into the water.,water spray on the bottom of the sink and the adds some and then focuses it to them.,help each other out of the water.,dip it into a buckets.,float in the bottom of the water.,gold1-orig,pos,unl,unl,unl,unl,A person starts filling a large blue bucket with water.,They\nanetv_qVqlImNflY8,6189,The dog leans over a tub and jumps into the bucket of water. The dog,scratches the bin around while the camera captures his movements.,laughs at the sink as the woman moves on.,runs under water from the vacuum.,is patting the dog on the dog's tail.,gets up and walks toward the dog.,gold0-orig,pos,unl,unl,unl,pos,The dog leans over a tub and jumps into the bucket of water.,The dog\nanetv_qVqlImNflY8,6188,A dog is seen laying on the ground and leads into a person turning water on. The dog,leans over a tub and jumps into the bucket of water.,continues running around the dog as well as speaking to the camera.,rolls all around the dog.,walks around the dog and performing around him turning around to the dog.,rubs the cat on another gestures while still looking into the camera.,gold0-orig,pos,unl,unl,unl,unl,A dog is seen laying on the ground and leads into a person turning water on.,The dog\nanetv_qVqlImNflY8,11249,A small brown and white dog is laying on a rug. A person,starts filling a large blue bucket with water.,is spraying the person with shampoo.,is mowing the grass through a wooden yard behind them.,is spraying and spraying the dog with the hose.,sits on a cooling rack and then puts the carpet in.,gold1-reannot,pos,unl,unl,unl,unl,A small brown and white dog is laying on a rug.,A person\nanetv_dbLtukGqkhI,14253,A man in a blue shirt is pointing to the sky and moving his hand in circles. There,are many kites in the sky around them.,is solar lather on his hand.,is shown falling snow over and over again several times.,\"touch his left arm, and the men of a girl hug him on the side of the canoe along with the toddler in.\",see the man in green play again.,gold0-orig,pos,unl,unl,unl,unl,A man in a blue shirt is pointing to the sky and moving his hand in circles.,There\nanetv_dbLtukGqkhI,14252,A woman in a green shirt eats chips. A man in a blue shirt,is pointing to the sky and moving his hand in circles.,puts ice in her mouth.,picks up the balls and hits them again.,stands up on a court floor with an iron.,throws a blue ball at him.,gold1-reannot,pos,unl,unl,unl,unl,A woman in a green shirt eats chips.,A man in a blue shirt\nlsmdc3013_BURLESQUE-4463,3401,\"Later as the blonde packs a suitcase, the sexy dancers pump their hips. The blonde\",regards a framed photo of a woman.,puts her shades in the back.,lifts her right arm.,notices her naked body pinning her arms to her chest.,swings her keys onto her back.,gold0-orig,pos,unl,unl,unl,unl,\"Later as the blonde packs a suitcase, the sexy dancers pump their hips.\",The blonde\nanetv_HaGLPOqibaM,12903,We see the man adding plaster to his base. We,follow the man as he gets more plaster.,see the images on the screen.,see the gymnast rope the base and another team attempts to wipe off the craggy face.,see the man dunk the gear and throw his hand after the guy.,see the finished product and a person scrubs and cleans the light with the vacuum.,gold0-orig,pos,unl,unl,unl,unl,We see the man adding plaster to his base.,We\nanetv_HaGLPOqibaM,12904,We follow the man as he gets more plaster. The man,walks away from the wall.,tosses the fries back into the air.,stands and backs no and starts for the broom.,points and shows another guy involved with the orchestra.,hits the drums to the left.,gold0-orig,pos,unl,unl,unl,unl,We follow the man as he gets more plaster.,The man\nanetv_HaGLPOqibaM,6742,A wall is shown with the camera tilted sideways. A man,walks across the scene.,is seen sitting behind a wall standing by a lake with a wheel attached to it.,is shown speaking to the camera before pouring on a pair of sunglasses.,stands in front of a wooden fence to dry the snow.,,gold0-orig,pos,unl,unl,unl,n/a,A wall is shown with the camera tilted sideways.,A man\nanetv_HaGLPOqibaM,12902,We then focus on the wall the man works on. We,see the man adding plaster to his base.,\"and the man uses his arms moves, then back again with us and welding swiftly on the gymnastics machine.\",see different teams of men and their teammates as the players talk and talk.,see a black screen with a picture on it.,see an ad on a card and then we see the flashing title.,gold0-orig,pos,pos,pos,pos,pos,We then focus on the wall the man works on.,We\nanetv_HaGLPOqibaM,12900,The man begins to smooth plaster on the wall. We,see the ceiling in the room.,see a wall then see for a process to cut the floor.,then removes the old wallpaper from the forest and vacuum it in the pan.,\", the second man shows a woman in arm standing over spins putting cement on the wall.\",see the sanding on a wall.,gold1-orig,pos,unl,unl,unl,unl,The man begins to smooth plaster on the wall.,We\nanetv_HaGLPOqibaM,12899,A man walks into a room. The man,begins to smooth plaster on the wall.,begins bringing up tiles above a desk.,throws his darts in the field with precision as a man watches.,takes a glass box from the floor and demonstrates how to make it properly.,,gold0-orig,pos,unl,unl,unl,n/a,A man walks into a room.,The man\nanetv_HaGLPOqibaM,12901,We see the ceiling in the room. We then,focus on the wall the man works on.,see a red shoe polishing match.,see the man cleaning a shoe with polish and scissors.,see a woman in dark shorts performing money sews.,,gold0-orig,pos,unl,pos,pos,n/a,We see the ceiling in the room.,We then\nanetv_HaGLPOqibaM,6743,A man walks across the scene. The man,applies plaster to the wall.,throws and throws down a ball.,switches on a table.,points to cars in a park.,angrily follows the boy on the skateboard.,gold1-reannot,pos,unl,unl,pos,pos,A man walks across the scene.,The man\nanetv_9YxgMsdO9GE,695,Two people are seen riding down a road with a dog. One person,is riding a bike and the other a skateboard while the camera follows close behind.,jumps off and falls off.,falls into the water while others watch on the side of the boat.,\"is walking with one another, halfway down a hill.\",joins a man on standing grass using a frisbee.,gold1-orig,pos,unl,unl,unl,pos,Two people are seen riding down a road with a dog.,One person\nanetv_9YxgMsdO9GE,696,One person is riding a bike and the other a skateboard while the camera follows close behind. Several other dogs run by and the people,continue riding down the road path.,begin to fight back and forth on one another one is trying to help.,continues running down the mountain on the 30 day.,walking down the ramp while a security loads into the coworker and people ride on the bikes in the dirt's occupants.,speak before the men continue by putting him skating on the riding board.,gold0-orig,pos,unl,unl,unl,pos,One person is riding a bike and the other a skateboard while the camera follows close behind.,Several other dogs run by and the people\nlsmdc1048_Gran_Torino-92019,4265,\"Someone watches the kids, tight - lipped, eyes narrowed. His middle - aged sons, people,\",turn to each other.,sits in a restaurant washroom.,stand bearing someone's embrace.,sit in front of someone's office.,,gold0-orig,pos,unl,unl,pos,n/a,\"Someone watches the kids, tight - lipped, eyes narrowed.\",\"His middle - aged sons, people,\"\nlsmdc1048_Gran_Torino-92019,4259,\"A small congregation sits in pews towards the front of the grand church. An older man, someone,\",gets up from his pew and walks past a coffin draped in a white sheet.,gazes after him into the water.,watch himself smiling and waiting for someone to ale.,stands beside a row of white lockers.,,gold0-orig,pos,unl,unl,unl,n/a,A small congregation sits in pews towards the front of the grand church.,\"An older man, someone,\"\nlsmdc1048_Gran_Torino-92019,4263,\"Seeing this, someone grimaces. Someone, a thin boy with fair hair,\",\"is last to kneel, bow and make the sign of the cross.\",kisses himself as someone sits down.,tumbles up the end of a trough.,runs along a field and attacks a beach stealing clothes.,strides over to the operating table and crawls over to the bed.,gold0-orig,pos,unl,unl,unl,unl,\"Seeing this, someone grimaces.\",\"Someone, a thin boy with fair hair,\"\nlsmdc1048_Gran_Torino-92019,4258,A balding man plays the organ. A small congregation,sits in pews towards the front of the grand church.,stands with flags around him.,\"stands nearby, amused to hear and cut through the crowd.\",sits at the base of a hookah pipe.,stands with his dad in their army gear.,gold0-orig,pos,unl,unl,unl,unl,A balding man plays the organ.,A small congregation\nlsmdc1048_Gran_Torino-92019,4264,\"Someone, a thin boy with fair hair, is last to kneel, bow and make the sign of the cross. Someone\",\"watches the kids, tight - lipped, eyes narrowed.\",\"catch for his order, and then he quickly reaches for his own briefcase as they get out all the money.\",gives a resolute shake of the head.,looks at him.,\", his elderly wife wearing a dark scarf, comes out the door when followed by someone.\",gold0-orig,pos,unl,unl,unl,unl,\"Someone, a thin boy with fair hair, is last to kneel, bow and make the sign of the cross.\",Someone\nlsmdc1048_Gran_Torino-92019,4262,Someone shakes someone's hand and goes back to his pew. Four casually - dressed teenage kids - - people - -,walk up the aisle.,do standing behind a farm.,\"butler, very about, senses his presence.\",\"go through the gate into blue and white students, wearing french hats.\",make their laugh.,gold0-orig,pos,unl,unl,pos,pos,Someone shakes someone's hand and goes back to his pew.,Four casually - dressed teenage kids - - people - -\nlsmdc1048_Gran_Torino-92019,4260,\"An older man, someone, gets up from his pew and walks past a coffin draped in a white sheet. Someone\",walks up to him.,holds the rope tightly to his son.,is parked in a stately flight to a drizzled brown balcony.,stretches his legs off outside.,stands on a baseball platform carrying a thick string.,gold0-orig,pos,unl,unl,unl,unl,\"An older man, someone, gets up from his pew and walks past a coffin draped in a white sheet.\",Someone\nlsmdc1048_Gran_Torino-92019,4261,Someone walks up to him. Someone,shakes someone's hand and goes back to his pew.,is staring at boxes in the back of someone's car.,takes a deep breath and shakes his head.,gazes off dreamily at the glass doorway.,,gold0-reannot,pos,unl,unl,unl,n/a,Someone walks up to him.,Someone\nanetv_UOkpGU7NAag,6647,A girl is going across a set of monkey bars. She,gets to the end and stands on a wooden plank.,jumps up and does a back flips.,struggles onto the monkey bars to grab her head.,jumps up across the monkey bars.,begins climbing up the monkey bar.,gold0-orig,pos,unl,unl,unl,pos,A girl is going across a set of monkey bars.,She\nanetv_UOkpGU7NAag,6649,She then goes back across the monkey bars in the other direction. She,goes to another part of the playground and jumps up and down.,goes to cross the monkey bars area.,\"stops and turns her head, creeping in and out of frame.\",rears up and jumps into the end.,,gold0-orig,pos,pos,pos,pos,n/a,She then goes back across the monkey bars in the other direction.,She\nanetv_UOkpGU7NAag,6648,She gets to the end and stands on a wooden plank. She then,goes back across the monkey bars in the other direction.,walks in and out of the window.,walks away on the dance floor.,jumps off of the fence and goes to the front of the door.,,gold1-orig,pos,unl,unl,pos,n/a,She gets to the end and stands on a wooden plank.,She then\nanetv_yL7tvoBkkkI,9125,Various people are seen from a bird's eye view working in rough conditions out in the open. They,are scrubbing clothes and hanging them up while the camera pans around and watches.,are seen running through a set of stairs and with a brush.,continue slowly performing various tricks and tricks and interviewing one another.,\"sit beyond the boat, sleeping on their hands.\",,gold0-orig,pos,unl,unl,unl,n/a,Various people are seen from a bird's eye view working in rough conditions out in the open.,They\nanetv_olBh9KMAHMQ,5867,A man walks out into the snow. He,is holding a shovel in his hands.,is then sitting on skis in the road doing a flip.,comes into the station and continues to wipe the snow off the car.,is skateboarding between the trees.,continues to mow the cars on a lawn.,gold0-orig,pos,unl,unl,unl,unl,A man walks out into the snow.,He\nanetv_olBh9KMAHMQ,9921,We see the blue opening screen. A man,walks out into his yard carrying a shovel.,shows how to use a mop on a roof.,stands near a wheel and sails through some equipment.,is giving a drink in a cup talking to the camera.,unrolls some parts onto a tree.,gold1-orig,pos,unl,unl,unl,unl,We see the blue opening screen.,A man\nanetv_olBh9KMAHMQ,9924,The man spins the shovel again and words appear on the screen and he shovels more snow. The man,walks back into his garage.,takes out a shovel than walks to it and looks up.,cuts the snow off then spots tools and brushes.,runs away from the shop and picks up the shovel and cleans the snow.,,gold0-orig,pos,unl,unl,pos,n/a,The man spins the shovel again and words appear on the screen and he shovels more snow.,The man\nanetv_olBh9KMAHMQ,9923,The man shovels the snow. The man,spins the shovel in the air dances and shovels again.,continues to blow the snow away from the camera.,continues to mow the lawn.,walks away from the chair and moves up a towel.,cleans the car with a power plant.,gold0-orig,pos,unl,unl,unl,unl,The man shovels the snow.,The man\nanetv_olBh9KMAHMQ,9922,A man walks out into his yard carrying a shovel. The man then,puts on his gloves and dances a bit in the yard.,paints a roof of a truck and shows a man in a pistol.,begins dipping the mower and leading into several others.,takes a blow stick on and jumps into a snow blower.,,gold1-orig,unl,unl,unl,unl,n/a,A man walks out into his yard carrying a shovel.,The man then\nanetv_olBh9KMAHMQ,5866,A car is shown covered in snow. A man,walks out into the snow.,is shoveling snow in a bad town car.,is washing the car.,is trimming a bush.,jumps on the floor alongside a red opening fence.,gold1-orig,pos,unl,unl,unl,unl,A car is shown covered in snow.,A man\nanetv_olBh9KMAHMQ,9925,The man walks back into his garage. We,see the blue ending title screen.,\", people watch him.\",\"boy walks by holding a picture of his desk, sitting with the man on the machine.\",construction is shown up and he begins trimming it several different ways.,\", the man is walking the couch and talking in a room in front of a fire.\",gold0-orig,pos,unl,unl,unl,unl,The man walks back into his garage.,We\nanetv_olBh9KMAHMQ,5868,He is holding a shovel in his hands. He,dances as he shovels the snow around.,is wiping the windshield.,begins to wipe down the car.,is showing how to cut the shirt over the box.,mixes the ingredients together in a bowl.,gold0-reannot,pos,unl,unl,unl,unl,He is holding a shovel in his hands.,He\nanetv_AQQT21DBT_E,15021,People are grooming and brushing dogs in a public facility. Women,take cares of dogs that have long hair.,are shown using the flute.,count the dogs for molds.,\"are standing in a pony carrier, then, riding a horse and moving happier.\",are in a brown yard cutting a path of cigarettes and dogs.,gold0-orig,pos,unl,unl,unl,unl,People are grooming and brushing dogs in a public facility.,Women\nanetv_AQQT21DBT_E,15023,\"A woman take cares of a poodle, while other woman pets a big dog. A woman\",talks on front a dog while petting.,\"skates on her belly, leaving the dog bands around her shoulders.\",puts the leash on her tail.,takes in a woman's fur.,,gold0-orig,pos,unl,unl,unl,n/a,\"A woman take cares of a poodle, while other woman pets a big dog.\",A woman\nanetv_AQQT21DBT_E,15022,Women take cares of dogs that have long hair. A woman,\"take cares of a poodle, while other woman pets a big dog.\",\"picks up a red navigation stick, while using a highly hairspray wrench for no brief cut post in interviews.\",starts rafting on a field decorated with costumes.,\"leaps onto the horse, and a woman on the right is talking on the horse.\",is blow drying her hair by a woman in a red shirt.,gold0-orig,pos,unl,unl,unl,unl,Women take cares of dogs that have long hair.,A woman\nlsmdc3031_HANSEL_GRETEL_WITCH_HUNTERS-1534,11809,The girl shoots her crossbow and beheads a witch flying on a broomstick. A silhouette standing in the flames,shoots a burning arrow past some towns people.,overlooks a burned - out truck's cage.,is right along the tree building by against the blinding maize.,\"grazing in the distance, next to the cliff face, fast asleep with her face buried in blood.\",behind her electrocutes the baby.,gold0-orig,pos,unl,unl,unl,unl,The girl shoots her crossbow and beheads a witch flying on a broomstick.,A silhouette standing in the flames\nlsmdc0009_Forrest_Gump-50693,11568,Someone speaks on the phone. Someone,hangs up the phone.,follows someone as the blond mother makes a call.,turns around and duct brushes with a bag on him.,'s on his cellphone.,comes into the doctor's office and puts the phone down.,gold0-orig,pos,unl,unl,pos,pos,Someone speaks on the phone.,Someone\nlsmdc0009_Forrest_Gump-50693,11567,An anchorman reports in front of the White House. Someone,looks at the fat man on the bus bench.,smiles at the tiger then turns back to someone.,and someone are standing by the lining of the people.,runs over to the lake with a wounded stalk.,,gold0-orig,pos,unl,pos,pos,n/a,An anchorman reports in front of the White House.,Someone\nanetv_Ci9WKE6wkOQ,4907,A man and woman are talking to a camera on exercises. The girl,talks about equipment and how to use it.,is then seen interviewed.,shows the climbing rock paper that was playing.,dances as she does everything.,,gold0-orig,pos,unl,unl,pos,n/a,A man and woman are talking to a camera on exercises.,The girl\nanetv_Ci9WKE6wkOQ,4908,The girl talks about equipment and how to use it. She,prepares the equipment and helps the man perform the exercise.,lifts it up and begins talking to the camera showing the moving object on the field.,talks to the camera as she uses the screwdriver to vacuum a lamp.,is showing the materials she needs to do.,finishes the routine on the bars and performs to execute a move and moves around the bars again.,gold0-orig,pos,unl,unl,unl,pos,The girl talks about equipment and how to use it.,She\nanetv_rze0k4LklN4,7842,He moves two tires off a box. He,starts assembling the bike and putting the tires on the bike.,flicks some tasseled holes.,hands off the handlebars on the bike.,slams another man on the bike.,puts another cross on top of a contraption.,gold0-orig,pos,unl,unl,unl,unl,He moves two tires off a box.,He\nanetv_rze0k4LklN4,8362,He is talking next to a bike on a stand. He,shows how to disassemble and assemble the bike.,is holding a large knife knob and begins varnish it.,is standing on top of the bike in front of him as he is taping the bike he is using.,begins to talk about bungee.,continues to take off the dirt bike.,gold1-orig,pos,unl,unl,unl,unl,He is talking next to a bike on a stand.,He\nanetv_rze0k4LklN4,7841,A man is standing next to a bicycle on a pole. He,moves two tires off a box.,starts sailing down from the fence.,is walking on the treadmill.,flips several times while quickly lifts her to the ground.,,gold1-orig,unl,unl,unl,unl,n/a,A man is standing next to a bicycle on a pole.,He\nanetv_dZMMhVx7yY4,15052,A man is seen speaking to the camera followed by him talking to random women on the beach. They play a game together and when he wins the girl,gives him a kiss.,stops and walk away with the polo.,finishes break its picture.,starts hitting the ball at the same time in slow motion.,,gold1-orig,pos,unl,unl,unl,n/a,A man is seen speaking to the camera followed by him talking to random women on the beach.,They play a game together and when he wins the girl\nanetv_dZMMhVx7yY4,15053,When they lose the girl smacks him. Several girls,laugh and play along while getting a kiss or slapping the man.,\"are walking back down to the table, still laughing, enjoying the laugh.\",get into their arms and begin dancing with the girl when one girl falls into the water.,are sitting next to him watching.,,gold0-orig,pos,unl,unl,pos,n/a,When they lose the girl smacks him.,Several girls\nlsmdc3062_SORCERERS_APPRENTICE-30888,8525,\"She turns to find him walking away, then excuses herself from her friends. On the lofty observation ledge, a service light\",glows amber in contrast to a row of stark floodlights.,rises beneath the mounting satin arena.,\"reads, as a woman near someone 'chair crosses her designated body.\",casts a glow hippie her body.,passes on the morning light as they march to a bench with a scattering of families.,gold0-orig,pos,unl,unl,pos,pos,\"She turns to find him walking away, then excuses herself from her friends.\",\"On the lofty observation ledge, a service light\"\nlsmdc3062_SORCERERS_APPRENTICE-30888,8524,Someone spots him in a mirror. She,\"turns to find him walking away, then excuses herself from her friends.\",smells a pitcher of wine.,wraps a long cord around someone's neck.,\"turns slowly to someone, then, closes his eyes, joins someone and nods, and raises her brows.\",\"see a exterior door light, illuminating a tall, densely - decorated house from a backyard.\",gold0-orig,pos,unl,unl,unl,pos,Someone spots him in a mirror.,She\nlsmdc3062_SORCERERS_APPRENTICE-30888,8522,\"He spies someone inside, conversing cheerfully with a group of girlfriends. Someone\",turns away sadly and leaves.,gives him a enemies look and someone gazes out of his window.,\"stares off in a motivational needle, then touches her own.\",sits as another gentleman.,sighs and walks out of the house.,gold0-orig,pos,unl,unl,unl,pos,\"He spies someone inside, conversing cheerfully with a group of girlfriends.\",Someone\nlsmdc3062_SORCERERS_APPRENTICE-30888,8526,\"On the lofty observation ledge, a service light glows amber in contrast to a row of stark floodlights. Someone\",\"steps out to the handrail, smirks sadly, and removes someone's ring.\",gazes intently at the video locker.,pops a cigar vial into his pocket and peers in through his scope.,uses an individual's gurney to create an encouraging gesture.,,gold0-orig,pos,unl,unl,unl,n/a,\"On the lofty observation ledge, a service light glows amber in contrast to a row of stark floodlights.\",Someone\nlsmdc3062_SORCERERS_APPRENTICE-30888,8523,Someone turns away sadly and leaves. Someone,spots him in a mirror.,picks up the money.,\"heads away, leaving the atv which stares at a magnificent array of beautiful ocean.\",avoids her arm and staggers.,ducks behind and watches his son.,gold1-reannot,pos,unl,unl,unl,unl,Someone turns away sadly and leaves.,Someone\nlsmdc3062_SORCERERS_APPRENTICE-30888,8521,He changes out of his pointy footwear. Someone,follows a sidewalk by himself.,\"turns her back, admiring the boy who is taking the rug and leaves.\",retrieves a cookie cord.,is a bright green marble rink where people can crush and kiss.,,gold1-reannot,unl,unl,unl,unl,n/a,He changes out of his pointy footwear.,Someone\nlsmdc1017_Bad_Santa-7583,16436,He sits up and takes the glass. He,gives the kid a look and puts the glass down.,speaks up to a middle of aged.,uses his ax to put the egg on the table.,takes it and smooths it for him.,looks over his shoulder to the queen.,gold0-orig,pos,unl,unl,unl,unl,He sits up and takes the glass.,He\nlsmdc1017_Bad_Santa-7583,16433,\"The next morning, someone is still asleep in bed. The kid\",\"comes in, clutching a glass of orange juice and an advent calendar.\",is leaning from the window.,\"sits up, is trying to rub her face in the fear of humor.\",lies on his back under his bed.,,gold0-orig,pos,unl,unl,unl,n/a,\"The next morning, someone is still asleep in bed.\",The kid\nlsmdc1017_Bad_Santa-7583,16435,\"Gradually, someone surfaces from his slumber. He\",sits up and takes the glass.,clutches his ankles to his chest.,\"takes off the spectacles and collapses, then leaps onto the sofa.\",starts to light his cigarette.,looks over his shoulder as he runs through the crowd.,gold0-orig,pos,unl,unl,unl,unl,\"Gradually, someone surfaces from his slumber.\",He\nlsmdc1017_Bad_Santa-7583,16443,\"At lunchtime, he is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall. Someone\",regards him with thinly - veiled contempt.,sit out on the sidewalk in front of a sweet shop.,sits away with mr.,is frozen in the pizza.,enters and sits up next to them.,gold0-orig,pos,unl,unl,unl,unl,\"At lunchtime, he is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall.\",Someone\nlsmdc1017_Bad_Santa-7583,16437,He gives the kid a look and puts the glass down. The kid,climbs on to the bed.,sets bread into the kitchen sink.,turns the page in.,\"adds sugar, salt, then boil.\",,gold1-reannot,pos,unl,unl,unl,n/a,He gives the kid a look and puts the glass down.,The kid\nlsmdc1017_Bad_Santa-7583,16442,\"Someone looks dubiously at the door off the calendar. At lunchtime, he\",\"is eating with someone and his oriental girlfriend, someone, at a restaurant in the mall.\",leans on a chair hunched on the floor of the shop.,\"turns and gazes into the hallway of the car, waiting for the decision to pay.\",calls out to the gravestones just outside.,opens the compact machine and stares on it's card.,gold0-reannot,pos,unl,unl,unl,pos,Someone looks dubiously at the door off the calendar.,\"At lunchtime, he\"\nlsmdc1017_Bad_Santa-7583,16434,\"The kid comes in, clutching a glass of orange juice and an advent calendar. Gradually, someone\",surfaces from his slumber.,elbows to his knees.,finds the young dots written in the darkness of chaises's dark lines.,\"stares back, advancing from the ceiling.\",puts on his headset.,gold0-reannot,pos,unl,unl,unl,unl,\"The kid comes in, clutching a glass of orange juice and an advent calendar.\",\"Gradually, someone\"\nanetv_sLtQvJXnrOE,4996,There's a guy wearing yellow rubber gloves demonstrating how to fix a tire on a car wheel. He,is unscrewing the screws that hold the plates of the wheel.,\"secures the bike in the trunk, taking off a piece of potatoes.\",drives a tire down and places the bubbles on the drivers seat of the metal grill of his car to place it.,demonstrates how to do a tire tire in the car's windshield.,twists himself in the car then works the weightlifting.,gold0-orig,pos,unl,unl,pos,pos,There's a guy wearing yellow rubber gloves demonstrating how to fix a tire on a car wheel.,He\nanetv_sLtQvJXnrOE,4997,He is unscrewing the screws that hold the plates of the wheel. He,loosens the screws to remove the tire.,can not wipe out.,flips the bike and straightens at the same time.,sets the bicycle down on the other sides of the bike.,,gold0-orig,pos,unl,unl,unl,n/a,He is unscrewing the screws that hold the plates of the wheel.,He\nanetv_0Bd8Js6Pf6E,4537,\"Two tam tams are in a living room. Then, a man\",comes and talks on front the tam tams.,gets back and plays volleyball in two while playing.,is playing flute grinning at the camera.,picks up a costume and throws a denim shirt.,is sitting back in the chair playing and talking to the camera.,gold0-orig,pos,unl,unl,unl,pos,Two tam tams are in a living room.,\"Then, a man\"\nanetv_0Bd8Js6Pf6E,4538,\"Then, a man comes and talks on front the tam tams. After, the man\",plays the tam tam in a living room.,spin one hand and puts his violin back and then spins several times in the air and then throw the disc.,\"adds ingredients and rings, 2 all adds bars.\",play paintball and bow and play and smacking.,walks the violin and continues strumming it.,gold1-orig,pos,unl,unl,unl,unl,\"Then, a man comes and talks on front the tam tams.\",\"After, the man\"\nanetv_5XiBb9XGsg8,6970,A young man is seen speaking to the camera and leads into him trying to solve a rubix cube. The boy then,solves the cube and pans the camera back to show his time.,cuts out a rubik's cube while still speaking to the camera.,sets a rubik's cube down followed by showing off across the screen.,uses the cube to show another while the timer is paused.,places his hands around someone while he tries to solve a rubix cube.,gold1-orig,pos,unl,unl,unl,unl,A young man is seen speaking to the camera and leads into him trying to solve a rubix cube.,The boy then\nlsmdc3090_YOUNG_ADULT-43925,10183,Someone pulls into the parking lot of Champion O'Malley's. She,walks into the sports bar and scans the patrons as she slowly makes her way toward the front.,rides away beyond the clinic's windows.,\"are arriving, lining up, but young men have called someone at a quiet neighborhood.\",commander sits atop the local bench.,center steps away in the sunshine.,gold0-orig,pos,unl,unl,unl,unl,Someone pulls into the parking lot of Champion O'Malley's.,She\nlsmdc3090_YOUNG_ADULT-43925,10189,The screen displays a string of nonsense letters. She,\"slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar.\",tries to change the braid.,gives the girl a straighten up as she walks.,go on the phone.,\"points at the monitor, which reads and howcast youtube.\",gold0-orig,pos,unl,unl,unl,unl,The screen displays a string of nonsense letters.,She\nlsmdc3090_YOUNG_ADULT-43925,10186,A server sets down a napkin and silverware. Someone,glances at two men drinking beers at the bar.,pours a plastic shot on bread.,brings a plastic straw from the bottle's container.,looks down at a cartoon on a counter.,shifts her gaze and saunters over.,gold0-orig,pos,unl,pos,pos,pos,A server sets down a napkin and silverware.,Someone\nlsmdc3090_YOUNG_ADULT-43925,10171,\"Someone gets into the back of a taxi cab. The next morning, someone\",lies face down on her hotel bed still wearing the clothes from the previous night.,sprints through a grocery store and uncomfortably smirks.,plays pinball in the newspaper's office.,\"is in her early thirties, who sits in her chair in an art book.\",,gold0-orig,pos,unl,unl,unl,n/a,Someone gets into the back of a taxi cab.,\"The next morning, someone\"\nlsmdc3090_YOUNG_ADULT-43925,10173,\"Wearing her sweatshirt and sweatpants, she walks up a side walk. Sitting on a public bench, she\",types on her laptop.,looks at a photo pit window on the walls of her dining room where an image of a wall is shown.,\"finds herself on a television set, her back to her ex, who stands on an upper floor.\",mounts a pair of double sided drawers.,crosses to the bulletin board.,gold0-orig,pos,unl,unl,unl,unl,\"Wearing her sweatshirt and sweatpants, she walks up a side walk.\",\"Sitting on a public bench, she\"\nlsmdc3090_YOUNG_ADULT-43925,10190,\"She slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar. He\",smiles at her and approaches her table.,works at top speed.,sits at his desk holding a big book and a dish along with his fingers.,crumples the book closer to the table.,is wearing a t - shirt with a pink cape.,gold0-orig,pos,unl,unl,unl,unl,\"She slowly lowers the phone as a man with brown, wavy hair and a sparse beard walks into the bar.\",He\nlsmdc3090_YOUNG_ADULT-43925,10175,A pedicurist removes the nail polish from her toes. Someone,soaks her feet in bubbling water.,rummages for the blue card.,brushes more of the spare from the shoe and sits.,stares at the prone image.,,gold0-orig,pos,unl,unl,unl,n/a,A pedicurist removes the nail polish from her toes.,Someone\nlsmdc3090_YOUNG_ADULT-43925,10174,\"Sitting on a public bench, she types on her laptop. A pedicurist\",removes the nail polish from her toes.,rises on his headset.,'s magnet is on tv.,lies on top of the blank paper with its conductor's tick - ray crosses.,armored truck arrives at a train house.,gold0-orig,pos,unl,unl,unl,unl,\"Sitting on a public bench, she types on her laptop.\",A pedicurist\nlsmdc3090_YOUNG_ADULT-43925,10176,Someone soaks her feet in bubbling water. The pedicurist,buffs her nails and rubs lotion over her feet and legs.,\"emerges, landing on top of a white super doll.\",returns to the edge of the cot and smiles triumphantly.,photo ends while someone lies in bed.,helps another teen yank the dancer's wrists.,gold0-orig,pos,unl,unl,unl,unl,Someone soaks her feet in bubbling water.,The pedicurist\nlsmdc3090_YOUNG_ADULT-43925,10181,She puts on eye shadow. Someone,examines herself in the mirror and smiles.,\"comes and throws back her spectacles, tying up his scarf.\",goes back with his shoes and supplies.,\"takes another photograph, then turns away.\",steps forward as she turns pensively to look at her.,gold1-orig,pos,unl,unl,pos,pos,She puts on eye shadow.,Someone\nlsmdc3090_YOUNG_ADULT-43925,10177,She drips oil unto her cuticles and trims them. Someone,peers down at her feet and frowns.,lowers her sad eyes.,watches the mail from her father's box.,clutches the children's muscles.,finds someone in the bedroom.,gold1-orig,pos,unl,unl,unl,pos,She drips oil unto her cuticles and trims them.,Someone\nlsmdc3090_YOUNG_ADULT-43925,10178,\"Someone peers down at her feet and frowns. Back at the hotel, she\",shaves her legs in the bath tub.,\"pauses, her jaw hanging slack.\",finds the entrance written on it.,\"glances toward the rooms, then jumps in.\",finds someone dressed in his red silk pajamas.,gold0-orig,pos,unl,unl,unl,unl,Someone peers down at her feet and frowns.,\"Back at the hotel, she\"\nlsmdc3090_YOUNG_ADULT-43925,10180,\"Standing in a mirror, she rubs foundation onto her face. She\",puts on eye shadow.,picks up her long ponytail and hands it to the blonde woman.,peeks in through the windows.,grins as multiple fingers curl into her hair.,,gold0-orig,pos,unl,unl,unl,n/a,\"Standing in a mirror, she rubs foundation onto her face.\",She\nlsmdc3090_YOUNG_ADULT-43925,10172,\"She opens a bottle of diet soda and clutches it with both hands as she drinks. Wearing her sweatshirt and sweatpants, she\",walks up a side walk.,crosses to a laundry room.,\"leans down, her arms folded.\",strides into the bathroom.,,gold0-orig,pos,unl,unl,unl,n/a,She opens a bottle of diet soda and clutches it with both hands as she drinks.,\"Wearing her sweatshirt and sweatpants, she\"\nlsmdc3090_YOUNG_ADULT-43925,10182,\"Someone examines herself in the mirror and smiles. Sitting on her bed, she\",glances at the alarm clock.,pours as the heroes even lighter.,stuffs her chair under the sink and looks through it.,tugs out her bonds.,kisses him passionately on the lips.,gold1-orig,pos,unl,unl,unl,pos,Someone examines herself in the mirror and smiles.,\"Sitting on her bed, she\"\nlsmdc3090_YOUNG_ADULT-43925,10179,\"Back at the hotel, she shaves her legs in the bath tub. Standing in a mirror, she\",rubs foundation onto her face.,blinks her green hair and then dries herself.,takes place in a trailer.,returns to her pajama and herself.,sprays her back with soap.,gold1-reannot,pos,unl,unl,unl,pos,\"Back at the hotel, she shaves her legs in the bath tub.\",\"Standing in a mirror, she\"\nlsmdc3090_YOUNG_ADULT-43925,10191,He smiles at her and approaches her table. Someone,stands as someone hugs her.,perches in the passenger seat.,leans on someone grill.,absently shakes her head and walks away.,stops behind her tray.,gold0-reannot,pos,unl,unl,pos,pos,He smiles at her and approaches her table.,Someone\nlsmdc3090_YOUNG_ADULT-43925,10187,Someone glances at two men drinking beers at the bar. She,looks down and pulls up the front of her dress.,\"rises, apparently quite a bit of vodka.\",gets out of their volkswagen carriage.,gives back to someone.,gives them the old table.,gold1-reannot,pos,unl,unl,unl,pos,Someone glances at two men drinking beers at the bar.,She\nlsmdc3090_YOUNG_ADULT-43925,10185,Someone sits at a table in the center of the room. A server,sets down a napkin and silverware.,hands the table to someone.,reads the name of the television.,crosses a courtyard at the foot of the steps.,taps a cloth on the rack in front of him.,gold0-reannot,pos,unl,unl,unl,unl,Someone sits at a table in the center of the room.,A server\n"
  },
  {
    "path": "evaluation.yaml",
    "content": "description: ESIM validation predictions for SWAG\ntasks:\n  - spec:\n      blueprint: rowanz/swag-baseline-image\n      resultPath: /results\n      args:\n        - python\n        - -m\n        - swag_baselines.esim.predict\n        - swag_baselines/esim/tmp/glove/model.tar.gz\n        - /datasets/val.csv\n        - --include-package\n        - swag_baselines.esim\n        - --output-file\n        - /results/val_predictions.csv\n        - --cuda-device\n        - -1\n      datasetMounts:\n        - datasetId: swag-val\n          containerPath: /datasets/val.csv"
  },
  {
    "path": "pytorch_misc.py",
    "content": "\"\"\"\nMiscellaneous functions that might be useful for pytorch\n\"\"\"\n\nimport h5py\nimport numpy as np\nimport torch\nfrom torch.autograd import Variable\nimport os\nimport dill as pkl\nfrom itertools import tee\nfrom torch import nn\nimport time\n\ndef optimistic_restore(network, state_dict):\n    mismatch = False\n    own_state = network.state_dict()\n    for name, param in state_dict.items():\n        if name not in own_state:\n            print(\"Unexpected key {} in state_dict with size {}\".format(name, param.size()))\n            mismatch = True\n        elif param.size() == own_state[name].size():\n            own_state[name].copy_(param)\n        else:\n            print(\"Network has {} with size {}, ckpt has {}\".format(name,\n                                                                    own_state[name].size(),\n                                                                    param.size()))\n            mismatch = True\n\n    missing = set(own_state.keys()) - set(state_dict.keys())\n    if len(missing) > 0:\n        print(\"We couldn't find {}\".format(','.join(missing)))\n        mismatch = True\n    return not mismatch\n\n\ndef pairwise(iterable):\n    \"s -> (s0,s1), (s1,s2), (s2, s3), ...\"\n    a, b = tee(iterable)\n    next(b, None)\n    return zip(a, b)\n\n\ndef get_ranking(predictions, labels, num_guesses=5):\n    \"\"\"\n    Given a matrix of predictions and labels for the correct ones, get the number of guesses\n    required to get the prediction right per example.\n    :param predictions: [batch_size, range_size] predictions\n    :param labels: [batch_size] array of labels\n    :param num_guesses: Number of guesses to return\n    :return:\n    \"\"\"\n    assert labels.size(0) == predictions.size(0)\n    assert labels.dim() == 1\n    assert predictions.dim() == 2\n\n    values, full_guesses = predictions.topk(predictions.size(1), dim=1)\n    _, ranking = full_guesses.topk(full_guesses.size(1), dim=1, largest=False)\n    gt_ranks = torch.gather(ranking.data, 1, labels.data[:, None]).squeeze()\n\n    guesses = full_guesses[:, :num_guesses]\n    return gt_ranks, guesses\n\n\ndef cache(f):\n    \"\"\"\n    Caches a computation\n    \"\"\"\n\n    def cache_wrapper(fn, *args, **kwargs):\n        if os.path.exists(fn):\n            with open(fn, 'rb') as file:\n                data = pkl.load(file)\n        else:\n            print(\"file {} not found, so rebuilding\".format(fn))\n            data = f(*args, **kwargs)\n            with open(fn, 'wb') as file:\n                pkl.dump(data, file)\n        return data\n\n    return cache_wrapper\n\n\nclass Flattener(nn.Module):\n    def __init__(self):\n        \"\"\"\n        Flattens last 3 dimensions to make it only batch size, -1\n        \"\"\"\n        super(Flattener, self).__init__()\n\n    def forward(self, x):\n        return x.view(x.size(0), -1)\n\n\ndef to_variable(f):\n    \"\"\"\n    Decorator that pushes all the outputs to a variable\n    :param f:\n    :return:\n    \"\"\"\n\n    def variable_wrapper(*args, **kwargs):\n        rez = f(*args, **kwargs)\n        if isinstance(rez, tuple):\n            return tuple([Variable(x) for x in rez])\n        return Variable(rez)\n\n    return variable_wrapper\n\n\ndef arange(base_tensor, n=None):\n    new_size = base_tensor.size(0) if n is None else n\n    new_vec = base_tensor.new(new_size).long()\n    torch.arange(0, new_size, out=new_vec)\n    return new_vec\n\n\ndef to_onehot(vec, num_classes, on_fill=1, off_fill=0):\n    \"\"\"\n    Creates a [size, num_classes] torch FloatTensor where\n    one_hot[i, vec[i]] = on_fill\n    and off_fill otherwise.\n\n\n    :param vec: 1d torch LongTensor (not a variable)\n    :param num_classes: int\n    :param on_fill: what to fill the things that are on\n    :param off_fill: fill things that are off\n    :return:\n    \"\"\"\n    onehot_result = vec.new(vec.size(0), num_classes).float().fill_(off_fill)\n    arange_inds = vec.new(vec.size(0))\n    torch.arange(0, vec.size(0), out=arange_inds)\n\n    onehot_result[arange_inds, vec] = on_fill\n    return onehot_result\n\n\ndef save_net(fname, net):\n    h5f = h5py.File(fname, mode='w')\n    for k, v in list(net.state_dict().items()):\n        h5f.create_dataset(k, data=v.cpu().numpy())\n\n\ndef load_net(fname, net):\n    h5f = h5py.File(fname, mode='r')\n    for k, v in list(net.state_dict().items()):\n        param = torch.from_numpy(np.asarray(h5f[k]))\n\n        if v.size() != param.size():\n            print(\"On k={} desired size is {} but supplied {}\".format(k, v.size(), param.size()))\n        else:\n            v.copy_(param)\n\n\ndef batch_index_iterator(len_l, batch_size, skip_end=True):\n    \"\"\"\n    Provides indices that iterate over a list\n    :param len_l: int representing size of thing that we will\n        iterate over\n    :param batch_size: size of each batch\n    :param skip_end: if true, don't iterate over the last batch\n    :return: A generator that returns (start, end) tuples\n        as it goes through all batches\n    \"\"\"\n    iterate_until = len_l\n    if skip_end:\n        iterate_until = (len_l // batch_size) * batch_size\n\n    for b_start in range(0, iterate_until, batch_size):\n        yield (b_start, min(b_start + batch_size, len_l))\n\n\ndef batch_map(f, a, batch_size):\n    \"\"\"\n    Maps f over the array a in chunks of batch_size.\n    :param f: function to be applied. Must take in a block of\n            (batch_size, dim_a) and map it to (batch_size, something).\n    :param a: Array to be applied over of shape (num_rows, dim_a).\n    :param batch_size: size of each array\n    :return: Array of size (num_rows, something).\n    \"\"\"\n    rez = []\n    for s, e in batch_index_iterator(a.size(0), batch_size, skip_end=False):\n        print(\"Calling on {}\".format(a[s:e].size()))\n        rez.append(f(a[s:e]))\n\n    return torch.cat(rez)\n\n\ndef const_row(fill, l, volatile=False):\n    input_tok = Variable(torch.LongTensor([fill] * l), volatile=volatile)\n    if torch.cuda.is_available():\n        input_tok = input_tok.cuda()\n    return input_tok\n\n\ndef print_para(model):\n    \"\"\"\n    Prints parameters of a model\n    :param opt:\n    :return:\n    \"\"\"\n    st = {}\n    strings = []\n    total_params = 0\n    for p_name, p in model.named_parameters():\n\n        if not ('bias' in p_name.split('.')[-1] or 'bn' in p_name.split('.')[-1]):\n            st[p_name] = ([str(x) for x in p.size()], np.prod(p.size()), p.requires_grad)\n        total_params += np.prod(p.size())\n    for p_name, (size, prod, p_req_grad) in sorted(st.items(), key=lambda x: -x[1][1]):\n        strings.append(\"{:<60s}: {:<16s}({:8d}) ({})\".format(\n            p_name, '[{}]'.format(','.join(size)), prod, 'grad' if p_req_grad else '    '\n        ))\n    return '\\n {:.1f}M total parameters \\n ----- \\n \\n{}'.format(total_params / 1000000.0, '\\n'.join(strings))\n\n\ndef accuracy(output, target, topk=(1,)):\n    \"\"\"Computes the precision@k for the specified values of k\"\"\"\n    maxk = max(topk)\n    batch_size = target.size(0)\n\n    _, pred = output.topk(maxk, 1, True, True)\n    pred = pred.t()\n    correct = pred.eq(target.view(1, -1).expand_as(pred))\n\n    res = []\n    for k in topk:\n        correct_k = correct[:k].view(-1).float().sum(0)\n        res.append(correct_k.mul_(100.0 / batch_size))\n    return res\n\n\ndef nonintersecting_2d_inds(x):\n    \"\"\"\n    Returns np.array([(a,b) for a in range(x) for b in range(x) if a != b]) efficiently\n    :param x: Size\n    :return: a x*(x-1) array that is [(0,1), (0,2)... (0, x-1), (1,0), (1,2), ..., (x-1, x-2)]\n    \"\"\"\n    rs = 1 - np.diag(np.ones(x, dtype=np.int32))\n    relations = np.column_stack(np.where(rs))\n    return relations\n\n\ndef intersect_2d(x1, x2):\n    \"\"\"\n    Given two arrays [m1, n], [m2,n], returns a [m1, m2] array where each entry is True if those\n    rows match.\n    :param x1: [m1, n] numpy array\n    :param x2: [m2, n] numpy array\n    :return: [m1, m2] bool array of the intersections\n    \"\"\"\n    if x1.shape[1] != x2.shape[1]:\n        raise ValueError(\"Input arrays must have same #columns\")\n\n    # This performs a matrix multiplication-esque thing between the two arrays\n    # Instead of summing, we want the equality, so we reduce in that way\n    res = (x1[..., None] == x2.T[None, ...]).all(1)\n    return res\n\n\ndef np_to_variable(x, is_cuda=True, dtype=torch.FloatTensor):\n    v = Variable(torch.from_numpy(x).type(dtype))\n    if is_cuda:\n        v = v.cuda()\n    return v\n\n\ndef gather_nd(x, index):\n    \"\"\"\n\n    :param x: n dimensional tensor [x0, x1, x2, ... x{n-1}, dim]\n    :param index: [num, n-1] where each row contains the indices we'll use\n    :return: [num, dim]\n    \"\"\"\n    nd = x.dim() - 1\n    assert nd > 0\n    assert index.dim() == 2\n    assert index.size(1) == nd\n    dim = x.size(-1)\n\n    sel_inds = index[:, nd - 1].clone()\n    mult_factor = x.size(nd - 1)\n    for col in range(nd - 2, -1, -1):  # [n-2, n-3, ..., 1, 0]\n        sel_inds += index[:, col] * mult_factor\n        mult_factor *= x.size(col)\n\n    grouped = x.view(-1, dim)[sel_inds]\n    return grouped\n\n\ndef enumerate_by_image(im_inds):\n    im_inds_np = im_inds.cpu().numpy()\n    initial_ind = int(im_inds_np[0])\n    s = 0\n    for i, val in enumerate(im_inds_np):\n        if val != initial_ind:\n            yield initial_ind, s, i\n            initial_ind = int(val)\n            s = i\n    yield initial_ind, s, len(im_inds_np)\n    # num_im = im_inds[-1] + 1\n    # # print(\"Num im is {}\".format(num_im))\n    # for i in range(num_im):\n    #     # print(\"On i={}\".format(i))\n    #     inds_i = (im_inds == i).nonzero()\n    #     if inds_i.dim() == 0:\n    #         continue\n    #     inds_i = inds_i.squeeze(1)\n    #     s = inds_i[0]\n    #     e = inds_i[-1] + 1\n    #     # print(\"On i={} we have s={} e={}\".format(i, s, e))\n    #     yield i, s, e\n\n\ndef diagonal_inds(tensor):\n    \"\"\"\n    Returns the indices required to go along first 2 dims of tensor in diag fashion\n    :param tensor: thing\n    :return:\n    \"\"\"\n    assert tensor.dim() >= 2\n    assert tensor.size(0) == tensor.size(1)\n    size = tensor.size(0)\n    arange_inds = tensor.new(size).long()\n    torch.arange(0, tensor.size(0), out=arange_inds)\n    return (size + 1) * arange_inds\n\n\ndef enumerate_imsize(im_sizes):\n    s = 0\n    for i, (h, w, scale, num_anchors) in enumerate(im_sizes):\n        na = int(num_anchors)\n        e = s + na\n        yield i, s, e, h, w, scale, na\n\n        s = e\n\n\ndef argsort_desc(scores):\n    \"\"\"\n    Returns the indices that sort scores descending in a smart way\n    :param scores: Numpy array of arbitrary size\n    :return: an array of size [numel(scores), dim(scores)] where each row is the index you'd\n             need to get the score.\n    \"\"\"\n    return np.column_stack(np.unravel_index(np.argsort(-scores.ravel()), scores.shape))\n\n\ndef unravel_index(index, dims):\n    unraveled = []\n    index_cp = index.clone()\n    for d in dims[::-1]:\n        unraveled.append(index_cp % d)\n        index_cp /= d\n    return torch.cat([x[:, None] for x in unraveled[::-1]], 1)\n\n\ndef de_chunkize(tensor, chunks):\n    s = 0\n    for c in chunks:\n        yield tensor[s:(s + c)]\n        s = s + c\n\n\ndef random_choose(tensor, num):\n    \"randomly choose indices\"\n    num_choose = min(tensor.size(0), num)\n    if num_choose == tensor.size(0):\n        return tensor\n\n    # Gotta do this in numpy because of https://github.com/pytorch/pytorch/issues/1868\n    rand_idx = np.random.choice(tensor.size(0), size=num, replace=False)\n    rand_idx = torch.LongTensor(rand_idx).cuda(tensor.get_device())\n    chosen = tensor[rand_idx].contiguous()\n\n    # rand_values = tensor.new(tensor.size(0)).float().normal_()\n    # _, idx = torch.sort(rand_values)\n    #\n    # chosen = tensor[idx[:num]].contiguous()\n    return chosen\n\n\ndef transpose_packed_sequence_inds(lengths):\n    \"\"\"\n    Goes from a TxB packed sequence to a BxT or vice versa. Assumes that nothing is a variable\n    :param ps: PackedSequence\n    :return:\n    \"\"\"\n\n    new_inds = []\n    new_lens = []\n    cum_add = np.cumsum([0] + lengths)\n    max_len = lengths[0]\n    length_pointer = len(lengths) - 1\n    for i in range(max_len):\n        while length_pointer > 0 and lengths[length_pointer] <= i:\n            length_pointer -= 1\n        new_inds.append(cum_add[:(length_pointer + 1)].copy())\n        cum_add[:(length_pointer + 1)] += 1\n        new_lens.append(length_pointer + 1)\n    new_inds = np.concatenate(new_inds, 0)\n    return new_inds, new_lens\n\n\ndef right_shift_packed_sequence_inds(lengths):\n    \"\"\"\n    :param lengths: e.g. [2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1]\n    :return: perm indices for the old stuff (TxB) to shift it right 1 slot so as to accomodate\n             BOS toks\n\n             visual example: of lengths = [4,3,1,1]\n    before:\n\n        a (0)  b (4)  c (7) d (8)\n        a (1)  b (5)\n        a (2)  b (6)\n        a (3)\n\n    after:\n\n        bos a (0)  b (4)  c (7)\n        bos a (1)\n        bos a (2)\n        bos\n    \"\"\"\n    cur_ind = 0\n    inds = []\n    for (l1, l2) in zip(lengths[:-1], lengths[1:]):\n        for i in range(l2):\n            inds.append(cur_ind + i)\n        cur_ind += l1\n    return inds\n\n\ndef clip_grad_norm(named_parameters, max_norm, clip=False, verbose=False):\n    r\"\"\"Clips gradient norm of an iterable of parameters.\n\n    The norm is computed over all gradients together, as if they were\n    concatenated into a single vector. Gradients are modified in-place.\n\n    Arguments:\n        parameters (Iterable[Variable]): an iterable of Variables that will have\n            gradients normalized\n        max_norm (float or int): max norm of the gradients\n\n    Returns:\n        Total norm of the parameters (viewed as a single vector).\n    \"\"\"\n    max_norm = float(max_norm)\n\n    total_norm = 0\n    param_to_norm = {}\n    param_to_shape = {}\n    for n, p in named_parameters:\n        if p.grad is not None:\n            param_norm = p.grad.data.norm(2)\n            total_norm += param_norm ** 2\n            param_to_norm[n] = param_norm\n            param_to_shape[n] = tuple(p.size())\n\n    total_norm = total_norm ** (1. / 2)\n    clip_coef = max_norm / (total_norm + 1e-6)\n    if clip_coef < 1 and clip:\n        for _, p in named_parameters:\n            if p.grad is not None:\n                p.grad.data.mul_(clip_coef)\n\n    if verbose:\n        print('---Total norm {:.3f} clip coef {:.3f}-----------------'.format(total_norm, clip_coef))\n        for name, norm in sorted(param_to_norm.items(), key=lambda x: -x[1]):\n            print(\"{:<60s}: {:.3f}, ({}: {})\".format(name, norm, np.prod(param_to_shape[name]), param_to_shape[name]))\n        print('-------------------------------', flush=True)\n\n    return total_norm\n\ndef time_batch(gen, reset_every=100):\n    \"\"\"\n    Gets timing info for a batch\n    :param gen:\n    :param reset_every: How often we'll reset\n    :return:\n    \"\"\"\n    start = time.time()\n    start_t = 0\n    for i, item in enumerate(gen):\n        time_per_batch = (time.time() - start) / (i+1-start_t)\n        yield time_per_batch, item\n        if i % reset_every == 0:\n            start = time.time()\n            start_t = i\n\ndef update_lr(optimizer, lr=1e-4):\n    print(\"------ Learning rate -> {}\".format(lr))\n    for param_group in optimizer.param_groups:\n        param_group['lr'] = lr\n\ndef all_upper_triangular_pairs(gen):\n    \"\"\" Iterates over all pairs from a generator where x < y \"\"\"\n    hist = []\n    for g in gen:\n        for h in hist:\n            yield (h, g)\n        hist.append(g)\n\ndef pad_last_dim(tensor, new_size):\n    \"\"\"\n    Pads an n-dimensional tensor by 0's in the last dimension\n    :param tensor: N-dimensional tensor\n    :param new_size: how much the last dim should be\n    :return: padded tensor\n    \"\"\"\n    assert tensor.size(-1) < new_size\n    to_add = tensor.new(tensor.size()[:-1] + (new_size-tensor.size(-1),)).fill_(0)\n    return torch.cat((tensor, to_add), -1)\n"
  },
  {
    "path": "raw_data/events.py",
    "content": "\"\"\"\nDataloader for event data. this includes\n\n- rocstories\n- didemo\n- MPII\n- activitynet captions\n\"\"\"\nimport pandas as pd\nimport json\nfrom collections import defaultdict\nimport numpy as np\nimport re\nimport os\nfrom tqdm import tqdm\nfrom allennlp.common.util import get_spacy_model\nfrom tqdm import tqdm\nfrom unidecode import unidecode\nfrom num2words import num2words\n\n# TODO! change with where you're keeping the data\nraise ValueError(\"you should make sure the data you want is here. then you can delete this error\")\nDATA_PATH = os.path.dirname(os.path.realpath(__file__))\n\ndef remove_allcaps(sent):\n    \"\"\"\n    Given a sentence, filter it so that it doesn't contain some words that are ALLcaps\n    :param sent: string, like SOMEONE wheels SOMEONE on, mouthing silent words of earnest prayer.\n    :return:                  Someone wheels someone on, mouthing silent words of earnest prayer.\n    \"\"\"\n    # Remove all caps\n    def _sanitize(word, is_first):\n        if word in (\"I\"):\n            return word\n\n        num_capitals = len([x for x in word if not x.islower()])\n        if num_capitals > len(word) // 2:\n            # We have an all caps word here.\n            if is_first:\n                return word[0] + word[1:].lower()\n            return word.lower()\n        return word\n\n    return ' '.join([_sanitize(word, i == 0) for i, word in enumerate(sent.split(' '))])\n\n\ndef load_rocstories(split):\n    \"\"\"\n    Load rocstories dataset\n    :param split: in train, val, or test. note that training doesn't have the endings.\n    for now we'll remove the endings\n    :return:\n    \"\"\"\n    assert split in ('train', 'val', 'test')\n\n    if split in 'train':\n        df = pd.concat((\n            pd.read_csv(os.path.join(DATA_PATH, 'rocstories', 'ROCStories__spring2016 - ROCStories_spring2016.csv')),\n            pd.read_csv(os.path.join(DATA_PATH, 'rocstories', 'ROCStories_winter2017 - ROCStories_winter2017.csv')),\n        ), 0)\n    else:\n        df = pd.read_csv(\n            os.path.join(DATA_PATH, 'rocstories', 'cloze_test_{}__spring2016 - cloze_test_ALL_{}.csv'.format(\n                split, split)))\n\n        # FOR NOW REMOVE THE ENDINGS AND PRETEND IT'S THE SAME AS TRAINING DATA\n        df['InputSentence5'] = df.apply(\n            lambda x: [x['RandomFifthSentenceQuiz1'], x['RandomFifthSentenceQuiz2']][x['AnswerRightEnding'] - 1],\n            axis=1)\n        df = df[['InputStoryid'] + ['InputSentence{}'.format(i + 1) for i in range(5)]]\n        df.columns = ['storyid'] + ['sentence{}'.format(i + 1) for i in range(5)]\n\n    rocstories = []\n    for i, item in df.iterrows():\n        rocstories.append(\n            {'id': item['storyid'], 'sentences': [item['sentence{}'.format(i + 1)] for i in range(5)]})\n    return rocstories\n\n\n# def load_rocstories_nogender(split):\n#     spacy = get_spacy_model(\"en_core_web_sm\", pos_tags=False, parse=False, ner=True)\n#     import gender_guesser.detector as gender\n#     d = gender.Detector()\n#\n#     def _replace(name, is_cap=False):\n#         gend = d.get_gender(name)\n#         if gend in ('male', 'mostly_male', 'andy'):\n#             return 'The man' if is_cap else 'the man'\n#         if gend in ('female', 'mostly_female'):\n#             return 'The woman' if is_cap else 'the woman'\n#         return name\n#\n#     def _fix_sentence(sent):\n#         doc = spacy(sent)\n#         sentence = doc.text\n#         for ent in doc.ents:\n#             if ent.label_ == 'PERSON':\n#                 repl_text_cap = _replace(ent.text, is_cap=True)\n#                 if repl_text_cap != ent.text:\n#                     repl_text_lower = _replace(ent.text, is_cap=False)\n#                     sentence = re.sub('^' + ent.text, repl_text_cap, sentence)\n#                     sentence = re.sub(ent.text, repl_text_lower, sentence)\n#         return sentence\n#\n#     roc = load_rocstories(split)\n#     for story in tqdm(roc):\n#         for i in range(5):\n#             story['sentences'][i] = _fix_sentence(story['sentences'][i])\n#     return roc\n\n\ndef _to_time(pandas_col):\n    offset = pd.to_datetime('00.00.00.000', format='%H.%M.%S.%f')\n    return (pd.to_datetime(pandas_col, format='%H.%M.%S.%f') - offset).dt.total_seconds()\n\n\ndef _lsmdc_to_list(lsmdc, lsmdc_window=20):\n    \"\"\"\n    :param lsmdc: Dataframe\n    :param lmsdc_window: # We'll allow lsmdc_window seconds of a gap between chains\n    :return: a list of annotations\n    \"\"\"\n    movie = ''\n    t_end = 0\n    lsmdc_list = []\n    cur_chain = {'sentences': []}\n    for (i, item) in lsmdc.iterrows():\n        # If new movie then push\n        if movie != item['movie'] or item['start_aligned'] > t_end + lsmdc_window:\n            if len(cur_chain['sentences']) > 1:\n                lsmdc_list.append(cur_chain)\n            cur_chain = {'sentences': [],\n                         'timestamps': [],\n                         'id': '{}-{}'.format(item['movie'], i)}\n            movie = item['movie']\n        t_end = item['end_aligned']\n        cur_chain['sentences'].append(item['sentence'])\n        cur_chain['timestamps'].append((item['start_aligned'], item['end_aligned']))\n        cur_chain['duration'] = item['end_aligned'] - cur_chain['timestamps'][0][0]\n    lsmdc_list.append(cur_chain)\n    return lsmdc_list\n\n\ndef load_mpii(split):\n    \"\"\"\n    Load MPII dataset with the <person> </person> annotations\n    :return:\n    \"\"\"\n    lsmdc = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'annotations-original-coreferences-ner.csv'), sep='\\t',\n                        header=None, names=['id', 'sentence'])\n    lsmdc['movie'] = lsmdc['id'].apply(lambda x: '_'.join(x.split('_')[:-1]))\n    lsmdc['start_aligned'] = _to_time(lsmdc['id'].apply(lambda x: x.split('_')[-1].split('-')[0]))\n    lsmdc['end_aligned'] = _to_time(lsmdc['id'].apply(lambda x: x.split('_')[-1].split('-')[1]))\n\n    datasplit = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'dataSplit.txt'), sep='\\t', header=None,\n                            names=['movie', 'split'])\n\n    include_these = set([m['movie'] for _, m in datasplit.iterrows()\n                         if m['split'] == {'train': 'training', 'val': 'validation', 'test': 'test'}[split]])\n\n    lsmdc = lsmdc[lsmdc.movie.isin(include_these)]\n\n    assert len(include_these) == len(set(lsmdc['movie'].values))\n\n    # This is a bit crude but whatever\n    def _pop_tags(sent):\n        sent_no_person = re.sub(r'</?PERSON>', '', sent)\n\n        # Match everything of the form She<BLAH BLAH>. sometimes there is she<> so we dont want that\n        sent_no_pronoun = re.sub(r'\\w*<([^<>]+?)>', lambda x: x[1], sent_no_person)\n\n        # Some have brackets in the original sentences so get rid of those\n        sent_no_pronoun = re.sub(r'<>', '', sent_no_pronoun)\n        return sent_no_pronoun\n\n    lsmdc['sentence'] = lsmdc['sentence'].apply(_pop_tags)\n    return _lsmdc_to_list(lsmdc)\n\n\ndef load_mpii_depersonized(split):\n    \"\"\"\n    Loads the MPII dataset, but remove names. Instead we'll replace them with their genders. EX <PERSON>Helen</PERSON> gets replaced with the woman.\n    :return:\n    \"\"\"\n    lsmdc = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'annotations-original-coreferences-ner.csv'), sep='\\t',\n                        header=None, names=['id', 'sentence'])\n    lsmdc['movie'] = lsmdc['id'].apply(lambda x: '_'.join(x.split('_')[:-1]))\n    lsmdc['start_aligned'] = _to_time(lsmdc['id'].apply(lambda x: x.split('_')[-1].split('-')[0]))\n    lsmdc['end_aligned'] = _to_time(lsmdc['id'].apply(lambda x: x.split('_')[-1].split('-')[1]))\n\n    datasplit = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'dataSplit.txt'), sep='\\t', header=None,\n                            names=['movie', 'split'])\n\n    include_these = set([m['movie'] for _, m in datasplit.iterrows()\n                         if m['split'] == {'train': 'training', 'val': 'validation', 'test': 'test'}[split]])\n\n    lsmdc = lsmdc[lsmdc.movie.isin(include_these)]\n\n    movies_depersonized = []\n    for movie_name, movie_df in tqdm(lsmdc.groupby('movie')):\n        chars = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'coref_characters',\n                                         '{}-characters.csv'.format(movie_name)),\n                            sep='\\t', header=None, names=['longname', 'shortname', 'gender'],\n                            index_col='longname')\n        char2gender = {char: gender for char, gender in chars['gender'].items()}\n\n        def _replace(name, is_cap=False):\n            if name not in char2gender:\n                return 'Someone' if is_cap else 'someone'\n            if char2gender[name] == 'W':\n                return 'The woman' if is_cap else 'the woman'\n            return 'The man' if is_cap else 'the man'\n\n        def _pop_tags(sent):\n            # Match the start of the string.\n            sent0 = re.sub(\n                r'^<PERSON>(.+?)</PERSON>',\n                lambda match: _replace(match[1], is_cap=True),\n                sent)\n\n            # Match other parts of the string\n            sent1 = re.sub(\n                r'<PERSON>(.+?)</PERSON>',\n                lambda match: _replace(match[1], is_cap=False),\n                sent0)\n\n            # Match everything of the form She<BLAH BLAH>.\n            # sometimes there is she<> so we dont want that\n            sent2 = re.sub(r'(\\w*)<[^<>]+?>', lambda x: x[1], sent1)\n\n            # Some have brackets in the original sentences so get rid of those\n            sent3 = re.sub(r'<>', '', sent2)\n\n            sent4 = remove_allcaps(sent3)\n\n            # This is really minor but if it ends with \" .\" then change that.\n            sent5 = sent4[:-1].rstrip() + '.' if sent4.endswith(' .') else sent4\n            # # Verbose\n            # print(\"----\\n{}->{}->{}->{}->{}\\n\".format(sent0, sent1, sent2, sent3, sent4))\n            return sent5\n\n        movie_df_copy = movie_df.copy()\n        movie_df_copy['sentence'] = movie_df_copy['sentence'].apply(_pop_tags)\n        movies_depersonized.append(movie_df_copy)\n\n    return _lsmdc_to_list(pd.concat(movies_depersonized, 0))\n\n\ndef load_visual_madlibs(split):\n    \"\"\"\n    Loads the Visual Madlibs dataset, including captions from COCO as the premises\n    :return:\n    \"\"\"\n    # Let's make sure each contains a verb.\n    spacy = get_spacy_model(\"en_core_web_sm\", pos_tags=True, parse=True, ner=False)\n    from nltk.tokenize.moses import MosesDetokenizer\n    # from pattern.en import conjugate, verbs, PRESENT\n    detokenizer = MosesDetokenizer()\n\n    def _sentence_contains_verb(sent):\n        spacy_parse = spacy(sent)\n        for tok in spacy_parse:\n            if tok.pos_ == 'VERB' and tok.lemma_ not in ('is', 'has'):\n                return True\n        return False\n\n    def order_sents(sent_list):\n        sentence_has_verb = np.array([_sentence_contains_verb(s) for i, s in enumerate(sent_list)])\n        sentence_length = np.array([len(x) for x in sent_list])\n\n        sentence_score = sentence_has_verb.astype(np.float32) + sentence_length / sentence_length.max()\n        best_to_worst = np.argsort(-sentence_score).tolist()\n        return [sent_list[i] for i in best_to_worst]\n\n    futures_fn = {\n        'train': 'tr_futures.json',\n        'val': 'val_easy_multichoice_futures.json',\n        'test': 'val_hard_multichoice_futures.json',\n    }[split]\n    key = {'train': 'tr_futures',\n           'val': \"multichoice_futures\",\n           'test': \"multichoice_futures\",\n           }[split]\n\n    id2futureandpast = defaultdict(lambda: {'captions': [], 'future': [], 'past': []})\n    # with open(os.path.join(DATA_PATH, 'visualmadlibs', 'tr_pasts.json'), 'r') as f:\n    #     for item in json.load(f)['tr_pasts']:\n    #         id2futureandpast[item['image_id']]['past'] = order_sents(item['fitbs'])\n    with open(os.path.join(DATA_PATH, 'visualmadlibs', futures_fn), 'r') as f:\n        for item in json.load(f)[key]:\n            if split == 'train':\n                id2futureandpast[item['image_id']]['future'] = order_sents(item['fitbs'])\n            else:\n                id2futureandpast[item['image_id']]['future'] = [item['pos']]\n\n    with open(os.path.join(DATA_PATH, 'coco', 'dataset_coco.json'), 'r') as f:\n        imgid2caps = {item['cocoid']: ([sent['raw'] for sent in item['sentences']],\n                                       item['split'])\n                      for item in json.load(f)['images']}\n\n    vml = []\n    for k in tqdm(id2futureandpast):\n        for cap, future in zip(order_sents(imgid2caps[k][0]), id2futureandpast[k]['future']):\n            # Spacy parse the future sentence, change to present tense\n            spacy_parse = [(x.orth_, x.pos_, x.dep_) for x in spacy(future)]\n\n            # If there's a ROOT that doesn't start with ing, parse that\n            is_match = False\n            for i, (word, pos, dep) in enumerate(spacy_parse):\n                if pos == 'VERB' and dep == 'ROOT' and not word.endswith('ing'):\n                    spacy_parse[i] = (conjugate(word, tense=PRESENT), pos, dep)\n                    is_match = True\n\n            # Else convert AUXes\n            if not is_match:\n                for i, (word, pos, dep) in enumerate(spacy_parse):\n                    if pos == 'VERB' and dep == 'aux':\n                        spacy_parse[i] = (conjugate(word, tense=PRESENT), pos, dep)\n\n            future_fixed = detokenizer.detokenize([x[0] for x in spacy_parse], return_str=True)\n            print(\"{} -> {}\".format(future, future_fixed), flush=True)\n\n            future_fixed = future_fixed[0].capitalize() + future_fixed[1:]\n            vml.append({'id': k, 'sentences': [cap, future_fixed]})\n\n    # ABANDON THIS FOR NOW.\n\n    #\n    #     id2futureandpast[k]['captions'] = (order_sents(imgid2caps[k][0]), imgid2caps[k][1])\n    #\n    #\n    # # Join everything\n    # vml = []\n    # for id, val in id2futureandpast.items():\n    #     vml.append({'id': id, 'sentences': ['{} Afterwards, {}.'.format(cap, future)\n    #                                         for cap, future in zip(\n    #             val['captions'][0], val['future'])]})\n    # import ipdb\n    # ipdb.set_trace()\n    return vml\n\n\ndef load_vist(split):\n    \"\"\"\n    Loads the VIST dataset\n    :return:\n    \"\"\"\n    id_to_annos = defaultdict(list)\n    with open(os.path.join(DATA_PATH, 'vist', '{}.story-in-sequence.json'.format(split)), 'r') as f:\n        for item in json.load(f)['annotations']:\n            assert len(item) == 1\n            id_to_annos[int(item[0]['story_id'])].append(item[0])\n    for k in id_to_annos:\n        id_to_annos[k] = sorted(id_to_annos[k], key=lambda x: x['story_id'])\n\n    res = [{'id': id, 'sentences': [x['original_text'] for x in v]} for id, v in id_to_annos.items()]\n    return res\n\ndef load_lsmdc(split):\n    \"\"\"\n    Loads LSMDC with <someone> annotations\n    #TODO: investigate filtering things.\n    # 1: all sentences need verbs\n    # 2: filter out all sentences that don't begin with a capital letter (these are often incomplete)\n    # 3. all sentences need objects\n\n    :return:\n    \"\"\"\n    lsmdc = pd.read_csv(os.path.join(DATA_PATH, 'movies', 'LSMDC16_annos_{}.csv'.format(\n        {'train': 'training', 'val': 'val', 'test': 'test'}[split])),\n                        sep='\\t',\n                        header=None,\n                        names=['movie', 'start_aligned', 'end_aligned', 'start_extracted', 'end_extracted', 'sentence'])\n    lsmdc['movie'] = lsmdc['movie'].apply(lambda x: '_'.join(x.split('_')[:-1]))\n    del lsmdc['start_extracted']\n    del lsmdc['end_extracted']\n\n    lsmdc['start_aligned'] = _to_time(lsmdc['start_aligned'])\n    lsmdc['end_aligned'] = _to_time(lsmdc['end_aligned'])\n    def _fix_sent(sent):\n        sent1 = remove_allcaps(sent)\n         # This is really minor but if it ends with \" .\" then change that.\n        sent2 = sent1[:-1].rstrip() + '.' if sent1.endswith(' .') else sent1\n        return unidecode(sent2)\n\n    from nltk.tokenize.moses import MosesDetokenizer\n    detokenizer = MosesDetokenizer()\n    spacy = get_spacy_model(\"en_core_web_sm\", pos_tags=True, parse=True, ner=False)\n    def check_if_sent_is_grammatical(sent):\n        if sent[0].islower():\n            print(\"{} is not grammatical (lowercase start)\".format(sent))\n            return ''\n        # Sanitize the sentence\n        sent_sanitized = remove_allcaps(sent)\n\n        # Loop over subsentences to find a good one\n        for sent_parsed in spacy(sent_sanitized).sents:\n            root = sent_parsed.root\n            if root.pos_ != 'VERB':\n                print(\"{} is not grammatical (noverb)\".format(sent))\n                pass\n            elif sent_parsed[0].orth_ in ('and', 'where', 'when'):\n                print(\"{} is not grammatical (and)\".format(sent))\n                pass\n            elif sent_parsed[-2].orth_ in ('and', 'then'):\n                print(\"{} is not grammatical (and then)\".format(sent))\n                pass\n            elif not any([x.dep_ in ('nsubj', 'nsubjpass') for x in sent_parsed]):\n                print(\"{} is not grammatical (no subj)\".format(sent))\n                pass\n            else:\n                print('good! {}'.format(sent))\n                return unidecode(detokenizer.detokenize([x.orth_ for x in sent_parsed], return_str=True))\n        return ''\n\n    lsmdc['sentence'] = lsmdc['sentence'].apply(check_if_sent_is_grammatical)\n    lsmdc = lsmdc[lsmdc['sentence'].str.len() > 0]\n    return _lsmdc_to_list(lsmdc)\n\n\ndef load_didemo(split):\n    with open(os.path.join(DATA_PATH, 'didemo', '{}_data.json'.format(split)), 'r') as f:\n        didemo = json.load(f)\n    all_didemo = defaultdict(list)\n    for item in didemo:\n        # Make didemo look the same as activitynet captions\n        timestamp = np.round(np.array(item['times']).mean(0)) * 5\n        timestamp[1] += 5  # technically it can be less if we're at the last segment but whatever\n        item['timestamp'] = timestamp.tolist()\n        all_didemo[item['dl_link']].append(item)\n\n    didemo_list = []\n    for k, vid in sorted(all_didemo.items(), key=lambda x: x[0]):\n        clip_info = {'duration': max([item['timestamp'][1] for item in vid]),\n                     'sentences': [],\n                     'timestamps': [],\n                     'id': k}\n        for item in sorted(vid, key=lambda x: x['timestamp'][0]):\n            clip_info['sentences'].append(item['description'])\n            clip_info['timestamps'].append(item['timestamp'])\n        didemo_list.append(clip_info)\n    return didemo_list\n\n\ndef load_anet(split):\n    with open(os.path.join(DATA_PATH, 'activitynetcaptions', '{}.json'.format(\n            {'train': 'train', 'val': 'val_1', 'test': 'val_2'}[split])), 'r') as f:\n        anet = json.load(f)\n    for k, v in anet.items():\n        v['id'] = k\n        v['sentences'] = [remove_allcaps(unidecode(x.strip())) for x in v['sentences']]\n    anet = [anet[k] for k in sorted(anet.keys())]\n    return anet\n\n\ndef load_ava(split):\n    assert split in ('val', 'test')\n    ava_annos = pd.read_csv(os.path.join(DATA_PATH, 'ava', 'ava_{}_v2.0.csv'.format(split)),\n                            sep=',',\n                            header=None,\n                            names=['video_id', 'middle_frame_timestamp', 'x1', 'y1', 'x2', 'y2', 'action_id'])\n\n    key = pd.read_csv(os.path.join(DATA_PATH, 'ava', 'ava_action_list_v2.0.csv'), index_col='label_id')\n\n    ava_annos['action'] = ava_annos['action_id'].replace({i: item['label_name'] for i, item in key.iterrows()})\n    ava_annos_grouped = ava_annos.groupby('video_id')\n\n    for name, group in ava_annos_grouped:\n        results_by_time = {}\n        for timestep, subgroup in group.groupby('middle_frame_timestamp'):\n            results_by_time[timestep] = set(subgroup['action'].unique().tolist())\n\ndef n2w_1k(x, use_ordinal=False):\n    if x > 1000:\n        return ''\n    return num2words(x, to='ordinal' if use_ordinal else 'cardinal')\n\ndef _postprocess(sentence):\n    \"\"\"\n    make sure punctuation is followed by a space\n    :param sentence:\n    :return:\n    \"\"\"\n    # Aggressively get rid of some punctuation markers\n    sent0 = re.sub(r'^.*(\\\\|/|!!!|~|=|#|@|\\*|¡|©|¿|«|»|¬|{|}|\\||\\(|\\)|\\+|\\]|\\[).*$', ' ', sentence, flags=re.MULTILINE|re.IGNORECASE)\n\n    # Less aggressively get rid of quotes, apostrophes\n    sent1 = re.sub(r'\"', ' ', sent0)\n    sent2 = re.sub(r'`', '\\'', sent1)\n\n    # match ordinals\n    sent3 = re.sub(r'(\\d+(?:rd|st|nd))', lambda x: n2w_1k(int(x.group(0)[:-2]), use_ordinal=True), sent2)\n\n\n    #These things all need to be followed by spaces or else we'll run into problems\n    sent4 = re.sub(r'[:;,\\\"\\!\\.\\-\\?](?! )', lambda x: x.group(0) + ' ', sent3)\n\n    #These things all need to be preceded by spaces or else we'll run into problems\n    sent5 = re.sub(r'(?! )[-]', lambda x: ' ' + x.group(0), sent4)\n\n    # Several spaces\n    sent6 = re.sub(r'\\s\\s+', ' ', sent5)\n\n    sent7 = sent6.strip()\n    return sent7\n\ndef load_everything():\n    def _stamp(l, stamp_name):\n        for x in l:\n            x['dataset'] = stamp_name\n        return l\n\n    everything = {}\n    for split in ('train', 'val', 'test'):\n        everything_this_split = []\n        # everything_this_split += _stamp(load_mpii_depersonized(split), 'mpii')\n        # everything_this_split += _stamp(load_didemo(split), 'didemo')\n        everything_this_split += _stamp(load_lsmdc(split), 'lsmdc')\n        everything_this_split += _stamp(load_anet(split), 'anet')\n        # if split == 'train':\n            # everything_this_split += _stamp(load_visual_madlibs(split), 'vml')\n        # everything_this_split += _stamp(load_vist(split), 'vist')\n        # everything_this_split += _stamp(load_rocstories_nogender(split), 'rocstories')\n        everything[split] = everything_this_split\n\n    # Postprocessing\n    for split in everything:\n        for item in everything[split]:\n            for i in range(len(item['sentences'])):\n                item['sentences'][i] = _postprocess(item['sentences'][i])\n\n    with open('events-3.json', 'w') as f:\n        json.dump(everything, f)\n    return everything\n\n\n#####\n# Get what portion is projective\n# non_projective = [x for x in anet if any(t0[1] > t1[0]+0.5 for t0, t1 in zip(x['timestamps'][:-1],\n#                                                                          x['timestamps'][1:]))]\nif __name__ == '__main__':\n    # mpii = load_mpii_depersonized('train')\n    # lsmdc = load_lsmdc('train')\n    # didemo = load_didemo('train')\n    # anet = load_anet('train')\n    # visualmadlibs = load_visual_madlibs('train')\n    everything = load_everything()\n    #\n    # assert False\n    # # Count how many sentences are there\n    # mpii_num = sum([len(item['sentences']) for item in mpii])\n    # lsmdc_num = sum([len(item['sentences']) for item in lsmdc])\n    # didemo_num = sum([len(item['sentences']) for item in didemo])\n    # anet_num = sum([len(item['sentences']) for item in anet])\n    # roc_num = len(roc) * 5\n    #\n    # spacy = get_spacy_model(\"en_core_web_sm\", pos_tags=True, parse=True, ner=False)\n    #\n    #\n    # def _count_verbs_in_dataset(dataset):\n    #     verb_counts = defaultdict(int)\n    #     for x in tqdm(dataset):\n    #         for sent in x['sentences']:\n    #             for tok in spacy(sent):\n    #                 if tok.pos_ == 'VERB':\n    #                     verb_counts[tok.lemma_.lower()] += 1\n    #     return verb_counts\n    #\n    #\n    # mpii_counts = _count_verbs_in_dataset(mpii)\n    # anet_counts = _count_verbs_in_dataset(anet)\n    #\n    # # rocstories scrambled:\n    # import random\n    #\n    # random.shuffle(roc)\n    #\n    #\n    # def scrambled_stories():\n    #     for story in roc:\n    #         perm = np.random.permutation(5)\n    #         unperm = np.argsort(perm)\n    #         story_permed = [story['sentences'][i] for i in perm]\n    #         yield story_permed, unperm\n"
  },
  {
    "path": "requirements.txt",
    "content": "pandas==0.20.3\ntorch==0.3.1\ngit+git://github.com/allenai/allennlp.git@7142962d330ca5a95cade114c26a361c78f2042e\n"
  },
  {
    "path": "swag_baselines/README.md",
    "content": "# swag_baselines\n\nCurrently there are 4 baselines here: [FastText](https://fasttext.cc), [Decomposable Attention](https://arxiv.org/abs/1606.01933) (Parikh et. al, 2016), [ESIM](https://arxiv.org/abs/1609.06038) (Chen et. al, 2017), and a unary LSTM model.\n\n# Checkpoints\n\n* [LSTM+ELMo, trained on Found+Gen data](https://drive.google.com/file/d/1gWsWtn8qgmaSZ6a6NoSCWYDnx2zCAYKA/view?usp=sharing)\n* [ESIM+ELMo, trained on Found data](https://drive.google.com/file/d/1lFgD2CujAAWiyY1RwZDLI7w0_LIjQrQ9/view?usp=sharing)\n* Let me know if you have any requests :)"
  },
  {
    "path": "swag_baselines/__init__.py",
    "content": ""
  },
  {
    "path": "swag_baselines/decomposable_attention/README.md",
    "content": "#to run\n\npython -m allennlp.run train train.json -s tmp/output0 --include-package swag_baselines.decomposable_attention\n\npython -m allennlp.run evaluate tmp/output0/best.th --evaluation-data-file ../../data/test.csv"
  },
  {
    "path": "swag_baselines/decomposable_attention/__init__.py",
    "content": ""
  },
  {
    "path": "swag_baselines/decomposable_attention/dataset_reader.py",
    "content": "# Exactly the same as the other dataset reader\n\nfrom typing import Dict, List\nimport json\nimport logging\n\nfrom overrides import overrides\n\nfrom allennlp.common import Params\nfrom allennlp.common.file_utils import cached_path\nfrom allennlp.data.dataset_readers.dataset_reader import DatasetReader\nfrom allennlp.data.fields import Field, TextField, LabelField\nfrom allennlp.data.instance import Instance\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer, TokenIndexer\nfrom allennlp.data.tokenizers import Tokenizer, WordTokenizer\nimport pandas as pd\nimport numpy as np\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\nUSE_S1 = True\n\n\n@DatasetReader.register(\"swag\")\nclass SwagReader(DatasetReader):\n    \"\"\"\n    Reads a file from the Stanford Natural Language Inference (SNLI) dataset.  This data is\n    formatted as jsonl, one json-formatted instance per line.  The keys in the data are\n    \"gold_label\", \"sentence1\", and \"sentence2\".  We convert these keys into fields named \"label\",\n    \"premise\" and \"hypothesis\".\n\n    Parameters\n    ----------\n    tokenizer : ``Tokenizer``, optional (default=``WordTokenizer()``)\n        We use this ``Tokenizer`` for both the premise and the hypothesis.  See :class:`Tokenizer`.\n    token_indexers : ``Dict[str, TokenIndexer]``, optional (default=``{\"tokens\": SingleIdTokenIndexer()}``)\n        We similarly use this for both the premise and the hypothesis.  See :class:`TokenIndexer`.\n    \"\"\"\n\n    def __init__(self,\n                 tokenizer: Tokenizer = None,\n                 token_indexers: Dict[str, TokenIndexer] = None,\n                 use_only_gold_examples: bool = False) -> None:\n        super().__init__(lazy=False)\n        self._tokenizer = tokenizer or WordTokenizer()\n        self._token_indexers = token_indexers or {'tokens': SingleIdTokenIndexer()}\n        self.use_only_gold_examples = use_only_gold_examples\n\n    @overrides\n    def _read(self, file_path: str):\n        if not USE_S1:\n            logger.warning(\"We're splitting the sentences up here!!!! WATCH OUT\\n\\n\\n\")\n        swag = pd.read_csv(file_path)\n\n        if self.use_only_gold_examples and file_path.endswith('train.csv'):\n            swag = swag[swag['gold-source'].str.startswith('gold')]\n\n        for _, row in swag.iterrows():\n            if USE_S1:\n                premise = row['sent1']\n                endings = [row['ending{}'.format(i)] for i in range(4)]\n                hypos = ['{} {}'.format(row['sent2'], end) for end in endings]\n            else:\n                premise = row['sent2']\n                hypos = [row['ending{}'.format(i)] for i in range(4)]\n\n            yield self.text_to_instance(premise, hypos, label=row['label'] if hasattr(row, 'label') else None)\n\n    @overrides\n    def text_to_instance(self,  # type: ignore\n                         premise: str,\n                         hypotheses: List[str],\n                         label: int = None) -> Instance:\n        # pylint: disable=arguments-differ\n        fields: Dict[str, Field] = {}\n        premise_tokens = self._tokenizer.tokenize(premise)\n        fields['premise'] = TextField(premise_tokens, self._token_indexers)\n\n        # This could be another way to get randomness\n        for i, hyp in enumerate(hypotheses):\n            hypothesis_tokens = self._tokenizer.tokenize(hyp)\n            fields['hypothesis{}'.format(i)] = TextField(hypothesis_tokens, self._token_indexers)\n\n        if label is not None:\n            fields['label'] = LabelField(label, skip_indexing=True)\n        return Instance(fields)\n\n    @classmethod\n    def from_params(cls, params: Params) -> 'SwagReader':\n        tokenizer = Tokenizer.from_params(params.pop('tokenizer', {}))\n        token_indexers = TokenIndexer.dict_from_params(params.pop('token_indexers', {}))\n        use_only_gold_examples = params.pop('use_only_gold_examples', False)\n        params.assert_empty(cls.__name__)\n        return cls(tokenizer=tokenizer,\n                   token_indexers=token_indexers,\n                   use_only_gold_examples=use_only_gold_examples)\n"
  },
  {
    "path": "swag_baselines/decomposable_attention/decomposable_attention_swag.py",
    "content": "from typing import Dict, Optional\n\nimport torch\n\nfrom allennlp.common import Params\nfrom allennlp.common.checks import check_dimensions_match\nfrom allennlp.data import Vocabulary\nfrom allennlp.models.model import Model\nfrom allennlp.modules import FeedForward, MatrixAttention\nfrom allennlp.modules import Seq2SeqEncoder, SimilarityFunction, TimeDistributed, TextFieldEmbedder\nfrom allennlp.nn import InitializerApplicator, RegularizerApplicator\nfrom allennlp.nn.util import get_text_field_mask, last_dim_softmax, weighted_sum\nfrom allennlp.training.metrics import CategoricalAccuracy\nfrom allennlp.modules.token_embedders import Embedding, ElmoTokenEmbedder\n\nimport logging\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\n\n@Model.register(\"decomposable_attention_swag\")\nclass DecomposableAttention(Model):\n    \"\"\"\n    This ``Model`` implements the Decomposable Attention model described in `\"A Decomposable\n    Attention Model for Natural Language Inference\"\n    <https://www.semanticscholar.org/paper/A-Decomposable-Attention-Model-for-Natural-Languag-Parikh-T%C3%A4ckstr%C3%B6m/07a9478e87a8304fc3267fa16e83e9f3bbd98b27>`_\n    by Parikh et al., 2016, with some optional enhancements before the decomposable attention\n    actually happens.  Parikh's original model allowed for computing an \"intra-sentence\" attention\n    before doing the decomposable entailment step.  We generalize this to any\n    :class:`Seq2SeqEncoder` that can be applied to the premise and/or the hypothesis before\n    computing entailment.\n\n    The basic outline of this model is to get an embedded representation of each word in the\n    premise and hypothesis, align words between the two, compare the aligned phrases, and make a\n    final entailment decision based on this aggregated comparison.  Each step in this process uses\n    a feedforward network to modify the representation.\n\n    Parameters\n    ----------\n    vocab : ``Vocabulary``\n    text_field_embedder : ``TextFieldEmbedder``\n        Used to embed the ``premise`` and ``hypothesis`` ``TextFields`` we get as input to the\n        model.\n    attend_feedforward : ``FeedForward``\n        This feedforward network is applied to the encoded sentence representations before the\n        similarity matrix is computed between words in the premise and words in the hypothesis.\n    similarity_function : ``SimilarityFunction``\n        This is the similarity function used when computing the similarity matrix between words in\n        the premise and words in the hypothesis.\n    compare_feedforward : ``FeedForward``\n        This feedforward network is applied to the aligned premise and hypothesis representations,\n        individually.\n    aggregate_feedforward : ``FeedForward``\n        This final feedforward network is applied to the concatenated, summed result of the\n        ``compare_feedforward`` network, and its output is used as the entailment class logits.\n    premise_encoder : ``Seq2SeqEncoder``, optional (default=``None``)\n        After embedding the premise, we can optionally apply an encoder.  If this is ``None``, we\n        will do nothing.\n    hypothesis_encoder : ``Seq2SeqEncoder``, optional (default=``None``)\n        After embedding the hypothesis, we can optionally apply an encoder.  If this is ``None``,\n        we will use the ``premise_encoder`` for the encoding (doing nothing if ``premise_encoder``\n        is also ``None``).\n    initializer : ``InitializerApplicator``, optional (default=``InitializerApplicator()``)\n        Used to initialize the model parameters.\n    regularizer : ``RegularizerApplicator``, optional (default=``None``)\n        If provided, will be used to calculate the regularization penalty during training.\n    \"\"\"\n    def __init__(self, vocab: Vocabulary,\n                 text_field_embedder: TextFieldEmbedder,\n                 attend_feedforward: FeedForward,\n                 similarity_function: SimilarityFunction,\n                 compare_feedforward: FeedForward,\n                 aggregate_feedforward: FeedForward,\n                 premise_encoder: Optional[Seq2SeqEncoder] = None,\n                 hypothesis_encoder: Optional[Seq2SeqEncoder] = None,\n                 initializer: InitializerApplicator = InitializerApplicator(),\n                 regularizer: Optional[RegularizerApplicator] = None,\n                 preload_path: Optional[str] = None) -> None:\n        super(DecomposableAttention, self).__init__(vocab, regularizer)\n\n        self._text_field_embedder = text_field_embedder\n        self._attend_feedforward = TimeDistributed(attend_feedforward)\n        self._matrix_attention = MatrixAttention(similarity_function)\n        self._compare_feedforward = TimeDistributed(compare_feedforward)\n        self._aggregate_feedforward = aggregate_feedforward\n        self._premise_encoder = premise_encoder\n        self._hypothesis_encoder = hypothesis_encoder or premise_encoder\n\n        # self._num_labels = vocab.get_vocab_size(namespace=\"labels\")\n\n        check_dimensions_match(text_field_embedder.get_output_dim(), attend_feedforward.get_input_dim(),\n                               \"text field embedding dim\", \"attend feedforward input dim\")\n        # check_dimensions_match(aggregate_feedforward.get_output_dim(), self._num_labels,\n        #                        \"final output dimension\", \"number of labels\")\n\n        self._accuracy = CategoricalAccuracy()\n        self._loss = torch.nn.CrossEntropyLoss()\n\n        initializer(self)\n\n        # Do we want to initialize with the SNLI stuff? let's say yes.\n        # 'snli-decomposable-attention/weights.th'\n        if preload_path is not None:\n            logger.info(\"Preloading!\")\n            preload = torch.load(preload_path)\n            own_state = self.state_dict()\n            for name, param in preload.items():\n                if name not in own_state:\n                    logger.info(\"Unexpected key {} in state_dict with size {}\".format(name, param.size()))\n                elif param.size() == own_state[name].size():\n                    own_state[name].copy_(param)\n                else:\n                    logger.info(\"Network has {} with size {}, ckpt has {}\".format(name,\n                                                                            own_state[name].size(),\n                                                                            param.size()))\n\n                missing = set(own_state.keys()) - set(preload.keys())\n                if len(missing) > 0:\n                    logger.info(\"We couldn't find {}\".format(','.join(missing)))\n\n\n    def forward(self,  # type: ignore\n                premise: Dict[str, torch.LongTensor],\n                hypothesis0: Dict[str, torch.LongTensor],\n                hypothesis1: Dict[str, torch.LongTensor],\n                hypothesis2: Dict[str, torch.LongTensor],\n                hypothesis3: Dict[str, torch.LongTensor],\n                label: torch.IntTensor = None) -> Dict[str, torch.Tensor]:\n        # pylint: disable=arguments-differ\n        \"\"\"\n        Parameters\n        ----------\n        premise : Dict[str, torch.LongTensor]\n            From a ``TextField``\n        hypothesis : Dict[str, torch.LongTensor]\n            From a ``TextField``\n        label : torch.IntTensor, optional (default = None)\n            From a ``LabelField``\n\n        Returns\n        -------\n        An output dictionary consisting of:\n\n        label_logits : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_labels)`` representing unnormalised log\n            probabilities of the entailment label.\n        label_probs : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_labels)`` representing probabilities of the\n            entailment label.\n        loss : torch.FloatTensor, optional\n            A scalar loss to be optimised.\n        \"\"\"\n        if isinstance(self._text_field_embedder, ElmoTokenEmbedder):\n            self._text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n\n        hyps = [hypothesis0, hypothesis1, hypothesis2, hypothesis3]\n        embedded_premise = self._text_field_embedder(premise)\n        if isinstance(self._text_field_embedder, ElmoTokenEmbedder):\n            self._text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n\n        embedded_hypotheses = []\n        for hypothesis in hyps:\n            if isinstance(self._text_field_embedder, ElmoTokenEmbedder):\n                self.text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n            embedded_hypotheses.append(self._text_field_embedder(hypothesis))\n\n        premise_mask = get_text_field_mask(premise).float()\n        hypothesis_masks = [get_text_field_mask(hypothesis).float() for hypothesis in hyps]\n\n        if self._premise_encoder:\n            embedded_premise = self._premise_encoder(embedded_premise, premise_mask)\n        if self._hypothesis_encoder:\n            embedded_hypotheses = [self._hypothesis_encoder(emb, mask) for emb, mask in zip(embedded_hypotheses, hypothesis_masks)]\n\n        projected_premise = self._attend_feedforward(embedded_premise)\n\n        label_logits = []\n        for i, (embedded_hypothesis, hypothesis_mask) in enumerate(zip(embedded_hypotheses, hypothesis_masks)):\n            projected_hypothesis = self._attend_feedforward(embedded_hypothesis)\n            # Shape: (batch_size, premise_length, hypothesis_length)\n            similarity_matrix = self._matrix_attention(projected_premise, projected_hypothesis)\n\n            # Shape: (batch_size, premise_length, hypothesis_length)\n            p2h_attention = last_dim_softmax(similarity_matrix, hypothesis_mask)\n            # Shape: (batch_size, premise_length, embedding_dim)\n            attended_hypothesis = weighted_sum(embedded_hypothesis, p2h_attention)\n\n            # Shape: (batch_size, hypothesis_length, premise_length)\n            h2p_attention = last_dim_softmax(similarity_matrix.transpose(1, 2).contiguous(), premise_mask)\n            # Shape: (batch_size, hypothesis_length, embedding_dim)\n            attended_premise = weighted_sum(embedded_premise, h2p_attention)\n\n            premise_compare_input = torch.cat([embedded_premise, attended_hypothesis], dim=-1)\n            hypothesis_compare_input = torch.cat([embedded_hypothesis, attended_premise], dim=-1)\n\n            compared_premise = self._compare_feedforward(premise_compare_input)\n            compared_premise = compared_premise * premise_mask.unsqueeze(-1)\n            # Shape: (batch_size, compare_dim)\n            compared_premise = compared_premise.sum(dim=1)\n\n            compared_hypothesis = self._compare_feedforward(hypothesis_compare_input)\n            compared_hypothesis = compared_hypothesis * hypothesis_mask.unsqueeze(-1)\n            # Shape: (batch_size, compare_dim)\n            compared_hypothesis = compared_hypothesis.sum(dim=1)\n\n            aggregate_input = torch.cat([compared_premise, compared_hypothesis], dim=-1)\n            logit = self._aggregate_feedforward(aggregate_input)\n            assert logit.size(-1) == 1\n            label_logits.append(logit)\n\n        label_logits = torch.cat(label_logits, -1)\n        label_probs = torch.nn.functional.softmax(label_logits, dim=-1)\n\n        output_dict = {\"label_logits\": label_logits, \"label_probs\": label_probs}\n\n        if label is not None:\n            loss = self._loss(label_logits, label.long().view(-1))\n            self._accuracy(label_logits, label.squeeze(-1))\n            output_dict[\"loss\"] = loss\n\n        return output_dict\n\n    def get_metrics(self, reset: bool = False) -> Dict[str, float]:\n        return {\n                'accuracy': self._accuracy.get_metric(reset),\n                }\n\n    @classmethod\n    def from_params(cls, vocab: Vocabulary, params: Params) -> 'DecomposableAttention':\n        embedder_params = params.pop(\"text_field_embedder\")\n        text_field_embedder = TextFieldEmbedder.from_params(vocab, embedder_params)\n\n        premise_encoder_params = params.pop(\"premise_encoder\", None)\n        if premise_encoder_params is not None:\n            premise_encoder = Seq2SeqEncoder.from_params(premise_encoder_params)\n        else:\n            premise_encoder = None\n\n        hypothesis_encoder_params = params.pop(\"hypothesis_encoder\", None)\n        if hypothesis_encoder_params is not None:\n            hypothesis_encoder = Seq2SeqEncoder.from_params(hypothesis_encoder_params)\n        else:\n            hypothesis_encoder = None\n\n        attend_feedforward = FeedForward.from_params(params.pop('attend_feedforward'))\n        similarity_function = SimilarityFunction.from_params(params.pop(\"similarity_function\"))\n        compare_feedforward = FeedForward.from_params(params.pop('compare_feedforward'))\n        aggregate_feedforward = FeedForward.from_params(params.pop('aggregate_feedforward'))\n        initializer = InitializerApplicator.from_params(params.pop('initializer', []))\n        regularizer = RegularizerApplicator.from_params(params.pop('regularizer', []))\n\n        preload_path = params.pop('preload_path', None)\n        params.assert_empty(cls.__name__)\n        return cls(vocab=vocab,\n                   text_field_embedder=text_field_embedder,\n                   attend_feedforward=attend_feedforward,\n                   similarity_function=similarity_function,\n                   compare_feedforward=compare_feedforward,\n                   aggregate_feedforward=aggregate_feedforward,\n                   premise_encoder=premise_encoder,\n                   hypothesis_encoder=hypothesis_encoder,\n                   initializer=initializer,\n                   regularizer=regularizer,\n                   preload_path=preload_path)\n"
  },
  {
    "path": "swag_baselines/decomposable_attention/run_experiments.sh",
    "content": "#!/usr/bin/env bash\n\n# Run skipthoughts with a bunch of different modes\nexport CUDA_VISIBLE_DEVICES=$1\nif [ $1 == \"0\" ]; then\n    echo \"fuck! Numberbatch\"\n    python -m allennlp.run train train-numberbatch.json -s tmp/numberbatchJUSTS2 --include-package swag_baselines.decomposable_attention\n    echo \"fuck! NUMBERBATCH GOLD ONLY!!!!\"\n    python -m allennlp.run train train-numberbatch-goldonly.json -s tmp/numberbatchallJUSTS2 --include-package swag_baselines.decomposable_attention\nelif [ $1 == \"1\" ]; then\n    echo \"fuck! Glove\"\n    python -m allennlp.run train train-glove-840.json -s tmp/glove840JUSTS2 --include-package swag_baselines.decomposable_attention\n    echo \"fuck! ELMO GOLD ONLY!!!!\"\n    python -m allennlp.run train train-elmo-goldonly.json -s tmp/elmo2allJUSTS2 --include-package swag_baselines.decomposable_attention\nelif [ $1 == \"2\" ]; then\n    echo \"fuck! Elmo\"\n    python -m allennlp.run train train-elmo.json -s tmp/elmo2JUSTS2 --include-package swag_baselines.decomposable_attention\n    echo \"fuck! GLOVE GOLD ONLY!!!!\"\n    python -m allennlp.run train train-glove-goldonly-840.json -s tmp/gloveall840JUSTS2 --include-package swag_baselines.decomposable_attention\nfi\n\n"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-elmo-goldonly.json",
    "content": "{\n    \"dataset_reader\": {\n        \"type\": \"swag\",\n        \"token_indexers\": {\n            \"elmo\": {\n                \"type\": \"elmo_characters\"\n            }\n        },\n        \"tokenizer\": {\n            \"end_tokens\": [\n                \"@@NULL@@\"\n            ]\n        },\n        \"use_only_gold_examples\": true,\n    },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n    \"model\": {\n        \"type\": \"decomposable_attention_swag\",\n        \"text_field_embedder\": {\n            \"elmo\": {\n                \"type\": \"elmo_token_embedder\",\n                \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n                \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n                \"do_layer_norm\": false,\n                \"dropout\": 0.5\n            }\n        },\n        \"attend_feedforward\": {\n            \"input_dim\": 1024,\n            \"num_layers\": 2,\n            \"hidden_dims\": 200,\n            \"activations\": \"relu\",\n            \"dropout\": 0.2\n        },\n        \"similarity_function\": {\n            \"type\": \"dot_product\"\n        },\n        \"compare_feedforward\": {\n            \"input_dim\": 2048,\n            \"num_layers\": 2,\n            \"hidden_dims\": 200,\n            \"activations\": \"relu\",\n            \"dropout\": 0.2\n        },\n        \"aggregate_feedforward\": {\n            \"input_dim\": 400,\n            \"num_layers\": 2,\n            \"hidden_dims\": [\n                200,\n                1\n            ],\n            \"activations\": [\n                \"relu\",\n                \"linear\"\n            ],\n            \"dropout\": [\n                0.2,\n                0.0\n            ]\n        },\n//        \"preload_path\": \"snli-decomposable-attention/weights.th\",\n        \"initializer\": [\n            [\n                \".*linear_layers.*weight\",\n                {\n                    \"type\": \"xavier_normal\"\n                }\n            ],\n            [\n                \".*token_embedder_tokens\\\\._projection.*weight\",\n                {\n                    \"type\": \"xavier_normal\"\n                }\n            ]\n        ]\n    },\n    \"iterator\": {\n        \"type\": \"bucket\",\n        \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n        \"batch_size\": 64\n    },\n    \"trainer\": {\n        \"num_epochs\": 140,\n        \"patience\": 20,\n        \"cuda_device\": 0,\n        \"grad_clipping\": 1.0,\n        \"validation_metric\": \"+accuracy\",\n        \"optimizer\": {\n            \"type\": \"adam\",\n            \"lr\": 0.001\n        }\n    }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-elmo.json",
    "content": "{\n    \"dataset_reader\": {\n        \"type\": \"swag\",\n        \"token_indexers\": {\n            \"elmo\": {\n                \"type\": \"elmo_characters\"\n            }\n        },\n        \"tokenizer\": {\n            \"end_tokens\": [\n                \"@@NULL@@\"\n            ]\n        },\n        \"use_only_gold_examples\": false,\n    },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n    \"model\": {\n        \"type\": \"decomposable_attention_swag\",\n        \"text_field_embedder\": {\n            \"elmo\": {\n                \"type\": \"elmo_token_embedder\",\n                \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n                \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n                \"do_layer_norm\": false,\n                \"dropout\": 0.5\n            }\n        },\n        \"attend_feedforward\": {\n            \"input_dim\": 1024,\n            \"num_layers\": 2,\n            \"hidden_dims\": 200,\n            \"activations\": \"relu\",\n            \"dropout\": 0.2\n        },\n        \"similarity_function\": {\n            \"type\": \"dot_product\"\n        },\n        \"compare_feedforward\": {\n            \"input_dim\": 2048,\n            \"num_layers\": 2,\n            \"hidden_dims\": 200,\n            \"activations\": \"relu\",\n            \"dropout\": 0.2\n        },\n        \"aggregate_feedforward\": {\n            \"input_dim\": 400,\n            \"num_layers\": 2,\n            \"hidden_dims\": [\n                200,\n                1\n            ],\n            \"activations\": [\n                \"relu\",\n                \"linear\"\n            ],\n            \"dropout\": [\n                0.2,\n                0.0\n            ]\n        },\n//        \"preload_path\": \"snli-decomposable-attention/weights.th\",\n        \"initializer\": [\n            [\n                \".*linear_layers.*weight\",\n                {\n                    \"type\": \"xavier_normal\"\n                }\n            ],\n            [\n                \".*token_embedder_tokens\\\\._projection.*weight\",\n                {\n                    \"type\": \"xavier_normal\"\n                }\n            ]\n        ]\n    },\n    \"iterator\": {\n        \"type\": \"bucket\",\n        \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n        \"batch_size\": 64\n    },\n    \"trainer\": {\n        \"num_epochs\": 140,\n        \"patience\": 20,\n        \"cuda_device\": 0,\n        \"grad_clipping\": 1.0,\n        \"validation_metric\": \"+accuracy\",\n        \"optimizer\": {\n            \"type\": \"adam\",\n            \"lr\": 0.001\n        }\n    }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-glove-840.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 5.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n      \"type\": \"adagrad\"\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-glove-goldonly-840.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 5.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n      \"type\": \"adagrad\"\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-glove-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.6B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 5.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n      \"type\": \"adagrad\"\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-glove.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.6B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 5.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n      \"type\": \"adagrad\"\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-numberbatch-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 5.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n      \"type\": \"adagrad\"\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/decomposable_attention/train-numberbatch.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"tokenizer\": {\n      \"end_tokens\": [\"@@NULL@@\"]\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"decomposable_attention_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"projection_dim\": 200,\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"attend_feedforward\": {\n      \"input_dim\": 200,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"compare_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": 200,\n      \"activations\": \"relu\",\n      \"dropout\": 0.2\n    },\n    \"aggregate_feedforward\": {\n      \"input_dim\": 400,\n      \"num_layers\": 2,\n      \"hidden_dims\": [200, 1],\n      \"activations\": [\"relu\", \"linear\"],\n      \"dropout\": [0.2, 0.0]\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_normal\"}],\n      [\".*token_embedder_tokens\\._projection.*weight\", {\"type\": \"xavier_normal\"}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 64\n  },\n\n  \"trainer\": {\n    \"num_epochs\": 140,\n    \"patience\": 20,\n    \"cuda_device\": 0,\n    \"grad_clipping\": 1.0,\n    \"validation_metric\": \"+accuracy\",\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n  }\n}"
  },
  {
    "path": "swag_baselines/esim/README.md",
    "content": "# ESIM on swag\n\nESIM seems to work pretty well on SWAG, so here's it in action. You can train using the following command:\n\n```\nallennlp train train-glove.json -s tmp/glove --include-package swag_baselines.esim\n```\n\nOnce you've trained a model, you can run it with:\n\n```\npython -m predict tmp/glove/model.tar.gz ../../data/val.csv --cuda-device 0 --include-package swag_baselines.esim --output-file lol.csv\n```\n\nAnd you can verify the results with\n\n```\nimport pandas as pd\nprint( (pd.read_csv('lol.csv').pred == pd.read_csv('../../data/val.csv').label).mean() )\n```\n\n"
  },
  {
    "path": "swag_baselines/esim/__init__.py",
    "content": ""
  },
  {
    "path": "swag_baselines/esim/dataset_reader.py",
    "content": "# Exactly the same as the other dataset reader\n\nfrom typing import Dict, List\nimport json\nimport logging\n\nfrom overrides import overrides\n\nfrom allennlp.common import Params\nfrom allennlp.common.file_utils import cached_path\nfrom allennlp.data.dataset_readers.dataset_reader import DatasetReader\nfrom allennlp.data.fields import Field, TextField, LabelField\nfrom allennlp.data.instance import Instance\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer, TokenIndexer\nfrom allennlp.data.tokenizers import Tokenizer, WordTokenizer\nimport pandas as pd\nimport numpy as np\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\nUSE_S1 = True\n\n\n@DatasetReader.register(\"swag\")\nclass SwagReader(DatasetReader):\n    \"\"\"\n    Reads a file from the Stanford Natural Language Inference (SNLI) dataset.  This data is\n    formatted as jsonl, one json-formatted instance per line.  The keys in the data are\n    \"gold_label\", \"sentence1\", and \"sentence2\".  We convert these keys into fields named \"label\",\n    \"premise\" and \"hypothesis\".\n\n    Parameters\n    ----------\n    tokenizer : ``Tokenizer``, optional (default=``WordTokenizer()``)\n        We use this ``Tokenizer`` for both the premise and the hypothesis.  See :class:`Tokenizer`.\n    token_indexers : ``Dict[str, TokenIndexer]``, optional (default=``{\"tokens\": SingleIdTokenIndexer()}``)\n        We similarly use this for both the premise and the hypothesis.  See :class:`TokenIndexer`.\n    \"\"\"\n\n    def __init__(self,\n                 tokenizer: Tokenizer = None,\n                 token_indexers: Dict[str, TokenIndexer] = None,\n                 use_only_gold_examples: bool = False) -> None:\n        super().__init__(lazy=False)\n        self._tokenizer = tokenizer or WordTokenizer()\n        self._token_indexers = token_indexers or {'tokens': SingleIdTokenIndexer()}\n        self.use_only_gold_examples = use_only_gold_examples\n\n    @overrides\n    def _read(self, file_path: str):\n        if not USE_S1:\n            logger.warning(\"We're splitting the sentences up here!!!! WATCH OUT\\n\\n\\n\")\n        swag = pd.read_csv(file_path)\n\n        if self.use_only_gold_examples and file_path.endswith('train.csv'):\n            swag = swag[swag['gold-source'].str.startswith('gold')]\n\n        for _, row in swag.iterrows():\n            if USE_S1:\n                premise = row['sent1']\n                endings = [row['ending{}'.format(i)] for i in range(4)]\n                hypos = ['{} {}'.format(row['sent2'], end) for end in endings]\n            else:\n                premise = row['sent2']\n                hypos = [row['ending{}'.format(i)] for i in range(4)]\n\n            yield self.text_to_instance(premise, hypos, label=row['label'] if hasattr(row, 'label') else None)\n\n    @overrides\n    def text_to_instance(self,  # type: ignore\n                         premise: str,\n                         hypotheses: List[str],\n                         label: int = None) -> Instance:\n        # pylint: disable=arguments-differ\n        fields: Dict[str, Field] = {}\n        premise_tokens = self._tokenizer.tokenize(premise)\n        fields['premise'] = TextField(premise_tokens, self._token_indexers)\n\n        # This could be another way to get randomness\n        for i, hyp in enumerate(hypotheses):\n            hypothesis_tokens = self._tokenizer.tokenize(hyp)\n            fields['hypothesis{}'.format(i)] = TextField(hypothesis_tokens, self._token_indexers)\n\n        if label is not None:\n            fields['label'] = LabelField(label, skip_indexing=True)\n        return Instance(fields)\n\n    @classmethod\n    def from_params(cls, params: Params) -> 'SwagReader':\n        tokenizer = Tokenizer.from_params(params.pop('tokenizer', {}))\n        token_indexers = TokenIndexer.dict_from_params(params.pop('token_indexers', {}))\n        use_only_gold_examples = params.pop('use_only_gold_examples', False)\n        params.assert_empty(cls.__name__)\n        return cls(tokenizer=tokenizer,\n                   token_indexers=token_indexers,\n                   use_only_gold_examples=use_only_gold_examples)\n"
  },
  {
    "path": "swag_baselines/esim/esim_swag.py",
    "content": "# TODO: projection dropout with ELMO\n#   l2 reg with ELMO\n#   multiple ELMO layers\n#   doc\n\nfrom typing import Dict, Optional\n\nimport torch\nfrom torch.autograd import Variable\n\nfrom allennlp.common import Params\nfrom allennlp.common.checks import check_dimensions_match\nfrom allennlp.data import Vocabulary\nfrom allennlp.models.model import Model\nfrom allennlp.modules import FeedForward, MatrixAttention\nfrom allennlp.modules import Seq2SeqEncoder, SimilarityFunction, TimeDistributed, TextFieldEmbedder\nfrom allennlp.modules.token_embedders import Embedding, ElmoTokenEmbedder\nfrom allennlp.nn import InitializerApplicator, RegularizerApplicator\nfrom allennlp.nn.util import get_text_field_mask, last_dim_softmax, weighted_sum, replace_masked_values\nfrom allennlp.training.metrics import CategoricalAccuracy\n\nimport logging\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\n\nclass VariationalDropout(torch.nn.Dropout):\n    def forward(self, input):\n        \"\"\"\n        input is shape (batch_size, timesteps, embedding_dim)\n        Samples one mask of size (batch_size, embedding_dim) and applies it to every time step.\n        \"\"\"\n        # ones = Variable(torch.ones(input.shape[0], input.shape[-1]))\n        ones = Variable(input.data.new(input.shape[0], input.shape[-1]).fill_(1))\n        dropout_mask = torch.nn.functional.dropout(ones, self.p, self.training, inplace=False)\n        if self.inplace:\n            input *= dropout_mask.unsqueeze(1)\n            return None\n        else:\n            return dropout_mask.unsqueeze(1) * input\n\n\n@Model.register(\"esim_swag\")\nclass ESIM(Model):\n    \"\"\"\n    This ``Model`` implements the ESIM sequence model described in `\"Enhanced LSTM for Natural Language Inference\"\n    <https://www.semanticscholar.org/paper/Enhanced-LSTM-for-Natural-Language-Inference-Chen-Zhu/83e7654d545fbbaaf2328df365a781fb67b841b4>`_\n    by Chen et al., 2017.\n\n    Parameters\n    ----------\n    vocab : ``Vocabulary``\n    text_field_embedder : ``TextFieldEmbedder``\n        Used to embed the ``premise`` and ``hypothesis`` ``TextFields`` we get as input to the\n        model.\n    attend_feedforward : ``FeedForward``\n        This feedforward network is applied to the encoded sentence representations before the\n        similarity matrix is computed between words in the premise and words in the hypothesis.\n    similarity_function : ``SimilarityFunction``\n        This is the similarity function used when computing the similarity matrix between words in\n        the premise and words in the hypothesis.\n    compare_feedforward : ``FeedForward``\n        This feedforward network is applied to the aligned premise and hypothesis representations,\n        individually.\n    aggregate_feedforward : ``FeedForward``\n        This final feedforward network is applied to the concatenated, summed result of the\n        ``compare_feedforward`` network, and its output is used as the entailment class logits.\n    premise_encoder : ``Seq2SeqEncoder``, optional (default=``None``)\n        After embedding the premise, we can optionally apply an encoder.  If this is ``None``, we\n        will do nothing.\n    hypothesis_encoder : ``Seq2SeqEncoder``, optional (default=``None``)\n        After embedding the hypothesis, we can optionally apply an encoder.  If this is ``None``,\n        we will use the ``premise_encoder`` for the encoding (doing nothing if ``premise_encoder``\n        is also ``None``).\n    initializer : ``InitializerApplicator``, optional (default=``InitializerApplicator()``)\n        Used to initialize the model parameters.\n    regularizer : ``RegularizerApplicator``, optional (default=``None``)\n        If provided, will be used to calculate the regularization penalty during training.\n    \"\"\"\n\n    def __init__(self, vocab: Vocabulary,\n                 text_field_embedder: TextFieldEmbedder,\n                 encoder: Seq2SeqEncoder,\n                 similarity_function: SimilarityFunction,\n                 projection_feedforward: FeedForward,\n                 inference_encoder: Seq2SeqEncoder,\n                 output_feedforward: FeedForward,\n                 output_logit: FeedForward,\n                 initializer: InitializerApplicator = InitializerApplicator(),\n                 dropout: float = 0.5,\n                 regularizer: Optional[RegularizerApplicator] = None) -> None:\n        super().__init__(vocab, regularizer)\n\n        self._text_field_embedder = text_field_embedder\n        self._encoder = encoder\n\n        self._matrix_attention = MatrixAttention(similarity_function)\n        self._projection_feedforward = projection_feedforward\n\n        self._inference_encoder = inference_encoder\n\n        if dropout:\n            self.dropout = torch.nn.Dropout(dropout)\n            self.rnn_input_dropout = VariationalDropout(dropout)\n        else:\n            self.dropout = None\n            self.rnn_input_dropout = None\n\n        self._output_feedforward = output_feedforward\n        self._output_logit = output_logit\n\n        self._num_labels = vocab.get_vocab_size(namespace=\"labels\")\n\n        check_dimensions_match(text_field_embedder.get_output_dim(), encoder.get_input_dim(),\n                               \"text field embedding dim\", \"encoder input dim\")\n        check_dimensions_match(encoder.get_output_dim() * 4, projection_feedforward.get_input_dim(),\n                               \"encoder output dim\", \"projection feedforward input\")\n        check_dimensions_match(projection_feedforward.get_output_dim(), inference_encoder.get_input_dim(),\n                               \"proj feedforward output dim\", \"inference lstm input dim\")\n\n        self._accuracy = CategoricalAccuracy()\n        self._loss = torch.nn.CrossEntropyLoss()\n\n        initializer(self)\n\n    def forward(self,  # type: ignore\n                premise: Dict[str, torch.LongTensor],\n                hypothesis0: Dict[str, torch.LongTensor],\n                hypothesis1: Dict[str, torch.LongTensor],\n                hypothesis2: Dict[str, torch.LongTensor],\n                hypothesis3: Dict[str, torch.LongTensor],\n                label: torch.IntTensor = None) -> Dict[str, torch.Tensor]:\n        # pylint: disable=arguments-differ\n        \"\"\"\n        Parameters\n        ----------\n        premise : Dict[str, torch.LongTensor]\n            From a ``TextField``\n        hypothesis : Dict[str, torch.LongTensor]\n            From a ``TextField``\n        label : torch.IntTensor, optional (default = None)\n            From a ``LabelField``\n\n        Returns\n        -------\n        An output dictionary consisting of:\n\n        label_logits : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_labels)`` representing unnormalised log\n            probabilities of the entailment label.\n        label_probs : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_labels)`` representing probabilities of the\n            entailment label.\n        loss : torch.FloatTensor, optional\n            A scalar loss to be optimised.\n        \"\"\"\n        hyps = [hypothesis0, hypothesis1, hypothesis2, hypothesis3]\n        if isinstance(self._text_field_embedder, ElmoTokenEmbedder):\n            self._text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n\n        embedded_premise = self._text_field_embedder(premise)\n\n        embedded_hypotheses = []\n        for hypothesis in hyps:\n            if isinstance(self._text_field_embedder, ElmoTokenEmbedder):\n                self._text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n            embedded_hypotheses.append(self._text_field_embedder(hypothesis))\n\n        premise_mask = get_text_field_mask(premise).float()\n        hypothesis_masks = [get_text_field_mask(hypothesis).float() for hypothesis in hyps]\n        # apply dropout for LSTM\n        if self.rnn_input_dropout:\n            embedded_premise = self.rnn_input_dropout(embedded_premise)\n            embedded_hypotheses = [self.rnn_input_dropout(hyp) for hyp in embedded_hypotheses]\n\n        # encode premise and hypothesis\n        encoded_premise = self._encoder(embedded_premise, premise_mask)\n\n        label_logits = []\n        for i, (embedded_hypothesis, hypothesis_mask) in enumerate(zip(embedded_hypotheses, hypothesis_masks)):\n            encoded_hypothesis = self._encoder(embedded_hypothesis, hypothesis_mask)\n\n            # Shape: (batch_size, premise_length, hypothesis_length)\n            similarity_matrix = self._matrix_attention(encoded_premise, encoded_hypothesis)\n\n            # Shape: (batch_size, premise_length, hypothesis_length)\n            p2h_attention = last_dim_softmax(similarity_matrix, hypothesis_mask)\n            # Shape: (batch_size, premise_length, embedding_dim)\n            attended_hypothesis = weighted_sum(encoded_hypothesis, p2h_attention)\n\n            # Shape: (batch_size, hypothesis_length, premise_length)\n            h2p_attention = last_dim_softmax(similarity_matrix.transpose(1, 2).contiguous(), premise_mask)\n            # Shape: (batch_size, hypothesis_length, embedding_dim)\n            attended_premise = weighted_sum(encoded_premise, h2p_attention)\n\n            # the \"enhancement\" layer\n            premise_enhanced = torch.cat(\n                [encoded_premise, attended_hypothesis,\n                 encoded_premise - attended_hypothesis,\n                 encoded_premise * attended_hypothesis],\n                dim=-1\n            )\n            hypothesis_enhanced = torch.cat(\n                [encoded_hypothesis, attended_premise,\n                 encoded_hypothesis - attended_premise,\n                 encoded_hypothesis * attended_premise],\n                dim=-1\n            )\n\n            # embedding -> lstm w/ do -> enhanced attention -> dropout_proj, only if ELMO -> ff proj -> lstm w/ do -> dropout -> ff 300 -> dropout -> output\n\n            # add dropout here with ELMO\n\n            # the projection layer down to the model dimension\n            # no dropout in projection\n            projected_enhanced_premise = self._projection_feedforward(premise_enhanced)\n            projected_enhanced_hypothesis = self._projection_feedforward(hypothesis_enhanced)\n\n            # Run the inference layer\n            if self.rnn_input_dropout:\n                projected_enhanced_premise = self.rnn_input_dropout(projected_enhanced_premise)\n                projected_enhanced_hypothesis = self.rnn_input_dropout(projected_enhanced_hypothesis)\n            v_ai = self._inference_encoder(projected_enhanced_premise, premise_mask)\n            v_bi = self._inference_encoder(projected_enhanced_hypothesis, hypothesis_mask)\n\n            # The pooling layer -- max and avg pooling.\n            # (batch_size, model_dim)\n            v_a_max, _ = replace_masked_values(\n                v_ai, premise_mask.unsqueeze(-1), -1e7\n            ).max(dim=1)\n            v_b_max, _ = replace_masked_values(\n                v_bi, hypothesis_mask.unsqueeze(-1), -1e7\n            ).max(dim=1)\n\n            v_a_avg = torch.sum(v_ai * premise_mask.unsqueeze(-1), dim=1) / torch.sum(premise_mask, 1, keepdim=True)\n            v_b_avg = torch.sum(v_bi * hypothesis_mask.unsqueeze(-1), dim=1) / torch.sum(hypothesis_mask, 1,\n                                                                                         keepdim=True)\n\n            # Now concat\n            # (batch_size, model_dim * 2 * 4)\n            v = torch.cat([v_a_avg, v_a_max, v_b_avg, v_b_max], dim=1)\n\n            # the final MLP -- apply dropout to input, and MLP applies to output & hidden\n            if self.dropout:\n                v = self.dropout(v)\n\n            output_hidden = self._output_feedforward(v)\n            logit = self._output_logit(output_hidden)\n            assert logit.size(-1) == 1\n            label_logits.append(logit)\n\n        label_logits = torch.cat(label_logits, -1)\n        label_probs = torch.nn.functional.softmax(label_logits, dim=-1)\n\n        output_dict = {\"label_logits\": label_logits, \"label_probs\": label_probs}\n\n        if label is not None:\n            loss = self._loss(label_logits, label.long().view(-1))\n            self._accuracy(label_logits, label.squeeze(-1))\n            output_dict[\"loss\"] = loss\n\n        return output_dict\n\n    def get_metrics(self, reset: bool = False) -> Dict[str, float]:\n        return {\n            'accuracy': self._accuracy.get_metric(reset),\n        }\n\n    @classmethod\n    def from_params(cls, vocab: Vocabulary, params: Params) -> 'ESIM':\n        embedder_params = params.pop(\"text_field_embedder\")\n        text_field_embedder = TextFieldEmbedder.from_params(vocab, embedder_params)\n\n        encoder = Seq2SeqEncoder.from_params(params.pop(\"encoder\"))\n        similarity_function = SimilarityFunction.from_params(params.pop(\"similarity_function\"))\n        projection_feedforward = FeedForward.from_params(params.pop('projection_feedforward'))\n        inference_encoder = Seq2SeqEncoder.from_params(params.pop(\"inference_encoder\"))\n        output_feedforward = FeedForward.from_params(params.pop('output_feedforward'))\n        output_logit = FeedForward.from_params(params.pop('output_logit'))\n        initializer = InitializerApplicator.from_params(params.pop('initializer', []))\n        regularizer = RegularizerApplicator.from_params(params.pop('regularizer', []))\n\n        dropout = params.pop(\"dropout\", 0)\n\n        params.assert_empty(cls.__name__)\n        return cls(vocab=vocab,\n                   text_field_embedder=text_field_embedder,\n                   encoder=encoder,\n                   similarity_function=similarity_function,\n                   projection_feedforward=projection_feedforward,\n                   inference_encoder=inference_encoder,\n                   output_feedforward=output_feedforward,\n                   output_logit=output_logit,\n                   initializer=initializer,\n                   dropout=dropout,\n                   regularizer=regularizer)\n"
  },
  {
    "path": "swag_baselines/esim/predict.py",
    "content": "\"\"\"\nadapted from Allennlp because their version doesn't seem to work 😢😢😢\n\"\"\"\nfrom typing import Dict, Any, Iterable\nimport argparse\nimport logging\n\nfrom allennlp.commands.subcommand import Subcommand\nfrom allennlp.common.util import prepare_environment, import_submodules\nfrom allennlp.common.tqdm import Tqdm\nfrom allennlp.data import Instance\nfrom allennlp.data.dataset_readers.dataset_reader import DatasetReader\nfrom allennlp.data.iterators import DataIterator\nfrom allennlp.models.archival import load_archive\nfrom allennlp.models.model import Model\nimport numpy as np\nimport pandas as pd\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\n\n\n\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(description=\"predict\")\n\n    parser.add_argument('archive_file', type=str, help='path to an archived trained model')\n\n    parser.add_argument('input_file', type=str, help='path to input file')\n\n    cuda_device = parser.add_mutually_exclusive_group(required=False)\n    cuda_device.add_argument('--cuda-device',\n                             type=int,\n                             default=0,\n                             help='id of GPU to use (if any)')\n\n    parser.add_argument('-o', '--overrides',\n                           type=str,\n                           default=\"\",\n                           help='a HOCON structure used to override the experiment configuration')\n\n    parser.add_argument('--include-package',\n                           type=str,\n                           action='append',\n                           default=[],\n                           help='additional packages to include')\n\n    parser.add_argument('--output-file', type=str, help='path to output file')\n    args = parser.parse_args()\n\n    # Disable some of the more verbose logging statements\n    logging.getLogger('allennlp.common.params').disabled = True\n    logging.getLogger('allennlp.nn.initializers').disabled = True\n    logging.getLogger('allennlp.modules.token_embedders.embedding').setLevel(logging.INFO)\n\n    # Import any additional modules needed (to register custom classes)\n    for package_name in args.include_package:\n        import_submodules(package_name)\n\n    # Load from archive\n    archive = load_archive(args.archive_file, args.cuda_device, args.overrides)\n    config = archive.config\n    prepare_environment(config)\n    model = archive.model\n    model.eval()\n\n    # Load the evaluation data\n\n    # Try to use the validation dataset reader if there is one - otherwise fall back\n    # to the default dataset_reader used for both training and validation.\n    validation_dataset_reader_params = config.pop('validation_dataset_reader', None)\n    if validation_dataset_reader_params is not None:\n        dataset_reader = DatasetReader.from_params(validation_dataset_reader_params)\n    else:\n        dataset_reader = DatasetReader.from_params(config.pop('dataset_reader'))\n    evaluation_data_path = args.input_file\n    logger.info(\"Reading evaluation data from %s\", evaluation_data_path)\n    instances = dataset_reader.read(evaluation_data_path)\n\n    config['iterator']['type'] = 'basic'\n    del config['iterator']['sorting_keys']\n    data_iterator = DataIterator.from_params(config.pop(\"iterator\"))\n    data_iterator.index_with(model.vocab)\n\n    cuda_device = args.cuda_device\n\n    #### EVALUATION AQUI\n\n\n    model.eval()\n    iterator = data_iterator(instances, num_epochs=1, shuffle=False, cuda_device=cuda_device, for_training=False)\n    logger.info(\"Iterating over dataset\")\n    generator_tqdm = Tqdm.tqdm(iterator, total=data_iterator.get_num_batches(instances))\n\n    label_probs = []\n    for batch in generator_tqdm:\n        lol = model(**batch)\n        label_probs.append(model(**batch)['label_probs'].data.cpu().numpy())\n    label_probs = np.concatenate(label_probs)\n    my_preds = pd.DataFrame(label_probs, columns=['ending0','ending1','ending2','ending3'])\n    my_preds['pred'] = label_probs.argmax(1)\n    my_preds.to_csv(args.output_file)\n\n\n"
  },
  {
    "path": "swag_baselines/esim/run_experiments.sh",
    "content": "#!/usr/bin/env bash\n\n# Run experiments with a bunch of different models\nexport CUDA_VISIBLE_DEVICES=$1\nif [ $1 == \"2\" ]; then\n    echo \"fuck! Numberbatch\"\n    python -m allennlp.run train train-numberbatch.json -s tmp/numberbatch --include-package swag_baselines.esim\n    echo \"fuck! NUMBERBATCH GOLD ONLY!!!!\"\n    python -m allennlp.run train train-numberbatch-goldonly.json -s tmp/numberbatchgold --include-package swag_baselines.esim\nelif [ $1 == \"1\" ]; then\n    echo \"fuck! Glove\"\n    python -m allennlp.run train train-glove.json -s tmp/glove --include-package swag_baselines.esim\n#    echo \"fuck! ELMO GOLD ONLY!!!!\"\n#    python -m allennlp.run train train-elmo-goldonly.json -s tmp/elmogold --include-package swag_baselines.esim\nelif [ $1 == \"0\" ]; then\n    echo \"fuck! Elmo\"\n    python -m allennlp.run train train-elmo.json -s tmp/elmo --include-package swag_baselines.esim\n    echo \"fuck! GLOVE GOLD ONLY!!!!\"\n    python -m allennlp.run train train-glove-goldonly.json -s tmp/glovegold --include-package swag_baselines.esim\nfi\n\n"
  },
  {
    "path": "swag_baselines/esim/train-elmo-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.0\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/esim/train-elmo.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.0\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/esim/train-glove-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/esim/train-glove.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/esim/train-numberbatch-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/esim/train-numberbatch.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"evaluate_on_test\": false,\n  \"model\": {\n    \"type\": \"esim_swag\",\n    \"dropout\": 0.5,\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"similarity_function\": {\"type\": \"dot_product\"},\n    \"projection_feedforward\": {\n      \"input_dim\": 2400,\n      \"hidden_dims\": 300,\n      \"num_layers\": 1,\n      \"activations\": \"relu\"\n    },\n    \"inference_encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 1,\n      \"bidirectional\": true\n    },\n    \"output_feedforward\": {\n      \"input_dim\": 2400,\n      \"num_layers\": 1,\n      \"hidden_dims\": 300,\n      \"activations\": \"relu\",\n      \"dropout\": 0.5\n    },\n    \"output_logit\": {\n      \"input_dim\": 300,\n      \"num_layers\": 1,\n      \"hidden_dims\": 1,\n      \"activations\": \"linear\"\n    },\n     \"initializer\": [\n      [\".*linear_layers.*weight\", {\"type\": \"xavier_uniform\"}],\n      [\".*linear_layers.*bias\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*weight_ih.*\", {\"type\": \"xavier_uniform\"}], these should get initialized already!\n//      [\".*weight_hh.*\", {\"type\": \"orthogonal\"}],\n//      [\".*bias_ih.*\", {\"type\": \"constant\", \"val\": 0}],\n//      [\".*bias_hh.*\", {\"type\": \"constant\", \"val\": 1}]\n     ]\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"premise\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.0004\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 10.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/fasttext/README.md",
    "content": "# fasttext baseline\n\nThis is a wrapper around the fasttext library for getting results on SWAG. See [https://fasttext.cc](https://fasttext.cc) for installation info. \n\nTo use this, first run ```prep_data.py``` to prepare the data in a format that fasttext can handle. Then, you can train a fasttext model and obtain predictions using \n\n```\n~/tools/fastText/fasttext supervised -input train.txt -output model -lr 0.1 -wordNgrams 5 -epoch 50\n~/tools/fastText/fasttext predict-prob model.bin val.txt 2 > val_preds.txt\n```\nThen compute performance using ```python compute_performance.py```."
  },
  {
    "path": "swag_baselines/fasttext/__init__.py",
    "content": ""
  },
  {
    "path": "swag_baselines/fasttext/compute_performance.py",
    "content": "import numpy as np\nimport argparse\nimport os\n# neg probability, pos prob\n\nparser = argparse.ArgumentParser(description='compute performance')\nparser.add_argument('fn', metavar='fn', type=str,\n                    help='filename 2 use')\nfn = parser.parse_args().fn\n\nrez = []\nwith open(fn, 'r') as f:\n    all_lines = f.read().splitlines()\n\nfor line in all_lines:\n    linesplit = line.split(' ')\n    if linesplit[0] == '__label__gold':\n        rez.append((float(linesplit[3]), float(linesplit[1])))\n    else:\n        rez.append((float(linesplit[1]), float(linesplit[3])))\nrez_np = np.array(rez)[:,1].reshape((len(rez) // 4, 4))\n\nranks = (-rez_np).argsort(1).argsort(1)[:,0]\nprint(\"accuracy is {:.3f}\".format(np.mean(ranks == 0)))\n\nprint('deleting {}'.format(fn))\nos.remove(fn)"
  },
  {
    "path": "swag_baselines/fasttext/prep_data.py",
    "content": "import pandas as pd\nfrom tqdm import tqdm\nfrom allennlp.common.util import get_spacy_model\n\nUSE_ONLY_GOLD_EXAMPLES = False\n\n\nspacy_model = get_spacy_model(\"en_core_web_sm\", pos_tags=False, parse=False, ner=False)\ndef _tokenize(sent):\n    return ' '.join([x.orth_.lower() for x in spacy_model(sent)])\n\n\nfor split in ('train', 'val', 'test'):\n    df = pd.read_csv('../../data/{}.csv'.format(split))\n    df['distractor-3'].fillna('', inplace=True)\n    if USE_ONLY_GOLD_EXAMPLES and split == 'train':\n        oldsize = df.shape[0]\n        df = df[df['gold-source'].str.startswith('gold')]\n        print(\"Going from {} -> {} items in train\".format(oldsize, df.shape[0]))\n\n    with open('{}-{}.txt'.format(split, 'goldonly' if USE_ONLY_GOLD_EXAMPLES else 'genalso'), 'w') as f:\n        for _, item in tqdm(df.iterrows()):\n            # num_distractors = 4 if (len(item['distractor-3']) != 0 and split == 'train') else 3\n            num_distractors = 3\n            prefix_tokenized = '{} '.format(_tokenize(item['sent1']))\n            gold_ending_tokenized = _tokenize('{} {}'.format(item['sent2'], item['gold-ending']))\n            for i in range(num_distractors if split == 'train' else 1):\n                f.write('__label__gold {}\\n'.format(prefix_tokenized + gold_ending_tokenized))\n            for i in range(num_distractors):\n                f.write('__label__fake {}\\n'.format(prefix_tokenized + _tokenize('{} {}'.format(item['sent2'], item['distractor-{}'.format(i)]))))\n\n# let's just automate this...\n\"\"\"\nUnigrams\n~/tools/fastText/fasttext supervised -input train-goldonly.txt -output model -lr 0.01 -wordNgrams 1 -epoch 5\n~/tools/fastText/fasttext predict-prob model.bin val-goldonly.txt 2 > valpreds-goldonly.txt\npython compute_performance.py valpreds-goldonly.txt\n\n\n\n------------\naccuracy 29.2% with 5-grams\n~/tools/fastText/fasttext supervised -input train.txt -output model -lr 0.1 -wordNgrams 5 -epoch 50\n~/tools/fastText/fasttext predict-prob model.bin val.txt 2 > val_preds.txt\npython compute_performance.py\nrm val_preds.txt\n\n\n\n~/tools/fastText/fasttext predict-prob model.bin test.txt 2 > val_preds.txt\npython compute_performance.py\nrm val_preds.txt\n\n\ndafuq\n~/tools/fastText/fasttext supervised -input train-genalso.txt -output model -lr 0.921 -wordNgrams 1 -epoch 45\n~/tools/fastText/fasttext predict-prob model.bin val-goldonly.txt 2 > preds.txt\npython compute_performance.py preds.txt\n\n\"\"\""
  },
  {
    "path": "swag_baselines/unarylstm/__init__.py",
    "content": ""
  },
  {
    "path": "swag_baselines/unarylstm/dataset_reader.py",
    "content": "# slightly different from the other dataset reader\n\nfrom typing import Dict, List\nimport json\nimport logging\n\nfrom overrides import overrides\n\nfrom allennlp.common import Params\nfrom allennlp.common.file_utils import cached_path\nfrom allennlp.data.dataset_readers.dataset_reader import DatasetReader\nfrom allennlp.data.fields import Field, TextField, LabelField\nfrom allennlp.data.instance import Instance\nfrom allennlp.data.token_indexers import SingleIdTokenIndexer, TokenIndexer\nfrom allennlp.data.tokenizers import Tokenizer, WordTokenizer\nimport pandas as pd\nimport numpy as np\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\n\n\n@DatasetReader.register(\"swag\")\nclass SwagReader(DatasetReader):\n    \"\"\"\n    Reads a file from the Stanford Natural Language Inference (SNLI) dataset.  This data is\n    formatted as jsonl, one json-formatted instance per line.  The keys in the data are\n    \"gold_label\", \"sentence1\", and \"sentence2\".  We convert these keys into fields named \"label\",\n    \"premise\" and \"hypothesis\".\n\n    Parameters\n    ----------\n    tokenizer : ``Tokenizer``, optional (default=``WordTokenizer()``)\n        We use this ``Tokenizer`` for both the premise and the hypothesis.  See :class:`Tokenizer`.\n    token_indexers : ``Dict[str, TokenIndexer]``, optional (default=``{\"tokens\": SingleIdTokenIndexer()}``)\n        We similarly use this for both the premise and the hypothesis.  See :class:`TokenIndexer`.\n    \"\"\"\n\n    def __init__(self,\n                 tokenizer: Tokenizer = None,\n                 token_indexers: Dict[str, TokenIndexer] = None,\n                 use_only_gold_examples: bool = False,\n                 only_end: bool = False) -> None:\n        super().__init__(lazy=False)\n        self._tokenizer = tokenizer or WordTokenizer()\n        self._token_indexers = token_indexers or {'tokens': SingleIdTokenIndexer()}\n        self.use_only_gold_examples = use_only_gold_examples\n        self.only_end = only_end\n\n    @overrides\n    def _read(self, file_path: str):\n\n        swag = pd.read_csv(file_path)\n\n        if self.use_only_gold_examples and file_path.endswith('train.csv'):\n            swag = swag[swag['gold-source'].str.startswith('gold')]\n\n        for _, row in swag.iterrows():\n            premise = row['sent1']\n            endings = [row['ending{}'.format(i)] for i in range(4)]\n\n            if self.only_end:\n                # NOTE: we're JUST USING THE ENDING HERE, so hope that's what you intend\n                hypos = endings\n            else:\n                hypos = ['{} {} {}'.format(row['sent1'], row['sent2'], end) for end in endings]\n\n            yield self.text_to_instance(premise, hypos, label=row['label'] if hasattr(row, 'label') else None)\n\n    @overrides\n    def text_to_instance(self,  # type: ignore\n                         premise: str,\n                         hypotheses: List[str],\n                         label: int = None) -> Instance:\n        # pylint: disable=arguments-differ\n        fields: Dict[str, Field] = {}\n        # premise_tokens = self._tokenizer.tokenize(premise)\n        # fields['premise'] = TextField(premise_tokens, self._token_indexers)\n\n        # This could be another way to get randomness\n        for i, hyp in enumerate(hypotheses):\n            hypothesis_tokens = self._tokenizer.tokenize(hyp)\n            fields['hypothesis{}'.format(i)] = TextField(hypothesis_tokens, self._token_indexers)\n\n        if label is not None:\n            fields['label'] = LabelField(label, skip_indexing=True)\n        return Instance(fields)\n\n    @classmethod\n    def from_params(cls, params: Params) -> 'SwagReader':\n        tokenizer = Tokenizer.from_params(params.pop('tokenizer', {}))\n        token_indexers = TokenIndexer.dict_from_params(params.pop('token_indexers', {}))\n        use_only_gold_examples = params.pop('use_only_gold_examples', False)\n        only_end = params.pop('only_end', False)\n        params.assert_empty(cls.__name__)\n        return cls(tokenizer=tokenizer,\n                   token_indexers=token_indexers,\n                   use_only_gold_examples=use_only_gold_examples,\n                   only_end=only_end)\n"
  },
  {
    "path": "swag_baselines/unarylstm/lstm_swag.py",
    "content": "from typing import Dict, List, TextIO, Optional\n\nfrom overrides import overrides\nimport torch\nfrom torch.nn.modules import Linear, Dropout\nimport torch.nn.functional as F\n\nfrom allennlp.common import Params\nfrom allennlp.common.checks import check_dimensions_match\nfrom allennlp.data import Vocabulary\nfrom allennlp.modules import Seq2SeqEncoder, TimeDistributed, TextFieldEmbedder\nfrom allennlp.modules.token_embedders import Embedding, ElmoTokenEmbedder\nfrom allennlp.models.model import Model\nfrom allennlp.nn import InitializerApplicator, RegularizerApplicator\nfrom allennlp.nn.util import get_text_field_mask, sequence_cross_entropy_with_logits\nfrom allennlp.nn.util import get_lengths_from_binary_sequence_mask, viterbi_decode\nfrom allennlp.training.metrics import SpanBasedF1Measure\nfrom allennlp.training.metrics import CategoricalAccuracy\n\n@Model.register(\"lstm_swag\")\nclass LstmSwag(Model):\n    \"\"\"\n    This model performs semantic role labeling using BIO tags using Propbank semantic roles.\n    Specifically, it is an implmentation of `Deep Semantic Role Labeling - What works\n    and what's next <https://homes.cs.washington.edu/~luheng/files/acl2017_hllz.pdf>`_ .\n\n    This implementation is effectively a series of stacked interleaved LSTMs with highway\n    connections, applied to embedded sequences of words concatenated with a binary indicator\n    containing whether or not a word is the verbal predicate to generate predictions for in\n    the sentence. Additionally, during inference, Viterbi decoding is applied to constrain\n    the predictions to contain valid BIO sequences.\n\n    Parameters\n    ----------\n    vocab : ``Vocabulary``, required\n        A Vocabulary, required in order to compute sizes for input/output projections.\n    text_field_embedder : ``TextFieldEmbedder``, required\n        Used to embed the ``tokens`` ``TextField`` we get as input to the model.\n    encoder : ``Seq2SeqEncoder``\n        The encoder (with its own internal stacking) that we will use in between embedding tokens\n        and predicting output tags.\n    binary_feature_dim : int, required.\n        The dimensionality of the embedding of the binary verb predicate features.\n    initializer : ``InitializerApplicator``, optional (default=``InitializerApplicator()``)\n        Used to initialize the model parameters.\n    regularizer : ``RegularizerApplicator``, optional (default=``None``)\n        If provided, will be used to calculate the regularization penalty during training.\n    label_smoothing : ``float``, optional (default = 0.0)\n        Whether or not to use label smoothing on the labels when computing cross entropy loss.\n    \"\"\"\n    def __init__(self, vocab: Vocabulary,\n                 text_field_embedder: TextFieldEmbedder,\n                 encoder: Seq2SeqEncoder,\n                 # binary_feature_dim: int,\n                 embedding_dropout: float = 0.0,\n                 initializer: InitializerApplicator = InitializerApplicator(),\n                 regularizer: Optional[RegularizerApplicator] = None) -> None:\n        super(LstmSwag, self).__init__(vocab, regularizer)\n\n        self.text_field_embedder = text_field_embedder\n\n        # For the span based evaluation, we don't want to consider labels\n        # for verb, because the verb index is provided to the model.\n        self.encoder = encoder\n        self.embedding_dropout = Dropout(p=embedding_dropout)\n        self.output_prediction = Linear(self.encoder.get_output_dim(), 1, bias=False)\n\n        check_dimensions_match(text_field_embedder.get_output_dim(),\n                               encoder.get_input_dim(),\n                               \"text embedding dim\", \"eq encoder input dim\")\n        self._accuracy = CategoricalAccuracy()\n        self._loss = torch.nn.CrossEntropyLoss()\n\n        initializer(self)\n\n    def forward(self,  # type: ignore\n                hypothesis0: Dict[str, torch.LongTensor],\n                hypothesis1: Dict[str, torch.LongTensor],\n                hypothesis2: Dict[str, torch.LongTensor],\n                hypothesis3: Dict[str, torch.LongTensor],\n                label: torch.IntTensor = None,\n                ) -> Dict[str, torch.Tensor]:\n        # pylint: disable=arguments-differ\n        \"\"\"\n        Parameters\n        ----------\n        Returns\n        -------\n        An output dictionary consisting of:\n        logits : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_tokens, tag_vocab_size)`` representing\n            unnormalised log probabilities of the tag classes.\n        class_probabilities : torch.FloatTensor\n            A tensor of shape ``(batch_size, num_tokens, tag_vocab_size)`` representing\n            a distribution of the tag classes per word.\n        loss : torch.FloatTensor, optional\n            A scalar loss to be optimised.\n\n        \"\"\"\n        logits = []\n        for tokens in [hypothesis0, hypothesis1, hypothesis2, hypothesis3]:\n            if isinstance(self.text_field_embedder, ElmoTokenEmbedder):\n                self.text_field_embedder._elmo._elmo_lstm._elmo_lstm.reset_states()\n\n            embedded_text_input = self.embedding_dropout(self.text_field_embedder(tokens))\n            mask = get_text_field_mask(tokens)\n\n            batch_size, sequence_length, _ = embedded_text_input.size()\n\n            encoded_text = self.encoder(embedded_text_input, mask)\n\n            logits.append(self.output_prediction(encoded_text.max(1)[0]))\n\n        logits = torch.cat(logits, -1)\n        class_probabilities = F.softmax(logits, dim=-1).view([batch_size, 4])\n        output_dict = {\"label_logits\": logits, \"label_probs\": class_probabilities}\n\n        if label is not None:\n            loss = self._loss(logits, label.long().view(-1))\n            self._accuracy(logits, label.squeeze(-1))\n            output_dict[\"loss\"] = loss\n\n        return output_dict\n\n    def get_metrics(self, reset: bool = False) -> Dict[str, float]:\n        return {\n                'accuracy': self._accuracy.get_metric(reset),\n                }\n\n    @classmethod\n    def from_params(cls, vocab: Vocabulary, params: Params) -> 'LstmSwag':\n        embedder_params = params.pop(\"text_field_embedder\")\n        text_field_embedder = TextFieldEmbedder.from_params(vocab, embedder_params)\n        encoder = Seq2SeqEncoder.from_params(params.pop(\"encoder\"))\n\n        initializer = InitializerApplicator.from_params(params.pop('initializer', []))\n        regularizer = RegularizerApplicator.from_params(params.pop('regularizer', []))\n        params.assert_empty(cls.__name__)\n        return cls(vocab=vocab,\n                   text_field_embedder=text_field_embedder,\n                   encoder=encoder,\n                   initializer=initializer,\n                   regularizer=regularizer)\n"
  },
  {
    "path": "swag_baselines/unarylstm/predict.py",
    "content": "\"\"\"\nadapted from Allennlp because their version doesn't seem to work 😢😢😢\n\"\"\"\nfrom typing import Dict, Any, Iterable\nimport argparse\nimport logging\n\nfrom allennlp.commands.subcommand import Subcommand\nfrom allennlp.common.util import prepare_environment, import_submodules\nfrom allennlp.common.tqdm import Tqdm\nfrom allennlp.data import Instance\nfrom allennlp.data.dataset_readers.dataset_reader import DatasetReader\nfrom allennlp.data.iterators import DataIterator\nfrom allennlp.models.archival import load_archive\nfrom allennlp.models.model import Model\nimport numpy as np\nimport pandas as pd\n\nlogger = logging.getLogger(__name__)  # pylint: disable=invalid-name\n\n\n\n\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser(description=\"predict\")\n\n    parser.add_argument('archive_file', type=str, help='path to an archived trained model')\n\n    parser.add_argument('input_file', type=str, help='path to input file')\n\n    cuda_device = parser.add_mutually_exclusive_group(required=False)\n    cuda_device.add_argument('--cuda-device',\n                             type=int,\n                             default=0,\n                             help='id of GPU to use (if any)')\n\n    parser.add_argument('-o', '--overrides',\n                           type=str,\n                           default=\"\",\n                           help='a HOCON structure used to override the experiment configuration')\n\n    parser.add_argument('--include-package',\n                           type=str,\n                           action='append',\n                           default=[],\n                           help='additional packages to include')\n\n    parser.add_argument('--output-file', type=str, help='path to output file')\n    args = parser.parse_args()\n\n    # Disable some of the more verbose logging statements\n    logging.getLogger('allennlp.common.params').disabled = True\n    logging.getLogger('allennlp.nn.initializers').disabled = True\n    logging.getLogger('allennlp.modules.token_embedders.embedding').setLevel(logging.INFO)\n\n    # Import any additional modules needed (to register custom classes)\n    for package_name in args.include_package:\n        import_submodules(package_name)\n\n    # Load from archive\n    import ipdb\n    ipdb.set_trace()\n    archive = load_archive(args.archive_file, args.cuda_device, args.overrides)\n    config = archive.config\n    prepare_environment(config)\n    model = archive.model\n    model.eval()\n\n    # Load the evaluation data\n\n    # Try to use the validation dataset reader if there is one - otherwise fall back\n    # to the default dataset_reader used for both training and validation.\n    validation_dataset_reader_params = config.pop('validation_dataset_reader', None)\n    if validation_dataset_reader_params is not None:\n        dataset_reader = DatasetReader.from_params(validation_dataset_reader_params)\n    else:\n        dataset_reader = DatasetReader.from_params(config.pop('dataset_reader'))\n    evaluation_data_path = args.input_file\n    logger.info(\"Reading evaluation data from %s\", evaluation_data_path)\n    instances = dataset_reader.read(evaluation_data_path)\n\n    config['iterator']['type'] = 'basic'\n    del config['iterator']['sorting_keys']\n    data_iterator = DataIterator.from_params(config.pop(\"iterator\"))\n    data_iterator.index_with(model.vocab)\n\n    cuda_device = args.cuda_device\n\n    #### EVALUATION AQUI\n\n\n    model.eval()\n    iterator = data_iterator(instances, num_epochs=1, shuffle=False, cuda_device=cuda_device, for_training=False)\n    logger.info(\"Iterating over dataset\")\n    generator_tqdm = Tqdm.tqdm(iterator, total=data_iterator.get_num_batches(instances))\n\n    label_probs = []\n    for batch in generator_tqdm:\n        lol = model(**batch)\n        label_probs.append(model(**batch)['label_probs'].data.cpu().numpy())\n    label_probs = np.concatenate(label_probs)\n    my_preds = pd.DataFrame(label_probs, columns=['ending0','ending1','ending2','ending3'])\n    my_preds['pred'] = label_probs.argmax(1)\n    my_preds.to_csv(args.output_file)\n\n\n"
  },
  {
    "path": "swag_baselines/unarylstm/run_experiments.sh",
    "content": "#!/usr/bin/env bash\n\nexport CUDA_VISIBLE_DEVICES=$1\n\nif [ $1 == \"0\" ]; then\n    echo \"fuck! LSTM Numberbatch\"\n    python -m allennlp.run train train-lstmbasic-numberbatch.json -s tmp/lstmbasicnumberbatch --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM NUMBERBATCH GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-numberbatch-goldonly.json -s tmp/lstmbasicnumberbatchall --include-package swag_baselines.unarylstm\nelif [ $1 == \"1\" ]; then\n    echo \"fuck! LSTM GloVe\"\n    python -m allennlp.run train train-lstmbasic-glove.json -s tmp/lstmbasicglove --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM GLOVE GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-glove-goldonly.json -s tmp/lstmbasicgloveall --include-package swag_baselines.unarylstm\nelif [ $1 == \"2\" ]; then\n    echo \"fuck! LSTM Elmo\"\n    python -m allennlp.run train train-lstmbasic-elmo.json -s tmp/lstmbasicelmo --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM ELMO GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-elmo-goldonly.json -s tmp/lstmbasicelmoall --include-package swag_baselines.unarylstm\nfi\n\n"
  },
  {
    "path": "swag_baselines/unarylstm/run_experiments_ending.sh",
    "content": "#!/usr/bin/env bash\n\nexport CUDA_VISIBLE_DEVICES=$1\n\necho \"ONLY ENDING!!!!\"\nif [ $1 == \"0\" ]; then\n    echo \"fuck! LSTM Numberbatch\"\n    python -m allennlp.run train train-lstmbasic-numberbatch-endingonly.json -s tmp/lstmbasicnumberbatch2 --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM NUMBERBATCH GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-numberbatch-goldonly-endingonly.json -s tmp/lstmbasicnumberbatchgold2 --include-package swag_baselines.unarylstm\nelif [ $1 == \"1\" ]; then\n    echo \"fuck! LSTM GloVe\"\n    python -m allennlp.run train train-lstmbasic-glove-endingonly.json -s tmp/lstmbasicglove2 --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM GLOVE GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-glove-goldonly-endingonly.json -s tmp/lstmbasicglovegold2 --include-package swag_baselines.unarylstm\nelif [ $1 == \"2\" ]; then\n    echo \"fuck! LSTM Elmo\"\n    python -m allennlp.run train train-lstmbasic-elmo-endingonly.json -s tmp/lstmbasicelmo2 --include-package swag_baselines.unarylstm\n    echo \"fuck! LSTM ELMO GOLD ONLY!!!!\"\n    python -m allennlp.run train train-lstmbasic-elmo-goldonly-endingonly.json -s tmp/lstmbasicelmogold2 --include-package swag_baselines.unarylstm\nfi\n\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-cnn.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": false\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"cnn\",\n      \"conv_layer_activation\": \"relu\",\n      \"embedding_dim\": 300,\n//      \"output_dim\": 1024,\n      \"num_filters\": 128,\n      \"ngram_filter_sizes\": [2,3,4,5],\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-elmo-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": true\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.5\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-elmo-goldonly-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": true,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.5\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-elmo-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.5\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-elmo.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"elmo\": {\n        \"type\": \"elmo_characters\"\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"elmo\":{\n        \"type\": \"elmo_token_embedder\",\n       \"options_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json\",\n       \"weight_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5\",\n        \"do_layer_norm\": false,\n        \"dropout\": 0.5\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 1024,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-glove-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": true\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-glove-goldonly-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": true\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-glove-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-glove.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-numberbatch-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": true\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-numberbatch-goldonly-endingonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": true\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-numberbatch-goldonly.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": true,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train-lstmbasic-numberbatch.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": true\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://conceptnet.s3.amazonaws.com/downloads/2017/numberbatch/numberbatch-en-17.06.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  },
  {
    "path": "swag_baselines/unarylstm/train.json",
    "content": "{\n  \"dataset_reader\": {\n    \"type\": \"swag\",\n    \"token_indexers\": {\n      \"tokens\": {\n        \"type\": \"single_id\",\n        \"lowercase_tokens\": false\n      }\n    },\n    \"use_only_gold_examples\": false,\n    \"only_end\": false,\n  },\n  \"train_data_path\": \"../../data/train.csv\",\n  \"validation_data_path\": \"../../data/val.csv\",\n  \"test_data_path\": \"../../data/test.csv\",\n  \"evaluate_on_test\": true,\n  \"model\": {\n    \"type\": \"lstm_swag\",\n    \"text_field_embedder\": {\n      \"tokens\": {\n        \"type\": \"embedding\",\n        \"pretrained_file\": \"https://s3-us-west-2.amazonaws.com/allennlp/datasets/glove/glove.840B.300d.txt.gz\",\n        \"embedding_dim\": 300,\n        \"trainable\": false\n      }\n    },\n    \"encoder\": {\n      \"type\": \"lstm\",\n      \"input_size\": 300,\n      \"hidden_size\": 300,\n      \"num_layers\": 2,\n      \"bidirectional\": true,\n    }\n   },\n  \"iterator\": {\n    \"type\": \"bucket\",\n    \"sorting_keys\": [[\"hypothesis1\", \"num_tokens\"]],\n    \"batch_size\": 32\n  },\n  \"trainer\": {\n    \"optimizer\": {\n        \"type\": \"adam\",\n        \"lr\": 0.001\n    },\n    \"validation_metric\": \"+accuracy\",\n    \"num_serialized_models_to_keep\": 2,\n    \"num_epochs\": 75,\n    \"grad_norm\": 1.0,\n    \"patience\": 5,\n    \"cuda_device\": 0,\n    \"learning_rate_scheduler\": {\n      \"type\": \"reduce_on_plateau\",\n      \"factor\": 0.5,\n      \"mode\": \"max\",\n      \"patience\": 0\n    }\n  }\n}\n"
  }
]